[
  {
    "path": "README.md",
    "content": "This is a repository for the code and data from the paper _Open Question\nAnswering Over Curated and Extracted Knowledge Bases_ from KDD 2014. If you use\nany of these resources in a published paper, please use the following citation:\n\n    @inproceedings{Fader14,\n        author    = {Anthony Fader and Luke Zettlemoyer and Oren Etzioni},\n        title     = {{Open Question Answering Over Curated and Extracted\n                    Knowledge Bases}},\n        booktitle = {KDD},\n        year      = {2014}\n    }\n\n\nCode\n===\nWarning: This project has lots of moving parts. It will probably take quite a\nbit of effort to get it running. I would recommend playing with the data\nbefore trying to run the code.\n\n## Dependencies\nBelow are the dependencies used for OQA. Version numbers are what I have used,\nbut other versions may be compatible.\n\n* sbt (0.13)\n* java (1.8.0)\n* scala (2.10)\n* Boost C++ libraries (1.5.7)\n* Python (2.7.8)\n* wget (1.15)\n\n## Code Structure\nOQA consists of the following components:\n\n* Solr indexes (used for storing triples, paraphrases, and query rewrites).\n* Language model (used for scoring answer derivation steps)\n* Question answering code (used for inference and learning)\n\nGetting the code running involves completing these steps in order:\n\n1. [Downloading the data](oqa-data/) in `oqa-data/`\n2. [Creating the indexes](oqa-solr/) in `oqa-solr/`\n3. [Building the language model](oqa-lm/) in `oqa-lm/`\n4. [Running the code](oqa-core/) in `oqa-core/`\n\nPlease follow the above links to the individual README files. Each README\nwill walk you through the steps.\n\nData\n===\nBelow is a description of the data included with OQA.\n\n## Knowledge Base (KB) Data\nYou can download the KB data at this url: \nhttp://knowitall.cs.washington.edu/oqa/data/kb. The KB is divided into 20\ngzip-compressed files. The total compressed filesize is approximately 20GB; the\ntotal decompressed filesize is approximately 50GB. \n\nEach file contains a newline-separated list of KB\nrecords. Each record is a tab-separated list of (field name, field value) pairs.\nFor example, here is a record corresponding to a Freebase assertion (with tabs\nreplaced by newlines):\n\n    arg1\n    1,2-Benzoquinone\n    rel\n    Notable types\n    arg2\n    Chemical Compound\n    arg1_fbid_s\n    08s9rd\n    id\n    fb-179681780\n    namespace\n    freebase\n\nThe following fields names appear in the data:\n\n| Field Name                | Description                   | Required? |\n| --------------------------|-------------------------------|-----------|\n| `arg1`                    | Argument 1 of the triple      | Yes       |\n| `rel`                     | Relation phrase of the triple | Yes       |\n| `arg2`                    | Argument 1 of the triple      | Yes       |\n| `id`                      | Unique ID for the triple      | Yes       |\n| `namespace`               | The source of this triple     | Yes       |\n| `arg1_fbid_s`             | Arg1 Freebase ID              | No        |\n| `arg2_fbid_s`             | Arg2 Freebase ID              | No        |\n| `num_extrs_i`             | Extraction redundancy         | No        |\n| `conf_f`                  | Extractor confidence          | No        |\n| `corpora_ss`              | Extractor corpus              | No        |\n| `zipfSlope_f`             | Probase statistic             | No        |\n| `entitySize_i`            | Probase statistic             | No        |\n| `entityFrequency_i`       | Probase statistic             | No        |\n| `popularity_i`            | Probase statistic             | No        |\n| `freq_i`                  | Probase statistic             | No        |\n| `zipfPearsonCoefficient_f`| Probase statistic             | No        |\n| `conceptVagueness_f`      | Probase statistic             | No        |\n| `prob_f`                  | Probase statistic             | No        |\n| `conceptSize_i`           | Probase statistic             | No        |\n\nThere is a total of 930 million records in the data. The distribution the \ndifferent `namespace` values is:\n\n| Namespace         | Count     |\n|-------------------|----------:|\n| Total             |930,143,872|\n| ReVerb            |391,345,565|\n| Freebase          |299,370,817|\n| Probase           |170,278,429|\n| Open IE 4.0       | 67,221,551|\n| NELL              |  1,927,510|\n\n## WikiAnswers Corpus\nThe WikiAnswers corpus contains clusters of questions tagged by WikiAnswers\nusers as paraphrases. Each cluster optionally contains an answer provided by\nWikiAnswers users. There are 30,370,994 clusters containing an average of 25 \nquestions per cluster. 3,386,256 (11%) of the clusters have an answer.\n\nThe data can be downloaded from:\nhttp://knowitall.cs.washington.edu/oqa/data/wikianswers/. The corpus is split\ninto 40 gzip-compressed files. The total compressed filesize is 8GB; the total\ndecompressed filesize is 40GB. Each file contains one cluster per line. Each\ncluster is a tab-separated list of questions and answers. Questions are prefixed\nby `q:` and answers are prefixed by `a:`. Here is an example cluster (tabs\nreplaced with newlines):\n\n    q:How many muslims make up indias 1 billion population?\n    q:How many of india's population are muslim?\n    q:How many populations of muslims in india?\n    q:What is population of muslims in india?\n    a:Over 160 million Muslims per Pew Forum Study as of October 2009.\n\nThis corpus is different than the data used in the Paralex system (see\nhttp://knowitall.cs.washington.edu/paralex). First, it contains more questions\nresulting from a longer crawl of WikiAnswers. Second, it groups questions into\nclusters, instead of enumerating all pairs of paraphrases. Third, it contains\nthe answers, while the Paralex data does not.\n\nWe also provide a hierarchical clustering of the lowercased tokens in the \nWikiAnswers corpus. We used [Percy Liang's implementation of the Brown \nClustering Algorithm](https://github.com/percyliang/brown-cluster) with\n1000 clusters (i.e. `--c 1000`). The raw output is available [here](https://s3-us-west-2.amazonaws.com/ai2-oqa/wikianswers-brown-clusters-c1000.txt.gz).\nYou can browse the clusters [here](https://s3-us-west-2.amazonaws.com/ai2-oqa/wikianswers-cluster-viewer/cluster_viewer.html).\nWe did not use these in the OQA system, but we probably should have.\n\n## Paraphrase Template Data\nThe paraphrase templates used in OQA are available for download at\nhttp://knowitall.cs.washington.edu/oqa/data/paraphrase-templates.txt.gz. The\nfile is 90M compressed and 900M decompressed. Each line in the file contains a\nparaphrase template pair as a tab-separated list of (field name, field value)\npairs. Here is an example record (with tabs replaced with newlines):\n\n    id  \n    pair1718534\n    template1\n    how do people use $y ?\n    template2 \n    what be common use for $y ?\n    typ\n    anything\n    count1\n    0.518446\n    count2\n    0.335112\n    typCount12\n    0.195711\n    count12\n    0.195711\n    typPmi\n    0.707756\n    pmi\n    0.687842\n\nEach template in a record is a space-delimited list of lowercased, lemmatized\ntokens. The token `$y` is a variable representing the argument slot position. \nThe numeric values in the records are scaled to be in [0, 1].\n\n| Field         | Description                                               |\n|---------------|-----------------------------------------------------------|\n| `id`          | The unique identifier for the pair of templates           |\n| `template1`   | The first template                                        |\n| `template2`   | The second template                                       |\n| `typ`         | Unusued field, ignore                                     |\n| `count1`      | Log count of the first template                           |\n| `count2`      | Log count of the second template                          |\n| `typCount12`  | Unused field, ignore                                      |\n| `count12`     | Log joint-count of the template pair                      |\n| `typPmi`      | Unused field, ignore                                      |\n| `pmi`         | Log pointwise mutual information of the template pair     |\n\nThere are a total of 5,137,558 records in the file.\n\n## Query Rewrite Data\nThe query rewrite operators are available for download at\nhttp://knowitall.cs.washington.edu/oqa/data/query-rewrites.txt.gz. The file is\n1G compressed and 8G decompressed. Each line in the file is a tab-separated\nlist of (field name, field value) pairs. Here is an example record (with tabs\nreplaced with newlines):\n\n    inverted\n    0\n    joint_count\n    18\n    marg_count1\n    263\n    marg_count2\n    102\n    pmi\n    -7.30675508757\n    rel1\n    be the language of the country\n    rel2\n    be widely speak in\n\nEach record has statistics computed over a pair of relation phrases `rel1` and\n`rel2`. The relation phrases are lowercased and lemmatized. \n\n| Field         | Description                                               |\n|---------------|-----------------------------------------------------------|\n| `inverted`    | 1 if the rule inverts arg. order, 0 otherwise             |\n| `joint_count` | The number of shared argument pairs in the KB             |\n| `marg_count1` | The number of argument pairs `rel1` takes in the KB       |\n| `marg_count2` | The number of argument pairs `rel2` takes in the KB       |\n| `pmi`         | Log pointwise mutual information of `rel1` and `rel2`     |\n| `rel1`        | Lemmatized, lowercased relation phrase 1                  |\n| `rel2`        | Lemmatized, lowercased relation phrase 2                  |\n\nThere are a total of 74,461,831 records in the file.\n\n## Labeled Question-Answer Pairs\nThe questions and answers used for the evaluation are available at\nhttp://knowitall.cs.washington.edu/oqa/data/questions/. \n\nThe questions are available in their own files:\n\n* WebQuestions [train](http://knowitall.cs.washington.edu/oqa/data/questions/webquestions.train.txt) [devtest](http://knowitall.cs.washington.edu/oqa/data/questions/webquestions.devtest.txt) [test](http://knowitall.cs.washington.edu/oqa/data/questions/webquestions.test.txt) \n* TREC [train](http://knowitall.cs.washington.edu/oqa/data/questions/trec.train.txt) [devtest](http://knowitall.cs.washington.edu/oqa/data/questions/trec.devtest.txt) [test](http://knowitall.cs.washington.edu/oqa/data/questions/trec.test.txt)\n* WikiAnswers [train](http://knowitall.cs.washington.edu/oqa/data/questions/wikianswers.train.txt) [devtest](http://knowitall.cs.washington.edu/oqa/data/questions/wikianswers.devtest.txt) [test](http://knowitall.cs.washington.edu/oqa/data/questions/wikianswers.test.txt)\n\nI labeled the top predictions for each system as correct or incorrect if they\nthe predicted answer was not found in the label sets provided with WebQuestions,\nTREC, and WikiAnswers. These labels can be found at\nhttp://knowitall.cs.washington.edu/oqa/data/questions/labels.txt. The format of\nthis file is a newline-separated list of tab-separated (`LABEL`, truth value, \nquestion, answer) records. The questions and answers may be lowercased and\nlemmatized.\n\n## System Output\nSee the documentation in [oqa-data/predictions](oqa-data/predictions).\n"
  },
  {
    "path": "oqa-core/README.md",
    "content": "# Running OQA\nCreate a file called `questions.txt` that has one question per line. Running\nthe following command will run OQA on the questions and write the output to\nthe directory `output/`:\n\n    sbt 'run-main edu.knowitall.eval.qa.QASystemRunner questions.txt output'\n\nUpon completion, `output/` will contain three files: `config.txt`, `output.txt`,\nand `name.txt`. `config.txt` is a dump of the OQA settings used for this \nexecution. `name.txt` contains the input file name. `output.txt` contains the\noutput of the system, with one line per prediction. Each line is a tab-separated\nrecord with the following fields:\n\n1. The input question.\n2. The predicted answer.\n3. The score of the highest-scoring derivation from question to predicted answer.\n4. A string representation of the higest-scoring derivation.\n\nBy default, OQA uses the feature weights in `models/full.txt`. \n\nThe configuration settings can be changed by editing \n`src/main/resources/application.conf`.\n"
  },
  {
    "path": "oqa-core/build.sbt",
    "content": "scalaVersion := \"2.10.2\"\n\norganization := \"edu.knowitall.oqa\"\n\nname := \"oqa\"\n\nversion := \"0.1-SNAPSHOT\"\n\nfork in run := true\n\njavaOptions in run += \"-Xmx8G\"\n\nlibraryDependencies ++= Seq(\n  \"org.slf4j\" % \"slf4j-api\" % \"1.7.10\",\n  \"org.slf4j\" % \"slf4j-simple\" % \"1.7.10\",\n  \"org.slf4j\" % \"slf4j-log4j12\" % \"1.7.10\",\n  \"com.typesafe\" % \"config\" % \"1.0.2\",\n  \"edu.washington.cs.knowitall.nlptools\" %% \"nlptools-postag-stanford\" % \"2.4.5\",\n  \"edu.washington.cs.knowitall.nlptools\" %% \"nlptools-tokenize-breeze\" % \"2.4.5\",\n  \"edu.washington.cs.knowitall.nlptools\" %% \"nlptools-stem-morpha\" % \"2.4.5\",\n  \"edu.washington.cs.knowitall.nlptools\" %% \"nlptools-tokenize-clear\" % \"2.4.5\",\n  \"edu.washington.cs.knowitall.nlptools\" %% \"nlptools-chunk-opennlp\" % \"2.4.5\",\n  \"edu.washington.cs.knowitall.taggers\" %% \"taggers-core\" % \"0.4\",\n  \"com.rockymadden.stringmetric\" % \"stringmetric-core\" % \"0.25.3\",\n  \"org.apache.solr\" % \"solr-solrj\" % \"4.3.1\",\n  \"com.twitter\" %% \"util-collection\" % \"6.3.6\",\n  \"org.scalaj\" %% \"scalaj-http\" % \"0.3.10\",\n  \"commons-logging\" % \"commons-logging\" % \"1.2\"\n)\n\nlibraryDependencies <+= scalaVersion(\"org.scala-lang\" % \"scala-actors\" % _)\n"
  },
  {
    "path": "oqa-core/models/full.txt",
    "content": "question prefix = 'what' ^ answer shape = 'Aaaaa 111 Aaaaa'\t-0.9569500182415177\nquestion prefix = 'what' ^ answer shape = 'a aaa AAA'\t0.7544691718350967\nlex category (postags) = Unary(WP VBP DT JJ NN VB)\t-0.2743524261218534\nquestion prefix = 'where' ^ answer shape = 'Aaa Aaaaa'\t1.0291864283108354\nquestion prefix = 'UNK' ^ answer shape = 'aaa Aaaaa Aaaaa'\t0.5757022984312294\nlex category (postags) = Unary(WDT NN VB DT JJ NN VB IN)\t-0.9317767238234221\nquestion prefix = 'be' ^ isDate\t0.0\nlex category (postags) = Unary(WDT NN NN VB NN IN JJ JJ NN)\t0.0\nquestion prefix = 'what' ^ answer shape = '1/11'\t-0.05107624954396206\nlex category (postags) = Unary(WDT VB JJ NN NN)\t-0.8423932871214885\nlex category (postags) = Unary(WP VB NN JJ VB VB TO)\t0.0\nlex category (postags) = Unary(WDT NN VBP IN NN NN)\t0.0\nlex category (postags) = Unary(WDT NN VB NN)\t1.0693177672382341\nlex category (postags) = Unary(WP VB DT JJ NN VBP)\t0.21597956950018238\ntemplate arg pos tags = NN RB\t0.8059102517329442\nquestion prefix = 'how many' ^ answer shape = 'Aaaaa aaaa'\t-0.36847865742429775\nparser lexical rule = fullPatternWhenBeIn\t0.0\nparser lexical rule = quantIdentity\t0.8796059832178037\nlex category (postags) = Unary(WP VBP JJ NN VB)\t0.0\nlex type = Unary ^ rightTag = VBP\t0.0\ntemplate arg pos tags = VB NN NNS\t-0.6431959139000365\nlex category (postags) = Unary(WDT NN VB JJ NN VB)\t0.3578985771616199\ntemplate prefix how many => how many\t-0.3028091937249179\naction type = RelSynRule\t-1.4483765049252098\nlex category (postags) = Unary(WDT NN VBP NN NN VB)\t-0.4615103976650857\nquestion prefix = 'who' ^ answer shape = 'Aaaaa AA'\t0.0361182050346589\nquestion prefix = 'what' ^ answer shape = 'Aaaa aaaa'\t0.6136446552353155\nlex category (postags) = Unary(WRB JJ NN VBP DT NN VB VB)\t0.9875957679678949\nlex category (postags) = Unary(WRB JJ NN VBP VB DT NN)\t-0.9875957679678949\nlex category (postags) = Unary(WRB VBP DT NN NN VB)\t0.10981393651951843\nquestion prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaaa'\t0.1222181685516235\nevidence similarity with question\t4.2882653734688905\nquestion prefix = 'what' ^ answer shape = '11-aaaa-aaa aaaa'\t-0.38270704122583\nlex category (postags) = Unary(WDT NN VBP NN RB VB)\t-0.2218168551623495\naction type = ParsedQuestion\t0.0\nlex category (postags) = Unary(WDT VB DT NN IN DT JJS NN)\t0.0\nlex category (postags) = Unary(WP VB VB NN NN)\t-0.7333090113097409\nquestion prefix = 'where' ^ answer shape = 'aaa Aaaaa Aaaaa'\t-0.7997081357168916\ntemplate prefix when => who\t-0.5508938343670193\nlex type = Identity ^ rightTag = WP\t-0.8701203940167822\nquestion prefix = 'how' ^ answer shape = '1 aaaa 11**1'\t0.7325793506019701\ntemplate arg pos tags = DT JJ NN NN\t0.0\nlex category (postags) = Unary(WP VB DT NN IN NN NN)\t0.0\nrelSynRule pmi\t0.9996351696461145\ntemplate arg pos tags = VBN\t0.0\nquestion prefix = 'what' ^ answer shape = 'aaa-aaaa'\t-0.7329441809558555\nquestion prefix = 'how' ^ answer shape = 'aaa 11'\t0.8011674571324334\nlex category (postags) = Unary(WDT VB DT NN IN NN JJ NN)\t0.0\nlex category (postags) = Unary(WP VBP NN NN)\t0.7891280554542137\nlex category (postags) = Unary(WDT NN VBP NN VB IN)\t1.422108719445458\ntemplate arg pos tags = VBG NN\t-0.11492156147391464\nparser lexical rule = punctIdentity\t0.0\nanswer is def noun\t-1.8340021889821232\nlex category (postags) = Unary(WDT NN NN VBP VB NN)\t0.2002918642831084\nquestion prefix = 'what year' ^ isNumber\t0.7650492520977745\ntemplate arg pos tags = NN JJ\t-0.1419190076614374\nquestion prefix = 'who' ^ answer shape = 'Aaaa Aaaaa'\t-0.24917913170375774\nlex category (postags) = Unary(WP VBZ NN IN NN)\t-0.608172199927034\nminimum join key similarity\t0.35604514334276016\nlex category (postags) = Unary(WP VBP JJ NN)\t0.8478657424297702\ntemplate prefix what => when\t0.47427946005107624\nparser lexical rule = fullPatternCop\t0.46990149580445095\nlex category (postags) = Unary(WDT VB JJ NN NNS NN)\t1.6556001459321414\nlex category (postags) = Unary(WDT NN VBP NN NNS VBP IN)\t0.9452754469171835\ntemplate prefix when => what\t-0.33673841663626414\nlex category (postags) = Unary(WDT VB DT NN IN DT JJ NN)\t0.2743524261218534\nquestion prefix = 'what' ^ answer shape = 'AA ?'\t0.08099233856256838\nlex type = Unary ^ leftTag = CC\t-0.8077344035023714\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaa'\t0.4801167457132433\nlex category (postags) = Unary(WDT NN VB NN VB VB)\t-0.46990149580445095\nlex category (postags) = Unary(WP VB NN IN NN)\t0.7482670558190443\nquestion prefix = 'when' ^ answer shape = 'Aaaaa'\t-0.9317767238234221\nlex category (postags) = Unary(WP VBP NNS VB IN)\t0.0\nlex category (postags) = Unary(WDT VB VBN JJ NN)\t-0.2725282743524261\nlex category (postags) = Unary(WDT NN VB NN IN JJ NN)\t0.0\nlex type = Identity ^ leftTag = IN\t-1.1842393287121489\ndropNameOf\t-0.9076979204669828\nquestion prefix = 'how many' ^ answer shape = 'Aaaa'\t0.06712878511492155\nquestion prefix = 'what' ^ answer shape = 'aaaa aaaa aaaa'\t0.009120758847136081\nlex type = Identity ^ leftTag = VBN\t-0.8011674571324334\ntemplate pair pmi\t2.0896136658507425\nlex category (postags) = Unary(WDT VB DT NN IN JJ NN)\t0.0747902225465158\nlex category (postags) = Unary(WP VB NN NNS NN)\t0.0\nfbid join key violation\t0.0\nquestion prefix = 'what' ^ answer shape = '1111-11-11'\t0.7245530828164903\nquestion prefix = 'what' ^ answer shape = 'aaaa-aa-aaaa A-aaaa aaaa'\t0.38380153228748637\nlex category (postags) = Unary(WRB VBP NNP NNP)\t0.041590660342940566\nlex category (postags) = Unary(WRB VB JJ NN NNS NN)\t0.4118934695366655\nquestion prefix = 'UNK' ^ answer shape = 'Aaa Aaaaa'\t0.2002918642831084\nlex category (postags) = Unary(WRB VB DT NN NN NN)\t0.0\ntemplate arg pos tags = NN NN VB\t0.6023349142648668\nquestion prefix = 'UNK' ^ answer shape = 'a aaaa'\t-0.5231667274717257\ntemplate arg pos tags = NN NNS LS\t0.0\nquestion prefix = 'what' ^ answer shape = 'aaa Aaaaa'\t-1.0496169281284202\ntemplate arg pos tags = DT JJ NN VB\t-0.9317767238234221\nquestion prefix = 'what' ^ answer shape = 'aaa Aaaa Aaaaa'\t0.3568040860999635\nlex category (postags) = Unary(WRB VB NN NN)\t-0.7132433418460415\nlex category (postags) = Unary(WRB VB DT NN VB)\t0.8701203940167822\nlex category (postags) = Unary(WP VB NN NN VB)\t-0.016782196278730455\nparser lexical rule = fullPatternRelType\t-0.2929587741700108\nlex category (postags) = Identity(WDT)\t-0.8898212331265961\nquestion prefix = 'what' ^ answer shape = 'Aaa'\t-0.3079168186793141\nquestion prefix = 'how' ^ answer shape = '11 aaa A'\t-0.659978110178767\nquestion prefix = 'where' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa'\t-0.06785844582269251\nanswer is linked to freebase\t0.6242247354979934\nlex category (postags) = Unary(WRB VB DT JJ NN VB)\t0.9317767238234221\nlex category (postags) = Unary(WDT VB DT JJS NN VB)\t0.29186428310835466\nposToOf\t0.02371397300255381\nlex category (postags) = Unary(WDT VB NN NN NN VBZ NN)\t0.5527179861364466\ntemplate arg pos tags = VB NN\t-0.7344035023713973\nquestion prefix = 'what' ^ answer shape = '?Aaaaa'\t1.2612185333819774\ntemplate arg pos tags = VB JJR NN\t0.0\ntemplate arg pos tags = DT NN NN NN\t-0.011309740970448741\ntemplate arg pos tags = NN VB NN\t0.0\nquestion prefix = 'what' ^ answer shape = 'aaa aaaa'\t-0.29004013133892736\nparser lexical rule = fullPatternWhenOn\t-0.09850419554906968\nlex category (postags) = Unary(WDT NN VB JJ NN)\t-0.3101058008026268\nlex category (postags) = Unary(WDT VB DT JJ NN NN VB)\t-0.037942356804086086\nlex category (postags) = Unary(WP VBP CD JJ)\t0.0\nquestion prefix = 'what' ^ answer shape = 'AA'\t0.009120758847136035\nlex category (postags) = Unary(WDT NN VB DT NN NN VB NN IN)\t0.6683692083181321\ntemplate prefix where => what\t0.5534476468442175\nlex type = Identity ^ leftTag = TO\t-0.1711054359722729\nlex category (postags) = Unary(WDT VB DT JJ NN VBP IN)\t-0.543232396935425\nquestion prefix = 'who' ^ answer shape = 'aaaa AAA'\t0.4308646479387085\nparser lexical rule = auxIdentity\t-0.44326887997081355\nlex category (postags) = Unary(WP VBP DT NN IN NN)\t0.9565851878876322\nquestion prefix = 'where' ^ answer shape = 'aaa aaaa 1111a'\t-0.7132433418460415\nlex category (postags) = Unary(WRB VB DT NN NN VB)\t-0.9689894199197373\ntemplate arg pos tags = WDT VB JJ NN\t-0.9627873039036848\nlex category (postags) = Unary(WDT NN VBP VBN NN VB)\t0.0\nlex category (postags) = Unary(WDT NN NN VBP NN VB IN)\t0.0\nlex category (postags) = Unary(WDT NN VBP DT NN VB)\t0.29259394381612547\nquestion prefix = 'be' ^ isNumber\t-0.7457132433418461\ntuple conceptVagueness_f\t-0.06978468085790701\nquestion prefix = 'how' ^ answer shape = 'aaaa aaaa'\t-0.11236774899671652\nquestion prefix = 'be' ^ answer shape = 'a1111'\t-0.7457132433418461\nquestion prefix = 'what' ^ answer shape = 'a aaaa-aaaa aaaa'\t0.07114191900766142\ntemplate prefix UNK => UNK\t-0.9627873039036848\nquestion prefix = 'what' ^ answer shape = 'Aaa aaaa'\t0.12951477562933236\ntemplate arg pos tags = VB JJ\t0.0\nlex category (postags) = Unary(WP DT NN VBP NN VB)\t0.0\nlex type = Identity ^ leftTag = <s>\t0.24735497993433053\ntemplate arg pos tags = JJ JJ NN\t0.0\ntemplate arg pos tags = NN NNS\t-0.9452754469171835\nlex category (postags) = Unary(WDT VB DT NN IN JJ NN NN)\t0.0\nquestion prefix = 'how' ^ answer shape = 'Aaaaa 11aa'\t-0.6358993068223276\nlex category (postags) = Unary(WDT VB NN NN JJ NNS NN)\t0.0\ntemplate arg pos tags = DT JJ JJ\t0.0\nquestion prefix = 'who' ^ answer shape = 'Aaaa'\t-0.31047063115651224\ntemplate arg pos tags = VB IN NN NN\t0.0\nquestion prefix = 'where' ^ answer shape = 'Aaaaa'\t1.0645749726377234\nlex category (postags) = Unary(WDT VB VB DT NN IN NN)\t0.9025902955125866\ntuple num_extrs_i\t0.23171075013440565\nlex category (postags) = Unary(WRB VBP JJ NN VB)\t-0.10871944545786216\nquestion prefix = 'who' ^ answer shape = 'Aaaa Aaaa'\t0.19591390003648304\nquestion prefix = 'how many' ^ answer shape = '111,111 aaaa'\t0.21196643560744255\ntemplate arg pos tags = NNS JJ\t0.0\nlex category (postags) = Unary(WDT NN VB VBN NN VBP IN)\t-0.6402772710689529\nquestion prefix = 'what' ^ answer shape = 'Aaaaa aa aaa Aaaaa'a Aaaaa aa Aaaaa'\t0.44910616563298067\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaa Aaaaa'\t0.2725282743524261\nlex category (postags) = Unary(WDT VB VB NN)\t-0.7344035023713973\ndropPP\t-1.999270339292229\nlex type = Identity ^ rightTag = VBP\t-0.8077344035023714\nquestion prefix = 'what' ^ answer shape = 'Aaa Aaaa aa Aaaaa Aaaaa'\t0.2542867566581539\nquestion prefix = 'what year' ^ answer shape = 'aaaa'\t-0.7650492520977745\nparser combinator rule = UnaryIdentity\t0.0\nquestion prefix = 'how many' ^ isNumber\t-0.31229478292593943\nlex category (postags) = Unary(WP VB DT NN IN DT NN)\t0.0\nquestion prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaaaa aaaa'\t0.3542502736227654\nlex category (postags) = Unary(WP VBZ NN NN)\t-0.9551258664720905\nquestion prefix = 'what' ^ answer shape = 'AAAa'\t-0.012404232032105056\nlex category (postags) = Unary(WRB VB RB NN VB)\t0.556366289675301\nlex category (postags) = Unary(WRB JJ NN VB RB IN DT JJ NN)\t0.5242612185333819\nlex category (postags) = Unary(WDT VB DT NN VB)\t-1.1185698650127691\nanswer from namespace 'probase'\t0.029186428310835462\ntemplate arg pos tags = NN NN NN\t0.34002188982123316\ntemplate arg pos tags = NN IN JJ\t0.0\naction type = ProjectAction$\t0.0\ntemplate arg pos tags = VB DT CD NN\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aa. AAAA'\t-0.43889091572418826\nanswer from namespace 'reverb'\t-0.4593214155417731\ntemplate arg pos tags = VB NN NN\t0.0\nlex category (postags) = Unary(WP NN VBP NN VB VB)\t0.4005837285662167\nquestion prefix = 'UNK' ^ answer shape = 'aaaa Aaaaa'\t0.46990149580445095\ntemplate arg pos tags = RB JJ\t0.0\nlex category (postags) = Unary(WDT NN VB NN IN DT NN)\t0.0\nquestion prefix = 'UNK' ^ answer shape = 'AAAA'\t-0.5757022984312294\nlex category (postags) = Unary(WP VB JJ NN NN VB IN)\t0.0\ntemplate arg pos tags = JJ NN\t-0.3414812112367749\naction type = DropStopAction$\t-0.40897482670558194\nlex type = Identity ^ leftTag = NN\t-0.7763589930682233\nlex category (postags) = Unary(WDT NN VB NN IN NN)\t-0.08099233856256838\nlex category (postags) = Unary(WDT NN VB VB IN CD DT NN NN)\t-0.7303903684786575\nlex category (postags) = Unary(WDT VB JJ NN VB)\t-0.9627873039036848\nparser combinator rule = UnaryIntersect\t-0.4421743889091573\nlex category (postags) = Unary(WDT VB DT NN IN NN NN NN)\t-0.3009850419554907\nlex type = Unary ^ leftTag = VB\t-0.13900036483035388\ntemplate arg pos tags = DT JJ\t0.0\nlex category (postags) = Unary(WDT VB DT NN NN IN NN)\t0.8931047063115651\nquestion prefix = 'UNK' ^ answer shape = 'aaa Aaaaa'\t0.21597956950018238\nlex type = Identity ^ rightTag = VB\t-0.096315213425757\ntemplate arg pos tags = NNP\t0.0\nlex category (postags) = Unary(WDT NN VBP NN VBP IN)\t-0.739875957679679\nquestion prefix = 'be' ^ answer shape = 'a aaaa , aaaa aaaa'\t0.4841298796059832\nlex category (postags) = Unary(WDT VB NN NN VB VB)\t0.0\nlex category (postags) = Unary(WDT NN VB NN NN)\t0.0\nlex category (postags) = Unary(WRB VB JJ NN VBN)\t-0.8011674571324334\ntemplate arg pos tags = DT NN IN NN\t-0.5231667274717257\nquestion prefix = 'what' ^ answer shape = 'Aaa Aaaa'\t-0.3870850054724553\nquestion prefix = 'how' ^ answer shape = 'a aaaa'\t0.30317402407880334\nlex category (postags) = Unary(WDT VB DT JJ NN IN DT NN)\t-0.6450200656694637\nlex category (postags) = Unary(WDT VB PRP$ NN)\t-0.4421743889091573\ntemplate prefix how => UNK\t0.0\ntemplate prefix what => who\t-0.990879241152864\nquestion prefix = 'how' ^ answer shape = '11'\t0.3163079168186793\ntemplate prefix what => how many\t0.40167821962787303\nquestion prefix = 'what' ^ answer shape = 'aaaa aaa'\t0.315213425757023\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa Aaaaa'\t0.23166727471725648\nparaphrase lm\t-0.8559275264502015\nquestion prefix = 'what' ^ answer shape = 'Aaaaa aaaa'\t-0.2032105071141919\nnum lexical rules\t-1.6143013498723098\nlex category (postags) = Unary(WRB NNS VB NN VBN)\t-0.8777818314483765\nlex category (postags) = Unary(WDT NNS DT NN IN DT JJ NN)\t0.4421743889091573\nlex category (postags) = Unary(WDT VB NN NNS JJS NN)\t-0.14921561473914635\nparser lexical rule = fullPatternWhereIn\t-1.6811382707041225\nlex category (postags) = Unary(WRB JJ NN VBP NN VB)\t0.9755563662896753\nlex category (postags) = Unary(WRB VBP NN NN VB RP)\t0.0\nlex category (postags) = Unary(WDT VB VB DT CD NN)\t0.0\nlex category (postags) = Unary(WRB JJ NN VBP NNS VB)\t0.0\ndropTypeOf\t0.7128785114921561\nlex category (postags) = Unary(WDT VB DT NN IN NN NNP)\t0.6504925209777453\nlex type = Identity ^ leftTag = RP\t0.0\ntemplate arg pos tags = DT NN\t-1.5757022984312294\nlex category (postags) = Unary(WDT VB DT NN IN NN JJ)\t0.0\nquestion prefix = 'who' ^ answer shape = 'Aa. Aaaa'\t0.9565851878876322\ntemplate arg pos tags = NN VBN\t0.8777818314483765\ntemplate prefix where => what year\t0.4746442904049617\nquestion prefix = 'who' ^ answer shape = 'Aaaaa'\t-1.385260853703028\ntemplate arg pos tags = NN VBP JJ NN\t0.6887997081357169\ntemplate arg pos tags = IN NN\t0.8704852243706677\nlex category (postags) = Unary(WRB VBP NN VB)\t-0.38124771981028815\nquestion prefix = 'what' ^ answer shape = '1111'\t-0.7854797519153593\nlex category (postags) = Unary(WDT VB DT NN VB NN IN)\t0.0\ntemplate arg pos tags = CD DT NN NN\t0.0\nlex category (postags) = Unary(WDT VB DT NN NN IN VBG NNP)\t-0.11492156147391464\nlex category (postags) = Unary(WDT NN VB DT NN NN NN)\t-0.6683692083181321\nquestion prefix = 'UNK' ^ answer shape = 'Aaaaa'\t-1.1911711054359722\nquestion prefix = 'what' ^ answer shape = 'aaaa aa aaa Aaaaa Aaaaa'\t0.15724188252462604\ntemplate arg pos tags = NN CD CD\t0.0\nlex category (postags) = Unary(WRB JJ NN VBP JJ NNS VB)\t-0.6898941991973733\nlex category (postags) = Unary(WP VBP NN NN VBP VB)\t0.3042685151404597\nlex category (postags) = Unary(WDT VB NN NN NN VBG)\t-0.5527179861364466\ntemplate prefix be => what\t0.0\nlex category (postags) = Unary(WP VB VB TO JJ NN)\t-0.8609996351696461\nquestion prefix = 'what' ^ answer shape = 'aaa Aaaaa aaaa'\t-0.26669098869025903\nquestion prefix = 'how' ^ isDate\t-0.9073330901130974\nquestion prefix = 'when' ^ answer shape = 'Aaaa'\t0.6391827800072966\nlex category (postags) = Identity(CC)\t-0.8077344035023714\nlex category (postags) = Unary(WP VBP NN NN VB VB TO)\t-0.1711054359722729\nquestion prefix = 'how' ^ isNumber\t1.0211601605253557\nnum conjuncts\t-1.1762130609266692\nlex category (postags) = Unary(WRB JJ NNS VB RB IN DT NN)\t-0.3283473184968989\nquestion prefix = 'what' ^ answer shape = '11 aaaa'\t0.9328712148850784\nquestion prefix = 'where' ^ answer shape = '1111'\t-0.7971543232396936\ntemplate arg pos tags = CD\t0.0\nlex category (postags) = Unary(WP VBP NN JJ VB)\t0.1419190076614374\naction type = DropStopAction\t0.9996351696461145\nquestion prefix = 'what' ^ answer shape = 'Aa Aaaaa'\t0.7643195913900036\ntemplate prefix UNK => be\t0.7508208682962423\nanswer from namespace 'nell'\t-0.6242247354979934\nlex category (postags) = Identity(WP)\t-0.9627873039036848\nparser lexical rule = ignoreTypesIdentity\t0.0\nlex category (postags) = Unary(WDT VB DT NN NN IN DT NN)\t0.4035023713973003\nquestion prefix = 'who' ^ answer shape = 'aaa Aaaaa'\t0.1944545786209413\nquestion prefix = 'where' ^ answer shape = 'aaa Aaaaa Aaa'\t0.8704852243706677\ntemplate prefix be => who\t0.0\ntemplate prefix who => who\t1.4611455673112004\nlex category (postags) = Unary(WDT NN VB DT NN NN VBP IN)\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaa'\t-0.5705946734768332\ntemplate prefix what => how\t0.2725282743524261\nlex category (postags) = Unary(WP VB JJ NN)\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaa aaaa'\t0.2141554177307552\nlex category (postags) = Unary(WDT VB DT NN NN IN JJ NN)\t0.1908062750820868\nlex category (postags) = Unary(WP VBP NN VB)\t0.43013498723093757\nquestion prefix = 'what' ^ answer shape = 'Aaaaa?a aaaa'\t-0.7814666180226195\nlex category (postags) = Unary(WP VB DT NN IN NN)\t-0.8059102517329442\nlex category (postags) = Unary(WDT VB DT NN IN NN NNS JJS NN)\t0.14921561473914635\nlex category (postags) = Unary(WRB JJ NN VB JJ NN NN)\t-0.44509303174024084\nquestion prefix = 'how many' ^ answer shape = 'Aaaaa'\t-0.604888726742065\nquestion prefix = 'UNK' ^ answer shape = 'Aaa aaaa aaaa'\t-0.2002918642831084\nanswer from namespace 'freebase'\t0.704487413352791\nlex category (postags) = Unary(WDT VB JJ NNS)\t-0.4162714337832908\nquestion prefix = 'what' ^ answer shape = '? Aaaa'\t0.6431959139000365\nquestion prefix = 'what' ^ answer shape = 'Aaaa Aaaaa Aaaaa'\t0.025173294418095585\nparser lexical rule = conjIdentity\t-0.8077344035023714\nquestion prefix = 'how' ^ answer shape = 'aaa aaaa'\t0.7074060561838744\nquestion prefix = 'where' ^ answer shape = 'Aaaaa Aaaa'\t0.556366289675301\nlex type = Identity ^ leftTag = VBG\t-0.5527179861364466\nlex type = Identity ^ leftTag = RB\t0.0\nquestion prefix = 'how' ^ answer shape = 'aaaa Aaa Aaaa'\t-0.7325793506019701\nlex category (postags) = Unary(WP VB NN IN NN NN)\t0.4035023713973003\nlex type = Identity ^ rightTag = WRB\t-0.8274352426121854\nwhatDate\t-0.8011674571324334\nlex category (postags) = Unary(WDT VB NN NN)\t0.2914994527544692\nlex category (postags) = Unary(WDT NN VBP NN JJ NN)\t0.0\nlex category (postags) = Unary(WDT VB DT JJ NN VB)\t0.9029551258664721\nquestion prefix = 'how' ^ answer shape = 'a aaa aaaa'\t-0.5964976286026997\nlex category (postags) = Unary(WDT NN VBP RP DT NN)\t0.6450200656694637\ntemplate arg pos tags = NN IN JJ NN\t0.688070047427946\nlex category (postags) = Unary(WDT VB DT NN IN DT NN NN)\t1.4761036118205035\ntemplate arg pos tags = DT RBS JJ NN\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aaaaa--Aaaaa aaaa aaa aaaa--11aa aaaa'\t0.7303903684786575\nlex category (postags) = Unary(WDT JJ NN VB JJ NN)\t0.0\nparser lexical rule = fullPatternDobj\t0.1484859540313752\ntuple freq_i\t0.6551340867111581\ntemplate arg pos tags = DT NN NN JJ\t0.7617657789128056\nquestion prefix = 'UNK' ^ answer shape = 'aaaa'\t-0.8475009120758847\nlex category (postags) = Unary(WRB JJ NN VB DT NN NN)\t-0.21196643560744255\nquestion prefix = 'when' and isDate\t0.9996351696461145\nlex category (postags) = Unary(WDT NN VBP JJ NN VB)\t0.5370302809193723\nquery relation is light verb\t1.0244436337103249\nquestion prefix = 'where' ^ answer shape = 'Aaa Aaaa Aaaa'\t-0.6683692083181321\nquestion prefix = 'where' ^ isDate\t-0.7971543232396936\nlex category (postags) = Unary(WDT VB NN NNS NN)\t0.09740970448741337\nlex category (postags) = Unary(WDT NN VBP DT NN NN NN VB)\t-0.12513681138270705\ntemplate prefix what => UNK\t0.2630426851514046\ntemplate arg pos tags = RB IN DT NN\t0.3283473184968989\nquestion prefix = 'who' ^ answer shape = 'aaa-aaaa-aaaa'\t0.3619117110543597\nlex category (postags) = Unary(WP VB NN NN)\t0.7792776358993068\nquestion prefix = 'where' ^ answer shape = 'Aaa Aaaa'\t-0.9675300985041956\nlex category (postags) = Unary(WDT VB JJ NNS VBP)\t0.0\nquestion prefix = 'what' ^ answer shape = 'aaa 111?A'\t0.47172564757387814\nquestion prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaaaa'\t-0.23166727471725646\nquestion prefix = 'what' ^ answer shape = 'aaaa aaa aaaa'\t-0.7504560379423568\nlex category (postags) = Unary(WP VB IN NN)\t0.8059102517329442\ntemplate prefix who => where\t-0.8478657424297702\ntemplate prefix how => what\t0.9098869025902956\nlex category (postags) = Unary(WP VBP NNS VB)\t0.0\nparser lexical rule = fullPatternSubj\t1.135716891645385\nquestion prefix = 'who' ^ answer shape = 'Aaa Aaaaa'\t0.5804450930317402\nlex category (postags) = Unary(WDT VB JJ NN)\t1.5804450930317402\nquestion prefix = 'who' ^ answer shape = 'aaa aaa aaaa'\t-0.1039766508573513\ntemplate prefix when => where\t-0.9996351696461145\ntemplate arg pos tags = JJ NN NN\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aaaaa'a Aaaaa'\t0.34695366654505655\naction type = ExecutionAction$\t0.0\nquestion prefix = 'what year' ^ answer shape = '1111'\t0.7650492520977745\nquestion prefix = 'how' ^ answer shape = '1 aaaa'\t0.09084275811747544\nquestion prefix = 'what' ^ answer shape = 'a aaa'\t-0.2743524261218534\nquestion prefix = 'who' ^ answer shape = 'Aaaaa (Aa aaa aaaa)'\t-0.23859905144107996\nquestion prefix = 'UNK' ^ answer shape = 'Aaaa'\t-0.5169646114556732\nquestion prefix = 'how' ^ answer shape = 'Aaa Aaaaa Aaa Aaa'\t0.659978110178767\ntemplate arg pos tags = DT JJ NN VBN\t0.0\nlex category (postags) = Unary(WP VBP NN VB NN TO)\t0.0\nquestion prefix = 'how' ^ answer shape = '111.111'\t0.9573148485954032\nparser lexical rule = fullPatternPoss\t1.036118205034659\nquestion prefix = 'what' ^ answer shape = 'aaaa aaaa aaa'\t-0.5928493250638454\nquestion prefix = 'what' ^ answer shape = 'aaaa aaaa'\t-0.35716891645384896\ntemplate prefix what => where\t-0.8445822692448012\nquestion prefix = 'UNK' ^ answer shape = 'Aaaaa Aaaaa'\t0.19299525720539948\nlex category (postags) = Unary(WDT JJ NN VB IN NN)\t0.688070047427946\nlex type = Unary ^ leftTag = WRB\t0.4005837285662167\nlex category (postags) = Unary(WP VB NNP NNP VB)\t-0.5519883254286757\ntemplate arg pos tags = NN NNS VBP\t0.0\ntemplate pair count1\t-2.0042169835066455\nlex category (postags) = Unary(WP VBP DT NN NN VB)\t0.0\nparser lexical rule = fullPatternTypeSubj\t-0.9525720539948924\nlex category (postags) = Unary(WDT NN VBP NN NN VBP DT NN NN IN)\t0.0\nquestion prefix = 'how' ^ answer shape = '1111'\t0.46625319226559647\nquestion prefix = 'what' ^ answer shape = 'Aaaaa a aaaa'\t0.6698285297336739\nquestion prefix = 'UNK' ^ answer shape = 'aa aaaa'\t0.08464064210142283\nlex category (postags) = Unary(WP VBP DT JJ NN NN)\t0.20102152499087922\nlex category (postags) = Unary(WDT VB IN NN)\t0.15286391827800072\nlex type = Identity ^ rightTag = </s>\t0.0\nlex category (postags) = Unary(WDT VB DT NN TO DT NN)\t0.7325793506019701\nparser lexical rule = whIdentity\t-2.2597592119664354\nlex category (postags) = Unary(WP VBP NN NN NN VB)\t0.6636264137176213\ntemplate prefix how => what year\t-0.8011674571324334\nquestion prefix = 'who' ^ answer shape = 'Aaaaa Aaaa'\t0.2013863553447648\nlex category (postags) = Unary(WDT VB DT JJ JJS NN IN DT NN)\t0.0\nquestion prefix = 'what' ^ isDate\t-0.40386720175118573\ntemplate arg pos tags = VBP NN\t0.6822327617657789\nquestion prefix = 'what' ^ answer shape = 'aaaa aa aaaa aaaa'\t0.21524990879241152\nparser lexical rule = fullPatternWhereIs\t-0.3870850054724553\nlex category (postags) = Unary(WDT VB DT NN IN DT NN)\t-0.8394746442904051\nquestion prefix = 'who' ^ answer shape = 'aaa AAA'\t-0.7676030645749726\nlex category (postags) = Unary(WDT NN VBP JJ NN VB IN)\t0.0\nlex category (postags) = Unary(WRB VB DT NN NN)\t-0.8931047063115651\nlex category (postags) = Unary(WDT VB JJ NN VB VB)\t0.6202116016052536\nlex category (postags) = Unary(WP VB NN)\t0.0\nlex category (postags) = Unary(WDT VB NN NN VBZ NN)\t-0.30134987230937615\nquestion prefix = 'what' ^ answer shape = 'Aaaaa?Aaaaa Aaaa Aaaa'\t0.13644655235315584\nquestion prefix = 'what' ^ answer shape = '11 aaa aaaa'\t-0.7223641006931777\nquestion prefix = 'when' ^ answer shape = 'Aaaaa 11'\t-0.5713243341846042\nquestion prefix = 'where' ^ answer shape = 'Aaaaa Aaaaa'\t0.5133163079168187\nlex type = Identity ^ leftTag = WP\t-0.9627873039036848\nquestion prefix = 'who' ^ answer shape = 'Aaaaa & Aaaaa'\t-0.6898941991973733\nlex type = Unary ^ leftTag = <s>\t-0.24735497993433053\nquestion prefix = 'when' ^ isDate\t1.9277635899306822\nquestion prefix = 'what' ^ answer shape = 'Aaaaa aa Aa Aaaaa'\t0.3889091572418826\nlex type = Identity ^ leftTag = VBP\t0.21597956950018238\nlex category (postags) = Unary(WRB JJ NN VBP DT JJ NN VB)\t-0.5242612185333819\nlex category (postags) = Unary(WDT VB VB NN NN)\t0.0\nlex category (postags) = Unary(WP VB NN IN CD)\t0.9273987595767967\nlex type = Identity ^ leftTag = NNS\t-1.0594673476833272\nquestion prefix = 'who' ^ answer shape = 'Aaa Aaa'\t0.1039766508573513\nquestion prefix = 'what' ^ answer shape = 'a ?aaa'\t-0.9204669828529733\nquestion prefix = 'where' and isDate\t-0.9996351696461145\nlex category (postags) = Unary(WDT VB JJ NN IN NN)\t0.8719445457862094\nquestion prefix = 'where' ^ answer shape = 'Aa Aaaaa aaa Aaa Aaaa'\t-0.041590660342940566\nquestion prefix = 'who' ^ answer shape = 'aaa 11aa aaaa'\t-0.9689894199197373\ntemplate arg pos tags = JJ NNP\t-0.2520977745348413\nquestion prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaaa aaaa'\t0.3060926669098869\nlex category (postags) = Unary(WP VB VB JJ NN IN NN)\t0.0\nlex category (postags) = Unary(WRB VB NN NNS NN)\t0.0\nlex category (postags) = Unary(WP VB DT NN NN VB)\t0.9689894199197373\nlex category (postags) = Unary(WP VBP VB DT NN)\t-0.8701203940167822\nlex category (postags) = Unary(WDT NN VBP NN VB)\t-0.4797519153593579\nquestion prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaa'\t0.855162349507479\nquestion prefix = 'what' ^ answer shape = 'aaaa Aaaaa'\t0.40933965705946734\nquestion prefix = 'where' ^ answer shape = 'a Aaaaa Aaaaa aaaa'\t0.8128420284567677\nquestion prefix = 'when' ^ answer shape = '11 Aaaa'\t0.5746078073695732\nquestion prefix = 'where' ^ answer shape = 'Aaaa'\t0.6267785479751915\nquestion prefix = 'what' ^ answer shape = 'a-aaaa'\t-0.7544691718350967\nlex category (postags) = Unary(WDT NN VBP NN VBP TO)\t0.0\nquestion prefix = 'who' ^ answer shape = 'aaaa aaaa'\t0.6683692083181321\ntemplate prefix what => what\t0.7701568770521707\ntemplate arg pos tags = JJ NNS VBP\t0.0\nlex category (postags) = Unary(WRB JJ NN VB IN NN)\t0.0\nlex category (postags) = Unary(WP VBP CD)\t-0.9273987595767967\nquestion prefix = 'what' ^ answer shape = '?aaaa aaaa?'\t0.01824151769427218\nquestion prefix = 'UNK' ^ answer shape = 'aaa Aaaaa aaaa'\t0.9029551258664721\nlex category (postags) = Unary(WDT VB DT NN NN JJ NN)\t-0.7617657789128056\nlex category (postags) = Unary(WDT NN VBP JJ NNS VB)\t0.0\nquestion prefix = 'what' ^ answer shape = 'aa aaaa'\t0.037942356804086086\ndropAdverb\t-0.7544691718350967\ntemplate arg pos tags = WDT JJ VB VBP\t0.7508208682962423\nlex category (postags) = Unary(WP VB VBN NN)\t0.0\nquestion prefix = 'when' ^ answer shape = '1111 aaaa aaaa'\t-0.10981393651951843\nlex category (postags) = Unary(WP VBP JJ NNS VBP IN)\t0.0\nlex category (postags) = Unary(WDT NN VB VB JJ NNP)\t0.2520977745348413\ntemplate prefix when => when\t-0.46917183509668003\ntemplate arg pos tags = WDT NN\t0.0\ntemplate prefix who => what\t-0.21233126596132812\ntemplate prefix where => who\t-0.8704852243706677\ntemplate arg pos tags = DT NN VB\t0.9875957679678949\nlex type = Identity ^ leftTag = CD\t0.08609996351696461\nlex category (postags) = Unary(WRB VBP DT CD DT NN JJ NN VB)\t0.0\ntemplate prefix where => how many\t0.11528639182780007\nlex category (postags) = Unary(WRB VB NN JJ JJ VBP IN)\t0.0\ntemplate prefix UNK => where\t0.0\naction type = ParaphraseRule\t-1.726742064939803\nlex category (postags) = Unary(WP VB JJ NN VB)\t0.8609996351696461\nquestion prefix = 'what' ^ answer shape = 'AAAA AAAA'\t0.04706311565122218\nquestion prefix = 'who' ^ answer shape = 'aaaa aaaa aaaa'\t0.02991608901860635\nquestion prefix = 'when' ^ answer shape = 'Aaaaa 11 1111'\t-0.019336008755928558\nlex category (postags) = Unary(WP VB NN NNS JJS NN)\t-0.4035023713973003\nquestion prefix = 'what' ^ answer shape = 'Aaaaa aaaa aa Aaaaa'\t0.5060197008391099\nquestion prefix = 'what' ^ answer shape = 'Aaa aaaa aaaa aaaa'\t1.1656329806639913\nlex category (postags) = Unary(WDT NN VBP IN NN)\t0.008755928493250638\nquestion prefix = 'UNK' ^ answer shape = 'Aaaa Aaa Aaaaa'\t0.7508208682962423\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa aaaa'\t-0.8566216709230208\ntemplate pair count2\t-2.9296376158757527\nlex category (postags) = Unary(WDT NN VBP NN NN VB TO)\t0.0\nlex category (postags) = Unary(WDT JJ NN VBP JJ NN)\t0.6887997081357169\nlex type = Unary ^ leftTag = NN\t-0.4421743889091573\ntemplate arg pos tags = NN NNS NN\t0.6431959139000365\nquestion prefix = 'how many' ^ answer shape = 'Aaaaa Aaaaa'\t-0.2933236045238964\nquestion prefix = 'what' ^ answer shape = 'a aaaa aaaa'\t-0.4771981028821598\nlex category (postags) = Unary(WDT JJ NN VBP DT JJ NN VB)\t0.0\nquestion prefix = 'who' ^ answer shape = 'Aaaaa aa-Aaaaa'\t0.8059102517329442\nlex category (postags) = Unary(WDT JJ NN VBP NN VB)\t-0.688070047427946\nlex category (postags) = Unary(WP VB VBN NNP NNP VBZ NN)\t-0.03575337468077344\nlex category (postags) = Unary(WDT VB DT JJ NN IN NN)\t0.0\nparser lexical rule = fullPatternDefn\t-1.2506384531192996\nquestion prefix = 'how' ^ answer shape = 'aaa aaaa aaaa'\t-0.46625319226559647\nparser lexical rule = fullPatternHaveProp\t0.026267785479751914\nquestion prefix = 'what' ^ answer shape = 'aaaa'\t-2.579350601970084\nquestion prefix = 'where' ^ answer shape = 'Aaaaa Aaaa Aaaa'\t0.8931047063115651\nlex category (postags) = Unary(WDT VB DT NN IN DT JJ NN NN)\t-0.16307916818679313\nquestion prefix = 'how many' ^ answer shape = 'aaaa'\t0.3746807734403502\nlex category (postags) = Unary(WDT VB DT NNS IN JJ NN)\t-0.09157241882524625\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa'\t0.08427581174753729\nlex category (postags) = Identity(VB)\t-0.44326887997081355\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaaa'\t-0.929222911346224\nquestion prefix = 'what' ^ answer shape = 'Aaa Aaaa Aaaa'\t-0.527544691718351\nlex category (postags) = Unary(WDT VB NN JJ VB VB)\t-0.7672382342210872\nlex category (postags) = Unary(WDT NN VB DT NN VB IN)\t-0.7325793506019701\nlex type = Identity ^ rightTag = NN\t1.1514045968624589\ntemplate arg pos tags = NN NN\t0.6763954761036118\nuses full parser pattern\t0.9996351696461145\nquestion prefix = 'how' ^ answer shape = 'Aaaaa 11'\t-0.27143378329076984\nlex category (postags) = Unary(WDT VB JJ NN NNS NN NN)\t-0.9547610361182051\nquestion prefix = 'what' ^ answer shape = 'a aaaa'\t-0.008391098139365227\nquestion prefix = 'what' ^ answer shape = 'aa aaa aaaa'\t-0.4264866836920832\nquestion prefix = 'when' ^ answer shape = 'Aaaaa 11 , 1111'\t0.019336008755928558\ntemplate arg pos tags = NNS\t0.0\nlex category (postags) = Unary(WDT NN VBP NN NN VB IN)\t-0.3268879970813572\nlex category (postags) = Unary(WDT VB VBG NN NNS NN)\t0.11492156147391464\nlex category (postags) = Unary(WRB VB JJ NN VB)\t-0.8478657424297702\nquestion prefix = 'who' ^ answer shape = 'Aaa Aaaa'\t-0.016782196278730455\nlex category (postags) = Unary(WDT NN VB IN DT NN)\t0.0\nparser lexical rule = fullPatternProperty\t1.4739146296971908\nlex category (postags) = Unary(WP VBP NN NNS VB)\t0.0\nquestion prefix = 'what' ^ answer shape = 'aaaa-aaaa'\t0.6278730390368479\nlex category (postags) = Unary(WP VB DT NN IN DT JJ NN)\t0.0\nquestion prefix = 'who' ^ answer shape = 'aaa aaaa'\t0.18642831083546152\nquestion prefix = 'what' ^ isNumber\t-0.39255746078073694\ntemplate arg pos tags = JJ NN IN JJ\t0.0\ntemplate prefix UNK => why\t0.4005837285662167\nlex category (postags) = Unary(WDT VB DT NN IN CD DT NN NN)\t0.7303903684786575\ntemplate prefix UNK => when\t0.0\nlex type = Unary ^ leftTag = VBP\t0.0\nquestion prefix = 'who' ^ isDate\t-0.8478657424297702\nlex category (postags) = Unary(WDT VB DT NN NN VB IN)\t0.0\ntemplate pair count12\t2.0999082942234693\nquestion prefix = 'who' ^ answer shape = 'Aaaaa Aaaaa'\t1.1342575702298432\nlex category (postags) = Unary(WRB JJ NN VBP JJ NN VB)\t-0.9368843487778183\ntemplate prefix how many => what\t0.5403137541043415\nlex category (postags) = Unary(WDT VB DT NN IN NN)\t1.3495074790222548\nquestion prefix = 'what' ^ answer shape = 'AAAA'\t-0.9927033929222913\nlex category (postags) = Unary(WRB VB JJ NN)\t-0.5899306822327618\nquestion prefix = 'what' ^ answer shape = 'Aa'aaa-aa'\t0.0722364100693178\ntuple popularity_i\t0.5574075851565106\ntemplate arg pos tags = WP VBP NN NN\t0.0\ntemplate arg pos tags = '' NN ''\t0.0\nlex category (postags) = Unary(WDT VBP NN NN)\t0.0\ntemplate prefix UNK => who\t0.01568770521707406\nquestion prefix = 'be' ^ answer shape = 'Aaaaa'\t0.26158336373586283\nlex category (postags) = Unary(WRB VBP NNP NNP VB)\t-0.041590660342940566\nlex category (postags) = Unary(WP VBP DT NN VB)\t-0.9573148485954032\ntemplate arg pos tags = VB JJ NN\t0.0\nlex type = Identity ^ leftTag = VB\t1.150674936154688\nquestion prefix = 'who' ^ answer shape = 'Aaaaa aaaa 111 aaaa aaaa aaaa'\t0.704487413352791\ntemplate arg pos tags = WRB VBP NNP NNP\t0.0\nquestion prefix = 'what' ^ answer shape = 'aa aaaa aaaa'\t-0.3889091572418826\ntemplate arg pos tags = RB\t0.543232396935425\nlex category (postags) = Unary(WRB VB NN RB VB)\t0.09923385625684056\ntemplate arg pos tags = NN IN NN\t0.0\ntemplate arg pos tags = VBN JJ\t0.0\ntemplate arg pos tags = NNS JJS NN\t-0.4035023713973003\nlex category (postags) = Unary(WRB JJ NN VBP NN NN VB)\t1.3940167821962788\nquestion prefix = 'who' ^ answer shape = 'Aaa'\t0.4035023713973003\ntemplate arg pos tags = VB JJ NNP\t0.2520977745348413\nquestion prefix = 'where' ^ answer shape = 'Aaaa aaa Aaaaa'\t-0.8898212331265961\nlex type = Identity ^ leftTag = WDT\t-0.8898212331265961\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa'\t0.05107624954396206\nquestion prefix = 'what year' ^ isDate\t0.7650492520977745\nquestion prefix = 'when' ^ answer shape = 'aaa 1111 'a'\t0.29952572053994897\nquestion prefix = 'how' ^ answer shape = 'aaaa'\t-0.34950747902225465\nquestion prefix = 'what' ^ answer shape = 'Aaa Aaaaa'\t-0.5257205399489238\ntemplate arg pos tags = WDT NN VB NN\t-0.46990149580445095\nlex category (postags) = Unary(WRB VBP NN NN VB)\t0.0\nquestion prefix = 'who' ^ answer shape = 'Aaaaa aaaa'\t-0.608172199927034\nquestion prefix = 'UNK' ^ answer shape = 'Aaaaa.'\t0.5169646114556732\nquestion prefix = 'UNK' ^ isNumber\t0.0\nquestion prefix = 'how many' ^ answer shape = 'aaaa://aa.aaaa.aaa/aaaa/Aaa%11Aaaaa%11Aaaa%11(AA%11aaaa)'\t-0.5242612185333819\nlex category (postags) = Unary(WDT JJ NN VB RB IN DT NN)\t0.3283473184968989\nlex category (postags) = Unary(WDT NN VB DT NN NN JJ)\t0.7617657789128056\ntemplate arg pos tags = VBP DT NN\t-1.1514045968624589\ntemplate arg pos tags = DT JJ NN\t-1.2013863553447646\ntemplate arg pos tags = JJ NNS NN\t-0.6504925209777453\nquestion prefix = 'UNK' ^ isDate\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aaaa'\t-0.6369937978839839\ntemplate prefix UNK => what\t-1.6563298066399126\nparser lexical rule = fullPatternCopRel\t-0.48704852243706687\nquestion prefix = 'what' ^ answer shape = '?AAAA'\t-0.5056548704852244\nquestion prefix = 'where' ^ answer shape = 'Aa'\t0.09923385625684056\nsteps\t-3.2630426851514045\nlex category (postags) = Unary(WDT NN VBP DT NN)\t-0.16380882889456405\nquestion prefix = 'who' ^ answer shape = 'Aaa 11-aaaa-aaa'\t-0.15432323969354256\nquestion prefix = 'when' ^ answer shape = '1111'\t1.3772345859175483\nlex category (postags) = Unary(WDT VB DT NN IN NN NN)\t-1.363006202116016\ntemplate prefix when => what month\t0.0\naction type = AbstractArgAction\t-2.7347683327252827\nlex category (postags) = Unary(WRB VB DT NN NNS VB)\t0.0\ntemplate arg pos tags = WRB VB VBN\t-0.8898212331265961\nlex category (postags) = Unary(WDT RB VBP NN NN)\t-0.3042685151404597\nlex category (postags) = Unary(WP VBP NNP)\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aaaa aa aaa Aaaa'\t0.8515140459686246\nanswer from namespace 'openie4'\t-1.7599416271433783\nquestion prefix = 'when' ^ answer shape = 'Aaa'\t0.10981393651951843\nquestion prefix = 'what' ^ answer shape = '?aaaa aaaa ?'\t-0.5946734768332725\nlex category (postags) = Unary(WDT VB DT NN IN DT NN NN NN)\t-0.011309740970448741\nlex category (postags) = Unary(WRB VB VBN NN NNS NN)\t-0.8898212331265961\nlex category (postags) = Unary(WP VB NNP NNP)\t0.5519883254286757\nquestion prefix = 'where' ^ answer shape = 'a aaaa'\t-0.8128420284567677\nlex category (postags) = Unary(WRB JJ NN VBP VB NN NNS)\t-0.6431959139000365\nquestion prefix = 'what' ^ answer shape = 'aaaa.aaa'\t-0.3542502736227654\nlex category (postags) = Unary(WRB VB NN)\t-0.9230207953301715\nlex category (postags) = Unary(WP VBP NN CD CD)\t-0.47318496898942\nlex category (postags) = Unary(WRB VB NN VB)\t-0.556366289675301\nquestion prefix = 'how' ^ answer shape = 'aaa-AA, aaa-aaaa aaaa aaaa'\t0.8847136081721999\nquestion prefix = 'who' ^ isNumber\t-0.4188252462604889\ntemplate arg pos tags = JJ NN VB\t-0.02006566946369938\nlex category (postags) = Unary(WRB VB NN NN VBZ NN NN)\t0.7887632251003283\nquestion prefix = 'what' ^ answer shape = 'Aaaaa'a'\t-0.03319956220357534\nlex category (postags) = Unary(WDT NN VB NNS VB IN)\t0.0\nparser lexical rule = fullPatternTypeDobj\t0.21853338197738048\nquestion prefix = 'how' ^ answer shape = '111 aaaa aaaa'\t-0.8847136081721999\nlex category (postags) = Unary(WDT VB DT JJS NN IN DT NN)\t0.0\nquestion prefix = 'what' ^ answer shape = 'aaaa-aaaa aaaa'\t0.43305363006202113\ntemplate arg pos tags = NNP NNP\t-0.5519883254286757\ntemplate arg pos tags = NN VBP NN\t-0.9109813936519519\nlex category (postags) = Unary(WP VBP NN NN VB)\t1.2323969354250273\nlex type = Unary ^ rightTag = </s>\t0.0\nlex category (postags) = Unary(WDT VB NN IN NN)\t-0.9496534111638089\nlex category (postags) = Unary(WDT NN VBP DT JJ NN VBP JJ NN IN)\t0.0\ntemplate arg pos tags = JJ JJ\t0.6504925209777453\ntemplate arg pos tags = VBP NNS\t0.0\nquestion prefix = 'where' ^ answer shape = 'aaaa'\t-0.809923385625684\ntemplate prefix UNK => how\t0.0\nquestion prefix = 'where' ^ answer shape = 'aaaa-aaaa'\t-0.6950018241517695\nlex category (postags) = Unary(WRB VB VBN NN)\t1.8128420284567677\nquery similarity with question\t3.3445331594912027\nquestion prefix = 'what' ^ answer shape = 'aaaa.'\t0.479022254651587\ntemplate arg pos tags = NN NNS JJS NN\t0.14921561473914635\ntemplate arg pos tags = JJ VB VBP NN\t-0.7508208682962423\nlex category (postags) = Unary(WDT NN VB NN VB)\t0.1977380518059103\ntemplate arg pos tags = VB DT NN\t0.03246990149580445\nquestion prefix = 'how many' ^ answer shape = 'Aaaa Aaaaa'\t0.9875957679678949\nlex category (postags) = Unary(WP VBP NN NN VBP)\t0.0\nlex category (postags) = Unary(WDT VB DT NN)\t0.0\nquestion prefix = 'when' ^ isNumber\t1.1787668734038672\nlex category (postags) = Unary(WP VBP DT NN NN NN)\t0.0\nquestion prefix = 'who' ^ answer shape = 'aaa Aaa Aaaa Aaaa'\t0.39584093396570597\nlex type = Identity ^ leftTag = JJ\t1.4928858080992338\nlex type = Unary ^ leftTag = CD\t0.7935060197008391\nquestion prefix = 'what' ^ answer shape = '1,111a'\t-0.3535206129149946\nquestion prefix = 'who' ^ answer shape = 'aaa Aaaaa Aaaaa'\t-0.3619117110543597\nquestion prefix = 'where' ^ answer shape = 'aaa AAA'\t0.7971543232396936\nlex category (postags) = Unary(WRB VB NN VBN)\t0.8777818314483765\nquestion prefix = 'how' ^ answer shape = 'Aaaaa'\t-0.8011674571324334\ntemplate prefix who => when\t-0.9689894199197373\nquestion prefix = 'when' ^ answer shape = 'Aaaaa 1 , 1111'\t-0.3914629697190807\nlex category (postags) = Unary(WDT NN VB DT JJ NN VB)\t0.0\nquestion prefix = 'how many' ^ answer shape = 'Aaaaa Aaaa'\t0.1495804450930317\ntemplate arg pos tags = JJ\t1.038672017511857\nlex category (postags) = Unary(WDT VB VB JJR NN)\t0.0\nlex category (postags) = Unary(WDT NNS DT NN IN JJ NN)\t-0.1908062750820868\nquestion prefix = 'what' ^ answer shape = 'aaaa aa aaaa aaaa aaaa aaaa aaa aaaa aa aaaa aaaa'\t0.6840569135352061\nlex category (postags) = Identity(WRB)\t-0.4071506749361547\nlex category (postags) = Unary(WP VBP VB NN IN DT NN)\t-0.2002918642831084\nlex type = Identity ^ leftTag = WRB\t-0.8077344035023714\ntemplate prefix when => how many\t-0.44509303174024084\nquestion prefix = 'what year' and isDate\t0.9996351696461145\nlex category (postags) = Unary(WDT JJ NN VBP NN NNS VB)\t0.0\nquestion prefix = 'what' ^ answer shape = 'AAA'\t0.269974461875228\nquestion prefix = 'how' ^ answer shape = '11 aaaa'\t0.10871944545786216\nquestion prefix = 'what' ^ answer shape = 'aaaa?a aaaa aaaa'\t-0.037942356804086086\nlex category (postags) = Unary(WP VBP NN VB IN)\t0.23823422108719444\nquestion prefix = 'how many' ^ isDate\t0.0\ntemplate prefix how => where\t-0.10871944545786216\nlex category (postags) = Unary(WDT VB DT JJS NN VB RB VB)\t-0.29186428310835466\ntemplate arg pos tags = NN VBP\t0.0\naction type = TemplatePair\t-2.7347683327252827\nlex category (postags) = Unary(WP VBP NN)\t-1.8664720904779277\ntemplate prefix where => when\t-0.9996351696461145\nlex category (postags) = Unary(WDT VB NN IN NN JJ)\t0.7311200291864283\nlex category (postags) = Unary(WP VBP VB DT NN IN NN)\t-0.9565851878876322\nquestion prefix = 'who' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa'\t-0.9273987595767967\nlex category (postags) = Unary(WDT VB DT JJ NN IN NNP)\t0.0\ntemplate arg pos tags = JJ VB\t0.0\nlex category (postags) = Unary(WDT VB DT JJ NN)\t-1.3451295147756293\nquestion prefix = 'who' ^ answer shape = 'aaaa'\t-0.7351331630791682\nlex category (postags) = Identity(CD)\t0.8796059832178037\nquestion prefix = 'what' ^ answer shape = 'a aaaa aaa'\t0.7617657789128056\ntemplate arg pos tags = NN VB\t1.20977745348413\nlex category (postags) = Unary(WDT NN WDT NN VB)\t0.0\nlex category (postags) = Unary(WDT VB DT NN NN IN DT JJ NN)\t-0.07515505290040136\nlex category (postags) = Unary(WRB VB DT PRP JJ NN)\t0.0\nquestion prefix = 'where' ^ isNumber\t-1.5103976650857351\nlex category (postags) = Unary(WDT NN VBP NN VBP VB)\t0.0\nlex category (postags) = Unary(WP VB DT JJ NN IN NN)\t0.0\nlex category (postags) = Unary(WDT VB DT NN NN)\t-0.41663626413717614\nlex category (postags) = Unary(WP VB DT NN NN IN DT JJ NN NN)\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aaaaa'\t-0.6917183509668005\nlex category (postags) = Identity(WRB RB)\t0.0\nlex type = Unary ^ rightTag = VB\t-0.4421743889091573\ntemplate prefix where => UNK\t1.035388544326888\nlex category (postags) = Unary(WP VBP DT NN VB IN)\t0.16380882889456405\nlex category (postags) = Identity(NNS)\t0.0\nparser lexical rule = fullPatternWhenIn\t0.6410069317767237\ntemplate arg pos tags = NN\t-2.1280554542137904\nquestion prefix = 'what' ^ answer shape = 'Aaaa Aaaaa'\t0.32761765778912805\nquestion prefix = 'what' ^ answer shape = 'Aaaaa AAa'\t-0.08099233856256838\ntemplate prefix who => how many\t-0.6898941991973733\ntemplate is typed\t-0.9689894199197373\nlex category (postags) = Unary(WDT NN VBP NN VB NN IN)\t-0.9109813936519519\ntuple conf_f\t-0.8841977847922853\nquestion prefix = 'who' ^ answer shape = 'AA-Aa Aaaaa'\t-0.704487413352791\nlex category (postags) = Unary(WRB VBP NN JJ VB VB)\t0.0\nlex category (postags) = Unary(WDT VB NN)\t0.7344035023713973\nquestion prefix = 'what' ^ answer shape = 'aa/aaa'\t-0.16380882889456405\nquestion prefix = 'how' ^ answer shape = 'AAA AAAA'\t-0.5180591025173295\nlex category (postags) = Unary(WDT VB DT NN IN NNP)\t0.0\ntemplate arg pos tags = DT NN NN\t-0.19919737322145203\nlex category (postags) = Unary(WDT CD NN VBP JJ NN)\t-0.6887997081357169\nlex type = Identity ^ leftTag = NNP\t1.3812477198102882\nlex category (postags) = Unary(WDT NN VBP DT JJ NN VB)\t0.07515505290040136\nquestion prefix = 'what' ^ answer shape = 'Aaa Aaaaa aaa Aaaa aa aaa Aaaaa Aaaaa'\t-0.5501641736592484\nlex category (postags) = Unary(WDT NN VB DT NN VB)\t-0.26705581904414444\nquestion prefix = 'when' ^ answer shape = 'Aaaaa Aaaaa'\t-0.9959868661072602\ntemplate arg pos tags = DT NN NN VB\t0.6683692083181321\nquestion prefix = 'what' ^ answer shape = '?Aaaaa ?'\t0.7672382342210872\ntemplate prefix when => UNK\t-0.10981393651951843\nlex category (postags) = Unary(WP VB DT NN IN NN VBN)\t0.0\nlex category (postags) = Unary(WDT NN VBP NN JJ VB)\t0.0\nquestion prefix = 'who' ^ answer shape = 'Aaaaa aa Aaaaa'\t0.8318132068588107\nlex category (postags) = Identity(VBP)\t0.0\nlex category (postags) = Unary(WDT VB DT NN IN DT RBS JJ NN)\t0.0\ntemplate prefix where => where\t-0.005107624954395984\ntemplate arg pos tags = WDT NN VBP NN\t0.4005837285662167\nlex category (postags) = Unary(WRB VBP NN VB NN IN)\t0.0\nquestion prefix = 'UNK' ^ answer shape = 'aaaa aaaa'\t-0.055454213790587376\nlex category (postags) = Unary(WDT VB DT NN NN IN NN NN)\t0.0\nlex category (postags) = Unary(WDT VB NNP)\t0.0\nlex category (postags) = Unary(WDT VB IN NN NN)\t-0.05107624954396206\ntemplate arg pos tags = NN VBP NN VB\t0.0\nlex category (postags) = Unary(WDT VBP NN NN VB IN)\t-0.6410069317767239\nlex category (postags) = Unary(WP VB DT NN IN NN CD CD)\t0.47318496898942\nlex category (postags) = Identity(.)\t0.0\nquestion prefix = 'what' ^ answer shape = 'Aaa Aaaaa Aaaaa'\t-0.04377964246625321\nquestion prefix = 'what' ^ answer shape = 'Aaaaa Aaaa Aaaa'\t1.3090113097409706\nlex category (postags) = Unary(WDT NN VB NN VB IN)\t0.8445822692448012\nlex category (postags) = Unary(WDT NN VB VBP NN)\t0.0\ntemplate arg pos tags = VB NN VBN\t-0.8777818314483765\nquestion prefix = 'what' ^ answer shape = 'AA Aaaaa'\t0.9452754469171835\nlex category (postags) = Unary(WP VBD NN)\t-0.1039766508573513\nlex category (postags) = Unary(WDT VB DT NN IN NN NNS NN)\t0.6431959139000365\nlex category (postags) = Unary(WRB VBP NN VBN IN)\t0.0\n"
  },
  {
    "path": "oqa-core/questions.txt",
    "content": "Who assassinated JFK?\n"
  },
  {
    "path": "oqa-core/src/main/resources/application.conf",
    "content": "qa.maxDerivs = 100\nqa.maxUQueries = 100\nqa.maxParaphrases = 100\nqa.maxAnswerGroups = 50\nqa.defaultParaphraser = templatesLm\nqa.defaultParser = regex\nqa.defaultExecutor = identity\nqa.defaultGrouper = basic\nqa.defaultScorer = numDerivations\n\ntriplestore.url = \"http://localhost:8983/solr/triplestore\"\ntriplestore.maxHits = 100\ntriplestore.cacheSize = 100000\ntriplestore.timeout = 5000\ntriplestore.skipTimeouts = true\ntriplestore.namespaces = [\"reverb\", \"freebase\", \"probase\", \"openie4\", \"nell\"]\ntriplestore.skipNamespaces = \"^$\"\n\nparaphrase.identityScore = 1.0\nparaphrase.defaultLm = 1.0\nparaphrase.defaultPmi = 1.0\n\nparaphrase.template.maxHits = 100\nparaphrase.template.url = \"http://localhost:8985/solr/paraphrase\"\nparaphrase.template.maxArgLength = 4\nparaphrase.template.scoringModel = pmiLm\nparaphrase.template.minPmi = -25.0\nparaphrase.template.maxPmi = 0.0\nparaphrase.template.scale = true\nparaphrase.template.multipleParaphrases = false\nparaphrase.template.timeout = 2000\nparaphrase.template.useTypes = false\nparaphrase.template.skipTimeouts = true\nparaphrase.template.numTemplates = 300000\nparaphrase.template.probFalsePos = 0.01\nparaphrase.template.stopTemplatesPath = \"/edu/knowitall/paraphrasing/template/templatesStops.txt\"\n\nparaphrase.rules.ruleSetPath = \"/edu/knowitall/paraphrasing/rules/rules.txt\"\n\nrelsyn.url = \"http://localhost:8984/solr/relsyn\"\nrelsyn.scale = true\nrelsyn.maxPmi = 0.0\nrelsyn.minPmi = -32.0\nrelsyn.maxHits = 100\nrelsyn.cacheSize = 100000\nrelsyn.timeout = 2000\nrelsyn.skipTimeouts = true\nrelsyn.multipleSyns = false\n\nlm.url = \"http://localhost:9090\"\nlm.timeout = 2000\nlm.batchSize = 100\nlm.minValue = -35.0\nlm.maxValue = -5.0\nlm.scale = true\nlm.retries = 2\nlm.cacheSize = 100000\nlm.skipTimeouts = true\n\neval.output.file = output.txt\neval.config.file = config.txt\neval.name.file = name.txt\neval.score.file = scores.txt\neval.pr.file = pr\n\nrandom.seed = 123\n\nsearch.beamType = typed\nsearch.beamSize = 10000\nsearch.goalSize = 1000\nsearch.maxIters = 100\nsearch.maxSearchTimeSec = 20\nsearch.expandPerIter = 16\n\nsearch.transitions.parse = true\nsearch.transitions.templateParaphrase = true\nsearch.transitions.relSyn = true\nsearch.transitions.isaRelSyn = true\nsearch.transitions.execute = true\nsearch.transitions.project = true\nsearch.transitions.ruleParaphrase = true\nsearch.transitions.dropStops = true\n\nlearning.oracleMode = \"interactive\"\nlearning.labelsPath = \"../oqa-data/knowitall.cs.washington.edu/oqa/data/questions/labels.txt\"\nlearning.outputsPath = \"models\"\nlearning.numIters = 10\n\nparsing.cg.lexiconClasspath = \"/edu/knowitall/parsing/cg/lexicon.txt\"\nparsing.cg.macroClasspath = \"/edu/knowitall/parsing/cg/macros.txt\"\nparsing.cg.lexicalRuleKeep = \".*\"\nparsing.cg.lexicalRuleSkip = \"^$\"\nparsing.cg.maxConjuncts = 2\n\ntuplefeatures.resourcePath = \"/edu/knowitall/search/qa/tupleFeatures.txt\"\n\nscoring.weights = models/full.txt\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/execution/stoplist.txt",
    "content": "there\nothers\nanything\nanybody\nanyone\nthe book\nthe people\nthe woman\nall\nthe man\nsomeone\n's\nnot\none\nthe ones\nanother option\nno one\nanother\nmany people\nthe world\nthe right\nthe area\ntoday\nstuff\nthe way\nmany kinds\nthe result\nboth\nneither\nsome people\nthe name\npeople\ni've\neveryone\nevery one\ni'll\ninc.\ninc\nltd\nltd.\nmost\never\nthe page\nsuch\nthe following\nthe first\nthe second\nthe third\nthe last\nthe other\nthe others\neach\nall\nfollowing\nhere\ntext/html\nthe fact\nlot\nlots\nmore\nless\nformer\ntext/html\ni've\nive\ni'm\nim\ni'd\nwho\nwhat\nwhere\nwhen\nwhy\nhow\nsometimes\nsometime\nnever\nmuch\nlittle\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/execution/stopregex.txt",
    "content": "(?i)^this\\b.*\n(?i)^'s.*\n(?i)^his\\b.*\n(?i)^her\\b.*\n(?i)^its\\b.*\n(?i)^their\\b.*\n(?i)^our\\b.*\n(?i)^my\\b.*\n(?i)^your\\b.*\n(?i)^these\\b.*\n(?i)^those\\b.*\n(?i)^this\\b.*\n(?i)^that\\b.*\n(?i)^another\\b.*\n(?i)^many\\b.*\n(?i)^some\\b.*\n(?i)^all\\b.*\n(?i)^other\\b.*\n(?i)^both\\b.*\n(?i)^most\\b.*\n^\\p{Punct}+.*\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/paraphrasing/rules/rules.txt",
    "content": "inWhatDate @inOn @whatwhich @dateWord (<rest>:@any+) := When $rest\nwhatDate @whatwhich @dateWord (<rest>:@any+) := When $rest\ncommonPrefix1 <lemma='name'> @quant? (<rest>:@any+) := $rest\ncommonPrefix2 <lemma='give'> <lemma='me'>? @quant? (<rest>:@any+) := $rest\ncommonPrefix3 <lemma='tell'> <lemma='me'>? @quant? (<rest>:@any+) := $rest\ncommonPrefix4 <lemma='list'> <lemma='me'>? @quant? (<rest>:@any+) := $rest\ndropTypeOf (<left>:@any*) @type @of (<right>:@any*) := $left $right\ndropNameOf (<left>:@any*) @det <lemma='name'> @of (<right>:@any*) := $left $right\nposToOf (<left>:@any*) (<arg>:@np) @pos (<rel>:@np) (<right>:@any*) := $left $rel of $arg $right\npresProgToSimple (<left>:@any*) @be (<rel>:@vbg) (<right>:@any*) := $left $rel $right\ndropAdverb (<left>:@any*) @adv+ (<right>:@any*) := $left $right\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/paraphrasing/template/templatesStops.txt",
    "content": "what be $y ?\n$y ?\nwhat $y ?\nwhat be the $y ?\nwhat be a $y ?\nwhat do $y mean ?\nwho be $y ?\nwhat do $y do ?\nhow $y ?\nwho $y ?\nwhat do $y ?\nhow do $y ?\nwhere $y ?\nhow many $y ?\nhow do you $y ?\nwhat be the meaning of $y ?\nwhat be the name of the $y ?\nwhy $y ?\nwhat $y do ?\nhow much $y ?\nwhat be an $y ?\nwhere do $y ?\nwho be the $y ?\nwhere be the $y ?\nwhat dose $y mean ?\nhow be $y ?\nbe $y ?\nthe $y ?\nwhy do $y ?\nwhen do $y ?\nwhen $y ?\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/parsing/cg/argFilters.txt",
    "content": "^many\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/parsing/cg/lexicon.txt",
    "content": "# ruleName syntactic-pattern := semantic-type semantic-pattern\n\nfullPatternSubj @whowhat (<rel>:@reverb) (<arg>:@np)      := unary $x : ($x, $rel, $arg)\nfullPatternDobj @whowhat @aux (<arg>:@np) (<rel>:@reverb) := unary $x : ($arg, $rel, $x)\n\nfullPatternWhereIn @where (<aux>:@aux) (<arg>:@np) (<rel>:@reverb) := unary $x : ($arg, $aux $rel in, $x)\nfullPatternWhereIs @where (<aux>:@aux) (<arg>:@np) := unary $x : ($arg, $aux in, $x)\n\nfullPatternWhenIn @when (<aux>:@aux) (<arg>:@np) (<rel>:@reverb) := unary $x : ($arg, $aux $rel in, $x)\nfullPatternWhenOn @when (<aux>:@aux) (<arg>:@np) (<rel>:@reverb) := unary $x : ($arg, $aux $rel on, $x)\nfullPatternWhenBeIn @when @be (<arg>:@np) := unary $x : ($arg, be in, $x)\nfullPatternWhenBeOn @when @be (<arg>:@np) := unary $x : ($arg, be on, $x)\n\nfullPatternTypeDobj (@whatwhich|@howmany) (<type>:@np) @aux (<arg>:@np) (<rel>:@reverb) := unary $x : ($x, instance of, $type) ($arg, $rel, $x)\nfullPatternTypeSubj (@whatwhich|@howmany) (<type>:@np) (<rel>:@reverb) (<arg>:@np) := unary $x : ($x, instance of, $type) ($x, $rel, $arg)\nfullPatternProperty @what @be @det (<rel>:@np) @of (<arg>:@np) := unary $x : ($arg, $rel, $x) \nfullPatternDefn @whowhat @be (<arg>:@np) := unary $x : ($arg, instance of, $x)\nfullPatternRelType @whatwhich (<type>:@np) @aux (<arg>:@np) (<rel>:@reverb) := unary $x : ($arg, $rel $type, $x)\nfullPatternCop @whatwhich (<rel>:@np) @be (<arg>:@np) := unary $x : ($arg, $rel, $x)\nfullPatternHaveProp @wh (@be @det)? (<rel>:@np) (@aux|@relMarker) (<arg>:@np) @have := unary $x : ($arg, $rel, $x)\nfullPatternPoss @wh @be (<arg>:@np) @pos (<rel>:@np) := unary $x : ($arg, $rel, $x)\nfullPatternCopRel @wh (<rel>:@noun) @be (<arg>:@np) := unary $x : ($arg, $rel, $x)\n\nwhIdentity @wh := identity\nauxIdentity @aux := identity\npunctIdentity @punct := identity\nrelMarkerIdentity @relMarker := identity \nconjIdentity @conj := identity\nignoreTypesIdentity @ignoreTypes := identity\nquantIdentity @quant := identity\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/parsing/cg/macros.txt",
    "content": "noun <pos=/N.*/|pos='CD'>\ncommonNoun <pos=/NNS?/>\npropNoun <pos=/NNPS?/>\nadj <pos=/J.*/>\nadv <pos=/R.*/>\nverb <pos=/V.*/>\ndet <pos='DT'|pos='PRP$'|lemma='the'|lemma='a'|lemma='an'>\nthe <lemma='the'>\nnum <pos='CD'>\nconj <pos='CC'|lemma='and'|lemma='but'>\nwh <lemma='who'|lemma='what'|lemma='where'|lemma='when'|lemma='why'> | (<lemma='how'> <lemma='many'|lemma='much'>)\nwhowhat <lemma='what'|lemma='who'>\nwhatwhich <lemma='what'|lemma='which'>\nwhat <lemma='what'>\nhow <lemma='how'>\nhowmany <lemma='how'> <lemma='much'|lemma='many'>\nsome <lemma='some'>\nquant <lemma='some'|lemma='all'|lemma='any'|lemma='enough'|lemma='most'|lemma='both'|lemma='each'|lemma='either'|lemma='other'|lemma='one'|lemma='two'|lemma='three'|lemma='four'|lemma='five'|string=/^[0-9]$/> <lemma='of'>?\nwhere <lemma='where'>\nwhen <lemma='when'>\nignoreTypes <lemma='thing'|lemma='stuff'|lemma='person'|lemma='people'>\naux <lemma='be'|lemma='have'|lemma='do'>\nbe <lemma='be'|lemma='s'|lemma=\"'s\">\npos <pos='POS'|lemma='s'|lemma=\"'s\">\nnounMod <pos='$'|pos='PRP$'|pos='DT'|pos='JJ'|pos='JJS'|pos='JJR'|pos='POS'|pos='PRP'|pos='RB'|pos='RBR'|pos='RBS'|pos='VBN'|pos='VBG'>\nnp (@nounMod* @noun+ @nounMod*)+\nvp (@aux? @adv* @verb+ @adv*)+\nrelMarker <lemma='who'|lemma='that'|lemma='which'>\nprep <pos='RB'>* <pos='IN' | pos='TO' | pos='RP'> <pos='RB'>*\nreverb (@vp) | (@vp @prep) | (@vp @np @prep)\nreverbNoPrep @vp @np\ntype <lemma='kind'|lemma='type'|lemma='sort'|lemma='example'|lemma='form'>\nof <lemma='of'>\npunct <pos=\".\">\nthere <lemma='there'>\ndateWord <lemma='month'|lemma='day'|lemma='date'|lemma='year'>\nany <lemma=/.*/>\ninOn <lemma='in'|lemma='on'>\nhave <lemma='have'>\nvbg <pos='VBG'>\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/parsing/cg/relFilters.txt",
    "content": "^(do|does|did|doing)$\n^(be|is|are|was|were)$\n^(has|have|had|having)$\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/search/qa/isa.txt",
    "content": "is a\tinstance of\tfalse\t1\t1\t1\t0\t\t\nis an\tinstance of\tfalse\t1\t1\t1\t0\t\t\nbe a\tinstance of\tfalse\t1\t1\t1\t0\t\t\nbe an\tinstance of\tfalse\t1\t1\t1\t0\t\t\nisa\tinstance of\tfalse\t1\t1\t1\t0\n"
  },
  {
    "path": "oqa-core/src/main/resources/edu/knowitall/search/qa/tupleFeatures.txt",
    "content": "conf_f\tmin\t0\t1\tlinear\nnum_extrs_i\tmin\t1\t100\tlog\nfreq_i\tmin\t1\t24712\tlog\npopularity_i\tmin\t1\t13045\tlog\nconceptVagueness_f\tmin\t0\t0.848391051179\tlinear\n"
  },
  {
    "path": "oqa-core/src/main/resources/log4j.properties",
    "content": "# Root logger option\nlog4j.rootLogger=INFO, stdout\n \n# Direct log messages to stdout\nlog4j.appender.stdout=org.apache.log4j.ConsoleAppender\nlog4j.appender.stdout.Target=System.out\nlog4j.appender.stdout.layout=org.apache.log4j.PatternLayout\nlog4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n\n"
  },
  {
    "path": "oqa-core/src/main/resources/logback.xml",
    "content": "<?xml version=\"1.0\"?>\n<configuration>\n  <appender name=\"STDOUT\" class=\"ch.qos.logback.core.ConsoleAppender\">\n    <target>System.err</target>\n    <!-- encoders are assigned the type\n         ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->\n    <encoder>\n      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>\n    </encoder>\n  </appender>\n  <root level=\"DEBUG\">\n    <appender-ref ref=\"STDOUT\"/>\n  </root>\n  <logger name=\"edu.knowitall\" level=\"DEBUG\" />\n  <logger name=\"edu.knowitall.search\" level=\"DEBUG\" />\n  <logger name=\"edu.knowitall.search.qa\" level=\"DEBUG\" />\n</configuration>\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/eval/Oracle.scala",
    "content": "package edu.knowitall.eval\n\nimport edu.knowitall.tool.tokenize.StanfordTokenizer\nimport edu.knowitall.tool.postag.StanfordPostagger\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport java.io.InputStream\nimport scala.io.Source\nimport java.io.FileInputStream\nimport java.io.PrintWriter\nimport java.io.File\nimport org.slf4j.LoggerFactory\n\ntrait Oracle {\n  \n  def inputs: List[String]\n\n  def getLabel(input: String, output: String): Option[Boolean]\n  \n  def getCorrectOutputs(input: String): List[String]\n  \n  def isCorrect(input: String, output: String): Boolean = {\n    getLabel(input, output) match {\n      case Some(label) => label\n      case _ => throw new IllegalStateException(s\"No label for ($input, $output)\")\n    }\n  }\n  \n  def hasLabel(input: String, output: String): Boolean = {\n    getLabel(input, output) match {\n      case Some(label) => true\n      case _ => false\n    }\n  }\n  \n  def toTrainingSet: List[(String, Set[String])] = {\n    for (i <- inputs; outputs = getCorrectOutputs(i).toSet; if outputs.size > 0)\n      yield (i, outputs)\n  }\n\n}\n\ntrait UpdateableOracle extends Oracle {\n  def save\n  def update(input: String, output: String, label: Boolean)\n}\n\nobject Oracle {\n    \n  val tokenizer = new StanfordTokenizer()\n  val tagger = new StanfordPostagger()\n  val lemmatizer = new MorphaStemmer()\n  \n  def normalizePair(input: String, output: String) = (normalize(input), normalize(output))\n\n  def decompose(s: String): String = java.text.Normalizer.normalize(s, java.text.Normalizer.Form.NFD).replaceAll(\"[\\\\p{InCombiningDiacriticalMarks}\\\\p{IsLm}\\\\p{IsSk}]+\", \"\").replaceAll(\"\\\\P{Print}\", \"\");\n  \n  def normalize(t: String): String = {\n    val s = decompose(t)\n    val tokens = tokenizer(s)\n    if (tokens.size > 0) {\n      val tagged = tagger.postagTokenized(tokens)\n      val result = tagged.map(lemmatizer.lemmatizePostaggedToken(_).lemma.toLowerCase)\n      result.mkString(\" \")\n    } else {\n      s.toLowerCase().mkString(\" \")\n    }\n  }\n  \n  def readLine(line: String): (String, String, Boolean) = {\n    val fields = line.split(\"\\t\", 4)\n    fields match {\n      case Array(tag, l, i, o) => (normalize(i), normalize(o), getBoolean(l))\n      case _ => throw new IllegalArgumentException(s\"Could not parse line: '$line'\")\n    }\n  }\n  def getBoolean(s: String) = s.toLowerCase() match {\n    case \"0\" => false\n    case \"false\" => false\n    case _ => true\n  }\n  \n  def labelsFromInputStream(is: InputStream) = {\n    val triples = Source.fromInputStream(is, \"UTF8\").getLines.filter(_.startsWith(\"LABEL\\t\")).map(readLine)\n    triples.map(triple => (normalize(triple._1), normalize(triple._2)) -> triple._3).toMap\n  }\n  \n  def fromFile(fn: String) = labelsFromInputStream(new FileInputStream(fn))\n} \n\nclass FileOracle(path: String) extends UpdateableOracle {\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  \n  val file = new File(path)\n  val labels = if (file.exists()) {\n    scala.collection.mutable.Map(Oracle.fromFile(path).toSeq: _*)\n  } else {\n    scala.collection.mutable.Map[(String, String), Boolean]()\n  }\n   \n  def correctOutputs = {\n    val pairs = for ((input, output) <- labels.keys; if labels.getOrElse((input, output), false)) yield (input, output)\n    val grouped =  pairs.groupBy(_._1).map { case (k,v) => (k,v.map(_._2).toList)} \n    grouped.toMap\n  }\n  override def inputs = { \n    labels.keys.map(_._1).toList\n  }\n  def normalize = Oracle.normalize _\n  override def getLabel(input: String, output: String) = {\n    val i = normalize(input)\n    val o = normalize(output)\n    val attempt = labels.get((i, o))\n    attempt match {\n      case Some(value) => Some(value)\n      case None => labels.get(normalize(i), normalize(o))\n    }\n  }\n  override def getCorrectOutputs(input: String): List[String] = correctOutputs.getOrElse(Oracle.normalize(input), List())\n\n  def save = {\n    logger.debug(s\"Saving labels to $path\")\n    val output = new PrintWriter(path, \"UTF8\")\n    for (((i, o), l) <- labels) output.println(s\"LABEL\\t$l\\t$i\\t$o\")\n    output.close()\n  }\n  def update(i: String, o: String, label: Boolean) = {\n    labels += ((normalize(i), normalize(o)) -> label)\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/eval/OutputRecord.scala",
    "content": "package edu.knowitall.eval\n\nabstract class OutputRecord {\n  def input: String\n  def output: String\n  def score: Double\n  override def toString = s\"$input\\t$output\\t$score\"\n}\n\nobject OutputRecord {\n  \n  private case class OutputRecordImpl(input: String, output: String, \n      score: Double) extends OutputRecord {\n    def apply(input: String, output: String, score: Double) =\n      OutputRecordImpl(input, output, score)\n  }\n  \n  def apply(input: String, output: String, score: Double): OutputRecord = OutputRecordImpl(input, output, score)\n  \n  def fromLine(line: String): OutputRecord = line.split(\"\\t\").toList match {\n    case i :: o :: s :: rest => OutputRecordImpl(i, o, s.toDouble)\n    case _ => throw new IllegalArgumentException(s\"Could not parse line: $line\")\n  }\n\n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/eval/SystemOutput.scala",
    "content": "package edu.knowitall.eval\n\nimport scala.io.Source\nimport scala.collection.JavaConverters._\nimport java.io.File\nimport com.typesafe.config.ConfigFactory\nimport java.io.PrintWriter\nimport com.typesafe.config.ConfigRenderOptions\n\nabstract class SystemOutput {\n  \n  def inputs: List[String] = records.map(_.input).distinct\n  \n  def inputOutputs: List[(String, String)] = records.map(r => (r.input, r.output)).toList.distinct\n  \n  def config: Map[String, String]\n  \n  def path: String\n  \n  def normalize = Oracle.normalize _\n  \n  def recordsFor(input: String, output: String): List[OutputRecord] = {\n    val in = normalize(input)\n    val on = normalize(output)\n    inputOutputToRecords.getOrElse((in, on), List()).toList\n  }\n  \n\n  private val inputToRecords = records.groupBy(r => normalize(r.input))\n  \n  def recordsFor(input: String): List[OutputRecord] = inputToRecords.getOrElse(normalize(input), List())\n  \n\n  private val inputOutputToRecords = records.groupBy(r => (normalize(r.input), normalize(r.output)))\n  \n  def topOutputFor(input: String): Option[String] = {\n    inputToRecords.get(normalize(input)) match {\n      case Some(l) => Some(l.maxBy(_.score).output)\n      case _ => None\n    }\n  }\n  \n  def topScoreFor(input: String, output: String): Option[Double] = {\n    recordsFor(input, output) match {\n      case Nil => None\n      case l: List[OutputRecord] => Some(l.maxBy(_.score).score)  \n    }\n  }\n  \n  def hasOutputFor(input: String) = inputToRecords.contains(input)\n  \n  def records: List[OutputRecord]\n  \n  def save = {\n    \n    val dir = new File(path)\n    if (dir.exists() && !dir.isDirectory()) throw new IllegalStateException(s\"$dir exists but is not a directory\")\n    if (!dir.exists()) dir.mkdirs()\n    \n    val outputPath = new File(path, SystemOutput.outputFile)\n    val outputWriter = new PrintWriter(outputPath)\n    records.foreach(outputWriter.println(_))\n    outputWriter.close()\n    \n    val configPath = new File(path, SystemOutput.configFile)\n    val configWriter = new PrintWriter(configPath)\n    for ((k, v) <- config) configWriter.println(s\"$k\\t$v\")\n    configWriter.close()\n     \n  }\n\n}\n\ncase object SystemOutput {\n  val conf = ConfigFactory.load()\n  val outputFile = conf.getString(\"eval.output.file\")\n  val configFile = conf.getString(\"eval.config.file\")\n  val nameFile = conf.getString(\"eval.name.file\")\n\n  private case class SystemOutputImpl(path: String, records: List[OutputRecord], config: Map[String, String]) extends SystemOutput {\n    def apply(path: String, records: List[OutputRecord], config: Map[String, String]) = SystemOutputImpl(path, records, config)    \n  }\n  \n  def apply(path: String, records: List[OutputRecord], config: Map[String, String]): SystemOutput = new SystemOutputImpl(path, records, config)\n  def apply(path: String, records: List[OutputRecord]): SystemOutput = new SystemOutputImpl(path, records, getCurrentConfig)\n  \n  def loadRecords(path: String): List[OutputRecord] = {\n    val lines = Source.fromFile(new File(path, outputFile), \"UTF8\").getLines\n    lines.map(OutputRecord.fromLine).toList\n  }\n  def loadConfig(path: String) = {\n    val lines = Source.fromFile(new File(path, configFile)).getLines\n    val pairs = lines map { line: String =>\n      line.split(\"\\t\", 2) match {\n        case Array(k, v) => (k, v)\n        case _ => throw new IllegalArgumentException(s\"Could not parse line: $line\")\n      }\n    }\n    pairs.toMap\n  }\n  def getCurrentConfig = conf.root().asScala.map(pair => (pair._1, pair._2.render(ConfigRenderOptions.concise))).toMap\n  \n  def fromPath(path: String): SystemOutput = SystemOutputImpl(path, loadRecords(path), getCurrentConfig)\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/eval/qa/QAOutputRecord.scala",
    "content": "package edu.knowitall.eval.qa\n\nimport edu.knowitall.eval.OutputRecord\nimport edu.knowitall.execution.Tuple\nimport edu.knowitall.execution.Search\n\ncase class QAOutputRecord(question: String, answer: String, ascore: Double, derivation: String) extends OutputRecord {\n  override def toString = s\"$question\\t$answer\\t$score\\t$derivation\"\n  override def input = question\n  override def output = answer\n  override def score = ascore\n}\ncase object QAOutputRecord {\n  def fromLine(line: String) = line.trim.split(\"\\t\") match {\n    case Array(q, a, s, d) => QAOutputRecord(q, a, s.toDouble, d)\n    case Array(q, a, s) => QAOutputRecord(q, a, s.toDouble, \"\")\n    case _ => throw new IllegalArgumentException(s\"Could not parse line: $line\")\n  }\n  def project(t: Tuple): String = {\n    val tup = Search.ProjectTriples(List(t)).toList(0)\n    tup.toString\n  }\n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/eval/qa/QASystemOutput.scala",
    "content": "package edu.knowitall.eval.qa\n\nimport com.typesafe.config.ConfigFactory\nimport java.io.File\nimport java.io.PrintWriter\nimport scala.collection.JavaConverters._\nimport scala.io.Source\nimport com.typesafe.config.ConfigRenderOptions\nimport edu.knowitall.eval.SystemOutput\nimport edu.knowitall.eval.OutputRecord\n\ncase class QASystemOutput(path: String, records: List[QAOutputRecord], config: Map[String, String], name: String) extends SystemOutput {\n  \n  def this(path: String, name: String) = this(path, QASystemOutput.loadRecords(path), SystemOutput.loadConfig(path), name)\n  def this(path: String, records: List[QAOutputRecord], name: String) = this(path, records, SystemOutput.getCurrentConfig, name)\n\n  val questions = records.map(_.question).distinct\n  val questionAnswers = records.map(r => (r.question, r.answer)).distinct\n  \n  private val questionToRecords = records.groupBy(r => normalize(r.question))\n  private val questionAnswerToRecords = records.groupBy(r => (normalize(r.question), normalize(r.answer)))\n  \n  val qaRecords = records\n  \n  def qaRecordsFor(input: String, output: String): List[QAOutputRecord] = {\n    val in = normalize(input)\n    val on = normalize(output)\n    questionAnswerToRecords.getOrElse((in, on), List()).toList\n  }\n  \n  override def save = {\n    \n    val dir = new File(path)\n    if (dir.exists() && !dir.isDirectory()) throw new IllegalStateException(s\"$dir exists but is not a directory\")\n    if (!dir.exists()) dir.mkdirs()\n    \n    val outputPath = new File(path, QASystemOutput.outputFile)\n    val outputWriter = new PrintWriter(outputPath)\n    records.foreach(outputWriter.println(_))\n    outputWriter.close()\n    \n    val configPath = new File(path, QASystemOutput.configFile)\n    val configWriter = new PrintWriter(configPath)\n    for ((k, v) <- config) configWriter.println(s\"$k\\t$v\")\n    configWriter.close()\n    \n    \n    \n    val namePath = new File(path, QASystemOutput.nameFile)\n    val nameWriter = new PrintWriter(namePath)\n    nameWriter.println(name)\n    nameWriter.close()\n     \n  }\n\n}\n\ncase object QASystemOutput {\n  val conf = ConfigFactory.load()\n  val outputFile = conf.getString(\"eval.output.file\")\n  val configFile = conf.getString(\"eval.config.file\")\n  val nameFile = conf.getString(\"eval.name.file\")\n  def loadRecords(path: String): List[QAOutputRecord] = {\n    val lines = Source.fromFile(new File(path, outputFile), \"UTF8\").getLines\n    lines.map(QAOutputRecord.fromLine).toList\n  }\n  \n\n  def fromPath(path: String) = {\n    val name = Source.fromFile(new File(path, nameFile)).getLines.mkString(\"\\n\")\n    new QASystemOutput(path, name)\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/eval/qa/QASystemRunner.scala",
    "content": "package edu.knowitall.eval.qa\n\nimport java.io.File\nimport java.io.IOException\nimport scala.io.Source\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.model.QaModel\n\nclass QASystemRunner(qa: QaModel, path: String) {\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  val outputFile = new File(path)\n  if (!outputFile.exists()) {\n    outputFile.mkdirs()\n  }\n  if (outputFile.exists() && !outputFile.isDirectory()) {\n    throw new IOException(s\"Could not write to $path, file exists\")\n  }\n  \n  def runFile(path: String) = {\n    val lines = Source.fromFile(path, \"UTF8\").getLines.toList\n    logger.info(s\"Running QA System on '$path'\")\n    logger.info(s\"'$path' contains ${lines.size} questions\")\n    run(path, lines)\n  }\n  \n  def run(name: String, questions: List[String]) = {\n    val n = questions.size\n    val records = for ((q, i) <- questions.zipWithIndex;\n               deriv <- {\n                 logger.info(s\"Question ${i+1} of ${n}\")\n                 qa.candidatePredictions(q)\n               };\n               r = QAOutputRecord(q, deriv.answer, deriv.score, deriv.toString))\n            yield r\n    val output = new QASystemOutput(path, records.toList, name)\n    output.save\n  }\n  \n}\n\nobject QASystemRunner extends App {\n  val input = args(0)\n  val output = args(1)\n  val model = new QaModel()\n  val runner = new QASystemRunner(model, output)\n  runner.runFile(input)\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/execution/AnswerFilter.scala",
    "content": "package edu.knowitall.execution\n\nimport edu.knowitall.tool.tokenize.ClearTokenizer\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport scala.io.Source\nimport java.io.InputStream\nimport org.slf4j.LoggerFactory\nimport scala.util.matching.Regex\nimport edu.knowitall.util.ResourceUtils\n\ntrait AnswerFilter {\n  def filter(exec: QueryExecutor): QueryExecutor\n}\n\nobject AnswerFilter {\n  // Mnemonics\n  type QE = QueryExecutor\n  type ETPred = (ExecTuple => Boolean)\n  type SPred = (String => Boolean)\n  \n  def createExecTupleFilter(f: ETPred): (QE => QE) = exec => new QE {\n    def execute(q: ConjunctiveQuery) = exec.execute(q).filter(f)\n  }\n  \n  def createStringFilter(f: SPred): (QE => QE) = {\n    val etpred = (et: ExecTuple) => f(et.answer.mkString(\", \"))\n    createExecTupleFilter(etpred)\n  }\n  \n  def compose(af1: AnswerFilter, af2: AnswerFilter) = new AnswerFilter {\n    override def filter(exec: QueryExecutor) = af2.filter(af1.filter(exec))\n  }\n}\n\ncase class StopListFilter(stops: Iterable[String]) extends AnswerFilter {\n  val tokenizer = new ClearTokenizer()\n  val logger = LoggerFactory.getLogger(this.getClass)\n  logger.debug(s\"stop set: $stops\")\n  val stopSet = stops.map(normalize).toSet\n  def normalize(s: String): String = { \n    val slc = s.toLowerCase()\n    val toks = tokenizer(slc)\n    val stems = toks.map(MorphaStemmer.stemToken)\n    val lems = stems.map(_.lemma)\n    val result = lems.mkString(\" \")\n    result\n  }\n  def this(file: String) = this(Source.fromFile(file, \"UTF8\").getLines.toList)\n  def this(is: InputStream) = this(Source.fromInputStream(is, \"UTF8\").getLines.toList)\n  def keepAnswer(ans: String) = !stopSet.contains(normalize(ans))\n  override def filter(exec: QueryExecutor): QueryExecutor = \n    AnswerFilter.createStringFilter(keepAnswer)(exec)\n}\n\ncase class StopRegexFilter(patStrs: Iterable[String]) extends AnswerFilter {\n  val pats = patStrs.toList.map(_.r)\n  def this(file: String) = this(Source.fromFile(file, \"UTF8\").getLines.toList)\n  def this(is: InputStream) = this(Source.fromInputStream(is, \"UTF8\").getLines.toList)\n  def keepAnswer(ans: String) = !pats.exists(p => ans match {\n    case p() => true\n    case _ => false\n  })\n  override def filter(exec: QueryExecutor) = AnswerFilter.createStringFilter(keepAnswer)(exec)\n}\n\nobject DefaultFilters {\n  val logger = LoggerFactory.getLogger(this.getClass)\n  \n  val idFilter = new AnswerFilter {\n    override def filter(exec: QueryExecutor) = exec\n  }\n  \n  def wrap(executor: QueryExecutor) = {\n    val filters: List[AnswerFilter] = List(\n      new StopListFilter(ResourceUtils.resource(\"/edu/knowitall/execution/stoplist.txt\")),\n      new StopRegexFilter(ResourceUtils.resource(\"/edu/knowitall/execution/stopregex.txt\")))\n  \n    val composed = filters.foldLeft(idFilter)(AnswerFilter.compose _)\n    composed.filter(executor)\n  }\n  \n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/execution/ConjunctiveQuery.scala",
    "content": "package edu.knowitall.execution\n\nimport Search.Field\nimport Search.TSQuery\nimport Search.{FieldKeywords, FieldPhrase}\nimport Search.Conjunction\nimport org.slf4j.LoggerFactory\nimport Search._\nimport scala.Option.option2Iterable\nimport edu.knowitall.util.StringUtils\n\n/**\n * Base trait for triple values.\n */\ntrait TVal\n\n/**\n * Base trait for triple literal values.\n */\ntrait TLiteral extends TVal {\n  def value: String\n  def update(v: String): TLiteral\n  def toConjunct(field: Field): TSQuery\n  def subs(binding: Map[TVariable, TVal]): TLiteral\n}\n\n/**\n * Triple literals can be unquoted, which has the semantics of doing a keyword \n * search over a field.\n */\ncase class UnquotedTLiteral(value: String) extends TVal with TLiteral {\n  override def toString = value\n  override def toConjunct(field: Field) = FieldKeywords(field, value)\n  override def subs(binding: Map[TVariable, TVal]) = {\n    val map = binding map { case (k, v) => (k.name, v.toString) }\n    val newVal = StringUtils.interpolate(value, map)\n    copy(value = newVal)\n  }\n  override def update(v: String) = UnquotedTLiteral(v)\n}\n\n/**\n * Triple literals can also be quoted, which has the semantics of doing an\n * exact-match search over a field.\n */\ncase class QuotedTLiteral(value: String) extends TVal with TLiteral {\n  override def toString = s\"\"\"\"$value\"\"\"\"\n  override def toConjunct(field: Field) = FieldPhrase(field, value)\n  override def subs(binding: Map[TVariable, TVal]) = {\n    val map = binding map { case (k, v) => (k.name, v.toString) }\n    val newVal = StringUtils.interpolate(value, map)\n    copy(value = newVal)\n  }\n  override def update(v: String) = QuotedTLiteral(v)\n}\ncase object QuotedTLiteral {\n  val quoted = \"\"\"^\"(.*)\"$\"\"\".r\n  def fromString(s: String): Option[QuotedTLiteral] = s.trim() match {\n    case quoted(s) => Some(QuotedTLiteral(s))\n    case _ => None\n  }\n}\n\n/**\n * Triple values can also be variables, which have a string name.\n */\ncase class TVariable(name: String) extends TVal {\n  override def toString = \"$\" + name\n}\ncase object TVariable {\n  val vpat = \"\"\"\\$([A-Za-z0-9_]+)\"\"\".r\n  def fromString(s: String): Option[TVariable] = s.trim() match {\n    case vpat(v) => Some(TVariable(v))\n    case \"?\" => Some(TVariable(\"?\"))\n    case _ => None\n  }\n  def fromStringMult(s: String): List[TVariable] = {\n    val parts = s.split(\", *\").toList\n    for (p <- parts; t = TVariable.fromString(p)) yield t match {\n      case Some(x) => x\n      case None => throw new \n        IllegalArgumentException(s\"Could not parse variables in: $s\")\n    }\n  }\n}\n\n/**\n * TConjunct objects have a name (you can think of this as a unique\n * identifier for the relational table returned) and map containing the\n * field values. The field values map a field (arg1, rel, or arg2) to a \n * value (literal or variable).\n */\ncase class TConjunct(name: String, values: Map[Field, TVal]) {  \n  \n  def literalFields: Iterable[(Field, TLiteral)] = { \n    for ((f, v) <- values) yield v match {\n      case l: TLiteral => Some((f, l))\n      case _ => None\n    }\n  }.flatten\n  \n  def variableFields: Iterable[(Field, TVariable)] = {\n    for ((f, v) <- values) yield v match {\n      case TVariable(s) => Some((f, TVariable(s)))\n      case _ => None\n    }\n  }.flatten\n  \n  def varsToFields: Map[TVariable, Field] = variableFields.map(_.swap).toMap\n  \n  def partialQuery: TSQuery = {\n    val lfs = literalFields.toList\n    val conjuncts = for ((f, v) <- lfs) yield v.toConjunct(f)\n    Conjunction(conjuncts.toList:_*)\n  }\n  \n  def joinKeys: Map[TVariable, String] = {\n    val vfs: Map[TVariable, Field] = varsToFields\n    val pairs = for (v <- vfs.keys; f <- vfs.get(v); a = name + \".\" + f)\n      yield (v, a)\n    pairs.toMap\n  }\n  \n  def attrName(v: TVariable): Option[String] = joinKeys.get(v)\n  \n  def vars: Iterable[TVariable] = varsToFields.keys.toSet\n  \n  def subs(bindings: Map[TVariable, TVal]) = {\n    val newValues = values map {\n      case (field, value: TVariable) if bindings.contains(value) => (field, bindings(value))\n      case (field, value: TLiteral) => (field, value.subs(bindings))\n      case (field, value) => (field, value)\n    }\n    copy(values = newValues)\n  }\n  \n  def subs(tvar: TVariable, tval: TVal): TConjunct = subs(Map(tvar -> tval))\n  \n  def rename(n: String) = copy(name = n)\n  \n  val xs = values.getOrElse(arg1, \"\")\n  val rs = values.getOrElse(rel, \"\")\n  val ys = values.getOrElse(arg2, \"\")\n  override def toString = s\"($xs, $rs, $ys)\"\n}\ncase object TConjunct {\n  \n  val logger = LoggerFactory.getLogger(this.getClass) \n  \n  val qpat = \"\"\"\\(?(.+),(.+),(.+?)\\)?\"\"\".r\n\n  def fromString(name: String, s: String): Option[TConjunct] = s match {\n    case qpat(x, r, y) => Some(fromTriple(name, x, r, y))\n    case _ => None\n  }\n  \n  def getTLiteral(s: String): TLiteral = QuotedTLiteral.fromString(s) match {\n    case Some(QuotedTLiteral(y)) => QuotedTLiteral(y)\n    case _ => UnquotedTLiteral(s)\n  }\n\n  def getTVal(s: String): TVal = {\n    val v = TVariable.fromString(s)\n    v match {\n      case Some(TVariable(x)) => TVariable(x)\n      case _ => getTLiteral(s)\n    }\n  }\n  \n  val fields = List(arg1, rel, arg2)\n  def fromTriple(name: String, x: String, r: String, y: String): TConjunct = {\n    val lst = List(x.trim(), r.trim(), y.trim())\n    val items = for ((f, a) <- fields.zip(lst); v = getTVal(a)) yield (f, v)\n    TConjunct(name, items.toMap)\n  }\n  \n  val splitPat = \"\"\"(?<=\\))\\s*?(?=\\()\"\"\"\n  def fromStringMult(s: String): Iterable[TConjunct] = {\n    val parts = s.split(splitPat).toList.map(_.trim).filterNot(_ == \"\")\n    val queries = { for ((s, i) <- parts.zipWithIndex; \n                       q <- fromString(s\"r$i\", s)) yield q }.toList\n    queries\n  }\n  \n  def replaceField(c: TConjunct, f: Field, vs: List[TVal]): List[TConjunct] = {\n    for (v <- vs) yield TConjunct(c.name, c.values + (f -> v))\n  }\n\n} \n\n/**\n * A conjunctive query consists of a list of qvars (query variables) and a list \n * of conjuncts. A conjunctive query represents a select-join-project type\n * operation. The list of conjuncts represents the data to be selected.\n * The shared variables among the conjuncts encodes the join predicates. \n * The qVars encodes the projection variables. qAttr is the tuple-attribute\n * to project onto. \n */\ntrait ConjunctiveQuery {\n  def qVars: List[TVariable]\n  def qAttrs: List[String]\n  def conjuncts: List[TConjunct]\n  def subs(bindings: Map[TVariable, TVal]): ConjunctiveQuery\n  def subs(tvar: TVariable, tval: TVal): ConjunctiveQuery = subs(Map(tvar -> tval))\n  def combine(cq: ConjunctiveQuery): ConjunctiveQuery\n  def renameConjuncts(prefix: String): ConjunctiveQuery\n  \n  override def toString(): String = {\n    val varString = qVars.map(_.toString).mkString(\",\")\n    val conjString = conjuncts.mkString(\" \")\n    varString + \": \" + conjString \n  }\n  \n  def joinPairs = {\n    val grouped = conjuncts.flatMap(_.joinKeys.toList).groupBy(_._1)\n    for {\n      variable <- grouped.keys\n      (variable1, fieldName1) <- grouped(variable)\n      (variable2, fieldName2) <- grouped(variable)\n      if fieldName1 < fieldName2\n    } yield (fieldName1, fieldName2)\n  }\n  \n}\n\ncase class FieldIndex(conjunctName: String, field: Field) {\n  private def updateConjunct(c: TConjunct, fn: TVal => TVal): TConjunct = {\n    val newVals = for {\n      (f, v) <- c.values\n      newv = if (c.name == conjunctName && f == field) fn(v) else v\n    } yield (f, newv)\n    TConjunct(c.name, newVals)\n  }\n  def updateQuery(q: ConjunctiveQuery, fn: TVal => TVal): ConjunctiveQuery = {\n    val newConjs = q.conjuncts.map(updateConjunct(_, fn))\n    ListConjunctiveQuery(q.qVars, newConjs)\n  }\n}\n\n/**\n * A conjunctive query backed by a list of conjuncts.\n */\ncase class ListConjunctiveQuery(qVars: List[TVariable], conjuncts: List[TConjunct])\n  extends ConjunctiveQuery {\n  \n  private val logger = LoggerFactory.getLogger(this.getClass) \n  val conjunctNames = conjuncts.map(_.name)\n  if (conjunctNames.distinct.size != conjunctNames.size) throw new \n    IllegalArgumentException(s\"Conjuncts must have distinct names: $conjuncts\")\n  \n  val qas = {for (v <- qVars; c <- conjuncts; a <- c.attrName(v)) yield (v, a)}.groupBy(_._1)\n  val qAttrs = for (v <- qVars; group <- qas.get(v); (v, a) <- group.find(x => true)) yield a\n  \n  override def subs(bindings: Map[TVariable, TVal]) = {\n    val newConjs = conjuncts.map(_.subs(bindings))\n    val newQVars = newConjs.flatMap(_.vars).distinct\n    ListConjunctiveQuery(newQVars, newConjs)\n  }\n  \n  def renameConjuncts(prefix: String) = {\n    val newConjs = conjuncts.zipWithIndex map {\n      case (c, i) => c.rename(s\"${prefix}.$i\")\n    }\n    copy(conjuncts = newConjs)\n  }\n  \n  override def combine(cq: ConjunctiveQuery) = {\n    val conjNames1 = this.conjunctNames.toSet\n    val conjNames2 = cq.conjuncts.map(_.name).toSet\n    val namesIntersect = !conjNames1.intersect(conjNames2).isEmpty\n    val conjs1 = if (namesIntersect) {\n      logger.warn(s\"Conjunction field names in ${this} and $cq intersect, renaming 'r' and 's': $conjNames1 vs. $conjNames2\")\n      this.renameConjuncts(\"r\").conjuncts\n    } else {\n      this.conjuncts\n    }\n    val conjs2 = if (namesIntersect) {\n      cq.renameConjuncts(\"s\").conjuncts\n    } else {\n      cq.conjuncts\n    }\n    val newConjs = conjs1 ++ conjs2\n    val newVars = (this.qVars ++ cq.qVars).distinct\n    ListConjunctiveQuery(newVars, newConjs)\n  }\n  \n}\ncase object ListConjunctiveQuery {\n  def fromString(s: String): Option[ListConjunctiveQuery] = {\n    val parts = s.split(\":\", 2)\n    if (parts.size == 2) {\n      val left = parts(0)\n      val qVars = TVariable.fromStringMult(parts(0)) match {\n        case head :: rest => head :: rest\n        case _ => \n          throw new IllegalArgumentException(s\"Expected variable: $left\")\n      }\n      val conjuncts = TConjunct.fromStringMult(parts(1))\n      Some(ListConjunctiveQuery(qVars, conjuncts.toList))\n    } else if (parts.size == 1) {\n      val s = parts(0)\n      val conjuncts = TConjunct.fromStringMult(s)\n      val qVars = conjuncts.flatMap(_.vars).toList match {\n        case v :: rest => v :: rest\n        case _ => throw new IllegalArgumentException(s\"Expected variable: $s\")\n      }\n      Some(ListConjunctiveQuery(qVars.distinct, conjuncts.toList))\n    } else {\n      None\n    }\n  }\n\n}\n\n/**\n * A simple query is a conjunctive query that has a single conjunct.\n */\ncase class SimpleQuery(name: String, map: Map[Field, TVal])\n  extends ConjunctiveQuery { \n  val conjunct = TConjunct(name, map)\n  val conjuncts = List(conjunct)\n  val vars = map.values.collect{ case x: TVariable => x }.toList\n  val qVars = vars match {\n    case v :: Nil => List(v)\n    case _ => throw new \n      IllegalArgumentException(s\"SimpleQuery must have exactly one variable, \"\n          + s\"got: $vars\")\n  }\n  val qAttrs = List(conjunct.joinKeys(qVars(0)))\n  override def subs(bindings: Map[TVariable, TVal]) = {\n    val newConj = conjunct.subs(bindings)\n    copy(map = newConj.values)\n  }\n  override def renameConjuncts(prefix: String) = {\n    copy(map = conjunct.rename(s\"${prefix}0\").values)\n  }\n  override def combine(cq: ConjunctiveQuery) = {\n    val newConjs = (this.conjuncts ++ cq.conjuncts).distinct\n    val newVars = (this.qVars ++ cq.qVars).distinct\n    ListConjunctiveQuery(newVars, newConjs)\n  }\n}\ncase object SimpleQuery {\n  def fromString(s: String) = TConjunct.fromString(\"r\", s) match {\n    case Some(TConjunct(name, map)) => Some(SimpleQuery(name, map))\n    case _ => None\n  }\n}\n\nobject Utils {\n  def cartesian[A](xs: Traversable[Traversable[A]]): Seq[Seq[A]] =\n    xs.foldLeft(Seq(Seq.empty[A])) {\n    (x, y) => for (a <- x.view; b <- y) yield a :+ b\n  }\n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/execution/JoinPlanner.scala",
    "content": "package edu.knowitall.execution\nimport Search.PartialSearchJoin\nimport PartialFunction._\nimport Search.Field\nimport Conditions.TuplePred\nimport Operators.{Select, Product}\nimport Conditions.AttrsSim\nimport Operators.NestedLoopJoin\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.triplestore.TriplestoreClient\nimport edu.knowitall.triplestore.TriplestorePlan\nimport scala.Option.option2Iterable\n\n/**\n * A Joiner object interfaces with a triplestore and executes a query \n * against it. It uses a simple query plan optimizer to take a set of \n * TConjunct objects and join them appropriately. It heuristically\n * avoids joining large tables together by (1) limiting the number of rows\n * returned by the triplestore, and (2) converting join(small table, large \n * table) calls into a set of join(small table, small table) calls.\n * \n * The algorithm first picks a variable that appears in the TConjunct\n * objects. It then eliminates that variable by executing the TConjunct\n * and enforcing the join constraints between them. \n * \n * For example, suppose the set of queries is aq1 = ($x, type, us president),\n * aq2 = ($x, born in, $y), and aq3 = ($y, type, us state). The joiner first\n * picks a variable to eliminate, using a herustic; say it picks $x. Then, \n * the joiner takes all queries that have $x as a value, loads their data,\n * and joins them. In this case, it must load the data for aq1 and aq2, then\n * join them together on the constraint aq1.arg1 = aq2.arg1. It saves the\n * results as an intermediate table t. Then, it repeats, picking $y as the\n * next variable to eliminate, and joining intermediate table t with aq3. \n * \n * The heuristic used to estimate the cost of a query is the number of rows\n * returned by the triplestore.\n * \n * Internally, the Joiner uses two structures. The first is a QueryNode, which\n * represents an unexecuted TConjunct. The second is a TuplesNode, which\n * represents an intermediate table (a set of AbstractQueries that have been\n * executed and joined across a single variable). The QueryNode class and\n * TuplesNode class are subclasses of TableNode.\n * \n */\ncase class Joiner(client: TriplestoreClient) {\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n  \n  val maxJoinHits = 10\n  \n  /* Import some query plan objects from the client. */\n  val planning = TriplestorePlan(client)\n  import planning._\n  \n  /* Runs the join algorithm on the given set of AbstractQuery objects.*/\n  def joinQueries(conjs: Iterable[TConjunct]): Tuples = {\n    val nodes = conjs.map(QueryNode(_)).toList\n    join(nodes)\n  }\n \n  /* Any table T joined with the emptyTuples set will return T. */ \n  val emptyTuples = List(Tuple(Map.empty))\n  \n  /* Takes the cartesian product of two tuple sets. */\n  val prod = (ts1: Iterable[Tuple], ts2: Iterable[Tuple]) => \n    Product(ts1, ts2).toList\n    \n  /* Joins the given TableNodes together. If the end result is not a single\n   * TableNode object, then just takes the cartesian product of the remaining\n   * nodes.\n   */  \n  def join(nodes: List[TableNode]): Iterable[Tuple] = {\n    val joined = mergeLowest(nodes).map(toTuplesNode(_))\n    val cleaned = joined map eliminateStrandedVars\n    cleaned.map(_.tuples).foldLeft(emptyTuples)(prod).toList\n  }\n   \n  /*\n   * Eliminates any join variables that were not eliminated \n   * during the join process - for example,\n   * (salad, $r, $x) (beef, $r, $x) will leave $r stranded \n   * in a single TuplesNode at the end of join processing,\n   * but still referring to r0.rel and r1.rel. This method\n   * enforces the join condition within a single TuplesNode.\n   */\n  def eliminateStrandedVars(tn: TuplesNode): TuplesNode = {\n    \n    tn.joinAttrs.find(_._2.size > 1) match {\n      case Some((v, attrs)) => {\n        val tuples = tn.tuples.filter { t =>\n          attrs.sliding(2).forall { \n            case List(a1, a2) => AttrsSim(a1, a2, 0.9).apply(t)\n            case _ => throw new RuntimeException()\n          }\n        }\n        val newTuplesNode = TuplesNode(tuples, tn.joinAttrs-v)\n        eliminateStrandedVars(newTuplesNode)\n      }\n      case None => tn\n    }\n  }\n    \n  /* Picks the lowest-cost variable, merges the nodes, and then repeats until\n   * there are no variables left to merge.\n   */\n  def mergeLowest(nodes: List[TableNode]): List[TableNode] = { \n    val merged = lowestVariable(nodes) match {\n      case Some(v) => mergeLowest(groupThenMergeNodes(nodes, v))\n      case None => nodes\n    }\n    merged.map(toTuplesNode(_))\n  }\n  \n  /* The cost of a Table node is... */\n  def cost(n: TableNode) = n match {\n    // ...the number of rows that satisfy it, if it's a QueryNode\n    case q: QueryNode => client.count(q.conj.partialQuery)\n    // ...or the number of rows, if it's a TuplesNode\n    case t: TuplesNode => t.tuples.size\n  }\n\n  /* Joining two tuples nodes together on a variable is easy, since all of\n   * the necessary data is in memory. All that needs to be done is to \n   * create the correct join predicate, and then execute the NestedLoopJoin.\n   */\n  def joinTT(tn1: TuplesNode, tn2: TuplesNode, v: TVariable): Tuples = {\n    val attrPairs = for(a1 <- tn1.getJoinAttrs(v); a2 <- tn2.getJoinAttrs(v))\n      yield (a1, a2)\n    val pred = Joiner.pairsToCond(attrPairs)\n    NestedLoopJoin(pred)(tn1.tuples, tn2.tuples)\n  }\n  \n  /* Joining a QueryNode with a TuplesNode involves doing a partial search\n   * join, which executes a query for each row in the TuplesNode.\n   */\n  def joinQT(qn: QueryNode, tn: TuplesNode, v: TVariable): Tuples = {\n    \n    // Get the names of the attributes to join on.\n    val attrPairs = for (\n        a1 <- tn.getJoinAttrs(v);\n        a2 <- qn.getJoinAttrs(v)) yield (a1, a2)\n        \n    // The join predicate uses string similarity.\n    val bpred = attrPairs match {\n      case (a1, a2) :: tail => AttrsSim(a1, a2, 0.9) \n      case _ => AttrsSim(\"\", \"\", 0.0)\n    }\n    \n    // If there are multiple join conditions between the QueryNode and \n    // TuplesNode (i.e. if they share more than one variable) then the \n    // additional constraints need to be encoded in a Select predicate, since\n    // a partial search join can only involve a single field.\n    val spred = attrPairs match {\n      case (a1, a2) :: tail => Joiner.pairsToCond(tail)\n      case _ => Joiner.truep\n    }\n    val left = tn.tuples\n    val right = PartialSearchFor(qn.conj.name, maxJoinHits, qn.conj.partialQuery)\n    val joined = PartialSearchJoin(bpred)(left, right)\n    Select(spred)(joined)\n  }\n\n  /* Finds the nodes that have the given variable. Merges them together, leaving\n   * the other nodes unmerged.\n   */\n  def groupThenMergeNodes(nodes: List[TableNode], v: TVariable): List[TableNode] = {\n    val (toMerge, toKeep) = nodes.partition(_.hasVariable(v))\n    mergeNodes(toMerge, v) +: toKeep\n  }\n  \n  /* Finds the lowest-cost variable to merge. In order to be considered for \n   * merging, a variable must occur in at least two nodes. Variables are then\n   * assigned a cost equal to the lowest-costing node that they occur in. \n   */\n  def lowestVariable(nodes: List[TableNode]): Option[TVariable] = {\n    val lst = for (n <- nodes; v <- n.joinAttrs.keySet) yield (v, n)\n    val varNodes = lst.groupBy(e => e._1).mapValues(e => e.map(x => x._2).toSet)\n    val varCosts = { for ((v, nodes) <- varNodes;\n         if nodes.size > 1;\n         costs = nodes.map(cost(_));\n         minCost = costs.min) yield (v, minCost) }.toMap\n    if (varCosts.size > 0) {\n      val vars = varCosts.keys\n      val lowest = vars.minBy(varCosts(_))\n      logger.debug(s\"Lowest variable chosen: $lowest\")\n      Some(lowest)\n    } else {\n      None\n    }\n  } \n  \n  /* Merges the given nodes together, and removes the variable. */\n  def mergeNodes(nodes: List[TableNode], v: TVariable): TuplesNode = {\n    val sorted = nodes.sortBy(cost)\n    val node = eliminateVar(sorted, v)\n    TuplesNode(node.tuples, node.joinAttrs-v)\n  }\n\n  /* Recursively eliminates the variable from the given list of nodes. \n   */\n  def eliminateVar(nodes: List[TableNode], v: TVariable): TuplesNode = {\n    nodes match {\n      case node :: Nil => toTuplesNode(node)\n      case node1 :: node2 :: rest => eliminateVar(doJoin(node1, node2, v) :: rest, v)\n      case _ => throw new IllegalArgumentException(\"empty node list\")\n    }\n  }\n  \n  /* Joins together two nodes on the given variable. */\n  def doJoin(n1: TableNode, n2: TableNode, v: TVariable): TuplesNode = {\n    val t = toTuplesNode(n1)\n    val tuples = n2 match {\n      case q: QueryNode => joinQT(q, t, v)\n      case t2: TuplesNode => joinTT(t, t2, v)\n    }\n    val merged = Joiner.mergeJoinAttrs(n1.joinAttrs, n2.joinAttrs)\n    TuplesNode(tuples.toList, merged)\n  }\n  \n  /* Converts a TableNode to a TuplesNode. If the given node is already a \n   * TuplesNode, does nothing. If it is a QueryNode, it executes it and\n   * wraps the resulting tuples as a TuplesNode.\n   */\n  def toTuplesNode(node: TableNode): TuplesNode = node match {\n    case t: TuplesNode => t\n    case q: QueryNode => queryToTuples(q)\n    case _ => throw new IllegalArgumentException(\"invalid node type: \" + node)\n  }\n  \n  /* Executes the given QueryNode to create a TuplesNode. */\n  def queryToTuples(q: QueryNode): TuplesNode = {\n    logger.debug(s\"Making TuplesNode from $q\")\n    val tuples = SearchFor(q.conj.name, q.conj.partialQuery)\n    val result = TuplesNode(tuples, q.joinAttrs)\n    logger.debug(s\"Done making TuplesNode from $q\")\n    result\n  }\n\n}\n\n/* Companion object for Joiner. */\ncase object Joiner {\n  \n  // Mnemonic\n  type JA = Map[TVariable, List[String]]\n  \n  // The join condition defaults to thresholded string similarity.\n  val eqCond = (a1: String, a2: String) => AttrsSim(a1, a2, 0.9)\n  \n  // Merges the given maps.\n  def mergeJoinAttrs(attrs1: JA, attrs2: JA): JA = {\n    val allVars = attrs1.keySet union attrs2.keySet\n    val newPairs = for (v <- allVars;\n         as1 = attrs1.getOrElse(v, Nil).toSet;\n         as2 = attrs2.getOrElse(v, Nil).toSet)\n      yield (v, (as1 ++ as2).toList)\n    return newPairs.toMap\n  }\n  \n  // Tuple predicate that always returns true.\n  val truep = (t: Tuple) => true\n  \n  // The conjunction of two tuple predicates.\n  def and(p1: TuplePred, p2: TuplePred) = (t: Tuple) => p1(t) && p2(t)\n  \n  // The conjunction of a list of predicates.\n  def andList(preds: Iterable[TuplePred]): TuplePred = \n    preds.foldLeft(truep)(and)\n    \n  // Takes a list of tuple attribute pairs, returns a single predicate\n  // encoding them as a conjunction of join conditions.\n  def pairsToCond(pairs: List[(String, String)]): TuplePred = {\n    val preds = for ((a1, a2) <- pairs) yield eqCond(a1, a2)\n    andList(preds)\n  }\n  \n}\n\n/* TuplesNodes can be either TableNodes or QueryNodes. */\ncase class TuplesNode(tuples: List[Tuple], \n    joinAttrs: Map[TVariable, List[String]]) extends TableNode {\n}\n\n/* TableNodes store data from partially-executed queries. */\ntrait TableNode {\n  val joinAttrs: Map[TVariable, List[String]]\n  def getJoinAttrs(v: TVariable) = joinAttrs.getOrElse(v, Nil)\n  def hasVariable(v: TVariable) = joinAttrs.contains(v)\n}\n\n/* QueryNodes represent unexecuted queries. */\ncase class QueryNode(conj: TConjunct) extends TableNode {\n  val jks = conj.joinKeys\n  val joinAttrs = { \n    for (v <- jks.keys; attr <- jks.get(v)) yield (v, List(attr)) \n  }.toMap\n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/execution/QueryExecutor.scala",
    "content": "package edu.knowitall.execution\nimport edu.knowitall.execution.Search.Field\nimport edu.knowitall.triplestore.TriplestoreClient\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport scala.collection.immutable.SortedMap\n\ncase class ExecTuple(tuple: Tuple, query: ConjunctiveQuery) {\n  val answer: List[String] = query.qAttrs.flatMap(a => tuple.getString(a))\n  val answerString: String = answer match {\n    case List(a) => a\n    case _ => \"(\" + answer.mkString(\", \") + \")\"\n  }\n  val toTripleString = {\n    val tstrs = for {\n      c <- query.conjuncts\n      n = c.name\n      x = tuple.attrs.getOrElse(s\"$n.arg1\", \"\")\n      r = tuple.attrs.getOrElse(s\"$n.rel\", \"\")\n      y = tuple.attrs.getOrElse(s\"$n.arg2\", \"\")\n    } yield s\"($x, $r, $y)\"\n    tstrs.mkString(\" \")\n  }\n}\n\ntrait QueryExecutor {\n  def execute(query: ConjunctiveQuery): Iterable[ExecTuple]\n}\n\ncase class IdentityExecutor(client: TriplestoreClient) extends QueryExecutor {\n\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  val joiner = Joiner(client)\n\n  override def execute(q: ConjunctiveQuery): Iterable[ExecTuple] = {\n    val joined = joiner.joinQueries(q.conjuncts)\n    for (t <- joined; et = ExecTuple(t, q)) yield et\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/execution/RelationalAlgebra.scala",
    "content": "package edu.knowitall.execution\n\nimport scala.language.implicitConversions\nimport com.rockymadden.stringmetric.similarity._\nimport org.apache.solr.client.solrj.util.ClientUtils\nimport scala.Array.canBuildFrom\nimport scala.Option.option2Iterable\n\n/**\n * Used to represent a Tuple (i.e. a row in a relational database). A tuple\n * has a set of String attributes. Each attribute has a value of type Any.\n */\ncase class Tuple(attrs: Map[String, Any]) {\n\n  /* Concatenates two tuples together. Their attributes must be disjoint. */\n  def join(other: Tuple): Tuple = {\n    val t = Tuple(this.attrs ++ other.attrs)\n    if (t.attrs.size == this.attrs.size + other.attrs.size) {\n      return t\n    } else {\n      throw new\n        IllegalArgumentException(s\"attr names not disjoint: $this, $other\")\n    }\n  }\n\n  def get(a: String) = attrs.get(a)\n\n  /* Gets the string value of attribute a. Returns None if not possible */\n  def getString(a: String) = attrs.get(a) match {\n    case Some(x: String) => Some(x)\n    case _ => None\n  }\n\n  def getBoolean(a: String) = attrs.get(a) match {\n    case Some(x: Boolean) => Some(x)\n    case _ => None\n  }\n\n  def getFloat(a: String): Option[Float] = attrs.get(a) match {\n    case Some(x: Float) => Some(x)\n    case _ => None\n  }\n  \n  def getInt(a: String): Option[Int] = attrs.get(a) match {\n    case Some(i: Int) => Some(i)\n    case _ => None\n  }\n  \n  def getNumber(a: String): Option[Double] = attrs.get(a) match {\n    case Some(i: Int) => Some(i)\n    case Some(f: Float) => Some(f)\n    case Some(d: Double) => Some(d)\n    case _ => None\n  }\n\n  /* Renames the attributes using the given function */\n  def rename(f: String => String): Tuple = {\n    Tuple(attrs.map{ case (k, v) => (f(k), v) })\n  }\n\n  /* Adds \"$p.\" before each attribute. */\n  def renamePrefix(p: String): Tuple = rename(k => p + \".\" + k)\n\n  override def toString: String = {\n    val pairs = attrs map { case (k, v) => k + \": \" + v }\n    return \"(\" + pairs.mkString(\", \") + \")\"\n  }\n  \n}\n\n/**\n * Contains objects for select and join conditions.\n */\nobject Conditions {\n\n  // Mnemonics\n  type Attr = String\n  type Value = Any\n  type ValuePred = Value => Boolean\n  type BinaryStringPred = (String, String) => Boolean\n  type BinaryValuePred = (Value, Value) => Boolean\n  type TuplePred = Tuple => Boolean\n\n  def valPair(a1: Attr, a2: Attr, t: Tuple) =\n    for (v1 <- t.attrs.get(a1); v2 <- t.attrs.get(a2)) yield (v1, v2)\n\n  /* Converts the given predicate over value pairs to a tuple predicate. This\n   * can be used to convert a predicate like \"string1 and string2 are equal\"\n   * to a tuple predicate like \"tuple.a1 and tuple.a2 are equal\"\n   */\n  def binaryAttrPred(a1: Attr, a2: Attr, f: BinaryValuePred): TuplePred =\n    (t: Tuple) => valPair(a1, a2, t).exists(f.tupled)\n\n\n  /* Converts the given predicate over value pairs to a tuple predicate. This\n   * can be used to convert a predicate like \"string1 and string2 are equal\"\n   * to a tuple predicate like \"tuple.a = x\".\n   */\n  def unaryAttrPred(a: Attr, x: String, f: BinaryValuePred): TuplePred =\n    (t: Tuple) => {\n      for (v <- t.attrs.get(a)) yield (v, List(x))\n    }.exists(f.tupled)\n\n  /* Converts a predicate over (String, String) to a predicate over (Any, Any)\n   * by making non-String input always return false.\n   */\n  def stringToAnyPred(f: BinaryStringPred): BinaryValuePred =\n    (v1: Value, v2: Value) => (v1, v2) match {\n      case (v1: String, v2: String) => f(v1, v2)\n      case _ => false\n    }\n\n  /* A shortcut for combining stringToAnyPred and binaryAttrPred. */\n  def binaryPredFromString(a1: Attr, a2: Attr, f: BinaryStringPred) =\n    binaryAttrPred(a1, a2, stringToAnyPred(f))\n\n  /* A shortcut for combining stringToAnyPred and unaryAttrPred. */\n  def unaryPredFromString(a: Attr, v: String, f: BinaryStringPred) =\n    unaryAttrPred(a, v, stringToAnyPred(f))\n\n  /* Wrapper for string equality, with optional case sensitivity. */\n  def StringEquality(caseSensitive: Boolean = true) = (x: String, y: String) =>\n    if (caseSensitive) x == y else x.toLowerCase() == y.toLowerCase()\n\n  /* Thresholded string-similarity predicate, returns true if the given strings\n   * have similarity above a given threshold.\n   */\n  def strSim(thresh: Double) = (x: String, y: String) =>\n    StrSim.sim(x, y) > thresh\n  val strEq = StringEquality(false)\n  val valEq = (x: Value, y: Value) => x == y\n\n  /* A BinaryPred is a TuplePred that has access to two attribute names. */\n  trait BinaryPred {\n    def attr1: Attr\n    def attr2: Attr\n    def apply(t: Tuple): Boolean\n  }\n\n  /* AttrsEqual is a TuplePred that returns true if t.attr1 equals t.attr2. */\n  case class AttrsEqual(attr1: Attr, attr2: Attr) extends TuplePred\n    with BinaryPred {\n    val pred = binaryPredFromString(attr1, attr2, strEq)\n    def apply(t: Tuple) = pred(t)\n  }\n\n  /* AttrEquals is a TuplePred that returns true if t.attr equals value. */\n  case class AttrEquals(attr: Attr, value: String) extends TuplePred {\n    val pred = unaryPredFromString(attr, value, strEq)\n    def apply(t: Tuple) = pred(t)\n  }\n\n  /* AttrsSim is a TuplePred that returns true if t.attr1 and t.attr2 have\n   * similarity greater than thresh.\n   */\n  case class AttrsSim(attr1: Attr, attr2: Attr, thresh: Double)\n  extends TuplePred with BinaryPred {\n    val pred = binaryPredFromString(attr1, attr2, strSim(thresh))\n    def apply(t: Tuple) = pred(t)\n  }\n\n  /* AttrSim is a TuplePred that returns true if t.attr and value have\n   * similarity greater than thresh.\n   */\n  case class AttrSim(attr: Attr, value: String, thresh: Double)\n  extends TuplePred {\n    val pred = unaryPredFromString(attr, value, strSim(thresh))\n    def apply(t: Tuple) = pred(t)\n  }\n\n  /* On returns a function Tuple => Tuple that projects a tuple t onto the\n   * given attributes.\n   */\n  def On(attrs: Attr*) = (t: Tuple) => {\n    val items = for (a <- attrs; v <- t.attrs.get(a)) yield (a, v)\n    Tuple(items.toMap)\n  }\n\n}\n\n/**\n * The Operators object defines relational algebra operators, which are used\n * to join, select, and project Tuple objects.\n */\nobject Operators {\n\n  // Mnemonics\n  type TuplePred = Tuple => Boolean\n  type TupleMap = Tuple => Tuple\n  type Tuples = Iterable[Tuple]\n\n  /* Select returns only those tuples that satisfy the predicate p. */\n  def Select(p: TuplePred) = (ts: Tuples) => ts.filter(p)\n\n  /* Project transforms each tuple using the given map m. */\n  def Project(m: TupleMap) = (ts: Tuples) => ts.map(m)\n\n  /* Union groups multiple iterables of tuples into a single iterable. */\n  def Union(tss: Tuples*) = tss.flatten\n\n  /* Join takes the cartesian product of two tuples and returns only those\n   * tuples that satisfy the predicate p. NestedLoopJoin implements this\n   * as a nested loop over each iterable of tuples.\n   */\n  def NestedLoopJoin(p: TuplePred) = (ts1: Tuples, ts2: Tuples) => {\n    for (t1 <- ts1.par; t2 <- ts2; j = t1.join(t2); if p(j)) yield j\n  }.toList\n\n  /* Joins together all pairs of tuples. */\n  def Product(ts1: Tuples, ts2: Tuples): Tuples =\n    for (t1 <- ts1; t2 <- ts2) yield t1.join(t2)\n\n}\n\n/**\n * Objects used to construct queries against a triplestore.\n */\nobject Search {\n\n  // Mnemonics\n  type Tuples = Iterable[Tuple]\n  type Attr = String\n  type Search = TSQuery => Tuples\n\n  import Conditions._\n\n  /* These are the possible fields in a triplestore. */\n  /*object Field extends Enumeration {\n    type Field = Value\n    val arg1, rel, arg2, namespace = Value\n    val arg1_exact, rel_exact, arg2_exact = Value\n    // Maps some fields to their exact-match versions\n    val exactMap = Map(arg1 -> arg1_exact, rel -> rel_exact, arg2 -> arg2_exact)\n  }\n  import Field._*/\n  trait Field {\n    val name: String\n    def toExact: Field\n  }\n  object Field {\n    implicit def field2string(f: Field) = f.name\n  }\n  val exactPat = \".*_exact$\".r\n  case class TSField(name: String) extends Field {\n    override def toString = name\n    override def toExact = name match {\n      case exactPat(name) => TSField(name)\n      case _ => TSField(name + \"_exact\")\n    }\n  }\n  val arg1 = TSField(\"arg1\")\n  val rel = TSField(\"rel\")\n  val arg2 = TSField(\"arg2\")\n  val namespace = TSField(\"namespace\")\n\n  /* Used to represent a triplestore query. The only requirement is that it\n   * should have some method that converts it to a Lucene query string.\n   */\n  trait TSQuery {\n    def toQueryString: String\n  }\n\n  /* Used to escape characters that have special meanings in Lucene. */\n  def luceneEscape = ClientUtils.escapeQueryChars _\n  def quoteLogic(w: String) = w match {\n    case \"AND\" => \"\\\"AND\\\"\"\n    case \"OR\" => \"\\\"OR\\\"\"\n    case \"NOT\" => \"\\\"NOT\\\"\"\n    case _ => w\n  }\n  def escape(w: String) = quoteLogic(luceneEscape(w))\n\n  /* A query that searches the given field for the given keywords. Splits the\n   * string v into words, and then converts them into a Lucene query\n   * equal to the conjunctions of all the words. For example, if f = arg1\n   * and v = \"barack obama\", the resulting Lucene query string will be\n   * \"arg1:barack AND arg1:obama\".\n   */\n  case class FieldKeywords(f: Field, v: String) extends TSQuery {\n    def toQueryString = {\n      for (w <- v.trim().split(\"\\\\s+\");\n           x = f.toString() + \":\" + escape(w))\n      yield x }.mkString(\" AND \")\n  }\n\n  /* A query that searches the given field for the given phrase. Uses the\n   * exact-match version of the given field. For example, if f = arg1\n   * and v = \"barack obama\", then the resulting Lucene query string will be\n   * arg1_exact:\"barack obama\".\n   */\n  case class FieldPhrase(f: Field, v: String) extends TSQuery {\n    val realField = f.toExact\n    def toQueryString = realField.toString() + \":\\\"\" + escape(v) + \"\\\"\"\n  }\n\n  case class CountQuery(arg: String) extends TSQuery {\n    def toQueryString = {\n      arg match {\n        case \"\" => \"*:*\" // much faster than arg1_exact:*\n        // just do arg1 for speed...\n        case _ => \"arg1:\\\"%s\\\"\".format(arg, arg)\n      }\n    }\n  }\n\n  /* Some shortcut functions for each of the fields. */\n  val Arg1Eq = (v: String) => FieldPhrase(arg1.toExact, v)\n  val Arg2Eq = (v: String) => FieldPhrase(arg2.toExact, v)\n  val RelEq = (v: String) => FieldPhrase(rel.toExact, v)\n  val Arg1Cont = (v: String) => FieldKeywords(arg1, v)\n  val Arg2Cont = (v: String) => FieldKeywords(arg2, v)\n  val RelCont = (v: String) => FieldKeywords(rel, v)\n  val NamespaceEq = (v: String) => FieldKeywords(namespace, v)\n\n  /* Returns the conjunction of the given queries. */\n  case class Conjunction(conjuncts: TSQuery*) extends TSQuery {\n    def toQueryString =\n      conjuncts.map(\"(\" + _.toQueryString + \")\").mkString(\" AND \")\n  }\n\n  /* Returns the disjunction of the given queries. */\n  case class Disjunction(disjuncts: TSQuery*) extends TSQuery {\n    def toQueryString =\n      disjuncts.map(\"(\" + _.toQueryString + \")\").mkString(\" OR \")\n  }\n\n  /* A shortcut method that adds FieldPhrase(f, v) as a conjunct to q. */\n  def AndPhrase(q: TSQuery, f: Field, v: String) =\n    Conjunction(q, FieldPhrase(f, v))\n\n  /* A pattern to match the required triplestore attribute names in a tuple. */\n  val tripColPat = \".*\\\\.(arg1|arg2|rel|namespace)$\"\n\n  /* A projection operator that maps a tuple to just the required triplestore\n   * fields (arg1, rel, arg2, namespace).\n   */\n  def OnTripleCols(t: Tuple): Tuple =\n    Tuple(t.attrs.filterKeys(a => a.matches(tripColPat)))\n  def ProjectTriples(ts: Tuples) = Operators.Project(OnTripleCols)(ts)\n\n  /* The code below is used for executing partial searches. A partial search\n   * is a way to lazily represent a query's tuples without actually executing\n   * the query against the triplestore. Parital searches are useful for\n   * joining a small table T1 with a large table T2. Instead of loading both\n   * tables into memory (which may be prohibitively slow), a partial-search\n   * joiner loads T1 into memory, then executes a query for each tuple t in T1.\n   * Each query is specifically searching for tuples that may be joined with t.\n   * This allows the system to make many small, restricted queries, instead of\n   * one large, unrestricted one.\n   */\n\n  /* This class is just a name for a (query, search) pair, where search\n   * is some function that maps queries onto tuples.\n   */\n  case class PartialSearcher(query: TSQuery, search: Search)\n\n  /* These patterns are used to infer the Field object to join from the string\n   * attribute name in a tuple.\n   */\n  val Arg1Pat = \"(.*)\\\\.arg1$\".r\n  val Arg2Pat = \"(.*)\\\\.arg2$\".r\n  val RelPat = \"(.*)\\\\.rel$\".r\n\n  /* This defines a partial search join algorithm. The join condition cond is\n   * used both as a predicate (i.e. evaluating whether a joined tuple should\n   * be kept or discarded) but also for creating the tuple-specific queries\n   * on the fly.\n   *\n   * PartialSearchJoin is actually a function that takes a join condition\n   * as input, and returns a function (Tuples, PartialSearcher) => Tuples.\n   * This resulting function takes the smaller table as input, and joins it\n   * using the given PartialSearcher object, which encodes the query for\n   * the larger table.\n   */\n  def PartialSearchJoin(cond: BinaryPred) = {\n    // The join attribute of the smaller table.\n    val lAttr = cond.attr1\n\n    // The join attribute of the larger table.\n    val rAttr = cond.attr2\n\n    // Code for inferring which field to search for when creating a query. It\n    // is possible that rAttr might not be mappable to a field, in which case\n    // it is not actually possible to execute the partial search join algo.\n    val (name, field) = rAttr match {\n      case Arg1Pat(n) => (n, arg1)\n      case Arg2Pat(n) => (n, arg2)\n      case RelPat(n) => (n, rel)\n      case _ => throw new\n        IllegalArgumentException(s\"field must be arg1, rel, or arg2: $rAttr\")\n    }\n\n    val tripleField = \"\"\"r\\d+\\.(arg1|arg2|rel)\"\"\".r.pattern\n\n    (ts: Tuples, ps: PartialSearcher) => {\n\n      // split up into chunks\n      val splitGroups = ts.grouped(10).map(_.toSeq)\n      // make pairs of (join attributes, tuples) where join attributes is not empty.\n      val attrsGroups = splitGroups.map { tuples => (tuples.flatMap(_.getString(lAttr)), tuples) } filter(_._1.nonEmpty)\n      // map to new pairs of (Join Attribute Disjunction, Tuples) by converting join attributes to queries.\n      val queryGroups = attrsGroups.map { case (attrs, tuples) => (Disjunction(attrs.map(a => FieldKeywords(field, a)): _*), tuples) }\n      // map to (disjunctive search-join query, Tuples to join with) by combining disjunction with\n      val disjunctionGroups = queryGroups.map { case (disj, tuples) => (Conjunction(disj, ps.query), tuples) }\n      // for each pair, execute the disjunction and join the result with tuples\n      disjunctionGroups.toSeq.par.flatMap { case (q, tuples) =>\n        val qts = ps.search(q)\n        for (\n            t1 <- qts;\n            t2 <- tuples;\n            t3 = t1.join(t2);\n            if (cond(t3))) yield t3\n      }\n    }.toList\n  }\n}\n\n/**\n * This object is used to create SQL-style table printouts from tuples. The\n * code is ripped from this stackoverflow post:\n * http://stackoverflow.com/questions/7539831/scala-draw-table-to-console\n */\nobject Tabulator {\n\n  def trim(s: String, l: Int) = {\n    val n = s.size\n    s.substring(0, Math.min(l, n))\n  }\n\n  def valToString(v: Any) = v match {\n    case x @ (_ :: _ :: _) => \"{\" + trim(x.mkString(\", \"), 40) + \"}\"\n    case x @ (y :: _) => y.toString\n    case x => x.toString\n  }\n  def tupleToList(t: Tuple, attrs: List[String]) = {\n    for(\n    \t\ta <- attrs;\n    \t\tv = t.attrs.getOrElse(a, \"\");\n    \t\ts = valToString(v)) yield s}.toList\n\n  def tuplesToTable(cols: List[String], ts: Iterable[Tuple]) = {\n    val lst = ts.toList\n    format(cols :: lst.map(t => tupleToList(t, cols)))\n  }\n  \n  private val namePat = \"^(.*)\\\\.(arg1|arg2|rel|namespace)$\".r\n  def triplesToTable(ts: List[Tuple]): String = ts match {\n    case t :: rest => {\n      val conjNames = for {\n        a <- t.attrs.keys\n        (conj, field) <- a match {\n          case namePat(conj, field) => Some((conj, field))\n          case _ => None\n        }\n      } yield conj\n      val columns = conjNames.toList.distinct.flatMap(n => List(s\"${n}.arg1\", s\"${n}.rel\", s\"${n}.arg2\", s\"${n}.namespace\"))\n      tuplesToTable(columns, ts)\n    }\n    case _ => \"\"\n  }\n\n  def tuplesToTable(ts: Iterable[Tuple]): String = {\n    val lst = ts.toList\n    if (lst.size > 0) {\n      val cols = lst(0).attrs.keys.toList\n      tuplesToTable(cols, ts)\n    } else {\n      \"\"\n    }\n  }\n\n  def format(table: Seq[Seq[Any]]) = table match {\n    case Seq() => \"\"\n    case _ =>\n      val sizes = for (row <- table) yield (for (cell <- row)\n        yield if (cell == null) 0 else cell.toString.length)\n      val colSizes = for (col <- sizes.transpose) yield col.max\n      val rows = for (row <- table) yield formatRow(row, colSizes)\n      formatRows(rowSeparator(colSizes), rows)\n  }\n\n  def formatRows(rowSeparator: String, rows: Seq[String]): String = (\n    rowSeparator ::\n    rows.head ::\n    rowSeparator ::\n    rows.tail.toList :::\n    rowSeparator ::\n    List()).mkString(\"\\n\")\n\n  def formatRow(row: Seq[Any], colSizes: Seq[Int]) = {\n    val cells = (for ((item, size) <- row.zip(colSizes))\n      yield if (size == 0) \"\" else (\"%\" + size + \"s\").format(item))\n    cells.mkString(\"|\", \"|\", \"|\")\n  }\n\n  def rowSeparator(colSizes: Seq[Int]) =\n    colSizes map { \"-\" * _ } mkString (\"+\", \"+\", \"+\")\n}\n\n/**\n * A custom string-similarity object. Measures the similarity between\n * two strings. Lowercases them and removes some stop words first.\n */\nobject StrSim {\n\n  import edu.knowitall.tool.stem.Lemmatized\n  import edu.knowitall.tool.stem.MorphaStemmer\n  import edu.knowitall.tool.postag.PostaggedToken\n  import edu.knowitall.tool.chunk.OpenNlpChunker\n  import edu.knowitall.tool.chunk.ChunkedToken\n\n  val stops = Set(\"a\", \"an\", \"and\", \"are\", \"as\", \"at\", \"be\", \"but\", \"by\",\n      \"for\", \"if\", \"in\", \"into\", \"is\", \"it\",\n      \"no\", \"not\", \"of\", \"on\", \"or\", \"such\",\n      \"that\", \"the\", \"their\", \"then\", \"there\", \"these\",\n      \"they\", \"this\", \"to\", \"was\", \"will\", \"with\", \"i\", \"me\", \"your\",\n      \"our\", \"ours\", \"him\", \"he\", \"his\", \"her\", \"its\", \"you\", \"that\",\n      \"every\", \"all\", \"each\", \"those\", \"other\", \"both\", \"neither\", \"some\",\n      \"'s\")\n\n  val morpha = new MorphaStemmer()\n\n  val chunker = new OpenNlpChunker()\n\n  def lemmatize[T <: PostaggedToken](tokens: Iterable[T]): Seq[Lemmatized[T]] =\n    morpha.synchronized {\n    tokens.toSeq map morpha.lemmatizePostaggedToken\n  }\n\n  def lemmatize(string: String): Seq[Lemmatized[ChunkedToken]] = chunker.synchronized(lemmatize(chunker(string)))\n\n  def normTokens(x: String) = {\n    val lc = x.toLowerCase()\n    val split = lc.split(\"\\\\s+\")\n    val noStops = split.filter { t =>\n      val lookup = !stops.contains(t)\n      lookup\n    }\n    noStops\n  }\n\n  def norm(x: String) = normTokens(x).mkString(\" \")\n\n  def sim(x: String, y: String): Double = {\n    // hack -- compare forwards and backwards to avoid high scores for prefixes\n    val nx = norm(x)\n    val ny = norm(y)\n    val forward  = JaroWinklerMetric.compare(nx, ny).getOrElse(0.0)\n    val backward = JaroWinklerMetric.compare(nx.reverse, ny.reverse).getOrElse(0.0)\n    (forward + backward) / 2.0\n  }\n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/execution/StopwordExecutor.scala",
    "content": "package edu.knowitall.execution\n\ncase class StopwordExecutor(baseExecutor: QueryExecutor) extends QueryExecutor {\n  \n  import java.util.regex.Pattern\n  \n  val stops = Set(\"a\", \"an\", \"the\", \"'s\", \"these\", \"those\", \"some\", \"that\", \"something\")\n  \n  override def execute(q: ConjunctiveQuery): Iterable[ExecTuple] = \n    baseExecutor.execute(cleanQuery(q))\n  \n  def cleanQuery(q: ConjunctiveQuery): ListConjunctiveQuery = {\n    ListConjunctiveQuery(q.qVars, q.conjuncts map cleanConjunct)\n  }\n\n  def cleanConjunct(c: TConjunct): TConjunct = {\n    val cleanValues = c.values.map {\n      case (key, UnquotedTLiteral(value)) =>\n        (key, UnquotedTLiteral(cleanWords(value)))\n      case (key, value) => (key, value)\n    }\n    c.copy(values = cleanValues)\n  }\n  \n  def cleanWords(str: String) = {\n    val cleaned = str.split(\" \").filterNot(stops.contains).mkString(\" \")\n    if (cleaned.isEmpty) str else cleaned\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/CorrectnessModel.scala",
    "content": "package edu.knowitall.learning\n\ntrait CorrectnessModel[Input, Output] {\n  def isCorrect(input: Input, output: Output): Boolean\n  def pickCorrect(input: Input, candidates: Seq[Output]): Option[Output]\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/FeatureFunction.scala",
    "content": "package edu.knowitall.learning\nimport scala.language.implicitConversions\n\nabstract class FeatureFunction[T] extends Function[T, SparseVector] {\n  override def apply(t: T): SparseVector\n  def sum(that: FeatureFunction[T]): FeatureFunction[T]\n  def +(that: FeatureFunction[T]) = this.sum(that)\n}\n\nobject FeatureFunction {\n  def apply[T](f: T => SparseVector): FeatureFunction[T] = FeatureFunctionImpl(f)\n  implicit def functionToFeatureFunction[T](f: T => SparseVector): FeatureFunction[T] = FeatureFunction(f)\n  implicit def pairToFeatureFunction[T](f: T => (String, Double)): FeatureFunction[T] = FeatureFunction((t: T) => {\n    val (name, value) = f(t)\n    SparseVector(name -> value)\n  })\n  private case class FeatureFunctionImpl[T](f: Function[T, SparseVector]) extends FeatureFunction[T] {\n    override def apply(t: T) = f(t)\n    override def sum(that: FeatureFunction[T]): FeatureFunction[T] = FeatureFunctionImpl((t: T) => this(t) + that(t)) \n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/HiddenVariableModel.scala",
    "content": "package edu.knowitall.learning\n\ntrait HiddenVariableModel[Input, Output] {\n  def predict(input: Input): Option[Output]\n  def candidatePredictions(input: Input): Seq[Output]\n  def update(input: Input, predicted: Output, expected: Output): Unit\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/InteractiveOracle.scala",
    "content": "package edu.knowitall.learning\n\nimport edu.knowitall.util.TuplePrinter.printTuple\nimport edu.knowitall.execution.Tabulator.{format => toTable}\nimport edu.knowitall.model.Derivation\nimport edu.knowitall.search.qa.QueryState\n\nclass InteractiveOracle extends CorrectnessModel[String, Derivation] {\n  \n  private def parseInt(s: String) = \n    try Some(s.toInt)\n    catch {\n      case e: Throwable => None\n    }\n  \n  private def parseInts(s: String) =\n    try s.split(\"\"\"[^-0-9]+\"\"\").map(_.toInt).toSeq\n    catch {\n      case e: Throwable => Nil\n    }\n  \n  private def derivString(deriv: Derivation) = { \n    deriv.toString\n  }\n    \n  private def derivsToTable(derivs: Seq[Derivation]) = {\n    val paired = derivs.zipWithIndex flatMap { case (a, b) =>\n      val sd = derivString(a).split(\"->\").toList.reverse\n      val triples = sd.map((b, a.answer, _)).zipWithIndex map { case ((c, d, e), f) =>\n        if (f == 0) {\n          List(c, d, e)\n        } else {\n          List(\"\", \"\", e)\n        }\n      }\n      triples :+ List(\"\", \"\", \"\")\n    }\n    toTable(List(\"#\", \"answer\", \"evidence\") +: paired)\n  }\n  \n  private def getBoolean: Boolean = {\n    print(\"> \")\n    Console.readLine match {\n      case \"1\" => true\n      case \"-1\" => false\n      case \"0\" => false\n      case _ => {\n        println(\"Type 1 for true, 0 or -1 for false\")\n        getBoolean\n      }\n    }\n  }\n  \n  private def getInt(min: Int, max: Int): Int = {\n    print(\"> \")\n    parseInt(Console.readLine) match {\n      case Some(i) if min <= i && i <= max => i\n      case Some(i) => {\n        println(s\"Must choose between $min and $max\")\n        getInt(min, max)\n      }\n      case None => {\n        println(s\"Must enter an integer\")\n        getInt(min, max)\n      }\n    }\n  }\n  \n  private def getInts(min: Int, max: Int): List[Int] = {\n    print(\"> \")\n    parseInts(Console.readLine) match {\n      case Nil => {\n        println(s\"Must enter a list of integers\")\n        getInts(min, max)\n      }\n      case lst if lst.contains(-1) && lst.size > 1 => {\n        println(\"Cannot have -1 in list\")\n        getInts(min, max)\n      }\n      case lst if lst.forall(i => min <= i && i <= max) => lst.toList\n      case _ => {\n        println(s\"Must enter a list of integers between $min and $max\")\n        getInts(min, max)\n      }\n    }\n  }\n  \n  def pickCorrectMultiple(question: String, derivs: Seq[Derivation]) = \n    if (derivs.size > 0) {\n      val iderivs = derivs.toIndexedSeq \n      println(s\"Question = $question\\n\")\n      println(s\"Pick from derivations below (-1 means no answer)\")\n      println(derivsToTable(derivs))\n      getInts(-1, derivs.size-1) match {\n        case List(-1) => Nil\n        case lst => lst.map(iderivs(_))\n      } \n    } else {\n      Nil\n    }\n  \n  override def isCorrect(question: String, deriv: Derivation) = {\n    println(s\"Question = $question\")\n    println(s\"Answer = ${deriv.answer}\")\n    println(s\"Derivation = ${derivString(deriv)}\")\n    println()\n    getBoolean\n  }\n  \n  override def pickCorrect(question: String, derivs: Seq[Derivation]) = \n   if (derivs.size > 0) {\n    val iderivs = derivs.toIndexedSeq \n    println(s\"Question = $question\\n\")\n    println(s\"Pick from derivations below (-1 means no answer)\")\n    println(derivsToTable(derivs))\n    getInt(-1, derivs.size-1) match {\n      case -1 => None\n      case i => Some(iderivs(i))\n    }\n  } else None\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/LabeledDataOracle.scala",
    "content": "package edu.knowitall.learning\n\nimport edu.knowitall.eval.Oracle\nimport edu.knowitall.eval.FileOracle\nimport edu.knowitall.model.Derivation\n\nclass LabeledDataOracle(oracle: Oracle) extends CorrectnessModel[String, Derivation] {\n  \n  def this(path: String) = this(new FileOracle(path))\n  \n  def isCorrectAnswer(question: String, answer: String) =\n    oracle.getLabel(question, answer).getOrElse(false)\n    \n  override def isCorrect(question: String, deriv: Derivation) =\n    isCorrectAnswer(question, deriv.answer)\n  \n  override def pickCorrect(question: String, derivs: Seq[Derivation]) =\n    derivs.filter(answer => isCorrect(question, answer)) match {\n      case d :: ds => Some(d)\n      case Nil => None\n    }\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/MemoryInteractiveOracle.scala",
    "content": "package edu.knowitall.learning\n\nimport edu.knowitall.eval.FileOracle\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.model.Derivation\n\nclass MemoryInteractiveOracle(oracle: FileOracle) extends CorrectnessModel[String, Derivation] {\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n  \n  def this(path: String) = this(new FileOracle(path))\n  \n  val labeled = new LabeledDataOracle(oracle)\n  val interactive = new InteractiveOracle()\n  \n  override def isCorrect(question: String, deriv: Derivation) = {\n    val answer = deriv.answer\n    if (oracle.hasLabel(question, answer)) {\n      logger.debug(s\"Using saved labels for $question\")\n      labeled.isCorrect(question, deriv)\n    } else {\n      val result = interactive.isCorrect(question, deriv)\n      oracle.update(question, answer, result)\n      oracle.save\n      result\n    }\n  }\n  \n  private def haveLabelFor(question: String, deriv: Derivation) = \n    oracle.hasLabel(question, deriv.answer)\n  \n  override def pickCorrect(question: String, derivs: Seq[Derivation]) = {\n    labeled.pickCorrect(question, derivs) match {\n      case Some(deriv) => {\n        logger.debug(s\"Using saved labels for $question\")\n        logger.debug(s\"Found '${deriv.answer}' as answer for '$question'\")\n        Some(deriv)\n      }\n      case None => {\n        val unlabeled = derivs.filter(d => !haveLabelFor(question, d))\n        interactive.pickCorrectMultiple(question, unlabeled) match {\n          case seq: Seq[Derivation] if seq.size > 0 => {\n            for (d <- seq) {\n              oracle.update(question, d.answer, true)\n            }\n            oracle.save\n            logger.debug(s\"Found '${seq(0)}' as answer for '$question'\")\n            Some(seq(0))\n          }\n          case Nil => {\n            for (d <- unlabeled) {\n              oracle.update(question, d.answer, false)\n            }\n            oracle.save\n            logger.debug(s\"Correct answer for '$question' is unreachable\")\n            None\n          }\n        }\n        \n      }\n    }\n  }\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/Perceptron.scala",
    "content": "package edu.knowitall.learning\n\nclass Perceptron[Input, Output](model: HiddenVariableModel[Input, Output], \n    oracle: CorrectnessModel[Input, Output]) {\n  \n  def learnIter(input: Input) = for {\n    prediction <- model.predict(input)\n    if !oracle.isCorrect(input, prediction)\n    candidates = model.candidatePredictions(input)\n    correct <- oracle.pickCorrect(input, candidates)\n  } model.update(input, prediction, correct)\n  \n  def learn(inputs: Traversable[Input]) = inputs foreach learnIter\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/QATrainer.scala",
    "content": "package edu.knowitall.learning\n\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.eval.FileOracle\nimport edu.knowitall.eval.Oracle\nimport scala.io.Source\nimport edu.knowitall.eval.FileOracle\nimport java.io.File\nimport java.io.PrintWriter\nimport edu.knowitall.util.Counter\nimport edu.knowitall.model.QaModel\nimport edu.knowitall.model.Derivation\nimport java.text.SimpleDateFormat\nimport java.util.Calendar\nimport org.slf4j.LoggerFactory\nimport java.io.StringWriter\n\nclass QaTrainer(model: QaModel, oracle: CorrectnessModel[String, Derivation]) extends HiddenVariableModel[String, Derivation] {\n  \n  private var avgWeights = model.costModel.weights\n  private var iter = 1.0\n  var numUpdates = 0\n  var numExamples = 0\n  private val perceptron = new Perceptron(this, oracle)\n  private val logger = LoggerFactory.getLogger(this.getClass)\n  \n  override def predict(question: String) = model.predict(question)\n  \n  override def candidatePredictions(question: String) = model.candidatePredictions(question)\n  \n  override def update(question: String, predicted: Derivation, expected: Derivation) = {\n    logger.info(s\"Updating:\\ncorrect = ${expected}\\n${expected.explainScore(model.costModel.weights)}\\npredicted = ${predicted}\\n${predicted.explainScore(model.costModel.weights)}\")\n    model.update(question, predicted, expected)\n    numUpdates += 1\n    avgWeights = avgWeights + (expected.features - predicted.features) * iter\n    logger.info(s\"Updated weights:\\n${model.costModel.weights.toTable}\")\n  }\n  \n  def learnIter(question: String) = {\n    try {\n      logger.info(s\"Question $iter = $question\")\n      perceptron.learnIter(question)\n      iter += 1\n      numExamples += 1\n    } catch {\n      case e: Throwable => {\n        logger.warn(s\"Encountered problem with example: $question\")\n        logger.warn(s\"Supressing error.\")\n        val sw = new StringWriter()\n        val pw = new PrintWriter(sw)\n        e.printStackTrace(pw)\n        logger.warn(sw.toString())\n      }\n    }\n  }\n  \n  def learn(inputs: Traversable[String]) = inputs foreach learnIter\n  \n  def averagedWeights = model.costModel.weights - (avgWeights / iter)\n  \n}\n\nobject QaTrainer extends App {\n  \n  def timestamp = {\n    val fmt = new SimpleDateFormat(\"yyyy-MM-dd-HHmmss\")\n    val today = Calendar.getInstance.getTime\n    fmt.format(today)\n  }\n\n  val conf = ConfigFactory.load()\n  \n  val oracleMode = conf.getString(\"learning.oracleMode\")\n  val labelsPath = conf.getString(\"learning.labelsPath\")\n  val inputsPath = conf.getString(\"learning.inputsPath\")\n  val outputsPath = conf.getString(\"learning.outputsPath\")\n  val numIters = conf.getInt(\"learning.numIters\")\n  val runName = if (conf.hasPath(\"learning.runName\")) conf.getString(\"learning.runName\") else \"unnamed\"\n\n      \n  val dir = new File(outputsPath, s\"${runName}-${timestamp}\")\n  if (dir.exists() && !dir.isDirectory()) \n    throw new IllegalStateException(s\"$dir exists but is not a directory\")\n  if (!dir.exists()) dir.mkdirs()\n  val modelOutput = new File(dir, \"model.txt\")\n  \n  val configOutput = new PrintWriter(new File(dir, \"config.txt\"))\n  configOutput.write(conf.root().render)\n  configOutput.close()\n  \n  \n  \n  val oracle = oracleMode match {\n    case \"interactive\" => new MemoryInteractiveOracle(labelsPath)\n    case \"file\" => new LabeledDataOracle(labelsPath)\n    case _ => throw new IllegalStateException(s\"Invalid oracle mode: $oracleMode\")\n  }\n  \n  val inputs = Source.fromFile(inputsPath, \"UTF8\").getLines.map(Oracle.normalize).toList\n  \n  val model = QaModel()\n  \n  val trainer = new QaTrainer(model, oracle)\n  println(\"Learning...\")\n  for (i <- 1 to numIters) {\n    val start = System.currentTimeMillis\n    trainer.learn(inputs)\n    val file = new File(dir, s\"model.$i.txt\")\n    SparseVector.toFile(model.costModel.weights, file.toString())\n    val avgFile = new File(dir, s\"model.$i.avg.txt\")\n    SparseVector.toFile(trainer.averagedWeights, avgFile.toString())\n    val delta = System.currentTimeMillis - start\n    println(s\"Done with iteration $i (${delta/1000} seconds, ${trainer.numUpdates} updates so far)\")\n  }\n  println(\"Done learning\")\n  \n  \n  SparseVector.toFile(model.costModel.weights, modelOutput.toString())\n  SparseVector.toFile(trainer.averagedWeights, (new File(dir, s\"model.avg.txt\")).toString())\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/QueryTupleSimilarity.scala",
    "content": "package edu.knowitall.learning\n\nimport edu.knowitall.execution.ConjunctiveQuery\nimport edu.knowitall.execution.Tuple\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport scala.Option.option2Iterable\nimport edu.knowitall.execution.TLiteral\nimport edu.knowitall.execution.Search\n\nobject QueryTupleSimilarity {\n  \n  def normalize(ss: List[String]): List[String] = ss.map(_.toLowerCase()).map(MorphaStemmer.stem)\n  \n  def tokenize(s: String) = s.split(\" \").toList\n  \n  def queryWords(q: ConjunctiveQuery): List[String] = {\n    val literalFields = for (c <- q.conjuncts; (field, literal) <- c.literalFields) yield literal.value\n    normalize(literalFields.flatMap(tokenize))\n  }\n  \n  def tupleWords(q: ConjunctiveQuery, t: Tuple): List[String] = {\n    val values = for (c <- q.conjuncts;\n    \t\t\t\t  (field, literal) <- c.literalFields;\n    \t\t\t\t  value <- t.getString(s\"${c.name}.${field}\"))\n    \t\t\t\tyield value\n    normalize(values.flatMap(tokenize))\n  }\n  \n  def jaccard(x: List[String], y: List[String]): Double = {\n    val xset = x.toSet\n    val yset = y.toSet\n    if (x.size > 0 || y.size > 0) {\n      xset.intersect(yset).size.toDouble / xset.union(yset).size\n    } else {\n      0.0\n    }\n  }\n  \n  def similarity(q: ConjunctiveQuery, t: Tuple): Double = {\n    val qws = queryWords(q)\n    val tws = tupleWords(q, t)\n    jaccard(qws, tws)\n  }\n  \n  def tupleFieldWords(q: ConjunctiveQuery, t: Tuple, fields: Set[Search.Field]) = {\n    val values = for {\n      c <- q.conjuncts\n      (field, literal) <- c.literalFields\n      if fields.contains(field)\n      value <- t.getString(s\"${c.name}.${field}\")\n    } yield value\n    normalize(values.flatMap(tokenize))\n  }\n  \n  def tupleWordsFields(t: Tuple, fields: Set[Search.Field]) = {\n    val values = for {\n      (a, v) <- t.attrs collect {\n        case (a: String, v: String) => (a, v)\n      }\n      f <- fields\n      if a.endsWith(\".\" + f.name)\n    } yield v\n    normalize(values.toList.distinct.flatMap(tokenize))\n  }\n  \n  def queryFieldWords(q: ConjunctiveQuery, fields: Set[Search.Field]) = {\n    val values = for {\n      c <- q.conjuncts\n      (field, literal) <- c.literalFields\n      if fields.contains(field)\n      value = literal.value\n    } yield value\n    normalize(values.flatMap(tokenize))\n  }\n  \n  def argSimilarity(q: ConjunctiveQuery, t: Tuple) = {\n    val qws = queryFieldWords(q, Set(Search.arg1, Search.arg2))\n    val tws = tupleFieldWords(q, t, Set(Search.arg1, Search.arg2))\n    jaccard(qws, tws)\n  }\n  \n  def relSimilarity(q: ConjunctiveQuery, t: Tuple) = {\n    val qws = queryFieldWords(q, Set(Search.rel))\n    val tws = tupleFieldWords(q, t, Set(Search.rel))\n    jaccard(qws, tws)\n  }\n\n  def questionQuerySimilarity(query: ConjunctiveQuery, ques: String) = {\n    val queryws = queryWords(query)\n    val quesws = normalize(tokenize(ques))\n    jaccard(queryws, quesws)\n  }\n  \n  def questionTupleSimilarity(ques: String, t: Tuple) = {\n    val quesws = normalize(tokenize(ques))\n    val twords = tupleWordsFields(t, Set(Search.arg1, Search.rel, Search.arg2))\n    jaccard(quesws, twords)\n  }\n\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/learning/SparseVector.scala",
    "content": "package edu.knowitall.learning\n\nimport scala.io.Source\nimport java.io.PrintWriter\nimport scala.language.implicitConversions\nimport java.io.InputStream\nimport java.io.File\nimport java.io.FileInputStream\nimport edu.knowitall.execution.Tabulator\n\nabstract class SparseVector {\n  def activeComponents: Iterable[String]\n  def apply(i: String): Double\n  def add(that: SparseVector): SparseVector\n  def scalarMult(x: Double): SparseVector\n  def dot(that: SparseVector): Double\n  def subtract(that: SparseVector): SparseVector = this.add(that.scalarMult(-1.0))\n  def +(that: SparseVector): SparseVector = this.add(that)\n  def -(that: SparseVector): SparseVector = this.subtract(that)\n  def *(x: Double): SparseVector = this.scalarMult(x)\n  def *(that: SparseVector): Double = this.dot(that)\n  def /(x: Double): SparseVector = this.scalarMult(1/x)\n  def activeComponents(that: SparseVector): Iterable[String] = (this.activeComponents ++ that.activeComponents).toList.distinct\n  def toTable = {\n    val pairs = for (c <- activeComponents.toList.sortBy(-this(_)); if Math.abs(this(c)) > 1e-9) yield Seq(c, this(c))\n    Tabulator.format(Seq(\"Feature\", \"Weight\") +: pairs.toSeq)\n  }\n}\n\nobject SparseVector {\n  implicit def dPairToSparseVector(x: (String, Double)): SparseVector = SparseVectorImpl(Map(x._1 -> x._2))\n  implicit def bPairToSparseVector(x: (String, Boolean)): SparseVector = SparseVectorImpl(Map(x._1 -> {if (x._2) 1.0 else 0.0}))\n  implicit def iPairToSparseVector(x: (String, Int)): SparseVector = SparseVectorImpl(Map(x._1 -> x._2.toDouble))\n  implicit def pairsToSparseVector(pairs: TraversableOnce[(String, Double)]): SparseVector = SparseVectorImpl(pairs.toMap)\n  implicit def stringListToSparseVector(list: TraversableOnce[String]): SparseVector = SparseVectorImpl(list.map(s => (s, 1.0)).toMap)\n  implicit def stringToSparseVector(s: String): SparseVector = SparseVectorImpl(Map(s -> 1.0))\n  implicit def oStringToSparseVector(os: Option[String]): SparseVector = os match {\n    case Some(s) => SparseVectorImpl(Map(s -> 1.0))\n    case _ => SparseVectorImpl(Map())\n  }\n  def apply: SparseVector = SparseVectorImpl(Map())\n  def apply(pairs: TraversableOnce[(String, Double)]): SparseVector = SparseVectorImpl(pairs.toMap)\n  def apply(pairs: (String, Double)*): SparseVector = SparseVectorImpl(pairs.toMap)\n  def fromFile(path: String): SparseVector = {\n    fromInputStream(new FileInputStream(new File(path)))\n  }\n  def fromInputStream(in: InputStream): SparseVector = {\n    val lines = Source.fromInputStream(in, \"UTF8\").getLines\n    val pairs = lines.map { line => line.split(\"\\t\") match {\n      case Array(k, v) => (k, v.toDouble)\n      case _ => throw new IllegalStateException(s\"Could not parse line: '$line'\")\n    }}.toIterable\n    SparseVector(pairs)\n  }\n  def toFile(vector: SparseVector, path: String) = {\n    val writer = new PrintWriter(path)\n    vector.activeComponents.foreach(k => writer.println(s\"${k}\\t${vector(k)}\"))\n    writer.close()\n  }\n  private case class SparseVectorImpl(map: Map[String, Double]) extends SparseVector {\n    override def activeComponents = map.keys\n    override def apply(i: String) = map.getOrElse(i, 0.0)\n    override def add(that: SparseVector): SparseVector = {\n      val pairs = for (k <- this.activeComponents(that)) yield (k, this(k) + that(k))\n      SparseVectorImpl(pairs.toMap)\n    }\n    override def scalarMult(x: Double): SparseVector = {\n      val pairs = for((k, v) <- map) yield (k, x * v)\n      SparseVectorImpl(pairs.toMap)\n    }\n    override def dot(that: SparseVector): Double = {\n      this.activeComponents(that).map(i => this(i) * that(i)).sum\n    }\n    override def toString = this.map.toString.replaceFirst(\"Map\", \"SparseVector\")\n  }\n  final val zero = SparseVector()\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/lm/LanguageModel.scala",
    "content": "package edu.knowitall.lm\n\nimport java.net.URL\nimport java.net.URI\nimport java.net.URLEncoder\nimport scalaj.http.Http\nimport scala.io.Source\nimport scalaj.http.HttpOptions\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.util.MathUtils\nimport org.slf4j.LoggerFactory\nimport com.twitter.util.LruMap\nimport scala.collection.mutable.SynchronizedMap\n\ntrait LanguageModel {\n  /**\n   * Queries a string, returns its log probability.\n   */\n  def query(s: String): Double\n  /**\n   * Does a batch query of a bunch of strings, returns a list of the (input,\n   * log probability) pairs.\n   */\n  def query(s: Iterable[String]): List[(String, Double)]\n}\n\ncase class KenLmServer(url: String, timeOut: Int, \n\t\t\t\t\t   scale: Boolean = KenLmServer.scale,\n\t\t\t\t\t   cacheSize: Int = KenLmServer.defaultCacheSize,\n\t\t\t\t\t   skipTimeouts: Boolean = KenLmServer.defaultSkipTimeouts) extends LanguageModel {\n  def this() = this(KenLmServer.defaultUrl, KenLmServer.defaultTimeout)\n  val logger = LoggerFactory.getLogger(this.getClass)\n  val root = s\"${url}/score\"\n  val retries = KenLmServer.retries\n  \n  private val cache = new LruMap[String, Double](cacheSize) with SynchronizedMap[String, Double]\n  \n  override def query(s: String): Double = cache.get(s) match {\n    case Some(x) => x\n    case None => try {\n      val result = queryHelper(s)\n      cache.put(s, result)\n      result\n    } catch {\n      case e: IllegalStateException => if (skipTimeouts) {\n        logger.warn(s\"Could not compute LM score for '$s': $e\")\n        scaleValue(Double.MinValue)\n      } else {\n        throw e\n      }\n    }\n  }\n  \n  private def queryHelper(s: String, attempt: Int = 0): Double = {\n    if (attempt > retries) {\n      throw new IllegalStateException(s\"Unable to query KenLM for '$s'\")\n    } else {\n      try {\n        logger.debug(s\"Querying for one string (attempt ${attempt+1}/$retries): $s\")\n        scaleValue(Http(root).option(HttpOptions.connTimeout(timeOut)).params(\"q\" -> s).asString.toDouble)\n      } catch {\n        case e: Throwable => {\n          queryHelper(s, attempt + 1)\n        }\n      }\n    }\n  }\n\n  def queryBatch(s: Iterable[String]) = {\n    logger.debug(s\"Querying for ${s.size} strings\")\n    val lst = s.toList\n    val joined = lst.mkString(\"|\")\n    val lines = Http.post(root).\n    \t\t\toption(HttpOptions.connTimeout(timeOut)).\n    \t\t\toption(HttpOptions.readTimeout(timeOut)).\n    \t\t\tparams(\"q\" -> joined).\n    \t\t\tasString.trim.split(\"\\n\")\n    val results = lst.zip(lines).map { case (a, b) => (a, scaleValue(b.toDouble)) }\n    for ((a, b) <- results) cache.put(a, b)\n    results\n  }\n  override def query(s: Iterable[String]) = {\n    val groups = s.grouped(KenLmServer.batchSize)\n    groups.flatMap(queryBatch).toList\n  }\n  private def scaleValue(x: Double): Double = \n    if (scale) MathUtils.clipScale(x, KenLmServer.minValue, KenLmServer.maxValue)\n    else x\n}\n\ncase object KenLmServer {\n  val conf = ConfigFactory.load()\n  val defaultUrl = conf.getString(\"lm.url\")\n  val defaultTimeout = conf.getInt(\"lm.timeout\")\n  val retries = conf.getInt(\"lm.retries\")\n  val batchSize = conf.getInt(\"lm.batchSize\");\n  val minValue = conf.getDouble(\"lm.minValue\")\n  val maxValue = conf.getDouble(\"lm.maxValue\")\n  val scale = conf.getBoolean(\"lm.scale\")\n  val defaultSkipTimeouts = conf.getBoolean(\"lm.skipTimeouts\")\n  val defaultCacheSize = conf.getInt(\"lm.cacheSize\")\n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/model/Derivation.scala",
    "content": "package edu.knowitall.model\n\nimport edu.knowitall.search.qa.AnswerState\nimport edu.knowitall.search.qa.QuestionState\nimport edu.knowitall.search.Edge\nimport edu.knowitall.search.qa.QaState\nimport edu.knowitall.search.qa.QaAction\nimport edu.knowitall.learning.SparseVector\nimport edu.knowitall.search.qa.QaStep\nimport edu.knowitall.execution.ExecTuple\nimport edu.knowitall.search.qa.ExecutionAction\nimport edu.knowitall.execution.Tabulator\n\ncase class Derivation(question: String,\n\t\t\t\t\t  answer: String,\n\t\t\t\t\t  steps: IndexedSeq[QaStep],\n\t\t\t\t\t  features: SparseVector,\n\t\t\t\t\t  score: Double,\n\t\t\t\t\t  searchTime: Long = 0L) {\n  \n  assert(steps.size >= 2)\n  def questionState: QuestionState = steps.head.fromState match {\n    case q: QuestionState => q\n    case x =>\n      throw new IllegalStateException(s\"Expected QuestionState, got $x, steps = $steps\")\n  }\n  def answerState: AnswerState = steps.last.toState match {\n    case a: AnswerState => a\n    case x =>\n      throw new IllegalStateException(s\"Expected AnswerState, got $x, steps = $steps\")\n  }\n  def explainScore(weights: SparseVector) = {\n    val rows = for {\n      fname <- features.activeComponents.toList.sortBy(f => -1*features(f)*weights(f))\n      fvalue = features(fname)\n      weight = weights(fname)\n      product = fvalue * weight  \n    } yield Seq(product, weight, fvalue, fname)\n    \n    val allRows: Seq[Seq[Any]] = Seq(Seq(\"prod\", \"weight\", \"value\", \"feature\")) ++ rows.toSeq\n    Tabulator.format(allRows)\n  }\n  override def toString = {\n    val l = List(questionState) ++ steps.map(_.toState)\n    l.map(_.toString).mkString(\" -> \") + s\" (${searchTime}ms)\"\n  }\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/model/QaModel.scala",
    "content": "package edu.knowitall.model\n\nimport edu.knowitall.search.qa.QaStep\nimport edu.knowitall.search.qa.QaState\nimport edu.knowitall.search.qa.QaAction\nimport edu.knowitall.learning.HiddenVariableModel\nimport edu.knowitall.learning.SparseVector\nimport edu.knowitall.search.qa.QaCostModel\nimport edu.knowitall.search.qa.QaTransitionModel\nimport edu.knowitall.search.qa.QaSearchProblem\nimport edu.knowitall.search.BeamSearch\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.search.Edge\nimport edu.knowitall.search.Node\nimport edu.knowitall.search.qa.AnswerState\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.search.qa.QaBeamSearch\nimport edu.knowitall.search.SearchAlgorithm\n\ncase class QaModel(transitionModel: QaTransitionModel = QaModel.defaultTransitionModel, \n           costModel: QaCostModel = QaModel.defaultCostModel) \n           extends HiddenVariableModel[String, Derivation] {\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  private def createSearchProblem(question: String) =\n    new QaSearchProblem(question, transitionModel, costModel)\n  \n  private def pathToSteps(q: String, path: List[(QaState, QaAction, QaState)]) =\n    path map { case (fromState, action, toState) =>\n      QaStep(q, fromState, action, toState)\n    }\n  \n  private def makeDerivation(q: String, n: Node[QaState, QaAction], t0: Long) = \n    n.state match {\n      case as: AnswerState => {\n        val a = as.answer\n        val steps = pathToSteps(q, n.path())\n        val feats = steps.map(costModel.features).fold(SparseVector.zero)(_+_)\n        val score = -1 * n.pathCost\n        val searchTime = n.creationTime - t0\n        Some(Derivation(q, a, steps.toIndexedSeq, feats, score, searchTime))\n      }\n      case _ => None\n    }\n  \n  override def predict(question: String) = {\n    val preds = candidatePredictions(question)\n    preds.sortBy(-1 * _.score) match {\n      case d :: rest => {\n        logger.debug(s\"Prediction: $question => ${d.answer}\")\n        Some(d)\n      }\n      case _ => {\n        logger.debug(s\"Prediction: $question => None\")\n        None\n      }\n    }\n  }\n  \n  override def candidatePredictions(question: String) = {\n    val problem = createSearchProblem(question)\n    val searcher = new QaBeamSearch(problem)\n    val goals = searcher.search\n    goals.flatMap(makeDerivation(question, _, searcher.startTime))\n  }\n  \n  override def update(q: String, output: Derivation, expected: Derivation) = {\n    logger.debug(s\"Updating model with ${expected.answer} - ${output.answer}\")\n    val delta = expected.features - output.features\n    val oldWeights = costModel.weights\n    val newWeights = oldWeights + delta\n    costModel.weights = newWeights\n    logger.debug(s\"Updated model = $newWeights\")\n  }\n\n}\n\ncase object QaModel {\n  lazy val defaultTransitionModel = new QaTransitionModel\n  lazy val defaultCostModel = new QaCostModel\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/Paraphrase.scala",
    "content": "package edu.knowitall.paraphrasing\n\nabstract class Paraphrase private () {\n  def source: String\n  def target: String\n  def derivation: ScoredParaphraseDerivation\n}\n\nobject Paraphrase {\n  private case class ParaphraseImpl(source: String, target: String, \n      derivation: ScoredParaphraseDerivation) extends Paraphrase\n  def apply(source: String, target: String,\n      derivation: ScoredParaphraseDerivation): Paraphrase = \n        ParaphraseImpl(source, target, derivation)\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/ParaphraseDerivation.scala",
    "content": "package edu.knowitall.paraphrasing\n\nimport com.typesafe.config.ConfigFactory\n\ntrait ParaphraseDerivation\n\ntrait ScoredParaphraseDerivation extends ParaphraseDerivation {\n  def score: Double\n}\n\ncase object IdentityDerivation extends ScoredParaphraseDerivation {\n  val conf = ConfigFactory.load()\n  override val score = conf.getDouble(\"paraphrase.identityScore\")\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/Paraphraser.scala",
    "content": "package edu.knowitall.paraphrasing\n\n\ntrait Paraphraser {\n  def paraphrase(s: String): List[Paraphrase]\n  def paraphraseToStrings(s: String): List[String] =\n    paraphrase(s).map(pp => pp.target)\n}\n\nobject EmptyParaphraser extends Paraphraser {\n  override def paraphrase(s: String) = List()\n}\n\nobject IdentityParaphraser extends Paraphraser {\n  override def paraphrase(s: String) = List(Paraphrase(s, s, IdentityDerivation))\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/rules/ParaphraseRule.scala",
    "content": "package edu.knowitall.paraphrasing.rules\n\nimport edu.knowitall.parsing.cg.SentencePattern\nimport edu.knowitall.execution.UnquotedTLiteral\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.execution.TVariable\nimport edu.knowitall.parsing.cg.LexiconPreprocessor\nimport edu.knowitall.search.qa.QaAction\n\ncase class ParaphraseRule(name: String, input: SentencePattern, output: String) extends QaAction {\n  private val sp = UnquotedTLiteral(output)\n  def apply(s: Sentence with Chunked with Lemmatized) = if (input.matches(s)) {\n    val groups = input.groups(s)\n    val bindings = groups map { \n      case (name, value) => (TVariable(name), UnquotedTLiteral(value))\n    }\n    val result = sp.subs(bindings)\n    Some(result.value)\n  } else {\n    None\n  }\n  override def toString = name\n}\n\ncase object ParaphraseRule {\n  \n  lazy val preprocessor = LexiconPreprocessor()\n  \n  def fromStrings(strings: IndexedSeq[String]) = for {\n    line <- strings\n    if !line.trim.startsWith(\"#\") && line.trim != \"\"\n  } yield fromString(line)\n  \n  def fromString(s: String) = s.split(\"\\\\s+:=\\\\s+\", 2) match {\n    case Array(input, output) => input.split(\"\\\\s+\", 2) match {\n      case Array(name, pat) => \n        ParaphraseRule(name, SentencePattern(preprocessor(pat)), output)\n      case _ => throw new IllegalArgumentException(s\"Invalid pattern: $input\")\n    }\n    case _ => throw new IllegalArgumentException(s\"Invalid rule: $s\") \n  }\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/rules/ParaphraseRuleSet.scala",
    "content": "package edu.knowitall.paraphrasing.rules\n\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.util.ResourceUtils\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.util.NlpTools\nimport scala.io.Source\n\ncase class ParaphraseRuleSet(rules: List[ParaphraseRule] = ParaphraseRuleSet.defaultRules) {\n  def apply(s: Sentence with Chunked with Lemmatized) = for {\n    r <- rules\n    p <- r(s)\n  } yield (r, p)\n}\n\ncase object ParaphraseRuleSet {\n  val conf = ConfigFactory.load()\n  val defaultRuleSetPath = conf.getString(\"paraphrase.rules.ruleSetPath\")\n  lazy val defaultRules = {\n    val strings = ResourceUtils.resourceSource(defaultRuleSetPath).getLines.toIndexedSeq\n    ParaphraseRule.fromStrings(strings)\n  }.toList\n  def fromPath(p: String) = {\n    val lines = Source.fromFile(p, \"UTF-8\").getLines.toIndexedSeq\n    ParaphraseRuleSet(ParaphraseRule.fromStrings(lines).toList)\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/LmParaphraseScorer.scala",
    "content": "package edu.knowitall.paraphrasing.template\n\nimport edu.knowitall.lm.KenLmServer\nimport edu.knowitall.paraphrasing.ScoredParaphraseDerivation\n\nclass LmParaphraseScorer extends ParaphraseScorer {\n  val client = new KenLmServer()\n  override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = {\n    val dlist = derivs.toList\n    val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(\" \"))).map(_._2)\n    for ((d, score) <- dlist.zip(lmScores)) yield d.copy(score = score, lm = score) \n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/ParaphraseScorer.scala",
    "content": "package edu.knowitall.paraphrasing.template\n\nimport edu.knowitall.paraphrasing.ScoredParaphraseDerivation\n\ntrait ParaphraseScorer {\n  \n  def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation]\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/PmiLmParaphraseScorer.scala",
    "content": "package edu.knowitall.paraphrasing.template\n\nimport edu.knowitall.tool.tokenize.ClearTokenizer\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.lm.KenLmServer\nimport edu.knowitall.paraphrasing.ScoredParaphraseDerivation\n\nclass PmiLmParaphraseScorer() extends ParaphraseScorer {\n  val client = new KenLmServer()\n  override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = {\n    val dlist = derivs.toList\n    val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(\" \"))).map(_._2)\n    for ((d, lmScore) <- dlist.zip(lmScores)) yield d.copy(score = -lmScore * d.templates.pmi, lm = lmScore) \n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/PmiParaphraseScorer.scala",
    "content": "package edu.knowitall.paraphrasing.template\n\nimport edu.knowitall.lm.KenLmServer\n\nclass PmiParaphraseScorer() extends ParaphraseScorer {\n  val client = new KenLmServer()\n  override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = {\n    val dlist = derivs.toList\n    val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(\" \"))).map(_._2)\n    for ((d, score) <- dlist.zip(lmScores)) yield d.copy(score = d.templates.pmi) \n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/Template.scala",
    "content": "package edu.knowitall.paraphrasing.template\n\nimport edu.knowitall.tool.stem.Lemmatized\nimport edu.knowitall.tool.chunk.ChunkedToken\nimport edu.knowitall.util.NlpUtils.makeRegex\nimport scala.collection.JavaConversions._\nimport edu.knowitall.util.NlpUtils\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.tool.stem.Lemmatized.viewAsToken\n\ncase class Template(left: Seq[Lemmatized[ChunkedToken]], right: Seq[Lemmatized[ChunkedToken]]) {\n  def substitute(value: Seq[Lemmatized[ChunkedToken]]) = left ++ value ++ right\n  def serialize = NlpUtils.serialize(left) + \"|\" + NlpUtils.serialize(right)\n  val templateString = (left.map(_.lemma.toLowerCase()).mkString(\" \") + \" $y \" + right.map(_.lemma.toLowerCase()).mkString(\" \")).trim\n}\n\ncase object Template {\n  def deserialize(s: String): Template = {\n    s.split(\"|\") match {\n      case Array(s1, s2) => Template(NlpUtils.deserialize(s1), NlpUtils.deserialize(s2))\n      case _ => throw new IllegalArgumentException(s\"Could not deserialize template: $s\")\n    }\n  }\n}\n\ncase class AbstractedQuestion(value: Seq[Lemmatized[ChunkedToken]], template: Template) {\n  def this(q: Seq[Lemmatized[ChunkedToken]], i: Int, j: Int) = this(q.slice(i, j), Template(q.slice(0, i), q.slice(j, q.size)))\n  def substitute = template.substitute(value)\n  val valueString = value.map(_.lemma.toLowerCase()).mkString(\" \").trim()\n  def serialize = NlpUtils.serialize(value) + \"|\" + template.serialize \n}\n\ncase object AbstractedQuestion {\n  \n  val conf = ConfigFactory.load()\n  \n  def deserialize(s: String): AbstractedQuestion = {\n    s.split(\"|\", 1) match {\n      case Array(value, rest) => AbstractedQuestion(NlpUtils.deserialize(value), Template.deserialize(rest))\n      case _ => throw new IllegalArgumentException(s\"Could not deserialize abstracted question: $s\")\n    }\n  }\n  \n  val maxSize = conf.getInt(\"paraphrase.template.maxArgLength\")\n  val valuePattern = makeRegex(\"^<pos='$' | pos='PRP$' | pos='CD' | pos='DT' | pos='JJ' | pos='JJS' | pos='JJR' | pos='NN' \" +\n      \"| pos='NNS' | pos='NNP' | pos='NNPS' | pos='POS' | pos='PRP' | pos='RB' | pos='RBR' | pos='RBS' \" +\n      \"| pos='VBN' | pos='VBG'>+$\")\n  val argPos = \"$ PRP$ CD DT JJ JJS JJR NN NNS NNP NNPS POS PRP RB RBR RBS VBN VBG\".split(\" \").toSet\n      \n  def keepArg(arg: Seq[Lemmatized[ChunkedToken]]) = arg.forall(t => argPos.contains(t.postag))\n      \n  def intervals(size: Int, max: Int) =\n    for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= max) yield (i, j+1)\n    \n  def detInTemplate(abs: AbstractedQuestion) = abs.template.left.size > 0 && abs.template.left.last.postag == \"DT\"\n  \n  def keepAbs(abs: AbstractedQuestion) = !detInTemplate(abs)\n    \n  def generateAbstracted(question: Seq[Lemmatized[ChunkedToken]]): Iterable[AbstractedQuestion] = \n    for ((i, j) <- intervals(question.size, maxSize); \n         arg = question.slice(i, j);\n         if keepArg(arg);\n    \t abs = new AbstractedQuestion(question, i, j);\n    \t if keepAbs(abs))\n    \t //if valuePattern(abs.value) && keepAbs(abs))\n      yield abs\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateIndexer.scala",
    "content": "package edu.knowitall.paraphrasing.template\nimport scala.io.Source\nimport scala.collection.JavaConversions._\nimport org.apache.solr.common.SolrDocument\nimport org.apache.solr.common.SolrInputDocument\nimport org.apache.solr.client.solrj.impl.ConcurrentUpdateSolrServer\nimport org.apache.solr.client.solrj.SolrServer\nimport org.slf4j.LoggerFactory\nimport org.apache.solr.client.solrj.impl.HttpSolrServer\nimport org.apache.solr.client.solrj.SolrQuery\nimport org.apache.solr.client.solrj.SolrQuery.SortClause\nimport scala.Option.option2Iterable\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.util.MathUtils\nimport edu.knowitall.search.qa.QaAction\nimport edu.knowitall.triplestore.SolrClient\nimport edu.knowitall.util.ResourceUtils\nimport org.apache.solr.common.params.GroupParams\nimport org.apache.solr.client.solrj.response.QueryResponse\n\ncase class ParaphraseTemplateClient(solrUrl: String,\n    maxHits: Int, scale: Boolean = ParaphraseTemplateClient.scale, \n    timeout: Int = ParaphraseTemplateClient.defaultTimeout,\n    stopTemplates: Set[String] = ParaphraseTemplateClient.stopTemplates) {\n  \n  def this() = this(ParaphraseTemplateClient.defaultUrl, ParaphraseTemplateClient.defaultMaxHits, ParaphraseTemplateClient.scale)\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n  val server = new HttpSolrServer(solrUrl)\n  server.setConnectionTimeout(timeout)\n  server.setSoTimeout(timeout)\n  server.setMaxRetries(1)\n  val searchField = \"template1_exact\"\n  \n  def paraphrases(s: String, argTypes: List[String] = List(\"anything\"), limit: Int = maxHits) = \n    queryParaphrases(s, argTypes, limit)\n  \n  private def responseToPairs(r: QueryResponse) = for {\n    value <- r.getGroupResponse.getValues\n    groupValue <- value.getValues\n    doc <- groupValue.getResult.toList\n    pair <- TemplatePair.fromDocument(doc)\n    if !(stopTemplates contains pair.template2)\n  } yield pair\n  \n  private def createQuery(s: String, argTypes: List[String], limit: Int = maxHits) = {\n    val typePred = { argTypes map { t =>\n      val esc = SolrClient.escape(t)\n      s\"\"\"typ_exact:\"${t}\"\"\"\"\n    } }.mkString(s\" OR \")\n    val qStr = s\"\"\"${searchField}:\"${s}\" AND ($typePred)\"\"\"\n    val query = new SolrQuery(SolrClient.fixQuery(qStr))\n    query.setRows(maxHits)\n    query.addSort(new SortClause(\"pmi\", SolrQuery.ORDER.desc))\n    query.set(GroupParams.GROUP, true)\n    query.set(GroupParams.GROUP_FIELD, \"template2_exact\")\n    query.setParam(\"shards.tolerant\", true)\n    query\n  }\n    \n  def queryParaphrases(s: String, argTypes: List[String] = List(\"anything\"), limit: Int = maxHits): List[TemplatePair] = {\n    val query = createQuery(s, argTypes, limit)\n    val resp = server.query(query)\n    val pairs = responseToPairs(resp).toList\n    pairs\n  } \n}\n\ncase object ParaphraseTemplateClient {\n  val conf = ConfigFactory.load()\n  val minPmi = conf.getDouble(\"paraphrase.template.minPmi\")\n  val maxPmi = conf.getDouble(\"paraphrase.template.maxPmi\")\n  val scale = conf.getBoolean(\"paraphrase.template.scale\")\n  val defaultUrl = conf.getString(\"paraphrase.template.url\")\n  val defaultMaxHits = conf.getInt(\"paraphrase.template.maxHits\")\n  val defaultTimeout = conf.getInt(\"paraphrase.template.timeout\")\n  val stopTemplatesPath = conf.getString(\"paraphrase.template.stopTemplatesPath\")\n  lazy val stopTemplates = ResourceUtils.resourceSource(stopTemplatesPath).getLines.toSet\n}\n\ncase class TemplatePair(template1: String, template2: String, typ: String, count1: Double, count2: Double, count12: Double, pmi: Double) extends QaAction\n\ncase object TemplatePair {\n    \n  def fromString(s: String): Option[TemplatePair] = {\n    s.split(\"\\t\", 9) match {\n      case Array(t1, t2, typ, count1, count2, count12, pmi) =>\n         Some(TemplatePair(t1, t2, typ, count1.toDouble, count2.toDouble, count12.toDouble, pmi.toDouble))\n      case _ => None\n    }\n  }\n  def fromDocument(doc: SolrDocument): Option[TemplatePair] = {\n    val t1obj: Any = doc.getFieldValue(\"template1\")\n    val t2obj: Any = doc.getFieldValue(\"template2\")\n    val typobj: Any = doc.getFieldValue(\"typ\")\n    val count1obj: Any = doc.getFieldValue(\"count1\")\n    val count2obj: Any = doc.getFieldValue(\"count2\")\n    val count12Obj: Any = doc.getFieldValue(\"count12\")\n    val pmiObj: Any = doc.getFieldValue(\"pmi\")\n    (t1obj, t2obj, typobj, count1obj, count2obj, count12Obj, pmiObj) match {\n      case (t1: String, t2: String, typ: String, count1: Float, count2: Float, count12: Float, pmi: Float) => Some(TemplatePair(t1, t2, typ, count1, count2, count12, pmi))\n      case _ => None\n    }\n  }\n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateParaphraseGenerator.scala",
    "content": "package edu.knowitall.paraphrasing.template\nimport edu.knowitall.collection.immutable.Interval\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.paraphrasing.ScoredParaphraseDerivation\nimport edu.knowitall.lm.KenLmServer\n\ncase class ArgQuestion(question: Seq[String], argInterval: Interval) {\n  def arg: String = question.slice(argInterval.start, argInterval.end).mkString(\" \")\n}\n\ncase class TemplateParaphraseDerivation(question: ArgQuestion, \n    paraphrase: ArgQuestion, templates: TemplatePair, score: Double = 0.0, pmi: Double = 0.0, lm: Double = 0.0) extends ScoredParaphraseDerivation {\n  val questionString = question.question.mkString(\" \")\n}\n\ntrait TemplateParaphraseGenerator {\n  def generate(question: Seq[String]): Iterable[TemplateParaphraseDerivation]\n}\n\nclass SolrParaphraseGenerator(url: String, maxHits: Int, maxArgLength: Int) extends TemplateParaphraseGenerator {\n  def this() = this(SolrParaphraseGenerator.defaultUrl, \n      SolrParaphraseGenerator.defaultMaxHits,\n      SolrParaphraseGenerator.defaultMaxArgLength)\n  val client = new ParaphraseTemplateClient()\n  def intervals(size: Int) =\n    for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= maxArgLength) yield Interval.open(i, j+1)\n  \n  def templates(q: ArgQuestion): List[TemplatePair] = {\n    val i = q.argInterval.start\n    val j = q.argInterval.end\n    val n = q.question.size\n    val left = q.question.slice(0, i).mkString(\" \")\n    val right = q.question.slice(j, n).mkString(\" \")\n    val query = left + \" $y \" + right\n    client.paraphrases(query, limit = maxHits)\n  }\n  \n  def abstractQuestion(q: Seq[String]): Iterable[ArgQuestion] = {\n    val n = q.size\n    for (i <- intervals(n)) yield ArgQuestion(q, i)\n  }\n  \n  def substitute(q: ArgQuestion, t: TemplatePair): ArgQuestion = {\n    val templ = t.template2\n    val templSeq = templ.split(\" \").toSeq\n    val arg = q.question.slice(q.argInterval.start, q.argInterval.end)\n    val i = templSeq.indexOf(\"$y\")\n    if (i >= 0) {\n      val left = templSeq.slice(0, i)\n      val right = templSeq.slice(i+1, templSeq.size)\n      val para = ArgQuestion(left ++ arg ++ right, Interval.open(i, i+arg.size))\n      para\n    } else {\n      throw new IllegalArgumentException(s\"Could not find var in: $templ\")\n    }\n    \n  }\n  \n  override def generate(question: Seq[String]): Iterable[TemplateParaphraseDerivation] = {\n    for (aq <- abstractQuestion(question); t <- templates(aq); para = substitute(aq, t)) \n      yield TemplateParaphraseDerivation(aq, para, t, score = 0.0, pmi = t.pmi, lm = Double.MinValue)\n      \n  }\n\n}\n\ncase object SolrParaphraseGenerator {\n  val conf = ConfigFactory.load()\n  val defaultUrl = conf.getString(\"paraphrase.template.url\")\n  val defaultMaxHits = conf.getInt(\"paraphrase.template.maxHits\")\n  val defaultMaxArgLength = conf.getInt(\"paraphrase.template.maxArgLength\")\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateParaphraser.scala",
    "content": "package edu.knowitall.paraphrasing.template\n\nimport edu.knowitall.paraphrasing.Paraphraser\nimport edu.knowitall.tool.postag.StanfordPostagger\nimport edu.knowitall.tool.tokenize.ClearTokenizer\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.paraphrasing.Paraphrase\nimport com.typesafe.config.ConfigFactory\n\ncase class TemplateParaphraser(scorer: ParaphraseScorer, generator: TemplateParaphraseGenerator) extends Paraphraser {\n  \n  def this() = this(TemplateParaphraser.defaultScorer, new SolrParaphraseGenerator())\n  \n  lazy val tagger = new StanfordPostagger()\n  lazy val tokenizer = new ClearTokenizer()\n  val logger = LoggerFactory.getLogger(this.getClass)\n  \n  def stemString(s: String): Seq[String] = {\n    val tokens = tokenizer(s)\n    val tagged = tagger.postagTokenized(tokens)\n    val lemmas = tagged.map(t => MorphaStemmer.lemmatizePostaggedToken(t).lemma.toLowerCase()) \n    lemmas\n  }\n  \n  override def paraphrase(s: String) = {\n    val stemmed = stemString(s)\n    val paraphrases = generator.generate(stemmed)\n    val scored = scorer.scoreAll(paraphrases).toList\n    val grouped = scored.groupBy(sp => sp.paraphrase.question).values\n    val maxed = grouped.map(g => g.maxBy(d => d.score)).toList\n    val sorted = maxed.sortBy(d => -d.score)\n    for (deriv <- sorted; target = deriv.paraphrase.question.mkString(\" \"))\n      yield Paraphrase(s, target, deriv)\n  }\n}\n\ncase object TemplateParaphraser {\n  \n  val conf = ConfigFactory.load()\n  val scoringModel = conf.getString(\"paraphrase.template.scoringModel\")\n  val defaultScorer = scoringModel match {\n    case \"pmi\" => new PmiParaphraseScorer()\n    case \"lm\" => new LmParaphraseScorer()\n    case \"pmiLm\" => new PmiLmParaphraseScorer()\n    case _ => throw new IllegalStateException(s\"Could not load default scoring model '$scoringModel'\")\n  }\n\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/CKY.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.collection.immutable.Interval\nimport scala.collection.mutable.{Map => MutableMap}\nimport edu.knowitall.util.MathUtils\n\nsealed trait Node {\n  def span: Interval\n  def category: Category\n}\n\ncase class CatSpan(category: Category, span: Interval)\n\ncase class Terminal(catspan: CatSpan,\n\t\t\t\t\t   rule: TerminalRule) extends Node {\n  override val span = catspan.span\n  override val category = catspan.category\n}\n\ncase class NonTerminal(catspan: CatSpan, left: CatSpan, right: CatSpan, \n    rule: Combinator) extends Node {\n  override val span = catspan.span\n  override val category = catspan.category\n}\n\nsealed trait Derivation {\n  def catspan: CatSpan\n  def category = catspan.category\n  def interval = catspan.span\n  def terminals: List[LexicalStep]\n  def combinators: List[Combinator]\n}\n\ncase class CombinatorStep(catspan: CatSpan, rule: Combinator, left: Derivation, right: Derivation) extends Derivation {\n  override def combinators = rule :: (left.combinators ++ right.combinators)\n  override def terminals = left.terminals ++ right.terminals\n}\n\ncase class LexicalStep(catspan: CatSpan, rule: TerminalRule) extends Derivation {\n  override def combinators = Nil\n  override def terminals = List(this)\n  override def toString = s\"$rule => $interval $category\"\n}\n\ncase class CKY(input: Sentence with Chunked with Lemmatized, size: Int, \n\t\t\t\t  terminalRules: IndexedSeq[TerminalRule],\n\t\t\t\t  combinators: IndexedSeq[Combinator]) {\n  \n  val cats = MutableMap.empty[Interval, Set[Category]]\n  val nodes = MutableMap.empty[CatSpan, Node]\n  \n  private def applyTerminalRules = for {\n    interval <- MathUtils.allIntervals(size)\n    rule <- terminalRules\n    category <- rule(interval, input)\n    catspan = CatSpan(category, interval)\n    terminal = Terminal(catspan, rule)\n  } yield {\n    cats += (interval -> (cats.getOrElse(interval, Set.empty) + category))\n    nodes += (catspan -> terminal)\n  }\n  \n  private def applyCombinators(length: Int) = for {\n    interval <- MathUtils.intervals(length, size)\n    (left, right) <- MathUtils.splits(interval)\n    lcat <- cats.getOrElse(left, Set.empty)\n    rcat <- cats.getOrElse(right, Set.empty)\n    combinator <- combinators\n    cat <- combinator(lcat, rcat)\n    node = NonTerminal(CatSpan(cat, interval), CatSpan(lcat, left), CatSpan(rcat, right), combinator)\n  } {\n    cats += (interval -> (cats.getOrElse(interval, Set.empty) + cat))\n    nodes += (CatSpan(cat, interval) -> node)\n  }\n  \n  def parse = {\n    applyTerminalRules\n    for (length <- 2 to size) applyCombinators(length)\n  }\n  \n  private val fullSpan = Interval.open(0, size)\n  \n  def rootCategories = cats.getOrElse(fullSpan, Set())\n  \n  def derivations(catspan: CatSpan): Iterable[Derivation] = nodes.get(catspan) match {\n    case None => Iterable.empty\n    case Some(node) => node match {\n      case Terminal(cs, rule) => Iterable(LexicalStep(catspan, rule))\n      case NonTerminal(cs, left, right, rule) => for {\n        leftd <- derivations(left)\n        rightd <- derivations(right)\n      } yield CombinatorStep(catspan, rule, leftd, rightd)\n    }\n  }\n  \n  def rootDerivations = for {\n    c <- cats.getOrElse(fullSpan, Set.empty)\n    cs = CatSpan(c, fullSpan)\n    d <- derivations(cs)\n  } yield d\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/Categories.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport edu.knowitall.execution.TLiteral\nimport edu.knowitall.execution.TVariable\nimport edu.knowitall.execution.ConjunctiveQuery\nimport edu.knowitall.execution.FieldIndex\nimport edu.knowitall.execution.TVal\nimport edu.knowitall.execution.UnquotedTLiteral\n\ntrait Category {\n  def categoryString: String\n}\n\ncase class Arg(value: TLiteral) extends Category {\n  override val categoryString = \"Arg\"\n}\n\ncase class Unary(freeVar: TVariable, query: ConjunctiveQuery, modFields: Set[FieldIndex] = Set.empty) extends Category {\n  \n  override val categoryString = \"Unary\"\n  \n  private def renameFieldIndex(prefix: String, index: FieldIndex) = {\n    val i = query.conjuncts.indexWhere(c => c.name == index.conjunctName)\n    assume(i >= 0, s\"field index $index not in query $query\")\n    index.copy(conjunctName = s\"${prefix}.$i\")\n  }\n  \n  def renameConjuncts(prefix: String): Unary = {\n    val newFields = modFields.map(renameFieldIndex(prefix, _))\n    val newQuery = query.renameConjuncts(prefix)\n    Unary(freeVar, newQuery, newFields)\n  }\n  \n  def intersect(that: Unary): Unary = {\n    val u1 = this.renameConjuncts(\"r\")\n    val u2 = that.renameConjuncts(\"s\")\n    val newVar = TVariable(u1.freeVar.name + u2.freeVar.name)\n    val oldVar1 = u1.freeVar\n    val oldVar2 = u2.freeVar\n    val query1 = u1.query.subs(oldVar1, newVar)\n    val query2 = u2.query.subs(oldVar2, newVar)\n    val newQuery = query1.combine(query2).subs(newVar, Unary.finalVar)\n    Unary(newVar, newQuery, u1.modFields ++ u2.modFields)\n  }\n}\ncase object Unary {\n  val finalVar = TVariable(\"x\")\n}\n\ncase class Binary(leftVar: TVariable, rightVar: TVariable, \n    query: ConjunctiveQuery, modFields: Set[FieldIndex] = Set.empty) extends Category {\n  \n  override val categoryString = \"Binary\"\n  \n  def leftApply(a: Arg): Unary = {\n    val newQuery = query.subs(leftVar, a.value)\n    Unary(rightVar, newQuery, modFields)\n  }\n  \n  def rightApply(a: Arg): Unary = {\n    val newQuery = query.subs(rightVar, a.value)\n    Unary(leftVar, newQuery, modFields)\n  }\n  \n}\n\ncase class Mod(value: String) extends Category {\n  \n  override val categoryString = \"Mod\"\n  \n  private def updateValue(v: TVal) = v match {\n    case l: TLiteral => l.update(s\"${l.value} $value\")\n    case _ => v\n  }\n  \n  private def modifyFields(is: List[FieldIndex], q: ConjunctiveQuery): ConjunctiveQuery = is match {\n    case Nil => q\n    case i :: rest => modifyFields(rest, i.updateQuery(q, updateValue))\n  } \n  \n  def modify(u: Unary): Option[Unary] = {\n    val newQuery = modifyFields(u.modFields.toList, u.query)\n    if (newQuery == u.query) {\n      None\n    } else {\n      Some(u.copy(query = newQuery))\n    }\n  }\n  \n  override def toString = s\"Mod($value)\"\n}\n    \nobject Identity extends Category {\n  override val categoryString = \"Identity\"\n  override def toString = \"Identity\"\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/CategoryPattern.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport edu.knowitall.execution.TVariable\nimport edu.knowitall.execution.ListConjunctiveQuery\nimport edu.knowitall.execution.UnquotedTLiteral\nimport edu.knowitall.execution.Search.rel\nimport edu.knowitall.execution.FieldIndex\n\ntrait CategoryPattern {\n  def apply(bindings: Map[TVariable, String]): Option[Category]\n}\n\nobject CategoryPattern {\n  def fromString(s: String) = s.trim().split(\"\\\\s+\", 2) match {\n    case Array(\"identity\") => IdentityPattern\n    case Array(\"unary\", pattern) => UnaryPattern(pattern)\n    case Array(\"binary\", pattern) => BinaryPattern(pattern)\n    case Array(\"argument\", pattern) => ArgumentPattern(pattern)\n    case Array(\"mod\", pattern) => ModPattern(pattern)\n    case _ => throw new IllegalArgumentException(s\"Invalid pattern string: $s\")\n  }\n}\n\ncase class UnaryPattern(pattern: String) extends CategoryPattern {\n  private val cqp = ConjunctiveQueryPattern(pattern)\n  assume(cqp.boundVars.size == 1, s\"UnaryPattern $pattern must have 1 bound variable\")\n  val freeVar = cqp.query.qVars(0)\n  override def apply(bindings: Map[TVariable, String]) = for {\n    query <- cqp(bindings)\n  } yield Unary(freeVar, query)\n}\n\ncase class BinaryPattern(pattern: String) extends CategoryPattern {\n  private val cqp = ConjunctiveQueryPattern(pattern)\n  assume(cqp.boundVars.size == 2, s\"BinaryPattern $pattern must have 2 bound variables\")\n  val leftVar = cqp.query.qVars(0)\n  val rightVar = cqp.query.qVars(1)\n  override def apply(bindings: Map[TVariable, String]) = for {\n    query <- cqp(bindings)\n    relFields = for {\n      c <- query.conjuncts\n      (field, value) <- c.values\n      if field == rel\n    } yield FieldIndex(c.name, field)\n  } yield Binary(leftVar, rightVar, query, relFields.toSet)\n}\n\ncase class ArgumentPattern(pattern: String) extends CategoryPattern {\n  private val sp = UnquotedTLiteral(pattern)\n  override def apply(bindings: Map[TVariable, String]) = {\n    val valBindings = bindings map { case (k, v) => (k, UnquotedTLiteral(v)) }\n    Some(Arg(sp.subs(valBindings)))\n  }\n}\n\ncase class ModPattern(pattern: String) extends CategoryPattern {\n  private val sp = UnquotedTLiteral(pattern)\n  override def apply(bindings: Map[TVariable, String]) = {\n    val valBindings = bindings map { case (k, v) => (k, UnquotedTLiteral(v)) }\n    Some(Mod(sp.subs(valBindings).toString))\n  }\n}\n\nobject IdentityPattern extends CategoryPattern {\n  override def apply(bindings: Map[TVariable, String]) = Some(Identity)\n}\n\ncase class ConjunctiveQueryPattern(pattern: String) {\n  \n  val query = ListConjunctiveQuery.fromString(pattern) match {\n    case Some(x) => x\n    case None => throw new IllegalArgumentException(s\"Invalid pattern: $pattern\")\n  }\n  \n  val boundVars = query.qVars\n    \n  val freeVars = query.conjuncts.flatMap(_.vars).toSet -- boundVars\n  \n  def apply(bindings: Map[TVariable, String]) = {\n    if (freeVars.subsetOf(bindings.keys.toSet)) {\n      val literals = bindings map { case (tvar, s) => (tvar, UnquotedTLiteral(s)) }\n      Some(query.subs(literals))\n    } else {\n      None\n    }\n  }\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/CgParser.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport com.typesafe.config.ConfigFactory\nimport java.io.FileInputStream\nimport java.io.File\nimport edu.knowitall.util.ResourceUtils\nimport edu.knowitall.util.NlpTools\nimport edu.knowitall.tool.chunk.Chunker\nimport edu.knowitall.tool.stem.Stemmer\nimport edu.knowitall.execution.ConjunctiveQuery\nimport edu.knowitall.search.qa.QaAction\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.execution.TLiteral\n\ncase class ParsedQuestion(question: Sentence with Chunked with Lemmatized,\n    query: ConjunctiveQuery, derivation: Derivation) extends QaAction {\n  \n  private def sliceString[A](seq: Traversable[A], i: Interval) = \n    seq.slice(i.start, i.end).mkString(\" \")\n  \n  def postags(i: Interval) = sliceString(question.postags, i)\n  \n}\n\ncase class CgParser(lexicon: IndexedSeq[LexicalRule] = CgParser.defaultLexicon, \n\t\t\t\t\tcombinators: IndexedSeq[Combinator] = CgParser.defaultCombinators,\n\t\t\t\t\tchunker: Chunker = NlpTools.dummyChunker,\n\t\t\t\t\tlemmatizer: Stemmer = NlpTools.stemmer,\n\t\t\t\t\tmaxConjuncts: Int = CgParser.defaultMaxConjuncts,\n\t\t\t\t\toutputFilter: ParsedQuestion => Boolean = CgParser.defaultOutputFilter) {\n \n  private def process(s: String) = NlpTools.process(s, chunker, lemmatizer)\n \n  private def getQuery(cat: Category) = cat match {\n    case Unary(freeVar, query, _) => Some(query)\n    case _ => None\n  }\n  \n  def parse(s: String) = {\n    val sent = process(s)\n    val n = sent.tokens.size\n    val cky = new CKY(sent, n, lexicon, combinators)\n    cky.parse\n    for {\n      derivation <- cky.rootDerivations\n      query <- derivation.category match {\n        case u: Unary => Some(u.query)\n        case _ => None\n      }\n      output = ParsedQuestion(sent, query, derivation)\n      if output.query.conjuncts.size <= maxConjuncts\n      if outputFilter(output)\n    } yield ParsedQuestion(sent, query, derivation)\n  }\n  \n  def apply(s: String) = parse(s)\n\n}\n\ncase object CgParser {\n  val conf = ConfigFactory.load()\n  val defaultCombinators = IndexedSeq(RightApply, LeftApply, UnaryIntersect,\n\t\t  \t\t\t\t\t\t\t  UnaryIdentity, ApplyMod)\n  lazy val lexiconIn = if (conf.hasPath(\"parsing.cg.lexiconPath\")) {\n    new FileInputStream(new File(conf.getString(\"parsing.cg.lexiconPath\")))\n  } else {\n    ResourceUtils.resource(conf.getString(\"parsing.cg.lexiconClasspath\"))\n  }\n  \n  lazy val ruleKeep = conf.getString(\"parsing.cg.lexicalRuleKeep\").r\n  lazy val ruleSkip = conf.getString(\"parsing.cg.lexicalRuleSkip\").r\n  \n  lazy val defaultLexicon = LexicalRule.fromInputStream(lexiconIn).filter {\n    rule => ruleKeep.findPrefixMatchOf(rule.name).isDefined &&\n    \t   !ruleSkip.findPrefixMatchOf(rule.name).isDefined\n  }\n  \n  lazy val defaultMaxConjuncts = conf.getInt(\"parsing.cg.maxConjuncts\")\n  \n  lazy val defaultOutputFilter = {\n    val relIn = ResourceUtils.resource(\"/edu/knowitall/parsing/cg/relFilters.txt\")\n    val rels = ParserRelFilter.fromInputStream(relIn)\n    val argIn = ResourceUtils.resource(\"/edu/knowitall/parsing/cg/argFilters.txt\")\n    val args = ParserArgFilter.fromInputStream(argIn)\n    (rels ++ args).reduce((a, b) => (x => a(x) && b(x)))\n  }\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/Combinators.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport edu.knowitall.execution.ListConjunctiveQuery\nimport edu.knowitall.execution.UnquotedTLiteral\nimport edu.knowitall.execution.TVariable\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.tool.typer.Type\n\ntrait Combinator {\n  def apply(left: Category, right: Category): Option[Category]\n}\n\ntrait TerminalRule {\n  def apply(interval: Interval, sent: Sentence with Chunked with Lemmatized): Option[Category]\n}\n\nobject RightApply extends Combinator {\n  override def apply(left: Category, right: Category) = (left, right) match {\n    case (b: Binary, a: Arg) => Some(b.rightApply(a))\n    case _ => None \n  }\n  override def toString = \"RightApply\"\n}\n\nobject LeftApply extends Combinator {\n  override def apply(left: Category, right: Category) = (left, right) match {\n    case (a: Arg, b: Binary) => Some(b.leftApply(a))\n    case _ => None \n  }\n  override def toString = \"LeftApply\"\n}\n\nobject UnaryIntersect extends Combinator {\n  override def apply(left: Category, right: Category) = (left, right) match {\n    case (u1: Unary, u2: Unary) => {\n      Some(u1.intersect(u2))\n    }\n    case _ => None\n  }\n  override def toString = \"UnaryIntersect\"\n}\n\nobject UnaryIdentity extends Combinator {\n  override def apply(left: Category, right: Category) = (left, right) match {\n    case (Identity, u: Unary) => Some(u)\n    case (u: Unary, Identity) => Some(u)\n    case _ => None\n  }\n  override def toString = \"UnaryIdentity\"\n}\n\nobject ApplyMod extends Combinator {\n  override def apply(left: Category, right: Category) = (left, right) match {\n    case (m: Mod, u: Unary) => m.modify(u)\n    case _ => None\n  }\n  override def toString = \"Mod\"\n} "
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/LexicalRule.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.util.NlpUtils\nimport java.io.InputStream\nimport scala.io.Source\nimport edu.knowitall.util.ResourceUtils\n\ncase class LexicalRule(syntax: PatternExtractor, semantics: CategoryPattern) extends TerminalRule {\n  val name = syntax.patternName\n  override def apply(interval: Interval, sent: Sentence with Chunked with Lemmatized) = {\n    val span = NlpUtils.split(sent, interval.start, interval.end)\n    if (syntax.matches(span)) {\n      semantics(syntax(span))\n    } else {\n      None\n    }\n  }\n  override def toString = name\n}\n\nobject LexicalRule {\n  lazy val preprocessor = LexiconPreprocessor() \n  def fromString(s: String, preprocessor: LexiconPreprocessor = preprocessor) = {\n    s.split(\":=\", 2) match {\n      case Array(synStr, semStr) => {\n        val syntax = PatternExtractor.fromString(preprocessor(synStr.trim))\n        val semantics = CategoryPattern.fromString(semStr.trim)\n        LexicalRule(syntax, semantics)\n      }\n      case _ => throw new IllegalArgumentException(s\"Invalid lexical rule string: $s\")\n    }\n  }\n  def fromStrings(strings: IndexedSeq[String]) = for {\n    line <- strings\n    if !line.trim.startsWith(\"#\") && line.trim != \"\"\n  } yield LexicalRule.fromString(line.trim())\n  def fromInputStream(is: InputStream) = fromStrings(Source.fromInputStream(is).getLines.toIndexedSeq)\n  def fromFile(path: String) = fromStrings(Source.fromFile(path).getLines.toIndexedSeq)\n  def fromResource(path: String) = fromInputStream(ResourceUtils.resource(path))\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/LexiconPreprocessor.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport com.typesafe.config.ConfigFactory\nimport scala.io.Source\nimport edu.knowitall.util.ResourceUtils\nimport java.util.regex.Matcher\n\ncase class LexiconPreprocessor(macros: Map[String, String] = LexiconPreprocessor.defaultMacros) {\n  val mlist = macros.toList\n  def apply(s: String) = applyMacros(mlist, s)\n  private def applyMacros(nr: List[(String, String)], s: String): String = nr match {\n    case Nil => s\n    case (name, replacement) :: rest => applyMacros(rest, applyMacro(name, replacement, s))\n  }\n  private def applyMacro(name: String, replacement: String, s: String) = {\n    s.replaceAll(s\"@${name}\\\\b\", Matcher.quoteReplacement(replacement))\n  }\n  def update(line: String) = line.split(\" \", 2) match {\n    case Array(name, value) => copy(macros = macros.updated(name, \"(?:\" + this(value) + \")\"))\n    case _ => throw new IllegalArgumentException(s\"Invalid macro instruction: $line\")\n  }\n}\n\nobject LexiconPreprocessor {\n  val conf = ConfigFactory.load()\n  \n  private def isInstr(line: String) = {\n    val linet = line.trim\n    linet != \"\" && !linet.startsWith(\"#\") && !linet.startsWith(\"//\")\n  }\n  \n  def fromLines(lines: List[String], prep: LexiconPreprocessor = LexiconPreprocessor(Map.empty)): LexiconPreprocessor = lines match {\n    case Nil => prep\n    case line :: rest if isInstr(line) => fromLines(rest, prep.update(line)) \n    case line :: rest => fromLines(rest, prep)\n  }\n  \n  lazy val defaultPreprocessor = if (conf.hasPath(\"parsing.cg.macroPath\")) {\n    val lines = Source.fromFile(conf.getString(\"parsing.cg.macroPath\"), \"UTF-8\").getLines\n    fromLines(lines.toList)\n  } else if (conf.hasPath(\"parsing.cg.macroClasspath\")) {\n    val p = conf.getString(\"parsing.cg.macroClasspath\")\n    val lines = Source.fromInputStream(ResourceUtils.resource(p), \"UTF-8\").getLines\n    fromLines(lines.toList)\n  } else {\n    LexiconPreprocessor(Map.empty[String, String])\n  }\n  lazy val defaultMacros = defaultPreprocessor.macros\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/ParserFieldFilter.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport edu.knowitall.execution.Search\nimport edu.knowitall.execution.TLiteral\nimport java.io.InputStream\nimport scala.io.Source\n\nclass ParserFieldFilter(field: Search.Field, pattern: String) extends Function[ParsedQuestion, Boolean] {\n  private val pat = pattern.r \n  override def apply(pq: ParsedQuestion): Boolean = {\n    val values = for {\n      c <- pq.query.conjuncts\n      (f, v) <- c.values collect { case (a, b: TLiteral) => (a, b.value) }\n      if f == field\n    } yield v\n    val hasMatch = values.exists(pat.findFirstIn(_).isDefined)\n    !hasMatch\n  }\n}\n\ncase class ParserRelFilter(pattern: String) extends ParserFieldFilter(Search.rel, pattern)\ncase object ParserRelFilter {\n  def fromInputStream(in: InputStream) = ParserFieldFilter.fromInputStream(Search.rel, in)\n}\n\ncase class ParserArgFilter(pattern: String) extends Function[ParsedQuestion, Boolean] {\n  val p1 = new ParserFieldFilter(Search.arg1, pattern)\n  val p2 = new ParserFieldFilter(Search.arg2, pattern)\n  override def apply(pq: ParsedQuestion): Boolean = p1(pq) && p2(pq)\n}\ncase object ParserArgFilter {\n  def fromInputStream(in: InputStream) = {\n    val lines = Source.fromInputStream(in, \"UTF-8\").getLines.toList.map(ParserFieldFilter.removeComment).filter(_ != \"\")\n    lines.map(ParserArgFilter(_))\n  }\n}\n\nobject ParserFieldFilter {\n  def removeComment(line: String) = line.replaceAll(\"#.*\", \"\").replaceAll(\"//.*\", \"\").trim \n  def fromLines(field: Search.Field, lines: Iterable[String]) = for {\n    line <- lines\n    replaced = removeComment(line)\n    if replaced != \"\"\n  } yield new ParserFieldFilter(field, replaced)\n  def fromInputStream(field: Search.Field, in: InputStream) = fromLines(field, Source.fromInputStream(in, \"UTF-8\").getLines.toIterable)\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/PatternExtractor.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport edu.knowitall.taggers.tag.PatternTagger\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.execution.TVariable\nimport edu.knowitall.taggers.NamedGroupType\nimport edu.knowitall.tool.typer.Type\nimport scala.util.Try\nimport edu.knowitall.util.NlpTools\n\ncase class PatternExtractor(patternName: String, pattern: SentencePattern) {\n  def matches(s: Sentence with Chunked with Lemmatized) = pattern.matches(s)\n  def extract(s: Sentence with Chunked with Lemmatized): Map[TVariable, String] = {\n    pattern.groups(s) map {\n      case (name, value) => (TVariable(name) -> value) \n    }\n  }\n  def apply(s: Sentence with Chunked with Lemmatized) = extract(s)\n}\n\ncase object PatternExtractor {\n  private val defPattern = \"^([A-Za-z]+[a-z0-9]*)\\\\s*(.*)$\".r\n  def fromString(s: String) = s.trim match {\n    case defPattern(name, pattern) => PatternExtractor(name, SentencePattern(\"^\"+pattern+\"$\"))\n    case _ => throw new IllegalArgumentException(\"Invalid definition: $s\")\n  }\n  def fromLines(lines: Iterable[String]) = lines map fromString \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/parsing/cg/SentencePattern.scala",
    "content": "package edu.knowitall.parsing.cg\n\nimport edu.knowitall.taggers.pattern.PatternBuilder\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.taggers.pattern.TypedToken\nimport edu.washington.cs.knowitall.regex.Expression.NamedGroup\nimport edu.knowitall.tool.tokenize.Tokenizer\n\ncase class SentencePattern(patternString: String) {\n  private val pattern = PatternBuilder.compile(patternString)\n  private def buildSeq(s: Sentence with Chunked with Lemmatized) = \n    s.lemmatizedTokens.zipWithIndex map { \n      case (t, i) => TypedToken(t, i, Set.empty) \n    }\n  def matches(s: Sentence with Chunked with Lemmatized) = pattern.matches(buildSeq(s))\n  def groups(s: Sentence with Chunked with Lemmatized) = {\n    val seq = buildSeq(s)\n    val result = pattern.find(seq) match {\n      case None => Map.empty\n      case Some(matchObj) => for {\n        i <- 0 until matchObj.groups.size\n        group = matchObj.groups(i)\n        tokens = s.lemmatizedTokens.slice(group.interval.start, group.interval.end).map(_.token)\n        if !tokens.isEmpty\n        text = Tokenizer.originalText(tokens, tokens.head.offsets.start)\n        name <- group.expr match {\n          case namedGroup: NamedGroup[_] => Some(namedGroup.name)\n          case _ => None\n        }\n      } yield (name, text)\n    }\n    result.toMap\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/relsyn/IsaRelSynClient.scala",
    "content": "package edu.knowitall.relsyn\n\nimport edu.knowitall.util.ResourceUtils\nimport edu.knowitall.execution.TConjunct\n\nobject IsaRelSynClient extends RelSynClient {\n  lazy val client = ListRelSynClient.fromInputStream(ResourceUtils.resource(\"/edu/knowitall/search/qa/isa.txt\"))\n  override def relSyns(c: TConjunct) = client.relSyns(c)\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/relsyn/ListRelSynClient.scala",
    "content": "package edu.knowitall.relsyn\n\nimport scala.io.Source\nimport java.io.InputStream\nimport edu.knowitall.execution.TConjunct\nimport edu.knowitall.execution.Search\nimport edu.knowitall.execution.UnquotedTLiteral\nimport edu.knowitall.execution.QuotedTLiteral\n\ncase class ListRelSynClient(rules: List[RelSynRule]) extends RelSynClient {\n  private def rulesFor(rel: String) = rules.filter(_.rel1 == rel.toLowerCase)\n  override def relSyns(c: TConjunct) = { \n    c.values.get(Search.rel) match {\n      case Some(UnquotedTLiteral(l)) => rulesFor(l)\n      case Some(QuotedTLiteral(l)) => rulesFor(l)\n      case _ => List.empty\n    } \n  }\n}\n\ncase object ListRelSynClient {\n  def fromInputStream(is: InputStream) = ListRelSynClient(Source.fromInputStream(is).getLines.map(RelSynRule.deserialize).toList)\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/relsyn/RelSynClient.scala",
    "content": "package edu.knowitall.relsyn\n\nimport edu.knowitall.execution.TConjunct\n\ntrait RelSynClient {\n  def relSyns(c: TConjunct): List[RelSynRule]\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/relsyn/RelSynRule.scala",
    "content": "package edu.knowitall.relsyn\n\nimport edu.knowitall.execution.TConjunct\nimport edu.knowitall.execution.Search\nimport edu.knowitall.execution.TLiteral\nimport edu.knowitall.execution.QuotedTLiteral\nimport edu.knowitall.search.qa.QaAction\nimport edu.knowitall.execution.UnquotedTLiteral\n\ncase class RelSynRule(rel1: String, rel2: String, inverted: Boolean, \n    count1: Double, count2: Double, jointCount: Double, pmi: Double) \n    extends QaAction {\n  \n  private def swapArgs(c: TConjunct) = for {\n    a1 <- c.values.get(Search.arg1)\n    a2 <- c.values.get(Search.arg2)\n    newvals = c.values ++ List((Search.arg1 -> a2), (Search.arg2 -> a1))\n  } yield c.copy(values = newvals)\n  \n  private def adjustSwap(c: TConjunct) = if (inverted) swapArgs(c) else Some(c)\n  \n  private def replaceRel(c: TConjunct) = {\n    val newr = UnquotedTLiteral(rel2)\n    Some(c.copy(values = c.values + (Search.rel -> newr)))\n  }\n  \n  private def relValue(c: TConjunct) = for {\n    value <- c.values.get(Search.rel)\n    svalue <- value match {\n      case l: TLiteral => Some(l.value)\n      case _ => None\n    }\n  } yield svalue\n  \n  def apply(c: TConjunct) = for {\n    svalue <- relValue(c)\n    withNewRel <- replaceRel(c)\n    newc <- adjustSwap(withNewRel)\n  } yield newc\n  \n  def serialize = List(rel1, rel2, inverted, count1, count2, jointCount, pmi).mkString(\"\\t\")\n  \n}\n\ncase object RelSynRule {\n  def deserialize(line: String) = line.trim.split(\"\\t\").toList match {\n    case rel1 :: rel2 :: inverteds :: count1s :: count2s :: jointCounts :: pmis :: Nil =>\n      RelSynRule(rel1, rel2, inverteds.toBoolean, count1s.toDouble,\n        count2s.toDouble, jointCounts.toDouble, pmis.toDouble)\n    case _ => throw new IllegalArgumentException(s\"Invalid RelSynRule: $line\")\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/relsyn/SolrRelSynClient.scala",
    "content": "package edu.knowitall.relsyn\n\nimport com.typesafe.config.ConfigFactory\nimport org.apache.solr.client.solrj.impl.HttpSolrServer\nimport org.apache.solr.common.SolrDocument\nimport org.apache.solr.client.solrj.SolrQuery\nimport scala.collection.JavaConversions._\nimport org.apache.solr.client.solrj.SolrQuery.SortClause\nimport edu.knowitall.util.MathUtils\nimport edu.knowitall.execution.TConjunct\nimport edu.knowitall.execution.Search\nimport edu.knowitall.execution.TLiteral\nimport edu.knowitall.execution.UnquotedTLiteral\nimport edu.knowitall.execution.QuotedTLiteral\nimport edu.knowitall.execution.ConjunctiveQuery\nimport edu.knowitall.tool.tokenize.ClearTokenizer\nimport edu.knowitall.tool.postag.StanfordPostagger\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.tool.stem.Stemmer\nimport edu.knowitall.tool.tokenize.Tokenizer\nimport edu.knowitall.tool.postag.Postagger\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.util.NlpTools\nimport com.twitter.util.LruMap\nimport scala.collection.mutable.SynchronizedMap\n\ncase class SolrRelSynClient(url: String = SolrRelSynClient.defaultUrl, \n    \t\t\t    \t\tstemmer: Stemmer = NlpTools.stemmer,\n    \t\t\t\t    \ttokenizer: Tokenizer = NlpTools.tokenizer,\n    \t\t\t\t\t    tagger: Postagger = NlpTools.tagger,\n    \t\t\t\t\t    maxHits: Int = SolrRelSynClient.defaultMaxHits,\n    \t\t\t\t\t    scale: Boolean = SolrRelSynClient.defaultScale,\n    \t\t\t\t\t    cacheSize: Int = SolrRelSynClient.defaultCacheSize,\n    \t\t\t\t\t    timeout: Int = SolrRelSynClient.defaultTimeout) extends RelSynClient {\n  \n  private val client = new HttpSolrServer(url)\n  client.setConnectionTimeout(timeout)\n  client.setSoTimeout(timeout)\n  client.setMaxRetries(1)\n  val logger = LoggerFactory.getLogger(this.getClass)\n  \n  private val cache = new LruMap[(String, Int), List[RelSynRule]](cacheSize) with SynchronizedMap[(String, Int), List[RelSynRule]]\n\n  private def getValue(n: String, d: SolrDocument): Option[Any] = {\n    val value = d.getFieldValue(n)\n    if (value == null) None else Some(value)\n  }\n  \n  private def getString(n: String, d: SolrDocument) = for {\n    v <- getValue(n, d)\n    s <- v match {\n      case s: String => Some(s)\n      case _ => None\n    }\n  } yield s\n  \n  private def getDouble(n: String, d: SolrDocument) = for {\n    v <- getValue(n, d)\n    d <- v match {\n      case d: Double => Some(d)\n      case f: Float => Some(f.toDouble)\n      case _ => None\n    }\n  } yield d\n  \n  private def getBoolean(n: String, d: SolrDocument) = for {\n    v <- getValue(n, d)\n    b <- v match {\n      case b: Boolean => Some(b)\n      case _ => None\n    }\n  } yield b\n  \n  private def fromDoc(d: SolrDocument) = for {\n    rel1 <- getString(\"rel1\", d)\n    rel2 <- getString(\"rel2\", d)\n    inverted <- getBoolean(\"inverted\", d)\n    count1 <- getDouble(\"marg_count1\", d)\n    count2 <- getDouble(\"marg_count2\", d)\n    joint <- getDouble(\"joint_count\", d)\n    pmi <- getDouble(\"pmi\", d)\n  } yield RelSynRule(rel1, rel2, inverted, count1, count2, joint, pmi)\n  \n  private def stemString(s: String) = NlpTools.normalize(s)\n  \n  private def fetchRelSyns(s: String, limit: Int = maxHits) = {\n    val stems = stemString(s)\n    val query = new SolrQuery(s\"\"\"${SolrRelSynClient.searchField}:\"${stems}\"\"\"\")\n    logger.debug(s\"Getting relSyns for ${stems}\")\n    query.setRows(maxHits)\n    query.addSort(new SortClause(\"pmi\", SolrQuery.ORDER.desc))\n    query.setParam(\"shards.tolerant\", true)\n    val resp = client.query(query)\n    val pairs = resp.getResults().toList.flatMap(fromDoc)\n    pairs.map(pair => pair.copy(pmi = scalePmi(pair.pmi)))\n  }\n  \n  private def relSyns(s: String, limit: Int = maxHits) = cache.get((s, limit)) match {\n    case Some(x) => x\n    case None => {\n      val results = fetchRelSyns(s, limit)\n      cache.put((s, limit), results)\n      results\n    }\n  }\n  \n  override def relSyns(c: TConjunct): List[RelSynRule] = c.values.get(Search.rel) match {\n    case Some(UnquotedTLiteral(l)) => relSyns(l)\n    case Some(QuotedTLiteral(l)) => relSyns(l)\n    case _ => Nil\n  }\n    \n  private def scalePmi(x: Double): Double = \n    if (scale) MathUtils.clipScale(x, SolrRelSynClient.minPmi, SolrRelSynClient.maxPmi)\n    else x\n  \n}\n\ncase object SolrRelSynClient {\n  val conf = ConfigFactory.load()\n  val defaultUrl = conf.getString(\"relsyn.url\")\n  val defaultMaxHits = conf.getInt(\"relsyn.maxHits\")\n  val defaultScale = conf.getBoolean(\"relsyn.scale\")\n  val defaultCacheSize = conf.getInt(\"relsyn.cacheSize\")\n  val defaultTimeout = conf.getInt(\"relsyn.timeout\")\n  val minPmi = conf.getDouble(\"relsyn.minPmi\")\n  val maxPmi = conf.getDouble(\"relsyn.maxPmi\")\n  val searchField = \"rel1_exact\"\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/Beam.scala",
    "content": "package edu.knowitall.search\n\ntrait Beam[State, Action] {\n  def nodes: Iterable[Node[State, Action]]\n  def splitAt(k: Int): (Iterable[Node[State, Action]], Iterable[Node[State, Action]])\n  def setNodes(nodes: Iterable[Node[State, Action]]): Unit\n  def setNodes(nodes: Node[State, Action]*): Unit = setNodes(nodes)\n  def size: Int\n  def isEmpty = size == 0\n}\n\nobject Beam {\n  def distinctByState[State, Action](nodes: Iterable[Node[State, Action]]) = \n    nodes.groupBy(_.state) map {\n      case (state, group) => group.minBy(_.pathCost)\n    }\n}\n\nclass SingleBeam[State, Action](beamSize: Int) extends Beam[State, Action] {\n  def this(beamSize: Int, nodes: Iterable[Node[State, Action]]) = {\n    this(beamSize)\n    setNodes(nodes)\n  }\n  private var beam = List.empty[Node[State, Action]]\n  override def nodes = beam\n  override def splitAt(k: Int) = beam.splitAt(k)\n  override def setNodes(nodes: Iterable[Node[State, Action]]) = {\n    beam = Beam.distinctByState(nodes).toList.sortBy(_.pathCost).take(beamSize)\n  }\n  override def size = beam.size\n}\n\nclass TypedBeams[State, Action, T](f: Node[State, Action] => T, beamSize: Int) extends Beam[State, Action] {\n  private var beams = Map.empty[T, SingleBeam[State, Action]]\n  override def nodes = beams.values.flatMap(_.nodes).toList.sortBy(_.pathCost)\n  override def splitAt(k: Int) = {\n   val listOfNodes = beams.values.map(_.nodes).toList\n   val orderedNodes = transpose(listOfNodes).flatten\n   orderedNodes.splitAt(k)\n  }\n  override def setNodes(nodes: Iterable[Node[State, Action]]) = {\n    val distinct = Beam.distinctByState(nodes)\n    val grouped = distinct.groupBy(f)\n    beams = for ((t, typed) <- grouped; beam = new SingleBeam(beamSize, typed)) yield (t -> beam)\n  }\n  override def size = beams.values.map(_.size).sum\n  \n  private def transpose[T](xss: List[List[T]]): List[List[T]] = xss.filter(!_.isEmpty) match {    \n    case Nil => Nil\n    case ys: List[List[T]] => ys.map{ _.head }::transpose(ys.map{ _.tail })\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/BeamSearch.scala",
    "content": "package edu.knowitall.search\n\nimport scala.collection.mutable.{Set => MutableSet}\nimport scala.collection.mutable.{Map => MutableMap}\nimport org.slf4j.LoggerFactory\nimport com.typesafe.config.ConfigFactory\n\nclass BeamSearch[State, Action](\n    override val problem: SearchProblem[State, Action],\n    beam: Beam[State, Action],\n    goalSize: Int = BeamSearch.defaultGoalSize,\n    maxIters: Int = BeamSearch.defaultMaxIters,\n    expandPerIter: Int = BeamSearch.defaultExpandPerIter) \n    extends SearchAlgorithm[State, Action] {\n  \n  assert(goalSize >= 1)\n  \n  override val logger = LoggerFactory.getLogger(this.getClass)\n  \n  override def continueSearch = (goals.size < goalSize) && (!beam.isEmpty) && (iterNum < maxIters)\n  \n  override def searchIter = {\n    val initialSize = beam.size \n        \n    logger.debug(\"Expanding frontier\")\n    val (toExpand, toKeep) = beam.splitAt(expandPerIter)\n    \n    toExpand foreach { n => logger.debug(s\"Chose to expand: ${n.pathCost} ${n.state}\") }\n    \n    val newNodes = toExpand.par.flatMap(expand).toList\n    logger.debug(s\"Expanded to ${newNodes.size} new nodes\")\n      \n    logger.debug(\"Adding goal nodes\")\n    newNodes.filter(isGoal).foreach(addGoalNode)\n      \n    logger.debug(\"Updating new frontier\")\n    beam.setNodes(newNodes.filter(n => !isGoal(n) && !haveExpanded(n)) ++ toKeep)\n      \n    val numGoals = newNodes.count(isGoal(_))\n    logger.debug(s\"Done with search iteration $iterNum\")\n    logger.debug(s\"Initial frontier size = $initialSize\")\n    logger.debug(s\"Final frontier size = ${beam.size}\")\n    logger.debug(s\"Expanded to ${newNodes.size} new nodes\")\n    logger.debug(s\"Found $numGoals new goal nodes\")\n    \n  }\n  \n  override def initialize = beam.setNodes(rootNode)\n\n}\n\nobject BeamSearch {\n  val conf = ConfigFactory.load()\n  val defaultMaxIters = conf.getInt(\"search.maxIters\")\n  val defaultGoalSize = conf.getInt(\"search.goalSize\")\n  val defaultExpandPerIter = conf.getInt(\"search.expandPerIter\")\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/BestFirstSearch.scala",
    "content": "package edu.knowitall.search\n\nimport scala.collection.mutable.{Set => MutableSet}\nimport scala.collection.mutable.{Map => MutableMap}\nimport com.google.common.collect.MinMaxPriorityQueue\nimport scala.collection.JavaConversions._\nimport org.slf4j.LoggerFactory\n\nclass BestFirstSearch[State, Action](override val problem: SearchProblem[State, Action], beamSize: Int, goalSize: Int) extends SearchAlgorithm[State, Action] {\n  \n  override val logger = LoggerFactory.getLogger(this.getClass)\n  \n  private val beam = MinMaxPriorityQueue.maximumSize(beamSize).create[Node[State, Action]]()\n  \n  override def continueSearch = (beam.size > 0) && (goals.size < goalSize)\n  \n  override def initialize = beam.add(rootNode)\n  \n  override def searchIter = {\n\n    val node = beam.pollFirst\n    logger.warn(s\"Expanding ${node.state}\")\n    val successors = expand(node).toList\n      \n    val (newGoals, newNodes) = successors.partition(isGoal)\n    newGoals.foreach(addGoalNode)\n    beam.addAll(newNodes)\n\n  }\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/SearchAlgorithm.scala",
    "content": "package edu.knowitall.search\n\nimport org.slf4j.LoggerFactory\nimport scala.collection.mutable.{Map => MutableMap}\nimport scala.collection.mutable.{Set => MutableSet}\nimport edu.knowitall.util.TimingUtils\nimport com.typesafe.config.ConfigFactory\n\ncase class Node[State, Action](\n    state: State, \n    parent: Option[Edge[State, Action]],\n    pathCost: Double,\n    creationTime: Long) extends Comparable[Node[State, Action]] {\n  \n  def this(state: State, parent: Option[Edge[State, Action]], pathCost: Double) = \n    this(state, parent, pathCost, System.currentTimeMillis) \n  \n  def path(rest: List[(State, Action, State)] = Nil): List[(State, Action, State)] = parent match {\n    case None => rest\n    case Some(e) => e.node.path((e.node.state, e.action, state) :: rest)\n  }\n  \n  def compareTo(that: Node[State, Action]) = this.pathCost.compareTo(that.pathCost)\n  \n}\n\ncase class Edge[State, Action](action: Action, node: Node[State, Action])\n\nabstract class SearchAlgorithm[State, Action] {\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  def problem: SearchProblem[State, Action]\n  \n  def rootNode: Node[State, Action] = new Node(problem.initialState, None, 0.0)\n  \n  def isGoal(n: Node[State, Action]) = problem.isGoal(n.state)\n  \n  private var iter = 0\n  \n  protected def iterNum = iter\n  \n  protected val goals = MutableMap.empty[State, Node[State, Action]]\n  \n  protected def addGoalNode(node: Node[State, Action]) = {\n    assert(isGoal(node))\n    val state = node.state\n    val otherNode = goals.getOrElse(state, node)\n    val bestNode = List(node, otherNode).minBy(_.pathCost)\n    goals.put(state, bestNode)\n  }\n  \n  protected val expanded = MutableSet.empty[State]\n  \n  protected def markExpanded(n: Node[State, Action]) = expanded.add(n.state)\n  \n  protected def haveExpanded(n: Node[State, Action]) = expanded.contains(n.state)\n  \n  def expand(node: Node[State, Action]) = {\n    for {\n      (action, nextState) <- problem.successors(node.state)\n      cost = node.pathCost + problem.cost(node.state, action, nextState)\n      edge = Edge(action, node)\n    } yield {\n      markExpanded(node)\n      new Node(nextState, Some(edge), cost)\n    }\n  }\n  \n  def searchIter: Unit\n  \n  def continueSearch: Boolean\n  \n  def initialize(): Unit\n  \n  private var timedOut = false\n  \n  private var t0 = System.currentTimeMillis\n  \n  def startTime = t0\n  \n  private def runSearch = {\n    initialize()\n    do {\n      searchIter\n      iter += 1\n    } while (continueSearch && !timedOut)    \n  }\n  \n  def search = {\n    t0 = System.currentTimeMillis\n    val time = SearchAlgorithm.defaultMaxSearchTimeSec * 1000\n    TimingUtils.runWithTimeout(time) { runSearch }\n    timedOut = true\n    goals.values.toList.distinct.sortBy(_.pathCost)\n  }\n}\n\nobject SearchAlgorithm {\n  val conf = ConfigFactory.load()\n  val defaultMaxSearchTimeSec = conf.getLong(\"search.maxSearchTimeSec\") \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/SearchProblem.scala",
    "content": "package edu.knowitall.search\n\ntrait SearchProblem[State, Action] {\n  def initialState: State\n  def successors(s: State): Iterable[(Action, State)]\n  def isGoal(s: State): Boolean\n  def cost(from: State, action: Action, to: State): Double\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/Transition.scala",
    "content": "package edu.knowitall.search\n\ntrait Transition[State, Action] extends Function[State, Iterable[(Action, State)]] {\n  def +(other: Transition[State, Action]) = Transition.union(this, other)\n}\n\nobject Transition {\n  def union[State, Action](t1: Transition[State, Action],\n      t2: Transition[State, Action]) = new Transition[State, Action] {\n    override def apply(s: State) = t1(s) ++ t2(s)\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/AbstractArgTransition.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.tool.tokenize.Tokenizer\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.tool.tokenize.ClearTokenizer\nimport edu.knowitall.search.Transition\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.tool.stem.Stemmer\nimport edu.knowitall.tool.postag.Postagger\nimport edu.knowitall.tool.postag.StanfordPostagger\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.util.NlpTools\nimport edu.knowitall.triplestore.IsaClient\nimport java.io.StringWriter\nimport java.io.PrintWriter\nimport org.slf4j.LoggerFactory\n\nclass AbstractArgTransition(\n    tokenizer: Tokenizer = NlpTools.tokenizer,\n    stemmer: Stemmer = NlpTools.stemmer,\n    tagger: Postagger = NlpTools.tagger,\n    isaClient: IsaClient = AbstractArgTransition.defaultIsaClient,\n    maxArgLength: Int = AbstractArgTransition.defaultMaxArgLength, \n    useTypes: Boolean = AbstractArgTransition.defaultUseTypes,\n    multipleParaphrases: Boolean = AbstractArgTransition.multipleParaphrases)\n    extends Transition[QaState, QaAction] {\n  \n  private final val action = AbstractArgAction()\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n  \n  override def apply(s: QaState) = s match {\n    case s: QuestionState if s.question.trim() != \"\" => try {\n      abstractArgs(s)\n    } catch {\n      case e: Throwable => {\n    \tval sw = new StringWriter()\n        val pw = new PrintWriter(sw)\n        e.printStackTrace(pw)\n        logger.warn(s\"Could not abstract args: $s, got ${sw.toString}\")\n        List.empty\n      }\n    }\n    case _ => Nil\n  }\n  \n  private def intervals(size: Int) =\n    for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= maxArgLength) \n      yield Interval.open(i, j+1)\n      \n  private def stemString(s: String): Seq[String] = {\n    val tokens = tokenizer(s)\n    val tagged = tagger.postagTokenized(tokens)\n    tagged.map {\n      t => MorphaStemmer.lemmatizePostaggedToken(t).lemma.toLowerCase() \n    }\n  }\n  \n  private def abstractArgs(s: QuestionState) = \n    if (multipleParaphrases || !s.isParaphrased) {\n      val toks = s.processed.lemmatizedTokens.map(_.lemma.toLowerCase).toIndexedSeq\n      for {\n        interval <- intervals(toks.size)\n        arg = s.processed.strings.slice(interval.start, interval.end).mkString(\" \")\n        types = if (useTypes) isaClient.getTypes(arg) else List(\"anything\")\n        newState = AbstractedArgState(s.question, types, s.processed, interval)\n      } yield (action, newState)\n    } else {\n      Nil\n    }\n  \n      \n}\n\ncase class AbstractArgAction() extends QaAction\n\ncase object AbstractArgTransition {\n  val conf = ConfigFactory.load()\n  val defaultMaxArgLength = conf.getInt(\"paraphrase.template.maxArgLength\")\n  val multipleParaphrases = conf.getBoolean(\"paraphrase.template.multipleParaphrases\")\n  val defaultUseTypes = conf.getBoolean(\"paraphrase.template.useTypes\")\n  lazy val defaultIsaClient = IsaClient()\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/AbstractedArgState.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Sentence\n\ncase class AbstractedArgState(\n    question: String,\n    argTypes: List[String],\n    processed: Sentence with Chunked with Lemmatized, \n    argInterval: Interval) extends QaState { \n  val tokens = processed.lemmatizedTokens.map(_.lemma.toLowerCase)\n  override def toString() = {\n    val left = tokens.slice(0, argInterval.start)\n    val middle = \"[\" +: tokens.slice(argInterval.start, argInterval.end) :+ \"]\"\n    val right = tokens.slice(argInterval.end, tokens.size)\n    val s = (left ++ middle ++ right).mkString(\" \")\n    s\n  } \n  def queryString = {\n    val left = tokens.slice(0, argInterval.start)\n    val right = tokens.slice(argInterval.end, tokens.size)\n    (left ++ Seq(\"$y\") ++ right).mkString(\" \")\n  }\n  def arg = tokens.slice(argInterval.start, argInterval.end).mkString(\" \")\n  override def stateType = \"AbstractedArgState\"\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/AnswerState.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.execution.ExecTuple\n\ncase class AnswerState(answer: String) extends QaState {\n  override def stateType = \"AnswerState\"\n  override def toString = answer\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/CgParseTransition.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.parsing.cg.CgParser\nimport edu.knowitall.search.Transition\n\ncase class CgParseTransition(parser: CgParser = CgParseTransition.defaultParser) extends Transition[QaState, QaAction] {\n  \n  override def apply(s: QaState) = s match {\n    case s: QuestionState => parseQuestion(s)\n    case _ => Nil\n  }\n  \n  def parseQuestion(s: QuestionState) = {\n    val question = s.question\n    for {\n      derivation <- parser.parse(question)\n      newState = QueryState(derivation.query)\n    } yield (derivation, newState)\n    \n  }\n\n}\n\ncase object CgParseTransition {\n  lazy val defaultParser = CgParser()\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/DropQueryStopsTransition.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.search.Transition\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.execution.TLiteral\nimport edu.knowitall.execution.UnquotedTLiteral\nimport edu.knowitall.util.NlpTools\nimport edu.knowitall.execution.ListConjunctiveQuery\nimport edu.knowitall.execution.TConjunct\nimport edu.knowitall.execution.ConjunctiveQuery\n\nobject DropStopAction extends QaAction {\n  override def toString = \"DropStopAction\"\n}\n\nclass DropQueryStopsTransition(\n    val stops: Set[String] = DropQueryStopsTransition.defaultStops) \n    extends Transition[QaState, QaAction] {\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  override def apply(s: QaState) = s match {\n    case qs: QueryState if (!qs.reformulated) => dropStops(qs.query)\n    case _ => Nil\n  }\n  \n  def dropStops(query: ConjunctiveQuery) = {\n    val newConjs = query.conjuncts.map(dropStopsConj)\n    val newQuery = new ListConjunctiveQuery(query.qVars, newConjs)\n    List((DropStopAction, QueryState(newQuery)))\n  }\n  \n  private def dropStopsConj(conj: TConjunct) = {\n    val newVals = for ((f, v) <- conj.values) yield v match {\n      case UnquotedTLiteral(s) => (f, UnquotedTLiteral(dropStopsString(s)))\n      case _ => (f, v)\n    }\n    new TConjunct(conj.name, newVals)\n  }\n  \n  private def dropStopsString(s: String) = {\n    val sent = NlpTools.process(s)\n    val lemmas = sent.lemmatizedTokens.map(_.lemma)\n    if (lemmas.forall(stops contains _)) {\n      s\n    } else {\n      val filtered = lemmas.filterNot(stops contains _)\n      filtered.mkString(\" \")\n    }\n  }\n\n}\n\ncase object DropQueryStopsTransition {\n  val defaultStops = Set(\"the\", \"a\", \"an\", \"be\", \"have\", \"do\", \"'s\", \"can\", \"will\", \"get\")\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/ExecutionTransition.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.search.Transition\nimport edu.knowitall.triplestore.TriplestoreClient\nimport edu.knowitall.execution.Joiner\nimport edu.knowitall.execution.ExecTuple\nimport edu.knowitall.triplestore.SolrClient\nimport edu.knowitall.execution.DefaultFilters\nimport edu.knowitall.execution.IdentityExecutor\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.execution.ConjunctiveQuery\nimport org.apache.solr.client.solrj.SolrServerException\nimport java.io.StringWriter\nimport java.io.PrintWriter\nimport org.slf4j.LoggerFactory\nimport scala.collection.parallel.CompositeThrowable\n\nclass ExecutionTransition(\n    client: TriplestoreClient = ExecutionTransition.defaultClient,\n    skipTimeouts: Boolean = ExecutionTransition.defaultSkipTimeouts) \n    extends Transition[QaState, QaAction] {\n  \n  private val logger = LoggerFactory.getLogger(this.getClass) \n  \n  private val executor = DefaultFilters.wrap(IdentityExecutor(client))\n  \n  override def apply(s: QaState) = s match {\n    case s: QueryState => executeQuery(s) \n    case _ => Nil\n  }\n  \n  private def executeQuery(state: QueryState) = for {\n    etuple <- execute(state.query)\n    newState = TupleState(etuple)\n  } yield (ExecutionAction, newState)\n  \n  private def execute(query: ConjunctiveQuery) = try {\n    executor.execute(query)\n  } catch {\n    case e @ (_ : SolrServerException | _ : CompositeThrowable) => if (skipTimeouts) {\n      val sw = new StringWriter()\n      val pw = new PrintWriter(sw)\n      e.printStackTrace(pw)\n      logger.warn(s\"Could not execute query: $query, got ${sw.toString}\")\n      List.empty\n    } else {\n      throw e\n    }\n  }\n\n}\n\nobject ExecutionAction extends QaAction\n\nobject ExecutionTransition {\n  val conf = ConfigFactory.load()\n  val defaultSkipTimeouts = conf.getBoolean(\"triplestore.skipTimeouts\")\n  lazy val defaultClient = new SolrClient() \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/ParaphraseRuleTransition.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.paraphrasing.rules.ParaphraseRuleSet\nimport edu.knowitall.search.Transition\n\ncase class ParaphraseRuleTransition(ruleSet: ParaphraseRuleSet = ParaphraseRuleSet()) extends Transition[QaState, QaAction] {\n  \n  override def apply(s: QaState) = s match {\n    case s: QuestionState => paraphrase(s)\n    case _ => Nil\n  }\n  \n  private def paraphrase(qs: QuestionState) = for {\n    (rule, result) <- ruleSet.apply(qs.processed)\n    newState = QuestionState(result, qs.isParaphrased)\n  } yield (rule, newState)\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/ProjectionTransition.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.search.Transition\n\nclass ProjectionTransition extends Transition[QaState, QaAction] {\n  override def apply(s: QaState) = s match {\n    case ts: TupleState => project(ts)\n    case _ => Nil\n  }\n  def project(ts: TupleState) = \n    List((ProjectAction, AnswerState(ts.execTuple.answerString)))\n}\n\nobject ProjectAction extends QaAction"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaAction.scala",
    "content": "package edu.knowitall.search.qa\n\ntrait QaAction"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaBeamSearch.scala",
    "content": "package edu.knowitall.search.qa\n\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.search.SingleBeam\nimport edu.knowitall.search.TypedBeams\nimport edu.knowitall.search.Beam\nimport edu.knowitall.search.BeamSearch\n\nclass QaBeamSearch(problem: QaSearchProblem) {\n  private var t0 = 0L\n  def search = {\n    val beam = QaBeamSearch.newBeam\n    val beamSearch = new BeamSearch(problem, beam)\n    t0 = System.currentTimeMillis\n    beamSearch.search\n  }\n  def startTime = t0 \n}\n\nobject QaBeamSearch {\n  val conf = ConfigFactory.load()\n  val defaultBeamSize = conf.getInt(\"search.beamSize\")\n  val defaultBeamType = conf.getString(\"search.beamType\")\n  def newBeam: Beam[QaState, QaAction] = defaultBeamType match {\n    case \"single\" => new SingleBeam[QaState, QaAction](defaultBeamSize)\n    case \"typed\" => new TypedBeams[QaState, QaAction, String](x => x.state.stateType, defaultBeamSize)\n    case _ => throw new IllegalStateException(s\"Invalid beam type: defaultBeamType\")\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaCostModel.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.learning.SparseVector\nimport com.typesafe.config.ConfigFactory\nimport scala.io.Source\nimport java.io.File\n\n\nclass QaCostModel(\n    var features: Function[QaStep, SparseVector] = QaCostModel.defaultFeatures,\n    var weights: SparseVector = QaCostModel.defaultWeights) extends Function[QaStep, Double] {\n  // multiply by -1 since search algos find minimum path\n  override def apply(step: QaStep) = -1.0 * (features(step) * weights)\n}\n\nobject QaCostModel {\n  val conf = ConfigFactory.load()\n  val defaultFeatures = QaFeatures\n  lazy val defaultWeights = if (conf.hasPath(\"scoring.weights\")) { \n    SparseVector.fromFile(conf.getString(\"scoring.weights\"))\n  } else {\n    val in = getClass.getResourceAsStream(\"/edu/knowitall/search/qa/defaultWeights.txt\")\n    SparseVector.fromInputStream(in)\n    //SparseVector.zero\n  }\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaFeatures.scala",
    "content": "package edu.knowitall.search.qa\nimport edu.knowitall.paraphrasing.template.TemplatePair\nimport edu.knowitall.execution.ExecTuple\nimport edu.knowitall.execution.ConjunctiveQuery\nimport edu.knowitall.learning.SparseVector\nimport edu.knowitall.learning.QueryTupleSimilarity\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.lm.KenLmServer\nimport edu.knowitall.util.NlpUtils\nimport edu.knowitall.execution.Search\nimport edu.knowitall.relsyn.RelSynRule\nimport com.rockymadden.stringmetric.StringMetric\nimport edu.knowitall.execution.Tuple\nimport edu.knowitall.parsing.cg.ParsedQuestion\nimport edu.knowitall.paraphrasing.rules.ParaphraseRule\n\nobject QaFeatures extends Function[QaStep, SparseVector] {\n  \n  val conf = ConfigFactory.load()\n  val defaultPmi = conf.getDouble(\"paraphrase.defaultPmi\")\n  val defaultLm = conf.getDouble(\"paraphrase.defaultLm\")\n  val lmClient = new KenLmServer()\n  \n  val tupleTemplates = TupleFeatureTemplate.defaultTemplates\n  val tupleFeatures = ExecutionFeature { (question: String, etuple: ExecTuple) =>\n    val tuple = etuple.tuple\n    tupleTemplates.map(t => t(tuple)).reduce(_ + _)\n  }\n  \n  val answerIsLinked = ExecutionFeature { (question: String, etuple: ExecTuple) =>\n    val tuple = etuple.tuple\n    val qAttrs = etuple.query.qAttrs\n    val isLinked = qAttrs.exists(attr => {\n      tuple.get(attr + \"_fbid_s\") match {\n        case Some(value) => true\n        case _ => false\n      } \n    })\n    (\"answer is linked to freebase\", isLinked)\n  }\n  \n  val actionType = ActionFeature { a: QaAction =>\n    (s\"action type = ${a.getClass.getSimpleName}\", 1.0)\n  }\n  \n  val tupleNamespace = ExecutionFeature { (q: String, etuple: ExecTuple) => \n    val tuple = etuple.tuple\n    val nss = tuple.attrs.keys.filter(_.endsWith(\".namespace\")).flatMap(tuple.getString(_))\n    nss.map(ns => s\"answer from namespace '$ns'\")\n  }\n  \n  val numConjuncts = ExecutionFeature { (q: String, etup: ExecTuple) =>\n    (\"num conjuncts\" -> etup.query.conjuncts.size)\n  }\n  \n  val querySimilarity = ExecutionFeature { (q: String, etuple: ExecTuple) =>\n    val query = etuple.query\n    val tuple = etuple.tuple\n    //val relSim = QueryTupleSimilarity.relSimilarity(query, tuple)\n    //val argSim = QueryTupleSimilarity.argSimilarity(query, tuple)\n    val quesSim = QueryTupleSimilarity.questionQuerySimilarity(query, q)\n    val quesEvSim = QueryTupleSimilarity.questionTupleSimilarity(q, tuple)\n    SparseVector(\"evidence similarity with question\" ->quesEvSim,\n    \t\t\t \"query similarity with question\" -> quesSim)\n  }\n  \n  def freebaseLink(key: String, tuple: Tuple) = tuple.getString(key + \"_fbid_s\")\n  \n  val joinSimilarity = ExecutionFeature { (q: String, etuple: ExecTuple) =>\n    val query = etuple.query\n    val tuple = etuple.tuple\n    val sims = for {\n      (key1, key2) <- query.joinPairs\n      val1 <- tuple.getString(key1)\n      val2 <- tuple.getString(key2)\n      s <- StringMetric.compareWithDiceSorensen(val1, val2)(1)\n    } yield s\n    val minJoinSim = if (sims.isEmpty) 0.0 else sims.min\n    \n    val fbidPairs = for {\n      (key1, key2) <- query.joinPairs\n      fbid1 <- freebaseLink(key1, tuple)\n      fbid2 <- freebaseLink(key2, tuple)\n    } yield (fbid1, fbid2)\n    \n    val fbidViolation = if (fbidPairs.exists(pair => pair._1 != pair._2)) 1.0 else 0.0\n    \n    SparseVector(\n        \"minimum join key similarity\" -> minJoinSim,\n        \"fbid join key violation\" -> fbidViolation)\n  }\n  \n  val templateFeatures = TemplatePairFeature { (q: String, pair: TemplatePair) => {\n    val prefix1 = NlpUtils.questionPrefix(pair.template1)\n    val prefix2 = NlpUtils.questionPrefix(pair.template2)\n    SparseVector(s\"template prefix $prefix1 => $prefix2\" -> 1.0,\n    \t\t\t \"template pair pmi\" -> pair.pmi,\n    \t\t\t \"template pair count1\" -> pair.count1,\n    \t\t\t \"template pair count2\" -> pair.count2,\n    \t\t\t \"template pair count12\" -> pair.count12,\n    \t\t\t \"template is typed\" -> {if (pair.typ == \"anything\") 0.0 else 1.0}) \n  }\n  }\n  \n  val numSteps = (step: QaStep) => SparseVector(\"steps\" -> 0.25)\n  \n  def paraphraseLm(step: QaStep): SparseVector = {\n    (step.action, step.toState) match {\n      case (a: TemplatePair, qs: QuestionState) if qs.isParaphrased => (\"paraphrase lm\", lmClient.query(qs.question))\n      case _ => SparseVector.zero\n    }\n  }\n  \n  def templateArgFeatures(step: QaStep): SparseVector = step.toState match {\n    case s: AbstractedArgState => {\n      val sent = s.processed\n      val span = s.argInterval\n      val tags = sent.postags.slice(span.start, span.end)\n      val tagPat = tags.mkString(\" \")\n      Some(s\"template arg pos tags = $tagPat\")\n    }\n    case _ => SparseVector.zero\n  }\n  \n  private val defNoun = \"^[Tt]he [a-z].*$\".r\n  val isDefiniteNoun = ExecutionFeature { (q: String, etuple: ExecTuple) =>\n    val answer = etuple.answerString\n    if (defNoun.findFirstIn(answer).isDefined)\n      SparseVector(\"answer is def noun\" -> 1.0)\n    else\n      SparseVector.zero\n  }\n  \n  val prefixAndFeat = ExecutionFeature { (q: String, etuple: ExecTuple) =>\n    val a = etuple.answerString\n    val prefix = NlpUtils.questionPrefix(q)\n    val isDate = if (NlpUtils.isDate(a)) 1.0 else 0.0\n    val isNumber = if (NlpUtils.containsNumber(a)) 1.0 else 0.0\n    val shape = NlpUtils.stringShape(a, 4)\n    SparseVector(\n      s\"question prefix = '$prefix' ^ isDate\" -> isDate,\n      s\"question prefix = '$prefix' ^ isNumber\" -> isNumber,\n      s\"question prefix = '$prefix' ^ answer shape = '$shape'\" -> 1.0\n    )\n  }\n  \n  val lightVerbRel = QueryFeature { (q: String, query: ConjunctiveQuery) =>\n    val values = for {\n      c <- query.conjuncts\n      (field, literal) <- c.literalFields\n      value = literal.value\n      if field == Search.rel && NlpUtils.isLightVerb(value)\n    } yield value\n    if (values.isEmpty) {\n      None\n    } else {\n      Some(s\"query relation is light verb\")\n    }\n  }\n  \n  val relSynFeatures = (step: QaStep) => step.action match {\n    case r: RelSynRule => SparseVector(\"relSyn pmi\" ->r.pmi)\n    case _ => SparseVector.zero\n  }\n  \n  val paraRuleFeatures = (step: QaStep) => step.action match {\n    case r: ParaphraseRule => SparseVector(r.name -> 1.0)\n    case _ => SparseVector.zero\n  }\n  \n  val parserFeatures = (step: QaStep) => step.action match {\n    case parse: ParsedQuestion => {\n      val deriv = parse.derivation\n      val lexRules = deriv.terminals.map(t => s\"parser lexical rule = ${t.rule}\")\n      val lexRuleContexts = deriv.terminals.flatMap { t =>\n        val i = t.interval.start\n        val j = t.interval.end\n        val n = parse.question.postags.size\n        val r = t.category.categoryString\n        val leftTag = if (i > 0) parse.question.postags(i-1) else \"<s>\"\n        val rightTag = if (j < n - 2) parse.question.postags(j+1) else \"</s>\"\n        Map(s\"lex type = $r ^ leftTag = $leftTag\" -> 1.0, s\"lex type = $r ^ rightTag = $rightTag\" -> 1.0)\n      }\n      val combRules = deriv.combinators.map(c => s\"parser combinator rule = $c\")\n      val usesFull = if (deriv.terminals.exists(t => t.rule.toString.startsWith(\"fullPattern\"))) 1.0 else 0.0\n      val posLexRules = deriv.terminals.map { t =>\n        val i = t.catspan.span\n        val tags = parse.postags(i)\n        s\"lex category (postags) = ${t.catspan.category.categoryString}($tags)\"\n      }\n      val counts = (lexRules ++ combRules ++ posLexRules).groupBy(x => x).map {\n        case (name, names) => (name -> 1.0)\n      }\n      SparseVector(counts) + lexRuleContexts + (\"num lexical rules\" -> lexRules.size / 5.0) + (\"uses full parser pattern\" -> usesFull)\n    }\n    case _ => SparseVector.zero\n  }\n  \n  def apply(s: QaStep) = actionType(s) +\n\t\t  \t\t\t\t answerIsLinked(s) +\n\t\t  \t\t\t\t tupleNamespace(s) +\n\t\t  \t\t\t\t querySimilarity(s) +\n\t\t  \t\t\t\t templateFeatures(s) +\n\t\t  \t\t\t\t paraphraseLm(s) +\n\t\t  \t\t\t\t numConjuncts(s) +\n\t\t  \t\t\t\t prefixAndFeat(s) +\n\t\t  \t\t\t\t lightVerbRel(s) +\n\t\t  \t\t\t\t relSynFeatures(s) +\n\t\t  \t\t\t\t templateArgFeatures(s) +\n\t\t  \t\t\t\t joinSimilarity(s) +\n\t\t  \t\t\t\t parserFeatures(s) + \n\t\t  \t\t\t\t paraRuleFeatures(s) +\n\t\t  \t\t\t\t numSteps(s) +\n\t\t  \t\t\t\t isDefiniteNoun(s) +\n\t\t  \t\t\t\t tupleFeatures(s)\n  \n}\n\ncase class TemplatePairFeature(f: Function2[String, TemplatePair, SparseVector]) extends Function[QaStep, SparseVector] {\n  override def apply(step: QaStep) = step.action match {\n    case a: TemplatePair => f(step.question, a)\n    case _ => SparseVector.zero\n  }\n}\n\ncase class ExecutionFeature(f: Function2[String, ExecTuple, SparseVector]) extends Function[QaStep, SparseVector] {\n  override def apply(step: QaStep) = step.toState match {\n    case ts: TupleState => f(step.question, ts.execTuple)\n    case _ => SparseVector.zero\n  }\n}\n\ncase class QueryFeature(f: Function2[String, ConjunctiveQuery, SparseVector]) extends Function[QaStep, SparseVector] {\n  override def apply(step: QaStep) = step.toState match {\n    case qs: QueryState => f(step.question, qs.query)\n    case _ => SparseVector.zero\n  }\n}\n\ncase class ActionFeature(f: QaAction => SparseVector) extends Function[QaStep, SparseVector] {\n  override def apply(step: QaStep) = f(step.action)\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaLayeredSearch.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.search.SearchAlgorithm\nimport com.google.common.collect.MinMaxPriorityQueue\nimport edu.knowitall.search.Node\nimport java.util.Comparator\nimport scala.collection.JavaConversions._\n\nclass QaLayeredSearch(override val problem: QaSearchProblem, beamSize: Int, goalSize: Int) extends SearchAlgorithm[QaState, QaAction] {\n  \n  private val comparator = new Comparator[Node[QaState, QaAction]] {\n    override def compare(n1: Node[QaState, QaAction], n2: Node[QaState, QaAction]) = {\n      val r = QaStateComparator.compare(n1.state, n2.state)\n      if (r == 0) {\n        n1.pathCost.compareTo(n2.pathCost)\n      } else {\n        r\n      }\n    }\n  }\n  \n  private val beam = MinMaxPriorityQueue.orderedBy(comparator)\n\t\t  \t\t\t\t\t\t\t\t.maximumSize(beamSize)\n\t\t  \t\t\t\t\t\t\t\t.create[Node[QaState, QaAction]]\n  \n  override def continueSearch = (beam.size > 0) && (goals.size < goalSize)\n  \n  override def initialize = beam.add(rootNode)\n  \n  override def searchIter = {\n\n    val node = beam.pollFirst\n    logger.warn(s\"Expanding ${node.state}\")\n    val successors = expand(node).toList\n      \n    val (newGoals, newNodes) = successors.partition(isGoal)\n    newGoals.foreach(addGoalNode)\n    beam.addAll(newNodes)\n\n  }\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaSearchProblem.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.paraphrasing.template.TemplateParaphraser\nimport edu.knowitall.execution.IdentityExecutor\nimport edu.knowitall.triplestore.SolrClient\nimport edu.knowitall.search.SearchProblem\nimport edu.knowitall.search.BeamSearch\nimport edu.knowitall.search.Transition\nimport edu.knowitall.tool.postag.StanfordPostagger\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.tool.tokenize.ClearTokenizer\nimport edu.knowitall.tool.chunk.OpenNlpChunker\nimport edu.knowitall.triplestore.CachedTriplestoreClient\n\ncase class QaSearchProblem(\n    question: String,\n    transitionModel: Transition[QaState, QaAction] = \n      QaSearchProblem.transitionModel,\n    costModel: Function[QaStep, Double] = QaSearchProblem.costModel) \n    extends SearchProblem[QaState, QaAction] {\n\n  val initialState = QuestionState(question)\n  \n  override def successors(s: QaState) = transitionModel(s)\n    \n  override def isGoal(s: QaState) = s match {\n    case as: AnswerState => true\n    case _ => false\n  }\n  \n  override def cost(fromState: QaState, action: QaAction, toState: QaState) =\n    costModel(QaStep(question, fromState, action, toState))\n\n}\n\nobject QaSearchProblem {\n  \n  val transitionModel = new QaTransitionModel\n  \n  val costModel = new QaCostModel\n  \n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaState.scala",
    "content": "package edu.knowitall.search.qa\n\ntrait QaState {\n  def stateType: String\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaStateComparator.scala",
    "content": "package edu.knowitall.search.qa\n\nimport java.util.Comparator\n\nobject QaStateComparator extends Comparator[QaState] {\n  def statePosition(s: QaState) = s match {\n    case _: AnswerState => 0\n    case _: TupleState => 1\n    case _: QueryState => 2\n    case _: AbstractedArgState => 3\n    case _: QuestionState => 3\n    case _ => \n      throw new IllegalStateException(s\"Could not find ordering for state $s\")\n  }\n  override def compare(s1: QaState, s2: QaState) = \n    statePosition(s1) compareTo statePosition(s2) \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaStep.scala",
    "content": "package edu.knowitall.search.qa\n\ncase class QaStep(question: String, fromState: QaState, action: QaAction,\n    toState: QaState)"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QaTransitionModel.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.tool.postag.StanfordPostagger\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.tool.tokenize.ClearTokenizer\nimport edu.knowitall.tool.chunk.OpenNlpChunker\nimport edu.knowitall.paraphrasing.template.ParaphraseTemplateClient\nimport edu.knowitall.triplestore.SolrClient\nimport edu.knowitall.triplestore.CachedTriplestoreClient\nimport edu.knowitall.search.Transition\nimport edu.knowitall.relsyn.SolrRelSynClient\nimport edu.knowitall.relsyn.IsaRelSynClient\nimport edu.knowitall.util.NlpTools\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.parsing.cg.CgParser\n\nclass QaTransitionModel extends Transition[QaState, QaAction] {\n  \n  lazy val cgParser = new CgParser()\n  \n  // Remote services\n  lazy val templateClient = new ParaphraseTemplateClient\n  lazy val baseTriplestoreClient = new SolrClient()\n  lazy val triplestoreClient = CachedTriplestoreClient(baseTriplestoreClient)\n  lazy val relSynClient = SolrRelSynClient()\n  \n  // Individual transition functions\n  lazy val absArgTransition = new AbstractArgTransition()\n  lazy val templateTransition = new TemplateTransition(templateClient)\n  lazy val paraRuleTransition = ParaphraseRuleTransition()\n  lazy val parseTransition = new CgParseTransition(cgParser)\n  lazy val executeTransition = new ExecutionTransition(triplestoreClient)\n  lazy val isaSynTransition = new RelSynTransition(IsaRelSynClient)\n  lazy val relSynTransition = new RelSynTransition(relSynClient)\n  lazy val dropStopsTransition = new DropQueryStopsTransition()\n  lazy val projTransition = new ProjectionTransition\n  \n  val conf = ConfigFactory.load()\n  \n  lazy val components = Map(\n    \"parse\" -> parseTransition,\n    \"templateParaphrase\" -> (absArgTransition + templateTransition),\n    \"ruleParaphrase\" -> paraRuleTransition,\n    \"relSyn\" -> relSynTransition,\n    \"isaRelSyn\" -> isaSynTransition,\n    \"execute\" -> executeTransition,\n    \"project\" -> projTransition,\n    \"dropStops\" -> dropStopsTransition\n  )\n  \n  lazy val activeComponents = for {\n    name <- components.keys\n    active = conf.getBoolean(s\"search.transitions.$name\")\n    if active\n    component = components(name)\n  } yield component\n  \n  lazy val model = activeComponents.reduce(_ + _)\n  \t\t\t  \n  override def apply(s: QaState) = model(s)\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QueryState.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.execution.ConjunctiveQuery\n\ncase class QueryState(query: ConjunctiveQuery, reformulated: Boolean = false) \nextends QaState {\n  override def stateType = \"QueryState\"\n  override def toString = query.toString\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/QuestionState.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.util.NlpTools\n\ntrait QuestionState extends QaState {\n  def question: String\n  def processed: Sentence with Lemmatized with Chunked\n  def isParaphrased: Boolean\n  override def stateType = \"QuestionState\"\n  override def toString = question\n}\n\ncase object QuestionState {\n  private case class QuestionStateImpl(\n      question: String,\n      processed: Sentence with Lemmatized with Chunked,\n      isParaphrased: Boolean = false) extends QuestionState\n  def apply(question: String): QuestionState = QuestionStateImpl(question, NlpTools.process(question))\n  def apply(q: String, isP: Boolean): QuestionState = QuestionStateImpl(q, NlpTools.process(q), isP)\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/RelSynTransition.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.relsyn.SolrRelSynClient\nimport edu.knowitall.search.Transition\nimport edu.knowitall.execution.TConjunct\nimport edu.knowitall.execution.ListConjunctiveQuery\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.execution.Search\nimport com.typesafe.config.ConfigFactory\nimport org.apache.solr.client.solrj.SolrServerException\nimport java.io.StringWriter\nimport java.io.PrintWriter\nimport edu.knowitall.relsyn.RelSynClient\n\nclass RelSynTransition(client: RelSynClient = RelSynTransition.defaultClient, skipTimeouts: Boolean = RelSynTransition.defaultSkipTimeouts, multipleSyns: Boolean = RelSynTransition.defaultMultipleSyns) \n  extends Transition[QaState, QaAction] {\n  \n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  override def apply(s: QaState) = s match {\n    case qs: QueryState if (!qs.reformulated || multipleSyns) => reformulate(qs)\n    case _ => Nil\n  }\n  \n  private def reformulate(s: QueryState) = {\n    val conjs = s.query.conjuncts\n    for {\n      i <- 0 until conjs.size\n      c = conjs(i)\n      rule <- relSyns(c)\n      newc <- rule(c)\n      newconjs = conjs.updated(i, newc)\n      newq = ListConjunctiveQuery(s.query.qVars, newconjs)\n      newstate = s.copy(query = newq, reformulated = true)\n    } yield {\n      (rule, newstate)\n    }\n  }\n  \n  private def relSyns(c: TConjunct) = try {\n    client.relSyns(c)\n  } catch {\n    case e: SolrServerException => if (skipTimeouts) {\n      val sw = new StringWriter()\n      val pw = new PrintWriter(sw)\n      e.printStackTrace(pw)\n      logger.warn(s\"Could not reformulate query: $c, got ${sw.toString}\")\n      List.empty\n    } else {\n      throw e\n    }\n  }\n\n}\n\nobject RelSynTransition {\n  val conf = ConfigFactory.load()\n  val defaultSkipTimeouts = conf.getBoolean(\"relsyn.skipTimeouts\")\n  val defaultMultipleSyns = conf.getBoolean(\"relsyn.multipleSyns\")\n  lazy val defaultClient = new SolrRelSynClient() \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/TemplateTransition.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.search.Transition\nimport edu.knowitall.paraphrasing.template.ParaphraseTemplateClient\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.paraphrasing.template.TemplatePair\nimport org.apache.solr.client.solrj.SolrServerException\nimport java.io.StringWriter\nimport java.io.PrintWriter\nimport org.slf4j.LoggerFactory\n\nclass TemplateTransition(client: ParaphraseTemplateClient, skipTimeouts: Boolean = TemplateTransition.defaultSkipTimeouts) extends Transition[QaState, QaAction] {\n  \n  def this() = this(new ParaphraseTemplateClient())\n  \n  private val logger = LoggerFactory.getLogger(this.getClass) \n  \n  override def apply(s: QaState) = s match {\n    case s: AbstractedArgState => paraphrase(s)\n    case _ => Nil\n  }\n  \n  private def paraphrases(s: String, argTypes: List[String]) = try {\n    client.paraphrases(s, argTypes)\n  } catch {\n    case e: Throwable => if (skipTimeouts) {\n      val sw = new StringWriter()\n      val pw = new PrintWriter(sw)\n      e.printStackTrace(pw)\n      logger.warn(s\"Could not get paraphrases: $s, got ${sw.toString}\")\n      List.empty\n    } else {\n      throw e\n    }\n  }\n  \n  private def paraphrase(state: AbstractedArgState) = \n    for {\n      templatePair <- paraphrases(state.queryString, state.argTypes)\n      arg = state.arg\n      newQuestion = applyTemplate(arg, templatePair)\n      action = templatePair\n      newState = QuestionState(newQuestion, true)\n    } yield (action, newState)\n  \n  private def applyTemplate(arg: String, pair: TemplatePair) = \n    pair.template2.replace(\"$y\", arg)\n\n}\n\nobject TemplateTransition {\n  val conf = ConfigFactory.load()\n  val defaultSkipTimeouts = conf.getBoolean(\"paraphrase.template.skipTimeouts\")\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/TupleFeatureTemplate.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.execution.Tuple\nimport edu.knowitall.learning.SparseVector\nimport com.typesafe.config.ConfigFactory\nimport edu.knowitall.util.ResourceUtils\n\ncase class TupleFeatureTemplate(\n    attr: String,\n    agg: (Double, Double) => Double,\n    min: Double,\n    max: Double,\n    scale: Double => Double) {\n  \n  private val smin = scale(min)\n  private val smax = scale(max)\n  private val suffix = s\".$attr\"\n  \n  private def computeValue(v: Double) = if (min <= v && v <= max) {\n    Some((scale(v) - smin) / (smax - smin))\n  } else {\n    None\n  }\n  \n  def apply(tuple: Tuple): SparseVector = {\n    val svalues = for {\n      a <- tuple.attrs.keys\n      if a.endsWith(suffix)\n      v <- tuple.getNumber(a)\n      r <- computeValue(v)\n    } yield r\n    if (svalues.isEmpty) {\n      SparseVector.zero\n    } else {\n      SparseVector(s\"tuple $attr\" -> svalues.reduce(agg))\n    }\n  }\n  \n}\n\nobject TupleFeatureTemplate {\n  val conf = ConfigFactory.load()\n  val res = conf.getString(\"tuplefeatures.resourcePath\")\n  lazy val defaultTemplates = ResourceUtils.resourceSource(res).getLines.map(fromString).toList\n  def fromString(s: String) = {\n    val fields = s.trim.split(\"\\t\").toList\n    fields match {\n      case attr :: sagg :: smin :: smax :: sscale :: Nil => {\n        val agg = aggFromString(sagg)\n        val scale = scaleFromString(sscale)\n        val min = smin.toDouble\n        val max = smax.toDouble\n        TupleFeatureTemplate(attr, agg, min, max, scale)\n      }\n      case _ => throw new IllegalArgumentException(s\"Invalid feature template: $s\")\n    }\n  }\n  def aggFromString(s: String): (Double, Double) => Double = s.trim.toLowerCase match {\n    case \"min\" => Math.min _\n    case \"max\" => Math.max _\n    case _ => throw new IllegalArgumentException(s\"Invalid aggregator: $s\")\n  }\n  def scaleFromString(s: String): Double => Double = s.trim.toLowerCase match {\n    case \"log\" => Math.log\n    case \"linear\" => (x: Double) => x\n    case _ => throw new IllegalArgumentException(s\"Invalid feature scale: $s\")\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/search/qa/TupleState.scala",
    "content": "package edu.knowitall.search.qa\n\nimport edu.knowitall.execution.ExecTuple\n\ncase class TupleState(execTuple: ExecTuple) extends QaState {\n  override def stateType = \"TupleState\"\n  override def toString = execTuple.toTripleString\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/triplestore/IsaClient.scala",
    "content": "package edu.knowitall.triplestore\n\nimport edu.knowitall.relsyn.IsaRelSynClient\nimport edu.knowitall.execution.ListConjunctiveQuery\nimport edu.knowitall.execution.IdentityExecutor\nimport edu.knowitall.util.NlpTools\nimport edu.knowitall.execution.Search.TSQuery\nimport edu.knowitall.model.QaModel\n\ncase class IsaClient(client: TriplestoreClient = IsaClient.defaultTriplestoreClient, maxHits: Int = 500) {\n  \n  private val internalClient = new TriplestoreClient {\n    override def search(q: TSQuery, h: Int) = client.search(q, maxHits)\n    override def count(q: TSQuery) = client.count(q)\n  }\n  \n  private val isaSyns = IsaRelSynClient\n  private val exec = IdentityExecutor(internalClient)\n  private val norm = (s: String) => NlpTools.normalize(s)\n  private def getQuery(a: String) = ListConjunctiveQuery.fromString(\"$x : (\\\"\" + a.replace(\",\", \" \") + \"\\\", isa, $x)\") match {\n    case Some(q) => q\n    case None => throw new IllegalStateException(s\"Could not make query from $a\")\n  }\n  private def getQueries(a: String) = {\n    val q = getQuery(a)\n    val c = q.conjuncts(0)\n    val rules = isaSyns.relSyns(c)\n    val conjs = rules.flatMap(_(c))\n    conjs map { c => ListConjunctiveQuery(q.qVars, List(c)) }\n  }\n  def getTypes(a: String) = {\n    val queries = getQueries(a)\n    val results = queries flatMap { q => exec.execute(q) }\n    \"anything\" :: results.map(a => norm(a.answerString)).distinct\n  }\n}\n\ncase object IsaClient {\n  lazy val defaultTriplestoreClient = new SolrClient()\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/triplestore/TriplestoreClient.scala",
    "content": "package edu.knowitall.triplestore\nimport scala.collection.JavaConverters._\nimport org.apache.solr.client.solrj.impl.HttpSolrServer\nimport org.apache.solr.client.solrj.util.ClientUtils\nimport org.apache.solr.client.solrj.SolrQuery\nimport scala.collection.JavaConversions._\nimport org.apache.solr.common.SolrDocument\nimport java.util.ArrayList\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.execution.Conditions._\nimport edu.knowitall.execution.Search._\nimport edu.knowitall.execution._\nimport com.twitter.util.LruMap\nimport scala.collection.mutable.SynchronizedMap\nimport java.util.ArrayList\nimport com.typesafe.config.ConfigFactory\nimport org.apache.solr.common.SolrException\n\n/**\n * The interface to a Triplestore.\n */\ntrait TriplestoreClient {\n  \n  /**\n   * Counts the number of triples that match the given query.\n   */\n  def count(q: TSQuery): Long\n  \n  /**\n   * Searches and returns at most maxHits Tuple objects.\n   */\n  def search(q: TSQuery, maxHits: Int = 100): List[Tuple]\n    \n  /**\n   * Searches and returns Tuple objects, but adds the prefix\n   * \"$name.\" to all of the attributes.\n   */\n  def namedSearch(name: String, q: TSQuery): List[Tuple] =\n    search(q) map { t => t.renamePrefix(name) }\n  \n  /**\n   * Searches and returns Tuple objects, but adds the prefix\n   * \"$name.\" to all of the attributes. Returns at most maxHits tuples.\n   */\n  def namedSearch(name: String, q: TSQuery, maxHits: Int): List[Tuple] = \n    search(q, maxHits) map { t => t.renamePrefix(name) }\n}\n\ncase class CachedTriplestoreClient(client: TriplestoreClient, size: Int = 1000) \n  extends TriplestoreClient {\n  \n  val tupleMap = new LruMap[(TSQuery, Int), List[Tuple]](size) with SynchronizedMap[(TSQuery, Int), List[Tuple]]\n  val countMap = new LruMap[TSQuery, Long](size) with SynchronizedMap[TSQuery, Long]\n  \n  def search(q: TSQuery, hits: Int): List[Tuple] = {\n    tupleMap.get((q, hits)) match {\n      case Some(x) => x\n      case _ => {\n        val results = client.search(q, hits)\n        tupleMap.put((q, hits), results)\n        results\n      }\n    }\n  }\n  \n  def count(q: TSQuery) = {\n    countMap.get(q) match {\n      case Some(x) => x\n      case _ => {\n        val results = client.count(q)\n        countMap.put(q, results)\n        results\n      }\n    }\n  }\n}\n\n/**\n * This class is used to query a Solr server and return Tuple objects. The\n * URL should point to the Solr instance. \"hits\" is the default number of hits\n * that is returned by the search.\n */\ncase class SolrClient(url: String, hits: Int = 10, timeout: Int = SolrClient.defaultTimeout, skipTimeouts: Boolean = SolrClient.defaultSkipTimeouts) extends TriplestoreClient {\n\n  def this() = this(SolrClient.defaultUrl, SolrClient.defaultMaxHits)\n  \n  val logger = LoggerFactory.getLogger(this.getClass) \n  \n  val server = new HttpSolrServer(url)\n  \n  server.setConnectionTimeout(timeout)\n  server.setSoTimeout(timeout)\n  server.setMaxRetries(1)\n  \n  val defaultMaxHits = hits\n  \n  private def execQuery(q: SolrQuery) = try {\n    Some(server.query(q))\n  } catch {\n    case e: SolrException => if (skipTimeouts) {\n      None\n    } else {\n      throw e\n    }\n  }\n\n  /**\n   * Returns the number of documents in Solr that match the given query.\n   */\n  def count(q: TSQuery): Long = {\n    val query = SolrClient.buildCountQuery(q)\n    query.setParam(\"shards.tolerant\", true)\n    val c = for {\n      resp <- execQuery(query)\n      c = resp.getResults().getNumFound()\n    } yield c\n    c.getOrElse(0)\n  }\n  \n  /**\n   * Searches Solr and returns Tuple objects.\n   */\n  def search(q: TSQuery, maxHits: Int = defaultMaxHits): List[Tuple] ={\n    logger.debug(s\"Searching for query: ${q.toQueryString}\")\n    val query = SolrClient.buildQuery(q)\n    query.setRows(maxHits)\n    query.setParam(\"shards.tolerant\", true)\n    val tuples = for {\n      resp <- execQuery(query)\n      results = resp.getResults().toList.map(SolrClient.docToTuple)\n    } yield results\n    tuples.getOrElse(List.empty[Tuple])\n  }\n  \n}\ncase object SolrClient {\n  val conf = ConfigFactory.load()\n  val defaultUrl = conf.getString(\"triplestore.url\")\n  val defaultMaxHits = conf.getInt(\"triplestore.maxHits\")\n  val defaultTimeout = conf.getInt(\"triplestore.timeout\")\n  val defaultSkipTimeouts = conf.getBoolean(\"triplestore.skipTimeouts\")\n  val defaultSkipNamespaces = conf.getString(\"triplestore.skipNamespaces\").r\n  val defaultNamespaces = conf.getStringList(\"triplestore.namespaces\") filter { ns => ns match {\n      case defaultSkipNamespaces() => false\n      case _ => true\n    } \n  }\n  private val nsDisjunction = Disjunction(defaultNamespaces.map(NamespaceEq(_)):_*)\n    \n  def escape(s: String): String = ClientUtils.escapeQueryChars(s)\n  \n  private val parenPat = \"\"\"AND \\s*\\(+\\s*\\)+\\s*$\"\"\".r\n  def removeEmptyParens(s: String): String = {\n    val result = parenPat.replaceAllIn(s, \" \")\n    result\n  }\n  \n  val emptyPat = \"\"\"^\\s*$\"\"\".r\n  def replaceEmptyQuery(s: String): String = s match {\n    case emptyPat() => \"*:*\"\n    case _ => s\n  } \n  \n  def fixQuery(s: String) = {\n    replaceEmptyQuery(removeEmptyParens(s))\n  }\n  \n  /**\n   * Takes a Search.Query object and maps it to a SolrQuery object.\n   */\n  def buildQuery(q: TSQuery): SolrQuery = {\n    val newQuery = Conjunction(nsDisjunction, q)\n    new SolrQuery(fixQuery(newQuery.toQueryString))\n  }\n  \n  /**\n   * Builds a SolrQuery object used to count the number of hits returned\n   * by the given Search.Query object. Returns 0 rows.\n   */\n  def buildCountQuery(q: TSQuery): SolrQuery = \n    new SolrQuery(fixQuery(q.toQueryString)).setRows(0)\n  \n  /**\n   * The string field names of the given solr document.\n   */\n  def fieldNames(doc: SolrDocument): List[String] =\n    doc.getFieldNames().toList.map { x => x.toString() }\n  \n  // Mnemonics used to remember what the attributes/values of a Tuple are.\n  type Value = Any\n  type Attr = String\n  \n  /**\n   * Used to convert the values of a Solr field into Values for a Tuple.\n   */\n  def toTupleValue(v: Any): Option[Value] = {\n    v match {\n      case v: String => Some(v)\n      case v: Float => Some(v)\n      case v: Double => Some(v)\n      case v: Integer => Some(v)\n      case v: Boolean => Some(v)\n      case v: ArrayList[_] => Some(v.asScala.toList) // required for support of multiValued fields\n      case _ => None\n    }\n  }\n  \n  /**\n   * Gets the (attribute, value) pairs from the given Solr doc.\n   */\n  def docToFields(doc: SolrDocument): List[(Attr, Value)] = {\n    for (name <- doc.getFieldNames().toList;\n        value = doc.getFieldValue(name);\n        tvalue <- toTupleValue(value)) \n      yield (name, tvalue)\n  }\n  \n  /**\n   * Converts a Solr document to a Tuple object.\n   */\n  def docToTuple(doc: SolrDocument): Tuple = Tuple(docToFields(doc).toMap)\n}\n\n/**\n * This is a utility class used to instantiate some common relational operations\n * and shortcuts. Builds on a TriplestoreClient, which is used to interact\n * with the underlying Solr instance.\n */\ncase class TriplestorePlan(client: TriplestoreClient) {\n  \n  import Conditions._ \n  import Search._\n  import Search.Field\n  \n  // Mnemonics\n  type Tuples = Iterable[Tuple]\n  type TuplePred = Tuple => Boolean\n  type TupleMap = Tuple => Tuple\n \n  /**\n   * Shortcuts for executing the given query with the given name.\n   */\n  def ExecQuery(n: String, q: TSQuery) = client.namedSearch(n, q)\n  def ExecQuery(n: String, q: TSQuery, h: Int) = client.namedSearch(n, q, h)\n  \n  /**\n   * Searches for the conjunction of the given queries, naming them with\n   * the given name.\n   */\n  def SearchFor(s: String, q: TSQuery*) = ExecQuery(s, Conjunction(q:_*))\n  \n  /**\n   * This is a partial search object, which is used in join algorithms. It's\n   * a way to represent a query that has yet to be executed against Solr that\n   * will be joined with another set of tuples.\n   */\n  def PartialSearchFor(n: String, q: TSQuery*): PartialSearcher = {\n    PartialSearcher(Conjunction(q:_*), ExecQuery(n, _)) \n  }\n  def PartialSearchFor(n: String, h: Int, q: TSQuery*): PartialSearcher = {\n    PartialSearcher(Conjunction(q:_*), ExecQuery(n, _, h))\n  }\n  \n  /**\n   * A shortcut function for projecting the given tuples on a single attribute.\n   */\n  def ProjectOn(s: String, ts: Tuples) = Operators.Project(On(s))(ts)\n  \n  /**\n   * A shortcut function for projecting the given tuples using the given \n   * map Tuple => Tuple.\n   */\n  def Project(m: TupleMap, ts: Tuples) = Operators.Project(m)(ts)\n  \n  /**\n   * A shortcut for doing a nested loop join on the given pair of tuple \n   * iterables.\n   */\n  def Join(cond: TuplePred, ts1: Tuples, ts2: Tuples) = \n    Operators.NestedLoopJoin(cond)(ts1, ts2)\n\n  /**\n   * A shortcut function for performing a \"search join\". A search join is used\n   * when joining two sets of tuples together, but where one tuple set is too\n   * large to fetch from Solr. Instead, this algorithm takes a smaller set of\n   * tuples (in memory) and iteratively makes a query for each row in the \n   * table. This essentially trades off making one large query (possibly \n   * exhausting memory) with making many smaller ones.\n   * \n   * For example, a SearchJoin can be used when joining \"($x, type, us \n   * president)\" which is relatively small with \"($x, type, lawyer)\" which is \n   * relatively big. The algorithm will enumerate all $x from the first table\n   * and then substitute it in the second query. \n   */\n  def SearchJoin(a1: String, a2: String, ts: Tuples, \n      q: PartialSearcher): Tuples = {\n    // Joins using string similarity instead of strict equality\n    val cond = AttrsSim(a1, a2, 0.9) \n    PartialSearchJoin(cond)(ts, q)\n  }\n\n}\n"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/AlignedWordProcessor.scala",
    "content": "package edu.knowitall.util\n\nimport scala.collection.JavaConverters._\nimport edu.knowitall.common.Resource.using\n\nobject AggregateSortedCounts {\n  \n  val tabRegex = \"\\\\t\".r\n  \n  def main(args: Array[String]): Unit = {\n    \n    val inputFile = args(0)\n    val outputFile = args(1)\n    val inputSource = io.Source.fromFile(inputFile, \"UTF8\")\n    val output = new java.io.PrintStream(outputFile, \"UTF8\")\n\n    var lastFields = Option.empty[(String, String)]\n    var runningCount = 0\n\n    val outputLines = inputSource.getLines.flatMap { line =>\n      tabRegex.split(line) match {\n        case Array(w1, w2, count) => {\n          if (Some((w1, w2)).equals(lastFields)) {\n            runningCount += count.toInt\n            None\n          } else {\n\n            val result = lastFields match {\n              case Some((w1p, w2p)) => {\n                Some(s\"$w1p\\t$w2p\\t$runningCount\")\n              }\n              case None => {\n                None\n              }\n            }\n            runningCount = count.toInt\n            lastFields = Some((w1, w2))\n            result\n          }\n        }\n      }\n    } ++ lastFields.map { case (w1, w2) => s\"$w1\\t$w2\\t$runningCount\" }\n    outputLines.zipWithIndex foreach {case (line, index) =>\n      if (index % 10000 == 0) System.err.println(index)\n      output.println(line)\n    }\n    output.close()\n  }\n}\n\nobject AlignedWordProcessor {\n\n  private val wsRegex = \"\\\\s+\".r\n  private val walignRegex = \"(\\\\d+)-(\\\\d+)\".r\n  \n  def getAlignedPhrases(q1: String, q2: String, alignment: String): Seq[Set[String]] = {\n    \n    val q1Tokens = wsRegex.split(q1)\n    val q2Tokens = wsRegex.split(q2)\n    val wAlignments = wsRegex.split(alignment).map { case walignRegex(n1, n2) => (n1.toInt, n2.toInt) }\n    val q1q2Phrases = wAlignments.groupBy(_._1).map(p=>(p._1, p._2.map(_._2))).toSeq\n    val q2q1Phrases = wAlignments.map(_.swap).groupBy(_._1).map(p=>(p._1, p._2.map(_._2))).toSeq\n    \n    val q1TokenIndexMap = q1Tokens.zipWithIndex.map(_.swap).toMap\n    val q2TokenIndexMap = q2Tokens.zipWithIndex.map(_.swap).toMap\n    \n    //val finalAlignments = wAlignments.map  { case (q1i, q2i) => Set(q1TokenIndexMap(q1i), q2TokenIndexMap(q2i)) }\n    //finalAlignments.distinct.filter(_.size == 2)\n    \n    val q1q2Alignments = q1q2Phrases.map { case (q1, q2s) => Set(q1TokenIndexMap(q1), q2s.map(q2TokenIndexMap.apply).mkString(\" \")) }\n    val q2q1Alignments = q2q1Phrases.map { case (q2, q1s) => Set(q2TokenIndexMap(q2), q1s.map(q1TokenIndexMap.apply).mkString(\" \")) }\n    (q1q2Alignments ++ q2q1Alignments).distinct.filter(_.size == 2)\n  }\n  \n  def main(args: Array[String]): Unit = {\n\n    val inputFile = \"/scratch/usr/rbart/paralex/wikianswers-paraphrases-1.0/word_alignments.txt\"\n    \n    val output = new java.io.PrintStream(args(0))\n      \n    val tabRegex = \"\\\\t\".r\n      \n    using(io.Source.fromFile(inputFile, \"UTF8\")) { source =>\n      val alignedWords = source.getLines.flatMap { line =>\n        tabRegex.split(line) match {\n          case Array(q1, q2, wa) => getAlignedPhrases(q1, q2, wa)\n          case _ => {\n            System.err.println(s\"Warning, unparseable word alignment line: $line\")\n            Seq.empty\n          }\n        }\n      }\n      val cacheCountedAlignedWords = new CacheCountingIterator(1000000, alignedWords)\n      cacheCountedAlignedWords.zipWithIndex foreach { case ((wSet, count), index) =>\n        if (index % 10000 == 0) System.err.print(\".\")\n        val fields = wSet.toSeq.sorted :+ count.toString\n        output.println(fields.mkString(\"\\t\"))\n      }\n    } \n    \n    output.close()\n  }\n}\n\n\n/**\n * Takes an iterator of T, and keeps an LRU cache of the most recently accessed _cacheSize_ elements, counting\n * the number of times they were seen. When an element is evicted from the cache, it is output to the\n * iterator with its count. \n * \n * Maybe useful in reducing output size when you're trying to count occurrences but want to avoid\n * sorting an enormous list of completely distinct elements.\n */\nclass CacheCountingIterator[T](val cacheSize: Int, val source: Iterator[T]) extends Iterator[(T, Int)] {\n  \n  import java.util.LinkedHashMap\n  \n  case class MutableInt(var value: Int) { \n    def increment = { value += 1 }\n  }\n  \n  val countCache = new LinkedHashMap[T, MutableInt](cacheSize * 2, 0.75f, true) {\n    override def removeEldestEntry(entry: java.util.Map.Entry[T, MutableInt]): Boolean = {\n      if (this.size() > cacheSize) {\n        nextEvict = Some((entry.getKey, entry.getValue.value))\n        true\n      } else false\n    } \n  }\n  \n  var nextEvict = Option.empty[(T, Int)]\n  \n  var finalIterator = Option.empty[Iterator[(T, Int)]]\n  \n  def hasNext = source.hasNext || finalIterator.exists(_.hasNext)\n  \n  def next(): (T, Int) = {\n    // if source has more elements, try to iterate over them and wait for nextEvict to become available\n    while (source.hasNext && nextEvict.isEmpty) {\n      val nextT = source.next()\n      countCache.asScala.getOrElseUpdate(nextT, MutableInt(0)).increment\n    }\n    if (finalIterator.isEmpty && !source.hasNext) {\n      finalIterator = Some(countCache.asScala.iterator.map(p => (p._1, p._2.value)))\n    }\n    if (nextEvict.nonEmpty) {\n      val nextTC = nextEvict.get\n      nextEvict = None\n      return nextTC\n    } \n    else return finalIterator.get.next\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/Counter.scala",
    "content": "package edu.knowitall.util\nimport scala.collection.mutable\n\ncase class Counter(counts: mutable.Map[String, Double]) {\n  def this() = this(mutable.Map.empty[String, Double])\n  def increment(k: String) = set(k, get(k) + 1.0)\n  def get(k: String) = counts.getOrElse(k, 0.0)\n  def apply(k: String) = get(k)\n  def set(k: String, v: Double) = counts.update(k, v)\n  override def toString = (counts.map { case (k, v) => s\"$k\\t$v\" }).mkString(\"\\n\")\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/DummyChunker.scala",
    "content": "package edu.knowitall.util\n\nimport edu.knowitall.tool.postag.Postagger\nimport edu.knowitall.tool.chunk.Chunker\nimport edu.knowitall.tool.postag.PostaggedToken\nimport edu.knowitall.tool.chunk.ChunkedToken\n\ncase class DummyChunker(override val postagger: Postagger) extends Chunker {\n  override def chunkPostagged(tokens: Seq[PostaggedToken]) = {\n    tokens map { t => \n      new ChunkedToken(DummyChunker.sym, t.postagSymbol, t.string, t.offset)\n    }\n  }\n}\n\ncase object DummyChunker {\n  val sym = Symbol(\"\")\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/HadoopUtils.scala",
    "content": "package edu.knowitall.util\n\nobject HadoopUtils {\n  \n  \n  \n  def groupIterator[S, T](iter: Iterator[T], f: (T => S)): Iterator[(S, Iterator[T])] =\n    for (head <- iter; headVal = f(head); rest = iter.takeWhile(x => f(x) == headVal)) yield (headVal, List(head).iterator ++ rest)\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/MathUtils.scala",
    "content": "package edu.knowitall.util\n\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.collection.immutable.Interval\n\nobject MathUtils {\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  def clip(x: Double, min: Double, max: Double) = Math.min(Math.max(x, min), max)\n  def scale(x: Double, min: Double, max: Double) = (x - min) / (max - min)\n  def clipScale(x: Double, min: Double, max: Double) = scale(clip(x, min, max), min, max)\n  \n  \n  def intervals(length: Int, size: Int) = for {\n    i <- 0 until (size - length + 1)\n  } yield Interval.open(i, i + length)\n    \n  def allIntervals(size: Int) = for {\n    length <- 1 to size\n    interval <- intervals(length, size)\n  } yield interval\n  \n  def splits(interval: Interval) = for {\n    k <- (interval.head + 1) until interval.end\n    i = interval.head\n    j = interval.end\n  } yield (Interval.open(i, k), Interval.open(k, j))\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/NlpTools.scala",
    "content": "package edu.knowitall.util\n\nimport edu.knowitall.tool.postag.StanfordPostagger\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.tool.chunk.OpenNlpChunker\nimport edu.knowitall.repr.sentence.Lemmatized\nimport edu.knowitall.repr.sentence.Chunked\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.repr.sentence.{Lemmatizer => RepLemmatizer}\nimport edu.knowitall.repr.sentence.{Chunker => RepChunker}\nimport edu.knowitall.tool.tokenize.PTBTokenizer\nimport edu.knowitall.tool.chunk.Chunker\nimport edu.knowitall.repr.sentence.Lemmatizer\nimport edu.knowitall.tool.stem.Stemmer\n\nobject NlpTools {\n  lazy val tagger = new StanfordPostagger\n  lazy val stemmer = new MorphaStemmer\n  lazy val tokenizer = new PTBTokenizer\n  lazy val chunker = new OpenNlpChunker\n  lazy val dummyChunker = DummyChunker(tagger)\n  \n  def process(sentence: String, ch: Chunker = dummyChunker, lm: Stemmer = stemmer): Sentence with Chunked with Lemmatized = {\n    new Sentence(sentence) with RepChunker with RepLemmatizer {\n      val chunker = ch\n      val lemmatizer = lm\n    }\n  }\n  \n  def normalize(text: String, ch: Chunker = dummyChunker, lm: Stemmer = stemmer) = process(text, ch, lm).lemmatizedTokens.map(_.lemma.toLowerCase).mkString(\" \")\n  \n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/NlpUtils.scala",
    "content": "package edu.knowitall.util\n\nimport edu.knowitall.tool.stem.Lemmatized\nimport edu.knowitall.repr.sentence.{Lemmatized => RepLemmatized}\nimport edu.knowitall.tool.chunk.ChunkedToken\nimport edu.knowitall.tool.tokenize.Token\nimport edu.knowitall.tool.postag.PostaggedToken\nimport edu.knowitall.tool.chunk.Chunker\nimport edu.washington.cs.knowitall.regex.RegularExpression\nimport edu.washington.cs.knowitall.regex.ExpressionFactory\nimport edu.washington.cs.knowitall.regex.Expression\nimport edu.washington.cs.knowitall.logic.Expression.{Arg => LogicArg}\nimport edu.washington.cs.knowitall.regex.Expression.BaseExpression\nimport edu.washington.cs.knowitall.logic.LogicExpression\nimport com.google.common.base.{Function => GuavaFunction}\nimport edu.knowitall.repr.sentence.Sentence\nimport edu.knowitall.repr.sentence.Chunked\n\nobject NlpUtils {\n  \n  /**\n   * Taken from Factorie: https://github.com/factorie/factorie/blob/master/src/main/scala/cc/factorie/app/strings/package.scala\n   */\n  def stringShape(word:String, maxRepetitions:Int): String = {\n    val sb = new StringBuffer\n    var i = 0; var c = 'x'; var prevc = 'x'; var repetitions = 0\n    while (i < word.length) {\n      val char = word(i)\n      if (Character.isUpperCase(char)) c = 'A'\n      else if (Character.isLowerCase(char)) c = 'a'\n      else if (Character.isDigit(char)) c = '1'\n      else if (Character.isWhitespace(char)) c = ' '\n      else c = char\n      if (c == prevc) repetitions += 1\n      else { prevc = c; repetitions = 0 }\n      if (repetitions < maxRepetitions) sb.append(c)\n      i += 1\n    }\n    sb.toString\n  }\n  \n  val months = Set(\"january\", \"february\", \"march\", \"april\", \"may\", \"june\", \"july\", \"august\", \"september\", \"october\", \"november\", \"december\")\n  val days = Set(\"sunday\", \"monday\", \"tuesday\", \"wednesday\", \"thursday\", \"friday\", \"saturday\")\n  val year = \"\"\"^\\d\\d\\d\\d$\"\"\".r\n  val datePat = \"\"\"^\\d\\d\\d\\d.\\d\\d.\\d\\d$\"\"\".r\n  def isDateWord(s: String): Boolean = {\n    months.contains(s) || days.contains(s) || datePat.findFirstIn(s).isDefined || year.findFirstIn(s).isDefined\n  }\n  def isDate(s: String): Boolean = {\n    s.split(\" \").map(_.toLowerCase()).exists(isDateWord)\n  }\n  val qPrefixes = List(\"what year\", \"what month\", \"what day\", \"who\", \"when\", \"why\", \"what\", \"when\", \"where\", \"how many\", \"how\", \"be\")\n  def questionPrefix(s: String): String = {\n    val x = s.toLowerCase()\n    qPrefixes.find(prefix => x.startsWith(prefix)) match {\n      case Some(prefix) => prefix\n      case _ => \"UNK\"\n    }\n  }\n  \n  val digitPat = \"[0-9]\".r \n  def containsNumber(s: String) = digitPat.findFirstIn(s).isDefined\n  \n  val lightVerbs = Set(\"be\", \"is\", \"are\", \"was\", \"were\", \"have\", \"has\", \"had\", \"go\", \"take\", \"can\", \"do\", \"does\", \"did\")\n  def isLightVerb(s: String) = lightVerbs contains s.toLowerCase()\n  \n  def serialize(sent: Seq[Lemmatized[ChunkedToken]]) = {\n    val tokens = sent.map(l => l.token.string)\n    val lemmas = sent.map(l => l.lemma)\n    val tags = sent.map(l => l.postag)\n    val chunks = sent.map(l => l.chunk)\n    List(tokens, lemmas, tags, chunks).transpose.flatten.mkString(\" \")\n  }\n  \n  def deserialize(s: String): Seq[Lemmatized[ChunkedToken]]= {\n    s.split(\" \").grouped(4).toList.transpose match {\n      case tokens :: lemmas :: tags :: chunks :: Nil => {\n        val chunkedTokens = Chunker.tokensFrom(chunks, tags, tokens.map(t => new Token(t, 0)))\n        (chunkedTokens zip lemmas) map {\n          case (token, lemma) => new Lemmatized(token, lemma)\n        }\n      }\n      case _ => throw new IllegalArgumentException(s\"Could not deserialize: '$s'\")\n    }\n  }\n  \n  def split(s: Sentence with Chunked with RepLemmatized, i: Int, j: Int) = new\n  Sentence(s.text) with Chunked with RepLemmatized {\n    override val chunks = s.chunks.slice(i, j)\n    val lemmatizedTokens = s.lemmatizedTokens.slice(i, j)\n    override val tokens = s.tokens.slice(i, j)\n  }\n  \n  type TokenType = Lemmatized[ChunkedToken]\n  def makeRegex(expr: String): RegularExpression[TokenType] = {\n    val factory = new ExpressionFactory[TokenType]() {\n      override def create(token: String): BaseExpression[TokenType] = {\n        new BaseExpression[TokenType](token) {\n          val logic = LogicExpression.compile(token,\n          new GuavaFunction[String, LogicArg[TokenType]]() {\n            override def apply(s: String): LogicArg[TokenType] = {\n              new LogicArg[TokenType]() {\n                val pat = \"(.*?)\\\\s*=\\\\s*'(.*)'\".r\n                override def apply(t: TokenType) = s match {\n                  case pat(\"pos\", value) => t.postag == value\n                  case pat(\"lemma\", value) => t.lemma.toLowerCase() == value.toLowerCase()\n                  case pat(\"string\", value) => t.string == value\n                  case pat(\"chunk\", value) => t.chunk == value\n                }\n              }\n            }\n          })\n          override def apply(t: TokenType) = logic.apply(t)\n        }\n      }\n    }\n    RegularExpression.compile(expr, factory)\n  }\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/PPDBParser.scala",
    "content": "package edu.knowitall.util\n\nobject PPDBParser extends App {\n\n  val source = io.Source.fromFile(args(0), \"UTF8\")\n  \n  val splitRegex = \"\"\"\\|\\|\\|\"\"\".r\n  \n  val syns = source.getLines.map { line =>\n    val split = splitRegex.split(line).map(_.trim)\n    (split(1), split(2))\n  } \n  val synMap = syns.toSeq.groupBy(_._1).map(p => (p._1, p._2.map(q => q._2).distinct.sorted))\n  \n  val testSet = Seq(\"be\", \"invent\", \"like\", \"make\", \"edison\", \"chickpea\", \"garbanzo\", \"usa\", \"america\", \"us\", \"of\", \"the\", \"clinton\", \"bill clinton\")\n  \n  testSet foreach { str =>\n    val ss = synMap.getOrElse(str, Seq(\"Nil\"))  \n    println(str + \"\\t\" + ss.mkString(\", \"))\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/ResourceUtils.scala",
    "content": "package edu.knowitall.util\n\nimport java.io.InputStream\nimport scala.io.Source\n\nobject ResourceUtils {\n  def resource(path: String): InputStream = {\n    val stream = getClass.getResourceAsStream(path)\n    if (stream != null) {\n      stream\n    } else {\n      throw new IllegalStateException(s\"could not load resource $path\")\n    }\n  }\n  def resourceSource(path: String) = Source.fromInputStream(resource(path), \"UTF-8\")\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/StringUtils.scala",
    "content": "package edu.knowitall.util\n\nobject StringUtils {\n  \n  def parseDouble(s: String): Option[Double] = try { Some(s.toDouble) } catch { case e:Throwable => None }\n  \n  private val varPat = \"\"\"\\$([A-Za-z0-9_]+)\"\"\".r\n  def interpolate(s: String, bindings: Map[String, String]) = {\n    def acc(s: String, pairs: List[(String, String)]): String = pairs match {\n      case Nil => s\n      case (k, v) :: rest => acc(s.replaceAllLiterally(\"$\"+k, v), rest) \n    }\n    acc(s, bindings.toList)\n  }\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/TimingUtils.scala",
    "content": "package edu.knowitall.util\n\nimport scala.actors.Futures\n\nobject TimingUtils {\n  \n  def time[R](block: => R): (Long, R) = {\n    val t0 = System.nanoTime()\n    val result = block    // call-by-name\n    val t1 = System.nanoTime()\n    (t1 - t0, result)\n  }\n  \n  def runWithTimeout[T](timeoutMs: Long)(f: => T) : Option[T] = {\n    Futures.awaitAll(timeoutMs, Futures.future(f)).head.asInstanceOf[Option[T]]\n  }\n\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/TuplePrinter.scala",
    "content": "package edu.knowitall.util\n\nimport edu.knowitall.execution.Tuple\n\nobject TuplePrinter {\n  \n  val fieldNames = Seq(\"arg1\", \"rel\", \"arg2\")\n  \n  def fieldPartNames(part: Int): Seq[String] = fieldNames.map(fn => s\"r$part.$fn\") \n  \n  def printTuplePart(tuple: Tuple, part: Int): Option[String] = {\n    val parts = fieldPartNames(part)\n    tuple.get(parts.head) match {\n      case Some(_) => {\n        val values = parts.flatMap(tuple.get)\n        val strings = values.map(_.toString)\n        Some(strings.mkString(\", \"))\n      }\n      case None => None\n    }\n  }\n  def printTuple(tuple: Tuple): String = {\n    val partStrings = (0 to 3).map(part => printTuplePart(tuple, part)).takeWhile(_.isDefined).map(_.get)\n    partStrings.map(s => s\"($s)\").mkString(\" \")\n  }\n}"
  },
  {
    "path": "oqa-core/src/main/scala/edu/knowitall/util/WikiAnswersSampler.scala",
    "content": "package edu.knowitall.util\n\nimport edu.knowitall.common.Resource.using\nimport java.io.PrintStream\nimport scala.Array.canBuildFrom\n\n/**\n * A utility (throw-away?) for sampling answers.\n */\nclass WikiAnswersSampler(val inputFile: String) extends Iterable[Set[String]] {\n\n  import io.Source\n  \n  /**\n   * Get the median-length question.\n   */\n  def processLine(line: String): Set[String] = {\n    \n    val parts = line.split(\"\\t\")\n    val questions = parts.filter(_.startsWith(\"q:\"))\n    val cleaned = questions.map(_.drop(2).trim)\n    cleaned.toSet\n  }\n  \n  def iterator = new Iterator[Set[String]]() {\n    val source = io.Source.fromFile(inputFile, \"UTF8\")\n    val lines = source.getLines\n    val questions = lines map processLine\n    var closed = false\n    def hasNext = {\n      if (closed) false\n      else if (!questions.hasNext) {\n        source.close\n        closed = true\n        false\n      }\n      else true\n    }\n    def next = questions.next\n  }\n}\n\nobject WikiAnswersSampler {\n  \n  import edu.knowitall.common.Resource.using\n  import java.io.PrintStream\n  \n  def main(args: Array[String]): Unit = {\n\n    val inputFile = args(0)\n    val outputStream = if (args.length == 1) System.out else new PrintStream(args(1))\n\n    val waSampler = new WikiAnswersSampler(inputFile)\n\n    using(outputStream) { output =>\n      waSampler foreach { qset => output.println(qset.mkString(\"\\t\")) }\n    }\n  }\n}"
  },
  {
    "path": "oqa-data/README.md",
    "content": "Data\n====\nTo download the data, run the following command:\n\n    ./src/main/scripts/download-oqa-data.sh\n\nThis will download all of the necessary data for OQA and store it in \n`knowitall.cs.washington.edu/`. Running the above command will download \nover 33G of compressed data, including the knowledge base and Wikianswers\ncorpus.\n"
  },
  {
    "path": "oqa-data/predictions/README.md",
    "content": "# System Predictions\nThis directory contains the predictions made by each system during evaluation.\nEach file is a collection of predictions in the form `(question, prediction, \nscore, trace)` where `question` is the input question, `prediction` is the \npredicted answer, `score` is the system's score assigned to that answer, and\n`trace` is a string description of the derivation from question to predicted\nanswer. There is one tab-separated prediction per line.\n"
  },
  {
    "path": "oqa-data/predictions/oqa-trec.txt",
    "content": "What was the official name of the Big Dig?\tThe Big Dig\t-1.4649652558726443\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (The Big Dig, Edition Of, The Big Dig) -> The Big Dig (9021ms)\nWhat was the official name of the Big Dig?\tThe Big Dig (Nippers)\t-1.5819179478763412\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition of, the Big Dig) -> (The Big Dig (Nippers), Edition Of, The Big Dig) -> The Big Dig (Nippers) (7905ms)\nWhat was the official name of the Big Dig?\tThe Big Dig at night\t-1.6793785245460886\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (The Big Dig at night, Edition Of, The Big Dig at night) -> The Big Dig at night (9021ms)\nWhat was the official name of the Big Dig?\tDora's Big Dig\t-1.7618451663435675\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (Dora's Big Dig (Dora the Explorer), Edition Of, Dora's Big Dig) -> Dora's Big Dig (9021ms)\nWhat was the official name of the Big Dig?\tThe Big Dig Trivia Quiz Book\t-1.7618451663435675\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (The Big Dig Trivia Quiz Book, Edition Of, The Big Dig Trivia Quiz Book) -> The Big Dig Trivia Quiz Book (9021ms)\nWhat was the official name of the Big Dig?\tBarney Backhoe And the Big City Dig\t-1.9473951103878944\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (Barney Backhoe And the Big City Dig (John Deere), Edition Of, Barney Backhoe And the Big City Dig) -> Barney Backhoe And the Big City Dig (9100ms)\nWhat was the official name of the Big Dig?\tBarney Backhoe And the Big City Dig (John Deere)\t-1.9473951103878944\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition of, the Big Dig) -> (Barney Backhoe And the Big City Dig (John Deere), Edition Of, Barney Backhoe And the Big City Dig) -> Barney Backhoe And the Big City Dig (John Deere) (7906ms)\nWhat was the official name of the Big Dig?\tJoan Eadington\t-2.043569630495155\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The Big Dig, Author, Joan Eadington) -> Joan Eadington (8149ms)\nWhat was the official name of the Big Dig?\tMary Serfozo\t-2.098547391693474\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The big bug dug, Author, Mary Serfozo) -> Mary Serfozo (8149ms)\nWhat was the official name of the Big Dig?\tBilly Mahonie\t-2.286911476536746\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, album, the Big Dig) -> (Billy Mahonie, Albums, The Big Dig) -> Billy Mahonie (9128ms)\nWhat was the official name of the Big Dig?\tLinda Barnes\t-2.286911476536746\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The big dig, Author, Linda Barnes) -> Linda Barnes (8151ms)\nWhat was the official name of the Big Dig?\tSavoir Faire\t-2.286911476536746\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Release, Savoir Faire) -> Savoir Faire (9650ms)\nWhat was the official name of the Big Dig?\tWilliam Derbyshire\t-2.286911476536746\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Tracks, William Derbyshire) -> William Derbyshire (8880ms)\nWhat was the official name of the Big Dig?\tFamily Fodder\t-2.3418892377350646\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (Family Fodder, Tracks Recorded, The Big Dig) -> Family Fodder (9784ms)\nWhat was the official name of the Big Dig?\tmodern America\t-2.366304804333826\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is, modern America) -> modern America (1841ms)\nWhat was the official name of the Big Dig?\tDan McNichol\t-2.371187288284283\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The Big Dig, Author, Dan McNichol) -> Dan McNichol (8150ms)\nWhat was the official name of the Big Dig?\tYeah, Yeah, Yeah, Yeah, Yeah\t-2.371187288284283\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Tracks, Yeah, Yeah, Yeah, Yeah, Yeah) -> Yeah, Yeah, Yeah, Yeah, Yeah (8881ms)\nWhat was the official name of the Big Dig?\tWatching People Speaking When You Can't Hear What They're Saying\t-2.408803651209449\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Tracks, Watching People Speaking When You Can't Hear What They're Saying) -> Watching People Speaking When You Can't Hear What They're Saying (8881ms)\nWhat was the official name of the Big Dig?\tArthur J. Roth\t-2.426165049482602\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The big dig, Author, Arthur J. Roth) -> Arthur J. Roth (8149ms)\nWhat was the official name of the Big Dig?\tMore Great Hits!\t-2.426165049482602\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Release, More Great Hits!) -> More Great Hits! (9865ms)\nWhat was the official name of the Big Dig?\tNothing to Hide\t-2.426165049482602\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Releases, Nothing to Hide) -> Nothing to Hide (9864ms)\nWhat was the official name of the Big Dig?\tBlaumilch Canal\t-2.4498227268568407\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, know as, the Big Dig) -> (Blaumilch Canal, Also known as, The Big Dig) -> Blaumilch Canal (7570ms)\nWhat was the official name of the Big Dig?\tSusan Knopf\t-2.4655892004312827\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (Barney Backhoe And the Big City Dig, Author, Susan Knopf) -> Susan Knopf (8149ms)\nWhat was the official name of the Big Dig?\tThe Smithsonian Institute Blues (Or the Big Dig)\t-2.473288844795447\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, recording, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Recording, The Smithsonian Institute Blues (Or the Big Dig)) -> The Smithsonian Institute Blues (Or the Big Dig) (10178ms)\nWhat was the official name of the Big Dig?\tWe Accept American Dollars\t-2.473288844795447\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Tracks, We Accept American Dollars) -> We Accept American Dollars (8911ms)\nWhat was the official name of the Big Dig?\tIn My Eyes\t-2.473288844795447\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, recording, $x) -> (The Big Dig, Recorded by, In My Eyes) -> In My Eyes (10177ms)\nWhat was the official name of the Big Dig?\tfull throttle\t-2.505250651736513\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is at, full throttle) -> full throttle (7517ms)\nWhat was the official name of the Big Dig?\tJack Webb\t-2.534098538604378\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, tv episode, the Big Dig) -> (Jack Webb, TV Episodes Directed, The Big Dig) -> Jack Webb (8538ms)\nWhat was the official name of the Big Dig?\tSimon Spotlight/Nickelodeon\t-2.5813963752190325\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (Simon Spotlight/Nickelodeon, Book editions published, Dora's Big Dig (Dora the Explorer)) -> Simon Spotlight/Nickelodeon (8506ms)\nWhat was the official name of the Big Dig?\tThe Dust Blows Forward\t-2.5813963752190325\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (The Dust Blows Forward, Tracks, The Smithsonian Institute Blues (Or the Big Dig)) -> The Dust Blows Forward (10229ms)\nWhat was the official name of the Big Dig?\tDon Van Vliet\t-2.609424253476999\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (Don Van Vliet, Tracks Recorded, The Smithsonian Institute Blues (Or the Big Dig)) -> Don Van Vliet (10228ms)\nWhat was the official name of the Big Dig?\tLick My Decals Off, Baby\t-2.6345018287604427\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Releases, Lick My Decals Off, Baby) -> Lick My Decals Off, Baby (10363ms)\nWhat was the official name of the Big Dig?\tRunning Press Kids\t-2.677491957817775\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (Running Press Kids, Book editions published, Barney Backhoe And the Big City Dig (John Deere)) -> Running Press Kids (8506ms)\nWhat was the official name of the Big Dig?\tCaptain Beefheart & His Magic Band\t-2.677491957817775\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (Captain Beefheart & His Magic Band, Tracks Recorded, The Smithsonian Institute Blues (Or the Big Dig)) -> Captain Beefheart & His Magic Band (10363ms)\nWhat was the official name of the Big Dig?\tAnt Farm\t-2.7582722937567383\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Releases, Ant Farm) -> Ant Farm (10582ms)\nWhat was the official name of the Big Dig?\tManywhere M5\t-2.7637447490650198\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Manywhere M5, Release, The Big Dig) -> Manywhere M5 (10582ms)\nWhat was the official name of the Big Dig?\tManywhere M1\t-2.7637447490650198\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Manywhere M1, Release, The Big Dig) -> Manywhere M1 (10583ms)\nWhat was the official name of the Big Dig?\tExhibit A\t-2.794946128492922\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, Exhibit A) -> Exhibit A (7571ms)\nWhat was the official name of the Big Dig?\ta scandal\t-2.8011451557296385\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, may always be, a scandal) -> a scandal (7571ms)\nWhat was the official name of the Big Dig?\tNew York City\t-2.8093931180553655\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, place, $x) -> (The Big Dig at night, Place of publication, New York City) -> New York City (7607ms)\nWhat was the official name of the Big Dig?\tMassDOT officials\t-2.8387967758542167\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig tunnels, is being touted by, MassDOT officials) -> MassDOT officials (7607ms)\nWhat was the official name of the Big Dig?\ta highway\t-2.849958131058618\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is, a highway) -> a highway (7607ms)\nWhat was the official name of the Big Dig?\tMassachusetts\t-2.8517414875852607\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, Massachusetts) -> Massachusetts (7611ms)\nWhat was the official name of the Big Dig?\t8 Bold Souls\t-2.8658463055761842\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, recording, $x) -> (The Big Dig, Recorded by, 8 Bold Souls) -> 8 Bold Souls (10670ms)\nWhat was the official name of the Big Dig?\ta less popular choice\t-2.8953960989940555\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, would be, a less popular choice) -> a less popular choice (7905ms)\nWhat was the official name of the Big Dig?\tRay Fishwick\t-2.896907828233207\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The Big Dig, Author, Ray Fishwick) -> Ray Fishwick (8539ms)\nWhat was the official name of the Big Dig?\tMeg\t-2.9179131354538037\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, Meg) -> Meg (8539ms)\nWhat was the official name of the Big Dig?\tAlbum\t-2.919963460135454\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, album, the Big Dig) -> (Album, Albums, The Big Dig) -> Album (10670ms)\nWhat was the official name of the Big Dig?\ta maze\t-2.95134775782805\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig interchange, is, a maze) -> a maze (8539ms)\nWhat was the official name of the Big Dig?\tAnimation\t-2.973566777303815\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, film, the Big Dig) -> (Animation, Films of this genre, Bob the Builder: The Big Dino Dig) -> Animation (10670ms)\nWhat was the official name of the Big Dig?\ta decade\t-2.9831599600074847\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was known about, a decade) -> a decade (10670ms)\nWhat was the official name of the Big Dig?\ta couple\t-2.9877859592834946\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was supposed to take, a couple) -> a couple (10792ms)\nWhat was the official name of the Big Dig?\tGlenda\t-2.9979319214712516\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Glenda, Release, The Big Dig) -> Glenda (10821ms)\nWhat was the official name of the Big Dig?\tFlagiolettes\t-2.9979319214712516\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Flagiolettes, Release, The Big Dig) -> Flagiolettes (10822ms)\nWhat was the official name of the Big Dig?\tDrago\t-2.9979319214712516\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Drago, Releases, The Big Dig) -> Drago (10793ms)\nWhat was the official name of the Big Dig?\ta prison\t-2.9997798346218554\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, a prison) -> a prison (10821ms)\nWhat was the official name of the Big Dig?\tCrammed Global Soundclash 1980-89, Part One: World Fusion\t-3.0019817142577363\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Releases, Crammed Global Soundclash 1980-89, Part One: World Fusion) -> Crammed Global Soundclash 1980-89, Part One: World Fusion (10821ms)\nWhat was the official name of the Big Dig?\ta major public works projects\t-3.0050366356919946\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is, a major public works projects) -> a major public works projects (10959ms)\nWhat was the official name of the Big Dig?\tBoston real estate\t-3.0081083833941573\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is going to make, Boston real estate) -> Boston real estate (10960ms)\nWhat was the official name of the Big Dig?\tThe Dust Blows Forward (disc 1)\t-3.02705928954118\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (The Dust Blows Forward (disc 1), Tracks, The Smithsonian Institute Blues (Or the Big Dig)) -> The Dust Blows Forward (disc 1) (11009ms)\nWhat was the official name of the Big Dig?\tPan Macmillan\t-3.0398500073488366\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (Pan Macmillan, Book editions published, The Big Dig (Nippers)) -> Pan Macmillan (11009ms)\nWhat was the official name of the Big Dig?\ta good first step\t-3.056370194440608\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is, a good first step) -> a good first step (11009ms)\nWhat was the official name of the Big Dig?\ta Mitt Romney big government project\t-3.066930474303179\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was, a Mitt Romney big government project) -> a Mitt Romney big government project (11130ms)\nWhat was the official name of the Big Dig?\t1999-07-05\t-3.067283603497709\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Release Date, 1999-07-05) -> 1999-07-05 (11130ms)\nWhat was the official name of the Big Dig?\ta nightmare\t-3.0972404112916028\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig interchange, is, a nightmare) -> a nightmare (11130ms)\nWhat was the official name of the Big Dig?\tMacmillan\t-3.1178834004494025\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (Macmillan, Book editions published, The big dig) -> Macmillan (11131ms)\nWhat was the official name of the Big Dig?\tChannel Four\t-3.1425147160760933\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was supported by, Channel Four) -> Channel Four (11237ms)\nWhat was the official name of the Big Dig?\tless enchanting\t-3.1446065023797134\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is somewhat, less enchanting) -> less enchanting (11237ms)\nWhat was the official name of the Big Dig?\tthe MBTA books\t-3.154466034759934\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig debt, should be on, the MBTA books) -> the MBTA books (11295ms)\nWhat was the official name of the Big Dig?\tContinue reading\t-3.155501123528821\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is ?, Continue reading) -> Continue reading (11295ms)\nWhat was the official name of the Big Dig?\tCapital Growth\t-3.1613127495356004\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is being organised by, Capital Growth) -> Capital Growth (11295ms)\nWhat was the official name of the Big Dig?\ta tight , self-contained stand-alone mystery\t-3.1909694332221585\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, a tight , self-contained stand-alone mystery) -> a tight , self-contained stand-alone mystery (11294ms)\nWhat was the official name of the Big Dig?\ta Tip O'Neil/Ted Kennedy project\t-3.20865337205327\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was actually, a Tip O'Neil/Ted Kennedy project) -> a Tip O'Neil/Ted Kennedy project (11295ms)\nWhat was the official name of the Big Dig?\tFamily Film\t-3.2110713376832383\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, film, the Big Dig) -> (Family Film, Films of this genre, Bob the Builder: The Big Dino Dig) -> Family Film (11295ms)\nWhat was the official name of the Big Dig?\thigh school seniors\t-3.212795620031762\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig Scholarship, is available to, high school seniors) -> high school seniors (11470ms)\nWhat was the official name of the Big Dig?\tseven years\t-3.227857595060903\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, be completed in, seven years) -> seven years (11470ms)\nWhat was the official name of the Big Dig?\ta total flop\t-3.2431899997761677\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is, a total flop) -> a total flop (11471ms)\nWhat was the official name of the Big Dig?\tRoute 93\t-3.2938922644676767\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was improving, Route 93) -> Route 93 (11471ms)\nWhat was the official name of the Big Dig?\ta few years\t-3.297073171613416\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was only completed finally, a few years) -> a few years (11632ms)\nWhat was the official name of the Big Dig?\tThe big dig\t-3.2989674448547675\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (The big dig, Edition Of, The big dig) -> The big dig (11632ms)\nWhat was the official name of the Big Dig?\tDora's Big Dig (Dora the Explorer)\t-3.3210339802861206\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Dora's Big Dig (Dora the Explorer), Edition Of, Dora's Big Dig) -> Dora's Big Dig (Dora the Explorer) (11634ms)\nWhat was the official name of the Big Dig?\t620 thousand Truckloads\t-3.3410555440278937\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is moving, 620 thousand Truckloads) -> 620 thousand Truckloads (11633ms)\nWhat was the official name of the Big Dig?\tan immense overhaul\t-3.342842930082026\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was, an immense overhaul) -> an immense overhaul (11843ms)\nWhat was the official name of the Big Dig?\tfood charity Sustain\t-3.3678089796401567\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, will be coordinated by, food charity Sustain) -> food charity Sustain (11843ms)\nWhat was the official name of the Big Dig?\tthe Central Artery\t-3.387067663638055\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was jacking up, the Central Artery) -> the Central Artery (11843ms)\nWhat was the official name of the Big Dig?\t18\t-3.3879694845630133\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 18) -> 18 (12056ms)\nWhat was the official name of the Big Dig?\t10\t-3.3879694845630133\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 10) -> 10 (12057ms)\nWhat was the official name of the Big Dig?\t37\t-3.3879694845630133\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 37) -> 37 (12055ms)\nWhat was the official name of the Big Dig?\t6\t-3.3879694845630133\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 6) -> 6 (12056ms)\nWhat was the official name of the Big Dig?\t9\t-3.3879694845630133\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 9) -> 9 (11844ms)\nWhat was the official name of the Big Dig?\tLondon\t-3.38818885442899\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, will be also be held in, London) -> London (12055ms)\nWhat was the official name of the Big Dig?\tcost overruns and delays\t-3.396590193236788\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, has been plagued by, cost overruns and delays) -> cost overruns and delays (12056ms)\nWhat was the official name of the Big Dig?\tThe big bug dug\t-3.4159201368584644\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition of, the Big Dig) -> (The big bug dug, Edition Of, The big bug dug) -> The big bug dug (12286ms)\nWhat was the official name of the Big Dig?\tan elevated highway\t-3.418296623515565\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is moving, an elevated highway) -> an elevated highway (12287ms)\nWhat was the official name of the Big Dig?\ta local legend\t-3.510834922243572\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was, a local legend) -> a local legend (12287ms)\nWhat was the official name of the Big Dig?\t5.8 billion dollars\t-3.5311079295117525\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was supposed to be, 5.8 billion dollars) -> 5.8 billion dollars (12287ms)\nWhat was the official name of the Big Dig?\t9780312282707\t-3.5492245009803796\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780312282707, Book Editions, The big dig) -> 9780312282707 (12395ms)\nWhat was the official name of the Big Dig?\t9780760723074\t-3.5492245009803796\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780760723074, Book Editions, The Big Dig) -> 9780760723074 (12395ms)\nWhat was the official name of the Big Dig?\t17\t-3.5666472084575505\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Track #, 17) -> 17 (12395ms)\nWhat was the official name of the Big Dig?\t12\t-3.5666472084575505\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Track #, 12) -> 12 (12395ms)\nWhat was the official name of the Big Dig?\ta $ 14.6 billion band-aid\t-3.590600490616258\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is just, a $ 14.6 billion band-aid) -> a $ 14.6 billion band-aid (12395ms)\nWhat was the official name of the Big Dig?\ta good idea\t-3.5996469208944273\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was, a good idea) -> a good idea (12395ms)\nWhat was the official name of the Big Dig?\t9780439179331\t-3.604202262178698\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780439179331, Book Editions, The big bug dug) -> 9780439179331 (12549ms)\nWhat was the official name of the Big Dig?\t9780333173060\t-3.604202262178698\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780333173060, Book Editions, The Big Dig (Nippers)) -> 9780333173060 (12549ms)\nWhat was the official name of the Big Dig?\ta huge success\t-3.61059325107916\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, has been, a huge success) -> a huge success (12549ms)\nWhat was the official name of the Big Dig?\tthe Authority\t-3.613507900010158\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig project, was dumped onto, the Authority) -> the Authority (12549ms)\nWhat was the official name of the Big Dig?\tthe Queen\t-3.615132006862778\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Royal Dig, is an example of, the Queen) -> the Queen (12550ms)\nWhat was the official name of the Big Dig?\tBig Pig on a Dig\t-3.650900547476035\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Pig on a Dig, Edition Of, Big Pig on a Dig) -> Big Pig on a Dig (12791ms)\nWhat was the official name of the Big Dig?\t9780760726891\t-3.651326057491543\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780760726891, Book Editions, The Big Dig at night) -> 9780760726891 (12791ms)\nWhat was the official name of the Big Dig?\t9780760733165\t-3.651326057491543\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780760733165, Book Editions, The Big Dig Trivia Quiz Book) -> 9780760733165 (12791ms)\nWhat was the official name of the Big Dig?\ta long time\t-3.6681029679770623\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig all, was a mess for, a long time) -> a long time (12879ms)\nWhat was the official name of the Big Dig?\t9781416908067\t-3.692166680096009\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9781416908067, Book Editions, Dora's Big Dig (Dora the Explorer)) -> 9781416908067 (12879ms)\nWhat was the official name of the Big Dig?\tBob's Big Dig\t-3.7388649653933457\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Bob's Big Dig (Deluxe Tip and Tilt), Edition Of, Bob's Big Dig) -> Bob's Big Dig (12879ms)\nWhat was the official name of the Big Dig?\tBob's Big Dig (Deluxe Tip and Tilt)\t-3.7388649653933457\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Bob's Big Dig (Deluxe Tip and Tilt), Edition Of, Bob's Big Dig) -> Bob's Big Dig (Deluxe Tip and Tilt) (12879ms)\nWhat was the official name of the Big Dig?\tHaymarket\t-3.7542779556196746\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is now pushing from, Haymarket) -> Haymarket (12914ms)\nWhat was the official name of the Big Dig?\tBig Dig\t-3.7746005101722533\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Dig: A Pop-Up Construction Ragged Bears, Edition Of, Big Dig) -> Big Dig (12914ms)\nWhat was the official name of the Big Dig?\tBig Dig: A Pop-Up Construction Ragged Bears\t-3.7746005101722533\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Dig: A Pop-Up Construction Ragged Bears, Edition Of, Big Dig) -> Big Dig: A Pop-Up Construction Ragged Bears (12914ms)\nWhat was the official name of the Big Dig?\t9780762426591\t-3.787461466173095\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780762426591, Book Editions, Barney Backhoe And the Big City Dig (John Deere)) -> 9780762426591 (12951ms)\nWhat was the official name of the Big Dig?\tprehistoric fossils\t-3.790130779063797\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is the soaring price of, prehistoric fossils) -> prehistoric fossils (12985ms)\nWhat was the official name of the Big Dig?\tshort on cash\t-3.8117496104661996\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was, short on cash) -> short on cash (12985ms)\nWhat was the official name of the Big Dig?\tBig Pig on a Dig (Easy Words to Read Series)\t-3.834159751470432\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Pig on a Dig (Easy Words to Read Series), Edition Of, Big Pig on a Dig) -> Big Pig on a Dig (Easy Words to Read Series) (12985ms)\nWhat was the official name of the Big Dig?\tBig Pig on a Dig (Usborne Easy Words to Read)\t-3.834159751470432\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Pig on a Dig (Usborne Easy Words to Read), Edition Of, Big Pig on a Dig) -> Big Pig on a Dig (Usborne Easy Words to Read) (12985ms)\nWhat was the official name of the Big Dig?\tBig Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B)\t-3.834159751470432\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B), Edition Of, Big Digs) -> Big Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B) (12985ms)\nWhat was the official name of the Big Dig?\tBoston\t-3.8484447458393163\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig project, has been completed in, Boston) -> Boston (13053ms)\nWhat was the official name of the Big Dig?\ttime and on budget\t-3.8668186480597995\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was on, time and on budget) -> time and on budget (13053ms)\nWhat was the official name of the Big Dig?\tindividuals and teams\t-3.943762233246234\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is open to, individuals and teams) -> individuals and teams (13153ms)\nWhat was the official name of the Big Dig?\tPaul Stickland\t-3.9601138922267825\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Dig, Author, Paul Stickland) -> Paul Stickland (13153ms)\nWhat was the official name of the Big Dig?\tJohn Fairhurst\t-3.987602772825942\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (John Fairhurst, Tracks Recorded, Big Dig) -> John Fairhurst (13355ms)\nWhat was the official name of the Big Dig?\tBig Bug Dug (Scholastic Reader: Level 1 (Paperback))\t-4.1671579709529905\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Bug Dug (Scholastic Reader: Level 1 (Paperback)), Edition Of, Big Bug Dug (Scholastic Reader: Level 1) -> Big Bug Dug (Scholastic Reader: Level 1 (Paperback)) (13764ms)\nWhat was the official name of the Big Dig?\tBig Dinosaur Dig (DK Readers: Level 3 (Sagebrush))\t-4.1671579709529905\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush)), Edition Of, Big Dinosaur Dig (DK Readers: Level 3) -> Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush)) (13764ms)\nWhat was the official name of the Big Dig?\tBig Bug Dug (Scholastic Reader: Level 1\t-4.1671579709529905\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Bug Dug (Scholastic Reader: Level 1 (Paperback)), Edition Of, Big Bug Dug (Scholastic Reader: Level 1) -> Big Bug Dug (Scholastic Reader: Level 1 (13764ms)\nWhat was the official name of the Big Dig?\tBig Dinosaur Dig (DK Readers: Level 3\t-4.1671579709529905\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush)), Edition Of, Big Dinosaur Dig (DK Readers: Level 3) -> Big Dinosaur Dig (DK Readers: Level 3 (13764ms)\nWhat was the official name of the Big Dig?\tMeish Goldish\t-4.2034557382683735\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Digs, Author, Meish Goldish) -> Meish Goldish (13826ms)\nWhat was the official name of the Big Dig?\tDepth Perception\t-4.2034557382683735\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (Depth Perception, Tracks, Big Dig) -> Depth Perception (13858ms)\nWhat was the official name of the Big Dig?\tBig Digs\t-4.2212447569428875\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B), Edition Of, Big Digs) -> Big Digs (13858ms)\nWhat was the official name of the Big Dig?\tAlison Inches\t-4.230944618867532\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Dora's Big Dig, Author, Alison Inches) -> Alison Inches (13954ms)\nWhat was the official name of the Big Dig?\tBendix Anderson\t-4.230944618867532\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Bob's Big Dig, Author, Bendix Anderson) -> Bendix Anderson (13858ms)\nWhat was the official name of the Big Dig?\tJenny Tyler\t-4.274926827826189\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Pig on a Dig, Author, Jenny Tyler) -> Jenny Tyler (14055ms)\nWhat was the official name of the Big Dig?\tDig This Big Crux\t-4.287731550015911\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, recording, $x) -> (Dig This Big Crux, Recording, Dig This Big Crux) -> Dig This Big Crux (14086ms)\nWhat was the official name of the Big Dig?\tEsther Ripley\t-4.308560281735748\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Dinosaur Dig (DK Readers: Level 3, Author, Esther Ripley) -> Esther Ripley (14086ms)\nWhat was the official name of the Big Dig?\tWROR Tom's Townie Tunes\t-4.338782328271493\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (WROR Tom's Townie Tunes, Tracks, Big Dig) -> WROR Tom's Townie Tunes (14149ms)\nWhat was the official name of the Big Dig?\tHillman Morning Show\t-4.338782328271493\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, recording, big dig) -> (Hillman Morning Show, Tracks Recorded, Big Dig) -> Hillman Morning Show (14149ms)\nWhat was the official name of the Big Dig?\tLos Changos Trio\t-4.338782328271493\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, recording, big dig) -> (Los Changos Trio, Tracks Recorded, Big Dig) -> Los Changos Trio (14149ms)\nWhat was the official name of the Big Dig?\tTandem Library\t-4.346397917384003\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition, big dig) -> (Tandem Library, Book editions published, Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush))) -> Tandem Library (14179ms)\nWhat was the official name of the Big Dig?\tPhil Cox\t-4.359202639573725\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Pig on a Dig, Author, Phil Cox) -> Phil Cox (14179ms)\nWhat was the official name of the Big Dig?\t1998\t-4.364821280147983\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, be completed by, 1998) -> 1998 (14180ms)\nWhat was the official name of the Big Dig?\tanalogftw - The Waatu Remixes\t-4.377070411963179\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, release, $x) -> (BigDug (Ft. Verbezerker), Release, analogftw - The Waatu Remixes) -> analogftw - The Waatu Remixes (14214ms)\nWhat was the official name of the Big Dig?\tEl Hombre Trajeado\t-4.377070411963179\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, recording, big dig) -> (El Hombre Trajeado, Tracks Recorded, Dig This Big Crux) -> El Hombre Trajeado (14214ms)\nWhat was the official name of the Big Dig?\tthe big reasons\t-4.386003896021704\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig plan, is one of, the big reasons) -> the big reasons (14297ms)\nWhat was the official name of the Big Dig?\tGrace MacCarone\t-4.392836093483285\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Bug Dug (Scholastic Reader: Level 1, Author, Grace MacCarone) -> Grace MacCarone (14297ms)\nWhat was the official name of the Big Dig?\tthe creation\t-4.417561297905292\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is responsible for, the creation) -> the creation (14355ms)\nWhat was the official name of the Big Dig?\tRebound by Sagebrush\t-4.458640677219381\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition, big dig) -> (Rebound by Sagebrush, Book editions published, Big Pig on a Dig (Usborne Easy Words to Read)) -> Rebound by Sagebrush (14409ms)\nWhat was the official name of the Big Dig?\tdollars\t-4.470840540493773\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is billions of, dollars) -> dollars (14410ms)\nWhat was the official name of the Big Dig?\tthe largest ?\t-4.484149851398502\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was one of, the largest ?) -> the largest ? (14445ms)\nWhat was the official name of the Big Dig?\tdust\t-4.502481058350866\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, are clouds of, dust) -> dust (14445ms)\nWhat was the official name of the Big Dig?\t2007\t-4.511598120012633\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was completed in, 2007) -> 2007 (14445ms)\nWhat was the official name of the Big Dig?\tinfrastructure\t-4.5162199604986695\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is probably the last piece of, infrastructure) -> infrastructure (14503ms)\nWhat was the official name of the Big Dig?\tthe United Kingdom?s number\t-4.574610315418402\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (Big Dug, is, the United Kingdom?s number) -> the United Kingdom?s number (14592ms)\nWhat was the official name of the Big Dig?\ta Woman\t-4.635685237208452\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (Big-Dig Big-Dig, is a guy looking for, a Woman) -> a Woman (14653ms)\nWhat was the official name of the Big Dig?\tBigDug (Ft. Verbezerker)\t-4.6450869978049845\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, recording, big dig) -> (BigDug (Ft. Verbezerker), Recording, BigDug (Ft. Verbezerker)) -> BigDug (Ft. Verbezerker) (14728ms)\nWhat was the official name of the Big Dig?\tBigDug\t-4.6450869978049845\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, recording, $x) -> (BigDug, Recording, BigDug) -> BigDug (14772ms)\nWhat was the official name of the Big Dig?\t2002\t-4.691849248360634\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was published in, 2002) -> 2002 (14800ms)\nWhat was the official name of the Big Dig?\t13 times\t-4.729470703111549\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (Boston ?s ?Big Dig?, is over, 13 times) -> 13 times (14801ms)\nWhat was the official name of the Big Dig?\t107.3 WAAF: Survive This!\t-4.73133978905223\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, release, $x) -> (Big Dig, Release, 107.3 WAAF: Survive This!) -> 107.3 WAAF: Survive This! (14801ms)\nWhat was the official name of the Big Dig?\ta classic pork barrel project\t-4.7450766649689\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> ('s Big Dig, was, a classic pork barrel project) -> a classic pork barrel project (14918ms)\nWhat was the official name of the Big Dig?\t2011\t-4.755994162124095\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (Bob the Builder: The Big Dino Dig, Initial release date, 2011) -> 2011 (14918ms)\nWhat was the official name of the Big Dig?\tthe MHC\t-4.757005738464656\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> ('s Big Dig, will be available on, the MHC) -> the MHC (15181ms)\nWhat was the official name of the Big Dig?\tthe Israeli-Palestinian conflict\t-4.762361024631003\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (big dig, were connected to, the Israeli-Palestinian conflict) -> the Israeli-Palestinian conflict (15181ms)\nWhat was the official name of the Big Dig?\tthe region?s\t-4.840621060084185\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is critical to, the region?s) -> the region?s (15860ms)\nWhat was the official name of the Big Dig?\tTom Doyle\t-4.840940970563993\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, recording, $x) -> (Big Dig, Recorded by, Tom Doyle) -> Tom Doyle (16016ms)\nWhat was the official name of the Big Dig?\tthe most expensive highway project\t-4.8837262059925015\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was, the most expensive highway project) -> the most expensive highway project (16016ms)\nWhat was the official name of the Big Dig?\t?ann\t-4.892238489009978\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (?ann, Tracks, Big Dig) -> ?ann (16086ms)\nWhat was the official name of the Big Dig?\tBand\t-4.892238489009978\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, release, $x) -> (Big Dig, Releases, Band) -> Band (16085ms)\nWhat was the official name of the Big Dig?\thalf a century\t-4.906394557158104\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, become, the Big Dig) -> (half a century, would become, the Big Dig) -> half a century (16085ms)\nWhat was the official name of the Big Dig?\tunderground roadways\t-4.915105146386068\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, be know as, the Big Dig) -> (underground roadways, was know as, the ?Big Dig?) -> underground roadways (16086ms)\nWhat was the official name of the Big Dig?\tthe Silver Line\t-4.947951845032593\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, become, the Big Dig) -> (the Silver Line, really become, the Big Dig Deux) -> the Silver Line (16212ms)\nWhat was the official name of the Big Dig?\tthe ugly raised highways\t-4.951518634144701\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, was to take down, the ugly raised highways) -> the ugly raised highways (16213ms)\nWhat was the official name of the Big Dig?\ta series\t-4.954103186425115\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> ('s Big Dig, is manifested with, a series) -> a series (16212ms)\nWhat was the official name of the Big Dig?\tthe rate\t-4.964203663031941\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, are better known than, the rate) -> the rate (16212ms)\nWhat was the official name of the Big Dig?\ttime\t-4.98807189082907\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was on, time) -> time (16381ms)\nWhat was the official name of the Big Dig?\tBig Dig, Liverpool\t-4.993411910673951\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, know as, $x) -> (Big Dig, Also known as, Big Dig, Liverpool) -> Big Dig, Liverpool (16381ms)\nWhat was the official name of the Big Dig?\tSaccade\t-5.00693878158187\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (Saccade, Tracks, Dig This Big Crux) -> Saccade (16572ms)\nWhat was the official name of the Big Dig?\tthe old dump\t-5.030025511616546\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, were used to cap, the old dump) -> the old dump (16572ms)\nWhat was the official name of the Big Dig?\tcash\t-5.05534454456879\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was short on, cash) -> cash (16572ms)\nWhat was the official name of the Big Dig?\tSeoul\t-5.081027616248525\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> ('s big dig, is happening in, Seoul) -> Seoul (16572ms)\nWhat was the official name of the Big Dig?\ta winner\t-5.167730017110162\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, play, the Big Dig) -> (a winner, can play, the ?Big Dig? game) -> a winner (16826ms)\nWhat was the official name of the Big Dig?\tfour times\t-5.191146190782728\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (Big Dig construction, is mentioned, four times) -> four times (16826ms)\nWhat was the official name of the Big Dig?\tMilford\t-5.213076612378963\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, be know as, the Big Dig) -> (Milford, was known as, the ?Big Dig) -> Milford (16935ms)\nWhat was the official name of the Big Dig?\tEleven Eyes\t-5.244443341961294\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, recording, $x) -> (Big Dig, Recorded by, Eleven Eyes) -> Eleven Eyes (16935ms)\nWhat was the official name of the Big Dig?\t14\t-5.304513746294641\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, track, $x) -> (Big Dig, Track #, 14) -> 14 (16988ms)\nWhat was the official name of the Big Dig?\t2\t-5.304513746294641\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, track, $x) -> (Big Dig, Track #, 2) -> 2 (16988ms)\nWhat was the official name of the Big Dig?\t4\t-5.304513746294641\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, track, $x) -> (Big Dig, Track #, 4) -> 4 (16988ms)\nWhat was the official name of the Big Dig?\tthe money\t-5.312649962308876\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig mentality, was right on, the money) -> the money (17032ms)\nWhat was the official name of the Big Dig?\tthe automobile\t-5.320949882058865\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is essentially an investment in, the automobile) -> the automobile (17032ms)\nWhat was the official name of the Big Dig?\tsight\t-5.373170989504877\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, are in, sight) -> sight (17032ms)\nWhat was the official name of the Big Dig?\tthe soaring price of prehistoric fossils\t-5.383282654180346\tWhat was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is, the soaring price of prehistoric fossils) -> the soaring price of prehistoric fossils (17032ms)\nHow many times has he married?\tIaniv\t-12.81077192838735\tHow many times has he married? -> how many time [ have he ] marry ? -> who be have he husband ? -> $x: ($x, be have, he husband) -> (Ianiv, has been, a lucky husband ? he?s) -> Ianiv (13326ms)\nIn what city was the operation performed?\tPoint.\t-10.840717792966203\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> how many square foot be the operation perform ? -> $x: ($x, instance of, square foot) (the operation, perform, $x) -> (Point., Instance Of, eight foot-square screen) (the sixth operation, performed, point) -> Point. (10190ms)\nIn what city was the operation performed?\tthree waves\t-10.975307992244609\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, had to be performed in, three waves) -> three waves (7738ms)\nIn what city was the operation performed?\tfive minutes\t-10.993876117476816\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (The operation, should have been performed in, five minutes) -> five minutes (7738ms)\nIn what city was the operation performed?\ta medical spa\t-11.001074765024127\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (The operation, had been performed in, a medical spa) -> a medical spa (7738ms)\nIn what city was the operation performed?\tdaylight\t-11.02467710079339\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, had been successfully performed in, daylight) -> daylight (7738ms)\nIn what city was the operation performed?\tChicago and Mon\t-11.02759722969975\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: (the operation, perform day, $x) -> (The operation, was performed a few days ago in, Chicago and Mon) -> Chicago and Mon (13443ms)\nIn what city was the operation performed?\tIndia\t-11.129157089204035\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the same operation, has been performed in, India) -> India (7738ms)\nIn what city was the operation performed?\tevery generation\t-11.234692913709186\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (The operation, still had to be performed in, every generation) -> every generation (7740ms)\nIn what city was the operation performed?\tWinnipeg\t-11.253575407563368\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, have been performed in, Winnipeg) -> Winnipeg (10190ms)\nIn what city was the operation performed?\tRoutine Maintenance\t-11.404978501078459\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (Routine Maintenance, Instance Of, program of day-to-day repair) (the operation, perform, routine maintenance) -> Routine Maintenance (13444ms)\nIn what city was the operation performed?\tlaw\t-11.435638816378107\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operation, is performed by, law) -> law (10190ms)\nIn what city was the operation performed?\tcases\t-11.563134648636822\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, has been frequently performed in, cases) -> cases (10190ms)\nIn what city was the operation performed?\tRoutine maintenance\t-11.576936446287325\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (Routine maintenance, Instance Of, day-to-day maintenance) (the operation, perform, routine maintenance) -> Routine maintenance (13444ms)\nIn what city was the operation performed?\troutine maintenance\t-11.580249871083387\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (routine maintenance, Instance Of, day-today task) (the operation, perform, routine maintenance) -> routine maintenance (13444ms)\nIn what city was the operation performed?\toperation\t-11.794276255597424\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> which city be the operation perform ? -> $x: ($x, instance of, city) (the operation, perform, $x) -> (operation, Instance Of, city facility) (the operation thread pool, perform, operations) -> operation (15695ms)\nIn what city was the operation performed?\tlaparoscopic surgery\t-11.901332366485367\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operation, was performed by, laparoscopic surgery) -> laparoscopic surgery (10190ms)\nIn what city was the operation performed?\tToday's\t-11.968829928828224\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (Today's, Instance Of, typical day-game-following-a-night-game lineup) (the most common cosmetic operations, performed, today) -> Today's (15695ms)\nIn what city was the operation performed?\tAmerica\t-12.029708332818181\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the ?painless operation, had been performed in, America) -> America (10190ms)\nIn what city was the operation performed?\tTODAY..\t-12.206193357723397\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (TODAY.., Instance Of, interesting day thusfar) (the most common cosmetic operations, performed, today) -> TODAY.. (17541ms)\nIn what city was the operation performed?\ta medical team\t-12.292322228206933\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operations, will be performed by, a medical team) -> a medical team (11915ms)\nIn what city was the operation performed?\tJewish merchants\t-12.367535948108197\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operation, is performed by, Jewish merchants) -> Jewish merchants (11915ms)\nIn what city was the operation performed?\tthe laboratory\t-12.372478213031377\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, has been performed in, the laboratory) -> the laboratory (11915ms)\nIn what city was the operation performed?\tX2Here\t-12.4175371582942\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> which city be the operation perform ? -> $x: ($x, instance of, city) (the operation, perform, $x) -> (X2Here, Instance Of, city) (the operations, performed, here) -> X2Here (18488ms)\nIn what city was the operation performed?\thigh-volume surgeons\t-12.4359468278951\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operation, was performed by, high-volume surgeons) -> high-volume surgeons (11915ms)\nIn what city was the operation performed?\ttwo surgeons\t-12.501442032940222\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operations, were performed by, two surgeons) -> two surgeons (11915ms)\nIn what city was the operation performed?\thand\t-12.509127574827229\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operations, are performed by, hand) -> hand (11916ms)\nIn what city was the operation performed?\tDr Crist\t-12.512936614261362\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operation, was performed by, Dr Crist) -> Dr Crist (19455ms)\nIn what city was the operation performed?\tDr. Pickel\t-12.514704987063554\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operation, was performed by, Dr. Pickel) -> Dr. Pickel (19455ms)\nIn what city was the operation performed?\tthe last step\t-12.527501297426904\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the reverse operation, has been performed in, the last step) -> the last step (19455ms)\nIn what city was the operation performed?\tdrag-and-drop and images\t-12.527518814929435\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operations, can be performed by, drag-and-drop and images) -> drag-and-drop and images (19456ms)\nIn what city was the operation performed?\tlocal anesthesia\t-13.88825476199465\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (The operation, is performed in, local anesthesia) -> local anesthesia (5123ms)\nIn what city was the operation performed?\t16-bit registers\t-14.15918768872998\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (the operations, are performed in, 16-bit registers) -> 16-bit registers (5123ms)\nIn what city was the operation performed?\tsuch way\t-14.170937452379121\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (The operation, is performed in, such way) -> such way (5123ms)\nIn what city was the operation performed?\t2001\t-14.21636408522129\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (the operation, was performed in, 2001) -> 2001 (5123ms)\nIn what city was the operation performed?\t1980\t-14.246983347212284\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (the operation, was performed in, 1980) -> 1980 (5123ms)\nIn what city was the operation performed?\tJuly\t-14.250575629934746\tIn what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (The operation, was performed in, July) -> July (5123ms)\nWhere is the capital of the Mormon Church?\tSalt Lake City\t-7.667471418057645\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be capital of the mormon church ? -> $x: ($x, be capital of, the mormon church) -> (Salt Lake City, is the historic capital of, the Mormon church) -> Salt Lake City (6312ms)\nWhere is the capital of the Mormon Church?\tChrist\t-9.220530484961152\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the capital of the mormon church ? -> $x: ($x, be the capital of, the mormon church) -> $x: ($x, be the center of, the mormon church) -> (Christ, is the center of, the Mormon Church) -> Christ (13553ms)\nWhere is the capital of the Mormon Church?\tSao Paulo\t-9.398724843282874\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> when be the mormon church build ? -> $x: (the mormon church, be build in, $x) -> (the Mormon Church, is building a Temple in, Sao Paulo) -> Sao Paulo (8770ms)\nWhere is the capital of the Mormon Church?\tArizona\t-10.122963277040464\tWhere is the capital of the Mormon Church? -> where be the capital [ of the mormon church ] ? -> what state capital be of the mormon church ? -> $x: ($x, instance of, state capital) ($x, be of, the mormon church) -> (Arizona, Instance Of, capital punishment state) (Arizona, are active members of, the Mormon church) -> Arizona (11420ms)\nWhere is the capital of the Mormon Church?\tMaine\t-10.150151437728477\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be still, $x) -> (the Mormon Church, is still involved in, Maine) -> Maine (16984ms)\nWhere is the capital of the Mormon Church?\tYoung\t-10.249128720143759\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, be make of, the mormon church) -> (Young, was made President of, the Mormon Church) -> Young (16712ms)\nWhere is the capital of the Mormon Church?\tChristian\t-10.289809513684032\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (The Mormon Church, is Now, Christian) -> Christian (15866ms)\nWhere is the capital of the Mormon Church?\tOklahoma\t-10.375205410473512\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, have be in, $x) -> (the Mormon Church, had been operating in, Oklahoma) -> Oklahoma (16638ms)\nWhere is the capital of the Mormon Church?\tManchester\t-10.410703420865936\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the capital of the mormon church ? -> $x: ($x, be the capital of, the mormon church) -> $x: (the mormon church, be organize at, $x) -> (the Mormon Church, was first regularly organized at, Manchester) -> Manchester (13552ms)\nWhere is the capital of the Mormon Church?\tThe Church\t-10.53695871477878\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (The Mormon Church, is actually a nickname for, The Church) -> The Church (16225ms)\nWhere is the capital of the Mormon Church?\tFreemasons\t-10.656849684076963\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, start, $x) -> (the Mormon church, was started by, Freemasons) -> Freemasons (6210ms)\nWhere is the capital of the Mormon Church?\tPolygamists\t-10.774786449253762\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, be now, the mormon church) -> (Polygamists, are now excommunicated from, the Mormon church) -> Polygamists (12680ms)\nWhere is the capital of the Mormon Church?\tJoseph Smith\t-11.008664102688456\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the early Mormon Church, is a strong argument for, Joseph Smith) -> Joseph Smith (16224ms)\nWhere is the capital of the Mormon Church?\tShawn\t-11.047985501309784\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, was too hard for, Shawn) -> Shawn (16225ms)\nWhere is the capital of the Mormon Church?\tLas Vegas\t-11.06704915545502\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, choose, $x) -> (the Mormon Church, chose, Las Vegas) -> Las Vegas (15866ms)\nWhere is the capital of the Mormon Church?\tAmerica\t-11.078776447623117\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be still, $x) -> (the Mormon Church, is still so strong in, America) -> America (16984ms)\nWhere is the capital of the Mormon Church?\tMormonism\t-11.111630640363432\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (the Mormon Church, began preaching, Mormonism) -> Mormonism (15645ms)\nWhere is the capital of the Mormon Church?\tLevites\t-11.18678743309795\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began as, Levites) -> Levites (15644ms)\nWhere is the capital of the Mormon Church?\tMesa\t-11.241063772889943\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be also in, $x) -> (the Mormon Church, is also deeply rooted in, Mesa) -> Mesa (12834ms)\nWhere is the capital of the Mormon Church?\tGods\t-11.388428340147186\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be north of the mormon church ? -> $x: ($x, be north of, the mormon church) -> $x: ($x, there be in, the mormon church) -> (Gods, Are there any Blacks in, the Mormon church) -> Gods (14298ms)\nWhere is the capital of the Mormon Church?\tElie Wiesel\t-11.482638206094471\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, call on, the mormon church) -> (Elie Wiesel, has been calling on, the Mormon Church) -> Elie Wiesel (12332ms)\nWhere is the capital of the Mormon Church?\ta living prophet\t-11.550465032021856\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be lead, $x) -> (the Mormon Church, is led by, a living prophet) -> a living prophet (12680ms)\nWhere is the capital of the Mormon Church?\tDeseret News\t-11.585291011235176\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owned, Deseret News) -> Deseret News (6437ms)\nWhere is the capital of the Mormon Church?\tsame-sex marriage\t-11.64381405976863\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, fight, $x) -> (The Mormon Church, has been fighting, same-sex marriage) -> same-sex marriage (15866ms)\nWhere is the capital of the Mormon Church?\ta son\t-11.667278282103437\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> who be involve with the mormon church ? -> $x: ($x, be involve with, the mormon church) -> (a son, is involved with, the Mormon church) -> a son (11852ms)\nWhere is the capital of the Mormon Church?\tpound one\t-11.6919754983055\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, is pound for, pound one) -> pound one (16225ms)\nWhere is the capital of the Mormon Church?\ta man\t-11.692192382936128\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be lead, $x) -> (The Mormon church, is led by, a man) -> a man (12680ms)\nWhere is the capital of the Mormon Church?\tthe covenant\t-11.730939870183052\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be part of, $x) -> (the Mormon Church, is part of, the covenant) -> the covenant (12432ms)\nWhere is the capital of the Mormon Church?\tpriesthood office\t-11.737106263406082\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, have some of, $x) -> (the Mormon Church, has some sort of, priesthood office) -> priesthood office (12050ms)\nWhere is the capital of the Mormon Church?\tlawsuits\t-11.817209064519478\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, be now, the mormon church) -> (lawsuits, are now being prepared against, the Mormon Church) -> lawsuits (12680ms)\nWhere is the capital of the Mormon Church?\ttwo purposes\t-11.819891033321598\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon church, is primarily for, two purposes) -> two purposes (16225ms)\nWhere is the capital of the Mormon Church?\tFayette\t-11.832232905733735\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began in, Fayette) -> Fayette (15645ms)\nWhere is the capital of the Mormon Church?\tKirtland\t-11.869953995364005\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (the Mormon church, faced financial crisis in, Kirtland) -> Kirtland (16831ms)\nWhere is the capital of the Mormon Church?\tevery nation\t-11.881586011536442\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, is for, every nation) -> every nation (16225ms)\nWhere is the capital of the Mormon Church?\tgay marriage\t-11.9246365411117\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, fight, $x) -> (the Mormon Church, fought against, gay marriage) -> gay marriage (15866ms)\nWhere is the capital of the Mormon Church?\tscientific evidence\t-11.946284644730332\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, find, $x) -> (the Mormon Church, ever found, scientific evidence) -> scientific evidence (16397ms)\nWhere is the capital of the Mormon Church?\tcon artists\t-11.951751132471959\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, start, $x) -> (The Mormon LDS church, was started by, con artists) -> con artists (6209ms)\nWhere is the capital of the Mormon Church?\tGod\t-12.03348953450945\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, understand, $x) -> (The Mormon Church, has a wrong understanding of, God) -> God (16831ms)\nWhere is the capital of the Mormon Church?\tBelmont\t-12.0348413630417\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> when be the mormon church build ? -> $x: (the mormon church, be build in, $x) -> $x: (the mormon church, open in, $x) -> (the Mormon Church, opened in, Belmont) -> Belmont (18751ms)\nWhere is the capital of the Mormon Church?\tJosh Powell\t-12.041497670290292\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, relate to, the mormon church) -> (Josh Powell, are directly related to, the Mormon church) -> Josh Powell (15866ms)\nWhere is the capital of the Mormon Church?\tdoctrine\t-12.069545021776715\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon church, is \"profitable for, doctrine) -> doctrine (16225ms)\nWhere is the capital of the Mormon Church?\tthe corner\t-12.116860732448192\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> when be the mormon church build ? -> $x: (the mormon church, be build on, $x) -> (The Mormon church, is built on, the corner) -> the corner (8770ms)\nWhere is the capital of the Mormon Church?\tre-election or rejection\t-12.125175494119341\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, are proposed for, re-election or rejection) -> re-election or rejection (16225ms)\nWhere is the capital of the Mormon Church?\tfalse claims\t-12.133856740234872\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (the Mormon church, is based on, false claims) -> false claims (16397ms)\nWhere is the capital of the Mormon Church?\tamnesty\t-12.14237693897369\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, are petitioning for, amnesty) -> amnesty (16397ms)\nWhere is the capital of the Mormon Church?\ta great many records\t-12.202934783701972\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (The Mormon Church, is now microfilming, a great many records) -> a great many records (15866ms)\nWhere is the capital of the Mormon Church?\tthe Territory\t-12.250318365150443\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, dominate, $x) -> (the Mormon Church, dominates, the Territory) -> the Territory (12050ms)\nWhere is the capital of the Mormon Church?\tflack\t-12.27436604766498\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be already, $x) -> (the Utah-based Mormon church, is already catching enough, flack) -> flack (12332ms)\nWhere is the capital of the Mormon Church?\ttwo full years\t-12.28667841622634\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (The Mormon Church, had been operating for, two full years) -> two full years (16397ms)\nWhere is the capital of the Mormon Church?\tSixth Avenue Southeast\t-12.310681678518744\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (the existing Mormon church, is now on, Sixth Avenue Southeast) -> Sixth Avenue Southeast (16397ms)\nWhere is the capital of the Mormon Church?\tPeabody Coal\t-12.324590912063002\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owned a controlling interest in, Peabody Coal) -> Peabody Coal (6437ms)\nWhere is the capital of the Mormon Church?\ta peculiar dilemma\t-12.345416283065891\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be face with, $x) -> (The Mormon church, is faced with, a peculiar dilemma) -> a peculiar dilemma (16516ms)\nWhere is the capital of the Mormon Church?\tten million\t-12.38381798282859\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, now have, $x) -> (The Mormon Church, now has a membership of over, ten million) -> ten million (12681ms)\nWhere is the capital of the Mormon Church?\tZCMI\t-12.386521301380117\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owned 51 percent of, ZCMI) -> ZCMI (6437ms)\nWhere is the capital of the Mormon Church?\tfiction\t-12.396773735515618\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (The Mormon church, is based on, fiction) -> fiction (16397ms)\nWhere is the capital of the Mormon Church?\tthe fastest-growing denominations\t-12.421973751826659\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (the Mormon church, is one of, the fastest-growing denominations) -> the fastest-growing denominations (12050ms)\nWhere is the capital of the Mormon Church?\tthe first ones\t-12.428617593740626\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (the Mormon Church, is one of, the first ones) -> the first ones (12050ms)\nWhere is the capital of the Mormon Church?\tprophets\t-12.447980905271042\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be lead, $x) -> (The Mormon Church, is led by, prophets) -> prophets (12681ms)\nWhere is the capital of the Mormon Church?\tsocial proof\t-12.46066822344145\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, rely on, $x) -> (The Mormon Church, relies heavily on, social proof) -> social proof (6437ms)\nWhere is the capital of the Mormon Church?\tlast week\t-12.490835886364252\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (the Mormon church, began, last week) -> last week (15644ms)\nWhere is the capital of the Mormon Church?\tThe Simon Wiesenthal Center\t-12.497739160992467\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, call on, the mormon church) -> (The Simon Wiesenthal Center, called on, the Mormon Church) -> The Simon Wiesenthal Center (12332ms)\nWhere is the capital of the Mormon Church?\tacres\t-12.511011491603675\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The Mormon church, owns hundreds of, acres) -> acres (6520ms)\nWhere is the capital of the Mormon Church?\tunflattering publicity\t-12.514834451784308\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (the Mormon Church, faced, unflattering publicity) -> unflattering publicity (16831ms)\nWhere is the capital of the Mormon Church?\tthe Peywa family\t-12.520819922415908\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> when be the mormon church build ? -> $x: (the mormon church, be build in, $x) -> $x: (the mormon church, be build around, $x) -> (The Mormon Church, is built around, the Peywa family) -> the Peywa family (18932ms)\nWhere is the capital of the Mormon Church?\tthe richest\t-12.52145837800855\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (the Mormon Church, is one of, the richest) -> the richest (12050ms)\nWhere is the capital of the Mormon Church?\ta room\t-12.528640735212294\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what s the capital of the mormon church ? -> $x: (the mormon church, capital, $x) -> $x: (the mormon church, meet in, $x) -> (the early Mormon Church, used to meet in, a room) -> a room (9018ms)\nWhere is the capital of the Mormon Church?\tthe most prominent proponents\t-12.541199203860568\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (the Mormon church, is one of, the most prominent proponents) -> the most prominent proponents (12050ms)\nWhere is the capital of the Mormon Church?\thistorical documents\t-12.543163853707817\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, buy, $x) -> (The Mormon Church, does buy, historical documents) -> historical documents (16984ms)\nWhere is the capital of the Mormon Church?\ta group\t-12.55134036764091\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be lead, $x) -> (The Mormon Church, is led by, a group) -> a group (12715ms)\nWhere is the capital of the Mormon Church?\tdoubt\t-12.565069160736467\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (the Mormon Church, is now beyond, doubt) -> doubt (16397ms)\nWhere is the capital of the Mormon Church?\tpolygamists\t-12.57854899949043\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, be now, the mormon church) -> (polygamists, are now excommunicated from, the Mormon church) -> polygamists (12715ms)\nWhere is the capital of the Mormon Church?\tsix members\t-12.586742209531105\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, was begun with, six members) -> six members (15645ms)\nWhere is the capital of the Mormon Church?\treason\t-12.612451418437196\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, listen to, $x) -> (the Mormon Church, am disposed to listen to, reason) -> reason (15528ms)\nWhere is the capital of the Mormon Church?\tdiscrimination\t-12.61328525207191\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (The Mormon Church, ended a policy of, discrimination) -> discrimination (16711ms)\nWhere is the capital of the Mormon Church?\tthe primary backers\t-12.627031210780231\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (The Mormon Church, was one of, the primary backers) -> the primary backers (12050ms)\nWhere is the capital of the Mormon Church?\tracism\t-12.635191367916752\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, reject, $x) -> (The Mormon Church, rejects allegations of, racism) -> racism (16984ms)\nWhere is the capital of the Mormon Church?\tthe religion\t-12.635838012805657\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be part of, $x) -> (the Mormon Church, was officially part of, the religion) -> the religion (12432ms)\nWhere is the capital of the Mormon Church?\ta personal visit\t-12.647164698484696\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began with, a personal visit) -> a personal visit (15645ms)\nWhere is the capital of the Mormon Church?\tvery recently Mormons\t-12.648933123989183\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, want, the mormon church) -> (very recently Mormons, wanted to leave, the Mormon Church) -> very recently Mormons (15645ms)\nWhere is the capital of the Mormon Church?\tan activist opposition\t-12.652247834968112\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (the Mormon Church, faces, an activist opposition) -> an activist opposition (16831ms)\nWhere is the capital of the Mormon Church?\tan embarrassing book\t-12.670028644750298\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, stick, $x) -> (the Mormon Church, stuck with, an embarrassing book) -> an embarrassing book (16984ms)\nWhere is the capital of the Mormon Church?\ta small piece\t-12.679722550445426\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, carry, $x) -> (the Mormon Church, carried, a small piece) -> a small piece (16516ms)\nWhere is the capital of the Mormon Church?\ta Perpetual Emigration Fund\t-12.689867509089762\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, start, $x) -> (The Mormon Church, had started, a Perpetual Emigration Fund) -> a Perpetual Emigration Fund (6210ms)\nWhere is the capital of the Mormon Church?\tcharitable programs\t-12.689867509089762\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, reject, $x) -> (the Mormon church, has rejected funding for, charitable programs) -> charitable programs (16984ms)\nWhere is the capital of the Mormon Church?\tLGBT individuals\t-12.69844819487813\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, cause, $x) -> (the Mormon Church, has caused for, LGBT individuals) -> LGBT individuals (15645ms)\nWhere is the capital of the Mormon Church?\tthe fastest growing religions\t-12.70540480022833\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (The Mormon Church, is one of, the fastest growing religions) -> the fastest growing religions (12050ms)\nWhere is the capital of the Mormon Church?\tthe largest land owners\t-12.708248026334658\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (The Mormon church, is one of, the largest land owners) -> the largest land owners (12119ms)\nWhere is the capital of the Mormon Church?\tmuch controversy\t-12.708508818804676\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, cause, $x) -> (the Mormon Church, has caused, much controversy) -> much controversy (16516ms)\nWhere is the capital of the Mormon Church?\tnegative public reactions\t-12.71456047640698\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, seem, $x) -> (The Mormon church, seems puzzled by, negative public reactions) -> negative public reactions (16712ms)\nWhere is the capital of the Mormon Church?\tserious inroads\t-12.720395599216523\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (the Mormon Church, began making, serious inroads) -> serious inroads (16516ms)\nWhere is the capital of the Mormon Church?\tChurch critics\t-12.746194840262591\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, want, the mormon church) -> (Church critics, really want to push, the Mormon Church) -> Church critics (16516ms)\nWhere is the capital of the Mormon Church?\tthe Anthon transcript\t-12.748689932967679\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, buy, $x) -> (the Mormon Church leaders, bought, the Anthon transcript) -> the Anthon transcript (16984ms)\nWhere is the capital of the Mormon Church?\tpolygamy\t-12.749451697016514\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (The Mormon Church, officially ended the practice of, polygamy) -> polygamy (16712ms)\nWhere is the capital of the Mormon Church?\tLatter Day Saints\t-12.760392386255699\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (Latter Day Saints, refers to, the Mormon church) -> Latter Day Saints (16516ms)\nWhere is the capital of the Mormon Church?\tdisseminating\t-12.780128004416317\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon church, is a vehicle for, disseminating) -> disseminating (16516ms)\nWhere is the capital of the Mormon Church?\tnewspapers\t-12.790497649451387\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The Mormon Church, owns, newspapers) -> newspapers (6520ms)\nWhere is the capital of the Mormon Church?\trecords\t-12.809562149976195\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, now have, $x) -> (the Mormon Church, has now millions of, records) -> records (12715ms)\nWhere is the capital of the Mormon Church?\tcriticism\t-12.834491479196176\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, is fair game for, criticism) -> criticism (16516ms)\nWhere is the capital of the Mormon Church?\tThe city\t-12.844540236083622\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what s the capital of the mormon church ? -> $x: (the mormon church, capital, $x) -> $x: ($x, capital, the mormon church) -> (The city, became first the capital for, the Mormon Church) -> The city (8770ms)\nWhere is the capital of the Mormon Church?\thand\t-12.850389920163071\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, handed, $x) -> (the Mormon Church, worked hand in, hand) -> hand (16637ms)\nWhere is the capital of the Mormon Church?\tthe Deseret News\t-12.853025298556743\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The Mormon Church, also owns, the Deseret News) -> the Deseret News (6520ms)\nWhere is the capital of the Mormon Church?\tpart\t-12.860689756479392\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (the Mormon church, is now published as, part) -> part (16638ms)\nWhere is the capital of the Mormon Church?\tthe LDS world\t-12.868973167409479\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, spread, $x) -> (the Mormon church, spread widely in, the LDS world) -> the LDS world (16756ms)\nWhere is the capital of the Mormon Church?\tcountries\t-12.90041216373866\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go into, $x) -> (the Mormon Church, goes into, countries) -> countries (16756ms)\nWhere is the capital of the Mormon Church?\tthe North\t-12.906961354153468\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The Mormon Church, owns the property to, the North) -> the North (6521ms)\nWhere is the capital of the Mormon Church?\tMr Davies\t-12.907895893320948\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (Mr Davies, referred to, the Mormon Church) -> Mr Davies (16638ms)\nWhere is the capital of the Mormon Church?\trevelation\t-12.913652851179952\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (the Mormon Church, is one based on, revelation) -> revelation (16638ms)\nWhere is the capital of the Mormon Church?\tlegitimacy\t-12.915345694832572\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, has been fighting for, legitimacy) -> legitimacy (16638ms)\nWhere is the capital of the Mormon Church?\ta prophet\t-12.916290908773117\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, head, $x) -> (the Mormon church, is headed by, a prophet) -> a prophet (16831ms)\nWhere is the capital of the Mormon Church?\tpolitical overdrive\t-12.917814735728227\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go into, $x) -> (the Mormon Church, has gone into, political overdrive) -> political overdrive (16756ms)\nWhere is the capital of the Mormon Church?\tLatter-day Saints\t-12.926490622290132\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (Latter-day Saints, mistakenly referred to as, the Mormon Church) -> Latter-day Saints (16638ms)\nWhere is the capital of the Mormon Church?\tLake Drive\t-12.931718889597942\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, find, $x) -> (the Mormon church, found on, Lake Drive) -> Lake Drive (16637ms)\nWhere is the capital of the Mormon Church?\textensive record keeping\t-12.937990902698115\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, engage in, $x) -> (The Mormon Church, engages in, extensive record keeping) -> extensive record keeping (15528ms)\nWhere is the capital of the Mormon Church?\tblacks\t-12.966071186791572\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, have be in, $x) -> (The Mormon church, has been very slow in allowing, blacks) -> blacks (16712ms)\nWhere is the capital of the Mormon Church?\tan emotional and religious era\t-12.986870325928818\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began during, an emotional and religious era) -> an emotional and religious era (16712ms)\nWhere is the capital of the Mormon Church?\ta nuclear issue\t-12.997735850474566\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, speak, $x) -> (the Mormon Church, has spoken out on, a nuclear issue) -> a nuclear issue (16712ms)\nWhere is the capital of the Mormon Church?\twalls\t-13.02080149927233\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (The Mormon church, is just now is putting up, walls) -> walls (16712ms)\nWhere is the capital of the Mormon Church?\tblack members\t-13.023210051189062\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (the Mormon church, ended its ban on, black members) -> black members (16756ms)\nWhere is the capital of the Mormon Church?\tthe Great Depression\t-13.034698056285613\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, cause, $x) -> (the Mormon Church, caused by, the Great Depression) -> the Great Depression (16756ms)\nWhere is the capital of the Mormon Church?\tthe U.S.\t-13.034704632510202\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, remain, $x) -> (The Mormon church, has remained quite active in, the U.S.) -> the U.S. (15528ms)\nWhere is the capital of the Mormon Church?\tlies\t-13.055874414067741\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (The Mormon church, is based on, lies) -> lies (16756ms)\nWhere is the capital of the Mormon Church?\tcans\t-13.057193713314776\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, have be in, $x) -> (the Mormon Church, have been storing food in, cans) -> cans (16756ms)\nWhere is the capital of the Mormon Church?\tearth\t-13.06171305862442\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, rule, $x) -> (The Mormon Church, will rule on, earth) -> earth (16756ms)\nWhere is the capital of the Mormon Church?\ta loyalty\t-13.062028644827862\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, to lead, $x) -> (the Mormon church, leads to, a loyalty) -> a loyalty (12433ms)\nWhere is the capital of the Mormon Church?\tdecades\t-13.068548197359085\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (Even the peaceful Mormon church, was persecuted for, decades) -> decades (16831ms)\nWhere is the capital of the Mormon Church?\ta plurality\t-13.085412844504088\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, seem, $x) -> (the Mormon Church, there seemed to be, a plurality) -> a plurality (16831ms)\nWhere is the capital of the Mormon Church?\tview\t-13.139100656371802\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (the Mormon Church, is the end in, view) -> view (17093ms)\nWhere is the capital of the Mormon Church?\tcontrol of the papyri\t-13.148519718761943\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, lose, $x) -> (the Mormon Church, lost, control of the papyri) -> control of the papyri (17093ms)\nWhere is the capital of the Mormon Church?\tthe Inspired Version of the Bible\t-13.241582815947424\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, reject, $x) -> (the Mormon church, rejects, the Inspired Version of the Bible) -> the Inspired Version of the Bible (17093ms)\nWhere is the capital of the Mormon Church?\tfather\t-13.25866615658044\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, hear, the mormon church) -> (father, had heard some of, the Mormon Church) -> father (17093ms)\nWhere is the capital of the Mormon Church?\tright-wing forces\t-13.26960617759213\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, lead by, the mormon church) -> (right-wing forces, led by, the Mormon Church) -> right-wing forces (12433ms)\nWhere is the capital of the Mormon Church?\thistory\t-13.309014409018431\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, change, $x) -> (the Mormon Church, will undoubtedly change, history) -> history (17093ms)\nWhere is the capital of the Mormon Church?\tpolitics\t-13.312019084061832\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, engage in, $x) -> (the Mormon Church, should be allowed to engage in, politics) -> politics (15528ms)\nWhere is the capital of the Mormon Church?\tthe family\t-13.327642301052073\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, be now, the mormon church) -> (the family, is now recorded with, the Mormon Church) -> the family (12715ms)\nWhere is the capital of the Mormon Church?\tdenials\t-13.372345478801051\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, print, $x) -> (the Mormon Church, printed, denials) -> denials (17242ms)\nWhere is the capital of the Mormon Church?\tthe 19th Century New York\t-13.532815133966634\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be still, $x) -> (The Mormon Church, is still stuck in, the 19th Century New York) -> the 19th Century New York (17241ms)\nWhere is the capital of the Mormon Church?\tthe Inspired Version\t-13.555079466207225\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, reject, $x) -> (the Mormon church, fully reject, the Inspired Version) -> the Inspired Version (17241ms)\nWhere is the capital of the Mormon Church?\ta member\t-13.573123476257697\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (a member, is commonly referred to as, the Mormon Church) -> a member (17242ms)\nWhere is the capital of the Mormon Church?\tthe Parasomnial Order\t-13.605144255387376\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, read, $x) -> (the Mormon church, read up on, the Parasomnial Order) -> the Parasomnial Order (17241ms)\nWhere is the capital of the Mormon Church?\tthe highest turnover rates\t-13.618855150474959\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, have one of, $x) -> (the Mormon Church, has one of, the highest turnover rates) -> the highest turnover rates (12835ms)\nWhere is the capital of the Mormon Church?\tYou  watch\t-13.619342687070112\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, throw, the mormon church) -> (You  watch, to throw, the Mormon church) -> You  watch (17242ms)\nWhere is the capital of the Mormon Church?\ta dilemma\t-13.628303756583737\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (The Mormon church, faces, a dilemma) -> a dilemma (17242ms)\nWhere is the capital of the Mormon Church?\tlimits\t-13.629512799822082\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, find, $x) -> (the Mormon church, have found a way around, limits) -> limits (17242ms)\nWhere is the capital of the Mormon Church?\tthe United States\t-13.65361762067473\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (the Mormon Church, began in, the United States) -> the United States (17297ms)\nWhere is the capital of the Mormon Church?\tface\t-13.654990901167967\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, lose, $x) -> (The Mormon Church, could easily lose, face) -> face (17297ms)\nWhere is the capital of the Mormon Church?\tfavor\t-13.741799794424123\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, speak, $x) -> (The Mormon church, has spoken strongly in, favor) -> favor (17297ms)\nWhere is the capital of the Mormon Church?\tThe truth\t-13.767044638113477\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be north of the mormon church ? -> $x: ($x, be north of, the mormon church) -> $x: ($x, there be in, the mormon church) -> (The truth, is there is good in, the Mormon Church) -> The truth (14298ms)\nWhere is the capital of the Mormon Church?\tthe house\t-13.805124971731287\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the capital of the mormon church ? -> $x: ($x, be the capital of, the mormon church) -> $x: (the mormon church, be organize at, $x) -> (The Mormon church, was first organized at, the house) -> the house (13552ms)\nWhere is the capital of the Mormon Church?\tthe process\t-13.8332293812839\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (The Mormon Church, now appears to be in, the process) -> the process (17297ms)\nWhere is the capital of the Mormon Church?\tthe property\t-13.847346813192619\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, allow, the mormon church) -> (the property, was allowing, the Mormon Church) -> the property (6312ms)\nWhere is the capital of the Mormon Church?\tthe revelation\t-13.8595328280015\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (the Mormon Church, is based on, the revelation) -> the revelation (17298ms)\nWhere is the capital of the Mormon Church?\tTemple Cards\t-13.862509902964167\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, to take, $x) -> (the Mormon Church, to consider taking away, Temple Cards) -> Temple Cards (6210ms)\nWhere is the capital of the Mormon Church?\t166 different languages\t-13.885988268557764\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, print, $x) -> (the Mormon Church, are printed in, 166 different languages) -> 166 different languages (17298ms)\nWhere is the capital of the Mormon Church?\tof politics\t-13.98474098853031\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, get to, $x) -> (the Mormon Church, to get the hell out, of politics) -> of politics (17530ms)\nWhere is the capital of the Mormon Church?\tthe campaign\t-14.009821010560618\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, throw, the mormon church) -> (the campaign, is gonna throw, the Mormon Church) -> the campaign (17530ms)\nWhere is the capital of the Mormon Church?\tthe past\t-14.015541059176496\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, have be in, $x) -> (the Mormon Church, has been challenged in, the past) -> the past (17530ms)\nWhere is the capital of the Mormon Church?\t12 million members\t-14.023494057460466\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, now have, $x) -> (the Mormon Church, now has over, 12 million members) -> 12 million members (12715ms)\nWhere is the capital of the Mormon Church?\tthe context\t-14.089170229216121\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, understand, $x) -> (the Mormon church, must be understood within, the context) -> the context (17530ms)\nWhere is the capital of the Mormon Church?\tnow\t-14.102826785544883\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owns the land, now) -> now (6520ms)\nWhere is the capital of the Mormon Church?\t36 percent\t-14.13877215101047\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owns about, 36 percent) -> 36 percent (6520ms)\nWhere is the capital of the Mormon Church?\tthe draft\t-14.152743414727256\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, deal with, $x) -> (the Mormon church, did n?t have to deal with, the draft) -> the draft (17530ms)\nWhere is the capital of the Mormon Church?\tthe collection\t-14.164128214256595\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, lose, $x) -> (the Mormon church, lost control of, the collection) -> the collection (17530ms)\nWhere is the capital of the Mormon Church?\tproperty\t-14.256464362332437\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, buy, $x) -> (the Mormon church, bought, property) -> property (17530ms)\nWhere is the capital of the Mormon Church?\tthe land\t-14.270868179430632\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, own, the land) -> the land (6545ms)\nWhere is the capital of the Mormon Church?\ta cover-up situation\t-14.299594163851674\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, find, $x) -> (the Mormon Church, finds itself in, a cover-up situation) -> a cover-up situation (17530ms)\nWhere is the capital of the Mormon Church?\t720 acres\t-14.306991815340666\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon church, owns more than, 720 acres) -> 720 acres (6545ms)\nWhere is the capital of the Mormon Church?\tthe initiative campaign\t-14.357614042054731\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, drive, $x) -> (the Mormon Church, drove, the initiative campaign) -> the initiative campaign (15528ms)\nWhere is the capital of the Mormon Church?\tthe cause\t-14.39071311484786\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, engage in, $x) -> (the Mormon Church, is very anxiously engaged in, the cause) -> the cause (15528ms)\nWhere is the capital of the Mormon Church?\tthe document\t-14.404968389130707\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, buy, $x) -> (the Mormon Church, decided to buy, the document) -> the document (17572ms)\nWhere is the capital of the Mormon Church?\tthe state liquor laws\t-14.422061728011727\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, lose, $x) -> (the Mormon Church, has lost over, the state liquor laws) -> the state liquor laws (17572ms)\nWhere is the capital of the Mormon Church?\tthe patent\t-14.4517365114657\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The mormon church, owns, the patent) -> the patent (6545ms)\nWhere is the capital of the Mormon Church?\tan 1812 book\t-14.45181300907947\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (the Mormon Church, was based largely on, an 1812 book) -> an 1812 book (17572ms)\nWhere is the capital of the Mormon Church?\tthe truth\t-14.488109568616661\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, choose, $x) -> (the mormon church, has chosen to deliberately ignore, the truth) -> the truth (17572ms)\nWhere is the capital of the Mormon Church?\ta judge\t-14.491297966709729\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, throw, the mormon church) -> (a judge, threw out, the claims against the Mormon church) -> a judge (17572ms)\nWhere is the capital of the Mormon Church?\tthe prospect\t-14.505180579752038\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (The Mormon church, faced, the prospect) -> the prospect (17572ms)\nWhere is the capital of the Mormon Church?\tthe middle\t-14.57825692188115\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go into, $x) -> (the Mormon Church, went right into, the middle) -> the middle (17572ms)\nWhere is the capital of the Mormon Church?\tthe challenges\t-14.590807424164758\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (the Mormon church, will have to face, the challenges) -> the challenges (17572ms)\nWhere is the capital of the Mormon Church?\tthe authenticity\t-14.633423134703497\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, fall, $x) -> (the mormon church, fell on, the authenticity) -> the authenticity (17612ms)\nWhere is the capital of the Mormon Church?\ta 43 year old man\t-14.636392530256831\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go to, $x) -> (the Mormon church, went to, a 43 year old man) -> a 43 year old man (15528ms)\nWhere is the capital of the Mormon Church?\tthe eighteen hundreds\t-14.693686000642904\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go to, $x) -> (the Mormon Church, only go back to, the eighteen hundreds) -> the eighteen hundreds (15528ms)\nWhere is the capital of the Mormon Church?\tthe right wing talk radio station\t-14.761718896699971\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owns, the right wing talk radio station) -> the right wing talk radio station (6785ms)\nWhere is the capital of the Mormon Church?\tland\t-14.866324183607546\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owns, land) -> land (6784ms)\nWhere is the capital of the Mormon Church?\tthe house of Peter Whitmer\t-14.870121849241464\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the capital of the mormon church ? -> $x: ($x, be the capital of, the mormon church) -> $x: (the mormon church, be organize at, $x) -> (The Mormon church, was organized at, the house of Peter Whitmer) -> the house of Peter Whitmer (13552ms)\nWhere is the capital of the Mormon Church?\tAugust 27 , 1967\t-15.270294727381174\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (August 27 , 1967, referred to, the Mormon Church) -> August 27 , 1967 (17612ms)\nWhere is the capital of the Mormon Church?\t1890\t-15.810228050354322\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (the mainstream Mormon Church, ended the practice in, 1890) -> 1890 (17612ms)\nWhere is the capital of the Mormon Church?\t1830\t-15.954651730953218\tWhere is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began in, 1830) -> 1830 (17612ms)\nWhat was Sinatra's first recording?\tReprise Records\t-2.8805761915202064\tWhat was Sinatra's first recording? -> $x: (Sinatra, first recording, $x) -> (Frank Sinatra, recorded his first session with, Reprise Records) -> Reprise Records (8370ms)\nWhat was Sinatra's first recording?\tkaraoke bars\t-10.603542279065778\tWhat was Sinatra's first recording? -> what be [ sinatra s ] first record ? -> what do sinatra s sing ? -> $x: (sinatra s, sing, $x) -> (Frank Sinatra?s ?My Way ?, is sung in, karaoke bars) -> karaoke bars (18765ms)\nWhen was Limbaugh born?\t1951\t1.8221124191757676\tWhen was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Rush Limbaugh, was born in, 1951) -> 1951 (6050ms)\nWhen was Limbaugh born?\tCape Girardeau\t-2.125580658722159\tWhen was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Limbaugh, was born in, Cape Girardeau) -> Cape Girardeau (6050ms)\nWhen was Limbaugh born?\tJan . 12\t-2.7133913812030306\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> (Limbaugh and Stern, were both born on, Jan . 12) -> Jan . 12 (6462ms)\nWhen was Limbaugh born?\tMissouri\t-2.829375886007769\tWhen was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Limbaugh, was born in, Missouri) -> Missouri (6469ms)\nWhen was Limbaugh born?\tJune 5 , 2010\t-3.5050125716601443\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, marry on, $x) -> (Rush Limbaugh, were married on, June 5 , 2010) -> June 5 , 2010 (9891ms)\nWhen was Limbaugh born?\ta winner\t-5.773610463897372\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, be to come to, $x) -> (Limbaugh, is going to come out, a winner) -> a winner (9891ms)\nWhen was Limbaugh born?\tadvertisers\t-6.293380059418315\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have remain on, $x) -> (Limbaugh, has remained publicly neutral on whether, advertisers) -> advertisers (8853ms)\nWhen was Limbaugh born?\ttime\t-6.498421553408432\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, spend a good deal of, $x) -> (Limbaugh, had spent a good deal of, time) -> time (8800ms)\nWhen was Limbaugh born?\tthe state\t-6.516241401161423\tWhen was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, be both from, $x) -> (Limbaugh, are both from, the state) -> the state (6963ms)\nWhen was Limbaugh born?\ta regular basis\t-6.729294902754759\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have make on, $x) -> (Limbaugh, has been making this argument on, a regular basis) -> a regular basis (8956ms)\nWhen was Limbaugh born?\tthe NYTimes\t-6.835948359437222\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have do on, $x) -> (Rush Limbaugh, has been doing a good job on, the NYTimes) -> the NYTimes (10022ms)\nWhen was Limbaugh born?\tHawaii\t-7.015648738370155\tWhen was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, vacation in, $x) -> (Limbaugh, is vacationing in, Hawaii) -> Hawaii (6963ms)\nWhen was Limbaugh born?\twomen\t-7.195551149789873\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (limbaugh, bear on, $x) -> $x: (limbaugh, there be on, $x) -> (Rush Limbaugh, is there a conservative \"war on, women) -> women (12663ms)\nWhen was Limbaugh born?\tStoltenberg\t-7.351417782153311\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have do on, $x) -> (Limbaugh, does have the advantage on, Stoltenberg) -> Stoltenberg (10023ms)\nWhen was Limbaugh born?\tWashington\t-7.981944927301687\tWhen was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (limbaugh, bear in, $x) -> $x: (limbaugh, to travel to, $x) -> (Limbaugh, traveled to, Washington) -> Washington (11116ms)\nWhen was Limbaugh born?\tthe unholy timeslot\t-8.04801977825185\tWhen was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, come here in, $x) -> (Rush Limbaugh, comes on here in, the unholy timeslot) -> the unholy timeslot (6515ms)\nWhen was Limbaugh born?\tthe bigotry gutter\t-8.128710254366554\tWhen was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, have reside in, $x) -> (Rush Limbaugh, has resided in, the bigotry gutter) -> the bigotry gutter (6630ms)\nWhen was Limbaugh born?\tthe air\t-8.859235289450542\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have make on, $x) -> (comments Limbaugh, has made on, the air) -> the air (8956ms)\nWhen was Limbaugh born?\tthe radio\t-9.642284006579402\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (limbaugh, bear on, $x) -> $x: (limbaugh, declare on, $x) -> (Rush Limbaugh, declared on, the radio) -> the radio (12587ms)\nWhen was Limbaugh born?\tthe question\t-9.862713288080734\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (limbaugh, bear on, $x) -> $x: (limbaugh, dwell on, $x) -> (Limbaugh, dwells on, the question) -> the question (12905ms)\nWhen was Limbaugh born?\tthe far\t-9.94612607537078\tWhen was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (limbaugh, bear on, $x) -> $x: (limbaugh, to wander, $x) -> (Rush Limbaugh, has wandered off to, the far) -> the far (12905ms)\nWho is Warren Moon's agent?\tAfrican American\t-9.028415432736116\tWho is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> what be warren moon s ethnicity ? -> $x: (warren moon, ethnicity, $x) -> (Warren Moon, Ethnicity, African American) -> African American (13515ms)\nWho is Warren Moon's agent?\t1982-05-27\t-10.580879156368646\tWho is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Warren Moon, Date of birth, 1982-05-27) -> 1982-05-27 (13031ms)\nWho is Warren Moon's agent?\t1956-11-18\t-10.580879156368646\tWho is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Warren Moon, Date of birth, 1956-11-18) -> 1956-11-18 (13030ms)\nWho is Warren Moon's agent?\t2001-03-25\t-10.580879156368646\tWho is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Warren Moon, Original air date, 2001-03-25) -> 2001-03-25 (13031ms)\nWho is Warren Moon's agent?\t2009-08-17\t-10.65235024592646\tWho is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Dylan McDermott, Warren Moon, Original air date, 2009-08-17) -> 2009-08-17 (13030ms)\nWho is Warren Moon's agent?\t2008-02-14\t-10.703401024182043\tWho is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Outgun Hall of Famer Warren Moon, Original air date, 2008-02-14) -> 2008-02-14 (13030ms)\nWho is Warren Moon's agent?\t1999\t-10.723821335484274\tWho is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Warren Moon (NFL Quarterback Club in My Pocket), Publication date, 1999) -> 1999 (13030ms)\nWho invented the hula hoop?\tgenes\t-0.7380484888459725\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (genes, invent, the hula hoop) -> genes (9282ms)\nWho invented the hula hoop?\tTotal creativity->copying->theft One\t-1.1501941326739284\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (Total creativity->copying->theft One, can invent, the hula hoop) -> Total creativity->copying->theft One (9282ms)\nWho invented the hula hoop?\tRobbins\t-2.0257284372184152\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (Robbins, invents, the hula hoop) -> Robbins (9281ms)\nWho invented the hula hoop?\tSomebody\t-2.6534156839566543\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (Somebody, had to invent, the hula hoop) -> Somebody (9281ms)\nWho invented the hula hoop?\tWham-O\t-3.814110818789155\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: ($x, popularize, the hula hoop) -> (Wham-O, popularized, the hula hoop) -> Wham-O (17896ms)\nWho invented the hula hoop?\tWham-O co-founder Arthur\t-4.078828801350712\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: (the hula hoop, invent by, $x) -> (the hula hoop, was invented by, Wham-O co-founder Arthur) -> Wham-O co-founder Arthur (17118ms)\nWho invented the hula hoop?\tHDPE\t-4.445156666905992\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: ($x, first introduce, the hula hoop) -> (HDPE, was first introduced in, the hula hoop) -> HDPE (17561ms)\nWho invented the hula hoop?\tWham-O Inc.\t-4.5158321808817625\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: ($x, popularize, the hula hoop) -> (Wham-O Inc., popularized, the Hula Hoop) -> Wham-O Inc. (17896ms)\nWho invented the hula hoop?\tthe toy company\t-6.4095405253940365\tWho invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: ($x, popularize, the hula hoop) -> (the toy company, popularized, the Hula Hoop) -> the toy company (17897ms)\nHow many layers of skin do we have?\tThe tadpole tail fin\t-14.016756385185115\tHow many layers of skin do we have? -> how many [ layer of skin ] do we have ? -> what be the simple layer of skin ? -> $x: ($x, be the simple layer of, skin) -> $x: ($x, simple layer of, skin) -> (The tadpole tail fin, is a simple double layer of, skin) -> The tadpole tail fin (10451ms)\nWhen was the U.S. capitol built?\t1950\t0.6758603655490334\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (us capitol, build in, $x) -> (the US Capitol, was built in, 1950) -> 1950 (13773ms)\nWhen was the U.S. capitol built?\t1932\t0.21676149397271027\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (the U.S. capitol, open in, $x) -> (the U.S. Capitol, opened in, 1932) -> 1932 (16220ms)\nWhen was the U.S. capitol built?\t1793\t-1.0992461795770172\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol built, be in, $x) -> $x: (us capitol build, in, $x) -> (The U.S Capitol Building, started construction in, 1793) -> 1793 (13772ms)\nWhen was the U.S. capitol built?\tprotest\t-1.5594977389714955\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol built, be in, $x) -> (the U.S. Capitol building, was claimed to be in, protest) -> protest (9522ms)\nWhen was the U.S. capitol built?\tCapitol Hill\t-2.1913621440925573\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol built, be on, $x) -> (The U.S. Capitol building, is seen on, Capitol Hill) -> Capitol Hill (9522ms)\nWhen was the U.S. capitol built?\tthe 1850s\t-2.377117314976955\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (the U.S. capitol, be expand in, $x) -> (the U.S. Capitol, was expanded in, the 1850s) -> the 1850s (17804ms)\nWhen was the U.S. capitol built?\ta Masonic ceremony\t-2.4516047804782466\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol built, be in, $x) -> (the U.S. Capitol Building, was laid in, a Masonic ceremony) -> a Masonic ceremony (9522ms)\nWhen was the U.S. capitol built?\tthe mid-19th century\t-5.167594349659538\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (the U.S. capitol, complete in, $x) -> (the U.S. Capitol Building, completed in, the mid-19th century) -> the mid-19th century (17620ms)\nWhen was the U.S. capitol built?\ta slight hill\t-5.7538188842353435\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol built, be on, $x) -> $x: (us capitol build, on, $x) -> (The US Capitol Building, sits on, a slight hill) -> a slight hill (13963ms)\nWhen was the U.S. capitol built?\tthe background\t-8.056524924694799\tWhen was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (us capitol, build in, $x) -> (the US Capitol, building in, the background) -> the background (13963ms)\nWhat was Bing Crosby's nickname?\tBing\t-2.0992828071692493\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, Bing) -> Bing (9366ms)\nWhat was Bing Crosby's nickname?\tDer Bingle\t-2.1241449579157416\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, Der Bingle) -> Der Bingle (9366ms)\nWhat was Bing Crosby's nickname?\tThe old groaner\t-3.480073999987484\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, The old groaner) -> The old groaner (9366ms)\nWhat was Bing Crosby's nickname?\tHoliday Inn\t-4.483102327683232\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, called, Holiday Inn) -> Holiday Inn (18796ms)\nWhat was Bing Crosby's nickname?\ta heartthrob\t-4.681851374972904\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be consider, $x) -> (Bing Crosby, was considered, a heartthrob) -> a heartthrob (18979ms)\nWhat was Bing Crosby's nickname?\tGiuseppe Gallo\t-4.874675453879056\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, go, $x) -> (The Bing Crosby Parenting Award, goes to, Giuseppe Gallo) -> Giuseppe Gallo (15006ms)\nWhat was Bing Crosby's nickname?\tmovie history\t-5.1989149005548505\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be name, $x) -> (Bing Crosby, are iconic names in, movie history) -> movie history (19276ms)\nWhat was Bing Crosby's nickname?\tan exclusive playground\t-5.3475147631058215\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be know as, $x) -> (Bing Crosby, is known as, an exclusive playground) -> an exclusive playground (17946ms)\nWhat was Bing Crosby's nickname?\tRambo\t-5.403263738817786\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, go, $x) -> (User-Agent,Accept-Encoding Bing Crosby, goes, Rambo) -> Rambo (17394ms)\nWhat was Bing Crosby's nickname?\tHope\t-5.477035977310048\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, be with, Bing Crosby) -> (Hope, was being teamed up with, singer-actor Bing Crosby) -> Hope (18619ms)\nWhat was Bing Crosby's nickname?\tthe Sun\t-5.621907749806379\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, control, $x) -> (Bing Crosby?s White Christmas, controls, the Sun) -> the Sun (17394ms)\nWhat was Bing Crosby's nickname?\ta friend\t-5.631202784696057\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, called, a friend) -> a friend (18796ms)\nWhat was Bing Crosby's nickname?\tSinatra\t-5.658454419618446\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, saw, Bing Crosby) -> (Sinatra, had come to see, Bing Crosby) -> Sinatra (17946ms)\nWhat was Bing Crosby's nickname?\ta ? White Christmas ?\t-5.6650759274428815\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby Lounge, called, a ? White Christmas ?) -> a ? White Christmas ? (18796ms)\nWhat was Bing Crosby's nickname?\t?Dear Old Donegal\t-5.666298089749197\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (a song Bing Crosby, recorded called, ?Dear Old Donegal) -> ?Dear Old Donegal (18796ms)\nWhat was Bing Crosby's nickname?\tGrace\t-5.693603765355396\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, be with, Bing Crosby) -> (Grace, had been having an affair with, co-star Bing Crosby) -> Grace (18619ms)\nWhat was Bing Crosby's nickname?\tthe finest vocalists\t-6.8603106707053\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be consider, $x) -> (Bing Crosby, is also considered one of, the finest vocalists) -> the finest vocalists (18986ms)\nWhat was Bing Crosby's nickname?\tthe host\t-7.032008639172576\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be name, $x) -> (crooner Bing Crosby, was named, the host) -> the host (19288ms)\nWhat was Bing Crosby's nickname?\tfigure\t-7.06188876060854\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, go, $x) -> (Bing Crosby, ? go, figure) -> figure (17394ms)\nWhat was Bing Crosby's nickname?\tthe series\t-7.193393779846029\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, be with, Bing Crosby) -> (the series, will be White Christmas with, Bing Crosby) -> the series (18619ms)\nWhat was Bing Crosby's nickname?\tthe same\t-7.222462783782453\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, be with, Bing Crosby) -> (the same, is done scored with, Bing Crosby ?s Thanks) -> the same (18619ms)\nWhat was Bing Crosby's nickname?\tthe top ten\t-7.388585712691764\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, shot, $x) -> (Bing Crosby, shot to, the top ten) -> the top ten (18979ms)\nWhat was Bing Crosby's nickname?\tcrooning\t-7.643706178711695\tWhat was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, is called, crooning) -> crooning (18796ms)\nWhen was U.S Naval Academy founded?\t1845\t2.4972143328766223\tWhen was U.S Naval Academy founded? -> $x: (U.S Naval Academy, was founded in, $x) -> (The U.S. Naval Academy, was founded in, 1845) -> 1845 (9734ms)\nWhen was U.S Naval Academy founded?\tAnnapolis\t-4.674961770945528\tWhen was U.S Naval Academy founded? -> $x: (U.S Naval Academy, was founded in, $x) -> $x: (U.S Naval Academy, be establish in, $x) -> (The U.S. Naval Academy, was established in, Annapolis) -> Annapolis (11393ms)\nWhere did they honeymoon?\tHawaii\t-4.736403591039556\tWhere did they honeymoon? -> $x: (they honeymoon, did in, $x) -> $x: (they honeymoon, in, $x) -> (Mosman.The honeymoonThey, spent two weeks in, Hawaii) -> Hawaii (9638ms)\nWhere did they honeymoon?\tHonolulu\t-5.485139859096503\tWhere did they honeymoon? -> $x: (they honeymoon, did in, $x) -> $x: (they honeymoon, in, $x) -> (PM Photography.The honeymoonThey, spent four weeks in, Honolulu) -> Honolulu (9636ms)\nWhere did they honeymoon?\tthe USA\t-5.71922323677389\tWhere did they honeymoon? -> $x: (they honeymoon, did in, $x) -> $x: (they honeymoon, in, $x) -> (Nadean.The honeymoonThey, spent three weeks in, the USA) -> the USA (9636ms)\nWhere did they honeymoon?\ta standstill\t-15.29161913768025\tWhere did they honeymoon? -> where [ do they honeymoon ] ? -> when do they honeymoon be ? -> $x: (they honeymoon, do be on, $x) -> $x: (they honeymoon, on, $x) -> (they?re honeymoon, has been put on, a standstill) -> a standstill (19537ms)\nWhat is the name of the airport in Amsterdam?\tschiphol\t-4.737865834582017\tWhat is the name of the airport in Amsterdam? -> What is the airport in Amsterdam? -> $x: ($x, is the airport in, Amsterdam) -> (schiphol, is an airport in the city, AMSTERDAM) -> schiphol (5541ms)\nWhat is the name of the airport in Amsterdam?\tSchiphol Int\t-4.90844236190455\tWhat is the name of the airport in Amsterdam? -> What is the airport in Amsterdam? -> $x: ($x, is the airport in, Amsterdam) -> $x: ($x, airport in, amsterdam) -> (Schiphol Int, 'l Airport in, Amsterdam) -> Schiphol Int (7826ms)\nWhat is the name of the airport in Amsterdam?\tAnas marecula\t-7.878855122365833\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam Duck, Scientific name, Anas marecula) -> Anas marecula (10042ms)\nWhat is the name of the airport in Amsterdam?\t11945 Amsterdam\t-8.260832502883892\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, Things named after this, 11945 Amsterdam) -> 11945 Amsterdam (10041ms)\nWhat is the name of the airport in Amsterdam?\tMaksym Kozlenko\t-8.431785863510033\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam Centraal Station, Author name, Maksym Kozlenko) -> Maksym Kozlenko (10042ms)\nWhat is the name of the airport in Amsterdam?\tAmsterdam\t-8.50001765358088\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (11945 Amsterdam, Named after, Amsterdam) -> Amsterdam (10041ms)\nWhat is the name of the airport in Amsterdam?\tDiomedea amsterdamensis\t-8.69571028471534\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam Albatross, Scientific name, Diomedea amsterdamensis) -> Diomedea amsterdamensis (10121ms)\nWhat is the name of the airport in Amsterdam?\tAnne Frank\t-9.379750794051954\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Anne Frank) -> Anne Frank (10121ms)\nWhat is the name of the airport in Amsterdam?\tthe Elm City\t-9.517299666343291\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, was named, the Elm City) -> the Elm City (10121ms)\nWhat is the name of the airport in Amsterdam?\tHan van Meegeren\t-9.654580110386824\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Han van Meegeren) -> Han van Meegeren (10121ms)\nWhat is the name of the airport in Amsterdam?\tthe airport\t-9.759591335798287\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: (amsterdam airport, name, $x) -> (Amsterdam Airport Schiphol, is the official name of, the airport) -> the airport (8401ms)\nWhat is the name of the airport in Amsterdam?\tNew York\t-9.775346958661288\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, was named, New York) -> New York (10121ms)\nWhat is the name of the airport in Amsterdam?\tSweelinck\t-9.791135372453072\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (The Amsterdam Conservatory, was named after, Sweelinck) -> Sweelinck (10121ms)\nWhat is the name of the airport in Amsterdam?\tNew York City\t-9.844122221836125\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Nieuw Amsterdam, was the original Dutch name for, New York City) -> New York City (10139ms)\nWhat is the name of the airport in Amsterdam?\ttwo American Presidents\t-9.946653199678092\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, became the name of, two American Presidents) -> two American Presidents (10139ms)\nWhat is the name of the airport in Amsterdam?\ta character\t-9.964716439289239\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, is named after, a character) -> a character (10139ms)\nWhat is the name of the airport in Amsterdam?\tBram Bos\t-10.062671879379867\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Bram Bos) -> Bram Bos (10139ms)\nWhat is the name of the airport in Amsterdam?\tYub-Yum\t-10.069273669501232\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Yub-Yum) -> Yub-Yum (10175ms)\nWhat is the name of the airport in Amsterdam?\t?Best International Venue\t-10.082038910374933\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam RAI, was named, ?Best International Venue) -> ?Best International Venue (10174ms)\nWhat is the name of the airport in Amsterdam?\tthe ?Venice\t-10.113782327906618\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, will once again take its name as, the ?Venice) -> the ?Venice (10174ms)\nWhat is the name of the airport in Amsterdam?\tExpat Employer\t-10.122319237168718\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Euronext Amsterdam Optiver, named as, Expat Employer) -> Expat Employer (10174ms)\nWhat is the name of the airport in Amsterdam?\tACCESS.\t-10.158210884528764\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, ACCESS.) -> ACCESS. (10174ms)\nWhat is the name of the airport in Amsterdam?\tJonathan Andrew\t-10.162042175247365\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Jonathan Andrew) -> Jonathan Andrew (10174ms)\nWhat is the name of the airport in Amsterdam?\tBas Rutten\t-10.173847765084407\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Bas Rutten) -> Bas Rutten (10395ms)\nWhat is the name of the airport in Amsterdam?\ta sandwich\t-10.188101234119033\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, even named, a sandwich) -> a sandwich (10395ms)\nWhat is the name of the airport in Amsterdam?\t2010?s best classical albums\t-10.217435204136121\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, was named one of, 2010?s best classical albums) -> 2010?s best classical albums (10395ms)\nWhat is the name of the airport in Amsterdam?\tVreeland\t-10.300861345434384\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Vreeland) -> Vreeland (10395ms)\nWhat is the name of the airport in Amsterdam?\ta distinguished alumnus\t-10.387907969803349\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, was named, a distinguished alumnus) -> a distinguished alumnus (10397ms)\nWhat is the name of the airport in Amsterdam?\ta dam\t-10.523486764544032\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named after, a dam) -> a dam (10395ms)\nWhat is the name of the airport in Amsterdam?\tthe Trendiest\t-10.535702666100942\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, has been named, the Trendiest) -> the Trendiest (10426ms)\nWhat is the name of the airport in Amsterdam?\tthe question\t-10.53861086015747\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> (the question, is the modern-day name of, New Amsterdam) -> the question (10426ms)\nWhat is the name of the airport in Amsterdam?\tBuffalo\t-10.539333922565561\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (1798-1800 New Amsterdam, was the name given to, Buffalo) -> Buffalo (10426ms)\nWhat is the name of the airport in Amsterdam?\tWestern Europe\t-10.585001349390556\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be the only place in, $x) -> (Amsterdam, will be the only place in, Western Europe) -> Western Europe (13231ms)\nWhat is the name of the airport in Amsterdam?\tSunday\t-10.585957526853361\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Nieuw Amsterdam, is named on, Sunday) -> Sunday (10426ms)\nWhat is the name of the airport in Amsterdam?\ta similar chain\t-10.626283740323744\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam?s Pyongyang, bears the same name as, a similar chain) -> a similar chain (10426ms)\nWhat is the name of the airport in Amsterdam?\tAmstammelledam\t-10.627279874116915\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, was originally named, Amstammelledam) -> Amstammelledam (10426ms)\nWhat is the name of the airport in Amsterdam?\tthe English\t-10.823829626725072\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, had been named by, the English) -> the English (10478ms)\nWhat is the name of the airport in Amsterdam?\tthe service provider\t-10.94927608094328\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, is both the name of, the service provider) -> the service provider (10478ms)\nWhat is the name of the airport in Amsterdam?\tITBholland\t-11.021250073313865\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> (ITBholland, is a trade name of, I.T.B. Amsterdam BV) -> ITBholland (10478ms)\nWhat is the name of the airport in Amsterdam?\tAmstellerdam\t-11.121182603688375\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, derives its name from, Amstellerdam) -> Amstellerdam (10478ms)\nWhat is the name of the airport in Amsterdam?\tThe English\t-11.197526367742446\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> (The English, changed the name of, New Amsterdam) -> The English (10616ms)\nWhat is the name of the airport in Amsterdam?\tthe Bolashak complex\t-11.259062835492575\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, size of, amsterdam) -> (the Bolashak complex, covers an area the size of, Amsterdam) -> the Bolashak complex (10616ms)\nWhat is the name of the airport in Amsterdam?\tRoode Hoek\t-11.278271577947395\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, named, Roode Hoek) -> Roode Hoek (10616ms)\nWhat is the name of the airport in Amsterdam?\tthe dam\t-11.410603730280437\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, was named after, the dam) -> the dam (10616ms)\nWhat is the name of the airport in Amsterdam?\tthe UvA , UHA , HvA , EHvA and HES\t-11.542398971825886\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be resident in, amsterdam) -> (the UvA , UHA , HvA , EHvA and HES, are resident in, Amsterdam) -> the UvA , UHA , HvA , EHvA and HES (13146ms)\nWhat is the name of the airport in Amsterdam?\t45 overall\t-11.648928946795404\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently ranked, 45 overall) -> 45 overall (12151ms)\nWhat is the name of the airport in Amsterdam?\tthe Five Points\t-11.66685607971483\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has returned to, the Five Points) -> the Five Points (11516ms)\nWhat is the name of the airport in Amsterdam?\tthe avenue\t-11.740696152512962\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (the Amsterdam News, was named after, the avenue) -> the avenue (10652ms)\nWhat is the name of the airport in Amsterdam?\tthe Startup hotspots\t-11.751990708132396\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently one of, the Startup hotspots) -> the Startup hotspots (12151ms)\nWhat is the name of the airport in Amsterdam?\tthe honor\t-11.766273306231277\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, received its name in, the honor) -> the honor (10652ms)\nWhat is the name of the airport in Amsterdam?\tEurope\t-11.778324536511795\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently ranked 4th in, Europe) -> Europe (12151ms)\nWhat is the name of the airport in Amsterdam?\ta larger one\t-11.855716032002377\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, sometimes claims to have, a larger one) -> a larger one (11515ms)\nWhat is the name of the airport in Amsterdam?\tsea\t-11.913554081598214\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had floated out to, sea) -> sea (11516ms)\nWhat is the name of the airport in Amsterdam?\tEveryone Electric\t-11.940506110456447\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently exhibiting, Everyone Electric) -> Everyone Electric (12151ms)\nWhat is the name of the airport in Amsterdam?\tthe Cape Town Waterfront\t-11.96679291596274\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (The Stad Amsterdam, is currently at, the Cape Town Waterfront) -> the Cape Town Waterfront (12151ms)\nWhat is the name of the airport in Amsterdam?\tHebrew plays\t-12.005321463418914\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be resident in, amsterdam) -> (Hebrew plays, was also resident in, Amsterdam) -> Hebrew plays (13146ms)\nWhat is the name of the airport in Amsterdam?\tPaso Doble\t-12.018919551832228\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, are to be had at, Paso Doble) -> Paso Doble (11516ms)\nWhat is the name of the airport in Amsterdam?\tThe City boss\t-12.107537853517915\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (The City boss, was spotted in, Amsterdam airport) -> The City boss (15080ms)\nWhat is the name of the airport in Amsterdam?\tthe Atlantic Ocean\t-12.109952620366435\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be as close to, $x) -> (Amsterdam, is as close to, the Atlantic Ocean) -> the Atlantic Ocean (13146ms)\nWhat is the name of the airport in Amsterdam?\tone PhD student\t-12.159444290835367\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently looking for, one PhD student) -> one PhD student (12151ms)\nWhat is the name of the airport in Amsterdam?\tAmsterdam Stock Exchange\t-12.165159542333138\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, exchange, $x) -> (Amsterdam Stock Exchange:LGLCC, Stock exchange, Amsterdam Stock Exchange) -> Amsterdam Stock Exchange (18788ms)\nWhat is the name of the airport in Amsterdam?\tthe World Fashion Center\t-12.180970887533846\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be opposite, $x) -> (Amsterdam, is situated opposite, the World Fashion Center) -> the World Fashion Center (13621ms)\nWhat is the name of the airport in Amsterdam?\tthe Spui Tram Stop\t-12.212969540722757\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be opposite, $x) -> (Amsterdam Ajax, is situated opposite, the Spui Tram Stop) -> the Spui Tram Stop (13621ms)\nWhat is the name of the airport in Amsterdam?\ta lot\t-12.246196928659907\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be beautiful with, $x) -> (Amsterdam, is really beautiful city with, a lot) -> a lot (10808ms)\nWhat is the name of the airport in Amsterdam?\tsix days\t-12.327773608981586\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be leave be, $x) -> (Amsterdam, I?ll be leaving after, six days) -> six days (11743ms)\nWhat is the name of the airport in Amsterdam?\tthe Anne Frank Museum\t-12.36272817919671\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have the opportunity to visit, the Anne Frank Museum) -> the Anne Frank Museum (11516ms)\nWhat is the name of the airport in Amsterdam?\ta mainline container port\t-12.431545729912445\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has virtually ceased to be, a mainline container port) -> a mainline container port (11515ms)\nWhat is the name of the airport in Amsterdam?\ta lasting impression\t-12.446676909938905\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be leave be, $x) -> (Amsterdam, is guaranteed to leave, a lasting impression) -> a lasting impression (11743ms)\nWhat is the name of the airport in Amsterdam?\tan elegant and luxury look\t-12.46779784667806\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, is said to have, an elegant and luxury look) -> an elegant and luxury look (11547ms)\nWhat is the name of the airport in Amsterdam?\turban development programs\t-12.468593240689502\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have begun to describe, urban development programs) -> urban development programs (11547ms)\nWhat is the name of the airport in Amsterdam?\tdecoy Jews\t-12.483967925173864\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, now have to deploy ?, decoy Jews) -> decoy Jews (11547ms)\nWhat is the name of the airport in Amsterdam?\turban centres\t-12.488824083881045\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be pit against, $x) -> (Amsterdam, is pitted against, urban centres) -> urban centres (10860ms)\nWhat is the name of the airport in Amsterdam?\tfun\t-12.51377550210151\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, want to have, fun) -> fun (11547ms)\nWhat is the name of the airport in Amsterdam?\tfurther fundamental rights\t-12.536741004937914\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have helped to, further fundamental rights) -> further fundamental rights (11547ms)\nWhat is the name of the airport in Amsterdam?\tless convenient locations\t-12.543814601551276\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, tend to have, less convenient locations) -> less convenient locations (11547ms)\nWhat is the name of the airport in Amsterdam?\t160K\t-12.551375892298292\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: ($x, be as big as, amsterdam) -> (160K, was as big as, London or Amsterdam) -> 160K (10652ms)\nWhat is the name of the airport in Amsterdam?\ta drought\t-12.551600302721125\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, used to have, a drought) -> a drought (11584ms)\nWhat is the name of the airport in Amsterdam?\tan abundant water supply\t-12.5607884627525\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, is fortunate to have, an abundant water supply) -> an abundant water supply (11584ms)\nWhat is the name of the airport in Amsterdam?\tPaul McJones\t-12.563545755318456\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has granted permission to, Paul McJones) -> Paul McJones (11584ms)\nWhat is the name of the airport in Amsterdam?\tLondon\t-12.567330546954352\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be bigger than, amsterdam) -> (London, is bigger than, Amsterdam) -> London (13230ms)\nWhat is the name of the airport in Amsterdam?\ta wonderful place\t-12.568889469917089\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has the potential to be, a wonderful place) -> a wonderful place (11584ms)\nWhat is the name of the airport in Amsterdam?\tresearch projects\t-12.593764960274651\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had agreed to participate in, research projects) -> research projects (11584ms)\nWhat is the name of the airport in Amsterdam?\ta several numbers\t-12.599101061263546\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be beautiful with, $x) -> (Amsterdam, is a beautiful city with, a several numbers) -> a several numbers (10807ms)\nWhat is the name of the airport in Amsterdam?\tthe American city\t-12.638603240104102\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, go to have, $x) -> (2009 Amsterdam, has gone head to head with, the American city) -> the American city (10652ms)\nWhat is the name of the airport in Amsterdam?\tThe RAI Elicium\t-12.651671737354794\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be the face of, amsterdam) -> (The RAI Elicium, is the new contemporary face of, Amsterdam) -> The RAI Elicium (16024ms)\nWhat is the name of the airport in Amsterdam?\tcheap vacation rentals tours\t-12.684555613857992\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (Amsterdam, get the details of, cheap vacation rentals tours) -> cheap vacation rentals tours (13776ms)\nWhat is the name of the airport in Amsterdam?\tLeiden\t-12.690541900123566\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be smaller than, amsterdam) -> (Leiden, is a much smaller city than, Amsterdam) -> Leiden (13146ms)\nWhat is the name of the airport in Amsterdam?\tAmsterdam Treaty\t-12.693781004665789\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (Amsterdam, See details on, Amsterdam Treaty) -> Amsterdam Treaty (13776ms)\nWhat is the name of the airport in Amsterdam?\ta special player\t-12.73766749574634\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has a chance to be, a special player) -> a special player (11638ms)\nWhat is the name of the airport in Amsterdam?\ta canal stop\t-12.75635953691131\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be opposite, $x) -> (central amsterdam, is opposite, a canal stop) -> a canal stop (13621ms)\nWhat is the name of the airport in Amsterdam?\tHotel Okura Amsterdam\t-12.756881929613149\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Hotel Okura Amsterdam, is a hotel in the city, AMSTERDAM) -> Hotel Okura Amsterdam (17345ms)\nWhat is the name of the airport in Amsterdam?\tsecurity problems\t-12.765607826811241\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, were thought to have, security problems) -> security problems (11638ms)\nWhat is the name of the airport in Amsterdam?\tthe Jewish traveler\t-12.768997194761578\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, also has much to offer, the Jewish traveler) -> the Jewish traveler (11638ms)\nWhat is the name of the airport in Amsterdam?\tan additional argument\t-12.771025132646935\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has literally proven to be, an additional argument) -> an additional argument (11638ms)\nWhat is the name of the airport in Amsterdam?\tVoorburg\t-12.776931971548521\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had moved to, Voorburg) -> Voorburg (11638ms)\nWhat is the name of the airport in Amsterdam?\tUtrecht\t-12.776931971548521\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has more to offer than, Utrecht) -> Utrecht (11638ms)\nWhat is the name of the airport in Amsterdam?\tan end\t-12.792552984530987\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had come to, an end) -> an end (11665ms)\nWhat is the name of the airport in Amsterdam?\tThe Esplanade\t-12.796511813514433\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has been invited to perform at, The Esplanade) -> The Esplanade (11665ms)\nWhat is the name of the airport in Amsterdam?\tan extreme and\t-12.803163326748736\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has gone to, an extreme and) -> an extreme and (11665ms)\nWhat is the name of the airport in Amsterdam?\tLA\t-12.811726506732711\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had moved to, LA) -> LA (11665ms)\nWhat is the name of the airport in Amsterdam?\ta bit\t-12.819330003505808\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had to sit out, a bit) -> a bit (11665ms)\nWhat is the name of the airport in Amsterdam?\tthe Rotterdam-born Kalf\t-12.82541528813593\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, be praise, amsterdam) -> (the Rotterdam-born Kalf, was praised by, an Amsterdam poet) -> the Rotterdam-born Kalf (14783ms)\nWhat is the name of the airport in Amsterdam?\tGresham Memphis Amsterdam\t-12.827567622582416\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Gresham Memphis Amsterdam, is a hotel in the city, AMSTERDAM) -> Gresham Memphis Amsterdam (17345ms)\nWhat is the name of the airport in Amsterdam?\ta 27th position\t-12.862378245430172\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to make do with, a 27th position) -> a 27th position (11665ms)\nWhat is the name of the airport in Amsterdam?\ta solid base\t-12.869924420504962\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has already proved to be, a solid base) -> a solid base (11743ms)\nWhat is the name of the airport in Amsterdam?\tRijnsburg\t-12.876846352429808\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had gone to, Rijnsburg) -> Rijnsburg (11743ms)\nWhat is the name of the airport in Amsterdam?\tJob Cohen\t-12.890906950542144\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (Job Cohen, is the mayor of, Amsterdam) -> Job Cohen (16405ms)\nWhat is the name of the airport in Amsterdam?\tzero emissions\t-12.904406853950384\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to produce, zero emissions) -> zero emissions (11743ms)\nWhat is the name of the airport in Amsterdam?\tOraOxygen\t-12.90483337314437\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (OraOxygen, has locations in, Calgary and Amsterdam airports) -> OraOxygen (15080ms)\nWhat is the name of the airport in Amsterdam?\ta mixed blessing\t-12.961980753889176\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has found this to be, a mixed blessing) -> a mixed blessing (11744ms)\nWhat is the name of the airport in Amsterdam?\tSt . Nicholas\t-12.964881846392505\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be patron of, amsterdam) -> (St . Nicholas, is patron saint of, Amsterdam and Russia) -> St . Nicholas (15797ms)\nWhat is the name of the airport in Amsterdam?\tThe Butcher\t-12.968726902132978\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, seems to have fun with, The Butcher) -> The Butcher (11879ms)\nWhat is the name of the airport in Amsterdam?\tbikes and canals\t-12.980520238894723\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be beautiful with, $x) -> (Amsterdam, is a really beautiful city with, bikes and canals) -> bikes and canals (10808ms)\nWhat is the name of the airport in Amsterdam?\ta single patient\t-13.001938865046803\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has yet to euthanize, a single patient) -> a single patient (11879ms)\nWhat is the name of the airport in Amsterdam?\tbicycle gridlock\t-13.005597620323476\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has started to suffer from, bicycle gridlock) -> bicycle gridlock (11879ms)\nWhat is the name of the airport in Amsterdam?\t10,000 electric cars\t-13.014460256403696\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, plans to have, 10,000 electric cars) -> 10,000 electric cars (11879ms)\nWhat is the name of the airport in Amsterdam?\tA Jew\t-13.050721618878155\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (A Jew, can be the mayor of, Amsterdam) -> A Jew (16405ms)\nWhat is the name of the airport in Amsterdam?\tklm\t-13.059234897299673\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (klm, is a company headquartered in the city, AMSTERDAM) -> klm (17345ms)\nWhat is the name of the airport in Amsterdam?\tThe Trust\t-13.063926464559186\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, excerpt, $x) -> (Amsterdam, excerpted in, The Trust) -> The Trust (14112ms)\nWhat is the name of the airport in Amsterdam?\tCaf?\t-13.064312284860538\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has got to be, Caf?) -> Caf? (11879ms)\nWhat is the name of the airport in Amsterdam?\ta good time\t-13.065044573724832\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, just seemed keen to have, a good time) -> a good time (11879ms)\nWhat is the name of the airport in Amsterdam?\ta drinks party\t-13.090194360962307\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have kindly offered to host, a drinks party) -> a drinks party (11979ms)\nWhat is the name of the airport in Amsterdam?\tAnnemieke Kievit\t-13.101285698823652\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be manager of, amsterdam) -> (Annemieke Kievit, is general manager of, the Amsterdam office) -> Annemieke Kievit (15717ms)\nWhat is the name of the airport in Amsterdam?\t330\t-13.13294276251719\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has risen to over, 330) -> 330 (11979ms)\nWhat is the name of the airport in Amsterdam?\tevery guest\t-13.146944072702572\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has something to offer to, every guest) -> every guest (11979ms)\nWhat is the name of the airport in Amsterdam?\tevery tourist\t-13.172646442797564\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has something to offer to, every tourist) -> every tourist (11979ms)\nWhat is the name of the airport in Amsterdam?\tKLM Royal Dutch\t-13.174099148374733\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (KLM Royal Dutch, is a company headquartered in the city, AMSTERDAM) -> KLM Royal Dutch (17345ms)\nWhat is the name of the airport in Amsterdam?\tthe parking lot\t-13.177966838180367\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (New Amsterdam Market, is currently held in, the parking lot) -> the parking lot (12195ms)\nWhat is the name of the airport in Amsterdam?\tevery visitor\t-13.193047561661517\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has something to offer to, every visitor) -> every visitor (11979ms)\nWhat is the name of the airport in Amsterdam?\tKLM Royal Dutch Airlines\t-13.221396192935051\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (KLM Royal Dutch Airlines, is a company headquartered in the city, AMSTERDAM) -> KLM Royal Dutch Airlines (17345ms)\nWhat is the name of the airport in Amsterdam?\tEl-Al\t-13.221396192935051\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (El-Al, is a company that has an office in the city, AMSTERDAM) -> El-Al (17345ms)\nWhat is the name of the airport in Amsterdam?\tthe best cities\t-13.257408069813076\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently one of, the best cities) -> the best cities (12195ms)\nWhat is the name of the airport in Amsterdam?\tthe best European cities\t-13.258341876674086\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently one of, the best European cities) -> the best European cities (12195ms)\nWhat is the name of the airport in Amsterdam?\tUncle Cline Gleed\t-13.26298243275653\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (Uncle Cline Gleed, was mayor of, Amsterdam) -> Uncle Cline Gleed (16405ms)\nWhat is the name of the airport in Amsterdam?\tmore than 100 engineers\t-13.270877632966286\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has grown to, more than 100 engineers) -> more than 100 engineers (11979ms)\nWhat is the name of the airport in Amsterdam?\theineken music hall\t-13.29193361440003\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (heineken music hall, is a stadium or event venue located in the city, AMSTERDAM) -> heineken music hall (17345ms)\nWhat is the name of the airport in Amsterdam?\tA.J. d?Ailly\t-13.339030898193581\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (A.J. d?Ailly, had been mayor of, Amsterdam) -> A.J. d?Ailly (16405ms)\nWhat is the name of the airport in Amsterdam?\ttourists and locals\t-13.357327453937495\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, tourists and locals) -> tourists and locals (12194ms)\nWhat is the name of the airport in Amsterdam?\teach hotel\t-13.36316065246596\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (the Amsterdam RAI, find detailed information about, each hotel) -> each hotel (13776ms)\nWhat is the name of the airport in Amsterdam?\tIng\t-13.367151715978986\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Ing, is a company headquartered in the city, AMSTERDAM) -> Ing (17345ms)\nWhat is the name of the airport in Amsterdam?\tNorthwest airlines\t-13.466648517436193\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Northwest airlines, is a company that has an office in the city, AMSTERDAM) -> Northwest airlines (17447ms)\nWhat is the name of the airport in Amsterdam?\texcellent elementary schools\t-13.489420356572833\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, to have, excellent elementary schools) -> excellent elementary schools (12195ms)\nWhat is the name of the airport in Amsterdam?\tLiza Gabriela Lansang\t-13.512146786390675\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be a student in, amsterdam) -> (Liza Gabriela Lansang, is a post-graduate student in, Amsterdam) -> Liza Gabriela Lansang (16024ms)\nWhat is the name of the airport in Amsterdam?\tconstruction\t-13.606323309016474\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (The Amsterdam site, is currently under, construction) -> construction (12195ms)\nWhat is the name of the airport in Amsterdam?\t1000 kilocalories\t-13.613735182507384\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had dropped to below, 1000 kilocalories) -> 1000 kilocalories (12234ms)\nWhat is the name of the airport in Amsterdam?\tthe unique NAP exhibition\t-13.74138635710819\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently showcasing, the unique NAP exhibition) -> the unique NAP exhibition (12234ms)\nWhat is the name of the airport in Amsterdam?\t1758\t-13.774599049715476\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had started to build in, 1758) -> 1758 (12234ms)\nWhat is the name of the airport in Amsterdam?\tAir Berlin\t-13.789158550270924\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Air Berlin, is a company that has an office in the city, AMSTERDAM) -> Air Berlin (17448ms)\nWhat is the name of the airport in Amsterdam?\tThe city\t-13.831020236020095\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be smaller than, amsterdam) -> (The city, is even smaller than, Amsterdam) -> The city (13146ms)\nWhat is the name of the airport in Amsterdam?\tNetherlands A branch office\t-13.845724966433949\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have establish in, amsterdam) -> (Netherlands A branch office, has been established in, Amsterdam) -> Netherlands A branch office (16120ms)\nWhat is the name of the airport in Amsterdam?\tthe public\t-13.867010605990622\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has opened to, the public) -> the public (12234ms)\nWhat is the name of the airport in Amsterdam?\tso much\t-13.884494873859909\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to offer, so much) -> so much (12234ms)\nWhat is the name of the airport in Amsterdam?\tway\t-13.890944361918233\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: (amsterdam, be found by, $x) -> (Amsterdam, can be found by, way) -> way (15717ms)\nWhat is the name of the airport in Amsterdam?\tthe survey\t-13.919351331965357\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, rank fifth in, $x) -> (Amsterdam, was ranked fifth in, the survey) -> the survey (13303ms)\nWhat is the name of the airport in Amsterdam?\tthe city\t-13.958816444078654\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be so close to, $x) -> (the Amsterdam airport Schiphol, is just so close to, the city) -> the city (13303ms)\nWhat is the name of the airport in Amsterdam?\tHilton\t-13.998877480468517\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, plan, amsterdam airport) -> (Hilton, plans, Amsterdam Airport Schiphol #hotel) -> Hilton (15080ms)\nWhat is the name of the airport in Amsterdam?\tthe current economic slump\t-14.01005998528381\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have been shelved due to, the current economic slump) -> the current economic slump (12294ms)\nWhat is the name of the airport in Amsterdam?\tConversos\t-14.020546914818539\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, circumcise, $x) -> (Amsterdam, circumcised, Conversos) -> Conversos (14022ms)\nWhat is the name of the airport in Amsterdam?\tMr. Philips\t-14.051675674805024\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Mr. Philips, ins, Amsterdam) -> Mr. Philips (17447ms)\nWhat is the name of the airport in Amsterdam?\tThe last two posts\t-14.073730909301526\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (The last two posts, were written in, Amsterdam airport while) -> The last two posts (15080ms)\nWhat is the name of the airport in Amsterdam?\tart\t-14.08479927579781\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, to have replaced with, art) -> art (12294ms)\nWhat is the name of the airport in Amsterdam?\ta lot more\t-14.116364261266535\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to offer, a lot more) -> a lot more (12294ms)\nWhat is the name of the airport in Amsterdam?\tthe fifth best city\t-14.147595812649378\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be rate as, $x) -> (Economy Amsterdam, was recently rated as, the fifth best city) -> the fifth best city (13343ms)\nWhat is the name of the airport in Amsterdam?\tan end-user ready solution\t-14.148006704265887\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, to offer, $x) -> (Amsterdam, are the first to offer, an end-user ready solution) -> an end-user ready solution (17447ms)\nWhat is the name of the airport in Amsterdam?\tCohen\t-14.16197475962712\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (Cohen, has been a fairly successful mayor of, Amsterdam) -> Cohen (16405ms)\nWhat is the name of the airport in Amsterdam?\tthe value\t-14.170472080043737\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has been asked to investigate, the value) -> the value (12294ms)\nWhat is the name of the airport in Amsterdam?\tthe best summer\t-14.172772973796793\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, get ready to have, the best summer) -> the best summer (12294ms)\nWhat is the name of the airport in Amsterdam?\tthe bulb\t-14.207282478753708\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has been connected to, the bulb) -> the bulb (12294ms)\nWhat is the name of the airport in Amsterdam?\tlater\t-14.211121828656776\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, named, later) -> later (10807ms)\nWhat is the name of the airport in Amsterdam?\tNORTHWEST\t-14.214099585857342\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (NORTHWEST, is a company that has an office in the city, AMSTERDAM) -> NORTHWEST (17447ms)\nWhat is the name of the airport in Amsterdam?\tthe first citizenM\t-14.245195687141983\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (the first citizenM, opened in, Amsterdam ?s airport) -> the first citizenM (15080ms)\nWhat is the name of the airport in Amsterdam?\t1870\t-14.256958814783257\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has history dating back to, 1870) -> 1870 (12366ms)\nWhat is the name of the airport in Amsterdam?\tMore hotel\t-14.283540259458153\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (More hotel, Situated in, Amsterdam) -> More hotel (17447ms)\nWhat is the name of the airport in Amsterdam?\tthe USA\t-14.326247061773984\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, to refer to, amsterdam) -> (the USA, is referred to as, \" New Amsterdam) -> the USA (17447ms)\nWhat is the name of the airport in Amsterdam?\tThe travelers\t-14.336605720436012\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, can easily find, amsterdam) -> (The travelers, can easily find, hotel Amsterdam) -> The travelers (13621ms)\nWhat is the name of the airport in Amsterdam?\tthe avid shopper\t-14.364544111622934\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, the avid shopper) -> the avid shopper (12366ms)\nWhat is the name of the airport in Amsterdam?\tthe watch\t-14.381691681589167\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be little more than, amsterdam) -> (the watch, was a little more expensive than, the Amsterdam rate) -> the watch (13302ms)\nWhat is the name of the airport in Amsterdam?\tChurches\t-14.387257377206506\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have establish in, amsterdam) -> (Churches, had previously been established in, Amsterdam) -> Churches (16120ms)\nWhat is the name of the airport in Amsterdam?\tDutch settlers\t-14.389888475462818\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have establish in, amsterdam) -> (Dutch settlers, had established a church in, New Amsterdam) -> Dutch settlers (16120ms)\nWhat is the name of the airport in Amsterdam?\tthe card\t-14.391093322488203\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, can also have, $x) -> (Amsterdam, can also have benefits for, the card) -> the card (10931ms)\nWhat is the name of the airport in Amsterdam?\tfestival formats\t-14.424998139604721\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, address, $x) -> (Amsterdam, also addressed the question of, festival formats) -> festival formats (17533ms)\nWhat is the name of the airport in Amsterdam?\tthe traveler\t-14.430798476994962\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, the traveler) -> the traveler (12366ms)\nWhat is the name of the airport in Amsterdam?\tdisplay\t-14.45134686272288\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam?s wealthiest citizens, is currently at, display) -> display (12366ms)\nWhat is the name of the airport in Amsterdam?\tthe sideline\t-14.455098962372695\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, have be mention, $x) -> (' Amsterdam ', had only been mentioned on, the sideline) -> the sideline (14160ms)\nWhat is the name of the airport in Amsterdam?\tmushrooms\t-14.477606268524152\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has proposed to sell, mushrooms) -> mushrooms (12366ms)\nWhat is the name of the airport in Amsterdam?\tthe identification\t-14.483377293991541\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has led to, the identification) -> the identification (12385ms)\nWhat is the name of the airport in Amsterdam?\tthe two fishermen\t-14.485311896518343\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, founder of, amsterdam) -> (the two fishermen, became the founders of, Amsterdam) -> the two fishermen (14539ms)\nWhat is the name of the airport in Amsterdam?\tthe complaints\t-14.491007650667196\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has promised to seriously consider, the complaints) -> the complaints (12385ms)\nWhat is the name of the airport in Amsterdam?\tthe keeping\t-14.492546947072842\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had entrusted to, the keeping) -> the keeping (12385ms)\nWhat is the name of the airport in Amsterdam?\tWinds Records\t-14.50624261932691\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, address, $x) -> (Amsterdam 1971, gives the address to, Winds Records) -> Winds Records (17533ms)\nWhat is the name of the airport in Amsterdam?\tstudents\t-14.51998317467248\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have also proved inspirational to, students) -> students (12385ms)\nWhat is the name of the airport in Amsterdam?\twork\t-14.558010950215444\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently at, work) -> work (12385ms)\nWhat is the name of the airport in Amsterdam?\tthe location\t-14.566164496104008\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has already agreed to provide, the location) -> the location (12385ms)\nWhat is the name of the airport in Amsterdam?\tChet Baker\t-14.569725250568338\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Chet Baker, died in, Amsterdam) -> Chet Baker (17485ms)\nWhat is the name of the airport in Amsterdam?\tmeeting\t-14.570774683755529\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have had to resort to, meeting) -> meeting (12416ms)\nWhat is the name of the airport in Amsterdam?\thome\t-14.609312531608559\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be leave be, $x) -> (Amsterdam, has been left at, home) -> home (12416ms)\nWhat is the name of the airport in Amsterdam?\tthe Open Access seminar\t-14.611404972636478\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (the Open Access seminar, organised in, Amsterdam) -> the Open Access seminar (17486ms)\nWhat is the name of the airport in Amsterdam?\tthe tourist\t-14.647426938485255\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, the tourist) -> the tourist (12416ms)\nWhat is the name of the airport in Amsterdam?\tthe visitor\t-14.647426938485255\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, the visitor) -> the visitor (12416ms)\nWhat is the name of the airport in Amsterdam?\ta more appropriate culture\t-14.672480779203397\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, to offer, $x) -> (Amsterdam, arguably seemed to offer, a more appropriate culture) -> a more appropriate culture (17486ms)\nWhat is the name of the airport in Amsterdam?\ta native of South Africa\t-14.67767725085268\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (a native of South Africa, residing in, Amsterdam) -> a native of South Africa (17486ms)\nWhat is the name of the airport in Amsterdam?\ta large wave of Surinamese\t-14.684853511536456\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (a large wave of Surinamese, settled in, Amsterdam) -> a large wave of Surinamese (17487ms)\nWhat is the name of the airport in Amsterdam?\tmillions\t-14.723465337525566\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be beautiful with, $x) -> (Amsterdam, is a beautiful city with, millions) -> millions (10860ms)\nWhat is the name of the airport in Amsterdam?\tthe bases and once\t-14.731891438558097\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be the hero of, amsterdam) -> (the bases and once, again was the hero of, Old New Amsterdam) -> the bases and once (15797ms)\nWhat is the name of the airport in Amsterdam?\t14\t-14.747815521575898\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, to refer to, amsterdam) -> (14, were referred to, the New Amsterdam Hospital) -> 14 (17486ms)\nWhat is the name of the airport in Amsterdam?\twater\t-14.804267465803093\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, love have, $x) -> (Amsterdam, has a love-hate relationship with, water) -> water (12416ms)\nWhat is the name of the airport in Amsterdam?\tquestion\t-14.804427471450452\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (question, are in, Amsterdam Schipol airport) -> question (15080ms)\nWhat is the name of the airport in Amsterdam?\tVan der Velden\t-14.811364404180843\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, to refer to, amsterdam) -> (Van der Velden, refers to, an Amsterdam Court) -> Van der Velden (17533ms)\nWhat is the name of the airport in Amsterdam?\tsingle women\t-14.842159641786088\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, to offer, $x) -> (The Amsterdam Medical Centre, wants to offer, single women) -> single women (17533ms)\nWhat is the name of the airport in Amsterdam?\tthe end\t-14.844306441247678\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (the end, was appointed Mayor of, Amsterdam) -> the end (16405ms)\nWhat is the name of the airport in Amsterdam?\tTravellers\t-14.857637229809562\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, to offer, $x) -> (Amsterdam, Got to Offer, Travellers) -> Travellers (17533ms)\nWhat is the name of the airport in Amsterdam?\tthe wreckage\t-14.882870593214758\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (AMSTERDAM ? Investigators, took detailed photos of, the wreckage) -> the wreckage (13776ms)\nWhat is the name of the airport in Amsterdam?\tSchmitt\t-14.888739120111593\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have establish in, amsterdam) -> (Schmitt, had already established connections in, Amsterdam) -> Schmitt (16120ms)\nWhat is the name of the airport in Amsterdam?\ta Canadian\t-14.917744027221417\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (a Canadian, living in, Amsterdam) -> a Canadian (17533ms)\nWhat is the name of the airport in Amsterdam?\tthe current state\t-14.924673900251076\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, have comment, $x) -> (Amsterdam, has comments on, the current state) -> the current state (14068ms)\nWhat is the name of the airport in Amsterdam?\tdebates\t-14.95798642097741\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, have be mention, $x) -> (Amsterdam Pride, has been repeatedly mentioned in, debates) -> debates (14160ms)\nWhat is the name of the airport in Amsterdam?\tvengeance\t-15.02579002488653\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has come to seek, vengeance) -> vengeance (12416ms)\nWhat is the name of the airport in Amsterdam?\tshare\t-15.116370396339578\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has a rich history to, share) -> share (12440ms)\nWhat is the name of the airport in Amsterdam?\tplayers\t-15.118630756452161\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has continued to lose, players) -> players (12440ms)\nWhat is the name of the airport in Amsterdam?\tThe best known Dutch Jew\t-15.169303893682502\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (The best known Dutch Jew, is the mayor of, Amsterdam Job Cohen) -> The best known Dutch Jew (16405ms)\nWhat is the name of the airport in Amsterdam?\tThe modern shopping mall\t-15.248116545768399\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have found, amsterdam) -> (The modern shopping mall, has also found its way to, Amsterdam) -> The modern shopping mall (15853ms)\nWhat is the name of the airport in Amsterdam?\tBill\t-15.33546440514622\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, to murder, $x) -> (Amsterdam, attempts to murder, Bill) -> Bill (14160ms)\nWhat is the name of the airport in Amsterdam?\tsuit\t-15.340892072717075\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has something to, suit) -> suit (12440ms)\nWhat is the name of the airport in Amsterdam?\tdescriptions\t-15.715488621502162\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (amsterdam, See detailed, descriptions) -> descriptions (13776ms)\nWhat is the name of the airport in Amsterdam?\tplenty\t-16.695714863236617\tWhat is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to offer, plenty) -> plenty (12440ms)\nWho invented basketball?\tJames Naismith\t-0.9902783816405389\tWho invented basketball? -> $x: ($x, invented, basketball) -> (James Naismith, invented, Basketball) -> James Naismith (10394ms)\nWho invented basketball?\tCompany History\t-1.6715471958028183\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Company History, invented, basketball) -> Company History (10638ms)\nWho invented basketball?\tcollege students\t-1.6754810454740614\tWho invented basketball? -> $x: ($x, invented, basketball) -> (college students, invented, basketball and volleyball) -> college students (10638ms)\nWho invented basketball?\tHanno Mottola\t-1.6932945048329207\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Hanno Mottola, invent game of, basketball) -> Hanno Mottola (10638ms)\nWho invented basketball?\tphysical education\t-1.7456506289899891\tWho invented basketball? -> $x: ($x, invented, basketball) -> (physical education, invented the game of, basketball) -> physical education (10638ms)\nWho invented basketball?\tGod\t-1.8838237830198388\tWho invented basketball? -> $x: ($x, invented, basketball) -> (God, invented, the National Basketball Association) -> God (10638ms)\nWho invented basketball?\tDan Biasone\t-2.0666608853342936\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Dan Biasone, invented, basketball) -> Dan Biasone (10638ms)\nWho invented basketball?\tAl Gore\t-2.0935524827675245\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Al Gore, invented, Basketball-Reference) -> Al Gore (10679ms)\nWho invented basketball?\tA Canadian\t-2.186202652834705\tWho invented basketball? -> $x: ($x, invented, basketball) -> (A Canadian, invented, basketball) -> A Canadian (10679ms)\nWho invented basketball?\tThe Globetrotters\t-2.319705084089885\tWho invented basketball? -> $x: ($x, invented, basketball) -> (The Globetrotters, invented, show basketball) -> The Globetrotters (10680ms)\nWho invented basketball?\tOnt.\t-2.567433811573074\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Ont., invented, basketball) -> Ont. (10754ms)\nWho invented basketball?\ta KU Coach\t-2.7253341858338205\tWho invented basketball? -> $x: ($x, invented, basketball) -> (a KU Coach, invented, basketball) -> a KU Coach (10812ms)\nWho invented basketball?\thistory ??\t-2.737721569911506\tWho invented basketball? -> $x: ($x, invented, basketball) -> (history ??, invented, basketball) -> history ?? (10812ms)\nWho invented basketball?\tYMCA members\t-2.7425993218372478\tWho invented basketball? -> $x: ($x, invented, basketball) -> (YMCA members, invented, basketball) -> YMCA members (10813ms)\nWho invented basketball?\twhite man\t-2.7479045456484172\tWho invented basketball? -> $x: ($x, invented, basketball) -> (white man, invented, basketball) -> white man (10812ms)\nWho invented basketball?\tThe YMCA\t-2.7980486206104613\tWho invented basketball? -> $x: ($x, invented, basketball) -> (The YMCA, invented, basketball) -> The YMCA (11043ms)\nWho invented basketball?\tthe Canadian physical education instructor\t-2.8017069797622582\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the Canadian physical education instructor, invented, basketball) -> the Canadian physical education instructor (11043ms)\nWho invented basketball?\tDr. James Naismith\t-2.8222469039538893\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Dr. James Naismith, would invent, basketball) -> Dr. James Naismith (11042ms)\nWho invented basketball?\tDr. Naismith\t-2.8262058848966136\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Dr. Naismith, invented, basketball) -> Dr. Naismith (11042ms)\nWho invented basketball?\ta physical education teacher\t-2.9398452236662873\tWho invented basketball? -> $x: ($x, invented, basketball) -> (a physical education teacher, invented, basketball) -> a physical education teacher (11086ms)\nWho invented basketball?\tYMCA instructor James Naismith\t-2.9575291624973987\tWho invented basketball? -> $x: ($x, invented, basketball) -> (YMCA instructor James Naismith, invented, basketball) -> YMCA instructor James Naismith (11088ms)\nWho invented basketball?\tBasketball Dr. James Naismith\t-2.9631833844619067\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Basketball Dr. James Naismith, invented, basketball) -> Basketball Dr. James Naismith (11086ms)\nWho invented basketball?\tJames naismith\t-3.00297653058424\tWho invented basketball? -> $x: ($x, invented, basketball) -> (James naismith, invented the game of, basketball) -> James naismith (11115ms)\nWho invented basketball?\tBasketball Canadian Dr James Naismith\t-3.0060954788579943\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball Canadian Dr James Naismith (11115ms)\nWho invented basketball?\troller James Naismith\t-3.017088403795578\tWho invented basketball? -> $x: ($x, invented, basketball) -> (roller James Naismith, invented, the modern basketball) -> roller James Naismith (11115ms)\nWho invented basketball?\tphysician\t-3.043424925008395\tWho invented basketball? -> $x: ($x, invented, basketball) -> (physician, invented the game of, basketball) -> physician (11115ms)\nWho invented basketball?\ta creative advertising agent\t-3.0600315344547195\tWho invented basketball? -> $x: ($x, invented, basketball) -> (a creative advertising agent, invented, a basketball) -> a creative advertising agent (11115ms)\nWho invented basketball?\tA Canadian doctor\t-3.060445153437609\tWho invented basketball? -> $x: ($x, invented, basketball) -> (A Canadian doctor, invented, Basketball) -> A Canadian doctor (11156ms)\nWho invented basketball?\ta sports stringer\t-3.0656199832352176\tWho invented basketball? -> $x: ($x, invented, basketball) -> (a sports stringer, invented, a college basketball team &) -> a sports stringer (11156ms)\nWho invented basketball?\tCanadian James Naismith\t-3.069092213414643\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Canadian James Naismith, invented the game of, basketball) -> Canadian James Naismith (11155ms)\nWho invented basketball?\tProgram Director James Naismith\t-3.1016533904564643\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Program Director James Naismith, invented, Basketball) -> Program Director James Naismith (11156ms)\nWho invented basketball?\ta winter team sport\t-3.1072568258087014\tWho invented basketball? -> $x: ($x, invented, basketball) -> (a winter team sport, invented the game of, basketball) -> a winter team sport (11155ms)\nWho invented basketball?\tAny other interesting facts James Naismith\t-3.1469661861820013\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Any other interesting facts James Naismith, invented, basketball) -> Any other interesting facts James Naismith (11212ms)\nWho invented basketball?\tthe who\t-3.201021563886907\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the who, invented, the game basketball) -> the who (11212ms)\nWho invented basketball?\tThe Canadian\t-3.2182459975752993\tWho invented basketball? -> $x: ($x, invented, basketball) -> (The Canadian, invented, the game of basketball) -> The Canadian (11212ms)\nWho invented basketball?\tMars\t-3.222339535664224\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Mars, invent, time travel or play basketball) -> Mars (11212ms)\nWho invented basketball?\tCanuck\t-3.3951770048900736\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Canuck, invented, basketball) -> Canuck (11261ms)\nWho invented basketball?\tThe Canadians\t-3.628545297024787\tWho invented basketball? -> $x: ($x, invented, basketball) -> (The Canadians, invented, basketball) -> The Canadians (11262ms)\nWho invented basketball?\tthe YMCA\t-3.6308691435174785\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the YMCA, invented, basketball) -> the YMCA (11320ms)\nWho invented basketball?\tinventor\t-3.6958069247925405\tWho invented basketball? -> $x: ($x, invented, basketball) -> (inventor, invented the game of, basketball) -> inventor (11320ms)\nWho invented basketball?\tUnited States educator\t-3.912326930597703\tWho invented basketball? -> $x: ($x, invented, basketball) -> (United States educator, invented, the game of basketball) -> United States educator (11392ms)\nWho invented basketball?\tinnovators\t-3.948985714589516\tWho invented basketball? -> $x: ($x, invented, basketball) -> (innovators, have invented the game of, basketball and volleyball) -> innovators (11392ms)\nWho invented basketball?\tNaismith\t-3.9999238951931755\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Naismith, invented, basketball) -> Naismith (11628ms)\nWho invented basketball?\tCanadians\t-4.101214449785947\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Canadians, invented, Basketball) -> Canadians (11769ms)\nWho invented basketball?\t1891 James Naismith\t-4.113095724415903\tWho invented basketball? -> $x: ($x, invented, basketball) -> (1891 James Naismith, invented, basketball) -> 1891 James Naismith (11769ms)\nWho invented basketball?\tAmerica\t-4.196827610764823\tWho invented basketball? -> $x: ($x, invented, basketball) -> (America, invented, Basketball too) -> America (11818ms)\nWho invented basketball?\t1891 Dr. Naismith\t-4.251849008082084\tWho invented basketball? -> $x: ($x, invented, basketball) -> (1891 Dr. Naismith, invented the game of, Basketball) -> 1891 Dr. Naismith (11878ms)\nWho invented basketball?\tjames naismith\t-4.312927514359188\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, james naismith) -> james naismith (11996ms)\nWho invented basketball?\tSpringfield\t-4.320429910333538\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Springfield, invented the game of, basketball) -> Springfield (11996ms)\nWho invented basketball?\tPhilip Bryant\t-4.3691243670440265\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, Philip Bryant) -> Philip Bryant (12028ms)\nWho invented basketball?\tTaylor\t-4.419933943983801\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Taylor, is also credited with inventing, a basketball) -> Taylor (12028ms)\nWho invented basketball?\tthe jews\t-4.440572509976248\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the jews, invented, basketball) -> the jews (12076ms)\nWho invented basketball?\tEuropeans\t-4.496074228167627\tWho invented basketball? -> $x: ($x, invented, basketball) -> (Europeans, invented, baseball , football and basketball) -> Europeans (12096ms)\nWho invented basketball?\tthe first try\t-4.559336374815944\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the first try, invented, basketball) -> the first try (12096ms)\nWho invented basketball?\tthe movement\t-4.571111283991028\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the movement, invented, basketball and volleyball) -> the movement (12339ms)\nWho invented basketball?\tThe guy\t-4.608307426500529\tWho invented basketball? -> $x: ($x, invented, basketball) -> (The guy, invented, basketball) -> The guy (12339ms)\nWho invented basketball?\tthe canadian cation instructor\t-4.6518281082282344\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the canadian cation instructor, invented, basketball) -> the canadian cation instructor (12339ms)\nWho invented basketball?\tVince Carter\t-4.698299863193332\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (Vince Carter, has helped to popularize, basketball) -> Vince Carter (12339ms)\nWho invented basketball?\tthe moment James Naismith\t-4.765005443232855\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the moment James Naismith, invented, basketball) -> the moment James Naismith (12464ms)\nWho invented basketball?\tthe short time limit Dr. Naismith\t-4.773181935791682\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the short time limit Dr. Naismith, invented, basketball) -> the short time limit Dr. Naismith (12464ms)\nWho invented basketball?\tactive students\t-4.784092064932921\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (the Science Guy Basketball, was invented by, active students) -> active students (12464ms)\nWho invented basketball?\tthe same year James B. Naismith\t-4.862093669959922\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the same year James B. Naismith, invented, basketball) -> the same year James B. Naismith (12464ms)\nWho invented basketball?\t1891 - James Naismith\t-5.086940954359002\tWho invented basketball? -> $x: ($x, invented, basketball) -> (1891 - James Naismith, invents, basketball) -> 1891 - James Naismith (12496ms)\nWho invented basketball?\ta native\t-5.226829647566844\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, a native) -> a native (12511ms)\nWho invented basketball?\tthe person\t-5.243670521827106\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the person, invented, basketball) -> the person (12511ms)\nWho invented basketball?\ta man\t-5.321127762454148\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was a game invented by, a man) -> a man (12728ms)\nWho invented basketball?\ta Canadian baseball football\t-5.332267909101374\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, a Canadian baseball football) -> a Canadian baseball football (12728ms)\nWho invented basketball?\ta Scottish American\t-5.43302865926467\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a Scottish American) -> a Scottish American (12751ms)\nWho invented basketball?\tmen\t-5.476647266686143\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Both basketball and volleyball, were invented by, men) -> men (12767ms)\nWho invented basketball?\ta canadian\t-5.492246923172516\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a canadian) -> a canadian (12767ms)\nWho invented basketball?\tAaron Cripe\t-5.563846027498838\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Aaron Cripe, has resigned his position as, head basketball coach) -> Aaron Cripe (12783ms)\nWho invented basketball?\ta Canadian\t-5.581648109131937\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (?basketball, was invented by, a Canadian) -> a Canadian (12783ms)\nWho invented basketball?\ta rugby coach\t-5.599585494428371\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a rugby coach) -> a rugby coach (12798ms)\nWho invented basketball?\tan individual\t-5.624407598000101\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (only basketball, was invented by, an individual) -> an individual (12799ms)\nWho invented basketball?\tYMCA instructors\t-5.638455486178614\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball and volleyball, were invented by, YMCA instructors) -> YMCA instructors (12798ms)\nWho invented basketball?\ta Y.M.C.A. official\t-5.6491651334445745\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a Y.M.C.A. official) -> a Y.M.C.A. official (12813ms)\nWho invented basketball?\ta Canadian , Dr. James A. Naismith\t-5.6616160317570055\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, a Canadian , Dr. James A. Naismith) -> a Canadian , Dr. James A. Naismith (12813ms)\nWho invented basketball?\tQuote Koral\t-5.663760355677829\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Quote Koral, was played by, basketball star James Worthy) -> Quote Koral (12813ms)\nWho invented basketball?\tCanadian Dr. James Naismith\t-5.700284756662542\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, Canadian Dr. James Naismith) -> Canadian Dr. James Naismith (12828ms)\nWho invented basketball?\tprofessional players\t-5.77122095638002\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (professional players, make a living by playing, basketball) -> professional players (12859ms)\nWho invented basketball?\tbasketball drills\t-5.786644535098549\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (basketball drills, are extremely perfect for, a basketball team) -> basketball drills (12859ms)\nWho invented basketball?\tthe country\t-5.867895257325099\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the country, invented, basketball) -> the country (13056ms)\nWho invented basketball?\tSquare Enix\t-5.902619781566527\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Square Enix, almost perfected, basketball) -> Square Enix (13096ms)\nWho invented basketball?\tstatic poses\t-5.972818038242492\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (static poses, is perfect for, the basketball fan) -> static poses (13095ms)\nWho invented basketball?\tspindly body\t-6.06163008959564\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (spindly body, were perfect for, basketball) -> spindly body (13152ms)\nWho invented basketball?\tCanadian drillmaster\t-6.11144473261035\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was originally invented by, Canadian drillmaster) -> Canadian drillmaster (13153ms)\nWho invented basketball?\tthe white man\t-6.164655062336912\tWho invented basketball? -> $x: ($x, invented, basketball) -> (the white man, invented, basketball) -> the white man (13152ms)\nWho invented basketball?\tJohn Allison\t-6.197566459334844\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (John Allison, actually played like, a live basketball center) -> John Allison (13216ms)\nWho invented basketball?\tLin\t-6.246034909970785\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, reinvent, basketball) -> (Lin, was reinventing, basketball) -> Lin (13216ms)\nWho invented basketball?\tthe Wizards\t-6.299463893466939\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Wizards, actually played, team basketball) -> the Wizards (13215ms)\nWho invented basketball?\tPhog Allen\t-6.30625824150443\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be the inventor of, basketball) -> (Phog Allen, was the inventor of, basketball) -> Phog Allen (13251ms)\nWho invented basketball?\tPlayStation 3\t-6.3322720627101905\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (PlayStation 3, is the perfect way to shoot, basketball hoops) -> PlayStation 3 (13249ms)\nWho invented basketball?\t1869\t-6.4012840851728114\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, 1869) -> 1869 (13265ms)\nWho invented basketball?\tAyman Idais Academy\t-6.4072670980322215\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (Ayman Idais Academy, is to create, a lifetime basketball program) -> Ayman Idais Academy (13265ms)\nWho invented basketball?\ta full-time actor\t-6.4850765026723245\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (a full-time actor, has actually played, a basketball player) -> a full-time actor (13265ms)\nWho invented basketball?\tany stereotype--she\t-6.4903171056539435\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (any stereotype--she, has helped popularize, basketball) -> any stereotype--she (13264ms)\nWho invented basketball?\tthe Knights\t-6.508134571942773\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Knights, are actually playing some of, their best basketball) -> the Knights (13297ms)\nWho invented basketball?\tthe Nets\t-6.51589817925009\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Nets, have actually been playing, decent basketball) -> the Nets (13298ms)\nWho invented basketball?\tJ.R.\t-6.519560193933451\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (J.R., actually play, basketball) -> J.R. (13297ms)\nWho invented basketball?\tsoul\t-6.520828084816686\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (soul, are perfect for, basketball games) -> soul (13298ms)\nWho invented basketball?\trock\t-6.536351451754896\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be the inventor of, basketball) -> (rock, only is the inventor of, basketball) -> rock (13298ms)\nWho invented basketball?\tthey?re both Italian-Americans\t-6.580569846143538\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (they?re both Italian-Americans, popularized, up-tempo basketball) -> they?re both Italian-Americans (13517ms)\nWho invented basketball?\tHe?s\t-6.644232110259211\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (He?s, may actually like to play, basketball) -> He?s (13517ms)\nWho invented basketball?\tIllinois-Chicago\t-6.652681827881764\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Illinois-Chicago, was a perfect example of, Detroit basketball) -> Illinois-Chicago (13517ms)\nWho invented basketball?\tThe Heat\t-6.664551052142328\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (The Heat, are actually playing, great basketball) -> The Heat (13517ms)\nWho invented basketball?\tI?ll\t-6.683136786228115\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, first make, basketball) -> (I?ll, make the first substitution in, pickup basketball history) -> I?ll (13735ms)\nWho invented basketball?\tJeremy Lin\t-6.708813675463816\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Jeremy Lin, is the perfect blend of, basketball talent) -> Jeremy Lin (13736ms)\nWho invented basketball?\ta street\t-6.7245688577259255\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (a street, can also be used to create, basketball courts) -> a street (13735ms)\nWho invented basketball?\tadidas\t-6.758677283444772\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (adidas, is the perfect way to start off, his basketball wardrobe) -> adidas (13736ms)\nWho invented basketball?\t?China\t-6.767894571104902\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be marketing, basketball) -> (?China, is a massive market for, NBA basketball) -> ?China (13736ms)\nWho invented basketball?\tKirk\t-6.772585329154129\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Kirk, can actually play, basketball) -> Kirk (13736ms)\nWho invented basketball?\tOrange and gray\t-6.794481127600992\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Orange and gray, were perfect for, my son?s basketball layout) -> Orange and gray (13811ms)\nWho invented basketball?\tThe Mohegan Sun Arena\t-6.796314121232736\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (The Mohegan Sun Arena, is a perfect venue for, basketball) -> The Mohegan Sun Arena (13811ms)\nWho invented basketball?\tKiel Turpin\t-6.964082481862453\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, think up, basketball) -> (Kiel Turpin, was thinking about giving up, basketball) -> Kiel Turpin (14056ms)\nWho invented basketball?\tNike Blazer\t-6.968442818320809\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, first make, basketball) -> (Nike Blazer, was first made as, the basketball sneaker) -> Nike Blazer (14057ms)\nWho invented basketball?\tReal\t-7.0183003847018455\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Real, is the Perfect Exercise to, Jump Higher basketball players) -> Real (14056ms)\nWho invented basketball?\tRose 2.5\t-7.028509044429024\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be marketing, basketball) -> (Rose 2.5, is marketed as, the lightest basketball shoe) -> Rose 2.5 (14056ms)\nWho invented basketball?\talmost 6\t-7.0418365666796126\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (almost 6, actually plays, basketball) -> almost 6 (14662ms)\nWho invented basketball?\tPaul\t-7.138615831744789\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Paul, has held positions such as, College Basketball Coach) -> Paul (14662ms)\nWho invented basketball?\t950 games\t-7.162907116571436\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (950 games, were played by, Northern Nevada basketball teams) -> 950 games (14662ms)\nWho invented basketball?\t7... Quote Koral\t-7.166443914878117\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (7... Quote Koral, was played by, basketball star James Worthy) -> 7... Quote Koral (14662ms)\nWho invented basketball?\tthe NBA\t-7.28539488570623\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (the NBA, is by playing, basketball) -> the NBA (14890ms)\nWho invented basketball?\talumni\t-7.357135080720517\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (alumni, are given the opportunity to create, a basketball team) -> alumni (14890ms)\nWho invented basketball?\tFairborn\t-7.402551048431405\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, reinvent, basketball) -> (Fairborn, needed to reinvent, its boys basketball team) -> Fairborn (14890ms)\nWho invented basketball?\tstyle\t-7.443911671152854\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (style, are perfect for playing, basketball) -> style (14890ms)\nWho invented basketball?\tHawes\t-7.468538240786916\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Hawes, actually played on, a basketball team) -> Hawes (14890ms)\nWho invented basketball?\tjames\t-7.628799681581837\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented in naismith by, james) -> james (14955ms)\nWho invented basketball?\tWestbrook\t-7.850759775663074\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Westbrook, is actually playing, the best basketball) -> Westbrook (14955ms)\nWho invented basketball?\tSnyder\t-7.857074349549724\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Snyder, has actually been playing, some pretty good basketball) -> Snyder (14955ms)\nWho invented basketball?\tStricklen\t-7.865032132564183\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Stricklen, want to actually play, basketball) -> Stricklen (14955ms)\nWho invented basketball?\tPhoenix\t-7.9273533903585\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Phoenix, can get back to playing actually, fun basketball) -> Phoenix (14980ms)\nWho invented basketball?\tResults\t-7.990760472146174\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Results, is visible by playing, pickup basketball) -> Results (14980ms)\nWho invented basketball?\tMichael\t-8.009156413225544\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Michael, had positioned, the basketball) -> Michael (14980ms)\nWho invented basketball?\tShaktoolik\t-8.017606130848096\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Shaktoolik, passed time by playing, basketball) -> Shaktoolik (14980ms)\nWho invented basketball?\tGardner\t-8.06928182633224\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (Gardner, also popularized, basketball) -> Gardner (14980ms)\nWho invented basketball?\tKabongo\t-8.070166012733337\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Kabongo, is playing by far, his best basketball) -> Kabongo (14980ms)\nWho invented basketball?\tSpalding\t-8.17096458001572\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be marketing, basketball) -> (Spalding, is the global market leader in, basketballs) -> Spalding (15002ms)\nWho invented basketball?\tThe idea\t-8.400424894601233\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (The idea, is to create, basketball team) -> The idea (15003ms)\nWho invented basketball?\tthe atmosphere\t-8.401446472401517\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the atmosphere, was perfect for, basketball) -> the atmosphere (15002ms)\nWho invented basketball?\tthe particular football game\t-8.434124134978646\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, conceive, basketball) -> (the particular football game, also conceived, basketball) -> the particular football game (15003ms)\nWho invented basketball?\tthe design\t-8.43416179086045\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the design, is perfect on, this men basketball shoe) -> the design (15003ms)\nWho invented basketball?\tThe school\t-8.528633556531378\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (The school, actually began playing, basketball) -> The school (15026ms)\nWho invented basketball?\tThe height advantage\t-8.578023411043649\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (The height advantage, may be perfect for, basketball) -> The height advantage (15026ms)\nWho invented basketball?\tThe game\t-8.604674535666994\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (The game, was played by, CU men basketball team) -> The game (15026ms)\nWho invented basketball?\tthe energy level\t-8.60732714757258\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the energy level, was perfect for, NBA basketball) -> the energy level (15026ms)\nWho invented basketball?\tFriday\t-8.997609585307696\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Friday, was a perfect night for, basketball) -> Friday (15026ms)\nWho invented basketball?\tthe guy\t-9.755265176650415\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, know to play, basketball) -> (the guy, knows to play, basketball) -> the guy (15061ms)\nWho invented basketball?\tNorth America\t-9.78870306798297\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, North America) -> North America (15061ms)\nWho invented basketball?\tthe kid\t-9.86930492982457\tWho invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (the kid, by playing, basketball) -> the kid (15086ms)\nWho invented basketball?\tfurther north\t-10.704158610759759\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented, further north) -> further north (15086ms)\nWho invented basketball?\trap fashion\t-11.10882523914779\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (a basketball player, invent, rap fashion) -> rap fashion (15110ms)\nWho invented basketball?\tthe University\t-11.121135522099006\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented at, the University) -> the University (15137ms)\nWho invented basketball?\ttwo years\t-11.169317475890491\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had been invented, two years) -> two years (15137ms)\nWho invented basketball?\tten miles\t-11.208958276871149\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had just been invented only, ten miles) -> ten miles (15138ms)\nWho invented basketball?\ta religious context\t-11.271598910484242\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had been invented in, a religious context) -> a religious context (15137ms)\nWho invented basketball?\ta few miles\t-11.279687034809967\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, invented, a few miles) -> a few miles (15162ms)\nWho invented basketball?\ta diversion\t-11.304587506709195\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented as, a diversion) -> a diversion (15162ms)\nWho invented basketball?\ta couple\t-11.31593915157558\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented, a couple) -> a couple (15162ms)\nWho invented basketball?\ta pursuit\t-11.412204488276942\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, a pursuit) -> a pursuit (15185ms)\nWho invented basketball?\tbasketball\t-11.4577944721112\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball Dr. James Naismith, invented, basketball) -> basketball (15185ms)\nWho invented basketball?\ta YMCA\t-11.472192831918635\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented at, a YMCA) -> a YMCA (15185ms)\nWho invented basketball?\ta decade\t-11.48292220086566\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had been invented only about, a decade) -> a decade (15210ms)\nWho invented basketball?\ta non-contact sport\t-11.537449496118692\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented as, a non-contact sport) -> a non-contact sport (15210ms)\nWho invented basketball?\ta recreational sport\t-11.6147669661507\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented as, a recreational sport) -> a recreational sport (15324ms)\nWho invented basketball?\t100 years\t-11.786116540781542\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented more than, 100 years) -> 100 years (15349ms)\nWho invented basketball?\tthe 1800?s\t-11.877198568618146\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented in, the 1800?s) -> the 1800?s (15349ms)\nWho invented basketball?\tthe United States\t-11.91072665223968\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, the United States) -> the United States (15349ms)\nWho invented basketball?\tperiod\t-12.07548079924359\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (the best basketball, ever invented, period) -> period (15349ms)\nWho invented basketball?\tdecember th\t-12.088229245740854\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, invented, december th) -> december th (15498ms)\nWho invented basketball?\tspringfield\t-12.102597312902923\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, is invented in, springfield) -> springfield (15498ms)\nWho invented basketball?\tBasketball\t-12.150834257131148\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball (15498ms)\nWho invented basketball?\tCanada\t-12.15161067446762\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented in, Canada) -> Canada (15498ms)\nWho invented basketball?\tMassachusetts\t-12.15413729300201\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, Massachusetts) -> Massachusetts (15498ms)\nWho invented basketball?\tthe USA\t-12.332536945244147\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, the USA) -> the USA (15523ms)\nWho invented basketball?\t1891\t-12.564064497850545\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, 1891) -> 1891 (15523ms)\nWho invented basketball?\toriginally\t-12.567322132353617\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented, originally) -> originally (15547ms)\nWho invented basketball?\t1892\t-12.679827341114287\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, 1892) -> 1892 (15547ms)\nWho invented basketball?\tSheex\t-12.702084191679706\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> ('s basketball coaches, invented, Sheex) -> Sheex (15571ms)\nWho invented basketball?\t1946\t-12.756403508497659\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Wheelchair basketball, was invented in, 1946) -> 1946 (15571ms)\nWho invented basketball?\tDecember 1891\t-12.760763844956013\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, December 1891) -> December 1891 (15571ms)\nWho invented basketball?\t1861\t-12.782109798470486\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (The basketball, was invented in, 1861) -> 1861 (15571ms)\nWho invented basketball?\tAlmonte\t-12.92101621421995\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball Basketball, was actually invented in, Almonte) -> Almonte (15616ms)\nWho invented basketball?\ta pursuit for an indoor game\t-12.947120715234622\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, a pursuit for an indoor game) -> a pursuit for an indoor game (15617ms)\nWho invented basketball?\tthe 18th century\t-13.047655915460586\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had n?t been invented in, the 18th century) -> the 18th century (15641ms)\nWho invented basketball?\tDecember\t-13.065036242772061\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, December) -> December (15641ms)\nWho invented basketball?\tfirst\t-13.177072043661434\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented, first) -> first (15641ms)\nWho invented basketball?\tmore than 120 years ago\t-13.330441956742005\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball Shoes, was invented, more than 120 years ago) -> more than 120 years ago (15641ms)\nWho invented basketball?\tthe end\t-13.3559283708649\tWho invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (America Basketball, was invented at, the end) -> the end (15641ms)\nWhat are pathogens?\tdisease-causing agent\t-6.368693462830012\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing agent) -> disease-causing agent (5502ms)\nWhat are pathogens?\tenvironmental cue\t-6.464685175635649\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental cue) -> environmental cue (5502ms)\nWhat are pathogens?\tmicro-environmental factor\t-6.561467662555906\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, micro-environmental factor) -> micro-environmental factor (5502ms)\nWhat are pathogens?\tdisease-causing microorganism\t-6.589536665450566\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing microorganism) -> disease-causing microorganism (5502ms)\nWhat are pathogens?\tdisease-causing organism\t-6.600265620658244\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing organism) -> disease-causing organism (5502ms)\nWhat are pathogens?\twater quality issue\t-6.830989660304228\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, water quality issue) -> water quality issue (5502ms)\nWhat are pathogens?\tprimitive life form\t-6.879479784816725\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, primitive life form) -> primitive life form (5550ms)\nWhat are pathogens?\tbiotic and abiotic stress factor\t-6.8868123844115114\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biotic and abiotic stress factor) -> biotic and abiotic stress factor (5550ms)\nWhat are pathogens?\texternal stimulus\t-6.918652913155388\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external stimulus) -> external stimulus (5550ms)\nWhat are pathogens?\tharmful substance\t-6.925580604070836\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, harmful substance) -> harmful substance (5550ms)\nWhat are pathogens?\tnatural disturbance event\t-6.937150408870297\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural disturbance event) -> natural disturbance event (5550ms)\nWhat are pathogens?\ttype of risk\t-6.948468578495012\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, type of risk) -> type of risk (5550ms)\nWhat are pathogens?\tstochastic natural event\t-6.968575581230309\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, stochastic natural event) -> stochastic natural event (5563ms)\nWhat are pathogens?\tinvasive non-native species\t-6.996947586294257\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, invasive non-native species) -> invasive non-native species (5564ms)\nWhat are pathogens?\tnatural population control\t-7.0134695366654505\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural population control) -> natural population control (5564ms)\nWhat are pathogens?\tchronic pulmonary condition\t-7.016211380944316\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, chronic pulmonary condition) -> chronic pulmonary condition (5563ms)\nWhat are pathogens?\texternal environmental influence\t-7.01871987648705\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external environmental influence) -> external environmental influence (5563ms)\nWhat are pathogens?\tlong drive or stab plate Alternaria spp fungus\t-7.022590295512587\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogen, Instance Of, long drive or stab plate Alternaria spp fungus) -> long drive or stab plate Alternaria spp fungus (5564ms)\nWhat are pathogens?\tbiological control\t-7.0230819385392715\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biological control) -> biological control (5586ms)\nWhat are pathogens?\tnatural control agent\t-7.023751452174951\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural control agent) -> natural control agent (5586ms)\nWhat are pathogens?\tcomponent of the environment\t-7.023961217652019\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, component of the environment) -> component of the environment (5586ms)\nWhat are pathogens?\tbiologically active substance\t-7.030294489205932\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biologically active substance) -> biologically active substance (5586ms)\nWhat are pathogens?\tactual field condition\t-7.030487880127178\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, actual field condition) -> actual field condition (5586ms)\nWhat are pathogens?\tnon-point-source pollutant\t-7.03172977603357\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, non-point-source pollutant) -> non-point-source pollutant (5586ms)\nWhat are pathogens?\ttype of bacterium\t-7.0695470771280515\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, type of bacterium) -> type of bacterium (5601ms)\nWhat are pathogens?\tlarge particle\t-7.088561506796851\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, large particle) -> large particle (5602ms)\nWhat are pathogens?\tinvasive species\t-7.105013096114074\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, invasive species) -> invasive species (5602ms)\nWhat are pathogens?\tpotential contaminant\t-7.106300628379655\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, potential contaminant) -> potential contaminant (5601ms)\nWhat are pathogens?\tharmful pollutant\t-7.110051656301443\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, harmful pollutant) -> harmful pollutant (5602ms)\nWhat are pathogens?\tmortality agent\t-7.1314954023993105\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, mortality agent) -> mortality agent (5602ms)\nWhat are pathogens?\tstormwater pollutant\t-7.150044554057306\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, stormwater pollutant) -> stormwater pollutant (5635ms)\nWhat are pathogens?\tnoxious stimulus\t-7.15227851840721\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, noxious stimulus) -> noxious stimulus (5635ms)\nWhat are pathogens?\tenvironmental concern\t-7.154029515554118\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental concern) -> environmental concern (5635ms)\nWhat are pathogens?\tundesirable contaminant\t-7.161418326805936\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, undesirable contaminant) -> undesirable contaminant (5635ms)\nWhat are pathogens?\tdamaging agent\t-7.169692698951695\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, damaging agent) -> damaging agent (5635ms)\nWhat are pathogens?\tnatural enemy\t-7.1853771913507405\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural enemy) -> natural enemy (5635ms)\nWhat are pathogens?\tpotential risk\t-7.192870099994442\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, potential risk) -> potential risk (5662ms)\nWhat are pathogens?\twaste product\t-7.195054427039045\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, waste product) -> waste product (5662ms)\nWhat are pathogens?\tsoil organism\t-7.217063152386092\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, soil organism) -> soil organism (5662ms)\nWhat are pathogens?\tenvironmental contaminant\t-7.221059143811949\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental contaminant) -> environmental contaminant (5662ms)\nWhat are pathogens?\tbiological particle\t-7.231120929355759\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biological particle) -> biological particle (5661ms)\nWhat are pathogens?\tselective pressure\t-7.231675958725765\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, selective pressure) -> selective pressure (5661ms)\nWhat are pathogens?\twater contaminant\t-7.231842466985201\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, water contaminant) -> water contaminant (5681ms)\nWhat are pathogens?\tsecondary agent\t-7.233412873459438\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, secondary agent) -> secondary agent (5681ms)\nWhat are pathogens?\tNatural stressors\t-7.242251867687119\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, Natural stressors) -> Natural stressors (5681ms)\nWhat are pathogens?\tpest species\t-7.242726511219728\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, pest species) -> pest species (5681ms)\nWhat are pathogens?\tundesirable organism\t-7.249058790043684\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, undesirable organism) -> undesirable organism (5681ms)\nWhat are pathogens?\tliving organism\t-7.26136860571956\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living organism) -> living organism (5681ms)\nWhat are pathogens?\tenvironmental variable\t-7.26466021039123\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental variable) -> environmental variable (5710ms)\nWhat are pathogens?\tcatastrophic event\t-7.271301993478672\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, catastrophic event) -> catastrophic event (5709ms)\nWhat are pathogens?\tcommon term\t-7.273775729627325\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, common term) -> common term (5710ms)\nWhat are pathogens?\tliving factor\t-7.296996017193408\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living factor) -> living factor (5709ms)\nWhat are pathogens?\texperimental condition\t-7.297255787386844\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, experimental condition) -> experimental condition (5710ms)\nWhat are pathogens?\tothers item\t-7.298688157418235\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, others item) -> others item (5710ms)\nWhat are pathogens?\tenvironmental source\t-7.300574545634925\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental source) -> environmental source (5730ms)\nWhat are pathogens?\tphysical stressors\t-7.301728403533129\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, physical stressors) -> physical stressors (5730ms)\nWhat are pathogens?\tmicro organism\t-7.303742953989665\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, micro organism) -> micro organism (5729ms)\nWhat are pathogens?\tunfavorable condition\t-7.3063003914207085\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, unfavorable condition) -> unfavorable condition (5729ms)\nWhat are pathogens?\ttrace element\t-7.311073626965528\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trace element) -> trace element (5730ms)\nWhat are pathogens?\tmicrobial contaminant\t-7.311540987541405\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, microbial contaminant) -> microbial contaminant (5730ms)\nWhat are pathogens?\tkey contaminant\t-7.317200167112006\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, key contaminant) -> key contaminant (5743ms)\nWhat are pathogens?\tbig word\t-7.324688799397325\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, big word) -> big word (5743ms)\nWhat are pathogens?\tcontributing factor\t-7.325441946081462\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, contributing factor) -> contributing factor (5743ms)\nWhat are pathogens?\tliving agent\t-7.334865256531294\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living agent) -> living agent (5743ms)\nWhat are pathogens?\tseasonal factor\t-7.352544568439017\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, seasonal factor) -> seasonal factor (5743ms)\nWhat are pathogens?\tcontrol contaminant\t-7.3797592119664355\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, control contaminant) -> control contaminant (5761ms)\nWhat are pathogens?\tuntreated pollutant\t-7.3797592119664355\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, untreated pollutant) -> untreated pollutant (5761ms)\nWhat are pathogens?\ttrap pollutant\t-7.3797592119664355\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trap pollutant) -> trap pollutant (5743ms)\nWhat are pathogens?\ttemporary disturbance\t-7.381547371218787\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, temporary disturbance) -> temporary disturbance (5761ms)\nWhat are pathogens?\tanionic contaminant\t-7.382696902243332\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, anionic contaminant) -> anionic contaminant (5761ms)\nWhat are pathogens?\tnoxious substance\t-7.384735512574937\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, noxious substance) -> noxious substance (5761ms)\nWhat are pathogens?\tstorage issue\t-7.385431992916062\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, storage issue) -> storage issue (5761ms)\nWhat are pathogens?\tminor species\t-7.386203177517649\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, minor species) -> minor species (5796ms)\nWhat are pathogens?\tcontrol agent\t-7.386310521245659\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, control agent) -> control agent (5796ms)\nWhat are pathogens?\tspeci?c target\t-7.386613822510386\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, speci?c target) -> speci?c target (5796ms)\nWhat are pathogens?\tinjurious factor\t-7.3881526126700185\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, injurious factor) -> injurious factor (5796ms)\nWhat are pathogens?\texternal signal\t-7.388732520069739\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external signal) -> external signal (5796ms)\nWhat are pathogens?\tstorage factor\t-7.389159820484794\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, storage factor) -> storage factor (5797ms)\nWhat are pathogens?\tmolecular structure\t-7.392413877680321\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, molecular structure) -> molecular structure (5817ms)\nWhat are pathogens?\tunfavourable condition\t-7.39303550974125\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, unfavourable condition) -> unfavourable condition (5817ms)\nWhat are pathogens?\ttreatment method\t-7.394816880608232\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, treatment method) -> treatment method (5817ms)\nWhat are pathogens?\tparasitic organism\t-7.400323042985436\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, parasitic organism) -> parasitic organism (5817ms)\nWhat are pathogens?\tglobal challenge\t-7.402598880780325\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, global challenge) -> global challenge (5817ms)\nWhat are pathogens?\tclimate change\t-7.404324416116655\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, climate change) -> climate change (5817ms)\nWhat are pathogens?\tecological process\t-7.40895807141474\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, ecological process) -> ecological process (6012ms)\nWhat are pathogens?\tindoor air pollutant\t-7.788497609861658\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, indoor air pollutant) -> indoor air pollutant (6012ms)\nWhat are pathogens?\tagent\t-9.160729890631067\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, agent) -> agent (6012ms)\nWhat are pathogens?\tspecies\t-9.185055188458211\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, species) -> species (6012ms)\nWhat are pathogens?\ttarget\t-9.195945835666187\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, target) -> target (6012ms)\nWhat are pathogens?\tantigen\t-9.211739604032257\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, antigen) -> antigen (6012ms)\nWhat are pathogens?\tfactor\t-9.241216909991454\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, factor) -> factor (6039ms)\nWhat are pathogens?\tmicro-organisms\t-9.31700659404001\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, micro-organisms) -> micro-organisms (8678ms)\nWhat are pathogens?\tmicrobe\t-9.34600171635515\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, microbe) -> microbe (6039ms)\nWhat are pathogens?\tPharmacists\t-9.374082291433155\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: ($x, drug, pathogens) -> (Pharmacists, develop drugs against, particular pathogens) -> Pharmacists (6099ms)\nWhat are pathogens?\twaste\t-9.377687944849168\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, waste) -> waste (6039ms)\nWhat are pathogens?\ttrigger\t-9.45091045366156\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trigger) -> trigger (6039ms)\nWhat are pathogens?\treagent\t-9.549936818918205\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, reagent) -> reagent (6039ms)\nWhat are pathogens?\tarticle\t-9.588476987045437\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, article) -> article (6039ms)\nWhat are pathogens?\torganisims\t-9.61016643001284\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, organisims) -> organisims (6061ms)\nWhat are pathogens?\tillness\t-9.632137959529004\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, illness) -> illness (6062ms)\nWhat are pathogens?\tdisease-causing microorganisms\t-10.05080530668977\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease-causing microorganisms) -> disease-causing microorganisms (8677ms)\nWhat are pathogens?\tgram-positive bacteria\t-10.22594104843283\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, gram-positive bacteria) -> gram-positive bacteria (8677ms)\nWhat are pathogens?\tpoor-quality water\t-10.339118383437452\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, poor-quality water) -> poor-quality water (8677ms)\nWhat are pathogens?\tdisease-producing microorganisms\t-10.354149710362977\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease-producing microorganisms) -> disease-producing microorganisms (8677ms)\nWhat are pathogens?\tantibiotic-resistant\t-10.509592890586866\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, antibiotic-resistant) -> antibiotic-resistant (8678ms)\nWhat are pathogens?\tA BloodBorne Pathogen\t-10.521944047149148\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, Is, A BloodBorne Pathogen) -> A BloodBorne Pathogen (8909ms)\nWhat are pathogens?\tBloodborne Pathogens Guidebook\t-10.58071964094118\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Bloodborne Pathogens Guidebook, Edition Of, Bloodborne Pathogens Guidebook) -> Bloodborne Pathogens Guidebook (11929ms)\nWhat are pathogens?\tAnnals\t-10.594156509768073\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, Annals) -> Annals (8908ms)\nWhat are pathogens?\tlife\t-10.614322104620861\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogens, be a fact of, $x) -> (pathogens, are a fact of, life) -> life (6061ms)\nWhat are pathogens?\thealthy unbroken skin\t-10.65382952078208\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, healthy unbroken skin) -> healthy unbroken skin (8908ms)\nWhat are pathogens?\tA. terreus\t-10.669605073414894\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, A. terreus) -> A. terreus (8908ms)\nWhat are pathogens?\ta much better answers\t-10.675864235599212\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, a much better answers) -> a much better answers (8908ms)\nWhat are pathogens?\tSoilborne plant pathogens\t-10.690168747106812\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Soilborne plant pathogens, Edition Of, Soilborne plant pathogens) -> Soilborne plant pathogens (11929ms)\nWhat are pathogens?\tBacterial fish pathogens\t-10.690168747106812\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Bacterial fish pathogens: disease in farmed and wild fish, Edition Of, Bacterial fish pathogens) -> Bacterial fish pathogens (11929ms)\nWhat are pathogens?\tdisease causing organisms\t-10.707765576378806\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease causing organisms) -> disease causing organisms (8908ms)\nWhat are pathogens?\tEmerging Pathogens\t-10.728111103910898\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Emerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).), Edition Of, Emerging Pathogens) -> Emerging Pathogens (12543ms)\nWhat are pathogens?\tWaterborne Pathogens\t-10.728111103910898\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Waterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002, Edition Of, Waterborne Pathogens) -> Waterborne Pathogens (13062ms)\nWhat are pathogens?\tManure Pathogens\t-10.728111103910898\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Manure Pathogens, Edition Of, Manure Pathogens) -> Manure Pathogens (13062ms)\nWhat are pathogens?\tPlant Pathogens\t-10.728111103910898\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Plant Pathogens: The Nematodes, Edition Of, Plant Pathogens) -> Plant Pathogens (13062ms)\nWhat are pathogens?\tEmily Hagins\t-10.729279741268167\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, produce, $x) -> (Pathogen, Produced by, Emily Hagins) -> Emily Hagins (13383ms)\nWhat are pathogens?\ta huge public health challenge\t-10.743808626392688\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, a huge public health challenge) -> a huge public health challenge (8926ms)\nWhat are pathogens?\tsuch a unique creature\t-10.785996706905244\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogen, is, such a unique creature) -> such a unique creature (8926ms)\nWhat are pathogens?\tdisease-producing micro-organisms\t-10.787203340424998\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease-producing micro-organisms) -> disease-producing micro-organisms (8926ms)\nWhat are pathogens?\tHave constant characteristics\t-10.787622195954977\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, Have constant characteristics) -> Have constant characteristics (8926ms)\nWhat are pathogens?\ta fairly recent phenomenon\t-10.7961151145149\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, a fairly recent phenomenon) -> a fairly recent phenomenon (8926ms)\nWhat are pathogens?\tPlant Pathogens: The Prokaryotes\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant Pathogens: The Prokaryotes, Edition Of, Plant Pathogens) -> Plant Pathogens: The Prokaryotes (16707ms)\nWhat are pathogens?\tSecond World Water Congress\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Second World Water Congress: Environmental Monitoring, Contaminants and Pathogens (Water Science & Technology), Edition Of, Second World Water Congress) -> Second World Water Congress (14688ms)\nWhat are pathogens?\tPlant pathology and plant pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Plant pathology and plant pathogens, Edition Of, Plant pathology and plant pathogens) -> Plant pathology and plant pathogens (16673ms)\nWhat are pathogens?\tBacteria as plant pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Bacteria as plant pathogens, Edition Of, Bacteria as plant pathogens) -> Bacteria as plant pathogens (16673ms)\nWhat are pathogens?\tA list of Missouri fungi\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (A list of Missouri fungi; with special reference to plant pathogens and wood-destroying species, Edition Of, A list of Missouri fungi) -> A list of Missouri fungi (16600ms)\nWhat are pathogens?\tTheoretical studies in the evolution of human pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Theoretical studies in the evolution of human pathogens, Editions, Theoretical studies in the evolution of human pathogens) -> Theoretical studies in the evolution of human pathogens (16600ms)\nWhat are pathogens?\tInfectious Disease and Host-Pathogen Evolution\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Infectious Disease and Host-Pathogen Evolution, Editions, Infectious Disease and Host-Pathogen Evolution) -> Infectious Disease and Host-Pathogen Evolution (16707ms)\nWhat are pathogens?\tPathogen specific immune responses in Caenorhabditis elegans\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Pathogen specific immune responses in Caenorhabditis elegans, Edition Of, Pathogen specific immune responses in Caenorhabditis elegans) -> Pathogen specific immune responses in Caenorhabditis elegans (16673ms)\nWhat are pathogens?\tPathogens of marine plants\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Pathogens of marine plants, Edition Of, Pathogens of marine plants) -> Pathogens of marine plants (16600ms)\nWhat are pathogens?\tPlant viruses, unique and intriguing pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Plant viruses, unique and intriguing pathogens: a textbook of plant virology, Edition Of, Plant viruses, unique and intriguing pathogens) -> Plant viruses, unique and intriguing pathogens (14644ms)\nWhat are pathogens?\tBloodborne Pathogens Clbpa CD-ROM\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Bloodborne Pathogens Clbpa CD-ROM (System Requirements), Edition Of, Bloodborne Pathogens Clbpa CD-ROM) -> Bloodborne Pathogens Clbpa CD-ROM (16106ms)\nWhat are pathogens?\tPhysiology of Pathogen\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Physiology of Pathogen, Editions, Physiology of Pathogen) -> Physiology of Pathogen (16707ms)\nWhat are pathogens?\tAn investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (An investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture, Editions, An investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture) -> An investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture (16566ms)\nWhat are pathogens?\tEmerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).)\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Emerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).), Edition Of, Emerging Pathogens) -> Emerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).) (16707ms)\nWhat are pathogens?\tMcGraw-Hill Professional\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (McGraw-Hill Professional, Book editions published, Manure Pathogens) -> McGraw-Hill Professional (14373ms)\nWhat are pathogens?\tPlant pathogen detection and disease diagnosis\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Plant pathogen detection and disease diagnosis, Editions, Plant pathogen detection and disease diagnosis) -> Plant pathogen detection and disease diagnosis (16640ms)\nWhat are pathogens?\tPlant pathogens and their control in horticulture\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant pathogens and their control in horticulture, Editions, Plant pathogens and their control in horticulture) -> Plant pathogens and their control in horticulture (16468ms)\nWhat are pathogens?\tWater treatment and pathogen control process efficiency in achieving safe drinking-water\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Water treatment and pathogen control process efficiency in achieving safe drinking-water, Edition Of, Water treatment and pathogen control) -> Water treatment and pathogen control process efficiency in achieving safe drinking-water (14488ms)\nWhat are pathogens?\tPathogens of Soybean Seeds\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Pathogens of Soybean Seeds: Bibliography, Edition Of, Pathogens of Soybean Seeds) -> Pathogens of Soybean Seeds (16468ms)\nWhat are pathogens?\tPathogen survival in sludge stabilization processes\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Pathogen survival in sludge stabilization processes, Editions, Pathogen survival in sludge stabilization processes) -> Pathogen survival in sludge stabilization processes (16468ms)\nWhat are pathogens?\tHost/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Host/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response, Edition Of, Host/pathogen interactions) -> Host/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response (16640ms)\nWhat are pathogens?\tHost/pathogen interactions\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Host/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response, Edition Of, Host/pathogen interactions) -> Host/pathogen interactions (14724ms)\nWhat are pathogens?\tCell wall deficient forms\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Cell wall deficient forms, Editions, Cell wall deficient forms: stealth pathogens) -> Cell wall deficient forms (15766ms)\nWhat are pathogens?\tAt the surface of host-pathogen interactions in toxoplasma gondii infections\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (At the surface of host-pathogen interactions in toxoplasma gondii infections, Edition Of, At the surface of host-pathogen interactions in toxoplasma gondii infections) -> At the surface of host-pathogen interactions in toxoplasma gondii infections (16673ms)\nWhat are pathogens?\tOSHA Bloodborne Pathogens Library Edition\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (OSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees, Edition Of, OSHA Bloodborne Pathogens Library Edition) -> OSHA Bloodborne Pathogens Library Edition (13976ms)\nWhat are pathogens?\tFunction and maintenance of unidirectional actin-based motility in two bacterial pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Function and maintenance of unidirectional actin-based motility in two bacterial pathogens, Edition Of, Function and maintenance of unidirectional actin-based motility in two bacterial pathogens) -> Function and maintenance of unidirectional actin-based motility in two bacterial pathogens (14488ms)\nWhat are pathogens?\tDiagnostic manual for the identification of insect pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Diagnostic manual for the identification of insect pathogens, Editions, Diagnostic manual for the identification of insect pathogens) -> Diagnostic manual for the identification of insect pathogens (16640ms)\nWhat are pathogens?\tWater treatment and pathogen control\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Water treatment and pathogen control process efficiency in achieving safe drinking-water, Edition Of, Water treatment and pathogen control) -> Water treatment and pathogen control (14488ms)\nWhat are pathogens?\tThe OSHA handbook\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (The OSHA handbook: guidelines for compliance in healthcare facilities and interpretive guidelines for the bloodborne pathogen standard, Edition Of, The OSHA handbook) -> The OSHA handbook (14819ms)\nWhat are pathogens?\tPlant viruses, unique and intriguing pathogens: a textbook of plant virology\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant viruses, unique and intriguing pathogens: a textbook of plant virology, Edition Of, Plant viruses, unique and intriguing pathogens) -> Plant viruses, unique and intriguing pathogens: a textbook of plant virology (14724ms)\nWhat are pathogens?\tPathogens of Soybean Seeds: Bibliography\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Pathogens of Soybean Seeds, Editions, Pathogens of Soybean Seeds: Bibliography) -> Pathogens of Soybean Seeds: Bibliography (14762ms)\nWhat are pathogens?\tInterstate Transportation of Human Pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Interstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate, Edition Of, Interstate Transportation of Human Pathogens) -> Interstate Transportation of Human Pathogens (16468ms)\nWhat are pathogens?\tSubviral Pathogens of Plants and Animals: Viroids and Prions\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Subviral Pathogens of Plants and Animals, Editions, Subviral Pathogens of Plants and Animals: Viroids and Prions) -> Subviral Pathogens of Plants and Animals: Viroids and Prions (14644ms)\nWhat are pathogens?\tEvaluation of the Doodlebug\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Evaluation of the Doodlebug: A Biochip for Detecting Waterborne Pathogens, Edition Of, Evaluation of the Doodlebug) -> Evaluation of the Doodlebug (16707ms)\nWhat are pathogens?\tPlant-fungal pathogen interaction : a classical and molecular view\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Plant-fungal pathogen interaction, Editions, Plant-fungal pathogen interaction : a classical and molecular view) -> Plant-fungal pathogen interaction : a classical and molecular view (16640ms)\nWhat are pathogens?\tBacterial fish pathogens disease of farmed and wild fish\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Bacterial fish pathogens, Editions, Bacterial fish pathogens disease of farmed and wild fish) -> Bacterial fish pathogens disease of farmed and wild fish (16566ms)\nWhat are pathogens?\tBacterial pathogens exploit normal host cell processes to cause gastrointestinal disease\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Bacterial pathogens exploit normal host cell processes to cause gastrointestinal disease, Edition Of, Bacterial pathogens exploit normal host cell processes to cause gastrointestinal disease) -> Bacterial pathogens exploit normal host cell processes to cause gastrointestinal disease (16743ms)\nWhat are pathogens?\tPhysiology and biochemistry of plant-pathogen interactions\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Physiology and biochemistry of plant-pathogen interactions, Editions, Physiology and biochemistry of plant-pathogen interactions) -> Physiology and biochemistry of plant-pathogen interactions (15023ms)\nWhat are pathogens?\tBacterial fish pathogens: disease in farmed and wild fish\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Bacterial fish pathogens, Editions, Bacterial fish pathogens: disease in farmed and wild fish) -> Bacterial fish pathogens: disease in farmed and wild fish (16073ms)\nWhat are pathogens?\tSubviral Pathogens of Plants and Animals\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Subviral Pathogens of Plants and Animals: Viroids and Prions, Edition Of, Subviral Pathogens of Plants and Animals) -> Subviral Pathogens of Plants and Animals (14373ms)\nWhat are pathogens?\tLaboratory guide to insect pathogens and parasites\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Laboratory guide to insect pathogens and parasites, Edition Of, Laboratory guide to insect pathogens and parasites) -> Laboratory guide to insect pathogens and parasites (16743ms)\nWhat are pathogens?\tInterstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Interstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate, Edition Of, Interstate Transportation of Human Pathogens) -> Interstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate (16566ms)\nWhat are pathogens?\tEvolution and genomics of the classical Bordetella respiratory pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Evolution and genomics of the classical Bordetella respiratory pathogens, Edition Of, Evolution and genomics of the classical Bordetella respiratory pathogens) -> Evolution and genomics of the classical Bordetella respiratory pathogens (16707ms)\nWhat are pathogens?\tMolecular biology in plant pathogenesis and disease management\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Postharvest pathogens and disease management, Editions, Molecular biology in plant pathogenesis and disease management) -> Molecular biology in plant pathogenesis and disease management (16743ms)\nWhat are pathogens?\tPlant Resistance to Microbial Pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Plant Resistance to Microbial Pathogens, Edition Of, Plant Resistance to Microbial Pathogens) -> Plant Resistance to Microbial Pathogens (16468ms)\nWhat are pathogens?\tBloodborne Pathogens Clbpa CD-ROM (System Requirements)\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Bloodborne Pathogens Clbpa CD-ROM, Editions, Bloodborne Pathogens Clbpa CD-ROM (System Requirements)) -> Bloodborne Pathogens Clbpa CD-ROM (System Requirements) (16707ms)\nWhat are pathogens?\tPlant Pathogens: The Nematodes\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Plant Pathogens, Editions, Plant Pathogens: The Nematodes) -> Plant Pathogens: The Nematodes (16673ms)\nWhat are pathogens?\tHost-pathogen interactions in plant disease\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Host-pathogen interactions in plant disease, Editions, Host-pathogen interactions in plant disease) -> Host-pathogen interactions in plant disease (16706ms)\nWhat are pathogens?\tPlant-fungal pathogen interaction\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant-fungal pathogen interaction, Editions, Plant-fungal pathogen interaction : a classical and molecular view) -> Plant-fungal pathogen interaction (16673ms)\nWhat are pathogens?\tAn online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (An online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract, Editions, An online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract) -> An online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract (16640ms)\nWhat are pathogens?\tPostharvest pathogens and disease management\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Postharvest pathogens and disease management, Edition Of, Postharvest pathogens and disease management) -> Postharvest pathogens and disease management (16743ms)\nWhat are pathogens?\tPrecautions for Work with Human and Animal Transmissable Spongiform Encephalopathies\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Precautions for Work with Human and Animal Transmissable Spongiform Encephalopathies (Advisory Committee on Dangerous Pathogens), Edition Of, Precautions for Work with Human and Animal Transmissable Spongiform Encephalopathies) -> Precautions for Work with Human and Animal Transmissable Spongiform Encephalopathies (16743ms)\nWhat are pathogens?\tAssessment of Pathogens Transmissible by Blood\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Assessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy), Edition Of, Assessment of Pathogens Transmissible by Blood) -> Assessment of Pathogens Transmissible by Blood (15088ms)\nWhat are pathogens?\tPlant pathogens : the plant parasitic nematodes\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant pathogens : the plant parasitic nematodes, Edition Of, Plant Pathogens) -> Plant pathogens : the plant parasitic nematodes (16566ms)\nWhat are pathogens?\tEpidemological Relations of Bacterial Plant Pathogens\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Epidemological Relations of Bacterial Plant Pathogens, Edition Of, Epidemological Relations of Bacterial Plant Pathogens) -> Epidemological Relations of Bacterial Plant Pathogens (16640ms)\nWhat are pathogens?\tAssessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy)\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Assessment of Pathogens Transmissible by Blood, Editions, Assessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy)) -> Assessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy) (16673ms)\nWhat are pathogens?\tOvercoming Molecular Sample Processing Limitations\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Overcoming Molecular Sample Processing Limitations: WERF Report Pathogens and Indicators (WERF Report Series), Edition Of, Overcoming Molecular Sample Processing Limitations) -> Overcoming Molecular Sample Processing Limitations (14373ms)\nWhat are pathogens?\tMicrobial Plant Pathogens and Crop Disease Management\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Microbial Plant Pathogens and Crop Disease Management, Editions, Microbial Plant Pathogens and Crop Disease Management) -> Microbial Plant Pathogens and Crop Disease Management (16566ms)\nWhat are pathogens?\tOSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees\t-10.812386915658436\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (OSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees, Edition Of, OSHA Bloodborne Pathogens Library Edition) -> OSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees (16106ms)\nWhat are pathogens?\tany foreign organisms\t-10.814148104201644\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, any foreign organisms) -> any foreign organisms (8926ms)\nWhat are pathogens?\ta scientifically impossible goal\t-10.820872649959373\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, a scientifically impossible goal) -> a scientifically impossible goal (8952ms)\nWhat are pathogens?\tdisease causing bacteria\t-10.821762529657267\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease causing bacteria) -> disease causing bacteria (8952ms)\nWhat are pathogens?\tviruses gram positive pneumococcal pneumonia\t-10.822959037354146\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, viruses gram positive pneumococcal pneumonia) -> viruses gram positive pneumococcal pneumonia (8952ms)\nWhat are pathogens?\tone example\t-10.85088885445698\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, one example) -> one example (8952ms)\nWhat are pathogens?\ta normal and natural part\t-10.887505487870914\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, a normal and natural part) -> a normal and natural part (8952ms)\nWhat are pathogens?\tsuch external influences\t-10.931536333736794\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, were believed to be, such external influences) -> such external influences (8952ms)\nWhat are pathogens?\tpoliticaly significant and relevant\t-10.949965550992912\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, politicaly significant and relevant) -> politicaly significant and relevant (8970ms)\nWhat are pathogens?\tindirect detriments\t-10.965372085865653\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, indirect detriments) -> indirect detriments (8971ms)\nWhat are pathogens?\tlarger microorganisms\t-10.974606307074211\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, larger microorganisms) -> larger microorganisms (8970ms)\nWhat are pathogens?\tan important step\t-10.991341771971399\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, an important step) -> an important step (8971ms)\nWhat are pathogens?\tfalse security\t-10.999363842518687\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, false security) -> false security (8971ms)\nWhat are pathogens?\t93.2 %\t-11.014351267981622\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, were, 93.2 %) -> 93.2 % (8970ms)\nWhat are pathogens?\tBloodborne pathogens\t-11.015597422772627\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Bloodborne pathogens, Edition Of, Bloodborne pathogens) -> Bloodborne pathogens (16775ms)\nWhat are pathogens?\tRaw milk\t-11.023232709676947\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Raw milk, is a known source of, life-threatening pathogens) -> Raw milk (9555ms)\nWhat are pathogens?\ta general nuisance\t-11.037555961567508\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, be, a general nuisance) -> a general nuisance (9040ms)\nWhat are pathogens?\t40-200 gamma /\t-11.050202569301078\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, 40-200 gamma /) -> 40-200 gamma / (9040ms)\nWhat are pathogens?\ta debilitated state\t-11.11981183177468\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, a debilitated state) -> a debilitated state (9040ms)\nWhat are pathogens?\tan excellent medium\t-11.121711058496743\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, an excellent medium) -> an excellent medium (9040ms)\nWhat are pathogens?\tFoodborne Disease Handbook, Volume 1\t-11.204944376439173\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Foodborne Disease Handbook, Volume 1, Editions, Foodborne Disease Handbook, Volume 1: Bacterial Pathogens (FOODBORNE DISEASE HANDBOOK)) -> Foodborne Disease Handbook, Volume 1 (16961ms)\nWhat are pathogens?\tWaterborne Pathogens,  2nd Edition\t-11.204944376439173\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Waterborne Pathogens,  2nd Edition, Editions, Waterborne Pathogens,  2nd Edition (Awwa Manual)) -> Waterborne Pathogens,  2nd Edition (16961ms)\nWhat are pathogens?\tCourse Reader for CEE-274E: Pathogens in the Environment\t-11.204944376439173\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Course Reader for CEE-274E: Pathogens in the Environment, Edition Of, Course Reader for CEE-274E: Pathogens in the Environment) -> Course Reader for CEE-274E: Pathogens in the Environment (16900ms)\nWhat are pathogens?\tWaterborne Pathogens,  2nd Edition (Awwa Manual)\t-11.204944376439173\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Waterborne Pathogens,  2nd Edition, Editions, Waterborne Pathogens,  2nd Edition (Awwa Manual)) -> Waterborne Pathogens,  2nd Edition (Awwa Manual) (16900ms)\nWhat are pathogens?\t?Raw milk\t-11.264220962933669\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (?Raw milk, is a known source of, life-threatening pathogens) -> ?Raw milk (9555ms)\nWhat are pathogens?\tPresent\t-11.274021105537727\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogen, is, Present) -> Present (9040ms)\nWhat are pathogens?\tyoung people\t-11.288486076648917\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (a pathogen, is going to kill, young people) -> young people (9040ms)\nWhat are pathogens?\tColloidal Silver\t-11.289898384978077\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Colloidal Silver, is known to kill, 650 pathogens) -> Colloidal Silver (9555ms)\nWhat are pathogens?\tstate-certified labs\t-11.298542930696154\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, should be done at, state-certified labs) -> state-certified labs (9146ms)\nWhat are pathogens?\ta potential hazard\t-11.301072362900456\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, a potential hazard) -> a potential hazard (9146ms)\nWhat are pathogens?\ta great job\t-11.306601468979514\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (fungal pathogens, can do, a great job) -> a great job (9146ms)\nWhat are pathogens?\tThe Pathogen\t-11.33810745560736\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (The Pathogen, Editions, The Pathogen) -> The Pathogen (16961ms)\nWhat are pathogens?\tOMV\t-11.33872771361238\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, be in, pathogen) -> (OMV, has been extensively studied only in, pathogens) -> OMV (17000ms)\nWhat are pathogens?\tWhite blood cells\t-11.351988682093099\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, be in, pathogen) -> (White blood cells, are involved in fighting, pathogens) -> White blood cells (17000ms)\nWhat are pathogens?\tleverage\t-11.35316962679148\tWhat are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogens, modelling, $x) -> (pathogen transmission, is a great model to, leverage) -> leverage (6085ms)\nWhat are pathogens?\tM hominis\t-11.398586379136074\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (M hominis, are known, pathogens) -> M hominis (9555ms)\nWhat are pathogens?\tWest Nile virus\t-11.406300409220739\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, be in, pathogen) -> (West Nile virus, are important in, amplifying the pathogen) -> West Nile virus (17000ms)\nWhat are pathogens?\tsubject to natural selection\t-11.421936696694125\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, subject to natural selection) -> subject to natural selection (9146ms)\nWhat are pathogens?\tHIV-infection\t-11.46772249404222\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, be in, pathogen) -> (HIV-infection, is seen in almost, all infectious pathogens) -> HIV-infection (17000ms)\nWhat are pathogens?\tS. aureus\t-11.497624261335808\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogen, is, S. aureus) -> S. aureus (9146ms)\nWhat are pathogens?\tPrions\t-11.504105266625237\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Prions: Novel Infectious Pathogens Causing Scrapie and Creutzfeldt-Jakob Disease, Edition Of, Prions) -> Prions (16999ms)\nWhat are pathogens?\tCMV\t-11.507790547593371\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, instance of, pathogen) -> (CMV, Instance Of, pathogen) -> CMV (17000ms)\nWhat are pathogens?\tDictyostelium\t-11.521008884259638\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, could be done in, Dictyostelium) -> Dictyostelium (9146ms)\nWhat are pathogens?\ttransmissible to humans\t-11.525197597567379\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, transmissible to humans) -> transmissible to humans (9555ms)\nWhat are pathogens?\tcruise ships\t-11.53770381433145\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (cruise ships, are known to contain, many pathogens) -> cruise ships (9555ms)\nWhat are pathogens?\tdeadly to birds\t-11.54559871643133\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, deadly to birds) -> deadly to birds (9742ms)\nWhat are pathogens?\tharmful to humans\t-11.54559871643133\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, harmful to humans) -> harmful to humans (9742ms)\nWhat are pathogens?\ta few days\t-11.606904894083197\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (Campy pathogens, will be gone within, a few days) -> a few days (9742ms)\nWhat are pathogens?\tWaterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002\t-11.608811578190359\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Waterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002, Edition Of, Waterborne Pathogens) -> Waterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002 (17000ms)\nWhat are pathogens?\tBacteria\t-11.652710264966787\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Bacteria, are known as, pathogens) -> Bacteria (9742ms)\nWhat are pathogens?\tMLOs\t-11.67059568247952\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (MLOs, are well known, plant pathogens) -> MLOs (9742ms)\nWhat are pathogens?\tpresent in the water\t-11.681734125112882\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, may be, present in the water) -> present in the water (9742ms)\nWhat are pathogens?\tRetroviruses\t-11.68670202161982\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Retroviruses, are well known, pathogens) -> Retroviruses (9814ms)\nWhat are pathogens?\tAbstract Ticks\t-11.731094163845807\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Abstract Ticks, are well-known vectors of, various pathogens) -> Abstract Ticks (9815ms)\nWhat are pathogens?\tpresent on or in the seed\t-11.74439323982326\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, present on or in the seed) -> present on or in the seed (9815ms)\nWhat are pathogens?\tC. albicans\t-11.751707764179967\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (C. albicans, is known to be, a major pathogen) -> C. albicans (9814ms)\nWhat are pathogens?\tpresent in the raw milk\t-11.768365748819324\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, may have been, present in the raw milk) -> present in the raw milk (9814ms)\nWhat are pathogens?\ta new means\t-11.820801241671207\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (potential pathogens, was done using, a new means) -> a new means (9815ms)\nWhat are pathogens?\tAlum\t-11.821730970924996\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Alum, is known to reduce, pathogens) -> Alum (9831ms)\nWhat are pathogens?\tE. ewingii\t-11.834901841925644\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (E. ewingii, was previously known as, a canine pathogen) -> E. ewingii (9831ms)\nWhat are pathogens?\tSeoul viruses\t-11.840573472216818\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Seoul viruses, are known, human pathogens) -> Seoul viruses (9831ms)\nWhat are pathogens?\tEurope\t-11.844058167439163\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Europe, is known to transmit, these pathogens) -> Europe (9831ms)\nWhat are pathogens?\tcell growth\t-11.85436324534151\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogen cells, does inhibit, cell growth) -> cell growth (9831ms)\nWhat are pathogens?\ta snap\t-11.868176570478472\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (our pathogen enemies, can be done in, a snap) -> a snap (9831ms)\nWhat are pathogens?\tpaper logs\t-11.87358742663364\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, is done on, paper logs) -> paper logs (9847ms)\nWhat are pathogens?\tcause disease\t-11.890624591155193\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are microorganisms that, cause disease) -> cause disease (9847ms)\nWhat are pathogens?\ta normal gut flora\t-11.924861554718966\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (a normal gut flora, are free of known, mouse pathogens) -> a normal gut flora (9847ms)\nWhat are pathogens?\t25 %\t-11.933607411436013\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (25 %, are known, plant pathogens) -> 25 % (9848ms)\nWhat are pathogens?\ta very long time\t-11.941866135367071\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (the pathogen, have been doing this for, a very long time) -> a very long time (9847ms)\nWhat are pathogens?\tresistant to these antibiotics\t-11.955471529738253\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, resistant to these antibiotics) -> resistant to these antibiotics (9847ms)\nWhat are pathogens?\ta part\t-11.965804231795573\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (a part, is known as, the Th1 bacterial pathogens) -> a part (9867ms)\nWhat are pathogens?\ta ?Doctrine\t-11.98486042035034\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (these pathogens, do indeed have, a ?Doctrine) -> a ?Doctrine (9867ms)\nWhat are pathogens?\ta reverse\t-11.993643717580413\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (a mildew or pathogen ?, need to do, a reverse) -> a reverse (9867ms)\nWhat are pathogens?\ta very different manner\t-12.008177213956072\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, do so in, a very different manner) -> a very different manner (9867ms)\nWhat are pathogens?\tRickettsia bacteria\t-12.025435369776531\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Rickettsia bacteria, are well known, pathogens) -> Rickettsia bacteria (9866ms)\nWhat are pathogens?\tnot much information\t-12.025888581570367\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (not much information, is known about, the pathogen?s reservoirs) -> not much information (9867ms)\nWhat are pathogens?\tharmful to human health\t-12.031149710520285\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, harmful to human health) -> harmful to human health (9883ms)\nWhat are pathogens?\tthe HSE\t-12.033818935801643\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (this pathogen, do, the HSE) -> the HSE (9883ms)\nWhat are pathogens?\tirrigation water\t-12.051172354125054\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, can be done with, irrigation water) -> irrigation water (9883ms)\nWhat are pathogens?\tacademic centers\t-12.056835040105977\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (these pathogens, could be done in, academic centers) -> academic centers (9883ms)\nWhat are pathogens?\tpink slime\t-12.069679005217825\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (pink slime, are known to, harbor pathogens) -> pink slime (9883ms)\nWhat are pathogens?\tthe MPs\t-12.085167000322334\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (nosocomial pathogen colonization, do, the MPs) -> the MPs (9883ms)\nWhat are pathogens?\tmore than 8,000 species\t-12.08938036213333\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (more than 8,000 species, are known, plant pathogens) -> more than 8,000 species (9883ms)\nWhat are pathogens?\tPestalotiopsis theae\t-12.09373732814435\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Pestalotiopsis theae, is commonly known as, a pathogen) -> Pestalotiopsis theae (9883ms)\nWhat are pathogens?\tStressed animals\t-12.105331161811407\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Stressed animals, are known to produce, pathogens) -> Stressed animals (9916ms)\nWhat are pathogens?\ta century\t-12.118315633906175\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogens, have gone undetected for, a century) -> a century (9916ms)\nWhat are pathogens?\tBurkholderia species\t-12.129105205806571\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Burkholderia species, are generally known as, plant pathogens) -> Burkholderia species (9916ms)\nWhat are pathogens?\tselective enrichment\t-12.130322765086513\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (the pathogen, was done using, selective enrichment) -> selective enrichment (9916ms)\nWhat are pathogens?\tgreat caution\t-12.136412870250567\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (a pathogen, should be done with, great caution) -> great caution (9916ms)\nWhat are pathogens?\tacademic settings\t-12.148806571842249\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (highly virulent pathogens, will be done in, academic settings) -> academic settings (9916ms)\nWhat are pathogens?\t10 %\t-12.155541096737476\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (10 %, are known, animal pathogens) -> 10 % (9916ms)\nWhat are pathogens?\tcanker fungi\t-12.169036830661467\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (canker fungi, are known as, stress pathogens) -> canker fungi (9916ms)\nWhat are pathogens?\tthe United States\t-12.1825251058198\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (dangerous pathogens, as is being done in, the United States) -> the United States (9935ms)\nWhat are pathogens?\thuman breast milk\t-12.206023276207539\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, so does, human breast milk) -> human breast milk (9935ms)\nWhat are pathogens?\tthreats to wildlife\t-12.26141134098453\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are growing, threats to wildlife) -> threats to wildlife (9935ms)\nWhat are pathogens?\tdiseases\t-12.262443119248221\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, diseases) -> diseases (9935ms)\nWhat are pathogens?\tdisease\t-12.281960051711078\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, Is, disease) -> disease (9935ms)\nWhat are pathogens?\tmedically relevant\t-12.282202879555138\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, medically relevant) -> medically relevant (9935ms)\nWhat are pathogens?\tpresent in the body\t-12.305958860610875\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, may be, present in the body) -> present in the body (9935ms)\nWhat are pathogens?\ta class setting\t-12.321872693596744\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Bloodborne Pathogens, is done in, a class setting) -> a class setting (9935ms)\nWhat are pathogens?\tthe Rps genes\t-12.332350155676366\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (This pathogen, does adapt to, the Rps genes) -> the Rps genes (9953ms)\nWhat are pathogens?\tdifferent than normal body tissue\t-12.343546400826295\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, different than normal body tissue) -> different than normal body tissue (9953ms)\nWhat are pathogens?\tthe New World\t-12.346889547993797\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Those pathogens, did n?t cross the ocean to, the New World) -> the New World (9953ms)\nWhat are pathogens?\twarm , moist conditions\t-12.361036688518228\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Bacterial pathogens, do well in, warm , moist conditions) -> warm , moist conditions (9953ms)\nWhat are pathogens?\tpresent in the tap water in many countries\t-12.37756443250054\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, may be, present in the tap water in many countries) -> present in the tap water in many countries (9953ms)\nWhat are pathogens?\tmicrobes\t-12.37922182068678\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, microbes) -> microbes (9953ms)\nWhat are pathogens?\tfungicides\t-12.429621077976822\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, fungicides) -> fungicides (9953ms)\nWhat are pathogens?\tlikely to survive for extended periods of time\t-12.440089064879068\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, likely to survive for extended periods of time) -> likely to survive for extended periods of time (9953ms)\nWhat are pathogens?\tsubunit vaccines\t-12.440567491271695\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogen biology, do, subunit vaccines) -> subunit vaccines (9970ms)\nWhat are pathogens?\trectal swabs\t-12.440567491271695\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (enteric pathogens, do, rectal swabs) -> rectal swabs (9970ms)\nWhat are pathogens?\tthe main problem\t-12.476551349747389\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the main problem) -> the main problem (9971ms)\nWhat are pathogens?\torganisms\t-12.489621327409136\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, organisms) -> organisms (9970ms)\nWhat are pathogens?\tthe most immediate danger\t-12.54130530484617\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the most immediate danger) -> the most immediate danger (9970ms)\nWhat are pathogens?\tthe most abundant\t-12.544306914905091\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, the most abundant) -> the most abundant (9970ms)\nWhat are pathogens?\tthe exact phrase\t-12.557962120821427\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, was, the exact phrase) -> the exact phrase (9970ms)\nWhat are pathogens?\tdried blood\t-12.57054457870633\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Bloodborne pathogens, do live in, dried blood) -> dried blood (9970ms)\nWhat are pathogens?\tfish farms\t-12.605847940943592\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, do sometimes become established in, fish farms) -> fish farms (9987ms)\nWhat are pathogens?\tbacteria\t-12.622868177734128\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, bacteria) -> bacteria (9987ms)\nWhat are pathogens?\tthe 1980\t-12.639333991239617\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, men, $x) -> (a single pathogen theory, was killing gay men in, the 1980) -> the 1980 (9987ms)\nWhat are pathogens?\tthe maintenance\t-12.646086102987585\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the maintenance) -> the maintenance (9987ms)\nWhat are pathogens?\tthe pathogen causing diabetes or hypertension\t-12.64628626328897\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the pathogen causing diabetes or hypertension) -> the pathogen causing diabetes or hypertension (9987ms)\nWhat are pathogens?\ta level 3\t-12.653968801765267\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, is clasified, a level 3) -> a level 3 (9987ms)\nWhat are pathogens?\tCurvularia\t-12.668995798398534\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Curvularia, is known to be, a plant pathogen) -> Curvularia (9987ms)\nWhat are pathogens?\tthe relationship\t-12.710960184467806\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the relationship) -> the relationship (9987ms)\nWhat are pathogens?\ta dormant stage\t-12.723597722194857\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are in, a dormant stage) -> a dormant stage (10166ms)\nWhat are pathogens?\t1 or 2 pathways\t-12.726184001948907\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (organ pathogens, can go on, 1 or 2 pathways) -> 1 or 2 pathways (10166ms)\nWhat are pathogens?\tvein\t-12.770555220173293\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, is a, vein) -> vein (10166ms)\nWhat are pathogens?\tsicknesses\t-12.912119015093337\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, sicknesses) -> sicknesses (10166ms)\nWhat are pathogens?\tpresent\t-12.927405524346863\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are be, present) -> present (10166ms)\nWhat are pathogens?\texamples\t-12.984813810123013\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, examples) -> examples (10166ms)\nWhat are pathogens?\tagents\t-12.998961003349738\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, agents) -> agents (10166ms)\nWhat are pathogens?\tmicroorganisms\t-13.104672489947994\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, microorganisms) -> microorganisms (10166ms)\nWhat are pathogens?\tThe viruses\t-13.381038332095944\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (The viruses, were already known included, human pathogens) -> The viruses (10218ms)\nWhat are pathogens?\tthe growing child\t-13.415185806520755\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogens, are going directly to, the growing child) -> the growing child (10218ms)\nWhat are pathogens?\twinter\t-13.429451900529633\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogen, is going to, winter) -> winter (10218ms)\nWhat are pathogens?\tthe causes of disease\t-13.47118879446866\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, the causes of disease) -> the causes of disease (10218ms)\nWhat are pathogens?\tlice\t-13.523935015333059\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (lice, are known, pathogen vectors) -> lice (10218ms)\nWhat are pathogens?\tso\t-13.56535805477377\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (The majority of pathogens, do, so) -> so (10218ms)\nWhat are pathogens?\tthe meat industry\t-13.59092769354038\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (food-borne pathogens, is to do away with, the meat industry) -> the meat industry (10218ms)\nWhat are pathogens?\tus harm\t-13.616147758626957\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Pollution , chemicals , noise and pathogens, can do, us harm) -> us harm (10360ms)\nWhat are pathogens?\tthe system\t-13.624545264471923\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogens, are going into, the system) -> the system (10360ms)\nWhat are pathogens?\tthe genus Veronica\t-13.636844491983208\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (the genus Veronica, are the only known host of, this pathogen) -> the genus Veronica (10360ms)\nWhat are pathogens?\tmicroscopic\t-13.745914311830301\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, microscopic) -> microscopic (10360ms)\nWhat are pathogens?\tthe immune system\t-13.747597674651262\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (the immune system, is known as, an ?opportunistic? pathogen) -> the immune system (10360ms)\nWhat are pathogens?\tthe twenty-teens\t-13.749984077030536\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (Pathogen marketing, is going to be hot in, the twenty-teens) -> the twenty-teens (10360ms)\nWhat are pathogens?\tThe bad bacteria\t-13.767953975737173\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (The bad bacteria, are known as, pathogens) -> The bad bacteria (10360ms)\nWhat are pathogens?\tbacterial\t-13.769809909058152\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, is, bacterial) -> bacterial (10377ms)\nWhat are pathogens?\tThe rust fungus\t-13.774123582897928\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (The rust fungus, is known as, a ?macrocyclic? pathogen) -> The rust fungus (10377ms)\nWhat are pathogens?\tcloth\t-13.78884531045557\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (cloth, is known to, harbour pathogens) -> cloth (10377ms)\nWhat are pathogens?\tyou sick\t-13.849456160472569\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (The pathogens, do make, you sick) -> you sick (10377ms)\nWhat are pathogens?\tthe initiation\t-13.85740725388142\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, is to be done prior to, the initiation) -> the initiation (10377ms)\nWhat are pathogens?\tthe job\t-13.868769879312119\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (updated pathogen definitions, will do, the job) -> the job (10377ms)\nWhat are pathogens?\tdangerous\t-13.88015982957338\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, can be, dangerous) -> dangerous (10377ms)\nWhat are pathogens?\tthe disease\t-13.902226407385374\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (the pathogen, little can be done to control, the disease) -> the disease (10583ms)\nWhat are pathogens?\tblood\t-13.904089229803452\tWhat are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (blood, has even been known to, harbor various pathogens) -> blood (10584ms)\nWhat are pathogens?\tmarket\t-13.964251834956515\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogens, can?t go to, market) -> market (10584ms)\nWhat are pathogens?\tsoil\t-13.989893556802086\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (this pathogen, goes through, soil) -> soil (10584ms)\nWhat are pathogens?\tparrots\t-14.093344735990055\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (other food-borne pathogens, do affect, parrots) -> parrots (10583ms)\nWhat are pathogens?\tnurses\t-14.106607690113387\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, did, nurses) -> nurses (10583ms)\nWhat are pathogens?\tthe incidence\t-14.111947551667683\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, does seem to increase, the incidence) -> the incidence (10583ms)\nWhat are pathogens?\tthe host\t-14.114600163573268\tWhat are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Most pathogens, do better by letting, the host) -> the host (10584ms)\nHow tall is St. Peter's Basilica?\t183 meters\t-11.500860383878052\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is about, 183 meters) -> 183 meters (5015ms)\nHow tall is St. Peter's Basilica?\t324\t-11.698936899712635\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was first built in, 324) -> 324 (5015ms)\nHow tall is St. Peter's Basilica?\tWilliam Glisson Jr. ?99\t-11.884081592110679\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (William Glisson Jr. ?99, was at, St . Peter?s Basilica) -> William Glisson Jr. ?99 (5633ms)\nHow tall is St. Peter's Basilica?\tGian Lorenzo Bernini\t-11.951896425473723\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was designed by, Gian Lorenzo Bernini) -> Gian Lorenzo Bernini (5015ms)\nHow tall is St. Peter's Basilica?\tRome\t-12.125426864406458\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is currently in, Rome) -> Rome (5015ms)\nHow tall is St. Peter's Basilica?\tthe Vatican\t-12.152525560369563\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was confirmed by, the Vatican) -> the Vatican (5015ms)\nHow tall is St. Peter's Basilica?\t1614\t-12.153577037948578\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica, was completed in, 1614) -> 1614 (5053ms)\nHow tall is St. Peter's Basilica?\tPope Benedict\t-12.169409073365115\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, will be baptized by, Pope Benedict) -> Pope Benedict (5053ms)\nHow tall is St. Peter's Basilica?\tVatican City\t-12.228566539505177\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is located in, Vatican City) -> Vatican City (5053ms)\nHow tall is St. Peter's Basilica?\tPope Leo X\t-12.291269109314612\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Pope Leo X, was financing the building of, St . Peter?s Basilica) -> Pope Leo X (5633ms)\nHow tall is St. Peter's Basilica?\tSt . Peter\t-12.348090863183717\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (St . Peter, had indeed been found beneath, St . Peter?s Basilica) -> St . Peter (5633ms)\nHow tall is St. Peter's Basilica?\ta runway\t-12.408145634870888\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is being turned into, a runway) -> a runway (5053ms)\nHow tall is St. Peter's Basilica?\ta construction site\t-12.460207453495975\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was essentially, a construction site) -> a construction site (5053ms)\nHow tall is St. Peter's Basilica?\tthe Colosseum\t-12.479961539797223\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the Colosseum, then was moved to, St . Peter?s Basilica) -> the Colosseum (5731ms)\nHow tall is St. Peter's Basilica?\ta pile\t-12.487723412313184\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is reduced to, a pile) -> a pile (5053ms)\nHow tall is St. Peter's Basilica?\tfoot\t-12.488072081175368\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica, can be reached on, foot) -> foot (5232ms)\nHow tall is St. Peter's Basilica?\tan annual event\t-12.52860215370638\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is, an annual event) -> an annual event (5232ms)\nHow tall is St. Peter's Basilica?\tThe Vatican\t-12.541855378408409\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The Vatican, is home to, the famous St . Peter?s Basilica) -> The Vatican (5729ms)\nHow tall is St. Peter's Basilica?\ta large brazier full\t-12.606675854835455\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, there was, a large brazier full) -> a large brazier full (5231ms)\nHow tall is St. Peter's Basilica?\ta ceremony\t-12.628593689506193\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (a ceremony, will be held in, St . Peter?s Basilica) -> a ceremony (5729ms)\nHow tall is St. Peter's Basilica?\ta real honor\t-12.64885303262207\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was, a real honor) -> a real honor (5231ms)\nHow tall is St. Peter's Basilica?\tCatholic Tide\t-12.687757761293268\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica ? Catholic Tide, is, Catholic Tide) -> Catholic Tide (5231ms)\nHow tall is St. Peter's Basilica?\tthe ?the greatest\t-12.727810920152239\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, has been called, the ?the greatest) -> the ?the greatest (5231ms)\nHow tall is St. Peter's Basilica?\tnumerous pilgrims\t-12.742276636872367\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was attended by, numerous pilgrims) -> numerous pilgrims (5294ms)\nHow tall is St. Peter's Basilica?\tsuch it\t-12.75130760829478\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (such it, is as sacred as, St . Peter?s Basilica) -> such it (5729ms)\nHow tall is St. Peter's Basilica?\tpaper\t-12.786059544874965\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (paper, is now enshrined at, St . Peter?s Basilica) -> paper (5729ms)\nHow tall is St. Peter's Basilica?\tlimited hours\t-12.825539541314138\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, are usually open for, limited hours) -> limited hours (5294ms)\nHow tall is St. Peter's Basilica?\tBernini\t-12.862853324174118\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica, was given to, Bernini) -> Bernini (5294ms)\nHow tall is St. Peter's Basilica?\tregarded architect\t-12.980747929150535\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (S39 39 St. Peter's Basilica Michelangelo, Instance Of, regarded architect) -> regarded architect (7007ms)\nHow tall is St. Peter's Basilica?\tthe Danei brothers\t-13.002538689001867\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the Danei brothers, were ordained in, St . Peter?s Basilica) -> the Danei brothers (5729ms)\nHow tall is St. Peter's Basilica?\toutside\t-13.026610988132404\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (the St . Peter?s Basilica, will be only visited from, outside) -> outside (5294ms)\nHow tall is St. Peter's Basilica?\tHawk\t-13.027588483395014\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Hawk, is sent to, St . Peter?s Basilica) -> Hawk (5760ms)\nHow tall is St. Peter's Basilica?\tThe Gardens\t-13.031617473636732\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The Gardens, were founded near, St . Peter?s Basilica roughly) -> The Gardens (5760ms)\nHow tall is St. Peter's Basilica?\tProper attire\t-13.031674232341432\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Proper attire, must be worn in, St . Peter?s Basilica) -> Proper attire (5760ms)\nHow tall is St. Peter's Basilica?\ta Vatican archaeologist\t-13.033936450930979\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (a Vatican archaeologist, is found dead in, St . Peter?s Basilica) -> a Vatican archaeologist (5760ms)\nHow tall is St. Peter's Basilica?\tthe Cathedral dome\t-13.03571082738106\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the Cathedral dome, is modeled after, St . Peter?s Basilica) -> the Cathedral dome (5760ms)\nHow tall is St. Peter's Basilica?\tmemory\t-13.042178212333688\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was consecrated in, memory) -> memory (5294ms)\nHow tall is St. Peter's Basilica?\ta Solemn Funeral\t-13.048089595103296\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (a Solemn Funeral, is celebrated in, St . Peter?s Basilica) -> a Solemn Funeral (5760ms)\nHow tall is St. Peter's Basilica?\tA special Mass\t-13.04902709040386\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (A special Mass, was celebrated in, St Peter?s Basilica) -> A special Mass (6000ms)\nHow tall is St. Peter's Basilica?\tMichelangelo?s La Pieta\t-13.074799336908306\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Michelangelo?s La Pieta, can be found in, St . Peter?s Basilica) -> Michelangelo?s La Pieta (6001ms)\nHow tall is St. Peter's Basilica?\tLunetta Hotel\t-13.074943187015709\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Lunetta Hotel, is a 15-minute walk from, St Peter?s Basilica) -> Lunetta Hotel (6000ms)\nHow tall is St. Peter's Basilica?\tchurches\t-13.081163688708642\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica Rome, is a city of, churches) -> churches (5314ms)\nHow tall is St. Peter's Basilica?\ta remarkable ceremony\t-13.110375632805187\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (a remarkable ceremony, was held in, St . Peter?s basilica) -> a remarkable ceremony (6000ms)\nHow tall is St. Peter's Basilica?\tSpecial treatment\t-13.148312414509753\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Special treatment, is given to, St . Peter?s Basilica) -> Special treatment (6001ms)\nHow tall is St. Peter's Basilica?\tstunning architectural masterpiece\t-13.17468484968731\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter s Basilica, Instance Of, stunning architectural masterpiece) -> stunning architectural masterpiece (7007ms)\nHow tall is St. Peter's Basilica?\tthe public\t-13.267627111846672\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is open to, the public) -> the public (5314ms)\nHow tall is St. Peter's Basilica?\treligious site\t-13.286543148882858\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter s Basilica, Instance Of, religious site) -> religious site (7007ms)\nHow tall is St. Peter's Basilica?\tadmission\t-13.312057577292407\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (admission, is separate from, St . Peter?s Basilica) -> admission (6000ms)\nHow tall is St. Peter's Basilica?\tlives\t-13.353614865166895\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (lives, were present in, St . Peter?s basilica) -> lives (6020ms)\nHow tall is St. Peter's Basilica?\tmeans\t-13.382874185725196\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (means, was first given at, St . Peter?s Basilica) -> means (6020ms)\nHow tall is St. Peter's Basilica?\tbasilica\t-13.443444980406873\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter\\ s Basilica, Instance Of, basilica) -> basilica (7007ms)\nHow tall is St. Peter's Basilica?\twonder\t-13.449194128751254\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter s Basilica, Instance Of, wonder) -> wonder (7007ms)\nHow tall is St. Peter's Basilica?\tsight\t-13.476315091123732\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter s Basilica, Instance Of, sight) -> sight (7007ms)\nHow tall is St. Peter's Basilica?\tbuilding\t-13.517081615101592\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter\\ s Basilica, Instance Of, building) -> building (7099ms)\nHow tall is St. Peter's Basilica?\tthe chorister\t-13.566699753695383\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was, the chorister) -> the chorister (5314ms)\nHow tall is St. Peter's Basilica?\tthe week\t-13.577871087051314\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the week, were both centered at, St . Peter?s Basilica) -> the week (6020ms)\nHow tall is St. Peter's Basilica?\tJustice\t-13.755759772388126\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Justice, is bigger than, St . Peter?s Basilica) -> Justice (6020ms)\nHow tall is St. Peter's Basilica?\tPieta\t-13.830196939693131\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Pieta, is a prime attraction at, St . Peter?s Basilica) -> Pieta (6020ms)\nHow tall is St. Peter's Basilica?\tthe aula\t-13.839684164550132\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was known as, the aula) -> the aula (5314ms)\nHow tall is St. Peter's Basilica?\tthe background\t-13.853750557370809\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is in, the background) -> the background (5314ms)\nHow tall is St. Peter's Basilica?\tthe dinner\t-13.871733523319044\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the dinner, was definitely the view of, St . Peter?s Basilica) -> the dinner (6020ms)\nHow tall is St. Peter's Basilica?\tBaldassini\t-13.884049234724321\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Baldassini, is a 15-minute walk from, St Peter?s Basilica) -> Baldassini (6041ms)\nHow tall is St. Peter's Basilica?\tthe tomb\t-13.88969122274947\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was built over, the tomb) -> the tomb (5314ms)\nHow tall is St. Peter's Basilica?\tthe middle\t-13.945107108599702\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the middle, is, St Peter?s Basilica) -> the middle (6041ms)\nHow tall is St. Peter's Basilica?\tthe who?s\t-13.982990951045004\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was built by, the who?s) -> the who?s (6041ms)\nHow tall is St. Peter's Basilica?\tthe sarcophagus\t-13.98659547056032\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the sarcophagus, was placed within, St . Peter?s Basilica) -> the sarcophagus (6041ms)\nHow tall is St. Peter's Basilica?\tthe trip\t-14.157621678982558\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the trip, was singing at, St Peter?s Basilica) -> the trip (6041ms)\nHow tall is St. Peter's Basilica?\tthe cathedral\t-14.16381103649253\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the cathedral, is inspired by, the St Peter?s Basilica) -> the cathedral (6041ms)\nHow tall is St. Peter's Basilica?\tthe choir\t-14.165078784813684\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the choir, was invited to sing at, St . Peter?s Basilica) -> the choir (6058ms)\nHow tall is St. Peter's Basilica?\tthe mal di testa\t-14.517964842069567\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is turning into quite, the mal di testa) -> the mal di testa (6058ms)\nHow tall is St. Peter's Basilica?\tthe ancient pagan site\t-14.522475063036733\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, were built on, the ancient pagan site) -> the ancient pagan site (6058ms)\nHow tall is St. Peter's Basilica?\tthe many glorious churches\t-14.527650320896583\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica, is just one of, the many glorious churches) -> the many glorious churches (6058ms)\nHow tall is St. Peter's Basilica?\tthe most famous Catholic Church\t-14.57949710066777\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (The St . Peter?s Basilica, is, the most famous Catholic Church) -> the most famous Catholic Church (6058ms)\nHow tall is St. Peter's Basilica?\tThe largest\t-14.688015433932657\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The largest, is, St . Peter?s Basilica) -> The largest (6058ms)\nHow tall is St. Peter's Basilica?\tThe afternoon\t-14.773643925016042\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The afternoon, is spent at, St . Peter?s Basilica) -> The afternoon (6073ms)\nHow tall is St. Peter's Basilica?\tThe dome\t-14.83809312283234\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The dome, was inspired by, St . Peter?s Basilica) -> The dome (6074ms)\nHow tall is St. Peter's Basilica?\tThe consistory ceremony\t-14.855809746236666\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The consistory ceremony, is at, St . Peter?s Basilica) -> The consistory ceremony (6073ms)\nHow tall is St. Peter's Basilica?\tThe sculpture\t-14.952335604801771\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The sculpture, can be seen in, St . Peter?s Basilica) -> The sculpture (6074ms)\nHow tall is St. Peter's Basilica?\tThe blue transfer drawings\t-14.952335604801771\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The blue transfer drawings, are of, St . Peter?s basilica) -> The blue transfer drawings (6073ms)\nHow tall is St. Peter's Basilica?\tThe young men\t-14.996545504581844\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The young men, were headed to, St . Peter?s Basilica) -> The young men (6090ms)\nHow tall is St. Peter's Basilica?\tthe holiest places\t-15.017455959182211\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is one of, the holiest places) -> the holiest places (6090ms)\nHow tall is St. Peter's Basilica?\tthe main body\t-15.025805941287377\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is located in, the main body) -> the main body (6091ms)\nHow tall is St. Peter's Basilica?\tthe holiest site\t-15.122367357420325\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is considered one of, the holiest site) -> the holiest site (6090ms)\nHow tall is St. Peter's Basilica?\tthe largest interior\t-15.549510903267446\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, have, $x) -> (St . Peter?s Basilica, has, the largest interior) -> the largest interior (6090ms)\nHow tall is St. Peter's Basilica?\tMadeline\t-15.554556025026134\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, make, st peter s basilica) -> (Madeline, makes her way to, St . Peter?s Basilica) -> Madeline (6975ms)\nHow tall is St. Peter's Basilica?\tthe most important church in the city\t-16.007229499520754\tHow tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter 's Basilica, is, the most important church in the city) -> the most important church in the city (6090ms)\nWhat is Head Start?\tquick-rigging system\t-1.857894113792145\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, quick-rigging system) -> quick-rigging system (10870ms)\nWhat is Head Start?\taward-winning program\t-2.016262524328909\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, award-winning program) -> award-winning program (10871ms)\nWhat is Head Start?\tfederal program\t-2.137930357809707\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federal program) -> federal program (10870ms)\nWhat is Head Start?\tpart of the community\t-2.388730978842336\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, part of the community) -> part of the community (10870ms)\nWhat is Head Start?\tAcommunity-based sample\t-2.40287534828422\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, Acommunity-based sample) -> Acommunity-based sample (10870ms)\nWhat is Head Start?\tchild wellness program\t-2.441401982475627\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, child wellness program) -> child wellness program (10870ms)\nWhat is Head Start?\tquality developmental program\t-2.441401982475627\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, quality developmental program) -> quality developmental program (11154ms)\nWhat is Head Start?\tformal child care arrangement\t-2.444968310037213\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, formal child care arrangement) -> formal child care arrangement (11154ms)\nWhat is Head Start?\tpre school program\t-2.4505227413227635\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, pre school program) -> pre school program (11154ms)\nWhat is Head Start?\tvital, active program\t-2.4505227413227635\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, vital, active program) -> vital, active program (11154ms)\nWhat is Head Start?\tfederally funded program\t-2.4551112035635274\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federally funded program) -> federally funded program (11154ms)\nWhat is Head Start?\tcommunity service provider\t-2.468820424651427\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community service provider) -> community service provider (11154ms)\nWhat is Head Start?\tstate & federally funded program\t-2.477099875445436\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, state & federally funded program) -> state & federally funded program (11208ms)\nWhat is Head Start?\tthird, alternative screening site\t-2.4895069719906626\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, third, alternative screening site) -> third, alternative screening site (11207ms)\nWhat is Head Start?\tseparate, federally-subsidized grant program\t-2.4895069719906626\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, separate, federally-subsidized grant program) -> separate, federally-subsidized grant program (11207ms)\nWhat is Head Start?\tcommunity-based, family-focused program\t-2.4916504033607634\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community-based, family-focused program) -> community-based, family-focused program (11207ms)\nWhat is Head Start?\tpopular program\t-2.510283638293563\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, popular program) -> popular program (11207ms)\nWhat is Head Start?\tfederal early childhood development program\t-2.521993830880578\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federal early childhood development program) -> federal early childhood development program (11228ms)\nWhat is Head Start?\tnon-profit, federally funded preschool program\t-2.521993830880578\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, non-profit, federally funded preschool program) -> non-profit, federally funded preschool program (11228ms)\nWhat is Head Start?\tprogram of the United States Department\t-2.521993830880578\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, program of the United States Department) -> program of the United States Department (11229ms)\nWhat is Head Start?\tpreschool, or pre K program\t-2.521993830880578\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, preschool, or pre K program) -> preschool, or pre K program (11229ms)\nWhat is Head Start?\tincome based federally funded preschool program\t-2.5494827114797376\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, income based federally funded preschool program) -> income based federally funded preschool program (11228ms)\nWhat is Head Start?\tnational childhood development and social service program\t-2.5730446091361605\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, national childhood development and social service program) -> national childhood development and social service program (11228ms)\nWhat is Head Start?\tprivate company\t-2.5951190210453685\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, private company) -> private company (11251ms)\nWhat is Head Start?\tcommunity group\t-2.6038217315249046\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community group) -> community group (11251ms)\nWhat is Head Start?\tsupport service\t-2.629090695694324\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, support service) -> support service (11251ms)\nWhat is Head Start?\tfamily affair\t-2.6554163620320965\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, family affair) -> family affair (11251ms)\nWhat is Head Start?\tnational organization\t-2.679729937358724\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, national organization) -> national organization (11273ms)\nWhat is Head Start?\tprogram area\t-2.686482403283631\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, program area) -> program area (11273ms)\nWhat is Head Start?\ttop priority\t-2.686959284698516\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, top priority) -> top priority (11273ms)\nWhat is Head Start?\tkey service\t-2.7043691703111588\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, key service) -> key service (11273ms)\nWhat is Head Start?\tacademic program\t-2.705430555475883\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, academic program) -> academic program (11273ms)\nWhat is Head Start?\tgood investment\t-2.7068011654246007\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, good investment) -> good investment (11273ms)\nWhat is Head Start?\tpreventative measure\t-2.732470188408757\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, preventative measure) -> preventative measure (11319ms)\nWhat is Head Start?\tcomplex organization\t-2.7339757547484425\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, complex organization) -> complex organization (11318ms)\nWhat is Head Start?\tcomprehensive service\t-2.737583580174036\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, comprehensive service) -> comprehensive service (11318ms)\nWhat is Head Start?\tteaching method\t-2.7401665317730144\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, teaching method) -> teaching method (11318ms)\nWhat is Head Start?\tmultidisciplinary program\t-2.749871150010609\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, multidisciplinary program) -> multidisciplinary program (11318ms)\nWhat is Head Start?\tcomplex program\t-2.7799955559375755\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, complex program) -> complex program (11343ms)\nWhat is Head Start?\teducation provider\t-2.7813697186741804\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, education provider) -> education provider (11343ms)\nWhat is Head Start?\temergency service\t-2.7832253105694615\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, emergency service) -> emergency service (11343ms)\nWhat is Head Start?\tsupportive service\t-2.783952684981557\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, supportive service) -> supportive service (11343ms)\nWhat is Head Start?\twonderful experience\t-2.7893899973471727\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, wonderful experience) -> wonderful experience (11343ms)\nWhat is Head Start?\tinstructional program\t-2.7905091985823134\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, instructional program) -> instructional program (11343ms)\nWhat is Head Start?\t3-star facility\t-2.795432809064957\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, 3-star facility) -> 3-star facility (11497ms)\nWhat is Head Start?\teducational opportunity\t-2.7974888531857083\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, educational opportunity) -> educational opportunity (11497ms)\nWhat is Head Start?\t34-year-old federal program\t-2.798186246668358\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, 34-year-old federal program) -> 34-year-old federal program (11497ms)\nWhat is Head Start?\tflagship program\t-2.8070473091684116\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, flagship program) -> flagship program (11497ms)\nWhat is Head Start?\tgovernment initiative\t-2.8169229444023163\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, government initiative) -> government initiative (11521ms)\nWhat is Head Start?\tprogram\t-3.9954991830571576\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, program) -> program (11894ms)\nWhat is Head Start?\tarea\t-4.527024510244583\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, area) -> area (11977ms)\nWhat is Head Start?\tmodel\t-4.674115088343855\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, model) -> model (11978ms)\nWhat is Head Start?\topportunity\t-4.691104629443618\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, opportunity) -> opportunity (11977ms)\nWhat is Head Start?\tlocation\t-4.889615624614249\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, location) -> location (11986ms)\nWhat is Head Start?\tcontrol\t-4.908335807089068\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (head start, Instance Of, control) -> control (11986ms)\nWhat is Head Start?\tpackage\t-4.954666351379524\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, package) -> package (11986ms)\nWhat is Head Start?\tgrant\t-4.962843441187645\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, grant) -> grant (11986ms)\nWhat is Head Start?\tentity\t-4.96520197449955\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, entity) -> entity (11986ms)\nWhat is Head Start?\tthe NA'AMAT centers\t-5.4707373925231675\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> $x: (Head Start, modelling, $x) -> (the Head Start program, was modeled after, the NA'AMAT centers) -> the NA'AMAT centers (11996ms)\nWhat is Head Start?\tOn-site monitoring\t-5.587943361224787\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> $x: ($x, element, Head Start) -> (On-site monitoring, has been a key element of, Head Start) -> On-site monitoring (11997ms)\nWhat is Head Start?\tthe ?Project Head Start ?\t-5.877936007069817\tWhat is Head Start? -> $x: (Head Start, instance of, $x) -> $x: (Head Start, modelling, $x) -> (Head Start, become the model for, the ?Project Head Start ?) -> the ?Project Head Start ? (11996ms)\nWhat is Head Start?\tDate Begun\t-7.130446667767587\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Head II, Has value, Date Begun) -> Date Begun (15587ms)\nWhat is Head Start?\tDate Completed\t-7.1780940608061305\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Two Male Heads, Has value, Date Completed) -> Date Completed (15587ms)\nWhat is Head Start?\tRelease date(s)\t-7.577182808153073\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Your Voice In My Head, Has value, Release date(s)) -> Release date(s) (15790ms)\nWhat is Head Start?\tIBM\t-7.698789786102534\tWhat is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (thin-film head structures, was started in, IBM) -> IBM (13003ms)\nWhat is Head Start?\tone piece\t-8.191993083458964\tWhat is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (my head, is starting to feel back in, one piece) -> one piece (13003ms)\nWhat is Head Start?\tmid handicap players\t-8.935119063824912\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (new head shape, is aimed to attract, mid handicap players) -> mid handicap players (14037ms)\nWhat is Head Start?\tGrubb & Ellis\t-9.009559069275047\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the head, is aiming to integrate, Grubb & Ellis) -> Grubb & Ellis (14036ms)\nWhat is Head Start?\ta hub\t-9.126947240213449\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the Talking Heads, aims to be, a hub) -> a hub (14036ms)\nWhat is Head Start?\ta fourth Breeders\t-9.159570504639923\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head, is aiming the six-year-old at, a fourth Breeders) -> a fourth Breeders (14036ms)\nWhat is Head Start?\ta piece\t-9.169208541018488\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the other track heads, can be aimed at, a piece) -> a piece (14036ms)\nWhat is Head Start?\tthe Extreme Angle output\t-9.197815149601734\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Pivotable light head, aims, the Extreme Angle output) -> the Extreme Angle output (14036ms)\nWhat is Head Start?\tCoin Value\t-9.242897729171423\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: ($x, be the value of, head) -> (Coin Value, is the value of, your Liberty Head ?Barber) -> Coin Value (15789ms)\nWhat is Head Start?\tNicholas Payton\t-9.326060657825877\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (My Head, features, Nicholas Payton) -> Nicholas Payton (15789ms)\nWhat is Head Start?\tnagging problems head-on\t-9.378612948793267\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (an Indian head massage, aims to tackle, nagging problems head-on) -> nagging problems head-on (15839ms)\nWhat is Head Start?\tHU\t-9.420846699159464\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: ($x, be the value of, head) -> (HU, is the value of, upstream head) -> HU (15839ms)\nWhat is Head Start?\tdisadvantaged three\t-9.46019030699219\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head Start, is aimed at, disadvantaged three) -> disadvantaged three (15839ms)\nWhat is Head Start?\ta music\t-9.50540776709473\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (The West Head Project, aims to create, a music) -> a music (15839ms)\nWhat is Head Start?\tCIRCE\t-9.521308496065553\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the robotic head, was the primary aim of, CIRCE) -> CIRCE (15839ms)\nWhat is Head Start?\toverdraft fees\t-9.565305737454368\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the head, has been taking aim at, overdraft fees) -> overdraft fees (15839ms)\nWhat is Head Start?\tvertical light\t-9.565797572844687\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the head, may be aimed downward to eliminate, vertical light) -> vertical light (15879ms)\nWhat is Head Start?\tyoung people\t-9.57664138735529\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (our HeadsUp Suicide Prevention Programme, aimed at, young people) -> young people (15879ms)\nWhat is Head Start?\thead-top tensions\t-9.583682260835163\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (an Indian head massage, will aim to release, head-top tensions) -> head-top tensions (15879ms)\nWhat is Head Start?\ta thousand Roman crowns\t-9.61259167401462\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (his head, is valued at, a thousand Roman crowns) -> a thousand Roman crowns (15879ms)\nWhat is Head Start?\tupward light\t-9.620775334043007\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the head, may be aimed downward to completely stop, upward light) -> upward light (15880ms)\nWhat is Head Start?\ta bit\t-9.623638316839422\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the heads, Aimed, a bit) -> a bit (15879ms)\nWhat is Head Start?\tthe NRL\t-9.647981828092234\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (head BRONCOS coach Anthony Griffin, has taken aim at, the NRL) -> the NRL (15919ms)\nWhat is Head Start?\tJanuary\t-9.650364962730908\tWhat is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (private HeadLines newsletter, was started in, January) -> January (13003ms)\nWhat is Head Start?\ttelevision display\t-9.658251341866698\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (a head, aimed, television display) -> television display (15919ms)\nWhat is Head Start?\teye level\t-9.673144236460892\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (head and shoulders, aim at, eye level) -> eye level (15919ms)\nWhat is Head Start?\tSteve Lyons\t-9.679720876236852\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Head Games, features, Steve Lyons) -> Steve Lyons (15919ms)\nWhat is Head Start?\tmore than simply amuse\t-9.723510842908707\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Beavis and Butt-Head?who, aim to do, more than simply amuse) -> more than simply amuse (15919ms)\nWhat is Head Start?\tFull Offset\t-9.726331343490624\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (This head, features, Full Offset) -> Full Offset (15919ms)\nWhat is Head Start?\ta punk-like ending\t-9.759979541496364\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Your Head, featured, a punk-like ending) -> a punk-like ending (15955ms)\nWhat is Head Start?\tthe Head Start program\t-9.762941625640009\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Head Start, can add value to, the Head Start program) -> the Head Start program (15955ms)\nWhat is Head Start?\tschool readiness\t-9.775720453937032\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head Start Programs, aim to promote, school readiness) -> school readiness (15955ms)\nWhat is Head Start?\tCIMMYT?s team\t-9.784678532963484\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head, has been an extremely valued member of, CIMMYT?s team) -> CIMMYT?s team (15955ms)\nWhat is Head Start?\tmental health consultant\t-9.802945812779441\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, mental health consultant) -> mental health consultant (13004ms)\nWhat is Head Start?\tbig business\t-9.807322010883674\tWhat is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the head, start, big business) -> big business (18970ms)\nWhat is Head Start?\tglobal ecosystem goods\t-9.813717820330552\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (former head, estimates the value of, global ecosystem goods) -> global ecosystem goods (15955ms)\nWhat is Head Start?\trich software performs\t-9.815026893263207\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (their head, feature, rich software performs) -> rich software performs (15955ms)\nWhat is Head Start?\ta slot\t-9.830209690882795\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, features, a slot) -> a slot (15989ms)\nWhat is Head Start?\tAuthor  s\t-9.831795623010262\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Author  s) -> Author  s (13003ms)\nWhat is Head Start?\thealthy nutrition\t-9.835617460177005\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head chef Gianni Aste, aims to combine, healthy nutrition) -> healthy nutrition (15990ms)\nWhat is Head Start?\ta hollowed\t-9.835657798446423\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (this head, features, a hollowed) -> a hollowed (15990ms)\nWhat is Head Start?\ta double-sided design\t-9.839065384330565\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Bead head, features, a double-sided design) -> a double-sided design (15989ms)\nWhat is Head Start?\tOpto speed control\t-9.842124054514777\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, Opto speed control) -> Opto speed control (15989ms)\nWhat is Head Start?\ta side-feed design\t-9.855421958493617\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, features, a side-feed design) -> a side-feed design (15990ms)\nWhat is Head Start?\tan x-shaped muscle\t-9.869016786397449\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (the head, features, an x-shaped muscle) -> an x-shaped muscle (16031ms)\nWhat is Head Start?\tan open U-channel\t-9.882971128705977\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, features, an open U-channel) -> an open U-channel (16031ms)\nWhat is Head Start?\ttwo super-\t-9.88336338049898\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (this head, features, two super-) -> two super- (16031ms)\nWhat is Head Start?\tresearch and evaluation project\t-9.892026931788706\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, research and evaluation project) -> research and evaluation project (13003ms)\nWhat is Head Start?\tbud and blossom\t-9.904776915852674\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (flower heads, feature, bud and blossom) -> bud and blossom (16031ms)\nWhat is Head Start?\told value\t-9.90637473418605\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: ($x, be the value of, head) -> (old value, is the previous value of, the edge head) -> old value (16031ms)\nWhat is Head Start?\ta golf destination\t-9.91075576556457\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Hilton Head, is valued as, a golf destination) -> a golf destination (16031ms)\nWhat is Head Start?\t?50,000\t-9.912900486785677\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (the head lease, was valued at, ?50,000) -> ?50,000 (16069ms)\nWhat is Head Start?\tbuff polished fins\t-9.930627915699219\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Cylinder heads, feature, buff polished fins) -> buff polished fins (16069ms)\nWhat is Head Start?\t24\t-9.937618422313943\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head, values, 24) -> 24 (16069ms)\nWhat is Head Start?\tsmall pointed ears\t-9.940557444970807\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (heads, feature, small pointed ears) -> small pointed ears (16069ms)\nWhat is Head Start?\thome-based programs\t-9.947062628543128\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, home-based programs) -> home-based programs (16069ms)\nWhat is Head Start?\tauthentic stamps and markings\t-9.95026368429602\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (barrel heads, feature, authentic stamps and markings) -> authentic stamps and markings (16069ms)\nWhat is Head Start?\tfifty pieces\t-9.953811184120534\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (an ass?s head, was valued at, fifty pieces) -> fifty pieces (16103ms)\nWhat is Head Start?\tCONTENT RELATED CONTENT\t-9.96209213893031\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (our heads, FEATURED, CONTENT RELATED CONTENT) -> CONTENT RELATED CONTENT (16103ms)\nWhat is Head Start?\tpartners with community groups and businesses\t-9.96611224717751\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, partners with community groups and businesses) -> partners with community groups and businesses (16103ms)\nWhat is Head Start?\tParent meeting\t-9.96784038692518\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Parent meeting) -> Parent meeting (16103ms)\nWhat is Head Start?\t0 and plus infinity\t-9.968597618092206\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (heads, could be any integer value between, 0 and plus infinity) -> 0 and plus infinity (16103ms)\nWhat is Head Start?\ta Threshold value\t-9.969982189976049\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Head Flying Height, compares these values to, a Threshold value) -> a Threshold value (16103ms)\nWhat is Head Start?\tthe Gospel vocal group Charity\t-9.972965578001292\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (My Head, features, the Gospel vocal group Charity) -> the Gospel vocal group Charity (16136ms)\nWhat is Head Start?\ta secondary security lock\t-9.974788921245125\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Head, features, a secondary security lock) -> a secondary security lock (16137ms)\nWhat is Head Start?\tnew raised lip\t-9.98150933587578\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Heads, featured, new raised lip) -> new raised lip (16136ms)\nWhat is Head Start?\tCorian countertops\t-9.985775320330788\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, Corian countertops) -> Corian countertops (16136ms)\nWhat is Head Start?\tan illusory eye\t-9.989785080780523\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, an illusory eye) -> an illusory eye (16136ms)\nWhat is Head Start?\tfour double-prongs\t-9.990778724474467\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, four double-prongs) -> four double-prongs (16136ms)\nWhat is Head Start?\tconceptual art spanning music\t-9.993851630814385\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (My Head, features, conceptual art spanning music) -> conceptual art spanning music (16202ms)\nWhat is Head Start?\tprogram and\t-9.998120028168161\tWhat is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the head, start, program and) -> program and (18970ms)\nWhat is Head Start?\ta topknot\t-9.999626589831797\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a topknot) -> a topknot (16202ms)\nWhat is Head Start?\ttarget Two\t-10.00189558215595\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Fully articulating head, can be aimed precisely at, target Two) -> target Two (16202ms)\nWhat is Head Start?\ta true roll\t-10.004505990662185\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (top-heavy putter heads, aims for, a true roll) -> a true roll (16202ms)\nWhat is Head Start?\ta full sliding bar\t-10.004652587232876\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a full sliding bar) -> a full sliding bar (16202ms)\nWhat is Head Start?\tseveral sharp holes\t-10.006798031089346\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, several sharp holes) -> several sharp holes (16202ms)\nWhat is Head Start?\tsolid guitar work\t-10.009842894787933\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (My Head, features, solid guitar work) -> solid guitar work (16281ms)\nWhat is Head Start?\ta European-made drum shade\t-10.024169519695732\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Each head, features, a European-made drum shade) -> a European-made drum shade (16280ms)\nWhat is Head Start?\ta motorized color wheel\t-10.025053706096829\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head fixture, features, a motorized color wheel) -> a motorized color wheel (16280ms)\nWhat is Head Start?\tphysical activity\t-10.045400784622954\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head Start Body Start, aims to increase, physical activity) -> physical activity (16280ms)\nWhat is Head Start?\tthe Sort box\t-10.048244441956282\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (a column heading, change the value in, the Sort box) -> the Sort box (16280ms)\nWhat is Head Start?\ta bi-color design\t-10.05079473299061\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a bi-color design) -> a bi-color design (16280ms)\nWhat is Head Start?\tdyno tested and flow bench proven ports\t-10.05580526375597\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (cylinder heads, feature, dyno tested and flow bench proven ports) -> dyno tested and flow bench proven ports (16318ms)\nWhat is Head Start?\tthe Waratah?s Logrite\t-10.060202926916979\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The heads, feature, the Waratah?s Logrite) -> the Waratah?s Logrite (16318ms)\nWhat is Head Start?\teligible children\t-10.078184496506875\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, eligible children) -> eligible children (16318ms)\nWhat is Head Start?\ta person\t-10.078819249585932\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (?Nine head coaches, have seen his value as, a person) -> a person (16319ms)\nWhat is Head Start?\tSoviet Russia\t-10.08096552682523\tWhat is Head Start? -> what be [ head ] start ? -> when be the first head celebrate ? -> $x: (the first head, be celebrate in, $x) -> $x: (the first head, take place in, $x) -> (the first head transplant, took place in, Soviet Russia) -> Soviet Russia (16317ms)\nWhat is Head Start?\ta slim , angled neck\t-10.08182166381552\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Each head, features, a slim , angled neck) -> a slim , angled neck (16319ms)\nWhat is Head Start?\tdual continuous drag fluid movement\t-10.082149294778972\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, dual continuous drag fluid movement) -> dual continuous drag fluid movement (16429ms)\nWhat is Head Start?\tAmtico vinyl flooring\t-10.08324661919084\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The heads, feature, Amtico vinyl flooring) -> Amtico vinyl flooring (16428ms)\nWhat is Head Start?\ta large sweetspot and packs plenty\t-10.088933783573895\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (inch head, features, a large sweetspot and packs plenty) -> a large sweetspot and packs plenty (16428ms)\nWhat is Head Start?\ta long term\t-10.090273178316746\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head Resourcing, aims to offer, a long term) -> a long term (16428ms)\nWhat is Head Start?\t1965\t-10.098216389602264\tWhat is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (Kedren Head Start, was started in, 1965) -> 1965 (16428ms)\nWhat is Head Start?\ta moisture-proof O-ring seal\t-10.098442126029154\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (THE HEAD, features, a moisture-proof O-ring seal) -> a moisture-proof O-ring seal (16429ms)\nWhat is Head Start?\tphysical examination\t-10.100514131243363\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, physical examination) -> physical examination (16464ms)\nWhat is Head Start?\tprogram funds\t-10.113060439561004\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, program funds) -> program funds (16464ms)\nWhat is Head Start?\talto , tenor\t-10.114000177186025\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, alto , tenor) -> alto , tenor (16465ms)\nWhat is Head Start?\ta combined $ 73.5 billion\t-10.11445796873194\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head offices, were valued at, a combined $ 73.5 billion) -> a combined $ 73.5 billion (16464ms)\nWhat is Head Start?\ta more mature queen\t-10.11612611756256\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (small head, featured, a more mature queen) -> a more mature queen (16464ms)\nWhat is Head Start?\tthe U.S.\t-10.116506407626124\tWhat is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the head, start, the U.S.) -> the U.S. (18970ms)\nWhat is Head Start?\ta straight-wall ACOUSTICON? construction\t-10.122415210589917\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (These heads, feature, a straight-wall ACOUSTICON? construction) -> a straight-wall ACOUSTICON? construction (16464ms)\nWhat is Head Start?\tfour leveling bubbles\t-10.12528053720284\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, four leveling bubbles) -> four leveling bubbles (16506ms)\nWhat is Head Start?\ta more rounded head\t-10.134401296049976\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (This head, features, a more rounded head) -> a more rounded head (16506ms)\nWhat is Head Start?\ta sumptuous curved-face teak vanity\t-10.137426356697052\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a sumptuous curved-face teak vanity) -> a sumptuous curved-face teak vanity (16506ms)\nWhat is Head Start?\t0, 1\t-10.141287325066765\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (heads, can take on values of, 0, 1) -> 0, 1 (16506ms)\nWhat is Head Start?\tincredible low and mid-lift flow numbers\t-10.144271493741398\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (these heads, feature, incredible low and mid-lift flow numbers) -> incredible low and mid-lift flow numbers (16506ms)\nWhat is Head Start?\tPettersson and Colt Knost\t-10.147892628790846\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Hilton Head, featured, Pettersson and Colt Knost) -> Pettersson and Colt Knost (16506ms)\nWhat is Head Start?\ttwo springs\t-10.153002392973956\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, now features, two springs) -> two springs (16556ms)\nWhat is Head Start?\tbright LED emitters\t-10.169277239104105\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Its head, features, bright LED emitters) -> bright LED emitters (16556ms)\nWhat is Head Start?\tgreenish-yellow\t-10.169286545881826\tWhat is Head Start? -> what be head [ start ] ? -> what be fruit start ? -> $x: (fruit, start, $x) -> (fruit, start out, greenish-yellow) -> greenish-yellow (16556ms)\nWhat is Head Start?\ta recommendation\t-10.171645816029717\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (School heads, will place greater value on, a recommendation) -> a recommendation (16556ms)\nWhat is Head Start?\ta separate stall shower\t-10.183260559155363\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a separate stall shower) -> a separate stall shower (16556ms)\nWhat is Head Start?\tpowder coat paint\t-10.187502059479772\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, powder coat paint) -> powder coat paint (16592ms)\nWhat is Head Start?\tBlarg\t-10.18782416346438\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> ('s head, try to aim back for, Blarg) -> Blarg (16592ms)\nWhat is Head Start?\tgovernment advisors\t-10.200678813753278\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Heads, will feature, government advisors) -> government advisors (16592ms)\nWhat is Head Start?\tpre-k programs\t-10.21512293042113\tWhat is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the Head, Start, pre-k programs) -> pre-k programs (18970ms)\nWhat is Head Start?\tPopulation\t-10.224185309951277\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Population) -> Population (16592ms)\nWhat is Head Start?\tthe Sanchez estate\t-10.230772876272482\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Head, had claimed the value of, the Sanchez estate) -> the Sanchez estate (16592ms)\nWhat is Head Start?\tthree rings\t-10.238763924150636\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Each head, features, three rings) -> three rings (16592ms)\nWhat is Head Start?\tKelly\t-10.250012091111572\tWhat is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start on, $x) -> (her head, were starting to take its toll on, Kelly) -> Kelly (16628ms)\nWhat is Head Start?\ta flickering glow\t-10.251927874057047\tWhat is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Butt-Head, aimed, a flickering glow) -> a flickering glow (16628ms)\nWhat is Head Start?\tEnterprise System\t-10.260292436323217\tWhat is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Enterprise System) -> Enterprise System (16628ms)\nWhat is Head Start?\ttype list\t-10.26320085733191\tWhat is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head and tail, must yield a value of, type list) -> type list (16628ms)\nWhat is Head Start?\t2003\t-10.29598896254139\tWhat is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (The Western Heads East program, was started in, 2003) -> 2003 (16628ms)\nWhat is Head Start?\tprogram resembling pumpkins\t-10.296572926656168\tWhat is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the head, start, program resembling pumpkins) -> program resembling pumpkins (18970ms)\nWhat is Head Start?\tConsortium\t-10.300257336485974\tWhat is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the Head, Start, Consortium) -> Consortium (18970ms)\nWhat is Head Start?\ta wiry , brush-like mustache\t-10.303655560897301\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a wiry , brush-like mustache) -> a wiry , brush-like mustache (16628ms)\nWhat is Head Start?\ttwo channels\t-10.315694798867524\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (This head, features, two channels) -> two channels (16661ms)\nWhat is Head Start?\t70cc combustion chambers\t-10.341669492790162\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The heads, feature, 70cc combustion chambers) -> 70cc combustion chambers (16662ms)\nWhat is Head Start?\t70-cc combustion chambers\t-10.341669492790162\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The heads, feature, 70-cc combustion chambers) -> 70-cc combustion chambers (16661ms)\nWhat is Head Start?\tincredible $ 1,950.00Price\t-10.347858850300133\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (these heads, feature, incredible $ 1,950.00Price) -> incredible $ 1,950.00Price (16661ms)\nWhat is Head Start?\trot\t-10.350748413788885\tWhat is Head Start? -> what be head [ start ] ? -> what be fruit start ? -> $x: (fruit, start, $x) -> (fruit, is just starting to, rot) -> rot (16661ms)\nWhat is Head Start?\tFerrea valves\t-10.350884479062964\tWhat is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, Ferrea valves) -> Ferrea valves (16661ms)\nWho is the governor of Alaska?\tSarah Palin\t3.2921084567553587\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sarah Palin, has been the governor of, Alaska) -> Sarah Palin (7641ms)\nWho is the governor of Alaska?\ttodd palin\t2.7572246676402568\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (todd palin, actually is the governor of, alaska) -> todd palin (7989ms)\nWho is the governor of Alaska?\tFrank Murkowki\t2.728532782125315\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Frank Murkowki, is the governor of, Alaska) -> Frank Murkowki (7987ms)\nWho is the governor of Alaska?\tShawn Parnell\t2.618444395963863\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Shawn Parnell, would be appointed the next governor of, Alaska) -> Shawn Parnell (8221ms)\nWho is the governor of Alaska?\tMcCain\t2.603021765140443\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (McCain, is the Governor of, Alaska) -> McCain (8222ms)\nWho is the governor of Alaska?\ta woman\t1.99304400245952\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (a woman, would be either the Governor of, Alaska) -> a woman (8222ms)\nWho is the governor of Alaska?\tVP\t1.9540394941979757\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (VP, is being the governor of, Alaska) -> VP (8221ms)\nWho is the governor of Alaska?\tTrig?s mum\t1.581831876045979\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Trig?s mum, is the Governor of, Alaska) -> Trig?s mum (8265ms)\nWho is the governor of Alaska?\tPages Governor Sarah Palin\t1.4979766834200263\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Pages Governor Sarah Palin, is the current Governor of, Alaska) -> Pages Governor Sarah Palin (8414ms)\nWho is the governor of Alaska?\tSara Palin\t1.383052001632266\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sara Palin, was the Governor of, Alaska) -> Sara Palin (8414ms)\nWho is the governor of Alaska?\tA contrasting example\t1.3692019484801734\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (A contrasting example, is the Governor of, Alaska) -> A contrasting example (8414ms)\nWho is the governor of Alaska?\tSarah Palin Sarah Palin\t1.357642799031777\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sarah Palin Sarah Palin, is the former governor of, Alaska) -> Sarah Palin Sarah Palin (8414ms)\nWho is the governor of Alaska?\tPalin\t1.1660524638300527\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Palin, is the governor of, Alaska) -> Palin (8414ms)\nWho is the governor of Alaska?\tJohn F. A.\t1.119569654312233\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (John F. A., was appointed the 8th governor of, Alaska) -> John F. A. (8414ms)\nWho is the governor of Alaska?\ta 44 year old mother\t0.7198817866886449\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (a 44 year old mother, has been the governor of, Alaska) -> a 44 year old mother (8636ms)\nWho is the governor of Alaska?\t1 Sarah Louise Heath Palin\t0.674723132380219\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (1 Sarah Louise Heath Palin, is the current Governor of, Alaska) -> 1 Sarah Louise Heath Palin (8636ms)\nWho is the governor of Alaska?\tshe?s\t0.6228997561227634\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (she?s, been the governor of, Alaska) -> she?s (8636ms)\nWho is the governor of Alaska?\tFrank Murkowski\t0.6038165165000886\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Frank Murkowski, was elected governor of, Alaska) -> Frank Murkowski (8636ms)\nWho is the governor of Alaska?\tSarah\t0.470697253245405\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sarah, is the governor of, Alaska) -> Sarah (8746ms)\nWho is the governor of Alaska?\tthe brow\t0.2105154526598414\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (the brow, is the governor of, Alaska) -> the brow (8747ms)\nWho is the governor of Alaska?\t2010\t0.16352055929770748\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (2010, has been the former governor of, Alaska) -> 2010 (8811ms)\nWho is the governor of Alaska?\tthe Interior\t-0.41464034095832836\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the Interior, was elected Governor of, Alaska) -> the Interior (9282ms)\nWho is the governor of Alaska?\tthe fading carnival attraction\t-0.47920489887064255\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (the fading carnival attraction, was once the governor of, Alaska) -> the fading carnival attraction (9282ms)\nWho is the governor of Alaska?\tThe vice presidential choice\t-0.4852013593659019\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (The vice presidential choice, is the governor of, Alaska) -> The vice presidential choice (9281ms)\nWho is the governor of Alaska?\tgubernatorial chutzpah\t-0.49812276577433623\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (gubernatorial chutzpah, was elected governor of, Alaska) -> gubernatorial chutzpah (9281ms)\nWho is the governor of Alaska?\tPew\t-0.5957131914473337\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Pew, included a former governor of, Alaska) -> Pew (9726ms)\nWho is the governor of Alaska?\tRick Perry\t-0.7508984852015189\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Rick Perry, had been governor of, Alaska) -> Rick Perry (9783ms)\nWho is the governor of Alaska?\tthe Alaska Daily Empire\t-0.7687375460767025\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the Alaska Daily Empire, was appointed Governor of, Alaska) -> the Alaska Daily Empire (9783ms)\nWho is the governor of Alaska?\tmayor\t-0.8482751057014407\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (mayor, is Governor of, Alaska) -> mayor (9921ms)\nWho is the governor of Alaska?\tSean Parnell\t-0.8499286269794143\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Sean Parnell, has been governor of, Alaska) -> Sean Parnell (9919ms)\nWho is the governor of Alaska?\ta Finn\t-0.9662021574501104\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (a Finn, was Governor of, Alaska) -> a Finn (9919ms)\nWho is the governor of Alaska?\tMs. Palin\t-1.0112962436312802\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Ms. Palin, was Governor of, Alaska) -> Ms. Palin (10163ms)\nWho is the governor of Alaska?\ta beauty queen\t-1.0653718031721076\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (a beauty queen, can be elected governor of, Alaska) -> a beauty queen (10163ms)\nWho is the governor of Alaska?\tMr. Parnell\t-1.1085579599046875\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Mr. Parnell, is governor of, Alaska) -> Mr. Parnell (10163ms)\nWho is the governor of Alaska?\thelp Sarah\t-1.234874429857737\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (help Sarah, become the next governor of, Alaska) -> help Sarah (10388ms)\nWho is the governor of Alaska?\tDemocrat Tony Knowles\t-1.2675897483166698\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Democrat Tony Knowles, was elected governor of, Alaska) -> Democrat Tony Knowles (10388ms)\nWho is the governor of Alaska?\tTodd Palin\t-1.2731521307750904\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Todd Palin, would later become governor of, Alaska) -> Todd Palin (10388ms)\nWho is the governor of Alaska?\tsarah palin\t-1.3182184082609032\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be a person who lead the organization, Alaska) -> (sarah palin, is a person who leads the organization, alaska) -> sarah palin (10524ms)\nWho is the governor of Alaska?\ta small town\t-1.3251271703473324\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (a small town, has been governor of, Alaska) -> a small town (10523ms)\nWho is the governor of Alaska?\tSummary Sarah Palin\t-1.328897943738189\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Summary Sarah Palin, is a former Governor of, Alaska) -> Summary Sarah Palin (10523ms)\nWho is the governor of Alaska?\tresource development\t-1.3488451555362924\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the backbone of, Alaska) -> (resource development, is the backbone of, Alaska?s economy) -> resource development (10731ms)\nWho is the governor of Alaska?\tAlaska Anchorage\t-1.367010578214197\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be head of, Alaska) -> (Alaska Anchorage, was the head of, Alaska State Troopers) -> Alaska Anchorage (10732ms)\nWho is the governor of Alaska?\tRobert Brewster\t-1.3992339620650363\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Robert Brewster, is president of, The Alaska Club) -> Robert Brewster (10732ms)\nWho is the governor of Alaska?\tRandy Zarnke\t-1.4232415506752027\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Randy Zarnke, is president of, the Alaska Trappers Association) -> Randy Zarnke (11058ms)\nWho is the governor of Alaska?\tAlso Summary Sarah Palin\t-1.428948788849393\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Also Summary Sarah Palin, is a former Governor of, Alaska) -> Also Summary Sarah Palin (11058ms)\nWho is the governor of Alaska?\tpresident\t-1.4377745953812764\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (president, was governor of, Alaska) -> president (11058ms)\nWho is the governor of Alaska?\ta person\t-1.4899263133835359\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (a person, has become governor even of, Alaska) -> a person (11112ms)\nWho is the governor of Alaska?\tyoung Bayard\t-1.4911083622269712\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (young Bayard, elected governor of, Alaska) -> young Bayard (11112ms)\nWho is the governor of Alaska?\tfour\t-1.5792462114347567\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (four, was governor of, Alaska) -> four (11194ms)\nWho is the governor of Alaska?\tfrank murkowski\t-1.579780469566394\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be who in, Alaska) -> (frank murkowski, is a person who has residence in the geopolitical location, alaska) -> frank murkowski (11194ms)\nWho is the governor of Alaska?\twhose mother\t-1.603758331842458\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (whose mother, is governor of, Alaska) -> whose mother (11194ms)\nWho is the governor of Alaska?\tlevi johnston\t-1.6270775141267124\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be who in, Alaska) -> (levi johnston, is a person who has residence in the state or province, alaska) -> levi johnston (11274ms)\nWho is the governor of Alaska?\tLake Erie\t-1.6879099826088777\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (Lake Erie, is the only place outside of, Alaska) -> Lake Erie (11274ms)\nWho is the governor of Alaska?\tRhode Island\t-1.7419409915321296\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Rhode Island, there are in, Alaska) -> Rhode Island (11306ms)\nWho is the governor of Alaska?\tlast year\t-1.7758183380155041\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (last year, was president of, the Alaska Senate) -> last year (11306ms)\nWho is the governor of Alaska?\tDarsha Spalinger\t-1.800998117328229\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Darsha Spalinger, is a lifetime resident of, Alaska) -> Darsha Spalinger (11494ms)\nWho is the governor of Alaska?\tJim Minnery\t-1.8471415085659266\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Jim Minnery, is president of, the Alaska Family Council) -> Jim Minnery (11494ms)\nWho is the governor of Alaska?\tJohn Brady\t-1.8537236211484303\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (John Brady, eventually became governors of, Alaska) -> John Brady (11494ms)\nWho is the governor of Alaska?\tMr. Geary\t-1.8899544564526298\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the chief of, Alaska) -> (Mr. Geary, was the Chief of, the Alaska Department) -> Mr. Geary (11608ms)\nWho is the governor of Alaska?\tThe MCUs\t-1.9037984701574087\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the backbone of, Alaska) -> (The MCUs, are the backbone of, the Alaska Bureau) -> The MCUs (11694ms)\nWho is the governor of Alaska?\tBen Stevens\t-2.0124865263650795\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Ben Stevens, was president of, the Alaska state senate) -> Ben Stevens (11765ms)\nWho is the governor of Alaska?\tWilliam A. Egan\t-2.017798478740851\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be governor of, Alaska) -> (William A. Egan, was again elected Governor of, Alaska) -> William A. Egan (11764ms)\nWho is the governor of Alaska?\tThe Aleutian Range\t-2.088834358282261\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the backbone of, Alaska) -> (The Aleutian Range, is the backbone of, the Alaska Peninsula) -> The Aleutian Range (11863ms)\nWho is the governor of Alaska?\tThe writer\t-2.1667750329713185\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (The writer, is governor of, Alaska) -> The writer (11970ms)\nWho is the governor of Alaska?\tSwineford\t-2.2399842969786605\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Swineford, was governor of, Alaska) -> Swineford (11970ms)\nWho is the governor of Alaska?\tinsects\t-2.254076498481441\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be most of, Alaska) -> (insects, is THE most important component of, Alaska) -> insects (11970ms)\nWho is the governor of Alaska?\tJohn McCain\t-2.2610999434764323\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (the Alaska Governor, was chosen as, John McCain) -> John McCain (11970ms)\nWho is the governor of Alaska?\tI?oza\t-2.279436539796787\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (I?oza, had been the president of, the Alaska Milk Workers Union) -> I?oza (12038ms)\nWho is the governor of Alaska?\tVladimir Putin\t-2.2912712421858012\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Vladimir Putin, won?t be rearing his head in, Alaska) -> Vladimir Putin (12038ms)\nWho is the governor of Alaska?\tFrank H. Murkowski\t-2.2954467224448445\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be who in, Alaska) -> (Frank H. Murkowski, is a person who has residence in the geopolitical location, alaska) -> Frank H. Murkowski (12038ms)\nWho is the governor of Alaska?\tDe Gaulle\t-2.3262197981861026\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (De Gaulle, is Elected President of, France Alaska Becomes) -> De Gaulle (12083ms)\nWho is the governor of Alaska?\tresidents\t-2.359363159254453\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (residents, then became governor of, Alaska) -> residents (12083ms)\nWho is the governor of Alaska?\tMitigation\t-2.3919153218121783\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the foundation of, Alaska) -> (Mitigation, are the foundation of, Alaska) -> Mitigation (12083ms)\nWho is the governor of Alaska?\tMark Wilson\t-2.395685204285766\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (Mark Wilson, was the president of, Alaska Mountaintop Spirits) -> Mark Wilson (12083ms)\nWho is the governor of Alaska?\t? Students\t-2.4027527646321056\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (? Students, must be a permanent resident of, Alaska) -> ? Students (12083ms)\nWho is the governor of Alaska?\tJack Phelps\t-2.4090127265363552\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (Jack Phelps, is the current president of, the Alaska Private) -> Jack Phelps (12395ms)\nWho is the governor of Alaska?\tthe years Palin\t-2.415686961211334\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the years Palin, was Governor of, Alaska) -> the years Palin (12395ms)\nWho is the governor of Alaska?\tnow and 2012\t-2.446571133282739\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (now and 2012, is governor of, Alaska) -> now and 2012 (12395ms)\nWho is the governor of Alaska?\tKirk Hoessle\t-2.4558751855197185\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (Kirk Hoessle, is the President of, Alaska Wildland Adventures) -> Kirk Hoessle (12395ms)\nWho is the governor of Alaska?\tlisa murkowski\t-2.458506414786599\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, represent the region, Alaska) -> (lisa murkowski, represents the region, alaska) -> lisa murkowski (12455ms)\nWho is the governor of Alaska?\tClemson University\t-2.479157973733055\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Clemson University, does work in, Alaska) -> Clemson University (12456ms)\nWho is the governor of Alaska?\tpolar bears\t-2.498523218203897\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, polar bears) -> polar bears (12456ms)\nWho is the governor of Alaska?\tMurkowski\t-2.500008223819981\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Murkowski, was elected governor of, Alaska) -> Murkowski (12456ms)\nWho is the governor of Alaska?\tLanette Higham\t-2.5414612884170413\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Lanette Higham, There is adventure in, Alaska) -> Lanette Higham (12608ms)\nWho is the governor of Alaska?\tthe hell\t-2.553129181740266\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the hell, become governor of, Alaska) -> the hell (12608ms)\nWho is the governor of Alaska?\tThe late Jay Hammond\t-2.5815189979210333\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (The late Jay Hammond, was governor of, Alaska) -> The late Jay Hammond (12772ms)\nWho is the governor of Alaska?\tan Elephant Maggie\t-2.605531639199017\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (an Elephant Maggie, has been a resident of, the Alaska Zoo) -> an Elephant Maggie (12773ms)\nWho is the governor of Alaska?\tan account\t-2.6067909966022893\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (an account, was opened outside of, Alaska) -> an account (12772ms)\nWho is the governor of Alaska?\tCVEA\t-2.628011786442377\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (CVEA, is currently looking outside of, Alaska) -> CVEA (12860ms)\nWho is the governor of Alaska?\tExxon Valdez\t-2.67721830999114\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Exxon Valdez, did in, Alaska) -> Exxon Valdez (12860ms)\nWho is the governor of Alaska?\tJudy Waldron\t-2.700375706523501\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Judy Waldron, is president of, the Alaska chapter) -> Judy Waldron (12935ms)\nWho is the governor of Alaska?\tChris Hanson\t-2.70974331097521\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be an expert in, Alaska) -> (Chris Hanson, is an expert in, Alaska Fishing Guides) -> Chris Hanson (12935ms)\nWho is the governor of Alaska?\tcolored postcards\t-2.7523871807267497\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (colored postcards, were very popular in, early Alaska) -> colored postcards (13018ms)\nWho is the governor of Alaska?\tMano Frey\t-2.759678338258285\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Mano Frey, has been a resident of, Alaska) -> Mano Frey (13018ms)\nWho is the governor of Alaska?\tCripple Creek\t-2.761709059451603\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Cripple Creek, did exploratory work in, Alaska) -> Cripple Creek (13018ms)\nWho is the governor of Alaska?\tDenver\t-2.7826536795707497\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the leader of, Alaska) -> (Denver, will be the new leader of, the Alaska State Council) -> Denver (13018ms)\nWho is the governor of Alaska?\ta qualified voter\t-2.793391819711589\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (a qualified voter, has been a resident of, Alaska) -> a qualified voter (13018ms)\nWho is the governor of Alaska?\tbald eagles\t-2.801490341063797\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (bald eagles, can only be done in, Alaska) -> bald eagles (13142ms)\nWho is the governor of Alaska?\tcross-country skiing\t-2.802838105505854\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (cross-country skiing, is popular in, Alaska) -> cross-country skiing (13142ms)\nWho is the governor of Alaska?\tThe rising Republican star\t-2.8028865575104946\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (The rising Republican star, was elected governor of, Alaska) -> The rising Republican star (13142ms)\nWho is the governor of Alaska?\tdivorce\t-2.807003410144707\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (divorce, must be a resident of, Alaska) -> divorce (13142ms)\nWho is the governor of Alaska?\tJohn Miller\t-2.814308351957516\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (John Miller, was president of, the Alaska Commercial Co.) -> John Miller (13217ms)\nWho is the governor of Alaska?\tSenator John McCain\t-2.8289555503299137\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be name as, $x) -> (Alaska governor Sarah Palin, was named as, Senator John McCain) -> Senator John McCain (13217ms)\nWho is the governor of Alaska?\ta rate\t-2.8432345215639883\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (a rate, has been found outside of, Alaska) -> a rate (13217ms)\nWho is the governor of Alaska?\tThe Iditarod\t-2.859638321526484\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (The Iditarod, is the most popular sporting event in, Alaska) -> The Iditarod (13217ms)\nWho is the governor of Alaska?\tconservationist\t-2.874202472567061\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (conservationist, has been a resident of, Alaska) -> conservationist (13329ms)\nWho is the governor of Alaska?\ta student\t-2.89111045512303\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (a student, must be a resident of, Alaska) -> a student (13329ms)\nWho is the governor of Alaska?\tHolly madison\t-2.9036189223718787\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be who in, Alaska) -> (Holly madison, is a person who has residence in the state or province, alaska) -> Holly madison (13459ms)\nWho is the governor of Alaska?\tSep 5 , 2008 4:40 PM EDT Ms. Palin\t-2.905562224331568\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Sep 5 , 2008 4:40 PM EDT Ms. Palin, has been Governor of, Alaska) -> Sep 5 , 2008 4:40 PM EDT Ms. Palin (13459ms)\nWho is the governor of Alaska?\tTwo additional ports\t-2.940168659576239\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (Two additional ports, are located outside of, Alaska) -> Two additional ports (13459ms)\nWho is the governor of Alaska?\tted stevens\t-2.94044731226927\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, represent the region, Alaska) -> (ted stevens, represents the region, alaska) -> ted stevens (13459ms)\nWho is the governor of Alaska?\tASU. Students\t-2.9433709370707333\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (ASU. Students, must be a permanent resident of, Alaska) -> ASU. Students (13459ms)\nWho is the governor of Alaska?\ta former president\t-2.9502870671858936\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (a former president, is currently president of, Alaska Renovators) -> a former president (13499ms)\nWho is the governor of Alaska?\tMr. Davidge\t-2.953431613699572\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Mr. Davidge, is president of, Alaska Water Exports) -> Mr. Davidge (13499ms)\nWho is the governor of Alaska?\tthe Republican Party\t-2.968187142291675\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, had been selected as, the Republican Party) -> the Republican Party (13499ms)\nWho is the governor of Alaska?\tan Alaska Native artist\t-2.9914819244907873\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (an Alaska Native artist, must be a full time resident of, Alaska) -> an Alaska Native artist (13499ms)\nWho is the governor of Alaska?\t75.7 %\t-3.0214830214739608\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (75.7 %, was elected president of, the Alaska Conference) -> 75.7 % (13577ms)\nWho is the governor of Alaska?\tthe America\t-3.040923491960179\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, has been chosen as, the America) -> the America (13577ms)\nWho is the governor of Alaska?\t1994 Tony Knowles\t-3.044801189864669\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (1994 Tony Knowles, elected ninth governor of, Alaska) -> 1994 Tony Knowles (13577ms)\nWho is the governor of Alaska?\tSeattle\t-3.075613348037746\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be most of, Alaska) -> (Seattle, is the southern most tip of, Alaska) -> Seattle (13577ms)\nWho is the governor of Alaska?\tJohn McCain?s running mate\t-3.0776306651638885\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (the Alaska governor, was chosen as, John McCain?s running mate) -> John McCain?s running mate (13721ms)\nWho is the governor of Alaska?\tGod\t-3.0821964452435444\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (God, can do in, Alaska) -> God (13721ms)\nWho is the governor of Alaska?\tfive species\t-3.092322396092665\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, five species) -> five species (13721ms)\nWho is the governor of Alaska?\tPat Robertson\t-3.1053774317619145\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Pat Robertson, won in, Alaska) -> Pat Robertson (13721ms)\nWho is the governor of Alaska?\thand sanizter\t-3.107820533945389\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (hand sanizter, is most popular in, Alaska) -> hand sanizter (13722ms)\nWho is the governor of Alaska?\tevaluation sites\t-3.1135321219691114\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska and Hawaii, were selected as, evaluation sites) -> evaluation sites (13721ms)\nWho is the governor of Alaska?\tthe first woman\t-3.1139707050210297\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the first woman, ever elected Governor of, Alaska) -> the first woman (13722ms)\nWho is the governor of Alaska?\tJohn McCain?s\t-3.128782397581769\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska Governor, was chosen as, John McCain?s) -> John McCain?s (14626ms)\nWho is the governor of Alaska?\t330 subscribers\t-3.129792551756147\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (330 subscribers, are outside of, Alaska) -> 330 subscribers (14626ms)\nWho is the governor of Alaska?\tTed Stevens\t-3.1311164063079566\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Ted Stevens, will win in, Alaska) -> Ted Stevens (14626ms)\nWho is the governor of Alaska?\tBell\t-3.136185517534031\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Bell, has been a resident of, Southeast Alaska) -> Bell (14625ms)\nWho is the governor of Alaska?\tPete\t-3.1458766578806237\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Pete, is now a resident of, Alaska) -> Pete (14626ms)\nWho is the governor of Alaska?\tRepublican Stevens\t-3.1464532402820256\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Republican Stevens, will probably win in, Alaska) -> Republican Stevens (14625ms)\nWho is the governor of Alaska?\tliteracy rates\t-3.216336608061463\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (literacy rates, have been done in, Alaska) -> literacy rates (14791ms)\nWho is the governor of Alaska?\tLaters Soviet\t-3.2307071847600985\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Laters Soviet, do in, alaska) -> Laters Soviet (14791ms)\nWho is the governor of Alaska?\tAnchorage Daily News\t-3.254074888228036\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Anchorage Daily News, There is a great fever abroad in, Alaska) -> Anchorage Daily News (14836ms)\nWho is the governor of Alaska?\tvarious studies\t-3.2949656309754065\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (various studies, were done earlier in, Alaska) -> various studies (14836ms)\nWho is the governor of Alaska?\tlegal opinions\t-3.3047564076216096\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (legal opinions, can be done in, Alaska) -> legal opinions (14836ms)\nWho is the governor of Alaska?\tThe North Slope\t-3.3061138786078605\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be everything in, Alaska) -> (The North Slope, is everything in, Alaska North) -> The North Slope (14899ms)\nWho is the governor of Alaska?\tTravel Guard\t-3.319126984320245\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have a plan for, Alaska) -> (Travel Guard, has a plan for, your Alaska trip) -> Travel Guard (14899ms)\nWho is the governor of Alaska?\ta state\t-3.3198862517312575\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Alaska, was recognized as, a state) -> a state (14899ms)\nWho is the governor of Alaska?\tAlaskan History\t-3.3204385899044744\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Alaskan History, Do in, Alaska) -> Alaskan History (14899ms)\nWho is the governor of Alaska?\tquota\t-3.3229958111144167\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (quota, are also residents of, the SE Alaska coastal communities) -> quota (14900ms)\nWho is the governor of Alaska?\tMurphy\t-3.330681179862181\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the owner of, Alaska) -> (Murphy, is the owner of, Alaska Excursions) -> Murphy (14899ms)\nWho is the governor of Alaska?\tapplicable provisions\t-3.3580367363862553\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, is governed by, applicable provisions) -> applicable provisions (14899ms)\nWho is the governor of Alaska?\tMaggie\t-3.3592729087107283\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Maggie, has been a resident of, the Alaska Zoo) -> Maggie (14949ms)\nWho is the governor of Alaska?\tMark Begich\t-3.376054754808489\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, represent the region, Alaska) -> (Mark Begich, represents the region, alaska) -> Mark Begich (14949ms)\nWho is the governor of Alaska?\tCheyenne Brown\t-3.396052202559251\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Cheyenne Brown, hails from, Alaska) -> Cheyenne Brown (14950ms)\nWho is the governor of Alaska?\tAtlantis\t-3.397993584600252\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be the kingdom of, $x) -> (Alaska, were once the great kingdom of, Atlantis) -> Atlantis (14949ms)\nWho is the governor of Alaska?\tcongressional representative\t-3.4066676208741065\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Every Alaska governor, elected, congressional representative) -> congressional representative (14950ms)\nWho is the governor of Alaska?\tthe rules\t-3.4076104982123048\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the spirit of, Alaska) -> (the rules, is the spirit of, Alaska) -> the rules (14949ms)\nWho is the governor of Alaska?\t13-90 semester credit hours\t-3.4152480525268514\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (13-90 semester credit hours, are a resident of, Alaska) -> 13-90 semester credit hours (14950ms)\nWho is the governor of Alaska?\tindividual citizens\t-3.418162149492952\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (individual citizens, is done in, Alaska) -> individual citizens (15096ms)\nWho is the governor of Alaska?\ta cross-roads\t-3.4910648305907843\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be consider as, $x) -> (Alaska, can be considered today as, a cross-roads) -> a cross-roads (15096ms)\nWho is the governor of Alaska?\tthe Yugtarvik Regional Museum\t-3.529933912247879\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, the Yugtarvik Regional Museum) -> the Yugtarvik Regional Museum (15178ms)\nWho is the governor of Alaska?\tDeer hunting\t-3.5343117580183656\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Deer hunting, is popular in, Southeast Alaska?) -> Deer hunting (15178ms)\nWho is the governor of Alaska?\t20 meters\t-3.5358136098812856\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (20 meters, is the optimum band there in, Alaska) -> 20 meters (15178ms)\nWho is the governor of Alaska?\ta number\t-3.5475999412271855\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, a number) -> a number (15178ms)\nWho is the governor of Alaska?\tCharlie\t-3.5632703746771255\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the owner of, Alaska) -> (Charlie, is the owner of, the hot Alaska Rock Gym) -> Charlie (15178ms)\nWho is the governor of Alaska?\tDiesel\t-3.58593923433136\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the life of, Alaska) -> (Diesel, has been the life?s blood of, Alaska?s electric co-ops) -> Diesel (15178ms)\nWho is the governor of Alaska?\tReeve\t-3.586651736410114\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (Reeve, has been the president of, the Alaska Power Association) -> Reeve (15178ms)\nWho is the governor of Alaska?\tCNN\t-3.5974999779339796\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (CNN, did spend a few minutes in, Alaska) -> CNN (15291ms)\nWho is the governor of Alaska?\tStudents\t-3.6127850774389016\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Students, must either be residents of, Alaska) -> Students (15291ms)\nWho is the governor of Alaska?\ttrip\t-3.6235910589989087\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (trip, is president of, All Alaska Outdoors) -> trip (15291ms)\nWho is the governor of Alaska?\td_p\t-3.624603226275338\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (d_p, Are there jobs in, Alaska) -> d_p (15291ms)\nWho is the governor of Alaska?\tseaweeds\t-3.6277001382101894\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (seaweeds, there are in, Alaska !) -> seaweeds (15291ms)\nWho is the governor of Alaska?\tmuch oil\t-3.637107157671959\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (much oil, is there in, Alaska) -> much oil (15292ms)\nWho is the governor of Alaska?\ta seven-member Board\t-3.6415694091967348\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (The Alaska Railroad, is governed by, a seven-member Board) -> a seven-member Board (15350ms)\nWho is the governor of Alaska?\ta Republican\t-3.6435136124980185\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (a Republican, had been highly popular in, Alaska) -> a Republican (15350ms)\nWho is the governor of Alaska?\tBear hunting\t-3.6467081498142275\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Bear hunting, is popular in, Alaska) -> Bear hunting (15350ms)\nWho is the governor of Alaska?\tone delegate\t-3.648841167904287\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (the Alaska Bar Association, shall elect, one delegate) -> one delegate (15350ms)\nWho is the governor of Alaska?\tJoe Miller\t-3.651890015320277\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elect, Joe Miller) -> Joe Miller (15350ms)\nWho is the governor of Alaska?\tWUWT\t-3.656559522007558\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (WUWT, was so popular in, Alaska) -> WUWT (15350ms)\nWho is the governor of Alaska?\tThompson\t-3.6797158214467784\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Thompson, was president of, the Alaska Federation) -> Thompson (15350ms)\nWho is the governor of Alaska?\tMr McCain?s running mate\t-3.6811673838344108\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, Mr McCain?s running mate) -> Mr McCain?s running mate (15350ms)\nWho is the governor of Alaska?\tprovost and vice president\t-3.684267514377459\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, has been chosen as, provost and vice president) -> provost and vice president (15414ms)\nWho is the governor of Alaska?\tThe Deering survey\t-3.712212418070304\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (The Deering survey, was done in, Alaska) -> The Deering survey (15414ms)\nWho is the governor of Alaska?\tBoardwalk Wilderness Lodge\t-3.7171643182720255\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Boardwalk Wilderness Lodge, There are few lodges in, Alaska) -> Boardwalk Wilderness Lodge (15414ms)\nWho is the governor of Alaska?\tthe Russian-American Company\t-3.7523935322333077\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, was governed by, the Russian-American Company) -> the Russian-American Company (15414ms)\nWho is the governor of Alaska?\tBP\t-3.7566555855208663\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (BP, has done in, Alaska) -> BP (15415ms)\nWho is the governor of Alaska?\tGeoPRISMS Primary Site\t-3.757888599745343\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, GeoPRISMS Primary Site) -> GeoPRISMS Primary Site (15415ms)\nWho is the governor of Alaska?\tHensley\t-3.763779204426403\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Hensley, was president of, the Alaska Federation) -> Hensley (15414ms)\nWho is the governor of Alaska?\tDIRECTV\t-3.767507534997942\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (DIRECTV, does offer programming in, Alaska) -> DIRECTV (15478ms)\nWho is the governor of Alaska?\tJohn McCain?s choice\t-3.7713555561967507\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, has been selected as, John McCain?s choice) -> John McCain?s choice (15478ms)\nWho is the governor of Alaska?\tMrs. Palin\t-3.773123928998944\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Mrs. Palin, were popular in, Alaska and Delaware) -> Mrs. Palin (15478ms)\nWho is the governor of Alaska?\tfelt information\t-3.7744049513119124\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (felt information, may do something similar here in, Alaska) -> felt information (15478ms)\nWho is the governor of Alaska?\tan advocate\t-3.7819658984144993\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (an advocate, evidently is very popular in, Alaska) -> an advocate (15478ms)\nWho is the governor of Alaska?\t?ConocoPhillips\t-3.7930074378038667\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do make, Alaska) -> (?ConocoPhillips, does make money in, Alaska) -> ?ConocoPhillips (15478ms)\nWho is the governor of Alaska?\tEmmons\t-3.794956899352982\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Emmons, was president of, the Alaska Library Association) -> Emmons (15478ms)\nWho is the governor of Alaska?\tan offshoot\t-3.8134210109581246\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (an offshoot, has been popular in, Scandinavia and Alaska) -> an offshoot (15560ms)\nWho is the governor of Alaska?\tHalibut and salmon fishing\t-3.816957809264806\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Halibut and salmon fishing, are extremely popular in, Alaska) -> Halibut and salmon fishing (15560ms)\nWho is the governor of Alaska?\tIllustrated\t-3.818515477465446\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be native of, Alaska) -> (Illustrated, here are the Native American tribes of, Alaska) -> Illustrated (15560ms)\nWho is the governor of Alaska?\tgeothermal and hydropower resources\t-3.8214685384830314\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, geothermal and hydropower resources) -> geothermal and hydropower resources (15560ms)\nWho is the governor of Alaska?\tWolf-haters\t-3.830310507898587\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be a minority in, Alaska) -> (Wolf-haters, are a minority in, both Idaho and Alaska) -> Wolf-haters (15560ms)\nWho is the governor of Alaska?\tRon Paul\t-3.834447434009685\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Ron Paul, finally wins one in, Alaska) -> Ron Paul (15560ms)\nWho is the governor of Alaska?\tan eligible Native village\t-3.8393790647628663\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Alaska, shall be recognized as, an eligible Native village) -> an eligible Native village (15560ms)\nWho is the governor of Alaska?\tno governor\t-3.8785164588696244\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (no governor, has ever won in, Alaska) -> no governor (15624ms)\nWho is the governor of Alaska?\tNorth America?s largest peak\t-3.886834607273641\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, North America?s largest peak) -> North America?s largest peak (15624ms)\nWho is the governor of Alaska?\tgovernor\t-3.8954019280639627\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (R-Alaska, was elected, governor) -> governor (15624ms)\nWho is the governor of Alaska?\tan Inupiat Eskimo\t-3.901272903374051\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (an Inupiat Eskimo, hails from, the Northwest Alaska village) -> an Inupiat Eskimo (15624ms)\nWho is the governor of Alaska?\tthe vehicle owner\t-3.9065880922539615\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (the vehicle owner, is outside of, Alaska) -> the vehicle owner (15624ms)\nWho is the governor of Alaska?\tThe Valley ! Offer\t-3.9165369484374315\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (The Valley ! Offer, do in, Alaska) -> The Valley ! Offer (15624ms)\nWho is the governor of Alaska?\tSole Survivor\t-3.9436339796047397\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be name as, $x) -> (Alaska, was named as, Sole Survivor) -> Sole Survivor (15833ms)\nWho is the governor of Alaska?\tthe student\t-3.9485213829223293\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (the student, is a legal resident of, Alaska) -> the student (15833ms)\nWho is the governor of Alaska?\tthe Senate\t-3.9528579718312136\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected a Democrat to, the Senate) -> the Senate (15832ms)\nWho is the governor of Alaska?\ta board\t-3.9846201972608823\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, shall be governed by, a board) -> a board (15833ms)\nWho is the governor of Alaska?\tBuist\t-4.010023552455388\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Buist, is past president of, the Alaska Trappers Association) -> Buist (15833ms)\nWho is the governor of Alaska?\tice\t-4.032470138539975\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (ice, has been done in, Alaska) -> ice (15891ms)\nWho is the governor of Alaska?\ta model\t-4.033251081748733\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Alaska???s fisheries, are recognized as, a model) -> a model (15891ms)\nWho is the governor of Alaska?\tTony Knowles\t-4.035013237376877\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected, Tony Knowles) -> Tony Knowles (15891ms)\nWho is the governor of Alaska?\ta historic Alaskan landmark\t-4.043564190403667\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Talkeetna Alaska, is recognized as, a historic Alaskan landmark) -> a historic Alaskan landmark (15891ms)\nWho is the governor of Alaska?\tlast night?s results\t-4.075727723414448\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (last night?s results, were won in, Alaska) -> last night?s results (15891ms)\nWho is the governor of Alaska?\tthe well\t-4.076150752948074\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska Beach, is also home to, the well) -> the well (15940ms)\nWho is the governor of Alaska?\tSuch homophobia\t-4.087201477615176\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Such homophobia, did n?t even play in, Alaska) -> Such homophobia (15940ms)\nWho is the governor of Alaska?\t16\t-4.09175292986329\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, 16) -> 16 (15940ms)\nWho is the governor of Alaska?\ta dividend check\t-4.0947526685669144\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (a dividend check, is done in, Alaska) -> a dividend check (15940ms)\nWho is the governor of Alaska?\tthe place\t-4.096268002433529\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be consider as, $x) -> (Alaska, is considered as, the place) -> the place (15940ms)\nWho is the governor of Alaska?\tthe family members\t-4.104648375809752\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (the family members, ARE residents of, Alaska) -> the family members (15940ms)\nWho is the governor of Alaska?\ta real estate developer\t-4.11290384771017\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (a real estate developer, does business in, Alaska) -> a real estate developer (15940ms)\nWho is the governor of Alaska?\ta singer songwriter\t-4.114215400592104\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (a singer songwriter, hails from, Alaska) -> a singer songwriter (15940ms)\nWho is the governor of Alaska?\tspecific user benefits\t-4.11482263547936\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (specific user benefits, could be done in, Alaska) -> specific user benefits (16033ms)\nWho is the governor of Alaska?\tLisa Murkowski\t-4.1171790585975\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Lisa Murkowski, won a Senate seat in, Alaska) -> Lisa Murkowski (16033ms)\nWho is the governor of Alaska?\tthe US Senate\t-4.12440217376127\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected a Democrat to, the US Senate) -> the US Senate (16033ms)\nWho is the governor of Alaska?\tThe breed\t-4.132817493184229\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be native of, Alaska) -> (The breed, is a native of, Alaska) -> The breed (16033ms)\nWho is the governor of Alaska?\tpastor\t-4.1388780267143765\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, was elected as, pastor) -> pastor (16033ms)\nWho is the governor of Alaska?\tThe Nautilus Swell\t-4.142007379343281\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (The Nautilus Swell, does trips in, Alaska) -> The Nautilus Swell (16033ms)\nWho is the governor of Alaska?\tKim\t-4.163059465455113\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Kim, has done field work in, Alaska) -> Kim (16033ms)\nWho is the governor of Alaska?\tsustainable\t-4.163611820963212\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Alaska seafood, has been recognized as, sustainable) -> sustainable (16172ms)\nWho is the governor of Alaska?\tMuch work\t-4.16411230288217\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Much work, is already being done in, Alaska) -> Much work (16172ms)\nWho is the governor of Alaska?\tMitt Romney\t-4.1649903248115105\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Mitt Romney, also won in, Alaska) -> Mitt Romney (16172ms)\nWho is the governor of Alaska?\ttime\t-4.1691455043433985\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (time, can be done in, Alaska) -> time (16172ms)\nWho is the governor of Alaska?\tterritory\t-4.184798777528751\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (territory, there is to explore in, Alaska) -> territory (16172ms)\nWho is the governor of Alaska?\tGeorge\t-4.18788699384095\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (George, has been a resident of, Alaska) -> George (16172ms)\nWho is the governor of Alaska?\tCMU\t-4.189788953416061\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (CMU, won its second game in, the Great Alaska Shootout 90-84) -> CMU (16172ms)\nWho is the governor of Alaska?\ta freshman\t-4.196902609860244\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (a freshman, hails from, Alaska) -> a freshman (16458ms)\nWho is the governor of Alaska?\tKayakers and hunters\t-4.236756093059794\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, depart from, Alaska) -> (Kayakers and hunters, departed from, Alaska) -> Kayakers and hunters (16458ms)\nWho is the governor of Alaska?\tthe 1950s and 60s\t-4.2406400847183825\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the 1950s and 60s, meanwhile work being done in, Alaska) -> the 1950s and 60s (16458ms)\nWho is the governor of Alaska?\tBruce\t-4.246700854065713\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Bruce, is a lifelong resident of, Alaska) -> Bruce (16458ms)\nWho is the governor of Alaska?\ta medical and dental plan\t-4.254440031890907\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (AlaskaCare, must elect, a medical and dental plan) -> a medical and dental plan (16458ms)\nWho is the governor of Alaska?\tChris Chris A\t-4.261685865359402\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Chris Chris A, hails from, Alaska) -> Chris Chris A (16458ms)\nWho is the governor of Alaska?\tWilliams\t-4.267921591203505\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Williams, is president of, Alaska Conservation Solutions) -> Williams (16458ms)\nWho is the governor of Alaska?\tthe broader community Patti\t-4.272535173466817\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (the broader community Patti, is Past President of, Alaska Women) -> the broader community Patti (16511ms)\nWho is the governor of Alaska?\tso much\t-4.274003984832216\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (so much, do in, Alaska) -> so much (16511ms)\nWho is the governor of Alaska?\tApplicants\t-4.274538268678834\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Applicants, must be Native residents of, Southeast Alaska) -> Applicants (16511ms)\nWho is the governor of Alaska?\tJohn McCains\t-4.282380539691845\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (the Alaska governor, was chosen as, John McCains) -> John McCains (16511ms)\nWho is the governor of Alaska?\tLescanec\t-4.288193573812945\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Lescanec, is a 25-year resident of, Alaska) -> Lescanec (16511ms)\nWho is the governor of Alaska?\tthe military and\t-4.291388121311837\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (the military and, am stationed outside of, Alaska) -> the military and (16511ms)\nWho is the governor of Alaska?\tTilden\t-4.292679126647979\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Tilden, was elected president of, Alaska Airlines) -> Tilden (16590ms)\nWho is the governor of Alaska?\ta radio-collared bear\t-4.315449684100994\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, depart from, Alaska) -> (a radio-collared bear, departed from, Alaska?s coast) -> a radio-collared bear (16590ms)\nWho is the governor of Alaska?\tObama/Biden\t-4.3340178620354965\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Obama/Biden, won in, Alaska) -> Obama/Biden (16590ms)\nWho is the governor of Alaska?\ta Democrat\t-4.376394768183827\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (a Democrat, has won a federal election in, Alaska) -> a Democrat (16590ms)\nWho is the governor of Alaska?\tSport trips\t-4.384098414449184\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Sport trips, are popular in, Alaska) -> Sport trips (16590ms)\nWho is the governor of Alaska?\tArchimandrite Raphael Hawaweeny\t-4.401216871755556\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected, Archimandrite Raphael Hawaweeny) -> Archimandrite Raphael Hawaweeny (16590ms)\nWho is the governor of Alaska?\tstorms\t-4.401536008110439\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (storms, usually do in, Alaska) -> storms (16707ms)\nWho is the governor of Alaska?\ta rock\t-4.402985297260043\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, have emerge as, $x) -> (Alaska, has emerged as, a rock) -> a rock (16707ms)\nWho is the governor of Alaska?\tan oil tanker\t-4.4286270191056145\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (an oil tanker, do in, Alaska) -> an oil tanker (16707ms)\nWho is the governor of Alaska?\tsalmon roe\t-4.433048003813392\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (salmon roe, hailed from, Alaska) -> salmon roe (16707ms)\nWho is the governor of Alaska?\t?The girls\t-4.442648943253366\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (?The girls, did a show in, Alaska) -> ?The girls (16707ms)\nWho is the governor of Alaska?\tAlder\t-4.445764757587069\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Alder, is very popular in, Alaska) -> Alder (16707ms)\nWho is the governor of Alaska?\ta chance\t-4.4502751754265395\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (a chance, do very well in, Alaska) -> a chance (16707ms)\nWho is the governor of Alaska?\ta real climate champ\t-4.460458151163451\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected, a real climate champ) -> a real climate champ (16758ms)\nWho is the governor of Alaska?\trisk\t-4.471926242063397\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (risk, ,there are diverse voices in, Alaska) -> risk (16758ms)\nWho is the governor of Alaska?\tMr Romney\t-4.477002721265466\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Mr Romney, also won in, Alaska) -> Mr Romney (16758ms)\nWho is the governor of Alaska?\tnumerous winter trips\t-4.481825505835985\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (numerous winter trips, has done some exploring in, Alaska) -> numerous winter trips (16758ms)\nWho is the governor of Alaska?\tYou?ve\t-4.486099873009021\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (You?ve, also done plays in, Alaska) -> You?ve (16758ms)\nWho is the governor of Alaska?\tThere?s so..SO\t-4.486984059410117\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (There?s so..SO, do in, Alaska) -> There?s so..SO (16758ms)\nWho is the governor of Alaska?\tjust what Palin\t-4.4896366713157025\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (just what Palin, has done in, Alaska) -> just what Palin (16830ms)\nWho is the governor of Alaska?\tBarr\t-4.493547450610723\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Barr, is expected to do relatively well in, Alaska) -> Barr (16830ms)\nWho is the governor of Alaska?\tfact\t-4.494441360505619\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (fact, do in, Alaska visitors) -> fact (16830ms)\nWho is the governor of Alaska?\tNearly three-quarters\t-4.4992982590051\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Nearly three-quarters, hail from, southcentral Alaska) -> Nearly three-quarters (16830ms)\nWho is the governor of Alaska?\tMax Newman Max Newman\t-4.501950870910683\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Max Newman Max Newman, originally hails from, Alaska) -> Max Newman Max Newman (16830ms)\nWho is the governor of Alaska?\tAS 25.24.430\t-4.515082812590521\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, is governed by, AS 25.24.430) -> AS 25.24.430 (16830ms)\nWho is the governor of Alaska?\tAlternative energy\t-4.527520191341468\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have a place in, Alaska) -> (Alternative energy, has a place in, rural Alaska) -> Alternative energy (16868ms)\nWho is the governor of Alaska?\tAS 40.25.300\t-4.538349615393722\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska web site, is governed by, AS 40.25.300) -> AS 40.25.300 (16868ms)\nWho is the governor of Alaska?\tOne biology student\t-4.554183069130177\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (One biology student, did an internship in, Alaska) -> One biology student (16868ms)\nWho is the governor of Alaska?\tMushing\t-4.5544178646915725\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Mushing, is a popular sport in, Alaska) -> Mushing (16868ms)\nWho is the governor of Alaska?\tFishing\t-4.6013590569240375\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Fishing, is also a popular pastime in, Alaska) -> Fishing (16868ms)\nWho is the governor of Alaska?\tthe military\t-4.643083627506925\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, was loosely governed by, the military) -> the military (16868ms)\nWho is the governor of Alaska?\tgrizzlies\t-4.65843584578202\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (grizzlies, is done in, Alaska) -> grizzlies (16868ms)\nWho is the governor of Alaska?\tThe raven\t-4.670561287626068\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident in, Alaska) -> (The raven, is a permanent resident in, Alaska) -> The raven (16868ms)\nWho is the governor of Alaska?\tcollegiate 10,000-meter record holder\t-4.717574913448853\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (collegiate 10,000-meter record holder, did spend time in, Alaska) -> collegiate 10,000-meter record holder (16929ms)\nWho is the governor of Alaska?\tfamily\t-4.748931880492302\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (family, hails from, the interior Alaska village) -> family (16929ms)\nWho is the governor of Alaska?\tKeri\t-4.759800971932533\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Keri, originally hails from, Alaska) -> Keri (16929ms)\nWho is the governor of Alaska?\taxes\t-4.771677696211601\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (axes, is done in, Alaska) -> axes (16929ms)\nWho is the governor of Alaska?\twolves\t-4.787180829629126\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (wolves, is currently being done in, Alaska) -> wolves (16929ms)\nWho is the governor of Alaska?\tofficials\t-4.791601814336904\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (1884 Alaska, was governed by, officials) -> officials (16929ms)\nWho is the governor of Alaska?\tPreserve\t-4.7958028970531235\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Preserve, is the most popular tourist attraction in, Alaska) -> Preserve (16929ms)\nWho is the governor of Alaska?\ta big 5-1\t-4.83684187044606\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (a big 5-1, win Saturday in, Alaska) -> a big 5-1 (16929ms)\nWho is the governor of Alaska?\tChelsea\t-4.853501703900385\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Chelsea, is doing well in, Alaska) -> Chelsea (17008ms)\nWho is the governor of Alaska?\tTreasurer\t-4.858833597768241\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska Village Electric Cooperative, was elected, Treasurer) -> Treasurer (17009ms)\nWho is the governor of Alaska?\tthe site\t-4.860195981182809\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, the site) -> the site (17008ms)\nWho is the governor of Alaska?\tPaul\t-4.877032468008926\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Paul, also won substantial percentages in, Alaska) -> Paul (17008ms)\nWho is the governor of Alaska?\teverybody\t-4.878656272780331\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (everybody, did n?t live in, Alaska) -> everybody (17009ms)\nWho is the governor of Alaska?\tthe venue\t-4.899259766549703\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, has been selected as, the venue) -> the venue (17009ms)\nWho is the governor of Alaska?\tthe winner\t-4.901688700930041\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, was selected as, the winner) -> the winner (17009ms)\nWho is the governor of Alaska?\t1990\t-4.9049848832075\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (the Alaska Independence Party, elected a governor back in, 1990) -> 1990 (17068ms)\nWho is the governor of Alaska?\tFlorida researcher\t-4.912619290017276\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (Florida researcher, has done extensive field work in, Alaska) -> Florida researcher (17068ms)\nWho is the governor of Alaska?\tHeartbeat\t-4.9255293037958054\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Heartbeat, appears to be hugely popular in, rural Alaska) -> Heartbeat (17068ms)\nWho is the governor of Alaska?\tObama\t-4.941203543762519\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Obama, could win in, Alaska) -> Obama (17068ms)\nWho is the governor of Alaska?\tthe MSM\t-4.973351441283027\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the MSM, do some in-depth documentaries on, Alaska) -> the MSM (17068ms)\nWho is the governor of Alaska?\tmore than 28 basins\t-4.978313539201835\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (more than 28 basins, has done fieldwork in, Alaska) -> more than 28 basins (17112ms)\nWho is the governor of Alaska?\tthe manager\t-4.981490155897584\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, then was selected as, the manager) -> the manager (17112ms)\nWho is the governor of Alaska?\twomen\t-5.0205201406268145\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (women, do in, Alaska) -> women (17112ms)\nWho is the governor of Alaska?\tDemocrats\t-5.0278549178181775\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Democrats, can win in, Alaska) -> Democrats (17169ms)\nWho is the governor of Alaska?\tthe state\t-5.046463873677416\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (the second project Alaska, was chosen as, the state) -> the state (17168ms)\nWho is the governor of Alaska?\tBrenda\t-5.051663698734298\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Brenda, hails from, Juneau Alaska) -> Brenda (17168ms)\nWho is the governor of Alaska?\tthe recipient\t-5.065031998909623\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Covenant House Alaska, was selected as, the recipient) -> the recipient (17168ms)\nWho is the governor of Alaska?\tSeward\t-5.079169803613258\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Seward, is an extremely popular destination in, Alaska) -> Seward (17169ms)\nWho is the governor of Alaska?\tKentucky bluegrasses\t-5.088966901827181\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Kentucky bluegrasses, do well in, Alaska) -> Kentucky bluegrasses (17248ms)\nWho is the governor of Alaska?\trepresentatives\t-5.092075566927395\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska?s, elected, representatives) -> representatives (17248ms)\nWho is the governor of Alaska?\tCommercial airlines\t-5.104882415153805\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Commercial airlines, do operate in, Alaska) -> Commercial airlines (17248ms)\nWho is the governor of Alaska?\ta company\t-5.106961751626885\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (a company, doing business in, Alaska) -> a company (17248ms)\nWho is the governor of Alaska?\tthe tremendous diversity\t-5.110445612829638\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (the tremendous diversity, there is in, Alaska) -> the tremendous diversity (17248ms)\nWho is the governor of Alaska?\tWillow\t-5.115347107007604\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Willow, is a community there in, Alaska) -> Willow (17248ms)\nWho is the governor of Alaska?\t1966\t-5.129571127712252\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (the Alaska Federation, was elected its first chairman in, 1966) -> 1966 (17298ms)\nWho is the governor of Alaska?\tAlaska\t-5.148990035837256\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, depart from, Alaska) -> (Alaska, depart mostly from, Whittier,Alaska) -> Alaska (17298ms)\nWho is the governor of Alaska?\tHeather\t-5.161368803559494\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Heather, hails from, Alaska) -> Heather (17298ms)\nWho is the governor of Alaska?\tCorrect\t-5.165458379315334\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Correct, Are there more depressed people in, Alaska) -> Correct (17298ms)\nWho is the governor of Alaska?\tthe sample state\t-5.166085473101301\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, the sample state) -> the sample state (17352ms)\nWho is the governor of Alaska?\tthe highest point\t-5.202462402549717\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, the highest point) -> the highest point (17352ms)\nWho is the governor of Alaska?\tExxon\t-5.208166694415601\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (Exxon, has done in, Alaska) -> Exxon (17352ms)\nWho is the governor of Alaska?\tthe top carbon-storage forests\t-5.21094472747219\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be rank as, $x) -> (southeast Alaska, are ranked as, the top carbon-storage forests) -> the top carbon-storage forests (17352ms)\nWho is the governor of Alaska?\tThe pungent beverage\t-5.216027811253312\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (The pungent beverage, was so popular in, Alaska) -> The pungent beverage (17417ms)\nWho is the governor of Alaska?\tdrinking\t-5.231843378305938\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, also create, Alaska) -> (drinking, also creates problems in, village Alaska) -> drinking (17417ms)\nWho is the governor of Alaska?\tthe highest priority site\t-5.24779834776402\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, was selected as, the highest priority site) -> the highest priority site (17417ms)\nWho is the governor of Alaska?\tthe state governments\t-5.252204008185094\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the state governments, just is done in, Alaska) -> the state governments (17417ms)\nWho is the governor of Alaska?\tthe world?s largest volcanic eruption\t-5.255933074573031\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, was also home to, the world?s largest volcanic eruption) -> the world?s largest volcanic eruption (17416ms)\nWho is the governor of Alaska?\tthe same system\t-5.260161791199552\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, should be governed by, the same system) -> the same system (17865ms)\nWho is the governor of Alaska?\tthe average bear\t-5.276926475457213\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the average bear, is being done in, Alaska) -> the average bear (17864ms)\nWho is the governor of Alaska?\tthe highest priority primary site\t-5.277194982663897\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, the highest priority primary site) -> the highest priority primary site (17864ms)\nWho is the governor of Alaska?\tThe race\t-5.280011898214122\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (The race, is the most popular sporting event in, Alaska) -> The race (17864ms)\nWho is the governor of Alaska?\tGreens\t-5.30243869432087\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Greens, are doing in, Alaska) -> Greens (17865ms)\nWho is the governor of Alaska?\tthe counting\t-5.305199196614156\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the counting, is done in, Alaska) -> the counting (17865ms)\nWho is the governor of Alaska?\tthe grey wolf\t-5.329294890768379\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, the grey wolf) -> the grey wolf (17865ms)\nWho is the governor of Alaska?\tthe same law\t-5.3414729259739815\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, is governed by, the same law) -> the same law (18760ms)\nWho is the governor of Alaska?\ta 2011 Fellow\t-5.346179612193794\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska Fairbanks Institute, has been elected, a 2011 Fellow) -> a 2011 Fellow (18760ms)\nWho is the governor of Alaska?\tthe abortion\t-5.3539891377977025\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the abortion, was n?t done in, Alaska) -> the abortion (18760ms)\nWho is the governor of Alaska?\tthe legendary Copper River salmon\t-5.394260144112833\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also the home to, the legendary Copper River salmon) -> the legendary Copper River salmon (18760ms)\nWho is the governor of Alaska?\tthe board\t-5.396793311209095\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska Chris McDowell, was elected to, the board) -> the board (18760ms)\nWho is the governor of Alaska?\tRobertson\t-5.425029488048134\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Robertson, won the caucuses in, Alaska) -> Robertson (19326ms)\nWho is the governor of Alaska?\tStevens\t-5.453964202559044\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Stevens, is winning in, Alaska) -> Stevens (19326ms)\nWho is the governor of Alaska?\tRomney\t-5.512728840728876\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Romney, also wins in, the Alaska caucus) -> Romney (19457ms)\nWho is the governor of Alaska?\tthe companies\t-5.529791026764729\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the companies, do business in, Alaska) -> the companies (19457ms)\nWho is the governor of Alaska?\tBethel\t-5.544582033728929\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Bethel, has won an award in, the Alaska Press Club 2006 contest) -> Bethel (19457ms)\nWho is the governor of Alaska?\tthe goods\t-5.567876084459792\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the goods, do originate in, Alaska) -> the goods (19457ms)\nWho is the governor of Alaska?\t10 troops in Afghanistan\t-5.613795485962841\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (10 troops in Afghanistan, hailing from, Alaska-based units) -> 10 troops in Afghanistan (19579ms)\nWho is the governor of Alaska?\toil companies\t-5.614510062397674\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (oil companies, doing business in, Alaska) -> oil companies (19579ms)\nWho is the governor of Alaska?\tDefense\t-5.615702372876173\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Defense, recently did in, Alaska) -> Defense (19579ms)\nWho is the governor of Alaska?\tThe former Massachusetts governor\t-5.616458427768778\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (The former Massachusetts governor, won in, Alaska) -> The former Massachusetts governor (19579ms)\nWho is the governor of Alaska?\tDoctors\t-5.617535138657749\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Doctors, are allowed to do so in, Alaska) -> Doctors (19579ms)\nWho is the governor of Alaska?\tthe firm\t-5.676255017615299\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (the firm, does have a 50 % stake in, Alaska) -> the firm (19579ms)\nWho is the governor of Alaska?\tthe job SP\t-5.726010061544098\tWho is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the job SP, did in, Alaska) -> the job SP (19579ms)\nWhat political party does Thabo Mbeki belong to?\tMonwabise Kwanda Mbeki\t-7.606067202164608\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> how many child do thabo mbekus have ? -> $x: (thabo mbekus, child, $x) -> (Thabo Mbeki, Children, Monwabise Kwanda Mbeki) -> Monwabise Kwanda Mbeki (3875ms)\nWhat political party does Thabo Mbeki belong to?\tThabo Mvuyelwa Mbeki\t-10.203477842447496\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, also know as, $x) -> (Thabo Mbeki, Also known as, Thabo Mvuyelwa Mbeki) -> Thabo Mvuyelwa Mbeki (7261ms)\nWhat political party does Thabo Mbeki belong to?\tAids sceptic\t-10.490969514360781\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, Aids sceptic) -> Aids sceptic (7260ms)\nWhat political party does Thabo Mbeki belong to?\tafrican political leader\t-10.665684688502225\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, african political leader) -> african political leader (7260ms)\nWhat political party does Thabo Mbeki belong to?\tinfluential political figure\t-10.683160201761567\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, influential political figure) -> influential political figure (7260ms)\nWhat political party does Thabo Mbeki belong to?\tkey political figure\t-10.707703833872953\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, key political figure) -> key political figure (7259ms)\nWhat political party does Thabo Mbeki belong to?\tprominent South Africans\t-10.739128006643961\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, prominent South Africans) -> prominent South Africans (7259ms)\nWhat political party does Thabo Mbeki belong to?\tmisunderstood man\t-10.747852423031066\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, misunderstood man) -> misunderstood man (7260ms)\nWhat political party does Thabo Mbeki belong to?\tintelligent man\t-10.754245549617037\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, intelligent man) -> intelligent man (7284ms)\nWhat political party does Thabo Mbeki belong to?\tpolitical figure\t-10.896627569094925\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, political figure) -> political figure (7284ms)\nWhat political party does Thabo Mbeki belong to?\tpolitical leader\t-10.898263679822099\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, political leader) -> political leader (7284ms)\nWhat political party does Thabo Mbeki belong to?\tman\t-10.901393344057698\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, man) -> man (7284ms)\nWhat political party does Thabo Mbeki belong to?\tleader of neighbouring country\t-10.930491922841684\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, leader of neighbouring country) -> leader of neighbouring country (7284ms)\nWhat political party does Thabo Mbeki belong to?\tadvocate of debt cancellation\t-10.936488056116529\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, advocate of debt cancellation) -> advocate of debt cancellation (7284ms)\nWhat political party does Thabo Mbeki belong to?\tANC leader\t-10.94410802065624\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, ANC leader) -> ANC leader (7284ms)\nWhat political party does Thabo Mbeki belong to?\tleader of the ANC\t-10.949674642596504\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, leader of the ANC) -> leader of the ANC (7308ms)\nWhat political party does Thabo Mbeki belong to?\tVIPs\t-10.994367668580058\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, VIPs) -> VIPs (7308ms)\nWhat political party does Thabo Mbeki belong to?\tprominent world leader\t-11.032675788979244\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, prominent world leader) -> prominent world leader (7308ms)\nWhat political party does Thabo Mbeki belong to?\tsenior ANC leader\t-11.033814227204042\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, senior ANC leader) -> senior ANC leader (7308ms)\nWhat political party does Thabo Mbeki belong to?\tstrong, credible leader\t-11.059720214160954\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, strong, credible leader) -> strong, credible leader (7308ms)\nWhat political party does Thabo Mbeki belong to?\tno-show\t-11.069339427965563\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, no-show) -> no-show (7308ms)\nWhat political party does Thabo Mbeki belong to?\tman of culture\t-11.074769979370844\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, man of culture) -> man of culture (7308ms)\nWhat political party does Thabo Mbeki belong to?\trespected african leader\t-11.09549341074896\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, respected african leader) -> respected african leader (7332ms)\nWhat political party does Thabo Mbeki belong to?\ticonic african leader\t-11.09549341074896\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, iconic african leader) -> iconic african leader (7332ms)\nWhat political party does Thabo Mbeki belong to?\tworld class leader\t-11.098920716020935\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, world class leader) -> world class leader (7332ms)\nWhat political party does Thabo Mbeki belong to?\tprominent world figure\t-11.104306481273225\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, prominent world figure) -> prominent world figure (7332ms)\nWhat political party does Thabo Mbeki belong to?\ttypical African leader\t-11.104614169596097\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, typical African leader) -> typical African leader (7332ms)\nWhat political party does Thabo Mbeki belong to?\tAIDS theory denier\t-11.104614169596097\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, AIDS theory denier) -> AIDS theory denier (7332ms)\nWhat political party does Thabo Mbeki belong to?\tkey ANC leader\t-11.104614169596097\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, key ANC leader) -> key ANC leader (7332ms)\nWhat political party does Thabo Mbeki belong to?\tfamous leader from the province\t-11.106912263521957\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, famous leader from the province) -> famous leader from the province (7355ms)\nWhat political party does Thabo Mbeki belong to?\tpolitical figurehead\t-11.13191651886003\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (former president Thabo Mbeki, Instance Of, political figurehead) -> political figurehead (7355ms)\nWhat political party does Thabo Mbeki belong to?\trespected African statesman\t-11.132032611771896\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, respected African statesman) -> respected African statesman (7355ms)\nWhat political party does Thabo Mbeki belong to?\tsouth african leader\t-11.139784741360407\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, south african leader) -> south african leader (7355ms)\nWhat political party does Thabo Mbeki belong to?\textremely embarrassing situation\t-11.142617206061805\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, extremely embarrassing situation) -> extremely embarrassing situation (7355ms)\nWhat political party does Thabo Mbeki belong to?\tresponsible, democratic leader\t-11.147684632078265\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (South Africa's Thabo Mbeki, Instance Of, responsible, democratic leader) -> responsible, democratic leader (7376ms)\nWhat political party does Thabo Mbeki belong to?\tchampion of the empowerment of woman\t-11.147684632078265\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, champion of the empowerment of woman) -> champion of the empowerment of woman (7355ms)\nWhat political party does Thabo Mbeki belong to?\tgreat South African Statesman\t-11.151737964908941\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, great South African Statesman) -> great South African Statesman (7376ms)\nWhat political party does Thabo Mbeki belong to?\tman of integrity and intelligence\t-11.151737964908941\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, man of integrity and intelligence) -> man of integrity and intelligence (7376ms)\nWhat political party does Thabo Mbeki belong to?\tsouth african great leader\t-11.151737964908941\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, south african great leader) -> south african great leader (7376ms)\nWhat political party does Thabo Mbeki belong to?\tpetty and stupid man\t-11.151737964908941\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, petty and stupid man) -> petty and stupid man (7376ms)\nWhat political party does Thabo Mbeki belong to?\tnational and international leader\t-11.15722165346667\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, national and international leader) -> national and international leader (7376ms)\nWhat political party does Thabo Mbeki belong to?\tafrican leader\t-11.159304160642808\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, african leader) -> african leader (7376ms)\nWhat political party does Thabo Mbeki belong to?\tSouth Africa n politician\t-11.192578587513406\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mvuyelwa Mbeki, Instance Of, South Africa n politician) -> South Africa n politician (7434ms)\nWhat political party does Thabo Mbeki belong to?\tadministrative, policy or technocratic leader\t-11.192578587513406\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, administrative, policy or technocratic leader) -> administrative, policy or technocratic leader (7376ms)\nWhat political party does Thabo Mbeki belong to?\tstrong supporter of Aristide\t-11.192865626946942\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, strong supporter of Aristide) -> strong supporter of Aristide (7434ms)\nWhat political party does Thabo Mbeki belong to?\tsenior african national congress figure\t-11.233706249551407\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, senior african national congress figure) -> senior african national congress figure (7434ms)\nWhat political party does Thabo Mbeki belong to?\ttenacious and courageous champion of the search\t-11.287873373590493\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Excellency President Thabo Mbeki, Instance Of, tenacious and courageous champion of the search) -> tenacious and courageous champion of the search (7434ms)\nWhat political party does Thabo Mbeki belong to?\tweak leader\t-11.293214706274345\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, weak leader) -> weak leader (7434ms)\nWhat political party does Thabo Mbeki belong to?\tethical, extremely hard working, frugal, highly intelligent and capitalistic leader\t-11.335520766629037\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, ethical, extremely hard working, frugal, highly intelligent and capitalistic leader) -> ethical, extremely hard working, frugal, highly intelligent and capitalistic leader (7434ms)\nWhat political party does Thabo Mbeki belong to?\tprominent leader\t-11.337708418271667\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, prominent leader) -> prominent leader (7434ms)\nWhat political party does Thabo Mbeki belong to?\treal leader\t-11.338797483224766\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, real leader) -> real leader (7434ms)\nWhat political party does Thabo Mbeki belong to?\tgood leader\t-11.339887239472576\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, good leader) -> good leader (7513ms)\nWhat political party does Thabo Mbeki belong to?\trevolutionary leader\t-11.349928363796497\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, revolutionary leader) -> revolutionary leader (7513ms)\nWhat political party does Thabo Mbeki belong to?\tworld leader\t-11.352414102689519\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, world leader) -> world leader (7513ms)\nWhat political party does Thabo Mbeki belong to?\tbetter leader\t-11.37400774110883\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, better leader) -> better leader (7513ms)\nWhat political party does Thabo Mbeki belong to?\tmilitant individual\t-11.406805324851627\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, militant individual) -> militant individual (7513ms)\nWhat political party does Thabo Mbeki belong to?\texceptional leader\t-11.413855781393607\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, exceptional leader) -> exceptional leader (7513ms)\nWhat political party does Thabo Mbeki belong to?\truthless hypocrite\t-11.416889130614802\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, ruthless hypocrite) -> ruthless hypocrite (7513ms)\nWhat political party does Thabo Mbeki belong to?\tcontemporary figure\t-11.42124513045951\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, contemporary figure) -> contemporary figure (7535ms)\nWhat political party does Thabo Mbeki belong to?\tinternational figure\t-11.423865687755375\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, international figure) -> international figure (7535ms)\nWhat political party does Thabo Mbeki belong to?\tcapable leader\t-11.427481525580843\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, capable leader) -> capable leader (7535ms)\nWhat political party does Thabo Mbeki belong to?\tgreat leader\t-11.43373632826242\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, great leader) -> great leader (7535ms)\nWhat political party does Thabo Mbeki belong to?\tclose friend\t-11.439316890739418\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, close friend) -> close friend (7535ms)\nWhat political party does Thabo Mbeki belong to?\tparent figure\t-11.475492307137845\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Mr. Thabo Mbeki, Instance Of, parent figure) -> parent figure (7535ms)\nWhat political party does Thabo Mbeki belong to?\tinfluential leader\t-11.475501099229344\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (South Africa's Thabo Mbeki, Instance Of, influential leader) -> influential leader (7535ms)\nWhat political party does Thabo Mbeki belong to?\tpublic figure\t-11.482548370643759\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, public figure) -> public figure (7535ms)\nWhat political party does Thabo Mbeki belong to?\tgood entry\t-11.48720745921359\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, good entry) -> good entry (7555ms)\nWhat political party does Thabo Mbeki belong to?\tthought leader\t-11.493118448186374\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Mr Thabo Mbeki, Instance Of, thought leader) -> thought leader (7555ms)\nWhat political party does Thabo Mbeki belong to?\turbane statesman\t-11.50890688136279\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Current president Thabo Mbeki, Instance Of, urbane statesman) -> urbane statesman (7555ms)\nWhat political party does Thabo Mbeki belong to?\tDemocrat\t-11.677441157043017\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, Democrat) -> Democrat (7555ms)\nWhat political party does Thabo Mbeki belong to?\tprestigious event\t-11.758868716020359\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki's Presidential Inauguration, Instance Of, prestigious event) -> prestigious event (7555ms)\nWhat political party does Thabo Mbeki belong to?\tleader par excellence\t-11.922757833870298\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, leader par excellence) -> leader par excellence (7555ms)\nWhat political party does Thabo Mbeki belong to?\tGiraldo\t-12.76212591894626\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: ($x, member, thabo mbekus) -> (Giraldo, was a member of, President Thabo Mbeki) -> Giraldo (7555ms)\nWhat political party does Thabo Mbeki belong to?\tleader\t-13.24529342758795\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, leader) -> leader (7617ms)\nWhat political party does Thabo Mbeki belong to?\tperson\t-13.301298499454319\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, person) -> person (7617ms)\nWhat political party does Thabo Mbeki belong to?\tdignitary\t-13.373974605554181\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, dignitary) -> dignitary (7617ms)\nWhat political party does Thabo Mbeki belong to?\tintellectual\t-13.445756434708034\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, intellectual) -> intellectual (7617ms)\nWhat political party does Thabo Mbeki belong to?\tluminary\t-13.466418140310905\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, luminary) -> luminary (7617ms)\nWhat political party does Thabo Mbeki belong to?\tpresident\t-13.549885474476577\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, president) -> president (7652ms)\nWhat political party does Thabo Mbeki belong to?\tdictator\t-13.551631380496744\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, dictator) -> dictator (7652ms)\nWhat political party does Thabo Mbeki belong to?\tindividual\t-13.557237658484688\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, individual) -> individual (7652ms)\nWhat political party does Thabo Mbeki belong to?\tidiot\t-13.60361136211802\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, idiot) -> idiot (7652ms)\nWhat political party does Thabo Mbeki belong to?\tarea\t-13.627437008399703\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, area) -> area (7651ms)\nWhat political party does Thabo Mbeki belong to?\tpain\t-13.657892741247286\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Bloody Thabo Mbeki, Instance Of, pain) -> pain (7672ms)\nWhat political party does Thabo Mbeki belong to?\tshantytown\t-13.658363912523974\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki Village, Instance Of, shantytown) -> shantytown (7672ms)\nWhat political party does Thabo Mbeki belong to?\texile\t-13.681331306615716\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, exile) -> exile (7672ms)\nWhat political party does Thabo Mbeki belong to?\tmean\t-13.711656427139808\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki in 2000, Instance Of, mean) -> mean (7672ms)\nWhat political party does Thabo Mbeki belong to?\tguest\t-13.71963789525297\tWhat political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Former president Thabo Mbeki, Instance Of, guest) -> guest (7672ms)\nWhat is Jerry's last name?\tthe same party\t-12.298202070722894\tWhat is Jerry's last name? -> what be [ jerry ] s last name ? -> how many girl do jerry have ? -> $x: (jerry, girl, $x) -> (Jerry, meets a girl at, the same party) -> the same party (19929ms)\nWhat is Hong Kong's population?\t10 million\t-3.0463143223815905\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of over, 10 million) -> 10 million (4729ms)\nWhat is Hong Kong's population?\tBuddhists and Taoists\t-3.3661513653020023\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a huge population of, Buddhists and Taoists) -> Buddhists and Taoists (4729ms)\nWhat is Hong Kong's population?\tmigrant workers\t-3.4132326599835525\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a huge population of, migrant workers) -> migrant workers (4729ms)\nWhat is Hong Kong's population?\ta dense urban setting\t-3.733093464963627\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a large population in, a dense urban setting) -> a dense urban setting (4729ms)\nWhat is Hong Kong's population?\t7 million\t-3.7834664142295082\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (densely populated Hong Kong, has a population of, 7 million) -> 7 million (5514ms)\nWhat is Hong Kong's population?\tseven million\t-3.7959926652976774\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, seven million) -> seven million (5514ms)\nWhat is Hong Kong's population?\tmore than 7.2 million\t-3.8382866562273303\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has an population of, more than 7.2 million) -> more than 7.2 million (5513ms)\nWhat is Hong Kong's population?\t247,501\t-3.8517823284885173\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population density of, 247,501) -> 247,501 (5513ms)\nWhat is Hong Kong's population?\t6,600,000\t-3.8768680590193942\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,600,000) -> 6,600,000 (7187ms)\nWhat is Hong Kong's population?\t4.3 million\t-3.8792712090876766\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has an online population of, 4.3 million) -> 4.3 million (7187ms)\nWhat is Hong Kong's population?\t16,470 persons\t-3.8792712090876766\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population density of, 16,470 persons) -> 16,470 persons (7187ms)\nWhat is Hong Kong's population?\t6,571 people\t-3.8886213453901184\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a massive population density of, 6,571 people) -> 6,571 people (7187ms)\nWhat is Hong Kong's population?\t4.2 million\t-3.9030012040524027\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, 4.2 million) -> 4.2 million (7203ms)\nWhat is Hong Kong's population?\t6,708,389\t-3.930704379098734\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,708,389) -> 6,708,389 (7203ms)\nWhat is Hong Kong's population?\t6,900,000\t-3.9333569910043185\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,900,000) -> 6,900,000 (7203ms)\nWhat is Hong Kong's population?\t5,674,114\t-3.948323749802589\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, 5,674,114) -> 5,674,114 (7203ms)\nWhat is Hong Kong's population?\t6.7 million\t-3.958705685153616\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6.7 million) -> 6.7 million (7728ms)\nWhat is Hong Kong's population?\tsix million\t-3.9924981020327692\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of approximately, six million) -> six million (7728ms)\nWhat is Hong Kong's population?\t6.80 million\t-3.9933327304933934\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a total population of, 6.80 million) -> 6.80 million (7747ms)\nWhat is Hong Kong's population?\t600,000\t-4.002915584933689\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of about, 600,000) -> 600,000 (7747ms)\nWhat is Hong Kong's population?\t7.3 million\t-4.005632712264235\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 7.3 million) -> 7.3 million (7747ms)\nWhat is Hong Kong's population?\t7 million people\t-4.006595684616727\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 7 million people) -> 7 million people (7748ms)\nWhat is Hong Kong's population?\t6.9 million people\t-4.018909884211708\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6.9 million people) -> 6.9 million people (7763ms)\nWhat is Hong Kong's population?\t6.78 million\t-4.030213851332105\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a total population of, 6.78 million) -> 6.78 million (7763ms)\nWhat is Hong Kong's population?\t5.6 million\t-4.034746664289231\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 5.6 million) -> 5.6 million (7763ms)\nWhat is Hong Kong's population?\t6 million people\t-4.047760720698213\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6 million people) -> 6 million people (7780ms)\nWhat is Hong Kong's population?\t6.9 million\t-4.055147783153183\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6.9 million) -> 6.9 million (7780ms)\nWhat is Hong Kong's population?\t6,855,125 people\t-4.055147783153183\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,855,125 people) -> 6,855,125 people (7780ms)\nWhat is Hong Kong's population?\t6,970,000\t-4.067526550875419\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of about, 6,970,000) -> 6,970,000 (7780ms)\nWhat is Hong Kong's population?\t524 200\t-4.0783508392790235\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 524 200) -> 524 200 (7797ms)\nWhat is Hong Kong's population?\t324.200\t-4.133608708758823\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 324.200) -> 324.200 (7798ms)\nWhat is Hong Kong's population?\tpressing issue\t-4.140344249517652\tWhat is Hong Kong's population? -> $x: (Hong Kong's population, instance of, $x) -> (Hong Kong's population decline, Instance Of, pressing issue) -> pressing issue (7798ms)\nWhat is Hong Kong's population?\t517 560\t-4.154029020061056\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 517 560) -> 517 560 (7798ms)\nWhat is Hong Kong's population?\tChina\t-4.315190471670769\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (The Hong Kong SAR, has a small population compared to, China) -> China (7909ms)\nWhat is Hong Kong's population?\tfive\t-6.167012591177029\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, five) -> five (8017ms)\nWhat is Hong Kong's population?\tbisexuals\t-6.27259058373416\tWhat is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has the world 's largest population of, bisexuals) -> bisexuals (8018ms)\nWhat is Hong Kong's population?\tpriority\t-6.587573709789652\tWhat is Hong Kong's population? -> $x: (Hong Kong's population, instance of, $x) -> (Hong Kong's high net worth population, Instance Of, priority) -> priority (8200ms)\nWhat is Hong Kong's population?\tBritish Hong Kong\t-8.667684719445695\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, British Hong Kong) -> British Hong Kong (14666ms)\nWhat is Hong Kong's population?\tpearl-river\t-9.357771466839608\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a city that lies on the river, pearl-river) -> pearl-river (12627ms)\nWhat is Hong Kong's population?\tNEW\t-9.470626308374433\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a proxy for, NEW) -> NEW (12627ms)\nWhat is Hong Kong's population?\tTV show\t-9.645305984172575\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a, TV show) -> TV show (12627ms)\nWhat is Hong Kong's population?\tSouthern China\t-9.665394305088327\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is a territory in, Southern China) -> Southern China (12628ms)\nWhat is Hong Kong's population?\tCHina\t-9.740600770249662\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a proxy for, CHina) -> CHina (12628ms)\nWhat is Hong Kong's population?\tAsian person\t-9.848516491286768\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is an, Asian person) -> Asian person (12628ms)\nWhat is Hong Kong's population?\tUnited Kingdom\t-9.924907076329044\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, United Kingdom) -> United Kingdom (14666ms)\nWhat is Hong Kong's population?\tChristopher Maltby\t-9.924907076329044\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Christopher Maltby) -> Christopher Maltby (14666ms)\nWhat is Hong Kong's population?\tTakashi Sakai\t-9.924907076329044\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Takashi Sakai) -> Takashi Sakai (14666ms)\nWhat is Hong Kong's population?\tthe Executive Council\t-9.962249470918461\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> (Hong Kong, is the President of, the Executive Council) -> the Executive Council (10132ms)\nWhat is Hong Kong's population?\tEmpire of Japan\t-10.009182888076582\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Empire of Japan) -> Empire of Japan (14666ms)\nWhat is Hong Kong's population?\tMark Aitchison Young\t-10.011498474257646\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Mark Aitchison Young) -> Mark Aitchison Young (14666ms)\nWhat is Hong Kong's population?\ta place\t-10.057824931190206\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hotels Hong Kong Hong Kong, is, a place) -> a place (12741ms)\nWhat is Hong Kong's population?\ta doubt\t-10.092244054324075\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is without, a doubt) -> a doubt (12741ms)\nWhat is Hong Kong's population?\thong kong\t-10.097769686703511\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a location located within, hong kong) -> hong kong (12741ms)\nWhat is Hong Kong's population?\ta never-ending commercial paradise\t-10.104875135928374\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, a never-ending commercial paradise) -> a never-ending commercial paradise (12741ms)\nWhat is Hong Kong's population?\tAsia\t-10.114370525529068\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is one of, Asia) -> Asia (12741ms)\nWhat is Hong Kong's population?\ta major tourist attraction\t-10.202201473031334\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, a major tourist attraction) -> a major tourist attraction (12889ms)\nWhat is Hong Kong's population?\ta Special Administrative Region\t-10.263703059849515\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, a Special Administrative Region) -> a Special Administrative Region (12889ms)\nWhat is Hong Kong's population?\ta British dependency\t-10.264030743515262\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, has been, a British dependency) -> a British dependency (12890ms)\nWhat is Hong Kong's population?\tKowloon\t-10.372262028584716\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is made up of, Kowloon) -> Kowloon (12890ms)\nWhat is Hong Kong's population?\tan international city\t-10.375172713487439\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, an international city) -> an international city (12889ms)\nWhat is Hong Kong's population?\tgrowth mode\t-10.470001835396683\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (HONG KONG*** Hong Kong, is in, growth mode) -> growth mode (12919ms)\nWhat is Hong Kong's population?\tthe Far East\t-10.484419575432893\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is located in, the Far East) -> the Far East (12919ms)\nWhat is Hong Kong's population?\tTaiwan\t-10.51028758255226\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a location located within, Taiwan) -> Taiwan (12919ms)\nWhat is Hong Kong's population?\tCountries\t-10.63023906153041\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a country located in the geopolitical location, Countries) -> Countries (12919ms)\nWhat is Hong Kong's population?\tEastern Asia\t-10.646838324003594\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is located in, Eastern Asia) -> Eastern Asia (12919ms)\nWhat is Hong Kong's population?\thongkongs population\t-10.662644612757894\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be population of hong kong ? -> $x: ($x, be population of, hong kong) -> (hongkongs population, was the population of, hong kong) -> hongkongs population (10727ms)\nWhat is Hong Kong's population?\tCanada\t-10.668414380153466\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Canada) -> Canada (16249ms)\nWhat is Hong Kong's population?\tsleek skyscrapers\t-10.707790385775347\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is home to, sleek skyscrapers) -> sleek skyscrapers (12919ms)\nWhat is Hong Kong's population?\ta popular place\t-10.7154184975818\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, has traditionally been, a popular place) -> a popular place (13044ms)\nWhat is Hong Kong's population?\t852\t-10.847122795339468\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, Calling Code, 852) -> 852 (16250ms)\nWhat is Hong Kong's population?\tthe Consortium\t-10.90081270238112\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> (Hong Kong, was unanimously elected President of, the Consortium) -> the Consortium (10132ms)\nWhat is Hong Kong's population?\tHKD\t-10.9882019590087\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, is given in, HKD) -> HKD (16248ms)\nWhat is Hong Kong's population?\tChinese\t-11.055887047484006\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is an eclectic mix of, Chinese) -> Chinese (13043ms)\nWhat is Hong Kong's population?\tAsia-Pacific\t-11.058595974444177\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (Asia-Pacific, was appointed, Hong Kong) -> Asia-Pacific (17238ms)\nWhat is Hong Kong's population?\tgreat fun\t-11.146209509463123\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, great fun) -> great fun (13043ms)\nWhat is Hong Kong's population?\tout\t-11.16701116602286\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, out) -> out (13074ms)\nWhat is Hong Kong's population?\tSMS\t-11.169859413124028\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, gives, SMS) -> SMS (16248ms)\nWhat is Hong Kong's population?\ta highly connected transport system\t-11.19896555272254\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, a highly connected transport system) -> a highly connected transport system (12193ms)\nWhat is Hong Kong's population?\tdue\t-11.210525077113052\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, due) -> due (13074ms)\nWhat is Hong Kong's population?\tnew\t-11.210525077113052\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, new) -> new (13075ms)\nWhat is Hong Kong's population?\tan efficient train network\t-11.211572780013793\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, an efficient train network) -> an efficient train network (12193ms)\nWhat is Hong Kong's population?\ta free market economy\t-11.3066739243943\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, a free market economy) -> a free market economy (12193ms)\nWhat is Hong Kong's population?\tHK Honey\t-11.324852209326572\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, HK Honey) -> HK Honey (16248ms)\nWhat is Hong Kong's population?\tso successful\t-11.324853232461848\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, so successful) -> so successful (13074ms)\nWhat is Hong Kong's population?\tProf.\t-11.330546665148283\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, will be given by, Prof.) -> Prof. (16248ms)\nWhat is Hong Kong's population?\tthe Basic Law\t-11.355946855154546\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, as called for in, the Basic Law) -> the Basic Law (16676ms)\nWhat is Hong Kong's population?\tthe place\t-11.361147122707381\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, the place) -> the place (13074ms)\nWhat is Hong Kong's population?\tHong Kongers\t-11.373835745512507\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, are called, Hong Kongers) -> Hong Kongers (16676ms)\nWhat is Hong Kong's population?\tGOD\t-11.38035911265148\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, GOD) -> GOD (16676ms)\nWhat is Hong Kong's population?\tan average connection speed\t-11.421783424425099\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has recorded, an average connection speed) -> an average connection speed (12193ms)\nWhat is Hong Kong's population?\tPapua New Guinea\t-11.460318967193786\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, beat, hong kong) -> (Papua New Guinea, beat, Hong Kong) -> Papua New Guinea (16676ms)\nWhat is Hong Kong's population?\tuniversal suffrage\t-11.463621324407768\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, push, $x) -> (Hong Kong, are pushing for, universal suffrage) -> universal suffrage (16676ms)\nWhat is Hong Kong's population?\tHong Kong Phooey\t-11.469137611528186\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, Hong Kong Phooey) -> Hong Kong Phooey (16676ms)\nWhat is Hong Kong's population?\tSouth Korea\t-11.484190205801907\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, beat, hong kong) -> (South Korea, beat, Hong Kong 92-71 today) -> South Korea (17238ms)\nWhat is Hong Kong's population?\ta British territory\t-11.49956198580343\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, a British territory) -> a British territory (13075ms)\nWhat is Hong Kong's population?\tHong Kong\t-11.50823627315965\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, beat, hong kong) -> (Hong Kong, beats, SARS HONG KONG) -> Hong Kong (17238ms)\nWhat is Hong Kong's population?\ta long coastline\t-11.537428988199569\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, a long coastline) -> a long coastline (13104ms)\nWhat is Hong Kong's population?\tthe Model Law\t-11.53978121223451\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (German and Hong Kong law, follow, the Model Law) -> the Model Law (17238ms)\nWhat is Hong Kong's population?\tan English colony\t-11.560140298952552\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, an English colony) -> an English colony (13104ms)\nWhat is Hong Kong's population?\t14 million inhabitants\t-11.579720569834194\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, 14 million inhabitants) -> 14 million inhabitants (13104ms)\nWhat is Hong Kong's population?\tone such example\t-11.580541417816505\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, one such example) -> one such example (13104ms)\nWhat is Hong Kong's population?\tdebenture-holders\t-11.588546940227717\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong International School, gives, debenture-holders) -> debenture-holders (17238ms)\nWhat is Hong Kong's population?\tan international financial center\t-11.640960260839462\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, an international financial center) -> an international financial center (13104ms)\nWhat is Hong Kong's population?\t?Aid\t-11.647671346250249\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong ?, called, ?Aid) -> ?Aid (17238ms)\nWhat is Hong Kong's population?\twhere East meets West\t-11.648977333935655\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, where East meets West) -> where East meets West (13104ms)\nWhat is Hong Kong's population?\t72 patients\t-11.660354532306773\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, followed, 72 patients) -> 72 patients (17475ms)\nWhat is Hong Kong's population?\tway behind\t-11.673236839468814\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, way behind) -> way behind (13151ms)\nWhat is Hong Kong's population?\tone of the places\t-11.67583620389359\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, one of the places) -> one of the places (13151ms)\nWhat is Hong Kong's population?\ta highly externally-oriented economy\t-11.67583620389359\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a highly externally-oriented economy) -> a highly externally-oriented economy (13150ms)\nWhat is Hong Kong's population?\ta pretty safe city\t-11.67583620389359\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a pretty safe city) -> a pretty safe city (13150ms)\nWhat is Hong Kong's population?\ta global financial center\t-11.67583620389359\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a global financial center) -> a global financial center (13150ms)\nWhat is Hong Kong's population?\ta paradigm of contradictions\t-11.684178081233089\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, a paradigm of contradictions) -> a paradigm of contradictions (13150ms)\nWhat is Hong Kong's population?\tFinal Appeal\t-11.699873945093907\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (Final Appeal, are appointed by, Hong Kong) -> Final Appeal (17475ms)\nWhat is Hong Kong's population?\t?Finding Neverland\t-11.709892815824887\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, ?Finding Neverland) -> ?Finding Neverland (17475ms)\nWhat is Hong Kong's population?\tLord Patten\t-11.724319386200547\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (Lord Patten, was appointed Governor of, Hong Kong) -> Lord Patten (17475ms)\nWhat is Hong Kong's population?\tsimply dazzling\t-11.739708524555216\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, simply dazzling) -> simply dazzling (13220ms)\nWhat is Hong Kong's population?\tvery international\t-11.740365624583736\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, very international) -> very international (13220ms)\nWhat is Hong Kong's population?\ta complete retail therapy course\t-11.745291927049909\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a complete retail therapy course) -> a complete retail therapy course (13220ms)\nWhat is Hong Kong's population?\ta territory in perpetual re-invention\t-11.753804665229389\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a territory in perpetual re-invention) -> a territory in perpetual re-invention (13220ms)\nWhat is Hong Kong's population?\tMasa\t-11.75956032926095\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, are calling on, Masa) -> Masa (17475ms)\nWhat is Hong Kong's population?\tINFERNAL AFFAIRS\t-11.763673085234087\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (a Hong Kong film, called, INFERNAL AFFAIRS) -> INFERNAL AFFAIRS (17475ms)\nWhat is Hong Kong's population?\tALB\t-11.765348806736732\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, ask, hong kong) -> (ALB, asks, Hong Kong lawyers) -> ALB (17552ms)\nWhat is Hong Kong's population?\tthe skyscraper capital\t-11.771570292612573\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, the skyscraper capital) -> the skyscraper capital (13220ms)\nWhat is Hong Kong's population?\tthe Hong Kong Museum\t-11.778230147139793\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, the Hong Kong Museum) -> the Hong Kong Museum (17552ms)\nWhat is Hong Kong's population?\tThe World Factbook\t-11.79202477314168\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be population of hong kong ? -> $x: ($x, be population of, hong kong) -> $x: ($x, population of, hong kong) -> (The World Factbook, estimates the population of, Hong Kong) -> The World Factbook (14451ms)\nWhat is Hong Kong's population?\tNorth Carolina\t-11.792546752887716\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (North Carolina, chose the University of, Hong Kong) -> North Carolina (17552ms)\nWhat is Hong Kong's population?\tVtech\t-11.795472979719403\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, Vtech) -> Vtech (17552ms)\nWhat is Hong Kong's population?\tthe Chinese American Museum\t-11.796533819779505\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (the Chinese American Museum, was appointed, Hong Kong) -> the Chinese American Museum (17552ms)\nWhat is Hong Kong's population?\ta powder keg ready to explode\t-11.81877838300922\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a powder keg ready to explode) -> a powder keg ready to explode (13220ms)\nWhat is Hong Kong's population?\ta make\t-11.82188944012629\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, was given, a make) -> a make (17552ms)\nWhat is Hong Kong's population?\tHung Fat Fashions\t-11.824082363665678\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, Hung Fat Fashions) -> Hung Fat Fashions (17585ms)\nWhat is Hong Kong's population?\ta good example\t-11.832895110855018\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has set, a good example) -> a good example (13248ms)\nWhat is Hong Kong's population?\tH shares\t-11.843561048540273\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, are called, H shares) -> H shares (17585ms)\nWhat is Hong Kong's population?\tIRC\t-11.847196666067074\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (IRC, choose, Hong Kong) -> IRC (17585ms)\nWhat is Hong Kong's population?\tMatthew Gearing\t-11.855007442052955\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, select, hong kong) -> (Matthew Gearing, is selected in, Hong Kong) -> Matthew Gearing (17585ms)\nWhat is Hong Kong's population?\tABM\t-11.861627084263127\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (a Hong Kong company, called, ABM) -> ABM (17585ms)\nWhat is Hong Kong's population?\ta very liveable city in many respects\t-11.87375614420754\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a very liveable city in many respects) -> a very liveable city in many respects (13248ms)\nWhat is Hong Kong's population?\temissions trading\t-11.874942596314682\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, gave a presentation about, emissions trading) -> emissions trading (17585ms)\nWhat is Hong Kong's population?\tMunich Airport\t-11.88098071756971\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, took second place followed by, Munich Airport) -> Munich Airport (17619ms)\nWhat is Hong Kong's population?\ta new lease\t-11.884686583923326\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, has been given, a new lease) -> a new lease (17619ms)\nWhat is Hong Kong's population?\ta mini-constitution\t-11.90083534504955\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, has been given, a mini-constitution) -> a mini-constitution (17619ms)\nWhat is Hong Kong's population?\tChinese parsley\t-11.9023921453674\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, Chinese parsley) -> Chinese parsley (17619ms)\nWhat is Hong Kong's population?\ta new experience\t-11.907024702559522\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, were given, a new experience) -> a new experience (17619ms)\nWhat is Hong Kong's population?\tFine Dining\t-11.910061715412018\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, Fine Dining) -> Fine Dining (17619ms)\nWhat is Hong Kong's population?\t?The Gateway\t-11.910496932738948\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, has been called, ?The Gateway) -> ?The Gateway (17654ms)\nWhat is Hong Kong's population?\tone of Asias  most popular travel spots\t-11.928897012616577\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, one of Asias  most popular travel spots) -> one of Asias  most popular travel spots (13248ms)\nWhat is Hong Kong's population?\ta Hong Kong resident\t-11.938130704911957\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (a Hong Kong resident, was chosen to administer, Hong Kong) -> a Hong Kong resident (17653ms)\nWhat is Hong Kong's population?\tLiao Hui\t-11.950936739897257\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (Liao Hui, was appointed director of, the Hong Kong) -> Liao Hui (17654ms)\nWhat is Hong Kong's population?\tAsia?s World City\t-11.952118788740693\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, Asia?s World City) -> Asia?s World City (17653ms)\nWhat is Hong Kong's population?\t?Asia?s World City\t-11.952118788740693\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, ?Asia?s World City) -> ?Asia?s World City (17654ms)\nWhat is Hong Kong's population?\tthe educational home\t-11.959477001168578\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, the educational home) -> the educational home (13248ms)\nWhat is Hong Kong's population?\tDiscovery Bay\t-11.96899133119449\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (a Hong Kong community, called, Discovery Bay) -> Discovery Bay (17654ms)\nWhat is Hong Kong's population?\tdue regard\t-11.976774410427092\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, will be given, due regard) -> due regard (17686ms)\nWhat is Hong Kong's population?\ta cha chaan teng\t-11.979166505521157\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, would be called, a cha chaan teng) -> a cha chaan teng (17686ms)\nWhat is Hong Kong's population?\tULI Asia-Pacific\t-11.982832539300125\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, select, hong kong) -> (ULI Asia-Pacific, has been selected as, Hong Kong) -> ULI Asia-Pacific (17686ms)\nWhat is Hong Kong's population?\tthe ' City\t-11.983001166270176\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, the ' City) -> the ' City (17686ms)\nWhat is Hong Kong's population?\tChina ?s leadership\t-11.984693763957784\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, was given a warning by, China ?s leadership) -> China ?s leadership (17686ms)\nWhat is Hong Kong's population?\t?Luxury brands\t-11.990988205157503\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (?Luxury brands, choose, Hong Kong) -> ?Luxury brands (17686ms)\nWhat is Hong Kong's population?\tan election\t-11.99168797413437\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, select, hong kong) -> (an election, will be held to select, Hong Kong) -> an election (17718ms)\nWhat is Hong Kong's population?\tEuropeans full access\t-12.006730818383442\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, gave, Europeans full access) -> Europeans full access (17718ms)\nWhat is Hong Kong's population?\tan examiner\t-12.011075770342714\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (an examiner, is appointed by, the Hong Kong court) -> an examiner (17718ms)\nWhat is Hong Kong's population?\ta special case\t-12.01163603173972\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a special case) -> a special case (13248ms)\nWhat is Hong Kong's population?\tthe Pearl River Delta\t-12.012403311245379\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, the Pearl River Delta) -> the Pearl River Delta (17719ms)\nWhat is Hong Kong's population?\tthe US dollar\t-12.015483190414027\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, pick, hong kong) -> (the US dollar, was picking up, 7.7501 Hong Kong dollars) -> the US dollar (17718ms)\nWhat is Hong Kong's population?\tSingapore\t-12.033893586703096\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, was followed by, Singapore) -> Singapore (17750ms)\nWhat is Hong Kong's population?\tgirl service provider\t-12.039565682577013\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, call, girl service provider) -> girl service provider (17750ms)\nWhat is Hong Kong's population?\tthe PROC\t-12.041517263270375\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, was given back to, the PROC) -> the PROC (17750ms)\nWhat is Hong Kong's population?\ta busy city\t-12.046203146457689\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a busy city) -> a busy city (13248ms)\nWhat is Hong Kong's population?\tDARKIE many years\t-12.059265770228743\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, was actually called, DARKIE many years) -> DARKIE many years (17750ms)\nWhat is Hong Kong's population?\tMrs. Palin\t-12.060080804056435\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (Mrs. Palin, chose, Hong Kong) -> Mrs. Palin (17750ms)\nWhat is Hong Kong's population?\tthe U.N. Sanctions Regulation\t-12.060969627605974\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, the U.N. Sanctions Regulation) -> the U.N. Sanctions Regulation (17750ms)\nWhat is Hong Kong's population?\t?the Eating Paradise?\t-12.065455180441008\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called as, ?the Eating Paradise?) -> ?the Eating Paradise? (17784ms)\nWhat is Hong Kong's population?\tSa Sa\t-12.065455180441008\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (Sa Sa, has been chosen one of, Hong Kong) -> Sa Sa (17784ms)\nWhat is Hong Kong's population?\tNo. 1 economy freedom\t-12.068393664674328\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, No. 1 economy freedom) -> No. 1 economy freedom (13276ms)\nWhat is Hong Kong's population?\tthe ?most thrilling city\t-12.070238864284592\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, has been called, the ?most thrilling city) -> the ?most thrilling city (17784ms)\nWhat is Hong Kong's population?\tBeijing\t-12.073911310862101\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, was first followed by, Beijing) -> Beijing (17784ms)\nWhat is Hong Kong's population?\tHTC\t-12.07989875488123\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (a Hong Kong firm, called, HTC) -> HTC (17784ms)\nWhat is Hong Kong's population?\tI?d\t-12.089433349628791\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, pick, hong kong) -> (I?d, picked, Hong Kong) -> I?d (17784ms)\nWhat is Hong Kong's population?\tacupuncture treatments\t-12.094035417415734\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, had been given, acupuncture treatments) -> acupuncture treatments (17816ms)\nWhat is Hong Kong's population?\tan ?international city ?\t-12.102134564469685\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, has been called, an ?international city ?) -> an ?international city ? (17816ms)\nWhat is Hong Kong's population?\tAbove Second\t-12.103129520540243\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, Above Second) -> Above Second (17816ms)\nWhat is Hong Kong's population?\tcity\t-12.105538103546301\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a, city) -> city (13275ms)\nWhat is Hong Kong's population?\tcountry\t-12.105538103546301\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a, country) -> country (13275ms)\nWhat is Hong Kong's population?\tBangkok\t-12.107804093299357\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, beat, hong kong) -> (Bangkok, beats, Hong Kong) -> Bangkok (17815ms)\nWhat is Hong Kong's population?\tNew York\t-12.110698078512403\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, followed by, New York) -> New York (17816ms)\nWhat is Hong Kong's population?\tfreedom of religion\t-12.117491940883667\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, freedom of religion) -> freedom of religion (13275ms)\nWhat is Hong Kong's population?\ta humid subtropical climate\t-12.121600228497437\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a humid subtropical climate) -> a humid subtropical climate (13275ms)\nWhat is Hong Kong's population?\tthe USA flyers\t-12.13918206393155\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, will give, the USA flyers) -> the USA flyers (17816ms)\nWhat is Hong Kong's population?\ta first mover advantage\t-12.147963433372087\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a first mover advantage) -> a first mover advantage (13275ms)\nWhat is Hong Kong's population?\ta comprehensive arbitration law\t-12.156476171551567\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a comprehensive arbitration law) -> a comprehensive arbitration law (13347ms)\nWhat is Hong Kong's population?\tone active international airport\t-12.156476171551567\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one active international airport) -> one active international airport (13347ms)\nWhat is Hong Kong's population?\ta high degree of autonomy\t-12.16856191157753\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a high degree of autonomy) -> a high degree of autonomy (13347ms)\nWhat is Hong Kong's population?\tthe transit point ?\t-12.172072244515723\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, has sometimes been, the transit point ?) -> the transit point ? (13347ms)\nWhat is Hong Kong's population?\tan established system of rights\t-12.188963030441482\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an established system of rights) -> an established system of rights (13347ms)\nWhat is Hong Kong's population?\ta staggering range of international restaurants\t-12.216451911040641\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a staggering range of international restaurants) -> a staggering range of international restaurants (13377ms)\nWhat is Hong Kong's population?\tthe south east coast\t-12.222044234542706\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (HONG KONG Hong Kong, is on, the south east coast) -> the south east coast (13376ms)\nWhat is Hong Kong's population?\thome to more than 7 million people\t-12.231437661934148\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, home to more than 7 million people) -> home to more than 7 million people (13376ms)\nWhat is Hong Kong's population?\ta salaries tax on all employment income\t-12.240013808697064\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong kong, has, a salaries tax on all employment income) -> a salaries tax on all employment income (13376ms)\nWhat is Hong Kong's population?\tthe south end\t-12.251585453830764\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is an island at, the south end) -> the south end (13376ms)\nWhat is Hong Kong's population?\tthe jurisdiction\t-12.30345318810423\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, was under, the jurisdiction) -> the jurisdiction (13406ms)\nWhat is Hong Kong's population?\tthe southern coast\t-12.308695608598363\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is situated on, the southern coast) -> the southern coast (13405ms)\nWhat is Hong Kong's population?\ta British colony for more than 150 years\t-12.31343740030112\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, a British colony for more than 150 years) -> a British colony for more than 150 years (13405ms)\nWhat is Hong Kong's population?\tthe China\t-12.424876554613762\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, the China) -> the China (13405ms)\nWhat is Hong Kong's population?\tyet\t-12.454903264077654\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, yet) -> yet (13405ms)\nWhat is Hong Kong's population?\tmore than 11,000 restaurants\t-12.549033632332304\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, more than 11,000 restaurants) -> more than 11,000 restaurants (13405ms)\nWhat is Hong Kong's population?\tasia\t-12.564995107846539\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a country located in the geopolitical location, asia) -> asia (13545ms)\nWhat is Hong Kong's population?\ta tropical climate\t-12.574288924901875\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a tropical climate) -> a tropical climate (13545ms)\nWhat is Hong Kong's population?\tmuch to offer\t-12.593738563183145\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, much to offer) -> much to offer (13545ms)\nWhat is Hong Kong's population?\ta competitive advantage\t-12.594690043765828\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a competitive advantage) -> a competitive advantage (13545ms)\nWhat is Hong Kong's population?\ta free market\t-12.594690043765828\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a free market) -> a free market (13546ms)\nWhat is Hong Kong's population?\ta fertility rate of 0.95 children per woman\t-12.652991580780034\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a fertility rate of 0.95 children per woman) -> a fertility rate of 0.95 children per woman (13545ms)\nWhat is Hong Kong's population?\ta problem\t-12.656356892523538\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a problem) -> a problem (13712ms)\nWhat is Hong Kong's population?\ta government\t-12.702460381482483\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a government) -> a government (13713ms)\nWhat is Hong Kong's population?\tso much to offer\t-12.702474679959302\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, so much to offer) -> so much to offer (13713ms)\nWhat is Hong Kong's population?\tone of the worlds\t-12.725423845131479\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one of the worlds) -> one of the worlds (13712ms)\nWhat is Hong Kong's population?\ta long way to go\t-12.737509585157444\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a long way to go) -> a long way to go (13712ms)\nWhat is Hong Kong's population?\ttwo official languages\t-12.74171667638166\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, two official languages) -> two official languages (13860ms)\nWhat is Hong Kong's population?\tany such prospect\t-12.74171667638166\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, any such prospect) -> any such prospect (13712ms)\nWhat is Hong Kong's population?\ta lot to offer\t-12.745824963995432\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a lot to offer) -> a lot to offer (13859ms)\nWhat is Hong Kong's population?\ttwo licensed terrestrial broadcasters\t-12.760299788185609\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, two licensed terrestrial broadcasters) -> two licensed terrestrial broadcasters (13859ms)\nWhat is Hong Kong's population?\ta strong services sector\t-12.760299788185609\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a strong services sector) -> a strong services sector (13860ms)\nWhat is Hong Kong's population?\ta lot of advantages\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a lot of advantages) -> a lot of advantages (14069ms)\nWhat is Hong Kong's population?\ta myriad of problems\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a myriad of problems) -> a myriad of problems (13860ms)\nWhat is Hong Kong's population?\ttwo broadcast television stations\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, two broadcast television stations) -> two broadcast television stations (14034ms)\nWhat is Hong Kong's population?\ta high market transparency\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a high market transparency) -> a high market transparency (14034ms)\nWhat is Hong Kong's population?\ta lot of land\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a lot of land) -> a lot of land (14069ms)\nWhat is Hong Kong's population?\ta population of close\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a population of close) -> a population of close (13859ms)\nWhat is Hong Kong's population?\ta very bright future\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a very bright future) -> a very bright future (14069ms)\nWhat is Hong Kong's population?\ta small domestic market\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a small domestic market) -> a small domestic market (14034ms)\nWhat is Hong Kong's population?\thot , humid summers\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, hot , humid summers) -> hot , humid summers (14069ms)\nWhat is Hong Kong's population?\ta very strong economy\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a very strong economy) -> a very strong economy (14034ms)\nWhat is Hong Kong's population?\ta low crime rate\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a low crime rate) -> a low crime rate (14034ms)\nWhat is Hong Kong's population?\ta relatively free economy\t-12.78070090704956\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a relatively free economy) -> a relatively free economy (14034ms)\nWhat is Hong Kong's population?\ta highly developed transportation system\t-12.804675027759997\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a highly developed transportation system) -> a highly developed transportation system (14071ms)\nWhat is Hong Kong's population?\tworld-class hospitals providing outstanding care\t-12.813187765939476\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, world-class hospitals providing outstanding care) -> world-class hospitals providing outstanding care (14111ms)\nWhat is Hong Kong's population?\ta unitary system of government\t-12.813187765939476\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a unitary system of government) -> a unitary system of government (14111ms)\nWhat is Hong Kong's population?\tan excellent public transportation systems\t-12.813187765939476\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an excellent public transportation systems) -> an excellent public transportation systems (14111ms)\nWhat is Hong Kong's population?\tan impressive record of openness\t-12.813187765939476\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an impressive record of openness) -> an impressive record of openness (14111ms)\nWhat is Hong Kong's population?\tan edge in its proximity to China\t-12.827779834433539\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an edge in its proximity to China) -> an edge in its proximity to China (14110ms)\nWhat is Hong Kong's population?\ta subtropical climate with distinct seasons\t-12.840676646538636\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a subtropical climate with distinct seasons) -> a subtropical climate with distinct seasons (14110ms)\nWhat is Hong Kong's population?\tcontradictions\t-12.855307213165158\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is a paradigm of, contradictions) -> contradictions (14195ms)\nWhat is Hong Kong's population?\tone of the freest press in the world\t-12.864238544195057\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one of the freest press in the world) -> one of the freest press in the world (14195ms)\nWhat is Hong Kong's population?\tone of the world 's most liberal economies\t-12.86425773663334\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one of the world 's most liberal economies) -> one of the world 's most liberal economies (14195ms)\nWhat is Hong Kong's population?\tone of the lowest fertility rates in the world\t-12.88465885549729\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one of the lowest fertility rates in the world) -> one of the lowest fertility rates in the world (14196ms)\nWhat is Hong Kong's population?\tthe most active market\t-12.885613657377721\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, the most active market) -> the most active market (14195ms)\nWhat is Hong Kong's population?\tlow taxes\t-12.975596676502565\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, low taxes) -> low taxes (14195ms)\nWhat is Hong Kong's population?\ttravelers\t-12.994937545868169\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, has long been a favorite of, travelers) -> travelers (14228ms)\nWhat is Hong Kong's population?\t1,755 cases\t-13.086626744123855\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, had, 1,755 cases) -> 1,755 cases (14228ms)\nWhat is Hong Kong's population?\tit especially rough\t-13.092832596351231\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, had, it especially rough) -> it especially rough (14228ms)\nWhat is Hong Kong's population?\t166,960 public servants\t-13.134274137162398\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, 166,960 public servants) -> 166,960 public servants (14228ms)\nWhat is Hong Kong's population?\ta subtropical climate\t-13.137935347250746\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a subtropical climate) -> a subtropical climate (14228ms)\nWhat is Hong Kong's population?\twealthy\t-13.150294296781102\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, wealthy) -> wealthy (14262ms)\nWhat is Hong Kong's population?\tintegral\t-13.15886520690638\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, integral) -> integral (14261ms)\nWhat is Hong Kong's population?\tone operational 3G network\t-13.174052538711749\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one operational 3G network) -> one operational 3G network (14260ms)\nWhat is Hong Kong's population?\tthe best Chinese food you?ll\t-13.177351291538557\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has some of, the best Chinese food you?ll) -> the best Chinese food you?ll (14261ms)\nWhat is Hong Kong's population?\ta population of 7 million\t-13.185344107856261\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a population of 7 million) -> a population of 7 million (14260ms)\nWhat is Hong Kong's population?\tan unemployment rate of 5.30 %\t-13.187130618360428\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an unemployment rate of 5.30 %) -> an unemployment rate of 5.30 % (14260ms)\nWhat is Hong Kong's population?\ta free press\t-13.190000922220388\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a free press) -> a free press (14383ms)\nWhat is Hong Kong's population?\ta population of 7 million people\t-13.198358164265244\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a population of 7 million people) -> a population of 7 million people (14383ms)\nWhat is Hong Kong's population?\ta competitive edge\t-13.198513660399868\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a competitive edge) -> a competitive edge (14383ms)\nWhat is Hong Kong's population?\ta long history\t-13.198513660399868\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a long history) -> a long history (14383ms)\nWhat is Hong Kong's population?\ta population of 7.3 million\t-13.205745226720213\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a population of 7.3 million) -> a population of 7.3 million (14383ms)\nWhat is Hong Kong's population?\ta bright future\t-13.207378405022846\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a bright future) -> a bright future (14383ms)\nWhat is Hong Kong's population?\ta maximum average tax rate of 16 percent\t-13.277216316278027\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a maximum average tax rate of 16 percent) -> a maximum average tax rate of 16 percent (14416ms)\nWhat is Hong Kong's population?\tthe place to do it\t-13.510441985612633\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, the place to do it) -> the place to do it (14416ms)\nWhat is Hong Kong's population?\tthe preferred choice for enterprises\t-13.587806854211513\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, the preferred choice for enterprises) -> the preferred choice for enterprises (14416ms)\nWhat is Hong Kong's population?\tthe Mainland\t-13.732149837230562\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the Mainland) -> the Mainland (14417ms)\nWhat is Hong Kong's population?\tthe first free wine port among major economies\t-13.734481009638555\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, the first free wine port among major economies) -> the first free wine port among major economies (14416ms)\nWhat is Hong Kong's population?\tbusy\t-13.788993856469272\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, busy) -> busy (14451ms)\nWhat is Hong Kong's population?\tsuccessful\t-13.809394975333225\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, successful) -> successful (14451ms)\nWhat is Hong Kong's population?\tflat\t-13.809394975333225\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, flat) -> flat (14451ms)\nWhat is Hong Kong's population?\tcheap\t-13.809394975333225\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, cheap) -> cheap (14487ms)\nWhat is Hong Kong's population?\teasy\t-13.809394975333225\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, easy) -> easy (14451ms)\nWhat is Hong Kong's population?\tsubstantially\t-13.809394975333225\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, substantially) -> substantially (14487ms)\nWhat is Hong Kong's population?\tthe world 's 11th largest trading economy\t-14.06543985091627\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, the world 's 11th largest trading economy) -> the world 's 11th largest trading economy (14487ms)\nWhat is Hong Kong's population?\tthe edge\t-14.122340922646416\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the edge) -> the edge (14487ms)\nWhat is Hong Kong's population?\tthe sub-tropical climate\t-14.52961537640484\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the sub-tropical climate) -> the sub-tropical climate (14487ms)\nWhat is Hong Kong's population?\tthe best food\t-14.575718865363784\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the best food) -> the best food (14526ms)\nWhat is Hong Kong's population?\tthe same problem\t-14.575718865363784\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the same problem) -> the same problem (14526ms)\nWhat is Hong Kong's population?\tthe highest population density in the world\t-14.666166097341279\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the highest population density in the world) -> the highest population density in the world (14526ms)\nWhat is Hong Kong's population?\tthe highest rate of East Asian immigration\t-14.686704358936206\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, had, the highest rate of East Asian immigration) -> the highest rate of East Asian immigration (14528ms)\nWhat is Hong Kong's population?\teight\t-15.116115120674674\tWhat is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, eight) -> eight (14526ms)\nWho is the Greek God of the Sea?\tPomona Poseidon Poseidon\t-0.18047137592024765\tWho is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> (Pomona Poseidon Poseidon, was the Greek god of, the sea) -> Pomona Poseidon Poseidon (2566ms)\nWho is the Greek God of the Sea?\tNeptune\t-0.3805383817533097\tWho is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> (Neptune, was the Greek god of, the sea) -> Neptune (2566ms)\nWho is the Greek God of the Sea?\tPoseidon\t-0.614450720859155\tWho is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> (Poseidon, is the Greek god of, the sea) -> Poseidon (2566ms)\nWho is the Greek God of the Sea?\tKellan Lutz\t-1.905491176801383\tWho is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> $x: ($x, greek god of, sea) -> (Kellan Lutz, plays the Greek god of, the sea) -> Kellan Lutz (3960ms)\nWho is the Greek God of the Sea?\tOkeanos\t-5.33197342873326\tWho is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> $x: ($x, greek god of, sea) -> (Okeanos, [is] a Greek god of, sea and water) -> Okeanos (4894ms)\nWho is the Greek God of the Sea?\tProteus\t-5.366027520221086\tWho is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> $x: ($x, greek god of, sea) -> (Proteus, [is] a Greek god of, the sea) -> Proteus (4894ms)\nWho is the Greek God of the Sea?\tNeptune Neptune\t-6.787487962520158\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Neptune Neptune, is the God of, the Seas) -> Neptune Neptune (5918ms)\nWho is the Greek God of the Sea?\tPoseidon Poseidon\t-6.839138177145009\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Poseidon Poseidon, is god of, the sea) -> Poseidon Poseidon (5918ms)\nWho is the Greek God of the Sea?\t?Nereus\t-7.258154385665298\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (?Nereus, was a god of, the sea) -> ?Nereus (5918ms)\nWho is the Greek God of the Sea?\tHea\t-7.49525399871042\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Hea, was the god of, the sea) -> Hea (5918ms)\nWho is the Greek God of the Sea?\tTyr\t-7.497022424214908\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Tyr, is god of, the sea) -> Tyr (5918ms)\nWho is the Greek God of the Sea?\t? Tangaroa?\t-7.527899284478476\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (? Tangaroa?, is the God of, the sea) -> ? Tangaroa? (6179ms)\nWho is the Greek God of the Sea?\tZeus\t-7.555759177486731\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Zeus, is the god of, the sea) -> Zeus (6179ms)\nWho is the Greek God of the Sea?\tLyr\t-7.621694287838374\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Lyr, was the god of, the sea) -> Lyr (6179ms)\nWho is the Greek God of the Sea?\tShells from the Greek seas\t-7.623594729969654\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Shells from the Greek seas, Edition Of, Shells from the Greek seas) -> Shells from the Greek seas (5238ms)\nWho is the Greek God of the Sea?\tGreek and Roman mythology\t-7.683021996544278\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Greek and Roman mythology, is the god of, the sea) -> Greek and Roman mythology (6179ms)\nWho is the Greek God of the Sea?\tMythology Neptune\t-7.788789013223673\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Mythology Neptune, was the ancient Roman god of, the sea) -> Mythology Neptune (6179ms)\nWho is the Greek God of the Sea?\tGod\t-7.858118605264256\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (God, is the God of, the wind , land and sea) -> God (6362ms)\nWho is the Greek God of the Sea?\tPoseidon Poseidon Poseidon\t-7.9200768427628985\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Poseidon Poseidon Poseidon, was the god of, the sea) -> Poseidon Poseidon Poseidon (6362ms)\nWho is the Greek God of the Sea?\tAEGIR Aegir\t-7.95964080594113\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (AEGIR Aegir, is the god of, the sea) -> AEGIR Aegir (6362ms)\nWho is the Greek God of the Sea?\tMinos\t-7.974058962966281\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> (Minos, was lord of, the Greek Sea) -> Minos (6514ms)\nWho is the Greek God of the Sea?\tNEPTUNE Neptune\t-8.005744294900076\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (NEPTUNE Neptune, is the god of, the sea) -> NEPTUNE Neptune (6515ms)\nWho is the Greek God of the Sea?\tAegir Aegir\t-8.063350638677289\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Aegir Aegir, is the god of, the sea) -> Aegir Aegir (6514ms)\nWho is the Greek God of the Sea?\tGREEKS AT SEA - PIRAEUS\t-8.078410754428475\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (GREEKS AT SEA - PIRAEUS, Edition Of, GREEKS AT SEA - PIRAEUS) -> GREEKS AT SEA - PIRAEUS (6514ms)\nWho is the Greek God of the Sea?\tThe Greeks and the Black Sea : from the Bronze Age to the early twentieth century\t-8.116027117353642\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (The Greeks and the Black Sea : from the Bronze Age to the early twentieth century, Edition Of, The Greeks and the Black Sea) -> The Greeks and the Black Sea : from the Bronze Age to the early twentieth century (6640ms)\nWho is the Greek God of the Sea?\tEuripides Hippolytos\t-8.17870518695875\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Euripides Hippolytos, Instance Of, gripping tale of love, loss, jealousy and revenge featuring Aphrodite-the Greek goddess of love, and Poseidon, god of the sea) -> Euripides Hippolytos (6640ms)\nWho is the Greek God of the Sea?\tYamm\t-8.189774636928632\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Yamm, is the god of, the sea) -> Yamm (6640ms)\nWho is the Greek God of the Sea?\tApostolos Valerianos\t-8.19878494930344\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Apostolos Valerianos, Instance Of, Greek sea captain) -> Apostolos Valerianos (6715ms)\nWho is the Greek God of the Sea?\tRoman mythology Neptune\t-8.21496497605214\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Roman mythology Neptune, was the god of, the sea) -> Roman mythology Neptune (6716ms)\nWho is the Greek God of the Sea?\tAgwe\t-8.226910992797638\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Agwe, is the god of, the sea) -> Agwe (6715ms)\nWho is the Greek God of the Sea?\tNikolaos Sifounakis\t-8.229483670304948\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Nikolaos Sifounakis, Instance Of, Greek politician, former Minister of the Aegean Sea and currently Member of the European Parliament) -> Nikolaos Sifounakis (6715ms)\nWho is the Greek God of the Sea?\ta magician\t-8.235492140989582\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (a magician, is called god of, the sea) -> a magician (6715ms)\nWho is the Greek God of the Sea?\tEa or Hea\t-8.27495337239613\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Ea or Hea, was the god of, the sea) -> Ea or Hea (6744ms)\nWho is the Greek God of the Sea?\tPontus kingdom Poseidon Poseidon\t-8.330165866186954\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Pontus kingdom Poseidon Poseidon, was the god of, the Sea) -> Pontus kingdom Poseidon Poseidon (6744ms)\nWho is the Greek God of the Sea?\tLlyr\t-8.330392370975893\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Llyr, was a god of, the sea) -> Llyr (6744ms)\nWho is the Greek God of the Sea?\tGerasimos Andreas\t-8.345780461249745\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Gerasimos Andreas, Instance Of, sea captain of a Greek tanker) -> Gerasimos Andreas (6744ms)\nWho is the Greek God of the Sea?\tGreek mythology Poseidon\t-8.362325680999778\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Greek mythology Poseidon, is the god of, the sea and earthquakes) -> Greek mythology Poseidon (6772ms)\nWho is the Greek God of the Sea?\tAgios Georgios\t-8.386621083854212\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Agios Georgios, Instance Of, authentic, quiet Greek sea side village) -> Agios Georgios (6772ms)\nWho is the Greek God of the Sea?\tThe Greeks and the Sea (Hellenism : Ancient, Mediaeval, Modern, No18)\t-8.407897138741696\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (The Greeks and the Sea (Hellenism : Ancient, Mediaeval, Modern, No18), Edition Of, The Greeks and the Sea) -> The Greeks and the Sea (Hellenism : Ancient, Mediaeval, Modern, No18) (6772ms)\nWho is the Greek God of the Sea?\tNorse mythology Aegir\t-8.422976998579907\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Norse mythology Aegir, was a god of, the Sea) -> Norse mythology Aegir (6800ms)\nWho is the Greek God of the Sea?\tSize Poseidon\t-8.435722274814097\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Size Poseidon, is the god of, the sea) -> Size Poseidon (6800ms)\nWho is the Greek God of the Sea?\tMannan mac Lyr\t-8.499017977715521\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Mannan mac Lyr, was a God of, the sea) -> Mannan mac Lyr (6800ms)\nWho is the Greek God of the Sea?\tAMPHITRITE\t-8.514607060161943\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (AMPHITRITE, was the goddess queen of, the sea) -> AMPHITRITE (6800ms)\nWho is the Greek God of the Sea?\tHAON\t-8.645120008236717\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (HAON, was the god of, the great sea) -> HAON (6859ms)\nWho is the Greek God of the Sea?\tTangaroa\t-8.667991825884245\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Tangaroa, is God of, the Sea) -> Tangaroa (6859ms)\nWho is the Greek God of the Sea?\tMazu\t-8.71005375588376\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Mazu, is the Goddess of, the Sea) -> Mazu (6887ms)\nWho is the Greek God of the Sea?\tVesta\t-8.763179046671173\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Vesta, was the god of, the sea) -> Vesta (6887ms)\nWho is the Greek God of the Sea?\tKanaloa\t-8.78623277744071\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Kanaloa, was the god of, the sea) -> Kanaloa (6887ms)\nWho is the Greek God of the Sea?\tEastern Sedna\t-8.862790509179801\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Eastern Sedna, is the mythical Inuit Goddess of, the sea) -> Eastern Sedna (6938ms)\nWho is the Greek God of the Sea?\tVisited Mythology Neptune\t-8.874666169239402\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Visited Mythology Neptune, was the ancient Roman god of, the sea) -> Visited Mythology Neptune (6938ms)\nWho is the Greek God of the Sea?\tCos\t-8.903374202665823\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Cos, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Cos (6938ms)\nWho is the Greek God of the Sea?\tNeptune / Poseidon\t-8.92475044083075\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Neptune / Poseidon, was mythologically the God of, the Seas) -> Neptune / Poseidon (6938ms)\nWho is the Greek God of the Sea?\tMa-cho\t-9.056488011294043\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Ma-cho, is the goddess of, the sea) -> Ma-cho (7118ms)\nWho is the Greek God of the Sea?\twife\t-9.073671468206197\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (wife, is the goddess of, the sea) -> wife (7119ms)\nWho is the Greek God of the Sea?\tFinnish mythology Vellamo\t-9.099302336531107\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Finnish mythology Vellamo, is the goddess of, the sea) -> Finnish mythology Vellamo (7171ms)\nWho is the Greek God of the Sea?\tBilly Joe Leck\t-9.10304766897683\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Billy Joe Leck, Instance Of, legend of the Greek sea) -> Billy Joe Leck (7171ms)\nWho is the Greek God of the Sea?\tthe Greek Poseidon\t-9.12588475661767\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (the Greek Poseidon, [is] the god of, the sea) -> the Greek Poseidon (7171ms)\nWho is the Greek God of the Sea?\trel=shortlink Matzu\t-9.145581429690228\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (rel=shortlink Matzu, is the goddess of, the sea and she?s) -> rel=shortlink Matzu (7171ms)\nWho is the Greek God of the Sea?\tIemanj ?\t-9.176292122897369\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Iemanj ?, is the vain goddess of, the sea) -> Iemanj ? (7171ms)\nWho is the Greek God of the Sea?\tTriton\t-9.227465132456851\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Triton, is the god of, the sea) -> Triton (7196ms)\nWho is the Greek God of the Sea?\tIonian Sea\t-9.234994295852795\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Ionian Sea, Instance Of, greek sea) -> Ionian Sea (7196ms)\nWho is the Greek God of the Sea?\tjustice\t-9.266191702612462\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (justice, was also the god of, the sea) -> justice (7196ms)\nWho is the Greek God of the Sea?\tDylan\t-9.305604731882251\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Dylan, was the God of, the Sea) -> Dylan (7222ms)\nWho is the Greek God of the Sea?\tworshiped Poseidon\t-9.309752274913897\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (worshiped Poseidon, [is] god of, the sea) -> worshiped Poseidon (7222ms)\nWho is the Greek God of the Sea?\tGreek mythology\t-9.326041756531401\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Greek mythology, [is] god of, the sea) -> Greek mythology (7247ms)\nWho is the Greek God of the Sea?\tLir\t-9.330278509254592\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Lir, [is] the Celtic god of, the sea) -> Lir (7247ms)\nWho is the Greek God of the Sea?\t?Dt 4:19.20 Yam\t-9.341871829714005\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (?Dt 4:19.20 Yam, was the Canaanite god of, the sea) -> ?Dt 4:19.20 Yam (7247ms)\nWho is the Greek God of the Sea?\tNjord\t-9.348563674327517\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Njord, was the god of, the sea) -> Njord (7247ms)\nWho is the Greek God of the Sea?\tAegir\t-9.354688463710232\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Aegir, was the god of, the sea) -> Aegir (7247ms)\nWho is the Greek God of the Sea?\tTriton's namesake\t-9.377936474968426\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Triton's namesake, Instance Of, Greek sea demigod) -> Triton's namesake (7274ms)\nWho is the Greek God of the Sea?\tthe Greek god Poseidon\t-9.388197781061304\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (the Greek god Poseidon, [is] the god of, the sea) -> the Greek god Poseidon (7274ms)\nWho is the Greek God of the Sea?\tNjordur\t-9.395426133310881\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Njordur, is the god of, the sea) -> Njordur (7274ms)\nWho is the Greek God of the Sea?\tAthena and Poseidon\t-9.407212851583646\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Athena and Poseidon, [is] the god of, the sea) -> Athena and Poseidon (7380ms)\nWho is the Greek God of the Sea?\tPOSEIDON\t-9.411970309893334\tWho is the Greek God of the Sea? -> who be the greek [ god of the sea ] ? -> what be great god of the sea ? -> $x: ($x, be great god of, the sea) -> (POSEIDON, was the great Olympian god of, the sea) -> POSEIDON (7380ms)\nWho is the Greek God of the Sea?\tArki\t-9.413518300133342\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Arki, Instance Of, small Greek island of the East-Aegean Sea) -> Arki (7380ms)\nWho is the Greek God of the Sea?\tNereus\t-9.427376916281839\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Nereus, was the god of, the Aegean sea) -> Nereus (7380ms)\nWho is the Greek God of the Sea?\tSusanoo\t-9.565629847420027\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Susanoo, is the God of, the Sea and Storms) -> Susanoo (7581ms)\nWho is the Greek God of the Sea?\tUlysse Nardin\t-9.58256411563212\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Ulysse Nardin, has been the king of, the seas) -> Ulysse Nardin (10198ms)\nWho is the Greek God of the Sea?\tTeos\t-9.617347205219636\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Teos, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Teos (7606ms)\nWho is the Greek God of the Sea?\tRichard Lewis\t-9.787925515397172\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (Richard Lewis, is the author of, THE KILLING SEA) -> Richard Lewis (10852ms)\nWho is the Greek God of the Sea?\tPeter Carey\t-9.798013692572892\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (Peter Carey, was master of, the Sea Unicorn) -> Peter Carey (12117ms)\nWho is the Greek God of the Sea?\tYemaya\t-9.80160856347016\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Yemaya, is the Goddess of, the sea) -> Yemaya (8108ms)\nWho is the Greek God of the Sea?\tthe most feared Gods\t-9.836441574860359\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (the most feared Gods, was the God of, the sea) -> the most feared Gods (8355ms)\nWho is the Greek God of the Sea?\tIemanj?\t-9.839867664432656\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Iemanj?, is the vain goddess of, the sea) -> Iemanj? (8355ms)\nWho is the Greek God of the Sea?\tYemaja\t-9.843985469618488\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Yemaja, is the Goddess of, the Sea) -> Yemaja (8355ms)\nWho is the Greek God of the Sea?\tMannanan\t-9.849120330813967\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Mannanan, is the warrior god of, the sea) -> Mannanan (8425ms)\nWho is the Greek God of the Sea?\tthe behemothic squid\t-9.866759463741706\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (the behemothic squid, is god of, the sea) -> the behemothic squid (8425ms)\nWho is the Greek God of the Sea?\tTiamat\t-9.893565108634693\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Tiamat, is the goddess of, the sea) -> Tiamat (8425ms)\nWho is the Greek God of the Sea?\tWilliam Cowper\t-10.0229608888539\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (William Cowper, Supports the weight of, sea and land) -> William Cowper (8522ms)\nWho is the Greek God of the Sea?\tManannan mac Lir\t-10.031437587081639\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Manannan mac Lir, [is] the god of, the sea) -> Manannan mac Lir (8563ms)\nWho is the Greek God of the Sea?\tAquaman Aquaman\t-10.081404432725598\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Aquaman Aquaman, is the king of, the seven seas and ruler) -> Aquaman Aquaman (10198ms)\nWho is the Greek God of the Sea?\tYemay?\t-10.08764182657144\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Yemay?, is the Goddess of, the Sea and Nature) -> Yemay? (8563ms)\nWho is the Greek God of the Sea?\t?gir\t-10.092619006510578\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (?gir, [is] the god of, the sea) -> ?gir (8563ms)\nWho is the Greek God of the Sea?\tNeraeos\t-10.14122369843017\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Neraeos, is the God of, the Sea and Master) -> Neraeos (8694ms)\nWho is the Greek God of the Sea?\ta sailor\t-10.159202814289632\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (a sailor, was a native of, a Greek sea-city) -> a sailor (8694ms)\nWho is the Greek God of the Sea?\tKing Neptune\t-10.162755023251696\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (King Neptune, [is] god of, the sea) -> King Neptune (8694ms)\nWho is the Greek God of the Sea?\ttsipoura\t-10.168047399245912\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (tsipoura, Instance Of, authentic greek sea food dish) -> tsipoura (8694ms)\nWho is the Greek God of the Sea?\tDewa Baruna\t-10.18315614211565\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Dewa Baruna, [is] god of, the seas) -> Dewa Baruna (8694ms)\nWho is the Greek God of the Sea?\tNamakaokahai\t-10.187099913938969\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Namakaokahai, is the Goddess of, the Sea) -> Namakaokahai (8694ms)\nWho is the Greek God of the Sea?\tConon\t-10.222714980221182\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Conon, Instance Of, Greek general of the sea) -> Conon (8733ms)\nWho is the Greek God of the Sea?\tKrisi Davis\t-10.259480901517271\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (Krisi Davis, is the author of, The Sea Glass Hunter-) -> Krisi Davis (10852ms)\nWho is the Greek God of the Sea?\tkiller whales\t-10.270090859461783\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the cause of, the sea) -> (killer whales, was the cause of, the sea otter decline) -> killer whales (12257ms)\nWho is the Greek God of the Sea?\tHalcyone\t-10.337905486718395\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Halcyone, is the Goddess of, the Sea) -> Halcyone (8760ms)\nWho is the Greek God of the Sea?\tXar?tenga\t-10.351168440841729\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Xar?tenga, was the goddess of, the sea) -> Xar?tenga (8760ms)\nWho is the Greek God of the Sea?\tMatsu\t-10.387230773103408\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Matsu, is the Goddess of, the Sea) -> Matsu (8787ms)\nWho is the Greek God of the Sea?\tLefkada\t-10.40584188088238\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Lefkada, Instance Of, Greek island of the Ionian Sea) -> Lefkada (8787ms)\nWho is the Greek God of the Sea?\tDodecanese\t-10.40584188088238\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Dodecanese, Instance Of, Greek archipelago of the Mediterranean Sea) -> Dodecanese (8813ms)\nWho is the Greek God of the Sea?\tHilton Alves\t-10.415887742025806\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be a lover of, the sea) -> (Hilton Alves, is a lover of, the sea) -> Hilton Alves (12415ms)\nWho is the Greek God of the Sea?\tVellamo\t-10.425833298968152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Vellamo, is the goddess of, the sea) -> Vellamo (8813ms)\nWho is the Greek God of the Sea?\texperience\t-10.4460536832146\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> (experience, support the growth of, the Sea Star Society) -> experience (8813ms)\nWho is the Greek God of the Sea?\tBarbara Kreiger\t-10.44675915853297\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (Barbara Kreiger, is the author of, The Dead Sea) -> Barbara Kreiger (10852ms)\nWho is the Greek God of the Sea?\tAlcyone\t-10.474464183456003\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Alcyone, is the goddess of, the sea) -> Alcyone (8813ms)\nWho is the Greek God of the Sea?\tThe Pliosaur\t-10.47859679814171\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (The Pliosaur, was the king of, the seas) -> The Pliosaur (10198ms)\nWho is the Greek God of the Sea?\tOlbia\t-10.488308522679858\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Olbia, Instance Of, Greek city Northwest of the Black sea) -> Olbia (8839ms)\nWho is the Greek God of the Sea?\tGlaucus\t-10.49326300563401\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Glaucus, Instance Of, Greek sea-god) -> Glaucus (8839ms)\nWho is the Greek God of the Sea?\tVaruna\t-10.502382255831195\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Varuna, [is] the god of, the sea) -> Varuna (8839ms)\nWho is the Greek God of the Sea?\tLynne Griffin\t-10.530739043506937\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (Lynne Griffin, is the author of, the novels Sea Escape) -> Lynne Griffin (10852ms)\nWho is the Greek God of the Sea?\tOlokun\t-10.531956947654283\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Olokun, [is] god of, the sea) -> Olokun (8839ms)\nWho is the Greek God of the Sea?\tTaiwanese 14 May 07 Matzu\t-10.552728276243645\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Taiwanese 14 May 07 Matzu, is the goddess of, the sea and she?s) -> Taiwanese 14 May 07 Matzu (8864ms)\nWho is the Greek God of the Sea?\tbell-bottoms\t-10.563770752668889\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the spirit of, the sea) -> (bell-bottoms, is the spirit of, the sea) -> bell-bottoms (11920ms)\nWho is the Greek God of the Sea?\tHorst Kleinschmidt\t-10.567196174840785\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be director of, the sea) -> (Horst Kleinschmidt, is now a director of, the Sea Shepherd) -> Horst Kleinschmidt (12118ms)\nWho is the Greek God of the Sea?\tNeptunus\t-10.578060436613228\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Neptunus, [is] god of, the sea) -> Neptunus (9050ms)\nWho is the Greek God of the Sea?\tPeter Flint\t-10.582162986341348\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be director of, the sea) -> (Peter Flint, is co-Director of, the Dead Sea Scrolls Institute) -> Peter Flint (12118ms)\nWho is the Greek God of the Sea?\t14 May 07 Matzu\t-10.59504572172963\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (14 May 07 Matzu, is the goddess of, the sea and she?s) -> 14 May 07 Matzu (9050ms)\nWho is the Greek God of the Sea?\tDecapolis\t-10.620255149555824\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Decapolis, Instance Of, league of ten Greek city east of the Sea of Galilee) -> Decapolis (9050ms)\nWho is the Greek God of the Sea?\tThalassa\t-10.653329655456478\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Thalassa, Instance Of, Greek sea godess) -> Thalassa (9137ms)\nWho is the Greek God of the Sea?\tDelos\t-10.653329655456478\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Delos, Instance Of, sea-side Greek kingdom) -> Delos (9137ms)\nWho is the Greek God of the Sea?\tLemnos\t-10.673858466724184\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Lemnos, Instance Of, Greek island of the northeast Aegean Sea located opposite Troy) -> Lemnos (9137ms)\nWho is the Greek God of the Sea?\tChios\t-10.692137427766152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Chios, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Chios (9163ms)\nWho is the Greek God of the Sea?\tMiletus\t-10.692137427766152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Miletus, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Miletus (9163ms)\nWho is the Greek God of the Sea?\tChidos\t-10.692137427766152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Chidos, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Chidos (9163ms)\nWho is the Greek God of the Sea?\tPhocaea\t-10.692137427766152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Phocaea, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Phocaea (9137ms)\nWho is the Greek God of the Sea?\tHalicarnassus\t-10.692137427766152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Halicarnassus, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Halicarnassus (9137ms)\nWho is the Greek God of the Sea?\tSmyrna\t-10.692137427766152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Smyrna, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Smyrna (9163ms)\nWho is the Greek God of the Sea?\tMytilene\t-10.692137427766152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Mytilene, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Mytilene (9137ms)\nWho is the Greek God of the Sea?\tEphesus\t-10.692137427766152\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Ephesus, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Ephesus (9163ms)\nWho is the Greek God of the Sea?\tSyros\t-10.69822361089162\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Syros, Instance Of, sea-side Greek kingdom) -> Syros (9188ms)\nWho is the Greek God of the Sea?\tSvokos\t-10.69822361089162\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Svokos, Instance Of, Greek sea captain) -> Svokos (9188ms)\nWho is the Greek God of the Sea?\tTakis\t-10.69822361089162\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Takis, Instance Of, Greek sea captain) -> Takis (9188ms)\nWho is the Greek God of the Sea?\tKraken\t-10.69822361089162\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Kraken, Instance Of, greek sea monster) -> Kraken (9188ms)\nWho is the Greek God of the Sea?\tThe Devil\t-10.720727730139764\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The Devil, was master of, the sea) -> The Devil (12118ms)\nWho is the Greek God of the Sea?\tBlaquiere\t-10.721155511284502\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Blaquiere, Instance Of, Irish sea captain & founder member of the London Greek Committee) -> Blaquiere (9213ms)\nWho is the Greek God of the Sea?\tdisabled several\t-10.726512014589083\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (disabled several, were masters of, the sea) -> disabled several (12118ms)\nWho is the Greek God of the Sea?\tthe Blessed\t-10.74148940319209\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be son of, the sea) -> (the Blessed, was the son of, the Sea God) -> the Blessed (12118ms)\nWho is the Greek God of the Sea?\tThe Romans\t-10.742768085551397\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The Romans, were the masters of, the sea) -> The Romans (12118ms)\nWho is the Greek God of the Sea?\tSamut Sakhon\t-10.758876127590781\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be associate with, the sea) -> (Samut Sakhon, has always been associated with, the sea) -> Samut Sakhon (11317ms)\nWho is the Greek God of the Sea?\tnorthern Europe\t-10.762953834020466\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (northern Europe, were masters of, the sea) -> northern Europe (12118ms)\nWho is the Greek God of the Sea?\tThe Selkie\t-10.773779599335391\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the ruler of, the sea) -> (The Selkie, is the ruler of, the sea) -> The Selkie (11317ms)\nWho is the Greek God of the Sea?\tThe Kingfisher\t-10.783744366546735\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the guardian of, the sea) -> (The Kingfisher, was the guardian of, the Sea Kingdom) -> The Kingfisher (11746ms)\nWho is the Greek God of the Sea?\tThe British\t-10.817989499115464\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The British, are masters of, the seas) -> The British (12257ms)\nWho is the Greek God of the Sea?\tNerissa\t-10.818175089869772\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Nerissa, Instance Of, Greek name meaning Sea Nymph) -> Nerissa (9237ms)\nWho is the Greek God of the Sea?\tMan\t-10.84010039787262\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be lord of, the sea) -> (Man, was lord of, the Sea) -> Man (12498ms)\nWho is the Greek God of the Sea?\tBlue whales\t-10.84479202427764\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (Blue whales, are kings of, the seas) -> Blue whales (12257ms)\nWho is the Greek God of the Sea?\tBob\t-10.853573947012142\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Bob, is a man of, the sea) -> Bob (10985ms)\nWho is the Greek God of the Sea?\tGreek mythology Thalassa\t-10.858452690564318\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the personification of, the sea) -> (Greek mythology Thalassa, was the personification of, the sea) -> Greek mythology Thalassa (11409ms)\nWho is the Greek God of the Sea?\tLarus\t-10.865298885182618\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Larus, Instance Of, Greek word meaning ravenous sea bird) -> Larus (9237ms)\nWho is the Greek God of the Sea?\taggressive warfare\t-10.907342349335806\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (aggressive warfare, were also masters of, the sea) -> aggressive warfare (12257ms)\nWho is the Greek God of the Sea?\t?Bluefin\t-10.931984451060725\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (?Bluefin, is the king of, the sea) -> ?Bluefin (10198ms)\nWho is the Greek God of the Sea?\tThe Essenes\t-10.933247409634337\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (The Essenes, were the authors of, the Dead Sea Scrolls) -> The Essenes (10852ms)\nWho is the Greek God of the Sea?\tthe Moros\t-10.940489040350313\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Moros, were the masters of, the seas) -> the Moros (12257ms)\nWho is the Greek God of the Sea?\tMarine research\t-10.947673872140982\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> (Marine research, supports the protection of, the Baltic Sea) -> Marine research (9262ms)\nWho is the Greek God of the Sea?\tThe Dutch\t-10.94997351804469\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The Dutch, were masters of, the high seas) -> The Dutch (12415ms)\nWho is the Greek God of the Sea?\tIan\t-10.951034523681889\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Ian, too is a man of, the sea) -> Ian (10984ms)\nWho is the Greek God of the Sea?\tThe English\t-10.957931301059148\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The English, meanwhile were masters of, the sea) -> The English (12415ms)\nWho is the Greek God of the Sea?\tthe Dutch\t-10.96813779909506\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Dutch, were still masters of, the seas--so) -> the Dutch (12415ms)\nWho is the Greek God of the Sea?\tThe Minipirates\t-10.972078494285872\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The Minipirates, were the masters of, the Zamonian Sea) -> The Minipirates (12415ms)\nWho is the Greek God of the Sea?\tCape Cod\t-10.987166902530225\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the center of, the sea) -> (Cape Cod, has long been the center of, the Sea Herring Campaign) -> Cape Cod (11668ms)\nWho is the Greek God of the Sea?\tfinal refuge\t-10.994165407713808\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (final refuge, were the authors of, the Dead Sea Scrolls) -> final refuge (10852ms)\nWho is the Greek God of the Sea?\tthe Athenians\t-10.995938339123526\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Athenians, were masters of, the sea) -> the Athenians (12415ms)\nWho is the Greek God of the Sea?\tRon\t-11.025725473306037\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the head of, the sea) -> (Ron, was the Head of, the Sea Org) -> Ron (10984ms)\nWho is the Greek God of the Sea?\tSedna\t-11.030151960723668\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Sedna, is the goddess of, the sea) -> Sedna (9362ms)\nWho is the Greek God of the Sea?\tthe Milesians\t-11.040895355839693\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Milesians, were master of, the sea) -> the Milesians (12498ms)\nWho is the Greek God of the Sea?\tAmphitrite\t-11.08542902264175\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Amphitrite, was the Goddess of, the Sea) -> Amphitrite (9382ms)\nWho is the Greek God of the Sea?\tthe Vikings\t-11.093455290427228\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (the Vikings, were men of, the sea) -> the Vikings (10984ms)\nWho is the Greek God of the Sea?\tthe English\t-11.099580079809943\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the English, were masters of, the sea) -> the English (12498ms)\nWho is the Greek God of the Sea?\tIreon\t-11.105015583078394\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Ireon, Instance Of, nice little sea shore town, many good tavernas and good Greek food, mini-market, super market, bakery) -> Ireon (9382ms)\nWho is the Greek God of the Sea?\tEa-Oannes\t-11.107468956196234\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the ruler of, the sea) -> (Ea-Oannes, was the ruler of, the sea) -> Ea-Oannes (11409ms)\nWho is the Greek God of the Sea?\tNereid\t-11.119041734354921\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Nereid, [is] the Roman god of, the sea) -> Nereid (9403ms)\nWho is the Greek God of the Sea?\tManannan\t-11.139251964770942\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Manannan, [is] god of, the sea) -> Manannan (9403ms)\nWho is the Greek God of the Sea?\tthe Druchii\t-11.14473873411837\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Druchii, are masters of, the seas) -> the Druchii (12498ms)\nWho is the Greek God of the Sea?\tCorinth\t-11.148041657059686\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Corinth, Instance Of, cosmopolitan, Greek, sea-port city) -> Corinth (9402ms)\nWho is the Greek God of the Sea?\tPosiedon\t-11.18188405324727\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Posiedon, [is] god of, the sea) -> Posiedon (9424ms)\nWho is the Greek God of the Sea?\tFrey\t-11.182789099240669\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be a god of, the sea) -> (Frey, is also arguably a god of, the sea) -> Frey (11408ms)\nWho is the Greek God of the Sea?\tMananan\t-11.202285172111223\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Mananan, [is] the god of, the sea) -> Mananan (9424ms)\nWho is the Greek God of the Sea?\tBrahadair\t-11.202285172111223\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Brahadair, [is] god of, the sea) -> Brahadair (9424ms)\nWho is the Greek God of the Sea?\tBasque\t-11.202285172111223\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Basque, [is] god of, the sea) -> Basque (9424ms)\nWho is the Greek God of the Sea?\tLiranan\t-11.202285172111223\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Liranan, [is] the god of, the sea) -> Liranan (9448ms)\nWho is the Greek God of the Sea?\tPosideon\t-11.202285172111223\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Posideon, [is] god of, the sea) -> Posideon (9424ms)\nWho is the Greek God of the Sea?\tchemical waste\t-11.203479131535149\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be all in, the sea) -> (chemical waste, was all thrown in, the deep sea) -> chemical waste (12594ms)\nWho is the Greek God of the Sea?\tthe Law\t-11.203518855105093\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be lord of, the sea) -> (the Law, is the lord of, the sea) -> the Law (12593ms)\nWho is the Greek God of the Sea?\tThe Persian Goddess Atargatis\t-11.21306864776999\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (The Persian Goddess Atargatis, was a mermaid Goddess of, the Sea) -> The Persian Goddess Atargatis (9448ms)\nWho is the Greek God of the Sea?\tthe Sultan\t-11.2157131535398\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (the Sultan, is the Queen of, the South Sea) -> the Sultan (11409ms)\nWho is the Greek God of the Sea?\tthe Romans\t-11.236933890677593\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Romans, were now masters of, the sea) -> the Romans (12594ms)\nWho is the Greek God of the Sea?\twhose sons\t-11.29593613683365\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be son of, the sea) -> (whose sons, are the sons of, the sea) -> whose sons (12594ms)\nWho is the Greek God of the Sea?\tPisces\t-11.30503252847743\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (Pisces, is the god of, sea) -> Pisces (9448ms)\nWho is the Greek God of the Sea?\tcourse\t-11.307100886643116\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (course, represents the god of, the sea) -> course (9448ms)\nWho is the Greek God of the Sea?\tWater Bound\t-11.318921404737852\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the first in, the sea) -> (Water Bound, is the first book in, the Sea Haven series) -> Water Bound (12594ms)\nWho is the Greek God of the Sea?\tthe Tsunami\t-11.34304410245076\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, god, $x) -> (the Sea, was God in, the Tsunami) -> the Tsunami (12751ms)\nWho is the Greek God of the Sea?\tDant?s\t-11.3588842884696\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Dant?s, is a man of, the sea) -> Dant?s (10984ms)\nWho is the Greek God of the Sea?\tHalioti?s\t-11.36603147640033\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Halioti?s, is truly a man of, the sea) -> Halioti?s (10984ms)\nWho is the Greek God of the Sea?\t?the masses\t-11.380433045479773\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, speaking of, $x) -> (the ?sea?, speaks of, ?the masses) -> ?the masses (13431ms)\nWho is the Greek God of the Sea?\tSt . Vincent\t-11.385609004410313\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (St . Vincent, are men of, the sea) -> St . Vincent (10984ms)\nWho is the Greek God of the Sea?\tAtlantic Bluefin Tuna Bluefin\t-11.385648520230738\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Atlantic Bluefin Tuna Bluefin, is the king of, the sea) -> Atlantic Bluefin Tuna Bluefin (10198ms)\nWho is the Greek God of the Sea?\tthe Abyss\t-11.388064350710888\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be associate with, the sea) -> (the Abyss, is also associated with, the deep sea) -> the Abyss (11409ms)\nWho is the Greek God of the Sea?\tLagoona Blue\t-11.391883924763608\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the child of, the sea) -> (Lagoona Blue, is the child of, the Sea Monster) -> Lagoona Blue (10984ms)\nWho is the Greek God of the Sea?\tOdysseus\t-11.403739649795723\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (Odysseus, makes the god of, the sea) -> Odysseus (9469ms)\nWho is the Greek God of the Sea?\tNick Band\t-11.415165535279678\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Nick Band, is a man of, the sea) -> Nick Band (11409ms)\nWho is the Greek God of the Sea?\tEllora?s Cave\t-11.438535657229263\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Ellora?s Cave, is a man of, the sea) -> Ellora?s Cave (11409ms)\nWho is the Greek God of the Sea?\tthe Chinese fleet\t-11.44042929911043\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Chinese fleet, then were masters of, the sea) -> the Chinese fleet (12594ms)\nWho is the Greek God of the Sea?\tfresh blue crab\t-11.459315726199721\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the essence of, the sea) -> (fresh blue crab, is truly the essence of, the sea) -> fresh blue crab (11746ms)\nWho is the Greek God of the Sea?\tThe Mackeral Shark\t-11.459784410745558\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (The Mackeral Shark, was king of, the Paleocene seas) -> The Mackeral Shark (12696ms)\nWho is the Greek God of the Sea?\tDragon King\t-11.471758602904924\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the ruler of, the sea) -> (Dragon King, is the divine ruler of, the four seas) -> Dragon King (11409ms)\nWho is the Greek God of the Sea?\tThe Great Lord Hawke\t-11.488603363678022\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (The Great Lord Hawke, was king of, the sea) -> The Great Lord Hawke (12696ms)\nWho is the Greek God of the Sea?\tthe Royal Navy\t-11.489944369999378\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Royal Navy, were truly the masters of, the seas) -> the Royal Navy (12696ms)\nWho is the Greek God of the Sea?\trich nutrients\t-11.49285083629496\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (rich nutrients, support a large variety of, sea life) -> rich nutrients (9495ms)\nWho is the Greek God of the Sea?\tthe Portuguese\t-11.494670513784921\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Portuguese, were undisputed masters of, the Surat sea trade) -> the Portuguese (12696ms)\nWho is the Greek God of the Sea?\tthe Lapis Dragon\t-11.503158135255891\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (the Lapis Dragon, is the queen of, the sea) -> the Lapis Dragon (11668ms)\nWho is the Greek God of the Sea?\tRolla-Mano\t-11.510017492212476\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Rolla-Mano, was the old man of, the sea) -> Rolla-Mano (11668ms)\nWho is the Greek God of the Sea?\tThe U.S. Navy\t-11.520766099279438\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The U.S. Navy, has been the master of, the seas) -> The U.S. Navy (12696ms)\nWho is the Greek God of the Sea?\tWe?ll\t-11.529286465057016\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be lord of, the sea) -> (We?ll, be Lords of, the Sea ! ? Laughter and camaraderie) -> We?ll (12751ms)\nWho is the Greek God of the Sea?\tiron\t-11.536107539369738\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (iron, would be King of, the Seas) -> iron (12751ms)\nWho is the Greek God of the Sea?\tThe Otodus obliquus shark\t-11.539670212478631\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (The Otodus obliquus shark, was king of, the Paleocene seas) -> The Otodus obliquus shark (12751ms)\nWho is the Greek God of the Sea?\tLeisure Hotel Cochin\t-11.546514107623286\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (Leisure Hotel Cochin, is the Queen of, the Arabian Sea) -> Leisure Hotel Cochin (11668ms)\nWho is the Greek God of the Sea?\t4 Servings Salmon\t-11.58175568300835\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (4 Servings Salmon, is the king of, the sea) -> 4 Servings Salmon (10198ms)\nWho is the Greek God of the Sea?\tBlock Island Chris Warfel\t-11.59167229097859\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be son of, the sea) -> (Block Island Chris Warfel, is n?t a son of, the sea) -> Block Island Chris Warfel (12865ms)\nWho is the Greek God of the Sea?\tthe Tsunami?\t-11.59798117858127\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, god, $x) -> (the Sea, Was God in, the Tsunami?) -> the Tsunami? (12865ms)\nWho is the Greek God of the Sea?\tthe Ocean King\t-11.601589531949108\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the master of, the sea) -> (the Ocean King, is the master of, all the world?s seas) -> the Ocean King (12865ms)\nWho is the Greek God of the Sea?\tout\t-11.612135306039601\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the end of, the sea) -> (out, is the end of, the sea... Flexaret IV Someone) -> out (11746ms)\nWho is the Greek God of the Sea?\tThe god Poseidon\t-11.616150564336188\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (The god Poseidon, [is] god of, the sea) -> The god Poseidon (9516ms)\nWho is the Greek God of the Sea?\tthe Atlantic bluefin tuna\t-11.616998163000295\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (the Atlantic bluefin tuna, is indisputably a king of, the seas) -> the Atlantic bluefin tuna (12866ms)\nWho is the Greek God of the Sea?\tthe Clan\t-11.622026303367663\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the Clan, overwhelmingly supported the change of, Clan Sea Fox) -> the Clan (9516ms)\nWho is the Greek God of the Sea?\tThomas N. Graves\t-11.635138921751665\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the essence of, the sea) -> (Thomas N. Graves, has been capturing the essence of, the sea) -> Thomas N. Graves (11746ms)\nWho is the Greek God of the Sea?\tNew South Wales\t-11.638554074797229\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, speaking of, $x) -> (the South Seas, spoke of, New South Wales) -> New South Wales (13431ms)\nWho is the Greek God of the Sea?\tFunding\t-11.649039589113247\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> (Funding, will support an installation of, The Glass Sea) -> Funding (9516ms)\nWho is the Greek God of the Sea?\tmarine waters\t-11.654575295221893\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (marine waters, support a multitude of, sea lions) -> marine waters (9536ms)\nWho is the Greek God of the Sea?\tmusic\t-11.657234781033745\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, god, $x) -> (the seas, was the god of, music) -> music (12865ms)\nWho is the Greek God of the Sea?\tmultiple messiahs\t-11.658490668920447\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, speaking of, $x) -> (The Dead Sea Scrolls, actually speak of, multiple messiahs) -> multiple messiahs (13431ms)\nWho is the Greek God of the Sea?\tLida Pet-Soede\t-11.661664829998331\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the owner of, the sea) -> (Lida Pet-Soede, are now the proud co-owners of, The Seven Seas) -> Lida Pet-Soede (12951ms)\nWho is the Greek God of the Sea?\tKing Triton\t-11.663082469865225\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the ruler of, the sea) -> (King Triton, is the ruler of, the Seven Seas) -> King Triton (11667ms)\nWho is the Greek God of the Sea?\tMcCormick and Schmick\t-11.675862138282529\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (McCormick and Schmick, might be king of, the sea) -> McCormick and Schmick (12951ms)\nWho is the Greek God of the Sea?\tThe Cetusidae family\t-11.689362808160077\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, be the origin of, the sea) -> (The Cetusidae family, is the origin of, the sea lions) -> The Cetusidae family (12951ms)\nWho is the Greek God of the Sea?\tA Liquid Mirror Light\t-11.693546077113641\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the light of, the sea) -> (A Liquid Mirror Light, is also the light of, the sea) -> A Liquid Mirror Light (12951ms)\nWho is the Greek God of the Sea?\tOrigin Davy Jones\t-11.693546077113641\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the spirit of, the sea) -> (Origin Davy Jones, is the evil spirit of, the sea) -> Origin Davy Jones (12951ms)\nWho is the Greek God of the Sea?\tcarbon cycling\t-11.702871840875003\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be greater than, the sea) -> (carbon cycling, is often greater than in, the deep sea) -> carbon cycling (12951ms)\nWho is the Greek God of the Sea?\tthe British\t-11.76985076653084\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the master of, the sea) -> (the British, are the masters of, the seas) -> the British (13003ms)\nWho is the Greek God of the Sea?\tEva\t-11.775216242427925\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (Eva, is the youngest queen of, the Mediterranean sea) -> Eva (11668ms)\nWho is the Greek God of the Sea?\tA Purifying Mud Mask\t-11.784035151632503\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the power of, the sea) -> (A Purifying Mud Mask, is the magical power of, the Dead Sea) -> A Purifying Mud Mask (11668ms)\nWho is the Greek God of the Sea?\tthe Tsunami ?\t-11.798173715412918\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, god, $x) -> (the Sea, Was God in, the Tsunami ?) -> the Tsunami ? (13003ms)\nWho is the Greek God of the Sea?\tThe Egyptians\t-11.804848760037457\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be all in, the sea) -> (The Egyptians, were all drowned in, the sea) -> The Egyptians (13003ms)\nWho is the Greek God of the Sea?\tNSW forces\t-11.806823632800121\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (NSW forces, support the requirements of, sea control) -> NSW forces (9536ms)\nWho is the Greek God of the Sea?\tPG-13 Bill\t-11.811722359544508\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, be the prince of, the sea) -> (PG-13 Bill, is the prince of, the sea) -> PG-13 Bill (13431ms)\nWho is the Greek God of the Sea?\tThe Captain & the yacht Nick Band\t-11.825492703989607\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (The Captain & the yacht Nick Band, is a man of, the sea) -> The Captain & the yacht Nick Band (11746ms)\nWho is the Greek God of the Sea?\tBaveras\t-11.82660645014344\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Baveras, is the Santharian Goddess of, the Sea) -> Baveras (9556ms)\nWho is the Greek God of the Sea?\tEardil\t-11.84072704652266\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Eardil, [is] the god of, the lakes and seas) -> Eardil (9556ms)\nWho is the Greek God of the Sea?\tthe Makah Tribe\t-11.841245686133693\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the guardian of, the sea) -> (the Makah Tribe, were the traditional guardians of, the sea) -> the Makah Tribe (11746ms)\nWho is the Greek God of the Sea?\tOsse\t-11.843541854138525\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be lord of, the sea) -> (Osse, was lord of, the Inner Seas) -> Osse (13117ms)\nWho is the Greek God of the Sea?\tJohn Oysterman\t-11.844442789210682\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (John Oysterman, was a man of, the sea) -> John Oysterman (13117ms)\nWho is the Greek God of the Sea?\tAsherah\t-11.857928831192233\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Asherah, was goddess of, the sea) -> Asherah (9556ms)\nWho is the Greek God of the Sea?\tSharks\t-11.87257332313647\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Sharks, are the king of, the sea) -> Sharks (10198ms)\nWho is the Greek God of the Sea?\tIris\t-11.875939627115862\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Iris, was a goddess of, sea and sky?her father Thaumas) -> Iris (9556ms)\nWho is the Greek God of the Sea?\tthe Chinese Fleet\t-11.8792661757015\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Chinese Fleet, then were Masters of, the Sea) -> the Chinese Fleet (13117ms)\nWho is the Greek God of the Sea?\tAIDA Cruises\t-11.899858243578354\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be one in, the sea) -> (AIDA Cruises, is number one in, the German sea travel market) -> AIDA Cruises (10852ms)\nWho is the Greek God of the Sea?\t?Jack\t-11.906457616165707\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be a lover of, the sea) -> (?Jack, was a lover of, the sea , money and hallucinogens) -> ?Jack (13117ms)\nWho is the Greek God of the Sea?\tPell\t-11.946307601917148\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Pell, clearly was a man of, the sea) -> Pell (13117ms)\nWho is the Greek God of the Sea?\tThetis\t-11.957136936115397\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Thetis, was a Goddess of, the sea) -> Thetis (9597ms)\nWho is the Greek God of the Sea?\t20m and\t-11.957736488714701\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be fan of, the sea) -> (20m and, am a huge fan of, the sea) -> 20m and (10852ms)\nWho is the Greek God of the Sea?\treality\t-11.972421386915595\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (reality, supported the killing of, sea lions and dolphins) -> reality (9596ms)\nWho is the Greek God of the Sea?\tEngland\t-11.983753909027733\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (England, was the undisputed queen of, the seas) -> England (13209ms)\nWho is the Greek God of the Sea?\tthe Essenes\t-11.984264035204285\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (the Essenes, were the authors of, the Dead Sea Scrolls) -> the Essenes (13209ms)\nWho is the Greek God of the Sea?\tnoise\t-11.992980272871694\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the light of, the sea) -> (noise, is the light of, the sea) -> noise (13209ms)\nWho is the Greek God of the Sea?\tdaughter\t-12.010902823097496\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (daughter, is the Queen of, the South Sea) -> daughter (13209ms)\nWho is the Greek God of the Sea?\tthe Mabinogian\t-12.027102450306852\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be associate with, the sea) -> (the Mabinogian, are associated with, the sea) -> the Mabinogian (13209ms)\nWho is the Greek God of the Sea?\tthe 'salvation '\t-12.029842583685303\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, speaking of, $x) -> (the Dead Sea, speak of, the 'salvation ') -> the 'salvation ' (13431ms)\nWho is the Greek God of the Sea?\tstorm-water\t-12.063338866948314\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, allow into, the sea) -> (storm-water, was allowed to run into, the sea) -> storm-water (13209ms)\nWho is the Greek God of the Sea?\tVarunan\t-12.071290045970397\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (Varunan, is god of, sea land) -> Varunan (9616ms)\nWho is the Greek God of the Sea?\tthe Israelites\t-12.072414552017872\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be all in, the sea) -> (the Israelites, were all baptized in, the Red Sea) -> the Israelites (13431ms)\nWho is the Greek God of the Sea?\tthe ancient Greeks\t-12.085333599784022\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (the ancient Greeks, worshiped their god of, the sea) -> the ancient Greeks (9616ms)\nWho is the Greek God of the Sea?\tBluefin\t-12.1563819199218\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Bluefin, is the king of, the sea) -> Bluefin (10269ms)\nWho is the Greek God of the Sea?\tthe Kenai Peninsula\t-12.166836055588767\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the Kenai Peninsula, support large numbers of, sea otters) -> the Kenai Peninsula (9616ms)\nWho is the Greek God of the Sea?\tThe project\t-12.193904980060022\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> (The project, supports the work of, the Caribbean Sea Commission) -> The project (9852ms)\nWho is the Greek God of the Sea?\tnutrients\t-12.24469088603992\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (nutrients, supports immense varieties of, sea life) -> nutrients (9852ms)\nWho is the Greek God of the Sea?\tDragon\t-12.339260179316094\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Dragon, is the king of, the sea) -> Dragon (10269ms)\nWho is the Greek God of the Sea?\tGojun\t-12.45188193559856\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Gojun, is the king of, the western seas) -> Gojun (10269ms)\nWho is the Greek God of the Sea?\thelp\t-12.48305003728358\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (help, support the work of, Sea Watch) -> help (9897ms)\nWho is the Greek God of the Sea?\tBrizo\t-12.524380805020371\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Brizo, is a goddess of, the sea) -> Brizo (9897ms)\nWho is the Greek God of the Sea?\tthe dolphin\t-12.539249002803068\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (the dolphin, was the king of, the sea creatures) -> the dolphin (10361ms)\nWho is the Greek God of the Sea?\tNsambakalunga\t-12.644891139879528\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Nsambakalunga, is an African Goddess of, the seas) -> Nsambakalunga (10361ms)\nWho is the Greek God of the Sea?\tArnemetia\t-12.66529225874348\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Arnemetia, is a Celtic goddess of, the sea) -> Arnemetia (10361ms)\nWho is the Greek God of the Sea?\tMelanie\t-12.679767082933656\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Melanie, is goddess of, the sea and water) -> Melanie (10382ms)\nWho is the Greek God of the Sea?\tEnderalath\t-12.705529458318791\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> what be the name of the sea god ? -> $x: (the sea god, name, $x) -> (the sea god, named, Enderalath) -> Enderalath (10382ms)\nWho is the Greek God of the Sea?\tthe shark\t-12.792775208767676\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (the shark, is the king of, the sea) -> the shark (10382ms)\nWho is the Greek God of the Sea?\tthe island\t-12.83724637206215\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the island, supports huge numbers of, sea birds) -> the island (10403ms)\nWho is the Greek God of the Sea?\tdate\t-12.859339139338882\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (date, support versions of, SeaMonkey) -> date (10403ms)\nWho is the Greek God of the Sea?\tthe trash\t-13.003395825737789\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the trash, is supporting all kinds of, sea life) -> the trash (10403ms)\nWho is the Greek God of the Sea?\tthe largest creatures\t-13.07854586409309\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (the largest creatures, are called the King of, the Sea) -> the largest creatures (10424ms)\nWho is the Greek God of the Sea?\tCouncil\t-13.139916803708616\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (Council, also supported the formation of, a Sea) -> Council (10424ms)\nWho is the Greek God of the Sea?\tthe depths\t-13.170015023169373\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (the depths, became the Goddess of, Sea Creatures) -> the depths (10424ms)\nWho is the Greek God of the Sea?\tThe herring\t-13.538000675994352\tWho is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (The herring, is the king of, the sea) -> The herring (10498ms)\nWho is the Greek God of the Sea?\t2007\t-13.541888794143532\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (2007, supported lethal removal of, California sea lions) -> 2007 (10498ms)\nWho is the Greek God of the Sea?\tthe reef\t-13.588832188756747\tWho is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the reef, supports a wide array of, colorful sea life) -> the reef (10567ms)\nWho developed the Macintosh computer?\tJobs\t-0.9756311819891174\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (Jobs, develop, the Macintosh computer) -> Jobs (2936ms)\nWho developed the Macintosh computer?\tthe unit\t-1.5798179113116868\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (the unit, developed, the Macintosh computer) -> the unit (2936ms)\nWho developed the Macintosh computer?\tThe program\t-2.5495523308678885\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (The program, was developed for, the Macintosh computer) -> The program (2935ms)\nWho developed the Macintosh computer?\t1984\t-2.7193453386362987\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (1984, developed to run on, the Macintosh computer) -> 1984 (2935ms)\nWho developed the Macintosh computer?\tPageMaker\t-2.905577179344494\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (PageMaker, was developed for, Macintosh computers) -> PageMaker (5190ms)\nWho developed the Macintosh computer?\tApple\t-2.9580235425397765\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (Apple, developing, the Macintosh computer) -> Apple (2936ms)\nWho developed the Macintosh computer?\ta new program Aldus\t-3.7685602153804236\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (a new program Aldus, developed for, Apple Macintosh computers) -> a new program Aldus (5189ms)\nWho developed the Macintosh computer?\timage\t-4.254846071049126\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (image, was developed on, Macintosh computer) -> image (5204ms)\nWho developed the Macintosh computer?\tLater versions\t-4.289430149165785\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (Later versions, were developed for, Macintosh computers) -> Later versions (5204ms)\nWho developed the Macintosh computer?\ta network protocol\t-4.3596485851052\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (a network protocol, was developed for, Macintosh computers) -> a network protocol (5204ms)\nWho developed the Macintosh computer?\tCompany\t-4.369064704207156\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (Company, develops software for, OPENSTEP and Macintosh computers) -> Company (5204ms)\nWho developed the Macintosh computer?\tAnimal stack\t-4.9186039552602105\tWho developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (Animal stack, was developed on, Macintosh computers) -> Animal stack (5324ms)\nWho developed the Macintosh computer?\tSteve Jobs\t-8.986646420721645\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who design the first the macintosh computer ? -> $x: ($x, design, the first the macintosh computer) -> (Steve Jobs, finished designing, the first Macintosh computer) -> Steve Jobs (6986ms)\nWho developed the Macintosh computer?\tCAD users\t-9.588345930965579\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> (CAD users, work on, the Macintosh computer) -> CAD users (6842ms)\nWho developed the Macintosh computer?\tAcrobat Reader\t-10.192891849886866\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Acrobat Reader, works on, Windows and Macintosh computers) -> Acrobat Reader (8436ms)\nWho developed the Macintosh computer?\tRelease Forms\t-10.81454275943067\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Release Forms, works on, both Windows and Macintosh computers) -> Release Forms (8436ms)\nWho developed the Macintosh computer?\tSteve\t-11.163759803711706\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who design the first the macintosh computer ? -> $x: ($x, design, the first the macintosh computer) -> (Steve, was designing, the first Macintosh computer) -> Steve (6986ms)\nWho developed the Macintosh computer?\tthe Aldus PageMaker\t-11.178838074686931\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (the Aldus PageMaker, worked on, his Macintosh computer) -> the Aldus PageMaker (8436ms)\nWho developed the Macintosh computer?\tarchitects and CAD users\t-11.210898529778497\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> (architects and CAD users, work on, the Macintosh computer) -> architects and CAD users (6844ms)\nWho developed the Macintosh computer?\tKawasaki\t-11.244380824250793\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who design the first the macintosh computer ? -> $x: ($x, design, the first the macintosh computer) -> (Kawasaki, originally helped design, the first Macintosh computer) -> Kawasaki (6986ms)\nWho developed the Macintosh computer?\tGameTap\t-11.289620865156996\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (GameTap, now works on, Intel-based Apple Macintosh computers) -> GameTap (8436ms)\nWho developed the Macintosh computer?\tFileMaker\t-11.351985688810284\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (FileMaker, works on, a Macintosh or IBM Compatible computer) -> FileMaker (8436ms)\nWho developed the Macintosh computer?\ttool\t-11.58822734236522\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (tool, works on, any Windows-compatible or Macintosh computer) -> tool (8436ms)\nWho developed the Macintosh computer?\tBart\t-11.59629122296775\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Bart, works almost exclusively on, Macintosh computers) -> Bart (8642ms)\nWho developed the Macintosh computer?\tIronKey drives\t-11.703734180340414\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (IronKey drives, will also work on, Macintosh computers) -> IronKey drives (8642ms)\nWho developed the Macintosh computer?\tZune players\t-11.737025875554796\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Zune players, work on, Macintosh computers) -> Zune players (8642ms)\nWho developed the Macintosh computer?\ta file\t-11.750428542015474\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (a file, works on, Windows , Macintosh or Unix computers) -> a file (8642ms)\nWho developed the Macintosh computer?\tFriendBlasterPro\t-11.773898632713841\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (FriendBlasterPro, work on, Macintosh Computers) -> FriendBlasterPro (8642ms)\nWho developed the Macintosh computer?\tfew\t-11.782713042357624\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (few, had ever worked on, Macintosh computers) -> few (8642ms)\nWho developed the Macintosh computer?\ta guy\t-11.848821380651971\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (a guy, was working on, an older Macintosh computer) -> a guy (8642ms)\nWho developed the Macintosh computer?\tThe POV.1.5\t-11.859291380050443\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The POV.1.5, will work on, Macintosh computers) -> The POV.1.5 (8642ms)\nWho developed the Macintosh computer?\tMacGenogram\t-11.863103313626873\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (MacGenogram, worked only on, Macintosh computers) -> MacGenogram (8785ms)\nWho developed the Macintosh computer?\tSimple WindowSets\t-11.878214195251395\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Simple WindowSets, will work on, Macintosh computers) -> Simple WindowSets (8785ms)\nWho developed the Macintosh computer?\tWindows-compatible PCs\t-11.89124868980571\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Windows-compatible PCs, should also work on, Macintosh computers) -> Windows-compatible PCs (8785ms)\nWho developed the Macintosh computer?\tstudents\t-11.936954940038037\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (students, will work on, Macintosh Apple computers) -> students (8785ms)\nWho developed the Macintosh computer?\tData Co-op\t-11.978863036213863\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Data Co-op, works on, both Windows and Macintosh computers) -> Data Co-op (8785ms)\nWho developed the Macintosh computer?\tManifesto\t-12.4215774657282\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who construct the macintosh computer ? -> $x: ($x, construct, the macintosh computer) -> $x: ($x, construct, macintosh computer) -> (Manifesto, construct, a Macintosh computer circa 1990) -> Manifesto (8785ms)\nWho developed the Macintosh computer?\tusers\t-12.527580170676002\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (users, work on, DOS or Macintosh computers) -> users (8901ms)\nWho developed the Macintosh computer?\tdesigners\t-12.562868546341523\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (designers, started working on, Macintosh computers) -> designers (8901ms)\nWho developed the Macintosh computer?\tcommand\t-12.62926292435948\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (command, is only working on, Macintosh computers) -> command (8901ms)\nWho developed the Macintosh computer?\tSuppliers\t-12.653988665387978\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Suppliers, works on, both Windows and Macintosh computers) -> Suppliers (8901ms)\nWho developed the Macintosh computer?\tFirefox\t-12.743435952725578\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Firefox, works best on, both Windows and Macintosh computers) -> Firefox (8901ms)\nWho developed the Macintosh computer?\tDeutch\t-13.10158732746525\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Deutch, worked exclusively on, Macintosh computers) -> Deutch (8999ms)\nWho developed the Macintosh computer?\tSyphone\t-13.116618707093073\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Syphone, only works on, Macintosh computers) -> Syphone (8999ms)\nWho developed the Macintosh computer?\tNT & 2000\t-13.15666324030187\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (NT & 2000, also works on, Macintosh computers) -> NT & 2000 (8999ms)\nWho developed the Macintosh computer?\tSusan\t-13.159944367769754\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Susan, worked on early, Macintosh computers) -> Susan (8999ms)\nWho developed the Macintosh computer?\tthe game\t-13.18317097754053\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (the game, should now work again on, Macintosh computers) -> the game (8999ms)\nWho developed the Macintosh computer?\tTinderbox\t-13.183852453734087\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Tinderbox, works on, Macintosh computers) -> Tinderbox (8999ms)\nWho developed the Macintosh computer?\tThe activity\t-13.275975409280345\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The activity, works on, a PC or Macintosh computer) -> The activity (8999ms)\nWho developed the Macintosh computer?\tBavari\t-13.304148150427814\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Bavari, works on, a Macintosh G3 computer) -> Bavari (9047ms)\nWho developed the Macintosh computer?\tThe patch\t-13.315300480941165\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The patch, should work on, all Macintosh computers) -> The patch (9047ms)\nWho developed the Macintosh computer?\tSorren\t-13.315414272179938\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Sorren, was working on, an Apple Macintosh computer) -> Sorren (9047ms)\nWho developed the Macintosh computer?\tThe same font file\t-13.348445191755339\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The same font file, works on, Macintosh and Windows computers) -> The same font file (9047ms)\nWho developed the Macintosh computer?\tThe instructor\t-13.407684346071056\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The instructor, will be working on, a Macintosh computer) -> The instructor (9048ms)\nWho developed the Macintosh computer?\tJanuary\t-13.564816474503829\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> when be the macintosh computer develop ? -> $x: (the macintosh computer, be develop in, $x) -> $x: (the macintosh computer, be be release in, $x) -> (The Macintosh computer, was released in, January) -> January (12845ms)\nWho developed the Macintosh computer?\tThe files\t-14.13447415584161\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The files, will work on, either a PC or Macintosh computer) -> The files (9047ms)\nWho developed the Macintosh computer?\tthe same font file\t-14.715020500738094\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (the same font file, works on, Macintosh and Windows computers) -> the same font file (9047ms)\nWho developed the Macintosh computer?\tJanuary of 1984\t-14.73138971402156\tWho developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> when be the macintosh computer develop ? -> $x: (the macintosh computer, be develop in, $x) -> $x: (the macintosh computer, be be release in, $x) -> (The Macintosh computer, was released in, January of 1984) -> January of 1984 (12845ms)\nIn what city are the three Great Pyramids located?\tthe Sphinx\t-11.201907535529347\tIn what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (the Sphinx, as were, the three great pyramids) -> the Sphinx (7289ms)\nIn what city are the three Great Pyramids located?\tsuch a way\t-11.222269656902137\tIn what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> where be the three great pyramid ? -> $x: (the three great pyramid, be in, $x) -> (the three great pyramids, were laid out in, such a way) -> such a way (7290ms)\nIn what city are the three Great Pyramids located?\tdrake puppy\t-11.570738748001924\tIn what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (drake puppy, is the largest of, the three Great Pyramids) -> drake puppy (7290ms)\nIn what city are the three Great Pyramids located?\tAtlantis\t-12.412368684323813\tIn what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (Atlantis, are, the three Great Pyramids) -> Atlantis (7290ms)\nIn what city are the three Great Pyramids located?\tthe escarpment\t-12.922570121232038\tIn what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (the escarpment, are, the three Great Pyramids) -> the escarpment (7289ms)\nIn what city are the three Great Pyramids located?\tThe sole exception\t-13.51424430464509\tIn what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (The sole exception, may be, the three great pyramids) -> The sole exception (7289ms)\nWho invented television?\tRobert Adler\t-1.0206316830629767\tWho invented television? -> $x: ($x, invented, television) -> (Robert Adler, invented, the television remote control) -> Robert Adler (4283ms)\nWho invented television?\tPhilo Farnsworth\t-1.1178943105700925\tWho invented television? -> $x: ($x, invented, television) -> (Philo Farnsworth, invented, the Television) -> Philo Farnsworth (4283ms)\nWho invented television?\tVladimir Zworykin\t-1.20470107873407\tWho invented television? -> $x: ($x, invented, television) -> (Vladimir Zworykin, invented, the television) -> Vladimir Zworykin (4283ms)\nWho invented television?\twishing someone\t-2.0202940579223903\tWho invented television? -> $x: ($x, invented, television) -> (wishing someone, invent, television) -> wishing someone (4283ms)\nWho invented television?\tthe Americans\t-2.088380839116369\tWho invented television? -> $x: ($x, invented, television) -> (the Americans, invented, television) -> the Americans (4435ms)\nWho invented television?\tVinton Cerf\t-2.12165672759023\tWho invented television? -> $x: ($x, invented, television) -> (Vinton Cerf, invented, the Television) -> Vinton Cerf (4436ms)\nWho invented television?\tPhilo T Farnsworth\t-2.141433500953586\tWho invented television? -> $x: ($x, invented, television) -> (Philo T Farnsworth, invented, electronic television) -> Philo T Farnsworth (4435ms)\nWho invented television?\tweeks pregnant\t-2.1715616871691634\tWho invented television? -> $x: ($x, invented, television) -> (weeks pregnant, invented, the television nina) -> weeks pregnant (4436ms)\nWho invented television?\tPapua New Guinea\t-2.1761100431329075\tWho invented television? -> $x: ($x, invented, television) -> (Papua New Guinea, had invented, the television) -> Papua New Guinea (4435ms)\nWho invented television?\tDavid Sarnoff ?\t-2.288637760001368\tWho invented television? -> $x: ($x, invented, television) -> (David Sarnoff ?, invented, the television) -> David Sarnoff ? (4523ms)\nWho invented television?\tJohn Logie Baird\t-2.3342452006828127\tWho invented television? -> $x: ($x, invented, television) -> (John Logie Baird, invented, television) -> John Logie Baird (4523ms)\nWho invented television?\tPhilo T. Farnsworth\t-2.339856635565253\tWho invented television? -> $x: ($x, invented, television) -> (Philo T. Farnsworth, invented, the Television) -> Philo T. Farnsworth (4523ms)\nWho invented television?\tthe Mayans\t-2.5559773625563817\tWho invented television? -> $x: ($x, invented, television) -> (the Mayans, invented, television) -> the Mayans (4612ms)\nWho invented television?\ta teenager\t-2.6285378531338255\tWho invented television? -> $x: ($x, invented, television) -> (a teenager, invented, television) -> a teenager (4612ms)\nWho invented television?\ttwo people\t-2.641964802393324\tWho invented television? -> $x: ($x, invented, television) -> (two people, invented, the television) -> two people (4612ms)\nWho invented television?\tThe Boy\t-2.6653208687839918\tWho invented television? -> $x: ($x, invented, television) -> (The Boy, Invented, Television) -> The Boy (4612ms)\nWho invented television?\ta boy genius\t-2.701460836790443\tWho invented television? -> $x: ($x, invented, television) -> (a boy genius, invented, television) -> a boy genius (4646ms)\nWho invented television?\t?The Boy\t-2.7213785846994556\tWho invented television? -> $x: ($x, invented, television) -> (?The Boy, Invented, Television) -> ?The Boy (4646ms)\nWho invented television?\ta legal battle\t-2.7394813790605452\tWho invented television? -> $x: ($x, invented, television) -> (a legal battle, invented, television) -> a legal battle (4646ms)\nWho invented television?\tJ.L. Baird\t-2.7417151354361513\tWho invented television? -> $x: ($x, invented, television) -> (J.L. Baird, invented, television) -> J.L. Baird (4646ms)\nWho invented television?\tone man\t-2.786809221617321\tWho invented television? -> $x: ($x, invented, television) -> (one man, invented, television) -> one man (4646ms)\nWho invented television?\thumans\t-2.792661770410314\tWho invented television? -> $x: ($x, invented, television) -> (humans, invented, radio and television) -> humans (4646ms)\nWho invented television?\t?the country\t-2.8257094650601466\tWho invented television? -> $x: ($x, invented, television) -> (?the country, invented, photography , television , computers) -> ?the country (4793ms)\nWho invented television?\tJohn Lack\t-2.848694055699707\tWho invented television? -> $x: ($x, invented, television) -> (John Lack, invented, MTV Music Television) -> John Lack (4793ms)\nWho invented television?\tSarnoff versus Farnsworth\t-2.8915633900340696\tWho invented television? -> $x: ($x, invented, television) -> (Sarnoff versus Farnsworth, invented, television) -> Sarnoff versus Farnsworth (4793ms)\nWho invented television?\ta Mormon\t-2.919857723785225\tWho invented television? -> $x: ($x, invented, television) -> (a Mormon, invented, the Television) -> a Mormon (4793ms)\nWho invented television?\t?Shelly Palmer ?\t-2.932771627052925\tWho invented television? -> $x: ($x, invented, television) -> (?Shelly Palmer ?, invented, Enhanced Television) -> ?Shelly Palmer ? (4793ms)\nWho invented television?\tone station?KDKA-TV?which\t-2.958413348898495\tWho invented television? -> $x: ($x, invented, television) -> (one station?KDKA-TV?which, literally invented, television news) -> one station?KDKA-TV?which (4793ms)\nWho invented television?\tage 14\t-3.0128793554308935\tWho invented television? -> $x: ($x, invented, television) -> (age 14, invented, television) -> age 14 (4831ms)\nWho invented television?\tFamous Scots scientists\t-3.1196553438801544\tWho invented television? -> $x: ($x, invented, television) -> (Famous Scots scientists, also invented, the television) -> Famous Scots scientists (4831ms)\nWho invented television?\tMedia event\t-3.124724293101071\tWho invented television? -> $x: ($x, invented, television) -> (Media event, was a term invented by, television) -> Media event (4831ms)\nWho invented television?\tthe who\t-3.216445142605437\tWho invented television? -> $x: ($x, invented, television) -> (the who, invented, the television reciever) -> the who (4831ms)\nWho invented television?\tMr Adler\t-3.4771900009341277\tWho invented television? -> $x: ($x, invented, television) -> (Mr Adler, co-invented, the television remote control) -> Mr Adler (4925ms)\nWho invented television?\tnobody\t-3.541002497239086\tWho invented television? -> $x: ($x, invented, television) -> (nobody, had invented, television) -> nobody (4926ms)\nWho invented television?\tMarconi\t-3.583148702059617\tWho invented television? -> $x: ($x, invented, television) -> (Marconi, invented, the television) -> Marconi (4953ms)\nWho invented television?\tScottish pioneers\t-3.608073084727967\tWho invented television? -> $x: ($x, invented, television) -> (Scottish pioneers, invented, television) -> Scottish pioneers (4954ms)\nWho invented television?\tMexico\t-3.7894552301462854\tWho invented television? -> $x: ($x, invented, television) -> (Mexico, invented, the early color television transmission system) -> Mexico (4982ms)\nWho invented television?\tMitsubishi\t-3.9007100509316013\tWho invented television? -> $x: ($x, invented, television) -> (Mitsubishi, invented, the first rear-projection television) -> Mitsubishi (5155ms)\nWho invented television?\tFarnsworth\t-3.9671694894662792\tWho invented television? -> $x: ($x, invented, television) -> (Farnsworth, invented, television) -> Farnsworth (5155ms)\nWho invented television?\tthe age\t-3.9771343107658517\tWho invented television? -> $x: ($x, invented, television) -> (the age, invented, television) -> the age (5270ms)\nWho invented television?\tthe Philo Farnsworth\t-4.002548531058695\tWho invented television? -> $x: ($x, invented, television) -> (the Philo Farnsworth, invented, television) -> the Philo Farnsworth (5270ms)\nWho invented television?\tJunior\t-4.049166584499076\tWho invented television? -> $x: ($x, invented, television) -> (Junior, invented, the television) -> Junior (5270ms)\nWho invented television?\tRoone\t-4.190108301554183\tWho invented television? -> $x: ($x, invented, television) -> (Roone, invented many of, television) -> Roone (5481ms)\nWho invented television?\tAugust 1888\t-4.192687283373185\tWho invented television? -> $x: ($x, invented, television) -> (August 1888, invented, the very first working television system) -> August 1888 (5481ms)\nWho invented television?\tDouglas L Ross\t-4.196979204669828\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (Douglas L Ross, Patents, Analog/Digital System for Television Services) -> Douglas L Ross (5481ms)\nWho invented television?\tUnited States Patent and Trademark Office\t-4.196979204669828\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (United States Patent and Trademark Office, Patents, Analog/Digital System for Television Services) -> United States Patent and Trademark Office (5482ms)\nWho invented television?\tPrinceton\t-4.2264249864470536\tWho invented television? -> $x: ($x, invented, television) -> (Princeton, invented, electronic color television) -> Princeton (5481ms)\nWho invented television?\tRepeats\t-4.235832074953407\tWho invented television? -> $x: ($x, invented, television) -> (Repeats, Invented, American Television) -> Repeats (5481ms)\nWho invented television?\ta date\t-4.363374621493697\tWho invented television? -> $x: ($x, invented, television) -> (a date, was invented, television) -> a date (5551ms)\nWho invented television?\tRalph Bauer\t-4.447583337117994\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was invented by, Ralph Bauer) -> Ralph Bauer (5551ms)\nWho invented television?\tthe same Farnsworth\t-4.554915390108166\tWho invented television? -> $x: ($x, invented, television) -> (the same Farnsworth, invented, television) -> the same Farnsworth (5591ms)\nWho invented television?\tthe guy\t-4.560685997492747\tWho invented television? -> $x: ($x, invented, television) -> (the guy, invented, television) -> the guy (5591ms)\nWho invented television?\tThe issue\t-4.716240185943402\tWho invented television? -> $x: ($x, invented, television) -> (The issue, invented, television) -> The issue (5622ms)\nWho invented television?\tJames Cameron\t-4.7192280840555085\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (James Cameron, is set to create, a television show) -> James Cameron (5622ms)\nWho invented television?\tthe first band\t-4.789762978677329\tWho invented television? -> $x: ($x, invented, television) -> (the first band, invented for, television) -> the first band (5622ms)\nWho invented television?\tthe cave-men\t-4.864254294555118\tWho invented television? -> $x: ($x, invented, television) -> (the cave-men, had invented, television many thousand years) -> the cave-men (5646ms)\nWho invented television?\tthe history\t-4.879502620281124\tWho invented television? -> $x: ($x, invented, television) -> (the history, was invented before, the small one ? television) -> the history (5646ms)\nWho invented television?\tsomebody\t-4.941317046253138\tWho invented television? -> $x: ($x, invented, television) -> (somebody, would invent, television) -> somebody (5646ms)\nWho invented television?\tJamie Oliver\t-4.947643643142559\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Jamie Oliver, reinvent, his television career) -> Jamie Oliver (5891ms)\nWho invented television?\tElvis Presley\t-4.9818721520756855\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Elvis Presley, made his first appearance on, national television) -> Elvis Presley (5892ms)\nWho invented television?\tRoyal Caribbean\t-5.02987403249044\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Royal Caribbean, are marketing on, Television) -> Royal Caribbean (5891ms)\nWho invented television?\tbounty hunters\t-5.158590537720553\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (bounty hunters, have been popularized by, television displays) -> bounty hunters (5920ms)\nWho invented television?\tJim Carrey\t-5.23177578965474\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Jim Carrey, popularized, reality television) -> Jim Carrey (5977ms)\nWho invented television?\tThe Monkees\t-5.269731711095291\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Monkees, first made their debut on, network television) -> The Monkees (5977ms)\nWho invented television?\tproduct placement\t-5.332185802107486\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (product placement, have been conceived for, television) -> product placement (6038ms)\nWho invented television?\tnews sources\t-5.3556668993578604\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, skewed, television) -> (news sources, skewed mostly toward, television) -> news sources (6038ms)\nWho invented television?\tthe building\t-5.366322645278413\tWho invented television? -> $x: ($x, invented, television) -> (the building, was invented, television) -> the building (6038ms)\nWho invented television?\tConstantin Perskyi\t-5.407644352224885\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, have coin, television) -> (Constantin Perskyi, had coined, the word television) -> Constantin Perskyi (6056ms)\nWho invented television?\tDmitry Shapiro\t-5.435701880993651\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Dmitry Shapiro, wants to reinvent, television ?) -> Dmitry Shapiro (6056ms)\nWho invented television?\ta Briton\t-5.469984017303805\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (television, was invented by, a Briton) -> a Briton (6074ms)\nWho invented television?\tJoe Biden\t-5.485148302518741\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Joe Biden, would be the perfect person to go on, television) -> Joe Biden (6073ms)\nWho invented television?\tGrowing Bolder\t-5.493049571222675\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Growing Bolder, is such a perfect fit on, public television) -> Growing Bolder (6074ms)\nWho invented television?\tengineers\t-5.528444808872983\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (Television, was invented by, engineers) -> engineers (6073ms)\nWho invented television?\tBentley Designs\t-5.529426851662672\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bentley Designs, is perfect for, your television) -> Bentley Designs (6091ms)\nWho invented television?\tThe Simpsons\t-5.559748592517909\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Simpsons, make their first appearance on, television) -> The Simpsons (6091ms)\nWho invented television?\tan inventor\t-5.5846187356301\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was invented by, an inventor) -> an inventor (6091ms)\nWho invented television?\tFox\t-5.6464424935405875\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Fox, reinvented, television / Daniel M. Kimmel) -> Fox (6108ms)\nWho invented television?\tProactiv Solution\t-5.665528781182317\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Proactiv Solution, is marketed on, television and online) -> Proactiv Solution (6108ms)\nWho invented television?\tWaverly Hills\t-5.6717827068195446\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Waverly Hills, has been popularized on, paranormal television) -> Waverly Hills (6108ms)\nWho invented television?\ta Scotsman\t-5.6765752807946335\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (The television, was invented by, a Scotsman) -> a Scotsman (6108ms)\nWho invented television?\tSteve Jobs\t-5.695652960467925\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Steve Jobs, was keen to reinvent, the television) -> Steve Jobs (6108ms)\nWho invented television?\tHoly Week\t-5.723294907442352\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Holy Week, has been so popularized by, the film and television) -> Holy Week (6126ms)\nWho invented television?\tthe Scot John Logie Baird\t-5.739268987330442\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (Television, was invented by, the Scot John Logie Baird) -> the Scot John Logie Baird (6127ms)\nWho invented television?\tEye\t-5.745597851695161\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Eye, presented this experiment on, television) -> Eye (6126ms)\nWho invented television?\tHBO\t-5.792703950223625\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (HBO, has reinvented, countless television genres) -> HBO (6142ms)\nWho invented television?\tLG\t-5.802986661477922\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (LG, was then marketing, its active-technology televisions) -> LG (6143ms)\nWho invented television?\tThe Sloth\t-5.84892692853937\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (The Sloth, was originally conceived as, a television sketch) -> The Sloth (6143ms)\nWho invented television?\tthe Amish\t-5.86174029207634\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, can live without, television) -> (the Amish, Can Live Without, Television) -> the Amish (6143ms)\nWho invented television?\tthe country\t-5.867895257325099\tWho invented television? -> $x: ($x, invented, television) -> (the country, invented, television) -> the country (6160ms)\nWho invented television?\tRCA\t-5.9226810376582595\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (RCA, devised, a superior television camera) -> RCA (6160ms)\nWho invented television?\tJ.J. Abrams\t-5.952808312338863\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (J.J. Abrams, have helped reinvent, the television drama) -> J.J. Abrams (6160ms)\nWho invented television?\tearly editions\t-5.957786711316965\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (early editions, has devised, many television formats) -> early editions (6160ms)\nWho invented television?\tpoultry farmers\t-5.9906390992409015\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (poultry farmers, are outraged over, his new television show) -> poultry farmers (6177ms)\nWho invented television?\tnumerous movies\t-6.004157182989939\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be relatively new to, television) -> (numerous movies, is relatively new to, series television) -> numerous movies (6177ms)\nWho invented television?\tdryer sheets\t-6.008578220400012\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (dryer sheets, are perfect for cleaning, your television screen) -> dryer sheets (6177ms)\nWho invented television?\tJVC\t-6.017656965662088\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (JVC, has also been dedicated to creating, televisions) -> JVC (6177ms)\nWho invented television?\tadjustable beds\t-6.035596115957068\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (adjustable beds, are perfect for watching, television) -> adjustable beds (6193ms)\nWho invented television?\tmore than\t-6.041293538858945\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (more than, is being popularized by, television) -> more than (6193ms)\nWho invented television?\tDVRs\t-6.042871268324525\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (DVRs, are the perfect tools for, the television obsessive) -> DVRs (6193ms)\nWho invented television?\tBBC Music\t-6.0730592439568465\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (BBC Music, is a market leader in, music television distribution) -> BBC Music (6193ms)\nWho invented television?\tflipping houses\t-6.079805963034846\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (flipping houses, is popularized on, television) -> flipping houses (6193ms)\nWho invented television?\tTiVo\t-6.091627369189054\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, do this with, television) -> (TiVo, does this with, television shows) -> TiVo (6211ms)\nWho invented television?\tEDTV\t-6.092119356499444\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (EDTV, is the perfect entry point into, digital television) -> EDTV (6211ms)\nWho invented television?\tclub stores\t-6.110196353253941\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (club stores, are being marketed on, television) -> club stores (6211ms)\nWho invented television?\tLCDs\t-6.122182063052792\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (LCDs, can also be used to create, flat-panel televisions) -> LCDs (6229ms)\nWho invented television?\tAdam Walsh\t-6.123293853001423\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, do create, television) -> (Adam Walsh, did n?t just create, the television hit ?America?s) -> Adam Walsh (6229ms)\nWho invented television?\t?JONAS\t-6.12660304776057\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (?JONAS, is the perfect complement to, the hit television show) -> ?JONAS (6229ms)\nWho invented television?\tPaul Nipkow\t-6.139084202653662\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (Paul Nipkow, patented, the first mechanical television scanner) -> Paul Nipkow (6229ms)\nWho invented television?\tThe Stroll\t-6.141596421867574\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The Stroll, was perfect for, television) -> The Stroll (6246ms)\nWho invented television?\tNASCAR\t-6.1446792383846836\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (NASCAR, is nearly perfect for, television) -> NASCAR (6246ms)\nWho invented television?\tIraq\t-6.1474490492874665\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (Iraq, was to create, a 24-hour television feed) -> Iraq (6246ms)\nWho invented television?\tMTV\t-6.157942192508017\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, know to use, television) -> (MTV, used to be known as, Music Television) -> MTV (6246ms)\nWho invented television?\tBell Laboratories\t-6.1922612882259696\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bell Laboratories, perfected, color television) -> Bell Laboratories (6246ms)\nWho invented television?\tthe Enterprise\t-6.2101599075056955\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (the Enterprise, was used to create, a television show) -> the Enterprise (6262ms)\nWho invented television?\tEnd\t-6.214203777912949\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (End, was first made available to, American television) -> End (6262ms)\nWho invented television?\tcan Apple\t-6.249064636176895\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (can Apple, reinvent, the television) -> can Apple (6262ms)\nWho invented television?\tany part\t-6.326093453874757\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be actually use, television) -> (any part, is actually used by, NBC Owned Television Stations) -> any part (6262ms)\nWho invented television?\tthe Doctor\t-6.36224191847922\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the Doctor, will be marketed as, *event television*) -> the Doctor (6262ms)\nWho invented television?\tLevi\t-6.3826456360099675\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Levi, experimented with, television?s visuals) -> Levi (6281ms)\nWho invented television?\ta compelling new platform\t-6.393119904805497\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (a compelling new platform, reinvent, the television experience) -> a compelling new platform (6281ms)\nWho invented television?\tJohn Paul\t-6.411281642573403\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (John Paul, was the perfect pope for, the television age) -> John Paul (6281ms)\nWho invented television?\tthe first in the world\t-6.41308321101499\tWho invented television? -> $x: ($x, invented, television) -> (the first in the world, to invent, a television device) -> the first in the world (6281ms)\nWho invented television?\t10 years\t-6.432643210809441\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (10 years, is actually produced in, TELEVISION PROGRAMS solutions) -> 10 years (6281ms)\nWho invented television?\tthe X-wing Squadron format\t-6.436445618184473\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (the X-wing Squadron format, would be perfect for, television) -> the X-wing Squadron format (6446ms)\nWho invented television?\tMyPrimeTime .com\t-6.463463513741528\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (MyPrimeTime .com, was to create, television programming) -> MyPrimeTime .com (6446ms)\nWho invented television?\tRCA televisions\t-6.464675383808373\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (RCA televisions, are perfect for, the bedroom RCA televisions) -> RCA televisions (6447ms)\nWho invented television?\ta woman?s right\t-6.477118719657865\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (a woman?s right, try to censor, cable television) -> a woman?s right (6447ms)\nWho invented television?\ta weekly magazine program\t-6.479771278861155\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (a weekly magazine program, conceived as, a public television) -> a weekly magazine program (6446ms)\nWho invented television?\tthe 100\t-6.481209527170035\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the 100, are marketed heavily in, print and television ads) -> the 100 (6446ms)\nWho invented television?\tMulder and Scully\t-6.481639439883029\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Mulder and Scully, first made, their television debut way) -> Mulder and Scully (6552ms)\nWho invented television?\tFairge Anma\t-6.484395233366378\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Fairge Anma, is conceived as, a television series) -> Fairge Anma (6552ms)\nWho invented television?\tany other group\t-6.510200809050509\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (any other group, be able to censor, television or radio programs) -> any other group (6552ms)\nWho invented television?\tcycling\t-6.520828084816686\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (cycling, is to create, a television product) -> cycling (6552ms)\nWho invented television?\ta platform\t-6.521234650573556\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (a platform, is the perfect hybrid of, cinema , television) -> a platform (6552ms)\nWho invented television?\tHarvey Radio Labs\t-6.522212805839035\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Harvey Radio Labs, was also experimenting with, television) -> Harvey Radio Labs (6552ms)\nWho invented television?\tthe NTSC\t-6.523588979550521\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (the NTSC, devised, the NTSC television broadcast system) -> the NTSC (6568ms)\nWho invented television?\tTHE DARK\t-6.534199321768269\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (THE DARK, is a perfect example of, 1970s television) -> THE DARK (6568ms)\nWho invented television?\tHD projection TV\t-6.541600549345084\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (HD projection TV, is the perfect way to watch, television) -> HD projection TV (6568ms)\nWho invented television?\tThe HPT\t-6.544946786153316\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, actually buy, television) -> (The HPT, had to actually buy, television time) -> The HPT (6568ms)\nWho invented television?\t?Our intention\t-6.546021586755156\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (?Our intention, is to create, another classic television show) -> ?Our intention (6568ms)\nWho invented television?\tMe-TV\t-6.556696497100161\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Me-TV, is a perfect antidote for, commercial television) -> Me-TV (6568ms)\nWho invented television?\tDeputy Dawg\t-6.562704382037132\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Deputy Dawg, was first introduced on, television) -> Deputy Dawg (6583ms)\nWho invented television?\tNFT?s\t-6.590331169350321\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (NFT?s, patented, NiFTy Online Television player) -> NFT?s (6583ms)\nWho invented television?\tan iPhone\t-6.60493512979501\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (an iPhone, make its first appearance on, a television show) -> an iPhone (6583ms)\nWho invented television?\tTrueCar\t-6.611452223673023\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be relatively new to, television) -> (TrueCar, was relatively new to, television) -> TrueCar (6583ms)\nWho invented television?\tthe Art\t-6.6247151777963555\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, have coin, television) -> (the Art, had coined, the word television) -> the Art (6598ms)\nWho invented television?\tYou?d\t-6.633621715339167\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (You?d, be a perfect guest on, a radio or television show) -> You?d (6598ms)\nWho invented television?\tregurgitated air?conditioner units\t-6.634505901740264\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, skewed, television) -> (regurgitated air?conditioner units, skewed, television aerials) -> regurgitated air?conditioner units (6598ms)\nWho invented television?\tBlog television\t-6.6406953119525305\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Blog television, is reinventing, television standards) -> Blog television (6598ms)\nWho invented television?\tMr. Grand\t-6.649080461447826\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (Mr. Grand, is the former play by, play television announcer) -> Mr. Grand (6668ms)\nWho invented television?\ta stand\t-6.650029215976179\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (a stand, be a perfect fit for, your television) -> a stand (6668ms)\nWho invented television?\tso many people\t-6.651305654170279\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, talk over, television) -> (so many people, talked over, a television broadcast viewable) -> so many people (6668ms)\nWho invented television?\tsmall cliffhangers and climaxes\t-6.667096003822518\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (small cliffhangers and climaxes, are perfect for, television) -> small cliffhangers and climaxes (6668ms)\nWho invented television?\tGrace and Henry\t-6.671642204906975\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Grace and Henry, are the most perfect couple on, television) -> Grace and Henry (6668ms)\nWho invented television?\tPA\t-6.673410630411462\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (PA, patented, the iconoscope television system) -> PA (6668ms)\nWho invented television?\tcomics\t-6.681687549780805\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (comics, tried to censor, television) -> comics (6749ms)\nWho invented television?\tBILL LIBLICK\t-6.686216764614537\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (BILL LIBLICK, is a perfect fit for, daytime television) -> BILL LIBLICK (6749ms)\nWho invented television?\tDon?t\t-6.699052352257033\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (Don?t, be played by, the television media) -> Don?t (6749ms)\nWho invented television?\tDark Films\t-6.700199309595794\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Dark Films, is making its first foray into, television) -> Dark Films (6749ms)\nWho invented television?\tThe Asus LCD panel\t-6.712315306380367\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The Asus LCD panel, would be perfect for, television) -> The Asus LCD panel (6749ms)\nWho invented television?\tleft-wing opinion\t-6.713199492781463\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (left-wing opinion, was outraged by, television images) -> left-wing opinion (6787ms)\nWho invented television?\tThe Word\t-6.714066175733571\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Word, makes its first appearance on, television) -> The Word (6787ms)\nWho invented television?\tV.K. Zworykin\t-6.716218875620758\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, be patent by, $x) -> (An electronic television system, was patented by, V.K. Zworykin) -> V.K. Zworykin (6787ms)\nWho invented television?\tfront ?\t-6.726462499607091\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (front ?, was coined in, a BBC television comedy) -> front ? (6787ms)\nWho invented television?\t1931\t-6.7266378079945985\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was already invented by, 1931) -> 1931 (6787ms)\nWho invented television?\tA Married Couple\t-6.7308834843148695\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, actually create, television) -> (A Married Couple, were actually created for, television) -> A Married Couple (6787ms)\nWho invented television?\tJordi Hidalgo S?nchez\t-6.734420282621551\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, have position, television) -> (Jordi Hidalgo S?nchez, has a position in, television) -> Jordi Hidalgo S?nchez (6845ms)\nWho invented television?\tcrystal encrusted jewellery\t-6.738103698462973\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (crystal encrusted jewellery, is perfect on, television) -> crystal encrusted jewellery (6845ms)\nWho invented television?\tlunch\t-6.743520740142567\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (lunch, made more perfect by, flat screen television) -> lunch (6845ms)\nWho invented television?\tsuch a material\t-6.746799050343787\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (such a material, could be used to create, paper thin televisions) -> such a material (6845ms)\nWho invented television?\tKISS\t-6.759177818066025\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (KISS, made their first mark on, television) -> KISS (6845ms)\nWho invented television?\tradio\t-6.761329895350357\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (radio, plays followed by, television work) -> radio (6845ms)\nWho invented television?\trebuses\t-6.769287678364816\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (rebuses, were popularized by, the television show Concentration) -> rebuses (7048ms)\nWho invented television?\tblogs\t-6.778129647780371\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (blogs, are a perfect extension of, the television mindset) -> blogs (7048ms)\nWho invented television?\tthe Ica stones\t-6.783051114407106\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the Ica stones, was marketed for, cable television) -> the Ica stones (7048ms)\nWho invented television?\tDigital media\t-6.789987741478429\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Digital media, was first introduced with, the Television) -> Digital media (7048ms)\nWho invented television?\tView\t-6.790241910017667\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (View, is the market leader in, coinmeter television retailing) -> View (7048ms)\nWho invented television?\tCablecom and Swisscom\t-6.791008897421566\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Cablecom and Swisscom, are the market leaders for, television) -> Cablecom and Swisscom (7048ms)\nWho invented television?\tSmartPay\t-6.794545695728248\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (SmartPay, is the perfect rental solution for, HD Televisions) -> SmartPay (7165ms)\nWho invented television?\tLe Gai Savoir\t-6.795365314002089\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (Le Gai Savoir, was actually produced for, television) -> Le Gai Savoir (7166ms)\nWho invented television?\tacting and\t-6.798966680436025\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (acting and, made her first appearance on, British television) -> acting and (7165ms)\nWho invented television?\tso many more possibilities\t-6.801619292341609\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, explore on, television) -> (so many more possibilities, were ever explored on, television) -> so many more possibilities (7165ms)\nWho invented television?\tLouis-Dreyfus\t-6.803387665143803\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Louis-Dreyfus, first made her mark on, television) -> Louis-Dreyfus (7166ms)\nWho invented television?\tAC/DC\t-6.805156090648291\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (AC/DC, made their first appearance on, North American television) -> AC/DC (7325ms)\nWho invented television?\tFrye\t-6.8052732896454895\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Frye, has experimented with, television commercials) -> Frye (7326ms)\nWho invented television?\tHDMI cord HDMI cord\t-6.806040277049387\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (HDMI cord HDMI cord, is perfect for, your LED television) -> HDMI cord HDMI cord (7325ms)\nWho invented television?\tfans\t-6.82499215946603\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, be an invention of, $x) -> (Music Television, was an invention of, fans) -> fans (7325ms)\nWho invented television?\tcolor\t-6.847981269406015\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (color, was first introduced to, television) -> color (7326ms)\nWho invented television?\ttoys\t-6.8788636469355\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (toys, are marketed on, television) -> toys (7353ms)\nWho invented television?\tconsumers\t-6.893075355587185\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (consumers, is being marketed on, television) -> consumers (7354ms)\nWho invented television?\tCoral Calcium\t-6.905056131466265\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Coral Calcium, was popularized by, a television infomercial) -> Coral Calcium (7354ms)\nWho invented television?\tMiss Banon\t-6.929679250720421\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Miss Banon, first made her allegations public on, television) -> Miss Banon (7354ms)\nWho invented television?\tBill Oxnard\t-6.965031236390805\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bill Oxnard, had perfected, true three-dimensional television) -> Bill Oxnard (7379ms)\nWho invented television?\tDebt Cures\t-6.997746554849739\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Debt Cures, has been marketed on, television) -> Debt Cures (7379ms)\nWho invented television?\tthe 16 :9 aspect ratio\t-7.024088059721246\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (the 16 :9 aspect ratio, 's perfect on, a widescreen television) -> the 16 :9 aspect ratio (7379ms)\nWho invented television?\t60 inches\t-7.052321745222978\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (60 inches, is the perfect size for, a living room television set) -> 60 inches (7379ms)\nWho invented television?\tLove\t-7.054224817801712\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, actually play, television) -> (Love, Actually plays on, the television) -> Love (7560ms)\nWho invented television?\tMedia consultants\t-7.069375353555982\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (Media consultants, must then devise, television and radio) -> Media consultants (7560ms)\nWho invented television?\tWildlife biology\t-7.082573739552059\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Wildlife biology, has been popularized by, television specials) -> Wildlife biology (7561ms)\nWho invented television?\tmission\t-7.11895427854885\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (mission, is to create, an enhanced television experience) -> mission (7560ms)\nWho invented television?\tApple\t-7.133811662851278\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Apple, could reinvent, television) -> Apple (7560ms)\nWho invented television?\t1965-66\t-7.139098335655315\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (1965-66, was conceived for, television) -> 1965-66 (7598ms)\nWho invented television?\tThe 1,000 lumens lighting\t-7.1762346388220255\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The 1,000 lumens lighting, is perfect for, television coverage) -> The 1,000 lumens lighting (7598ms)\nWho invented television?\tthe BBC\t-7.192554101438306\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (the BBC, has devised, a television channel) -> the BBC (7598ms)\nWho invented television?\tInitially Oxygen8\t-7.200599975175791\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Initially Oxygen8, was marketed on, television) -> Initially Oxygen8 (7598ms)\nWho invented television?\tColleges\t-7.202330087578124\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Colleges, conceive to, television show) -> Colleges (7598ms)\nWho invented television?\tpoop\t-7.24408301479487\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (poop, is a perfect example of, a television show) -> poop (7598ms)\nWho invented television?\tJoost\t-7.260195193274534\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Joost, is reinventing, the television experience) -> Joost (7623ms)\nWho invented television?\tmusic\t-7.287344107344296\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (music, is played indirectly by, the radio or television) -> music (7623ms)\nWho invented television?\tlife\t-7.320123993930484\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (life, is been played by, the biggest music television channel) -> life (7623ms)\nWho invented television?\tadvice\t-7.330669820723273\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (advice, has drawn outraged reaction from, television viewers) -> advice (7648ms)\nWho invented television?\tJapan\t-7.344194008126902\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Japan, first experimented with, a 1025 line television standard) -> Japan (7648ms)\nWho invented television?\tMontana\t-7.361058328684172\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, have position, television) -> (Montana, had found a position as, a television reporter) -> Montana (7648ms)\nWho invented television?\tAlias\t-7.364595126990854\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Alias, are as perfect as, television) -> Alias (7648ms)\nWho invented television?\tthe PSA\t-7.380888229177444\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the PSA, was highly played by, television stations) -> the PSA (7648ms)\nWho invented television?\tshelve\t-7.411196352693921\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (shelve, is perfect for viewing, your television) -> shelve (7648ms)\nWho invented television?\tthe room\t-7.415520292925812\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, come along with, television) -> (the room, comes along with, a 24 inch television) -> the room (7675ms)\nWho invented television?\tsure\t-7.4226263658878056\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (sure, is a great marketing ploy for, campaign television ads) -> sure (7675ms)\nWho invented television?\tVisual images\t-7.4239386327930745\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (Visual images, are used to create, television series) -> Visual images (7675ms)\nWho invented television?\tAl Gore\t-7.425449386317537\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Al Gore, reinventing himself on, television) -> Al Gore (7675ms)\nWho invented television?\tMarty\t-7.42603214568178\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Marty, makes his first appearance on, Fuji Television`) -> Marty (7675ms)\nWho invented television?\tsexuality\t-7.427996105123936\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be glorified in, television) -> (sexuality, is glorified in, television shows) -> sexuality (7701ms)\nWho invented television?\tlegs\t-7.428880344227327\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (legs, is the perfect height for, a television) -> legs (7701ms)\nWho invented television?\tGermany\t-7.445057090834246\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Germany, experimented with, television broadcasting) -> Germany (7701ms)\nWho invented television?\tbachelorette\t-7.448332655860631\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (bachelorette, was popularized by, 1970s television producers) -> bachelorette (7701ms)\nWho invented television?\tEminem\t-7.449478075542024\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (Eminem, has also taken this censor-free concept to, television) -> Eminem (7701ms)\nWho invented television?\tEcclestone\t-7.462840817885038\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Ecclestone, experimented with, a digital television package) -> Ecclestone (7726ms)\nWho invented television?\tpart\t-7.483700586225149\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (part, was played by, public television stations) -> part (7726ms)\nWho invented television?\tBatman\t-7.4857301923076385\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Batman, first made, his television debut) -> Batman (7726ms)\nWho invented television?\tartworks\t-7.504037136961845\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (artworks, were expressly conceived for, the television screen) -> artworks (7726ms)\nWho invented television?\tCostco\t-7.515537769235282\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Costco, was marketed on, daytime television programming) -> Costco (7726ms)\nWho invented television?\tProvo\t-7.529055905686615\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Provo, conceived the idea for, his television set) -> Provo (7727ms)\nWho invented television?\tNancy\t-7.531643896762649\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Nancy, made her first appearance on, television) -> Nancy (7751ms)\nWho invented television?\tSoccer\t-7.544087232612141\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Soccer, is the perfect antidote to, television and video games) -> Soccer (7751ms)\nWho invented television?\tHamas\t-7.573265805466688\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Hamas, made his first appearance on, Gaza television) -> Hamas (7751ms)\nWho invented television?\tthe models\t-7.629535282480779\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (the models, are asked to create, their own television commercial) -> the models (7752ms)\nWho invented television?\tthe kid\t-7.684735548546799\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, can live without, television) -> (the kid, can?t live without, their television) -> the kid (7752ms)\nWho invented television?\tthe records\t-7.706679861837048\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the records, were marketed through, television commercials) -> the records (7775ms)\nWho invented television?\t1968\t-7.773872414901473\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, seek to use, television) -> (1968, sought to use, television) -> 1968 (7775ms)\nWho invented television?\tThe place\t-7.791231486028765\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The place, looks perfect for, your television) -> The place (7775ms)\nWho invented television?\tthe leader\t-7.836463016311418\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (the leader, made his first appearance on, Gaza television) -> the leader (7800ms)\nWho invented television?\tPatridge\t-7.838506224317516\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Patridge, would make her first appearance on, television) -> Patridge (7800ms)\nWho invented television?\t7500\t-7.872445789461405\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (7500, is perfect for watching, television) -> 7500 (7800ms)\nWho invented television?\tDevlin\t-7.933707104215408\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Devlin, made his first foray into, television) -> Devlin (7800ms)\nWho invented television?\tBenny\t-7.954328309102869\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Benny, made his first appearance on, television) -> Benny (7800ms)\nWho invented television?\t2001\t-7.969215571126718\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (2001, was perfect fodder for, the tabloids and television) -> 2001 (7824ms)\nWho invented television?\tThe BBC\t-7.998792277427363\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (The BBC, experiments with, television broadcasting) -> The BBC (7824ms)\nWho invented television?\tAbrams\t-8.017933814513842\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Abrams, made his first attempt at, television production) -> Abrams (7824ms)\nWho invented television?\tCyrus\t-8.017933814513842\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Cyrus, made his first foray into, television) -> Cyrus (7824ms)\nWho invented television?\tWhoever\t-8.018882569042194\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (Whoever, coined, the phase describing television) -> Whoever (7824ms)\nWho invented television?\tVerity\t-8.032145523165529\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (Verity, actually produced one of, the greatest television shows) -> Verity (7824ms)\nWho invented television?\tMorgan\t-8.04318328456641\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Morgan, was first introduced to, television audiences) -> Morgan (7847ms)\nWho invented television?\tFlingo\t-8.05841630178649\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Flingo, is virtually reinventing, television) -> Flingo (7847ms)\nWho invented television?\tthe producers\t-8.090208853841105\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (the producers, can actually produce, a television commercial) -> the producers (7847ms)\nWho invented television?\tSamsung\t-8.098068147393782\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Samsung, is even marketing, 3D televisions) -> Samsung (7847ms)\nWho invented television?\tJerry\t-8.107302368602342\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Jerry, then perfected, the television sit-com format) -> Jerry (7847ms)\nWho invented television?\tCorus\t-8.120073335415288\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Corus, is a market leader in, specialty television and radio) -> Corus (7871ms)\nWho invented television?\tSotir\t-8.124102121032356\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, have position, television) -> (Sotir, has held positions in, television stations) -> Sotir (7871ms)\nWho invented television?\tHepburn\t-8.132944090447912\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Hepburn, made the first of, her several television movies) -> Hepburn (7871ms)\nWho invented television?\tKilmer\t-8.151512215680121\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Kilmer, made his first foray into, television) -> Kilmer (7871ms)\nWho invented television?\tthe role\t-8.155610090021845\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the role, played by, television) -> the role (7871ms)\nWho invented television?\tthe life\t-8.161372081050978\tWho invented television? -> $x: ($x, invented, television) -> $x: (television, be a creation of, $x) -> (Carl Sagan?s television series, is a re-creation of, the life) -> the life (7893ms)\nWho invented television?\tRenae\t-8.162122610600164\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Renae, was first introduced to, television broadcasting) -> Renae (7893ms)\nWho invented television?\tHumphrey\t-8.16703558261833\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Humphrey, made his first appearance on, Australian Television) -> Humphrey (7893ms)\nWho invented television?\tTyler\t-8.184227534139053\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Tyler, made her first appearance on, U.S. television) -> Tyler (7894ms)\nWho invented television?\tIdibia\t-8.188648518846831\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Idibia, made his first appearance on, National Television) -> Idibia (7894ms)\nWho invented television?\tthe growing role\t-8.256792601250261\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the growing role, played by, television) -> the growing role (7917ms)\nWho invented television?\tthe film\t-8.263119402861715\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the film, is marketed on, television) -> the film (7917ms)\nWho invented television?\tthe morning\t-8.304184756128109\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (the morning, outraged at, the Sunday morning television shows) -> the morning (7917ms)\nWho invented television?\tThe model\t-8.400424894601233\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The model, is to create, television) -> The model (7917ms)\nWho invented television?\tthe central role\t-8.418108833432344\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the central role, played by, conventional television) -> the central role (7917ms)\nWho invented television?\tThe plan\t-8.419877206234537\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The plan, is to create, a television network and multimedia) -> The plan (7940ms)\nWho invented television?\tthe dominant role\t-8.428719175650091\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the dominant role, played by, television) -> the dominant role (7940ms)\nWho invented television?\tThe challenge\t-8.435728204136197\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The challenge, was to create, a new television spot) -> The challenge (7940ms)\nWho invented television?\tthe way viewers\t-8.444276079649592\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, be actually use, television) -> (the way viewers, are actually using, television) -> the way viewers (7940ms)\nWho invented television?\tthe characters Jay Ward\t-8.506628368509874\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (the characters Jay Ward, popularized on, television) -> the characters Jay Ward (7940ms)\nWho invented television?\tthe first TV cameras\t-8.545433308961393\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (the first TV cameras, began experimenting with, television) -> the first TV cameras (7940ms)\nWho invented television?\tThe visionary Powel\t-8.55034628097956\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (The visionary Powel, was also experimenting with, television) -> The visionary Powel (7940ms)\nWho invented television?\tThe camera\t-8.566654046099186\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The camera, first made, its television debut) -> The camera (7964ms)\nWho invented television?\tThe project\t-8.57549601551474\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The project, was created to be, a fun and educational television) -> The project (7964ms)\nWho invented television?\tThe aim\t-8.581685425727008\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The aim, is to create a new model of, local television) -> The aim (7964ms)\nWho invented television?\tThe term\t-8.59013514334956\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (The term, was coined by, a local television station) -> The term (7964ms)\nWho invented television?\tThe movement\t-8.60693494848187\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (The movement, has been popularized on, public television) -> The movement (7964ms)\nWho invented television?\tThe size\t-8.613451989657587\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The size, is just perfect for, relaxed television viewing) -> The size (7964ms)\nWho invented television?\tThe latter song\t-8.623242713601496\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (The latter song, was popularized in, the 1970s television show) -> The latter song (7964ms)\nWho invented television?\tthe southern shaft\t-8.628483316583115\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, explore on, television) -> (the southern shaft, was explored on, live television) -> the southern shaft (7964ms)\nWho invented television?\tThe film\t-8.650652860951556\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (The film, was initially conceived for, Yugoslavian television) -> The film (8040ms)\nWho invented television?\tThe picture\t-8.653305420154844\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The picture, is perfect on, both televisions) -> The picture (8039ms)\nWho invented television?\tWhedon\t-9.430233569715792\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive of, television) -> (Whedon, conceived of, the television series) -> Whedon (8039ms)\nWho invented television?\tthe hit Somebody\t-9.857644072763105\tWho invented television? -> $x: ($x, invented, television) -> $x: ($x, know to use, television) -> (the hit Somebody, Used to Know on, television) -> the hit Somebody (8168ms)\nWho invented television?\tpsychic cars\t-10.705537709854115\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (I?ve seen cable television they?ve, invented, psychic cars) -> psychic cars (8168ms)\nWho invented television?\tthe United States versus Russia\t-11.324406833855038\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the television, was invented in, the United States versus Russia) -> the United States versus Russia (8288ms)\nWho invented television?\ta century\t-11.427624316926899\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (televisions, were invented over, a century) -> a century (8289ms)\nWho invented television?\tjet airplane travel\t-11.44560646729908\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television and computers, just invent fast, jet airplane travel) -> jet airplane travel (8289ms)\nWho invented television?\ta means\t-11.466528992895803\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented as, a means) -> a means (8289ms)\nWho invented television?\tmagicians\t-11.751562279626999\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented so, magicians) -> magicians (8319ms)\nWho invented television?\tthe 1920s\t-11.830533997158469\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (televisions, were invented in, the 1920s) -> the 1920s (8319ms)\nWho invented television?\tthe 1930s\t-11.894688195882235\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, the 1930s) -> the 1930s (8319ms)\nWho invented television?\tthe 1950s\t-11.91276438650635\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The television, was invented in, the 1950s) -> the 1950s (8319ms)\nWho invented television?\tthe 1890s\t-11.915734960302219\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was actually invented in, the 1890s) -> the 1890s (8319ms)\nWho invented television?\tthe United States\t-11.943479904924665\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Breakfast television, was invented in, the United States) -> the United States (8319ms)\nWho invented television?\tthe 1950?s\t-11.953755449870027\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The color television, was invented in, the 1950?s) -> the 1950?s (8349ms)\nWho invented television?\thistory\t-12.00838962806067\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (A television interviewer, is inventing, history) -> history (8349ms)\nWho invented television?\tthe 1960s\t-12.022246314825098\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The plasma flat screen television, was invented in, the 1960s) -> the 1960s (8349ms)\nWho invented television?\thundreds\t-12.08706549902379\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Think television, was invented, hundreds) -> hundreds (8349ms)\nWho invented television?\tFrance\t-12.178399091067522\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, France) -> France (8349ms)\nWho invented television?\tScotland\t-12.241538762078926\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (' Telephone and television, were invented in, Scotland) -> Scotland (8349ms)\nWho invented television?\ta means of providing entertainment\t-12.264573034731827\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented as, a means of providing entertainment) -> a means of providing entertainment (8349ms)\nWho invented television?\tyet\t-12.496702924524152\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, been invented, yet) -> yet (8384ms)\nWho invented television?\t1926\t-12.578313074217366\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, 1926) -> 1926 (8384ms)\nWho invented television?\t1939\t-12.581586756985557\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, 1939) -> 1939 (8413ms)\nWho invented television?\t1924\t-12.656643814202688\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented around, 1924) -> 1924 (8413ms)\nWho invented television?\t1855\t-12.686183980354063\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, has n?t been invented yet in, 1855) -> 1855 (8413ms)\nWho invented television?\t1929\t-12.706629505212138\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented prior to, 1929) -> 1929 (8414ms)\nWho invented television?\taround 1935\t-12.727914810477188\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, around 1935) -> around 1935 (8554ms)\nWho invented television?\tcenturies ago\t-12.750384973414139\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the television, was invented, centuries ago) -> centuries ago (8554ms)\nWho invented television?\t1967\t-12.75526038969999\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (standard television, was invented on, 1967) -> 1967 (8554ms)\nWho invented television?\tthe 1930\t-12.762716516330894\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The television, had been invented in, the 1930) -> the 1930 (8554ms)\nWho invented television?\tAmerica\t-12.76895975357823\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, America) -> America (8554ms)\nWho invented television?\tthe radio\t-13.030322765734464\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The television, had n?t been invented so, the radio) -> the radio (8584ms)\nWho invented television?\tthe base\t-13.130336451663961\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The first television, was invented at, the base) -> the base (8584ms)\nWho invented television?\tfirst\t-13.163072273641315\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the television, was invented, first) -> first (8584ms)\nWho invented television?\tinitially\t-13.178670486855355\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented, initially) -> initially (8612ms)\nWho invented television?\tthe act\t-13.373746059561615\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the united states television, was invented in, the act) -> the act (8612ms)\nWho invented television?\tthe early decades\t-13.43080648085363\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the first television set, was invented in, the early decades) -> the early decades (8612ms)\nWho invented television?\tthe war\t-13.454600327900305\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, had been invented just before, the war) -> the war (8612ms)\nWho invented television?\tthe late 1950s\t-13.523893292083581\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (not only color television, was invented in, the late 1950s) -> the late 1950s (8612ms)\nWho invented television?\tthe early 19th century\t-13.775279618783998\tWho invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (TELEVISION Television, was invented in, the early 19th century) -> the early 19th century (8641ms)\nWho invented television?\tManly Mitsubishi\t-13.94462291732042\tWho invented television? -> who [ invent television ] ? -> what organization invent television ? -> $x: ($x, instance of, organization) ($x, invent, television) -> (Manly Mitsubishi, Instance Of, organization) (Mitsubishi, invented, the first rear-projection television) -> Manly Mitsubishi (13713ms)\nWho invented television?\tjunior's\t-14.68424126168278\tWho invented television? -> who [ invent television ] ? -> what organization invent television ? -> $x: ($x, instance of, organization) ($x, invent, television) -> (junior's, Instance Of, organization) (Junior, invented, the television) -> junior's (13713ms)\nWho invented television?\tMitsubishi Corp\t-14.820898318788146\tWho invented television? -> who [ invent television ] ? -> what organization invent television ? -> $x: ($x, instance of, organization) ($x, invent, television) -> (Mitsubishi Corp, Instance Of, organization) (Mitsubishi, invented, the first rear-projection television) -> Mitsubishi Corp (13713ms)\nWho invented television?\tBe Someone\t-14.832776802822465\tWho invented television? -> who [ invent television ] ? -> what organization invent television ? -> $x: ($x, instance of, organization) ($x, invent, television) -> (Be Someone, Instance Of, organization) (someone, had just invented, colour television) -> Be Someone (13713ms)\nWhat are enzymes?\tproject-independent tool\t-5.3648011674571325\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, project-independent tool) -> project-independent tool (4167ms)\nWhat are enzymes?\tagent-reactive catalyst\t-5.3648011674571325\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, agent-reactive catalyst) -> agent-reactive catalyst (4167ms)\nWhat are enzymes?\tphysiologically-active substance\t-5.3648011674571325\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, physiologically-active substance) -> physiologically-active substance (4167ms)\nWhat are enzymes?\tbiological catalyst\t-5.6302419753692465\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological catalyst) -> biological catalyst (4168ms)\nWhat are enzymes?\tbiological product\t-5.655698910429229\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological product) -> biological product (4167ms)\nWhat are enzymes?\ttarget molecule\t-5.720014078603011\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, target molecule) -> target molecule (4167ms)\nWhat are enzymes?\thigh quality supplement\t-5.737340765561768\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, high quality supplement) -> high quality supplement (4324ms)\nWhat are enzymes?\tnon-radioactive label\t-5.743034220056205\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, non-radioactive label) -> non-radioactive label (4322ms)\nWhat are enzymes?\tcomplex organic molecule\t-5.751673923770983\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, complex organic molecule) -> complex organic molecule (4322ms)\nWhat are enzymes?\tgroup of protein\t-5.784801611745147\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, group of protein) -> group of protein (4322ms)\nWhat are enzymes?\tproteinaceous biological catalyst\t-5.788734038672018\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, proteinaceous biological catalyst) -> proteinaceous biological catalyst (4322ms)\nWhat are enzymes?\tmoredifferent surface molecule\t-5.788734038672018\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, moredifferent surface molecule) -> moredifferent surface molecule (4359ms)\nWhat are enzymes?\tactive biological agent\t-5.788734038672018\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, active biological agent) -> active biological agent (4359ms)\nWhat are enzymes?\tphysiologically active protein\t-5.788734038672018\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, physiologically active protein) -> physiologically active protein (4359ms)\nWhat are enzymes?\taerobic process additive\t-5.788734038672018\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, aerobic process additive) -> aerobic process additive (4323ms)\nWhat are enzymes?\theat-sensitive bioactive agent\t-5.797854797519154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, heat-sensitive bioactive agent) -> heat-sensitive bioactive agent (4395ms)\nWhat are enzymes?\tregulator of aggressive Breast Cancer DevelopmentScienceDaily researcher\t-5.797854797519154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, regulator of aggressive Breast Cancer DevelopmentScienceDaily researcher) -> regulator of aggressive Breast Cancer DevelopmentScienceDaily researcher (4359ms)\nWhat are enzymes?\tkind of macromolecule activated protein\t-5.797854797519154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, kind of macromolecule activated protein) -> kind of macromolecule activated protein (4395ms)\nWhat are enzymes?\tbody's protective compound\t-5.797854797519154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, body's protective compound) -> body's protective compound (4359ms)\nWhat are enzymes?\ttype of a protein molecule\t-5.797854797519154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, type of a protein molecule) -> type of a protein molecule (4359ms)\nWhat are enzymes?\tsoluble, colloidal, organic catalyst\t-5.797854797519154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, soluble, colloidal, organic catalyst) -> soluble, colloidal, organic catalyst (4395ms)\nWhat are enzymes?\tpowerful and specific catalyst\t-5.797854797519154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, powerful and specific catalyst) -> powerful and specific catalyst (4395ms)\nWhat are enzymes?\tcertified organic ingredient\t-5.807535255708735\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, certified organic ingredient) -> certified organic ingredient (4395ms)\nWhat are enzymes?\tnonimmunologic antibacterial salivary content\t-5.818418628538154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nonimmunologic antibacterial salivary content) -> nonimmunologic antibacterial salivary content (4395ms)\nWhat are enzymes?\tsource of energy\t-5.820624437198207\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, source of energy) -> source of energy (4470ms)\nWhat are enzymes?\tconvenient source of information\t-5.825273239694954\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, convenient source of information) -> convenient source of information (4470ms)\nWhat are enzymes?\treadable indicator label\t-5.829861700710017\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, readable indicator label) -> readable indicator label (4470ms)\nWhat are enzymes?\tsoil biochemical property\t-5.829861700710017\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, soil biochemical property) -> soil biochemical property (4470ms)\nWhat are enzymes?\tnovel experimental therapeutic agent\t-5.838982459557154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, novel experimental therapeutic agent) -> novel experimental therapeutic agent (4470ms)\nWhat are enzymes?\tpolymer of Amino Acids\t-5.838982459557154\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, polymer of Amino Acids) -> polymer of Amino Acids (4470ms)\nWhat are enzymes?\tcatalytic protein\t-5.890353092755625\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, catalytic protein) -> catalytic protein (4569ms)\nWhat are enzymes?\tregulatory protein\t-5.918367317919226\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, regulatory protein) -> regulatory protein (4569ms)\nWhat are enzymes?\tchemical substance\t-5.921865970418829\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical substance) -> chemical substance (4569ms)\nWhat are enzymes?\tstructural protein\t-5.990746490433155\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, structural protein) -> structural protein (4569ms)\nWhat are enzymes?\tchemical species\t-6.008864525794162\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical species) -> chemical species (4569ms)\nWhat are enzymes?\tbody structure\t-6.02838528339291\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, body structure) -> body structure (4569ms)\nWhat are enzymes?\tlarge polymer\t-6.032955023959827\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, large polymer) -> large polymer (4597ms)\nWhat are enzymes?\tactive protein\t-6.052147932992607\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, active protein) -> active protein (4597ms)\nWhat are enzymes?\tplant protein\t-6.059467315355711\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, plant protein) -> plant protein (4597ms)\nWhat are enzymes?\tlabel moiety\t-6.060373464909927\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, label moiety) -> label moiety (4597ms)\nWhat are enzymes?\tcleaning additive\t-6.069357389981554\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, cleaning additive) -> cleaning additive (4597ms)\nWhat are enzymes?\tbioactive molecule\t-6.083458303065516\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, bioactive molecule) -> bioactive molecule (4597ms)\nWhat are enzymes?\tlarge protein\t-6.085808455041894\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, large protein) -> large protein (4625ms)\nWhat are enzymes?\tbiological characteristic\t-6.086573620231551\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological characteristic) -> biological characteristic (4625ms)\nWhat are enzymes?\tbiotechnology product\t-6.091292144212474\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biotechnology product) -> biotechnology product (4625ms)\nWhat are enzymes?\tnatural treatment\t-6.091463509307538\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, natural treatment) -> natural treatment (4626ms)\nWhat are enzymes?\tamino group\t-6.092673860937212\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, amino group) -> amino group (4626ms)\nWhat are enzymes?\tcomplex product\t-6.094666721409323\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, complex product) -> complex product (4626ms)\nWhat are enzymes?\tnonradioactive label\t-6.1002031365100535\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nonradioactive label) -> nonradioactive label (4719ms)\nWhat are enzymes?\toptional component\t-6.101127963812674\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, optional component) -> optional component (4719ms)\nWhat are enzymes?\traw ingredient\t-6.104345993918422\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, raw ingredient) -> raw ingredient (4719ms)\nWhat are enzymes?\tnatural substance\t-6.132410422424304\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, natural substance) -> natural substance (4720ms)\nWhat are enzymes?\tdetergent ingredient\t-6.137548200713661\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, detergent ingredient) -> detergent ingredient (4719ms)\nWhat are enzymes?\t2-component cleaning system important component\t-6.145518302864748\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, 2-component cleaning system important component) -> 2-component cleaning system important component (4719ms)\nWhat are enzymes?\trigid macromolecule\t-6.155023713973003\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, rigid macromolecule) -> rigid macromolecule (4734ms)\nWhat are enzymes?\tmicrobiological system\t-6.155023713973003\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, microbiological system) -> microbiological system (4734ms)\nWhat are enzymes?\tcellular product\t-6.155023713973003\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, cellular product) -> cellular product (4734ms)\nWhat are enzymes?\tphotosynthetic component\t-6.155023713973003\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, photosynthetic component) -> photosynthetic component (4735ms)\nWhat are enzymes?\thuge protein\t-6.1595934542334945\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, huge protein) -> huge protein (4734ms)\nWhat are enzymes?\tfood factor\t-6.1595934542334945\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, food factor) -> food factor (4734ms)\nWhat are enzymes?\thealth food\t-6.1659104486186855\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, health food) -> health food (4767ms)\nWhat are enzymes?\t6 letter word\t-6.168187824929217\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, 6 letter word) -> 6 letter word (4767ms)\nWhat are enzymes?\tmanagement strategy\t-6.16852647082513\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, management strategy) -> management strategy (4767ms)\nWhat are enzymes?\tchemical contaminant\t-6.169307572564149\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical contaminant) -> chemical contaminant (4767ms)\nWhat are enzymes?\tprotein class\t-6.171474779033343\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, protein class) -> protein class (4767ms)\nWhat are enzymes?\tpharmaceutical product\t-6.174005711930979\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, pharmaceutical product) -> pharmaceutical product (4767ms)\nWhat are enzymes?\tanimal protein\t-6.1743181722377845\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, animal protein) -> animal protein (4784ms)\nWhat are enzymes?\tskin treatment\t-6.176823621609984\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, skin treatment) -> skin treatment (4783ms)\nWhat are enzymes?\tvariable factor\t-6.179098442074003\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, variable factor) -> variable factor (4783ms)\nWhat are enzymes?\tyeast product\t-6.180333045400772\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, yeast product) -> yeast product (4784ms)\nWhat are enzymes?\texternal stimulus\t-6.180420518695775\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, external stimulus) -> external stimulus (4783ms)\nWhat are enzymes?\tproteinaceous molecule\t-6.196151376011002\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, proteinaceous molecule) -> proteinaceous molecule (4784ms)\nWhat are enzymes?\tdetection method\t-6.196927371484474\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, detection method) -> detection method (4817ms)\nWhat are enzymes?\tviral protein\t-6.2011780887347765\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, viral protein) -> viral protein (4818ms)\nWhat are enzymes?\tserine hydrolases\t-6.204376910379723\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, serine hydrolases) -> serine hydrolases (4818ms)\nWhat are enzymes?\tBiosystems\t-6.403906824494506\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, Biosystems) -> Biosystems (4818ms)\nWhat are enzymes?\tBabor Cosmetics America\t-6.530798978475009\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Babor Cosmetics America, Drugs manufactured, BABOR Baborganic Biological Enzyme Cleanser 0.375 powder) -> Babor Cosmetics America (4954ms)\nWhat are enzymes?\tbiological new molecule\t-6.5483108354615105\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological new molecule) -> biological new molecule (4818ms)\nWhat are enzymes?\tSamjoko Skyblue\t-6.678190441444729\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Samjoko Skyblue, Drugs manufactured, E Enzyme 1.2 dentifrice paste) -> Samjoko Skyblue (4954ms)\nWhat are enzymes?\tFDA OTC monograph part 355\t-7.155023713973003\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (FDA OTC monograph part 355, Drugs regulated, E Enzyme 1.2 dentifrice paste) -> FDA OTC monograph part 355 (5035ms)\nWhat are enzymes?\tFDA OTC monograph part 310.545\t-7.155023713973003\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (FDA OTC monograph part 310.545, Drugs regulated, BABOR Baborganic Biological Enzyme Cleanser 0.375 powder) -> FDA OTC monograph part 310.545 (5034ms)\nWhat are enzymes?\tmolecule\t-7.639845419736783\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, molecule) -> molecule (5162ms)\nWhat are enzymes?\tprotein\t-7.666612116648472\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, protein) -> protein (5162ms)\nWhat are enzymes?\tchemical\t-7.754831395966798\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical) -> chemical (5162ms)\nWhat are enzymes?\tsubstance\t-7.805310078196275\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, substance) -> substance (5162ms)\nWhat are enzymes?\tVitamin C\t-7.834450529481106\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be great source of, $x) -> (more enzymes, are a great source of, Vitamin C) -> Vitamin C (5176ms)\nWhat are enzymes?\tnutrient\t-7.902380610605514\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nutrient) -> nutrient (5176ms)\nWhat are enzymes?\tdigestive enzymes\t-7.911965674365272\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a class of, $x) -> (Pancreatic enzymes, are a class of, digestive enzymes) -> digestive enzymes (5176ms)\nWhat are enzymes?\torganism\t-7.944481298239428\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, organism) -> organism (5176ms)\nWhat are enzymes?\titem\t-8.010738327055265\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, item) -> item (5176ms)\nWhat are enzymes?\tproduct\t-8.049066635039278\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, product) -> product (5184ms)\nWhat are enzymes?\tdietary fiber\t-8.066188559584777\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be great source of, $x) -> (digestive enzymes, is a great source of, dietary fiber) -> dietary fiber (5184ms)\nWhat are enzymes?\tsolution\t-8.071288430919829\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, solution) -> solution (5184ms)\nWhat are enzymes?\talternative\t-8.108731082838489\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, alternative) -> alternative (5184ms)\nWhat are enzymes?\tdatabase\t-8.109663182477966\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, database) -> database (5184ms)\nWhat are enzymes?\telement\t-8.223164162034369\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, element) -> element (5193ms)\nWhat are enzymes?\tmarker\t-8.267302833026934\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, marker) -> marker (5193ms)\nWhat are enzymes?\tVitamin B6\t-8.279991288961991\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (Vitamin B6, is an integral element for, 100 enzymes) -> Vitamin B6 (5193ms)\nWhat are enzymes?\tengine\t-8.293312381837715\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, engine) -> engine (5193ms)\nWhat are enzymes?\tsubtance\t-8.38634488001022\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, subtance) -> subtance (5193ms)\nWhat are enzymes?\tmoiety\t-8.405027052788226\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, moiety) -> moiety (5200ms)\nWhat are enzymes?\tspeciality\t-8.409527952536305\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, speciality) -> speciality (5200ms)\nWhat are enzymes?\ttarget\t-8.410177833301518\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, target) -> target (5200ms)\nWhat are enzymes?\tfunction\t-8.415401802803842\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzymes, Instance Of, function) -> function (5200ms)\nWhat are enzymes?\tquantum mechanics\t-8.422863695973096\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (the enzyme, is modeled with, quantum mechanics) -> quantum mechanics (5200ms)\nWhat are enzymes?\tname\t-8.426461897983934\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzymes, Instance Of, name) -> name (5208ms)\nWhat are enzymes?\tbacterial activity\t-8.707079581065733\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (Enzyme production, is a by-product of, bacterial activity) -> bacterial activity (5208ms)\nWhat are enzymes?\tprotease enzymes\t-8.777869353542824\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a class of, $x) -> (Proteolytic enzymes, are a special class of, protease enzymes) -> protease enzymes (5208ms)\nWhat are enzymes?\ta living organism\t-8.804199159550759\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (An enzyme, is a substance produced by, a living organism) -> a living organism (5208ms)\nWhat are enzymes?\tSelenium\t-8.981015883541492\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (Selenium, is an essential element in, enzyme production) -> Selenium (5251ms)\nWhat are enzymes?\tBioMarin\t-9.17693927219546\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (BioMarin, makes drugs for extremely, rare enzyme disorders) -> BioMarin (5259ms)\nWhat are enzymes?\tRecent results\t-9.270573810738968\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Recent results, have linked the drug to, an enzyme) -> Recent results (5259ms)\nWhat are enzymes?\tthe body?s cells\t-10.1811113368184\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (An enzyme, is a protein made by, the body?s cells) -> the body?s cells (5320ms)\nWhat are enzymes?\tproteins\t-10.20489288968371\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a class of, $x) -> (Enzymes, are a class of, proteins) -> proteins (5321ms)\nWhat are enzymes?\tantioxidants\t-10.21409763876759\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be good source of, $x) -> (other enzymes, are considered to be good source of, antioxidants) -> antioxidants (5320ms)\nWhat are enzymes?\tiron\t-10.284728033469163\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be good source of, $x) -> (enzymes, are a good source of, iron) -> iron (5319ms)\nWhat are enzymes?\tthe heart\t-10.316416897980515\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (Co-Enzyme Q 10, is a nutrient required by, the heart) -> the heart (5326ms)\nWhat are enzymes?\tinformation\t-10.33876955509335\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be great source of, $x) -> (a common enzyme deficiency, was a great source of, information) -> information (5327ms)\nWhat are enzymes?\tI and phase II\t-10.418473740249084\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (I and phase II, drug-metabolizing, enzymes) -> I and phase II (5333ms)\nWhat are enzymes?\tCambridge University Press\t-10.593330306497545\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Cambridge University Press, Book editions published, Enzymes) -> Cambridge University Press (10127ms)\nWhat are enzymes?\tfermentation\t-10.61016517005531\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (the enzyme, is a by-product of, fermentation) -> fermentation (5334ms)\nWhat are enzymes?\tPhase II\t-10.615161170337966\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Phase II, drug-metabolizing, enzymes) -> Phase II (5334ms)\nWhat are enzymes?\tgamers\t-10.70131603439906\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (the enzyme, was modeled by, gamers) -> gamers (5334ms)\nWhat are enzymes?\tBioengineered protein drugs\t-10.702779412663178\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Bioengineered protein drugs, Editions, Bioengineered protein drugs: enzymes) -> Bioengineered protein drugs (10127ms)\nWhat are enzymes?\tAutomated enzyme assays\t-10.702779412663178\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Automated enzyme assays, Edition Of, Automated enzyme assays) -> Automated enzyme assays (11084ms)\nWhat are enzymes?\tMicrobial enzyme production\t-10.702779412663178\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Microbial enzyme production, Edition Of, Microbial enzyme production) -> Microbial enzyme production (10368ms)\nWhat are enzymes?\tVirus induced enzymes\t-10.702779412663178\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Virus induced enzymes, Edition Of, Virus induced enzymes) -> Virus induced enzymes (10368ms)\nWhat are enzymes?\tFibrinolytic enzyme manufacture\t-10.702779412663178\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Fibrinolytic enzyme manufacture, Edition Of, Fibrinolytic enzyme manufacture) -> Fibrinolytic enzyme manufacture (10368ms)\nWhat are enzymes?\tAllosteric regulatory enzymes\t-10.702779412663178\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Allosteric regulatory enzymes, Edition Of, Allosteric regulatory enzymes) -> Allosteric regulatory enzymes (10368ms)\nWhat are enzymes?\tcopper\t-10.738987406791523\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (copper, is an essential element in, many enzyme systems) -> copper (5334ms)\nWhat are enzymes?\tHydrolytic Enzymes\t-10.740721769467264\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Hydrolytic Enzymes (New Comprehensive Biochemistry), Edition Of, Hydrolytic Enzymes) -> Hydrolytic Enzymes (12615ms)\nWhat are enzymes?\tDigestive Enzymes\t-10.740721769467264\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Digestive Enzymes (Good Health Guide Series), Edition Of, Digestive Enzymes) -> Digestive Enzymes (11084ms)\nWhat are enzymes?\tEnzyme Handbook\t-10.740721769467264\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme Handbook, Editions, Enzyme Handbook) -> Enzyme Handbook (12615ms)\nWhat are enzymes?\tProteolytic Enzymes\t-10.740721769467264\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Proteolytic Enzymes: A Practical Approach, Edition Of, Proteolytic Enzymes) -> Proteolytic Enzymes (9313ms)\nWhat are enzymes?\tzinc\t-10.754621350060013\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (zinc, is a key element of, enzymes) -> zinc (5419ms)\nWhat are enzymes?\tAllosteric enzymes : kinetic behaviour\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Allosteric enzymes, Editions, Allosteric enzymes : kinetic behaviour) -> Allosteric enzymes : kinetic behaviour (16864ms)\nWhat are enzymes?\tEnzyme Regulation and Metabolic Diseases\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzyme Regulation and Metabolic Diseases, Edition Of, Enzyme Regulation and Metabolic Diseases) -> Enzyme Regulation and Metabolic Diseases (16623ms)\nWhat are enzymes?\tProteins, enzymes, genes : the interplay of chemistry and biology\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Proteins, enzymes, genes : the interplay of chemistry and biology, Edition Of, Proteins, enzymes, genes) -> Proteins, enzymes, genes : the interplay of chemistry and biology (16456ms)\nWhat are enzymes?\tEnzyme structure and function\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzyme structure and function, Edition Of, Enzyme structure and function) -> Enzyme structure and function (16692ms)\nWhat are enzymes?\tPractice and theory of enzyme immunoassays\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Practice and theory of enzyme immunoassays, Edition Of, Practice and theory of enzyme immunoassays) -> Practice and theory of enzyme immunoassays (16864ms)\nWhat are enzymes?\tEnzyme kinetics; open and closed systems\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme kinetics; open and closed systems, Edition Of, Enzyme kinetics) -> Enzyme kinetics; open and closed systems (17545ms)\nWhat are enzymes?\tEnzymes; properties, distribution, methods and applications\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes; properties, distribution, methods and applications, Edition Of, Enzymes) -> Enzymes; properties, distribution, methods and applications (15973ms)\nWhat are enzymes?\tImmobilized enzymes, preparation and engineering: recent advances\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Immobilized enzymes, preparation and engineering: recent advances, Edition Of, Immobilized enzymes, preparation and engineering) -> Immobilized enzymes, preparation and engineering: recent advances (16456ms)\nWhat are enzymes?\tEnzymes: Nature's Energizers\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes: Nature's Energizers, Edition Of, Enzymes) -> Enzymes: Nature's Energizers (16278ms)\nWhat are enzymes?\tEnzymes and enzyme therapy: how to jump start your way to lifelong good health\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzymes and enzyme therapy, Editions, Enzymes and enzyme therapy: how to jump start your way to lifelong good health) -> Enzymes and enzyme therapy: how to jump start your way to lifelong good health (16455ms)\nWhat are enzymes?\tMulti-enzyme systems\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Multi-enzyme systems, Edition Of, Multi-enzyme systems) -> Multi-enzyme systems (17545ms)\nWhat are enzymes?\tHandbook of enzyme biotechnology\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Handbook of enzyme biotechnology, Edition Of, Handbook of enzyme biotechnology) -> Handbook of enzyme biotechnology (16692ms)\nWhat are enzymes?\tEnzyme kinetics : physical bases, data analysis and uses\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme kinetics, Editions, Enzyme kinetics : physical bases, data analysis and uses) -> Enzyme kinetics : physical bases, data analysis and uses (16864ms)\nWhat are enzymes?\tThe Enzymes: Control by Phosphorylation, Part B\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (The Enzymes: Control by Phosphorylation, Part B: Specific Enzymes, Edition Of, The Enzymes: Control by Phosphorylation, Part B) -> The Enzymes: Control by Phosphorylation, Part B (16950ms)\nWhat are enzymes?\tIndustrial enzymes: recent advances\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Industrial enzymes, Editions, Industrial enzymes: recent advances) -> Industrial enzymes: recent advances (16692ms)\nWhat are enzymes?\tIndustrial Enzymes from Microbial Sources: Recent Advances (Chemical technology review)\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Industrial Enzymes from Microbial Sources, Editions, Industrial Enzymes from Microbial Sources: Recent Advances (Chemical technology review)) -> Industrial Enzymes from Microbial Sources: Recent Advances (Chemical technology review) (16120ms)\nWhat are enzymes?\tAllgemeine chemie der enzyme\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Allgemeine chemie der enzyme, Editions, Allgemeine chemie der enzyme) -> Allgemeine chemie der enzyme (15171ms)\nWhat are enzymes?\tEnzyme immunoassays : from concept to product development\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzyme immunoassays : from concept to product development, Edition Of, Enzyme immunoassays) -> Enzyme immunoassays : from concept to product development (16692ms)\nWhat are enzymes?\tEnzyme kinetics : from diastase to multi-enzyme systems\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzyme kinetics : from diastase to multi-enzyme systems, Edition Of, Enzyme kinetics) -> Enzyme kinetics : from diastase to multi-enzyme systems (15172ms)\nWhat are enzymes?\tDigestive Enzymes (Good Health Guide Series)\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Digestive Enzymes (Good Health Guide Series), Edition Of, Digestive Enzymes) -> Digestive Enzymes (Good Health Guide Series) (15772ms)\nWhat are enzymes?\tEnzyme synthesis and degradation in mammalian systems\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzyme synthesis and degradation in mammalian systems, Edition Of, Enzyme synthesis and degradation in mammalian systems) -> Enzyme synthesis and degradation in mammalian systems (14963ms)\nWhat are enzymes?\tEnzyme kinetics : principles and methods\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme kinetics, Editions, Enzyme kinetics : principles and methods) -> Enzyme kinetics : principles and methods (16547ms)\nWhat are enzymes?\tHandbook of Enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Handbook of Enzymes, Editions, Handbook of Enzymes) -> Handbook of Enzymes (15973ms)\nWhat are enzymes?\tAnalysis of enzyme kinetic data\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Analysis of enzyme kinetic data, Edition Of, Analysis of enzyme kinetic data) -> Analysis of enzyme kinetic data (16278ms)\nWhat are enzymes?\tEnzymes : biochemistry, biotechnology and clinical chemistry\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes : biochemistry, biotechnology and clinical chemistry, Edition Of, Enzymes) -> Enzymes : biochemistry, biotechnology and clinical chemistry (16216ms)\nWhat are enzymes?\tFood enzymes: the missing link to radiant health\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Food enzymes, Editions, Food enzymes: the missing link to radiant health) -> Food enzymes: the missing link to radiant health (17545ms)\nWhat are enzymes?\tImmuno enzyme techniques in cytochemistry\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Immuno enzyme techniques in cytochemistry, Edition Of, Immuno enzyme techniques in cytochemistry) -> Immuno enzyme techniques in cytochemistry (16950ms)\nWhat are enzymes?\tEnzymes, nature's energizer\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzymes, nature's energizer, Edition Of, Enzymes, nature's energizer) -> Enzymes, nature's energizer (16692ms)\nWhat are enzymes?\tMechanism-based enzyme inactivation: chemistry and enzymology\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Mechanism-based enzyme inactivation: chemistry and enzymology, Edition Of, Mechanism-based enzyme inactivation) -> Mechanism-based enzyme inactivation: chemistry and enzymology (12869ms)\nWhat are enzymes?\tAcute trauma and systemic enzyme therapy\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Acute trauma and systemic enzyme therapy, Edition Of, Acute trauma and systemic enzyme therapy) -> Acute trauma and systemic enzyme therapy (14822ms)\nWhat are enzymes?\tTopics Enzyme Fermentation Vol\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Topics Enzyme Fermentation Vol, Editions, Topics Enzyme Fermentation Vol) -> Topics Enzyme Fermentation Vol (16278ms)\nWhat are enzymes?\tMarkets for bugs and enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Markets for bugs and enzymes, Edition Of, Markets for bugs and enzymes) -> Markets for bugs and enzymes (17545ms)\nWhat are enzymes?\tPractical Guide to Protein & Enzyme\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Practical Guide to Protein & Enzyme, Edition Of, Practical Guide to Protein & Enzyme) -> Practical Guide to Protein & Enzyme (15973ms)\nWhat are enzymes?\tEnzymes, growth and cancer\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzymes, growth and cancer, Editions, Enzymes, growth and cancer) -> Enzymes, growth and cancer (15172ms)\nWhat are enzymes?\tThermodynamic Kinetic Aspects of Enzyme\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Thermodynamic Kinetic Aspects of Enzyme, Edition Of, Thermodynamic Kinetic Aspects of Enzyme) -> Thermodynamic Kinetic Aspects of Enzyme (16623ms)\nWhat are enzymes?\tHandbook of enzyme electrophoresis in human genetics\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Handbook of enzyme electrophoresis in human genetics, Edition Of, Handbook of enzyme electrophoresis in human genetics) -> Handbook of enzyme electrophoresis in human genetics (15172ms)\nWhat are enzymes?\tEnzyme induction by viruses\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme induction by viruses, Editions, Enzyme induction by viruses) -> Enzyme induction by viruses (14822ms)\nWhat are enzymes?\tBugs & enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Bugs & enzymes, Edition Of, Bugs & enzymes) -> Bugs & enzymes (16623ms)\nWhat are enzymes?\tCrystalline enzymes; the chemistry of pepsin, trypsin, and bacteriophage\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Crystalline enzymes; the chemistry of pepsin, trypsin, and bacteriophage, Edition Of, Crystalline enzymes) -> Crystalline enzymes; the chemistry of pepsin, trypsin, and bacteriophage (16864ms)\nWhat are enzymes?\tSource book of enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Source book of enzymes, Edition Of, Source book of enzymes) -> Source book of enzymes (16120ms)\nWhat are enzymes?\tTheM ethuselah enzyme\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (ethuselah enzyme, Editions, TheM ethuselah enzyme) -> TheM ethuselah enzyme (16692ms)\nWhat are enzymes?\tChemistry and methods of enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Chemistry and methods of enzymes, Edition Of, Chemistry and methods of enzymes) -> Chemistry and methods of enzymes (16623ms)\nWhat are enzymes?\tPrinciples of enzyme kinetics\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Principles of enzyme kinetics, Editions, Principles of enzyme kinetics) -> Principles of enzyme kinetics (16864ms)\nWhat are enzymes?\tEnzyme structure and mechanism\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme structure and mechanism, Editions, Enzyme structure and mechanism) -> Enzyme structure and mechanism (17545ms)\nWhat are enzymes?\tIntroduction to the chemistry of enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Introduction to the chemistry of enzymes, Edition Of, Introduction to the chemistry of enzymes) -> Introduction to the chemistry of enzymes (17545ms)\nWhat are enzymes?\tEnzymes in Metabolic Pathways: A Comparative Study of Mechanism, Structure, Evolution, and Control\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes in Metabolic Pathways: A Comparative Study of Mechanism, Structure, Evolution, and Control, Edition Of, Enzymes in Metabolic Pathways) -> Enzymes in Metabolic Pathways: A Comparative Study of Mechanism, Structure, Evolution, and Control (15973ms)\nWhat are enzymes?\tDigestive Enzymes (Woodland Health)\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Digestive Enzymes (Woodland Health), Edition Of, Digestive Enzymes) -> Digestive Enzymes (Woodland Health) (16456ms)\nWhat are enzymes?\tOutlines of enzyme chemistry\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Outlines of enzyme chemistry, Edition Of, Outlines of enzyme chemistry) -> Outlines of enzyme chemistry (16950ms)\nWhat are enzymes?\tProteolytic Enzymes: A Practical Approach\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Proteolytic Enzymes, Editions, Proteolytic Enzymes: A Practical Approach) -> Proteolytic Enzymes: A Practical Approach (16455ms)\nWhat are enzymes?\tElectroenzymatic synthesis using flavin-containing enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Electroenzymatic synthesis using flavin-containing enzymes, Edition Of, Electroenzymatic synthesis using flavin-containing enzymes) -> Electroenzymatic synthesis using flavin-containing enzymes (16042ms)\nWhat are enzymes?\tBehavior of enzyme systems\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Behavior of enzyme systems, Editions, Behavior of enzyme systems) -> Behavior of enzyme systems (16623ms)\nWhat are enzymes?\tEnzymes: The Sparks of Life (Natural Health Guide)\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzymes, Editions, Enzymes: The Sparks of Life (Natural Health Guide)) -> Enzymes: The Sparks of Life (Natural Health Guide) (16950ms)\nWhat are enzymes?\tFundamentals of enzyme kinetics\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Fundamentals of enzyme kinetics, Edition Of, Fundamentals of Enzyme Kinetics) -> Fundamentals of enzyme kinetics (16951ms)\nWhat are enzymes?\tImmobilized Enzyme Cell Technol\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Immobilized Enzyme Cell Technol, Editions, Immobilized Enzyme Cell Technol) -> Immobilized Enzyme Cell Technol (16864ms)\nWhat are enzymes?\tEnzyme Kinetics and Mechanism\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme Kinetics and Mechanism, Editions, Enzyme Kinetics and Mechanism) -> Enzyme Kinetics and Mechanism (16950ms)\nWhat are enzymes?\tEnzyme catalysis and regulation\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme catalysis and regulation, Editions, Enzyme catalysis and regulation) -> Enzyme catalysis and regulation (15113ms)\nWhat are enzymes?\tEnzymes in action\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzymes in action, Edition Of, Enzymes in action) -> Enzymes in action (17544ms)\nWhat are enzymes?\tEnzymes: Biochemistry, Biotechnology and Clinical Chemistry (Horwood Chemical Science)\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzymes, Editions, Enzymes: Biochemistry, Biotechnology and Clinical Chemistry (Horwood Chemical Science)) -> Enzymes: Biochemistry, Biotechnology and Clinical Chemistry (Horwood Chemical Science) (16278ms)\nWhat are enzymes?\tHydrolytic Enzymes (New Comprehensive Biochemistry)\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Hydrolytic Enzymes, Editions, Hydrolytic Enzymes (New Comprehensive Biochemistry)) -> Hydrolytic Enzymes (New Comprehensive Biochemistry) (15771ms)\nWhat are enzymes?\tKinetics of enzyme mechanisms\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Kinetics of enzyme mechanisms, Edition Of, Kinetics of enzyme mechanisms) -> Kinetics of enzyme mechanisms (16043ms)\nWhat are enzymes?\tEnzymes in metabolic pathways : a comparative study of mechanism, structure, evolution, and control\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes in metabolic pathways : a comparative study of mechanism, structure, evolution, and control, Edition Of, Enzymes in Metabolic Pathways) -> Enzymes in metabolic pathways : a comparative study of mechanism, structure, evolution, and control (12615ms)\nWhat are enzymes?\tDigestive Enzymes: The Key to Good Health and Longevity (Woodland Health)\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Digestive Enzymes: The Key to Good Health and Longevity (Woodland Health), Edition Of, Digestive Enzymes) -> Digestive Enzymes: The Key to Good Health and Longevity (Woodland Health) (16623ms)\nWhat are enzymes?\tBiomedical Applications of Immobilized Enzymes and Proteins\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Biomedical Applications of Immobilized Enzymes and Proteins, Edition Of, Biomedical Applications of Immobilized Enzymes and Proteins) -> Biomedical Applications of Immobilized Enzymes and Proteins (12868ms)\nWhat are enzymes?\tBehavior of enzyme systems; an analysis of kinetics and mechanism\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Behavior of enzyme systems, Editions, Behavior of enzyme systems; an analysis of kinetics and mechanism) -> Behavior of enzyme systems; an analysis of kinetics and mechanism (14822ms)\nWhat are enzymes?\tEnzymes: physical principles\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes: physical principles, Edition Of, Enzymes) -> Enzymes: physical principles (16950ms)\nWhat are enzymes?\tIndustrial enzymes and their applications\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Industrial enzymes and their applications, Edition Of, Industrial enzymes and their applications) -> Industrial enzymes and their applications (15973ms)\nWhat are enzymes?\tRespiration & Enzyme Action\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Respiration & Enzyme Action, Editions, Respiration & Enzyme Action) -> Respiration & Enzyme Action (16692ms)\nWhat are enzymes?\tStructure analysis of enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Structure analysis of enzymes, Editions, Structure analysis of enzymes) -> Structure analysis of enzymes (15772ms)\nWhat are enzymes?\tEnzyme Biotechnology: Protein Engineering, Structure Prediction and Fermentation (Ellis Horwood Books in the Biological Sciences)\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme Biotechnology: Protein Engineering, Structure Prediction and Fermentation (Ellis Horwood Books in the Biological Sciences), Edition Of, Enzyme Biotechnology) -> Enzyme Biotechnology: Protein Engineering, Structure Prediction and Fermentation (Ellis Horwood Books in the Biological Sciences) (16455ms)\nWhat are enzymes?\tThe Enzymes. Volume VIII: Group Transfer. Part A. Nucleotidyl Transfer. Nucleosidyl Transfer. Acyl Transfer. Phosphoryl Transfer. Third Edition\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (The Enzymes. Volume VIII: Group Transfer. Part A. Nucleotidyl Transfer. Nucleosidyl Transfer. Acyl Transfer. Phosphoryl Transfer. Third Edition, Edition Of, The Enzymes. Volume VIII) -> The Enzymes. Volume VIII: Group Transfer. Part A. Nucleotidyl Transfer. Nucleosidyl Transfer. Acyl Transfer. Phosphoryl Transfer. Third Edition (16547ms)\nWhat are enzymes?\tFundamentals of Enzyme Kinetics\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Fundamentals of Enzyme Kinetics, Edition Of, Fundamentals of Enzyme Kinetics) -> Fundamentals of Enzyme Kinetics (16215ms)\nWhat are enzymes?\tEnzymes in food processing\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzymes in food processing, Edition Of, Enzymes in food processing) -> Enzymes in food processing (17545ms)\nWhat are enzymes?\tEnzyme kinetics : a modern approach\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme kinetics, Editions, Enzyme kinetics : a modern approach) -> Enzyme kinetics : a modern approach (16043ms)\nWhat are enzymes?\tFunction and Regulation of Monoamine Enzymes\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Function and Regulation of Monoamine Enzymes, Edition Of, Function and Regulation of Monoamine Enzymes) -> Function and Regulation of Monoamine Enzymes (16278ms)\nWhat are enzymes?\tEnzyme assays for food scientists\t-10.824997581214802\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzyme assays for food scientists, Edition Of, Enzyme assays for food scientists) -> Enzyme assays for food scientists (16216ms)\nWhat are enzymes?\tLactic acid bacteria\t-10.917166292718647\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Lactic acid bacteria, is also known to produce, enzymes) -> Lactic acid bacteria (8116ms)\nWhat are enzymes?\twhat make seeds sprout\t-10.960611764592546\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, what make seeds sprout) -> what make seeds sprout (7604ms)\nWhat are enzymes?\tP-450\t-11.022065415752152\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (P-450, drug-metabolizing, enzyme system of the liver) -> P-450 (5419ms)\nWhat are enzymes?\tunderstanding\t-11.22003203818527\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (The COX-2 enzyme, has become a primary model for, understanding) -> understanding (5419ms)\nWhat are enzymes?\tpill Galvus\t-11.293525569570498\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (pill Galvus, is known as, enzyme inhibitors) -> pill Galvus (8116ms)\nWhat are enzymes?\tvitamin C\t-11.336389781113592\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (vitamin C, is well known as, an antioxidant and enzyme cofactor) -> vitamin C (8116ms)\nWhat are enzymes?\tbiodegradable and non-toxic\t-11.415521449670825\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, biodegradable and non-toxic) -> biodegradable and non-toxic (7603ms)\nWhat are enzymes?\tpresent in every organism\t-11.434547362250491\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, present in every organism) -> present in every organism (7603ms)\nWhat are enzymes?\tFolic acid\t-11.504630213149934\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Folic acid, is known to inhibit, the enzyme) -> Folic acid (8117ms)\nWhat are enzymes?\tReverse transcriptase\t-11.5277986133063\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Reverse transcriptase, is a compound known as, an enzyme) -> Reverse transcriptase (8117ms)\nWhat are enzymes?\tTobacco smoke\t-11.53485679287875\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Tobacco smoke, is known to induce, enzymes) -> Tobacco smoke (8116ms)\nWhat are enzymes?\tnature 's catalysts\t-11.538345160605402\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, nature 's catalysts) -> nature 's catalysts (7604ms)\nWhat are enzymes?\tactive on carbohydrates\t-11.558209381987696\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, active on carbohydrates) -> active on carbohydrates (7603ms)\nWhat are enzymes?\tGoutClear\t-11.589813160704319\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (GoutClear, are known to inhibit, the enzyme) -> GoutClear (8137ms)\nWhat are enzymes?\t?beta-glucosidase?\t-11.602191928426556\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (?beta-glucosidase?, is known as, the ?unlocking enzyme?) -> ?beta-glucosidase? (8137ms)\nWhat are enzymes?\ta class of proteins\t-11.603693782083958\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a class of proteins) -> a class of proteins (7603ms)\nWhat are enzymes?\tprotease inhibitors\t-11.6092176217246\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (protease inhibitors, also are known to raise, liver enzymes) -> protease inhibitors (8137ms)\nWhat are enzymes?\ta type of protein\t-11.614921327988775\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a type of protein) -> a type of protein (7652ms)\nWhat are enzymes?\tspecial types of proteins\t-11.614921327988775\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, special types of proteins) -> special types of proteins (7652ms)\nWhat are enzymes?\twhat?s\t-11.62297280324725\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (those enzymes, are gone so to get, what?s) -> what?s (7652ms)\nWhat are enzymes?\ta form of proteins\t-11.649797271042903\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a form of proteins) -> a form of proteins (7652ms)\nWhat are enzymes?\tpresent in raw food\t-11.649797271042903\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, present in raw food) -> present in raw food (7654ms)\nWhat are enzymes?\tspecific types of proteins\t-11.649797271042903\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, specific types of proteins) -> specific types of proteins (7652ms)\nWhat are enzymes?\t? production\t-11.665754887494018\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (? production, are known as, ?phase 2 enzymes) -> ? production (8137ms)\nWhat are enzymes?\ta kind of protein\t-11.68876255465091\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzyme, is, a kind of protein) -> a kind of protein (7668ms)\nWhat are enzymes?\tsubstances produced by living organisms\t-11.68895539347713\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, substances produced by living organisms) -> substances produced by living organisms (7668ms)\nWhat are enzymes?\tVitamin B-6\t-11.69315754854264\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Vitamin B-6, is known to be, an essential co-enzyme) -> Vitamin B-6 (8137ms)\nWhat are enzymes?\tessential to digestion and metabolism\t-11.694344790669248\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, essential to digestion and metabolism) -> essential to digestion and metabolism (7668ms)\nWhat are enzymes?\tessential for health and longevity\t-11.709356512341081\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, essential for health and longevity) -> essential for health and longevity (7668ms)\nWhat are enzymes?\tpromoters instead of inhibitors of inflammation\t-11.709356512341081\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, promoters instead of inhibitors of inflammation) -> promoters instead of inhibitors of inflammation (7668ms)\nWhat are enzymes?\tbiological catalysts\t-11.723660634439828\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, biological catalysts) -> biological catalysts (7669ms)\nWhat are enzymes?\ta water soluble vitamin\t-11.72887594224437\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (a water soluble vitamin, is also known as, co-enzyme R) -> a water soluble vitamin (8137ms)\nWhat are enzymes?\tone pill Galvus\t-11.735969307473242\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (one pill Galvus, is known as, enzyme inhibitors) -> one pill Galvus (8156ms)\nWhat are enzymes?\tone of the fundamental building materials\t-11.757003905379626\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, one of the fundamental building materials) -> one of the fundamental building materials (7690ms)\nWhat are enzymes?\tA lot\t-11.776314294811712\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (A lot, is known about, this enzyme) -> A lot (8156ms)\nWhat are enzymes?\theat sensitive\t-11.78218497464327\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, heat sensitive) -> heat sensitive (7690ms)\nWhat are enzymes?\tprostate cancer cells\t-11.786233898157956\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (prostate cancer cells, are known to produce, aromatase enzymes) -> prostate cancer cells (8156ms)\nWhat are enzymes?\ta reaction\t-11.795760164657416\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (an enzyme, is going to facilitate, a reaction) -> a reaction (7690ms)\nWhat are enzymes?\ttoo large to cross the blood-brain barrier\t-11.795988136047525\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, too large to cross the blood-brain barrier) -> too large to cross the blood-brain barrier (7690ms)\nWhat are enzymes?\tunable to travel inside of the lysosome\t-11.795988136047525\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, unable to travel inside of the lysosome) -> unable to travel inside of the lysosome (7690ms)\nWhat are enzymes?\tsubstrate particular\t-11.804055526800914\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, substrate particular) -> substrate particular (7690ms)\nWhat are enzymes?\tlarge proteins\t-11.828288463602215\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, large proteins) -> large proteins (7707ms)\nWhat are enzymes?\tEurope\t-11.831119674254746\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, were done in, Europe) -> Europe (7707ms)\nWhat are enzymes?\tOrlistat\t-11.831494193857008\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Orlistat, is known to inhibit, the lipase enzyme) -> Orlistat (8156ms)\nWhat are enzymes?\tworker bees\t-11.839563816250111\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, Do their job as, worker bees) -> worker bees (7707ms)\nWhat are enzymes?\tAlcohol\t-11.856151993784096\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Alcohol, is known to increase, cytochrome P-450 enzymes) -> Alcohol (8156ms)\nWhat are enzymes?\tCaffeine\t-11.863705636898239\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Caffeine, is also a known competitive inhibitor of, the enzyme) -> Caffeine (8157ms)\nWhat are enzymes?\tChlorite dismutase\t-11.877886866020464\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Chlorite dismutase, is now known to be, a central enzyme) -> Chlorite dismutase (8175ms)\nWhat are enzymes?\tPapaya Papaya\t-11.893144060787728\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Papaya Papaya, is well known for, its enzyme papain) -> Papaya Papaya (8175ms)\nWhat are enzymes?\ta promising new drug\t-11.909658703883897\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (a promising new drug, is known to affect, an enzyme pathway) -> a promising new drug (8175ms)\nWhat are enzymes?\tDead Sea Mud\t-11.924824823259895\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Dead Sea Mud, is known to activate, enzymes) -> Dead Sea Mud (8175ms)\nWhat are enzymes?\tso important\t-11.928800052090073\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, so important) -> so important (7707ms)\nWhat are enzymes?\tViral DNA polymerase\t-11.93818042707024\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Viral DNA polymerase, is a compound known as, an enzyme) -> Viral DNA polymerase (8175ms)\nWhat are enzymes?\tCopper\t-11.954397201506811\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Copper, is known to attack, respiratory enzymes) -> Copper (8175ms)\nWhat are enzymes?\tMNT\t-11.955947297806365\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, have to do with, MNT) -> MNT (7707ms)\nWhat are enzymes?\tGlutathione\t-11.956573243142921\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Glutathione, is also known as, a Phase II enzyme) -> Glutathione (8193ms)\nWhat are enzymes?\tTriclosan\t-11.957049813412397\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Triclosan, is known to inhibit, this enzyme) -> Triclosan (8193ms)\nWhat are enzymes?\tFluoride\t-11.957049813412397\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Fluoride, is known to inhibit, some enzymes) -> Fluoride (8193ms)\nWhat are enzymes?\tAromatase\t-11.957442495674574\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Aromatase, is known to be, a key regulatory enzyme) -> Aromatase (8194ms)\nWhat are enzymes?\tPapayas\t-11.961152783527595\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Papayas, are known for, their enzyme) -> Papayas (8193ms)\nWhat are enzymes?\ta poison\t-11.972855878899239\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (a poison, is known to interfere with, the enzyme system) -> a poison (8194ms)\nWhat are enzymes?\tSoccol et al\t-11.974963077980048\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, as has been done by, Soccol et al) -> Soccol et al (7707ms)\nWhat are enzymes?\tadult bone marrow\t-11.97895180220637\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzyme deficiencies, does, adult bone marrow) -> adult bone marrow (7726ms)\nWhat are enzymes?\toptical density measurements\t-12.004658092179195\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (the enzymes, did, optical density measurements) -> optical density measurements (7725ms)\nWhat are enzymes?\tSerotonin\t-12.013638480914706\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Serotonin, is known as, the happy enzyme) -> Serotonin (8212ms)\nWhat are enzymes?\traw , unpasteurized honey\t-12.021873066536024\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (raw , unpasteurized honey, is known to be high in, enzymes) -> raw , unpasteurized honey (8212ms)\nWhat are enzymes?\tInosine\t-12.031302669396602\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Inosine, is also known to activate, various enzyme systems) -> Inosine (8212ms)\nWhat are enzymes?\tseveral other steps\t-12.031546851481739\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (enzymes, go through, several other steps) -> several other steps (7725ms)\nWhat are enzymes?\tseminal plasma\t-12.031765773363421\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (seminal plasma, is known to contain, antioxidant enzymes) -> seminal plasma (8212ms)\nWhat are enzymes?\tSprouts\t-12.032042732971448\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Sprouts, are known for, their high enzyme activity) -> Sprouts (8212ms)\nWhat are enzymes?\tessential to healthy digestion\t-12.043760376076651\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, essential to healthy digestion) -> essential to healthy digestion (7726ms)\nWhat are enzymes?\tDeramaxx functions\t-12.059952081550637\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Deramaxx functions, are known as, Cox 2 enzymes) -> Deramaxx functions (8212ms)\nWhat are enzymes?\tone specific job\t-12.063168705538601\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, can only do, one specific job) -> one specific job (7725ms)\nWhat are enzymes?\tResveratrol\t-12.067083032372512\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Resveratrol, is known to activate, the SIRT1 enzyme) -> Resveratrol (8230ms)\nWhat are enzymes?\texpensive to produce\t-12.068843965405325\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, expensive to produce) -> expensive to produce (7725ms)\nWhat are enzymes?\tDanny J Lewis\t-12.071681165121245\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Danny J Lewis, is otherwise known as, Enzyme Black) -> Danny J Lewis (8230ms)\nWhat are enzymes?\tCimetidine\t-12.088775523300008\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Cimetidine, is a known inhibitor of, hepatic CYP enzymes) -> Cimetidine (8230ms)\nWhat are enzymes?\tidentical reactions\t-12.09015755058888\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (identical reactions, are known as, analogous enzymes) -> identical reactions (8230ms)\nWhat are enzymes?\tProtein catalysts\t-12.093332929568593\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Protein catalysts, are known as, enzymes) -> Protein catalysts (8230ms)\nWhat are enzymes?\tan AST\t-12.107503821695353\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (my liver enzymes, went from, an AST) -> an AST (7792ms)\nWhat are enzymes?\tThe Angel Juicer\t-12.1311479140474\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (The Angel Juicer, was formerly known as, the Live Enzyme Pro) -> The Angel Juicer (8230ms)\nWhat are enzymes?\tcGMP or sildenafil\t-12.137566528248701\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (the enzyme, does, cGMP or sildenafil) -> cGMP or sildenafil (7793ms)\nWhat are enzymes?\tcertain spices\t-12.143666670173943\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (certain spices, are widely known as, enzyme inhibitors) -> certain spices (8230ms)\nWhat are enzymes?\tmolecular conversions\t-12.147694972619544\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (molecular conversions, are therefore known as, enzymes) -> molecular conversions (8329ms)\nWhat are enzymes?\tessential to life\t-12.15134235019858\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, essential to life) -> essential to life (7792ms)\nWhat are enzymes?\tirradiating or microwaving\t-12.153482094277619\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, does, irradiating or microwaving) -> irradiating or microwaving (7792ms)\nWhat are enzymes?\tCooking foods\t-12.155480161942807\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Cooking foods, is known to destroy, enzymes) -> Cooking foods (8329ms)\nWhat are enzymes?\tcarbon dioxide dissolution\t-12.161653075170886\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzyme, so does, carbon dioxide dissolution) -> carbon dioxide dissolution (7792ms)\nWhat are enzymes?\tStatins Cause Viagra Drink Vodka\t-12.185805213645844\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Liver Enzymes, Do, Statins Cause Viagra Drink Vodka) -> Statins Cause Viagra Drink Vodka (7792ms)\nWhat are enzymes?\trather flexible structures\t-12.188325080310388\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, rather flexible structures) -> rather flexible structures (8329ms)\nWhat are enzymes?\tnon-ideal conditions\t-12.196807807656596\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, do operate under, non-ideal conditions) -> non-ideal conditions (8329ms)\nWhat are enzymes?\tproteins in nature\t-12.197445839157524\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, proteins in nature) -> proteins in nature (8329ms)\nWhat are enzymes?\tOrganophosphate pesticides\t-12.201423750306413\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Organophosphate pesticides, are known to inhibit, this enzyme) -> Organophosphate pesticides (8329ms)\nWhat are enzymes?\toil\t-12.205649777072152\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, do a good job of removing, oil) -> oil (8329ms)\nWhat are enzymes?\tidentical to EC\t-12.224748360605414\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzyme, is, identical to EC) -> identical to EC (8329ms)\nWhat are enzymes?\thighly specific\t-12.229730943517012\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, highly specific) -> highly specific (8349ms)\nWhat are enzymes?\tdamage cell structures\t-12.235369126066663\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (These enzymes, go on to, damage cell structures) -> damage cell structures (8349ms)\nWhat are enzymes?\trigorous quality control testing\t-12.23659672272889\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (Enzymes, go through, rigorous quality control testing) -> rigorous quality control testing (8348ms)\nWhat are enzymes?\tGalvus\t-12.237887783699563\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Galvus, is known as, enzyme inhibitors) -> Galvus (8349ms)\nWhat are enzymes?\tnecessary for proper digestion\t-12.238609166005112\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, necessary for proper digestion) -> necessary for proper digestion (8348ms)\nWhat are enzymes?\tbeneficial to the body\t-12.238609166005112\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, beneficial to the body) -> beneficial to the body (8348ms)\nWhat are enzymes?\textremely sensitive to heat\t-12.239146063486768\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, extremely sensitive to heat) -> extremely sensitive to heat (8348ms)\nWhat are enzymes?\tcatalysts in the body\t-12.239146063486768\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, catalysts in the body) -> catalysts in the body (8349ms)\nWhat are enzymes?\tseconds & minutes\t-12.239678057171302\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, can do in, seconds & minutes) -> seconds & minutes (8368ms)\nWhat are enzymes?\tan extent\t-12.243748452105976\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, do work to, an extent) -> an extent (8368ms)\nWhat are enzymes?\tCYP3A4 and fluvoxamine\t-12.252915388222858\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (CYP3A4 and fluvoxamine, is known to inhibit, this enzyme) -> CYP3A4 and fluvoxamine (8368ms)\nWhat are enzymes?\toff-kilter downstream\t-12.254280661560003\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (other enzyme targets, can go, off-kilter downstream) -> off-kilter downstream (8368ms)\nWhat are enzymes?\timportant for proper digestion\t-12.259010284869063\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, important for proper digestion) -> important for proper digestion (8368ms)\nWhat are enzymes?\tvery little\t-12.264309748180338\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (very little, is known about, most enzyme supplements) -> very little (8368ms)\nWhat are enzymes?\tlast a long time\t-12.265710674753887\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, do, last a long time) -> last a long time (8368ms)\nWhat are enzymes?\thighly specific for their substrate\t-12.268909049646737\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, highly specific for their substrate) -> highly specific for their substrate (8368ms)\nWhat are enzymes?\taid digestion\t-12.2729718249282\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, do way more than, aid digestion) -> aid digestion (8387ms)\nWhat are enzymes?\tessential for normal digestion\t-12.274022006540896\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, essential for normal digestion) -> essential for normal digestion (8386ms)\nWhat are enzymes?\ta bit haywire\t-12.276385585098891\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (my liver enzymes, went, a bit haywire) -> a bit haywire (8386ms)\nWhat are enzymes?\tvery useful\t-12.289035382293878\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, very useful) -> very useful (8386ms)\nWhat are enzymes?\textremely powerful\t-12.294813545111504\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, extremely powerful) -> extremely powerful (8386ms)\nWhat are enzymes?\textremely safe\t-12.303510206484056\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, extremely safe) -> extremely safe (8445ms)\nWhat are enzymes?\textremely important\t-12.303510206484056\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, extremely important) -> extremely important (8386ms)\nWhat are enzymes?\tvery delicate\t-12.303510206484056\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, very delicate) -> very delicate (8386ms)\nWhat are enzymes?\tmore concentrated\t-12.303510206484056\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, more concentrated) -> more concentrated (8386ms)\nWhat are enzymes?\tpresent in all living cells\t-12.313180128975123\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, present in all living cells) -> present in all living cells (8444ms)\nWhat are enzymes?\tgood for the digestive system\t-12.318569526167241\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, good for the digestive system) -> good for the digestive system (8444ms)\nWhat are enzymes?\tvery fragile\t-12.323911325348009\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, very fragile) -> very fragile (8444ms)\nWhat are enzymes?\tespecially important\t-12.323911325348009\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, especially important) -> especially important (8444ms)\nWhat are enzymes?\thighly efficient\t-12.323911325348009\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, highly efficient) -> highly efficient (8444ms)\nWhat are enzymes?\tvery selective\t-12.323911325348009\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, very selective) -> very selective (8445ms)\nWhat are enzymes?\tproteins made by the body\t-12.333581247839076\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, proteins made by the body) -> proteins made by the body (8444ms)\nWhat are enzymes?\tessential to all bodily functions\t-12.333581247839076\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, essential to all bodily functions) -> essential to all bodily functions (8527ms)\nWhat are enzymes?\tresponsible for every biochemical reaction\t-12.333581247839076\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, responsible for every biochemical reaction) -> responsible for every biochemical reaction (8527ms)\nWhat are enzymes?\tnecessary for replication of DNA\t-12.334995408517422\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, necessary for replication of DNA) -> necessary for replication of DNA (8527ms)\nWhat are enzymes?\tsubstances which make life possible\t-12.35615706638266\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, substances which make life possible) -> substances which make life possible (8527ms)\nWhat are enzymes?\tTADALAFIL\t-12.36227091590874\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (TADALAFIL, is also known as, PDE5 enzyme inhibitors) -> TADALAFIL (8527ms)\nWhat are enzymes?\ta part of every living cell\t-12.366216919205785\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a part of every living cell) -> a part of every living cell (8527ms)\nWhat are enzymes?\tNattokinase\t-12.368941855751196\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Nattokinase, is known as, a fibrinolytic enzyme) -> Nattokinase (8527ms)\nWhat are enzymes?\tthorough testing\t-12.400126287632432\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (the enzymes, went through, thorough testing) -> thorough testing (8527ms)\nWhat are enzymes?\ta memory Easter egg hunt\t-12.40017326232126\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (the enzyme kids, goes on, a memory Easter egg hunt) -> a memory Easter egg hunt (8606ms)\nWhat are enzymes?\tpresent in all living biological systems\t-12.403804459421204\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, present in all living biological systems) -> present in all living biological systems (8606ms)\nWhat are enzymes?\tnormal levels\t-12.416926040062448\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (his liver enzymes, went to, normal levels) -> normal levels (8606ms)\nWhat are enzymes?\tsubstrate specific\t-12.417100358564422\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, substrate specific) -> substrate specific (8606ms)\nWhat are enzymes?\ta part of animal and plant life\t-12.429959844768645\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a part of animal and plant life) -> a part of animal and plant life (8606ms)\nWhat are enzymes?\thigh doses\t-12.438146829902536\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (this enzyme, will often go up to really, high doses) -> high doses (8606ms)\nWhat are enzymes?\tprotein molecules\t-12.45251319910021\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, protein molecules) -> protein molecules (8606ms)\nWhat are enzymes?\twrong direction\t-12.453178156828061\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (enzymes, go, wrong direction) -> wrong direction (8624ms)\nWhat are enzymes?\tfull speed\t-12.459367567040328\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (the enzyme, can go at, full speed) -> full speed (8624ms)\nWhat are enzymes?\ta part of every metabolic process in the body\t-12.480188611034594\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, a part of every metabolic process in the body) -> a part of every metabolic process in the body (8624ms)\nWhat are enzymes?\ta must for you to enjoy a full , healthy life\t-12.491502179148592\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a must for you to enjoy a full , healthy life) -> a must for you to enjoy a full , healthy life (8624ms)\nWhat are enzymes?\tintestinal lumen\t-12.496503870207038\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (their enzymes, go into, intestinal lumen) -> intestinal lumen (8624ms)\nWhat are enzymes?\tdegrade lignin\t-12.538061158081526\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (these enzymes, do, degrade lignin) -> degrade lignin (8624ms)\nWhat are enzymes?\tgenes\t-12.541656884035966\tWhat are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (genes, encoding drug, metabolizing enzymes) -> genes (5477ms)\nWhat are enzymes?\tnormal range\t-12.563702879927098\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (his liver enzymes, go back to, normal range) -> normal range (8624ms)\nWhat are enzymes?\tingredients lists\t-12.565471305431586\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (enzymes, go unmentioned in, ingredients lists) -> ingredients lists (8624ms)\nWhat are enzymes?\tDianabol\t-12.56879647613994\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Dianabol, is known to interact with, various enzymes) -> Dianabol (8641ms)\nWhat are enzymes?\tmore work\t-12.583155244262697\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, do, more work) -> more work (8641ms)\nWhat are enzymes?\tordinary chemistry\t-12.583155244262697\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, do, ordinary chemistry) -> ordinary chemistry (8641ms)\nWhat are enzymes?\timportant work\t-12.584859048937634\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (The enzyme, does, important work) -> important work (8641ms)\nWhat are enzymes?\tsimultaneous reductions\t-12.59452460920716\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (enzyme activities, went along with, simultaneous reductions) -> simultaneous reductions (8641ms)\nWhat are enzymes?\tdifferent material\t-12.604867968710877\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (OTHER enzymes, can go to work on, different material) -> different material (8641ms)\nWhat are enzymes?\tVanadate\t-12.655527404894595\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Vanadate, is known to interact with, the enzyme conformation) -> Vanadate (8641ms)\nWhat are enzymes?\tDanny\t-12.656366773517652\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Danny, is otherwise known as, Enzyme Black) -> Danny (8641ms)\nWhat are enzymes?\tbio-catalysts\t-12.665066441419174\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, bio-catalysts) -> bio-catalysts (8702ms)\nWhat are enzymes?\tPapaya\t-12.669138223502067\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Papaya, is known for, its digestive enzyme papain) -> Papaya (8702ms)\nWhat are enzymes?\tMood\t-12.687454225867437\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Mood, is known to be related to, hormone and enzyme balance) -> Mood (8702ms)\nWhat are enzymes?\tHematin\t-12.698773563574576\tWhat are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Hematin, also is known to inhibit, parasite enzymes) -> Hematin (8702ms)\nWhat are enzymes?\ta good job cleaning the toxic byproducts\t-12.818500567879955\tWhat are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (our enzymes, do, a good job cleaning the toxic byproducts) -> a good job cleaning the toxic byproducts (8702ms)\nWho is the conductor of the Boston Pops?\tCasella\t-0.16780111296264344\tWho is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> (Casella, was the principal conductor of, the Boston Pops) -> Casella (98ms)\nWho is the conductor of the Boston Pops?\tWilliams\t-0.5103986544639829\tWho is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> (Williams, was the conductor of, the Boston Pops) -> Williams (98ms)\nWho is the conductor of the Boston Pops?\tKeith Lockhart\t-0.8759290516112841\tWho is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> $x: ($x, conductor of, boston pop) -> (Keith Lockhart, becomes the 20th conductor of, the Boston Pops) -> Keith Lockhart (118ms)\nWho is the conductor of the Boston Pops?\tJohn Williams\t-1.6433587754232823\tWho is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> $x: ($x, conductor of, boston pop) -> (John Williams, becomes the 19th conductor of, the Boston Pops) -> John Williams (118ms)\nWho is the conductor of the Boston Pops?\tMr. Lockhart\t-1.7471798257728142\tWho is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> $x: ($x, conductor of, boston pop) -> (Mr. Lockhart, has been Conductor of, the Boston Pops Orchestra) -> Mr. Lockhart (118ms)\nWho is the conductor of the Boston Pops?\t1930\t-3.2518892216125277\tWho is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> $x: ($x, conductor of, boston pop) -> (1930, became the 18th conductor of, the Boston Pops) -> 1930 (118ms)\nWhen was the Red Cross founded?\t1914\t3.53458084166472\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Australian Red Cross, was founded in, 1914) -> 1914 (4250ms)\nWhen was the Red Cross founded?\t1864\t3.2609854723088834\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, 1864) -> 1864 (4250ms)\nWhen was the Red Cross founded?\t1836\t3.2301637430288217\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the red cross, was founded in, 1836) -> 1836 (4250ms)\nWhen was the Red Cross founded?\t1881\t3.2234863180862963\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Red Cross, was founded in, 1881) -> 1881 (4396ms)\nWhen was the Red Cross founded?\t1863\t3.187661620503814\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, 1863) -> 1863 (4396ms)\nWhen was the Red Cross founded?\t1886\t3.0659749154469327\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the American Red Cross, was founded in, 1886) -> 1886 (4396ms)\nWhen was the Red Cross founded?\t1932\t3.035549357837708\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Haitian Red Cross, was founded in, 1932) -> 1932 (4396ms)\nWhen was the Red Cross founded?\t1931\t3.0063062695582006\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Haitian Red Cross, was founded in, 1931) -> 1931 (4427ms)\nWhen was the Red Cross founded?\t1877\t2.9303745435120327\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Japanese Red Cross Agency, was founded in, 1877) -> 1877 (4427ms)\nWhen was the Red Cross founded?\tMay 1881\t1.4882267361440054\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the American Red Cross, was founded in, May 1881) -> May 1881 (4505ms)\nWhen was the Red Cross founded?\t1950\t1.223518222702611\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Hong Kong Red Cross, was established in, 1950) -> 1950 (4947ms)\nWhen was the Red Cross founded?\t2004\t0.9429122404990964\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (the Red Cross, was established in, 2004) -> 2004 (4947ms)\nWhen was the Red Cross founded?\t1954\t0.8567225493589503\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Fiji Red Cross, was established in, 1954) -> 1954 (4947ms)\nWhen was the Red Cross founded?\t1997\t0.8219360735986769\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (the Red Cross, was launched in, 1997) -> 1997 (5360ms)\nWhen was the Red Cross founded?\t1870\t0.7727237872088764\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (the British Red Cross, was established in, 1870) -> 1870 (4947ms)\nWhen was the Red Cross founded?\t1923\t0.7688982762479308\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be form in, $x) -> (the Belgian Red Cross, is later formed in, 1923) -> 1923 (5642ms)\nWhen was the Red Cross founded?\t1917\t0.7532068547460207\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be charter in, $x) -> (the American Red Cross, was chartered in, 1917) -> 1917 (4619ms)\nWhen was the Red Cross founded?\t1924\t0.7148363387352474\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (the Soviet Red Cross, is set up in, 1924) -> 1924 (5162ms)\nWhen was the Red Cross founded?\t1876\t0.7018914980033046\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (the Red Cross, was set up in, 1876) -> 1876 (5162ms)\nWhen was the Red Cross founded?\t1865\t0.6545803806157564\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (the local Red Cross, was set up in, 1865) -> 1865 (5162ms)\nWhen was the Red Cross founded?\t1967\t0.5371444662654334\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The District Red Cross Society, was established in, 1967) -> 1967 (5162ms)\nWhen was the Red Cross founded?\t1939\t0.5142352006426525\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, reform in, $x) -> (the Red Cross, was reformed in, 1939) -> 1939 (5425ms)\nWhen was the Red Cross founded?\tMay\t0.48096833579484555\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The American Red Cross, was founded in, May) -> May (4505ms)\nWhen was the Red Cross founded?\t1955\t0.4803933934010476\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (The Cambodian Red Cross, was set up in, 1955) -> 1955 (5196ms)\nWhen was the Red Cross founded?\tJuly\t0.46914820027357784\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (The Trinidad and Tobago Red Cross Society, was founded on, July) -> July (4505ms)\nWhen was the Red Cross founded?\tJune 2 , 1917\t0.4481697695855331\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (the American Red Cross, was founded on, June 2 , 1917) -> June 2 , 1917 (4568ms)\nWhen was the Red Cross founded?\tMay 21 , 1881\t0.427074248824419\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (the American Red Cross, was founded on, May 21 , 1881) -> May 21 , 1881 (4568ms)\nWhen was the Red Cross founded?\t1900\t-0.3023879930050768\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, charter in, $x) -> (The Red Cross, received its first congressional charter in, 1900) -> 1900 (4619ms)\nWhen was the Red Cross founded?\t2010\t-0.35877196914139864\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, break ground in, $x) -> (The Red Cross, broke new ground in, 2010) -> 2010 (5227ms)\nWhen was the Red Cross founded?\tthe 19th century\t-0.42325451682404847\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the International Red Cross, was founded in, the 19th century) -> the 19th century (4659ms)\nWhen was the Red Cross founded?\t2007\t-0.5416830108222794\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, become a partner in, $x) -> (The American Red Cross, became a partner in, 2007) -> 2007 (4659ms)\nWhen was the Red Cross founded?\tMay 1905\t-0.8330165230387525\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be form in, $x) -> (the Red Cross, was first formed in, May 1905) -> May 1905 (5708ms)\nWhen was the Red Cross founded?\tSeptember 2002\t-1.335936517353646\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (The Red Cross HOPE program, was launched in, September 2002) -> September 2002 (5360ms)\nWhen was the Red Cross founded?\t29 May 1904\t-1.4893190530488911\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be establish on, $x) -> (the Red Cross, is established on, 29 May 1904) -> 29 May 1904 (7225ms)\nWhen was the Red Cross founded?\tGeneva\t-1.6726874204255149\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, Geneva) -> Geneva (4659ms)\nWhen was the Red Cross founded?\tSwitzerland\t-1.6758270512416455\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was originally founded in, Switzerland) -> Switzerland (4658ms)\nWhen was the Red Cross founded?\tFebruary 1941\t-1.8281013123703977\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, begin operation in, $x) -> (the Red Cross chapter, began operation in, February 1941) -> February 1941 (4781ms)\nWhen was the Red Cross founded?\tCopenhagen\t-1.888918714425258\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Danish Red Cross, was founded in, Copenhagen) -> Copenhagen (4868ms)\nWhen was the Red Cross founded?\tSeptember\t-2.185503385635341\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be create in, $x) -> (the American Red Cross, was created in, September) -> September (4868ms)\nWhen was the Red Cross founded?\tDansville\t-2.430848492448115\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the American Red Cross, was founded in, Dansville) -> Dansville (4868ms)\nWhen was the Red Cross founded?\t1952as\t-2.5450358378802376\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Fiji Red Cross Society, was established in, 1952as) -> 1952as (5196ms)\nWhen was the Red Cross founded?\thttp://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts\t-3.107129714998587\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Crossing The Red Sea With The Adverts, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts) -> http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts (4896ms)\nWhen was the Red Cross founded?\tresponse\t-3.208886387662891\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be form in, $x) -> (the Red Cross, was formed in, response) -> response (5708ms)\nWhen was the Red Cross founded?\tIraq\t-3.2108228798121705\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, cease operation in, $x) -> (the Red Cross, ceased its operations in, Iraq) -> Iraq (4897ms)\nWhen was the Red Cross founded?\thttp://en.wikipedia.org/wiki/Australian%20Red%20Cross\t-3.26106744635388\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Australian Red Cross, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Australian%20Red%20Cross) -> http://en.wikipedia.org/wiki/Australian%20Red%20Cross (4896ms)\nWhen was the Red Cross founded?\thttp://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society\t-3.3317531393231476\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Uganda Red Cross Society, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society) -> http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society (4897ms)\nWhen was the Red Cross founded?\thttp://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing\t-3.446617390398207\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Japanese Red Cross College of Nursing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing) -> http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing (5196ms)\nWhen was the Red Cross founded?\tfavor\t-3.519567503487952\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be discontinue in, $x) -> (the Red Cross, were discontinued in, favor) -> favor (5454ms)\nWhen was the Red Cross founded?\tNew York\t-3.5720249612616244\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The first Red Cross blood center, was established in, New York) -> New York (5196ms)\nWhen was the Red Cross founded?\tthe ?About\t-3.664430632890928\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (Additional Red Cross history, can be found in, the ?About) -> the ?About (5196ms)\nWhen was the Red Cross founded?\tfood\t-3.7513917020063894\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (food, are relieved to find, the Red Cross volunteers) -> food (7576ms)\nWhen was the Red Cross founded?\tthe belief\t-3.7707509069229457\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (The Red Cross, was founded on, the belief) -> the belief (5227ms)\nWhen was the Red Cross founded?\tnational laws\t-3.827189269642522\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be incorporate in, $x) -> (the Red Cross emblem/name, is incorporated in, national laws) -> national laws (5454ms)\nWhen was the Red Cross founded?\tLibya\t-3.829472002546253\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (the Red Cross, have been found in, Libya) -> Libya (5227ms)\nWhen was the Red Cross founded?\tcelebration\t-3.8601261168938947\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (the Red Cross, was launched in, celebration) -> celebration (5360ms)\nWhen was the Red Cross founded?\tthe battlefield\t-3.955448500838017\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (The Red Cross, was founded on, the battlefield) -> the battlefield (5227ms)\nWhen was the Red Cross founded?\tEurope\t-4.033689198123728\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be form in, $x) -> (the Red Cross Movement, was being formed in, Europe) -> Europe (5726ms)\nWhen was the Red Cross founded?\tHaiti\t-4.087168433800194\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Red Cross, is already well-established in, Haiti) -> Haiti (5278ms)\nWhen was the Red Cross founded?\tParis\t-4.093814611230425\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be close in, $x) -> (the Red Cross, was closing down in, Paris) -> Paris (5278ms)\nWhen was the Red Cross founded?\tAustralia\t-4.104743119541858\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (the Red Cross, was an established practice in, Australia) -> Australia (5278ms)\nWhen was the Red Cross founded?\tstorm-hit areas\t-4.123745463228389\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be expand in, $x) -> (The Red Cross, is also expanding its efforts in, storm-hit areas) -> storm-hit areas (5278ms)\nWhen was the Red Cross founded?\ttemporary housing\t-4.154614046150665\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (The American Red Cross, assisted in finding, temporary housing) -> temporary housing (5310ms)\nWhen was the Red Cross founded?\tNorth Korea\t-4.187203326368809\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Red Cross, was established in, North Korea) -> North Korea (5310ms)\nWhen was the Red Cross founded?\tthe Town\t-4.22476506892907\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, have office in, $x) -> (the Red Cross, has opened an office in, the Town) -> the Town (5309ms)\nWhen was the Red Cross founded?\tthe United States\t-4.240256866154335\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (the Youth Red Cross, was launched in, the United States) -> the United States (5360ms)\nWhen was the Red Cross founded?\tCrossing The Red Sea With The Adverts\t-4.250269751071338\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (Crossing The Red Sea With The Adverts, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts) -> Crossing The Red Sea With The Adverts (7576ms)\nWhen was the Red Cross founded?\tthe Bolsheviks\t-4.25520923314377\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be sympathetic to, $x) -> (the American Red Cross, was sympathetic to, the Bolsheviks) -> the Bolsheviks (7703ms)\nWhen was the Red Cross founded?\thumanity\t-4.3343915571568035\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be a beacon of, $x) -> (the Red Cross, was a beacon of, humanity) -> humanity (7274ms)\nWhen was the Red Cross founded?\tthe Samouni family\t-4.409151374237156\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (the Samouni family, were finally found by, the Red Cross) -> the Samouni family (7575ms)\nWhen was the Red Cross founded?\tSimilar statements\t-4.422478896487746\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (Similar statements, are found in, the Red Cross report) -> Similar statements (7576ms)\nWhen was the Red Cross founded?\tmore information\t-4.434828065037306\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (more information, can be found at, the American Red Cross) -> more information (7576ms)\nWhen was the Red Cross founded?\tan HIV infection case\t-4.4459525330631156\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (Swiss Red Cross, has been found guilty in, an HIV infection case) -> an HIV infection case (5425ms)\nWhen was the Red Cross founded?\tFive potential donors\t-4.456013885922815\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (Five potential donors, were found in, the Red Cross) -> Five potential donors (7576ms)\nWhen was the Red Cross founded?\tDarfur\t-4.472577568999798\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (The Red Cross, found his family in, Darfur) -> Darfur (5424ms)\nWhen was the Red Cross founded?\ta listing\t-4.495268516544996\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (a listing, can be found on, the American Red Cross website) -> a listing (7576ms)\nWhen was the Red Cross founded?\ta compatible donor\t-4.525835855673487\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (a compatible donor, was found by, the American Red Cross) -> a compatible donor (7576ms)\nWhen was the Red Cross founded?\tcommunity resources\t-4.53032140850852\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (community resources, can be found at, the American Red Cross) -> community resources (7618ms)\nWhen was the Red Cross founded?\tsize\t-4.530524296976452\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, expand in, $x) -> (the German Red Cross, expanded in, size) -> size (5454ms)\nWhen was the Red Cross founded?\tMore information\t-4.555014375825738\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (More information, can be found through, the American Red Cross) -> More information (7618ms)\nWhen was the Red Cross founded?\tdisaster supplies\t-4.559374712284093\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (disaster supplies, can be found on, the Red Cross website) -> disaster supplies (7618ms)\nWhen was the Red Cross founded?\tPakistan\t-4.595851551837457\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (the kidnapped British Red Cross worker, found dead in, Pakistan) -> Pakistan (5726ms)\nWhen was the Red Cross founded?\tmid-February\t-4.617066587487647\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, go live in, $x) -> (the Red Cross, will go live in, mid-February) -> mid-February (5726ms)\nWhen was the Red Cross founded?\tChaska\t-4.6313879726727585\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be organize in, $x) -> (The Red Cross Society, was organized in, Chaska) -> Chaska (5726ms)\nWhen was the Red Cross founded?\tFurther advice\t-4.639961945206459\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (Further advice, may be found on, the Red Cross website) -> Further advice (7618ms)\nWhen was the Red Cross founded?\twww.redcross\t-4.660259540467415\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Red Cross, can be found on, www.redcross) -> www.redcross (5745ms)\nWhen was the Red Cross founded?\tthe town\t-4.692732143486627\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (the Red Cross, had been found in, the town) -> the town (5745ms)\nWhen was the Red Cross founded?\tbiomedical research\t-4.719331011194456\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, expand in, $x) -> (The Red Cross, expanded its role in, biomedical research) -> biomedical research (5746ms)\nWhen was the Red Cross founded?\tWashington\t-4.745941481388865\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The American Red Cross, was established in, Washington) -> Washington (5745ms)\nWhen was the Red Cross founded?\texceptional volunteers and employees\t-4.832878898302136\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be build on, $x) -> (the Red Cross, is built on, exceptional volunteers and employees) -> exceptional volunteers and employees (7618ms)\nWhen was the Red Cross founded?\tthe UK\t-4.87305484906619\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (The British Red Cross, has launched an appeal in, the UK) -> the UK (5746ms)\nWhen was the Red Cross founded?\tevery county\t-5.026949789695756\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, have office in, $x) -> (The American Red Cross, has offices in virtually, every county) -> every county (5762ms)\nWhen was the Red Cross founded?\twww.redcross .org\t-5.1074530891096686\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Open Red Cross shelters, can be found on, www.redcross .org) -> www.redcross .org (5820ms)\nWhen was the Red Cross founded?\tJapan\t-5.132494750600754\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (The Red Cross, has already launched efforts in, Japan) -> Japan (5820ms)\nWhen was the Red Cross founded?\tclass scheduling\t-5.379846802396177\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (a local Red Cross, find information on, class scheduling) -> class scheduling (5940ms)\nWhen was the Red Cross founded?\talready\t-5.523633310977368\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be ground on, $x) -> (the Red Cross, is on the ground, already) -> already (7703ms)\nWhen was the Red Cross founded?\tthe country\t-5.568290078809593\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (the Red Cross Societies, shall be established in, the country) -> the country (5940ms)\nWhen was the Red Cross founded?\tMonday\t-5.581177601066902\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, search on, $x) -> (Red Cross teams, continued the search on, Monday) -> Monday (9843ms)\nWhen was the Red Cross founded?\t600 MT\t-5.814150511188794\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, distribute over, $x) -> (the Red Cross Movement, has distributed over, 600 MT) -> 600 MT (10008ms)\nWhen was the Red Cross founded?\tthe parking lot\t-5.901819151074274\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (the Red Cross, was set up in, the parking lot) -> the parking lot (5956ms)\nWhen was the Red Cross founded?\tthe Internet\t-5.922822873189293\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, present on, $x) -> (The International Red Cross, is present on, the Internet) -> the Internet (10121ms)\nWhen was the Red Cross founded?\tseveral\t-5.952341561835469\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, discover in, $x) -> (Red Cross parcels, was discovered in, several) -> several (8580ms)\nWhen was the Red Cross founded?\twar-time knitting\t-5.976233492998015\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, have a long tradition of, $x) -> (the Red Cross, has a long tradition of, war-time knitting) -> war-time knitting (7848ms)\nWhen was the Red Cross founded?\tthe infield\t-6.0291785428556075\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (The American Red Cross, will be set up in, the infield) -> the infield (5956ms)\nWhen was the Red Cross founded?\tthe left\t-6.029970195420293\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be build on, $x) -> (the Red Cross, is the white building on, the left) -> the left (7619ms)\nWhen was the Red Cross founded?\tthe D.C. Circuit Court\t-6.049017006852415\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, decide in, $x) -> (American Red Cross, was decided in, the D.C. Circuit Court) -> the D.C. Circuit Court (7940ms)\nWhen was the Red Cross founded?\t16,000 bottles\t-6.104763815693548\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, deliver over, $x) -> (Red Cross workers, deliver over, 16,000 bottles) -> 16,000 bottles (10009ms)\nWhen was the Red Cross founded?\tclean water\t-6.108171749533714\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (the Red Cross, is concentrating on providing, clean water) -> clean water (9807ms)\nWhen was the Red Cross founded?\taffected areas\t-6.129015040549\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be ground on, $x) -> (The Red Cross, will be on the ground in, affected areas) -> affected areas (7703ms)\nWhen was the Red Cross founded?\tpage 56\t-6.152035607260742\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, saw on, $x) -> (the red cross output button, see last figure on, page 56) -> page 56 (10008ms)\nWhen was the Red Cross founded?\tevacuees\t-6.2492761787804945\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, buy off, $x) -> (the Red Cross, are buying off, evacuees) -> evacuees (9927ms)\nWhen was the Red Cross founded?\t60 community services\t-6.29087265149246\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, deliver over, $x) -> (Australian Red Cross, delivers over, 60 community services) -> 60 community services (10008ms)\nWhen was the Red Cross founded?\tHaiti earthquake\t-6.362167988227013\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, search on, $x) -> (the American Red Cross, just do a search on, Haiti earthquake) -> Haiti earthquake (9843ms)\nWhen was the Red Cross founded?\tsteps\t-6.3945022814776085\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (the American Red Cross, provide advice on, steps) -> steps (9807ms)\nWhen was the Red Cross founded?\tfree , safe\t-6.529575112519191\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, have provide in, $x) -> (the Red Cross, has played in providing, free , safe) -> free , safe (8243ms)\nWhen was the Red Cross founded?\tthe city\t-6.5784578201260775\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, maintain office in, $x) -> (The Red Cross, maintains an office in, the city) -> the city (5974ms)\nWhen was the Red Cross founded?\tThe lesson plan\t-6.58391965658522\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (The lesson plan, can be found on, the Red Cross education site) -> The lesson plan (7619ms)\nWhen was the Red Cross founded?\tthe new county complex\t-6.620144870758736\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, have office in, $x) -> (the Red Cross Chapter, has an office in, the new county complex) -> the new county complex (5974ms)\nWhen was the Red Cross founded?\tthe Federation\t-6.770784891597153\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, know on, $x) -> (the Red Cross Society, on know as, the Federation) -> the Federation (9715ms)\nWhen was the Red Cross founded?\tSpanish\t-6.803291343534992\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, have give in, $x) -> (Red Cross volunteers, have given the class in, Spanish) -> Spanish (8243ms)\nWhen was the Red Cross founded?\tessential health care\t-6.825599869217663\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (The Red Cross, is focused on providing, essential health care) -> essential health care (9807ms)\nWhen was the Red Cross founded?\tthe wake\t-7.0076823075851244\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, discover in, $x) -> (the Red Cross, discovered in, the wake) -> the wake (8580ms)\nWhen was the Red Cross founded?\tMonday?s\t-7.186357875746629\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, distribute on, $x) -> (Red Cross packages, will be distributed on, Monday?s) -> Monday?s (10120ms)\nWhen was the Red Cross founded?\tone occasion\t-7.201389202672155\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, distribute on, $x) -> (Red Cross packages, were distributed on, one occasion) -> one occasion (10121ms)\nWhen was the Red Cross founded?\twater safety\t-7.246682149249666\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, present on, $x) -> (the American Red Cross, presented information on, water safety) -> water safety (10121ms)\nWhen was the Red Cross founded?\ta family ?s\t-7.324677638579599\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (Red Cross disaster assistance, is provided based on, a family ?s) -> a family ?s (9807ms)\nWhen was the Red Cross founded?\ta regular basis\t-7.346832729878256\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (The Red Cross, provides these courses on, a regular basis) -> a regular basis (9808ms)\nWhen was the Red Cross founded?\tTwitter\t-7.444269576806431\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (the Red Cross, provided this response on, Twitter) -> Twitter (9807ms)\nWhen was the Red Cross founded?\tthe streets\t-7.900948254184929\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, saw on, $x) -> (Red Cross emblems, can be seen on, the streets) -> the streets (10053ms)\nWhen was the Red Cross founded?\tthe shield\t-7.971809278588347\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, present on, $x) -> (a red cross, was often present on, the shield) -> the shield (10120ms)\nWhen was the Red Cross founded?\tthe night\t-8.01350659045418\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, there be on, $x) -> (the Irish Red Cross, will be there on, the night) -> the night (9927ms)\nWhen was the Red Cross founded?\tthe scene\t-8.26982974701454\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, there be on, $x) -> (the Red Cross, is always the first out there on, the scene) -> the scene (9927ms)\nWhen was the Red Cross founded?\tServices Offered\t-8.41745242565377\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (Red Cross, Provides Information on, Services Offered) -> Services Offered (9807ms)\nWhen was the Red Cross founded?\tthe form\t-8.42258232845961\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, have provide in, $x) -> (The Red Cross, had provided temporary accommodation in, the form) -> the form (8243ms)\nWhen was the Red Cross founded?\tthe law\t-8.980571149656457\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (the Red Cross, have provided courses on, the law) -> the law (9843ms)\nWhen was the Red Cross founded?\tthe news\t-9.078851344600045\tWhen was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, saw on, $x) -> (Red Cross Evelyn, had seen the reports on, the news) -> the news (10053ms)\nWho is the president of Stanford University?\tDonald Kennedy\t3.523012497813199\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (Donald Kennedy, is the former president of, Stanford University) -> Donald Kennedy (1495ms)\nWho is the president of Stanford University?\tDavid Starr Jordan\t2.634954161018904\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (David Starr Jordan, was the president of, Stanford University) -> David Starr Jordan (1495ms)\nWho is the president of Stanford University?\tJohn Hennessy\t1.7368627427973178\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (John Hennessy, is the president of, Stanford University) -> John Hennessy (1495ms)\nWho is the president of Stanford University?\tCasper\t0.9518284973593787\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (Casper, was the president of, Stanford University) -> Casper (1565ms)\nWho is the president of Stanford University?\tJordan\t0.5697695070140518\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (Jordan, was the first President of, Stanford University) -> Jordan (1565ms)\nWho is the president of Stanford University?\tGerhard Casper\t0.47466719684619996\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Gerhard Casper, is president emeritus of, Stanford University) -> Gerhard Casper (1590ms)\nWho is the president of Stanford University?\tthe founder\t0.4038986332722794\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (the founder, is the 10th President of, Stanford University) -> the founder (1591ms)\nWho is the president of Stanford University?\tThe author\t0.21386895600288103\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (The author, was the first president of, Stanford University) -> The author (1591ms)\nWho is the president of Stanford University?\tRichard W. Lyman\t-0.43835036568712327\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Richard W. Lyman, was president of, Stanford University) -> Richard W. Lyman (2109ms)\nWho is the president of Stanford University?\tHennessy\t-1.0339834507271617\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Hennessy, is President of, Stanford University) -> Hennessy (2109ms)\nWho is the president of Stanford University?\tGreg\t-1.073547099980408\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Greg, is President of, Stanford University DAPER Investment Fund) -> Greg (2157ms)\nWho is the president of Stanford University?\tDr. Shapiro\t-1.4632309750642802\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, be the chair of, Stanford University) -> (Dr. Shapiro, was the founding Chair of, Stanford University) -> Dr. Shapiro (2441ms)\nWho is the president of Stanford University?\tKennedy\t-1.8624529642956644\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Kennedy, is former President of, Stanford University President) -> Kennedy (2186ms)\nWho is the president of Stanford University?\tLucky Gunasekara\t-2.0376110133550203\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, be student in, Stanford University) -> (Lucky Gunasekara, is currently a student in, Stanford University) -> Lucky Gunasekara (2284ms)\nWho is the president of Stanford University?\tDr. Sieburg\t-3.925803851369801\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Dr. Sieburg, has held positions at, Stanford University) -> Dr. Sieburg (2284ms)\nWho is the president of Stanford University?\tEddy\t-4.014340849927146\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Eddy, has accepted a position at, Stanford University) -> Eddy (2284ms)\nWho is the president of Stanford University?\tFellow\t-4.566645359718104\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Fellow, has held positions at, Stanford University) -> Fellow (2284ms)\nWho is the president of Stanford University?\tHarvard\t-4.643514308898154\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Harvard, has held faculty positions at, Stanford University) -> Harvard (2284ms)\nWho is the president of Stanford University?\tKosal\t-5.109175159637035\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Kosal, has held positions at, Stanford University?s Center) -> Kosal (2284ms)\nWho is the president of Stanford University?\tSummit\t-5.304875347562858\tWho is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Summit, has held faculty positions at, Stanford University) -> Summit (2304ms)\nWho is the president of Stanford University?\tthe Institute\t-7.742536942666818\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> (Stanford University, is President of, the Institute) -> the Institute (3139ms)\nWho is the president of Stanford University?\tpalo alto\t-9.107488596611573\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is the home city of the sports team, palo alto) -> palo alto (6704ms)\nWho is the president of Stanford University?\tthe PSA\t-9.140405316300528\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> (Stanford University, has been elected President of, the PSA) -> the PSA (3139ms)\nWho is the president of Stanford University?\tVillanova University\t-9.188849514541806\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow of, stanford university) -> (Villanova University, is a fellow of, Stanford University) -> Villanova University (8366ms)\nWho is the president of Stanford University?\tHerbert Hoover\t-9.32445579715604\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an alumnus of, stanford university) -> (Herbert Hoover, is an alumni of, Stanford University) -> Herbert Hoover (8207ms)\nWho is the president of Stanford University?\tAnyone Responsible\t-9.365090169011303\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, Is, Anyone Responsible) -> Anyone Responsible (6703ms)\nWho is the president of Stanford University?\tTocqueville Right\t-9.514851224325119\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, Was, Tocqueville Right) -> Tocqueville Right (6704ms)\nWho is the president of Stanford University?\tCharles Coolidge\t-9.526345752943964\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, Charles Coolidge) -> Charles Coolidge (6704ms)\nWho is the president of Stanford University?\tsports team\t-9.553022661387562\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is a, sports team) -> sports team (6704ms)\nWho is the president of Stanford University?\tNASA\t-9.679486470303942\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, NASA) -> NASA (6703ms)\nWho is the president of Stanford University?\tSilicon Valley\t-9.802451336457105\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has for, Silicon Valley) -> Silicon Valley (6704ms)\nWho is the president of Stanford University?\tprivate corporations\t-9.829666925338785\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, are, private corporations) -> private corporations (6704ms)\nWho is the president of Stanford University?\tcampus visitors\t-9.855800634494745\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, were, campus visitors) -> campus visitors (6890ms)\nWho is the president of Stanford University?\tPhilip Zimbardo\t-9.921490398008245\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has featured, Philip Zimbardo) -> Philip Zimbardo (6890ms)\nWho is the president of Stanford University?\tprivate property\t-9.971138594094562\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, private property) -> private property (6890ms)\nWho is the president of Stanford University?\tnatural selection\t-10.061045193604468\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has demonstrated, natural selection) -> natural selection (6890ms)\nWho is the president of Stanford University?\tFrancis Fukuyama\t-10.067766849011901\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Francis Fukuyama, is a senior fellow at, Stanford University) -> Francis Fukuyama (8597ms)\nWho is the president of Stanford University?\tFouad Ajami\t-10.067766849011901\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Fouad Ajami, is a senior fellow at, Stanford University) -> Fouad Ajami (8597ms)\nWho is the president of Stanford University?\tthe U.S. Recovery\t-10.153143843035142\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the U.S. Recovery) -> the U.S. Recovery (6890ms)\nWho is the president of Stanford University?\tSebastian Thrun\t-10.156809551345958\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Sebastian Thrun, is a professor at, Stanford University) -> Sebastian Thrun (8938ms)\nWho is the president of Stanford University?\tComputer Science\t-10.185300600597044\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Computer Science, has been a professor at, Stanford University) -> Computer Science (8938ms)\nWho is the president of Stanford University?\tthe Robert M.\t-10.195649885437982\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the Robert M.) -> the Robert M. (6890ms)\nWho is the president of Stanford University?\tMr. Yang\t-10.217661526209278\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a trustee of, stanford university) -> (Mr. Yang, is also a trustee of, Stanford University) -> Mr. Yang (8527ms)\nWho is the president of Stanford University?\tthe Green Dorm\t-10.2203428527552\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the Green Dorm) -> the Green Dorm (6890ms)\nWho is the president of Stanford University?\tMichael Shanks\t-10.220733099088818\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Michael Shanks, has been a professor at, Stanford University) -> Michael Shanks (8938ms)\nWho is the president of Stanford University?\tthe MDI Principal Investigator\t-10.22516675250231\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the MDI Principal Investigator) -> the MDI Principal Investigator (6890ms)\nWho is the president of Stanford University?\tDavid Kelley\t-10.238584559051002\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (David Kelley, is a professor at, Stanford University and founder) -> David Kelley (8937ms)\nWho is the president of Stanford University?\tKeith Devlin\t-10.248143246438875\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Keith Devlin, is a senior researcher at, Stanford University) -> Keith Devlin (8597ms)\nWho is the president of Stanford University?\tthe AHPCRC lead organization\t-10.34342430672174\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the AHPCRC lead organization) -> the AHPCRC lead organization (6915ms)\nWho is the president of Stanford University?\tco-chairperson\t-10.445118306430455\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, co-chairperson) -> co-chairperson (6915ms)\nWho is the president of Stanford University?\ta result\t-10.461784069593598\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a result) -> a result (6915ms)\nWho is the president of Stanford University?\tthe GP-B prime contractor\t-10.462032029211914\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the GP-B prime contractor) -> the GP-B prime contractor (6915ms)\nWho is the president of Stanford University?\ta published author\t-10.464897888299038\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a published author) -> a published author (6915ms)\nWho is the president of Stanford University?\ta multi-disciplinary facility\t-10.478915115574441\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a multi-disciplinary facility) -> a multi-disciplinary facility (6915ms)\nWho is the president of Stanford University?\tSergey Brin\t-10.483843595967237\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Sergey Brin, were students at, the Stanford University) -> Sergey Brin (8597ms)\nWho is the president of Stanford University?\ta former advertising executive\t-10.49142369732793\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a former advertising executive) -> a former advertising executive (6915ms)\nWho is the president of Stanford University?\ta regular client\t-10.518959160272441\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a regular client) -> a regular client (6915ms)\nWho is the president of Stanford University?\ta fully-accredited\t-10.533278847644757\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a fully-accredited) -> a fully-accredited (6941ms)\nWho is the president of Stanford University?\ta respected developmental psychologist\t-10.54636915570243\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a respected developmental psychologist) -> a respected developmental psychologist (6941ms)\nWho is the president of Stanford University?\tan Affirmative Action employer\t-10.552558565914696\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an Affirmative Action employer) -> an Affirmative Action employer (6941ms)\nWho is the president of Stanford University?\ta good example\t-10.574236222190523\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a good example) -> a good example (6941ms)\nWho is the president of Stanford University?\tnon-voting associate members\t-10.576004594992716\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, are, non-voting associate members) -> non-voting associate members (6941ms)\nWho is the president of Stanford University?\tan immediate alert\t-10.576888834096108\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an immediate alert) -> an immediate alert (6941ms)\nWho is the president of Stanford University?\ta highly respected expert\t-10.578200287760266\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a highly respected expert) -> a highly respected expert (6941ms)\nWho is the president of Stanford University?\ta national leader providing education\t-10.579604791715441\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a national leader providing education) -> a national leader providing education (6941ms)\nWho is the president of Stanford University?\tAccelerated C++\t-10.584295308621869\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, Accelerated C++) -> Accelerated C++ (7012ms)\nWho is the president of Stanford University?\ta national research\t-10.597225384832804\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a national research) -> a national research (7011ms)\nWho is the president of Stanford University?\ta Junior Research Fellow\t-10.60735337975552\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a Junior Research Fellow) -> a Junior Research Fellow (7011ms)\nWho is the president of Stanford University?\tEconomic Advisers\t-10.61529706995409\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Economic Advisers, is a professor at, Stanford University) -> Economic Advisers (8938ms)\nWho is the president of Stanford University?\tan affirmative\t-10.618916069347998\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an affirmative) -> an affirmative (7011ms)\nWho is the president of Stanford University?\tan Equal\t-10.626672214770197\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an Equal) -> an Equal (7011ms)\nWho is the president of Stanford University?\ta double-blind randomized study\t-10.638954757642354\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a double-blind randomized study) -> a double-blind randomized study (7011ms)\nWho is the president of Stanford University?\ta week-long journalism camp\t-10.641862551875938\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a week-long journalism camp) -> a week-long journalism camp (7011ms)\nWho is the president of Stanford University?\tan equal opportunity\t-10.649686736104986\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an equal opportunity) -> an equal opportunity (7011ms)\nWho is the president of Stanford University?\tProfessor Eric Dunham\t-10.664359826425606\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, Professor Eric Dunham) -> Professor Eric Dunham (7097ms)\nWho is the president of Stanford University?\tfour definitions\t-10.672727421858534\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, four definitions) -> four definitions (7097ms)\nWho is the president of Stanford University?\ta truly wonderful human being\t-10.67418561854187\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a truly wonderful human being) -> a truly wonderful human being (7097ms)\nWho is the president of Stanford University?\tAndreas Wigend\t-10.67440738119617\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Andreas Wigend, is now a professor at, Stanford University) -> Andreas Wigend (8938ms)\nWho is the president of Stanford University?\tan affirmative action\t-10.690626872994702\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an affirmative action) -> an affirmative action (7097ms)\nWho is the president of Stanford University?\tProfessor Huneeus\t-10.690846114481612\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Professor Huneeus, was a fellow at, Stanford University) -> Professor Huneeus (7867ms)\nWho is the president of Stanford University?\ta huge success\t-10.692718728304017\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a huge success) -> a huge success (7097ms)\nWho is the president of Stanford University?\ta typical modern quadrotor design\t-10.694187701168673\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a typical modern quadrotor design) -> a typical modern quadrotor design (7097ms)\nWho is the president of Stanford University?\ta Rhodes Scholar\t-10.714568522217203\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a Rhodes Scholar) -> a Rhodes Scholar (7097ms)\nWho is the president of Stanford University?\tPeter Raven\t-10.741245371771656\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Peter Raven, was a professor at, Stanford University) -> Peter Raven (8938ms)\nWho is the president of Stanford University?\ta proud father and grandfather\t-10.745406576732558\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a proud father and grandfather) -> a proud father and grandfather (7097ms)\nWho is the president of Stanford University?\ta Mechanical Engineer\t-10.74753897030184\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a Mechanical Engineer) -> a Mechanical Engineer (7251ms)\nWho is the president of Stanford University?\tan affirmative-action\t-10.749148339110633\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an affirmative-action) -> an affirmative-action (7251ms)\nWho is the president of Stanford University?\tObservatory Post-Doctoral Fellow\t-10.75720061069353\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, Observatory Post-Doctoral Fellow) -> Observatory Post-Doctoral Fellow (7252ms)\nWho is the president of Stanford University?\tmultiple studies\t-10.76523995833776\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have conducted, multiple studies) -> multiple studies (7252ms)\nWho is the president of Stanford University?\tBrother Billy\t-10.773960690230588\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a junior at, stanford university) -> (Brother Billy, is a junior at, Stanford University) -> Brother Billy (8465ms)\nWho is the president of Stanford University?\ta Fulbright Fellow\t-10.777601729557482\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a Fulbright Fellow) -> a Fulbright Fellow (7252ms)\nWho is the president of Stanford University?\tuniversity\t-10.783261785371977\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is a, university) -> university (7252ms)\nWho is the president of Stanford University?\tJonathan Gelbart\t-10.787092728890402\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Jonathan Gelbart, is a senior at, Stanford University majoring) -> Jonathan Gelbart (8597ms)\nWho is the president of Stanford University?\tan NSF Postdoctoral Fellow\t-10.787298385419234\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, an NSF Postdoctoral Fellow) -> an NSF Postdoctoral Fellow (7252ms)\nWho is the president of Stanford University?\tmuch publicity\t-10.79302469997588\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has received, much publicity) -> much publicity (7252ms)\nWho is the president of Stanford University?\tan equal-opportunity employer\t-10.793452727459144\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an equal-opportunity employer) -> an equal-opportunity employer (7337ms)\nWho is the president of Stanford University?\ta highly-regarded academic institution\t-10.795712935651657\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a highly-regarded academic institution) -> a highly-regarded academic institution (7337ms)\nWho is the president of Stanford University?\tDragomir Anguelov\t-10.798230713175055\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Dragomir Anguelov, was a PhD student at, Stanford University) -> Dragomir Anguelov (8662ms)\nWho is the president of Stanford University?\ta large , scenic campus\t-10.799407253158835\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a large , scenic campus) -> a large , scenic campus (7337ms)\nWho is the president of Stanford University?\t250\t-10.80204971407976\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, 250) -> 250 (7337ms)\nWho is the president of Stanford University?\tDavid Lobell\t-10.809610209445026\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (David Lobell, is an Assistant Professor at, Stanford University) -> David Lobell (8661ms)\nWho is the president of Stanford University?\tToday Karim\t-10.811558288127939\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Today Karim, is a graduate student at, Stanford University) -> Today Karim (8661ms)\nWho is the president of Stanford University?\ta smoke-free campus\t-10.813853846323097\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a smoke-free campus) -> a smoke-free campus (7337ms)\nWho is the president of Stanford University?\tan equal opportunity employer\t-10.816836009661946\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (\" Stanford University, is, an equal opportunity employer) -> an equal opportunity employer (7337ms)\nWho is the president of Stanford University?\ta four year varsity athlete\t-10.81974380389553\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a four year varsity athlete) -> a four year varsity athlete (7337ms)\nWho is the president of Stanford University?\t00130500\t-10.819798221038127\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, 00130500) -> 00130500 (7337ms)\nWho is the president of Stanford University?\tKenji Hakuta\t-10.825244186624024\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Kenji Hakuta, is a professor at, Stanford University) -> Kenji Hakuta (8938ms)\nWho is the president of Stanford University?\tRen Ng\t-10.83553817749144\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an alumnus of, stanford university) -> (Ren Ng, is an alumnus of, the Stanford University School) -> Ren Ng (8207ms)\nWho is the president of Stanford University?\tan additional conference partner\t-10.846539612124833\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, an additional conference partner) -> an additional conference partner (7360ms)\nWho is the president of Stanford University?\tyield rates\t-10.851300173688594\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had, yield rates) -> yield rates (7360ms)\nWho is the president of Stanford University?\tzombie rats\t-10.856376937930747\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have created, zombie rats) -> zombie rats (7360ms)\nWho is the president of Stanford University?\tthe nation\t-10.856775828277438\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, are, the nation) -> the nation (7360ms)\nWho is the president of Stanford University?\ta Wasserstein Public Interest Fellow\t-10.862677265481505\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a Wasserstein Public Interest Fellow) -> a Wasserstein Public Interest Fellow (7360ms)\nWho is the president of Stanford University?\tRamesh Johari\t-10.86380144736975\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (Ramesh Johari, is an Assistant Professor at, Stanford University) -> Ramesh Johari (8661ms)\nWho is the president of Stanford University?\ta selective depository library\t-10.892090518226262\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a selective depository library) -> a selective depository library (7360ms)\nWho is the president of Stanford University?\tDr. Perl\t-10.926744621664806\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Perl, is currently a professor at, Stanford University) -> Dr. Perl (9011ms)\nWho is the president of Stanford University?\t12 minutes\t-10.931008573144132\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, 12 minutes) -> 12 minutes (7360ms)\nWho is the president of Stanford University?\tncaa\t-10.932159888617425\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is a sports team that plays in the league, ncaa) -> ncaa (7383ms)\nWho is the president of Stanford University?\tsignificant commitments\t-10.935989882763174\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has made, significant commitments) -> significant commitments (7383ms)\nWho is the president of Stanford University?\tLarry Page\t-10.942978668390865\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Larry Page, were still students at, Stanford University) -> Larry Page (8661ms)\nWho is the president of Stanford University?\tMeg Webster\t-10.951498585558065\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: ($x, select, stanford university) -> (Meg Webster, was selected by, the Stanford University President) -> Meg Webster (9225ms)\nWho is the president of Stanford University?\ta social demographer studying race\t-10.955910248840137\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a social demographer studying race) -> a social demographer studying race (7383ms)\nWho is the president of Stanford University?\tPh.D.\t-10.957613641021732\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Ph.D., is a Senior Lecturer at, the Stanford University School) -> Ph.D. (8661ms)\nWho is the president of Stanford University?\tDavid Filo\t-10.958562630876203\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (David Filo, were graduate students at, Stanford University) -> David Filo (8661ms)\nWho is the president of Stanford University?\tDr. Wang\t-10.982232603006361\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (Dr. Wang, is an assistant professor at, Stanford University) -> Dr. Wang (9011ms)\nWho is the president of Stanford University?\tan intense 3-day course\t-11.015830516937648\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, an intense 3-day course) -> an intense 3-day course (7383ms)\nWho is the president of Stanford University?\tinvaluable\t-11.02558141475777\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, invaluable) -> invaluable (7383ms)\nWho is the president of Stanford University?\ta debate\t-11.047596685979856\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, is having, a debate) -> a debate (7383ms)\nWho is the president of Stanford University?\tMr. Moghadam\t-11.08955487957698\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a trustee of, stanford university) -> (Mr. Moghadam, is a Trustee of, Stanford University) -> Mr. Moghadam (9012ms)\nWho is the president of Stanford University?\ta 2011-2012 post-doctoral fellow\t-11.094779237604552\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a 2011-2012 post-doctoral fellow) -> a 2011-2012 post-doctoral fellow (7383ms)\nWho is the president of Stanford University?\teligible\t-11.106927617704555\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, are, eligible) -> eligible (7382ms)\nWho is the president of Stanford University?\tDr. Keith Devlin\t-11.121194844901282\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be executive director of, stanford university) -> (Dr. Keith Devlin, is Executive Director of, Stanford University) -> Dr. Keith Devlin (8366ms)\nWho is the president of Stanford University?\tAnn Arvin\t-11.134632013327488\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, Ann Arvin) -> Ann Arvin (7407ms)\nWho is the president of Stanford University?\tthe University\t-11.202335762946946\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (the University, was a national fellow at, Stanford University) -> the University (7867ms)\nWho is the president of Stanford University?\tone of the worlds\t-11.221005767320047\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, one of the worlds) -> one of the worlds (7407ms)\nWho is the president of Stanford University?\tTom Byers\t-11.271119931799126\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Tom Byers, is a professor at, Stanford University) -> Tom Byers (9012ms)\nWho is the president of Stanford University?\tnew discoveries\t-11.28078036068046\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have made, new discoveries) -> new discoveries (7406ms)\nWho is the president of Stanford University?\tThe Evans-Wentz Lectureship\t-11.283220592667716\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has hosted, The Evans-Wentz Lectureship) -> The Evans-Wentz Lectureship (7407ms)\nWho is the president of Stanford University?\tErin Krampetz\t-11.28790733480756\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a founder of, stanford university) -> (Erin Krampetz, is a co-founder of, Stanford University) -> Erin Krampetz (7954ms)\nWho is the president of Stanford University?\toffering\t-11.300502348425312\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, offering) -> offering (7407ms)\nWho is the president of Stanford University?\tThe Chair\t-11.311488267907114\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: ($x, appoint, stanford university) -> (The Chair, is formally appointed to, Stanford University) -> The Chair (9226ms)\nWho is the president of Stanford University?\ta great profit center\t-11.31609337762485\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has been, a great profit center) -> a great profit center (7406ms)\nWho is the president of Stanford University?\tan Honorable Mention All-Pac 10\t-11.316378454796123\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, an Honorable Mention All-Pac 10) -> an Honorable Mention All-Pac 10 (7407ms)\nWho is the president of Stanford University?\tstem cells\t-11.316572344379756\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, follow, $x) -> (a Stanford University law professor, has followed, stem cells) -> stem cells (9226ms)\nWho is the president of Stanford University?\tPhysiologist\t-11.320280514168463\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, Physiologist) -> Physiologist (7406ms)\nWho is the president of Stanford University?\tthe ICTP four times\t-11.328015378129123\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has visited, the ICTP four times) -> the ICTP four times (7471ms)\nWho is the president of Stanford University?\ta review\t-11.347941714518717\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have published, a review) -> a review (7471ms)\nWho is the president of Stanford University?\tBill Ascherfeld\t-11.3674205441226\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an alumnus of, stanford university) -> (Bill Ascherfeld, is an Alumnus of, Stanford University) -> Bill Ascherfeld (8206ms)\nWho is the president of Stanford University?\ta peice\t-11.368216427808594\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a peice) -> a peice (7471ms)\nWho is the president of Stanford University?\ta chip\t-11.368342833382668\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have invented, a chip) -> a chip (7471ms)\nWho is the president of Stanford University?\timmortality\t-11.396140192889819\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have earned, immortality) -> immortality (7471ms)\nWho is the president of Stanford University?\ta show-and-tell conference\t-11.401464568756449\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has held, a show-and-tell conference) -> a show-and-tell conference (7471ms)\nWho is the president of Stanford University?\tWilliam Hewlett\t-11.412874828326505\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, call, $x) -> (Stanford University, called, William Hewlett) -> William Hewlett (9225ms)\nWho is the president of Stanford University?\tan annual Stressed\t-11.422179153462007\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, an annual Stressed) -> an annual Stressed (7471ms)\nWho is the president of Stanford University?\tan important new structure\t-11.429020084639811\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have discovered, an important new structure) -> an important new structure (7471ms)\nWho is the president of Stanford University?\tnumerous ongoing exhibits\t-11.4311677931146\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, numerous ongoing exhibits) -> numerous ongoing exhibits (7562ms)\nWho is the president of Stanford University?\ta number one\t-11.433673734783149\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have, a number one) -> a number one (7562ms)\nWho is the president of Stanford University?\tan Equal Opportunity\t-11.446239259116824\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an Equal Opportunity) -> an Equal Opportunity (7562ms)\nWho is the president of Stanford University?\ta novel method\t-11.46247562972482\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have found, a novel method) -> a novel method (7562ms)\nWho is the president of Stanford University?\ta Java-based application\t-11.463736494038791\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a Java-based application) -> a Java-based application (7562ms)\nWho is the president of Stanford University?\tFootball\t-11.467423328166225\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is a sports team that plays the sport, Football) -> Football (7562ms)\nWho is the president of Stanford University?\tnanoparticles\t-11.47761161221328\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have used, nanoparticles) -> nanoparticles (7562ms)\nWho is the president of Stanford University?\tDeliberative Polling\t-11.478822880711757\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, call, $x) -> (Stanford University, called, Deliberative Polling) -> Deliberative Polling (9225ms)\nWho is the president of Stanford University?\ta church\t-11.479880519636726\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a church) -> a church (7562ms)\nWho is the president of Stanford University?\ton-campus health facilities\t-11.484957231176583\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have, on-campus health facilities) -> on-campus health facilities (7585ms)\nWho is the president of Stanford University?\tnight and weekend duties\t-11.488572762732366\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, night and weekend duties) -> night and weekend duties (7585ms)\nWho is the president of Stanford University?\tan admirable job chronicling\t-11.489145497746508\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have done, an admirable job chronicling) -> an admirable job chronicling (7585ms)\nWho is the president of Stanford University?\ta resurgence\t-11.495110806176369\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has seen, a resurgence) -> a resurgence (7585ms)\nWho is the president of Stanford University?\ta method\t-11.506052751937698\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has developed, a method) -> a method (7585ms)\nWho is the president of Stanford University?\ta C++ compiler\t-11.5200116429972\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has written, a C++ compiler) -> a C++ compiler (7585ms)\nWho is the president of Stanford University?\ta website\t-11.521045555718212\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a website) -> a website (7585ms)\nWho is the president of Stanford University?\tthe Author Betsy Fields\t-11.523681241914085\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (the Author Betsy Fields, is a student at, Stanford University) -> the Author Betsy Fields (9012ms)\nWho is the president of Stanford University?\tthe Author Maneesh Sethi\t-11.525449667418574\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (the Author Maneesh Sethi, is a student at, Stanford University) -> the Author Maneesh Sethi (9083ms)\nWho is the president of Stanford University?\ta mandate\t-11.526514519051073\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have adopted, a mandate) -> a mandate (7664ms)\nWho is the president of Stanford University?\trecent stem cell research\t-11.53146180834771\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have brought, recent stem cell research) -> recent stem cell research (7664ms)\nWho is the president of Stanford University?\tBoyd?s already vital work\t-11.536827627706007\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has enhanced, Boyd?s already vital work) -> Boyd?s already vital work (7664ms)\nWho is the president of Stanford University?\tan institutional organization\t-11.538009100372213\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, an institutional organization) -> an institutional organization (7664ms)\nWho is the president of Stanford University?\ta pilot project\t-11.554003399650231\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have finished, a pilot project) -> a pilot project (7664ms)\nWho is the president of Stanford University?\tthe Association\t-11.555065002985565\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (Stanford University, gave this presentation at, the Association) -> the Association (9226ms)\nWho is the president of Stanford University?\ta technique\t-11.557336248331133\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had developed, a technique) -> a technique (7664ms)\nWho is the president of Stanford University?\tSax\t-11.560617085664276\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Sax, has been a visiting professor at, Stanford University) -> Sax (9083ms)\nWho is the president of Stanford University?\tTory Kiam\t-11.561175578789157\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Tory Kiam, was a second-year student at, Stanford University) -> Tory Kiam (9083ms)\nWho is the president of Stanford University?\tBrian Holloway\t-11.562821695564127\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: ($x, choose, stanford university) -> (Brian Holloway, chose, Stanford University) -> Brian Holloway (9311ms)\nWho is the president of Stanford University?\tpiezoelectricity\t-11.570060144688203\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have engineered, piezoelectricity) -> piezoelectricity (7664ms)\nWho is the president of Stanford University?\tdays\t-11.570060144688203\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have condensed, days) -> days (7664ms)\nWho is the president of Stanford University?\ta key home-fairway edge\t-11.577876748693608\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had, a key home-fairway edge) -> a key home-fairway edge (7867ms)\nWho is the president of Stanford University?\ta different approach\t-11.577876748693608\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has devised, a different approach) -> a different approach (7867ms)\nWho is the president of Stanford University?\tthe Stanford Guidelines\t-11.580158585942243\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has presented, the Stanford Guidelines) -> the Stanford Guidelines (7867ms)\nWho is the president of Stanford University?\ta similar set-up\t-11.588408357662257\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a similar set-up) -> a similar set-up (7925ms)\nWho is the president of Stanford University?\ta great time\t-11.602555550888983\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had, a great time) -> a great time (7925ms)\nWho is the president of Stanford University?\ta young man\t-11.605073815188382\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (a young man, is a student at, Stanford University) -> a young man (9083ms)\nWho is the president of Stanford University?\tRice\t-11.605566485647088\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Rice, is now a professor at, Stanford University) -> Rice (9083ms)\nWho is the president of Stanford University?\tTom\t-11.609588025830115\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an associate professor at, stanford university) -> (Tom, is now an Associate Professor at, Stanford University) -> Tom (7925ms)\nWho is the president of Stanford University?\tOlympic-medalist Enith Brigitha\t-11.611476253553638\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, as has, Olympic-medalist Enith Brigitha) -> Olympic-medalist Enith Brigitha (7925ms)\nWho is the president of Stanford University?\ta program\t-11.614050079507827\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, also has, a program) -> a program (7925ms)\nWho is the president of Stanford University?\tParomita Pain Josh Nesbit\t-11.616113014866686\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Paromita Pain Josh Nesbit, was a student at, Stanford University) -> Paromita Pain Josh Nesbit (9083ms)\nWho is the president of Stanford University?\ta new experiment\t-11.61652629503681\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has launched, a new experiment) -> a new experiment (7925ms)\nWho is the president of Stanford University?\ta wide variety and selection\t-11.619058017053888\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a wide variety and selection) -> a wide variety and selection (7925ms)\nWho is the president of Stanford University?\tshort-courses and talks\t-11.6380022145026\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has given, short-courses and talks) -> short-courses and talks (7925ms)\nWho is the president of Stanford University?\ta great resource\t-11.64065477370589\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has compiled, a great resource) -> a great resource (7954ms)\nWho is the president of Stanford University?\ta B. S. degree\t-11.653917727829224\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a B. S. degree) -> a B. S. degree (7954ms)\nWho is the president of Stanford University?\tApple?s iPad\t-11.665269007774008\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has adopted, Apple?s iPad) -> Apple?s iPad (7954ms)\nWho is the president of Stanford University?\ta great site\t-11.683725304756868\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, also has, a great site) -> a great site (7954ms)\nWho is the president of Stanford University?\tWu\t-11.694284850076384\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Wu, was a student at, Stanford University) -> Wu (9083ms)\nWho is the president of Stanford University?\ta booth and FAH\t-11.704317037821564\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a booth and FAH) -> a booth and FAH (7954ms)\nWho is the president of Stanford University?\tSoyoung Kwon\t-11.716819397261801\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Soyoung Kwon, is a postdoctoral fellow at, Stanford University) -> Soyoung Kwon (7954ms)\nWho is the president of Stanford University?\tStudent Initiated Courses\t-11.747563965249144\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, Student Initiated Courses) -> Student Initiated Courses (7954ms)\nWho is the president of Stanford University?\ta d .school\t-11.760021466220483\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has started, a d .school) -> a d .school (7990ms)\nWho is the president of Stanford University?\ta 16-megapixel camera\t-11.764524738368596\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has outfitted, a 16-megapixel camera) -> a 16-megapixel camera (7990ms)\nWho is the president of Stanford University?\tthe ?mother\t-11.766196827863562\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, call, $x) -> (Stanford University, has been called, the ?mother) -> the ?mother (9225ms)\nWho is the president of Stanford University?\tone of many institutions\t-11.766784996670633\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, one of many institutions) -> one of many institutions (7990ms)\nWho is the president of Stanford University?\ta unique training environment\t-11.77032040975357\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, also has, a unique training environment) -> a unique training environment (7990ms)\nWho is the president of Stanford University?\tthree waves\t-11.793940837234175\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, follow, $x) -> (Stanford University, followed, three waves) -> three waves (9312ms)\nWho is the president of Stanford University?\tMr. Steele\t-11.816825201729541\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Mr. Steele, is a senior fellow at, Stanford University) -> Mr. Steele (9083ms)\nWho is the president of Stanford University?\tHenry I. Miller\t-11.816825201729541\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Henry I. Miller, is a Fellow at, Stanford University) -> Henry I. Miller (7990ms)\nWho is the president of Stanford University?\tDr. Michelson\t-11.826249154739738\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Dr. Michelson, is a visiting fellow at, Stanford University) -> Dr. Michelson (8207ms)\nWho is the president of Stanford University?\tCA Emanuel\t-11.82713339384313\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a freshman at, stanford university) -> (CA Emanuel, will be a freshman at, Stanford University) -> CA Emanuel (8206ms)\nWho is the president of Stanford University?\tMr. Ajami\t-11.828052747634356\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Mr. Ajami, is a senior fellow at, Stanford University) -> Mr. Ajami (9312ms)\nWho is the president of Stanford University?\ta State Department adviser\t-11.82900150216271\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (a State Department adviser, is a fellow at, Stanford University) -> a State Department adviser (8206ms)\nWho is the president of Stanford University?\tDr. Miller\t-11.836206014239592\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Dr. Miller, is a fellow at, Stanford University) -> Dr. Miller (8402ms)\nWho is the president of Stanford University?\tMr. Robinson\t-11.836533645203044\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Mr. Robinson, is a fellow at, Stanford University) -> Mr. Robinson (8402ms)\nWho is the president of Stanford University?\tJean Guo\t-11.836994939933684\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Jean Guo, is an undergraduate student at, Stanford University) -> Jean Guo (9312ms)\nWho is the president of Stanford University?\tMr. Berkowitz\t-11.842527571824533\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Mr. Berkowitz, is a senior fellow at, Stanford University) -> Mr. Berkowitz (9312ms)\nWho is the president of Stanford University?\ta PhD\t-11.84730834376773\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (a PhD, was a long-standing professor at, Stanford University) -> a PhD (9312ms)\nWho is the president of Stanford University?\tB.J.Fogg\t-11.862998957902583\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (B.J.Fogg, is a professor at, Stanford University specialising) -> B.J.Fogg (9312ms)\nWho is the president of Stanford University?\tDr. Robert Sapolsky\t-11.864269697009842\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Robert Sapolsky, is a professor at, Stanford University) -> Dr. Robert Sapolsky (9312ms)\nWho is the president of Stanford University?\ta decade\t-11.8648279789542\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (a decade, was a senior administrator at, Stanford University) -> a decade (9404ms)\nWho is the president of Stanford University?\tOne graduate\t-11.867644894504426\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (One graduate, is a senior at, Stanford University) -> One graduate (9404ms)\nWho is the president of Stanford University?\tnice guys\t-11.870288909970132\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (Stanford University?s Graduate School, gives, nice guys) -> nice guys (9404ms)\nWho is the president of Stanford University?\tDavid Woo David\t-11.873603653735785\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a junior at, stanford university) -> (David Woo David, is a junior at, Stanford University majoring) -> David Woo David (8465ms)\nWho is the president of Stanford University?\tan essayist\t-11.873966452089366\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (an essayist, was a visiting professor at, Stanford University) -> an essayist (9404ms)\nWho is the president of Stanford University?\teconomics\t-11.884664047771938\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (economics, was a research fellow at, Stanford University) -> economics (8402ms)\nWho is the president of Stanford University?\tlarrycuban Sean Reardon\t-11.890795605256509\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (larrycuban Sean Reardon, is a professor at, Stanford University) -> larrycuban Sean Reardon (9403ms)\nWho is the president of Stanford University?\tSmith\t-11.893284983631837\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be dean of, stanford university) -> (Smith, was dean of, the Stanford University School) -> Smith (8402ms)\nWho is the president of Stanford University?\ta former U.S. ambassador\t-11.899637574672063\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (a former U.S. ambassador, is a professor at, Stanford University) -> a former U.S. ambassador (9403ms)\nWho is the president of Stanford University?\tAndrew Lo\t-11.900260477445972\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a junior at, stanford university) -> (Andrew Lo, is a junior at, Stanford University) -> Andrew Lo (8465ms)\nWho is the president of Stanford University?\tthe next speaker\t-11.901443412489957\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the next speaker) -> the next speaker (8465ms)\nWho is the president of Stanford University?\tJohn Kim\t-11.901605958577708\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (John Kim, is a graduate student at, Stanford University) -> John Kim (9404ms)\nWho is the president of Stanford University?\tDr. Mark Holodniy\t-11.902457707708722\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Dr. Mark Holodniy, was a research fellow at, Stanford University) -> Dr. Mark Holodniy (8465ms)\nWho is the president of Stanford University?\tPages Erika Williams\t-11.907595357686523\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a freshman at, stanford university) -> (Pages Erika Williams, is a freshman at, Stanford University) -> Pages Erika Williams (8465ms)\nWho is the president of Stanford University?\tRui Hu\t-11.916245086412527\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Rui Hu, was a Ph.D. student at, Stanford University) -> Rui Hu (9403ms)\nWho is the president of Stanford University?\tDr. Ehrlich\t-11.919712841781571\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Ehrlich, is a Professor at, Stanford University) -> Dr. Ehrlich (9435ms)\nWho is the president of Stanford University?\tMichael Ray\t-11.921481214583766\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Michael Ray, was a professor at, Stanford University) -> Michael Ray (9435ms)\nWho is the president of Stanford University?\tDr. Puerta\t-11.922626737314344\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Puerta, was a research professor at, Stanford University) -> Dr. Puerta (9435ms)\nWho is the president of Stanford University?\ta Ph.D.\t-11.92413382648935\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (a Ph.D., was a postdoctoral fellow at, Stanford University) -> a Ph.D. (8465ms)\nWho is the president of Stanford University?\tcheap solar power\t-11.927652370873554\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (Stanford University, have given the vision of, cheap solar power) -> cheap solar power (9435ms)\nWho is the president of Stanford University?\tDr. Larkin\t-11.9314687067299\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Dr. Larkin, was a post-doctoral fellow at, Stanford University) -> Dr. Larkin (8465ms)\nWho is the president of Stanford University?\t12 points\t-11.938494628267216\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had, 12 points) -> 12 points (9435ms)\nWho is the president of Stanford University?\tan Ethics Fellow\t-11.939361921617103\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (an Ethics Fellow, also was a fellow at, Stanford University) -> an Ethics Fellow (9435ms)\nWho is the president of Stanford University?\tthe Plenary\t-11.942857321291413\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (Stanford University, gave, the Plenary) -> the Plenary (9435ms)\nWho is the president of Stanford University?\tPage and Brin\t-11.949352603962168\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Page and Brin, were PhD students at, Stanford University) -> Page and Brin (9467ms)\nWho is the president of Stanford University?\tDr. Tiller\t-11.958814285952702\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Tiller, has been a professor at, Stanford University) -> Dr. Tiller (9467ms)\nWho is the president of Stanford University?\tFaculty Andrei Linde\t-11.962415652386639\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Faculty Andrei Linde, is a professor at, Stanford University) -> Faculty Andrei Linde (9467ms)\nWho is the president of Stanford University?\t25 years\t-11.963023704142673\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has over, 25 years) -> 25 years (9467ms)\nWho is the president of Stanford University?\tthe rare instance\t-11.964156869374984\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, the rare instance) -> the rare instance (9467ms)\nWho is the president of Stanford University?\tan MBA degree\t-11.964184025188832\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (an MBA degree, was a fellow at, Stanford university) -> an MBA degree (9467ms)\nWho is the president of Stanford University?\ta $ 10 million gift\t-11.968279705898912\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has received, a $ 10 million gift) -> a $ 10 million gift (9499ms)\nWho is the president of Stanford University?\tDr. Barrett\t-11.97330148215512\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an associate professor at, stanford university) -> (Dr. Barrett, was an Associate Professor at, Stanford University) -> Dr. Barrett (9499ms)\nWho is the president of Stanford University?\tDr. Corey Goodman\t-11.980983777618848\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Corey Goodman, was a professor at, Stanford University) -> Dr. Corey Goodman (9499ms)\nWho is the president of Stanford University?\tMr. Guzman\t-11.980983777618848\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Mr. Guzman, was a Research Fellow at, Stanford University) -> Mr. Guzman (9499ms)\nWho is the president of Stanford University?\tGreg Bybee\t-11.989170856451555\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Greg Bybee, is a graduate student at, Stanford University) -> Greg Bybee (9499ms)\nWho is the president of Stanford University?\tChester E. Finn Jr.\t-11.99478191998994\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Chester E. Finn Jr., is a senior fellow at, Stanford University) -> Chester E. Finn Jr. (9499ms)\nWho is the president of Stanford University?\tbiology\t-11.99525333899823\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (biology, was a postdoctoral fellow at, Stanford University) -> biology (9531ms)\nWho is the president of Stanford University?\tHerbert L. Abrams\t-11.997066864778839\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Herbert L. Abrams, is a professor at, Stanford University School) -> Herbert L. Abrams (9531ms)\nWho is the president of Stanford University?\tDr. G. Scott Hubbard\t-12.003256274991106\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. G. Scott Hubbard, is a Professor at, Stanford University) -> Dr. G. Scott Hubbard (9531ms)\nWho is the president of Stanford University?\tGe Wang\t-12.00690098701515\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (Ge Wang, is an Assistant Professor at, Stanford University) -> Ge Wang (9531ms)\nWho is the president of Stanford University?\tthe unit\t-12.010820362819533\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have proposed, the unit) -> the unit (9531ms)\nWho is the president of Stanford University?\tErik\t-12.020892949421262\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: ($x, select, stanford university) -> (Erik, was selected by, Stanford University) -> Erik (9531ms)\nWho is the president of Stanford University?\tthe first test site\t-12.050227236551493\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the first test site) -> the first test site (9564ms)\nWho is the president of Stanford University?\tBox .net\t-12.079453012895277\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, Box .net) -> Box .net (9564ms)\nWho is the president of Stanford University?\tan Equal Opportunity employer\t-12.098662851525532\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an Equal Opportunity employer) -> an Equal Opportunity employer (9564ms)\nWho is the president of Stanford University?\tthe most successful college\t-12.101510680242633\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the most successful college) -> the most successful college (9564ms)\nWho is the president of Stanford University?\tthe AlwaysOn Summit\t-12.120378740604712\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, call, $x) -> (Stanford University, called, the AlwaysOn Summit) -> the AlwaysOn Summit (9564ms)\nWho is the president of Stanford University?\tthe first choice\t-12.120724485885837\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, the first choice) -> the first choice (9564ms)\nWho is the president of Stanford University?\tEndy\t-12.120877404350036\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Endy, is a professor at, Stanford University) -> Endy (9596ms)\nWho is the president of Stanford University?\ta plant\t-12.127384577456564\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (a Stanford University scientist, was given a tour of, a plant) -> a plant (9596ms)\nWho is the president of Stanford University?\tJure Leskovec\t-12.157950108036243\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (Jure Leskovec, is an assistant professor at, Stanford University) -> Jure Leskovec (9596ms)\nWho is the president of Stanford University?\tKori Schake\t-12.167384884310323\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Kori Schake, is a research fellow at, Stanford University) -> Kori Schake (9596ms)\nWho is the president of Stanford University?\tJack\t-12.184697134963912\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Jack, is a senior at, Stanford University majoring) -> Jack (9596ms)\nWho is the president of Stanford University?\tThad Kousser\t-12.185953009542532\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Thad Kousser, is a visiting professor at, Stanford University) -> Thad Kousser (9596ms)\nWho is the president of Stanford University?\tthe third largest ice storage facility\t-12.200975934866467\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the third largest ice storage facility) -> the third largest ice storage facility (9596ms)\nWho is the president of Stanford University?\tSean Reardon\t-12.203375664746456\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Sean Reardon, is a professor at, Stanford University) -> Sean Reardon (9596ms)\nWho is the president of Stanford University?\tan 11 percent black student population\t-12.204260796207418\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, an 11 percent black student population) -> an 11 percent black student population (9809ms)\nWho is the president of Stanford University?\tPresident David Starr Jordan\t-12.219244426817895\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, follow, $x) -> (Stanford University, followed, President David Starr Jordan) -> President David Starr Jordan (9809ms)\nWho is the president of Stanford University?\tguidelines\t-12.23106750740721\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University ?, has developed, guidelines) -> guidelines (9809ms)\nWho is the president of Stanford University?\tJeff\t-12.235885370650342\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Jeff, is currently a graduate student at, Stanford University) -> Jeff (9809ms)\nWho is the president of Stanford University?\tVyas\t-12.236634166777538\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Vyas, is now a post-doctoral fellow at, Stanford University) -> Vyas (9809ms)\nWho is the president of Stanford University?\tHall\t-12.236634166777538\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Hall, is also a visiting fellow at, Stanford University) -> Hall (9809ms)\nWho is the president of Stanford University?\tthe technique\t-12.243364390338744\tWho is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had used, the technique) -> the technique (9809ms)\nHow long is human gestation?\tapproximate length of time\t-8.71442996711359\tHow long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Human gestation, Instance Of, approximate length of time) -> approximate length of time (7616ms)\nHow long is human gestation?\thaphazard process\t-8.759370595067605\tHow long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Human gestation, Instance Of, haphazard process) -> haphazard process (7616ms)\nHow long is human gestation?\tmatter of common knowledge\t-8.773356036963449\tHow long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Period of human gestation, Instance Of, matter of common knowledge) -> matter of common knowledge (7616ms)\nHow long is human gestation?\tgood analogy\t-8.797913964790235\tHow long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Armstrong's analogy of human gestation, Instance Of, good analogy) -> good analogy (7616ms)\nHow long is human gestation?\trandom variable\t-8.851806399163607\tHow long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (gestation period in humans, Instance Of, random variable) -> random variable (7617ms)\nHow long is human gestation?\ttopic\t-9.0329388086347\tHow long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (human gestation, Instance Of, topic) -> topic (7616ms)\nHow long is human gestation?\tweek\t-9.170803798978433\tHow long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (normal gestation period for a human female, Instance Of, week) -> week (7723ms)\nHow long is human gestation?\tnine months\t-13.8355450697429\tHow long is human gestation? -> how long be [ human gestation ] ? -> who long be human gestation ? -> $x: ($x, long be, human gestation) -> $x: (human gestation, last for, $x) -> (Human gestation, lasts for, nine months) -> nine months (12453ms)\nHow long is human gestation?\tthe Tzolkin\t-13.967400475550892\tHow long is human gestation? -> how long be [ human gestation ] ? -> who long be human gestation ? -> $x: ($x, long be, human gestation) -> $x: ($x, related to, human gestation) -> (the Tzolkin, may be related to, the human gestation period) -> the Tzolkin (12288ms)\nHow many types of human blood are there?\tBook Edition\t-6.128957266064445\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Morphology of Human Blood Cells, Type, Book Edition) -> Book Edition (10256ms)\nHow many types of human blood are there?\tEP\t-6.635270477649976\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human Blood, Release type, EP) -> EP (11745ms)\nHow many types of human blood are there?\tBook\t-6.919476813357754\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Morphology of Human Blood Cells, Type, Book) -> Book (11744ms)\nHow many types of human blood are there?\tWritten Work\t-6.966972588939308\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Morphology of Human Blood Cells, Type, Written Work) -> Written Work (11836ms)\nHow many types of human blood are there?\tCreative Work\t-7.109914768054937\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human Blood, Type, Creative Work) -> Creative Work (11871ms)\nHow many types of human blood are there?\tCanonical Version\t-7.409876638556236\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (The Blood of Human Heroes, Type, Canonical Version) -> Canonical Version (11951ms)\nHow many types of human blood are there?\tMusical Recording\t-7.409876638556236\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (The Blood of Human Heroes, Type, Musical Recording) -> Musical Recording (11951ms)\nHow many types of human blood are there?\tAward-Winning Work\t-7.473908481821414\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human blood group systems, Type, Award-Winning Work) -> Award-Winning Work (11951ms)\nHow many types of human blood are there?\tRelease track\t-7.485031691456637\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (The Blood of Human Heroes, Type, Release track) -> Release track (11975ms)\nHow many types of human blood are there?\tMusical Album\t-7.552818817671866\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human Blood, Type, Musical Album) -> Musical Album (12005ms)\nHow many types of human blood are there?\tMusical Release\t-7.552818817671866\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human Blood, Type, Musical Release) -> Musical Release (12005ms)\nHow many types of human blood are there?\tCataloged instance\t-7.594987213853275\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Morphology of Human Blood Cells, Notable types, Cataloged instance) -> Cataloged instance (12147ms)\nHow many types of human blood are there?\tbiological cell\t-7.925475440644471\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (human blood cells, is a type of, biological cell) -> biological cell (12278ms)\nHow many types of human blood are there?\tImage\t-8.07879720856348\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human brainstem blood supply description, Type, Image) -> Image (12458ms)\nHow many types of human blood are there?\tContent\t-8.07879720856348\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human brainstem blood supply description, Type, Content) -> Content (12458ms)\nHow many types of human blood are there?\tcertain markers\t-8.904242925634183\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human blood, is typed by, certain markers) -> certain markers (12586ms)\nHow many types of human blood are there?\tTV Episode\t-9.940463932427033\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, notable type, $x) -> (Witch mysterious human Kate! The blood it is slow!, Notable types, TV Episode) -> TV Episode (14823ms)\nHow many types of human blood are there?\tan Austrian ,\t-10.049394850566747\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: ($x, be the type of, human blood) -> $x: ($x, type of, human blood) -> (an Austrian ,, discovered different types of, human blood) -> an Austrian , (12586ms)\nHow many types of human blood are there?\tsample\t-10.290328989338649\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (sample, Instance Of, human blood sample) -> sample (13587ms)\nHow many types of human blood are there?\tmonocytes\t-10.295063186242267\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (monocytes, Instance Of, human blood cell) -> monocytes (13587ms)\nHow many types of human blood are there?\talbumin\t-10.313490064662645\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (albumin, Instance Of, human blood component) -> albumin (13587ms)\nHow many types of human blood are there?\tlymphocyte\t-10.313490064662645\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (lymphocyte, Instance Of, human blood component) -> lymphocyte (13588ms)\nHow many types of human blood are there?\tplasma\t-10.316397725676412\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (plasma, Instance Of, human blood product) -> plasma (13587ms)\nHow many types of human blood are there?\tpotassium\t-10.33851315766329\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (potassium, Instance Of, human blood) -> potassium (13682ms)\nHow many types of human blood are there?\tgender\t-10.340248032347434\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (gender, Instance Of, human blood characteristic) -> gender (13682ms)\nHow many types of human blood are there?\tcell\t-10.353957253435334\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (cell, Instance Of, human blood product) -> cell (13682ms)\nHow many types of human blood are there?\tplatelet\t-10.37283664564298\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (platelet, Instance Of, human blood component) -> platelet (13683ms)\nHow many types of human blood are there?\tmyoglobin\t-10.387347733760683\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (myoglobin, Instance Of, human blood component) -> myoglobin (13682ms)\nHow many types of human blood are there?\tcytokines\t-10.407281681342345\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (cytokines, Instance Of, human blood protein) -> cytokines (13763ms)\nHow many types of human blood are there?\tantibody\t-10.407281681342345\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (antibody, Instance Of, human blood protein) -> antibody (13763ms)\nHow many types of human blood are there?\tthrombocytopenia\t-10.452175636777488\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (thrombocytopenia, Instance Of, human blood disease) -> thrombocytopenia (13877ms)\nHow many types of human blood are there?\toxygen\t-10.452175636777488\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (oxygen, Instance Of, human blood gas) -> oxygen (13875ms)\nHow many types of human blood are there?\tboxing\t-10.452175636777488\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (boxing, Instance Of, human blood sport) -> boxing (13875ms)\nHow many types of human blood are there?\tleukemia\t-10.452175636777488\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (leukemia, Instance Of, human blood cancer) -> leukemia (13763ms)\nHow many types of human blood are there?\thormone\t-10.452175636777488\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (hormone, Instance Of, human blood protein) -> hormone (13875ms)\nHow many types of human blood are there?\tlymphoma\t-10.452175636777488\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (lymphoma, Instance Of, human blood cancer) -> lymphoma (13763ms)\nHow many types of human blood are there?\themophilia\t-10.452175636777488\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (hemophilia, Instance Of, human blood disorder) -> hemophilia (13875ms)\nHow many types of human blood are there?\tleukocyte\t-10.463926397885073\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (leukocyte, Instance Of, human blood cell) -> leukocyte (13902ms)\nHow many types of human blood are there?\ttransferrin\t-10.463969889455786\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (transferrin, Instance Of, human blood carrier protein) -> transferrin (13902ms)\nHow many types of human blood are there?\twhole blood\t-10.531044098454181\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (whole blood, Instance Of, human blood product) -> whole blood (13928ms)\nHow many types of human blood are there?\terythrocyte\t-10.549636213447235\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (erythrocyte, Instance Of, mature human blood cell) -> erythrocyte (13928ms)\nHow many types of human blood are there?\tlactate\t-10.549636213447235\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (lactate, Instance Of, parameter in human blood) -> lactate (13928ms)\nHow many types of human blood are there?\tgranulocytes\t-10.549636213447235\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (granulocytes, Instance Of, mature human blood cell) -> granulocytes (13954ms)\nHow many types of human blood are there?\tglucose\t-10.549636213447235\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (glucose, Instance Of, parameter in human blood) -> glucose (13928ms)\nHow many types of human blood are there?\tIVIG\t-10.633782544559118\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (IVIG, Instance Of, human blood product) -> IVIG (13954ms)\nHow many types of human blood are there?\thuman plasma protein\t-10.710807218908949\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (human plasma protein, Instance Of, human blood protein) -> human plasma protein (13954ms)\nHow many types of human blood are there?\tAAT\t-10.714928805787784\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (AAT, Instance Of, human blood protein) -> AAT (14094ms)\nHow many types of human blood are there?\tblood product\t-10.72361293930204\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (blood product, Instance Of, human blood product) -> blood product (14094ms)\nHow many types of human blood are there?\tLabeled\t-10.737543824366583\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, notable type, $x) -> (Culturing of human peripheral blood cells reveals unsuspected lymphocyte responses relevant to HIV disease, Notable types, Labeled) -> Labeled (15359ms)\nHow many types of human blood are there?\tblood cell\t-10.747517419083332\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (blood cell, Instance Of, human blood component) -> blood cell (14094ms)\nHow many types of human blood are there?\tFactor VIII\t-10.781962454782695\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Factor VIII, Instance Of, human blood factor) -> Factor VIII (14094ms)\nHow many types of human blood are there?\tbarbarism\t-10.826066951926672\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, is a relic of, barbarism) -> barbarism (14219ms)\nHow many types of human blood are there?\tMMA\t-10.826856410217838\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (MMA, Instance Of, human blood sport) -> MMA (14242ms)\nHow many types of human blood are there?\tATIII\t-10.826856410217838\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (ATIII, Instance Of, human blood protein) -> ATIII (14242ms)\nHow many types of human blood are there?\tHep-C\t-10.826856410217838\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Hep-C, Instance Of, human transmitted blood) -> Hep-C (14242ms)\nHow many types of human blood are there?\taplastic anemia\t-10.835450980702166\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (aplastic anemia, Instance Of, human blood cell disorder) -> aplastic anemia (14275ms)\nHow many types of human blood are there?\tmonocytic cell\t-10.838607171325423\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (monocytic cell, Instance Of, human blood cell) -> monocytic cell (14275ms)\nHow many types of human blood are there?\tPMNLs\t-10.838607171325423\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (PMNLs, Instance Of, human blood cell) -> PMNLs (14275ms)\nHow many types of human blood are there?\thuman serum\t-10.843307475278177\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (human serum, Instance Of, human blood sample) -> human serum (14275ms)\nHow many types of human blood are there?\tclotting factor\t-10.852359883984036\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (clotting factor, Instance Of, human blood product) -> clotting factor (14275ms)\nHow many types of human blood are there?\tascorbic acid\t-10.871005717583987\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (ascorbic acid, Instance Of, species in human blood) -> ascorbic acid (15538ms)\nHow many types of human blood are there?\tHuman Serum Albumin\t-10.917351011296473\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Human Serum Albumin, Instance Of, Human blood derived product) -> Human Serum Albumin (15595ms)\nHow many types of human blood are there?\tLutheran antigen system\t-10.921117304693615\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Lutheran antigen system, Instance Of, human blood group system) -> Lutheran antigen system (15595ms)\nHow many types of human blood are there?\tserum albumin\t-10.924316986887586\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (serum albumin, Instance Of, human blood factor) -> serum albumin (15595ms)\nHow many types of human blood are there?\tdendritic cell\t-10.924316986887586\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (dendritic cell, Instance Of, human peripheral blood cell) -> dendritic cell (15595ms)\nHow many types of human blood are there?\tLewis antigen system\t-10.935628392811317\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Lewis antigen system, Instance Of, human blood group system) -> Lewis antigen system (15595ms)\nHow many types of human blood are there?\tpolymorphonuclear leukocyte\t-10.936067747995171\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (polymorphonuclear leukocyte, Instance Of, human blood cell) -> polymorphonuclear leukocyte (15627ms)\nHow many types of human blood are there?\tRh factor\t-10.951735429063385\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Rh factor, Instance Of, human blood antigen) -> Rh factor (15627ms)\nHow many types of human blood are there?\tAnti-D immunoglobulin\t-10.971320031317928\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Anti-D immunoglobulin, Instance Of, human blood product) -> Anti-D immunoglobulin (15627ms)\nHow many types of human blood are there?\tlymphoid leukemia\t-11.003017335287922\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (lymphoid leukemia, Instance Of, human blood cell tumor) -> lymphoid leukemia (15627ms)\nHow many types of human blood are there?\tLewis X\t-11.006783628685064\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Lewis X, Instance Of, human blood group antigen) -> Lewis X (15654ms)\nHow many types of human blood are there?\tNatural Killer cell\t-11.006783628685064\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Natural Killer cell, Instance Of, human immune blood cell) -> Natural Killer cell (15654ms)\nHow many types of human blood are there?\tmyeloid leukemia\t-11.006783628685064\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (myeloid leukemia, Instance Of, human blood cell tumor) -> myeloid leukemia (15654ms)\nHow many types of human blood are there?\tDon Zauker\t-11.006783628685064\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Don Zauker, Instance Of, surgical human blood damage) -> Don Zauker (15654ms)\nHow many types of human blood are there?\tLevel I\t-11.006783628685064\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Level I, Instance Of, human whole blood hemolysate) -> Level I (15654ms)\nHow many types of human blood are there?\tfresh frozen plasma\t-11.013110961542006\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (fresh frozen plasma, Instance Of, human blood component) -> fresh frozen plasma (15654ms)\nHow many types of human blood are there?\tTopic\t-11.06831799726114\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Topic, Instance, Human Blood) -> Topic (15677ms)\nHow many types of human blood are there?\tImmune Serum Globulin Intravenous\t-11.07746932165433\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Immune Serum Globulin Intravenous, Instance Of, human blood fraction) -> Immune Serum Globulin Intravenous (15677ms)\nHow many types of human blood are there?\tinternal mammary artery\t-11.07746932165433\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (internal mammary artery, Instance Of, normal human blood vessel) -> internal mammary artery (15677ms)\nHow many types of human blood are there?\tstem cells\t-11.07854933779535\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (? Human cord blood, is a rich source of, stem cells) -> stem cells (15677ms)\nHow many types of human blood are there?\tEPILEPSY\t-11.096476570847148\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (Human Blood, was a treatment for, EPILEPSY) -> EPILEPSY (15677ms)\nHow many types of human blood are there?\tR hesus D immunoglobulin\t-11.124472366084674\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (R hesus D immunoglobulin, Instance Of, human blood product) -> R hesus D immunoglobulin (15678ms)\nHow many types of human blood are there?\tChrist Jesus\t-11.21171540627599\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: ($x, be the type of, human blood) -> $x: ($x, be the kind of, human blood) -> (Christ Jesus, was the same kind of, human blood) -> Christ Jesus (15700ms)\nHow many types of human blood are there?\tNecro Butcher\t-11.217640591411481\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Necro Butcher, Instance Of, starfish of human blood) -> Necro Butcher (15743ms)\nHow many types of human blood are there?\tBromley Marks\t-11.217640591411481\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Bromley Marks, Instance Of, supplier of human blood) -> Bromley Marks (15700ms)\nHow many types of human blood are there?\tRhogam\t-11.238252405078269\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Rhogam, Instance Of, human blood product) -> Rhogam (15742ms)\nHow many types of human blood are there?\tdeath\t-11.315474196044585\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, Will be a fugitive until, death) -> death (15742ms)\nHow many types of human blood are there?\tAlbumin\t-11.431745136959902\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Albumin, Instance Of, human blood fraction) -> Albumin (15766ms)\nHow many types of human blood are there?\tAntithrombin\t-11.431745136959902\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Antithrombin, Instance Of, human blood protein) -> Antithrombin (15768ms)\nHow many types of human blood are there?\tTransferrin\t-11.431745136959902\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Transferrin, Instance Of, human blood protein) -> Transferrin (15742ms)\nHow many types of human blood are there?\tImmunoglobulin\t-11.478748181390246\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Immunoglobulin, Instance Of, human blood product) -> Immunoglobulin (15766ms)\nHow many types of human blood are there?\tAmlodipine\t-11.52920571362965\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Amlodipine, Instance Of, human blood pressure medicine) -> Amlodipine (15766ms)\nHow many types of human blood are there?\tRhIG\t-11.680155544503734\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (RhIG, Instance Of, human-blood product) -> RhIG (15766ms)\nHow many types of human blood are there?\tLC\t-11.773611681969443\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, must be a welcome change for, LC) -> LC (15766ms)\nHow many types of human blood are there?\tmalaria control\t-11.813728228005191\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, is a major effort in, malaria control) -> malaria control (15791ms)\nHow many types of human blood are there?\tclinical medicine\t-12.142324451494662\tHow many types of human blood are there? -> how many type of [ human blood be ] there ? -> where be human blood be first use ? -> $x: (human blood, be be first use in, $x) -> (human blood, were first used in, clinical medicine) -> clinical medicine (15791ms)\nHow many types of human blood are there?\tthe growth\t-13.580531354564961\tHow many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, is a productive medium for, the growth) -> the growth (15791ms)\nWhat color are UPS trucks?\twindows &\t-7.155715345379142\tWhat color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, shade, $x) -> (The pick-up truck, had shaded, windows &) -> windows & (5056ms)\nWhat color are UPS trucks?\tPattani and Yala\t-7.758321429079797\tWhat color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, from steal, $x) -> (the pick-up trucks, were stolen from, Pattani and Yala) -> Pattani and Yala (5170ms)\nWhat color are UPS trucks?\tHome Farm\t-7.875919748792196\tWhat color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, from steal, $x) -> (The yellow pick-up truck, was stolen from, Home Farm) -> Home Farm (5170ms)\nWhat color are UPS trucks?\ta fair-sized cedar\t-8.007319921445397\tWhat color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, tear out, $x) -> (Her pick-up truck, tore out, a fair-sized cedar) -> a fair-sized cedar (5100ms)\nWhat color are UPS trucks?\tBay\t-10.187056107202789\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (Big Truck, Color, Bay) -> Bay (9006ms)\nWhat color are UPS trucks?\tRed Wine\t-10.412415159000552\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (2006 Red Truck Pinot Noir, Color, Red Wine) -> Red Wine (9006ms)\nWhat color are UPS trucks?\tWhite Wine\t-11.038090702019819\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (2005 Cline \"White Truck\" Santa Barbara Chardonnay, Color, White Wine) -> White Wine (9006ms)\nWhat color are UPS trucks?\tovernight express truck\t-12.066973664241054\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (the truck, is black color just like, overnight express truck) -> overnight express truck (9006ms)\nWhat color are UPS trucks?\tan already great time\t-12.327424865735107\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> ('s truck, added color to, an already great time) -> an already great time (9006ms)\nWhat color are UPS trucks?\tBrown's\t-12.510942802111964\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (Brown's, Instance Of, color) (Brown, is showing up on, the foliage and water trucks) -> Brown's (8179ms)\nWhat color are UPS trucks?\tused cars and trucks\t-12.527994459820125\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (used car and truck, has color photos of, used cars and trucks) -> used cars and trucks (9045ms)\nWhat color are UPS trucks?\tBrown\t-12.54061421532066\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (Brown, Instance Of, color) (Brown, is showing up on, the foliage and water trucks) -> Brown (8178ms)\nWhat color are UPS trucks?\tfair condition\t-12.571437107891226\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> $x: (up truck, picture, $x) -> $x: (up truck, be list, $x) -> (the pick up truck, was listed in, fair condition) -> fair condition (13347ms)\nWhat color are UPS trucks?\tRed\t-12.572163464263221\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: ($x, be the color of, truck) -> (Red, is the color of, a fire truck) -> Red (9045ms)\nWhat color are UPS trucks?\texcavator skin\t-12.602602022083612\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (truck dumper, was the color of, excavator skin) -> excavator skin (9045ms)\nWhat color are UPS trucks?\tA Jeep\t-12.632166878294303\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be up truck trail ? -> $x: ($x, be up, truck trail) -> $x: ($x, up, truck trail) -> (A Jeep, climbs up, Pilot Rock Truck Trail) -> A Jeep (6632ms)\nWhat color are UPS trucks?\tResident Gypsy\t-12.694375588311932\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (Resident Gypsy, Instance Of, Sabino colored Hackney X Irish Drayght stallion) (residents, were rounded up on, trucks) -> Resident Gypsy (8179ms)\nWhat color are UPS trucks?\tpurple spots\t-12.981227440304679\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (The ice cream truck, is indigo-colored with, purple spots) -> purple spots (9046ms)\nWhat color are UPS trucks?\tRAF Waddington\t-12.999059281500958\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (admin Leyland DAF Truck AP31AA, is pictured at, RAF Waddington) -> RAF Waddington (9630ms)\nWhat color are UPS trucks?\tJeep trucks\t-13.031861377758776\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (classic jeep trucks, includes pictures of, Jeep trucks) -> Jeep trucks (9630ms)\nWhat color are UPS trucks?\tWater\t-13.164776459535778\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color be in up truck ? -> $x: ($x, instance of, color) ($x, be in up, truck) -> (Water, Instance Of, color) (Water, is hauled up in, a truck) -> Water (12984ms)\nWhat color are UPS trucks?\tBrownie\t-13.389831108594537\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (Brownie, Instance Of, color) (Brownie, was stealthily sneaking up on, an old red pick-up truck) -> Brownie (8179ms)\nWhat color are UPS trucks?\tJerry ! Enclosed\t-13.442517384672943\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: ($x, be a picture of, truck) -> (Jerry ! Enclosed, is a picture of, my truck) -> Jerry ! Enclosed (14929ms)\nWhat color are UPS trucks?\tRollin? Thunder\t-13.551087490124718\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (S&J Truck Sales ?, had a picture of, Rollin? Thunder) -> Rollin? Thunder (9629ms)\nWhat color are UPS trucks?\tantique ocean\t-13.60601422848359\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (truck Globe, pictured here is, antique ocean) -> antique ocean (9629ms)\nWhat color are UPS trucks?\tAmsterdam\t-13.618655074646702\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (This truck, was pictured in, Amsterdam) -> Amsterdam (9629ms)\nWhat color are UPS trucks?\tHoofddorp\t-13.625808173256765\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (The dump truck, is pictured at, Hoofddorp) -> Hoofddorp (9629ms)\nWhat color are UPS trucks?\ta firefighter?s real bunker coat\t-13.764243721435587\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the trucks, take a picture in, a firefighter?s real bunker coat) -> a firefighter?s real bunker coat (9722ms)\nWhat color are UPS trucks?\tthe Missouri state line\t-13.812874605923438\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (a truck, took my picture at, the Missouri state line) -> the Missouri state line (9722ms)\nWhat color are UPS trucks?\tMcGruff\t-13.818179777032313\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (armored trucks, take pictures with, McGruff) -> McGruff (9722ms)\nWhat color are UPS trucks?\ttoday?s Mini Page\t-13.838516327769009\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the fire trucks, pictured in, today?s Mini Page) -> today?s Mini Page (9721ms)\nWhat color are UPS trucks?\tFB.\t-13.857904123977352\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (their homes and trucks, then post the pictures to, FB.) -> FB. (9722ms)\nWhat color are UPS trucks?\tthe Rhinos and Giraffes\t-13.895924613545159\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (a pickup truck, just took pictures of, the Rhinos and Giraffes) -> the Rhinos and Giraffes (9721ms)\nWhat color are UPS trucks?\tSue Wiese\t-14.024928209815847\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (a truck driver, is pictured with, Sue Wiese) -> Sue Wiese (9764ms)\nWhat color are UPS trucks?\tbrown\t-14.04905242923435\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (brown, Instance Of, color) (Brown, is showing up on, the foliage and water trucks) -> brown (8675ms)\nWhat color are UPS trucks?\tManagement\t-14.086937297782184\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color do up truck have ? -> $x: ($x, instance of, color) ($x, do up, truck) -> (Management, Instance Of, four page, color publication) (Management, does n?t keep up, the trucks) -> Management (8674ms)\nWhat color are UPS trucks?\tthe body\t-14.103261961257186\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (your car or truck, are painted the same color as, the body) -> the body (9046ms)\nWhat color are UPS trucks?\tthe lot\t-14.110344123958274\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> ('s truck first and green, was the only color on, the lot) -> the lot (9046ms)\nWhat color are UPS trucks?\tAttached\t-14.160911370206327\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: ($x, be a picture of, truck) -> (Attached, is a picture of, my truck) -> Attached (14929ms)\nWhat color are UPS trucks?\ta wider range\t-14.172966376403588\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (The Hustler truck, should picture, a wider range) -> a wider range (9764ms)\nWhat color are UPS trucks?\tthe bottom\t-14.222251421431096\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be up truck trail ? -> $x: ($x, be up, truck trail) -> $x: ($x, up, truck trail) -> (the bottom, walk up to, the Santiago Truck Trail gate) -> the bottom (6631ms)\nWhat color are UPS trucks?\tMike\t-14.230195131320837\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, took this picture by, Mike) -> Mike (9764ms)\nWhat color are UPS trucks?\tJune 7 , 1930\t-14.255548057862992\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: ($x, be a picture of, truck) -> (June 7 , 1930, Here is a picture of, the giant transport truck) -> June 7 , 1930 (14929ms)\nWhat color are UPS trucks?\tguys\t-15.018524532157098\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> $x: ($x, be a picture of up, truck) -> $x: ($x, picture of up, truck) -> (guys, post up pictures of, your trucks) -> guys (6631ms)\nWhat color are UPS trucks?\tthe chocolate sandwich cookie\t-15.340819008631769\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, was a picture of, the chocolate sandwich cookie) -> the chocolate sandwich cookie (9763ms)\nWhat color are UPS trucks?\tthe blockades\t-15.50013260588314\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (trucks, are pictured during, the blockades) -> the blockades (9764ms)\nWhat color are UPS trucks?\tmortar\t-15.519466274528805\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color be in up truck ? -> $x: ($x, instance of, color) ($x, be in up, truck) -> (mortar, Instance Of, colored material) (Mortar, was brought up in, 15 cwt truck) -> mortar (12984ms)\nWhat color are UPS trucks?\tthe future\t-15.524741183755298\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (This truck, is a picture of, the future) -> the future (9805ms)\nWhat color are UPS trucks?\tbrownie\t-15.612004469912861\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (brownie, Instance Of, dark-colored food) (Brownie, was stealthily sneaking up on, an old red pick-up truck) -> brownie (8713ms)\nWhat color are UPS trucks?\tthe back\t-15.802518854102075\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (six service trucks, display his picture on, the back) -> the back (9805ms)\nWhat color are UPS trucks?\tthe injury\t-15.821087032036578\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (your car or truck, take pictures of, the injury) -> the injury (9806ms)\nWhat color are UPS trucks?\tthe fire\t-15.900664809478874\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (my truck, take pictures of, the fire) -> the fire (9805ms)\nWhat color are UPS trucks?\tthe materials\t-15.930662947904967\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, takes a digital picture of, the materials) -> the materials (9806ms)\nWhat color are UPS trucks?\tthe truck\t-15.961609893561707\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (his ?Truth Truck ?, started taking pictures of, the truck) -> the truck (9805ms)\nWhat color are UPS trucks?\tknitters\t-16.010294672072785\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: ($x, be a picture of, truck) -> (knitters, here is a picture of, Butch Trucks) -> knitters (14929ms)\nWhat color are UPS trucks?\tthe sides\t-16.032345701588447\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the Truth Truck, has these pictures on, the sides) -> the sides (9911ms)\nWhat color are UPS trucks?\tthe group\t-16.066009774575733\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (A truck, took pictures of, the group) -> the group (9910ms)\nWhat color are UPS trucks?\toften\t-16.40579531203946\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (cars and trucks, trendsetting paint colors, often) -> often (9085ms)\nWhat color are UPS trucks?\tpages\t-16.445212508961895\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the the truck, pictured on, pages) -> pages (9911ms)\nWhat color are UPS trucks?\tthe box\t-17.026161550767856\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, pictured on, the box) -> the box (9910ms)\nWhat color are UPS trucks?\tthe post\t-17.363030155925987\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (The Graebel truck, pictured in, the post) -> the post (9911ms)\nWhat color are UPS trucks?\tabove\t-17.56353537352184\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, pictured, above) -> above (9910ms)\nWhat color are UPS trucks?\tbelow\t-17.671213551755027\tWhat color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, pictured, below) -> below (9985ms)\nWho was Carolyn Bessette Kennedy married to?\tJohn F. Kennedy Jr.\t-10.073480677960209\tWho was Carolyn Bessette Kennedy married to? -> who be [ carolyn bessette kennedy ] marry to ? -> who marry carolyn bessette kennedy ? -> $x: ($x, marry, carolyn bessette kennedy) -> $x: (carolyn bessette kennedy, be the wife of, $x) -> (Carolyn Bessette-Kennedy, was the wife of, John F. Kennedy Jr.) -> John F. Kennedy Jr. (5117ms)\nWhat books has Walter Mosley written?\tFear of the Dark\t-1.2264489321536678\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Fear of the Dark, Instance Of, book) (Walter Mosley, Works written, Fear of the Dark) -> Fear of the Dark (2944ms)\nWhat books has Walter Mosley written?\tFortunate Son\t-1.3602917274457678\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Fortunate Son, Instance Of, book) (Walter Mosley, Works written, Fortunate Son) -> Fortunate Son (2944ms)\nWhat books has Walter Mosley written?\tFear Itself\t-1.7558782550286507\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Fear Itself, Instance Of, book) (Walter Mosley, Works written, Fear itself) -> Fear Itself (3179ms)\nWhat books has Walter Mosley written?\tWhat Comes Next\t-1.7675604837372618\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (What Comes Next, Instance Of, book) (Walter Mosley, Works written, What next) -> What Comes Next (3179ms)\nWhat books has Walter Mosley written?\tBlonde Faith\t-2.0408038598361835\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Blonde Faith, Instance Of, excellent book) (Walter Mosley, Works written, Blonde Faith) -> Blonde Faith (4237ms)\nWhat books has Walter Mosley written?\tLife Out of Context\t-2.088700858876228\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Life Out of Context, Instance Of, book) (Walter Mosley, Works written, Life Out of Context) -> Life Out of Context (4237ms)\nWhat books has Walter Mosley written?\tRL's Dream\t-2.1626658631047393\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (RL's Dream, Instance Of, good book) (Walter Mosley, Works written, RL's dream) -> RL's Dream (4237ms)\nWhat books has Walter Mosley written?\tKilling Johnny Fry\t-2.179723623180954\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Killing Johnny Fry, Instance Of, serious book) (Walter Mosley, Works written, Killing Johnny Fry) -> Killing Johnny Fry (4965ms)\nWhat books has Walter Mosley written?\tDevil in a blue dress\t-2.3389592348307637\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Devil in a blue dress, Instance Of, outstanding book) (Walter Mosley, Works written, Devil in a Blue Dress) -> Devil in a blue dress (4965ms)\nWhat books has Walter Mosley written?\tDevil in a Blue Dress\t-2.3976359560654825\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Devil in a Blue Dress, Instance Of, rich and beautiful book) (Walter Mosley, Works written, Devil in a Blue Dress) -> Devil in a Blue Dress (4965ms)\nWhat books has Walter Mosley written?\tCINNAMON KISS\t-2.4403838787550614\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (CINNAMON KISS, Instance Of, ambitious and exciting book) (Walter Mosley, Works written, Cinnamon Kiss) -> CINNAMON KISS (4965ms)\nWhat books has Walter Mosley written?\tThe Wave\t-2.5586519971607635\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (The Wave, Instance Of, good book) (Walter Mosley, Works written, The wave) -> The Wave (5079ms)\nWhat books has Walter Mosley written?\tFortunate Sons\t-3.0947149495122215\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Fortunate Sons, Instance Of, well-written, engaging book) (Walter Mosley, Works written, Fortunate Son) -> Fortunate Sons (5129ms)\nWhat books has Walter Mosley written?\tBlue light\t-3.7371075078326403\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Blue light) -> Blue light (14727ms)\nWhat books has Walter Mosley written?\tAlways outnumbered, always outgunned\t-4.467704855071653\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Always outnumbered, always outgunned) -> Always outnumbered, always outgunned (14727ms)\nWhat books has Walter Mosley written?\tAlways Outnumbered Always Outgunned\t-4.467704855071653\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Always Outnumbered Always Outgunned) -> Always Outnumbered Always Outgunned (14727ms)\nWhat books has Walter Mosley written?\tAlways Outnumbered, Always Outgunned\t-4.467704855071653\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Always Outnumbered, Always Outgunned) -> Always Outnumbered, Always Outgunned (14727ms)\nWhat books has Walter Mosley written?\tAlways Outnumbered Always Outgunned Uk\t-4.5651654317414\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Always Outnumbered Always Outgunned Uk) -> Always Outnumbered Always Outgunned Uk (14727ms)\nWhat books has Walter Mosley written?\tA Little Yellow Dog\t-4.5651654317414\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, A Little Yellow Dog) -> A Little Yellow Dog (14727ms)\nWhat books has Walter Mosley written?\tBlue Light (Five Star)\t-4.5651654317414\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Blue Light (Five Star)) -> Blue Light (Five Star) (14727ms)\nWhat books has Walter Mosley written?\tDevil in a blue dress.\t-4.64763207353888\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Devil in a blue dress.) -> Devil in a blue dress. (14968ms)\nWhat books has Walter Mosley written?\tWhat next\t-4.768128272116576\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, What next) -> What next (14968ms)\nWhat books has Walter Mosley written?\tDevil in a Blue Dress (Five Star)\t-4.779578700414845\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Devil in a Blue Dress (Five Star)) -> Devil in a Blue Dress (Five Star) (14967ms)\nWhat books has Walter Mosley written?\tDevil in a Blue Dress (Easy Rowlins Mysteries)\t-4.833182017583206\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Devil in a Blue Dress (Easy Rowlins Mysteries)) -> Devil in a Blue Dress (Easy Rowlins Mysteries) (14968ms)\nWhat books has Walter Mosley written?\tDEVIL IN A BLUE DRESS (Easy Rawlins Mysteries)\t-4.833182017583206\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, DEVIL IN A BLUE DRESS (Easy Rawlins Mysteries)) -> DEVIL IN A BLUE DRESS (Easy Rawlins Mysteries) (14968ms)\nWhat books has Walter Mosley written?\tDevil in a Blue Dress (Easy Rawlins Mysteries (Audio))\t-4.880479062143525\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Devil in a Blue Dress (Easy Rawlins Mysteries (Audio))) -> Devil in a Blue Dress (Easy Rawlins Mysteries (Audio)) (14967ms)\nWhat books has Walter Mosley written?\tFear itself\t-5.339896988579095\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Fear itself) -> Fear itself (15068ms)\nWhat books has Walter Mosley written?\tBlue Light\t-5.625923986025282\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Blue Light) -> Blue Light (15069ms)\nWhat books has Walter Mosley written?\tWalter Mosely Omnibus\t-5.721874369097153\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Walter Mosely Omnibus) -> Walter Mosely Omnibus (15068ms)\nWhat books has Walter Mosley written?\tBlack Betty\t-5.869265832066873\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Black Betty) -> Black Betty (15068ms)\nWhat books has Walter Mosley written?\tMuerte Escarlata\t-5.869265832066873\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Muerte Escarlata) -> Muerte Escarlata (15068ms)\nWhat books has Walter Mosley written?\tWhite Butterfly\t-5.869265832066873\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, White Butterfly) -> White Butterfly (15068ms)\nWhat books has Walter Mosley written?\tFearless Jones\t-5.869265832066873\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Fearless Jones) -> Fearless Jones (15068ms)\nWhat books has Walter Mosley written?\tLittle Scarlet\t-5.869265832066873\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Little Scarlet) -> Little Scarlet (15156ms)\nWhat books has Walter Mosley written?\tGONE FISHIN\t-5.906478528163188\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, GONE FISHIN) -> GONE FISHIN (15156ms)\nWhat books has Walter Mosley written?\tAlways Outnumbered\t-5.947234293402671\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Film writing credits, Always Outnumbered) -> Always Outnumbered (15156ms)\nWhat books has Walter Mosley written?\tRL's dream\t-5.95354164381441\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, RL's dream) -> RL's dream (15156ms)\nWhat books has Walter Mosley written?\tSocrates' Welt\t-5.95354164381441\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Socrates' Welt) -> Socrates' Welt (15156ms)\nWhat books has Walter Mosley written?\tde Pesca\t-5.95354164381441\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, de Pesca) -> de Pesca (15156ms)\nWhat books has Walter Mosley written?\tnovel\t-6.001537129757501\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (novel, Instance Of, book) (Walter Mosley, took a break from writing, novels) -> novel (5789ms)\nWhat books has Walter Mosley written?\tWalkin' the dog\t-6.0315101051502085\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Walkin' the dog) -> Walkin' the dog (15199ms)\nWhat books has Walter Mosley written?\tEL CASO BROWN\t-6.0315101051502085\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, EL CASO BROWN) -> EL CASO BROWN (15156ms)\nWhat books has Walter Mosley written?\tSix easy pieces\t-6.0315101051502085\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Six easy pieces) -> Six easy pieces (15199ms)\nWhat books has Walter Mosley written?\tUn Perro Amarillo\t-6.0315101051502085\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Un Perro Amarillo) -> Un Perro Amarillo (15199ms)\nWhat books has Walter Mosley written?\tLa mariposa blanca\t-6.0315101051502085\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, La mariposa blanca) -> La mariposa blanca (15199ms)\nWhat books has Walter Mosley written?\tThe Tempest Tales\t-6.075289747616461\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, The Tempest Tales) -> The Tempest Tales (15199ms)\nWhat books has Walter Mosley written?\tLa musique du diable\t-6.09648382293004\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, La musique du diable) -> La musique du diable (15233ms)\nWhat books has Walter Mosley written?\tUm demo?nio vestido de azul\t-6.151461584128359\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Um demo?nio vestido de azul) -> Um demo?nio vestido de azul (15233ms)\nWhat books has Walter Mosley written?\tThe Man in My Basement\t-6.151461584128359\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, The Man in My Basement) -> The Man in My Basement (15233ms)\nWhat books has Walter Mosley written?\tBlues de Los Suenos Rotos\t-6.151461584128359\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Blues de Los Suenos Rotos) -> Blues de Los Suenos Rotos (15233ms)\nWhat books has Walter Mosley written?\tFische fangen\t-6.156752150928602\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Fische fangen) -> Fische fangen (15232ms)\nWhat books has Walter Mosley written?\tPapillon blanc\t-6.156752150928602\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Papillon blanc) -> Papillon blanc (15233ms)\nWhat books has Walter Mosley written?\tEasy Rawlins Mysteries\t-6.1734120850231085\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Series Written (or Contributed To), Easy Rawlins Mysteries) -> Easy Rawlins Mysteries (15265ms)\nWhat books has Walter Mosley written?\t47\t-6.25080431851806\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, 47) -> 47 (15265ms)\nWhat books has Walter Mosley written?\tBad Boy Brawly Brown: An Easy Rawlins Mystery\t-6.275161546824577\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Bad Boy Brawly Brown: An Easy Rawlins Mystery) -> Bad Boy Brawly Brown: An Easy Rawlins Mystery (15265ms)\nWhat books has Walter Mosley written?\tWorkin' on the Chain Gang: Shaking Off the Dead Hand of History\t-6.3597983634062\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Workin' on the Chain Gang: Shaking Off the Dead Hand of History) -> Workin' on the Chain Gang: Shaking Off the Dead Hand of History (15265ms)\nWhat books has Walter Mosley written?\tTransgressions Vol. 3\t-6.424067565930946\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Transgressions Vol. 3) -> Transgressions Vol. 3 (15265ms)\nWhat books has Walter Mosley written?\tRed Death\t-6.479262183763334\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Red Death) -> Red Death (15298ms)\nWhat books has Walter Mosley written?\tFutureland\t-6.5499652087041245\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Futureland) -> Futureland (15298ms)\nWhat books has Walter Mosley written?\tDiablerie\t-6.5499652087041245\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Diablerie) -> Diablerie (15298ms)\nWhat books has Walter Mosley written?\tCinnamon Kiss\t-6.882764555160634\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Cinnamon Kiss) -> Cinnamon Kiss (15298ms)\nWhat books has Walter Mosley written?\tThe wave\t-7.658029057167201\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, The wave) -> The wave (15520ms)\nWhat books has Walter Mosley written?\tNovels\t-7.696041167163703\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> $x: ($x, be the most popular form of, books) (Walter Mosley, written, $x) -> (Novels, are the most popular form of, books) (Walter Mosley, took a break from writing, novels) -> Novels (5995ms)\nWhat books has Walter Mosley written?\tThe right mistake\t-7.865512294132332\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, The right mistake) -> The right mistake (15520ms)\nWhat books has Walter Mosley written?\tRed Mask of Death\t-7.986233648385568\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many poem do walter mosley write ? -> $x: ($x, instance of, poem) (walter mosley, write, $x) -> (Red Mask of Death, Instance Of, narrative poem) (Walter Mosley, Works written, Red Death) -> Red Mask of Death (15520ms)\nWhat books has Walter Mosley written?\tResponse\t-8.503960575374236\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley make ? -> $x: ($x, instance of, book) (walter mosley, make, $x) -> (Response, Instance Of, book) (Walter Mosley, was made in, response) -> Response (14466ms)\nWhat books has Walter Mosley written?\tthe novel\t-8.828432788220663\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> $x: ($x, be a by, books) (Walter Mosley, written, $x) -> (the novel, will be a featured alternate selection by, Book) (Walter Mosley, took a break from writing, novels) -> the novel (9966ms)\nWhat books has Walter Mosley written?\tfiction\t-9.500819597745997\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book have walter mosley publish ? -> $x: ($x, instance of, book) (walter mosley, publish, $x) -> (fiction, Instance Of, book) (Walter Mosley, has published, fiction) -> fiction (14466ms)\nWhat books has Walter Mosley written?\tThe novel\t-10.16219277626174\tWhat books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> $x: ($x, be the kind of, books) (Walter Mosley, written, $x) -> (The novel, was the kind of, book) (Walter Mosley, took a break from writing, novels) -> The novel (13613ms)\nWhat books has Walter Mosley written?\tnovels\t-11.24681043958462\tWhat books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, took a break from writing, novels) -> novels (15552ms)\nWhat was the name of Ayn Rand's husband?\tCardiovascular disease\t-9.071744071186155\tWhat was the name of Ayn Rand's husband? -> what be the name of [ ayn rand s ] husband ? -> when be ayn rand s death ? -> $x: (ayn rand, death, $x) -> (Ayn Rand, Cause of death, Cardiovascular disease) -> Cardiovascular disease (8799ms)\nWhat was the name of Ayn Rand's husband?\tNew York City\t-9.443202051103158\tWhat was the name of Ayn Rand's husband? -> what be the name of [ ayn rand s ] husband ? -> when be ayn rand s death ? -> $x: (ayn rand, death, $x) -> (Ayn Rand, Place of death, New York City) -> New York City (8798ms)\nWhat was the name of Ayn Rand's husband?\t1982-03-06\t-9.509652118087068\tWhat was the name of Ayn Rand's husband? -> what be the name of [ ayn rand s ] husband ? -> when be ayn rand s death ? -> $x: (ayn rand, death, $x) -> (Ayn Rand, Date of death, 1982-03-06) -> 1982-03-06 (8798ms)\nWhat was the name of Ayn Rand's husband?\t1920\t-11.596814567690998\tWhat was the name of Ayn Rand's husband? -> what be the name of [ ayn rand ] s husband ? -> what be ayn rand s inspiration ? -> $x: (ayn rand, inspiration, $x) -> (Ayn Rand, found early inspiration in, 1920) -> 1920 (7288ms)\nWhat was the name of Ayn Rand's husband?\tvalues\t-12.021500557881584\tWhat was the name of Ayn Rand's husband? -> what be the name of [ ayn rand ] s husband ? -> what be ayn rand s interest ? -> $x: (ayn rand, interest, $x) -> (Ayn Rand, shows an interesting balance of, values) -> values (7289ms)\nWhat is Africa's largest country?\tAfrica\t-3.2670816707989547\tWhat is Africa's largest country? -> $x: (Africa, largest country, $x) -> (South Africa, is the tenth largest country in, Africa) -> Africa (6805ms)\nWhat is Africa's largest country?\tcrossword puzzle clue\t-3.931523224772496\tWhat is Africa's largest country? -> $x: (Africa's largest country, instance of, $x) -> (Africa's largest country, Instance Of, crossword puzzle clue) -> crossword puzzle clue (6805ms)\nWhat is Africa's largest country?\tsociety of different religious, ethnic and social group\t-4.10684443656873\tWhat is Africa's largest country? -> $x: (Africa's largest country, instance of, $x) -> (Africa's largest country, Instance Of, society of different religious, ethnic and social group) -> society of different religious, ethnic and social group (6805ms)\nWhat is Africa's largest country?\tSouth East Asia\t-9.591250552441362\tWhat is Africa's largest country? -> what be africa [ s largest country ] ? -> what be india s largest country ? -> $x: (india, largest country, $x) -> (India, is the largest country in, South East Asia) -> South East Asia (19569ms)\nWhat is Africa's largest country?\tDR Congo\t-9.799037574094255\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (DR Congo, is the third largest country in, Africa) -> DR Congo (18203ms)\nWhat is Africa's largest country?\tSouth Africa\t-9.94254442223492\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (South Africa, is the tenth largest country in, Africa) -> South Africa (18203ms)\nWhat is Africa's largest country?\t? Tanzania\t-10.14573006006131\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (? Tanzania, is the largest country in, East Africa) -> ? Tanzania (18203ms)\nWhat is Africa's largest country?\tEthiopia\t-10.25236375951461\tWhat is Africa's largest country? -> what [ be africa s ] largest country ? -> what be be africa s largest country ? -> $x: ($x, be be, africa s largest country) -> (Ethiopia, is one of, Africa ?s largest countries) -> Ethiopia (14789ms)\nWhat is Africa's largest country?\tland mass\t-10.398136343663031\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (land mass, is the largest country in, Africa) -> land mass (18203ms)\nWhat is Africa's largest country?\tSudan Sudan\t-10.415714479271244\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Sudan Sudan, is the largest country in, Africa) -> Sudan Sudan (18203ms)\nWhat is Africa's largest country?\tSouthern Sudan Sudan\t-10.460542783546975\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Southern Sudan Sudan, is the largest country in, Africa) -> Southern Sudan Sudan (18203ms)\nWhat is Africa's largest country?\tOPEC\t-10.490933475593627\tWhat is Africa's largest country? -> what [ be africa s ] largest country ? -> what be be africa s largest country ? -> $x: ($x, be be, africa s largest country) -> (OPEC, is, Africa ?s 2nd largest oil producing country) -> OPEC (14789ms)\nWhat is Africa's largest country?\tEastern Algeria Algeria\t-10.494534540200007\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Eastern Algeria Algeria, is the largest country in, Africa) -> Eastern Algeria Algeria (18254ms)\nWhat is Africa's largest country?\tAlgeria Algeria\t-10.52786448176401\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Algeria Algeria, is the second largest country in, Africa) -> Algeria Algeria (18254ms)\nWhat is Africa's largest country?\tDarfur Context Sudan\t-10.538287520842047\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Darfur Context Sudan, is the largest country in, Africa) -> Darfur Context Sudan (18254ms)\nWhat is Africa's largest country?\tTanzania Tanzania\t-10.567135928666623\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Tanzania Tanzania, is the largest country in, East Africa) -> Tanzania Tanzania (18254ms)\nWhat is Africa's largest country?\tAngola Angola\t-10.57377818621902\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Angola Angola, is the seventh largest country in, Africa) -> Angola Angola (18254ms)\nWhat is Africa's largest country?\tSudan\t-10.587677311113527\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Sudan, was also the largest country in, Africa) -> Sudan (18254ms)\nWhat is Africa's largest country?\tShi? Islam\t-10.594842079005335\tWhat is Africa's largest country? -> what be africa [ s largest country ] ? -> what be india s largest country ? -> $x: (india, largest country, $x) -> (India, is also the second largest country of, Shi? Islam) -> Shi? Islam (19569ms)\nWhat is Africa's largest country?\tNigeria\t-10.606057031615208\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Nigeria, is the largest country in, Africa) -> Nigeria (18284ms)\nWhat is Africa's largest country?\tThe DRC\t-10.619546768037308\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (The DRC, is the largest country in, Africa) -> The DRC (18284ms)\nWhat is Africa's largest country?\tLibya\t-10.623200149782498\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Libya, is the fourth largest country in, Africa) -> Libya (18284ms)\nWhat is Africa's largest country?\tMali\t-10.647251084418816\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Mali, is the seventh largest country in, Africa) -> Mali (18284ms)\nWhat is Africa's largest country?\tProgram Sudan\t-10.648115360679697\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Program Sudan, is the largest country in, Africa) -> Program Sudan (18284ms)\nWhat is Africa's largest country?\tTanzania\t-10.651734309839116\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Tanzania, is the largest country in, East Africa) -> Tanzania (18315ms)\nWhat is Africa's largest country?\tChad\t-10.659385237736107\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Chad, is the fifth largest country in, Africa) -> Chad (18315ms)\nWhat is Africa's largest country?\tOverview Algeria\t-10.660037209263901\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Overview Algeria, is the second largest country in, Africa) -> Overview Algeria (18315ms)\nWhat is Africa's largest country?\tFrench StampAlgeria\t-10.673512644857441\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (French StampAlgeria, is the second largest country in, Africa) -> French StampAlgeria (18315ms)\nWhat is Africa's largest country?\tSouth-East Asia\t-10.673872176703032\tWhat is Africa's largest country? -> what be africa [ s largest country ] ? -> what be india s largest country ? -> $x: (india, largest country, $x) -> (India, is the largest country in, South-East Asia) -> South-East Asia (19569ms)\nWhat is Africa's largest country?\tAlgeria\t-10.675481234057719\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Algeria, is the largest country in, Africa) -> Algeria (18315ms)\nWhat is Africa's largest country?\tZa?re\t-10.681402281782548\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Za?re, is the second largest country in, Africa) -> Za?re (18448ms)\nWhat is Africa's largest country?\tThe Congo/Zaire\t-10.711990053563284\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (The Congo/Zaire, is the third largest country in, Africa) -> The Congo/Zaire (18783ms)\nWhat is Africa's largest country?\tRape DR Congo\t-10.715783954667778\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Rape DR Congo, is the third largest country in, Africa) -> Rape DR Congo (18783ms)\nWhat is Africa's largest country?\tMagola ADP Tanzania\t-10.740869173777998\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Magola ADP Tanzania, is the largest country in, East Africa) -> Magola ADP Tanzania (18783ms)\nWhat is Africa's largest country?\tnearly twice the size\t-10.750267698631198\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (nearly twice the size, is the largest country in, West Africa) -> nearly twice the size (18783ms)\nWhat is Africa's largest country?\tARMED RESISTANCE Sudan\t-10.751261401248122\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (ARMED RESISTANCE Sudan, is the largest country in, Africa) -> ARMED RESISTANCE Sudan (18856ms)\nWhat is Africa's largest country?\tNamibia\t-10.752073574384326\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Namibia, is the fifth largest country in, Africa) -> Namibia (18856ms)\nWhat is Africa's largest country?\tNiger\t-10.765008844841914\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Niger, is the largest country in, West Africa) -> Niger (18856ms)\nWhat is Africa's largest country?\tNile Water Resources Sudan\t-10.778070045071964\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Nile Water Resources Sudan, is the largest country in, Africa) -> Nile Water Resources Sudan (18856ms)\nWhat is Africa's largest country?\tMore African Genocide Sudan\t-10.852342651405387\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (More African Genocide Sudan, is the largest country in, Africa) -> More African Genocide Sudan (18890ms)\nWhat is Africa's largest country?\t1 . Algeria\t-11.02031386768137\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (1 . Algeria, is the second largest country in, Africa) -> 1 . Algeria (18890ms)\nWhat is Africa's largest country?\tUnited States\t-11.08072227961922\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (United States, Instance Of, largest country) (the United States and, are in, South Africa) -> United States (17666ms)\nWhat is Africa's largest country?\tThe Congo\t-11.10715069278612\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (The Congo, is the second largest country in, the Africa) -> The Congo (18936ms)\nWhat is Africa's largest country?\tThe Sudan\t-11.271070473232257\tWhat is Africa's largest country? -> what [ be africa s ] largest country ? -> what be be africa s largest country ? -> $x: ($x, be be, africa s largest country) -> (The Sudan, is, Africa 's largest country) -> The Sudan (14790ms)\nWhat is Africa's largest country?\t2010 Sudan\t-11.397005806595073\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (2010 Sudan, is the largest country in, Africa) -> 2010 Sudan (18920ms)\nWhat is Africa's largest country?\tCongo\t-11.468682122309914\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Congo, is the second largest country in, Sub-Saharan Africa) -> Congo (18920ms)\nWhat is Africa's largest country?\tIndia\t-11.675332838036292\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (India, Instance Of, largest country) (India, there are in, South Africa) -> India (17790ms)\nWhat is Africa's largest country?\tBrazil\t-11.706734454071897\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Brazil, Instance Of, largest country) (Brazil, is going to stay in, South Africa) -> Brazil (17790ms)\nWhat is Africa's largest country?\tChina\t-11.718036452884368\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (China, Instance Of, largest country) (China, is higher than in, South Africa) -> China (17790ms)\nWhat is Africa's largest country?\tArgentina\t-11.78271011222743\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Argentina, Instance Of, largest country) (Argentina, has been slowly happening in, South Africa) -> Argentina (17790ms)\nWhat is Africa's largest country?\tRussia\t-11.812668553893232\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Russia, Instance Of, largest country) (Russia, was willing to spend in, South Africa) -> Russia (17821ms)\nWhat is Africa's largest country?\tMexico\t-11.842560152750293\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Mexico, Instance Of, largest country) (Mexico, should be feared in, South Africa) -> Mexico (17821ms)\nWhat is Africa's largest country?\tFrance\t-11.860969784604563\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (France, Instance Of, largest world country) (France, was a complete disgrace in, South Africa) -> France (18964ms)\nWhat is Africa's largest country?\tIsrael\t-11.954949610473896\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Israel, Instance Of, largest country) (Israel, was done in, South Africa) -> Israel (19202ms)\nWhat is Africa's largest country?\tAustralia\t-11.977390130268406\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Australia, Instance Of, largest country) (Australia, are in, South Africa) -> Australia (19202ms)\nWhat is Africa's largest country?\tJapan\t-11.981387378238153\tWhat is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Japan, Instance Of, largest country) (Japan, have been manufactured in, South Africa) -> Japan (19201ms)\nHow fast is an eye blink?\t0-60 time\t-9.322241671504498\tHow fast is an eye blink? -> how fast be [ an eye blink ] ? -> what have be an eye blink ? -> $x: ($x, have be, an eye blink) -> (0-60 time, has been reduced to, an eye-blinking) -> 0-60 time (2772ms)\nHow fast is an eye blink?\tlittle Max\t-15.744073901477257\tHow fast is an eye blink? -> how fast be [ an eye blink ] ? -> who suggest an eye blink ? -> $x: ($x, suggest, an eye blink) -> $x: ($x, suggest, eye blink) -> $x: ($x, do something, eye blink) -> (little Max, does something short of, blinking his eyes) -> little Max (11763ms)\nWhat is Dr. Ruth's last name?\tBanking Law\t-9.592841961924421\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Banking Law, is, Dr. Ruth Plato-Shinar) -> Banking Law (6392ms)\nWhat is Dr. Ruth's last name?\tIn-Q-Tel\t-10.219010417796913\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (In-Q-Tel, are traceable to, Dr. Ruth David) -> In-Q-Tel (6392ms)\nWhat is Dr. Ruth's last name?\tThe Career Services Coordinator\t-10.659749277526608\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The Career Services Coordinator, is, Dr. Ruth Hendrick) -> The Career Services Coordinator (6392ms)\nWhat is Dr. Ruth's last name?\ta lady\t-10.76046374446651\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (a lady, was friend of, Dr. Ruth Cook) -> a lady (6392ms)\nWhat is Dr. Ruth's last name?\tAn excellent book\t-10.776556309208855\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (An excellent book, is, the bestseller Dr. Ruth Stout) -> An excellent book (6392ms)\nWhat is Dr. Ruth's last name?\tTCI\t-10.814608572044094\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (TCI, was created by, the German Dr. Ruth C. Cohn) -> TCI (6392ms)\nWhat is Dr. Ruth's last name?\tBobbie Stevens Johnson\t-10.829042410158689\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Bobbie Stevens Johnson, was invited by, Dr. Ruth E. Cox) -> Bobbie Stevens Johnson (6415ms)\nWhat is Dr. Ruth's last name?\tThe Frodo Franchise\t-10.836223286678111\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The Frodo Franchise, was, Dr. Ruth Harley) -> The Frodo Franchise (6415ms)\nWhat is Dr. Ruth's last name?\tPierre A. Lehu\t-10.868294739625764\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Pierre A. Lehu, has been, Dr. Ruth?s ?Minister) -> Pierre A. Lehu (6415ms)\nWhat is Dr. Ruth's last name?\tKyros Ministry\t-10.893877632026085\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Kyros Ministry, is led by, Rev. Dr. Kibbie Ruth) -> Kyros Ministry (6415ms)\nWhat is Dr. Ruth's last name?\tThe Conference organizer\t-10.899823820797216\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The Conference organizer, was, Dr. Ruth Hover) -> The Conference organizer (6415ms)\nWhat is Dr. Ruth's last name?\tAn experiment\t-10.90525695844939\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (An experiment, was conducted by, Dr. Ruth Flinn Harrell) -> An experiment (6415ms)\nWhat is Dr. Ruth's last name?\tthe RPSEC\t-10.935619018424795\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the RPSEC, was named for, Dr. Ruth Patrick) -> the RPSEC (6482ms)\nWhat is Dr. Ruth's last name?\tResource people\t-10.971129810978884\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Resource people, were, Dr. Duane Ruth-Heffelbower) -> Resource people (6482ms)\nWhat is Dr. Ruth's last name?\tArchivist\t-10.990733866171364\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Archivist, was endowed by, Dr. Ruth M. Bell) -> Archivist (6482ms)\nWhat is Dr. Ruth's last name?\tThe DARE curriculum\t-11.003467481953445\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The DARE curriculum, was created by, Dr. Ruth Rich) -> The DARE curriculum (6483ms)\nWhat is Dr. Ruth's last name?\tA Director?s Software Grant\t-11.036547089745678\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (A Director?s Software Grant, has been awarded to, Dr. Ruth Craig) -> A Director?s Software Grant (6482ms)\nWhat is Dr. Ruth's last name?\tthe Education honoree\t-11.046263877869492\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the Education honoree, was, Dr. Ruth Simmons) -> the Education honoree (6482ms)\nWhat is Dr. Ruth's last name?\tPast speakers\t-11.082201284063146\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (Past speakers, have included, Dr. Ruth) -> Past speakers (6503ms)\nWhat is Dr. Ruth's last name?\tSex\t-11.104289512990857\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Sex, has been updated from, Dr. Ruth) -> Sex (6503ms)\nWhat is Dr. Ruth's last name?\ta program\t-11.132483155626979\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, do, $x) -> (Dr. Ruth, was doing, a program) -> a program (6503ms)\nWhat is Dr. Ruth's last name?\tthe English program\t-11.143952914108256\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the English program, are, Dr. Ruth Ellen Porter) -> the English program (6503ms)\nWhat is Dr. Ruth's last name?\tDummies\t-11.151251205570794\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Dummies, is, Dr. Ruth Westheimer) -> Dummies (6503ms)\nWhat is Dr. Ruth's last name?\tTrainers\t-11.280379221292169\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Trainers, were, Dr. Duane Ruth-Heffelbower) -> Trainers (6503ms)\nWhat is Dr. Ruth's last name?\tmedical ethicists\t-11.285714338265283\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (medical ethicists, is chaired by, Dr. Ruth Faden) -> medical ethicists (6523ms)\nWhat is Dr. Ruth's last name?\tcore curriculum\t-11.32019802952641\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (core curriculum, was developed by, Dr. Ruth Rich) -> core curriculum (6523ms)\nWhat is Dr. Ruth's last name?\tTraining\t-11.390530788236024\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Training, was provided by, Dr Ruth Ewing) -> Training (6523ms)\nWhat is Dr. Ruth's last name?\tOctober 2004\t-11.430830080655298\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (October 2004, is, Dr. Ruth Slenczynska) -> October 2004 (6523ms)\nWhat is Dr. Ruth's last name?\tDr. Alexander\t-11.543927720548925\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (Dr. Alexander, had met with, Dr. Ruth Kirschstein) -> Dr. Alexander (6542ms)\nWhat is Dr. Ruth's last name?\tMerit\t-11.620263772778234\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Merit, was awarded to, Dr. Ruth B. Drown) -> Merit (6542ms)\nWhat is Dr. Ruth's last name?\tFriedman\t-11.621639946489719\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Friedman, is this generation?s version of, Dr. Ruth?young) -> Friedman (6542ms)\nWhat is Dr. Ruth's last name?\tS101\t-11.66407847171896\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (S101, was launched by, struggle veteran Dr Ruth Mompati) -> S101 (6542ms)\nWhat is Dr. Ruth's last name?\ta doctor\t-11.683663133176111\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, to be, $x) -> (Dr. Ruth, claims to be, a doctor) -> a doctor (8475ms)\nWhat is Dr. Ruth's last name?\ta researcher\t-11.688336358762873\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (a researcher, had the unlikely name of, Dr. Ruth Firer) -> a researcher (6542ms)\nWhat is Dr. Ruth's last name?\tFlannery\t-11.706617284391553\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Flannery, is, the Dr. Semi J. and Ruth W. Begun professor) -> Flannery (6561ms)\nWhat is Dr. Ruth's last name?\tStudies\t-11.754950306437065\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Studies, is, Dr Ruth Scurr) -> Studies (6561ms)\nWhat is Dr. Ruth's last name?\tSpeaker\t-11.951321719187362\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Speaker, will be, Dr Ruth David) -> Speaker (6561ms)\nWhat is Dr. Ruth's last name?\tActing Director\t-11.967136584658652\tWhat is Dr. Ruth's last name? -> what be [ dr ruth s ] last name ? -> what be dr ruth s name be ? -> $x: (dr ruth, name, $x) -> (Dr. Ruth L. Kirschstein, is named, Acting Director) -> Acting Director (8314ms)\nWhat is Dr. Ruth's last name?\tJanuary 25 , 2005 MadChatter\t-11.978504884657081\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (January 25 , 2005 MadChatter, is a blog by, Dr. Ruth Cox Clark) -> January 25 , 2005 MadChatter (6561ms)\nWhat is Dr. Ruth's last name?\tthe Department\t-11.993193729567675\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the Department, was led by, Dr. Ruth Nussenzweig) -> the Department (6561ms)\nWhat is Dr. Ruth's last name?\tSharon Mora\t-12.00778410888665\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Sharon Mora, had been named, the Dr. Ruth Wright Hayre Teacher) -> Sharon Mora (6561ms)\nWhat is Dr. Ruth's last name?\tthe Center\t-12.0565420077945\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (the Center, has received from, Dr. Ruth Kirschstein) -> the Center (6580ms)\nWhat is Dr. Ruth's last name?\tThe trial\t-12.121258714767956\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The trial, was headed by, Dr. Ruth S. Sy) -> The trial (6580ms)\nWhat is Dr. Ruth's last name?\thonor\t-12.260664295425597\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (honor, was, Dr. Ruth) -> honor (6580ms)\nWhat is Dr. Ruth's last name?\tthe University\t-12.366543476634767\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the University, is directed by, Drs Ruth Cameron) -> the University (6580ms)\nWhat is Dr. Ruth's last name?\tDude\t-12.368222502198634\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (Dude, may have a career as, the new Dr. Ruth) -> Dude (6580ms)\nWhat is Dr. Ruth's last name?\tSydney\t-12.392458836159179\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, to be, $x) -> (Dr Ruth, has been invited to, Sydney) -> Sydney (8475ms)\nWhat is Dr. Ruth's last name?\tWITI Hall\t-12.436256724794424\tWhat is Dr. Ruth's last name? -> what be [ dr ruth s ] last name ? -> what be dr ruth s name be ? -> $x: (dr ruth, name, $x) -> (CEO Dr. Ruth David, named to, WITI Hall) -> WITI Hall (8314ms)\nWhat is Dr. Ruth's last name?\tThe event\t-12.437550876447583\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The event, is presented by, Ruth McElroy/Dr Peter Jachimiak) -> The event (6641ms)\nWhat is Dr. Ruth's last name?\ta reboot\t-12.588335766968854\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, get, $x) -> (Other Dr. Ruth Apple TV, gets, a reboot) -> a reboot (8475ms)\nWhat is Dr. Ruth's last name?\tActing Precentor\t-12.592543546977852\tWhat is Dr. Ruth's last name? -> what be [ dr ruth s ] last name ? -> what be dr ruth s name be ? -> $x: (dr ruth, name, $x) -> (the Revd Dr Ruth Redpath, named, Acting Precentor) -> Acting Precentor (8314ms)\nWhat is Dr. Ruth's last name?\tthe second encounter\t-12.617539196433395\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the second encounter, was with, Dr. Ruth Westheimer) -> the second encounter (6641ms)\nWhat is Dr. Ruth's last name?\tThe report\t-12.631756396970125\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The report, was conducted by, Dr. Ruth Graham) -> The report (6641ms)\nWhat is Dr. Ruth's last name?\tThe study\t-12.666632340024254\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The study, was conducted by, Dr. Ruth Curry) -> The study (6641ms)\nWhat is Dr. Ruth's last name?\tThe bequest\t-12.666632340024254\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The bequest, was made by, Dr. Ruth Barnhart) -> The bequest (6641ms)\nWhat is Dr. Ruth's last name?\tthe grandma\t-12.675268594568193\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the grandma, is, Dr. Ruth Westheimer) -> the grandma (6641ms)\nWhat is Dr. Ruth's last name?\tThe award\t-12.690505689067631\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The award, was presented by, Dr. Ruth Davis) -> The award (6727ms)\nWhat is Dr. Ruth's last name?\tThe webinar\t-12.694627373055646\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The webinar, will be led by, Dr. Ruth Shuman) -> The webinar (6727ms)\nWhat is Dr. Ruth's last name?\tThe garden\t-12.699347658483187\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The garden, is named for, Dr. Ruth Storer) -> The garden (6727ms)\nWhat is Dr. Ruth's last name?\tThe resolution\t-12.704810348792558\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The resolution, was co-sponsored by, the Rev. Dr. Ruth Meyers) -> The resolution (6727ms)\nWhat is Dr. Ruth's last name?\tIsrael\t-12.710137576061475\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, live, $x) -> (Dr. Ruth Westheimer, had lived in, Israel) -> Israel (8742ms)\nWhat is Dr. Ruth's last name?\tthe participants\t-12.719053610684343\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the participants, was, Dr. Ruth Stein) -> the participants (6727ms)\nWhat is Dr. Ruth's last name?\tThe office\t-12.769618082936514\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The office, is directed by, Assistant Provost Dr. Ruth Darling) -> The office (6727ms)\nWhat is Dr. Ruth's last name?\tbreastfeeding\t-12.836381509334803\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (breastfeeding, are illustrated by, Dr. Ruth Lawrence) -> breastfeeding (6747ms)\nWhat is Dr. Ruth's last name?\tthe event\t-12.842074403788022\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the event, was awarded to, the University?s Dr Ruth Goodridge) -> the event (6747ms)\nWhat is Dr. Ruth's last name?\tthe lunch\t-12.853056895514545\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the lunch, was, Dr. Ruth Westheimer) -> the lunch (6747ms)\nWhat is Dr. Ruth's last name?\tmind\t-12.856261140933466\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (mind, is the statement by, Dr. Ruth Drown) -> mind (6747ms)\nWhat is Dr. Ruth's last name?\tthe College\t-12.894541262927035\tWhat is Dr. Ruth's last name? -> what be [ dr ruth s ] last name ? -> what be dr ruth s new name ? -> $x: (dr ruth, new name, $x) -> (Dr. Ruth Fassinger, named new Dean of, the College) -> the College (6747ms)\nWhat is Dr. Ruth's last name?\tThe guy\t-12.925826340645882\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The guy, is, a younger , taller , less interesting Dr. Ruth) -> The guy (6747ms)\nWhat is Dr. Ruth's last name?\tthe position\t-12.960331843545895\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the position, may be addressed to, Dr. Ruth Bindler) -> the position (6768ms)\nWhat is Dr. Ruth's last name?\tThe project\t-13.01661695763715\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The project, is being evaluated by, Dr Doris Ruth Eikhof) -> The project (6768ms)\nWhat is Dr. Ruth's last name?\tPRSSA\t-13.032817399354817\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, to be, $x) -> (Dr. Amanda Ruth, is faculty advisor to, PRSSA) -> PRSSA (8475ms)\nWhat is Dr. Ruth's last name?\tThe morning\t-13.051476668412487\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The morning, was completed by, Dr Ruth Hussey) -> The morning (6768ms)\nWhat is Dr. Ruth's last name?\tThe site\t-13.070929032748086\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The site, is run by, Dr Ruth McNair) -> The site (6768ms)\nWhat is Dr. Ruth's last name?\tthe years\t-13.076226358583355\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the years, was a collaborative effort between, Dr. Ruth) -> the years (6769ms)\nWhat is Dr. Ruth's last name?\tattendance\t-13.169589283599194\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (attendance, were, Dr. Ruth Levy) -> attendance (6768ms)\nWhat is Dr. Ruth's last name?\tguests\t-13.286458811018814\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (guests, are, Dr. Ruth Westheimer) -> guests (6791ms)\nWhat is Dr. Ruth's last name?\tKasem\t-13.430739894134074\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, come, $x) -> (Dr. Ruth, came on right after, Kasem) -> Kasem (8679ms)\nWhat is Dr. Ruth's last name?\tOctober 2009\t-13.514092730396062\tWhat is Dr. Ruth's last name? -> [ what be dr ruth ] s last name ? -> be what be dr ruth die ? -> $x: (dr ruth, die, $x) -> (Dr. Ruth Kirschstein, died in, October 2009) -> October 2009 (8884ms)\nWhat is Dr. Ruth's last name?\tNov. 1 , 2000\t-13.61574579193831\tWhat is Dr. Ruth's last name? -> [ what be dr ruth ] s last name ? -> be what be dr ruth die ? -> $x: (dr ruth, die, $x) -> (Other Tragic accident Dr. Ruth Michler, died, Nov. 1 , 2000) -> Nov. 1 , 2000 (8884ms)\nWhat is Dr. Ruth's last name?\tAugust 7 , 2010\t-13.64737395070182\tWhat is Dr. Ruth's last name? -> [ what be dr ruth ] s last name ? -> be what be dr ruth die ? -> $x: (dr ruth, die, $x) -> (Dr. Ruth Peters, died on, August 7 , 2010) -> August 7 , 2010 (8884ms)\nWhat is Dr. Ruth's last name?\tvaccines\t-13.760031452235484\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, do, $x) -> (the programme Dr Ruth Watkins, did refer to, vaccines) -> vaccines (6791ms)\nWhat is Dr. Ruth's last name?\tquizzed on the article\t-14.080920138119456\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, get, $x) -> (Dr. Ruth Westheimer, get, quizzed on the article) -> quizzed on the article (8475ms)\nWhat is Dr. Ruth's last name?\tfive parenting tips\t-14.091927159311457\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, come, $x) -> (Dr. Ruth Peters, has come up with, five parenting tips) -> five parenting tips (8679ms)\nWhat is Dr. Ruth's last name?\tabstinence\t-14.546650222113083\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, give, $x) -> (Dr. Ruth, give talks on, abstinence) -> abstinence (8475ms)\nWhat is Dr. Ruth's last name?\tthe first 25\t-14.613605904769077\tWhat is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, go to, $x) -> (Dr. Ruth, goes to, the first 25) -> the first 25 (8740ms)\nWho is the manager of the Boston Pops?\tArthur Fiedler\t-7.276790816238527\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops Orchestra, was conducted by, Arthur Fiedler) -> Arthur Fiedler (2471ms)\nWho is the manager of the Boston Pops?\tAthah Feedlah\t-7.296926808322255\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, was, Athah Feedlah) -> Athah Feedlah (2472ms)\nWho is the manager of the Boston Pops?\tLaureate Conductor\t-7.635092586827939\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, is currently, Laureate Conductor) -> Laureate Conductor (2471ms)\nWho is the manager of the Boston Pops?\tmusical artist\t-7.6712113780158155\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops Orchestra, is a, musical artist) -> musical artist (2471ms)\nWho is the manager of the Boston Pops?\tworld class\t-7.990192849819314\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, are, world class) -> world class (2471ms)\nWho is the manager of the Boston Pops?\tJohn Williams\t-8.271336494315019\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (John Williams, is back conducting, the Boston Pops) -> John Williams (2471ms)\nWho is the manager of the Boston Pops?\tThe Sinfonietta\t-8.386900779454578\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The Sinfonietta, was patterned after, the Boston Pops Orchestra) -> The Sinfonietta (2471ms)\nWho is the manager of the Boston Pops?\tpopular songs\t-8.417709875801062\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops orchestra, is known for playing, popular songs) -> popular songs (2570ms)\nWho is the manager of the Boston Pops?\tThe Typewriter\t-8.428522635456321\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The Typewriter, was often performed by, the Boston Pops) -> The Typewriter (2570ms)\nWho is the manager of the Boston Pops?\tfamous composer\t-8.43137476725449\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (John Williams from the Boston Pops Orchestra, Instance Of, famous composer) -> famous composer (2641ms)\nWho is the manager of the Boston Pops?\tSoft Serve Ice Cream\t-8.472715972535559\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Soft Serve Ice Cream, are available at, the Boston Pops Stand) -> Soft Serve Ice Cream (2570ms)\nWho is the manager of the Boston Pops?\tNeil Diamond\t-8.479062338140334\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Neil Diamond, is playing with, the Boston Pops) -> Neil Diamond (2570ms)\nWho is the manager of the Boston Pops?\ta must-see\t-8.605336145674382\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is, a must-see) -> a must-see (2570ms)\nWho is the manager of the Boston Pops?\ta coveted job\t-8.608227316272362\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is, a coveted job) -> a coveted job (2570ms)\nWho is the manager of the Boston Pops?\tMr. Lockhart\t-8.650158893595492\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Mr. Lockhart, has been Conductor of, the Boston Pops Orchestra) -> Mr. Lockhart (2569ms)\nWho is the manager of the Boston Pops?\ta brand\t-8.658132832542012\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, are, a brand) -> a brand (2641ms)\nWho is the manager of the Boston Pops?\tan hour\t-8.659510812665797\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is only, an hour) -> an hour (2641ms)\nWho is the manager of the Boston Pops?\ta winner\t-8.684268348110272\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, is, a winner) -> a winner (2641ms)\nWho is the manager of the Boston Pops?\ttwo euro\t-8.695196012245148\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is a snip at, two euro) -> two euro (2641ms)\nWho is the manager of the Boston Pops?\ta special concert\t-8.713881928406167\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, will be hosting, a special concert) -> a special concert (2641ms)\nWho is the manager of the Boston Pops?\ta special\t-8.791390512469416\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, was seen as, a special) -> a special (2641ms)\nWho is the manager of the Boston Pops?\tYeo\t-8.814573454655331\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Yeo, has been a frequent soloist with, the Boston Pops Orchestra) -> Yeo (2698ms)\nWho is the manager of the Boston Pops?\ta popular scheduled highlight\t-8.837669605628536\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, was, a popular scheduled highlight) -> a popular scheduled highlight (2698ms)\nWho is the manager of the Boston Pops?\ta must\t-8.84267400886285\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the annual Boston Pops concert, was, a must) -> a must (2698ms)\nWho is the manager of the Boston Pops?\ta regular guest conductor\t-8.862377026015537\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, has been, a regular guest conductor) -> a regular guest conductor (2698ms)\nWho is the manager of the Boston Pops?\tArthur Fielder\t-8.864010429727466\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Arthur Fielder, Instance Of, conductor of the Boston Pops Orchestra) -> Arthur Fielder (6675ms)\nWho is the manager of the Boston Pops?\tSymphony Hall\t-8.88027174406665\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Symphony Hall, is also home to, the acclaimed Boston Pops) -> Symphony Hall (2698ms)\nWho is the manager of the Boston Pops?\tnational television broadcast\t-8.90147848727895\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, was taped for, national television broadcast) -> national television broadcast (2698ms)\nWho is the manager of the Boston Pops?\ta musical special\t-8.901910758759833\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, was also aired as, a musical special) -> a musical special (2698ms)\nWho is the manager of the Boston Pops?\tMcCoy Stadium\t-8.902165941087834\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, were scheduled to perform at, McCoy Stadium) -> McCoy Stadium (2698ms)\nWho is the manager of the Boston Pops?\thuge fan\t-8.948253578180987\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (Arthur Fiedler of the Boston Pops, Instance Of, huge fan) -> huge fan (2876ms)\nWho is the manager of the Boston Pops?\tAFIO\t-8.959788645566098\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (AFIO, will be featured in, the Boston Pops June) -> AFIO (2876ms)\nWho is the manager of the Boston Pops?\tprofessor\t-8.965141585892422\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is currently serving as, professor) -> professor (2876ms)\nWho is the manager of the Boston Pops?\tErnst Schmidt\t-8.995957056603432\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Ernst Schmidt, Instance Of, first violin and conductor of the Boston Pops) -> Ernst Schmidt (6675ms)\nWho is the manager of the Boston Pops?\tyear many prestigious figure\t-8.999354645917181\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (Conductor of the Boston Pops, Instance Of, year many prestigious figure) -> year many prestigious figure (2876ms)\nWho is the manager of the Boston Pops?\tJohn F. Williams\t-9.004782996229881\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (John F. Williams, is back with, the Boston Pops) -> John F. Williams (2876ms)\nWho is the manager of the Boston Pops?\tan audience favorite\t-9.015972280165549\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The signature Boston Pops, has long been, an audience favorite) -> an audience favorite (2876ms)\nWho is the manager of the Boston Pops?\tmore recordings\t-9.031358098151562\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has allegedly made, more recordings) -> more recordings (2876ms)\nWho is the manager of the Boston Pops?\tShaq\t-9.037761513123815\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Shaq, was conducting, the Boston Pops) -> Shaq (2876ms)\nWho is the manager of the Boston Pops?\tannual University tradition\t-9.046829954515637\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (Boston College Family Night at the Pops, Instance Of, annual University tradition) -> annual University tradition (3105ms)\nWho is the manager of the Boston Pops?\tcool\t-9.058419611271312\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is kind of, cool) -> cool (3105ms)\nWho is the manager of the Boston Pops?\tCharles Floyd\t-9.081978674076574\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Charles Floyd, Instance Of, annual guest conductor of the Boston Pops Orchestra) -> Charles Floyd (6675ms)\nWho is the manager of the Boston Pops?\ta wide range\t-9.098457851841431\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (a wide range, is also home to, the Boston Pops) -> a wide range (3105ms)\nWho is the manager of the Boston Pops?\tofficial Santa-sanctioned, Humbug-squashing activity\t-9.12038827951456\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (Christmas Pops with the Boston Festival Orchestra, Instance Of, official Santa-sanctioned, Humbug-squashing activity) -> official Santa-sanctioned, Humbug-squashing activity (3105ms)\nWho is the manager of the Boston Pops?\tthe Van Wezel\t-9.145320310824793\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is always a sellout at, the Van Wezel) -> the Van Wezel (3105ms)\nWho is the manager of the Boston Pops?\tjazz and blues\t-9.154608398798675\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has plenty of, jazz and blues) -> jazz and blues (3105ms)\nWho is the manager of the Boston Pops?\tirreplaceable New England landmark\t-9.16243009690151\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (home of the BSO and Boston Pops, Symphony Hall, Instance Of, irreplaceable New England landmark) -> irreplaceable New England landmark (3105ms)\nWho is the manager of the Boston Pops?\tDavid Mugar\t-9.188200160294679\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, executive, $x) -> (Boston Pops Fireworks Spectacular 2009, Executive produced by, David Mugar) -> David Mugar (8731ms)\nWho is the manager of the Boston Pops?\ttops\t-9.188685160222365\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, was, tops) -> tops (3105ms)\nWho is the manager of the Boston Pops?\tKay Hanley\t-9.199701402107175\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Kay Hanley, is the former lead singer of, Boston alt-pop band) -> Kay Hanley (3258ms)\nWho is the manager of the Boston Pops?\tCasella\t-9.24910145848433\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Casella, was the principal conductor of, the Boston Pops) -> Casella (3258ms)\nWho is the manager of the Boston Pops?\tthe Boston Symphony\t-9.272534676471578\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, was founded by, the Boston Symphony) -> the Boston Symphony (3258ms)\nWho is the manager of the Boston Pops?\tNew York City\t-9.33500131149584\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops Orchestra, has performed in, New York City) -> New York City (3445ms)\nWho is the manager of the Boston Pops?\tthe Deutsche Opera\t-9.359164343452916\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (the Deutsche Opera, was closely associated with, the Boston POPS) -> the Deutsche Opera (3444ms)\nWho is the manager of the Boston Pops?\tNantucket\t-9.464756830650906\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, will be on, Nantucket) -> Nantucket (3444ms)\nWho is the manager of the Boston Pops?\tscores\t-9.49967008363617\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (scores, have been performed by, the Boston Pops) -> scores (3444ms)\nWho is the manager of the Boston Pops?\ta way\t-9.567824426250144\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (The Boston Pops, has, a way) -> a way (3444ms)\nWho is the manager of the Boston Pops?\tthe vision\t-9.612258386854515\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops Orchestra, was created in, the vision) -> the vision (3444ms)\nWho is the manager of the Boston Pops?\tChristmas\t-9.612417856916652\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Christmas, was premiered by, the Boston Pops) -> Christmas (3504ms)\nWho is the manager of the Boston Pops?\tnumerous engagements year\t-9.614990922750971\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, also has, numerous engagements year) -> numerous engagements year (3504ms)\nWho is the manager of the Boston Pops?\tnumerous television shows\t-9.645250397506544\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has appeared on, numerous television shows) -> numerous television shows (3504ms)\nWho is the manager of the Boston Pops?\tWilliams\t-9.67399904250679\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Williams, was the conductor of, the Boston Pops) -> Williams (3504ms)\nWho is the manager of the Boston Pops?\tthe music\t-9.689933499225534\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (the music, was by, the Boston Pops Orchestra) -> the music (3504ms)\nWho is the manager of the Boston Pops?\tItaly\t-9.76365848983972\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Italy, was a soloist with, the Boston Pops Orchestra) -> Italy (3504ms)\nWho is the manager of the Boston Pops?\tGroup Saloum\t-9.79394040156032\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Group Saloum, is, Boston ?s hottest new Afro-pop band) -> Group Saloum (3504ms)\nWho is the manager of the Boston Pops?\tKeith Lockhart\t-9.81132118463026\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Keith Lockhart, has conducted, the Boston Pops) -> Keith Lockhart (3536ms)\nWho is the manager of the Boston Pops?\tages\t-9.81860975035025\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (ages, is available in, the online Boston Pops Shop) -> ages (3535ms)\nWho is the manager of the Boston Pops?\ta fun\t-9.837662124216493\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (The Boston Pops, have put together, a fun) -> a fun (3536ms)\nWho is the manager of the Boston Pops?\tseveral new works\t-9.848272519136538\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has commissioned, several new works) -> several new works (3535ms)\nWho is the manager of the Boston Pops?\trenowned orchestra\t-9.870995972447382\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, renowned orchestra) -> renowned orchestra (8732ms)\nWho is the manager of the Boston Pops?\tconductors\t-9.887403433089379\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has worked with, conductors) -> conductors (3535ms)\nWho is the manager of the Boston Pops?\tdance ensemble\t-9.90015593348544\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, dance ensemble) -> dance ensemble (8731ms)\nWho is the manager of the Boston Pops?\tsymphony orchestra\t-9.901318643257316\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, symphony orchestra) -> symphony orchestra (8731ms)\nWho is the manager of the Boston Pops?\torchestral group\t-9.919798428300108\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, orchestral group) -> orchestral group (8731ms)\nWho is the manager of the Boston Pops?\tlarge orchestra\t-9.924308103176013\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, large orchestra) -> large orchestra (8731ms)\nWho is the manager of the Boston Pops?\tgreat orchestra\t-9.92567380824105\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, great orchestra) -> great orchestra (8731ms)\nWho is the manager of the Boston Pops?\taudiences\t-9.93072909376606\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (The Boston Pops, have performed for, audiences) -> audiences (3700ms)\nWho is the manager of the Boston Pops?\tamerican orchestra\t-9.95499211207935\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, american orchestra) -> american orchestra (8731ms)\nWho is the manager of the Boston Pops?\tSouth Carolina\t-9.956572172312201\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be currently the boston pop ? -> $x: ($x, be currently, the boston pop) -> $x: ($x, want to lead, the boston pop) -> (South Carolina, wanted to lead, the Boston Pop) -> South Carolina (5726ms)\nWho is the manager of the Boston Pops?\tartistic organization\t-10.036654099731555\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, artistic organization) -> artistic organization (8767ms)\nWho is the manager of the Boston Pops?\tfamous performer\t-10.03758881843191\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, famous performer) -> famous performer (8767ms)\nWho is the manager of the Boston Pops?\tmusical group\t-10.045158515134178\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, musical group) -> musical group (8767ms)\nWho is the manager of the Boston Pops?\tAtheism\t-10.049583096457305\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, as is, Atheism) -> Atheism (3700ms)\nWho is the manager of the Boston Pops?\tfamous orchestra\t-10.070331419731144\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, famous orchestra) -> famous orchestra (8767ms)\nWho is the manager of the Boston Pops?\tmusic ensemble\t-10.071837905655478\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, music ensemble) -> music ensemble (8767ms)\nWho is the manager of the Boston Pops?\tprestigious orchestra\t-10.072440508726343\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, prestigious orchestra) -> prestigious orchestra (8767ms)\nWho is the manager of the Boston Pops?\tsymphonic orchestra\t-10.074790660702721\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, symphonic orchestra) -> symphonic orchestra (8767ms)\nWho is the manager of the Boston Pops?\tlocal orchestra\t-10.078661499252048\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, local orchestra) -> local orchestra (8849ms)\nWho is the manager of the Boston Pops?\tnotable orchestra\t-10.079470900252126\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, notable orchestra) -> notable orchestra (8849ms)\nWho is the manager of the Boston Pops?\tmusical performer\t-10.080220038190635\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, musical performer) -> musical performer (8849ms)\nWho is the manager of the Boston Pops?\tDr. Hallberg\t-10.084289617430452\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Dr. Hallberg, Instance Of, member of the Boston Pops-Esplanade Orchestra) -> Dr. Hallberg (6675ms)\nWho is the manager of the Boston Pops?\tcultural icon\t-10.087109130122572\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, cultural icon) -> cultural icon (8849ms)\nWho is the manager of the Boston Pops?\tprofessional group\t-10.09098449150432\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, professional group) -> professional group (8849ms)\nWho is the manager of the Boston Pops?\tincredible performer\t-10.096294014855694\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, incredible performer) -> incredible performer (8849ms)\nWho is the manager of the Boston Pops?\tclassical artist\t-10.097749861906943\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, classical artist) -> classical artist (8849ms)\nWho is the manager of the Boston Pops?\tadvertising client\t-10.097859498948337\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pop Corn, Instance Of, advertising client) -> advertising client (8886ms)\nWho is the manager of the Boston Pops?\toutstanding artist\t-10.098186809192613\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, outstanding artist) -> outstanding artist (8886ms)\nWho is the manager of the Boston Pops?\tinteresting place\t-10.099060929292724\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (POP, Boston, Instance Of, interesting place) -> interesting place (8886ms)\nWho is the manager of the Boston Pops?\tnotable ensemble\t-10.111459081769143\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, notable ensemble) -> notable ensemble (8886ms)\nWho is the manager of the Boston Pops?\tnational ensemble\t-10.111459081769143\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, national ensemble) -> national ensemble (8886ms)\nWho is the manager of the Boston Pops?\tstudent ensembles\t-10.11486260116397\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (student ensembles, are attending, a BSO or Boston Pops concert) -> student ensembles (3700ms)\nWho is the manager of the Boston Pops?\tthe Class\t-10.12744498087708\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (the Class, was at, a Boston Pops performance) -> the Class (3854ms)\nWho is the manager of the Boston Pops?\tsocial event\t-10.158876811430966\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops concert, Instance Of, social event) -> social event (8923ms)\nWho is the manager of the Boston Pops?\tholiday event\t-10.15910796126158\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Christmas, Instance Of, holiday event) -> holiday event (8923ms)\nWho is the manager of the Boston Pops?\tSpring 2007 Bob\t-10.16178333316473\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Spring 2007 Bob, was commissioned by, the Boston Pops Orchestra) -> Spring 2007 Bob (3854ms)\nWho is the manager of the Boston Pops?\tLizzie\t-10.16236993337893\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Lizzie, was performed by, the Boston Pops) -> Lizzie (3854ms)\nWho is the manager of the Boston Pops?\t1885\t-10.17296661341936\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops Orchestra, was founded in, 1885) -> 1885 (3854ms)\nWho is the manager of the Boston Pops?\tCellist William Rounds\t-10.175108582268416\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Cellist William Rounds, Instance Of, member of the Boston Pops Esplanade Orchestra) -> Cellist William Rounds (6675ms)\nWho is the manager of the Boston Pops?\tEvening at Pops\t-10.190342620005648\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Evening at Pops, Instance Of, long-running PBS series featuring select performance of the Boston Pops) -> Evening at Pops (6675ms)\nWho is the manager of the Boston Pops?\tthe same band?\t-10.251004206917367\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is, the same band?) -> the same band? (3854ms)\nWho is the manager of the Boston Pops?\tCarnegie Hall\t-10.262729627939207\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Carnegie Hall, can be heard on, several Boston Pops recordings) -> Carnegie Hall (3887ms)\nWho is the manager of the Boston Pops?\tthe Esplanade\t-10.271176957043142\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (Boston Pops concerts, are held at, the Esplanade) -> the Esplanade (3887ms)\nWho is the manager of the Boston Pops?\tParadise\t-10.331450557178808\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Paradise, was commissioned by, the Boston Pops Orchestra) -> Paradise (3920ms)\nWho is the manager of the Boston Pops?\tart event\t-10.35496568372144\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, art event) -> art event (8923ms)\nWho is the manager of the Boston Pops?\tthe first records\t-10.380394970393244\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The 1938 Boston Pops recording, was one of, the first records) -> the first records (3920ms)\nWho is the manager of the Boston Pops?\tThe orchestra\t-10.416254835365855\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The orchestra, is, the Boston Pops) -> The orchestra (3920ms)\nWho is the manager of the Boston Pops?\tthe holidays\t-10.440012880661815\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is especially beloved during, the holidays) -> the holidays (3952ms)\nWho is the manager of the Boston Pops?\tart group\t-10.444040375003013\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, art group) -> art group (8923ms)\nWho is the manager of the Boston Pops?\ta jingle\t-10.456593450406181\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, create, $x) -> (The Boston Pops, help create, a jingle) -> a jingle (3952ms)\nWho is the manager of the Boston Pops?\tVideos\t-10.460274131740203\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Videos, will be featured on, the Boston Pops YouTube channel) -> Videos (3952ms)\nWho is the manager of the Boston Pops?\tconcert in the city\t-10.466882729059032\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, concert in the city) -> concert in the city (8923ms)\nWho is the manager of the Boston Pops?\tBoston\t-10.466969068171917\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Boston, is also home to, the famous Boston Pops orchestra) -> Boston (3952ms)\nWho is the manager of the Boston Pops?\tIBIS Chamber Music Society\t-10.473275856710785\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (IBIS Chamber Music Society, Instance Of, ensemble of harp, flute and string composed of member of the Boston Pops, National Symphony and Kennedy Center Orchestras) -> IBIS Chamber Music Society (6712ms)\nWho is the manager of the Boston Pops?\torchestra across the world\t-10.487446560078032\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, orchestra across the world) -> orchestra across the world (8923ms)\nWho is the manager of the Boston Pops?\tthe Symphony\t-10.491695819288976\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, lead, $x) -> (the Boston Pops Bruce Hangen, will lead, the Symphony) -> the Symphony (3987ms)\nWho is the manager of the Boston Pops?\tWatjen\t-10.512013039295613\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Watjen, was a substitute for, the Boston Pops touring orchestra) -> Watjen (3987ms)\nWho is the manager of the Boston Pops?\tMark Lamber and Ian Hu's Red Dwarf\t-10.518169812145928\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Mark Lamber and Ian Hu's Red Dwarf, Instance Of, good example, or John Williams & The Boston Pops giving new depth) -> Mark Lamber and Ian Hu's Red Dwarf (6712ms)\nWho is the manager of the Boston Pops?\tthe best-known , most recorded\t-10.578594810595431\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is, the best-known , most recorded) -> the best-known , most recorded (3987ms)\nWho is the manager of the Boston Pops?\tengland's major orchestra\t-10.60436980429635\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, england's major orchestra) -> england's major orchestra (8924ms)\nWho is the manager of the Boston Pops?\tthe committee\t-10.610799586502054\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (the committee, had been sold for, the Boston Pops performance) -> the committee (4105ms)\nWho is the manager of the Boston Pops?\tact\t-10.63285299149879\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, act) -> act (8960ms)\nWho is the manager of the Boston Pops?\tcritically acclaimed group\t-10.635740791696193\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, critically acclaimed group) -> critically acclaimed group (8960ms)\nWho is the manager of the Boston Pops?\tbig deal\t-10.643093495229133\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, big deal) -> big deal (8960ms)\nWho is the manager of the Boston Pops?\tBelow\t-10.661525103194208\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Below, is, the list of Boston Pops) -> Below (4105ms)\nWho is the manager of the Boston Pops?\tLeonard\t-10.693364300181209\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, take, $x) -> (the Boston Pops, took, Leonard) -> Leonard (4216ms)\nWho is the manager of the Boston Pops?\tboston area ensemble\t-10.708784539030669\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, boston area ensemble) -> boston area ensemble (8960ms)\nWho is the manager of the Boston Pops?\tfamous boston attraction\t-10.717924019551651\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, famous boston attraction) -> famous boston attraction (8960ms)\nWho is the manager of the Boston Pops?\tboston's finest ensemble\t-10.718008021837658\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, boston's finest ensemble) -> boston's finest ensemble (8960ms)\nWho is the manager of the Boston Pops?\tworld-renown performer\t-10.738700628049274\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world-renown performer) -> world-renown performer (8997ms)\nWho is the manager of the Boston Pops?\tBSO tradition\t-10.738700628049274\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, BSO tradition) -> BSO tradition (8960ms)\nWho is the manager of the Boston Pops?\tsymphonic pop orchestra\t-10.738700628049274\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, symphonic pop orchestra) -> symphonic pop orchestra (8997ms)\nWho is the manager of the Boston Pops?\tworld-renowned orchestra\t-10.738700628049274\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world-renowned orchestra) -> world-renowned orchestra (8996ms)\nWho is the manager of the Boston Pops?\ttop international artist\t-10.740856724059391\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, top international artist) -> top international artist (8997ms)\nWho is the manager of the Boston Pops?\tworld famous group\t-10.742573522463259\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world famous group) -> world famous group (8997ms)\nWho is the manager of the Boston Pops?\tprominent act\t-10.754780616159213\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, prominent act) -> prominent act (8997ms)\nWho is the manager of the Boston Pops?\tplum job\t-10.759264459068275\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, plum job) -> plum job (8997ms)\nWho is the manager of the Boston Pops?\topera company and orchestra\t-10.764001857964349\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, opera company and orchestra) -> opera company and orchestra (8997ms)\nWho is the manager of the Boston Pops?\tprestigious musical organization\t-10.764851005658608\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, prestigious musical organization) -> prestigious musical organization (9178ms)\nWho is the manager of the Boston Pops?\torchestra and performer\t-10.77053115150155\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, orchestra and performer) -> orchestra and performer (9179ms)\nWho is the manager of the Boston Pops?\ta pretty good time\t-10.770978258136545\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> ('s Boston Pop Underground fest, was, a pretty good time) -> a pretty good time (4216ms)\nWho is the manager of the Boston Pops?\tpopular classical event\t-10.7737582568105\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops event, Instance Of, popular classical event) -> popular classical event (9178ms)\nWho is the manager of the Boston Pops?\tfun\t-10.774938211027813\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Holiday Boston Pops, Instance Of, fun) -> fun (9179ms)\nWho is the manager of the Boston Pops?\tprominent symphony orchestra\t-10.778217497782078\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, prominent symphony orchestra) -> prominent symphony orchestra (9179ms)\nWho is the manager of the Boston Pops?\tworld-class orchestra\t-10.782247566632003\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world-class orchestra) -> world-class orchestra (9179ms)\nWho is the manager of the Boston Pops?\tbest selling ensemble\t-10.783842062573678\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, best selling ensemble) -> best selling ensemble (9179ms)\nWho is the manager of the Boston Pops?\tworld renown performer\t-10.784040172320001\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world renown performer) -> world renown performer (9258ms)\nWho is the manager of the Boston Pops?\twell-known orchestra\t-10.789505386460593\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, well-known orchestra) -> well-known orchestra (9258ms)\nWho is the manager of the Boston Pops?\ta tax deductible donation\t-10.797336697954433\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (South Boston Pop Warner, is, a tax deductible donation) -> a tax deductible donation (4216ms)\nWho is the manager of the Boston Pops?\ta more social event\t-10.798843787129439\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (a Boston Pops concert, is, a more social event) -> a more social event (4246ms)\nWho is the manager of the Boston Pops?\tinternationally acclaimed orchestra\t-10.8011766989863\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, internationally acclaimed orchestra) -> internationally acclaimed orchestra (9258ms)\nWho is the manager of the Boston Pops?\ttop U.S. orchestra\t-10.803674345829107\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, top U.S. orchestra) -> top U.S. orchestra (9258ms)\nWho is the manager of the Boston Pops?\tSeattle concert event\t-10.803674345829107\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, Seattle concert event) -> Seattle concert event (9258ms)\nWho is the manager of the Boston Pops?\ttop notch orchestra\t-10.803674345829107\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, top notch orchestra) -> top notch orchestra (9258ms)\nWho is the manager of the Boston Pops?\tleveraged top tier sponsorship\t-10.813758151592284\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, leveraged top tier sponsorship) -> leveraged top tier sponsorship (9258ms)\nWho is the manager of the Boston Pops?\tsignature Boston tradition\t-10.813758151592284\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Fireworks Spectacular, Instance Of, signature Boston tradition) -> signature Boston tradition (9258ms)\nWho is the manager of the Boston Pops?\tmember of musical organization\t-10.831092788004906\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, member of musical organization) -> member of musical organization (9296ms)\nWho is the manager of the Boston Pops?\tgroup of musician\t-10.843146714937387\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, group of musician) -> group of musician (9296ms)\nWho is the manager of the Boston Pops?\tThe national anthem\t-10.84562252937577\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The national anthem, was handled by, the Boston Pops) -> The national anthem (4246ms)\nWho is the manager of the Boston Pops?\tyear internationally acclaimed orchestra\t-10.854885813630283\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, year internationally acclaimed orchestra) -> year internationally acclaimed orchestra (9296ms)\nWho is the manager of the Boston Pops?\tso new items\t-10.85871407061043\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (so new items, are added as, Boston Pops) -> so new items (4246ms)\nWho is the manager of the Boston Pops?\tPop Rock Shayne Holland\t-10.872144439833317\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Pop Rock Shayne Holland, is, a Boston based pop-rock solo artist) -> Pop Rock Shayne Holland (4246ms)\nWho is the manager of the Boston Pops?\tConductor Arthur Fiedler\t-10.87879854796773\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Conductor Arthur Fiedler, had led, the Boston Pops orchestra) -> Conductor Arthur Fiedler (4246ms)\nWho is the manager of the Boston Pops?\tlive music series\t-10.883572902360418\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pop Underground, Instance Of, live music series) -> live music series (9296ms)\nWho is the manager of the Boston Pops?\tfeatured soloist wit h orchestra\t-10.902009608943128\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, featured soloist wit h orchestra) -> featured soloist wit h orchestra (9296ms)\nWho is the manager of the Boston Pops?\tThe evening\t-10.914776049290147\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The evening, will be a special one as, the Boston Pops) -> The evening (4246ms)\nWho is the manager of the Boston Pops?\torchestra\t-10.917206609858484\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, orchestra) -> orchestra (9296ms)\nWho is the manager of the Boston Pops?\tMr. Williams\t-10.919052793911142\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Mr. Williams, has led, the Boston Pops) -> Mr. Williams (4320ms)\nWho is the manager of the Boston Pops?\tmulti-cultural, racial, denominational, ethnic and generational choir\t-10.942728196890108\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Gospel Choir, Instance Of, multi-cultural, racial, denominational, ethnic and generational choir) -> multi-cultural, racial, denominational, ethnic and generational choir (9296ms)\nWho is the manager of the Boston Pops?\tHenson-Conant\t-10.964966551068448\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Henson-Conant, has toured with, the Boston Pops) -> Henson-Conant (4320ms)\nWho is the manager of the Boston Pops?\tnation's best classical talent\t-10.974034967120536\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Esplanade Orchestra, Instance Of, nation's best classical talent) -> nation's best classical talent (9332ms)\nWho is the manager of the Boston Pops?\tAugust\t-10.979742927274794\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who bring the boston pop ? -> $x: ($x, bring, the boston pop) -> (August, brings, the Boston Pops Symphony) -> August (2125ms)\nWho is the manager of the Boston Pops?\tMA\t-10.98198833812392\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (MA, has also performed with, the Boston Pops) -> MA (4320ms)\nWho is the manager of the Boston Pops?\tMr. LeBow\t-11.009398485473978\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Mr. LeBow, has narrated with, the Boston Pops) -> Mr. LeBow (4320ms)\nWho is the manager of the Boston Pops?\ta former member\t-11.01761760481792\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (a former member, has performed with, the Boston Pops) -> a former member (4462ms)\nWho is the manager of the Boston Pops?\tDeborah Henson-Conant\t-11.019944312266766\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Deborah Henson-Conant, has toured with, the Boston Pops) -> Deborah Henson-Conant (4462ms)\nWho is the manager of the Boston Pops?\tMr. Farber?s arrangements\t-11.02089306679512\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Mr. Farber?s arrangements, have included, the Boston Pops) -> Mr. Farber?s arrangements (4462ms)\nWho is the manager of the Boston Pops?\tartist\t-11.021514977754261\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, artist) -> artist (9332ms)\nWho is the manager of the Boston Pops?\tseveral awards\t-11.028231980909277\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, have, $x) -> (Boston Pops, have received, several awards) -> several awards (4462ms)\nWho is the manager of the Boston Pops?\ta member\t-11.031503461715163\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (a member, has appeared with, the Boston Pops) -> a member (4462ms)\nWho is the manager of the Boston Pops?\tmusician\t-11.074871340132024\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (Boston Pops Esplanade Orchestra, is a, musician) -> musician (4462ms)\nWho is the manager of the Boston Pops?\tAmerican orchestra\t-11.097728452120387\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, American orchestra) -> American orchestra (9332ms)\nWho is the manager of the Boston Pops?\tgroup\t-11.122629211314374\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, group) -> group (9332ms)\nWho is the manager of the Boston Pops?\ta guest conductor Michael\t-11.12300462523686\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (a guest conductor Michael, has performed with, the Boston Pops) -> a guest conductor Michael (4496ms)\nWho is the manager of the Boston Pops?\tlead trumpeter and soloist\t-11.152067498322598\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (lead trumpeter and soloist, has been featured with, Boston Pops) -> lead trumpeter and soloist (4496ms)\nWho is the manager of the Boston Pops?\tdeveloped on-line channel\t-11.16102979361818\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (BostonPops.TV, Instance Of, developed on-line channel) -> developed on-line channel (9332ms)\nWho is the manager of the Boston Pops?\tJordan\t-11.186086127392642\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has toured, Jordan) -> Jordan (4496ms)\nWho is the manager of the Boston Pops?\tensemble\t-11.195697308730654\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, ensemble) -> ensemble (9332ms)\nWho is the manager of the Boston Pops?\tclient\t-11.29521367406261\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, client) -> client (9332ms)\nWho is the manager of the Boston Pops?\tperformer\t-11.359267790816322\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, performer) -> performer (9369ms)\nWho is the manager of the Boston Pops?\tTf3\t-11.367876231300018\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Tf3, has appeared with, the Boston Pops) -> Tf3 (4717ms)\nWho is the manager of the Boston Pops?\tHallberg\t-11.387083829336001\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Hallberg, Instance Of, member of the Boston Pops-Esplanade Orchestra) -> Hallberg (6712ms)\nWho is the manager of the Boston Pops?\tconcert\t-11.409313919291606\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, concert) -> concert (9369ms)\nWho is the manager of the Boston Pops?\tevent\t-11.446408369995675\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops performance, Instance Of, event) -> event (9404ms)\nWho is the manager of the Boston Pops?\tprogram\t-11.453534752550876\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, program) -> program (9404ms)\nWho is the manager of the Boston Pops?\tMassachusetts\t-11.595082507075936\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (Boston Pops Orchestra, are based in, Massachusetts) -> Massachusetts (4750ms)\nWho is the manager of the Boston Pops?\ta free solo\t-11.664537391734013\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, have, $x) -> (Boston electro-pop, has returned with, a free solo) -> a free solo (4749ms)\nWho is the manager of the Boston Pops?\tDeborah\t-11.726002669273482\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Deborah, has toured with, the Boston Pops) -> Deborah (4750ms)\nWho is the manager of the Boston Pops?\tBrodeur\t-11.758289376285394\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Brodeur, Instance Of, member of the Boston-based electronic-pop band) -> Brodeur (6712ms)\nWho is the manager of the Boston Pops?\tMelinda\t-11.839598754403491\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Melinda, has performed with, the Boston Pops Esplanade Orchestra) -> Melinda (4783ms)\nWho is the manager of the Boston Pops?\tAugust 24\t-12.021329551831444\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who make the boston pop ? -> $x: ($x, make, the boston pop) -> (August 24, make welcome returns with, the Boston Pops) -> August 24 (4783ms)\nWho is the manager of the Boston Pops?\ta 1999 Grammy nomination\t-12.062881380021546\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, lead, $x) -> (the Boston Pops Symphony, led to, a 1999 Grammy nomination) -> a 1999 Grammy nomination (4817ms)\nWho is the manager of the Boston Pops?\tCorin\t-12.063667722142805\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Corin, was a member of, Boston power pop band) -> Corin (4817ms)\nWho is the manager of the Boston Pops?\t16,000 copies\t-12.114577125072827\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, have, $x) -> (This Boston pop rock act, have sold over, 16,000 copies) -> 16,000 copies (4817ms)\nWho is the manager of the Boston Pops?\t43\t-12.146140715709079\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, have, $x) -> (Boston Pops Esplanade orchestras, have performed in, 43) -> 43 (4817ms)\nWho is the manager of the Boston Pops?\tThursday event\t-12.194738570406079\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, Thursday event) -> Thursday event (9440ms)\nWho is the manager of the Boston Pops?\tKarmin\t-12.266335030180347\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Karmin, is, Boston ?s premiere acoustic pop sound) -> Karmin (5039ms)\nWho is the manager of the Boston Pops?\tSteichen\t-12.278736645815925\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Steichen, has conducted, the Boston Pops) -> Steichen (5039ms)\nWho is the manager of the Boston Pops?\tKulhawik\t-12.310602793343822\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Kulhawik, has performed with, The Boston Pops) -> Kulhawik (5073ms)\nWho is the manager of the Boston Pops?\tEmery\t-12.34868106659474\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Emery, has performed regularly with, The Boston Pops) -> Emery (5073ms)\nWho is the manager of the Boston Pops?\tThe gala celebration\t-12.49856355103566\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (The gala celebration, would have featured, the Boston Pops) -> The gala celebration (5073ms)\nWho is the manager of the Boston Pops?\tThe Boston Symphony Orchestra\t-12.514946320185633\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: (boston pop, procedure, $x) -> $x: ($x, have, boston pop) -> (The Boston Symphony Orchestra, has started, Boston POPS.tv) -> The Boston Symphony Orchestra (9440ms)\nWho is the manager of the Boston Pops?\tthe main attraction\t-12.526631299265535\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (Boston folk-pop artist Edie Carey, will be, the main attraction) -> the main attraction (5106ms)\nWho is the manager of the Boston Pops?\tplace Sunday\t-12.566815632588224\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, take, $x) -> (Ole ? Saint Nick ! Boston Holiday Pops, will take, place Sunday) -> place Sunday (5106ms)\nWho is the manager of the Boston Pops?\tIndependence Day\t-12.59733593166676\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, lead, $x) -> (' Boston Pops Fireworks, led, Independence Day) -> Independence Day (9519ms)\nWho is the manager of the Boston Pops?\tthe most renowned orchestras\t-12.672947253750301\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (the most renowned orchestras, has appeared with, The Boston Pops) -> the most renowned orchestras (5106ms)\nWho is the manager of the Boston Pops?\tthe wild woman\t-12.793885603567155\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (the wild woman, has toured with, the Boston Pops) -> the wild woman (5106ms)\nWho is the manager of the Boston Pops?\tAmanda\t-12.833091587566754\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who make the boston pop ? -> $x: ($x, make, the boston pop) -> (Amanda, made a triumphant appearance with, the Boston Pops) -> Amanda (5106ms)\nWho is the manager of the Boston Pops?\tthe odd coupling\t-13.224971858552307\tWho is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the nickname of the boston pop ? -> $x: (the boston pop, nickname, $x) -> $x: (the boston pop, go, $x) -> (the Boston Pops, Go see, the odd coupling) -> the odd coupling (5451ms)\nHow old was Crosby when he died?\tRepublican member of the South Carolina House of Representatives , representing District 117\t-11.974107553860295\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, Republican member of the South Carolina House of Representatives , representing District 117) -> Republican member of the South Carolina House of Representatives , representing District 117 (8797ms)\nHow old was Crosby when he died?\tbig name\t-11.991877596895772\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, big name) -> big name (8797ms)\nHow old was Crosby when he died?\tlong time\t-12.788421479625178\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, long time) -> long time (8797ms)\nHow old was Crosby when he died?\tTeahen\t-12.793871211112249\tHow old was Crosby when he died? -> how old [ be crosby ] when he die ? -> what be be crosby age ? -> $x: ($x, be be, crosby age) -> (Teahen, is about, Crosby?s age) -> Teahen (7397ms)\nHow old was Crosby when he died?\tTwitter spammer\t-12.842115379618905\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, Twitter spammer) -> Twitter spammer (8799ms)\nHow old was Crosby when he died?\ttrue comic icon\t-12.869604260218065\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, true comic icon) -> true comic icon (8797ms)\nHow old was Crosby when he died?\tsuccessful twitter marketer\t-12.869604260218065\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, successful twitter marketer) -> successful twitter marketer (8797ms)\nHow old was Crosby when he died?\tgreat man\t-12.875822274839773\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, great man) -> great man (8943ms)\nHow old was Crosby when he died?\tSocial Media guru\t-12.890168091237065\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, Social Media guru) -> Social Media guru (8942ms)\nHow old was Crosby when he died?\tgraduate of Tennessee Theological University\t-12.893166157874488\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, graduate of Tennessee Theological University) -> graduate of Tennessee Theological University (8942ms)\nHow old was Crosby when he died?\tman of extraordinary talent\t-12.894913591645834\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, man of extraordinary talent) -> man of extraordinary talent (8942ms)\nHow old was Crosby when he died?\tblue singer\t-12.938620464751832\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, blue singer) -> blue singer (8942ms)\nHow old was Crosby when he died?\tmember of the State University of New York\t-12.941397170482631\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, member of the State University of New York) -> member of the State University of New York (8942ms)\nHow old was Crosby when he died?\toldie show\t-12.954483128615621\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (bill crosby show, Instance Of, oldie show) -> oldie show (8963ms)\nHow old was Crosby when he died?\tactive artist\t-12.982484940180349\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, active artist) -> active artist (8963ms)\nHow old was Crosby when he died?\tprivate company\t-12.98846892938439\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, private company) -> private company (8963ms)\nHow old was Crosby when he died?\tcomic legend\t-12.993965683289598\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, comic legend) -> comic legend (8963ms)\nHow old was Crosby when he died?\tcelebrity\t-13.011747907316227\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, celebrity) -> celebrity (8963ms)\nHow old was Crosby when he died?\tfavorite\t-13.1479823030867\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, favorite) -> favorite (8982ms)\nHow old was Crosby when he died?\tentertainer\t-13.193075160189583\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, entertainer) -> entertainer (8982ms)\nHow old was Crosby when he died?\tmusician\t-13.19699129815371\tHow old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, musician) -> musician (8982ms)\nHow old was Joan of Arc when she died?\t11:03\t-12.11644451626746\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (11:03, AM Joan of, Arc) -> 11:03 (6052ms)\nHow old was Joan of Arc when she died?\tGod\t-12.309005083852384\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (God, is Joan of, Arc) -> God (6052ms)\nHow old was Joan of Arc when she died?\told\t-12.370501629697541\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (old, was Joan of, Arc) -> old (6052ms)\nHow old was Joan of Arc when she died?\tthe Old Marketplace\t-12.507453509297164\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the Old Marketplace, were Joan of, Arc) -> the Old Marketplace (6052ms)\nHow old was Joan of Arc when she died?\t1430\t-12.52215653645274\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (1430, was Joan of, Arc) -> 1430 (6052ms)\nHow old was Joan of Arc when she died?\t2006\t-12.570156727101335\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (2006, was Joan of, Arc really) -> 2006 (6052ms)\nHow old was Joan of Arc when she died?\theaven\t-12.596843623455223\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (heaven, is Joan of, arc) -> heaven (6052ms)\nHow old was Joan of Arc when she died?\t1999\t-12.611179783228003\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (1999, was the putrid Joan Of, Arc flick) -> 1999 (6052ms)\nHow old was Joan of Arc when she died?\tRachel Corrie\t-12.747980855834943\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Rachel Corrie, is the Joan of, Arc) -> Rachel Corrie (6079ms)\nHow old was Joan of Arc when she died?\tAnita Hill\t-12.747980855834943\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Anita Hill, is the Joan of, Arc) -> Anita Hill (6079ms)\nHow old was Joan of Arc when she died?\tOriana Fallaci\t-12.747980855834943\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Oriana Fallaci, is the Joan of, Arc) -> Oriana Fallaci (6079ms)\nHow old was Joan of Arc when she died?\tNightingale\t-12.939647568453468\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Nightingale, is Joan of, Arc) -> Nightingale (6079ms)\nHow old was Joan of Arc when she died?\tSnape\t-12.95366949260122\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Snape, is Joan of, Arc) -> Snape (6079ms)\nHow old was Joan of Arc when she died?\tokay i\t-12.96864096556511\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (okay i, am joan of, arc) -> okay i (6079ms)\nHow old was Joan of Arc when she died?\ta girl\t-13.023243063993887\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (a girl, was the actual Joan of, Arc) -> a girl (6079ms)\nHow old was Joan of Arc when she died?\tHillary\t-13.032233170393393\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Hillary, is Joan of, Arc) -> Hillary (6079ms)\nHow old was Joan of Arc when she died?\tBoo Human\t-13.057068574547813\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Boo Human, is Joan of, Arc) -> Boo Human (6108ms)\nHow old was Joan of Arc when she died?\tLa Pucelle\t-13.099902300616401\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (La Pucelle, is Joan of, Arc) -> La Pucelle (6108ms)\nHow old was Joan of Arc when she died?\tObvious exceptions\t-13.128041766115906\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Obvious exceptions, would be Joan of, Arc) -> Obvious exceptions (6108ms)\nHow old was Joan of Arc when she died?\tJamie McKenzie\t-13.144112200396474\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Jamie McKenzie, was Joan of, Arc) -> Jamie McKenzie (6108ms)\nHow old was Joan of Arc when she died?\tFrench history\t-13.177711705256502\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (French history, is Joan of, Arc) -> French history (6108ms)\nHow old was Joan of Arc when she died?\tMr. Glasses\t-13.187900196508572\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Mr. Glasses, is being a Joan of, Arc) -> Mr. Glasses (6108ms)\nHow old was Joan of Arc when she died?\tModern France\t-13.203353427102073\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Modern France, is Joan of, Arc) -> Modern France (6108ms)\nHow old was Joan of Arc when she died?\tRMS\t-13.207382212719143\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (RMS, is the Joan of, Arc) -> RMS (6108ms)\nHow old was Joan of Arc when she died?\tFrance\t-13.20748533523329\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (France, is challenging Joan of, Arc) -> France (6133ms)\nHow old was Joan of Arc when she died?\tthe Brain\t-13.226342589744354\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the Brain, Was Joan of, Arc) -> the Brain (6133ms)\nHow old was Joan of Arc when she died?\ta classic one\t-13.252054395232339\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (a classic one, is Joan of, Arc) -> a classic one (6133ms)\nHow old was Joan of Arc when she died?\tLorraine\t-13.252653559816073\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Lorraine, was Joan of, Arc) -> Lorraine (6133ms)\nHow old was Joan of Arc when she died?\tOne movie\t-13.273205048727718\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (One movie, was Joan of, Arc) -> One movie (6133ms)\nHow old was Joan of Arc when she died?\tthe Orleans shore\t-13.276078426329773\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the Orleans shore, was JOAN OF, ARC 183) -> the Orleans shore (6133ms)\nHow old was Joan of Arc when she died?\tEmile?s hero\t-13.283750875520505\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Emile?s hero, is Joan of, Arc) -> Emile?s hero (6133ms)\nHow old was Joan of Arc when she died?\tA Teacher\t-13.303238156108389\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (A Teacher, was Joan of, Arc ?) -> A Teacher (6133ms)\nHow old was Joan of Arc when she died?\trecord\t-13.306735811090393\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (record, is Joan of, Arc) -> record (6158ms)\nHow old was Joan of Arc when she died?\tThe Hundrer Years War\t-13.349958833572487\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (The Hundrer Years War, was Joan of, Arc) -> The Hundrer Years War (6158ms)\nHow old was Joan of Arc when she died?\tOne such story\t-13.416350870283459\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (One such story, is Joan of, Arc) -> One such story (6158ms)\nHow old was Joan of Arc when she died?\tOne famous casualty\t-13.43675198914741\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (One famous casualty, is Joan of, Arc) -> One famous casualty (6158ms)\nHow old was Joan of Arc when she died?\tBOSTON GLOBE ?Kay Fanning\t-13.50174384622884\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (BOSTON GLOBE ?Kay Fanning, was the Joan of, Arc) -> BOSTON GLOBE ?Kay Fanning (6158ms)\nHow old was Joan of Arc when she died?\tKoos\t-13.56048041532213\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Koos, was Joan of, Arc]) -> Koos (6158ms)\nHow old was Joan of Arc when she died?\tright\t-13.57585006876661\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (right, now is Joan of, Arc) -> right (6158ms)\nHow old was Joan of Arc when she died?\tprivate\t-13.605912775319958\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (private, Was Joan of, Arc Tortured) -> private (6158ms)\nHow old was Joan of Arc when she died?\tA certain Senator Paola Binetti\t-13.623214006510066\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (A certain Senator Paola Binetti, is the Joan of, Arc) -> A certain Senator Paola Binetti (6182ms)\nHow old was Joan of Arc when she died?\tLife\t-13.791666536004996\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what great thing do joan of arc do ? -> $x: ($x, instance of, great thing) ($x, do joan of, arc) -> $x: ($x, instance of, great thing) ($x, joan of, arc) -> (Life, Instance Of, great bundle of little thing) (\" Life, is Joan of, Arc) -> Life (4290ms)\nHow old was Joan of Arc when she died?\tWishbone\t-13.843278790454036\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Wishbone, is Joan of, Arc) -> Wishbone (6182ms)\nHow old was Joan of Arc when she died?\tone important name\t-13.866058700270612\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (one important name, would be Joan of, Arc) -> one important name (6182ms)\nHow old was Joan of Arc when she died?\tColumbus\t-14.07437250586015\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Columbus, as were Joan of, Arc) -> Columbus (6182ms)\nHow old was Joan of Arc when she died?\tthe selected 15\t-14.084184484380064\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the selected 15, was Joan of, Arc) -> the selected 15 (6182ms)\nHow old was Joan of Arc when she died?\tKatniss\t-14.141477348280278\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Katniss, is a futuristic Joan of, Arc) -> Katniss (6182ms)\nHow old was Joan of Arc when she died?\tthe question\t-14.169025579511242\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the question, is the Joan of, Arc) -> the question (6182ms)\nHow old was Joan of Arc when she died?\tHannah\t-14.200390944022425\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Hannah, is a modern-day Joan of, Arc) -> Hannah (6246ms)\nHow old was Joan of Arc when she died?\tthe video\t-14.2839067191908\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the video, is Joan of, Arc) -> the video (6246ms)\nHow old was Joan of Arc when she died?\tthe inspiration\t-14.370558093246458\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the inspiration, was Joan of, Arc) -> the inspiration (6246ms)\nHow old was Joan of Arc when she died?\tthe topics\t-14.39973661339871\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the topics, are Joan of, Arc) -> the topics (6246ms)\nHow old was Joan of Arc when she died?\tNoah?s wife\t-14.441131045564141\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Noah?s wife, was Joan of, Arc) -> Noah?s wife (6246ms)\nHow old was Joan of Arc when she died?\tteacher\t-14.698155341953026\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what other job do joan of arc have ? -> $x: ($x, instance of, other job) ($x, do joan of, arc) -> $x: ($x, instance of, other job) ($x, joan of, arc) -> (teacher, Instance Of, asset or person with job in the near others) (A Teacher, was Joan of, Arc ?) -> teacher (4322ms)\nHow old was Joan of Arc when she died?\tthe inn\t-14.991312775374674\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the inn, is Joan of, Arc) -> the inn (6246ms)\nHow old was Joan of Arc when she died?\tthe most famous figure\t-15.065413948313859\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the most famous figure, is Joan of, Arc) -> the most famous figure (6246ms)\nHow old was Joan of Arc when she died?\tThe girl\t-15.080224509542916\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (The girl, is Joan of, Arc) -> The girl (6334ms)\nHow old was Joan of Arc when she died?\tthe evil alchemist\t-15.435923326834503\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the evil alchemist, be the Joan of, Arc) -> the evil alchemist (6333ms)\nHow old was Joan of Arc when she died?\tthe appointed local heroin\t-15.436936801584054\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the appointed local heroin, is rather Joan of, Arc) -> the appointed local heroin (6333ms)\nHow old was Joan of Arc when she died?\tthe girl\t-15.567727178362391\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the girl, is Joan of, Arc) -> the girl (6333ms)\nHow old was Joan of Arc when she died?\tthe virtuous stenographer\t-15.659513004156022\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the virtuous stenographer, was half Joan of, Arc) -> the virtuous stenographer (6334ms)\nHow old was Joan of Arc when she died?\tthe young saint\t-15.66980836067507\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the young saint, is Joan of, Arc) -> the young saint (6333ms)\nHow old was Joan of Arc when she died?\tthe biggest inspiration\t-15.70075530633181\tHow old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the biggest inspiration, was Joan of, Arc) -> the biggest inspiration (6590ms)\nWhat is Curveball's real name?\tthe Iraqi defector\t-11.857880402529858\tWhat is Curveball's real name? -> what be [ curveball ] s real name ? -> what be curveball s name ? -> $x: (curveball, name, $x) -> (Curveball, was the code name of, the Iraqi defector) -> the Iraqi defector (13948ms)\nWhich college athletic teams are nicknamed the Cougars?\tfootball\t-5.506868710700054\tWhich college athletic teams are nicknamed the Cougars? -> $x: ($x, instance of, college athletic teams) ($x, are nicknamed, the Cougars) -> $x: ($x, instance of, college athletic teams) (the Cougars, be, $x) -> (football, Instance Of, flagship college athletic team) (the Cougars, would still be playing, football) -> football (2073ms)\nWhich college athletic teams are nicknamed the Cougars?\tGaels\t-6.201846748286544\tWhich college athletic teams are nicknamed the Cougars? -> $x: ($x, instance of, college athletic teams) ($x, are nicknamed, the Cougars) -> $x: ($x, instance of, college athletic teams) (the Cougars, be, $x) -> (Gaels, Instance Of, college athletic team) (The Cougars, were able to remain close with, the Gaels) -> Gaels (2129ms)\nWhich college athletic teams are nicknamed the Cougars?\tsoccer\t-7.356384670068007\tWhich college athletic teams are nicknamed the Cougars? -> $x: ($x, instance of, college athletic teams) ($x, are nicknamed, the Cougars) -> $x: ($x, instance of, college athletic teams) (the Cougars, be, $x) -> (soccer, Instance Of, pre-season camp for high school and college athletic team) (The Lady Cougars, have been playing, soccer) -> soccer (2129ms)\nWhich college athletic teams are nicknamed the Cougars?\tlacrosse\t-7.668034377972964\tWhich college athletic teams are nicknamed the Cougars? -> $x: ($x, instance of, college athletic teams) ($x, are nicknamed, the Cougars) -> $x: ($x, instance of, college athletic team) ($x, nickname, cougar) -> $x: ($x, instance of, college athletic team) (cougar, know as, $x) -> (lacrosse, Instance Of, pre-season camp for high school and college athletic team) (BYU Cougars men's lacrosse, Also known as, BYU Lacrosse) -> lacrosse (7313ms)\nIn what year was Padre Pio born?\tSouthern Italy\t-3.281891934179617\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, Southern Italy) -> Southern Italy (729ms)\nIn what year was Padre Pio born?\tItaly\t-4.440592781612687\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, Italy) -> Italy (729ms)\nIn what year was Padre Pio born?\tPietrelcina\t-4.728270248823564\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (. Padre Pio 1887-1968 Padre Pio, was born in, Pietrelcina) -> Pietrelcina (729ms)\nIn what year was Padre Pio born?\t1887\t-5.0243647367470885\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, 1887) -> 1887 (1116ms)\nIn what year was Padre Pio born?\tPietralcina\t-5.127103607514868\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, Pietralcina) -> Pietralcina (1116ms)\nIn what year was Padre Pio born?\tthe village\t-5.903051409311785\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, the village) -> the village (1515ms)\nIn what year was Padre Pio born?\tFrancesco Forgione\t-7.659759237579928\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be bear, $x) -> (Padre Pio, was born, Francesco Forgione) -> Francesco Forgione (4886ms)\nIn what year was Padre Pio born?\tMay 25,1887\t-7.933737846676236\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be bear, $x) -> (Padre Pio, was born, May 25,1887) -> May 25,1887 (4887ms)\nIn what year was Padre Pio born?\tMay 25 , 1887\t-8.073094058132547\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be bear, $x) -> (Padre Pio, was born, May 25 , 1887) -> May 25 , 1887 (4905ms)\nIn what year was Padre Pio born?\tthe streets\t-9.528467262549986\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be know on, $x) -> (the C.F.R.?s Padre Pio Shelter, is known on, the streets) -> the streets (4754ms)\nIn what year was Padre Pio born?\tthe left side\t-10.124282981112096\tIn what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be to come to, $x) -> (Padre Pio, is coming down over to, the left side) -> the left side (4818ms)\nWhat is schizophrenia?\tbiologically-based disorder\t-4.99602648885058\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, biologically-based disorder) -> biologically-based disorder (1934ms)\nWhat is schizophrenia?\tneuro-functional disorder\t-5.081692812842029\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neuro-functional disorder) -> neuro-functional disorder (1934ms)\nWhat is schizophrenia?\tdevastating brain disorder\t-5.120260520275424\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, devastating brain disorder) -> devastating brain disorder (1934ms)\nWhat is schizophrenia?\tmental health condition\t-5.12338279136269\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental health condition) -> mental health condition (1934ms)\nWhat is schizophrenia?\tserious psychiatric disorder\t-5.143678595419926\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, serious psychiatric disorder) -> serious psychiatric disorder (1934ms)\nWhat is schizophrenia?\tdevastating psychiatric disorder\t-5.151560649040539\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, devastating psychiatric disorder) -> devastating psychiatric disorder (1934ms)\nWhat is schizophrenia?\tNonfatal mental health disorders\t-5.208653775994163\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, Nonfatal mental health disorders) -> Nonfatal mental health disorders (1997ms)\nWhat is schizophrenia?\tbehavioral or psychiatric condition\t-5.213830210120189\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, behavioral or psychiatric condition) -> behavioral or psychiatric condition (1997ms)\nWhat is schizophrenia?\tdevelopmental or psychiatric disorder\t-5.299496534111638\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, developmental or psychiatric disorder) -> developmental or psychiatric disorder (1997ms)\nWhat is schizophrenia?\tchronic mental illness\t-5.306714639595445\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, chronic mental illness) -> chronic mental illness (1997ms)\nWhat is schizophrenia?\tgroup of related disorder\t-5.317122675160167\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, group of related disorder) -> group of related disorder (1997ms)\nWhat is schizophrenia?\tcommon complex disorder\t-5.319840410528823\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, common complex disorder) -> common complex disorder (1997ms)\nWhat is schizophrenia?\tincurable brain disease\t-5.334795924442895\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, incurable brain disease) -> incurable brain disease (2067ms)\nWhat is schizophrenia?\tmental health difficulty\t-5.340404241547823\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental health difficulty) -> mental health difficulty (2067ms)\nWhat is schizophrenia?\tcomplex neurodevelopmental disorder\t-5.350744101134356\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, complex neurodevelopmental disorder) -> complex neurodevelopmental disorder (2067ms)\nWhat is schizophrenia?\tchronic and disabling illness\t-5.367190467350387\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic and disabling illness) -> chronic and disabling illness (2067ms)\nWhat is schizophrenia?\tchronic debilitating disorder\t-5.369847772955838\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic debilitating disorder) -> chronic debilitating disorder (2067ms)\nWhat is schizophrenia?\tchronic disorder of the brain\t-5.378968531802974\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic disorder of the brain) -> chronic disorder of the brain (2067ms)\nWhat is schizophrenia?\tcommon human disease\t-5.3850802398779605\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, common human disease) -> common human disease (2085ms)\nWhat is schizophrenia?\tchronic, debilitating disease\t-5.393677162456447\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic, debilitating disease) -> chronic, debilitating disease (2085ms)\nWhat is schizophrenia?\tprevalent psychiatric disorder\t-5.3982678198873515\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, prevalent psychiatric disorder) -> prevalent psychiatric disorder (2085ms)\nWhat is schizophrenia?\tprogressive, degenerative disorder\t-5.415806520706754\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, progressive, degenerative disorder) -> progressive, degenerative disorder (2085ms)\nWhat is schizophrenia?\tprogressive neurodevelopmental disorder\t-5.419200969362558\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, progressive neurodevelopmental disorder) -> progressive neurodevelopmental disorder (2085ms)\nWhat is schizophrenia?\tdangerous mental illness\t-5.42861781529587\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, dangerous mental illness) -> dangerous mental illness (2085ms)\nWhat is schizophrenia?\tcognitive and behavioral disorder\t-5.4290801189126014\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, cognitive and behavioral disorder) -> cognitive and behavioral disorder (2109ms)\nWhat is schizophrenia?\tselected DSM-IV-TR disorder\t-5.4290801189126014\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, selected DSM-IV-TR disorder) -> selected DSM-IV-TR disorder (2109ms)\nWhat is schizophrenia?\tchronic neuropsychiatric disorder\t-5.442392630936574\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic neuropsychiatric disorder) -> chronic neuropsychiatric disorder (2109ms)\nWhat is schizophrenia?\tcognitive and neurological disorder\t-5.443591207030303\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, cognitive and neurological disorder) -> cognitive and neurological disorder (2109ms)\nWhat is schizophrenia?\tunderlying psychiatric condition\t-5.447377802241265\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, underlying psychiatric condition) -> underlying psychiatric condition (2109ms)\nWhat is schizophrenia?\tCNS disease\t-5.458991146740747\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, CNS disease) -> CNS disease (2109ms)\nWhat is schizophrenia?\tdisorder of language\t-5.4702077809506005\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disorder of language) -> disorder of language (2125ms)\nWhat is schizophrenia?\tillness or condition\t-5.491787241699828\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, illness or condition) -> illness or condition (2125ms)\nWhat is schizophrenia?\thuman behavioral disorder\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, human behavioral disorder) -> human behavioral disorder (2125ms)\nWhat is schizophrenia?\tsevere psychotic condition\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe psychotic condition) -> severe psychotic condition (2140ms)\nWhat is schizophrenia?\theritable brain disorder\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, heritable brain disorder) -> heritable brain disorder (2140ms)\nWhat is schizophrenia?\tnotoriously difficult disease\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, notoriously difficult disease) -> notoriously difficult disease (2140ms)\nWhat is schizophrenia?\tfunctional brain disorder\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, functional brain disorder) -> functional brain disorder (2126ms)\nWhat is schizophrenia?\tlong lasting effect\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, long lasting effect) -> long lasting effect (2140ms)\nWhat is schizophrenia?\tminor psychological disorder\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, minor psychological disorder) -> minor psychological disorder (2140ms)\nWhat is schizophrenia?\tsymptom psychotic condition\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, symptom psychotic condition) -> symptom psychotic condition (2125ms)\nWhat is schizophrenia?\tsevere mental disease\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe mental disease) -> severe mental disease (2140ms)\nWhat is schizophrenia?\tsecond mental illness\t-5.505625684056914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, second mental illness) -> second mental illness (2125ms)\nWhat is schizophrenia?\tneurodevelopmental and neurobehavioural disorder\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurodevelopmental and neurobehavioural disorder) -> neurodevelopmental and neurobehavioural disorder (2159ms)\nWhat is schizophrenia?\tawful long term health complication\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, awful long term health complication) -> awful long term health complication (2186ms)\nWhat is schizophrenia?\tneurological and mental health disorder\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurological and mental health disorder) -> neurological and mental health disorder (2159ms)\nWhat is schizophrenia?\tdifficult-to-treat disorder\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, difficult-to-treat disorder) -> difficult-to-treat disorder (2186ms)\nWhat is schizophrenia?\tlong and debilitating illness\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, long and debilitating illness) -> long and debilitating illness (2159ms)\nWhat is schizophrenia?\tcommon heritable disease trait\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, common heritable disease trait) -> common heritable disease trait (2159ms)\nWhat is schizophrenia?\tlot mental illness\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, lot mental illness) -> lot mental illness (2186ms)\nWhat is schizophrenia?\tpsychiatric illness personality disorder\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric illness personality disorder) -> psychiatric illness personality disorder (2159ms)\nWhat is schizophrenia?\tdisease of the spirit\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disease of the spirit) -> disease of the spirit (2186ms)\nWhat is schizophrenia?\tillness es\t-5.51474644290405\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, illness es) -> illness es (2159ms)\nWhat is schizophrenia?\tkind of illness\t-5.520977907034913\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, kind of illness) -> kind of illness (2186ms)\nWhat is schizophrenia?\tgroup of illness\t-5.52297197543422\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, group of illness) -> group of illness (2186ms)\nWhat is schizophrenia?\tchronic, degenerative disease\t-5.523255614634913\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, chronic, degenerative disease) -> chronic, degenerative disease (2216ms)\nWhat is schizophrenia?\tcluster of disorder\t-5.52502835841355\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, cluster of disorder) -> cluster of disorder (2217ms)\nWhat is schizophrenia?\tadult mental disorder\t-5.526189515075914\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, adult mental disorder) -> adult mental disorder (2217ms)\nWhat is schizophrenia?\tpsychological disorder s\t-5.53119750796439\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, psychological disorder s) -> psychological disorder s (2216ms)\nWhat is schizophrenia?\treal mental disease\t-5.5330441262327135\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, real mental disease) -> real mental disease (2217ms)\nWhat is schizophrenia?\tbrain disease\t-5.543903108602061\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, brain disease) -> brain disease (2217ms)\nWhat is schizophrenia?\tpsychological related issue\t-5.546753346094913\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychological related issue) -> psychological related issue (2230ms)\nWhat is schizophrenia?\tneurological disorder\t-5.5521912348078875\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurological disorder) -> neurological disorder (2230ms)\nWhat is schizophrenia?\tsevere medical mental condition\t-5.55587410494205\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe medical mental condition) -> severe medical mental condition (2230ms)\nWhat is schizophrenia?\tcomplex disease\t-5.572743983634905\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, complex disease) -> complex disease (2230ms)\nWhat is schizophrenia?\tpsychiatric diagnosis\t-5.62200567584461\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric diagnosis) -> psychiatric diagnosis (2230ms)\nWhat is schizophrenia?\tdebilitating condition\t-5.6369192235929395\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, debilitating condition) -> debilitating condition (2230ms)\nWhat is schizophrenia?\tsevere condition\t-5.6422210600999145\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe condition) -> severe condition (2283ms)\nWhat is schizophrenia?\timmunologic disorder\t-5.715390446816772\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, immunologic disorder) -> immunologic disorder (2283ms)\nWhat is schizophrenia?\tlonely illness\t-5.742464781113766\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, lonely illness) -> lonely illness (2283ms)\nWhat is schizophrenia?\ttragic disease\t-5.745272000198361\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, tragic disease) -> tragic disease (2283ms)\nWhat is schizophrenia?\tneurobiological disease\t-5.759987754927845\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurobiological disease) -> neurobiological disease (2283ms)\nWhat is schizophrenia?\tpsychiatric label\t-5.7999582564543495\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric label) -> psychiatric label (2283ms)\nWhat is schizophrenia?\tfamily disease\t-5.808682306237559\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, family disease) -> family disease (2335ms)\nWhat is schizophrenia?\tblanket diagnosis\t-5.832505092480487\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, blanket diagnosis) -> blanket diagnosis (2335ms)\nWhat is schizophrenia?\tmodern illness\t-5.8333487367796995\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, modern illness) -> modern illness (2335ms)\nWhat is schizophrenia?\tspiritual disorder\t-5.839676069636641\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, spiritual disorder) -> spiritual disorder (2335ms)\nWhat is schizophrenia?\tbrain condition\t-5.871915359357899\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, brain condition) -> brain condition (2364ms)\nWhat is schizophrenia?\tstraightforward disorder\t-5.871915359357899\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, straightforward disorder) -> straightforward disorder (2364ms)\nWhat is schizophrenia?\tintimidating diagnosis\t-5.871915359357899\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, intimidating diagnosis) -> intimidating diagnosis (2335ms)\nWhat is schizophrenia?\tdisturbing disease\t-5.871915359357899\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, disturbing disease) -> disturbing disease (2335ms)\nWhat is schizophrenia?\tpermanent disease\t-5.8754916778626\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, permanent disease) -> permanent disease (2364ms)\nWhat is schizophrenia?\tgenetic issue\t-5.878242692214841\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, genetic issue) -> genetic issue (2364ms)\nWhat is schizophrenia?\tunderstood disease\t-5.882882736473359\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, understood disease) -> understood disease (2364ms)\nWhat is schizophrenia?\temotional condition\t-5.885344799748211\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, emotional condition) -> emotional condition (2364ms)\nWhat is schizophrenia?\tlife situation\t-5.885436782392937\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, life situation) -> life situation (2380ms)\nWhat is schizophrenia?\tdiagnostic label\t-5.885624580445799\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, diagnostic label) -> diagnostic label (2380ms)\nWhat is schizophrenia?\tambiguous term\t-5.888546217425425\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, ambiguous term) -> ambiguous term (2380ms)\nWhat is schizophrenia?\tundiagnosed condition\t-5.890194320399866\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, undiagnosed condition) -> undiagnosed condition (2380ms)\nWhat is schizophrenia?\tmental impairment\t-5.890897357315875\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental impairment) -> mental impairment (2381ms)\nWhat is schizophrenia?\textreme case\t-5.901455970887858\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, extreme case) -> extreme case (2588ms)\nWhat is schizophrenia?\thealth issue\t-5.903292755644747\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, health issue) -> health issue (2588ms)\nWhat is schizophrenia?\thuman oddity\t-5.904817489478579\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, human oddity) -> human oddity (2588ms)\nWhat is schizophrenia?\tdevelopmental disease\t-5.919897630101299\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, developmental disease) -> developmental disease (2588ms)\nWhat is schizophrenia?\tdisease\t-7.595681897167982\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disease) -> disease (2588ms)\nWhat is schizophrenia?\tAtypical antipsychotics\t-7.905334915472646\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Atypical antipsychotics, are standard drugs for, schizophrenia) -> Atypical antipsychotics (2588ms)\nWhat is schizophrenia?\tmalady\t-7.972877598157053\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, malady) -> malady (2607ms)\nWhat is schizophrenia?\tform\t-8.019286487574044\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, form) -> form (2607ms)\nWhat is schizophrenia?\treason\t-8.053395504918727\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, reason) -> reason (2607ms)\nWhat is schizophrenia?\tcontraindication\t-8.124703676974441\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, contraindication) -> contraindication (2607ms)\nWhat is schizophrenia?\tdrug\t-8.14804396327805\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, drug) -> drug (2607ms)\nWhat is schizophrenia?\ta wandering uterus\t-8.244336930338665\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is still a disease caused by, a wandering uterus) -> a wandering uterus (2607ms)\nWhat is schizophrenia?\tsevere mental illness\t-8.29013793488524\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be the most common form of, $x) -> (Schizophrenia, is the most common form of, severe mental illness) -> severe mental illness (2631ms)\nWhat is schizophrenia?\tAripiprazole\t-8.551130689061736\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Aripiprazole, is a drug used to treat, schizophrenia) -> Aripiprazole (2631ms)\nWhat is schizophrenia?\tClozapine\t-8.68209126794568\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Clozapine, is a drug used for, schizophrenia) -> Clozapine (2631ms)\nWhat is schizophrenia?\tZyprexa\t-8.69348654421861\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Zyprexa, is a drug used to treat, schizophrenia) -> Zyprexa (2631ms)\nWhat is schizophrenia?\tPsychiatrists\t-9.090481949507662\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Psychiatrists, use antipsychotic drugs to treat, schizophrenia) -> Psychiatrists (2631ms)\nWhat is schizophrenia?\tAnimals\t-9.142739411149009\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, modelling, $x) -> (Autism and Schizophrenia, Be Modeled in, Animals) -> Animals (2631ms)\nWhat is schizophrenia?\thuman brain evolution\t-9.284108711116824\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is a costly by-product of, human brain evolution) -> human brain evolution (2648ms)\nWhat is schizophrenia?\teach entry\t-9.32445276939149\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, element, schizophrenia) -> (each entry, incorporates a formalised element of, schizophrenia) -> each entry (2648ms)\nWhat is schizophrenia?\tdelusions\t-10.027332652625956\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (Schizophrenia, is a disorder characterized by, delusions) -> delusions (2648ms)\nWhat is schizophrenia?\tviolent\t-10.305348359371916\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, and / or, $x) -> (schizophrenia, can be verbally and/or physically, violent) -> violent (2648ms)\nWhat is schizophrenia?\tthe illness\t-10.33517429489185\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be the most common form of, $x) -> (Paranoid schizophrenia, is the most common form of, the illness) -> the illness (2648ms)\nWhat is schizophrenia?\taffinity\t-10.366402552245539\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is a disease by, affinity) -> affinity (2662ms)\nWhat is schizophrenia?\tdisturbances\t-10.383645482942516\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is a disorder characterized by, disturbances) -> disturbances (2663ms)\nWhat is schizophrenia?\tdisorders\t-10.537549831168585\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a class of, $x) -> (Schizophrenia, may be a class of, disorders) -> disorders (2662ms)\nWhat is schizophrenia?\tseroquel\t-10.582818847549134\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (seroquel, is a drug that might treat, Schizophrenia) -> seroquel (2663ms)\nWhat is schizophrenia?\tclozapine\t-10.582818847549134\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (clozapine, is a drug that might treat, Schizophrenia) -> clozapine (2677ms)\nWhat is schizophrenia?\trisperdal\t-10.582818847549134\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (risperdal, is a drug that might treat, Schizophrenia) -> risperdal (2663ms)\nWhat is schizophrenia?\tthe same people\t-10.606470040395038\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (the same people, then used these drugs to treat, schizophrenia) -> the same people (2677ms)\nWhat is schizophrenia?\tThe patients\t-10.70049301922472\tWhat is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (The patients, take antipsychotic drugs for, schizophrenia) -> The patients (2677ms)\nWhat is schizophrenia?\tCBD\t-11.596390532748432\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (CBD, is known to be beneficial in, schizophrenia) -> CBD (2827ms)\nWhat is schizophrenia?\tan illusion\t-11.696786529471003\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (an illusion, is known as, Schizophrenia) -> an illusion (2826ms)\nWhat is schizophrenia?\tISPS-US\t-11.736176280115755\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (ISPS-US, Also known as, International Symposium for the Psychotherapy of Schizophrenia - US Chapter) -> ISPS-US (4017ms)\nWhat is schizophrenia?\tA user's guide to capitalism and schizophrenia: deviations from Deleuze and Guattari\t-11.736176280115755\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (A user's guide to capitalism and schizophrenia: deviations from Deleuze and Guattari, Also known as, Capitalism and schizophrenia.) -> A user's guide to capitalism and schizophrenia: deviations from Deleuze and Guattari (4017ms)\nWhat is schizophrenia?\tThe Schizophrenias: ours to conquer\t-11.736176280115755\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (The Schizophrenias: ours to conquer, Also known as, Schizophrenias--yours and mine.) -> The Schizophrenias: ours to conquer (4017ms)\nWhat is schizophrenia?\tSex differences in schizophrenia\t-11.736176280115755\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Sex differences in schizophrenia, Also known as, Daily functions in schizophrenia in regards to gender differences) -> Sex differences in schizophrenia (4017ms)\nWhat is schizophrenia?\tOn the Origin of the \"Influencing Machine\" in Schizophrenia\t-11.736176280115755\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (On the Origin of the \"Influencing Machine\" in Schizophrenia, Also known as, On the Origin of the ?Influencing Machine? in Schizophrenia.) -> On the Origin of the \"Influencing Machine\" in Schizophrenia (4017ms)\nWhat is schizophrenia?\tEn Trange to Exit\t-11.736176280115755\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (En Trange to Exit, Also known as, En Trange to Exit (feat. Schizophrenia)) -> En Trange to Exit (4017ms)\nWhat is schizophrenia?\tSchizophrenia International Research Society\t-11.736176280115755\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Schizophrenia International Research Society, Also known as, Schizophrenia international research society) -> Schizophrenia International Research Society (4040ms)\nWhat is schizophrenia?\tSchizophrenia Fellowship of NSW\t-11.736176280115755\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Schizophrenia Fellowship of NSW, Also known as, Schizophrenia Fellowship of NSW Inc) -> Schizophrenia Fellowship of NSW (4039ms)\nWhat is schizophrenia?\tUnethical Psychiatrists\t-11.751708461730194\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (Unethical Psychiatrists, is Known About, Schizophrenia) -> Unethical Psychiatrists (2826ms)\nWhat is schizophrenia?\tprivate What\t-11.775736338535406\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (private What, is, schizophrenia) -> private What (6084ms)\nWhat is schizophrenia?\tAutism\t-11.790226316741494\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (Autism, was once known as, Infantile Schizophrenia) -> Autism (2827ms)\nWhat is schizophrenia?\tDiogenes Nkosi\t-11.864712254486179\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (Diogenes Nkosi, was best known for, his schizophrenia) -> Diogenes Nkosi (2827ms)\nWhat is schizophrenia?\tGABA synthesis\t-11.870965135894041\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (GABA synthesis, are known to play a role in, schizophrenia) -> GABA synthesis (2827ms)\nWhat is schizophrenia?\tRice\t-11.907528073575895\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (Rice, was known to suffer from, schizophrenia) -> Rice (2840ms)\nWhat is schizophrenia?\tCatastrophic schizophrenia\t-11.939386787229946\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Catastrophic schizophrenia, Also known as, Catastrophic Schizophrenia) -> Catastrophic schizophrenia (4039ms)\nWhat is schizophrenia?\tGABA\t-12.046117272515815\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (GABA, is known to be present in, schizophrenia) -> GABA (2840ms)\nWhat is schizophrenia?\tthe Mentally Ill\t-12.074554295741935\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (the Mentally Ill, Is, Schizophrenia) -> the Mentally Ill (6084ms)\nWhat is schizophrenia?\tAn Overview\t-12.086284607288233\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (An Overview, Is, Schizophrenia) -> An Overview (6084ms)\nWhat is schizophrenia?\tKIAA1913\t-12.128733740896491\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (KIAA1913, Also known as, found in a patient with schizophrenia) -> KIAA1913 (4040ms)\nWhat is schizophrenia?\tthe DISC 1 gene\t-12.232376744106219\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (the DISC 1 gene, are known to cause, schizophrenia) -> the DISC 1 gene (2841ms)\nWhat is schizophrenia?\tTom Middleton\t-12.261896820064678\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Tom Middleton, Also known as, Schizophrenia) -> Tom Middleton (4040ms)\nWhat is schizophrenia?\tFear\t-12.373170077999738\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Fear, Also known as, \"Schizophrenia\"@fr) -> Fear (4056ms)\nWhat is schizophrenia?\tWhat Really Causes Schizophrenia\t-12.405185239145933\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (What Really Causes Schizophrenia, Edition Of, What Really Causes Schizophrenia) -> What Really Causes Schizophrenia (9368ms)\nWhat is schizophrenia?\tSchizophrenia\t-12.427894631082555\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Schizophrenia, Also known as, Schizophrenia (feat. Moritz von Oswald)) -> Schizophrenia (4056ms)\nWhat is schizophrenia?\tsplit personality\t-12.428292421409763\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (split personality, is, schizophrenia) -> split personality (6084ms)\nWhat is schizophrenia?\tSchizoaffect Disorder\t-12.475919306417373\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Schizoaffect Disorder, is, Schizophrenia) -> Schizoaffect Disorder (6084ms)\nWhat is schizophrenia?\tvisual perception\t-12.494179878247888\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (visual perception, is, schizophrenia) -> visual perception (6084ms)\nWhat is schizophrenia?\tMore About\t-12.533596935809152\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (More About, is, Schizophrenia) -> More About (6084ms)\nWhat is schizophrenia?\tAfghanistan\t-12.564591367376707\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Afghanistan, is, schizophrenia) -> Afghanistan (6084ms)\nWhat is schizophrenia?\tHoffman-LaRoche\t-12.566949373533545\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Hoffman-LaRoche, is, schizophrenia) -> Hoffman-LaRoche (6107ms)\nWhat is schizophrenia?\tNIMH Schizophrenia ?\t-12.61817181246703\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (NIMH Schizophrenia ?, is, schizophrenia) -> NIMH Schizophrenia ? (6107ms)\nWhat is schizophrenia?\tResidual type schizophrenic disorders\t-12.636294381276924\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, include, $x) -> (Schizophrenia, Includes Diseases, Residual type schizophrenic disorders) -> Residual type schizophrenic disorders (10273ms)\nWhat is schizophrenia?\tSchizo-Affctive\t-12.64481942642307\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Schizo-Affctive, is, Schizophrenia) -> Schizo-Affctive (6107ms)\nWhat is schizophrenia?\tan attorney\t-12.646432690376196\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (an attorney, is, Schizophrenia) -> an attorney (6108ms)\nWhat is schizophrenia?\tLewis SW\t-12.650650325943575\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Lewis SW, Is, Schizophrenia) -> Lewis SW (6107ms)\nWhat is schizophrenia?\tEvidence based treatment summaries\t-12.667484827263968\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Evidence based treatment summaries, is, schizophrenia) -> Evidence based treatment summaries (6107ms)\nWhat is schizophrenia?\tOxford University Press\t-12.709551136112287\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Oxford University Press, Book editions published, Schizophrenia) -> Oxford University Press (8834ms)\nWhat is schizophrenia?\tChelsea House Publishers\t-12.709551136112287\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Chelsea House Publishers, Book editions published, Schizophrenia) -> Chelsea House Publishers (8834ms)\nWhat is schizophrenia?\ta new idea\t-12.724582765080262\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (a new idea, was, schizophrenia) -> a new idea (6108ms)\nWhat is schizophrenia?\tpsychiatric case register\t-12.730036565940688\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (psychiatric case register, Is, schizophrenia) -> psychiatric case register (6107ms)\nWhat is schizophrenia?\tThree major psychiatric disorders\t-12.794809302793018\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Three major psychiatric disorders, are, schizophrenia) -> Three major psychiatric disorders (6130ms)\nWhat is schizophrenia?\tReligion\t-12.815436537414097\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Religion, is, schizophrenia) -> Religion (6130ms)\nWhat is schizophrenia?\tRecovery from schizophrenia\t-12.81900024227792\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Recovery from schizophrenia, Editions, Recovery from schizophrenia) -> Recovery from schizophrenia (9368ms)\nWhat is schizophrenia?\tSimple type schizophrenia\t-12.820168879635187\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, include, $x) -> (Schizophrenia, Includes classifications, Simple type schizophrenia) -> Simple type schizophrenia (10273ms)\nWhat is schizophrenia?\tthe PubMed search\t-12.828033891565935\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (the PubMed search, were, 'schizophrenia) -> the PubMed search (6129ms)\nWhat is schizophrenia?\tKey Q&A Key Q&A\t-12.844414841168266\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Key Q&A Key Q&A, is, schizophrenia) -> Key Q&A Key Q&A (6129ms)\nWhat is schizophrenia?\tSSDs The outcome\t-12.848370442302631\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (SSDs The outcome, was, schizophrenia) -> SSDs The outcome (6129ms)\nWhat is schizophrenia?\tTandem Library\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Tandem Library, Book editions published, Schizophrenia) -> Tandem Library (8834ms)\nWhat is schizophrenia?\tSurviving Schizophrenia\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Surviving Schizophrenia: A Family Manual, Edition Of, Surviving Schizophrenia) -> Surviving Schizophrenia (9118ms)\nWhat is schizophrenia?\tParanoid Schizophrenia\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, split to, $x) -> (Paranoid schizophrenia, Split To, Paranoid Schizophrenia) -> Paranoid Schizophrenia (9369ms)\nWhat is schizophrenia?\tChronic Schizophrenia\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Chronic Schizophrenia, Editions, Chronic Schizophrenia) -> Chronic Schizophrenia (9368ms)\nWhat is schizophrenia?\tBeautiful Minds\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Beautiful Minds: Living With Schizophrenia, Edition Of, Beautiful Minds) -> Beautiful Minds (9118ms)\nWhat is schizophrenia?\tCatatonic Schizophrenia\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, split to, $x) -> (Catatonic Schizophrenia, Split To, Catatonic Schizophrenia) -> Catatonic Schizophrenia (9368ms)\nWhat is schizophrenia?\tConquering Schizophrenia\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Conquering Schizophrenia, Edition Of, Conquering Schizophrenia) -> Conquering Schizophrenia (9624ms)\nWhat is schizophrenia?\tBorgo Press\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Borgo Press, Book editions published, Schizophrenia) -> Borgo Press (8834ms)\nWhat is schizophrenia?\tDiseases Explained\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Diseases Explained: Schizophrenia Wall Chart, Edition Of, Diseases Explained) -> Diseases Explained (9119ms)\nWhat is schizophrenia?\tHealing Schizophrenia\t-12.856942599082005\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Healing Schizophrenia: Complementary Vitamin & Drug Treatments, Edition Of, Healing Schizophrenia) -> Healing Schizophrenia (9119ms)\nWhat is schizophrenia?\tStrategic Intervention in Schizophrenia\t-12.890142161285581\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Strategic Intervention in Schizophrenia, Edition Of, Strategic Intervention in Schizophrenia) -> Strategic Intervention in Schizophrenia (9624ms)\nWhat is schizophrenia?\tNAMI | Schizophrenia\t-12.908077052581643\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (NAMI | Schizophrenia, Is, Schizophrenia) -> NAMI | Schizophrenia (6129ms)\nWhat is schizophrenia?\tnow its most overt manifestation\t-12.927917183481872\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (now its most overt manifestation, is, schizophrenia) -> now its most overt manifestation (6129ms)\nWhat is schizophrenia?\tSurviving Schizophrenia: A Family Manual\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Surviving Schizophrenia: A Family Manual, Edition Of, Surviving Schizophrenia) -> Surviving Schizophrenia: A Family Manual (16673ms)\nWhat is schizophrenia?\tMedicating schizophrenia : a history\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Medicating schizophrenia : a history, Edition Of, Medicating schizophrenia) -> Medicating schizophrenia : a history (16673ms)\nWhat is schizophrenia?\tFamily management of schizophrenia: a study of clinical, social, family, and economic benefits\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Family management of schizophrenia: a study of clinical, social, family, and economic benefits, Edition Of, Family management of schizophrenia) -> Family management of schizophrenia: a study of clinical, social, family, and economic benefits (12273ms)\nWhat is schizophrenia?\tSchizophrenia and genetics: a twin study vantage point\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia and genetics: a twin study vantage point, Edition Of, Schizophrenia and genetics) -> Schizophrenia and genetics: a twin study vantage point (12319ms)\nWhat is schizophrenia?\tSchizophrenia and the poor\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia and the poor, Editions, Schizophrenia and the poor) -> Schizophrenia and the poor (16514ms)\nWhat is schizophrenia?\tA tragedy of schizophrenia: the wife's tale\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (A tragedy of schizophrenia: the wife's tale, Edition Of, A tragedy of schizophrenia) -> A tragedy of schizophrenia: the wife's tale (16475ms)\nWhat is schizophrenia?\tSchizophrenia: the meanings of madness\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia: the meanings of madness, Edition Of, Schizophrenia: the meanings of madness) -> Schizophrenia: the meanings of madness (16829ms)\nWhat is schizophrenia?\tRecovery from Schizophrenia: Psychiatry & Political Economy\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Recovery from Schizophrenia: Psychiatry & Political Economy, Edition Of, Recovery from Schizophrenia) -> Recovery from Schizophrenia: Psychiatry & Political Economy (16868ms)\nWhat is schizophrenia?\tSchizophrenia: medical & psychological subject index with bibliography\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: medical & psychological subject index with bibliography, Edition Of, Schizophrenia) -> Schizophrenia: medical & psychological subject index with bibliography (16750ms)\nWhat is schizophrenia?\tThe Management of Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (The Management of Schizophrenia, Edition Of, The Management of Schizophrenia) -> The Management of Schizophrenia (16111ms)\nWhat is schizophrenia?\tLanguage behavior and psychopathology\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Language behavior in schizophrenia, Editions, Language behavior and psychopathology) -> Language behavior and psychopathology (11854ms)\nWhat is schizophrenia?\tSchizophrenia: the facts\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: the facts, Edition Of, Schizophrenia) -> Schizophrenia: the facts (11946ms)\nWhat is schizophrenia?\tSurviving schizophrenia : a manual for families, consumers, and providers\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Surviving schizophrenia : a manual for families, consumers, and providers, Edition Of, Surviving Schizophrenia) -> Surviving schizophrenia : a manual for families, consumers, and providers (12216ms)\nWhat is schizophrenia?\tLevels of schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Levels of schizophrenia, Editions, Levels of schizophrenia) -> Levels of schizophrenia (17061ms)\nWhat is schizophrenia?\tSchizophrenia; chemistry, metabolism and treatment\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia; chemistry, metabolism and treatment, Edition Of, Schizophrenia; chemistry, metabolism and treatment) -> Schizophrenia; chemistry, metabolism and treatment (17062ms)\nWhat is schizophrenia?\tSchizophrenia and bipolar disorders: often misdiagnosed, often mistreated : a family manual\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia and bipolar disorders, Editions, Schizophrenia and bipolar disorders: often misdiagnosed, often mistreated : a family manual) -> Schizophrenia and bipolar disorders: often misdiagnosed, often mistreated : a family manual (11902ms)\nWhat is schizophrenia?\tMind, Brain, and Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Mind, Brain, and Schizophrenia, Editions, Mind, Brain, and Schizophrenia) -> Mind, Brain, and Schizophrenia (16255ms)\nWhat is schizophrenia?\tInheritance of schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Inheritance of schizophrenia, Edition Of, Inheritance of schizophrenia) -> Inheritance of schizophrenia (12319ms)\nWhat is schizophrenia?\tLanguage behavior in schizophrenia: selected readings in research and theory.\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Language behavior in schizophrenia: selected readings in research and theory., Edition Of, Language behavior in schizophrenia) -> Language behavior in schizophrenia: selected readings in research and theory. (12565ms)\nWhat is schizophrenia?\tSchizophrenia and Human Value\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia and Human Value: Chronic Schizophrenia, Science and Society, Edition Of, Schizophrenia and Human Value) -> Schizophrenia and Human Value (12678ms)\nWhat is schizophrenia?\tA Carer's Guide to Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (A Carer's Guide to Schizophrenia, Edition Of, A Carer's Guide to Schizophrenia) -> A Carer's Guide to Schizophrenia (11946ms)\nWhat is schizophrenia?\tThe Concept of Schizophrenia: Historical Perspectives\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (The Concept of Schizophrenia: Historical Perspectives, Edition Of, The Concept of Schizophrenia) -> The Concept of Schizophrenia: Historical Perspectives (16789ms)\nWhat is schizophrenia?\tSchizophrenia:Voices of an Illness\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia:Voices of an Illness, Edition Of, Schizophrenia:Voices of an Illness) -> Schizophrenia:Voices of an Illness (16712ms)\nWhat is schizophrenia?\tSchizophrenia: the cutting edge\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: the cutting edge, Edition Of, Schizophrenia) -> Schizophrenia: the cutting edge (10344ms)\nWhat is schizophrenia?\tNeurochemistry of schizophrenia & depression\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Neurochemistry of schizophrenia & depression, Edition Of, Neurochemistry of schizophrenia & depression) -> Neurochemistry of schizophrenia & depression (16788ms)\nWhat is schizophrenia?\tSchizophrenia: Lothian Primary Care NHS Trust\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: Lothian Primary Care NHS Trust, Edition Of, Schizophrenia) -> Schizophrenia: Lothian Primary Care NHS Trust (17133ms)\nWhat is schizophrenia?\tSchizophrenia: Aspects of Care\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: Aspects of Care, Edition Of, Schizophrenia) -> Schizophrenia: Aspects of Care (16513ms)\nWhat is schizophrenia?\tLiving With Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Living With Schizophrenia, Edition Of, Living With Schizophrenia) -> Living With Schizophrenia (17062ms)\nWhat is schizophrenia?\tSchizophrenia (Life Balance)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia (Life Balance), Edition Of, Schizophrenia) -> Schizophrenia (Life Balance) (16750ms)\nWhat is schizophrenia?\tSchizophrenia: Losing Touch With Reality (Encyclopedia of Psychological Disorders Series)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: Losing Touch With Reality (Encyclopedia of Psychological Disorders Series), Edition Of, Schizophrenia) -> Schizophrenia: Losing Touch With Reality (Encyclopedia of Psychological Disorders Series) (16673ms)\nWhat is schizophrenia?\tResearch techniques in schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Research techniques in schizophrenia, Edition Of, Research techniques in schizophrenia) -> Research techniques in schizophrenia (12366ms)\nWhat is schizophrenia?\tFamily care of schizophrenia : a problem-solving approach to the treatment of mental illness\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Family care of schizophrenia : a problem-solving approach to the treatment of mental illness, Edition Of, Family management of schizophrenia) -> Family care of schizophrenia : a problem-solving approach to the treatment of mental illness (16475ms)\nWhat is schizophrenia?\tRecovery from schizophrenia: psychiatry and political economy\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Recovery from schizophrenia, Editions, Recovery from schizophrenia: psychiatry and political economy) -> Recovery from schizophrenia: psychiatry and political economy (16868ms)\nWhat is schizophrenia?\tSchizophrenia; research and theory\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia; research and theory, Editions, Schizophrenia; research and theory) -> Schizophrenia; research and theory (17133ms)\nWhat is schizophrenia?\tThe Neuropsychology Of Schizophrenia (Brain Damage, Behaviour, & Cognition)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (The Neuropsychology Of Schizophrenia, Editions, The Neuropsychology Of Schizophrenia (Brain Damage, Behaviour, & Cognition)) -> The Neuropsychology Of Schizophrenia (Brain Damage, Behaviour, & Cognition) (16435ms)\nWhat is schizophrenia?\tSchizophrenia: selected papers\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: selected papers, Edition Of, Schizophrenia) -> Schizophrenia: selected papers (16788ms)\nWhat is schizophrenia?\tHealing Schizophrenia: Complementary Vitamin & Drug Treatments\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Healing Schizophrenia, Editions, Healing Schizophrenia: Complementary Vitamin & Drug Treatments) -> Healing Schizophrenia: Complementary Vitamin & Drug Treatments (12273ms)\nWhat is schizophrenia?\tMind, brain, and schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Mind, brain, and schizophrenia, Edition Of, Mind, Brain, and Schizophrenia) -> Mind, brain, and schizophrenia (12565ms)\nWhat is schizophrenia?\tTheories of schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Theories of schizophrenia, Edition Of, Theories of schizophrenia) -> Theories of schizophrenia (16712ms)\nWhat is schizophrenia?\tSchizophrenia (The Bode Library)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia (The Bode Library)) -> Schizophrenia (The Bode Library) (12216ms)\nWhat is schizophrenia?\tSchizophrenia, somatic aspects\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia, somatic aspects, Edition Of, Schizophrenia, somatic aspects) -> Schizophrenia, somatic aspects (11807ms)\nWhat is schizophrenia?\tSchizophrenia : empirical research and findings\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia : empirical research and findings, Edition Of, Schizophrenia) -> Schizophrenia : empirical research and findings (16254ms)\nWhat is schizophrenia?\tEssays in Schizophrenia (Pocket picture guides to clinical medicine)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Essays in Schizophrenia, Editions, Essays in Schizophrenia (Pocket picture guides to clinical medicine)) -> Essays in Schizophrenia (Pocket picture guides to clinical medicine) (16712ms)\nWhat is schizophrenia?\tSchizophrenia; conditional reflex studies\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia; conditional reflex studies) -> Schizophrenia; conditional reflex studies (17061ms)\nWhat is schizophrenia?\tDrug Maintenance in Schizophrenia (Clinical Insights)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Drug Maintenance in Schizophrenia (Clinical Insights), Edition Of, Drug Maintenance in Schizophrenia) -> Drug Maintenance in Schizophrenia (Clinical Insights) (16868ms)\nWhat is schizophrenia?\tHow to live with schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (How to live with schizophrenia, Edition Of, How to live with schizophrenia) -> How to live with schizophrenia (16475ms)\nWhat is schizophrenia?\tSchizophrenia: a review of Schizophrenia services in Scotland.\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: a review of Schizophrenia services in Scotland., Edition Of, Schizophrenia) -> Schizophrenia: a review of Schizophrenia services in Scotland. (16868ms)\nWhat is schizophrenia?\tThe Reality of Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (The Reality of Schizophrenia, Edition Of, The Reality of Schizophrenia) -> The Reality of Schizophrenia (16435ms)\nWhat is schizophrenia?\tSchizophrenia Simplified: A Field Guide to Schizophrenia for Frontline Workers, Families, and Professionals\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia Simplified, Editions, Schizophrenia Simplified: A Field Guide to Schizophrenia for Frontline Workers, Families, and Professionals) -> Schizophrenia Simplified: A Field Guide to Schizophrenia for Frontline Workers, Families, and Professionals (11807ms)\nWhat is schizophrenia?\tFrontal lobes and schizophrenia: second lobotomy project of Boston Psychopathic Hospital.\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Frontal lobes and schizophrenia, Editions, Frontal lobes and schizophrenia: second lobotomy project of Boston Psychopathic Hospital.) -> Frontal lobes and schizophrenia: second lobotomy project of Boston Psychopathic Hospital. (11603ms)\nWhat is schizophrenia?\tSchizophrenia : a philosophical reflection on Lacan's structuralist interpretation\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia : a philosophical reflection on Lacan's structuralist interpretation) -> Schizophrenia : a philosophical reflection on Lacan's structuralist interpretation (16712ms)\nWhat is schizophrenia?\tSchizophrenia: A Fresh Approach\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: A Fresh Approach, Edition Of, Schizophrenia) -> Schizophrenia: A Fresh Approach (17133ms)\nWhat is schizophrenia?\tSchizophrenia as a life style\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia as a life style, Edition Of, Schizophrenia as a life style) -> Schizophrenia as a life style (11652ms)\nWhat is schizophrenia?\tWorking with schizophrenia: a needs based approach\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Working with schizophrenia, Editions, Working with schizophrenia: a needs based approach) -> Working with schizophrenia: a needs based approach (16829ms)\nWhat is schizophrenia?\tOrthomolecular psychiatry: treatment of schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Orthomolecular psychiatry: treatment of schizophrenia, Edition Of, Orthomolecular psychiatry: treatment of schizophrenia) -> Orthomolecular psychiatry: treatment of schizophrenia (12678ms)\nWhat is schizophrenia?\tSchizophrenia and human value : chronic schizophrenia, science, and society\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia and Human Value, Editions, Schizophrenia and human value : chronic schizophrenia, science, and society) -> Schizophrenia and human value : chronic schizophrenia, science, and society (16475ms)\nWhat is schizophrenia?\tSchizophrenia: New Medical Therapies\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: New Medical Therapies, Edition Of, Schizophrenia) -> Schizophrenia: New Medical Therapies (16829ms)\nWhat is schizophrenia?\tLanguage and schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Language and schizophrenia, Editions, Language and schizophrenia) -> Language and schizophrenia (16789ms)\nWhat is schizophrenia?\tSchizophrenia (Popular Medical Booklets)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia (Popular Medical Booklets)) -> Schizophrenia (Popular Medical Booklets) (17061ms)\nWhat is schizophrenia?\tAnti-Oedipus\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Anti-Oedipus: capitalism and schizophrenia, Edition Of, Anti-Oedipus) -> Anti-Oedipus (9697ms)\nWhat is schizophrenia?\tFamilies coping with schizophrenia: a practitioner's guide to family groups\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Families coping with schizophrenia: a practitioner's guide to family groups, Edition Of, Families coping with schizophrenia) -> Families coping with schizophrenia: a practitioner's guide to family groups (16750ms)\nWhat is schizophrenia?\tDrug Therapy and Schizophrenia (Psychiatric Disorders: Drugs & Psychology for the Mind and Body)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Drug Therapy and Schizophrenia, Editions, Drug Therapy and Schizophrenia (Psychiatric Disorders: Drugs & Psychology for the Mind and Body)) -> Drug Therapy and Schizophrenia (Psychiatric Disorders: Drugs & Psychology for the Mind and Body) (16435ms)\nWhat is schizophrenia?\tSchizophrenia: Straight Talk for Family and Friends\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: Straight Talk for Family and Friends) -> Schizophrenia: Straight Talk for Family and Friends (16829ms)\nWhat is schizophrenia?\tSchizophrenia: Your Questions Answered\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: Your Questions Answered, Edition Of, Schizophrenia) -> Schizophrenia: Your Questions Answered (11854ms)\nWhat is schizophrenia?\tCommon questions on schizophrenia and their answers\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Common questions on schizophrenia and their answers, Edition Of, Common questions on schizophrenia and their answers) -> Common questions on schizophrenia and their answers (11854ms)\nWhat is schizophrenia?\tSchizophrenia (Roseneath Popular Medical Booklets)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia (Roseneath Popular Medical Booklets), Edition Of, Schizophrenia) -> Schizophrenia (Roseneath Popular Medical Booklets) (16254ms)\nWhat is schizophrenia?\tSchizophrenia: straight talk for family and friends\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: straight talk for family and friends, Edition Of, Schizophrenia) -> Schizophrenia: straight talk for family and friends (17062ms)\nWhat is schizophrenia?\tPsychodiagnosis in schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Psychodiagnosis in schizophrenia, Edition Of, Psychodiagnosis in schizophrenia) -> Psychodiagnosis in schizophrenia (16111ms)\nWhat is schizophrenia?\tInterpretation of Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Interpretation of schizophrenia, Edition Of, Interpretation of Schizophrenia) -> Interpretation of Schizophrenia (16475ms)\nWhat is schizophrenia?\tSchizophrenia: a scientific delusion?\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: a scientific delusion?) -> Schizophrenia: a scientific delusion? (16868ms)\nWhat is schizophrenia?\tAdaptation in schizophrenia: the theory of segmental set\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Adaptation in schizophrenia, Editions, Adaptation in schizophrenia: the theory of segmental set) -> Adaptation in schizophrenia: the theory of segmental set (12273ms)\nWhat is schizophrenia?\tSchizophrenia: Where Families Fear to Tread from Despair to Hope.\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: Where Families Fear to Tread from Despair to Hope., Edition Of, Schizophrenia) -> Schizophrenia: Where Families Fear to Tread from Despair to Hope. (12216ms)\nWhat is schizophrenia?\tSchizophrenia as a human process\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia as a human process, Edition Of, Schizophrenia as a human process) -> Schizophrenia as a human process (12319ms)\nWhat is schizophrenia?\tGeneralizing ability in schizophrenia : an inquiry into the disorders of problem thinking in schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Generalizing ability in schizophrenia : an inquiry into the disorders of problem thinking in schizophrenia, Edition Of, Generalizing ability in schizophrenia) -> Generalizing ability in schizophrenia : an inquiry into the disorders of problem thinking in schizophrenia (11702ms)\nWhat is schizophrenia?\tWelcome, Silence\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Welcome, Silence: My Triumph Over Schizophrenia, Edition Of, Welcome, Silence) -> Welcome, Silence (16789ms)\nWhat is schizophrenia?\tTowards a sociology of schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Towards a sociology of schizophrenia : humanistic reflections, Edition Of, Towards a sociology of schizophrenia) -> Towards a sociology of schizophrenia (12319ms)\nWhat is schizophrenia?\tMental Illness and Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Mental Illness and Schizophrenia, Edition Of, Mental Illness and Schizophrenia) -> Mental Illness and Schizophrenia (17133ms)\nWhat is schizophrenia?\tStages of Schizophrenia, ( Part One) The\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Stages of Schizophrenia, ( Part One) The, Edition Of, Stages of Schizophrenia, ( Part One) The) -> Stages of Schizophrenia, ( Part One) The (12678ms)\nWhat is schizophrenia?\tSchizophrenia: Medical & Psychological Subject Index With Bibliography\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: Medical & Psychological Subject Index With Bibliography, Edition Of, Schizophrenia) -> Schizophrenia: Medical & Psychological Subject Index With Bibliography (16868ms)\nWhat is schizophrenia?\tSchizophrenia : an introduction to research and theory\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia : an introduction to research and theory) -> Schizophrenia : an introduction to research and theory (17061ms)\nWhat is schizophrenia?\tConquering schizophrenia : a father, his son, and a medical breakthrough\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Conquering schizophrenia : a father, his son, and a medical breakthrough, Edition Of, Conquering Schizophrenia) -> Conquering schizophrenia : a father, his son, and a medical breakthrough (12678ms)\nWhat is schizophrenia?\tA Thousand Plateaus\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (A thousand plateaus : capitalism and schizophrenia, Edition Of, A Thousand Plateaus) -> A Thousand Plateaus (16435ms)\nWhat is schizophrenia?\tA psychotherapy of schizophrenia: direct analysis\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (A psychotherapy of schizophrenia: direct analysis, Edition Of, A psychotherapy of schizophrenia: direct analysis) -> A psychotherapy of schizophrenia: direct analysis (16514ms)\nWhat is schizophrenia?\tSchizophrenia: the sacred symbol of psychiatry\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: the sacred symbol of psychiatry, Edition Of, Schizophrenia) -> Schizophrenia: the sacred symbol of psychiatry (16712ms)\nWhat is schizophrenia?\tSchizophrenia: Positive and Negative Symptoms and Syndromes (Modern Problems of Pharmacopsychiatry)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: Positive and Negative Symptoms and Syndromes (Modern Problems of Pharmacopsychiatry)) -> Schizophrenia: Positive and Negative Symptoms and Syndromes (Modern Problems of Pharmacopsychiatry) (16111ms)\nWhat is schizophrenia?\tSchizophrenia: a review of schizophrenia services in Scotland\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: a review of schizophrenia services in Scotland) -> Schizophrenia: a review of schizophrenia services in Scotland (16514ms)\nWhat is schizophrenia?\tSchizophrenia and the family\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia and the family, Edition Of, Schizophrenia and the family) -> Schizophrenia and the family (12273ms)\nWhat is schizophrenia?\tCognitive remediation therapy for schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Cognitive remediation therapy for schizophrenia: an introduction, Edition Of, Cognitive remediation therapy for schizophrenia) -> Cognitive remediation therapy for schizophrenia (16513ms)\nWhat is schizophrenia?\tSchizophrenia: Innovations in Diagnosis and Treatment\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: Innovations in Diagnosis and Treatment) -> Schizophrenia: Innovations in Diagnosis and Treatment (12273ms)\nWhat is schizophrenia?\tSchizophrenia: A Scientific Delusion?\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: A Scientific Delusion?, Edition Of, Schizophrenia) -> Schizophrenia: A Scientific Delusion? (16712ms)\nWhat is schizophrenia?\tA tragedy of schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (A tragedy of schizophrenia: the wife's tale, Edition Of, A tragedy of schizophrenia) -> A tragedy of schizophrenia (16111ms)\nWhat is schizophrenia?\tParanoid Schizophrenia: A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Paranoid Schizophrenia, Editions, Paranoid Schizophrenia: A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References) -> Paranoid Schizophrenia: A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References (17133ms)\nWhat is schizophrenia?\tRecovery from Schizophrenia: Psychiatry and Political Economy\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Recovery from Schizophrenia: Psychiatry and Political Economy, Edition Of, Recovery from Schizophrenia) -> Recovery from Schizophrenia: Psychiatry and Political Economy (17133ms)\nWhat is schizophrenia?\tSchizophrenia: a guide for sufferers and their families\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: a guide for sufferers and their families, Edition Of, Schizophrenia) -> Schizophrenia: a guide for sufferers and their families (16475ms)\nWhat is schizophrenia?\tCultural schizophrenia : Islamic societies confronting the west\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Cultural schizophrenia, Editions, Cultural schizophrenia : Islamic societies confronting the west) -> Cultural schizophrenia : Islamic societies confronting the west (16789ms)\nWhat is schizophrenia?\tSchizophrenia: From Mind to Molecule (American Psychopathological Association)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: From Mind to Molecule (American Psychopathological Association)) -> Schizophrenia: From Mind to Molecule (American Psychopathological Association) (16789ms)\nWhat is schizophrenia?\tSchizophrenia: The Major Issues\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: The Major Issues, Edition Of, Schizophrenia) -> Schizophrenia: The Major Issues (17062ms)\nWhat is schizophrenia?\tSchizophrenia: Voices of an Illness\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: Voices of an Illness) -> Schizophrenia: Voices of an Illness (16750ms)\nWhat is schizophrenia?\tSchizophrenia Revealed: From Neurons to Social Interactions\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia Revealed, Editions, Schizophrenia Revealed: From Neurons to Social Interactions) -> Schizophrenia Revealed: From Neurons to Social Interactions (16254ms)\nWhat is schizophrenia?\tRecent research on schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Recent research on schizophrenia, Edition Of, Recent research on schizophrenia) -> Recent research on schizophrenia (17133ms)\nWhat is schizophrenia?\tSchizophrenia (Current concepts)\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia (Current concepts)) -> Schizophrenia (Current concepts) (16513ms)\nWhat is schizophrenia?\tSchizophrenia, a biopsychological perspective\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia, a biopsychological perspective, Edition Of, Schizophrenia, a biopsychological perspective) -> Schizophrenia, a biopsychological perspective (16750ms)\nWhat is schizophrenia?\tSchizophrenia, a source of social insight\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia, a source of social insight, Edition Of, Schizophrenia, a source of social insight) -> Schizophrenia, a source of social insight (12565ms)\nWhat is schizophrenia?\tRecovery from Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Recovery from Schizophrenia: Psychiatry and Political Economy, Edition Of, Recovery from Schizophrenia) -> Recovery from Schizophrenia (16111ms)\nWhat is schizophrenia?\tManaging Negative Symptoms of Schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Managing Negative Symptoms of Schizophrenia, Edition Of, Managing Negative Symptoms of Schizophrenia) -> Managing Negative Symptoms of Schizophrenia (10474ms)\nWhat is schizophrenia?\tSchizophrenia : selected papers\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia : selected papers) -> Schizophrenia : selected papers (17133ms)\nWhat is schizophrenia?\tMagic and schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Magic and schizophrenia, Edition Of, Magic and schizophrenia) -> Magic and schizophrenia (16673ms)\nWhat is schizophrenia?\tDepression and schizophrenia: a contribution on their chemical pathologies\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Depression and schizophrenia: a contribution on their chemical pathologies, Edition Of, Depression and schizophrenia) -> Depression and schizophrenia: a contribution on their chemical pathologies (16829ms)\nWhat is schizophrenia?\tPerceptual constancy in schizophrenia\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Perceptual constancy in schizophrenia, Edition Of, Perceptual constancy in schizophrenia) -> Perceptual constancy in schizophrenia (11807ms)\nWhat is schizophrenia?\tInterpretation of schizophrenia.\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Interpretation of Schizophrenia, Editions, Interpretation of schizophrenia.) -> Interpretation of schizophrenia. (16435ms)\nWhat is schizophrenia?\tSchizophrenia: pharmacotherapy and psychotherapy\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: pharmacotherapy and psychotherapy, Edition Of, Schizophrenia) -> Schizophrenia: pharmacotherapy and psychotherapy (12216ms)\nWhat is schizophrenia?\tCatatonic Schizophrenia: A Medical Dictionary, Bibliography, And Annotated Research Guide To Internet References\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Catatonic Schizophrenia, Editions, Catatonic Schizophrenia: A Medical Dictionary, Bibliography, And Annotated Research Guide To Internet References) -> Catatonic Schizophrenia: A Medical Dictionary, Bibliography, And Annotated Research Guide To Internet References (11946ms)\nWhat is schizophrenia?\tSchizophrenia: a fresh approach\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: a fresh approach) -> Schizophrenia: a fresh approach (16750ms)\nWhat is schizophrenia?\tLanguage behavior and communication; an introduction\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Language behavior and communication; an introduction, Edition Of, Language behavior in schizophrenia) -> Language behavior and communication; an introduction (11455ms)\nWhat is schizophrenia?\tSchizophrenia: a psychopharmacological approach\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: a psychopharmacological approach, Edition Of, Schizophrenia) -> Schizophrenia: a psychopharmacological approach (16673ms)\nWhat is schizophrenia?\tSchizophrenia: its causes, symptoms and treatment\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: its causes, symptoms and treatment, Edition Of, Schizophrenia) -> Schizophrenia: its causes, symptoms and treatment (12319ms)\nWhat is schizophrenia?\tIntellectual schizophrenia: culture, crisis, and education.\t-12.941218410829544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Intellectual schizophrenia: culture, crisis, and education., Edition Of, Intellectual schizophrenia) -> Intellectual schizophrenia: culture, crisis, and education. (16868ms)\nWhat is schizophrenia?\tBipolar illness\t-12.968241503800426\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Bipolar illness, is, schizophrenia) -> Bipolar illness (6129ms)\nWhat is schizophrenia?\tinappropriate responses\t-12.983186923329628\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (inappropriate responses, is, schizophrenia) -> inappropriate responses (6149ms)\nWhat is schizophrenia?\tprimary psychiatric diagnoses\t-13.061183316054663\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (primary psychiatric diagnoses, were, schizophrenia) -> primary psychiatric diagnoses (6149ms)\nWhat is schizophrenia?\tmental illnesses\t-13.072918275771709\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (mental illnesses, is, schizophrenia) -> mental illnesses (6149ms)\nWhat is schizophrenia?\tany comments\t-13.12384457758715\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (any comments, is, Schizophrenia) -> any comments (6149ms)\nWhat is schizophrenia?\tToxo\t-13.166932084627495\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Toxo, is, schizophrenia) -> Toxo (6149ms)\nWhat is schizophrenia?\t1 Yes No\t-13.210739980153342\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (1 Yes No, is, schizophrenia) -> 1 Yes No (6149ms)\nWhat is schizophrenia?\tDepression\t-13.249991429533829\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Depression, is an emotion associated with, Schizophrenia) -> Depression (6149ms)\nWhat is schizophrenia?\tpredominant concern\t-13.258172425124425\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (predominant concern, are, schizophrenia) -> predominant concern (6149ms)\nWhat is schizophrenia?\t60 Minutes and PBS Frontline\t-13.303419709504595\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (60 Minutes and PBS Frontline, is, schizophrenia) -> 60 Minutes and PBS Frontline (7792ms)\nWhat is schizophrenia?\ttri-personal\t-13.384901772119544\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (tri-personal, is, schizophrenia) -> tri-personal (7792ms)\nWhat is schizophrenia?\tno organic lesion\t-13.405277176546956\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (no organic lesion, are, schizophrenia) -> no organic lesion (7792ms)\nWhat is schizophrenia?\tFlutterrage\t-13.48072657347619\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Flutterrage, is, schizophrenia) -> Flutterrage (7792ms)\nWhat is schizophrenia?\tan illness\t-13.502588306489908\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, be, $x) -> (Schizophrenia, is, an illness) -> an illness (7793ms)\nWhat is schizophrenia?\ta Disease\t-13.530416187912559\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, be, $x) -> (Schizophrenia, is, a Disease) -> a Disease (7792ms)\nWhat is schizophrenia?\tThe diagnosis and stigma of schizophrenia\t-13.570178469097877\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (The diagnosis and stigma of schizophrenia, Also known as, Schizophrenia) -> The diagnosis and stigma of schizophrenia (4070ms)\nWhat is schizophrenia?\tviolent ?\t-13.573793625839272\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, do, $x) -> (schizophrenia, do become, violent ?) -> violent ? (7793ms)\nWhat is schizophrenia?\ta psychosis\t-13.588593269551534\tWhat is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, be, $x) -> (Schizophrenia, is, a psychosis) -> a psychosis (7793ms)\nWhat is schizophrenia?\tpregnancy\t-13.738276980298561\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (pregnancy, is a well-known risk factor for, schizophrenia) -> pregnancy (2840ms)\nWhat is schizophrenia?\tautism\t-13.75308959767972\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (autism, was known as, childhood schizophrenia) -> autism (2840ms)\nWhat is schizophrenia?\tthe form\t-13.85031181990042\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (the form, is known as, catatonic schizophrenia) -> the form (2851ms)\nWhat is schizophrenia?\tthe behavior\t-14.051317662106586\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (the behavior, was generally known as, childhood schizophrenia) -> the behavior (2851ms)\nWhat is schizophrenia?\tvery\t-14.173884310385791\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (very, little was known about, schizophrenia) -> very (2851ms)\nWhat is schizophrenia?\tspeed\t-14.212461355391245\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (speed, are known problems in, schizophrenia) -> speed (2851ms)\nWhat is schizophrenia?\tfive\t-14.29154714552315\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (five, are known to have had, schizophrenia) -> five (2851ms)\nWhat is schizophrenia?\tShea\t-14.696635253664457\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Shea, knows a man with, schizophrenia) -> Shea (4084ms)\nWhat is schizophrenia?\tPsssssh\t-14.75578079145505\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Psssssh, know about, schizophrenia) -> Psssssh (4083ms)\nWhat is schizophrenia?\tNobody\t-14.944114919194188\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Nobody, knows exact causes of, schizophrenia) -> Nobody (4096ms)\nWhat is schizophrenia?\ta disease\t-14.972586594181628\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a disease, known as, schizophrenia) -> a disease (4096ms)\nWhat is schizophrenia?\ta gene\t-14.972586594181628\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a gene, known to, increase risk for schizophrenia) -> a gene (4097ms)\nWhat is schizophrenia?\tdementia praecox\t-15.287042878380277\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (dementia praecox, known as, schizophrenia) -> dementia praecox (4097ms)\nWhat is schizophrenia?\tThe woman?s family\t-15.884801675347042\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (The woman?s family, knew nothing of, schizophrenia) -> The woman?s family (4110ms)\nWhat is schizophrenia?\tThe general public\t-15.895412070267085\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (The general public, needs to know more about, schizophrenia) -> The general public (4123ms)\nWhat is schizophrenia?\ta mental ailment\t-16.037937782985104\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a mental ailment, known as, paranoid schizophrenia) -> a mental ailment (4122ms)\nWhat is schizophrenia?\ta mental illness\t-16.072813726039232\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a mental illness, known as, paranoid schizophrenia) -> a mental illness (4123ms)\nWhat is schizophrenia?\ta mental condition\t-16.072813726039232\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a mental condition, known as, schizophrenia) -> a mental condition (4123ms)\nWhat is schizophrenia?\tthe mental disorder\t-17.409216693275244\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the mental disorder, known as, schizophrenia) -> the mental disorder (4136ms)\nWhat is schizophrenia?\tthe mental illness\t-17.42149174288117\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the mental illness, known as, Schizophrenia) -> the mental illness (4136ms)\nWhat is schizophrenia?\tthe brain disorder\t-17.42149174288117\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the brain disorder, known as, Schizophrenia) -> the brain disorder (4136ms)\nWhat is schizophrenia?\tthe crippling mental disorder\t-17.436263676927364\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the crippling mental disorder, known as, schizophrenia) -> the crippling mental disorder (4136ms)\nWhat is schizophrenia?\tsymptoms\t-17.53576802982341\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (symptoms, known as, schizophrenia) -> symptoms (4136ms)\nWhat is schizophrenia?\tthe condition\t-17.67758660880718\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the condition, known as, schizophrenia) -> the condition (4136ms)\nWhat is schizophrenia?\tthe disorder\t-17.712462551861307\tWhat is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the disorder, known as, schizophrenia) -> the disorder (4151ms)\nWhat is the length of the Big Dig?\t139.333\t0.17617189013915646\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 139.333) -> 139.333 (467ms)\nWhat is the length of the Big Dig?\t501.907\t0.17617189013915646\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 501.907) -> 501.907 (466ms)\nWhat is the length of the Big Dig?\t88.946\t0.17617189013915646\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 88.946) -> 88.946 (467ms)\nWhat is the length of the Big Dig?\t177.44\t0.17617189013915646\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 177.44) -> 177.44 (466ms)\nWhat is the length of the Big Dig?\t129.96\t-0.2636501994473963\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Length, 129.96) -> 129.96 (577ms)\nWhat is the length of the Big Dig?\t260401\t-1.3240187573543514\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (Traffic before the \"Big Dig\", Length, 260401) -> 260401 (577ms)\nWhat is the length of the Big Dig?\t90.973\t-1.9431041831761093\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 90.973) -> 90.973 (741ms)\nWhat is the length of the Big Dig?\t261.2\t-1.9431041831761093\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 261.2) -> 261.2 (741ms)\nWhat is the length of the Big Dig?\t365.72\t-1.9431041831761093\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 365.72) -> 365.72 (589ms)\nWhat is the length of the Big Dig?\t541.92\t-1.9431041831761093\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 541.92) -> 541.92 (741ms)\nWhat is the length of the Big Dig?\t160.84\t-1.9431041831761093\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 160.84) -> 160.84 (741ms)\nWhat is the length of the Big Dig?\t261.0\t-2.1163674305889937\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Dig This Big Crux, Length, 261.0) -> 261.0 (2762ms)\nWhat is the length of the Big Dig?\t248.0\t-2.4195781135615415\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (BigDug, Length, 248.0) -> 248.0 (2761ms)\nWhat is the length of the Big Dig?\t198.0\t-2.5062097372679837\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (BigDug (Ft. Verbezerker), Length, 198.0) -> 198.0 (2762ms)\nWhat is the length of the Big Dig?\tThe Dig\t-2.9937080884520553\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The Dig, is, the Big Dig) -> The Dig (3453ms)\nWhat is the length of the Big Dig?\tTeleAtlas\t-3.257855137558815\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (TeleAtlas, is mapping, the Big Dig) -> TeleAtlas (3453ms)\nWhat is the length of the Big Dig?\teven worse\t-3.36125928935566\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (even worse, is, the Big Dig) -> even worse (3453ms)\nWhat is the length of the Big Dig?\tHopalong Cassidy\t-3.4739314664616265\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Hopalong Cassidy, is long gone to, the big dig) -> Hopalong Cassidy (3453ms)\nWhat is the length of the Big Dig?\tcost overruns\t-3.5404080227769956\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (cost overruns, were to, the Big Dig) -> cost overruns (3453ms)\nWhat is the length of the Big Dig?\ta challenge\t-3.7697087568408696\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (a challenge, is bigger than, the Big Dig) -> a challenge (3453ms)\nWhat is the length of the Big Dig?\tprivate quarters\t-3.918327695247934\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (private quarters, are all part of, the Big Dig) -> private quarters (3467ms)\nWhat is the length of the Big Dig?\taforementioned money-sucking vaccum\t-3.960127889091602\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (aforementioned money-sucking vaccum, is, the Big Dig) -> aforementioned money-sucking vaccum (3467ms)\nWhat is the length of the Big Dig?\tRomneycare ?\t-4.037488167474251\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Romneycare ?, has thus far been, the Big Dig) -> Romneycare ? (3467ms)\nWhat is the length of the Big Dig?\tmedication history\t-4.043195490151751\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (medication history, is like, the big dig) -> medication history (3467ms)\nWhat is the length of the Big Dig?\tso many other ways\t-4.052961366652694\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (so many other ways, was, the Big Dig really worth) -> so many other ways (3467ms)\nWhat is the length of the Big Dig?\tConcerts\t-4.152293368183875\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Concerts, were held in, the big dug-outs) -> Concerts (3467ms)\nWhat is the length of the Big Dig?\tthe MBTA\t-4.154785666609795\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the MBTA, is paying the debt on, the Big Dig) -> the MBTA (3481ms)\nWhat is the length of the Big Dig?\tBoston\t-4.156297962296316\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Boston, is called the 'crown jewel of, the Big Dig) -> Boston (3481ms)\nWhat is the length of the Big Dig?\ta record\t-4.1695417264593075\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (a record, is beholden to, the Big Dig contractors) -> a record (3482ms)\nWhat is the length of the Big Dig?\ta discussion\t-4.240402750862726\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (a discussion, has been learned on, the Big Dig) -> a discussion (3482ms)\nWhat is the length of the Big Dig?\tthe 50 attendees\t-4.25453939449554\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the 50 attendees, were, the Big Dig debt) -> the 50 attendees (3482ms)\nWhat is the length of the Big Dig?\tSunday\t-4.2640115406411745\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Sunday, was, the Big Dig day) -> Sunday (3482ms)\nWhat is the length of the Big Dig?\tcontaminated soil\t-4.281243496473882\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (contaminated soil, was excavated during, the Big Dig) -> contaminated soil (3495ms)\nWhat is the length of the Big Dig?\tA skyscraper\t-4.325686508334909\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (A skyscraper, was being built very near, the Big Dig work) -> A skyscraper (3495ms)\nWhat is the length of the Big Dig?\tDiMasi\t-4.337181089656049\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (DiMasi, has been publicly silent about, the Big Dig contractor) -> DiMasi (3495ms)\nWhat is the length of the Big Dig?\tDarwin Core providers\t-4.341520617632073\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Darwin Core providers, can be found at, the Big Dig web site) -> Darwin Core providers (3495ms)\nWhat is the length of the Big Dig?\tthe ?little dig?\t-4.470118390248674\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the ?little dig?, will be removed during, the ?big dig) -> the ?little dig? (3495ms)\nWhat is the length of the Big Dig?\tSunday morning\t-4.508545378130529\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Sunday morning, was, the big dig-out) -> Sunday morning (3495ms)\nWhat is the length of the Big Dig?\tdrilled shafts\t-4.541197671343152\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (drilled shafts, were installed on, the Big Dig) -> drilled shafts (3509ms)\nWhat is the length of the Big Dig?\tan infrastructure project\t-4.638540233371394\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (an infrastructure project, was made on, the Big Dig) -> an infrastructure project (3509ms)\nWhat is the length of the Big Dig?\tunderground roadways\t-4.66528237171012\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (underground roadways, was know as, the ?Big Dig?) -> underground roadways (3509ms)\nWhat is the length of the Big Dig?\tDinosaur Hall\t-4.709620083421848\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Dinosaur Hall, is, The Big Dig) -> Dinosaur Hall (3509ms)\nWhat is the length of the Big Dig?\tnearly $ 15 billion\t-4.751702556581578\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (nearly $ 15 billion, can be spent on, the Big Dig) -> nearly $ 15 billion (3509ms)\nWhat is the length of the Big Dig?\ta year 2006\t-4.775430573324992\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (a year 2006, was for, the other big dig) -> a year 2006 (3509ms)\nWhat is the length of the Big Dig?\tGlobal 2000 companies\t-4.815108399622073\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Global 2000 companies, is like, the Big Dig) -> Global 2000 companies (3524ms)\nWhat is the length of the Big Dig?\tMilford\t-4.955399871817541\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Milford, was known as, the ?Big Dig) -> Milford (3524ms)\nWhat is the length of the Big Dig?\tthe Basin\t-5.058574509401918\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the Basin, have been revealed by, the Big Dig) -> the Basin (3524ms)\nWhat is the length of the Big Dig?\tThe bridge\t-5.215149034838861\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The bridge, is part of, the Big Dig) -> The bridge (3524ms)\nWhat is the length of the Big Dig?\tThe subject\t-5.490423050852372\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The subject, is, the Big Dig) -> The subject (3524ms)\nWhat is the length of the Big Dig?\tthe MBTA?s debt\t-5.58055033932148\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (the MBTA?s debt, is, court-mandated Big Dig mitigations) -> the MBTA?s debt (4296ms)\nWhat is the length of the Big Dig?\tthe projected damage\t-5.639092328374964\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the projected damage, is, the Big Dig) -> the projected damage (3537ms)\nWhat is the length of the Big Dig?\tMcNichol\t-5.6444488031844555\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (McNichol, was part of, Boston ?s Big Dig Project) -> McNichol (4296ms)\nWhat is the length of the Big Dig?\tmoney\t-5.7586861917551335\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (money, was diverted to, the Big Dig) -> money (3537ms)\nWhat is the length of the Big Dig?\tThe Bonehunters Quarry\t-5.83588952461875\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (The Bonehunters Quarry, is, a big archaeological dig site) -> The Bonehunters Quarry (4313ms)\nWhat is the length of the Big Dig?\ttwo federal agencies\t-5.8763661831997975\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (two federal agencies, are investigating, Big Dig cost overruns) -> two federal agencies (4313ms)\nWhat is the length of the Big Dig?\t? Natsios\t-5.891581843481013\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (? Natsios, was the manager of, Boston ?s ?Big Dig) -> ? Natsios (4313ms)\nWhat is the length of the Big Dig?\tthe healthcare reform law\t-5.900604308481371\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the healthcare reform law, is quickly becoming, the Big Dig) -> the healthcare reform law (3537ms)\nWhat is the length of the Big Dig?\tThe traffic\t-5.903783747617219\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The traffic, is just as bad as before, the Big Dig) -> The traffic (3537ms)\nWhat is the length of the Big Dig?\tOK Park face-lift\t-6.122405254100672\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (OK Park face-lift, is two years past, deadline Big Dig) -> OK Park face-lift (4389ms)\nWhat is the length of the Big Dig?\tThe toll increases\t-6.129625990763684\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The toll increases, are needed to pay for, the Big Dig) -> The toll increases (3537ms)\nWhat is the length of the Big Dig?\tthe most\t-6.187820143592371\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the most, are stuck with, the Big Dig debt) -> the most (3552ms)\nWhat is the length of the Big Dig?\taction\t-6.230952735454508\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (action, is, the Big Dig) -> action (3552ms)\nWhat is the length of the Big Dig?\tLawsuits\t-6.253132276224596\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (Lawsuits, are pending against, other Big Dig contractors) -> Lawsuits (4626ms)\nWhat is the length of the Big Dig?\ta big milestone\t-6.2562867542563785\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (a big milestone, is coming up for, Boston ?s Big Dig project) -> a big milestone (4626ms)\nWhat is the length of the Big Dig?\tthe highway\t-6.262028234500831\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the highway, was put underground during, the Big Dig) -> the highway (3552ms)\nWhat is the length of the Big Dig?\ta hole\t-6.56822547731455\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (a hole, is, too big to forever be digging himself out of) -> a hole (4698ms)\nWhat is the length of the Big Dig?\tSecond\t-6.607027326445852\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (Second, was, that big dig operation) -> Second (4698ms)\nWhat is the length of the Big Dig?\tThe festival\t-7.276755945589088\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (The festival, is, a pretty big shin-dig) -> The festival (4765ms)\nWhat is the length of the Big Dig?\tthe house\t-7.822190979354929\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (the house, was built from, Big Dig materials) -> the house (4765ms)\nWhat is the length of the Big Dig?\tdecades\t-8.323189770267268\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (decades, is potentially, another Big Dig) -> decades (4829ms)\nWhat is the length of the Big Dig?\ttraffic\t-8.786246605531218\tWhat is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (traffic, has been zipping through, Boston ?s Big Dig tunnels) -> traffic (4829ms)\nWhat is the length of the Big Dig?\tconstruction ?debris ?\t-9.595227151817152\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the big dig see ? -> $x: (the big dig, see, $x) -> (the The Big Dig, saw the pile of, construction ?debris ?) -> construction ?debris ? (4829ms)\nWhat is the length of the Big Dig?\tthe Big Dig page\t-9.638818599962521\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the big dig see ? -> $x: (the big dig, see, $x) -> (the Big Dig, see, the Big Dig page) -> the Big Dig page (4829ms)\nWhat is the length of the Big Dig?\tmodern America\t-10.781938062029269\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, modern America) -> modern America (5989ms)\nWhat is the length of the Big Dig?\tfull throttle\t-10.940376024765907\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is at, full throttle) -> full throttle (5990ms)\nWhat is the length of the Big Dig?\tExhibit A\t-11.210579386188366\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, Exhibit A) -> Exhibit A (5989ms)\nWhat is the length of the Big Dig?\tMassachusetts\t-11.241385258168773\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, Massachusetts) -> Massachusetts (5989ms)\nWhat is the length of the Big Dig?\ta scandal\t-11.251264463631301\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, may always be, a scandal) -> a scandal (5990ms)\nWhat is the length of the Big Dig?\ta highway\t-11.265591388754062\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, a highway) -> a highway (5990ms)\nWhat is the length of the Big Dig?\tMeg\t-11.307556906037314\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, Meg) -> Meg (5989ms)\nWhat is the length of the Big Dig?\ta less popular choice\t-11.357296355723928\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, would be, a less popular choice) -> a less popular choice (5989ms)\nWhat is the length of the Big Dig?\ta maze\t-11.386473130857443\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig interchange, is, a maze) -> a maze (6066ms)\nWhat is the length of the Big Dig?\ta prison\t-11.4154130923173\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, a prison) -> a prison (6066ms)\nWhat is the length of the Big Dig?\ta decade\t-11.433279267909148\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was known about, a decade) -> a decade (6066ms)\nWhat is the length of the Big Dig?\ta couple\t-11.449686216013369\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was supposed to take, a couple) -> a couple (6964ms)\nWhat is the length of the Big Dig?\ta major public works projects\t-11.466936892421868\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, a major public works projects) -> a major public works projects (7035ms)\nWhat is the length of the Big Dig?\tBoston real estate\t-11.4794333991866\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is going to make, Boston real estate) -> Boston real estate (7035ms)\nWhat is the length of the Big Dig?\ta good first step\t-11.506489502342271\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, a good first step) -> a good first step (7035ms)\nWhat is the length of the Big Dig?\ta Mitt Romney big government project\t-11.528830731033052\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was, a Mitt Romney big government project) -> a Mitt Romney big government project (7035ms)\nWhat is the length of the Big Dig?\ta nightmare\t-11.532365784320996\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig interchange, is, a nightmare) -> a nightmare (7035ms)\nWhat is the length of the Big Dig?\tless enchanting\t-11.579731875409108\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is somewhat, less enchanting) -> less enchanting (7035ms)\nWhat is the length of the Big Dig?\tContinue reading\t-11.590626496558214\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is ?, Continue reading) -> Continue reading (7035ms)\nWhat is the length of the Big Dig?\tChannel Four\t-11.592634023977755\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was supported by, Channel Four) -> Channel Four (7035ms)\nWhat is the length of the Big Dig?\tCapital Growth\t-11.611432057437263\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is being organised by, Capital Growth) -> Capital Growth (7283ms)\nWhat is the length of the Big Dig?\tthe MBTA books\t-11.616366291489808\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig debt, should be on, the MBTA books) -> the MBTA books (7283ms)\nWhat is the length of the Big Dig?\ta tight , self-contained stand-alone mystery\t-11.6622944490146\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, a tight , self-contained stand-alone mystery) -> a tight , self-contained stand-alone mystery (7284ms)\nWhat is the length of the Big Dig?\tseven years\t-11.677976902962566\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, be completed in, seven years) -> seven years (7283ms)\nWhat is the length of the Big Dig?\ta total flop\t-11.678315372805562\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is, a total flop) -> a total flop (7283ms)\nWhat is the length of the Big Dig?\ta Tip O'Neil/Ted Kennedy project\t-11.679978387845713\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was actually, a Tip O'Neil/Ted Kennedy project) -> a Tip O'Neil/Ted Kennedy project (7283ms)\nWhat is the length of the Big Dig?\thigh school seniors\t-11.684120635824206\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig Scholarship, is available to, high school seniors) -> high school seniors (7315ms)\nWhat is the length of the Big Dig?\tMassDOT officials\t-11.701249292743272\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig tunnels, is being touted by, MassDOT officials) -> MassDOT officials (7315ms)\nWhat is the length of the Big Dig?\tRoute 93\t-11.729017637497071\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was improving, Route 93) -> Route 93 (7314ms)\nWhat is the length of the Big Dig?\ta few years\t-11.76839818740586\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was only completed finally, a few years) -> a few years (7315ms)\nWhat is the length of the Big Dig?\tan immense overhaul\t-11.77796830311142\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was, an immense overhaul) -> an immense overhaul (7315ms)\nWhat is the length of the Big Dig?\t620 thousand Truckloads\t-11.791174851929556\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is moving, 620 thousand Truckloads) -> 620 thousand Truckloads (7314ms)\nWhat is the length of the Big Dig?\tthe Central Artery\t-11.837186971539717\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was jacking up, the Central Artery) -> the Central Artery (7346ms)\nWhat is the length of the Big Dig?\tfood charity Sustain\t-11.839133995432599\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, will be coordinated by, food charity Sustain) -> food charity Sustain (7346ms)\nWhat is the length of the Big Dig?\tLondon\t-11.850089111158864\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, will be also be held in, London) -> London (7346ms)\nWhat is the length of the Big Dig?\tan elevated highway\t-11.868415931417227\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is moving, an elevated highway) -> an elevated highway (7346ms)\nWhat is the length of the Big Dig?\tcost overruns and delays\t-11.875572825767568\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, has been plagued by, cost overruns and delays) -> cost overruns and delays (7346ms)\nWhat is the length of the Big Dig?\ta local legend\t-11.945960295272966\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was, a local legend) -> a local legend (7378ms)\nWhat is the length of the Big Dig?\t5.8 billion dollars\t-11.993008186241626\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was supposed to be, 5.8 billion dollars) -> 5.8 billion dollars (7378ms)\nWhat is the length of the Big Dig?\ta good idea\t-12.03477229392382\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was, a good idea) -> a good idea (7378ms)\nWhat is the length of the Big Dig?\tthe Queen\t-12.03776243416528\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Royal Dig, is an example of, the Queen) -> the Queen (7378ms)\nWhat is the length of the Big Dig?\ta huge success\t-12.060712558980821\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, has been, a huge success) -> a huge success (7408ms)\nWhat is the length of the Big Dig?\ta $ 14.6 billion band-aid\t-12.0619255064087\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is just, a $ 14.6 billion band-aid) -> a $ 14.6 billion band-aid (7408ms)\nWhat is the length of the Big Dig?\tthe Authority\t-12.06362720791182\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig project, was dumped onto, the Authority) -> the Authority (7408ms)\nWhat is the length of the Big Dig?\ta long time\t-12.139427983769504\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig all, was a mess for, a long time) -> a long time (7439ms)\nWhat is the length of the Big Dig?\tHaymarket\t-12.204397263521336\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is now pushing from, Haymarket) -> Haymarket (7439ms)\nWhat is the length of the Big Dig?\tprehistoric fossils\t-12.2127612063663\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is the soaring price of, prehistoric fossils) -> prehistoric fossils (7439ms)\nWhat is the length of the Big Dig?\tshort on cash\t-12.246874983495593\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was, short on cash) -> short on cash (7439ms)\nWhat is the length of the Big Dig?\tgreat interest\t-12.253219151186425\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The recent BIG DIG failures, have been of, great interest) -> great interest (7439ms)\nWhat is the length of the Big Dig?\ttime and on budget\t-12.316937955961462\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was on, time and on budget) -> time and on budget (7470ms)\nWhat is the length of the Big Dig?\tindividuals and teams\t-12.405662489976107\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is open to, individuals and teams) -> individuals and teams (7470ms)\nWhat is the length of the Big Dig?\tpublic transit\t-12.542339979369565\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, had very little to do with, public transit) -> public transit (7499ms)\nWhat is the length of the Big Dig?\tTransformed Boston\t-12.630962564889293\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, Has, Transformed Boston) -> Transformed Boston (7499ms)\nWhat is the length of the Big Dig?\ta very visible failure\t-12.776209912536569\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig, has just had, a very visible failure) -> a very visible failure (7528ms)\nWhat is the length of the Big Dig?\tan easy commute possible\t-12.785871500225964\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has made, an easy commute possible) -> an easy commute possible (7528ms)\nWhat is the length of the Big Dig?\tthe big reasons\t-12.78864241016118\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig plan, is one of, the big reasons) -> the big reasons (7528ms)\nWhat is the length of the Big Dig?\t1998\t-12.799946653177377\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, be completed by, 1998) -> 1998 (7528ms)\nWhat is the length of the Big Dig?\ta small rail component\t-12.809809417396597\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has only, a small rail component) -> a small rail component (7528ms)\nWhat is the length of the Big Dig?\tdollars\t-12.847489567521318\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is billions of, dollars) -> dollars (7556ms)\nWhat is the length of the Big Dig?\tthe creation\t-12.852686670934686\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is responsible for, the creation) -> the creation (7556ms)\nWhat is the length of the Big Dig?\tdisastrous consequences\t-12.854470028885073\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig tunnel ?, have had, disastrous consequences) -> disastrous consequences (7556ms)\nWhat is the length of the Big Dig?\tdust\t-12.87913008537841\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, are clouds of, dust) -> dust (7556ms)\nWhat is the length of the Big Dig?\tthe largest ?\t-12.88678836553798\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was one of, the largest ?) -> the largest ? (7556ms)\nWhat is the length of the Big Dig?\toperating expenses\t-12.923501857089004\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig/Turnpike, has been borrowing for, operating expenses) -> operating expenses (7556ms)\nWhat is the length of the Big Dig?\tinfrastructure\t-12.938850387801173\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is probably the last piece of, infrastructure) -> infrastructure (7584ms)\nWhat is the length of the Big Dig?\t2007\t-12.946723493042027\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was completed in, 2007) -> 2007 (7584ms)\nWhat is the length of the Big Dig?\twork continuing\t-13.002918370600842\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig schedule, has, work continuing) -> work continuing (7584ms)\nWhat is the length of the Big Dig?\tfiscal support\t-13.040119241894809\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig, has drained, fiscal support) -> fiscal support (7584ms)\nWhat is the length of the Big Dig?\tproperty values\t-13.074303685138467\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the big dig, has positively affected, property values) -> property values (7584ms)\nWhat is the length of the Big Dig?\t2002\t-13.126974621390028\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was published in, 2002) -> 2002 (7584ms)\nWhat is the length of the Big Dig?\ta noticeable impact\t-13.173411382446453\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has had, a noticeable impact) -> a noticeable impact (7612ms)\nWhat is the length of the Big Dig?\ta traffic bottleneck\t-13.233955651083129\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig project, has brought, a traffic bottleneck) -> a traffic bottleneck (7612ms)\nWhat is the length of the Big Dig?\tthe region?s\t-13.275746433113579\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is critical to, the region?s) -> the region?s (7612ms)\nWhat is the length of the Big Dig?\tthe most expensive highway project\t-13.333845513894165\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was, the most expensive highway project) -> the most expensive highway project (7612ms)\nWhat is the length of the Big Dig?\ttime\t-13.403705148524512\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was on, time) -> time (7612ms)\nWhat is the length of the Big Dig?\tthe rate\t-13.414322970933604\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, are better known than, the rate) -> the rate (7612ms)\nWhat is the length of the Big Dig?\tthe ugly raised highways\t-13.422843649937143\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, was to take down, the ugly raised highways) -> the ugly raised highways (7612ms)\nWhat is the length of the Big Dig?\tcash\t-13.490469917598183\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was short on, cash) -> cash (7643ms)\nWhat is the length of the Big Dig?\tthe old dump\t-13.49192576834642\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, were used to cap, the old dump) -> the old dump (7643ms)\nWhat is the length of the Big Dig?\tthe money\t-13.762769270210537\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig mentality, was right on, the money) -> the money (7642ms)\nWhat is the length of the Big Dig?\tthe automobile\t-13.782850138788739\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is essentially an investment in, the automobile) -> the automobile (7676ms)\nWhat is the length of the Big Dig?\tsight\t-13.788804247200321\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, are in, sight) -> sight (7676ms)\nWhat is the length of the Big Dig?\tthe soaring price of prehistoric fossils\t-13.80591308148285\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is, the soaring price of prehistoric fossils) -> the soaring price of prehistoric fossils (7676ms)\nWhat is the length of the Big Dig?\tyears\t-13.923594518433443\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, be completed, years) -> years (7676ms)\nWhat is the length of the Big Dig?\tthe authority\t-14.029374445626335\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has damaged, the authority) -> the authority (7675ms)\nWhat is the length of the Big Dig?\tthe time\t-14.066938016056106\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig, has cut down, the time) -> the time (7704ms)\nWhat is the length of the Big Dig?\tcost\t-14.334969002432759\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, have, cost) -> cost (7704ms)\nWhat is the length of the Big Dig?\tthe detriment of the public\t-14.527764955049143\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, has been mismanaged to, the detriment of the public) -> the detriment of the public (7704ms)\nWhat is the length of the Big Dig?\tthe public?s mind\t-14.551997997668943\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, have left a bad taste in, the public?s mind) -> the public?s mind (7704ms)\nWhat is the length of the Big Dig?\tthe city\t-14.662376582412627\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has brought, the city) -> the city (7704ms)\nWhat is the length of the Big Dig?\twater\t-14.6954203060636\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is under, water) -> water (7890ms)\nWhat is the length of the Big Dig?\tthe landscape\t-14.927700443815732\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig, has changed, the landscape) -> the landscape (7890ms)\nWhat is the length of the Big Dig?\tresources\t-15.070663295680307\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has only contributed a limited amount of, resources) -> resources (7890ms)\nWhat is the length of the Big Dig?\tcomplete\t-15.083323314005288\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, complete) -> complete (7890ms)\nWhat is the length of the Big Dig?\tover\t-15.118199257059416\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, over) -> over (7890ms)\nWhat is the length of the Big Dig?\tfirst\t-15.225613185429522\tWhat is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was proposed, first) -> first (7890ms)\nWhat president created social security?\tFDR\t-3.9861794567018394\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (FDR, Instance Of, president) (FDR, created, the Social Security system) -> FDR (1806ms)\nWhat president created social security?\tpresident Roosevelt\t-4.111634739721078\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (president Roosevelt, Instance Of, president) (President Roosevelt, created, Social Security) -> president Roosevelt (1806ms)\nWhat president created social security?\tFranklin D. Roosevelt\t-4.317881845336286\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Franklin D. Roosevelt, Instance Of, president) (Franklin D. Roosevelt, created, Social Security) -> Franklin D. Roosevelt (1806ms)\nWhat president created social security?\tThe New Deal\t-4.324066111849287\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (The New Deal, was the first instance of, a President) (the New Deal, created, Social Security) -> The New Deal (1991ms)\nWhat president created social security?\tPresident Roosevelt\t-4.377982185135166\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (President Roosevelt, Instance Of, great president) (President Roosevelt, created, Social Security) -> President Roosevelt (1992ms)\nWhat president created social security?\tPresidents Roosevelt\t-4.536625174086862\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Presidents Roosevelt, Instance Of, democratic president) (President Roosevelt, created, Social Security) -> Presidents Roosevelt (2093ms)\nWhat president created social security?\tRoosevelt's\t-4.7179092050005025\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Roosevelt's, Instance Of, president) (Roosevelt, created, Social Security) -> Roosevelt's (2315ms)\nWhat president created social security?\tRoosevelt\t-4.72680461356069\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Roosevelt, Instance Of, president) (Roosevelt, created, Social Security) -> Roosevelt (2313ms)\nWhat president created social security?\tpresident of the Bar\t-4.813760893227858\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (president of the Bar, Instance Of, alternate president) (the president, first created, a Social Security system) -> president of the Bar (2313ms)\nWhat president created social security?\tPresidents Franklin D. Roosevelt\t-4.843823824713009\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Presidents Franklin D. Roosevelt, Instance Of, U.S. president) (President Franklin Roosevelt, created, Social Security) -> Presidents Franklin D. Roosevelt (2313ms)\nWhat president created social security?\tGeorge W.\t-4.867125469706881\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (George W., Instance Of, president) (George, wants to create, Social Security Savings Accounts) -> George W. (2478ms)\nWhat president created social security?\tFranklin D Roosevelt\t-4.871711977896896\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Franklin D Roosevelt, Instance Of, president) (Franklin Roosevelt, created, social security) -> Franklin D Roosevelt (2478ms)\nWhat president created social security?\tGeorge W\t-4.883065164839638\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (George W, Instance Of, president) (George, wants to create, Social Security Savings Accounts) -> George W (2478ms)\nWhat president created social security?\tPresident Teddy Roosevelt\t-4.884411242291949\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (President Teddy Roosevelt, Instance Of, good president) (President Roosevelt, was working to create, Social Security) -> President Teddy Roosevelt (2617ms)\nWhat president created social security?\tJohnson\t-4.918200875748099\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Johnson, Instance Of, president) (Johnson, created, the social security act) -> Johnson (2617ms)\nWhat president created social security?\tA. Johnson\t-4.955982539975031\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (A. Johnson, Instance Of, president) (Johnson, created, the social security act) -> A. Johnson (2851ms)\nWhat president created social security?\tSocial Security\t-5.048312548413971\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Social Security, Instance Of, president clinton's priority) (Social Security, was created by, the Social Security Act) -> Social Security (2936ms)\nWhat president created social security?\tU.S.\t-5.196501905973792\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (U.S., Instance Of, power by the president) (U.S., created through, the Social Security Administration system) -> U.S. (2936ms)\nWhat president created social security?\tBachelet\t-5.375388139675719\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Bachelet, Instance Of, president) (Bachelet, created, a social security network) -> Bachelet (3093ms)\nWhat president created social security?\tFranklin Roosevelt\t-5.413030443246553\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Franklin Roosevelt, Instance Of, president) (Franklin Roosevelt, created, Social Security) -> Franklin Roosevelt (3093ms)\nWhat president created social security?\tFranklin Delano Roosevelt\t-5.544853227488437\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Franklin Delano Roosevelt, Instance Of, president) (Franklin Roosevelt, created, Social Security) -> Franklin Delano Roosevelt (3333ms)\nWhat president created social security?\tCongress\t-7.303390057861396\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, take office as, president) ($x, created, social security) -> (Congress, took office as, Vice President) (Congress, created, Social Security) -> Congress (4867ms)\nWhat president created social security?\tPresident Elect Obama\t-8.075211660614443\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, make promise to, social security) -> (President Elect Obama, Instance Of, president) (President Obama, has promised to make, Social Security reform) -> President Elect Obama (6426ms)\nWhat president created social security?\tlaw\t-8.094170842413508\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: (president, drug, $x) ($x, created, social security) -> (President Reagan, signed a drug enforcement bill into, law) (the law, creating, Social Security) -> law (5009ms)\nWhat president created social security?\tPresident Obama\t-8.112686246793134\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, make promise to, social security) -> (President Obama, Instance Of, strong president) (President Obama, has promised to make, Social Security reform) -> President Obama (6426ms)\nWhat president created social security?\tPresident-elect Obama\t-8.211873392786929\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, make promise to, social security) -> (President-elect Obama, Instance Of, president) (President Obama, has promised to make, Social Security reform) -> President-elect Obama (6426ms)\nWhat president created social security?\tPage\t-8.213635358805057\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, from create, social security) -> (Page, Instance Of, member and past president of the Private Probation Association of Georgia) (pages, were created from, the Social Security Death Index) -> Page (5009ms)\nWhat president created social security?\tPresident Obama's\t-8.355457223558275\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, make promise to, social security) -> (President Obama's, Instance Of, president) (President Obama, has promised to make, Social Security reform) -> President Obama's (6426ms)\nWhat president created social security?\tcongress\t-9.172758120263545\tWhat president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, be a by, president) ($x, created, social security) -> (congress, can be overturned a by, a President) (Congress, created, Social Security) -> congress (5736ms)\nWhat president created social security?\tPresident Franklin Delano Roosevelt\t-11.19960729096413\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (President Franklin Delano Roosevelt, created, Social Security) -> President Franklin Delano Roosevelt (8216ms)\nWhat president created social security?\tPresident Franklin Roosevelt\t-11.359611567800732\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (President Franklin Roosevelt, created, Social Security) -> President Franklin Roosevelt (8216ms)\nWhat president created social security?\tthe New Deal\t-11.511228190860798\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the New Deal, created, Social Security) -> the New Deal (8759ms)\nWhat president created social security?\tthe New-Deal\t-11.552666970422106\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the New-Deal, created, Social Security) -> the New-Deal (8759ms)\nWhat president created social security?\tEconomic Security\t-11.958953534030398\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Economic Security, created, the Social Security Act) -> Economic Security (8759ms)\nWhat president created social security?\tcivil service\t-11.969713090064417\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (civil service, creates, Social Security Administration) -> civil service (8759ms)\nWhat president created social security?\tthe Great Depression\t-12.025432478755167\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the Great Depression, was to create, Social Security) -> the Great Depression (8826ms)\nWhat president created social security?\tthe Rich\t-12.02965804613519\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the Rich, Created, the Social Security) -> the Rich (8826ms)\nWhat president created social security?\tHe?s\t-12.067065031830033\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (He?s, create, Social Security) -> He?s (8826ms)\nWhat president created social security?\ta U.S. Congressman\t-12.158527751977024\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (a U.S. Congressman, voted to create, Social Security) -> a U.S. Congressman (8826ms)\nWhat president created social security?\ta switch\t-12.189416025448281\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (a switch, also could create, Social Security issues) -> a switch (8867ms)\nWhat president created social security?\tIndia\t-12.241385624986052\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (India, create, an American-style Social Security Administration) -> India (8867ms)\nWhat president created social security?\tprogressives politicians\t-12.262219667092829\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (progressives politicians, create, Social Security) -> progressives politicians (8867ms)\nWhat president created social security?\tRalphs\t-12.305082142851209\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Ralphs, created, fake Social Security Numbers) -> Ralphs (8867ms)\nWhat president created social security?\tBiomass production\t-12.31076135151483\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Biomass production, should create, social security) -> Biomass production (8867ms)\nWhat president created social security?\tThe Social Security Board\t-12.312356201224343\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The Social Security Board, created, 10 Social Security Districts) -> The Social Security Board (8867ms)\nWhat president created social security?\t?Has Obama\t-12.317066208579138\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (?Has Obama, created, a Social Security ?death panel?) -> ?Has Obama (9145ms)\nWhat president created social security?\tthe U.S. federal government\t-12.3417898510023\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the U.S. federal government, created, social security) -> the U.S. federal government (9145ms)\nWhat president created social security?\tE-Verify\t-12.380893137067627\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (E-Verify, was created at, Social Security) -> E-Verify (9145ms)\nWhat president created social security?\tthe U.S. government\t-12.391399463161981\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the U.S. government, created, its social security program) -> the U.S. government (9145ms)\nWhat president created social security?\tThe Act\t-12.400146944009098\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The Act, creates, a Social Security Board) -> The Act (9145ms)\nWhat president created social security?\tthe United States\t-12.424226284045744\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the United States, created, Social Security) -> the United States (9235ms)\nWhat president created social security?\tFrance\t-12.500514934632534\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (France, created, a fifth national social security agency) -> France (9235ms)\nWhat president created social security?\tTitle V\t-12.51567897577467\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Title V, were created by, the Social Security Act) -> Title V (9235ms)\nWhat president created social security?\tThe Medicaid program\t-12.528057743496907\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The Medicaid program, was created under, the Social Security Act) -> The Medicaid program (9311ms)\nWhat president created social security?\tLaw 100\t-12.62175635343947\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Law 100, created, a new general social security system) -> Law 100 (9311ms)\nWhat president created social security?\tfoster care system\t-12.623365248609781\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (foster care system, was created under, the Social Security Act) -> foster care system (9311ms)\nWhat president created social security?\t87 ?\t-12.647795673244765\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (87 ?, Creates, a social security fund) -> 87 ? (9378ms)\nWhat president created social security?\tless than one child\t-12.662417798546745\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (less than one child, creates an undue burden on, social security) -> less than one child (9377ms)\nWhat president created social security?\tThe Democrats\t-12.746921828464187\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The Democrats, created, Social Security) -> The Democrats (9378ms)\nWhat president created social security?\tOld Friends\t-12.756623237282593\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Old Friends, will help create, a social security system) -> Old Friends (9448ms)\nWhat president created social security?\tmuch less work\t-12.798357811422063\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (much less work, even created, a social-security system) -> much less work (9448ms)\nWhat president created social security?\t2. Bush\t-12.922541096280334\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (2. Bush, still wants to create, a Social Security system) -> 2. Bush (9493ms)\nWhat president created social security?\tGeorge\t-13.064221952528532\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (George, wants to create, Social Security Savings Accounts) -> George (9492ms)\nWhat president created social security?\tGenerations\t-13.14668553697372\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Generations, worked to create, our Social Security) -> Generations (9524ms)\nWhat president created social security?\tunions\t-13.295105967381925\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> (unions, had created, the social security act) -> unions (9524ms)\nWhat president created social security?\tthe Congress\t-13.43908890909022\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the Congress, created, Social Security or Medicare) -> the Congress (9562ms)\nWhat president created social security?\t1935\t-13.516339799639391\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (1935, created, Social Security) -> 1935 (9593ms)\nWhat president created social security?\tAFDC\t-13.576465617520412\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (AFDC, was first created by, the Social Security Act) -> AFDC (9593ms)\nWhat president created social security?\tThe system\t-13.632650689533115\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The system, was created by, the Social Security Act) -> The system (9592ms)\nWhat president created social security?\tThe program\t-13.706401808601246\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The program, was created by, the 1935 Social Security Act) -> The program (9748ms)\nWhat president created social security?\tthe president\t-13.777051511809486\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the president, first created, a Social Security system) -> the president (9748ms)\nWhat president created social security?\tRick Perry\t-13.805111209571763\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, do call, social security) -> (Rick Perry, does call, Social Security ?a Ponzi scheme) -> Rick Perry (9748ms)\nWhat president created social security?\tlifespans\t-13.893688981034348\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> (lifespans, have created havoc with, Social Security) -> lifespans (9904ms)\nWhat president created social security?\tThe government\t-13.904303661085619\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The government, created, the Social Security) -> The government (9904ms)\nWhat president created social security?\tthe Democrats\t-13.952580442247356\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the Democrats, created, Social Security) -> the Democrats (9904ms)\nWhat president created social security?\tLiberals\t-14.015522086893666\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Liberals, created, Social Security) -> Liberals (9904ms)\nWhat president created social security?\tThe Vice President\t-14.051443362535926\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, do call, social security) -> (The Vice President, did call, Social Security) -> The Vice President (9959ms)\nWhat president created social security?\tThe federal government\t-14.14497913629685\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The federal government, created, Social Security) -> The federal government (9959ms)\nWhat president created social security?\tBTW-Franklin Roosevelt\t-14.19200408668074\tWhat president created social security? -> what president [ create social security ] ? -> what us president create social security ? -> $x: ($x, instance of, us president) ($x, create, social security) -> (BTW-Franklin Roosevelt, Instance Of, disabled US president) (Franklin Roosevelt, created, Social Security) -> BTW-Franklin Roosevelt (9959ms)\nWhat president created social security?\tlegislation\t-14.250251815885155\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (legislation, created, the Social Security Program) -> legislation (9998ms)\nWhat president created social security?\tthe promise\t-14.251338906271256\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the promise, create, a social security network) -> the promise (9998ms)\nWhat president created social security?\tthieves\t-14.274810793935501\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (thieves, easily create, fake Social Security numbers) -> thieves (9998ms)\nWhat president created social security?\tthe politicians\t-14.27504404177505\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the politicians, created, the Social Security program) -> the politicians (9998ms)\nWhat president created social security?\tThe charter\t-14.350143476562096\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The charter, also creates new rights to, social security) -> The charter (9998ms)\nWhat president created social security?\tthe country\t-14.42688688762999\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the country, must create a real system of, social security) -> the country (10057ms)\nWhat president created social security?\tthe law\t-14.693424660237206\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the law, creating, Social Security) -> the law (10125ms)\nWhat president created social security?\t2 generations\t-14.69446521848096\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, have bless, social security) -> (2 generations, have been blessed by, Social Security) -> 2 generations (10125ms)\nWhat president created social security?\tturn\t-14.770826867503349\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (turn, created, the corporate social security system) -> turn (10124ms)\nWhat president created social security?\tGravel\t-14.778233186200254\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, have a plan for, social security) -> (Gravel, has a plan for, social security) -> Gravel (10125ms)\nWhat president created social security?\tgovernment\t-14.790477789233076\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (government, creates, a social security system) -> government (10125ms)\nWhat president created social security?\tthe federal government\t-14.864818492140582\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the federal government, created, Social Security) -> the federal government (10125ms)\nWhat president created social security?\tNeither side\t-14.985520134173239\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, have a plan for, social security) -> (Neither side, has offered a plan for, Social Security) -> Neither side (10181ms)\nWhat president created social security?\ta divorce lawyer\t-14.995926487598748\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, be familiar, social security) -> (a divorce lawyer, is also familiar with, any Social Security) -> a divorce lawyer (10181ms)\nWhat president created social security?\tJohnson, 46\t-15.101380446815284\tWhat president created social security? -> what president [ create social security ] ? -> what start create social security ? -> $x: ($x, instance of, start) ($x, create, social security) -> (Johnson, 46, Instance Of, starting center) (Johnson, created, the social security act) -> Johnson, 46 (10181ms)\nWhat president created social security?\tLegislation\t-15.18726001072913\tWhat president created social security? -> what president [ create social security ] ? -> what start create social security ? -> $x: ($x, instance of, start) ($x, create, social security) -> (Legislation, Instance Of, starting point) (legislation, created, the Social Security Program) -> Legislation (10219ms)\nWhat president created social security?\tRalph\t-15.239944621299733\tWhat president created social security? -> what president [ create social security ] ? -> what start create social security ? -> $x: ($x, instance of, start) ($x, create, social security) -> (Ralph, Instance Of, starting G) (Ralphs, created, fake Social Security Numbers) -> Ralph (10219ms)\nWhat president created social security?\tthe bill\t-15.618917072978942\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the bill, creating, Social Security) -> the bill (10219ms)\nWhat president created social security?\tthe party\t-15.641803560163066\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the party, created, Social Security) -> the party (10356ms)\nWhat president created social security?\tthe government\t-15.77291149862943\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the government, created, the Social Security number) -> the government (10356ms)\nWhat president created social security?\tthe commission\t-15.856216828836512\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the commission, thus created, the Social Security surplus) -> the commission (10356ms)\nWhat president created social security?\tpages\t-16.05761391392378\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, from create, social security) -> (pages, were created from, the Social Security Death Index) -> pages (10356ms)\nWhat president created social security?\troosevelt\t-16.207143131214856\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (roosevelt, created, the social security act) -> roosevelt (10356ms)\nWhat president created social security?\ta popular consensus\t-16.423454757945002\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> $x: ($x, can construct, social security) -> (a popular consensus, can be constructed on, Social Security) -> a popular consensus (14284ms)\nWhat president created social security?\tpensions\t-16.53619433363729\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, be exist, social security) -> (pensions, are existing on, Social Security) -> pensions (10408ms)\nWhat president created social security?\tPaul\t-16.951951907693388\tWhat president created social security? -> what president [ create social security ] ? -> what number president be create social security ? -> $x: ($x, instance of, number president) ($x, be create, social security) -> $x: ($x, instance of, number president) ($x, be be work, social security) -> (Paul, Instance Of, chair or past president of a number of organization) (Paul, has been working as, a Social Security disability examiner) -> Paul (12774ms)\nWhat president created social security?\thelp\t-17.031112695104465\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, be public, social security) -> (help, are misleading the public about, Social Security) -> help (10408ms)\nWhat president created social security?\tpoll\t-17.202586422164167\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, be public, social security) -> (poll, is showing public support for, Social Security) -> poll (10408ms)\nWhat president created social security?\tincome\t-17.733511598134417\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> $x: (social security, be the will of, $x) -> (Social Security, will be the single biggest source of, income) -> income (14284ms)\nWhat president created social security?\tthe end\t-17.734836030703406\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> $x: (social security, be the will of, $x) -> (Social Security, will be just the beginning of, the end) -> the end (14284ms)\nWhat president created social security?\tthe changes\t-17.798153334643732\tWhat president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> $x: (social security, be the will of, $x) -> (Social Security, will likely be spared the brunt of, the changes) -> the changes (14284ms)\nWhen is Jennifer Lopez's birthday?\tMiami\t-4.568889215792058\tWhen is Jennifer Lopez's birthday? -> $x: (Jennifer Lopez, birthday, $x) -> (Jennifer Lopez, celebrated her birthday in, Miami) -> Miami (4222ms)\nWhen is Jennifer Lopez's birthday?\t1969-07-24\t-6.91556571325239\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> when be jennifer lopez s birth date ? -> $x: (jennifer lopez, birth date, $x) -> (Jennifer Lopez, Date of birth, 1969-07-24) -> 1969-07-24 (8698ms)\nWhen is Jennifer Lopez's birthday?\t1997\t-8.440520147515603\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> ('s life and death starring Jennifer Lopez, was released in, 1997) -> 1997 (11041ms)\nWhen is Jennifer Lopez's birthday?\tCastle Hill\t-10.535626625036212\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, Place of birth, Castle Hill) -> Castle Hill (10181ms)\nWhen is Jennifer Lopez's birthday?\tSt. Augustine\t-10.535626625036212\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, Place of birth, St. Augustine) -> St. Augustine (10181ms)\nWhen is Jennifer Lopez's birthday?\tBen Affleck\t-11.471511043718342\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, was set to marry, Ben Affleck) -> Ben Affleck (8975ms)\nWhen is Jennifer Lopez's birthday?\tFans\t-11.60802416022387\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Fans, are loving, Jennifer Lopez?s hot new single ?On) -> Fans (11041ms)\nWhen is Jennifer Lopez's birthday?\tMarc Anthony\t-11.750848377647513\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, married, Marc Anthony) -> Marc Anthony (8975ms)\nWhen is Jennifer Lopez's birthday?\t60?s glamour\t-12.116741490348177\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (?Jennifer Lopez?s Oscar?s look, was all about, 60?s glamour) -> 60?s glamour (11041ms)\nWhen is Jennifer Lopez's birthday?\t53\t-12.251898360685704\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s age ? -> $x: (jennifer lopez, age, $x) -> (Jennifer Lopez and Randy Jackson, has an average age of, 53) -> 53 (10603ms)\nWhen is Jennifer Lopez's birthday?\tjoint custody\t-12.252477095869981\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s ex, is gunning for, joint custody) -> joint custody (11042ms)\nWhen is Jennifer Lopez's birthday?\tNew York\t-12.393649311985925\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> ('s Fendi Peek-a-boo Jennifer Lopez, was spotted in, New York) -> New York (11041ms)\nWhen is Jennifer Lopez's birthday?\tCatholicism\t-12.427058682615662\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s religion ? -> $x: (jennifer lopez, religion, $x) -> (Jennifer Lopez, Religion, Catholicism) -> Catholicism (11888ms)\nWhen is Jennifer Lopez's birthday?\tOjani Noa\t-12.437851190860084\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, married, Ojani Noa) -> Ojani Noa (8975ms)\nWhen is Jennifer Lopez's birthday?\tMark Anthony\t-12.499496819553034\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (actress Jennifer Lopez, got married to, Mark Anthony) -> Mark Anthony (8974ms)\nWhen is Jennifer Lopez's birthday?\ta man\t-12.64223032164858\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s stunt double?, is, a man) -> a man (11042ms)\nWhen is Jennifer Lopez's birthday?\tsong\t-12.673375824699447\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (song, is from, one Jennifer lopez?s song) -> song (11226ms)\nWhen is Jennifer Lopez's birthday?\tLoud These\t-12.734046523571271\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Loud These, are the lyrics to, Jennifer Lopez?s song ?let?s) -> Loud These (11225ms)\nWhen is Jennifer Lopez's birthday?\ta new look\t-12.80050630082741\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth to, a new look) -> a new look (10181ms)\nWhen is Jennifer Lopez's birthday?\tdirty\t-12.841918687467016\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (One man touch Jennifer Lopez?s rear-end, was n?t as, dirty) -> dirty (11225ms)\nWhen is Jennifer Lopez's birthday?\ta backup dancer\t-12.858133653433471\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s second husband, was, a backup dancer) -> a backup dancer (11226ms)\nWhen is Jennifer Lopez's birthday?\t?FRO-YO?? Yogurt\t-12.950974437701396\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (?FRO-YO?? Yogurt, is about as masculine as, Jennifer Lopez?s) -> ?FRO-YO?? Yogurt (11225ms)\nWhen is Jennifer Lopez's birthday?\tMr Barnes\t-12.973014793113029\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Mr Barnes, was responsible for, Jennifer Lopez?s makeup) -> Mr Barnes (11225ms)\nWhen is Jennifer Lopez's birthday?\tDiddy\t-12.974007250383638\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Diddy, just happens to be, judge Jennifer Lopez ?s ex) -> Diddy (11314ms)\nWhen is Jennifer Lopez's birthday?\ttwins\t-12.990602312130445\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth to, twins) -> twins (10181ms)\nWhen is Jennifer Lopez's birthday?\ttwin babies\t-13.005476441474872\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth to, twin babies) -> twin babies (10181ms)\nWhen is Jennifer Lopez's birthday?\ta baby\t-13.07004173027845\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s character Holly, has been waiting for, a baby) -> a baby (11314ms)\nWhen is Jennifer Lopez's birthday?\tbackup dancer\t-13.119758206334625\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, to marry, backup dancer) -> backup dancer (8975ms)\nWhen is Jennifer Lopez's birthday?\ttwins Max and Emme\t-13.13386306075085\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth to, twins Max and Emme) -> twins Max and Emme (10297ms)\nWhen is Jennifer Lopez's birthday?\tDavid Tanny\t-13.218093781878146\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, marries, David Tanny) -> David Tanny (9041ms)\nWhen is Jennifer Lopez's birthday?\tHahaha\t-13.727732265573335\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Hahaha, are, Jennifer Lopez?s new car commercials) -> Hahaha (11314ms)\nWhen is Jennifer Lopez's birthday?\tAmericans\t-13.808478555191396\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Americans, are salivating over, Jennifer Lopez?s third marriage) -> Americans (11314ms)\nWhen is Jennifer Lopez's birthday?\tCasper Smart\t-14.127617002194322\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, to marry, Casper Smart) -> Casper Smart (9040ms)\nWhen is Jennifer Lopez's birthday?\tthe first time\t-14.225226836126147\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, got married for, the first time) -> the first time (9041ms)\nWhen is Jennifer Lopez's birthday?\tfinally\t-14.27246692540238\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth, finally) -> finally (10365ms)\nWhen is Jennifer Lopez's birthday?\ta born performer\t-14.273699045818942\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez 's daughter, is, a born performer) -> a born performer (11314ms)\nWhen is Jennifer Lopez's birthday?\tthe talks\t-14.418367457636588\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (the S.A. Jennifer Lopez, is in, the talks) -> the talks (11402ms)\nWhen is Jennifer Lopez's birthday?\ttwins , a boy and a girl\t-14.512680609493595\tWhen is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gives birth to, twins , a boy and a girl) -> twins , a boy and a girl (10365ms)\nWhen is Jennifer Lopez's birthday?\tthe host\t-14.567636063727193\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s nipple, has been confirmed as, the host) -> the host (11402ms)\nWhen is Jennifer Lopez's birthday?\tthe magazine\t-14.710182632302583\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s locks, were used by, the magazine) -> the magazine (11402ms)\nWhen is Jennifer Lopez's birthday?\tthe most blissful tones\t-14.880597936698035\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s home, is decorated in, the most blissful tones) -> the most blissful tones (11402ms)\nWhen is Jennifer Lopez's birthday?\tThe snake\t-16.446215023214478\tWhen is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> who jennifer lopez in the movie ? -> $x: ($x, jennifer lopez in, the movie) -> (The snake, tried to eat Jennifer Lopez in, the movie) -> The snake (10365ms)\nWhen was Shakespeare born?\t1564\t2.0445310405874215\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1564) -> 1564 (5091ms)\nWhen was Shakespeare born?\t1554\t1.9301100195119205\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (5091ms)\nWhen was Shakespeare born?\t1529\t1.7141150916056378\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (5091ms)\nWhen was Shakespeare born?\tApril 1564\t0.26045867969531633\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April 1564) -> April 1564 (5360ms)\nWhen was Shakespeare born?\t23 April\t0.2589855993550003\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, 23 April) -> 23 April (5360ms)\nWhen was Shakespeare born?\tApril , 1564\t0.14231180044095249\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (5397ms)\nWhen was Shakespeare born?\tlate April 1564\t0.10298103236002887\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (5397ms)\nWhen was Shakespeare born?\tApril 23\t-0.34701304029147373\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 23) -> April 23 (5455ms)\nWhen was Shakespeare born?\t23rd April\t-0.40174643523660736\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, 23rd April) -> 23rd April (5455ms)\nWhen was Shakespeare born?\tApril 23rd\t-0.4747614288740203\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (! Shakespeare, was born on, April 23rd) -> April 23rd (5488ms)\nWhen was Shakespeare born?\tApril 23 , 1564\t-0.5291692215697932\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 23 , 1564) -> April 23 , 1564 (5488ms)\nWhen was Shakespeare born?\t23 April 1564\t-0.5851481901260565\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (! Shakespeare, was born on, 23 April 1564) -> 23 April 1564 (5488ms)\nWhen was Shakespeare born?\tApril 26 , 1564\t-0.6029484845368387\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 26 , 1564) -> April 26 , 1564 (5552ms)\nWhen was Shakespeare born?\t26 April 1564\t-0.6143267102783079\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, 26 April 1564) -> 26 April 1564 (5552ms)\nWhen was Shakespeare born?\tApril and World book day\t-0.9786492884448148\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (5716ms)\nWhen was Shakespeare born?\tApril\t-1.118366246710083\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April) -> April (5743ms)\nWhen was Shakespeare born?\t1582\t-1.4896270130615559\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (Shakespeare, married her in, 1582) -> 1582 (5862ms)\nWhen was Shakespeare born?\tApril 26\t-1.619769978027732\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 26) -> April 26 (5903ms)\nWhen was Shakespeare born?\tSunday\t-1.8226346600480374\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was indeed born on, Sunday) -> Sunday (5937ms)\nWhen was Shakespeare born?\tStratford-upon-Avon\t-1.8650566872577283\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (6009ms)\nWhen was Shakespeare born?\tApril 23 ,\t-1.9042089236862942\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (?William Shakespeare, was born, April 23 ,) -> April 23 , (8030ms)\nWhen was Shakespeare born?\t26 April\t-2.123248803588319\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be baptize on, $x) -> (William Shakespeare, was baptized on, 26 April) -> 26 April (8797ms)\nWhen was Shakespeare born?\tSeptember 9\t-2.183766468488019\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bury on, $x) -> (Mary Shakespeare, was buried on, September 9) -> September 9 (8475ms)\nWhen was Shakespeare born?\tthe 23rd too\t-2.4203341740124924\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, the 23rd too) -> the 23rd too (6176ms)\nWhen was Shakespeare born?\tthe 26th\t-2.4574704771792035\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, the 26th) -> the 26th (6234ms)\nWhen was Shakespeare born?\tApril 23 , 1564 ,\t-2.4770856473658913\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, April 23 , 1564 ,) -> April 23 , 1564 , (8088ms)\nWhen was Shakespeare born?\tSt . Austell\t-2.4771389480919703\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (6234ms)\nWhen was Shakespeare born?\ta 23... dead\t-2.5527652632562896\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, a 23... dead) -> a 23... dead (6253ms)\nWhen was Shakespeare born?\tStratford-on-Avon\t-2.5854255135485906\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (6315ms)\nWhen was Shakespeare born?\ta small town\t-2.5992435461305883\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, a small town) -> a small town (6315ms)\nWhen was Shakespeare born?\tItaly\t-2.8082197169972325\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Italy) -> Italy (6412ms)\nWhen was Shakespeare born?\tthe Warwickshire town\t-2.8700017049141873\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (6412ms)\nWhen was Shakespeare born?\tEngland\t-2.8767949004287767\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, England) -> England (6412ms)\nWhen was Shakespeare born?\tStratford and today\t-2.8929908675564677\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (6430ms)\nWhen was Shakespeare born?\tWorcester\t-3.064823178249652\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (6448ms)\nWhen was Shakespeare born?\t1564 ! 2\t-3.2327956778267457\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (6448ms)\nWhen was Shakespeare born?\tSt George?s day\t-3.3294207167304375\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, St George?s day) -> St George?s day (6466ms)\nWhen was Shakespeare born?\t1564 ! 1 hour ago\t-3.4269249459027304\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (6467ms)\nWhen was Shakespeare born?\tallegedly on April 23 , 1564\t-3.44202512475227\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (William Shakespeare, was born, allegedly on April 23 , 1564) -> allegedly on April 23 , 1564 (8357ms)\nWhen was Shakespeare born?\t1564 ! 5 hours ago\t-3.447326064766682\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (6485ms)\nWhen was Shakespeare born?\t1564 ! 3 hours ago\t-3.447326064766682\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (6467ms)\nWhen was Shakespeare born?\tStratford\t-3.4935538402226998\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford) -> Stratford (6484ms)\nWhen was Shakespeare born?\tHenley Street\t-3.7806682033815417\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (6702ms)\nWhen was Shakespeare born?\tKingston\t-3.8037454116362257\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (6702ms)\nWhen was Shakespeare born?\t445 years\t-3.853111285181472\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, 445 years) -> 445 years (8533ms)\nWhen was Shakespeare born?\tJackson\t-3.930905170090165\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (6721ms)\nWhen was Shakespeare born?\tthe town\t-4.056104419451362\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the town) -> the town (6739ms)\nWhen was Shakespeare born?\tTeaneck\t-4.347241703675306\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (6921ms)\nWhen was Shakespeare born?\tthe year\t-4.505441623124528\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the year) -> the year (6939ms)\nWhen was Shakespeare born?\tAvon\t-4.524315891190357\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (Avon, was the birthplace of, William Shakespeare) -> Avon (6939ms)\nWhen was Shakespeare born?\tthe village\t-4.540809553489046\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the village) -> the village (6939ms)\nWhen was Shakespeare born?\tthe latter half\t-4.676468582871869\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (6956ms)\nWhen was Shakespeare born?\tthe depths\t-4.680329154949357\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (6956ms)\nWhen was Shakespeare born?\tStratford upon Avon\t-4.705365178052908\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (Stratford upon Avon, is the birthplace of, Shakespeare) -> Stratford upon Avon (6977ms)\nWhen was Shakespeare born?\tJohn Shakespeare\t-4.887691907027096\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (William Shakespeare, was born to, John Shakespeare) -> John Shakespeare (8725ms)\nWhen was Shakespeare born?\ta time\t-4.960398713927196\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (Shakespeare, was born at, a time) -> a time (6993ms)\nWhen was Shakespeare born?\tthirty-five years\t-5.0512228627723985\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear about, $x) -> (the Shakespeare, was born about, thirty-five years) -> thirty-five years (7052ms)\nWhen was Shakespeare born?\tmovie theaters\t-5.165426458102679\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (classical Shakespeare titles, is coming to, movie theaters) -> movie theaters (8939ms)\nWhen was Shakespeare born?\tcenturies\t-5.249245340325274\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, may have been born, centuries) -> centuries (8939ms)\nWhen was Shakespeare born?\ttwo years\t-5.2709228973833255\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (William Shakespeare, was born, two years) -> two years (8957ms)\nWhen was Shakespeare born?\tfour hundred years\t-5.481361948661354\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, four hundred years) -> four hundred years (9039ms)\nWhen was Shakespeare born?\tProject Gutenberg\t-5.502562770823962\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be originally from, $x) -> (Shakespeare, were originally drawn from, Project Gutenberg) -> Project Gutenberg (7164ms)\nWhen was Shakespeare born?\tLatin\t-5.5196126849047555\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was better educated in, Latin) -> Latin (7164ms)\nWhen was Shakespeare born?\tthe county of Warwick\t-5.520646607508663\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (7164ms)\nWhen was Shakespeare born?\tmiddle class parents\t-5.552333724657692\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born to, middle class parents) -> middle class parents (9039ms)\nWhen was Shakespeare born?\ta show\t-5.639337608131637\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Orlando Shakespeare Theater, is to come to, a show) -> a show (9039ms)\nWhen was Shakespeare born?\tthe English language\t-5.689792701573589\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was highly educated in, the English language) -> the English language (7188ms)\nWhen was Shakespeare born?\tTemple Grafton church\t-5.733053794123014\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (William Shakespeare, was married in, Temple Grafton church) -> Temple Grafton church (7204ms)\nWhen was Shakespeare born?\ttown\t-5.748292515822607\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (? William Shakespeare, is coming to, town) -> town (9067ms)\nWhen was Shakespeare born?\tunser Shakespeare\t-5.835564950757979\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare, has come to be known as, unser Shakespeare) -> unser Shakespeare (9065ms)\nWhen was Shakespeare born?\tGreenwood?s legal arguments\t-5.939059068939032\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (shakespeare, bear on, $x) -> (Shakespeare, had a bearing on, Greenwood?s legal arguments) -> Greenwood?s legal arguments (7220ms)\nWhen was Shakespeare born?\ta pig\t-6.031817129421848\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, a pig) -> a pig (9065ms)\nWhen was Shakespeare born?\ta fight\t-6.054272938084897\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Shakespeare, was killed in, a fight) -> a fight (9267ms)\nWhen was Shakespeare born?\tGalileo\t-6.0855575950081064\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born the same year as, Galileo) -> Galileo (9147ms)\nWhen was Shakespeare born?\tthe same year\t-6.166528297039118\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (7251ms)\nWhen was Shakespeare born?\tthe start\t-6.236178212684798\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (William Shakespeare, was born at, the start) -> the start (7251ms)\nWhen was Shakespeare born?\ta gang-related shooting\t-6.236790506573249\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Letisha Shakespeare, was killed in, a gang-related shooting) -> a gang-related shooting (9267ms)\nWhen was Shakespeare born?\tOttawa\t-6.243980021790751\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Massachusetts-based Shakespeare & Company, are coming to, Ottawa) -> Ottawa (9147ms)\nWhen was Shakespeare born?\tEnglish literature\t-6.452435931487816\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, have leave on, $x) -> (Shakespeare, have left their mark on, English literature) -> English literature (9267ms)\nWhen was Shakespeare born?\tplaces\t-6.453438047921715\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, places) -> places (9283ms)\nWhen was Shakespeare born?\tThe town\t-6.470663057331868\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (7264ms)\nWhen was Shakespeare born?\tThailand\t-6.524517332303894\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Shakespeare, has been killed in, Thailand) -> Thailand (9283ms)\nWhen was Shakespeare born?\tWhat town\t-6.540021952790168\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (7280ms)\nWhen was Shakespeare born?\tTinnin\t-6.570676912866324\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare, is coming back to, Tinnin) -> Tinnin (9283ms)\nWhen was Shakespeare born?\tVancouver\t-6.636633997071021\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare?s already gory Macbeth, is coming to, Vancouver) -> Vancouver (9283ms)\nWhen was Shakespeare born?\tevery day\t-6.661008180839634\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, come here to, $x) -> (Shakespeare, came to work here, every day) -> every day (9562ms)\nWhen was Shakespeare born?\tHamlet\t-6.703320899773966\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (some Shakespeare ? John Simm, is coming to play, Hamlet) -> Hamlet (9562ms)\nWhen was Shakespeare born?\tmusic\t-6.727394865340568\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, have ever be to, $x) -> (No Shakespeare sonnet, has ever been successfully put to, music) -> music (9943ms)\nWhen was Shakespeare born?\tthe room\t-6.729946926495304\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare, was to come into, the room) -> the room (9562ms)\nWhen was Shakespeare born?\tthe editors\t-6.77381614225439\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be away in, $x) -> (Shakespeare, was given away in, the editors) -> the editors (7296ms)\nWhen was Shakespeare born?\ta world\t-6.8448751353355055\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, bear into, $x) -> (William Shakespeare, was born into, a world) -> a world (9562ms)\nWhen was Shakespeare born?\tthe work\t-6.8533939196966855\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be reborn in, $x) -> (Shakespeare, is truly reborn in, the work) -> the work (7312ms)\nWhen was Shakespeare born?\ta Taurean sun\t-6.990336036307624\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, bear under, $x) -> (William Shakespeare, were also born under, a Taurean sun) -> a Taurean sun (9669ms)\nWhen was Shakespeare born?\ta stage\t-7.001424319552297\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, have happen on, $x) -> (Shakespeare, might have happened on, a stage) -> a stage (7803ms)\nWhen was Shakespeare born?\tworks\t-7.052558858373416\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, have do on, $x) -> (Most likely Shakespeare, had done as much on, works) -> works (7691ms)\nWhen was Shakespeare born?\tfilm\t-7.110876482578709\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to migrate to, $x) -> (Shakespeare, migrated to, film) -> film (9731ms)\nWhen was Shakespeare born?\tschools\t-7.139105043145854\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> (Shakespeare & Company actor/teachers, travel to, schools) -> schools (9944ms)\nWhen was Shakespeare born?\tAustralia\t-7.437894564052428\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> ('s Royal Shakespeare Company, will travel to, Australia) -> Australia (9944ms)\nWhen was Shakespeare born?\tthe art\t-7.467012581356823\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was well educated in, the art) -> the art (7326ms)\nWhen was Shakespeare born?\tthe law\t-7.475462298979375\tWhen was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was clearly educated in, the law) -> the law (7342ms)\nWhen was Shakespeare born?\tthe day\t-7.599417655672119\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (art and Shakespeare, were to come earlier in, the day) -> the day (9651ms)\nWhen was Shakespeare born?\tthe time\t-7.887819733292124\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the time) -> the time (9669ms)\nWhen was Shakespeare born?\tthe home\t-8.512044468790119\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the home) -> the home (9695ms)\nWhen was Shakespeare born?\tthe house\t-8.512044468790119\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the house) -> the house (9694ms)\nWhen was Shakespeare born?\tthe boonies\t-8.862371843796582\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, come here to, $x) -> (Shakespeare--not, come out here to, the boonies) -> the boonies (9712ms)\nWhen was Shakespeare born?\tthe outskirts\t-9.265137232282406\tWhen was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, grow up on, $x) -> (William Shakespeare?s mother, grew up on, the outskirts) -> the outskirts (7747ms)\nWhat year did Patsy Cline die?\t1963\t-3.065239147801842\tWhat year did Patsy Cline die? -> When did Patsy Cline die? -> $x: (Patsy Cline, did die in, $x) -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, 1963) -> 1963 (9401ms)\nWhat year did Patsy Cline die?\tan airplane crash\t-5.761113907110156\tWhat year did Patsy Cline die? -> When did Patsy Cline die? -> $x: (Patsy Cline, did die in, $x) -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, an airplane crash) -> an airplane crash (9401ms)\nWhat year did Patsy Cline die?\ta plane crash\t-5.800091084416808\tWhat year did Patsy Cline die? -> When did Patsy Cline die? -> $x: (Patsy Cline, did die in, $x) -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, a plane crash) -> a plane crash (9401ms)\nWhat year did Patsy Cline die?\tage 30\t-8.465325993384916\tWhat year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what do patsy cline die ? -> $x: (patsy cline, die, $x) -> (legendary country singer Patsy Cline, died at, age 30) -> age 30 (9495ms)\nWhat year did Patsy Cline die?\t1932\t-8.9208146136533\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, was born in, 1932) -> 1932 (12723ms)\nWhat year did Patsy Cline die?\t1967\t-9.194219030367515\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (This Patsy Cline primer, was first released in, 1967) -> 1967 (12723ms)\nWhat year did Patsy Cline die?\tthe 1950 's\t-9.924329209561328\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (8:35pm Patsy Cline, was a famous singer in, the 1950 's) -> the 1950 's (12723ms)\nWhat year did Patsy Cline die?\tThe crash\t-10.271730257267025\tWhat year did Patsy Cline die? -> When did Patsy Cline die? -> $x: (Patsy Cline, did die in, $x) -> $x: (patsy cline, die in, $x) -> $x: ($x, claim the life of, patsy cline) -> (The crash, also claimed the life of, Patsy Cline) -> The crash (9698ms)\nWhat year did Patsy Cline die?\t1962\t-10.27819961360871\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, met Elvis Presley in, 1962) -> 1962 (12723ms)\nWhat year did Patsy Cline die?\treverb\t-10.993972394378593\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, drenched in, reverb) -> reverb (12723ms)\nWhat year did Patsy Cline die?\tFairfax\t-11.09361018761405\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, supposedly performed at in, Fairfax) -> Fairfax (12841ms)\nWhat year did Patsy Cline die?\tAge 30\t-11.134990766844322\tWhat year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what time do patsy cline die ? -> $x: ($x, instance of, time) (patsy cline, die, $x) -> (Age 30, Instance Of, good time) (legendary country singer Patsy Cline, died at, age 30) -> Age 30 (12068ms)\nWhat year did Patsy Cline die?\ta field\t-11.255546320947527\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (a modern era Patsy Cline, stretched out in, a field) -> a field (12841ms)\nWhat year did Patsy Cline die?\tthe Shenandoah Valley\t-11.317674892151219\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, was born in, the Shenandoah Valley) -> the Shenandoah Valley (12841ms)\nWhat year did Patsy Cline die?\ta head-on collision\t-11.327465668797421\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, was a passenger in, a head-on collision) -> a head-on collision (12944ms)\nWhat year did Patsy Cline die?\tmind\t-11.384291370544833\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (the person singer Patsy Cline, had in, mind) -> mind (12944ms)\nWhat year did Patsy Cline die?\ta plane accident\t-11.395581167742396\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, met her death in, a plane accident) -> a plane accident (12943ms)\nWhat year did Patsy Cline die?\tSaturday\t-11.450538725033164\tWhat year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what year do patsy cline live ? -> $x: ($x, instance of, year) (patsy cline, live, $x) -> (Saturday, Instance Of, 12-year NFL veteran) (Patsy Cline & Connie Francis, will perform live on, Saturday) -> Saturday (12944ms)\nWhat year did Patsy Cline die?\tStages\t-11.78524981283733\tWhat year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what year do patsy cline live ? -> $x: ($x, instance of, year) (patsy cline, live, $x) -> (Stages, Instance Of, culmination of 11 year worth of training) (Patsy Cline, Live on, Stage) -> Stages (13085ms)\nWhat year did Patsy Cline die?\tpart\t-11.946035943472886\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, is sponsored in, part) -> part (13086ms)\nWhat year did Patsy Cline die?\tSaturdays\t-11.946760670889036\tWhat year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what year do patsy cline live ? -> $x: ($x, instance of, year) (patsy cline, live, $x) -> (Saturdays, Instance Of, year star) (Patsy Cline & Connie Francis, will perform live on, Saturday) -> Saturdays (13086ms)\nWhat year did Patsy Cline die?\tthe top 100 women\t-12.37424906131333\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy cline, was in, the top 100 women) -> the top 100 women (13085ms)\nWhat year did Patsy Cline die?\tthe water\t-12.860746244788512\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, is in, the water) -> the water (13133ms)\nWhat year did Patsy Cline die?\tthe history\t-12.96020247867843\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, ever performed in, the history) -> the history (13133ms)\nWhat year did Patsy Cline die?\tthe living room\t-13.280834550294136\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (patsy cline, is singing in, the living room) -> the living room (13133ms)\nWhat year did Patsy Cline die?\tthe background\t-13.389456283288379\tWhat year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline?s ?Your Cheatin? Heart ?, plays in, the background) -> the background (13133ms)\nWhat year did South Dakota become a state?\t1889\t-6.732682087243019\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became a state in, 1889) -> 1889 (6058ms)\nWhat year did South Dakota become a state?\t2009\t-7.440673422472682\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, was the only state in, 2009) -> 2009 (6059ms)\nWhat year did South Dakota become a state?\tNovember 2 , 1889\t-7.826184465020908\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became a state on, November 2 , 1889) -> November 2 , 1889 (6059ms)\nWhat year did South Dakota become a state?\tNov. 2 , 1889\t-8.33750639060167\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the 40th state on, Nov. 2 , 1889) -> Nov. 2 , 1889 (6140ms)\nWhat year did South Dakota become a state?\tThe Mount Rushmore State\t-8.34571913149229\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> (South Dakota, Nickname, The Mount Rushmore State) -> The Mount Rushmore State (6140ms)\nWhat year did South Dakota become a state?\tNovember 2\t-8.375884960077604\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became a state on, November 2) -> November 2 (6140ms)\nWhat year did South Dakota become a state?\tpublic health\t-8.942752743472528\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, state, public health) -> public health (6386ms)\nWhat year did South Dakota become a state?\tthe 49\t-9.081296649767268\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the only state of, the 49) -> the 49 (6386ms)\nWhat year did South Dakota become a state?\t1912\t-9.088378033148121\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, go back to, 1912) -> 1912 (6386ms)\nWhat year did South Dakota become a state?\tNorth Dakota\t-9.171532595514412\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (SOUTH DAKOTA, is a state that is bordered by the state, North Dakota) -> North Dakota (6386ms)\nWhat year did South Dakota become a state?\t26715 South Dakota\t-9.174953800231236\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, name after, south dakota) -> (26715 South Dakota, Named after, South Dakota) -> 26715 South Dakota (9139ms)\nWhat year did South Dakota become a state?\tusa...\t-9.314474774630042\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (SOUTH DAKOTA, is a state or province located in the geopolitical location, usa...) -> usa... (6386ms)\nWhat year did South Dakota become a state?\tUs\t-9.314474774630042\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (SOUTH DAKOTA, is a state or province located in the geopolitical location, Us) -> Us (6420ms)\nWhat year did South Dakota become a state?\tthe U.S.\t-9.349040039617043\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the first state in, the U.S.) -> the U.S. (6420ms)\nWhat year did South Dakota become a state?\tno-fault divorce\t-9.384464521404983\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, was the last state to allow, no-fault divorce) -> no-fault divorce (6420ms)\nWhat year did South Dakota become a state?\tSouth Dakota Republican primary, 2012\t-9.384987359642547\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (United States presidential election in South Dakota, 2012, Also known as, South Dakota Republican primary, 2012) -> South Dakota Republican primary, 2012 (10084ms)\nWhat year did South Dakota become a state?\tU . S .\t-9.385945864187857\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (SOUTH DAKOTA, is a state or province located in the geopolitical location, U . S .) -> U . S . (6420ms)\nWhat year did South Dakota become a state?\tEmergency\t-9.388592702239741\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, declared a State of, Emergency) -> Emergency (6420ms)\nWhat year did South Dakota become a state?\tOhio\t-9.409309771375607\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, joins the States of, Ohio) -> Ohio (6420ms)\nWhat year did South Dakota become a state?\tMount Rushmore\t-9.422769493701168\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the state of, Mount Rushmore) -> Mount Rushmore (6450ms)\nWhat year did South Dakota become a state?\tAmericans\t-9.433862392621085\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a popular state among, Americans) -> Americans (6450ms)\nWhat year did South Dakota become a state?\tDemocrats\t-9.458737127738404\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (Montana and South Dakota, are the last states for, Democrats) -> Democrats (6450ms)\nWhat year did South Dakota become a state?\tthe USA\t-9.571922479446858\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, becomes the 40th state of, the USA) -> the USA (6450ms)\nWhat year did South Dakota become a state?\tUnited States House of Representatives elections in South Dakota, 2004\t-9.59940062831599\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (United States House of Representatives election in South Dakota, 2004, Also known as, United States House of Representatives elections in South Dakota, 2004) -> United States House of Representatives elections in South Dakota, 2004 (10085ms)\nWhat year did South Dakota become a state?\tthe Roe\t-9.613479767321348\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the first state since, the Roe) -> the Roe (6450ms)\nWhat year did South Dakota become a state?\tthe Union\t-9.617508552938418\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the 40th state of, the Union) -> the Union (6450ms)\nWhat year did South Dakota become a state?\tfew urban areas\t-9.625175515281626\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a rural state with, few urban areas) -> few urban areas (6474ms)\nWhat year did South Dakota become a state?\tthe United States\t-9.631099138025203\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the 40th state of, the United States) -> the United States (6474ms)\nWhat year did South Dakota become a state?\ta small population\t-9.66830000931917\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a state with, a small population) -> a small population (6474ms)\nWhat year did South Dakota become a state?\tthe Midwestern region\t-9.674682776748016\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a state located in, the Midwestern region) -> the Midwestern region (6474ms)\nWhat year did South Dakota become a state?\tColorado permission\t-9.704157567839243\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, have given the State of, Colorado permission) -> Colorado permission (6474ms)\nWhat year did South Dakota become a state?\tthe US.\t-9.723609932174842\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the most racist state in, the US.) -> the US. (6474ms)\nWhat year did South Dakota become a state?\ta Meharry graduate\t-9.730395014569492\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the only state without, a Meharry graduate) -> a Meharry graduate (6510ms)\nWhat year did South Dakota become a state?\tan Affiliate\t-9.741889595890632\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, will become the 41st State with, an Affiliate) -> an Affiliate (6510ms)\nWhat year did South Dakota become a state?\tcourt\t-9.821433201574962\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, had taken the state to, court) -> court (6511ms)\nWhat year did South Dakota become a state?\tthe PPACA lawsuit\t-9.862303772648355\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, joined other states in, the PPACA lawsuit) -> the PPACA lawsuit (6511ms)\nWhat year did South Dakota become a state?\tSouth Dakota\t-9.865680093229207\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (26715 South Dakota, Named after, South Dakota) -> South Dakota (10084ms)\nWhat year did South Dakota become a state?\tBlue\t-9.930653811009039\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (South Dakota State University, Colors, Blue) -> Blue (10085ms)\nWhat year did South Dakota become a state?\tWhite\t-9.930653811009039\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (University of South Dakota, Colors, White) -> White (10180ms)\nWhat year did South Dakota become a state?\tJackrabbit\t-9.930653811009039\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, mascot, $x) -> (South Dakota State University, Mascot, Jackrabbit) -> Jackrabbit (9835ms)\nWhat year did South Dakota become a state?\tYellow\t-9.930653811009039\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (South Dakota State University, Colors, Yellow) -> Yellow (10084ms)\nWhat year did South Dakota become a state?\tVermilion\t-9.930653811009039\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (University of South Dakota, Colors, Vermilion) -> Vermilion (10180ms)\nWhat year did South Dakota become a state?\tCoyotes\t-9.930653811009039\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, mascot, $x) -> (University of South Dakota, Mascot, Coyotes) -> Coyotes (9834ms)\nWhat year did South Dakota become a state?\tThe Volante\t-9.985631572207359\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (The Volante, School, University of South Dakota) -> The Volante (9087ms)\nWhat year did South Dakota become a state?\tSD School For The Deaf\t-9.985631572207359\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (SD School For The Deaf, Schools, South Dakota School for the Deaf) -> SD School For The Deaf (9087ms)\nWhat year did South Dakota become a state?\tan area\t-9.9879883690214\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (Pierre South Dakota, is the 16th largest state with, an area) -> an area (6537ms)\nWhat year did South Dakota become a state?\t1977\t-10.02793866560498\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, identify, $x) -> (South Dakota, was identified in, 1977) -> 1977 (7800ms)\nWhat year did South Dakota become a state?\tPublic school\t-10.032755367520203\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (Public school, Schools of this kind, University of South Dakota) -> Public school (9086ms)\nWhat year did South Dakota become a state?\tPublic university\t-10.032755367520203\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (Public university, Schools of this kind, University of South Dakota) -> Public university (9086ms)\nWhat year did South Dakota become a state?\tSpottswood\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Spottswood, Also known as, Spottswood, South Dakota) -> Spottswood (9937ms)\nWhat year did South Dakota become a state?\tSouth Shore\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (South Shore, Also known as, South Shore, South Dakota) -> South Shore (9369ms)\nWhat year did South Dakota become a state?\tLucerne\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lucerne, Also known as, Lucerne, South Dakota) -> Lucerne (9453ms)\nWhat year did South Dakota become a state?\tBadger\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Badger, Also known as, Badger, South Dakota) -> Badger (9453ms)\nWhat year did South Dakota become a state?\tYankton\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Yankton, Also known as, Yankton, South Dakota) -> Yankton (9937ms)\nWhat year did South Dakota become a state?\tManchester\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Manchester, Also known as, Manchester, South Dakota) -> Manchester (9662ms)\nWhat year did South Dakota become a state?\tRamona\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ramona, Also known as, Ramona, South Dakota) -> Ramona (9535ms)\nWhat year did South Dakota become a state?\tDupree\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Dupree, Also known as, Dupree, South Dakota) -> Dupree (10777ms)\nWhat year did South Dakota become a state?\tPukwana\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Pukwana, Also known as, Pukwana, South Dakota) -> Pukwana (9535ms)\nWhat year did South Dakota become a state?\tAjax\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ajax, Also known as, Ajax, South Dakota) -> Ajax (9834ms)\nWhat year did South Dakota become a state?\tWhitewood\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Whitewood, Also known as, Whitewood, South Dakota) -> Whitewood (9535ms)\nWhat year did South Dakota become a state?\tSherman\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Sherman, Also known as, Sherman, South Dakota) -> Sherman (9662ms)\nWhat year did South Dakota become a state?\tRudolph\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Rudolph, Also known as, Rudolph, South Dakota) -> Rudolph (9937ms)\nWhat year did South Dakota become a state?\tTigerville\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Tigerville, Also known as, Tigerville, South Dakota) -> Tigerville (9535ms)\nWhat year did South Dakota become a state?\tKennedyville\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kennedyville, Also known as, Kennedyville, South Dakota) -> Kennedyville (9453ms)\nWhat year did South Dakota become a state?\tFairview\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Fairview, Also known as, Fairview, South Dakota) -> Fairview (10180ms)\nWhat year did South Dakota become a state?\tLadner\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ladner, Also known as, Ladner, South Dakota) -> Ladner (9662ms)\nWhat year did South Dakota become a state?\tBeardsley\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Beardsley, Also known as, Beardsley, South Dakota) -> Beardsley (10383ms)\nWhat year did South Dakota become a state?\tLittleburg\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Littleburg, Also known as, Littleburg, South Dakota) -> Littleburg (9536ms)\nWhat year did South Dakota become a state?\tConde\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Conde, Also known as, Conde, South Dakota) -> Conde (9139ms)\nWhat year did South Dakota become a state?\tCresbard\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Cresbard, Also known as, Cresbard, South Dakota) -> Cresbard (10383ms)\nWhat year did South Dakota become a state?\tManderson\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Manderson, Also known as, Manderson, South Dakota) -> Manderson (9453ms)\nWhat year did South Dakota become a state?\tWallace\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Wallace, Also known as, Wallace, South Dakota) -> Wallace (10383ms)\nWhat year did South Dakota become a state?\tRoubaix\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Roubaix, Also known as, Roubaix, South Dakota) -> Roubaix (10777ms)\nWhat year did South Dakota become a state?\tHighmore\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Highmore, Also known as, Highmore, South Dakota) -> Highmore (9453ms)\nWhat year did South Dakota become a state?\tHudson\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Hudson, Also known as, Hudson, South Dakota) -> Hudson (10180ms)\nWhat year did South Dakota become a state?\tBurke\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Burke, Also known as, Burke, South Dakota) -> Burke (9663ms)\nWhat year did South Dakota become a state?\tGreenway\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Greenway, Also known as, Greenway, South Dakota) -> Greenway (9937ms)\nWhat year did South Dakota become a state?\tGallup\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Gallup, Also known as, Gallup, South Dakota) -> Gallup (10302ms)\nWhat year did South Dakota become a state?\tLodgepole\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lodgepole, Also known as, Lodgepole, South Dakota) -> Lodgepole (9369ms)\nWhat year did South Dakota become a state?\tKidder\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kidder, Also known as, Kidder, South Dakota) -> Kidder (9139ms)\nWhat year did South Dakota become a state?\tRedfern\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Redfern, Also known as, Redfern, South Dakota) -> Redfern (9937ms)\nWhat year did South Dakota become a state?\tFourmile\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Fourmile, Also known as, Fourmile, South Dakota) -> Fourmile (9139ms)\nWhat year did South Dakota become a state?\tFerney\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ferney, Also known as, Ferney, South Dakota) -> Ferney (9453ms)\nWhat year did South Dakota become a state?\tWentworth\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Wentworth, Also known as, Wentworth, South Dakota) -> Wentworth (9834ms)\nWhat year did South Dakota become a state?\tGrenville\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Grenville, Also known as, Grenville, South Dakota) -> Grenville (9369ms)\nWhat year did South Dakota become a state?\tMarlow\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Marlow, Also known as, Marlow, South Dakota) -> Marlow (10777ms)\nWhat year did South Dakota become a state?\tSouth Dakota Park\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (South Dakota Park, Also known as, South Dakota Park, South Dakota) -> South Dakota Park (9535ms)\nWhat year did South Dakota become a state?\tGorman\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Gorman, Also known as, Gorman, South Dakota) -> Gorman (10303ms)\nWhat year did South Dakota become a state?\tDelmont\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Delmont, Also known as, Delmont, South Dakota) -> Delmont (9834ms)\nWhat year did South Dakota become a state?\tOelrichs\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Oelrichs, Also known as, Oelrichs, South Dakota) -> Oelrichs (9834ms)\nWhat year did South Dakota become a state?\tRockyford\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Rockyford, Also known as, Rockyford, South Dakota) -> Rockyford (10383ms)\nWhat year did South Dakota become a state?\tPolo\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Polo, Also known as, Polo, South Dakota) -> Polo (9369ms)\nWhat year did South Dakota become a state?\tCanton\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Canton, Also known as, Canton, South Dakota) -> Canton (9369ms)\nWhat year did South Dakota become a state?\tDakota Dunes\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Dakota Dunes, Also known as, Dakota Dunes, South Dakota) -> Dakota Dunes (10777ms)\nWhat year did South Dakota become a state?\tStickney\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Stickney, Also known as, Stickney, South Dakota) -> Stickney (10302ms)\nWhat year did South Dakota become a state?\tColumbia\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Columbia, Also known as, Columbia, South Dakota) -> Columbia (10777ms)\nWhat year did South Dakota become a state?\tMeckling\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Meckling, Also known as, Meckling, South Dakota) -> Meckling (10180ms)\nWhat year did South Dakota become a state?\tDewey\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Dewey, Also known as, Dewey, South Dakota) -> Dewey (9139ms)\nWhat year did South Dakota become a state?\tNorris\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Norris, Also known as, Norris, South Dakota) -> Norris (9662ms)\nWhat year did South Dakota become a state?\tColome\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Colome, Also known as, Colome, South Dakota) -> Colome (10303ms)\nWhat year did South Dakota become a state?\tStamford\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Stamford, Also known as, Stamford, South Dakota) -> Stamford (9936ms)\nWhat year did South Dakota become a state?\tPromise\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Promise, Also known as, Promise, South Dakota) -> Promise (10383ms)\nWhat year did South Dakota become a state?\tYale\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Yale, Also known as, Yale, South Dakota) -> Yale (9139ms)\nWhat year did South Dakota become a state?\tLakeport\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lakeport, Also known as, Lakeport, South Dakota) -> Lakeport (10383ms)\nWhat year did South Dakota become a state?\tParker\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Parker, Also known as, Parker, South Dakota) -> Parker (10180ms)\nWhat year did South Dakota become a state?\tKyle\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kyle, Also known as, Kyle, South Dakota) -> Kyle (9369ms)\nWhat year did South Dakota become a state?\tCuthbert\t-10.059954531307163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Cuthbert, Also known as, Cuthbert, South Dakota) -> Cuthbert (10302ms)\nWhat year did South Dakota become a state?\tunemployment\t-10.065799441378767\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, were the only states with, unemployment) -> unemployment (6537ms)\nWhat year did South Dakota become a state?\tGold\t-10.073595990124668\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (South Dakota School of Mines and Technology, Colors, Gold) -> Gold (10777ms)\nWhat year did South Dakota become a state?\tSharps Corner\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Sharps Corner, Also known as, Sharps Corner, South Dakota) -> Sharps Corner (10828ms)\nWhat year did South Dakota become a state?\tWest Britton\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (West Britton, Also known as, West Britton, South Dakota) -> West Britton (10828ms)\nWhat year did South Dakota become a state?\tPine Ridge\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Pine Ridge, Also known as, Pine Ridge, South Dakota) -> Pine Ridge (11102ms)\nWhat year did South Dakota become a state?\tRiverside Colony\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Riverside Colony, Also known as, Riverside Colony, South Dakota) -> Riverside Colony (11240ms)\nWhat year did South Dakota become a state?\tGlad Valley\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Glad Valley, Also known as, Glad Valley, South Dakota) -> Glad Valley (10828ms)\nWhat year did South Dakota become a state?\tLakota Homes\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lakota Homes, Also known as, Lakota Homes, South Dakota) -> Lakota Homes (11059ms)\nWhat year did South Dakota become a state?\tUnion Center\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Union Center, Also known as, Union Center, South Dakota) -> Union Center (11059ms)\nWhat year did South Dakota become a state?\tForest City\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Forest City, Also known as, Forest City, South Dakota) -> Forest City (11240ms)\nWhat year did South Dakota become a state?\tSaint Onge\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Saint Onge, Also known as, Saint Onge, South Dakota) -> Saint Onge (11166ms)\nWhat year did South Dakota become a state?\tCloverleaf Colony\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Cloverleaf Colony, Also known as, Cloverleaf Colony, South Dakota) -> Cloverleaf Colony (11059ms)\nWhat year did South Dakota become a state?\tWolf Creek\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Wolf Creek, Also known as, Wolf Creek, South Dakota) -> Wolf Creek (10942ms)\nWhat year did South Dakota become a state?\tBox Elder\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Box Elder, Also known as, Box Elder, South Dakota) -> Box Elder (11166ms)\nWhat year did South Dakota become a state?\tLake Andes\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lake Andes, Also known as, Lake Andes, South Dakota) -> Lake Andes (10942ms)\nWhat year did South Dakota become a state?\tCrow Creek\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Crow Creek, Also known as, Crow Creek, South Dakota) -> Crow Creek (10942ms)\nWhat year did South Dakota become a state?\tKones Corner\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kones Corner, Also known as, Kones Corner, South Dakota) -> Kones Corner (11285ms)\nWhat year did South Dakota become a state?\tMadsen Beach\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Madsen Beach, Also known as, Madsen Beach, South Dakota) -> Madsen Beach (11240ms)\nWhat year did South Dakota become a state?\tWounded Knee\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Wounded Knee, Also known as, Wounded Knee, South Dakota) -> Wounded Knee (11059ms)\nWhat year did South Dakota become a state?\tBuffalo Gap\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Buffalo Gap, Also known as, Buffalo Gap, South Dakota) -> Buffalo Gap (11102ms)\nWhat year did South Dakota become a state?\tFroelich Addition\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Froelich Addition, Also known as, Froelich Addition, South Dakota) -> Froelich Addition (11102ms)\nWhat year did South Dakota become a state?\tLake Norden\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lake Norden, Also known as, Lake Norden, South Dakota) -> Lake Norden (10942ms)\nWhat year did South Dakota become a state?\tBlack Hawk\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Black Hawk, Also known as, Black Hawk, South Dakota) -> Black Hawk (11059ms)\nWhat year did South Dakota become a state?\tDerian Subdivision\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Derian Subdivision, Also known as, Derian Subdivision, South Dakota) -> Derian Subdivision (11166ms)\nWhat year did South Dakota become a state?\tWilliams Subdivision\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Williams Subdivision, Also known as, Williams Subdivision, South Dakota) -> Williams Subdivision (11166ms)\nWhat year did South Dakota become a state?\tGederos Estates\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Gederos Estates, Also known as, Gederos Estates, South Dakota) -> Gederos Estates (11102ms)\nWhat year did South Dakota become a state?\tLower Brule\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lower Brule, Also known as, Lower Brule, South Dakota) -> Lower Brule (11240ms)\nWhat year did South Dakota become a state?\tWhite Butte\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (White Butte, Also known as, White Butte, South Dakota) -> White Butte (11240ms)\nWhat year did South Dakota become a state?\tIngberg Tracts\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ingberg Tracts, Also known as, Ingberg Tracts, South Dakota) -> Ingberg Tracts (11239ms)\nWhat year did South Dakota become a state?\tJohnsons Addition\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Johnsons Addition, Also known as, Johnsons Addition, South Dakota) -> Johnsons Addition (11166ms)\nWhat year did South Dakota become a state?\tHayward Addition\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Hayward Addition, Also known as, Hayward Addition, South Dakota) -> Hayward Addition (11102ms)\nWhat year did South Dakota become a state?\tMawl Springs\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Mawl Springs, Also known as, Mawl Springs, South Dakota) -> Mawl Springs (11285ms)\nWhat year did South Dakota become a state?\tKadoka Junction\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kadoka Junction, Also known as, Kadoka Junction, South Dakota) -> Kadoka Junction (11285ms)\nWhat year did South Dakota become a state?\tGann Valley\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Gann Valley, Also known as, Gann Valley, South Dakota) -> Gann Valley (11102ms)\nWhat year did South Dakota become a state?\tHiawatha Beach\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Hiawatha Beach, Also known as, Hiawatha Beach, South Dakota) -> Hiawatha Beach (11166ms)\nWhat year did South Dakota become a state?\tKargas Subdivision\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kargas Subdivision, Also known as, Kargas Subdivision, South Dakota) -> Kargas Subdivision (10942ms)\nWhat year did South Dakota become a state?\tShady Beach\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Shady Beach, Also known as, Shady Beach, South Dakota) -> Shady Beach (11286ms)\nWhat year did South Dakota become a state?\tStone Bridge\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Stone Bridge, Also known as, Stone Bridge, South Dakota) -> Stone Bridge (10942ms)\nWhat year did South Dakota become a state?\tFive Points\t-10.107078326620007\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Five Points, Also known as, Five Points, South Dakota) -> Five Points (11059ms)\nWhat year did South Dakota become a state?\tDark blue\t-10.109331534903577\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (South Dakota School of Mines and Technology, Colors, Dark blue) -> Dark blue (11340ms)\nWhat year did South Dakota become a state?\tGrubby the Miner\t-10.109331534903577\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (Grubby the Miner, School, South Dakota School of Mines and Technology) -> Grubby the Miner (11285ms)\nWhat year did South Dakota become a state?\tState school\t-10.109331534903577\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (State school, Schools of this kind, South Dakota School for the Deaf) -> State school (11340ms)\nWhat year did South Dakota become a state?\tinnovation\t-10.145684171323056\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a state of, innovation) -> innovation (6584ms)\nWhat year did South Dakota become a state?\t0121\t-10.15391357115952\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (the SOUTH DAKOTA, was seen at about, 0121) -> 0121 (8043ms)\nWhat year did South Dakota become a state?\tStanding Rock Sioux Reservation births and deaths, 1924-1932\t-10.221507701298137\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Standing Rock Reservation: North and South Dakota Standing Rock Sioux Indians birth and death rolls, 1924-1932, Also known as, Standing Rock Sioux Reservation births and deaths, 1924-1932) -> Standing Rock Sioux Reservation births and deaths, 1924-1932 (11394ms)\nWhat year did South Dakota become a state?\temergency\t-10.26712010991899\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota officials, declared a state of, emergency) -> emergency (6583ms)\nWhat year did South Dakota become a state?\t1981\t-10.30162495019165\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (South Dakota, could be traced back to, 1981) -> 1981 (11393ms)\nWhat year did South Dakota become a state?\textremes\t-10.340508529851315\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a state vivid in, extremes) -> extremes (6583ms)\nWhat year did South Dakota become a state?\tThe Pasque Flower\t-10.35089867333076\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (The Pasque Flower, is the state flower of, South Dakota) -> The Pasque Flower (6584ms)\nWhat year did South Dakota become a state?\tAmerica the beautiful\t-10.433803307455731\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (America the beautiful, Also known as, South Dakota.) -> America the beautiful (11393ms)\nWhat year did South Dakota become a state?\t1-1\t-10.43944129815812\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota State, went, 1-1) -> 1-1 (6584ms)\nWhat year did South Dakota become a state?\tThe Ring-Necked Pheasant\t-10.519940148442815\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (The Ring-Necked Pheasant, is the state bird of, South Dakota) -> The Ring-Necked Pheasant (6583ms)\nWhat year did South Dakota become a state?\tHealth Insurance\t-10.524306204030983\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, Go, Health Insurance) -> Health Insurance (6690ms)\nWhat year did South Dakota become a state?\tPierre\t-10.538348614668802\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (Pierre, is the state capital of, South Dakota) -> Pierre (6690ms)\nWhat year did South Dakota become a state?\tCanada\t-10.540019980547573\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota exports, go to, Canada) -> Canada (6690ms)\nWhat year did South Dakota become a state?\tprivate Pierre\t-10.553547515427697\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (private Pierre, is the state capital of, South Dakota) -> private Pierre (6690ms)\nWhat year did South Dakota become a state?\trunoffs\t-10.55494942291526\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the only non-southern state to use, runoffs) -> runoffs (6690ms)\nWhat year did South Dakota become a state?\t10-for-30\t-10.555271192366032\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota state, went, 10-for-30) -> 10-for-30 (6769ms)\nWhat year did South Dakota become a state?\tAmerican Pasqueflower\t-10.605650577392678\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (American Pasqueflower, is the state flower of, South Dakota) -> American Pasqueflower (6769ms)\nWhat year did South Dakota become a state?\tThe Pasque flower\t-10.626051696256631\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (The Pasque flower, is also the state flower of, South Dakota) -> The Pasque flower (6769ms)\nWhat year did South Dakota become a state?\tSD\t-10.629201505606837\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, Also known as, SD) -> SD (11393ms)\nWhat year did South Dakota become a state?\tS Dak\t-10.684179266805156\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, Also known as, S Dak) -> S Dak (11393ms)\nWhat year did South Dakota become a state?\tSouth Dakota Park, South Dakota\t-10.684179266805156\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Park, Also known as, South Dakota Park, South Dakota) -> South Dakota Park, South Dakota (11393ms)\nWhat year did South Dakota become a state?\tBeijing\t-10.68509311495506\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went to, Beijing) -> Beijing (6768ms)\nWhat year did South Dakota become a state?\tState Capitol Building\t-10.731303062118\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota State Capitol, Also known as, State Capitol Building) -> State Capitol Building (11442ms)\nWhat year did South Dakota become a state?\tEZMONEY South Dakota, Inc\t-10.731303062118\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (EZMONEY South Dakota Inc, Also known as, EZMONEY South Dakota, Inc) -> EZMONEY South Dakota, Inc (11442ms)\nWhat year did South Dakota become a state?\tHoward, South Dakota Tornado\t-10.731303062118\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (1884 Howard, South Dakota tornado, Also known as, Howard, South Dakota Tornado) -> Howard, South Dakota Tornado (11442ms)\nWhat year did South Dakota become a state?\tSOYBEAN PROCESSORS LLC\t-10.731303062118\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (SOUTH DAKOTA SOYBEAN PROCESSORS LLC, Also known as, SOYBEAN PROCESSORS LLC) -> SOYBEAN PROCESSORS LLC (11442ms)\nWhat year did South Dakota become a state?\tSDSU\t-10.731303062118\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota State University, Also known as, SDSU) -> SDSU (11442ms)\nWhat year did South Dakota become a state?\tMount Rushmore State\t-10.731303062118\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, Also known as, Mount Rushmore State) -> Mount Rushmore State (11442ms)\nWhat year did South Dakota become a state?\tterms\t-10.731646032878505\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is 46th largest state in, terms) -> terms (6800ms)\nWhat year did South Dakota become a state?\tPresentation College, Aberdeen, South Dakota Campus\t-10.772143684722465\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Presentation College, Aberdeen, South Dakota, Also known as, Presentation College, Aberdeen, South Dakota Campus) -> Presentation College, Aberdeen, South Dakota Campus (11520ms)\nWhat year did South Dakota become a state?\tAlden Township, South Dakota\t-10.772143684722465\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Alden Township, Hand County, South Dakota, Also known as, Alden Township, South Dakota) -> Alden Township, South Dakota (11520ms)\nWhat year did South Dakota become a state?\tLamar Advertising of South Dakota Inc\t-10.772143684722465\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (LAMAR ADVERTISING OF SOUTH DAKOTA INC, Also known as, Lamar Advertising of South Dakota Inc) -> Lamar Advertising of South Dakota Inc (11520ms)\nWhat year did South Dakota become a state?\tFirst National Bank of South Dakota\t-10.772143684722465\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (First National Bank South Dakota, Also known as, First National Bank of South Dakota) -> First National Bank of South Dakota (11520ms)\nWhat year did South Dakota become a state?\tSouth Dakota State Capitol, Pierre\t-10.772143684722465\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota State Capitol, Also known as, South Dakota State Capitol, Pierre) -> South Dakota State Capitol, Pierre (11520ms)\nWhat year did South Dakota become a state?\tOmnicare Pharmacy of South Dakota LLC\t-10.772143684722465\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (OMNICARE PHARMACY OF SOUTH DAKOTA LLC, Also known as, Omnicare Pharmacy of South Dakota LLC) -> Omnicare Pharmacy of South Dakota LLC (11520ms)\nWhat year did South Dakota become a state?\tTCI of South Dakota, Inc\t-10.772143684722465\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (TCI of South Dakota Inc, Also known as, TCI of South Dakota, Inc) -> TCI of South Dakota, Inc (11520ms)\nWhat year did South Dakota become a state?\tdrivers\t-10.780747484784563\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, was both the last state to impose, drivers) -> drivers (6799ms)\nWhat year did South Dakota become a state?\tthe nation\t-10.807692306904237\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, was the first state in, the nation) -> the nation (6799ms)\nWhat year did South Dakota become a state?\tUniversity of South Dakota, main campus\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (University of South Dakota, Also known as, University of South Dakota, main campus) -> University of South Dakota, main campus (11564ms)\nWhat year did South Dakota become a state?\tTCI Cablevision of South Dakota Inc\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (TCI Cablevision of South Dakota, Inc, Also known as, TCI Cablevision of South Dakota Inc) -> TCI Cablevision of South Dakota Inc (11622ms)\nWhat year did South Dakota become a state?\tUMB Trust Co of South Dakota\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (UMB Trust Company of South Dakota, Also known as, UMB Trust Co of South Dakota) -> UMB Trust Co of South Dakota (11564ms)\nWhat year did South Dakota become a state?\tSouth Dakota State University, main campus\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota State University, Also known as, South Dakota State University, main campus) -> South Dakota State University, main campus (11622ms)\nWhat year did South Dakota become a state?\tPresentation College, Eagle Butte, South Dakota Campus\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Presentation College, Eagle Butte, South Dakota, Also known as, Presentation College, Eagle Butte, South Dakota Campus) -> Presentation College, Eagle Butte, South Dakota Campus (11622ms)\nWhat year did South Dakota become a state?\tSaga Communications of South Dakota LLC\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Saga Communications of South Dakota, LLC, Also known as, Saga Communications of South Dakota LLC) -> Saga Communications of South Dakota LLC (11622ms)\nWhat year did South Dakota become a state?\tHeart Hospital of South Dakota LLC\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Heart Hospital of South Dakota, LLC, Also known as, Heart Hospital of South Dakota LLC) -> Heart Hospital of South Dakota LLC (11564ms)\nWhat year did South Dakota become a state?\tWaste Management of South Dakota Inc\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Waste Management of South Dakota, Inc, Also known as, Waste Management of South Dakota Inc) -> Waste Management of South Dakota Inc (11622ms)\nWhat year did South Dakota become a state?\tGateHouse Media South Dakota Holdings Inc\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (GateHouse Media South Dakota Holdings, Inc, Also known as, GateHouse Media South Dakota Holdings Inc) -> GateHouse Media South Dakota Holdings Inc (11564ms)\nWhat year did South Dakota become a state?\tWASTE CONNECTIONS OF SOUTH DAKOTA, INC\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (WASTE CONNECTIONS OF SOUTH DAKOTA INC, Also known as, WASTE CONNECTIONS OF SOUTH DAKOTA, INC) -> WASTE CONNECTIONS OF SOUTH DAKOTA, INC (11564ms)\nWhat year did South Dakota become a state?\tPortrait of America (Television program)\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, Also known as, Portrait of America (Television program)) -> Portrait of America (Television program) (11564ms)\nWhat year did South Dakota become a state?\tAmerican Telecasting of South Dakota, Inc\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (American Telecasting of South Dakota Inc, Also known as, American Telecasting of South Dakota, Inc) -> American Telecasting of South Dakota, Inc (11622ms)\nWhat year did South Dakota become a state?\tSouth Dakota Association of the Deaf Inc\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Association of the Deaf, Also known as, South Dakota Association of the Deaf Inc) -> South Dakota Association of the Deaf Inc (11564ms)\nWhat year did South Dakota become a state?\tSpink, South Dakota\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Spink Township, Union County, South Dakota, Also known as, Spink, South Dakota) -> Spink, South Dakota (11622ms)\nWhat year did South Dakota become a state?\tWells Fargo Financial South Dakota, Inc\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Wells Fargo Financial South Dakota Inc, Also known as, Wells Fargo Financial South Dakota, Inc) -> Wells Fargo Financial South Dakota, Inc (11564ms)\nWhat year did South Dakota become a state?\tLamar Advertising of South Dakota, Inc\t-10.807879229501374\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (LAMAR ADVERTISING OF SOUTH DAKOTA INC, Also known as, Lamar Advertising of South Dakota, Inc) -> Lamar Advertising of South Dakota, Inc (11520ms)\nWhat year did South Dakota become a state?\ta step\t-10.830499241478568\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota lawmakers, went, a step) -> a step (6799ms)\nWhat year did South Dakota become a state?\tBowling Green Inn of South Dakota Inc\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Bowling Green Inn of South Dakota, Inc, Also known as, Bowling Green Inn of South Dakota Inc) -> Bowling Green Inn of South Dakota Inc (11725ms)\nWhat year did South Dakota become a state?\tBurlington Coat Factory of South Dakota, LLC\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Burlington Coat Factory of South Dakota LLC, Also known as, Burlington Coat Factory of South Dakota, LLC) -> Burlington Coat Factory of South Dakota, LLC (11725ms)\nWhat year did South Dakota become a state?\tCash America Net of South Dakota LLC\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Cash America Net of South Dakota, LLC, Also known as, Cash America Net of South Dakota LLC) -> Cash America Net of South Dakota LLC (11725ms)\nWhat year did South Dakota become a state?\tOrigen Financial of South Dakota, L.L.C.\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Origen Financial of South Dakota LLC, Also known as, Origen Financial of South Dakota, L.L.C.) -> Origen Financial of South Dakota, L.L.C. (11725ms)\nWhat year did South Dakota become a state?\tSBS Insurance Agency of South Dakota Inc\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (SBS Insurance Agency of South Dakota, Inc, Also known as, SBS Insurance Agency of South Dakota Inc) -> SBS Insurance Agency of South Dakota Inc (11794ms)\nWhat year did South Dakota become a state?\tFamily Dollar Stores of South Dakota, Inc\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Family Dollar Stores of South Dakota Inc, Also known as, Family Dollar Stores of South Dakota, Inc) -> Family Dollar Stores of South Dakota, Inc (11725ms)\nWhat year did South Dakota become a state?\tUniversity of South Dakota School of Law, Vermillion\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (University of South Dakota School of Law, Also known as, University of South Dakota School of Law, Vermillion) -> University of South Dakota School of Law, Vermillion (11794ms)\nWhat year did South Dakota become a state?\tSouth Dakota Amateur Baseball Hall of Fame Inc\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Amateur Baseball Hall of Fame, Also known as, South Dakota Amateur Baseball Hall of Fame Inc) -> South Dakota Amateur Baseball Hall of Fame Inc (11794ms)\nWhat year did South Dakota become a state?\tSDSM&T\t-10.839410592541586\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota School of Mines and Technology, Also known as, SDSM&T) -> SDSM&T (11794ms)\nWhat year did South Dakota become a state?\tWashington DC\t-10.839789621523819\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, is going on in, Washington DC) -> Washington DC (6798ms)\nWhat year did South Dakota become a state?\tChapter 13\t-10.844840203804944\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South Dakota, chose, Chapter 13) -> Chapter 13 (11794ms)\nWhat year did South Dakota become a state?\tColorado and Wyoming.\t-10.849112550400113\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Colorado & Wyoming: with adjacent parts of Nebraska, South Dakota & Idaho : a geological field guidebook, Also known as, Colorado and Wyoming.) -> Colorado and Wyoming. (11794ms)\nWhat year did South Dakota become a state?\tUniversity of South Dakota School of Law, main campus\t-10.867438470799552\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (University of South Dakota School of Law, Also known as, University of South Dakota School of Law, main campus) -> University of South Dakota School of Law, main campus (11794ms)\nWhat year did South Dakota become a state?\tSouth Dakota School for the Deaf, main campus\t-10.867438470799552\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota School for the Deaf, Also known as, South Dakota School for the Deaf, main campus) -> South Dakota School for the Deaf, main campus (11848ms)\nWhat year did South Dakota become a state?\tRussell Bridge\t-10.867438470799552\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Department of Transportation Bridge No. 14-088-170, Also known as, Russell Bridge) -> Russell Bridge (11848ms)\nWhat year did South Dakota become a state?\tUniversity of South Dakota - Springfield, main campus\t-10.867438470799552\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (University of South Dakota - Springfield, Also known as, University of South Dakota - Springfield, main campus) -> University of South Dakota - Springfield, main campus (11794ms)\nWhat year did South Dakota become a state?\tSouth Dakota School of Mines & Technology Hardrocker football\t-10.892516046082996\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota School of Mines and Technology Hardrockers football, Also known as, South Dakota School of Mines & Technology Hardrocker football) -> South Dakota School of Mines & Technology Hardrocker football (11937ms)\nWhat year did South Dakota become a state?\tSouth Dakota School of Mines and Technology, main campus\t-10.892516046082996\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota School of Mines and Technology, Also known as, South Dakota School of Mines and Technology, main campus) -> South Dakota School of Mines and Technology, main campus (11937ms)\nWhat year did South Dakota become a state?\tADVANCE AMERICA, CASH ADVANCE CENTERS OF SOUTH DAKOTA, INC\t-10.892516046082996\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (ADVANCE AMERICA CASH ADVANCE CENTERS OF SOUTH DAKOTA INC, Also known as, ADVANCE AMERICA, CASH ADVANCE CENTERS OF SOUTH DAKOTA, INC) -> ADVANCE AMERICA, CASH ADVANCE CENTERS OF SOUTH DAKOTA, INC (11937ms)\nWhat year did South Dakota become a state?\tPlanned Parenthood\t-10.914133035382658\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (Planned Parenthood, sued the state of, South Dakota) -> Planned Parenthood (6879ms)\nWhat year did South Dakota become a state?\tU Haul Co of South Dakota Inc\t-10.915085863838096\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (U-Haul Co. of South Dakota, Inc., Also known as, U Haul Co of South Dakota Inc) -> U Haul Co of South Dakota Inc (12161ms)\nWhat year did South Dakota become a state?\tMotor Carrier Services customer satisfaction assessment\t-10.935506175140329\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Motor Carrier Services 2006 customer satisfaction assessment: final report, Also known as, Motor Carrier Services customer satisfaction assessment) -> Motor Carrier Services customer satisfaction assessment (12294ms)\nWhat year did South Dakota become a state?\tNew species of Globidens\t-10.935506175140329\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (A new species of Globidens from South Dakota, and a review of globidentine mosasaurs, Also known as, New species of Globidens) -> New species of Globidens (12294ms)\nWhat year did South Dakota become a state?\tTHE SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO., INC.\t-10.935506175140329\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO INC, Also known as, THE SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO., INC.) -> THE SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO., INC. (12294ms)\nWhat year did South Dakota become a state?\tElection Day\t-10.95730592579691\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota citizens, will go to vote on, Election Day) -> Election Day (6879ms)\nWhat year did South Dakota become a state?\ta timber sale\t-10.99350019048917\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, chose to go forward with, a timber sale) -> a timber sale (6879ms)\nWhat year did South Dakota become a state?\tRestatement of the law of trusts, South Dakota annotations.\t-11.01404583399507\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota annotations to the Restatement of the law of trusts: as adopted and promulgated by the American Law Institute., Also known as, Restatement of the law of trusts, South Dakota annotations.) -> Restatement of the law of trusts, South Dakota annotations. (12358ms)\nWhat year did South Dakota become a state?\ta win\t-11.030591326360147\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went along with, a win) -> a win (6879ms)\nWhat year did South Dakota become a state?\tApril 2007\t-11.099128184418877\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, were used between, April 2007) -> April 2007 (12423ms)\nWhat year did South Dakota become a state?\tSioux Falls\t-11.126572601423504\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (Sioux Falls, covers the six-state region of, South Dakota) -> Sioux Falls (6879ms)\nWhat year did South Dakota become a state?\ta total ban\t-11.13034970789803\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, has gone from, a total ban) -> a total ban (6918ms)\nWhat year did South Dakota become a state?\tan election year\t-11.151962644126531\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, were going during, an election year) -> an election year (6918ms)\nWhat year did South Dakota become a state?\tRockies & Plains.\t-11.15746608059938\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Fodor's Rockies & Plains: Colorado, Nebraska, Utah, Wyoming, South Dakota, North Dakota, Montana, Also known as, Rockies & Plains.) -> Rockies & Plains. (12422ms)\nWhat year did South Dakota become a state?\tLauck\t-11.160121593780127\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went, Lauck) -> Lauck (6918ms)\nWhat year did South Dakota become a state?\ta special day\t-11.2219407384026\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, named, a special day) -> a special day (12423ms)\nWhat year did South Dakota become a state?\ta combined 3 percent decrease\t-11.23274910651889\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw, a combined 3 percent decrease) -> a combined 3 percent decrease (12423ms)\nWhat year did South Dakota become a state?\ta 44 percent rise\t-11.236541586984066\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw, a 44 percent rise) -> a 44 percent rise (12422ms)\nWhat year did South Dakota become a state?\tethanol production\t-11.238517322378987\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, goes towards, ethanol production) -> ethanol production (6946ms)\nWhat year did South Dakota become a state?\tthe union\t-11.245442507590523\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, has become the first state in, the union) -> the union (6946ms)\nWhat year did South Dakota become a state?\ta state\t-11.249474829836407\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, used to be, a state) -> a state (12423ms)\nWhat year did South Dakota become a state?\ta 44 % rise\t-11.271417530038196\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw, a 44 % rise) -> a 44 % rise (12423ms)\nWhat year did South Dakota become a state?\tone step\t-11.290257737910459\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, goes, one step) -> one step (6946ms)\nWhat year did South Dakota become a state?\tpage >\t-11.302115018367404\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, Go to, page >) -> page > (6946ms)\nWhat year did South Dakota become a state?\tDivision-I\t-11.30273624115008\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota State, went, Division-I) -> Division-I (6946ms)\nWhat year did South Dakota become a state?\t10,000\t-11.307126753859144\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, sees only, 10,000) -> 10,000 (12567ms)\nWhat year did South Dakota become a state?\t51 percent\t-11.30826612258824\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota, shot, 51 percent) -> 51 percent (12567ms)\nWhat year did South Dakota become a state?\tthe South Dakota Department\t-11.320840662800109\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, please go to, the South Dakota Department) -> the South Dakota Department (6946ms)\nWhat year did South Dakota become a state?\tTobacco free\t-11.326509854676072\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went, Tobacco free) -> Tobacco free (7020ms)\nWhat year did South Dakota become a state?\tSDCL 31-29-64\t-11.327967708344378\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> $x: (south dakota, set forth, $x) -> (South Dakota standards, are set forth in, SDCL 31-29-64) -> SDCL 31-29-64 (7019ms)\nWhat year did South Dakota become a state?\tformer Gov. Bill Janklow\t-11.3308927230735\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, goes to, former Gov. Bill Janklow) -> former Gov. Bill Janklow (7019ms)\nWhat year did South Dakota become a state?\ta record 32 enemy planes\t-11.335119906686984\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (the USS South Dakota, shot down, a record 32 enemy planes) -> a record 32 enemy planes (12567ms)\nWhat year did South Dakota become a state?\tCitibank (South Dakota) National Association\t-11.343912401184985\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Citibank (South Dakota), National Association, Also known as, Citibank (South Dakota) National Association) -> Citibank (South Dakota) National Association (12567ms)\nWhat year did South Dakota become a state?\tlive-blogging the debate\t-11.345142869304041\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota Politics, is going to be, live-blogging the debate) -> live-blogging the debate (7019ms)\nWhat year did South Dakota become a state?\tthe US Congress\t-11.346718934093163\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (the US Congress, gave back the state of, South Dakota) -> the US Congress (7019ms)\nWhat year did South Dakota become a state?\ta $ 95 processing fee\t-11.34764469926823\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, began charging, a $ 95 processing fee) -> a $ 95 processing fee (12567ms)\nWhat year did South Dakota become a state?\tState\t-11.354247912349361\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (State, shall mean the State of, South Dakota) -> State (7075ms)\nWhat year did South Dakota become a state?\tleaps and bounds\t-11.358041534094076\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, has gone, leaps and bounds) -> leaps and bounds (7075ms)\nWhat year did South Dakota become a state?\tA rural lawyer\t-11.358576237388002\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (A rural lawyer, can also represent the State of, South Dakota) -> A rural lawyer (7075ms)\nWhat year did South Dakota become a state?\t877-540-8187\t-11.371928386703914\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota Residents, Call, 877-540-8187) -> 877-540-8187 (12567ms)\nWhat year did South Dakota become a state?\tMN A\t-11.37775835537685\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (MN A, must see of, South Dakota) -> MN A (12567ms)\nWhat year did South Dakota become a state?\tthe amendment\t-11.389958987342592\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the 38th state to ratify, the amendment) -> the amendment (7075ms)\nWhat year did South Dakota become a state?\t50 percent\t-11.417842091158924\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (South Dakota, draws, 50 percent) -> 50 percent (12625ms)\nWhat year did South Dakota become a state?\t260 More\t-11.421443457592861\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (South Dakota, draws, 260 More) -> 260 More (12625ms)\nWhat year did South Dakota become a state?\tjust 3.8 percent\t-11.450328679106763\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, pick, south dakota) -> (just 3.8 percent, have picked, South Dakota State) -> just 3.8 percent (12625ms)\nWhat year did South Dakota become a state?\tan additional 1.5 % tax\t-11.458141583233662\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, charges, an additional 1.5 % tax) -> an additional 1.5 % tax (12625ms)\nWhat year did South Dakota become a state?\tthe place\t-11.464466118073652\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (the place, is now the state capital of, South Dakota) -> the place (7096ms)\nWhat year did South Dakota become a state?\tRoosevelt\t-11.472829775402687\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went strong for, Roosevelt) -> Roosevelt (7096ms)\nWhat year did South Dakota become a state?\tthe high plains\t-11.473893181365408\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota South Dakota, is a state in, the high plains) -> the high plains (7096ms)\nWhat year did South Dakota become a state?\t24/7 Sobriety\t-11.473913290491552\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, called, 24/7 Sobriety) -> 24/7 Sobriety (12625ms)\nWhat year did South Dakota become a state?\tDakota Cash 5 South Dakota\t-11.474038407650456\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (the South Dakota, draw, Dakota Cash 5 South Dakota) -> Dakota Cash 5 South Dakota (12625ms)\nWhat year did South Dakota become a state?\tSpeaker Pelosi\t-11.489331665390363\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, 's going to vote for, Speaker Pelosi) -> Speaker Pelosi (7096ms)\nWhat year did South Dakota become a state?\t93,000+ acres\t-11.489526653714016\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, burn, $x) -> (South Dakota, burns, 93,000+ acres) -> 93,000+ acres (12625ms)\nWhat year did South Dakota become a state?\tgusto\t-11.492911524994167\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went for, gusto) -> gusto (7131ms)\nWhat year did South Dakota become a state?\ta 10.6 % average annual growth rate\t-11.497876828005513\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, has seen, a 10.6 % average annual growth rate) -> a 10.6 % average annual growth rate (12625ms)\nWhat year did South Dakota become a state?\t0.1 %\t-11.49886061043996\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, represent, $x) -> (South Dakota, represents, 0.1 %) -> 0.1 % (12768ms)\nWhat year did South Dakota become a state?\tthe country\t-11.500855932523582\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the first state in, the country) -> the country (7131ms)\nWhat year did South Dakota become a state?\t12\t-11.501746364740558\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota, shot, 12) -> 12 (12768ms)\nWhat year did South Dakota become a state?\tthe Democrats\t-11.517088891438505\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota?s House, will go entirely to, the Democrats) -> the Democrats (7131ms)\nWhat year did South Dakota become a state?\tThe Movers\t-11.526527749173503\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (The Movers, serve the entire state of, South Dakota) -> The Movers (7131ms)\nWhat year did South Dakota become a state?\tvote\t-11.531126040212248\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (The Feeding South Dakota video, went up for, vote) -> vote (7131ms)\nWhat year did South Dakota become a state?\thell\t-11.53688659296396\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, is about to go to, hell) -> hell (7162ms)\nWhat year did South Dakota become a state?\tPaceButler\t-11.539966033850467\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (PaceButler, has saved the State of, South Dakota budget) -> PaceButler (7162ms)\nWhat year did South Dakota become a state?\t79.9 percent interest\t-11.558194689001025\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, is charging, 79.9 percent interest) -> 79.9 percent interest (12768ms)\nWhat year did South Dakota become a state?\tWestinghouse\t-11.558791035223004\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota State University, went to work for, Westinghouse) -> Westinghouse (7162ms)\nWhat year did South Dakota become a state?\tUS troops\t-11.576599839965072\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, kill, $x) -> (South Dakota, were killed by, US troops) -> US troops (12768ms)\nWhat year did South Dakota become a state?\ta laugh\t-11.587676545013865\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (South Dakota, drew, a laugh) -> a laugh (12768ms)\nWhat year did South Dakota become a state?\tfreezing rain\t-11.588494482501773\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, also might see, freezing rain) -> freezing rain (12768ms)\nWhat year did South Dakota become a state?\ta painting\t-11.590393725046706\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, identify, $x) -> (South Dakota, identified, a painting) -> a painting (12768ms)\nWhat year did South Dakota become a state?\t?South Dakota?\t-11.594541797591603\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (a good South Dakota flag, could be made with, ?South Dakota?) -> ?South Dakota? (12872ms)\nWhat year did South Dakota become a state?\t600,000 vehicles and motorcyclist\t-11.597235484922734\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw over, 600,000 vehicles and motorcyclist) -> 600,000 vehicles and motorcyclist (12872ms)\nWhat year did South Dakota become a state?\tLeeAnn\t-11.6167237309584\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (LeeAnn, serves the entire state of, South Dakota) -> LeeAnn (7162ms)\nWhat year did South Dakota become a state?\t37 percent\t-11.618581438437205\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota State, is only shooting, 37 percent) -> 37 percent (12873ms)\nWhat year did South Dakota become a state?\t8 points\t-11.621163410021532\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be give, $x) -> (South Dakota State, is given a start of, 8 points) -> 8 points (7316ms)\nWhat year did South Dakota become a state?\t61 percent\t-11.624287424992236\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota State, shot, 61 percent) -> 61 percent (12872ms)\nWhat year did South Dakota become a state?\t41.3 percent\t-11.626577337762013\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota, shot, 41.3 percent) -> 41.3 percent (12873ms)\nWhat year did South Dakota become a state?\tthe Dakota\t-11.631270424887248\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, are named after, the Dakota) -> the Dakota (12872ms)\nWhat year did South Dakota become a state?\t87 programs\t-11.634128554404821\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, look at, $x) -> (South Dakota, looked at, 87 programs) -> 87 programs (12873ms)\nWhat year did South Dakota become a state?\tTea\t-11.636381523830368\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, named, Tea) -> Tea (12872ms)\nWhat year did South Dakota become a state?\t6 % sales tax\t-11.63643289839939\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, will be charged, 6 % sales tax) -> 6 % sales tax (12984ms)\nWhat year did South Dakota become a state?\tUtah\t-11.637275455273391\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, be with, south dakota) -> (Utah, will be tied with, South Dakota) -> Utah (12984ms)\nWhat year did South Dakota become a state?\tthe pheasant\t-11.637601345053895\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (the pheasant, is the state bird of, South Dakota) -> the pheasant (7195ms)\nWhat year did South Dakota become a state?\tthe same day\t-11.644466968304299\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (North and South Dakota, became states on, the same day) -> the same day (7195ms)\nWhat year did South Dakota become a state?\tthree recipients\t-11.645061265646925\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (three recipients, also had led the state of, South Dakota) -> three recipients (7195ms)\nWhat year did South Dakota become a state?\t500 people\t-11.647093646085816\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, say to, $x) -> (the South Dakota Democrat, said to about, 500 people) -> 500 people (12984ms)\nWhat year did South Dakota become a state?\tNebraska\t-11.648760291552605\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, surround, $x) -> (South Dakota, surround, Nebraska) -> Nebraska (12984ms)\nWhat year did South Dakota become a state?\tthe lowest voter support\t-11.653864487354893\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, be the state with, the lowest voter support) -> the lowest voter support (7219ms)\nWhat year did South Dakota become a state?\tthe 12 weeks\t-11.657067311578425\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South Dakota, chose, the 12 weeks) -> the 12 weeks (12984ms)\nWhat year did South Dakota become a state?\tThe Plant Diagnostic Clinic\t-11.692440296616994\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (The Plant Diagnostic Clinic, serves the state of, South Dakota) -> The Plant Diagnostic Clinic (7219ms)\nWhat year did South Dakota become a state?\tJohn Thune\t-11.694634826560582\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota voters, saw the qualities of, John Thune) -> John Thune (12984ms)\nWhat year did South Dakota become a state?\tnerve gas\t-11.70101160630194\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, can be used to detect, nerve gas) -> nerve gas (12984ms)\nWhat year did South Dakota become a state?\t35.2 percent\t-11.707624088068966\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota State, shot just, 35.2 percent) -> 35.2 percent (13081ms)\nWhat year did South Dakota become a state?\tcorn farmers\t-11.710585812539316\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota?s subsidies, went to, corn farmers) -> corn farmers (7219ms)\nWhat year did South Dakota become a state?\ta city\t-11.719725184772638\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South Dakota, Please choose, a city) -> a city (13081ms)\nWhat year did South Dakota become a state?\tSarah Palin\t-11.724568128293207\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, called, Sarah Palin) -> Sarah Palin (13081ms)\nWhat year did South Dakota become a state?\tOTA\t-11.727640653148143\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (OTA, represents the tri-state area of, South Dakota) -> OTA (7317ms)\nWhat year did South Dakota become a state?\tNo. 1\t-11.738463867291593\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (South Dakota, is still, No. 1) -> No. 1 (13081ms)\nWhat year did South Dakota become a state?\t292\t-11.738882670119276\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, have make, $x) -> (South Dakota State?s Jill Young, has made, 292) -> 292 (13081ms)\nWhat year did South Dakota become a state?\ta close\t-11.741830108311529\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (South Dakota, draws to, a close) -> a close (13081ms)\nWhat year did South Dakota become a state?\tWhite-winged Crossbills\t-11.75150441900514\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (a South Dakota big year, have just seen, White-winged Crossbills) -> White-winged Crossbills (14560ms)\nWhat year did South Dakota become a state?\ta mountain lion\t-11.75306950730467\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota, shot, a mountain lion) -> a mountain lion (14560ms)\nWhat year did South Dakota become a state?\t0 and 455 miles\t-11.757921415471985\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (South Dakota, could be anywhere between, 0 and 455 miles) -> 0 and 455 miles (14560ms)\nWhat year did South Dakota become a state?\tThursday\t-11.76156014366569\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, rule, $x) -> (the South Dakota Supreme Court, ruled, Thursday) -> Thursday (14560ms)\nWhat year did South Dakota become a state?\t10 trophy bull licenses\t-11.769829615776015\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be offer, $x) -> (South Dakota, is offering, 10 trophy bull licenses) -> 10 trophy bull licenses (14560ms)\nWhat year did South Dakota become a state?\tThe Fairburn agate\t-11.789621276512532\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (The Fairburn agate, is the state gemstone of, South Dakota) -> The Fairburn agate (14581ms)\nWhat year did South Dakota become a state?\tNew York\t-11.79542250121274\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what state be in south dakota ? -> $x: ($x, instance of, state) ($x, be in, south dakota) -> (New York, Instance Of, state) (New York, was in, South Dakota) -> New York (5680ms)\nWhat year did South Dakota become a state?\t200 colonies\t-11.79812394952717\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, will be followed by, 200 colonies) -> 200 colonies (14581ms)\nWhat year did South Dakota become a state?\tNative Americans\t-11.80587621492964\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, try, $x) -> (South Dakota Republicans, try to keep, Native Americans) -> Native Americans (14581ms)\nWhat year did South Dakota become a state?\ta town\t-11.822732487108293\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South dakota real estate, Choose, a town) -> a town (14581ms)\nWhat year did South Dakota become a state?\ta Golf Country Club Click\t-11.824232723545354\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South Dakota, Choose, a Golf Country Club Click) -> a Golf Country Club Click (14602ms)\nWhat year did South Dakota become a state?\t200 loans\t-11.82438857414665\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, have make, $x) -> (south dakota, has made over, 200 loans) -> 200 loans (14602ms)\nWhat year did South Dakota become a state?\tCongress\t-11.82618616192936\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, represent, $x) -> (South Dakota, are represented in, Congress) -> Congress (14602ms)\nWhat year did South Dakota become a state?\ta career\t-11.841551045093858\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, try, $x) -> (South Dakota, try to build, a career) -> a career (14602ms)\nWhat year did South Dakota become a state?\tMicrosoft\t-11.841695260804403\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is being sponsored by, Microsoft) -> Microsoft (14602ms)\nWhat year did South Dakota become a state?\tFedEx\t-11.843404769889354\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (their South Dakota defensive driving certificate, choose, FedEx) -> FedEx (14602ms)\nWhat year did South Dakota become a state?\tWells Fargo Bank\t-11.846160282096463\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, try, $x) -> (South Dakota Mobil Home Financing, try, Wells Fargo Bank) -> Wells Fargo Bank (14602ms)\nWhat year did South Dakota become a state?\ta convention\t-11.866751185097717\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was made by, a convention) -> a convention (14622ms)\nWhat year did South Dakota become a state?\tState University\t-11.868574792510351\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (State University, is a sports team also known as, SOUTH DAKOTA STATE UNIVERSITY) -> State University (14622ms)\nWhat year did South Dakota become a state?\ta hiding spot\t-11.877361527315466\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (South Dakota, could be, a hiding spot) -> a hiding spot (14622ms)\nWhat year did South Dakota become a state?\tenergy efficient\t-11.881592780588235\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (energy efficient, see, the South Dakota Energy Smart Web site) -> energy efficient (14622ms)\nWhat year did South Dakota become a state?\ta stunner\t-11.882467890730295\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (South Dakota, is still, a stunner) -> a stunner (14642ms)\nWhat year did South Dakota become a state?\tpersonal property\t-11.887246166905832\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be consider, $x) -> (South Dakota, are considered, personal property) -> personal property (14642ms)\nWhat year did South Dakota become a state?\tthe January\t-11.887919870096507\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, may be, $x) -> (South Dakota, may be found in, the January) -> the January (14642ms)\nWhat year did South Dakota become a state?\tmore than 10 percent\t-11.887963071033877\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was also up by, more than 10 percent) -> more than 10 percent (14642ms)\nWhat year did South Dakota become a state?\tRock Climbing\t-11.89604512441284\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, be the will of, south dakota) -> (Rock Climbing, will be the part of, your South Dakota Vacation) -> Rock Climbing (14642ms)\nWhat year did South Dakota become a state?\tPolicy\t-11.903254631305696\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, refer to, south dakota) -> (Policy, please refer to, South Dakota Board) -> Policy (14642ms)\nWhat year did South Dakota become a state?\tILTF?s Head Start and K-12 curriculum\t-11.907415435369476\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, are using, ILTF?s Head Start and K-12 curriculum) -> ILTF?s Head Start and K-12 curriculum (14642ms)\nWhat year did South Dakota become a state?\tmajor league baseball\t-11.915024764317192\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, are seen throughout, major league baseball) -> major league baseball (14662ms)\nWhat year did South Dakota become a state?\ta motorcyclist\t-11.91582365142728\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, kill, $x) -> (South Dakota Bill Janklow, kills, a motorcyclist) -> a motorcyclist (14662ms)\nWhat year did South Dakota become a state?\tFoss\t-11.91584811947479\tWhat year did South Dakota become a state? -> When did South Dakota become a state? -> when do [ south dakota ] become a state ? -> what become of south dakota ? -> $x: ($x, become of, south dakota) -> (Foss, became governor of, South Dakota) -> Foss (14662ms)\nWhat year did South Dakota become a state?\ta greater growth rate\t-11.917336342070977\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, will see, a greater growth rate) -> a greater growth rate (14662ms)\nWhat year did South Dakota become a state?\tJune\t-11.919429865946833\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (our South Dakota primary, is still two months away in, June) -> June (14662ms)\nWhat year did South Dakota become a state?\tMedical\t-11.923498283671446\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, is known as, Medical) -> Medical (14662ms)\nWhat year did South Dakota become a state?\tIraq\t-11.926294614976403\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, fight, $x) -> (South Dakota Democratic Senator Tim Johnson, fought in, Iraq) -> Iraq (14662ms)\nWhat year did South Dakota become a state?\ta relatively central town\t-11.936552453956978\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, aka, $x) -> (South Dakota, a/k/a, a relatively central town) -> a relatively central town (14682ms)\nWhat year did South Dakota become a state?\ta common concern\t-11.939006205466223\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, identify, $x) -> (South Dakota, identified, a common concern) -> a common concern (14682ms)\nWhat year did South Dakota become a state?\tCitibank\t-11.939128764341476\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (Citibank, saw an opportunity in, South Dakota) -> Citibank (14682ms)\nWhat year did South Dakota become a state?\ta man\t-11.939205065862563\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, brought charges against, a man) -> a man (14682ms)\nWhat year did South Dakota become a state?\ta national convention\t-11.94627860977363\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, should call, a national convention) -> a national convention (14702ms)\nWhat year did South Dakota become a state?\t12 pages\t-11.947258625633465\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (the South Dakota-born kid, is shooting heroin, 12 pages) -> 12 pages (14702ms)\nWhat year did South Dakota become a state?\tMissouri River\t-11.957747242340066\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is intersected by, Missouri River) -> Missouri River (14702ms)\nWhat year did South Dakota become a state?\tMinnesota\t-11.965814541570353\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is mounted by, Minnesota) -> Minnesota (14702ms)\nWhat year did South Dakota become a state?\tRichard M. Nixon\t-11.9690111726803\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was defeated by, Richard M. Nixon) -> Richard M. Nixon (14701ms)\nWhat year did South Dakota become a state?\ta good option\t-11.97125818230683\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (south dakota loan, could be, a good option) -> a good option (14701ms)\nWhat year did South Dakota become a state?\ta cowboy\t-11.97423109720046\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was started by, a cowboy) -> a cowboy (14701ms)\nWhat year did South Dakota become a state?\t26 enemy planes\t-11.976941061696396\tWhat year did South Dakota become a state? -> When did South Dakota become a state? -> when do [ south dakota ] become a state ? -> what become of south dakota ? -> $x: ($x, become of, south dakota) -> (26 enemy planes, later became governor of, South Dakota) -> 26 enemy planes (14721ms)\nWhat year did South Dakota become a state?\thealth care\t-11.998513568966315\tWhat year did South Dakota become a state? -> When did South Dakota become a state? -> when do [ south dakota ] become a state ? -> what become of south dakota ? -> $x: ($x, become of, south dakota) -> (health care, became part of, South Dakota law) -> health care (14721ms)\nWhat year did South Dakota become a state?\ta series\t-12.006946415659392\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was supplemented by, a series) -> a series (14721ms)\nWhat year did South Dakota become a state?\tMeth\t-12.019945618218102\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota young people, are more likely to use, Meth) -> Meth (14741ms)\nWhat year did South Dakota become a state?\ta CDC grant\t-12.020837821323033\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is funded by, a CDC grant) -> a CDC grant (14741ms)\nWhat year did South Dakota become a state?\ta Regents\t-12.02231964161154\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, has been named, a Regents) -> a Regents (14740ms)\nWhat year did South Dakota become a state?\ta picture\t-12.026092692367818\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota Pheasant, ask to see, a picture) -> a picture (14741ms)\nWhat year did South Dakota become a state?\tthe Waldorf\t-12.027042275971844\tWhat year did South Dakota become a state? -> When did South Dakota become a state? -> when do [ south dakota ] become a state ? -> what become of south dakota ? -> $x: ($x, become of, south dakota) -> (the Waldorf, became a part of, South Dakota) -> the Waldorf (14741ms)\nWhat year did South Dakota become a state?\ta pleasurable place\t-12.042550545771213\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, is known as, a pleasurable place) -> a pleasurable place (14741ms)\nWhat year did South Dakota become a state?\tthe following year\t-12.04747795618293\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (the following year, is now the state of, South Dakota) -> the following year (14760ms)\nWhat year did South Dakota become a state?\ta patsy\t-12.05557724744495\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, is being used as, a patsy) -> a patsy (14760ms)\nWhat year did South Dakota become a state?\tHenry\t-12.058571758377154\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (a South Dakota bull bison, called, Henry) -> Henry (14760ms)\nWhat year did South Dakota become a state?\tUnited Wireless\t-12.058808010826752\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, ask, $x) -> (A South Dakota brother, asks about, United Wireless) -> United Wireless (14760ms)\nWhat year did South Dakota become a state?\tMoses\t-12.068041314458196\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, be with, south dakota) -> (Moses, was active with, the South Dakota State) -> Moses (14760ms)\nWhat year did South Dakota become a state?\tthe Abortion\t-12.068502138185234\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, fight, $x) -> (South Dakota, Fight, the Abortion) -> the Abortion (14760ms)\nWhat year did South Dakota become a state?\tthe CIA director\t-12.070337759538022\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, approach, $x) -> (a South Dakota Democrat, approached, the CIA director) -> the CIA director (14779ms)\nWhat year did South Dakota become a state?\ta little\t-12.07542186357355\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, listen to, $x) -> (South Dakota, loves listening to, a little) -> a little (14779ms)\nWhat year did South Dakota become a state?\ta ban\t-12.079792495514946\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, has called for, a ban) -> a ban (14779ms)\nWhat year did South Dakota become a state?\tgovernment enforcement\t-12.08833894489128\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, desire, $x) -> (South Dakota, desires, government enforcement) -> government enforcement (14779ms)\nWhat year did South Dakota become a state?\tan audience\t-12.092457868453165\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be give, $x) -> (a South Dakota Sioux, was given, an audience) -> an audience (14779ms)\nWhat year did South Dakota become a state?\ta dry spring\t-12.101174621492042\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, be driven by, a dry spring) -> a dry spring (14798ms)\nWhat year did South Dakota become a state?\ttrial\t-12.103638421856251\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, is to go on, trial) -> trial (14798ms)\nWhat year did South Dakota become a state?\tthe Senate\t-12.115583576905031\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, have speak, $x) -> (a South Dakota Republican, has spoken daily in, the Senate) -> the Senate (14799ms)\nWhat year did South Dakota become a state?\tpheasant hunting packages\t-12.117003787200797\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, See, pheasant hunting packages) -> pheasant hunting packages (14799ms)\nWhat year did South Dakota become a state?\ta devastating ice storm\t-12.120702034444552\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, were affected by, a devastating ice storm) -> a devastating ice storm (14799ms)\nWhat year did South Dakota become a state?\tItaly\t-12.123559107432282\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what state be in south dakota ? -> $x: ($x, instance of, state) ($x, be in, south dakota) -> (Italy, Instance Of, state) (Italy, was in, South Dakota) -> Italy (5681ms)\nWhat year did South Dakota become a state?\tgraduate\t-12.125585878896938\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went on to, graduate) -> graduate (15678ms)\nWhat year did South Dakota become a state?\tmore information\t-12.129904042188326\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (more information, see, South Dakota) -> more information (15678ms)\nWhat year did South Dakota become a state?\ta fairly small town\t-12.135391330039138\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (South Dakota, is still, a fairly small town) -> a fairly small town (15677ms)\nWhat year did South Dakota become a state?\ta portrait\t-12.136617415466855\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, is often seen as, a portrait) -> a portrait (15678ms)\nWhat year did South Dakota become a state?\tyou?ll\t-12.140816587212528\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (you?ll, see in, South Dakota) -> you?ll (15678ms)\nWhat year did South Dakota become a state?\tthe Dakota Alliance\t-12.14408625088511\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, answer, $x) -> (the South Dakota, answer to, the Dakota Alliance) -> the Dakota Alliance (15677ms)\nWhat year did South Dakota become a state?\tLonnie Two Eagle\t-12.149830254532716\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (a South Dakota native American, called, Lonnie Two Eagle) -> Lonnie Two Eagle (15678ms)\nWhat year did South Dakota become a state?\ta survey\t-12.15057865630807\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, were driven by, a survey) -> a survey (15716ms)\nWhat year did South Dakota become a state?\tthe Mack\t-12.15132346404054\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (The rusted South Dakota plate, is still on, the Mack) -> the Mack (15714ms)\nWhat year did South Dakota become a state?\thealth care experts\t-12.152928220300666\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (health care experts, see, South Dakota) -> health care experts (15714ms)\nWhat year did South Dakota become a state?\tAmerica\t-12.153312662671112\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, See some of, America) -> America (15714ms)\nWhat year did South Dakota become a state?\ta DVD\t-12.156055511739286\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be offer, $x) -> (South Dakota Public Broadcasting, is offering, a DVD) -> a DVD (15714ms)\nWhat year did South Dakota become a state?\ta bullet\t-12.158536439322528\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was hit by, a bullet) -> a bullet (15714ms)\nWhat year did South Dakota become a state?\ta train\t-12.158536439322528\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was hit by, a train) -> a train (15714ms)\nWhat year did South Dakota become a state?\ta health certificate\t-12.163078993295176\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, must be accompanied by, a health certificate) -> a health certificate (15750ms)\nWhat year did South Dakota become a state?\tDennis Daugaard\t-12.172754796345446\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, see a second side of, Dennis Daugaard) -> Dennis Daugaard (15750ms)\nWhat year did South Dakota become a state?\tPowerball South Dakota\t-12.174113941968399\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (the South Dakota, draw, Powerball South Dakota) -> Powerball South Dakota (15750ms)\nWhat year did South Dakota become a state?\tFreeman Academy\t-12.181912668287161\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (Freeman Academy, is a Mennonite high school in, South Dakota) -> Freeman Academy (15750ms)\nWhat year did South Dakota become a state?\tmore cases\t-12.187961682555292\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, continues to see, more cases) -> more cases (15750ms)\nWhat year did South Dakota become a state?\ta customized curriculum\t-12.188785283268002\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be give, $x) -> (South Dakota or Wyoming, be given, a customized curriculum) -> a customized curriculum (15751ms)\nWhat year did South Dakota become a state?\ta vote\t-12.192135944182558\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was shelved by, a vote) -> a vote (15787ms)\nWhat year did South Dakota become a state?\tlone wolves\t-12.197301973264835\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> $x: (south dakota, note, $x) -> (North and South Dakota officials, have noted, lone wolves) -> lone wolves (15787ms)\nWhat year did South Dakota become a state?\tantelope i\t-12.197530319171447\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (antelope i, saw in, South dakota) -> antelope i (15787ms)\nWhat year did South Dakota become a state?\ta number\t-12.201149597920455\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, look at, $x) -> (South Dakota lawmakers, are looking at, a number) -> a number (15787ms)\nWhat year did South Dakota become a state?\ta transferable pass\t-12.20204805238472\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, charges more for, a transferable pass) -> a transferable pass (15787ms)\nWhat year did South Dakota become a state?\tSouth Dakota guides and directories\t-12.207231046831101\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, see, South Dakota guides and directories) -> South Dakota guides and directories (15787ms)\nWhat year did South Dakota become a state?\ta new leadership post\t-12.208062078460541\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (south dakota, was named to, a new leadership post) -> a new leadership post (15787ms)\nWhat year did South Dakota become a state?\tState v. Greger\t-12.208215414472011\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> $x: (south dakota, note, $x) -> (the South Dakota Supreme Court, noted in, State v. Greger) -> State v. Greger (15787ms)\nWhat year did South Dakota become a state?\ta possible approximate loss\t-12.208237647603601\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, look at, $x) -> (South Dakota, is looking at, a possible approximate loss) -> a possible approximate loss (15822ms)\nWhat year did South Dakota become a state?\tTravelSD.com\t-12.209051504229564\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, ask, $x) -> (the South Dakota Office, ask online via, TravelSD.com) -> TravelSD.com (15822ms)\nWhat year did South Dakota become a state?\ta minister\t-12.209550609243818\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, may be, $x) -> (SOUTH DAKOTA Marriages, may be performed by, a minister) -> a minister (15822ms)\nWhat year did South Dakota become a state?\tChief\t-12.210950792495277\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, kill, $x) -> (South Dakota, followed the killing of, Chief) -> Chief (15822ms)\nWhat year did South Dakota become a state?\ta shootout\t-12.213100266855385\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, kill, $x) -> (two South Dakota officers, were killed in, a shootout) -> a shootout (15822ms)\nWhat year did South Dakota become a state?\ta good South Dakota flag\t-12.218766533089596\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, be with, south dakota) -> (a good South Dakota flag, could be made with, ?South Dakota?) -> a good South Dakota flag (15822ms)\nWhat year did South Dakota become a state?\ta DBA\t-12.21968187615836\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (your South Dakota business name, also called, a DBA) -> a DBA (15822ms)\nWhat year did South Dakota become a state?\ta crowd\t-12.226349005617845\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, speak to, $x) -> (South Dakota Gov. Dennis Daugaard, spoke to, a crowd) -> a crowd (15822ms)\nWhat year did South Dakota become a state?\tBob\t-12.231363171048853\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, named, Bob) -> Bob (15858ms)\nWhat year did South Dakota become a state?\tPass\t-12.232171582335365\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota Secure Login User, Name, Pass) -> Pass (15858ms)\nWhat year did South Dakota become a state?\ttwo\t-12.236007780579584\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota State, shot, two) -> two (15858ms)\nWhat year did South Dakota become a state?\ta temperate grasslands biome\t-12.237023915962851\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is dominated by, a temperate grasslands biome) -> a temperate grasslands biome (15858ms)\nWhat year did South Dakota become a state?\tmen\t-12.238253773411222\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, were confronted by, men) -> men (15858ms)\nWhat year did South Dakota become a state?\trape\t-12.238422520210708\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (A former South Dakota state lawmaker, charged with, rape) -> rape (15858ms)\nWhat year did South Dakota become a state?\tMega Millions South Dakota\t-12.23908765974823\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (the South Dakota, draw, Mega Millions South Dakota) -> Mega Millions South Dakota (15858ms)\nWhat year did South Dakota become a state?\tcard services\t-12.239971846149327\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, prepaid calling, card services) -> card services (15892ms)\nWhat year did South Dakota become a state?\trecord releases\t-12.24838654830182\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw, record releases) -> record releases (15892ms)\nWhat year did South Dakota become a state?\tcompany\t-12.254258873622977\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, was to call, company) -> company (15892ms)\nWhat year did South Dakota become a state?\ta DENR report\t-12.254707907496257\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, refer to, $x) -> (South Dakota news reports, recently referred to, a DENR report) -> a DENR report (15892ms)\nWhat year did South Dakota become a state?\tthe Living\t-12.261611386114803\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (close South Dakota Living, Will Please choose, the Living) -> the Living (15892ms)\nWhat year did South Dakota become a state?\tFrist\t-12.262284641655096\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, say to, south dakota) -> (Frist, says this trip to, South Dakota) -> Frist (15892ms)\nWhat year did South Dakota become a state?\trecent years\t-12.266594687908105\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, have take, $x) -> (South Dakota, have taken similar action in, recent years) -> recent years (15892ms)\nWhat year did South Dakota become a state?\tIrregular News\t-12.268723099038516\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, try, $x) -> (South Dakota, try, Irregular News) -> Irregular News (15892ms)\nWhat year did South Dakota become a state?\tNew 14 York\t-12.334831008103613\tWhat year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what state be in south dakota ? -> $x: ($x, instance of, state) ($x, be in, south dakota) -> (New 14 York, Instance Of, state) (New York, was in, South Dakota) -> New 14 York (5679ms)\nWhat year did South Dakota become a state?\tRhode Island\t-12.769316649724797\tWhat year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Rhode Island, Instance Of, limited number of state) (a rhode island, south carolina south, dakota) -> Rhode Island (2010ms)\nWhat year did South Dakota become a state?\tOklahoma\t-12.892740612572021\tWhat year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Oklahoma, Instance Of, state with bountiful quail number) (oklahoma, can help south, dakota state) -> Oklahoma (2010ms)\nWhat year did South Dakota become a state?\tSouth\t-12.977514932738384\tWhat year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (South, Instance Of, state with a relatively small number of geographically large district) (South, carolina south, dakota tennessee texas) -> South (2010ms)\nWhat year did South Dakota become a state?\tCalifornia\t-12.989919887251691\tWhat year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (California, Instance Of, state with a high population density and large number of person) (California, recently moved to south, dakota) -> California (3029ms)\nWhat year did South Dakota become a state?\tPennsylvania\t-12.991804880538414\tWhat year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Pennsylvania, Instance Of, top state in number) (pennsylvania, south carolina south, dakota tennessee) -> Pennsylvania (3029ms)\nWhat year did South Dakota become a state?\tTennessee\t-13.15793156359716\tWhat year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Tennessee, Instance Of, border state or area with significant number) (tennessee, south dakota south, dakota) -> Tennessee (3110ms)\nWhat year did South Dakota become a state?\tKansas\t-13.292064437303747\tWhat year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Kansas, Instance Of, state with large number of oil well and high percentage of low-volume stripper) (kansas, south carolina south, dakota tennessee texas) -> Kansas (3110ms)\nWhat is neuropathy?\tmentoflong-term complication\t-4.99602648885058\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, mentoflong-term complication) -> mentoflong-term complication (1293ms)\nWhat is neuropathy?\tmicro-vessel complication\t-4.99602648885058\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, micro-vessel complication) -> micro-vessel complication (1292ms)\nWhat is neuropathy?\tdiabetes-induced condition\t-4.99602648885058\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetes-induced condition) -> diabetes-induced condition (1293ms)\nWhat is neuropathy?\tdiabetes-related condition\t-5.081692812842029\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, diabetes-related condition) -> diabetes-related condition (1293ms)\nWhat is neuropathy?\tdose-limiting toxicity\t-5.114594942962709\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, dose-limiting toxicity) -> dose-limiting toxicity (1292ms)\nWhat is neuropathy?\textra-articular manifestation\t-5.1176795171252785\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, extra-articular manifestation) -> extra-articular manifestation (1293ms)\nWhat is neuropathy?\textra-articular feature\t-5.122820474880029\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, extra-articular feature) -> extra-articular feature (1318ms)\nWhat is neuropathy?\tdisease of the peripheral nervous system\t-5.294042668096578\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, disease of the peripheral nervous system) -> disease of the peripheral nervous system (1318ms)\nWhat is neuropathy?\ttype of heart disease\t-5.299496534111638\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, type of heart disease) -> type of heart disease (1318ms)\nWhat is neuropathy?\tdisease of nerve system\t-5.299496534111638\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, disease of nerve system) -> disease of nerve system (1318ms)\nWhat is neuropathy?\tcomponent of foot disease\t-5.299496534111638\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, component of foot disease) -> component of foot disease (1318ms)\nWhat is neuropathy?\tabnormality on physical examination\t-5.299496534111638\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, abnormality on physical examination) -> abnormality on physical examination (1346ms)\nWhat is neuropathy?\trisk of drug toxicity\t-5.299496534111638\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, risk of drug toxicity) -> risk of drug toxicity (1318ms)\nWhat is neuropathy?\tlong term complication\t-5.3851510890059915\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, long term complication) -> long term complication (1346ms)\nWhat is neuropathy?\tdevastating metabolic complication\t-5.419959360065465\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, devastating metabolic complication) -> devastating metabolic complication (1347ms)\nWhat is neuropathy?\tmicrovascular diabetic disease\t-5.419959360065465\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, microvascular diabetic disease) -> microvascular diabetic disease (1346ms)\nWhat is neuropathy?\torgan system complication\t-5.419959360065465\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, organ system complication) -> organ system complication (1346ms)\nWhat is neuropathy?\tside effect of the chemo\t-5.430237280649796\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, side effect of the chemo) -> side effect of the chemo (1346ms)\nWhat is neuropathy?\tserious adverse event\t-5.447755987025056\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, serious adverse event) -> serious adverse event (1360ms)\nWhat is neuropathy?\tcommon diabetic condition\t-5.460731728621772\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common diabetic condition) -> common diabetic condition (1360ms)\nWhat is neuropathy?\trare side effect of prescription medication\t-5.469852487468907\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, rare side effect of prescription medication) -> rare side effect of prescription medication (1360ms)\nWhat is neuropathy?\tmicrovascular complication of diabetes\t-5.469852487468907\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, microvascular complication of diabetes) -> microvascular complication of diabetes (1360ms)\nWhat is neuropathy?\tcommon side effect of zinc-based denture cream use\t-5.469852487468907\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common side effect of zinc-based denture cream use) -> common side effect of zinc-based denture cream use (1360ms)\nWhat is neuropathy?\tcomplication of patient\t-5.474691035961992\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, complication of patient) -> complication of patient (1360ms)\nWhat is neuropathy?\ttoxic side effect\t-5.501859390659772\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, toxic side effect) -> toxic side effect (1396ms)\nWhat is neuropathy?\tdegenerative nerve disorder\t-5.505625684056914\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative nerve disorder) -> degenerative nerve disorder (1396ms)\nWhat is neuropathy?\tdegenerative nerve condition\t-5.505625684056914\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative nerve condition) -> degenerative nerve condition (1396ms)\nWhat is neuropathy?\tfrequently diagnosed complication\t-5.505625684056914\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, frequently diagnosed complication) -> frequently diagnosed complication (1396ms)\nWhat is neuropathy?\teuro degenerative condition\t-5.505625684056914\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, euro degenerative condition) -> euro degenerative condition (1396ms)\nWhat is neuropathy?\tcommonly occurring disorder\t-5.512480294600864\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, commonly occurring disorder) -> commonly occurring disorder (1396ms)\nWhat is neuropathy?\tfrequent and severe complication of diabetes\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, frequent and severe complication of diabetes) -> frequent and severe complication of diabetes (1463ms)\nWhat is neuropathy?\tcommon side effect of platin chemotherapy drug\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, common side effect of platin chemotherapy drug) -> common side effect of platin chemotherapy drug (1436ms)\nWhat is neuropathy?\tlong-term secondary complication\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, long-term secondary complication) -> long-term secondary complication (1411ms)\nWhat is neuropathy?\tcommon side effect of cancer\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, common side effect of cancer) -> common side effect of cancer (1411ms)\nWhat is neuropathy?\tnon-local nerve cause\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, non-local nerve cause) -> non-local nerve cause (1436ms)\nWhat is neuropathy?\tcommon manifestation of toxic injury\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common manifestation of toxic injury) -> common manifestation of toxic injury (1411ms)\nWhat is neuropathy?\tfrequent clinical manifestation of SVSV\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, frequent clinical manifestation of SVSV) -> frequent clinical manifestation of SVSV (1463ms)\nWhat is neuropathy?\tabnormality of the nervous waverly bedding burlington coat system\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, abnormality of the nervous waverly bedding burlington coat system) -> abnormality of the nervous waverly bedding burlington coat system (1463ms)\nWhat is neuropathy?\tmedical term describing disorder of the peripheral nervous system\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, medical term describing disorder of the peripheral nervous system) -> medical term describing disorder of the peripheral nervous system (1411ms)\nWhat is neuropathy?\tmedical term describing disorder of the nerve of the peripheral nervous technique\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, medical term describing disorder of the nerve of the peripheral nervous technique) -> medical term describing disorder of the nerve of the peripheral nervous technique (1463ms)\nWhat is neuropathy?\tlate-onset diabetic complication\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, late-onset diabetic complication) -> late-onset diabetic complication (1463ms)\nWhat is neuropathy?\tside effect of tarceva\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, side effect of tarceva) -> side effect of tarceva (1463ms)\nWhat is neuropathy?\tcommon and serious complication of the disease\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common and serious complication of the disease) -> common and serious complication of the disease (1436ms)\nWhat is neuropathy?\tcase of impaired mitochondrial function\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, case of impaired mitochondrial function) -> case of impaired mitochondrial function (1436ms)\nWhat is neuropathy?\tvery common symptom of diabetes\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, very common symptom of diabetes) -> very common symptom of diabetes (1411ms)\nWhat is neuropathy?\textremely common complication of diabetes\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, extremely common complication of diabetes) -> extremely common complication of diabetes (1411ms)\nWhat is neuropathy?\tpotential side-effect\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, potential side-effect) -> potential side-effect (1436ms)\nWhat is neuropathy?\tcommon form of diabetic nerve damage\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common form of diabetic nerve damage) -> common form of diabetic nerve damage (1640ms)\nWhat is neuropathy?\tslammer of the anxiety disorder\t-5.51474644290405\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, slammer of the anxiety disorder) -> slammer of the anxiety disorder (1436ms)\nWhat is neuropathy?\tserious, sometimes life-threatening complication\t-5.52023013146178\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, serious, sometimes life-threatening complication) -> serious, sometimes life-threatening complication (1641ms)\nWhat is neuropathy?\tsymptom of HIV infection\t-5.52502835841355\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, symptom of HIV infection) -> symptom of HIV infection (1641ms)\nWhat is neuropathy?\tkind of pain\t-5.527510199581071\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, kind of pain) -> kind of pain (1641ms)\nWhat is neuropathy?\tpainful complication of diabetes\t-5.52845566399195\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, painful complication of diabetes) -> painful complication of diabetes (1641ms)\nWhat is neuropathy?\tchebucto site potential long-term effect\t-5.54216488507985\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chebucto site potential long-term effect) -> chebucto site potential long-term effect (1641ms)\nWhat is neuropathy?\thealth condition\t-5.560716579825307\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, health condition) -> health condition (1690ms)\nWhat is neuropathy?\tvascular complication\t-5.574853760154293\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vascular complication) -> vascular complication (1690ms)\nWhat is neuropathy?\tchronic disease\t-5.580408335377513\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chronic disease) -> chronic disease (1690ms)\nWhat is neuropathy?\tnerve disease\t-5.615513314471654\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, nerve disease) -> nerve disease (1690ms)\nWhat is neuropathy?\tsystemic disease\t-5.698188260732807\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, systemic disease) -> systemic disease (1690ms)\nWhat is neuropathy?\tmedical issue\t-5.701286293902988\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, medical issue) -> medical issue (1690ms)\nWhat is neuropathy?\tbroad term\t-5.728649700754586\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, broad term) -> broad term (1705ms)\nWhat is neuropathy?\tclinical sign\t-5.7625884381922585\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, clinical sign) -> clinical sign (1705ms)\nWhat is neuropathy?\tunderlying cause\t-5.767411212768982\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, underlying cause) -> underlying cause (1705ms)\nWhat is neuropathy?\tsecondary disease\t-5.794188738370306\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, secondary disease) -> secondary disease (1705ms)\nWhat is neuropathy?\tchronic condition\t-5.795623212858455\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chronic condition) -> chronic condition (1705ms)\nWhat is neuropathy?\tautoimmune disease\t-5.797692569257775\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, autoimmune disease) -> autoimmune disease (1705ms)\nWhat is neuropathy?\tdistressing symptom\t-5.799725896857993\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, distressing symptom) -> distressing symptom (1725ms)\nWhat is neuropathy?\thereditary disease\t-5.804275201944275\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, hereditary disease) -> hereditary disease (1725ms)\nWhat is neuropathy?\ttemporary condition\t-5.806699253815593\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, temporary condition) -> temporary condition (1725ms)\nWhat is neuropathy?\tneuroligical disorder\t-5.827021403922757\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, neuroligical disorder) -> neuroligical disorder (1725ms)\nWhat is neuropathy?\tcommon symptom\t-5.845874948537176\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, common symptom) -> common symptom (1725ms)\nWhat is neuropathy?\tdamaging complication\t-5.871915359357899\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, damaging complication) -> damaging complication (1725ms)\nWhat is neuropathy?\tcentral disorder\t-5.8754916778626\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, central disorder) -> central disorder (1752ms)\nWhat is neuropathy?\tneuropsychiatric disease\t-5.878602783830399\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, neuropsychiatric disease) -> neuropsychiatric disease (1751ms)\nWhat is neuropathy?\tweird disorder\t-5.882197274867399\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, weird disorder) -> weird disorder (1751ms)\nWhat is neuropathy?\tcategorical variable\t-5.887705443715245\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, categorical variable) -> categorical variable (1751ms)\nWhat is neuropathy?\tdefinite possibility\t-5.888425921114323\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, definite possibility) -> definite possibility (1752ms)\nWhat is neuropathy?\tvague symptom\t-5.888702160765064\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vague symptom) -> vague symptom (1752ms)\nWhat is neuropathy?\tcommon illness\t-5.889772173439801\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common illness) -> common illness (1762ms)\nWhat is neuropathy?\tdebilitating condition\t-5.891448759227195\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, debilitating condition) -> debilitating condition (1762ms)\nWhat is neuropathy?\tcomplex disease\t-5.891632736773646\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, complex disease) -> complex disease (1762ms)\nWhat is neuropathy?\tpainful condition\t-5.894288808722465\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, painful condition) -> painful condition (1762ms)\nWhat is neuropathy?\tinflammatory disease\t-5.897767033549448\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, inflammatory disease) -> inflammatory disease (1762ms)\nWhat is neuropathy?\tmedical complication\t-5.898999430616499\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, medical complication) -> medical complication (1762ms)\nWhat is neuropathy?\tdegenerative condition\t-5.900599267982518\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative condition) -> degenerative condition (1779ms)\nWhat is neuropathy?\tdiabetic symptom\t-5.900704722294219\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetic symptom) -> diabetic symptom (1778ms)\nWhat is neuropathy?\tskin disease\t-5.901938940751237\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, skin disease) -> skin disease (1778ms)\nWhat is neuropathy?\thepatic complication\t-5.903552023029761\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, hepatic complication) -> hepatic complication (1779ms)\nWhat is neuropathy?\tvitamin b12 deficiency symptom\t-5.907303903684787\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vitamin b12 deficiency symptom) -> vitamin b12 deficiency symptom (1778ms)\nWhat is neuropathy?\tneurological sign\t-5.910623747302569\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, neurological sign) -> neurological sign (1779ms)\nWhat is neuropathy?\tNature's Innovation\t-6.132404232032106\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, drug, neuropathy) -> (Nature's Innovation, Drugs manufactured, Naturasil Neuropathy Rub 1/6 liquid) -> Nature's Innovation (1791ms)\nWhat is neuropathy?\tIonx Holdings\t-6.151740240788034\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, drug, neuropathy) -> (Ionx Holdings, Drugs manufactured, Neuroveen Neuropathy Symptom Relief 10/10/10/10/10/10/10/10/10/10/10/10/10/10/10/10 liquid) -> Ionx Holdings (1791ms)\nWhat is neuropathy?\tWise Consumer Products\t-6.4541846041590665\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, drug, neuropathy) -> (Wise Consumer Products, Drugs manufactured, Frankincense and Myrrh Neuropathy 3/2/3 oil) -> Wise Consumer Products (1791ms)\nWhat is neuropathy?\tNeurological disorder\t-6.682568405691354\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, include cause of death, neuropathy) -> (Neurological disorder, Includes causes of death, Neuropathy) -> Neurological disorder (1791ms)\nWhat is neuropathy?\tdiabetes\t-7.335079859457252\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetes) -> diabetes (1791ms)\nWhat is neuropathy?\tdisease\t-7.48844079368634\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, disease) -> disease (1806ms)\nWhat is neuropathy?\tnerve damage\t-7.8652566825694965\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: (neuropathy, be a by, $x) -> (Neuropathy, is a painful condition caused by, nerve damage) -> nerve damage (1806ms)\nWhat is neuropathy?\tdisability\t-7.933263746176859\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, disability) -> disability (1806ms)\nWhat is neuropathy?\tfactor\t-7.975256001904018\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, factor) -> factor (1806ms)\nWhat is neuropathy?\tindication\t-8.001138173878354\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, indication) -> indication (1806ms)\nWhat is neuropathy?\tdecrease\t-8.066805336046992\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, decrease) -> decrease (1819ms)\nWhat is neuropathy?\tinflammation\t-8.130694446750013\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, inflammation) -> inflammation (1819ms)\nWhat is neuropathy?\tcase\t-8.140481056952913\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, case) -> case (1819ms)\nWhat is neuropathy?\tdiabetic patients\t-8.22952724319822\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: (neuropathy, be a by, $x) -> (?neuropathy, is a common problem faced by, diabetic patients) -> diabetic patients (1819ms)\nWhat is neuropathy?\tdamaged nerves\t-8.404518914817324\tWhat is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: (neuropathy, be a by, $x) -> (Neuropathy, is a disorder caused by, damaged nerves) -> damaged nerves (1819ms)\nWhat is neuropathy?\told age\t-11.078562099831148\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (old age, are common known causes of, neuropathy) -> old age (2023ms)\nWhat is neuropathy?\tGold chloride\t-11.3685486665964\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Gold chloride, is known to cause, Peripheral Neuropathy) -> Gold chloride (2023ms)\nWhat is neuropathy?\tAuditory neuropathy spectrum disorder\t-11.393929234488612\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Auditory neuropathy spectrum disorder, Also known as, Auditory Neuropathy Spectrum Disorder) -> Auditory neuropathy spectrum disorder (3482ms)\nWhat is neuropathy?\tTricyclic antidepressants\t-11.447480423098074\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Tricyclic antidepressants, are known to help, some neuropathies) -> Tricyclic antidepressants (2023ms)\nWhat is neuropathy?\tPeripheral Motor Neuropathy\t-11.468354626681242\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Peripheral Motor Neuropathy, Also known as, Peripheral motor neuropathy) -> Peripheral Motor Neuropathy (3481ms)\nWhat is neuropathy?\tNerve compression syndrome\t-11.577803732846874\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Nerve compression syndrome, Also known as, Entrapment neuropathy) -> Nerve compression syndrome (3482ms)\nWhat is neuropathy?\tFamilial amyloid neuropathy\t-11.577803732846874\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Familial amyloid neuropathy, Also known as, familial amyloidotic neuropathies) -> Familial amyloid neuropathy (3482ms)\nWhat is neuropathy?\tglycyl-tRNA synthetase\t-11.700021901398499\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (glycyl-tRNA synthetase, Also known as, Charcot-Marie-Tooth neuropathy 2D) -> glycyl-tRNA synthetase (3511ms)\nWhat is neuropathy?\tAnti-MAG peripheral neuropathy\t-11.700021901398499\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Anti-MAG peripheral neuropathy, Also known as, Anti-MAG Peripheral Neuropathy) -> Anti-MAG peripheral neuropathy (3496ms)\nWhat is neuropathy?\tHereditary sensory and autonomic neuropathy\t-11.700021901398499\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Hereditary sensory and autonomic neuropathy, Also known as, Hereditary sensory neuropathy) -> Hereditary sensory and autonomic neuropathy (3496ms)\nWhat is neuropathy?\tCharcot?Marie?Tooth disease\t-11.700021901398499\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Charcot?Marie?Tooth disease, Also known as, Charcot-Marie-Tooth neuropathy) -> Charcot?Marie?Tooth disease (3512ms)\nWhat is neuropathy?\tWartenberg's migratory sensory neuropathy\t-11.700021901398499\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Wartenberg's migratory sensory neuropathy, Also known as, Wartenbergs migratory sensory neuropathy) -> Wartenberg's migratory sensory neuropathy (3511ms)\nWhat is neuropathy?\tinhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein\t-11.700021901398499\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein, Also known as, dysautonomia (Riley-Day syndrome, hereditary sensory autonomic neuropathy type III)) -> inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein (3511ms)\nWhat is neuropathy?\tCerebral dysgenesis?neuropathy?ichthyosis?keratoderma syndrome\t-11.700021901398499\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Cerebral dysgenesis?neuropathy?ichthyosis?keratoderma syndrome, Also known as, Cerebral dysgenesis ? neuropathy ? ichthyosis ? keratoderma syndrome) -> Cerebral dysgenesis?neuropathy?ichthyosis?keratoderma syndrome (3511ms)\nWhat is neuropathy?\tDejerine?Sottas disease\t-11.700021901398499\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Dejerine?Sottas disease, Also known as, Dejerine-Sottas neuropathy) -> Dejerine?Sottas disease (3496ms)\nWhat is neuropathy?\tLenalidomide\t-11.754146175224662\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Lenalidomide, is known as, peripheral neuropathy) -> Lenalidomide (2091ms)\nWhat is neuropathy?\tThalidomide\t-11.754146175224662\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Thalidomide, is known as, peripheral neuropathy) -> Thalidomide (2023ms)\nWhat is neuropathy?\thigh blood sugar levels\t-11.785096726673721\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (high blood sugar levels, is known as, diabetic neuropathy) -> high blood sugar levels (2091ms)\nWhat is neuropathy?\tPeripheral Neuropathy\t-11.83376703533993\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, Peripheral Neuropathy) -> Peripheral Neuropathy (5338ms)\nWhat is neuropathy?\tDistal axonopathy\t-11.90323240851269\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Distal axonopathy, Also known as, dying-back neuropathy) -> Distal axonopathy (3512ms)\nWhat is neuropathy?\tEnteric neuropathy\t-11.90323240851269\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Enteric neuropathy, Also known as, Enteric Neuropathy) -> Enteric neuropathy (3526ms)\nWhat is neuropathy?\tAutonomic neuropathy\t-11.90323240851269\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Autonomic neuropathy, Also known as, Visceral neuropathy) -> Autonomic neuropathy (3526ms)\nWhat is neuropathy?\tFamilial dysautonomia\t-11.90323240851269\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Familial dysautonomia, Also known as, Hereditary sensory neuropathy type iii) -> Familial dysautonomia (3539ms)\nWhat is neuropathy?\tAuditory neuropathy\t-11.90323240851269\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Auditory neuropathy, Also known as, Auditory Neuropathy Spectrum Disorder) -> Auditory neuropathy (3526ms)\nWhat is neuropathy?\tDiabetic neuropathy\t-11.90323240851269\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Diabetic neuropathy, Also known as, Diabetic neuropathies) -> Diabetic neuropathy (3526ms)\nWhat is neuropathy?\tAlcoholic polyneuropathy\t-11.90323240851269\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Alcoholic polyneuropathy, Also known as, Alcoholic Neuropathy) -> Alcoholic polyneuropathy (3526ms)\nWhat is neuropathy?\tTwo inherited disorders\t-11.910573327403878\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Two inherited disorders, are known to cause, neuropathy) -> Two inherited disorders (2091ms)\nWhat is neuropathy?\ta term\t-11.986790817149197\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a term) -> a term (5337ms)\nWhat is neuropathy?\tperipheral nerves\t-12.071167055432506\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (peripheral nerves, is known as, Peripheral Neuropathy) -> peripheral nerves (2091ms)\nWhat is neuropathy?\tserine palmitoyltransferase, long chain base subunit 1\t-12.092579362179235\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (serine palmitoyltransferase, long chain base subunit 1, Also known as, hereditary sensory neuropathy, type 1) -> serine palmitoyltransferase, long chain base subunit 1 (3539ms)\nWhat is neuropathy?\tsolute carrier family 12 (potassium/chloride transporters), member 6\t-12.092579362179235\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (solute carrier family 12 (potassium/chloride transporters), member 6, Also known as, agenesis of corpus callosum and peripheral neuropathy (Andermann syndrome)) -> solute carrier family 12 (potassium/chloride transporters), member 6 (3539ms)\nWhat is neuropathy?\tgap junction protein, beta 1, 32kDa\t-12.092579362179235\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (gap junction protein, beta 1, 32kDa, Also known as, gap junction protein, beta 1, 32kDa (connexin 32, Charcot-Marie-Tooth neuropathy, X-linked)) -> gap junction protein, beta 1, 32kDa (3552ms)\nWhat is neuropathy?\tCTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1\t-12.092579362179235\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1, Also known as, Congenital cataract, facial dysmorphism, and neuropathy syndrome) -> CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1 (3539ms)\nWhat is neuropathy?\tpatatin-like phospholipase domain containing 6\t-12.092579362179235\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (patatin-like phospholipase domain containing 6, Also known as, neuropathy target esterase) -> patatin-like phospholipase domain containing 6 (3552ms)\nWhat is neuropathy?\theat shock 22kDa protein 8\t-12.092579362179235\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (heat shock 22kDa protein 8, Also known as, hereditary motor neuropathy, distal) -> heat shock 22kDa protein 8 (3552ms)\nWhat is neuropathy?\tkinesin family member 1B\t-12.092579362179235\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (kinesin family member 1B, Also known as, Charcot-Marie-Tooth neuropathy 2A (hereditary motor sensory neuropathy II)) -> kinesin family member 1B (3552ms)\nWhat is neuropathy?\tSET binding factor 2\t-12.092579362179235\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (SET binding factor 2, Also known as, Charcot-Marie-Tooth neuropathy 4B2 (autosomal recessive, with myelin outfolding)) -> SET binding factor 2 (3539ms)\nWhat is neuropathy?\tlower back pain\t-12.10851681984057\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (lower back pain, is, neuropathy) -> lower back pain (5337ms)\nWhat is neuropathy?\tSciatica pain\t-12.112194699229963\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Sciatica pain, is also known as, radiating pain or neuropathy) -> Sciatica pain (2091ms)\nWhat is neuropathy?\t16 times\t-12.212879520902813\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, was, 16 times) -> 16 times (5337ms)\nWhat is neuropathy?\talpha lipoic acid\t-12.321577446761129\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (alpha lipoic acid, is beneficial for, neuropathy) -> alpha lipoic acid (5338ms)\nWhat is neuropathy?\tAfrican Americans\t-12.343919594815212\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (African Americans, were much more likely to have, neuropathy) -> African Americans (5337ms)\nWhat is neuropathy?\tGLA\t-12.358844759248505\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, GLA) -> GLA (5337ms)\nWhat is neuropathy?\tnerve cells\t-12.57143926004416\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (nerve cells, is called, neuropathy) -> nerve cells (5357ms)\nWhat is neuropathy?\tolder age\t-12.579451465303613\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, were, older age) -> older age (5357ms)\nWhat is neuropathy?\tUnspecified idiopathic peripheral neuropathy\t-12.594587886004762\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes classifications, Unspecified idiopathic peripheral neuropathy) -> Unspecified idiopathic peripheral neuropathy (8001ms)\nWhat is neuropathy?\tChronic inflammatory demyelinating polyneuropathy\t-12.594587886004762\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Other inflammatory and toxic neuropathies, Includes classifications, Chronic inflammatory demyelinating polyneuropathy) -> Chronic inflammatory demyelinating polyneuropathy (8001ms)\nWhat is neuropathy?\ta group\t-12.604624557544959\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathies, are, a group) -> a group (5357ms)\nWhat is neuropathy?\tDCA\t-12.618506255520233\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (DCA, may be limited by, neuropathy) -> DCA (5357ms)\nWhat is neuropathy?\tSteven NEUROPATHY\t-12.63117397058698\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Steven NEUROPATHY, was told, NEUROPATHY) -> Steven NEUROPATHY (5357ms)\nWhat is neuropathy?\tDiabetic Peripheral Neuropathy\t-12.634703282592223\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Diabetic Peripheral Neuropathy, is, Neuropathy) -> Diabetic Peripheral Neuropathy (5357ms)\nWhat is neuropathy?\ta drug\t-12.635963702292408\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a drug) -> a drug (5357ms)\nWhat is neuropathy?\tM.D.\t-12.642082227949363\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (M.D., is, Neuropathy) -> M.D. (5357ms)\nWhat is neuropathy?\tHereditary\t-12.646797765703592\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Hereditary, are Hereditary, Neuropathies) -> Hereditary (5379ms)\nWhat is neuropathy?\tpast radiation treatment\t-12.688330070668526\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (past radiation treatment, is, neuropathy) -> past radiation treatment (5380ms)\nWhat is neuropathy?\ta problem\t-12.689964326016389\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a problem) -> a problem (5379ms)\nWhat is neuropathy?\tcertain prescription drugs\t-12.712660186929867\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, certain prescription drugs) -> certain prescription drugs (5379ms)\nWhat is neuropathy?\talcohol abuse\t-12.755222061764256\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (alcohol abuse, is a frequent cause of, neuropathy) -> alcohol abuse (5379ms)\nWhat is neuropathy?\ta condition\t-12.756189153051098\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a condition) -> a condition (5379ms)\nWhat is neuropathy?\therpes zoster infection\t-12.763620200816181\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, herpes zoster infection) -> herpes zoster infection (5379ms)\nWhat is neuropathy?\tthere diagnostic features\t-12.776322451045539\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, Are, there diagnostic features) -> there diagnostic features (5379ms)\nWhat is neuropathy?\tIdiopathic progressive polyneuropathy\t-12.778462384363024\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes classifications, Idiopathic progressive polyneuropathy) -> Idiopathic progressive polyneuropathy (8116ms)\nWhat is neuropathy?\tCarotid sinus syndrome\t-12.778462384363024\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Idiopathic peripheral autonomic neuropathy, Includes classifications, Carotid sinus syndrome) -> Carotid sinus syndrome (8001ms)\nWhat is neuropathy?\tHereditary sensory neuropathy\t-12.778462384363024\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes classifications, Hereditary sensory neuropathy) -> Hereditary sensory neuropathy (8001ms)\nWhat is neuropathy?\tCritical illness polyneuropathy\t-12.778462384363024\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Other inflammatory and toxic neuropathies, Includes classifications, Critical illness polyneuropathy) -> Critical illness polyneuropathy (8116ms)\nWhat is neuropathy?\tHereditary peripheral neuropathy\t-12.778462384363024\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes classifications, Hereditary peripheral neuropathy) -> Hereditary peripheral neuropathy (8001ms)\nWhat is neuropathy?\tCarpal tunnel syndrome\t-12.778462384363024\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Neuropathy, Includes Diseases, Carpal tunnel syndrome) -> Carpal tunnel syndrome (8001ms)\nWhat is neuropathy?\tan awful side-effect\t-12.783674784388188\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, an awful side-effect) -> an awful side-effect (6047ms)\nWhat is neuropathy?\tpoor glycemic control\t-12.797543188183333\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, poor glycemic control) -> poor glycemic control (6047ms)\nWhat is neuropathy?\tgraft dysfunction and anemia\t-12.798357113160376\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, graft dysfunction and anemia) -> graft dysfunction and anemia (6047ms)\nWhat is neuropathy?\tClinical Symposia\t-12.81523610380984\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Clinical Symposia, Editions, Clinical Symposia: Compression Neuropathies (Netter Clinical Symposia)) -> Clinical Symposia (6280ms)\nWhat is neuropathy?\tChurchill Livingstone\t-12.81523610380984\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Churchill Livingstone, Book editions published, Treatment of Diabetic Neuropathy: A New Approach) -> Churchill Livingstone (6280ms)\nWhat is neuropathy?\tAlzheimer?s disease\t-12.819508098326118\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, Alzheimer?s disease) -> Alzheimer?s disease (6047ms)\nWhat is neuropathy?\tthe Semmes-Weinstein monofilament\t-12.83666208545656\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, the Semmes-Weinstein monofilament) -> the Semmes-Weinstein monofilament (6047ms)\nWhat is neuropathy?\ta disease or abnormality\t-12.841682826539353\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a disease or abnormality) -> a disease or abnormality (6047ms)\nWhat is neuropathy?\ta deterioration or loss\t-12.841682826539353\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a deterioration or loss) -> a deterioration or loss (6047ms)\nWhat is neuropathy?\ta coincidence\t-12.842465192519892\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (NEUROPATHY, was actually, a coincidence) -> a coincidence (6163ms)\nWhat is neuropathy?\ta very broad diagnosis\t-12.876593936983612\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a very broad diagnosis) -> a very broad diagnosis (6163ms)\nWhat is neuropathy?\ta very common reason people\t-12.888863300115295\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a very common reason people) -> a very common reason people (6163ms)\nWhat is neuropathy?\tTreatment of Nerve Injury and Entrapment Neuropathy\t-12.899511915557378\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Treatment of Nerve Injury and Entrapment Neuropathy, Editions, Treatment of Nerve Injury and Entrapment Neuropathy) -> Treatment of Nerve Injury and Entrapment Neuropathy (6280ms)\nWhat is neuropathy?\tCompression Neuropathies, Including Carpal Tunnel Syndrome\t-12.899511915557378\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Compression Neuropathies, Including Carpal Tunnel Syndrome, Editions, Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2)) -> Compression Neuropathies, Including Carpal Tunnel Syndrome (6347ms)\nWhat is neuropathy?\tTreatment of Diabetic Neuropathy\t-12.899511915557378\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Treatment of Diabetic Neuropathy, Editions, Treatment of Diabetic Neuropathy: A New Approach) -> Treatment of Diabetic Neuropathy (6280ms)\nWhat is neuropathy?\tTreatment of Diabetic Neuropathy: A New Approach\t-12.899511915557378\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: (neuropathy, edition, $x) -> (Treatment of Diabetic Neuropathy, Editions, Treatment of Diabetic Neuropathy: A New Approach) -> Treatment of Diabetic Neuropathy: A New Approach (6280ms)\nWhat is neuropathy?\tNeuropathies (Handbook of Clinical Neurology Revised Series)\t-12.899511915557378\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Neuropathies (Handbook of Clinical Neurology Revised Series), Edition Of, Neuropathies) -> Neuropathies (Handbook of Clinical Neurology Revised Series) (6280ms)\nWhat is neuropathy?\tGuillain-Barr? syndrome\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Guillain-Barr? syndrome) -> Guillain-Barr? syndrome (8152ms)\nWhat is neuropathy?\tPolyneuropathy in other diseases classified elsewhere\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Polyneuropathy in other diseases classified elsewhere) -> Polyneuropathy in other diseases classified elsewhere (8152ms)\nWhat is neuropathy?\tPolyneuropathy in diabetes\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes Diseases, Polyneuropathy in diabetes) -> Polyneuropathy in diabetes (8196ms)\nWhat is neuropathy?\tPolyneuropathy due to drugs\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Polyneuropathy due to drugs) -> Polyneuropathy due to drugs (8196ms)\nWhat is neuropathy?\tUnspecified inflammatory and toxic neuropathies\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Unspecified inflammatory and toxic neuropathies) -> Unspecified inflammatory and toxic neuropathies (8196ms)\nWhat is neuropathy?\tPolyneuropathy in malignant disease\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Polyneuropathy in malignant disease) -> Polyneuropathy in malignant disease (8116ms)\nWhat is neuropathy?\tIdiopathic peripheral autonomic neuropathy, unspecified\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Idiopathic peripheral autonomic neuropathy, Includes classifications, Idiopathic peripheral autonomic neuropathy, unspecified) -> Idiopathic peripheral autonomic neuropathy, unspecified (8152ms)\nWhat is neuropathy?\tPolyneuropathy due to other toxic agents\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes Diseases, Polyneuropathy due to other toxic agents) -> Polyneuropathy due to other toxic agents (8152ms)\nWhat is neuropathy?\tPolyneuropathy in collagen vascular disease\t-12.900680552914649\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes Diseases, Polyneuropathy in collagen vascular disease) -> Polyneuropathy in collagen vascular disease (8196ms)\nWhat is neuropathy?\tOld mitochondria\t-12.917555324842201\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Old mitochondria, might be responsible for, neuropathy) -> Old mitochondria (6347ms)\nWhat is neuropathy?\tthe NeuropathyDR logo\t-12.927375776993491\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (the NeuropathyDR logo, are specialists in, neuropathy) -> the NeuropathyDR logo (6346ms)\nWhat is neuropathy?\tuncontrolled blood glucose levels\t-12.931870998901692\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, uncontrolled blood glucose levels) -> uncontrolled blood glucose levels (6347ms)\nWhat is neuropathy?\turemia , atherosclerosis , liver failure\t-12.94279935571202\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, uremia , atherosclerosis , liver failure) -> uremia , atherosclerosis , liver failure (6347ms)\nWhat is neuropathy?\tan under-recognized national epidemic\t-12.952699484246482\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, an under-recognized national epidemic) -> an under-recognized national epidemic (6347ms)\nWhat is neuropathy?\tanterior optic type\t-12.95546555851349\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (anterior optic type, were called, neuropathy) -> anterior optic type (6347ms)\nWhat is neuropathy?\tmen\t-12.958888894458749\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (men, is also associated with, neuropathy) -> men (6347ms)\nWhat is neuropathy?\tno fun\t-12.97718379462723\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (no fun, is certainly more temporary than, neuropathy) -> no fun (6392ms)\nWhat is neuropathy?\tEarly postoperative period\t-12.993883935271715\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Early postoperative period, is characterized by, neuropathies) -> Early postoperative period (6392ms)\nWhat is neuropathy?\tVISUAL IMPROVEMENTS Diplopia\t-13.045366295796597\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (VISUAL IMPROVEMENTS Diplopia, is caused by, neuropathy) -> VISUAL IMPROVEMENTS Diplopia (6392ms)\nWhat is neuropathy?\tnerve disease or damage\t-13.04946931861409\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, nerve disease or damage) -> nerve disease or damage (6392ms)\nWhat is neuropathy?\tnerve damage or disease\t-13.062732272737424\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, nerve damage or disease) -> nerve damage or disease (6392ms)\nWhat is neuropathy?\tBlood sugar control\t-13.075637807052415\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Blood sugar control, is the only treatment for, neuropathy) -> Blood sugar control (6392ms)\nWhat is neuropathy?\tnerve compression\t-13.086488842417626\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, nerve compression) -> nerve compression (6392ms)\nWhat is neuropathy?\tAcrodystrophic neuropathy\t-13.102722422671569\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: (neuropathy, edition of, $x) -> (Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales, Edition Of, Acrodystrophic neuropathy) -> Acrodystrophic neuropathy (6549ms)\nWhat is neuropathy?\tDr. Vinik\t-13.145056155252995\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Dr. Vinik, is a leading expert in, neuropathy) -> Dr. Vinik (6549ms)\nWhat is neuropathy?\ta minor mystery\t-13.164240175070038\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a minor mystery) -> a minor mystery (6549ms)\nWhat is neuropathy?\tB vitamins and magnesium\t-13.177504438295603\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (B vitamins and magnesium, are compromised with, neuropathy) -> B vitamins and magnesium (6549ms)\nWhat is neuropathy?\ta systemic disease\t-13.187484467338022\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a systemic disease) -> a systemic disease (6549ms)\nWhat is neuropathy?\tgastrointestinal tract\t-13.19913622572158\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (gastrointestinal tract, is called, neuropathy) -> gastrointestinal tract (6549ms)\nWhat is neuropathy?\ta limiting factor\t-13.208640689050855\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, was, a limiting factor) -> a limiting factor (6549ms)\nWhat is neuropathy?\t2.5 times\t-13.20941294720127\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, was, 2.5 times) -> 2.5 times (7437ms)\nWhat is neuropathy?\ttwo medications\t-13.247901902941823\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (NEUROPATHY, was prescribed, two medications) -> two medications (7438ms)\nWhat is neuropathy?\t17p12\t-13.25492588891242\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (17p12, are associated with, neuropathy) -> 17p12 (7438ms)\nWhat is neuropathy?\ta serious problem\t-13.273743642302973\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a serious problem) -> a serious problem (7438ms)\nWhat is neuropathy?\ta neurological condition\t-13.275020080497072\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a neurological condition) -> a neurological condition (7438ms)\nWhat is neuropathy?\tCompression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2)\t-13.292069376338114\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition of, neuropathy) -> (Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2), Edition Of, Compression Neuropathies, Including Carpal Tunnel Syndrome) -> Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2) (7570ms)\nWhat is neuropathy?\tAcrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales\t-13.292069376338114\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition of, neuropathy) -> (Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales, Edition Of, Acrodystrophic neuropathy) -> Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales (7570ms)\nWhat is neuropathy?\teither side\t-13.32168099661405\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (either side, is a slide in, neuropathy) -> either side (7570ms)\nWhat is neuropathy?\ta functional disturbance\t-13.330332309805282\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a functional disturbance) -> a functional disturbance (7570ms)\nWhat is neuropathy?\ta progressive disease\t-13.332492934400479\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a progressive disease) -> a progressive disease (7570ms)\nWhat is neuropathy?\tThe symptom\t-13.369919235970853\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (The symptom, is known as, neuropathy) -> The symptom (2091ms)\nWhat is neuropathy?\tExcessive zinc\t-13.371480293732061\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Excessive zinc, has been linked to, neuropathy) -> Excessive zinc (7570ms)\nWhat is neuropathy?\tLyme disease\t-13.3760557229006\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Lyme disease, Instance Of, neuropathies) -> Lyme disease (7570ms)\nWhat is neuropathy?\ta larger factor\t-13.388197362799398\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (a larger factor, is, neuropathy) -> a larger factor (8196ms)\nWhat is neuropathy?\t12 junior high kids\t-13.399903267009527\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (NEUROPATHY, is like, 12 junior high kids) -> 12 junior high kids (8196ms)\nWhat is neuropathy?\tImproved regulation\t-13.400574495407842\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Improved regulation, is the best way to reduce, neuropathy) -> Improved regulation (8230ms)\nWhat is neuropathy?\tthe nerve endings\t-13.416538092693282\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (the nerve endings, is known as, peripheral neuropathy) -> the nerve endings (2144ms)\nWhat is neuropathy?\ta nerve disease\t-13.442953089372258\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a nerve disease) -> a nerve disease (8230ms)\nWhat is neuropathy?\tDiscomfort\t-13.446624587073817\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Discomfort, is Brought on by, neuropathy) -> Discomfort (8230ms)\nWhat is neuropathy?\ta terrible disease\t-13.463354208236211\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a terrible disease) -> a terrible disease (8230ms)\nWhat is neuropathy?\tdiabetes and alcoholism\t-13.472236983719359\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, diabetes and alcoholism) -> diabetes and alcoholism (8230ms)\nWhat is neuropathy?\t?Aspartame\t-13.488040683311812\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (?Aspartame, is a culprit in, small fiber neuropathy) -> ?Aspartame (8230ms)\nWhat is neuropathy?\tDiabetes\t-13.531941138810932\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Diabetes, is a frequent cause of, neuropathy) -> Diabetes (8230ms)\nWhat is neuropathy?\tMRI\t-13.569172257065992\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (Optic Nerve Neuropathies Optic neuritis, is best seen on, MRI) -> MRI (8230ms)\nWhat is neuropathy?\tNeuropathies\t-13.591230266524178\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Neuropathies, Editions, Neuropathies (Handbook of Clinical Neurology Revised Series)) -> Neuropathies (8265ms)\nWhat is neuropathy?\tSaunders\t-13.591230266524178\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Saunders, Book editions published, Clinical Symposia: Compression Neuropathies (Netter Clinical Symposia)) -> Saunders (8265ms)\nWhat is neuropathy?\tHigh titers\t-13.60280717159124\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (High titers, are common in, axonal sensory > motor neuropathies) -> High titers (8265ms)\nWhat is neuropathy?\tThe nervous system\t-13.603103847630226\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (The nervous system, is known as, diabetic neuropathy) -> The nervous system (2144ms)\nWhat is neuropathy?\t2.This formula\t-13.606706267634957\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (2.This formula, may also be used for, neuropathy) -> 2.This formula (8265ms)\nWhat is neuropathy?\tcyclohexane\t-13.608351916532305\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (cyclohexane, has been known to cause, a peripheral neuropathy) -> cyclohexane (2144ms)\nWhat is neuropathy?\tvincristine\t-13.608937891392333\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (vincristine, is known as, peripheral neuropathy) -> vincristine (2143ms)\nWhat is neuropathy?\tsildenafil use\t-13.630241318070544\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (optic neuropathy, have been associated with, sildenafil use) -> sildenafil use (8265ms)\nWhat is neuropathy?\tcisplatin\t-13.634640261487327\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (cisplatin, is known as, peripheral neuropathy) -> cisplatin (2143ms)\nWhat is neuropathy?\tNerve Damage\t-13.640711323837598\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Nerve Damage, is also called, Neuropathy) -> Nerve Damage (8265ms)\nWhat is neuropathy?\tthe effect vincristine\t-13.659707449001981\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (the effect vincristine, is known as, peripheral neuropathy |) -> the effect vincristine (2143ms)\nWhat is neuropathy?\tfoot\t-13.669124005450747\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (foot, is also known as, Neuropathy) -> foot (2197ms)\nWhat is neuropathy?\tThe condition\t-13.679542570443887\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (The condition, is also known as, pudendal neuropathy) -> The condition (2196ms)\nWhat is neuropathy?\tVitamin B6\t-13.681186872740502\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, have been shown to be deficient in, Vitamin B6) -> Vitamin B6 (8299ms)\nWhat is neuropathy?\tceliac disease\t-13.689501307013856\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, were found to also have, celiac disease) -> celiac disease (8299ms)\nWhat is neuropathy?\tIntravenous Application\t-13.691120035530602\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, do, $x) -> (Diabetic Neuropathy, were done via, Intravenous Application) -> Intravenous Application (8299ms)\nWhat is neuropathy?\ta very long time\t-13.693081139453787\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, has been present for, a very long time) -> a very long time (8299ms)\nWhat is neuropathy?\tdamage to the nerves\t-13.700243681653207\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, damage to the nerves) -> damage to the nerves (8299ms)\nWhat is neuropathy?\tGBS\t-13.7315345711541\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (GBS, Instance Of, neuropathies) -> GBS (8299ms)\nWhat is neuropathy?\tInfantile Refsum disease\t-13.75730222383767\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes Diseases, Infantile Refsum disease) -> Infantile Refsum disease (8330ms)\nWhat is neuropathy?\tblood flow\t-13.769122906250068\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (blood flow, are more harmful in, glaucomatous optic neuropathy) -> blood flow (8330ms)\nWhat is neuropathy?\tcarpal tunnel syndrome\t-13.793165140183435\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (carpal tunnel syndrome, Instance Of, neuropathies) -> carpal tunnel syndrome (8330ms)\nWhat is neuropathy?\ta cause\t-13.803239309753105\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, has been suggested as, a cause) -> a cause (8330ms)\nWhat is neuropathy?\ta result\t-13.83225395672989\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Chronic neuropathy, has been reported as, a result) -> a result (8330ms)\nWhat is neuropathy?\tMMN\t-13.839561659949634\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (MMN, Instance Of, neuropathies) -> MMN (8330ms)\nWhat is neuropathy?\tthe drug\t-13.863115956634466\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (the drug, is known as, peripheral neuropathy) -> the drug (2197ms)\nWhat is neuropathy?\ta disease of the nervous system\t-13.87048352333021\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a disease of the nervous system) -> a disease of the nervous system (8370ms)\nWhat is neuropathy?\tCHN\t-13.889673247059262\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (CHN, Instance Of, neuropathies) -> CHN (8370ms)\nWhat is neuropathy?\tDSN\t-13.889673247059262\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (DSN, Instance Of, neuropathies) -> DSN (8370ms)\nWhat is neuropathy?\tMultifocal Motor Neuropathy\t-13.901719153778629\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Multifocal Motor Neuropathy, Instance Of, neuropathies) -> Multifocal Motor Neuropathy (8370ms)\nWhat is neuropathy?\ta disease of the peripheral nervous system\t-13.909467753998108\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a disease of the peripheral nervous system) -> a disease of the peripheral nervous system (8370ms)\nWhat is neuropathy?\tlung cancer\t-13.914962336993785\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, has survived, lung cancer) -> lung cancer (8370ms)\nWhat is neuropathy?\tChronic inflammatory demyelinating polyradiculopathy\t-13.922724154582319\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Chronic inflammatory demyelinating polyradiculopathy, Instance Of, neuropathy) -> Chronic inflammatory demyelinating polyradiculopathy (8370ms)\nWhat is neuropathy?\tDPN\t-13.93023181157937\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (DPN, Instance Of, painful neuropathy) -> DPN (8370ms)\nWhat is neuropathy?\tdomestic short hair\t-13.93071611677755\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (distal neuropathy, have been seen in, domestic short hair) -> domestic short hair (8401ms)\nWhat is neuropathy?\tCharcot-Marie-Tooth disease\t-13.949941306674624\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Charcot-Marie-Tooth disease, Instance Of, neuropathies) -> Charcot-Marie-Tooth disease (8401ms)\nWhat is neuropathy?\tSFN\t-13.958842359616979\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (SFN, Instance Of, neuropathy) -> SFN (8401ms)\nWhat is neuropathy?\tthe FDA\t-13.968543641987234\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, has been approved by, the FDA) -> the FDA (8401ms)\nWhat is neuropathy?\ta cure\t-13.974539640265839\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, go, $x) -> (NEUROPATHY & SOUL FRAGMENTS Karen, Is there going to be, a cure) -> a cure (8401ms)\nWhat is neuropathy?\tmercury poisoning\t-13.975971989203872\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (a NEUROPATHY, may have, mercury poisoning) -> mercury poisoning (8401ms)\nWhat is neuropathy?\tDiagnostic Imaging Anybody\t-13.99518530971292\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Diagnostic Imaging Anybody, know about, Neuropathy) -> Diagnostic Imaging Anybody (3578ms)\nWhat is neuropathy?\tNeurontin\t-13.996860418959615\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Neurontin, is in, painful neuropathies) -> Neurontin (8401ms)\nWhat is neuropathy?\tWashington Title\t-14.003331323963712\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Washington Title, is best in, ulnar neuropathy) -> Washington Title (8471ms)\nWhat is neuropathy?\tfound in insulin resistance\t-14.005520195681186\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (found in insulin resistance, Instance Of, neuropathy) -> found in insulin resistance (8471ms)\nWhat is neuropathy?\tsensory nerve fibers\t-14.058477940262339\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (sensory nerve fibers, are impaired in, diabetic neuropathy) -> sensory nerve fibers (8471ms)\nWhat is neuropathy?\t9784431703266\t-14.077549128253473\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9784431703266, Book Editions, Treatment of Nerve Injury and Entrapment Neuropathy) -> 9784431703266 (8471ms)\nWhat is neuropathy?\t9789999981859\t-14.077549128253473\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9789999981859, Book Editions, Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2)) -> 9789999981859 (8471ms)\nWhat is neuropathy?\t9781933247458\t-14.077549128253473\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9781933247458, Book Editions, Clinical Symposia: Compression Neuropathies (Netter Clinical Symposia)) -> 9781933247458 (8597ms)\nWhat is neuropathy?\t9780444904478\t-14.077549128253473\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9780444904478, Book Editions, Neuropathies (Handbook of Clinical Neurology Revised Series)) -> 9780444904478 (8471ms)\nWhat is neuropathy?\t9780192641434\t-14.077549128253473\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9780192641434, Book Editions, Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales) -> 9780192641434 (8597ms)\nWhat is neuropathy?\t9780443047749\t-14.077549128253473\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9780443047749, Book Editions, Treatment of Diabetic Neuropathy: A New Approach) -> 9780443047749 (8597ms)\nWhat is neuropathy?\tanxiety , depression\t-14.088228617241652\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, concurrently have, anxiety , depression) -> anxiety , depression (8597ms)\nWhat is neuropathy?\tCongenital Analgesia\t-14.089882985304655\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Congenital Analgesia, Instance Of, neuropathies) -> Congenital Analgesia (8597ms)\nWhat is neuropathy?\tFamilial Dysautonomia\t-14.089882985304655\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Familial Dysautonomia, Instance Of, neuropathies) -> Familial Dysautonomia (8597ms)\nWhat is neuropathy?\tAutonomic Neuropathy\t-14.099647054309527\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Autonomic Neuropathy, Instance Of, neuropathy) -> Autonomic Neuropathy (8597ms)\nWhat is neuropathy?\tDiabetic neuropathic pain\t-14.106598652940583\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Diabetic neuropathic pain, Instance Of, neuropathy) -> Diabetic neuropathic pain (8597ms)\nWhat is neuropathy?\tcomplete pain relief\t-14.108350946674022\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (peripheral neuropathy, have reported, complete pain relief) -> complete pain relief (8707ms)\nWhat is neuropathy?\tsubnormal skin temperatures\t-14.122105888107745\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (chronic neuropathy, tend to have, subnormal skin temperatures) -> subnormal skin temperatures (8707ms)\nWhat is neuropathy?\troutine check-ups\t-14.123661115733425\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, should have, routine check-ups) -> routine check-ups (8707ms)\nWhat is neuropathy?\tlow plasma levels\t-14.137416057167147\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (peripheral neuropathy, have, low plasma levels) -> low plasma levels (8707ms)\nWhat is neuropathy?\tan issue\t-14.139996786844069\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, an issue) -> an issue (8707ms)\nWhat is neuropathy?\ta deeper and prickle-like quality\t-14.143540846549861\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, has, a deeper and prickle-like quality) -> a deeper and prickle-like quality (8707ms)\nWhat is neuropathy?\tGuillain Barre\t-14.14454100974467\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Guillain Barre, Instance Of, neuropathy) -> Guillain Barre (8707ms)\nWhat is neuropathy?\tTunnel Syndrome\t-14.14454100974467\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Tunnel Syndrome, Instance Of, neuropathy) -> Tunnel Syndrome (8740ms)\nWhat is neuropathy?\thttp://en.wikipedia.org/wiki/Neuropathy%20target%20esterase\t-14.148441728799034\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (neuropathy-target-esterase, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Neuropathy%20target%20esterase) -> http://en.wikipedia.org/wiki/Neuropathy%20target%20esterase (8740ms)\nWhat is neuropathy?\thttp://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy\t-14.148441728799034\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (multifocal_motor_neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy) -> http://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy (8740ms)\nWhat is neuropathy?\tCMT disease\t-14.15964770893449\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (CMT disease, Instance Of, neuropathies) -> CMT disease (8740ms)\nWhat is neuropathy?\tacute inflammatory demyelinating polyneuropathy\t-14.15964770893449\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (acute inflammatory demyelinating polyneuropathy, Instance Of, neuropathies) -> acute inflammatory demyelinating polyneuropathy (8740ms)\nWhat is neuropathy?\tchronic inflammatory demyelinating polyradiculoneuropathy\t-14.15964770893449\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (chronic inflammatory demyelinating polyradiculoneuropathy, Instance Of, neuropathies) -> chronic inflammatory demyelinating polyradiculoneuropathy (8740ms)\nWhat is neuropathy?\tsciatic nerve pain\t-14.161859240240533\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (sciatic nerve pain, Instance Of, neuropathy) -> sciatic nerve pain (8740ms)\nWhat is neuropathy?\ta few days post surgery\t-14.1686943785173\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, go, $x) -> (The neuropathy, was completely gone for, a few days post surgery) -> a few days post surgery (9468ms)\nWhat is neuropathy?\tnumbness of the hand\t-14.170979999087669\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (numbness of the hand, Instance Of, neuropathy) -> numbness of the hand (9468ms)\nWhat is neuropathy?\tchronic inflammatory demyelinating polyneuropathy\t-14.170979999087669\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (chronic inflammatory demyelinating polyneuropathy, Instance Of, neuropathy) -> chronic inflammatory demyelinating polyneuropathy (9468ms)\nWhat is neuropathy?\thttp://en.wikipedia.org/wiki/Auditory%20neuropathy\t-14.187425959466932\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (Auditory Neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Auditory%20neuropathy) -> http://en.wikipedia.org/wiki/Auditory%20neuropathy (9468ms)\nWhat is neuropathy?\tfacial nerve palsy\t-14.191299318643662\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (facial nerve palsy, Instance Of, neuropathies) -> facial nerve palsy (9469ms)\nWhat is neuropathy?\tnumbness and prickling sensations\t-14.193512737359068\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, have, numbness and prickling sensations) -> numbness and prickling sensations (9468ms)\nWhat is neuropathy?\tbtx-a\t-14.200620597540402\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (btx-a, is helpful in, chronic focal painful neuropathies) -> btx-a (9691ms)\nWhat is neuropathy?\tdiabetic neuropathy\t-14.202225436488378\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (diabetic neuropathy, Instance Of, neuropathies) -> diabetic neuropathy (9691ms)\nWhat is neuropathy?\teither complete or significant resolution\t-14.205891505081306\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (NEUROPATHY, had, either complete or significant resolution) -> either complete or significant resolution (9691ms)\nWhat is neuropathy?\tchronic entrapment neuropathy\t-14.211649345626462\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (chronic entrapment neuropathy, Instance Of, neuropathy) -> chronic entrapment neuropathy (9691ms)\nWhat is neuropathy?\tsevere sensory neuropathy\t-14.211649345626462\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (severe sensory neuropathy, Instance Of, neuropathy) -> severe sensory neuropathy (9691ms)\nWhat is neuropathy?\tsymptoms?yet\t-14.213849288095766\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, don?t have, symptoms?yet) -> symptoms?yet (9720ms)\nWhat is neuropathy?\tlow back pain\t-14.215873954522811\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (low back pain, Instance Of, neuropathy) -> low back pain (9720ms)\nWhat is neuropathy?\thttp://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy\t-14.219912818356848\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (Giant axonal neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy) -> http://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy (9720ms)\nWhat is neuropathy?\tacute isolated cranial neuropathy\t-14.220770104473598\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (acute isolated cranial neuropathy, Instance Of, neuropathy) -> acute isolated cranial neuropathy (9720ms)\nWhat is neuropathy?\tCMT-I\t-14.228816821492206\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (CMT-I, Instance Of, neuropathy) -> CMT-I (9720ms)\nWhat is neuropathy?\tObturator neuropathy.\t-14.228816821492206\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Obturator neuropathy., Instance Of, neuropathy) -> Obturator neuropathy. (9720ms)\nWhat is neuropathy?\tPage Six Carpal tunnel syndrome\t-14.228816821492206\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Page Six Carpal tunnel syndrome, Instance Of, neuropathy) -> Page Six Carpal tunnel syndrome (9751ms)\nWhat is neuropathy?\tLINKAGES Conservative Carpal tunnel syndrome\t-14.228816821492206\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (LINKAGES Conservative Carpal tunnel syndrome, Instance Of, neuropathy) -> LINKAGES Conservative Carpal tunnel syndrome (9750ms)\nWhat is neuropathy?\tdrugs\t-14.234490044260681\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (drugs, are known potent causes of, neuropathy) -> drugs (2253ms)\nWhat is neuropathy?\tMS\t-14.236193274078802\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (MS, Instance Of, neuropathies) -> MS (9751ms)\nWhat is neuropathy?\tprogressive peripheral neuropathies\t-14.241704177463\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (progressive peripheral neuropathies, Instance Of, neuropathies) -> progressive peripheral neuropathies (9751ms)\nWhat is neuropathy?\tchronic inflammatory neuropathies\t-14.241704177463\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (chronic inflammatory neuropathies, Instance Of, neuropathies) -> chronic inflammatory neuropathies (9751ms)\nWhat is neuropathy?\tMMA and Hcy testing\t-14.243911994649114\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, must have, MMA and Hcy testing) -> MMA and Hcy testing (9751ms)\nWhat is neuropathy?\tnerve Harm\t-14.24491005201947\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (Diabetic peripheral neuropathy, is Brought on by, nerve Harm) -> nerve Harm (9751ms)\nWhat is neuropathy?\tabol- ishedreflexes\t-14.24531403292594\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (abol- ishedreflexes, Instance Of, neuropathies) -> abol- ishedreflexes (9782ms)\nWhat is neuropathy?\tmultifocal motor neuropathy with conduction block\t-14.250824936310135\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (multifocal motor neuropathy with conduction block, Instance Of, neuropathies) -> multifocal motor neuropathy with conduction block (9781ms)\nWhat is neuropathy?\tPregabalin and gabapentin\t-14.255380243991096\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Pregabalin and gabapentin, are effective in, diabetic neuropathy) -> Pregabalin and gabapentin (9781ms)\nWhat is neuropathy?\tED.\t-14.262480172583615\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, will have, ED.) -> ED. (9782ms)\nWhat is neuropathy?\ta new member\t-14.266954327308937\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (a new member, is mutated in, giant axonal neuropathy) -> a new member (9781ms)\nWhat is neuropathy?\ta multifariousness\t-14.282857786652215\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Fringy Neuropathy, has, a multifariousness) -> a multifariousness (9782ms)\nWhat is neuropathy?\tlarge nerve fibers\t-14.28360050668405\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (large nerve fibers, are thus normal in, small fiber neuropathy) -> large nerve fibers (9782ms)\nWhat is neuropathy?\tmultiple sclerosis\t-14.29018816124319\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (multiple sclerosis, Instance Of, neuropathies) -> multiple sclerosis (9782ms)\nWhat is neuropathy?\tPregabalin\t-14.302761830148096\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Pregabalin, is registered in, diabetic neuropathy patients) -> Pregabalin (9811ms)\nWhat is neuropathy?\ta paradox\t-14.303586589181915\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, do, $x) -> (Diabetic somatic neuropathies, do represent, a paradox) -> a paradox (9812ms)\nWhat is neuropathy?\tthe Decline list\t-14.307117703527862\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (neuropathy, is on, the Decline list) -> the Decline list (9812ms)\nWhat is neuropathy?\tabnormal fasting glucose metabolism\t-14.31016224984082\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, had, abnormal fasting glucose metabolism) -> abnormal fasting glucose metabolism (9812ms)\nWhat is neuropathy?\tsupportive care\t-14.310288496551085\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Neuropathy, has been managed with, supportive care) -> supportive care (9811ms)\nWhat is neuropathy?\tCMT pain\t-14.312094127870086\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (CMT pain, is used in, many painful neuropathies) -> CMT pain (9812ms)\nWhat is neuropathy?\tDiabetic polyneuropathy\t-14.31775045657734\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Diabetic polyneuropathy, Instance Of, systemic neuropathy) -> Diabetic polyneuropathy (9812ms)\nWhat is neuropathy?\tNerve Support Formula STILL HAVE QUESTIONS\t-14.318676588292924\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, go, $x) -> (neuropathy, go to, Nerve Support Formula STILL HAVE QUESTIONS) -> Nerve Support Formula STILL HAVE QUESTIONS (9811ms)\nWhat is neuropathy?\tDoctors Diagnose Diabetic Neuropathy\t-14.320837212888119\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, do, $x) -> (Neuropathy, Do, Doctors Diagnose Diabetic Neuropathy) -> Doctors Diagnose Diabetic Neuropathy (9879ms)\nWhat is neuropathy?\tone of the most common\t-14.329181800952469\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, one of the most common) -> one of the most common (9879ms)\nWhat is neuropathy?\tlarge fibre loss\t-14.330463018369707\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (large fibre loss, was observed in, sensory ataxic neuropathy) -> large fibre loss (9879ms)\nWhat is neuropathy?\tan exam\t-14.333169802622972\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is diagnosed with, an exam) -> an exam (9879ms)\nWhat is neuropathy?\tworse average color vision\t-14.339405338120327\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (optic neuropathy, had considerably, worse average color vision) -> worse average color vision (9879ms)\nWhat is neuropathy?\tan average vitamin D level\t-14.353552531347052\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, had, an average vitamin D level) -> an average vitamin D level (9879ms)\nWhat is neuropathy?\ta less stereotyped presentation\t-14.358857702455927\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Ulnar neuropathy, has, a less stereotyped presentation) -> a less stereotyped presentation (9977ms)\nWhat is neuropathy?\tfor 10 months\t-14.368025741809017\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, go, $x) -> (perephial neuropathy, i am now going on, for 10 months) -> for 10 months (9977ms)\nWhat is neuropathy?\thuman patients\t-14.369430470910768\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Peripheral neuropathy, has been reported in, human patients) -> human patients (9977ms)\nWhat is neuropathy?\tthe Ultima Neuro\t-14.380970112296252\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, have a look at, the Ultima Neuro) -> the Ultima Neuro (9977ms)\nWhat is neuropathy?\ta common complication of diabetes\t-14.38402765844938\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a common complication of diabetes) -> a common complication of diabetes (9977ms)\nWhat is neuropathy?\tmuscle weakness\t-14.38707958065896\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, can have, muscle weakness) -> muscle weakness (9977ms)\nWhat is neuropathy?\tMeralgia paresthetica\t-14.387133373171256\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Meralgia paresthetica, Instance Of, neuropathy) -> Meralgia paresthetica (9977ms)\nWhat is neuropathy?\teye examination\t-14.387462243455436\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, make, $x) -> (autonomic neuropathy, can be made by, eye examination) -> eye examination (10006ms)\nWhat is neuropathy?\ta complication of diabetes\t-14.387501624491481\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a complication of diabetes) -> a complication of diabetes (10006ms)\nWhat is neuropathy?\ta wide variety\t-14.390429515561182\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathies, have been seen with, a wide variety) -> a wide variety (10006ms)\nWhat is neuropathy?\tSeveral B vitamins\t-14.396107876591898\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Several B vitamins, are useful in treating, diabetic neuropathy) -> Several B vitamins (10006ms)\nWhat is neuropathy?\tOpiates\t-14.415839860104507\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Opiates, are only used in, diabetic neuropathy treatments) -> Opiates (10006ms)\nWhat is neuropathy?\ta variable incidence rate\t-14.420751541067112\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (?Sensory neuropathies, have, a variable incidence rate) -> a variable incidence rate (10006ms)\nWhat is neuropathy?\ta few different classes\t-14.421635780170503\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Diabetic neuropathy, has, a few different classes) -> a few different classes (10006ms)\nWhat is neuropathy?\tcarpal tunnel\t-14.42181108284357\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (carpal tunnel, Instance Of, neuropathies) -> carpal tunnel (10006ms)\nWhat is neuropathy?\tGabapentin\t-14.422029217614478\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Gabapentin, is also recommended in, painful diabetic neuropathy) -> Gabapentin (10046ms)\nWhat is neuropathy?\tLumbar rediculopathy\t-14.432027328606399\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Lumbar rediculopathy, Instance Of, neuropathy) -> Lumbar rediculopathy (10045ms)\nWhat is neuropathy?\ta pathway\t-14.440815659624134\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (a pathway, thought to be involved in, diabetic neuropathy) -> a pathway (10045ms)\nWhat is neuropathy?\tless severe\t-14.442080393496457\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, less severe) -> less severe (10045ms)\nWhat is neuropathy?\tvery common\t-14.442080393496457\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, very common) -> very common (10045ms)\nWhat is neuropathy?\ta scale\t-14.443468218827423\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (an acute demyelinating neuropathy, is graded on, a scale) -> a scale (10046ms)\nWhat is neuropathy?\tvery painful\t-14.446684108448306\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, very painful) -> very painful (10045ms)\nWhat is neuropathy?\ta long-term complication of diabetes\t-14.447060865789659\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a long-term complication of diabetes) -> a long-term complication of diabetes (10045ms)\nWhat is neuropathy?\tone knee\t-14.4539541047739\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, now has arthritis in, one knee) -> one knee (10081ms)\nWhat is neuropathy?\tMethylcobalamin\t-14.45546526994973\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, have found relief with, Methylcobalamin) -> Methylcobalamin (10080ms)\nWhat is neuropathy?\tHIV\t-14.458090677711331\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (small fiber neuropathies, include, HIV) -> HIV (10080ms)\nWhat is neuropathy?\textremely painful\t-14.460724410033283\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, extremely painful) -> extremely painful (10080ms)\nWhat is neuropathy?\tacupuncture\t-14.46281002227904\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, acupuncture) -> acupuncture (10080ms)\nWhat is neuropathy?\tCMT1\t-14.466538845723779\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (CMT1, Instance Of, neuropathies) -> CMT1 (10081ms)\nWhat is neuropathy?\tneurodegenerative disease\t-14.466705038278711\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (neurodegenerative disease, Instance Of, neuropathies) -> neurodegenerative disease (10081ms)\nWhat is neuropathy?\tperipheral neuropathies\t-14.471922669953196\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (peripheral neuropathies, Instance Of, neuropathies) -> peripheral neuropathies (10081ms)\nWhat is neuropathy?\ta critical endpoint\t-14.474115633319544\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Sensory neuropathy, has been selected as, a critical endpoint) -> a critical endpoint (10110ms)\nWhat is neuropathy?\tfew symptoms\t-14.47785544579612\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (peripheral neuropathy, have, few symptoms) -> few symptoms (10110ms)\nWhat is neuropathy?\tmore common\t-14.481560051502434\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, was, more common) -> more common (10110ms)\nWhat is neuropathy?\ta monthly basis\t-14.485922859032396\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, do, $x) -> (neuropathy, should be done on, a monthly basis) -> a monthly basis (10110ms)\nWhat is neuropathy?\tburning sensation\t-14.48737654698521\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (burning sensation, Instance Of, neuropathy) -> burning sensation (10110ms)\nWhat is neuropathy?\tmuscle pain\t-14.48737654698521\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (muscle pain, Instance Of, neuropathy) -> muscle pain (10110ms)\nWhat is neuropathy?\tnumbness\t-14.488688549107\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, numbness) -> numbness (10109ms)\nWhat is neuropathy?\tpinched nerve\t-14.490555344949733\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (pinched nerve, Instance Of, neuropathies) -> pinched nerve (10110ms)\nWhat is neuropathy?\tnormal hearing\t-14.493571598263092\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (auditory neuropathy, may have, normal hearing) -> normal hearing (10137ms)\nWhat is neuropathy?\ta very common problem for people\t-14.494708258828203\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a very common problem for people) -> a very common problem for people (10137ms)\nWhat is neuropathy?\tEffexor\t-14.498070249452388\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Effexor, is also used in treating, diabetic neuropathy) -> Effexor (10137ms)\nWhat is neuropathy?\tmarked improvements\t-14.498648022806037\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (marked improvements, were noted in, both peripheral neuropathy) -> marked improvements (10137ms)\nWhat is neuropathy?\tCIDP\t-14.501179879316716\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (CIDP, is uncommon in, the motor neuropathies) -> CIDP (10137ms)\nWhat is neuropathy?\tclinical syndrome\t-14.511691138199508\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (peripheral neuropathy, is based on, clinical syndrome) -> clinical syndrome (10137ms)\nWhat is neuropathy?\tone of the most common complications of diabetes\t-14.51329137063215\tWhat is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, one of the most common complications of diabetes) -> one of the most common complications of diabetes (10137ms)\nWhat is neuropathy?\tNerve damage\t-15.117331209187315\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Nerve damage, also known as, diabetic neuropathy) -> Nerve damage (3578ms)\nWhat is neuropathy?\tMedications\t-15.148278919701848\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Medications, known to, be associated with peripheral neuropathy) -> Medications (3578ms)\nWhat is neuropathy?\ta medical condition\t-15.424709661429908\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a medical condition, known as, Neuropathy) -> a medical condition (3594ms)\nWhat is neuropathy?\ta complication\t-15.540255832098413\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a complication, known as, neuropathy) -> a complication (3609ms)\nWhat is neuropathy?\tpainful neurological symptoms\t-15.55034048559268\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (painful neurological symptoms, known as, sensory neuropathy) -> painful neurological symptoms (3609ms)\nWhat is neuropathy?\ta disorder\t-15.560656950962365\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a disorder, known as, peripheral neuropathy) -> a disorder (3624ms)\nWhat is neuropathy?\tPolyneuropathy\t-15.602389574619814\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Polyneuropathy, also known as, peripheral neuropathy) -> Polyneuropathy (3624ms)\nWhat is neuropathy?\ta painful condition\t-16.001783404267847\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a painful condition, known as, diabetic neuropathy) -> a painful condition (3639ms)\nWhat is neuropathy?\ta debilitating condition\t-16.0489343969279\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a debilitating condition, known as, Peripheral Neuropathy) -> a debilitating condition (3639ms)\nWhat is neuropathy?\tthe problems\t-16.198965338300955\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what bring about be neuropathy ? -> $x: ($x, bring about be, neuropathy) -> $x: ($x, bring about, neuropathy) -> (the problems, brought about by, diabetic neuropathy) -> the problems (3745ms)\nWhat is neuropathy?\tprofessional\t-16.486123598424292\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (professional, know about, auditory neuropathy) -> professional (3653ms)\nWhat is neuropathy?\tdisorders\t-18.123838386604145\tWhat is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (disorders, known as, neuropathy) -> disorders (3653ms)\nWhat is the age of our solar system?\tSun\t-3.1090958452282242\tWhat is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be the father of, our solar system) -> (Sun, is the father of, our solar system) -> Sun (2596ms)\nWhat is the age of our solar system?\tAlpha Centauri\t-3.7779277397768016\tWhat is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be older than, our solar system) -> (Alpha Centauri, is older than, our solar system) -> Alpha Centauri (2596ms)\nWhat is the age of our solar system?\tOphiuchus\t-4.8978581018113205\tWhat is the age of our solar system? -> $x: (our solar system, age, $x) -> $x: (our solar system, spend more time, $x) -> (our solar system, spend more time in, Ophiuchus) -> Ophiuchus (2184ms)\nWhat is the age of our solar system?\tTitan\t-5.033961639335066\tWhat is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be example in, our solar system) -> (Titan, is the prime example in, our solar system) -> Titan (2265ms)\nWhat is the age of our solar system?\tthe lord\t-5.073701991409548\tWhat is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be the father of, our solar system) -> (the lord, is the father of, our solar system) -> the lord (2596ms)\nWhat is the age of our solar system?\tThe sun\t-5.197365322498584\tWhat is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be master of, our solar system) -> (The sun, is the master of, our solar system) -> The sun (2596ms)\nWhat is the age of our solar system?\tThe globules\t-6.183847185805465\tWhat is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be older than, our solar system) -> (The globules, could also be older than, our Solar System) -> The globules (2596ms)\nWhat is the age of our solar system?\tThe stardust grains\t-6.260244239500462\tWhat is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be older than, our solar system) -> (The stardust grains, are older than, our solar system) -> The stardust grains (2596ms)\nWhat is the age of our solar system?\ta golden age\t-10.166926474749948\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, is in, a golden age) -> a golden age (6051ms)\nWhat is the age of our solar system?\tEllen White\t-10.770473950975555\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was revealed in, Ellen White) -> Ellen White (6051ms)\nWhat is the age of our solar system?\tthe Sun\t-10.81188260855204\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is in, the Sun) -> the Sun (6051ms)\nWhat is the age of our solar system?\tthe Milky Way\t-10.812105761247299\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, the Milky Way) -> the Milky Way (6051ms)\nWhat is the age of our solar system?\ta spiral arm\t-10.916167642334951\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, a spiral arm) -> a spiral arm (6051ms)\nWhat is the age of our solar system?\tthe Orion arm\t-11.06433736326214\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, the Orion arm) -> the Orion arm (6050ms)\nWhat is the age of our solar system?\tThe Sun\t-11.14346786351946\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be the body of, our solar system) -> (The Sun, is the central body of, our solar system) -> The Sun (9435ms)\nWhat is the age of our solar system?\tthe Milky Way galaxy\t-11.223681910474237\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our Solar System, is in, the Milky Way galaxy) -> the Milky Way galaxy (6051ms)\nWhat is the age of our solar system?\tthe Belt\t-11.247318454535225\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our Solar System, will be fully in, the Belt) -> the Belt (6050ms)\nWhat is the age of our solar system?\tthe Orion spiral arm\t-11.24997106644081\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, the Orion spiral arm) -> the Orion spiral arm (6142ms)\nWhat is the age of our solar system?\ta line\t-11.281175845467859\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, are in, a line) -> a line (6142ms)\nWhat is the age of our solar system?\tthe Milky Way Galaxy\t-11.326509237376097\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, the Milky Way Galaxy) -> the Milky Way Galaxy (6142ms)\nWhat is the age of our solar system?\tan arm\t-11.404465639438067\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, an arm) -> an arm (6142ms)\nWhat is the age of our solar system?\ta month\t-11.416187421483237\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, is in just about, a month) -> a month (6142ms)\nWhat is the age of our solar system?\tsuch a way\t-11.424168656590751\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, was installed in, such a way) -> such a way (6142ms)\nWhat is the age of our solar system?\ta galaxy\t-11.519211181488071\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, has been found in, a galaxy) -> a galaxy (6142ms)\nWhat is the age of our solar system?\tthe Tharsis region\t-11.54230377697664\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is found in, the Tharsis region) -> the Tharsis region (6142ms)\nWhat is the age of our solar system?\tone line\t-11.557691339178595\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, will be in, one line) -> one line (6176ms)\nWhat is the age of our solar system?\tCapricorn\t-11.562211995396469\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is now in, Capricorn) -> Capricorn (6176ms)\nWhat is the age of our solar system?\ta range\t-11.562586957222226\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar systems, are available in, a range) -> a range (6176ms)\nWhat is the age of our solar system?\ta Rotational Dimension\t-11.620335403669966\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are stuck in, a Rotational Dimension) -> a Rotational Dimension (6176ms)\nWhat is the age of our solar system?\tsuch a place\t-11.622720927456932\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was born in, such a place) -> such a place (6176ms)\nWhat is the age of our solar system?\tan incredibly ancient pattern\t-11.628605063928163\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are caught in, an incredibly ancient pattern) -> an incredibly ancient pattern (6176ms)\nWhat is the age of our solar system?\tpart dependent\t-11.662668982241277\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is in, part dependent) -> part dependent (6176ms)\nWhat is the age of our solar system?\tone of the spiral arms of the Milky Way\t-11.66726811075478\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, one of the spiral arms of the Milky Way) -> one of the spiral arms of the Milky Way (6176ms)\nWhat is the age of our solar system?\twhole galaxy\t-11.719443734433417\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our known solar system, may be in, whole galaxy) -> whole galaxy (6268ms)\nWhat is the age of our solar system?\tclose proximity\t-11.723914886900962\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are in very, close proximity) -> close proximity (6268ms)\nWhat is the age of our solar system?\tpredictable motion\t-11.727215432758046\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are in, predictable motion) -> predictable motion (6268ms)\nWhat is the age of our solar system?\tan outer orbit\t-11.74315114359008\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, is in, an outer orbit) -> an outer orbit (6268ms)\nWhat is the age of our solar system?\tsuch a region\t-11.814902648564\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our own solar system, was probably embedded in, such a region) -> such a region (6268ms)\nWhat is the age of our solar system?\tbackward orbits\t-11.814987245664398\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are traveling in, backward orbits) -> backward orbits (6268ms)\nWhat is the age of our solar system?\trecent years\t-11.842774644437823\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, have been discovered in, recent years) -> recent years (6306ms)\nWhat is the age of our solar system?\touter regions\t-11.918313155773394\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, outer regions) -> outer regions (6306ms)\nWhat is the age of our solar system?\tNovember\t-11.947511071915446\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was discovered in, November) -> November (6306ms)\nWhat is the age of our solar system?\tApril\t-11.947511071915446\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was announced in, April) -> April (6306ms)\nWhat is the age of our solar system?\tJanuary 2009\t-11.98598511779969\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> who be our solar system live ? -> $x: (our solar system, live, $x) -> (Our 39kW solar PV system, went live in, January 2009) -> January 2009 (4950ms)\nWhat is the age of our solar system?\tmassive Jupiter\t-11.994100238663972\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (massive Jupiter, is in, our solar system) -> massive Jupiter (9435ms)\nWhat is the age of our solar system?\tan unusual region\t-12.06684257848964\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, an unusual region) -> an unusual region (6306ms)\nWhat is the age of our solar system?\ta rare form\t-12.081678536070335\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is enriched in, a rare form) -> a rare form (6306ms)\nWhat is the age of our solar system?\ta similar arrangement\t-12.10757159231481\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, have been found in, a similar arrangement) -> a similar arrangement (6306ms)\nWhat is the age of our solar system?\ta stable orbit\t-12.114645188928174\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, have been located in, a stable orbit) -> a stable orbit (6356ms)\nWhat is the age of our solar system?\tplanets and debris\t-12.136654320022775\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is in, planets and debris) -> planets and debris (6356ms)\nWhat is the age of our solar system?\tArcturus\t-12.258665386160308\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Arcturus, was in, our own Solar System) -> Arcturus (9435ms)\nWhat is the age of our solar system?\tthe Orion Arm\t-12.275384927003827\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (Our solar system, lies in, the Orion Arm) -> the Orion Arm (9946ms)\nWhat is the age of our solar system?\tHow many dwarf planets\t-12.280595436174009\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (How many dwarf planets, are there in, our solar system) -> How many dwarf planets (9435ms)\nWhat is the age of our solar system?\tok\t-12.354674718966503\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (ok, is in, our solar system) -> ok (9435ms)\nWhat is the age of our solar system?\tEarth\t-12.361521533281099\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Earth, is in, our solar system) -> Earth (9435ms)\nWhat is the age of our solar system?\t20 year\t-12.42649184206798\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what year do our solar system erupt ? -> $x: ($x, instance of, year) (our solar system, erupt, $x) -> $x: ($x, instance of, year) (our solar system, be heat up, $x) -> (20 year, Instance Of, year increment) (our solar system, have been heating up for, 20 years) -> 20 year (7211ms)\nWhat is the age of our solar system?\tJupiter\t-12.430618104760159\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Jupiter, is in, our solar system) -> Jupiter (9435ms)\nWhat is the age of our solar system?\tthe universe\t-12.44000441980695\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was typical in, the universe) -> the universe (6356ms)\nWhat is the age of our solar system?\tMercury and Venus\t-12.537254549339314\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Mercury and Venus, are in, our solar system) -> Mercury and Venus (9435ms)\nWhat is the age of our solar system?\texactly how much water\t-12.578128817451844\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (exactly how much water, is in, our own solar system) -> exactly how much water (9487ms)\nWhat is the age of our solar system?\ta an unusual region of space\t-12.61328726246891\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, a an unusual region of space) -> a an unusual region of space (6356ms)\nWhat is the age of our solar system?\tthe shadows\t-12.706398369757636\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, has been lurking in, the shadows) -> the shadows (6356ms)\nWhat is the age of our solar system?\tthe asteroid belt\t-12.714555545467414\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, are in, the asteroid belt) -> the asteroid belt (6356ms)\nWhat is the age of our solar system?\tPortland Oregon\t-12.796841299783209\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (Our Violent Solar System, held in, Portland Oregon) -> Portland Oregon (10126ms)\nWhat is the age of our solar system?\tJupiter Jupiter\t-12.8123784015381\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Jupiter Jupiter, is the largest planet in, our solar system) -> Jupiter Jupiter (9487ms)\nWhat is the age of our solar system?\tthe night sky\t-12.85690663586773\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are visible in, the night sky) -> the night sky (6356ms)\nWhat is the age of our solar system?\tthe ascending Dwapara Yuga\t-12.862798592848184\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is in, the ascending Dwapara Yuga) -> the ascending Dwapara Yuga (6356ms)\nWhat is the age of our solar system?\tthe Starcademy\t-12.896786505278575\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the Starcademy, is in, our solar system) -> the Starcademy (9487ms)\nWhat is the age of our solar system?\t1995\t-12.896931828357317\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was in, 1995) -> 1995 (6394ms)\nWhat is the age of our solar system?\tthe throes\t-12.922722570296884\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are in, the throes) -> the throes (6394ms)\nWhat is the age of our solar system?\tthe cores\t-12.930650701436372\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, are the engines in, the cores) -> the cores (6394ms)\nWhat is the age of our solar system?\tthe sun\t-12.945658831147885\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is contained in, the sun) -> the sun (6394ms)\nWhat is the age of our solar system?\tthe same arm\t-12.95633374149289\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, the same arm) -> the same arm (6394ms)\nWhat is the age of our solar system?\tthe part\t-12.959829221588624\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar systems, will be in, the part) -> the part (6394ms)\nWhat is the age of our solar system?\tthe nearby interstellar material\t-12.962084319166424\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, there is in, the nearby interstellar material) -> the nearby interstellar material (6394ms)\nWhat is the age of our solar system?\tone week\t-12.985794035605316\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was created in, one week) -> one week (6506ms)\nWhat is the age of our solar system?\tthe Saggitarius Dwarf Galaxy\t-13.014049233862046\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, originated in, the Saggitarius Dwarf Galaxy) -> the Saggitarius Dwarf Galaxy (10126ms)\nWhat is the age of our solar system?\tthe Asteroid Belt\t-13.039996305795384\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, exist in, the Asteroid Belt) -> the Asteroid Belt (10194ms)\nWhat is the age of our solar system?\tthe past\t-13.05128118688031\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, had been visited in, the past) -> the past (6506ms)\nWhat is the age of our solar system?\tthree hours\t-13.052922820720239\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, was created in, three hours) -> three hours (6506ms)\nWhat is the age of our solar system?\tthe early universe\t-13.059838075452515\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, can be made in, the early universe) -> the early universe (6506ms)\nWhat is the age of our solar system?\t1912\t-13.073085996068263\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was measured in, 1912) -> 1912 (6506ms)\nWhat is the age of our solar system?\t1990\t-13.075346356180845\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, were spotted in, 1990) -> 1990 (6506ms)\nWhat is the age of our solar system?\tthe minerals\t-13.083616951513289\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is written in, the minerals) -> the minerals (6506ms)\nWhat is the age of our solar system?\ttemperature\t-13.129764658423786\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are increasing in, temperature) -> temperature (6543ms)\nWhat is the age of our solar system?\tan orbit\t-13.16137006279057\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, rotates in, an orbit) -> an orbit (10194ms)\nWhat is the age of our solar system?\tsuch an explosive environment\t-13.168304723074481\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, emerged in, such an explosive environment) -> such an explosive environment (10194ms)\nWhat is the age of our solar system?\tthe formation\t-13.186740394333214\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is found in, the formation) -> the formation (6543ms)\nWhat is the age of our solar system?\tthe light\t-13.201279786650648\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are being modified in, the light) -> the light (6543ms)\nWhat is the age of our solar system?\tfact\t-13.21949884076408\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, fact) -> fact (6543ms)\nWhat is the age of our solar system?\tthe direction\t-13.22033995189554\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is moving in, the direction) -> the direction (6543ms)\nWhat is the age of our solar system?\thow many planets\t-13.222030857625985\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (how many planets, are in, our Solar System) -> how many planets (9487ms)\nWhat is the age of our solar system?\tAlarius\t-13.22500104185579\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Alarius, is in, our Solar System) -> Alarius (9487ms)\nWhat is the age of our solar system?\ta ?belt ?\t-13.228652540559006\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our Solar System, lie in, a ?belt ?) -> a ?belt ? (10225ms)\nWhat is the age of our solar system?\torbit\t-13.26213092924041\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, orbit) -> orbit (6543ms)\nWhat is the age of our solar system?\tPlanet X\t-13.29720647344482\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Planet X, [is] the tenth planet in, our solar system) -> Planet X (9487ms)\nWhat is the age of our solar system?\tyears\t-13.315266024398422\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, birth of, our solar system) -> (years, describe the birth of, our solar system) -> years (5652ms)\nWhat is the age of our solar system?\thow many dwarf planets\t-13.384967482931302\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (how many dwarf planets, are in, our solar system) -> how many dwarf planets (9487ms)\nWhat is the age of our solar system?\tcountries\t-13.412060009281543\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar systems, are providing power in, countries) -> countries (6543ms)\nWhat is the age of our solar system?\tsuch an environment\t-13.540033042871876\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our own solar system, have formed in, such an environment) -> such an environment (10255ms)\nWhat is the age of our solar system?\tVenus\t-13.553496621198308\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Venus, is the hottest planet in, our solar system) -> Venus (9525ms)\nWhat is the age of our solar system?\tSaturn\t-13.577145018347622\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Saturn, is the only planet in, our solar system) -> Saturn (9525ms)\nWhat is the age of our solar system?\tGanymede\t-13.577145018347622\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Ganymede, is the largest moon in, our solar system) -> Ganymede (9525ms)\nWhat is the age of our solar system?\tUranus\t-13.602847388442616\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Uranus, is the only planet in, our Solar System) -> Uranus (9566ms)\nWhat is the age of our solar system?\tlife waves\t-13.608424066948974\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, creates in, life waves) -> life waves (10255ms)\nWhat is the age of our solar system?\tvibration\t-13.614541277545111\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our whole solar system, is being lifted in, vibration) -> vibration (6543ms)\nWhat is the age of our solar system?\tPluto\t-13.623248507306567\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Pluto, is the smallest planet in, our solar system) -> Pluto (9601ms)\nWhat is the age of our solar system?\tVesta\t-13.623248507306567\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Vesta, is the brightest asteroid in, our Solar System) -> Vesta (9566ms)\nWhat is the age of our solar system?\tSaturn?s moon Titan\t-13.629601363599498\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Saturn?s moon Titan, is the only moon in, our solar system) -> Saturn?s moon Titan (9601ms)\nWhat is the age of our solar system?\ta 26.000 year cycle\t-13.637563450213651\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our Solar System, rotates around in, a 26.000 year cycle) -> a 26.000 year cycle (10285ms)\nWhat is the age of our solar system?\tline\t-13.699363084884222\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, will be in, line) -> line (6589ms)\nWhat is the age of our solar system?\ta cyclic manner\t-13.748784105027138\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, occur in, a cyclic manner) -> a cyclic manner (10285ms)\nWhat is the age of our solar system?\tone of these streams\t-13.758577444060217\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (Our Solar System, sits in, one of these streams) -> one of these streams (10285ms)\nWhat is the age of our solar system?\tThe asteroid\t-13.811283481706468\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (The asteroid, is in, our solar system) -> The asteroid (9601ms)\nWhat is the age of our solar system?\talignment\t-13.838608966651648\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, were in, alignment) -> alignment (6589ms)\nWhat is the age of our solar system?\tthe sky\t-13.839222921242353\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the sky, are in, our own solar system) -> the sky (9601ms)\nWhat is the age of our solar system?\tspace\t-13.84618219153591\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our inner solar system, is one in, space) -> space (6589ms)\nWhat is the age of our solar system?\tmotion\t-13.921788163230175\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, motion) -> motion (6589ms)\nWhat is the age of our solar system?\tnature\t-13.927719561216229\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is etheric in, nature) -> nature (6589ms)\nWhat is the age of our solar system?\tre-cap...there\t-13.956307151996942\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (re-cap...there, are only 8 planets in, our solar system) -> re-cap...there (9639ms)\nWhat is the age of our solar system?\tthe Earth\t-13.960745965604236\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the Earth, is the only body in, our solar system) -> the Earth (9639ms)\nWhat is the age of our solar system?\ta new planet\t-14.018321836970273\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (a new planet, being discovered in, our Solar System) -> a new planet (9639ms)\nWhat is the age of our solar system?\tNeptune\t-14.02380076746575\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Neptune, [is] the outermost planet in, our solar system) -> Neptune (9639ms)\nWhat is the age of our solar system?\tone of the spiral arms\t-14.076497510024717\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our Solar System, lying in, one of the spiral arms) -> one of the spiral arms (10285ms)\nWhat is the age of our solar system?\tplace\t-14.11055735111296\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our own solar system, is held in, place) -> place (6589ms)\nWhat is the age of our solar system?\tcreation\t-14.112325723915152\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is my role in, creation) -> creation (6589ms)\nWhat is the age of our solar system?\tthe only known planets\t-14.123228361388696\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the only known planets, were in, our solar system) -> the only known planets (9682ms)\nWhat is the age of our solar system?\tApparently a new planet\t-14.124056469504355\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Apparently a new planet, has been found in, our solar system) -> Apparently a new planet (9682ms)\nWhat is the age of our solar system?\tgrey\t-14.140128123058211\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our own solar system, are plotted in, grey) -> grey (6589ms)\nWhat is the age of our solar system?\tMars\t-14.146645200762798\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Mars, is the only planet in, our Solar System) -> Mars (9682ms)\nWhat is the age of our solar system?\tSpace\t-14.161338032930594\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (Our solar system, began in, Space) -> Space (10285ms)\nWhat is the age of our solar system?\tthe top eight brightest objects\t-14.224686565390456\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the top eight brightest objects, are in, our solar system) -> the top eight brightest objects (9682ms)\nWhat is the age of our solar system?\tMercury\t-14.227072123940609\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Mercury, is the smallest planet in, our solar system) -> Mercury (9682ms)\nWhat is the age of our solar system?\tthe cold molecular cloud\t-14.296402483649729\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> who give birth to our solar system ? -> $x: ($x, give birth to, our solar system) -> (the cold molecular cloud, gave birth to, our Solar System) -> the cold molecular cloud (6631ms)\nWhat is the age of our solar system?\tthe next\t-14.311662952436151\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the next, are in, our own Solar System) -> the next (10354ms)\nWhat is the age of our solar system?\tthe right zone for life\t-14.341640607453837\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, to be in, the right zone for life) -> the right zone for life (6631ms)\nWhat is the age of our solar system?\tNibiru\t-14.45184246762694\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Nibiru, is in, our solar system) -> Nibiru (10354ms)\nWhat is the age of our solar system?\tthe supernova\t-14.514521665702\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> who give birth to our solar system ? -> $x: ($x, give birth to, our solar system) -> (the supernova, gave birth to, our solar system) -> the supernova (6631ms)\nWhat is the age of our solar system?\texistence\t-14.54801201007705\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, has been in, existence) -> existence (6631ms)\nWhat is the age of our solar system?\tthe first way\t-14.822714998384072\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, formed in, the first way) -> the first way (10449ms)\nWhat is the age of our solar system?\tthe planet\t-14.832803309667183\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the planet, were in, our Solar System) -> the planet (10449ms)\nWhat is the age of our solar system?\tthe sun Jupiter\t-14.859779935947579\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the sun Jupiter, is the largest planet in, our solar system) -> the sun Jupiter (10479ms)\nWhat is the age of our solar system?\t1992\t-14.931273217495388\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, came in, 1992) -> 1992 (10479ms)\nWhat is the age of our solar system?\tthe species\t-14.976438626566004\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the species, were in, our own solar system) -> the species (10479ms)\nWhat is the age of our solar system?\tthe role asteroids\t-14.981450802242438\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> who have play our solar system ? -> $x: ($x, have play, our solar system) -> $x: ($x, play, our solar system) -> (the role asteroids, played in forming, our solar system) -> the role asteroids (11409ms)\nWhat is the age of our solar system?\tthe plane\t-14.988731200051031\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, lies in, the plane) -> the plane (10479ms)\nWhat is the age of our solar system?\tthe planets\t-14.997626688280974\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the planets, were forming in, our Solar System) -> the planets (10479ms)\nWhat is the age of our solar system?\torigin\t-15.050546062851225\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (origin, is in, our own solar system) -> origin (10479ms)\nWhat is the age of our solar system?\tthe earth\t-15.055572476660817\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the earth, is the only place in, our solar system) -> the earth (10479ms)\nWhat is the age of our solar system?\tturn\t-15.095177287769246\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, was in, turn) -> turn (6631ms)\nWhat is the age of our solar system?\tthe key role\t-15.15475360305605\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> who have play our solar system ? -> $x: ($x, have play, our solar system) -> $x: ($x, play, our solar system) -> (the key role, played in, our own solar system) -> the key role (11409ms)\nWhat is the age of our solar system?\tdistance\t-15.161254627962228\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, range in, distance) -> distance (10479ms)\nWhat is the age of our solar system?\tthe history\t-15.217090442609768\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our Solar System, formed late in, the history) -> the history (10509ms)\nWhat is the age of our solar system?\tthe tenth planet\t-15.322025372221002\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the tenth planet, being in, our solar system) -> the tenth planet (10509ms)\nWhat is the age of our solar system?\tComet\t-15.662428337684233\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what rock make up our solar system ? -> $x: ($x, instance of, rock) ($x, make up, our solar system) -> (Comet, Instance Of, lesser-known experimental rock band) (comets, make up, our solar system) -> Comet (8017ms)\nWhat is the age of our solar system?\tlife\t-15.793791381175108\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, play a role in, life) -> life (10539ms)\nWhat is the age of our solar system?\tminiature\t-15.813648480834697\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, made in, miniature) -> miniature (10539ms)\nWhat is the age of our solar system?\tposition\t-15.896097037632497\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our own solar system, placed in, position) -> position (10539ms)\nWhat is the age of our solar system?\tplanet\t-16.019557154551514\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what rock make up our solar system ? -> $x: ($x, instance of, rock) ($x, make up, our solar system) -> (planet, Instance Of, sphere of rock) (planets, make up, our Solar System) -> planet (8017ms)\nWhat is the age of our solar system?\tthe role\t-16.468819433365326\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> who have play our solar system ? -> $x: ($x, have play, our solar system) -> $x: ($x, play, our solar system) -> (the role, plays in, the life of our Solar System) -> the role (11409ms)\nWhat is the age of our solar system?\tcomet\t-17.352006446046282\tWhat is the age of our solar system? -> what be the age of [ our solar system ] ? -> what rock make up our solar system ? -> $x: ($x, instance of, rock) ($x, make up, our solar system) -> (comet, Instance Of, large object of rock) (comets, make up, our solar system) -> comet (8017ms)\nWhen was CNN's first broadcast?\t1997\t0.3587478370690951\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN NewsStand, Air date of first episode, 1997) -> 1997 (792ms)\nWhen was CNN's first broadcast?\t1992\t0.3312589564699353\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN & Company, Air date of first episode, 1992) -> 1992 (792ms)\nWhen was CNN's first broadcast?\t2001\t0.3312589564699353\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Live Today, Air date of first episode, 2001) -> 2001 (792ms)\nWhen was CNN's first broadcast?\t2006-09-04\t-1.0184867488484528\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Newsroom, Air date of first episode, 2006-09-04) -> 2006-09-04 (866ms)\nWhen was CNN's first broadcast?\t1980-06-01\t-1.0184867488484528\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Daybreak, Air date of first episode, 1980-06-01) -> 1980-06-01 (866ms)\nWhen was CNN's first broadcast?\t2007-12-06\t-1.0184867488484528\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Heroes, Air date of first episode, 2007-12-06) -> 2007-12-06 (866ms)\nWhen was CNN's first broadcast?\t2009-11-16\t-1.0184867488484528\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Tonight, Air date of first episode, 2009-11-16) -> 2009-11-16 (792ms)\nWhen was CNN's first broadcast?\t2007-01-20\t-1.069537527104035\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Special Investigations Unit, Air date of first episode, 2007-01-20) -> 2007-01-20 (879ms)\nWhen was CNN's first broadcast?\t2010-08-14\t-1.1078256107957216\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Heroes: Coming Back from Katrina, Air date of first episode, 2010-08-14) -> 2010-08-14 (879ms)\nWhen was CNN's first broadcast?\t2010-11-25\t-1.137605231444811\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (The 4th Annual CNN Heroes: An All-Star Tribute, Air date of first episode, 2010-11-25) -> 2010-11-25 (879ms)\nWhen was CNN's first broadcast?\t2009-11-26\t-1.137605231444811\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (The 3rd Annual CNN Heroes: An All-Star Tribute, Air date of first episode, 2009-11-26) -> 2009-11-26 (879ms)\nWhen was CNN's first broadcast?\t2003-08\t-2.9462503387791354\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Presents, Air date of first episode, 2003-08) -> 2003-08 (1540ms)\nWhen was CNN's first broadcast?\t1989-08\t-2.9462503387791354\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Newsroom, Air date of first episode, 1989-08) -> 1989-08 (1540ms)\nWhen was CNN's first broadcast?\t2005-07\t-2.9737392193782948\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Live From, Air date of first episode, 2005-07) -> 2005-07 (1540ms)\nWhen was CNN's first broadcast?\t1985-09\t-2.9737392193782948\tWhen was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN World News, Air date of first episode, 1985-09) -> 1985-09 (1540ms)\nWhat movies did Judi Dench play in?\tJ. Edgar\t-6.990919387605524\tWhat movies did Judi Dench play in? -> what movie do [ judus dench play ] in ? -> how many movie have judus dench play ? -> $x: ($x, instance of, movie) (judus dench, play, $x) -> (J. Edgar, Instance Of, movie) (Judi Dench, plays the part of, J. Edgar) -> J. Edgar (4846ms)\nWhat movies did Judi Dench play in?\tNotes on a Scandal\t-7.01730753813475\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> (Judi Dench, starred in the movie, Notes on a Scandal) -> Notes on a Scandal (4846ms)\nWhat movies did Judi Dench play in?\tLook Back in Anger\t-8.184926768414538\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, film, $x) -> (Judi Dench, Films directed, Look Back in Anger) -> Look Back in Anger (10613ms)\nWhat movies did Judi Dench play in?\tScenes From My Life\t-8.184926768414538\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, write, $x) -> (Judi Dench, Works written, Scenes From My Life) -> Scenes From My Life (10613ms)\nWhat movies did Judi Dench play in?\tQueen Victoria\t-8.258985059793083\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, Queen Victoria) -> Queen Victoria (8810ms)\nWhat movies did Judi Dench play in?\tAnd Furthermore\t-8.59069582938531\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, write, $x) -> (Judi Dench, Works written, And Furthermore) -> And Furthermore (10613ms)\nWhat movies did Judi Dench play in?\tEdgar?s mother\t-8.61442366518739\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Edgar?s mother) -> Edgar?s mother (8810ms)\nWhat movies did Judi Dench play in?\tEvelyn\t-8.656126427544216\tWhat movies did Judi Dench play in? -> what movie do [ judus dench play ] in ? -> how many movie have judus dench play ? -> $x: ($x, instance of, movie) (judus dench, play, $x) -> (Evelyn, Instance Of, movie) (Judi Dench, plays, Evelyn) -> Evelyn (4846ms)\nWhat movies did Judi Dench play in?\tDaniel Craig\t-8.667651427044536\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Daniel Craig, is, Judi Dench) -> Daniel Craig (5351ms)\nWhat movies did Judi Dench play in?\ta widow\t-8.803026804406793\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, a widow) -> a widow (8810ms)\nWhat movies did Judi Dench play in?\t34 locations\t-8.807310592119487\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was screened in, 34 locations) -> 34 locations (5351ms)\nWhat movies did Judi Dench play in?\tHoover?s Mom\t-8.858237322133679\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Hoover?s Mom) -> Hoover?s Mom (8810ms)\nWhat movies did Judi Dench play in?\tSally Bowles\t-8.878422039649589\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, Sally Bowles) -> Sally Bowles (8811ms)\nWhat movies did Judi Dench play in?\tpractical jokes\t-8.915946796094058\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (light-hearted?Dame Judi Dench, would often play, practical jokes) -> practical jokes (8810ms)\nWhat movies did Judi Dench play in?\ttop movie star\t-8.939523853973474\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, top movie star) -> top movie star (10613ms)\nWhat movies did Judi Dench play in?\tHoover?s mother\t-8.964074025108612\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Hoover?s mother) -> Hoover?s mother (8810ms)\nWhat movies did Judi Dench play in?\tJeremy Irons\t-8.993687130917685\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Jeremy Irons, was replaced with, Judi Dench) -> Jeremy Irons (5350ms)\nWhat movies did Judi Dench play in?\tKenneth Branagh\t-8.999149821227057\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Kenneth Branagh, as was, the great Judi Dench) -> Kenneth Branagh (5350ms)\nWhat movies did Judi Dench play in?\tMrs. Fairfax\t-9.063496365977215\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Mrs. Fairfax) -> Mrs. Fairfax (8810ms)\nWhat movies did Judi Dench play in?\tLaura Henderson\t-9.128352143557573\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, plays, Laura Henderson) -> Laura Henderson (8939ms)\nWhat movies did Judi Dench play in?\tMiss Matty Jenkyns\t-9.14135117192807\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Miss Matty Jenkyns) -> Miss Matty Jenkyns (8939ms)\nWhat movies did Judi Dench play in?\tJames Bond?s boss\t-9.141556363336633\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, will be playing, James Bond?s boss) -> James Bond?s boss (8939ms)\nWhat movies did Judi Dench play in?\tBritish novelist Iris Murdoch\t-9.156277899197491\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, play, British novelist Iris Murdoch) -> British novelist Iris Murdoch (8939ms)\nWhat movies did Judi Dench play in?\tplay or stage shape\t-9.163418078891358\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (play or stage shape, was called, the Judi Dench) -> play or stage shape (5351ms)\nWhat movies did Judi Dench play in?\tLauran Henderson\t-9.209052718795656\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Mrs. Henderson Presents Judi Dench, plays, Lauran Henderson) -> Lauran Henderson (8939ms)\nWhat movies did Judi Dench play in?\ta master\t-9.231120055134552\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a master) -> a master (5350ms)\nWhat movies did Judi Dench play in?\tBlanchett\t-9.26087838978129\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, Blanchett) -> Blanchett (8939ms)\nWhat movies did Judi Dench play in?\tA-listers\t-9.268801266143535\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, A-listers) -> A-listers (10613ms)\nWhat movies did Judi Dench play in?\tBest Actress\t-9.270588942187747\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is the leading contender for, Best Actress) -> Best Actress (5350ms)\nWhat movies did Judi Dench play in?\tactress Dame Sybil Thordike\t-9.28625493392983\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, plays, actress Dame Sybil Thordike) -> actress Dame Sybil Thordike (8939ms)\nWhat movies did Judi Dench play in?\tactress Dame Sybil Thorndike\t-9.287139173033221\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, plays, actress Dame Sybil Thorndike) -> actress Dame Sybil Thorndike (8939ms)\nWhat movies did Judi Dench play in?\tMrs. Bennet\t-9.289127749272927\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, were born to play, Mrs. Bennet) -> Mrs. Bennet (5350ms)\nWhat movies did Judi Dench play in?\ta role\t-9.310270466096009\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (a role, are, Judi Dench) -> a role (5381ms)\nWhat movies did Judi Dench play in?\t?Your name\t-9.336949435878823\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (?Your name, is ?, ? Judi Dench) -> ?Your name (5381ms)\nWhat movies did Judi Dench play in?\tCary Fukunaga\t-9.33920209000957\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is directed by, Cary Fukunaga) -> Cary Fukunaga (5381ms)\nWhat movies did Judi Dench play in?\tFine Romance\t-9.344867215971979\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, instance of, judus dench) -> (Fine Romance, Instance Of, British situation comedy starring husband-and-wife team Judi Dench and Michael Williams) -> Fine Romance (10613ms)\nWhat movies did Judi Dench play in?\tstar of Notes\t-9.357322138362322\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, star of Notes) -> star of Notes (10613ms)\nWhat movies did Judi Dench play in?\ta thrill\t-9.359850105112212\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a thrill) -> a thrill (5381ms)\nWhat movies did Judi Dench play in?\tan elderly schoolteacher\t-9.3654562867211\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, an elderly schoolteacher) -> an elderly schoolteacher (9029ms)\nWhat movies did Judi Dench play in?\tEnglish film actress\t-9.370817489662254\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, English film actress) -> English film actress (10692ms)\nWhat movies did Judi Dench play in?\tYork\t-9.371237097844945\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (York, is, Dame Judi Dench) -> York (5381ms)\nWhat movies did Judi Dench play in?\tstar of Return\t-9.375946318412888\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, star of Return) -> star of Return (10692ms)\nWhat movies did Judi Dench play in?\ta-list actor\t-9.381435929855343\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, a-list actor) -> a-list actor (10693ms)\nWhat movies did Judi Dench play in?\ttop tier actor\t-9.391221622003101\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, top tier actor) -> top tier actor (10692ms)\nWhat movies did Judi Dench play in?\tstar of Shakespeare\t-9.39353230154769\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, star of Shakespeare) -> star of Shakespeare (10692ms)\nWhat movies did Judi Dench play in?\tthe Rose Theatre\t-9.39354909297769\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was given the set of, the Rose Theatre) -> the Rose Theatre (5381ms)\nWhat movies did Judi Dench play in?\tactress after the age\t-9.398786164963038\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, actress after the age) -> actress after the age (10693ms)\nWhat movies did Judi Dench play in?\tmacular degeneration\t-9.406930476441158\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, has been diagnosed with, macular degeneration) -> macular degeneration (5381ms)\nWhat movies did Judi Dench play in?\tfirst class actress\t-9.420353968909032\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (judi dench, Instance Of, first class actress) -> first class actress (10799ms)\nWhat movies did Judi Dench play in?\tproperly trained actor\t-9.420353968909032\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, properly trained actor) -> properly trained actor (10799ms)\nWhat movies did Judi Dench play in?\tbig name\t-9.426269081460916\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, big name) -> big name (10799ms)\nWhat movies did Judi Dench play in?\twell-known British actress\t-9.429447314063244\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, well-known British actress) -> well-known British actress (10799ms)\nWhat movies did Judi Dench play in?\tlegendary British actress\t-9.429474727756169\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, legendary British actress) -> legendary British actress (10799ms)\nWhat movies did Judi Dench play in?\told-school kind of star\t-9.429474727756169\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, old-school kind of star) -> old-school kind of star (10799ms)\nWhat movies did Judi Dench play in?\tstellar, stellar actress\t-9.429474727756169\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, stellar, stellar actress) -> stellar, stellar actress (10799ms)\nWhat movies did Judi Dench play in?\tbig box-office name\t-9.429474727756169\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, big box-office name) -> big box-office name (10843ms)\nWhat movies did Judi Dench play in?\tbrilliant, brilliant actor\t-9.429474727756169\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, brilliant, brilliant actor) -> brilliant, brilliant actor (10799ms)\nWhat movies did Judi Dench play in?\thigh profile performer\t-9.432871082909424\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, high profile performer) -> high profile performer (10843ms)\nWhat movies did Judi Dench play in?\tMrs. Brown\t-9.435442653808831\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, instance of, judus dench) -> (Mrs. Brown, Instance Of, 1997 movie starring Dame Judi Dench and Billy Connolly) -> Mrs. Brown (10843ms)\nWhat movies did Judi Dench play in?\tstar of Tomorrow Never\t-9.44086073193151\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, star of Tomorrow Never) -> star of Tomorrow Never (10843ms)\nWhat movies did Judi Dench play in?\tpolished veteran actor\t-9.440917799928032\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, polished veteran actor) -> polished veteran actor (10843ms)\nWhat movies did Judi Dench play in?\tHoover\t-9.445675771916042\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Hoover) -> Hoover (9030ms)\nWhat movies did Judi Dench play in?\ta successful novelist\t-9.453745232361378\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, a successful novelist) -> a successful novelist (9029ms)\nWhat movies did Judi Dench play in?\tRemain Silent\t-9.471070458423773\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Remain Silent, is narrated by, Judi Dench) -> Remain Silent (5430ms)\nWhat movies did Judi Dench play in?\tgreat british actress\t-9.475190853260631\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, great british actress) -> great british actress (10878ms)\nWhat movies did Judi Dench play in?\tJudged Too Old\t-9.481595151103178\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Judged Too Old) -> Judged Too Old (5430ms)\nWhat movies did Judi Dench play in?\tgreat actress\t-9.48322505375317\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, great actress) -> great actress (10877ms)\nWhat movies did Judi Dench play in?\tTitania\t-9.483640797079222\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, played, Titania) -> Titania (9029ms)\nWhat movies did Judi Dench play in?\tgreat actress of varied accomplishment\t-9.484452488954487\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, great actress of varied accomplishment) -> great actress of varied accomplishment (10878ms)\nWhat movies did Judi Dench play in?\treal life voice actor\t-9.484452488954487\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, real life voice actor) -> real life voice actor (10878ms)\nWhat movies did Judi Dench play in?\tengland's finest actor and actress\t-9.48668232883219\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, england's finest actor and actress) -> england's finest actor and actress (10905ms)\nWhat movies did Judi Dench play in?\tpopular and famous british actor\t-9.48668232883219\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, popular and famous british actor) -> popular and famous british actor (10905ms)\nWhat movies did Judi Dench play in?\tfamous actor\t-9.495987191814\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, famous actor) -> famous actor (10905ms)\nWhat movies did Judi Dench play in?\tContini?s costume designer and confidant\t-9.496327078091168\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Contini?s costume designer and confidant) -> Contini?s costume designer and confidant (5430ms)\nWhat movies did Judi Dench play in?\ta bit\t-9.499245980292365\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a bit) -> a bit (5430ms)\nWhat movies did Judi Dench play in?\tlegend of the british theater\t-9.500903554014828\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, legend of the british theater) -> legend of the british theater (10905ms)\nWhat movies did Judi Dench play in?\tMI6 chief M\t-9.503875513363846\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (his scenes Judi Dench, plays, MI6 chief M) -> MI6 chief M (9030ms)\nWhat movies did Judi Dench play in?\tthe U.S. Virgin Islands\t-9.512546285203964\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the U.S. Virgin Islands, are as different as, Dame Judi Dench) -> the U.S. Virgin Islands (5430ms)\nWhat movies did Judi Dench play in?\tGraham?s couch tonight\t-9.516506162329662\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Graham?s couch tonight, are, Dame Judi Dench) -> Graham?s couch tonight (5430ms)\nWhat movies did Judi Dench play in?\tthe Assistant Director\t-9.516970515066838\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, the Assistant Director) -> the Assistant Director (5430ms)\nWhat movies did Judi Dench play in?\tbig british theatrical actor\t-9.525580150992488\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, big british theatrical actor) -> big british theatrical actor (10931ms)\nWhat movies did Judi Dench play in?\twell respected and loved British actress\t-9.527522951436655\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, well respected and loved British actress) -> well respected and loved British actress (10986ms)\nWhat movies did Judi Dench play in?\tas much M\t-9.528000743650802\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is now, as much M) -> as much M (5776ms)\nWhat movies did Judi Dench play in?\tLily or Alice\t-9.528127030202869\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, would be great as, Lily or Alice) -> Lily or Alice (5776ms)\nWhat movies did Judi Dench play in?\tmodern day actor in costume\t-9.531576284267333\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, modern day actor in costume) -> modern day actor in costume (10986ms)\nWhat movies did Judi Dench play in?\tengaging, clever and intuitive actress\t-9.531576284267333\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, engaging, clever and intuitive actress) -> engaging, clever and intuitive actress (10986ms)\nWhat movies did Judi Dench play in?\tprominent actor in the world\t-9.531576284267333\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, prominent actor in the world) -> prominent actor in the world (10986ms)\nWhat movies did Judi Dench play in?\tset\t-9.53818381860549\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (set, was equally, light-hearted?Dame Judi Dench) -> set (5776ms)\nWhat movies did Judi Dench play in?\twell known British actress\t-9.539289373306087\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, well known British actress) -> well known British actress (10986ms)\nWhat movies did Judi Dench play in?\tDame Sybil Thorndike\t-9.540356103410195\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Dame Sybil Thorndike) -> Dame Sybil Thorndike (5776ms)\nWhat movies did Judi Dench play in?\ta glass\t-9.556301072561507\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (a glass, is, Dame Judi Dench) -> a glass (5776ms)\nWhat movies did Judi Dench play in?\tfamous English movie, theater and tv actress\t-9.563258496215564\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, famous English movie, theater and tv actress) -> famous English movie, theater and tv actress (10986ms)\nWhat movies did Judi Dench play in?\tEnglish actress\t-9.567711517090528\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, English actress) -> English actress (11239ms)\nWhat movies did Judi Dench play in?\ta great looking lady\t-9.568217025203936\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a great looking lady) -> a great looking lady (5776ms)\nWhat movies did Judi Dench play in?\theralded British stage and film actress\t-9.572416906871798\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, heralded British stage and film actress) -> heralded British stage and film actress (11239ms)\nWhat movies did Judi Dench play in?\tA nomination\t-9.577673281037951\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (A nomination, would be similar to, Judi Dench) -> A nomination (5776ms)\nWhat movies did Judi Dench play in?\tgood news\t-9.581303447897646\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, good news) -> good news (6225ms)\nWhat movies did Judi Dench play in?\tOscar winner\t-9.5826670310046\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, Oscar winner) -> Oscar winner (11334ms)\nWhat movies did Judi Dench play in?\tBecome Silent\t-9.602581186068095\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Become Silent, is narrated by, Dame Judi Dench) -> Become Silent (6226ms)\nWhat movies did Judi Dench play in?\tnotable actor\t-9.6030504745918\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, notable actor) -> notable actor (11333ms)\nWhat movies did Judi Dench play in?\trespected actor\t-9.618884172143614\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, respected actor) -> respected actor (11333ms)\nWhat movies did Judi Dench play in?\tDesiree\t-9.619932458400505\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, played, Desiree) -> Desiree (9168ms)\nWhat movies did Judi Dench play in?\tabsolute genius\t-9.627281720479912\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are, absolute genius) -> absolute genius (6225ms)\nWhat movies did Judi Dench play in?\ttop favourites\t-9.631350055596176\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are always, top favourites) -> top favourites (6225ms)\nWhat movies did Judi Dench play in?\texperienced actress\t-9.636003602438736\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, experienced actress) -> experienced actress (11749ms)\nWhat movies did Judi Dench play in?\tmuch experience\t-9.64247215680343\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has so, much experience) -> much experience (6226ms)\nWhat movies did Judi Dench play in?\ta cracking Mrs Fairfax\t-9.642489631537357\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a cracking Mrs Fairfax) -> a cracking Mrs Fairfax (6226ms)\nWhat movies did Judi Dench play in?\tgood actress\t-9.644610513891553\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, good actress) -> good actress (11749ms)\nWhat movies did Judi Dench play in?\tMinnie\t-9.64988733385437\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has adopted, Minnie) -> Minnie (6226ms)\nWhat movies did Judi Dench play in?\tTea with Mussolini\t-9.65616219509032\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, instance of, judus dench) -> (Tea with Mussolini, Instance Of, 1999 film, starring Cher, Judi Dench) -> Tea with Mussolini (11749ms)\nWhat movies did Judi Dench play in?\tJ Edgar\t-9.660330359062925\tWhat movies did Judi Dench play in? -> what movie do [ judus dench play ] in ? -> how many movie have judus dench play ? -> $x: ($x, instance of, movie) (judus dench, play, $x) -> $x: ($x, instance of, movie) (judus dench, of play, $x) -> (J Edgar, Instance Of, amazing movie) (Judi Dench, plays the part of, J. Edgar) -> J Edgar (6225ms)\nWhat movies did Judi Dench play in?\tbritish star\t-9.662692829201276\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, british star) -> british star (11965ms)\nWhat movies did Judi Dench play in?\tfantastic actress\t-9.663184859437896\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, fantastic actress) -> fantastic actress (11965ms)\nWhat movies did Judi Dench play in?\tname actor\t-9.668051130503606\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, name actor) -> name actor (11965ms)\nWhat movies did Judi Dench play in?\tBecome Silent ?\t-9.670520219307358\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Become Silent ?, is narrated by, Dame Judi Dench) -> Become Silent ? (6643ms)\nWhat movies did Judi Dench play in?\tbritish actor\t-9.681913553040596\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, british actor) -> british actor (11965ms)\nWhat movies did Judi Dench play in?\tacting legend\t-9.682514714820275\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, acting legend) -> acting legend (11965ms)\nWhat movies did Judi Dench play in?\ttop actor\t-9.685386887843764\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, top actor) -> top actor (11965ms)\nWhat movies did Judi Dench play in?\t77\t-9.688446028621538\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, 77) -> 77 (6643ms)\nWhat movies did Judi Dench play in?\tbritish name\t-9.689832372089505\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, british name) -> british name (12341ms)\nWhat movies did Judi Dench play in?\tbritish great\t-9.691170652463203\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, british great) -> british great (12341ms)\nWhat movies did Judi Dench play in?\tgreat performer\t-9.69163325487229\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, great performer) -> great performer (12341ms)\nWhat movies did Judi Dench play in?\tbrilliant actor\t-9.692770062059976\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, brilliant actor) -> brilliant actor (12341ms)\nWhat movies did Judi Dench play in?\tHayden\t-9.69410264130249\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is onboard to play, Hayden) -> Hayden (6643ms)\nWhat movies did Judi Dench play in?\tfantastic actor\t-9.695905116670586\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, fantastic actor) -> fantastic actor (12341ms)\nWhat movies did Judi Dench play in?\tscreen legend\t-9.696854042457822\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, screen legend) -> screen legend (12341ms)\nWhat movies did Judi Dench play in?\tsuccessful actress\t-9.696865980774293\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, successful actress) -> successful actress (12341ms)\nWhat movies did Judi Dench play in?\tmature actress\t-9.697339802014044\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, mature actress) -> mature actress (12405ms)\nWhat movies did Judi Dench play in?\thollywood actor\t-9.697743015588632\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, hollywood actor) -> hollywood actor (12404ms)\nWhat movies did Judi Dench play in?\tsuperb actress\t-9.699554369525176\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, superb actress) -> superb actress (12405ms)\nWhat movies did Judi Dench play in?\tvision problems\t-9.70070403343355\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, is having, vision problems) -> vision problems (6643ms)\nWhat movies did Judi Dench play in?\tfamous name\t-9.701078307438214\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, famous name) -> famous name (12405ms)\nWhat movies did Judi Dench play in?\texperienced performer\t-9.702303484349084\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, experienced performer) -> experienced performer (12405ms)\nWhat movies did Judi Dench play in?\twonderful actress\t-9.705791603025201\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, wonderful actress) -> wonderful actress (12405ms)\nWhat movies did Judi Dench play in?\tfeatured actor\t-9.706686998823189\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, featured actor) -> featured actor (12490ms)\nWhat movies did Judi Dench play in?\tlanding luminary\t-9.721669926430186\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, landing luminary) -> landing luminary (12490ms)\nWhat movies did Judi Dench play in?\tacclaimed actor\t-9.721669926430186\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, acclaimed actor) -> acclaimed actor (12490ms)\nWhat movies did Judi Dench play in?\tthinking actor\t-9.721669926430186\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, thinking actor) -> thinking actor (12490ms)\nWhat movies did Judi Dench play in?\tquality actress\t-9.721669926430186\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, quality actress) -> quality actress (12490ms)\nWhat movies did Judi Dench play in?\ta time\t-9.723611766082636\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (12 / R Judi Dench, is clearly having a whale of, a time) -> a time (6643ms)\nWhat movies did Judi Dench play in?\tenglish star\t-9.724089200676728\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, english star) -> english star (12490ms)\nWhat movies did Judi Dench play in?\t?Best Actress\t-9.732343335789805\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (? Judi Dench, was nominated for, ?Best Actress) -> ?Best Actress (6643ms)\nWhat movies did Judi Dench play in?\tclassical actor\t-9.735379147518085\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, classical actor) -> classical actor (12627ms)\nWhat movies did Judi Dench play in?\ta British actor\t-9.739910305288683\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (a British actor, happened to be married to, Dame Judi Dench) -> a British actor (6643ms)\nWhat movies did Judi Dench play in?\tincredible actress\t-9.741425571420734\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, incredible actress) -> incredible actress (12627ms)\nWhat movies did Judi Dench play in?\tfemale actor\t-9.742233757449185\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, female actor) -> female actor (12627ms)\nWhat movies did Judi Dench play in?\tclassic actor\t-9.744103197301294\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, classic actor) -> classic actor (12627ms)\nWhat movies did Judi Dench play in?\tseasoned actor\t-9.744437024007764\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, seasoned actor) -> seasoned actor (12627ms)\nWhat movies did Judi Dench play in?\tphenomenal actress\t-9.744701417269521\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, phenomenal actress) -> phenomenal actress (12627ms)\nWhat movies did Judi Dench play in?\tMrs Henderson Presents\t-9.744835792991715\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, instance of, judus dench) -> (Mrs Henderson Presents, Instance Of, 2005 film starring Dame Judi Dench) -> Mrs Henderson Presents (12627ms)\nWhat movies did Judi Dench play in?\tmarvellous actress\t-9.745171448645356\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, marvellous actress) -> marvellous actress (12722ms)\nWhat movies did Judi Dench play in?\textraordinary actress\t-9.746477088632233\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, extraordinary actress) -> extraordinary actress (12722ms)\nWhat movies did Judi Dench play in?\tdistinguished performer\t-9.7476452908957\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, distinguished performer) -> distinguished performer (12721ms)\nWhat movies did Judi Dench play in?\tveteran actress\t-9.749088368605985\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, veteran actress) -> veteran actress (12721ms)\nWhat movies did Judi Dench play in?\tdivine actor\t-9.749088368605985\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, divine actor) -> divine actor (12722ms)\nWhat movies did Judi Dench play in?\tgreat British acting\t-9.752121551879847\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is a byword for, great British acting) -> great British acting (6669ms)\nWhat movies did Judi Dench play in?\tThe Hollywood star\t-9.771312632588259\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The Hollywood star, was accompanied by, Judi Dench) -> The Hollywood star (6669ms)\nWhat movies did Judi Dench play in?\tWord\t-9.792359504199657\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Word, was, Judi Dench) -> Word (6669ms)\nWhat movies did Judi Dench play in?\tMrs Henderson\t-9.796081356295598\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Mrs Henderson, is played by, Judi Dench) -> Mrs Henderson (6669ms)\nWhat movies did Judi Dench play in?\ta great dame\t-9.818205824332955\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a great dame) -> a great dame (6669ms)\nWhat movies did Judi Dench play in?\ta rare villainous role\t-9.827813532862123\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is brilliant as ever in, a rare villainous role) -> a rare villainous role (6669ms)\nWhat movies did Judi Dench play in?\tWell the main character\t-9.855307597306078\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Well the main character, is, Judi Dench?s character) -> Well the main character (6669ms)\nWhat movies did Judi Dench play in?\tthe London cold\t-9.869257925125488\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are due to brave, the London cold) -> the London cold (7159ms)\nWhat movies did Judi Dench play in?\ta wonderful addition\t-9.890097691915535\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, would be, a wonderful addition) -> a wonderful addition (7159ms)\nWhat movies did Judi Dench play in?\tLady Catherine De Bourgh\t-9.895012595284477\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has a small part as, Lady Catherine De Bourgh) -> Lady Catherine De Bourgh (7159ms)\nWhat movies did Judi Dench play in?\tM Widescreen Stereo Repeat Graham\t-9.915349093318879\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (M Widescreen Stereo Repeat Graham, is joined by, Dame Judi Dench) -> M Widescreen Stereo Repeat Graham (7159ms)\nWhat movies did Judi Dench play in?\ta wonderful actress\t-9.921756686336012\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a wonderful actress) -> a wonderful actress (7159ms)\nWhat movies did Judi Dench play in?\ta fellow teacher\t-9.943380255279216\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Academy Award winner Judi Dench, plays, a fellow teacher) -> a fellow teacher (9168ms)\nWhat movies did Judi Dench play in?\tan absolute treat\t-9.963345092612986\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was, an absolute treat) -> an absolute treat (7159ms)\nWhat movies did Judi Dench play in?\tHQ . Rimington\t-9.96932526144872\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (HQ . Rimington, is the inspiration for, Judi Dench?s ?M?) -> HQ . Rimington (7159ms)\nWhat movies did Judi Dench play in?\tthe 40 readings\t-10.010319056828521\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the 40 readings, are, Judi Dench) -> the 40 readings (7159ms)\nWhat movies did Judi Dench play in?\tBlunt\t-10.06102040616875\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Blunt, was starring, opposite Judi Dench) -> Blunt (7316ms)\nWhat movies did Judi Dench play in?\tthree scenes\t-10.065016000426366\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, won having only been in, three scenes) -> three scenes (7316ms)\nWhat movies did Judi Dench play in?\tAereon\t-10.070268647216448\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Aereon) -> Aereon (7316ms)\nWhat movies did Judi Dench play in?\ta great actress\t-10.076391573697736\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a great actress) -> a great actress (7316ms)\nWhat movies did Judi Dench play in?\tJean\t-10.096523526146704\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Jean) -> Jean (7316ms)\nWhat movies did Judi Dench play in?\tthe Giant\t-10.108062938330786\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is the voice of, the Giant) -> the Giant (7316ms)\nWhat movies did Judi Dench play in?\ta different timeline\t-10.120237452710722\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is M in, a different timeline) -> a different timeline (7316ms)\nWhat movies did Judi Dench play in?\tdegenerative eye condition\t-10.135548442796546\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has, degenerative eye condition) -> degenerative eye condition (7345ms)\nWhat movies did Judi Dench play in?\tBond\t-10.199935151933946\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is back as, Bond) -> Bond (7345ms)\nWhat movies did Judi Dench play in?\tMurdoch\t-10.229220434018286\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Murdoch) -> Murdoch (9168ms)\nWhat movies did Judi Dench play in?\ta star\t-10.234901875024342\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a star) -> a star (7345ms)\nWhat movies did Judi Dench play in?\tTura\t-10.248173784628795\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Tura, was n?t, Dame Judi Dench) -> Tura (7345ms)\nWhat movies did Judi Dench play in?\tQueen Elizabeth\t-10.276529849560431\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, Queen Elizabeth) -> Queen Elizabeth (9168ms)\nWhat movies did Judi Dench play in?\tPatron\t-10.382504398882116\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has agreed to be, Patron) -> Patron (7345ms)\nWhat movies did Judi Dench play in?\tDance\t-10.396494072908345\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Dance, is pictured here with, Judi Dench) -> Dance (7345ms)\nWhat movies did Judi Dench play in?\tGraham Norton show\t-10.403260291778082\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is set to appear on tonight?s, Graham Norton show) -> Graham Norton show (7345ms)\nWhat movies did Judi Dench play in?\tSkyfall\t-10.432903656172162\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Skyfall, will be joined by, Dame Judi Dench) -> Skyfall (7345ms)\nWhat movies did Judi Dench play in?\tclass and elegance\t-10.435378580102146\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is the embodiment of, class and elegance) -> class and elegance (7372ms)\nWhat movies did Judi Dench play in?\ta brave performance\t-10.459010557443449\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench?s Victoria, is, a brave performance) -> a brave performance (7372ms)\nWhat movies did Judi Dench play in?\tHoover 's mother\t-10.503747840423596\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Hoover 's mother) -> Hoover 's mother (9168ms)\nWhat movies did Judi Dench play in?\tthe top\t-10.708364891687879\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has been at, the top) -> the top (7372ms)\nWhat movies did Judi Dench play in?\tthe older Murdoch\t-10.786675969417963\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, the older Murdoch) -> the older Murdoch (9168ms)\nWhat movies did Judi Dench play in?\tthe mature version\t-10.811433557564731\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, the mature version) -> the mature version (9168ms)\nWhat movies did Judi Dench play in?\tThe movie\t-10.816127682256223\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The movie, will be the final appearance of, Judi Dench) -> The movie (7372ms)\nWhat movies did Judi Dench play in?\tthe Queen\t-10.82092956071668\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is fantastic as ever as, the Queen) -> the Queen (7372ms)\nWhat movies did Judi Dench play in?\tback as M\t-10.90184510376083\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, back as M) -> back as M (7396ms)\nWhat movies did Judi Dench play in?\tthe part\t-10.905471831169844\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, play, the part) -> the part (9194ms)\nWhat movies did Judi Dench play in?\tthe character\t-10.95853150978803\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, the character) -> the character (9194ms)\nWhat movies did Judi Dench play in?\tThe queen\t-10.977500788902756\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The queen, was played by, Judi Dench) -> The queen (7396ms)\nWhat movies did Judi Dench play in?\tM in a different timeline\t-11.03627140692916\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, M in a different timeline) -> M in a different timeline (7396ms)\nWhat movies did Judi Dench play in?\t1934\t-11.130181159803133\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was born in, 1934) -> 1934 (7396ms)\nWhat movies did Judi Dench play in?\tthe cast?\t-11.13427224083227\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was in, the cast?) -> the cast? (7396ms)\nWhat movies did Judi Dench play in?\tcontinuity\t-11.148512062355572\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (continuity, is, Judi Dench) -> continuity (7396ms)\nWhat movies did Judi Dench play in?\tThe older teacher\t-11.19502140522491\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The older teacher, is played masterfully by, Judi Dench) -> The older teacher (7396ms)\nWhat movies did Judi Dench play in?\tthe finest actors\t-11.219739975846998\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is one of, the finest actors) -> the finest actors (7507ms)\nWhat movies did Judi Dench play in?\tonce again\t-11.23846655326468\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is also excellent, once again) -> once again (7508ms)\nWhat movies did Judi Dench play in?\tthe movie\t-11.249492380982444\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (( Judi Dench, played her so tenderly in, the movie) -> the movie (9194ms)\nWhat movies did Judi Dench play in?\tfact\t-11.257953988957087\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (fact, be replacing, Judi Dench) -> fact (7508ms)\nWhat movies did Judi Dench play in?\tfriends\t-11.28582529659152\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (British actress Judi Dench, has said, friends) -> friends (7508ms)\nWhat movies did Judi Dench play in?\tThe host\t-11.3134040910648\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The host, is joined by, Oscar-winning actress Judi Dench) -> The host (7508ms)\nWhat movies did Judi Dench play in?\tThe special feature\t-11.314713153684206\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The special feature, is, Judi Dench) -> The special feature (7508ms)\nWhat movies did Judi Dench play in?\tthe biggest casting surprise\t-11.317728464725596\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the biggest casting surprise, is, Judi Dench) -> the biggest casting surprise (7507ms)\nWhat movies did Judi Dench play in?\tthe stars\t-11.334034150822308\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, were among, the stars) -> the stars (7534ms)\nWhat movies did Judi Dench play in?\tthe last three films\t-11.33455790929684\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has done a solid job in, the last three films) -> the last three films (7534ms)\nWhat movies did Judi Dench play in?\tthe cover photo\t-11.33636115808506\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the cover photo, was of, Judi Dench) -> the cover photo (7534ms)\nWhat movies did Judi Dench play in?\tthe biggest scene stealer\t-11.353096342387818\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the biggest scene stealer, was, Judi Dench) -> the biggest scene stealer (7534ms)\nWhat movies did Judi Dench play in?\tthe guy\t-11.360392026328935\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the guy, would be, a bald Judi Dench) -> the guy (7534ms)\nWhat movies did Judi Dench play in?\tthe first half\t-11.375684689583943\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the first half, was, Dame Judi Dench performing ?Send) -> the first half (7534ms)\nWhat movies did Judi Dench play in?\tthe best M\t-11.396059356630989\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, the best M) -> the best M (7534ms)\nWhat movies did Judi Dench play in?\tthe supporting players\t-11.396188761451713\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are just a few of, the supporting players) -> the supporting players (7599ms)\nWhat movies did Judi Dench play in?\tThe same\t-11.416401247332658\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The same, is true of, Judi Dench) -> The same (7598ms)\nWhat movies did Judi Dench play in?\tThe second two\t-11.430543047892115\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The second two, were, Judi Dench) -> The second two (7598ms)\nWhat movies did Judi Dench play in?\tthe best BBC costume drama I?ve\t-11.440723074708806\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, the best BBC costume drama I?ve) -> the best BBC costume drama I?ve (7598ms)\nWhat movies did Judi Dench play in?\tthe film?s narrator\t-11.472229793289621\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is expected to serve as, the film?s narrator) -> the film?s narrator (7598ms)\nWhat movies did Judi Dench play in?\tthe leather chair\t-11.491682104922926\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, will still be sitting in, the leather chair) -> the leather chair (7598ms)\nWhat movies did Judi Dench play in?\tactor\t-11.494850680709126\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is an, actor) -> actor (7598ms)\nWhat movies did Judi Dench play in?\tthe musical alive\t-11.507597670951846\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, have kept interest in, the musical alive) -> the musical alive (7733ms)\nWhat movies did Judi Dench play in?\tthe impressive roll call\t-11.525611775049114\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the impressive roll call, are, Dame Judi Dench) -> the impressive roll call (7733ms)\nWhat movies did Judi Dench play in?\tThe voiceover\t-11.529113198763866\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The voiceover, is spoken by, the rather lovely Judi Dench) -> The voiceover (7733ms)\nWhat movies did Judi Dench play in?\tthe seriousness\t-11.547280431119725\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has clarified, the seriousness) -> the seriousness (7733ms)\nWhat movies did Judi Dench play in?\tThe only problem\t-11.557175871690625\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The only problem, really is, the Judi Dench 'M') -> The only problem (7733ms)\nWhat movies did Judi Dench play in?\tthe script\t-11.579239529720862\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has to read, the script) -> the script (7733ms)\nWhat movies did Judi Dench play in?\tthe cast\t-11.586392821326644\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the cast, are, Judi Dench) -> the cast (7733ms)\nWhat movies did Judi Dench play in?\tthe franchise\t-11.61798683840934\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is leaving, the franchise) -> the franchise (7811ms)\nWhat movies did Judi Dench play in?\tThe only other known version\t-11.639175610057599\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The only other known version, is by, Judi Dench) -> The only other known version (7811ms)\nWhat movies did Judi Dench play in?\tthe award ceremony\t-11.645365020269866\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the award ceremony, was also attended by, Judi Dench) -> the award ceremony (7811ms)\nWhat movies did Judi Dench play in?\tthe trip\t-11.667833413624093\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the trip, was meeting, Dame Judi Dench) -> the trip (7811ms)\nWhat movies did Judi Dench play in?\tthe film\t-11.675032173911838\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is definitely in, the film) -> the film (7811ms)\nWhat movies did Judi Dench play in?\tregulars\t-11.776273596160244\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are, regulars) -> regulars (7811ms)\nWhat movies did Judi Dench play in?\troles\t-11.803230003788176\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, have supporting, roles) -> roles (8137ms)\nWhat movies did Judi Dench play in?\tthe end\t-11.811393658835634\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench?s house, was at, the end) -> the end (8137ms)\nWhat movies did Judi Dench play in?\tthe villain\t-11.838370288884036\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench?s character, is unequivocably, the villain) -> the villain (8137ms)\nWhat movies did Judi Dench play in?\thistory\t-11.89102074657293\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (history, were really, Judi Dench) -> history (8137ms)\nWhat movies did Judi Dench play in?\tstatements\t-11.896200701305126\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has released, statements) -> statements (8137ms)\nWhat movies did Judi Dench play in?\tresistance\t-11.923934622425993\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (resistance, was, Judi Dench) -> resistance (8137ms)\nWhat movies did Judi Dench play in?\ttough\t-11.941618561257103\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (tough, was, Judi Dench) -> tough (8137ms)\nWhat movies did Judi Dench play in?\tguest\t-11.95753412728602\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (guest, was, Judi Dench) -> guest (8327ms)\nWhat movies did Judi Dench play in?\tthe picture\t-11.961214394585436\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is her dependably remarkable self in, the picture) -> the picture (8326ms)\nWhat movies did Judi Dench play in?\tpart\t-11.996046604164217\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (part, are, Judi Dench) -> part (8327ms)\nWhat movies did Judi Dench play in?\tboard\t-12.01545941509909\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is also on, board) -> board (8326ms)\nWhat movies did Judi Dench play in?\tgood\t-12.036029160933094\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (good, is, Dame Judi Dench) -> good (8327ms)\nWhat movies did Judi Dench play in?\trelease\t-12.05033535815322\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is set for, release) -> release (8327ms)\nWhat movies did Judi Dench play in?\tscreen\t-12.096154626742084\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is on, screen) -> screen (8327ms)\nWhat movies did Judi Dench play in?\tpurists\t-12.273999299946524\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (purists, are upset over, the new Judi Dench narration) -> purists (8511ms)\nWhat movies did Judi Dench play in?\tperformances\t-12.331575106853748\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has given an astonishing range of, performances) -> performances (8511ms)\nWhat movies did Judi Dench play in?\tdelightful\t-12.632340365687716\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, delightful) -> delightful (8511ms)\nWhat movies did Judi Dench play in?\tthe best M ever\t-12.827679880480723\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, the best M ever) -> the best M ever (8510ms)\nWhat movies did Judi Dench play in?\twonderful\t-13.18681321507745\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, wonderful) -> wonderful (8535ms)\nWhat movies did Judi Dench play in?\texcellent\t-13.22168915813158\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, excellent) -> excellent (8535ms)\nWhat movies did Judi Dench play in?\tgreat\t-13.236163982321756\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was, great) -> great (8535ms)\nWhat movies did Judi Dench play in?\tamazing\t-13.236163982321756\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, amazing) -> amazing (8535ms)\nWhat movies did Judi Dench play in?\tmarvellous\t-13.256565101185709\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, marvellous) -> marvellous (8535ms)\nWhat movies did Judi Dench play in?\tsuperb\t-13.256565101185709\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, superb) -> superb (8558ms)\nWhat movies did Judi Dench play in?\tperfect\t-13.256565101185709\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, perfect) -> perfect (8535ms)\nWhat movies did Judi Dench play in?\tfabulous\t-13.256565101185709\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was, fabulous) -> fabulous (8558ms)\nWhat movies did Judi Dench play in?\tfantastic\t-13.256565101185709\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, fantastic) -> fantastic (8535ms)\nWhat movies did Judi Dench play in?\tdate\t-13.687235969266375\tWhat movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (the Golden Gun and Judi Dench, has appeared to, date) -> date (8558ms)\nWhat is the oldest sports trophy?\tThe America?s Cup\t-9.89048081916495\tWhat is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (The America?s Cup, is, the world?s oldest sporting trophy) -> The America?s Cup (6652ms)\nWhat is the oldest sports trophy?\tThe Stanley Cup\t-10.831733265809206\tWhat is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (The Stanley Cup, is, the oldest trophy in professional sports) -> The Stanley Cup (6652ms)\nWhat is the oldest sports trophy?\tback in Europe\t-10.975038098004617\tWhat is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: (the oldest sport trophy, be, $x) -> (The oldest trophy in the world of sports, is, back in Europe) -> back in Europe (6652ms)\nWhat is the oldest sports trophy?\tthe cup\t-11.368185619840165\tWhat is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (the cup, is, the oldest professional sports trophy) -> the cup (6652ms)\nWhat is the oldest sports trophy?\tthe Americas  Cup\t-11.565504318002912\tWhat is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (the Americas  Cup, is, the oldest trophy in international sport) -> the Americas  Cup (6652ms)\nWhat is the oldest sports trophy?\tthe winning team\t-11.566732975008797\tWhat is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (the winning team, is, the oldest professional sports trophy) -> the winning team (6652ms)\nWhat is the oldest sports trophy?\tthe America 's Cup\t-11.589895738420934\tWhat is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (the America 's Cup, is, the oldest trophy in international sport) -> the America 's Cup (6652ms)\nWhat is the oldest sports trophy?\thockey\t-12.086615872788457\tWhat is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (hockey, is, the oldest professional sports trophy) -> hockey (6683ms)\nWho are professional female boxers?\tfour-time Golden Gloves champ\t-4.389952791183834\tWho are professional female boxers? -> $x: (professional female boxers, instance of, $x) -> (Professional female boxer Keisher Fire McLeod-Wells, Instance Of, four-time Golden Gloves champ) -> four-time Golden Gloves champ (623ms)\nWho are professional female boxers?\tOne participant\t-8.358570312825087\tWho are professional female boxers? -> who be [ professional female boxer ] ? -> who be be professional female boxer ? -> $x: ($x, be be, professional female boxer) -> (One participant, was, a professional female boxer) -> One participant (2331ms)\nWho are professional female boxers?\tthe tigress\t-9.816041690430417\tWho are professional female boxers? -> who be [ professional female boxer ] ? -> who be be professional female boxer ? -> $x: ($x, be be, professional female boxer) -> (the tigress, is, a professional female boxer) -> the tigress (2331ms)\nWhat peace treaty ended WWI?\tVersailles Treaty\t-2.4216377369041933\tWhat peace treaty ended WWI? -> $x: ($x, instance of, peace treaty) ($x, ended, WWI) -> (Versailles Treaty, Instance Of, peace treaty) (the Versailles Treaty, ended, WWI) -> Versailles Treaty (1109ms)\nWhat peace treaty ended WWI?\tVersailles\t-3.0200229868224975\tWhat peace treaty ended WWI? -> $x: ($x, instance of, peace treaty) ($x, ended, WWI) -> (Versailles, Instance Of, peace treaty) (Versailles, ended, WWI) -> Versailles (1109ms)\nWhat are geckos?\texotic pet\t-5.226783820456167\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, exotic pet) -> exotic pet (2513ms)\nWhat are geckos?\tland-based animal\t-5.279134843465684\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, land-based animal) -> land-based animal (2513ms)\nWhat are geckos?\tsmall pet\t-5.330989259992146\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small pet) -> small pet (2513ms)\nWhat are geckos?\tunusual pet\t-5.354942108386276\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, unusual pet) -> unusual pet (2513ms)\nWhat are geckos?\tbelly-heating animal\t-5.3648011674571325\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, belly-heating animal) -> belly-heating animal (2513ms)\nWhat are geckos?\tcold-blooded animal\t-5.369130395072335\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, cold-blooded animal) -> cold-blooded animal (2513ms)\nWhat are geckos?\tindependent pet\t-5.482641371762131\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, independent pet) -> independent pet (2669ms)\nWhat are geckos?\tyoung man\t-5.51670341596394\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, young man) -> young man (2669ms)\nWhat are geckos?\ttype of internet browser\t-5.582604888726742\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, type of internet browser) -> type of internet browser (2669ms)\nWhat are geckos?\tsymbol of good luck\t-5.606106410941914\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, symbol of good luck) -> symbol of good luck (2669ms)\nWhat are geckos?\thousing medium size arboreal reptile\t-5.6076989291832735\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, housing medium size arboreal reptile) -> housing medium size arboreal reptile (2670ms)\nWhat are geckos?\tsmall tree dwelling reptile\t-5.6859271930891\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small tree dwelling reptile) -> small tree dwelling reptile (2719ms)\nWhat are geckos?\tcompanion and exotic animal\t-5.6859271930891\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, companion and exotic animal) -> companion and exotic animal (2670ms)\nWhat are geckos?\tinnovative theater and music company\t-5.712188473527705\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, innovative theater and music company) -> innovative theater and music company (2719ms)\nWhat are geckos?\tinteresting small lizard\t-5.743840083236876\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, interesting small lizard) -> interesting small lizard (2719ms)\nWhat are geckos?\tquiet and relaxing resort\t-5.745090603648385\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, quiet and relaxing resort) -> quiet and relaxing resort (2719ms)\nWhat are geckos?\tfowl and pet\t-5.752960842084011\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, fowl and pet) -> fowl and pet (2719ms)\nWhat are geckos?\tfamily fun center offering entertainment and game\t-5.752960842084011\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, family fun center offering entertainment and game) -> family fun center offering entertainment and game (2743ms)\nWhat are geckos?\tkoi fish reptile\t-5.752960842084011\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, koi fish reptile) -> koi fish reptile (2719ms)\nWhat are geckos?\toptimum adhesion animal\t-5.788734038672018\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, optimum adhesion animal) -> optimum adhesion animal (2743ms)\nWhat are geckos?\tbearded dragon lizard\t-5.788734038672018\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, bearded dragon lizard) -> bearded dragon lizard (2743ms)\nWhat are geckos?\tstepper motor controller\t-5.788734038672018\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, stepper motor controller) -> stepper motor controller (2743ms)\nWhat are geckos?\tdigital marketing company\t-5.795739273940905\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko+, Instance Of, digital marketing company) -> digital marketing company (2743ms)\nWhat are geckos?\twood-paneled Western-style pub\t-5.797854797519154\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, wood-paneled Western-style pub) -> wood-paneled Western-style pub (2761ms)\nWhat are geckos?\tself adhering, UV resistant textile\t-5.797854797519154\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, self adhering, UV resistant textile) -> self adhering, UV resistant textile (2761ms)\nWhat are geckos?\tsafe, family friendly center\t-5.797854797519154\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, safe, family friendly center) -> safe, family friendly center (2762ms)\nWhat are geckos?\tcrochet stitch/pattern\t-5.797854797519154\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, crochet stitch/pattern) -> crochet stitch/pattern (2761ms)\nWhat are geckos?\tpad-bearing lizard\t-5.797854797519154\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, pad-bearing lizard) -> pad-bearing lizard (2743ms)\nWhat are geckos?\tBroad-tailed Gecko\t-5.797854797519154\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, Broad-tailed Gecko) -> Broad-tailed Gecko (2761ms)\nWhat are geckos?\tsmall and agile lizard\t-5.797854797519154\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small and agile lizard) -> small and agile lizard (2781ms)\nWhat are geckos?\tcommon type of reptile\t-5.797854797519154\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, common type of reptile) -> common type of reptile (2762ms)\nWhat are geckos?\tinvertebrate and small vertebrate\t-5.800508194990915\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, invertebrate and small vertebrate) -> invertebrate and small vertebrate (2781ms)\nWhat are geckos?\ttype of reptile\t-5.8041821303760965\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, type of reptile) -> type of reptile (2781ms)\nWhat are geckos?\tcheeky little character\t-5.805185103732358\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, cheeky little character) -> cheeky little character (2781ms)\nWhat are geckos?\tsymbol of transformation\t-5.809605558626739\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, symbol of transformation) -> symbol of transformation (2781ms)\nWhat are geckos?\tsmoke free zone\t-5.819579785200518\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (GECKOS, Instance Of, smoke free zone) -> smoke free zone (2782ms)\nWhat are geckos?\tsmall reptile and amphibian\t-5.821356319734325\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko's, Instance Of, small reptile and amphibian) -> small reptile and amphibian (2796ms)\nWhat are geckos?\texotic reptile\t-5.857031551345124\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, exotic reptile) -> exotic reptile (2797ms)\nWhat are geckos?\tMovember sponsor\t-6.001065304633346\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, Movember sponsor) -> Movember sponsor (2796ms)\nWhat are geckos?\tnocturnal lizard\t-6.019245802871927\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, nocturnal lizard) -> nocturnal lizard (2797ms)\nWhat are geckos?\twild animal\t-6.020650382710059\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, wild animal) -> wild animal (2797ms)\nWhat are geckos?\tliving animal\t-6.023042202524807\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko's, Instance Of, living animal) -> living animal (2797ms)\nWhat are geckos?\tpet reptile\t-6.043000973422939\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, pet reptile) -> pet reptile (2831ms)\nWhat are geckos?\tAustralian company\t-6.053779468065857\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, Australian company) -> Australian company (2831ms)\nWhat are geckos?\tquality brand\t-6.091675815228763\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, quality brand) -> quality brand (2831ms)\nWhat are geckos?\tvertebrate pest\t-6.115687550456705\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, vertebrate pest) -> vertebrate pest (2831ms)\nWhat are geckos?\ttaxonomic group\t-6.128071355503611\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, taxonomic group) -> taxonomic group (2831ms)\nWhat are geckos?\tanimal product\t-6.131265236352489\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, animal product) -> animal product (2831ms)\nWhat are geckos?\tgood suggestion\t-6.1338295744736495\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, good suggestion) -> good suggestion (2849ms)\nWhat are geckos?\tyang symbol\t-6.155023713973003\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, yang symbol) -> yang symbol (2849ms)\nWhat are geckos?\thealthiest reptile\t-6.155023713973003\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, healthiest reptile) -> healthiest reptile (2849ms)\nWhat are geckos?\tclub animal\t-6.155023713973003\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, club animal) -> club animal (2869ms)\nWhat are geckos?\tnative reptile\t-6.155023713973003\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, native reptile) -> native reptile (2849ms)\nWhat are geckos?\ttrustworthy reptile\t-6.155023713973003\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, trustworthy reptile) -> trustworthy reptile (2849ms)\nWhat are geckos?\tcritter pattern\t-6.155023713973003\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, critter pattern) -> critter pattern (2849ms)\nWhat are geckos?\tnasty creature\t-6.156702394021792\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, nasty creature) -> nasty creature (2869ms)\nWhat are geckos?\tlive creature\t-6.157351694877768\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, live creature) -> live creature (2869ms)\nWhat are geckos?\tliving creature\t-6.158940634240056\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, living creature) -> living creature (2869ms)\nWhat are geckos?\tland animal\t-6.163249246503173\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, land animal) -> land animal (2869ms)\nWhat are geckos?\tspecialist program\t-6.166214914911113\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, specialist program) -> specialist program (2869ms)\nWhat are geckos?\tsocial animal\t-6.166325971896797\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, social animal) -> social animal (2890ms)\nWhat are geckos?\tadrenaline activity\t-6.16987536943657\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckoing, Instance Of, adrenaline activity) -> adrenaline activity (2890ms)\nWhat are geckos?\tfine place\t-6.173368426457353\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, fine place) -> fine place (2890ms)\nWhat are geckos?\tonomatopoeic word\t-6.174005711930979\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, onomatopoeic word) -> onomatopoeic word (2890ms)\nWhat are geckos?\tfriendly place\t-6.179971765469216\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, friendly place) -> friendly place (2890ms)\nWhat are geckos?\twildlife species\t-6.183362774398162\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, wildlife species) -> wildlife species (2890ms)\nWhat are geckos?\tsmall reptile\t-6.185869460501503\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small reptile) -> small reptile (2952ms)\nWhat are geckos?\tvaluable tool\t-6.186940043126667\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, valuable tool) -> valuable tool (2952ms)\nWhat are geckos?\tweekly club\t-6.187925844093683\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, weekly club) -> weekly club (2952ms)\nWhat are geckos?\tfriendly restaurant\t-6.189296764854203\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, friendly restaurant) -> friendly restaurant (2952ms)\nWhat are geckos?\tdeveloper tool\t-6.190786897181464\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, developer tool) -> developer tool (2953ms)\nWhat are geckos?\tadventure activity\t-6.1921400992250515\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (geckoing, Instance Of, adventure activity) -> adventure activity (2952ms)\nWhat are geckos?\tnative lizard\t-6.2020267584033455\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, native lizard) -> native lizard (3056ms)\nWhat are geckos?\t5 letter word\t-6.206683201865486\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, 5 letter word) -> 5 letter word (3056ms)\nWhat are geckos?\tfairly good pet\t-6.390704122582999\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, fairly good pet) -> fairly good pet (3056ms)\nWhat are geckos?\tplant and animal\t-6.401378006320934\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, plant and animal) -> plant and animal (3057ms)\nWhat are geckos?\tperfectly harmless pet\t-6.411267953602\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, perfectly harmless pet) -> perfectly harmless pet (3056ms)\nWhat are geckos?\tinsect and animal\t-6.552190803636119\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, insect and animal) -> insect and animal (3152ms)\nWhat are geckos?\tanimal and bird\t-6.558544479234089\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, animal and bird) -> animal and bird (3152ms)\nWhat are geckos?\tlizard use\t-7.978013630932881\tWhat are geckos? -> $x: (geckos, instance of, $x) -> $x: (geckos, be the type of, $x) -> (2010 Gecko, is the most popular type of, lizard use) -> lizard use (3356ms)\nWhat are geckos?\tname\t-8.110016904744288\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, name) -> name (3356ms)\nWhat are geckos?\tpredator\t-8.137852577020169\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, predator) -> predator (3356ms)\nWhat are geckos?\tplace\t-8.236771620443953\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckoes, Instance Of, place) -> place (3364ms)\nWhat are geckos?\tamphibian\t-8.263026684132953\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, amphibian) -> amphibian (3364ms)\nWhat are geckos?\tword\t-8.275607258608503\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, word) -> word (3364ms)\nWhat are geckos?\tsystem\t-8.282009593877394\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, system) -> system (3364ms)\nWhat are geckos?\tshape\t-8.32745147540515\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, shape) -> shape (3364ms)\nWhat are geckos?\tbrand\t-8.333763027989463\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, brand) -> brand (3364ms)\nWhat are geckos?\tprogram\t-8.349208498256019\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, program) -> program (3371ms)\nWhat are geckos?\tobject\t-8.36916630418202\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, object) -> object (3371ms)\nWhat are geckos?\therps\t-8.395484360531205\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, herps) -> herps (3371ms)\nWhat are geckos?\tclient\t-8.403647083911464\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, client) -> client (3371ms)\nWhat are geckos?\tenemy\t-8.405085084772999\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, enemy) -> enemy (3371ms)\nWhat are geckos?\tcase\t-8.405309074065126\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, case) -> case (3371ms)\nWhat are geckos?\tcreature\t-8.406947258676437\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, creature) -> creature (3378ms)\nWhat are geckos?\tpattern\t-8.415219813342539\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, pattern) -> pattern (3378ms)\nWhat are geckos?\toption\t-8.416294526576173\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, option) -> option (3378ms)\nWhat are geckos?\texpert\t-8.426470825981593\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, expert) -> expert (3378ms)\nWhat are geckos?\tterm\t-8.431409548165028\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, term) -> term (3377ms)\nWhat are geckos?\tdevice\t-8.431837665509029\tWhat are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, device) -> device (3387ms)\nWhat are geckos?\tPets\t-8.551955602579117\tWhat are geckos? -> $x: (geckos, instance of, $x) -> $x: (geckos, be an animal that prey on, $x) -> (Geckos, is an animal that preys on, Pets) -> Pets (3387ms)\nWhat are geckos?\tWhat Is Narrative Therapy?\t-9.726542992207118\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (What Is Narrative Therapy?, Editions, What Is Narrative Therapy? (Gecko 2000)) -> What Is Narrative Therapy? (7888ms)\nWhat are geckos?\tPNG\t-9.762810344801014\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, are, PNG) -> PNG (6273ms)\nWhat are geckos?\tChatZilla\t-9.852110599509224\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (ChatZilla, are using, Gecko) -> ChatZilla (6274ms)\nWhat are geckos?\tSpiderMonkey\t-9.891313137920468\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (SpiderMonkey, is, Gecko) -> SpiderMonkey (6274ms)\nWhat are geckos?\tWebKit\t-10.039238041026316\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (WebKit, is further along than, Gecko) -> WebKit (6274ms)\nWhat are geckos?\tG is for Gecko\t-10.185999996507357\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (G is for Gecko, Editions, G is for Gecko) -> G is for Gecko (8190ms)\nWhat are geckos?\tKompoZer\t-10.207334288833328\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (KompoZer, is based on, Gecko) -> KompoZer (6274ms)\nWhat are geckos?\tAmit Lahav\t-10.314062642314948\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Amit Lahav, are, Gecko) -> Amit Lahav (6274ms)\nWhat are geckos?\tTrouble Is My Beeswax\t-10.32213540518891\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Trouble Is My Beeswax, Editions, Trouble Is My Beeswax (Chet Gecko)) -> Trouble Is My Beeswax (7888ms)\nWhat are geckos?\tbug\t-10.339478426707718\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the wild giant day geckos, will eat any kind of, bug) -> bug (3862ms)\nWhat are geckos?\tThe poison\t-10.34391789223317\tWhat are geckos? -> $x: (geckos, instance of, $x) -> $x: ($x, drug, geckos) -> (The poison, drugged, the gecko) -> The poison (3416ms)\nWhat are geckos?\tTech Briefcase\t-10.360925154000606\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, Tech Briefcase) -> Tech Briefcase (6358ms)\nWhat are geckos?\tthinking Safari\t-10.36336559008232\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (thinking Safari, was actually, Gecko) -> thinking Safari (6358ms)\nWhat are geckos?\ta new style\t-10.372923149189166\tWhat are geckos? -> what be [ gecko ] ? -> what be the definition of gecko ? -> $x: (gecko, definition, $x) -> (Gecko Fur, is our inaccurate definition for, a new style) -> a new style (3505ms)\nWhat are geckos?\ta shame\t-10.464389882409888\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a shame) -> a shame (6358ms)\nWhat are geckos?\tEvan Wells\t-10.470991677785214\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Evan Wells, Games Designed, Gex: Enter the Gecko) -> Evan Wells (7889ms)\nWhat are geckos?\tItaewon\t-10.499032726737195\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Itaewon, is, Gecko) -> Itaewon (6358ms)\nWhat are geckos?\tfreeze-dried crickets\t-10.518206196294198\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a leopard gecko, eat, freeze-dried crickets) -> freeze-dried crickets (3862ms)\nWhat are geckos?\tgreat ?\t-10.521464588578517\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, great ?) -> great ? (6358ms)\nWhat are geckos?\tWendelin Van Draanen\t-10.526081061221916\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Wendelin Van Draanen, Book editions published, Meet The Gecko) -> Wendelin Van Draanen (7889ms)\nWhat are geckos?\tNvu\t-10.53859038572337\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Nvu, is based on, Gecko) -> Nvu (6358ms)\nWhat are geckos?\ta homely\t-10.550092501937193\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a homely) -> a homely (6416ms)\nWhat are geckos?\ta no-go\t-10.553260553246226\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a no-go) -> a no-go (6416ms)\nWhat are geckos?\tMozilla\t-10.55814878976841\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, Mozilla) -> Mozilla (6416ms)\nWhat are geckos?\tpre-Mozilla foundation\t-10.584207446200669\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko..., was, pre-Mozilla foundation) -> pre-Mozilla foundation (6416ms)\nWhat are geckos?\tSupported browsers\t-10.599575812886112\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Supported browsers, are, Gecko) -> Supported browsers (6416ms)\nWhat are geckos?\tcross-platform\t-10.608047482551127\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, cross-platform) -> cross-platform (6416ms)\nWhat are geckos?\tFirefox\t-10.613094248142911\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Firefox, is, Gecko) -> Firefox (6435ms)\nWhat are geckos?\tWebkit\t-10.618860526833865\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Webkit, so is, Gecko) -> Webkit (6436ms)\nWhat are geckos?\ta cross-platform engine\t-10.638156246346453\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a cross-platform engine) -> a cross-platform engine (6436ms)\nWhat are geckos?\ta Mozilla project\t-10.662310489994073\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a Mozilla project) -> a Mozilla project (6435ms)\nWhat are geckos?\tthe 'other creatures\t-10.668369881552723\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the 'other creatures, are, geckos) -> the 'other creatures (6436ms)\nWhat are geckos?\tcarnivorous , nocturnal reptiles\t-10.673516616006708\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, carnivorous , nocturnal reptiles) -> carnivorous , nocturnal reptiles (6436ms)\nWhat are geckos?\ta world-class rendering engine\t-10.674465423237354\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a world-class rendering engine) -> a world-class rendering engine (6459ms)\nWhat are geckos?\tnon-citrus fruits\t-10.677903193419514\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Velvet Geckos, have also been known to eat, non-citrus fruits) -> non-citrus fruits (3863ms)\nWhat are geckos?\tincomplete and way\t-10.688897046490162\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, was, incomplete and way) -> incomplete and way (6460ms)\nWhat are geckos?\tn?t Android\t-10.703574138715261\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko?, is, n?t Android) -> n?t Android (6460ms)\nWhat are geckos?\tRoadkill Press\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Roadkill Press, Book editions published, Geckos) -> Roadkill Press (9854ms)\nWhat are geckos?\tGabriela Gecko\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Gabriela Gecko, Editions, Gabriela Gecko: The Story of Belonging) -> Gabriela Gecko (8882ms)\nWhat are geckos?\tHeinemann Library\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Heinemann Library, Book editions published, Geckos (Keeping Unusual Pets)) -> Heinemann Library (8882ms)\nWhat are geckos?\tCrave Entertainment\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Crave Entertainment, Games Published, Gex: Enter the Gecko) -> Crave Entertainment (9854ms)\nWhat are geckos?\tMicrosoft Windows\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Microsoft Windows, Games On This Platform, Gex: Enter the Gecko) -> Microsoft Windows (8373ms)\nWhat are geckos?\tGecko Blaster\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Gecko Blaster, Game, Gecko Blaster) -> Gecko Blaster (9854ms)\nWhat are geckos?\tCrystal Dynamics\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Crystal Dynamics, Games Developed, Gex 3: Deep Cover Gecko) -> Crystal Dynamics (9818ms)\nWhat are geckos?\tRealtime Associates\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Realtime Associates, Games Developed, Gex: Enter the Gecko) -> Realtime Associates (8259ms)\nWhat are geckos?\tFirebase Gecko\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Firebase Gecko, Edition Of, Firebase Gecko) -> Firebase Gecko (9818ms)\nWhat are geckos?\tMidway Games\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Midway Games, Game Versions Published, Gex: Enter the Gecko) -> Midway Games (8312ms)\nWhat are geckos?\tEidos Interactive\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Eidos Interactive, Game Versions Published, Gex: Enter the Gecko) -> Eidos Interactive (8882ms)\nWhat are geckos?\tGecko Tails\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Gecko Tails, Editions, Gecko Tails) -> Gecko Tails (9854ms)\nWhat are geckos?\tGratuitous Games\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Gratuitous Games, Games Developed, Gex 3: Deep Cover Gecko) -> Gratuitous Games (8312ms)\nWhat are geckos?\tPhoenix Games\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Phoenix Games, Game Versions Published, Gecko Blaster) -> Phoenix Games (8190ms)\nWhat are geckos?\tBarking Geckos\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Barking Geckos, Editions, Barking Geckos) -> Barking Geckos (9818ms)\nWhat are geckos?\tJeffrey Zwelling\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Jeffrey Zwelling, Games Designed, Gex: Enter the Gecko) -> Jeffrey Zwelling (8373ms)\nWhat are geckos?\tAlbino Gecko\t-10.714333523826804\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Albino Gecko, Edition Of, Albino Gecko) -> Albino Gecko (9854ms)\nWhat are geckos?\tXPCOM Components\t-10.721776668593737\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (XPCOM Components, is about, Gecko) -> XPCOM Components (6459ms)\nWhat are geckos?\tmore Netscape marketing hoopla\t-10.735475022745149\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, more Netscape marketing hoopla) -> more Netscape marketing hoopla (6460ms)\nWhat are geckos?\tan investment and holding company\t-10.736677223738823\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, an investment and holding company) -> an investment and holding company (6460ms)\nWhat are geckos?\ta Chinese traditional medicine\t-10.739011821051829\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a Chinese traditional medicine) -> a Chinese traditional medicine (6481ms)\nWhat are geckos?\tan Australian based company\t-10.764653595599695\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, is, an Australian based company) -> an Australian based company (6482ms)\nWhat are geckos?\tinteresting little creatures\t-10.767868403537426\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, interesting little creatures) -> interesting little creatures (6482ms)\nWhat are geckos?\ta girl\t-10.771141948135265\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a girl) -> a girl (6482ms)\nWhat are geckos?\tModerate Charts\t-10.777957514718144\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Moderate Charts, are all courtesy of, Gecko) -> Moderate Charts (6482ms)\nWhat are geckos?\ta C GTK widget\t-10.778835903514254\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko#, is, a C GTK widget) -> a C GTK widget (6482ms)\nWhat are geckos?\tChromium\t-10.784330761009697\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Chromium, was also, Gecko) -> Chromium (6543ms)\nWhat are geckos?\tMozilla?s new operating system\t-10.792063690247458\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, Mozilla?s new operating system) -> Mozilla?s new operating system (6544ms)\nWhat are geckos?\ta great rendering engine\t-10.792063690247458\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a great rendering engine) -> a great rendering engine (6544ms)\nWhat are geckos?\tsmall , harmless lizards\t-10.79376754762469\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, small , harmless lizards) -> small , harmless lizards (6544ms)\nWhat are geckos?\tLeopard and Fat-Tailed Geckos\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Leopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide), Edition Of, Leopard and Fat-Tailed Geckos) -> Leopard and Fat-Tailed Geckos (10761ms)\nWhat are geckos?\tLanguage of the geckos and other stories\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Language of the geckos and other stories, Edition Of, Language of the geckos and other stories) -> Language of the geckos and other stories (10690ms)\nWhat are geckos?\tThe Possum Always Rings Twice\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (The Possum Always Rings Twice: A Chet Gecko Mystery (Chet Gecko), Edition Of, The Possum Always Rings Twice) -> The Possum Always Rings Twice (10804ms)\nWhat are geckos?\tFarewell, My Lunchbag (Chet Gecko Mysteries\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Farewell, My Lunchbag (Chet Gecko Mysteries (Hardcover)), Edition Of, Farewell, My Lunchbag (Chet Gecko Mysteries) -> Farewell, My Lunchbag (Chet Gecko Mysteries (11078ms)\nWhat are geckos?\tSquare Enix Europe\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Square Enix Europe, Games Published, Gex 3: Deep Cover Gecko) -> Square Enix Europe (10433ms)\nWhat are geckos?\tThe Gecko: An Owner's Guide to a Happy Healthy Pet\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (The Gecko: An Owner's Guide to a Happy Healthy Pet, Edition Of, The Gecko) -> The Gecko: An Owner's Guide to a Happy Healthy Pet (11078ms)\nWhat are geckos?\tReturn of the dead gecko\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Return of the dead gecko, Editions, Return of the dead gecko) -> Return of the dead gecko (10322ms)\nWhat are geckos?\tGex: Enter the Gecko\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, game, $x) -> (Gex: Enter the Gecko, Game, Gex: Enter the Gecko) -> Gex: Enter the Gecko (10476ms)\nWhat are geckos?\tGeckos and Moths\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Geckos and Moths, Edition Of, Geckos and Moths) -> Geckos and Moths (10630ms)\nWhat are geckos?\tThe Ghost Geckos of Madagascar\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (The Ghost Geckos of Madagascar: A Further Revision of the Malagasy Leaf-Toed Geckos (Reptilia, Squamata, Gekkonidae) (Miscellaneous Publications, No 186), Edition Of, The Ghost Geckos of Madagascar) -> The Ghost Geckos of Madagascar (9970ms)\nWhat are geckos?\tGeckos and their Relatives (Dragons Series)\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckos and their Relatives (Dragons Series), Edition Of, Geckos and their Relatives) -> Geckos and their Relatives (Dragons Series) (10690ms)\nWhat are geckos?\tGo To Sleep, Gecko!\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Go To Sleep, Gecko!: A Balinese Folktale, Edition Of, Go To Sleep, Gecko!) -> Go To Sleep, Gecko! (10271ms)\nWhat are geckos?\tFrom gecko feet to sticky tape\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (From gecko feet to sticky tape, Edition Of, From gecko feet to sticky tape) -> From gecko feet to sticky tape (10761ms)\nWhat are geckos?\tRight from the Gecko (Reigning Cats & Dogs Mysteries)\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Right from the Gecko (Reigning Cats & Dogs Mysteries), Edition Of, Right from the Gecko) -> Right from the Gecko (Reigning Cats & Dogs Mysteries) (10804ms)\nWhat are geckos?\tGo To Sleep, Gecko!: A Balinese Folktale\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Go To Sleep, Gecko!, Editions, Go To Sleep, Gecko!: A Balinese Folktale) -> Go To Sleep, Gecko!: A Balinese Folktale (10804ms)\nWhat are geckos?\tGeckos and their Relatives\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Geckos and their Relatives (Dragons Series), Edition Of, Geckos and their Relatives) -> Geckos and their Relatives (10761ms)\nWhat are geckos?\tny the Tokay gecko\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (To ny the Tokay gecko, Edition Of, ny the Tokay gecko) -> ny the Tokay gecko (11118ms)\nWhat are geckos?\tTo ny the Tokay gecko\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (To ny the Tokay gecko, Edition Of, ny the Tokay gecko) -> To ny the Tokay gecko (10630ms)\nWhat are geckos?\tMurder, my tweet\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Murder, my tweet: from the tattered casebook of Chet Gecko, private eye, Edition Of, Murder, my tweet) -> Murder, my tweet (10322ms)\nWhat are geckos?\tRemarks on some geckos from Southwest Asia\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Remarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes, Edition Of, Remarks on some geckos from Southwest Asia) -> Remarks on some geckos from Southwest Asia (10065ms)\nWhat are geckos?\tThe Gecko and Sticky in-- the villain's lair\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (The Gecko and Sticky in-- the villain's lair, Edition Of, The Gecko and Sticky in-- the villain's lair) -> The Gecko and Sticky in-- the villain's lair (11078ms)\nWhat are geckos?\tThe Guide to Owning a Leopard Gecko\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (The Guide to Owning a Leopard Gecko, Edition Of, The Guide to Owning a Leopard Gecko) -> The Guide to Owning a Leopard Gecko (10433ms)\nWhat are geckos?\tGeckos: facts & advice on care and breeding\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckos: facts & advice on care and breeding, Edition Of, Geckos) -> Geckos: facts & advice on care and breeding (10629ms)\nWhat are geckos?\tRemarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Remarks on some geckos from Southwest Asia, Editions, Remarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes) -> Remarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes (10630ms)\nWhat are geckos?\tBaby Gecko's colors\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Baby Gecko's colors, Edition Of, Baby Gecko's colors) -> Baby Gecko's colors (10690ms)\nWhat are geckos?\tMeet The Gecko\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Meet the Gecko (Shredderman (Paperback)), Edition Of, Meet The Gecko) -> Meet The Gecko (11116ms)\nWhat are geckos?\tGeckos: everything about selection, care, nutrition, diseases, breeding, and behavior\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckos: everything about selection, care, nutrition, diseases, breeding, and behavior, Edition Of, Geckos) -> Geckos: everything about selection, care, nutrition, diseases, breeding, and behavior (10105ms)\nWhat are geckos?\tPlayStation\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (PlayStation, Games On This Platform, Gex: Enter the Gecko) -> PlayStation (10629ms)\nWhat are geckos?\tDwarf geckos, rattlesnakes, and other reptiles\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Dwarf geckos, rattlesnakes, and other reptiles, Editions, Dwarf geckos, rattlesnakes, and other reptiles) -> Dwarf geckos, rattlesnakes, and other reptiles (10690ms)\nWhat are geckos?\tGecko Hide and Seek\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Gecko Hide and Seek, Edition Of, Gecko Hide and Seek) -> Gecko Hide and Seek (11078ms)\nWhat are geckos?\tThe Gecko's Foot: Bio-inspiration\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (The gecko's foot : bio-inspiration : engineered from nature, Edition Of, The Gecko's Foot: Bio-inspiration) -> The Gecko's Foot: Bio-inspiration (10761ms)\nWhat are geckos?\tGlen A. Schofield\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Glen A. Schofield, Games Designed, Gex: Enter the Gecko) -> Glen A. Schofield (11116ms)\nWhat are geckos?\tHow the Gecko Lost His Tail\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (How the Gecko Lost His Tail, Edition Of, How the Gecko Lost His Tail) -> How the Gecko Lost His Tail (11116ms)\nWhat are geckos?\tBreeding and Keeping Geckos\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Breeding and Keeping Geckos, Edition Of, Breeding and Keeping Geckos) -> Breeding and Keeping Geckos (11116ms)\nWhat are geckos?\tGeckoes: Biology, Husbandry, and Reproduction\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckoes: Biology, Husbandry, and Reproduction, Edition Of, Geckoes) -> Geckoes: Biology, Husbandry, and Reproduction (10690ms)\nWhat are geckos?\tBig Nap (Chet Gecko Mysteries\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Big Nap (Chet Gecko Mysteries, Editions, Big Nap (Chet Gecko Mysteries (Paperback))) -> Big Nap (Chet Gecko Mysteries (10477ms)\nWhat are geckos?\tBig Nap (Chet Gecko Mysteries (Paperback))\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Big Nap (Chet Gecko Mysteries, Editions, Big Nap (Chet Gecko Mysteries (Paperback))) -> Big Nap (Chet Gecko Mysteries (Paperback)) (10690ms)\nWhat are geckos?\tGive My Regrets to Broadway\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Give My Regrets to Broadway: A Chet Gecko Mystery (Chet Gecko), Edition Of, Give My Regrets to Broadway) -> Give My Regrets to Broadway (10188ms)\nWhat are geckos?\tCrested Geckos and Relatives\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Crested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides), Edition Of, Crested Geckos and Relatives) -> Crested Geckos and Relatives (10271ms)\nWhat are geckos?\tChet Gecko-Private Eye\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Chet Gecko-Private Eye, Editions, Chet Gecko-Private Eye) -> Chet Gecko-Private Eye (10322ms)\nWhat are geckos?\tMystery of Mr. Nice\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Mystery of Mr. Nice (Chet Gecko Mysteries), Edition Of, Mystery of Mr. Nice) -> Mystery of Mr. Nice (11116ms)\nWhat are geckos?\tMoki the Gecko's best Christmas ever\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Moki the Gecko's best Christmas ever, Editions, Moki the Gecko's best Christmas ever) -> Moki the Gecko's best Christmas ever (11078ms)\nWhat are geckos?\tGeckos (Keeping Unusual Pets)\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckos (Keeping Unusual Pets), Edition Of, Geckos) -> Geckos (Keeping Unusual Pets) (10804ms)\nWhat are geckos?\tMeet the Gecko (Shredderman Series)\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Meet The Gecko, Editions, Meet the Gecko (Shredderman Series)) -> Meet the Gecko (Shredderman Series) (10761ms)\nWhat are geckos?\tGecko (Caring for Your Pet)\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Gecko (Caring for Your Pet), Edition Of, Gecko) -> Gecko (Caring for Your Pet) (11078ms)\nWhat are geckos?\tRight from the Gecko (Wheeler Large Print Book Series)\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Right from the Gecko (Wheeler Large Print Book Series), Edition Of, Right from the Gecko) -> Right from the Gecko (Wheeler Large Print Book Series) (10065ms)\nWhat are geckos?\tRight from the Gecko\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Right from the Gecko (Reigning Cats & Dogs Mysteries), Edition Of, Right from the Gecko) -> Right from the Gecko (11116ms)\nWhat are geckos?\tFarewell, My Lunchbag (Chet Gecko Mysteries (Hardcover))\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Farewell, My Lunchbag (Chet Gecko Mysteries (Hardcover)), Edition Of, Farewell, My Lunchbag (Chet Gecko Mysteries) -> Farewell, My Lunchbag (Chet Gecko Mysteries (Hardcover)) (10357ms)\nWhat are geckos?\tLeopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide)\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Leopard and Fat-Tailed Geckos, Editions, Leopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide)) -> Leopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide) (10629ms)\nWhat are geckos?\tCrested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides)\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Crested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides), Edition Of, Crested Geckos and Relatives) -> Crested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides) (10476ms)\nWhat are geckos?\tLeopard Geckos For Dummies\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Leopard Geckos For Dummies (For Dummies (Pets)), Edition Of, Leopard Geckos For Dummies) -> Leopard Geckos For Dummies (10271ms)\nWhat are geckos?\tMeet the Gecko (Shredderman (Paperback))\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Meet The Gecko, Editions, Meet the Gecko (Shredderman (Paperback))) -> Meet the Gecko (Shredderman (Paperback)) (10357ms)\nWhat are geckos?\tGame Boy Color\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Game Boy Color, Games On This Platform, Gex: Enter the Gecko) -> Game Boy Color (10433ms)\nWhat are geckos?\tSurf gecko to the rescue!\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Surf gecko to the rescue!, Editions, Surf gecko to the rescue!) -> Surf gecko to the rescue! (10804ms)\nWhat are geckos?\tHow to Recycle a Dead Gecko\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (How to Recycle a Dead Gecko, Editions, How to Recycle a Dead Gecko) -> How to Recycle a Dead Gecko (11116ms)\nWhat are geckos?\tGabriela Gecko: The Story of Belonging\t-10.798609335574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Gabriela Gecko, Editions, Gabriela Gecko: The Story of Belonging) -> Gabriela Gecko: The Story of Belonging (10033ms)\nWhat are geckos?\tan entirely new rendering engine\t-10.81347722560115\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, was, an entirely new rendering engine) -> an entirely new rendering engine (6544ms)\nWhat are geckos?\ta feeding\t-10.82089643577265\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (these geckos, will eat at, a feeding) -> a feeding (3862ms)\nWhat are geckos?\ta novel instrument concept\t-10.836273590027531\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a novel instrument concept) -> a novel instrument concept (6543ms)\nWhat are geckos?\teach code engine release\t-10.861841074672679\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (each code engine release, was named, Gecko) -> each code engine release (6575ms)\nWhat are geckos?\ta bit\t-10.87093864004476\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, was, a bit) -> a bit (6575ms)\nWhat are geckos?\tthe Leopard Gecko\t-10.872463388420236\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, the Leopard Gecko) -> the Leopard Gecko (6576ms)\nWhat are geckos?\ta fly today\t-10.881507940247962\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (my tiny gecko, eat, a fly today) -> a fly today (3863ms)\nWhat are geckos?\t3-9 grams\t-10.907405272666152\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (gecko, is, 3-9 grams) -> 3-9 grams (6575ms)\nWhat are geckos?\ta cricket\t-10.914496190064993\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a gecko, eat, a cricket) -> a cricket (3863ms)\nWhat are geckos?\tDOMContentLoaded event\t-10.923274014938823\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (DOMContentLoaded event, is in, Gecko) -> DOMContentLoaded event (6576ms)\nWhat are geckos?\tPapua New Guinea\t-10.945638529398916\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (gecko, has been discovered in, Papua New Guinea) -> Papua New Guinea (6575ms)\nWhat are geckos?\tfruit baby food\t-10.946624620344117\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Crested Geckos, will also eat, fruit baby food) -> fruit baby food (3875ms)\nWhat are geckos?\tFinally the above implementation\t-10.951145060633921\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Finally the above implementation, is for, Gecko) -> Finally the above implementation (6607ms)\nWhat are geckos?\tfive mosquitoes or termites\t-10.955680811063997\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (A small gecko, can eat four to, five mosquitoes or termites) -> five mosquitoes or termites (3876ms)\nWhat are geckos?\tJan\t-10.962795504779468\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Jan, am hoping, gecko) -> Jan (6607ms)\nWhat are geckos?\tthe Mozilla redering engine\t-10.96536649106107\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the Mozilla redering engine, IS, Gecko) -> the Mozilla redering engine (6607ms)\nWhat are geckos?\tthe DDT-poisoned bugs\t-10.970981814637671\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the DDT-poisoned bugs, were eaten by, geckoes) -> the DDT-poisoned bugs (6607ms)\nWhat are geckos?\ta powerful Lung tonic\t-10.986587228198863\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a powerful Lung tonic) -> a powerful Lung tonic (6607ms)\nWhat are geckos?\tnature\t-10.998079796936494\tWhat are geckos? -> $x: (geckos, instance of, $x) -> $x: (geckos, be a by, $x) -> (( Apparently geckos, are a pretty funny lot by, nature) -> nature (3415ms)\nWhat are geckos?\tSVG images\t-11.002820756118066\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (SVG images, is extremely restricted in, Gecko) -> SVG images (6607ms)\nWhat are geckos?\ta GNOME Web browser\t-11.004489876574342\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (a GNOME Web browser, is based on, Gecko) -> a GNOME Web browser (6627ms)\nWhat are geckos?\ta very lightweight and fast CMS\t-11.008026674881023\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a very lightweight and fast CMS) -> a very lightweight and fast CMS (6627ms)\nWhat are geckos?\tthe Mozilla Firefox rendering engine\t-11.046146469497042\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, the Mozilla Firefox rendering engine) -> the Mozilla Firefox rendering engine (6627ms)\nWhat are geckos?\tNeptune\t-11.053450051029602\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Neptune, would be better suited to, Gecko) -> Neptune (6627ms)\nWhat are geckos?\tTEC Edmonton\t-11.099178588343454\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (TEC Edmonton, is an approved service provider for, GECKO) -> TEC Edmonton (6627ms)\nWhat are geckos?\toverripe fruit and crickets\t-11.099869659852613\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Crested geckos, eat, overripe fruit and crickets) -> overripe fruit and crickets (3875ms)\nWhat are geckos?\teasier cleaning\t-11.116382968143068\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, easier cleaning) -> easier cleaning (6644ms)\nWhat are geckos?\ta childish brat\t-11.119232637686665\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a childish brat) -> a childish brat (6645ms)\nWhat are geckos?\thigh volumes\t-11.14491671864266\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Leopard geckos, can eat, high volumes) -> high volumes (3875ms)\nWhat are geckos?\tsized insects\t-11.155527113562703\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The gecko, eats a variety of appropriately, sized insects) -> sized insects (3875ms)\nWhat are geckos?\ta powerful substance\t-11.159970307287312\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a powerful substance) -> a powerful substance (6644ms)\nWhat are geckos?\tSeaMonkey 1.0.7\t-11.168170449453815\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (SeaMonkey 1.0.7, is still, Gecko) -> SeaMonkey 1.0.7 (6646ms)\nWhat are geckos?\ta little bigger\t-11.219211586695206\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (gecko, is, a little bigger) -> a little bigger (6646ms)\nWhat are geckos?\ta protected species\t-11.231590354417444\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, a protected species) -> a protected species (6662ms)\nWhat are geckos?\tIan Oeschger\t-11.317249094650919\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Ian Oeschger, is about, Gecko) -> Ian Oeschger (6662ms)\nWhat are geckos?\tArtist\t-11.322960954918788\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Artist, is, Gecko) -> Artist (6662ms)\nWhat are geckos?\ta 22' Glacier Bay Catamaran\t-11.345798577882599\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a 22' Glacier Bay Catamaran) -> a 22' Glacier Bay Catamaran (6662ms)\nWhat are geckos?\ta great job\t-11.410422155905524\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Gecko Adventures, did, a great job) -> a great job (6662ms)\nWhat are geckos?\ta 25 kHz PWM frequency\t-11.438703930277779\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a 25 kHz PWM frequency) -> a 25 kHz PWM frequency (6662ms)\nWhat are geckos?\tFirefox 2.0\t-11.44489328778775\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Firefox 2.0, will be based on, Gecko) -> Firefox 2.0 (6680ms)\nWhat are geckos?\tsmall geckos\t-11.45261753889639\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Logged Michele even big geckos, will eat, small geckos) -> small geckos (4142ms)\nWhat are geckos?\tscientific study\t-11.485022384168468\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, has been the focus of, scientific study) -> scientific study (6679ms)\nWhat are geckos?\tThe MIT2 chip\t-11.49880959303526\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (The MIT2 chip, can only be used with, Gecko) -> The MIT2 chip (6680ms)\nWhat are geckos?\tcrickets and mealworms\t-11.55677201806567\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the viper gecko, can eat, crickets and mealworms) -> crickets and mealworms (4142ms)\nWhat are geckos?\tenough the insects\t-11.570247890132453\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (enough the insects, were consumed by, geckoes) -> enough the insects (6680ms)\nWhat are geckos?\tMary Richardson\t-11.5977632935348\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (The gecko piece, was done by, Mary Richardson) -> Mary Richardson (6679ms)\nWhat are geckos?\ta solitary pet\t-11.604061507455832\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (The Pictus Gecko, also does well as, a solitary pet) -> a solitary pet (6696ms)\nWhat are geckos?\tjust cute little lizards\t-11.623409025402443\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (geckos, are, just cute little lizards) -> just cute little lizards (6696ms)\nWhat are geckos?\t10 holes\t-11.678736692399646\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has about, 10 holes) -> 10 holes (6696ms)\nWhat are geckos?\ta character\t-11.692218322160414\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Seth Gecko, was going to be, a character) -> a character (4339ms)\nWhat are geckos?\tSVG.\t-11.700674267069253\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, already has decent support for, SVG.) -> SVG. (6696ms)\nWhat are geckos?\tbeetles and fishmoths\t-11.722116983162529\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (lizards and geckos, eat, beetles and fishmoths) -> beetles and fishmoths (4142ms)\nWhat are geckos?\ta new mobile operating system\t-11.72706856622126\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Gecko?, is going to be, a new mobile operating system) -> a new mobile operating system (4339ms)\nWhat are geckos?\t?Shock Shedding?\t-11.7425119479913\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, has is known as, ?Shock Shedding?) -> ?Shock Shedding? (6696ms)\nWhat are geckos?\tmulti-range selections\t-11.747092087770767\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, internally has crazy bugs with, multi-range selections) -> multi-range selections (6696ms)\nWhat are geckos?\tone of the most popular lizards\t-11.769580943347174\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (gecko, is, one of the most popular lizards) -> one of the most popular lizards (6696ms)\nWhat are geckos?\t10 gallon\t-11.781795567092317\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Leopard geckos, also do quite well in, 10 gallon) -> 10 gallon (6715ms)\nWhat are geckos?\tLoungin? Lizard Chair\t-11.786081386060136\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Gecko?s Pet Specific Item, is going to be, Loungin? Lizard Chair) -> Loungin? Lizard Chair (4339ms)\nWhat are geckos?\tCool ? Beccary February 9th\t-11.795708620343307\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, Cool ? Beccary February 9th) -> Cool ? Beccary February 9th (6715ms)\nWhat are geckos?\tinsects , baby mice and baby rats\t-11.821296137490432\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The Tokay Gecko, will eat, insects , baby mice and baby rats) -> insects , baby mice and baby rats (4142ms)\nWhat are geckos?\ta new interface\t-11.839563352417041\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has been working hard on, a new interface) -> a new interface (6715ms)\nWhat are geckos?\tprime time\t-11.855617044885237\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Gecko, does n?t seem quite ready for, prime time) -> prime time (6715ms)\nWhat are geckos?\tTexas\t-11.864478371442965\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (the Gecko, may be busy doing the two-step in, Texas) -> Texas (6715ms)\nWhat are geckos?\tthe car\t-11.865540378687676\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the car, is, Gecko) -> the car (6715ms)\nWhat are geckos?\tJSCSSP\t-11.868765898022119\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (JSCSSP, are also adapted from, Gecko) -> JSCSSP (6715ms)\nWhat are geckos?\ta book blog tour beginning\t-11.868997002194998\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Geckos, is going on, a book blog tour beginning) -> a book blog tour beginning (4339ms)\nWhat are geckos?\tViagra\t-11.894068893737435\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have also been displaced by, Viagra) -> Viagra (6787ms)\nWhat are geckos?\tthe core\t-11.899163133464015\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, the core) -> the core (6787ms)\nWhat are geckos?\tXML\t-11.900380532013653\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Netscape Gecko, do support, XML) -> XML (6787ms)\nWhat are geckos?\tfun\t-11.93010319844415\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, fun) -> fun (6787ms)\nWhat are geckos?\tn?t support counters\t-11.961684315413045\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Gecko, did, n?t support counters) -> n?t support counters (6787ms)\nWhat are geckos?\tsmall lizards\t-11.984093002346107\tWhat are geckos? -> what [ be gecko ] ? -> what be know be gecko ? -> $x: ($x, be know be, gecko) -> (small lizards, are also known as, day geckos) -> small lizards (6787ms)\nWhat are geckos?\tso great\t-11.985546198261464\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, so great) -> so great (6787ms)\nWhat are geckos?\tindependent travelers\t-12.003268544949588\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (GeckoGo, is the go-to source for, independent travelers) -> independent travelers (4339ms)\nWhat are geckos?\tresponseXML\t-12.008611342523665\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, had fixed, responseXML) -> responseXML (6807ms)\nWhat are geckos?\tRon Fearing?s work\t-12.016416472190556\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, has inspired, Ron Fearing?s work) -> Ron Fearing?s work (6807ms)\nWhat are geckos?\tXPCOM and P/Invoke\t-12.016931976594\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko #, had to revert to, XPCOM and P/Invoke) -> XPCOM and P/Invoke (6807ms)\nWhat are geckos?\ta cave\t-12.023191850875296\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (gecko, has adapted to living in, a cave) -> a cave (6807ms)\nWhat are geckos?\tGoogle?s Android or Apple?s iOS\t-12.031143685245686\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Gecko project, will go after, Google?s Android or Apple?s iOS) -> Google?s Android or Apple?s iOS (4339ms)\nWhat are geckos?\tAnti-Tumor Effects\t-12.035137303472627\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, Have, Anti-Tumor Effects) -> Anti-Tumor Effects (6807ms)\nWhat are geckos?\tthe Ca\t-12.052821242303738\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (# @BensGeckos, Go to, the Ca) -> the Ca (6807ms)\nWhat are geckos?\ta new division\t-12.073157793040433\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has now set up, a new division) -> a new division (6807ms)\nWhat are geckos?\tthe HTML\t-12.116910872900249\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has an extra layer between, the HTML) -> the HTML (6825ms)\nWhat are geckos?\ta shower\t-12.122221992653191\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have, a shower) -> a shower (6826ms)\nWhat are geckos?\ta day-night light cycle\t-12.125325475834966\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (the Crested Gecko, does need, a day-night light cycle) -> a day-night light cycle (6826ms)\nWhat are geckos?\tmuch sophistication and support\t-12.129746460542744\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Gecko, does n?t hold as, much sophistication and support) -> much sophistication and support (6826ms)\nWhat are geckos?\tgood standards compliance\t-12.13035185751226\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, good standards compliance) -> good standards compliance (6826ms)\nWhat are geckos?\tGeico\t-12.13357781189588\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (the Gecko, do for, Geico) -> Geico (6825ms)\nWhat are geckos?\tan adhesive-less tape\t-12.139408048232141\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have yielded, an adhesive-less tape) -> an adhesive-less tape (6825ms)\nWhat are geckos?\tsetae--microscopic hairs\t-12.141176473736628\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Geckos, have millions of, setae--microscopic hairs) -> setae--microscopic hairs (6844ms)\nWhat are geckos?\ta totally different graphical user interface\t-12.141732976471978\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, a totally different graphical user interface) -> a totally different graphical user interface (6844ms)\nWhat are geckos?\tan impression\t-12.14662434573648\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (A cheeky gecko, does, an impression) -> an impression (6844ms)\nWhat are geckos?\tone fatal flaw\t-12.155323614261059\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, currently has, one fatal flaw) -> one fatal flaw (6844ms)\nWhat are geckos?\ta greater risk\t-12.16213789192184\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (a leopard gecko, does is taking, a greater risk) -> a greater risk (6844ms)\nWhat are geckos?\tfamous for their ability\t-12.162560443844146\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, famous for their ability) -> famous for their ability (6844ms)\nWhat are geckos?\tunique dry adhesive fibers\t-12.165934009181102\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Geckos, have, unique dry adhesive fibers) -> unique dry adhesive fibers (6844ms)\nWhat are geckos?\tthe crowd\t-12.170146453378717\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the crowd, be like, gecko) -> the crowd (6844ms)\nWhat are geckos?\tharmless to humans\t-12.171057593517064\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, harmless to humans) -> harmless to humans (6862ms)\nWhat are geckos?\ta look\t-12.17527386184882\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have, a look) -> a look (6862ms)\nWhat are geckos?\tremote administration and management\t-12.18803893271999\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Blue Gecko, does, remote administration and management) -> remote administration and management (6862ms)\nWhat are geckos?\tthe ADD show\t-12.192524485555026\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Topo and Gecko, do, the ADD show) -> the ADD show (6862ms)\nWhat are geckos?\tthe web\t-12.195733889044924\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the web, can be run through, Gecko) -> the web (6862ms)\nWhat are geckos?\ta variety\t-12.19737878538771\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Flying Geckos, do well with, a variety) -> a variety (6862ms)\nWhat are geckos?\tGecko\t-12.201661060719328\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (the Go Gecko brand, Go, Gecko) -> Gecko (6862ms)\nWhat are geckos?\tas impenetrable and bloated\t-12.202166278960085\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, as impenetrable and bloated) -> as impenetrable and bloated (6862ms)\nWhat are geckos?\tsuperb grasping abilities\t-12.20639288935017\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Geckos, have, superb grasping abilities) -> superb grasping abilities (6880ms)\nWhat are geckos?\tthe WebServer location\t-12.224355617612861\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (an aside the gecko browsers, go to, the WebServer location) -> the WebServer location (6880ms)\nWhat are geckos?\ta gas geyser\t-12.224355617612861\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, a gas geyser) -> a gas geyser (6880ms)\nWhat are geckos?\ta really buggy test implementation\t-12.23103696243322\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, a really buggy test implementation) -> a really buggy test implementation (6880ms)\nWhat are geckos?\tmore de-facto quirks\t-12.235457947140999\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has had to put up with, more de-facto quirks) -> more de-facto quirks (6880ms)\nWhat are geckos?\tGinseng\t-12.241828809590327\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Ginseng, is used with, Gecko) -> Ginseng (6880ms)\nWhat are geckos?\tCretaceogekko\t-12.245599523816267\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (gecko, has been named, Cretaceogekko) -> Cretaceogekko (6940ms)\nWhat are geckos?\tthe week\t-12.249370048822879\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the week, was, Gecko) -> the week (6940ms)\nWhat are geckos?\tnew and used books\t-12.255302563269602\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has a vast range of, new and used books) -> new and used books (6940ms)\nWhat are geckos?\ta rapid release cycle\t-12.263752280892154\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has successfully transitioned to, a rapid release cycle) -> a rapid release cycle (6940ms)\nWhat are geckos?\ta friend\t-12.27165139172113\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, enjoyed having, a friend) -> a friend (6940ms)\nWhat are geckos?\tLiz-ard Minnelli\t-12.280362248818234\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (A cheeky gecko, does an impression of, Liz-ard Minnelli) -> Liz-ard Minnelli (6940ms)\nWhat are geckos?\tElephant\t-12.285659822869402\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Gecko, goes to, Elephant) -> Elephant (6940ms)\nWhat are geckos?\tavailable for adoption\t-12.297288895961426\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, available for adoption) -> available for adoption (7023ms)\nWhat are geckos?\tGEICO\t-12.298781831208425\tWhat are geckos? -> what [ be gecko ] ? -> what be know be gecko ? -> $x: ($x, be know be, gecko) -> (GEICO, is known for, its gecko mascot) -> GEICO (7023ms)\nWhat are geckos?\ta year\t-12.316745530604596\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (The Geckos, have now gone more than, a year) -> a year (7023ms)\nWhat are geckos?\ta component\t-12.324671293531583\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (a component, can be used in, Gecko) -> a component (7023ms)\nWhat are geckos?\t2 % or lower\t-12.348936605084909\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, had a market share of, 2 % or lower) -> 2 % or lower (7023ms)\nWhat are geckos?\ta popular choice in pet shops\t-12.354840395237158\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, a popular choice in pet shops) -> a popular choice in pet shops (7023ms)\nWhat are geckos?\tRussian scientists\t-12.361645049956243\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Russian scientists, are training, geckos) -> Russian scientists (7023ms)\nWhat are geckos?\ta week\t-12.370681586201322\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (The leopard gecko, went over, a week) -> a week (7023ms)\nWhat are geckos?\tThe exception\t-12.395682784345816\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (The exception, is, Gecko) -> The exception (7047ms)\nWhat are geckos?\t20 A current limit\t-12.399400430502208\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has a 0 to, 20 A current limit) -> 20 A current limit (7047ms)\nWhat are geckos?\tan app store\t-12.404970751535144\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Boot 2 Gecko, does have, an app store) -> an app store (7047ms)\nWhat are geckos?\ttraditional 3-D games\t-12.412663384625542\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (the Gecko, does, traditional 3-D games) -> traditional 3-D games (7046ms)\nWhat are geckos?\tsensitive skin\t-12.426789911187601\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have, sensitive skin) -> sensitive skin (7046ms)\nWhat are geckos?\ta 6.7 % market share\t-12.439189345574503\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, a 6.7 % market share) -> a 6.7 % market share (7047ms)\nWhat are geckos?\tvertical pupils\t-12.440937104414328\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, usually have, vertical pupils) -> vertical pupils (7046ms)\nWhat are geckos?\tleopard geckos\t-12.444896698049671\tWhat are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (leopard geckos, are descendants of, geckos) -> leopard geckos (7047ms)\nWhat are geckos?\tthe bugs\t-12.515296178030297\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the geckos, eat, the bugs) -> the bugs (4142ms)\nWhat are geckos?\ta lot\t-12.709871457589141\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Ring Tailed Gecko, eats, a lot) -> a lot (4142ms)\nWhat are geckos?\tcockroaches\t-12.760557660194308\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, eat, cockroaches) -> cockroaches (4157ms)\nWhat are geckos?\tmoths\t-12.78443095653539\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, eat, moths) -> moths (4157ms)\nWhat are geckos?\tthe flies , mosquitoes and spiders\t-12.790239555483765\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The geckos, eat, the flies , mosquitoes and spiders) -> the flies , mosquitoes and spiders (4157ms)\nWhat are geckos?\tfruit\t-12.86842977138776\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (My geckos, eat, fruit) -> fruit (4159ms)\nWhat are geckos?\tcats\t-12.871402669437984\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, were eaten by, cats) -> cats (4157ms)\nWhat are geckos?\tinsects\t-12.911755484766736\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Leopard Geckos, eat, insects) -> insects (4157ms)\nWhat are geckos?\tcrickets\t-12.933860408305625\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a leopard gecko, eat dried, crickets) -> crickets (4171ms)\nWhat are geckos?\tthe moths\t-12.938316083458822\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (any geckos, loved to eat, the moths) -> the moths (4171ms)\nWhat are geckos?\tmosquitoes\t-12.940934004918986\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Geckos, eat, mosquitoes) -> mosquitoes (4171ms)\nWhat are geckos?\tbugs\t-12.942637809593924\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The house gecko, eats, bugs) -> bugs (4171ms)\nWhat are geckos?\tthe letter\t-12.993955943730487\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the geckos, eat just, the letter) -> the letter (4171ms)\nWhat are geckos?\tthe skin\t-13.000701909380396\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Some geckos, eat, the skin) -> the skin (4184ms)\nWhat are geckos?\tthe flies\t-13.012524121664988\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (gecko lizards, became sick from eating, the flies) -> the flies (4184ms)\nWhat are geckos?\tthe roaches\t-13.02938844222226\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the gecko, eats, the roaches) -> the roaches (4184ms)\nWhat are geckos?\tthe supplement\t-13.036462038835623\tWhat are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the gecko, eats, the supplement) -> the supplement (4184ms)\nWhat was the percentage of turnout for the election?\t3,935 voters\t-15.05950333661968\tWhat was the percentage of turnout for the election? -> what be the percentage of [ turnout for the election ] ? -> what be too turnout for the election ? -> what be turnout for the election ? -> $x: ($x, be turnout for, the election) -> $x: ($x, turnout for, election) -> (3,935 voters, is a pretty good turnout for, a special election) -> 3,935 voters (4123ms)\nWhom did he marry?\tChartered Accountant\t-9.972841775612254\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Nimesh N. KampaniHe, Instance Of, Chartered Accountant) -> Chartered Accountant (4444ms)\nWhom did he marry?\tMember of Parliament\t-10.316728396187452\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. H-E, Instance Of, Member of Parliament) -> Member of Parliament (4445ms)\nWhom did he marry?\ttalented person\t-10.414033940380115\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Ambassador H.E Mr. Ajay Malhotra, Instance Of, talented person) -> talented person (4445ms)\nWhom did he marry?\taggressive person\t-10.457466290426146\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Ranjan kumar-He, Instance Of, aggressive person) -> aggressive person (4445ms)\nWhom did he marry?\texcellent candidate\t-10.462854687562421\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. HeJtz, Instance Of, excellent candidate) -> excellent candidate (4445ms)\nWhom did he marry?\toutstanding rider\t-10.462964260225597\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Whoever-he-is, Instance Of, outstanding rider) -> outstanding rider (4566ms)\nWhom did he marry?\tsuccessful artist\t-10.463805090317969\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Johnson not only teaches-he, Instance Of, successful artist) -> successful artist (4566ms)\nWhom did he marry?\tgreat teacher\t-10.479880661005673\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr Driscoll.He, Instance Of, great teacher) -> great teacher (4566ms)\nWhom did he marry?\ttall slender young man\t-11.063590810886854\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Hynes-He, Instance Of, tall slender young man) -> tall slender young man (4566ms)\nWhom did he marry?\tMGMT overexpressor\t-11.063590810886854\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (HeLa MR5-2, Instance Of, MGMT overexpressor) -> MGMT overexpressor (4582ms)\nWhom did he marry?\tmember of First Batist\t-11.063590810886854\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Knew Mr. Pate very well.He, Instance Of, member of First Batist) -> member of First Batist (4566ms)\nWhom did he marry?\towner of a small shop\t-11.063590810886854\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr.Charrington-He, Instance Of, owner of a small shop) -> owner of a small shop (4566ms)\nWhom did he marry?\tgood man\t-11.098836229064789\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr SECKER ?He, Instance Of, good man) -> good man (4582ms)\nWhom did he marry?\thorsecoat.\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr WrinklesSon of Mai Lei & ArcherHe, Instance Of, horsecoat.) -> horsecoat. (4582ms)\nWhom did he marry?\tenterprising, public spirited citizen\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. He.il, Instance Of, enterprising, public spirited citizen) -> enterprising, public spirited citizen (4610ms)\nWhom did he marry?\tpriest of the Buddhist and very hottest music fan\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Thanks for Mr.GUTS.He, Instance Of, priest of the Buddhist and very hottest music fan) -> priest of the Buddhist and very hottest music fan (4582ms)\nWhom did he marry?\tsana-rail operator\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. and Mrs. Richard Kyras-he, Instance Of, sana-rail operator) -> sana-rail operator (4582ms)\nWhom did he marry?\ttall rich owner of thorn field\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr.Rochester-He, Instance Of, tall rich owner of thorn field) -> tall rich owner of thorn field (4611ms)\nWhom did he marry?\trespectable old man\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Yang-he, Instance Of, respectable old man) -> respectable old man (4610ms)\nWhom did he marry?\treceiver of Australia Postgraduate Award\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr Michael Ya-He Li, Instance Of, receiver of Australia Postgraduate Award) -> receiver of Australia Postgraduate Award (4582ms)\nWhom did he marry?\temployee of Asbury Automotive Group\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr...He, Instance Of, employee of Asbury Automotive Group) -> employee of Asbury Automotive Group (4611ms)\nWhom did he marry?\tcousin of David W. Haas\t-11.108484766321995\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (MrHe, Instance Of, cousin of David W. Haas) -> cousin of David W. Haas (4610ms)\nWhom did he marry?\tcreepy little man\t-11.120235527429582\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr Motto!..He, Instance Of, creepy little man) -> creepy little man (4610ms)\nWhom did he marry?\tmiserable man\t-11.121387562712119\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (RIP Mr. Knibbs.He, Instance Of, miserable man) -> miserable man (4626ms)\nWhom did he marry?\thefty guy\t-11.122193987409895\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Chicken WingHe, Instance Of, hefty guy) -> hefty guy (4626ms)\nWhom did he marry?\twise man\t-11.132179556888428\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Second Mr. Moor again.He, Instance Of, wise man) -> wise man (4626ms)\nWhom did he marry?\tgreat man\t-11.142191661542864\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Ex-Mrs PresleyHe, Instance Of, great man) -> great man (4626ms)\nWhom did he marry?\tguy\t-11.145456367005778\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr Gray-He, Instance Of, guy) -> guy (4626ms)\nWhom did he marry?\tChemical Engineer having 36 year of experience\t-11.527310012582484\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. N. P. GhuwalewalaHe, Instance Of, Chemical Engineer having 36 year of experience) -> Chemical Engineer having 36 year of experience (4626ms)\nWhom did he marry?\tprivate company\t-11.65237466800248\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Hes Children Accessory, Instance Of, private company) -> private company (4692ms)\nWhom did he marry?\tFrench ambassador\t-11.671763010813887\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (H.e. mr. laurent bili, Instance Of, French ambassador) -> French ambassador (4692ms)\nWhom did he marry?\trescue\t-11.811242256058364\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. He-Saves, Instance Of, rescue) -> rescue (4692ms)\nWhom did he marry?\tcorrect alternative\t-11.822810765641416\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (He is deeply concerned about vulnerable children, Instance Of, correct alternative) -> correct alternative (4692ms)\nWhom did he marry?\tfarmer\t-11.845620049119656\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. HeIvie, Instance Of, farmer) -> farmer (4692ms)\nWhom did he marry?\tdiplomat\t-11.850674702897054\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (H.E Mr. Giacomo Sanfelice di Monteforte, Instance Of, diplomat) -> diplomat (4692ms)\nWhom did he marry?\tstowaway\t-11.862280902203976\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Cranick-He, Instance Of, stowaway) -> stowaway (4782ms)\nWhom did he marry?\tregular\t-11.875698232679838\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (mr. orr passed on.He, Instance Of, regular) -> regular (4781ms)\nWhom did he marry?\tgraduate\t-11.876859173897437\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Bipin ShahHe, Instance Of, graduate) -> graduate (4781ms)\nWhom did he marry?\tspeaker\t-11.880146429786063\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Samah HeLal, Instance Of, speaker) -> speaker (4781ms)\nWhom did he marry?\tlecturer\t-11.891943994242158\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Pardeep Jain .He, Instance Of, lecturer) -> lecturer (4781ms)\nWhom did he marry?\texpert\t-11.892883355893519\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Gunasekaran Merchandise Head.He, Instance Of, expert) -> expert (4801ms)\nWhom did he marry?\tleader\t-11.896520674108736\tWhom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (special word for Mr Scindia-he, Instance Of, leader) -> leader (4801ms)\nWhom did he marry?\tgreat person\t-11.990848189271421\tWhom did he marry? -> whom do [ he ] marry ? -> who be he dad ? -> $x: (he dad, instance of, $x) -> (Dad-He, Instance Of, great person) -> great person (4801ms)\nWhom did he marry?\tfamous musician\t-12.116671681761526\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Children .He, Instance Of, famous musician) -> famous musician (4801ms)\nWhom did he marry?\tfrequent lecturer\t-12.168164466858808\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Los Abogados and Arizona's Children Association.He, Instance Of, frequent lecturer) -> frequent lecturer (4801ms)\nWhom did he marry?\tbig girl\t-12.629782599064821\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Start by telling the child he/she, Instance Of, big girl) -> big girl (4801ms)\nWhom did he marry?\trespected member of FUDZone\t-12.677511047091992\tWhom did he marry? -> whom do [ he ] marry ? -> who be he kid ? -> $x: (he kid, instance of, $x) -> (Married with a kid.He, Instance Of, respected member of FUDZone) -> respected member of FUDZone (4930ms)\nWhom did he marry?\tone man fast break\t-12.677511047091992\tWhom did he marry? -> whom do [ he ] marry ? -> who be he kid ? -> $x: (he kid, instance of, $x) -> (Kid-remember..he, Instance Of, one man fast break) -> one man fast break (4930ms)\nWhom did he marry?\tbig hit\t-12.705617687861501\tWhom did he marry? -> whom do [ he ] marry ? -> who be he kid ? -> $x: (he kid, instance of, $x) -> (T heKidsFire Safety Trailer, Instance Of, big hit) -> big hit (4930ms)\nWhom did he marry?\tprivate, non-profit, family-centered residence\t-12.756356981455038\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (T heChildren's Inn at NIH, Instance Of, private, non-profit, family-centered residence) -> private, non-profit, family-centered residence (4930ms)\nWhom did he marry?\tfranchise of Joy Education Organization\t-12.801250936890181\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Joy Children's Language School, HeFei, Instance Of, franchise of Joy Education Organization) -> franchise of Joy Education Organization (4930ms)\nWhom did he marry?\tmedical-legal partnership\t-12.824752459105353\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Child HeLP, Instance Of, medical-legal partnership) -> medical-legal partnership (4930ms)\nWhom did he marry?\tweb-based resource\t-12.847936392685575\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (HeLP-A Victorian Child, Instance Of, web-based resource) -> web-based resource (4946ms)\nWhom did he marry?\tliar\t-13.403529282583031\tWhom did he marry? -> whom do [ he ] marry ? -> who be he dad ? -> $x: (he dad, instance of, $x) -> (He-he StephaniesDad, Instance Of, liar) -> liar (4946ms)\nWhom did he marry?\tcolonel\t-13.403553472995135\tWhom did he marry? -> whom do [ he ] marry ? -> who be he dad ? -> $x: (he dad, instance of, $x) -> (Dad..he, Instance Of, colonel) -> colonel (4946ms)\nWhom did he marry?\tprogram\t-13.597106299784821\tWhom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Children sHe alth Insurance Program, Instance Of, program) -> program (4946ms)\nWhere was Rachel Carson home?\ta captivating herd\t-8.906216874508598\tWhere was Rachel Carson home? -> where be [ rachel carson ] home ? -> what be rachel carson s home ? -> $x: (rachel carson, home, $x) -> (the Rachel Carson Reserve, is home to, a captivating herd) -> a captivating herd (5423ms)\nWhere was Rachel Carson home?\tMiddle school\t-9.159217287632666\tWhere was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Middle School, School type, Middle school) -> Middle school (7532ms)\nWhere was Rachel Carson home?\tLake Washington School District\t-9.37363055630611\tWhere was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Elementary, School district, Lake Washington School District) -> Lake Washington School District (7531ms)\nWhere was Rachel Carson home?\tFairfax County Public Schools\t-9.45159901764191\tWhere was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Middle School, School district, Fairfax County Public Schools) -> Fairfax County Public Schools (7531ms)\nWhere was Rachel Carson home?\tSan Jose Unified School District\t-9.45159901764191\tWhere was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Elementary School, School district, San Jose Unified School District) -> San Jose Unified School District (7531ms)\nWhere was Rachel Carson home?\tMontgomery County Public Schools\t-9.45159901764191\tWhere was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Elementary School, School district, Montgomery County Public Schools) -> Montgomery County Public Schools (7531ms)\nWhere was Rachel Carson home?\tNew York City Public Schools\t-9.618674291932905\tWhere was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson School Of Coastal Studies, School district, New York City Public Schools) -> New York City Public Schools (7531ms)\nWhere was Rachel Carson home?\tscores\t-9.71003089900296\tWhere was Rachel Carson home? -> where be [ rachel carson ] home ? -> what be rachel carson s home ? -> $x: (rachel carson, home, $x) -> (The Rachel Carson Reserve, is home to, scores) -> scores (5423ms)\nWhere is the Holland Tunnel?\tAuthorities Concept Scheme\t-3.768745754164889\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel (New York, N.Y.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (1855ms)\nWhere is the Holland Tunnel?\tGeographic Names Concept Scheme\t-3.7923076518213117\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel (New York, N.Y.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (1855ms)\nWhere is the Holland Tunnel?\tManhattan\t-3.957557241095569\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Lincoln and Holland tunnels, collect things in, Manhattan) -> Manhattan (1855ms)\nWhere is the Holland Tunnel?\tmovies\t-3.993202696334089\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (The Holland Tunnel, has been featured in, movies) -> movies (1682ms)\nWhere is the Holland Tunnel?\tthe exact change lane\t-4.915962573778417\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (the Holland Tunnel, is stuck in, the exact change lane) -> the exact change lane (1682ms)\nWhere is the Holland Tunnel?\tthe 1920 's\t-5.4600095697537725\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (the Holland Tunnel, was built in, the 1920 's) -> the 1920 's (1682ms)\nWhere is the Holland Tunnel?\ttraffic right\t-5.478657234671182\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland tunnel, stuck in, traffic right) -> traffic right (1855ms)\nWhere is the Holland Tunnel?\tnumerous wrecks\t-5.616495979487972\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, almost got in, numerous wrecks) -> numerous wrecks (1855ms)\nWhere is the Holland Tunnel?\tleft lane\t-5.9658408650248695\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel, stay in, left lane) -> left lane (1855ms)\nWhere is the Holland Tunnel?\t1927\t-6.06903042769849\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (The Holland Tunnel, was completed in, 1927) -> 1927 (1682ms)\nWhere is the Holland Tunnel?\tNew York City\t-6.357554575167733\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel, opened in, New York City) -> New York City (1870ms)\nWhere is the Holland Tunnel?\tOld Town\t-6.60003776965339\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel Gallery, are in, Old Town) -> Old Town (1870ms)\nWhere is the Holland Tunnel?\tthe right lane\t-7.3170804083610825\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel, stay in, the right lane) -> the right lane (1870ms)\nWhere is the Holland Tunnel?\tthe river\t-7.524900740754838\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel?s air vents, stood in, the river) -> the river (1888ms)\nWhere is the Holland Tunnel?\tNovember 1927\t-8.067384135003673\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, opened in, November 1927) -> November 1927 (1888ms)\nWhere is the Holland Tunnel?\t1922\t-8.674569946968907\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, began in, 1922) -> 1922 (1888ms)\nWhere is the Holland Tunnel?\t1996\t-8.696739438635053\tWhere is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, collapsed in, 1996) -> 1996 (2076ms)\nWhere is the Holland Tunnel?\tHoboken\t-9.546753022957342\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Hoboken, is located between, the Holland and Lincoln Tunnels) -> Hoboken (4628ms)\nWhere is the Holland Tunnel?\tHolland Tunnel\t-9.623841099428164\tWhere is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what be the holland tunnel s location ? -> $x: (the holland tunnel, location, $x) -> $x: (holland tunnel, location, $x) -> (Holland Tunnel fire, Location(s), Holland Tunnel) -> Holland Tunnel (3448ms)\nWhere is the Holland Tunnel?\tItems\t-10.538415566510027\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Items, may be picked up from, the Holland Tunnel Police Command) -> Items (4628ms)\nWhere is the Holland Tunnel?\tHARD.\t-10.578871431626895\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, is, HARD.) -> HARD. (4628ms)\nWhere is the Holland Tunnel?\tRory\t-10.62097504039713\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Rory, is driving home through, the Holland Tunnel) -> Rory (4627ms)\nWhere is the Holland Tunnel?\tUnited States of America\t-10.642927117335198\tWhere is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what be the holland tunnel s location ? -> $x: (the holland tunnel, location, $x) -> $x: (the holland tunnel, region, $x) -> (Living in the Holland Tunnel, Region, United States of America) -> United States of America (5529ms)\nWhere is the Holland Tunnel?\tKing\t-10.863747210948986\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel exit, is a few blocks from, King) -> King (4628ms)\nWhere is the Holland Tunnel?\tDesbrosses St.\t-10.920893029678243\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, is, Desbrosses St.) -> Desbrosses St. (4628ms)\nWhere is the Holland Tunnel?\tCanal Street\t-10.947874931511704\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Canal Street, will still be able to enter, the Holland Tunnel) -> Canal Street (4628ms)\nWhere is the Holland Tunnel?\ta bar\t-11.158514170538336\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (a bar, is worse than, the Holland Tunnel) -> a bar (4628ms)\nWhere is the Holland Tunnel?\tNude Anna Nicole\t-11.197652140822322\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Nude Anna Nicole, was, the Holland Tunnel) -> Nude Anna Nicole (5123ms)\nWhere is the Holland Tunnel?\tanyone?s list\t-11.210681853332868\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, was high on, anyone?s list) -> anyone?s list (5123ms)\nWhere is the Holland Tunnel?\tsuch tunnels\t-11.227034785748227\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (such tunnels, were ?as big as, the Holland and Lincoln tunnels) -> such tunnels (5123ms)\nWhere is the Holland Tunnel?\tnew LED lighting\t-11.247371336484923\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, will be updated with, new LED lighting) -> new LED lighting (5123ms)\nWhere is the Holland Tunnel?\tTwo cars\t-11.269038893637372\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Two cars, are going through, the Holland Tunnel) -> Two cars (5123ms)\nWhere is the Holland Tunnel?\tevery five years\t-11.297507217953667\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, could be closed, every five years) -> every five years (5123ms)\nWhere is the Holland Tunnel?\tbike lanes and cyclists\t-11.348169903767307\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, is the fault of, bike lanes and cyclists) -> bike lanes and cyclists (5123ms)\nWhere is the Holland Tunnel?\tsix-axle trucks\t-11.424896261609973\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (six-axle trucks, are prohibited from using, the Holland Tunnel) -> six-axle trucks (5150ms)\nWhere is the Holland Tunnel?\ta designated National Historic Landmark\t-11.426600118987205\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, is, a designated National Historic Landmark) -> a designated National Historic Landmark (5150ms)\nWhere is the Holland Tunnel?\tOfficer Donald Foreman\t-11.47257839156947\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Officer Donald Foreman, was assigned to, the Holland Tunnel) -> Officer Donald Foreman (5150ms)\nWhere is the Holland Tunnel?\tan HOV restriction\t-11.49386369683452\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland tunnel, is operating on, an HOV restriction) -> an HOV restriction (5150ms)\nWhere is the Holland Tunnel?\tSlated for destruction\t-11.507126650957852\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Slated for destruction, were, the Holland and Lincoln Tunnels) -> Slated for destruction (5150ms)\nWhere is the Holland Tunnel?\tSheraton New York\t-11.580824967359439\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Sheraton New York, is a half mile from, the Holland Tunnel) -> Sheraton New York (5150ms)\nWhere is the Holland Tunnel?\tflooding\t-11.625760530932274\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel?s tubes, has been closed due to, flooding) -> flooding (5150ms)\nWhere is the Holland Tunnel?\ta clusterfk\t-11.626809128594445\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland tunnel, is always, a clusterfk) -> a clusterfk (5150ms)\nWhere is the Holland Tunnel?\tonly cars and buses\t-11.636654612135034\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (only cars and buses, were permitted to use, the Holland Tunnel) -> only cars and buses (5177ms)\nWhere is the Holland Tunnel?\tMuslims\t-11.709152081438324\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (Muslims, should be detoured through, Holland Tunnel ,than) -> Muslims (7624ms)\nWhere is the Holland Tunnel?\tHudson River\t-11.947537516939406\tWhere is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what be the holland tunnel s location ? -> $x: (the holland tunnel, location, $x) -> $x: (holland tunnel, location, $x) -> $x: ($x, contain, holland tunnel) -> (Hudson River, Contains, Holland Tunnel) -> Hudson River (8483ms)\nWhere is the Holland Tunnel?\tfire\t-11.998798125159707\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, was threatened with, fire) -> fire (5177ms)\nWhere is the Holland Tunnel?\tprotests\t-12.001389679605342\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, were shut down during, protests) -> protests (5177ms)\nWhere is the Holland Tunnel?\ttraffic\t-12.003219109867485\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, was opened to, traffic) -> traffic (5177ms)\nWhere is the Holland Tunnel?\ta bomb\t-12.147311559012005\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (a bomb, were headed for, the Holland Tunnel) -> a bomb (5177ms)\nWhere is the Holland Tunnel?\tHolland Tunnel fire\t-12.401294583558045\tWhere is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what be the holland tunnel s location ? -> $x: (the holland tunnel, location, $x) -> $x: (holland tunnel, location, $x) -> $x: ($x, location, holland tunnel) -> (Holland Tunnel fire, Location(s), Holland Tunnel) -> Holland Tunnel fire (8116ms)\nWhere is the Holland Tunnel?\t10 minutes\t-12.450812811071629\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, is only, 10 minutes) -> 10 minutes (5177ms)\nWhere is the Holland Tunnel?\tThe billboard\t-12.68812362812344\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (The billboard, is near, the Holland Tunnel) -> The billboard (5208ms)\nWhere is the Holland Tunnel?\t10 minute waits\t-12.6971522644943\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland and Lincoln Tunnels, are, 10 minute waits) -> 10 minute waits (5208ms)\nWhere is the Holland Tunnel?\tthe Village\t-12.72839981687053\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (the Village, is only, five Holland Tunnel minutes) -> the Village (7624ms)\nWhere is the Holland Tunnel?\tThe store\t-12.866304180862793\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (The store, is near, the Holland Tunnel) -> The store (5208ms)\nWhere is the Holland Tunnel?\tthe wait\t-12.889949419435883\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (the wait, is much shorter at, the Holland Tunnel) -> the wait (5208ms)\nWhere is the Holland Tunnel?\tthe group\t-12.891951086553158\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, were found with, the group) -> the group (5208ms)\nWhere is the Holland Tunnel?\tThe basic trajectory\t-13.007845548888325\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (The basic trajectory, was from, the Holland Tunnel) -> The basic trajectory (5208ms)\nWhere is the Holland Tunnel?\tstill\t-13.013891453216823\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, was closed, still) -> still (5236ms)\nWhere is the Holland Tunnel?\tthe verge\t-13.044097665653938\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, is always on, the verge) -> the verge (5236ms)\nWhere is the Holland Tunnel?\tthe afternoon\t-13.0632521675472\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, is nowhere to be on, the afternoon) -> the afternoon (5235ms)\nWhere is the Holland Tunnel?\tthe chief engineer\t-13.07759329373419\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, was named after, the chief engineer) -> the chief engineer (5236ms)\nWhere is the Holland Tunnel?\tThe theatre\t-13.109399023026558\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (The theatre, is just minutes from, the Holland/Lincoln Tunnels) -> The theatre (5236ms)\nWhere is the Holland Tunnel?\tthe first roadway tunnels\t-13.124261819757287\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, was one of, the first roadway tunnels) -> the first roadway tunnels (5236ms)\nWhere is the Holland Tunnel?\tthe canine\t-13.145482556895079\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (the canine, was spotted down near, the Holland Tunnel) -> the canine (5236ms)\nWhere is the Holland Tunnel?\tthe first Hudson River vehicular tunnel\t-13.180785919132342\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, was, the first Hudson River vehicular tunnel) -> the first Hudson River vehicular tunnel (5264ms)\nWhere is the Holland Tunnel?\tHudson River crossings\t-13.182739002493665\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: (holland tunnel, be, $x) -> (Holland Tunnel, are, Hudson River crossings) -> Hudson River crossings (7728ms)\nWhere is the Holland Tunnel?\tthe elevated segment\t-13.240330325359889\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, was backed up onto, the elevated segment) -> the elevated segment (5264ms)\nWhere is the Holland Tunnel?\tNewport area\t-13.254711748016073\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (Newport area, is right next to, Holland Tunnel) -> Newport area (7728ms)\nWhere is the Holland Tunnel?\tstreet\t-13.522860177633358\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: (holland tunnel, be, $x) -> (holland tunnel, is a, street) -> street (7775ms)\nWhere is the Holland Tunnel?\tgot rides\t-13.73172055461241\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, make, the holland tunnel) -> (got rides, also made my first trip through, the Holland Tunnel) -> got rides (6221ms)\nWhere is the Holland Tunnel?\tPresident\t-13.772751161715538\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> which organ be be the holland tunnel ? -> $x: ($x, instance of, organ) ($x, be be, the holland tunnel) -> $x: ($x, instance of, organ) ($x, be be, holland tunnel) -> (President, Instance Of, state organ) (president, was planning to extend, New York?s Holland Tunnel) -> President (7775ms)\nWhere is the Holland Tunnel?\tNew York city\t-13.971450503092125\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what hospital be be the holland tunnel ? -> $x: ($x, instance of, hospital) ($x, be be, the holland tunnel) -> (New York city, Instance Of, large and sprawling city full of great animal hospital) (New York City, here is to take, the Holland Tunnel) -> New York city (6112ms)\nWhere is the Holland Tunnel?\tpresident\t-14.14778477756309\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (president, was planning to extend, New York?s Holland Tunnel) -> president (7889ms)\nWhere is the Holland Tunnel?\tthe left\t-14.317934802672257\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (the left, is, Holland Tunnel) -> the left (7889ms)\nWhere is the Holland Tunnel?\tend\t-14.751748416659526\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> when be the holland tunnel be ? -> $x: (the holland tunnel, be be on, $x) -> $x: (holland tunnel, on, $x) -> (the Holland Tunnel, stood on, end) -> end (10648ms)\nWhere is the Holland Tunnel?\tThe other lanes\t-14.793540038436973\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (The other lanes, are for, Holland Tunnel) -> The other lanes (8157ms)\nWhere is the Holland Tunnel?\tthe The Squid\t-15.142258654344008\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> when be the holland tunnel be ? -> $x: (the holland tunnel, be be on, $x) -> $x: (holland tunnel, on, $x) -> (?Holland Tunnel?, appeared on, the The Squid) -> the The Squid (10691ms)\nWhere is the Holland Tunnel?\tHudson St.* Turn\t-15.220016354112266\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> when be the holland tunnel be ? -> $x: (the holland tunnel, be be on, $x) -> $x: (holland tunnel, on, $x) -> (Holland Tunnel, drive north on, Hudson St.* Turn) -> Hudson St.* Turn (10691ms)\nWhere is the Holland Tunnel?\tThe second I\t-15.295986040650522\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get, the holland tunnel) -> (The second I, got through, the Holland Tunnel) -> The second I (6221ms)\nWhere is the Holland Tunnel?\tthe second light\t-15.443284636346673\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, make, the holland tunnel) -> (the second light, make a left to, the Holland Tunnel) -> the second light (6221ms)\nWhere is the Holland Tunnel?\troute\t-17.32578026582607\tWhere is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what continent be the holland tunnel locate on ? -> $x: ($x, instance of, continent) (the holland tunnel, locate on, $x) -> $x: ($x, instance of, continent) (holland tunnel, locate on, $x) -> $x: ($x, instance of, continent) (holland tunnel, take, $x) -> (route, Instance Of, point-to-point service between small and medium-sized city on different continent) (Holland Tunnel, Take, Route) -> route (10691ms)\nWhere is the Holland Tunnel?\tNovember 13 , 1927\t-17.665995147494883\tWhere is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> when be the holland tunnel be ? -> $x: (the holland tunnel, be be on, $x) -> $x: (holland tunnel, on, $x) -> (Holland Tunnel, opened on, November 13 , 1927) -> November 13 , 1927 (10691ms)\nWhen was Queen Victoria born?\t1819\t2.6443534116418728\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, 1819) -> 1819 (2192ms)\nWhen was Queen Victoria born?\tthe 24 May\t0.11262567577522065\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, the 24 May) -> the 24 May (3949ms)\nWhen was Queen Victoria born?\tMay 24 , 1819\t0.07046697815245917\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, May 24 , 1819) -> May 24 , 1819 (4004ms)\nWhen was Queen Victoria born?\t1840\t-0.10245202055511093\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, was married in, 1840) -> 1840 (4070ms)\nWhen was Queen Victoria born?\t24 May 1819\t-0.4943031162645055\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, 24 May 1819) -> 24 May 1819 (4070ms)\nWhen was Queen Victoria born?\t1857.\t-0.6248494673610023\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, 1857.) -> 1857. (4071ms)\nWhen was Queen Victoria born?\t1870\t-1.763500344744151\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: ($x, be engrave, queen victorium) -> (1870, were the last engraved types of, Queen Victoria) -> 1870 (8308ms)\nWhen was Queen Victoria born?\tthe Palace\t-2.022776551932055\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, the Palace) -> the Palace (4152ms)\nWhen was Queen Victoria born?\tLondon\t-2.163275363635408\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, London) -> London (4152ms)\nWhen was Queen Victoria born?\tEngland\t-2.1802003324421015\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, England) -> England (4183ms)\nWhen was Queen Victoria born?\tMay 24th\t-2.2970188467090122\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: ($x, be the birthday of, Queen Victoria) -> (May 24th, was the birthday of, Queen Victoria) -> May 24th (6470ms)\nWhen was Queen Victoria born?\tKensington Palace\t-2.3359170508130473\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, Kensington Palace) -> Kensington Palace (4183ms)\nWhen was Queen Victoria born?\t1837\t-2.5626152188199067\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: (queen victorium, reign from, $x) -> (Queen Victoria, reigned from, 1837) -> 1837 (8655ms)\nWhen was Queen Victoria born?\tKensington\t-2.784023949076143\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, Kensington) -> Kensington (4229ms)\nWhen was Queen Victoria born?\tMay\t-3.0932167325390694\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, be bear, $x) -> (\" Queen Victoria, was born the 24th of, May) -> May (6149ms)\nWhen was Queen Victoria born?\t12 October 1888\t-3.1139920269375247\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, marry on, $x) -> (Queen Victoria Lollar, married on, 12 October 1888) -> 12 October 1888 (6804ms)\nWhen was Queen Victoria born?\t1901\t-4.035159720847911\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: (queen victorium, reign from, $x) -> (Queen Victoria, reigned from 1837 to, 1901) -> 1901 (8655ms)\nWhen was Queen Victoria born?\tPrincess Alexandria Victoria\t-4.772688864365888\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, be bear, $x) -> (Queen Victoria, was born as, Princess Alexandria Victoria) -> Princess Alexandria Victoria (6149ms)\nWhen was Queen Victoria born?\tTexas\t-4.891181014354308\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, reunite in, $x) -> (Queen Victoria, were reunited in, Texas) -> Texas (4352ms)\nWhen was Queen Victoria born?\tfriends\t-4.8998110164858755\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, be to come to, $x) -> (Queen Victoria?s Suzuki Night Market, is to come with, friends) -> friends (6469ms)\nWhen was Queen Victoria born?\tHalifax\t-4.908457829335622\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, be reside in, $x) -> (Queen Victoria, was residing in, Halifax) -> Halifax (4676ms)\nWhen was Queen Victoria born?\ta white gown\t-4.914026330327347\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, was married in, a white gown) -> a white gown (4352ms)\nWhen was Queen Victoria born?\ta white wedding gown\t-4.931556628760145\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, was married in, a white wedding gown) -> a white wedding gown (4352ms)\nWhen was Queen Victoria born?\twhite dress\t-5.155959481773838\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, got married in, white dress) -> white dress (4421ms)\nWhen was Queen Victoria born?\t1837 to 1901\t-5.342642420657202\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: (queen victorium, reign from, $x) -> (Queen Victoria, reigned from, 1837 to 1901) -> 1837 to 1901 (8655ms)\nWhen was Queen Victoria born?\ta love match\t-5.35633944662052\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, also married in, a love match) -> a love match (4422ms)\nWhen was Queen Victoria born?\tAlexandrina Victoria\t-5.377625812296151\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, be bear, $x) -> (Queen Victoria, was born, Alexandrina Victoria) -> Alexandrina Victoria (6178ms)\nWhen was Queen Victoria born?\ta white dress\t-5.4231744882757855\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (the 1840?s Queen Victoria, got married in, a white dress) -> a white dress (4422ms)\nWhen was Queen Victoria born?\tnearby Claremont\t-5.597806363879668\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, come over from, $x) -> (' Queen Victoria, came over from, nearby Claremont) -> nearby Claremont (4457ms)\nWhen was Queen Victoria born?\t1837-1901\t-5.796260435656624\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: (queen victorium, reign from, $x) -> (Queen Victoria, reigned from, 1837-1901) -> 1837-1901 (8714ms)\nWhen was Queen Victoria born?\ta visit\t-5.896384616724136\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, enjoy on, $x) -> (Queen Victoria, once enjoyed a drink there on, a visit) -> a visit (6216ms)\nWhen was Queen Victoria born?\tthe Isle\t-5.976419313304466\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, know on, $x) -> (Queen Victoria, knew deaf people on, the Isle) -> the Isle (6871ms)\nWhen was Queen Victoria born?\tthe royal residence\t-6.144746533353982\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, be bear at, $x) -> (Queen Victoria, was born at, the royal residence) -> the royal residence (4456ms)\nWhen was Queen Victoria born?\tthe royal home\t-6.144746533353982\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, be bear at, $x) -> (Queen Victoria, was born at, the royal home) -> the royal home (4456ms)\nWhen was Queen Victoria born?\twhite\t-6.421460440287478\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, by marrying in, white) -> white (4456ms)\nWhen was Queen Victoria born?\tWindsor\t-6.485492296787633\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (queen victorium, bear in, $x) -> $x: (queen victorium, to travel to, $x) -> (Queen Victoria, was travelling to, Windsor) -> Windsor (7458ms)\nWhen was Queen Victoria born?\tScotland\t-6.766537908948896\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, vacation in, $x) -> (Queen Victoria, vacationed in, Scotland) -> Scotland (4818ms)\nWhen was Queen Victoria born?\tthe palace\t-6.8217455452102005\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, be bear at, $x) -> (Queen Victoria, was born at, the palace) -> the palace (4497ms)\nWhen was Queen Victoria born?\tthe white , opulent gown\t-8.025102668949211\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, married in, the white , opulent gown) -> the white , opulent gown (4497ms)\nWhen was Queen Victoria born?\tBalmoral\t-8.615498142440323\tWhen was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (queen victorium, bear in, $x) -> $x: (queen victorium, to travel to, $x) -> (Queen Victoria, travelled to, Balmoral) -> Balmoral (7456ms)\nWhat is Jay-Z's real name?\tShawn Carter\t-2.5835082838357453\tWhat is Jay-Z's real name? -> What is real name of Jay-Z ? -> $x: ($x, is real name of, Jay-Z) -> (Shawn Carter, is also the real name of, rap artist Jay-Z) -> Shawn Carter (4101ms)\nWhat is Jay-Z's real name?\tthe Carter Music Group\t-9.870359136714736\tWhat is Jay-Z's real name? -> what be [ jay-z ] s real name ? -> what be be jay-z real name ? -> $x: ($x, be be, jay-z real name) -> (the Carter Music Group, is a reference to, Jay-Z?s real name) -> the Carter Music Group (8640ms)\nWhy is a ladybug helpful?\tSuper Bowl Sunday\t-14.01576366547775\tWhy is a ladybug helpful? -> why be [ a ladybug ] helpful ? -> who work on a ladybug ? -> $x: ($x, work on, a ladybug) -> $x: ($x, work on, ladybug) -> (Super Bowl Sunday, was to start working on, the Ladybug.) -> Super Bowl Sunday (13078ms)\nWhere was Super Bowl XXXIV held?\tthe Ravens\t-10.545371226794668\tWhere was Super Bowl XXXIV held? -> where be [ super bowl xxxiv ] hold ? -> what be do in super bowl xxxiv ? -> $x: ($x, be do in, super bowl xxxiv) -> $x: ($x, in, super bowl xxxiv) -> (the Ravens, played in, Super Bowl XXXIV) -> the Ravens (3991ms)\nHow many official languages does Switzerland have?\tGerman Language\t1.7368667100524577\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, German Language) -> German Language (1078ms)\nHow many official languages does Switzerland have?\tItalian Language\t1.7368667100524577\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, Italian Language) -> Italian Language (1078ms)\nHow many official languages does Switzerland have?\tFrench Language\t1.7368667100524577\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, French Language) -> French Language (1078ms)\nHow many official languages does Switzerland have?\tRomansh language\t1.6617116571520558\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, Romansh language) -> Romansh language (1078ms)\nHow many official languages does Switzerland have?\tEnglish Language\t1.1183668965713673\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Pocket Statistical Data on Switzerland 2007, Official Language, English Language) -> English Language (1685ms)\nHow many official languages does Switzerland have?\tUrdu Language\t-0.5525564467175519\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Pakistanis in Switzerland, Languages spoken, Urdu Language) -> Urdu Language (3478ms)\nHow many official languages does Switzerland have?\tSwitzerland\t-0.8518224915068789\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland French, is an official language in, Switzerland) -> Switzerland (2753ms)\nHow many official languages does Switzerland have?\tNapoletano-Calabrese Language\t-1.6051259324652787\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Napoletano-Calabrese Language) -> Napoletano-Calabrese Language (3477ms)\nHow many official languages does Switzerland have?\tSwiss German Language\t-1.6601036936635978\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Swiss German Language) -> Swiss German Language (3618ms)\nHow many official languages does Switzerland have?\tSerbo-Croatian\t-1.7480681115809082\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Immigration from the former Yugoslavia to Switzerland, Languages spoken, Serbo-Croatian) -> Serbo-Croatian (4487ms)\nHow many official languages does Switzerland have?\tSwiss Standard German\t-1.7838036563598159\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (\"Sects\" or Assimilative Movements in Switzerland, Original language, Swiss Standard German) -> Swiss Standard German (4589ms)\nHow many official languages does Switzerland have?\tTurkish Language\t-1.8334758192093434\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Turks in Switzerland, Languages spoken, Turkish Language) -> Turkish Language (4679ms)\nHow many official languages does Switzerland have?\tEnglish\t-1.8526592114182692\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Switzerland, Language, English) -> English (4843ms)\nHow many official languages does Switzerland have?\tSwiss Italian\t-1.8984495369891752\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Swiss Italian) -> Swiss Italian (6485ms)\nHow many official languages does Switzerland have?\tTamil Language\t-1.8984495369891752\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Sri Lankans in Switzerland, Languages spoken, Tamil Language) -> Tamil Language (6485ms)\nHow many official languages does Switzerland have?\tSinhala Language\t-1.8984495369891752\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Sri Lankans in Switzerland, Languages spoken, Sinhala Language) -> Sinhala Language (6485ms)\nHow many official languages does Switzerland have?\tSicilian Language\t-1.8984495369891752\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Sicilian Language) -> Sicilian Language (6485ms)\nHow many official languages does Switzerland have?\tKurdish language\t-1.9086308721097447\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Turks in Switzerland, Languages spoken, Kurdish language) -> Kurdish language (7815ms)\nHow many official languages does Switzerland have?\tPunjabi language\t-1.9086308721097447\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Pakistanis in Switzerland, Languages spoken, Punjabi language) -> Punjabi language (7815ms)\nHow many official languages does Switzerland have?\tSwiss French\t-1.9534272981874943\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Swiss French) -> Swiss French (7966ms)\nHow many official languages does Switzerland have?\tSwiss-German Sign Language\t-1.9996980111250207\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Swiss-German Sign Language, Locale, Switzerland) -> Swiss-German Sign Language (7965ms)\nHow many official languages does Switzerland have?\tSwiss-French Sign Language\t-1.9996980111250207\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Swiss-French Sign Language, Locale, Switzerland) -> Swiss-French Sign Language (7964ms)\nHow many official languages does Switzerland have?\tSwiss-Italian Sign Language\t-1.9996980111250207\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Swiss-Italian Sign Language, Locale, Switzerland) -> Swiss-Italian Sign Language (7965ms)\nHow many official languages does Switzerland have?\tPlautdietsch Language\t-2.000551093500339\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Beresina, or the Last Days of Switzerland, Languages, Plautdietsch Language) -> Plautdietsch Language (8068ms)\nHow many official languages does Switzerland have?\tMacedonian Language\t-2.0413917161048047\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Immigration from the former Yugoslavia to Switzerland, Languages spoken, Macedonian Language) -> Macedonian Language (8248ms)\nHow many official languages does Switzerland have?\tAlbanian language\t-2.116546769005206\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Immigration from the former Yugoslavia to Switzerland, Languages spoken, Albanian language) -> Albanian language (8903ms)\nHow many official languages does Switzerland have?\tDoes Your Cat Know My Dog?\t-2.1976179514389695\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Does Your Cat Know My Dog?, Region, Switzerland) -> Does Your Cat Know My Dog? (9322ms)\nHow many official languages does Switzerland have?\tLanguages of Switzerland\t-2.2262535192279307\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Languages of Switzerland, Also known as, German Switzerland) -> Languages of Switzerland (9397ms)\nHow many official languages does Switzerland have?\tBourgeois Baby\t-2.278944103378878\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Bourgeois Baby, Region, Switzerland) -> Bourgeois Baby (9756ms)\nHow many official languages does Switzerland have?\tOxygen Sway\t-2.278944103378878\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Oxygen Sway, Region, Switzerland) -> Oxygen Sway (9678ms)\nHow many official languages does Switzerland have?\tAbsolute Love\t-2.278944103378878\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Absolute Love, Region, Switzerland) -> Absolute Love (9756ms)\nHow many official languages does Switzerland have?\tG.\t-2.3808771554333665\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (G., Region, Switzerland) -> G. (9882ms)\nHow many official languages does Switzerland have?\tBoogie-Race\t-2.3808771554333665\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Boogie-Race, Region, Switzerland) -> Boogie-Race (9882ms)\nHow many official languages does Switzerland have?\tZolloZ\t-2.3808771554333665\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (ZolloZ, Region, Switzerland) -> ZolloZ (9882ms)\nHow many official languages does Switzerland have?\tCatalan-Valencian-Balear\t-2.3808771554333665\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Catalan-Valencian-Balear, Locale, Switzerland) -> Catalan-Valencian-Balear (9882ms)\nHow many official languages does Switzerland have?\tFranco-Proven?al\t-2.3808771554333665\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Franco-Proven?al, Locale, Switzerland) -> Franco-Proven?al (9882ms)\nHow many official languages does Switzerland have?\tStar-Portrait\t-2.3808771554333665\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Star-Portrait, Region, Switzerland) -> Star-Portrait (9882ms)\nHow many official languages does Switzerland have?\tYiddish, Western\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Yiddish, Western, Locale, Switzerland) -> Yiddish, Western (9956ms)\nHow many official languages does Switzerland have?\tGerman, Standard\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (German, Standard, Locale, Switzerland) -> German, Standard (9956ms)\nHow many official languages does Switzerland have?\tThe Gang\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Gang, Region, Switzerland) -> The Gang (9956ms)\nHow many official languages does Switzerland have?\tTeatrodellopera E.P.\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Teatrodellopera E.P., Region, Switzerland) -> Teatrodellopera E.P. (10071ms)\nHow many official languages does Switzerland have?\tAmor Fati\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Amor Fati, Region, Switzerland) -> Amor Fati (10070ms)\nHow many official languages does Switzerland have?\tSpeed Up\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Speed Up, Region, Switzerland) -> Speed Up (9956ms)\nHow many official languages does Switzerland have?\tLem Phago\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Lem Phago, Region, Switzerland) -> Lem Phago (9956ms)\nHow many official languages does Switzerland have?\tMissing You\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Missing You, Region, Switzerland) -> Missing You (10070ms)\nHow many official languages does Switzerland have?\tAfter All\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (After All, Region, Switzerland) -> After All (10071ms)\nHow many official languages does Switzerland have?\tRomani, Sinte\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Romani, Sinte, Locale, Switzerland) -> Romani, Sinte (9957ms)\nHow many official languages does Switzerland have?\tTai N?a\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Tai N?a, Locale, Switzerland) -> Tai N?a (9956ms)\nHow many official languages does Switzerland have?\tKurdish, Northern\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Kurdish, Northern, Locale, Switzerland) -> Kurdish, Northern (10070ms)\nHow many official languages does Switzerland have?\tIu Mien\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Iu Mien, Locale, Switzerland) -> Iu Mien (10070ms)\nHow many official languages does Switzerland have?\tAssyrian Neo-Aramaic\t-2.42852454847191\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Assyrian Neo-Aramaic, Locale, Switzerland) -> Assyrian Neo-Aramaic (9956ms)\nHow many official languages does Switzerland have?\tLove Man Riding\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Love Man Riding, Region, Switzerland) -> Love Man Riding (10241ms)\nHow many official languages does Switzerland have?\tTime Stories (Duos)\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Time Stories (Duos), Region, Switzerland) -> Time Stories (Duos) (10148ms)\nHow many official languages does Switzerland have?\tFall To Pieces\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Fall To Pieces, Region, Switzerland) -> Fall To Pieces (10240ms)\nHow many official languages does Switzerland have?\tThe Dark Tree\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Dark Tree, Region, Switzerland) -> The Dark Tree (10148ms)\nHow many official languages does Switzerland have?\tSexx Piss Tool\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Sexx Piss Tool, Region, Switzerland) -> Sexx Piss Tool (10414ms)\nHow many official languages does Switzerland have?\tAuf Wiedersehen (live)\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Auf Wiedersehen (live), Region, Switzerland) -> Auf Wiedersehen (live) (10148ms)\nHow many official languages does Switzerland have?\tGo / Move\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Go / Move, Region, Switzerland) -> Go / Move (10240ms)\nHow many official languages does Switzerland have?\tButterfly Survival Kit\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Butterfly Survival Kit, Region, Switzerland) -> Butterfly Survival Kit (10241ms)\nHow many official languages does Switzerland have?\tTouch My Skin\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Touch My Skin, Region, Switzerland) -> Touch My Skin (10148ms)\nHow many official languages does Switzerland have?\tProphecy of Doom\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Prophecy of Doom, Region, Switzerland) -> Prophecy of Doom (10241ms)\nHow many official languages does Switzerland have?\tThe Multiplication Table\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Multiplication Table, Region, Switzerland) -> The Multiplication Table (10240ms)\nHow many official languages does Switzerland have?\tSkin Tight Inches\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Skin Tight Inches, Region, Switzerland) -> Skin Tight Inches (10414ms)\nHow many official languages does Switzerland have?\tI d?m Land\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (I d?m Land, Region, Switzerland) -> I d?m Land (10241ms)\nHow many official languages does Switzerland have?\tOcean of Illusions\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Ocean of Illusions, Region, Switzerland) -> Ocean of Illusions (10240ms)\nHow many official languages does Switzerland have?\tUnder Pressure EP\t-2.4675087791398087\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Under Pressure EP, Region, Switzerland) -> Under Pressure EP (10149ms)\nHow many official languages does Switzerland have?\tDr Hans im Schn?ggeloch\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Dr Hans im Schn?ggeloch, Region, Switzerland) -> Dr Hans im Schn?ggeloch (10491ms)\nHow many official languages does Switzerland have?\tAlways on My Mind\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Always on My Mind, Region, Switzerland) -> Always on My Mind (10414ms)\nHow many official languages does Switzerland have?\tFirst Box Then Walk\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (First Box Then Walk, Region, Switzerland) -> First Box Then Walk (10491ms)\nHow many official languages does Switzerland have?\tH?ch wie der Himu\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (H?ch wie der Himu, Region, Switzerland) -> H?ch wie der Himu (10491ms)\nHow many official languages does Switzerland have?\tAtlantis: The Progressive/Trance Compilation\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Atlantis: The Progressive/Trance Compilation, Region, Switzerland) -> Atlantis: The Progressive/Trance Compilation (10414ms)\nHow many official languages does Switzerland have?\tMove your back part\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Move your back part, Region, Switzerland) -> Move your back part (10414ms)\nHow many official languages does Switzerland have?\tThe Peace Of Arrogance\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Peace Of Arrogance, Region, Switzerland) -> The Peace Of Arrogance (10414ms)\nHow many official languages does Switzerland have?\tNur so am Rand\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Nur so am Rand, Region, Switzerland) -> Nur so am Rand (10414ms)\nHow many official languages does Switzerland have?\tAcque passate + Riei\t-2.4999956380297244\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Acque passate + Riei, Region, Switzerland) -> Acque passate + Riei (10414ms)\nHow many official languages does Switzerland have?\tAgra\t-2.5164801819020832\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Agra, Also known as, Agra, Switzerland) -> Agra (10491ms)\nHow many official languages does Switzerland have?\tRain\t-2.5164801819020832\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Rain, Also known as, Rain, Switzerland) -> Rain (10592ms)\nHow many official languages does Switzerland have?\tSeon\t-2.5164801819020832\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Seon, Also known as, Seon, Switzerland) -> Seon (10491ms)\nHow many official languages does Switzerland have?\tBrig\t-2.5164801819020832\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Brig, Also known as, Brig, Switzerland) -> Brig (10592ms)\nHow many official languages does Switzerland have?\tDizy\t-2.5164801819020832\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Dizy, Also known as, Dizy, Switzerland) -> Dizy (10491ms)\nHow many official languages does Switzerland have?\tCroy\t-2.5164801819020832\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Croy, Also known as, Croy, Switzerland) -> Croy (10491ms)\nHow many official languages does Switzerland have?\tIseo\t-2.5164801819020832\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Iseo, Also known as, Iseo, Switzerland) -> Iseo (10491ms)\nHow many official languages does Switzerland have?\tAyer\t-2.5164801819020832\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ayer, Also known as, Ayer, Switzerland) -> Ayer (10592ms)\nHow many official languages does Switzerland have?\tIn the Eye of the Circle\t-2.527484518628884\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (In the Eye of the Circle, Region, Switzerland) -> In the Eye of the Circle (10592ms)\nHow many official languages does Switzerland have?\tCh?med Chinde, mir w?nd singe\t-2.527484518628884\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Ch?med Chinde, mir w?nd singe, Region, Switzerland) -> Ch?med Chinde, mir w?nd singe (10592ms)\nHow many official languages does Switzerland have?\tGigi vo Arosa / Postbar-Skilift\t-2.527484518628884\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gigi vo Arosa / Postbar-Skilift, Region, Switzerland) -> Gigi vo Arosa / Postbar-Skilift (10592ms)\nHow many official languages does Switzerland have?\tFrom The Rocking Chair To The Stage\t-2.5510464162853066\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (From The Rocking Chair To The Stage, Region, Switzerland) -> From The Rocking Chair To The Stage (10721ms)\nHow many official languages does Switzerland have?\tArt of Knowledge (vs. DJ Emergency)\t-2.5510464162853066\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Art of Knowledge (vs. DJ Emergency), Region, Switzerland) -> Art of Knowledge (vs. DJ Emergency) (10721ms)\nHow many official languages does Switzerland have?\tPolitics and government\t-2.5510464162853066\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (The Federal Government of Switzerland, Subjects, Politics and government) -> Politics and government (10721ms)\nHow many official languages does Switzerland have?\tLe temps est venu (Time Has Come)\t-2.5714667275875396\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Le temps est venu (Time Has Come), Region, Switzerland) -> Le temps est venu (Time Has Come) (10721ms)\nHow many official languages does Switzerland have?\tFull of SID EP / Microcompo Remixes\t-2.5714667275875396\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Full of SID EP / Microcompo Remixes, Region, Switzerland) -> Full of SID EP / Microcompo Remixes (10721ms)\nHow many official languages does Switzerland have?\tDie gr?ssten Schweizer Hits: Stadt & Land\t-2.5714667275875396\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Die gr?ssten Schweizer Hits: Stadt & Land, Region, Switzerland) -> Die gr?ssten Schweizer Hits: Stadt & Land (10721ms)\nHow many official languages does Switzerland have?\tMur\t-2.5836089670170046\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Mur, Also known as, Mur, Switzerland) -> Mur (10884ms)\nHow many official languages does Switzerland have?\tBirmensdorf, Zurich\t-2.5836089670170046\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Birmensdorf, Zurich, Also known as, Birmensdorf, Switzerland) -> Birmensdorf, Zurich (10721ms)\nHow many official languages does Switzerland have?\tNax\t-2.5836089670170046\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Nax, Also known as, Nax, Switzerland) -> Nax (10885ms)\nHow many official languages does Switzerland have?\tSur\t-2.5836089670170046\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Sur, Also known as, Sur, Switzerland) -> Sur (10721ms)\nHow many official languages does Switzerland have?\tThe Organ, Queen of Instruments (organ: Ivan Sokol)\t-2.589334499976993\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Organ, Queen of Instruments (organ: Ivan Sokol), Region, Switzerland) -> The Organ, Queen of Instruments (organ: Ivan Sokol) (10885ms)\nHow many official languages does Switzerland have?\tIf I Should Fall From Grace With God (remix)\t-2.6051001814970993\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (If I Should Fall From Grace With God (remix), Region, Switzerland) -> If I Should Fall From Grace With God (remix) (10885ms)\nHow many official languages does Switzerland have?\tPrisoner-of-war camp\t-2.6051001814970993\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Shot from the Sky: American POWs in Switzerland, Subjects, Prisoner-of-war camp) -> Prisoner-of-war camp (10885ms)\nHow many official languages does Switzerland have?\tBuchberg SH\t-2.611097847616164\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Buchberg SH, Also known as, Buchberg, Switzerland) -> Buchberg SH (10885ms)\nHow many official languages does Switzerland have?\tViolin & String Quartet (Pellegrini Quartet, feat. violin: Peter Rundel)\t-2.6191141206260826\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Violin & String Quartet (Pellegrini Quartet, feat. violin: Peter Rundel), Region, Switzerland) -> Violin & String Quartet (Pellegrini Quartet, feat. violin: Peter Rundel) (10958ms)\nHow many official languages does Switzerland have?\tPrisoner of war\t-2.6191141206260826\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Shot from the Sky: American POWs in Switzerland, Subjects, Prisoner of war) -> Prisoner of war (10885ms)\nHow many official languages does Switzerland have?\tChronology of publications in scrutiny of Scientology\t-2.6191141206260826\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (\"Sects\" or Assimilative Movements in Switzerland, Subjects, Chronology of publications in scrutiny of Scientology) -> Chronology of publications in scrutiny of Scientology (10885ms)\nHow many official languages does Switzerland have?\tNimmerland: Alperose & Rockgitarre - Die Volksmusik der anderen Schweiz\t-2.6191141206260826\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Nimmerland: Alperose & Rockgitarre - Die Volksmusik der anderen Schweiz, Region, Switzerland) -> Nimmerland: Alperose & Rockgitarre - Die Volksmusik der anderen Schweiz (10958ms)\nHow many official languages does Switzerland have?\tWorld War II\t-2.6191141206260826\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Shot from the Sky: American POWs in Switzerland, Subjects, World War II) -> World War II (10958ms)\nHow many official languages does Switzerland have?\tSwitzerland during the World Wars\t-2.6191141206260826\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Shot from the Sky: American POWs in Switzerland, Subjects, Switzerland during the World Wars) -> Switzerland during the World Wars (10958ms)\nHow many official languages does Switzerland have?\tDescription and travel\t-2.6429378171453544\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (The scenery of Switzerland and the causes to which it is due, Subjects, Description and travel) -> Description and travel (10958ms)\nHow many official languages does Switzerland have?\tSpiel mir das Lied vom Tod\": \"Once Upon A Time In The West\"\t-2.6531479727964706\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Spiel mir das Lied vom Tod\": \"Once Upon A Time In The West\", Region, Switzerland) -> Spiel mir das Lied vom Tod\": \"Once Upon A Time In The West\" (10958ms)\nHow many official languages does Switzerland have?\tNationalities and Nationalism\t-2.6924178022238414\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland is a curst, selfish, swinish country of brutes, placed in the most romantic region of the world., Subjects, Nationalities and Nationalism) -> Nationalities and Nationalism (10958ms)\nHow many official languages does Switzerland have?\tHaubi Songs\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Haubi Songs, Region, Switzerland) -> Haubi Songs (11085ms)\nHow many official languages does Switzerland have?\tMadre Tierra\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Madre Tierra, Region, Switzerland) -> Madre Tierra (11085ms)\nHow many official languages does Switzerland have?\tGertrud Stein\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gertrud Stein, Region, Switzerland) -> Gertrud Stein (11085ms)\nHow many official languages does Switzerland have?\tGraveyard Swing\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Graveyard Swing, Region, Switzerland) -> Graveyard Swing (11085ms)\nHow many official languages does Switzerland have?\tPermanent Hangover\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Permanent Hangover, Region, Switzerland) -> Permanent Hangover (11084ms)\nHow many official languages does Switzerland have?\tRegular Pleasures\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Regular Pleasures, Region, Switzerland) -> Regular Pleasures (11085ms)\nHow many official languages does Switzerland have?\tSchwiizer Chinderlieder\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Schwiizer Chinderlieder, Region, Switzerland) -> Schwiizer Chinderlieder (11084ms)\nHow many official languages does Switzerland have?\tGravitational Systems\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gravitational Systems, Region, Switzerland) -> Gravitational Systems (11192ms)\nHow many official languages does Switzerland have?\tLightning Arise\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Lightning Arise, Region, Switzerland) -> Lightning Arise (11192ms)\nHow many official languages does Switzerland have?\tMitsing Wienacht\t-2.7218481529958063\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Mitsing Wienacht, Region, Switzerland) -> Mitsing Wienacht (11085ms)\nHow many official languages does Switzerland have?\tFinger 4\t-2.7408193313978493\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Finger 4, Region, Switzerland) -> Finger 4 (11192ms)\nHow many official languages does Switzerland have?\tPolwechsel 2\t-2.7408193313978493\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Polwechsel 2, Region, Switzerland) -> Polwechsel 2 (11192ms)\nHow many official languages does Switzerland have?\tRound 13\t-2.7408193313978493\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Round 13, Region, Switzerland) -> Round 13 (11192ms)\nHow many official languages does Switzerland have?\tFuturescope F-001\t-2.7408193313978493\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Futurescope F-001, Region, Switzerland) -> Futurescope F-001 (11192ms)\nHow many official languages does Switzerland have?\t8i Bahnhof\t-2.7408193313978493\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (8i Bahnhof, Region, Switzerland) -> 8i Bahnhof (11192ms)\nHow many official languages does Switzerland have?\tEMOS Konzert 2012\t-2.779803562065748\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (EMOS Konzert 2012, Region, Switzerland) -> EMOS Konzert 2012 (11435ms)\nHow many official languages does Switzerland have?\tEnergy 99 Millennium\t-2.779803562065748\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Energy 99 Millennium, Region, Switzerland) -> Energy 99 Millennium (11435ms)\nHow many official languages does Switzerland have?\t16 Unforgettable Hits\t-2.779803562065748\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (16 Unforgettable Hits, Region, Switzerland) -> 16 Unforgettable Hits (11435ms)\nHow many official languages does Switzerland have?\tWalser German\t-2.807284233101083\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, main country, Switzerland) -> (Walser German, Main Country, Switzerland) -> Walser German (11581ms)\nHow many official languages does Switzerland have?\tBullshit Detector, Volume 4\t-2.812290420955664\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Bullshit Detector, Volume 4, Region, Switzerland) -> Bullshit Detector, Volume 4 (11581ms)\nHow many official languages does Switzerland have?\tAbart Alternative Nation, Volume 2\t-2.839779301554824\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Abart Alternative Nation, Volume 2, Region, Switzerland) -> Abart Alternative Nation, Volume 2 (11581ms)\nHow many official languages does Switzerland have?\t3 Suits & A Violin\t-2.839779301554824\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (3 Suits & A Violin, Region, Switzerland) -> 3 Suits & A Violin (11581ms)\nHow many official languages does Switzerland have?\tDJ Noise - Finger 1\t-2.839779301554824\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (DJ Noise - Finger 1, Region, Switzerland) -> DJ Noise - Finger 1 (11581ms)\nHow many official languages does Switzerland have?\tChill Out Sofabeat, Volume 3\t-2.839779301554824\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Chill Out Sofabeat, Volume 3, Region, Switzerland) -> Chill Out Sofabeat, Volume 3 (11581ms)\nHow many official languages does Switzerland have?\tHighlights of Silent Dreams, Volume 2\t-2.863341199211246\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Highlights of Silent Dreams, Volume 2, Region, Switzerland) -> Highlights of Silent Dreams, Volume 2 (11677ms)\nHow many official languages does Switzerland have?\tEarly works to 1800\t-2.883761510513479\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (An account of Switzerland, Subjects, Early works to 1800) -> Early works to 1800 (11752ms)\nHow many official languages does Switzerland have?\tWillisau (Quartet) 1991 - Studio/Live (disc 4)\t-2.883761510513479\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Willisau (Quartet) 1991 - Studio/Live (disc 4), Region, Switzerland) -> Willisau (Quartet) 1991 - Studio/Live (disc 4) (11677ms)\nHow many official languages does Switzerland have?\tBetrachtige ?ber nes Sandwitsch (Berner Chansons 20)\t-2.883761510513479\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Betrachtige ?ber nes Sandwitsch (Berner Chansons 20), Region, Switzerland) -> Betrachtige ?ber nes Sandwitsch (Berner Chansons 20) (11752ms)\nHow many official languages does Switzerland have?\tLouis Hayes - Woody Shaw Quintet - Lausanne 1977\t-2.901629282902933\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Louis Hayes - Woody Shaw Quintet - Lausanne 1977, Region, Switzerland) -> Louis Hayes - Woody Shaw Quintet - Lausanne 1977 (11882ms)\nHow many official languages does Switzerland have?\tSamuel Prout\t-2.912437725149979\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Sketches by Samuel Prout in France, Belgium, Germany, Italy and Switzerland, Subjects, Samuel Prout) -> Samuel Prout (11882ms)\nHow many official languages does Switzerland have?\tHolland and Belgium\t-2.940964414806079\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Holland and Belgium, Also known as, Switzerland.) -> Holland and Belgium (11882ms)\nHow many official languages does Switzerland have?\tcountry\t-2.9823370256700126\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a, country) -> country (11882ms)\nHow many official languages does Switzerland have?\tStatic\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Static, Region, Switzerland) -> Static (12139ms)\nHow many official languages does Switzerland have?\tCrystallized\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Crystallized, Region, Switzerland) -> Crystallized (12248ms)\nHow many official languages does Switzerland have?\tLombard\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Lombard, Locale, Switzerland) -> Lombard (12859ms)\nHow many official languages does Switzerland have?\tZytvertryb\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Zytvertryb, Region, Switzerland) -> Zytvertryb (12050ms)\nHow many official languages does Switzerland have?\tPlatinum\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Platinum, Region, Switzerland) -> Platinum (12139ms)\nHow many official languages does Switzerland have?\tFrench\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (French, Locale, Switzerland) -> French (12050ms)\nHow many official languages does Switzerland have?\tSt?rntaler\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (St?rntaler, Region, Switzerland) -> St?rntaler (12138ms)\nHow many official languages does Switzerland have?\tDorfgschichta\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Dorfgschichta, Region, Switzerland) -> Dorfgschichta (12139ms)\nHow many official languages does Switzerland have?\tYeniche\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Yeniche, Locale, Switzerland) -> Yeniche (12248ms)\nHow many official languages does Switzerland have?\tSpanish\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Spanish, Locale, Switzerland) -> Spanish (12138ms)\nHow many official languages does Switzerland have?\tSlotters\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Slotters, Region, Switzerland) -> Slotters (12050ms)\nHow many official languages does Switzerland have?\tMambogimp\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Mambogimp, Region, Switzerland) -> Mambogimp (12248ms)\nHow many official languages does Switzerland have?\tTurkish\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Turkish, Locale, Switzerland) -> Turkish (12341ms)\nHow many official languages does Switzerland have?\tSerbian\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Serbian, Locale, Switzerland) -> Serbian (12341ms)\nHow many official languages does Switzerland have?\tUnited\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (United, Region, Switzerland) -> United (12248ms)\nHow many official languages does Switzerland have?\tHeartcore\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Heartcore, Region, Switzerland) -> Heartcore (12248ms)\nHow many official languages does Switzerland have?\tEvolution\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Evolution, Region, Switzerland) -> Evolution (12050ms)\nHow many official languages does Switzerland have?\tPaths\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Paths, Region, Switzerland) -> Paths (12341ms)\nHow many official languages does Switzerland have?\tPortuguese\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Portuguese, Locale, Switzerland) -> Portuguese (12341ms)\nHow many official languages does Switzerland have?\tItalian\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Italian, Locale, Switzerland) -> Italian (12248ms)\nHow many official languages does Switzerland have?\tWasserleichentr?ume\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Wasserleichentr?ume, Region, Switzerland) -> Wasserleichentr?ume (12341ms)\nHow many official languages does Switzerland have?\tKirmanjki\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Kirmanjki, Locale, Switzerland) -> Kirmanjki (12341ms)\nHow many official languages does Switzerland have?\tGaiascension\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gaiascension, Region, Switzerland) -> Gaiascension (12050ms)\nHow many official languages does Switzerland have?\tTibetan\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Tibetan, Locale, Switzerland) -> Tibetan (12341ms)\nHow many official languages does Switzerland have?\tBlockstoff\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Blockstoff, Region, Switzerland) -> Blockstoff (12248ms)\nHow many official languages does Switzerland have?\tMetallsp?rhunde\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Metallsp?rhunde, Region, Switzerland) -> Metallsp?rhunde (12050ms)\nHow many official languages does Switzerland have?\tPiano\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Piano, Region, Switzerland) -> Piano (12248ms)\nHow many official languages does Switzerland have?\tWalser\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Walser, Locale, Switzerland) -> Walser (12139ms)\nHow many official languages does Switzerland have?\tPlurabelle\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Plurabelle, Region, Switzerland) -> Plurabelle (12050ms)\nHow many official languages does Switzerland have?\tRomansch\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Romansch, Locale, Switzerland) -> Romansch (12138ms)\nHow many official languages does Switzerland have?\tR?benblast\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (R?benblast, Region, Switzerland) -> R?benblast (12138ms)\nHow many official languages does Switzerland have?\tSchwyzerd?tsch\t-2.9857658821754316\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Schwyzerd?tsch, Locale, Switzerland) -> Schwyzerd?tsch (12050ms)\nHow many official languages does Switzerland have?\tEducation\t-3.0334132752139746\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Education in Switzerland, Subjects, Education) -> Education (13026ms)\nHow many official languages does Switzerland have?\tGeology\t-3.132373245370949\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (The prim?val world of Switzerland, Subjects, Geology) -> Geology (13240ms)\nHow many official languages does Switzerland have?\tAchievement\t-3.132373245370949\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (In Switzerland they had brotherly love, five hundred years of democracy and peace, and what did they produce? The cuckoo clock!, Subjects, Achievement) -> Achievement (13240ms)\nHow many official languages does Switzerland have?\tIseltwald\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Iseltwald, Also known as, Iseltwald, Switzerland) -> Iseltwald (13517ms)\nHow many official languages does Switzerland have?\tFlurlingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Flurlingen, Also known as, Flurlingen, Switzerland) -> Flurlingen (14060ms)\nHow many official languages does Switzerland have?\tCoppet\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Coppet, Also known as, Coppet, Switzerland) -> Coppet (14517ms)\nHow many official languages does Switzerland have?\tBiasca\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Biasca, Also known as, Biasca, Switzerland) -> Biasca (14590ms)\nHow many official languages does Switzerland have?\tAltishofen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Altishofen, Also known as, Altishofen, Switzerland) -> Altishofen (13923ms)\nHow many official languages does Switzerland have?\tBettingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bettingen, Also known as, Bettingen, Switzerland) -> Bettingen (14692ms)\nHow many official languages does Switzerland have?\tZ?rich\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Z?rich, Also known as, Zurich, Switzerland) -> Z?rich (13516ms)\nHow many official languages does Switzerland have?\tHildisrieden\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Hildisrieden, Also known as, Hildisrieden, Switzerland) -> Hildisrieden (13757ms)\nHow many official languages does Switzerland have?\tThusis\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Thusis, Also known as, Thusis, Switzerland) -> Thusis (14590ms)\nHow many official languages does Switzerland have?\tSatigny\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Satigny, Also known as, Satigny, Switzerland) -> Satigny (14134ms)\nHow many official languages does Switzerland have?\tSeehof\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Seehof, Also known as, Seehof, Switzerland) -> Seehof (14692ms)\nHow many official languages does Switzerland have?\tLodrino\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Lodrino, Also known as, Lodrino, Switzerland) -> Lodrino (14517ms)\nHow many official languages does Switzerland have?\tSalvan\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Salvan, Also known as, Salvan, Switzerland) -> Salvan (13923ms)\nHow many official languages does Switzerland have?\tBardonnex\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bardonnex, Also known as, Bardonnex, Switzerland) -> Bardonnex (13518ms)\nHow many official languages does Switzerland have?\tArbaz\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Arbaz, Also known as, Arbaz, Switzerland) -> Arbaz (14517ms)\nHow many official languages does Switzerland have?\tLangrickenbach\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Langrickenbach, Also known as, Langrickenbach, Switzerland) -> Langrickenbach (14590ms)\nHow many official languages does Switzerland have?\tNiederwald\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Niederwald, Also known as, Niederwald, Switzerland) -> Niederwald (14060ms)\nHow many official languages does Switzerland have?\tPlagne\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Plagne, Also known as, Plagne, Switzerland) -> Plagne (13923ms)\nHow many official languages does Switzerland have?\tVernay\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Vernay, Also known as, Vernay, Switzerland) -> Vernay (13518ms)\nHow many official languages does Switzerland have?\tBellach\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bellach, Also known as, Bellach, Switzerland) -> Bellach (14517ms)\nHow many official languages does Switzerland have?\tErlach\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Erlach, Also known as, Erlach, Switzerland) -> Erlach (14133ms)\nHow many official languages does Switzerland have?\tOberthal\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oberthal, Also known as, Oberthal, Switzerland) -> Oberthal (14762ms)\nHow many official languages does Switzerland have?\tTermen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Termen, Also known as, Termen, Switzerland) -> Termen (13757ms)\nHow many official languages does Switzerland have?\tBiberist\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Biberist, Also known as, Biberist, Switzerland) -> Biberist (14060ms)\nHow many official languages does Switzerland have?\tDavos\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Davos, Also known as, Davos, Switzerland) -> Davos (13924ms)\nHow many official languages does Switzerland have?\tLosone\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Losone, Also known as, Losone, Switzerland) -> Losone (13923ms)\nHow many official languages does Switzerland have?\tNidfurn\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Nidfurn, Also known as, Nidfurn, Switzerland) -> Nidfurn (14692ms)\nHow many official languages does Switzerland have?\tEntlebuch\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Entlebuch, Also known as, Entlebuch, Switzerland) -> Entlebuch (13923ms)\nHow many official languages does Switzerland have?\tArolla\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Arolla, Also known as, Arolla, Switzerland) -> Arolla (14133ms)\nHow many official languages does Switzerland have?\tAffeltrangen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Affeltrangen, Also known as, Affeltrangen, Switzerland) -> Affeltrangen (13416ms)\nHow many official languages does Switzerland have?\tOberrieden\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oberrieden, Also known as, Oberrieden, Switzerland) -> Oberrieden (14517ms)\nHow many official languages does Switzerland have?\tErmatingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ermatingen, Also known as, Ermatingen, Switzerland) -> Ermatingen (14762ms)\nHow many official languages does Switzerland have?\tH?chstetten\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (H?chstetten, Also known as, H?chstetten, Switzerland) -> H?chstetten (13416ms)\nHow many official languages does Switzerland have?\tChigny\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Chigny, Also known as, Chigny, Switzerland) -> Chigny (13978ms)\nHow many official languages does Switzerland have?\tLaufenburg\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Laufenburg, Also known as, Laufenburg, Switzerland) -> Laufenburg (13517ms)\nHow many official languages does Switzerland have?\tFinhaut\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Finhaut, Also known as, Finhaut, Switzerland) -> Finhaut (14060ms)\nHow many official languages does Switzerland have?\tEglisau\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Eglisau, Also known as, Eglisau, Switzerland) -> Eglisau (13416ms)\nHow many official languages does Switzerland have?\tOensingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oensingen, Also known as, Oensingen, Switzerland) -> Oensingen (14590ms)\nHow many official languages does Switzerland have?\tZofingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Zofingen, Also known as, Zofingen, Switzerland) -> Zofingen (13757ms)\nHow many official languages does Switzerland have?\tGimmelwald\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Gimmelwald, Also known as, Gimmelwald, Switzerland) -> Gimmelwald (14134ms)\nHow many official languages does Switzerland have?\tEgolzwil\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Egolzwil, Also known as, Egolzwil, Switzerland) -> Egolzwil (14590ms)\nHow many official languages does Switzerland have?\tTroinex\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Troinex, Also known as, Troinex, Switzerland) -> Troinex (14517ms)\nHow many official languages does Switzerland have?\tBettlach\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bettlach, Also known as, Bettlach, Switzerland) -> Bettlach (13978ms)\nHow many official languages does Switzerland have?\tSiblingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Siblingen, Also known as, Siblingen, Switzerland) -> Siblingen (13757ms)\nHow many official languages does Switzerland have?\tGrellingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Grellingen, Also known as, Grellingen, Switzerland) -> Grellingen (14692ms)\nHow many official languages does Switzerland have?\tSisikon\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Sisikon, Also known as, Sisikon, Switzerland) -> Sisikon (13516ms)\nHow many official languages does Switzerland have?\tFilet\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Filet, Also known as, Filet, Switzerland) -> Filet (14133ms)\nHow many official languages does Switzerland have?\tRifferswil\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Rifferswil, Also known as, Rifferswil, Switzerland) -> Rifferswil (13978ms)\nHow many official languages does Switzerland have?\tDagmersellen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Dagmersellen, Also known as, Dagmersellen, Switzerland) -> Dagmersellen (13416ms)\nHow many official languages does Switzerland have?\tCorcelles\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Corcelles, Also known as, Corcelles, Switzerland) -> Corcelles (13923ms)\nHow many official languages does Switzerland have?\tAusserberg\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ausserberg, Also known as, Ausserberg, Switzerland) -> Ausserberg (14692ms)\nHow many official languages does Switzerland have?\tLittau\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Littau, Also known as, Littau, Switzerland) -> Littau (13757ms)\nHow many official languages does Switzerland have?\tNenzlingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Nenzlingen, Also known as, Nenzlingen, Switzerland) -> Nenzlingen (14060ms)\nHow many official languages does Switzerland have?\tZiefen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ziefen, Also known as, Ziefen, Switzerland) -> Ziefen (13924ms)\nHow many official languages does Switzerland have?\tTurtmann\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Turtmann, Also known as, Turtmann, Switzerland) -> Turtmann (14060ms)\nHow many official languages does Switzerland have?\tEnnetmoos\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ennetmoos, Also known as, Ennetmoos, Switzerland) -> Ennetmoos (14762ms)\nHow many official languages does Switzerland have?\tOberglatt\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oberglatt, Also known as, Oberglatt, Switzerland) -> Oberglatt (14134ms)\nHow many official languages does Switzerland have?\tOftringen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oftringen, Also known as, Oftringen, Switzerland) -> Oftringen (14692ms)\nHow many official languages does Switzerland have?\tF?tigny\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (F?tigny, Also known as, F?tigny, Switzerland) -> F?tigny (14134ms)\nHow many official languages does Switzerland have?\tLenzerheide\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Lenzerheide, Also known as, Lenzerheide, Switzerland) -> Lenzerheide (13416ms)\nHow many official languages does Switzerland have?\tLupsingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Lupsingen, Also known as, Lupsingen, Switzerland) -> Lupsingen (14590ms)\nHow many official languages does Switzerland have?\tWikon\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Wikon, Also known as, Wikon, Switzerland) -> Wikon (13757ms)\nHow many official languages does Switzerland have?\tBrugg\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Brugg, Also known as, Brugg, Switzerland) -> Brugg (14692ms)\nHow many official languages does Switzerland have?\tCroglio\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Croglio, Also known as, Croglio, Switzerland) -> Croglio (14134ms)\nHow many official languages does Switzerland have?\tGunzwil\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Gunzwil, Also known as, Gunzwil, Switzerland) -> Gunzwil (13978ms)\nHow many official languages does Switzerland have?\tKirchdorf\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Kirchdorf, Also known as, Kirchdorf, Switzerland) -> Kirchdorf (14060ms)\nHow many official languages does Switzerland have?\tF?rstenau\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (F?rstenau, Also known as, F?rstenau, Switzerland) -> F?rstenau (13977ms)\nHow many official languages does Switzerland have?\tRiederalp\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Riederalp, Also known as, Riederalp, Switzerland) -> Riederalp (13978ms)\nHow many official languages does Switzerland have?\tMattenbach\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Mattenbach, Also known as, Mattenbach, Switzerland) -> Mattenbach (13978ms)\nHow many official languages does Switzerland have?\tEttiswil\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ettiswil, Also known as, Ettiswil, Switzerland) -> Ettiswil (13516ms)\nHow many official languages does Switzerland have?\tLuchsingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Luchsingen, Also known as, Luchsingen, Switzerland) -> Luchsingen (13416ms)\nHow many official languages does Switzerland have?\tMontagnola\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Montagnola, Also known as, Montagnola, Switzerland) -> Montagnola (14692ms)\nHow many official languages does Switzerland have?\tSchaffhausen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Schaffhausen, Also known as, Schaffhausen, Switzerland) -> Schaffhausen (14590ms)\nHow many official languages does Switzerland have?\tKnutwil\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Knutwil, Also known as, Knutwil, Switzerland) -> Knutwil (13977ms)\nHow many official languages does Switzerland have?\tBottighofen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bottighofen, Also known as, Bottighofen, Switzerland) -> Bottighofen (13757ms)\nHow many official languages does Switzerland have?\tErlen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Erlen, Also known as, Erlen, Switzerland) -> Erlen (14517ms)\nHow many official languages does Switzerland have?\tMuhen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Muhen, Also known as, Muhen, Switzerland) -> Muhen (13516ms)\nHow many official languages does Switzerland have?\tLommiswil\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Lommiswil, Also known as, Lommiswil, Switzerland) -> Lommiswil (13757ms)\nHow many official languages does Switzerland have?\tHemishofen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Hemishofen, Also known as, Hemishofen, Switzerland) -> Hemishofen (14590ms)\nHow many official languages does Switzerland have?\tCampello\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Campello, Also known as, Campello, Switzerland) -> Campello (14762ms)\nHow many official languages does Switzerland have?\tSubingen\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Subingen, Also known as, Subingen, Switzerland) -> Subingen (14060ms)\nHow many official languages does Switzerland have?\tRiddes\t-3.1884976937590697\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Riddes, Also known as, Riddes, Switzerland) -> Riddes (14517ms)\nHow many official languages does Switzerland have?\tNation\t-3.2835620886663266\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland is simply a large, lumpy, solid rock with a thin skin of grass stretched over it., Subjects, Nation) -> Nation (14939ms)\nHow many official languages does Switzerland have?\tcountry of many different religions, confessions, language and culture\t-3.3456755811023475\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of many different religions, confessions, language and culture) -> country of many different religions, confessions, language and culture (15041ms)\nHow many official languages does Switzerland have?\tcountry of three language\t-3.4236440424381454\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of three language) -> country of three language (15170ms)\nHow many official languages does Switzerland have?\tofficial tri-ethnic state\t-3.4236440424381454\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, official tri-ethnic state) -> official tri-ethnic state (15170ms)\nHow many official languages does Switzerland have?\tconfederation\t-3.4244979432122458\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, confederation) -> confederation (15201ms)\nHow many official languages does Switzerland have?\trepublic\t-3.4244979432122458\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, republic) -> republic (15201ms)\nHow many official languages does Switzerland have?\tlatitude\t-3.4272397871846865\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, latitude) -> latitude (15201ms)\nHow many official languages does Switzerland have?\tNEW\t-3.4284888886681775\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a proxy for, NEW) -> NEW (15201ms)\nHow many official languages does Switzerland have?\teuropean nation\t-3.4593999521232117\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, european nation) -> european nation (15232ms)\nHow many official languages does Switzerland have?\tGlobalization\t-3.4622398125608638\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Anti-WEF protests in Switzerland, January 2003, Subject of protest, Globalization) -> Globalization (15232ms)\nHow many official languages does Switzerland have?\tSTATES\t-3.5178277506154463\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a country located in the geopolitical location, STATES) -> STATES (15262ms)\nHow many official languages does Switzerland have?\twestern european country\t-3.5280872140690365\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, western european country) -> western european country (15262ms)\nHow many official languages does Switzerland have?\tgerman\t-3.5308660079961687\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, be the language of the country, Switzerland) -> (german, is the language of the country, SWITZERLAND) -> german (15262ms)\nHow many official languages does Switzerland have?\tneutral nation\t-3.5619710657005186\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, neutral nation) -> neutral nation (15292ms)\nHow many official languages does Switzerland have?\tdonor country\t-3.644318314941839\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, donor country) -> donor country (15323ms)\nHow many official languages does Switzerland have?\tclean financial center\t-3.6483792795855483\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, clean financial center) -> clean financial center (15322ms)\nHow many official languages does Switzerland have?\tSwiss\t-3.704089860149346\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, adjectival form, $x) -> (Switzerland, Adjectival form, Swiss) -> Swiss (15471ms)\nHow many official languages does Switzerland have?\tGerman and French\t-3.7159925689398725\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, be the official language of, Switzerland) -> (German and French, are the official languages of, Switzerland) -> German and French (15471ms)\nHow many official languages does Switzerland have?\tenvironmentally advanced country\t-3.760306884015602\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, environmentally advanced country) -> environmentally advanced country (15598ms)\nHow many official languages does Switzerland have?\tsmall mountaneous country\t-3.760306884015602\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, small mountaneous country) -> small mountaneous country (15598ms)\nHow many official languages does Switzerland have?\tcoutries&regions\t-3.774502118449236\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, coutries&regions) -> coutries&regions (15598ms)\nHow many official languages does Switzerland have?\tmountain area\t-3.7799819372368866\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, mountain area) -> mountain area (15679ms)\nHow many official languages does Switzerland have?\tpreferred international financial center\t-3.7877957646147618\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, preferred international financial center) -> preferred international financial center (15679ms)\nHow many official languages does Switzerland have?\teuropean and asian country\t-3.7877957646147618\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, european and asian country) -> european and asian country (15679ms)\nHow many official languages does Switzerland have?\tpure ophthalmology market\t-3.801079252571909\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, pure ophthalmology market) -> pure ophthalmology market (15725ms)\nHow many official languages does Switzerland have?\thub of Adventure Sports\t-3.801079252571909\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, hub of Adventure Sports) -> hub of Adventure Sports (15679ms)\nHow many official languages does Switzerland have?\tthree level confederation\t-3.801079252571909\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, three level confederation) -> three level confederation (15725ms)\nHow many official languages does Switzerland have?\timporter of Spanish jewellery\t-3.801079252571909\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, importer of Spanish jewellery) -> importer of Spanish jewellery (15679ms)\nHow many official languages does Switzerland have?\tmulticultural nation\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, multicultural nation) -> multicultural nation (15961ms)\nHow many official languages does Switzerland have?\tcivilized state\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, civilized state) -> civilized state (15848ms)\nHow many official languages does Switzerland have?\tTIMSS country\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, TIMSS country) -> TIMSS country (15910ms)\nHow many official languages does Switzerland have?\tland of railway\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of railway) -> land of railway (15961ms)\nHow many official languages does Switzerland have?\tinsured nation\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, insured nation) -> insured nation (15911ms)\nHow many official languages does Switzerland have?\thands-off country\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, hands-off country) -> hands-off country (15910ms)\nHow many official languages does Switzerland have?\tplebiscitary democracy\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, plebiscitary democracy) -> plebiscitary democracy (15848ms)\nHow many official languages does Switzerland have?\tleveraged case\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, leveraged case) -> leveraged case (15961ms)\nHow many official languages does Switzerland have?\tland of glitz\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of glitz) -> land of glitz (15725ms)\nHow many official languages does Switzerland have?\testablished polity\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, established polity) -> established polity (15961ms)\nHow many official languages does Switzerland have?\tbanking center\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, banking center) -> banking center (15848ms)\nHow many official languages does Switzerland have?\tanimal-enlightened country\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, animal-enlightened country) -> animal-enlightened country (15911ms)\nHow many official languages does Switzerland have?\tUSAID partner\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, USAID partner) -> USAID partner (15910ms)\nHow many official languages does Switzerland have?\tfederally-organised state\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, federally-organised state) -> federally-organised state (15725ms)\nHow many official languages does Switzerland have?\tfavorable country\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, favorable country) -> favorable country (15910ms)\nHow many official languages does Switzerland have?\tprosperous country\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, prosperous country) -> prosperous country (15911ms)\nHow many official languages does Switzerland have?\tnation of exile\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, nation of exile) -> nation of exile (15848ms)\nHow many official languages does Switzerland have?\tland of watch\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of watch) -> land of watch (15848ms)\nHow many official languages does Switzerland have?\tcountry of order\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of order) -> country of order (15848ms)\nHow many official languages does Switzerland have?\tmarket country\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, market country) -> market country (15910ms)\nHow many official languages does Switzerland have?\tsemi-direct democracy\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, semi-direct democracy) -> semi-direct democracy (15848ms)\nHow many official languages does Switzerland have?\tbordering country\t-3.8134863491171354\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, bordering country) -> bordering country (15848ms)\nHow many official languages does Switzerland have?\taffluent society\t-3.817062667621837\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, affluent society) -> affluent society (15961ms)\nHow many official languages does Switzerland have?\tdebate\t-3.8174817608450313\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland, became a subject of, debate) -> debate (15961ms)\nHow many official languages does Switzerland have?\tmarket nation\t-3.8186273068718855\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, market nation) -> market nation (15961ms)\nHow many official languages does Switzerland have?\twords\t-3.818774955973984\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (words, are only used in, Switzerland) -> words (16005ms)\nHow many official languages does Switzerland have?\tcountry pavilion\t-3.8226258296381186\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country pavilion) -> country pavilion (16005ms)\nHow many official languages does Switzerland have?\tmodern case\t-3.8237682646266355\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, modern case) -> modern case (16005ms)\nHow many official languages does Switzerland have?\tfederated state\t-3.8237682646266355\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, federated state) -> federated state (16005ms)\nHow many official languages does Switzerland have?\testablished centre\t-3.8261410148310198\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, established centre) -> established centre (16005ms)\nHow many official languages does Switzerland have?\tland of highly regulated cartel\t-3.8285681331710686\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of highly regulated cartel) -> land of highly regulated cartel (16005ms)\nHow many official languages does Switzerland have?\tland-locked country of mostly mountain\t-3.8285681331710686\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land-locked country of mostly mountain) -> land-locked country of mostly mountain (16005ms)\nHow many official languages does Switzerland have?\ttraditional powerhouse\t-3.8335486237603353\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, traditional powerhouse) -> traditional powerhouse (16078ms)\nHow many official languages does Switzerland have?\tpure democracy\t-3.8409047912929353\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, pure democracy) -> pure democracy (16078ms)\nHow many official languages does Switzerland have?\tamazing ski country\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, amazing ski country) -> amazing ski country (16370ms)\nHow many official languages does Switzerland have?\tfamous pricey country\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, famous pricey country) -> famous pricey country (16370ms)\nHow many official languages does Switzerland have?\tflat, marshy country\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, flat, marshy country) -> flat, marshy country (16178ms)\nHow many official languages does Switzerland have?\tincredibly multi-lingual country\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, incredibly multi-lingual country) -> incredibly multi-lingual country (16370ms)\nHow many official languages does Switzerland have?\tenergy trading center\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, energy trading center) -> energy trading center (16370ms)\nHow many official languages does Switzerland have?\ttraditional tourism country\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, traditional tourism country) -> traditional tourism country (16370ms)\nHow many official languages does Switzerland have?\tland of pleasant person\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of pleasant person) -> land of pleasant person (16178ms)\nHow many official languages does Switzerland have?\tmagnificent, impressive land\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, magnificent, impressive land) -> magnificent, impressive land (16178ms)\nHow many official languages does Switzerland have?\taffluent, flourishing country\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, affluent, flourishing country) -> affluent, flourishing country (16370ms)\nHow many official languages does Switzerland have?\tgreat suicide destination\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, great suicide destination) -> great suicide destination (16416ms)\nHow many official languages does Switzerland have?\twest european destination\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, west european destination) -> west european destination (16370ms)\nHow many official languages does Switzerland have?\tphysically fit country\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, physically fit country) -> physically fit country (16178ms)\nHow many official languages does Switzerland have?\tcountry of strong unity\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of strong unity) -> country of strong unity (16370ms)\nHow many official languages does Switzerland have?\tgreat, independant nation\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, great, independant nation) -> great, independant nation (16178ms)\nHow many official languages does Switzerland have?\tlavishly colorful place\t-3.8459732080070514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, lavishly colorful place) -> lavishly colorful place (16178ms)\nHow many official languages does Switzerland have?\tchecks\t-3.86169160792281\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland, may be subject to, checks) -> checks (16416ms)\nHow many official languages does Switzerland have?\twest european nation\t-3.8665370390260514\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, west european nation) -> west european nation (16416ms)\nHow many official languages does Switzerland have?\tsafe, peaceful, beautiful land of no opportunity\t-3.872550342129724\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, safe, peaceful, beautiful land of no opportunity) -> safe, peaceful, beautiful land of no opportunity (16416ms)\nHow many official languages does Switzerland have?\tmember of the Good Humanitarian Donorship group\t-3.872550342129724\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, member of the Good Humanitarian Donorship group) -> member of the Good Humanitarian Donorship group (16416ms)\nHow many official languages does Switzerland have?\tland locked European Country\t-3.8734620886062108\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land locked European Country) -> land locked European Country (16416ms)\nHow many official languages does Switzerland have?\tliberal health public system\t-3.8734620886062108\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, liberal health public system) -> liberal health public system (16519ms)\nHow many official languages does Switzerland have?\tmuch favored retirement destination\t-3.8734620886062108\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, much favored retirement destination) -> much favored retirement destination (16513ms)\nHow many official languages does Switzerland have?\tcountry of insane civil action\t-3.8734620886062108\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of insane civil action) -> country of insane civil action (16416ms)\nHow many official languages does Switzerland have?\tinternationally recognized financial jurisdiction\t-3.8734620886062108\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, internationally recognized financial jurisdiction) -> internationally recognized financial jurisdiction (16519ms)\nHow many official languages does Switzerland have?\tatypical and strange place\t-3.8734620886062108\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, atypical and strange place) -> atypical and strange place (16519ms)\nHow many official languages does Switzerland have?\tfederated country of central Europe\t-3.8734620886062108\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, federated country of central Europe) -> federated country of central Europe (16519ms)\nHow many official languages does Switzerland have?\tpolite, very orderly country\t-3.8734620886062108\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, polite, very orderly country) -> polite, very orderly country (16519ms)\nHow many official languages does Switzerland have?\tland of full employment and rank\t-3.8970239862626332\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of full employment and rank) -> land of full employment and rank (16639ms)\nHow many official languages does Switzerland have?\tmember state of the European Convention\t-3.8970239862626332\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, member state of the European Convention) -> member state of the European Convention (16639ms)\nHow many official languages does Switzerland have?\tmember state of the Lugano Convention\t-3.8970239862626332\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, member state of the Lugano Convention) -> member state of the Lugano Convention (16639ms)\nHow many official languages does Switzerland have?\tcurious case study of a nation\t-3.8970239862626332\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, curious case study of a nation) -> curious case study of a nation (16639ms)\nHow many official languages does Switzerland have?\thighly civilized and open country\t-3.8970239862626332\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, highly civilized and open country) -> highly civilized and open country (16519ms)\nHow many official languages does Switzerland have?\tcountry of hotel and not of restaurant\t-3.8970239862626332\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of hotel and not of restaurant) -> country of hotel and not of restaurant (16639ms)\nHow many official languages does Switzerland have?\tmember of the two expert group\t-3.8970239862626332\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, member of the two expert group) -> member of the two expert group (16639ms)\nHow many official languages does Switzerland have?\tENglish\t-3.905546781436519\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, be the language of the country, Switzerland) -> (ENglish, is the language of the country, SWITZERLAND) -> ENglish (16639ms)\nHow many official languages does Switzerland have?\texporter of capital good and intermediate input\t-3.9174442975648662\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, exporter of capital good and intermediate input) -> exporter of capital good and intermediate input (16710ms)\nHow many official languages does Switzerland have?\tcurst , selfish, swinish country of brute\t-3.9174442975648662\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, curst , selfish, swinish country of brute) -> curst , selfish, swinish country of brute (16710ms)\nHow many official languages does Switzerland have?\tfully functioning modern day direct democracy\t-3.9174442975648662\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, fully functioning modern day direct democracy) -> fully functioning modern day direct democracy (16710ms)\nHow many official languages does Switzerland have?\tcurrency\t-3.9295927067692924\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (currency, use in, Lucerne Switzerland) -> currency (16710ms)\nHow many official languages does Switzerland have?\tfree and independent dnation, accommodating multiple ethnicity\t-3.93531206995432\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, free and independent dnation, accommodating multiple ethnicity) -> free and independent dnation, accommodating multiple ethnicity (16710ms)\nHow many official languages does Switzerland have?\tland of spectacular mountain landscape and dramatic lake\t-3.93531206995432\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of spectacular mountain landscape and dramatic lake) -> land of spectacular mountain landscape and dramatic lake (16710ms)\nHow many official languages does Switzerland have?\thealing\t-4.016978540906131\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (healing, has been widely used in, Switzerland) -> healing (17149ms)\nHow many official languages does Switzerland have?\tmultilingual\t-4.10124935216183\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (Switzerland, is, multilingual) -> multilingual (17246ms)\nHow many official languages does Switzerland have?\tCountries\t-4.104848704968058\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a country located in the geopolitical location, Countries) -> Countries (17246ms)\nHow many official languages does Switzerland have?\tcheques\t-4.109740591924954\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (cheques, are seldom used in, Switzerland) -> cheques (17359ms)\nHow many official languages does Switzerland have?\tfederalist\t-4.15652641407991\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (Switzerland, is, federalist) -> federalist (17359ms)\nHow many official languages does Switzerland have?\t5,000 Watt society\t-4.158267990932991\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, 5,000 Watt society) -> 5,000 Watt society (17359ms)\nHow many official languages does Switzerland have?\tlandlocked alpine country of roughly 7.6 million person\t-4.1619405288888105\tHow many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, landlocked alpine country of roughly 7.6 million person) -> landlocked alpine country of roughly 7.6 million person (17359ms)\nHow tall is the Washington Monument?\tthe Mall\t-5.730611333760726\tHow tall is the Washington Monument? -> how tall [ be the washington monument ] ? -> what be be the washington monument tall ? -> $x: ($x, be be, the washington monument tall) -> (the Mall, is, the tall Washington Monument) -> the Mall (2971ms)\nHow tall is the Washington Monument?\t169.294\t-7.11631113422292\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> (Washington Monument, Structural Height, 169.294) -> 169.294 (3897ms)\nHow tall is the Washington Monument?\tthe photograph\t-7.274147223494016\tHow tall is the Washington Monument? -> how tall [ be the washington monument ] ? -> what be be the washington monument tall ? -> $x: ($x, be be, the washington monument tall) -> (the photograph, is, the tall , slender Washington Monument) -> the photograph (2971ms)\nHow tall is the Washington Monument?\t6 minutes\t-7.7261112644901235\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 6 minutes) -> 6 minutes (3897ms)\nHow tall is the Washington Monument?\t55 feet\t-7.7334840999046\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, 55 feet) -> 55 feet (3897ms)\nHow tall is the Washington Monument?\t209 feet\t-7.756828609500903\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 209 feet) -> 209 feet (3897ms)\nHow tall is the Washington Monument?\t169 meters\t-7.7701561317514924\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 169 meters) -> 169 meters (3897ms)\nHow tall is the Washington Monument?\t555.5 feet\t-7.877079488416591\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, 555.5 feet) -> 555.5 feet (3955ms)\nHow tall is the Washington Monument?\t47622\t-7.877849747824863\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Washington on the Brazos Monument, Length, 47622) -> 47622 (5465ms)\nHow tall is the Washington Monument?\t685746\t-7.877849747824863\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (The Washington Monument in Washington DC., Length, 685746) -> 685746 (5465ms)\nHow tall is the Washington Monument?\t555 feet\t-7.884189608476071\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, 555 feet) -> 555 feet (3955ms)\nHow tall is the Washington Monument?\t11\t-7.961747334661998\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (11, am at, the Washington Monument) -> 11 (4740ms)\nHow tall is the Washington Monument?\t14\t-7.981469326904039\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (Chrisopher Reeve Is Placed Atop The Washington Monument, Track #, 14) -> 14 (5525ms)\nHow tall is the Washington Monument?\t2287161\t-7.997801226803013\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (The Washington Monument dominates the center of the neighborhood, Length, 2287161) -> 2287161 (5464ms)\nHow tall is the Washington Monument?\t79188\t-7.997801226803013\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Baltimore's Washington Monument, the first Washington Monument, in 1890, Length, 79188) -> 79188 (5464ms)\nHow tall is the Washington Monument?\ta 555-foot-tall obelisk\t-8.004106101503302\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a 555-foot-tall obelisk) -> a 555-foot-tall obelisk (3955ms)\nHow tall is the Washington Monument?\t4609636\t-8.085765644720324\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (US Navy 030926-F-2828D-307 Aerial view of the Washington Monument, Length, 4609636) -> 4609636 (5465ms)\nHow tall is the Washington Monument?\ttwo words\t-8.10506640510351\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, are, two words) -> two words (3955ms)\nHow tall is the Washington Monument?\t106218\t-8.12150118949923\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Front view of the Washington Monument located in the Washington Monument State Park, Length, 106218) -> 106218 (5464ms)\nHow tall is the Washington Monument?\t67233\t-8.153032552539443\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Washington Monument illuminated with a message about the Bush environmental legacy, Length, 67233) -> 67233 (5464ms)\nHow tall is the Washington Monument?\tan obelisk 55 feet\t-8.157375478399869\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an obelisk 55 feet) -> an obelisk 55 feet (3955ms)\nHow tall is the Washington Monument?\tGod\t-8.207700090124991\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument Rally, was, God) -> God (3955ms)\nHow tall is the Washington Monument?\ta 555-foot erect penis\t-8.238920489040698\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument obelisk, is, a 555-foot erect penis) -> a 555-foot erect penis (3974ms)\nHow tall is the Washington Monument?\t555.5 feet tall\t-8.240284556783678\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, 555.5 feet tall) -> 555.5 feet tall (3974ms)\nHow tall is the Washington Monument?\ta tall white-colored obelisk\t-8.388717800734288\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a tall white-colored obelisk) -> a tall white-colored obelisk (3974ms)\nHow tall is the Washington Monument?\ta distance\t-8.396185670331217\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, a distance) -> a distance (3974ms)\nHow tall is the Washington Monument?\t55098\t-8.405283456861143\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Japanese Crane Monument at the --National Japanese American Memorial-- (Washington, D, Length, 55098) -> 55098 (5464ms)\nHow tall is the Washington Monument?\t0.0\t-8.40907665787029\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (And the Washington Monument Blinks Goodnight, Length, 0.0) -> 0.0 (5525ms)\nHow tall is the Washington Monument?\t141.84\t-8.40907665787029\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (End the Washington Monument (Blinks) Goodnight, Length, 141.84) -> 141.84 (5525ms)\nHow tall is the Washington Monument?\ta terrorist\t-8.488634255508433\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a terrorist) -> a terrorist (3974ms)\nHow tall is the Washington Monument?\tChrisopher Reeve Is Placed Atop The Washington Monument\t-8.541560333983334\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (Chrisopher Reeve Is Placed Atop The Washington Monument, Tracks, Chrisopher Reeve Is Placed Atop The Washington Monument) -> Chrisopher Reeve Is Placed Atop The Washington Monument (5525ms)\nHow tall is the Washington Monument?\t1\t-8.556958117943365\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (And the Washington Monument Blinks Goodnight, Track #, 1) -> 1 (5525ms)\nHow tall is the Washington Monument?\t2\t-8.556958117943365\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (End the Washington Monument (Blinks) Goodnight, Track #, 2) -> 2 (5525ms)\nHow tall is the Washington Monument?\ta requirement\t-8.563299060932563\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, a requirement) -> a requirement (3993ms)\nHow tall is the Washington Monument?\tthe 1993\t-8.61906237688574\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the 1993) -> the 1993 (3994ms)\nHow tall is the Washington Monument?\t555 ft\t-8.683662755729742\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 555 ft) -> 555 ft (3994ms)\nHow tall is the Washington Monument?\tobelisk.noun.01\t-8.689094789823066\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, have, $x) -> (washington monument.noun.01, has instance, obelisk.noun.01) -> obelisk.noun.01 (5765ms)\nHow tall is the Washington Monument?\tmemorial.noun.03\t-8.689094789823066\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, have, $x) -> (washington monument.noun.01, has instance, memorial.noun.03) -> memorial.noun.03 (5765ms)\nHow tall is the Washington Monument?\ta pencil\t-8.711844326301701\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington monument, is, a pencil) -> a pencil (3994ms)\nHow tall is the Washington Monument?\tNext\t-8.728534533014056\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Next, up was, the Washington Monument) -> Next (4740ms)\nHow tall is the Washington Monument?\ta bit\t-8.79838988889021\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a bit) -> a bit (3993ms)\nHow tall is the Washington Monument?\ta metallic sphere\t-8.813123353373399\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a metallic sphere) -> a metallic sphere (3993ms)\nHow tall is the Washington Monument?\tEnd the Washington Monument (Blinks) Goodnight\t-8.833942063992577\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (End the Washington Monument (Blinks) Goodnight, Tracks, End the Washington Monument (Blinks) Goodnight) -> End the Washington Monument (Blinks) Goodnight (5525ms)\nHow tall is the Washington Monument?\tAnd the Washington Monument Blinks Goodnight\t-8.833942063992577\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (And the Washington Monument Blinks Goodnight, Tracks, And the Washington Monument Blinks Goodnight) -> And the Washington Monument Blinks Goodnight (5525ms)\nHow tall is the Washington Monument?\tthe Lincoln Memorial\t-8.845744335183962\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, are, the Lincoln Memorial) -> the Lincoln Memorial (4013ms)\nHow tall is the Washington Monument?\ta great pity\t-8.849375470139012\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, a great pity) -> a great pity (4013ms)\nHow tall is the Washington Monument?\ta handsome pillar\t-8.852787052069015\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a handsome pillar) -> a handsome pillar (4013ms)\nHow tall is the Washington Monument?\ta miracle\t-8.857374496493364\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument Rally, was, a miracle) -> a miracle (4013ms)\nHow tall is the Washington Monument?\tthe U.S. Capitol\t-8.902599985400302\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the U.S. Capitol) -> the U.S. Capitol (4013ms)\nHow tall is the Washington Monument?\tan obelisk\t-8.90763036437259\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an obelisk) -> an obelisk (4013ms)\nHow tall is the Washington Monument?\ta must-see\t-8.918640767805899\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a must-see) -> a must-see (4031ms)\nHow tall is the Washington Monument?\t800,000 visitors\t-8.938800481839273\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has more than, 800,000 visitors) -> 800,000 visitors (4031ms)\nHow tall is the Washington Monument?\tan imposing presence\t-8.956855382241756\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, an imposing presence) -> an imposing presence (4031ms)\nHow tall is the Washington Monument?\tthirsty Qui\t-8.96727165229375\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, thirsty Qui) -> thirsty Qui (4031ms)\nHow tall is the Washington Monument?\tinterest\t-9.008647157628632\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (interest, was, the iconic Washington Monument) -> interest (4740ms)\nHow tall is the Washington Monument?\tterrorists\t-9.010351015005863\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (terrorists, so is, the Washington Monument) -> terrorists (4740ms)\nHow tall is the Washington Monument?\tan imaginary dividing point\t-9.029990426258383\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, an imaginary dividing point) -> an imaginary dividing point (4031ms)\nHow tall is the Washington Monument?\tfour miles\t-9.031008516802615\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, four miles) -> four miles (4031ms)\nHow tall is the Washington Monument?\tDC\t-9.035654739560325\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (DC, is, the Washington Monument) -> DC (4740ms)\nHow tall is the Washington Monument?\ta much larger replica\t-9.049442737891686\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a much larger replica) -> a much larger replica (4096ms)\nHow tall is the Washington Monument?\tthirsty Merci beaucoup\t-9.051856791104877\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, thirsty Merci beaucoup) -> thirsty Merci beaucoup (4096ms)\nHow tall is the Washington Monument?\ta beautiful national structure\t-9.065358303920604\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a beautiful national structure) -> a beautiful national structure (4095ms)\nHow tall is the Washington Monument?\twheelchair accessible\t-9.065884459856743\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, wheelchair accessible) -> wheelchair accessible (4095ms)\nHow tall is the Washington Monument?\ta Masonic symbol\t-9.067315537213535\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington monument, is, a Masonic symbol) -> a Masonic symbol (4096ms)\nHow tall is the Washington Monument?\ta perfect Egyptian obelisk\t-9.088774885746018\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a perfect Egyptian obelisk) -> a perfect Egyptian obelisk (4096ms)\nHow tall is the Washington Monument?\tD.C.\t-9.096664339068118\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (D.C., is, the Washington Monument) -> D.C. (4798ms)\nHow tall is the Washington Monument?\tan Egyptian obelisk\t-9.102683467578053\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an Egyptian obelisk) -> an Egyptian obelisk (4170ms)\nHow tall is the Washington Monument?\ta beautiful and inspiring sight\t-9.112355055173053\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a beautiful and inspiring sight) -> a beautiful and inspiring sight (4170ms)\nHow tall is the Washington Monument?\t169 meters tall\t-9.11440210506004\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 169 meters tall) -> 169 meters tall (4170ms)\nHow tall is the Washington Monument?\ta beguiling presence\t-9.137559410632182\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a beguiling presence) -> a beguiling presence (4170ms)\nHow tall is the Washington Monument?\tan abandoned stump\t-9.14735013457609\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an abandoned stump) -> an abandoned stump (4170ms)\nHow tall is the Washington Monument?\t2,700\t-9.193514001024631\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has a capacity of, 2,700) -> 2,700 (4170ms)\nHow tall is the Washington Monument?\tthe Mall area\t-9.207025572526417\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the Mall area, is between, the Washington Monument) -> the Mall area (4798ms)\nHow tall is the Washington Monument?\tnew cracks\t-9.2114542174443\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, have found, new cracks) -> new cracks (4191ms)\nHow tall is the Washington Monument?\tfireworks\t-9.214367414458836\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (fireworks, was thrilling with, the Washington Monument) -> fireworks (4798ms)\nHow tall is the Washington Monument?\tthe D.C. area\t-9.234733582318814\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the D.C. area, is, the Washington Monument) -> the D.C. area (4798ms)\nHow tall is the Washington Monument?\tthe U.S.\t-9.244459738135467\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the U.S., would be, the Washington Monument) -> the U.S. (4798ms)\nHow tall is the Washington Monument?\tRanger Kelly\t-9.251468766621572\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Ranger Kelly, was, the Washington Monument) -> Ranger Kelly (4798ms)\nHow tall is the Washington Monument?\ta controversial event\t-9.277501212575865\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument rally, was, a controversial event) -> a controversial event (4191ms)\nHow tall is the Washington Monument?\tcracks\t-9.287755834391161\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (cracks, were found in, the Washington Monument) -> cracks (4818ms)\nHow tall is the Washington Monument?\thalf way\t-9.338060836927287\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (half way, down is, the towering Washington Monument) -> half way (4818ms)\nHow tall is the Washington Monument?\tlist\t-9.340132700528665\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (list, was, the Washington Monument) -> list (4818ms)\nHow tall is the Washington Monument?\tthe National Mall\t-9.359340877815024\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the National Mall, are, the Washington Monument) -> the National Mall (4818ms)\nHow tall is the Washington Monument?\tFirst stop\t-9.376697185682684\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (First stop, was, the Washington Monument) -> First stop (4818ms)\nHow tall is the Washington Monument?\tExamples\t-9.387589110239817\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> (Examples, is the height of, the Washington Monument) -> Examples (3343ms)\nHow tall is the Washington Monument?\ttwo inches\t-9.3989687269096\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has sunk, two inches) -> two inches (4191ms)\nHow tall is the Washington Monument?\tPel?e\t-9.419598205442922\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> (Pel?e, was twice the height of, the Washington Monument) -> Pel?e (3343ms)\nHow tall is the Washington Monument?\treduced hours\t-9.424846167828377\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (reduced hours, was, the Washington Monument) -> reduced hours (4818ms)\nHow tall is the Washington Monument?\ta huge pond\t-9.42630659322\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (a huge pond, was, the Washington Monument) -> a huge pond (4838ms)\nHow tall is the Washington Monument?\tmetal detectors\t-9.435138564182358\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has, metal detectors) -> metal detectors (4191ms)\nHow tall is the Washington Monument?\tNext door\t-9.435640549945944\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Next door, is, the original Washington Monument) -> Next door (4838ms)\nHow tall is the Washington Monument?\tearlier\t-9.442769392585292\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (earlier, are for, the Washington Monument) -> earlier (4838ms)\nHow tall is the Washington Monument?\tnext stop\t-9.45555976646774\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (next stop, would be, the Washington Monument) -> next stop (4838ms)\nHow tall is the Washington Monument?\treference\t-9.50370929282333\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (reference, was, the Washington Monument) -> reference (4838ms)\nHow tall is the Washington Monument?\tCapitol Mall\t-9.505884423364591\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Capitol Mall, as is, the Washington Monument) -> Capitol Mall (4838ms)\nHow tall is the Washington Monument?\tprophecy timelines\t-9.536260341705821\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (prophecy timelines, were encoded into, the Washington Monument) -> prophecy timelines (4906ms)\nHow tall is the Washington Monument?\tthe reason\t-9.547463510652126\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the reason) -> the reason (4210ms)\nHow tall is the Washington Monument?\tthe plan\t-9.555623760955653\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the plan) -> the plan (4210ms)\nHow tall is the Washington Monument?\tBig Pharma\t-9.559075213132191\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the WASHINGTON MONUMENT, have taken, Big Pharma) -> Big Pharma (4210ms)\nHow tall is the Washington Monument?\tCongress\t-9.560221516620096\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Congress, as are, the Washington Monument) -> Congress (4906ms)\nHow tall is the Washington Monument?\ttall\t-9.5721756153592\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, tall) -> tall (4210ms)\nHow tall is the Washington Monument?\tthanks\t-9.572746480019928\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (thanks, is of, the Washington Monument) -> thanks (4906ms)\nHow tall is the Washington Monument?\t10:00 AM\t-9.576159562222507\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be between, $x) -> (the Washington Monument, may be made between, 10:00 AM) -> 10:00 AM (6103ms)\nHow tall is the Washington Monument?\tone positive note\t-9.590852775594096\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument victory, was, one positive note) -> one positive note (4210ms)\nHow tall is the Washington Monument?\ta crack\t-9.595129993867557\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has, a crack) -> a crack (4210ms)\nHow tall is the Washington Monument?\ta good days adventure\t-9.603583558726733\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (a good days adventure, were at, the Washington Monument) -> a good days adventure (4906ms)\nHow tall is the Washington Monument?\tthe time\t-9.608826513014577\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the time, was, the Washington Monument) -> the time (4906ms)\nHow tall is the Washington Monument?\teyeballs\t-9.626617967489398\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (eyeballs, is, the Washington Masonic Monument) -> eyeballs (4906ms)\nHow tall is the Washington Monument?\tWashington\t-9.62749481340659\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Washington, is, the Washington Monument) -> Washington (4973ms)\nHow tall is the Washington Monument?\tA stone\t-9.63256327118494\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (A stone, was stolen from, the Washington Monument) -> A stone (4973ms)\nHow tall is the Washington Monument?\tThousands\t-9.658308168246952\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Thousands, were showing up near, the Washington Monument) -> Thousands (4973ms)\nHow tall is the Washington Monument?\t555 feet tall\t-9.679471014345614\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 555 feet tall) -> 555 feet tall (4231ms)\nHow tall is the Washington Monument?\tan Obelisk\t-9.689990130262103\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an Obelisk) -> an Obelisk (4231ms)\nHow tall is the Washington Monument?\ta dozen Renaissance ladies\t-9.701729514103532\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (a dozen Renaissance ladies, as were, the Washington Monument) -> a dozen Renaissance ladies (4973ms)\nHow tall is the Washington Monument?\tno building\t-9.70873854258964\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (no building, can be higher than, the Washington Monument) -> no building (4973ms)\nHow tall is the Washington Monument?\tthe words\t-9.717758781714767\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, are, the words) -> the words (4231ms)\nHow tall is the Washington Monument?\tthe Capitol\t-9.733521168210203\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is to, the Capitol) -> the Capitol (4231ms)\nHow tall is the Washington Monument?\t1884\t-9.755866115902503\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was erected, 1884) -> 1884 (4231ms)\nHow tall is the Washington Monument?\tEgyptophilia\t-9.791728110511588\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Egyptophilia, is, the Washington Monument) -> Egyptophilia (4973ms)\nHow tall is the Washington Monument?\tvisible\t-9.801516266983127\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, visible) -> visible (4409ms)\nHow tall is the Washington Monument?\t1998\t-9.806687013773969\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (The Washington Monument, was closed from, 1998) -> 1998 (5851ms)\nHow tall is the Washington Monument?\t1999-2000\t-9.8079446197173\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was being renovated back in, 1999-2000) -> 1999-2000 (6391ms)\nHow tall is the Washington Monument?\t10:00 a.m.\t-9.817869583227997\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be between, $x) -> (the Washington Monument, may be made between, 10:00 a.m.) -> 10:00 a.m. (6103ms)\nHow tall is the Washington Monument?\t3022008\t-9.823862573727245\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument-Philadelphia-27527, Length, 3022008) -> 3022008 (8700ms)\nHow tall is the Washington Monument?\t10/02\t-9.83555352205911\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument photo, was really taken on, 10/02) -> 10/02 (6191ms)\nHow tall is the Washington Monument?\tOttoman calligraphy\t-9.870626835179978\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has, Ottoman calligraphy) -> Ottoman calligraphy (4408ms)\nHow tall is the Washington Monument?\t1524882\t-9.871509966765789\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument 3, Length, 1524882) -> 1524882 (8700ms)\nHow tall is the Washington Monument?\tan African obelisk\t-9.873044444052782\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington monument, is, an African obelisk) -> an African obelisk (4408ms)\nHow tall is the Washington Monument?\t199583\t-9.910494197433687\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Sky over Washington Monument, Length, 199583) -> 199583 (8700ms)\nHow tall is the Washington Monument?\t2218847\t-9.910494197433687\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument in 2007, Length, 2218847) -> 2218847 (8700ms)\nHow tall is the Washington Monument?\t849268\t-9.910494197433687\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument, Richmond, Virginia, Length, 849268) -> 849268 (8700ms)\nHow tall is the Washington Monument?\t13 feet\t-9.925056389058168\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (' Washington Monument, was, 13 feet) -> 13 feet (5851ms)\nHow tall is the Washington Monument?\tdirect line\t-9.927013404617822\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is in, direct line) -> direct line (6391ms)\nHow tall is the Washington Monument?\tthe event\t-9.929536748764354\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the event, is on, the Washington Monument Grounds) -> the event (4995ms)\nHow tall is the Washington Monument?\t172210\t-9.942981056323603\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Kazimierz Pu?aski monument in Washington, Length, 172210) -> 172210 (8700ms)\nHow tall is the Washington Monument?\t967722\t-9.942981056323603\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument Dusk Jan 2006, Length, 967722) -> 967722 (8700ms)\nHow tall is the Washington Monument?\t4431788\t-9.970469936922763\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Booker T Washington bust Booker T Washington National Monument, Length, 4431788) -> 4431788 (8699ms)\nHow tall is the Washington Monument?\t326149\t-9.994031834579186\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Monument to General George Meade, Washington D.C, Length, 326149) -> 326149 (8863ms)\nHow tall is the Washington Monument?\t147448\t-10.014452145881418\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (View of Washington Monument from Holy Rood Cemetery, Length, 147448) -> 147448 (8863ms)\nHow tall is the Washington Monument?\tBeck\t-10.019690463519202\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be also, the washington monument) -> (Beck, is also wrong about, the Washington Monument) -> Beck (6391ms)\nHow tall is the Washington Monument?\tHawkins County\t-10.020156969970298\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (Hawkins County, was used in, the Washington Monument) -> Hawkins County (6458ms)\nHow tall is the Washington Monument?\tConstitution\t-10.020938568314797\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Constitution, is flanked by, the Washington Monument) -> Constitution (4995ms)\nHow tall is the Washington Monument?\tSan Jacinto Monument\t-10.0253965019189\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (San Jacinto Monument, Instance Of, 50 story tall structure reminiscent of the Washington Monument) -> San Jacinto Monument (5851ms)\nHow tall is the Washington Monument?\tWAMO Stones Section 5\t-10.03998935321929\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, can be found in, WAMO Stones Section 5) -> WAMO Stones Section 5 (6391ms)\nHow tall is the Washington Monument?\tconstruction\t-10.04317057893325\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was under, construction) -> construction (4408ms)\nHow tall is the Washington Monument?\t53\t-10.067907091650083\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, episode number, $x) -> (Washington Monument, Episode number, 53) -> 53 (8863ms)\nHow tall is the Washington Monument?\t67\t-10.067907091650083\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, episode number, $x) -> (Washington Monument, Episode number, 67) -> 67 (8863ms)\nHow tall is the Washington Monument?\t10\t-10.067907091650083\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, season number, $x) -> (Washington Monument, Season number, 10) -> 10 (8311ms)\nHow tall is the Washington Monument?\tIn the distance\t-10.070684254809045\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (In the distance, is, the Washington Monument) -> In the distance (4995ms)\nHow tall is the Washington Monument?\t1885\t-10.079019956365475\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was constructed in, 1885) -> 1885 (6391ms)\nHow tall is the Washington Monument?\t1835\t-10.079511890973569\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was built in, 1835) -> 1835 (6391ms)\nHow tall is the Washington Monument?\tfree performances\t-10.079764418544304\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has, free performances) -> free performances (4408ms)\nHow tall is the Washington Monument?\tBaal\t-10.086320956137609\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, Baal) -> Baal (5851ms)\nHow tall is the Washington Monument?\tany window\t-10.091834772497183\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, can be seen from, any window) -> any window (5937ms)\nHow tall is the Washington Monument?\tWashington DC\t-10.12411484867703\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, is located in, Washington DC) -> Washington DC (6458ms)\nHow tall is the Washington Monument?\t1848\t-10.132071825561104\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington monument, was constructed in, 1848) -> 1848 (6458ms)\nHow tall is the Washington Monument?\ta 500ft obelisk\t-10.13545858819951\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, a 500ft obelisk) -> a 500ft obelisk (5937ms)\nHow tall is the Washington Monument?\tsnow\t-10.137791477339041\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington monument, were covered in, snow) -> snow (6458ms)\nHow tall is the Washington Monument?\tJuly 4\t-10.142336418023545\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, is laid on, July 4) -> July 4 (6191ms)\nHow tall is the Washington Monument?\t1876\t-10.146218966085534\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, was accepted in, 1876) -> 1876 (6458ms)\nHow tall is the Washington Monument?\thistoric\t-10.149154531185715\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has been heralded as, historic) -> historic (4463ms)\nHow tall is the Washington Monument?\tthe obelisk\t-10.164903431561864\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the obelisk, is, the Washington Monument) -> the obelisk (4995ms)\nHow tall is the Washington Monument?\tthe horizon\t-10.164903431561864\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the horizon, is, the Washington Monument) -> the horizon (4996ms)\nHow tall is the Washington Monument?\ta metro adventure\t-10.169152808105753\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, had, a metro adventure) -> a metro adventure (4463ms)\nHow tall is the Washington Monument?\ta distinctive simplicity\t-10.17318154102053\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington Monument, has, a distinctive simplicity) -> a distinctive simplicity (4462ms)\nHow tall is the Washington Monument?\tthe distance\t-10.176954568320648\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the distance, is, the Washington Monument) -> the distance (4995ms)\nHow tall is the Washington Monument?\t2015\t-10.190866284954343\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is scheduled to open in, 2015) -> 2015 (6458ms)\nHow tall is the Washington Monument?\tthe middle\t-10.196799131746955\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the middle, is, the Washington Monument) -> the middle (5019ms)\nHow tall is the Washington Monument?\tpride\t-10.207710379184263\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has been a source of, pride) -> pride (4462ms)\nHow tall is the Washington Monument?\t2009\t-10.209270769882636\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, was last surveyed in, 2009) -> 2009 (6490ms)\nHow tall is the Washington Monument?\ta category\t-10.218229883207828\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is really in, a category) -> a category (6490ms)\nHow tall is the Washington Monument?\tpoint\t-10.227724260799864\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (point, is, the ?Washington Monument strategy ?) -> point (5019ms)\nHow tall is the Washington Monument?\tthe site\t-10.230468441281332\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the site, is near, the Washington Monument) -> the site (5019ms)\nHow tall is the Washington Monument?\tMartin Luther King\t-10.242215155605418\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is the site of, Martin Luther King) -> Martin Luther King (6594ms)\nHow tall is the Washington Monument?\ttwo families\t-10.254555013721047\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (two families, were waiting to, see the Washington Monument) -> two families (5019ms)\nHow tall is the Washington Monument?\ta pyramid\t-10.28042231773274\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is made out of, a pyramid) -> a pyramid (6594ms)\nHow tall is the Washington Monument?\t181.0\t-10.29011576599284\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument, Length, 181.0) -> 181.0 (8896ms)\nHow tall is the Washington Monument?\t80.0\t-10.29011576599284\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument, Length, 80.0) -> 80.0 (8863ms)\nHow tall is the Washington Monument?\t96092\t-10.300336504112677\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington-Rochambeau Monument, Length, 96092) -> 96092 (8896ms)\nHow tall is the Washington Monument?\tmetal roofs\t-10.317473221228253\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument and Thomas Jefferson, had, metal roofs) -> metal roofs (4484ms)\nHow tall is the Washington Monument?\taluminum\t-10.318952325649725\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is made of, aluminum) -> aluminum (6594ms)\nHow tall is the Washington Monument?\tMills\t-10.319038396426258\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Mills, was responsible for, the Washington Monument) -> Mills (5019ms)\nHow tall is the Washington Monument?\ta visual\t-10.328069227599812\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, it?ll be a hell of, a visual) -> a visual (6594ms)\nHow tall is the Washington Monument?\tthe sights\t-10.332965576691562\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the sights, are, the Washington Monument) -> the sights (5039ms)\nHow tall is the Washington Monument?\t555 feet high\t-10.348237891090982\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 555 feet high) -> 555 feet high (4483ms)\nHow tall is the Washington Monument?\tMemorial obelisk of Vermont marble\t-10.356174815585302\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (Memorial obelisk of Vermont marble, Instance Of, one-tenth replica of the Washington Monument) -> Memorial obelisk of Vermont marble (6025ms)\nHow tall is the Washington Monument?\tGod Almighty\t-10.36051282689136\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, God Almighty) -> God Almighty (4483ms)\nHow tall is the Washington Monument?\tthe left\t-10.375476855641493\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the left, is obviously, the Washington Monument) -> the left (5039ms)\nHow tall is the Washington Monument?\tthe public\t-10.381596226906012\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington Monument, has been closed to, the public) -> the public (4484ms)\nHow tall is the Washington Monument?\t5\t-10.384215008468763\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, track #, $x) -> (Washington Monument, Track #, 5) -> 5 (8310ms)\nHow tall is the Washington Monument?\tuse\t-10.387484975053209\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington Monument, has a wheelchair for, use) -> use (4503ms)\nHow tall is the Washington Monument?\tTidal Basin\t-10.391910360364209\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (Tidal Basin, Instance Of, body of water sitting just south of the Washington Monument) -> Tidal Basin (6025ms)\nHow tall is the Washington Monument?\tright there\t-10.402154939404248\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, right there) -> right there (4503ms)\nHow tall is the Washington Monument?\trepairs\t-10.409478792221847\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (the venerable Washington Monument, was closed for, repairs) -> repairs (6103ms)\nHow tall is the Washington Monument?\tthe hill\t-10.409960546902619\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the hill, was, the original Washington Monument) -> the hill (5039ms)\nHow tall is the Washington Monument?\tfree to visit\t-10.41232825065921\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, free to visit) -> free to visit (4503ms)\nHow tall is the Washington Monument?\topen\t-10.414513456576303\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, open) -> open (4503ms)\nHow tall is the Washington Monument?\ttaller\t-10.436016568334088\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, taller) -> taller (4503ms)\nHow tall is the Washington Monument?\tthe family\t-10.43648650785158\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the family, were touring, the Washington monuments) -> the family (5039ms)\nHow tall is the Washington Monument?\tclosed\t-10.440215826671297\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington monument, is, closed) -> closed (4503ms)\nHow tall is the Washington Monument?\tfinalists\t-10.442982106345976\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, have emerged as, finalists) -> finalists (4524ms)\nHow tall is the Washington Monument?\twater\t-10.44539261477768\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (water, were found in, the Washington Monument) -> water (6490ms)\nHow tall is the Washington Monument?\tworkshop\t-10.452872442276952\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (workshop, Instance Of, construction of the Washington Monument) -> workshop (6025ms)\nHow tall is the Washington Monument?\trenovations\t-10.455357329286727\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (The Washington Monument, is currently closed for, renovations) -> renovations (6103ms)\nHow tall is the Washington Monument?\tthirsty\t-10.460616945535248\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, thirsty) -> thirsty (4524ms)\nHow tall is the Washington Monument?\ttop of the Washington Monument\t-10.47654717694583\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (top of the Washington Monument, Instance Of, moderate adverse effect on distant view of the washington monument ground from location) -> top of the Washington Monument (6025ms)\nHow tall is the Washington Monument?\tair\t-10.47654717694583\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (air, Instance Of, moderate adverse effect on distant view of the washington monument ground from location) -> air (6025ms)\nHow tall is the Washington Monument?\tsimplicity\t-10.476578119126815\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is a masterwork of, simplicity) -> simplicity (6594ms)\nHow tall is the Washington Monument?\tthe Tower\t-10.501067356549935\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, was 10 miles from, the Tower) -> the Tower (6056ms)\nHow tall is the Washington Monument?\topen to visitors\t-10.50508556230809\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, open to visitors) -> open to visitors (4524ms)\nHow tall is the Washington Monument?\tBehind us\t-10.51401242122966\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Behind us, was, the Washington Monument) -> Behind us (5039ms)\nHow tall is the Washington Monument?\tengineers\t-10.521922194019927\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (engineers, were rappelling down, the Washington monument) -> engineers (5059ms)\nHow tall is the Washington Monument?\tindefinitely\t-10.544294305408599\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is closed, indefinitely) -> indefinitely (4543ms)\nHow tall is the Washington Monument?\tcurrently\t-10.557662929725318\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is closed, currently) -> currently (4542ms)\nHow tall is the Washington Monument?\t8\t-10.598628277142208\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, episode number, $x) -> (Denver Steam Plant, Iowa Dry Goods Store, Arkansas Monument Company, Washington Boathouse, Episode number, 8) -> 8 (8896ms)\nHow tall is the Washington Monument?\tnine memorials\t-10.603018180844687\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is one of, nine memorials) -> nine memorials (4543ms)\nHow tall is the Washington Monument?\tstill\t-10.603766418684263\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was there, still) -> still (4543ms)\nHow tall is the Washington Monument?\tdaily\t-10.607327512748881\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is open, daily) -> daily (4543ms)\nHow tall is the Washington Monument?\tMessenia\t-10.615291356922038\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, is from, Messenia) -> Messenia (6103ms)\nHow tall is the Washington Monument?\tthe cornerstone\t-10.616992409317055\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the cornerstone, was laid for, the Washington Monument) -> the cornerstone (5059ms)\nHow tall is the Washington Monument?\tevery way\t-10.61974872305977\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is finally symbolic in, every way) -> every way (6490ms)\nHow tall is the Washington Monument?\tJuly 4th\t-10.620978526218792\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was laid on, July 4th) -> July 4th (6191ms)\nHow tall is the Washington Monument?\tthe most prominent structure\t-10.642704557647743\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the most prominent structure) -> the most prominent structure (4543ms)\nHow tall is the Washington Monument?\tWashington Monument\t-10.673943799159403\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, track #, $x) -> (Washington Monument, Tracks, Washington Monument) -> Washington Monument (8896ms)\nHow tall is the Washington Monument?\tfire\t-10.697798274816332\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was on, fire) -> fire (4567ms)\nHow tall is the Washington Monument?\tcentral Washington\t-10.708550721805022\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, is seen in, central Washington) -> central Washington (6490ms)\nHow tall is the Washington Monument?\tbetter shape\t-10.712457490604285\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument grounds, are in, better shape) -> better shape (6490ms)\nHow tall is the Washington Monument?\tthe tallest stone structure\t-10.74785954151065\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the tallest stone structure) -> the tallest stone structure (4567ms)\nHow tall is the Washington Monument?\twhite limestone\t-10.763456280144661\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is clad in, white limestone) -> white limestone (6670ms)\nHow tall is the Washington Monument?\t1848 and 1884\t-10.768071566799813\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be between, $x) -> (The Washington Monument, was built between, 1848 and 1884) -> 1848 and 1884 (6670ms)\nHow tall is the Washington Monument?\tDS\t-10.77493011325124\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, to be, the washington monument) -> (DS, has been to, the Washington Monument) -> DS (6699ms)\nHow tall is the Washington Monument?\tJuly 4th ,1848\t-10.781791340843405\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was laid on, July 4th ,1848) -> July 4th ,1848 (6699ms)\nHow tall is the Washington Monument?\tpure aluminium\t-10.822105784022487\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is made of, pure aluminium) -> pure aluminium (6699ms)\nHow tall is the Washington Monument?\tmonument\t-10.831945249923749\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (washington monument, is a, monument) -> monument (6728ms)\nHow tall is the Washington Monument?\tthe news\t-10.834048028402485\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington monument, has been in, the news) -> the news (4568ms)\nHow tall is the Washington Monument?\tJuly 4th , 1848\t-10.841441056853737\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was laid on, July 4th , 1848) -> July 4th , 1848 (6728ms)\nHow tall is the Washington Monument?\tthe biggest pagan penus sign\t-10.843591496376554\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington monument, is, the biggest pagan penus sign) -> the biggest pagan penus sign (4568ms)\nHow tall is the Washington Monument?\tfame\t-10.844049666669353\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (fame, was to see, the Washington Monument) -> fame (6728ms)\nHow tall is the Washington Monument?\tthe OTHER side\t-10.846862310391135\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, is supposed to be on, the OTHER side) -> the OTHER side (6728ms)\nHow tall is the Washington Monument?\tthe sky\t-10.857834663555561\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the sky, is, the Washington Monument) -> the sky (5059ms)\nHow tall is the Washington Monument?\tline\t-10.871795625412277\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is n?t quite in, line) -> line (6756ms)\nHow tall is the Washington Monument?\tLincoln?s time\t-10.875381596036354\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was n?t around in, Lincoln?s time) -> Lincoln?s time (6756ms)\nHow tall is the Washington Monument?\ta day\t-10.877649336826636\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (a day, do be sure to visit, the Washington Monument) -> a day (6784ms)\nHow tall is the Washington Monument?\t8595\t-10.87780302703586\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Irving Monument in Owen Park, Length, 8595) -> 8595 (8896ms)\nHow tall is the Washington Monument?\tthe tallest masonry structure\t-10.879669569874732\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the tallest masonry structure) -> the tallest masonry structure (4567ms)\nHow tall is the Washington Monument?\tsilly\t-10.900735534169838\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is kind of, silly) -> silly (6784ms)\nHow tall is the Washington Monument?\ta success\t-10.90404259203253\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, was, a success) -> a success (6784ms)\nHow tall is the Washington Monument?\tdisplay\t-10.916948962641095\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, were on, display) -> display (6784ms)\nHow tall is the Washington Monument?\tthe largest religious rally\t-10.917625491315285\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument Rally, was, the largest religious rally) -> the largest religious rally (4568ms)\nHow tall is the Washington Monument?\tevents\t-10.919303712104341\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (the Washington Monument, is used for, events) -> events (6784ms)\nHow tall is the Washington Monument?\tcharge\t-10.925493069614312\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, are free of, charge) -> charge (6784ms)\nHow tall is the Washington Monument?\tThe walk\t-10.925987664351062\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The walk, was from, the Washington Monument) -> The walk (5059ms)\nHow tall is the Washington Monument?\tWASHINGTON ?\t-10.938944124634641\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (WASHINGTON ?, There was a crack in, the Washington Monument) -> WASHINGTON ? (6813ms)\nHow tall is the Washington Monument?\ta local quarry\t-10.939828311035738\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (a local quarry, was used in, the Washington Monument) -> a local quarry (6813ms)\nHow tall is the Washington Monument?\ta large , tall white-colored obelisk\t-10.942205480051422\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, a large , tall white-colored obelisk) -> a large , tall white-colored obelisk (6813ms)\nHow tall is the Washington Monument?\tJuly 4 , 1848\t-10.95179354309764\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was laid on, July 4 , 1848) -> July 4 , 1848 (6813ms)\nHow tall is the Washington Monument?\ta Masonic ceremony\t-10.95712005077614\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, was dedicated in, a Masonic ceremony) -> a Masonic ceremony (6813ms)\nHow tall is the Washington Monument?\tOne camera\t-10.958888423578333\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (One camera, was positioned high in, the Washington Monument) -> One camera (6813ms)\nHow tall is the Washington Monument?\tFebruary 21 , 1885\t-10.964172310819876\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (The Washington Monument, was dedicated on, February 21 , 1885) -> February 21 , 1885 (6938ms)\nHow tall is the Washington Monument?\thonor\t-10.970321291809274\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington monument, was built in, honor) -> honor (6938ms)\nHow tall is the Washington Monument?\tdozens\t-10.970587155795483\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, is cracked in, dozens) -> dozens (6938ms)\nHow tall is the Washington Monument?\ta wintry day\t-10.970775203990183\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (The Washington Monument, was dedicated on, a wintry day) -> a wintry day (6938ms)\nHow tall is the Washington Monument?\tThe background\t-10.981230141687222\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The background, is, the Washington Monument) -> The background (5059ms)\nHow tall is the Washington Monument?\tmillions\t-10.983850162621112\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is the subject of, millions) -> millions (6938ms)\nHow tall is the Washington Monument?\tBarack Obama\t-10.985378849009994\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, come, the washington monument) -> (Barack Obama, came upon, the Washington monument) -> Barack Obama (6938ms)\nHow tall is the Washington Monument?\tpieces\t-10.989974952003827\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, was built from, pieces) -> pieces (6938ms)\nHow tall is the Washington Monument?\tthe center\t-10.991705613836656\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is reflected in, the center) -> the center (7125ms)\nHow tall is the Washington Monument?\tEasby\t-11.014400093602104\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (Easby, Instance Of, member of the Washington Monument Association) -> Easby (7125ms)\nHow tall is the Washington Monument?\tthe most prominent\t-11.014581887158306\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the most prominent) -> the most prominent (4586ms)\nHow tall is the Washington Monument?\t1888\t-11.020330027997714\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, open in, $x) -> (The Washington Monument, opened in, 1888) -> 1888 (7125ms)\nHow tall is the Washington Monument?\tmemory\t-11.069617350275673\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, was built in, memory) -> memory (7180ms)\nHow tall is the Washington Monument?\ta clear day\t-11.071367656871688\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the 550 foot Washington Monument, is great on, a clear day) -> a clear day (7180ms)\nHow tall is the Washington Monument?\tthree weeks\t-11.07335222904299\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument campaign, was done in, three weeks) -> three weeks (7180ms)\nHow tall is the Washington Monument?\tfive blocks\t-11.107342634576048\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, are within, five blocks) -> five blocks (7180ms)\nHow tall is the Washington Monument?\tthe largest tower\t-11.112727842535104\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the largest tower) -> the largest tower (4584ms)\nHow tall is the Washington Monument?\tThe fourth obelisk\t-11.131513796313218\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The fourth obelisk, is, the Washington Monument) -> The fourth obelisk (5077ms)\nHow tall is the Washington Monument?\tthe following words\t-11.133128961399056\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, are, the following words) -> the following words (4584ms)\nHow tall is the Washington Monument?\tthe tallest obelisk\t-11.133228696916442\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the tallest obelisk) -> the tallest obelisk (4585ms)\nHow tall is the Washington Monument?\tcrossroads\t-11.136244376306692\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is a different kind of, crossroads) -> crossroads (7180ms)\nHow tall is the Washington Monument?\tThe third obelisk\t-11.156638102691403\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The third obelisk, is, the Washington Monument) -> The third obelisk (5078ms)\nHow tall is the Washington Monument?\tthe nation\t-11.167214206541196\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is an iconic symbol of, the nation) -> the nation (7215ms)\nHow tall is the Washington Monument?\ta quarry\t-11.170263115484579\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, come, $x) -> (the Washington Monument, came from, a quarry) -> a quarry (7215ms)\nHow tall is the Washington Monument?\tThe site\t-11.177492068895484\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The site, is between, the Washington Monument) -> The site (5078ms)\nHow tall is the Washington Monument?\tthe culminating showdown\t-11.21676534568183\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument Rally, was, the culminating showdown) -> the culminating showdown (4585ms)\nHow tall is the Washington Monument?\tAmerica\t-11.229492021458745\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is one of, America) -> America (7215ms)\nHow tall is the Washington Monument?\tthe day\t-11.233072678119498\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the day, is to meet at, the Washington Monument) -> the day (5078ms)\nHow tall is the Washington Monument?\tmoney\t-11.241353892033786\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, run, $x) -> (the Washington National Monument Society, ran out of, money) -> money (7243ms)\nHow tall is the Washington Monument?\tPendragon\t-11.273940532633508\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is the reproductive organ of, Pendragon) -> Pendragon (7397ms)\nHow tall is the Washington Monument?\tThe obelisk\t-11.300097697274419\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The obelisk, is identical to, the Washington Monument) -> The obelisk (5078ms)\nHow tall is the Washington Monument?\tFourth\t-11.301112068588877\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, are typical of, Fourth) -> Fourth (7397ms)\nHow tall is the Washington Monument?\tThe capstone\t-11.326723393740766\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The capstone, is placed on, the Washington Monument) -> The capstone (5099ms)\nHow tall is the Washington Monument?\tThe most familiar example\t-11.352200811941694\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The most familiar example, is, the Washington Monument) -> The most familiar example (5099ms)\nHow tall is the Washington Monument?\tThe museum\t-11.35226538006895\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The museum, is being built near, the Washington Monument) -> The museum (5099ms)\nHow tall is the Washington Monument?\ta very good example\t-11.36728147752814\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, a very good example) -> a very good example (7424ms)\nHow tall is the Washington Monument?\tthe Property\t-11.387837368506613\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (The Washington Monument, is seven blocks from, the Property) -> the Property (7424ms)\nHow tall is the Washington Monument?\tclose proximity\t-11.401839821884753\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, are located in, close proximity) -> close proximity (7424ms)\nHow tall is the Washington Monument?\tthe devil\t-11.419871732896134\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is of, the devil) -> the devil (7424ms)\nHow tall is the Washington Monument?\tthe background\t-11.454485809728375\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is in, the background) -> the background (5099ms)\nHow tall is the Washington Monument?\tResurrection City\t-11.467088672655422\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, call, $x) -> (the Washington Monument, called, Resurrection City) -> Resurrection City (7545ms)\nHow tall is the Washington Monument?\tthe first clue\t-11.470187330721764\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the first clue, is, the Washington Monument) -> the first clue (5120ms)\nHow tall is the Washington Monument?\tThe main activities\t-11.48248102619598\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The main activities, are held at, the Washington Monument) -> The main activities (5120ms)\nHow tall is the Washington Monument?\tMarcia\t-11.50624594875803\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (The Washington Monument, was visible from, Marcia) -> Marcia (7545ms)\nHow tall is the Washington Monument?\tfront\t-11.51490760161555\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is positioned in, front) -> front (7545ms)\nHow tall is the Washington Monument?\ta solemn walk\t-11.526916276022074\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, follow, $x) -> (the Washington Monument, followed by, a solemn walk) -> a solemn walk (7545ms)\nHow tall is the Washington Monument?\tthe banks\t-11.534519578260609\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was built on, the banks) -> the banks (7573ms)\nHow tall is the Washington Monument?\tthe form\t-11.53979498084837\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, is in, the form) -> the form (7573ms)\nHow tall is the Washington Monument?\tthe Smithsonian\t-11.551025185737942\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, go to, $x) -> (the Washington Monument, went to, the Smithsonian) -> the Smithsonian (7573ms)\nHow tall is the Washington Monument?\trecently\t-11.560932690781009\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington Monument web site, has been redesigned, recently) -> recently (5120ms)\nHow tall is the Washington Monument?\tthe divine calendar\t-11.563218676488138\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the divine calendar, was, the Washington Monument) -> the divine calendar (5120ms)\nHow tall is the Washington Monument?\tQuincy\t-11.569198017037746\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, to be, the washington monument) -> (Quincy, was used to build, the Washington Monument) -> Quincy (7573ms)\nHow tall is the Washington Monument?\tThe race staging area\t-11.58750718678948\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The race staging area, is on, the Washington Monument grounds) -> The race staging area (5120ms)\nHow tall is the Washington Monument?\tthe late 19th century\t-11.593514731905618\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was completed in, the late 19th century) -> the late 19th century (7573ms)\nHow tall is the Washington Monument?\tthe most famous\t-11.597766988578815\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the most famous, is, the Washington Monument) -> the most famous (5120ms)\nHow tall is the Washington Monument?\tthe hotel\t-11.638675822592068\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, are 14 miles from, the hotel) -> the hotel (7601ms)\nHow tall is the Washington Monument?\tthe country\t-11.675107060615288\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is one of, the country) -> the country (7601ms)\nHow tall is the Washington Monument?\tThe Iraq War Memorial\t-11.689353499587641\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, come, the washington monument) -> (The Iraq War Memorial, came to, the Washington Monument) -> The Iraq War Memorial (7601ms)\nHow tall is the Washington Monument?\tcracks near its top\t-11.696145016220457\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, may have suffered, cracks near its top) -> cracks near its top (5146ms)\nHow tall is the Washington Monument?\trepairs Tuesday\t-11.76820438158404\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (The Washington Monument, was closed for, repairs Tuesday) -> repairs Tuesday (7667ms)\nHow tall is the Washington Monument?\ttreasures ..Folks\t-11.785259491885057\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, come, the washington monument) -> (treasures ..Folks, come here to see, the Washington Monument) -> treasures ..Folks (7667ms)\nHow tall is the Washington Monument?\tthe property\t-11.78585268490178\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (The Washington Monument, is seven blocks from, the property) -> the property (7667ms)\nHow tall is the Washington Monument?\tthousands\t-11.812868753513206\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, have, $x) -> (Washington D.C. Monument, will have tens of, thousands) -> thousands (7718ms)\nHow tall is the Washington Monument?\tthe water\t-11.814328979802516\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be also, the washington monument) -> (the water, is also displayed in, the Washington Monument) -> the water (7718ms)\nHow tall is the Washington Monument?\tthe Space Needle\t-11.83265420090809\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, have, $x) -> (Washington Monument ? Seattle, has, the Space Needle) -> the Space Needle (7718ms)\nHow tall is the Washington Monument?\tthe capstone\t-11.850178181528797\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, is inscribed on, the capstone) -> the capstone (7746ms)\nHow tall is the Washington Monument?\tthe city\t-11.852249733852936\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is the highest point in, the city) -> the city (7746ms)\nHow tall is the Washington Monument?\tTomb of the Unknown Soldier\t-11.860794397763303\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Tomb of the Unknown Soldier, Instance Of, washington house monument) -> Tomb of the Unknown Soldier (8896ms)\nHow tall is the Washington Monument?\tthe tidal basic\t-11.865227390919598\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the tidal basic, are seen with, the Washington Monument) -> the tidal basic (5146ms)\nHow tall is the Washington Monument?\tcloser\t-11.915785350151266\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, offer, the washington monument) -> (closer, offer views of, the Washington monument) -> closer (7773ms)\nHow tall is the Washington Monument?\tthe monuments\t-11.923805212855813\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (the monuments, you?ll want to visit are, the Washington Monument) -> the monuments (7773ms)\nHow tall is the Washington Monument?\tthe crew\t-11.930908615809171\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the crew, is rappelling down, the Washington Monument) -> the crew (5146ms)\nHow tall is the Washington Monument?\tthe skyline\t-11.936615319639015\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (The Washington Monument, cannot be missed on, the skyline) -> the skyline (7773ms)\nHow tall is the Washington Monument?\ta march\t-11.955547500440375\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, follow, $x) -> (the Washington Monument, followed by, a march) -> a march (7773ms)\nHow tall is the Washington Monument?\tthe holidays\t-11.999026573717586\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (The Washington Monument lights, are ready for, the holidays) -> the holidays (7801ms)\nHow tall is the Washington Monument?\tCapitol Building\t-12.048785194869836\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Capitol Building, Instance Of, monument of washington) -> Capitol Building (8972ms)\nHow tall is the Washington Monument?\tAmerica?s power\t-12.129923799538307\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is a symbol of, America?s power) -> America?s power (7829ms)\nHow tall is the Washington Monument?\tStephen Wade\t-12.134451518861287\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Stephen Wade, Instance Of, Washington monument) -> Stephen Wade (9091ms)\nHow tall is the Washington Monument?\tJefferson Memorial\t-12.134451518861287\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Jefferson Memorial, Instance Of, washington monument) -> Jefferson Memorial (9090ms)\nHow tall is the Washington Monument?\tLincoln Memorial\t-12.136910803915455\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Lincoln Memorial, Instance Of, washington house monument) -> Lincoln Memorial (9091ms)\nHow tall is the Washington Monument?\tWashington monument\t-12.166938377751201\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Washington monument, Instance Of, historic monument in washington D.C.) -> Washington monument (9091ms)\nHow tall is the Washington Monument?\tFDR Memorial\t-12.178689138858788\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (FDR Memorial, Instance Of, washington dc's monument) -> FDR Memorial (9091ms)\nHow tall is the Washington Monument?\tNational Monument\t-12.217989156006784\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (National Monument, Instance Of, structure, Lincoln, Mt. Rushmore, Washington Monument) -> National Monument (9122ms)\nHow tall is the Washington Monument?\tWhite House\t-12.217989156006784\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (White House, Instance Of, historic monument in washington D.C.) -> White House (9122ms)\nHow tall is the Washington Monument?\tLincoln memorial\t-12.217989156006784\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Lincoln memorial, Instance Of, historic monument in washington D.C.) -> Lincoln memorial (9122ms)\nHow tall is the Washington Monument?\tArlington National Cemetery\t-12.217989156006784\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Arlington National Cemetery, Instance Of, washington monument and landmark) -> Arlington National Cemetery (9122ms)\nHow tall is the Washington Monument?\tVietnam Veterans Memorial\t-12.217989156006784\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Vietnam Veterans Memorial, Instance Of, washington monument and landmark) -> Vietnam Veterans Memorial (9122ms)\nHow tall is the Washington Monument?\tthe victory\t-12.255171081512366\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, come, $x) -> (the Washington Monument victory, came, the victory) -> the victory (7856ms)\nHow tall is the Washington Monument?\tthe white house\t-12.315525401622747\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (the white house, is walking distance to, the Washington monument) -> the white house (7998ms)\nHow tall is the Washington Monument?\tthe tallest structure in Washington\t-12.34643629577593\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the tallest structure in Washington) -> the tallest structure in Washington (5146ms)\nHow tall is the Washington Monument?\tthe tallest building in the world\t-12.42116450023978\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, was, the tallest building in the world) -> the tallest building in the world (5145ms)\nHow tall is the Washington Monument?\tthe tallest structure in the world\t-12.435639324429957\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the tallest structure in the world) -> the tallest structure in the world (5166ms)\nHow tall is the Washington Monument?\tthe tallest obelisk in the world\t-12.435639324429957\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the tallest obelisk in the world) -> the tallest obelisk in the world (5166ms)\nHow tall is the Washington Monument?\tthe eye\t-12.448008321844284\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (the eye, is drawn to, the Washington Monument) -> the eye (8026ms)\nHow tall is the Washington Monument?\tThe reference\t-12.450405751421869\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (The reference, is made to, the Washington Monument) -> The reference (8026ms)\nHow tall is the Washington Monument?\tthe world 's tallest structure\t-12.456040443293908\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the world 's tallest structure) -> the world 's tallest structure (5166ms)\nHow tall is the Washington Monument?\tthe tallest structure in the city\t-12.456040443293908\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the tallest structure in the city) -> the tallest structure in the city (5166ms)\nHow tall is the Washington Monument?\tthe spring\t-12.482211327826281\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, begin, $x) -> (the Washington Monument, began in, the spring) -> the spring (8054ms)\nHow tall is the Washington Monument?\tWorld War II Memorial\t-12.524293825540276\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (World War II Memorial, Instance Of, washington's most notable monument) -> World War II Memorial (9122ms)\nHow tall is the Washington Monument?\tVietnam Memorial\t-12.524293825540276\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Vietnam Memorial, Instance Of, washington's most notable monument) -> Vietnam Memorial (9152ms)\nHow tall is the Washington Monument?\tThe public\t-12.553392725927448\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The public, was admitted to, the Washington Monument) -> The public (5166ms)\nHow tall is the Washington Monument?\tthe highest masonry structure\t-12.58219551922405\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, the highest masonry structure) -> the highest masonry structure (8170ms)\nHow tall is the Washington Monument?\tHines\t-12.583772736293778\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, have become, the washington monument) -> (Hines, has become one of, the great Washington monuments) -> Hines (8170ms)\nHow tall is the Washington Monument?\tmind\t-12.605221691737848\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, come, $x) -> (the Washington Monument, comes to, mind) -> mind (8170ms)\nHow tall is the Washington Monument?\tthe most famous landmarks\t-12.675619976513806\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is one of, the most famous landmarks) -> the most famous landmarks (8170ms)\nHow tall is the Washington Monument?\tthe most familiar example\t-12.676294106473147\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the most familiar example, is, the Washington Monument) -> the most familiar example (5166ms)\nHow tall is the Washington Monument?\tthe century Aluminum\t-12.6855104359751\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, to be, the washington monument) -> (the century Aluminum, was used to cap, the Washington Monument) -> the century Aluminum (9152ms)\nHow tall is the Washington Monument?\tthe effect\t-12.764464498400196\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, bring, the washington monument) -> (the effect, brought about by, the Washington Monument victory) -> the effect (9182ms)\nHow tall is the Washington Monument?\tthe first President\t-12.84674466936624\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, was dedicated to, the first President) -> the first President (9182ms)\nHow tall is the Washington Monument?\tObelisk\t-12.84995265200227\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Obelisk, Instance Of, Washington Monument-like structure) -> Obelisk (9211ms)\nHow tall is the Washington Monument?\tup\t-12.860290782919282\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, go to, $x) -> (The Washington Monument, to go, up) -> up (9211ms)\nHow tall is the Washington Monument?\tthe greatest feats\t-12.91469888049632\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is arguably one of, the greatest feats) -> the greatest feats (9211ms)\nHow tall is the Washington Monument?\tthe east face\t-13.112560356358067\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, is inscribed on, the east face) -> the east face (9242ms)\nHow tall is the Washington Monument?\tthe upper left\t-13.167579458752229\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, can be seen in, the upper left) -> the upper left (9242ms)\nHow tall is the Washington Monument?\tinside\t-13.183171639609366\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, go to, $x) -> (The Washington Monument, to go, inside) -> inside (9242ms)\nHow tall is the Washington Monument?\teyeball\t-13.566902474625003\tHow tall is the Washington Monument? -> how tall [ be the washington monument ] ? -> what height be be the washington monument ? -> $x: ($x, instance of, height) ($x, be be, the washington monument) -> (eyeball, Instance Of, small-height feature) (eyeballs, is, the Washington Masonic Monument) -> eyeball (2971ms)\nHow tall is the Washington Monument?\tThe march\t-14.167845338845689\tHow tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, start, the washington monument) -> (The march, will start at, the Washington Monument) -> The march (9302ms)\nHow tall is the Washington Monument?\tengineer\t-14.966488484143843\tHow tall is the Washington Monument? -> how tall [ be the washington monument ] ? -> what height be be the washington monument ? -> $x: ($x, instance of, height) ($x, be be, the washington monument) -> (engineer, Instance Of, height users) (engineers, were rappelling down, the Washington monument) -> engineer (2971ms)\nHow old is Harriet Miers?\t1945-08-10\t-10.641133025711875\tHow old is Harriet Miers? -> how old be [ harriet mier ] ? -> what be harriet mier s birthdate ? -> $x: (harriet mier, birthdate, $x) -> $x: (harriet mier, date of birth, $x) -> (Harriet Miers, Date of birth, 1945-08-10) -> 1945-08-10 (2921ms)\nHow old is Harriet Miers?\t60\t-11.299361980947424\tHow old is Harriet Miers? -> how old be [ harriet mier ] ? -> what be the age of harriet mier ? -> $x: (harriet mier, age, $x) -> (a Harriet Miers, has reached the age of, 60) -> 60 (2782ms)\nHow old is Harriet Miers?\tSarah Palin\t-13.614484642825442\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (Sarah Palin, Instance Of, attractive middle aged woman) (Sarah Palin, is, the new Harriet Miers) -> Sarah Palin (2667ms)\nHow old is Harriet Miers?\tLucy R\t-13.782878722990231\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Lucy R, Instance Of, 30 year old governess) (Lucy, was, Harriet Miers) -> Lucy R (6640ms)\nHow old is Harriet Miers?\tWhite House Counsel\t-13.791168173831393\tHow old is Harriet Miers? -> how old be [ harriet mier ] ? -> what be the age of harriet mier ? -> $x: (harriet mier, age, $x) -> $x: (harriet mier, be be serve, $x) -> (Harriet Miers, is currently serving as, White House Counsel) -> White House Counsel (7836ms)\nHow old is Harriet Miers?\tinformation\t-13.838285402041963\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (information, Instance Of, age) (information, was compiled by, Harriet Miers) -> information (2667ms)\nHow old is Harriet Miers?\tYesterday's\t-13.912377148038534\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Yesterday's, Instance Of, quiet 82 year old) (yesterday, is, the Harriet Miers) -> Yesterday's (6640ms)\nHow old is Harriet Miers?\tYork\t-14.210142546618606\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (York, Instance Of, aged town) (YORK, was your reaction to, the Harriet Miers nomination) -> York (2667ms)\nHow old is Harriet Miers?\tfaith\t-14.218520433204507\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (faith, Instance Of, age-old value) (Faith, is very important to, Harriet Miers) -> faith (2782ms)\nHow old is Harriet Miers?\tsexism\t-14.240601068141467\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (sexism, Instance Of, challenge in this modern age) (sexism, was involved with, the Harriet Miers nomination) -> sexism (2783ms)\nHow old is Harriet Miers?\tstaff\t-14.325336368778068\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (staff, Instance Of, age category) (staff, has been replaced by, Harriet Miers) -> staff (2783ms)\nHow old is Harriet Miers?\tSonia Sotomayor\t-14.501647086536291\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Sonia Sotomayor, Instance Of, 54-year-old Hispanic American) (Sonia Sotomayor, is Spanish for, Harriet Miers) -> Sonia Sotomayor (6640ms)\nHow old is Harriet Miers?\tRepublican\t-14.688960614600425\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Republican, Instance Of, 189 year old new organization) (Republicans, are invoking, Harriet Miers) -> Republican (6640ms)\nHow old is Harriet Miers?\tStaff\t-14.726184607769188\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (Staff, Instance Of, age) (staff, has been replaced by, Harriet Miers) -> Staff (2783ms)\nHow old is Harriet Miers?\tFaith\t-14.804817320376554\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (Faith, Instance Of, characteristic of this age) (Faith, is very important to, Harriet Miers) -> Faith (2844ms)\nHow old is Harriet Miers?\tSotomayor\t-14.994527346753943\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Sotomayor, Instance Of, 54-year-old Hispanic) (Sotomayor, is like, Harriet Miers) -> Sotomayor (6667ms)\nHow old is Harriet Miers?\tMitt Romney\t-15.475656429043873\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what type of character be be harriet mier ? -> what character be be harriet mier ? -> $x: ($x, instance of, character) ($x, be be, harriet mier) -> (Mitt Romney, Instance Of, character) (Mitt Romney, is, Harriet Miers) -> Mitt Romney (9408ms)\nHow old is Harriet Miers?\tCheney\t-16.449304223678414\tHow old is Harriet Miers? -> how old [ be harriet mier ] ? -> what type of character be be harriet mier ? -> what character be be harriet mier ? -> $x: ($x, instance of, character) ($x, be be, harriet mier) -> (Cheney, Instance Of, character) (Cheney, was his nomination of, Harriet Miers) -> Cheney (9408ms)\nWhen was King Louis XIV born?\tSpain . Louis\t-4.600877905818088\tWhen was King Louis XIV born? -> $x: (King Louis XIV, was born in, $x) -> $x: (King Louis XIV, become king of, $x) -> (King Louis XIV, has become the king of, Spain . Louis) -> Spain . Louis (3780ms)\nWhen was King Louis XIV born?\tFrance\t-4.794228868793698\tWhen was King Louis XIV born? -> $x: (King Louis XIV, was born in, $x) -> $x: (King Louis XIV, become king of, $x) -> (King Louis XIV, became King of, France) -> France (3781ms)\nWhen was King Louis XIV born?\tParis\t-5.4399224966504836\tWhen was King Louis XIV born? -> $x: (King Louis XIV, was born in, $x) -> $x: (King Louis XIV, decide to move to, $x) -> (late 17th c. king Louis XIV, decided to move away from, Paris) -> Paris (3758ms)\nWhen was King Louis XIV born?\tthe site\t-7.324231948981502\tWhen was King Louis XIV born? -> $x: (King Louis XIV, was born on, $x) -> $x: (King Louis XIV, to live on, $x) -> (King Louis XIV, used to live on, the site) -> the site (5428ms)\nWhen was King Louis XIV born?\tthe land\t-7.4631762222083715\tWhen was King Louis XIV born? -> $x: (King Louis XIV, was born on, $x) -> $x: (King Louis XIV, have live on, $x) -> (King Louis XIV, had earlier lived on, the land) -> the land (5522ms)\nWhere is the Salton Sea?\tEcotopia\t0.7732287545858412\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was featured in, Ecotopia) -> Ecotopia (1960ms)\nWhere is the Salton Sea?\tCalifornia\t0.706025404501667\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is the largest lake in, California) -> California (1960ms)\nWhere is the Salton Sea?\tfact\t-0.6263856408504395\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was in, fact) -> fact (1961ms)\nWhere is the Salton Sea?\tmanagement\t-0.7773475455300225\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is an experiment in, management) -> management (2143ms)\nWhere is the Salton Sea?\tan effort\t-0.7926082116809543\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea Authority, was formed in, an effort) -> an effort (2143ms)\nWhere is the Salton Sea?\tserious trouble\t-0.8916976045064982\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is in, serious trouble) -> serious trouble (2143ms)\nWhere is the Salton Sea?\ta former volcanic area\t-1.0278047984034557\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is in, a former volcanic area) -> a former volcanic area (2143ms)\nWhere is the Salton Sea?\tLittle Birds\t-1.0378469938804837\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea, Featured In Films, Little Birds) -> Little Birds (2143ms)\nWhere is the Salton Sea?\tbirds\t-1.106649763305581\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the environmentally sensitive Salton Sea, is a key in, birds) -> birds (2143ms)\nWhere is the Salton Sea?\ta poor state\t-1.1915801983921654\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is still there in, a poor state) -> a poor state (2164ms)\nWhere is the Salton Sea?\ta closed desert basin\t-1.2304849270633644\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is located in, a closed desert basin) -> a closed desert basin (2164ms)\nWhere is the Salton Sea?\tAuthorities Concept Scheme\t-1.5511633017973026\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea (Calif.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2164ms)\nWhere is the Salton Sea?\tthe Imperial Valley\t-1.552586683373199\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, is in, the Imperial Valley) -> the Imperial Valley (2164ms)\nWhere is the Salton Sea?\tGeographic Names Concept Scheme\t-1.5836501606872182\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea (Calif.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (2180ms)\nWhere is the Salton Sea?\tnature\t-1.626166334955325\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, are often cyclical in, nature) -> nature (2180ms)\nWhere is the Salton Sea?\tthe Sonoran Desert\t-1.855568656476812\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is located in, the Sonoran Desert) -> the Sonoran Desert (2180ms)\nWhere is the Salton Sea?\tblack\t-1.8695593160869757\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the present day Salton Sea, is shown in, black) -> black (2201ms)\nWhere is the Salton Sea?\tSB 153\t-2.289379094871987\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, be included in, SB 153) -> SB 153 (2200ms)\nWhere is the Salton Sea?\tHoltville\t-2.3616344557255844\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> ('s Salton Sea Advisory Committee meeting, held in, Holtville) -> Holtville (2200ms)\nWhere is the Salton Sea?\tSan Diego\t-2.601919663198811\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea Centennial Symposium, held in, San Diego) -> San Diego (2200ms)\nWhere is the Salton Sea?\tthe top picks\t-2.667803860766197\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, is staying in, the top picks) -> the top picks (2200ms)\nWhere is the Salton Sea?\tthe middle\t-2.668226939585214\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is out in, the middle) -> the middle (2214ms)\nWhere is the Salton Sea?\tthe desert\t-2.690208043949199\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is a large lake in, the desert) -> the desert (2214ms)\nWhere is the Salton Sea?\tthe dust\t-2.7530453727114237\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, was left in, the dust) -> the dust (2214ms)\nWhere is the Salton Sea?\tthe early part\t-2.8297372966353462\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was formed in, the early part) -> the early part (2214ms)\nWhere is the Salton Sea?\tthe southeastern corner\t-2.837695079649806\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is located in, the southeastern corner) -> the southeastern corner (2236ms)\nWhere is the Salton Sea?\tSt . Louis\t-3.08999593176063\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea Resolution, passed in, St . Louis) -> St . Louis (2252ms)\nWhere is the Salton Sea?\t1905\t-3.856700672820333\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, was made in, 1905) -> 1905 (2264ms)\nWhere is the Salton Sea?\tMay\t-4.084605340172335\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea', will be out in, May) -> May (2454ms)\nWhere is the Salton Sea?\t2010\t-4.085410039590524\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was ruled invalid in, 2010) -> 2010 (2468ms)\nWhere is the Salton Sea?\tdetail\t-4.110835966778081\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, looks in, detail) -> detail (2469ms)\nWhere is the Salton Sea?\tpart\t-4.113289968587243\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, will depend in, part) -> part (2469ms)\nWhere is the Salton Sea?\t1955\t-4.309350656386576\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea State Park, was established in, 1955) -> 1955 (2469ms)\nWhere is the Salton Sea?\tthe center\t-4.398396886033003\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, located in, the center) -> the center (2483ms)\nWhere is the Salton Sea?\t700 AD\t-4.987066996158611\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, began in, 700 AD) -> 700 AD (2502ms)\nWhere is the Salton Sea?\tthe hostile desert\t-5.035976838931454\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> ('s Salton Sea, is a fertile oasis in, the hostile desert) -> the hostile desert (2523ms)\nWhere is the Salton Sea?\tthe balance\t-5.227556944306022\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, still hangs in, the balance) -> the balance (2703ms)\nWhere is the Salton Sea?\tsalton city 11.09.2009\t-5.866794315420267\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the salton sea series, taken in, salton city 11.09.2009) -> salton city 11.09.2009 (2737ms)\nWhere is the Salton Sea?\tSection 2932\t-5.909479559682823\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea Restoration Fund, established in, Section 2932) -> Section 2932 (2737ms)\nWhere is the Salton Sea?\t1998\t-6.7397415523922275\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (The Salton Sea Database Program, began in, 1998) -> 1998 (2774ms)\nWhere is the Salton Sea?\t2012\t-6.903293809891528\tWhere is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea, will begin construction in, 2012) -> 2012 (2790ms)\nWhere is the Salton Sea?\tAlabama\t-9.154224985461228\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Alabama, is like, the Salton Sea) -> Alabama (4652ms)\nWhere is the Salton Sea?\tYucca\t-9.230728021064191\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Yucca, is somewhere near, the Salton Sea) -> Yucca (4652ms)\nWhere is the Salton Sea?\tKen Aguado\t-9.344458706212784\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: ($x, produce, the salton sea) -> (Ken Aguado, Films Produced, The Salton Sea) -> Ken Aguado (7714ms)\nWhere is the Salton Sea?\tIndio\t-9.438333565175071\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Indio, is, the Salton Sea) -> Indio (4652ms)\nWhere is the Salton Sea?\tWestmorland\t-9.747799238770526\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Westmorland, is 12 miles south of, the Salton Sea) -> Westmorland (4914ms)\nWhere is the Salton Sea?\tThomas Newman\t-9.765034040529715\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, producer, $x) -> (The Salton Sea, Producers, Thomas Newman) -> Thomas Newman (7531ms)\nWhere is the Salton Sea?\tNew River\t-9.782991131040227\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the source of the salton ? -> $x: (the salton, source, $x) -> $x: (salton, source, $x) -> (Salton Sea, Inflow source(s), New River) -> New River (6709ms)\nWhere is the Salton Sea?\tLos Angeles\t-9.859050551029052\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, place, $x) -> (The Salton Sea : geology, history, potential problems, politics, and possible futures of an unnatural desert salt lake, Place of publication, Los Angeles) -> Los Angeles (7813ms)\nWhere is the Salton Sea?\tThe Salton Sea\t-10.00607953108343\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, soundtrack, $x) -> (The Salton Sea, Soundtrack, The Salton Sea) -> The Salton Sea (7847ms)\nWhere is the Salton Sea?\tPalm Springs\t-10.232455164015288\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Palm Springs, is, the Salton Sea) -> Palm Springs (4913ms)\nWhere is the Salton Sea?\tBombay Beach\t-10.277048768277501\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Bombay Beach, is, the Salton Sea) -> Bombay Beach (4914ms)\nWhere is the Salton Sea?\tRandy\t-10.27730142218039\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Randy, was more familiar with, the Salton Sea) -> Randy (4914ms)\nWhere is the Salton Sea?\tBill Bernstein\t-10.278350348446534\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, producer, $x) -> (The Salton Sea, Producers, Bill Bernstein) -> Bill Bernstein (7532ms)\nWhere is the Salton Sea?\tsea level\t-10.288979263390342\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is below, sea level) -> sea level (4914ms)\nWhere is the Salton Sea?\tfresh water\t-10.292580629824279\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, fresh water) -> fresh water (4914ms)\nWhere is the Salton Sea?\tImperial County\t-10.293813327929684\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Imperial County, is the Home of, the famous Salton Sea) -> Imperial County (5008ms)\nWhere is the Salton Sea?\tWhitewater River\t-10.298861251434245\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the source of the salton ? -> $x: (the salton, source, $x) -> $x: (salton, source, $x) -> (Salton Sea, Inflow source(s), Whitewater River) -> Whitewater River (6709ms)\nWhere is the Salton Sea?\tAlamo River\t-10.298861251434245\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the source of the salton ? -> $x: (the salton, source, $x) -> $x: (salton, source, $x) -> (Salton Sea, Inflow source(s), Alamo River) -> Alamo River (6709ms)\nWhere is the Salton Sea?\tChristopher\t-10.36595978043293\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Christopher, is living near, the Salton Sea and training) -> Christopher (5008ms)\nWhere is the Salton Sea?\tthe Center\t-10.373042593667671\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Center, will be, the Salton Sea) -> the Center (5008ms)\nWhere is the Salton Sea?\tUnited States of America\t-10.51947204168211\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, region, $x) -> (The Salton Sea, Region, United States of America) -> United States of America (7455ms)\nWhere is the Salton Sea?\tagriculture\t-10.623431733350618\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, agriculture) -> agriculture (5008ms)\nWhere is the Salton Sea?\tan eco-disaster\t-10.650597264815776\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, an eco-disaster) -> an eco-disaster (5008ms)\nWhere is the Salton Sea?\t?man\t-10.659503802358588\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The current Salton Sea, is, ?man) -> ?man (5008ms)\nWhere is the Salton Sea?\tan extreme\t-10.664161592048755\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, an extreme) -> an extreme (5008ms)\nWhere is the Salton Sea?\tTodd\t-10.665518207826718\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Todd, is highly knowledgeable of, the Salton Sea) -> Todd (5106ms)\nWhere is the Salton Sea?\tDDT\t-10.786857653237062\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (DDT, has both been detected in, the Salton Sea) -> DDT (5106ms)\nWhere is the Salton Sea?\tan inland\t-10.79655443370429\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton sea, is, an inland) -> an inland (5106ms)\nWhere is the Salton Sea?\tDesert Shores\t-10.832981071609073\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Desert Shores, is in, the Salton Sea area) -> Desert Shores (5106ms)\nWhere is the Salton Sea?\tWheat Chex\t-10.834314980195803\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Wheat Chex, must be made in, the Salton Sea) -> Wheat Chex (5106ms)\nWhere is the Salton Sea?\tvital importance\t-10.893001768250947\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is of, vital importance) -> vital importance (5106ms)\nWhere is the Salton Sea?\tan interesting place\t-10.904431781444831\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, an interesting place) -> an interesting place (5106ms)\nWhere is the Salton Sea?\tagricultural drain water\t-10.904431781444831\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, agricultural drain water) -> agricultural drain water (5158ms)\nWhere is the Salton Sea?\thigh phosphate water\t-10.93724683542115\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (high phosphate water, is, the Salton sea) -> high phosphate water (5159ms)\nWhere is the Salton Sea?\ta pretty strange place\t-10.958134542726473\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a pretty strange place) -> a pretty strange place (5158ms)\nWhere is the Salton Sea?\tfive feet\t-10.961085017074398\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is only, five feet) -> five feet (5158ms)\nWhere is the Salton Sea?\ta barren Californian landscape\t-10.99353764048112\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, a barren Californian landscape) -> a barren Californian landscape (5158ms)\nWhere is the Salton Sea?\tevery movie\t-10.99792345779877\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (every movie, is shot near, the Salton Sea) -> every movie (5159ms)\nWhere is the Salton Sea?\ta productive fishery\t-11.001758118547789\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, a productive fishery) -> a productive fishery (5196ms)\nWhere is the Salton Sea?\tCalifornia?s largest inland body\t-11.042068789451585\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, California?s largest inland body) -> California?s largest inland body (5196ms)\nWhere is the Salton Sea?\ta fun historical documentary\t-11.070427691329996\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, a fun historical documentary) -> a fun historical documentary (5196ms)\nWhere is the Salton Sea?\ta terminal lake\t-11.075638473088208\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a terminal lake) -> a terminal lake (5196ms)\nWhere is the Salton Sea?\ta huge saltwater lake\t-11.081922219948842\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a huge saltwater lake) -> a huge saltwater lake (5195ms)\nWhere is the Salton Sea?\ta good movie\t-11.082220082391181\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, was, a good movie) -> a good movie (5196ms)\nWhere is the Salton Sea?\tan ideal distance\t-11.098135648420099\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, was, an ideal distance) -> an ideal distance (5234ms)\nWhere is the Salton Sea?\tinvalid last year\t-11.135401508327604\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was ruled, invalid last year) -> invalid last year (5234ms)\nWhere is the Salton Sea?\ta named star\t-11.136677946521704\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is now, a named star) -> a named star (5234ms)\nWhere is the Salton Sea?\tColorado River water\t-11.13963368524694\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was mixed with, Colorado River water) -> Colorado River water (5234ms)\nWhere is the Salton Sea?\tI?ll\t-11.14322973460127\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (I?ll, be speaking about, the Salton Sea) -> I?ll (5234ms)\nWhere is the Salton Sea?\ta great flick\t-11.16238423649453\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (general The Salton Sea, was, a great flick) -> a great flick (5234ms)\nWhere is the Salton Sea?\ta major bird sanctuary\t-11.176139177928253\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a major bird sanctuary) -> a major bird sanctuary (5234ms)\nWhere is the Salton Sea?\tthe Coachella and Imperial valleys\t-11.178299802523448\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Coachella and Imperial valleys, is, the Salton Sea) -> the Coachella and Imperial valleys (5234ms)\nWhere is the Salton Sea?\tthe Los Angeles basin\t-11.184489212735715\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Los Angeles basin, are near, the Salton Sea) -> the Los Angeles basin (5305ms)\nWhere is the Salton Sea?\tmovie\t-11.2032342095551\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (movie The Salton Sea, is a, movie) -> movie (5305ms)\nWhere is the Salton Sea?\tAn obvious issue\t-11.205064322164805\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (An obvious issue, is the distance from, the Salton Sea) -> An obvious issue (5305ms)\nWhere is the Salton Sea?\tthree species\t-11.214551919289063\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, are infected by, three species) -> three species (5305ms)\nWhere is the Salton Sea?\ta unique and curious place\t-11.214790477981458\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a unique and curious place) -> a unique and curious place (5305ms)\nWhere is the Salton Sea?\tan absolute resource goldmine\t-11.23842526833244\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, an absolute resource goldmine) -> an absolute resource goldmine (5305ms)\nWhere is the Salton Sea?\twater\t-11.29438538971789\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (water, would have been sent to, the Salton Sea) -> water (5379ms)\nWhere is the Salton Sea?\tAmerica\t-11.305237913488893\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, call, $x) -> (the Salton Sea, is now called one of, America) -> America (7773ms)\nWhere is the Salton Sea?\tthe Gulf\t-11.325960828789194\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Gulf, has been recorded at, the Salton Sea) -> the Gulf (5379ms)\nWhere is the Salton Sea?\tBob\t-11.32733700250068\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Bob, was raised in, the Salton Sea area) -> Bob (5379ms)\nWhere is the Salton Sea?\tnutrient rich inflows\t-11.349387357817916\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, has been sustained by, nutrient rich inflows) -> nutrient rich inflows (5379ms)\nWhere is the Salton Sea?\tfive <\t-11.370543579530748\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea rhyolite, is a series of, five <) -> five < (5415ms)\nWhere is the Salton Sea?\ta barren California landscape and symbol\t-11.382594663587238\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a barren California landscape and symbol) -> a barren California landscape and symbol (5415ms)\nWhere is the Salton Sea?\tAmy Sather Smith\t-11.386324853290581\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was written by, Amy Sather Smith) -> Amy Sather Smith (5415ms)\nWhere is the Salton Sea?\tSonny Bono Sonny\t-11.396051061809528\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Sonny Bono Sonny, was determined to save, the Salton Sea) -> Sonny Bono Sonny (5415ms)\nWhere is the Salton Sea?\tNo nests\t-11.407545590428374\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (No nests, have been noted at, the Salton Sea) -> No nests (5414ms)\nWhere is the Salton Sea?\tan enormous , accidentally created salt lake\t-11.442464394535438\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, an enormous , accidentally created salt lake) -> an enormous , accidentally created salt lake (5415ms)\nWhere is the Salton Sea?\tNew York City\t-11.448271062433543\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, place, $x) -> (The Salton Sea; an account of Harriman's fight with the Colorado River, Place of publication, New York City) -> New York City (7813ms)\nWhere is the Salton Sea?\tThe Glamis Sand Dunes\t-11.475572517320165\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The Glamis Sand Dunes, are located southeast of, the Salton Sea) -> The Glamis Sand Dunes (5415ms)\nWhere is the Salton Sea?\tLake Cahuilla\t-11.482637867737932\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Lake Cahuilla, was the original name for, the Salton Sea) -> Lake Cahuilla (5454ms)\nWhere is the Salton Sea?\ta little\t-11.488261396844273\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, a little) -> a little (5454ms)\nWhere is the Salton Sea?\tDVD\t-11.490860570913457\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> when be the salton sea be ? -> $x: (the salton sea, be be on, $x) -> (the Salton Sea, was released on, DVD) -> DVD (9131ms)\nWhere is the Salton Sea?\ta large amount\t-11.493511638479276\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is also home to, a large amount) -> a large amount (5454ms)\nWhere is the Salton Sea?\ta motor home and Jeep\t-11.515852814467763\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (a motor home and Jeep, are stored near, the Salton Sea) -> a motor home and Jeep (5454ms)\nWhere is the Salton Sea?\tmore than one hundred different species\t-11.53972616351114\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (more than one hundred different species, are at, the Salton Sea) -> more than one hundred different species (5527ms)\nWhere is the Salton Sea?\tA somewhat unique population\t-11.567784244812698\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (A somewhat unique population, is found in, the Salton Sea) -> A somewhat unique population (5527ms)\nWhere is the Salton Sea?\tterm\t-11.57022570256436\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is at, term) -> term (5527ms)\nWhere is the Salton Sea?\tFloods and crop damage\t-11.580982630808775\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Floods and crop damage, was incurred at, the Salton Sea) -> Floods and crop damage (5527ms)\nWhere is the Salton Sea?\tjobs\t-11.628726165981963\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the source of the salton ? -> $x: (the salton, source, $x) -> (The Salton Sea, should be a source of, jobs) -> jobs (4089ms)\nWhere is the Salton Sea?\ta director\t-11.643815637997223\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (a director, was, The Salton Sea) -> a director (5527ms)\nWhere is the Salton Sea?\ta shallow\t-11.70394105110392\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a shallow) -> a shallow (5579ms)\nWhere is the Salton Sea?\ta volcano\t-11.802151574607974\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a volcano) -> a volcano (5579ms)\nWhere is the Salton Sea?\ta toilet\t-11.81099878057062\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The real Salton Sea, is, a toilet) -> a toilet (5579ms)\nWhere is the Salton Sea?\ta saline\t-11.81187778312692\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a saline) -> a saline (5579ms)\nWhere is the Salton Sea?\ta lake\t-11.827470849334887\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (a lake, was dubbed, the Salton Sea) -> a lake (5579ms)\nWhere is the Salton Sea?\tdecay\t-11.912972006063951\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is all about, decay) -> decay (5635ms)\nWhere is the Salton Sea?\ta crossroads\t-11.982597724006999\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is at, a crossroads) -> a crossroads (5635ms)\nWhere is the Salton Sea?\tneeds-assessment workshop\t-12.053894696165703\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Saving The Salton Sea, Instance Of, needs-assessment workshop) -> needs-assessment workshop (9131ms)\nWhere is the Salton Sea?\tcharacter-driven crime thriller\t-12.077745002836725\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, character-driven crime thriller) -> character-driven crime thriller (9130ms)\nWhere is the Salton Sea?\tthe Desert Forum\t-12.085726409035479\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, are located here at, the Desert Forum) -> the Desert Forum (5635ms)\nWhere is the Salton Sea?\tfucking masterpiece\t-12.111087173333067\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, fucking masterpiece) -> fucking masterpiece (9130ms)\nWhere is the Salton Sea?\tthe Colorado River\t-12.124139150396289\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Colorado River, was still pouring into, the Salton Sea) -> the Colorado River (5686ms)\nWhere is the Salton Sea?\tWater\t-12.145284057240973\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> which organ be be the salton sea ? -> $x: ($x, instance of, organ) ($x, be be, the salton sea) -> (Water, Instance Of, internal organ position substance) (water, would have been sent to, the Salton Sea) -> Water (7258ms)\nWhere is the Salton Sea?\tterrific movie\t-12.147420619212268\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, terrific movie) -> terrific movie (9130ms)\nWhere is the Salton Sea?\tThe band\t-12.155696770831398\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The band, is from, the Salton Sea) -> The band (5686ms)\nWhere is the Salton Sea?\tthe Pacific Institute\t-12.196643383927517\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Pacific Institute, are members of, the Salton Sea Coalition) -> the Pacific Institute (5686ms)\nWhere is the Salton Sea?\tpoint\t-12.197132425317362\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is also major stopping over, point) -> point (5686ms)\nWhere is the Salton Sea?\tinteresting read\t-12.200168278052631\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (history of the Salton Sea, Instance Of, interesting read) -> interesting read (9131ms)\nWhere is the Salton Sea?\tTodgoldberg.com\t-12.201826552803007\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (Todgoldberg.com, has some pictures from, the Salton Sea) -> Todgoldberg.com (5686ms)\nWhere is the Salton Sea?\tstylized movie inwhich\t-12.208305282263316\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, stylized movie inwhich) -> stylized movie inwhich (9130ms)\nWhere is the Salton Sea?\thuge dune field\t-12.228385044608006\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (East of the Salton Sea, Instance Of, huge dune field) -> huge dune field (9131ms)\nWhere is the Salton Sea?\tcomplex challenge\t-12.228552746670111\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Restoration of the Salton Sea, Instance Of, complex challenge) -> complex challenge (9779ms)\nWhere is the Salton Sea?\tlong-term effort\t-12.235865054985226\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (restoration of the Salton Sea, Instance Of, long-term effort) -> long-term effort (9779ms)\nWhere is the Salton Sea?\tinteresting page\t-12.238216310091461\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (history of the Salton Sea, Instance Of, interesting page) -> interesting page (9779ms)\nWhere is the Salton Sea?\tunique opportunity\t-12.240032336395807\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Restoration of the Salton Sea, Instance Of, unique opportunity) -> unique opportunity (9779ms)\nWhere is the Salton Sea?\t231 ft\t-12.267982854693866\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, 231 ft) -> 231 ft (5686ms)\nWhere is the Salton Sea?\tawareness about issue\t-12.273279000043148\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (depletion of the Salton Sea, Instance Of, awareness about issue) -> awareness about issue (9779ms)\nWhere is the Salton Sea?\tviolent, drug glorifying movie\t-12.273279000043148\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, violent, drug glorifying movie) -> violent, drug glorifying movie (9779ms)\nWhere is the Salton Sea?\tweather worn area\t-12.273279000043148\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Northeast of the Salton Sea, Instance Of, weather worn area) -> weather worn area (9779ms)\nWhere is the Salton Sea?\t15 miles\t-12.276634209908678\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, 15 miles) -> 15 miles (5891ms)\nWhere is the Salton Sea?\tstressful period\t-12.288387120941886\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (summer at the Salton Sea, Instance Of, stressful period) -> stressful period (9779ms)\nWhere is the Salton Sea?\twater quality parameter\t-12.291160591647378\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (temperature of the Salton Sea, Instance Of, water quality parameter) -> water quality parameter (10233ms)\nWhere is the Salton Sea?\t226 feet\t-12.306952098790026\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, 226 feet) -> 226 feet (5891ms)\nWhere is the Salton Sea?\tpiece of slideshow art\t-12.328256761241466\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Greeting from the Salton Sea, Instance Of, piece of slideshow art) -> piece of slideshow art (10233ms)\nWhere is the Salton Sea?\thilarious tweeker\t-12.328256761241466\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Bobby Ocean from The Salton Sea, Instance Of, hilarious tweeker) -> hilarious tweeker (10233ms)\nWhere is the Salton Sea?\t128 feet\t-12.349001373974902\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, 128 feet) -> 128 feet (5891ms)\nWhere is the Salton Sea?\tnice stop\t-12.35746336220998\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Fountain of Youth Near the Salton Sea, Instance Of, nice stop) -> nice stop (10366ms)\nWhere is the Salton Sea?\tlengthy process\t-12.358309823167431\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Science Office Restoration of the Salton Sea, Instance Of, lengthy process) -> lengthy process (10366ms)\nWhere is the Salton Sea?\tfarm runoff\t-12.358723127348426\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (farm runoff, has left, the Salton Sea) -> farm runoff (5891ms)\nWhere is the Salton Sea?\ttale of survival\t-12.358959598668985\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Plagues and Pleasures on the Salton Sea, Instance Of, tale of survival) -> tale of survival (10366ms)\nWhere is the Salton Sea?\tenvironmental issue\t-12.37191969025175\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (salinity problems at the Salton Sea, Instance Of, environmental issue) -> environmental issue (10366ms)\nWhere is the Salton Sea?\tfeisty documentary\t-12.375380556554312\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Plagues & Pleasures on the Salton Sea, Instance Of, feisty documentary) -> feisty documentary (10366ms)\nWhere is the Salton Sea?\tkiller documentary\t-12.375380556554312\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Plagues and Pleasures on the Salton Sea, Instance Of, killer documentary) -> killer documentary (10366ms)\nWhere is the Salton Sea?\tpublic outreach tool\t-12.377202604277429\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (upcoming public television documentary on the Salton Sea, Instance Of, public outreach tool) -> public outreach tool (10366ms)\nWhere is the Salton Sea?\t50,000 parts\t-12.392789091118933\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, are about, 50,000 parts) -> 50,000 parts (5891ms)\nWhere is the Salton Sea?\t28 miles\t-12.39979288305795\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, 28 miles) -> 28 miles (5939ms)\nWhere is the Salton Sea?\tenvironmental change\t-12.403599535165842\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (rapid increase in salinity of the Salton Sea, Instance Of, environmental change) -> environmental change (10410ms)\nWhere is the Salton Sea?\t30 % saltier\t-12.409524275421692\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, 30 % saltier) -> 30 % saltier (5939ms)\nWhere is the Salton Sea?\tarea of very high apparent Pg velocity\t-12.416221179158777\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (South of the Salton Sea, Instance Of, area of very high apparent Pg velocity) -> area of very high apparent Pg velocity (10410ms)\nWhere is the Salton Sea?\tthe east\t-12.491016292898633\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the east, is, the Salton Sea) -> the east (5939ms)\nWhere is the Salton Sea?\t25 percent saltier\t-12.492703419297925\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, 25 percent saltier) -> 25 percent saltier (5939ms)\nWhere is the Salton Sea?\t25 % saltier\t-12.562555040923568\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, 25 % saltier) -> 25 % saltier (5939ms)\nWhere is the Salton Sea?\tdusty flatlands\t-12.56666852419879\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (dusty flatlands, have replaced parts of, the Salton Sea) -> dusty flatlands (6113ms)\nWhere is the Salton Sea?\thistorical records\t-12.580331661452076\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, set, $x) -> (the Salton Sea, may set, historical records) -> historical records (7847ms)\nWhere is the Salton Sea?\t60 km\t-12.588196762769138\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is about, 60 km) -> 60 km (6113ms)\nWhere is the Salton Sea?\tState and national stakeholders\t-12.592310298746654\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (State and national stakeholders, have identified, the Salton Sea) -> State and national stakeholders (6113ms)\nWhere is the Salton Sea?\tabundant wildlife\t-12.593979116949878\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is a treasure of, abundant wildlife) -> abundant wildlife (6113ms)\nWhere is the Salton Sea?\tThe plant\t-12.605307127246144\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The plant, is located over, the Salton Sea Geothermal Field) -> The plant (6113ms)\nWhere is the Salton Sea?\tWaters\t-12.608201989331466\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what place have be the salton sea ? -> $x: ($x, instance of, place) ($x, have be, the salton sea) -> (Waters, Instance Of, place) (water, would have been sent to, the Salton Sea) -> Waters (10455ms)\nWhere is the Salton Sea?\tThe location\t-12.640445744668868\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The location, is, the Salton Sea) -> The location (6113ms)\nWhere is the Salton Sea?\tCalifornia 's largest lake\t-12.66186628085466\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, California 's largest lake) -> California 's largest lake (6162ms)\nWhere is the Salton Sea?\taccident\t-12.66302050111867\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was created by, accident) -> accident (6162ms)\nWhere is the Salton Sea?\tThe IID\t-12.663046106773393\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (The IID, has clarified its position on, the Salton Sea) -> The IID (6162ms)\nWhere is the Salton Sea?\t10 generating plants\t-12.736618156261077\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is home to, 10 generating plants) -> 10 generating plants (6162ms)\nWhere is the Salton Sea?\tThe large lake\t-12.786538283022496\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The large lake, is, the Salton Sea) -> The large lake (6162ms)\nWhere is the Salton Sea?\tThe next stop\t-12.822427548732232\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The next stop, was, the Salton Sea) -> The next stop (6162ms)\nWhere is the Salton Sea?\tthe epicenter\t-12.834483869335813\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is predicted to be, the epicenter) -> the epicenter (6251ms)\nWhere is the Salton Sea?\tthe brink\t-12.845416711374513\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is on, the brink) -> the brink (6251ms)\nWhere is the Salton Sea?\t4 Salton Sea Q\t-12.857579231012723\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (4 Salton Sea Q, is the deal with, the Salton Sea) -> 4 Salton Sea Q (6251ms)\nWhere is the Salton Sea?\tcomedy\t-12.888481275310824\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, comedy) -> comedy (10538ms)\nWhere is the Salton Sea?\tthe bulk\t-12.902959317249971\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the bulk, is occupied by, the Salton Sea) -> the bulk (6251ms)\nWhere is the Salton Sea?\tThe next outing\t-12.923234810526719\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The next outing, was out down to, the Salton Sea) -> The next outing (6251ms)\nWhere is the Salton Sea?\tfish\t-12.931002425715144\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, place, $x) -> (The Salton Sea, is apparently an excellent place to, fish) -> fish (7813ms)\nWhere is the Salton Sea?\t420 bird species\t-12.959699403784938\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (420 bird species, have been recorded at, the Salton Sea) -> 420 bird species (6251ms)\nWhere is the Salton Sea?\tthe fastest surfaces\t-12.961902734215528\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is one of, the fastest surfaces) -> the fastest surfaces (6251ms)\nWhere is the Salton Sea?\town demented trailer trash\t-12.978039547740604\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> where s be the salton sea ? -> $x: (the salton sea, s, $x) -> (the Salton Sea, 's very, own demented trailer trash) -> own demented trailer trash (10644ms)\nWhere is the Salton Sea?\tthe meeting\t-12.978941045337937\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the meeting, was centered around, the Salton Sea 6 project) -> the meeting (6291ms)\nWhere is the Salton Sea?\t3 million birds\t-12.989762110338287\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (3 million birds, can be found at, the Salton Sea) -> 3 million birds (6290ms)\nWhere is the Salton Sea?\tUC Davis researchers\t-12.9903661274753\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, set, $x) -> (the Salton Sea, set out by, UC Davis researchers) -> UC Davis researchers (7847ms)\nWhere is the Salton Sea?\trefuge\t-13.000769659903744\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (shallow area of the Salton Sea, Instance Of, refuge) -> refuge (10644ms)\nWhere is the Salton Sea?\tdocumentary\t-13.001916324014642\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Plagues & Pleasures on the Salton Sea, Instance Of, documentary) -> documentary (10644ms)\nWhere is the Salton Sea?\tthe senses\t-13.002511267561664\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is a jolt to, the senses) -> the senses (6291ms)\nWhere is the Salton Sea?\tadult\t-13.038631183325949\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (bird at the Salton Sea, Instance Of, adult) -> adult (10644ms)\nWhere is the Salton Sea?\tThe refuge\t-13.040894187699065\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The refuge, is bordered by, the Salton Sea) -> The refuge (6290ms)\nWhere is the Salton Sea?\tThe following photos\t-13.045315172406843\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The following photos, are from, the Salton Sea) -> The following photos (6291ms)\nWhere is the Salton Sea?\tThe site\t-13.051112330826106\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The site, is located on, the Salton Sea) -> The site (6291ms)\nWhere is the Salton Sea?\tthe headwaters\t-13.059164450488934\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, could be mistaken for, the headwaters) -> the headwaters (6291ms)\nWhere is the Salton Sea?\tthe data\t-13.064961608908199\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the data, has been gathered on, the Salton Sea) -> the data (6291ms)\nWhere is the Salton Sea?\tthe largest inland body\t-13.083037799532311\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, was now, the largest inland body) -> the largest inland body (6401ms)\nWhere is the Salton Sea?\tthe valley\t-13.103866337579397\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the valley, had been filled by, the Salton Sea) -> the valley (6401ms)\nWhere is the Salton Sea?\tBirds\t-13.10504167694136\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what place have be the salton sea ? -> $x: ($x, instance of, place) ($x, have be, the salton sea) -> (Birds, Instance Of, wonderful place) (birds, have been counted at, the Salton Sea--almost half) -> Birds (10644ms)\nWhere is the Salton Sea?\tpupfish\t-13.13301027282445\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (pupfish, have shown up at, the Salton Sea) -> pupfish (6401ms)\nWhere is the Salton Sea?\tproject\t-13.135129983192424\tWhere is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Constructed Wetlands in the Salton Sea, Instance Of, project) -> project (10644ms)\nWhere is the Salton Sea?\tThe real issue\t-13.197983507339124\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The real issue, is the liability of, the Salton Sea) -> The real issue (6401ms)\nWhere is the Salton Sea?\tApril 24\t-13.2044351233466\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (April 24, will be the fate of, the Salton Sea ? Panel Discussion) -> April 24 (6448ms)\nWhere is the Salton Sea?\tThe next step\t-13.232705809994942\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The next step, is available to fix, the Salton Sea) -> The next step (6448ms)\nWhere is the Salton Sea?\tthe nation?s eyes\t-13.238895220207208\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the nation?s eyes, were finally turned toward, the Salton Sea) -> the nation?s eyes (6448ms)\nWhere is the Salton Sea?\tthe largest geothermal plant\t-13.258347584542808\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the largest geothermal plant, is called, the Salton Sea 6) -> the largest geothermal plant (6448ms)\nWhere is the Salton Sea?\tmistakes\t-13.33305329953081\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is a result of, mistakes) -> mistakes (6492ms)\nWhere is the Salton Sea?\t35 miles long\t-13.38993210408374\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, 35 miles long) -> 35 miles long (6492ms)\nWhere is the Salton Sea?\tThe money\t-13.41770199982374\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The money, shall be paid into, the Salton Sea Restoration Fund) -> The money (6492ms)\nWhere is the Salton Sea?\tPortal So Cal\t-13.461790730986845\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, get, the salton sea) -> (Portal So Cal, get together also down by, the Salton Sea) -> Portal So Cal (10690ms)\nWhere is the Salton Sea?\tBird\t-13.496805705489205\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what place have be the salton sea ? -> $x: ($x, instance of, place) ($x, have be, the salton sea) -> (Bird, Instance Of, great place) (birds, have been counted at, the Salton Sea--almost half) -> Bird (10690ms)\nWhere is the Salton Sea?\tcampers and boaters\t-13.543522979022853\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, make, the salton sea) -> (campers and boaters, made their way to, the Salton Sea) -> campers and boaters (10690ms)\nWhere is the Salton Sea?\thelp\t-13.619818779025639\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, call, $x) -> (the Salton Sea ?, called for, help) -> help (7773ms)\nWhere is the Salton Sea?\tHave lunch\t-13.702678586609741\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, enjoy, the salton sea) -> (Have lunch, enjoy the grand panoramic views of, the Salton Sea) -> Have lunch (10690ms)\nWhere is the Salton Sea?\ta fish\t-13.718782073816637\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: ($x, die, the salton sea) -> (a fish, die off in, the Salton Sea) -> a fish (7491ms)\nWhere is the Salton Sea?\t400 species of birds\t-13.739979640856443\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (400 species of birds, are attracted to, the Salton Sea) -> 400 species of birds (6492ms)\nWhere is the Salton Sea?\tthe largest lake in California\t-13.790664302325716\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, the largest lake in California) -> the largest lake in California (6531ms)\nWhere is the Salton Sea?\tlocation of the ED\t-13.847098793007957\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what hospital be be the salton sea ? -> $x: ($x, instance of, hospital) ($x, be be, the salton sea) -> (location of the ED, Instance Of, hospital facility) (The location, is, the Salton Sea) -> location of the ED (10690ms)\nWhere is the Salton Sea?\tthe ocean\t-13.849860059392954\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is 25 % saltier than, the ocean) -> the ocean (6531ms)\nWhere is the Salton Sea?\t4 to 6\t-13.99388704540829\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (4 to 6, have rocked, the Salton Sea area) -> 4 to 6 (6531ms)\nWhere is the Salton Sea?\tthe outside world\t-14.06690090381855\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (the outside world, often has of, the Salton Sea) -> the outside world (6531ms)\nWhere is the Salton Sea?\tthe state\t-14.144645740331395\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (the state, have to deal with, the Salton Sea) -> the state (6531ms)\nWhere is the Salton Sea?\tbird\t-14.217229254775916\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> which organ be be the salton sea ? -> $x: ($x, instance of, organ) ($x, be be, the salton sea) -> (bird, Instance Of, analogous organ \\Body part) (birds, are attracted to, the Salton Sea) -> bird (7258ms)\nWhere is the Salton Sea?\tBird's\t-14.336147077022078\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what place have be the salton sea ? -> $x: ($x, instance of, place) ($x, have be, the salton sea) -> (Bird's, Instance Of, causal place) (birds, have been counted at, the Salton Sea--almost half) -> Bird's (10787ms)\nWhere is the Salton Sea?\tthe strangest places\t-14.35713210288725\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is one of, the strangest places) -> the strangest places (6571ms)\nWhere is the Salton Sea?\tthe most productive\t-14.369552291998602\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, call, $x) -> (the Salton Sea, has been called among, the most productive) -> the most productive (7773ms)\nWhere is the Salton Sea?\tan estimated 400,000 tons\t-14.422070201519835\tWhere is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, contain, $x) -> (The Salton Sea, now contains, an estimated 400,000 tons) -> an estimated 400,000 tons (7772ms)\nWhere is the Salton Sea?\tthe approach\t-14.427660369276778\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the approach, being taken to, restore the Salton Sea) -> the approach (6571ms)\nWhere is the Salton Sea?\tthe most polluted bodies\t-14.474084794890947\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the salton sea, is one of, the most polluted bodies) -> the most polluted bodies (6571ms)\nWhere is the Salton Sea?\tthe only fish living\t-14.477361198827412\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (the only fish living, has well adapted to, the Salton Sea) -> the only fish living (6709ms)\nWhere is the Salton Sea?\t1905 and 1907\t-14.974699067232233\tWhere is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, was created between, 1905 and 1907) -> 1905 and 1907 (6709ms)\nWhat was the final score?\tScale Calibration Factor\t-3.8343365392470083\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final element of the API base score, Instance Of, Scale Calibration Factor) -> Scale Calibration Factor (2844ms)\nWhat was the final score?\ttie\t-3.8532252147010873\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, tie) -> tie (2844ms)\nWhat was the final score?\tPermanent Score\t-3.8796264457055636\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score from the last Classification, Instance Of, Permanent Score) -> Permanent Score (2844ms)\nWhat was the final score?\tcontinuous problem-solving process\t-3.919008302017959\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (emergence of the final score, Instance Of, continuous problem-solving process) -> continuous problem-solving process (2844ms)\nWhat was the final score?\tmicro-averaged f-measure\t-4.018880018651419\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score for the NER system, Instance Of, micro-averaged f-measure) -> micro-averaged f-measure (3695ms)\nWhat was the final score?\tmixed bag of decision\t-4.018880018651419\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (Final scoring from the judges, Instance Of, mixed bag of decision) -> mixed bag of decision (3695ms)\nWhat was the final score?\tperformance project\t-4.0901925257329665\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (The Final Score, Instance Of, performance project) -> performance project (3695ms)\nWhat was the final score?\tseparate and equal factor\t-4.10684443656873\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (category for the final total score, Instance Of, separate and equal factor) -> separate and equal factor (3695ms)\nWhat was the final score?\tmuch closer game\t-4.164990585540714\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (Indians winning 11-6 and despite the final score line, Instance Of, much closer game) -> much closer game (3695ms)\nWhat was the final score?\tshort movie\t-4.205119023003758\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (The Final Score, Instance Of, short movie) -> short movie (3695ms)\nWhat was the final score?\tdefensive score\t-4.211203500691976\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score for the Warriors, Instance Of, defensive score) -> defensive score (3965ms)\nWhat was the final score?\tcurved score\t-4.256097456127118\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (score in the Final column, Instance Of, curved score) -> curved score (3966ms)\nWhat was the final score?\twriting score\t-4.256097456127118\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score from the WKCE, Instance Of, writing score) -> writing score (3965ms)\nWhat was the final score?\timpressive accomplishment\t-4.2996787406869785\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score on the film, Instance Of, impressive accomplishment) -> impressive accomplishment (3966ms)\nWhat was the final score?\tpolicy decision\t-4.351827512986095\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final decision about the passing score, Instance Of, policy decision) -> policy decision (3965ms)\nWhat was the final score?\tcombined value\t-4.425402131511989\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score on the TJN index, Instance Of, combined value) -> combined value (4048ms)\nWhat was the final score?\tfirst-person\t-5.236652927567645\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, first-person) -> first-person (4048ms)\nWhat was the final score?\tfixed-odds game\t-5.5310062181099875\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score World Cup, Instance Of, fixed-odds game) -> fixed-odds game (4049ms)\nWhat was the final score?\tawesome pic\t-5.585600865387341\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, awesome pic) -> awesome pic (4048ms)\nWhat was the final score?\taverage of the seven above factor\t-5.6067044003829345\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, average of the seven above factor) -> average of the seven above factor (4105ms)\nWhat was the final score?\tencompassing summary of the statistic\t-5.616788206146111\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score of a game, Instance Of, encompassing summary of the statistic) -> encompassing summary of the statistic (4104ms)\nWhat was the final score?\tmixed bag\t-5.652611456316999\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score for Fighter Bomber, Instance Of, mixed bag) -> mixed bag (4104ms)\nWhat was the final score?\tlogarithmic matrix of the mutation probability\t-5.661682161581253\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final matrix of substitution scores, Instance Of, logarithmic matrix of the mutation probability) -> logarithmic matrix of the mutation probability (4104ms)\nWhat was the final score?\tmember of the Santa Clarita Valley Chamber\t-5.706269160411653\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, member of the Santa Clarita Valley Chamber) -> member of the Santa Clarita Valley Chamber (4104ms)\nWhat was the final score?\tBBC TV program\t-5.718495655145917\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, BBC TV program) -> BBC TV program (4185ms)\nWhat was the final score?\tresult of hard work\t-5.800601528250574\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score with Selinsgrove, Instance Of, result of hard work) -> result of hard work (4185ms)\nWhat was the final score?\texcellent sport shop\t-5.810524626004902\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, excellent sport shop) -> excellent sport shop (4185ms)\nWhat was the final score?\tlinear type trait\t-5.836785906443508\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, linear type trait) -> linear type trait (4185ms)\nWhat was the final score?\tFSN studio show\t-5.88667903384695\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (FSN Final Score, Instance Of, FSN studio show) -> FSN studio show (4358ms)\nWhat was the final score?\tPG-equivalent score\t-5.892588758614194\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score of 79, Instance Of, PG-equivalent score) -> PG-equivalent score (4358ms)\nWhat was the final score?\tlive team competition\t-5.91004513388973\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score Trivia, Instance Of, live team competition) -> live team competition (4358ms)\nWhat was the final score?\tresource of exceptionally high quality\t-5.919165892736866\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, resource of exceptionally high quality) -> resource of exceptionally high quality (4416ms)\nWhat was the final score?\treal strong indicator\t-5.922452230434956\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, real strong indicator) -> real strong indicator (4416ms)\nWhat was the final score?\tannual appraisal datum\t-5.9323951593514135\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, annual appraisal datum) -> annual appraisal datum (4416ms)\nWhat was the final score?\teconomically important trait\t-5.954120529419768\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, economically important trait) -> economically important trait (4416ms)\nWhat was the final score?\taverage of the 7 above factor\t-5.954367905728529\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, average of the 7 above factor) -> average of the 7 above factor (4433ms)\nWhat was the final score?\tlong standing favorite\t-5.957252560228865\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, long standing favorite) -> long standing favorite (4433ms)\nWhat was the final score?\tview only utility program\t-5.964059848172008\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (VIEW FINAL SCORES, Instance Of, view only utility program) -> view only utility program (4433ms)\nWhat was the final score?\tfixed-odds betting game\t-5.972700651320093\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, fixed-odds betting game) -> fixed-odds betting game (4433ms)\nWhat was the final score?\tfair an balanced score set\t-5.991548728771168\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final ScoreBelow, Instance Of, fair an balanced score set) -> fair an balanced score set (4453ms)\nWhat was the final score?\tsum of the 13 item\t-5.999261861163671\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (ADL final score, Instance Of, sum of the 13 item) -> sum of the 13 item (4453ms)\nWhat was the final score?\tleading online retailer of name brand footwear\t-6.015110626427591\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, leading online retailer of name brand footwear) -> leading online retailer of name brand footwear (4453ms)\nWhat was the final score?\tflagship BBC sport production\t-6.018896732523608\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, flagship BBC sport production) -> flagship BBC sport production (4453ms)\nWhat was the final score?\tgreat provider of sporting good\t-6.044591879847168\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score Sporting Goods, Instance Of, great provider of sporting good) -> great provider of sporting good (4453ms)\nWhat was the final score?\tfast paced football result based game\t-6.053398710119277\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (FINAL SCORE WORLD CUP, Instance Of, fast paced football result based game) -> fast paced football result based game (4472ms)\nWhat was the final score?\tstudio show\t-6.0964044262381645\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (FSN Final Score, Instance Of, studio show) -> studio show (4472ms)\nWhat was the final score?\tuser datum\t-6.1777238842440045\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, user datum) -> user datum (4472ms)\nWhat was the final score?\tnew record\t-6.215531020073801\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, new record) -> new record (4472ms)\nWhat was the final score?\tvital information\t-6.2229613310288805\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, vital information) -> vital information (4472ms)\nWhat was the final score?\tprivate company\t-6.237061382513261\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score Investments, Instance Of, private company) -> private company (4492ms)\nWhat was the final score?\tmetric variable\t-6.2438479503007995\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Exam Score, Instance Of, metric variable) -> metric variable (4492ms)\nWhat was the final score?\tsober alternative\t-6.249757675068043\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, sober alternative) -> sober alternative (4492ms)\nWhat was the final score?\tinteractive drama\t-6.250561124076366\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, interactive drama) -> interactive drama (4492ms)\nWhat was the final score?\tnumerical value\t-6.2576714526816675\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, numerical value) -> numerical value (4512ms)\nWhat was the final score?\tcontinuous variable\t-6.260407347616073\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final exam score, Instance Of, continuous variable) -> continuous variable (4512ms)\nWhat was the final score?\tfair movie\t-6.267074585528853\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, fair movie) -> fair movie (4512ms)\nWhat was the final score?\tflagship program\t-6.272520154208612\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, flagship program) -> flagship program (4512ms)\nWhat was the final score?\tinstant game\t-6.277176117243842\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, instant game) -> instant game (4512ms)\nWhat was the final score?\texcellent service\t-6.280095190059397\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, excellent service) -> excellent service (4531ms)\nWhat was the final score?\t4-0 victory\t-6.285146219394931\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, 4-0 victory) -> 4-0 victory (4531ms)\nWhat was the final score?\tmultimedia resource\t-6.28655610887799\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, multimedia resource) -> multimedia resource (4532ms)\nWhat was the final score?\tflagship production\t-6.290885337106043\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, flagship production) -> flagship production (4532ms)\nWhat was the final score?\tincredible score\t-6.299836331405887\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score from Peadar Gardiner, Instance Of, incredible score) -> incredible score (4531ms)\nWhat was the final score?\tworld supplier of quality athletic footwear and apparel\t-6.321415295961083\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final-Score, Instance Of, world supplier of quality athletic footwear and apparel) -> world supplier of quality athletic footwear and apparel (4531ms)\nWhat was the final score?\t14-year-old Thoroughbred gelding\t-6.32413045006283\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, 14-year-old Thoroughbred gelding) -> 14-year-old Thoroughbred gelding (4552ms)\nWhat was the final score?\t0-0 draw\t-6.326273881432931\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, 0-0 draw) -> 0-0 draw (4553ms)\nWhat was the final score?\tschool record\t-6.329869567773942\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Oklahoma's final score, Instance Of, school record) -> school record (4552ms)\nWhat was the final score?\tbetting game\t-6.34048001084267\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score Multi League, Instance Of, betting game) -> betting game (4553ms)\nWhat was the final score?\tcomplex business\t-6.343311514758634\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (production of a final score, Instance Of, complex business) -> complex business (4573ms)\nWhat was the final score?\tgreat game\t-6.345285773231045\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (FINAL SCORE JGR, Instance Of, great game) -> great game (4573ms)\nWhat was the final score?\thard PG-13 equivalent score\t-6.356617308952746\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score of 58, Instance Of, hard PG-13 equivalent score) -> hard PG-13 equivalent score (4573ms)\nWhat was the final score?\tsporting good retailer\t-6.356947429567912\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final-Score, Instance Of, sporting good retailer) -> sporting good retailer (4573ms)\nWhat was the final score?\tdocumentary following a group of 17-year old Thai student\t-6.3602898469085645\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, documentary following a group of 17-year old Thai student) -> documentary following a group of 17-year old Thai student (4573ms)\nWhat was the final score?\t9 and 8 victory\t-6.384106189551905\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final round scoring, Instance Of, 9 and 8 victory) -> 9 and 8 victory (4573ms)\nWhat was the final score?\tpoint\t-6.387188296423206\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score of the match, Instance Of, point) -> point (4591ms)\nWhat was the final score?\t54-hole MWC Championship record\t-6.407668087208327\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Colorado State's final score, Instance Of, 54-hole MWC Championship record) -> 54-hole MWC Championship record (4591ms)\nWhat was the final score?\trush\t-6.41836317614371\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, rush) -> rush (4591ms)\nWhat was the final score?\tgoal\t-6.4355917638995255\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, goal) -> goal (4591ms)\nWhat was the final score?\tshocker\t-6.499929028522336\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score of the Elmira-Manhattanville game, Instance Of, shocker) -> shocker (4591ms)\nWhat was the final score?\tindicia\t-6.501350756992753\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final scores of the Sugar Bowl, Instance Of, indicia) -> indicia (4591ms)\nWhat was the final score?\tsafety\t-6.506389699749561\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score of the first half, Instance Of, safety) -> safety (4724ms)\nWhat was the final score?\tevent\t-6.528596777520223\tWhat was the final score? -> $x: (the final score, instance of, $x) -> (final score of the first half, Instance Of, event) -> event (4724ms)\nWhat was the final score?\t2007 Thai documentary film\t-6.574699237175839\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, 2007 Thai documentary film) -> 2007 Thai documentary film (4724ms)\nWhat was the final score?\tpretty fun movie\t-6.700307988266417\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, pretty fun movie) -> pretty fun movie (4724ms)\nWhat was the final score?\tonline outlet\t-6.726039206697024\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final-Score, Instance Of, online outlet) -> online outlet (4724ms)\nWhat was the final score?\tBoxing Day\t-7.015174986451649\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Boxing Day, was, the final score) -> Boxing Day (6306ms)\nWhat was the final score?\t25 games\t-7.431908458226507\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (25 games, are, the final scores) -> 25 games (6306ms)\nWhat was the final score?\t20 pounds\t-7.642864924971922\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (20 pounds, is, the final score) -> 20 pounds (6306ms)\nWhat was the final score?\t42-31\t-7.7350459090345165\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (42-31, was, the final score) -> 42-31 (6307ms)\nWhat was the final score?\tPaul Mitchell\t-8.025396775766117\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Paul Mitchell, was, the final scoring counter) -> Paul Mitchell (6307ms)\nWhat was the final score?\tin joy\t-8.047012234131657\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (in joy, is, the final score) -> in joy (6306ms)\nWhat was the final score?\t14-1\t-8.081632530832128\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (14-1, was, the final score) -> 14-1 (6738ms)\nWhat was the final score?\t21-19\t-8.081632530832128\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (21-19, was, the final score) -> 21-19 (6738ms)\nWhat was the final score?\t12-9\t-8.113463662889965\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (12-9, was, the final score) -> 12-9 (6738ms)\nWhat was the final score?\t7-4\t-8.113463662889965\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (7-4, was, the final score) -> 7-4 (6738ms)\nWhat was the final score?\t6-2\t-8.116508473886256\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (6-2, was, the final score) -> 6-2 (6738ms)\nWhat was the final score?\tUnfortunately this\t-8.117440441260356\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Unfortunately this, is, the final score) -> Unfortunately this (6738ms)\nWhat was the final score?\tFebruary 14\t-8.20418083424006\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (February 14, was, the final score) -> February 14 (6762ms)\nWhat was the final score?\t1-0\t-8.23977873564124\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (1-0, was, the final score) -> 1-0 (6762ms)\nWhat was the final score?\t34\t-8.242491943093953\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (34, was, the final score) -> 34 (6762ms)\nWhat was the final score?\t19-17\t-8.267314046665682\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (19-17, was, the final score) -> 19-17 (6762ms)\nWhat was the final score?\tplayoff basketball\t-8.282981517141465\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (playoff basketball, is, the final score) -> playoff basketball (6762ms)\nWhat was the final score?\t6-1\t-8.284998038199088\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (6-1, was, the final score) -> 6-1 (6762ms)\nWhat was the final score?\t7-0\t-8.284998038199088\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (7-0, was, the final score) -> 7-0 (6782ms)\nWhat was the final score?\t4-2\t-8.28951875842425\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (4-2, was, the final score) -> 4-2 (6783ms)\nWhat was the final score?\t13\t-8.295608380416837\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (13, was, the final score) -> 13 (6783ms)\nWhat was the final score?\t6-3\t-8.324394701478381\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (6-3, was, the final score) -> 6-3 (6782ms)\nWhat was the final score?\tLF 6\t-8.324623987105582\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (LF 6, was, the final score) -> LF 6 (6782ms)\nWhat was the final score?\ttotal weight\t-8.334429264477247\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (total weight, is, the final score) -> total weight (6783ms)\nWhat was the final score?\tdraw\t-8.334526989655831\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, draw) -> draw (4743ms)\nWhat was the final score?\t1-1\t-8.340120483003364\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (1-1, was, the final score) -> 1-1 (6801ms)\nWhat was the final score?\tany games\t-8.357816335390414\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (any games, was, the final scores) -> any games (6801ms)\nWhat was the final score?\tThe ?line ?\t-8.35920384376751\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The ?line ?, is, the total final score) -> The ?line ? (6801ms)\nWhat was the final score?\t19-23\t-8.35927064453251\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (19-23, was, the final score) -> 19-23 (6802ms)\nWhat was the final score?\tfunction\t-8.374357852797807\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Recalculate Final Scores, Instance Of, function) -> function (4743ms)\nWhat was the final score?\tAn anti-climactic draw\t-8.37511940979643\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (An anti-climactic draw, was, the final score) -> An anti-climactic draw (6801ms)\nWhat was the final score?\tvictory\t-8.376368015778807\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, victory) -> victory (4743ms)\nWhat was the final score?\t2-0\t-8.37846782654011\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (2-0, was, the final score) -> 2-0 (6802ms)\nWhat was the final score?\t5-1\t-8.38805691289176\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (5-1, is, the final score) -> 5-1 (6820ms)\nWhat was the final score?\t6-4\t-8.391101776590347\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (6-4, was, the final score) -> 6-4 (6820ms)\nWhat was the final score?\tfactor\t-8.392102721185037\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final exam score, Instance Of, factor) -> factor (4743ms)\nWhat was the final score?\t3-3\t-8.395397544921446\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (3-3, was, the final score) -> 3-3 (6820ms)\nWhat was the final score?\t3-0\t-8.395397544921446\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (3-0, was, the final score) -> 3-0 (6820ms)\nWhat was the final score?\tlabel\t-8.409391975692921\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, label) -> label (4743ms)\nWhat was the final score?\ttrait\t-8.420099819446502\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, trait) -> trait (4760ms)\nWhat was the final score?\t86-54\t-8.421099915016438\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (86-54, was, the final score) -> 86-54 (6820ms)\nWhat was the final score?\twrong ? 89\t-8.426121363135408\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (wrong ? 89, was, the final score) -> wrong ? 89 (6820ms)\nWhat was the final score?\tdocumentary\t-8.428919462786174\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, documentary) -> documentary (4760ms)\nWhat was the final score?\tone episode\t-8.44404029026294\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (one episode, was, the final score) -> one episode (6839ms)\nWhat was the final score?\tsenior Jack Reeder\t-8.445165103587827\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (senior Jack Reeder, were, the final scoring Spartans) -> senior Jack Reeder (6838ms)\nWhat was the final score?\trepeat\t-8.450217713230202\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, repeat) -> repeat (4760ms)\nWhat was the final score?\tillusion\t-8.455148853234409\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, illusion) -> illusion (4760ms)\nWhat was the final score?\tstatistic\t-8.461043726705656\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, statistic) -> statistic (4760ms)\nWhat was the final score?\t75 Diggs4-3\t-8.48289540829137\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (75 Diggs4-3, was, the final score) -> 75 Diggs4-3 (6838ms)\nWhat was the final score?\tcontender\t-8.49330215669181\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Scotland's final score, Instance Of, contender) -> contender (4773ms)\nWhat was the final score?\tcategory\t-8.502864951651958\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final exam score, Instance Of, category) -> category (4774ms)\nWhat was the final score?\tYeah\t-8.522360778688974\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Yeah, was, the final score) -> Yeah (6838ms)\nWhat was the final score?\taverage\t-8.526457107016327\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (state's final score, Instance Of, average) -> average (4773ms)\nWhat was the final score?\tcombination\t-8.570978922881489\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final scoring on Bongo's scoreboard, Instance Of, combination) -> combination (4774ms)\nWhat was the final score?\tSoraya Nakasuwan\t-8.57730062451661\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> $x: (final score, be a by, $x) -> (Final Score, is a documentary by, Soraya Nakasuwan) -> Soraya Nakasuwan (4834ms)\nWhat was the final score?\tThe Bulldogs ? biggest lead\t-8.585260598632118\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The Bulldogs ? biggest lead, was, the final score) -> The Bulldogs ? biggest lead (6838ms)\nWhat was the final score?\tS?o Paulo\t-8.589532526510595\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (S?o Paulo, was, the final score) -> S?o Paulo (6838ms)\nWhat was the final score?\t3-2\t-8.595063287815922\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (3-2, was, the final winning score) -> 3-2 (6858ms)\nWhat was the final score?\tMiami\t-8.610684836631819\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Miami, was, the final scoring) -> Miami (6858ms)\nWhat was the final score?\tFriday night\t-8.67088969542705\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Friday night, was, the final score) -> Friday night (6858ms)\nWhat was the final score?\tThe 2 -1\t-8.67122953603051\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The 2 -1, was, the final score) -> The 2 -1 (6858ms)\nWhat was the final score?\t1 field\t-8.69428845064484\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (1 field, is, the official final score) -> 1 field (6858ms)\nWhat was the final score?\t21 to 7\t-8.741150909628203\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (21 to 7, was, the final score) -> 21 to 7 (6858ms)\nWhat was the final score?\t17 to 5\t-8.764502870624067\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (17 to 5, was, the final score) -> 17 to 5 (6878ms)\nWhat was the final score?\tthe Giants\t-8.773175689440937\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the Giants, was, the final score) -> the Giants (6878ms)\nWhat was the final score?\tVasco 3 ? 0 Mesquita\t-8.921468003305234\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Vasco 3 ? 0 Mesquita, were, the final scores) -> Vasco 3 ? 0 Mesquita (6878ms)\nWhat was the final score?\tEddie Stobart drivers\t-9.176920786019332\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Eddie Stobart drivers, was, the final score) -> Eddie Stobart drivers (6878ms)\nWhat was the final score?\t4-0\t-9.454050976022833\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (4-0, was, the final score) -> 4-0 (6897ms)\nWhat was the final score?\tEl Salvador\t-9.634318036717259\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (El Salvador, was outraged with, the final score) -> El Salvador (7945ms)\nWhat was the final score?\tthe end\t-9.635370354934743\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the end, is, the final score) -> the end (6916ms)\nWhat was the final score?\tthe present score\t-9.651285920963662\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the present score, is, the final score) -> the present score (6916ms)\nWhat was the final score?\tthe uninsured rate\t-9.76594349893029\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the uninsured rate, is, the final score) -> the uninsured rate (6916ms)\nWhat was the final score?\tThe only down side\t-9.800755554892735\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The only down side, was, the final score) -> The only down side (6916ms)\nWhat was the final score?\tthe footbal game\t-9.851835902961529\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the footbal game, is, the final score) -> the footbal game (6916ms)\nWhat was the final score?\tthe visible score\t-9.860613304249828\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the visible score, is, the true final score) -> the visible score (6916ms)\nWhat was the final score?\tthe last set\t-9.861306929152477\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the last set, is, the final score) -> the last set (6933ms)\nWhat was the final score?\tthe CHL\t-9.87570993723833\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the CHL, has been getting, final scores) -> the CHL (6933ms)\nWhat was the final score?\tthe second half\t-9.906656144959351\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the second half, was, the final score) -> the second half (6934ms)\nWhat was the final score?\tthe main header\t-9.943792500828357\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the main header, is, the final score) -> the main header (6951ms)\nWhat was the final score?\tThe only numbers\t-9.958759259626628\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The only numbers, is, the final score) -> The only numbers (6951ms)\nWhat was the final score?\tthe reason\t-9.973157184360424\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the reason, was, the final score) -> the reason (6951ms)\nWhat was the final score?\tthe game\t-9.980859785046885\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the game, was, the final score) -> the game (6951ms)\nWhat was the final score?\tthe most\t-9.994377921498218\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the most, is, the final score) -> the most (6951ms)\nWhat was the final score?\tthe outcome\t-10.009017049333035\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the outcome, was, the final score) -> the outcome (7055ms)\nWhat was the final score?\tthe IIMs\t-10.029654763067006\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the IIMs, will be in receiving, final scores) -> the IIMs (7055ms)\nWhat was the final score?\tThe only question\t-10.08084313217406\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The only question, is, the final score) -> The only question (7073ms)\nWhat was the final score?\tThe real success\t-10.094106086297392\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The real success, is, the final score) -> The real success (7073ms)\nWhat was the final score?\tthe only important number\t-10.095944263773932\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the only important number, is, the final score) -> the only important number (7073ms)\nWhat was the final score?\tThe end result\t-10.112674264231895\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The end result, was, the final score) -> The end result (7073ms)\nWhat was the final score?\ta 4-2 lead\t-10.133753121602766\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (a 4-2 lead, was, the final score) -> a 4-2 lead (7073ms)\nWhat was the final score?\tThe third element\t-10.154301304078436\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The third element, is, the final exam scores) -> The third element (7091ms)\nWhat was the final score?\tThe Award committee\t-10.221133437319823\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (The Award committee, is taken into, final scoring) -> The Award committee (7108ms)\nWhat was the final score?\tthe USSR\t-10.231187276802222\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the USSR, is usually disadvantaged in, Final Scoring) -> the USSR (7108ms)\nWhat was the final score?\tvideo ?\t-10.325095567776625\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (video ?, I?ll be back with, the final score) -> video ? (7944ms)\nWhat was the final score?\tquestion\t-10.325441706004623\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (question, is, the final score) -> question (7125ms)\nWhat was the final score?\tdifferent\t-10.335624681741535\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (different, was, the final score) -> different (7125ms)\nWhat was the final score?\tsports\t-10.34705469493542\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (sports, is, the final score) -> sports (7124ms)\nWhat was the final score?\t50 points\t-10.392599048533265\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (50 points, will be subtracted from, the final score) -> 50 points (8655ms)\nWhat was the final score?\tout\t-10.418617817308741\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (out, was, our final score) -> out (7142ms)\nWhat was the final score?\tdoubt\t-10.424536468612068\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (doubt, was, the final score) -> doubt (7142ms)\nWhat was the final score?\tlol\t-10.429292727653745\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (lol, is, my final score) -> lol (7142ms)\nWhat was the final score?\tAsia\t-10.456254150562195\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Asia, is worth more in, Final Scoring) -> Asia (7142ms)\nWhat was the final score?\tthe 3 points\t-10.463183187763475\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the 3 points, were taken, Final score) -> the 3 points (7158ms)\nWhat was the final score?\tFour variables\t-10.464857621343898\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (Four variables, were considered for, the final score) -> Four variables (8574ms)\nWhat was the final score?\tCliff Martinez\t-10.467765432823082\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Cliff Martinez, was brought in to do, the final score) -> Cliff Martinez (8574ms)\nWhat was the final score?\tProjo.com\t-10.503773943989193\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Projo.com, will be posting, final scores) -> Projo.com (7159ms)\nWhat was the final score?\tFive points\t-10.535896608892584\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Five points, will be deducted from, the final score) -> Five points (8655ms)\nWhat was the final score?\tTen points\t-10.545139522410587\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Ten points, are deducted from, final score) -> Ten points (7159ms)\nWhat was the final score?\timportant\t-10.628131261606228\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (important, is, the final game score) -> important (7159ms)\nWhat was the final score?\t?Sounds Orchestral\t-10.639645705907368\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (?Sounds Orchestral, can be found here, Final score) -> ?Sounds Orchestral (7175ms)\nWhat was the final score?\ta factor\t-10.688676698436762\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a factor, is relevant to, the final score) -> a factor (10705ms)\nWhat was the final score?\tKillian Canavan\t-10.69055437749272\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Killian Canavan, proved to be, the final score) -> Killian Canavan (10830ms)\nWhat was the final score?\twalk-off wins\t-10.691844946206949\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (walk-off wins, have been by, final scores) -> walk-off wins (7175ms)\nWhat was the final score?\tHard-rep\t-10.713820796176513\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Hard-rep, is used for, final scoring) -> Hard-rep (7176ms)\nWhat was the final score?\ttwo percentage points\t-10.750460679506757\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (two percentage points, will be deducted from, final score) -> two percentage points (7176ms)\nWhat was the final score?\tno chance\t-10.788563527920317\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (no chance, proved to be, the final score) -> no chance (10830ms)\nWhat was the final score?\ttwo\t-10.799160358203894\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (two, would prove to be, the final score) -> two (10830ms)\nWhat was the final score?\ta pitch\t-10.82523539517437\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a pitch, proved to be, the final score) -> a pitch (11121ms)\nWhat was the final score?\tLast years contest info\t-10.834886860839964\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Last years contest info, was here with, final scoring) -> Last years contest info (7176ms)\nWhat was the final score?\tNo account\t-10.84634637398875\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (No account, has been taken of, final scores) -> No account (7192ms)\nWhat was the final score?\tScholarships\t-10.86776722830685\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Scholarships, are awarded based on, final scores) -> Scholarships (7191ms)\nWhat was the final score?\tComposite scores\t-10.868792670595857\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Composite scores, are turned into, final scores) -> Composite scores (7191ms)\nWhat was the final score?\teach contestant\t-10.883047783981931\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (each contestant, is, their final score) -> each contestant (7191ms)\nWhat was the final score?\tone more roll\t-10.89836449054693\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, before be, the final score) -> (one more roll, is required before, the final score) -> one more roll (11121ms)\nWhat was the final score?\tFinal Score\t-10.907085803584101\tWhat was the final score? -> what [ be the final score ] ? -> what be know be the final score ? -> $x: ($x, be know be, the final score) -> $x: ($x, know, final score) -> (Final Score, Also known as, Final score - 365 wan taam tit chiiwit dek en) -> Final Score (11803ms)\nWhat was the final score?\tGoogle\t-10.913516432656065\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (Google, may be important for, the final score) -> Google (11121ms)\nWhat was the final score?\ta Matador\t-10.916997236608688\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a Matador, turned out to be, the final score) -> a Matador (11121ms)\nWhat was the final score?\tVeterans preference credit\t-10.92266912221387\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Veterans preference credit, will be added to, the final score) -> Veterans preference credit (11216ms)\nWhat was the final score?\tDon?t\t-10.945286253280235\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (Don?t, be fooled by, the final score) -> Don?t (7944ms)\nWhat was the final score?\tBonus points\t-10.948266379212464\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Bonus points, are then added to, final scores) -> Bonus points (7191ms)\nWhat was the final score?\tDon?t\t-10.956845402728632\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (Don?t, be fooled by, the final score) -> Don?t (7944ms)\nWhat was the final score?\ta single-trait animal model\t-10.9595235570733\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (a single-trait animal model, was applied for, final score) -> a single-trait animal model (7216ms)\nWhat was the final score?\tseven seniority points\t-10.965284763537703\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (seven seniority points, are added to, the final score) -> seven seniority points (11216ms)\nWhat was the final score?\tFu and Han\t-10.965826928790584\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Fu and Han, are multiplied to get, the final score) -> Fu and Han (11217ms)\nWhat was the final score?\teach game\t-10.967891284536964\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (each game, will be determined by, final score) -> each game (7216ms)\nWhat was the final score?\tVeterans Points\t-10.97179385762704\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Veterans Points, are added to, the final score) -> Veterans Points (11216ms)\nWhat was the final score?\tTwo factors\t-10.985150545444439\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Two factors, are used to determine, the final score) -> Two factors (11311ms)\nWhat was the final score?\tMulti-player\t-10.988617231036525\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Multi-player, now has to be added to, the final score) -> Multi-player (11311ms)\nWhat was the final score?\ta candidate\t-10.992579535045556\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a candidate, were averaged to determine, the final score) -> a candidate (11311ms)\nWhat was the final score?\tNoebels ?\t-11.007185408971027\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Noebels ?, would prove to be, the final score) -> Noebels ? (11311ms)\nWhat was the final score?\ta three-point lead\t-11.010316096296789\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a three-point lead, was reduced to, the final score) -> a three-point lead (11311ms)\nWhat was the final score?\tTie-breaker\t-11.023681981879097\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Tie-breaker, will be closest to, the final score) -> Tie-breaker (11311ms)\nWhat was the final score?\tFinal places\t-11.028633854487417\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Final places, are determined based upon, final scores) -> Final places (7217ms)\nWhat was the final score?\tVeterans ? preference credit\t-11.05167575178094\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Veterans ? preference credit, will be added to, the final score) -> Veterans ? preference credit (11341ms)\nWhat was the final score?\tthe Eagles\t-11.052651393598095\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the Eagles, is, your predicted final score) -> the Eagles (7216ms)\nWhat was the final score?\tA point spread\t-11.06485707056848\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (A point spread, is an adjustment to, the final score) -> A point spread (11341ms)\nWhat was the final score?\ta ten-yard score\t-11.070162241677355\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a ten-yard score, ultimately would prove to be, the final score) -> a ten-yard score (11341ms)\nWhat was the final score?\tEmployees\t-11.073556226644047\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Employees, are allowed to obtain, the final score) -> Employees (11341ms)\nWhat was the final score?\ta specific settling table\t-11.073935292433633\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a specific settling table, is used to determine, the final score) -> a specific settling table (11340ms)\nWhat was the final score?\tDeSaverio?s goal\t-11.079004263795206\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (DeSaverio?s goal, would prove to be, the final CU score) -> DeSaverio?s goal (11370ms)\nWhat was the final score?\te-mail results\t-11.084869597234452\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (e-mail results, be sure to include, the final score) -> e-mail results (11370ms)\nWhat was the final score?\tthe Individual Finals\t-11.085583306791717\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (the Individual Finals, is determined by, the highest final score) -> the Individual Finals (7944ms)\nWhat was the final score?\t? Don?t\t-11.088228432395866\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (? Don?t, be fooled by, the final score) -> ? Don?t (7944ms)\nWhat was the final score?\ta game\t-11.092501725349399\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be just be, the final score) -> (a game, is just as important as, the final score) -> a game (11370ms)\nWhat was the final score?\tgiven point values\t-11.101066650352111\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (given point values, are then added together for, the final score) -> given point values (11370ms)\nWhat was the final score?\tthe scores\t-11.116433606370991\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the scores, being, the final scores) -> the scores (7216ms)\nWhat was the final score?\ttoo many Steeler losses\t-11.124269981596422\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (too many Steeler losses, is your prediction of, the final score) -> too many Steeler losses (8326ms)\nWhat was the final score?\tuse\t-11.126686341052409\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (use, was quite simple to establish, the final rating score) -> use (11370ms)\nWhat was the final score?\tPatrick?s goal\t-11.131857272594495\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Patrick?s goal, proved to be, the final Islander score) -> Patrick?s goal (11370ms)\nWhat was the final score?\tWebster?s games\t-11.147772838623412\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (Webster?s games, were all cancelled from, the final scoring) -> Webster?s games (8326ms)\nWhat was the final score?\teach match\t-11.157109598677199\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (each match, will be decided on, final score) -> each match (7216ms)\nWhat was the final score?\tthe Denver game\t-11.157162264349985\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, actually be, the final score) -> (the Denver game, was actually closer than, the final score) -> the Denver game (8011ms)\nWhat was the final score?\tthe ICP\t-11.157498994440065\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (the ICP, is 20 % of, the final MBA score) -> the ICP (8326ms)\nWhat was the final score?\tOne winner\t-11.167494070665356\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (One winner, will be chosen based on, the final score) -> One winner (11370ms)\nWhat was the final score?\tThe Panthers biggest lead\t-11.176826142398985\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (The Panthers biggest lead, was the margin of, the final score) -> The Panthers biggest lead (8326ms)\nWhat was the final score?\tComments\t-11.179824938845309\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Comments, are closed, Final Score) -> Comments (7238ms)\nWhat was the final score?\t5-2...which\t-11.207633332311255\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (5-2...which, turned out to be, the final score) -> 5-2...which (11399ms)\nWhat was the final score?\tVeterans ? preference points\t-11.208097112126449\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Veterans ? preference points, are added to, the final score) -> Veterans ? preference points (11398ms)\nWhat was the final score?\tmore points\t-11.21632947138776\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (more points, are added to, the final score) -> more points (11398ms)\nWhat was the final score?\tthe 9th my heart\t-11.229634446170797\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the 9th my heart, was pounding, ...FINAL SCORE) -> the 9th my heart (7238ms)\nWhat was the final score?\ttwo points\t-11.234700891213372\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (two points, are subtracted from, the final score) -> two points (8326ms)\nWhat was the final score?\teach test\t-11.235753411701728\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (each test, is used to determine, the final score) -> each test (11398ms)\nWhat was the final score?\tone letter grade\t-11.237511884728299\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (one letter grade, will also be deducted from, the final score) -> one letter grade (11398ms)\nWhat was the final score?\teach team?s answers\t-11.239928244184284\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (each team?s answers, will be included in, the final score) -> each team?s answers (11398ms)\nWhat was the final score?\tthe Haskins Center\t-11.26248742133697\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (the Haskins Center, were lit with, the final score) -> the Haskins Center (7944ms)\nWhat was the final score?\tThree points\t-11.263701161196547\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Three points, are added to, the final score) -> Three points (11398ms)\nWhat was the final score?\tup to 30 credits\t-11.277017123490463\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (up to 30 credits, may be granted for, final scores) -> up to 30 credits (7258ms)\nWhat was the final score?\tL Bets\t-11.282797137643003\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (L Bets, will be settled on, the official final score) -> L Bets (11398ms)\nWhat was the final score?\tcount\t-11.286257497861916\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (count, is, the final score) -> count (7258ms)\nWhat was the final score?\ta difficult angle\t-11.331025062685564\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a difficult angle, proved to be, the final score) -> a difficult angle (11426ms)\nWhat was the final score?\t0.1\t-11.3424588236368\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (0.1, should be deducted from, the final score) -> 0.1 (11426ms)\nWhat was the final score?\tA general impression mark\t-11.35560213904879\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (A general impression mark, is also added to, the final score) -> A general impression mark (11426ms)\nWhat was the final score?\tPower ratings\t-11.356479567820262\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (Power ratings, are typically based off of, the final scores) -> Power ratings (11426ms)\nWhat was the final score?\ta specific question\t-11.35802806891426\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (a specific question, may be omitted from, final scoring) -> a specific question (7258ms)\nWhat was the final score?\ta bonus point\t-11.369437804046374\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a bonus point, is added to, the final score) -> a bonus point (11426ms)\nWhat was the final score?\tthe 3 attempts\t-11.376296939891521\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (the 3 attempts, will be counted towards, the final score) -> the 3 attempts (11426ms)\nWhat was the final score?\tTotal goals\t-11.377936673167403\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Total goals, will be based on, the final score) -> Total goals (11426ms)\nWhat was the final score?\ta Miami TD drive\t-11.37986773988517\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (a Miami TD drive, was beaten for, the final winning score) -> a Miami TD drive (11426ms)\nWhat was the final score?\tmidterm scores\t-11.380697257934633\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (midterm scores, will be overridden by, the final exam score) -> midterm scores (11578ms)\nWhat was the final score?\tthe only question\t-11.386308468736551\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the only question, is, the final score) -> the only question (7280ms)\nWhat was the final score?\tbonus points\t-11.402509054559474\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (bonus points, will be added on to, the final score) -> bonus points (11578ms)\nWhat was the final score?\tNo accurate historical record\t-11.406329080004582\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (No accurate historical record, was ever made of, the final score) -> No accurate historical record (11578ms)\nWhat was the final score?\teach round\t-11.408999285348594\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (each round, are then added together to give, the final score) -> each round (11578ms)\nWhat was the final score?\tTwelve metrics\t-11.411992997947692\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Twelve metrics, are used to calculate, the final score) -> Twelve metrics (11578ms)\nWhat was the final score?\tSales results\t-11.423721554353007\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (Sales results, are worth 50 % of, the final score) -> Sales results (11578ms)\nWhat was the final score?\tsock style\t-11.432636381942373\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (sock style, will be a factor in, the final score) -> sock style (11606ms)\nWhat was the final score?\teach member\t-11.436665114857147\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (each member, are added up to make, the final score) -> each member (11606ms)\nWhat was the final score?\tone point\t-11.436928783561243\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (one point, will be deducted from, the final score) -> one point (11606ms)\nWhat was the final score?\tNine\t-11.446501579228292\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Nine, will be counted in, final scoring) -> Nine (7281ms)\nWhat was the final score?\teach infraction\t-11.454912989803605\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (each infraction, will be 10 % of, the overall final score) -> each infraction (11606ms)\nWhat was the final score?\t128 companies\t-11.466703320779429\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (128 companies, were evaluated for, the final scoring) -> 128 companies (11606ms)\nWhat was the final score?\ta snap header\t-11.475027848052923\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (a snap header, was one of, the Revs? final scoring threats) -> a snap header (11633ms)\nWhat was the final score?\teach squad\t-11.490993422246875\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (each squad, are used to calculate, the final team score) -> each squad (11633ms)\nWhat was the final score?\tT-Square and 20 points\t-11.504513242782178\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (T-Square and 20 points, were added to, the final exam score) -> T-Square and 20 points (11633ms)\nWhat was the final score?\tWinners\t-11.528312874779745\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (Winners, are determined by, the final score) -> Winners (8011ms)\nWhat was the final score?\teach table\t-11.534811070233946\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (each table, will be counted for, the total final score) -> each table (11633ms)\nWhat was the final score?\tAny first-place ties\t-11.5364475036579\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Any first-place ties, will be broken by, the final-round score) -> Any first-place ties (11633ms)\nWhat was the final score?\tnon-performing\t-11.552674331509234\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (non-performing, are deleted from, the final scoring) -> non-performing (11633ms)\nWhat was the final score?\t70-59\t-11.583656012783125\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (70-59, was one point away from, the final score) -> 70-59 (11633ms)\nWhat was the final score?\tdisclosing much\t-11.59051555133516\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (disclosing much, is even prohibited from giving, the final score) -> disclosing much (11660ms)\nWhat was the final score?\ta winning square\t-11.59092231038809\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (a winning square, will be determined by using, the final score) -> a winning square (11660ms)\nWhat was the final score?\tPoints\t-11.609659025024234\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (Points, are deducted from, the final score) -> Points (11660ms)\nWhat was the final score?\t13-9\t-11.610380728723838\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (13-9, was the closest to, the final , paltry score 16-3) -> 13-9 (11660ms)\nWhat was the final score?\tTim Ferguson\t-11.627713913684115\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Tim Ferguson, proved to be the difference in, the final score) -> Tim Ferguson (11660ms)\nWhat was the final score?\ta team plays\t-11.712705362358667\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (a team plays, is reflected only by, the final score) -> a team plays (8011ms)\nWhat was the final score?\tthe ?goals\t-11.727359289465268\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the ?goals, are, scored?) -> the ?goals (11715ms)\nWhat was the final score?\ta settling table\t-11.742768068912016\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (a settling table, is used for calculating, the final score) -> a settling table (11715ms)\nWhat was the final score?\tOne very resourceful group\t-11.761437829689978\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (One very resourceful group, is, SCORE) -> One very resourceful group (11715ms)\nWhat was the final score?\ta critics job\t-11.774588887784372\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (a critics job, is, scores) -> a critics job (11715ms)\nWhat was the final score?\tThe goal\t-11.822802552552345\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (The goal, is to guess, the final combined score) -> The goal (11715ms)\nWhat was the final score?\tmatter\t-11.864378744400964\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (matter, is, the final score) -> matter (7491ms)\nWhat was the final score?\tgame\t-11.878282979344085\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (game, was, the final score) -> game (7491ms)\nWhat was the final score?\tPayouts\t-11.895623037172264\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Payouts, will be based on, the official final score) -> Payouts (11715ms)\nWhat was the final score?\tGames\t-11.909342811215856\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (Games, will be competing for, the highest Final Score) -> Games (11803ms)\nWhat was the final score?\tTHE GOAL\t-11.916677339122888\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (THE GOAL, IS, SCORED) -> THE GOAL (11803ms)\nWhat was the final score?\tthe Junior\t-11.932776048482388\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (the Junior, is worth 60-percent of, the final score) -> the Junior (11803ms)\nWhat was the final score?\tJOhn\t-11.93335150043543\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (JOhn, is a musician who plays the, SCORE) -> JOhn (11803ms)\nWhat was the final score?\tNEW\t-12.014235114571294\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (scores, is a proxy for, NEW) -> NEW (11803ms)\nWhat was the final score?\tPadilla\t-12.022170755480408\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (Padilla, has been a great pickup by, the Dodgers Final score) -> Padilla (8011ms)\nWhat was the final score?\tAcid levels\t-12.034685145472807\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Acid levels, are, scores) -> Acid levels (11827ms)\nWhat was the final score?\tthe ?short-form ? GN\t-12.035123200867272\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the ?short-form ? GN, were, scores) -> the ?short-form ? GN (11827ms)\nWhat was the final score?\tExtra Time\t-12.046868475289031\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Extra Time, will be counted towards, the final score) -> Extra Time (11827ms)\nWhat was the final score?\tNBA\t-12.053219345239192\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (scores, is an organization belonging to, NBA) -> NBA (11827ms)\nWhat was the final score?\tthe three centers\t-12.108579694588283\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the three centers, were comparable in, final scores) -> the three centers (7548ms)\nWhat was the final score?\tservice corps of retired executives\t-12.1770029421098\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORE, is an organization known by the acronym, service corps of retired executives) -> service corps of retired executives (11851ms)\nWhat was the final score?\tThe following distribution\t-12.23937640029676\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (The following distribution, is based on, final scores) -> The following distribution (7548ms)\nWhat was the final score?\tthe Mavericks\t-12.245652861910745\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the Mavericks, is, score) -> the Mavericks (11851ms)\nWhat was the final score?\tattention\t-12.272269487397082\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (attention, is drawn towards, final score) -> attention (7548ms)\nWhat was the final score?\tthe clock\t-12.287444210742162\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the clock, was ticking, ? Final score) -> the clock (7548ms)\nWhat was the final score?\tthe pitcher ?\t-12.298471680266852\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the pitcher ?, will be a low scoring affair with, final scores) -> the pitcher ? (7548ms)\nWhat was the final score?\tthe Canon S3\t-12.43765508008519\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the Canon S3, IS, score) -> the Canon S3 (11897ms)\nWhat was the final score?\tthe other two sections\t-12.470840126919601\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the other two sections, are each worth 25 % of, final score) -> the other two sections (7592ms)\nWhat was the final score?\tThe points\t-12.496087586501952\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (The points, are added to, the final score) -> The points (11897ms)\nWhat was the final score?\tThe Lakers\t-12.498054361946007\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (The Lakers, will be making, a poster of the final score) -> The Lakers (11897ms)\nWhat was the final score?\tthe Chamber\t-12.532197513153939\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the Chamber, are, SCORE) -> the Chamber (11897ms)\nWhat was the final score?\tCriterion scores\t-12.539252306976879\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Criterion scores, were averaged to, determine the final score) -> Criterion scores (11898ms)\nWhat was the final score?\tan end\t-12.593117306917298\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (an end, is, score) -> an end (11897ms)\nWhat was the final score?\tperception action\t-12.593731099861827\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORING, is a, perception action) -> perception action (11920ms)\nWhat was the final score?\tsports game\t-12.593731099861827\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORE, is a, sports game) -> sports game (11920ms)\nWhat was the final score?\tprofessional organization\t-12.593731099861827\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORE., is a, professional organization) -> professional organization (11920ms)\nWhat was the final score?\tpolitical blog\t-12.593731099861827\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORE, is a, political blog) -> political blog (11920ms)\nWhat was the final score?\tKuyt???s goals\t-12.594393745111397\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Kuyt???s goals, were, score) -> Kuyt???s goals (11920ms)\nWhat was the final score?\tMoney\t-12.599821184777138\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Money, is, scores) -> Money (11920ms)\nWhat was the final score?\tThe final total\t-12.617246981157098\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (The final total, is the sum of, the two final scores) -> The final total (12098ms)\nWhat was the final score?\tthe emotions\t-12.629906484615358\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (the emotions, are varied accordingly to, the final cricket score) -> the emotions (12098ms)\nWhat was the final score?\ta touchdown\t-12.639856578290217\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (a touchdown, is, score) -> a touchdown (12098ms)\nWhat was the final score?\tStyle The IXUS 980\t-12.648730107846081\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Style The IXUS 980, IS, scores) -> Style The IXUS 980 (12098ms)\nWhat was the final score?\tthe evaluation process\t-12.664109440140463\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (the evaluation process, was to share, the final scoring) -> the evaluation process (12098ms)\nWhat was the final score?\tBalfour and Fuentes\t-12.672521111641785\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Balfour and Fuentes, were, score) -> Balfour and Fuentes (12098ms)\nWhat was the final score?\tEntrepreneurship\t-12.679036163865852\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Entrepreneurship, is, SCORE) -> Entrepreneurship (12098ms)\nWhat was the final score?\tthe playing session\t-12.722466480444966\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (the playing session, is determined by, the final score) -> the playing session (8011ms)\nWhat was the final score?\tthe winner\t-12.780062372484362\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (the winner, is usually determined by, the final score) -> the winner (8052ms)\nWhat was the final score?\tThe winner\t-12.810464352707024\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (The winner, is the rider with, the highest final score) -> The winner (8053ms)\nWhat was the final score?\tthe day\t-12.825917659632934\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, just be, the final score) -> (the day, was n?t just about, the final score) -> the day (8052ms)\nWhat was the final score?\tThe over/under\t-12.832991203544001\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (The over/under, is determined by adding, the final score) -> The over/under (8053ms)\nWhat was the final score?\tThe game\t-12.870631930506766\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be nt as, the final score) -> (The game, was n?t as close as, the final score) -> The game (7842ms)\nWhat was the final score?\tthe winners\t-12.899264761354312\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (the winners, will be decided by, the final score) -> the winners (8052ms)\nWhat was the final score?\tThe score sheet\t-12.913791567001766\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (The score sheet, would be filled out with, the final score) -> The score sheet (8052ms)\nWhat was the final score?\tThe opposition scorer\t-12.927600360614118\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (The opposition scorer, was satisfied with, the final score) -> The opposition scorer (8052ms)\nWhat was the final score?\tthe purpose\t-12.969419509799607\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, just be, the final score) -> (the purpose, is n?t just to determine, the final score) -> the purpose (8165ms)\nWhat was the final score?\tpossession\t-13.092786133648673\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (possession, are inconsistent with, final score) -> possession (7592ms)\nWhat was the final score?\tlosers\t-13.153185685660606\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (losers, are determined by, the final score) -> losers (8165ms)\nWhat was the final score?\tResults\t-13.270502532492763\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (Results, were tabulated with, 75 % of the final score) -> Results (8165ms)\nWhat was the final score?\twinners\t-13.317238388886555\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (winners, will be decided on, final score) -> winners (7592ms)\nWhat was the final score?\tlinks\t-13.318791063377075\tWhat was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> $x: (final score, turn automatically into, $x) -> (Final score, turn automatically into, links) -> links (4949ms)\nWhat was the final score?\tdetail\t-13.535252514547675\tWhat was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be can, the final score) -> (detail, can be provided on, the final score reports) -> detail (7842ms)\nWhat was the final score?\tthe employer\t-14.287360838725856\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> (score points, also gather valuable facts about, the employer) -> the employer (7704ms)\nWhat was the final score?\tlife\t-14.63831958966398\tWhat was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> (2009 Credit scores, are a fact of, life) -> life (7705ms)\nWhat year did Alaska become a state?\t1959\t-7.519324686293866\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, 1959) -> 1959 (8697ms)\nWhat year did Alaska become a state?\t1867\t-7.641072018341523\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, 1867) -> 1867 (8697ms)\nWhat year did Alaska become a state?\t1922\t-7.645920422232434\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, 1922) -> 1922 (8697ms)\nWhat year did Alaska become a state?\t1958\t-7.701197484150514\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, 1958) -> 1958 (8697ms)\nWhat year did Alaska become a state?\t1960\t-7.909348324551002\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became a hit in, 1960) -> 1960 (3427ms)\nWhat year did Alaska become a state?\t1912\t-7.962892128354724\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became a territory in, 1912) -> 1912 (3427ms)\nWhat year did Alaska become a state?\t1969\t-8.19051378292985\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became operational in, 1969) -> 1969 (4392ms)\nWhat year did Alaska become a state?\t1970\t-8.270250669770135\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Kodiak Alaska, would become in, 1970) -> 1970 (4392ms)\nWhat year did Alaska become a state?\t1990\t-8.276440027280106\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the first in, 1990) -> 1990 (4392ms)\nWhat year did Alaska become a state?\tJanuary 1959\t-8.564566682190229\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, January 1959) -> January 1959 (9023ms)\nWhat year did Alaska become a state?\t1977\t-8.589146618705174\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (the Trans Alaska Pipeline, became operational in, 1977) -> 1977 (4589ms)\nWhat year did Alaska become a state?\tJanuary 3 , 1959\t-8.700585373987025\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a State on, January 3 , 1959) -> January 3 , 1959 (9023ms)\nWhat year did Alaska become a state?\t1912 and finally\t-8.827801193112133\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became a territory in, 1912 and finally) -> 1912 and finally (4589ms)\nWhat year did Alaska become a state?\tThe Last Frontier\t-9.197094942472212\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> (Alaska, Nickname, The Last Frontier) -> The Last Frontier (9727ms)\nWhat year did Alaska become a state?\tthe 1950?s\t-9.34824868034976\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, the 1950?s) -> the 1950?s (9727ms)\nWhat year did Alaska become a state?\tless than 20 years\t-9.56260947502064\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, had been a state for, less than 20 years) -> less than 20 years (9727ms)\nWhat year did Alaska become a state?\tPresident Eisenhower\t-9.572526137038961\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (-Alaska, becomes a State as, President Eisenhower) -> President Eisenhower (9727ms)\nWhat year did Alaska become a state?\tMIND\t-9.760368429387782\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (ALASKA, IS A STATE OF, MIND) -> MIND (9812ms)\nWhat year did Alaska become a state?\t2100\t-9.761502298317875\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, will be gone in, 2100) -> 2100 (9811ms)\nWhat year did Alaska become a state?\tact\t-9.920239640478673\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state by, act) -> act (9811ms)\nWhat year did Alaska become a state?\t1995\t-9.946984907239608\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went under in, 1995) -> 1995 (9811ms)\nWhat year did Alaska become a state?\tMay 17 , 1884 , 23 Stat\t-9.969995148723251\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became a law on, May 17 , 1884 , 23 Stat) -> May 17 , 1884 , 23 Stat (4678ms)\nWhat year did Alaska become a state?\tApril 1 , 2002\t-10.050381337452057\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became effective on, April 1 , 2002) -> April 1 , 2002 (4726ms)\nWhat year did Alaska become a state?\t2008\t-10.130066197186785\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (2008, commemorates the State of, Alaska) -> 2008 (9811ms)\nWhat year did Alaska become a state?\t1959.?\t-10.144729378248092\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became America?s 49th state in, 1959.?) -> 1959.? (4726ms)\nWhat year did Alaska become a state?\tmarine debris\t-10.181311480332049\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska and Hawaii, become entangled in, marine debris) -> marine debris (4726ms)\nWhat year did Alaska become a state?\tJanuary 3rd\t-10.200630407496133\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became the 49th state on, January 3rd) -> January 3rd (4726ms)\nWhat year did Alaska become a state?\tuntamed wilderness\t-10.276073520353545\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state of, untamed wilderness) -> untamed wilderness (9851ms)\nWhat year did Alaska become a state?\tAmerica\t-10.35017398904961\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state in, America) -> America (9851ms)\nWhat year did Alaska become a state?\ta border\t-10.379480528447457\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the only state with, a border) -> a border (9851ms)\nWhat year did Alaska become a state?\tbar same-sex marriage\t-10.448393469424063\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, becomes the first state to, bar same-sex marriage) -> bar same-sex marriage (9851ms)\nWhat year did Alaska become a state?\ta small Inuit community\t-10.46400343569894\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became a teacher in, a small Inuit community) -> a small Inuit community (4811ms)\nWhat year did Alaska become a state?\tone entity\t-10.478967437443316\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a maritime state with, one entity) -> one entity (9851ms)\nWhat year did Alaska become a state?\tthe United States\t-10.509692295772304\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state in, the United States) -> the United States (9851ms)\nWhat year did Alaska become a state?\ta big Problem\t-10.513229094078984\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, Is a big state with, a big Problem) -> a big Problem (9994ms)\nWhat year did Alaska become a state?\tRussia\t-10.526455567746188\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Russia, is now the state of, Alaska thousands) -> Russia (9994ms)\nWhat year did Alaska become a state?\tthe U.S.\t-10.5291813774702\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the first state in, the U.S.) -> the U.S. (4811ms)\nWhat year did Alaska become a state?\ta free , public education\t-10.590805204404004\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, provides state funding for, a free , public education) -> a free , public education (9994ms)\nWhat year did Alaska become a state?\tCanada\t-10.603966563243498\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Canada, is the state of, Alaska) -> Canada (10030ms)\nWhat year did Alaska become a state?\tForget-me-nots\t-10.643834211564895\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Forget-me-nots, are the state flower of, Alaska) -> Forget-me-nots (10030ms)\nWhat year did Alaska become a state?\tJuneau\t-10.692710200103436\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Juneau, is the official state capital of, Alaska) -> Juneau (10030ms)\nWhat year did Alaska become a state?\tCharles Chebry\t-10.707221475272966\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, stated, Charles Chebry) -> Charles Chebry (10030ms)\nWhat year did Alaska become a state?\tAlaska?s contract\t-10.71781696541655\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, will hold the State of, Alaska?s contract) -> Alaska?s contract (10030ms)\nWhat year did Alaska become a state?\tsuch categories\t-10.76690069724453\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, leads all other states in, such categories) -> such categories (10072ms)\nWhat year did Alaska become a state?\tthe Union\t-10.803219480792633\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the 49th state in, the Union) -> the Union (4811ms)\nWhat year did Alaska become a state?\tJanuary 3\t-10.80896324137359\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became the 49th state on, January 3) -> January 3 (4845ms)\nWhat year did Alaska become a state?\tMay 1998\t-10.818729056433463\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes back to, May 1998) -> May 1998 (10072ms)\nWhat year did Alaska become a state?\tthe USA\t-10.882214615142999\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the largest state in, the USA) -> the USA (10072ms)\nWhat year did Alaska become a state?\tsuch legislation\t-10.88721619698977\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, remains the only state with, such legislation) -> such legislation (10103ms)\nWhat year did Alaska become a state?\tan expanded faith\t-10.899587090955801\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska ] Mom, became interested in, an expanded faith) -> an expanded faith (4845ms)\nWhat year did Alaska become a state?\t10-15 years\t-10.923505455765806\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, could go, 10-15 years) -> 10-15 years (10109ms)\nWhat year did Alaska become a state?\tthe United States area-wise\t-10.945573237294273\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the largest state in, the United States area-wise) -> the United States area-wise (10109ms)\nWhat year did Alaska become a state?\tarea\t-10.991252385255914\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the largest state in, area) -> area (10103ms)\nWhat year did Alaska become a state?\t3rd\t-10.997389911632311\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became the 49th state, 3rd) -> 3rd (10103ms)\nWhat year did Alaska become a state?\tsalmon\t-11.07071490600299\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the state for, salmon) -> salmon (10132ms)\nWhat year did Alaska become a state?\tjuneau\t-11.137880471234123\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (alaska, is the capital city of the state or province, juneau) -> juneau (10132ms)\nWhat year did Alaska become a state?\tthe King Salmon\t-11.186549621421943\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (the King Salmon, is the official State of, Alaska fish) -> the King Salmon (10132ms)\nWhat year did Alaska become a state?\t4,000 years\t-11.207035117236115\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went extinct only about, 4,000 years) -> 4,000 years (10132ms)\nWhat year did Alaska become a state?\tdiscount prescription cards\t-11.215756022316663\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (discount prescription cards, is the State of, Alaska) -> discount prescription cards (10163ms)\nWhat year did Alaska become a state?\t1788\t-11.217500488670012\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be n?t in, $x) -> (Alaska, is n?t a state in, 1788) -> 1788 (5565ms)\nWhat year did Alaska become a state?\ta run\t-11.222536825424122\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes on, a run) -> a run (10163ms)\nWhat year did Alaska become a state?\tMargi Clifford\t-11.232234249480406\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Margi Clifford, is the state of, Alaska) -> Margi Clifford (10163ms)\nWhat year did Alaska become a state?\tsuperlatives\t-11.242547716676434\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state of, superlatives) -> superlatives (10163ms)\nWhat year did Alaska become a state?\tcrisis\t-11.251817006057347\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is already a state in, crisis) -> crisis (10163ms)\nWhat year did Alaska become a state?\tnew hydropower development\t-11.256744901665183\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (new hydropower development, is the state of, Alaska) -> new hydropower development (10163ms)\nWhat year did Alaska become a state?\tWorkplace Alaska\t-11.280423549663281\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Workplace Alaska, is the State of, Alaska) -> Workplace Alaska (10207ms)\nWhat year did Alaska become a state?\tTHE USA\t-11.281182519687698\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (THE USA, IS THE STATE OF, ALASKA) -> THE USA (10207ms)\nWhat year did Alaska become a state?\tDemocrat\t-11.31857732340706\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, would go, Democrat) -> Democrat (10207ms)\nWhat year did Alaska become a state?\tAlpine Forget-Me-Not\t-11.319095560196626\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Alpine Forget-Me-Not, is the state flower of, Alaska) -> Alpine Forget-Me-Not (10207ms)\nWhat year did Alaska become a state?\tthe United States district court\t-11.319095560196626\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (the United States district court, is the state of, Alaska) -> the United States district court (10207ms)\nWhat year did Alaska become a state?\t2012\t-11.323089550549083\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, decide in, $x) -> (Alaska voters, will decide in, 2012) -> 2012 (5362ms)\nWhat year did Alaska become a state?\tMyosotis alpestris\t-11.345613659020735\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Myosotis alpestris, is the state flower of, Alaska) -> Myosotis alpestris (10207ms)\nWhat year did Alaska become a state?\tThe Willow Ptarmigan\t-11.38528516713891\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (The Willow Ptarmigan, is the state bird of, Alaska) -> The Willow Ptarmigan (10252ms)\nWhat year did Alaska become a state?\tearth\t-11.400911515526365\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (earth, is the state of, Alaska) -> earth (10252ms)\nWhat year did Alaska become a state?\t2nd Day Air\t-11.404350771037207\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, automatically go, 2nd Day Air) -> 2nd Day Air (10252ms)\nWhat year did Alaska become a state?\tfostering\t-11.408098026105641\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became active in, fostering) -> fostering (4845ms)\nWhat year did Alaska become a state?\tINTRODUCTION Juneau\t-11.431388656097855\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (INTRODUCTION Juneau, is the state capital of, Alaska) -> INTRODUCTION Juneau (10252ms)\nWhat year did Alaska become a state?\tview\t-11.437435602953588\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, becomes more unique in, view) -> view (4958ms)\nWhat year did Alaska become a state?\t23-4-1\t-11.439966858617662\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went, 23-4-1) -> 23-4-1 (10288ms)\nWhat year did Alaska become a state?\tHere are entered works on the indigenous peoples of Alaska treated collectively. Works about individual cultures and tribes in Alaska are entered under the name of the culture or tribe subdivided geographically, e.g. Aleuts--Alaska; Eskimos--Alaska.\t-11.453750964527034\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, note, $x) -> (Alaska Natives, Scope Note, Here are entered works on the indigenous peoples of Alaska treated collectively. Works about individual cultures and tribes in Alaska are entered under the name of the culture or tribe subdivided geographically, e.g. Aleuts--Alaska; Eskimos--Alaska.) -> Here are entered works on the indigenous peoples of Alaska treated collectively. Works about individual cultures and tribes in Alaska are entered under the name of the culture or tribe subdivided geographically, e.g. Aleuts--Alaska; Eskimos--Alaska. (10584ms)\nWhat year did Alaska become a state?\tHere are entered works on the area included in the basins of the Yukon and Kuskokwim rivers upriver from the delta regions and the Alaska and Brooks ranges, often encompassing the Wrangell Mountains.\t-11.457154349744073\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, note, $x) -> (Interior Alaska (Alaska), Scope Note, Here are entered works on the area included in the basins of the Yukon and Kuskokwim rivers upriver from the delta regions and the Alaska and Brooks ranges, often encompassing the Wrangell Mountains.) -> Here are entered works on the area included in the basins of the Yukon and Kuskokwim rivers upriver from the delta regions and the Alaska and Brooks ranges, often encompassing the Wrangell Mountains. (10583ms)\nWhat year did Alaska become a state?\tObama\t-11.467301262167334\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, might just go for, Obama) -> Obama (10288ms)\nWhat year did Alaska become a state?\tGovernor\t-11.468810880429443\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (the Miss Alaska, then went on to become, Governor) -> Governor (4958ms)\nWhat year did Alaska become a state?\tHealth Insurance\t-11.478060614659695\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, Go, Health Insurance) -> Health Insurance (10326ms)\nWhat year did Alaska become a state?\tClassic Rock\t-11.483430353895825\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, go, Classic Rock) -> Classic Rock (10326ms)\nWhat year did Alaska become a state?\tPalin\t-11.526756014572507\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went to, Palin) -> Palin (10326ms)\nWhat year did Alaska become a state?\tan ANCC\t-11.541119784035867\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (The Alaska Nurses Association, is working on becoming, an ANCC) -> an ANCC (4958ms)\nWhat year did Alaska become a state?\tJanuary\t-11.549507892114907\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became the 49th state on, January) -> January (4958ms)\nWhat year did Alaska become a state?\tSarah Palin\t-11.555393430764028\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, is going after, Sarah Palin) -> Sarah Palin (10399ms)\nWhat year did Alaska become a state?\tterms\t-11.563017732185257\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the largest state in, terms) -> terms (10400ms)\nWhat year did Alaska become a state?\t137,500 mobile subscribers\t-11.56704312422848\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went from, 137,500 mobile subscribers) -> 137,500 mobile subscribers (10399ms)\nWhat year did Alaska become a state?\tExercise Alaska Shield / Northern Edge 07\t-11.569022537944551\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (Exercise Alaska Shield / Northern Edge 07, is a state of, Alaska) -> Exercise Alaska Shield / Northern Edge 07 (10399ms)\nWhat year did Alaska become a state?\tHere are entered works on the census areas of Nome and Kobuk and the western part of the North Slope and Yukon-Koyukuk census districts collectively.\t-11.57627283234043\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, note, $x) -> (Alaska, Northwest, Scope Note, Here are entered works on the census areas of Nome and Kobuk and the western part of the North Slope and Yukon-Koyukuk census districts collectively.) -> Here are entered works on the census areas of Nome and Kobuk and the western part of the North Slope and Yukon-Koyukuk census districts collectively. (10583ms)\nWhat year did Alaska become a state?\tnow\t-11.588838224864608\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state, now) -> now (10400ms)\nWhat year did Alaska become a state?\tGOP\t-11.592221388411328\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes, GOP) -> GOP (10400ms)\nWhat year did Alaska become a state?\tHB 226\t-11.593928611312473\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (HB 226, brings the state of, Alaska) -> HB 226 (10433ms)\nWhat year did Alaska become a state?\tJapan\t-11.62008878615082\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes to, Japan) -> Japan (10433ms)\nWhat year did Alaska become a state?\tFederal law\t-11.635722986134358\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (Federal law, requires the state of, Alaska) -> Federal law (10433ms)\nWhat year did Alaska become a state?\tStan\t-11.642199982160133\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Stan, was the State of, Alaska?s Chief Restoration Planner) -> Stan (10433ms)\nWhat year did Alaska become a state?\tabortions\t-11.64277195870645\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, provides state funding for, abortions) -> abortions (10433ms)\nWhat year did Alaska become a state?\t1857\t-11.644916257285152\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, here be in, $x) -> (Interior Alaska, was established here in, 1857) -> 1857 (5000ms)\nWhat year did Alaska become a state?\tCotabato\t-11.647891132591585\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went to, Cotabato) -> Cotabato (10497ms)\nWhat year did Alaska become a state?\tSouth America\t-11.65586384947549\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went around, South America) -> South America (10497ms)\nWhat year did Alaska become a state?\ta hitch\t-11.664163943352818\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went without, a hitch) -> a hitch (10497ms)\nWhat year did Alaska become a state?\tAnchorage\t-11.67264866803606\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went through, Anchorage) -> Anchorage (10584ms)\nWhat year did Alaska become a state?\tCensus 2000 data\t-11.677843536509592\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, delineate, $x) -> (Alaska Native Areas, delineated for, Census 2000 data) -> Census 2000 data (10583ms)\nWhat year did Alaska become a state?\tThe BBAP\t-11.679336285326842\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (The BBAP, is the State of, Alaska?s principal land use plan) -> The BBAP (10584ms)\nWhat year did Alaska become a state?\tBP\t-11.700949673426445\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (BP, told the State of, Alaska) -> BP (10699ms)\nWhat year did Alaska become a state?\ta big frozen caribou cock\t-11.706330239045208\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, can go eat, a big frozen caribou cock) -> a big frozen caribou cock (10699ms)\nWhat year did Alaska become a state?\tmore than 14 years\t-11.717554210531581\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, be state, $x) -> (Alaska, has been a state for, more than 14 years) -> more than 14 years (10699ms)\nWhat year did Alaska become a state?\tDawson City\t-11.719590681718419\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went to, Dawson City) -> Dawson City (10744ms)\nWhat year did Alaska become a state?\tExxon\t-11.7338043733839\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (Exxon, would pay the State of, Alaska) -> Exxon (10745ms)\nWhat year did Alaska become a state?\tKotzebue\t-11.737046160980512\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, is going soon to, Kotzebue) -> Kotzebue (10744ms)\nWhat year did Alaska become a state?\ta remarkable transformation\t-11.738720822758612\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes through, a remarkable transformation) -> a remarkable transformation (10744ms)\nWhat year did Alaska become a state?\ta low\t-11.75310115838035\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went from, a low) -> a low (10807ms)\nWhat year did Alaska become a state?\tdaylight saving time\t-11.771529904943932\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went on, daylight saving time) -> daylight saving time (10807ms)\nWhat year did Alaska become a state?\t50 years\t-11.773098035099961\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, have state, $x) -> (Alaska, has been a state for, 50 years) -> 50 years (10807ms)\nWhat year did Alaska become a state?\ta 2004 study\t-12.117764142813765\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Petrotechnical Resources Alaska, was the lead in, a 2004 study) -> a 2004 study (5268ms)\nWhat year did Alaska become a state?\tthe fight\t-12.18771710132933\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, have become a rallying symbol in, the fight) -> the fight (4999ms)\nWhat year did Alaska become a state?\tFebruary\t-12.221162459829138\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be n?t in, $x) -> (saying Alaska, should n?t be cold in, February) -> February (5566ms)\nWhat year did Alaska become a state?\taccount\t-12.240449937699356\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became famous on, account) -> account (4999ms)\nWhat year did Alaska become a state?\tthe November 3 , 1998\t-12.416061165114497\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, decide in, $x) -> (Alaska and Hawaii voters, decided in, the November 3 , 1998) -> the November 3 , 1998 (5362ms)\nWhat year did Alaska become a state?\tthe discussion\t-12.422029554353031\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, has become a focal point in, the discussion) -> the discussion (5000ms)\nWhat year did Alaska become a state?\tthe union\t-12.427238029658703\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the second state in, the union) -> the union (5000ms)\nWhat year did Alaska become a state?\tthe country\t-12.427238029658703\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the first state in, the country) -> the country (4999ms)\nWhat year did Alaska become a state?\tthe use\t-12.506388539837937\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, become active in, the use) -> the use (5071ms)\nWhat year did Alaska become a state?\tthe battle\t-12.609415050009394\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, would become ground zero in, the battle) -> the battle (5071ms)\nWhat year did Alaska become a state?\tSelf-Government\t-12.7897162720032\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, have measure, $x) -> (Alaska, had achieved a full measure of, Self-Government) -> Self-Government (7714ms)\nWhat year did Alaska become a state?\tDUI\t-12.8306200513099\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads in, DUI) -> DUI (5268ms)\nWhat year did Alaska become a state?\tSummer\t-12.990853380084914\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: ($x, be short in, alaska) -> (Summer, is a short season in, Alaska) -> Summer (5071ms)\nWhat year did Alaska become a state?\tAlaska\t-13.031363552565155\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, support in, $x) -> (The Alaska Humanities Forum, is a partner in supporting, Alaska) -> Alaska (5268ms)\nWhat year did Alaska become a state?\taudio recordings\t-13.053253798050013\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to listen, $x) -> (Alaska Collections, Listen to, audio recordings) -> audio recordings (5362ms)\nWhat year did Alaska become a state?\tFall\t-13.072591782122407\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: ($x, be short in, alaska) -> (Fall, is a short season in, Alaska) -> Fall (5071ms)\nWhat year did Alaska become a state?\tthe Master\t-13.19030448209801\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to listen, $x) -> (Alaska, was listening to, the Master) -> the Master (5362ms)\nWhat year did Alaska become a state?\tquick as 1\t-13.213160467425187\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, as be in, $x) -> (Alaska, are made in as, quick as 1) -> quick as 1 (5484ms)\nWhat year did Alaska become a state?\tenvironmental law\t-13.283815927067458\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Oregon and Alaska, lead the nation in, environmental law) -> environmental law (5268ms)\nWhat year did Alaska become a state?\tcommercial fishing\t-13.303495982224476\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, commercial fishing) -> commercial fishing (5268ms)\nWhat year did Alaska become a state?\tresource management\t-13.326294530666013\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, resource management) -> resource management (5268ms)\nWhat year did Alaska become a state?\tGig Harbor\t-13.349499431189933\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska ?, is coming to, Gig Harbor) -> Gig Harbor (5151ms)\nWhat year did Alaska become a state?\tUtah\t-13.350369452469184\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, is excited to come to, Utah) -> Utah (5151ms)\nWhat year did Alaska become a state?\tthe South\t-13.396283156924195\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be n?t in, $x) -> (Alaska, was n?t in, the South) -> the South (5566ms)\nWhat year did Alaska become a state?\ta synonym\t-13.489914264649055\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, has come to be, a synonym) -> a synonym (5314ms)\nWhat year did Alaska become a state?\ta town\t-13.558493788444714\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (The Alaska State Fair, may be coming to, a town) -> a town (5314ms)\nWhat year did Alaska become a state?\ta close\t-13.595832572684364\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (the late Alaska Sen. Ted Stevens, is coming to, a close) -> a close (5314ms)\nWhat year did Alaska become a state?\tplus-minus\t-13.622752154494346\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (? Alaska?s Kane Lafranchise, leads rookies in, plus-minus) -> plus-minus (5362ms)\nWhat year did Alaska become a state?\tVentura\t-13.644763215089075\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, cause in, $x) -> (Alaska, caused the tide in, Ventura) -> Ventura (5785ms)\nWhat year did Alaska become a state?\tsexual assaults\t-13.671367909287136\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the country in, sexual assaults) -> sexual assaults (5362ms)\nWhat year did Alaska become a state?\tstimulus funding\t-13.684566295283215\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, stimulus funding) -> stimulus funding (5415ms)\nWhat year did Alaska become a state?\ta much-needed U.S. energy plan\t-13.718966069450444\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, can lead the nation in, a much-needed U.S. energy plan) -> a much-needed U.S. energy plan (5415ms)\nWhat year did Alaska become a state?\tmodern times\t-13.75729621812982\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be even in, $x) -> (Alaska, is a tough place even in, modern times) -> modern times (5640ms)\nWhat year did Alaska become a state?\tbroadband subscriptions\t-13.774968762092726\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, led in, broadband subscriptions) -> broadband subscriptions (5415ms)\nWhat year did Alaska become a state?\ttwo\t-13.80014935893372\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (former Alaska Gov. Sarah Palin, leads in, two) -> two (5415ms)\nWhat year did Alaska become a state?\tany\t-13.80644765339242\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, could get in, $x) -> (Alaska landowners, could n?t get anyone interested in, any) -> any (5415ms)\nWhat year did Alaska become a state?\tReal Time\t-13.815413403997102\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska Insurance, Leads in, Real Time) -> Real Time (5484ms)\nWhat year did Alaska become a state?\ttop\t-13.83521180975143\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: ($x, burden, alaska) -> (top, has burdened, Alaska Air Group) -> top (5484ms)\nWhat year did Alaska become a state?\twind-diesel applications\t-13.838195024884719\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, really be in, $x) -> (Alaska, is really the front-runner in, wind-diesel applications) -> wind-diesel applications (5484ms)\nWhat year did Alaska become a state?\tan end\t-13.855327230969973\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, was coming to, an end) -> an end (5566ms)\nWhat year did Alaska become a state?\tcertain aberrations\t-13.880630567917688\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, often takes the national lead in, certain aberrations) -> certain aberrations (5640ms)\nWhat year did Alaska become a state?\tthe PBA playoffs\t-13.889562281843691\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be again in, $x) -> (The Alaska Aces, are once again in, the PBA playoffs) -> the PBA playoffs (5640ms)\nWhat year did Alaska become a state?\trape\t-13.942910398346292\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, rape) -> rape (5640ms)\nWhat year did Alaska become a state?\thigh gas prices\t-13.946309553818857\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Hawaii and Alaska, lead the pack in, high gas prices) -> high gas prices (5640ms)\nWhat year did Alaska become a state?\toil , timber and fish\t-13.957521049235739\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, prove in, $x) -> (Alaska, has proven to be rich in, oil , timber and fish) -> oil , timber and fish (5785ms)\nWhat year did Alaska become a state?\treported forcible rapes\t-13.9610733393228\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, reported forcible rapes) -> reported forcible rapes (5785ms)\nWhat year did Alaska become a state?\tApril?s jobless statistics\t-13.962777196700031\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, led the way in, April?s jobless statistics) -> April?s jobless statistics (5785ms)\nWhat year did Alaska become a state?\tdeep boreholes\t-13.971683734242845\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, have measure, $x) -> (northern Alaska, have been measured from, deep boreholes) -> deep boreholes (7715ms)\nWhat year did Alaska become a state?\tquantity\t-13.977458657734674\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, quantity) -> quantity (5785ms)\nWhat year did Alaska become a state?\tGlenn\t-13.980133451865397\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to listen, $x) -> (Alaska Job Corps students, listened carefully to, Glenn) -> Glenn (5904ms)\nWhat year did Alaska become a state?\tlight\t-14.007546593373508\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, is starting to come to, light) -> light (5904ms)\nWhat year did Alaska become a state?\tdog bite-related fatalities\t-14.024735603438472\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, led the US in, dog bite-related fatalities) -> dog bite-related fatalities (5904ms)\nWhat year did Alaska become a state?\tcapita consumption\t-14.04860895248185\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in per, capita consumption) -> capita consumption (5904ms)\nWhat year did Alaska become a state?\tTown\t-14.06746984822113\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska The Big Jolly Fat Man, is Coming to, Town) -> Town (7714ms)\nWhat year did Alaska become a state?\tpork\t-14.082678209724836\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, led the nation in, pork) -> pork (7715ms)\nWhat year did Alaska become a state?\tApril?s jobless statistics\t-14.35661742669028\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska?s urban areas, led the way in, April?s jobless statistics) -> April?s jobless statistics (7715ms)\nWhat year did Alaska become a state?\tcases\t-14.401462485081682\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, cases) -> cases (7797ms)\nWhat year did Alaska become a state?\tconnectivity\t-14.479599520685236\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, connectivity) -> connectivity (7797ms)\nWhat year did Alaska become a state?\ttown\t-14.498421334571947\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, was coming to, town) -> town (7797ms)\nWhat year did Alaska become a state?\tfavor\t-14.504500410208362\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, decide in, $x) -> (The Alaska Boundary Commission, decides in, favor) -> favor (7797ms)\nWhat year did Alaska become a state?\tmusic\t-14.516065163150422\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to listen, $x) -> (Alaska, listened to, music) -> music (7838ms)\nWhat year did Alaska become a state?\tthe 49th state\t-14.545652823263977\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to unite, $x) -> (Alaska, was admitted to the United States as, the 49th state) -> the 49th state (7838ms)\nWhat year did Alaska become a state?\tDenali\t-14.547743900434654\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Denali, Instance Of, alsakan state park) (denali, is a mountain in the state or province, alaska) -> Denali (7838ms)\nWhat year did Alaska become a state?\tpartnering\t-14.593576705348188\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (rural Alaska, have often taken the lead in, partnering) -> partnering (7838ms)\nWhat year did Alaska become a state?\trates\t-14.605319927056735\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, rates) -> rates (8036ms)\nWhat year did Alaska become a state?\tjeopardy\t-14.607897979828126\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be again in, $x) -> (Alaska, is once again in, jeopardy) -> jeopardy (8036ms)\nWhat year did Alaska become a state?\tMcKinley\t-14.622308284481694\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (McKinley, Instance Of, state Republican chairman) (mckinley, is a mountain in the state or province, alaska) -> McKinley (8036ms)\nWhat year did Alaska become a state?\tincidents\t-14.667684750710023\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the United States in, incidents) -> incidents (8083ms)\nWhat year did Alaska become a state?\tAdak\t-14.683862332904692\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Adak, Instance Of, great representation of the entire United States) (adak, is a city located in the state or province, alaska) -> Adak (8083ms)\nWhat year did Alaska become a state?\tNome\t-14.683862332904692\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Nome, Instance Of, state's regional hub area) (nome, is a city located in the state or province, alaska) -> Nome (8083ms)\nWhat year did Alaska become a state?\tshots\t-14.70690294522283\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, grabbed the lead in, shots) -> shots (8123ms)\nWhat year did Alaska become a state?\tthe top 30 oil spills\t-14.724592123772334\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be even in, $x) -> (Alaska 21 years, ago is n?t even in, the top 30 oil spills) -> the top 30 oil spills (8123ms)\nWhat year did Alaska become a state?\tMr. McKinley\t-14.729381398454606\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Mr. McKinley, Instance Of, citizen of the United States) (mckinley, is a mountain in the state or province, alaska) -> Mr. McKinley (8155ms)\nWhat year did Alaska become a state?\tplace\t-14.746791972495162\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be be put in, $x) -> (Alaska?prohibitions, were put in, place) -> place (8155ms)\nWhat year did Alaska become a state?\tWill McKinley\t-14.751155387842712\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Will McKinley, Instance Of, graduate of Morgan State University) (mckinley, is a mountain in the state or province, alaska) -> Will McKinley (8155ms)\nWhat year did Alaska become a state?\tFlower\t-14.919781285432181\tWhat year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Flower, Instance Of, state fact) (FLOWERS, is an agricultural product growing in, alaska) -> Flower (8155ms)\nWhat is the full name of conductor Seiji?\tBolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa)\t-10.237771543175526\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Release of, Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa)) -> Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa) (9406ms)\nWhat is the full name of conductor Seiji?\tThe Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.383962408180148\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, The Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> The Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (9406ms)\nWhat is the full name of conductor Seiji?\tThe Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.40091207368793\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa)) -> The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) (9407ms)\nWhat is the full name of conductor Seiji?\tThe Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)\t-10.416449267070064\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1), Release of, The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (8225ms)\nWhat is the full name of conductor Seiji?\tIgor Stravinsky\t-10.437579143141619\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Igor Stravinsky) -> Igor Stravinsky (13410ms)\nWhat is the full name of conductor Seiji?\tWhen Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa)\t-10.443938147669224\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa), Release of, When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa)) -> When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa) (9406ms)\nWhat is the full name of conductor Seiji?\tStravinksy: The Rite of Spring / Petroucka / Fireworks\t-10.443938147669224\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Stravinsky: Petrouchka / The Rite of Spring / Fireworks (Boston Symphony Orchestra; Chicago Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Stravinksy: The Rite of Spring / Petroucka / Fireworks) -> Stravinksy: The Rite of Spring / Petroucka / Fireworks (8225ms)\nWhat is the full name of conductor Seiji?\tBolero / Rapsodie espagnole / Ma m?re l'oye / Pavane (London Symphony Orchestra feat. conductor: Claudio Abbado)\t-10.456155427935517\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Release of, Bolero / Rapsodie espagnole / Ma m?re l'oye / Pavane (London Symphony Orchestra feat. conductor: Claudio Abbado)) -> Bolero / Rapsodie espagnole / Ma m?re l'oye / Pavane (London Symphony Orchestra feat. conductor: Claudio Abbado) (8225ms)\nWhat is the full name of conductor Seiji?\tPetrouchka - Firebird Suite (Orchestre National De Lille, Casadesus, cond.)\t-10.497142432699855\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Petrouchka - Firebird Suite (Orchestre National De Lille, Casadesus, cond.)) -> Petrouchka - Firebird Suite (Orchestre National De Lille, Casadesus, cond.) (8225ms)\nWhat is the full name of conductor Seiji?\tCarmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa)\t-10.521553810537439\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Release of, Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa)) -> Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa) (9406ms)\nWhat is the full name of conductor Seiji?\tGloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.521553810537439\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (9406ms)\nWhat is the full name of conductor Seiji?\tBallet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.535567749666422\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Ballet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Ballet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Ballet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (9406ms)\nWhat is the full name of conductor Seiji?\tEin Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.535567749666422\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (9406ms)\nWhat is the full name of conductor Seiji?\tOrchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa)\t-10.535567749666422\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa), Release of, Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa)) -> Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa) (10578ms)\nWhat is the full name of conductor Seiji?\tCarmen (Orchestre National de France feat. conductor: Seiji Ozawa)\t-10.535567749666422\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Carmen (Orchestre National de France feat. conductor: Seiji Ozawa), Release of, Carmen (Orchestre National de France feat. conductor: Seiji Ozawa)) -> Carmen (Orchestre National de France feat. conductor: Seiji Ozawa) (10578ms)\nWhat is the full name of conductor Seiji?\tSwan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.535567749666422\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (10578ms)\nWhat is the full name of conductor Seiji?\tPique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.535567749666422\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (10578ms)\nWhat is the full name of conductor Seiji?\tCarmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.535567749666422\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (10578ms)\nWhat is the full name of conductor Seiji?\tCapriccio Italien\t-10.546135483898205\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording of composition, $x) -> (Capriccio Italien, Op. 45 (Philharmonia Orchestra feat. conductor: Seiji Ozawa), Recording of Composition, Capriccio Italien) -> Capriccio Italien (13410ms)\nWhat is the full name of conductor Seiji?\tNational Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)\t-10.548106537308144\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Release of, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa) (10577ms)\nWhat is the full name of conductor Seiji?\tRomeo & Juliet\t-10.548106537308144\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Romeo & Juliet (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Romeo & Juliet) -> Romeo & Juliet (9232ms)\nWhat is the full name of conductor Seiji?\tScheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa)\t-10.559391446185694\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa), Release of, Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa)) -> Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa) (10578ms)\nWhat is the full name of conductor Seiji?\tGurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa)\t-10.56960160183681\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa), Release of, Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa)) -> Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa) (10703ms)\nWhat is the full name of conductor Seiji?\tSaint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa)\t-10.578883561519643\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa), Release of, Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa)) -> Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa) (10703ms)\nWhat is the full name of conductor Seiji?\tCarmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman)\t-10.578883561519643\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman), Release of, Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman)) -> Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman) (10703ms)\nWhat is the full name of conductor Seiji?\tPoulenc: Gloria, Stabat Mater\t-10.578883561519643\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Poulenc: Gloria, Stabat Mater, Release of, Gloria / Stabat Mater (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Poulenc: Gloria, Stabat Mater (10703ms)\nWhat is the full name of conductor Seiji?\tPanufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa)\t-10.587358394273535\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa), Release of, Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa)) -> Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa) (11721ms)\nWhat is the full name of conductor Seiji?\tPini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.587358394273535\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (10703ms)\nWhat is the full name of conductor Seiji?\tSibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova)\t-10.587358394273535\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova), Release of, Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova)) -> Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova) (11721ms)\nWhat is the full name of conductor Seiji?\tPanorama: Colours of the Orchestra\t-10.593666185991992\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Panorama: Colours of the Orchestra, Tracks, Dolly Suite, Op. 56: VI. Le pas espagnol (Boston Symphony Orchestra feat. conductor Seiji Ozawa)) -> Panorama: Colours of the Orchestra (11721ms)\nWhat is the full name of conductor Seiji?\tJeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa)\t-10.595126990964602\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa), Release of, Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa)) -> Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa) (11721ms)\nWhat is the full name of conductor Seiji?\tViolin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman)\t-10.60887143126418\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Alban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman), Release of, Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman)) -> Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman) (11721ms)\nWhat is the full name of conductor Seiji?\tAlban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman)\t-10.60887143126418\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Alban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman), Release of, Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman)) -> Alban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman) (11945ms)\nWhat is the full name of conductor Seiji?\tLalo: Symphonie Espagnole / Sarasate: Zigeunerweisen\t-10.60887143126418\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen, Release of, Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (Orchestre National de France feat. conductor: Seiji Ozawa, violin: Anne-Sophie Mutter)) -> Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (11721ms)\nWhat is the full name of conductor Seiji?\tMusic for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ)\t-10.614980071397328\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Music for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ), Release of, Music for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ)) -> Music for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ) (11945ms)\nWhat is the full name of conductor Seiji?\tSymphonie Espagnole / Zigeunerweisen / M?ditation\t-10.614980071397328\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Symphonie Espagnole / Zigeunerweisen / M?ditation, Release of, Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (Orchestre National de France feat. conductor: Seiji Ozawa, violin: Anne-Sophie Mutter)) -> Symphonie Espagnole / Zigeunerweisen / M?ditation (11945ms)\nWhat is the full name of conductor Seiji?\tConcerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra)\t-10.625933495084348\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Concerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra), Release of, Concerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra)) -> Concerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra) (11945ms)\nWhat is the full name of conductor Seiji?\tEl sombrero de tres picos - El amor brujo\t-10.625933495084348\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (El sombrero de tres picos - El amor brujo, Release of, El sombrero de tres picos / El amor brujo (Boston Symphony Orchestra, London Symphony Orchestra feat. conductor: Seiji Ozawa, Garc?a Navarro)) -> El sombrero de tres picos - El amor brujo (11945ms)\nWhat is the full name of conductor Seiji?\tAgnus Dei\t-10.628141285095015\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Agnus Dei, Release, Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa)) -> Agnus Dei (12530ms)\nWhat is the full name of conductor Seiji?\tAn American in Paris\t-10.639693255328574\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording of composition, $x) -> (An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recording of Composition, An American in Paris) -> An American in Paris (13410ms)\nWhat is the full name of conductor Seiji?\tPavane pour une infante d?funte\t-10.639693255328574\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording of composition, $x) -> (Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording of Composition, Pavane pour une infante d?funte) -> Pavane pour une infante d?funte (13410ms)\nWhat is the full name of conductor Seiji?\tStravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st)\t-10.639796421938236\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st), Release of, Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st)) -> Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st) (12530ms)\nWhat is the full name of conductor Seiji?\tStravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st)\t-10.639796421938236\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st), Release of, Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st)) -> Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st) (12530ms)\nWhat is the full name of conductor Seiji?\tWest Side Story\t-10.648168088082466\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording of composition, $x) -> (West Side Story\" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recording of Composition, West Side Story) -> West Side Story (13411ms)\nWhat is the full name of conductor Seiji?\tPyotr Ilyich Tchaikovsky\t-10.705060141152247\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2), Artist, Pyotr Ilyich Tchaikovsky) -> Pyotr Ilyich Tchaikovsky (13411ms)\nWhat is the full name of conductor Seiji?\tKazakhstan: Anthem of the Republic of Kazakhstan\t-10.718415724129269\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Kazakhstan: Anthem of the Republic of Kazakhstan) -> Kazakhstan: Anthem of the Republic of Kazakhstan (13411ms)\nWhat is the full name of conductor Seiji?\tWolfgang Amadeus Mozart\t-10.733648576975373\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29), Artist, Wolfgang Amadeus Mozart) -> Wolfgang Amadeus Mozart (13457ms)\nWhat is the full name of conductor Seiji?\tModest Petrovich Mussorgsky\t-10.7425824631701\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Pictures at an Exhibition (orch.: M. Ravel) / The Young Person's Guide to the Orchestra, Op.34 (Chicago Symphony feat. conductor: Seiji Ozawa), Artist, Modest Petrovich Mussorgsky) -> Modest Petrovich Mussorgsky (13457ms)\nWhat is the full name of conductor Seiji?\tUzbekistan: National Anthem of the Republic of Uzbekistan\t-10.765770236541517\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track list, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Track list, Uzbekistan: National Anthem of the Republic of Uzbekistan) -> Uzbekistan: National Anthem of the Republic of Uzbekistan (12530ms)\nWhat is the full name of conductor Seiji?\tThe Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.776519868960886\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (The Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, The Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> The Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (12530ms)\nWhat is the full name of conductor Seiji?\tThe Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)\t-10.776519868960886\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2), Release of, The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)) -> The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) (13456ms)\nWhat is the full name of conductor Seiji?\tLife Music\t-10.78064037301913\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa), Tracks, Life Music) -> Life Music (13617ms)\nWhat is the full name of conductor Seiji?\tJean Sibelius\t-10.78064037301913\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Jean Sibelius, Albums, Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova)) -> Jean Sibelius (13617ms)\nWhat is the full name of conductor Seiji?\tB?la Bart?k\t-10.78064037301913\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Musik f?r Saiteninstrumente, Schlagzeug und Celesta, Sz 106: IV. Allegro molto (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recorded by, B?la Bart?k) -> B?la Bart?k (13617ms)\nWhat is the full name of conductor Seiji?\tMaurice Ravel\t-10.785745253868006\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Artist, Maurice Ravel) -> Maurice Ravel (13663ms)\nWhat is the full name of conductor Seiji?\tThe Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1)\t-10.8090067278508\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1), Release of, The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1) (13663ms)\nWhat is the full name of conductor Seiji?\tSymphonie espagnole\t-10.812081938378373\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Symphonie espagnole, Release of, Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (Orchestre National de France feat. conductor: Seiji Ozawa, violin: Anne-Sophie Mutter)) -> Symphonie espagnole (13663ms)\nWhat is the full name of conductor Seiji?\tThe Queen of Spades, disc 2 (Boston Symphony, Osawa)\t-10.83649560844996\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1), Release of, The Queen of Spades, disc 2 (Boston Symphony, Osawa)) -> The Queen of Spades, disc 2 (Boston Symphony, Osawa) (13710ms)\nWhat is the full name of conductor Seiji?\tGustav Mahler\t-10.837535898475117\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Gustav Mahler, Albums, Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Gustav Mahler (13710ms)\nWhat is the full name of conductor Seiji?\tAnton?n Dvo??k\t-10.837535898475117\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Anton?n Dvo??k, Albums, Symphony No. 9 \"From The New World\" (San Francisco Symphony feat. conductor: Seiji Ozawa)) -> Anton?n Dvo??k (13710ms)\nWhat is the full name of conductor Seiji?\tThe Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29)\t-10.848712888716253\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29), Release of, The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29)) -> The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29) (13758ms)\nWhat is the full name of conductor Seiji?\tGabriel Faur?\t-10.859048935465765\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Dolly Suite, Op. 56: VI. Le pas espagnol (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Recorded by, Gabriel Faur?) -> Gabriel Faur? (14004ms)\nWhat is the full name of conductor Seiji?\tSergei Prokofiev\t-10.859048935465765\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Works for the Left Hand (Piano: Leon Fleisher, Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Sergei Prokofiev) -> Sergei Prokofiev (13805ms)\nWhat is the full name of conductor Seiji?\tBenjamin Britten\t-10.859048935465765\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Works for the Left Hand (Piano: Leon Fleisher, Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Benjamin Britten) -> Benjamin Britten (13804ms)\nWhat is the full name of conductor Seiji?\tRoger Sessions\t-10.870829884293975\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa), Artist, Roger Sessions) -> Roger Sessions (14090ms)\nWhat is the full name of conductor Seiji?\tHector Berlioz\t-10.870829884293975\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Rom?o et Juliette, Op. 17: Queen Mab, the Dream Fairy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recorded by, Hector Berlioz) -> Hector Berlioz (14090ms)\nWhat is the full name of conductor Seiji?\tBoston Symphony Orchestra\t-10.876590756091002\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Concerto No. 5 \"Emperor\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin), Artist, Boston Symphony Orchestra) -> Boston Symphony Orchestra (14136ms)\nWhat is the full name of conductor Seiji?\tAlborada del gracioso\t-10.882559853257264\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Alborada del gracioso, Releases, Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa)) -> Alborada del gracioso (14371ms)\nWhat is the full name of conductor Seiji?\tUne barque sur l'oc?an\t-10.893844762134814\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Tracks, Une barque sur l'oc?an) -> Une barque sur l'oc?an (14412ms)\nWhat is the full name of conductor Seiji?\tThe Great Composers, Volume 54: The Magic Flute (highlights) / Cos? Fan Tutti (highlights)\t-10.898345589798069\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Great Composers, Volume 54: The Magic Flute (highlights) / Cos? Fan Tutti (highlights), Release of, The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29)) -> The Great Composers, Volume 54: The Magic Flute (highlights) / Cos? Fan Tutti (highlights) (14412ms)\nWhat is the full name of conductor Seiji?\tRussian Easter Overture\t-10.906995602995467\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track list, $x) -> (Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa), Track list, Russian Easter Overture) -> Russian Easter Overture (14412ms)\nWhat is the full name of conductor Seiji?\t1812\" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa)\t-10.914111271318175\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (1812\" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa), Release of, \"1812\" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa)) -> 1812\" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa) (14412ms)\nWhat is the full name of conductor Seiji?\tPictures at an Exhibition (Orch.:M. Ravel) / The young Person's Guide to the Orchestra, Op.34 (Seiji Ozawa conducting the Chicago Symphony)\t-10.921318440013081\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Pictures at an Exhibition (Orch.:M. Ravel) / The young Person's Guide to the Orchestra, Op.34 (Seiji Ozawa conducting the Chicago Symphony), Release of, Pictures at an Exhibition (orch.: M. Ravel) / The Young Person's Guide to the Orchestra, Op.34 (Chicago Symphony feat. conductor: Seiji Ozawa)) -> Pictures at an Exhibition (Orch.:M. Ravel) / The young Person's Guide to the Orchestra, Op.34 (Seiji Ozawa conducting the Chicago Symphony) (14733ms)\nWhat is the full name of conductor Seiji?\tRepublic of Korea: ??? [Aegukga]\t-10.921811710222654\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Republic of Korea: ??? [Aegukga], Release, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Republic of Korea: ??? [Aegukga] (14734ms)\nWhat is the full name of conductor Seiji?\tAustria: Land der Berge, Land am Strame\t-10.92958030691372\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Austria: Land der Berge, Land am Strame) -> Austria: Land der Berge, Land am Strame (14733ms)\nWhat is the full name of conductor Seiji?\tUnited Kingdom: God Save the Queen\t-10.92958030691372\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (United Kingdom: God Save the Queen, Releases, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> United Kingdom: God Save the Queen (14733ms)\nWhat is the full name of conductor Seiji?\tLudwig van Beethoven\t-10.936727415869504\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Ludwig van Beethoven, Albums, The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Ludwig van Beethoven (14733ms)\nWhat is the full name of conductor Seiji?\tRequiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa)\t-10.940663998088882\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa), Release of, Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa)) -> Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa) (15060ms)\nWhat is the full name of conductor Seiji?\tPavane pour une infante d?funte (feat. cor anglais: Charles Kavaloski)\t-10.943324747213302\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Pavane pour une infante d?funte (feat. cor anglais: Charles Kavaloski), Release, Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa)) -> Pavane pour une infante d?funte (feat. cor anglais: Charles Kavaloski) (15061ms)\nWhat is the full name of conductor Seiji?\tSwan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)\t-10.95194890696643\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2), Release of, Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) (15061ms)\nWhat is the full name of conductor Seiji?\tPique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1)\t-10.95194890696643\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1), Release of, Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1) (15061ms)\nWhat is the full name of conductor Seiji?\tThe Four Seasons\t-10.95221655712712\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, know as, conductor seijus) -> (The Four Seasons, Also known as, The Four Seasons (Boston Symphony Orchestra feat. violin: Joseph Silverstein; feat. conductor: Seiji Ozawa)) -> The Four Seasons (15061ms)\nWhat is the full name of conductor Seiji?\tThe Nutcracker / Sleeping Beauty\t-10.959985153818186\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, know as, conductor seijus) -> (The Nutcracker / Sleeping Beauty, Also known as, The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1)) -> The Nutcracker / Sleeping Beauty (15284ms)\nWhat is the full name of conductor Seiji?\tLiechtenstein: Oben am jungen Rhein\t-10.959985153818186\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track list, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Track list, Liechtenstein: Oben am jungen Rhein) -> Liechtenstein: Oben am jungen Rhein (15284ms)\nWhat is the full name of conductor Seiji?\tFormer Yugoslav Republic of Macedonia: ????? ??? ?????????? [Denes nad Makedonija]\t-10.96038681103347\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Former Yugoslav Republic of Macedonia: ????? ??? ?????????? [Denes nad Makedonija]) -> Former Yugoslav Republic of Macedonia: ????? ??? ?????????? [Denes nad Makedonija] (15283ms)\nWhat is the full name of conductor Seiji?\tPique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 3)\t-10.962159062617546\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1), Release of, Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 3)) -> Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 3) (15283ms)\nWhat is the full name of conductor Seiji?\tSymphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa)\t-10.962159062617546\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Release of, Symphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa)) -> Symphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa) (15427ms)\nWhat is the full name of conductor Seiji?\tSymphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.962159062617546\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (15426ms)\nWhat is the full name of conductor Seiji?\tSymphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-10.962159062617546\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Symphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Symphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (15427ms)\nWhat is the full name of conductor Seiji?\tGreat Works for the Cello (feat. cello: Mstislav Rostropovich)\t-10.969926889728617\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Great Works for the Cello (feat. cello: Mstislav Rostropovich), Tracks, Chant du Menestrel, for cello and orchestra, Op. 71 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Great Works for the Cello (feat. cello: Mstislav Rostropovich) (15487ms)\nWhat is the full name of conductor Seiji?\tAngels of Ecstasy\t-10.969926889728617\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Angels of Ecstasy, Tracks, Requiem in C minor, Op. 48 No. 4: Pie Jesu (Boston Symphony Orchestra feat. soprano: Barbara Bonney, conductor: Seiji Ozawa)) -> Angels of Ecstasy (15427ms)\nWhat is the full name of conductor Seiji?\tLes Contes d'Hoffmann (disc 1)\t-10.97144102230038\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Les Contes d'Hoffmann (disc 1), Release of, Les Contes d'Hoffmann (Orchestre National de France feat. conductor: Seiji Ozawa)) -> Les Contes d'Hoffmann (disc 1) (15487ms)\nWhat is the full name of conductor Seiji?\tRavel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)\t-10.97144102230038\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1), Release of, Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)) -> Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) (15487ms)\nWhat is the full name of conductor Seiji?\tRavel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1)\t-10.97144102230038\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1), Release of, Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)) -> Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1) (15487ms)\nWhat is the full name of conductor Seiji?\tSymphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)\t-10.979915855054271\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2), Release of, Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)) -> Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) (15546ms)\nWhat is the full name of conductor Seiji?\tSymphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1)\t-10.979915855054271\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1), Release of, Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1)) -> Symphony No. 8 \"Symphony of a Thousand\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1) (15546ms)\nWhat is the full name of conductor Seiji?\tPiano Concerto No. 5 \"Emperor\"\t-10.987684451745338\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concerto No. 5 \"Emperor\", Release of, Piano Concerto No. 5 \"Emperor\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Piano Concerto No. 5 \"Emperor\" (15605ms)\nWhat is the full name of conductor Seiji?\tSymphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa)\t-10.987684451745338\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Symphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa), Release of, Symphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Symphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa) (15698ms)\nWhat is the full name of conductor Seiji?\tPiano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)\t-10.987684451745338\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin), Release of, Piano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Piano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (15605ms)\nWhat is the full name of conductor Seiji?\tSymphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa)\t-10.987684451745338\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa), Release of, Symphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Symphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa) (15605ms)\nWhat is the full name of conductor Seiji?\tPiano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman)\t-10.987684451745338\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman), Release of, Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman)) -> Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman) (15605ms)\nWhat is the full name of conductor Seiji?\tKlavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman)\t-10.994831560701119\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman), Release of, Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman)) -> Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman) (15699ms)\nWhat is the full name of conductor Seiji?\tScheherazade: The Young Prince and the Young Princess\t-10.995408942032762\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Suite Sinf?nica Scheherazade, Op. 35: III. Andantino quasi allegretto \"El Pr?ncipe y la Princesa\" (Orquesta Sinf?nica de Boston feat. conductor: Seiji Ozawa, violin: Joseph Silverstein), Recording, Scheherazade: The Young Prince and the Young Princess) -> Scheherazade: The Young Prince and the Young Princess (15698ms)\nWhat is the full name of conductor Seiji?\tScheherazade: The Sea and Sindbad's Ship\t-11.012963244731171\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Suite Sinf?nica Scheherazade, Op. 35: I. Largo e maestoso - Lento - Allegro non troppo - Tranquillo \"El mar y el barco de Simbad\" (Orquesta Sinf?nica de Boston feat. conductor: Seiji Ozawa, violin: Joseph Silverstein), Recording, Scheherazade: The Sea and Sindbad's Ship) -> Scheherazade: The Sea and Sindbad's Ship (15757ms)\nWhat is the full name of conductor Seiji?\tProkofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich)\t-11.01320984087313\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Prokofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich), Release of, Prokofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich)) -> Prokofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich) (15757ms)\nWhat is the full name of conductor Seiji?\tPiano Concerto No. 3 in C minor / \"Choral\" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)\t-11.018490955865087\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Piano Concerto No. 3 in C minor / \"Choral\" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin), Release of, Piano Concerto No. 3 in C minor / \"Choral\" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Piano Concerto No. 3 in C minor / \"Choral\" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (15823ms)\nWhat is the full name of conductor Seiji?\tPiano Concertos no. 2 & no. 3\t-11.023419996524245\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concertos no. 2 & no. 3, Release of, Piano Concertos Nos. 2, 3 (New York Philharmonic feat. conductor: Leonard Bernstein, Seiji Ozawa, piano: Philippe Entremont, Andr? Watts)) -> Piano Concertos no. 2 & no. 3 (15823ms)\nWhat is the full name of conductor Seiji?\tJacques Offenbach\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Jacques Offenbach, Albums, Les Contes d'Hoffmann (Orchestre National de France feat. conductor: Seiji Ozawa)) -> Jacques Offenbach (17139ms)\nWhat is the full name of conductor Seiji?\tDmitri Shostakovich\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Concerto for Cello and Orchestra No. 2, Op. 126: I. Largo (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recorded by, Dmitri Shostakovich) -> Dmitri Shostakovich (17325ms)\nWhat is the full name of conductor Seiji?\tGeorge Gershwin\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (George Gershwin, Tracks Recorded, An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> George Gershwin (17431ms)\nWhat is the full name of conductor Seiji?\tViolin Concertos\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Violin Concertos, Track list, Violin Concerto in D: III. Allegro vivacissimo (Philharmonia Orchestra feat. conductor: Seiji Ozawa, violin: Vladimir Spivakov)) -> Violin Concertos (17272ms)\nWhat is the full name of conductor Seiji?\tPhilippe Entremont\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Concertos Nos. 2, 3 (New York Philharmonic feat. conductor: Leonard Bernstein, Seiji Ozawa, piano: Philippe Entremont, Andr? Watts), Artist, Philippe Entremont) -> Philippe Entremont (17272ms)\nWhat is the full name of conductor Seiji?\tAndr? Watts\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Andr? Watts, Albums, Piano Concertos Nos. 2, 3 (New York Philharmonic feat. conductor: Leonard Bernstein, Seiji Ozawa, piano: Philippe Entremont, Andr? Watts)) -> Andr? Watts (17272ms)\nWhat is the full name of conductor Seiji?\tVladimir Spivakov\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini (Philharmonia Orchestra & Berliner Philharmoniker feat. violin: Vladimir Spivakov feat. conductor: Seiji Ozawa), Artist, Vladimir Spivakov) -> Vladimir Spivakov (17431ms)\nWhat is the full name of conductor Seiji?\tRudolf Serkin\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Rudolf Serkin, Albums, Piano Concerto No. 5 \"Emperor\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Rudolf Serkin (17271ms)\nWhat is the full name of conductor Seiji?\tFranz Liszt\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman), Artist, Franz Liszt) -> Franz Liszt (17031ms)\nWhat is the full name of conductor Seiji?\tSeiji Ozawa\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Seiji Ozawa, Albums, Piano Concerto No. 5 \"Emperor\" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Seiji Ozawa (17379ms)\nWhat is the full name of conductor Seiji?\tOttorino Respighi\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Ottorino Respighi) -> Ottorino Respighi (16923ms)\nWhat is the full name of conductor Seiji?\tOlivier Messiaen\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa), Artist, Olivier Messiaen) -> Olivier Messiaen (16107ms)\nWhat is the full name of conductor Seiji?\tSergei Rachmaninoff\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman), Artist, Sergei Rachmaninoff) -> Sergei Rachmaninoff (16661ms)\nWhat is the full name of conductor Seiji?\tStabat Mater\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, recording, conductor seijus) -> (Stabat Mater, Recorded as album, Gloria / Stabat Mater (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Stabat Mater (15886ms)\nWhat is the full name of conductor Seiji?\tRichard Strauss\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis), Artist, Richard Strauss) -> Richard Strauss (15886ms)\nWhat is the full name of conductor Seiji?\tAlexander Glazunov\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Alexander Glazunov, Tracks Recorded, Chant du Menestrel, for cello and orchestra, Op. 71 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Alexander Glazunov (17031ms)\nWhat is the full name of conductor Seiji?\tEmmanuel Chabrier\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Emmanuel Chabrier, Tracks Recorded, Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Emmanuel Chabrier (17139ms)\nWhat is the full name of conductor Seiji?\tArthur Honegger\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa), Artist, Arthur Honegger) -> Arthur Honegger (16466ms)\nWhat is the full name of conductor Seiji?\tAndrzej Panufnik\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Andrzej Panufnik, Albums, Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa)) -> Andrzej Panufnik (16923ms)\nWhat is the full name of conductor Seiji?\tLeonard Bernstein\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (West Side Story\" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recorded by, Leonard Bernstein) -> Leonard Bernstein (17431ms)\nWhat is the full name of conductor Seiji?\tArnold Schoenberg\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa), Artist, Arnold Schoenberg) -> Arnold Schoenberg (17085ms)\nWhat is the full name of conductor Seiji?\tFrancis Poulenc\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Francis Poulenc) -> Francis Poulenc (17431ms)\nWhat is the full name of conductor Seiji?\tViktoria Mullova\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova), Artist, Viktoria Mullova) -> Viktoria Mullova (16923ms)\nWhat is the full name of conductor Seiji?\tGeorges Bizet\t-11.023982219060722\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Georges Bizet, Albums, Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman)) -> Georges Bizet (17325ms)\nWhat is the full name of conductor Seiji?\tPiano Concertos. nos. 2 & 3\t-11.028031034560234\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concertos. nos. 2 & 3, Release of, Piano Concertos Nos. 2, 3 (New York Philharmonic feat. conductor: Leonard Bernstein, Seiji Ozawa, piano: Philippe Entremont, Andr? Watts)) -> Piano Concertos. nos. 2 & 3 (17566ms)\nWhat is the full name of conductor Seiji?\tViolin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini\t-11.028031034560234\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini, Release of, Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini (Philharmonia Orchestra & Berliner Philharmoniker feat. violin: Vladimir Spivakov feat. conductor: Seiji Ozawa)) -> Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini (17566ms)\nWhat is the full name of conductor Seiji?\tViolin Concertos Nos. 1 & 2 / Violin Sonata No. 2 (feat. violin: David Oistrakh)\t-11.028031034560234\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (7 Symphonies / Lieutenant Kij? (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Release of, Violin Concertos Nos. 1 & 2 / Violin Sonata No. 2 (feat. violin: David Oistrakh)) -> Violin Concertos Nos. 1 & 2 / Violin Sonata No. 2 (feat. violin: David Oistrakh) (17566ms)\nWhat is the full name of conductor Seiji?\tDon Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis)\t-11.043840307826478\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis), Release of, Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis)) -> Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis) (17566ms)\nWhat is the full name of conductor Seiji?\tShostakovich: Cello Concerto No. 2, Op. 126 / Tchaikovsky: Andante cantabile / Glazunov: Chant du m?nestrel (Boston Symphony Orchestra feat. conductor: Seiji Osawa, cello and Berliner Philharmoniker feat. conductor: Mstislav Rostropovich)\t-11.047243693043518\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Shostakovich: Cello Concerto No. 2, Op. 126 / Tchaikovsky: Andante cantabile / Glazunov: Chant du m?nestrel (Boston Symphony Orchestra feat. conductor: Seiji Osawa, cello and Berliner Philharmoniker feat. conductor: Mstislav Rostropovich), Release of, Shostakovich: Cello Concerto No. 2, Op. 126 / Tchaikovsky: Andante cantabile / Glazunov: Chant du m?nestrel (Boston Symphony Orchestra feat. conductor: Seiji Osawa, cello and Berliner Philharmoniker feat. conductor: Mstislav Rostropovich)) -> Shostakovich: Cello Concerto No. 2, Op. 126 / Tchaikovsky: Andante cantabile / Glazunov: Chant du m?nestrel (Boston Symphony Orchestra feat. conductor: Seiji Osawa, cello and Berliner Philharmoniker feat. conductor: Mstislav Rostropovich) (17566ms)\nWhat is the full name of conductor Seiji?\tSymphonies: 250th Anniversary Edition (Royal Concertgebouw Orchestra, Amsterdam Baroque Orchestra, Scottish Chamber Orchestra) (disc 7: Symphonies Nos. 38, 39)\t-11.050463111492068\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (7 Symphonies / Lieutenant Kij? (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Release of, Symphonies: 250th Anniversary Edition (Royal Concertgebouw Orchestra, Amsterdam Baroque Orchestra, Scottish Chamber Orchestra) (disc 7: Symphonies Nos. 38, 39)) -> Symphonies: 250th Anniversary Edition (Royal Concertgebouw Orchestra, Amsterdam Baroque Orchestra, Scottish Chamber Orchestra) (disc 7: Symphonies Nos. 38, 39) (17567ms)\nWhat is the full name of conductor Seiji?\tOrchestre National de France\t-11.057181781264296\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Carmen (Orchestre National de France feat. conductor: Seiji Ozawa), Artist, Orchestre National de France) -> Orchestre National de France (17852ms)\nWhat is the full name of conductor Seiji?\tAustralia: Advance Australia Fair\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Australia: Advance Australia Fair, Releases, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Australia: Advance Australia Fair (18477ms)\nWhat is the full name of conductor Seiji?\tEntr'acte\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmen (Orchestre National de France feat. conductor: Seiji Ozawa), Tracks, Entr'acte) -> Entr'acte (18477ms)\nWhat is the full name of conductor Seiji?\tYugoslavia: Hej Sloveni\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Yugoslavia: Hej Sloveni) -> Yugoslavia: Hej Sloveni (18277ms)\nWhat is the full name of conductor Seiji?\tIII. Cour d'amours: In trutina\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (III. Cour d'amours: In trutina, Releases, Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa)) -> III. Cour d'amours: In trutina (18277ms)\nWhat is the full name of conductor Seiji?\tSwan Lake: Introduction. Moderato assai - Allegro non troppo - Tempo I\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Swan Lake: Introduction. Moderato assai - Allegro non troppo - Tempo I) -> Swan Lake: Introduction. Moderato assai - Allegro non troppo - Tempo I (18737ms)\nWhat is the full name of conductor Seiji?\tRapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording, Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (17968ms)\nWhat is the full name of conductor Seiji?\tWest Side Story\" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (West Side Story\" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Tracks, West Side Story\" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story\" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18477ms)\nWhat is the full name of conductor Seiji?\tIII. Cour d'Amours: Si puer cum puellula\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (III. Cour d'Amours: Si puer cum puellula, Releases, Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> III. Cour d'Amours: Si puer cum puellula (18737ms)\nWhat is the full name of conductor Seiji?\tNorway: Ja, vi elsker dette landet\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Norway: Ja, vi elsker dette landet) -> Norway: Ja, vi elsker dette landet (18793ms)\nWhat is the full name of conductor Seiji?\tRapsodie Espagnole: III. Habanera. Assez lent et d?un rythme las\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (Rapsodie Espagnole: III. Habanera. Assez lent et d?un rythme las, Versions, Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie Espagnole: III. Habanera. Assez lent et d?un rythme las (17968ms)\nWhat is the full name of conductor Seiji?\tII. In Taberna: In taberna quando sumus\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Tracks, II. In Taberna: In taberna quando sumus) -> II. In Taberna: In taberna quando sumus (18276ms)\nWhat is the full name of conductor Seiji?\tPanorama: ? la fran?aise\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release, $x) -> (Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Releases, Panorama: ? la fran?aise) -> Panorama: ? la fran?aise (18737ms)\nWhat is the full name of conductor Seiji?\tWest Side Story: Symphonic Dances - Mambo\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (West Side Story: Symphonic Dances - Mambo, Versions, West Side Story\" Symphonic Dances: Mambo (Presto) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story: Symphonic Dances - Mambo (18022ms)\nWhat is the full name of conductor Seiji?\tQuaerens me\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa), Tracks, Quaerens me) -> Quaerens me (18681ms)\nWhat is the full name of conductor Seiji?\tBol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, recording, conductor seijus) -> (Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording, Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18277ms)\nWhat is the full name of conductor Seiji?\tIII. Cour d'amours: Veni, veni, venias\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Tracks, III. Cour d'amours: Veni, veni, venias) -> III. Cour d'amours: Veni, veni, venias (18737ms)\nWhat is the full name of conductor Seiji?\tWest Side Story: Symphonic Dances - Rumble\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (West Side Story: Symphonic Dances - Rumble, Versions, West Side Story\" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story: Symphonic Dances - Rumble (18681ms)\nWhat is the full name of conductor Seiji?\tIII. Cour d'Amours: In Trutina\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (III. Cour d'Amours: In Trutina, Release, Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> III. Cour d'Amours: In Trutina (18737ms)\nWhat is the full name of conductor Seiji?\tEspa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18369ms)\nWhat is the full name of conductor Seiji?\tPavane Pour Une Infante Defunte\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (Pavane Pour Une Infante Defunte, Versions, Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pavane Pour Une Infante Defunte (18075ms)\nWhat is the full name of conductor Seiji?\tAn American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Tracks, An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18369ms)\nWhat is the full name of conductor Seiji?\tFelix Mendelssohn-Bartholdy\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Felix Mendelssohn-Bartholdy, Albums, Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Felix Mendelssohn-Bartholdy (18369ms)\nWhat is the full name of conductor Seiji?\tII. In Taberna: Ego Sum Abbas\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, II. In Taberna: Ego Sum Abbas) -> II. In Taberna: Ego Sum Abbas (18022ms)\nWhat is the full name of conductor Seiji?\tDenmark: Kong Kristian\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Denmark: Kong Kristian) -> Denmark: Kong Kristian (18277ms)\nWhat is the full name of conductor Seiji?\tUf Dem Anger: Reie; Swaz Hie Gat Umbe; Chume, Chum, Geselle Min\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Uf Dem Anger: Reie; Swaz Hie Gat Umbe; Chume, Chum, Geselle Min) -> Uf Dem Anger: Reie; Swaz Hie Gat Umbe; Chume, Chum, Geselle Min (17968ms)\nWhat is the full name of conductor Seiji?\tPanorama: Viva espa?a\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release, $x) -> (Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release, Panorama: Viva espa?a) -> Panorama: Viva espa?a (18737ms)\nWhat is the full name of conductor Seiji?\tIII. Cour d'amours: Dies, nox et omnia\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Tracks, III. Cour d'amours: Dies, nox et omnia) -> III. Cour d'amours: Dies, nox et omnia (17968ms)\nWhat is the full name of conductor Seiji?\tGloria: V. Domine Deus, Agnus Dei\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Gloria: V. Domine Deus, Agnus Dei, Release, Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Gloria: V. Domine Deus, Agnus Dei (18422ms)\nWhat is the full name of conductor Seiji?\tRapsodie Espagnole: IV. Feria. Assez anim?\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (Rapsodie Espagnole: IV. Feria. Assez anim?, Versions, Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie Espagnole: IV. Feria. Assez anim? (18022ms)\nWhat is the full name of conductor Seiji?\tPoland: Mazurek D?browskiego\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Poland: Mazurek D?browskiego) -> Poland: Mazurek D?browskiego (18794ms)\nWhat is the full name of conductor Seiji?\tWest Side Story\" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (West Side Story\" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recording, West Side Story\" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story\" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18794ms)\nWhat is the full name of conductor Seiji?\tPablo de Sarasate\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (Orchestre National de France feat. conductor: Seiji Ozawa, violin: Anne-Sophie Mutter), Artist, Pablo de Sarasate) -> Pablo de Sarasate (18477ms)\nWhat is the full name of conductor Seiji?\tWest Side Story: Symphonic Dances- Finale\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (West Side Story: Symphonic Dances- Finale, Versions, West Side Story\" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story: Symphonic Dances- Finale (18022ms)\nWhat is the full name of conductor Seiji?\tPortugal: A Portuguesa\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Portugal: A Portuguesa, Release, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Portugal: A Portuguesa (18793ms)\nWhat is the full name of conductor Seiji?\tWest Side Story\" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (West Side Story\" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Tracks, West Side Story\" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story\" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18074ms)\nWhat is the full name of conductor Seiji?\tAndorra: El Gran Carlemany\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Andorra: El Gran Carlemany) -> Andorra: El Gran Carlemany (18022ms)\nWhat is the full name of conductor Seiji?\tGloria: III. Domine Deus\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Gloria: III. Domine Deus) -> Gloria: III. Domine Deus (18681ms)\nWhat is the full name of conductor Seiji?\tMonaco: Hymne Mon?gasque\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Monaco: Hymne Mon?gasque) -> Monaco: Hymne Mon?gasque (17914ms)\nWhat is the full name of conductor Seiji?\tCarl Orff\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Carl Orff) -> Carl Orff (18277ms)\nWhat is the full name of conductor Seiji?\tArmenia: ??? ???????? [Mer Hayrenik]\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Armenia: ??? ???????? [Mer Hayrenik], Release, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Armenia: ??? ???????? [Mer Hayrenik] (17914ms)\nWhat is the full name of conductor Seiji?\tManuel de Falla\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Manuel de Falla, Albums, El sombrero de tres picos / El amor brujo (Boston Symphony Orchestra, London Symphony Orchestra feat. conductor: Seiji Ozawa, Garc?a Navarro)) -> Manuel de Falla (18539ms)\nWhat is the full name of conductor Seiji?\tNikolai Rimsky-Korsakov\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Nikolai Rimsky-Korsakov, Albums, Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa)) -> Nikolai Rimsky-Korsakov (18423ms)\nWhat is the full name of conductor Seiji?\tRapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording, Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18477ms)\nWhat is the full name of conductor Seiji?\tUf Dem Anger: Tanz\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Uf Dem Anger: Tanz, Releases, Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Uf Dem Anger: Tanz (18793ms)\nWhat is the full name of conductor Seiji?\tWest Side Story\" Symphonic Dances: \"Somewhere\" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, recording, conductor seijus) -> (West Side Story\" Symphonic Dances: \"Somewhere\" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recording, West Side Story\" Symphonic Dances: \"Somewhere\" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story\" Symphonic Dances: \"Somewhere\" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18477ms)\nWhat is the full name of conductor Seiji?\tPavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, recording, conductor seijus) -> (Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording, Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18422ms)\nWhat is the full name of conductor Seiji?\tMoldova: Limba Noastr?\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Moldova: Limba Noastr?) -> Moldova: Limba Noastr? (18737ms)\nWhat is the full name of conductor Seiji?\tRapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Rapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Rapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18075ms)\nWhat is the full name of conductor Seiji?\tWest Side Story\" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (West Side Story\" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Tracks, West Side Story\" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story\" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18681ms)\nWhat is the full name of conductor Seiji?\tNetherlands: Wilhelmus van Nassouwe\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Netherlands: Wilhelmus van Nassouwe) -> Netherlands: Wilhelmus van Nassouwe (18539ms)\nWhat is the full name of conductor Seiji?\tJohann Sebastian Bach\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Johann Sebastian Bach, Albums, Matth?us Passion (Saito Kinen Orchestra, feat. conductor: Seiji Ozawa)) -> Johann Sebastian Bach (18022ms)\nWhat is the full name of conductor Seiji?\tIII. Cour d'amours: Stetit puella\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Tracks, III. Cour d'amours: Stetit puella) -> III. Cour d'amours: Stetit puella (17968ms)\nWhat is the full name of conductor Seiji?\tMusic from America\t-11.108258030808258\tWhat is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release, $x) -> (West Side Story\" Symphonic Dances: Mambo (Presto) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Release, Music from America) -> Music from America (18793ms)\nWhat is ETA in Spain?\tnon-islamic terror group\t-10.509915444112002\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (ETA in Spain, Instance Of, non-islamic terror group) -> non-islamic terror group (16634ms)\nWhat is ETA in Spain?\tterrorist group\t-10.703449575238603\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (ETA in Spain, Instance Of, terrorist group) -> terrorist group (16634ms)\nWhat is ETA in Spain?\tterrorist organization\t-10.789115899230051\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (ETA in Spain, Instance Of, terrorist organization) -> terrorist organization (16634ms)\nWhat is ETA in Spain?\t24 hours\t-11.186939719723522\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, should advise, $x) -> (Eta, should be advised, 24 hours) -> 24 hours (18062ms)\nWhat is ETA in Spain?\ta public meeting\t-11.428606041826022\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta speak ? -> $x: (eta, speak, $x) -> (ETA. Bishop Belo, spoke at, a public meeting) -> a public meeting (17932ms)\nWhat is ETA in Spain?\tterrorist\t-12.972553333971451\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (ETA in Spain, Instance Of, terrorist) -> terrorist (16789ms)\nWhat is ETA in Spain?\tgroup\t-13.149594614844341\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (Basque separatist group ETA in Spain, Instance Of, group) -> group (16789ms)\nWhat is ETA in Spain?\thealth and safety issues\t-13.18812810885992\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta speak ? -> $x: (eta, speak, $x) -> $x: (eta, pay attention, $x) -> (ETA, paid particular attention to, health and safety issues) -> health and safety issues (19015ms)\nWhat is ETA in Spain?\t1981\t-13.322480901001867\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, torture, $x) -> (ETA member Jos? Arregui, was tortured there in, 1981) -> 1981 (17611ms)\nWhat is ETA in Spain?\tthe documentary film\t-14.14630056203763\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, to relate to, $x) -> (ETA, relates to, the documentary film) -> the documentary film (17611ms)\nWhat is ETA in Spain?\tthe club\t-14.218103904543668\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, to relate to, $x) -> (ETA, are closely related to, the club) -> the club (17611ms)\nWhat is ETA in Spain?\tthe communication\t-14.678841075945094\tWhat is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, to relate to, $x) -> (ETA, analyzed data related to, the communication) -> the communication (17611ms)\nWhat is leukemia?\tHibakusha\t-7.171076249543963\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, include cause of death, leukemia) -> (Hibakusha, Includes causes of death, Leukemia) -> Hibakusha (6810ms)\nWhat is leukemia?\tCancer\t-7.171076249543963\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, include cause of death, leukemia) -> (Cancer, Includes causes of death, Chronic myelogenous leukemia) -> Cancer (6844ms)\nWhat is leukemia?\tchildhood Cancer\t-7.736389498645245\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Leukemia, is the most common type of, childhood Cancer) -> childhood Cancer (6739ms)\nWhat is leukemia?\tLeukemia\t-7.789974869897292\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Acute Myeloid Leukemia, is the type of, Leukemia) -> Leukemia (6739ms)\nWhat is leukemia?\tchildhood cancer\t-8.274113060584316\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Leukemia, is the type of, childhood cancer) -> childhood cancer (6739ms)\nWhat is leukemia?\tblood cancer\t-8.350651757540396\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (G8 Countries Leukemia, is the type of, blood cancer) -> blood cancer (6739ms)\nWhat is leukemia?\tmalignant disease\t-8.534636818037361\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the most common form of, $x) -> (Leukemia, is the most common form of, malignant disease) -> malignant disease (6680ms)\nWhat is leukemia?\ta pigment\t-8.584412136079962\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (a pigment, is a potential drug for treating, leukemia) -> a pigment (6026ms)\nWhat is leukemia?\tThe French researchers\t-9.08222961344675\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (The French researchers, gave the drug to, 133 leukemia patients) -> The French researchers (6026ms)\nWhat is leukemia?\tcancer treatment\t-9.120962098350146\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (cancer treatment, uses drugs to kill, leukemia cells) -> cancer treatment (6026ms)\nWhat is leukemia?\tcancer\t-9.905718758776164\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Acute lymphoblastic leukemia, is the most common type of, cancer) -> cancer (6739ms)\nWhat is leukemia?\tleukemia\t-9.980104518717337\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the most common form of, $x) -> (nonlymphoid leukemia, is the most common form of, leukemia) -> leukemia (6773ms)\nWhat is leukemia?\tthe formation\t-10.14759847163785\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be a by, $x) -> (825 Leukemia, is a disease characterized by, the formation) -> the formation (6026ms)\nWhat is leukemia?\tthe appearance\t-10.162550349268969\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be a by, $x) -> (Leukemia, is a disease characterized by, the appearance) -> the appearance (6026ms)\nWhat is leukemia?\tprevention\t-10.68898197283437\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the best form of, $x) -> (feline leukemia virus, is probably the best form of, prevention) -> prevention (6845ms)\nWhat is leukemia?\tthe behavior\t-11.039158543166455\tWhat is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (the behavior, develop new drugs against, leukemia stem cells) -> the behavior (6026ms)\nWhat is leukemia?\tgrowth hormones\t-11.355922819310866\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (growth hormones, are known to be affected by, leukemia treatment) -> growth hormones (7148ms)\nWhat is leukemia?\tCLL\t-11.398256818337847\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (CLL, is known as, ?hairy-cell leukemia?) -> CLL (7148ms)\nWhat is leukemia?\tblood cells\t-11.4657219116857\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (blood cells, are known as, leukemias) -> blood cells (7149ms)\nWhat is leukemia?\tSeveral chronic leukemia viruses\t-11.580689589012787\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Several chronic leukemia viruses, are known to induce, leukemia) -> Several chronic leukemia viruses (7148ms)\nWhat is leukemia?\tLif receptor\t-11.61397968483757\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Lif receptor, Also known as, Leukemia inhibitory factor receptor) -> Lif receptor (8636ms)\nWhat is leukemia?\tAcute myeloid leukemia\t-11.62127629191528\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Acute myeloid leukemia, Also known as, AML leukemia) -> Acute myeloid leukemia (8635ms)\nWhat is leukemia?\tChronic myelogenous leukemia\t-11.62127629191528\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Chronic myelogenous leukemia, Also known as, Chronic myeloid leukemia) -> Chronic myelogenous leukemia (8635ms)\nWhat is leukemia?\tAcute lymphoblastic leukemia\t-11.62127629191528\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Acute lymphoblastic leukemia, Also known as, Acute lymphocytic leukemia) -> Acute lymphoblastic leukemia (8716ms)\nWhat is leukemia?\tAcute promyelocytic leukemia\t-11.62127629191528\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Acute promyelocytic leukemia, Also known as, acute progranulocytic leukemia) -> Acute promyelocytic leukemia (8635ms)\nWhat is leukemia?\tJuvenile myelomonocytic leukemia\t-11.62127629191528\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Juvenile myelomonocytic leukemia, Also known as, Juvenile Chronic Myeloid Leukemia) -> Juvenile myelomonocytic leukemia (8716ms)\nWhat is leukemia?\tPromyelocytic Leukemia\t-11.659218648719365\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Promyelocytic Leukemia, Also known as, promyelocytic leukemia, inducer of) -> Promyelocytic Leukemia (8717ms)\nWhat is leukemia?\tChronic Leukemia\t-11.659218648719365\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Chronic Leukemia, Also known as, Chronic leukemia) -> Chronic Leukemia (8716ms)\nWhat is leukemia?\tso little\t-11.703995305231599\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (so little, is known about, childhood leukemia) -> so little (7148ms)\nWhat is leukemia?\tB-cell chronic lymphocytic leukemia\t-11.743494460466904\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (B-cell chronic lymphocytic leukemia, Also known as, Lymphocytic leukemia) -> B-cell chronic lymphocytic leukemia (8732ms)\nWhat is leukemia?\tT-cell prolymphocytic leukemia\t-11.743494460466904\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (T-cell prolymphocytic leukemia, Also known as, T-cell lymphocytic leukemia) -> T-cell prolymphocytic leukemia (8732ms)\nWhat is leukemia?\tLeukemia & Lymphoma Society of Canada\t-11.743494460466904\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Leukemia & Lymphoma Society of Canada, Also known as, Leukemia & Lymphoma Society Inc) -> Leukemia & Lymphoma Society of Canada (8877ms)\nWhat is leukemia?\tleukemia inhibitory factor receptor alpha\t-11.743494460466904\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (leukemia inhibitory factor receptor alpha, Also known as, leukemia inhibitory factor receptor) -> leukemia inhibitory factor receptor alpha (8731ms)\nWhat is leukemia?\tmembrane metallo-endopeptidase (neutral endopeptidase, enkephalinase)\t-11.743494460466904\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase), Also known as, common acute lymphocytic leukemia antigen) -> membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase) (8878ms)\nWhat is leukemia?\tAcute myeloblastic leukemia without maturation\t-11.743494460466904\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Acute myeloblastic leukemia without maturation, Also known as, Acute myeloblastic leukemia) -> Acute myeloblastic leukemia without maturation (8716ms)\nWhat is leukemia?\tRefractory anemia with excess of blasts\t-11.743494460466904\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Refractory anemia with excess of blasts, Also known as, Smoldering leukemia) -> Refractory anemia with excess of blasts (8877ms)\nWhat is leukemia?\tThe Leukemia and Lymphoma Society\t-11.743494460466904\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (The Leukemia and Lymphoma Society, Also known as, Leukemia & Lymphoma Society Inc) -> The Leukemia and Lymphoma Society (8732ms)\nWhat is leukemia?\tBenzene-induced Leukemia Benzene\t-11.76757943658355\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Benzene-induced Leukemia Benzene, is known to cause, leukemia) -> Benzene-induced Leukemia Benzene (7148ms)\nWhat is leukemia?\tBlood most cancers\t-11.774946103673559\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Blood most cancers, is known as, leukemia) -> Blood most cancers (7161ms)\nWhat is leukemia?\tBenzene\t-11.835545254996493\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Benzene, is known to cause, leukemia) -> Benzene (7161ms)\nWhat is leukemia?\tPCP\t-11.874821876619572\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (PCP, were, leukemia) -> PCP (11245ms)\nWhat is leukemia?\tRadioactive thorium\t-11.945176714253071\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Radioactive thorium, is known to cause, leukemia) -> Radioactive thorium (7161ms)\nWhat is leukemia?\tChildhood leukemia\t-11.946704967581095\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Childhood leukemia, Also known as, Juvenile Leukemia) -> Childhood leukemia (8877ms)\nWhat is leukemia?\tLymphoid leukemia\t-11.946704967581095\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Lymphoid leukemia, Also known as, Lymphocytic leukemia) -> Lymphoid leukemia (8877ms)\nWhat is leukemia?\tCol . Qadhafi\t-11.953241202067888\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Col . Qadhafi, is also known to have had, leukemia) -> Col . Qadhafi (7162ms)\nWhat is leukemia?\tChronic Lymphocytic Leukemia\t-11.969419868837514\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Chronic Lymphocytic Leukemia, is, leukemia) -> Chronic Lymphocytic Leukemia (11245ms)\nWhat is leukemia?\tAcute Myelogenous Leukemia\t-11.969419868837514\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Acute Myelogenous Leukemia, is, leukemia) -> Acute Myelogenous Leukemia (11245ms)\nWhat is leukemia?\tAbl\t-12.051411279146217\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Abl, Also known as, Abelson murine leukemia oncogene) -> Abl (8877ms)\nWhat is leukemia?\thigh concentrations\t-12.053128305907267\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (high concentrations, is known to cause, leukemia) -> high concentrations (7173ms)\nWhat is leukemia?\tacute lymphoblastic leukemia\t-12.057632880692479\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, acute lymphoblastic leukemia) -> acute lymphoblastic leukemia (11245ms)\nWhat is leukemia?\tcytotoxic drugs\t-12.103428310851395\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (cytotoxic drugs, are known causes of, acute leukemia) -> cytotoxic drugs (7173ms)\nWhat is leukemia?\tStem cell transplant\t-12.11932067994822\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Stem cell transplant, is also the only known cure for, leukemia) -> Stem cell transplant (7173ms)\nWhat is leukemia?\tARHGEF12\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (ARHGEF12, Also known as, Leukemia-associated Rho GEF) -> ARHGEF12 (8892ms)\nWhat is leukemia?\tRpn8\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Rpn8, Also known as, Moloney leukemia virus 34) -> Rpn8 (8908ms)\nWhat is leukemia?\tmyeloid cell leukemia sequence 1 (BCL2-related)\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (myeloid cell leukemia sequence 1 (BCL2-related), Also known as, myeloid cell leukemia sequence 1) -> myeloid cell leukemia sequence 1 (BCL2-related) (8892ms)\nWhat is leukemia?\tMKL/myocardin-like 2\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (MKL/myocardin-like 2, Also known as, megakaryoblastic leukemia 2 protein) -> MKL/myocardin-like 2 (8892ms)\nWhat is leukemia?\tribosomal protein L34\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (ribosomal protein L34, Also known as, leukemia-associated protein) -> ribosomal protein L34 (8907ms)\nWhat is leukemia?\tB-cell CLL/lymphoma 3\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (B-cell CLL/lymphoma 3, Also known as, chronic lymphatic leukemia protein) -> B-cell CLL/lymphoma 3 (8892ms)\nWhat is leukemia?\tmegakaryoblastic leukemia (translocation) 1\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (megakaryoblastic leukemia (translocation) 1, Also known as, megakaryoblastic leukemia 1 protein) -> megakaryoblastic leukemia (translocation) 1 (8907ms)\nWhat is leukemia?\tCD7 molecule\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (CD7 molecule, Also known as, T-cell leukemia antigen) -> CD7 molecule (8907ms)\nWhat is leukemia?\tzinc finger and BTB domain containing 16\t-12.13605192124764\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (zinc finger and BTB domain containing 16, Also known as, promyelocytic leukemia zinc finger protein) -> zinc finger and BTB domain containing 16 (8907ms)\nWhat is leukemia?\tinterested Rosenberg\t-12.145407704906278\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (interested Rosenberg, was, leukemia) -> interested Rosenberg (11245ms)\nWhat is leukemia?\t2. What\t-12.174771963499087\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (2. What, is, leukemia) -> 2. What (11245ms)\nWhat is leukemia?\thepatitis B\t-12.211762106602071\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, hepatitis B) -> hepatitis B (11245ms)\nWhat is leukemia?\t75 years\t-12.213442645945547\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, was, 75 years) -> 75 years (11245ms)\nWhat is leukemia?\tacute myeloid leukemia\t-12.268956171073897\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, are, acute myeloid leukemia) -> acute myeloid leukemia (11270ms)\nWhat is leukemia?\tNaif\t-12.39396283954749\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Naif, is known to suffer from, leukemia) -> Naif (7174ms)\nWhat is leukemia?\tbone cancer\t-12.423922555993464\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (bone cancer, is, leukemia) -> bone cancer (11270ms)\nWhat is leukemia?\tLymphoma\t-12.435212811433704\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Lymphoma, Also known as, Leukemia lymphoma) -> Lymphoma (8921ms)\nWhat is leukemia?\tnon-disease physiological condition\t-12.500011994017301\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (Leukemia, is a, non-disease physiological condition) -> non-disease physiological condition (11270ms)\nWhat is leukemia?\t30 %\t-12.554791050808898\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the definition of leukemia ? -> $x: ($x, be the definition of, leukemia) -> (30 %, is the definition of, leukemia) -> 30 % (7589ms)\nWhat is leukemia?\tMore About\t-12.564492415537538\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (More About, Is, Leukemia ?) -> More About (11270ms)\nWhat is leukemia?\tAcute Lymphocytic Leukemia\t-12.593644604335509\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Acute Lymphocytic Leukemia, is, leukemia) -> Acute Lymphocytic Leukemia (11270ms)\nWhat is leukemia?\tChronic Myelogenous Leukemia\t-12.61404572319946\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Chronic Myelogenous Leukemia, is, leukemia) -> Chronic Myelogenous Leukemia (11270ms)\nWhat is leukemia?\tGale Leukemia\t-12.614898909788863\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Gale Leukemia, Editions, Gale Leukemia) -> Gale Leukemia (15498ms)\nWhat is leukemia?\tChicago\t-12.66150808397305\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Chicago, is, leukemia) -> Chicago (11270ms)\nWhat is leukemia?\tan inspiration\t-12.693709119706913\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (Leukemia, are, an inspiration) -> an inspiration (11270ms)\nWhat is leukemia?\tViagra\t-12.699528626243154\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Viagra, are, leukemia) -> Viagra (11291ms)\nWhat is leukemia?\tSmoking\t-12.702352852239098\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Smoking, is a known risk factor for, leukemia) -> Smoking (7173ms)\nWhat is leukemia?\tdiscussion/written assessment\t-12.717112084193566\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (discussion/written assessment, is, leukemia) -> discussion/written assessment (11291ms)\nWhat is leukemia?\ta poor prognostic sign\t-12.799904212823886\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, a poor prognostic sign) -> a poor prognostic sign (11291ms)\nWhat is leukemia?\tUnspecified monocytic leukemia\t-12.821467036383638\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Monocytic leukemia, Includes classifications, Unspecified monocytic leukemia) -> Unspecified monocytic leukemia (17213ms)\nWhat is leukemia?\tUnspecified lymphoid leukemia\t-12.821467036383638\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Lymphoid leukemia, Includes classifications, Unspecified lymphoid leukemia) -> Unspecified lymphoid leukemia (17213ms)\nWhat is leukemia?\tUnspecified myeloid leukemia\t-12.821467036383638\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Myeloid leukemia, Includes classifications, Unspecified myeloid leukemia) -> Unspecified myeloid leukemia (17097ms)\nWhat is leukemia?\tAcute monocytic leukemia\t-12.821467036383638\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Monocytic leukemia, Includes classifications, Acute monocytic leukemia) -> Acute monocytic leukemia (17213ms)\nWhat is leukemia?\tChronic monocytic leukemia\t-12.821467036383638\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Monocytic leukemia, Includes Diseases, Chronic monocytic leukemia) -> Chronic monocytic leukemia (17097ms)\nWhat is leukemia?\tOthers general types\t-12.843280324707369\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Others general types, are, leukemia) -> Others general types (11291ms)\nWhat is leukemia?\tLeukemia Sourcebook\t-12.858240755830453\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Leukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series), Edition Of, Leukemia Sourcebook) -> Leukemia Sourcebook (15680ms)\nWhat is leukemia?\tMartin Dunitz\t-12.858240755830453\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Martin Dunitz, Book editions published, Leukemia and Lymphoma Reviews 6 (Leukemia & Lymphoma Reviews Series)) -> Martin Dunitz (15681ms)\nWhat is leukemia?\tHuman Leukemias\t-12.858240755830453\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Human Leukemias, Editions, Human Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology)) -> Human Leukemias (15497ms)\nWhat is leukemia?\tLeukemia Treatment\t-12.858240755830453\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Leukemia Treatment, Edition Of, Leukemia Treatment) -> Leukemia Treatment (15681ms)\nWhat is leukemia?\tAcute Leukemia\t-12.859409393187724\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Leukemia, Includes classifications, Acute Leukemia) -> Acute Leukemia (18026ms)\nWhat is leukemia?\t70\t-12.85961422468964\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, 70) -> 70 (11291ms)\nWhat is leukemia?\tKey evidence-based links\t-12.87973130560443\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Key evidence-based links, is, leukemia) -> Key evidence-based links (11291ms)\nWhat is leukemia?\tNormal and leukemic hematopoiesis\t-12.891761075173328\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Normal and leukemic hematopoiesis, Are, leukemias) -> Normal and leukemic hematopoiesis (11291ms)\nWhat is leukemia?\tChronic Leukemia in Remission\t-12.8926089553913\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Chronic Leukemia, Includes classifications, Chronic Leukemia in Remission) -> Chronic Leukemia in Remission (18026ms)\nWhat is leukemia?\tAcute Leukemia in Remission\t-12.8926089553913\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Acute Leukemia, Includes classifications, Acute Leukemia in Remission) -> Acute Leukemia in Remission (18026ms)\nWhat is leukemia?\tthe U-M Exploratory Center\t-12.90816857581034\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, the U-M Exploratory Center) -> the U-M Exploratory Center (11291ms)\nWhat is leukemia?\ta lot\t-12.930454858105332\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (a lot, is, leukemia) -> a lot (11356ms)\nWhat is leukemia?\tPaddington DC ? Love\t-12.931093170325365\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Paddington DC ? Love, is, Leukemia) -> Paddington DC ? Love (11355ms)\nWhat is leukemia?\tCancer and leukemia: an alternative view\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Cancer and leukemia, Editions, Cancer and leukemia: an alternative view) -> Cancer and leukemia: an alternative view (19169ms)\nWhat is leukemia?\tChronic leukemia: approach to diagnosis\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Chronic leukemia, Editions, Chronic leukemia: approach to diagnosis) -> Chronic leukemia: approach to diagnosis (19123ms)\nWhat is leukemia?\tLeukemia diagnosis: a guide to the FAB classification\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Leukemia diagnosis: a guide to the FAB classification, Edition Of, Leukemia diagnosis) -> Leukemia diagnosis: a guide to the FAB classification (18266ms)\nWhat is leukemia?\tBiological Response Modifiers-Leukemias and Lymphomas\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Biological Response Modifiers-Leukemias and Lymphomas, Editions, Biological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings)) -> Biological Response Modifiers-Leukemias and Lymphomas (19123ms)\nWhat is leukemia?\tI'm Still Me, Coping with Leukemia\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (I'm Still Me, Coping with Leukemia, Editions, I'm Still Me, Coping with Leukemia (Dr. Wellbook, 7)) -> I'm Still Me, Coping with Leukemia (16430ms)\nWhat is leukemia?\tLeukemia (Understanding Illness (Mankato, Minn.).)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Leukemia (Understanding Illness (Mankato, Minn.).), Edition Of, Leukemia (Understanding Illness) -> Leukemia (Understanding Illness (Mankato, Minn.).) (18266ms)\nWhat is leukemia?\tMonocytes, monocytosis, and monocytic leukemia\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Monocytes, monocytosis, and monocytic leukemia, Edition Of, Monocytes, monocytosis, and monocytic leukemia) -> Monocytes, monocytosis, and monocytic leukemia (19169ms)\nWhat is leukemia?\tHuman T-Cell Leukemia Lymphoma Virus\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Human T-Cell Leukemia Lymphoma Virus, Editions, Human T-Cell Leukemia Lymphoma Virus) -> Human T-Cell Leukemia Lymphoma Virus (19029ms)\nWhat is leukemia?\tCancer and leukemia\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Cancer and leukemia: an alternative view, Edition Of, Cancer and leukemia) -> Cancer and leukemia (19029ms)\nWhat is leukemia?\tCell-virus interactions during retroviral infection\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Cell-virus interactions during retroviral infection : the role of mitosis in murine leukemia virus integration, Edition Of, Cell-virus interactions during retroviral infection) -> Cell-virus interactions during retroviral infection (18266ms)\nWhat is leukemia?\tAspects of Leukemia Treatment With Special Reference to Drug Development: A special issue of the journal Hematology Reviews and Communications (Hematology Reviews and Communications,)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Aspects of Leukemia Treatment With Special Reference to Drug Development: A special issue of the journal Hematology Reviews and Communications (Hematology Reviews and Communications,), Edition Of, Aspects of Leukemia Treatment With Special Reference to Drug Development) -> Aspects of Leukemia Treatment With Special Reference to Drug Development: A special issue of the journal Hematology Reviews and Communications (Hematology Reviews and Communications,) (19169ms)\nWhat is leukemia?\tRoentgenology of the Lymphomas and Leukemias\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Roentgenology of the Lymphomas and Leukemias: A Seminars in Roentgenology Reprint, July and October 1980, Edition Of, Roentgenology of the Lymphomas and Leukemias) -> Roentgenology of the Lymphomas and Leukemias (18215ms)\nWhat is leukemia?\tLeukemia, cytology and cytochemistry\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Leukemia, cytology and cytochemistry, Edition Of, Leukemia, cytology and cytochemistry) -> Leukemia, cytology and cytochemistry (18982ms)\nWhat is leukemia?\tHuman T-cell Leukemia Vir (Current Topics in Microbiology and Immunology)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Human T-cell Leukemia Vir, Editions, Human T-cell Leukemia Vir (Current Topics in Microbiology and Immunology)) -> Human T-cell Leukemia Vir (Current Topics in Microbiology and Immunology) (19169ms)\nWhat is leukemia?\tVaccine Intervention Against Virus-Induced Tumors\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Vaccine Intervention Against Virus-Induced Tumors, Editions, Vaccine Intervention Against Virus-Induced Tumors (Leukemia and Lymphoma Research)) -> Vaccine Intervention Against Virus-Induced Tumors (18981ms)\nWhat is leukemia?\tDevelopment, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Development, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia, Edition Of, Development, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia) -> Development, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia (19123ms)\nWhat is leukemia?\tAcute leukemia: difficult, controversial, automated analysis\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Acute leukemia: difficult, controversial, automated analysis, Edition Of, Acute leukemia) -> Acute leukemia: difficult, controversial, automated analysis (19375ms)\nWhat is leukemia?\tAcute leukemia: approach to diagnosis\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Acute leukemia: approach to diagnosis, Edition Of, Acute leukemia) -> Acute leukemia: approach to diagnosis (19169ms)\nWhat is leukemia?\tBiological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Biological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings), Edition Of, Biological Response Modifiers-Leukemias and Lymphomas) -> Biological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings) (19375ms)\nWhat is leukemia?\tLeukemia (Health Alert\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Leukemia (Health Alert, Editions, Leukemia (Health Alert (Benchmark Books).)) -> Leukemia (Health Alert (18982ms)\nWhat is leukemia?\tLeukemia (Understanding Illness\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Leukemia (Understanding Illness (Mankato, Minn.).), Edition Of, Leukemia (Understanding Illness) -> Leukemia (Understanding Illness (19029ms)\nWhat is leukemia?\tProtein microarray technology for profiling signaling patwhays [sic]\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Protein microarray technology for profiling signaling patwhays [sic] : insights into pro-oncogenic notch signaling in T cell acute lymphoblastic leukemia, Edition Of, Protein microarray technology for profiling signaling patwhays [sic]) -> Protein microarray technology for profiling signaling patwhays [sic] (18314ms)\nWhat is leukemia?\tLeukemia (Life Sciences Research Reports)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Leukemia, Editions, Leukemia (Life Sciences Research Reports)) -> Leukemia (Life Sciences Research Reports) (18216ms)\nWhat is leukemia?\tLeukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Leukemia Sourcebook, Editions, Leukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series)) -> Leukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series) (19375ms)\nWhat is leukemia?\tA geneticist studies leukemia\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (A geneticist studies leukemia, Editions, A geneticist studies leukemia) -> A geneticist studies leukemia (19123ms)\nWhat is leukemia?\tHuman T-cell Leukemia Vir\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Human T-cell Leukemia Vir (Current Topics in Microbiology and Immunology), Edition Of, Human T-cell Leukemia Vir) -> Human T-cell Leukemia Vir (18266ms)\nWhat is leukemia?\tCoping With Leukemia\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Coping With Leukemia (Coping), Edition Of, Coping With Leukemia) -> Coping With Leukemia (18938ms)\nWhat is leukemia?\tAspects of Leukemia Treatment With Special Reference to Drug Development\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Aspects of Leukemia Treatment With Special Reference to Drug Development: A special issue of the journal Hematology Reviews and Communications (Hematology Reviews and Communications,), Edition Of, Aspects of Leukemia Treatment With Special Reference to Drug Development) -> Aspects of Leukemia Treatment With Special Reference to Drug Development (18982ms)\nWhat is leukemia?\tLeukemia (Health Alert (Benchmark Books).)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Leukemia (Health Alert, Editions, Leukemia (Health Alert (Benchmark Books).)) -> Leukemia (Health Alert (Benchmark Books).) (19375ms)\nWhat is leukemia?\tStructure and function of the Moloney murine leukemia virus integration complex\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Structure and function of the Moloney murine leukemia virus integration complex, Edition Of, Structure and function of the Moloney murine leukemia virus integration complex) -> Structure and function of the Moloney murine leukemia virus integration complex (19375ms)\nWhat is leukemia?\tCoping With Leukemia (Coping)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Coping With Leukemia (Coping), Edition Of, Coping With Leukemia) -> Coping With Leukemia (Coping) (19375ms)\nWhat is leukemia?\tThe David arcane\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (The David arcane: [elegy on the death of David Hirschman, fotographer, musician, and poet, taken by leukemia at 25, March 2, 1982], Edition Of, The David arcane) -> The David arcane (19169ms)\nWhat is leukemia?\tNo safe place\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (No safe place : toxic waste, leukemia, and community action, Edition Of, No safe place) -> No safe place (19029ms)\nWhat is leukemia?\tChildhood leukemia: a guide for families, friends & caregivers\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Childhood leukemia: a guide for families, friends & caregivers, Edition Of, Childhood leukemia) -> Childhood leukemia: a guide for families, friends & caregivers (19169ms)\nWhat is leukemia?\tHuman Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Human Leukemias, Editions, Human Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology)) -> Human Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology) (19375ms)\nWhat is leukemia?\tRecent Advances in Leukemia and Lymphoma\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Recent Advances in Leukemia and Lymphoma (Ucla Symposia on Molecular and Cellular Biology, New Ser, Vol 61), Edition Of, Recent Advances in Leukemia and Lymphoma) -> Recent Advances in Leukemia and Lymphoma (19123ms)\nWhat is leukemia?\tEpidemiology of Leukemia and Lymphoma\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Epidemiology of Leukemia and Lymphoma: Report of the Leukemia Research Fund International Workshop, Oxford, Uk, September 1984, Edition Of, Epidemiology of Leukemia and Lymphoma) -> Epidemiology of Leukemia and Lymphoma (19123ms)\nWhat is leukemia?\tMolecular characterization of RadLV (Radiation Leukemia Virus)\t-12.942516567577991\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Molecular characterization of RadLV (Radiation Leukemia Virus), Edition Of, Molecular characterization of RadLV (Radiation Leukemia Virus)) -> Molecular characterization of RadLV (Radiation Leukemia Virus) (19375ms)\nWhat is leukemia?\tCauses & Treatment Search\t-12.971830839926014\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Causes & Treatment Search, Is, Leukemia) -> Causes & Treatment Search (11355ms)\nWhat is leukemia?\tincreased lymphocytes\t-12.987957257555209\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (increased lymphocytes, is, leukemia) -> increased lymphocytes (11355ms)\nWhat is leukemia?\tsuch radiation\t-12.99945183887635\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (such radiation, are, leukemias) -> such radiation (11355ms)\nWhat is leukemia?\tunderlying disease\t-12.99945183887635\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (underlying disease, is, leukemia) -> underlying disease (11356ms)\nWhat is leukemia?\tLeukemias\t-13.00828634345732\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Leukemias, is, leukemia) -> Leukemias (11355ms)\nWhat is leukemia?\tACUTE LEUKEMIA TREATMENT INFORMATION\t-13.011476765841259\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (ACUTE LEUKEMIA TREATMENT INFORMATION, is, Leukemia) -> ACUTE LEUKEMIA TREATMENT INFORMATION (11355ms)\nWhat is leukemia?\tMalaysia | Beacon Hospital\t-13.019969737103477\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Malaysia | Beacon Hospital, Is, Leukemia) -> Malaysia | Beacon Hospital (14316ms)\nWhat is leukemia?\t527\t-13.025412089828924\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (527, were, leukemias) -> 527 (14316ms)\nWhat is leukemia?\tblood tumor\t-13.064982211311602\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (blood tumor, is, Leukemia) -> blood tumor (14316ms)\nWhat is leukemia?\tDr. Mauro?s clinical focus\t-13.070860981703909\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Dr. Mauro?s clinical focus, is, leukemia) -> Dr. Mauro?s clinical focus (14316ms)\nWhat is leukemia?\tsolvent exposure\t-13.104735958993766\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (solvent exposure, are, leukemia) -> solvent exposure (14316ms)\nWhat is leukemia?\tpediatric cancer\t-13.104735958993766\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (pediatric cancer, are, leukemia) -> pediatric cancer (14316ms)\nWhat is leukemia?\t400 %\t-13.113533974244437\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, 400 %) -> 400 % (14316ms)\nWhat is leukemia?\tchildhood cancers\t-13.143615206805674\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (childhood cancers, are, leukemias) -> childhood cancers (14401ms)\nWhat is leukemia?\tpesticide exposure\t-13.176100823795899\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (pesticide exposure, are, leukemia) -> pesticide exposure (14400ms)\nWhat is leukemia?\t99 % sure\t-13.194414793617808\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (99 % sure, is, leukemia) -> 99 % sure (14400ms)\nWhat is leukemia?\t0 to 14 years\t-13.26398198521737\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (0 to 14 years, are, leukemia) -> 0 to 14 years (14400ms)\nWhat is leukemia?\ta cancer originating\t-13.345926814475838\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (Leukemia, is, a cancer originating) -> a cancer originating (14400ms)\nWhat is leukemia?\tPCI\t-13.346739176714237\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, do, $x) -> (leukemia treatment, do have a component of, PCI) -> PCI (14400ms)\nWhat is leukemia?\tnon-users\t-13.34723063206954\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, were, non-users) -> non-users (14401ms)\nWhat is leukemia?\tSeattle WA 98105\t-13.348757164703915\tWhat is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Seattle WA 98105, Is, Leukemia) -> Seattle WA 98105 (14400ms)\nWhat is leukemia?\tbasophils\t-13.56067885719027\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (basophils, is known as, myelogenous leukemia) -> basophils (7185ms)\nWhat is leukemia?\tbenzene\t-13.690618988669804\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (benzene, has been known to cause, leukemia) -> benzene (7185ms)\nWhat is leukemia?\tthe human system\t-13.740301377367652\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (the human system, is known to cause, leukemia) -> the human system (7185ms)\nWhat is leukemia?\tThe virus XMRV\t-13.740380879364352\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (The virus XMRV, was previously known to cause, leukemia) -> The virus XMRV (7196ms)\nWhat is leukemia?\taging\t-13.87645643448544\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (aging, is even known to treat, leukemia cells) -> aging (7196ms)\nWhat is leukemia?\tquestion\t-14.24700784824979\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (question, is known as, acute myeloid leukemia) -> question (7196ms)\nWhat is leukemia?\tsoon their organization\t-14.254130788038083\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (soon their organization, became known as, the Leukemia Society) -> soon their organization (9068ms)\nWhat is leukemia?\thandphones\t-14.482112992048933\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (handphones, is known to cause, cancer and leukemia) -> handphones (7196ms)\nWhat is leukemia?\tphysical challenge\t-14.73728989426538\tWhat is leukemia? -> what [ be leukemia ] ? -> what bring about be leukemia ? -> $x: ($x, bring about be, leukemia) -> $x: ($x, bring about, leukemia) -> (physical challenge, brought about by, acute leukemia) -> physical challenge (9083ms)\nWhat is leukemia?\tGoodman\t-14.78821935830655\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Goodman, had already known of, his leukemia) -> Goodman (9083ms)\nWhat is leukemia?\tblood cancer cells\t-14.969588309163091\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (blood cancer cells, known as, chronic monocytic myeloid leukemia) -> blood cancer cells (9083ms)\nWhat is leukemia?\ta cancer\t-14.979904774532777\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a cancer, known as, acute myeloid leukemia) -> a cancer (9083ms)\nWhat is leukemia?\ta virus\t-14.979904774532777\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a virus, known as, the feline leukemia virus) -> a virus (9083ms)\nWhat is leukemia?\ta type of leukemia\t-14.985354932798394\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a type of leukemia, known as, chronic myelogenous leukemia) -> a type of leukemia (9164ms)\nWhat is leukemia?\ta disease\t-14.993203355407445\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a disease, known as, Acute Myelogenous Leukemia) -> a disease (9164ms)\nWhat is leukemia?\ta chemical\t-15.60412951003077\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a chemical, known to, cause leukemia) -> a chemical (9164ms)\nWhat is leukemia?\tan aircraft fuel\t-15.991842960750104\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (an aircraft fuel, known to, cause leukemia) -> an aircraft fuel (9179ms)\nWhat is leukemia?\tpesticides\t-16.011475160385963\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (pesticides, have known links to, childhood and adult leukemia) -> pesticides (9179ms)\nWhat is leukemia?\tthe oncologists\t-16.193654568358255\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (the oncologists, know more about, leukemia) -> the oncologists (9194ms)\nWhat is leukemia?\tthe society\t-16.36872574197406\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (the society, became known as, the Leukemia Society) -> the society (9193ms)\nWhat is leukemia?\tthe form of leukemia\t-16.819357121780516\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (the form of leukemia, known as, acute myeloid leukemia) -> the form of leukemia (9193ms)\nWhat is leukemia?\tthe blood cancer\t-17.436935992490344\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (the blood cancer, known as, leukemia) -> the blood cancer (9194ms)\nWhat is leukemia?\tviruses\t-17.543086210174557\tWhat is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (viruses, known as, murine leukemia viruses) -> viruses (9208ms)\nWho has employed Steffen?\tpassengers\t-3.600630506005919\tWho has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, have be describe, Steffen) -> (passengers, has been described by, Lincoln Steffens) -> passengers (6880ms)\nWho has employed Steffen?\tL?ngslens bog\t-3.6192973369248898\tWho has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, have translate, Steffen) -> (L?ngslens bog, has been translated by, Steffen Brandt) -> L?ngslens bog (7252ms)\nWho has employed Steffen?\tthe South Carolina Highway Patrol\t-4.532962331992384\tWho has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: (Steffen, be hire by, $x) -> (Steffen, was hired by, the South Carolina Highway Patrol) -> the South Carolina Highway Patrol (7106ms)\nWho has employed Steffen?\tSchwarz\t-4.870179921537016\tWho has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, have train, Steffen) -> (Schwarz, has trained with, Steffen Peters) -> Schwarz (7011ms)\nWho has employed Steffen?\tWorldchanging.com\t-5.73382448094244\tWho has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, employ, steffen) -> $x: ($x, be be run, steffen) -> (Worldchanging.com, is a blog run by, its co-founder Alex Steffen) -> Worldchanging.com (7729ms)\nWho has employed Steffen?\tThe vocals\t-6.312079710849428\tWho has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, take care, Steffen) -> (The vocals, will be taken care of by, Steffen Kummerer) -> The vocals (7031ms)\nWho has employed Steffen?\tThe camp\t-7.581973863151289\tWho has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, employ, steffen) -> $x: ($x, be be run, steffen) -> (The camp, is now run by, Dr. Koni Steffen) -> The camp (7729ms)\nWhat is titanium?\twell-known character\t-5.097394480115493\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, well-known character) -> well-known character (5718ms)\nWhat is titanium?\ttransition metal catalyst\t-5.20945027454837\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, transition metal catalyst) -> transition metal catalyst (5718ms)\nWhat is titanium?\trefractory metal\t-5.2140524768575265\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, refractory metal) -> refractory metal (5718ms)\nWhat is titanium?\tmetallic material\t-5.219417097662503\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, metallic material) -> metallic material (5719ms)\nWhat is titanium?\ttype of transition metal\t-5.299496534111638\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, type of transition metal) -> type of transition metal (5718ms)\nWhat is titanium?\taid\t-5.331130249810624\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, aid) -> aid (5718ms)\nWhat is titanium?\tpremium quality raw material\t-5.3365446519403905\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, premium quality raw material) -> premium quality raw material (5736ms)\nWhat is titanium?\tsuitable material\t-5.338798284115955\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, suitable material) -> suitable material (5737ms)\nWhat is titanium?\tinorganic material\t-5.395189638147544\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, inorganic material) -> inorganic material (5737ms)\nWhat is titanium?\tshape memory alloy\t-5.409972322242238\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, shape memory alloy) -> shape memory alloy (5736ms)\nWhat is titanium?\textremely strong yet lightweight metal\t-5.4290801189126014\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, extremely strong yet lightweight metal) -> extremely strong yet lightweight metal (5736ms)\nWhat is titanium?\textraordinary denture prosthesis material\t-5.469852487468907\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, extraordinary denture prosthesis material) -> extraordinary denture prosthesis material (5737ms)\nWhat is titanium?\thard refractory-like material\t-5.469852487468907\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, hard refractory-like material) -> hard refractory-like material (5866ms)\nWhat is titanium?\ttransition element\t-5.470896516216498\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, transition element) -> transition element (5867ms)\nWhat is titanium?\tcommon material\t-5.488945092338408\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, common material) -> common material (5866ms)\nWhat is titanium?\tlovely frame material\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, lovely frame material) -> lovely frame material (5896ms)\nWhat is titanium?\tweakly magnetic metal\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, weakly magnetic metal) -> weakly magnetic metal (5895ms)\nWhat is titanium?\tsuperb heating substance\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, superb heating substance) -> superb heating substance (5895ms)\nWhat is titanium?\tsubstantially biocompatible material\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, substantially biocompatible material) -> substantially biocompatible material (5895ms)\nWhat is titanium?\tsingle such steel\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, single such steel) -> single such steel (5895ms)\nWhat is titanium?\twonderful lightweight metal\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, wonderful lightweight metal) -> wonderful lightweight metal (5867ms)\nWhat is titanium?\tunworkable precious metal\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, unworkable precious metal) -> unworkable precious metal (5896ms)\nWhat is titanium?\tincredibly tough metal\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, incredibly tough metal) -> incredibly tough metal (5867ms)\nWhat is titanium?\tspecial engineering material\t-5.505625684056914\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, special engineering material) -> special engineering material (5866ms)\nWhat is titanium?\tessential trace element\t-5.5095426043239675\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, essential trace element) -> essential trace element (5915ms)\nWhat is titanium?\tlustrous, hard, silvery, gray, light metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, lustrous, hard, silvery, gray, light metal) -> lustrous, hard, silvery, gray, light metal (6884ms)\nWhat is titanium?\tstrong and anti-corrosive metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong and anti-corrosive metal) -> strong and anti-corrosive metal (6842ms)\nWhat is titanium?\tnon-toxic silvery white metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, non-toxic silvery white metal) -> non-toxic silvery white metal (5915ms)\nWhat is titanium?\timportant inorganic functional material\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, important inorganic functional material) -> important inorganic functional material (6885ms)\nWhat is titanium?\tsolid, white, lustrous metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, solid, white, lustrous metal) -> solid, white, lustrous metal (6870ms)\nWhat is titanium?\tobject-oriented, explicitly parallel programming language\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, object-oriented, explicitly parallel programming language) -> object-oriented, explicitly parallel programming language (5960ms)\nWhat is titanium?\tlight, extremely durable metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, extremely durable metal) -> light, extremely durable metal (5960ms)\nWhat is titanium?\tstrong, corrosion-resistant, lustrous metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, corrosion-resistant, lustrous metal) -> strong, corrosion-resistant, lustrous metal (6884ms)\nWhat is titanium?\tlight and solid material\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light and solid material) -> light and solid material (5960ms)\nWhat is titanium?\tlight weight, noncorrosive, high strength-to-weight metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light weight, noncorrosive, high strength-to-weight metal) -> light weight, noncorrosive, high strength-to-weight metal (5915ms)\nWhat is titanium?\tsilver-gray light metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, silver-gray light metal) -> silver-gray light metal (5960ms)\nWhat is titanium?\tmember of the family of reactive metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, member of the family of reactive metal) -> member of the family of reactive metal (6842ms)\nWhat is titanium?\tpretty high tech material\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, pretty high tech material) -> pretty high tech material (5915ms)\nWhat is titanium?\tlight, durable metal alloy\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, durable metal alloy) -> light, durable metal alloy (5960ms)\nWhat is titanium?\ttough and light metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, tough and light metal) -> tough and light metal (6884ms)\nWhat is titanium?\tstrong, low-density, highly corrosion-resistant, white metallic element\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, low-density, highly corrosion-resistant, white metallic element) -> strong, low-density, highly corrosion-resistant, white metallic element (6885ms)\nWhat is titanium?\tstrong, light, corrosion resistant metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, light, corrosion resistant metal) -> strong, light, corrosion resistant metal (6842ms)\nWhat is titanium?\tlight, indestructible, still relatively expensive material\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, indestructible, still relatively expensive material) -> light, indestructible, still relatively expensive material (6842ms)\nWhat is titanium?\tnewsletter publishing Covered Call position\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, newsletter publishing Covered Call position) -> newsletter publishing Covered Call position (5918ms)\nWhat is titanium?\tstrong dark black block\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong dark black block) -> strong dark black block (6870ms)\nWhat is titanium?\tstrong, hard, and lightweight material\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, hard, and lightweight material) -> strong, hard, and lightweight material (6870ms)\nWhat is titanium?\tlight, strong and lustrous transition metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, strong and lustrous transition metal) -> light, strong and lustrous transition metal (6870ms)\nWhat is titanium?\tultra light yet very strong metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, ultra light yet very strong metal) -> ultra light yet very strong metal (6842ms)\nWhat is titanium?\tmodern and unique medium\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, modern and unique medium) -> modern and unique medium (6870ms)\nWhat is titanium?\tstrong, yet light, metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, yet light, metal) -> strong, yet light, metal (5915ms)\nWhat is titanium?\tstrong, lightweight, silver-grey, metallic element\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, lightweight, silver-grey, metallic element) -> strong, lightweight, silver-grey, metallic element (6842ms)\nWhat is titanium?\tHigh-Valence Metal\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, High-Valence Metal) -> High-Valence Metal (5960ms)\nWhat is titanium?\tlustrous silver-white or gray metallic element\t-5.51474644290405\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, lustrous silver-white or gray metallic element) -> lustrous silver-white or gray metallic element (6870ms)\nWhat is titanium?\theat conductive material\t-5.5152033590131575\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, heat conductive material) -> heat conductive material (6884ms)\nWhat is titanium?\treflective material\t-5.607510558748322\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, reflective material) -> reflective material (6927ms)\nWhat is titanium?\tmetal complex\t-5.611975178360192\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, metal complex) -> metal complex (6927ms)\nWhat is titanium?\thard surface\t-5.6391457115964485\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, hard surface) -> hard surface (6927ms)\nWhat is titanium?\tporous material\t-5.658257758564387\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, porous material) -> porous material (6927ms)\nWhat is titanium?\tmatrix material\t-5.66114496066539\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, matrix material) -> matrix material (6927ms)\nWhat is titanium?\tinorganic substance\t-5.661632910858649\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, inorganic substance) -> inorganic substance (6927ms)\nWhat is titanium?\tamorphous material\t-5.663282727247879\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, amorphous material) -> amorphous material (6946ms)\nWhat is titanium?\tinnovative technology\t-5.673948755405252\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, innovative technology) -> innovative technology (6947ms)\nWhat is titanium?\tsupport material\t-5.701536638900646\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, support material) -> support material (6946ms)\nWhat is titanium?\tinorganic substrate\t-5.702460128257235\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, inorganic substrate) -> inorganic substrate (6946ms)\nWhat is titanium?\tinorganic pigment\t-5.708494252838867\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, inorganic pigment) -> inorganic pigment (6946ms)\nWhat is titanium?\tnickel alloy\t-5.74445221983684\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, nickel alloy) -> nickel alloy (6946ms)\nWhat is titanium?\tliquid product\t-5.770456614177416\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, liquid product) -> liquid product (7066ms)\nWhat is titanium?\tdeformable material\t-5.773568852385445\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, deformable material) -> deformable material (7066ms)\nWhat is titanium?\talkaline metal\t-5.792991274974484\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, alkaline metal) -> alkaline metal (7066ms)\nWhat is titanium?\tinteresting material\t-5.794264635543142\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, interesting material) -> interesting material (7066ms)\nWhat is titanium?\twide range\t-5.7944315023197825\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, wide range) -> wide range (7066ms)\nWhat is titanium?\toxide ceramic\t-5.79812093729233\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, oxide ceramic) -> oxide ceramic (7066ms)\nWhat is titanium?\tpolymeric material\t-5.813419569943383\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, polymeric material) -> polymeric material (7252ms)\nWhat is titanium?\ttiny particle\t-5.834345508373161\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, tiny particle) -> tiny particle (7251ms)\nWhat is titanium?\tZinc oxide\t-5.865713243341847\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Zinc oxide, Active moiety of drug, Titanium/Zinc oxide) -> Zinc oxide (7252ms)\nWhat is titanium?\tpreferential material\t-5.871915359357899\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, preferential material) -> preferential material (7252ms)\nWhat is titanium?\tnoteworthy metal\t-5.871915359357899\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, noteworthy metal) -> noteworthy metal (7279ms)\nWhat is titanium?\tprohibitive material\t-5.871915359357899\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, prohibitive material) -> prohibitive material (7279ms)\nWhat is titanium?\tsuperlative metal\t-5.871915359357899\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, superlative metal) -> superlative metal (7279ms)\nWhat is titanium?\tmaterialfor jewelry\t-5.871915359357899\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, materialfor jewelry) -> materialfor jewelry (7279ms)\nWhat is titanium?\tmicroalloying addition\t-5.871915359357899\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, microalloying addition) -> microalloying addition (7252ms)\nWhat is titanium?\tunmoving metal\t-5.871915359357899\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, unmoving metal) -> unmoving metal (7251ms)\nWhat is titanium?\tcoating composition\t-5.883863059787776\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, coating composition) -> coating composition (7279ms)\nWhat is titanium?\tstructural material\t-5.884436900586124\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, structural material) -> structural material (7279ms)\nWhat is titanium?\tpromotional product\t-5.897470975557943\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, promotional product) -> promotional product (7300ms)\nWhat is titanium?\tlocal band\t-5.900037870488977\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, local band) -> local band (7300ms)\nWhat is titanium?\tresin material\t-5.900571094045924\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, resin material) -> resin material (7300ms)\nWhat is titanium?\tCopper Absorption Inhibitor\t-6.2476906238599055\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Copper Absorption Inhibitor, Drugs, Octinoxate/Octisalate/Zinc cation/Titanium) -> Copper Absorption Inhibitor (7463ms)\nWhat is titanium?\tAdenosine Receptor Agonist\t-6.2476906238599055\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, pharmacological class, $x) -> (Titanium dioxide/Zinc oxide/Arbutin/Adenosine/Octinoxate/Octisalate, Pharmacological class, Adenosine Receptor Agonist) -> Adenosine Receptor Agonist (7463ms)\nWhat is titanium?\tMethylating Agent\t-6.395082086829625\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Methylating Agent, Drugs, Octinoxate/Titanium dioxide/Zinc oxide/Betaine/Talc) -> Methylating Agent (7463ms)\nWhat is titanium?\tContrast Agent for Ultrasound Imaging\t-6.479357898577162\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Contrast Agent for Ultrasound Imaging, Drugs, Titanium dioxide/Dimethicone/Octinoxate/Hydroxyproline/Distearyldimonium/Diacetyl benzoyl lathyrol) -> Contrast Agent for Ultrasound Imaging (7553ms)\nWhat is titanium?\tTransition metal\t-6.682568405691354\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, chemical series, $x) -> (Titanium, Chemical series, Transition metal) -> Transition metal (7826ms)\nWhat is titanium?\tTitanium dioxide\t-6.682568405691354\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Titanium dioxide, Active moiety of drug, Titanium dioxide/Octocrylene) -> Titanium dioxide (7838ms)\nWhat is titanium?\tTopical medication\t-6.682568405691354\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Topical medication, Drug formulations, Titanium dioxide 0.0005 cream) -> Topical medication (7839ms)\nWhat is titanium?\tLockheed A-12\t-6.871915359357899\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (60-692 Titanium Goose, Parent aircraft model, Lockheed A-12) -> Lockheed A-12 (7851ms)\nWhat is titanium?\tZinc\t-7.116351696461146\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Zinc, Active moiety of drug, Titanium dioxide/Zinc) -> Zinc (7851ms)\nWhat is titanium?\tOral\t-7.116351696461146\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Oral, Drug formulations, Titanium 30 pellet) -> Oral (7851ms)\nWhat is titanium?\tBbcream\t-7.171076249543963\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Bbcream, Canonical drug, Octinoxate/Titanium dioxide) -> Bbcream (7863ms)\nWhat is titanium?\tAloevella\t-7.171076249543963\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Aloevella, Canonical drug, Titanium dioxide/Zinc oxide) -> Aloevella (7875ms)\nWhat is titanium?\tCutaneous\t-7.171076249543963\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Cutaneous, Drug formulations, Titanium dioxide 0.0773 cream) -> Cutaneous (7912ms)\nWhat is titanium?\tLoccitane\t-7.171076249543963\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Loccitane, Canonical drug, Titanium dioxide) -> Loccitane (7863ms)\nWhat is titanium?\tOctinoxate\t-7.171076249543963\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octinoxate, Active moiety of drug, Octinoxate/Octisalate/Titanium) -> Octinoxate (7900ms)\nWhat is titanium?\tOctisalate\t-7.171076249543963\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octisalate, Active moiety of drug, Octisalate/Titanium dioxide) -> Octisalate (7912ms)\nWhat is titanium?\tOctocrylene\t-7.171076249543963\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octocrylene, Active moiety of drug, Octocrylene/Octinoxate/Titanium) -> Octocrylene (7887ms)\nWhat is titanium?\tOxybenzone\t-7.171076249543963\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Oxybenzone, Active moiety of drug, Titanium/Octinoxate/Oxybenzone) -> Oxybenzone (7887ms)\nWhat is titanium?\td-block\t-7.233827070412259\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, element, titanium) -> (d-block, Elements, Titanium) -> d-block (7912ms)\nWhat is titanium?\t2011 Ford Flex\t-7.275782561109084\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2011 Ford Flex Titanium AWD Turbo, Model Year, 2011 Ford Flex) -> 2011 Ford Flex (7934ms)\nWhat is titanium?\t2012 Ford Focus Sedan\t-7.275782561109084\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2012 Ford FocusTitanium Sedan, Model Year, 2012 Ford Focus Sedan) -> 2012 Ford Focus Sedan (7923ms)\nWhat is titanium?\t2012 Ford Flex\t-7.275782561109084\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2012 Ford Flex Titanium, Model Year, 2012 Ford Flex) -> 2012 Ford Flex (7934ms)\nWhat is titanium?\t2012 Ford Focus 5-Door\t-7.275782561109084\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2012 Ford Focus Titanium 5-Door, Model Year, 2012 Ford Focus 5-Door) -> 2012 Ford Focus 5-Door (7912ms)\nWhat is titanium?\t2010 Nissan Armada\t-7.275782561109084\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2010 Nissan Armada Titanium, Model Year, 2010 Nissan Armada) -> 2010 Nissan Armada (7934ms)\nWhat is titanium?\t905R\t-7.4961400948558925\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (Titleist PRO TITANIUM 905R, Model, 905R) -> 905R (7934ms)\nWhat is titanium?\t905S\t-7.4961400948558925\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (Titleist PRO TITANIUM 905S, Model, 905S) -> 905S (7934ms)\nWhat is titanium?\tsteel\t-7.633036137478976\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, steel) -> steel (7934ms)\nWhat is titanium?\ttype\t-7.648983057112732\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, type) -> type (7945ms)\nWhat is titanium?\tstabilizer\t-7.6580053564371955\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, stabilizer) -> stabilizer (7946ms)\nWhat is titanium?\tcharacter\t-7.708684624946219\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, character) -> character (7946ms)\nWhat is titanium?\tfiller\t-7.740257556997938\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, filler) -> filler (7946ms)\nWhat is titanium?\titem\t-7.791098438762236\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, item) -> item (7946ms)\nWhat is titanium?\tagent\t-7.808253318087274\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, agent) -> agent (7946ms)\nWhat is titanium?\tapps\t-7.8320818292225365\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, apps) -> apps (7956ms)\nWhat is titanium?\twatch\t-7.851167942210578\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, watch) -> watch (7956ms)\nWhat is titanium?\tfiber\t-7.946001247268135\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, fiber) -> fiber (7956ms)\nWhat is titanium?\theteroatoms\t-7.995296296682728\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, heteroatoms) -> heteroatoms (7956ms)\nWhat is titanium?\tpromoter\t-8.035181583187537\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, promoter) -> promoter (7956ms)\nWhat is titanium?\tbead\t-8.129381432952881\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, bead) -> bead (7956ms)\nWhat is titanium?\tplastic\t-8.134936790018987\tWhat is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, plastic) -> plastic (7971ms)\nWhat is titanium?\tjewelry\t-9.783348008235956\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be the type of, $x) -> (titanium, are the only types of, jewelry) -> jewelry (7971ms)\nWhat is titanium?\taddition\t-9.808414430285955\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be a by, $x) -> (titanium, is improved a hundredfold by, addition) -> addition (7971ms)\nWhat is titanium?\tmetals\t-10.028022593559172\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be the type of, $x) -> (Gold , silver , or titanium, is the types of, metals) -> metals (7971ms)\nWhat is titanium?\toptions\t-10.073827719023244\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be the most seek after, $x) -> (the Titanium eyeglass frames, are the most sought after, options) -> options (7970ms)\nWhat is titanium?\tportfolio\t-10.520696114288217\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be a by, $x) -> (titanium sculpture, is a member by, portfolio) -> portfolio (7971ms)\nWhat is titanium?\tThe mud\t-10.916167234301616\tWhat is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, element, titanium) -> (The mud, also contains other elements such as, titanium) -> The mud (7981ms)\nWhat is titanium?\tMore people\t-11.140485502835217\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> (More people, are likely to know the atomic number of, titanium) -> More people (7981ms)\nWhat is titanium?\tAnthony Ian Berkeley\t-11.478087503134542\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Anthony Ian Berkeley, Also known as, Titanium, Tony) -> Anthony Ian Berkeley (8873ms)\nWhat is titanium?\tTitanium Expos?\t-11.66633996573943\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium Expos?, Also known as, Titanium Expose) -> Titanium Expos? (8873ms)\nWhat is titanium?\tTitanium (edit)\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium (edit), Also known as, Titanium (2complex remix)) -> Titanium (edit) (8921ms)\nWhat is titanium?\tTitania A\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titania A, Also known as, Titania A/S) -> Titania A (8891ms)\nWhat is titanium?\tLady (Hear Me Tonight) (Choo-Choo' Titanium dub)\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Lady (Hear Me Tonight) (Choo-Choo' Titanium dub), Also known as, Lady (Hear Me Tonight) Harry \"Choo-Choo\" Romero's Titanium Dub) -> Lady (Hear Me Tonight) (Choo-Choo' Titanium dub) (8873ms)\nWhat is titanium?\tRMI Titanium Co\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (RMI Titanium Co, Also known as, RMI Titanium Company) -> RMI Titanium Co (8906ms)\nWhat is titanium?\tTioxide Europe Titanium Pigmentleri Ticaret Ltd. Sirketi\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Tioxide Europe Titanium Pigmentleri Ticaret Ltd. Sirketi, Also known as, Tioxide Europe Titanium Pigmentleri Ticaret Ltd Sirketi) -> Tioxide Europe Titanium Pigmentleri Ticaret Ltd. Sirketi (8906ms)\nWhat is titanium?\tGloucester Titanium Co Inc\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Gloucester Titanium Co Inc, Also known as, Gloucester Titanium Company, Inc) -> Gloucester Titanium Co Inc (8906ms)\nWhat is titanium?\tBewitched: Titania's book of love spells\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Bewitched: Titania's book of love spells, Also known as, Titania's book of love spells) -> Bewitched: Titania's book of love spells (8921ms)\nWhat is titanium?\tTitanium Hearth Technologies, Inc\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium Hearth Technologies, Inc, Also known as, Titanium Hearth Technologies Inc) -> Titanium Hearth Technologies, Inc (8874ms)\nWhat is titanium?\tHAVA Titanium HD WIFI\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (HAVA Titanium HD WIFI, Also known as, Monsoon HAVA Titanium HD WiFi Media Streamer) -> HAVA Titanium HD WIFI (8891ms)\nWhat is titanium?\tThe Sinking of Titania\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (The Sinking of Titania, Also known as, Der Untergang der Titania) -> The Sinking of Titania (8921ms)\nWhat is titanium?\tInternational Titanium Inc.\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (International Titanium Inc., Also known as, International Titanium) -> International Titanium Inc. (8906ms)\nWhat is titanium?\tIsotopes of titanium\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Isotopes of titanium, Also known as, Titanium-50) -> Isotopes of titanium (8892ms)\nWhat is titanium?\tTitanium (extended version)\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium (extended version), Also known as, Titanium (extended)) -> Titanium (extended version) (8891ms)\nWhat is titanium?\tPredict your future with Titania's oraqle\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Predict your future with Titania's oraqle, Also known as, Titania's oraqle) -> Predict your future with Titania's oraqle (8891ms)\nWhat is titanium?\tTitanium dioxide B\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium dioxide B, Also known as, Titanium dioxide (B)) -> Titanium dioxide B (8873ms)\nWhat is titanium?\tFairchild Titanium Technologies, Inc\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Fairchild Titanium Technologies, Inc, Also known as, Fairchild Titanium Technologies Inc) -> Fairchild Titanium Technologies, Inc (8891ms)\nWhat is titanium?\tTitania & MacBeth\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titania & MacBeth, Also known as, Titania + Macbeth) -> Titania & MacBeth (8906ms)\nWhat is titanium?\tTitanium (commercially pure)\t-11.750615777486969\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium (commercially pure), Also known as, Grade 3 Titanium) -> Titanium (commercially pure) (8906ms)\nWhat is titanium?\tNickel titanium\t-11.95382628460116\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Nickel titanium, Also known as, Nickel Titanium) -> Nickel titanium (8921ms)\nWhat is titanium?\tSolvothermal synthesis\t-11.95382628460116\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Solvothermal synthesis, Also known as, Solvothermal Synthesis of titanium dioxide) -> Solvothermal synthesis (8936ms)\nWhat is titanium?\tTitanium Alloy 6-4\t-12.143173238267705\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium Alloy 6-4, Also known as, Grade 5 Titanium) -> Titanium Alloy 6-4 (8935ms)\nWhat is titanium?\tMystic topaz\t-12.20161326611917\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> (Mystic topaz, is also known as, titanium) -> Mystic topaz (7982ms)\nWhat is titanium?\tTitanium\t-12.44233412845377\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium, Also known as, Titanium (original version)) -> Titanium (8935ms)\nWhat is titanium?\tHagler\t-12.637854174831329\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> (Hagler, was known for having, a titanium chin) -> Hagler (7981ms)\nWhat is titanium?\tClassic Ballet Series\t-12.71755691157635\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, product, $x) -> (Barbie Doll as Titania, Product line, Classic Ballet Series) -> Classic Ballet Series (15928ms)\nWhat is titanium?\tMaterials Properties Handbook\t-12.71755691157635\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Materials Properties Handbook, Editions, Materials Properties Handbook: Titanium Alloys (06005G)) -> Materials Properties Handbook (15928ms)\nWhat is titanium?\tSilver Label Collection\t-12.71755691157635\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Barbie Doll as Titania, Label or Edition, Silver Label Collection) -> Silver Label Collection (15929ms)\nWhat is titanium?\twater-resistant\t-12.77906345213434\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, water-resistant) -> water-resistant (11073ms)\nWhat is titanium?\tElectrochemical dialysate regeneration\t-12.827006017741983\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Electrochemical dialysate regeneration : the electro-oxidation of urea at the ruthenium titanium oxide electrode, Edition Of, Electrochemical dialysate regeneration) -> Electrochemical dialysate regeneration (15387ms)\nWhat is titanium?\tQueen Titania\t-12.864948374546069\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Queen Titania, Editions, Queen Titania) -> Queen Titania (16364ms)\nWhat is titanium?\tWhite Magic\t-12.864948374546069\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (White Magic: Titania's Book of Favorite Spells, Edition Of, White Magic) -> White Magic (16364ms)\nWhat is titanium?\tMentor Books\t-12.864948374546069\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Mentor Books, Book editions published, Pipes of Peace (Titania)) -> Mentor Books (16364ms)\nWhat is titanium?\tHocus Pocus\t-12.864948374546069\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Hocus Pocus, Editions, Hocus Pocus: Titania's Book of Spells) -> Hocus Pocus (16364ms)\nWhat is titanium?\tSECRETOS PELIGROSOS\t-12.902161070642386\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (SECRETOS PELIGROSOS (Titania Contemporanea), Edition Of, SECRETOS PELIGROSOS) -> SECRETOS PELIGROSOS (17910ms)\nWhat is titanium?\tTitanium: its occurrence, chemistry, and technology\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Titanium: its occurrence, chemistry, and technology, Editions, Titanium: its occurrence, chemistry, and technology) -> Titanium: its occurrence, chemistry, and technology (17910ms)\nWhat is titanium?\tSurface reactions on stoichiometric and defective titanium dioxide : from single crystals to nanoparticles\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Surface reactions on stoichiometric and defective titanium dioxide, Editions, Surface reactions on stoichiometric and defective titanium dioxide : from single crystals to nanoparticles) -> Surface reactions on stoichiometric and defective titanium dioxide : from single crystals to nanoparticles (17910ms)\nWhat is titanium?\tMechanistic investigations of titanium-mediated syndiospecific styrene polymerizations\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Mechanistic investigations of titanium-mediated syndiospecific styrene polymerizations, Edition Of, Mechanistic investigations of titanium-mediated syndiospecific styrene polymerizations) -> Mechanistic investigations of titanium-mediated syndiospecific styrene polymerizations (17910ms)\nWhat is titanium?\tPipes of Peace\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Pipes of Peace (Titania), Edition Of, Pipes of Peace) -> Pipes of Peace (18746ms)\nWhat is titanium?\tSelective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts : application to asymmetric synthesis of (+)-disparlure and (-)-?-amino-?(R)-hydroxybutyric acid, Edition Of, Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts) -> Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts (15387ms)\nWhat is titanium?\tLaser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Laser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs, Editions, Laser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs) -> Laser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs (18746ms)\nWhat is titanium?\tSelective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts : application to asymmetric synthesis of (+)-disparlure and (-)-?-amino-?(R)-hydroxybutyric acid\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts, Editions, Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts : application to asymmetric synthesis of (+)-disparlure and (-)-?-amino-?(R)-hydroxybutyric acid) -> Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts : application to asymmetric synthesis of (+)-disparlure and (-)-?-amino-?(R)-hydroxybutyric acid (19078ms)\nWhat is titanium?\tGeology of titanium and titaniferous deposits of Canada\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Geology of titanium and titaniferous deposits of Canada, Editions, Geology of titanium and titaniferous deposits of Canada) -> Geology of titanium and titaniferous deposits of Canada (19078ms)\nWhat is titanium?\tGeology of Nimba County, Liberia\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Geology of Nimba County, Liberia, Editions, Geology of titanium-mineral deposits) -> Geology of Nimba County, Liberia (18746ms)\nWhat is titanium?\tTitanium: Physico-Chemical Properties of Its Compounds and Alloys (Atomic Energy Review)\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Titanium: Physico-Chemical Properties of Its Compounds and Alloys (Atomic Energy Review), Edition Of, Titanium) -> Titanium: Physico-Chemical Properties of Its Compounds and Alloys (Atomic Energy Review) (19078ms)\nWhat is titanium?\tBibliography of titanium deposits of the world\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Bibliography of titanium deposits of the world, Editions, Bibliography of titanium deposits of the world) -> Bibliography of titanium deposits of the world (17910ms)\nWhat is titanium?\tReport on the physical properties of titanium and titanium alloys\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Report on the physical properties of titanium and titanium alloys, Editions, Report on the physical properties of titanium and titanium alloys) -> Report on the physical properties of titanium and titanium alloys (19078ms)\nWhat is titanium?\tTitania: the biography of Isak Dinesen.\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Titania, Editions, Titania: the biography of Isak Dinesen.) -> Titania: the biography of Isak Dinesen. (18746ms)\nWhat is titanium?\tPolymerization of Dienes Induced Titanium-Containing Catalytic Sys\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Polymerization of Dienes Induced Titanium-Containing Catalytic Sys. (Chemistry Reviews), Edition Of, Polymerization of Dienes Induced Titanium-Containing Catalytic Sys) -> Polymerization of Dienes Induced Titanium-Containing Catalytic Sys (19078ms)\nWhat is titanium?\tA review of the low-temperature creep behaviour of titanium\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (A review of the low-temperature creep behaviour of titanium, Editions, A review of the low-temperature creep behaviour of titanium) -> A review of the low-temperature creep behaviour of titanium (18747ms)\nWhat is titanium?\tAmor En Directo/ Popped\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Amor En Directo/ Popped, Editions, Amor En Directo/ Popped (Titania Contemporanea)) -> Amor En Directo/ Popped (18746ms)\nWhat is titanium?\tHomolyses of titanium-oxygen bonds : a novel strategy for generating Ti(III) complexes\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Homolyses of titanium-oxygen bonds, Editions, Homolyses of titanium-oxygen bonds : a novel strategy for generating Ti(III) complexes) -> Homolyses of titanium-oxygen bonds : a novel strategy for generating Ti(III) complexes (19078ms)\nWhat is titanium?\tSpectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II)\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Spectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II), Editions, Spectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II)) -> Spectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II) (19078ms)\nWhat is titanium?\tA sourcebook of titanium alloy superconductivity\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (A sourcebook of titanium alloy superconductivity, Edition Of, A sourcebook of titanium alloy superconductivity) -> A sourcebook of titanium alloy superconductivity (19078ms)\nWhat is titanium?\tTitanium: a technical guide\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Titanium, Editions, Titanium: a technical guide) -> Titanium: a technical guide (18746ms)\nWhat is titanium?\tReproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Reproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon, Edition Of, Reproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon) -> Reproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon (18747ms)\nWhat is titanium?\tApuesta Por Mi/ Take a Chance on Me (Titania Contemporanea)\t-12.949224186293607\tWhat is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Apuesta Por Mi/ Take a Chance on Me (Titania Contemporanea) (Titania Contemporanea), Edition Of, Apuesta Por Mi/ Take a Chance on Me (Titania Contemporanea)) -> Apuesta Por Mi/ Take a Chance on Me (Titania Contemporanea) (17910ms)\nWhat is titanium?\tcorrosion-resistant\t-13.403288187632333\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, corrosion-resistant) -> corrosion-resistant (11074ms)\nWhat is titanium?\tcorrosion-proof\t-13.403288187632333\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, corrosion-proof) -> corrosion-proof (11074ms)\nWhat is titanium?\tkind of alittle lighter\t-13.492470843919794\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, kind of alittle lighter) -> kind of alittle lighter (11073ms)\nWhat is titanium?\tHulk smash\t-13.570968130227476\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (Titanium, went, Hulk smash) -> Hulk smash (11073ms)\nWhat is titanium?\tZirconium\t-13.606275603699993\tWhat is titanium? -> what be [ titanium ] ? -> what exactly be titanium ? -> $x: ($x, exactly be, titanium) -> (Zirconium, is exactly like, titanium) -> Zirconium (11222ms)\nWhat is titanium?\tlighter than steel\t-13.637139228526994\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, lighter than steel) -> lighter than steel (11073ms)\nWhat is titanium?\tas strong as steel\t-13.64625998737413\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, as strong as steel) -> as strong as steel (11073ms)\nWhat is titanium?\tresistant to corrosion\t-13.673379785006059\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, resistant to corrosion) -> resistant to corrosion (11073ms)\nWhat is titanium?\tquite a little lighter\t-13.687319633848253\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, quite a little lighter) -> quite a little lighter (11116ms)\nWhat is titanium?\tstrong as steel\t-13.701537049292211\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, strong as steel) -> strong as steel (11115ms)\nWhat is titanium?\ta long way\t-13.706537408295336\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (The TI-89 Titanium, has really gone, a long way) -> a long way (11115ms)\nWhat is titanium?\tvery light weight\t-13.706891114635251\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, very light weight) -> very light weight (11115ms)\nWhat is titanium?\tstronger than gold\t-13.727292233499204\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, stronger than gold) -> stronger than gold (11115ms)\nWhat is titanium?\tstrong , lightweight , hypoallergenic\t-13.728556394181354\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, strong , lightweight , hypoallergenic) -> strong , lightweight , hypoallergenic (11115ms)\nWhat is titanium?\tmuch lighter than steel\t-13.778113216675585\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, much lighter than steel) -> much lighter than steel (11135ms)\nWhat is titanium?\tas durable as stainless steel\t-13.78332687739678\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, as durable as stainless steel) -> as durable as stainless steel (11135ms)\nWhat is titanium?\tQueen of the fairies\t-13.786851573379419\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titania, is, Queen of the fairies) -> Queen of the fairies (11135ms)\nWhat is titanium?\ta platform\t-13.795588131176476\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (Titanium, is going as, a platform) -> a platform (11135ms)\nWhat is titanium?\tthree times stronger than steel\t-13.802796514919635\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, three times stronger than steel) -> three times stronger than steel (11135ms)\nWhat is titanium?\ta very hardy material\t-13.812989159729714\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, a very hardy material) -> a very hardy material (11135ms)\nWhat is titanium?\tmore flexible than steel\t-13.812989159729714\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, more flexible than steel) -> more flexible than steel (11135ms)\nWhat is titanium?\tone of the strongest metals\t-13.817271339109812\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, one of the strongest metals) -> one of the strongest metals (11135ms)\nWhat is titanium?\tabout as good as it gets\t-13.831569310030464\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, about as good as it gets) -> about as good as it gets (11154ms)\nWhat is titanium?\tstronger and lighter than steel\t-13.837672457973763\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, stronger and lighter than steel) -> stronger and lighter than steel (11154ms)\nWhat is titanium?\tNickel free\t-13.846260299653203\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, Nickel free) -> Nickel free (11154ms)\nWhat is titanium?\tsubstantially more electropositive than iron\t-13.854724643008481\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (titanium, is, substantially more electropositive than iron) -> substantially more electropositive than iron (11154ms)\nWhat is titanium?\tsort of a bit lighter\t-13.863287237558911\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, sort of a bit lighter) -> sort of a bit lighter (11154ms)\nWhat is titanium?\tone of the best metals\t-13.872548401027892\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, one of the best metals) -> one of the best metals (11154ms)\nWhat is titanium?\tmuch more elastic than steel\t-13.872548401027892\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, much more elastic than steel) -> much more elastic than steel (11154ms)\nWhat is titanium?\tkinds of the new metal\t-13.872548401027892\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, kinds of the new metal) -> kinds of the new metal (11154ms)\nWhat is titanium?\tDivX\t-13.877678009272472\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, do, $x) -> (Toast 7 Titanium?s video conversion, does n?t end with, DivX) -> DivX (11222ms)\nWhat is titanium?\tlikewise asleep\t-13.886211945271516\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titania, was, likewise asleep) -> likewise asleep (11222ms)\nWhat is titanium?\textremely lightweight\t-13.886646467876714\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, extremely lightweight) -> extremely lightweight (11222ms)\nWhat is titanium?\tfairly expensive\t-13.886646467876714\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, fairly expensive) -> fairly expensive (11222ms)\nWhat is titanium?\tcompletely neutral to the human body\t-13.899794675202482\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, completely neutral to the human body) -> completely neutral to the human body (11222ms)\nWhat is titanium?\teither way\t-13.900209235897506\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (the Titanium PowerBook, go, either way) -> either way (11222ms)\nWhat is titanium?\tonly half the weight of steel\t-13.902372036047025\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, only half the weight of steel) -> only half the weight of steel (11222ms)\nWhat is titanium?\tvery ductile\t-13.907047586740667\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, very ductile) -> very ductile (13668ms)\nWhat is titanium?\tincredibly light\t-13.907047586740667\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, incredibly light) -> incredibly light (13668ms)\nWhat is titanium?\tthe casing\t-13.91105727351965\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> (the casing, is known to be, titanium based) -> the casing (7981ms)\nWhat is titanium?\tlighter and stronger than stainless steel\t-13.920195794066435\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, lighter and stronger than stainless steel) -> lighter and stronger than stainless steel (13668ms)\nWhat is titanium?\tone of the most durable metals\t-13.920195794066435\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, one of the most durable metals) -> one of the most durable metals (13668ms)\nWhat is titanium?\tgraphics cards\t-13.955832638314455\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, do, $x) -> (titanium, have to do with, graphics cards) -> graphics cards (13668ms)\nWhat is titanium?\tTexas\t-14.041713170660827\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (Titanium Sporkestra, is going to, Texas) -> Texas (13668ms)\nWhat is titanium?\tVirtual TI doesnt\t-14.073624185933722\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Virtual TI doesnt, know about, the Titanium) -> Virtual TI doesnt (8935ms)\nWhat is titanium?\tso strong\t-14.076280272110797\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (titanium, is, so strong) -> so strong (13668ms)\nWhat is titanium?\tnon-toxic\t-14.084603610208962\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, non-toxic) -> non-toxic (13668ms)\nWhat is titanium?\twedding rings\t-14.256098095091463\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> (titanium platinum, mens, wedding rings) -> wedding rings (8088ms)\nWhat is titanium?\ta reflective fiber\t-14.474353890497135\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (a reflective fiber, know as, titanium) -> a reflective fiber (8949ms)\nWhat is titanium?\twedding band\t-14.880322830589456\tWhat is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> (the titanium, mens, wedding band) -> wedding band (8088ms)\nWhat is titanium?\tEva Longoria\t-15.59581189893962\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Eva Longoria, knew that, titanium is) -> Eva Longoria (8950ms)\nWhat is titanium?\tanodization\t-16.798440022184227\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (anodization, include well-known metals such as, titanium) -> anodization (8962ms)\nWhat is titanium?\tthe presence of a new element\t-17.452351016952395\tWhat is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (the presence of a new element, known as, titanium) -> the presence of a new element (8962ms)\nHow many state jobs did Steffen hold?\tresearcher\t-1.7842299956702994\tHow many state jobs did Steffen hold? -> $x: ($x, instance of, state jobs) (Steffen, hold, $x) -> (researcher, Instance Of, state job) (Steffen, held positions as, researcher) -> researcher (2981ms)\nWhat actor first portrayed James Bond?\tDaniel Craig\t-2.2254713954242904\tWhat actor first portrayed James Bond? -> $x: ($x, instance of, actor first) ($x, portrayed, James Bond) -> (Daniel Craig, Instance Of, first class actor) (Danny Craig, portrays, James Bond) -> Daniel Craig (1560ms)\nWhat actor first portrayed James Bond?\tCraig\t-2.556944707708981\tWhat actor first portrayed James Bond? -> $x: ($x, instance of, actor first) ($x, portrayed, James Bond) -> (Craig, Instance Of, first rate actor) (Craig, portray, James Bond) -> Craig (1560ms)\nWhat actor first portrayed James Bond?\tSean Connery\t-5.217859050974644\tWhat actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> (Sean Connery, Instance Of, actor) (Sean Connery, portrayed, James Bond) -> Sean Connery (10049ms)\nWhat actor first portrayed James Bond?\tMs Moore\t-5.342140277248111\tWhat actor first portrayed James Bond? -> $x: ($x, instance of, actor first) ($x, portrayed, James Bond) -> $x: ($x, instance of, actor first) ($x, be cast as, James Bond) -> (Ms Moore, Instance Of, first-rate actor) (Moore, was finally cast as, James Bond) -> Ms Moore (8206ms)\nWhat actor first portrayed James Bond?\tGeorge Lazenby\t-5.886394766322417\tWhat actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> (George Lazenby, Instance Of, actor) (George Lazenby, portrayed, James Bond) -> George Lazenby (10125ms)\nWhat actor first portrayed James Bond?\tBrosnan\t-6.797662570532222\tWhat actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> (Brosnan, Instance Of, actor) (Brosnan, portrayed, the fictional secret agent James Bond) -> Brosnan (10138ms)\nWhat actor first portrayed James Bond?\tPierce Brosnan\t-8.165148859930206\tWhat actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> $x: ($x, instance of, actor) (James Bond, portray by, $x) -> (Pierce Brosnan, Instance Of, actor) (James Bond, portrayed by, Pierce Brosnan) -> Pierce Brosnan (13807ms)\nWhat actor first portrayed James Bond?\tAMC\t-9.171950480529517\tWhat actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> $x: ($x, instance of, actor) ($x, show be, James Bond) -> (AMC, Instance Of, well rounded group of talented actor) (AMC, is also showing, three James Bond movies) -> AMC (12986ms)\nWhat actor first portrayed James Bond?\tOrlando Bloom\t-9.262012820287385\tWhat actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> $x: ($x, instance of, actor) ($x, have be cast as, James Bond) -> (Orlando Bloom, Instance Of, talented actor) (Orlando Bloom, has been cast as, the young James Bond) -> Orlando Bloom (12986ms)\nWhat actor first portrayed James Bond?\tactors\t-10.41170893092742\tWhat actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> $x: ($x, modelling, actor) ($x, portrayed, James Bond) -> (actors, MODELS, / ACTORS REMINDER Europcar Face) (all the actors, portrayed, James Bond) -> actors (13553ms)\nWhat is an eclipse?\tdetailed description of the different part\t-4.68575736657953\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Structure of an Eclipse Plug-inThis, Instance Of, detailed description of the different part) -> detailed description of the different part (8838ms)\nWhat is an eclipse?\tpoetic prose poem memoir\t-4.70708942435825\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Light From An Eclipse, Instance Of, poetic prose poem memoir) -> poetic prose poem memoir (8838ms)\nWhat is an eclipse?\tdeeply affecting experience\t-4.721530563167535\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Nat. Moon triggered by an eclipse, Instance Of, deeply affecting experience) -> deeply affecting experience (8838ms)\nWhat is an eclipse?\tDPS strategy\t-4.730651322014672\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (refreshing on the last spell of an eclipse, Instance Of, DPS strategy) -> DPS strategy (8838ms)\nWhat is an eclipse?\tmemoir covering the year of her dad's Alzheimer's disease\t-4.784705087226465\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Light from an Eclipse, Instance Of, memoir covering the year of her dad's Alzheimer's disease) -> memoir covering the year of her dad's Alzheimer's disease (8839ms)\nWhat is an eclipse?\tlayered call\t-4.917650977616581\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (An Eclipsing, Instance Of, layered call) -> layered call (9631ms)\nWhat is an eclipse?\tphotometric observation\t-4.917650977616581\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (observation of an eclipse, Instance Of, photometric observation) -> photometric observation (8838ms)\nWhat is an eclipse?\tauspicious time\t-4.9465325778793385\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time during an eclipse, Instance Of, auspicious time) -> auspicious time (9631ms)\nWhat is an eclipse?\tinterference engine\t-4.980721243919374\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (engine in an eclipse, Instance Of, interference engine) -> interference engine (9631ms)\nWhat is an eclipse?\tideal time\t-5.007771723648073\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time near an eclipse, Instance Of, ideal time) -> ideal time (9631ms)\nWhat is an eclipse?\topen-source standard\t-6.347555972873462\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open-source standard) -> open-source standard (9631ms)\nWhat is an eclipse?\tmixed bag\t-6.445438623878456\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, mixed bag) -> mixed bag (9631ms)\nWhat is an eclipse?\tnon-handed and modular series\t-6.510129566546065\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, non-handed and modular series) -> non-handed and modular series (9801ms)\nWhat is an eclipse?\tincredibly powerful platform\t-6.5668623746015555\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, incredibly powerful platform) -> incredibly powerful platform (9801ms)\nWhat is an eclipse?\tintuitive PPM solution\t-6.570618729254677\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intuitive PPM solution) -> intuitive PPM solution (9801ms)\nWhat is an eclipse?\topen-source software development project\t-6.598037171430477\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open-source software development project) -> open-source software development project (9801ms)\nWhat is an eclipse?\topen source Java integrated development environment\t-6.6124897969756695\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source Java integrated development environment) -> open source Java integrated development environment (9801ms)\nWhat is an eclipse?\tmodern development environment\t-6.615147101968271\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, modern development environment) -> modern development environment (9801ms)\nWhat is an eclipse?\tIntegrated Development Environment, or IDE\t-6.632423183686063\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Integrated Development Environment, or IDE) -> Integrated Development Environment, or IDE (9820ms)\nWhat is an eclipse?\topen source development framework\t-6.649489090698349\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source development framework) -> open source development framework (9820ms)\nWhat is an eclipse?\tJava based platform\t-6.654972778643229\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Java based platform) -> Java based platform (9819ms)\nWhat is an eclipse?\tdenture base material\t-6.685467226615205\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse?, Instance Of, denture base material) -> denture base material (9819ms)\nWhat is an eclipse?\tbet\t-6.687970993957839\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, bet) -> bet (9820ms)\nWhat is an eclipse?\tfree open source Integrated Development Environment\t-6.694587985462341\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, free open source Integrated Development Environment) -> free open source Integrated Development Environment (9819ms)\nWhat is an eclipse?\tcollection of short fictional story\t-6.694587985462341\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, collection of short fictional story) -> collection of short fictional story (9837ms)\nWhat is an eclipse?\tfree blogger template\t-6.719081522664327\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, free blogger template) -> free blogger template (9838ms)\nWhat is an eclipse?\tgem\t-6.726098978129288\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, gem) -> gem (9838ms)\nWhat is an eclipse?\topen development environment\t-6.730361182050347\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open development environment) -> open development environment (9837ms)\nWhat is an eclipse?\tsource code environment\t-6.730361182050347\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, source code environment) -> source code environment (9856ms)\nWhat is an eclipse?\tcase mutual event\t-6.730361182050347\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, case mutual event) -> case mutual event (9838ms)\nWhat is an eclipse?\tsoftware engineering environment\t-6.730361182050347\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, software engineering environment) -> software engineering environment (9838ms)\nWhat is an eclipse?\tfour letter word\t-6.738384328860972\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, four letter word) -> four letter word (9856ms)\nWhat is an eclipse?\texcellent free IDE\t-6.739481940897483\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, excellent free IDE) -> excellent free IDE (9856ms)\nWhat is an eclipse?\tpremium series name\t-6.753862704265519\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, premium series name) -> premium series name (9856ms)\nWhat is an eclipse?\tcollection of place\t-6.753997586683159\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, collection of place) -> collection of place (9856ms)\nWhat is an eclipse?\tIDE or Integrated Development Environment\t-6.755933005957823\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, IDE or Integrated Development Environment) -> IDE or Integrated Development Environment (9856ms)\nWhat is an eclipse?\tpopular open source platform\t-6.75846393885546\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, popular open source platform) -> popular open source platform (9875ms)\nWhat is an eclipse?\tOSGi application\t-6.760045771916483\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, OSGi application) -> OSGi application (9876ms)\nWhat is an eclipse?\tpro\t-6.760514705065259\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, pro) -> pro (9875ms)\nWhat is an eclipse?\thigher-end brand\t-6.7607091206715735\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, higher-end brand) -> higher-end brand (9876ms)\nWhat is an eclipse?\topen source application\t-6.763263312171027\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source application) -> open source application (9875ms)\nWhat is an eclipse?\tJava-based development environment\t-6.766900383073283\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Java-based development environment) -> Java-based development environment (9876ms)\nWhat is an eclipse?\tintelligent code editor\t-6.771488844088347\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intelligent code editor) -> intelligent code editor (9898ms)\nWhat is an eclipse?\tcomplete software development environment\t-6.772384071018163\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (ECLIPSE, Instance Of, complete software development environment) -> complete software development environment (9898ms)\nWhat is an eclipse?\topen source software\t-6.774572802949596\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source software) -> open source software (9899ms)\nWhat is an eclipse?\tJapanese pop group\t-6.776355017376476\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Japanese pop group) -> Japanese pop group (9899ms)\nWhat is an eclipse?\toil\t-6.777972899495585\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (ECLIPSE, Instance Of, oil) -> oil (9899ms)\nWhat is an eclipse?\tfull-featured development tool\t-6.780609602935483\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, full-featured development tool) -> full-featured development tool (9898ms)\nWhat is an eclipse?\tlow cost laser-based alternative\t-6.794318825249083\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse?, Instance Of, low cost laser-based alternative) -> low cost laser-based alternative (9913ms)\nWhat is an eclipse?\tcomprehensive IDE\t-6.799303996553774\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, comprehensive IDE) -> comprehensive IDE (9913ms)\nWhat is an eclipse?\tyoung, dynamic and rapidly growing company\t-6.801173433954483\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, young, dynamic and rapidly growing company) -> young, dynamic and rapidly growing company (9913ms)\nWhat is an eclipse?\tComplex UIs\t-6.8204742794600515\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Complex UIs) -> Complex UIs (9914ms)\nWhat is an eclipse?\tdevelopment tool\t-6.828813770508529\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, development tool) -> development tool (9914ms)\nWhat is an eclipse?\tgreat place\t-6.8659630667268665\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, great place) -> great place (9914ms)\nWhat is an eclipse?\tgood brand\t-6.966943379776335\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good brand) -> good brand (9934ms)\nWhat is an eclipse?\tpro tool\t-6.981215538584396\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, pro tool) -> pro tool (9935ms)\nWhat is an eclipse?\tsolution ecosystem\t-7.010984533359883\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, solution ecosystem) -> solution ecosystem (9935ms)\nWhat is an eclipse?\tluxury vessel\t-7.015709830601856\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, luxury vessel) -> luxury vessel (9935ms)\nWhat is an eclipse?\taffordable aircraft\t-7.025850914959278\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, affordable aircraft) -> affordable aircraft (9934ms)\nWhat is an eclipse?\tawesome movie\t-7.034635024682586\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, awesome movie) -> awesome movie (9935ms)\nWhat is an eclipse?\tgreat line\t-7.040472290261207\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, great line) -> great line (9956ms)\nWhat is an eclipse?\tonline magazine\t-7.058373844838783\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, online magazine) -> online magazine (9956ms)\nWhat is an eclipse?\tpurpose solution\t-7.072320732935189\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, purpose solution) -> purpose solution (9956ms)\nWhat is an eclipse?\tdifficult film\t-7.073714890513336\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, difficult film) -> difficult film (9956ms)\nWhat is an eclipse?\ttypical model\t-7.076128849972145\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, typical model) -> typical model (9956ms)\nWhat is an eclipse?\tsuccess story\t-7.076538954431252\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, success story) -> success story (9956ms)\nWhat is an eclipse?\tglobal phenomenon\t-7.076649961163242\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, global phenomenon) -> global phenomenon (9973ms)\nWhat is an eclipse?\twireless platform\t-7.07917534409199\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, wireless platform) -> wireless platform (9974ms)\nWhat is an eclipse?\tgood read\t-7.089090684646612\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good read) -> good read (9973ms)\nWhat is an eclipse?\tadmire company\t-7.096650857351332\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, admire company) -> admire company (9973ms)\nWhat is an eclipse?\tknowledge\t-7.108625709298817\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (prediction of an eclipse, Instance Of, knowledge) -> knowledge (9973ms)\nWhat is an eclipse?\tcelestial pattern\t-7.110360078439232\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, celestial pattern) -> celestial pattern (9973ms)\nWhat is an eclipse?\trealtime system\t-7.113101922411672\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, realtime system) -> realtime system (9991ms)\nWhat is an eclipse?\tgood suggestion\t-7.120350673287121\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good suggestion) -> good suggestion (9991ms)\nWhat is an eclipse?\tbiggest brand\t-7.122681022856833\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, biggest brand) -> biggest brand (9991ms)\nWhat is an eclipse?\tintelligent editor\t-7.124069299527132\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intelligent editor) -> intelligent editor (9991ms)\nWhat is an eclipse?\tcyclic pattern\t-7.124069299527132\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, cyclic pattern) -> cyclic pattern (9990ms)\nWhat is an eclipse?\tintegrated environment\t-7.129552987472012\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, integrated environment) -> integrated environment (9991ms)\nWhat is an eclipse?\tamazing product\t-7.130334358864995\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, amazing product) -> amazing product (10049ms)\nWhat is an eclipse?\ttime\t-7.130509043683604\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time of an eclipse, Instance Of, time) -> time (10050ms)\nWhat is an eclipse?\tprivate company\t-7.130636658120101\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, private company) -> private company (10050ms)\nWhat is an eclipse?\tcomplete system\t-7.1325264592980036\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, complete system) -> complete system (10050ms)\nWhat is an eclipse?\tnice place\t-7.134101633131779\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, nice place) -> nice place (10049ms)\nWhat is an eclipse?\tsoftware application\t-7.135461468662918\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, software application) -> software application (10128ms)\nWhat is an eclipse?\tbilling system\t-7.137778519389332\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, billing system) -> billing system (10128ms)\nWhat is an eclipse?\ttrio band\t-7.137778519389332\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, trio band) -> trio band (10128ms)\nWhat is an eclipse?\tcruise ship\t-7.137778519389332\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, cruise ship) -> cruise ship (10128ms)\nWhat is an eclipse?\tgood place\t-7.138342351122761\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good place) -> good place (10128ms)\nWhat is an eclipse?\tfactor\t-7.139832663132815\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (mention of an eclipse, Instance Of, factor) -> factor (10128ms)\nWhat is an eclipse?\tprivate club\t-7.140010254052466\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, private club) -> private club (10144ms)\nWhat is an eclipse?\tregistered charity\t-7.148198620299144\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, registered charity) -> registered charity (10144ms)\nWhat is an eclipse?\tmemoir\t-7.1514848211951385\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Light from an Eclipse, Instance Of, memoir) -> memoir (10144ms)\nWhat is an eclipse?\tapplication framework\t-7.152584478311348\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, application framework) -> application framework (10144ms)\nWhat is an eclipse?\tcircumstance\t-7.17685756065902\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (testing an Eclipse-based application, Instance Of, circumstance) -> circumstance (10144ms)\nWhat is an eclipse?\tbrainer\t-7.243897573823071\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Custom II for an Eclipse, Instance Of, brainer) -> brainer (10165ms)\nWhat is an eclipse?\tJapanese made car\t-7.310076614374316\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Japanese made car) -> Japanese made car (10164ms)\nWhat is an eclipse?\tarea\t-7.373425639796428\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (creating a JAVA project in an Eclipse workspace, Instance Of, area) -> area (10164ms)\nWhat is an eclipse?\tbook\t-7.382397561562472\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> (The Short Second Life of Bree Tanner: An Eclipse Novella, Instance Of, book) -> book (10164ms)\nWhat is an eclipse?\tOrganisations\t-7.485960981810836\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Organisations) -> Organisations (10165ms)\nWhat is an eclipse?\tshort day variety\t-7.513439501055011\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, short day variety) -> short day variety (10179ms)\nWhat is an eclipse?\thigh end brand\t-7.5256222735549985\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, high end brand) -> high end brand (10179ms)\nWhat is an eclipse?\tMitsubishi Eclipse\t-7.619817584823058\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2011 Mitsubishi Eclipse Spyder, Model, Mitsubishi Eclipse) -> Mitsubishi Eclipse (11247ms)\nWhat is an eclipse?\tPITA\t-7.667230076815279\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, PITA) -> PITA (10179ms)\nWhat is an eclipse?\tEclipse 500\t-8.096650857351332\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Eclipse Aviation, Aircraft Models Manufactured, Eclipse 500) -> Eclipse 500 (11247ms)\nWhat is an eclipse?\t1995 Mitsubishi Eclipse Convertible\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1995 Mitsubishi Eclipse Convertible) -> 1995 Mitsubishi Eclipse Convertible (11557ms)\nWhat is an eclipse?\t2002 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2002 Mitsubishi Eclipse Hatchback) -> 2002 Mitsubishi Eclipse Hatchback (11402ms)\nWhat is an eclipse?\t2002 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2002 Mitsubishi Eclipse Spyder) -> 2002 Mitsubishi Eclipse Spyder (11297ms)\nWhat is an eclipse?\t2008 Mitsubishi Eclipse Coupe\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2008 Mitsubishi Eclipse Coupe) -> 2008 Mitsubishi Eclipse Coupe (11419ms)\nWhat is an eclipse?\t1994 Mitsubishi Eclipse\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1994 Mitsubishi Eclipse) -> 1994 Mitsubishi Eclipse (11451ms)\nWhat is an eclipse?\t2006 Mitsubishi Eclipse Coupe\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2006 Mitsubishi Eclipse Coupe) -> 2006 Mitsubishi Eclipse Coupe (11368ms)\nWhat is an eclipse?\t2009 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2009 Mitsubishi Eclipse GT Spyder, Model Year, 2009 Mitsubishi Eclipse Spyder) -> 2009 Mitsubishi Eclipse Spyder (11557ms)\nWhat is an eclipse?\t1989 Mitsubishi Eclipse\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1989 Mitsubishi Eclipse) -> 1989 Mitsubishi Eclipse (11419ms)\nWhat is an eclipse?\t2005 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2005 Mitsubishi Eclipse Hatchback) -> 2005 Mitsubishi Eclipse Hatchback (12072ms)\nWhat is an eclipse?\t1993 Mitsubishi Eclipse\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1993 Mitsubishi Eclipse) -> 1993 Mitsubishi Eclipse (11297ms)\nWhat is an eclipse?\t2007 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2007 Mitsubishi Eclipse GT Spyder, Model Year, 2007 Mitsubishi Eclipse Spyder) -> 2007 Mitsubishi Eclipse Spyder (11678ms)\nWhat is an eclipse?\t2010 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2010 Mitsubishi Eclipse Spyder) -> 2010 Mitsubishi Eclipse Spyder (11678ms)\nWhat is an eclipse?\t1992 Mitsubishi Eclipse\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1992 Mitsubishi Eclipse) -> 1992 Mitsubishi Eclipse (11402ms)\nWhat is an eclipse?\t2011 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2011 Mitsubishi Eclipse Spyder) -> 2011 Mitsubishi Eclipse Spyder (11557ms)\nWhat is an eclipse?\t2009 Mitsubishi Eclipse Coupe\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2009 Mitsubishi Eclipse Coupe) -> 2009 Mitsubishi Eclipse Coupe (11419ms)\nWhat is an eclipse?\t2005 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2005 Mitsubishi Eclipse Spyder) -> 2005 Mitsubishi Eclipse Spyder (11619ms)\nWhat is an eclipse?\t1999 Mitsubishi Eclipse Convertible\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1999 Mitsubishi Eclipse Convertible) -> 1999 Mitsubishi Eclipse Convertible (11678ms)\nWhat is an eclipse?\t1998 Mitsubishi Eclipse Convertible\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1998 Mitsubishi Eclipse Convertible) -> 1998 Mitsubishi Eclipse Convertible (11368ms)\nWhat is an eclipse?\t1995 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1995 Mitsubishi Eclipse Hatchback) -> 1995 Mitsubishi Eclipse Hatchback (11297ms)\nWhat is an eclipse?\t2012 Mitsubishi Eclipse Coupe\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2012 Mitsubishi Eclipse GT, Model Year, 2012 Mitsubishi Eclipse Coupe) -> 2012 Mitsubishi Eclipse Coupe (11678ms)\nWhat is an eclipse?\t2000 Mitsubishi Eclipse Convertible\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2000 Mitsubishi Eclipse Convertible) -> 2000 Mitsubishi Eclipse Convertible (11368ms)\nWhat is an eclipse?\t1991 Mitsubishi Eclipse\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1991 Mitsubishi Eclipse) -> 1991 Mitsubishi Eclipse (11419ms)\nWhat is an eclipse?\t2008 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2008 Mitsubishi Eclipse Spyder) -> 2008 Mitsubishi Eclipse Spyder (11402ms)\nWhat is an eclipse?\t1990 Mitsubishi Eclipse\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1990 Mitsubishi Eclipse) -> 1990 Mitsubishi Eclipse (11618ms)\nWhat is an eclipse?\t1997 Mitsubishi Eclipse Convertible\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1997 Mitsubishi Eclipse Convertible) -> 1997 Mitsubishi Eclipse Convertible (11618ms)\nWhat is an eclipse?\t2003 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2003 Mitsubishi Eclipse Hatchback) -> 2003 Mitsubishi Eclipse Hatchback (11451ms)\nWhat is an eclipse?\t1997 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1997 Mitsubishi Eclipse Hatchback) -> 1997 Mitsubishi Eclipse Hatchback (11557ms)\nWhat is an eclipse?\t2001 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2001 Mitsubishi Eclipse Spyder) -> 2001 Mitsubishi Eclipse Spyder (11557ms)\nWhat is an eclipse?\t2000 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2000 Mitsubishi Eclipse Hatchback) -> 2000 Mitsubishi Eclipse Hatchback (11557ms)\nWhat is an eclipse?\t1998 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1998 Mitsubishi Eclipse Hatchback) -> 1998 Mitsubishi Eclipse Hatchback (11402ms)\nWhat is an eclipse?\t2004 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2004 Mitsubishi Eclipse Hatchback) -> 2004 Mitsubishi Eclipse Hatchback (11537ms)\nWhat is an eclipse?\t2007 Mitsubishi Eclipse Coupe\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2007 Mitsubishi Eclipse Coupe) -> 2007 Mitsubishi Eclipse Coupe (11537ms)\nWhat is an eclipse?\t2004 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2004 Mitsubishi Eclipse Spyder) -> 2004 Mitsubishi Eclipse Spyder (11678ms)\nWhat is an eclipse?\t2012 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2012 Mitsubishi Eclipse Spyder) -> 2012 Mitsubishi Eclipse Spyder (11453ms)\nWhat is an eclipse?\t1999 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1999 Mitsubishi Eclipse Hatchback) -> 1999 Mitsubishi Eclipse Hatchback (11402ms)\nWhat is an eclipse?\t2011 Mitsubishi Eclipse Coupe\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2011 Mitsubishi Eclipse GT, Model Year, 2011 Mitsubishi Eclipse Coupe) -> 2011 Mitsubishi Eclipse Coupe (11536ms)\nWhat is an eclipse?\t2001 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2001 Mitsubishi Eclipse Hatchback) -> 2001 Mitsubishi Eclipse Hatchback (11297ms)\nWhat is an eclipse?\t1996 Mitsubishi Eclipse Convertible\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1996 Mitsubishi Eclipse Convertible) -> 1996 Mitsubishi Eclipse Convertible (11297ms)\nWhat is an eclipse?\t2003 Mitsubishi Eclipse Spyder\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2003 Mitsubishi Eclipse Spyder) -> 2003 Mitsubishi Eclipse Spyder (11537ms)\nWhat is an eclipse?\t1996 Mitsubishi Eclipse Hatchback\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1996 Mitsubishi Eclipse Hatchback) -> 1996 Mitsubishi Eclipse Hatchback (11368ms)\nWhat is an eclipse?\t2010 Mitsubishi Eclipse Coupe\t-8.500518059102518\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2010 Mitsubishi Eclipse GS, Model Year, 2010 Mitsubishi Eclipse Coupe) -> 2010 Mitsubishi Eclipse Coupe (11619ms)\nWhat is an eclipse?\tIBM\t-8.57231479111083\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be a by, $x) -> (Eclipse, was originally a proprietary product developed by, IBM) -> IBM (12072ms)\nWhat is an eclipse?\tEclipse IDE\t-8.784160672250573\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be a by, $x) -> (the Eclipse RCP, is a by-product of, Eclipse IDE) -> Eclipse IDE (12072ms)\nWhat is an eclipse?\tevent\t-8.967551762006671\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, event) -> event (10179ms)\nWhat is an eclipse?\tJoel Harris\t-9.049592344733682\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be a by, $x) -> (Solar Eclipses, is a new book by, Joel Harris) -> Joel Harris (12073ms)\nWhat is an eclipse?\textension\t-9.160289202027375\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (ECLIPSE, Instance Of, extension) -> extension (10179ms)\nWhat is an eclipse?\tstory\t-9.198739630479643\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipsed, Instance Of, story) -> story (10179ms)\nWhat is an eclipse?\twork\t-9.213722161537802\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, work) -> work (10194ms)\nWhat is an eclipse?\tmoment\t-9.230629194828174\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, moment) -> moment (10194ms)\nWhat is an eclipse?\thost\t-9.25901958943625\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, host) -> host (10194ms)\nWhat is an eclipse?\tworld\t-9.26205619215836\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, world) -> world (10194ms)\nWhat is an eclipse?\tportal\t-9.273501059033201\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, portal) -> portal (10194ms)\nWhat is an eclipse?\tband\t-9.276986287509086\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, band) -> band (10194ms)\nWhat is an eclipse?\tS.Meyer\t-9.292475958841662\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be a by, $x) -> (Eclipse Twilight, is a work by, S.Meyer) -> S.Meyer (12072ms)\nWhat is an eclipse?\ttechnology\t-9.29553956385304\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, technology) -> technology (10213ms)\nWhat is an eclipse?\tshooter\t-9.298914714809245\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, shooter) -> shooter (10213ms)\nWhat is an eclipse?\tabstraction\t-9.341988680026748\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, abstraction) -> abstraction (10213ms)\nWhat is an eclipse?\tfact\t-9.349282579555918\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, fact) -> fact (10213ms)\nWhat is an eclipse?\tlady\t-9.349819364996609\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, lady) -> lady (10213ms)\nWhat is an eclipse?\tboard\t-9.35113786747764\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, board) -> board (10213ms)\nWhat is an eclipse?\tRio de Janeiro\t-9.750930162507398\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Summit, was held in, Rio de Janeiro) -> Rio de Janeiro (12072ms)\nWhat is an eclipse?\tEarth orbit\t-9.80102322497383\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an artificial Earth satellite, is located in, Earth orbit) -> Earth orbit (12260ms)\nWhat is an eclipse?\tuse\t-9.908102055595904\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth auger, is in, use) -> use (12260ms)\nWhat is an eclipse?\tthe Great Depression\t-9.959883119421256\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth, is therefore still in, the Great Depression) -> the Great Depression (12260ms)\nWhat is an eclipse?\tsafety standards\t-10.019920283920966\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth ground, is shown in, safety standards) -> safety standards (12260ms)\nWhat is an eclipse?\tmore concrete evidence\t-10.205053248144408\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an old earth, is based on considerably, more concrete evidence) -> more concrete evidence (12260ms)\nWhat is an eclipse?\t625\t-10.221752882807339\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth impact, are 1 in, 625) -> 625 (12305ms)\nWhat is an eclipse?\tPostgres Plus Advanced Server\t-10.241534474522316\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Eclipse, supports modeling for, Postgres Plus Advanced Server) -> Postgres Plus Advanced Server (12305ms)\nWhat is an eclipse?\tsocial networks\t-10.246861277888964\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an epic 387,870.5 Earth years, are spent on, social networks) -> social networks (12305ms)\nWhat is an eclipse?\tthe ITRF\t-10.300174488961188\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth station, is known in, the ITRF) -> the ITRF (12305ms)\nWhat is an eclipse?\ta mission\t-10.315703751841172\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth ship, is sent on, a mission) -> a mission (12305ms)\nWhat is an eclipse?\ta couch\t-10.361617456296182\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth woman, are sitting on, a couch) -> a couch (12305ms)\nWhat is an eclipse?\tVenus\t-10.388069223293947\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an early earth, would be seen in, Venus) -> Venus (12329ms)\nWhat is an eclipse?\tEpsilon Aurigae\t-10.395256990880284\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> (Epsilon Aurigae, is what?s known as, an eclipsing star) -> Epsilon Aurigae (12329ms)\nWhat is an eclipse?\ta spacecraft\t-10.405007737802414\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth-like environment, be simulated on, a spacecraft) -> a spacecraft (12329ms)\nWhat is an eclipse?\ta man form\t-10.426679346216398\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth form, was built on, a man form) -> a man form (12329ms)\nWhat is an eclipse?\tSydney\t-10.434676552651606\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Expanding Earth Symposium, was held in, Sydney) -> Sydney (12329ms)\nWhat is an eclipse?\tBreed?s Hill\t-10.439058113938634\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth redoubt, was built on, Breed?s Hill) -> Breed?s Hill (12329ms)\nWhat is an eclipse?\ta pedestal\t-10.45379767898596\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth being, can be held up on, a pedestal) -> a pedestal (12345ms)\nWhat is an eclipse?\tArmenia\t-10.456311528813092\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Charter Youth Group, was established in, Armenia) -> Armenia (12344ms)\nWhat is an eclipse?\tan east/west axis\t-10.463025951550451\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth-sheltered home, should be set on, an east/west axis) -> an east/west axis (12344ms)\nWhat is an eclipse?\tthe Pacific Ocean\t-10.476201903406782\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth-observation satellite, is in, the Pacific Ocean) -> the Pacific Ocean (12344ms)\nWhat is an eclipse?\tthe Kinder Valley\t-10.480781944810253\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth Dam, was constructed in, the Kinder Valley) -> the Kinder Valley (12344ms)\nWhat is an eclipse?\tan Exd cable gland entry\t-10.540378437052519\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth tag, be used on, an Exd cable gland entry) -> an Exd cable gland entry (12344ms)\nWhat is an eclipse?\tgood confluence\t-10.555725272561107\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth-centered solar system, was in, good confluence) -> good confluence (12361ms)\nWhat is an eclipse?\tAGI website\t-10.56520054062425\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An EarthImager 3D Demo version, is available on, AGI website) -> AGI website (12360ms)\nWhat is an eclipse?\tone class period\t-10.593652393575901\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth Day activity, can be done in, one class period) -> one class period (12361ms)\nWhat is an eclipse?\tcoronagraph images\t-10.66182895825007\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth-directed CME, is detected in, coronagraph images) -> coronagraph images (12361ms)\nWhat is an eclipse?\tchapter 14\t-10.717587946334966\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an ?old ? Earth, is presented in, chapter 14) -> chapter 14 (12361ms)\nWhat is an eclipse?\t2-5 days\t-10.752102733188318\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth-Mars trip, could be made comfortably in, 2-5 days) -> 2-5 days (12361ms)\nWhat is an eclipse?\ta credit classification\t-10.759753221139492\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth, is often on, a credit classification) -> a credit classification (12422ms)\nWhat is an eclipse?\tDJ Eclipse\t-10.778581183001197\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (DJ Eclipse, Also known as, Eclipse, DJ) -> DJ Eclipse (14966ms)\nWhat is an eclipse?\ta constant state\t-10.858643019675545\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an online Earth science data locator, is in, a constant state) -> a constant state (12422ms)\nWhat is an eclipse?\tfalse\t-10.907668734038673\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (ArgoEclipse, Model Versioning, false) -> false (12422ms)\nWhat is an eclipse?\ta dark night\t-10.97519963378635\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth, could be more interesting on, a dark night) -> a dark night (12422ms)\nWhat is an eclipse?\tJune 2009\t-11.301374573672797\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An additional 12 more EarthBoxes, were purchased in, June 2009) -> June 2009 (12423ms)\nWhat is an eclipse?\tJune 6 , 2008\t-11.354487038415552\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth swingby, is planned on, June 6 , 2008) -> June 6 , 2008 (12422ms)\nWhat is an eclipse?\tHallowed Be Thy Name\t-11.366501182129307\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Hallowed Be Thy Name, Also known as, Total Eclipse) -> Hallowed Be Thy Name (14967ms)\nWhat is an eclipse?\tRaul Geisler\t-11.396238972129254\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Raul Geisler, Also known as, Eclipse) -> Raul Geisler (14967ms)\nWhat is an eclipse?\tTonal Eclipse Music\t-11.492189355201125\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Tonal Eclipse Music, Also known as, Tonal Eclipse Music Company) -> Tonal Eclipse Music (14967ms)\nWhat is an eclipse?\tright now\t-11.568980220091149\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (A campaign to create an Earth flag, is going on, right now) -> right now (12521ms)\nWhat is an eclipse?\tthe far side\t-11.575939134800828\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth drake, was on, the far side) -> the far side (12521ms)\nWhat is an eclipse?\tLouisville Colonels\t-11.639580818170844\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Louisville Colonels, Previously Known As, Louisville Eclipse) -> Louisville Colonels (15137ms)\nWhat is an eclipse?\tSteve Johnson\t-11.639580818170844\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Steve Johnson, Also known as, Eclipse) -> Steve Johnson (15137ms)\nWhat is an eclipse?\tIncomplete Eclipse\t-11.639580818170844\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Incomplete Eclipse, Also known as, Partial Eclipse) -> Incomplete Eclipse (15138ms)\nWhat is an eclipse?\tTotal Eclipse\t-11.639580818170844\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Total Eclipse, Also known as, Total Eclipse Soundtrack) -> Total Eclipse (15137ms)\nWhat is an eclipse?\tChicco Secci\t-11.639580818170844\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Chicco Secci, Also known as, Eclipse) -> Chicco Secci (15137ms)\nWhat is an eclipse?\tKeith Bailey\t-11.639580818170844\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Keith Bailey, Also known as, DJ Total Eclipse) -> Keith Bailey (15137ms)\nWhat is an eclipse?\tthe future\t-11.656930040398512\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (?Eclipse, may possibly be an effective model for, the future) -> the future (12521ms)\nWhat is an eclipse?\tThe Eclipse: A Memoir of Suicide\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Eclipse: A Memoir of Suicide, Also known as, The Eclipse) -> The Eclipse: A Memoir of Suicide (15353ms)\nWhat is an eclipse?\tTogether in Eclipse Bay\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Together in Eclipse Bay, Also known as, Eclipse Bay.) -> Together in Eclipse Bay (15377ms)\nWhat is an eclipse?\tRequiem for a Gringo\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Requiem for a Gringo, Also known as, Duel in the Eclipse) -> Requiem for a Gringo (15246ms)\nWhat is an eclipse?\tAlmay 'Eclipse' TV Spot\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Almay 'Eclipse' TV Spot, Also known as, Almay \"Eclipse\" TV Spot) -> Almay 'Eclipse' TV Spot (15354ms)\nWhat is an eclipse?\tCrucifixion darkness and eclipse\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Crucifixion darkness and eclipse, Also known as, Crucifixion eclipse) -> Crucifixion darkness and eclipse (15246ms)\nWhat is an eclipse?\tEclipse vs. Force Mass Motion\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse vs. Force Mass Motion, Also known as, Eclipse & Force Mass Motion) -> Eclipse vs. Force Mass Motion (15377ms)\nWhat is an eclipse?\tSoil & Eclipse\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Soil & Eclipse, Also known as, Soil and Eclipse) -> Soil & Eclipse (15246ms)\nWhat is an eclipse?\tEclipse: A Novel of Lewis and Clark\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse: A Novel of Lewis and Clark, Also known as, Eclipse) -> Eclipse: A Novel of Lewis and Clark (15353ms)\nWhat is an eclipse?\tBCI Eclipse Company, LLC\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (BCI Eclipse Company, LLC, Also known as, BCI Eclipse Co LLC) -> BCI Eclipse Company, LLC (15137ms)\nWhat is an eclipse?\tEclipse (K?lte Container remix)\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse (K?lte Container remix), Also known as, Eclipse (Kalte Container remix)) -> Eclipse (K?lte Container remix) (15246ms)\nWhat is an eclipse?\tPok hoh ka fe\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Pok hoh ka fe, Also known as, Eclipse) -> Pok hoh ka fe (15137ms)\nWhat is an eclipse?\tMuv-Luv Alternative\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Muv-Luv Alternative, Also known as, Total Eclipse) -> Muv-Luv Alternative (15353ms)\nWhat is an eclipse?\t??????\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (??????, Also known as, Eclipse) -> ?????? (15246ms)\nWhat is an eclipse?\tTanzania: political reform in eclipse : crises and cleavage in political parties\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Tanzania: political reform in eclipse : crises and cleavage in political parties, Also known as, Political reform in eclipse) -> Tanzania: political reform in eclipse : crises and cleavage in political parties (15246ms)\nWhat is an eclipse?\tCARDIOGENESIS CORP /CA\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (CARDIOGENESIS CORP /CA, Also known as, ECLIPSE SURGICAL TECHNOLOGIES INC) -> CARDIOGENESIS CORP /CA (15353ms)\nWhat is an eclipse?\tThe Blue Eclipse\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Blue Eclipse, Also known as, Blue Eclipse, The) -> The Blue Eclipse (15353ms)\nWhat is an eclipse?\tWhite Line Highway\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (White Line Highway, Also known as, Solar Eclipse) -> White Line Highway (15353ms)\nWhat is an eclipse?\tEclipse di Luna - Park Place\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse di Luna - Park Place, Also known as, Eclipse di Luna) -> Eclipse di Luna - Park Place (15353ms)\nWhat is an eclipse?\tLuner Eclipse (Inst.)\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Luner Eclipse (Inst.), Also known as, Lunar Eclipse (Instrumental Version)) -> Luner Eclipse (Inst.) (15377ms)\nWhat is an eclipse?\tMatt Gall\t-11.723856629918382\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Matt Gall, Also known as, Total Eclipse) -> Matt Gall (15246ms)\nWhat is an eclipse?\t2200\t-11.788070958605081\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: ($x, element, eclipse) -> (2200, contains Besselian elements for, the 570 solar eclipses) -> 2200 (12521ms)\nWhat is an eclipse?\t1997\t-11.795802123640874\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Charter Commission, was formed in, 1997) -> 1997 (12521ms)\nWhat is an eclipse?\tmovie\t-11.848470528403208\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be the kind of, $x) -> (Eclipse, is the kind of, movie) -> movie (10293ms)\nWhat is an eclipse?\t2003\t-11.893404910461854\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Conservation Corps volunteer, was murdered in, 2003) -> 2003 (12577ms)\nWhat is an eclipse?\t1952\t-11.905331191572134\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth/rockfill dam, was constructed in, 1952) -> 1952 (12577ms)\nWhat is an eclipse?\tTotal eclipse\t-11.927067137032573\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Total eclipse, Also known as, Total eclipse (Motion picture)) -> Total eclipse (15377ms)\nWhat is an eclipse?\tthe hills\t-11.936382196254097\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An ochrous earth, is also found in, the hills) -> the hills (12577ms)\nWhat is an eclipse?\tthe roots\t-11.952297762283015\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth Treasure Vase, was buried in, the roots) -> the roots (12577ms)\nWhat is an eclipse?\tthe kitchen\t-11.95760293339189\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An extra earthed socket, was made in, the kitchen) -> the kitchen (12577ms)\nWhat is an eclipse?\tMay 20th , 2012\t-11.973526350278231\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> (May 20th , 2012, is known as, an Annular Solar Eclipse) -> May 20th , 2012 (12674ms)\nWhat is an eclipse?\t1999\t-11.990174692127166\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Charter dialogue process, was initiated in, 1999) -> 1999 (12674ms)\nWhat is an eclipse?\ttruth\t-12.020660324148421\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an eternal kingdom...The earth, will be in, truth) -> truth (12674ms)\nWhat is an eclipse?\tthe material world\t-12.04470411771431\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth card, is usually in, the material world) -> the material world (12674ms)\nWhat is an eclipse?\tthe same orbit\t-12.05466346862827\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an anti-earth, was discovered in, the same orbit) -> the same orbit (12674ms)\nWhat is an eclipse?\turanium ores\t-12.059695919843104\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an alkaline earth metal, is found in, uranium ores) -> uranium ores (12675ms)\nWhat is an eclipse?\tthe second column\t-12.08796511104596\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An alkaline earth, is any element in, the second column) -> the second column (12691ms)\nWhat is an eclipse?\tthe next packing\t-12.092283563236204\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth tone or two, will be included in, the next packing) -> the next packing (12690ms)\nWhat is an eclipse?\tthe research stage\t-12.114947991132958\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an anelastic earth, are still in, the research stage) -> the research stage (12690ms)\nWhat is an eclipse?\tZonin' (feat. 427)\t-12.116414090699118\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Zonin' (feat. 427), Also known as, Zonin' (feat. Eclipse 427)) -> Zonin' (feat. 427) (15401ms)\nWhat is an eclipse?\tEclipse (1988)\t-12.116414090699118\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse (1988), Also known as, Eclipse) -> Eclipse (1988) (15377ms)\nWhat is an eclipse?\tThe Eclipse, Part 1\t-12.116414090699118\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Eclipse, Part 1, Also known as, The Eclipse (1)) -> The Eclipse, Part 1 (15401ms)\nWhat is an eclipse?\tC/1948 V1\t-12.116414090699118\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (C/1948 V1, Also known as, Eclipse Comet of 1948) -> C/1948 V1 (15377ms)\nWhat is an eclipse?\tEclipse 400\t-12.116414090699118\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse 400, Also known as, Eclipse ECJ) -> Eclipse 400 (15401ms)\nWhat is an eclipse?\t427\t-12.116414090699118\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (427, Also known as, Eclipse 427) -> 427 (15401ms)\nWhat is an eclipse?\tThe Eclipse, Part 2\t-12.116414090699118\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Eclipse, Part 2, Also known as, The Eclipse (2)) -> The Eclipse, Part 2 (15401ms)\nWhat is an eclipse?\tUntitled (Cr?me Eclipse 01)\t-12.116414090699118\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Untitled (Cr?me Eclipse 01), Also known as, Untitled (Creme Eclipse 01)) -> Untitled (Cr?me Eclipse 01) (15377ms)\nWhat is an eclipse?\tthe last lines\t-12.133390899988488\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an eternal earth, is rejected in, the last lines) -> the last lines (12690ms)\nWhat is an eclipse?\tthe form\t-12.133453703305523\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Witch, is in, the form) -> the form (12690ms)\nWhat is an eclipse?\tthe virgin light\t-12.182509851908893\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth-like planet, is bathed in, the virgin light) -> the virgin light (12690ms)\nWhat is an eclipse?\tfurnishings\t-12.197141872522902\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth-tone palette, is favored in, furnishings) -> furnishings (12705ms)\nWhat is an eclipse?\tthe right place\t-12.24846182417198\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth-like planet, is found in, the right place) -> the right place (12705ms)\nWhat is an eclipse?\tVox Terrae\t-12.249577169867305\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Vox Terrae, Also known as, Eclipse Music Group) -> Vox Terrae (15401ms)\nWhat is an eclipse?\tThe Eclipse\t-12.249577169867305\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Eclipse, Also known as, Eclipse, The) -> The Eclipse (15401ms)\nWhat is an eclipse?\tthe ground\t-12.262667282785072\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth oven, is simply a pit in, the ground) -> the ground (12705ms)\nWhat is an eclipse?\tthe target plane\t-12.287793820106241\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth close approach, are studied in, the target plane) -> the target plane (12706ms)\nWhat is an eclipse?\theaven\t-12.292893478520247\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth, shall be bound also in, heaven) -> heaven (12705ms)\nWhat is an eclipse?\tthe exclamation point\t-12.30505049167429\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth globe, is the dot in, the exclamation point) -> the exclamation point (12705ms)\nWhat is an eclipse?\tthe spirit\t-12.314839450807977\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth, is embedded in, the spirit) -> the spirit (12720ms)\nWhat is an eclipse?\tthe pulse\t-12.347643235111779\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth Sandwich, is must have his finger on, the pulse) -> the pulse (12720ms)\nWhat is an eclipse?\tthe cards\t-12.360817723390245\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth-like planet, is on, the cards) -> the cards (12720ms)\nWhat is an eclipse?\tthe midst\t-12.379187291228325\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth starship, are stranded in, the midst) -> the midst (12721ms)\nWhat is an eclipse?\tthe famous Lumbini Core Garden\t-12.383380114650695\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth Prayer, was recited in, the famous Lumbini Core Garden) -> the famous Lumbini Core Garden (12720ms)\nWhat is an eclipse?\tWilliam\t-12.3860137719049\tWhat is an eclipse? -> what be [ an eclipse ] ? -> what exactly be an eclipse ? -> $x: ($x, exactly be, an eclipse) -> (William, is born exactly on, an eclipse) -> William (15401ms)\nWhat is an eclipse?\tthe context\t-12.41101842328616\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an ?earth ?, are used in, the context) -> the context (12720ms)\nWhat is an eclipse?\tthe iConEMI Receiver\t-12.412465683729707\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth ground terminal, is included on, the iConEMI Receiver) -> the iConEMI Receiver (12737ms)\nWhat is an eclipse?\tGenesis\t-12.415574980885182\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Genesis, Also known as, Prizim & Eclipse-Genesis) -> Genesis (15431ms)\nWhat is an eclipse?\tAltitude\t-12.415574980885182\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Altitude, Also known as, Eclipse) -> Altitude (15431ms)\nWhat is an eclipse?\tEclipse\t-12.415574980885182\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse, Also known as, Warriors: Eclipse) -> Eclipse (15455ms)\nWhat is an eclipse?\tVenomous\t-12.415574980885182\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Venomous, Also known as, Eclipse) -> Venomous (15431ms)\nWhat is an eclipse?\tthe base\t-12.416845402928832\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth ring member 48, is located in, the base) -> the base (12737ms)\nWhat is an eclipse?\tthe night sky\t-12.434645648490031\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (Earth ,?an ?Earth, is visible in, the night sky) -> the night sky (12736ms)\nWhat is an eclipse?\tthe laws\t-12.435775958730634\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth Jurisprudence, is implicit in, the laws) -> the laws (12736ms)\nWhat is an eclipse?\tan intelligent usage\t-12.450907072472825\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (an intelligent usage, convey its meaning in, Christian Science) -> an intelligent usage (12737ms)\nWhat is an eclipse?\tthe planet\t-12.461119818133866\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth day, is cheapest--on the dark side of, the planet) -> the planet (12751ms)\nWhat is an eclipse?\tthe bank\t-12.477760665788256\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth rampant, was built on, the bank) -> the bank (12751ms)\nWhat is an eclipse?\tthe principle\t-12.479985858510709\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an old earth, is based on, the principle) -> the principle (12751ms)\nWhat is an eclipse?\ta word\t-12.500373858364993\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (a word, has a slightly different meaning in, Science) -> a word (12751ms)\nWhat is an eclipse?\tthe Vietnam war\t-12.504317924561706\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be be an eclipse on tv ? -> $x: ($x, be be an eclipse on, tv) -> $x: ($x, eclipse on, tv) -> (the Vietnam war, might be eclipsed on, the TV news) -> the Vietnam war (13007ms)\nWhat is an eclipse?\tthe interior\t-12.521702203080892\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth resistance survey, was conducted in, the interior) -> the interior (12750ms)\nWhat is an eclipse?\tthe minds\t-12.52612318778867\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an old earth, was firmly entrenched in, the minds) -> the minds (12751ms)\nWhat is an eclipse?\tthe surface\t-12.542922940218684\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth house, is currently parked on, the surface) -> the surface (12768ms)\nWhat is an eclipse?\tthe production\t-12.583557925381726\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an FYI , rare earth, is a critical component in, the production) -> the production (12767ms)\nWhat is an eclipse?\tshape\t-12.591539760534525\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth altar, is squar in, shape) -> shape (12767ms)\nWhat is an eclipse?\tthe paint\t-12.602591486889642\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth friendly compound, is mixed in with, the paint) -> the paint (12767ms)\nWhat is an eclipse?\tdispute\t-12.62412986261678\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth-shattering mathematical proof, is in, dispute) -> dispute (12768ms)\nWhat is an eclipse?\tEnergy\t-12.635517407532344\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (Energy, has a special meaning in, science) -> Energy (12767ms)\nWhat is an eclipse?\tthe tower\t-12.646801386669715\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth tone color, shall be used on, the tower) -> the tower (12791ms)\nWhat is an eclipse?\tclay\t-12.64724424163574\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth mixture, is high in, clay) -> clay (12790ms)\nWhat is an eclipse?\tplace\t-12.649012614437932\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Day, is already in, place) -> place (12790ms)\nWhat is an eclipse?\tZhang Heng\t-12.653079541264606\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Zhang Heng, Known for, Lunar eclipse) -> Zhang Heng (15478ms)\nWhat is an eclipse?\tHamilton Dean\t-12.653079541264606\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Hamilton Dean, Also known as, Eclipse) -> Hamilton Dean (15478ms)\nWhat is an eclipse?\tterms\t-12.657591458332103\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth observing satellite, are specified in, terms) -> terms (12790ms)\nWhat is an eclipse?\tPredict\t-12.660274942976818\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (Predict, has a very distinct meaning in, science) -> Predict (12790ms)\nWhat is an eclipse?\tthe boards\t-12.689400380145797\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an ABC Earth Day special ??DiCaprio, is currently on, the boards) -> the boards (12790ms)\nWhat is an eclipse?\tlove\t-12.694106700619102\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth woman, had been in, love) -> love (12810ms)\nWhat is an eclipse?\tmitochondria\t-12.694990939722492\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth metal, is present in, mitochondria) -> mitochondria (12810ms)\nWhat is an eclipse?\tview\t-12.704081119056282\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An Earth Installation, is on, view) -> view (12811ms)\nWhat is an eclipse?\tmodality\t-12.806399849222625\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth sign, is Fixed in, modality) -> modality (12810ms)\nWhat is an eclipse?\tprocess\t-12.811506462937372\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth-Juno synodic cycle, are newly in, process) -> process (12810ms)\nWhat is an eclipse?\tThe hybrid eclipse\t-12.868555486901002\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> (The hybrid eclipse, is also known as, an annular/total eclipse) -> The hybrid eclipse (12810ms)\nWhat is an eclipse?\tsite\t-12.87448304534378\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth moving unit, is on, site) -> site (12832ms)\nWhat is an eclipse?\tcreepy-crawlies\t-12.907619519505975\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, depends on, creepy-crawlies) -> creepy-crawlies (14405ms)\nWhat is an eclipse?\tfindings\t-12.922458552517245\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An Advanced Earth-Space Infrastructure, is based on, findings) -> findings (12831ms)\nWhat is an eclipse?\tthe Moon\t-12.950107930886478\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, found on, the Moon) -> the Moon (14405ms)\nWhat is an eclipse?\tIntegration\t-12.996251169854386\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (Integration, mean in, the social sciences or humanities) -> Integration (12831ms)\nWhat is an eclipse?\ta 700 year voyage\t-13.147248193815612\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, are on, a 700 year voyage) -> a 700 year voyage (14405ms)\nWhat is an eclipse?\teclipse\t-13.150039494533168\tWhat is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be the type of, $x) -> (Solar eclipse, is the type of, eclipse) -> eclipse (12831ms)\nWhat is an eclipse?\tthe Wasatch Mountains east\t-13.216610162582281\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, settles on, the Wasatch Mountains east) -> the Wasatch Mountains east (14405ms)\nWhat is an eclipse?\tAn annular eclipse\t-13.229616702657312\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (An annular eclipse, is a well-known type of, solar eclipse) -> An annular eclipse (15478ms)\nWhat is an eclipse?\tsolar energy\t-13.237981781152328\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, depends on, solar energy) -> solar energy (14405ms)\nWhat is an eclipse?\taverage approximately\t-13.242441565530665\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, average approximately) -> average approximately (14405ms)\nWhat is an eclipse?\tmolecular oxygen\t-13.287889051131984\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, survive on, molecular oxygen) -> molecular oxygen (14503ms)\nWhat is an eclipse?\tCO2\t-13.324097266435007\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, depends on, CO2) -> CO2 (14503ms)\nWhat is an eclipse?\tThe district\t-13.368487731622757\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The district, mean score in, FCAT Science) -> The district (12831ms)\nWhat is an eclipse?\tan internet forum\t-13.429359607464772\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, lie on, an internet forum) -> an internet forum (14503ms)\nWhat is an eclipse?\tdanger of being hit by an asteroid\t-13.469141616528734\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, danger of being hit by an asteroid) -> danger of being hit by an asteroid (14504ms)\nWhat is an eclipse?\tan interglacial period\t-13.477124975761622\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, an interglacial period) -> an interglacial period (14503ms)\nWhat is an eclipse?\ta spirited holiday finale\t-13.485977487653876\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth ? ?, takes on, a spirited holiday finale) -> a spirited holiday finale (14504ms)\nWhat is an eclipse?\tthe Art Bell\t-13.546102900760573\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, Release on, the Art Bell) -> the Art Bell (15500ms)\nWhat is an eclipse?\tThe eclipse of Darwinism\t-13.557858818900504\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The eclipse of Darwinism, Also known as, The eclipse of Darwin) -> The eclipse of Darwinism (15500ms)\nWhat is an eclipse?\tJava?s success\t-13.571419283553276\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Java?s success, has been the phenomenon known as, Eclipse) -> Java?s success (15500ms)\nWhat is an eclipse?\tpopular video sites\t-13.571465885876858\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, placed on, popular video sites) -> popular video sites (15500ms)\nWhat is an eclipse?\ta cross\t-13.589861929264455\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, hung on, a cross) -> a cross (15500ms)\nWhat is an eclipse?\tNantucket\t-13.638354051673852\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, unload on, Nantucket) -> Nantucket (15501ms)\nWhat is an eclipse?\ta blind\t-13.675080667383526\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a blind) -> a blind (15500ms)\nWhat is an eclipse?\tfour legs\t-13.694601138738587\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, walked on, four legs) -> four legs (15500ms)\nWhat is an eclipse?\ta system\t-13.72118415634247\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, a system) -> a system (15523ms)\nWhat is an eclipse?\tone another\t-13.7574494410583\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, depend on, one another) -> one another (15523ms)\nWhat is an eclipse?\ta period of warming\t-13.766331567594204\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a period of warming) -> a period of warming (15523ms)\nWhat is an eclipse?\tRoad/Race\t-13.781267228828774\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Road/Race, is well known in, the Eclipse community) -> Road/Race (15523ms)\nWhat is an eclipse?\tless than $ 2\t-13.784353157845333\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth ?, survive on, less than $ 2) -> less than $ 2 (15523ms)\nWhat is an eclipse?\ta dozen or\t-13.822596057134245\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (a dozen or, so are known to undergo, eclipses) -> a dozen or (15523ms)\nWhat is an eclipse?\ta different part of its orbit\t-13.839995027732506\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a different part of its orbit) -> a different part of its orbit (15523ms)\nWhat is an eclipse?\ta wide variety\t-13.846396889097479\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, take on, a wide variety) -> a wide variety (15523ms)\nWhat is an eclipse?\ta collision course with another planet\t-13.891470782097642\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, a collision course with another planet) -> a collision course with another planet (15545ms)\nWhat is an eclipse?\tAug. 27 , 2003\t-13.89903249737366\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, Aug. 27 , 2003) -> Aug. 27 , 2003 (15545ms)\nWhat is an eclipse?\tOct. 20\t-13.935882585961341\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, occurred on, Oct. 20) -> Oct. 20 (15545ms)\nWhat is an eclipse?\tthe rocks\t-13.953620811110433\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (The evidence for an ancient Earth, is concealed in, the rocks) -> the rocks (12848ms)\nWhat is an eclipse?\tApril 10 , 837 a.d.\t-13.99329378995964\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, April 10 , 837 a.d.) -> April 10 , 837 a.d. (15545ms)\nWhat is an eclipse?\ta developer\t-14.007082019234613\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (a developer, knows, Eclipse) -> a developer (15545ms)\nWhat is an eclipse?\tsure nobody\t-14.028769437120635\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth an, seem on, $x) -> (an Earth worth, seem intent on making, sure nobody) -> sure nobody (16549ms)\nWhat is an eclipse?\tHURRY UP!\t-14.048633411167328\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (HURRY UP!, Wanna know more about Twilight, Eclipse) -> HURRY UP! (15545ms)\nWhat is an eclipse?\tprime health\t-14.069961974656954\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, prime health) -> prime health (15545ms)\nWhat is an eclipse?\tMonday\t-14.081125982096237\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, Posted on, Monday) -> Monday (15545ms)\nWhat is an eclipse?\tan elliptical orbit around the sun\t-14.09336635202673\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, an elliptical orbit around the sun) -> an elliptical orbit around the sun (15567ms)\nWhat is an eclipse?\tnow\t-14.10072432124378\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, now) -> now (15566ms)\nWhat is an eclipse?\tMars\t-14.12611583205154\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, live on, Mars) -> Mars (15566ms)\nWhat is an eclipse?\tthe word theory\t-14.131396895831385\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (the word theory, has a drastically different meaning in, science) -> the word theory (12848ms)\nWhat is an eclipse?\tdanger of being destroyed\t-14.138350188799327\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, is in, danger of being destroyed) -> danger of being destroyed (15566ms)\nWhat is an eclipse?\ta Universe\t-14.213897682830503\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, existed in, a Universe) -> a Universe (15566ms)\nWhat is an eclipse?\ttop of water\t-14.22625041134313\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, sitting on, top of water) -> top of water (15567ms)\nWhat is an eclipse?\ta soul 's use\t-14.248826229886715\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, forced on, a soul 's use) -> a soul 's use (15566ms)\nWhat is an eclipse?\ta race track\t-14.249550402383443\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, a race track) -> a race track (15588ms)\nWhat is an eclipse?\taccount of the Titans\t-14.249929130811537\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, vexed on, account of the Titans) -> account of the Titans (15588ms)\nWhat is an eclipse?\ta budget\t-14.25721732802608\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, works on, a budget) -> a budget (15588ms)\nWhat is an eclipse?\tHell\t-14.265020383164273\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, Is On, Hell) -> Hell (15588ms)\nWhat is an eclipse?\tan axis\t-14.26580843081534\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, rotates on, an axis) -> an axis (15588ms)\nWhat is an eclipse?\tEven supposing Thales\t-14.282453876880641\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Even supposing Thales, had known the cause of, eclipses) -> Even supposing Thales (15588ms)\nWhat is an eclipse?\ta period\t-14.289914165872847\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a period) -> a period (15588ms)\nWhat is an eclipse?\tPeace\t-14.305069447400514\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, Peace) -> Peace (15588ms)\nWhat is an eclipse?\ta mess\t-14.32500777297651\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a mess) -> a mess (15610ms)\nWhat is an eclipse?\tThe term\t-14.334405044027513\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The term, acquired this meaning in, computer-science culture) -> The term (12848ms)\nWhat is an eclipse?\tthe New Deal electoral coalition\t-14.3359510201031\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (the New Deal electoral coalition, brought about, the eclipse) -> the New Deal electoral coalition (16291ms)\nWhat is an eclipse?\tdanger of destruction\t-14.380655513611039\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, danger of destruction) -> danger of destruction (15610ms)\nWhat is an eclipse?\tthe Photon Belt\t-14.387350858038056\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the Photon Belt) -> the Photon Belt (15610ms)\nWhat is an eclipse?\tapproximate energy balance\t-14.38745627615214\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, approximate energy balance) -> approximate energy balance (15610ms)\nWhat is an eclipse?\tThe word ?replicate?\t-14.397604996337883\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The word ?replicate?, does have a specific meaning in, science) -> The word ?replicate? (12848ms)\nWhat is an eclipse?\tThe term ?emulation?\t-14.401141741942268\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The term ?emulation?, has a special meaning in, computer science) -> The term ?emulation? (12865ms)\nWhat is an eclipse?\tThe White paper\t-14.401446225148222\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (The White paper, brought about, the eclipse) -> The White paper (16291ms)\nWhat is an eclipse?\tthe Slow Zone\t-14.40775197690201\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the Slow Zone) -> the Slow Zone (15610ms)\nWhat is an eclipse?\tdire crisis for survival\t-14.44422442803782\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, dire crisis for survival) -> dire crisis for survival (15610ms)\nWhat is an eclipse?\tan orbit around the Sun\t-14.459507657554322\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, moves in, an orbit around the Sun) -> an orbit around the Sun (15610ms)\nWhat is an eclipse?\tlayers\t-14.459779895353106\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An embankment dam of earth or rock, is placed in, layers) -> layers (12865ms)\nWhat is an eclipse?\ttheory\t-14.475402960448873\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (theory, has a different meaning in, science) -> theory (12864ms)\nWhat is an eclipse?\tThe term theory\t-14.477118205652921\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The term theory, has a very different meaning in, science) -> The term theory (12865ms)\nWhat is an eclipse?\ta constant state of change\t-14.483208658705719\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a constant state of change) -> a constant state of change (15610ms)\nWhat is an eclipse?\tbig trouble\t-14.571780863121944\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, big trouble) -> big trouble (15631ms)\nWhat is an eclipse?\tthe word\t-14.644319414297833\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (the word, has a special prestigious meaning in, science fiction) -> the word (12865ms)\nWhat is an eclipse?\tmortal danger\t-14.673785591290994\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, mortal danger) -> mortal danger (15631ms)\nWhat is an eclipse?\tthe Alpha quadrant\t-14.674442965592267\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, the Alpha quadrant) -> the Alpha quadrant (15631ms)\nWhat is an eclipse?\tdeep crisis\t-14.682420184992258\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, deep crisis) -> deep crisis (15631ms)\nWhat is an eclipse?\ttotal chaos\t-14.682420184992258\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, total chaos) -> total chaos (15631ms)\nWhat is an eclipse?\tfull view\t-14.694186710154947\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, full view) -> full view (15631ms)\nWhat is an eclipse?\tthe Saros\t-14.76406585313671\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (the Saros, fails to bring about, an eclipse) -> the Saros (16291ms)\nWhat is an eclipse?\ta counter-clockwise direction\t-14.769741402350407\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, rotates in, a counter-clockwise direction) -> a counter-clockwise direction (15631ms)\nWhat is an eclipse?\tan imaginary axis\t-14.785486192241159\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, rotates on, an imaginary axis) -> an imaginary axis (15631ms)\nWhat is an eclipse?\tand of itself\t-14.785802948648787\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, shattering in, and of itself) -> and of itself (15653ms)\nWhat is an eclipse?\ta cooling trend\t-14.810741930541155\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a cooling trend) -> a cooling trend (15653ms)\nWhat is an eclipse?\tquality\t-14.821472166779099\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (quality, mean in, science communication) -> quality (12878ms)\nWhat is an eclipse?\ta pure , Aboriginal state\t-14.823317865101869\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, come in, a pure , Aboriginal state) -> a pure , Aboriginal state (15653ms)\nWhat is an eclipse?\ta warming cycle\t-14.840508131799766\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a warming cycle) -> a warming cycle (15653ms)\nWhat is an eclipse?\ta great flame of radiant power\t-14.86128444022202\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, enwrapped in, a great flame of radiant power) -> a great flame of radiant power (15653ms)\nWhat is an eclipse?\tconsensus\t-14.868852093932144\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (consensus, should n?t mean squat in, science) -> consensus (12878ms)\nWhat is an eclipse?\ta transitional period\t-14.873775137881436\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a transitional period) -> a transitional period (15653ms)\nWhat is an eclipse?\tBapsi Sidhwa 's critically acclaimed novel\t-14.874153866309532\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, based on, Bapsi Sidhwa 's critically acclaimed novel) -> Bapsi Sidhwa 's critically acclaimed novel (15653ms)\nWhat is an eclipse?\tthe floor\t-14.883983818565074\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is on, the floor) -> the floor (15653ms)\nWhat is an eclipse?\tDay One\t-14.88422590728744\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, created on, Day One) -> Day One (15673ms)\nWhat is an eclipse?\tthe sunward side\t-14.916501914389888\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, the sunward side) -> the sunward side (15673ms)\nWhat is an eclipse?\ta 3rd dimension of time and space\t-14.93574185897553\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a 3rd dimension of time and space) -> a 3rd dimension of time and space (15673ms)\nWhat is an eclipse?\tEnglish\t-14.963334919187258\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, English) -> English (15673ms)\nWhat is an eclipse?\ta property\t-14.973565524858923\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (a property, known as, the Eclipse Mine) -> a property (15673ms)\nWhat is an eclipse?\tDanger\t-14.998210862241386\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, Danger) -> Danger (15673ms)\nWhat is an eclipse?\ttonus\t-15.049228438656822\tWhat is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (tonus, has a very specific meaning in, exercise science) -> tonus (12878ms)\nWhat is an eclipse?\tthe beginning '\t-15.05206771875227\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, 'in, the beginning ') -> the beginning ' (15673ms)\nWhat is an eclipse?\tthe edge\t-15.062720238013643\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, stood on, the edge) -> the edge (15673ms)\nWhat is an eclipse?\tthe outside\t-15.072092994410148\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is on, the outside) -> the outside (15693ms)\nWhat is an eclipse?\t03/09/06-07\t-15.093554775144932\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, facing on, 03/09/06-07) -> 03/09/06-07 (15693ms)\nWhat is an eclipse?\tan event\t-15.109331687191908\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (an event, known as, a secondary eclipse) -> an event (15693ms)\nWhat is an eclipse?\tthe part\t-15.134112049398013\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, the part) -> the part (15693ms)\nWhat is an eclipse?\tSector 2814\t-15.144617398135752\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, Sector 2814) -> Sector 2814 (15693ms)\nWhat is an eclipse?\tpretty bad shape\t-15.147033072941634\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, pretty bad shape) -> pretty bad shape (15693ms)\nWhat is an eclipse?\ta day\t-15.147403391506561\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, rotates in, a day) -> a day (15694ms)\nWhat is an eclipse?\tthe precipice\t-15.165058995054752\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the precipice) -> the precipice (15693ms)\nWhat is an eclipse?\tthe strategy and science\t-15.170550224865764\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, agreed on, the strategy and science) -> the strategy and science (15854ms)\nWhat is an eclipse?\tseveral places\t-15.19534393878443\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, opened in, several places) -> several places (15855ms)\nWhat is an eclipse?\trecent decades\t-15.207644063294971\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earths, warming in, recent decades) -> recent decades (15855ms)\nWhat is an eclipse?\tthe testscript plugin\t-15.24533052837027\tWhat is an eclipse? -> what be [ an eclipse ] ? -> what id an eclipse ? -> $x: ($x, id, an eclipse) -> (the testscript plugin, id for, an eclipse RCP application) -> the testscript plugin (15855ms)\nWhat is an eclipse?\t6 days or 8 days\t-15.265608426165446\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, created in, 6 days or 8 days) -> 6 days or 8 days (15855ms)\nWhat is an eclipse?\tthe '40s\t-15.265608426165446\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, cooled in, the '40s) -> the '40s (15855ms)\nWhat is an eclipse?\tSector 001\t-15.26671132709027\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, located in, Sector 001) -> Sector 001 (15854ms)\nWhat is an eclipse?\ta different axis\t-15.35024906826687\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, rotated on, a different axis) -> a different axis (15855ms)\nWhat is an eclipse?\ta large animal\t-15.35024906826687\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, sat on, a large animal) -> a large animal (15876ms)\nWhat is an eclipse?\tthe northern slope\t-15.381808947119927\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, moved on, the northern slope) -> the northern slope (15876ms)\nWhat is an eclipse?\tgroundwater\t-15.423419362592561\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, rely on, groundwater) -> groundwater (15876ms)\nWhat is an eclipse?\tcourse\t-15.4592103108734\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, course) -> course (15876ms)\nWhat is an eclipse?\tThe organizers\t-15.500641898983135\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The organizers, are well known, Eclipse folks) -> The organizers (15876ms)\nWhat is an eclipse?\tthe risk\t-15.504800255984765\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, take on, the risk) -> the risk (15876ms)\nWhat is an eclipse?\tsupply\t-15.506654806153701\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is on, supply) -> supply (15876ms)\nWhat is an eclipse?\tfood\t-15.520681131568264\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, depends on, food) -> food (15876ms)\nWhat is an eclipse?\ta technique\t-15.584491679482248\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (a technique, known as, the secondary eclipse) -> a technique (15896ms)\nWhat is an eclipse?\tthe wastes\t-15.60383039776266\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, manage on, the wastes) -> the wastes (15896ms)\nWhat is an eclipse?\tstage\t-15.616765910269848\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is going on on, stage) -> stage (15896ms)\nWhat is an eclipse?\tthe sidelines\t-15.617912970159836\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, stand on, the sidelines) -> the sidelines (15896ms)\nWhat is an eclipse?\tAugust 12th\t-15.624723579629194\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, passes on, August 12th) -> August 12th (15896ms)\nWhat is an eclipse?\tthe guitar\t-15.637174772996985\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, played on, the guitar) -> the guitar (15896ms)\nWhat is an eclipse?\tThe assistants\t-15.643052921341342\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The assistants, know, Eclipse well) -> The assistants (15896ms)\nWhat is an eclipse?\tthe ocean\t-15.652461282250512\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, sit on, the ocean) -> the ocean (16065ms)\nWhat is an eclipse?\tthe verge of extinction\t-15.65400188152195\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the verge of extinction) -> the verge of extinction (16065ms)\nWhat is an eclipse?\tthe brink of extinction\t-15.65400188152195\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the brink of extinction) -> the brink of extinction (16065ms)\nWhat is an eclipse?\tthe cooperation\t-15.654229655052704\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, depends on, the cooperation) -> the cooperation (16065ms)\nWhat is an eclipse?\tthe past\t-15.678038435968826\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, meditate on, the past) -> the past (16065ms)\nWhat is an eclipse?\tMarch 25-28\t-15.680650569819363\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, facing on, March 25-28) -> March 25-28 (16065ms)\nWhat is an eclipse?\teclipses\t-15.682476790053354\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (eclipses, are known as, ?eclipse glyphs) -> eclipses (16065ms)\nWhat is an eclipse?\tWanna\t-15.683519768934593\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Wanna, know, more about Twilight Eclipse) -> Wanna (16065ms)\nWhat is an eclipse?\tthe region\t-15.691365958219414\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, landed on, the region) -> the region (16117ms)\nWhat is an eclipse?\tthe form of a sphere\t-15.69298611218985\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the form of a sphere) -> the form of a sphere (16117ms)\nWhat is an eclipse?\tthe verge of another Ice Age\t-15.717282665540324\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is on, the verge of another Ice Age) -> the verge of another Ice Age (16117ms)\nWhat is an eclipse?\tThe change\t-15.771261583271489\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The change, yet knew, the swift eclipse) -> The change (16117ms)\nWhat is an eclipse?\tThe nodal axis\t-15.804338005631216\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The nodal axis, is a known trigger of, eclipse energies) -> The nodal axis (16117ms)\nWhat is an eclipse?\tthe hat\t-15.926025881655685\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (the hat, knew only of, local eclipses) -> the hat (16117ms)\nWhat is an eclipse?\tpeace\t-16.013058066975233\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (peace, knew about, the solar eclipses) -> peace (16117ms)\nWhat is an eclipse?\tland\t-16.061791291317277\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, live on, land) -> land (16138ms)\nWhat is an eclipse?\twarmth\t-16.072337065407773\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, depend on, warmth) -> warmth (16138ms)\nWhat is an eclipse?\tflesh\t-16.074170059039517\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, put on, flesh) -> flesh (16138ms)\nWhat is an eclipse?\tanthropology\t-16.110700541850512\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (anthropology, could easily bring about, the eclipse) -> anthropology (16291ms)\nWhat is an eclipse?\tneed\t-16.16946400383087\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, need) -> need (16138ms)\nWhat is an eclipse?\ttarget\t-16.17259055538228\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, target) -> target (16138ms)\nWhat is an eclipse?\tthe gaseous state\t-16.208003405437815\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, was in, the gaseous state) -> the gaseous state (16138ms)\nWhat is an eclipse?\tthe brink of destruction\t-16.222949555101863\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the brink of destruction) -> the brink of destruction (16138ms)\nWhat is an eclipse?\tthe brink of disaster\t-16.243350673965814\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the brink of disaster) -> the brink of disaster (16156ms)\nWhat is an eclipse?\tthe same place in the sky\t-16.244959610938274\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the same place in the sky) -> the same place in the sky (16156ms)\nWhat is an eclipse?\tthe verge of destruction\t-16.25782549815599\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the verge of destruction) -> the verge of destruction (16156ms)\nWhat is an eclipse?\tthe verge of disaster\t-16.278226617019943\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the verge of disaster) -> the verge of disaster (16157ms)\nWhat is an eclipse?\tthe process of creation\t-16.278226617019943\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, the process of creation) -> the process of creation (16156ms)\nWhat is an eclipse?\thistory\t-16.282389264133705\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (history, has brought about, an eclipse) -> history (16291ms)\nWhat is an eclipse?\t1910\t-16.282901728811478\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, passed in, 1910) -> 1910 (16156ms)\nWhat is an eclipse?\tthe middle of empty space\t-16.317210847687843\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the middle of empty space) -> the middle of empty space (16156ms)\nWhat is an eclipse?\t2012\t-16.3413576955994\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, end in, 2012) -> 2012 (16157ms)\nWhat is an eclipse?\tthe outer fringes of the Photon Belt\t-16.360872648480488\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the outer fringes of the Photon Belt) -> the outer fringes of the Photon Belt (16291ms)\nWhat is an eclipse?\tthe throes of a mass extinction event\t-16.37718658717692\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the throes of a mass extinction event) -> the throes of a mass extinction event (16328ms)\nWhat is an eclipse?\tthe center of the habitable zone around the sun\t-16.37718658717692\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the center of the habitable zone around the sun) -> the center of the habitable zone around the sun (16291ms)\nWhat is an eclipse?\tthe border between Shabaali and Sebth space\t-16.38836152907965\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the border between Shabaali and Sebth space) -> the border between Shabaali and Sebth space (16328ms)\nWhat is an eclipse?\tthe north\t-16.440658995158195\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the north) -> the north (16328ms)\nWhat is an eclipse?\tthe hands of the wise\t-16.67378614828516\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, turns in, the hands of the wise) -> the hands of the wise (16328ms)\nWhat is an eclipse?\tthe sky\t-16.67378614828516\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, hung in, the sky) -> the sky (16328ms)\nWhat is an eclipse?\taverage\t-16.680074923213866\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, average) -> average (16377ms)\nWhat is an eclipse?\tthe flanks of Volcano Tungurahua\t-16.685891496501593\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, Nestled on, the flanks of Volcano Tungurahua) -> the flanks of Volcano Tungurahua (16377ms)\nWhat is an eclipse?\tthe grip of terror\t-16.68665203550288\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, remains in, the grip of terror) -> the grip of terror (16377ms)\nWhat is an eclipse?\tthe first place\t-16.68665203550288\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, formed in, the first place) -> the first place (16377ms)\nWhat is an eclipse?\twater\t-16.720498653623615\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, covered in, water) -> water (16377ms)\nWhat is an eclipse?\tcurrently\t-16.73133090543767\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, currently) -> currently (16377ms)\nWhat is an eclipse?\tchaos\t-16.75401723121069\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, chaos) -> chaos (16377ms)\nWhat is an eclipse?\ttravail\t-16.758812796274736\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, travail) -> travail (16473ms)\nWhat is an eclipse?\ttrack\t-16.764114047505775\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, track) -> track (16473ms)\nWhat is an eclipse?\tflowers\t-16.782073342897853\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, laughs in, flowers) -> flowers (16473ms)\nWhat is an eclipse?\texcess\t-16.79681529088027\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, is in, excess) -> excess (16473ms)\nWhat is an eclipse?\tdisarray\t-16.80491628523368\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, disarray) -> disarray (16515ms)\nWhat is an eclipse?\tupheaval\t-16.80491628523368\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, upheaval) -> upheaval (16515ms)\nWhat is an eclipse?\tvibration\t-16.805601013313215\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, dropped in, vibration) -> vibration (16515ms)\nWhat is an eclipse?\tjeopardy\t-16.806525222206137\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, jeopardy) -> jeopardy (16515ms)\nWhat is an eclipse?\tdanger\t-16.806525222206137\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, danger) -> danger (16515ms)\nWhat is an eclipse?\tperil\t-16.806525222206137\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, peril) -> peril (16515ms)\nWhat is an eclipse?\tsunlight\t-16.81225531046856\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, bathed in, sunlight) -> sunlight (16515ms)\nWhat is an eclipse?\tquestion\t-16.819391109423858\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, question) -> question (16515ms)\nWhat is an eclipse?\torbit\t-16.828176831856798\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, revolves in, orbit) -> orbit (16549ms)\nWhat is an eclipse?\tabundance\t-16.83979222828781\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, abundance) -> abundance (16549ms)\nWhat is an eclipse?\tthe moment\t-16.974517467162176\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, shattering in, the moment) -> the moment (16549ms)\nWhat is an eclipse?\tthe direction\t-16.978045095269547\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, moving in, the direction) -> the direction (16549ms)\nWhat is an eclipse?\tthe background\t-17.004499012181416\tWhat is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, looms in, the background) -> the background (16549ms)\nWhat is an eclipse?\tthe phenomenon\t-17.068815628176655\tWhat is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (the phenomenon, known as, Eclipse) -> the phenomenon (16549ms)\nHow many moons does Neptune have?\tthe top...\t-2.9246802856931984\tHow many moons does Neptune have? -> $x: (Neptune, moons, $x) -> (neptunes transformation pen, has a moon on, the top...) -> the top... (5459ms)\nHow many moons does Neptune have?\tThe Heroes of Olympus\t-9.882223288407038\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The Son of Neptune, Part of series, The Heroes of Olympus) -> The Heroes of Olympus (12766ms)\nHow many moons does Neptune have?\tDoctor Who BBC Past Doctors\t-9.959838951275254\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The Devil Goblins from Neptune, Part of series, Doctor Who BBC Past Doctors) -> Doctor Who BBC Past Doctors (12766ms)\nHow many moons does Neptune have?\tChaos Chronicles\t-10.148058012331774\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune Crossing, Part of series, Chaos Chronicles) -> Chaos Chronicles (12766ms)\nHow many moons does Neptune have?\tFools in April / Neptune's Spatula\t-10.212089855596952\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune's Spatula, Part of multipart episode, Fools in April / Neptune's Spatula) -> Fools in April / Neptune's Spatula (12767ms)\nHow many moons does Neptune have?\t2012\t-10.926201708046284\tHow many moons does Neptune have? -> how many moon do [ neptune ] have ? -> how many ring do neptune have ? -> $x: (neptune, ring, $x) -> (a nearly-packed Neptune Theatre, rang in, 2012) -> 2012 (17415ms)\nHow many moons does Neptune have?\tperiod\t-11.414151152609518\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: ($x, instance of, part) (neptune, have have, $x) -> (period, Instance Of, component part) (Neptune, has, period) -> period (12767ms)\nHow many moons does Neptune have?\tmental health\t-11.99647066309127\tHow many moons does Neptune have? -> how many [ moon do neptune have ] ? -> how many moon do neptune have have be make ? -> $x: ($x, instance of, moon) (neptune, have have be make, $x) -> (mental health, Instance Of, Moon related business) (Neptune, has been trying to make, mental health) -> mental health (19692ms)\nHow many moons does Neptune have?\tJacksonville Beach\t-12.001804767728661\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune Beach, was part of, Jacksonville Beach) -> Jacksonville Beach (12767ms)\nHow many moons does Neptune have?\tDover\t-12.261579472373562\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, becomes part of, Dover) -> Dover (13319ms)\nHow many moons does Neptune have?\ta Grand Cross\t-12.267378353057161\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, is part of, a Grand Cross) -> a Grand Cross (13319ms)\nHow many moons does Neptune have?\tperiod 2\t-12.271022364315552\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: ($x, instance of, part) (neptune, have have, $x) -> (period 2, Instance Of, part) (Neptune, has, period) -> period 2 (13319ms)\nHow many moons does Neptune have?\ta pedestrianised city centre\t-12.276112873413837\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, is now part of, a pedestrianised city centre) -> a pedestrianised city centre (13319ms)\nHow many moons does Neptune have?\tthe GRAND CROSS.\t-12.342527432250185\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Chiron and Neptune, are part of, the GRAND CROSS.) -> the GRAND CROSS. (13319ms)\nHow many moons does Neptune have?\tring\t-12.36563646388565\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: ($x, instance of, part) (neptune, have have, $x) -> (ring, Instance Of, part) (Neptune, has, rings) -> ring (13319ms)\nHow many moons does Neptune have?\tthe Earthtone 3 team\t-12.383102354408159\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (the Neptunes and MrDJ, is part of, the Earthtone 3 team) -> the Earthtone 3 team (13486ms)\nHow many moons does Neptune have?\tthe Flying Schedule\t-12.383287033216467\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The impressive Neptune, took part in, the Flying Schedule) -> the Flying Schedule (13486ms)\nHow many moons does Neptune have?\tthe Jacksonville Beaches community\t-12.410037893357199\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune Beach, is part of, the Jacksonville Beaches community) -> the Jacksonville Beaches community (13486ms)\nHow many moons does Neptune have?\ta two part series\t-12.422889713278487\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The Neptune documentary, was part of, a two part series) -> a two part series (13486ms)\nHow many moons does Neptune have?\tthe Malta-based Force K\t-12.427557581245964\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The Neptune, was part of, the Malta-based Force K) -> the Malta-based Force K (13486ms)\nHow many moons does Neptune have?\ta 9 person Sailor Moon group\t-12.4502680849398\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (My Sailor Neptune, is part of, a 9 person Sailor Moon group) -> a 9 person Sailor Moon group (13486ms)\nHow many moons does Neptune have?\tPeriod\t-12.517492133001745\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: ($x, instance of, part) (neptune, have have, $x) -> (Period, Instance Of, part) (Neptune, has, period) -> Period (15481ms)\nHow many moons does Neptune have?\ttrine\t-12.723215404756028\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many moon do neptune have have ? -> $x: ($x, instance of, moon) (neptune, have have, $x) -> $x: ($x, instance of, moon) (neptune, in have, $x) -> (trine, Instance Of, moon-pluto aspect) (Neptune, has just been in, trine) -> trine (19280ms)\nHow many moons does Neptune have?\tMars\t-12.851907255178407\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many moon do neptune have have ? -> $x: ($x, instance of, moon) (neptune, have have, $x) -> $x: ($x, instance of, moon) (neptune, afflict by, $x) -> (Mars, Instance Of, mission beyond the moon) (Neptune, is afflicted by, Mars) -> Mars (19691ms)\nHow many moons does Neptune have?\tsextile\t-12.877959933778074\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many moon do neptune have have ? -> $x: ($x, instance of, moon) (neptune, have have, $x) -> $x: ($x, instance of, moon) (neptune, in have, $x) -> (sextile, Instance Of, harmonious sun/moon relationship) (Neptune and Pluto, have been roughly in, sextile) -> sextile (19280ms)\nHow many moons does Neptune have?\tLove\t-12.989570044283678\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many moon do neptune have have ? -> $x: ($x, instance of, moon) (neptune, have have, $x) -> $x: ($x, instance of, moon) (neptune, in have, $x) -> (Love, Instance Of, splendoured thing, Blue Moon & of course others) (Neptune, had been deeply in, love) -> Love (19280ms)\nHow many moons does Neptune have?\tPisces\t-13.008099808913634\tHow many moons does Neptune have? -> how many [ moon do neptune have ] ? -> how much moon do neptune have be leave ? -> $x: ($x, instance of, moon) (neptune, have be leave, $x) -> $x: ($x, instance of, moon) (neptune, leave, $x) -> (Pisces, Instance Of, moon sign) (Neptune, left, Pisces) -> Pisces (15481ms)\nHow many moons does Neptune have?\tearlier\t-13.150782884569047\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, played a part, earlier) -> earlier (16372ms)\nHow many moons does Neptune have?\tAquarius\t-13.249123723821778\tHow many moons does Neptune have? -> how many [ moon do neptune have ] ? -> how much moon do neptune have be leave ? -> $x: ($x, instance of, moon) (neptune, have be leave, $x) -> $x: ($x, instance of, moon) (neptune, leave, $x) -> (Aquarius, Instance Of, Moon sign of flair) (Neptune, has now left, Aquarius) -> Aquarius (16372ms)\nHow many moons does Neptune have?\tthe picture\t-13.908979105538062\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, is part of, the picture) -> the picture (17416ms)\nHow many moons does Neptune have?\tthe week\t-13.932782426083842\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune-ruled issues, dominated the early part of, the week) -> the week (17453ms)\nHow many moons does Neptune have?\tthe synastry picture forces\t-14.030848683638323\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, is part of, the synastry picture forces) -> the synastry picture forces (17453ms)\nHow many moons does Neptune have?\tthe city\t-14.115652951642687\tHow many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune Beach Neptune Beach, was part of, the city) -> the city (17900ms)\nHow many Oscars has she won?\tPinoco\t-17.899069876473146\tHow many Oscars has she won? -> how many oscar [ have she ] win ? -> what be have she first movie ? -> what be have she movie ? -> $x: ($x, be have, she movie) -> $x: ($x, seem to have have, she movie) -> (Pinoco, seems to have given up on, the romantic movies-She 's) -> Pinoco (7508ms)\nWhat is relative humidity?\tHMP35C\t-6.938717901607358\tWhat is relative humidity? -> $x: (relative humidity, instance of, $x) -> $x: (relative humidity, modelling, $x) -> (Air temperature/relative humidity (HMP35), Model, HMP35C) -> HMP35C (8345ms)\nWhat is relative humidity?\tRH\t-10.456634536791501\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (RH, is, relative humidity) -> RH (12624ms)\nWhat is relative humidity?\t24 percent\t-10.572144835294658\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, was, 24 percent) -> 24 percent (11719ms)\nWhat is relative humidity?\ta lower one\t-10.677180577937474\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, was, a lower one) -> a lower one (11719ms)\nWhat is relative humidity?\t70 percent\t-10.788805981358168\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, was, 70 percent) -> 70 percent (11719ms)\nWhat is relative humidity?\t15 percent\t-10.81350286855322\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, was, 15 percent) -> 15 percent (11719ms)\nWhat is relative humidity?\tHumidity\t-10.829600661438723\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Humidity, is, Relative Humidity) -> Humidity (12623ms)\nWhat is relative humidity?\tlowest is\t-10.906584303572656\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, lowest is) -> lowest is (11719ms)\nWhat is relative humidity?\tLive Album\t-10.97668535705385\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Release type, Live Album) -> Live Album (13612ms)\nWhat is relative humidity?\tTV Episode\t-10.983252303423788\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, TV Episode) -> TV Episode (13613ms)\nWhat is relative humidity?\tthe Wind Chill\t-11.086563255458094\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, the Wind Chill) -> the Wind Chill (11719ms)\nWhat is relative humidity?\thigh year-round\t-11.168260270498392\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, high year-round) -> high year-round (12623ms)\nWhat is relative humidity?\tBook Edition\t-11.172083555204953\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Paper vs. relative humidity, Type, Book Edition) -> Book Edition (13613ms)\nWhat is relative humidity?\tair\t-11.217710773260082\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (air, is called, relative humidity) -> air (12623ms)\nWhat is relative humidity?\tSO2\t-11.248900938134767\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (SO2, was investigated under, relative humidity) -> SO2 (12623ms)\nWhat is relative humidity?\t?humidity ?\t-11.251222994874446\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (?humidity ?, is actually, ?relative humidity ?) -> ?humidity ? (12623ms)\nWhat is relative humidity?\thuman hair\t-11.287830167437033\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (human hair, is used to measure, relative humidity) -> human hair (12642ms)\nWhat is relative humidity?\tEP\t-11.295182255995842\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity EP, Release type, EP) -> EP (13613ms)\nWhat is relative humidity?\tPaper vs. relative humidity\t-11.309352334433878\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: (relative humidity, edition, $x) -> (Paper vs. relative humidity, Editions, Paper vs. relative humidity) -> Paper vs. relative humidity (16360ms)\nWhat is relative humidity?\tclimate shape ecosystems\t-11.333512583555793\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (climate shape ecosystems, is, relative humidity) -> climate shape ecosystems (12642ms)\nWhat is relative humidity?\texplaining humidity\t-11.348636221279971\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (explaining humidity, are, relative humidity) -> explaining humidity (12642ms)\nWhat is relative humidity?\tabsolute humidity\t-11.348636221279971\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, absolute humidity) -> absolute humidity (12642ms)\nWhat is relative humidity?\tzero percent\t-11.354714482619253\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, zero percent) -> zero percent (12642ms)\nWhat is relative humidity?\twater vapor\t-11.376840776184311\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (water vapor, is measured as, Relative Humidity) -> water vapor (12642ms)\nWhat is relative humidity?\t55\t-11.402592890839067\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 55) -> 55 (12661ms)\nWhat is relative humidity?\t30-60 percent\t-11.450659779113803\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 30-60 percent) -> 30-60 percent (12662ms)\nWhat is relative humidity?\tdashed lines\t-11.477617973440525\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (dashed lines, are, relative humidity) -> dashed lines (12662ms)\nWhat is relative humidity?\tsulfur dioxide and nitrogen oxides\t-11.486246234922378\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (sulfur dioxide and nitrogen oxides, is, relative humidity) -> sulfur dioxide and nitrogen oxides (12662ms)\nWhat is relative humidity?\tAntiques\t-11.490588974417424\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Antiques, should be at, relative humidity) -> Antiques (12661ms)\nWhat is relative humidity?\t75-80 %\t-11.501059036403847\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 75-80 %) -> 75-80 % (12680ms)\nWhat is relative humidity?\t45-55 %\t-11.514714242320183\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 45-55 %) -> 45-55 % (12680ms)\nWhat is relative humidity?\tone key consideration\t-11.521241314325415\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, one key consideration) -> one key consideration (12680ms)\nWhat is relative humidity?\tTables of temperature, relative humidity and precipitation for the world\t-11.539080836583997\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (Tables of temperature, relative humidity and precipitation for the world, Editions, Tables of temperature, relative humidity and precipitation for the world) -> Tables of temperature, relative humidity and precipitation for the world (16396ms)\nWhat is relative humidity?\t20 %\t-11.542185037919664\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 20 %) -> 20 % (12680ms)\nWhat is relative humidity?\tice\t-11.545750639851656\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (ice, was used to get, relative humidity) -> ice (12680ms)\nWhat is relative humidity?\tTransmission Efficiency\t-11.547177447631425\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Transmission Efficiency, Is Dependent on, Relative Humidity) -> Transmission Efficiency (12680ms)\nWhat is relative humidity?\t40-60 %\t-11.560817731279128\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 40-60 %) -> 40-60 % (12741ms)\nWhat is relative humidity?\t40 %\t-11.57218709622359\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, was, 40 %) -> 40 % (12741ms)\nWhat is relative humidity?\tH.M.S.O.\t-11.593134601795791\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (H.M.S.O., Book editions published, Tables of temperature, relative humidity and precipitation for the world) -> H.M.S.O. (16396ms)\nWhat is relative humidity?\tDisease cause\t-11.59570508577155\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative humidity, Type, Disease cause) -> Disease cause (13613ms)\nWhat is relative humidity?\t90 %\t-11.596613028124484\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 90 %) -> 90 % (12741ms)\nWhat is relative humidity?\tProblem fire behavior\t-11.607898048241054\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Problem fire behavior, will be offset by, relative humidity) -> Problem fire behavior (12741ms)\nWhat is relative humidity?\t20-25 %\t-11.6093233993903\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, 20-25 %) -> 20-25 % (12761ms)\nWhat is relative humidity?\t68-72 percent\t-11.61298541407366\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 68-72 percent) -> 68-72 percent (12761ms)\nWhat is relative humidity?\tCondensation\t-11.615832299098793\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Condensation, is a function of, relative humidity) -> Condensation (12761ms)\nWhat is relative humidity?\t2.0. 5\t-11.638501919542552\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (2.0. 5, is, Relative Humidity) -> 2.0. 5 (12761ms)\nWhat is relative humidity?\t42 %\t-11.646329789307986\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 42 %) -> 42 % (12761ms)\nWhat is relative humidity?\t55 %\t-11.653658515547052\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, 55 %) -> 55 % (12829ms)\nWhat is relative humidity?\t61 %\t-11.655426888349245\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, 61 %) -> 61 % (12829ms)\nWhat is relative humidity?\tThe DampGuard\t-11.669275191552643\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The DampGuard, is designed to monitor, relative humidity) -> The DampGuard (12829ms)\nWhat is relative humidity?\tInstruments\t-11.672977469336452\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Instruments, are available to measure, relative humidity) -> Instruments (12829ms)\nWhat is relative humidity?\t35 %\t-11.674487053594136\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 35 %) -> 35 % (12830ms)\nWhat is relative humidity?\tan important factor\t-11.676657689519734\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, an important factor) -> an important factor (12829ms)\nWhat is relative humidity?\t69 %\t-11.696099989822638\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, was, 69 %) -> 69 % (12857ms)\nWhat is relative humidity?\t82 %\t-11.709362996648267\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 82 %) -> 82 % (12851ms)\nWhat is relative humidity?\tA hygrometer\t-11.711685161025473\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (A hygrometer, can be used to measure, relative humidity) -> A hygrometer (12851ms)\nWhat is relative humidity?\tthe MODEL\t-11.757034376832348\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the MODEL, is indeed very sensitive to, relative humidity) -> the MODEL (12851ms)\nWhat is relative humidity?\tmoisture content\t-11.763646759733188\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (moisture content, is a function of, relative humidity) -> moisture content (12851ms)\nWhat is relative humidity?\ta different story\t-11.771200613499532\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, are, a different story) -> a different story (12851ms)\nWhat is relative humidity?\t12 h\t-11.787172401288368\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, were, 12 h) -> 12 h (12976ms)\nWhat is relative humidity?\ta good idea\t-11.798610708147297\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, a good idea) -> a good idea (12977ms)\nWhat is relative humidity?\tA calculator\t-11.804655858542425\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (A calculator, will be used to convert to, relative humidity) -> A calculator (12977ms)\nWhat is relative humidity?\tEfficacy\t-11.811533400665258\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Efficacy, will be variable depending upon, relative humidity) -> Efficacy (12976ms)\nWhat is relative humidity?\tA low cost hygrometer\t-11.81280617622744\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (A low cost hygrometer, can be used to measure, relative humidity) -> A low cost hygrometer (12977ms)\nWhat is relative humidity?\tOntology Instance\t-11.844251938593434\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Ontology Instance) -> Ontology Instance (13740ms)\nWhat is relative humidity?\tCanonical Version\t-11.844251938593434\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (High Humidity, Type, Canonical Version) -> Canonical Version (13923ms)\nWhat is relative humidity?\tMusical Album\t-11.844251938593434\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Righteousness & Humidity, Notable types, Musical Album) -> Musical Album (13826ms)\nWhat is relative humidity?\tMusical Release\t-11.844251938593434\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Notable types, Musical Release) -> Musical Release (13826ms)\nWhat is relative humidity?\tMusical Recording\t-11.844251938593434\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity Rising, Type, Musical Recording) -> Musical Recording (13826ms)\nWhat is relative humidity?\tMusical Artist\t-11.844251938593434\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity 69, Notable types, Musical Artist) -> Musical Artist (13826ms)\nWhat is relative humidity?\tFlagged Content\t-11.844251938593434\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Flagged Content) -> Flagged Content (13761ms)\nWhat is relative humidity?\tDisease development\t-11.844454490437062\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Disease development, is favored by, relative humidity) -> Disease development (12977ms)\nWhat is relative humidity?\tCloud fraction\t-11.870915883258768\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Cloud fraction, is based upon, relative humidity) -> Cloud fraction (13922ms)\nWhat is relative humidity?\tPH Tester\t-11.89059385231118\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (PH Tester, Instance Of, relative humidity tester related product) -> PH Tester (17521ms)\nWhat is relative humidity?\tan air parcel\t-11.919478831562078\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (an air parcel, is saturated, ( relative humidity) -> an air parcel (13923ms)\nWhat is relative humidity?\twater absorption\t-11.92659429525246\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (water absorption, is a function of, relative humidity) -> water absorption (13922ms)\nWhat is relative humidity?\tMulti-Part Musical Release\t-11.92852775034097\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Notable types, Multi-Part Musical Release) -> Multi-Part Musical Release (13922ms)\nWhat is relative humidity?\ta convective environment\t-11.949456253975804\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (a convective environment, is the use of, relative humidity) -> a convective environment (13922ms)\nWhat is relative humidity?\ta small CO2 warming\t-11.953727246824844\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (a small CO2 warming, is predicted to increase, relative humidity) -> a small CO2 warming (13923ms)\nWhat is relative humidity?\tcloud fraction\t-11.968285625096115\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (cloud fraction, is computed from, relative humidity) -> cloud fraction (13970ms)\nWhat is relative humidity?\tWater requirement\t-11.989264347403097\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Water requirement, is strongly influenced by, relative humidity) -> Water requirement (13970ms)\nWhat is relative humidity?\tAlbum\t-11.996021365809778\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Righteousness & Humidity, Release type, Album) -> Album (13970ms)\nWhat is relative humidity?\ta dimensionless parameter\t-12.001976215514256\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, a dimensionless parameter) -> a dimensionless parameter (13970ms)\nWhat is relative humidity?\tImage\t-12.007636762240786\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Image) -> Image (14184ms)\nWhat is relative humidity?\tContent\t-12.007636762240786\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Content) -> Content (13970ms)\nWhat is relative humidity?\tProperty\t-12.007636762240786\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Property) -> Property (13970ms)\nWhat is relative humidity?\tDimension\t-12.007636762240786\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative humidity, Type, Dimension) -> Dimension (13970ms)\nWhat is relative humidity?\tCuring times\t-12.009600898139793\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Curing times, will be affected by, relative humidity) -> Curing times (14184ms)\nWhat is relative humidity?\tDevelopmental time\t-12.049548869907783\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Developmental time, can also be affected by, relative humidity) -> Developmental time (14184ms)\nWhat is relative humidity?\tBook\t-12.089047617839523\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Paper vs. relative humidity, Type, Book) -> Book (14184ms)\nWhat is relative humidity?\tCataloged instance\t-12.131738257455162\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Notable types, Cataloged instance) -> Cataloged instance (14185ms)\nWhat is relative humidity?\tRelease track\t-12.131738257455162\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity Rising, Type, Release track) -> Release track (14231ms)\nWhat is relative humidity?\tEnvironmental variable\t-12.131738257455162\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Atmospheric humidity, Type, Environmental variable) -> Environmental variable (14208ms)\nWhat is relative humidity?\tThe annual high temperature\t-12.161912664676823\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The annual high temperature, is 30-45?C with, relative humidity) -> The annual high temperature (14231ms)\nWhat is relative humidity?\tdependent on temperature\t-12.196801451239242\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, dependent on temperature) -> dependent on temperature (14252ms)\nWhat is relative humidity?\tdependent upon temperature\t-12.208081811256058\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, dependent upon temperature) -> dependent upon temperature (14253ms)\nWhat is relative humidity?\t50 percent\t-12.22333258988224\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (relative humidity, goes above, 50 percent) -> 50 percent (14253ms)\nWhat is relative humidity?\tHeat stress\t-12.254711502882964\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Heat stress, Instance Of, factor of temperature and relative humidity) -> Heat stress (17522ms)\nWhat is relative humidity?\t30 percent\t-12.256505158730606\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (the relative humidity, goes below, 30 percent) -> 30 percent (14253ms)\nWhat is relative humidity?\tFinishes\t-12.258937937874482\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Finishes, are affected by, relative humidity) -> Finishes (14253ms)\nWhat is relative humidity?\ttemperature-dependent parameter\t-12.271290090024758\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, temperature-dependent parameter) -> temperature-dependent parameter (16841ms)\nWhat is relative humidity?\t80 percent\t-12.27140179861025\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (the relative humidity, can go up to around, 80 percent) -> 80 percent (14253ms)\nWhat is relative humidity?\t17 percent\t-12.311816957569643\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (Relative humidity, has dropped, 17 percent) -> 17 percent (14253ms)\nWhat is relative humidity?\tGay Porn\t-12.315612755813426\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Gay Porn) -> Gay Porn (14276ms)\nWhat is relative humidity?\tObservation Type\t-12.321717490003584\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Hourly Relative Humidity, Type, Observation Type) -> Observation Type (14276ms)\nWhat is relative humidity?\t20 percent\t-12.373691045831611\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, has dropped to under, 20 percent) -> 20 percent (14276ms)\nWhat is relative humidity?\tenvironmental factor\t-12.38569542864541\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental factor) -> environmental factor (16841ms)\nWhat is relative humidity?\tone percent\t-12.38578864513587\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (the average relative humidity, had dropped, one percent) -> one percent (14276ms)\nWhat is relative humidity?\tAnswer\t-12.386898389886397\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Answer, is the difference between, relative humidity) -> Answer (14276ms)\nWhat is relative humidity?\tlow\t-12.397768635116392\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Humidity Relative humidity, is, low) -> low (14276ms)\nWhat is relative humidity?\t0.5 %\t-12.419258336747525\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, has been decreasing, 0.5 %) -> 0.5 % (14276ms)\nWhat is relative humidity?\theavy dew\t-12.476117211517892\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (heavy dew, Instance Of, condition of high relative humidity) -> heavy dew (17522ms)\nWhat is relative humidity?\tSHT\t-12.479263213646693\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (SHT, Instance Of, single-chip relative humidity) -> SHT (17521ms)\nWhat is relative humidity?\tTemp Tracker\t-12.482561056936861\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Temp Tracker, Instance Of, versatile temperature and relative humidity indicator) -> Temp Tracker (17522ms)\nWhat is relative humidity?\ta measure of the amount of moisture\t-12.509584300112436\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, a measure of the amount of moisture) -> a measure of the amount of moisture (14298ms)\nWhat is relative humidity?\tVPD\t-12.520390875684694\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (VPD, Instance Of, function of relative humidity) -> VPD (17522ms)\nWhat is relative humidity?\tconidiophores and conidia\t-12.534741505429068\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (conidiophores and conidia, is affected by, relative humidity) -> conidiophores and conidia (14298ms)\nWhat is relative humidity?\tfunction of both moisture\t-12.53674120433291\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of both moisture) -> function of both moisture (16841ms)\nWhat is relative humidity?\tthe 8912\t-12.543448610475245\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the 8912, is capable of measuring, relative humidity) -> the 8912 (14298ms)\nWhat is relative humidity?\tFilm\t-12.565521548224954\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Film) -> Film (14298ms)\nWhat is relative humidity?\ta measure of the amount of water vapor\t-12.574558017892269\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, a measure of the amount of water vapor) -> a measure of the amount of water vapor (14298ms)\nWhat is relative humidity?\tHMSO\t-12.585837994718082\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (HMSO, Book editions published, Tables of temperature, relative humidity and precipitation for the world) -> HMSO (16396ms)\nWhat is relative humidity?\tHumidity Sensor\t-12.605402622476205\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Humidity Sensor, Instance Of, relative humidity sensor) -> Humidity Sensor (17521ms)\nWhat is relative humidity?\tambient environmental condition\t-12.617606737795226\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, ambient environmental condition) -> ambient environmental condition (16841ms)\nWhat is relative humidity?\ty-axis\t-12.63125871025609\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, have been scaled to fit, y-axis) -> y-axis (15372ms)\nWhat is relative humidity?\ttap\t-12.638705283003713\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (low relative humidity, are on, tap) -> tap (16609ms)\nWhat is relative humidity?\tclimatic parameter\t-12.648102724313796\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, climatic parameter) -> climatic parameter (16841ms)\nWhat is relative humidity?\tclimatic datum\t-12.694068562397995\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, climatic datum) -> climatic datum (16841ms)\nWhat is relative humidity?\t5 %\t-12.695670507839628\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (the relative humidity, has to be within, 5 %) -> 5 % (15372ms)\nWhat is relative humidity?\tcommon atmospheric datum\t-12.70209798572188\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, common atmospheric datum) -> common atmospheric datum (16841ms)\nWhat is relative humidity?\thourly weather datum\t-12.70209798572188\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, hourly weather datum) -> hourly weather datum (16841ms)\nWhat is relative humidity?\tR. H.\t-12.70434372008678\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (R. H., Instance Of, relative humidity) -> R. H. (17522ms)\nWhat is relative humidity?\tnatural environmental factor\t-12.70727127682564\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, natural environmental factor) -> natural environmental factor (17711ms)\nWhat is relative humidity?\texternal factor\t-12.70783706618799\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, external factor) -> external factor (17711ms)\nWhat is relative humidity?\ta lower wet-bulb temperature\t-12.708745703390122\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (less relative humidity, has, a lower wet-bulb temperature) -> a lower wet-bulb temperature (15372ms)\nWhat is relative humidity?\tfunction of the amount of water\t-12.72394169479831\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of the amount of water) -> function of the amount of water (17711ms)\nWhat is relative humidity?\tsoft-touch hold\t-12.734843779735126\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (soft-touch hold, is, humidity) -> soft-touch hold (15371ms)\nWhat is relative humidity?\tvariable in the model\t-12.737308184470379\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, variable in the model) -> variable in the model (17711ms)\nWhat is relative humidity?\tfactor of well-being\t-12.749237675521922\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, factor of well-being) -> factor of well-being (17711ms)\nWhat is relative humidity?\tphysical factor\t-12.75003996760296\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, physical factor) -> physical factor (17711ms)\nWhat is relative humidity?\tWet Bulb Depression\t-12.750202975236915\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Wet Bulb Depression, Instance Of, measured of relative humidity) -> Wet Bulb Depression (17711ms)\nWhat is relative humidity?\tTramex Ltd. s CRH\t-12.750543724731054\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Tramex Ltd. s CRH, Instance Of, moisture and relative humidity meter) -> Tramex Ltd. s CRH (17712ms)\nWhat is relative humidity?\tTramex Hygrohood\t-12.751593487480825\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Tramex Hygrohood, Instance Of, insulted relative humidity hood) -> Tramex Hygrohood (18302ms)\nWhat is relative humidity?\tRapid RH\t-12.751991113125323\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Rapid RH, Instance Of, Relative Humidity probe) -> Rapid RH (18302ms)\nWhat is relative humidity?\thot\t-12.751991113125323\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (hot, Instance Of, environment of high relative humidity) -> hot (18302ms)\nWhat is relative humidity?\tfog\t-12.752346406607016\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (fog, Instance Of, condition of high relative humidity) -> fog (18302ms)\nWhat is relative humidity?\t9780114000349\t-12.75540613297178\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (9780114000349, Book Editions, Tables of temperature, relative humidity and precipitation for the world) -> 9780114000349 (16396ms)\nWhat is relative humidity?\t9780114001704\t-12.75540613297178\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (9780114001704, Book Editions, Tables of temperature, relative humidity and precipitation for the world) -> 9780114001704 (16397ms)\nWhat is relative humidity?\ttype of datum\t-12.760223831584678\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, type of datum) -> type of datum (18302ms)\nWhat is relative humidity?\t9780114003401\t-12.771171814491886\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (9780114003401, Book Editions, Tables of Temperature, Relative Humidity, Precipitation and Sunshine for the World) -> 9780114003401 (16396ms)\nWhat is relative humidity?\ta hot day\t-12.783332873516757\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (the relative humidity, is low on, a hot day) -> a hot day (16609ms)\nWhat is relative humidity?\tnominal ambient condition\t-12.787764309713328\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, nominal ambient condition) -> nominal ambient condition (18302ms)\nWhat is relative humidity?\tlocal meteorological condition\t-12.787764309713328\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, local meteorological condition) -> local meteorological condition (18302ms)\nWhat is relative humidity?\tsecondary climatic datum\t-12.787764309713328\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, secondary climatic datum) -> secondary climatic datum (18380ms)\nWhat is relative humidity?\tBPSH-xx\t-12.790365337559921\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (BPSH-xx, Instance Of, function of relative humidity) -> BPSH-xx (18381ms)\nWhat is relative humidity?\tstrong function of temperature\t-12.791405121761272\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, strong function of temperature) -> strong function of temperature (18381ms)\nWhat is relative humidity?\toutdoor weather condition\t-12.792334049973821\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, outdoor weather condition) -> outdoor weather condition (18381ms)\nWhat is relative humidity?\tProofReader?\t-12.796885068560464\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (ProofReader?, Instance Of, full featured relative humidity) -> ProofReader? (18381ms)\nWhat is relative humidity?\tsensitive function of temperature\t-12.796885068560464\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, sensitive function of temperature) -> sensitive function of temperature (18381ms)\nWhat is relative humidity?\tDippyBird\t-12.796885068560464\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (DippyBird, Instance Of, open relative humidity engine) -> DippyBird (18381ms)\nWhat is relative humidity?\tdegrees of separation\t-12.796885068560464\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (degrees of separation, Instance Of, relative humidity measurement) -> degrees of separation (18381ms)\nWhat is relative humidity?\tkey parameter\t-12.802936497947677\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, key parameter) -> key parameter (18427ms)\nWhat is relative humidity?\tcritical forecast information\t-12.804215374773669\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, critical forecast information) -> critical forecast information (18427ms)\nWhat is relative humidity?\tmeasurement of the degree\t-12.806024549081448\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative Humidity, Instance Of, measurement of the degree) -> measurement of the degree (18427ms)\nWhat is relative humidity?\tstandard meteorological parameter\t-12.808328140732328\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, standard meteorological parameter) -> standard meteorological parameter (18427ms)\nWhat is relative humidity?\tmeteorological element\t-12.819398813644732\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, meteorological element) -> meteorological element (18427ms)\nWhat is relative humidity?\tChipCap\t-12.823462202683137\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (ChipCap, Instance Of, generation relative humidity and temperature sensor) -> ChipCap (18427ms)\nWhat is relative humidity?\tRH BluePeg\t-12.823462202683137\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (RH BluePeg, Instance Of, relative humidity and temperature sensor) -> RH BluePeg (18427ms)\nWhat is relative humidity?\tfundamental storage requirement\t-12.828891971751329\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, fundamental storage requirement) -> fundamental storage requirement (18427ms)\nWhat is relative humidity?\tday\t-12.830687220592734\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (the largest relative humidity value, can be generated on, day) -> day (16609ms)\nWhat is relative humidity?\tA DECENT HANDLE\t-12.834347467794661\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (RELATIVE HUMIDITY PROG, HAS, A DECENT HANDLE) -> A DECENT HANDLE (15371ms)\nWhat is relative humidity?\tkey component of environmental comfort\t-12.835869299228364\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, key component of environmental comfort) -> key component of environmental comfort (18472ms)\nWhat is relative humidity?\tfunction of temperature and moisture\t-12.835869299228364\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of temperature and moisture) -> function of temperature and moisture (18472ms)\nWhat is relative humidity?\tenvironmental and analytical factor\t-12.835869299228364\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental and analytical factor) -> environmental and analytical factor (18472ms)\nWhat is relative humidity?\tsecond operational parameter of interest\t-12.835869299228364\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, second operational parameter of interest) -> second operational parameter of interest (18472ms)\nWhat is relative humidity?\tPhys-Chem sensor\t-12.835869299228364\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Phys-Chem sensor, Instance Of, accurate resistance-type relative humidity sensor) -> Phys-Chem sensor (18472ms)\nWhat is relative humidity?\tThez LCL\t-12.835869299228364\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Thez LCL, Instance Of, strong function of relative humidity) -> Thez LCL (18472ms)\nWhat is relative humidity?\tspatially uniform weather variable\t-12.835869299228364\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, spatially uniform weather variable) -> spatially uniform weather variable (18472ms)\nWhat is relative humidity?\tLPN-H\t-12.850951083282297\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (LPN-H, Instance Of, complete low cost relative humidity sensing module) -> LPN-H (18472ms)\nWhat is relative humidity?\tfunction of both moisture content and temperature\t-12.850951083282297\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of both moisture content and temperature) -> function of both moisture content and temperature (18593ms)\nWhat is relative humidity?\toptimum condition\t-12.855204293400652\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, optimum condition) -> optimum condition (18593ms)\nWhat is relative humidity?\tCreative Work\t-12.857750661687195\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Creative Work) -> Creative Work (16255ms)\nWhat is relative humidity?\tWritten Work\t-12.857750661687195\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Notable types, Written Work) -> Written Work (16256ms)\nWhat is relative humidity?\tComputrac Vapor Pro\t-12.86835615811828\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Computrac Vapor Pro, Instance Of, relative humidity sensor instrument) -> Computrac Vapor Pro (18593ms)\nWhat is relative humidity?\tMOISTURE ABSORPTION Tested\t-12.86835615811828\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (MOISTURE ABSORPTION Tested, Instance Of, atmosphere of 65% relative humidity) -> MOISTURE ABSORPTION Tested (18593ms)\nWhat is relative humidity?\tHygroClip from Rotronic\t-12.86835615811828\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (HygroClip from Rotronic, Instance Of, exceptional relative humidity probe) -> HygroClip from Rotronic (18593ms)\nWhat is relative humidity?\tRapid RH?\t-12.86835615811828\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Rapid RH?, Instance Of, fast, accurate, relative humidity probe) -> Rapid RH? (18593ms)\nWhat is relative humidity?\tRapid RH ?\t-12.86835615811828\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Rapid RH ?, Instance Of, accurate relative humidity probe) -> Rapid RH ? (18593ms)\nWhat is relative humidity?\textensive drying craquelure\t-12.87305290903098\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, had resulted in, extensive drying craquelure) -> extensive drying craquelure (16255ms)\nWhat is relative humidity?\tmeteorological information\t-12.873374083457007\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, meteorological information) -> meteorological information (18630ms)\nWhat is relative humidity?\tTemperature-Humidity Index\t-12.89584503871744\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Temperature-Humidity Index, Instance Of, measurement of ambient temperature and relative humidity) -> Temperature-Humidity Index (18630ms)\nWhat is relative humidity?\tR APID RH?\t-12.89584503871744\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (R APID RH?, Instance Of, fast, accurate, relative humidity probe) -> R APID RH? (18630ms)\nWhat is relative humidity?\texpression of the percentage of this maximum value\t-12.89584503871744\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, expression of the percentage of this maximum value) -> expression of the percentage of this maximum value (18630ms)\nWhat is relative humidity?\thouse plants\t-12.90361936633297\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (house plants, is, humidity) -> house plants (16396ms)\nWhat is relative humidity?\t15 %\t-12.90873267106834\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (The relative humidity, is likely to go down to, 15 %) -> 15 % (16430ms)\nWhat is relative humidity?\tDG obtained from Eq.\t-12.909483820156279\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (DG obtained from Eq., Instance Of, function of relative humidity) -> DG obtained from Eq. (18630ms)\nWhat is relative humidity?\tweather factor\t-12.911989107062983\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, weather factor) -> weather factor (18630ms)\nWhat is relative humidity?\ttemperature\t-12.912993666438183\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, temperature) -> temperature (16430ms)\nWhat is relative humidity?\tkey component\t-12.915173840764345\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, key component) -> key component (18630ms)\nWhat is relative humidity?\tdeserts\t-12.91613821295186\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (deserts, is, relative humidity) -> deserts (16430ms)\nWhat is relative humidity?\tfunction of refrigerant temperature and PPM of dissolved water\t-12.91940693637386\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of refrigerant temperature and PPM of dissolved water) -> function of refrigerant temperature and PPM of dissolved water (18677ms)\nWhat is relative humidity?\tTMI Termo Online\t-12.91940693637386\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (TMI Termo Online, Instance Of, temperature and relative humidity acquisition system) -> TMI Termo Online (18630ms)\nWhat is relative humidity?\tindicator of the comfort level of a building's environment\t-12.91940693637386\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, indicator of the comfort level of a building's environment) -> indicator of the comfort level of a building's environment (18677ms)\nWhat is relative humidity?\tobservational datum\t-12.921548971909\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, observational datum) -> observational datum (18677ms)\nWhat is relative humidity?\t45 %\t-12.93175133366552\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (The Relative Humidity, is going to be minimally, 45 %) -> 45 % (16430ms)\nWhat is relative humidity?\tbasic parameter\t-12.934674174292192\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, basic parameter) -> basic parameter (18677ms)\nWhat is relative humidity?\tTHE LOW SIDE\t-12.940392424635704\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (RELATIVE HUMIDITIES LIKELY, WILL BE ON, THE LOW SIDE) -> THE LOW SIDE (16609ms)\nWhat is relative humidity?\tecological factor\t-12.947133375718895\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, ecological factor) -> ecological factor (18677ms)\nWhat is relative humidity?\tronmental condition\t-12.955159672306628\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, ronmental condition) -> ronmental condition (18677ms)\nWhat is relative humidity?\tgenerally high\t-12.959140664592569\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Humidity Relative Humidity, is, generally high) -> generally high (16430ms)\nWhat is relative humidity?\tthe maximum\t-12.962137075001028\tWhat is relative humidity? -> what [ be relative humidity ] ? -> what be know be relative humidity ? -> $x: ($x, be know be, relative humidity) -> (the maximum, is known as, the relative humidity ?) -> the maximum (9216ms)\nWhat is relative humidity?\tcrucial factor\t-12.96529955994275\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, crucial factor) -> crucial factor (18677ms)\nWhat is relative humidity?\tthe air\t-12.965945774587645\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the air, is, relative humidity) -> the air (16430ms)\nWhat is relative humidity?\tprocessing parameter\t-12.967868550820516\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, processing parameter) -> processing parameter (18677ms)\nWhat is relative humidity?\tday i\t-12.974968967752297\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (the lowest relative humidity value, can be generated on, day i) -> day i (16609ms)\nWhat is relative humidity?\tweather sensor\t-12.97834011750682\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, weather sensor) -> weather sensor (18763ms)\nWhat is relative humidity?\toperating characteristic\t-12.979970698489153\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, operating characteristic) -> operating characteristic (18763ms)\nWhat is relative humidity?\tthermodynamic parameter\t-12.981988645591064\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, thermodynamic parameter) -> thermodynamic parameter (18763ms)\nWhat is relative humidity?\tinput datum\t-12.985376479113455\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, input datum) -> input datum (18763ms)\nWhat is relative humidity?\tboundary condition\t-12.987165651559938\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, boundary condition) -> boundary condition (18763ms)\nWhat is relative humidity?\ta scale\t-12.987666264215576\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (The relative humidity, is measured on, a scale) -> a scale (16609ms)\nWhat is relative humidity?\tphysical property\t-12.990583147594347\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, physical property) -> physical property (18763ms)\nWhat is relative humidity?\tnear 100\t-12.991708341852897\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (the relative humidity, goes from, near 100) -> near 100 (16488ms)\nWhat is relative humidity?\tan F\t-13.00045317039737\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be in, relative humidity) -> (an F, is in measuring, the temperatures and relative humidities) -> an F (18763ms)\nWhat is relative humidity?\toutdoor condition\t-13.003024995233964\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, outdoor condition) -> outdoor condition (18763ms)\nWhat is relative humidity?\toperating parameter\t-13.00371990216157\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, operating parameter) -> operating parameter (18842ms)\nWhat is relative humidity?\tvariable factor\t-13.008898479630101\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, variable factor) -> variable factor (18842ms)\nWhat is relative humidity?\tinfluence factor\t-13.009830993410029\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, influence factor) -> influence factor (18842ms)\nWhat is relative humidity?\tagro-meteorological datum\t-13.025004867392814\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be absolute humidity ? -> $x: (absolute humidity, instance of, $x) -> (absolute humidity, Instance Of, agro-meteorological datum) -> agro-meteorological datum (16488ms)\nWhat is relative humidity?\tdatum parameter\t-13.031980125529103\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, datum parameter) -> datum parameter (18842ms)\nWhat is relative humidity?\tPianos\t-13.035529329849583\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be in, relative humidity) -> (Pianos, are happiest in, a relative humidity level) -> Pianos (18842ms)\nWhat is relative humidity?\tinfluencing parameter\t-13.03553752198605\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, influencing parameter) -> influencing parameter (18842ms)\nWhat is relative humidity?\tTxrh2\t-13.044429624369418\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Txrh2, Instance Of, two-wire relative humidity transmitter) -> Txrh2 (18842ms)\nWhat is relative humidity?\tenvironmental clue\t-13.055992550081378\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental clue) -> environmental clue (18842ms)\nWhat is relative humidity?\tkey variable\t-13.066287017275831\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, key variable) -> key variable (18879ms)\nWhat is relative humidity?\tbuilding condition\t-13.067305265195213\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, building condition) -> building condition (18879ms)\nWhat is relative humidity?\troutine item\t-13.068451871853146\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, routine item) -> routine item (18879ms)\nWhat is relative humidity?\tphysical control\t-13.072460287242812\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, physical control) -> physical control (18879ms)\nWhat is relative humidity?\tOMEGA's RHCN-3\t-13.074016173911488\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (OMEGA's RHCN-3, Instance Of, economical relative humidity controller) -> OMEGA's RHCN-3 (18879ms)\nWhat is relative humidity?\tOmega's new UWRH-2-NEMA\t-13.075128345370924\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Omega's new UWRH-2-NEMA, Instance Of, wireless relative humidity transmitter) -> Omega's new UWRH-2-NEMA (18879ms)\nWhat is relative humidity?\t100 %\t-13.077344534489242\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (the relative humidity, would have to be very close to, 100 %) -> 100 % (16488ms)\nWhat is relative humidity?\t25 %\t-13.079198240631968\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (the relative humidity, may go below, 25 %) -> 25 % (16488ms)\nWhat is relative humidity?\t87 %\t-13.080832431615178\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 87 %) -> 87 % (16488ms)\nWhat is relative humidity?\tThe climate\t-13.085186465321556\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The climate, is tropical monsoonal with, relative humidity) -> The climate (16488ms)\nWhat is relative humidity?\tNMF\t-13.091220302782157\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be related to humidity ? -> $x: ($x, be related to, humidity) -> (NMF, is directly related to, external humidity) -> NMF (16609ms)\nWhat is relative humidity?\tnewspapers\t-13.092439244016036\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (newspapers, are usually, relative humidity) -> newspapers (16609ms)\nWhat is relative humidity?\tFAL-19\t-13.096901180867516\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (FAL-19, Instance Of, high relative humidity) -> FAL-19 (18879ms)\nWhat is relative humidity?\tHumidity sensor 316\t-13.096901180867516\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Humidity sensor 316, Instance Of, relative humidity sensor) -> Humidity sensor 316 (18879ms)\nWhat is relative humidity?\tmeterological factor\t-13.10640659197577\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, meterological factor) -> meterological factor (18918ms)\nWhat is relative humidity?\tinterior environment\t-13.108255026243606\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, interior environment) -> interior environment (18918ms)\nWhat is relative humidity?\teach flight\t-13.110642887760333\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (relative humidity, were made on, each flight) -> each flight (16695ms)\nWhat is relative humidity?\tronmental factor\t-13.111140711455072\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, ronmental factor) -> ronmental factor (18918ms)\nWhat is relative humidity?\t90 percent\t-13.111642530771176\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, rise, $x) -> (relative humidity, rises to, 90 percent) -> 90 percent (18918ms)\nWhat is relative humidity?\tsense parameter\t-13.113884348932807\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, sense parameter) -> sense parameter (18918ms)\nWhat is relative humidity?\tenvironmental quantity\t-13.113884348932807\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental quantity) -> environmental quantity (18918ms)\nWhat is relative humidity?\tdew point values\t-13.114278777283008\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative Humidity, can be inferred from, dew point values) -> dew point values (16695ms)\nWhat is relative humidity?\tdatum input\t-13.115807200494128\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, datum input) -> datum input (18918ms)\nWhat is relative humidity?\tprocess datum\t-13.117989084106094\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, process datum) -> process datum (18918ms)\nWhat is relative humidity?\trecord parameter\t-13.118744891077451\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, record parameter) -> record parameter (18959ms)\nWhat is relative humidity?\tsite parameter\t-13.11890107097716\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, site parameter) -> site parameter (18959ms)\nWhat is relative humidity?\tenvironmental measure\t-13.119891071191837\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental measure) -> environmental measure (18959ms)\nWhat is relative humidity?\tdetermining parameter\t-13.12011581306367\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, determining parameter) -> determining parameter (18959ms)\nWhat is relative humidity?\tfield parameter\t-13.121029761054483\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, field parameter) -> field parameter (18959ms)\nWhat is relative humidity?\tessential information\t-13.122168675220202\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, essential information) -> essential information (18959ms)\nWhat is relative humidity?\tgreater capacity\t-13.122274827777263\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (80 % relative humidity space, have much, greater capacity) -> greater capacity (16695ms)\nWhat is relative humidity?\tthermodynamic concept\t-13.123341511854775\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, thermodynamic concept) -> thermodynamic concept (18959ms)\nWhat is relative humidity?\tserious aspect\t-13.124685553017738\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, serious aspect) -> serious aspect (18959ms)\nWhat is relative humidity?\tair temperature\t-13.12590943056729\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (air temperature, Instance Of, relative humidity microclimatic factor) -> air temperature (19137ms)\nWhat is relative humidity?\tthe disease\t-13.126832409345905\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the disease, are, relative humidity) -> the disease (16694ms)\nWhat is relative humidity?\tsurface variable\t-13.12697042299477\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, surface variable) -> surface variable (19137ms)\nWhat is relative humidity?\tindependent variable\t-13.12704308738427\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, independent variable) -> independent variable (19137ms)\nWhat is relative humidity?\tfar\t-13.12958328107604\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (far, was, humidity) -> far (16695ms)\nWhat is relative humidity?\tweather element\t-13.129908114190942\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, weather element) -> weather element (19137ms)\nWhat is relative humidity?\tdetermining factor\t-13.134917122906181\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, determining factor) -> determining factor (19137ms)\nWhat is relative humidity?\taltitude\t-13.135764904692719\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (altitude, as is, relative humidity) -> altitude (16695ms)\nWhat is relative humidity?\tWater vapor\t-13.137207728558256\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be related to humidity ? -> $x: ($x, be related to, humidity) -> (Water vapor, is also related to, sea surface humidity) -> Water vapor (16695ms)\nWhat is relative humidity?\t95\t-13.137326821367456\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (a high relative humidity, goes even up to, 95) -> 95 (19137ms)\nWhat is relative humidity?\thumidity\t-13.140185889400495\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (humidity, is expressed as, relative humidity) -> humidity (19137ms)\nWhat is relative humidity?\tHS-70-D Humidity Sensor\t-13.141795136302658\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (HS-70-D Humidity Sensor, Instance Of, relative humidity sensor) -> HS-70-D Humidity Sensor (19137ms)\nWhat is relative humidity?\tdeposition parameter\t-13.141976462707776\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, deposition parameter) -> deposition parameter (19298ms)\nWhat is relative humidity?\tthe unit\t-13.147211424957467\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the unit, is off 10 points of, relative humidity) -> the unit (19298ms)\nWhat is relative humidity?\tmeteorologic observation\t-13.154053985014313\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (meteorologic observation, Instance Of, relative humidity requirement) -> meteorologic observation (19298ms)\nWhat is relative humidity?\tthe most common\t-13.15541479424726\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, the most common) -> the most common (19298ms)\nWhat is relative humidity?\tThe wines\t-13.15562889613433\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The wines, are stored at, relative humidity) -> The wines (19298ms)\nWhat is relative humidity?\tno delay\t-13.163162306060087\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (no delay, is, humidity) -> no delay (19298ms)\nWhat is relative humidity?\tdry air\t-13.166254200669337\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (dry air, is, humidity) -> dry air (19298ms)\nWhat is relative humidity?\t65 percent\t-13.16869086392983\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, rise, $x) -> (relative humidity levels, rise above, 65 percent) -> 65 percent (19379ms)\nWhat is relative humidity?\thumidity probe\t-13.17556270242287\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (humidity probe, Instance Of, relative humidity measurement related product) -> humidity probe (19379ms)\nWhat is relative humidity?\tnasal congestion\t-13.177104616492196\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be related to humidity ? -> $x: ($x, be related to, humidity) -> (nasal congestion, is related to, the temperature and humidity) -> nasal congestion (19379ms)\nWhat is relative humidity?\t40%\t-13.182922798340659\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (40%, Instance Of, low relative humidity) -> 40% (19379ms)\nWhat is relative humidity?\tcrawl space\t-13.193038215682213\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (crawl space, Instance Of, elevated level of relative humidity) -> crawl space (19378ms)\nWhat is relative humidity?\tdrywall cracking\t-13.193038215682213\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (drywall cracking, Instance Of, result of relative humidity change) -> drywall cracking (19379ms)\nWhat is relative humidity?\t70 %\t-13.19405338919055\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is below, 70 %) -> 70 % (19379ms)\nWhat is relative humidity?\tBeijing and Shanghai\t-13.195575657276343\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (Beijing and Shanghai, is, humidity) -> Beijing and Shanghai (19462ms)\nWhat is relative humidity?\tflu\t-13.20361942035025\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, reduce, $x) -> (relative humidity, reduce the incidences of, flu) -> flu (19462ms)\nWhat is relative humidity?\tThe key\t-13.203797468816878\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The key, is to prevent, relative humidities) -> The key (19462ms)\nWhat is relative humidity?\tair temperatures\t-13.2106545423451\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is added to, air temperatures) -> air temperatures (19462ms)\nWhat is relative humidity?\t85 %\t-13.214454508054503\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is below, 85 %) -> 85 % (19462ms)\nWhat is relative humidity?\tANYWHERE THERE\t-13.217337040394913\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (ANYWHERE THERE, IS, HUMIDITY) -> ANYWHERE THERE (19462ms)\nWhat is relative humidity?\twooden mini blinds\t-13.2177294750494\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (wooden mini blinds, is, humidity) -> wooden mini blinds (19462ms)\nWhat is relative humidity?\tabout 30 %\t-13.21901942272958\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, about 30 %) -> about 30 % (19501ms)\nWhat is relative humidity?\taround 70 %\t-13.222928668154134\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative Humidity, is, around 70 %) -> around 70 % (19501ms)\nWhat is relative humidity?\twall void\t-13.22552507457213\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (wall void, Instance Of, area with high relative humidity) -> wall void (19502ms)\nWhat is relative humidity?\tswimming pool\t-13.22552507457213\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (swimming pool, Instance Of, building with high relative humidity) -> swimming pool (19502ms)\nWhat is relative humidity?\twindow frame\t-13.22552507457213\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (window frame, Instance Of, area with high relative humidity) -> window frame (19501ms)\nWhat is relative humidity?\tcommercial property\t-13.22552507457213\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (commercial property, Instance Of, area with low relative humidity) -> commercial property (19501ms)\nWhat is relative humidity?\tAbel's art\t-13.225711605907353\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Abel's art, Instance Of, offshoot of Relative-humidity detector) -> Abel's art (19501ms)\nWhat is relative humidity?\tOMEGA's RHCN-3A\t-13.2284267600091\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (OMEGA's RHCN-3A, Instance Of, economical relative humidity controller) -> OMEGA's RHCN-3A (19501ms)\nWhat is relative humidity?\ta concern\t-13.240075935726567\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (a concern, is, humidity) -> a concern (19543ms)\nWhat is relative humidity?\tModel PS01\t-13.243508544063033\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Model PS01, Instance Of, extremely accurate mean of measuring relative humidity) -> Model PS01 (19543ms)\nWhat is relative humidity?\tSHT11\t-13.243508544063033\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (SHT11, Instance Of, single chip digital Relative humidity temperature sensor) -> SHT11 (19543ms)\nWhat is relative humidity?\tPH20\t-13.244877825069441\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (PH20, Instance Of, function of temperature and relative humidity) -> PH20 (19543ms)\nWhat is relative humidity?\tOpinions\t-13.245707781032696\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (Opinions, Is, Humidity) -> Opinions (19543ms)\nWhat is relative humidity?\t4 % outdoors\t-13.246536530425084\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, has risen from, 4 % outdoors) -> 4 % outdoors (19782ms)\nWhat is relative humidity?\ta significant effect\t-13.25089876952261\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (Relative humidity, also has, a significant effect) -> a significant effect (19782ms)\nWhat is relative humidity?\tthe ration\t-13.256870145029962\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, the ration) -> the ration (19783ms)\nWhat is relative humidity?\tthe percentage\t-13.260471458761605\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative Humidity Relative Humidity, is, the percentage) -> the percentage (19782ms)\nWhat is relative humidity?\tC1/M System\t-13.260913618899016\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (C1/M System, Instance Of, NIST-traceable relative humidity calibration chamber) -> C1/M System (19782ms)\nWhat is relative humidity?\tOmega Engineering's UWRH-2-NEMA\t-13.260913618899016\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Omega Engineering's UWRH-2-NEMA, Instance Of, wireless relative humidity transmitter) -> Omega Engineering's UWRH-2-NEMA (19783ms)\nWhat is relative humidity?\tModel 1200A\t-13.267070441719456\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Model 1200A, Instance Of, high accuracy temperature and relative humidity transmitter) -> Model 1200A (19782ms)\nWhat is relative humidity?\tModel TGX-3580\t-13.267070441719456\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Model TGX-3580, Instance Of, dual channel temperature and relative humidity logger) -> Model TGX-3580 (19783ms)\nWhat is relative humidity?\tSensirion's SHT11\t-13.267070441719456\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Sensirion's SHT11, Instance Of, surface mountable temperature and relative humidity sensor) -> Sensirion's SHT11 (19860ms)\nWhat is relative humidity?\tthe Master Joining Method\t-13.276872629586762\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (50 % relative humidity, are based on, the Master Joining Method) -> the Master Joining Method (19860ms)\nWhat is relative humidity?\ttwenty percent\t-13.278838471707987\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (Its relative humidity, can go as low as, twenty percent) -> twenty percent (19860ms)\nWhat is relative humidity?\tMidnight\t-13.279307285892726\tWhat is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (Midnight, was, Humidity) -> Midnight (19860ms)\nWhat is relative humidity?\tModel HD 797 T\t-13.288402499498176\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Model HD 797 T, Instance Of, enbloc relative humidity transmitter) -> Model HD 797 T (19860ms)\nWhat is relative humidity?\tGeneral Eastern C-1\t-13.288402499498176\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (General Eastern C-1, Instance Of, bench top Relative Humidity Generator) -> General Eastern C-1 (19860ms)\nWhat is relative humidity?\tRelative Humidity Shown in Fig. 3\t-13.288402499498176\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Relative Humidity Shown in Fig. 3, Instance Of, time-series plot of relative humidity) -> Relative Humidity Shown in Fig. 3 (19860ms)\nWhat is relative humidity?\tHytherograph LB-520\t-13.288402499498176\tWhat is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Hytherograph LB-520, Instance Of, miniature temperature and relative humidity recorder) -> Hytherograph LB-520 (19860ms)\nWhat was the nickname for the French team?\tLes Bleus\t-9.246222301521225\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what be nickname of the french team ? -> $x: ($x, be nickname of, the french team) -> (Les Bleus, is the nickname of, the French football team) -> Les Bleus (7115ms)\nWhat was the nickname for the French team?\tcoach-class\t-10.673983187898555\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French team, went home in, coach-class) -> coach-class (7544ms)\nWhat was the nickname for the French team?\tBecks ?one\t-11.488809519510387\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be offer, $x) -> (the French team, is offering will make, Becks ?one) -> Becks ?one (8515ms)\nWhat was the nickname for the French team?\tambitions\t-11.510981343998244\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> when be the french team grow ? -> $x: (the french team, be grow in, $x) -> (The French team, are growing in, ambitions) -> ambitions (8616ms)\nWhat was the nickname for the French team?\tCanada\t-11.59575672542523\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be indeed, $x) -> (the French team, are indeed in, Canada) -> Canada (7615ms)\nWhat was the nickname for the French team?\tFrance\t-11.60381358061635\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be still, $x) -> (the French team, is still here in, France) -> France (10879ms)\nWhat was the nickname for the French team?\tGP racing\t-11.607828878831635\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> when be the french team need ? -> $x: (the french team, be need in, $x) -> $x: (the french team, be force in, $x) -> (the French Bugatti team, were the dominant force in, GP racing) -> GP racing (9974ms)\nWhat was the nickname for the French team?\tan ultimate tour\t-11.7703754644434\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French team, go on, an ultimate tour) -> an ultimate tour (7544ms)\nWhat was the nickname for the French team?\ta chance\t-11.839586295803745\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be still, $x) -> (the young French team, are still well in with, a chance) -> a chance (10879ms)\nWhat was the nickname for the French team?\tJuan-Miguel Mercado\t-11.867196032733384\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (The French team Agritubel, will be lead by, Juan-Miguel Mercado) -> Juan-Miguel Mercado (10757ms)\nWhat was the nickname for the French team?\tHarrison and Peon\t-11.867738135101245\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (The French team, is strengthened by, Harrison and Peon) -> Harrison and Peon (10757ms)\nWhat was the nickname for the French team?\ta large carton\t-11.948949836362992\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the Mary French team, went away with, a large carton) -> a large carton (7544ms)\nWhat was the nickname for the French team?\tthe Ravenhill curse\t-11.965939559478674\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (the French team, have been blighted by, the Ravenhill curse) -> the Ravenhill curse (10757ms)\nWhat was the nickname for the French team?\tWalter George Windham\t-12.055894948955336\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (The Anglo-French team, was led by, Walter George Windham) -> Walter George Windham (10757ms)\nWhat was the nickname for the French team?\tRochet\t-12.075780123383101\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, choose, $x) -> (The French team, chooses, Rochet) -> Rochet (8019ms)\nWhat was the nickname for the French team?\tRocket French\t-12.199839776638193\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, try, $x) -> (the Rocket French Team Share and Enjoy, Try, Rocket French) -> Rocket French (7616ms)\nWhat was the nickname for the French team?\ta structure\t-12.225442773097932\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, choose, $x) -> (the French team, chose, a structure) -> a structure (8019ms)\nWhat was the nickname for the French team?\tthe British Team Manager\t-12.275950903419773\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, say to, $x) -> (The French Team Manager, says to, the British Team Manager) -> the British Team Manager (10667ms)\nWhat was the nickname for the French team?\ta technical team\t-12.335933545267826\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be know as, $x) -> (The French team, is known as, a technical team) -> a technical team (10879ms)\nWhat was the nickname for the French team?\tan issue\t-12.481581771882626\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, look at, $x) -> (The French team, started to look at, an issue) -> an issue (8273ms)\nWhat was the nickname for the French team?\tKovalainen\t-12.508134839551728\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: ($x, belong to, the french team) -> (Kovalainen, is a person who belongs to the organization, the French team) -> Kovalainen (10800ms)\nWhat was the nickname for the French team?\tthe ?37 Million\t-12.603419725527038\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, remember, $x) -> (the French teams, remember, the ?37 Million) -> the ?37 Million (7615ms)\nWhat was the nickname for the French team?\ta run\t-12.668828433961977\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, try, $x) -> (The French team, tried to make, a run) -> a run (7615ms)\nWhat was the nickname for the French team?\tboat speeds\t-12.69807283676204\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, saw, $x) -> (The French team, saw, boat speeds) -> boat speeds (10878ms)\nWhat was the nickname for the French team?\ta drop goal\t-12.708981704828716\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, try, $x) -> (The desperate French team, try, a drop goal) -> a drop goal (7615ms)\nWhat was the nickname for the French team?\ta warm-up match\t-12.75878240902809\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, draw, $x) -> (.The French team and Croatia team, drew in, a warm-up match) -> a warm-up match (10667ms)\nWhat was the nickname for the French team?\tBertrand Pac?\t-12.881237377205817\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (The French ALEPH Sailing Team, is skippered by, Bertrand Pac?) -> Bertrand Pac? (10757ms)\nWhat was the nickname for the French team?\tFirst\t-13.23972090033555\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French team, went, First) -> First (7544ms)\nWhat was the nickname for the French team?\tthe fields\t-13.29935567290867\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French and Italian teams, would go on, the fields) -> the fields (7544ms)\nWhat was the nickname for the French team?\tthe site\t-13.760276613647585\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be still, $x) -> (the French team, is still engaged on, the site) -> the site (10879ms)\nWhat was the nickname for the French team?\trace\t-13.813059011954781\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French team, go forwards to, race) -> race (7573ms)\nWhat was the nickname for the French team?\taction\t-13.947129400431447\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French hit team, went into, action) -> action (7572ms)\nWhat was the nickname for the French team?\tstrike\t-13.989471291109716\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (The French team, went on, strike) -> strike (7572ms)\nWhat was the nickname for the French team?\tthe first bicycle\t-14.054552545937021\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, invent, $x) -> (the French father and son team, invented, the first bicycle) -> the first bicycle (8019ms)\nWhat was the nickname for the French team?\tthe spino-ponto-amygdaloid pathway\t-14.190821675319233\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, call, $x) -> (The French team, called, the spino-ponto-amygdaloid pathway) -> the spino-ponto-amygdaloid pathway (8402ms)\nWhat was the nickname for the French team?\tthe wrong mustache\t-14.280125661280476\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, choose, $x) -> (The French team, chose, the wrong mustache) -> the wrong mustache (8019ms)\nWhat was the nickname for the French team?\tfavor\t-14.31012948423948\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be leave, $x) -> (the French team, was left out in, favor) -> favor (10757ms)\nWhat was the nickname for the French team?\tthe chase\t-14.337164845962159\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, control, $x) -> (the French team, took control of, the chase) -> the chase (7697ms)\nWhat was the nickname for the French team?\tthe computation\t-14.364182741519214\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, approach, $x) -> (the French research team, had approached, the computation) -> the computation (8515ms)\nWhat was the nickname for the French team?\tthe regatta\t-14.434049647738885\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: ($x, belong to, the french team) -> (the regatta, belonged to, the French team) -> the regatta (10800ms)\nWhat was the nickname for the French team?\tthe remaining 5 stages\t-14.595300984684172\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, control, $x) -> (The French team, controlled, the remaining 5 stages) -> the remaining 5 stages (7697ms)\nWhat was the nickname for the French team?\tthe lead\t-14.676904617538309\tWhat was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, have take, $x) -> (The French Team No1, has taken over, the lead) -> the lead (10800ms)\nWhat is the oldest university in the US?\tWilliam and Mary\t2.2656175608956834\tWhat is the oldest university in the US? -> $x: ($x, is the oldest university in, the US) -> (William and Mary, is the second oldest university in, the US.) -> William and Mary (7983ms)\nWhat is the oldest university in the US?\tChapel Hill\t1.5624912081147113\tWhat is the oldest university in the US? -> $x: ($x, is the oldest university in, the US) -> (Chapel Hill, is the oldest public university in, the U.S.) -> Chapel Hill (7983ms)\nWhat is the oldest university in the US?\tRensselaer\t1.445029360796314\tWhat is the oldest university in the US? -> $x: ($x, is the oldest university in, the US) -> (Rensselaer, is the oldest technological university in, the U.S.) -> Rensselaer (7983ms)\nWhat is the oldest university in the US?\tSanto Domingo\t-7.42656721448788\tWhat is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in america ? -> $x: ($x, be the oldest university in, america) -> (Santo Domingo, is the oldest university in, the Americas) -> Santo Domingo (14273ms)\nWhat is the oldest university in the US?\tCharles V\t-7.724392953056543\tWhat is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in america ? -> $x: ($x, be the oldest university in, america) -> (Charles V, is the oldest university in, North America) -> Charles V (14274ms)\nWhat is the oldest university in the US?\tRutgers\t-8.102707644570353\tWhat is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in america ? -> $x: ($x, be the oldest university in, america) -> (Rutgers, is the 8th oldest University in, America) -> Rutgers (14273ms)\nWhat is the oldest university in the US?\tHeriot-Watt University\t-8.267656676610034\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in uk ? -> $x: ($x, be be the oldest university in, uk) -> (Heriot-Watt University, is the 8th oldest university in, the UK.) -> Heriot-Watt University (15253ms)\nWhat is the oldest university in the US?\tPennsylvania\t-8.320647096482876\tWhat is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in the united state ? -> $x: ($x, be the oldest university in, the united state) -> (Pennsylvania, is the oldest university in, the United States) -> Pennsylvania (14253ms)\nWhat is the oldest university in the US?\tHarvard\t-8.47121586427991\tWhat is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in the united state ? -> $x: ($x, be the oldest university in, the united state) -> (Harvard, is the oldest university in, the United States) -> Harvard (14253ms)\nWhat is the oldest university in the US?\tUPenn\t-8.599100222070858\tWhat is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in the united state ? -> $x: ($x, be the oldest university in, the united state) -> (UPenn, is the fourth oldest university in, the United States) -> UPenn (14253ms)\nWhat is the oldest university in the US?\tOxford University\t-8.705020953381483\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Oxford University, is the oldest university in, the World) -> Oxford University (16207ms)\nWhat is the oldest university in the US?\tOhio\t-8.722135896111894\tWhat is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in the united state ? -> $x: ($x, be the oldest university in, the united state) -> (Ohio, is the 10th oldest public university in, the United States) -> Ohio (14254ms)\nWhat is the oldest university in the US?\tGlasgow\t-8.842596326138276\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in uk ? -> $x: ($x, be be the oldest university in, uk) -> (Glasgow, is the fourth oldest University in, the UK.) -> Glasgow (15253ms)\nWhat is the oldest university in the US?\tCambridge\t-8.862997445002229\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in uk ? -> $x: ($x, be be the oldest university in, uk) -> (Cambridge, is the second oldest university in, the UK) -> Cambridge (15254ms)\nWhat is the oldest university in the US?\tHarvard Harvard\t-8.980981237019057\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university the us ? -> $x: ($x, be be, the oldest university the us) -> (Harvard Harvard, is, the oldest U.S. University) -> Harvard Harvard (15456ms)\nWhat is the oldest university in the US?\tUniversit? Laval\t-9.00828877125409\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (Universit? Laval, is the oldest French university in, Canada) -> Universit? Laval (16207ms)\nWhat is the oldest university in the US?\tPacific\t-9.073398866835962\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in californium ? -> $x: ($x, be be the oldest university in, californium) -> (Pacific, is the oldest University in, California) -> Pacific (16090ms)\nWhat is the oldest university in the US?\tUNB\t-9.30671394528272\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (UNB, is the oldest English-language university in, Canada) -> UNB (16207ms)\nWhat is the oldest university in the US?\tAberdeen\t-9.36891191124186\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in uk ? -> $x: ($x, be be the oldest university in, uk) -> (Aberdeen, is the fifth oldest University in, the UK) -> Aberdeen (15254ms)\nWhat is the oldest university in the US?\tBologna\t-9.403270279582973\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Bologna, is the oldest university in, the world) -> Bologna (16207ms)\nWhat is the oldest university in the US?\tCairo\t-9.412112248998529\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Cairo, is the oldest university in, the world) -> Cairo (16207ms)\nWhat is the oldest university in the US?\tPadua\t-9.420457798577619\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Padua, is the second oldest university in, the world) -> Padua (16207ms)\nWhat is the oldest university in the US?\tPoitiers\t-9.479445480846383\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in france ? -> $x: ($x, be be the oldest university in, france) -> (Poitiers, is the second oldest university in, France) -> Poitiers (16311ms)\nWhat is the oldest university in the US?\tVienna\t-9.539134237651378\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Vienna, is the oldest university in, the German-speaking world) -> Vienna (16311ms)\nWhat is the oldest university in the US?\tManitoba\t-9.549508297429382\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (Manitoba, is the oldest university in, Western Canada) -> Manitoba (16311ms)\nWhat is the oldest university in the US?\tOxford\t-9.569340381441044\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Oxford, is the oldest university in, the English-speaking world) -> Oxford (16311ms)\nWhat is the oldest university in the US?\tNew Brunswick\t-9.598832758614952\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (New Brunswick, is the oldest English university in, Canada) -> New Brunswick (16534ms)\nWhat is the oldest university in the US?\tOxf\t-9.660755785411448\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Oxf, is the second oldest university in, the world) -> Oxf (16533ms)\nWhat is the oldest university in the US?\tQueens\t-10.176455629257598\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (Queens, have been the oldest university in, English Canada) -> Queens (16562ms)\nWhat is the oldest university in the US?\tthe University\t-10.232941548123835\tWhat is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (the University, is the oldest university in, Western Canada) -> the University (16562ms)\nWhat is the oldest university in the US?\tthe Karouine\t-10.485303487895502\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (the Karouine, is the oldest religious university in, the world) -> the Karouine (16581ms)\nWhat is the oldest university in the US?\tColleges/Universities\t-10.623056593070999\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the plural of university ? -> $x: (university, plural, $x) -> (College/University, Plural, Colleges/Universities) -> Colleges/Universities (16752ms)\nWhat is the oldest university in the US?\t1088\t-11.059083693961595\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (1088, is the oldest university in, the western world) -> 1088 (16773ms)\nWhat is the oldest university in the US?\tA Modest Proposal\t-11.513209484733515\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (A Modest Proposal, is the name of, The University) -> A Modest Proposal (18725ms)\nWhat is the oldest university in the US?\tGoldman Sachs\t-11.57588219717297\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Goldman Sachs, was named the 14th dean of, the University) -> Goldman Sachs (18725ms)\nWhat is the oldest university in the US?\tDavid Pryor\t-11.6201566650803\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (David Pryor, was named the inaugural dean of, the University) -> David Pryor (18725ms)\nWhat is the oldest university in the US?\tlaw\t-11.753947547716784\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (law, has been named the next dean of, University) -> law (18726ms)\nWhat is the oldest university in the US?\tBoston College\t-11.761578166076307\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Boston College, was named the new head coach of, the University) -> Boston College (18725ms)\nWhat is the oldest university in the US?\tJ.D.\t-11.79992582029905\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (J.D., is named the 13th president of, Marylhurst University) -> J.D. (18726ms)\nWhat is the oldest university in the US?\t?? ? ? Patel\t-11.872379938772806\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (?? ? ? Patel, has been named the winner of, the University) -> ?? ? ? Patel (18768ms)\nWhat is the oldest university in the US?\tYash Gupta\t-11.98063843567275\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Yash Gupta, is named the first dean of, the university) -> Yash Gupta (18768ms)\nWhat is the oldest university in the US?\tUniversity Village\t-11.995183620066868\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (University Village, is the name of, the University) -> University Village (18768ms)\nWhat is the oldest university in the US?\tWashington State\t-12.049229411086582\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Washington State, is the name of, a university) -> Washington State (18768ms)\nWhat is the oldest university in the US?\tLaw\t-12.05390658338164\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Law, has been named the new dean of, the University) -> Law (18768ms)\nWhat is the oldest university in the US?\tTM\t-12.065098017283356\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (TM, is the name of, the university) -> TM (18797ms)\nWhat is the oldest university in the US?\tLecture Capture\t-12.088327531154444\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Lecture Capture, is the name of, University) -> Lecture Capture (18797ms)\nWhat is the oldest university in the US?\ttwo elements?the type\t-12.08968757484705\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (two elements?the type, is the name of, the university) -> two elements?the type (18797ms)\nWhat is the oldest university in the US?\t?Canada\t-12.09600230645222\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, ?Canada) -> ?Canada (18797ms)\nWhat is the oldest university in the US?\tCambridge Assessment\t-12.097212914155726\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Cambridge Assessment, is the brand name of, the University) -> Cambridge Assessment (18797ms)\nWhat is the oldest university in the US?\tmyUFL myUFL\t-12.106934094589425\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (myUFL myUFL, is the name of, the University) -> myUFL myUFL (18797ms)\nWhat is the oldest university in the US?\ta very big campus\t-12.155304296454746\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (a very big campus, was the name of, a university town) -> a very big campus (18820ms)\nWhat is the oldest university in the US?\tJosiah\t-12.162287553730685\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Josiah, is also the name of, the University) -> Josiah (18820ms)\nWhat is the oldest university in the US?\tTestudo\t-12.167354166147165\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Testudo, is the name of, University) -> Testudo (18820ms)\nWhat is the oldest university in the US?\tBihar Nalanda\t-12.169224607843775\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Bihar Nalanda, is the name of, an ancient university) -> Bihar Nalanda (18820ms)\nWhat is the oldest university in the US?\tThe Condon Committee\t-12.202926587145944\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (The Condon Committee, was the informal name of, the University) -> The Condon Committee (18820ms)\nWhat is the oldest university in the US?\tHogeschool\t-12.214554972042603\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Hogeschool, is the Dutch name of, University) -> Hogeschool (18820ms)\nWhat is the oldest university in the US?\tBruce Benson\t-12.22044348340766\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Bruce Benson, was named the 22nd president of, the University) -> Bruce Benson (18820ms)\nWhat is the oldest university in the US?\tJapan and America\t-12.228678316019582\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Japan and America, is the name of, the university course) -> Japan and America (18847ms)\nWhat is the oldest university in the US?\tInstitution\t-12.230569610248182\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Institution, is the name of, the university or college) -> Institution (18847ms)\nWhat is the oldest university in the US?\tcd ethics\t-12.236878535442404\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (cd ethics, is the name of, the university or college) -> cd ethics (18847ms)\nWhat is the oldest university in the US?\tStudent Management System ISIS\t-12.256972649770738\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Student Management System ISIS, is the name of, the University) -> Student Management System ISIS (18847ms)\nWhat is the oldest university in the US?\tMaine\t-12.292200073038064\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Maine, was named the recipient of, the University) -> Maine (18847ms)\nWhat is the oldest university in the US?\tUniversity\t-12.29511606076495\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (University, has been named the Director of, Cornell University) -> University (18847ms)\nWhat is the oldest university in the US?\tMonash and Rusden\t-12.313625832698008\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Monash and Rusden, are the names of, university campuses) -> Monash and Rusden (18847ms)\nWhat is the oldest university in the US?\tFeng Chia\t-12.314273819351802\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Feng Chia, is the name of, a University) -> Feng Chia (18879ms)\nWhat is the oldest university in the US?\tMike Singletary\t-12.325426061621673\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Baylor University, named, Mike Singletary) -> Mike Singletary (18879ms)\nWhat is the oldest university in the US?\tJackdaw\t-12.337557535040535\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Jackdaw, is the name of, the University Computing Service) -> Jackdaw (18879ms)\nWhat is the oldest university in the US?\tNew Testament\t-12.342395997620518\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (New Testament, has been named the next dean of, the University) -> New Testament (18879ms)\nWhat is the oldest university in the US?\t? Michael Tick\t-12.350449186549547\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (? Michael Tick, was named the new dean of, the University) -> ? Michael Tick (18879ms)\nWhat is the oldest university in the US?\tDr. Fox\t-12.360252091934068\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Dr. Fox, was named the director of, the University) -> Dr. Fox (18879ms)\nWhat is the oldest university in the US?\t1882\t-12.364640202237634\tWhat is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university ever build ? -> what be the oldest university build ? -> $x: (the oldest university, build, $x) -> (the second oldest Swedish university, was built in, 1882) -> 1882 (16820ms)\nWhat is the oldest university in the US?\tThe PythAcademia\t-12.394087849243697\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (The PythAcademia, is the short name of, the University proper or) -> The PythAcademia (18879ms)\nWhat is the oldest university in the US?\tMr. James Michel\t-12.39674046114928\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Mr. James Michel, was named the Chancellor of, the University) -> Mr. James Michel (18879ms)\nWhat is the oldest university in the US?\tOP\t-12.458305395271413\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (OP, was named the 10th President of, Siena Heights University) -> OP (18904ms)\nWhat is the oldest university in the US?\tDerr Professor\t-12.492450371322628\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, Derr Professor) -> Derr Professor (18904ms)\nWhat is the oldest university in the US?\tJoseph F. Volker\t-12.493003307836862\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Joseph F. Volker, was named the first dean of, the University) -> Joseph F. Volker (18904ms)\nWhat is the oldest university in the US?\tElaine Pagels\t-12.499016021555006\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Elaine Pagels) -> Elaine Pagels (18904ms)\nWhat is the oldest university in the US?\tHiram Bingham\t-12.524432791506513\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Yale University, named, Hiram Bingham) -> Hiram Bingham (18904ms)\nWhat is the oldest university in the US?\t11:05\t-12.527140314114911\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (11:05, AM The names of, all University) -> 11:05 (18904ms)\nWhat is the oldest university in the US?\tTimothy Leary\t-12.54047357391211\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Harvard University, named, Timothy Leary) -> Timothy Leary (18904ms)\nWhat is the oldest university in the US?\tSocial Justice\t-12.56565847583742\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (York University, named, Social Justice) -> Social Justice (18904ms)\nWhat is the oldest university in the US?\ta not\t-12.5797842760581\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (a not, is the brand name of, the University) -> a not (19088ms)\nWhat is the oldest university in the US?\ta library\t-12.581703391080223\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, a library) -> a library (19089ms)\nWhat is the oldest university in the US?\tJulie Beischel\t-12.58636281829628\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, Julie Beischel) -> Julie Beischel (19088ms)\nWhat is the oldest university in the US?\tNMSU,\t-12.59600703813065\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (NMSU,, has been named the new dean of, the university?s) -> NMSU, (19088ms)\nWhat is the oldest university in the US?\ta best buy\t-12.652324847772675\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Oakland University, named, a best buy) -> a best buy (19088ms)\nWhat is the oldest university in the US?\tthe Heritage Walk\t-12.659015766826133\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the Heritage Walk, are the names of, the University?s namesake) -> the Heritage Walk (19088ms)\nWhat is the oldest university in the US?\tUtah 9 ?\t-12.678773198830982\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Utah 9 ?, was the original name of, the University) -> Utah 9 ? (19088ms)\nWhat is the oldest university in the US?\tsuch pages\t-12.68936292708636\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (such pages, is the domain names of, UK universities) -> such pages (19088ms)\nWhat is the oldest university in the US?\tSophi\t-12.717306295311737\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Sophi, is the name of, the University) -> Sophi (19116ms)\nWhat is the oldest university in the US?\tthe CASE Professor\t-12.756642622680767\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the CASE Professor) -> the CASE Professor (19116ms)\nWhat is the oldest university in the US?\tSimpkins\t-12.781642178263448\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Simpkins, is named the first female chair of, the university) -> Simpkins (19116ms)\nWhat is the oldest university in the US?\ta footbridge\t-12.797387017919998\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The university, named, a footbridge) -> a footbridge (19116ms)\nWhat is the oldest university in the US?\ta fellowship\t-12.843490506878943\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The university, named, a fellowship) -> a fellowship (19116ms)\nWhat is the oldest university in the US?\toffensive assistant Kyle Flood\t-12.87275746773779\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, offensive assistant Kyle Flood) -> offensive assistant Kyle Flood (19116ms)\nWhat is the oldest university in the US?\tNick Gonzales\t-12.882451734697312\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Cornell University, named, Nick Gonzales) -> Nick Gonzales (19116ms)\nWhat is the oldest university in the US?\tSyracuse\t-12.941445719801834\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Syracuse, is the name of, a renowned university) -> Syracuse (19116ms)\nWhat is the oldest university in the US?\tJohn Cornwell\t-12.949650797119666\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Duke University, named, John Cornwell) -> John Cornwell (19149ms)\nWhat is the oldest university in the US?\tJohn Richards\t-13.001818427211905\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Duke University, named, John Richards) -> John Richards (19149ms)\nWhat is the oldest university in the US?\tOsten\t-13.005992170318603\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Osten, was named the 700th member of, the University) -> Osten (19150ms)\nWhat is the oldest university in the US?\tRevels\t-13.025425604775801\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Revels, was named the first president of, Alcorn University) -> Revels (19149ms)\nWhat is the oldest university in the US?\tWebsite Comment\t-13.03459600559879\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (London University, Name, Website Comment) -> Website Comment (19149ms)\nWhat is the oldest university in the US?\tthe Optometry Building\t-13.037588163304582\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the Optometry Building) -> the Optometry Building (19149ms)\nWhat is the oldest university in the US?\tSusan Fiske\t-13.048868362499897\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Susan Fiske) -> Susan Fiske (19149ms)\nWhat is the oldest university in the US?\tWallace Fowlie\t-13.048868362499897\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Duke University, named, Wallace Fowlie) -> Wallace Fowlie (19175ms)\nWhat is the oldest university in the US?\tCarrol Quigley\t-13.048868362499897\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Georgetown University, named, Carrol Quigley) -> Carrol Quigley (19149ms)\nWhat is the oldest university in the US?\tMarty Tucker\t-13.066964786644697\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University, named, Marty Tucker) -> Marty Tucker (19175ms)\nWhat is the oldest university in the US?\tEdgar Odell Lovett\t-13.078088039081454\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Edgar Odell Lovett) -> Edgar Odell Lovett (19175ms)\nWhat is the oldest university in the US?\tEugene Higgens Professor\t-13.088306182208495\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Eugene Higgens Professor) -> Eugene Higgens Professor (19175ms)\nWhat is the oldest university in the US?\tKiffin\t-13.08845881211608\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Kiffin, was named the new head coach of, the University) -> Kiffin (19175ms)\nWhat is the oldest university in the US?\tRichard Andrew Cloward\t-13.093119366006981\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Columbia University, named, Richard Andrew Cloward) -> Richard Andrew Cloward (19175ms)\nWhat is the oldest university in the US?\ta central contemporary reality\t-13.121043099388414\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Harvard University, named, a central contemporary reality) -> a central contemporary reality (19175ms)\nWhat is the oldest university in the US?\tOld Main Hall\t-13.148827307568915\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, Old Main Hall) -> Old Main Hall (19175ms)\nWhat is the oldest university in the US?\tRobert Schoch\t-13.172591524297307\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Boston University, named, Robert Schoch) -> Robert Schoch (19262ms)\nWhat is the oldest university in the US?\tSteven Taylor\t-13.172591524297307\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Naropa University, named, Steven Taylor) -> Steven Taylor (19262ms)\nWhat is the oldest university in the US?\tJeffrey Scott White\t-13.182502085217326\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (-.- Brenau University, named, Jeffrey Scott White) -> Jeffrey Scott White (19262ms)\nWhat is the oldest university in the US?\tAndrew Abela\t-13.192992643161258\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Catholic University, named, Andrew Abela) -> Andrew Abela (19262ms)\nWhat is the oldest university in the US?\ta new library building\t-13.216044508251535\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Ohio University, named, a new library building) -> a new library building (19262ms)\nWhat is the oldest university in the US?\tSIMON\t-13.217474418618805\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (SIMON, is the name of, your university) -> SIMON (19262ms)\nWhat is the oldest university in the US?\ta public plaza\t-13.217722194870635\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, a public plaza) -> a public plaza (19262ms)\nWhat is the oldest university in the US?\ta chief information officer\t-13.21787750188328\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Pace University, named, a chief information officer) -> a chief information officer (19285ms)\nWhat is the oldest university in the US?\tDr.\t-13.218439608112293\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Stanford University, named, Dr.) -> Dr. (19285ms)\nWhat is the oldest university in the US?\ta lecture theatre\t-13.231994551771745\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, a lecture theatre) -> a lecture theatre (19285ms)\nWhat is the oldest university in the US?\tEnsor\t-13.258950064945001\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Universities, named, Ensor) -> Ensor (19285ms)\nWhat is the oldest university in the US?\tLaura O'Donnell\t-13.277268454908794\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Vanderbilt University, named, Laura O'Donnell) -> Laura O'Donnell (19285ms)\nWhat is the oldest university in the US?\tWard Shepard director\t-13.28057679364646\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Harvard University, named, Ward Shepard director) -> Ward Shepard director (19285ms)\nWhat is the oldest university in the US?\tOverall experience Selection process Note\t-13.291201300986053\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University, Name, Overall experience Selection process Note) -> Overall experience Selection process Note (19285ms)\nWhat is the oldest university in the US?\ta Military Friendly School\t-13.303881441817936\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Regis University, named, a Military Friendly School) -> a Military Friendly School (19285ms)\nWhat is the oldest university in the US?\tDavid Morrison vice president\t-13.313370845354493\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Brenau University, named, David Morrison vice president) -> David Morrison vice president (19307ms)\nWhat is the oldest university in the US?\tnew president Excerpt\t-13.34335481865874\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Lawrence University, names, new president Excerpt) -> new president Excerpt (19307ms)\nWhat is the oldest university in the US?\tstatistics Prof. Ed Rothman chairman\t-13.362574464856486\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University Affairs, named, statistics Prof. Ed Rothman chairman) -> statistics Prof. Ed Rothman chairman (19307ms)\nWhat is the oldest university in the US?\tMichelson\t-13.382703005246414\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Clemson University, named, Michelson) -> Michelson (19307ms)\nWhat is the oldest university in the US?\t?Eden Institute ?\t-13.401711858963244\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (No university, named, ?Eden Institute ?) -> ?Eden Institute ? (19307ms)\nWhat is the oldest university in the US?\tDavid Filo and Jerry Yang\t-13.41297372214653\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Stanford University, named, David Filo and Jerry Yang) -> David Filo and Jerry Yang (19307ms)\nWhat is the oldest university in the US?\tCSIS\t-13.584201138206046\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Carleton University, named, CSIS) -> CSIS (19328ms)\nWhat is the oldest university in the US?\tSally Peck\t-13.616204473899796\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, Sally Peck) -> Sally Peck (19328ms)\nWhat is the oldest university in the US?\ta recital hall\t-13.686154849398488\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Liberty University, named, a recital hall) -> a recital hall (19328ms)\nWhat is the oldest university in the US?\tStrauss\t-13.709837315410722\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Strauss) -> Strauss (19328ms)\nWhat is the oldest university in the US?\tGao Zhan\t-13.716521090473488\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (American University, named, Gao Zhan) -> Gao Zhan (19328ms)\nWhat is the oldest university in the US?\tDan Goldstein\t-13.739955787517438\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Columbia University, named, Dan Goldstein) -> Dan Goldstein (19328ms)\nWhat is the oldest university in the US?\t1979\t-13.773960121684862\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (1979, was named the director of, the University) -> 1979 (19328ms)\nWhat is the oldest university in the US?\tthe Shrine\t-13.86084298782462\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Hebrew University, named, the Shrine) -> the Shrine (19381ms)\nWhat is the oldest university in the US?\tMumbai\t-13.893423173484672\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Mumbai, [is] the name of, the University) -> Mumbai (19381ms)\nWhat is the oldest university in the US?\tSoutheast University\t-13.918202064589082\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (a university, named, Southeast University) -> Southeast University (19381ms)\nWhat is the oldest university in the US?\tJapan\t-13.958396891264504\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Japan, [is] the name of, a university) -> Japan (19381ms)\nWhat is the oldest university in the US?\tRhett\t-13.960824251785462\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Boston University, named, Rhett) -> Rhett (19381ms)\nWhat is the oldest university in the US?\ta week\t-14.002863812098433\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (universities, named, a week) -> a week (19381ms)\nWhat is the oldest university in the US?\tcommon\t-14.026930642091688\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (common, is the full name of, the university) -> common (19381ms)\nWhat is the oldest university in the US?\tthe other hand\t-14.05125049180782\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the other hand, is the name of, an ancient university) -> the other hand (19381ms)\nWhat is the oldest university in the US?\ta chair\t-14.070478195540423\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Yale University, named, a chair) -> a chair (19455ms)\nWhat is the oldest university in the US?\tthe movie\t-14.113616706592769\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the movie, is the name of, the university student) -> the movie (19455ms)\nWhat is the oldest university in the US?\tVisva-Bharati\t-14.115652775096695\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, Visva-Bharati) -> Visva-Bharati (19455ms)\nWhat is the oldest university in the US?\tSteve Sumarah\t-14.126671749426244\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, Steve Sumarah) -> Steve Sumarah (19455ms)\nWhat is the oldest university in the US?\tthe publisher\t-14.161363404679523\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the publisher, should be the name of, the University) -> the publisher (19455ms)\nWhat is the oldest university in the US?\tthe username\t-14.223510619206404\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the username, is the name of, the University) -> the username (19455ms)\nWhat is the oldest university in the US?\ta hall\t-14.226892163023628\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The University, named, a hall) -> a hall (19455ms)\nWhat is the oldest university in the US?\tRobert Jahn\t-14.230300094468845\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Robert Jahn) -> Robert Jahn (19455ms)\nWhat is the oldest university in the US?\ta new president\t-14.285613749415084\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, a new president) -> a new president (19475ms)\nWhat is the oldest university in the US?\tthe lab\t-14.289971531011705\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, the lab) -> the lab (19475ms)\nWhat is the oldest university in the US?\ta new residence hall\t-14.340591159414743\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, a new residence hall) -> a new residence hall (19475ms)\nWhat is the oldest university in the US?\tthe area?s\t-14.366020319569877\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University, named, the area?s) -> the area?s (19475ms)\nWhat is the oldest university in the US?\tthe field\t-14.452463280197282\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the field, was recently named the director of, the University) -> the field (19475ms)\nWhat is the oldest university in the US?\tthe changing exhibition\t-14.504640819025939\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the changing exhibition) -> the changing exhibition (19475ms)\nWhat is the oldest university in the US?\tthe sole lecture room\t-14.510075546875608\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Stanford University, named, the sole lecture room) -> the sole lecture room (19475ms)\nWhat is the oldest university in the US?\tthe second floor\t-14.558576874622664\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, the second floor) -> the second floor (19475ms)\nWhat is the oldest university in the US?\tthe best book\t-14.590343438553244\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the best book) -> the best book (19496ms)\nWhat is the oldest university in the US?\tthe law school\t-14.648700478857748\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The university, named, the law school) -> the law school (19496ms)\nWhat is the oldest university in the US?\timportant\t-14.685117733505589\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (important, is the name of, your university) -> important (19496ms)\nWhat is the oldest university in the US?\tthe new , state-of-the-art library\t-14.685603487709376\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the new , state-of-the-art library) -> the new , state-of-the-art library (19496ms)\nWhat is the oldest university in the US?\ta residence hall\t-14.75326651023827\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The University, named, a residence hall) -> a residence hall (19496ms)\nWhat is the oldest university in the US?\tthe avenue\t-14.753322219884506\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, the avenue) -> the avenue (19496ms)\nWhat is the oldest university in the US?\tplacenames\t-14.75818616343497\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (placenames, is the names of, university colleges and halls) -> placenames (19496ms)\nWhat is the oldest university in the US?\tthe challenge\t-14.776741829205756\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Keele University, named, the challenge) -> the challenge (19496ms)\nWhat is the oldest university in the US?\tthe atrium\t-14.797825496878545\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Indiana University, named, the atrium) -> the atrium (19516ms)\nWhat is the oldest university in the US?\tEnglish statesman\t-14.890538492960703\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Wilberforce University, named, English statesman) -> English statesman (19516ms)\nWhat is the oldest university in the US?\tgovernment\t-14.892347983127786\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (government, was named the 12th president of, the University) -> government (19516ms)\nWhat is the oldest university in the US?\tthe library\t-14.948531334140585\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University leaders, named, the library) -> the library (19516ms)\nWhat is the oldest university in the US?\tstarts\t-14.991739857499645\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (- Maastricht University, Name, starts) -> starts (19516ms)\nWhat is the oldest university in the US?\tthe Center\t-15.183108375993974\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the Center) -> the Center (19516ms)\nWhat is the oldest university in the US?\tthe building\t-15.567746801712154\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the building) -> the building (19516ms)\nWhat is the oldest university in the US?\tschool\t-16.067476368474292\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the universitys, named, school) -> school (19516ms)\nWhat is the oldest university in the US?\tabove\t-16.540606146463414\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the universities, named, above) -> above (19536ms)\nWhat is the oldest university in the US?\tfellowship\t-17.172976476932188\tWhat is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University, named, fellowship) -> fellowship (19536ms)\nHow many sonnets did Shakespeare write?\tSonnet V\t-2.1510606462830006\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet V, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 43) -> Sonnet V (5717ms)\nHow many sonnets did Shakespeare write?\tSeven Ages of Man\t-2.2249957032345105\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Seven Ages of Man, Instance Of, sonnet) (William Shakespeare, Works written, The seven ages of man) -> Seven Ages of Man (5717ms)\nHow many sonnets did Shakespeare write?\tSonnet 43\t-2.300652216691462\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet 43, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 43) -> Sonnet 43 (5717ms)\nHow many sonnets did Shakespeare write?\tSonnet 71\t-2.345546172126604\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet 71, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 71) -> Sonnet 71 (5744ms)\nHow many sonnets did Shakespeare write?\tSonnet 116\t-2.345546172126604\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet 116, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 116) -> Sonnet 116 (5717ms)\nHow many sonnets did Shakespeare write?\tSonnet 153\t-2.345546172126604\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet 153, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 153) -> Sonnet 153 (5717ms)\nHow many sonnets did Shakespeare write?\tRomeo and Juliet\t-3.776011475706631\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Romeo and Juliet, Instance Of, sonnet) (Shakespeare, wrote, Romeo and Juliet) -> Romeo and Juliet (5744ms)\nHow many sonnets did Shakespeare write?\tlove\t-4.887778687145947\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, in write, $x) -> (love, Instance Of, shakspeare sonnet's address topic) (Shakespeare, wrote in, Love) -> love (7585ms)\nHow many sonnets did Shakespeare write?\tSonnet 73\t-5.161779547628202\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, in write, $x) -> (Sonnet 73, Instance Of, Shakespearian sonnet) (Shakespeare, wrote in, Sonnet 73) -> Sonnet 73 (7585ms)\nHow many sonnets did Shakespeare write?\tRomeo\t-6.0994794019631655\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, make fun, $x) -> (Romeo, Instance Of, religious person the lover's share a sonnet) (Shakespeare?s play Mercutio, makes fun of, Romeo) -> Romeo (10187ms)\nHow many sonnets did Shakespeare write?\tSonnet 127\t-6.737245176874088\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, in write, $x) -> (Sonnet 127, Instance Of, sonnet) (Shakespeare, wrote in, Sonnet 73) -> Sonnet 127 (7696ms)\nHow many sonnets did Shakespeare write?\tSonnet 130\t-6.7694803718419365\tHow many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, in write, $x) -> (Sonnet 130, Instance Of, sonnet) (Shakespeare, wrote in, Sonnet 73) -> Sonnet 130 (7722ms)\nHow did Eva Peron die?\tcancer\t-8.668329329389154\tHow did Eva Peron die? -> how do [ eva peron ] die ? -> what do eva peron die ? -> $x: (eva peron, die, $x) -> (Eva Peron, died of, cancer) -> cancer (10953ms)\nHow did Eva Peron die?\tJuly 26 , 1952\t-9.569781272665228\tHow did Eva Peron die? -> how do [ eva peron ] die ? -> what do eva peron die ? -> $x: (eva peron, die, $x) -> (Eva Peron, died on, July 26 , 1952) -> July 26 , 1952 (10953ms)\nHow did Eva Peron die?\tCancer\t-10.573733880031279\tHow did Eva Peron die? -> how [ do eva peron ] die ? -> what cause do eva peron die ? -> $x: ($x, instance of, cause) (eva peron, die, $x) -> (Cancer, Instance Of, cause) (Eva Peron, died of, cancer) -> Cancer (10954ms)\nHow did Eva Peron die?\tArgentina\t-10.823037103055556\tHow did Eva Peron die? -> how do [ eva peron ] die ? -> what do eva peron die ? -> $x: (eva peron, die, $x) -> (Eva Peron, died in, Argentina) -> Argentina (11135ms)\nWhat was Thailand's original name?\tCentral Plains\t-4.732550164173659\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Central Thailand, Also known as, Central Plains) -> Central Plains (13743ms)\nWhat was Thailand's original name?\tStreet Children in Thailand\t-4.765749726377235\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Street children in Thailand, Also known as, Street Children in Thailand) -> Street Children in Thailand (13743ms)\nWhat was Thailand's original name?\tMinistry of Interior of Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thailand Ministry of Interior, Also known as, Ministry of Interior of Thailand) -> Ministry of Interior of Thailand (19973ms)\nWhat was Thailand's original name?\tVishay (Thailand) Limited\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Vishay (Thailand) Ltd, Also known as, Vishay (Thailand) Limited) -> Vishay (Thailand) Limited (17371ms)\nWhat was Thailand's original name?\tDenmark-Thailand relations\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Denmark?Thailand relations, Also known as, Denmark-Thailand relations) -> Denmark-Thailand relations (17571ms)\nWhat was Thailand's original name?\tSafeskin Latex (Thailand) Limited, Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Safeskin Latex (Thailand) Ltd Thailand, Also known as, Safeskin Latex (Thailand) Limited, Thailand) -> Safeskin Latex (Thailand) Limited, Thailand (19688ms)\nWhat was Thailand's original name?\tFirearms proliferation in thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Firearms proliferation in Thailand, Also known as, Firearms proliferation in thailand) -> Firearms proliferation in thailand (19973ms)\nWhat was Thailand's original name?\tMakok, Lamphun\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Makok, Thailand, Also known as, Makok, Lamphun) -> Makok, Lamphun (19973ms)\nWhat was Thailand's original name?\tVantico (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Vantico (Thailand) Limited, Also known as, Vantico (Thailand) Ltd) -> Vantico (Thailand) Ltd (19918ms)\nWhat was Thailand's original name?\tCEREAL PARTNERS (THAILAND) LIMITED\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (CEREAL PARTNERS (THAILAND) Ltd, Also known as, CEREAL PARTNERS (THAILAND) LIMITED) -> CEREAL PARTNERS (THAILAND) LIMITED (19918ms)\nWhat was Thailand's original name?\tGuidant (Thailand) Ltd (Thailand)\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Guidant (Thailand) Ltd. (Thailand), Also known as, Guidant (Thailand) Ltd (Thailand)) -> Guidant (Thailand) Ltd (Thailand) (19688ms)\nWhat was Thailand's original name?\tHewitt Associates (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Hewitt Associates (Thailand) Limited, Also known as, Hewitt Associates (Thailand) Ltd) -> Hewitt Associates (Thailand) Ltd (19902ms)\nWhat was Thailand's original name?\tSafeskin Medical & Scientific (Thailand) Ltd Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Safeskin Medical & Scientific (Thailand) Limited, Thailand, Also known as, Safeskin Medical & Scientific (Thailand) Ltd Thailand) -> Safeskin Medical & Scientific (Thailand) Ltd Thailand (13744ms)\nWhat was Thailand's original name?\tHussmann (Thailand) Company\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Hussmann (Thailand) Co ltd, Also known as, Hussmann (Thailand) Company) -> Hussmann (Thailand) Company (19182ms)\nWhat was Thailand's original name?\tTransitions Optical (Thailand) Ltd. - Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Transitions Optical (Thailand) Ltd Thailand, Also known as, Transitions Optical (Thailand) Ltd. - Thailand) -> Transitions Optical (Thailand) Ltd. - Thailand (19937ms)\nWhat was Thailand's original name?\tTyco Healthcare (Thailand) Limited\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Tyco Healthcare (Thailand) Ltd, Also known as, Tyco Healthcare (Thailand) Limited) -> Tyco Healthcare (Thailand) Limited (19182ms)\nWhat was Thailand's original name?\tMVCI (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (MVCI (Thailand) Limited, Also known as, MVCI (Thailand) Ltd) -> MVCI (Thailand) Ltd (16568ms)\nWhat was Thailand's original name?\tProcter & Gamble Holding (Thailand)\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Procter & Gamble Holding (Thailand) [Thailand], Also known as, Procter & Gamble Holding (Thailand)) -> Procter & Gamble Holding (Thailand) (13743ms)\nWhat was Thailand's original name?\tThermadyne (Thailand) Co Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thermadyne (Thailand) Co. Ltd., Also known as, Thermadyne (Thailand) Co Ltd) -> Thermadyne (Thailand) Co Ltd (19918ms)\nWhat was Thailand's original name?\tPassport's Thailand.\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thailand: trip planner & guide, Also known as, Passport's Thailand.) -> Passport's Thailand. (17571ms)\nWhat was Thailand's original name?\tCrown Prince of Siam\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Crown Prince of Thailand, Also known as, Crown Prince of Siam) -> Crown Prince of Siam (19937ms)\nWhat was Thailand's original name?\tDantean (Thailand) Company\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Dantean (Thailand) Co ltd, Also known as, Dantean (Thailand) Company) -> Dantean (Thailand) Company (19182ms)\nWhat was Thailand's original name?\tWilsonart (Thailand) Co Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Wilsonart (Thailand) Co. Ltd., Also known as, Wilsonart (Thailand) Co Ltd) -> Wilsonart (Thailand) Co Ltd (19973ms)\nWhat was Thailand's original name?\tPakistan-Thailand relations\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Pakistan?Thailand relations, Also known as, Pakistan-Thailand relations) -> Pakistan-Thailand relations (17371ms)\nWhat was Thailand's original name?\tMorgan Stanley (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Morgan Stanley (Thailand) Limited, Also known as, Morgan Stanley (Thailand) Ltd) -> Morgan Stanley (Thailand) Ltd (19973ms)\nWhat was Thailand's original name?\tNuptiality patterns in Thailand.\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Nuptiality in Thailand, Also known as, Nuptiality patterns in Thailand.) -> Nuptiality patterns in Thailand. (17371ms)\nWhat was Thailand's original name?\tFEI Systems (Thailand) Company, (Thailand)\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (FEI Systems (Thailand) Co (Thailand), Also known as, FEI Systems (Thailand) Company, (Thailand)) -> FEI Systems (Thailand) Company, (Thailand) (19902ms)\nWhat was Thailand's original name?\tPeople's Republic of China?Thailand relations\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (China?Thailand relations, Also known as, People's Republic of China?Thailand relations) -> People's Republic of China?Thailand relations (17502ms)\nWhat was Thailand's original name?\tBearingPoint (Thailand) Ltd. (Thailand)\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (BearingPoint (Thailand) Ltd (Thailand), Also known as, BearingPoint (Thailand) Ltd. (Thailand)) -> BearingPoint (Thailand) Ltd. (Thailand) (16568ms)\nWhat was Thailand's original name?\tWella Trading (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Wella Trading (Thailand) Ltd. [Thailand], Also known as, Wella Trading (Thailand) Ltd) -> Wella Trading (Thailand) Ltd (19955ms)\nWhat was Thailand's original name?\tAssumption University, Thailand, main campus\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Assumption University, Thailand, Also known as, Assumption University, Thailand, main campus) -> Assumption University, Thailand, main campus (19901ms)\nWhat was Thailand's original name?\tReader's Digest (Thailand) Limited\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Readers Digest (Thailand) Ltd, Also known as, Reader's Digest (Thailand) Limited) -> Reader's Digest (Thailand) Limited (19901ms)\nWhat was Thailand's original name?\tTellabs (Thailand) Co Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Tellabs (Thailand) Co., Ltd., Also known as, Tellabs (Thailand) Co Ltd) -> Tellabs (Thailand) Co Ltd (17502ms)\nWhat was Thailand's original name?\tThai?lande vue du ciel.\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thailand from the air, Also known as, Thai?lande vue du ciel.) -> Thai?lande vue du ciel. (17571ms)\nWhat was Thailand's original name?\tSurvivor (Television program)\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thailand, Also known as, Survivor (Television program)) -> Survivor (Television program) (19901ms)\nWhat was Thailand's original name?\tFintube (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Fintube (Thailand) Limited, Also known as, Fintube (Thailand) Ltd) -> Fintube (Thailand) Ltd (19937ms)\nWhat was Thailand's original name?\tChina ? Thailand relations\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (China?Thailand relations, Also known as, China ? Thailand relations) -> China ? Thailand relations (17371ms)\nWhat was Thailand's original name?\tRichardson Electronics (Thailand) Limited\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Richardson Electronics (Thailand) Ltd, Also known as, Richardson Electronics (Thailand) Limited) -> Richardson Electronics (Thailand) Limited (19937ms)\nWhat was Thailand's original name?\tLionbridge (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Lionbridge (Thailand) Limited, Also known as, Lionbridge (Thailand) Ltd) -> Lionbridge (Thailand) Ltd (19689ms)\nWhat was Thailand's original name?\tHuntsman (Thailand) Limited\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Huntsman (Thailand) Ltd, Also known as, Huntsman (Thailand) Limited) -> Huntsman (Thailand) Limited (19918ms)\nWhat was Thailand's original name?\tSafeskin Corporation (Thailand) Limited, Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Safeskin Corp (Thailand) Ltd Thailand, Also known as, Safeskin Corporation (Thailand) Limited, Thailand) -> Safeskin Corporation (Thailand) Limited, Thailand (19688ms)\nWhat was Thailand's original name?\tKimberly Clark Manufacturing (Thailand) Ltd Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Kimberly-Clark Manufacturing (Thailand) Limited, Thailand, Also known as, Kimberly Clark Manufacturing (Thailand) Ltd Thailand) -> Kimberly Clark Manufacturing (Thailand) Ltd Thailand (19955ms)\nWhat was Thailand's original name?\tGillette (Thailand)\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Gillette (Thailand) [Thailand], Also known as, Gillette (Thailand)) -> Gillette (Thailand) (19955ms)\nWhat was Thailand's original name?\tPPG Coatings (Thailand) Co., Ltd. - Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (PPG Coatings (Thailand) Co Ltd Thailand, Also known as, PPG Coatings (Thailand) Co., Ltd. - Thailand) -> PPG Coatings (Thailand) Co., Ltd. - Thailand (17502ms)\nWhat was Thailand's original name?\tDiebold (Thailand) Company\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Diebold (Thailand) Co ltd, Also known as, Diebold (Thailand) Company) -> Diebold (Thailand) Company (19955ms)\nWhat was Thailand's original name?\tDentsply (Thailand) Ltd. (Thailand)\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Dentsply (Thailand) Ltd (Thailand), Also known as, Dentsply (Thailand) Ltd. (Thailand)) -> Dentsply (Thailand) Ltd. (Thailand) (19902ms)\nWhat was Thailand's original name?\tDenmark ? Thailand relations\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Denmark?Thailand relations, Also known as, Denmark ? Thailand relations) -> Denmark ? Thailand relations (19937ms)\nWhat was Thailand's original name?\tMengrai, Phaya Mengrai\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Mengrai, Thailand, Also known as, Mengrai, Phaya Mengrai) -> Mengrai, Phaya Mengrai (16568ms)\nWhat was Thailand's original name?\tPeople's Republic of China ? Thailand relations\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (China?Thailand relations, Also known as, People's Republic of China ? Thailand relations) -> People's Republic of China ? Thailand relations (17571ms)\nWhat was Thailand's original name?\tKellogg (Thailand) - Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Kellogg (Thailand) Thailand, Also known as, Kellogg (Thailand) - Thailand) -> Kellogg (Thailand) - Thailand (19689ms)\nWhat was Thailand's original name?\tRenaissance Holdings (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Renaissance Holdings (Thailand) Limited, Also known as, Renaissance Holdings (Thailand) Ltd) -> Renaissance Holdings (Thailand) Ltd (19937ms)\nWhat was Thailand's original name?\tAfternoons in Thailand\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Afternoons In Thailand, Also known as, Afternoons in Thailand) -> Afternoons in Thailand (19955ms)\nWhat was Thailand's original name?\tKLA-Tencor (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (KLA Tencor (Thailand) Ltd, Also known as, KLA-Tencor (Thailand) Ltd) -> KLA-Tencor (Thailand) Ltd (19955ms)\nWhat was Thailand's original name?\tRyder Thailand VI LLC\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Ryder Thailand VI, LLC, Also known as, Ryder Thailand VI LLC) -> Ryder Thailand VI LLC (19973ms)\nWhat was Thailand's original name?\tKimball Electronics (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Kimball Electronics (Thailand) Limited, Also known as, Kimball Electronics (Thailand) Ltd) -> Kimball Electronics (Thailand) Ltd (19918ms)\nWhat was Thailand's original name?\tRyder Thailand V, LLC\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Ryder Thailand V LLC, Also known as, Ryder Thailand V, LLC) -> Ryder Thailand V, LLC (19182ms)\nWhat was Thailand's original name?\tMakok, Pa Sang\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Makok, Thailand, Also known as, Makok, Pa Sang) -> Makok, Pa Sang (17502ms)\nWhat was Thailand's original name?\tMettler-Toledo (Thailand) Ltd\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Mettler Toledo (Thailand) Ltd, Also known as, Mettler-Toledo (Thailand) Ltd) -> Mettler-Toledo (Thailand) Ltd (16568ms)\nWhat was Thailand's original name?\tLear Seating (Thailand) Corp. Ltd. (Thailand)\t-4.816825975921197\tWhat was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Lear Seating (Thailand) Corp Ltd (Thailand), Also known as, Lear Seating (Thailand) Corp. Ltd. (Thailand)) -> Lear Seating (Thailand) Corp. Ltd. (Thailand) (19918ms)\nHow big is a keg?\t232.986\t-11.989723417906681\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (Tap A Keg, Length, 232.986) -> 232.986 (19394ms)\nHow big is a keg?\t139.813\t-12.10884190050304\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (My Lizzard Had A Keg Party, Length, 139.813) -> 139.813 (19394ms)\nHow big is a keg?\t15.5\t-12.393550930107365\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> (a Sankey keg, has a diameter of, 15.5) -> 15.5 (12611ms)\nHow big is a keg?\t7pm We?ll\t-12.440158579990406\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (7pm We?ll, be tapping, a keg) -> 7pm We?ll (13698ms)\nHow big is a keg?\t6pm\t-12.457842518821517\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (6pm, we?ll be tapping, a keg) -> 6pm (13697ms)\nHow big is a keg?\tbig\t-12.467310011706875\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (big, is, a keg) -> big (13698ms)\nHow big is a keg?\tMi6\t-12.553836804743261\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Mi6, Tracks Recorded, My Lizzard Had A Keg Party) -> Mi6 (19394ms)\nHow big is a keg?\ta 6 pack\t-12.573672413029428\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a 6 pack, there is, a keg) -> a 6 pack (13697ms)\nHow big is a keg?\t987602\t-12.599903556832846\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (Typical form for a keg stand, Length, 987602) -> 987602 (19394ms)\nHow big is a keg?\t07 Kegging\t-12.610172739713274\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (07 Kegging, Is, A Keg) -> 07 Kegging (13697ms)\nHow big is a keg?\tThrasher Skate Rock, Volume 3: Wild Riders of Boards\t-12.65800519438218\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Thrasher Skate Rock, Volume 3: Wild Riders of Boards, Tracks, The Keg Kept a Flowin') -> Thrasher Skate Rock, Volume 3: Wild Riders of Boards (19394ms)\nHow big is a keg?\tLepreCon32\t-12.700048134030125\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (LepreCon32, was stocked with, a keg) -> LepreCon32 (13697ms)\nHow big is a keg?\ta match\t-12.998845066975303\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a match, is to, a keg) -> a match (13748ms)\nHow big is a keg?\t182.0\t-13.033669890208527\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (The Keg Kept a Flowin', Length, 182.0) -> 182.0 (19394ms)\nHow big is a keg?\t74.0\t-13.093645629697601\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (A Keg of Beer and an Accordion, Length, 74.0) -> 74.0 (19394ms)\nHow big is a keg?\tHoratio Sanz\t-13.094395515279158\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Horatio Sanz, was manning, a keg) -> Horatio Sanz (13747ms)\nHow big is a keg?\t1068.6288\t-13.117207527354024\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (Powder Keg: A Blast into the Wilderness, Track Length, 1068.6288) -> 1068.6288 (19424ms)\nHow big is a keg?\tThem Boners Be Poppin'\t-13.190152636880383\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Them Boners Be Poppin', Tracks, Keg Kept a Flowin') -> Them Boners Be Poppin' (19423ms)\nHow big is a keg?\tA firkin\t-13.24904817258497\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (A firkin, is, a keg) -> A firkin (13747ms)\nHow big is a keg?\tA kegerator\t-13.295151661543915\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (A kegerator, is, a keg-) -> A kegerator (13747ms)\nHow big is a keg?\tTap A Keg\t-13.36883036077492\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Tap A Keg, Tracks, Tap A Keg) -> Tap A Keg (19423ms)\nHow big is a keg?\ta cask\t-13.374773177927253\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a cask, is nothing like, a keg) -> a cask (13748ms)\nHow big is a keg?\tone end\t-13.411159831019098\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (one end, was, a keg) -> one end (13748ms)\nHow big is a keg?\tKeg Kept a Flowin'\t-13.4283896020731\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Keg Kept a Flowin', Tracks, Keg Kept a Flowin') -> Keg Kept a Flowin' (19423ms)\nHow big is a keg?\tBend\t-13.428787063847807\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Bend, is getting, a keg) -> Bend (13795ms)\nHow big is a keg?\temployees\t-13.441250435098125\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (employees, are treated to, a keg) -> employees (13795ms)\nHow big is a keg?\tWe?ll\t-13.449680117319852\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (We?ll, be getting, a keg) -> We?ll (13795ms)\nHow big is a keg?\tDC Brau\t-13.468819703609963\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (DC Brau, are bringing, a keg) -> DC Brau (13795ms)\nHow big is a keg?\tThe Keg Kept a Flowin'\t-13.476036995111642\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (The Keg Kept a Flowin', Tracks, The Keg Kept a Flowin') -> The Keg Kept a Flowin' (19424ms)\nHow big is a keg?\ta fan\t-13.505712282086812\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a fan, was in, a keg) -> a fan (13795ms)\nHow big is a keg?\tTwelve artists\t-13.512602184206903\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Twelve artists, were given, a keg) -> Twelve artists (13795ms)\nHow big is a keg?\tFace Plant\t-13.515021225779542\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Face Plant, Tracks Recorded, Tap A Keg) -> Face Plant (19423ms)\nHow big is a keg?\ta referee shirt\t-13.520559967221361\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a referee shirt, was rolling, a keg) -> a referee shirt (13815ms)\nHow big is a keg?\tThe Pub\t-13.53316754403031\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The Pub, will be tapping, a keg) -> The Pub (13813ms)\nHow big is a keg?\tTales From The Backside\t-13.547508084669458\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Tales From The Backside, Tracks, Tap A Keg) -> Tales From The Backside (19424ms)\nHow big is a keg?\tBuilding A Better Boy (KegZ Grimey ReMix)\t-13.547508084669458\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Building A Better Boy (KegZ Grimey ReMix), Tracks, Building A Better Boy (KegZ Grimey ReMix)) -> Building A Better Boy (KegZ Grimey ReMix) (19505ms)\nHow big is a keg?\tA Keg of Beer and an Accordion\t-13.547508084669458\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (A Keg of Beer and an Accordion, Tracks, A Keg of Beer and an Accordion) -> A Keg of Beer and an Accordion (19505ms)\nHow big is a keg?\tOskar Blues\t-13.548655743578388\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Oskar Blues, will be tapping, a keg) -> Oskar Blues (13813ms)\nHow big is a keg?\tAleSmith\t-13.555802681209201\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (AleSmith, will be seving, a keg) -> AleSmith (13813ms)\nHow big is a keg?\tBoneless Ones\t-13.574996965268618\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Boneless Ones, Tracks Recorded, The Keg Kept a Flowin') -> Boneless Ones (19505ms)\nHow big is a keg?\tRe-Building A Better Boy\t-13.574996965268618\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Re-Building A Better Boy, Tracks, Building A Better Boy (KegZ Grimey ReMix)) -> Re-Building A Better Boy (19505ms)\nHow big is a keg?\tThe Boneless Ones\t-13.574996965268618\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (The Boneless Ones, Tracks Recorded, Keg Kept a Flowin') -> The Boneless Ones (19505ms)\nHow big is a keg?\tMachine Boy\t-13.598558862925039\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Machine Boy, Tracks Recorded, Building A Better Boy (KegZ Grimey ReMix)) -> Machine Boy (19541ms)\nHow big is a keg?\tCalamity Drenching\t-13.598558862925039\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Calamity Drenching, Tracks, A Keg of Beer and an Accordion) -> Calamity Drenching (19505ms)\nHow big is a keg?\tAmy and Jared\t-13.604235008302924\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Amy and Jared, are getting, a keg) -> Amy and Jared (13814ms)\nHow big is a keg?\tPM Re\t-13.604494213946474\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (PM Re, are in, a keg) -> PM Re (13813ms)\nHow big is a keg?\tAn unused gift\t-13.614029755562383\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (An unused gift, is, a keg) -> An unused gift (13834ms)\nHow big is a keg?\tMcCarthy Trenching\t-13.618979174227272\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (McCarthy Trenching, Tracks Recorded, A Keg of Beer and an Accordion) -> McCarthy Trenching (19541ms)\nHow big is a keg?\t5549\t-13.6263551295423\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (A typical keg with single opening in the centre of the top end, Length, 5549) -> 5549 (19541ms)\nHow big is a keg?\tThere?s\t-13.64169508524044\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (There?s, said to be, a keg) -> There?s (13833ms)\nHow big is a keg?\tCambridge Brewing Co.\t-13.641988462454407\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Cambridge Brewing Co., is donating, a keg) -> Cambridge Brewing Co. (13833ms)\nHow big is a keg?\tLive Oak\t-13.669040611760948\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Live Oak, is donating, a keg) -> Live Oak (13833ms)\nHow big is a keg?\tThe Niger Delta\t-13.673327607201855\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The Niger Delta, is like, a keg) -> The Niger Delta (13833ms)\nHow big is a keg?\tboard\t-13.693289972351726\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (board, was, a keg) -> board (13833ms)\nHow big is a keg?\tLAKS\t-13.698283752742752\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (LAKS, will be providing, a Keg) -> LAKS (13851ms)\nHow big is a keg?\tmuch beer\t-13.709727718080407\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (much beer, is in, a keg) -> much beer (13851ms)\nHow big is a keg?\tNew Belgium Brewing\t-13.76970518977646\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (New Belgium Brewing, is donating, a keg) -> New Belgium Brewing (13851ms)\nHow big is a keg?\tFirestone Walker\t-13.76970518977646\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Firestone Walker, is also donating, a keg) -> Firestone Walker (13851ms)\nHow big is a keg?\tCrow Peak Brewery\t-13.793737595515534\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Crow Peak Brewery, are serving up, a keg) -> Crow Peak Brewery (13851ms)\nHow big is a keg?\tAl Oliver?s house\t-13.83306969066757\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Al Oliver?s house, was left of, a keg) -> Al Oliver?s house (13851ms)\nHow big is a keg?\tA second boy\t-13.851871010997085\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (A second boy, was sitting near, a keg) -> A second boy (13869ms)\nHow big is a keg?\tAfrica ?s giant\t-13.856942987008651\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Africa ?s giant, is sitting astride, a keg) -> Africa ?s giant (13869ms)\nHow big is a keg?\tBiker Bob\t-13.862420757667707\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Biker Bob, is resting against, a keg) -> Biker Bob (13869ms)\nHow big is a keg?\tThe Steeler?s super bowl run\t-13.875019177632765\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The Steeler?s super bowl run, was, a keg) -> The Steeler?s super bowl run (13869ms)\nHow big is a keg?\tthe cooler\t-13.893077323330832\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the cooler, is, a keg) -> the cooler (13869ms)\nHow big is a keg?\tHow many beers\t-13.969033854710613\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (How many beers, are in, a keg) -> How many beers (13888ms)\nHow big is a keg?\tHow much beer\t-13.969033854710613\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (How much beer, is in, a keg) -> How much beer (13869ms)\nHow big is a keg?\tvegetables , fish or fruits\t-14.102023202232822\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (vegetables , fish or fruits, are placed on, a keg) -> vegetables , fish or fruits (13888ms)\nHow big is a keg?\tthe press\t-14.125865075539904\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the press, was stored, a keg) -> the press (13888ms)\nHow big is a keg?\tCloverleaf\t-14.227366477201912\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Cloverleaf, is tapping, a keg) -> Cloverleaf (13888ms)\nHow big is a keg?\tOmmegang\t-14.296969888909322\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Ommegang, will be sending, a keg) -> Ommegang (13888ms)\nHow big is a keg?\tAlcoholiday\t-14.34867554180189\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Alcoholiday, Tracks, My Lizzard Had A Keg Party) -> Alcoholiday (19541ms)\nHow big is a keg?\tGossip\t-14.35645937823545\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Gossip, is like, a keg) -> Gossip (13908ms)\nHow big is a keg?\tthe drum\t-14.375663090174111\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the drum, was, a keg) -> the drum (13908ms)\nHow big is a keg?\tDonthen\t-14.400669225313228\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Donthen, was bringing, a keg) -> Donthen (13908ms)\nHow big is a keg?\tOkubena\t-14.405909880997141\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Okubena, was given, a keg) -> Okubena (13908ms)\nHow big is a keg?\tAnson\t-14.590523568638622\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Anson, is sitting on, a keg) -> Anson (13908ms)\nHow big is a keg?\tHow many cases\t-14.613659709072559\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (How many cases, are in, a keg) -> How many cases (13907ms)\nHow big is a keg?\tthe basement\t-14.614624423351655\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the basement, was, a keg) -> the basement (13926ms)\nHow big is a keg?\tthe middle\t-14.635025542215606\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the middle, was, a keg) -> the middle (13925ms)\nHow big is a keg?\tQueen Selyse's uncle\t-14.667931114987626\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Queen Selyse's uncle, Instance Of, keg of a man) -> Queen Selyse's uncle (19541ms)\nHow big is a keg?\tthe state\t-14.687829201493003\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the state, is like, a keg) -> the state (13925ms)\nHow big is a keg?\tthe boat\t-14.735575899579757\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the boat, were tapping, a keg) -> the boat (13927ms)\nHow big is a keg?\tSHIFTY\t-14.74496088676018\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (SHIFTY, Instance Of, powder keg of a film) -> SHIFTY (19541ms)\nHow big is a keg?\tthe team\t-14.755912450316453\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the team, were tapping, a keg) -> the team (13927ms)\nHow big is a keg?\tCathy Jordan\t-14.777447745650097\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Cathy Jordan, Instance Of, powder keg of a singer) -> Cathy Jordan (19559ms)\nHow big is a keg?\tKEGSET.RTM.\t-14.789854842195323\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (KEGSET.RTM., Instance Of, arrangement of a plurality KEGS.RTM) -> KEGSET.RTM. (19560ms)\nHow big is a keg?\tobject of the invention\t-14.804936626249257\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (object of the invention, Instance Of, keg enveloping a container) -> object of the invention (19560ms)\nHow big is a keg?\tthe business\t-14.817806288927638\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the business, was settled, a keg) -> the business (13927ms)\nHow big is a keg?\tFlashpoint Germany\t-14.82234170108524\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Flashpoint Germany, Instance Of, powder keg of a game) -> Flashpoint Germany (19560ms)\nHow big is a keg?\tPicture shown\t-14.82234170108524\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Picture shown, Instance Of, stock picture of a Powder Keg) -> Picture shown (19560ms)\nHow big is a keg?\tKeyKeg\t-14.8498305816844\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (KeyKeg, Instance Of, disposable keg consisting of a plastic ball) -> KeyKeg (19560ms)\nHow big is a keg?\tMarc Levin's Slam\t-14.8498305816844\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Marc Levin's Slam, Instance Of, powder keg of a movie) -> Marc Levin's Slam (19581ms)\nHow big is a keg?\tQueen Selyse s uncle\t-14.8498305816844\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Queen Selyse s uncle, Instance Of, keg of a man) -> Queen Selyse s uncle (19560ms)\nHow big is a keg?\tThe Last King of Scotland\t-14.866786607597366\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (The Last King of Scotland, Instance Of, slickly made powder keg of a film) -> The Last King of Scotland (19580ms)\nHow big is a keg?\tthe statue\t-14.918867505615747\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the statue, is hooked up to, a keg) -> the statue (13944ms)\nHow big is a keg?\tthe country\t-14.95370960835086\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the country, was sitting on, a keg) -> the country (13944ms)\nHow big is a keg?\ta room\t-15.172846382495841\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (a room, are lined with, kegs) -> a room (19580ms)\nHow big is a keg?\tsixtel\t-15.222899958363076\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (sixtel, Instance Of, one sixth of a keg, or one third of a half) -> sixtel (19581ms)\nHow big is a keg?\tGuinness\t-15.262912194667573\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Guinness, is served from, a keg) -> Guinness (13944ms)\nHow big is a keg?\ta good time\t-15.347175768161634\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (a good time, is, ?Keg) -> a good time (19580ms)\nHow big is a keg?\ta UF student\t-15.368967913655034\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (a UF student, was taking, kegs) -> a UF student (19580ms)\nHow big is a keg?\tThe report\t-15.371545550424477\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The report, is, a keg) -> The report (13944ms)\nHow big is a keg?\tThe prize\t-15.371545550424477\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The prize, is, a keg) -> The prize (13944ms)\nHow big is a keg?\tfront\t-15.387791288027069\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (front, are, kegs) -> front (19580ms)\nHow big is a keg?\tThe reward\t-15.39194666928843\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The reward, is, a keg) -> The reward (13944ms)\nHow big is a keg?\tthe far\t-15.403193040691336\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the far, right is, a keg) -> the far (13962ms)\nHow big is a keg?\tBeer\t-15.434373339853341\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Beer, is available in, Kegs) -> Beer (19609ms)\nHow big is a keg?\tthe nimbly engineered sound system\t-15.517089845021943\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the nimbly engineered sound system, is, a keg) -> the nimbly engineered sound system (13962ms)\nHow big is a keg?\tthe lighted fire crackers\t-15.540631438601668\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the lighted fire crackers, was thrown into, a keg) -> the lighted fire crackers (13962ms)\nHow big is a keg?\tthe beer\t-15.550433702087302\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the beer, is in, a keg) -> the beer (13962ms)\nHow big is a keg?\tActiveGS\t-15.55294562481365\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (ActiveGS, is a front-end for, KEGS) -> ActiveGS (19609ms)\nHow big is a keg?\tThorekssson\t-15.623509158217672\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Thorekssson, Instance Of, venerable Elder fond of a keg) -> Thorekssson (19609ms)\nHow big is a keg?\tThe worker\t-15.63426207262232\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The worker, was reportedly cleaning, a keg) -> The worker (13962ms)\nHow big is a keg?\tThe beer\t-15.64365529782428\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The beer, is chilled overnight in, a keg) -> The beer (13962ms)\nHow big is a keg?\tSlocum\t-15.650998038816832\tHow big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Slocum, Instance Of, powder keg of a Christian spectacle ringmaster) -> Slocum (19609ms)\nHow big is a keg?\tMam\t-15.652433337830521\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Mam, was stacking, kegs) -> Mam (19609ms)\nHow big is a keg?\tsuch a title\t-15.686911944464628\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (such a title, is doubly true for, KEG.) -> such a title (19609ms)\nHow big is a keg?\tthe Daily Pint\t-15.712849205758024\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the Daily Pint, will be tapping, kegs) -> the Daily Pint (19609ms)\nHow big is a keg?\tBrouwer?s\t-15.740715688118977\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Brouwer?s, will be hosting, Kegs) -> Brouwer?s (19629ms)\nHow big is a keg?\tbathtub\t-15.751165500416663\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (bathtub, is surrounded by, kegs) -> bathtub (19629ms)\nHow big is a keg?\tKatalyst Kombucha?s accounts\t-15.759654906036689\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Katalyst Kombucha?s accounts, are delivered in, kegs) -> Katalyst Kombucha?s accounts (19629ms)\nHow big is a keg?\tthe first time draft beer\t-15.773568840791567\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the first time draft beer, has been served from, a keg) -> the first time draft beer (13980ms)\nHow big is a keg?\tthe delivery guy\t-15.776776931772593\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the delivery guy, is sitting on, a keg) -> the delivery guy (13980ms)\nHow big is a keg?\tThe Raleigh Times\t-15.778223083971191\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The Raleigh Times, will be tapping, kegs) -> The Raleigh Times (19629ms)\nHow big is a keg?\tTadcaster\t-15.780637405912485\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Tadcaster, is, keg) -> Tadcaster (19629ms)\nHow big is a keg?\tminds and bodies\t-15.785380999061026\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (minds and bodies, are, kegs) -> minds and bodies (19629ms)\nHow big is a keg?\tMcCabe pub\t-15.786265185462122\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (McCabe pub, were havin, kegs) -> McCabe pub (19629ms)\nHow big is a keg?\tClark Williams\t-15.803949124293233\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Clark Williams, is filling, kegs) -> Clark Williams (19649ms)\nHow big is a keg?\tThe individual batches\t-15.808875099246753\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The individual batches, were racked to, a kegs) -> The individual batches (13980ms)\nHow big is a keg?\tLove Stout\t-15.825413638823182\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Love Stout, is only being made available via, kegs) -> Love Stout (19649ms)\nHow big is a keg?\tBeinen?\t-15.842789284837178\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Beinen?, is German for, ?Kegs) -> Beinen? (19649ms)\nHow big is a keg?\tThe barrel\t-15.862479452082123\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The barrel, is traditionally referred to as, a keg) -> The barrel (13980ms)\nHow big is a keg?\tquarters others\t-15.863265004094321\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (quarters others, were rolling, kegs) -> quarters others (19649ms)\nHow big is a keg?\tthe punch bowl\t-15.868105226635578\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the punch bowl, was, a keg) -> the punch bowl (13980ms)\nHow big is a keg?\tSpecial arrangements\t-15.884391390489705\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Special arrangements, can be made for, kegs) -> Special arrangements (19649ms)\nHow big is a keg?\tBlueberry Wheat\t-15.88769972922737\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Blueberry Wheat, is generally available only in, kegs) -> Blueberry Wheat (19649ms)\nHow big is a keg?\tTa Henket\t-15.990415574181966\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Ta Henket, are being poured from, kegs) -> Ta Henket (19649ms)\nHow big is a keg?\tcross country\t-15.999048919021387\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (cross country, was, Kegs) -> cross country (19649ms)\nHow big is a keg?\tWine\t-16.001517903710106\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Wine, is increasingly coming in, kegs) -> Wine (19668ms)\nHow big is a keg?\tCol . Eiland\t-16.007215326611984\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Col . Eiland, was running, KEG) -> Col . Eiland (19668ms)\nHow big is a keg?\tbeer and wine and beer\t-16.008834794544153\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (beer and wine and beer, may be served in, kegs) -> beer and wine and beer (19668ms)\nHow big is a keg?\tsimilar tastes\t-16.027109062274484\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (similar tastes, are placed in, kegs) -> similar tastes (19668ms)\nHow big is a keg?\tthe brewery employee\t-16.02761353261474\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the brewery employee, had been pressurizing, a keg) -> the brewery employee (13980ms)\nHow big is a keg?\tSierra Nevada Brewing\t-16.057629570473765\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Sierra Nevada Brewing, was there with, kegs) -> Sierra Nevada Brewing (19668ms)\nHow big is a keg?\tJuly 14 , 2010 Wet Area Scales\t-16.060387617917073\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (July 14 , 2010 Wet Area Scales, are being used to weigh, kegs) -> July 14 , 2010 Wet Area Scales (19668ms)\nHow big is a keg?\tbottling\t-16.065921042858733\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (bottling, is to use, kegs) -> bottling (19668ms)\nHow big is a keg?\tShasta Brewing Company\t-16.067276224293717\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Shasta Brewing Company, is Missing, kegs) -> Shasta Brewing Company (19668ms)\nHow big is a keg?\t?Steinen mit Beinen?\t-16.074985878341426\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (?Steinen mit Beinen?, is German for, ?Kegs) -> ?Steinen mit Beinen? (19687ms)\nHow big is a keg?\tATLANTA ? Workers\t-16.079799062139912\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (ATLANTA ? Workers, are wrapping up, kegs) -> ATLANTA ? Workers (19687ms)\nHow big is a keg?\tWachusett Ales\t-16.105440836687777\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Wachusett Ales, have been available in, kegs) -> Wachusett Ales (19687ms)\nHow big is a keg?\tthe black ditch\t-16.16914976949777\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the black ditch, are supplied with, a keg) -> the black ditch (14006ms)\nHow big is a keg?\tsmoke powder\t-16.195703609443306\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (smoke powder, is often sold in, kegs) -> smoke powder (19687ms)\nHow big is a keg?\tSpecial restrictions\t-16.200049993757894\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Special restrictions, may be placed on, kegs) -> Special restrictions (19687ms)\nHow big is a keg?\tthe original recipe\t-16.23723301832122\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the original recipe, was inserted into, a keg) -> the original recipe (14007ms)\nHow big is a keg?\tNo average analysis\t-16.238804996109177\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (No average analysis, is required to appear on, kegs) -> No average analysis (19687ms)\nHow big is a keg?\tdraft\t-16.256907729801163\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (draft, is available in, kegs) -> draft (19687ms)\nHow big is a keg?\tthe vast majority\t-16.26906409767676\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the vast majority, are sitting on, a keg) -> the vast majority (14007ms)\nHow big is a keg?\tonly about 12 percent of the nation 's beer\t-16.564193236635596\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (only about 12 percent of the nation 's beer, is sold in, kegs) -> only about 12 percent of the nation 's beer (19705ms)\nHow big is a keg?\tFernando\t-16.60833536513977\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Fernando, was hoisting, kegs) -> Fernando (19705ms)\nHow big is a keg?\tthe list\t-16.719132115290066\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the list, is a request for, kegs) -> the list (19705ms)\nHow big is a keg?\tMestan\t-16.80759790239153\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Mestan, is placed in, kegs) -> Mestan (19705ms)\nHow big is a keg?\tthe profession\t-17.014544071943853\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the profession, was washing, kegs) -> the profession (19705ms)\nHow big is a keg?\tthe primary\t-17.07103343439795\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the primary, now is in, kegs) -> the primary (19705ms)\nHow big is a keg?\tthe employee\t-17.07267664352576\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the employee, had been pressurizing, kegs) -> the employee (19705ms)\nHow big is a keg?\tthe camp\t-17.1425282651514\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the camp, were packed in, kegs) -> the camp (19705ms)\nHow big is a keg?\tthe line-up\t-17.517809838950225\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the line-up, are, kegs) -> the line-up (19783ms)\nHow big is a keg?\tThe basement\t-17.686482892714995\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The basement, is filled with, kegs) -> The basement (19783ms)\nHow big is a keg?\tthe beers\t-17.891588659807372\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the beers, are transferred to, kegs) -> the beers (19783ms)\nHow big is a keg?\tThe bar\t-17.923447904941987\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The bar, is racked with, kegs) -> The bar (19988ms)\nHow big is a keg?\tThe wine\t-17.938494218439253\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The wine, is then refined in, kegs) -> The wine (19988ms)\nHow big is a keg?\tThe entrance\t-17.94466864207978\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The entrance, was filled with, kegs) -> The entrance (19988ms)\nHow big is a keg?\tThe college campus\t-17.944748196778775\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The college campus, is home to, kegs) -> The college campus (19988ms)\nHow big is a keg?\tThe finished beer\t-17.949104613359296\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The finished beer, is poured into, kegs) -> The finished beer (19988ms)\nHow big is a keg?\tThe same\t-17.953446096070373\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The same, is true for, kegs) -> The same (19988ms)\nHow big is a keg?\tThe mines\t-17.954082153504718\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The mines, were kept afloat by, kegs) -> The mines (19988ms)\nHow big is a keg?\tThe ships deck\t-17.98365287274768\tHow big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The ships deck, was loaded with, kegs) -> The ships deck (19988ms)\nHow tall is the tallest pyramid?\t138 feet\t-9.250768106541834\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: (the tallest the tallest pyramid, height, $x) -> $x: (the tallest the tallest pyramid, be, $x) -> (the tallest pyramid, here is, 138 feet) -> 138 feet (5858ms)\nHow tall is the tallest pyramid?\t138-feet high\t-9.420381943632439\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (138-feet high, is, the tallest pyramid) -> 138-feet high (7021ms)\nHow tall is the tallest pyramid?\tCoba\t-10.3380505483472\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (Coba, is home to, the tallest Mayan pyramid) -> Coba (7020ms)\nHow tall is the tallest pyramid?\tNohoch Mul\t-10.486381008010964\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (Nohoch Mul, is, the tallest pyramid) -> Nohoch Mul (7020ms)\nHow tall is the tallest pyramid?\ta magnificent Mayan treasure\t-10.489679526353271\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: (the tallest the tallest pyramid, height, $x) -> $x: (the tallest the tallest pyramid, be, $x) -> (the tallest pyramid, is, a magnificent Mayan treasure) -> a magnificent Mayan treasure (5859ms)\nHow tall is the tallest pyramid?\tTemple V\t-10.539325628964997\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (Temple V, is, the second tallest pyramid) -> Temple V (7020ms)\nHow tall is the tallest pyramid?\tThe Nohoch Mul Pyramid\t-10.549414215351245\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (The Nohoch Mul Pyramid, is, the tallest pyramid) -> The Nohoch Mul Pyramid (7020ms)\nHow tall is the tallest pyramid?\t101.1\t-10.567205772960673\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the tallest pyramid s height ? -> what be the tallest height of pyramid ? -> $x: (pyramid, tallest height, $x) -> (Bent Pyramid, Height when tallest building, 101.1) -> 101.1 (8479ms)\nHow tall is the tallest pyramid?\t104.0\t-10.567205772960673\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the tallest pyramid s height ? -> what be the tallest height of pyramid ? -> $x: (pyramid, tallest height, $x) -> (Red Pyramid, Height when tallest building, 104.0) -> 104.0 (8479ms)\nHow tall is the tallest pyramid?\t62.0\t-10.594694653559833\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the tallest pyramid s height ? -> what be the tallest height of pyramid ? -> $x: (pyramid, tallest height, $x) -> (Pyramid of Djoser, Height when tallest building, 62.0) -> 62.0 (8479ms)\nHow tall is the tallest pyramid?\t146.6\t-10.618256551216255\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the tallest pyramid s height ? -> what be the tallest height of pyramid ? -> $x: (pyramid, tallest height, $x) -> (Great Pyramid of Giza, Height when tallest building, 146.6) -> 146.6 (8479ms)\nHow tall is the tallest pyramid?\tthe winner\t-11.028209044240166\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: (the tallest the tallest pyramid, height, $x) -> $x: (the tallest the tallest pyramid, be, $x) -> (the tallest pyramid, is, the winner) -> the winner (5859ms)\nHow tall is the tallest pyramid?\tthe structures\t-11.55310685732822\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (the structures, there are, the tallest pyramid) -> the structures (7020ms)\nHow tall is the tallest pyramid?\tEk? Balam\t-12.113301952889103\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be height of the tallest pyramid ? -> $x: ($x, be height of, the tallest pyramid) -> $x: ($x, height of, tallest pyramid) -> (Ek? Balam, exceeds the height of, the tallest pyramid) -> Ek? Balam (5932ms)\nHow tall is the tallest pyramid?\tthe sun\t-12.321224703279844\tHow tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (the sun, is one of, the tallest pyramids) -> the sun (7020ms)\nHow tall is the tallest pyramid?\tmemorial\t-12.653665770333095\tHow tall is the tallest pyramid? -> how tall be the tallest [ pyramid ] ? -> what be tall pyramid ? -> $x: (tall pyramid, instance of, $x) -> (tall pyramid at the right, Instance Of, memorial) -> memorial (11800ms)\nHow tall is the tallest pyramid?\thotel\t-12.770741422367953\tHow tall is the tallest pyramid? -> how tall be the tallest [ pyramid ] ? -> what be tall pyramid ? -> $x: (tall pyramid, instance of, $x) -> (tall pyramid shaped building in the background, Instance Of, hotel) -> hotel (11799ms)\nWhere is Santa Lucia?\tItaly\t0.2648519289182305\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Italy) -> Italy (4185ms)\nWhere is Santa Lucia?\tCalifornia\t0.1895511470112372\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Preserve, is located in, California) -> California (4185ms)\nWhere is Santa Lucia?\tScandinavia\t0.16228498883365405\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Scandinavia) -> Scandinavia (4185ms)\nWhere is Santa Lucia?\tSweden\t0.14813784830922394\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Sweden) -> Sweden (4185ms)\nWhere is Santa Lucia?\tMinori\t-0.07809768535110839\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (map Hotel Santa Lucia, is located in, Minori) -> Minori (4185ms)\nWhere is Santa Lucia?\tNaples\t-0.08611998379052832\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Grand Hotel Santa Lucia, is located in, Naples) -> Naples (4546ms)\nWhere is Santa Lucia?\tVenice\t-0.17469884004637026\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, was the main train station in, Venice) -> Venice (4546ms)\nWhere is Santa Lucia?\tMonterey County\t-0.5199143707682016\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Highlands, is in, Monterey County) -> Monterey County (4546ms)\nWhere is Santa Lucia?\tCuenca\t-0.6452671247289108\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia hotel, is a gem in, Cuenca) -> Cuenca (4547ms)\nWhere is Santa Lucia?\tCosta Rica\t-0.8435321034603352\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (SANTA LUCIA ApartHotel, is a modern lodging way in, Costa Rica) -> Costa Rica (4565ms)\nWhere is Santa Lucia?\tTesistan Jalisco\t-1.0508411413498373\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Distillery, is located in, Tesistan Jalisco) -> Tesistan Jalisco (4565ms)\nWhere is Santa Lucia?\tneed\t-1.3640455621035097\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is in, need) -> need (4565ms)\nWhere is Santa Lucia?\tAuthorities Concept Scheme\t-1.4715315599046548\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia Range (Calif.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4565ms)\nWhere is Santa Lucia?\tGeographic Names Concept Scheme\t-1.5040184187945707\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia Range (Calif.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (4565ms)\nWhere is Santa Lucia?\tcamera trapping\t-1.5052394139426175\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, was to assist in, camera trapping) -> camera trapping (4565ms)\nWhere is Santa Lucia?\tFirst Italian War of Independence\t-1.5550691970501527\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Battle of Santa Lucia, Included in event, First Italian War of Independence) -> First Italian War of Independence (4581ms)\nWhere is Santa Lucia?\tSweden as well as\t-1.668816006237282\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is observed in, Sweden as well as) -> Sweden as well as (4596ms)\nWhere is Santa Lucia?\ta lot\t-1.743024044443448\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Day, is celebrated in, a lot) -> a lot (4597ms)\nWhere is Santa Lucia?\tpoor shape\t-1.7901451964221164\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Cerro Santa Lucia, had been in very, poor shape) -> poor shape (4596ms)\nWhere is Santa Lucia?\tsouthern Sonora State\t-1.805474385789982\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is located in, southern Sonora State) -> southern Sonora State (4597ms)\nWhere is Santa Lucia?\ta quiet residential area\t-1.841393624643198\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is situated in, a quiet residential area) -> a quiet residential area (4610ms)\nWhere is Santa Lucia?\tthe Cannaregio district\t-1.8578011252802096\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia Railway Station, is in, the Cannaregio district) -> the Cannaregio district (4610ms)\nWhere is Santa Lucia?\tDOWNTOWN ZACATECAS\t-1.8824939933796523\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (THE CASA SANTA LUCIA HOTEL, IS LOCATED IN, DOWNTOWN ZACATECAS) -> DOWNTOWN ZACATECAS (4630ms)\nWhere is Santa Lucia?\ta very strategic position\t-1.898311896281068\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Hotel Santa Lucia, is situated in, a very strategic position) -> a very strategic position (4630ms)\nWhere is Santa Lucia?\tNorway and Sweden\t-1.925755085929078\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia holiday, is celebrated in, Norway and Sweden) -> Norway and Sweden (4630ms)\nWhere is Santa Lucia?\tSan Gimignano\t-2.2776079465811936\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Molino Santa Lucia, located in, San Gimignano) -> San Gimignano (4630ms)\nWhere is Santa Lucia?\tthe Amalfitan Coast\t-2.4526085759252556\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Hotel, is in, the Amalfitan Coast) -> the Amalfitan Coast (4645ms)\nWhere is Santa Lucia?\tfront\t-2.4709406655442026\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Church, is located right in, front) -> front (4645ms)\nWhere is Santa Lucia?\tlayers\t-2.574391792029876\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia mountain range, were rich in, layers) -> layers (4645ms)\nWhere is Santa Lucia?\tSeptember\t-2.888175900921572\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, now takes place in, September) -> September (4661ms)\nWhere is Santa Lucia?\tthe historical district\t-3.381683077200326\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Plaza Santa Lucia, is in, the historical district) -> the historical district (4662ms)\nWhere is Santa Lucia?\tthe historic center\t-3.473798679060554\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Venice Santa Lucia station, is in, the historic center) -> the historic center (4679ms)\nWhere is Santa Lucia?\tthe heart\t-3.4821837820403703\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Santa Luc?a eco-lodge and cabanas, are in, the heart) -> the heart (4679ms)\nWhere is Santa Lucia?\tthe historic centre\t-3.5186691404187727\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is located in, the historic centre) -> the historic centre (4679ms)\nWhere is Santa Lucia?\tthe centre\t-3.5408386847872126\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Hotel, is located in, the centre) -> the centre (4679ms)\nWhere is Santa Lucia?\tthe city center\t-3.664785418705277\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Hill, is located in, the city center) -> the city center (4696ms)\nWhere is Santa Lucia?\ta thick blanket\t-3.764243775575193\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Villa Santa Lucia, covered in, a thick blanket) -> a thick blanket (4715ms)\nWhere is Santa Lucia?\tseveral acres\t-3.821542446867551\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, stands in, several acres) -> several acres (4714ms)\nWhere is Santa Lucia?\tSt . Vincent\t-4.011625197059667\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, succeeded in capturing, St . Vincent) -> St . Vincent (4715ms)\nWhere is Santa Lucia?\ta 7000 sm garden area\t-4.330790930557962\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (SANTA LUCIA ApartHotel, is immersed in, a 7000 sm garden area) -> a 7000 sm garden area (4733ms)\nWhere is Santa Lucia?\t1937\t-4.692762438814378\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia mountain range, was set aside in, 1937) -> 1937 (4733ms)\nWhere is Santa Lucia?\t1875\t-4.820583334179895\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Cerro Santa Lucia, was established in, 1875) -> 1875 (4734ms)\nWhere is Santa Lucia?\t1991\t-4.845901334956954\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia Highlands, was approved in, 1991) -> 1991 (4755ms)\nWhere is Santa Lucia?\t35 minutes\t-5.216830530971006\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia station, arrive in, 35 minutes) -> 35 minutes (4755ms)\nWhere is Santa Lucia?\tthe lodge\t-5.508668490936813\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, would sit in, the lodge) -> the lodge (5645ms)\nWhere is Santa Lucia?\tthe city\t-5.736642628878226\tWhere is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, could have sought refuge in, the city) -> the city (5645ms)\nWhere is Santa Lucia?\tSanta Lucia\t-7.226960565964921\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> (Battle of Santa Lucia, Location(s), Santa Lucia) -> Santa Lucia (6915ms)\nWhere is Santa Lucia?\tKingdom of Lombardy?Venetia\t-7.847483508218462\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> (Battle of Santa Lucia, Location(s), Kingdom of Lombardy?Venetia) -> Kingdom of Lombardy?Venetia (6915ms)\nWhere is Santa Lucia?\tArizona\t-8.863262910073706\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Arizona, Contains, Santa Lucia) -> Arizona (7349ms)\nWhere is Santa Lucia?\tGermany\t-8.863262910073706\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, region, $x) -> (Santa Lucia, Region, Germany) -> Germany (7734ms)\nWhere is Santa Lucia?\tCalabria\t-8.939839077457078\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Calabria, Contains, Motta Santa Lucia) -> Calabria (7400ms)\nWhere is Santa Lucia?\tVeneto\t-8.939839077457078\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Veneto, Contains, Colle Santa Lucia) -> Veneto (7349ms)\nWhere is Santa Lucia?\tLazio\t-8.939839077457078\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Lazio, Contains, Villa Santa Lucia) -> Lazio (7349ms)\nWhere is Santa Lucia?\tSicily\t-8.999398318755258\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Sicily, Contains, Santa Lucia del Mela) -> Sicily (7446ms)\nWhere is Santa Lucia?\tCampania\t-8.999398318755258\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Campania, Contains, Santa Lucia di Serino) -> Campania (7446ms)\nWhere is Santa Lucia?\tAbruzzo\t-9.047045711793801\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Abruzzo, Contains, Villa Santa Lucia degli Abruzzi) -> Abruzzo (7734ms)\nWhere is Santa Lucia?\tLondon\t-9.118516801351616\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, place, $x) -> (Santa Lucia, a common story, Place of publication, London) -> London (8476ms)\nWhere is Santa Lucia?\tGeology\t-9.146005681950776\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, subject, $x) -> (Paleocene sedimentation in the northern Santa Lucia range, Subjects, Geology) -> Geology (7814ms)\nWhere is Santa Lucia?\tStanford\t-9.146005681950776\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, place, $x) -> (Shoreline physiography of the Santa Lucia Mountains, Place of publication, Stanford) -> Stanford (9444ms)\nWhere is Santa Lucia?\tCorsica\t-9.47587224914069\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, contain, $x) -> (Santa-Lucia-di-Moriani, Contained by, Corsica) -> Corsica (9765ms)\nWhere is Santa Lucia?\tLucia Vineyards\t-9.66977546607252\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Lucia Santa Lucia Highlands Pinot Noir, Wine Producer, Lucia Vineyards) -> Lucia Vineyards (9813ms)\nWhere is Santa Lucia?\tMario Zanin\t-9.66977546607252\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, place, santa lucium) -> (Mario Zanin, Place of birth, Santa Lucia di Piave) -> Mario Zanin (9765ms)\nWhere is Santa Lucia?\tSiduri Wines\t-9.66977546607252\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Siduri Santa Lucia Highlands Pinot Noir, Wine Producer, Siduri Wines) -> Siduri Wines (9813ms)\nWhere is Santa Lucia?\tRosanna Munerotto\t-9.66977546607252\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, place, santa lucium) -> (Rosanna Munerotto, Place of birth, Santa Lucia di Piave) -> Rosanna Munerotto (9813ms)\nWhere is Santa Lucia?\tTudor Wines\t-9.66977546607252\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Tudor Santa Lucia Highlands Pinot Noir, Wine Producer, Tudor Wines) -> Tudor Wines (9813ms)\nWhere is Santa Lucia?\tMendelson Vineyards\t-9.69726434667168\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Mendelson Santa Lucia Highlands Pinot Noir, Wine Producer, Mendelson Vineyards) -> Mendelson Vineyards (9813ms)\nWhere is Santa Lucia?\tLucienne Vineyards\t-9.720826244328101\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Lucienne Santa Lucia Highlands Estate Pinot Noir, Wine Producer, Lucienne Vineyards) -> Lucienne Vineyards (9849ms)\nWhere is Santa Lucia?\tPelerin Wines\t-9.720826244328101\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Pelerin \"Rosella's Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Pelerin Wines) -> Pelerin Wines (9849ms)\nWhere is Santa Lucia?\tParaiso Vineyards\t-9.720826244328101\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Paraiso Santa Lucia Highlands Estate Pinot Noir, Wine Producer, Paraiso Vineyards) -> Paraiso Vineyards (9849ms)\nWhere is Santa Lucia?\tCubans\t-9.732391224394737\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, there are, Cubans) -> Cubans (9888ms)\nWhere is Santa Lucia?\tPessagno Winery\t-9.741246555630335\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Pessagno \"Lucia Highland Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Pessagno Winery) -> Pessagno Winery (9947ms)\nWhere is Santa Lucia?\tTantara Winery\t-9.741246555630335\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Tantara \"Pisoni Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Tantara Winery) -> Tantara Winery (9888ms)\nWhere is Santa Lucia?\tMorgan Winery\t-9.741246555630335\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Morgan \"Twelve Clones\" Santa Lucia Highlands Pinot Noir, Wine Producer, Morgan Winery) -> Morgan Winery (9947ms)\nWhere is Santa Lucia?\tTestarossa Vineyards\t-9.741246555630335\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Testarossa \"Rosella's Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Testarossa Vineyards) -> Testarossa Vineyards (9888ms)\nWhere is Santa Lucia?\tUnited Kingdom\t-9.8014327363106\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, region, $x) -> (Lucia di Lammermoor (Orchestra e coro dell'Accademia di Santa Cecilia feat. conductor: John Pritchard), Region, United Kingdom) -> United Kingdom (10655ms)\nWhere is Santa Lucia?\tBetania\t-9.893772024704075\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Betania, is, Santa Lucia school) -> Betania (10655ms)\nWhere is Santa Lucia?\tIlocos Sur\t-10.004414050094802\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Ilocos Sur, Contains, Santa Lucia, Ilocos Sur) -> Ilocos Sur (10688ms)\nWhere is Santa Lucia?\tPima County\t-10.004414050094802\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Pima County, Contains, Santa Lucia) -> Pima County (10655ms)\nWhere is Santa Lucia?\tBattle of Santa Lucia\t-10.004414050094802\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, location, santa lucium) -> (Battle of Santa Lucia, Location(s), Santa Lucia) -> Battle of Santa Lucia (10655ms)\nWhere is Santa Lucia?\tProvince of Belluno\t-10.111620684431525\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Belluno, Contains, Colle Santa Lucia) -> Province of Belluno (10688ms)\nWhere is Santa Lucia?\tProvince of Catanzaro\t-10.111620684431525\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Catanzaro, Contains, Motta Santa Lucia) -> Province of Catanzaro (10688ms)\nWhere is Santa Lucia?\tProvince of Frosinone\t-10.111620684431525\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Frosinone, Contains, Villa Santa Lucia) -> Province of Frosinone (10774ms)\nWhere is Santa Lucia?\tSiracusa\t-10.12296539130873\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is dedicated to, Siracusa) -> Siracusa (10774ms)\nWhere is Santa Lucia?\tProvince of Messina\t-10.150604915099423\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Messina, Contains, Santa Lucia del Mela) -> Province of Messina (10808ms)\nWhere is Santa Lucia?\tProvince of Avellino\t-10.150604915099423\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Avellino, Contains, Santa Lucia di Serino) -> Province of Avellino (10808ms)\nWhere is Santa Lucia?\tProvince of Treviso\t-10.150604915099423\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Treviso, Contains, Santa Lucia di Piave) -> Province of Treviso (10808ms)\nWhere is Santa Lucia?\tHotel\t-10.175133021400967\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Hotel, Be, Live Brisas Santa Lucia) -> Hotel (10808ms)\nWhere is Santa Lucia?\tUnited States of America\t-10.179479130254217\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, region, $x) -> (Santa Lucia, Region, United States of America) -> United States of America (11016ms)\nWhere is Santa Lucia?\tProvince of L'Aquila\t-10.18309177398934\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of L'Aquila, Contains, Villa Santa Lucia degli Abruzzi) -> Province of L'Aquila (11016ms)\nWhere is Santa Lucia?\tRoar Wines\t-10.18309177398934\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Roar Santa Lucia Highlands Pinot Noir, Wine Producer, Roar Wines) -> Roar Wines (11016ms)\nWhere is Santa Lucia?\tSan Antonio\t-10.19078149077559\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (San Antonio, is surrounded by, the Santa Lucia Wilderness) -> San Antonio (11016ms)\nWhere is Santa Lucia?\tCentral European Time\t-10.2105806545885\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, location, santa lucium) -> (Central European Time, Locations in this time zone, Colle Santa Lucia) -> Central European Time (11049ms)\nWhere is Santa Lucia?\tRomeo Callejo, Sr.\t-10.2105806545885\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, place, santa lucium) -> (Romeo Callejo, Sr., Place of birth, Santa Lucia, Ilocos Sur) -> Romeo Callejo, Sr. (11049ms)\nWhere is Santa Lucia?\tCatania\t-10.229953316101085\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, was beheaded at, Catania) -> Catania (11083ms)\nWhere is Santa Lucia?\tGeology, Stratigraphic\t-10.23414255224492\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, subject, $x) -> (Paleocene sedimentation in the northern Santa Lucia range, Subjects, Geology, Stratigraphic) -> Geology, Stratigraphic (11083ms)\nWhere is Santa Lucia?\tLa Rochelle Winery\t-10.23414255224492\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 La Rochelle Santa Lucia Highlands Pinot Noir, Wine Producer, La Rochelle Winery) -> La Rochelle Winery (11128ms)\nWhere is Santa Lucia?\tA.P.VIN Wines\t-10.23414255224492\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 A.P.VIN \"Gary's Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, A.P.VIN Wines) -> A.P.VIN Wines (11083ms)\nWhere is Santa Lucia?\tWest Germany\t-10.250976232743657\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, country of origin, $x) -> (Santa Lucia, Country of origin, West Germany) -> West Germany (11128ms)\nWhere is Santa Lucia?\tMayro-Murdick Wines\t-10.254562863547154\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Hunterdon \"Vinco Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Mayro-Murdick Wines) -> Mayro-Murdick Wines (11128ms)\nWhere is Santa Lucia?\tSonnet Wine Cellars\t-10.254562863547154\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Sonnet \"Tondre's Grapefield\" Santa Lucia Highlands Pinot Noir, Wine Producer, Sonnet Wine Cellars) -> Sonnet Wine Cellars (11128ms)\nWhere is Santa Lucia?\tHayman & Hill\t-10.254562863547154\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Hayman & Hill Santa Lucia Highlands Reserve Pinot Noir, Wine Producer, Hayman & Hill) -> Hayman & Hill (11128ms)\nWhere is Santa Lucia?\tSilver Mountain Vineyards\t-10.272430635936608\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Silver Mountain \"Tondre's Grapefield\" Santa Lucia Highlands Pinot Noir, Wine Producer, Silver Mountain Vineyards) -> Silver Mountain Vineyards (11272ms)\nWhere is Santa Lucia?\tPatz & Hall\t-10.272430635936608\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Patz & Hall \"Pisoni Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Patz & Hall) -> Patz & Hall (11191ms)\nWhere is Santa Lucia?\tMiner Family Vineyards\t-10.272430635936608\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Miner Family \"Garys' Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Miner Family Vineyards) -> Miner Family Vineyards (11272ms)\nWhere is Santa Lucia?\tRhys Vineyards\t-10.272430635936608\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Alesia \"Fairview Ranch Vineyard\" Santa Lucia Highlands Syrah, Wine Producer, Rhys Vineyards) -> Rhys Vineyards (11272ms)\nWhere is Santa Lucia?\tHuntington Wine Cellars\t-10.272430635936608\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Huntington \"Lone Oak Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Huntington Wine Cellars) -> Huntington Wine Cellars (11191ms)\nWhere is Santa Lucia?\tManzoni Estate Vineyard\t-10.272430635936608\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Manzoni \"Family Estate Vineyard\" Santa Lucia Highlands Estate Pinot Noir, Wine Producer, Manzoni Estate Vineyard) -> Manzoni Estate Vineyard (11191ms)\nWhere is Santa Lucia?\tSan Antonio Winery\t-10.288196317456714\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Windbreak \"Sarmento Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, San Antonio Winery) -> San Antonio Winery (11272ms)\nWhere is Santa Lucia?\tPeter Michael Winery\t-10.314749044227419\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Peter Michael \"Le Moulin Rouge, Pisoni Vineyard\" Santa Lucia Highlands Pinot Noir, Wine Producer, Peter Michael Winery) -> Peter Michael Winery (11336ms)\nWhere is Santa Lucia?\tCalabrians\t-10.47921360079574\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is adored by, Calabrians) -> Calabrians (11366ms)\nWhere is Santa Lucia?\tHighlights\t-10.526381962399661\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Highlights, are, Santa Lucia Luntana) -> Highlights (11366ms)\nWhere is Santa Lucia?\tHaute-Corse\t-10.540447221778413\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Haute-Corse, Contains, Santa-Lucia-di-Moriani) -> Haute-Corse (11366ms)\nWhere is Santa Lucia?\tSaint Lucy\t-10.620936530312589\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is also known as, Saint Lucy) -> Saint Lucy (13180ms)\nWhere is Santa Lucia?\tDecember\t-10.631292869445167\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (December, is, Santa Lucia Day) -> December (13179ms)\nWhere is Santa Lucia?\tTomorrow\t-10.664773600066718\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Tomorrow, is, Santa Lucia Day) -> Tomorrow (13179ms)\nWhere is Santa Lucia?\tGalbani\t-10.81414092660855\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, has been produced by, Galbani) -> Galbani (13180ms)\nWhere is Santa Lucia?\tAnswers\t-10.845972058666387\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Answers, is the state of, Santa Lucia) -> Answers (13327ms)\nWhere is Santa Lucia?\tSyracusa\t-10.926369454382524\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is the patron of, Syracusa) -> Syracusa (13327ms)\nWhere is Santa Lucia?\tCannaregio\t-10.971756582866375\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Cannaregio, contains, the Santa Lucia Railway Station) -> Cannaregio (13327ms)\nWhere is Santa Lucia?\tmozzarella cheese\t-11.00697788182965\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (mozzarella cheese, is, Santa Lucia) -> mozzarella cheese (13327ms)\nWhere is Santa Lucia?\tBrad\t-11.059545037177747\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Brad, was at, the Santa Lucia Barricade) -> Brad (15520ms)\nWhere is Santa Lucia?\tTrains\t-11.094714038138\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, arrive at, santa lucium) -> (Trains, arrive at, Venezia Santa Lucia station) -> Trains (15520ms)\nWhere is Santa Lucia?\tSardinia\t-11.097531195939721\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> when be santa lucium be ? -> $x: (santa lucium, be be on, $x) -> (Santa Lucia Hotel, is located on, Sardinia) -> Sardinia (15520ms)\nWhere is Santa Lucia?\tPaso Robles\t-11.177367388115146\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Paso Robles, is in, the Santa Lucia mountains) -> Paso Robles (15520ms)\nWhere is Santa Lucia?\ta Monterey County example\t-11.193158845620124\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (the Santa Lucia Preserve, are, a Monterey County example) -> a Monterey County example (15520ms)\nWhere is Santa Lucia?\tBig Sur\t-11.216470674180472\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (the Santa Lucia Mountains, is, Big Sur) -> Big Sur (15707ms)\nWhere is Santa Lucia?\tmountain range\t-11.2475974565782\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia, is a, mountain range) -> mountain range (15707ms)\nWhere is Santa Lucia?\tscuba diving\t-11.305735106740988\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is an excellent place for, scuba diving) -> scuba diving (15859ms)\nWhere is Santa Lucia?\tCandon City\t-11.361939914546845\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Candon City, is the town of, Santa Lucia) -> Candon City (15859ms)\nWhere is Santa Lucia?\tLargo Febo\t-11.373633053262113\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is located at, Largo Febo) -> Largo Febo (15859ms)\nWhere is Santa Lucia?\tWill\t-11.406965351364157\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Will, was shot at, the Santa Lucia Barricade) -> Will (15859ms)\nWhere is Santa Lucia?\tenemy territory\t-11.412413531242153\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is, enemy territory) -> enemy territory (15859ms)\nWhere is Santa Lucia?\tMountain\t-11.4192458283172\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, have, santa lucium) -> (Mountain, had, a Santa Lucia celebration) -> Mountain (15938ms)\nWhere is Santa Lucia?\tping pong\t-11.42232402367561\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (ping pong, are available at, the Santa Lucia Masseria) -> ping pong (15939ms)\nWhere is Santa Lucia?\tmilitary conflict\t-11.462010725251645\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (battle of Santa Lucia, is a, military conflict) -> military conflict (15938ms)\nWhere is Santa Lucia?\tChristmas Day\t-11.510709930214446\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (... Santa Lucia, is celebrated on, Christmas Day) -> Christmas Day (15939ms)\nWhere is Santa Lucia?\tChristmas Market\t-11.516905392074008\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, host, santa lucium) -> (Christmas Market, also hosted, the Santa Lucia Children) -> Christmas Market (15939ms)\nWhere is Santa Lucia?\ttwinkle lights\t-11.51744329872838\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (twinkle lights, was, Santa Lucia) -> twinkle lights (15939ms)\nWhere is Santa Lucia?\ta young woman\t-11.560652893990733\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, was, a young woman) -> a young woman (15939ms)\nWhere is Santa Lucia?\tSt Lucia Day\t-11.575498136226429\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is, St Lucia Day) -> St Lucia Day (15974ms)\nWhere is Santa Lucia?\tnice firm white sand\t-11.644011247131866\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is, nice firm white sand) -> nice firm white sand (15975ms)\nWhere is Santa Lucia?\tOne option\t-11.651477042835936\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (One option, is, the Santa Lucia Hill) -> One option (15974ms)\nWhere is Santa Lucia?\tHotel Principe\t-11.688946924256474\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Hotel Principe, is 200 metres from, Santa Lucia Train Station) -> Hotel Principe (15974ms)\nWhere is Santa Lucia?\tCape Vidal\t-11.722148335437716\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Cape Vidal, is next to, Santa Lucia) -> Cape Vidal (16010ms)\nWhere is Santa Lucia?\trent\t-11.785256272789622\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, are available for, rent) -> rent (16010ms)\nWhere is Santa Lucia?\tVenice train station\t-11.794717084393906\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Venice train station, is named, Santa Lucia) -> Venice train station (16010ms)\nWhere is Santa Lucia?\tpalazzo murat\t-11.796341468023623\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (palazzo murat, cannot be, santa lucia) -> palazzo murat (16010ms)\nWhere is Santa Lucia?\toff\t-11.808739061243951\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (off, are now, the Santa Lucia Highlands) -> off (16010ms)\nWhere is Santa Lucia?\tlong time\t-11.813468904119384\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, was murdered, long time) -> long time (16010ms)\nWhere is Santa Lucia?\ta Boutique hotel\t-11.84448041790338\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (SANTA LUCIA, is, a Boutique hotel) -> a Boutique hotel (16010ms)\nWhere is Santa Lucia?\tan italian saint\t-11.846248790705573\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia, is, an italian saint) -> an italian saint (16045ms)\nWhere is Santa Lucia?\ta certified organic farm\t-11.846884767188437\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is, a certified organic farm) -> a certified organic farm (16045ms)\nWhere is Santa Lucia?\teyes\t-11.874311996130338\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, would be represented with, eyes) -> eyes (16045ms)\nWhere is Santa Lucia?\tthe Royal palace\t-11.882248073119092\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is south of, the Royal palace) -> the Royal palace (16045ms)\nWhere is Santa Lucia?\tbeach\t-11.904368507437137\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia beach, is a, beach) -> beach (16045ms)\nWhere is Santa Lucia?\tbank\t-11.904368507437137\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia Bank, is a, bank) -> bank (16045ms)\nWhere is Santa Lucia?\tisland\t-11.904368507437137\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia island, is an, island) -> island (16080ms)\nWhere is Santa Lucia?\tsong\t-11.904368507437137\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia, is a, song) -> song (16045ms)\nWhere is Santa Lucia?\tharvest time\t-11.923809985427443\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, were arrested at, harvest time) -> harvest time (16080ms)\nWhere is Santa Lucia?\tExecutive Chef Mattos\t-11.93894110057265\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Executive Chef Mattos, is from, Santa Lucia) -> Executive Chef Mattos (16080ms)\nWhere is Santa Lucia?\tDe La Salle\t-11.950331461148032\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (De La Salle, are graduates of, Santa Lucia Grade School) -> De La Salle (16080ms)\nWhere is Santa Lucia?\tan atmosphere\t-11.95917791579196\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is infused with, an atmosphere) -> an atmosphere (16080ms)\nWhere is Santa Lucia?\tthe East coast\t-11.96701048242974\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is on, the East coast) -> the East coast (16080ms)\nWhere is Santa Lucia?\tbeautiful beaches\t-11.990020739920716\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is an attractive place with, beautiful beaches) -> beautiful beaches (16432ms)\nWhere is Santa Lucia?\tthe Italians\t-11.990810437753375\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is very dear to, the Italians) -> the Italians (16432ms)\nWhere is Santa Lucia?\tenormous potential\t-12.002956010378304\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is a tourist resort with, enormous potential) -> enormous potential (16432ms)\nWhere is Santa Lucia?\thotels and resorts\t-12.014683786796752\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is well-equipped with, hotels and resorts) -> hotels and resorts (16432ms)\nWhere is Santa Lucia?\tFurther drilling\t-12.017470387969208\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Further drilling, is planned for, Santa Lucia) -> Further drilling (16432ms)\nWhere is Santa Lucia?\ta beloved local saint\t-12.021632167033436\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (December Santa Lucia, is, a beloved local saint) -> a beloved local saint (16432ms)\nWhere is Santa Lucia?\ta rig\t-12.027062554518988\tWhere is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (a rig, is currently drilling, the Santa Lucia-4) -> a rig (16432ms)\nWhere is Santa Lucia?\tromance\t-12.873655562278444\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, set, $x) -> (Santa Lucia, was an ideal setting for, romance) -> romance (6974ms)\nWhere is Santa Lucia?\t100 metres\t-13.108762851385048\tWhere is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, set, $x) -> (the website Hotel Santa Lucia, is set just, 100 metres) -> 100 metres (6975ms)\nWhat hockey team did Wayne Gretzky play for?\tEdmonton Oilers\t-3.577837195458171\tWhat hockey team did Wayne Gretzky play for? -> $x: ($x, instance of, hockey team) (Wayne Gretzky, play for, $x) -> (Edmonton Oilers, Instance Of, professional hockey team) (Wayne Gretzky, has played for, the Edmonton Oilers) -> Edmonton Oilers (470ms)\nHow many crew members were aboard?\tthe California Zephyr\t-13.1455388743187\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> what be the 14 crew member be aboard ? -> $x: (the 14 crew member, be aboard, $x) -> $x: (14 crew member, aboard, $x) -> (14 crew members, were aboard, the California Zephyr) -> the California Zephyr (1539ms)\nHow many crew members were aboard?\ta few equipment cases\t-15.936315306847751\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> who be the four crew member be aboard ? -> $x: (the four crew member, be aboard, $x) -> $x: (the four crew member, unloaded, $x) -> (The four-member GIC crew, unloaded, a few equipment cases) -> a few equipment cases (6399ms)\nHow many crew members were aboard?\tscientist\t-16.35300846364582\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, be uncertain, name) -> (scientist, Instance Of, crew member and historical figure) (scientists, are uncertain about, the species name) -> scientist (10415ms)\nHow many crew members were aboard?\tDad\t-16.82636841099995\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, have one, name) -> (Dad, Instance Of, crew member) (dad, could have been one of, those names) -> Dad (14599ms)\nHow many crew members were aboard?\tpresident\t-17.159023937221146\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, use the term, name) -> (president, Instance Of, crew member and historical figure) (president, used the term as, a name) -> president (17364ms)\nHow many crew members were aboard?\tArtist\t-17.285021380710905\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, be undecided, name) -> (Artist, Instance Of, crew member) (( Artist, is undecided on, name) -> Artist (17364ms)\nHow many crew members were aboard?\tSmith\t-18.027375626591915\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, pay attention, name) -> (Smith, Instance Of, Enterprise crew member) (Smith, payed close attention to, Arabic place names) -> Smith (18017ms)\nHow many crew members were aboard?\tDr. Mitchell\t-18.88593498323065\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) (name, ferry, $x) -> (Dr. Mitchell, Instance Of, crew member) (a middle-class vampire named Richard, to ferry, Mitchell) -> Dr. Mitchell (14600ms)\nHow many crew members were aboard?\tDr Mitchell\t-18.923921870461474\tHow many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) (name, ferry, $x) -> (Dr Mitchell, Instance Of, member of the Apollo 14 crew) (a middle-class vampire named Richard, to ferry, Mitchell) -> Dr Mitchell (14600ms)\nHow many seats are in the Lebanese Parliament?\tLebanon\t-2.9602109433011012\tHow many seats are in the Lebanese Parliament? -> $x: ($x, instance of, seats) ($x, are in, the Lebanese Parliament) -> (Lebanon, Instance Of, territory near the seat of theottoman empire in anatolia) (Lebanon, is represented in, the Lebanese parliament) -> Lebanon (2125ms)\nHow many seats are in the Lebanese Parliament?\treview\t-10.439178077514304\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese parliament, is currently under, review) -> review (6775ms)\nHow many seats are in the Lebanese Parliament?\tchanges\t-10.605718582781062\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (The Lebanese parliament, is scheduled to vote on, changes) -> changes (6775ms)\nHow many seats are in the Lebanese Parliament?\ta different nature\t-10.704324600754992\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese parliament, is of, a different nature) -> a different nature (6775ms)\nHow many seats are in the Lebanese Parliament?\tFarid al-Khazen\t-10.728681362932255\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> who be member of the lebanese parliament ? -> $x: ($x, be member of, the lebanese parliament) -> (Farid al-Khazen, is a member of, the Lebanese Parliament) -> Farid al-Khazen (6620ms)\nHow many seats are in the Lebanese Parliament?\tMr. Frem\t-10.737523332347811\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> who be member of the lebanese parliament ? -> $x: ($x, be member of, the lebanese parliament) -> (Mr. Frem, is a member of, the Lebanese Parliament) -> Mr. Frem (6620ms)\nHow many seats are in the Lebanese Parliament?\ta government\t-10.882680820027748\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese Parliament, is set to form, a government) -> a government (6775ms)\nHow many seats are in the Lebanese Parliament?\tHezbollah\t-10.899867610565567\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese parliament, are held by, Hezbollah) -> Hezbollah (6775ms)\nHow many seats are in the Lebanese Parliament?\tdeputy prime minister\t-10.959228734141092\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese Parliament, was named, deputy prime minister) -> deputy prime minister (6775ms)\nHow many seats are in the Lebanese Parliament?\tlawmakers\t-11.482413820473413\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> how many seat do the lebanese parliament have ? -> $x: (the lebanese parliament, seat, $x) -> $x: (the lebanese parliament, have a job, $x) -> (the Lebanese parliament, have done a good job as, lawmakers) -> lawmakers (10959ms)\nHow many seats are in the Lebanese Parliament?\tMohammed Raad\t-11.563196525839476\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Mohammed Raad, Instance Of, Hezbollah member of the Lebanese parliament) -> Mohammed Raad (12033ms)\nHow many seats are in the Lebanese Parliament?\tAli Ahmad Bazzi\t-11.576999059831433\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali Ahmad Bazzi, Instance Of, member of the Lebanese Parliament) -> Ali Ahmad Bazzi (12033ms)\nHow many seats are in the Lebanese Parliament?\tAli el Mekdad\t-11.625633292654015\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali el Mekdad, Instance Of, elected Shia member of the Lebanese parliament) -> Ali el Mekdad (12033ms)\nHow many seats are in the Lebanese Parliament?\tSaadeddine Rafik Hariri\t-11.667883015497367\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Saadeddine Rafik Hariri, Instance Of, member of the Lebanese Parliament) -> Saadeddine Rafik Hariri (12034ms)\nHow many seats are in the Lebanese Parliament?\tKhalil El-Hibri\t-11.667883015497367\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Khalil El-Hibri, Instance Of, prominnent member of the Lebanese Parliament) -> Khalil El-Hibri (12033ms)\nHow many seats are in the Lebanese Parliament?\tAli Bazzi\t-11.671936348328042\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali Bazzi, Instance Of, member of the Lebanese Parliament) -> Ali Bazzi (12033ms)\nHow many seats are in the Lebanese Parliament?\tMisbah al-Ahdab\t-11.671936348328042\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Misbah al-Ahdab, Instance Of, member of the Lebanese Parliament) -> Misbah al-Ahdab (12033ms)\nHow many seats are in the Lebanese Parliament?\tAli Fayyad\t-11.712776970932508\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali Fayyad, Instance Of, Shia member of the Lebanese Parliament) -> Ali Fayyad (12559ms)\nHow many seats are in the Lebanese Parliament?\tAli Haj Hassan\t-11.748512515711415\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali Haj Hassan, Instance Of, Hezbollah member of the Lebanese parliament) -> Ali Haj Hassan (12559ms)\nHow many seats are in the Lebanese Parliament?\tJUSTICIABeirutConsult\t-11.748512515711415\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (JUSTICIABeirutConsult, Instance Of, advisor of the Lebanese parliament and International Organizations) -> JUSTICIABeirutConsult (12559ms)\nHow many seats are in the Lebanese Parliament?\tMr. Moukheiber\t-11.748512515711415\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Mr. Moukheiber, Instance Of, lawyer and member of the Lebanese Parliament) -> Mr. Moukheiber (12559ms)\nHow many seats are in the Lebanese Parliament?\tWakim Al-Bitar\t-11.780043878751629\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Wakim Al-Bitar, Instance Of, member of the Lebanese Parliament representing North Lebanon) -> Wakim Al-Bitar (12559ms)\nHow many seats are in the Lebanese Parliament?\tIsraelis stealing gas Ali Bazzi\t-11.780043878751629\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Israelis stealing gas Ali Bazzi, Instance Of, member of the Lebanese Parliament) -> Israelis stealing gas Ali Bazzi (12559ms)\nHow many seats are in the Lebanese Parliament?\tMounir Abou Fadel\t-11.790473137358921\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Mounir Abou Fadel, Instance Of, political figure of Lebanon, Member and Vice Speaker of the Lebanese Parliament) -> Mounir Abou Fadel (12559ms)\nHow many seats are in the Lebanese Parliament?\tHezbollah MP\t-11.808071757009595\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Hezbollah MP, Instance Of, member of the all-party Lebanese parliament foreign affair committee) -> Hezbollah MP (12633ms)\nHow many seats are in the Lebanese Parliament?\tNayla Moawad\t-11.853332348421885\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Nayla Moawad, Instance Of, member of the Lebanese Parliament) -> Nayla Moawad (12633ms)\nHow many seats are in the Lebanese Parliament?\tBahia Hariri\t-11.87959362886049\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Bahia Hariri, Instance Of, member of the Lebanese Parliament) -> Bahia Hariri (12633ms)\nHow many seats are in the Lebanese Parliament?\tHabid Sadek\t-11.87959362886049\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Habid Sadek, Instance Of, member of the Lebanese Parliament) -> Habid Sadek (12633ms)\nHow many seats are in the Lebanese Parliament?\tNadim Gemayel\t-11.920365997416797\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Nadim Gemayel, Instance Of, member of the Lebanese Parliament) -> Nadim Gemayel (12633ms)\nHow many seats are in the Lebanese Parliament?\tMichel Pharaon\t-11.96525995285194\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Michel Pharaon, Instance Of, member of the Lebanese Parliament) -> Michel Pharaon (12633ms)\nHow many seats are in the Lebanese Parliament?\tFares\t-11.983091809021783\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Fares, Instance Of, member of the Lebanese Parliament) -> Fares (12738ms)\nHow many seats are in the Lebanese Parliament?\tJawad Boulos\t-12.006100575456404\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Jawad Boulos, Instance Of, Christian member of the Lebanese parliament) -> Jawad Boulos (12738ms)\nHow many seats are in the Lebanese Parliament?\tWalid Jumblatt\t-12.006100575456404\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Walid Jumblatt, Instance Of, leading member of the Lebanese parliament) -> Walid Jumblatt (12738ms)\nHow many seats are in the Lebanese Parliament?\tHizbullah\t-12.116350109950204\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (Hizbullah, has pursued in, the Lebanese parliament) -> Hizbullah (12738ms)\nHow many seats are in the Lebanese Parliament?\tZahra\t-12.231931119634964\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Zahra, Instance Of, member of the Lebanese Parliament Committees) -> Zahra (12738ms)\nHow many seats are in the Lebanese Parliament?\tthe Hezbollah\t-12.299262711000797\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (the Hezbollah, has representations in, the Lebanese Parliament) -> the Hezbollah (12738ms)\nHow many seats are in the Lebanese Parliament?\teffect\t-12.470344552277954\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the lebanese parliament s nickname ? -> $x: (the lebanese parliament, nickname, $x) -> $x: (the lebanese parliament, go, $x) -> (the Lebanese Parliament, went into, effect) -> effect (12769ms)\nHow many seats are in the Lebanese Parliament?\t2000 Hezbollah\t-12.4808717018456\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (2000 Hezbollah, has won seats in, the Lebanese parliament) -> 2000 Hezbollah (12769ms)\nHow many seats are in the Lebanese Parliament?\tno\t-12.603501721466987\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (no, longer has, the Lebanese parliament) -> no (12769ms)\nHow many seats are in the Lebanese Parliament?\tSyria\t-12.613865720128599\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: (the lebanese parliament, do, $x) -> (the Lebanese parliament, did, Syria) -> Syria (12827ms)\nHow many seats are in the Lebanese Parliament?\tthe phone\t-12.675197543267174\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese parliament, was on, the phone) -> the phone (6776ms)\nHow many seats are in the Lebanese Parliament?\ta step\t-12.76254210400219\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (lebanese parliament, strength, $x) -> $x: (lebanese parliament, be, $x) -> (a Lebanese Parliament, is seen as, a step) -> a step (12827ms)\nHow many seats are in the Lebanese Parliament?\tthe spokesman\t-12.781736341802077\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese Parliament, also happened to be, the spokesman) -> the spokesman (6775ms)\nHow many seats are in the Lebanese Parliament?\tthe first time\t-12.863916616092485\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (The Lebanese parliament, was held today for, the first time) -> the first time (6836ms)\nHow many seats are in the Lebanese Parliament?\tonly 19 women\t-12.95032677639978\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (only 19 women, had served in, the Lebanese parliament) -> only 19 women (12827ms)\nHow many seats are in the Lebanese Parliament?\tSyria 's bidding\t-13.597114576471423\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: (the lebanese parliament, do, $x) -> (the Lebanese parliament, did, Syria 's bidding) -> Syria 's bidding (12827ms)\nHow many seats are in the Lebanese Parliament?\ta group\t-13.891284702991392\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (a group, has, members in the Lebanese Parliament) -> a group (12827ms)\nHow many seats are in the Lebanese Parliament?\tthe Constitution\t-14.032652073982039\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, change, $x) -> (the Lebanese Parliament, changed, the Constitution) -> the Constitution (12827ms)\nHow many seats are in the Lebanese Parliament?\tLahoud\t-14.856442441356645\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: (the lebanese parliament, do, $x) -> (the Lebanese parliament, did Syria 's bidding permiting, Lahoud) -> Lahoud (12857ms)\nHow many seats are in the Lebanese Parliament?\tthe constitution\t-15.868064966437311\tHow many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, change, $x) -> (the Lebanese parliament, to change, the constitution) -> the constitution (12857ms)\nWhat is his primary career?\tan actor\t-9.980221217810103\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (his primary career, was as, an actor) -> an actor (16656ms)\nWhat is his primary career?\tBirding\t-9.99382554131585\tWhat is his primary career? -> what [ be his primary ] career ? -> what be be his primary hobby ? -> $x: ($x, be be, his primary hobby) -> (Birding, was, his primary hobby) -> Birding (16390ms)\nWhat is his primary career?\tWorld War II\t-10.059188551257957\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary professional career, was during, World War II) -> World War II (16655ms)\nWhat is his primary career?\tsports journalist\t-10.392062491526001\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (his primary career, is, sports journalist) -> sports journalist (16656ms)\nWhat is his primary career?\tScience\t-10.46943082978286\tWhat is his primary career? -> what [ be his primary ] career ? -> what be be his primary hobby ? -> $x: ($x, be be, his primary hobby) -> (Science, has always been, his primary hobby) -> Science (16389ms)\nWhat is his primary career?\ta real estate broker\t-10.501268516526784\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (his primary career, was as, a real estate broker) -> a real estate broker (16655ms)\nWhat is his primary career?\tHP\t-10.518404871719929\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (HP, is supported by, a primary care research career award) -> HP (13365ms)\nWhat is his primary career?\tTransportation\t-10.588871756661591\tWhat is his primary career? -> what [ be his primary ] career ? -> what be be his primary hobby ? -> $x: ($x, be be, his primary hobby) -> (Transportation, is, his primary hobby) -> Transportation (16390ms)\nWhat is his primary career?\treligious leadership and teaching\t-10.592440610807605\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary career, has been, religious leadership and teaching) -> religious leadership and teaching (16656ms)\nWhat is his primary career?\ta Software Development Engineer\t-10.606488068516944\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary career, is as, a Software Development Engineer) -> a Software Development Engineer (16655ms)\nWhat is his primary career?\tmartial arts\t-10.641188533215406\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (martial arts, were, their primary career skills) -> martial arts (13365ms)\nWhat is his primary career?\ta vet\t-10.745073174432077\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (primary career, was, a vet) -> a vet (13387ms)\nWhat is his primary career?\tEngineering\t-10.9441700138942\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (My primary career, is in, Engineering) -> Engineering (13387ms)\nWhat is his primary career?\there Elizabeth Juge\t-10.958867234372546\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (here Elizabeth Juge, is, CareerPro Global?s primary expert) -> here Elizabeth Juge (13388ms)\nWhat is his primary career?\ta conductor and arranger\t-10.988238341897649\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> ('s primary career, has been as, a conductor and arranger) -> a conductor and arranger (13387ms)\nWhat is his primary career?\tfirst year students\t-11.062466891391995\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (first year students, were interested in, primary care careers) -> first year students (13410ms)\nWhat is his primary career?\tan antiquarian and art dealer\t-11.069092557534045\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Strada?s primary career, was as, an antiquarian and art dealer) -> an antiquarian and art dealer (13410ms)\nWhat is his primary career?\tan ultrasound tech\t-11.190389209532029\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (an ultrasound tech, is, your primary career goal) -> an ultrasound tech (13410ms)\nWhat is his primary career?\tolder workers\t-11.191791554465992\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (older workers, are retiring from, their primary career jobs) -> older workers (13409ms)\nWhat is his primary career?\t1917-1991\t-11.318550319998653\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (those whose primary career, was from, 1917-1991) -> 1917-1991 (13410ms)\nWhat is his primary career?\tseveral people\t-11.320457188236468\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (several people, are retired from, their primary careers) -> several people (13409ms)\nWhat is his primary career?\tan essential part\t-11.332162929174189\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (an essential part, could have been, a primary career) -> an essential part (13452ms)\nWhat is his primary career?\tNetworking\t-11.459513182718672\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (Networking, is, the primary career tool) -> Networking (13453ms)\nWhat is his primary career?\ta theater writer\t-11.550126858660423\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Eager?s primary career, was as, a theater writer) -> a theater writer (13452ms)\nWhat is his primary career?\tEducation\t-11.65206973777146\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (Education, has been, my primary career focus) -> Education (13453ms)\nWhat is his primary career?\tWorkers\t-11.779678486372884\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (Workers, are retiring from, their primary career jobs) -> Workers (13452ms)\nWhat is his primary career?\tstormwater\t-12.145638250824447\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary career focus, was, stormwater) -> stormwater (16737ms)\nWhat is his primary career?\tthe broadcast world\t-12.270724254992137\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (his primary career, now is in, the broadcast world) -> the broadcast world (16737ms)\nWhat is his primary career?\tadolescents\t-12.44377705658424\tWhat is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary career, was a teacher of, adolescents) -> adolescents (16737ms)\nWhat is his primary career?\tthe league\t-12.533841664632416\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (the league, are busy with, their primary careers) -> the league (13524ms)\nWhat is his primary career?\tastrology\t-12.556916498620073\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (astrology, was, my primary career focus) -> astrology (13523ms)\nWhat is his primary career?\twriting\t-12.612769401419838\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (writing, is, one?s primary career) -> writing (13524ms)\nWhat is his primary career?\tbreastfeeding\t-12.668509049911181\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (My primary career, is, breastfeeding) -> breastfeeding (13523ms)\nWhat is his primary career?\tindustry\t-12.67441503011279\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> ('s primary career, was in, industry) -> industry (13546ms)\nWhat is his primary career?\tthe parent\t-12.70070250337789\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (the parent, is, the primary career) -> the parent (13546ms)\nWhat is his primary career?\tthe obvious approach\t-12.710639034006789\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (your primary career field, is, the obvious approach) -> the obvious approach (13546ms)\nWhat is his primary career?\ttelevision\t-12.765735651496753\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (television, was, my primary career) -> television (13546ms)\nWhat is his primary career?\tthe orders\t-12.963970281362137\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Tom?s primary career, is to follow, the orders) -> the orders (13546ms)\nWhat is his primary career?\tThe next step\t-12.964039830598999\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (The next step, was, a Primary Care Career Scientist Award) -> The next step (13546ms)\nWhat is his primary career?\tthe video game industry\t-13.001240701892966\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Her primary career focus, has been, the video game industry) -> the video game industry (13568ms)\nWhat is his primary career?\tthe manufacture\t-13.041128641996156\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Her primary career, was in, the manufacture) -> the manufacture (13567ms)\nWhat is his primary career?\tthe career\t-13.089824094611263\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (The primary career, is usually considered to be, the career) -> the career (13567ms)\nWhat is his primary career?\tthe industry\t-13.125051629031644\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (your primary career, also may be hindered by, the industry) -> the industry (13567ms)\nWhat is his primary career?\tHome\t-13.146244596535372\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (The primary navigation pages at Career Builder, are, Home) -> Home (13567ms)\nWhat is his primary career?\tstrangers\t-13.211287846945005\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (strangers, is, a primary career) -> strangers (13567ms)\nWhat is his primary career?\tcomposition\t-13.384655163183577\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Primary career, is in, composition) -> composition (13590ms)\nWhat is his primary career?\tmusic\t-13.425964241139834\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Kimball?s primary career, was in, music) -> music (13589ms)\nWhat is his primary career?\tinstitutions\t-13.520469329384262\tWhat is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (these primary career positions, are jobs with, institutions) -> institutions (13589ms)\nWhat nationality is Sean Connery?\tScotland\t0.08204981749777451\tWhat nationality is Sean Connery? -> $x: (Sean Connery, nationality, $x) -> (Sean Connery, Country of nationality, Scotland) -> Scotland (2641ms)\nWhat nationality is Sean Connery?\tIrish people in Great Britain\t-11.085131930112297\tWhat nationality is Sean Connery? -> what nationality be [ sean connery ] ? -> what ethnicity be sean connery ? -> $x: (sean connery, ethnicity, $x) -> (Sean Connery, Ethnicity, Irish people in Great Britain) -> Irish people in Great Britain (6806ms)\nWhat nationality is Sean Connery?\tScottish people\t-11.16922395463013\tWhat nationality is Sean Connery? -> what nationality be [ sean connery ] ? -> what ethnicity be sean connery ? -> $x: (sean connery, ethnicity, $x) -> (Sean Connery, Ethnicity, Scottish people) -> Scottish people (6806ms)\nWhat nationality is Sean Connery?\tFountainbridge\t-11.753534944722126\tWhat nationality is Sean Connery? -> what nationality be [ sean connery ] ? -> where be sean connery s birth place ? -> $x: (sean connery, birth place, $x) -> (Sean Connery, Place of birth, Fountainbridge) -> Fountainbridge (8784ms)\nWhat nationality is Sean Connery?\tFAther\t-14.027092048262912\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (FAther, Instance Of, word of germanic origin) (' father, was played by, Sean Connery) -> FAther (6469ms)\nWhat nationality is Sean Connery?\tLove\t-14.180026642526826\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Love, Instance Of, feeling of unknown origin) (Love, is, Sean Connery) -> Love (6469ms)\nWhat nationality is Sean Connery?\tLuca\t-14.271417066150194\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Luca, Instance Of, male name of Italian origin) (Lucas, is writing, Sean Connery) -> Luca (6469ms)\nWhat nationality is Sean Connery?\tWilson\t-14.370070525226199\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Wilson, Instance Of, common surname of English , Scottish origin) (Wilson, would have been, Sean Connery) -> Wilson (6469ms)\nWhat nationality is Sean Connery?\tMoore\t-14.481735730599242\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Moore, Instance Of, origin legend) (Moore, is older than, Sean Connery) -> Moore (6707ms)\nWhat nationality is Sean Connery?\tHomage\t-14.614682986868164\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Homage, Instance Of, French origin word) (Homage, is being paid to, Sean Connery) -> Homage (6707ms)\nWhat nationality is Sean Connery?\tFather\t-14.735213715142724\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Father, Instance Of, Italian and mother Burmese originIndian) (' father, was played by, Sean Connery) -> Father (6707ms)\nWhat nationality is Sean Connery?\tthe first two Bond films\t-14.844734083034869\tWhat nationality is Sean Connery? -> what nationality be [ sean connery ] ? -> what be sean connery s race ? -> $x: (sean connery, race, $x) -> $x: (sean connery, have just come, $x) -> (? Sean Connery, had just come off, the first two Bond films) -> the first two Bond films (7957ms)\nWhat nationality is Sean Connery?\tJames Bond\t-14.883087859456303\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (James Bond, Instance Of, perfect example, new actors, new story line, new origins, same theme tune) (James Bond, was to, Sean Connery) -> James Bond (6706ms)\nWhat nationality is Sean Connery?\tlove\t-16.311266449082076\tWhat nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (love, Instance Of, wholesome truth of divine origin) (Love, is, Sean Connery) -> love (6807ms)\nWhat songs did Al Jolson Sing?\tSonny Boy\t-1.5546721928117473\tWhat songs did Al Jolson Sing? -> $x: ($x, instance of, songs) (Al Jolson, Sing, $x) -> (Sonny Boy, Instance Of, song) (Al Jolson, sang, ?Sonny Boy) -> Sonny Boy (1006ms)\nWhat songs did Al Jolson Sing?\tThe songs\t-6.005837690525552\tWhat songs did Al Jolson Sing? -> $x: ($x, instance of, songs) (Al Jolson, Sing, $x) -> $x: ($x, modelling, songs) (Al Jolson, Sing, $x) -> (The songs, are modeled on, anonymous folk songs) (Al Jolson, sang, the song) -> The songs (6469ms)\nWhat songs did Al Jolson Sing?\tThe song\t-6.119458464435347\tWhat songs did Al Jolson Sing? -> $x: ($x, instance of, songs) (Al Jolson, Sing, $x) -> $x: ($x, modelling, songs) (Al Jolson, Sing, $x) -> (The song, became the model for, many future Little Richard songs) (Al Jolson, sang, the song) -> The song (6469ms)\nWhat songs did Al Jolson Sing?\tAl Jolson\t-6.858152435328419\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: (al jolson, edition of, $x) -> (Al Jolson, Edition Of, Al Jolson) -> Al Jolson (11434ms)\nWhat songs did Al Jolson Sing?\tOh Susannah\t-7.270485644315813\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: (al jolson, track list, $x) -> (The Best of Al Jolson, Track list, Oh Susannah) -> Oh Susannah (11144ms)\nWhat songs did Al Jolson Sing?\tAvalon / Anniversary Song\t-7.288611145206008\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Avalon / Anniversary Song, Artist, Al Jolson) -> Avalon / Anniversary Song (12210ms)\nWhat songs did Al Jolson Sing?\tThe Whiffenpoof Song\t-7.288611145206008\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (The Whiffenpoof Song, Recorded by, Al Jolson) -> The Whiffenpoof Song (12210ms)\nWhat songs did Al Jolson Sing?\tThe Anniversary Song\t-7.288611145206008\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (The Anniversary Song, Recorded by, Al Jolson) -> The Anniversary Song (12210ms)\nWhat songs did Al Jolson Sing?\tWhen Day Is Done\t-7.405563837209704\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (When Day Is Done, Recorded by, Al Jolson) -> When Day Is Done (12210ms)\nWhat songs did Al Jolson Sing?\tPop music\t-7.492628120846478\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Pop music, Artists, Al Jolson) -> Pop music (12210ms)\nWhat songs did Al Jolson Sing?\tBrunswick Records\t-7.537867084728273\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Brunswick Records, Artists, Al Jolson) -> Brunswick Records (12210ms)\nWhat songs did Al Jolson Sing?\tDecca Records\t-7.537867084728273\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Decca Records, Artists, Al Jolson) -> Decca Records (12433ms)\nWhat songs did Al Jolson Sing?\tAmerican Legends\t-7.537867084728273\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (American Legends, Artist, Al Jolson) -> American Legends (12210ms)\nWhat songs did Al Jolson Sing?\tLittle Pal\t-7.554688489992573\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: (al jolson, track list, $x) -> (The Best of Al Jolson, Track list, Little Pal) -> Little Pal (11144ms)\nWhat songs did Al Jolson Sing?\tRum-Tum-Tiddle\t-7.62214289647581\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (Rum-Tum-Tiddle, Recorded by, Al Jolson) -> Rum-Tum-Tiddle (12433ms)\nWhat songs did Al Jolson Sing?\tThe Great Al Jolson\t-7.62214289647581\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (The Great Al Jolson, Artist, Al Jolson) -> The Great Al Jolson (12433ms)\nWhat songs did Al Jolson Sing?\tAl Jolson: Duets\t-7.62214289647581\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Al Jolson: Duets, Artist, Al Jolson) -> Al Jolson: Duets (12433ms)\nWhat songs did Al Jolson Sing?\tPhilco Commercial\t-7.633161870805359\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (Philco Commercial, Recorded by, Al Jolson) -> Philco Commercial (12433ms)\nWhat songs did Al Jolson Sing?\tAlabamy Bound\t-7.633161870805359\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (Alabamy Bound, Recorded by, Al Jolson) -> Alabamy Bound (12433ms)\nWhat songs did Al Jolson Sing?\tEaster Parade\t-7.633161870805359\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (Easter Parade, Recorded by, Al Jolson) -> Easter Parade (12433ms)\nWhat songs did Al Jolson Sing?\tNever Again / Feeling the Way I Do\t-7.656176748646198\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Never Again / Feeling the Way I Do, Artist, Al Jolson) -> Never Again / Feeling the Way I Do (12433ms)\nWhat songs did Al Jolson Sing?\tEmbraceable You\t-7.705131704854441\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, release, al jolson) -> (Embraceable You, Release, Al Jolson: Duets) -> Embraceable You (11259ms)\nWhat songs did Al Jolson Sing?\tIs It True What They Say About Dixie?\t-7.771040999721258\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, release, al jolson) -> (Is It True What They Say About Dixie?, Releases, The Great Al Jolson) -> Is It True What They Say About Dixie? (11355ms)\nWhat songs did Al Jolson Sing?\tThe Al Jolson discography\t-7.836885295391868\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: (al jolson, edition of, $x) -> (The Al Jolson discography, Edition Of, The Al Jolson discography) -> The Al Jolson discography (11435ms)\nWhat songs did Al Jolson Sing?\tThe Best of Al Jolson\t-7.836885295391868\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, release of, al jolson) -> (The Best of Al Jolson, Release of, The Best of Al Jolson) -> The Best of Al Jolson (11434ms)\nWhat songs did Al Jolson Sing?\t?Mammy ?\t-8.08390678195529\tWhat songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sings, ?Mammy ?) -> ?Mammy ? (8557ms)\nWhat songs did Al Jolson Sing?\t?Sonny Boy\t-8.9419519304643\tWhat songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang, ?Sonny Boy) -> ?Sonny Boy (8557ms)\nWhat songs did Al Jolson Sing?\ttwo hours\t-8.966077391212991\tWhat songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang for, two hours) -> two hours (8557ms)\nWhat songs did Al Jolson Sing?\tthe campaign\t-9.216335709237011\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> (Al Jolson, even wrote a song for, the campaign) -> the campaign (8165ms)\nWhat songs did Al Jolson Sing?\tmore soldiers\t-9.363235544943484\tWhat songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, has sung to, more soldiers) -> more soldiers (8557ms)\nWhat songs did Al Jolson Sing?\ta few songs\t-9.726905306860905\tWhat songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sings, a few songs) -> a few songs (9178ms)\nWhat songs did Al Jolson Sing?\tthe October\t-9.74059022414547\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song al jolson sing ? -> $x: (the song al jolson, sing, $x) -> (the first song Al Jolson, sang on, the October) -> the October (8166ms)\nWhat songs did Al Jolson Sing?\tAvalon\t-10.091336255457875\tWhat songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what song have al jolson write ? -> $x: ($x, instance of, song) (al jolson, write, $x) -> (Avalon, Instance Of, song) (Al Jolson, had a hand in writing, ?Avalon) -> Avalon (8165ms)\nWhat songs did Al Jolson Sing?\tMammy\t-10.105788697660936\tWhat songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang, Mammy) -> Mammy (9178ms)\nWhat songs did Al Jolson Sing?\tthe song\t-10.328220008066793\tWhat songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang, the song) -> the song (9466ms)\nWhat songs did Al Jolson Sing?\tthe most popular tongue twister\t-10.750700164165483\tWhat songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang, the most popular tongue twister) -> the most popular tongue twister (9964ms)\nWhen did the Johnstown flood occur?\tMay 31 , 1889\t0.10153422626018704\tWhen did the Johnstown flood occur? -> $x: (the Johnstown flood, did occur on, $x) -> $x: (johnstown flood, occur on, $x) -> (The Johnstown Flood, occurred on, May 31 , 1889) -> May 31 , 1889 (7674ms)\nWhen did the Johnstown flood occur?\tPennsylvania\t-2.13705262737098\tWhen did the Johnstown flood occur? -> $x: (the Johnstown flood, did occur in, $x) -> $x: (johnstown flood, occur in, $x) -> (The Johnstown Flood, occurred in, Pennsylvania) -> Pennsylvania (7674ms)\nWhen did the Johnstown flood occur?\tPhilipsburg\t-3.3380102972814196\tWhen did the Johnstown flood occur? -> $x: (the Johnstown flood, did occur in, $x) -> $x: (the Johnstown flood, also affect, $x) -> (the Johnstown Flood, also affected, Philipsburg) -> Philipsburg (8107ms)\nWhen did the Johnstown flood occur?\tHarrison\t-3.535216162957227\tWhen did the Johnstown flood occur? -> $x: (the Johnstown flood, did occur in, $x) -> $x: (the Johnstown flood, occur during, $x) -> (The famous Johnstown flood, occurred during, Harrison) -> Harrison (8020ms)\nWhen did the Johnstown flood occur?\t1935\t-6.682599869118622\tWhen did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> when do the johnstown flood pass ? -> $x: (the johnstown flood, do pass in, $x) -> $x: (johnstown flood, pass in, $x) -> (the 18 % Johnstown Flood Tax, was passed in, 1935) -> 1935 (11579ms)\nWhen did the Johnstown flood occur?\texcellent vehicle\t-9.591618309069343\tWhen did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (The Johnstown Flood, Instance Of, excellent vehicle) -> excellent vehicle (11728ms)\nWhen did the Johnstown flood occur?\tgood read\t-9.602398976553403\tWhen did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (The Johnstown Flood, Instance Of, good read) -> good read (11728ms)\nWhen did the Johnstown flood occur?\tbook\t-9.617040520098463\tWhen did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (History of the Johnstown Flood, Instance Of, book) -> book (11728ms)\nWhen did the Johnstown flood occur?\toft-exploited event\t-9.682017885826678\tWhen did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (tragedy of the Johnstown Flood, Instance Of, oft-exploited event) -> oft-exploited event (11727ms)\nWhen did the Johnstown flood occur?\tbig, unruly, defiantly unfashionable play\t-9.99389173116987\tWhen did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (True History of the Johnstown Flood, Instance Of, big, unruly, defiantly unfashionable play) -> big, unruly, defiantly unfashionable play (11728ms)\nHow many members does it have?\tschool\t-8.841111375652641\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Trinity members, can sponsor students in, school) -> school (8996ms)\nHow many members does it have?\tbusiness\t-8.85766783386197\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, include students from, business) -> business (8996ms)\nHow many members does it have?\thigher education\t-9.156779329254114\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, introduce students to, higher education) -> higher education (8996ms)\nHow many members does it have?\tGeorgia Tech\t-9.174162548442512\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, must be full-time students at, Georgia Tech) -> Georgia Tech (8996ms)\nHow many members does it have?\texchange\t-9.178200301202619\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, offered students pornography in, exchange) -> exchange (8996ms)\nHow many members does it have?\tdavidinchi\t-9.236470568761064\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, user, $x) -> (Spanish members of parliament, Users, davidinchi) -> davidinchi (14082ms)\nHow many members does it have?\tresidence\t-9.240293046725624\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (associate members, are graduate students in, residence) -> residence (8996ms)\nHow many members does it have?\tCU\t-9.280338599609761\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Several members, are also students at, CU) -> CU (11013ms)\nHow many members does it have?\tFlorida State University\t-9.319322008827767\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (the members, were students at, Florida State University) -> Florida State University (11013ms)\nHow many members does it have?\teducation\t-9.347509431086996\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, encourage graduate students in, education) -> education (11013ms)\nHow many members does it have?\tgrades\t-9.427315621582828\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Choir members, are select students in, grades) -> grades (11013ms)\nHow many members does it have?\trespect\t-9.449649004690734\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, should treat students with, respect) -> respect (11013ms)\nHow many members does it have?\tgrade 12\t-9.456630776330561\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, are students through, grade 12) -> grade 12 (11013ms)\nHow many members does it have?\tregistration\t-9.54514234816195\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Staff members, assist students with, registration) -> registration (11033ms)\nHow many members does it have?\tHarvard University\t-9.561383171928806\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, must be students of, Harvard University) -> Harvard University (11033ms)\nHow many members does it have?\tJohnny Smith\t-9.61433530560705\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (a member, was a student of, Johnny Smith) -> Johnny Smith (11033ms)\nHow many members does it have?\tAustralia\t-9.652911758401633\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (family members, accompany students to, Australia) -> Australia (11032ms)\nHow many members does it have?\tfull-time education , unemployed or\t-9.668249791144008\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are students in, full-time education , unemployed or) -> full-time education , unemployed or (11058ms)\nHow many members does it have?\tthe Department\t-9.67808350142413\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are graduate students in, the Department) -> the Department (11058ms)\nHow many members does it have?\ta process\t-9.682504486131908\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, walk interested students through, a process) -> a process (11058ms)\nHow many members does it have?\tUF?s Turlington Plaza\t-9.68328117077183\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Group members, asked students today at, UF?s Turlington Plaza) -> UF?s Turlington Plaza (11058ms)\nHow many members does it have?\ta community college\t-9.715423754216621\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (One member, is a student at, a community college) -> a community college (11058ms)\nHow many members does it have?\tArkansas Tech\t-9.746960538873008\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (its members, were students at, Arkansas Tech) -> Arkansas Tech (11058ms)\nHow many members does it have?\tGamma Sigma Delta\t-9.747254833572162\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Faculty members, nominated students for, Gamma Sigma Delta) -> Gamma Sigma Delta (11136ms)\nHow many members does it have?\tdaily activities\t-9.75159708503084\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Member, will supervise students in, daily activities) -> daily activities (11137ms)\nHow many members does it have?\tpractical career advice\t-9.7557208361758\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (ACC members, will assist students with, practical career advice) -> practical career advice (11137ms)\nHow many members does it have?\tancient Hindu geography\t-9.76366238691147\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (a member, was a student of, ancient Hindu geography) -> ancient Hindu geography (11137ms)\nHow many members does it have?\ta range\t-9.767448082932502\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (College members, support students in, a range) -> a range (11137ms)\nHow many members does it have?\tthe UNC School\t-9.773702061272022\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are students from, the UNC School) -> the UNC School (11137ms)\nHow many members does it have?\ta variety\t-9.783506950337777\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (faculty members, will guide students through, a variety) -> a variety (11160ms)\nHow many members does it have?\tone or more teams\t-9.798538329965599\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (team members, add students to, one or more teams) -> one or more teams (11160ms)\nHow many members does it have?\tfourth or fifth grade\t-9.819715209840314\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, must be a student either in, fourth or fifth grade) -> fourth or fifth grade (11160ms)\nHow many members does it have?\tthe University\t-9.824074595803085\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are students at, the University) -> the University (11160ms)\nHow many members does it have?\tthe Honors Program\t-9.832710622542065\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (faculty members, may nominate students for, the Honors Program) -> the Honors Program (11160ms)\nHow many members does it have?\tthe Peabody Conservatory\t-9.835962670816919\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, were students at, the Peabody Conservatory) -> the Peabody Conservatory (11160ms)\nHow many members does it have?\tcore classes\t-9.851511465912125\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, will assist students in, core classes) -> core classes (11181ms)\nHow many members does it have?\tthe SOE\t-9.854242811066811\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Faculty members, advise graduate students in, the SOE) -> the SOE (11181ms)\nHow many members does it have?\tacademic support\t-9.855126997467908\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, strive to provide students with, academic support) -> academic support (11181ms)\nHow many members does it have?\tsmall groups\t-9.861237621728778\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (staff members, divided students into, small groups) -> small groups (11181ms)\nHow many members does it have?\tdifferent places\t-9.876696367837438\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, took the students to, different places) -> different places (11181ms)\nHow many members does it have?\tWashington-Monroe School\t-9.87708861963044\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are tutoring students at, Washington-Monroe School) -> Washington-Monroe School (11247ms)\nHow many members does it have?\tcareer plans\t-9.885189704021256\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Staff members, assist students in developing, career plans) -> career plans (11247ms)\nHow many members does it have?\tADDA\t-9.886223616742269\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Chapter Members, are Student Members of, ADDA) -> ADDA (11247ms)\nHow many members does it have?\tthe Wellness Center\t-9.887420663396712\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, will direct students to, the Wellness Center) -> the Wellness Center (11247ms)\nHow many members does it have?\ta qualified institution\t-9.891951849247665\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (member, must be a full-time student at, a qualified institution) -> a qualified institution (11247ms)\nHow many members does it have?\tE.W. Scripps School\t-9.90063428500807\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, are students from, E.W. Scripps School) -> E.W. Scripps School (11247ms)\nHow many members does it have?\tthe Gates Chili schools\t-9.903757881955759\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (the members, are students in, the Gates Chili schools) -> the Gates Chili schools (11336ms)\nHow many members does it have?\tthe Paris Conservatoire\t-9.908670801271631\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (the members, were still students at, the Paris Conservatoire) -> the Paris Conservatoire (11335ms)\nHow many members does it have?\tfield trips\t-9.926012531814564\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, take students on, field trips) -> field trips (11335ms)\nHow many members does it have?\tthe Sorbonne University\t-9.93608094862169\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, attacked Jewish students in, the Sorbonne University) -> the Sorbonne University (11335ms)\nHow many members does it have?\tthe Yale School\t-9.94443098342915\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (its members, were students at, the Yale School) -> the Yale School (11336ms)\nHow many members does it have?\tthe Prague Music Conservatory\t-9.94670752311823\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (its members, were students at, the Prague Music Conservatory) -> the Prague Music Conservatory (11335ms)\nHow many members does it have?\tan exploration\t-9.987756644105833\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (group members, led these students on, an exploration) -> an exploration (11370ms)\nHow many members does it have?\ta two hour skills clinic\t-9.992685848402791\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (member, led students on, a two hour skills clinic) -> a two hour skills clinic (11370ms)\nHow many members does it have?\tthe Sam M. Walton College\t-10.003444519313334\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Team members, include students in, the Sam M. Walton College) -> the Sam M. Walton College (11370ms)\nHow many members does it have?\twide range subjects\t-10.018392138375617\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (These members, help the students with, wide range subjects) -> wide range subjects (11370ms)\nHow many members does it have?\tJuly 1 , 2012\t-10.037708989448184\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, will be graduate students from, July 1 , 2012) -> July 1 , 2012 (11370ms)\nHow many members does it have?\tthe AC View and Pacer staffs\t-10.058200245886194\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, include students on, the AC View and Pacer staffs) -> the AC View and Pacer staffs (11370ms)\nHow many members does it have?\tscientist\t-10.078332195693076\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a, scientist) -> scientist (11419ms)\nHow many members does it have?\tarachnid\t-10.078332195693076\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is an, arachnid) -> arachnid (11419ms)\nHow many members does it have?\tprofession\t-10.078332195693076\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a, profession) -> profession (11419ms)\nHow many members does it have?\tprofessors\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (professors, is a profession that is a kind of, MEMBERS) -> professors (11592ms)\nHow many members does it have?\tprofessionals\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (professionals, is a profession that is a kind of, MEMBERS) -> professionals (11510ms)\nHow many members does it have?\tperformers\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, performers) -> performers (11511ms)\nHow many members does it have?\ttools\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a tool used in the profession, tools) -> tools (11419ms)\nHow many members does it have?\tstaff\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (staff, is a profession that is a kind of, MEMBERS) -> staff (11510ms)\nHow many members does it have?\texperts\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, experts) -> experts (11510ms)\nHow many members does it have?\teducators\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, educators) -> educators (11592ms)\nHow many members does it have?\tnurses\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, nurses) -> nurses (11592ms)\nHow many members does it have?\tphysicians\t-10.224939558888593\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, physicians) -> physicians (11511ms)\nHow many members does it have?\tcustomers\t-10.225061399175488\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, referred to the students as, customers) -> customers (11592ms)\nHow many members does it have?\tCentral Campus\t-10.261777610614047\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, engaged students on, Central Campus) -> Central Campus (11591ms)\nHow many members does it have?\tLatino culture\t-10.278425896890028\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, helps educate all students about, Latino culture) -> Latino culture (11592ms)\nHow many members does it have?\tansamcw's types\t-10.436436546624632\tHow many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> $x: ($x, feature view, beyonce) -> (ansamcw's types, Featured views, Beyonce: I Am....Tour Concert Dates) -> ansamcw's types (11860ms)\nHow many members does it have?\tThe University\t-10.449049558750552\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (the members, were students at, The University) -> The University (11662ms)\nHow many members does it have?\tU.S. politician\t-10.500660362171969\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is a, U.S. politician) -> U.S. politician (11662ms)\nHow many members does it have?\tevent outcome\t-10.500660362171969\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is an, event outcome) -> event outcome (11662ms)\nHow many members does it have?\tprogramming language\t-10.500660362171969\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is a, programming language) -> programming language (11661ms)\nHow many members does it have?\tjob position\t-10.500660362171969\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is a, job position) -> job position (11662ms)\nHow many members does it have?\tHare Krishnas\t-10.504459623243207\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (members, deny being, Hare Krishnas) -> Hare Krishnas (12258ms)\nHow many members does it have?\tPresident Bill\t-10.51188986858402\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (President Bill, is a politician who holds the office of, member) -> President Bill (11728ms)\nHow many members does it have?\tTumblr\t-10.525396980415408\tHow many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> (Beyonce, is the newest member of, Tumblr) -> Tumblr (8010ms)\nHow many members does it have?\tNEW\t-10.539644592839867\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is a proxy for, NEW) -> NEW (11728ms)\nHow many members does it have?\tMerida\t-10.560670937413704\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (faculty members, have accompanied students to, Merida) -> Merida (11728ms)\nHow many members does it have?\teach semester\t-10.593599825552895\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (faculty members, handle 150+ students, each semester) -> each semester (11728ms)\nHow many members does it have?\tBill\t-10.594341528562131\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (Bill, is a U.S. politician who holds the office of, member) -> Bill (11746ms)\nHow many members does it have?\tINVESTORS\t-10.599620332328943\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, INVESTORS) -> INVESTORS (11746ms)\nHow many members does it have?\tLEADERS\t-10.599620332328943\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, LEADERS) -> LEADERS (11746ms)\nHow many members does it have?\tPHYSICIAN\t-10.599620332328943\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, PHYSICIAN) -> PHYSICIAN (11746ms)\nHow many members does it have?\tSPECIALISTS\t-10.599620332328943\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, SPECIALISTS) -> SPECIALISTS (11777ms)\nHow many members does it have?\tFACULTY\t-10.599620332328943\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (FACULTY, is a profession that is a kind of, MEMBERS) -> FACULTY (11746ms)\nHow many members does it have?\tuk\t-10.6436025412876\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (uk, is a country located in the geopolitical location, MEMBERS) -> uk (11777ms)\nHow many members does it have?\tOBAMA\t-10.6436025412876\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (OBAMA, is a politician who holds the office of, member) -> OBAMA (11777ms)\nHow many members does it have?\tCHina\t-10.6436025412876\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (CHina, is a country located in the geopolitical location, MEMBERS) -> CHina (11777ms)\nHow many members does it have?\tHILLARY\t-10.6436025412876\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (HILLARY, is a politician who holds the office of, member) -> HILLARY (11777ms)\nHow many members does it have?\t? Germany\t-10.661470313677052\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (? Germany, is a country located in the geopolitical location, MEMBERS) -> ? Germany (11801ms)\nHow many members does it have?\t  russia\t-10.661470313677052\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (  russia, is a country located in the geopolitical location, MEMBERS) ->   russia (11777ms)\nHow many members does it have?\tsaudia arabia\t-10.661470313677052\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (saudia arabia, is a country located in the geopolitical location, MEMBERS) -> saudia arabia (11801ms)\nHow many members does it have?\tPResident\t-10.661470313677052\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (PResident, is a U.S. politician who holds the office of, member) -> PResident (11801ms)\nHow many members does it have?\tBARACK\t-10.661470313677052\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (BARACK, is a U.S. politician who holds the office of, member) -> BARACK (11801ms)\nHow many members does it have?\tfrequently\t-10.756821085952716\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Faculty members, invite students, frequently) -> frequently (11801ms)\nHow many members does it have?\tresearchers\t-10.834530585307412\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, contribute to, member) -> (researchers, contribute to, members) -> researchers (16109ms)\nHow many members does it have?\tGreenSingles\t-10.908445843657766\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, instance of, member) -> (GreenSingles, Instance Of, Members) -> GreenSingles (16109ms)\nHow many members does it have?\tTom Stiner\t-10.911199281261169\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, instance of, member) -> (Tom Stiner, Instance Of, Members) -> Tom Stiner (16109ms)\nHow many members does it have?\tbeliefs\t-10.921117391235814\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, contribute to, member) -> (beliefs, contribute to, members) -> beliefs (16109ms)\nHow many members does it have?\tvisas\t-10.922001630339205\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (members, were denied, visas) -> visas (12258ms)\nHow many members does it have?\tminor atlantis member\t-10.931416638492951\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, instance of, member) -> (minor atlantis member, Instance Of, member) -> minor atlantis member (16109ms)\nHow many members does it have?\tnon-lawyer affiliate member\t-10.931416638492951\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, instance of, member) -> (non-lawyer affiliate member, Instance Of, member) -> non-lawyer affiliate member (16109ms)\nHow many members does it have?\tdisability\t-10.943286935604254\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (members, are denied, disability) -> disability (12258ms)\nHow many members does it have?\ttenure\t-10.94552754536762\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (Faculty members, have been denied, tenure) -> tenure (12258ms)\nHow many members does it have?\tboarding\t-10.956450584679377\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (Members, may be denied, boarding) -> boarding (12258ms)\nHow many members does it have?\tresidency\t-10.957414325779467\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (Family members, are regularly denied, residency) -> residency (12258ms)\nHow many members does it have?\tbioethics\t-10.98120812012385\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, teach by, member) -> (bioethics, be taught by, members) -> bioethics (14082ms)\nHow many members does it have?\tstudents\t-10.988281716737212\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, teach by, member) -> (students, taught jointly by, members) -> students (14082ms)\nHow many members does it have?\tMusic\t-11.041325273366697\tHow many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> $x: (beyonce, domain, $x) -> (Beyonce: I Am....Tour Concert Dates, Related Domain, Music) -> Music (11860ms)\nHow many members does it have?\tEvent\t-11.041325273366697\tHow many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> $x: (beyonce, related type, $x) -> (Beyonce: I Am....Tour Concert Dates, Related Type, Event) -> Event (11821ms)\nHow many members does it have?\tElla Fitzgerald\t-11.064082456673388\tHow many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> $x: (beyonce, compare, $x) -> (Beyonce, can be compared to, Ella Fitzgerald) -> Ella Fitzgerald (11822ms)\nHow many members does it have?\tUniversity\t-11.088814228546745\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (its members, were students at, University) -> University (11822ms)\nHow many members does it have?\tsatisfied\t-11.111371855072543\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (Members, are, satisfied) -> satisfied (11822ms)\nHow many members does it have?\tobese\t-11.128377563794983\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (members, are, obese) -> obese (11822ms)\nHow many members does it have?\tthe top\t-11.133793100225189\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Staff members, take students to, the top) -> the top (11861ms)\nHow many members does it have?\tHartselle High School\t-11.16812597679175\tHow many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (whose members, are students at, Hartselle High School) -> Hartselle High School (11860ms)\nHow old was the dam?\t11 %\t-11.125820732242051\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> (11 %, likely be as tall/little shorter as, the dam) -> 11 % (9389ms)\nHow old was the dam?\tVyre Unify 4\t-11.987528185666719\tHow old was the dam? -> how old [ be the dam ] ? -> what be be the dam cm ? -> $x: ($x, be be, the dam cm) -> $x: ($x, be be, dam cm) -> (Vyre Unify 4, was designed as, a CMS/DAM application) -> Vyre Unify 4 (6184ms)\nHow old was the dam?\tThe COE\t-12.416326755343437\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> (The COE, has been running a little water through, the dam) -> The COE (9388ms)\nHow old was the dam?\tThe Great Pyramid\t-12.4595215005566\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> (The Great Pyramid, is even a little smaller than, the Hoover Dam) -> The Great Pyramid (9389ms)\nHow old was the dam?\told\t-12.845831367077828\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (old, Instance Of, age) (old, is, the dam) -> old (6123ms)\nHow old was the dam?\tthe sensor\t-13.225038793778781\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> (the sensor, was mounted in, the lower air dam) -> the sensor (9388ms)\nHow old was the dam?\tOld\t-13.243687257935207\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (Old, Instance Of, age) (old, is, the dam) -> Old (6124ms)\nHow old was the dam?\t43 to 84 years\t-13.296317716897097\tHow old was the dam? -> how old be [ the dam ] ? -> what be the dam s age ? -> what be the age of dam ? -> $x: (dam, age, $x) -> (Beaver Dam, were aged, 43 to 84 years) -> 43 to 84 years (10542ms)\nHow old was the dam?\t2,000 troops\t-13.56341492847444\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (2,000 troops, had been sent to work on, the Zipingku Dam) -> 2,000 troops (10280ms)\nHow old was the dam?\tHoover Dam 5,218 people\t-13.569085747639342\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Hoover Dam 5,218 people, would be working on, the Dam) -> Hoover Dam 5,218 people (10279ms)\nHow old was the dam?\tPercifield , 40\t-13.678883803537778\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Percifield , 40, had been working on, the dam project) -> Percifield , 40 (10280ms)\nHow old was the dam?\tstream\t-13.824346592815374\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (stream, was collected by, the dam) -> stream (10616ms)\nHow old was the dam?\tThe Smurfs\t-13.828086354919904\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (The Smurfs, are happily busy working at, the village dam) -> The Smurfs (10280ms)\nHow old was the dam?\tvideo games\t-13.843524037702274\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (video games, is the first crack in, the dam) -> video games (10062ms)\nHow old was the dam?\twater\t-13.901823221975317\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (water, Instance Of, aging infrastructure) (water, is being released through, the dam) -> water (6124ms)\nHow old was the dam?\t180\t-13.948089615428493\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (180, are, dams) -> 180 (12897ms)\nHow old was the dam?\ta contractor\t-13.951374592523347\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (a contractor, was working on, the dam) -> a contractor (10280ms)\nHow old was the dam?\tData\t-13.97093414468487\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (Data, is also collected on, the sires and dams) -> Data (10615ms)\nHow old was the dam?\tfog lights\t-13.975113993136267\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, mount, dam) -> (fog lights, mounted in, the front air dams) -> fog lights (9537ms)\nHow old was the dam?\tdesktop publishing\t-13.995666696925221\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (desktop publishing, was the first crack in, the dam) -> desktop publishing (10062ms)\nHow old was the dam?\tFall Line\t-14.032985502496551\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Fall Line, is presently working on, the Deep Creek Dam) -> Fall Line (10279ms)\nHow old was the dam?\tGrays Harbor County\t-14.035899398029324\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Grays Harbor County, were sent to work on, the Coulee Dam) -> Grays Harbor County (10322ms)\nHow old was the dam?\tfish\t-14.04249751549395\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (fish, Instance Of, age group) (fish, was, the dam) -> fish (6184ms)\nHow old was the dam?\tthe upstream water--BVW etc\t-14.14663468625327\tHow old was the dam? -> how old be [ the dam ] ? -> what be age of the dam ? -> $x: ($x, be age of, the dam) -> (the upstream water--BVW etc, is the age of, the dam) -> the upstream water--BVW etc (9389ms)\nHow old was the dam?\tThe water surface\t-14.151268951518205\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> (The water surface, is mounting persistently to, the dam brim) -> The water surface (9388ms)\nHow old was the dam?\tsignature\t-14.159303790427693\tHow old was the dam? -> how old [ be the dam ] ? -> how many year old be be the dam ? -> $x: ($x, instance of, year old) ($x, be be, the dam) -> (signature, Instance Of, 20-year old technology) (signature, is, the dam) -> signature (8620ms)\nHow old was the dam?\tmanaging water\t-14.236939330866527\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (managing water, is raising, the present dams) -> managing water (10806ms)\nHow old was the dam?\tthe Mbokazi Dam\t-14.245865703882291\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be bigger, the dam) -> (the Mbokazi Dam, could be bigger than, the Gariep Dam) -> the Mbokazi Dam (9961ms)\nHow old was the dam?\tthe Glen Canyon Dam\t-14.29764113488382\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be impressive, the dam) -> (the Glen Canyon Dam, is as impressive as, the Hoover Dam) -> the Glen Canyon Dam (9997ms)\nHow old was the dam?\tThe Occupy Movement\t-14.308388599268866\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (The Occupy Movement, is first crack in, the dam) -> The Occupy Movement (10062ms)\nHow old was the dam?\tcolostrum\t-14.330213684378098\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be remove, the dam) -> (colostrum, has been removed from, the dam?s udder) -> colostrum (9929ms)\nHow old was the dam?\tLoch Arklet\t-14.388946688744564\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (Loch Arklet, was raised by, the dam) -> Loch Arklet (10806ms)\nHow old was the dam?\tno matter\t-14.392577975619684\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (no matter, are the first cracks in, the dam) -> no matter (10062ms)\nHow old was the dam?\tBottom ash\t-14.403029313844034\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (Bottom ash, is collected at, the ash dam) -> Bottom ash (10615ms)\nHow old was the dam?\tA concrete weir\t-14.435527637482712\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be install, the dam) -> (A concrete weir, has been installed below, the dam) -> A concrete weir (10461ms)\nHow old was the dam?\tERA\t-14.440230185137999\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (ERA, was working on, the dam leak) -> ERA (10322ms)\nHow old was the dam?\t?Owl\t-14.46649170931622\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (?Owl, be, Dammed?) -> ?Owl (12897ms)\nHow old was the dam?\tthe Act\t-14.468619007457594\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (the Act, was a small crack in, the dam) -> the Act (10063ms)\nHow old was the dam?\tnone\t-14.481351214899556\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be greater, the dam) -> (none, are greater than, the dams) -> none (9863ms)\nHow old was the dam?\tworld renowned fishery\t-14.505781873627654\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: (little the dam, instance of, $x) -> (Little Red River below the dam, Instance Of, world renowned fishery) -> world renowned fishery (12897ms)\nHow old was the dam?\twater levels\t-14.50719817608865\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (water levels, have been raised by, the canal dam) -> water levels (10806ms)\nHow old was the dam?\tAug. 9 , 2006\t-14.520163353959099\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be test, the dam) -> (Aug. 9 , 2006, was an unexpected test for, the dam) -> Aug. 9 , 2006 (10806ms)\nHow old was the dam?\tSalini Costruttori SpA\t-14.52438800398377\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Salini Costruttori SpA, is working on, the dam) -> Salini Costruttori SpA (10322ms)\nHow old was the dam?\tThe Loki-wolf\t-14.528599860870077\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, mount, dam) -> (The Loki-wolf, mounted, the dam) -> The Loki-wolf (9537ms)\nHow old was the dam?\tthe Finnsheep , fixed effects\t-14.529704880881146\tHow old was the dam? -> how old be [ the dam ] ? -> what be age of the dam ? -> $x: ($x, be age of, the dam) -> $x: ($x, age of, dam) -> (the Finnsheep , fixed effects, were year-age of, dam combination) -> the Finnsheep , fixed effects (9537ms)\nHow old was the dam?\ta fish ladder\t-14.529735979106674\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be install, the dam) -> (a fish ladder, has been installed at, the Milton Lake Dam) -> a fish ladder (10461ms)\nHow old was the dam?\theavy equipment\t-14.53226138339802\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (heavy equipment, was working on, the dam) -> heavy equipment (10322ms)\nHow old was the dam?\tThe IAEA team\t-14.53588258530491\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (The IAEA team, was working near, the Saddam Dam) -> The IAEA team (10322ms)\nHow old was the dam?\twater samples\t-14.563794600311223\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (water samples, were collected monthly just below, the dam) -> water samples (10616ms)\nHow old was the dam?\tthe Yellowstone\t-14.56399950977847\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (the Yellowstone, are, dams) -> the Yellowstone (12897ms)\nHow old was the dam?\tUncertainty\t-14.5667735967801\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (Uncertainty, is a crack in, the dam) -> Uncertainty (10063ms)\nHow old was the dam?\tWater samples\t-14.580976671486079\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (Water samples, were collected from, the Selaulim Dam) -> Water samples (10616ms)\nHow old was the dam?\tWater\t-14.58578159563695\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (Water, Instance Of, ageing product) (Water, was being released from, the dams) -> Water (6215ms)\nHow old was the dam?\tbeer ?\t-14.593467186691932\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (beer ?, was, DAM) -> beer ? (12897ms)\nHow old was the dam?\tA quality breeder\t-14.593852511145725\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be pointed, the dam) -> (A quality breeder, will be able to point out, the sire and dam) -> A quality breeder (9929ms)\nHow old was the dam?\tSimilar questions\t-14.599972116683645\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (Similar questions, were raised about, the Three Gorges dam) -> Similar questions (10806ms)\nHow old was the dam?\tthe Volta River\t-14.617613212494481\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (the Volta River, has too little water to keep, the dam) -> the Volta River (9537ms)\nHow old was the dam?\ttotal sediment\t-14.62922523722909\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (total sediment, has been collected behind, the gabion dam) -> total sediment (10616ms)\nHow old was the dam?\twonderful place\t-14.637490379320063\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: (little the dam, instance of, $x) -> (little wayside park at the dam, Instance Of, wonderful place) -> wonderful place (12897ms)\nHow old was the dam?\tSalini Costruttori S.p.A\t-14.638642060060043\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Salini Costruttori S.p.A, is working on, the Gibe III dam) -> Salini Costruttori S.p.A (10353ms)\nHow old was the dam?\trubbish\t-14.698665252694523\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (rubbish, were being collected daily at, the dam) -> rubbish (10649ms)\nHow old was the dam?\tFlit\t-14.719040684028547\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Flit, was, Dam) -> Flit (12897ms)\nHow old was the dam?\t5000 years\t-14.721046048787251\tHow old was the dam? -> how old be [ the dam ] ? -> what be the dam s age ? -> what be the age of dam ? -> $x: (dam, age, $x) -> (Soda Dam proper, have a maximum age of about, 5000 years) -> 5000 years (10542ms)\nHow old was the dam?\tA major brick\t-14.72747041090802\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be remove, the dam) -> (A major brick, has been removed from, the wall damming) -> A major brick (9929ms)\nHow old was the dam?\ta concrete step\t-14.741943455889189\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be remove, the dam) -> (a concrete step, has been taken to remove, the Rodman dam) -> a concrete step (9929ms)\nHow old was the dam?\tFeb 27/2007 09:39AM\t-14.76056674034082\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Feb 27/2007 09:39AM, do connect, the dam) -> Feb 27/2007 09:39AM (12897ms)\nHow old was the dam?\tearthquakes\t-14.770965750406727\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (earthquakes, are, dams) -> earthquakes (15012ms)\nHow old was the dam?\tthe Canadian press\t-14.772283267246333\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (the Canadian press, may have cared little about, some dam) -> the Canadian press (9555ms)\nHow old was the dam?\tReclamation\t-14.812760261391752\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (Reclamation, is considering raising, the dam) -> Reclamation (10806ms)\nHow old was the dam?\tthe British\t-14.835309850318158\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, mount, dam) -> (the British, mounted an attack on, three German Dams) -> the British (9555ms)\nHow old was the dam?\tNew South Wales\t-14.852096114323677\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (New South Wales, were, dams) -> New South Wales (15012ms)\nHow old was the dam?\ttrunks\t-14.901891592369715\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (trunks, are, dams) -> trunks (15012ms)\nHow old was the dam?\t?This last storm\t-14.9769089805286\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (?This last storm, had little impact on, the dam) -> ?This last storm (9555ms)\nHow old was the dam?\tWaters\t-15.02068691221266\tHow old was the dam? -> how old [ be the dam ] ? -> how many year old be be the dam ? -> $x: ($x, instance of, year old) ($x, be be, the dam) -> (Waters, Instance Of, 44-year old ex-NFL player) (Water, was being released from, the dams) -> Waters (8621ms)\nHow old was the dam?\tblood\t-15.025679269592084\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (blood, is, ?Dam) -> blood (15012ms)\nHow old was the dam?\tMatola\t-15.040723302080357\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, mount, dam) -> (Matola, mounted a six-year campaign against, the dam) -> Matola (9555ms)\nHow old was the dam?\tA-1L and AN-10\t-15.04820495799111\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (A-1L and AN-10, do, tolerate dam-like methylation) -> A-1L and AN-10 (15012ms)\nHow old was the dam?\tBlue Colour\t-15.067503500395272\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Blue Colour, is, dam) -> Blue Colour (15012ms)\nHow old was the dam?\tone area\t-15.078741882092375\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (one area, is done with, a dam) -> one area (15012ms)\nHow old was the dam?\t?These\t-15.097915257804255\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (?These, are, dams) -> ?These (15594ms)\nHow old was the dam?\tHemoglobin A-1c\t-15.146855180527059\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, from be, the dam) -> (Hemoglobin A-1c, Instance Of, AGES) (Hemoglobin, is transferred from, the dam) -> Hemoglobin A-1c (18638ms)\nHow old was the dam?\ta POLITICAL WHORE!...and AMERICANS\t-15.21449904980429\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (a POLITICAL WHORE!...and AMERICANS, BE, DAMMED) -> a POLITICAL WHORE!...and AMERICANS (15593ms)\nHow old was the dam?\tpure Van Loon\t-15.217940912927391\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: (little the dam, instance of, $x) -> (Dam of the little chequer cock, Instance Of, pure Van Loon) -> pure Van Loon (15593ms)\nHow old was the dam?\ttrout , steelhead and salmon\t-15.219099272026154\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (trout , steelhead and salmon, are, dams) -> trout , steelhead and salmon (15594ms)\nHow old was the dam?\tCrews\t-15.230646904108548\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Crews, are working now to repair, the dam and refill) -> Crews (10353ms)\nHow old was the dam?\tthe cubs\t-15.253755705744094\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be large, the dam) -> (the cubs, were nearly as large as, the dam) -> the cubs (9929ms)\nHow old was the dam?\tHigh Hazard Dams\t-15.259374426441093\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (High Hazard Dams, Are, Dams) -> High Hazard Dams (15594ms)\nHow old was the dam?\tNetXposure\t-15.300788777860827\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (NetXposure, is, DAM) -> NetXposure (15594ms)\nHow old was the dam?\tRenny\t-15.306862119507315\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Renny, is off working on, the dam project) -> Renny (10353ms)\nHow old was the dam?\tWARRENBRI OMEGA\t-15.3256246816328\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (WARRENBRI OMEGA, IS, Dam) -> WARRENBRI OMEGA (15594ms)\nHow old was the dam?\tTool # 4\t-15.328068264413945\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Tool # 4, do, gravity dams) -> Tool # 4 (15593ms)\nHow old was the dam?\t14:40:10\t-15.330785391744492\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (14:40:10, DO, YOUR OWN DAM HOMEWORK) -> 14:40:10 (15678ms)\nHow old was the dam?\tLola\t-15.351615454334002\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Lola, were, DAMS) -> Lola (15677ms)\nHow old was the dam?\tBig River\t-15.356381013088797\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Big River, Was, Dammed) -> Big River (15678ms)\nHow old was the dam?\tMarketing Digital Asset Management\t-15.367465247178911\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Marketing Digital Asset Management, is, DAM) -> Marketing Digital Asset Management (15678ms)\nHow old was the dam?\tSowbugs\t-15.368424255357144\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Sowbugs, have been working well in, the Dam area) -> Sowbugs (10353ms)\nHow old was the dam?\tsuccession\t-15.430622984396495\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (succession, are, dams) -> succession (15677ms)\nHow old was the dam?\tthe reserve\t-15.4448134168642\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be large, the dam) -> (the reserve, is the large reservoir of, the Nagarjunasagar Dam) -> the reserve (9929ms)\nHow old was the dam?\tlap 40 leading R&S\t-15.460762479179126\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (lap 40 leading R&S, so did, DAMS Lola) -> lap 40 leading R&S (15677ms)\nHow old was the dam?\tConcerns\t-15.463190878925465\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (Concerns, have been raised around, the Olympic Dam open pit) -> Concerns (10870ms)\nHow old was the dam?\tThe 50 million tribals\t-15.464317990829606\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (The 50 million tribals, have been flooded by, dams) -> The 50 million tribals (15677ms)\nHow old was the dam?\tthe engineers\t-15.480373501274718\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (the engineers, were working on, the dam) -> the engineers (10353ms)\nHow old was the dam?\tCommonsense*\t-15.541974732811044\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Commonsense*, does say, Dam*) -> Commonsense* (15842ms)\nHow old was the dam?\tthe spillway\t-15.565150372697175\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (the spillway, lies a little beyond, the dam) -> the spillway (9734ms)\nHow old was the dam?\thell\t-15.572360779311603\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (hell, has to be done, dam) -> hell (15842ms)\nHow old was the dam?\tthreats\t-15.583589181771115\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (threats, are, dams) -> threats (15842ms)\nHow old was the dam?\tno work\t-15.587292318539689\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (no work, was done to finish, the dam) -> no work (15842ms)\nHow old was the dam?\tthe ranch\t-15.618850431772202\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (the ranch, are, dams) -> the ranch (15842ms)\nHow old was the dam?\tOwl\t-15.64336694582998\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (Owl, Instance Of, aged wise owl) (?Owl, be, Dammed?) -> Owl (8800ms)\nHow old was the dam?\tPIPA\t-15.653383642311177\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (PIPA, have to do with, DAM) -> PIPA (15842ms)\nHow old was the dam?\tfarms\t-15.655209228901247\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (farms, are, dams) -> farms (15842ms)\nHow old was the dam?\tA limitation\t-15.663665070423486\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (A limitation, is the fact that, dams) -> A limitation (15930ms)\nHow old was the dam?\tthe race\t-15.664953920731147\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (the race, are, dams) -> the race (15930ms)\nHow old was the dam?\tthe sire\t-15.681753673161163\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (the sire, was, dam) -> the sire (15929ms)\nHow old was the dam?\tthe 2005 tremor\t-15.726256923460717\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (the 2005 tremor, could do to, the dams) -> the 2005 tremor (15929ms)\nHow old was the dam?\tpower generation\t-15.728679656268437\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (power generation, do, large dam critics support) -> power generation (15929ms)\nHow old was the dam?\tuncertainty\t-15.762307124604403\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: (age, element, $x) ($x, be be, the dam) -> (any age, carries an element of, uncertainty) (Uncertainty, is a crack in, the dam) -> uncertainty (15929ms)\nHow old was the dam?\tnoon\t-15.76593551003236\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (noon, did, the First Dam Run) -> noon (15930ms)\nHow old was the dam?\tQuestion\t-15.77507134765424\tHow old was the dam? -> how old [ be the dam ] ? -> what type of character be be the dam ? -> what character be be the dam ? -> $x: ($x, instance of, character) ($x, be be, the dam) -> (Question, Instance Of, character) (question, is, the dam) -> Question (15930ms)\nHow old was the dam?\tThe Hebrew word for blood\t-15.790012023787218\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (The Hebrew word for blood, is, dam) -> The Hebrew word for blood (17439ms)\nHow old was the dam?\tas much electricity\t-15.818471004942179\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (as much electricity, does, the Hoover Dam) -> as much electricity (17439ms)\nHow old was the dam?\tPreliminary construction work\t-15.818987175127862\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Preliminary construction work, has been done on, the dam) -> Preliminary construction work (17439ms)\nHow old was the dam?\tWeaning\t-15.820664650980742\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Weaning, is best done by, the dam) -> Weaning (17439ms)\nHow old was the dam?\tcows\t-15.843735513746543\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (cows, can do to, a dam) -> cows (17439ms)\nHow old was the dam?\tmaintenance\t-15.849105180409492\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (maintenance, can be done on, the dam) -> maintenance (17605ms)\nHow old was the dam?\tShore anglers\t-15.852094745379798\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Shore anglers, have been doing well at, the dam) -> Shore anglers (17605ms)\nHow old was the dam?\tthe Vale\t-15.859548299135234\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (the Vale, do, Gaio Dam) -> the Vale (17605ms)\nHow old was the dam?\tthe Castelo\t-15.85955610855779\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (the Castelo, do, Bode Dam) -> the Castelo (17605ms)\nHow old was the dam?\tbeavers\t-15.895083578267235\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (beavers, do build, good dams) -> beavers (17605ms)\nHow old was the dam?\tmade Guy Gibson\t-15.91766493894406\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (made Guy Gibson, did, The Dam Busters draw) -> made Guy Gibson (18638ms)\nHow old was the dam?\tthe community\t-15.920397423447486\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (the community, receives very little benefit from, the dam) -> the community (9734ms)\nHow old was the dam?\tno mechanical juvenile passage system\t-15.938080222929859\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (no mechanical juvenile passage system, do, the other dams) -> no mechanical juvenile passage system (18638ms)\nHow old was the dam?\tbeer\t-15.946348707932762\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (beer, Instance Of, age-restricted product) (beer ?, was, DAM) -> beer (8800ms)\nHow old was the dam?\tOne colleague\t-15.960430358890251\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (One colleague, was working on, a story about the lock and dam) -> One colleague (10353ms)\nHow old was the dam?\tGrannuschka\t-15.96186073994897\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Grannuschka, is, dam) -> Grannuschka (18638ms)\nHow old was the dam?\tmucc\t-15.97724939948786\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (mucc, do, raind dam-sa) -> mucc (18638ms)\nHow old was the dam?\tOWL\t-15.983538415701446\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (OWL, Instance Of, nonprofit, nonpartisan chapter age) (?Owl, be, Dammed?) -> OWL (8800ms)\nHow old was the dam?\tdam\t-15.987503901237172\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, of be, the dam) -> (dam, Instance Of, aging infrastructure) (Dam, is just one of, the dams) -> dam (18638ms)\nHow old was the dam?\tBelle\t-15.997293065375235\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (Belle, 's a little too keyed-up for, her dam and half sister) -> Belle (9734ms)\nHow old was the dam?\tLola's\t-16.042423474205357\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (Lola's, Instance Of, age venue) (Lola, were, DAMS) -> Lola's (8816ms)\nHow old was the dam?\tthe computer\t-16.04526492234533\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be attach, the dam) -> (the computer, is attached, the dam) -> the computer (10186ms)\nHow old was the dam?\tSpectrim\t-16.09379586432652\tHow old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (Spectrim, says little of, her Dam , Violet) -> Spectrim (9735ms)\nHow old was the dam?\tThe returning fish\t-16.141304812337566\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (The returning fish, are collected just below, the dam and) -> The returning fish (10650ms)\nHow old was the dam?\tQuery\t-16.305079708365096\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, work fine, the dam) -> (Query, works fine on, the dams map) -> Query (10396ms)\nHow old was the dam?\tThe water\t-16.322879558102805\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be in there, the dam) -> (The water, is already there in, the dam) -> The water (10395ms)\nHow old was the dam?\tThe icicles\t-16.338053642229198\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be attach, the dam) -> (The icicles, are attached to, the ice dam hiding) -> The icicles (10186ms)\nHow old was the dam?\tThe mistakes\t-16.344083995745766\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be huge, the dam) -> (The mistakes, were huge on, the Mollejon Dam) -> The mistakes (10186ms)\nHow old was the dam?\tThe hydro electric power plants\t-16.451466778179718\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, can be install, the dam) -> (The hydro electric power plants, can be installed near, the dams) -> The hydro electric power plants (10870ms)\nHow old was the dam?\tThe large rock wall\t-16.4756244919112\tHow old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be intact, the dam) -> (The large rock wall, is still intact at, the dam site) -> The large rock wall (10460ms)\nHow old was the dam?\tman\t-17.020506280614836\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (man, Instance Of, age) (Man, has been building, dams) -> man (8831ms)\nHow old was the dam?\telectricity\t-17.639194368437334\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (electricity, Instance Of, aging infrastructure) (Electricity, is generated by, dams) -> electricity (8935ms)\nHow old was the dam?\tChina\t-17.709800551085547\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (China, Instance Of, aging society) (China, is building, dams) -> China (8935ms)\nHow old was the dam?\tBeavers\t-17.933004393998292\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (Beavers, Instance Of, age group) (Beavers, were building, dams) -> Beavers (8937ms)\nHow old was the dam?\tIndia\t-17.94768996375737\tHow old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (India, Instance Of, ageing society) (India, was building, dams) -> India (8935ms)\nWhat are antacids?\tValu Merchandisers\t-6.434848595403138\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Valu Merchandisers, Drugs manufactured, Antacid Antigas 200/200/200 suspension) -> Valu Merchandisers (5111ms)\nWhat are antacids?\tulcer-healing medication\t-6.498172892039512\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ulcer-healing medication) -> ulcer-healing medication (4041ms)\nWhat are antacids?\tWestern Family Foods\t-6.530798978475009\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Western Family Foods, Drugs manufactured, Antacid 750 chewable tablet) -> Western Family Foods (5111ms)\nWhat are antacids?\tFamily Dollar Services\t-6.530798978475009\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Family Dollar Services, Drugs manufactured, Antacid Supreme Cherry 400/135 suspension) -> Family Dollar Services (5111ms)\nWhat are antacids?\tAmerican Sales Company\t-6.530798978475009\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (American Sales Company, Drugs manufactured, Care One Calcium Antacid 1000 chewable tablet) -> American Sales Company (5111ms)\nWhat are antacids?\tcalcium-rich item\t-6.553301165245829\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, calcium-rich item) -> calcium-rich item (4041ms)\nWhat are antacids?\tacid-suppressing agent\t-6.578915760896624\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid-suppressing agent) -> acid-suppressing agent (4041ms)\nWhat are antacids?\tacid-blocking therapy\t-6.589536665450566\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid-blocking therapy) -> acid-blocking therapy (4041ms)\nWhat are antacids?\tTropical fruit punch\t-6.640248084640643\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Tropical fruit punch, Drugs with this flavor, Antacid 750 tablet) -> Tropical fruit punch (5111ms)\nWhat are antacids?\tMajor Pharmaceuticals\t-6.678190441444729\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Major Pharmaceuticals, Drugs manufactured, Antacid 750 chewable tablet) -> Major Pharmaceuticals (5129ms)\nWhat are antacids?\tTarget Corporation\t-6.678190441444729\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Target Corporation, Drugs manufactured, Antacid extra strength 750 tablet) -> Target Corporation (5129ms)\nWhat are antacids?\tCardinal Health\t-6.678190441444729\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Cardinal Health, Drugs manufactured, Leader Antacid 1000 chewable tablet) -> Cardinal Health (5146ms)\nWhat are antacids?\tSelect Brand\t-6.678190441444729\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Select Brand, Drugs manufactured, Antacid Antigas 400/40/400 suspension) -> Select Brand (5146ms)\nWhat are antacids?\tover-the counter medication\t-6.750638401875268\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the counter medication) -> over-the counter medication (4041ms)\nWhat are antacids?\tSam's West\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Sam's West, Drugs manufactured, Equate Antacid 750 chewable tablet) -> Sam's West (5319ms)\nWhat are antacids?\tPhysicians Total Care\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Physicians Total Care, Drugs manufactured, Maalox Antacid 200/20/200 liquid) -> Physicians Total Care (5160ms)\nWhat are antacids?\tChain Drug Consortium\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Chain Drug Consortium, Drugs manufactured, Antacid Antigas 200/20/200 suspension) -> Chain Drug Consortium (5160ms)\nWhat are antacids?\tMcKesson Corporation\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (McKesson Corporation, Drugs manufactured, Sunmark Calcium Antacid 750 chewable tablet) -> McKesson Corporation (5305ms)\nWhat are antacids?\tCVS Corporation\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (CVS Corporation, Drugs manufactured, Antacid Supreme 400/135 suspension) -> CVS Corporation (5319ms)\nWhat are antacids?\tHannaford Bros. Co.\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Hannaford Bros. Co., Drugs manufactured, Antacid 200/20/200 liquid) -> Hannaford Bros. Co. (5146ms)\nWhat are antacids?\tArmy and Air Force Exchange Service\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Army and Air Force Exchange Service, Drugs manufactured, Exchange Select Calcium Antacid 750 chewable tablet) -> Army and Air Force Exchange Service (5283ms)\nWhat are antacids?\tH-E-B\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (H-E-B, Drugs manufactured, Antacid 750 chewable tablet) -> H-E-B (5305ms)\nWhat are antacids?\tSuperValu\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (SuperValu, Drugs manufactured, Equaline Antacid 750 chewable tablet) -> SuperValu (5283ms)\nWhat are antacids?\tHy-Vee\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Hy-Vee, Drugs manufactured, Antacid 1000 chewable tablet) -> Hy-Vee (5305ms)\nWhat are antacids?\tChang Kuo Chou Pharmaceutical\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Chang Kuo Chou Pharmaceutical, Drugs manufactured, Stomachin Antacid 58/809 powder) -> Chang Kuo Chou Pharmaceutical (5146ms)\nWhat are antacids?\tL. Perrigo Co\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (L. Perrigo Co, Drugs manufactured, Good Sense Antacid 750 chewable tablet) -> L. Perrigo Co (5283ms)\nWhat are antacids?\tDOLGENCORP INC\t-6.762466253192266\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (DOLGENCORP INC, Drugs manufactured, Dg Health Calcium Antacid 500 chewable tablet) -> DOLGENCORP INC (5318ms)\nWhat are antacids?\tover-the-counter preparation\t-6.769194744681647\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter preparation) -> over-the-counter preparation (4041ms)\nWhat are antacids?\tpharmacologically active substance\t-6.775278985283736\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pharmacologically active substance) -> pharmacologically active substance (4101ms)\nWhat are antacids?\tOTC heartburn product\t-6.824996367091083\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC heartburn product) -> OTC heartburn product (4101ms)\nWhat are antacids?\tover-the-counter remedy\t-6.852355418155527\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter remedy) -> over-the-counter remedy (4100ms)\nWhat are antacids?\tnon-prescription medicine\t-6.90904355208689\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non-prescription medicine) -> non-prescription medicine (4100ms)\nWhat are antacids?\tacid neutralizing substance\t-6.927803212674002\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid neutralizing substance) -> acid neutralizing substance (4100ms)\nWhat are antacids?\tmedicament by adsorbent\t-6.9369239715211375\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medicament by adsorbent) -> medicament by adsorbent (4146ms)\nWhat are antacids?\tinexpensive over-the-counter medicine\t-6.9369239715211375\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, inexpensive over-the-counter medicine) -> inexpensive over-the-counter medicine (4101ms)\nWhat are antacids?\taluminum-based over-the-counter drug\t-6.9369239715211375\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, aluminum-based over-the-counter drug) -> aluminum-based over-the-counter drug (4146ms)\nWhat are antacids?\tOTC acid-reducing agent\t-6.9369239715211375\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC acid-reducing agent) -> OTC acid-reducing agent (4146ms)\nWhat are antacids?\tinclude over-the-counter medication\t-6.942064929275888\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, include over-the-counter medication) -> include over-the-counter medication (4146ms)\nWhat are antacids?\tover-the-counter therapy\t-6.9486747326287235\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter therapy) -> over-the-counter therapy (4146ms)\nWhat are antacids?\tnonprescription drug\t-6.972491381550651\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonprescription drug) -> nonprescription drug (4146ms)\nWhat are antacids?\tOTC product for heartburn\t-6.977696340077445\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC product for heartburn) -> OTC product for heartburn (4161ms)\nWhat are antacids?\tconventional treatment for heart\t-6.977696340077445\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, conventional treatment for heart) -> conventional treatment for heart (4161ms)\nWhat are antacids?\tgastric pH-modifier agent\t-6.977696340077445\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, gastric pH-modifier agent) -> gastric pH-modifier agent (4161ms)\nWhat are antacids?\tconsumer care product\t-6.977715061751292\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, consumer care product) -> consumer care product (4162ms)\nWhat are antacids?\tover-the-counter or prescription medicine\t-6.9845509506213945\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter or prescription medicine) -> over-the-counter or prescription medicine (4163ms)\nWhat are antacids?\tprescription drug and nonprescription drug\t-6.985921872607615\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prescription drug and nonprescription drug) -> prescription drug and nonprescription drug (4163ms)\nWhat are antacids?\tabsorbable pensive medication\t-7.0134695366654505\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, absorbable pensive medication) -> absorbable pensive medication (4178ms)\nWhat are antacids?\tcalcium upstart product\t-7.0134695366654505\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, calcium upstart product) -> calcium upstart product (4178ms)\nWhat are antacids?\tcommon antiulcer drug\t-7.0134695366654505\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common antiulcer drug) -> common antiulcer drug (4178ms)\nWhat are antacids?\tsupply from home\t-7.0134695366654505\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, supply from home) -> supply from home (4178ms)\nWhat are antacids?\teligible over-the-counter drug\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, eligible over-the-counter drug) -> eligible over-the-counter drug (4191ms)\nWhat are antacids?\tdoctor-approved over-the-counter meds\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, doctor-approved over-the-counter meds) -> doctor-approved over-the-counter meds (4178ms)\nWhat are antacids?\tliquid inside a plastic bag sunscreen flashlight and night light tweezers and nail clipper garbage bag sewing kit over-the-counter medication\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, liquid inside a plastic bag sunscreen flashlight and night light tweezers and nail clipper garbage bag sewing kit over-the-counter medication) -> liquid inside a plastic bag sunscreen flashlight and night light tweezers and nail clipper garbage bag sewing kit over-the-counter medication (4209ms)\nWhat are antacids?\ttreatment for peptic ulcer\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, treatment for peptic ulcer) -> treatment for peptic ulcer (4191ms)\nWhat are antacids?\tcommon medication during pregnancy\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common medication during pregnancy) -> common medication during pregnancy (4178ms)\nWhat are antacids?\teasygoing.common medication\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, easygoing.common medication) -> easygoing.common medication (4191ms)\nWhat are antacids?\tprescription and non-prescription drug\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prescription and non-prescription drug) -> prescription and non-prescription drug (4209ms)\nWhat are antacids?\tillness and pain relief product\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, illness and pain relief product) -> illness and pain relief product (4191ms)\nWhat are antacids?\tbroad classification of medicine\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, broad classification of medicine) -> broad classification of medicine (4191ms)\nWhat are antacids?\tform of calcium\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, form of calcium) -> form of calcium (4209ms)\nWhat are antacids?\th. drug\t-7.022590295512587\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, h. drug) -> h. drug (4191ms)\nWhat are antacids?\tprescription and non-prescription medication\t-7.024548755646114\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prescription and non-prescription medication) -> prescription and non-prescription medication (4209ms)\nWhat are antacids?\tover-the counter medicine\t-7.025880508402085\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the counter medicine) -> over-the counter medicine (4209ms)\nWhat are antacids?\tover-the-counter option\t-7.028759445063427\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter option) -> over-the-counter option (4209ms)\nWhat are antacids?\tcholesterol lowering medication\t-7.03109567771398\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, cholesterol lowering medication) -> cholesterol lowering medication (4224ms)\nWhat are antacids?\tnon-anticancer agent\t-7.03172977603357\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non-anticancer agent) -> non-anticancer agent (4224ms)\nWhat are antacids?\tchemically active ingredient\t-7.031748497707417\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, chemically active ingredient) -> chemically active ingredient (4224ms)\nWhat are antacids?\tprescription drug and over-the-counter medicine\t-7.032872211022087\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prescription drug and over-the-counter medicine) -> prescription drug and over-the-counter medicine (4224ms)\nWhat are antacids?\taccepted medical treatment\t-7.034033367684451\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, accepted medical treatment) -> accepted medical treatment (4223ms)\nWhat are antacids?\tacid reflux medication\t-7.034033367684451\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid reflux medication) -> acid reflux medication (4224ms)\nWhat are antacids?\tnon prescription medicine\t-7.034341056620173\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non prescription medicine) -> non prescription medicine (4241ms)\nWhat are antacids?\tkid test household product\t-7.035244961226471\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, kid test household product) -> kid test household product (4241ms)\nWhat are antacids?\tover-the-counter and prescription product\t-7.0362995166004865\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter and prescription product) -> over-the-counter and prescription product (4241ms)\nWhat are antacids?\tcounter ? over-the-counter drug\t-7.039041360572927\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, counter ? over-the-counter drug) -> counter ? over-the-counter drug (4241ms)\nWhat are antacids?\ttype of medicine\t-7.045530028010268\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, type of medicine) -> type of medicine (4241ms)\nWhat are antacids?\tconcurrent gastroprotective agent\t-7.054597198703451\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, concurrent gastroprotective agent) -> concurrent gastroprotective agent (4241ms)\nWhat are antacids?\tindigestion remedy\t-7.13727132810979\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, indigestion remedy) -> indigestion remedy (4256ms)\nWhat are antacids?\tFDA OTC monograph part 331\t-7.155023713973003\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (FDA OTC monograph part 331, Drugs regulated, Good Sense Antacid 500 chewable tablet) -> FDA OTC monograph part 331 (5652ms)\nWhat are antacids?\tFDA OTC monograph part 332\t-7.155023713973003\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (FDA OTC monograph part 332, Drugs regulated, Equaline Antacid 200/20/200 liquid) -> FDA OTC monograph part 332 (5529ms)\nWhat are antacids?\tpharmaceutical agent\t-7.193415451676795\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pharmaceutical agent) -> pharmaceutical agent (4256ms)\nWhat are antacids?\tcommon remedy\t-7.232759015298232\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common remedy) -> common remedy (4256ms)\nWhat are antacids?\tprn medicine\t-7.241475190977767\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prn medicine) -> prn medicine (4256ms)\nWhat are antacids?\tiron product\t-7.263601836962203\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, iron product) -> iron product (4256ms)\nWhat are antacids?\tconsumer item\t-7.299711027225607\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, consumer item) -> consumer item (4257ms)\nWhat are antacids?\tnonsurgical therapy\t-7.3052461522772525\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonsurgical therapy) -> nonsurgical therapy (4272ms)\nWhat are antacids?\tmedical therapy\t-7.305705404848668\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medical therapy) -> medical therapy (4272ms)\nWhat are antacids?\tdrug treatment\t-7.311974479579217\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, drug treatment) -> drug treatment (4272ms)\nWhat are antacids?\tparticulate material\t-7.322662476284981\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, particulate material) -> particulate material (4272ms)\nWhat are antacids?\tstomach remedy\t-7.33210549830786\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, stomach remedy) -> stomach remedy (4272ms)\nWhat are antacids?\theartburn remedy\t-7.334865256531294\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, heartburn remedy) -> heartburn remedy (4272ms)\nWhat are antacids?\tpregnancyrelated drug\t-7.334865256531294\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pregnancyrelated drug) -> pregnancyrelated drug (5651ms)\nWhat are antacids?\tcounter meds\t-7.343639157978521\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, counter meds) -> counter meds (5651ms)\nWhat are antacids?\thealth remedy\t-7.3469616282236405\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, health remedy) -> health remedy (5651ms)\nWhat are antacids?\tfamous product\t-7.347165117685893\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, famous product) -> famous product (5660ms)\nWhat are antacids?\tsuitable treatment\t-7.350427075129758\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, suitable treatment) -> suitable treatment (5660ms)\nWhat are antacids?\tgastrointestinal agent\t-7.352491397579822\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, gastrointestinal agent) -> gastrointestinal agent (5661ms)\nWhat are antacids?\tnonglamorous product\t-7.3797592119664355\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonglamorous product) -> nonglamorous product (5660ms)\nWhat are antacids?\tthecounter drug\t-7.3797592119664355\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, thecounter drug) -> thecounter drug (5670ms)\nWhat are antacids?\tditional therapy\t-7.3797592119664355\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ditional therapy) -> ditional therapy (5661ms)\nWhat are antacids?\tdrug medicine\t-7.3797592119664355\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, drug medicine) -> drug medicine (5670ms)\nWhat are antacids?\tantipeptic drug\t-7.3797592119664355\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, antipeptic drug) -> antipeptic drug (5670ms)\nWhat are antacids?\tdangerous pharmaceutical\t-7.3797592119664355\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, dangerous pharmaceutical) -> dangerous pharmaceutical (5660ms)\nWhat are antacids?\tstandard medication\t-7.384680470684932\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, standard medication) -> standard medication (5670ms)\nWhat are antacids?\tprecautionary item\t-7.385634592520229\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, precautionary item) -> precautionary item (5670ms)\nWhat are antacids?\tmedicinal product\t-7.386086544823378\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medicinal product) -> medicinal product (5679ms)\nWhat are antacids?\thousehold remedy\t-7.386185409159873\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, household remedy) -> household remedy (5679ms)\nWhat are antacids?\tpatent remedy\t-7.3915099730740215\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, patent remedy) -> patent remedy (5679ms)\nWhat are antacids?\teffective product\t-7.392623788584052\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, effective product) -> effective product (5679ms)\nWhat are antacids?\tbasic medication\t-7.392746894199194\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, basic medication) -> basic medication (5679ms)\nWhat are antacids?\tulcer drug\t-7.396895737407036\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ulcer drug) -> ulcer drug (5679ms)\nWhat are antacids?\ttraditional treatment\t-7.400969705062862\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, traditional treatment) -> traditional treatment (5687ms)\nWhat are antacids?\talkalinizing drug\t-7.407177654142236\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, alkalinizing drug) -> alkalinizing drug (5687ms)\nWhat are antacids?\tquest item\t-7.4186271124886884\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, quest item) -> quest item (5687ms)\nWhat are antacids?\tpharmacological group\t-7.434596096318035\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacids, Instance Of, pharmacological group) -> pharmacological group (5687ms)\nWhat are antacids?\tFruit\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Fruit, Drugs with this flavor, Antacid 1000 chewable tablet) -> Fruit (5724ms)\nWhat are antacids?\tPeppermint\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Peppermint, Drugs with this flavor, Antacid 500 tablet) -> Peppermint (5708ms)\nWhat are antacids?\tMeijer\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Meijer, Drugs manufactured, Antacid 160/105 chewable tablet) -> Meijer (5724ms)\nWhat are antacids?\tWintergreen\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Wintergreen, Drugs with this flavor, Antacid 750 chewable tablet) -> Wintergreen (5724ms)\nWhat are antacids?\tCircle\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Circle, Drugs with this shape, Antacid 750 tablet) -> Circle (5724ms)\nWhat are antacids?\tBerry\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Berry, Drugs with this flavor, Antacid 750 chewable tablet) -> Berry (5695ms)\nWhat are antacids?\tCherry\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Cherry, Drugs with this flavor, Antacid 1000 tablet) -> Cherry (5708ms)\nWhat are antacids?\tFragaria\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Fragaria, Drugs with this flavor, Antacid 750 tablet) -> Fragaria (5717ms)\nWhat are antacids?\tKroger\t-7.4541846041590665\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Kroger, Drugs manufactured, Antacid 750 tablet) -> Kroger (5708ms)\nWhat are antacids?\tfood and product\t-7.7749052108386545\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, food and product) -> food and product (5732ms)\nWhat are antacids?\tchewable calcium\t-8.940974114827064\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacids, be an excellent source of, $x) -> (The antacid TUMS ?, is an excellent source of, chewable calcium) -> chewable calcium (6019ms)\nWhat are antacids?\tsubstance\t-9.327616068389567\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, substance) -> substance (6021ms)\nWhat are antacids?\tpreparation\t-9.354693754872835\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, preparation) -> preparation (6019ms)\nWhat are antacids?\tmeasure\t-9.413482971022482\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, measure) -> measure (6019ms)\nWhat are antacids?\tincidental\t-9.544356405579949\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, incidental) -> incidental (6076ms)\nWhat are antacids?\tdoctor\t-9.551166953343348\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, doctor) -> doctor (6076ms)\nWhat are antacids?\ttherapy\t-9.609699776362689\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, therapy) -> therapy (6076ms)\nWhat are antacids?\tAcid reflux\t-9.615798774654706\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Acid reflux, is often treated with, antacid) -> Acid reflux (7596ms)\nWhat are antacids?\tremedy\t-9.636607363693912\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, remedy) -> remedy (6076ms)\nWhat are antacids?\talternative\t-9.641255749452714\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, alternative) -> alternative (6076ms)\nWhat are antacids?\ta good way\t-9.77460364666606\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, is, a good way) -> a good way (7596ms)\nWhat are antacids?\taluminium-containing medicines\t-10.002982611807873\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (aluminium-containing medicines, are, antacids) -> aluminium-containing medicines (7596ms)\nWhat are antacids?\tacid-blocking medication\t-10.12447196452738\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are on, acid-blocking medication) -> acid-blocking medication (7597ms)\nWhat are antacids?\tMagnesium Hydroxide\t-10.177662174709312\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Magnesium Hydroxide, are used as, antacids) -> Magnesium Hydroxide (7596ms)\nWhat are antacids?\tcalcium\t-10.194208257563243\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacids, be good source of, $x) -> (Antacids, are also good sources of, calcium) -> calcium (7597ms)\nWhat are antacids?\tmagnesium hydroxide\t-10.263098768165458\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (magnesium hydroxide, are also, antacids) -> magnesium hydroxide (7613ms)\nWhat are antacids?\ta placebo\t-10.325467341186615\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are more effective than, a placebo) -> a placebo (7613ms)\nWhat are antacids?\tacid reflux\t-10.375240096655325\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (acid reflux, are, antacids) -> acid reflux (7613ms)\nWhat are antacids?\tendoscopy.Treatment\t-10.430636681410355\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (endoscopy.Treatment, is, antacids) -> endoscopy.Treatment (7613ms)\nWhat are antacids?\theartburn or acid reflux\t-10.475379872433251\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (heartburn or acid reflux, is, antacids) -> heartburn or acid reflux (7629ms)\nWhat are antacids?\tlow-carbohydrate diets\t-10.545676778567834\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, Are, low-carbohydrate diets) -> low-carbohydrate diets (7629ms)\nWhat are antacids?\tdiarrhea or constipation\t-10.585759280091136\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, diarrhea or constipation) -> diarrhea or constipation (7629ms)\nWhat are antacids?\tAn example\t-10.5916550511501\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (An example, is, antacids) -> An example (7628ms)\nWhat are antacids?\tSPRYCEL plasma concentrations\t-10.593713990518747\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (SPRYCEL plasma concentrations, should be avoided, Antacids) -> SPRYCEL plasma concentrations (7629ms)\nWhat are antacids?\theartburn acid reflux\t-10.615811350044336\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (heartburn acid reflux, will be, antacids) -> heartburn acid reflux (7645ms)\nWhat are antacids?\tThanksgiving dinner Dad\t-10.626208547085572\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Thanksgiving dinner Dad, was popping, antacids) -> Thanksgiving dinner Dad (7645ms)\nWhat are antacids?\tacid reflux disease\t-10.630635225090145\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (acid reflux disease, is, antacids) -> acid reflux disease (7645ms)\nWhat are antacids?\tmagnesium , calcium\t-10.630970773226426\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, magnesium , calcium) -> magnesium , calcium (7645ms)\nWhat are antacids?\tavailable OTC\t-10.645526538619569\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, available OTC) -> available OTC (7645ms)\nWhat are antacids?\tmagnesium or aluminium\t-10.646993884195286\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, magnesium or aluminium) -> magnesium or aluminium (7663ms)\nWhat are antacids?\ta reality\t-10.651265077555646\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, a reality) -> a reality (7663ms)\nWhat are antacids?\tstomach acid neutralizers\t-10.668202867317824\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, stomach acid neutralizers) -> stomach acid neutralizers (7663ms)\nWhat are antacids?\ta low-risk solution\t-10.670999954763595\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are generally thought to be, a low-risk solution) -> a low-risk solution (7663ms)\nWhat are antacids?\tMaalox Advanced Maximum Strength\t-10.677366827102329\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Maalox Advanced Maximum Strength, are, antacids) -> Maalox Advanced Maximum Strength (7663ms)\nWhat are antacids?\tan acceptable re&#\t-10.691104048457975\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is, an acceptable re&#) -> an acceptable re&# (7663ms)\nWhat are antacids?\tthe Pharmacist :Antacids\t-10.700830204274627\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the Pharmacist :Antacids, are, antacids) -> the Pharmacist :Antacids (7683ms)\nWhat are antacids?\thip new joints\t-10.702567540813765\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (hip new joints, now are into, antacids) -> hip new joints (7683ms)\nWhat are antacids?\tacid reflux disorder disorder\t-10.73047934454738\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (acid reflux disorder disorder, is undoubtedly, antacids) -> acid reflux disorder disorder (7683ms)\nWhat are antacids?\tAcceptable alternatives\t-10.762969910781495\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Acceptable alternatives, are, antacids) -> Acceptable alternatives (7684ms)\nWhat are antacids?\tAmerican families\t-10.794335606563624\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (American families, are popping, antacids) -> American families (7683ms)\nWhat are antacids?\tAntacids, laxatives & antidiarrhoeal products\t-10.809593738830454\tWhat are antacids? -> what be [ antacid ] ? -> what be the expansion of antacid ? -> $x: (antacid, expansion, $x) -> $x: ($x, edition of, antacid) -> (Antacids, laxatives & antidiarrhoeal products, Edition Of, Antacids, laxatives & antidiarrhoeal products) -> Antacids, laxatives & antidiarrhoeal products (8697ms)\nWhat are antacids?\tAntacids and other drugs in gastrointestinal diseases\t-10.809593738830454\tWhat are antacids? -> what be [ antacid ] ? -> what be the expansion of antacid ? -> $x: (antacid, expansion, $x) -> $x: ($x, edition of, antacid) -> (Antacids and other drugs in gastrointestinal diseases, Edition Of, Antacids and other drugs in gastrointestinal diseases) -> Antacids and other drugs in gastrointestinal diseases (8697ms)\nWhat are antacids?\tsure the region?s tourism authorities\t-10.812044204336237\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (sure the region?s tourism authorities, are chewing, antacids) -> sure the region?s tourism authorities (7744ms)\nWhat are antacids?\ttreating gastritis\t-10.854642229716964\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (treating gastritis, are, antacids) -> treating gastritis (7745ms)\nWhat are antacids?\tan option\t-10.859179758224137\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are also, an option) -> an option (7745ms)\nWhat are antacids?\tUlcers Pepcid and Zantac\t-10.87122483549471\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Ulcers Pepcid and Zantac, are commonly used, antacids) -> Ulcers Pepcid and Zantac (7745ms)\nWhat are antacids?\tweak bases\t-10.912671639058015\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, weak bases) -> weak bases (7745ms)\nWhat are antacids?\tone hour\t-10.917844766737105\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is about, one hour) -> one hour (7783ms)\nWhat are antacids?\ta span\t-10.92493448853784\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, should be avoided within, a span) -> a span (7783ms)\nWhat are antacids?\taluminum ingestion\t-10.9382136253862\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (aluminum ingestion, is, antacids) -> aluminum ingestion (7783ms)\nWhat are antacids?\tHeartburn\t-10.94442211621509\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are Natural Remedies For, Heartburn) -> Heartburn (7783ms)\nWhat are antacids?\tcalcium use or retention\t-10.948056560566027\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (calcium use or retention, are, antacids) -> calcium use or retention (7783ms)\nWhat are antacids?\tNexium\t-10.948286545485225\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Nexium, may be taken with, antacids) -> Nexium (7783ms)\nWhat are antacids?\taluminum , magnesium , or calcium-based\t-10.96835663851909\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, may be, aluminum , magnesium , or calcium-based) -> aluminum , magnesium , or calcium-based (7802ms)\nWhat are antacids?\tBet CVS\t-10.97041493057024\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Bet CVS, was plumb out of, antacids) -> Bet CVS (7802ms)\nWhat are antacids?\tCommon indigestion\t-10.98889267637923\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Common indigestion, is repeatedly treated with, antacids) -> Common indigestion (7802ms)\nWhat are antacids?\thigh purity magnesium carbonate\t-10.992420549060917\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (high purity magnesium carbonate, is used as, antacid) -> high purity magnesium carbonate (7802ms)\nWhat are antacids?\tmore than 3 weeks\t-10.99420170110691\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are needed for, more than 3 weeks) -> more than 3 weeks (7802ms)\nWhat are antacids?\tgastric reflux\t-11.006784323589372\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (gastric reflux, would be to take, antacids) -> gastric reflux (7802ms)\nWhat are antacids?\ta week take\t-11.027814404502841\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (a week take, is, antacids) -> a week take (7818ms)\nWhat are antacids?\tCommon examples\t-11.0477461365202\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Common examples, are, antacids) -> Common examples (7819ms)\nWhat are antacids?\tfrequent indigestion\t-11.054462322421795\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (frequent indigestion, are taking, antacids) -> frequent indigestion (7819ms)\nWhat are antacids?\ta gentle medication\t-11.061943230620876\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, a gentle medication) -> a gentle medication (7819ms)\nWhat are antacids?\tAlmond\t-11.075601351941106\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Almond, is also a type of, antacid) -> Almond (7819ms)\nWhat are antacids?\tMagnesium\t-11.086285984061574\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Magnesium, is also found in, antacids) -> Magnesium (7834ms)\nWhat are antacids?\ta good example\t-11.116954086819442\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is, a good example) -> a good example (7834ms)\nWhat are antacids?\theartburn\t-11.117917945440825\tWhat are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (heartburn, usually include drugs like, antacids) -> heartburn (7834ms)\nWhat are antacids?\tnizatidine therapy\t-11.12516709418548\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are necessary while on, nizatidine therapy) -> nizatidine therapy (7834ms)\nWhat are antacids?\ta vicious cycle\t-11.141650974014494\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is, a vicious cycle) -> a vicious cycle (7834ms)\nWhat are antacids?\tMixed\t-11.151041617921315\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, Be, Mixed) -> Mixed (7834ms)\nWhat are antacids?\ta preferred remedy\t-11.21510004219624\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, a preferred remedy) -> a preferred remedy (7851ms)\nWhat are antacids?\tmild symptoms\t-11.215386302810874\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are for, mild symptoms) -> mild symptoms (7851ms)\nWhat are antacids?\tminor episodes\t-11.230004063455807\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are effective for, minor episodes) -> minor episodes (7851ms)\nWhat are antacids?\tFluoroquinolone absorption\t-11.244107799245848\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Fluoroquinolone absorption, is decreased by, antacids) -> Fluoroquinolone absorption (7851ms)\nWhat are antacids?\tover-the-counter\t-11.277614931911362\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are available, over-the-counter) -> over-the-counter (7851ms)\nWhat are antacids?\ta regular basis\t-11.282898808291314\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (a regular basis, are taking, antacids) -> a regular basis (7850ms)\nWhat are antacids?\tspecific foods\t-11.286592730958116\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (specific foods, is relieved by, antacids) -> specific foods (7866ms)\nWhat are antacids?\tGaviscon\t-11.291728783091084\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, Gaviscon) -> Gaviscon (7866ms)\nWhat are antacids?\tDoctors\t-11.356761822049226\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Doctors, are prescribing, antacids) -> Doctors (7866ms)\nWhat are antacids?\toccasional indigestion\t-11.382468657149166\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, may be used for, occasional indigestion) -> occasional indigestion (7867ms)\nWhat are antacids?\tHm Antacid\t-11.384976184670029\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Hm Antacid, Instance Of, antacid) -> Hm Antacid (10089ms)\nWhat are antacids?\tSIBO\t-11.391017007666717\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (SIBO, is, antacids) -> SIBO (7867ms)\nWhat are antacids?\tacid indigestion\t-11.40356417791028\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are used to relieve, acid indigestion) -> acid indigestion (7867ms)\nWhat are antacids?\tleast 1 hour\t-11.426599918545694\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, should be taken at, least 1 hour) -> least 1 hour (7961ms)\nWhat are antacids?\tDiets\t-11.443020997014177\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Diets, Are Like, Antacids) -> Diets (7961ms)\nWhat are antacids?\tCalcium Carbonate\t-11.48354807651473\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Calcium Carbonate, is also found in, popular antacids) -> Calcium Carbonate (9602ms)\nWhat are antacids?\t24 tablets\t-11.571238589542263\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, has, 24 tablets) -> 24 tablets (7961ms)\nWhat are antacids?\tBaking soda\t-11.572311906699712\tWhat are antacids? -> what [ be antacid ] ? -> what be know be antacid ? -> $x: ($x, be know be, antacid) -> (Baking soda, is known to be, a natural antacid) -> Baking soda (7961ms)\nWhat are antacids?\tPrilosec\t-11.592912399847169\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Prilosec, may be taken with, antacids) -> Prilosec (7961ms)\nWhat are antacids?\tSecond\t-11.612109581854769\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Second, is the use of, antacids) -> Second (8045ms)\nWhat are antacids?\tthe Obama 2012 reelection campaign\t-11.652339247577467\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the Obama 2012 reelection campaign, be stocking up on, antacids) -> the Obama 2012 reelection campaign (8045ms)\nWhat are antacids?\ta good source of calcium\t-11.65327170802537\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, a good source of calcium) -> a good source of calcium (8045ms)\nWhat are antacids?\tSufferers\t-11.669837618086175\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Sufferers, used to be on, antacids) -> Sufferers (8045ms)\nWhat are antacids?\tAlka-Seltzer\t-11.684735980412025\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Alka-Seltzer, Instance Of, antacid) -> Alka-Seltzer (10089ms)\nWhat are antacids?\tcalcium carbonate\t-11.684828840075722\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (calcium carbonate, is used in, antacids) -> calcium carbonate (9601ms)\nWhat are antacids?\treduce stomach acid\t-11.684831911109598\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are used to, reduce stomach acid) -> reduce stomach acid (8045ms)\nWhat are antacids?\tonly for occasional relief\t-11.741600062995278\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, should be used, only for occasional relief) -> only for occasional relief (8045ms)\nWhat are antacids?\tAlka Seltzer\t-11.746068693360359\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Alka Seltzer, Instance Of, antacid) -> Alka Seltzer (10089ms)\nWhat are antacids?\tPREVACID\t-11.7478704682398\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (PREVACID, was taking, antacids) -> PREVACID (8063ms)\nWhat are antacids?\tfamous Maalox\t-11.750013018081468\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (famous Maalox, Instance Of, antacid) -> famous Maalox (10089ms)\nWhat are antacids?\tinsufficient acid production\t-11.75311825676762\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (antacids, is really going on is, insufficient acid production) -> insufficient acid production (8063ms)\nWhat are antacids?\tjust following eating in order\t-11.765572571991342\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, to be taken, just following eating in order) -> just following eating in order (8063ms)\nWhat are antacids?\tMaalox Anti-Gas\t-11.789797029393295\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Maalox Anti-Gas, Instance Of, antacid) -> Maalox Anti-Gas (10089ms)\nWhat are antacids?\t2299.0\t-11.827544572466453\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, run, $x) -> (Antacid, Running Time, 2299.0) -> 2299.0 (10370ms)\nWhat are antacids?\tCalcium carbonate\t-11.844566938135035\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Calcium carbonate, is the primary ingredient in, antacid tablets) -> Calcium carbonate (9601ms)\nWhat are antacids?\tMagnesium oxide\t-11.848123486790932\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Magnesium oxide, is used in, some antacids) -> Magnesium oxide (9601ms)\nWhat are antacids?\tPepto Bismol\t-11.853632628300872\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Pepto Bismol, Instance Of, antacid) -> Pepto Bismol (10089ms)\nWhat are antacids?\tSodium bicarbonate\t-11.88454932549379\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Sodium bicarbonate, Instance Of, antacid) -> Sodium bicarbonate (10089ms)\nWhat are antacids?\tAluminium Hydroxide Mixture\t-11.919468703350827\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Aluminium Hydroxide Mixture, Instance Of, antacid) -> Aluminium Hydroxide Mixture (10089ms)\nWhat are antacids?\tsodium bicarbonate\t-11.923995533262312\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (sodium bicarbonate, Instance Of, antacid) -> sodium bicarbonate (10370ms)\nWhat are antacids?\tunwanted side effect\t-11.945411120948485\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have, unwanted side effect) -> unwanted side effect (8063ms)\nWhat are antacids?\tDiGel\t-11.965350704539993\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (DiGel, Instance Of, antacid) -> DiGel (10370ms)\nWhat are antacids?\tCare Sodium Bicarbonate BP\t-11.980432564417226\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Care Sodium Bicarbonate BP, Instance Of, antacid) -> Care Sodium Bicarbonate BP (10370ms)\nWhat are antacids?\tBananas\t-11.983894532313315\tWhat are antacids? -> what [ be antacid ] ? -> what be know be antacid ? -> $x: ($x, be know be, antacid) -> (Bananas, are known to have, natural antacid properties) -> Bananas (8063ms)\nWhat are antacids?\t9780947649043\t-11.98763095152655\tWhat are antacids? -> what be [ antacid ] ? -> what be the expansion of antacid ? -> $x: (antacid, expansion, $x) -> $x: ($x, edition, antacid) -> (9780947649043, Book Editions, Antacids, laxatives & antidiarrhoeal products) -> 9780947649043 (8599ms)\nWhat are antacids?\t9780914768425\t-11.98763095152655\tWhat are antacids? -> what be [ antacid ] ? -> what be the expansion of antacid ? -> $x: (antacid, expansion, $x) -> $x: ($x, edition, antacid) -> (9780914768425, Book Editions, Antacids and other drugs in gastrointestinal diseases) -> 9780914768425 (8599ms)\nWhat are antacids?\tbone loss\t-11.990881112674106\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacid abuse, has proven to cause, bone loss) -> bone loss (8063ms)\nWhat are antacids?\tMylanta\t-11.9944720213268\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mylanta, Instance Of, antacid) -> Mylanta (10370ms)\nWhat are antacids?\tMag-Ox\t-11.996725391970472\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mag-Ox, Instance Of, antacid) -> Mag-Ox (10370ms)\nWhat are antacids?\tjnj.canada.com\t-12.001911806948666\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (their antacid tablets, go to, jnj.canada.com) -> jnj.canada.com (8063ms)\nWhat are antacids?\tFLAVORED ANTACID\t-12.01656633641736\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (FLAVORED ANTACID, Instance Of, antacid) -> FLAVORED ANTACID (10370ms)\nWhat are antacids?\ta volcano\t-12.02179748640917\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have created, a volcano) -> a volcano (8063ms)\nWhat are antacids?\tPepsid Complete\t-12.021966210885404\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Pepsid Complete, Instance Of, antacid) -> Pepsid Complete (10390ms)\nWhat are antacids?\tDiovol Suspension\t-12.021966210885404\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Diovol Suspension, Instance Of, antacid) -> Diovol Suspension (10390ms)\nWhat are antacids?\ta purpose\t-12.027038089390789\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (these powerful antacids, have, a purpose) -> a purpose (8081ms)\nWhat are antacids?\taluminium hydroxide\t-12.032917619195365\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (aluminium hydroxide, Instance Of, antacid) -> aluminium hydroxide (10390ms)\nWhat are antacids?\tPhillips Milk of Magnesia Suspension\t-12.037368171629979\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Phillips Milk of Magnesia Suspension, Instance Of, antacid) -> Phillips Milk of Magnesia Suspension (10390ms)\nWhat are antacids?\tPCC\t-12.054619471780192\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (PCC, is often used in, calcium-based antacid tablets and liquids) -> PCC (9601ms)\nWhat are antacids?\tANTACID E-X\t-12.063629452068584\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (ANTACID E-X, Instance Of, antacid) -> ANTACID E-X (10390ms)\nWhat are antacids?\tGaviscon Suspension\t-12.065019964312496\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gaviscon Suspension, Instance Of, antacid) -> Gaviscon Suspension (10390ms)\nWhat are antacids?\tMagaldrate Suspension\t-12.065019964312496\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Magaldrate Suspension, Instance Of, antacid) -> Magaldrate Suspension (10390ms)\nWhat are antacids?\tMylanta Supreme\t-12.065019964312496\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mylanta Supreme, Instance Of, antacid) -> Mylanta Supreme (10390ms)\nWhat are antacids?\tDi- Gel\t-12.065469654076635\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Di- Gel, Instance Of, antacid) -> Di- Gel (10446ms)\nWhat are antacids?\tTum's\t-12.065469654076635\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Tum's, Instance Of, antacid) -> Tum's (10446ms)\nWhat are antacids?\tDe witt's antacid\t-12.065469654076635\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (De witt's antacid, Instance Of, antacid) -> De witt's antacid (10446ms)\nWhat are antacids?\taluminum hydroxide/magnesium hydroxide\t-12.065469654076635\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (aluminum hydroxide/magnesium hydroxide, Instance Of, antacid) -> aluminum hydroxide/magnesium hydroxide (10446ms)\nWhat are antacids?\tAlkaSeltzer\t-12.065469654076635\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (AlkaSeltzer, Instance Of, antacid) -> AlkaSeltzer (10446ms)\nWhat are antacids?\tpotential side effects and dangers\t-12.095999575971268\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacid, has its own set of, potential side effects and dangers) -> potential side effects and dangers (8081ms)\nWhat are antacids?\tMaalox Rs\t-12.10440182062489\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Maalox Rs, Instance Of, antacid) -> Maalox Rs (10514ms)\nWhat are antacids?\tTITRALAC EXTRA STRENGTH\t-12.10440182062489\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (TITRALAC EXTRA STRENGTH, Instance Of, antacid) -> TITRALAC EXTRA STRENGTH (10446ms)\nWhat are antacids?\tranitin from Brovel\t-12.10440182062489\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (ranitin from Brovel, Instance Of, antacid) -> ranitin from Brovel (10514ms)\nWhat are antacids?\tANTACID EXTRA STRENGTH\t-12.10440182062489\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (ANTACID EXTRA STRENGTH, Instance Of, antacid) -> ANTACID EXTRA STRENGTH (10446ms)\nWhat are antacids?\tlittle baking soda in water\t-12.10440182062489\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (little baking soda in water, Instance Of, antacid) -> little baking soda in water (10514ms)\nWhat are antacids?\tAlka Seltzer Plus\t-12.106242022632943\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Alka Seltzer Plus, Instance Of, antacid) -> Alka Seltzer Plus (10514ms)\nWhat are antacids?\ta good safety record\t-12.110668157245508\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (most antacids, have, a good safety record) -> a good safety record (8081ms)\nWhat are antacids?\ta meal\t-12.130553784003718\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have, a meal) -> a meal (8081ms)\nWhat are antacids?\tcalcium carbonate and magnesium\t-12.13976988146398\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (calcium carbonate and magnesium, is commonly found in, antacids) -> calcium carbonate and magnesium (9601ms)\nWhat are antacids?\tfew side effects\t-12.145151848506634\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (non-absorbable antacids, usually have, few side effects) -> few side effects (8081ms)\nWhat are antacids?\tAluminum\t-12.145218860043908\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Aluminum, is contained in, antacids) -> Aluminum (10514ms)\nWhat are antacids?\tText from Wikipedia Bromo-Seltzer\t-12.149295776060033\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Text from Wikipedia Bromo-Seltzer, Instance Of, antacid) -> Text from Wikipedia Bromo-Seltzer (10514ms)\nWhat are antacids?\tAciGon? Tablets\t-12.149295776060033\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (AciGon? Tablets, Instance Of, antacid) -> AciGon? Tablets (10514ms)\nWhat are antacids?\tUlcerGard\t-12.149295776060033\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (UlcerGard, Instance Of, antacid) -> UlcerGard (10538ms)\nWhat are antacids?\tAmi-Lac\t-12.149295776060033\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Ami-Lac, Instance Of, antacid) -> Ami-Lac (10538ms)\nWhat are antacids?\tTab Pan-D\t-12.149295776060033\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Tab Pan-D, Instance Of, antacid) -> Tab Pan-D (10538ms)\nWhat are antacids?\tLiebling TUMS\t-12.149295776060033\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Liebling TUMS, Instance Of, antacid) -> Liebling TUMS (10538ms)\nWhat are antacids?\tmagnesium aluminum hydroxide\t-12.150231916293798\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium aluminum hydroxide, Instance Of, antacid) -> magnesium aluminum hydroxide (10538ms)\nWhat are antacids?\tsuitable for you\t-12.150826532924054\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, is, suitable for you) -> suitable for you (8081ms)\nWhat are antacids?\tOs-Cal\t-12.151135978068083\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Os-Cal, Instance Of, antacid) -> Os-Cal (10538ms)\nWhat are antacids?\tless HCL\t-12.152100228743318\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, will have even, less HCL) -> less HCL (8081ms)\nWhat are antacids?\tnon-prescription Maalox\t-12.159352675140935\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (non-prescription Maalox, Instance Of, antacid) -> non-prescription Maalox (10564ms)\nWhat are antacids?\tpopular Alka-Seltzer\t-12.159352675140935\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (popular Alka-Seltzer, Instance Of, antacid) -> popular Alka-Seltzer (10538ms)\nWhat are antacids?\tTums for heartburn\t-12.159352675140935\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Tums for heartburn, Instance Of, antacid) -> Tums for heartburn (10538ms)\nWhat are antacids?\tstomach gas source antacid\t-12.159352675140935\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (stomach gas source antacid, Instance Of, antacid) -> stomach gas source antacid (10564ms)\nWhat are antacids?\tnon-prescription low sodium antacid\t-12.159352675140935\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (non-prescription low sodium antacid, Instance Of, antacid) -> non-prescription low sodium antacid (10564ms)\nWhat are antacids?\thigher risk\t-12.160880883200326\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (regular antacid takers, have been shown to be at, higher risk) -> higher risk (8098ms)\nWhat are antacids?\tPPIs\t-12.163540210100189\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (PPIs, Instance Of, antacid) -> PPIs (10566ms)\nWhat are antacids?\tan antacid\t-12.16998751671483\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids Your doctor, has prescribed, an antacid) -> an antacid (8098ms)\nWhat are antacids?\tbed\t-12.193782732994485\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (antacids, tried to go to, bed) -> bed (8098ms)\nWhat are antacids?\ta king?s ransom\t-12.199087904103358\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (antacid tablets, go for, a king?s ransom) -> a king?s ransom (8098ms)\nWhat are antacids?\tZantac\t-12.22538836128222\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Zantac, Instance Of, antacid) -> Zantac (10564ms)\nWhat are antacids?\tdiarrhea\t-12.241966003589129\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (diarrhea, are, antacids) -> diarrhea (8098ms)\nWhat are antacids?\tGelusil\t-12.245533994732916\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gelusil, Instance Of, antacid) -> Gelusil (10564ms)\nWhat are antacids?\tn?t work\t-12.260981742714543\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, do, $x) -> (over-the-counter antacids, did, n?t work) -> n?t work (8098ms)\nWhat are antacids?\ttemporary relief\t-12.267213081160602\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have long been the choices for, temporary relief) -> temporary relief (8098ms)\nWhat are antacids?\tMg 2\t-12.273923360380302\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mg 2, Instance Of, antacid) -> Mg 2 (10587ms)\nWhat are antacids?\twidely available\t-12.279409702727156\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, widely available) -> widely available (8098ms)\nWhat are antacids?\tranitidine therapy\t-12.281961442816236\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be on, $x) -> (antacids, are necessary while on, ranitidine therapy) -> ranitidine therapy (10586ms)\nWhat are antacids?\tserious side effects\t-12.287228914231925\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, can have, serious side effects) -> serious side effects (8116ms)\nWhat are antacids?\tGERD\t-12.30820410948616\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (an antacid and herbal remedies, have improved, GERD) -> GERD (8116ms)\nWhat are antacids?\ta potential increase\t-12.318195277665371\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, has been associated with, a potential increase) -> a potential increase (8116ms)\nWhat are antacids?\tmeals and at bedtime\t-12.323735375547441\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are taken after, meals and at bedtime) -> meals and at bedtime (8116ms)\nWhat are antacids?\tmultiple drug interactions\t-12.332323000413094\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Interactions Antacids, have, multiple drug interactions) -> multiple drug interactions (8116ms)\nWhat are antacids?\tAluminum carbonate\t-12.352506283174225\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Aluminum carbonate, Instance Of, antacid) -> Aluminum carbonate (10618ms)\nWhat are antacids?\tDad\t-12.3532296377129\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Dad, was popping, antacids) -> Dad (8116ms)\nWhat are antacids?\tside effects\t-12.362589477028058\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, can have, side effects) -> side effects (8116ms)\nWhat are antacids?\tmagnesium bicarbonate\t-12.363291989550149\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium bicarbonate, Instance Of, antacid) -> magnesium bicarbonate (10618ms)\nWhat are antacids?\tthe biggest villains\t-12.369728982716923\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the biggest villains, is, antacids) -> the biggest villains (8133ms)\nWhat are antacids?\tclarithromycin antacid\t-12.372526983420858\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (clarithromycin antacid, Instance Of, antacid) -> clarithromycin antacid (10618ms)\nWhat are antacids?\tcalcium stearate\t-12.372526983420858\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (calcium stearate, Instance Of, antacid) -> calcium stearate (10618ms)\nWhat are antacids?\tthe mounting reports\t-12.37390841286767\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, are, the mounting reports) -> the mounting reports (8133ms)\nWhat are antacids?\tcarbonate calcium\t-12.377744615095342\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (carbonate calcium, Instance Of, antacid) -> carbonate calcium (10618ms)\nWhat are antacids?\tsodium hydroxide\t-12.396377290091879\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (sodium hydroxide, Instance Of, antacid) -> sodium hydroxide (10618ms)\nWhat are antacids?\tthe advertising industry\t-12.39962850304074\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the advertising industry, is forcing, antacids) -> the advertising industry (8133ms)\nWhat are antacids?\tNat phos D6\t-12.40269828216371\tWhat are antacids? -> what [ be antacid ] ? -> what be know be antacid ? -> $x: ($x, be know be, antacid) -> (Nat phos D6, is known as, the ?biochemic antacid?) -> Nat phos D6 (8133ms)\nWhat are antacids?\tsymptoms\t-12.416248450329888\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (symptoms, have been using, antacids) -> symptoms (8133ms)\nWhat are antacids?\tside goods\t-12.423627173919282\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have neglected, side goods) -> side goods (8133ms)\nWhat are antacids?\taluminum hydroxide\t-12.428747951754055\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (aluminum hydroxide, is used in, antacids) -> aluminum hydroxide (10639ms)\nWhat are antacids?\tCaltrate 600\t-12.431765834418767\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Caltrate 600, Instance Of, antacid) -> Caltrate 600 (10639ms)\nWhat are antacids?\tmagnesium aluminometasilicate\t-12.437149658648185\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium aluminometasilicate, Instance Of, antacid) -> magnesium aluminometasilicate (10639ms)\nWhat are antacids?\tneutralize the acids\t-12.44440870789909\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are used to, neutralize the acids) -> neutralize the acids (8150ms)\nWhat are antacids?\tthe relative efficiency\t-12.45928334872923\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, is, the relative efficiency) -> the relative efficiency (8150ms)\nWhat are antacids?\tthe fastest working\t-12.460495218796073\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, the fastest working) -> the fastest working (8150ms)\nWhat are antacids?\tThe correct answer\t-12.461051774233717\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (The correct answer, is, Antacids) -> The correct answer (8150ms)\nWhat are antacids?\tmagnesium trisilicate\t-12.46960544650155\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (unsure which antacids, have, magnesium trisilicate) -> magnesium trisilicate (8150ms)\nWhat are antacids?\tprevious studies\t-12.481984214223786\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (antacid, alone goes against, previous studies) -> previous studies (8150ms)\nWhat are antacids?\tthe counter medications\t-12.488854120674484\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the counter medications, are, antacids) -> the counter medications (8150ms)\nWhat are antacids?\tphentermine work\t-12.496066786620961\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, do, $x) -> (information nexium and antacids, does, phentermine work) -> phentermine work (8150ms)\nWhat are antacids?\tMg2 in low concentrations\t-12.496959281405626\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mg2 in low concentrations, Instance Of, antacid) -> Mg2 in low concentrations (10639ms)\nWhat are antacids?\tgastric juices\t-12.500979758639128\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (the affect antacids, have on, gastric juices) -> gastric juices (8167ms)\nWhat are antacids?\tthe short term\t-12.507166740921042\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, can be helpful in, the short term) -> the short term (8167ms)\nWhat are antacids?\tbowel changes\t-12.511982352649879\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, can also have, bowel changes) -> bowel changes (8167ms)\nWhat are antacids?\taluminum carbonate\t-12.516521591594785\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (aluminum carbonate, Instance Of, antacid) -> aluminum carbonate (10639ms)\nWhat are antacids?\tmagnesium carbonate\t-12.516521591594785\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium carbonate, Instance Of, antacid) -> magnesium carbonate (10639ms)\nWhat are antacids?\tmagnesium salt\t-12.516521591594785\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium salt, Instance Of, antacid) -> magnesium salt (10639ms)\nWhat are antacids?\tRolaids\t-12.533837530279756\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Rolaids, Instance Of, antacid) -> Rolaids (10668ms)\nWhat are antacids?\tRulide d 50mg\t-12.541853236840769\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Rulide d 50mg, Instance Of, antacid) -> Rulide d 50mg (10668ms)\nWhat are antacids?\tMyogesic orphenadrine citrate 35 mg\t-12.541853236840769\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Myogesic orphenadrine citrate 35 mg, Instance Of, antacid) -> Myogesic orphenadrine citrate 35 mg (10668ms)\nWhat are antacids?\tGastrogel\t-12.546468305688556\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gastrogel, Instance Of, antacid) -> Gastrogel (10668ms)\nWhat are antacids?\tstomach acid\t-12.578083175633651\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (antacids, are used to reduce, stomach acid) -> stomach acid (9348ms)\nWhat are antacids?\ttetracycline\t-12.58156252402795\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, tetracycline) -> tetracycline (8167ms)\nWhat are antacids?\tZantac.\t-12.58162286348458\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, decrease, $x) -> (antacids, can decrease the effectiveness of, Zantac.) -> Zantac. (10668ms)\nWhat are antacids?\texcess sodium\t-12.596412506563214\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have, excess sodium) -> excess sodium (8167ms)\nWhat are antacids?\tpatients\t-12.605629945237082\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (patients, are taking, antacids) -> patients (8167ms)\nWhat are antacids?\tthe first drugs\t-12.606103389531249\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are usually, the first drugs) -> the first drugs (8381ms)\nWhat are antacids?\tanti-ulcer drugs\t-12.63043811376368\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, include, $x) -> (antacids, include, anti-ulcer drugs) -> anti-ulcer drugs (9499ms)\nWhat are antacids?\tAlgicon\t-12.632134629680005\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Algicon, Instance Of, antacid) -> Algicon (10668ms)\nWhat are antacids?\tthe most common medications\t-12.637542269796082\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, the most common medications) -> the most common medications (8381ms)\nWhat are antacids?\ta rapid onset\t-12.648419092417496\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, have, a rapid onset) -> a rapid onset (8381ms)\nWhat are antacids?\tcarbonate\t-12.652820087886191\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is calcium, carbonate) -> carbonate (8381ms)\nWhat are antacids?\ta beneficial effect\t-12.65290464525253\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, have, a beneficial effect) -> a beneficial effect (8381ms)\nWhat are antacids?\tThe pain\t-12.655389331338007\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (The pain, may be relieved by, antacids) -> The pain (8381ms)\nWhat are antacids?\tGavison\t-12.70707641793381\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gavison, Instance Of, antacid) -> Gavison (10745ms)\nWhat are antacids?\tGastrocaine\t-12.710453847600242\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gastrocaine, Instance Of, antacid) -> Gastrocaine (10745ms)\nWhat are antacids?\ta continuous schedule\t-12.71804148430574\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be on, $x) -> (antacids, are used on, a continuous schedule) -> a continuous schedule (10745ms)\nWhat are antacids?\tthe most popular drugs\t-12.722186730204482\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are among, the most popular drugs) -> the most popular drugs (8381ms)\nWhat are antacids?\tcooking\t-12.727654433502053\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (cooking, is often included in, antacids) -> cooking (8381ms)\nWhat are antacids?\tWingel\t-12.730926724604831\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Wingel, Instance Of, antacid) -> Wingel (10745ms)\nWhat are antacids?\tthe tablet form\t-12.733745826950583\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is better than, the tablet form) -> the tablet form (8599ms)\nWhat are antacids?\tDigene\t-12.739143421677682\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Digene, Instance Of, antacid) -> Digene (10815ms)\nWhat are antacids?\tthe jaundice\t-12.743107518821208\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the jaundice, were, antacids) -> the jaundice (8599ms)\nWhat are antacids?\tthe hottest and also popular acid\t-12.748365204436185\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, will be, the hottest and also popular acid) -> the hottest and also popular acid (8599ms)\nWhat are antacids?\tMaalux\t-12.757188005043435\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Maalux, Instance Of, antacid) -> Maalux (10815ms)\nWhat are antacids?\tdrug\t-12.76776204334531\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, is a, drug) -> drug (8599ms)\nWhat are antacids?\tminerals\t-12.77090177855353\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (minerals, are used as, antacids) -> minerals (8599ms)\nWhat are antacids?\tketoconazole\t-12.792122515691323\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (ketoconazole, is taken with, antacids) -> ketoconazole (8697ms)\nWhat are antacids?\tthe empty stomach\t-12.792987106358478\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are removed from, the empty stomach) -> the empty stomach (8697ms)\nWhat are antacids?\tmouth\t-12.795534097621326\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are taken by, mouth) -> mouth (8697ms)\nWhat are antacids?\tKremil\t-12.79612017159169\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Kremil, Instance Of, antacid) -> Kremil (10815ms)\nWhat are antacids?\ta prescription\t-12.79612180704101\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, sell, $x) -> (an antacid, is sold without, a prescription) -> a prescription (9398ms)\nWhat are antacids?\tDeflatine\t-12.797960373599743\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Deflatine, Instance Of, antacid) -> Deflatine (10815ms)\nWhat are antacids?\tstomach gas\t-12.831000694726947\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (Antacids, can reduce, stomach gas) -> stomach gas (9348ms)\nWhat are antacids?\tthe most common OTC drugs\t-12.834544394232967\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the most common OTC drugs, are, antacids) -> the most common OTC drugs (9348ms)\nWhat are antacids?\tFinally\t-12.83954874703954\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, may be needed, Finally) -> Finally (9348ms)\nWhat are antacids?\tCarbellon\t-12.841014127026833\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Carbellon, Instance Of, antacid) -> Carbellon (10815ms)\nWhat are antacids?\tMintox\t-12.841014127026833\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mintox, Instance Of, antacid) -> Mintox (10815ms)\nWhat are antacids?\tQuickease\t-12.842854329034886\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Quickease, Instance Of, antacid) -> Quickease (10841ms)\nWhat are antacids?\tAlmagel\t-12.842854329034886\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Almagel, Instance Of, antacid) -> Almagel (10841ms)\nWhat are antacids?\tRemegel\t-12.842854329034886\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Remegel, Instance Of, antacid) -> Remegel (10815ms)\nWhat are antacids?\tXantac\t-12.842854329034886\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Xantac, Instance Of, antacid) -> Xantac (10815ms)\nWhat are antacids?\tMgtrisilicate\t-12.844708157341046\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Mgtrisilicate, is found in, some antacids) -> Mgtrisilicate (10841ms)\nWhat are antacids?\tpregnancy\t-12.844825334031318\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, can be utilised in, pregnancy) -> pregnancy (9348ms)\nWhat are antacids?\trelief\t-12.847477945936904\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is often marketed as, relief) -> relief (9348ms)\nWhat are antacids?\tthe production\t-12.850483210178194\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are known to reduce, the production) -> the production (9397ms)\nWhat are antacids?\tAciphex\t-12.851071026107736\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Aciphex, Instance Of, antacid) -> Aciphex (10841ms)\nWhat are antacids?\tthe most popular and popular forms\t-12.86540696871094\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are 1 with, the most popular and popular forms) -> the most popular and popular forms (9398ms)\nWhat are antacids?\tPrelief\t-12.868899468274707\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Prelief, is available in, the antacid section) -> Prelief (10841ms)\nWhat are antacids?\tthe foods\t-12.87173498357904\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the foods, are taking, antacids) -> the foods (9397ms)\nWhat are antacids?\tthree basic ingredients\t-12.876630689054629\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, make, $x) -> (Antacids, are made with, three basic ingredients) -> three basic ingredients (9398ms)\nWhat are antacids?\tformer top-level athletes\t-12.877034694862887\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (antacids, is reduced among, former top-level athletes) -> former top-level athletes (9398ms)\nWhat are antacids?\tbelly acid reflux\t-12.878911184358953\tWhat are antacids? -> what be [ antacid ] ? -> what be the definition of antacid ? -> $x: ($x, be the definition of, antacid) -> $x: ($x, will, antacid) -> (belly acid reflux, will likely be given together with, antacids) -> belly acid reflux (10841ms)\nWhat are antacids?\tfecal los\t-12.90294837282053\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, make, $x) -> (Antacids, make, fecal los) -> fecal los (9398ms)\nWhat are antacids?\tthe other side\t-12.903839943592434\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the other side, can be used for, antacids) -> the other side (9499ms)\nWhat are antacids?\tsodium\t-12.906654657217542\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, can be high in, sodium) -> sodium (9499ms)\nWhat are antacids?\tinflammation\t-12.919097993067036\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, can be used for, inflammation) -> inflammation (9499ms)\nWhat are antacids?\tThe medical ?acid cure reflux ?\t-12.930837605628804\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (The medical ?acid cure reflux ?, is usually, antacids) -> The medical ?acid cure reflux ? (9499ms)\nWhat are antacids?\tthe number 2 selling drug\t-12.954376713331488\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, the number 2 selling drug) -> the number 2 selling drug (9499ms)\nWhat are antacids?\tthe past\t-12.95481857576726\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are a thing of, the past) -> the past (10841ms)\nWhat are antacids?\tthe user\t-12.955384747575776\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the user, is also taking, antacid) -> the user (10841ms)\nWhat are antacids?\tRiopan Plus\t-12.966591082976203\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Riopan Plus, Instance Of, antacid) -> Riopan Plus (10860ms)\nWhat are antacids?\taluminum or magnesium in it\t-12.9674954735903\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (an antacid, has, aluminum or magnesium in it) -> aluminum or magnesium in it (10860ms)\nWhat are antacids?\tthe administration\t-12.98894518262551\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, were used concomitantly with, the administration) -> the administration (10860ms)\nWhat are antacids?\tthe stomach\t-12.991572296214134\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are emptied from, the stomach) -> the stomach (10860ms)\nWhat are antacids?\tlots of calcium\t-13.014337958403907\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (the antacids, have, lots of calcium) -> lots of calcium (10860ms)\nWhat are antacids?\taluminum or magnesium\t-13.022812118503538\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (an antacid, has, aluminum or magnesium) -> aluminum or magnesium (10880ms)\nWhat are antacids?\tCHOOZ\t-13.03007156455227\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (CHOOZ, Instance Of, antacid) -> CHOOZ (10880ms)\nWhat are antacids?\tnatural health\t-13.037512203109491\tWhat are antacids? -> what be [ antacid ] ? -> what be the definition of antacid ? -> $x: ($x, be the definition of, antacid) -> $x: ($x, will, antacid) -> (natural health, will cure, your problem and antacids) -> natural health (10880ms)\nWhat are antacids?\tthe counter\t-13.040259939406685\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are available over, the counter) -> the counter (10880ms)\nWhat are antacids?\tfolic acid absorption\t-13.047297388365202\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (antacids, may reduce, folic acid absorption) -> folic acid absorption (10880ms)\nWhat are antacids?\tulcers\t-13.055409053227356\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (ulcers, is, antacids) -> ulcers (10880ms)\nWhat are antacids?\teffective\t-13.056293239628452\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (effective, are, antacids) -> effective (10880ms)\nWhat are antacids?\tpain and help ulcers heal\t-13.069681154037966\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (Antacids, can reduce, pain and help ulcers heal) -> pain and help ulcers heal (10939ms)\nWhat are antacids?\tvalue\t-13.071091324941191\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are of, value) -> value (10939ms)\nWhat are antacids?\tdrugs\t-13.091661169992971\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, drugs) -> drugs (10939ms)\nWhat are antacids?\tthe symptoms\t-13.094521819018546\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the symptoms, have been treated with, antacids) -> the symptoms (10939ms)\nWhat are antacids?\tSprycel drug levels\t-13.113602087997748\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, decrease, $x) -> (Antacids, may decrease, Sprycel drug levels) -> Sprycel drug levels (10939ms)\nWhat are antacids?\tcounteract the acid\t-13.116280836435628\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, may be needed to, counteract the acid) -> counteract the acid (10939ms)\nWhat are antacids?\tabsorption\t-13.116604213950046\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (absorption, is affected by, antacids) -> absorption (10939ms)\nWhat are antacids?\tstomach acidity\t-13.121685993990617\tWhat are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (An antacid, is given to reduce, stomach acidity) -> stomach acidity (10939ms)\nIn what state is Dulles located?\tIran\t-10.31039751250819\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> where be dulle state ? -> $x: (dulle state, be in, $x) -> (State Dulles, was destroying democracy in, Iran) -> Iran (2818ms)\nIn what state is Dulles located?\tWashington DC\t-10.503591815771886\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington DC, Instance Of, state) (Dulles, is located in, Washington) -> Washington DC (3824ms)\nIn what state is Dulles located?\tWashington D.C.\t-10.55767041813808\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington D.C., Instance Of, state) (Dulles, is located in, Washington) -> Washington D.C. (3824ms)\nIn what state is Dulles located?\tDC\t-10.698224602749136\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (DC, Instance Of, state) (dulles international airport, is a building located in the city, dc) -> DC (3824ms)\nIn what state is Dulles located?\tNorthern Virginia\t-10.728117788211485\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Northern Virginia, Instance Of, state) (Dulles International airports, are located in, Northern Virginia) -> Northern Virginia (3823ms)\nIn what state is Dulles located?\tWashington D.C\t-10.777745026847132\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington D.C, Instance Of, state) (Dulles, is located in, Washington) -> Washington D.C (4282ms)\nIn what state is Dulles located?\tMark D. Lerner\t-10.83084685034004\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> (Dulles Town Center, stated, Mark D. Lerner) -> Mark D. Lerner (4733ms)\nIn what state is Dulles located?\tWashington, DC\t-10.958610884017679\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington, DC, Instance Of, state) (Dulles, is located in, Washington) -> Washington, DC (4468ms)\nIn what state is Dulles located?\tWashington\t-10.962489033395567\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington, Instance Of, state) (Dulles, is located in, Washington) -> Washington (4468ms)\nIn what state is Dulles located?\tturn\t-11.122365538831962\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> (Secretary Dulles, stated in, turn) -> turn (4733ms)\nIn what state is Dulles located?\tDwight D. Eisenhower\t-11.160863687179074\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (dwight david eisenhower sec. of state was john foster dulles, Subject, Dwight D. Eisenhower) -> Dwight D. Eisenhower (12428ms)\nIn what state is Dulles located?\ttouch\t-11.269182418545917\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> where be dulle state ? -> $x: (dulle state, be in, $x) -> (State John Foster Dulles ], were in, touch) -> touch (2818ms)\nIn what state is Dulles located?\tUnited States of America\t-11.405907422805868\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (The papers of John Foster Dulles, Subjects, United States of America) -> United States of America (12428ms)\nIn what state is Dulles located?\tEastern Time Zone\t-11.405907422805868\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, location, dulle) -> (Eastern Time Zone, Locations in this time zone, Washington Dulles Airport Marriott) -> Eastern Time Zone (12614ms)\nIn what state is Dulles located?\tjohn foster dulles sec. of state under dwight david eisenhower\t-11.446748045410333\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, subject, dulle) -> (john foster dulles sec. of state under dwight david eisenhower, Subject, John Foster Dulles) -> john foster dulles sec. of state under dwight david eisenhower (12340ms)\nIn what state is Dulles located?\tJohn Foster Dulles\t-11.446748045410333\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (john foster dulles sec. of state under dwight david eisenhower, Subject, John Foster Dulles) -> John Foster Dulles (12428ms)\nIn what state is Dulles located?\tMao Zedong\t-11.488358330399828\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (mao zedong opposed by john foster dulles, Subject, Mao Zedong) -> Mao Zedong (12428ms)\nIn what state is Dulles located?\tJoseph Stalin\t-11.495654937477537\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (stalin studied by john foster dulles, Subject, Joseph Stalin) -> Joseph Stalin (12429ms)\nIn what state is Dulles located?\tWalter Capps\t-11.541854853845326\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, place of death, dulle) -> (Walter Capps, Place of death, Dulles) -> Walter Capps (12298ms)\nIn what state is Dulles located?\tVirginia\t-11.633667030256328\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which us state have dulle locate ? -> $x: ($x, instance of, us state) (dulle, locate, $x) -> (Virginia, Instance Of, U.S. state) (Dulles International Airport, is located in, Virginia) -> Virginia (4638ms)\nIn what state is Dulles located?\tjohn foster dulles opposed mao zedong\t-11.661161314083778\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, subject, dulle) -> (john foster dulles opposed mao zedong, Subject, John Foster Dulles) -> john foster dulles opposed mao zedong (12339ms)\nIn what state is Dulles located?\tGamal Abdel Nasser\t-11.688650194682937\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (gamal abdel nasser antagonized john foster dulles, Subject, Gamal Abdel Nasser) -> Gamal Abdel Nasser (12428ms)\nIn what state is Dulles located?\tjohn foster dulles studied work of stalin\t-11.688650194682937\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, subject, dulle) -> (john foster dulles studied work of stalin, Subject, John Foster Dulles) -> john foster dulles studied work of stalin (12340ms)\nIn what state is Dulles located?\tjohn foster dulles negotiated with gamal abdel nasser\t-11.712212092339358\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, subject, dulle) -> (john foster dulles negotiated with gamal abdel nasser, Subject, John Foster Dulles) -> john foster dulles negotiated with gamal abdel nasser (12340ms)\nIn what state is Dulles located?\tNikita Sergeevich Khrushchev\t-11.712212092339358\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (nikita sergeyevich khrushchev met john foster dulles, Subject, Nikita Sergeevich Khrushchev) -> Nikita Sergeevich Khrushchev (12511ms)\nIn what state is Dulles located?\tV-1 and V-2 Intelligence\t-11.748374001102423\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, entity involve, dulle) -> (V-1 and V-2 Intelligence, entity involved, Allen Dulles) -> V-1 and V-2 Intelligence (12299ms)\nIn what state is Dulles located?\tthe nation\t-11.926185287600978\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> where be dulle state ? -> $x: (dulle state, be in, $x) -> (State John Foster Dulles, was the dominant figure in, the nation) -> the nation (2818ms)\nIn what state is Dulles located?\ta Wish Foundation\t-12.41935543575469\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (a Wish Foundation, will be held in, Dulles) -> a Wish Foundation (12720ms)\nIn what state is Dulles located?\tArc Second\t-12.451978091007181\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (Arc Second, is a privately held company located in, Dulles) -> Arc Second (12720ms)\nIn what state is Dulles located?\tMay 21-22 , 2005 event\t-12.617850779454125\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (May 21-22 , 2005 event, will be held in, Dulles) -> May 21-22 , 2005 event (12720ms)\nIn what state is Dulles located?\tSpring 2011 New member initiation\t-12.66338673788821\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (Spring 2011 New member initiation, will be held in, Dulles 168) -> Spring 2011 New member initiation (12720ms)\nIn what state is Dulles located?\tAugust 8 , 2010 Brickfair\t-12.722387311682326\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (August 8 , 2010 Brickfair, was held in, the Dulles Expo Center) -> August 8 , 2010 Brickfair (12721ms)\nIn what state is Dulles located?\tSterling\t-12.76527241522042\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Sterling, Instance Of, state insurance company) (The SpringHill Suites Dulles Airport, is located in, Sterling) -> Sterling (5826ms)\nIn what state is Dulles located?\tLLC\t-12.787357185543724\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, take place in, dulle) -> (LLC, will take place in, Dulles) -> LLC (12614ms)\nIn what state is Dulles located?\tStatesmen\t-12.879821300118909\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (The papers of John Foster Dulles, Subjects, Statesmen) -> Statesmen (12511ms)\nIn what state is Dulles located?\t?Virginia\t-12.953119831144555\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, modelling, state) (dulle, locate locate, $x) -> (?Virginia, has become a model for, other states) (Dulles International Airport, is located in, Virginia) -> ?Virginia (5827ms)\nIn what state is Dulles located?\tdc\t-12.959383670508004\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: (state, be a state or province located in the geopolitical location, $x) (dulle, locate locate, $x) -> (STATES, is a state or province located in the geopolitical location, dc) (dulles international, is a building located in the city, dc) -> dc (7921ms)\nIn what state is Dulles located?\tevent\t-13.014919259725708\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (event, will be held in, Dulles) -> event (12720ms)\nIn what state is Dulles located?\tdiplomat\t-13.06141587209984\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, discipline, $x) -> (John Foster Dulles, Disciplines, diplomat) -> diplomat (12534ms)\nIn what state is Dulles located?\tpolitician\t-13.06141587209984\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, discipline, $x) -> (John Foster Dulles, Disciplines, politician) -> politician (12534ms)\nIn what state is Dulles located?\tNewHomeSource\t-13.094074024646956\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, start in, dulle) -> (NewHomeSource, get started in, your Dulles) -> NewHomeSource (12994ms)\nIn what state is Dulles located?\tthe Vatican\t-13.176806820348586\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, part of, dulle) -> (the Vatican, agreed to become part of, Dulles) -> the Vatican (12339ms)\nIn what state is Dulles located?\tthe members\t-13.513556370946608\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (the members, are held in, Dulles Hall) -> the members (12941ms)\nIn what state is Dulles located?\tan organizer\t-13.519073915935165\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, have be mention, $x) -> (John Foster Dulles, has been mentioned as, an organizer) -> an organizer (14106ms)\nIn what state is Dulles located?\tmilitary satellites\t-13.624666077887843\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, launch, $x) -> (Dulles, has been launching, military satellites) -> military satellites (12994ms)\nIn what state is Dulles located?\tDie Harder\t-13.652449608582161\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (Die Harder, is set primarily at, Dulles Airport) -> Die Harder (12941ms)\nIn what state is Dulles located?\tNetZero\t-13.665217297163087\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (The Dulles-based firm, is rapidly losing customers to, NetZero) -> NetZero (12511ms)\nIn what state is Dulles located?\tTeyon Ware\t-13.669477836344795\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, host, $x) -> (2010 Dulles Mat Club, will be hosting, Teyon Ware) -> Teyon Ware (12299ms)\nIn what state is Dulles located?\tTravis Friday\t-13.674181870403014\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, host, $x) -> (Dulles, will host, Travis Friday) -> Travis Friday (12299ms)\nIn what state is Dulles located?\t59 degrees\t-13.674754905788475\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (59 degrees, was set at, Washington Dulles DC) -> 59 degrees (12942ms)\nIn what state is Dulles located?\tSIPNOC US 2012\t-13.675169088012918\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, will be hold at, dulle) -> (SIPNOC US 2012, will be held at, the Hyatt Dulles Hotel) -> SIPNOC US 2012 (12298ms)\nIn what state is Dulles located?\tdrug companies\t-13.678289490032036\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, modelling, state) (dulle, locate locate, $x) -> (drug companies, were modeled by, other states) (Hilton Dulles-North/Loudoun VA hotel, is located near, companies) -> drug companies (5996ms)\nIn what state is Dulles located?\tthe Silver Line\t-13.691450806573403\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, have be discuss, $x) -> (the Dulles Toll Road, has been discussed for, the Silver Line) -> the Silver Line (13376ms)\nIn what state is Dulles located?\tA record\t-13.819534319016018\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (A record, was set at, Dulles Airport) -> A record (12994ms)\nIn what state is Dulles located?\t55 degrees\t-13.837710145939743\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (55 degrees, was set at, Washington Dulles DC) -> 55 degrees (12994ms)\nIn what state is Dulles located?\tSterling CO\t-13.890076165678229\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> what state be dulle locate locate in ? -> $x: ($x, instance of, state) (dulle, locate locate in, $x) -> (Sterling CO, Instance Of, comely and resplendent state) (The SpringHill Suites Dulles Airport, is located in, Sterling) -> Sterling CO (13327ms)\nIn what state is Dulles located?\tthe AIGA event\t-13.914212285359731\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, host, $x) -> (the Dulles design studio, is hosting a booth at, the AIGA event) -> the AIGA event (12299ms)\nIn what state is Dulles located?\tNew records\t-13.93948579799417\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (New records, were also set at, Dulles International Airport) -> New records (12994ms)\nIn what state is Dulles located?\tA ceremony\t-13.967285573984872\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (A ceremony, was held at, Dulles International Airport) -> A ceremony (12614ms)\nIn what state is Dulles located?\tseven seniors\t-13.974014090138354\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (Dulles, Lost, seven seniors) -> seven seniors (12511ms)\nIn what state is Dulles located?\tthree games\t-14.0490070623997\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (Dulles, lost just, three games) -> three games (12511ms)\nIn what state is Dulles located?\tindependent website\t-14.053422443613812\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, launch, $x) -> (inn suites dulles airport hotel, launches, independent website) -> independent website (12994ms)\nIn what state is Dulles located?\tlast year\t-14.243213492768188\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (every Dulles team, loses a lot from, last year) -> last year (12511ms)\nIn what state is Dulles located?\tany other weapon\t-14.259289118105183\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, part of, dulle) -> (any other weapon, had become part of, Dulles) -> any other weapon (12339ms)\nIn what state is Dulles located?\tThe MARKETPLACE\t-14.276010137286097\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (The MARKETPLACE, held at, the Dulles Town Center) -> The MARKETPLACE (12614ms)\nIn what state is Dulles located?\tOpen AIM\t-14.276114510410492\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, launch, $x) -> (The Dulles , Va. , company, has launched, Open AIM) -> Open AIM (13376ms)\nIn what state is Dulles located?\tthe Titanic.\t-14.296515629274444\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (W. C. Dulles, lost his life on, the Titanic.) -> the Titanic. (12511ms)\nIn what state is Dulles located?\tAn Agency Scoping meeting\t-14.319103132527218\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (An Agency Scoping meeting, held at, the Dulles Marriott) -> An Agency Scoping meeting (12614ms)\nIn what state is Dulles located?\thumor\t-14.323340361443588\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, sense, $x) -> (Dulles, had a good sense of, humor) -> humor (13376ms)\nIn what state is Dulles located?\tfive different models\t-14.350594469889527\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, outline, $x) -> (Introduction Avery Dulles, outlines, five different models) -> five different models (13376ms)\nIn what state is Dulles located?\ta US policy\t-14.417694308215152\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, articulate, $x) -> (Dulles, first articulated, a US policy) -> a US policy (13590ms)\nIn what state is Dulles located?\tI-66\t-14.713771409891585\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state have dulle locate ? -> $x: ($x, instance of, state) (dulle, locate, $x) -> $x: ($x, instance of, state) (dulle, conveniently located, $x) -> (I-66, Instance Of, federal, state and regional highway) (Wyndham Dulles Airport, is conveniently located between, I-66) -> I-66 (14821ms)\nIn what state is Dulles located?\tsterling\t-14.753283508635745\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> what state be dulle locate locate in ? -> $x: ($x, instance of, state) (dulle, locate locate in, $x) -> (sterling, Instance Of, united state using noble metal) (The SpringHill Suites Dulles Airport, is located in, Sterling) -> sterling (13376ms)\nIn what state is Dulles located?\tThe event\t-14.811226979933966\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, will be hold at, dulle) -> (The event, will be held at, the Dulles Sportsplex) -> The event (12298ms)\nIn what state is Dulles located?\tevents\t-14.81768297503484\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, host, $x) -> (Dulles Town Center, will host a variety of, events) -> events (12298ms)\nIn what state is Dulles located?\tcompanies\t-14.841886744715598\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, modelling, state) (dulle, locate locate, $x) -> (companies, is considered a model for, other states) (Hilton Dulles-North/Loudoun VA hotel, is located near, companies) -> companies (6067ms)\nIn what state is Dulles located?\tSwitzerland\t-14.97442253502609\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, detailed, $x) -> (Dulles, reports these details from, Switzerland) -> Switzerland (13399ms)\nIn what state is Dulles located?\tThe movie\t-15.066895270479268\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, start in, dulle) -> (The movie, started in, Dulles Airport) -> The movie (13399ms)\nIn what state is Dulles located?\twest\t-15.111132281639744\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, part of, dulle) -> (west, includes part of, Dulles International Airport) -> west (12339ms)\nIn what state is Dulles located?\tHerndon\t-15.158456679420844\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, part of, dulle) -> (Herndon, is part of, the Dulles Technology Corridor) -> Herndon (12340ms)\nIn what state is Dulles located?\tthe event\t-15.173526229162322\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (the event, was held at, Dulles Expo Center) -> the event (13463ms)\nIn what state is Dulles located?\tCompanies\t-15.195186046321046\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, be a by, state) (dulle, locate locate, $x) -> (Companies, has been awarded a contract by, the State) (Hilton Dulles-North/Loudoun VA hotel, is located near, companies) -> Companies (7367ms)\nIn what state is Dulles located?\tthe scene\t-15.20356873551016\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (the scene, is set in, Dulles International Airport) -> the scene (13462ms)\nIn what state is Dulles located?\tChantilly\t-15.299424524436883\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, take place at, dulle) -> (Chantilly, will take place at, the Dulles Expo Center) -> Chantilly (12258ms)\nIn what state is Dulles located?\tWilsdorf\t-15.360823384185942\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (Wilsdorf, set, the design Foster Dulles) -> Wilsdorf (13555ms)\nIn what state is Dulles located?\t23 above\t-15.45026056112324\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, note, $x) -> (Dulles, note, 23 above) -> 23 above (13555ms)\nIn what state is Dulles located?\tThe following interview\t-15.517655078132776\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, take place in, dulle) -> (The following interview, took place in, Dulles) -> The following interview (13555ms)\nIn what state is Dulles located?\tThe meeting\t-15.565783037567023\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, will be hold at, dulle) -> (The meeting, will be held at, the Crowne Plaza Dulles Airport) -> The meeting (12534ms)\nIn what state is Dulles located?\tthe site\t-15.59662537166694\tIn what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, be a by, state) (dulle, locate locate, $x) -> (the site, is a text by, Ohio State Univ.) (the Dulles Airport corridor, is located on, site) -> the site (7367ms)\nIn what state is Dulles located?\tthe puck\t-15.657853655913854\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (Kurtis Dulle, lost, the puck) -> the puck (12534ms)\nIn what state is Dulles located?\tthe essence\t-15.685014644100287\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, articulate, $x) -> (State John Foster Dulles, articulated, the essence) -> the essence (13590ms)\nIn what state is Dulles located?\tThe tournament\t-15.736314045187164\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (The tournament, was held at, the Dulles office) -> The tournament (13555ms)\nIn what state is Dulles located?\tthe club\t-15.748393360269569\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (the club, was held up at, Dulles International Airport) -> the club (13555ms)\nIn what state is Dulles located?\tthe conferences\t-16.077948528774826\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (the conferences, held this February at, the Hyatt Dulles hotel) -> the conferences (13590ms)\nIn what state is Dulles located?\tthe four purposes\t-16.091020645774947\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, outline, $x) -> (Dulles, outlined, the four purposes) -> the four purposes (13590ms)\nIn what state is Dulles located?\tthe doctrine\t-16.152586800720385\tIn what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, enunciate, $x) -> (Dulles, also enunciated, the doctrine) -> the doctrine (13590ms)\nWho was Abraham Lincoln?\tgood president\t-1.4531390592649704\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, good president) -> good president (8146ms)\nWho was Abraham Lincoln?\tcalculating politician\t-1.5388853083941172\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, calculating politician) -> calculating politician (8146ms)\nWho was Abraham Lincoln?\tclassical liberal\t-1.6308871539686192\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, classical liberal) -> classical liberal (8147ms)\nWho was Abraham Lincoln?\tcountry lawyer\t-1.6460800577512056\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, country lawyer) -> country lawyer (8146ms)\nWho was Abraham Lincoln?\tsuccessful president\t-1.6510044297822404\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, successful president) -> successful president (8146ms)\nWho was Abraham Lincoln?\tstate congressman\t-1.689612184530946\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, state congressman) -> state congressman (8319ms)\nWho was Abraham Lincoln?\tfamous president\t-1.689612184530946\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous president) -> famous president (8147ms)\nWho was Abraham Lincoln?\tcredible person\t-1.7078911455729124\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, credible person) -> credible person (8319ms)\nWho was Abraham Lincoln?\tcase study\t-1.7119153669749063\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, case study) -> case study (8319ms)\nWho was Abraham Lincoln?\tremarkable president\t-1.739989828523818\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, remarkable president) -> remarkable president (8320ms)\nWho was Abraham Lincoln?\tbrilliant statesman\t-1.7403815205198812\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, brilliant statesman) -> brilliant statesman (8320ms)\nWho was Abraham Lincoln?\tstrong president\t-1.7409575381611497\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, strong president) -> strong president (8320ms)\nWho was Abraham Lincoln?\tpoor president\t-1.7436456204870714\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, poor president) -> poor president (8460ms)\nWho was Abraham Lincoln?\tgifted politician\t-1.745473517081548\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, gifted politician) -> gifted politician (8460ms)\nWho was Abraham Lincoln?\tgenerous person\t-1.7476547602653458\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, generous person) -> generous person (8460ms)\nWho was Abraham Lincoln?\tpolarizing figure\t-1.748262149694099\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, polarizing figure) -> polarizing figure (8460ms)\nWho was Abraham Lincoln?\thard worker\t-1.7534671514913516\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hard worker) -> hard worker (8460ms)\nWho was Abraham Lincoln?\ttrue statesman\t-1.7535596329959136\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, true statesman) -> true statesman (8460ms)\nWho was Abraham Lincoln?\trespected politician\t-1.7542474173030762\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, respected politician) -> respected politician (8478ms)\nWho was Abraham Lincoln?\tproper noun\t-1.7561206776615963\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, proper noun) -> proper noun (8478ms)\nWho was Abraham Lincoln?\tshoe maker\t-1.757537630805424\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, shoe maker) -> shoe maker (8478ms)\nWho was Abraham Lincoln?\tpoor farmer\t-1.7594144420163897\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln's, Instance Of, poor farmer) -> poor farmer (8478ms)\nWho was Abraham Lincoln?\toutstanding person\t-1.761924582141888\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, outstanding person) -> outstanding person (8501ms)\nWho was Abraham Lincoln?\tstaunch patriot\t-1.761924582141888\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, staunch patriot) -> staunch patriot (8478ms)\nWho was Abraham Lincoln?\tepisodic film\t-1.761924582141888\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, episodic film) -> episodic film (8477ms)\nWho was Abraham Lincoln?\taccomplished attorney\t-1.7636654338234565\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, accomplished attorney) -> accomplished attorney (8501ms)\nWho was Abraham Lincoln?\tdistinguished figure\t-1.7637834589127492\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, distinguished figure) -> distinguished figure (8501ms)\nWho was Abraham Lincoln?\tlegendary figure\t-1.7656297771630176\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, legendary figure) -> legendary figure (8501ms)\nWho was Abraham Lincoln?\tmultifaceted personality\t-1.7711741764725266\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, multifaceted personality) -> multifaceted personality (8501ms)\nWho was Abraham Lincoln?\tinformative book\t-1.7715210348197283\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (ABRAHAM LINCOLN, Instance Of, informative book) -> informative book (8501ms)\nWho was Abraham Lincoln?\twhite leader\t-1.775633802004088\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, white leader) -> white leader (8524ms)\nWho was Abraham Lincoln?\tman\t-1.8336905138666093\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man) -> man (8524ms)\nWho was Abraham Lincoln?\tcat person\t-2.1413806257598056\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, cat person) -> cat person (8524ms)\nWho was Abraham Lincoln?\tsmart man\t-2.1470149870108117\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, smart man) -> smart man (8524ms)\nWho was Abraham Lincoln?\tgood old man\t-2.2555237552890413\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham lincoln, Instance Of, good old man) -> good old man (8524ms)\nWho was Abraham Lincoln?\tamazing man\t-2.291286248522742\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, amazing man) -> amazing man (8547ms)\nWho was Abraham Lincoln?\tUS president\t-2.3000872243751496\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, US president) -> US president (8546ms)\nWho was Abraham Lincoln?\tmoderate Republican\t-2.3170014673106523\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, moderate Republican) -> moderate Republican (8547ms)\nWho was Abraham Lincoln?\ttrue American\t-2.3333903998423318\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, true American) -> true American (8547ms)\nWho was Abraham Lincoln?\tradical Republican\t-2.3334283842804697\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, radical Republican) -> radical Republican (8547ms)\nWho was Abraham Lincoln?\taverage man\t-2.3358535650213432\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, average man) -> average man (8547ms)\nWho was Abraham Lincoln?\tsasquatch/president\t-2.343316106986041\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, sasquatch/president) -> sasquatch/president (8564ms)\nWho was Abraham Lincoln?\tCaptain of another company\t-2.3648564173313145\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, Captain of another company) -> Captain of another company (8564ms)\nWho was Abraham Lincoln?\thated man\t-2.368594982736123\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hated man) -> hated man (8564ms)\nWho was Abraham Lincoln?\thardworking man\t-2.3688453037379817\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hardworking man) -> hardworking man (8564ms)\nWho was Abraham Lincoln?\tprofoundly religious leader\t-2.375712696869015\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, profoundly religious leader) -> profoundly religious leader (8564ms)\nWho was Abraham Lincoln?\twork-a-day lawyer\t-2.40287534828422\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, work-a-day lawyer) -> work-a-day lawyer (8603ms)\nWho was Abraham Lincoln?\tnon-religious man\t-2.40287534828422\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, non-religious man) -> non-religious man (8564ms)\nWho was Abraham Lincoln?\tfamous American patriot\t-2.405628785887621\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous American patriot) -> famous American patriot (8603ms)\nWho was Abraham Lincoln?\tintensely partisan politician\t-2.4206066523041567\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, intensely partisan politician) -> intensely partisan politician (8603ms)\nWho was Abraham Lincoln?\tman of principle\t-2.4225008031145334\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of principle) -> man of principle (8603ms)\nWho was Abraham Lincoln?\tgentle man\t-2.423106431212612\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, gentle man) -> gentle man (8603ms)\nWho was Abraham Lincoln?\tcurious man\t-2.4265018771749904\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, curious man) -> curious man (8603ms)\nWho was Abraham Lincoln?\tbig man\t-2.4265815746301893\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, big man) -> big man (8622ms)\nWho was Abraham Lincoln?\tfamous man\t-2.426755925530072\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous man) -> famous man (8622ms)\nWho was Abraham Lincoln?\tcourageous man\t-2.43029379046002\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, courageous man) -> courageous man (8622ms)\nWho was Abraham Lincoln?\tperson of great interest\t-2.4330472280634208\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, person of great interest) -> person of great interest (8622ms)\nWho was Abraham Lincoln?\tman of dignity\t-2.4337210948127206\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of dignity) -> man of dignity (8622ms)\nWho was Abraham Lincoln?\tcrucial american figure\t-2.4480250944799566\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, crucial american figure) -> crucial american figure (8650ms)\nWho was Abraham Lincoln?\ttraditional american icon\t-2.4480250944799566\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, traditional american icon) -> traditional american icon (8622ms)\nWho was Abraham Lincoln?\tman of rugged simplicity\t-2.4505227413227635\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of rugged simplicity) -> man of rugged simplicity (8649ms)\nWho was Abraham Lincoln?\tINOVATION genuine leader\t-2.4505227413227635\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, INOVATION genuine leader) -> INOVATION genuine leader (8649ms)\nWho was Abraham Lincoln?\trich trial/corporate lawyer\t-2.4505227413227635\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, rich trial/corporate lawyer) -> rich trial/corporate lawyer (8649ms)\nWho was Abraham Lincoln?\tman Walt Whitman\t-2.4505227413227635\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man Walt Whitman) -> man Walt Whitman (8651ms)\nWho was Abraham Lincoln?\tman of great resolve\t-2.4505227413227635\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of great resolve) -> man of great resolve (8650ms)\nWho was Abraham Lincoln?\tworld famous revolutionary\t-2.453508782424837\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, world famous revolutionary) -> world famous revolutionary (8668ms)\nWho was Abraham Lincoln?\tman of great character\t-2.4640072205388304\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of great character) -> man of great character (8668ms)\nWho was Abraham Lincoln?\tman of moral courage\t-2.464231962410663\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of moral courage) -> man of moral courage (8668ms)\nWho was Abraham Lincoln?\tmember of the Board\t-2.479729038317715\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, member of the Board) -> member of the Board (8668ms)\nWho was Abraham Lincoln?\ttransformational and inspirational leader\t-2.4895069719906626\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, transformational and inspirational leader) -> transformational and inspirational leader (8668ms)\nWho was Abraham Lincoln?\tman of the Border South\t-2.4895069719906626\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of the Border South) -> man of the Border South (8668ms)\nWho was Abraham Lincoln?\tlikeable, very real person\t-2.4895069719906626\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, likeable, very real person) -> likeable, very real person (8687ms)\nWho was Abraham Lincoln?\tgreat public inspirational speaker\t-2.4895069719906626\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great public inspirational speaker) -> great public inspirational speaker (8687ms)\nWho was Abraham Lincoln?\tthird party candidate of sort\t-2.4895069719906626\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, third party candidate of sort) -> third party candidate of sort (8687ms)\nWho was Abraham Lincoln?\tgreat and kindhearted Christian man\t-2.521993830880578\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great and kindhearted Christian man) -> great and kindhearted Christian man (8687ms)\nWho was Abraham Lincoln?\thistorical and literary character\t-2.5443438563422625\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, historical and literary character) -> historical and literary character (8687ms)\nWho was Abraham Lincoln?\tman of great insight, intelligence and wit\t-2.5494827114797376\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of great insight, intelligence and wit) -> man of great insight, intelligence and wit (8687ms)\nWho was Abraham Lincoln?\tname\t-2.628622151447157\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, name) -> name (8716ms)\nWho was Abraham Lincoln?\tpresident\t-2.698571389242592\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, president) -> president (8716ms)\nWho was Abraham Lincoln?\tAmerican president\t-2.720513370453024\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, American president) -> American president (8717ms)\nWho was Abraham Lincoln?\tpersonality\t-2.7456903690131274\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, personality) -> personality (8716ms)\nWho was Abraham Lincoln?\tleader\t-2.7652394504964244\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, leader) -> leader (8740ms)\nWho was Abraham Lincoln?\tguest\t-2.782366904321326\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, guest) -> guest (8740ms)\nWho was Abraham Lincoln?\trepublican\t-2.7914045420450107\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, republican) -> republican (8740ms)\nWho was Abraham Lincoln?\t2-volume biography of Abraham Lincoln\t-2.8217005945447093\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, 2-volume biography of Abraham Lincoln) -> 2-volume biography of Abraham Lincoln (8740ms)\nWho was Abraham Lincoln?\tadvocate\t-2.8946596216147924\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, advocate) -> advocate (8755ms)\nWho was Abraham Lincoln?\tvisitor\t-2.9047137988590306\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, visitor) -> visitor (8755ms)\nWho was Abraham Lincoln?\tPresident of the 19th century\t-2.908332218251151\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, President of the 19th century) -> President of the 19th century (8755ms)\nWho was Abraham Lincoln?\tpioneer\t-2.967741065804428\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, pioneer) -> pioneer (8813ms)\nWho was Abraham Lincoln?\tmodel\t-3.0282287097938516\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, model) -> model (8972ms)\nWho was Abraham Lincoln?\tplayer\t-3.0317834575134386\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, player) -> player (8972ms)\nWho was Abraham Lincoln?\tAmerican citizen\t-3.040401409661717\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, American citizen) -> American citizen (8972ms)\nWho was Abraham Lincoln?\tmind\t-3.093191263389513\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, mind) -> mind (8987ms)\nWho was Abraham Lincoln?\tbastard\t-3.0966709296395107\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, bastard) -> bastard (8987ms)\nWho was Abraham Lincoln?\thealer\t-3.1004095801378577\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, healer) -> healer (8987ms)\nWho was Abraham Lincoln?\tgenious\t-3.1022566583220295\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, genious) -> genious (8988ms)\nWho was Abraham Lincoln?\tprofessional\t-3.1140102985985463\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, professional) -> professional (8987ms)\nWho was Abraham Lincoln?\tapplication\t-3.1328076411980597\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (ABRAHAM LINCOLN, Instance Of, application) -> application (8987ms)\nWho was Abraham Lincoln?\tNational Historical Park\t-3.4541184276637744\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, np classification, $x) -> (Abraham Lincoln Birthplace National Historical Park, NPS Classification, National Historical Park) -> National Historical Park (8997ms)\nWho was Abraham Lincoln?\tthrill\t-5.609573373509696\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, be the kind of, $x) -> (- Abraham Lincoln, is the kind of, thrill) -> thrill (9128ms)\nWho was Abraham Lincoln?\tClinton\t-5.989657125460536\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, be a by, $x) -> (abraham lincoln, is a U.S. politician endorsed by the U.S. politician, Clinton) -> Clinton (9127ms)\nWho was Abraham Lincoln?\tachievers\t-6.065879182086029\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, modelling, $x) -> (Abraham Lincoln, is a model for, achievers) -> achievers (9127ms)\nWho was Abraham Lincoln?\treinstatement\t-6.516749155042682\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, modelling, $x) -> (Abraham Lincoln, offered a model for, reinstatement) -> reinstatement (9127ms)\nWho was Abraham Lincoln?\tthe citizens\t-6.803331705082824\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, be a by, $x) -> (Abraham Lincoln, was given a reception by, the citizens) -> the citizens (9127ms)\nWho was Abraham Lincoln?\tPresident\t-7.349455722111308\tWho was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, take office as, $x) -> (Abraham Lincoln, took office as, President) -> President (9137ms)\nWho was Abraham Lincoln?\tAbraham Lincoln\t-7.630814597407539\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Named after, Abraham Lincoln) -> Abraham Lincoln (12182ms)\nWho was Abraham Lincoln?\tCharles Darwin\t-7.814597399127635\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (President Abraham Lincoln, Named after, Charles Darwin) -> Charles Darwin (13183ms)\nWho was Abraham Lincoln?\tLincoln Prize\t-7.814597399127635\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Prize) -> Lincoln Prize (13184ms)\nWho was Abraham Lincoln?\tLincoln Memorial\t-7.814597399127635\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Memorial) -> Lincoln Memorial (13183ms)\nWho was Abraham Lincoln?\tLincoln Bedroom\t-7.814597399127635\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Bedroom) -> Lincoln Bedroom (13183ms)\nWho was Abraham Lincoln?\tComments Today\t-8.400322678009807\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Comments Today, is, Abraham Lincoln) -> Comments Today (11373ms)\nWho was Abraham Lincoln?\tLincoln Tomb\t-8.747468614012714\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Tomb) -> Lincoln Tomb (14620ms)\nWho was Abraham Lincoln?\tRobert Todd Lincoln\t-8.81574635567154\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Robert Todd Lincoln, was, Abraham Lincoln) -> Robert Todd Lincoln (11373ms)\nWho was Abraham Lincoln?\trecent history\t-8.905607755903105\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (recent history, is, Abraham Lincoln) -> recent history (11373ms)\nWho was Abraham Lincoln?\tHenry Clay\t-8.907029493654978\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Henry Clay, was, Abraham Lincoln) -> Henry Clay (11373ms)\nWho was Abraham Lincoln?\tAbraham Lincoln Brigade\t-8.948854969357477\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Brigade) -> Abraham Lincoln Brigade (14805ms)\nWho was Abraham Lincoln?\tFort Abraham Lincoln\t-8.948854969357477\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Fort Abraham Lincoln) -> Fort Abraham Lincoln (14805ms)\nWho was Abraham Lincoln?\tAbraham Lincoln University\t-8.948854969357477\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln University) -> Abraham Lincoln University (14805ms)\nWho was Abraham Lincoln?\tAbraham Lincoln's Clemency\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln's Clemency) -> Abraham Lincoln's Clemency (14863ms)\nWho was Abraham Lincoln?\tLincoln Memorial Tower\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Memorial Tower) -> Lincoln Memorial Tower (14863ms)\nWho was Abraham Lincoln?\tLincoln College, Illinois\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln College, Illinois) -> Lincoln College, Illinois (14863ms)\nWho was Abraham Lincoln?\tAbraham Lincoln National Cemetery\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln National Cemetery) -> Abraham Lincoln National Cemetery (14805ms)\nWho was Abraham Lincoln?\tAbraham Lincoln Memorial Hospital\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Memorial Hospital) -> Abraham Lincoln Memorial Hospital (14805ms)\nWho was Abraham Lincoln?\tAbraham Lincoln Memorial Garden\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Memorial Garden) -> Abraham Lincoln Memorial Garden (14863ms)\nWho was Abraham Lincoln?\tLincoln Heritage Trail\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Heritage Trail) -> Lincoln Heritage Trail (14863ms)\nWho was Abraham Lincoln?\tAbraham Lincoln Capital Airport\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Capital Airport) -> Abraham Lincoln Capital Airport (14863ms)\nWho was Abraham Lincoln?\tAbraham Lincoln Memorial Bridge\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Memorial Bridge) -> Abraham Lincoln Memorial Bridge (14805ms)\nWho was Abraham Lincoln?\tAbraham Lincoln High School\t-8.987839200025377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln High School) -> Abraham Lincoln High School (14863ms)\nWho was Abraham Lincoln?\tLincoln cent mintage figures\t-9.020326058915293\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln cent mintage figures) -> Lincoln cent mintage figures (14920ms)\nWho was Abraham Lincoln?\tLincoln Home National Historic Site\t-9.047814939514453\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Home National Historic Site) -> Lincoln Home National Historic Site (14920ms)\nWho was Abraham Lincoln?\tAbraham Lincoln Presidential Library and Museum\t-9.047814939514453\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Presidential Library and Museum) -> Abraham Lincoln Presidential Library and Museum (14920ms)\nWho was Abraham Lincoln?\tLincoln Trail Homestead State Memorial\t-9.047814939514453\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Trail Homestead State Memorial) -> Lincoln Trail Homestead State Memorial (14920ms)\nWho was Abraham Lincoln?\tProposed Chicago south suburban airport\t-9.071376837170874\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Proposed Chicago south suburban airport) -> Proposed Chicago south suburban airport (14920ms)\nWho was Abraham Lincoln?\tbetter angels\t-9.25265281486515\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called ?the, better angels) -> better angels (9704ms)\nWho was Abraham Lincoln?\tPolk ?a\t-9.380575287943255\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Polk ?a) -> Polk ?a (9704ms)\nWho was Abraham Lincoln?\tUSS Abraham Lincoln (CVN-72)\t-9.406664446285866\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, USS Abraham Lincoln (CVN-72)) -> USS Abraham Lincoln (CVN-72) (15249ms)\nWho was Abraham Lincoln?\tUSS Abraham Lincoln (SSBN-602)\t-9.406664446285866\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, USS Abraham Lincoln (SSBN-602)) -> USS Abraham Lincoln (SSBN-602) (15249ms)\nWho was Abraham Lincoln?\tthe Americans\t-9.410960400292389\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called on, the Americans) -> the Americans (9704ms)\nWho was Abraham Lincoln?\tthe Gettysburg address\t-9.454126275657545\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the Gettysburg address) -> the Gettysburg address (9704ms)\nWho was Abraham Lincoln?\tAssassination of Abraham Lincoln\t-9.492587332390851\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who s abraham lincoln ? -> $x: ($x, s, abraham lincoln) -> (Assassination of Abraham Lincoln, Victim(s), Abraham Lincoln) -> Assassination of Abraham Lincoln (15249ms)\nWho was Abraham Lincoln?\tthe Bible\t-9.500010939788309\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the Bible) -> the Bible (9763ms)\nWho was Abraham Lincoln?\tmore volunteers\t-9.52596714385593\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, more volunteers) -> more volunteers (9770ms)\nWho was Abraham Lincoln?\thistorians\t-9.601325409488775\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (historians, was, Abraham Lincoln) -> historians (11373ms)\nWho was Abraham Lincoln?\tSaint Status\t-9.65206754955514\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, enjoys almost, Saint Status) -> Saint Status (10253ms)\nWho was Abraham Lincoln?\ta patent\t-9.65260598713518\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (a patent, was, Abraham Lincoln) -> a patent (11373ms)\nWho was Abraham Lincoln?\ta baboon\t-9.663717756189879\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, was called, a baboon) -> a baboon (9763ms)\nWho was Abraham Lincoln?\tNorthern Whigs\t-9.668672714296928\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, Northern Whigs) -> Northern Whigs (15324ms)\nWho was Abraham Lincoln?\tthe Ripper\t-9.66958328611701\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be really abraham lincoln ? -> $x: ($x, be really, abraham lincoln) -> (the Ripper, really was, Abraham Lincoln scale) -> the Ripper (11511ms)\nWho was Abraham Lincoln?\tAbe\t-9.692688025399963\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (the young Abraham Lincoln, called, Abe) -> Abe (9770ms)\nWho was Abraham Lincoln?\ta traitor\t-9.718548050795599\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (The Republican Abraham Lincoln, was called, a traitor) -> a traitor (9763ms)\nWho was Abraham Lincoln?\tSouthern Baptist\t-9.732691152061305\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, Southern Baptist) -> Southern Baptist (15324ms)\nWho was Abraham Lincoln?\ta log cabin\t-9.733710908290957\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (a log cabin, was, Abraham Lincoln) -> a log cabin (11511ms)\nWho was Abraham Lincoln?\ta racist\t-9.734845816009623\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, is called, a racist) -> a racist (9763ms)\nWho was Abraham Lincoln?\tThe Papers of Abraham Lincoln\t-9.742736145843203\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who s abraham lincoln ? -> $x: ($x, s, abraham lincoln) -> (The Papers of Abraham Lincoln, Edited work(s), The Papers of Abraham Lincoln: Legal Documents and Cases) -> The Papers of Abraham Lincoln (15324ms)\nWho was Abraham Lincoln?\tSinking Spring\t-9.805388403496481\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln Birthplace National Historical Park, Also known as, Sinking Spring) -> Sinking Spring (16073ms)\nWho was Abraham Lincoln?\tOne notable exception\t-9.80772833229638\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (One notable exception, was, Abraham Lincoln) -> One notable exception (11511ms)\nWho was Abraham Lincoln?\tthe Moon\t-9.824740817384953\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, made the first call to, the Moon) -> the Moon (9831ms)\nWho was Abraham Lincoln?\tthe Whig Party\t-9.838930407578824\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the Whig Party, was, Abraham Lincoln) -> the Whig Party (11511ms)\nWho was Abraham Lincoln?\tStacy Pratt McDermott\t-9.838930407578824\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Stacy Pratt McDermott, Was, Abraham Lincoln) -> Stacy Pratt McDermott (11511ms)\nWho was Abraham Lincoln?\tAbrahm Lincoln\t-9.843676487188167\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (The story of Abraham Lincoln: president for the people, Also known as, Abrahm Lincoln) -> Abrahm Lincoln (16074ms)\nWho was Abraham Lincoln?\tnumber six position\t-9.847772429696674\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (number six position, was, Abraham Lincoln) -> number six position (11840ms)\nWho was Abraham Lincoln?\tbiblical character\t-9.859213646178947\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical character) -> biblical character (15324ms)\nWho was Abraham Lincoln?\tDavid Glasgow Farragut\t-9.859537497171255\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be one of abraham lincoln ? -> $x: ($x, be one of, abraham lincoln) -> (David Glasgow Farragut, was one of, Abraham Lincoln) -> David Glasgow Farragut (11840ms)\nWho was Abraham Lincoln?\tSuch a man\t-9.873841518023083\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Such a man, was, Abraham Lincoln) -> Such a man (11840ms)\nWho was Abraham Lincoln?\t1.00\t-9.873874297803571\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (1.00, was, abraham lincoln) -> 1.00 (11840ms)\nWho was Abraham Lincoln?\tthe ?missing link ?\t-9.898532143727275\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, was called, the ?missing link ?) -> the ?missing link ? (9830ms)\nWho was Abraham Lincoln?\tThe Great Emancipator\t-9.907641148559156\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, has been called, The Great Emancipator) -> The Great Emancipator (9831ms)\nWho was Abraham Lincoln?\tthe Black Hawk War\t-9.9147232294985\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the Black Hawk War, was, Abraham Lincoln) -> the Black Hawk War (11840ms)\nWho was Abraham Lincoln?\t?Honest Abe . ? Bill Clinton\t-9.917194711012442\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, was called, ?Honest Abe . ? Bill Clinton) -> ?Honest Abe . ? Bill Clinton (9830ms)\nWho was Abraham Lincoln?\tbible character\t-9.92939661352169\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, bible character) -> bible character (15324ms)\nWho was Abraham Lincoln?\tthe Great Experiment\t-9.947373295291776\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, has been called, the Great Experiment) -> the Great Experiment (9830ms)\nWho was Abraham Lincoln?\tthe 'family\t-9.959705937260079\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the 'family) -> the 'family (9831ms)\nWho was Abraham Lincoln?\tBill Kendrat\t-9.959714739960308\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Bill Kendrat, was, Abraham Lincoln) -> Bill Kendrat (11840ms)\nWho was Abraham Lincoln?\ta 'proposition\t-9.96140979463731\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, a 'proposition) -> a 'proposition (9849ms)\nWho was Abraham Lincoln?\ttrue believer\t-9.977688774618347\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, true believer) -> true believer (15324ms)\nWho was Abraham Lincoln?\t?the mythic chords\t-9.998864059694306\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?the mythic chords) -> ?the mythic chords (9850ms)\nWho was Abraham Lincoln?\tthe Mississippi\t-10.018131936895045\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the Mississippi) -> the Mississippi (9850ms)\nWho was Abraham Lincoln?\ta ?flypaper figure\t-10.051915928889935\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln-is, calls, a ?flypaper figure) -> a ?flypaper figure (9850ms)\nWho was Abraham Lincoln?\tunpopular president\t-10.053934667434657\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, unpopular president) -> unpopular president (15390ms)\nWho was Abraham Lincoln?\t?the last best hope\t-10.0669125715968\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?the last best hope) -> ?the last best hope (9849ms)\nWho was Abraham Lincoln?\t?the Last full measure\t-10.0669125715968\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?the Last full measure) -> ?the Last full measure (9850ms)\nWho was Abraham Lincoln?\tsuccessful lawyer\t-10.076912073042715\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, successful lawyer) -> successful lawyer (15390ms)\nWho was Abraham Lincoln?\tgood player\t-10.084993302117876\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, good player) -> good player (15390ms)\nWho was Abraham Lincoln?\tHonest Abe\t-10.099135180097825\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be be abraham lincoln ? -> $x: ($x, be be, abraham lincoln) -> (Honest Abe, is a synonym for, abraham lincoln) -> Honest Abe (15390ms)\nWho was Abraham Lincoln?\ta failed actor\t-10.109453350920598\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, a failed actor) -> a failed actor (9870ms)\nWho was Abraham Lincoln?\tcent\t-10.109655629949307\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (cent, is, Abraham Lincoln) -> cent (15390ms)\nWho was Abraham Lincoln?\tgood person\t-10.110847361146396\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, good person) -> good person (15390ms)\nWho was Abraham Lincoln?\tmale name\t-10.119249883226566\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (ABRAHAM, Instance Of, male name) -> male name (15441ms)\nWho was Abraham Lincoln?\tthe Bible ?the best gift God\t-10.119423284129404\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the Bible ?the best gift God) -> the Bible ?the best gift God (9870ms)\nWho was Abraham Lincoln?\thorrible president\t-10.120192131337998\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham lincoln, Instance Of, horrible president) -> horrible president (15441ms)\nWho was Abraham Lincoln?\tprivate company\t-10.128423618993914\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abrahams, Instance Of, private company) -> private company (15441ms)\nWho was Abraham Lincoln?\tspiritual teacher\t-10.133146206169817\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, spiritual teacher) -> spiritual teacher (15441ms)\nWho was Abraham Lincoln?\tpolitical leader\t-10.134050688709188\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, political leader) -> political leader (15441ms)\nWho was Abraham Lincoln?\t?The Inspired Wisdom\t-10.13951611017624\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?The Inspired Wisdom) -> ?The Inspired Wisdom (9870ms)\nWho was Abraham Lincoln?\thome\t-10.140667143733303\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (home, is, Abraham Lincoln) -> home (15441ms)\nWho was Abraham Lincoln?\toffice\t-10.148499710371084\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (office, was, Abraham Lincoln) -> office (15441ms)\nWho was Abraham Lincoln?\tdistant memory\t-10.151397330474476\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, distant memory) -> distant memory (15441ms)\nWho was Abraham Lincoln?\tsmall player\t-10.15220899136198\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, small player) -> small player (15484ms)\nWho was Abraham Lincoln?\tambiguous figure\t-10.153097486922752\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, ambiguous figure) -> ambiguous figure (15485ms)\nWho was Abraham Lincoln?\tPresident Polk?s rationale\t-10.15356394565246\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Congressman Abraham Lincoln, called, President Polk?s rationale) -> President Polk?s rationale (9870ms)\nWho was Abraham Lincoln?\tvictory\t-10.155633902531573\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (victory, was, Abraham Lincoln) -> victory (15485ms)\nWho was Abraham Lincoln?\telected president\t-10.166818066571098\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, elected president) -> elected president (15485ms)\nWho was Abraham Lincoln?\taction\t-10.176981854797136\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, was called to, action) -> action (9870ms)\nWho was Abraham Lincoln?\tchristian prophet\t-10.180104142216596\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, christian prophet) -> christian prophet (15485ms)\nWho was Abraham Lincoln?\treligious patriarch\t-10.180104142216596\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, religious patriarch) -> religious patriarch (15485ms)\nWho was Abraham Lincoln?\tpatriarchal figure\t-10.180104142216596\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, patriarchal figure) -> patriarchal figure (15485ms)\nWho was Abraham Lincoln?\ttestement saint\t-10.180104142216596\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, testement saint) -> testement saint (15542ms)\nWho was Abraham Lincoln?\tbiblical alias\t-10.180104142216596\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical alias) -> biblical alias (15542ms)\nWho was Abraham Lincoln?\tAmerican history\t-10.181139761370495\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (American history, was, Abraham Lincoln) -> American history (15542ms)\nWho was Abraham Lincoln?\tterrible speaker\t-10.184929899281336\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, terrible speaker) -> terrible speaker (15542ms)\nWho was Abraham Lincoln?\tDiamonds\t-10.185073655964121\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Diamonds, is, Abraham Lincoln) -> Diamonds (15542ms)\nWho was Abraham Lincoln?\t?a new birth\t-10.186771251421781\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln?s, calls for, ?a new birth) -> ?a new birth (9870ms)\nWho was Abraham Lincoln?\tAbe Lincoln\t-10.189031619842645\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln, Also known as, Abe Lincoln) -> Abe Lincoln (16074ms)\nWho was Abraham Lincoln?\tthe American form\t-10.189790151089607\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the American form) -> the American form (9886ms)\nWho was Abraham Lincoln?\ttypical person\t-10.191071519332056\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, typical person) -> typical person (15542ms)\nWho was Abraham Lincoln?\tbiblical leader\t-10.19275880793048\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical leader) -> biblical leader (15542ms)\nWho was Abraham Lincoln?\tcompassionate leader\t-10.195897275783945\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, compassionate leader) -> compassionate leader (15628ms)\nWho was Abraham Lincoln?\tuntenured teacher\t-10.196555207276935\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, untenured teacher) -> untenured teacher (15628ms)\nWho was Abraham Lincoln?\tlegendary person\t-10.200667973235594\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, legendary person) -> legendary person (15628ms)\nWho was Abraham Lincoln?\tavid reader\t-10.201159069488934\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, avid reader) -> avid reader (15628ms)\nWho was Abraham Lincoln?\tgreat speaker\t-10.201686614047302\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great speaker) -> great speaker (15628ms)\nWho was Abraham Lincoln?\tSidney Edgerton\t-10.204158741269243\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, named, Sidney Edgerton) -> Sidney Edgerton (15628ms)\nWho was Abraham Lincoln?\ta day\t-10.204364710797169\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, a day) -> a day (9887ms)\nWho was Abraham Lincoln?\tbrilliant scientist\t-10.207421964240874\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, brilliant scientist) -> brilliant scientist (15628ms)\nWho was Abraham Lincoln?\tholy father\t-10.207522584392395\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, holy father) -> holy father (15725ms)\nWho was Abraham Lincoln?\tinsomniacs\t-10.207866153453361\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (insomniacs, were, Abraham Lincoln) -> insomniacs (15724ms)\nWho was Abraham Lincoln?\treligious leader\t-10.208641704731345\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, religious leader) -> religious leader (15724ms)\nWho was Abraham Lincoln?\t?America?s political religion\t-10.212020291005174\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?America?s political religion) -> ?America?s political religion (9886ms)\nWho was Abraham Lincoln?\t3153 Lincoln\t-10.215545958047738\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, 3153 Lincoln) -> 3153 Lincoln (15724ms)\nWho was Abraham Lincoln?\tbiographical story\t-10.220227400200088\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln..., Instance Of, biographical story) -> biographical story (16114ms)\nWho was Abraham Lincoln?\tfamiliar icon\t-10.220227400200088\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, familiar icon) -> familiar icon (16073ms)\nWho was Abraham Lincoln?\tinherent individual\t-10.220227400200088\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, inherent individual) -> inherent individual (16114ms)\nWho was Abraham Lincoln?\tcore biography\t-10.220227400200088\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, core biography) -> core biography (15724ms)\nWho was Abraham Lincoln?\tridiculous politician\t-10.220227400200088\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, ridiculous politician) -> ridiculous politician (16073ms)\nWho was Abraham Lincoln?\tthe United States\t-10.222062908473271\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the United States, was, Abraham Lincoln) -> the United States (16114ms)\nWho was Abraham Lincoln?\tfantastic president\t-10.22655473305703\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, fantastic president) -> fantastic president (16114ms)\nWho was Abraham Lincoln?\theroic leader\t-10.227705157157125\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, heroic leader) -> heroic leader (16114ms)\nWho was Abraham Lincoln?\tmisguided individual\t-10.229366880721072\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, misguided individual) -> misguided individual (16114ms)\nWho was Abraham Lincoln?\tgreat listener\t-10.234697344541415\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great listener) -> great listener (16114ms)\nWho was Abraham Lincoln?\tamerican icon\t-10.237129179606736\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, american icon) -> american icon (16155ms)\nWho was Abraham Lincoln?\tinspirational leader\t-10.237200721255178\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, inspirational leader) -> inspirational leader (16156ms)\nWho was Abraham Lincoln?\tcourageous leader\t-10.238191206846995\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, courageous leader) -> courageous leader (16156ms)\nWho was Abraham Lincoln?\ttraditional topic\t-10.24121090103977\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, traditional topic) -> traditional topic (16155ms)\nWho was Abraham Lincoln?\tnotable case\t-10.241552854136199\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, notable case) -> notable case (16155ms)\nWho was Abraham Lincoln?\tgood lawyer\t-10.242677399422655\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, good lawyer) -> good lawyer (16155ms)\nWho was Abraham Lincoln?\tcorporate lawyer\t-10.245450498741095\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, corporate lawyer) -> corporate lawyer (16260ms)\nWho was Abraham Lincoln?\tinfamous character\t-10.245536731627856\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, infamous character) -> infamous character (16260ms)\nWho was Abraham Lincoln?\tquestion\t-10.246341541814685\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, is being called into, question) -> question (9888ms)\nWho was Abraham Lincoln?\tfamous name\t-10.248182838636952\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous name) -> famous name (16260ms)\nWho was Abraham Lincoln?\tUSDA ?The People?s Department\t-10.25347051711119\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, USDA ?The People?s Department) -> USDA ?The People?s Department (9886ms)\nWho was Abraham Lincoln?\tNew Salem home\t-10.258882802690831\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, New Salem home) -> New Salem home (9887ms)\nWho was Abraham Lincoln?\tgreat teacher\t-10.259992503201897\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great teacher) -> great teacher (16260ms)\nWho was Abraham Lincoln?\tnorthern politician\t-10.261355062238088\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, northern politician) -> northern politician (16260ms)\nWho was Abraham Lincoln?\tworld leader\t-10.263913239991837\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, world leader) -> world leader (16302ms)\nWho was Abraham Lincoln?\tThe 8th Judicial Circuit\t-10.267233652440027\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (The 8th Judicial Circuit, was, Abraham Lincoln) -> The 8th Judicial Circuit (16302ms)\nWho was Abraham Lincoln?\trepublican president\t-10.267848903354468\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, republican president) -> republican president (16302ms)\nWho was Abraham Lincoln?\tsuch a day\t-10.27064484989747\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, such a day) -> such a day (9904ms)\nWho was Abraham Lincoln?\tprominent politician\t-10.28139161679578\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, prominent politician) -> prominent politician (16302ms)\nWho was Abraham Lincoln?\timmediate war\t-10.285344142810242\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, immediate war) -> immediate war (9904ms)\nWho was Abraham Lincoln?\tLincoln\t-10.286468430021962\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln) -> Lincoln (16302ms)\nWho was Abraham Lincoln?\tthousands\t-10.309601196335759\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called for, thousands) -> thousands (9904ms)\nWho was Abraham Lincoln?\tvolunteers\t-10.314022181043537\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called for, volunteers) -> volunteers (9904ms)\nWho was Abraham Lincoln?\tdays\t-10.33524291818133\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, also called for, days) -> days (9904ms)\nWho was Abraham Lincoln?\tthe Midwest home\t-10.359582064925004\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, once called, the Midwest home) -> the Midwest home (9904ms)\nWho was Abraham Lincoln?\tThe Reprieve\t-10.39748896438627\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (The Reprieve: An Episode in the Life of Abraham Lincoln, Also known as, The Reprieve) -> The Reprieve (16427ms)\nWho was Abraham Lincoln?\tThe President\t-10.402400999760829\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (The President, was, Abraham Lincoln) -> The President (16467ms)\nWho was Abraham Lincoln?\tstudents\t-10.424177854271928\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, was enjoyed by, students) -> students (10253ms)\nWho was Abraham Lincoln?\tan ex-recorder\t-10.477896648930082\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be one of abraham lincoln ? -> $x: ($x, be one of, abraham lincoln) -> (an ex-recorder, was one of, Abraham Lincoln) -> an ex-recorder (16467ms)\nWho was Abraham Lincoln?\tIS ENSHRINED FOREVER\t-10.484637369614585\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> what be abraham s lincoln ? -> $x: (abraham, lincoln, $x) -> (ABRAHAM, LINCOLN, IS ENSHRINED FOREVER) -> IS ENSHRINED FOREVER (16507ms)\nWho was Abraham Lincoln?\tguy\t-10.496573995698537\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, guy) -> guy (16507ms)\nWho was Abraham Lincoln?\tsix hundred thousand men\t-10.504441574415143\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, has called for, six hundred thousand men) -> six hundred thousand men (10075ms)\nWho was Abraham Lincoln?\tone of my heroes\t-10.534904269279664\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (one of my heroes, is, Abraham Lincoln) -> one of my heroes (16507ms)\nWho was Abraham Lincoln?\tOne of his heroes\t-10.555305388143616\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (One of his heroes, is, Abraham Lincoln) -> One of his heroes (16507ms)\nWho was Abraham Lincoln?\told man\t-10.564719648711707\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, old man) -> old man (16507ms)\nWho was Abraham Lincoln?\tEdwin Booth\t-10.591699167210997\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who save lincoln ? -> $x: ($x, save, lincoln) -> (Edwin Booth, saved, Abraham Lincoln?s son) -> Edwin Booth (16547ms)\nWho was Abraham Lincoln?\tkey figure\t-10.597234562938151\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, key figure) -> key figure (16547ms)\nWho was Abraham Lincoln?\tprofiteers\t-10.636831110890377\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, profiteers) -> profiteers (10075ms)\nWho was Abraham Lincoln?\t75,000 men\t-10.637919133879025\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, 75,000 men) -> 75,000 men (10075ms)\nWho was Abraham Lincoln?\tthe constitution\t-10.654936030238314\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the constitution, was, Abraham Lincoln) -> the constitution (16547ms)\nWho was Abraham Lincoln?\tgood guy\t-10.666460669149307\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, good guy) -> good guy (16547ms)\nWho was Abraham Lincoln?\t75,000 volunteers\t-10.666972437654598\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, 75,000 volunteers) -> 75,000 volunteers (10075ms)\nWho was Abraham Lincoln?\tthe front\t-10.682601307214078\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the front, is, Abraham Lincoln) -> the front (16547ms)\nWho was Abraham Lincoln?\tthe time\t-10.697568118714644\tWho was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the time, was, Abraham Lincoln) -> the time (16586ms)\nWho was Abraham Lincoln?\tthe English Reader\t-10.708330074201946\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the English Reader) -> the English Reader (10125ms)\nWho was Abraham Lincoln?\tworshipful man\t-10.712695439433652\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, worshipful man) -> worshipful man (16586ms)\nWho was Abraham Lincoln?\tLincoln Farm\t-10.714697720725137\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln Birthplace National Historical Park, Also known as, Lincoln Farm) -> Lincoln Farm (16586ms)\nWho was Abraham Lincoln?\tmember of Congress\t-10.732451314006369\tWho was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, member of Congress) -> member of Congress (16586ms)\nWho was Abraham Lincoln?\tgreat guy\t-10.749550917314297\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, great guy) -> great guy (16788ms)\nWho was Abraham Lincoln?\ttalented author\t-10.7555369230144\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham's, Instance Of, talented author) -> talented author (16788ms)\nWho was Abraham Lincoln?\tbusiness man\t-10.760129439237327\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, business man) -> business man (16788ms)\nWho was Abraham Lincoln?\tOT saint\t-10.762807026543278\tWho was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, OT saint) -> OT saint (16788ms)\nWho was Abraham Lincoln?\tAbraham Lincoln plaque\t-10.769476712874384\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln, Also known as, Abraham Lincoln plaque) -> Abraham Lincoln plaque (16787ms)\nWho was Abraham Lincoln?\tLincoln, Abraham\t-10.769476712874384\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln, Also known as, Lincoln, Abraham) -> Lincoln, Abraham (16787ms)\nWho was Abraham Lincoln?\tstates\t-10.788817517473591\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called on, states) -> states (10125ms)\nWho was Abraham Lincoln?\tcitizenship\t-10.807463485422993\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, enjoy the privileges of, citizenship) -> citizenship (10253ms)\nWho was Abraham Lincoln?\ttroops\t-10.827702443093278\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, made his initial call for, troops) -> troops (10125ms)\nWho was Abraham Lincoln?\tgovernment\t-10.8407317538028\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, government) -> government (10140ms)\nWho was Abraham Lincoln?\thelp\t-10.933006313559911\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, calls for, help) -> help (10140ms)\nWho was Abraham Lincoln?\tsupport\t-10.954227050697703\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called for, support) -> support (10140ms)\nWho was Abraham Lincoln?\ta new determination\t-11.070128101083846\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, a new determination) -> a new determination (10140ms)\nWho was Abraham Lincoln?\ta special session of Congress\t-11.09899638194617\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, a special session of Congress) -> a special session of Congress (10140ms)\nWho was Abraham Lincoln?\t15 % discounts\t-11.190224452445111\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (- Abraham Lincoln, Please enjoy, 15 % discounts) -> 15 % discounts (10253ms)\nWho was Abraham Lincoln?\tthe nation\t-11.271522298073538\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called on, the nation) -> the nation (10140ms)\nWho was Abraham Lincoln?\tAmericans\t-11.285190376009748\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Americans) -> Americans (10253ms)\nWho was Abraham Lincoln?\tManhunt\t-11.299212352859794\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Manhunt) -> Manhunt (10253ms)\nWho was Abraham Lincoln?\tAmerica\t-11.299337569236473\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, America) -> America (10272ms)\nWho was Abraham Lincoln?\tGrant\t-11.313484709760903\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Grant) -> Grant (10272ms)\nWho was Abraham Lincoln?\tVicksburg\t-11.562354275180112\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called, Vicksburg) -> Vicksburg (10291ms)\nWho was Abraham Lincoln?\tRivals\t-11.584647247360259\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called Team of, Rivals) -> Rivals (10293ms)\nWho was Abraham Lincoln?\tbetter angels of our nature\t-11.642455386024086\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called the, better angels of our nature) -> better angels of our nature (10291ms)\nWho was Abraham Lincoln?\tLeaves\t-11.650361275065508\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, enjoyed an early version of, Leaves) -> Leaves (10291ms)\nWho was Abraham Lincoln?\tthe ability\t-11.703955609522414\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln ?All endeavor, calls for, the ability) -> the ability (10309ms)\nWho was Abraham Lincoln?\ta misguided  fanatic.\t-11.743622236308116\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called him, a misguided  fanatic.) -> a misguided  fanatic. (10309ms)\nWho was Abraham Lincoln?\tthe equality\t-11.842476454831537\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the equality) -> the equality (10327ms)\nWho was Abraham Lincoln?\tthe plain people\t-11.855912170023409\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the plain people) -> the plain people (10327ms)\nWho was Abraham Lincoln?\tthe governors\t-11.964813721141997\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called on, the governors) -> the governors (10327ms)\nWho was Abraham Lincoln?\tonce\t-12.19607908600387\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, once) -> once (10327ms)\nWho was Abraham Lincoln?\tUnion troops\t-12.25063842897757\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called, Union troops) -> Union troops (10327ms)\nWho was Abraham Lincoln?\tlater\t-12.429243913154208\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called the better angels of our nature, later) -> later (10342ms)\nWho was Abraham Lincoln?\tthe newly elected 37th Congress\t-12.504632835665\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the newly elected 37th Congress) -> the newly elected 37th Congress (10342ms)\nWho was Abraham Lincoln?\tthe cottage\t-12.581093948215468\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, enjoyed staying at, the cottage) -> the cottage (10342ms)\nWho was Abraham Lincoln?\tthe silent artillery of time\t-12.963764233385964\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called it, the silent artillery of time) -> the silent artillery of time (10342ms)\nWho was Abraham Lincoln?\tthe better angels of our nature\t-13.447507926625857\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the better angels of our nature) -> the better angels of our nature (10358ms)\nWho was Abraham Lincoln?\tthe better  angels of our nature\t-13.555923571145968\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the better  angels of our nature) -> the better  angels of our nature (10358ms)\nWho was Abraham Lincoln?\tthe last full measure of devotion\t-13.567573312002656\tWho was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the last full measure of devotion) -> the last full measure of devotion (10358ms)\nHow old was Sani Abacha when he died?\tTHE 8TH\t-8.710650040659381\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (GENERAL SANI ABACHA, DIED ON, THE 8TH) -> THE 8TH (2147ms)\nHow old was Sani Abacha when he died?\tthe 8th\t-8.848002874811538\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died on, the 8th) -> the 8th (2147ms)\nHow old was Sani Abacha when he died?\t8th\t-8.884936710689182\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (late General Sani Abacha, died on, 8th) -> 8th (2147ms)\nHow old was Sani Abacha when he died?\tcardiac arrest\t-9.285319230771776\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (dictator Sani Abacha, dies of, cardiac arrest) -> cardiac arrest (2175ms)\nHow old was Sani Abacha when he died?\t1998\t-9.358474672277733\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (Sani Abacha, died sometime in, 1998) -> 1998 (2175ms)\nHow old was Sani Abacha when he died?\theart\t-9.506608015597948\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (State General Sani Abacha, died of, heart) -> heart (2175ms)\nHow old was Sani Abacha when he died?\tSUDDENLY\t-9.722383445305622\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (GENERAL SANI ABACHA, DIED, SUDDENLY) -> SUDDENLY (2175ms)\nHow old was Sani Abacha when he died?\tAso Rock\t-9.849125785319961\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (Sani Abacha, died in, Aso Rock) -> Aso Rock (2175ms)\nHow old was Sani Abacha when he died?\t18th June 1998\t-10.010828235906862\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died on, 18th June 1998) -> 18th June 1998 (2234ms)\nHow old was Sani Abacha when he died?\tpower\t-10.061800747744137\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died suddenly in, power) -> power (2236ms)\nHow old was Sani Abacha when he died?\ta heart attack\t-10.073371809925684\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died of, a heart attack) -> a heart attack (2234ms)\nHow old was Sani Abacha when he died?\tJune 8 , 1998\t-10.07728599568058\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died suddenly on, June 8 , 1998) -> June 8 , 1998 (2234ms)\nHow old was Sani Abacha when he died?\tjuly 1998\t-10.312139185718433\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (Sani Abacha}, died on, july 1998) -> july 1998 (2234ms)\nHow old was Sani Abacha when he died?\tPower\t-10.877681300796883\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what age be sanus abacha die ? -> $x: ($x, instance of, age) (sanus abacha, die, $x) -> (Power, Instance Of, age-old theme) (General Sani Abacha, died suddenly in, power) -> Power (1710ms)\nHow old was Sani Abacha when he died?\tthe 8th of June 1998\t-11.407464804997323\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died on, the 8th of June 1998) -> the 8th of June 1998 (2234ms)\nHow old was Sani Abacha when he died?\tPOWER\t-12.6218182964982\tHow old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> which year do sanus abacha die ? -> $x: ($x, instance of, year) (sanus abacha, die, $x) -> (POWER, Instance Of, multi-year project) (General Sani Abacha, died suddenly in, power) -> POWER (5664ms)\nWhen was Algeria colonized?\tthe 19th century\t-1.6905492025033517\tWhen was Algeria colonized? -> $x: (Algeria, was colonized in, $x) -> (Algeria, was colonized in, the 19th century) -> the 19th century (3194ms)\nWhen was Algeria colonized?\t1830\t-8.125114606356995\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, happened in, 1830) -> 1830 (6552ms)\nWhen was Algeria colonized?\t1962\t-8.202892974734045\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria and France, resulted in, 1962) -> 1962 (6090ms)\nWhen was Algeria colonized?\t21 March 2009\t-8.837901661394431\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be add, $x) -> (Algeria Tv channel, was added on, 21 March 2009) -> 21 March 2009 (5737ms)\nWhen was Algeria colonized?\tUTC+01:00\t-8.985512488521428\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria, Time zone(s), UTC+01:00) -> UTC+01:00 (6552ms)\nWhen was Algeria colonized?\tNovember\t-9.057822633277809\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> (Algeria, will has a military conflict in, November) -> November (5053ms)\nWhen was Algeria colonized?\t1 December 1961\t-9.257578215057752\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be create, $x) -> (Algeria?s News Agency, was created on, 1 December 1961) -> 1 December 1961 (6246ms)\nWhen was Algeria colonized?\t1832 France\t-9.773553169540813\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (1832 France, colonized, Algeria) -> 1832 France (6839ms)\nWhen was Algeria colonized?\t2003-05-21T18:44Z\t-9.832504256407416\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Boumerd?s, Algeria earthquake, Date and time (GMT), 2003-05-21T18:44Z) -> 2003-05-21T18:44Z (6553ms)\nWhen was Algeria colonized?\t40\t-10.175308856878793\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be generate, $x) -> (Algeria, is aiming to generate, 40) -> 40 (6417ms)\nWhen was Algeria colonized?\tCentral European Time\t-10.240855529308668\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria, Time zone(s), Central European Time) -> Central European Time (6553ms)\nWhen was Algeria colonized?\tRoy Douglas\t-10.348062163645391\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, music, $x) -> (Candlelight in Algeria, Music by, Roy Douglas) -> Roy Douglas (6346ms)\nWhen was Algeria colonized?\thttp://en.wikipedia.org/wiki/Air%20Express%20Algeria\t-10.390410061760216\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, can be find, $x) -> (Air Express Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Air%20Express%20Algeria) -> http://en.wikipedia.org/wiki/Air%20Express%20Algeria (6090ms)\nWhen was Algeria colonized?\thttp://en.wikipedia.org/wiki/Bank%20of%20Algeria\t-10.390410061760216\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, can be find, $x) -> (Bank of Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bank%20of%20Algeria) -> http://en.wikipedia.org/wiki/Bank%20of%20Algeria (6090ms)\nWhen was Algeria colonized?\thttp://en.wikipedia.org/wiki/French%20Algeria\t-10.445387822958534\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, can be find, $x) -> (French rule in Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/French%20Algeria) -> http://en.wikipedia.org/wiki/French%20Algeria (6090ms)\nWhen was Algeria colonized?\thttp://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria\t-10.49251161827138\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, can be find, $x) -> (movement for democracy in algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria) -> http://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria (6090ms)\nWhen was Algeria colonized?\t60,550 tons\t-10.533789781279726\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be set, $x) -> (Algeria, is set to receive, 60,550 tons) -> 60,550 tons (6471ms)\nWhen was Algeria colonized?\t82 and 86 World Cup\t-10.590594077709309\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be present, $x) -> (Algeria, was present in, 82 and 86 World Cup) -> 82 and 86 World Cup (6553ms)\nWhen was Algeria colonized?\tIslamic groups\t-10.641782118117447\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> (Algeria, has an ongoing conflict with, Islamic groups) -> Islamic groups (5053ms)\nWhen was Algeria colonized?\t99 %\t-10.695356710561436\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be state, $x) -> (1962 Algeria, has been a secular state with, 99 %) -> 99 % (6246ms)\nWhen was Algeria colonized?\tinterest\t-10.708444120254748\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, was following with, interest) -> interest (6090ms)\nWhen was Algeria colonized?\ttravel\t-10.74198155258867\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be require, $x) -> (a Algeria visa, is required for, travel) -> travel (6417ms)\nWhen was Algeria colonized?\tlaw\t-10.827748740243232\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be state, $x) -> (Algeria, will be a state of, law) -> law (6246ms)\nWhen was Algeria colonized?\tthe Internet\t-11.00187110662839\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be access, $x) -> (Algeria, can be accessed through, the Internet) -> the Internet (6023ms)\nWhen was Algeria colonized?\tal-Qaeda\t-11.14674553172168\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, is suspected of having links with, al-Qaeda) -> al-Qaeda (6627ms)\nWhen was Algeria colonized?\tbasic necessities\t-11.169027695330822\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be lack, $x) -> (Algeria, are lacking, basic necessities) -> basic necessities (6346ms)\nWhen was Algeria colonized?\tOPEC\t-11.204122312695077\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be state, $x) -> (Angola and Algeria, are all member states of, OPEC) -> OPEC (6246ms)\nWhen was Algeria colonized?\tproof\t-11.343214682545531\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be present, $x) -> (Algeria, is presented as, proof) -> proof (6553ms)\nWhen was Algeria colonized?\tJames Turner\t-11.34404902975265\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, music, $x) -> (Candlelight in Algeria, Music by, James Turner) -> James Turner (6346ms)\nWhen was Algeria colonized?\tan agreement\t-11.405995203158959\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be pass, $x) -> (Algeria, was passed along with, an agreement) -> an agreement (6380ms)\nWhen was Algeria colonized?\tHardcover\t-11.422781066584443\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, bind, $x) -> (The Monks of Tibhirine: Faith, Love, and Terror in Algeria, Binding/format, Hardcover) -> Hardcover (5953ms)\nWhen was Algeria colonized?\thundreds\t-11.46725306528728\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria, is providing scholarships to, hundreds) -> hundreds (6628ms)\nWhen was Algeria colonized?\tsuit\t-11.468510102649857\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria ?, may be tempted to follow, suit) -> suit (6090ms)\nWhen was Algeria colonized?\taddax\t-11.483200155544637\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (addax, were found from, Algeria) -> addax (8018ms)\nWhen was Algeria colonized?\tterrorism\t-11.487997044516895\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, fear, $x) -> (Algeria, was heightening fears of, terrorism) -> terrorism (6090ms)\nWhen was Algeria colonized?\twomen\t-11.496431585439533\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be create, $x) -> (Algeria, are entirely created by, women) -> women (6246ms)\nWhen was Algeria colonized?\tgeneral reference\t-11.533442672229565\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria, is provided for, general reference) -> general reference (6628ms)\nWhen was Algeria colonized?\ta presidential decree\t-11.54127746170247\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, were ended following, a presidential decree) -> a presidential decree (6138ms)\nWhen was Algeria colonized?\tmass demonstrations\t-11.546830842729577\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be meet, $x) -> (Algeria, was met by, mass demonstrations) -> mass demonstrations (6627ms)\nWhen was Algeria colonized?\tmore than 150,000 deaths\t-11.555538543620818\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, more than 150,000 deaths) -> more than 150,000 deaths (6138ms)\nWhen was Algeria colonized?\tdevelopment centers\t-11.575761152963596\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria and Morocco, are providing, development centers) -> development centers (6628ms)\nWhen was Algeria colonized?\tan identification\t-11.593052892703998\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, is closely linked with, an identification) -> an identification (6628ms)\nWhen was Algeria colonized?\tWL. Ukraine\t-11.60297269021723\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be add, $x) -> (Algeria and Norway, were added to, WL. Ukraine) -> WL. Ukraine (5737ms)\nWhen was Algeria colonized?\ta complete file\t-11.608213345901145\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be require, $x) -> (Algeria, are required to submit, a complete file) -> a complete file (6417ms)\nWhen was Algeria colonized?\tthe Committee\t-11.633234006867003\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria, is obliged to provide, the Committee) -> the Committee (6628ms)\nWhen was Algeria colonized?\t500 deaths\t-11.636884746567603\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, have resulted in over, 500 deaths) -> 500 deaths (6138ms)\nWhen was Algeria colonized?\tan example\t-11.649397782814154\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be cite, $x) -> (Algeria, was cited as, an example) -> an example (6138ms)\nWhen was Algeria colonized?\ta conflict\t-11.65337200020957\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be need, $x) -> (Algeria, needs to be seen as, a conflict) -> a conflict (6553ms)\nWhen was Algeria colonized?\tthe English-speaking world\t-11.671940125441777\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be forget, $x) -> (Algeria, was virtually forgotten in, the English-speaking world) -> the English-speaking world (6246ms)\nWhen was Algeria colonized?\ta success story\t-11.684193729489632\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be cite, $x) -> (Algeria, is often cited as, a success story) -> a success story (6138ms)\nWhen was Algeria colonized?\ta shock\t-11.698664643784868\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, was now followed by, a shock) -> a shock (6138ms)\nWhen was Algeria colonized?\tthe U.S.\t-11.763896723308605\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be time, $x) -> (Algeria, were three times those of, the U.S.) -> the U.S. (6710ms)\nWhen was Algeria colonized?\thigh food-inflation rates\t-11.768317708016383\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, were quickly followed by, high food-inflation rates) -> high food-inflation rates (6138ms)\nWhen was Algeria colonized?\tpotential sites\t-11.799915644976913\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be cite, $x) -> (Libya and Algeria, have been cited as, potential sites) -> potential sites (6246ms)\nWhen was Algeria colonized?\tan African Union summit\t-11.801852644749157\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be present, $x) -> (Algeria, were presented at, an African Union summit) -> an African Union summit (6628ms)\nWhen was Algeria colonized?\tthe U.N. committee\t-11.827717991417678\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be require, $x) -> (Algeria, would be required to notify, the U.N. committee) -> the U.N. committee (6417ms)\nWhen was Algeria colonized?\tAlgeria\t-11.836573675847216\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be present, $x) -> (Algeria Repsol, has been present in, Algeria) -> Algeria (6710ms)\nWhen was Algeria colonized?\tthe Tre Fontane Trappists\t-11.840821941547611\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, were linked to, the Tre Fontane Trappists) -> the Tre Fontane Trappists (6710ms)\nWhen was Algeria colonized?\tdecades\t-11.90601938336817\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be produce, $x) -> (Algeria and Morocco, have been producing wines for, decades) -> decades (6380ms)\nWhen was Algeria colonized?\tpolitical and economic ties\t-11.922327148487796\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria and Malaysia, are linked by, political and economic ties) -> political and economic ties (6710ms)\nWhen was Algeria colonized?\tmacaques\t-11.980113789644069\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (macaques, are also found in, Algeria and Morocco) -> macaques (8018ms)\nWhen was Algeria colonized?\tHikma\t-12.092911204267041\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be say, $x) -> (Algeria, is said to be, Hikma) -> Hikma (6417ms)\nWhen was Algeria colonized?\tdemand\t-12.143727338617966\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria , Lebanon and Jordan all, see better results in, demand) -> demand (6246ms)\nWhen was Algeria colonized?\ttravellers\t-12.148730175167596\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, risk, $x) -> (Algeria, constitute a real risk to, travellers) -> travellers (6345ms)\nWhen was Algeria colonized?\tFrance\t-12.186488908009288\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be lose, $x) -> (Tunisia , Algeria and Morocco, was lost to, France) -> France (6471ms)\nWhen was Algeria colonized?\tBank of Algeria\t-12.27949064396605\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Bank of Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bank%20of%20Algeria) -> Bank of Algeria (8018ms)\nWhen was Algeria colonized?\tAir Express Algeria\t-12.27949064396605\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Air Express Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Air%20Express%20Algeria) -> Air Express Algeria (8018ms)\nWhen was Algeria colonized?\tFrench rule in Algeria\t-12.334468405164369\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (French rule in Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/French%20Algeria) -> French rule in Algeria (8018ms)\nWhen was Algeria colonized?\tmovement for democracy in algeria\t-12.381592200477215\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (movement for democracy in algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria) -> movement for democracy in algeria (8018ms)\nWhen was Algeria colonized?\twines\t-12.389079660340984\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be produce, $x) -> (Algeria and Morocco, have been producing, wines) -> wines (6380ms)\nWhen was Algeria colonized?\tEnglish\t-12.429976682065147\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be write, $x) -> (Algeria, now am writing in, English) -> English (6346ms)\nWhen was Algeria colonized?\tAlger*\t-12.452357483293294\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Alger*, will find stories about, Algeria) -> Alger* (8018ms)\nWhen was Algeria colonized?\tSahrawis\t-12.458271015816303\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be set, $x) -> (Algeria, were set up for, Sahrawis) -> Sahrawis (6471ms)\nWhen was Algeria colonized?\tOil\t-12.479940029009379\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Oil, is mainly found in, Algeria) -> Oil (8018ms)\nWhen was Algeria colonized?\tChris Adcock\t-12.487540646918756\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be write, $x) -> (Algeria, was written by, Chris Adcock) -> Chris Adcock (6345ms)\nWhen was Algeria colonized?\ta loss\t-12.514174894148665\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, would result in, a loss) -> a loss (6380ms)\nWhen was Algeria colonized?\tmuch electricity\t-12.550392273993324\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, hope, $x) -> (Algeria, hopes to produce as, much electricity) -> much electricity (6024ms)\nWhen was Algeria colonized?\ta lasting interest\t-12.619886380746921\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, a lasting interest) -> a lasting interest (6380ms)\nWhen was Algeria colonized?\tnew breakthroughs\t-12.625330357183476\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, new breakthroughs) -> new breakthroughs (6380ms)\nWhen was Algeria colonized?\ta victory\t-12.627098782687963\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, a victory) -> a victory (6380ms)\nWhen was Algeria colonized?\ta pipeline\t-12.654826891928305\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, hope, $x) -> (Algeria, hopes to build, a pipeline) -> a pipeline (6024ms)\nWhen was Algeria colonized?\tthe Purim meal\t-12.661448153849783\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, light, $x) -> (Algeria Many wax candles, were lit for, the Purim meal) -> the Purim meal (6471ms)\nWhen was Algeria colonized?\tGuantanamo Bay\t-12.662784674942765\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, has happened in, Guantanamo Bay) -> Guantanamo Bay (6710ms)\nWhen was Algeria colonized?\tthe Islamic Republic\t-12.678700240971683\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, differ, $x) -> (Algeria, differ from, the Islamic Republic) -> the Islamic Republic (5953ms)\nWhen was Algeria colonized?\tAfghanistan\t-12.684525646054382\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Indonesia or Algeria, is now happening in, Afghanistan) -> Afghanistan (6710ms)\nWhen was Algeria colonized?\tBronner\t-12.694103631723962\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be lose, $x) -> (French Algeria, is totally lost on, Bronner) -> Bronner (6471ms)\nWhen was Algeria colonized?\tterrorist attack\t-12.697020156285658\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, fear, $x) -> (Algeria and Morocco, have sparked fears of, terrorist attack) -> terrorist attack (6380ms)\nWhen was Algeria colonized?\ta semolina soup\t-12.722695814878879\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (a semolina soup, is also found in, Algeria) -> a semolina soup (8307ms)\nWhen was Algeria colonized?\thalf a century\t-12.732318281975829\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, happened, half a century) -> half a century (6839ms)\nWhen was Algeria colonized?\tchange\t-12.73337551624361\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, pressure, $x) -> (Algeria, has already felt the pressure for, change) -> change (6839ms)\nWhen was Algeria colonized?\ta Tunisian or Egyptian-style popular uprising\t-12.742541661649959\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, fear, $x) -> (Algeria, now fear, a Tunisian or Egyptian-style popular uprising) -> a Tunisian or Egyptian-style popular uprising (6417ms)\nWhen was Algeria colonized?\trocks and mud\t-12.751934983280552\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (rocks and mud, were found in, Algeria deserts) -> rocks and mud (8307ms)\nWhen was Algeria colonized?\ta general profile\t-12.76010217001653\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, end up, $x) -> (Algeria, might end up with, a general profile) -> a general profile (6417ms)\nWhen was Algeria colonized?\tThe Tuareg people\t-12.76349413272895\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (The Tuareg people, are also found in, Algeria) -> The Tuareg people (8307ms)\nWhen was Algeria colonized?\tconditions\t-12.78123444381815\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (conditions, found throughout, Algeria) -> conditions (8307ms)\nWhen was Algeria colonized?\tthe Mediterranean\t-12.798136880685771\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (the Mediterranean, can still be found wild in, Algeria) -> the Mediterranean (8307ms)\nWhen was Algeria colonized?\ta much higher quality\t-12.802557865393549\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (a much higher quality, can be found in, Algeria) -> a much higher quality (8307ms)\nWhen was Algeria colonized?\tiron ore deposits\t-12.803804803632747\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (iron ore deposits, can be found in, Mauritania and Algeria) -> iron ore deposits (8307ms)\nWhen was Algeria colonized?\tthe French\t-12.846070509032444\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (the French, had colonized, Algeria) -> the French (6839ms)\nWhen was Algeria colonized?\tVarroa\t-12.873432604810949\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Varroa, was first found in, Algeria) -> Varroa (8716ms)\nWhen was Algeria colonized?\tThe Tuaregs\t-12.889209292151502\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (The Tuaregs, can be found as well in, Algeria) -> The Tuaregs (8717ms)\nWhen was Algeria colonized?\tShell beads\t-12.907608959762094\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Shell beads, found in, Algeria and Israel) -> Shell beads (8716ms)\nWhen was Algeria colonized?\tthe card\t-12.943853225734602\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be lose, $x) -> (Algeria, is losing, the card) -> the card (6471ms)\nWhen was Algeria colonized?\thistory\t-12.948132309037078\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, differ, $x) -> (Algeria , Morocco and Egypt, greatly differ in, history) -> history (5953ms)\nWhen was Algeria colonized?\tWestern circles\t-12.967809107392274\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, go unnoticed, $x) -> (Algeria, went largely unnoticed in, Western circles) -> Western circles (6417ms)\nWhen was Algeria colonized?\tthe recordings\t-12.988555060122769\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, are following, the recordings) -> the recordings (6471ms)\nWhen was Algeria colonized?\tStudent B\t-12.989556124140647\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Student B, then finds, Algeria) -> Student B (8717ms)\nWhen was Algeria colonized?\tThe French\t-12.995564528929934\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (The French, began colonizing, Algeria) -> The French (6839ms)\nWhen was Algeria colonized?\tthe Sahrawis\t-13.073937469010556\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (the Sahrawis, found refuge in, Algeria) -> the Sahrawis (8716ms)\nWhen was Algeria colonized?\tLebanon\t-13.085282371075007\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria and Mauritania, happened in, Lebanon) -> Lebanon (6839ms)\nWhen was Algeria colonized?\ta piece\t-13.102952115987339\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (a piece, originally found in, northern Algeria) -> a piece (8716ms)\nWhen was Algeria colonized?\tR. pygmaea\t-13.159640088537861\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (R. pygmaea, is found in, Algeria\\) -> R. pygmaea (8833ms)\nWhen was Algeria colonized?\tGambia\t-13.310146710250386\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria rise and fall, could have a tough time in, Gambia) -> Gambia (6961ms)\nWhen was Algeria colonized?\tthe role\t-13.332838123706711\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, have been linked to, the role) -> the role (6961ms)\nWhen was Algeria colonized?\tthe collision\t-13.387906628325062\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be produce, $x) -> (Algeria, were produced by, the collision) -> the collision (6962ms)\nWhen was Algeria colonized?\tL & L International\t-13.4107081561447\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (L & L International, find, AlgeriaUsed Aircraft) -> L & L International (8833ms)\nWhen was Algeria colonized?\tthe seminar\t-13.417020580350059\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be deliver, $x) -> (Algeria, were delivered at, the seminar) -> the seminar (6961ms)\nWhen was Algeria colonized?\tthe economic powerhouses\t-13.422102608969523\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be hope, $x) -> (Algeria, hopes to be one of, the economic powerhouses) -> the economic powerhouses (6961ms)\nWhen was Algeria colonized?\tthe history\t-13.438877293970714\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be different, $x) -> (Algeria, was unique?very different from, the history) -> the history (6962ms)\nWhen was Algeria colonized?\tthe cuts\t-13.451320629820207\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be organize, $x) -> (Algeria, was instrumental in organizing, the cuts) -> the cuts (5953ms)\nWhen was Algeria colonized?\tthe first record\t-13.464385026549412\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria, are thought to provide, the first record) -> the first record (6961ms)\nWhen was Algeria colonized?\tthe arc\t-13.471592612429646\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, is the third link in, the arc) -> the arc (6961ms)\nWhen was Algeria colonized?\tKouba\t-13.53613595668863\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Kouba, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kouba,%20Algeria) -> Kouba (8833ms)\nWhen was Algeria colonized?\tthe list\t-13.543078617590613\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be add, $x) -> (Algeria, can now be added to, the list) -> the list (5737ms)\nWhen was Algeria colonized?\tthe last remaining colony\t-13.555094954743254\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be say, $x) -> (Algeria Western Sahara, is said to be, the last remaining colony) -> the last remaining colony (7013ms)\nWhen was Algeria colonized?\tthe regional strategy\t-13.575793936049545\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria today, is linked to, the regional strategy) -> the regional strategy (7013ms)\nWhen was Algeria colonized?\tTuareg\t-13.58393528806969\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Tuareg, are also found in, southeastern Algeria) -> Tuareg (8833ms)\nWhen was Algeria colonized?\tthe same offence\t-13.63657044586462\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be time, $x) -> (Algeria, was tried three times for, the same offence) -> the same offence (7013ms)\nWhen was Algeria colonized?\tthe declaration\t-13.794862128377344\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, hope, $x) -> (Algeria, had hoped, the declaration) -> the declaration (6024ms)\nWhen was Algeria colonized?\tthe failure\t-13.888423431427857\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, is the result of, the failure) -> the failure (7013ms)\nWhen was Algeria colonized?\tthe second largest country\t-14.165217279073929\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, also happens to be, the second largest country) -> the second largest country (7013ms)\nWhen was Algeria colonized?\thalf a century ago\t-14.167456472385997\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, happened, half a century ago) -> half a century ago (7013ms)\nWhen was Algeria colonized?\thalf\t-14.243107765899673\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (half, found in, southeast Algeria) -> half (8834ms)\nWhen was Algeria colonized?\tthe very word\t-14.395863080265826\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, the very word) -> the very word (7070ms)\nWhen was Algeria colonized?\tthe most fortuitous moment\t-14.50192255836463\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria Kennedy, bided his time for, the most fortuitous moment) -> the most fortuitous moment (7070ms)\nWhen was Algeria colonized?\tthe matter\t-14.51879253511786\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, achieved great results in, the matter) -> the matter (7070ms)\nWhen was Algeria colonized?\tThe macaca monkeys\t-14.533083860461176\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (The macaca monkeys, are found in, Algeria) -> The macaca monkeys (8872ms)\nWhen was Algeria colonized?\tthe ball\t-14.5660178451571\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria, have any time on, the ball) -> the ball (7071ms)\nWhen was Algeria colonized?\tthe guard\t-14.577732025751772\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, will change, $x) -> (Algeria, will require a changing of, the guard) -> the guard (5953ms)\nWhen was Algeria colonized?\tThe slender-horned gazelle\t-14.579687166503284\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (The slender-horned gazelle, was formerly found in, Algeria) -> The slender-horned gazelle (8872ms)\nWhen was Algeria colonized?\tthe defeat\t-14.639778695564623\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria , Vietnam and Afghanistan, resulted in, the defeat) -> the defeat (7119ms)\nWhen was Algeria colonized?\tthe government\t-14.670165141185779\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, end up, $x) -> (Algeria, ended up with, the government) -> the government (7119ms)\nWhen was Algeria colonized?\tthe tournament\t-14.69990410867132\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, hope, $x) -> (Algeria England, had high hopes going into, the tournament) -> the tournament (6024ms)\nWhen was Algeria colonized?\tthe international respect\t-14.70520933248249\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, risk, $x) -> (Algeria, now runs the risk of losing, the international respect) -> the international respect (7119ms)\nWhen was Algeria colonized?\tthe meantime\t-14.736384685005952\tWhen was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, much will have happened in, the meantime) -> the meantime (7119ms)\nWhat is Dick Clark's date of birth?\tLinn County\t-5.946920588613317\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Place of birth, Linn County) -> Linn County (3867ms)\nWhat is Dick Clark's date of birth?\tMount Vernon\t-6.190262434654907\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Place of birth, Mount Vernon) -> Mount Vernon (3867ms)\nWhat is Dick Clark's date of birth?\t1928-09-14\t-6.3988658451533516\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Date of birth, 1928-09-14) -> 1928-09-14 (3927ms)\nWhat is Dick Clark's date of birth?\t1929-11-30\t-6.3988658451533516\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Date of birth, 1929-11-30) -> 1929-11-30 (3867ms)\nWhat is Dick Clark's date of birth?\t1944-01-05\t-6.3988658451533516\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Date of birth, 1944-01-05) -> 1944-01-05 (3867ms)\nWhat is Dick Clark's date of birth?\tFindlay\t-6.901282879589413\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Place of birth, Findlay) -> Findlay (3927ms)\nWhat is Dick Clark's date of birth?\t1929\t-7.908898679885201\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Date of birth, 1929) -> 1929 (3927ms)\nWhat is Dick Clark's date of birth?\t1959-09-27\t-8.073436171154071\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's World of Talent, Air date of first episode, 1959-09-27) -> 1959-09-27 (5404ms)\nWhat is Dick Clark's date of birth?\t1959-12-20\t-8.073436171154071\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's World of Talent, Air date of final episode, 1959-12-20) -> 1959-12-20 (5404ms)\nWhat is Dick Clark's date of birth?\t2012-04-18\t-8.106422827873063\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Date of death, 2012-04-18) -> 2012-04-18 (5404ms)\nWhat is Dick Clark's date of birth?\t1963-11-23\t-8.320836096546508\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's Celebrity Party, Original air date, 1963-11-23) -> 1963-11-23 (5484ms)\nWhat is Dick Clark's date of birth?\t1958-11-29\t-8.320836096546508\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's Birthday Show, Original air date, 1958-11-29) -> 1958-11-29 (5484ms)\nWhat is Dick Clark's date of birth?\t1999-02-16\t-8.473988431313254\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's Rockin' Make-Out Party '99, Original air date, 1999-02-16) -> 1999-02-16 (5484ms)\nWhat is Dick Clark's date of birth?\t1958-02-15\t-8.473988431313254\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (The Dick Clark Show, Air date of first episode, 1958-02-15) -> 1958-02-15 (5572ms)\nWhat is Dick Clark's date of birth?\t1994-01-01\t-8.473988431313254\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's All-Time 21 Hits, Volume 1, Release Date, 1994-01-01) -> 1994-01-01 (5484ms)\nWhat is Dick Clark's date of birth?\t1960-09-10\t-8.473988431313254\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (The Dick Clark Show, Air date of final episode, 1960-09-10) -> 1960-09-10 (5484ms)\nWhat is Dick Clark's date of birth?\t1988-09-19\t-8.473988431313254\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Live! Dick Clark Presents, Air date of first episode, 1988-09-19) -> 1988-09-19 (5484ms)\nWhat is Dick Clark's date of birth?\t1972-12-31\t-8.588852682388314\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark?s New Year?s Rockin? Eve, Air date of first episode, 1972-12-31) -> 1972-12-31 (5572ms)\nWhat is Dick Clark's date of birth?\t1959-06-24\t-8.61321782655575\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Original air date, 1959-06-24) -> 1959-06-24 (5572ms)\nWhat is Dick Clark's date of birth?\t2004-11-12\t-8.61321782655575\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Original air date, 2004-11-12) -> 2004-11-12 (5572ms)\nWhat is Dick Clark's date of birth?\tSanta Monica\t-8.672873102393357\tWhat is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> when be dick clark s death ? -> $x: (dick clark, death, $x) -> (Dick Clark, Place of death, Santa Monica) -> Santa Monica (6367ms)\nWhat is Dick Clark's date of birth?\t1960-10-23\t-8.678191544335583\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark Show, Original air date, 1960-10-23) -> 1960-10-23 (5572ms)\nWhat is Dick Clark's date of birth?\t2003-12-31\t-8.7331693055339\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Erin Brody, Dick Clark, Original air date, 2003-12-31) -> 2003-12-31 (5572ms)\nWhat is Dick Clark's date of birth?\t2002-01-29\t-8.7331693055339\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Wu Tang, Original air date, 2002-01-29) -> 2002-01-29 (5824ms)\nWhat is Dick Clark's date of birth?\t1958-01-02\t-8.780293100846746\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Andy Williams / Dick Clark, Original air date, 1958-01-02) -> 1958-01-02 (5824ms)\nWhat is Dick Clark's date of birth?\t1994-02-14\t-8.821133723451211\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Marisa Berenson, Teenage Fanclub, Original air date, 1994-02-14) -> 1994-02-14 (5824ms)\nWhat is Dick Clark's date of birth?\t1997-05-19\t-8.821133723451211\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Helen Hunt, Dick Clark, Brian Kiley, Original air date, 1997-05-19) -> 1997-05-19 (5824ms)\nWhat is Dick Clark's date of birth?\t2000-12-28\t-8.856869268230119\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (David Alan Grier, Dick Clark, Amy Sedaris, Original air date, 2000-12-28) -> 2000-12-28 (5824ms)\nWhat is Dick Clark's date of birth?\t2006-10-25\t-8.888400631270331\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Sarah Jessica Parker, Stephen King, Dick Clark Memorabelia, Original air date, 2006-10-25) -> 2006-10-25 (5824ms)\nWhat is Dick Clark's date of birth?\t1980-06-03\t-8.916428509528298\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark / Denise McKenna / Sarah Purcell / Flip Wilson, Original air date, 1980-06-03) -> 1980-06-03 (5904ms)\nWhat is Dick Clark's date of birth?\t1966-11-20\t-8.941506084811742\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dave Clark 5 / Bobby Vinton / Barbara McNair / Dick Cavett, Original air date, 1966-11-20) -> 1966-11-20 (5904ms)\nWhat is Dick Clark's date of birth?\t1980-03-04\t-8.941506084811742\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Loni Anderson / Dick Clark / Peggy Fleming / Gallagher / Steve Martin, Original air date, 1980-03-04) -> 1980-03-04 (5904ms)\nWhat is Dick Clark's date of birth?\tMyocardial infarction\t-8.960359421255085\tWhat is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> when be dick clark s death ? -> $x: (dick clark, death, $x) -> (Dick Clark, Cause of death, Myocardial infarction) -> Myocardial infarction (6367ms)\nWhat is Dick Clark's date of birth?\tDavid Spade\t-9.387531776996482\tWhat is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> what be dick clark s character ? -> $x: (dick clark, character, $x) -> $x: ($x, character, dick clark) -> (David Spade, Characters played, Dick Clark's Receptionist) -> David Spade (6671ms)\nWhat is Dick Clark's date of birth?\t1978\t-9.58346900588592\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's LIVE Wednesday, Air date of first episode, 1978) -> 1978 (5904ms)\nWhat is Dick Clark's date of birth?\tThe Savage Seven\t-9.900431559598506\tWhat is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> what be dick clark s character ? -> $x: (dick clark, character, $x) -> $x: ($x, production, dick clark) -> (The Savage Seven, Production companies, Dick Clark Productions) -> The Savage Seven (6457ms)\nWhat is Dick Clark's date of birth?\t1994\t-9.913335573075836\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's American Bandstand Gold: 1965-1975, Publication date, 1994) -> 1994 (5904ms)\nWhat is Dick Clark's date of birth?\tThe Woman Who Willed a Miracle\t-9.918501898480361\tWhat is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> what be dick clark s character ? -> $x: (dick clark, character, $x) -> $x: ($x, production, dick clark) -> (The Woman Who Willed a Miracle, Production companies, Dick Clark Productions) -> The Woman Who Willed a Miracle (6456ms)\nWhat is Dick Clark's date of birth?\t2001\t-9.949987413874716\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's #1's: 50s to 70s \"When AM Radio Was King\", Volume 6, Release Date, 2001) -> 2001 (5983ms)\nWhat is Dick Clark's date of birth?\t1986\t-9.984021266045104\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's easygoing guide to good grooming, Publication date, 1986) -> 1986 (6020ms)\nWhat is Dick Clark's date of birth?\t2012\t-10.098885517120163\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's Primetime New Year's Rockin' Eve 2013, Initial release date, 2012) -> 2012 (6020ms)\nWhat is Dick Clark's date of birth?\t1979\t-10.1232506612876\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark Architecture, Date founded, 1979) -> 1979 (6020ms)\nWhat is Dick Clark's date of birth?\t1957\t-10.1232506612876\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark Productions, Date founded, 1957) -> 1957 (6020ms)\nWhat is Dick Clark's date of birth?\t1999\t-10.259695468625246\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (American Bandstand: Dick Clark and the Making of a Rock 'n' Roll Empire, Publication date, 1999) -> 1999 (6020ms)\nWhat is Dick Clark's date of birth?\t1997\t-10.259695468625246\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (American Bandstand: Dick Clark and the making of a rock 'n' roll empire, Publication date, 1997) -> 1997 (6020ms)\nWhat is Dick Clark's date of birth?\t2000\t-10.290325935578595\tWhat is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dicks Clarks Amern Band Lit G, Publication date, 2000) -> 2000 (6099ms)\nWhat is Dick Clark's date of birth?\tJ. D. Santen\t-12.360862958217927\tWhat is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> who train dick clark ? -> $x: ($x, train, dick clark) -> (J. D. Santen, is trained by, Dick Clark) -> J. D. Santen (9912ms)\nWhat is Dick Clark's date of birth?\ttrue\t-12.4004941202205\tWhat is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> what be dick clark s character ? -> $x: (dick clark, character, $x) -> $x: (dick clark, production, $x) -> (Dick Clark's World of Talent, Currently in production, true) -> true (6367ms)\nWho did the Prince Edward marry?\ta German princess\t-0.9192973410028679\tWho did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> (the English Prince Edward, had married, a German princess) -> a German princess (3522ms)\nWho did the Prince Edward marry?\tPrincess Alexandra\t-1.5577213012568014\tWho did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> (1863 Edward , Prince, marries, Princess Alexandra) -> Princess Alexandra (4909ms)\nWho did the Prince Edward marry?\tSophie Rhys-Jones\t-2.0589890012191456\tWho did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> (Prince Edward, married, Sophie Rhys-Jones) -> Sophie Rhys-Jones (4908ms)\nWho did the Prince Edward marry?\tJoan\t-3.042505866562246\tWho did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> (Prince Edward, eventually married, Joan) -> Joan (4972ms)\nWho did the Prince Edward marry?\tGiselle\t-5.973846836978462\tWho did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> $x: ($x, want to marry, prince edward) -> (Giselle, wants to marry, Prince Edward) -> Giselle (6213ms)\nWho did the Prince Edward marry?\ta pauper\t-8.933813526600682\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> (Prince Edward, has to live as, a pauper) -> a pauper (6516ms)\nWho did the Prince Edward marry?\tthe American\t-9.447422903416959\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (the American, married, Prince Edward) -> the American (7373ms)\nWho did the Prince Edward marry?\tthe Countess\t-9.864471581771085\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (the Countess, is married to, Prince Edward) -> the Countess (7373ms)\nWho did the Prince Edward marry?\tSophie Rhys\t-10.122988307493612\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (Sophie Rhys, married, Prince Edward) -> Sophie Rhys (7373ms)\nWho did the Prince Edward marry?\tJasper\t-10.507542066840546\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> (Prince Edward Island, Lived in, Jasper) -> Jasper (6515ms)\nWho did the Prince Edward marry?\tCan gays and lesbians\t-10.815583378151233\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (Can gays and lesbians, get married on, Prince Edward Island) -> Can gays and lesbians (7373ms)\nWho did the Prince Edward marry?\tDenmark\t-11.150841417961278\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (Denmark, married, Prince Albert Edward) -> Denmark (7373ms)\nWho did the Prince Edward marry?\tSophie\t-11.483345467361715\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (Sophie, would marry, Prince Edward) -> Sophie (7660ms)\nWho did the Prince Edward marry?\t1881\t-11.555135666595854\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> (Prince Edward Island, living, 1881) -> 1881 (6515ms)\nWho did the Prince Edward marry?\tgrades\t-12.097033941303053\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> $x: (prince edward, attend school, $x) -> (Prince Edward Island, attend school from, grades) -> grades (9017ms)\nWho did the Prince Edward marry?\tThe couple\t-12.136385898633055\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (The couple, were married in, Prince Edward County) -> The couple (7660ms)\nWho did the Prince Edward marry?\tTewkesbury\t-12.328860527133024\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> $x: (prince edward, be be kill, $x) -> (Edward Prince, is killed at, Tewkesbury) -> Tewkesbury (8361ms)\nWho did the Prince Edward marry?\tthe battle\t-12.724613342989322\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> $x: (prince edward, be be kill, $x) -> (Prince Edward, was killed during, the battle) -> the battle (8361ms)\nWho did the Prince Edward marry?\tthe battlefield\t-12.819287068186696\tWho did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> $x: (prince edward, be be kill, $x) -> (Edward Prince, was killed on, the battlefield) -> the battlefield (8361ms)\nWhen was the White House built?\t1936\t3.274248426432216\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (the white house, was built in, 1936) -> 1936 (3111ms)\nWhen was the White House built?\t1792\t3.100945678320899\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, was built in, 1792) -> 1792 (3111ms)\nWhen was the White House built?\t1902\t3.0093862479446227\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, was originally built in, 1902) -> 1902 (3111ms)\nWhen was the White House built?\t1890\t2.95721856515009\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (The Little White House, was built in, 1890) -> 1890 (3111ms)\nWhen was the White House built?\t1904\t2.928988852228486\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (The white clapboard house, was built in, 1904) -> 1904 (3781ms)\nWhen was the White House built?\t1868\t2.917979831095663\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (The White County Court House, was built in, 1868) -> 1868 (3781ms)\nWhen was the White House built?\t1943\t2.5750159280941687\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (?The White House ?, was built in, 1943) -> 1943 (3781ms)\nWhen was the White House built?\t1856\t1.0747222688631815\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be erect in, $x) -> (the White House, was erected in, 1856) -> 1856 (5177ms)\nWhen was the White House built?\t1824\t0.987578907497134\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be construct in, $x) -> (the White House, was constructed in, 1824) -> 1824 (5674ms)\nWhen was the White House built?\t1817\t0.9765117453591254\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be rebuild in, $x) -> (the White House, was rebuilt in, 1817) -> 1817 (4958ms)\nWhen was the White House built?\t1906\t0.8380965272559369\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (the White House, built in, 1906) -> 1906 (4958ms)\nWhen was the White House built?\t1911\t0.7639841993116216\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be demolish in, $x) -> (the White House stables, had been demolished back in, 1911) -> 1911 (5318ms)\nWhen was the White House built?\t1822\t0.701994597736292\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (white house, were built in, 1822) -> 1822 (5033ms)\nWhen was the White House built?\t1876\t0.1323653010010104\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> ('s Home Page White County Heritage House, built in, 1876) -> 1876 (5223ms)\nWhen was the White House built?\t1786\t-0.1306489263299646\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, date back to, $x) -> (the Bishop White House, dates back to, 1786) -> 1786 (6153ms)\nWhen was the White House built?\tMarch 2009\t-0.3085413647584718\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be complete in, $x) -> (the White House, was completed in, March 2009) -> March 2009 (6054ms)\nWhen was the White House built?\t1800\t-0.3387941715182232\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be complete in, $x) -> (The White House, was completed in, 1800) -> 1800 (6054ms)\nWhen was the White House built?\t1878\t-0.5511425234581182\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, date back to, $x) -> (The White House Easter Egg Roll, dates back to, 1878) -> 1878 (6154ms)\nWhen was the White House built?\t2007\t-0.6540577704294841\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be remodel in, $x) -> (the White House Situation Room, was remodeled in, 2007) -> 2007 (5798ms)\nWhen was the White House built?\tWWII\t-0.8344920450446978\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (the White House East Wing, was built in, WWII) -> WWII (5318ms)\nWhen was the White House built?\tDecember\t-1.0138564183875425\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, was built in, December) -> December (5318ms)\nWhen was the White House built?\tthe District\t-1.0145407061036305\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, is the oldest public building in, the District) -> the District (5358ms)\nWhen was the White House built?\tJanuary 2012\t-1.2645105950915645\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, open in, $x) -> (the White House, opened in, January 2012) -> January 2012 (5534ms)\nWhen was the White House built?\t2001\t-1.3909694058839013\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, institute in, $x) -> (the White House surveillance program, was instituted in, 2001) -> 2001 (9231ms)\nWhen was the White House built?\tlarge part\t-1.4167807310273894\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, were built in, large part) -> large part (5412ms)\nWhen was the White House built?\tDec 17 , 1999\t-1.9048204162085258\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, date back to, $x) -> (the White House memo, dates back to, Dec 17 , 1999) -> Dec 17 , 1999 (6154ms)\nWhen was the White House built?\t1975\t-1.9596791404288458\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, buy in, $x) -> (Even the U.S. White House, bought one in, 1975) -> 1975 (9070ms)\nWhen was the White House built?\tApril 1977\t-1.9905942953009457\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, in acquire, $x) -> (the White House, had been acquired in, April 1977) -> April 1977 (8646ms)\nWhen was the White House built?\tJanuary\t-2.0143661778167683\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be close in, $x) -> (The White House, is closed in, January) -> January (5798ms)\nWhen was the White House built?\t2008\t-2.0597032567331213\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, design in, $x) -> (a White House, designed in, 2008) -> 2008 (9662ms)\nWhen was the White House built?\t2009\t-2.1288617244092385\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, program in, $x) -> (The White House and teachers unions, killed the program in, 2009) -> 2009 (9231ms)\nWhen was the White House built?\t1970\t-2.1512888076749053\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, date to, $x) -> (? White Row housing ?, dates back to about, 1970) -> 1970 (9726ms)\nWhen was the White House built?\tWashington\t-2.2190381831561496\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, was built in, Washington) -> Washington (5410ms)\nWhen was the White House built?\t1957\t-2.3393615990845618\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, buy in, $x) -> (The big , white-columned house Presley, bought in, 1957) -> 1957 (9070ms)\nWhen was the White House built?\tthe late 1700\t-2.421777803388036\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be design in, $x) -> (the White House, was designed in, the late 1700) -> the late 1700 (6053ms)\nWhen was the White House built?\tthe 1700s\t-2.438430365931743\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (his big , white farm house, was built in, the 1700s) -> the 1700s (5411ms)\nWhen was the White House built?\t1949-52\t-2.550907134701113\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be renovate in, $x) -> (the White House, was thoroughly renovated in, 1949-52) -> 1949-52 (6119ms)\nWhen was the White House built?\ta hill\t-2.5789598652161154\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> (The typical little white houses, are built on, a hill) -> a hill (5410ms)\nWhen was the White House built?\t1845-46\t-2.7727179178294357\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (a Georgian style white clapboard house, was built in, 1845-46) -> 1845-46 (5534ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/Backstairs%20at%20the%20White%20House\t-3.1344692675107924\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be found on, $x) -> (backstairs at the white house, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Backstairs%20at%20the%20White%20House) -> http://en.wikipedia.org/wiki/Backstairs%20at%20the%20White%20House (8215ms)\nWhen was the White House built?\tWednesday\t-3.1909897396388307\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be finish on, $x) -> (the White House Situation Room, was just finishing on, Wednesday) -> Wednesday (8923ms)\nWhen was the White House built?\tdc\t-3.260501102845401\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (White house, is a building located in the city, dc) -> dc (5600ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/First%20White%20House%20of%20the%20Confederacy\t-3.310398103345414\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be found on, $x) -> (First White House of the Confederacy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/First%20White%20House%20of%20the%20Confederacy) -> http://en.wikipedia.org/wiki/First%20White%20House%20of%20the%20Confederacy (8214ms)\nWhen was the White House built?\tfact\t-3.363405191827636\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, be the foundation of, the White House) -> (fact, are the foundation of, the White House) -> fact (8214ms)\nWhen was the White House built?\tthe capital\t-3.530632736280156\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, is the oldest federal building in, the capital) -> the capital (5674ms)\nWhen was the White House built?\tsteps\t-3.5480732494837826\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (beautiful white gray stone houses, are built in, steps) -> steps (5674ms)\nWhen was the White House built?\tthe Pacific\t-3.5482670893873496\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, be the cornerstone of, the White House) -> (the Pacific, is the cornerstone of, the White House) -> the Pacific (8923ms)\nWhen was the White House built?\tSeptember\t-3.596444322537911\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, proclaim by, the White House) -> (September, proclaimed annually by, the White House) -> September (8431ms)\nWhen was the White House built?\tthe same year\t-3.634546198201247\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> (The William White House, was apparently built in, the same year) -> the same year (5674ms)\nWhen was the White House built?\t35 years\t-3.7099719870881165\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, have be base on, $x) -> (the White House, has been based on, 35 years) -> 35 years (8133ms)\nWhen was the White House built?\tCollege Drive\t-3.7105619379099446\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> ('the white house, was built on, College Drive) -> College Drive (5894ms)\nWhen was the White House built?\trecent years\t-3.712308129962964\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be abandon in, $x) -> (the White House, has been abandoned in, recent years) -> recent years (5985ms)\nWhen was the White House built?\tan invitation\t-3.7149310899935775\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be open in, $x) -> (The White House, is opening its doors in, an invitation) -> an invitation (6119ms)\nWhen was the White House built?\tDenver\t-3.8586531918980524\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be erect in, $x) -> (the White House, had been erected in, Denver) -> Denver (5894ms)\nWhen was the White House built?\tan agreement\t-3.863576090880101\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be close in, $x) -> (the White House, apparently are closing in on, an agreement) -> an agreement (5894ms)\nWhen was the White House built?\ta deal\t-3.9669570810210653\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be close in, $x) -> (the White House, were closing in on, a deal) -> a deal (5894ms)\nWhen was the White House built?\tthe USA\t-3.9996428003073214\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be be develop in, $x) -> (the White House web page, were either developed in, the USA) -> the USA (6054ms)\nWhen was the White House built?\tfull public view\t-4.048588670493872\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be open in, $x) -> (the Bush White House, is now open in, full public view) -> full public view (6119ms)\nWhen was the White House built?\ta grid system\t-4.201476505134028\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (It?s white houses, are built in, a grid system) -> a grid system (5985ms)\nWhen was the White House built?\tthe back\t-4.243362773031283\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> (The White House and Capitol, were built on, the back) -> the back (5985ms)\nWhen was the White House built?\tAdobe Illustrator\t-4.298016510984263\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be open in, $x) -> (the White House PDF file, is opened in, Adobe Illustrator) -> Adobe Illustrator (6119ms)\nWhen was the White House built?\tthe United States\t-4.555783819636918\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, restore in, $x) -> (the White House, can restore confidence in, the United States) -> the United States (6195ms)\nWhen was the White House built?\tArizona\t-4.642766418094627\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be pile on, $x) -> (the White House, are piling the pressure on, Arizona) -> Arizona (8339ms)\nWhen was the White House built?\tthe creation\t-4.722371095876105\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be build after, $x) -> (The White House, was built after, the creation) -> the creation (6195ms)\nWhen was the White House built?\tvarious internet sites\t-4.744558834259375\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be found on, $x) -> (the White House, can be found on, various internet sites) -> various internet sites (8214ms)\nWhen was the White House built?\trival programs\t-4.785951818489222\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be found on, $x) -> (the White House, would be found only on, rival programs) -> rival programs (8214ms)\nWhen was the White House built?\tIran\t-4.787318613101669\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, program in, $x) -> (the White House, sees nuclear-weapons programs in, Iran) -> Iran (9473ms)\nWhen was the White House built?\tthe US capital\t-4.819274792812869\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, close in, $x) -> (the White House, has closed streets in, the US capital) -> the US capital (6351ms)\nWhen was the White House built?\tpersona\t-4.823243655446862\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, have be base on, $x) -> (the White House, has always been based on, persona) -> persona (8132ms)\nWhen was the White House built?\ta property high up\t-4.857571865619353\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be situate on, $x) -> (The White House, is situated on, a property high up) -> a property high up (8028ms)\nWhen was the White House built?\tthe GOP nominee\t-4.858646502063664\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, be the only way to, the White House) -> (the GOP nominee, is the only way to win, the White House) -> the GOP nominee (8028ms)\nWhen was the White House built?\trocks\t-4.9334672685340974\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (tall white houses, built on, rocks) -> rocks (6373ms)\nWhen was the White House built?\tthree themes\t-4.952090014690254\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (White House and Department, is built on, three themes) -> three themes (6372ms)\nWhen was the White House built?\tVietnam\t-4.999064886520512\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, complete in, $x) -> (the White House, completed assignments in, Vietnam) -> Vietnam (6373ms)\nWhen was the White House built?\tGate Street\t-5.053452465385687\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the white frame house Elijah Walker, built on, Gate Street) -> Gate Street (6372ms)\nWhen was the White House built?\trules\t-5.068844015646047\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the White House?s Office, build on, rules) -> rules (6373ms)\nWhen was the White House built?\t1792 and 1800\t-5.110983675327038\tWhen was the White House built? -> when be [ the white house ] build ? -> what be the white house build ? -> $x: (the white house, build, $x) -> (The White House, was built between, 1792 and 1800) -> 1792 and 1800 (13582ms)\nWhen was the White House built?\tThomas Jefferson\t-5.185120628850512\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, date back to, $x) -> (the White House, dates back to, Thomas Jefferson) -> Thomas Jefferson (6566ms)\nWhen was the White House built?\tthe shape\t-5.2120980237143\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be construct in, $x) -> (the White House, is constructed in, the shape) -> the shape (6566ms)\nWhen was the White House built?\tspending\t-5.26593052415297\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, have fit, $x) -> (the White House, had to fit, spending) -> spending (9726ms)\nWhen was the White House built?\tdaddy\t-5.393539974712716\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, want to come to, the White House) -> (daddy, want to come to, the White House) -> daddy (8431ms)\nWhen was the White House built?\tthe White House lawn\t-5.412455847586373\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, erect on, $x) -> (the White House mural, erected on, the White House lawn) -> the White House lawn (8431ms)\nWhen was the White House built?\ta small hill\t-5.488934245810724\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, sit atop, $x) -> (the white columned house, sits atop, a small hill) -> a small hill (8500ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/Little%20White%20House\t-5.525204622566941\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (Little White House, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Little%20White%20House) -> http://en.wikipedia.org/wiki/Little%20White%20House (11279ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/David%20White%20House\t-5.525204622566941\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (David White House, can be found on Wikipedia at, http://en.wikipedia.org/wiki/David%20White%20House) -> http://en.wikipedia.org/wiki/David%20White%20House (11279ms)\nWhen was the White House built?\timportance\t-5.543590972665452\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (the White House, had systematically built up in, importance) -> importance (6645ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%20House%20Black%20Market\t-5.5958903155362085\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Black Market, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Black%20Market) -> http://en.wikipedia.org/wiki/White%20House%20Black%20Market (11279ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%20House%20Press%20Secretary\t-5.5958903155362085\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Press Secretary, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Press%20Secretary) -> http://en.wikipedia.org/wiki/White%20House%20Press%20Secretary (11279ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/Andrew%20Dickson%20White%20House\t-5.5958903155362085\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (Andrew Dickson White House, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Andrew%20Dickson%20White%20House) -> http://en.wikipedia.org/wiki/Andrew%20Dickson%20White%20House (11279ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%20House%20Historical%20Association\t-5.5958903155362085\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (white house historical association, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Historical%20Association) -> http://en.wikipedia.org/wiki/White%20House%20Historical%20Association (11279ms)\nWhen was the White House built?\tJackson Hole\t-5.616894863079959\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (a white-painted ranch house, built in, Jackson Hole) -> Jackson Hole (6645ms)\nWhen was the White House built?\tMain Street\t-5.641353940552146\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, have stand on, $x) -> (The white house, has stood on, Main Street) -> Main Street (8431ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%20House%20Chief%20of%20Staff\t-5.657151249442907\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Chief of Staff, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Chief%20of%20Staff) -> http://en.wikipedia.org/wiki/White%20House%20Chief%20of%20Staff (11432ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%20House%20Deputy%20Chief%20of%20Staff\t-5.710754566611268\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Deputy Chief of Staff, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Deputy%20Chief%20of%20Staff) -> http://en.wikipedia.org/wiki/White%20House%20Deputy%20Chief%20of%20Staff (11432ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%20House%20Office%20of%20Public%20Engagement%20and%20Intergovernmental%20Affairs\t-5.710754566611268\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Office of Public Liaison, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Office%20of%20Public%20Engagement%20and%20Intergovernmental%20Affairs) -> http://en.wikipedia.org/wiki/White%20House%20Office%20of%20Public%20Engagement%20and%20Intergovernmental%20Affairs (11432ms)\nWhen was the White House built?\tbehalf of human dignity\t-5.712942950392456\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the White House, will build on, behalf of human dignity) -> behalf of human dignity (6667ms)\nWhen was the White House built?\tthe top\t-5.746653585945351\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be perch on, $x) -> (The bright white houses, are perched on, the top) -> the top (8028ms)\nWhen was the White House built?\tthe tradition\t-5.7567494229254095\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be design in, $x) -> (The White House Rose Garden, is designed in, the tradition) -> the tradition (6667ms)\nWhen was the White House built?\tthe last day\t-5.789370521382115\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be extend in, $x) -> (the White House, has been greatly extended in, the last day) -> the last day (6667ms)\nWhen was the White House built?\tNovember 1 , 1800\t-5.829245813461184\tWhen was the White House built? -> when be [ the white house ] build ? -> when be the white house complete ? -> $x: (the white house, be complete on, $x) -> (the White House, was completed on, November 1 , 1800) -> November 1 , 1800 (15128ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%2DMeyer%20House\t-5.855071189756855\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White-Meyer House, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%2DMeyer%20House) -> http://en.wikipedia.org/wiki/White%2DMeyer%20House (11432ms)\nWhen was the White House built?\ta cliff\t-5.869027857106126\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, sit up on, $x) -> (The White House Ruins, sit high up on, a cliff) -> a cliff (8214ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%2Dshouldered%20House%20Moth\t-5.902194985069701\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White-shouldered House Moth, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%2Dshouldered%20House%20Moth) -> http://en.wikipedia.org/wiki/White%2Dshouldered%20House%20Moth (11432ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%2Dbellied%20Lesser%20House%20Bat\t-5.943035607674166\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White-bellied Lesser House Bat, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%2Dbellied%20Lesser%20House%20Bat) -> http://en.wikipedia.org/wiki/White%2Dbellied%20Lesser%20House%20Bat (11432ms)\nWhen was the White House built?\tIRS activities\t-5.950016464247196\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, date to, $x) -> (the White House, was brought up-to-date on, IRS activities) -> IRS activities (9791ms)\nWhen was the White House built?\tthe assumption\t-6.115672814947599\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be premise on, $x) -> (the White House today, is premised on, the assumption) -> the assumption (8132ms)\nWhen was the White House built?\thttp://en.wikipedia.org/wiki/White%20House%20Bridge\t-6.184937756946771\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (white_house_bridge, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Bridge) -> http://en.wikipedia.org/wiki/White%20House%20Bridge (11432ms)\nWhen was the White House built?\tthe work\t-6.281075729617557\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the White House, builds on, the work) -> the work (6711ms)\nWhen was the White House built?\tpositions\t-6.296296372190527\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, take credit for, $x) -> (the White House, is taking credit for, positions) -> positions (11586ms)\nWhen was the White House built?\tthe uncompensated labor\t-6.324408061550689\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be build through, $x) -> (the White House, were built through, the uncompensated labor) -> the uncompensated labor (8500ms)\nWhen was the White House built?\t?science ?\t-6.419777285091763\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, draw upon, $x) -> (the White House, has drawn upon, ?science ?) -> ?science ? (10969ms)\nWhen was the White House built?\tthe d?tente policy\t-6.4557944198670745\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the White House, determined to build on, the d?tente policy) -> the d?tente policy (6711ms)\nWhen was the White House built?\tDeponent\t-6.752670687864402\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, forge in, $x) -> (the White House, forged in, Deponent) -> Deponent (9916ms)\nWhen was the White House built?\tthe hillside\t-6.845725682170979\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (A dozen white-washed houses, are built on, the hillside) -> the hillside (6711ms)\nWhen was the White House built?\tcongressional investigations\t-6.851892483149247\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, related to, congressional investigations) -> congressional investigations (11216ms)\nWhen was the White House built?\tthe early 1980s\t-6.86826159828578\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, date to, $x) -> (White House demonstrations, date to, the early 1980s) -> the early 1980s (9942ms)\nWhen was the White House built?\ta seminal time\t-6.906886768414504\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the white house, relate to, a seminal time) -> a seminal time (11216ms)\nWhen was the White House built?\ta music video creation\t-7.057399214279879\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, related to, a music video creation) -> a music video creation (11216ms)\nWhen was the White House built?\tthe floor\t-7.122908918038523\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, found on, $x) -> (the White House cleaning staff, finds on, the floor) -> the floor (8646ms)\nWhen was the White House built?\tjobs\t-7.140442517771194\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, take credit for, $x) -> (the White House, takes credit for creating, jobs) -> jobs (11586ms)\nWhen was the White House built?\tslaves\t-7.15044362213694\tWhen was the White House built? -> when be [ the white house ] build ? -> what be the white house build ? -> $x: (the white house, build, $x) -> (the White House, was built partly by, slaves) -> slaves (15129ms)\nWhen was the White House built?\tthe mandate\t-7.258126608454776\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, found on, $x) -> (the White House, find a compromise on, the mandate) -> the mandate (8646ms)\nWhen was the White House built?\ta 20 turn campaign season\t-7.280874059880485\tWhen was the White House built? -> when be [ the white house ] build ? -> what be the white house build ? -> $x: (the white house, build, $x) -> (the White House, is built round, a 20 turn campaign season) -> a 20 turn campaign season (15128ms)\nWhen was the White House built?\tAfghanistan\t-7.4868362674586955\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, expand on, $x) -> (the White House, expanded their cooperation on, Afghanistan) -> Afghanistan (10969ms)\nWhen was the White House built?\tthe media\t-7.693916018805702\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, aim at provide, $x) -> (the White House, is aimed at providing, the media) -> the media (10742ms)\nWhen was the White House built?\tthe corridor\t-7.749207447650882\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, gathering in, $x) -> (the White House messengers, gathered in, the corridor) -> the corridor (9964ms)\nWhen was the White House built?\tSolyndra\t-8.092806273853874\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (White House, related to, Solyndra) -> Solyndra (11216ms)\nWhen was the White House built?\tthe pattern\t-8.09804189676849\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, be a continuation of, $x) -> (the White House, was only a continuation of, the pattern) -> the pattern (11586ms)\nWhen was the White House built?\tthe past few years\t-8.182017603319109\tWhen was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, purchase in, $x) -> (the White House, had purchased in, the past few years) -> the past few years (9987ms)\nWhen was the White House built?\tthe liberal tax revolt\t-8.493929409437182\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, is also related to, the liberal tax revolt) -> the liberal tax revolt (11217ms)\nWhen was the White House built?\tthe defensive\t-8.524026053583153\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, found on, $x) -> (The White House, found itself on, the defensive) -> the defensive (8646ms)\nWhen was the White House built?\tthe war\t-8.541184120213547\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, related to, the war) -> the war (11216ms)\nWhen was the White House built?\tthe meaning\t-8.68589467213137\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, specifically related to, the meaning) -> the meaning (11216ms)\nWhen was the White House built?\tthe raid\t-8.744314679744999\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, take credit for, $x) -> (The White House, took credit for, the raid) -> the raid (11586ms)\nWhen was the White House built?\tchildren 's health\t-8.955496911324525\tWhen was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (numerous White House conferences, related to, children 's health) -> children 's health (11216ms)\nWhat was the name of Patsy Cline's producer?\tOwen Bradley\t-4.056860612786702\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> (The Patsy Cline Story, Producers, Owen Bradley) -> Owen Bradley (6466ms)\nWhat was the name of Patsy Cline's producer?\tChet Atkins\t-4.448577161324726\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> (Remembering Patsy Cline & Jim Reeves, Producers, Chet Atkins) -> Chet Atkins (6465ms)\nWhat was the name of Patsy Cline's producer?\tThe Best of Patsy Cline\t-6.012400328047809\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Best of Patsy Cline, Primary release, The Best of Patsy Cline) -> The Best of Patsy Cline (8595ms)\nWhat was the name of Patsy Cline's producer?\tPatsy Cline\t-6.054545849384213\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Patsy Cline, Albums, The Best of Patsy Cline) -> Patsy Cline (9429ms)\nWhat was the name of Patsy Cline's producer?\tThe Wonderful World of Patsy Cline\t-6.349153726503442\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Wonderful World of Patsy Cline, Primary release, The Wonderful World of Patsy Cline) -> The Wonderful World of Patsy Cline (8595ms)\nWhat was the name of Patsy Cline's producer?\tVery Best of Patsy Cline\t-6.349153726503442\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Very Best of Patsy Cline, Primary release, The Very Best of Patsy Cline) -> Very Best of Patsy Cline (8595ms)\nWhat was the name of Patsy Cline's producer?\tThe Half Pints\t-6.389434572568244\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (The Half Pints, Albums, Lullaby Renditions of Patsy Cline) -> The Half Pints (9446ms)\nWhat was the name of Patsy Cline's producer?\tThrough the Eyes of Patsy Cline: An Anthology\t-6.481100353379407\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Through the Eyes of Patsy Cline: An Anthology, Primary release, Through the Eyes of Patsy Cline: An Anthology) -> Through the Eyes of Patsy Cline: An Anthology (8595ms)\nWhat was the name of Patsy Cline's producer?\tThe Best of Patsy Cline: Walkin' After Midnight\t-6.481100353379407\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Best of Patsy Cline: Walkin' After Midnight, Primary release, The Best of Patsy Cline: Walkin' After Midnight) -> The Best of Patsy Cline: Walkin' After Midnight (8596ms)\nWhat was the name of Patsy Cline's producer?\tAnne Kirkpatrick\t-6.5066339616406585\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (Anne Kirkpatrick, Tracks Recorded, A Bottle of Wine and Patsy Cline) -> Anne Kirkpatrick (8220ms)\nWhat was the name of Patsy Cline's producer?\tPop music\t-6.519100671159558\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Pop music, Albums, The Legendary Patsy Cline) -> Pop music (9480ms)\nWhat was the name of Patsy Cline's producer?\tCompilation album\t-6.521959386713168\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Compilation album, Albums, The Wonderful World of Patsy Cline) -> Compilation album (9496ms)\nWhat was the name of Patsy Cline's producer?\tWalkin' After Midnight: The Very Best of Patsy Cline\t-6.534703670547769\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Walkin' After Midnight: The Very Best of Patsy Cline, Primary release, Walkin' After Midnight: The Very Best of Patsy Cline) -> Walkin' After Midnight: The Very Best of Patsy Cline (8596ms)\nWhat was the name of Patsy Cline's producer?\tHave You Ever Been Lonely?\t-6.551595868203622\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: (Patsy Cline, composition, $x) -> (Have You Ever Been Lonely (& Patsy Cline), Recording of Composition, Have You Ever Been Lonely?) -> Have You Ever Been Lonely? (6916ms)\nWhat was the name of Patsy Cline's producer?\tTraditional pop music\t-6.551595868203622\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Traditional pop music, Albums, The Country Hall of Fame ? Patsy Cline) -> Traditional pop music (9497ms)\nWhat was the name of Patsy Cline's producer?\tThe Patsy Cline Collection\t-6.624042532495038\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Patsy Cline Collection, Primary release, The Patsy Cline Collection) -> The Patsy Cline Collection (8641ms)\nWhat was the name of Patsy Cline's producer?\tSings Patsy Cline's Favorites\t-6.624042532495038\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Sings Patsy Cline's Favorites, Primary release, Sings Patsy Cline's Favorites) -> Sings Patsy Cline's Favorites (8641ms)\nWhat was the name of Patsy Cline's producer?\tThe Patsy Cline Story\t-6.624042532495038\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Patsy Cline Story, Primary release, The Patsy Cline Story) -> The Patsy Cline Story (8847ms)\nWhat was the name of Patsy Cline's producer?\tPortrait of Patsy Cline\t-6.624042532495038\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Portrait of Patsy Cline, Primary release, Portrait of Patsy Cline) -> Portrait of Patsy Cline (8641ms)\nWhat was the name of Patsy Cline's producer?\tThe Definitive Patsy Cline\t-6.624042532495038\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Definitive Patsy Cline, Primary release, The Definitive Patsy Cline) -> The Definitive Patsy Cline (8641ms)\nWhat was the name of Patsy Cline's producer?\tThe Legendary Patsy Cline\t-6.624042532495038\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Legendary Patsy Cline, Primary release, Patsy Cline) -> The Legendary Patsy Cline (8641ms)\nWhat was the name of Patsy Cline's producer?\tThe Great Patsy Cline\t-6.624042532495038\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Great Patsy Cline, Primary release, The Great Patsy Cline) -> The Great Patsy Cline (8641ms)\nWhat was the name of Patsy Cline's producer?\tC.R. Avery and the Boomchasers\t-6.624042532495038\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (C.R. Avery and the Boomchasers, Tracks Recorded, The Ballad Of Charlie Parker And Patsy Cline) -> C.R. Avery and the Boomchasers (8220ms)\nWhat was the name of Patsy Cline's producer?\tDown by the Riverside\t-6.648615446788891\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Down by the Riverside, Recorded by, Patsy Cline) -> Down by the Riverside (8021ms)\nWhat was the name of Patsy Cline's producer?\tThe Man Upstairs\t-6.648615446788891\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (The Man Upstairs, Recorded by, Patsy Cline) -> The Man Upstairs (8022ms)\nWhat was the name of Patsy Cline's producer?\tStop the World\t-6.648615446788891\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop the World, Recorded by, Patsy Cline) -> Stop the World (8021ms)\nWhat was the name of Patsy Cline's producer?\tThe Wayward Wind\t-6.648615446788891\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (The Wayward Wind, Recorded by, Patsy Cline) -> The Wayward Wind (8022ms)\nWhat was the name of Patsy Cline's producer?\tCountry pop\t-6.648615446788891\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Country pop, Albums, The Patsy Cline Story) -> Country pop (9511ms)\nWhat was the name of Patsy Cline's producer?\tLullaby Renditions of Patsy Cline\t-6.679020293693356\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Lullaby Renditions of Patsy Cline, Primary release, Lullaby Renditions of Patsy Cline) -> Lullaby Renditions of Patsy Cline (8848ms)\nWhat was the name of Patsy Cline's producer?\tA Portrait of Patsy Cline\t-6.679020293693356\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (A Portrait of Patsy Cline, Primary release, A Portrait of Patsy Cline) -> A Portrait of Patsy Cline (8848ms)\nWhat was the name of Patsy Cline's producer?\tAdam Brodsky\t-6.681269203094143\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (Adam Brodsky, Tracks Recorded, Patsy Cline) -> Adam Brodsky (8220ms)\nWhat was the name of Patsy Cline's producer?\tLet The Teardrops Fall\t-6.695739242101736\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Let The Teardrops Fall, Recorded by, Patsy Cline) -> Let The Teardrops Fall (8039ms)\nWhat was the name of Patsy Cline's producer?\tSweet Dreams of Mine\t-6.695739242101736\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Sweet Dreams of Mine, Recorded by, Patsy Cline) -> Sweet Dreams of Mine (8040ms)\nWhat was the name of Patsy Cline's producer?\tTurn the Cards Slowly\t-6.695739242101736\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Turn the Cards Slowly, Recorded by, Patsy Cline) -> Turn the Cards Slowly (8039ms)\nWhat was the name of Patsy Cline's producer?\tThe Heart You Break\t-6.695739242101736\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (The Heart You Break, Recorded by, Patsy Cline) -> The Heart You Break (8040ms)\nWhat was the name of Patsy Cline's producer?\tSweet Dreams of You\t-6.695739242101736\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Sweet Dreams of You, Recorded by, Patsy Cline) -> Sweet Dreams of You (8040ms)\nWhat was the name of Patsy Cline's producer?\tCrystal Sands\t-6.718444444642037\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (Crystal Sands, Tracks Recorded, Bottle of Wine and Patsy Cline) -> Crystal Sands (8220ms)\nWhat was the name of Patsy Cline's producer?\tLive At the Opry\t-6.726144089006201\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Live At the Opry, Primary release, Patsy Cline Live at the Opry) -> Live At the Opry (8848ms)\nWhat was the name of Patsy Cline's producer?\tPatsy Cline Sings Songs of Love\t-6.726144089006201\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Patsy Cline Sings Songs of Love, Primary release, Patsy Cline Sings Songs of Love) -> Patsy Cline Sings Songs of Love (8848ms)\nWhat was the name of Patsy Cline's producer?\tWhy Can't He Be You\t-6.736579864706202\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Why Can't He Be You, Recorded by, Patsy Cline) -> Why Can't He Be You (8146ms)\nWhat was the name of Patsy Cline's producer?\tIf Could See the World\t-6.736579864706202\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (If Could See the World, Recorded by, Patsy Cline) -> If Could See the World (8146ms)\nWhat was the name of Patsy Cline's producer?\tRemembering Patsy Cline\t-6.749730705566855\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Remembering Patsy Cline, Primary release, Remembering Patsy Cline) -> Remembering Patsy Cline (9530ms)\nWhat was the name of Patsy Cline's producer?\tPatsy Cline Collection\t-6.749730705566855\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Patsy Cline Collection, Primary release, Patsy Cline Collection) -> Patsy Cline Collection (8848ms)\nWhat was the name of Patsy Cline's producer?\tThe Universal Masters Collection: Classic Patsy Cline\t-6.766984711610667\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Universal Masters Collection: Classic Patsy Cline, Primary release, The Universal Masters Collection: Classic Patsy Cline) -> The Universal Masters Collection: Classic Patsy Cline (9565ms)\nWhat was the name of Patsy Cline's producer?\tPatsy Cline: Selections From the Patsy Cline Story\t-6.766984711610667\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Patsy Cline: Selections From the Patsy Cline Story, Primary release, Patsy Cline: Selections From the Patsy Cline Story) -> Patsy Cline: Selections From the Patsy Cline Story (9565ms)\nWhat was the name of Patsy Cline's producer?\tWalking After Midnight\t-6.770376636917971\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walking After Midnight, Recorded by, Patsy Cline) -> Walking After Midnight (8238ms)\nWhat was the name of Patsy Cline's producer?\tAin't No Wheels On the Ship\t-6.772315409485109\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Ain't No Wheels On the Ship, Recorded by, Patsy Cline) -> Ain't No Wheels On the Ship (8238ms)\nWhat was the name of Patsy Cline's producer?\tI Fall to Pieces\t-6.772315409485109\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: (Patsy Cline, composition, $x) -> (I Fall to Pieces (& Patsy Cline), Recording of Composition, I Fall to Pieces) -> I Fall to Pieces (7043ms)\nWhat was the name of Patsy Cline's producer?\tThe Late and Great Patsy Cline and Dottie West\t-6.802720256389574\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Late and Great Patsy Cline and Dottie West, Primary release, The Late and Great Patsy Cline and Dottie West) -> The Late and Great Patsy Cline and Dottie West (9598ms)\nWhat was the name of Patsy Cline's producer?\tA Tribute to Patsy Cline / A Portrait of Patsy Cline\t-6.802720256389574\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (A Tribute to Patsy Cline / A Portrait of Patsy Cline, Primary release, A Tribute to Patsy Cline / A Portrait of Patsy Cline) -> A Tribute to Patsy Cline / A Portrait of Patsy Cline (9582ms)\nWhat was the name of Patsy Cline's producer?\tHe Will Do for You What He Has Done\t-6.803846772525321\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (He Will Do for You What He Has Done, Recorded by, Patsy Cline) -> He Will Do for You What He Has Done (8324ms)\nWhat was the name of Patsy Cline's producer?\tWhen Your House Is Not a Home\t-6.803846772525321\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (When Your House Is Not a Home, Recorded by, Patsy Cline) -> When Your House Is Not a Home (8238ms)\nWhat was the name of Patsy Cline's producer?\tI Cried All the Way to the Alter\t-6.803846772525321\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I Cried All the Way to the Alter, Recorded by, Patsy Cline) -> I Cried All the Way to the Alter (8238ms)\nWhat was the name of Patsy Cline's producer?\tStop The World (And Let Me Off)\t-6.803846772525321\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop The World (And Let Me Off), Recorded by, Patsy Cline) -> Stop The World (And Let Me Off) (8238ms)\nWhat was the name of Patsy Cline's producer?\tAlbum\t-6.830540012098551\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Album, Albums, The Best of Patsy Cline) -> Album (9598ms)\nWhat was the name of Patsy Cline's producer?\tJust Out of Reach (Of My Two Arms)\t-6.831874650783288\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Just Out of Reach (Of My Two Arms), Recorded by, Patsy Cline) -> Just Out of Reach (Of My Two Arms) (8324ms)\nWhat was the name of Patsy Cline's producer?\tStop the World (And Let Me Get Off)\t-6.831874650783288\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop the World (And Let Me Get Off), Recorded by, Patsy Cline) -> Stop the World (And Let Me Get Off) (8324ms)\nWhat was the name of Patsy Cline's producer?\tStop the World (And Let Me Go Off)\t-6.831874650783288\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop the World (And Let Me Go Off), Recorded by, Patsy Cline) -> Stop the World (And Let Me Go Off) (8324ms)\nWhat was the name of Patsy Cline's producer?\tWhen Your House Is Not a Home (radio transcription)\t-6.856952226066731\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (When Your House Is Not a Home (radio transcription), Recorded by, Patsy Cline) -> When Your House Is Not a Home (radio transcription) (8324ms)\nWhat was the name of Patsy Cline's producer?\tToday, Tomorrow, & Forever: The Patsy Cline Collection\t-6.862279497687753\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Today, Tomorrow, & Forever: The Patsy Cline Collection, Primary release, Today, Tomorrow, & Forever: The Patsy Cline Collection (disc 2)) -> Today, Tomorrow, & Forever: The Patsy Cline Collection (9613ms)\nWhat was the name of Patsy Cline's producer?\tDon't Ever Leave Me Again: The Patsy Cline Collection\t-6.887357072971197\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Don't Ever Leave Me Again: The Patsy Cline Collection, Primary release, Don't Ever Leave Me Again: The Patsy Cline Collection (disc 3)) -> Don't Ever Leave Me Again: The Patsy Cline Collection (9628ms)\nWhat was the name of Patsy Cline's producer?\tLonely Street\t-6.894206202231269\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Lonely Street, Recorded by, Patsy Cline) -> Lonely Street (8324ms)\nWhat was the name of Patsy Cline's producer?\tAwards Dialogue\t-6.894206202231269\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Awards Dialogue, Recorded by, Patsy Cline) -> Awards Dialogue (8432ms)\nWhat was the name of Patsy Cline's producer?\tStupid Cupid\t-6.894206202231269\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stupid Cupid, Recorded by, Patsy Cline) -> Stupid Cupid (8431ms)\nWhat was the name of Patsy Cline's producer?\tFlatbed Honeymoon\t-6.894206202231269\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Flatbed Honeymoon, Tracks Recorded, Patsy Cline) -> Flatbed Honeymoon (8432ms)\nWhat was the name of Patsy Cline's producer?\tEP\t-6.909385515642594\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (EP, Albums, Patsy Cline) -> EP (9693ms)\nWhat was the name of Patsy Cline's producer?\tJenny Toomey\t-6.924611049135733\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (Jenny Toomey, Tracks Recorded, Patsy Cline) -> Jenny Toomey (9693ms)\nWhat was the name of Patsy Cline's producer?\tKirsten Siggaard\t-6.938188411189923\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Kirsten Siggaard, Albums, Mit Liv Med Patsy Cline) -> Kirsten Siggaard (9693ms)\nWhat was the name of Patsy Cline's producer?\tDark Dark Dark\t-6.9509931333796455\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Dark Dark Dark, Tracks Recorded, Patsy Cline) -> Dark Dark Dark (9708ms)\nWhat was the name of Patsy Cline's producer?\tChris Kennedy\t-6.956056183579378\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, produce, Patsy Cline) -> (Chris Kennedy, Films Produced, Doing Time for Patsy Cline) -> Chris Kennedy (9708ms)\nWhat was the name of Patsy Cline's producer?\t20th Century Masters: The Millennium Collection: The Best of Patsy Cline\t-6.974558175888824\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (20th Century Masters: The Millennium Collection: The Best of Patsy Cline, Primary release, 20th Century Masters: The Millennium Collection: The Best of Patsy Cline) -> 20th Century Masters: The Millennium Collection: The Best of Patsy Cline (9708ms)\nWhat was the name of Patsy Cline's producer?\tHidin? Out\t-6.978482013978805\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Hidin? Out, Recorded by, Patsy Cline) -> Hidin? Out (9844ms)\nWhat was the name of Patsy Cline's producer?\tFoolin' Round\t-6.978482013978805\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Foolin' Round, Recorded by, Patsy Cline) -> Foolin' Round (9723ms)\nWhat was the name of Patsy Cline's producer?\tWalkin' Dream\t-6.978482013978805\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walkin' Dream, Recorded by, Patsy Cline) -> Walkin' Dream (9723ms)\nWhat was the name of Patsy Cline's producer?\tMelissa Swift-Sawyer\t-6.978482013978805\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: (Patsy Cline, artist, $x) -> (Melissa Swift-Sawyer Sings Patsy Cline, Artist, Melissa Swift-Sawyer) -> Melissa Swift-Sawyer (9844ms)\nWhat was the name of Patsy Cline's producer?\tFoolin' 'Round\t-6.978482013978805\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Foolin' 'Round, Recorded by, Patsy Cline) -> Foolin' 'Round (9845ms)\nWhat was the name of Patsy Cline's producer?\tHere's Patsy Cline\t-6.981397980284111\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Here's Patsy Cline, Primary release, Here's Patsy Cline) -> Here's Patsy Cline (9844ms)\nWhat was the name of Patsy Cline's producer?\tSeven Lonely Days\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Seven Lonely Days, Recorded by, Patsy Cline) -> Seven Lonely Days (9960ms)\nWhat was the name of Patsy Cline's producer?\tYes, I Understand\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Yes, I Understand, Recorded by, Patsy Cline) -> Yes, I Understand (9880ms)\nWhat was the name of Patsy Cline's producer?\tMelissa Swift-Sawyer Sings Patsy Cline\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: (Patsy Cline, soundtrack, $x) -> (Always...Patsy Cline, Soundtracks, Melissa Swift-Sawyer Sings Patsy Cline) -> Melissa Swift-Sawyer Sings Patsy Cline (6598ms)\nWhat was the name of Patsy Cline's producer?\tYes I Understand\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Yes I Understand, Recorded by, Patsy Cline) -> Yes I Understand (9905ms)\nWhat was the name of Patsy Cline's producer?\tWalkin' After Midnight\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walkin' After Midnight, Recorded by, Patsy Cline) -> Walkin' After Midnight (9880ms)\nWhat was the name of Patsy Cline's producer?\tCome on In\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Come on In, Recorded by, Patsy Cline) -> Come on In (9961ms)\nWhat was the name of Patsy Cline's producer?\tI Don?t Wanta\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I Don?t Wanta, Recorded by, Patsy Cline) -> I Don?t Wanta (9880ms)\nWhat was the name of Patsy Cline's producer?\tAlways...Patsy Cline\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, soundtrack, Patsy Cline) -> (Always...Patsy Cline, Soundtracks, Melissa Swift-Sawyer Sings Patsy Cline) -> Always...Patsy Cline (9905ms)\nWhat was the name of Patsy Cline's producer?\tPick Me Up\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Pick Me Up, Recorded by, Patsy Cline) -> Pick Me Up (9905ms)\nWhat was the name of Patsy Cline's producer?\tPoor Man's Roses\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Poor Man's Roses, Recorded by, Patsy Cline) -> Poor Man's Roses (9905ms)\nWhat was the name of Patsy Cline's producer?\tWalking' After Midnight\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walking' After Midnight, Recorded by, Patsy Cline) -> Walking' After Midnight (9905ms)\nWhat was the name of Patsy Cline's producer?\tSan Antonio Rose\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (San Antonio Rose, Recorded by, Patsy Cline) -> San Antonio Rose (9960ms)\nWhat was the name of Patsy Cline's producer?\tWalkin? After Midnight\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walkin? After Midnight, Recorded by, Patsy Cline) -> Walkin? After Midnight (9960ms)\nWhat was the name of Patsy Cline's producer?\tTra La La La Triangle\t-7.002043911635228\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Tra La La La Triangle, Recorded by, Patsy Cline) -> Tra La La La Triangle (9880ms)\nWhat was the name of Patsy Cline's producer?\tCountry Spotlight: Patsy Cline\t-7.008886860883271\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Country Spotlight: Patsy Cline, Primary release, Country Spotlight: Patsy Cline) -> Country Spotlight: Patsy Cline (9960ms)\nWhat was the name of Patsy Cline's producer?\tStop, Look and Listen\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop, Look and Listen, Recorded by, Patsy Cline) -> Stop, Look and Listen (10067ms)\nWhat was the name of Patsy Cline's producer?\tHonky Tonk Merry Go-Round\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Honky Tonk Merry Go-Round, Recorded by, Patsy Cline) -> Honky Tonk Merry Go-Round (9986ms)\nWhat was the name of Patsy Cline's producer?\tShake, Rattle and Roll\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Shake, Rattle and Roll, Recorded by, Patsy Cline) -> Shake, Rattle and Roll (10045ms)\nWhat was the name of Patsy Cline's producer?\tSweet Dreams [Of You]\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Sweet Dreams [Of You], Recorded by, Patsy Cline) -> Sweet Dreams [Of You] (10046ms)\nWhat was the name of Patsy Cline's producer?\tLove Me Love Me Honey Do\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Love Me Love Me Honey Do, Recorded by, Patsy Cline) -> Love Me Love Me Honey Do (10045ms)\nWhat was the name of Patsy Cline's producer?\tI've Loved And Loved Again\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I've Loved And Loved Again, Recorded by, Patsy Cline) -> I've Loved And Loved Again (10046ms)\nWhat was the name of Patsy Cline's producer?\tI Love You Honey\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I Love You Honey, Recorded by, Patsy Cline) -> I Love You Honey (10066ms)\nWhat was the name of Patsy Cline's producer?\tLife?s Railway to Heaven\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Life?s Railway to Heaven, Recorded by, Patsy Cline) -> Life?s Railway to Heaven (10045ms)\nWhat was the name of Patsy Cline's producer?\tIf I Could Only\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (If I Could Only, Recorded by, Patsy Cline) -> If I Could Only (9984ms)\nWhat was the name of Patsy Cline's producer?\tCry Not for Me\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Cry Not for Me, Recorded by, Patsy Cline) -> Cry Not for Me (9984ms)\nWhat was the name of Patsy Cline's producer?\tLife's Railroad to Heaven\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Life's Railroad to Heaven, Recorded by, Patsy Cline) -> Life's Railroad to Heaven (9984ms)\nWhat was the name of Patsy Cline's producer?\tTra Le La Le La Triangle\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Tra Le La Le La Triangle, Recorded by, Patsy Cline) -> Tra Le La Le La Triangle (9984ms)\nWhat was the name of Patsy Cline's producer?\tYou Belong to Me\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (You Belong to Me, Recorded by, Patsy Cline) -> You Belong to Me (10066ms)\nWhat was the name of Patsy Cline's producer?\tI Love You, Honey\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I Love You, Honey, Recorded by, Patsy Cline) -> I Love You, Honey (10046ms)\nWhat was the name of Patsy Cline's producer?\tStop, Look & Listen\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop, Look & Listen, Recorded by, Patsy Cline) -> Stop, Look & Listen (9984ms)\nWhat was the name of Patsy Cline's producer?\tTra le la le Triangle\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Tra le la le Triangle, Recorded by, Patsy Cline) -> Tra le la le Triangle (10066ms)\nWhat was the name of Patsy Cline's producer?\tToday, Tomorrow, and Forever\t-7.022464222937461\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Today, Tomorrow, and Forever, Recorded by, Patsy Cline) -> Today, Tomorrow, and Forever (10066ms)\nWhat was the name of Patsy Cline's producer?\tthe same name\t-11.713938577920384\tWhat was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, to record, Patsy Cline) -> (the same name, to be recorded by, Patsy Cline) -> the same name (6532ms)\nWhere is Mesa Verde National park?\tSouthwestern Colorado\t-1.8587341627924612\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, is in, Southwestern Colorado) -> Southwestern Colorado (2652ms)\nWhere is Mesa Verde National park?\tAuthorities Concept Scheme\t-2.2501364945342663\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> $x: (mesa verde national park, in, $x) -> (Mesa Verde National Park (Colo.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2753ms)\nWhere is Mesa Verde National park?\tthe New York Times\t-2.2580548209106475\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, are featured in, the New York Times) -> the New York Times (2652ms)\nWhere is Mesa Verde National park?\tSouthwest Colorado\t-2.2775152557802647\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, is perched high in, Southwest Colorado) -> Southwest Colorado (2652ms)\nWhere is Mesa Verde National park?\tGeographic Names Concept Scheme\t-2.332603136331745\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> $x: (mesa verde national park, in, $x) -> (Mesa Verde National Park (Colo.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (2753ms)\nWhere is Mesa Verde National park?\tCOLORADO\t-2.488800146395396\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (mesa verde national park, is a mountain in the state or province, COLORADO) -> COLORADO (2651ms)\nWhere is Mesa Verde National park?\ttreasures\t-3.489471203497019\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> ($ 15.99 $ 15.99 Mesa Verde National Park, is rich in, treasures) -> treasures (2753ms)\nWhere is Mesa Verde National park?\tthe southwest corner\t-4.320924281798899\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, is in, the southwest corner) -> the southwest corner (2834ms)\nWhere is Mesa Verde National park?\tthe 59th Congress\t-4.428993906387246\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (\" Mesa Verde National Park, was introduced in, the 59th Congress) -> the 59th Congress (2834ms)\nWhere is Mesa Verde National park?\taccessibility\t-4.795228413021565\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> $x: (mesa verde national park, in, $x) -> (Mesa Verde National Park, has limitations in, accessibility) -> accessibility (2834ms)\nWhere is Mesa Verde National park?\t1906\t-5.557253966210219\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, was established in, 1906) -> 1906 (2857ms)\nWhere is Mesa Verde National park?\t1996\t-7.493008665115658\tWhere is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> $x: (mesa verde national park, in, $x) -> (Mesa Verde National Park, began in, 1996) -> 1996 (2892ms)\nWhere is Mesa Verde National park?\tColorado\t-8.478420275287277\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, contain, mesa verde national park) -> (Colorado, Contains, Mesa Verde National Park) -> Colorado (8447ms)\nWhere is Mesa Verde National park?\tCortez\t-8.760718002715041\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, tourist attraction, mesa verde national park) -> (Cortez, Tourist attractions, Mesa Verde National Park) -> Cortez (8364ms)\nWhere is Mesa Verde National park?\tDurango\t-8.760718002715041\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, tourist attraction, mesa verde national park) -> (Durango, Tourist attractions, Mesa Verde National Park) -> Durango (8363ms)\nWhere is Mesa Verde National park?\ta World Heritage Site\t-9.054879686829173\tWhere is Mesa Verde National park? -> where be [ mesa verde ] national park ? -> what be the name of mesa verde national park ? -> $x: (mesa verde national park, name, $x) -> (Mesa Verde National Park, was named, a World Heritage Site) -> a World Heritage Site (4222ms)\nWhere is Mesa Verde National park?\tBalcony House\t-9.17262111912381\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Balcony House) -> Balcony House (8364ms)\nWhere is Mesa Verde National park?\tCliff Palace\t-9.17262111912381\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Cliff Palace) -> Cliff Palace (8363ms)\nWhere is Mesa Verde National park?\tMontezuma County\t-9.17262111912381\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, contain, mesa verde national park) -> (Montezuma County, Contains, Mesa Verde National Park) -> Montezuma County (8447ms)\nWhere is Mesa Verde National park?\tLong House\t-9.685937427040631\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Long House) -> Long House (8521ms)\nWhere is Mesa Verde National park?\tStep House\t-9.685937427040631\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Step House) -> Step House (8447ms)\nWhere is Mesa Verde National park?\tMesa Verde Administrative District\t-9.685937427040631\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Mesa Verde Administrative District) -> Mesa Verde Administrative District (8447ms)\nWhere is Mesa Verde National park?\tChapin Mesa Archeological Museum\t-9.802890119044328\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Chapin Mesa Archeological Museum) -> Chapin Mesa Archeological Museum (8521ms)\nWhere is Mesa Verde National park?\tCedar Tree Tower\t-9.802890119044328\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Cedar Tree Tower) -> Cedar Tree Tower (8521ms)\nWhere is Mesa Verde National park?\tSpruce Tree House\t-9.802890119044328\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Spruce Tree House) -> Spruce Tree House (9115ms)\nWhere is Mesa Verde National park?\tBadger House Trail\t-9.802890119044328\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Badger House Trail) -> Badger House Trail (8521ms)\nWhere is Mesa Verde National park?\tSquare Tower House\t-9.802890119044328\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Square Tower House) -> Square Tower House (8521ms)\nWhere is Mesa Verde National park?\tFar View Sites Complex\t-9.900350695714074\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Far View Sites Complex) -> Far View Sites Complex (9115ms)\nWhere is Mesa Verde National park?\tUnited States of America\t-9.968209141536768\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, contain, mesa verde national park) -> (United States of America, Contains, Mesa Verde National Park) -> United States of America (9143ms)\nWhere is Mesa Verde National park?\tnational park\t-10.302035715468387\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, national park) -> national park (6446ms)\nWhere is Mesa Verde National park?\tUS National Park\t-10.468707388347394\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, US National Park) -> US National Park (6446ms)\nWhere is Mesa Verde National park?\twonderful national park\t-10.51382731870841\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, wonderful national park) -> wonderful national park (6446ms)\nWhere is Mesa Verde National park?\tWorld Heritage Site\t-10.579007670682497\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, World Heritage Site) -> World Heritage Site (6446ms)\nWhere is Mesa Verde National park?\tseries of mesa\t-10.587564952296637\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, series of mesa) -> series of mesa (6446ms)\nWhere is Mesa Verde National park?\tnational park site\t-10.60021961801052\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, national park site) -> national park site (6446ms)\nWhere is Mesa Verde National park?\tbeautiful place\t-10.609462642183667\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, beautiful place) -> beautiful place (6446ms)\nWhere is Mesa Verde National park?\tbreathtaking national park\t-10.612241550499995\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, breathtaking national park) -> breathtaking national park (6472ms)\nWhere is Mesa Verde National park?\tU.S. park\t-10.628692614334636\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, U.S. park) -> U.S. park (6472ms)\nWhere is Mesa Verde National park?\tbeautiful park\t-10.633496181047773\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, beautiful park) -> beautiful park (6472ms)\nWhere is Mesa Verde National park?\tnatural wonder\t-10.653337971450343\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, natural wonder) -> natural wonder (6472ms)\nWhere is Mesa Verde National park?\teducational, historical park\t-10.65962368886519\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, educational, historical park) -> educational, historical park (6472ms)\nWhere is Mesa Verde National park?\tarea attraction\t-10.666699877005\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, area attraction) -> area attraction (6472ms)\nWhere is Mesa Verde National park?\tregional site\t-10.673860187640098\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, regional site) -> regional site (6472ms)\nWhere is Mesa Verde National park?\tscenic wonder\t-10.690088622709435\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, scenic wonder) -> scenic wonder (6472ms)\nWhere is Mesa Verde National park?\tnatural attraction\t-10.690214511888922\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, natural attraction) -> natural attraction (6504ms)\nWhere is Mesa Verde National park?\tUNESCO World Heritage Site\t-10.692622734114074\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, UNESCO World Heritage Site) -> UNESCO World Heritage Site (6504ms)\nWhere is Mesa Verde National park?\tgreat spot\t-10.69651781306189\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, great spot) -> great spot (6504ms)\nWhere is Mesa Verde National park?\tbeautiful historical park\t-10.704517644300333\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, beautiful historical park) -> beautiful historical park (6504ms)\nWhere is Mesa Verde National park?\ttourist attraction\t-10.706800699325665\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, tourist attraction) -> tourist attraction (6504ms)\nWhere is Mesa Verde National park?\tregional attraction\t-10.71311652960243\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, regional attraction) -> regional attraction (6504ms)\nWhere is Mesa Verde National park?\tsouthwest area\t-10.714548781621932\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, southwest area) -> southwest area (6504ms)\nWhere is Mesa Verde National park?\tmust-see site\t-10.7159419954112\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, must-see site) -> must-see site (6504ms)\nWhere is Mesa Verde National park?\tarea's world-class attraction\t-10.716311896978631\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, area's world-class attraction) -> area's world-class attraction (6530ms)\nWhere is Mesa Verde National park?\toutdoor attraction\t-10.716855943402013\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, outdoor attraction) -> outdoor attraction (6530ms)\nWhere is Mesa Verde National park?\tregional partner\t-10.717437328382895\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, regional partner) -> regional partner (6530ms)\nWhere is Mesa Verde National park?\tphotograph place\t-10.718226865388234\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, photograph place) -> photograph place (6530ms)\nWhere is Mesa Verde National park?\tphotogenic place\t-10.718561236305433\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, photogenic place) -> photogenic place (6530ms)\nWhere is Mesa Verde National park?\tspectacular monument\t-10.719940517564583\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, spectacular monument) -> spectacular monument (6530ms)\nWhere is Mesa Verde National park?\tdream destination\t-10.722169782442535\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, dream destination) -> dream destination (6530ms)\nWhere is Mesa Verde National park?\tpopular area\t-10.72251965110855\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, popular area) -> popular area (6530ms)\nWhere is Mesa Verde National park?\textraordinary experience\t-10.722927169340988\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, extraordinary experience) -> extraordinary experience (6560ms)\nWhere is Mesa Verde National park?\tpretty place\t-10.723380453979866\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, pretty place) -> pretty place (6560ms)\nWhere is Mesa Verde National park?\tphenomenal place\t-10.725310811114177\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, phenomenal place) -> phenomenal place (6560ms)\nWhere is Mesa Verde National park?\ttourist destination\t-10.727712770971523\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, tourist destination) -> tourist destination (6560ms)\nWhere is Mesa Verde National park?\tspectacular place\t-10.73051175216785\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, spectacular place) -> spectacular place (6560ms)\nWhere is Mesa Verde National park?\tamazing experience\t-10.731362814402512\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, amazing experience) -> amazing experience (6560ms)\nWhere is Mesa Verde National park?\tabsolute must-see\t-10.732581226234354\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, absolute must-see) -> absolute must-see (6560ms)\nWhere is Mesa Verde National park?\tvisitor attraction\t-10.732623694282518\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, visitor attraction) -> visitor attraction (6560ms)\nWhere is Mesa Verde National park?\thuge property\t-10.732630222359882\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, huge property) -> huge property (6586ms)\nWhere is Mesa Verde National park?\tclass I area\t-10.73488567928096\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, class I area) -> class I area (6586ms)\nWhere is Mesa Verde National park?\texcellent spot\t-10.735086289511102\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, excellent spot) -> excellent spot (6586ms)\nWhere is Mesa Verde National park?\tspectacular site\t-10.737242881419656\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, spectacular site) -> spectacular site (6586ms)\nWhere is Mesa Verde National park?\twonderful setting\t-10.73758666816305\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, wonderful setting) -> wonderful setting (6586ms)\nWhere is Mesa Verde National park?\thistorical site\t-10.739312102991992\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, historical site) -> historical site (6586ms)\nWhere is Mesa Verde National park?\tpopular attraction\t-10.744011325877485\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, popular attraction) -> popular attraction (6586ms)\nWhere is Mesa Verde National park?\tgood local destination\t-10.757084265534939\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, good local destination) -> good local destination (6621ms)\nWhere is Mesa Verde National park?\tUNESCO World Magazine\t-10.757084265534939\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, UNESCO World Magazine) -> UNESCO World Magazine (6621ms)\nWhere is Mesa Verde National park?\tnonprofit organization\t-10.76189374237771\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, nonprofit organization) -> nonprofit organization (6621ms)\nWhere is Mesa Verde National park?\tlocal attraction\t-10.765249154531812\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, local attraction) -> local attraction (6621ms)\nWhere is Mesa Verde National park?\tamazing archeological attraction\t-10.771950647134334\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, amazing archeological attraction) -> amazing archeological attraction (6621ms)\nWhere is Mesa Verde National park?\tgroup of the cliff dwelling\t-10.79877853877611\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, group of the cliff dwelling) -> group of the cliff dwelling (6621ms)\nWhere is Mesa Verde National park?\tLand of Mysteries | Mesa Verde |\t-10.801978220970081\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, Land of Mysteries | Mesa Verde |) -> Land of Mysteries | Mesa Verde | (6646ms)\nWhere is Mesa Verde National park?\tarcheological rich site\t-10.801978220970081\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, archeological rich site) -> archeological rich site (6621ms)\nWhere is Mesa Verde National park?\tideal combination of heritage\t-10.801978220970081\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, ideal combination of heritage) -> ideal combination of heritage (6621ms)\nWhere is Mesa Verde National park?\tTop US Destination\t-10.805141887398552\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, Top US Destination) -> Top US Destination (6646ms)\nWhere is Mesa Verde National park?\tpopular tourism attraction\t-10.80883283151403\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, popular tourism attraction) -> popular tourism attraction (6647ms)\nWhere is Mesa Verde National park?\tNavaho word\t-10.82939666314588\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park Anasazi, Instance Of, Navaho word) -> Navaho word (6646ms)\nWhere is Mesa Verde National park?\tfantastic spot\t-10.832293450286887\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Nearby Mesa Verde National Park, Instance Of, fantastic spot) -> fantastic spot (6646ms)\nWhere is Mesa Verde National park?\tseven-mile drive west of Mancos\t-10.839550907332416\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, seven-mile drive west of Mancos) -> seven-mile drive west of Mancos (6646ms)\nWhere is Mesa Verde National park?\tancient Native American town\t-10.839550907332416\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, ancient Native American town) -> ancient Native American town (6647ms)\nWhere is Mesa Verde National park?\tAmazing Colorado Attraction\t-10.84310588300808\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, Amazing Colorado Attraction) -> Amazing Colorado Attraction (6886ms)\nWhere is Mesa Verde National park?\tClass I Air Quality park\t-10.854417288931812\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, Class I Air Quality park) -> Class I Air Quality park (6886ms)\nWhere is Mesa Verde National park?\tlocal point of interest\t-10.861415514737221\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, local point of interest) -> local point of interest (6886ms)\nWhere is Mesa Verde National park?\tmagical time\t-10.86539027549754\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Winter in Mesa Verde National Park, Instance Of, magical time) -> magical time (6886ms)\nWhere is Mesa Verde National park?\tstunning array of cliff dwelling\t-10.884444862767559\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, stunning array of cliff dwelling) -> stunning array of cliff dwelling (6886ms)\nWhere is Mesa Verde National park?\tpart of a family vacation\t-10.884444862767559\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, part of a family vacation) -> part of a family vacation (6886ms)\nWhere is Mesa Verde National park?\tsite in north america\t-10.884444862767559\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, site in north america) -> site in north america (6886ms)\nWhere is Mesa Verde National park?\tastounding collection of many ruin\t-10.884444862767559\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, astounding collection of many ruin) -> astounding collection of many ruin (6886ms)\nWhere is Mesa Verde National park?\tcultural and natural attraction\t-10.906379616998478\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, cultural and natural attraction) -> cultural and natural attraction (6914ms)\nWhere is Mesa Verde National park?\tgreat destination\t-10.91250399541115\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park in Cortez, Instance Of, great destination) -> great destination (6914ms)\nWhere is Mesa Verde National park?\tcrossword puzzle clue\t-10.926160306713921\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Home of Mesa Verde National Park, Instance Of, crossword puzzle clue) -> crossword puzzle clue (6914ms)\nWhere is Mesa Verde National park?\tmandatory federal class I area\t-10.955130555736826\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, mandatory federal class I area) -> mandatory federal class I area (6914ms)\nWhere is Mesa Verde National park?\textremely delicate and unique setting\t-10.955130555736826\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, extremely delicate and unique setting) -> extremely delicate and unique setting (6914ms)\nWhere is Mesa Verde National park?\tdowntown durango and area attraction\t-10.955130555736826\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, downtown durango and area attraction) -> downtown durango and area attraction (6914ms)\nWhere is Mesa Verde National park?\thistoric landmark\t-11.003846349002735\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park in southwestern Colorado, Instance Of, historic landmark) -> historic landmark (6914ms)\nWhere is Mesa Verde National park?\teighty square mile area of cliff dwelling\t-11.016391489643524\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, eighty square mile area of cliff dwelling) -> eighty square mile area of cliff dwelling (6940ms)\nWhere is Mesa Verde National park?\tarcheological treasure trove\t-11.016391489643524\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park in southwest Colorado, Instance Of, archeological treasure trove) -> archeological treasure trove (6915ms)\nWhere is Mesa Verde National park?\teighty square mile area of the cliff dwelling\t-11.025100851376743\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, eighty square mile area of the cliff dwelling) -> eighty square mile area of the cliff dwelling (6940ms)\nWhere is Mesa Verde National park?\tUNESCO designated World Heritage Cultural Site\t-11.025100851376743\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Available Mesa Verde National Park, Instance Of, UNESCO designated World Heritage Cultural Site) -> UNESCO designated World Heritage Cultural Site (6940ms)\nWhere is Mesa Verde National park?\tarea of abandoned cliff side dwelling of the ancient inhabitant\t-11.072397895937062\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, area of abandoned cliff side dwelling of the ancient inhabitant) -> area of abandoned cliff side dwelling of the ancient inhabitant (6940ms)\nWhere is Mesa Verde National park?\tattraction\t-11.094898040384148\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, attraction) -> attraction (6940ms)\nWhere is Mesa Verde National park?\tarea\t-11.144467060494346\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, area) -> area (6940ms)\nWhere is Mesa Verde National park?\tsite\t-11.225581767062902\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, site) -> site (6940ms)\nWhere is Mesa Verde National park?\tincredibly well preserved and stunning collection of archaeological site of the Native American Pueblo person\t-11.289281104318817\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, incredibly well preserved and stunning collection of archaeological site of the Native American Pueblo person) -> incredibly well preserved and stunning collection of archaeological site of the Native American Pueblo person (6940ms)\nWhere is Mesa Verde National park?\tdestination\t-11.312848324145873\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, destination) -> destination (7111ms)\nWhere is Mesa Verde National park?\topportunity\t-11.331581384401156\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, opportunity) -> opportunity (7111ms)\nWhere is Mesa Verde National park?\tplace\t-11.36898216330709\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, place) -> place (7111ms)\nWhere is Mesa Verde National park?\texperience\t-11.384368834432602\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, experience) -> experience (7111ms)\nWhere is Mesa Verde National park?\t81-square-mile area\t-12.214915309386068\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, 81-square-mile area) -> 81-square-mile area (7111ms)\nWhere is Mesa Verde National park?\tan Archeological Disneyland\t-12.287154111423742\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, call, $x) -> (MESA VERDE NATIONAL PARK, called, an Archeological Disneyland) -> an Archeological Disneyland (7800ms)\nWhere is Mesa Verde National park?\t81.4 square mile area\t-12.349948572418151\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, 81.4 square mile area) -> 81.4 square mile area (7203ms)\nWhere is Mesa Verde National park?\tshort 35 minute drive west\t-12.42063426538742\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, short 35 minute drive west) -> short 35 minute drive west (7203ms)\nWhere is Mesa Verde National park?\tshort 30 minute drive\t-12.427744657973975\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, short 30 minute drive) -> short 30 minute drive (7203ms)\nWhere is Mesa Verde National park?\tbeautiful 45 minute drive\t-12.435970189891295\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, beautiful 45 minute drive) -> beautiful 45 minute drive (7203ms)\nWhere is Mesa Verde National park?\tDesert Exposure\t-12.657021803735184\tWhere is Mesa Verde National park? -> where be [ mesa verde ] national park ? -> what be the name of mesa verde national park ? -> $x: ($x, be the name of, mesa verde national park) -> $x: ($x, name of, mesa verde national park) -> $x: ($x, in, mesa verde national park) -> (Desert Exposure, has arrived in, Mesa Verde National Park) -> Desert Exposure (11007ms)\nWhere is Mesa Verde National park?\tmountain\t-13.393699126023568\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what continent be mesa verde national park locate on ? -> $x: ($x, instance of, continent) (mesa verde national park, locate on, $x) -> $x: ($x, instance of, continent) (mesa verde national park, be, $x) -> (mountain, Instance Of, geographical feature of the continent) (mesa verde national park, is a, mountain) -> mountain (9341ms)\nWhere is Mesa Verde National park?\tthe archaeological center\t-13.683555388681148\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, be home to, mesa verde national park) -> (the archaeological center, is home to, Mesa Verde National Park) -> the archaeological center (7800ms)\nWhere is Mesa Verde National park?\ttourism\t-14.27451187655951\tWhere is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what continent be mesa verde national park locate on ? -> $x: ($x, instance of, continent) (mesa verde national park, locate on, $x) -> $x: ($x, instance of, continent) (mesa verde national park, be, $x) -> (tourism, Instance Of, issue of the african continent) (Mesa Verde National Park, is directly related to, tourism) -> tourism (9369ms)\nWhere is Mesa Verde National park?\tthe year\t-14.315610558885908\tWhere is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> when be mesa verde national build ? -> $x: (mesa verde national, be build in, $x) -> $x: (mesa verde national, be open every day of, $x) -> (Mesa Verde National Park, is open every day of, the year) -> the year (9592ms)\nWhen did the Mesozoic period end?\tthe dinosaurs\t-14.556033710865394\tWhen did the Mesozoic period end? -> when do [ the mesozoic period ] end ? -> when be the mesozoic period occur ? -> $x: (the mesozoic period, be occur on, $x) -> $x: (the mesozoic period, related to, $x) -> (the Mesozoic period, were even closely-related to, the dinosaurs) -> the dinosaurs (14492ms)\nWhat is the location of Lake Champlain?\tRichelieu River\t2.367032788309219\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain, Outflow location, Richelieu River) -> Richelieu River (1071ms)\nWhat is the location of Lake Champlain?\tVergennes Opera House\t2.3065083543834772\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Champlain: The Lake Between World Premiere, Location(s), Vergennes Opera House) -> Vergennes Opera House (1071ms)\nWhat is the location of Lake Champlain?\tChamplain Valley Exposition\t2.239241446564357\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (The Lake We Share: Lake Champlain in History and Imagination, Location(s), Champlain Valley Exposition) -> Champlain Valley Exposition (1071ms)\nWhat is the location of Lake Champlain?\tLake Champlain\t2.22053232767182\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Regatta for Lake Champlain, Location(s), Lake Champlain) -> Lake Champlain (1071ms)\nWhat is the location of Lake Champlain?\tLake Champlain Maritime Museum\t2.162805497583531\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Small Boats of Lake Champlain, Location(s), Lake Champlain Maritime Museum) -> Lake Champlain Maritime Museum (1140ms)\nWhat is the location of Lake Champlain?\tChamplain Valley\t1.9771904816302293\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain Quadricentennial, Location(s), Champlain Valley) -> Champlain Valley (1140ms)\nWhat is the location of Lake Champlain?\tFlynn Center for the Performing Arts\t1.95446871830569\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Our Hidden Heritage: 1609 and Lake Champlain, Location(s), Flynn Center for the Performing Arts) -> Flynn Center for the Performing Arts (1141ms)\nWhat is the location of Lake Champlain?\tLake Champlain Waterfront\t1.8581122248117117\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain Maritime Festival 2009, Location(s), Lake Champlain Waterfront) -> Lake Champlain Waterfront (1140ms)\nWhat is the location of Lake Champlain?\tNiquette Bay State Park\t1.7889567214349609\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Experience Lake Champlain 2009, Location(s), Niquette Bay State Park) -> Niquette Bay State Park (1160ms)\nWhat is the location of Lake Champlain?\tRound Pond Natural Area\t1.7889567214349609\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Experience Lake Champlain 2009, Location(s), Round Pond Natural Area) -> Round Pond Natural Area (1160ms)\nWhat is the location of Lake Champlain?\tEagle Mountain Natural Area\t1.7889567214349609\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Experience Lake Champlain 2009, Location(s), Eagle Mountain Natural Area) -> Eagle Mountain Natural Area (1159ms)\nWhat is the location of Lake Champlain?\tGoodsell Ridge Fossil Preserves\t1.7889567214349609\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Experience Lake Champlain 2009, Location(s), Goodsell Ridge Fossil Preserves) -> Goodsell Ridge Fossil Preserves (2595ms)\nWhat is the location of Lake Champlain?\tECHO Lake Aquarium and Science Center\t1.728770540754696\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain Basin Native American Lecture Series, Location(s), ECHO Lake Aquarium and Science Center) -> ECHO Lake Aquarium and Science Center (2596ms)\nWhat is the location of Lake Champlain?\tInvasion of Canada\t0.018619800348620874\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Invasion of Canada, Location(s), Lake Champlain) -> Invasion of Canada (2695ms)\nWhat is the location of Lake Champlain?\tSmall Boats of Lake Champlain\t-0.10133167862952996\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Small Boats of Lake Champlain, Location(s), Lake Champlain Maritime Museum) -> Small Boats of Lake Champlain (2694ms)\nWhat is the location of Lake Champlain?\tQuadricentennial Storytelling Festival\t-0.22309286875861045\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Quadricentennial Storytelling Festival, Location(s), Lake Champlain Maritime Museum) -> Quadricentennial Storytelling Festival (2764ms)\nWhat is the location of Lake Champlain?\tShipwreck Tours\t-0.34692243407190726\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Shipwreck Tours, Location(s), Lake Champlain Maritime Museum) -> Shipwreck Tours (2764ms)\nWhat is the location of Lake Champlain?\tRegatta for Lake Champlain\t-0.37122250633036913\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Regatta for Lake Champlain, Location(s), Lake Champlain) -> Regatta for Lake Champlain (2764ms)\nWhat is the location of Lake Champlain?\tCarleton's Raid\t-0.37122250633036913\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Carleton's Raid, Location(s), Lake Champlain) -> Carleton's Raid (2764ms)\nWhat is the location of Lake Champlain?\tD'Olobaratz Voyage Race Challenge\t-0.43119824581944455\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (D'Olobaratz Voyage Race Challenge, Location(s), Lake Champlain) -> D'Olobaratz Voyage Race Challenge (2764ms)\nWhat is the location of Lake Champlain?\tLake Champlain's First Navigators\t-0.454760143475867\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Lake Champlain's First Navigators, Location(s), Lake Champlain Maritime Museum) -> Lake Champlain's First Navigators (2765ms)\nWhat is the location of Lake Champlain?\tWhen the French Were Here: International Symposium\t-0.46883059441803915\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (When the French Were Here: International Symposium, Included in event, Lake Champlain Quadricentennial) -> When the French Were Here: International Symposium (3729ms)\nWhat is the location of Lake Champlain?\tLake Between: Native American Encampment\t-0.4751804547780999\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Lake Between: Native American Encampment, Location(s), Lake Champlain Maritime Museum) -> Lake Between: Native American Encampment (2778ms)\nWhat is the location of Lake Champlain?\tCarleton's Prize\t-0.48878733415909076\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Carleton's Prize) -> Carleton's Prize (3450ms)\nWhat is the location of Lake Champlain?\tThe Phoenix Shipwreck\t-0.4896783364914105\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, The Phoenix Shipwreck) -> The Phoenix Shipwreck (3450ms)\nWhat is the location of Lake Champlain?\tWashington, D.C.\t-0.49946493363703026\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, place of publication, $x) -> (Letter from the Secretary of the Navy to the chairman of the naval committee transmitting sundry documents from Captain MacDonough relating to the capture of the British fleet on Lake Champlain, Place of publication, Washington, D.C.) -> Washington, D.C. (2915ms)\nWhat is the location of Lake Champlain?\tCrab Island\t-0.5081233429150193\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Crab Island) -> Crab Island (3450ms)\nWhat is the location of Lake Champlain?\tFour Brothers\t-0.5081233429150193\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Four Brothers) -> Four Brothers (3450ms)\nWhat is the location of Lake Champlain?\tFirst Person: Stories from the Edge of the World\t-0.510872411804989\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (First Person: Stories from the Edge of the World, Included in event, Lake Champlain Quadricentennial) -> First Person: Stories from the Edge of the World (3729ms)\nWhat is the location of Lake Champlain?\tLake Champlain Quadricentennial\t-0.5406768785852125\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Lake Champlain Quadricentennial, Includes event, Small Boats of Lake Champlain) -> Lake Champlain Quadricentennial (3729ms)\nWhat is the location of Lake Champlain?\tGeneral Butler Shipwreck\t-0.6365605848768066\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, General Butler Shipwreck) -> General Butler Shipwreck (3450ms)\nWhat is the location of Lake Champlain?\tCrown Point Light\t-0.6365605848768066\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Crown Point Light) -> Crown Point Light (3450ms)\nWhat is the location of Lake Champlain?\tBurlington Community Boathouse\t-0.6640494654759661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain Waterfront, Contains, Burlington Community Boathouse) -> Burlington Community Boathouse (3478ms)\nWhat is the location of Lake Champlain?\tChamplain: The Lake Between World Premiere\t-0.6895501356995262\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Champlain: The Lake Between World Premiere, Included in event, Lake Champlain Quadricentennial) -> Champlain: The Lake Between World Premiere (3750ms)\nWhat is the location of Lake Champlain?\tNew York City\t-0.6990834497371721\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, place of publication, $x) -> (The proudest day: Macdonough on Lake Champlain, Place of publication, New York City) -> New York City (2915ms)\nWhat is the location of Lake Champlain?\tWinooski River Sojourn\t-0.7080316744346216\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Winooski River Sojourn, Included in event, Lake Champlain Quadricentennial) -> Winooski River Sojourn (3767ms)\nWhat is the location of Lake Champlain?\tRealities and Relationships of First Contacts\t-0.7210814987397385\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Realities and Relationships of First Contacts, Included in event, Lake Champlain Quadricentennial) -> Realities and Relationships of First Contacts (3767ms)\nWhat is the location of Lake Champlain?\tThe Lake We Share: Lake Champlain in History and Imagination\t-0.7210814987397385\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (The Lake We Share: Lake Champlain in History and Imagination, Included in event, Lake Champlain Quadricentennial) -> The Lake We Share: Lake Champlain in History and Imagination (3767ms)\nWhat is the location of Lake Champlain?\tDameas Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Dameas Island) -> Dameas Island (3495ms)\nWhat is the location of Lake Champlain?\tThree Sisters\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Three Sisters) -> Three Sisters (3478ms)\nWhat is the location of Lake Champlain?\tJuniper Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Juniper Island) -> Juniper Island (3767ms)\nWhat is the location of Lake Champlain?\tStave Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Stave Island) -> Stave Island (3767ms)\nWhat is the location of Lake Champlain?\tKnight Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Knight Island) -> Knight Island (3495ms)\nWhat is the location of Lake Champlain?\tNorth America\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, contain, Lake Champlain) -> (North America, Contains, Lake Champlain) -> North America (3478ms)\nWhat is the location of Lake Champlain?\tYoung Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Young Island) -> Young Island (3495ms)\nWhat is the location of Lake Champlain?\tCloak Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Cloak Island) -> Cloak Island (3495ms)\nWhat is the location of Lake Champlain?\tBurton Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Burton Island) -> Burton Island (3783ms)\nWhat is the location of Lake Champlain?\tGarden Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Garden Island) -> Garden Island (3478ms)\nWhat is the location of Lake Champlain?\tValcour Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Valcour Island) -> Valcour Island (3495ms)\nWhat is the location of Lake Champlain?\tProvidence Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Providence Island) -> Providence Island (3495ms)\nWhat is the location of Lake Champlain?\tSavage Island\t-0.75146518895661\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Savage Island) -> Savage Island (3478ms)\nWhat is the location of Lake Champlain?\tChittenden County\t-0.7839520478465258\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, contain, Lake Champlain) -> (Chittenden County, Contains, Lake Champlain Waterfront) -> Chittenden County (3783ms)\nWhat is the location of Lake Champlain?\t1609: The Other Side of History\t-0.8140910106384573\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (1609: The Other Side of History, Included in event, Lake Champlain Quadricentennial) -> 1609: The Other Side of History (3920ms)\nWhat is the location of Lake Champlain?\tIndigenous Expressions\t-0.8350028261021079\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Indigenous Expressions, Included in event, Lake Champlain Quadricentennial) -> Indigenous Expressions (3955ms)\nWhat is the location of Lake Champlain?\tChamplain II Shipwreck\t-0.8357410007041473\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Champlain II Shipwreck) -> Champlain II Shipwreck (3955ms)\nWhat is the location of Lake Champlain?\tCoal Barge Shipwreck\t-0.8430545651759676\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Coal Barge Shipwreck) -> Coal Barge Shipwreck (3955ms)\nWhat is the location of Lake Champlain?\tSouth Hero Island\t-0.8682278595940631\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, South Hero Island) -> South Hero Island (3985ms)\nWhat is the location of Lake Champlain?\tStone Boat Shipwreck\t-0.8682278595940631\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Stone Boat Shipwreck) -> Stone Boat Shipwreck (3969ms)\nWhat is the location of Lake Champlain?\tColchester Reef Light\t-0.8682278595940631\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Colchester Reef Light) -> Colchester Reef Light (3969ms)\nWhat is the location of Lake Champlain?\tIsle La Motte\t-0.8682278595940631\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Isle La Motte) -> Isle La Motte (3969ms)\nWhat is the location of Lake Champlain?\tNorth Hero Island\t-0.8682278595940631\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, North Hero Island) -> North Hero Island (3985ms)\nWhat is the location of Lake Champlain?\tOJ Walker Shipwreck\t-0.8682278595940631\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, OJ Walker Shipwreck) -> OJ Walker Shipwreck (3969ms)\nWhat is the location of Lake Champlain?\tKnight Island State Park\t-0.8957167401932227\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Knight Island State Park) -> Knight Island State Park (4029ms)\nWhat is the location of Lake Champlain?\tBurton Island State Park\t-0.8957167401932227\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Burton Island State Park) -> Burton Island State Park (4015ms)\nWhat is the location of Lake Champlain?\tWoods Island State Park\t-0.8957167401932227\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Woods Island State Park) -> Woods Island State Park (4029ms)\nWhat is the location of Lake Champlain?\tCelebrate Champlain Event Series\t-0.9192786378496451\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Celebrate Champlain Event Series, Included in event, Lake Champlain Quadricentennial) -> Celebrate Champlain Event Series (4060ms)\nWhat is the location of Lake Champlain?\tCelebrate Southern Lake Champlain\t-0.9192786378496451\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Celebrate Southern Lake Champlain, Included in event, Lake Champlain Quadricentennial) -> Celebrate Southern Lake Champlain (4046ms)\nWhat is the location of Lake Champlain?\tBurlington Bay Horse Ferry Shipwreck\t-0.9192786378496451\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Burlington Bay Horse Ferry Shipwreck) -> Burlington Bay Horse Ferry Shipwreck (4060ms)\nWhat is the location of Lake Champlain?\tArt Fits Vermont\t-0.9396989491518781\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Art Fits Vermont, Included in event, Lake Champlain Quadricentennial) -> Art Fits Vermont (4117ms)\nWhat is the location of Lake Champlain?\tTeddy Roosevelt Day\t-0.9396989491518781\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Teddy Roosevelt Day, Included in event, Lake Champlain Quadricentennial) -> Teddy Roosevelt Day (4099ms)\nWhat is the location of Lake Champlain?\tChamplain Hudson Celebration Ride\t-0.9396989491518781\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Champlain Hudson Celebration Ride, Included in event, Lake Champlain Quadricentennial) -> Champlain Hudson Celebration Ride (4117ms)\nWhat is the location of Lake Champlain?\tGreat Champlain-Hudson Sojourn\t-0.9396989491518781\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Great Champlain-Hudson Sojourn, Included in event, Lake Champlain Quadricentennial) -> Great Champlain-Hudson Sojourn (4099ms)\nWhat is the location of Lake Champlain?\tBoston\t-0.9429152892977372\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, place of publication, $x) -> (The heroes of the North, or, The Battles of Lake Erie and Champlain two poems, Place of publication, Boston) -> Boston (2915ms)\nWhat is the location of Lake Champlain?\tIsle La Motte Flotilla\t-0.9575667215413317\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Isle La Motte Flotilla, Included in event, Lake Champlain Quadricentennial) -> Isle La Motte Flotilla (4147ms)\nWhat is the location of Lake Champlain?\tMeet Explorer Samuel de Champlain\t-0.9575667215413317\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Meet Explorer Samuel de Champlain, Included in event, Lake Champlain Quadricentennial) -> Meet Explorer Samuel de Champlain (4147ms)\nWhat is the location of Lake Champlain?\tLake Champlain Basin Native American Lecture Series\t-0.9733324030614379\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Lake Champlain Basin Native American Lecture Series, Included in event, Lake Champlain Quadricentennial) -> Lake Champlain Basin Native American Lecture Series (4147ms)\nWhat is the location of Lake Champlain?\tQuadricentennial Table Talks: Side Dishes for Thought\t-0.9873463421904214\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Quadricentennial Table Talks: Side Dishes for Thought, Included in event, Lake Champlain Quadricentennial) -> Quadricentennial Table Talks: Side Dishes for Thought (4164ms)\nWhat is the location of Lake Champlain?\tLCLT Protected Landscape Tour: Goodsell Ridge\t-0.9873463421904214\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (LCLT Protected Landscape Tour: Goodsell Ridge, Included in event, Lake Champlain Quadricentennial) -> LCLT Protected Landscape Tour: Goodsell Ridge (4164ms)\nWhat is the location of Lake Champlain?\tBike Champlain: Vermont to Quebec City Bike Tour\t-0.9998851298321432\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Bike Champlain: Vermont to Quebec City Bike Tour, Included in event, Lake Champlain Quadricentennial) -> Bike Champlain: Vermont to Quebec City Bike Tour (4164ms)\nWhat is the location of Lake Champlain?\tMaritime museum\t-0.9999672771504402\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, museum, Lake Champlain) -> (Maritime museum, Museums, Lake Champlain Maritime Museum) -> Maritime museum (2778ms)\nWhat is the location of Lake Champlain?\tLCLT Protected Landscape Tour: Eagle Mountain Natural Area\t-1.011170038709693\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (LCLT Protected Landscape Tour: Eagle Mountain Natural Area, Included in event, Lake Champlain Quadricentennial) -> LCLT Protected Landscape Tour: Eagle Mountain Natural Area (4281ms)\nWhat is the location of Lake Champlain?\tLCLT Protected Landscape Tour: Round Pond Natural Area\t-1.011170038709693\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (LCLT Protected Landscape Tour: Round Pond Natural Area, Included in event, Lake Champlain Quadricentennial) -> LCLT Protected Landscape Tour: Round Pond Natural Area (4164ms)\nWhat is the location of Lake Champlain?\tIf Samuel Came to St. Albans During Sugarin'\t-1.011170038709693\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (If Samuel Came to St. Albans During Sugarin', Included in event, Lake Champlain Quadricentennial) -> If Samuel Came to St. Albans During Sugarin' (4164ms)\nWhat is the location of Lake Champlain?\tLCLT Protected Landscape Tour: Niquette Bay State Park\t-1.011170038709693\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (LCLT Protected Landscape Tour: Niquette Bay State Park, Included in event, Lake Champlain Quadricentennial) -> LCLT Protected Landscape Tour: Niquette Bay State Park (4282ms)\nWhat is the location of Lake Champlain?\tExploring Franklin County, Vermont the 21st Century Way\t-1.1667444130618858\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Exploring Franklin County, Vermont the 21st Century Way, Included in event, Lake Champlain Quadricentennial) -> Exploring Franklin County, Vermont the 21st Century Way (4282ms)\nWhat is the location of Lake Champlain?\tLake Champlain Maritime Festival 2009\t-1.2276229083513672\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Lake Champlain Maritime Festival 2009, Location(s), Lake Champlain Waterfront) -> Lake Champlain Maritime Festival 2009 (2778ms)\nWhat is the location of Lake Champlain?\tHen Island\t-1.361461540653071\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Hen Island) -> Hen Island (4281ms)\nWhat is the location of Lake Champlain?\tBurlington\t-1.418429966216229\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, tourist attraction, Lake Champlain) -> (Burlington, Tourist attractions, ECHO at the Leahy Center for Lake Champlain) -> Burlington (4411ms)\nWhat is the location of Lake Champlain?\tRutland City\t-1.4899487788899526\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, place of publication, $x) -> (A sermon, delivered September 22, 1814, in ... Rutland ... at a thanksgiving to almighty God ... for the fall of the British fleet on Lake Champlain, and the defeat of their army at Plattsburgh ..., Place of publication, Rutland City) -> Rutland City (3098ms)\nWhat is the location of Lake Champlain?\tPlattsburgh\t-1.56462083122085\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, tourist attraction, Lake Champlain) -> (Plattsburgh, Tourist attractions, Lake Champlain) -> Plattsburgh (4411ms)\nWhat is the location of Lake Champlain?\tVermont Quilt Festival 2009\t-1.593181432568171\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Vermont Quilt Festival 2009, Includes event, The Lake We Share: Lake Champlain in History and Imagination) -> Vermont Quilt Festival 2009 (4435ms)\nWhat is the location of Lake Champlain?\tExperience Lake Champlain 2009\t-1.7157033003815678\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Experience Lake Champlain 2009, Included in event, Lake Champlain Quadricentennial) -> Experience Lake Champlain 2009 (4451ms)\nWhat is the location of Lake Champlain?\tINDIECON 2009\t-1.7157033003815678\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (INDIECON 2009, Included in event, Lake Champlain Quadricentennial) -> INDIECON 2009 (4451ms)\nWhat is the location of Lake Champlain?\tGrand Isle\t-1.7649639120503713\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Grand Isle) -> Grand Isle (4451ms)\nWhat is the location of Lake Champlain?\tNorth Hero\t-1.7649639120503713\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, North Hero) -> North Hero (4451ms)\nWhat is the location of Lake Champlain?\tBurlington Discover Jazz Festival 2009\t-1.7697570655933605\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Burlington Discover Jazz Festival 2009, Included in event, Lake Champlain Quadricentennial) -> Burlington Discover Jazz Festival 2009 (4451ms)\nWhat is the location of Lake Champlain?\tBurlington Irish Heritage Festival 2009\t-1.7697570655933605\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Burlington Irish Heritage Festival 2009, Included in event, Lake Champlain Quadricentennial) -> Burlington Irish Heritage Festival 2009 (4451ms)\nWhat is the location of Lake Champlain?\tVermont Youth Orchestra 2009 International Tour Kickoff Concert\t-1.8075947012416156\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Vermont Youth Orchestra 2009 International Tour Kickoff Concert, Included in event, Lake Champlain Quadricentennial) -> Vermont Youth Orchestra 2009 International Tour Kickoff Concert (4500ms)\nWhat is the location of Lake Champlain?\tCentral New York\t-2.2283185993366215\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, contain, Lake Champlain) -> (Central New York, contains, the Hudson River and Lake Champlain) -> Central New York (4588ms)\nWhat is the location of Lake Champlain?\tSouth Bay\t-2.4426407405343857\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, is called, South Bay) -> South Bay (2778ms)\nWhat is the location of Lake Champlain?\tthe Lake\t-2.4818499444030664\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, has been called, the Lake) -> the Lake (2778ms)\nWhat is the location of Lake Champlain?\tVermont\t-2.782594854822041\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, be home to, Lake Champlain) -> (Vermont, is home to, Lake Champlain) -> Vermont (4602ms)\nWhat is the location of Lake Champlain?\tthe Vermont Fish\t-2.817584415785421\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, set, $x) -> (the Lake Champlain Zone, will be set by, the Vermont Fish) -> the Vermont Fish (3098ms)\nWhat is the location of Lake Champlain?\tthe Narrows\t-2.8966317421134495\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, is called, the Narrows) -> the Narrows (3098ms)\nWhat is the location of Lake Champlain?\tIr-o-coi-sia\t-2.905306742513825\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, was called, Ir-o-coi-sia) -> Ir-o-coi-sia (3098ms)\nWhat is the location of Lake Champlain?\tThe World Championship\t-3.1747423243985287\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (The World Championship, also took place on, Lake Champlain) -> The World Championship (6928ms)\nWhat is the location of Lake Champlain?\ta time travel novel\t-3.1802284374829757\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (a time travel novel, takes place on, the Lake Champlain Islands) -> a time travel novel (6928ms)\nWhat is the location of Lake Champlain?\ta series\t-3.227081079389212\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (a series, takes place on, Lake Champlain) -> a series (6928ms)\nWhat is the location of Lake Champlain?\tcold fresh water\t-3.4045059617131077\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, contains, cold fresh water) -> cold fresh water (7009ms)\nWhat is the location of Lake Champlain?\ta furious naval fight\t-3.493964955916806\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, end in, $x) -> (Lake Champlain, had ended in, a furious naval fight) -> a furious naval fight (3098ms)\nWhat is the location of Lake Champlain?\ta wonderful patchwork\t-3.552479260338389\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, contains, a wonderful patchwork) -> a wonderful patchwork (7009ms)\nWhat is the location of Lake Champlain?\tflood levels\t-3.725194290517134\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, setting, $x) -> (our local case Lake Champlain, set new records for, flood levels) -> flood levels (7009ms)\nWhat is the location of Lake Champlain?\t2 stores\t-3.7949180595888583\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, contains, 2 stores) -> 2 stores (7009ms)\nWhat is the location of Lake Champlain?\tChamp\t-3.9330754146868463\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, called, Champ) -> Champ (7100ms)\nWhat is the location of Lake Champlain?\tthe Adirondacks\t-4.0720790871279515\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, locate in, $x) -> (Lake Champlain, located farther north in, the Adirondacks) -> the Adirondacks (7100ms)\nWhat is the location of Lake Champlain?\tthe event\t-4.411964576932867\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (the event, took place on, Lake Champlain) -> the event (7309ms)\nWhat is the location of Lake Champlain?\tThe property\t-4.557489874560202\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (The property, is placed between, Champlain and George Lake) -> The property (7309ms)\nWhat is the location of Lake Champlain?\tthe classic Vermont backdrop\t-4.653405145329504\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, setting, $x) -> (Lake Champlain, is set against, the classic Vermont backdrop) -> the classic Vermont backdrop (7339ms)\nWhat is the location of Lake Champlain?\t1992\t-4.9113247784004965\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, begin in, $x) -> (our Lake Champlain monitoring program, began in, 1992) -> 1992 (7339ms)\nWhat is the location of Lake Champlain?\t1812\t-4.969497161368953\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (1812, took place on, Lake Champlain) -> 1812 (7339ms)\nWhat is the location of Lake Champlain?\tplace\t-5.022768130877048\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, be set in, $x) -> (the new Lake Champlain bridge, was set in, place) -> place (7393ms)\nWhat is the location of Lake Champlain?\ttwelve\t-5.2582338357242975\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (the Lake Champlain area, contains, twelve) -> twelve (7392ms)\nWhat is the location of Lake Champlain?\tlinks\t-5.792492833935675\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, sponsor, $x) -> (Lake Champlain Chocolates, sponsored, links) -> links (7555ms)\nWhat is the location of Lake Champlain?\tthe sixth Great Lake\t-6.133611953100442\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, called, the sixth Great Lake) -> the sixth Great Lake (7555ms)\nWhat is the location of Lake Champlain?\tthe sun\t-6.145443415306451\tWhat is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, setting, Lake Champlain) -> (the sun, set over, Lake Champlain) -> the sun (7630ms)\nWhat is the location of Lake Champlain?\tVT Vermont\t-10.585134720399516\tWhat is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> which state be lake champlain locate ? -> $x: ($x, instance of, state) (lake champlain, locate, $x) -> (VT Vermont, Instance Of, state) (Lake Champlain, is located between, Vermont) -> VT Vermont (7945ms)\nWhat is the location of Lake Champlain?\tNew York\t-10.992996455680638\tWhat is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> which state be lake champlain locate ? -> $x: ($x, instance of, state) (lake champlain, locate, $x) -> (New York, Instance Of, state) (Lake Champlain, located between, New York) -> New York (7945ms)\nWhat is the location of Lake Champlain?\tNorth and South America\t-12.28642313847069\tWhat is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what country contain lake champlain ? -> $x: ($x, instance of, country) ($x, contain, lake champlain) -> (North and South America, Instance Of, country) (North America, Contains, Lake Champlain) -> North and South America (9315ms)\nWhat is the location of Lake Champlain?\tNorth-America\t-12.316468984075716\tWhat is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what country contain lake champlain ? -> $x: ($x, instance of, country) ($x, contain, lake champlain) -> (North-America, Instance Of, country) (North America, Contains, Lake Champlain) -> North-America (9315ms)\nWhat is the location of Lake Champlain?\tNorth & South America\t-12.499363170567543\tWhat is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what country contain lake champlain ? -> $x: ($x, instance of, country) ($x, contain, lake champlain) -> (North & South America, Instance Of, country) (North America, Contains, Lake Champlain) -> North & South America (9315ms)\nWhat is the location of Lake Champlain?\tBurlington VT\t-12.567783653488316\tWhat is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what country contain lake champlain ? -> $x: ($x, instance of, country) ($x, contain, lake champlain) -> (Burlington VT, Instance Of, European country) (Burlington, Contains, Lake Champlain Waterfront) -> Burlington VT (9316ms)\nWhat is the location of Lake Champlain?\t1895\t-12.777269840803617\tWhat is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what be located in lake champlain ? -> $x: ($x, be located in, lake champlain) -> (1895, was located in, Lake Champlain) -> 1895 (7992ms)\nWhat is the location of Lake Champlain?\tthe Steamship Champlain\t-12.91542113886215\tWhat is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what be located in lake champlain ? -> $x: ($x, be located in, lake champlain) -> $x: ($x, locate in, lake champlain) -> (the Steamship Champlain, located in, Lake Champlain) -> the Steamship Champlain (7992ms)\nWhat is the location of Lake Champlain?\tPlattsburg\t-13.163418953019058\tWhat is the location of Lake Champlain? -> what be the location [ of lake champlain ] ? -> what location be of lake champlain ? -> $x: ($x, instance of, location) ($x, be of, lake champlain) -> (Plattsburg, Instance Of, amazing location) (Plattsburg, was fought the battle of, lake Champlain) -> Plattsburg (9315ms)\nWhat is the location of Lake Champlain?\tprogram\t-15.43981472625138\tWhat is the location of Lake Champlain? -> what be the location [ of lake champlain ] ? -> what location be of lake champlain ? -> $x: ($x, instance of, location) ($x, be of, lake champlain) -> (program, Instance Of, location) (program, is one of, several Lake Champlain conservation projects) -> program (9345ms)\nWhat was Curveball's profession?\tTV Episode\t-3.8715505290040135\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Voiceprints; Curveball; Goosebumps Chat; Hawk, Type, TV Episode) -> TV Episode (8834ms)\nWhat was Curveball's profession?\tEP\t-4.183480481576067\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball EP, Release type, EP) -> EP (8834ms)\nWhat was Curveball's profession?\tCurveball: Spies, Lies, and the Con Man Who Caused a War\t-4.192601240423203\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, write about, $x) -> (Curveball, Works Written About This Topic, Curveball: Spies, Lies, and the Con Man Who Caused a War) -> Curveball: Spies, Lies, and the Con Man Who Caused a War (6395ms)\nWhat was Curveball's profession?\tBook Edition\t-4.489208318132069\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball, Notable types, Book Edition) -> Book Edition (8854ms)\nWhat was Curveball's profession?\tEl Camino\t-4.727807369573149\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (El Camino, Instance Of, fitting curveball) -> El Camino (8188ms)\nWhat was Curveball's profession?\tBusiness Operation\t-4.732550164173659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Business Operation, Instance, Curveball Recordings) -> Business Operation (9005ms)\nWhat was Curveball's profession?\tCanonical Version\t-4.732550164173659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball for the 21st Century, Notable types, Canonical Version) -> Canonical Version (9114ms)\nWhat was Curveball's profession?\tMusical Album\t-4.732550164173659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball / Haiku, Notable types, Musical Album) -> Musical Album (9114ms)\nWhat was Curveball's profession?\tMusical Release\t-4.732550164173659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball EP, Notable types, Musical Release) -> Musical Release (9006ms)\nWhat was Curveball's profession?\tMusical Recording\t-4.732550164173659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball for the 21st Century, Type, Musical Recording) -> Musical Recording (8993ms)\nWhat was Curveball's profession?\tLiterature Subject\t-4.732550164173659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Literature Subject) -> Literature Subject (8956ms)\nWhat was Curveball's profession?\tNetflix Title\t-4.732550164173659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Hitting for Excellence: Power Hitting & Conquering the Curveball, Notable types, Netflix Title) -> Netflix Title (8956ms)\nWhat was Curveball's profession?\tMusical Artist\t-4.732550164173659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball Abbey, Notable types, Musical Artist) -> Musical Artist (9006ms)\nWhat was Curveball's profession?\tAward-Nominated Work\t-4.816825975921197\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Arthur Sternbach Brings the Curveball to Mars, Notable types, Award-Nominated Work) -> Award-Nominated Work (9114ms)\nWhat was Curveball's profession?\tAlbum\t-4.884319591390004\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball, Release type, Album) -> Album (9129ms)\nWhat was Curveball's profession?\tCataloged instance\t-5.020036483035389\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (The crooked pitch: the curveball in American baseball history, Notable types, Cataloged instance) -> Cataloged instance (9286ms)\nWhat was Curveball's profession?\tRelease track\t-5.020036483035389\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Dreamer, Type, Release track) -> Release track (9302ms)\nWhat was Curveball's profession?\tRecord label\t-5.020036483035389\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Recordings, Notable types, Record label) -> Record label (9286ms)\nWhat was Curveball's profession?\tAhmed Chalabi\t-5.051700541170984\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (Curveball, was a creation of, Ahmed Chalabi) -> Ahmed Chalabi (6973ms)\nWhat was Curveball's profession?\tBrad Lincoln\t-5.160743009776882\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Brad Lincoln, Instance Of, curveball specialist) -> Brad Lincoln (9345ms)\nWhat was Curveball's profession?\twholly reliable source\t-5.172167553224494\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, wholly reliable source) -> wholly reliable source (7558ms)\nWhat was Curveball's profession?\tRick Waits\t-5.205636965212024\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Rick Waits, Instance Of, curveball specialist) -> Rick Waits (9344ms)\nWhat was Curveball's profession?\tsort of clever fellow\t-5.276877052170741\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, sort of clever fellow) -> sort of clever fellow (7558ms)\nWhat was Curveball's profession?\ttechnique of baseball pitching\t-5.276877052170741\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, technique of baseball pitching) -> technique of baseball pitching (7558ms)\nWhat was Curveball's profession?\ttype of breaking ball\t-5.276877052170741\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, type of breaking ball) -> type of breaking ball (7558ms)\nWhat was Curveball's profession?\toff-speed pitch\t-5.30214902560001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, off-speed pitch) -> off-speed pitch (7558ms)\nWhat was Curveball's profession?\tStrike two\t-5.320794312980254\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Strike two, Instance Of, nasty curveball) -> Strike two (9344ms)\nWhat was Curveball's profession?\tEdwards breaking ball\t-5.325014836976386\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Edwards breaking ball, Instance Of, true curveball) -> Edwards breaking ball (9344ms)\nWhat was Curveball's profession?\ttrained chemical engineer\t-5.336350152336478\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, trained chemical engineer) -> trained chemical engineer (7558ms)\nWhat was Curveball's profession?\tAmerican League\t-5.362957193780473\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (American League, Instance Of, curveball league) -> American League (9344ms)\nWhat was Curveball's profession?\tcasual puzzle game\t-5.385816158268836\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, casual puzzle game) -> casual puzzle game (9380ms)\nWhat was Curveball's profession?\tEldon Alexander\t-5.387883050303928\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Eldon Alexander, Instance Of, curveball) -> Eldon Alexander (9380ms)\nWhat was Curveball's profession?\thard biting sweeper\t-5.397339878124567\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, hard biting sweeper) -> hard biting sweeper (9380ms)\nWhat was Curveball's profession?\tasset of the German intelligence service\t-5.406460636971703\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, asset of the German intelligence service) -> asset of the German intelligence service (9380ms)\nWhat was Curveball's profession?\tAnorthosis Famagusta\t-5.407851149215615\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Anorthosis Famagusta, Instance Of, massive curveball) -> Anorthosis Famagusta (9380ms)\nWhat was Curveball's profession?\tKosher Lutherans\t-5.407851149215615\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Kosher Lutherans, Instance Of, curveball comedy) -> Kosher Lutherans (9380ms)\nWhat was Curveball's profession?\tBaghdad taxi driver\t-5.411036454449529\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Baghdad taxi driver) -> Baghdad taxi driver (9397ms)\nWhat was Curveball's profession?\tSony Playstation Phone\t-5.422059711109915\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sony Playstation Phone, Instance Of, real curveball) -> Sony Playstation Phone (9397ms)\nWhat was Curveball's profession?\ttype of pitch\t-5.422911702032043\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, type of pitch) -> type of pitch (9397ms)\nWhat was Curveball's profession?\tRabbit Snare\t-5.432777005739069\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Rabbit Snare, Instance Of, curveball) -> Rabbit Snare (9415ms)\nWhat was Curveball's profession?\tRenaissance Italy\t-5.432777005739069\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Renaissance Italy, Instance Of, curveball) -> Renaissance Italy (9397ms)\nWhat was Curveball's profession?\tMemphis Blues\t-5.432777005739069\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Memphis Blues, Instance Of, curveball) -> Memphis Blues (9415ms)\nWhat was Curveball's profession?\tHanging Curve\t-5.432777005739069\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hanging Curve, Instance Of, curveball) -> Hanging Curve (9415ms)\nWhat was Curveball's profession?\tUncle Charlie\t-5.432777005739069\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Uncle Charlie, Instance Of, curveball) -> Uncle Charlie (9397ms)\nWhat was Curveball's profession?\tadvanced pitching technique\t-5.438112246680874\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced pitching technique) -> advanced pitching technique (9415ms)\nWhat was Curveball's profession?\tpitcher's secret weapon\t-5.447233005528011\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, pitcher's secret weapon) -> pitcher's secret weapon (9415ms)\nWhat was Curveball's profession?\tMcPherson's breaking ball\t-5.447233005528011\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (McPherson's breaking ball, Instance Of, sweeping curveball) -> McPherson's breaking ball (9436ms)\nWhat was Curveball's profession?\tJules Thin Crust\t-5.447233005528011\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Jules Thin Crust, Instance Of, nice curveball) -> Jules Thin Crust (9415ms)\nWhat was Curveball's profession?\tfun and addictive online game\t-5.447233005528011\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, fun and addictive online game) -> fun and addictive online game (9436ms)\nWhat was Curveball's profession?\trapid fire quiz show\t-5.447233005528011\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, rapid fire quiz show) -> rapid fire quiz show (9436ms)\nWhat was Curveball's profession?\tintroducing Leonardo DaVinci\t-5.447233005528011\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (introducing Leonardo DaVinci, Instance Of, curveballs) -> introducing Leonardo DaVinci (9436ms)\nWhat was Curveball's profession?\tFilm\t-5.453819773805181\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Joe Torre: Curveballs Along the Way, Type, Film) -> Film (9620ms)\nWhat was Curveball's profession?\tBook\t-5.453819773805181\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Book, Instance, Curveballs) -> Book (9620ms)\nWhat was Curveball's profession?\tSECRET INVASION\t-5.4699897018353845\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (SECRET INVASION, Instance Of, curveball) -> SECRET INVASION (9735ms)\nWhat was Curveball's profession?\tsource of information\t-5.4775346982157505\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (CURVEBALL, Instance Of, source of information) -> source of information (9735ms)\nWhat was Curveball's profession?\tcompletely unreliable informant\t-5.483006202116016\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, completely unreliable informant) -> completely unreliable informant (9735ms)\nWhat was Curveball's profession?\tstrategy quiz format\t-5.483006202116016\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, strategy quiz format) -> strategy quiz format (9877ms)\nWhat was Curveball's profession?\thighly regarded informant\t-5.483006202116016\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, highly regarded informant) -> highly regarded informant (9735ms)\nWhat was Curveball's profession?\tvery hittable pitch\t-5.483006202116016\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, very hittable pitch) -> very hittable pitch (9735ms)\nWhat was Curveball's profession?\ttwo\t-5.485314891669929\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be an, $x) -> (Curveballs, is an outlet for, two) -> two (9877ms)\nWhat was Curveball's profession?\taddictive futurist pong remake\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, addictive futurist pong remake) -> addictive futurist pong remake (9928ms)\nWhat was Curveball's profession?\tcoddled, lazy, underachieving college student\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, coddled, lazy, underachieving college student) -> coddled, lazy, underachieving college student (9877ms)\nWhat was Curveball's profession?\tsenior Iraqi engineer\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, senior Iraqi engineer) -> senior Iraqi engineer (9904ms)\nWhat was Curveball's profession?\tminimal yet addicting game\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, minimal yet addicting game) -> minimal yet addicting game (9953ms)\nWhat was Curveball's profession?\tThompson's breaking ball\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Thompson's breaking ball, Instance Of, hard curveball) -> Thompson's breaking ball (9904ms)\nWhat was Curveball's profession?\tElijah coming in the personage of John\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Elijah coming in the personage of John, Instance Of, huge curveball) -> Elijah coming in the personage of John (9877ms)\nWhat was Curveball's profession?\tEmpress of the Dark Spaces\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Empress of the Dark Spaces, Instance Of, great curveball) -> Empress of the Dark Spaces (9904ms)\nWhat was Curveball's profession?\tbenefit back-payments\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (benefit back-payments, Instance Of, curveballs) -> benefit back-payments (9904ms)\nWhat was Curveball's profession?\tball thrown with a ton of topspin\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (ball thrown with a ton of topspin, Instance Of, standard curveball) -> ball thrown with a ton of topspin (9877ms)\nWhat was Curveball's profession?\tMinny picking Flynn\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Minny picking Flynn, Instance Of, real curveball) -> Minny picking Flynn (9953ms)\nWhat was Curveball's profession?\tsort of virtual ping pong ball\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, sort of virtual ping pong ball) -> sort of virtual ping pong ball (9877ms)\nWhat was Curveball's profession?\tmodification of the classic old school arcade game Pong\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, modification of the classic old school arcade game Pong) -> modification of the classic old school arcade game Pong (9953ms)\nWhat was Curveball's profession?\tIraqi named Rafid Ahmed Alwan al-Janabi\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Iraqi named Rafid Ahmed Alwan al-Janabi) -> Iraqi named Rafid Ahmed Alwan al-Janabi (9928ms)\nWhat was Curveball's profession?\tGravity Ball HD\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Gravity Ball HD, Instance Of, literal curveball) -> Gravity Ball HD (9929ms)\nWhat was Curveball's profession?\tfree Kids game , Curveballs\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, free Kids game , Curveballs) -> free Kids game , Curveballs (9928ms)\nWhat was Curveball's profession?\tDre & Snoop\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Dre & Snoop, Instance Of, huge curveball) -> Dre & Snoop (9953ms)\nWhat was Curveball's profession?\tStephens out pitch\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Stephens out pitch, Instance Of, sharp curveball) -> Stephens out pitch (9904ms)\nWhat was Curveball's profession?\tYuko and Hiro-amazing-it\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Yuko and Hiro-amazing-it, Instance Of, real curveball) -> Yuko and Hiro-amazing-it (9928ms)\nWhat was Curveball's profession?\tAmerican Tabloid by James Ellroy\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (American Tabloid by James Ellroy, Instance Of, giant curveball) -> American Tabloid by James Ellroy (9953ms)\nWhat was Curveball's profession?\tGERMAN intelligence asset\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, GERMAN intelligence asset) -> GERMAN intelligence asset (9904ms)\nWhat was Curveball's profession?\tpretty nifty Web game\t-5.4921269609631524\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, pretty nifty Web game) -> pretty nifty Web game (9929ms)\nWhat was Curveball's profession?\tvery fast read\t-5.503570033135016\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, very fast read) -> very fast read (9979ms)\nWhat was Curveball's profession?\tbreaking pitch\t-5.506399805087683\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, breaking pitch) -> breaking pitch (9979ms)\nWhat was Curveball's profession?\tOrganization\t-5.508544326887997\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Recordings, Notable types, Organization) -> Organization (10071ms)\nWhat was Curveball's profession?\tPerson\t-5.508544326887997\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Person) -> Person (10050ms)\nWhat was Curveball's profession?\tImage\t-5.508544326887997\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Image, Instance, Curveball topspin) -> Image (10071ms)\nWhat was Curveball's profession?\tContent\t-5.508544326887997\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (12-6 Curveball, Notable types, Content) -> Content (10050ms)\nWhat was Curveball's profession?\tTopic\t-5.508544326887997\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Topic, Instance, Curveballs) -> Topic (10050ms)\nWhat was Curveball's profession?\tcrossword puzzle answer\t-5.510569892174624\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (CURVEBALLS, Instance Of, crossword puzzle answer) -> crossword puzzle answer (10072ms)\nWhat was Curveball's profession?\tMarvel LeFay\t-5.517052817486607\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Marvel LeFay, Instance Of, curveball) -> Marvel LeFay (10072ms)\nWhat was Curveball's profession?\tSean Marshall s next pitch\t-5.517052817486607\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sean Marshall s next pitch, Instance Of, curveball) -> Sean Marshall s next pitch (10092ms)\nWhat was Curveball's profession?\tAcclaimed novelist Andrew O?Hagan's latest\t-5.517052817486607\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Acclaimed novelist Andrew O?Hagan's latest, Instance Of, curveball) -> Acclaimed novelist Andrew O?Hagan's latest (10071ms)\nWhat was Curveball's profession?\tHanatarou and Izuru\t-5.517052817486607\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hanatarou and Izuru, Instance Of, curveball) -> Hanatarou and Izuru (10092ms)\nWhat was Curveball's profession?\tRamos on Wolverine\t-5.517052817486607\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Ramos on Wolverine, Instance Of, curveball) -> Ramos on Wolverine (10092ms)\nWhat was Curveball's profession?\tLast year's Evil Urges\t-5.517052817486607\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Last year's Evil Urges, Instance Of, curveball) -> Last year's Evil Urges (10092ms)\nWhat was Curveball's profession?\tLast week's\t-5.517052817486607\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Last week's, Instance Of, curveball) -> Last week's (10072ms)\nWhat was Curveball's profession?\tPedro's setback''\t-5.517052817486607\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Pedro's setback'', Instance Of, curveball) -> Pedro's setback'' (10092ms)\nWhat was Curveball's profession?\telite level movement pitch\t-5.519545403138952\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, elite level movement pitch) -> elite level movement pitch (10092ms)\nWhat was Curveball's profession?\tfriend of mine\t-5.522694226035899\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, friend of mine) -> friend of mine (10275ms)\nWhat was Curveball's profession?\tpitch during live batting practice\t-5.525029091083832\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, pitch during live batting practice) -> pitch during live batting practice (10275ms)\nWhat was Curveball's profession?\tDies Irae\t-5.533254623001152\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Dies Irae, Instance Of, complete curveball) -> Dies Irae (10275ms)\nWhat was Curveball's profession?\tSunrise/sunset\t-5.533254623001152\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sunrise/sunset, Instance Of, complete curveball) -> Sunrise/sunset (10275ms)\nWhat was Curveball's profession?\tcon artist\t-5.548362022341165\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, con artist) -> con artist (10275ms)\nWhat was Curveball's profession?\tfree online flash arcade game\t-5.548564918186212\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, free online flash arcade game) -> free online flash arcade game (10275ms)\nWhat was Curveball's profession?\tfree online flash game\t-5.554734252817729\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, free online flash game) -> free online flash game (10312ms)\nWhat was Curveball's profession?\tIraqi exile\t-5.62453752568529\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Iraqi exile) -> Iraqi exile (10312ms)\nWhat was Curveball's profession?\tIraqi informant\t-5.695337468077344\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Iraqi informant) -> Iraqi informant (10312ms)\nWhat was Curveball's profession?\thard pitch\t-5.703934187989367\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, hard pitch) -> hard pitch (10312ms)\nWhat was Curveball's profession?\tpitch type\t-5.724846803464216\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, pitch type) -> pitch type (10380ms)\nWhat was Curveball's profession?\tPublished Work\t-5.7460488872674205\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Published Work, Instance, Curveball) -> Published Work (10471ms)\nWhat was Curveball's profession?\tCreative Work\t-5.7460488872674205\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Creative Work) -> Creative Work (10491ms)\nWhat was Curveball's profession?\tWritten Work\t-5.7460488872674205\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveballs, Notable types, Written Work) -> Written Work (10491ms)\nWhat was Curveball's profession?\t3D version of pong\t-5.748906510642813\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, 3D version of pong) -> 3D version of pong (10491ms)\nWhat was Curveball's profession?\tadvanced pitch\t-5.75986326002841\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced pitch) -> advanced pitch (10491ms)\nWhat was Curveball's profession?\tspecialty pitch\t-5.768214019515447\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, specialty pitch) -> specialty pitch (10491ms)\nWhat was Curveball's profession?\tfun game\t-5.78185878742751\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, fun game) -> fun game (10514ms)\nWhat was Curveball's profession?\tpopular pitch\t-5.796531683546233\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, popular pitch) -> popular pitch (10514ms)\nWhat was Curveball's profession?\tmovement pitch\t-5.796531683546233\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, movement pitch) -> movement pitch (10514ms)\nWhat was Curveball's profession?\tunpredictable pitch\t-5.804401921981859\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, unpredictable pitch) -> unpredictable pitch (10514ms)\nWhat was Curveball's profession?\treliable source\t-5.81729575237763\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, reliable source) -> reliable source (10514ms)\nWhat was Curveball's profession?\tstandard pitch\t-5.831820364157659\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, standard pitch) -> standard pitch (10514ms)\nWhat was Curveball's profession?\tfascinating pitch\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, fascinating pitch) -> fascinating pitch (10535ms)\nWhat was Curveball's profession?\tgimmicky pitch\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, gimmicky pitch) -> gimmicky pitch (10555ms)\nWhat was Curveball's profession?\tbasic pitch\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, basic pitch) -> basic pitch (10535ms)\nWhat was Curveball's profession?\tping pong\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, ping pong) -> ping pong (10555ms)\nWhat was Curveball's profession?\taverage offering\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, average offering) -> average offering (10535ms)\nWhat was Curveball's profession?\tsecondary stuff\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, secondary stuff) -> secondary stuff (10555ms)\nWhat was Curveball's profession?\toutstanding pitch\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, outstanding pitch) -> outstanding pitch (10555ms)\nWhat was Curveball's profession?\thumping curveball\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (humping curveball, Instance Of, hittable curveball) -> humping curveball (10535ms)\nWhat was Curveball's profession?\tmeaningless codename\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, meaningless codename) -> meaningless codename (10555ms)\nWhat was Curveball's profession?\tdownright swindler\t-5.849295877417001\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, downright swindler) -> downright swindler (10535ms)\nWhat was Curveball's profession?\tshockwave game\t-5.863005098504901\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, shockwave game) -> shockwave game (10555ms)\nWhat was Curveball's profession?\tdrunken fool\t-5.865389310228519\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, drunken fool) -> drunken fool (10575ms)\nWhat was Curveball's profession?\tserious weapon\t-5.865746942477341\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, serious weapon) -> serious weapon (10575ms)\nWhat was Curveball's profession?\tdrunken liar\t-5.865746942477341\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, drunken liar) -> drunken liar (10575ms)\nWhat was Curveball's profession?\tclone trooper\t-5.867351924105601\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, clone trooper) -> clone trooper (10575ms)\nWhat was Curveball's profession?\tuplifting film\t-5.87152704509238\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, uplifting film) -> uplifting film (10575ms)\nWhat was Curveball's profession?\tcredible source\t-5.871639270170014\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, credible source) -> credible source (10575ms)\nWhat was Curveball's profession?\tplay game\t-5.8737863776131825\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, play game) -> play game (10594ms)\nWhat was Curveball's profession?\tgood spotter\t-5.873972475620361\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, good spotter) -> good spotter (10594ms)\nWhat was Curveball's profession?\thanging curveball\t-5.874221733940455\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (hanging curveball, Instance Of, curveball) -> hanging curveball (10594ms)\nWhat was Curveball's profession?\ttrue screwball\t-5.874221733940455\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (true screwball, Instance Of, curveball) -> true screwball (10594ms)\nWhat was Curveball's profession?\twonderful program\t-5.875061487868366\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, wonderful program) -> wonderful program (10594ms)\nWhat was Curveball's profession?\tchemical engineer\t-5.8764522821261425\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, chemical engineer) -> chemical engineer (10594ms)\nWhat was Curveball's profession?\tadvanced idea\t-5.876714319592802\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced idea) -> advanced idea (10614ms)\nWhat was Curveball's profession?\tconventional pitch\t-5.876714319592802\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, conventional pitch) -> conventional pitch (10614ms)\nWhat was Curveball's profession?\tfun, 3d game\t-5.88468442174389\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, fun, 3d game) -> fun, 3d game (10614ms)\nWhat was Curveball's profession?\ttrue 12-6 pitch\t-5.88468442174389\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, true 12-6 pitch) -> true 12-6 pitch (10614ms)\nWhat was Curveball's profession?\t3D version of the classic arcade game Pong\t-5.88468442174389\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (CURVEBALL, Instance Of, 3D version of the classic arcade game Pong) -> 3D version of the classic arcade game Pong (10633ms)\nWhat was Curveball's profession?\t3D style pong game\t-5.88468442174389\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, 3D style pong game) -> 3D style pong game (10633ms)\nWhat was Curveball's profession?\tFunk #49\t-5.88468442174389\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Funk #49, Instance Of, fiery curveball) -> Funk #49 (10614ms)\nWhat was Curveball's profession?\tfunbrain game\t-5.897999688241244\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, funbrain game) -> funbrain game (10633ms)\nWhat was Curveball's profession?\tflash game\t-5.901659446569189\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, flash game) -> flash game (10633ms)\nWhat was Curveball's profession?\tSony Tablet S2\t-5.909610278267344\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sony Tablet S2, Instance Of, curveball) -> Sony Tablet S2 (10633ms)\nWhat was Curveball's profession?\ta lot\t-5.913433383091028\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (his curveball, is a slow ball with, a lot) -> a lot (6973ms)\nWhat was Curveball's profession?\tthe Iraqi defector\t-5.989835328639058\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be name, $x) -> (Curveball, was the code name of, the Iraqi defector) -> the Iraqi defector (5334ms)\nWhat was Curveball's profession?\tclever fellow\t-6.00723753356433\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (Curveball, was a sort of, clever fellow) -> clever fellow (6973ms)\nWhat was Curveball's profession?\tElva\t-6.084226803411994\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Elva, Instance Of, scary curveball) -> Elva (10966ms)\nWhat was Curveball's profession?\tHughes\t-6.138951356494811\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hughes, Instance Of, curveball pitcher) -> Hughes (10966ms)\nWhat was Curveball's profession?\tMond\t-6.154046615370591\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Mond, Instance Of, curveball) -> Mond (10984ms)\nWhat was Curveball's profession?\tSima\t-6.1702484208851365\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sima, Instance Of, curveball specialist) -> Sima (10984ms)\nWhat was Curveball's profession?\tBlyleven\t-6.18007901853281\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Blyleven, Instance Of, curveball specialist) -> Blyleven (10984ms)\nWhat was Curveball's profession?\tStovall\t-6.18007901853281\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Stovall, Instance Of, curveball specialist) -> Stovall (10984ms)\nWhat was Curveball's profession?\tNaranjo\t-6.18007901853281\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Naranjo, Instance Of, curveball specialist) -> Naranjo (10984ms)\nWhat was Curveball's profession?\tTalbain\t-6.183845311929953\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Talbain, Instance Of, nice curveball) -> Talbain (10984ms)\nWhat was Curveball's profession?\teasy pitch\t-6.191622430385394\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, is a cheap 'n, easy pitch) -> easy pitch (6973ms)\nWhat was Curveball's profession?\tTacktick\t-6.208771168453407\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Tacktick, Instance Of, curveball) -> Tacktick (11001ms)\nWhat was Curveball's profession?\tHorrible\t-6.208771168453407\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Horrible, Instance Of, curveball) -> Horrible (11001ms)\nWhat was Curveball's profession?\tWonder Boys\t-6.376455916874234\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Wonder Boys, Instance Of, amazing curveball) -> Wonder Boys (11946ms)\nWhat was Curveball's profession?\tBedard\t-6.471943293026003\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, is a great pitch for, Bedard) -> Bedard (6973ms)\nWhat was Curveball's profession?\tWeaver\t-6.479901076040463\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, had been a weapon for, Weaver) -> Weaver (6973ms)\nWhat was Curveball's profession?\treflex and timing\t-6.60816218955526\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (CurveBall, is a challenging game of, reflex and timing) -> reflex and timing (7026ms)\nWhat was Curveball's profession?\tMoore\t-6.622891655761129\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (His curveball, has always been a big pitch for, Moore) -> Moore (7026ms)\nWhat was Curveball's profession?\tOzick?s most characteristic sentences\t-6.627475378290349\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (Ozick?s most characteristic sentences, move like, curveballs) -> Ozick?s most characteristic sentences (7026ms)\nWhat was Curveball's profession?\tSmashback\t-6.770624590230393\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (Smashback, is like taking, the famous curveball game) -> Smashback (7026ms)\nWhat was Curveball's profession?\tInstructors\t-7.269678605665907\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (Instructors, may likely like, the curveball decision) -> Instructors (7026ms)\nWhat was Curveball's profession?\tGeorge\t-7.3324566833804825\tWhat was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (George, Will More like, an incredibly slow curveball) -> George (7026ms)\nOn what date was the surgery performed?\tJuly 2\t-4.235619055848602\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, July 2) -> July 2 (827ms)\nOn what date was the surgery performed?\tJuly 25\t-4.320820170493459\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, will be performed on, July 25) -> July 25 (827ms)\nOn what date was the surgery performed?\tOctober 2007\t-4.329503804059328\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, was performed in, October 2007) -> October 2007 (827ms)\nOn what date was the surgery performed?\tApril 3\t-4.354027423560485\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, will be performed on, April 3) -> April 3 (827ms)\nOn what date was the surgery performed?\tNew York\t-4.561224293426866\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, New York) -> New York (2128ms)\nOn what date was the surgery performed?\tthe Receiving Hospital\t-4.592756363862872\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed in, the Receiving Hospital) -> the Receiving Hospital (2128ms)\nOn what date was the surgery performed?\tLas Playas\t-4.620867676885711\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, was performed in, Las Playas) -> Las Playas (2128ms)\nOn what date was the surgery performed?\tthe 5th\t-4.649737286729568\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, the 5th) -> the 5th (2128ms)\nOn what date was the surgery performed?\tchildren\t-4.651566902321132\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, will be performed on, children) -> children (3214ms)\nOn what date was the surgery performed?\t1/21/99\t-4.656875451470187\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, 1/21/99) -> 1/21/99 (3214ms)\nOn what date was the surgery performed?\teach eye\t-4.6746798599392045\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, will be performed on, each eye) -> each eye (3214ms)\nOn what date was the surgery performed?\tan adult\t-4.70489470769927\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, an adult) -> an adult (3214ms)\nOn what date was the surgery performed?\tfive ?\t-4.728982517510865\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, five ?) -> five ? (3480ms)\nOn what date was the surgery performed?\tpatients\t-4.733509691090944\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgeries, were performed on, patients) -> patients (3480ms)\nOn what date was the surgery performed?\ta man\t-4.779748545734618\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, a man) -> a man (3481ms)\nOn what date was the surgery performed?\tgeneral anesthesia\t-4.831174026610431\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, general anesthesia) -> general anesthesia (3480ms)\nOn what date was the surgery performed?\ta way\t-4.831442252423116\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgeries, were performed in, a way) -> a way (5377ms)\nOn what date was the surgery performed?\tinfants\t-4.854117654409505\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, infants) -> infants (5377ms)\nOn what date was the surgery performed?\ta Thursday\t-4.906140177320253\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, should be performed on, a Thursday) -> a Thursday (5377ms)\nOn what date was the surgery performed?\tobese people\t-4.909108647627212\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, obese people) -> obese people (5378ms)\nOn what date was the surgery performed?\tan outpatient basis\t-4.9114157492564505\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, would be performed on, an outpatient basis) -> an outpatient basis (5377ms)\nOn what date was the surgery performed?\tadults\t-4.9309479079644145\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, can be performed on, adults) -> adults (5428ms)\nOn what date was the surgery performed?\ta beating heart\t-4.969345621515667\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, a beating heart) -> a beating heart (5428ms)\nOn what date was the surgery performed?\toutpatient facilities\t-4.9693938909779085\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgeries, are performed in, outpatient facilities) -> outpatient facilities (5427ms)\nOn what date was the surgery performed?\tthe TV screen\t-4.97317236452968\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery performed, be on, $x) -> (the joint and perform surgery, is happening on, the TV screen) -> the TV screen (5427ms)\nOn what date was the surgery performed?\tJuly\t-4.981637331742794\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, July) -> July (5427ms)\nOn what date was the surgery performed?\tan outpatient\t-4.994968024253479\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is generally performed in, an outpatient) -> an outpatient (5428ms)\nOn what date was the surgery performed?\tany kind\t-4.996328349682592\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, can be performed on, any kind) -> any kind (5520ms)\nOn what date was the surgery performed?\tSaturdays and Sundays\t-4.9989809615881775\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgeries, were performed on, Saturdays and Sundays) -> Saturdays and Sundays (5520ms)\nOn what date was the surgery performed?\ta timely basis\t-5.003401946295955\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, a timely basis) -> a timely basis (5520ms)\nOn what date was the surgery performed?\tVail\t-5.0072790535883644\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Vail) -> Vail (5520ms)\nOn what date was the surgery performed?\tan ambulatory basis\t-5.012243915711511\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, an ambulatory basis) -> an ambulatory basis (5520ms)\nOn what date was the surgery performed?\tunder one hundred\t-5.013527278179051\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgeries, were performed on just, under one hundred) -> under one hundred (5577ms)\nOn what date was the surgery performed?\tchildren and adults\t-5.025969205270261\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, may be performed on, children and adults) -> children and adults (5577ms)\nOn what date was the surgery performed?\tMay 5-6\t-5.027275295339332\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, will be performed on, May 5-6) -> May 5-6 (5577ms)\nOn what date was the surgery performed?\tFriday Dec 16\t-5.03169628004711\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, Friday Dec 16) -> Friday Dec 16 (5577ms)\nOn what date was the surgery performed?\teither hospitalized patients\t-5.0432609450106645\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, can be performed on, either hospitalized patients) -> either hospitalized patients (5789ms)\nOn what date was the surgery performed?\tyounger patients\t-5.047361578765402\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is sometimes performed on, younger patients) -> younger patients (5788ms)\nOn what date was the surgery performed?\tan out-patient surgery setting\t-5.064813539176679\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, can be performed in, an out-patient surgery setting) -> an out-patient surgery setting (5842ms)\nOn what date was the surgery performed?\tan emergency situation\t-5.070766696939347\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is being performed in, an emergency situation) -> an emergency situation (5842ms)\nOn what date was the surgery performed?\tan inpatient or outpatient basis\t-5.072590147216974\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, an inpatient or outpatient basis) -> an inpatient or outpatient basis (5842ms)\nOn what date was the surgery performed?\tJuly 11 , 2007\t-5.079413326258893\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, July 11 , 2007) -> July 11 , 2007 (5842ms)\nOn what date was the surgery performed?\tJanuary 27 , 2004\t-5.085210484678156\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, January 27 , 2004) -> January 27 , 2004 (5842ms)\nOn what date was the surgery performed?\tSept. 1 , 2005\t-5.091399842188127\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, Sept. 1 , 2005) -> Sept. 1 , 2005 (5842ms)\nOn what date was the surgery performed?\tindividuals\t-5.0985435466430165\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is typically performed on, individuals) -> individuals (6177ms)\nOn what date was the surgery performed?\tJuly 1 , 1893\t-5.115540226647829\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, July 1 , 1893) -> July 1 , 1893 (6177ms)\nOn what date was the surgery performed?\tAugust 8th , 2006\t-5.115540226647829\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, August 8th , 2006) -> August 8th , 2006 (6231ms)\nOn what date was the surgery performed?\tan in?patient or out?patient basis\t-5.122169786233177\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, an in?patient or out?patient basis) -> an in?patient or out?patient basis (6231ms)\nOn what date was the surgery performed?\tJuly 11 , 1953\t-5.127095403516097\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, July 11 , 1953) -> July 11 , 1953 (6231ms)\nOn what date was the surgery performed?\tDr. U\t-5.150637653997986\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Dr. U) -> Dr. U (6231ms)\nOn what date was the surgery performed?\tJanuary 7 , 2011\t-5.155454305394508\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, January 7 , 2011) -> January 7 , 2011 (6231ms)\nOn what date was the surgery performed?\ta cold operating table\t-5.159875290102286\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, a cold operating table) -> a cold operating table (6231ms)\nOn what date was the surgery performed?\tJuly 22 , 1946\t-5.161643715606774\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, July 22 , 1946) -> July 22 , 1946 (6290ms)\nOn what date was the surgery performed?\tDr. Ackerman\t-5.166061232716515\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, Dr. Ackerman) -> Dr. Ackerman (6290ms)\nOn what date was the surgery performed?\tTuesday\t-5.189967134220136\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The Surgery, was performed on, Tuesday) -> Tuesday (6290ms)\nOn what date was the surgery performed?\tMonday\t-5.1906496830289734\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, Monday) -> Monday (6290ms)\nOn what date was the surgery performed?\tSaturday\t-5.201716897869276\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, Saturday) -> Saturday (6290ms)\nOn what date was the surgery performed?\tan out patient basis\t-5.207052787486642\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, can be performed on, an out patient basis) -> an out patient basis (6290ms)\nOn what date was the surgery performed?\ttwo steps\t-5.207618520591004\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, two steps) -> two steps (6355ms)\nOn what date was the surgery performed?\tJune 2008\t-5.219997288313241\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, June 2008) -> June 2008 (6356ms)\nOn what date was the surgery performed?\tan ambulatory surgery center\t-5.252911414466219\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, an ambulatory surgery center) -> an ambulatory surgery center (6356ms)\nOn what date was the surgery performed?\t60 Galveston area patients\t-5.253031060068909\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, will be performed on, 60 Galveston area patients) -> 60 Galveston area patients (6356ms)\nOn what date was the surgery performed?\ttwo different ways\t-5.270576476121224\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, can be performed in, two different ways) -> two different ways (6356ms)\nOn what date was the surgery performed?\tthe Receiving Sanatorium\t-5.272130729595852\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed in, the Receiving Sanatorium) -> the Receiving Sanatorium (6518ms)\nOn what date was the surgery performed?\t2 hours\t-5.282974173721863\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in approximately, 2 hours) -> 2 hours (6518ms)\nOn what date was the surgery performed?\ta multidisciplinary program\t-5.30531534971035\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, should be performed in, a multidisciplinary program) -> a multidisciplinary program (6518ms)\nOn what date was the surgery performed?\tMarch 2007\t-5.3058987155345925\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed simultaneously in, March 2007) -> March 2007 (6519ms)\nOn what date was the surgery performed?\ta private hospital\t-5.313921066676308\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, a private hospital) -> a private hospital (6518ms)\nOn what date was the surgery performed?\tthe Receiving Medical centre\t-5.324531461596351\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed in, the Receiving Medical centre) -> the Receiving Medical centre (6518ms)\nOn what date was the surgery performed?\ta surgical facility\t-5.338850286443123\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is usually performed in, a surgical facility) -> a surgical facility (6551ms)\nOn what date was the surgery performed?\tan outpatient facility\t-5.3592514053070754\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is generally performed in, an outpatient facility) -> an outpatient facility (6551ms)\nOn what date was the surgery performed?\ta dedicated surgery center\t-5.36190401721266\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, can be performed in, a dedicated surgery center) -> a dedicated surgery center (6551ms)\nOn what date was the surgery performed?\tepileptics\t-5.3663163294225935\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, epileptics) -> epileptics (6551ms)\nOn what date was the surgery performed?\tsite\t-5.39522781415852\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, site) -> site (6551ms)\nOn what date was the surgery performed?\tbodies\t-5.427386577179809\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, bodies) -> bodies (6627ms)\nOn what date was the surgery performed?\tvictims\t-5.440588935756015\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, victims) -> victims (6626ms)\nOn what date was the surgery performed?\tDallas\t-5.609740336764148\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Dallas) -> Dallas (6626ms)\nOn what date was the surgery performed?\tJune\t-5.620009207765217\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, June) -> June (6626ms)\nOn what date was the surgery performed?\ta doctor\t-5.622655124643066\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, can be performed in, a doctor) -> a doctor (6626ms)\nOn what date was the surgery performed?\tJanuary\t-5.626208485650583\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, January) -> January (6695ms)\nOn what date was the surgery performed?\tEurope\t-5.638979505165822\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Europe) -> Europe (6695ms)\nOn what date was the surgery performed?\tFebruary\t-5.638979505165822\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed in, February) -> February (6695ms)\nOn what date was the surgery performed?\twomen\t-5.645878283994429\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is usually performed on, women) -> women (6695ms)\nOn what date was the surgery performed?\tBaltimore\t-5.646609604514534\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Baltimore) -> Baltimore (6695ms)\nOn what date was the surgery performed?\ta facility\t-5.648490290587594\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed in, a facility) -> a facility (6695ms)\nOn what date was the surgery performed?\tAugust\t-5.654959586619701\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, was performed in, August) -> August (6966ms)\nOn what date was the surgery performed?\tApril\t-5.681485547568663\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, April) -> April (6966ms)\nOn what date was the surgery performed?\ta hospital\t-5.746015435384597\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, may be performed in, a hospital) -> a hospital (6966ms)\nOn what date was the surgery performed?\ta matter\t-5.755677023073993\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is generally performed in, a matter) -> a matter (6966ms)\nOn what date was the surgery performed?\tFebruary 2003\t-5.847833028027082\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, February 2003) -> February 2003 (7006ms)\nOn what date was the surgery performed?\tan outpatient setting\t-5.931995023822161\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, an outpatient setting) -> an outpatient setting (7006ms)\nOn what date was the surgery performed?\tconjunction\t-5.968075806818227\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is either performed in, conjunction) -> conjunction (7006ms)\nOn what date was the surgery performed?\tdifferent days\t-6.150523101167668\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgeries, are performed on, different days) -> different days (7006ms)\nOn what date was the surgery performed?\ta Przewalski horse\t-6.207822709079628\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, a Przewalski horse) -> a Przewalski horse (7068ms)\nOn what date was the surgery performed?\tCharlotte\t-6.233965072262142\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Charlotte) -> Charlotte (7068ms)\nOn what date was the surgery performed?\tthe Plaintiff\t-6.2492739104926995\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is actually performed on, the Plaintiff) -> the Plaintiff (7068ms)\nOn what date was the surgery performed?\tLos Angeles\t-6.2717658992419665\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Los Angeles) -> Los Angeles (7613ms)\nOn what date was the surgery performed?\tthe US.\t-6.355105071521377\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgeries, being performed in, the US.) -> the US. (7612ms)\nOn what date was the surgery performed?\ttwo stages\t-6.423883239596278\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed in, two stages) -> two stages (7612ms)\nOn what date was the surgery performed?\tthe correct part\t-6.438412578386908\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the correct part) -> the correct part (7675ms)\nOn what date was the surgery performed?\tpremenopausal women\t-6.455942418984019\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed In, premenopausal women) -> premenopausal women (7675ms)\nOn what date was the surgery performed?\tthe eyes one\t-6.466607176620677\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the eyes one) -> the eyes one (7675ms)\nOn what date was the surgery performed?\tan office\t-6.471579117218731\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, may be performed in, an office) -> an office (7675ms)\nOn what date was the surgery performed?\tMay 2005\t-6.472057763525075\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, May 2005) -> May 2005 (7705ms)\nOn what date was the surgery performed?\tSaturday morning\t-6.4737222584230905\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, was done on, Saturday morning) -> Saturday morning (11144ms)\nOn what date was the surgery performed?\tthe right shoulder\t-6.4810430297993715\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, has been performed on, the right shoulder) -> the right shoulder (7705ms)\nOn what date was the surgery performed?\toperating rooms\t-6.493812277577042\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, operating rooms) -> operating rooms (7705ms)\nOn what date was the surgery performed?\ta Saturday\t-6.507714015076123\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, was done on, a Saturday) -> a Saturday (11144ms)\nOn what date was the surgery performed?\tthree steps\t-6.514213396440994\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, three steps) -> three steps (7705ms)\nOn what date was the surgery performed?\tan outpatient clinic\t-6.517078450047267\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, an outpatient clinic) -> an outpatient clinic (7705ms)\nOn what date was the surgery performed?\tan operating room\t-6.517078450047267\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, an operating room) -> an operating room (7705ms)\nOn what date was the surgery performed?\tlast Tuesday\t-6.533338483901268\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, last Tuesday) -> last Tuesday (7735ms)\nOn what date was the surgery performed?\tsevere cases\t-6.53967123997975\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed In, severe cases) -> severe cases (7735ms)\nOn what date was the surgery performed?\tthe type\t-6.539703080277384\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed depends on, the type) -> the type (7735ms)\nOn what date was the surgery performed?\tthe first day\t-6.541613272119224\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, the first day) -> the first day (7735ms)\nOn what date was the surgery performed?\ta hospital or a surgery center\t-6.599545091844746\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, a hospital or a surgery center) -> a hospital or a surgery center (7764ms)\nOn what date was the surgery performed?\tthe rich and famous\t-6.606628533263354\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgeries, are performed on, the rich and famous) -> the rich and famous (7764ms)\nOn what date was the surgery performed?\torder\t-6.62201145501747\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, to be performed in, order) -> order (7764ms)\nOn what date was the surgery performed?\tthe United States\t-6.623069281487579\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgeries, are performed annually in, the United States) -> the United States (7764ms)\nOn what date was the surgery performed?\tCaracas Venezuela\t-6.636851765269561\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgeries, are done in, Caracas Venezuela) -> Caracas Venezuela (7795ms)\nOn what date was the surgery performed?\ta hospital or surgery center\t-6.638686401117633\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, a hospital or surgery center) -> a hospital or surgery center (7795ms)\nOn what date was the surgery performed?\tthe wrong part\t-6.66106609374253\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, the wrong part) -> the wrong part (7795ms)\nOn what date was the surgery performed?\tthe wrong area\t-6.674329047865864\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, the wrong area) -> the wrong area (7795ms)\nOn what date was the surgery performed?\tthe right knee\t-6.706224748050956\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, the right knee) -> the right knee (7826ms)\nOn what date was the surgery performed?\tless than one hour\t-6.7093720940869\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, can be performed in, less than one hour) -> less than one hour (7826ms)\nOn what date was the surgery performed?\tthe hospital\t-6.73969366222442\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, the hospital) -> the hospital (7826ms)\nOn what date was the surgery performed?\tthe rest\t-6.819448465579269\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed in, the rest) -> the rest (7826ms)\nOn what date was the surgery performed?\tthe NHS.\t-6.83832050271756\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the original surgery, was done on, the NHS.) -> the NHS. (11144ms)\nOn what date was the surgery performed?\tthe Hospital\t-6.8491542488167205\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was be performed at, the Hospital) -> the Hospital (7826ms)\nOn what date was the surgery performed?\tPhiladelphia\t-6.888173246864035\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Philadelphia) -> Philadelphia (7826ms)\nOn what date was the surgery performed?\tOctober\t-6.901650322595405\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, October) -> October (7853ms)\nOn what date was the surgery performed?\tCosta Rica\t-6.904318436502427\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be conduct in, $x) -> (The surgery, will be conducted in, Costa Rica) -> Costa Rica (7853ms)\nOn what date was the surgery performed?\tround-the-clock\t-6.914233856186815\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgeries, are performed, round-the-clock) -> round-the-clock (7853ms)\nOn what date was the surgery performed?\tthe 23rd\t-6.921012627683247\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (the surgery, was conducted on, the 23rd) -> the 23rd (9876ms)\nOn what date was the surgery performed?\tLouisville\t-6.922051441459357\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Louisville) -> Louisville (7881ms)\nOn what date was the surgery performed?\tthe wrong place\t-6.93424053298777\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is being performed in, the wrong place) -> the wrong place (7880ms)\nOn what date was the surgery performed?\ta statement\t-6.9427846008492455\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, was performed in, a statement) -> a statement (7880ms)\nOn what date was the surgery performed?\tsecond time\t-6.959664051718411\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, is performed, second time) -> second time (7907ms)\nOn what date was the surgery performed?\tCleveland\t-6.9679778225709335\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, to be performed in, Cleveland) -> Cleveland (7907ms)\nOn what date was the surgery performed?\tthe same hospital\t-6.970000715145291\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgeries, were performed in, the same hospital) -> the same hospital (7907ms)\nOn what date was the surgery performed?\tone part\t-6.981059039393079\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, is only done on, one part) -> one part (11144ms)\nOn what date was the surgery performed?\tFriday morning\t-6.992235507322828\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, is done on, Friday morning) -> Friday morning (11144ms)\nOn what date was the surgery performed?\tteenagers\t-7.016080142330992\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, was being done on, teenagers) -> teenagers (11144ms)\nOn what date was the surgery performed?\tthe patients\t-7.024103763734828\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the patients) -> the patients (7907ms)\nOn what date was the surgery performed?\tthe intensive care unit\t-7.024135578436061\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed in, the intensive care unit) -> the intensive care unit (7934ms)\nOn what date was the surgery performed?\tone layer\t-7.025344955946903\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, is performed, one layer) -> one layer (7934ms)\nOn what date was the surgery performed?\ta Monday\t-7.068151322784059\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, was done on, a Monday) -> a Monday (11144ms)\nOn what date was the surgery performed?\tthe upper or lower lids\t-7.073770294927698\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, can be performed on, the upper or lower lids) -> the upper or lower lids (7934ms)\nOn what date was the surgery performed?\tvarious muscles\t-7.080799169737491\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, is performed, various muscles) -> various muscles (7934ms)\nOn what date was the surgery performed?\tthe surgeons office\t-7.094871386462802\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is generally performed in, the surgeons office) -> the surgeons office (7960ms)\nOn what date was the surgery performed?\tone eye\t-7.100437180554165\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is performed, one eye) -> one eye (7960ms)\nOn what date was the surgery performed?\tworry\t-7.103910527904676\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, is performed is, worry) -> worry (7960ms)\nOn what date was the surgery performed?\tmen\t-7.1045286032240575\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, usually is done on, men) -> men (11362ms)\nOn what date was the surgery performed?\tNathan\t-7.1089490015335475\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, Nathan) -> Nathan (7960ms)\nOn what date was the surgery performed?\tone year\t-7.120838299418117\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is performed, one year) -> one year (7960ms)\nOn what date was the surgery performed?\tears\t-7.128860309845061\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, is usually done on, ears) -> ears (11362ms)\nOn what date was the surgery performed?\tthree days\t-7.134896727344394\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, perform within, $x) -> (the surgery, was performed within, three days) -> three days (7960ms)\nOn what date was the surgery performed?\ta later hospital admission\t-7.151679576426134\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, is done on, a later hospital admission) -> a later hospital admission (11361ms)\nOn what date was the surgery performed?\ttwo weeks\t-7.160627214490412\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, two weeks) -> two weeks (7987ms)\nOn what date was the surgery performed?\ttwo days\t-7.160627214490412\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, two days) -> two days (7987ms)\nOn what date was the surgery performed?\t3 months\t-7.160627214490412\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, 3 months) -> 3 months (7987ms)\nOn what date was the surgery performed?\tthree hours\t-7.162145372684274\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, were performed, three hours) -> three hours (7987ms)\nOn what date was the surgery performed?\tthemapped locations\t-7.168824786430201\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (the surgery, is done on, themapped locations) -> themapped locations (11430ms)\nOn what date was the surgery performed?\tArturo Bonilla\t-7.16946759783988\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was be performed by, Arturo Bonilla) -> Arturo Bonilla (7987ms)\nOn what date was the surgery performed?\ta team\t-7.182711255977813\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is being performed by, a team) -> a team (8013ms)\nOn what date was the surgery performed?\tthree months\t-7.186838340001492\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, three months) -> three months (8013ms)\nOn what date was the surgery performed?\tlast month\t-7.186838340001492\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, last month) -> last month (8013ms)\nOn what date was the surgery performed?\t7-14-2000\t-7.1871445731084895\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, was performed on, 7-14-2000) -> 7-14-2000 (8013ms)\nOn what date was the surgery performed?\tdetail\t-7.189307402722594\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, detail) -> detail (8013ms)\nOn what date was the surgery performed?\tlast June\t-7.191574107444858\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, last June) -> last June (8013ms)\nOn what date was the surgery performed?\tTuesday night\t-7.1933425329493454\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, Tuesday night) -> Tuesday night (8038ms)\nOn what date was the surgery performed?\t09-05-2000\t-7.203060139137408\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, was performed on, 09-05-2000) -> 09-05-2000 (8039ms)\nOn what date was the surgery performed?\toutpatient\t-7.211782691800423\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is performed, outpatient) -> outpatient (8039ms)\nOn what date was the surgery performed?\tfour to six months\t-7.226495217794719\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgeries, are performed, four to six months) -> four to six months (8150ms)\nOn what date was the surgery performed?\tWednesday afternoon\t-7.227826224210471\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, Wednesday afternoon) -> Wednesday afternoon (8150ms)\nOn what date was the surgery performed?\tthe 3rd day\t-7.2339396176489865\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be complete on, $x) -> (the surgery, will be completed on, the 3rd day) -> the 3rd day (9798ms)\nOn what date was the surgery performed?\tan inpatient basis\t-7.25332741385733\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, is done on, an inpatient basis) -> an inpatient basis (11430ms)\nOn what date was the surgery performed?\ta day case\t-7.256044541187876\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (the surgery, is done on, a day case) -> a day case (11596ms)\nOn what date was the surgery performed?\tyesterday\t-7.257368712589686\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, yesterday) -> yesterday (8150ms)\nOn what date was the surgery performed?\taround 50,000 people\t-7.260465525895653\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (the surgery, is done on, around 50,000 people) -> around 50,000 people (11597ms)\nOn what date was the surgery performed?\t500,000 Americans\t-7.262204965064449\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, will be perform on, $x) -> (the surgery, will be performed on nearly, 500,000 Americans) -> 500,000 Americans (11597ms)\nOn what date was the surgery performed?\tone side\t-7.2737285327212815\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, is only done on, one side) -> one side (11597ms)\nOn what date was the surgery performed?\t48 hours\t-7.276169484451048\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, perform within, $x) -> (the first surgery, usually is performed within, 48 hours) -> 48 hours (8257ms)\nOn what date was the surgery performed?\tone side first\t-7.282666732177823\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be carry out on, $x) -> (the surgery, is carried out on, one side first) -> one side first (10564ms)\nOn what date was the surgery performed?\t2005\t-7.287966793433891\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, was done in, 2005) -> 2005 (8279ms)\nOn what date was the surgery performed?\t1st October 2010\t-7.289644046047905\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, was done on, 1st October 2010) -> 1st October 2010 (11654ms)\nOn what date was the surgery performed?\tChristmas Eve 2008\t-7.2905282851512965\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, was done on, Christmas Eve 2008) -> Christmas Eve 2008 (11655ms)\nOn what date was the surgery performed?\tthe patient\t-7.2909259256093275\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, to be perform on, the patient) -> the patient (8279ms)\nOn what date was the surgery performed?\t6/30/2006\t-7.292296657953489\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The 4 hour surgery, was done on, 6/30/2006) -> 6/30/2006 (11655ms)\nOn what date was the surgery performed?\tunborn children\t-7.294076355458268\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is performed on, unborn children) -> unborn children (8279ms)\nOn what date was the surgery performed?\tlymph node cancer types\t-7.298929291704617\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, can be performed on, lymph node cancer types) -> lymph node cancer types (8279ms)\nOn what date was the surgery performed?\tthe second eye\t-7.304846340861211\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the second eye) -> the second eye (8305ms)\nOn what date was the surgery performed?\ta hospital setting\t-7.306764447705707\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (the surgery, is done in, a hospital setting) -> a hospital setting (8305ms)\nOn what date was the surgery performed?\ta single step\t-7.309498403756435\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (the surgery, will be done in, a single step) -> a single step (8305ms)\nOn what date was the surgery performed?\t1974\t-7.310528536893039\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be develop in, $x) -> (The surgery, was developed in, 1974) -> 1974 (8331ms)\nOn what date was the surgery performed?\tan out-patient basis\t-7.3182715789799655\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, can be done on, an out-patient basis) -> an out-patient basis (12269ms)\nOn what date was the surgery performed?\tWednesday or Thursday\t-7.335592719457495\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgeries, will be done on, Wednesday or Thursday) -> Wednesday or Thursday (12350ms)\nOn what date was the surgery performed?\tan urgent basis\t-7.342274064277855\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (the first surgery, was done on, an urgent basis) -> an urgent basis (12350ms)\nOn what date was the surgery performed?\tNovember 9 , 2004\t-7.343701338416409\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, November 9 , 2004) -> November 9 , 2004 (8357ms)\nOn what date was the surgery performed?\tMr. Siegel\t-7.345118131851941\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, was performed on, Mr. Siegel) -> Mr. Siegel (8357ms)\nOn what date was the surgery performed?\tone day\t-7.345514215370157\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be conduct in, $x) -> (the surgery, can be conducted in, one day) -> one day (8357ms)\nOn what date was the surgery performed?\t45-year-old Abida Parveen\t-7.350723834602702\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (The second surgery, was conducted on, 45-year-old Abida Parveen) -> 45-year-old Abida Parveen (9876ms)\nOn what date was the surgery performed?\ta bloodless field\t-7.351230956297884\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, can be perform in, $x) -> (the surgery, can be performed in, a bloodless field) -> a bloodless field (8357ms)\nOn what date was the surgery performed?\ta day-care basis\t-7.364314419689488\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, is usually done on, a day-care basis) -> a day-care basis (12488ms)\nOn what date was the surgery performed?\tan hour\t-7.365208938857799\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (the surgery, is done in about, an hour) -> an hour (8382ms)\nOn what date was the surgery performed?\ta outpatient basis\t-7.370011842591365\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, will be done on, a outpatient basis) -> a outpatient basis (12487ms)\nOn what date was the surgery performed?\tan in-patient or outpatient basis\t-7.370788852699605\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, will be done on, an in-patient or outpatient basis) -> an in-patient or outpatient basis (12595ms)\nOn what date was the surgery performed?\tearth\t-7.389987132631847\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the most popular cosmetic surgeries, are done on, earth) -> earth (12595ms)\nOn what date was the surgery performed?\ta gallbladder disease\t-7.404597969952231\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is performed on, a gallbladder disease) -> a gallbladder disease (8382ms)\nOn what date was the surgery performed?\tone time\t-7.409340470145366\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, one time) -> one time (8407ms)\nOn what date was the surgery performed?\tthe UK.\t-7.4143019974162785\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, have be perform in, $x) -> (the surgery, should have been performed in, the UK.) -> the UK. (8408ms)\nOn what date was the surgery performed?\tprivate clinics\t-7.416620619368361\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (the surgeries, are done in, private clinics) -> private clinics (8408ms)\nOn what date was the surgery performed?\tinfrabony defects\t-7.417372098072543\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgeries, were performed on, infrabony defects) -> infrabony defects (8408ms)\nOn what date was the surgery performed?\tthree stages\t-7.421469023259271\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, three stages) -> three stages (8431ms)\nOn what date was the surgery performed?\tOctober 10 , 2000\t-7.4257808918198345\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (The surgery, was conducted on, October 10 , 2000) -> October 10 , 2000 (9876ms)\nOn what date was the surgery performed?\tan emergency basis\t-7.426310694400413\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, is performed on, an emergency basis) -> an emergency basis (8431ms)\nOn what date was the surgery performed?\ttwo ways\t-7.427545797023992\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, is done in, two ways) -> two ways (8431ms)\nOn what date was the surgery performed?\ta surgery center\t-7.4318474623929\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, is performed in, a surgery center) -> a surgery center (8457ms)\nOn what date was the surgery performed?\tless time\t-7.4460625680442085\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, less time) -> less time (8457ms)\nOn what date was the surgery performed?\tthe ICU.\t-7.451354577940113\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, will be done in, the ICU.) -> the ICU. (8482ms)\nOn what date was the surgery performed?\tcancer patients\t-7.456515385436138\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is performed often on, cancer patients) -> cancer patients (8482ms)\nOn what date was the surgery performed?\ta well-equipped facility or hospital\t-7.469488029984651\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (the surgery, is done in, a well-equipped facility or hospital) -> a well-equipped facility or hospital (8507ms)\nOn what date was the surgery performed?\tmass lesions\t-7.471546765063959\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, can be performed on, mass lesions) -> mass lesions (8507ms)\nOn what date was the surgery performed?\tMarch 13 , 2009\t-7.473587393277288\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be complete on, $x) -> (The surgery, was successfully completed on, March 13 , 2009) -> March 13 , 2009 (9797ms)\nOn what date was the surgery performed?\tolder patients\t-7.4762344148277045\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, is primarily performed in, older patients) -> older patients (8507ms)\nOn what date was the surgery performed?\ta safe and humane manner\t-7.47751749421959\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, can be perform in, $x) -> (the surgery, can be performed in, a safe and humane manner) -> a safe and humane manner (8706ms)\nOn what date was the surgery performed?\tAugust time\t-7.480224069111742\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, will be do in, $x) -> (the surgery, will be done in about, August time) -> August time (8706ms)\nOn what date was the surgery performed?\tJune 2001\t-7.480597666219621\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, June 2001) -> June 2001 (8706ms)\nOn what date was the surgery performed?\tJuly 2003\t-7.492976433941857\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, July 2003) -> July 2003 (8746ms)\nOn what date was the surgery performed?\tthe ACHD centre\t-7.493742758095866\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be carry out in, $x) -> (the surgery, be carried out in, the ACHD centre) -> the ACHD centre (8746ms)\nOn what date was the surgery performed?\tFebruary 2009\t-7.495629045847442\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, was done in, February 2009) -> February 2009 (8746ms)\nOn what date was the surgery performed?\tvarious disciplines\t-7.497976639230787\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgeries, are performed in, various disciplines) -> various disciplines (8770ms)\nOn what date was the surgery performed?\tBoston\t-7.500172687998405\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Boston) -> Boston (8771ms)\nOn what date was the surgery performed?\t1995 and 1996\t-7.501068456523106\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (the surgeries, were done in, 1995 and 1996) -> 1995 and 1996 (8771ms)\nOn what date was the surgery performed?\tan office setting\t-7.504605254829787\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, is done in, an office setting) -> an office setting (8771ms)\nOn what date was the surgery performed?\tfewer and smaller warts\t-7.505203093135657\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is performed on, fewer and smaller warts) -> fewer and smaller warts (8794ms)\nOn what date was the surgery performed?\tfour minutes\t-7.5121139628395746\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, is done in, four minutes) -> four minutes (8795ms)\nOn what date was the surgery performed?\tVirgina\t-7.512397982362028\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Virgina) -> Virgina (8794ms)\nOn what date was the surgery performed?\tany community hospital\t-7.5138430199304995\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, cannot be performed in, any community hospital) -> any community hospital (8795ms)\nOn what date was the surgery performed?\tWednesday\t-7.519790129679063\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be complete on, $x) -> (The surgery, was completed on, Wednesday) -> Wednesday (9798ms)\nOn what date was the surgery performed?\t24 hours\t-7.521199951171458\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, do within, $x) -> (the surgery, is normally done within, 24 hours) -> 24 hours (8817ms)\nOn what date was the surgery performed?\t1-3 hours\t-7.5231127845148675\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be accomplish in, $x) -> (The surgery, is generally accomplished in, 1-3 hours) -> 1-3 hours (8818ms)\nOn what date was the surgery performed?\tMr. Oden\t-7.523357646494236\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (The most recent arthroscopic surgery, was conducted on, Mr. Oden) -> Mr. Oden (9876ms)\nOn what date was the surgery performed?\ta surgery clinic\t-7.529362790274261\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, can be done in, a surgery clinic) -> a surgery clinic (8817ms)\nOn what date was the surgery performed?\t22 and 23 June 2008\t-7.529547004004207\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (The surgeries, were conducted on, 22 and 23 June 2008) -> 22 and 23 June 2008 (9876ms)\nOn what date was the surgery performed?\tpartnership\t-7.530114274765936\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be run in, $x) -> (The surgery, will be run in, partnership) -> partnership (8818ms)\nOn what date was the surgery performed?\tpatients 16 and younger\t-7.53461005631495\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, has been performed on, patients 16 and younger) -> patients 16 and younger (8842ms)\nOn what date was the surgery performed?\ta high tibia opening wedge osteotomy\t-7.538738592021096\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, performed was, a high tibia opening wedge osteotomy) -> a high tibia opening wedge osteotomy (8841ms)\nOn what date was the surgery performed?\ta few years\t-7.539465769632521\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be repeat in, $x) -> (the surgery, may have to be repeated in, a few years) -> a few years (8842ms)\nOn what date was the surgery performed?\ta hemorrhage-free environment\t-7.539754694461\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, was performed in, a hemorrhage-free environment) -> a hemorrhage-free environment (8842ms)\nOn what date was the surgery performed?\tdarkness\t-7.548016474824911\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, darkness) -> darkness (8864ms)\nOn what date was the surgery performed?\tleft eye utilizing ladarvision\t-7.548176375850642\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, performed on, left eye utilizing ladarvision) -> left eye utilizing ladarvision (8864ms)\nOn what date was the surgery performed?\tJanuary 2011\t-7.550583580114349\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be conduct in, $x) -> (The second surgery, was conducted in, January 2011) -> January 2011 (8889ms)\nOn what date was the surgery performed?\tthe IAS Surgery Center\t-7.5524165210437975\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (the surgery, will be done in, the IAS Surgery Center) -> the IAS Surgery Center (8889ms)\nOn what date was the surgery performed?\tthree to four hours\t-7.556139456742605\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (the surgery, can be done in, three to four hours) -> three to four hours (8889ms)\nOn what date was the surgery performed?\t553 patients\t-7.556519378718661\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, was performed in, 553 patients) -> 553 patients (8912ms)\nOn what date was the surgery performed?\tthree major methods\t-7.569197343595411\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, three major methods) -> three major methods (8912ms)\nOn what date was the surgery performed?\tdifferent ways\t-7.570734431667674\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, different ways) -> different ways (8912ms)\nOn what date was the surgery performed?\tFebruary 3 , 2009\t-7.579867951262082\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, was performed on, February 3 , 2009) -> February 3 , 2009 (8936ms)\nOn what date was the surgery performed?\tNantes Jan 06\t-7.581260924781143\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, performed in, Nantes Jan 06) -> Nantes Jan 06 (8936ms)\nOn what date was the surgery performed?\tteens\t-7.5859971997528435\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, is performed in, teens) -> teens (8936ms)\nOn what date was the surgery performed?\ta relatively short period\t-7.590241857233046\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, can be perform in, $x) -> (the surgery, can be performed in, a relatively short period) -> a relatively short period (8936ms)\nOn what date was the surgery performed?\tthe right side of the brain\t-7.59073069909247\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the right side of the brain) -> the right side of the brain (8936ms)\nOn what date was the surgery performed?\tthe UK,\t-7.5938287705972005\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be carry out in, $x) -> (the way cosmetic surgery, is carried out in, the UK,) -> the UK, (8959ms)\nOn what date was the surgery performed?\tlocal anesthesia\t-7.600939014547964\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be perform with, $x) -> (The surgery, is performed with, local anesthesia) -> local anesthesia (10407ms)\nOn what date was the surgery performed?\t600 women\t-7.601292933050296\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, have be perform on, $x) -> (The internal bra surgery, has been performed on, 600 women) -> 600 women (10187ms)\nOn what date was the surgery performed?\tright eye utilizing ladarvision\t-7.610954400862923\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, performed on, right eye utilizing ladarvision) -> right eye utilizing ladarvision (8959ms)\nOn what date was the surgery performed?\ta timely style\t-7.618178385519563\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, should be performed in, a timely style) -> a timely style (8959ms)\nOn what date was the surgery performed?\ta minimally invasive fashion\t-7.6197371000287255\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, can be done in, a minimally invasive fashion) -> a minimally invasive fashion (8981ms)\nOn what date was the surgery performed?\tSan Diego\t-7.622886272262152\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, will be perform in, $x) -> (The surgery, will be performed this week in, San Diego) -> San Diego (8981ms)\nOn what date was the surgery performed?\ta patient\t-7.6233715902836146\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, performed on, a patient) -> a patient (8981ms)\nOn what date was the surgery performed?\ta relatively shorter time\t-7.625117800287175\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, can be perform in, $x) -> (the surgery, can be performed in, a relatively shorter time) -> a relatively shorter time (8981ms)\nOn what date was the surgery performed?\tspecial instruments\t-7.635356411334018\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be carry out use, $x) -> (the surgery, is carried out using, special instruments) -> special instruments (9004ms)\nOn what date was the surgery performed?\tan out-patient setting\t-7.635737107973997\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, is commonly performed in, an out-patient setting) -> an out-patient setting (9004ms)\nOn what date was the surgery performed?\tPeoria Children?s Hospital\t-7.639871664009018\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, will be perform in, $x) -> (the surgery, will be performed in, Peoria Children?s Hospital) -> Peoria Children?s Hospital (9006ms)\nOn what date was the surgery performed?\tcombination\t-7.640092312045264\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, is often performed in, combination) -> combination (9006ms)\nOn what date was the surgery performed?\ta child\t-7.640518093725368\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, to be perform on, $x) -> (the surgery, is to be performed on, a child) -> a child (9460ms)\nOn what date was the surgery performed?\t7 patients\t-7.641894215362444\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, was performed endoscopically in, 7 patients) -> 7 patients (9027ms)\nOn what date was the surgery performed?\tjoints\t-7.649212549486361\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, can be perform on, $x) -> (the surgery, can also be performed on, joints) -> joints (10407ms)\nOn what date was the surgery performed?\ta Singapore hospital\t-7.652269877689982\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, must be performed in, a Singapore hospital) -> a Singapore hospital (9027ms)\nOn what date was the surgery performed?\tMay 2010\t-7.65329056477346\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, have be complete in, $x) -> (the surgery, had been completed in, May 2010) -> May 2010 (9097ms)\nOn what date was the surgery performed?\ta hospital environment\t-7.675517057577219\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, to be do in, $x) -> (The surgery, needs to be done in, a hospital environment) -> a hospital environment (9097ms)\nOn what date was the surgery performed?\tsteps\t-7.675579509046357\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be develop in, $x) -> (The surgery, may be developed in, steps) -> steps (9097ms)\nOn what date was the surgery performed?\ta dermatologist?s office\t-7.6818405969329415\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, is usually performed in, a dermatologist?s office) -> a dermatologist?s office (9309ms)\nOn what date was the surgery performed?\ta surgery clinic or hospital\t-7.682515125041007\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, a surgery clinic or hospital) -> a surgery clinic or hospital (9309ms)\nOn what date was the surgery performed?\ttime\t-7.68347272393356\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done just in, time) -> time (9309ms)\nOn what date was the surgery performed?\ttemporary medical facilities\t-7.687061806658127\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be carry out in, $x) -> (The surgeries, are carried out in, temporary medical facilities) -> temporary medical facilities (9534ms)\nOn what date was the surgery performed?\tnon rodents\t-7.6881129134170125\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, performed on, non rodents) -> non rodents (9534ms)\nOn what date was the surgery performed?\tany age group\t-7.710049230644843\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, can be perform on, $x) -> (The Mini-Lift surgery, can be performed on, any age group) -> any age group (10407ms)\nOn what date was the surgery performed?\tless than 30 minutes\t-7.71175826602281\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, less than 30 minutes) -> less than 30 minutes (9733ms)\nOn what date was the surgery performed?\tless than a minute\t-7.71175826602281\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, less than a minute) -> less than a minute (9733ms)\nOn what date was the surgery performed?\tone or two stages\t-7.71175826602281\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, may be done in, one or two stages) -> one or two stages (9733ms)\nOn what date was the surgery performed?\tinfancy\t-7.712502057008054\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, is performed in, infancy) -> infancy (9733ms)\nOn what date was the surgery performed?\tUtah Lasik center\t-7.716998869004428\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be develop in, $x) -> (The eye surgery, is well developed in, Utah Lasik center) -> Utah Lasik center (9733ms)\nOn what date was the surgery performed?\tthe girl\t-7.7245610889531475\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, the girl) -> the girl (9798ms)\nOn what date was the surgery performed?\tone to three hours\t-7.727673779349433\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be accomplish in, $x) -> (The surgery, is generally accomplished in, one to three hours) -> one to three hours (9798ms)\nOn what date was the surgery performed?\t36 hours\t-7.741687738619607\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, do within, $x) -> (the surgery, is done within, 36 hours) -> 36 hours (9876ms)\nOn what date was the surgery performed?\t1 year\t-7.743456164124096\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, do within, $x) -> (the surgery, is done within, 1 year) -> 1 year (10407ms)\nOn what date was the surgery performed?\tChildren\t-7.744373336858406\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is being performed at, Children) -> Children (10407ms)\nOn what date was the surgery performed?\t1992\t-7.746518042467928\tOn what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, performed in, 1992) -> 1992 (10407ms)\nWhat are semiconductors?\tinnovation-intensive industry\t-5.165890122995664\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, innovation-intensive industry) -> innovation-intensive industry (2938ms)\nWhat are semiconductors?\thigh-value item\t-5.244377583582281\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-value item) -> high-value item (2937ms)\nWhat are semiconductors?\tprocess-intensive industry\t-5.319907212021991\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, process-intensive industry) -> process-intensive industry (2938ms)\nWhat are semiconductors?\twell-known industry\t-5.32191343936374\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, well-known industry) -> well-known industry (2937ms)\nWhat are semiconductors?\tscience-based technology\t-5.32676182256594\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, science-based technology) -> science-based technology (2938ms)\nWhat are semiconductors?\tchemical-related industry\t-5.3648011674571325\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, chemical-related industry) -> chemical-related industry (3101ms)\nWhat are semiconductors?\tphysics-based concept\t-5.3648011674571325\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, physics-based concept) -> physics-based concept (3101ms)\nWhat are semiconductors?\tdevice-developing area\t-5.3648011674571325\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, device-developing area) -> device-developing area (2937ms)\nWhat are semiconductors?\tcutting-edge technology\t-5.378127449271549\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cutting-edge technology) -> cutting-edge technology (3101ms)\nWhat are semiconductors?\tcutting-edge sector\t-5.378510388545033\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cutting-edge sector) -> cutting-edge sector (3101ms)\nWhat are semiconductors?\ttransparent or semitransparent material\t-5.416395074555697\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, transparent or semitransparent material) -> transparent or semitransparent material (3101ms)\nWhat are semiconductors?\tstrategic business area\t-5.6409038783534005\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, strategic business area) -> strategic business area (3101ms)\nWhat are semiconductors?\thigh-value-added industry\t-5.670341011599557\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-value-added industry) -> high-value-added industry (3122ms)\nWhat are semiconductors?\theat generating part\t-5.685315605972828\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, heat generating part) -> heat generating part (3123ms)\nWhat are semiconductors?\tsolid-state electronic device\t-5.698581858802984\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, solid-state electronic device) -> solid-state electronic device (3123ms)\nWhat are semiconductors?\tproduct in market\t-5.715352139956176\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, product in market) -> product in market (3123ms)\nWhat are semiconductors?\tfirst conductive material\t-5.722049712638546\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, first conductive material) -> first conductive material (3123ms)\nWhat are semiconductors?\tnon-metal material\t-5.726699561645407\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, non-metal material) -> non-metal material (3123ms)\nWhat are semiconductors?\tsubstance, consisting of a solid chemical element or compound\t-5.752960842084011\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, substance, consisting of a solid chemical element or compound) -> substance, consisting of a solid chemical element or compound (3198ms)\nWhat are semiconductors?\tmemory device\t-5.757506100318768\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, memory device) -> memory device (3198ms)\nWhat are semiconductors?\tcumulative system technologies\t-5.788734038672018\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cumulative system technologies) -> cumulative system technologies (3198ms)\nWhat are semiconductors?\tcumulative technology field\t-5.788734038672018\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cumulative technology field) -> cumulative technology field (3198ms)\nWhat are semiconductors?\tpure scientific sample\t-5.788734038672018\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, pure scientific sample) -> pure scientific sample (3198ms)\nWhat are semiconductors?\ttremendous complex market\t-5.788734038672018\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, tremendous complex market) -> tremendous complex market (3199ms)\nWhat are semiconductors?\tmaterial or item\t-5.794088504122012\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, material or item) -> material or item (3251ms)\nWhat are semiconductors?\tspectral region certain nonmetallic material\t-5.797854797519154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, spectral region certain nonmetallic material) -> spectral region certain nonmetallic material (3251ms)\nWhat are semiconductors?\tfree Java simulation\t-5.797854797519154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, free Java simulation) -> free Java simulation (3268ms)\nWhat are semiconductors?\tkey strategic industry\t-5.797854797519154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, key strategic industry) -> key strategic industry (3251ms)\nWhat are semiconductors?\tcompetitiveness higher value-added-per-employee industry\t-5.797854797519154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, competitiveness higher value-added-per-employee industry) -> competitiveness higher value-added-per-employee industry (3267ms)\nWhat are semiconductors?\ttiny complex of electronic component\t-5.797854797519154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, tiny complex of electronic component) -> tiny complex of electronic component (3267ms)\nWhat are semiconductors?\thigh tech manufacturing industry\t-5.797854797519154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high tech manufacturing industry) -> high tech manufacturing industry (3251ms)\nWhat are semiconductors?\tsubstance, usually solid chemical element or compound\t-5.797854797519154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, substance, usually solid chemical element or compound) -> substance, usually solid chemical element or compound (3251ms)\nWhat are semiconductors?\tcold war information technology\t-5.797854797519154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cold war information technology) -> cold war information technology (3251ms)\nWhat are semiconductors?\tprecision electronic device\t-5.798225037651006\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, precision electronic device) -> precision electronic device (3267ms)\nWhat are semiconductors?\thigh work function material\t-5.80079248779605\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high work function material) -> high work function material (3268ms)\nWhat are semiconductors?\tman made material\t-5.818418628538154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, man made material) -> man made material (3284ms)\nWhat are semiconductors?\tsophisticated, high-tech manufactured good\t-5.825273239694954\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, sophisticated, high-tech manufactured good) -> sophisticated, high-tech manufactured good (3284ms)\nWhat are semiconductors?\tsubstance or material\t-5.829190159655583\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, substance or material) -> substance or material (3284ms)\nWhat are semiconductors?\thigh-quality thin film\t-5.838982459557154\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-quality thin film) -> high-quality thin film (3285ms)\nWhat are semiconductors?\tbulk material\t-5.856385971431186\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, bulk material) -> bulk material (3284ms)\nWhat are semiconductors?\tactive device\t-5.897388615983568\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, active device) -> active device (3284ms)\nWhat are semiconductors?\tcommon material\t-5.9012993662909246\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, common material) -> common material (3297ms)\nWhat are semiconductors?\tintellectual property\t-5.932455380244988\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, intellectual property) -> intellectual property (3297ms)\nWhat are semiconductors?\tcommercial application\t-5.958329829072698\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, commercial application) -> commercial application (3297ms)\nWhat are semiconductors?\tdielectric compound\t-6.0262962594139085\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, dielectric compound) -> dielectric compound (3298ms)\nWhat are semiconductors?\tcomponent part\t-6.0288683084127825\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component part) -> component part (3298ms)\nWhat are semiconductors?\tsignage material\t-6.054063486658409\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, signage material) -> signage material (3298ms)\nWhat are semiconductors?\tdisplay device\t-6.05521599111584\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, display device) -> display device (3325ms)\nWhat are semiconductors?\ttraditional material\t-6.061779818735707\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, traditional material) -> traditional material (3325ms)\nWhat are semiconductors?\telectronic system\t-6.082417594422629\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electronic system) -> electronic system (3325ms)\nWhat are semiconductors?\tflat surface\t-6.088944180110317\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, flat surface) -> flat surface (3325ms)\nWhat are semiconductors?\toptical material\t-6.096775832157354\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, optical material) -> optical material (3325ms)\nWhat are semiconductors?\tinorganic nanomaterials\t-6.120858713745539\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, inorganic nanomaterials) -> inorganic nanomaterials (3325ms)\nWhat are semiconductors?\tcommunication technology\t-6.126595930348767\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, communication technology) -> communication technology (3356ms)\nWhat are semiconductors?\tunexplored material\t-6.155023713973003\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, unexplored material) -> unexplored material (3356ms)\nWhat are semiconductors?\tnanotubesmadeof material\t-6.155023713973003\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nanotubesmadeof material) -> nanotubesmadeof material (3356ms)\nWhat are semiconductors?\tightechnology industry\t-6.155023713973003\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, ightechnology industry) -> ightechnology industry (3356ms)\nWhat are semiconductors?\tcomponent group\t-6.1565469607265\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component group) -> component group (3356ms)\nWhat are semiconductors?\ttech field\t-6.156851610107842\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, tech field) -> tech field (3356ms)\nWhat are semiconductors?\tautomation industry\t-6.157594192850378\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, automation industry) -> automation industry (3386ms)\nWhat are semiconductors?\tcomplex field\t-6.159724018232183\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, complex field) -> complex field (3387ms)\nWhat are semiconductors?\tnontraditional industry\t-6.161351046829945\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nontraditional industry) -> nontraditional industry (3387ms)\nWhat are semiconductors?\ttarget industry\t-6.162302946165001\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, target industry) -> target industry (3387ms)\nWhat are semiconductors?\tthriving industry\t-6.163249246503173\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, thriving industry) -> thriving industry (3387ms)\nWhat are semiconductors?\tkorean product\t-6.163249246503173\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, korean product) -> korean product (3387ms)\nWhat are semiconductors?\telectronics technology\t-6.163964509775118\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electronics technology) -> electronics technology (3409ms)\nWhat are semiconductors?\temissive material\t-6.164370910169298\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, emissive material) -> emissive material (3409ms)\nWhat are semiconductors?\tcovalent solid\t-6.166774475080588\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, covalent solid) -> covalent solid (3409ms)\nWhat are semiconductors?\tcrystal material\t-6.168732935060903\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, crystal material) -> crystal material (3409ms)\nWhat are semiconductors?\timportant device\t-6.1690673059781025\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, important device) -> important device (3409ms)\nWhat are semiconductors?\ttechnology market\t-6.171474779033343\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, technology market) -> technology market (3426ms)\nWhat are semiconductors?\tnonmetal substrate\t-6.171474779033343\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nonmetal substrate) -> nonmetal substrate (3426ms)\nWhat are semiconductors?\ttraditional export\t-6.171474779033343\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, traditional export) -> traditional export (3409ms)\nWhat are semiconductors?\tcore industry\t-6.173597496275332\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, core industry) -> core industry (3427ms)\nWhat are semiconductors?\textreme environment\t-6.175457229810384\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, extreme environment) -> extreme environment (3426ms)\nWhat are semiconductors?\telectric device\t-6.177219596201298\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electric device) -> electric device (3426ms)\nWhat are semiconductors?\tsynthetic material\t-6.177616870034447\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, synthetic material) -> synthetic material (3426ms)\nWhat are semiconductors?\tphotonic device\t-6.1821195862696925\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, photonic device) -> photonic device (3453ms)\nWhat are semiconductors?\telectron system\t-6.182442156148802\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electron system) -> electron system (3453ms)\nWhat are semiconductors?\texotic material\t-6.184590143644457\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, exotic material) -> exotic material (3453ms)\nWhat are semiconductors?\tmicroelectronic device\t-6.192412498758184\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, microelectronic device) -> microelectronic device (3453ms)\nWhat are semiconductors?\tstar industry\t-6.196151376011002\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, star industry) -> star industry (3453ms)\nWhat are semiconductors?\tsystem and component\t-6.310963909359615\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, system and component) -> system and component (3453ms)\nWhat are semiconductors?\tmarket and application\t-6.323859538749476\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, market and application) -> market and application (3477ms)\nWhat are semiconductors?\tproduct\t-7.664496210084847\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, product) -> product (3873ms)\nWhat are semiconductors?\tcomponent\t-7.733800561428993\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component) -> component (3873ms)\nWhat are semiconductors?\tmarket\t-7.754963573350632\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, market) -> market (3873ms)\nWhat are semiconductors?\tcircuit\t-7.857427158808397\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, circuit) -> circuit (3873ms)\nWhat are semiconductors?\tsurface\t-7.998416978030524\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, surface) -> surface (3880ms)\nWhat are semiconductors?\tmedium\t-8.039515793184774\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, medium) -> medium (3880ms)\nWhat are semiconductors?\tsource\t-8.105836984059604\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, source) -> source (3881ms)\nWhat are semiconductors?\telement\t-8.131476371445647\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, element) -> element (3881ms)\nWhat are semiconductors?\tdevice\t-8.196596557577648\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, device) -> device (3882ms)\nWhat are semiconductors?\tparts\t-8.378332184742158\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, parts) -> parts (3887ms)\nWhat are semiconductors?\tindusties\t-8.38855096138849\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, industies) -> industies (3887ms)\nWhat are semiconductors?\tvertical\t-8.401552975729512\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, vertical) -> vertical (3887ms)\nWhat are semiconductors?\tapparatuses\t-8.402910188262988\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, apparatuses) -> apparatuses (3887ms)\nWhat are semiconductors?\tconductor\t-8.40793886210651\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, conductor) -> conductor (3888ms)\nWhat are semiconductors?\ta system\t-8.738884409581786\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (A semiconductor heterostructure, can be modelled by, a system) -> a system (3888ms)\nWhat are semiconductors?\tGermanium\t-8.922758095582903\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: ($x, element, semiconductors) -> (Germanium, is an important element in, semiconductors) -> Germanium (3895ms)\nWhat are semiconductors?\trate equations\t-9.102792912572301\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (semiconductor lasers, are modeled by, rate equations) -> rate equations (3895ms)\nWhat are semiconductors?\ta finite domain\t-9.165329442045694\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (The semiconductor device, is modeled as, a finite domain) -> a finite domain (3901ms)\nWhat are semiconductors?\ta plus\t-10.468832939308127\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, is, a plus) -> a plus (6283ms)\nWhat are semiconductors?\tDistributed feedback semiconductor lasers\t-10.503669404334103\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Distributed feedback semiconductor lasers, Edition Of, Distributed feedback semiconductor lasers) -> Distributed feedback semiconductor lasers (8709ms)\nWhat are semiconductors?\tSingle frequency semiconductor lasers\t-10.503669404334103\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Single frequency semiconductor lasers, Editions, Single frequency semiconductor lasers) -> Single frequency semiconductor lasers (8709ms)\nWhat are semiconductors?\tIntroductory semiconductor device physics\t-10.503669404334103\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Introductory semiconductor device physics, Edition Of, Introductory semiconductor device physics) -> Introductory semiconductor device physics (8709ms)\nWhat are semiconductors?\tSemiconductor silicon crystal technology\t-10.503669404334103\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor silicon crystal technology, Edition Of, Semiconductor silicon crystal technology) -> Semiconductor silicon crystal technology (8709ms)\nWhat are semiconductors?\tHighly coherent semiconductor lasers\t-10.503669404334103\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Highly coherent semiconductor lasers, Edition Of, Highly coherent semiconductor lasers) -> Highly coherent semiconductor lasers (8709ms)\nWhat are semiconductors?\ta term\t-10.572801533963482\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, a term) -> a term (6283ms)\nWhat are semiconductors?\tDilute Nitride Semiconductors\t-10.578094796526733\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Dilute Nitride Semiconductors, Edition Of, Dilute Nitride Semiconductors) -> Dilute Nitride Semiconductors (8709ms)\nWhat are semiconductors?\tComputational Semiconductor Processing\t-10.578094796526733\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Computational Semiconductor Processing, Edition Of, Computational Semiconductor Processing) -> Computational Semiconductor Processing (9143ms)\nWhat are semiconductors?\tSemiconductor Circuit Approx\t-10.578094796526733\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor Circuit Approx, Edition Of, Semiconductor Circuit Approx) -> Semiconductor Circuit Approx (9142ms)\nWhat are semiconductors?\ttwo everyday examples\t-10.63202824837186\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, two everyday examples) -> two everyday examples (6284ms)\nWhat are semiconductors?\tnatural scalar interferometers\t-10.63882305555364\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, natural scalar interferometers) -> natural scalar interferometers (6284ms)\nWhat are semiconductors?\teconomic sector\t-10.647847393662019\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is an, economic sector) -> economic sector (6283ms)\nWhat are semiconductors?\tsilicon\t-10.656475394683213\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: ($x, element, semiconductors) -> (silicon, is an important element in, semiconductors) -> silicon (3920ms)\nWhat are semiconductors?\tan excellence-driven organization\t-10.675389129140965\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, is, an excellence-driven organization) -> an excellence-driven organization (6283ms)\nWhat are semiconductors?\tOptical semiconductor devices\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Optical semiconductor devices, Edition Of, Optical semiconductor devices) -> Optical semiconductor devices (10470ms)\nWhat are semiconductors?\tSemiconductor device fundamentals\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor fundamentals, Editions, Semiconductor device fundamentals) -> Semiconductor device fundamentals (10470ms)\nWhat are semiconductors?\tSemiconductor crystal manufacture\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor crystal manufacture, Edition Of, Semiconductor crystal manufacture) -> Semiconductor crystal manufacture (10093ms)\nWhat are semiconductors?\tSemiconductor optical modulators\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor optical modulators, Edition Of, Semiconductor optical modulators) -> Semiconductor optical modulators (9635ms)\nWhat are semiconductors?\tSemiconductor amateur projects\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor amateur projects, Edition Of, Semiconductor amateur projects) -> Semiconductor amateur projects (9142ms)\nWhat are semiconductors?\tSemiconductor manufacturing technology\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor manufacturing technology, Edition Of, Semiconductor manufacturing technology) -> Semiconductor manufacturing technology (9635ms)\nWhat are semiconductors?\tOptoelectronic semiconductor devices\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Optoelectronic semiconductor devices, Edition Of, Optoelectronic semiconductor devices) -> Optoelectronic semiconductor devices (10470ms)\nWhat are semiconductors?\tAdvanced semiconductor fundamentals\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Advanced semiconductor fundamentals, Edition Of, Advanced semiconductor fundamentals) -> Advanced semiconductor fundamentals (10092ms)\nWhat are semiconductors?\tUnderstanding semiconductor devices\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Understanding semiconductor devices, Edition Of, Understanding semiconductor devices) -> Understanding semiconductor devices (10092ms)\nWhat are semiconductors?\tSemiconductor comparator circuits\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor comparator circuits, Edition Of, Semiconductor comparator circuits) -> Semiconductor comparator circuits (10092ms)\nWhat are semiconductors?\tSemiconductor testing technology\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor testing technology, Edition Of, Semiconductor testing technology) -> Semiconductor testing technology (9635ms)\nWhat are semiconductors?\tPower semiconductor devices\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Power semiconductor devices, Editions, Power semiconductor devices) -> Power semiconductor devices (10092ms)\nWhat are semiconductors?\tBasic semiconductor physics\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Basic semiconductor physics, Edition Of, Basic semiconductor physics) -> Basic semiconductor physics (9635ms)\nWhat are semiconductors?\tSemiconductor circuit elements\t-10.687543902692365\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor circuit elements, Edition Of, Semiconductor circuit elements) -> Semiconductor circuit elements (10092ms)\nWhat are semiconductors?\tsilicon , germanium\t-10.696510130761371\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, silicon , germanium) -> silicon , germanium (6301ms)\nWhat are semiconductors?\ta grant\t-10.708502595334675\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, were given, a grant) -> a grant (6301ms)\nWhat are semiconductors?\tSemiconductor Memories\t-10.725486259496451\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Memories, Editions, Semiconductor Memories) -> Semiconductor Memories (11052ms)\nWhat are semiconductors?\tSemiconductor Transport\t-10.725486259496451\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Transport, Editions, Semiconductor Transport) -> Semiconductor Transport (10966ms)\nWhat are semiconductors?\tSemiconductor Devices\t-10.725486259496451\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor Devices, Edition Of, Semiconductor Devices) -> Semiconductor Devices (10967ms)\nWhat are semiconductors?\tSemiconductor Electronics\t-10.725486259496451\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Electronics, Editions, Semiconductor Electronics) -> Semiconductor Electronics (10967ms)\nWhat are semiconductors?\tGalvanometric Effects in Semiconductors\t-10.758685821700027\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Galvanomagnetic effects in semiconductors, Edition Of, Galvanometric Effects in Semiconductors) -> Galvanometric Effects in Semiconductors (11052ms)\nWhat are semiconductors?\tavailable today\t-10.77827474259274\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, available today) -> available today (6301ms)\nWhat are semiconductors?\tmaterials\t-10.793749694817187\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, be a class of, $x) -> (Semiconductors, are a class of, materials) -> materials (3920ms)\nWhat are semiconductors?\ta complex and precise process\t-10.796457990804566\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, a complex and precise process) -> a complex and precise process (6301ms)\nWhat are semiconductors?\tON Semiconductor\t-10.802866700018345\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> $x: ($x, know, semiconductor) -> (ON Semiconductor, Also known as, ON SEMICONDUCTOR CORP) -> ON Semiconductor (12744ms)\nWhat are semiconductors?\tpowerful technology enablers\t-10.803219266122147\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, powerful technology enablers) -> powerful technology enablers (6301ms)\nWhat are semiconductors?\tGalvanomagnetic effects in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Galvanometric Effects in Semiconductors, Editions, Galvanomagnetic effects in semiconductors) -> Galvanomagnetic effects in semiconductors (12857ms)\nWhat are semiconductors?\tPlasma effects in semiconductors: Helicon and Alfv?n waves\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Plasma effects in semiconductors, Editions, Plasma effects in semiconductors: Helicon and Alfv?n waves) -> Plasma effects in semiconductors: Helicon and Alfv?n waves (11703ms)\nWhat are semiconductors?\tSemiconductor devices : basic principles\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor devices : basic principles, Edition Of, Semiconductor devices) -> Semiconductor devices : basic principles (12857ms)\nWhat are semiconductors?\tDiffusion in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Diffusion in semiconductors, Edition Of, Diffusion in semiconductors) -> Diffusion in semiconductors (12744ms)\nWhat are semiconductors?\tPrinciples of semiconductor devices\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Principles of semiconductor devices, Edition Of, Principles of semiconductor devices) -> Principles of semiconductor devices (11431ms)\nWhat are semiconductors?\tHeteroepitaxy of semiconductors : theory, growth, and characterization\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Heteroepitaxy of semiconductors : theory, growth, and characterization, Edition Of, Heteroepitaxy of Semiconductors) -> Heteroepitaxy of semiconductors : theory, growth, and characterization (11052ms)\nWhat are semiconductors?\tPhysics of semiconductor devices\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Physics of semiconductor devices, Edition Of, Physics of semiconductor devices) -> Physics of semiconductor devices (11581ms)\nWhat are semiconductors?\tIntroduction to semiconductor optics\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Introduction to semiconductor optics, Edition Of, Introduction to semiconductor optics) -> Introduction to semiconductor optics (12857ms)\nWhat are semiconductors?\tConductors and semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Conductors and semiconductors, Edition Of, Conductors and semiconductors) -> Conductors and semiconductors (12124ms)\nWhat are semiconductors?\tNarrow-gap semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Narrow-gap semiconductors, Edition Of, Narrow-gap semiconductors) -> Narrow-gap semiconductors (12824ms)\nWhat are semiconductors?\tSemiconductor ceramics : grain boundary effects\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition, semiconductor) -> (Semiconductor ceramics : grain boundary effects, Edition Of, Semiconductor ceramics) -> Semiconductor ceramics : grain boundary effects (12824ms)\nWhat are semiconductors?\tSemiconductor Devices (German)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Devices, Editions, Semiconductor Devices (German)) -> Semiconductor Devices (German) (12857ms)\nWhat are semiconductors?\tMicrowave Semiconductor Devices (The Springer International Series in Engineering and Computer Science)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Microwave Semiconductor Devices (The Springer International Series in Engineering and Computer Science), Edition Of, Microwave Semiconductor Devices) -> Microwave Semiconductor Devices (The Springer International Series in Engineering and Computer Science) (12790ms)\nWhat are semiconductors?\tSemiconductors: Others Than Group IV Elements and Iii-V Compounds (Data in Science and Technology)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition, semiconductor) -> (Semiconductors: Others Than Group IV Elements and Iii-V Compounds (Data in Science and Technology), Edition Of, Semiconductors) -> Semiconductors: Others Than Group IV Elements and Iii-V Compounds (Data in Science and Technology) (11757ms)\nWhat are semiconductors?\tSuperconductor/semiconductor junctions\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Superconductor/semiconductor junctions, Edition Of, Superconductor/semiconductor junctions) -> Superconductor/semiconductor junctions (11703ms)\nWhat are semiconductors?\tNitride Semiconductors and Devices (Springer Series in Materials Science)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Nitride Semiconductors and Devices, Editions, Nitride Semiconductors and Devices (Springer Series in Materials Science)) -> Nitride Semiconductors and Devices (Springer Series in Materials Science) (12020ms)\nWhat are semiconductors?\tIon implantation of semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Ion implantation of semiconductors, Edition Of, Ion implantation of semiconductors) -> Ion implantation of semiconductors (12790ms)\nWhat are semiconductors?\tHandbook of semiconductor memories\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Handbook of semiconductor memories, Edition Of, Handbook of semiconductor memories) -> Handbook of semiconductor memories (12744ms)\nWhat are semiconductors?\tSemiconductor physics and devices: basic principles\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor physics and devices: basic principles, Edition Of, Semiconductor physics and devices) -> Semiconductor physics and devices: basic principles (11431ms)\nWhat are semiconductors?\tSemiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals), Edition Of, Semiconductors and Semimetals) -> Semiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals) (12857ms)\nWhat are semiconductors?\tSemiconductor alloys : physics and materials engineering\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor alloys, Editions, Semiconductor alloys : physics and materials engineering) -> Semiconductor alloys : physics and materials engineering (11581ms)\nWhat are semiconductors?\tChemical physics of semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Chemical physics of semiconductors, Edition Of, Chemical physics of semiconductors) -> Chemical physics of semiconductors (12021ms)\nWhat are semiconductors?\tSemiconductor physics and applications\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor physics and applications, Edition Of, Semiconductor physics and applications) -> Semiconductor physics and applications (12897ms)\nWhat are semiconductors?\tSemiconductor Devices: Pioneering Papers\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor Devices: Pioneering Papers, Edition Of, Semiconductor Devices) -> Semiconductor Devices: Pioneering Papers (11818ms)\nWhat are semiconductors?\tFaraday effect in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Faraday effect in semiconductors, Edition Of, Faraday effect in semiconductors) -> Faraday effect in semiconductors (12124ms)\nWhat are semiconductors?\tSemiconductors and Semimetals: Nanostructured Systems (Semiconductors and Semimetals)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductors and Semimetals: Nanostructured Systems (Semiconductors and Semimetals), Edition Of, Semiconductors and Semimetals) -> Semiconductors and Semimetals: Nanostructured Systems (Semiconductors and Semimetals) (11581ms)\nWhat are semiconductors?\tPhotoelectric effects in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Photoelectric effects in semiconductors, Editions, Photoelectric effects in semiconductors) -> Photoelectric effects in semiconductors (12857ms)\nWhat are semiconductors?\tPotential barriers in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Potential barriers in semiconductors, Editions, Potential barriers in semiconductors) -> Potential barriers in semiconductors (12790ms)\nWhat are semiconductors?\tSemiconductor power devices: physics of operation and fabrication technology\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor power devices: physics of operation and fabrication technology, Edition Of, Semiconductor power devices) -> Semiconductor power devices: physics of operation and fabrication technology (11758ms)\nWhat are semiconductors?\tNoise in semiconductor devices : modeling and simulation\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Noise in semiconductor devices : modeling and simulation, Edition Of, Noise in semiconductor devices) -> Noise in semiconductor devices : modeling and simulation (11581ms)\nWhat are semiconductors?\tSemiconductors and transistors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductors and transistors, Edition Of, Semiconductors and transistors) -> Semiconductors and transistors (11757ms)\nWhat are semiconductors?\tULSI semiconductor technology atlas\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (ULSI semiconductor technology atlas, Edition Of, ULSI semiconductor technology atlas) -> ULSI semiconductor technology atlas (12897ms)\nWhat are semiconductors?\tTextbook on Semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Textbook on Semiconductors, Edition Of, Textbook on Semiconductors) -> Textbook on Semiconductors (12124ms)\nWhat are semiconductors?\tSemiconductor microdevices and materials\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor microdevices and materials, Edition Of, Semiconductor microdevices and materials) -> Semiconductor microdevices and materials (11489ms)\nWhat are semiconductors?\tSemiconductors: data handbook\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductors, Editions, Semiconductors: data handbook) -> Semiconductors: data handbook (12790ms)\nWhat are semiconductors?\tSemiconductor opto-electronics\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor opto-electronics, Edition Of, Semiconductor opto-electronics) -> Semiconductor opto-electronics (11757ms)\nWhat are semiconductors?\tSemiconductors and electronic devices\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductors and electronic devices, Edition Of, Semiconductors and electronic devices) -> Semiconductors and electronic devices (11703ms)\nWhat are semiconductors?\tDiffusion in Semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Diffusion in Semiconductors, Edition Of, Diffusion in Semiconductors) -> Diffusion in Semiconductors (12021ms)\nWhat are semiconductors?\tThermomagnetic effects in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Thermomagnetic effects in semiconductors, Edition Of, Thermomagnetic effects in semiconductors) -> Thermomagnetic effects in semiconductors (12824ms)\nWhat are semiconductors?\tApplication of Semiconductor Technology\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Application of Semiconductor Technology, Edition Of, Application of Semiconductor Technology) -> Application of Semiconductor Technology (12824ms)\nWhat are semiconductors?\tElectrochemistry of semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Electrochemistry of semiconductors, Edition Of, Electrochemistry of semiconductors) -> Electrochemistry of semiconductors (12790ms)\nWhat are semiconductors?\tDefect electronics in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Defect electronics in semiconductors, Editions, Defect electronics in semiconductors) -> Defect electronics in semiconductors (12086ms)\nWhat are semiconductors?\tSurvey of Semiconductor Physics: Electronic Transport in Semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Survey of Semiconductor Physics: Electronic Transport in Semiconductors, Edition Of, Survey of Semiconductor Physics) -> Survey of Semiconductor Physics: Electronic Transport in Semiconductors (11489ms)\nWhat are semiconductors?\tSemiconductor lithography : principles, practices, and materials\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition, semiconductor) -> (Semiconductor lithography : principles, practices, and materials, Edition Of, Semiconductor lithography) -> Semiconductor lithography : principles, practices, and materials (11622ms)\nWhat are semiconductors?\tSemiconductor devices, physics and technology\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Devices, Editions, Semiconductor devices, physics and technology) -> Semiconductor devices, physics and technology (11703ms)\nWhat are semiconductors?\tSemiconductor Devices and Circuits\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor Devices and Circuits, Edition Of, Semiconductor Devices and Circuits) -> Semiconductor Devices and Circuits (12857ms)\nWhat are semiconductors?\tAdvanced semiconductor memories : architectures, designs, and applications\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Advanced semiconductor memories : architectures, designs, and applications, Edition Of, Semiconductor Memories) -> Advanced semiconductor memories : architectures, designs, and applications (12790ms)\nWhat are semiconductors?\tCompound Semiconductor Devices: Structures and Processing\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Compound Semiconductor Devices: Structures and Processing, Edition Of, Compound Semiconductor Devices) -> Compound Semiconductor Devices: Structures and Processing (11703ms)\nWhat are semiconductors?\tSemiconductors and Semimetals: Defects, Hgcd, Se, Hgcdo and Te (Semiconductors and Semimetals)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductors and Semimetals: Defects, Hgcd, Se, Hgcdo and Te (Semiconductors and Semimetals), Edition Of, Semiconductors and Semimetals) -> Semiconductors and Semimetals: Defects, Hgcd, Se, Hgcdo and Te (Semiconductors and Semimetals) (11534ms)\nWhat are semiconductors?\tMetal-semiconductor contacts\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Metal-semiconductor contacts, Edition Of, Metal-semiconductor contacts) -> Metal-semiconductor contacts (12021ms)\nWhat are semiconductors?\tSemiconductor Optoelectronic Devices, Second Edition\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor optoelectronic devices, Edition Of, Semiconductor Optoelectronic Devices, Second Edition) -> Semiconductor Optoelectronic Devices, Second Edition (11622ms)\nWhat are semiconductors?\tSemiconductor essentials: for hobbyists, technicians & engineers\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor essentials: for hobbyists, technicians & engineers, Edition Of, Semiconductor essentials) -> Semiconductor essentials: for hobbyists, technicians & engineers (12897ms)\nWhat are semiconductors?\tOptical characterization of semiconductors: infrared, Raman, and photoluminescence spectroscopy\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Optical characterization of semiconductors, Editions, Optical characterization of semiconductors: infrared, Raman, and photoluminescence spectroscopy) -> Optical characterization of semiconductors: infrared, Raman, and photoluminescence spectroscopy (11534ms)\nWhat are semiconductors?\tSemiconductor Desk Reference\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor Desk Reference, Edition Of, Semiconductor Desk Reference) -> Semiconductor Desk Reference (11431ms)\nWhat are semiconductors?\tHandbook of semiconductor electrodeposition\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Handbook of semiconductor electrodeposition, Editions, Handbook of semiconductor electrodeposition) -> Handbook of semiconductor electrodeposition (12086ms)\nWhat are semiconductors?\tGetting to know semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Getting to know semiconductors, Edition Of, Getting to know semiconductors) -> Getting to know semiconductors (11703ms)\nWhat are semiconductors?\tIntroduction to semiconductor devices\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Introduction to semiconductor devices, Edition Of, Introduction to semiconductor devices) -> Introduction to semiconductor devices (12824ms)\nWhat are semiconductors?\tSemiconductor photoelectric devices: an introduction to design\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor photoelectric devices, Editions, Semiconductor photoelectric devices: an introduction to design) -> Semiconductor photoelectric devices: an introduction to design (12086ms)\nWhat are semiconductors?\tHistory of semiconductor engineering\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (History of semiconductor engineering, Edition Of, History of semiconductor engineering) -> History of semiconductor engineering (11818ms)\nWhat are semiconductors?\tSemiconductor devices: an introduction\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor devices: an introduction, Edition Of, Semiconductor devices) -> Semiconductor devices: an introduction (12197ms)\nWhat are semiconductors?\tIntroduction to semiconductor theory\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Introduction to semiconductor theory, Edition Of, Introduction to semiconductor theory) -> Introduction to semiconductor theory (12790ms)\nWhat are semiconductors?\tIntroduction to semiconductor physics\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Introduction to semiconductor physics, Edition Of, Introduction to semiconductor physics) -> Introduction to semiconductor physics (12124ms)\nWhat are semiconductors?\tUsing semiconductors: a beginners' course including theory, practical demonstrations and projects\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Using semiconductors: a beginners' course including theory, practical demonstrations and projects, Edition Of, Using semiconductors) -> Using semiconductors: a beginners' course including theory, practical demonstrations and projects (11534ms)\nWhat are semiconductors?\tSemiconductors and Semimetals\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals), Edition Of, Semiconductors and Semimetals) -> Semiconductors and Semimetals (12897ms)\nWhat are semiconductors?\tSemiconductor Photochemistry and Photophysics: Determination, Analysis, and Applications for Drug Discovery (MOLECULAR AND SUPRAMOLECULAR PHOTOCHEMISTRY)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Photochemistry and Photophysics, Editions, Semiconductor Photochemistry and Photophysics: Determination, Analysis, and Applications for Drug Discovery (MOLECULAR AND SUPRAMOLECULAR PHOTOCHEMISTRY)) -> Semiconductor Photochemistry and Photophysics: Determination, Analysis, and Applications for Drug Discovery (MOLECULAR AND SUPRAMOLECULAR PHOTOCHEMISTRY) (12744ms)\nWhat are semiconductors?\tGettering defects in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Gettering defects in semiconductors, Edition Of, Gettering defects in semiconductors) -> Gettering defects in semiconductors (12824ms)\nWhat are semiconductors?\tSemiconductor contacts: an approach to ideas and models\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition, semiconductor) -> (Semiconductor contacts: an approach to ideas and models, Edition Of, Semiconductor contacts) -> Semiconductor contacts: an approach to ideas and models (11660ms)\nWhat are semiconductors?\tSemiconductor physics: an introduction\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor physics: an introduction, Edition Of, Semiconductor physics) -> Semiconductor physics: an introduction (12197ms)\nWhat are semiconductors?\tFundamentals of semiconductor lasers\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Fundamentals of semiconductor lasers, Edition Of, Fundamentals of semiconductor lasers) -> Fundamentals of semiconductor lasers (12197ms)\nWhat are semiconductors?\tMolecular semiconductors: photoelectrical properties and solar cells\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Molecular semiconductors: photoelectrical properties and solar cells, Edition Of, Molecular semiconductors) -> Molecular semiconductors: photoelectrical properties and solar cells (12897ms)\nWhat are semiconductors?\tChemistry for Semiconductor Technicians (with CD-ROM)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Chemistry for Semiconductor Technicians, Editions, Chemistry for Semiconductor Technicians (with CD-ROM)) -> Chemistry for Semiconductor Technicians (with CD-ROM) (12021ms)\nWhat are semiconductors?\tPhysics of semiconductor lasers\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Physics of semiconductor lasers, Editions, Physics of semiconductor lasers) -> Physics of semiconductor lasers (11622ms)\nWhat are semiconductors?\tFundamentals of semiconductor devices\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Fundamentals of semiconductor devices, Editions, Fundamentals of semiconductor devices) -> Fundamentals of semiconductor devices (12897ms)\nWhat are semiconductors?\tSemiconductor building block materials: growing markets for material precursors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor building block materials: growing markets for material precursors, Edition Of, Semiconductor building block materials) -> Semiconductor building block materials: growing markets for material precursors (11818ms)\nWhat are semiconductors?\tIntroduction to Semiconductors Electronic\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Introduction to Semiconductors Electronic, Edition Of, Introduction to Semiconductors Electronic) -> Introduction to Semiconductors Electronic (12744ms)\nWhat are semiconductors?\tConductors and Semiconductor (PERMACHARTS\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Conductors and Semiconductor (PERMACHARTS, Edition Of, Conductors and Semiconductor (PERMACHARTS) -> Conductors and Semiconductor (PERMACHARTS (12086ms)\nWhat are semiconductors?\tRecombination in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Recombination in semiconductors, Editions, Recombination in semiconductors) -> Recombination in semiconductors (12197ms)\nWhat are semiconductors?\tFundamentals of Semiconductors: Physics and Materials Properties\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Fundamentals of Semiconductors: Physics and Materials Properties, Edition Of, Fundamentals of Semiconductors) -> Fundamentals of Semiconductors: Physics and Materials Properties (11660ms)\nWhat are semiconductors?\tSemiconductors: Group IV Elements and Iii-V Compounds (Data in Science and Technology)\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductors, Editions, Semiconductors: Group IV Elements and Iii-V Compounds (Data in Science and Technology)) -> Semiconductors: Group IV Elements and Iii-V Compounds (Data in Science and Technology) (12824ms)\nWhat are semiconductors?\tPhotoinduced defects in semiconductors\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Photoinduced defects in semiconductors, Edition Of, Photoinduced defects in semiconductors) -> Photoinduced defects in semiconductors (12124ms)\nWhat are semiconductors?\tSemiconductor lasers : stability, instability and chaos\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor lasers, Editions, Semiconductor lasers : stability, instability and chaos) -> Semiconductor lasers : stability, instability and chaos (11534ms)\nWhat are semiconductors?\tSemiconductor devices explained  : using active simulation\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor devices explained, Editions, Semiconductor devices explained  : using active simulation) -> Semiconductor devices explained  : using active simulation (11660ms)\nWhat are semiconductors?\tSemiconductor nanowires : synthesis, passivation, and devices\t-10.80976207124399\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor nanowires : synthesis, passivation, and devices, Edition Of, Semiconductor nanowires) -> Semiconductor nanowires : synthesis, passivation, and devices (12124ms)\nWhat are semiconductors?\tan interesting ,\t-10.816825577804316\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, an interesting ,) -> an interesting , (6301ms)\nWhat are semiconductors?\tthe industry today\t-10.835934855689032\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: ($x, offer include, semiconductors) -> (the industry today, includes a broad offering of, semiconductor) -> the industry today (3926ms)\nWhat are semiconductors?\ta dirty , dangerous business\t-10.853046658306877\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, a dirty , dangerous business) -> a dirty , dangerous business (6317ms)\nWhat are semiconductors?\ta really broad term\t-10.857149628422075\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductor, is, a really broad term) -> a really broad term (6317ms)\nWhat are semiconductors?\t?a high efficiency\t-10.876951043613307\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, is, ?a high efficiency) -> ?a high efficiency (6317ms)\nWhat are semiconductors?\ta very mature field\t-10.909317311216608\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, a very mature field) -> a very mature field (6317ms)\nWhat are semiconductors?\tan equal opportunity employer\t-10.924840678154817\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, an equal opportunity employer) -> an equal opportunity employer (6317ms)\nWhat are semiconductors?\tthe United States\t-10.949462710743678\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, the United States) -> the United States (6317ms)\nWhat are semiconductors?\tentire range\t-10.9923203441495\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are being used for, entire range) -> entire range (6335ms)\nWhat are semiconductors?\tthe Nation?s largest export\t-10.995084498871169\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, the Nation?s largest export) -> the Nation?s largest export (6336ms)\nWhat are semiconductors?\tsilicon chips\t-11.019725307654763\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, were, silicon chips) -> silicon chips (6335ms)\nWhat are semiconductors?\tSK Hynix\t-11.043580137625286\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (SK Hynix, was previously known as, Hynix Semiconductor) -> SK Hynix (6548ms)\nWhat are semiconductors?\tUS$ 25.03 billion\t-11.080782124861903\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, were, US$ 25.03 billion) -> US$ 25.03 billion (6335ms)\nWhat are semiconductors?\tcrystalline solids\t-11.08780850377592\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, crystalline solids) -> crystalline solids (6335ms)\nWhat are semiconductors?\tunique substances\t-11.092656907666829\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, unique substances) -> unique substances (6353ms)\nWhat are semiconductors?\tmultilayer sandwiches\t-11.127532850720959\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, multilayer sandwiches) -> multilayer sandwiches (6353ms)\nWhat are semiconductors?\tan imperfect process\t-11.130577942311682\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, an imperfect process) -> an imperfect process (6353ms)\nWhat are semiconductors?\ta $ 250 Billion industry and storage is\t-11.132998756561552\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, a $ 250 Billion industry and storage is) -> a $ 250 Billion industry and storage is (6354ms)\nWhat are semiconductors?\tAmerica\t-11.136175717615272\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, America) -> America (6353ms)\nWhat are semiconductors?\ta growing problem\t-11.137520685005175\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, a growing problem) -> a growing problem (6354ms)\nWhat are semiconductors?\tChina\t-11.13794414311976\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, China) -> China (6376ms)\nWhat are semiconductors?\ta registered trademark\t-11.14371009521744\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, a registered trademark) -> a registered trademark (6376ms)\nWhat are semiconductors?\ta tough industry\t-11.166699205157425\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, a tough industry) -> a tough industry (6376ms)\nWhat are semiconductors?\tperfect conductors\t-11.167740568620939\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are almost, perfect conductors) -> perfect conductors (6376ms)\nWhat are semiconductors?\ta glam industry\t-11.203770940196879\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, was, a glam industry) -> a glam industry (6376ms)\nWhat are semiconductors?\tany way\t-11.21911295765322\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what exactly be semiconductor ? -> $x: ($x, exactly be, semiconductor) -> (any way, exactly is, a semiconductor) -> any way (6465ms)\nWhat are semiconductors?\tterms\t-11.257710967538927\tWhat are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (a semiconductor, can be modeled in, terms) -> terms (3926ms)\nWhat are semiconductors?\tSuch materials\t-11.288167303458494\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Such materials, are known as, intrinsic semiconductors) -> Such materials (6548ms)\nWhat are semiconductors?\ta developing market\t-11.34594204814276\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is also, a developing market) -> a developing market (6376ms)\nWhat are semiconductors?\ta wonderful job\t-11.350836230456675\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (The semiconductor vendors, do, a wonderful job) -> a wonderful job (6465ms)\nWhat are semiconductors?\tLIKE\t-11.387253489591108\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (SEMICONDUCTORS, IS, LIKE) -> LIKE (6465ms)\nWhat are semiconductors?\tAtmel\t-11.480913280043143\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Semiconductor, was going to take, Atmel) -> Atmel (6465ms)\nWhat are semiconductors?\tAmerica?s top export\t-11.481959680615752\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have been, America?s top export) -> America?s top export (6465ms)\nWhat are semiconductors?\tSEMI?s mainstay\t-11.504288438633596\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have been, SEMI?s mainstay) -> SEMI?s mainstay (6465ms)\nWhat are semiconductors?\ta unique way\t-11.564812080041383\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Dialog Semiconductor, has done this in, a unique way) -> a unique way (6548ms)\nWhat are semiconductors?\tBrazil\t-11.581602390032678\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (semiconductor manufacturing, can be done in, Brazil) -> Brazil (6549ms)\nWhat are semiconductors?\tNXP.\t-11.614752994872184\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Royal Phillip?s semiconductor business, went to work for, NXP.) -> NXP. (6548ms)\nWhat are semiconductors?\ta revolution\t-11.647514837033363\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (the semiconductor industry, are going to drive, a revolution) -> a revolution (6549ms)\nWhat are semiconductors?\tpart-time orchestra leaders and microchips\t-11.65343718734715\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, were, part-time orchestra leaders and microchips) -> part-time orchestra leaders and microchips (6588ms)\nWhat are semiconductors?\ta period\t-11.659386683575768\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (their semiconductor components, are going through, a period) -> a period (6588ms)\nWhat are semiconductors?\tone shot\t-11.663560600326221\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (The semiconductor layer, is all done in, one shot) -> one shot (6588ms)\nWhat are semiconductors?\texactly what the name implies\t-11.702470628727305\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, exactly what the name implies) -> exactly what the name implies (6588ms)\nWhat are semiconductors?\tLeo Esaki\t-11.733915794188576\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been discovered by, Leo Esaki) -> Leo Esaki (6588ms)\nWhat are semiconductors?\teconomic growth\t-11.747400234948536\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have made to, economic growth) -> economic growth (6588ms)\nWhat are semiconductors?\tpower generation\t-11.756242204364092\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have decreased the amount of, power generation) -> power generation (6605ms)\nWhat are semiconductors?\tan amazing\t-11.76755947289389\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been proceeding at, an amazing) -> an amazing (6604ms)\nWhat are semiconductors?\tcell phones\t-11.779231367006373\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (many semiconductor devices, go into, cell phones) -> cell phones (6604ms)\nWhat are semiconductors?\tpersonal computers\t-11.78889295469577\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (each semiconductor, goes into, personal computers) -> personal computers (6604ms)\nWhat are semiconductors?\tprogrammable logic devices\t-11.81180464956937\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been in, programmable logic devices) -> programmable logic devices (6604ms)\nWhat are semiconductors?\tlow dimensions\t-11.822717083837302\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have been constrained to, low dimensions) -> low dimensions (6604ms)\nWhat are semiconductors?\tvideo and installation work\t-11.854425660930618\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has been making, video and installation work) -> video and installation work (6620ms)\nWhat are semiconductors?\tAustin\t-11.857732791487017\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Austin, is known more for, software and semi-conductors) -> Austin (6620ms)\nWhat are semiconductors?\tthree Schottky\t-11.874796727619136\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has developed, three Schottky) -> three Schottky (6621ms)\nWhat are semiconductors?\tmore than two years\t-11.918167427042992\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, has been established for, more than two years) -> more than two years (6620ms)\nWhat are semiconductors?\tSilicon\t-11.927757955361294\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Silicon, is known as, a semiconductor) -> Silicon (6621ms)\nWhat are semiconductors?\ta proven track record\t-11.945916037951267\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has, a proven track record) -> a proven track record (6637ms)\nWhat are semiconductors?\tnow\t-11.946754356910684\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are used, now) -> now (6637ms)\nWhat are semiconductors?\ta member\t-11.953821664254647\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (a member, was previously known as, National Semiconductor) -> a member (6638ms)\nWhat are semiconductors?\tthe Photovoltaic cells\t-11.975194650972917\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are used in, the Photovoltaic cells) -> the Photovoltaic cells (6638ms)\nWhat are semiconductors?\tEDA\t-12.006204139788917\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (semiconductor companies, does, EDA) -> EDA (6637ms)\nWhat are semiconductors?\thuman history\t-12.014035754638167\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, have captured this moment in, human history) -> human history (6637ms)\nWhat are semiconductors?\tthe nation\t-12.02486652475801\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, the nation) -> the nation (6653ms)\nWhat are semiconductors?\ta body good click\t-12.035029409711766\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Semiconductors, do, a body good click) -> a body good click (6653ms)\nWhat are semiconductors?\ta downturn\t-12.04279145107574\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (the semiconductor industry, went through, a downturn) -> a downturn (6653ms)\nWhat are semiconductors?\thigher electrical resistance\t-12.053017425105043\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, higher electrical resistance) -> higher electrical resistance (6653ms)\nWhat are semiconductors?\ta toothpaste\t-12.057266275265917\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (titanium semiconductor, does n?t need, a toothpaste) -> a toothpaste (6653ms)\nWhat are semiconductors?\tArizona\t-12.059869080717963\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (The semiconductor industry, is virtually gone here in, Arizona) -> Arizona (6653ms)\nWhat are semiconductors?\ta complete documentation package\t-12.060042127484241\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has, a complete documentation package) -> a complete documentation package (6653ms)\nWhat are semiconductors?\ta higher and higher percentage\t-12.07546570620277\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, a higher and higher percentage) -> a higher and higher percentage (6671ms)\nWhat are semiconductors?\tBerkeley Design Automation\t-12.080763443712502\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has selected, Berkeley Design Automation) -> Berkeley Design Automation (6671ms)\nWhat are semiconductors?\t?defects\t-12.085066698345038\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, ?defects) -> ?defects (6671ms)\nWhat are semiconductors?\ta manufacturing and sales presence\t-12.107171621883928\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has had, a manufacturing and sales presence) -> a manufacturing and sales presence (6671ms)\nWhat are semiconductors?\ta very special property\t-12.109949397463897\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, a very special property) -> a very special property (6671ms)\nWhat are semiconductors?\tfour valence electrons\t-12.114975831843484\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, usually have, four valence electrons) -> four valence electrons (6671ms)\nWhat are semiconductors?\tthe Samsung Art + Prize\t-12.12055979238394\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, have won, the Samsung Art + Prize) -> the Samsung Art + Prize (6671ms)\nWhat are semiconductors?\tBilayer graphene\t-12.122115164982807\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Bilayer graphene, is now known to be, a semiconductor) -> Bilayer graphene (6671ms)\nWhat are semiconductors?\tmore electrons or holes\t-12.122328165186133\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductor, can have, more electrons or holes) -> more electrons or holes (6688ms)\nWhat are semiconductors?\trecent years\t-12.124093701146373\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have been made in, recent years) -> recent years (6688ms)\nWhat are semiconductors?\tJapan\t-12.133254615198771\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Japan, is also well known for, its electronic semiconductors) -> Japan (6688ms)\nWhat are semiconductors?\tshort product life cycles\t-12.145192111451735\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, short product life cycles) -> short product life cycles (6688ms)\nWhat are semiconductors?\tsuch soul searching\t-12.151655315089936\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the semiconductor company Intel, had to do, such soul searching) -> such soul searching (6688ms)\nWhat are semiconductors?\ta new series\t-12.162936698532269\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has introduced, a new series) -> a new series (6688ms)\nWhat are semiconductors?\ta negative temperature coefficient\t-12.174495847980666\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, a negative temperature coefficient) -> a negative temperature coefficient (6688ms)\nWhat are semiconductors?\ta new and ancient aesthetic\t-12.178460065470478\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, have tapped into, a new and ancient aesthetic) -> a new and ancient aesthetic (6688ms)\nWhat are semiconductors?\tevery iteration\t-12.18290799184031\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been getting dearer with, every iteration) -> every iteration (6705ms)\nWhat are semiconductors?\ta tailspin\t-12.19084472913449\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (cell phone semi-conductors, went into, a tailspin) -> a tailspin (6705ms)\nWhat are semiconductors?\ttwo people\t-12.197517661465174\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Micrel Semiconductor, was essentially done by, two people) -> two people (6705ms)\nWhat are semiconductors?\tmoderate bandgap energies\t-12.198719464367853\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, moderate bandgap energies) -> moderate bandgap energies (6705ms)\nWhat are semiconductors?\ta break\t-12.207579913437248\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Semiconductor Insights, does, a break) -> a break (6705ms)\nWhat are semiconductors?\tMicrosemi Corp.\t-12.217821561359642\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Zarlink Semiconductor Inc., went to, Microsemi Corp.) -> Microsemi Corp. (6705ms)\nWhat are semiconductors?\ta new family\t-12.22224254606742\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has introduced the first in, a new family) -> a new family (6705ms)\nWhat are semiconductors?\tpublic earlier this year\t-12.230692263689972\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Freescale Semiconductor, went, public earlier this year) -> public earlier this year (6705ms)\nWhat are semiconductors?\ta strong actvity\t-12.236065799512012\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has since long been, a strong actvity) -> a strong actvity (6831ms)\nWhat are semiconductors?\tIntersil\t-12.248807877734835\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (' semiconductors, went with, Intersil) -> Intersil (6831ms)\nWhat are semiconductors?\ta 5 % additional positive effect\t-12.249781240995475\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, may have, a 5 % additional positive effect) -> a 5 % additional positive effect (6831ms)\nWhat are semiconductors?\tNorthumbria\t-12.256565431915318\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, have reanimated, Northumbria) -> Northumbria (6831ms)\nWhat are semiconductors?\tone global industry\t-12.258494662833034\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have become, one global industry) -> one global industry (6831ms)\nWhat are semiconductors?\tunder 6 %\t-12.265566233515303\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been growing at just, under 6 %) -> under 6 % (6831ms)\nWhat are semiconductors?\tM/A-COM?s Foundry Supplier\t-12.272641803357462\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors?, Has received, M/A-COM?s Foundry Supplier) -> M/A-COM?s Foundry Supplier (6831ms)\nWhat are semiconductors?\tlarge Hall coefficients\t-12.291209981291967\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, large Hall coefficients) -> large Hall coefficients (6831ms)\nWhat are semiconductors?\tAmerica 's largest manufacturing industry\t-12.31858816125685\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, America 's largest manufacturing industry) -> America 's largest manufacturing industry (6849ms)\nWhat are semiconductors?\tbody wearables\t-12.325735600786885\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Semiconductors, are the way to go for, body wearables) -> body wearables (6849ms)\nWhat are semiconductors?\tEPC.\t-12.332767269166455\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has won the award from, EPC.) -> EPC. (6849ms)\nWhat are semiconductors?\tany marketing\t-12.334166692794248\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the semiconductor industry, does, any marketing) -> any marketing (6849ms)\nWhat are semiconductors?\ta narrow band gap\t-12.341609238582011\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, a narrow band gap) -> a narrow band gap (6849ms)\nWhat are semiconductors?\tcritical components of flat panel displays\t-12.350978556143216\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, critical components of flat panel displays) -> critical components of flat panel displays (6849ms)\nWhat are semiconductors?\tvery important\t-12.355410411425362\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, very important) -> very important (6849ms)\nWhat are semiconductors?\tCMOS\t-12.356350750517459\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (CMOS, is known as, complementary metal oxide semiconductor) -> CMOS (6849ms)\nWhat are semiconductors?\ta cycle change\t-12.357280419527793\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (the semiconductor industry, is going through, a cycle change) -> a cycle change (6903ms)\nWhat are semiconductors?\tvolume\t-12.383667667091643\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, volume) -> volume (6903ms)\nWhat are semiconductors?\tthe newest market\t-12.402895327938827\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, the newest market) -> the newest market (6903ms)\nWhat are semiconductors?\trelative strength in the tech space\t-12.40497450848295\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are showing, relative strength in the tech space) -> relative strength in the tech space (6902ms)\nWhat are semiconductors?\t2? or 3? wafers\t-12.41483174114148\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (compound semiconductor work, is done on, 2? or 3? wafers) -> 2? or 3? wafers (6903ms)\nWhat are semiconductors?\tthe lowest tier\t-12.440324147381157\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, the lowest tier) -> the lowest tier (6903ms)\nWhat are semiconductors?\tapplication notes\t-12.452086986992217\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has, application notes) -> application notes (6903ms)\nWhat are semiconductors?\t6 hrs\t-12.4556795666514\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, had very little activity at, 6 hrs) -> 6 hrs (6987ms)\nWhat are semiconductors?\ttwo components\t-12.456185997214426\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has, two components) -> two components (6987ms)\nWhat are semiconductors?\tfantastic results\t-12.462697329209966\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the semiconductor industry, has done with, fantastic results) -> fantastic results (6987ms)\nWhat are semiconductors?\ttelecoms spending\t-12.464828553068036\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (semiconductors, did, telecoms spending) -> telecoms spending (6987ms)\nWhat are semiconductors?\tcrystals\t-12.467601913816758\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, crystals) -> crystals (6987ms)\nWhat are semiconductors?\tcertain bands\t-12.48126550714447\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, can have energies only within, certain bands) -> certain bands (6987ms)\nWhat are semiconductors?\tvalance electrons\t-12.482969311819406\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have most number of, valance electrons) -> valance electrons (6987ms)\nWhat are semiconductors?\t20,000 employees\t-12.486199093125006\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has about, 20,000 employees) -> 20,000 employees (6986ms)\nWhat are semiconductors?\telectronics functions\t-12.502029424362004\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductor, has the potential for, electronics functions) -> electronics functions (7192ms)\nWhat are semiconductors?\toffer roadmaps\t-12.519777984022666\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Semiconductor and component suppliers, do, offer roadmaps) -> offer roadmaps (7192ms)\nWhat are semiconductors?\tminority carriers\t-12.520170183113374\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has relatively high levels of, minority carriers) -> minority carriers (7192ms)\nWhat are semiconductors?\tIntel\t-12.525675439454695\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Intel, is widely known as, a semiconductor leader) -> Intel (7191ms)\nWhat are semiconductors?\tthe 1980?s\t-12.530801191995788\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the Japanese semiconductor makers, did in, the 1980?s) -> the 1980?s (7192ms)\nWhat are semiconductors?\tthe charge distribution\t-12.531953061582236\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, the charge distribution) -> the charge distribution (7192ms)\nWhat are semiconductors?\tconduct electricity\t-12.532622748010935\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are materials that, conduct electricity) -> conduct electricity (7192ms)\nWhat are semiconductors?\tyaaron amber\t-12.548464516864529\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (general semiconductor ltd industry index gaane, do, yaaron amber) -> yaaron amber (7209ms)\nWhat are semiconductors?\t1.5\t-12.556378345714101\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (30 semiconductor stocks, went up, 1.5) -> 1.5 (7209ms)\nWhat are semiconductors?\t37\t-12.561748137652527\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (NAND flash semiconductors, went up by, 37) -> 37 (7209ms)\nWhat are semiconductors?\tthe 1980s\t-12.567053308761402\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the semiconductor industry, did in, the 1980s) -> the 1980s (7209ms)\nWhat are semiconductors?\tAegis\t-12.567962825015462\tWhat are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Aegis, was formerly known as, Aegis Semiconductor) -> Aegis (7209ms)\nWhat are semiconductors?\t6-7 microns\t-12.569705920666987\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (semiconductor lithography line width, went from, 6-7 microns) -> 6-7 microns (7209ms)\nWhat are semiconductors?\tthe heart and brains\t-12.574437736795192\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, the heart and brains) -> the heart and brains (7209ms)\nWhat are semiconductors?\ta positive permittivity\t-12.5770290927364\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, a positive permittivity) -> a positive permittivity (7209ms)\nWhat are semiconductors?\tthe continual layoffs\t-12.580976145160797\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductor, was, the continual layoffs) -> the continual layoffs (7229ms)\nWhat are semiconductors?\tselenium\t-12.58172800334973\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, selenium) -> selenium (7229ms)\nWhat are semiconductors?\theat\t-12.5879173608597\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, heat) -> heat (7229ms)\nWhat are semiconductors?\tthe common thread\t-12.592470726481936\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, the common thread) -> the common thread (7229ms)\nWhat are semiconductors?\ttwo techniques\t-12.59608289160489\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are commonly etched with, two techniques) -> two techniques (7229ms)\nWhat are semiconductors?\tserious growth\t-12.598799206027316\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has shown, serious growth) -> serious growth (7229ms)\nWhat are semiconductors?\tthe largest sector\t-12.599544323095298\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductor, is, the largest sector) -> the largest sector (7229ms)\nWhat are semiconductors?\theart\t-12.605238921823512\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (?Semiconductors, are at, heart) -> heart (7229ms)\nWhat are semiconductors?\tmixed results\t-12.605872802640679\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have met with, mixed results) -> mixed results (7305ms)\nWhat are semiconductors?\tthe NSI45 series\t-12.609038015819023\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has introduced, the NSI45 series) -> the NSI45 series (7305ms)\nWhat are semiconductors?\tpositive signs\t-12.619200324891269\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has already shown, positive signs) -> positive signs (7305ms)\nWhat are semiconductors?\tlast year\t-12.619200324891269\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Semiconductors, did n?t stop until, last year) -> last year (7305ms)\nWhat are semiconductors?\tthe world?s biggest supplier\t-12.620351441250202\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, the world?s biggest supplier) -> the world?s biggest supplier (7305ms)\nWhat are semiconductors?\ta strong month\t-12.642851981447269\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, had, a strong month) -> a strong month (7305ms)\nWhat are semiconductors?\tTuesday\t-12.64982223874646\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, had a tough time in, Tuesday) -> Tuesday (7305ms)\nWhat are semiconductors?\t1.3 percent\t-12.652820496415963\tWhat are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have declined by, 1.3 percent) -> 1.3 percent (7305ms)\nWhat is sodium chloride?\tCalculi Dissolution Agent\t-6.315527729893548\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Calculi Dissolution Agent, Drugs, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Calculi Dissolution Agent (6354ms)\nWhat is sodium chloride?\tCardinal Health\t-6.402943453374191\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Cardinal Health, Drugs manufactured, Sodium Chloride 9 injection) -> Cardinal Health (6356ms)\nWhat is sodium chloride?\tBaxter International\t-6.402943453374191\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Baxter International, Drugs manufactured, Sodium Chloride 450 irrigant) -> Baxter International (6422ms)\nWhat is sodium chloride?\tMajor Pharmaceuticals\t-6.435430312264107\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Major Pharmaceuticals, Drugs manufactured, Sodium Chloride Hypertonicity 50 solution) -> Major Pharmaceuticals (6421ms)\nWhat is sodium chloride?\tMcKesson Corporation\t-6.487219265121729\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (McKesson Corporation, Drugs manufactured, Sodium Chloride 9 injection) -> McKesson Corporation (6436ms)\nWhat is sodium chloride?\tWest-ward Pharmaceutical\t-6.487219265121729\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (West-ward Pharmaceutical, Drugs manufactured, Sodium Chloride 9 injection) -> West-ward Pharmaceutical (6436ms)\nWhat is sodium chloride?\tPregnancy Category C (FDA)\t-6.519706124011645\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Pregnancy Category C (FDA), Drugs in this category, Sodium chloride) -> Pregnancy Category C (FDA) (6436ms)\nWhat is sodium chloride?\tB. Braun Medical\t-6.547195004610804\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (B. Braun Medical, Drugs manufactured, Sodium Chloride 5 injectable solution) -> B. Braun Medical (6530ms)\nWhat is sodium chloride?\tGeneral Injectables & Vaccines\t-6.547195004610804\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (General Injectables & Vaccines, Drugs manufactured, Sodium Chloride 9 injectable solution) -> General Injectables & Vaccines (6436ms)\nWhat is sodium chloride?\tTaro Pharmaceutical Industries Ltd.\t-6.5707569022672265\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Taro Pharmaceutical Industries Ltd., Drugs manufactured, Sodium Chloride 9 injectable solution) -> Taro Pharmaceutical Industries Ltd. (6530ms)\nWhat is sodium chloride?\tSubcutaneous injection\t-6.651445541568021\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Subcutaneous injection, Drug formulations, Sodium chloride 9 injection) -> Subcutaneous injection (6612ms)\nWhat is sodium chloride?\tIntramuscular injection\t-6.651445541568021\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Intramuscular injection, Drug formulations, Sodium chloride 9 injection) -> Intramuscular injection (6612ms)\nWhat is sodium chloride?\tSodium chloride\t-6.651445541568021\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium chloride, Active moiety of drug, Follitropin/Sodium chloride) -> Sodium chloride (6612ms)\nWhat is sodium chloride?\tSublingual administration\t-6.6904297722359205\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sublingual administration, Drug formulations, Sodium chloride 30 pellet) -> Sublingual administration (6612ms)\nWhat is sodium chloride?\tMagnesium chloride\t-6.773967409381418\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Magnesium chloride, Active moiety of drug, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Magnesium chloride (6660ms)\nWhat is sodium chloride?\tPotassium chloride\t-6.773967409381418\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Potassium chloride, Active moiety of drug, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Potassium chloride (6646ms)\nWhat is sodium chloride?\tSodium gluconate\t-6.773967409381418\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium gluconate, Active moiety of drug, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Sodium gluconate (6647ms)\nWhat is sodium chloride?\tSodium acetate\t-6.773967409381418\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium acetate, Active moiety of drug, Sodium chloride/Sodium acetate anhydrous/Sodium gluconate/Potassium chloride/Magnesium chloride) -> Sodium acetate (6661ms)\nWhat is sodium chloride?\tOsmotic Laxative\t-6.792785760053182\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Osmotic Laxative, Drugs, Polyethylene glycol 3350/Chloride ion/Sodium cation/Potassium cation/Sulfate ion) -> Osmotic Laxative (6661ms)\nWhat is sodium chloride?\tFollicle-stimulating hormone\t-6.877061571800718\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Follicle-stimulating hormone, Active moiety of drug, Follitropin/Sodium chloride) -> Follicle-stimulating hormone (6741ms)\nWhat is sodium chloride?\tD-Glucose\t-6.877061571800718\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (D-Glucose, Active moiety of drug, Dextrose/Sodium chloride/Calcium chloride/Potassium chloride) -> D-Glucose (6733ms)\nWhat is sodium chloride?\tPregnancy Category X (FDA)\t-6.877061571800718\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Pregnancy Category X (FDA), Drugs in this category, Follitropin/Sodium chloride) -> Pregnancy Category X (FDA) (6733ms)\nWhat is sodium chloride?\tFDA OTC monograph part 349\t-6.983734674350196\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (FDA OTC monograph part 349, Drugs regulated, Sodium Chloride Hypertonicity 50 solution) -> FDA OTC monograph part 349 (6781ms)\nWhat is sodium chloride?\tCalcium chloride\t-7.08027207891491\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Calcium chloride, Active moiety of drug, Dextrose/Sodium chloride/Calcium chloride/Potassium chloride) -> Calcium chloride (6780ms)\nWhat is sodium chloride?\tOral\t-7.085228832337814\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Oral, Drug formulations, Sodium chloride 30 pellet) -> Oral (6849ms)\nWhat is sodium chloride?\tSodium\t-7.092305992382086\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium, Active moiety of drug, Sodium chloride) -> Sodium (6848ms)\nWhat is sodium chloride?\tOphthalmic\t-7.13995338542063\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Ophthalmic, Drug formulations, Sodium chloride 20 solution) -> Ophthalmic (7144ms)\nWhat is sodium chloride?\tIntravenous\t-7.13995338542063\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Intravenous, Drug formulations, Sodium chloride 9 injection) -> Intravenous (7213ms)\nWhat is sodium chloride?\tIrrigation\t-7.13995338542063\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Irrigation, Drug formulations, Sodium chloride 9 irrigant) -> Irrigation (7144ms)\nWhat is sodium chloride?\tNasal\t-7.13995338542063\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Nasal, Drug formulations, Sodium chloride 9 solution) -> Nasal (7144ms)\nWhat is sodium chloride?\tHospira\t-7.13995338542063\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Hospira, Drugs manufactured, Sodium Chloride 900 irrigant) -> Hospira (7213ms)\nWhat is sodium chloride?\tDrug\t-7.156699921895628\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Drug, Drug formulations in this category, Sodium chloride 9 irrigant) -> Drug (7226ms)\nWhat is sodium chloride?\tMedefil\t-7.178937616088529\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Medefil, Drugs manufactured, Sodium Chloride 9 injectable solution) -> Medefil (7239ms)\nWhat is sodium chloride?\tPhysiosol\t-7.238913355577604\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Physiosol, Canonical drug, Sodium chloride/Sodium acetate anhydrous/Sodium gluconate/Potassium chloride/Magnesium chloride) -> Physiosol (7251ms)\nWhat is sodium chloride?\tHomeopathic\t-7.238913355577604\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Homeopathic, Drug formulations in this category, Sodium chloride 30 pellet) -> Homeopathic (7252ms)\nWhat is sodium chloride?\tSalt\t-7.271036230087325\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, chemical of this type, sodium chloride) -> (Salt, Chemicals of this type, Sodium chloride) -> Salt (4960ms)\nWhat is sodium chloride?\tPotassium Salt\t-7.448929035357868\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Potassium Salt, Drugs, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Potassium Salt (7264ms)\nWhat is sodium chloride?\t?salt?\t-8.421964843951121\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: (sodium chloride, be a way of, $x) -> (Sodium chloride, is simply a fancy way of saying, ?salt?) -> ?salt? (4960ms)\nWhat is sodium chloride?\tindustry\t-10.157301449439892\tWhat is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: (sodium chloride, be a by, $x) -> (Purified sodium chloride, is both a by-product of, industry) -> industry (5016ms)\nWhat is sodium chloride?\tRock salt\t-10.328694894999488\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Rock salt, is, sodium chloride) -> Rock salt (11581ms)\nWhat is sodium chloride?\tNaCl\t-10.877584498135764\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (NaCl, is, Sodium Chloride) -> NaCl (11580ms)\nWhat is sodium chloride?\tTable salt\t-10.950430472559185\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (Table salt, Also known as, Sodium chloride) -> Table salt (8406ms)\nWhat is sodium chloride?\tSea salt\t-10.95606481616344\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Sea salt, is, sodium chloride) -> Sea salt (11581ms)\nWhat is sodium chloride?\ta metal ion\t-10.997739756659033\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a metal ion) -> a metal ion (10814ms)\nWhat is sodium chloride?\t36 grams\t-11.045702895964055\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 36 grams) -> 36 grams (10814ms)\nWhat is sodium chloride?\tsalt-water pools\t-11.128697419169995\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (salt-water pools, is, sodium chloride) -> salt-water pools (11581ms)\nWhat is sodium chloride?\tthe Dead Sea\t-11.155225099017539\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the Dead Sea, is, sodium chloride) -> the Dead Sea (11580ms)\nWhat is sodium chloride?\tMMS\t-11.159746867839642\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (MMS, is a small amount of, table salt or sodium chloride) -> MMS (8226ms)\nWhat is sodium chloride?\tRoad salts\t-11.25443109324124\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Road salts, are, sodium chloride) -> Road salts (11580ms)\nWhat is sodium chloride?\tHimalayan salt\t-11.268388980043014\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Himalayan salt, is, sodium chloride) -> Himalayan salt (11581ms)\nWhat is sodium chloride?\tsolute carrier family 12 (sodium/potassium/chloride transporters), member 1\t-11.342905786021625\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 12 (sodium/potassium/chloride transporters), member 1, Also known as, sodium potassium chloride cotransporter 2) -> solute carrier family 12 (sodium/potassium/chloride transporters), member 1 (8406ms)\nWhat is sodium chloride?\tpotassium channel, subfamily T, member 2\t-11.342905786021625\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (potassium channel, subfamily T, member 2, Also known as, sodium and chloride activated ATP sensitive potassium channel) -> potassium channel, subfamily T, member 2 (8406ms)\nWhat is sodium chloride?\tIo\t-11.343792994775967\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Io, was, sodium chloride) -> Io (11601ms)\nWhat is sodium chloride?\tsea salt\t-11.40757237175211\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is just, sea salt) -> sea salt (10814ms)\nWhat is sodium chloride?\ttable salt\t-11.450900224221346\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, table salt) -> table salt (10814ms)\nWhat is sodium chloride?\ta cube\t-11.469314232054167\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a cube) -> a cube (10814ms)\nWhat is sodium chloride?\tWakura Onsen\t-11.495551428108595\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Wakura Onsen, is, sodium chloride) -> Wakura Onsen (11600ms)\nWhat is sodium chloride?\tSlc12a3\t-11.56860396357262\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (Slc12a3, Also known as, Solute carrier family 12 (sodium/chloride transporters), member 3) -> Slc12a3 (8429ms)\nWhat is sodium chloride?\tsolute carrier family 6 (neurotransmitter transporter, creatine), member 10 (pseudogene)\t-11.56860396357262\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 6 (neurotransmitter transporter, creatine), member 10 (pseudogene), Also known as, similar to sodium- and chloride-dependent creatine transporter) -> solute carrier family 6 (neurotransmitter transporter, creatine), member 10 (pseudogene) (8449ms)\nWhat is sodium chloride?\tsolute carrier family 12 (potassium/chloride transporters), member 8\t-11.56860396357262\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 12 (potassium/chloride transporters), member 8, Also known as, solute carrier family 12 (sodium/potassium/chloride transporters), member 8) -> solute carrier family 12 (potassium/chloride transporters), member 8 (8428ms)\nWhat is sodium chloride?\tSlc12a2\t-11.56860396357262\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (Slc12a2, Also known as, Solute carrier family 12 (sodium/potassium/chloride transporters), member 2) -> Slc12a2 (8429ms)\nWhat is sodium chloride?\tsolute carrier family 6, member 15\t-11.56860396357262\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 6, member 15, Also known as, sodium/chloride dependent neurotransmitter transporter Homo sapiens orphan neurotransmitter transporter NTT7) -> solute carrier family 6, member 15 (8429ms)\nWhat is sodium chloride?\tsolute carrier family 6 (neurotransmitter transporter, glycine), member 9\t-11.56860396357262\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 6 (neurotransmitter transporter, glycine), member 9, Also known as, sodium- and chloride-dependent glycine transporter 1) -> solute carrier family 6 (neurotransmitter transporter, glycine), member 9 (8406ms)\nWhat is sodium chloride?\tSlc12a1\t-11.56860396357262\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (Slc12a1, Also known as, Solute carrier family 12 (sodium/potassium/chloride transporters), member 1) -> Slc12a1 (8429ms)\nWhat is sodium chloride?\tsolute carrier family 12 (sodium/potassium/chloride transporters), member 2\t-11.56860396357262\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 12 (sodium/potassium/chloride transporters), member 2, Also known as, bumetanide-sensitive sodium-(potassium)-chloride cotransporter 1) -> solute carrier family 12 (sodium/potassium/chloride transporters), member 2 (8449ms)\nWhat is sodium chloride?\tnormal ocean water\t-11.579716210471066\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (normal ocean water, is, sodium chloride) -> normal ocean water (11601ms)\nWhat is sodium chloride?\trock salt\t-11.586904017907944\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (rock salt, is simply the mineral form of, sodium chloride) -> rock salt (8226ms)\nWhat is sodium chloride?\tsodium chloride\t-11.627874981823675\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (sodium chloride, is made up of, sodium and chloride ions) -> sodium chloride (8226ms)\nWhat is sodium chloride?\twater soluble\t-11.638342317288952\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is highly, water soluble) -> water soluble (10814ms)\nWhat is sodium chloride?\tDead Sea mineral salts\t-11.647697718917502\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Dead Sea mineral salts, are, sodium chloride) -> Dead Sea mineral salts (11601ms)\nWhat is sodium chloride?\tHalite\t-11.652608039052286\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Halite, is, sodium chloride) -> Halite (11600ms)\nWhat is sodium chloride?\tAvoid rock salt\t-11.677076229390217\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Avoid rock salt, is, sodium chloride) -> Avoid rock salt (11601ms)\nWhat is sodium chloride?\tan attractant\t-11.682472365406724\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, an attractant) -> an attractant (11600ms)\nWhat is sodium chloride?\tS/M\t-11.687645121695958\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (S/M, is the concentration of, sodium chloride) -> S/M (8225ms)\nWhat is sodium chloride?\tsmart and\t-11.69033658677827\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (smart and, are restricting the use of, sodium chloride) -> smart and (8250ms)\nWhat is sodium chloride?\ta toxin\t-11.715542813524547\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a toxin) -> a toxin (11601ms)\nWhat is sodium chloride?\tbleached table salt\t-11.746265942121084\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, bleached table salt) -> bleached table salt (11620ms)\nWhat is sodium chloride?\ta chemical\t-11.752157781346037\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is, a chemical) -> a chemical (11620ms)\nWhat is sodium chloride?\tROHYPNOL\t-11.760902536688116\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (ROHYPNOL, is, sodium chloride) -> ROHYPNOL (11620ms)\nWhat is sodium chloride?\t10-15\t-11.77430642969955\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 10-15) -> 10-15 (11620ms)\nWhat is sodium chloride?\tSea water\t-11.780798395370404\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, be relate to, sodium chloride) -> (Sea water, is related to, 73 per-cent sodium chloride) -> Sea water (8479ms)\nWhat is sodium chloride?\ttypical salt\t-11.814969042467247\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (typical salt, is, sodium chloride) -> typical salt (11620ms)\nWhat is sodium chloride?\tSodium chloride; the production and properties of salt and brine\t-11.81920453395079\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride; the production and properties of salt and brine, Edition Of, Sodium chloride) -> Sodium chloride; the production and properties of salt and brine (13927ms)\nWhat is sodium chloride?\tcommon table salt\t-11.819226995572572\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, common table salt) -> common table salt (11620ms)\nWhat is sodium chloride?\tCommon human electrolytes\t-11.831026401385614\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Common human electrolytes, are, sodium chloride) -> Common human electrolytes (11620ms)\nWhat is sodium chloride?\t40 % sodium\t-11.86362840304232\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 40 % sodium) -> 40 % sodium (11620ms)\nWhat is sodium chloride?\tunprocessed salt crystals\t-11.871537685119574\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (unprocessed salt crystals, are made of, sodium chloride) -> unprocessed salt crystals (8251ms)\nWhat is sodium chloride?\ta kid\t-11.87186365751139\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (a kid, is, sodium chloride) -> a kid (11641ms)\nWhat is sodium chloride?\tHalite Halite\t-11.880506610745925\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Halite Halite, is the mineral form of, sodium chloride) -> Halite Halite (8251ms)\nWhat is sodium chloride?\teasier ? sea salt\t-11.884813375678169\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (easier ? sea salt, is, sodium chloride) -> easier ? sea salt (11641ms)\nWhat is sodium chloride?\t3.8 grams\t-11.884849140180114\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 3.8 grams) -> 3.8 grams (11641ms)\nWhat is sodium chloride?\tSalt Salt\t-11.896897783766434\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Salt Salt, is made of, Sodium and Chloride) -> Salt Salt (8251ms)\nWhat is sodium chloride?\ta very stable compound\t-11.90780253832045\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a very stable compound) -> a very stable compound (11641ms)\nWhat is sodium chloride?\tfood and table salt\t-11.912841167390798\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (food and table salt, is made up of, sodium and chloride ions) -> food and table salt (8450ms)\nWhat is sodium chloride?\tdietary salt\t-11.92013183575271\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (dietary salt, is, sodium chloride) -> dietary salt (11641ms)\nWhat is sodium chloride?\tLye\t-11.923158569645691\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Lye, is, sodium chloride) -> Lye (11641ms)\nWhat is sodium chloride?\tNatrum mur.\t-11.929906479439333\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Natrum mur., is basically of, potensized sodium chloride) -> Natrum mur. (8450ms)\nWhat is sodium chloride?\tTypical table salt\t-11.94060633253886\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Typical table salt, is composed of, 97.5 % sodium chloride) -> Typical table salt (8450ms)\nWhat is sodium chloride?\tSeawater\t-11.951128445111909\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Seawater, is a source of, sodium chloride) -> Seawater (8479ms)\nWhat is sodium chloride?\tCommercial salt\t-11.95450755415219\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Commercial salt, is, sodium chloride) -> Commercial salt (11641ms)\nWhat is sodium chloride?\tMorton Salt\t-11.968699014180052\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Morton Salt, is, sodium chloride) -> Morton Salt (11641ms)\nWhat is sodium chloride?\tOne common form\t-11.96906040044877\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (One common form, is, sodium chloride) -> One common form (11661ms)\nWhat is sodium chloride?\t58.44 grams\t-11.97592149894355\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 58.44 grams) -> 58.44 grams (11661ms)\nWhat is sodium chloride?\tSodium chloride water in granitic rocks of the western Sierra Nevada foothills\t-12.021651208092358\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the expansion of sodium chloride ? -> $x: (sodium chloride, expansion, $x) -> $x: (sodium chloride, edition, $x) -> (Sodium chloride water in granitic rocks of the western Sierra Nevada foothills, Edition Of, Sodium chloride water in granitic rocks of the western Sierra Nevada foothills) -> Sodium chloride water in granitic rocks of the western Sierra Nevada foothills (14042ms)\nWhat is sodium chloride?\trenal epithelium\t-12.021879157563445\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (renal epithelium, is, sodium chloride) -> renal epithelium (11661ms)\nWhat is sodium chloride?\t50 mg.\t-12.03686658302638\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 50 mg.) -> 50 mg. (11662ms)\nWhat is sodium chloride?\ta nice and fancy way\t-12.03934944116315\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is, a nice and fancy way) -> a nice and fancy way (11661ms)\nWhat is sodium chloride?\tSodium chloride 37.5 spray\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 37.5 spray, Formulation of, Sodium chloride) -> Sodium chloride 37.5 spray (14042ms)\nWhat is sodium chloride?\tSodium chloride 11.25 spray\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 11.25 spray, Formulation of, Sodium chloride) -> Sodium chloride 11.25 spray (13927ms)\nWhat is sodium chloride?\tSodium chloride 11.25 liquid\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 11.25 liquid, Formulation of, Sodium chloride) -> Sodium chloride 11.25 liquid (14042ms)\nWhat is sodium chloride?\tSodium chloride 0.09 injection\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.09 injection, Formulation of, Sodium chloride) -> Sodium chloride 0.09 injection (13988ms)\nWhat is sodium chloride?\tSodium chloride 50 ointment\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 50 ointment, Formulation of, Sodium chloride) -> Sodium chloride 50 ointment (13927ms)\nWhat is sodium chloride?\tSodium chloride 200 pellet\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 200 pellet, Formulation of, Sodium chloride) -> Sodium chloride 200 pellet (14168ms)\nWhat is sodium chloride?\tSodium chloride 6.5 spray\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 6.5 spray, Formulation of, Sodium chloride) -> Sodium chloride 6.5 spray (14168ms)\nWhat is sodium chloride?\tSodium chloride 0.0065 lotion\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.0065 lotion, Formulation of, Sodium chloride) -> Sodium chloride 0.0065 lotion (13988ms)\nWhat is sodium chloride?\tSodium chloride 9 solution\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 9 solution, Formulation of, Sodium chloride) -> Sodium chloride 9 solution (14168ms)\nWhat is sodium chloride?\tSodium chloride 0.9 injection\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.9 injection, Formulation of, Sodium chloride) -> Sodium chloride 0.9 injection (13927ms)\nWhat is sodium chloride?\tSodium chloride 1 solution/drops\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 1 solution/drops, Formulation of, Sodium chloride) -> Sodium chloride 1 solution/drops (13988ms)\nWhat is sodium chloride?\tSodium chloride 20 solution\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 20 solution, Formulation of, Sodium chloride) -> Sodium chloride 20 solution (13988ms)\nWhat is sodium chloride?\tSodium chloride 26 spray\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 26 spray, Formulation of, Sodium chloride) -> Sodium chloride 26 spray (13988ms)\nWhat is sodium chloride?\tSodium chloride 4.5 irrigant\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 4.5 irrigant, Formulation of, Sodium chloride) -> Sodium chloride 4.5 irrigant (14168ms)\nWhat is sodium chloride?\tSodium chloride 50 solution/drops\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 50 solution/drops, Formulation of, Sodium chloride) -> Sodium chloride 50 solution/drops (13927ms)\nWhat is sodium chloride?\tSodium chloride 9 injection\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 9 injection, Formulation of, Sodium chloride) -> Sodium chloride 9 injection (13988ms)\nWhat is sodium chloride?\tSodium chloride 4.5 injection\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 4.5 injection, Formulation of, Sodium chloride) -> Sodium chloride 4.5 injection (14168ms)\nWhat is sodium chloride?\tSodium chloride 30 pellet\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 30 pellet, Formulation of, Sodium chloride) -> Sodium chloride 30 pellet (14168ms)\nWhat is sodium chloride?\tSodium chloride 4.5 solution\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 4.5 solution, Formulation of, Sodium chloride) -> Sodium chloride 4.5 solution (13988ms)\nWhat is sodium chloride?\tSodium chloride 0.03 spray\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.03 spray, Formulation of, Sodium chloride) -> Sodium chloride 0.03 spray (14168ms)\nWhat is sodium chloride?\tSodium chloride 0.45 injection\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.45 injection, Formulation of, Sodium chloride) -> Sodium chloride 0.45 injection (14042ms)\nWhat is sodium chloride?\tSodium chloride 50 solution\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 50 solution, Formulation of, Sodium chloride) -> Sodium chloride 50 solution (14042ms)\nWhat is sodium chloride?\tSodium chloride 0.0065 spray\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.0065 spray, Formulation of, Sodium chloride) -> Sodium chloride 0.0065 spray (14042ms)\nWhat is sodium chloride?\tSodium chloride 9 irrigant\t-12.041592733879588\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 9 irrigant, Formulation of, Sodium chloride) -> Sodium chloride 9 irrigant (13988ms)\nWhat is sodium chloride?\t6,200 mg\t-12.051078291678067\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 6,200 mg) -> 6,200 mg (11661ms)\nWhat is sodium chloride?\t800oC\t-12.067878096810377\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is about, 800oC) -> 800oC (11661ms)\nWhat is sodium chloride?\tA phase rule study of soap\t-12.075254525260718\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the expansion of sodium chloride ? -> $x: (sodium chloride, expansion, $x) -> $x: (sodium chloride, edition, $x) -> (A phase rule study of soap : the three component systems sodium oleate-sodium chloride-water and sodium stearate-sodium chloride-water, Edition Of, A phase rule study of soap) -> A phase rule study of soap (14629ms)\nWhat is sodium chloride?\tCeltic Sea Salt\t-12.078908932512718\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Celtic Sea Salt, is an important source of, sodium chloride) -> Celtic Sea Salt (8479ms)\nWhat is sodium chloride?\ta white crystalline solid\t-12.084642084738448\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a white crystalline solid) -> a white crystalline solid (11662ms)\nWhat is sodium chloride?\tHigher order behavior of earth materials\t-12.085464680911835\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the expansion of sodium chloride ? -> $x: (sodium chloride, expansion, $x) -> $x: ($x, edition, sodium chloride) -> (Higher order behavior of earth materials, Editions, Higher order behavior of earth materials : elasticity of sodium chloride and wustite, and thermal expansion at high pressure) -> Higher order behavior of earth materials (14628ms)\nWhat is sodium chloride?\tIsodium chloride 0.009 solution\t-12.089240126918131\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Isodium chloride 0.009 solution, Formulation of, Sodium chloride) -> Isodium chloride 0.009 solution (14629ms)\nWhat is sodium chloride?\tSodium chloride 0.2 spray aerosol\t-12.089240126918131\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.2 spray aerosol, Formulation of, Sodium chloride) -> Sodium chloride 0.2 spray aerosol (14629ms)\nWhat is sodium chloride?\tSodium chloride 9 injectable solution\t-12.089240126918131\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 9 injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 9 injectable solution (14628ms)\nWhat is sodium chloride?\tSodium chloride 4.5 injectable solution\t-12.089240126918131\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 4.5 injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 4.5 injectable solution (14693ms)\nWhat is sodium chloride?\tSodium chloride 30 injectable solution\t-12.089240126918131\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 30 injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 30 injectable solution (14628ms)\nWhat is sodium chloride?\tSodium chloride 50 injectable solution\t-12.089240126918131\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 50 injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 50 injectable solution (14693ms)\nWhat is sodium chloride?\tDesign Normlgel\t-12.089528933290307\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Design Normlgel, is made of, a 0.9 % sodium chloride solution) -> Design Normlgel (8479ms)\nWhat is sodium chloride?\tan ionic solid\t-12.10243636752916\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (an ionic solid, is, sodium chloride) -> an ionic solid (11682ms)\nWhat is sodium chloride?\t90 %\t-12.1032459744726\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (90 %, is, sodium chloride) -> 90 % (11682ms)\nWhat is sodium chloride?\tSalt vs. sodium Salt\t-12.107172117969352\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Salt vs. sodium Salt, is made up of, sodium and chloride) -> Salt vs. sodium Salt (8498ms)\nWhat is sodium chloride?\thigh power laser systems\t-12.125759810698943\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is being used in, high power laser systems) -> high power laser systems (11682ms)\nWhat is sodium chloride?\tSodium chloride 146 injectable concentrate solution\t-12.12822435758603\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 146 injectable concentrate solution, Formulation of, Sodium chloride) -> Sodium chloride 146 injectable concentrate solution (14693ms)\nWhat is sodium chloride?\tNatrum muriaticum 0.6 liquid\t-12.12822435758603\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 0.6 liquid, Formulation of, Sodium chloride) -> Natrum muriaticum 0.6 liquid (14693ms)\nWhat is sodium chloride?\tNatrum muriaticum 1 shampoo\t-12.12822435758603\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 1 shampoo, Formulation of, Sodium chloride) -> Natrum muriaticum 1 shampoo (14843ms)\nWhat is sodium chloride?\tNatrum muriaticum 6 tablet\t-12.12822435758603\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 6 tablet, Formulation of, Sodium chloride) -> Natrum muriaticum 6 tablet (14843ms)\nWhat is sodium chloride?\tNatrum muriaticum 30 tablet\t-12.12822435758603\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 30 tablet, Formulation of, Sodium chloride) -> Natrum muriaticum 30 tablet (14843ms)\nWhat is sodium chloride?\tSodium chloride 7.8 injectable concentrate solution\t-12.12822435758603\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 7.8 injectable concentrate solution, Formulation of, Sodium chloride) -> Sodium chloride 7.8 injectable concentrate solution (14693ms)\nWhat is sodium chloride?\tNatrum muriaticum 0.0253 shampoo\t-12.12822435758603\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 0.0253 shampoo, Formulation of, Sodium chloride) -> Natrum muriaticum 0.0253 shampoo (14693ms)\nWhat is sodium chloride?\tcommon salt\t-12.13669964899358\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, common salt) -> common salt (11681ms)\nWhat is sodium chloride?\t15 F\t-12.144989399739213\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is above, 15 F) -> 15 F (11682ms)\nWhat is sodium chloride?\ta safe , white crystalline solid\t-12.14914898185449\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a safe , white crystalline solid) -> a safe , white crystalline solid (11681ms)\nWhat is sodium chloride?\tSweat\t-12.153411155981349\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Sweat, is made of, water , sodium , chloride) -> Sweat (8498ms)\nWhat is sodium chloride?\tparenteral suspension\t-12.158045602508052\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (parenteral suspension, are, sodium chloride) -> parenteral suspension (11682ms)\nWhat is sodium chloride?\tSodium chloride 900 powder for injectable solution\t-12.160711216475946\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 900 powder for injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 900 powder for injectable solution (14843ms)\nWhat is sodium chloride?\tKosher salt\t-12.166224556805462\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Kosher salt, is a form of, sodium chloride) -> Kosher salt (8498ms)\nWhat is sodium chloride?\ta natural preservative\t-12.173960728129552\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a natural preservative) -> a natural preservative (11681ms)\nWhat is sodium chloride?\ta very effective de-icing agent\t-12.193199824938866\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a very effective de-icing agent) -> a very effective de-icing agent (11907ms)\nWhat is sodium chloride?\tan crucial section\t-12.201218352091118\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, can be, an crucial section) -> an crucial section (11906ms)\nWhat is sodium chloride?\tToxic\t-12.203508975447505\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is, Toxic) -> Toxic (11906ms)\nWhat is sodium chloride?\tan aggressive substance\t-12.209131828748193\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, an aggressive substance) -> an aggressive substance (11906ms)\nWhat is sodium chloride?\tan essential nutrient\t-12.230645082161603\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, an essential nutrient) -> an essential nutrient (11906ms)\nWhat is sodium chloride?\tCommercial ice melt\t-12.24477528565709\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Commercial ice melt, is made up of, either Sodium Chloride) -> Commercial ice melt (8498ms)\nWhat is sodium chloride?\ta stable compound\t-12.261396605771218\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is, a stable compound) -> a stable compound (11906ms)\nWhat is sodium chloride?\ta strong electrolyte\t-12.28786186576846\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a strong electrolyte) -> a strong electrolyte (11906ms)\nWhat is sodium chloride?\t0.9 %\t-12.310416366830887\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (0.9 %, is a sterile isotonic solution of, sodium chloride) -> 0.9 % (8498ms)\nWhat is sodium chloride?\tChloride\t-12.378807617834022\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Chloride, is the other half of, sodium-chloride) -> Chloride (8498ms)\nWhat is sodium chloride?\t10 millimolar ,\t-12.439179055951376\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is approximately, 10 millimolar ,) -> 10 millimolar , (11927ms)\nWhat is sodium chloride?\tRock Salt\t-12.504329512529953\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Rock Salt, is, sodium chloride) -> Rock Salt (11927ms)\nWhat is sodium chloride?\tRegular table salt\t-12.554584242457231\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Regular table salt, is, Sodium Chloride) -> Regular table salt (11927ms)\nWhat is sodium chloride?\tLe Tresor\t-12.595105598307516\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be in, sodium chloride) -> (Le Tresor, is also lower in, sodium chloride content) -> Le Tresor (14993ms)\nWhat is sodium chloride?\tThe most common salt\t-12.628367921834013\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most common salt, is, sodium chloride) -> The most common salt (11927ms)\nWhat is sodium chloride?\tCommon Salt\t-12.641779586059961\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Common Salt, is, Sodium Chloride) -> Common Salt (11927ms)\nWhat is sodium chloride?\tanti-edema effect\t-12.672308061656658\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (ophthalmology sodium chloride, has, anti-edema effect) -> anti-edema effect (11948ms)\nWhat is sodium chloride?\tThe most common compound\t-12.685294815166838\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most common compound, is, sodium chloride) -> The most common compound (11948ms)\nWhat is sodium chloride?\tEstimations\t-12.715677484740901\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Estimations, were made of, the sodium and chloride) -> Estimations (8616ms)\nWhat is sodium chloride?\tThe most common form\t-12.71813535000245\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most common form, is, sodium chloride) -> The most common form (11948ms)\nWhat is sodium chloride?\tphysiologically-acceptable salt\t-12.760466333276577\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, physiologically-acceptable salt) -> physiologically-acceptable salt (14993ms)\nWhat is sodium chloride?\tWhat we dont  need\t-12.764172847202742\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (What we dont  need, is, sodium chloride) -> What we dont  need (11948ms)\nWhat is sodium chloride?\tThe most common combination\t-12.766274247179911\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most common combination, is, sodium chloride) -> The most common combination (11948ms)\nWhat is sodium chloride?\tThe most familiar salt\t-12.766274247179911\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most familiar salt, is, sodium chloride) -> The most familiar salt (11948ms)\nWhat is sodium chloride?\tso soluble in water\t-12.780603340516226\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, so soluble in water) -> so soluble in water (11948ms)\nWhat is sodium chloride?\tmetal ion\t-12.789333959663699\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, metal ion) -> metal ion (14993ms)\nWhat is sodium chloride?\tby-products\t-12.842485453362094\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, by-products) -> by-products (14993ms)\nWhat is sodium chloride?\tThe common table salt\t-12.851250655364037\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The common table salt, is made up of, sodium chloride) -> The common table salt (8616ms)\nWhat is sodium chloride?\tmake hydrochloric acid\t-12.868099194003905\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is used to, make hydrochloric acid) -> make hydrochloric acid (11967ms)\nWhat is sodium chloride?\ta solution\t-12.902106353741544\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium and chloride ions, have been ionized in, a solution) -> a solution (11967ms)\nWhat is sodium chloride?\tSalt Brine\t-12.913549698588014\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Salt Brine, Instance Of, liquid sodium chloride) -> Salt Brine (15044ms)\nWhat is sodium chloride?\tsodium\t-12.924614756158945\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, sodium) -> sodium (11967ms)\nWhat is sodium chloride?\ta chemical compound with formula NaCl\t-12.971058867051344\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a chemical compound with formula NaCl) -> a chemical compound with formula NaCl (11967ms)\nWhat is sodium chloride?\tsuitable carrier or excipients\t-12.981177896974852\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, suitable carrier or excipients) -> suitable carrier or excipients (15045ms)\nWhat is sodium chloride?\tcalcium chloride\t-12.999123516046295\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is mixed with, calcium chloride) -> calcium chloride (11967ms)\nWhat is sodium chloride?\ttypical ionic compound\t-13.000618286984889\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, typical ionic compound) -> typical ionic compound (15044ms)\nWhat is sodium chloride?\tSodium Salt\t-13.004530056938723\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Sodium Salt, is made up of, sodium and chloride) -> Sodium Salt (8637ms)\nWhat is sodium chloride?\tan action\t-13.015683043883321\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride salts, have, an action) -> an action (11967ms)\nWhat is sodium chloride?\tSPLASH Ice Melt\t-13.016772217696342\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (SPLASH Ice Melt, Instance Of, sodium chloride) -> SPLASH Ice Melt (15045ms)\nWhat is sodium chloride?\tmagnesium chloride\t-13.028465312180463\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (magnesium chloride, Instance Of, sodium chloride) -> magnesium chloride (15045ms)\nWhat is sodium chloride?\thigh temperatures\t-13.031900961102489\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has been processed at, high temperatures) -> high temperatures (11967ms)\nWhat is sodium chloride?\tan ionic compound\t-13.046391004538581\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, an ionic compound) -> an ionic compound (11985ms)\nWhat is sodium chloride?\twater soluble material\t-13.0553628677924\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, water soluble material) -> water soluble material (15044ms)\nWhat is sodium chloride?\tuse\t-13.088076185898327\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (use, became known as, sodium chloride) -> use (8636ms)\nWhat is sodium chloride?\tNormal saline solution\t-13.08892161398977\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Normal saline solution, Instance Of, solution of sodium chloride) -> Normal saline solution (15143ms)\nWhat is sodium chloride?\tSimulated Gastric Fluid\t-13.089611974365784\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Simulated Gastric Fluid, Instance Of, solution of sodium chloride) -> Simulated Gastric Fluid (15144ms)\nWhat is sodium chloride?\tnormal table salt\t-13.09626868642893\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, normal table salt) -> normal table salt (15143ms)\nWhat is sodium chloride?\ta Salt Gram technique\t-13.103270120479111\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has been used in, a Salt Gram technique) -> a Salt Gram technique (11985ms)\nWhat is sodium chloride?\tpotassium chloride\t-13.119349267846397\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (potassium chloride, Instance Of, sodium chloride) -> potassium chloride (15144ms)\nWhat is sodium chloride?\tLasio Hypersilk Color Treated Shampoo\t-13.120197082388762\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Lasio Hypersilk Color Treated Shampoo, Instance Of, sodium chloride free shampoo) -> Lasio Hypersilk Color Treated Shampoo (15144ms)\nWhat is sodium chloride?\tadjust tonicity\t-13.124118936948612\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, was added to, adjust tonicity) -> adjust tonicity (11985ms)\nWhat is sodium chloride?\tSoda-Lo\t-13.129239751947088\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Soda-Lo, Instance Of, 100% sodium chloride product) -> Soda-Lo (15144ms)\nWhat is sodium chloride?\tAn example\t-13.132557258651115\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (An example, is, sodium chloride) -> An example (11985ms)\nWhat is sodium chloride?\ttonicity agent\t-13.137331687425245\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, tonicity agent) -> tonicity agent (15144ms)\nWhat is sodium chloride?\tlarge ingots\t-13.139094083227803\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is produced in, large ingots) -> large ingots (11985ms)\nWhat is sodium chloride?\tcommon inorganic salt\t-13.146380273538556\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, common inorganic salt) -> common inorganic salt (15344ms)\nWhat is sodium chloride?\tSalt/Sodium Chloride\t-13.155501032385692\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Salt/Sodium Chloride, Instance Of, sodium and chloride supplement) -> Salt/Sodium Chloride (15344ms)\nWhat is sodium chloride?\ta higher reflection coefficient\t-13.162799861403425\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has, a higher reflection coefficient) -> a higher reflection coefficient (11985ms)\nWhat is sodium chloride?\tsource of iodine\t-13.168480740920721\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, source of iodine) -> source of iodine (15344ms)\nWhat is sodium chloride?\tinorganic acid salt\t-13.171432656605415\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, inorganic acid salt) -> inorganic acid salt (15344ms)\nWhat is sodium chloride?\tGrocery store salt\t-13.175715037032367\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Grocery store salt, is, sodium chloride) -> Grocery store salt (11985ms)\nWhat is sodium chloride?\tLasio Hypersilk Replenishing Shampoo\t-13.182078166508365\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Lasio Hypersilk Replenishing Shampoo, Instance Of, sodium chloride free shampoo) -> Lasio Hypersilk Replenishing Shampoo (15344ms)\nWhat is sodium chloride?\ta single positive charge\t-13.185868526042405\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium Chloride Sodium ions, have, a single positive charge) -> a single positive charge (12003ms)\nWhat is sodium chloride?\tnatural cleaning agent\t-13.191722382355355\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, natural cleaning agent) -> natural cleaning agent (15344ms)\nWhat is sodium chloride?\tnon-volatile solute\t-13.193519963338598\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, non-volatile solute) -> non-volatile solute (15420ms)\nWhat is sodium chloride?\tnon-vasoactive substance\t-13.193519963338598\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, non-vasoactive substance) -> non-vasoactive substance (15344ms)\nWhat is sodium chloride?\toriginal source material\t-13.195643514127068\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, original source material) -> original source material (15420ms)\nWhat is sodium chloride?\tIonic Compounds Salt\t-13.196273400942\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Ionic Compounds Salt, Instance Of, Ionic Compound Sodium chloride) -> Ionic Compounds Salt (15420ms)\nWhat is sodium chloride?\tZach Hunt\t-13.196273400942\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Zach Hunt, Instance Of, sodium chloride supplement) -> Zach Hunt (15419ms)\nWhat is sodium chloride?\tAdios Ambros\t-13.198019206667604\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Adios Ambros, Instance Of, mixture of sodium chloride) -> Adios Ambros (15420ms)\nWhat is sodium chloride?\tsodium hypochlorite\t-13.205015591837846\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (sodium hypochlorite, Instance Of, sodium chloride) -> sodium hypochlorite (15419ms)\nWhat is sodium chloride?\tmixture of two element\t-13.211228914856072\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, mixture of two element) -> mixture of two element (15451ms)\nWhat is sodium chloride?\tstrong electrolyte\t-13.21519990631774\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, strong electrolyte) -> strong electrolyte (15451ms)\nWhat is sodium chloride?\t65.degree\t-13.225202567843477\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (the sodium chloride solution, had been preheated to, 65.degree) -> 65.degree (12003ms)\nWhat is sodium chloride?\tsolid test aerosol\t-13.232046597530005\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, solid test aerosol) -> solid test aerosol (15451ms)\nWhat is sodium chloride?\tsoluble inorganic salt\t-13.232046597530005\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, soluble inorganic salt) -> soluble inorganic salt (15451ms)\nWhat is sodium chloride?\tcustomary electrolyte salt\t-13.232046597530005\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, customary electrolyte salt) -> customary electrolyte salt (15451ms)\nWhat is sodium chloride?\tnatural electrical conductor\t-13.232046597530005\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, natural electrical conductor) -> natural electrical conductor (15451ms)\nWhat is sodium chloride?\tSodium Chloride Oral Solution\t-13.234647625376597\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Sodium Chloride Oral Solution, Instance Of, solution of sodium chloride) -> Sodium Chloride Oral Solution (15451ms)\nWhat is sodium chloride?\tSodium Chloride Irrigation Solution\t-13.234647625376597\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Sodium Chloride Irrigation Solution, Instance Of, solution of sodium chloride) -> Sodium Chloride Irrigation Solution (15451ms)\nWhat is sodium chloride?\tPre-mix\t-13.234647625376597\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Pre-mix, Instance Of, mixture of sodium chloride) -> Pre-mix (15488ms)\nWhat is sodium chloride?\tcommon household substance\t-13.234882988004818\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, common household substance) -> common household substance (15488ms)\nWhat is sodium chloride?\twater-soluble organic or inorganic salt\t-13.235197654473676\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, water-soluble organic or inorganic salt) -> water-soluble organic or inorganic salt (15488ms)\nWhat is sodium chloride?\tordinary table salt\t-13.23616580976245\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (ordinary table salt, is, sodium chloride) -> ordinary table salt (12003ms)\nWhat is sodium chloride?\tprocessed form of salt\t-13.24116735637714\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, processed form of salt) -> processed form of salt (15488ms)\nWhat is sodium chloride?\tmonovalent, inorganic salt\t-13.24116735637714\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, monovalent, inorganic salt) -> monovalent, inorganic salt (15488ms)\nWhat is sodium chloride?\tnon-oxidizing metal ion\t-13.24116735637714\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, non-oxidizing metal ion) -> non-oxidizing metal ion (15488ms)\nWhat is sodium chloride?\tcupric chloride\t-13.249909547272988\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (cupric chloride, Instance Of, sodium chloride) -> cupric chloride (15488ms)\nWhat is sodium chloride?\tlithium chloride\t-13.249909547272988\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (lithium chloride, Instance Of, sodium chloride) -> lithium chloride (15521ms)\nWhat is sodium chloride?\tferric chloride\t-13.249909547272988\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (ferric chloride, Instance Of, sodium chloride) -> ferric chloride (15488ms)\nWhat is sodium chloride?\tammonium chloride\t-13.249909547272988\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (ammonium chloride, Instance Of, sodium chloride) -> ammonium chloride (15521ms)\nWhat is sodium chloride?\tGOOD SOLUBILITY\t-13.253770868547212\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (* SODIUM CHLORIDE, HAS, GOOD SOLUBILITY) -> GOOD SOLUBILITY (12003ms)\nWhat is sodium chloride?\tone atom\t-13.261887990018584\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has just, one atom) -> one atom (12003ms)\nWhat is sodium chloride?\thydrochloric acid\t-13.264574833136024\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (hydrochloric acid, Instance Of, sodium chloride) -> hydrochloric acid (15521ms)\nWhat is sodium chloride?\thalogen salt\t-13.265117570387268\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, halogen salt) -> halogen salt (15521ms)\nWhat is sodium chloride?\tWater in the reservoir\t-13.267744490499814\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Water in the reservoir, Instance Of, sodium chloride type) -> Water in the reservoir (15521ms)\nWhat is sodium chloride?\tminor component of the PM emission\t-13.267744490499814\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, minor component of the PM emission) -> minor component of the PM emission (15521ms)\nWhat is sodium chloride?\tmolecule composed of one sodium ion and one chloride ion\t-13.267744490499814\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, molecule composed of one sodium ion and one chloride ion) -> molecule composed of one sodium ion and one chloride ion (15521ms)\nWhat is sodium chloride?\tcalcium magnesium acetate\t-13.271030828197905\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (calcium magnesium acetate, Instance Of, sodium chloride alternative) -> calcium magnesium acetate (15676ms)\nWhat is sodium chloride?\tglutamic acid sodium metal salt\t-13.28015158704504\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, glutamic acid sodium metal salt) -> glutamic acid sodium metal salt (15676ms)\nWhat is sodium chloride?\tcolorless crystalline ionic substance\t-13.28015158704504\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, colorless crystalline ionic substance) -> colorless crystalline ionic substance (15676ms)\nWhat is sodium chloride?\twhite, crystalline chemical compound\t-13.28015158704504\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, white, crystalline chemical compound) -> white, crystalline chemical compound (15677ms)\nWhat is sodium chloride?\tprincipal constituent of the water\t-13.28015158704504\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, principal constituent of the water) -> principal constituent of the water (15676ms)\nWhat is sodium chloride?\tCommon salt\t-13.280490703847226\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Common salt, is, sodium chloride) -> Common salt (12003ms)\nWhat is sodium chloride?\tionic substance\t-13.282933653464866\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, ionic substance) -> ionic substance (15676ms)\nWhat is sodium chloride?\tKC1\t-13.285298091599875\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (KC1, Instance Of, sodium chloride) -> KC1 (15716ms)\nWhat is sodium chloride?\tresultant waste solution from the process\t-13.295588664580666\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (resultant waste solution from the process, Instance Of, solution of sodium chloride) -> resultant waste solution from the process (15716ms)\nWhat is sodium chloride?\tessential constituent of the body fluid\t-13.312638445934956\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, essential constituent of the body fluid) -> essential constituent of the body fluid (15716ms)\nWhat is sodium chloride?\twater soluble, substantially neutral salt\t-13.312638445934956\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, water soluble, substantially neutral salt) -> water soluble, substantially neutral salt (15716ms)\nWhat is sodium chloride?\tGreat Salt Lake of USA\t-13.312638445934956\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Great Salt Lake of USA, Instance Of, sodium chloride type lake) -> Great Salt Lake of USA (15716ms)\nWhat is sodium chloride?\texcellent water soluble crystalline Sodium source\t-13.312638445934956\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, excellent water soluble crystalline Sodium source) -> excellent water soluble crystalline Sodium source (15716ms)\nWhat is sodium chloride?\tReference toxicants\t-13.324773367549241\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, Reference toxicants) -> Reference toxicants (15716ms)\nWhat is sodium chloride?\tsolid salt\t-13.325238549187844\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, solid salt) -> solid salt (15751ms)\nWhat is sodium chloride?\tTable Salt\t-13.331015373136207\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Table Salt, is, Sodium Chloride) -> Table Salt (12003ms)\nWhat is sodium chloride?\tOrdinary salt\t-13.335767765765308\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Ordinary salt, is, sodium chloride) -> Ordinary salt (12023ms)\nWhat is sodium chloride?\tample other minerals\t-13.338650845535842\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be in, sodium chloride) -> (ample other minerals, are insufficient in, sodium chloride) -> ample other minerals (15751ms)\nWhat is sodium chloride?\tRusk Deepshine Smooth Keratin Care Shampoo\t-13.339215580057628\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Rusk Deepshine Smooth Keratin Care Shampoo, Instance Of, gentle, Sodium Chloride free) -> Rusk Deepshine Smooth Keratin Care Shampoo (15751ms)\nWhat is sodium chloride?\tWater in the Pierre aquifer\t-13.340127326534116\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Water in the Pierre aquifer, Instance Of, sodium chloride type) -> Water in the Pierre aquifer (15751ms)\nWhat is sodium chloride?\tWater from the upper aquifer\t-13.340127326534116\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Water from the upper aquifer, Instance Of, sodium chloride type) -> Water from the upper aquifer (15751ms)\nWhat is sodium chloride?\tWater in the Boone aquifer\t-13.340127326534116\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Water in the Boone aquifer, Instance Of, sodium chloride type) -> Water in the Boone aquifer (15751ms)\nWhat is sodium chloride?\tseawater\t-13.340468392402284\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (seawater, is, sodium chloride) -> seawater (12023ms)\nWhat is sodium chloride?\tchemical compound\t-13.349755592655004\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, chemical compound) -> chemical compound (15751ms)\nWhat is sodium chloride?\tmineral ingredient\t-13.35720771763603\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, mineral ingredient) -> mineral ingredient (15751ms)\nWhat is sodium chloride?\ta high melting point\t-13.357815333962922\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, has, a high melting point) -> a high melting point (12023ms)\nWhat is sodium chloride?\tsimple salt\t-13.357855192737532\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, simple salt) -> simple salt (15785ms)\nWhat is sodium chloride?\teffectiveeluant for DEAE cellulose resins\t-13.363689224190537\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (effectiveeluant for DEAE cellulose resins, Instance Of, 10% sodium chloride solution) -> effectiveeluant for DEAE cellulose resins (15785ms)\nWhat is sodium chloride?\tconventional material\t-13.373769197830075\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, conventional material) -> conventional material (15785ms)\nWhat is sodium chloride?\tionic salt\t-13.37622926126732\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, ionic salt) -> ionic salt (15785ms)\nWhat is sodium chloride?\teffective eluant for DEAE cellulose resins\t-13.38410953549277\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (effective eluant for DEAE cellulose resins, Instance Of, 10% sodium chloride solution) -> effective eluant for DEAE cellulose resins (15785ms)\nWhat is sodium chloride?\ta cubic crystal structure\t-13.387340391528198\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, therefore has, a cubic crystal structure) -> a cubic crystal structure (12023ms)\nWhat is sodium chloride?\tsuitable salt\t-13.389638147319049\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, suitable salt) -> suitable salt (15785ms)\nWhat is sodium chloride?\t1 gram\t-13.392873625929358\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has, 1 gram) -> 1 gram (12023ms)\nWhat is sodium chloride?\twhy sweat tastes salty\t-13.393771977786429\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, why sweat tastes salty) -> why sweat tastes salty (12023ms)\nWhat is sodium chloride?\tosmotic agent\t-13.397237823413779\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, osmotic agent) -> osmotic agent (15821ms)\nWhat is sodium chloride?\tmineral source\t-13.398955278114359\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, mineral source) -> mineral source (15821ms)\nWhat is sodium chloride?\tplacebo\t-13.402305472308768\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (placebo, was, sodium chloride) -> placebo (12023ms)\nWhat is sodium chloride?\tcooking\t-13.402370040436026\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (cooking, is, sodium chloride) -> cooking (12023ms)\nWhat is sodium chloride?\tions\t-13.402370040436026\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, are, ions) -> ions (12109ms)\nWhat is sodium chloride?\thigh heat\t-13.405554226807881\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (98 % sodium chloride, has been processed using, high heat) -> high heat (12109ms)\nWhat is sodium chloride?\tThe regenerant\t-13.411639128737972\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The regenerant, is, sodium chloride) -> The regenerant (12109ms)\nWhat is sodium chloride?\tchlorine\t-13.41563299455936\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (chlorine, is, sodium chloride) -> chlorine (12109ms)\nWhat is sodium chloride?\tweight\t-13.41563299455936\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (weight, is, sodium chloride) -> weight (12109ms)\nWhat is sodium chloride?\tcompound form\t-13.416917196033122\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, compound form) -> compound form (15820ms)\nWhat is sodium chloride?\timportant for animal nutrition\t-13.421226184255001\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, important for animal nutrition) -> important for animal nutrition (12109ms)\nWhat is sodium chloride?\tsuitable electrolyte\t-13.423696735870633\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, suitable electrolyte) -> suitable electrolyte (15821ms)\nWhat is sodium chloride?\tChlorides Saline hot springs\t-13.447685932561969\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be in, sodium chloride) -> (Chlorides Saline hot springs, are rich in, sodium chloride) -> Chlorides Saline hot springs (15821ms)\nWhat is sodium chloride?\tthe calcium chloride\t-13.458139064135713\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the calcium chloride, was, sodium chloride) -> the calcium chloride (12109ms)\nWhat is sodium chloride?\tnatural salt crystal\t-13.458332426142364\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is the result of, natural salt crystal) -> natural salt crystal (12109ms)\nWhat is sodium chloride?\tideal target pH\t-13.462245036200356\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (0.9 % sodium chloride, has a much lower than, ideal target pH) -> ideal target pH (12172ms)\nWhat is sodium chloride?\t9780119391909\t-13.46770500663026\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the expansion of sodium chloride ? -> $x: (sodium chloride, expansion, $x) -> $x: ($x, edition, sodium chloride) -> (9780119391909, Book Editions, The preparation of a potassium chloride fertiliser reference material and certification of the massfractions of total potassium, water soluble potassium, chloride, sodium, calcium and magnesium, BCR No.113) -> 9780119391909 (15820ms)\nWhat is sodium chloride?\tthree frequencies\t-13.49145573456175\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has, three frequencies) -> three frequencies (12171ms)\nWhat is sodium chloride?\tthe most common\t-13.498014328380453\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the most common, is, sodium chloride) -> the most common (12171ms)\nWhat is sodium chloride?\ta double effect\t-13.511724681525886\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, can have, a double effect) -> a double effect (12171ms)\nWhat is sodium chloride?\ta poison to the body\t-13.516520970332088\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a poison to the body) -> a poison to the body (12171ms)\nWhat is sodium chloride?\ta formula weight\t-13.549516845178452\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has, a formula weight) -> a formula weight (12171ms)\nWhat is sodium chloride?\ta chemical compound with the formula\t-13.551100750434278\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a chemical compound with the formula) -> a chemical compound with the formula (12171ms)\nWhat is sodium chloride?\ta crystal lattice\t-13.563172051094789\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, have, a crystal lattice) -> a crystal lattice (12248ms)\nWhat is sodium chloride?\tthe Kyropoulos growth method\t-13.563331466022472\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is produced by, the Kyropoulos growth method) -> the Kyropoulos growth method (12248ms)\nWhat is sodium chloride?\ta food preservative\t-13.568024887511777\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, has long been prized as, a food preservative) -> a food preservative (12248ms)\nWhat is sodium chloride?\tneutral charges\t-13.569563350742921\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (the sodium and chloride, longer have, neutral charges) -> neutral charges (12248ms)\nWhat is sodium chloride?\tthe iodized salt\t-13.57493954661946\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the iodized salt, is, sodium chloride) -> the iodized salt (12248ms)\nWhat is sodium chloride?\tan ionic compound with the formula\t-13.585976693488407\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, an ionic compound with the formula) -> an ionic compound with the formula (12248ms)\nWhat is sodium chloride?\tthe predominant one\t-13.599697082063933\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the predominant one, is, sodium chloride) -> the predominant one (12248ms)\nWhat is sodium chloride?\ta unique taste\t-13.614358294787753\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, has, a unique taste) -> a unique taste (12248ms)\nWhat is sodium chloride?\tproduct\t-13.622499005558609\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (product, is composed solely of, sodium chloride) -> product (8636ms)\nWhat is sodium chloride?\tthe mix\t-13.626525106461061\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (the mix, is a healthy dose of, sodium chloride) -> the mix (8636ms)\nWhat is sodium chloride?\tconcrete corrosion\t-13.626807745077311\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has the lowest impact on, concrete corrosion) -> concrete corrosion (12320ms)\nWhat is sodium chloride?\ta fancy way of saying salt\t-13.654672036523042\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is simply, a fancy way of saying salt) -> a fancy way of saying salt (12320ms)\nWhat is sodium chloride?\tthe culprit\t-13.660906697854081\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, the culprit) -> the culprit (12320ms)\nWhat is sodium chloride?\tthe selecting agent\t-13.661590920675117\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, the selecting agent) -> the selecting agent (12320ms)\nWhat is sodium chloride?\ta paralyzing effect\t-13.664854752075975\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, has, a paralyzing effect) -> a paralyzing effect (12320ms)\nWhat is sodium chloride?\tThe solution\t-13.672742066025679\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The solution, is a mixture of, sodium chloride) -> The solution (8636ms)\nWhat is sodium chloride?\tthe most frequent\t-13.67548990398361\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, are among, the most frequent) -> the most frequent (12320ms)\nWhat is sodium chloride?\tbiological systems\t-13.683475198531017\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (2011] Sodium chloride, has a key role in, biological systems) -> biological systems (12320ms)\nWhat is sodium chloride?\tthe most common de-icer\t-13.685708047110651\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, the most common de-icer) -> the most common de-icer (12320ms)\nWhat is sodium chloride?\tThe bulk content\t-13.69430623913405\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The bulk content, is, sodium chloride) -> The bulk content (12559ms)\nWhat is sodium chloride?\tthe chief one\t-13.697530259395243\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is easily, the chief one) -> the chief one (12559ms)\nWhat is sodium chloride?\tolder cats\t-13.71088529317878\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium and chloride, can have deleterious effects in, older cats) -> older cats (12559ms)\nWhat is sodium chloride?\tthe diet\t-13.72938611834837\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the diet, is, sodium chloride) -> the diet (12559ms)\nWhat is sodium chloride?\tmedicinal purposes\t-13.732557279742423\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is used for, medicinal purposes) -> medicinal purposes (12559ms)\nWhat is sodium chloride?\tthe rest\t-13.736584878636116\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the rest, is, sodium chloride) -> the rest (12559ms)\nWhat is sodium chloride?\tthe inorganic salt\t-13.74824234743307\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the inorganic salt, is, sodium chloride) -> the inorganic salt (12559ms)\nWhat is sodium chloride?\t190 pm\t-13.75674087834706\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium and chloride ions, have diameters of, 190 pm) -> 190 pm (12559ms)\nWhat is sodium chloride?\tThe windows\t-13.785099782756458\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The windows, are usually made of, sodium chloride) -> The windows (8657ms)\nWhat is sodium chloride?\tThe salt effect\t-13.822657960518963\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The salt effect, is the result of, sodium chloride) -> The salt effect (8657ms)\nWhat is sodium chloride?\tthe ocean\t-13.875867121600066\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (the ocean, is full of, Sodium Chloride) -> the ocean (8657ms)\nWhat is sodium chloride?\tThe salts\t-13.909473783937585\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The salts, are compounds of, chloride , magnesium and sodium) -> The salts (8657ms)\nWhat is sodium chloride?\tthe resulting solution\t-13.935669471422448\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (the resulting solution, is a blend of, sodium chloride and water) -> the resulting solution (8657ms)\nWhat is sodium chloride?\twater\t-13.994767271960027\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (water, is also a source of, sodium and chloride ions) -> water (8679ms)\nWhat is sodium chloride?\tthe agency\t-14.07120290697024\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, really be, sodium chloride) -> (the agency, really means is, sodium chloride) -> the agency (8679ms)\nWhat is sodium chloride?\tThe waste liquid\t-14.249320656392559\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, be will, sodium chloride) -> (The waste liquid, will be, sodium and potassium chlorides) -> The waste liquid (8679ms)\nWhat is sodium chloride?\tthe salt\t-14.252595459977227\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (the salt, is a naturally occurring complex of, sodium chloride) -> the salt (8679ms)\nWhat is sodium chloride?\tThe derivatized extracts\t-14.291762183370437\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, then be, sodium chloride) -> (The derivatized extracts, were then shaken with, sodium chloride) -> The derivatized extracts (8715ms)\nWhat is sodium chloride?\tthe tannin\t-14.369435781231154\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, then be, sodium chloride) -> (the tannin, is then backwashed with, sodium chloride) -> the tannin (8714ms)\nWhat is sodium chloride?\tsummers\t-14.408393998702074\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (summers, there is immense loss of, sodium chloride) -> summers (8715ms)\nWhat is sodium chloride?\tsalt\t-14.551110495444604\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (salt, is actually made up of, sodium and chloride) -> salt (8714ms)\nWhat is sodium chloride?\tThe salt\t-15.02202868346188\tWhat is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The salt, is made of, sodium and chloride) -> The salt (8735ms)\nWhat is sodium chloride?\thazards\t-15.772187369852624\tWhat is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: (sodium chloride, pose, $x) -> (Even sodium chloride, can pose, hazards) -> hazards (8735ms)\nWhat is sodium chloride?\tthe compound\t-16.640982901097875\tWhat is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (the compound, known as, sodium chloride) -> the compound (8735ms)\nWhat continent is Bolivia on?\tHugo Banzer\t-8.635910730562411\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Hugo Banzer, was dictator of, Bolivia) -> Hugo Banzer (12139ms)\nWhat continent is Bolivia on?\tSouth America\t-9.018682408718947\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate ? -> $x: ($x, instance of, continent) (bolivium, locate, $x) -> (South America, Instance Of, fascinating continent) (Bolivia, is located in, South America) -> South America (10717ms)\nWhat continent is Bolivia on?\tLa Paz\t-9.211289575070301\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (La Paz, is the capital of, Bolivia) -> La Paz (12139ms)\nWhat continent is Bolivia on?\t? Bechtel\t-9.262580880886293\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (? Bechtel, were kicked out of, Bolivia) -> ? Bechtel (12139ms)\nWhat continent is Bolivia on?\tSPanish\t-9.276659700935772\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (SPanish, is the language of the country, bolivia) -> SPanish (12139ms)\nWhat continent is Bolivia on?\tJose Pando\t-9.421451645540193\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Jose Pando, was President of, Bolivia) -> Jose Pando (12182ms)\nWhat continent is Bolivia on?\tRene Barrientos\t-9.559946928619578\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Rene Barrientos, is elected president of, Bolivia) -> Rene Barrientos (12182ms)\nWhat continent is Bolivia on?\tCochabamba\t-9.575425184483889\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Cochabamba, is emblematic of, Bolivia) -> Cochabamba (12182ms)\nWhat continent is Bolivia on?\tPando Department Pando\t-9.580115538199385\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Pando Department Pando, is a department of, Bolivia) -> Pando Department Pando (12181ms)\nWhat continent is Bolivia on?\tdrug prohibition\t-9.583497680574528\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (drug prohibition, are the President of, Bolivia) -> drug prohibition (12181ms)\nWhat continent is Bolivia on?\tSOUTH AMERICA\t-9.619964481508383\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate ? -> $x: ($x, instance of, continent) (bolivium, locate, $x) -> (SOUTH AMERICA, Instance Of, remarkable continent) (Bolivia, is located in, South America) -> SOUTH AMERICA (10904ms)\nWhat continent is Bolivia on?\tEvo Morales\t-9.6433874423412\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Evo Morales, is currently the president of, Bolivia) -> Evo Morales (12182ms)\nWhat continent is Bolivia on?\tMendoza-Nava\t-9.69032006393411\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Mendoza-Nava, was named director of, Bolivia) -> Mendoza-Nava (12300ms)\nWhat continent is Bolivia on?\tThe Apolo area\t-9.725583773552868\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Apolo area, is a fantastic part of, Bolivia) -> The Apolo area (12300ms)\nWhat continent is Bolivia on?\tthe MNR\t-9.73492216280489\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the MNR, was president of, Bolivia) -> the MNR (12300ms)\nWhat continent is Bolivia on?\tSubmit Answer\t-9.737099167718885\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Submit Answer, is the population of, Bolivia) -> Submit Answer (12300ms)\nWhat continent is Bolivia on?\tTiwanaku\t-9.74494292437029\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Tiwanaku, was the center of, Bolivia) -> Tiwanaku (12367ms)\nWhat continent is Bolivia on?\tan Indian\t-9.76056388465046\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (an Indian, is president of, Bolivia) -> an Indian (12367ms)\nWhat continent is Bolivia on?\tIquique\t-9.801531591872601\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Iquique, was a part of, Bolivia) -> Iquique (12367ms)\nWhat continent is Bolivia on?\tthe Chapare coca growers union\t-9.810466722104039\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the Chapare coca growers union, is the president of, Bolivia) -> the Chapare coca growers union (12367ms)\nWhat continent is Bolivia on?\tThe Tunquini area\t-9.821374979466421\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Tunquini area, is one of, Bolivia) -> The Tunquini area (12367ms)\nWhat continent is Bolivia on?\tBechtel\t-9.832845255760756\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Bechtel, was thrown out of, Bolivia) -> Bechtel (12367ms)\nWhat continent is Bolivia on?\tJL Tejada Sorzano\t-9.845407385205494\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (JL Tejada Sorzano, was the President of, Bolivia) -> JL Tejada Sorzano (12403ms)\nWhat continent is Bolivia on?\tsimple , factual answers\t-9.864402777700764\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (simple , factual answers, is the capital of, Bolivia) -> simple , factual answers (12402ms)\nWhat continent is Bolivia on?\tthe 'movements\t-9.87442684866205\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the 'movements, was elected President of, Bolivia) -> the 'movements (12403ms)\nWhat continent is Bolivia on?\tprominence leading protests\t-9.908398608096583\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (prominence leading protests, was elected president of, Bolivia) -> prominence leading protests (12403ms)\nWhat continent is Bolivia on?\tthe Atacama Desert\t-9.916970297807511\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the Atacama Desert, was formally part of, Bolivia) -> the Atacama Desert (12403ms)\nWhat continent is Bolivia on?\tthe United States Department\t-9.920264778002474\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the United States Department, is a crucial component of, Bolivia) -> the United States Department (12445ms)\nWhat continent is Bolivia on?\tDaniel Salamanca Urey\t-9.930290333756664\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Daniel Salamanca Urey, is named President of, Bolivia) -> Daniel Salamanca Urey (12445ms)\nWhat continent is Bolivia on?\tLike-Minded Mega-Diverse Countries\t-9.931899702565456\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Like-Minded Mega-Diverse Countries, is composed of, Bolivia) -> Like-Minded Mega-Diverse Countries (12444ms)\nWhat continent is Bolivia on?\tAguas del Tunari\t-9.951511123596752\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Aguas del Tunari, was thrown out of, Bolivia) -> Aguas del Tunari (12444ms)\nWhat continent is Bolivia on?\tunion organizer Evo Morales\t-9.963432972180954\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (union organizer Evo Morales, was elected President of, Bolivia) -> union organizer Evo Morales (12444ms)\nWhat continent is Bolivia on?\tsuccessful? International Waters\t-9.964774077720085\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (successful? International Waters, was kicked out of, Bolivia) -> successful? International Waters (12444ms)\nWhat continent is Bolivia on?\tQuechua\t-9.968378051902572\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Quechua, is the language of the country, bolivia) -> Quechua (12583ms)\nWhat continent is Bolivia on?\tAymara\t-9.968378051902572\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Aymara, is the language of the country, bolivia) -> Aymara (12583ms)\nWhat continent is Bolivia on?\tProspective parents\t-9.986564997012806\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Prospective parents, are legal residents of, Bolivia) -> Prospective parents (12583ms)\nWhat continent is Bolivia on?\tan international legal status\t-9.992154672412948\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (an international legal status, is made up of, Bolivia) -> an international legal status (12583ms)\nWhat continent is Bolivia on?\tThe Andean Community\t-9.9977842685706\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Andean Community, is comprised of, Bolivia) -> The Andean Community (12583ms)\nWhat continent is Bolivia on?\tMain sights La Paz\t-10.006916152058134\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Main sights La Paz, is the administrative capital of, Bolivia) -> Main sights La Paz (12583ms)\nWhat continent is Bolivia on?\tQuiroga\t-10.059062437627203\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Quiroga, is architect of, Bolivia) -> Quiroga (12629ms)\nWhat continent is Bolivia on?\tcoastal territory\t-10.085736951971363\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (coastal territory, had previously been party of, Bolivia) -> coastal territory (12629ms)\nWhat continent is Bolivia on?\tBrazil\t-10.122201502544712\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate ? -> $x: ($x, instance of, continent) (bolivium, locate, $x) -> (Brazil, Instance Of, continent of a country) (Bolivia, is located southwest of, Brazil) -> Brazil (10904ms)\nWhat continent is Bolivia on?\tChuquisaca Department Chuquisaca\t-10.133672091608979\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Chuquisaca Department Chuquisaca, is a department of, Bolivia) -> Chuquisaca Department Chuquisaca (12629ms)\nWhat continent is Bolivia on?\tthird place\t-10.148481189366922\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (third place, is the owner of, Bolivia) -> third place (12629ms)\nWhat continent is Bolivia on?\tThe Chacaltaya\t-10.251800733338259\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Chacaltaya, is part of, Bolivia) -> The Chacaltaya (12629ms)\nWhat continent is Bolivia on?\tan indigenous person\t-10.269784155626985\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (an indigenous person, was elected president of, Bolivia) -> an indigenous person (12630ms)\nWhat continent is Bolivia on?\tPaz Estenssoro\t-10.405452559719848\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Paz Estenssoro, was elected president of, Bolivia) -> Paz Estenssoro (12742ms)\nWhat continent is Bolivia on?\tEva Morales\t-10.411641969932115\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Eva Morales, has been president of, Bolivia) -> Eva Morales (12741ms)\nWhat continent is Bolivia on?\tRamiro\t-10.417798544356135\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Ramiro, is a man of, Bolivia) -> Ramiro (12741ms)\nWhat continent is Bolivia on?\tThe Llama\t-10.426608728730384\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Llama, is the national Animal of, Bolivia) -> The Llama (12741ms)\nWhat continent is Bolivia on?\tSucre\t-10.429922129750373\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Sucre, is the capital of, Bolivia) -> Sucre (12741ms)\nWhat continent is Bolivia on?\tLozada\t-10.464661003339499\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Lozada, was elected president of, Bolivia) -> Lozada (12812ms)\nWhat continent is Bolivia on?\tCopacabana\t-10.481262198375385\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Copacabana, is the patron saint of, Bolivia) -> Copacabana (12812ms)\nWhat continent is Bolivia on?\tUturuncu\t-10.530091640257364\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Uturuncu, is located southwest of, Bolivia) -> Uturuncu (12813ms)\nWhat continent is Bolivia on?\tthe Altiplano\t-10.5893681715632\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the Altiplano, is one of, Bolivia) -> the Altiplano (12859ms)\nWhat continent is Bolivia on?\tSanta Cruz\t-10.649997933626684\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Santa Cruz, was one of, Bolivia) -> Santa Cruz (12859ms)\nWhat continent is Bolivia on?\t2005 Evo Morales\t-10.755829001015877\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (2005 Evo Morales, was elected president of, Bolivia) -> 2005 Evo Morales (12859ms)\nWhat continent is Bolivia on?\t1931 ? Daniel Salamanca Urey\t-10.928012678213522\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (1931 ? Daniel Salamanca Urey, is named President of, Bolivia) -> 1931 ? Daniel Salamanca Urey (12859ms)\nWhat continent is Bolivia on?\tSpanish\t-11.152352503370123\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Spanish, is the official language of, Bolivia) -> Spanish (12916ms)\nWhat continent is Bolivia on?\t10 million\t-11.162391614877233\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of, 10 million) -> 10 million (14033ms)\nWhat continent is Bolivia on?\tthe town\t-11.382202216499566\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the town, was a part of, Bolivia) -> the town (12916ms)\nWhat continent is Bolivia on?\tThe boliviano\t-11.39507446000093\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The boliviano, is the currency of, Bolivia) -> The boliviano (12916ms)\nWhat continent is Bolivia on?\tArgentina\t-11.483490441765426\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, had a bigger rural population than, Argentina) -> Argentina (14034ms)\nWhat continent is Bolivia on?\tPeru\t-11.526454487634195\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Peru, [is] an ally of, Bolivia) -> Peru (12980ms)\nWhat continent is Bolivia on?\ta part\t-11.700260955233604\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) (bolivium, take, $x) -> (a part, is an instance of, continent) (Bolivia, have taken, part) -> a part (19417ms)\nWhat continent is Bolivia on?\tthe lowlands\t-11.791994282492592\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the lowlands, as are most of, Bolivia) -> the lowlands (13216ms)\nWhat continent is Bolivia on?\tMorales\t-11.834144581339963\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Morales, is the first indigenous president of, Bolivia) -> Morales (13216ms)\nWhat continent is Bolivia on?\t9 million\t-11.848343202149652\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (behavior Bolivia, has a population of, 9 million) -> 9 million (14033ms)\nWhat continent is Bolivia on?\tCopacana\t-11.919519417983746\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Copacana, is the most important religious sanctuary of, Bolivia) -> Copacana (13217ms)\nWhat continent is Bolivia on?\ta high demand\t-11.92068380977794\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a large indigenous population with, a high demand) -> a high demand (14034ms)\nWhat continent is Bolivia on?\tsucre\t-11.933978764241655\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (sucre, is the capital city of the country, bolivia) -> sucre (13216ms)\nWhat continent is Bolivia on?\t9.2 million people\t-11.944720732021963\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia Bolivia Bolivia, has a population of, 9.2 million people) -> 9.2 million people (14033ms)\nWhat continent is Bolivia on?\t6.6 million\t-11.947387509049392\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (mid-1989 Bolivia, had an estimated population of, 6.6 million) -> 6.6 million (14033ms)\nWhat continent is Bolivia on?\tthe left populist Evo Morales\t-11.95940084715375\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the left populist Evo Morales, was elected president of, Bolivia) -> the left populist Evo Morales (13300ms)\nWhat continent is Bolivia on?\t9 million people\t-12.004781629703698\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of, 9 million people) -> 9 million people (14073ms)\nWhat continent is Bolivia on?\t8,274,325 people\t-12.05341251419155\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a total population of, 8,274,325 people) -> 8,274,325 people (14072ms)\nWhat continent is Bolivia on?\t9,827,522 inhabitants\t-12.095262829762312\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of, 9,827,522 inhabitants) -> 9,827,522 inhabitants (14073ms)\nWhat continent is Bolivia on?\t8 million\t-12.12951806145442\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of about, 8 million) -> 8 million (14073ms)\nWhat continent is Bolivia on?\t8.2 million\t-12.13836008357227\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of approximately, 8.2 million) -> 8.2 million (14073ms)\nWhat continent is Bolivia on?\t8 million people\t-12.145447845307478\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of about, 8 million people) -> 8 million people (14072ms)\nWhat continent is Bolivia on?\texample\t-12.322230547789434\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (example, is the capital of, Bolivia) -> example (13300ms)\nWhat continent is Bolivia on?\tGermany\t-12.515642429544553\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) (bolivium, take, $x) -> (Germany, Instance Of, part of the continent) (Bolivia?the Turks, are taking over, Germany) -> Germany (19417ms)\nWhat continent is Bolivia on?\tChile\t-12.645005479114362\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) ($x, have, bolivium) -> (Chile, Instance Of, continents major player) (Chile, had recognized, Bolivia) -> Chile (18599ms)\nWhat continent is Bolivia on?\tVenezuela\t-12.831771690795545\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) ($x, have, bolivium) -> (Venezuela, Instance Of, key player of the continent) (Venezuela, has, Bolivia) -> Venezuela (19515ms)\nWhat continent is Bolivia on?\tBolivia\t-12.843029467134295\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) ($x, do, bolivium) -> (Bolivia, Instance Of, progressive country of this continent) (Bolivia, does, Bolivia even) -> Bolivia (19710ms)\nWhat continent is Bolivia on?\tcountry\t-12.966641265322624\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) (bolivium, be, $x) -> (country, Instance Of, part of a continent) (bolivia, is a, country) -> country (9934ms)\nWhat continent is Bolivia on?\tbasin\t-13.675220588542299\tWhat continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate ? -> $x: ($x, instance of, continent) (bolivium, locate, $x) -> (basin, Instance Of, surface feature of the continent) (Two of Bolivia 's most important cities, are located in, basins) -> basin (11106ms)\nWhat sport do the Cleaveland Cavaliers play?\tThe Orlando Magic\t-7.977179053413658\tWhat sport do the Cleaveland Cavaliers play? -> what sport do [ the cleaveland cavalier ] play ? -> what be the sport of the cleaveland cavalier ? -> $x: ($x, be the sport of, the cleaveland cavalier) -> $x: ($x, have, the cleaveland cavalier) -> (The Orlando Magic, have defeated, the Cleaveland Cavaliers) -> The Orlando Magic (7259ms)\nWhat sport do the Cleaveland Cavaliers play?\tthe second game\t-10.935520335341465\tWhat sport do the Cleaveland Cavaliers play? -> what sport do [ the cleaveland cavalier ] play ? -> what be the sport of the cleaveland cavalier ? -> $x: ($x, be the sport of, the cleaveland cavalier) -> $x: (the cleaveland cavalier, make, $x) -> (The Cleaveland Cavaliers, made a comeback in, the second game) -> the second game (8281ms)\nWhat are brake pads made of?\thazardous materials\t-2.119265168173219\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, are made of very, hazardous materials) -> hazardous materials (6292ms)\nWhat are brake pads made of?\torganic materials\t-2.2378122424139693\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, are those made of, organic materials) -> organic materials (6292ms)\nWhat are brake pads made of?\ta metal backing plate\t-2.4494817464505854\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads, are made of, a metal backing plate) -> a metal backing plate (6292ms)\nWhat are brake pads made of?\tcrystal :eek\t-2.564993527267105\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (your brake pads, are made of, crystal :eek) -> crystal :eek (6292ms)\nWhat are brake pads made of?\ta compound\t-2.591361249471974\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brembo front brake pads, are made of, a compound) -> a compound (7306ms)\nWhat are brake pads made of?\texact fit\t-2.6057664989384284\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (These long lasting brake pads, are made to be of, exact fit) -> exact fit (7306ms)\nWhat are brake pads made of?\tfriction lining\t-2.6515979266339347\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Types Brake pads, are made of, friction lining) -> friction lining (7306ms)\nWhat are brake pads made of?\tnon-asbestos material\t-2.7677633097493874\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (The AutoExe Sports Brake Pad, is made of, non-asbestos material) -> non-asbestos material (7306ms)\nWhat are brake pads made of?\ta special pad compound\t-2.8313584606925595\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, made up of, a special pad compound) -> a special pad compound (7306ms)\nWhat are brake pads made of?\ta relatively soft resinous composite\t-2.872098622636157\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads, are made of, a relatively soft resinous composite) -> a relatively soft resinous composite (8494ms)\nWhat are brake pads made of?\tmetal shavings\t-2.8796564013181127\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (the brake pads, are made of, metal shavings) -> metal shavings (8494ms)\nWhat are brake pads made of?\ta sinter mixture\t-2.931100834040523\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (The braking pads, are made of, a sinter mixture) -> a sinter mixture (8494ms)\nWhat are brake pads made of?\ttough material\t-2.9437666658382895\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads and shoes, are made out of very, tough material) -> tough material (8494ms)\nWhat are brake pads made of?\tcompressed wood chips\t-2.965485552825949\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (counterfeit brake pads, made of, compressed wood chips) -> compressed wood chips (8494ms)\nWhat are brake pads made of?\thard , semi-metallic materials\t-3.058979363271801\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Most brake pads, now are made of, hard , semi-metallic materials) -> hard , semi-metallic materials (8494ms)\nWhat are brake pads made of?\tdifferent materials\t-3.0789189846663905\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Truck disc brake pads, are made of, different materials) -> different materials (8519ms)\nWhat are brake pads made of?\twood or cow dung\t-3.190350534059987\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads, made of, wood or cow dung) -> wood or cow dung (8518ms)\nWhat are brake pads made of?\ta hard material\t-3.331927772385904\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (The brake pads, appear to be made of, a hard material) -> a hard material (8518ms)\nWhat are brake pads made of?\thard plastic\t-3.33242080313334\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (Cheap brake pads, made of, hard plastic) -> hard plastic (8518ms)\nWhat are brake pads made of?\ta material\t-3.461955906552911\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (the brake pads, to be made of, a material) -> a material (8518ms)\nWhat are brake pads made of?\tRichard . 1\t-3.5236022000078684\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, make fun of, Richard . 1) -> Richard . 1 (8551ms)\nWhat are brake pads made of?\tcarbon-fibre\t-3.7973475676278508\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (The brake pads, are now made from, carbon-fibre) -> carbon-fibre (8794ms)\nWhat are brake pads made of?\ta variety\t-4.142715605380191\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Brake pads, are made from, a variety) -> a variety (8795ms)\nWhat are brake pads made of?\tasbestos\t-4.158236736486661\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, were made of, asbestos) -> asbestos (8627ms)\nWhat are brake pads made of?\tcopper\t-4.405570853422932\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (The brake pads, were made of, copper) -> copper (8683ms)\nWhat are brake pads made of?\ta combination\t-4.566951716626382\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (The best brake pads, are made from, a combination) -> a combination (8794ms)\nWhat are brake pads made of?\tsawdust\t-4.567200562266926\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, made of, sawdust) -> sawdust (8703ms)\nWhat are brake pads made of?\tceramic fibers\t-4.574051444006008\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Ceramic Brake Pads, Are made from, ceramic fibers) -> ceramic fibers (8795ms)\nWhat are brake pads made of?\tseveral components\t-4.653201854967466\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Brake pads, are made from, several components) -> several components (8795ms)\nWhat are brake pads made of?\tsmall pieces\t-4.703203997469254\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (motorcycle brake pads, are made from, small pieces) -> small pieces (8795ms)\nWhat are brake pads made of?\tsoft Ferro Carbon material\t-4.729181155520072\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Hawk brake pads, are made from, soft Ferro Carbon material) -> soft Ferro Carbon material (8816ms)\nWhat are brake pads made of?\tnow\t-5.6037985242578205\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (The brake pads, are made from carbon-fibre, now) -> now (8834ms)\nWhat are brake pads made of?\tcast aluminum\t-5.680795352891165\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, make from, $x) -> (exotic-looking brake pedal pads, made from, cast aluminum) -> cast aluminum (8972ms)\nWhat are brake pads made of?\tdifference\t-5.7135475813737\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> (some quality brake pads, would make a world of, difference) -> difference (8834ms)\nWhat are brake pads made of?\tcashew nut shells\t-5.845265461713868\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, make from, $x) -> (brake pads, made from, cashew nut shells) -> cashew nut shells (8972ms)\nWhat are brake pads made of?\tthe same material\t-6.236625884797544\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (The brake pads, are made from, the same material) -> the same material (8863ms)\nWhat are brake pads made of?\t22\t-6.3436026080382195\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: ($x, bottom, brake pads) -> (22, is a bottom view of, the brake pad) -> 22 (8972ms)\nWhat are brake pads made of?\tfibers\t-6.357749562287511\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Non-asbestos organic brake pads, are made from, fibers) -> fibers (9010ms)\nWhat are brake pads made of?\tsintered copper\t-6.35849543363171\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, compose of, $x) -> (These brake pads, are composed of, sintered copper) -> sintered copper (9010ms)\nWhat are brake pads made of?\t14 percent\t-6.899151708775062\tWhat are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (The brake pads, were made, 14 percent) -> 14 percent (11346ms)\nWhat are brake pads made of?\tsteel\t-7.540089543388488\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be construct from, $x) -> (Most brake pedal pads, are constructed from, steel) -> steel (9126ms)\nWhat are brake pads made of?\tcomposite ceramic fibers\t-7.593791164252705\tWhat are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (brake pads, are made with, composite ceramic fibers) -> composite ceramic fibers (11450ms)\nWhat are brake pads made of?\tany carbon brake track wheel\t-7.869883854588265\tWhat are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (cork brake pads, are made to give, any carbon brake track wheel) -> any carbon brake track wheel (11911ms)\nWhat are brake pads made of?\torganic ingredients\t-8.01551828523858\tWhat are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (Brake pads, were originally made with, organic ingredients) -> organic ingredients (12464ms)\nWhat are brake pads made of?\tsuperbike-level stopping performance\t-8.096731548611697\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (brake pads, make, superbike-level stopping performance) -> superbike-level stopping performance (12464ms)\nWhat are brake pads made of?\tOntario\t-8.239084094372682\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (imported asbestos brake pads, would make, Ontario) -> Ontario (13412ms)\nWhat are brake pads made of?\tracing materials\t-8.258213999555867\tWhat are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (The yellow stuff brake pad, is made with, racing materials) -> racing materials (13413ms)\nWhat are brake pads made of?\tBrake dust\t-8.296622021658841\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be make of brake pad ? -> $x: ($x, be make of, brake pad) -> (Brake dust, is made of, brake pad dust) -> Brake dust (14093ms)\nWhat are brake pads made of?\tcompound\t-8.302015995871457\tWhat are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, compose of, $x) -> (Ceramic brake pads, are composed of, compound) -> compound (9126ms)\nWhat are brake pads made of?\tthe USA NOTES\t-8.553802516885717\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (Brake pads, included Made in, the USA NOTES) -> the USA NOTES (14230ms)\nWhat are brake pads made of?\tbrembo caliper\t-8.636110171205956\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (7000C brake pads, made for, brembo caliper) -> brembo caliper (14230ms)\nWhat are brake pads made of?\ta slight noise\t-8.649086444228374\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (brake pad, makes, a slight noise) -> a slight noise (14230ms)\nWhat are brake pads made of?\tdust\t-8.901148857663031\tWhat are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> ('s brake pad, was making, dust) -> dust (14446ms)\nWhat are brake pads made of?\ta great replacement\t-9.055686280378263\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (This front brake pad & rotor kit, makes, a great replacement) -> a great replacement (14512ms)\nWhat are brake pads made of?\ta 1997 Ford Mustang\t-9.4048540300188\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (the brake pads, made for, a 1997 Ford Mustang) -> a 1997 Ford Mustang (14560ms)\nWhat are brake pads made of?\tquick and easy\t-9.411380719187218\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (Both skates brake pads, make for, quick and easy) -> quick and easy (14560ms)\nWhat are brake pads made of?\tbrake pads\t-9.564166190288148\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (Brake Pads Asahi, makes, brake pads) -> brake pads (14706ms)\nWhat are brake pads made of?\tcontact with the rotor\t-9.739772863258134\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (the brake pad, makes, contact with the rotor) -> contact with the rotor (14751ms)\nWhat are brake pads made of?\tAsbestos\t-9.913571937315842\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what way be brake pad make ? -> $x: ($x, instance of, way) (brake pad, make, $x) -> (Asbestos, Instance Of, natural way occurring material) (brake pads, were made of, asbestos) -> Asbestos (11097ms)\nWhat are brake pads made of?\tThe brake\t-9.937437867504084\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be make of brake pad ? -> $x: ($x, be make of, brake pad) -> (The brake, is made of, brake pads) -> The brake (14847ms)\nWhat are brake pads made of?\tBalance\t-10.083849581158047\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what way be brake pad make ? -> $x: ($x, instance of, way) (brake pad, make, $x) -> (Balance, Instance Of, mid-way point) (brake pad and ground, makes, balance) -> Balance (11097ms)\nWhat are brake pads made of?\tbalance\t-10.654861413443989\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (brake pad and ground, makes, balance) -> balance (14959ms)\nWhat are brake pads made of?\thazardous material\t-10.835572409256253\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make of ? -> $x: ($x, instance of, material) (brake pad, make of, $x) -> (hazardous material, Instance Of, material) (brake pads, are made of very, hazardous materials) -> hazardous material (14959ms)\nWhat are brake pads made of?\tdifferent material\t-10.943391582148612\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (different material, Instance Of, idea) (Truck disc brake pads, are made of, different materials) -> different material (15006ms)\nWhat are brake pads made of?\tceramic fiber\t-11.009790571569322\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make from ? -> $x: ($x, instance of, material) (brake pad, make from, $x) -> (ceramic fiber, Instance Of, material) (Ceramic Brake Pads, Are made from, ceramic fibers) -> ceramic fiber (15006ms)\nWhat are brake pads made of?\tCopper\t-11.029141981503075\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make of ? -> $x: ($x, instance of, material) (brake pad, make of, $x) -> (Copper, Instance Of, material) (The brake pads, were made of, copper) -> Copper (15060ms)\nWhat are brake pads made of?\tCopper 10\t-11.060354853471146\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (Copper 10, Instance Of, idea) (The brake pads, were made of, copper) -> Copper 10 (15060ms)\nWhat are brake pads made of?\tCarbon Fibre\t-11.091335351712432\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make from ? -> $x: ($x, instance of, material) (brake pad, make from, $x) -> (Carbon Fibre, Instance Of, material) (The brake pads, are now made from, carbon-fibre) -> Carbon Fibre (15216ms)\nWhat are brake pads made of?\tnon-asbestos sheet material\t-11.104069355380275\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make of ? -> $x: ($x, instance of, material) (brake pad, make of, $x) -> (non-asbestos sheet material, Instance Of, high grade raw material) (The AutoExe Sports Brake Pad, is made of, non-asbestos material) -> non-asbestos sheet material (15216ms)\nWhat are brake pads made of?\tdie cast aluminum\t-11.139150100308457\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what metal be brake pad make from ? -> $x: ($x, instance of, metal) (brake pad, make from, $x) -> (die cast aluminum, Instance Of, metal) (exotic-looking brake pedal pads, made from, cast aluminum) -> die cast aluminum (15289ms)\nWhat are brake pads made of?\tSawdust\t-11.212806978593012\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (Sawdust, Instance Of, idea) (brake pads, made of, sawdust) -> Sawdust (15288ms)\nWhat are brake pads made of?\tFiber\t-11.282813291745894\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (Fiber, Instance Of, good idea) (Non-asbestos organic brake pads, are made from, fibers) -> Fiber (15361ms)\nWhat are brake pads made of?\torganic material\t-11.307274527657654\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what element be brake pad make of ? -> $x: ($x, instance of, element) (brake pad, make of, $x) -> (organic material, Instance Of, element) (brake pads, are those made of, organic materials) -> organic material (15361ms)\nWhat are brake pads made of?\tCeramic fiber\t-11.413772968877076\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make from ? -> $x: ($x, instance of, material) (brake pad, make from, $x) -> (Ceramic fiber, Instance Of, refractory material) (Ceramic Brake Pads, Are made from, ceramic fibers) -> Ceramic fiber (15405ms)\nWhat are brake pads made of?\tContact\t-11.436608530900347\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what way be brake pad make ? -> $x: ($x, instance of, way) (brake pad, make, $x) -> (Contact, Instance Of, two-way street) (the brake pads, make, contact) -> Contact (15450ms)\nWhat are brake pads made of?\tfiber\t-11.939965837538587\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what way be brake pad make ? -> $x: ($x, instance of, way) (brake pad, make, $x) -> (fiber, Instance Of, two-way technology) (Non-asbestos organic brake pads, are made from, fibers) -> fiber (15749ms)\nWhat are brake pads made of?\tcontact\t-11.99296283789632\tWhat are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (the brake pads, make, contact) -> contact (15749ms)\nWhat are brake pads made of?\tEye contact\t-12.13235483118082\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (Eye contact, Instance Of, idea) (the brake pads, make, contact) -> Eye contact (15749ms)\nWhat are brake pads made of?\tDifference\t-12.327344212561457\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what element be brake pad make of ? -> $x: ($x, instance of, element) (brake pad, make of, $x) -> (Difference, Instance Of, element) (some quality brake pads, would make a world of, difference) -> Difference (15808ms)\nWhat are brake pads made of?\tcoppered\t-13.507028194077972\tWhat are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make of ? -> $x: ($x, instance of, material) (brake pad, make of, $x) -> (coppered, Instance Of, material) (The brake pads, were made of, copper) -> coppered (18615ms)\nWhich British teams has Manchester United played?\tManchester City\t-3.0166688704638065\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Manchester City, Instance Of, british team) (Manchester United, play, Manchester City) -> Manchester City (795ms)\nWhich British teams has Manchester United played?\tLiverpool FC\t-3.3816369697957516\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Liverpool FC, Instance Of, famous british premier league team) (Manchester United, played, Liverpool) -> Liverpool FC (795ms)\nWhich British teams has Manchester United played?\tLiverpool\t-3.965243237043895\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Liverpool, Instance Of, british team) (Manchester United, played, Liverpool) -> Liverpool (795ms)\nWhich British teams has Manchester United played?\tArsenal\t-4.0966832122599595\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Arsenal, Instance Of, british team) (Manchester United, played, Arsenal) -> Arsenal (795ms)\nWhich British teams has Manchester United played?\tWest Ham\t-4.767539394252644\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (West Ham, Instance Of, british football team) (Manchester United, playing, West Ham) -> West Ham (1187ms)\nWhich British teams has Manchester United played?\tChelsea FC\t-5.0714274050227885\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Chelsea FC, Instance Of, famous british premier league team) (Manchester United, to play, Chelsea) -> Chelsea FC (1267ms)\nWhich British teams has Manchester United played?\tManchester United\t-5.46348064690218\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> $x: ($x, instance of, British teams) (Manchester United, for play, $x) -> (Manchester United, Instance Of, british team) (Manchester United Ryan Giggs, can play for, Manchester United) -> Manchester United (2779ms)\nWhich British teams has Manchester United played?\tChelsea\t-5.526265426755739\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Chelsea, Instance Of, british team) (Manchester United, playing, Chelsea) -> Chelsea (1366ms)\nWhich British teams has Manchester United played?\tfootball\t-5.626691368579184\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (football, Instance Of, british traditional team sport) (Manchester United, play, football) -> football (1545ms)\nWhich British teams has Manchester United played?\tEverton\t-5.672426444339753\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Everton, Instance Of, british team) (Manchester United, played, Everton) -> Everton (1545ms)\nWhich British teams has Manchester United played?\tSwansea\t-5.752196342829025\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Swansea, Instance Of, british team) (Manchester United, play, Swansea) -> Swansea (1676ms)\nWhich British teams has Manchester United played?\tManchester United FC\t-6.167647827426459\tWhich British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> $x: ($x, instance of, British teams) (Manchester United, for play, $x) -> (Manchester United FC, Instance Of, famous british premier league team) (Manchester United Ryan Giggs, can play for, Manchester United) -> Manchester United FC (2780ms)\nHow did Adolf Hitler die?\tage 56\t-7.402020592095105\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died, age 56) -> age 56 (8319ms)\nHow did Adolf Hitler die?\t93\t-7.813064293293401\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, dies aged, 93) -> 93 (8319ms)\nHow did Adolf Hitler die?\t37 years\t-8.00745437865814\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died, 37 years) -> 37 years (8319ms)\nHow did Adolf Hitler die?\t1960\t-8.532103934726027\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died in, 1960) -> 1960 (8319ms)\nHow did Adolf Hitler die?\ta hospital\t-8.911721155284425\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, dies at, a hospital) -> a hospital (8319ms)\nHow did Adolf Hitler die?\tMay 1st\t-9.368980014132404\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died on, May 1st) -> May 1st (8319ms)\nHow did Adolf Hitler die?\ta Berlin hospital\t-9.428280219760806\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died at, a Berlin hospital) -> a Berlin hospital (8376ms)\nHow did Adolf Hitler die?\tApril 30 , 1945\t-9.450031534052757\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died on, April 30 , 1945) -> April 30 , 1945 (8375ms)\nHow did Adolf Hitler die?\tage 5/6\t-9.532620660747279\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what age do adolf hitler die ? -> $x: ($x, instance of, age) (adolf hitler, die, $x) -> (age 5/6, Instance Of, good age) (Adolf Hitler, died, age 56) -> age 5/6 (10085ms)\nHow did Adolf Hitler die?\taction\t-9.712749313658199\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (April 30 Adolf Hitler, died in, action) -> action (8376ms)\nHow did Adolf Hitler die?\tdefending Christianity\t-10.122684711095872\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died while, defending Christianity) -> defending Christianity (8376ms)\nHow did Adolf Hitler die?\tSuch action\t-10.222958900196158\tHow did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> (Such action, Instance Of, cause) (April 30 Adolf Hitler, died in, action) -> Such action (8240ms)\nHow did Adolf Hitler die?\t1960s\t-10.26995071950705\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> which year do adolf hitler die ? -> $x: ($x, instance of, year) (adolf hitler, die, $x) -> (1960s, Instance Of, full year date) (Adolf Hitler, died in, 1960) -> 1960s (18781ms)\nHow did Adolf Hitler die?\tMay 1st-2nd\t-10.39803934880479\tHow did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what make do adolf hitler die ? -> $x: ($x, instance of, make) (adolf hitler, die, $x) -> (May 1st-2nd, Instance Of, full two day of making Finders Keepers) (Adolf Hitler, died on, May 1st) -> May 1st-2nd (8240ms)\nHow did Adolf Hitler die?\tMay 1 st\t-10.533561029111066\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what date do adolf hitler die ? -> $x: ($x, instance of, date) (adolf hitler, die, $x) -> (May 1 st, Instance Of, date) (Adolf Hitler, died on, May 1st) -> May 1 st (9576ms)\nHow did Adolf Hitler die?\tApril 30th 1945\t-10.713781796532396\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died on, April 30th 1945) -> April 30th 1945 (8375ms)\nHow did Adolf Hitler die?\tthe age\t-10.767701830064878\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, has suddenly died at, the age) -> the age (8376ms)\nHow did Adolf Hitler die?\tAction\t-10.800822221216535\tHow did Adolf Hitler die? -> how do [ adolf hitler die ] ? -> what process do adolf hitler die ? -> $x: ($x, instance of, process) (adolf hitler, die, $x) -> (Action, Instance Of, process) (April 30 Adolf Hitler, died in, action) -> Action (8872ms)\nHow did Adolf Hitler die?\tBerlin\t-10.821846971830201\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died in, Berlin) -> Berlin (8872ms)\nHow did Adolf Hitler die?\tthe war\t-11.128018378569683\tHow did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died during, the war) -> the war (8872ms)\nHow did Adolf Hitler die?\tgunshot\t-12.54805550627081\tHow did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> $x: ($x, instance of, cause) (adolf hitler, committed suicide, $x) -> (gunshot, Instance Of, cause) (Adolf Hitler, committed suicide by, gunshot) -> gunshot (17417ms)\nHow did Adolf Hitler die?\tGermany\t-12.646750992923934\tHow did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> $x: ($x, instance of, cause) (adolf hitler, do thing, $x) -> (Germany, Instance Of, lost cause) (ADOLF HITLER, did the same thing in, GERMANY) -> Germany (14914ms)\nHow did Adolf Hitler die?\tcyanide\t-12.874312748729894\tHow did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> $x: ($x, instance of, cause) (adolf hitler, committed suicide, $x) -> (cyanide, Instance Of, cancer-causing agent) (Adolf Hitler, then committed suicide by taking, Cyanide) -> cyanide (17417ms)\nHow did Adolf Hitler die?\tVienna\t-13.445465206339868\tHow did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> $x: ($x, instance of, cause) (adolf hitler, be homeless, $x) -> (Vienna, Instance Of, lost cause) (age 21 Adolf Hitler, was homeless in, Vienna) -> Vienna (18081ms)\nHow did Adolf Hitler die?\tCyanide\t-13.480480007777487\tHow did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what make do adolf hitler die ? -> $x: ($x, instance of, make) (adolf hitler, die, $x) -> $x: ($x, instance of, make) (adolf hitler, committed suicide, $x) -> (Cyanide, Instance Of, man made product) (Adolf Hitler, then committed suicide by taking, Cyanide) -> Cyanide (13959ms)\nWhat movies did Meg Ryan star in?\tLIFE\t-10.288028553130037\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> (Meg Ryan, starred in the movie, LIFE) -> LIFE (4801ms)\nWhat movies did Meg Ryan star in?\tThe Hunger Games\t-10.415874368728176\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan make ? -> $x: ($x, instance of, movie) (meg ryan, make, $x) -> (The Hunger Games, Instance Of, anticipated movie) (Meg Ryan, is making his debut in, The Hunger Games) -> The Hunger Games (4757ms)\nWhat movies did Meg Ryan star in?\t10 years\t-11.599680183698718\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, were married for, 10 years) -> 10 years (14912ms)\nWhat movies did Meg Ryan star in?\tDoris Day\t-11.656275825655879\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Doris Day, is reborn as, Meg Ryan) -> Doris Day (14911ms)\nWhat movies did Meg Ryan star in?\tBilly Crystal\t-11.75777006535542\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Billy Crystal, is, the semi-slimy Harry and Meg Ryan) -> Billy Crystal (14912ms)\nWhat movies did Meg Ryan star in?\ta few movies\t-11.875514915376245\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have, a few movies) -> a few movies (14911ms)\nWhat movies did Meg Ryan star in?\tScarlett Johansson\t-11.953800639779535\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Scarlett Johansson, would be, the new Meg Ryan) -> Scarlett Johansson (14912ms)\nWhat movies did Meg Ryan star in?\t10 kills\t-11.988121955813156\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, had, 10 kills) -> 10 kills (14911ms)\nWhat movies did Meg Ryan star in?\tDennis Quaid\t-12.096156494936409\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Dennis Quaid, was previously married to, Meg Ryan) -> Dennis Quaid (14911ms)\nWhat movies did Meg Ryan star in?\tMonster Garage\t-12.199479923444992\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Monster Garage, is more compelling than, a Meg Ryan comedy) -> Monster Garage (14912ms)\nWhat movies did Meg Ryan star in?\ta fully-clothed orgasm\t-12.242592811619726\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, had, a fully-clothed orgasm) -> a fully-clothed orgasm (15115ms)\nWhat movies did Meg Ryan star in?\tfilm stars\t-12.251942071297645\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (film stars, is, Meg Ryan) -> film stars (15114ms)\nWhat movies did Meg Ryan star in?\tNoni Juice\t-12.299707850664424\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Noni Juice, are, Meg Ryan and Chauncey Billups) -> Noni Juice (15114ms)\nWhat movies did Meg Ryan star in?\tthankful Harlin\t-12.338336518529452\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (thankful Harlin, was n?t married to, Meg Ryan) -> thankful Harlin (15114ms)\nWhat movies did Meg Ryan star in?\tthe Hollywood stars\t-12.353375554049611\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, were among, the Hollywood stars) -> the Hollywood stars (15114ms)\nWhat movies did Meg Ryan star in?\tsuch a fund\t-12.356840277148425\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have amassed, such a fund) -> such a fund (15114ms)\nWhat movies did Meg Ryan star in?\tterrific....Hutton shines\t-12.3710485278351\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, terrific....Hutton shines) -> terrific....Hutton shines (15114ms)\nWhat movies did Meg Ryan star in?\tthe Edie Sedgewick\t-12.372930895939962\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is becoming, the Edie Sedgewick) -> the Edie Sedgewick (15114ms)\nWhat movies did Meg Ryan star in?\tDennis Quald\t-12.373283746901379\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is now back with, Dennis Quald) -> Dennis Quald (15165ms)\nWhat movies did Meg Ryan star in?\tholiday shopping\t-12.38293290187417\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was doing, holiday shopping) -> holiday shopping (15165ms)\nWhat movies did Meg Ryan star in?\tMaggie\t-12.396234658295194\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Maggie) -> Maggie (15165ms)\nWhat movies did Meg Ryan star in?\ttwo jilted lovers\t-12.41843279535226\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is about, two jilted lovers) -> two jilted lovers (15165ms)\nWhat movies did Meg Ryan star in?\todd walk-on parts\t-12.422491028221936\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have, odd walk-on parts) -> odd walk-on parts (15165ms)\nWhat movies did Meg Ryan star in?\tan orgasm\t-12.435120066345252\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has just faked, an orgasm) -> an orgasm (15165ms)\nWhat movies did Meg Ryan star in?\tO.o\t-12.442802564232103\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (O.o, is, Meg Ryan) -> O.o (15165ms)\nWhat movies did Meg Ryan star in?\tMeg Ryan\t-12.46967584134416\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (a Meg Ryan/Tom Hanks romantic comedy, has to end with, Meg Ryan) -> Meg Ryan (15165ms)\nWhat movies did Meg Ryan star in?\tgifted comic actors\t-12.495600711424975\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, are, gifted comic actors) -> gifted comic actors (15216ms)\nWhat movies did Meg Ryan star in?\ta small little bookstore\t-12.499778945596749\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has, a small little bookstore) -> a small little bookstore (15216ms)\nWhat movies did Meg Ryan star in?\tIan\t-12.51470312521278\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Ian) -> Ian (15216ms)\nWhat movies did Meg Ryan star in?\ta buyer\t-12.517012065853965\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is hoping for, a buyer) -> a buyer (15216ms)\nWhat movies did Meg Ryan star in?\ttwo strangers\t-12.521320847795483\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, are, two strangers) -> two strangers (15216ms)\nWhat movies did Meg Ryan star in?\tsuch a talented woman\t-12.531419516156136\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, such a talented woman) -> such a talented woman (15216ms)\nWhat movies did Meg Ryan star in?\ta vagina-free Valentine\t-12.560946117007333\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, wants to have, a vagina-free Valentine) -> a vagina-free Valentine (15216ms)\nWhat movies did Meg Ryan star in?\tKathleen Kelly\t-12.580485452512557\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Kathleen Kelly, is, pure Meg Ryan) -> Kathleen Kelly (15216ms)\nWhat movies did Meg Ryan star in?\ta Wiccan\t-12.585908563820905\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, a Wiccan) -> a Wiccan (15267ms)\nWhat movies did Meg Ryan star in?\ta capable and courageous officer\t-12.591073391687939\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, a capable and courageous officer) -> a capable and courageous officer (15267ms)\nWhat movies did Meg Ryan star in?\tolder adoptive parents\t-12.595515039603967\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (older adoptive parents, is, Meg Ryan) -> older adoptive parents (15267ms)\nWhat movies did Meg Ryan star in?\tThinkGeek iPad Keyboard Case\t-12.598873708204195\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (ThinkGeek iPad Keyboard Case, is, Meg Ryan) -> ThinkGeek iPad Keyboard Case (15267ms)\nWhat movies did Meg Ryan star in?\tA teenage girl\t-12.611709395064466\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (A teenage girl, is, Meg Ryan) -> A teenage girl (15267ms)\nWhat movies did Meg Ryan star in?\tAmerican romantic comedy\t-12.622018188713161\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was the queen of, American romantic comedy) -> American romantic comedy (15267ms)\nWhat movies did Meg Ryan star in?\ta style\t-12.62275305240712\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, certainly has, a style) -> a style (15267ms)\nWhat movies did Meg Ryan star in?\tan Appearance\t-12.624280697457259\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is Going to Make, an Appearance) -> an Appearance (15267ms)\nWhat movies did Meg Ryan star in?\ta market research executive\t-12.628936414757543\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, a market research executive) -> a market research executive (15318ms)\nWhat movies did Meg Ryan star in?\tan international film festival\t-12.632630679562427\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have snubbed, an international film festival) -> an international film festival (15318ms)\nWhat movies did Meg Ryan star in?\tan extremely easy exotic dancer\t-12.637810686996918\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, an extremely easy exotic dancer) -> an extremely easy exotic dancer (15318ms)\nWhat movies did Meg Ryan star in?\tSunset Beach\t-12.642806558386804\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (\" Meg Ryan, was at, Sunset Beach) -> Sunset Beach (15318ms)\nWhat movies did Meg Ryan star in?\tan Amway distributor\t-12.643475906292752\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, an Amway distributor) -> an Amway distributor (15318ms)\nWhat movies did Meg Ryan star in?\ta number\t-12.649706280619146\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has appeared in, a number) -> a number (15318ms)\nWhat movies did Meg Ryan star in?\ta bit\t-12.651684800035364\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, may be, a bit) -> a bit (15318ms)\nWhat movies did Meg Ryan star in?\tthree movies\t-12.65297862572962\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (actress Meg Ryan, have been co-stars in, three movies) -> three movies (13618ms)\nWhat movies did Meg Ryan star in?\tLexington St &\t-12.666842750824594\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Wagamama Russel crow & meg ryan, were in, Lexington St &) -> Lexington St & (13618ms)\nWhat movies did Meg Ryan star in?\tEcuador\t-12.671303720083717\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, was filmed in, Ecuador) -> Ecuador (13618ms)\nWhat movies did Meg Ryan star in?\tSeattle\t-12.69618647190487\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, was sleepless in, Seattle) -> Seattle (13618ms)\nWhat movies did Meg Ryan star in?\tamazing chemistry\t-12.701691483339987\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have, amazing chemistry) -> amazing chemistry (15318ms)\nWhat movies did Meg Ryan star in?\t6:03\t-12.701806638573093\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (6:03, AM de, meg ryan y) -> 6:03 (15368ms)\nWhat movies did Meg Ryan star in?\tex-lover Russell Crowe\t-12.73696604515149\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (08:00:41 Meg Ryan, has praised, ex-lover Russell Crowe) -> ex-lover Russell Crowe (15368ms)\nWhat movies did Meg Ryan star in?\tWarner Brothers sole savior\t-12.772176456315512\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Warner Brothers sole savior) -> Warner Brothers sole savior (15368ms)\nWhat movies did Meg Ryan star in?\tNew York traffic\t-12.774286057259784\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, was stuck in, New York traffic) -> New York traffic (13618ms)\nWhat movies did Meg Ryan star in?\tJoel really all about\t-12.775870721120395\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (- Meg Ryan, is, Joel really all about) -> Joel really all about (15368ms)\nWhat movies did Meg Ryan star in?\tShort Takes Kate & Leopold\t-12.78550921511319\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Short Takes Kate & Leopold, is, a Meg Ryan romantic comedy) -> Short Takes Kate & Leopold (15455ms)\nWhat movies did Meg Ryan star in?\tMedium Hair Styles\t-12.786350200576917\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is the Queen of, Medium Hair Styles) -> Medium Hair Styles (15455ms)\nWhat movies did Meg Ryan star in?\tJoe?s luggage\t-12.787207835943333\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, are floating on, Joe?s luggage) -> Joe?s luggage (15455ms)\nWhat movies did Meg Ryan star in?\tAnya\t-12.802722408605854\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was offered the role of, Anya) -> Anya (15455ms)\nWhat movies did Meg Ryan star in?\t2 children\t-12.812236873103688\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has, 2 children) -> 2 children (15455ms)\nWhat movies did Meg Ryan star in?\t19 ?\t-12.82808787100535\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (19 ?, are, Meg Ryan) -> 19 ? (15455ms)\nWhat movies did Meg Ryan star in?\tposter moms\t-12.834972173983996\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have become, poster moms) -> poster moms (15455ms)\nWhat movies did Meg Ryan star in?\tDiana\t-12.852526384918\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Diana, is, Meg Ryan) -> Diana (15545ms)\nWhat movies did Meg Ryan star in?\tMargaret Mary Emily Anne Hyra\t-12.8689728417178\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is really, Margaret Mary Emily Anne Hyra) -> Margaret Mary Emily Anne Hyra (15545ms)\nWhat movies did Meg Ryan star in?\tLife\t-12.871190251767509\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Life, are, Meg Ryan) -> Life (15545ms)\nWhat movies did Meg Ryan star in?\tromantic comedies\t-12.944580346160722\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is the queen of, romantic comedies) -> romantic comedies (15545ms)\nWhat movies did Meg Ryan star in?\tomg jack quaid\t-12.955859635003595\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (omg jack quaid, is the son of, meg ryan and dennis quaid lol) -> omg jack quaid (15545ms)\nWhat movies did Meg Ryan star in?\tbackwoods roads\t-12.973726563489155\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is biking through, backwoods roads) -> backwoods roads (15545ms)\nWhat movies did Meg Ryan star in?\tan email romance\t-12.988059472758605\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, are engaged in, an email romance) -> an email romance (13618ms)\nWhat movies did Meg Ryan star in?\tShopgirl\t-12.994425420154613\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Shopgirl, is, Meg Ryan) -> Shopgirl (15545ms)\nWhat movies did Meg Ryan star in?\tMail\t-12.998762937214792\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Mail, has been, my go-to Meg Ryan movie) -> Mail (15595ms)\nWhat movies did Meg Ryan star in?\tThe City\t-13.01848096433947\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie have meg ryan be in ? -> $x: ($x, instance of, movie) (meg ryan, be in, $x) -> (The City, Instance Of, movie) (Meg Ryan, is also in, city) -> The City (4758ms)\nWhat movies did Meg Ryan star in?\ta man\t-13.028844943606254\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is operating on, a man) -> a man (15594ms)\nWhat movies did Meg Ryan star in?\t19-years-old\t-13.045859159189751\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (19-years-old, is the son of, Meg Ryan) -> 19-years-old (15595ms)\nWhat movies did Meg Ryan star in?\tlast month\t-13.064436491682997\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (last month, has since been spotted with, actress Meg Ryan) -> last month (15595ms)\nWhat movies did Meg Ryan star in?\tSally\t-13.079372989535335\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Sally) -> Sally (15595ms)\nWhat movies did Meg Ryan star in?\tthe Broadway play\t-13.089424221496312\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was based on, the Broadway play) -> the Broadway play (15595ms)\nWhat movies did Meg Ryan star in?\tKate\t-13.127607575627803\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Kate) -> Kate (15595ms)\nWhat movies did Meg Ryan star in?\tbeaded jewelry\t-13.166639195136568\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have loaded up on, beaded jewelry) -> beaded jewelry (15644ms)\nWhat movies did Meg Ryan star in?\tthe 58 year old\t-13.28108556713566\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the 58 year old, was previously married to, Meg Ryan) -> the 58 year old (15652ms)\nWhat movies did Meg Ryan star in?\tQuaid\t-13.283755267540021\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Quaid, was previously wed to, Meg Ryan) -> Quaid (15652ms)\nWhat movies did Meg Ryan star in?\tChina\t-13.328612548738803\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has just adopted from, China) -> China (15652ms)\nWhat movies did Meg Ryan star in?\tCrowe\t-13.357791068891053\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, may be falling for, Crowe) -> Crowe (15652ms)\nWhat movies did Meg Ryan star in?\tof business\t-13.390844080073542\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was forced out, of business) -> of business (15652ms)\nWhat movies did Meg Ryan star in?\tBeyond\t-13.428983796055828\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Beyond, was handled by, Meg Ryan) -> Beyond (15652ms)\nWhat movies did Meg Ryan star in?\tRunyeon\t-13.429113253578848\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Runyeon, may be best known for playing, actress Meg Ryan) -> Runyeon (15700ms)\nWhat movies did Meg Ryan star in?\tone of my favorite actresses\t-13.461047242786687\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, one of my favorite actresses) -> one of my favorite actresses (15701ms)\nWhat movies did Meg Ryan star in?\ta beautiful and courageous woman\t-13.498840480059\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, a beautiful and courageous woman) -> a beautiful and courageous woman (15700ms)\nWhat movies did Meg Ryan star in?\tthe Worms\t-13.546965349147337\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, were singing along with, the Worms) -> the Worms (15700ms)\nWhat movies did Meg Ryan star in?\tThe Film\t-13.55826421707416\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> how many film have meg ryan be in ? -> $x: ($x, instance of, film) (meg ryan, be in, $x) -> (The Film, Instance Of, film) (Meg Ryan, is in, the film) -> The Film (13488ms)\nWhat movies did Meg Ryan star in?\tEvery Word\t-13.567389062083953\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (February 13 , 2005 Meg Ryan, has joined the cast of, Every Word) -> Every Word (15700ms)\nWhat movies did Meg Ryan star in?\tNovember 19 , 1961\t-13.664513265146333\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was born on, November 19 , 1961) -> November 19 , 1961 (15701ms)\nWhat movies did Meg Ryan star in?\thot\t-13.731223143211746\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, hot) -> hot (15913ms)\nWhat movies did Meg Ryan star in?\tThe $ 23 dish\t-13.809593191048753\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The $ 23 dish, may have been renamed, ?Meg Ryan?s Chicken?) -> The $ 23 dish (15913ms)\nWhat movies did Meg Ryan star in?\tin\t-13.812765220555274\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has appeared, in) -> in (15913ms)\nWhat movies did Meg Ryan star in?\tThe event\t-13.918911476689768\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The event, was also attended by, Meg Ryan) -> The event (15913ms)\nWhat movies did Meg Ryan star in?\tthe flock\t-14.095573297548254\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is unlikely to break up, the flock) -> the flock (15913ms)\nWhat movies did Meg Ryan star in?\tthe island\t-14.110642740784131\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was on, the island) -> the island (15913ms)\nWhat movies did Meg Ryan star in?\tbusiness\t-14.174528062758746\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was forced out of, business) -> business (16141ms)\nWhat movies did Meg Ryan star in?\tpretty cute\t-14.204087964606634\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, pretty cute) -> pretty cute (16141ms)\nWhat movies did Meg Ryan star in?\tthe day\t-14.281975935056229\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the day, Was, Meg Ryan) -> the day (16141ms)\nWhat movies did Meg Ryan star in?\t2000\t-14.308102598180527\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (2000, was Hanging Up with, Meg Ryan) -> 2000 (16141ms)\nWhat movies did Meg Ryan star in?\tthe new movie\t-14.368418766260467\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, is looking better than ever in, the new movie) -> the new movie (13618ms)\nWhat movies did Meg Ryan star in?\tthe event\t-14.374095597649733\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has also pulled out of, the event) -> the event (16141ms)\nWhat movies did Meg Ryan star in?\tthe ebodiment\t-14.432312823143869\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, the ebodiment) -> the ebodiment (16141ms)\nWhat movies did Meg Ryan star in?\tthe movie\t-14.455337571427107\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, had their fateful meeting in, the movie) -> the movie (16141ms)\nWhat movies did Meg Ryan star in?\tthe power\t-14.461491343296121\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has, the power) -> the power (16279ms)\nWhat movies did Meg Ryan star in?\tThe same\t-14.479473948072089\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The same, can be said about, Meg Ryan) -> The same (16279ms)\nWhat movies did Meg Ryan star in?\tthe defending champion\t-14.483732073614396\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, the defending champion) -> the defending champion (16279ms)\nWhat movies did Meg Ryan star in?\tThe bottom pic\t-14.489464511986334\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The bottom pic, is from, Meg Ryan) -> The bottom pic (16279ms)\nWhat movies did Meg Ryan star in?\tthe film jury\t-14.496831747752996\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is a member of, the film jury) -> the film jury (16279ms)\nWhat movies did Meg Ryan star in?\tthe greatest on-screen couple\t-14.537368729273584\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, were voted, the greatest on-screen couple) -> the greatest on-screen couple (16279ms)\nWhat movies did Meg Ryan star in?\thand\t-14.54649871079986\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was also on, hand) -> hand (16279ms)\nWhat movies did Meg Ryan star in?\tthe perfect Maggie\t-14.546510098626678\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was, the perfect Maggie) -> the perfect Maggie (16331ms)\nWhat movies did Meg Ryan star in?\tthe film\t-14.5484776735665\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, is in, the film) -> the film (13664ms)\nWhat movies did Meg Ryan star in?\tthe consensus\t-14.556100500366238\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was, the consensus) -> the consensus (16331ms)\nWhat movies did Meg Ryan star in?\tthe city\t-14.564925012084238\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan movies, are always shot in, the city) -> the city (13664ms)\nWhat movies did Meg Ryan star in?\tactor\t-14.569260443569199\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is an, actor) -> actor (16331ms)\nWhat movies did Meg Ryan star in?\tthe most explosive performance\t-14.603411879891294\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (\" Meg Ryan, is dynamite in, the most explosive performance) -> the most explosive performance (13664ms)\nWhat movies did Meg Ryan star in?\tthe birthplace\t-14.659253764409574\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is known as, the birthplace) -> the birthplace (16331ms)\nWhat movies did Meg Ryan star in?\tthe table\t-14.668979920226224\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has the orgasm at, the table) -> the table (16331ms)\nWhat movies did Meg Ryan star in?\tthe genre\t-14.680474653467435\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has ruined, the genre) -> the genre (16331ms)\nWhat movies did Meg Ryan star in?\tthe female villain Dr. Blight\t-14.685393992170336\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the female villain Dr. Blight, is voiced by, Meg Ryan) -> the female villain Dr. Blight (16392ms)\nWhat movies did Meg Ryan star in?\tThe film\t-14.693510621054093\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The film, is famous for, Meg Ryan?s) -> The film (16392ms)\nWhat movies did Meg Ryan star in?\tthe celebrities\t-14.698093924953515\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is one of, the celebrities) -> the celebrities (16392ms)\nWhat movies did Meg Ryan star in?\tThe all-female cast\t-14.700945321568248\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The all-female cast, is fronted by, Meg Ryan) -> The all-female cast (16392ms)\nWhat movies did Meg Ryan star in?\tthe bookstore\t-14.710537260803008\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the bookstore, is reminiscent of, Meg Ryan) -> the bookstore (16392ms)\nWhat movies did Meg Ryan star in?\tThe blond , slim Rachel\t-14.769760421437095\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The blond , slim Rachel, is reminiscent of, the younger Meg Ryan) -> The blond , slim Rachel (16392ms)\nWhat movies did Meg Ryan star in?\tthe romance\t-14.797188634858667\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the romance, here is, Meg and Ryan) -> the romance (16392ms)\nWhat movies did Meg Ryan star in?\tthe cover\t-14.810024321718938\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is on, the cover) -> the cover (16392ms)\nWhat movies did Meg Ryan star in?\tthe resort\t-14.829019766916502\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was filmed at, the resort) -> the resort (16448ms)\nWhat movies did Meg Ryan star in?\tthe cowboy\t-14.853777302360978\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the cowboy, was dancing with, Meg Ryan) -> the cowboy (16448ms)\nWhat movies did Meg Ryan star in?\tthe singer\t-14.861735085375436\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the singer, has been dating, Meg Ryan) -> the singer (16448ms)\nWhat movies did Meg Ryan star in?\tthe market\t-14.934396785404866\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (actress Meg Ryan, has reappeared on, the market) -> the market (16448ms)\nWhat movies did Meg Ryan star in?\tscreen\t-15.020930026462826\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have so much chemistry on, screen) -> screen (16448ms)\nWhat movies did Meg Ryan star in?\tvictim\t-15.125172440978648\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (victim, would have to be, Meg Ryan) -> victim (16448ms)\nWhat movies did Meg Ryan star in?\tcity\t-15.132431201807357\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, is also in, city) -> city (13664ms)\nWhat movies did Meg Ryan star in?\tcurls\t-15.220665784449864\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, had short hair with, curls) -> curls (16497ms)\nWhat movies did Meg Ryan star in?\tharry\t-15.2396908815224\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (harry, is played by, meg ryan) -> harry (16497ms)\nWhat movies did Meg Ryan star in?\tlove\t-15.271521960877942\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (love, was updated with, Meg Ryan) -> love (16497ms)\nWhat movies did Meg Ryan star in?\texample\t-15.310815992421924\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (example, is indexed under, Ryan , Meg and actor) -> example (16497ms)\nWhat movies did Meg Ryan star in?\tthe role of Anya\t-15.328051556116447\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was offered, the role of Anya) -> the role of Anya (16497ms)\nWhat movies did Meg Ryan star in?\tmoves\t-15.383515656841634\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is pretty much out of, moves) -> moves (16497ms)\nWhat movies did Meg Ryan star in?\tthe orgasm\t-15.424962860066103\tWhat movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has, the orgasm) -> the orgasm (16497ms)\nWhere is the highest point on earth?\tEverest\t-6.162795695101316\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Everest, is the highest point on, the Earth) -> Everest (7487ms)\nWhere is the highest point on earth?\tMount Kilimanjaro\t-6.628965235748124\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Mount Kilimanjaro, is the highest point on, earth) -> Mount Kilimanjaro (7486ms)\nWhere is the highest point on earth?\tCayambe\t-6.73156332240354\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Cayambe, is the highest point on, earth) -> Cayambe (7488ms)\nWhere is the highest point on earth?\tMount Everest\t-6.946456832648057\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Mount Everest, is the highest point on, Earth) -> Mount Everest (7487ms)\nWhere is the highest point on earth?\tKaba\t-7.208764219767921\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Kaba, is the highest point on, earth) -> Kaba (7487ms)\nWhere is the highest point on earth?\tEden\t-7.212568053490926\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Eden, is the highest point on, earth) -> Eden (7487ms)\nWhere is the highest point on earth?\tsea level\t-7.443693270891315\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (sea level, is the highest point on, earth) -> sea level (7630ms)\nWhere is the highest point on earth?\tMt Everest\t-7.495041335412007\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Mt Everest, is the highest point on, earth) -> Mt Everest (7630ms)\nWhere is the highest point on earth?\tKilimanjaro\t-7.627131273509676\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (Kilimanjaro, is also the highest point in, the world) -> Kilimanjaro (8248ms)\nWhere is the highest point on earth?\tAconcagua\t-7.6736756191016475\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (Aconcagua, is the highest point in, the world) -> Aconcagua (8248ms)\nWhere is the highest point on earth?\tMount Hood\t-7.729070199125613\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Mount Hood, is the highest point in, the country) -> Mount Hood (5174ms)\nWhere is the highest point on earth?\tMount Olympus\t-7.790521058919659\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Mount Olympus, is the highest point in, the country) -> Mount Olympus (5174ms)\nWhere is the highest point on earth?\tTibet ABC\t-8.02593871562907\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Tibet ABC, is arguably the highest point on, earth) -> Tibet ABC (7632ms)\nWhere is the highest point on earth?\tthe Nepal-Tibet border\t-8.120150257311098\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (the Nepal-Tibet border, was the highest point on, earth) -> the Nepal-Tibet border (7702ms)\nWhere is the highest point on earth?\tHighlights Mount Everest\t-8.193544093540805\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Highlights Mount Everest, is the highest point on, Earth) -> Highlights Mount Everest (7702ms)\nWhere is the highest point on earth?\tPeak XV\t-8.244335602623853\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Peak XV, was actually the highest point on, the earth) -> Peak XV (7702ms)\nWhere is the highest point on earth?\ta Himalayan peak\t-8.2743983091772\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (a Himalayan peak, is the highest point on, earth) -> a Himalayan peak (7702ms)\nWhere is the highest point on earth?\tPhysical Geography Extremes\t-8.30446101573055\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Physical Geography Extremes, is the highest point on, earth) -> Physical Geography Extremes (7702ms)\nWhere is the highest point on earth?\tMount Aragats\t-8.439795846137743\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Mount Aragats, is the highest point in, the country) -> Mount Aragats (5174ms)\nWhere is the highest point on earth?\tpart\t-8.682110469225119\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (part, is the highest point on, earth) -> part (7733ms)\nWhere is the highest point on earth?\tLuzon\t-8.77289183646466\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what state be the highest point find ? -> $x: ($x, instance of, state) (the highest point, find, $x) -> (Luzon, Instance Of, tributary state of China) (The second highest point, can be found on, Luzon) -> Luzon (7223ms)\nWhere is the highest point on earth?\tThe Santa Ana Volcano\t-8.869019119199967\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (The Santa Ana Volcano, is the highest point in, the country) -> The Santa Ana Volcano (5174ms)\nWhere is the highest point on earth?\ta whole\t-8.91972933164453\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (a whole, is the highest point on, earth') -> a whole (7733ms)\nWhere is the highest point on earth?\tK?kestet ?\t-8.955764713257853\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (K?kestet ?, is the highest point in, the country) -> K?kestet ? (5174ms)\nWhere is the highest point on earth?\tJabal Ram\t-8.955764713257853\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Jabal Ram, is the highest point in, the country) -> Jabal Ram (5174ms)\nWhere is the highest point on earth?\tMount Apo\t-9.037906030169646\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in philippine ? -> $x: ($x, be the highest point in, philippine) -> (Mount Apo, is the highest point in, the Philippines) -> Mount Apo (8248ms)\nWhere is the highest point on earth?\tThree Lands Point\t-9.041531900912414\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Three Lands Point, is the highest point in, the country) -> Three Lands Point (5455ms)\nWhere is the highest point on earth?\tEdmund Hillary\t-9.076100407002244\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> who have the highest point on earth ? -> $x: ($x, have the highest point on, earth) -> (Edmund Hillary, had reached the highest point on, the earth) -> Edmund Hillary (8762ms)\nWhere is the highest point on earth?\tTenzing Norgay\t-9.102690936078462\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> who have the highest point on earth ? -> $x: ($x, have the highest point on, earth) -> (Tenzing Norgay, had reached the highest point on, earth) -> Tenzing Norgay (8762ms)\nWhere is the highest point on earth?\tHenderson Waves\t-9.409020376416123\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what constitute the highest point ? -> $x: ($x, constitute, the highest point) -> (Henderson Waves, constitutes, the highest point) -> Henderson Waves (7949ms)\nWhere is the highest point on earth?\tIron Hill\t-9.520185063007428\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in delaware ? -> $x: ($x, be the highest point in, delaware) -> (Iron Hill, is the highest point in, Delaware) -> Iron Hill (8248ms)\nWhere is the highest point on earth?\thappiness\t-9.661731305265576\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point of the world ? -> $x: (the world, highest point, $x) -> (the world, is the highest point of, happiness) -> happiness (8682ms)\nWhere is the highest point on earth?\tFrance\t-9.66231257465813\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (France, is, the word?s) -> France (11071ms)\nWhere is the highest point on earth?\tThe mountain\t-9.718568040303794\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (The mountain, is the highest point on, earth) -> The mountain (7733ms)\nWhere is the highest point on earth?\t29 ,035 feet\t-9.789708946281102\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (29 ,035 feet, is the highest point on, Earth) -> 29 ,035 feet (7733ms)\nWhere is the highest point on earth?\tthe Sun ? 7\t-9.83254267234969\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (the Sun ? 7, is the highest point on, Earth) -> the Sun ? 7 (7733ms)\nWhere is the highest point on earth?\tthe Jews\t-9.845975449894839\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in history ? -> $x: ($x, be the highest point in, history) -> (the Jews, was then the highest point in, their history) -> the Jews (8576ms)\nWhere is the highest point on earth?\tMorni hills\t-9.865355817739925\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what constitute the highest point ? -> $x: ($x, constitute, the highest point) -> (Morni hills, constitute, the highest point) -> Morni hills (7949ms)\nWhere is the highest point on earth?\tCopper prices\t-9.885699744137582\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in history ? -> $x: ($x, be the highest point in, history) -> (Copper prices, are now the highest point in, history) -> Copper prices (8576ms)\nWhere is the highest point on earth?\tThe Baru Volcano\t-9.900231760794053\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what constitute the highest point ? -> $x: ($x, constitute, the highest point) -> (The Baru Volcano, constitutes, the highest point) -> The Baru Volcano (7949ms)\nWhere is the highest point on earth?\tThe Cuban revolution\t-9.935599638456276\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what constitute the highest point ? -> $x: ($x, constitute, the highest point) -> (The Cuban revolution, constitutes, the highest point) -> The Cuban revolution (7949ms)\nWhere is the highest point on earth?\tThe mountain?s peak\t-9.990404563058835\tWhere is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (The mountain?s peak, was the highest point on, Earth) -> The mountain?s peak (7733ms)\nWhere is the highest point on earth?\tAfrica\t-10.106664711681935\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Africa, is, the 4th World Summit) -> Africa (6690ms)\nWhere is the highest point on earth?\tLegislature\t-10.130824817942763\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Legislature, is a subpart of the organization, The country) -> Legislature (11071ms)\nWhere is the highest point on earth?\tSantander\t-10.139907032921316\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Santander, are running, the 10th world edition) -> Santander (6690ms)\nWhere is the highest point on earth?\tCuba\t-10.164990613190831\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Cuba, was, the world?s 8th highest) -> Cuba (6690ms)\nWhere is the highest point on earth?\tVienna\t-10.258682154528204\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Vienna, is, the 6th World Congress) -> Vienna (6690ms)\nWhere is the highest point on earth?\tFinland\t-10.267588692071016\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Finland, is, the 20th World Champion) -> Finland (6690ms)\nWhere is the highest point on earth?\ta volcano\t-10.320175011876325\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in philippine ? -> $x: ($x, be the highest point in, philippine) -> (a volcano, is the highest point in, the Philippines) -> a volcano (8248ms)\nWhere is the highest point on earth?\tRailways\t-10.324540058709132\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Railways, is hosting, the 8th World Congress) -> Railways (6689ms)\nWhere is the highest point on earth?\t2,909 m\t-10.381279377090122\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (2,909 m, is the highest point in, the country) -> 2,909 m (5455ms)\nWhere is the highest point on earth?\t4,981 meters\t-10.381279377090122\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (4,981 meters, is the highest point in, the country) -> 4,981 meters (5455ms)\nWhere is the highest point on earth?\t514 metres\t-10.404268539732403\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (514 metres, is the highest point in, the country) -> 514 metres (5455ms)\nWhere is the highest point on earth?\tShenzhen\t-10.453790426240873\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 26th World Universiade, is being held in, Shenzhen) -> Shenzhen (7223ms)\nWhere is the highest point on earth?\tSeller\t-10.46229712405525\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Seller, is, Alberta) -> Seller (12703ms)\nWhere is the highest point on earth?\t895 meters\t-10.472351788555853\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (895 meters, is the highest point in, the country) -> 895 meters (5455ms)\nWhere is the highest point on earth?\tMont Blanc\t-10.506377720550008\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, highest point in, country) -> (Mont Blanc, is the highest point in, this country) -> Mont Blanc (9408ms)\nWhere is the highest point on earth?\tToshiba\t-10.513669569144522\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Toshiba, is, world?s 7th largest) -> Toshiba (7223ms)\nWhere is the highest point on earth?\tYokohama\t-10.551918419063572\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Yokohama, was, her 19th world title) -> Yokohama (7223ms)\nWhere is the highest point on earth?\tScholarships\t-10.552885136146024\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Scholarships, are being offered at, the 11th World Conference) -> Scholarships (7223ms)\nWhere is the highest point on earth?\tSydney\t-10.567032329372749\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 8th World Congress, was held in, Sydney) -> Sydney (7223ms)\nWhere is the highest point on earth?\tMount Teide\t-10.571182659172237\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, highest point in, country) -> (Mount Teide, is the highest point in, this country) -> Mount Teide (9408ms)\nWhere is the highest point on earth?\tCalgary\t-10.591355288167831\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Calgary, is, Alberta ,) -> Calgary (12703ms)\nWhere is the highest point on earth?\tEdmonton\t-10.60292369367789\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Edmonton, is, Alberta) -> Edmonton (12703ms)\nWhere is the highest point on earth?\tHelsinki\t-10.60613377354388\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 6th World Conference, will be held in, Helsinki) -> Helsinki (7811ms)\nWhere is the highest point on earth?\tSpain\t-10.630676630934321\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Spain, is, 9th world scientific power) -> Spain (7811ms)\nWhere is the highest point on earth?\tHaiti\t-10.632886588041492\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Haiti, is considered, a 4th world country) -> Haiti (7811ms)\nWhere is the highest point on earth?\tKindle\t-10.635376861823387\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 18th World Congresses, is now available for, Kindle) -> Kindle (7811ms)\nWhere is the highest point on earth?\tCanada\t-10.638219799498934\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Canada, is, Alberta) -> Canada (12703ms)\nWhere is the highest point on earth?\tEdinburgh\t-10.64598725674343\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 34th World Conference, will be held in, Edinburgh) -> Edinburgh (7949ms)\nWhere is the highest point on earth?\tDomain name\t-10.696298599682631\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Domain name, is, the word/words) -> Domain name (11071ms)\nWhere is the highest point on earth?\tMexico\t-10.718779068745093\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Mexico, is, Alberta) -> Mexico (12703ms)\nWhere is the highest point on earth?\tJapan\t-10.718779068745093\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Japan, is, Alberta) -> Japan (12703ms)\nWhere is the highest point on earth?\tIndia\t-10.751793229502029\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (India, is currently, world?s 11th largest economy) -> India (7983ms)\nWhere is the highest point on earth?\tChina\t-10.758240220649382\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (China, is, the world?s 6th) -> China (7984ms)\nWhere is the highest point on earth?\tEurope\t-10.810904018086683\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Europe, were causing an uproar in, th Muslim world) -> Europe (7983ms)\nWhere is the highest point on earth?\tDenmark\t-10.817913046572789\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (27th Our virtual world, is finally LIVE in, Denmark) -> Denmark (7983ms)\nWhere is the highest point on earth?\tThe Games\t-10.859476891206663\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Games, is, Alberta) -> The Games (12703ms)\nWhere is the highest point on earth?\tGod\t-10.871761972389145\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word and word, was, God) -> God (11072ms)\nWhere is the highest point on earth?\tPrague\t-10.87448252163682\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> ('s 25th world conference, was held in, Prague) -> Prague (7983ms)\nWhere is the highest point on earth?\tLeadership\t-10.92576596532796\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Leadership, is certainly valued in, th eoutside world) -> Leadership (8248ms)\nWhere is the highest point on earth?\tAirdrie\t-10.95984848258438\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Airdrie, is a proxy for, alberta) -> Airdrie (12791ms)\nWhere is the highest point on earth?\tCamrose\t-10.95984848258438\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Camrose, is a proxy for, alberta) -> Camrose (12791ms)\nWhere is the highest point on earth?\tVictoria\t-10.963860741962202\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Victoria, is hosting, the 10th World Conference) -> Victoria (8464ms)\nWhere is the highest point on earth?\tMumbai\t-10.985399443826562\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (4th WORLD NEEM CONFERENCE, was hosted in, Mumbai) -> Mumbai (8464ms)\nWhere is the highest point on earth?\tLethbridge\t-10.98733736318354\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Lethbridge, is a location located within, alberta) -> Lethbridge (12791ms)\nWhere is the highest point on earth?\tSugar\t-11.010899260839963\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Sugar, is an agricultural product growing in, alberta) -> Sugar (12791ms)\nWhere is the highest point on earth?\tKurbanov\t-11.024405010598878\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Kurbanov, was going to fight in, the 9th World) -> Kurbanov (8464ms)\nWhere is the highest point on earth?\tGreece\t-11.030605103545732\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Greece, was, the country) -> Greece (11071ms)\nWhere is the highest point on earth?\tVietnam\t-11.03925180938614\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Vietnam, was, the country) -> Vietnam (11072ms)\nWhere is the highest point on earth?\tScotland\t-11.043927447556934\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (the 7th World Congress, have discussed, Scotland) -> Scotland (8464ms)\nWhere is the highest point on earth?\tEgypt\t-11.045970488154119\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Egypt, was, the country) -> Egypt (12791ms)\nWhere is the highest point on earth?\tLight\t-11.052435809544148\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the Word, was, Light) -> Light (12860ms)\nWhere is the highest point on earth?\tCzechoslovakia\t-11.097526347823683\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, was, Czechoslovakia) -> Czechoslovakia (12860ms)\nWhere is the highest point on earth?\tSwitzerland\t-11.097776149589583\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Switzerland, is, the country) -> Switzerland (12860ms)\nWhere is the highest point on earth?\tthe students\t-11.100099986347177\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (the students, is the highest point in, the world) -> the students (8464ms)\nWhere is the highest point on earth?\tThe Being\t-11.111368631139168\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (The Being, was, the Word) -> The Being (12860ms)\nWhere is the highest point on earth?\tChicago\t-11.114217356215594\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Chicago, is, the country) -> Chicago (12860ms)\nWhere is the highest point on earth?\tSyria\t-11.122301993653815\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, Syria) -> Syria (12860ms)\nWhere is the highest point on earth?\tNTT DATA\t-11.12278088476687\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (NTT DATA, is, the world?s 8th largest) -> NTT DATA (8576ms)\nWhere is the highest point on earth?\tQatar\t-11.123478519684577\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Qatar, is, the country) -> Qatar (13245ms)\nWhere is the highest point on earth?\tVenezuela\t-11.123478519684577\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Venezuela, is, the country) -> Venezuela (12860ms)\nWhere is the highest point on earth?\tUruguay\t-11.13221687638841\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Uruguay, is, the Country) -> Uruguay (13245ms)\nWhere is the highest point on earth?\tHawaii\t-11.134618475079547\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Hawaii, is, the country) -> Hawaii (13245ms)\nWhere is the highest point on earth?\tThe Netherlands\t-11.137905845065607\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (The Netherlands, is, the country) -> The Netherlands (13245ms)\nWhere is the highest point on earth?\tphotograph\t-11.14007647997831\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what state be the highest point find ? -> $x: ($x, instance of, state) (the highest point, find, $x) -> (photograph, Instance Of, state and community resource) (the highest point, found too much to, photograph) -> photograph (8576ms)\nWhere is the highest point on earth?\tthe tallest\t-11.143743760415248\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (the tallest, will be the highest point in, the World) -> the tallest (8614ms)\nWhere is the highest point on earth?\tBulgaria\t-11.143879638548528\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Bulgaria, is, the country) -> Bulgaria (13245ms)\nWhere is the highest point on earth?\tJamaica\t-11.143879638548528\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Jamaica, is, the country) -> Jamaica (13319ms)\nWhere is the highest point on earth?\tSlovenia\t-11.143879638548528\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Slovenia, was, the country) -> Slovenia (13245ms)\nWhere is the highest point on earth?\tEritrea\t-11.143879638548528\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Eritrea, was, the country) -> Eritrea (13245ms)\nWhere is the highest point on earth?\tBelize\t-11.143879638548528\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Belize, is, the country) -> Belize (13319ms)\nWhere is the highest point on earth?\tBabylonia\t-11.143879638548528\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Babylonia, was, the country) -> Babylonia (13245ms)\nWhere is the highest point on earth?\tAkita\t-11.149242957075995\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 6th World Games, were held in, Akita) -> Akita (8614ms)\nWhere is the highest point on earth?\tMandy\t-11.16213931541349\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Mandy, is teaching, 10th grade world history) -> Mandy (8614ms)\nWhere is the highest point on earth?\tThe Grass\t-11.171625288256791\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (The Grass, was, the Country) -> The Grass (13319ms)\nWhere is the highest point on earth?\tNeysh?b?r\t-11.173117744396794\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 15th World Jamboree, was scheduled to be held in, Neysh?b?r) -> Neysh?b?r (8614ms)\nWhere is the highest point on earth?\tLos Angeles\t-11.174477926403098\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 4th World Convention, was in, Los Angeles) -> Los Angeles (8614ms)\nWhere is the highest point on earth?\tTwitter\t-11.189563247378052\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Twitter, is, the word) -> Twitter (13319ms)\nWhere is the highest point on earth?\tConsciousness\t-11.192140608222592\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Consciousness, is, the word) -> Consciousness (13319ms)\nWhere is the highest point on earth?\tSoccer\t-11.209964366242003\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Soccer, is, the words) -> Soccer (13319ms)\nWhere is the highest point on earth?\tAggressive\t-11.209964366242003\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Aggressive, is, the word) -> Aggressive (13319ms)\nWhere is the highest point on earth?\tDuisberg\t-11.222465294154668\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 8th World Games, will be held in, Duisberg) -> Duisberg (8682ms)\nWhere is the highest point on earth?\tWWII\t-11.249541023567854\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (WWII, was, the world?s 4th largest) -> WWII (8682ms)\nWhere is the highest point on earth?\tRory\t-11.25091626119034\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Rory, was, the world?s number 876th) -> Rory (8682ms)\nWhere is the highest point on earth?\tMorgex\t-11.252815579178453\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Morgex, is, Alberta) -> Morgex (13319ms)\nWhere is the highest point on earth?\tSan Marino\t-11.26059185409295\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, San Marino) -> San Marino (13385ms)\nWhere is the highest point on earth?\tLee Bowman?s John\t-11.267048539086048\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word?s, is, Lee Bowman?s John) -> Lee Bowman?s John (13385ms)\nWhere is the highest point on earth?\tNorth America\t-11.296464336664453\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (North America, is, Alberta) -> North America (13385ms)\nWhere is the highest point on earth?\tPembina Institute\t-11.296693878631842\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Pembina Institute, is headquartered in the state or province, alberta) -> Pembina Institute (13384ms)\nWhere is the highest point on earth?\tWest Indies\t-11.330357175596195\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 9th World Cup, is being played in, West Indies) -> West Indies (8682ms)\nWhere is the highest point on earth?\tHarold Evans\t-11.338841295515078\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Harold Evans, was, Alberta) -> Harold Evans (13384ms)\nWhere is the highest point on earth?\tNucleus\t-11.343003804243086\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Nucleus, is, Alberta) -> Nucleus (13385ms)\nWhere is the highest point on earth?\tSouth Africa\t-11.352620307846983\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (17th World Cup fever, may be sweeping through, South Africa) -> South Africa (8682ms)\nWhere is the highest point on earth?\tThe Bible\t-11.353405920891305\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (The Bible, is, words about the Word) -> The Bible (13385ms)\nWhere is the highest point on earth?\tUnited States\t-11.363960786450962\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (alberta, is a sate or province located in the country, United States) -> United States (13555ms)\nWhere is the highest point on earth?\tPOWERFUL\t-11.381274777566876\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (THE WORD Words, are, POWERFUL) -> POWERFUL (13555ms)\nWhere is the highest point on earth?\tThe summit\t-11.383043271156433\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (The summit, is the highest point in, the world) -> The summit (8728ms)\nWhere is the highest point on earth?\tthe NRA\t-11.402223635211929\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (the NRA, is, the countries) -> the NRA (13555ms)\nWhere is the highest point on earth?\tMembers\t-11.409635936609128\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Members, are attending, 4th World Congress) -> Members (8729ms)\nWhere is the highest point on earth?\tTiffany\t-11.421656822519129\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Tiffany, is extremely popular throughout, th world marketplace) -> Tiffany (8729ms)\nWhere is the highest point on earth?\tthe SolarBeam Concentrator\t-11.432816483784148\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (the SolarBeam Concentrator, is, the word?s) -> the SolarBeam Concentrator (13555ms)\nWhere is the highest point on earth?\t?Mingalaba?\t-11.456197845517137\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (?Mingalaba?, is, the first word word) -> ?Mingalaba? (13555ms)\nWhere is the highest point on earth?\tGod?and\t-11.460618830224915\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word and word, was, God?and) -> God?and (13555ms)\nWhere is the highest point on earth?\tTags\t-11.461355312468369\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Tags, was, the 97th World Day) -> Tags (8728ms)\nWhere is the highest point on earth?\tTaylor\t-11.483987328893946\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Taylor, is chasing, his 15th World title) -> Taylor (8728ms)\nWhere is the highest point on earth?\tEric?s\t-11.48551035493626\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word?s, are, Eric?s) -> Eric?s (13555ms)\nWhere is the highest point on earth?\tVocations Today\t-11.489413064007985\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Vocations Today, is, the 45th World Day) -> Vocations Today (8728ms)\nWhere is the highest point on earth?\t?apparent malfunction ?\t-11.497457270949287\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (?apparent malfunction ?, was, the word or words) -> ?apparent malfunction ? (13631ms)\nWhere is the highest point on earth?\tSchumacher\t-11.527885777287064\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Schumacher, is gonna win, his 7th world championship) -> Schumacher (8762ms)\nWhere is the highest point on earth?\tthe Cardinals\t-11.544955927954813\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the Cardinals, are in, their 18th World Series) -> the Cardinals (8762ms)\nWhere is the highest point on earth?\tTime\t-11.54680012015693\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Time, is, the country) -> Time (13632ms)\nWhere is the highest point on earth?\tJohannesburg\t-11.579252981543743\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (9th World Hindi Conference, will be organized at, Johannesburg) -> Johannesburg (8762ms)\nWhere is the highest point on earth?\tPoor\t-11.58167606321106\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Poor, is, the country) -> Poor (13632ms)\nWhere is the highest point on earth?\tAmerica\t-11.604071987173302\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (America, is, the country) -> America (13632ms)\nWhere is the highest point on earth?\tPlum\t-11.646584264873773\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word, was, Plum) -> Plum (13632ms)\nWhere is the highest point on earth?\tRoble\t-11.647484274177165\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Roble, is, the 30th world) -> Roble (8794ms)\nWhere is the highest point on earth?\tTechnology Toshiba\t-11.653193781076304\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Technology Toshiba, is, world?s 7th largest) -> Technology Toshiba (8794ms)\nWhere is the highest point on earth?\tLLP\t-11.657797938655959\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (LLP, is, Alberta) -> LLP (13632ms)\nWhere is the highest point on earth?\tnative English\t-11.665360458601064\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word word, is, native English) -> native English (13632ms)\nWhere is the highest point on earth?\tAwesome\t-11.668341596541792\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, Awesome) -> Awesome (13632ms)\nWhere is the highest point on earth?\tCosta Rica\t-11.671144826724099\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Costa Rica, was, the country) -> Costa Rica (13782ms)\nWhere is the highest point on earth?\tan anathema\t-11.675478866210721\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word WORD, is, an anathema) -> an anathema (13782ms)\nWhere is the highest point on earth?\tHong Kong\t-11.678014432053294\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 7th World Congress, will be held in, Hong Kong) -> Hong Kong (8794ms)\nWhere is the highest point on earth?\tCaramoan\t-11.692426193264488\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Caramoan, is, the country) -> Caramoan (13783ms)\nWhere is the highest point on earth?\tYugoslavia\t-11.703894640675479\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, Yugoslavia) -> Yugoslavia (13782ms)\nWhere is the highest point on earth?\tPortuguese\t-11.718360672786375\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, Portuguese) -> Portuguese (13782ms)\nWhere is the highest point on earth?\tThailand\t-11.723051136821827\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Thailand, is, the worlds  50th) -> Thailand (8794ms)\nWhere is the highest point on earth?\tFort Macleod\t-11.725781882431198\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Fort Macleod, is, Alberta) -> Fort Macleod (13782ms)\nWhere is the highest point on earth?\tMacedonia\t-11.733228430992392\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Macedonia, was, the country) -> Macedonia (13782ms)\nWhere is the highest point on earth?\tArgentina\t-11.743452255685778\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Argentina, is, the worlds  5th) -> Argentina (8794ms)\nWhere is the highest point on earth?\tBrazil\t-11.743452255685778\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Brazil, is, the worlds  5th) -> Brazil (8865ms)\nWhere is the highest point on earth?\tKorea\t-11.743452255685778\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Korea, is, the worlds  10th) -> Korea (8865ms)\nWhere is the highest point on earth?\tHappy\t-11.756441611886403\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Happy, is, the Country) -> Happy (13782ms)\nWhere is the highest point on earth?\tAlberta This\t-11.761783284867587\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Alberta This, is, Alberta) -> Alberta This (13841ms)\nWhere is the highest point on earth?\tMagic\t-11.764437215631737\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Magic, was, the word) -> Magic (13842ms)\nWhere is the highest point on earth?\tChange\t-11.764437215631737\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Change, is, the word) -> Change (13841ms)\nWhere is the highest point on earth?\tOn the bottle\t-11.792088915553318\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (On the bottle, was, the word) -> On the bottle (13841ms)\nWhere is the highest point on earth?\tEnergy development\t-11.796125491367231\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Energy development, is, Alberta) -> Energy development (13842ms)\nWhere is the highest point on earth?\tDelicious\t-11.799313158685868\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Delicious, is, the word) -> Delicious (13842ms)\nWhere is the highest point on earth?\tGreat Britain\t-11.803191313591846\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Great Britain, is, the Country) -> Great Britain (13842ms)\nWhere is the highest point on earth?\torganization\t-11.80740323589222\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is an, organization) -> organization (13841ms)\nWhere is the highest point on earth?\tSoulful\t-11.813787982876045\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Soulful, is, the word) -> Soulful (14006ms)\nWhere is the highest point on earth?\tDivine\t-11.822526339579879\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Divine, was, the Word) -> Divine (14006ms)\nWhere is the highest point on earth?\tQuirky\t-11.824927938271015\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Quirky, is, the word) -> Quirky (14006ms)\nWhere is the highest point on earth?\tEllen\t-11.824927938271015\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Ellen, is, the word) -> Ellen (14006ms)\nWhere is the highest point on earth?\tTenacity\t-11.834189101739996\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Tenacity, is, the word) -> Tenacity (14006ms)\nWhere is the highest point on earth?\tdependent on Russia\t-11.83887039083156\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, dependent on Russia) -> dependent on Russia (14006ms)\nWhere is the highest point on earth?\tDynamic\t-11.84292745844383\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Dynamic, is, the Word) -> Dynamic (14006ms)\nWhere is the highest point on earth?\tCanadian rockies\t-11.845745731327568\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Canadian rockies, is a mountain in the state or province, alberta) -> Canadian rockies (14139ms)\nWhere is the highest point on earth?\tSTATES\t-11.845745731327568\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (STATES, is a state or province located in the geopolitical location, alberta) -> STATES (14006ms)\nWhere is the highest point on earth?\tThe Lena River\t-11.849763174550183\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Lena River, is, the world?s 10th longest) -> The Lena River (8865ms)\nWhere is the highest point on earth?\tthe Mekong\t-11.861779243136613\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the Mekong, is, the world?s 10th largest) -> the Mekong (8865ms)\nWhere is the highest point on earth?\tgrande prairie\t-11.87727709436778\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (grande prairie, is a city located in the state or province, alberta) -> grande prairie (14140ms)\nWhere is the highest point on earth?\tLac La Biche\t-11.87727709436778\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Lac La Biche, is a lake in the state or province, alberta) -> Lac La Biche (14140ms)\nWhere is the highest point on earth?\tThe Mexican economy\t-11.887848232245247\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Mexican economy, is, the world 11th largest) -> The Mexican economy (8932ms)\nWhere is the highest point on earth?\tThe Myitsone Dam\t-11.889086706049067\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Myitsone Dam, would have been, world?s 15th tallest) -> The Myitsone Dam (8932ms)\nWhere is the highest point on earth?\tThe Edmonton region\t-11.907032887355578\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Edmonton region, is, Alberta) -> The Edmonton region (14140ms)\nWhere is the highest point on earth?\tSpruce Grove\t-11.907033918948406\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Spruce Grove, is, Alberta) -> Spruce Grove (14140ms)\nWhere is the highest point on earth?\thel\t-11.936936035871133\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 4th World Jamboree, was, hel) -> hel (8932ms)\nWhere is the highest point on earth?\tAdoption Options\t-11.941909862002534\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Adoption Options, is, Alberta) -> Adoption Options (14140ms)\nWhere is the highest point on earth?\tthe Buddhist leader\t-11.963982215156397\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the Buddhist leader, is addressing, the 11th World Summit) -> the Buddhist leader (8932ms)\nWhere is the highest point on earth?\ta global event and hosts\t-11.966214612809276\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 30th World Congress, is, a global event and hosts) -> a global event and hosts (8932ms)\nWhere is the highest point on earth?\tMap Immaculate\t-11.969613583293107\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Map Immaculate, is, the word) -> Map Immaculate (14140ms)\nWhere is the highest point on earth?\tparade.com\t-11.971419779834553\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (parade.com, is, the world 7th dictators) -> parade.com (8932ms)\nWhere is the highest point on earth?\tthe Greens ? best province\t-11.974236290142047\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (the Greens ? best province, was, Alberta) -> the Greens ? best province (14198ms)\nWhere is the highest point on earth?\tNovember\t-12.007118689481697\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (November, is, the word) -> November (14198ms)\nWhere is the highest point on earth?\tThe Great Grey Copper\t-12.014179868843627\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Great Grey Copper, is, Alberta) -> The Great Grey Copper (14198ms)\nWhere is the highest point on earth?\tIAF\t-12.022703223525694\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (IAF, is, the world?s 4th largest) -> IAF (8965ms)\nWhere is the highest point on earth?\tthe San Francisco event\t-12.022768060219162\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the San Francisco event, would be, his 11th World Title) -> the San Francisco event (8965ms)\nWhere is the highest point on earth?\tstate or a province\t-12.024423455222104\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (alberta, is a, state or a province) -> state or a province (14198ms)\nWhere is the highest point on earth?\tgood a place\t-12.037370582386428\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 5th world, was as, good a place) -> good a place (8964ms)\nWhere is the highest point on earth?\tstrathcona county\t-12.051912335821264\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (strathcona county, is a proxy for, alberta) -> strathcona county (14198ms)\nWhere is the highest point on earth?\tCANADA.\t-12.051912335821264\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (alberta, is a location located within, CANADA.) -> CANADA. (14198ms)\nWhere is the highest point on earth?\tMedicine Hat\t-12.051912335821264\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Medicine Hat, is a proxy for, alberta) -> Medicine Hat (14198ms)\nWhere is the highest point on earth?\tevery now\t-12.075884497542047\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 11th World Champion, could be found reading, every now) -> every now (8965ms)\nWhere is the highest point on earth?\tThe Honourable Alison Redford\t-12.08396697504431\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Honourable Alison Redford, is, Alberta) -> The Honourable Alison Redford (14198ms)\nWhere is the highest point on earth?\tThe Golden Tulip Hospitality group\t-12.085610706060994\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Golden Tulip Hospitality group, was placed, 18th world wide) -> The Golden Tulip Hospitality group (8964ms)\nWhere is the highest point on earth?\tThe Canmore Folk Music Festival\t-12.099589925579835\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Canmore Folk Music Festival, is, Alberta) -> The Canmore Folk Music Festival (14299ms)\nWhere is the highest point on earth?\tThe USA\t-12.09992122733259\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (The USA, was, the country) -> The USA (14299ms)\nWhere is the highest point on earth?\tJuly\t-12.107976295421512\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (7th World Congress, was held from, July) -> July (8964ms)\nWhere is the highest point on earth?\tThe Vibrator Play\t-12.114295800625435\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Vibrator Play, was, our 50th world premiere) -> The Vibrator Play (8965ms)\nWhere is the highest point on earth?\tDD\t-12.123044871670043\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (DD, is preparing, the 7th World Conference) -> DD (9003ms)\nWhere is the highest point on earth?\tthe Deaf\t-12.12523204729992\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the Deaf, will be hosting, their 15th World Congress) -> the Deaf (9003ms)\nWhere is the highest point on earth?\tCanadas\t-12.135336784824705\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (Alberta, is, Canadas) -> Canadas (14299ms)\nWhere is the highest point on earth?\tthe UK\t-12.143443876227128\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (the UK, is, the country) -> the UK (14299ms)\nWhere is the highest point on earth?\tupside down\t-12.14601584132653\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, upside down) -> upside down (14299ms)\nWhere is the highest point on earth?\tBlue\t-12.152498731113404\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word, is, Blue) -> Blue (14299ms)\nWhere is the highest point on earth?\tTexas\t-12.155737903688657\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (Alberta, is, Texas) -> Texas (14299ms)\nWhere is the highest point on earth?\trelatively quiet\t-12.158329705581723\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, relatively quiet) -> relatively quiet (14693ms)\nWhere is the highest point on earth?\tDuisburg/Germany\t-12.172652893632232\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 7th World Games, are being opened in, Duisburg/Germany) -> Duisburg/Germany (9003ms)\nWhere is the highest point on earth?\tGorgeous\t-12.176626722167327\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (This world class 14th Floor residence, has, Gorgeous) -> Gorgeous (9003ms)\nWhere is the highest point on earth?\tIran\t-12.18124868034831\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Iran, is, the worlds  5th) -> Iran (9003ms)\nWhere is the highest point on earth?\tan MIE\t-12.189574572148206\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (an MIE, is, Alberta) -> an MIE (14693ms)\nWhere is the highest point on earth?\tmore rural\t-12.193205648635853\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, was, more rural) -> more rural (14693ms)\nWhere is the highest point on earth?\trelatively untouched\t-12.193205648635853\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, relatively untouched) -> relatively untouched (14693ms)\nWhere is the highest point on earth?\tjust visible\t-12.200432348009755\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, just visible) -> just visible (14693ms)\nWhere is the highest point on earth?\tonline sale\t-12.201902135913222\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (97th Seoul comic world, is now on, online sale) -> online sale (9003ms)\nWhere is the highest point on earth?\tThe Bible Love\t-12.209853764926198\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Bible Love, is, Joy 8th World Wonder) -> The Bible Love (9003ms)\nWhere is the highest point on earth?\tmere words\t-12.210097619210615\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the words, be, mere words) -> mere words (14693ms)\nWhere is the highest point on earth?\tthe Philippines\t-12.213195762335387\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (the Philippines, is, the country) -> the Philippines (14693ms)\nWhere is the highest point on earth?\tsomewhat subjective\t-12.215131010234003\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, somewhat subjective) -> somewhat subjective (14803ms)\nWhere is the highest point on earth?\tdemocratic instinct\t-12.224325298825656\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (democratic instinct, is, Alberta) -> democratic instinct (14803ms)\nWhere is the highest point on earth?\ttomorrow night\t-12.226914800983401\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 100th World Series, is scheduled for, tomorrow night) -> tomorrow night (9003ms)\nWhere is the highest point on earth?\t3 candles\t-12.233119721536848\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what surround the highest point ? -> $x: ($x, surround, the highest point) -> (3 candles, surrounded at, the highest point in your home) -> 3 candles (9042ms)\nWhere is the highest point on earth?\tthe Star\t-12.233177001069917\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (the Star, was, the word) -> the Star (14803ms)\nWhere is the highest point on earth?\tdebt free\t-12.245988951212746\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, debt free) -> debt free (14803ms)\nWhere is the highest point on earth?\texcellent status\t-12.25582824007621\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (excellent status, is well-known for, th world) -> excellent status (9042ms)\nWhere is the highest point on earth?\tan abbreviation\t-12.25679661698814\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, an abbreviation) -> an abbreviation (14803ms)\nWhere is the highest point on earth?\tSandton Convention Centre\t-12.272668395606033\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 58th Miss World, was held at, Sandton Convention Centre) -> Sandton Convention Centre (9042ms)\nWhere is the highest point on earth?\tT&T Honda\t-12.279298167870024\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (T&T Honda, is, Alberta) -> T&T Honda (14803ms)\nWhere is the highest point on earth?\tASC\t-12.282514608762046\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (ASC, is, Alberta) -> ASC (14803ms)\nWhere is the highest point on earth?\tAWA\t-12.289096270767315\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (AWA, is, Alberta) -> AWA (14803ms)\nWhere is the highest point on earth?\tHeart disease\t-12.292092440171691\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Heart disease, is, the country) -> Heart disease (14875ms)\nWhere is the highest point on earth?\ta professional poker player\t-12.294029265567453\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (th entire world, is, a professional poker player) -> a professional poker player (9042ms)\nWhere is the highest point on earth?\tNorQuest NorQuest\t-12.296989432952223\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (NorQuest NorQuest, is, Alberta) -> NorQuest NorQuest (14875ms)\nWhere is the highest point on earth?\ta Church\t-12.31091361583577\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 16th century world, was dominated by, a Church) -> a Church (9042ms)\nWhere is the highest point on earth?\tJames E. West\t-12.314617935273525\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 4th World Jamboree, was written by, James E. West) -> James E. West (9042ms)\nWhere is the highest point on earth?\tthe Holy Spirit\t-12.330998334459014\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (the Holy Spirit, is, the Word) -> the Holy Spirit (14875ms)\nWhere is the highest point on earth?\tones and zeros\t-12.33332619332936\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (th informatized world, is in, ones and zeros) -> ones and zeros (9080ms)\nWhere is the highest point on earth?\tsimilar sounds\t-12.334854527348053\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, have, $x) -> (the word or words, have, similar sounds) -> similar sounds (14875ms)\nWhere is the highest point on earth?\tan NFL record\t-12.338715177706064\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (their 12th world championship, is still, an NFL record) -> an NFL record (9080ms)\nWhere is the highest point on earth?\tProtesters and plan\t-12.340976322389118\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Protesters and plan, was launched on, 15th World dachuanlian) -> Protesters and plan (9080ms)\nWhere is the highest point on earth?\tcoach Linzy DAVIS\t-12.345853342446683\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (coach Linzy DAVIS, was going for, his 6th WORLD) -> coach Linzy DAVIS (9080ms)\nWhere is the highest point on earth?\tawash in weapons\t-12.349659782643537\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, awash in weapons) -> awash in weapons (14875ms)\nWhere is the highest point on earth?\ta womans heart\t-12.357496828637846\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (ths world, is, a womans heart) -> a womans heart (9080ms)\nWhere is the highest point on earth?\tthree syllables\t-12.358177167865167\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, three syllables) -> three syllables (14875ms)\nWhere is the highest point on earth?\tSouth Korea\t-12.363704505728009\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (South Korea, is, the worlds  12th) -> South Korea (9080ms)\nWhere is the highest point on earth?\tAlberta Foreclosure Stoppers\t-12.365037944854718\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Alberta Foreclosure Stoppers, is, Alberta) -> Alberta Foreclosure Stoppers (15607ms)\nWhere is the highest point on earth?\tjust like person\t-12.37006090150749\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, just like person) -> just like person (15607ms)\nWhere is the highest point on earth?\tnear economic collapse\t-12.37006090150749\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, near economic collapse) -> near economic collapse (15607ms)\nWhere is the highest point on earth?\ta bit harsh\t-12.373112421860684\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word, is, a bit harsh) -> a bit harsh (15607ms)\nWhere is the highest point on earth?\tBlogs Caramoan\t-12.373295487034703\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Blogs Caramoan, is, the country) -> Blogs Caramoan (15608ms)\nWhere is the highest point on earth?\thospital\t-12.376035482591034\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 10th World Champion, was taken to, hospital) -> hospital (9080ms)\nWhere is the highest point on earth?\tMISS CCEMC Proposals\t-12.377496267275951\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (MISS CCEMC Proposals, Are, Alberta) -> MISS CCEMC Proposals (15607ms)\nWhere is the highest point on earth?\t4100 meters\t-12.384979503655558\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in asia ? -> $x: ($x, be the highest point in, asia) -> (4100 meters, is the highest point in, Southeastern Asia) -> 4100 meters (9119ms)\nWhere is the highest point on earth?\tstrong advocate\t-12.387901891120322\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (strong advocate, was, Alberta) -> strong advocate (15743ms)\nWhere is the highest point on earth?\tSites Caramoan\t-12.398997857129697\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Sites Caramoan, is, the country) -> Sites Caramoan (15742ms)\nWhere is the highest point on earth?\twealthy in natural resources\t-12.400158676233191\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, wealthy in natural resources) -> wealthy in natural resources (15742ms)\nWhere is the highest point on earth?\tOn the ground\t-12.406124189360424\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (On the ground, was, the words) -> On the ground (15742ms)\nWhere is the highest point on earth?\tAUPE\t-12.40757877688081\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (AUPE, is, Alberta) -> AUPE (15742ms)\nWhere is the highest point on earth?\tWhat really caught my attention\t-12.40799317182725\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (What really caught my attention, was, the word) -> What really caught my attention (15743ms)\nWhere is the highest point on earth?\tunions\t-12.411132656779333\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (unions, is, Alberta) -> unions (15742ms)\nWhere is the highest point on earth?\tany other province\t-12.413291564121305\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (any other province, is, Alberta) -> any other province (15743ms)\nWhere is the highest point on earth?\tan astonishing landscape\t-12.416400943244854\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (an astonishing landscape, is, Alberta) -> an astonishing landscape (15865ms)\nWhere is the highest point on earth?\ta distinct person\t-12.417667794387619\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The Word, is, a distinct person) -> a distinct person (15865ms)\nWhere is the highest point on earth?\tTravel Caramoan\t-12.419398975993648\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Travel Caramoan, is, the country) -> Travel Caramoan (15865ms)\nWhere is the highest point on earth?\tbig\t-12.426082333985763\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (big, is, Alberta) -> big (15865ms)\nWhere is the highest point on earth?\tFNMI education\t-12.426931836168198\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (FNMI education, is, Alberta) -> FNMI education (15865ms)\nWhere is the highest point on earth?\tpart of the Mongol empire\t-12.436069850465525\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the countries, was, part of the Mongol empire) -> part of the Mongol empire (15865ms)\nWhere is the highest point on earth?\tincivility\t-12.438539792853042\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the Top Words words, were, incivility) -> incivility (15865ms)\nWhere is the highest point on earth?\tdependent on imports\t-12.44138714936385\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, dependent on imports) -> dependent on imports (15961ms)\nWhere is the highest point on earth?\tan importnt part\t-12.444735155531784\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (th world, is deprived of, an importnt part) -> an importnt part (9119ms)\nWhere is the highest point on earth?\ta smear campaign\t-12.44545896974151\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word?s, been the target of, a smear campaign) -> a smear campaign (15961ms)\nWhere is the highest point on earth?\tthe water\t-12.450655707647336\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point on land ? -> $x: ($x, be the highest point on, land) -> $x: ($x, highest point on, land) -> (the water, reached its highest point on, land) -> the water (15961ms)\nWhere is the highest point on earth?\ta link\t-12.457140806615735\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word Wiki Word, is, a link) -> a link (15961ms)\nWhere is the highest point on earth?\tBernhard Tieff\t-12.476970965507643\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Bernhard Tieff, is, the word) -> Bernhard Tieff (15961ms)\nWhere is the highest point on earth?\tan ally of the United States\t-12.480091692682574\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, was, an ally of the United States) -> an ally of the United States (15961ms)\nWhere is the highest point on earth?\tan Evangelical scholar\t-12.488125384335724\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (an Evangelical scholar, is, 20th Century World Christianity) -> an Evangelical scholar (9119ms)\nWhere is the highest point on earth?\teven part of my vocabulary\t-12.489724365038086\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, was, even part of my vocabulary) -> even part of my vocabulary (15961ms)\nWhere is the highest point on earth?\ta form of exaggeration\t-12.490063248753005\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word, is, a form of exaggeration) -> a form of exaggeration (15961ms)\nWhere is the highest point on earth?\tCanyon Ski Area\t-12.494210400587253\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Canyon Ski Area, is, Alberta) -> Canyon Ski Area (16229ms)\nWhere is the highest point on earth?\ta name for the Messiah\t-12.502154578159\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, a name for the Messiah) -> a name for the Messiah (16229ms)\nWhere is the highest point on earth?\twhere we want to be\t-12.51144269218218\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, where we want to be) -> where we want to be (16229ms)\nWhere is the highest point on earth?\ta record attendee\t-12.53375846800602\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (the 14th WorldCon, has been recognized as, a record attendee) -> a record attendee (9119ms)\nWhere is the highest point on earth?\tA-Channel?s only concern\t-12.547262217080586\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (A-Channel?s only concern, is, Alberta) -> A-Channel?s only concern (16229ms)\nWhere is the highest point on earth?\tconstant frantic energy\t-12.561472348456906\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (Th modern world, is one of, constant frantic energy) -> constant frantic energy (9120ms)\nWhere is the highest point on earth?\tin\t-12.56437210887549\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, in) -> in (16229ms)\nWhere is the highest point on earth?\ta comfortable margin\t-12.569471587282507\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (a comfortable margin, was, her 9th World Title) -> a comfortable margin (9120ms)\nWhere is the highest point on earth?\tthe Federal Reserve\t-12.601789180307577\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 4th World, would be, the Federal Reserve) -> the Federal Reserve (9119ms)\nWhere is the highest point on earth?\tsystem\t-12.603320944574527\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (system, is best in, th world) -> system (16229ms)\nWhere is the highest point on earth?\tTiffany jewelry\t-12.609135844685678\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Tiffany jewelry, can be quit famous everywhere over, th world) -> Tiffany jewelry (16229ms)\nWhere is the highest point on earth?\tA case in point\t-12.61168259562206\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (A case in point, is, the word) -> A case in point (16339ms)\nWhere is the highest point on earth?\tOn the back of the picture\t-12.630510366561566\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (On the back of the picture, are, the words) -> On the back of the picture (16339ms)\nWhere is the highest point on earth?\ta Moscow hospital\t-12.652853757155363\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (10th World Chess Champion, was taken to, a Moscow hospital) -> a Moscow hospital (16339ms)\nWhere is the highest point on earth?\tnatural gas\t-12.655789640463464\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, have, $x) -> (Alberta, has, natural gas) -> natural gas (16339ms)\nWhere is the highest point on earth?\tOn the walls of the places\t-12.666486898751344\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (On the walls of the places, were, the words) -> On the walls of the places (16339ms)\nWhere is the highest point on earth?\tLater\t-12.668506900331277\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, have, $x) -> (the country, had, Later) -> Later (16339ms)\nWhere is the highest point on earth?\tso true\t-12.669354038356442\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the Word, is, so true) -> so true (16589ms)\nWhere is the highest point on earth?\tfive yellow cards\t-12.676094630927263\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (the 19th World Cup final, has seen, five yellow cards) -> five yellow cards (16589ms)\nWhere is the highest point on earth?\tso diverse\t-12.684645290685307\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, so diverse) -> so diverse (16589ms)\nWhere is the highest point on earth?\trelatively stable\t-12.694542838006706\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, relatively stable) -> relatively stable (16589ms)\nWhere is the highest point on earth?\tone of the few places on earth\t-12.698448748438235\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (Alberta, is, one of the few places on earth) -> one of the few places on earth (16651ms)\nWhere is the highest point on earth?\tthe Empress Theatre\t-12.700551665562498\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (the Empress Theatre, is, Alberta) -> the Empress Theatre (16650ms)\nWhere is the highest point on earth?\ta nail biting finish\t-12.728262313721796\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (the 18th World Memory Championship, had, a nail biting finish) -> a nail biting finish (16651ms)\nWhere is the highest point on earth?\tmore diverse\t-12.731655387056726\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, more diverse) -> more diverse (16651ms)\nWhere is the highest point on earth?\ttour\t-12.734950653854277\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (th Worlds, is on, tour) -> tour (16651ms)\nWhere is the highest point on earth?\teasily accessible\t-12.736450952120773\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, easily accessible) -> easily accessible (16650ms)\nWhere is the highest point on earth?\tso far\t-12.741752203351812\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, was, so far) -> so far (16650ms)\nWhere is the highest point on earth?\tconvention\t-12.752760756416617\tWhere is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (19th World Science Fiction Convention, is a, convention) -> convention (16651ms)\nWhen was Hiroshima bombed?\t1945\t1.9640372080376975\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (Hiroshima, was bombed in, 1945) -> 1945 (4006ms)\nWhen was Hiroshima bombed?\tAugust 6\t0.8801282130439216\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, August 6) -> August 6 (5321ms)\nWhen was Hiroshima bombed?\t1999\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1999) -> 1999 (6697ms)\nWhen was Hiroshima bombed?\t1994\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1994) -> 1994 (6236ms)\nWhen was Hiroshima bombed?\t1946\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1946) -> 1946 (6697ms)\nWhen was Hiroshima bombed?\t2004\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 2004) -> 2004 (6697ms)\nWhen was Hiroshima bombed?\t1976\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1976) -> 1976 (6235ms)\nWhen was Hiroshima bombed?\t1990\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1990) -> 1990 (6236ms)\nWhen was Hiroshima bombed?\t1989\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1989) -> 1989 (6697ms)\nWhen was Hiroshima bombed?\t1997\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1997) -> 1997 (6698ms)\nWhen was Hiroshima bombed?\t1985\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1985) -> 1985 (6738ms)\nWhen was Hiroshima bombed?\t2000\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 2000) -> 2000 (6738ms)\nWhen was Hiroshima bombed?\t1971\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1971) -> 1971 (6738ms)\nWhen was Hiroshima bombed?\t1995\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1995) -> 1995 (6236ms)\nWhen was Hiroshima bombed?\t1982\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1982) -> 1982 (6236ms)\nWhen was Hiroshima bombed?\t1987\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1987) -> 1987 (6236ms)\nWhen was Hiroshima bombed?\t1972\t0.41705086832427307\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1972) -> 1972 (6697ms)\nWhen was Hiroshima bombed?\t2007\t0.34047470094089993\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima Dreams, Publication date, 2007) -> 2007 (6798ms)\nWhen was Hiroshima bombed?\t2005\t0.34047470094089993\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Beyond Hiroshima, Publication date, 2005) -> 2005 (6763ms)\nWhen was Hiroshima bombed?\t1992\t0.34047470094089993\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (My Hiroshima, Publication date, 1992) -> 1992 (6798ms)\nWhen was Hiroshima bombed?\t2003\t0.34047470094089993\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima Joe, Publication date, 2003) -> 2003 (6798ms)\nWhen was Hiroshima bombed?\t2009\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Shambling towards Hiroshima, Publication date, 2009) -> 2009 (6906ms)\nWhen was Hiroshima bombed?\t1964\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima pilot, Publication date, 1964) -> 1964 (6846ms)\nWhen was Hiroshima bombed?\t1996\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima (Apple Paperbacks), Publication date, 1996) -> 1996 (6882ms)\nWhen was Hiroshima bombed?\t1984\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima and Nagasaki, Publication date, 1984) -> 1984 (6822ms)\nWhen was Hiroshima bombed?\t1961\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima mon amour, Publication date, 1961) -> 1961 (6882ms)\nWhen was Hiroshima bombed?\t1970\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Return to Hiroshima, Publication date, 1970) -> 1970 (6846ms)\nWhen was Hiroshima bombed?\t1966\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Postscript from Hiroshima, Publication date, 1966) -> 1966 (6821ms)\nWhen was Hiroshima bombed?\t1983\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Shadows of Hiroshima, Publication date, 1983) -> 1983 (6821ms)\nWhen was Hiroshima bombed?\t1978\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima watch, Publication date, 1978) -> 1978 (6882ms)\nWhen was Hiroshima bombed?\t1965\t0.280915459642721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima pilot, Publication date, 1965) -> 1965 (6882ms)\nWhen was Hiroshima bombed?\t1993\t0.23326806660417843\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (A soul remembers Hiroshima, Publication date, 1993) -> 1993 (6906ms)\nWhen was Hiroshima bombed?\t1975\t0.23326806660417843\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The legacy of Hiroshima, Publication date, 1975) -> 1975 (6929ms)\nWhen was Hiroshima bombed?\t2006\t0.23326806660417843\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (BY HELLSHIP TO HIROSHIMA, Publication date, 2006) -> 2006 (6929ms)\nWhen was Hiroshima bombed?\t1977\t0.23326806660417843\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima flows through us, Publication date, 1977) -> 1977 (6953ms)\nWhen was Hiroshima bombed?\t1960\t0.23326806660417843\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The flowers of Hiroshima, Publication date, 1960) -> 1960 (6906ms)\nWhen was Hiroshima bombed?\t1974\t0.23326806660417843\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (New Letters from Hiroshima, Publication date, 1974) -> 1974 (6929ms)\nWhen was Hiroshima bombed?\t1959\t0.23326806660417843\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The flowers of Hiroshima, Publication date, 1959) -> 1959 (6930ms)\nWhen was Hiroshima bombed?\t1962\t0.23326806660417843\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The legacy of Hiroshima, Publication date, 1962) -> 1962 (6929ms)\nWhen was Hiroshima bombed?\t1988\t0.1942838359362793\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Bajo El Puente de Hiroshima, Publication date, 1988) -> 1988 (6954ms)\nWhen was Hiroshima bombed?\t1980\t0.1942838359362793\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Peace march, Nagasaki to Hiroshima, Publication date, 1980) -> 1980 (6975ms)\nWhen was Hiroshima bombed?\t1973\t0.1942838359362793\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima atomic bomb blast, Publication date, 1973) -> 1973 (6999ms)\nWhen was Hiroshima bombed?\t6 August\t0.08092750529144066\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (The Hiroshima bomb, was dropped on, 6 August) -> 6 August (5321ms)\nWhen was Hiroshima bombed?\t1968\t-0.05672997201199781\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was established in, 1968) -> 1968 (7050ms)\nWhen was Hiroshima bombed?\t1589\t-0.10264367646700823\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was founded in, 1589) -> 1589 (7070ms)\nWhen was Hiroshima bombed?\t1986\t-0.19555847074271115\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima: la bombe, Publication date, 1986) -> 1986 (7251ms)\nWhen was Hiroshima bombed?\t1958\t-0.4261698392577986\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be open in, $x) -> (Hiroshima Bay, was opened in, 1958) -> 1958 (7305ms)\nWhen was Hiroshima bombed?\tAugust 6th\t-0.5237802977436976\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (The Hiroshima bomb, was dropped on, August 6th) -> August 6th (5321ms)\nWhen was Hiroshima bombed?\t1957\t-0.578003640313089\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be build in, $x) -> (Hiroshima Municipal Stadium, was built in, 1957) -> 1957 (7305ms)\nWhen was Hiroshima bombed?\t1998\t-0.5976887336132326\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be establish in, $x) -> (the Hiroshima Peace Institute, was established in, 1998) -> 1998 (5811ms)\nWhen was Hiroshima bombed?\tAugust 6 , 1945 and Nagasaki\t-0.7290391237700387\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, August 6 , 1945 and Nagasaki) -> August 6 , 1945 and Nagasaki (5321ms)\nWhen was Hiroshima bombed?\turanium-235\t-0.7577222857407269\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, uranium-235) -> uranium-235 (5442ms)\nWhen was Hiroshima bombed?\tAugust 6 , 1945\t-0.9783189371002023\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, August 6 , 1945) -> August 6 , 1945 (5442ms)\nWhen was Hiroshima bombed?\t1986-04-01\t-1.036759884976648\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima Joe, Publication date, 1986-04-01) -> 1986-04-01 (7325ms)\nWhen was Hiroshima bombed?\t1987-10-29\t-1.036759884976648\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Saint Hiroshima, Publication date, 1987-10-29) -> 1987-10-29 (7325ms)\nWhen was Hiroshima bombed?\t2009-02-01\t-1.0963191262748269\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Shambling Towards Hiroshima, Publication date, 2009-02-01) -> 2009-02-01 (7325ms)\nWhen was Hiroshima bombed?\t1982-08-01\t-1.0963191262748269\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima No Pika, Publication date, 1982-08-01) -> 1982-08-01 (7350ms)\nWhen was Hiroshima bombed?\t1949\t-1.2403109184574834\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was proclaimed in, 1949) -> 1949 (7350ms)\nWhen was Hiroshima bombed?\tObon\t-1.3923077880004175\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Obon, is, Hiroshima) -> Obon (5601ms)\nWhen was Hiroshima bombed?\t08.15\t-1.63969620549118\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (9:48 am Hiroshima and Nagasaki, were bombed in, 08.15) -> 08.15 (5601ms)\nWhen was Hiroshima bombed?\t1 hour\t-1.6708761904662721\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, 1 hour) -> 1 hour (5601ms)\nWhen was Hiroshima bombed?\t15 kilotons\t-1.6738916007254385\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, 15 kilotons) -> 15 kilotons (5671ms)\nWhen was Hiroshima bombed?\t2 + 2\t-1.7027073225241085\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, IS, 2 + 2) -> 2 + 2 (5672ms)\nWhen was Hiroshima bombed?\tthe 2006 dystopian film\t-1.7423534500890976\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is featured in, the 2006 dystopian film) -> the 2006 dystopian film (7419ms)\nWhen was Hiroshima bombed?\tRhapsody in August\t-1.7478341700746203\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Rhapsody in August) -> Rhapsody in August (7419ms)\nWhen was Hiroshima bombed?\t12 kilotons\t-1.7503893997813122\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, 12 kilotons) -> 12 kilotons (5672ms)\nWhen was Hiroshima bombed?\t1955\t-1.7507635858729906\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, open in, $x) -> (The Hiroshima Peace Memorial Museum, opened in, 1955) -> 1955 (5755ms)\nWhen was Hiroshima bombed?\ta 100 %\t-1.7937331005418162\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a 100 %) -> a 100 % (5672ms)\nWhen was Hiroshima bombed?\tDYING\t-1.798062301385111\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (HIROSHIMA, WAS, DYING) -> DYING (5755ms)\nWhen was Hiroshima bombed?\t1957 and houses\t-1.8408916572588994\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima Castle, was restored in, 1957 and houses) -> 1957 and houses (7419ms)\nWhen was Hiroshima bombed?\tMay 2008\t-1.8594597824911072\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is the place to be in, May 2008) -> May 2008 (7419ms)\nWhen was Hiroshima bombed?\tchoice\t-1.9360969073515908\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (choice, is, Hiroshima) -> choice (5756ms)\nWhen was Hiroshima bombed?\tcivilians\t-1.958986334476486\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, civilians) -> civilians (5756ms)\nWhen was Hiroshima bombed?\tAugust 1945\t-2.0020018633372585\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be destroy in, $x) -> (Hiroshima and Nagasaki, were destroyed in, August 1945) -> August 1945 (5811ms)\nWhen was Hiroshima bombed?\tinterest\t-2.005848793459849\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (interest, is, Hiroshima) -> interest (5811ms)\nWhen was Hiroshima bombed?\ta 13-kiloton nuclear device\t-2.0335368093642208\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a 13-kiloton nuclear device) -> a 13-kiloton nuclear device (5811ms)\nWhen was Hiroshima bombed?\thumanists\t-2.103110562435551\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, humanists) -> humanists (7520ms)\nWhen was Hiroshima bombed?\t20th century\t-2.1522381333762564\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, 20th century) -> 20th century (7520ms)\nWhen was Hiroshima bombed?\tWorld War II\t-2.294407853904045\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (Hiroshima, was bombed back in, World War II) -> World War II (7520ms)\nWhen was Hiroshima bombed?\tAug 6\t-2.3542675606117633\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (HIROSHIMA Hiroshima, was bombed on, Aug 6) -> Aug 6 (7587ms)\nWhen was Hiroshima bombed?\tAug 6th\t-2.35515174701286\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, Aug 6th) -> Aug 6th (7587ms)\nWhen was Hiroshima bombed?\taverage 2.25 cm\t-2.3914829899926437\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (the Hiroshima bomb, were on, average 2.25 cm) -> average 2.25 cm (7587ms)\nWhen was Hiroshima bombed?\tcity\t-2.4393258574819034\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a, city) -> city (7624ms)\nWhen was Hiroshima bombed?\tbook\t-2.4393258574819034\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a, book) -> book (7624ms)\nWhen was Hiroshima bombed?\tnuclear holocaust\t-2.4606149150946477\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (nuclear holocaust, were, Hiroshima) -> nuclear holocaust (7624ms)\nWhen was Hiroshima bombed?\tAugust\t-2.4875298446419474\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, August) -> August (7624ms)\nWhen was Hiroshima bombed?\tAsia\t-2.5897206702616633\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Asia) -> Asia (7624ms)\nWhen was Hiroshima bombed?\ta subject\t-2.678928306834856\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a subject) -> a subject (7644ms)\nWhen was Hiroshima bombed?\ta little\t-2.6865584588858633\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, a little) -> a little (7644ms)\nWhen was Hiroshima bombed?\tquestion\t-2.6981567777812927\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (question, is, Hiroshima) -> question (7644ms)\nWhen was Hiroshima bombed?\tTextured Hair\t-2.725208005229063\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Textured Hair, is, Hiroshima) -> Textured Hair (7644ms)\nWhen was Hiroshima bombed?\tattendance\t-2.731756282641322\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (attendance, were, Hiroshima) -> attendance (7644ms)\nWhen was Hiroshima bombed?\tnative Japanese\t-2.7514971084933406\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, native Japanese) -> native Japanese (7671ms)\nWhen was Hiroshima bombed?\ta military base\t-2.7969733891679027\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a military base) -> a military base (7671ms)\nWhen was Hiroshima bombed?\tAmerica???s revenge\t-2.8063173504911627\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, America???s revenge) -> America???s revenge (7671ms)\nWhen was Hiroshima bombed?\ta blunder\t-2.853054645800142\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a blunder) -> a blunder (7693ms)\nWhen was Hiroshima bombed?\ta nuclear attack\t-2.8787104351494066\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a nuclear attack) -> a nuclear attack (7693ms)\nWhen was Hiroshima bombed?\t1985-08\t-2.887947307523957\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1985-08) -> 1985-08 (7693ms)\nWhen was Hiroshima bombed?\tan environment\t-2.8971345796288945\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, an environment) -> an environment (7693ms)\nWhen was Hiroshima bombed?\tsimple military necessities\t-2.907953523428914\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, simple military necessities) -> simple military necessities (7715ms)\nWhen was Hiroshima bombed?\ta hell\t-2.9317482368413414\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a hell) -> a hell (7716ms)\nWhen was Hiroshima bombed?\tFudoin ryokan\t-2.941599661736967\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Fudoin ryokan, is, Hiroshima) -> Fudoin ryokan (7714ms)\nWhen was Hiroshima bombed?\tone such response\t-2.970149564846553\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, one such response) -> one such response (7737ms)\nWhen was Hiroshima bombed?\tJapan\t-2.984423460841673\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, Japan) -> Japan (7737ms)\nWhen was Hiroshima bombed?\tNext stop\t-2.992883105428108\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Next stop, was, Hiroshima) -> Next stop (7737ms)\nWhen was Hiroshima bombed?\tan ammunition depot\t-2.9963733229890606\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, an ammunition depot) -> an ammunition depot (7737ms)\nWhen was Hiroshima bombed?\tAug 6 , 1945\t-3.0058993653736623\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, occur in, $x) -> (Hiroshima, occurred in, Aug 6 , 1945) -> Aug 6 , 1945 (7757ms)\nWhen was Hiroshima bombed?\ta great honour\t-3.009636277112394\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a great honour) -> a great honour (7757ms)\nWhen was Hiroshima bombed?\tFirst stop\t-3.0362088188070846\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (First stop, was, Hiroshima) -> First stop (7757ms)\nWhen was Hiroshima bombed?\ta port city\t-3.046251244933885\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a port city) -> a port city (7756ms)\nWhen was Hiroshima bombed?\ta well known symbol\t-3.0681148866817667\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a well known symbol) -> a well known symbol (7757ms)\nWhen was Hiroshima bombed?\ta uranium bomb\t-3.071530115723579\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a uranium bomb) -> a uranium bomb (7784ms)\nWhen was Hiroshima bombed?\ta small market\t-3.084336302628948\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a small market) -> a small market (7784ms)\nWhen was Hiroshima bombed?\tjapan\t-3.08906303528022\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a city located in the country, japan) -> japan (7784ms)\nWhen was Hiroshima bombed?\tthe Atomic Bomb\t-3.0979915085452845\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the Atomic Bomb) -> the Atomic Bomb (7784ms)\nWhen was Hiroshima bombed?\ta fully rebuilt city\t-3.1026631987724436\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a fully rebuilt city) -> a fully rebuilt city (7784ms)\nWhen was Hiroshima bombed?\tfinal assembly location\t-3.1056216078939967\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (final assembly location, was, Hiroshima) -> final assembly location (7784ms)\nWhen was Hiroshima bombed?\tThe Guardian last August\t-3.1117360162126446\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (The Guardian last August, has come to be known as, Hiroshima Day) -> The Guardian last August (7803ms)\nWhen was Hiroshima bombed?\ta beautiful spectacle\t-3.1121386490697147\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a beautiful spectacle) -> a beautiful spectacle (7803ms)\nWhen was Hiroshima bombed?\ta beautiful city\t-3.1210451866125264\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a beautiful city) -> a beautiful city (7803ms)\nWhen was Hiroshima bombed?\ta sobering experience\t-3.1210451866125264\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a sobering experience) -> a sobering experience (7803ms)\nWhen was Hiroshima bombed?\ta special case\t-3.1554643624486913\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a special case) -> a special case (7803ms)\nWhen was Hiroshima bombed?\ta fast paced engaging book\t-3.187233369278125\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a fast paced engaging book) -> a fast paced engaging book (7867ms)\nWhen was Hiroshima bombed?\ta long time practitioner\t-3.20788269806031\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a long time practitioner) -> a long time practitioner (7867ms)\nWhen was Hiroshima bombed?\ta two hour flight\t-3.212239114640832\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a two hour flight) -> a two hour flight (7867ms)\nWhen was Hiroshima bombed?\ta modern Mephistopheles\t-3.223486963022719\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a modern Mephistopheles) -> a modern Mephistopheles (7867ms)\nWhen was Hiroshima bombed?\ta very successful meeting\t-3.2246824504903246\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a very successful meeting) -> a very successful meeting (7867ms)\nWhen was Hiroshima bombed?\tan important sake prefecture\t-3.258282008052649\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, an important sake prefecture) -> an important sake prefecture (7867ms)\nWhen was Hiroshima bombed?\ta communications center\t-3.262391638991623\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a communications center) -> a communications center (7968ms)\nWhen was Hiroshima bombed?\ta more manageable size\t-3.276850133284857\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a more manageable size) -> a more manageable size (7968ms)\nWhen was Hiroshima bombed?\ta very industrial city\t-3.3069128398382053\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a very industrial city) -> a very industrial city (7968ms)\nWhen was Hiroshima bombed?\tWorld history\t-3.331005006780124\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, World history) -> World history (8021ms)\nWhen was Hiroshima bombed?\tNuclear weapon\t-3.331005006780124\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Nuclear weapon) -> Nuclear weapon (7968ms)\nWhen was Hiroshima bombed?\tModern history\t-3.331005006780124\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Modern history) -> Modern history (7968ms)\nWhen was Hiroshima bombed?\tMilitary history\t-3.331005006780124\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Military history) -> Military history (7968ms)\nWhen was Hiroshima bombed?\ta three-piece Indie pop act\t-3.331422165364446\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, a three-piece Indie pop act) -> a three-piece Indie pop act (8021ms)\nWhen was Hiroshima bombed?\tthe Consulate General?s jurisdiction\t-3.331670375282679\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the Consulate General?s jurisdiction, is, Hiroshima) -> the Consulate General?s jurisdiction (8021ms)\nWhen was Hiroshima bombed?\ta major military target\t-3.3352071735893603\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a major military target) -> a major military target (8021ms)\nWhen was Hiroshima bombed?\ta VERY important part\t-3.35465953792496\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a VERY important part) -> a VERY important part (8021ms)\nWhen was Hiroshima bombed?\tWonders Are Many\t-3.3718456293845893\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Wonders Are Many) -> Wonders Are Many (8021ms)\nWhen was Hiroshima bombed?\tquiet\t-3.375278280699085\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, quiet) -> quiet (8118ms)\nWhen was Hiroshima bombed?\tWilliam Shawn\t-3.3894027714818487\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, William Shawn) -> William Shawn (8118ms)\nWhen was Hiroshima bombed?\tthe Peace Park and Museum\t-3.3897792583712443\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the Peace Park and Museum) -> the Peace Park and Museum (8118ms)\nWhen was Hiroshima bombed?\tWorld War II buffs\t-3.395268071271096\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (World War II buffs, are, Hiroshima) -> World War II buffs (8118ms)\nWhen was Hiroshima bombed?\ta picturesque , quiet city\t-3.439294329260192\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a picturesque , quiet city) -> a picturesque , quiet city (8139ms)\nWhen was Hiroshima bombed?\tAn equally huge disappointment\t-3.4509725523723094\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (An equally huge disappointment, was, Hiroshima) -> An equally huge disappointment (8138ms)\nWhen was Hiroshima bombed?\tNuclear warfare\t-3.467140415461676\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (The Hiroshima Panels, Subject, Nuclear warfare) -> Nuclear warfare (8138ms)\nWhen was Hiroshima bombed?\ta very cool city and thanks\t-3.472303024933091\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a very cool city and thanks) -> a very cool city and thanks (8139ms)\nWhen was Hiroshima bombed?\tAtomic bombings of Hiroshima and Nagasaki\t-3.514787808500219\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Atomic bombings of Hiroshima and Nagasaki) -> Atomic bombings of Hiroshima and Nagasaki (8156ms)\nWhen was Hiroshima bombed?\tPopular literature\t-3.553772039168118\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (From Hiroshima to the moon, Subjects, Popular literature) -> Popular literature (8156ms)\nWhen was Hiroshima bombed?\tShintenchi\t-3.592797198438004\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Shintenchi, was, Hiroshima) -> Shintenchi (8173ms)\nWhen was Hiroshima bombed?\ta street corner\t-3.6144597631765842\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (post-bomb Hiroshima, was found on, a street corner) -> a street corner (8192ms)\nWhen was Hiroshima bombed?\tbusiness\t-3.6390244238587237\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, will be in, business) -> business (8192ms)\nWhen was Hiroshima bombed?\tDestroyed\t-3.6431318876007923\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, Was, Destroyed) -> Destroyed (8192ms)\nWhen was Hiroshima bombed?\tAuthorities Concept Scheme\t-3.656704038053911\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (Atomic bomb victims--Japan--Hiroshima-shi--Biography, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (8215ms)\nWhen was Hiroshima bombed?\tTopical Terms Concept Scheme\t-3.656704038053911\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (Atomic bomb victims--Japan--Hiroshima-shi--Biography, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (8215ms)\nWhen was Hiroshima bombed?\t8:48 pm Photos\t-3.657246337689449\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (8:48 pm Photos, have been discovered of, Hiroshima) -> 8:48 pm Photos (8215ms)\nWhen was Hiroshima bombed?\tThe Hiroshima Panels\t-3.657729987615849\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Art Series on the Subject, The Hiroshima Panels) -> The Hiroshima Panels (8233ms)\nWhen was Hiroshima bombed?\tBlack Rain\t-3.657729987615849\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Black Rain) -> Black Rain (8233ms)\nWhen was Hiroshima bombed?\tBombed\t-3.663533006464744\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, Was, Bombed) -> Bombed (8233ms)\nWhen was Hiroshima bombed?\tThe Atom Strikes!\t-3.6755977600053025\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, The Atom Strikes!) -> The Atom Strikes! (8254ms)\nWhen was Hiroshima bombed?\tEmpire of the Sun\t-3.6755977600053025\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Empire of the Sun) -> Empire of the Sun (8233ms)\nWhen was Hiroshima bombed?\tPeace Street\t-3.6838217631872228\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Peace Street, is, Hiroshima) -> Peace Street (8254ms)\nWhen was Hiroshima bombed?\tA Tale of Two Cities\t-3.6913634415254086\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, A Tale of Two Cities) -> A Tale of Two Cities (8254ms)\nWhen was Hiroshima bombed?\tBattles Without Honor and Humanity\t-3.6913634415254086\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Battles Without Honor and Humanity) -> Battles Without Honor and Humanity (8254ms)\nWhen was Hiroshima bombed?\tFirst Yank into Tokyo\t-3.6913634415254086\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, First Yank into Tokyo) -> First Yank into Tokyo (8254ms)\nWhen was Hiroshima bombed?\tB-29 bombers\t-3.7043073540669402\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (B-29 bombers, had been made upon, Hiroshima) -> B-29 bombers (8281ms)\nWhen was Hiroshima bombed?\tWhite Light/Black Rain: The Destruction of Hiroshima and Nagasaki\t-3.705377380654392\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, White Light/Black Rain: The Destruction of Hiroshima and Nagasaki) -> White Light/Black Rain: The Destruction of Hiroshima and Nagasaki (8281ms)\nWhen was Hiroshima bombed?\tthe bombing 1945 Frank Barrett\t-3.7201469891178878\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the bombing 1945 Frank Barrett, has been visiting, Hiroshima) -> the bombing 1945 Frank Barrett (8281ms)\nWhen was Hiroshima bombed?\t1,000 cranes\t-3.809030486220635\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (1,000 cranes, will be sent to, the Hiroshima Peace Memorial) -> 1,000 cranes (8281ms)\nWhen was Hiroshima bombed?\t800 atomic bombs\t-3.8340213159801912\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (800 atomic bombs, had been used on, Hiroshima) -> 800 atomic bombs (8281ms)\nWhen was Hiroshima bombed?\tpetitioner?s exhibit 6\t-3.878454840583216\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima victims, are also mentioned in, petitioner?s exhibit 6) -> petitioner?s exhibit 6 (8297ms)\nWhen was Hiroshima bombed?\truins\t-3.8999273005540513\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was certainly in, ruins) -> ruins (8297ms)\nWhen was Hiroshima bombed?\tteaching\t-3.908955407361732\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (teaching, will be done in, Hiroshima) -> teaching (8298ms)\nWhen was Hiroshima bombed?\ta war crime\t-3.9149225744469027\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a war crime) -> a war crime (8298ms)\nWhen was Hiroshima bombed?\tnuclear war\t-3.937001531194654\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (nuclear war, had been demonstrated in, Hiroshima) -> nuclear war (8319ms)\nWhen was Hiroshima bombed?\tHondori Street\t-3.937586527844227\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Hondori Street, is, Hiroshima) -> Hondori Street (8319ms)\nWhen was Hiroshima bombed?\tcities\t-3.9601717247744963\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (100 Hiroshima-sized bombs, were dropped on, cities) -> cities (8318ms)\nWhen was Hiroshima bombed?\tthree days\t-3.9644737510708206\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, three days) -> three days (8319ms)\nWhen was Hiroshima bombed?\tdifferent\t-3.999503016197078\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, different) -> different (8335ms)\nWhen was Hiroshima bombed?\twell-known\t-3.999503016197078\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, well-known) -> well-known (8335ms)\nWhen was Hiroshima bombed?\tsmall\t-3.999503016197078\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, small) -> small (8319ms)\nWhen was Hiroshima bombed?\tnecessary\t-3.999503016197078\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, necessary) -> necessary (8335ms)\nWhen was Hiroshima bombed?\tLittle Boy\t-4.012747885520027\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Little Boy, was dropped on, Hiroshima) -> Little Boy (8335ms)\nWhen was Hiroshima bombed?\tMazda\t-4.020839759103643\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Mazda, is a company headquartered in the city, hiroshima) -> Mazda (8335ms)\nWhen was Hiroshima bombed?\tfamous for its oysters\t-4.061971761270349\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, famous for its oysters) -> famous for its oysters (8369ms)\nWhen was Hiroshima bombed?\tan act of terrorism\t-4.102950852267778\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, an act of terrorism) -> an act of terrorism (8369ms)\nWhen was Hiroshima bombed?\trads\t-4.108719548294754\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (rads, have been found in, Hiroshima) -> rads (8369ms)\nWhen was Hiroshima bombed?\tan atomic bomb\t-4.111866552193861\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (an atomic bomb, was dropped, Hiroshima) -> an atomic bomb (8369ms)\nWhen was Hiroshima bombed?\tthe Times\t-4.142319053154784\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were being printed in, the Times) -> the Times (8431ms)\nWhen was Hiroshima bombed?\tPlaces\t-4.160680174092382\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Places) -> Places (8431ms)\nWhen was Hiroshima bombed?\tHistory\t-4.160680174092382\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, History) -> History (8431ms)\nWhen was Hiroshima bombed?\tthe time\t-4.171713613255498\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the time, was, Hiroshima) -> the time (8448ms)\nWhen was Hiroshima bombed?\tglobal citizenship\t-4.236744568433925\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (global citizenship, will be held in, Hiroshima) -> global citizenship (8448ms)\nWhen was Hiroshima bombed?\tThe New Yorker\t-4.2531521217732315\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was published in, The New Yorker) -> The New Yorker (8448ms)\nWhen was Hiroshima bombed?\tMacArthur\t-4.273906082320194\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, MacArthur) -> MacArthur (8474ms)\nWhen was Hiroshima bombed?\tjeopardy\t-4.280997666315084\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, may be in, jeopardy) -> jeopardy (8474ms)\nWhen was Hiroshima bombed?\tnuclear weapons\t-4.314230199303221\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were bombed with, nuclear weapons) -> nuclear weapons (8474ms)\nWhen was Hiroshima bombed?\ta city\t-4.314543078058616\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a city) -> a city (8474ms)\nWhen was Hiroshima bombed?\tcancer\t-4.386069898676176\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (cancer, has been shown in, Hiroshima and Nagasaki survivors) -> cancer (8497ms)\nWhen was Hiroshima bombed?\tbombs\t-4.41603816936338\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (bombs, had been dropped on, Hiroshima and Nagasaki) -> bombs (8496ms)\nWhen was Hiroshima bombed?\tgreat part\t-4.431803239094509\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, great part) -> great part (8496ms)\nWhen was Hiroshima bombed?\tbetter shape\t-4.4328089947604745\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is in far, better shape) -> better shape (8496ms)\nWhen was Hiroshima bombed?\tterms\t-4.478932733494196\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was negligible in, terms) -> terms (8513ms)\nWhen was Hiroshima bombed?\ttune\t-4.4889702430796525\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (The Hiroshima, are so in, tune) -> tune (8513ms)\nWhen was Hiroshima bombed?\ta military target\t-4.493043820985951\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a military target) -> a military target (8513ms)\nWhen was Hiroshima bombed?\tcharge\t-4.5002786870086675\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are still in, charge) -> charge (8513ms)\nWhen was Hiroshima bombed?\tYakuza\t-4.518035621881456\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Battles Without Honor and Humanity: Hiroshima Deathmatch, Subjects, Yakuza) -> Yakuza (8699ms)\nWhen was Hiroshima bombed?\tMr. Shrestha\t-4.518084195104648\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Mr. Shrestha, will be in, Hiroshima) -> Mr. Shrestha (8700ms)\nWhen was Hiroshima bombed?\ta living hell\t-4.53052753095414\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were in, a living hell) -> a living hell (8699ms)\nWhen was Hiroshima bombed?\tan atomic bomb named   Little Boy\t-4.5353370736454455\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (an atomic bomb named   Little Boy, was dropped on, Hiroshima) -> an atomic bomb named   Little Boy (8699ms)\nWhen was Hiroshima bombed?\ta modern city\t-4.539147309944896\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a modern city) -> a modern city (8700ms)\nWhen was Hiroshima bombed?\tthe president\t-4.54128939769539\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the president) -> the president (8700ms)\nWhen was Hiroshima bombed?\tHiroshima\t-4.545524502480616\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Hiroshima) -> Hiroshima (8716ms)\nWhen was Hiroshima bombed?\tInsignificance\t-4.569086400137039\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Insignificance) -> Insignificance (8716ms)\nWhen was Hiroshima bombed?\tpart\t-4.56912095855883\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was targeted in, part) -> part (8716ms)\nWhen was Hiroshima bombed?\ta big city\t-4.574023252999025\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a big city) -> a big city (8716ms)\nWhen was Hiroshima bombed?\tMacArthur?s pilot\t-4.595772083182176\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, MacArthur?s pilot) -> MacArthur?s pilot (8716ms)\nWhen was Hiroshima bombed?\tThe A-bomb\t-4.600042705018212\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The A-bomb, was dropped on, Hiroshima) -> The A-bomb (8738ms)\nWhen was Hiroshima bombed?\tWWII curriculum\t-4.608024157548755\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is barely mentioned in, WWII curriculum) -> WWII curriculum (8738ms)\nWhen was Hiroshima bombed?\tpeace cranes\t-4.60808872567601\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (peace cranes, have been sent to, Hiroshima) -> peace cranes (8737ms)\nWhen was Hiroshima bombed?\texcessive numbers\t-4.609401740018523\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are now dying in, excessive numbers) -> excessive numbers (8737ms)\nWhen was Hiroshima bombed?\tHiroshima Witness\t-4.633296542420876\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Hiroshima Witness) -> Hiroshima Witness (8737ms)\nWhen was Hiroshima bombed?\tYamaguchi\t-4.6372816620863055\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Yamaguchi, was in, Hiroshima) -> Yamaguchi (8737ms)\nWhen was Hiroshima bombed?\tMatouqin Nocturne\t-4.653716853723109\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Matouqin Nocturne) -> Matouqin Nocturne (8753ms)\nWhen was Hiroshima bombed?\ta mess\t-4.6569678200820945\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was just in, a mess) -> a mess (8754ms)\nWhen was Hiroshima bombed?\tthe order\t-4.659090808957984\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (the Hiroshima bombs, were only on, the order) -> the order (8753ms)\nWhen was Hiroshima bombed?\ta man\t-4.6637286386499675\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a man, had been a doctor in, Hiroshima) -> a man (8754ms)\nWhen was Hiroshima bombed?\ta flash\t-4.666301776808039\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was destroyed in, a flash) -> a flash (8754ms)\nWhen was Hiroshima bombed?\tdate\t-4.6724266188930486\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (date, have been, Hiroshima and Auschwitz) -> date (8754ms)\nWhen was Hiroshima bombed?\tflames\t-4.674396629287502\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was completely enveloped in, flames) -> flames (8771ms)\nWhen was Hiroshima bombed?\tmemory\t-4.687914765738834\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is mainly dedicated in, memory) -> memory (8772ms)\nWhen was Hiroshima bombed?\tbloody puddles\t-4.708251316475531\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were soaked in, bloody puddles) -> bloody puddles (8771ms)\nWhen was Hiroshima bombed?\tthe finals\t-4.709286974697832\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the finals) -> the finals (8771ms)\nWhen was Hiroshima bombed?\tthe connection\t-4.722549981523461\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the connection, is, Hiroshima) -> the connection (8771ms)\nWhen was Hiroshima bombed?\trightly open to question\t-4.727175587765771\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, rightly open to question) -> rightly open to question (8771ms)\nWhen was Hiroshima bombed?\tthe region\t-4.73928516582622\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the region, is, Hiroshima) -> the region (8790ms)\nWhen was Hiroshima bombed?\ta showcase\t-4.75062822262386\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed as, a showcase) -> a showcase (8791ms)\nWhen was Hiroshima bombed?\tAppalachia\t-4.756539422220398\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is exploded in, Appalachia) -> Appalachia (8790ms)\nWhen was Hiroshima bombed?\tthe Uranium bomb\t-4.756694309639139\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the Uranium bomb, was dropped on, Hiroshima) -> the Uranium bomb (8790ms)\nWhen was Hiroshima bombed?\tdefence\t-4.759247049550005\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (defence, will be the major issue at, Hiroshima Day) -> defence (8791ms)\nWhen was Hiroshima bombed?\tthe warrior\t-4.761062405699363\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the warrior, was, Hiroshima) -> the warrior (8811ms)\nWhen was Hiroshima bombed?\tbomb-damaged artifacts\t-4.762783847856687\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (bomb-damaged artifacts, will be lent by, Hiroshima and Nagasaki) -> bomb-damaged artifacts (8811ms)\nWhen was Hiroshima bombed?\ta tie-up\t-4.763707534956216\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima prefecture, is being developed in, a tie-up) -> a tie-up (8811ms)\nWhen was Hiroshima bombed?\twars\t-4.771466760576547\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (wars, have been fought since, Hiroshima and Nagasaki) -> wars (8811ms)\nWhen was Hiroshima bombed?\tmajor journals\t-4.783159899291816\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, has been published in, major journals) -> major journals (8811ms)\nWhen was Hiroshima bombed?\tage groups\t-4.791738743185988\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima males, was significantly high in, age groups) -> age groups (8835ms)\nWhen was Hiroshima bombed?\tfiery , emotional , and incredibly memorable\t-4.795932783577351\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, fiery , emotional , and incredibly memorable) -> fiery , emotional , and incredibly memorable (8835ms)\nWhen was Hiroshima bombed?\tOmine-machi\t-4.803744659946744\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima # 6, was in, Omine-machi) -> Omine-machi (8835ms)\nWhen was Hiroshima bombed?\tthe cumulative effect\t-4.807386349328903\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the cumulative effect, is, Hiroshima) -> the cumulative effect (8835ms)\nWhen was Hiroshima bombed?\ta Korean prince\t-4.81920559653845\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a Korean prince, had been stationed in, Hiroshima) -> a Korean prince (8835ms)\nWhen was Hiroshima bombed?\tNEC Hiroshima\t-4.822948814364111\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (NEC Hiroshima, will be re-assigned to, Hiroshima Elpida) -> NEC Hiroshima (8851ms)\nWhen was Hiroshima bombed?\tLondon\t-4.831639456250217\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was staged in, London) -> London (8851ms)\nWhen was Hiroshima bombed?\tconventional human scale\t-4.8353275820863475\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was built in, conventional human scale) -> conventional human scale (8851ms)\nWhen was Hiroshima bombed?\ta city of military importance\t-4.837032906893148\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a city of military importance) -> a city of military importance (8852ms)\nWhen was Hiroshima bombed?\torigami cranes\t-4.842336557870159\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (origami cranes, have been sent to, Hiroshima) -> origami cranes (8851ms)\nWhen was Hiroshima bombed?\tthe flame\t-4.8463376587458304\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the flame, was, Hiroshima) -> the flame (8851ms)\nWhen was Hiroshima bombed?\tthe Air and Space museum\t-4.84937065378509\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, be told in, the Air and Space museum) -> the Air and Space museum (8870ms)\nWhen was Hiroshima bombed?\tJapan 's seventh largest city\t-4.8550324270659635\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, Japan 's seventh largest city) -> Japan 's seventh largest city (8870ms)\nWhen was Hiroshima bombed?\tthe ultimate symbol\t-4.860438218524532\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the ultimate symbol) -> the ultimate symbol (8871ms)\nWhen was Hiroshima bombed?\twar\t-4.869771772649042\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (war, could have been even slightly prepared for, Hiroshima) -> war (8870ms)\nWhen was Hiroshima bombed?\tGenius\t-4.87539106967053\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (The genius of Einstein leads to Hiroshima., Subjects, Genius) -> Genius (8870ms)\nWhen was Hiroshima bombed?\tTaka\t-4.876698949563408\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Taka, has been a popular part of, Hiroshima?s nightlife scene) -> Taka (8870ms)\nWhen was Hiroshima bombed?\tDisarmament\t-4.8787526207529615\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Disarmament, will be marking, Hiroshima Day) -> Disarmament (8870ms)\nWhen was Hiroshima bombed?\tpaper origami cranes\t-4.881991483675582\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is now draped in, paper origami cranes) -> paper origami cranes (8946ms)\nWhen was Hiroshima bombed?\ta new production line\t-4.88833989788125\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (a new production line, will be built in, Hiroshima) -> a new production line (8946ms)\nWhen was Hiroshima bombed?\tsymbolic value\t-4.890833453091139\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, has been extremely rich in, symbolic value) -> symbolic value (8946ms)\nWhen was Hiroshima bombed?\tThe target\t-4.891923679535094\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The target, was, Hiroshima) -> The target (8946ms)\nWhen was Hiroshima bombed?\tAn Atomic Bomb\t-4.898301784314418\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (An Atomic Bomb, had been dropped on, Hiroshima) -> An Atomic Bomb (8946ms)\nWhen was Hiroshima bombed?\tTokyo\t-4.901491077875861\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is headquartered in, Tokyo) -> Tokyo (9028ms)\nWhen was Hiroshima bombed?\tAmerican warplanes\t-4.904588394524861\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were bombed by, American warplanes) -> American warplanes (9028ms)\nWhen was Hiroshima bombed?\ta large conference\t-4.909401631025641\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (a large conference, will be held in, Hiroshima) -> a large conference (9028ms)\nWhen was Hiroshima bombed?\tthe atomic bomb\t-4.919287246139424\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the atomic bomb, is, Hiroshima) -> the atomic bomb (9028ms)\nWhen was Hiroshima bombed?\tno sizeable store of explosives\t-4.920386609990888\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (no sizeable store of explosives, was in, Hiroshima) -> no sizeable store of explosives (9028ms)\nWhen was Hiroshima bombed?\ta city of considerable military importance\t-4.921187737575264\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a city of considerable military importance) -> a city of considerable military importance (9028ms)\nWhen was Hiroshima bombed?\tBintulu\t-4.921830124213705\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Bintulu, will be delivered to, Hiroshima Gas) -> Bintulu (9028ms)\nWhen was Hiroshima bombed?\tDag Hammarskjold Park\t-4.922656775726418\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima Day, was held in, Dag Hammarskjold Park) -> Dag Hammarskjold Park (9047ms)\nWhen was Hiroshima bombed?\tIraq\t-4.923294919536343\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, occur in, $x) -> (Hiroshima-esqe tragedies, are occurring today in, Iraq) -> Iraq (9047ms)\nWhen was Hiroshima bombed?\tthe Atom Bomb\t-4.925882985025565\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the Atom Bomb, had been dropped on, Hiroshima) -> the Atom Bomb (9047ms)\nWhen was Hiroshima bombed?\tthe Canadian journal Public\t-4.927085569856753\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is forthcoming in, the Canadian journal Public) -> the Canadian journal Public (9047ms)\nWhen was Hiroshima bombed?\tthe Japan\t-4.933861403245552\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, would Barefoot Gen be published in, the Japan) -> the Japan (9047ms)\nWhen was Hiroshima bombed?\tan entire issue\t-4.9368117256734045\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was first published in, an entire issue) -> an entire issue (9047ms)\nWhen was Hiroshima bombed?\tAmerican POWs\t-4.939166475136651\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (American POWs, might have been held near, Hiroshima or Nagasaki) -> American POWs (9047ms)\nWhen was Hiroshima bombed?\tMidnight\t-4.940646459364146\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Midnight, will be Autumn in, Hiroshima) -> Midnight (9068ms)\nWhen was Hiroshima bombed?\tfamous for all the wrong reasons\t-4.941588856439216\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, famous for all the wrong reasons) -> famous for all the wrong reasons (9068ms)\nWhen was Hiroshima bombed?\ta nuclear bomb\t-4.946145682399349\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a nuclear bomb, had been dropped in, Hiroshima) -> a nuclear bomb (9068ms)\nWhen was Hiroshima bombed?\ta Fujiyama mama\t-4.966149302521352\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a Fujiyama mama, has been to, Nagasaki and Hiroshima) -> a Fujiyama mama (9068ms)\nWhen was Hiroshima bombed?\ta huge bomb\t-4.992123954981616\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a huge bomb, had been dropped on, Hiroshima) -> a huge bomb (9068ms)\nWhen was Hiroshima bombed?\tFinal preparations\t-5.004536615725164\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Final preparations, have been made for, the American Hiroshima) -> Final preparations (9068ms)\nWhen was Hiroshima bombed?\ta project to collect paper cranes\t-5.0235626921854175\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (a project to collect paper cranes, to be sent to, Hiroshima) -> a project to collect paper cranes (9177ms)\nWhen was Hiroshima bombed?\tKyoto\t-5.033731021024225\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Kyoto, will be different than in, Hiroshima) -> Kyoto (9177ms)\nWhen was Hiroshima bombed?\ta combat atomic bomb\t-5.0341679832175465\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (a combat atomic bomb, will be dropped on, Hiroshima) -> a combat atomic bomb (9177ms)\nWhen was Hiroshima bombed?\tthe initial target\t-5.038097435918665\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the initial target) -> the initial target (9177ms)\nWhen was Hiroshima bombed?\tNagasaki\t-5.04144502664653\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were higher than in, Nagasaki) -> Nagasaki (9177ms)\nWhen was Hiroshima bombed?\t?An atom bomb\t-5.049104874276928\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (?An atom bomb, has been dropped on, Hiroshima) -> ?An atom bomb (9177ms)\nWhen was Hiroshima bombed?\tless person\t-5.050575384636783\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (less person, had been burnt by, the Hiroshima atomic bomb) -> less person (9177ms)\nWhen was Hiroshima bombed?\tSydney\t-5.064434189288811\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, will be commemorated in, Sydney) -> Sydney (9201ms)\nWhen was Hiroshima bombed?\tan atomic weapon\t-5.065114928874286\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (the day Hiroshima, was bombed with, an atomic weapon) -> an atomic weapon (9201ms)\nWhen was Hiroshima bombed?\tno effects\t-5.066947869803736\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (no effects, have been seen in, Hiroshima or Nagasaki) -> no effects (9201ms)\nWhen was Hiroshima bombed?\tthe United States\t-5.072188472785354\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were bombed by, the United States) -> the United States (9201ms)\nWhen was Hiroshima bombed?\tThe primary target\t-5.07572567369347\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The primary target, was, Hiroshima) -> The primary target (9201ms)\nWhen was Hiroshima bombed?\tA hit\t-5.076674025620388\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (A hit, would have been like, 20 Hiroshima bombs) -> A hit (9201ms)\nWhen was Hiroshima bombed?\t60 years ago\t-5.087176478374883\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were bombed, 60 years ago) -> 60 years ago (9201ms)\nWhen was Hiroshima bombed?\tmanga\t-5.087956609046806\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (?Hiroshima stories, have long been a part of, manga) -> manga (9201ms)\nWhen was Hiroshima bombed?\tan ' Atomic bomb\t-5.095242203554891\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (an ' Atomic bomb, had been dropped on, Hiroshima) -> an ' Atomic bomb (9217ms)\nWhen was Hiroshima bombed?\tA & H Bombs\t-5.100247974726228\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (A & H Bombs, will be held in, Hiroshima and Nagasaki) -> A & H Bombs (9217ms)\nWhen was Hiroshima bombed?\tthe Chugoku region\t-5.102381142789156\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (Hiroshima, is part of, the Chugoku region) -> the Chugoku region (9217ms)\nWhen was Hiroshima bombed?\tthe prime target\t-5.103592640963788\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the prime target) -> the prime target (9217ms)\nWhen was Hiroshima bombed?\tevery four years\t-5.111585036846871\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (every four years, will be held henceforth first in, Hiroshima) -> every four years (9217ms)\nWhen was Hiroshima bombed?\tthe first practical application\t-5.132892677678614\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first practical application, was, Hiroshima) -> the first practical application (9231ms)\nWhen was Hiroshima bombed?\ttwo nuclear bombs\t-5.176131487363641\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (two nuclear bombs, had been thrown on, Hiroshima and Nagasaki) -> two nuclear bombs (9231ms)\nWhen was Hiroshima bombed?\tthe perfect nuclear target\t-5.203693106534905\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the perfect nuclear target) -> the perfect nuclear target (9231ms)\nWhen was Hiroshima bombed?\tThe most useful books\t-5.225798030073793\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The most useful books, were, Hiroshima) -> The most useful books (9231ms)\nWhen was Hiroshima bombed?\tthe Fifth Floor\t-5.257201428644216\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be open in, $x) -> (Hiroshima University Office, was opened in, the Fifth Floor) -> the Fifth Floor (9231ms)\nWhen was Hiroshima bombed?\tthe issues\t-5.268905225707869\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> (the Hiroshima bombing, were well versed in, the issues) -> the issues (9250ms)\nWhen was Hiroshima bombed?\tthe only nuclear incident country\t-5.288327845167842\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the only nuclear incident country) -> the only nuclear incident country (9249ms)\nWhen was Hiroshima bombed?\ta bridge balustrade\t-5.291620551778086\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (The Hiroshima stone, was part of, a bridge balustrade) -> a bridge balustrade (9249ms)\nWhen was Hiroshima bombed?\tthe great French writer Albert Camus\t-5.321336593543036\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the great French writer Albert Camus) -> the great French writer Albert Camus (9249ms)\nWhen was Hiroshima bombed?\tthe most awful option imaginable\t-5.329759969367947\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the most awful option imaginable) -> the most awful option imaginable (9249ms)\nWhen was Hiroshima bombed?\tpoems\t-5.335810385142686\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (a ?Hiroshima survivor?, is going to read, poems) -> poems (9249ms)\nWhen was Hiroshima bombed?\tthe rubble\t-5.34848305585246\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> (Hiroshima bombing victims, were found in, the rubble) -> the rubble (9249ms)\nWhen was Hiroshima bombed?\ta chapter\t-5.364530970733301\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, is the subject of, a chapter) -> a chapter (9262ms)\nWhen was Hiroshima bombed?\tThe New Yorker magazine\t-5.484200323832784\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (?Hiroshima?, was published in, The New Yorker magazine) -> The New Yorker magazine (9262ms)\nWhen was Hiroshima bombed?\ta madhouse\t-5.511566928836208\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, is going to be, a madhouse) -> a madhouse (9262ms)\nWhen was Hiroshima bombed?\tBenwa and his parents\t-5.533885820999282\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Benwa and his parents, had been outside, Hiroshima) -> Benwa and his parents (9262ms)\nWhen was Hiroshima bombed?\tTsutomu Yamaguchi\t-5.549559038466793\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Tsutomu Yamaguchi, was in, Hiroshima) -> Tsutomu Yamaguchi (9262ms)\nWhen was Hiroshima bombed?\tthe Packers\t-5.553210354222145\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (Hiroshima bomb, blasted in, the Packers) -> the Packers (9285ms)\nWhen was Hiroshima bombed?\tthe target\t-5.559196474596874\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the target) -> the target (9285ms)\nWhen was Hiroshima bombed?\tworld federalism\t-5.577063952916306\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (the Hiroshima bombing, stimulated interest in, world federalism) -> world federalism (9284ms)\nWhen was Hiroshima bombed?\ta typical reactor\t-5.58914969294227\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (several hundred Hiroshima bombs, exists in, a typical reactor) -> a typical reactor (9284ms)\nWhen was Hiroshima bombed?\ta fifty-fold increase\t-5.646851006414693\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (40,000 Hiroshima bombs, resulted in, a fifty-fold increase) -> a fifty-fold increase (9285ms)\nWhen was Hiroshima bombed?\tHBO/Cinemax\t-5.707060790700157\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> $x: (hiroshima bomb, on, $x) -> (the Hiroshima bombing, aired on, HBO/Cinemax) -> HBO/Cinemax (9300ms)\nWhen was Hiroshima bombed?\tMurasaki\t-5.727190174460796\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Murasaki, will be visiting in, Hiroshima pref) -> Murasaki (9300ms)\nWhen was Hiroshima bombed?\tYoshinori Sakai\t-5.7287475081090315\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Yoshinori Sakai, had been born in, Hiroshima) -> Yoshinori Sakai (9300ms)\nWhen was Hiroshima bombed?\tLivermore California\t-5.764363648391782\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were arrested in, Livermore California) -> Livermore California (9300ms)\nWhen was Hiroshima bombed?\tSimucad\t-5.790093415849755\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Simucad, has been working with, Hiroshima University) -> Simucad (9300ms)\nWhen was Hiroshima bombed?\tthe Hiroshima city\t-5.80400978163037\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (the Hiroshima Atomic bomb, held next day in, the Hiroshima city) -> the Hiroshima city (9300ms)\nWhen was Hiroshima bombed?\ta new type of bomb\t-5.818402122131921\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a new type of bomb, had been dropped on, Hiroshima) -> a new type of bomb (9442ms)\nWhen was Hiroshima bombed?\thome or travel\t-5.838152885685507\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, has started to go, home or travel) -> home or travel (9441ms)\nWhen was Hiroshima bombed?\tthe bomb\t-5.849312520597242\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the bomb, was dropped in, Hiroshima) -> the bomb (9441ms)\nWhen was Hiroshima bombed?\tRamirez\t-5.860829276578791\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Ramirez, had been with, the Hiroshima Carp) -> Ramirez (9441ms)\nWhen was Hiroshima bombed?\tThe bomb\t-5.863787344787419\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The bomb, was dropped over, Hiroshima) -> The bomb (9441ms)\nWhen was Hiroshima bombed?\tThe one word response\t-5.869137141142339\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The one word response, was, ?Hiroshima) -> The one word response (9441ms)\nWhen was Hiroshima bombed?\tthe atomic-bomb\t-5.9190644067055\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the atomic-bomb, was dropped on, Hiroshima) -> the atomic-bomb (9543ms)\nWhen was Hiroshima bombed?\tthe nuclear bomb\t-5.923703809518684\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the nuclear bomb, was dropped on, Hiroshima) -> the nuclear bomb (9543ms)\nWhen was Hiroshima bombed?\tthe capital of Hiroshima Prefecture\t-5.925290279089783\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the capital of Hiroshima Prefecture) -> the capital of Hiroshima Prefecture (9543ms)\nWhen was Hiroshima bombed?\tthe south\t-5.956581167184643\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was my last big city in, the south) -> the south (9543ms)\nWhen was Hiroshima bombed?\tThe atomic bomb\t-6.02395363078598\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The atomic bomb, was used against, Hiroshima) -> The atomic bomb (9632ms)\nWhen was Hiroshima bombed?\tthe cold war\t-6.06451784650535\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was a first shot in, the cold war) -> the cold war (9733ms)\nWhen was Hiroshima bombed?\tthe capital city of Hiroshima Prefecture\t-6.064809880550093\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the capital city of Hiroshima Prefecture) -> the capital city of Hiroshima Prefecture (9733ms)\nWhen was Hiroshima bombed?\thistory\t-6.082895924492324\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was the first city in, history) -> history (9733ms)\nWhen was Hiroshima bombed?\tNuclear Free Zone Cities\t-6.130193322238318\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, go back to, Nuclear Free Zone Cities) -> Nuclear Free Zone Cities (9733ms)\nWhen was Hiroshima bombed?\tthe ashes\t-6.135293207932817\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (the ashes, will be sent to, Hiroshima) -> the ashes (9733ms)\nWhen was Hiroshima bombed?\tthe morning\t-6.167167538091739\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, am in, the morning) -> the morning (9793ms)\nWhen was Hiroshima bombed?\tthe New Yorker\t-6.179575377995931\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was published in, the New Yorker) -> the New Yorker (9793ms)\nWhen was Hiroshima bombed?\tthe horror\t-6.193200603045379\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the horror, was, Hiroshima) -> the horror (9793ms)\nWhen was Hiroshima bombed?\tthe products of a single satanic mindset\t-6.201178781032032\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, the products of a single satanic mindset) -> the products of a single satanic mindset (9793ms)\nWhen was Hiroshima bombed?\tthe shower\t-6.201194409432607\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, the shower) -> the shower (9793ms)\nWhen was Hiroshima bombed?\tthe place\t-6.20382232895882\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the place) -> the place (9793ms)\nWhen was Hiroshima bombed?\tthe headlines\t-6.2246403919951465\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, the headlines) -> the headlines (9992ms)\nWhen was Hiroshima bombed?\tthe revitalization\t-6.301687126796727\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is investing in, the revitalization) -> the revitalization (9992ms)\nWhen was Hiroshima bombed?\tSagan\t-6.363109871859707\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, went down to, Sagan) -> Sagan (9992ms)\nWhen was Hiroshima bombed?\tthe circumstances?\t-6.3707191301485295\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was ?understandable in, the circumstances?) -> the circumstances? (9992ms)\nWhen was Hiroshima bombed?\tthe atmosphere\t-6.384801702545704\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is now in, the atmosphere) -> the atmosphere (10040ms)\nWhen was Hiroshima bombed?\tThe next stop\t-6.411686037978488\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The next stop, is, Hiroshima) -> The next stop (10040ms)\nWhen was Hiroshima bombed?\tthe gallery\t-6.415813216329699\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are available in, the gallery) -> the gallery (10040ms)\nWhen was Hiroshima bombed?\tRussia\t-6.418962890884368\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (the Fiftieth Hiroshima Day, go on to perform in, Russia) -> Russia (10040ms)\nWhen was Hiroshima bombed?\tthe shadows\t-6.427397175366631\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (?Hiroshima, is locked in, the shadows) -> the shadows (10040ms)\nWhen was Hiroshima bombed?\tthe circumstances\t-6.450296907590825\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was \"understandable in, the circumstances) -> the circumstances (10067ms)\nWhen was Hiroshima bombed?\tthe concert\t-6.4537691377702515\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (the concert, will be in, hiroshima) -> the concert (10067ms)\nWhen was Hiroshima bombed?\tthe one i\t-6.494819010082956\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the one i, had was from, the Hiroshima Region) -> the one i (10067ms)\nWhen was Hiroshima bombed?\tthe fatherhood movement\t-6.4993652111674125\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is a pioneer in, the fatherhood movement) -> the fatherhood movement (10067ms)\nWhen was Hiroshima bombed?\tSilicon Valley\t-6.49995856777408\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, open in, $x) -> (Hiroshima prefecture, will open an office in, Silicon Valley) -> Silicon Valley (10067ms)\nWhen was Hiroshima bombed?\tthe history\t-6.50486899237271\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was the first time in, the history) -> the history (10067ms)\nWhen was Hiroshima bombed?\tThe route\t-6.513074985305401\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (The route, will be from, Hiroshima) -> The route (10067ms)\nWhen was Hiroshima bombed?\tthe type\t-6.5312996863334885\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the type, was dropped on, Hiroshima) -> the type (10098ms)\nWhen was Hiroshima bombed?\tthe first Bomb\t-6.594838501822343\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first Bomb, was dropped on, Hiroshima) -> the first Bomb (10098ms)\nWhen was Hiroshima bombed?\tthe first Atomic bomb\t-6.605753080814816\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first Atomic bomb, was dropped on, Hiroshima) -> the first Atomic bomb (10098ms)\nWhen was Hiroshima bombed?\tthe same year\t-6.6374986390106345\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was composed in, the same year) -> the same year (10098ms)\nWhen was Hiroshima bombed?\tthe end\t-6.66873896188134\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were A-Bombed at, the end) -> the end (10098ms)\nWhen was Hiroshima bombed?\tthe vast flat\t-6.677222985955674\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is located in, the vast flat) -> the vast flat (10098ms)\nWhen was Hiroshima bombed?\tthe eyes of the world\t-6.679495131759877\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the eyes of the world, are on, Hiroshima) -> the eyes of the world (10126ms)\nWhen was Hiroshima bombed?\tthe right direction\t-6.687215763758181\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, seems to be headed in, the right direction) -> the right direction (10126ms)\nWhen was Hiroshima bombed?\tthe city\t-6.689541105428488\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima castle, is also in, the city) -> the city (10126ms)\nWhen was Hiroshima bombed?\tthe international school\t-6.723067269271068\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the international school, has been running in, Hiroshima) -> the international school (10126ms)\nWhen was Hiroshima bombed?\tthe first nuclear bomb\t-6.723455989623275\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first nuclear bomb, was dropped on, Hiroshima) -> the first nuclear bomb (10126ms)\nWhen was Hiroshima bombed?\tthe downtown area\t-6.7336130433615615\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, injured?most had been in, the downtown area) -> the downtown area (10126ms)\nWhen was Hiroshima bombed?\tthe first atomic bomb\t-6.734683535528092\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first atomic bomb, was exploded over, Hiroshima) -> the first atomic bomb (10126ms)\nWhen was Hiroshima bombed?\tthe national conservative creed\t-6.7737765888536625\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (Hiroshima, is becoming part of, the national conservative creed) -> the national conservative creed (10159ms)\nWhen was Hiroshima bombed?\tthe bombing\t-6.8017608603122675\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the bombing, has been equated to, five Hiroshimas) -> the bombing (10159ms)\nWhen was Hiroshima bombed?\tthe nuclear bombs\t-6.9164087056767425\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the nuclear bombs, had been dropped on, Hiroshima and Nagasaki) -> the nuclear bombs (10159ms)\nWhen was Hiroshima bombed?\tThe report\t-6.916801056687522\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (The report, will be largely compiled at, the Hiroshima Meeting) -> The report (10159ms)\nWhen was Hiroshima bombed?\tthe atomic bombing\t-6.92082179120575\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be destroy in, $x) -> (the Hiroshima castle, was destroyed in, the atomic bombing) -> the atomic bombing (10191ms)\nWhen was Hiroshima bombed?\tthe first atomic bomb in history\t-6.922538598947372\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first atomic bomb in history, was dropped on, Hiroshima) -> the first atomic bomb in history (10191ms)\nWhen was Hiroshima bombed?\tthe first bomb\t-6.927475967032526\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the first bomb, had actually been dropped on, Hiroshima) -> the first bomb (10191ms)\nWhen was Hiroshima bombed?\tthe atom bomb\t-6.956624987229876\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the atom bomb, had been used on, Hiroshima and Nagasaki) -> the atom bomb (10191ms)\nWhen was Hiroshima bombed?\tThe workshop\t-6.958422912689265\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (The workshop, will be jointly hosted by, Hiroshima University) -> The workshop (10191ms)\nWhen was Hiroshima bombed?\tthe bombs\t-6.977910292494924\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the bombs, had just been dropped on, Hiroshima and Nagasaki) -> the bombs (10191ms)\nWhen was Hiroshima bombed?\tthe unspeakable horrors\t-6.97891052172511\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (Hiroshima and Nagasaki, was part of, the unspeakable horrors) -> the unspeakable horrors (10228ms)\nWhen was Hiroshima bombed?\tThe first atomic bomb used in war\t-6.981928701677109\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The first atomic bomb used in war, was dropped over, Hiroshima) -> The first atomic bomb used in war (10228ms)\nWhen was Hiroshima bombed?\tthe atom bombs\t-7.017207272959126\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the atom bombs, had been dropped on, Hiroshima and Nagasaki) -> the atom bombs (10228ms)\nWhen was Hiroshima bombed?\t12 to 16 kt\t-7.05574193363697\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> $x: (hiroshima bomb, have from, $x) -> (the Hiroshima bomb, have varied from, 12 to 16 kt) -> 12 to 16 kt (10228ms)\nWhen was Hiroshima bombed?\tthe death\t-7.45431230057841\tWhen was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (the Hiroshima A-bomb, had resulted in, the death) -> the death (10265ms)\nWhen was Hiroshima bombed?\tthe atomic explosion\t-7.674038532520992\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, survive, $x) -> (Hiroshima and Nagasaki, had survived, the atomic explosion) -> the atomic explosion (10265ms)\nWhen was Hiroshima bombed?\tthe day\t-7.717256279546244\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, the day) -> the day (10309ms)\nWhen was Hiroshima bombed?\tthe discoveries\t-7.887190790984736\tWhen was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, also goes back to, the discoveries) -> the discoveries (10309ms)\nWhat is the life expectancy of a dollar bill?\t18-22 months\t-10.311684269603013\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: (a dollar bill, life, $x) -> $x: (dollar bill, life, $x) -> (The average dollar bill, has a life span of, 18-22 months) -> 18-22 months (4074ms)\nWhat is the life expectancy of a dollar bill?\tdollar coins\t-11.571122498171102\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the lifespan of a dollar bill ? -> $x: (a dollar bill, lifespan, $x) -> $x: (dollar bill, lifespan, $x) -> (dollar bills, have a shorter lifespan than, dollar coins) -> dollar coins (4132ms)\nWhat is the life expectancy of a dollar bill?\tAmerican Revolution Bicentennial two dollar bill postage-stamp cancellations\t-12.351246376180528\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, prefer, $x) -> (American Revolution Bicentennial two dollar bill postage-stamp cancellations, Preferred Label, American Revolution Bicentennial two dollar bill postage-stamp cancellations) -> American Revolution Bicentennial two dollar bill postage-stamp cancellations (6896ms)\nWhat is the life expectancy of a dollar bill?\ta world\t-12.942098848574876\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: (a dollar bill, life, $x) -> $x: (dollar bill, life, $x) -> $x: (dollar bill, be live, $x) -> (Hundred Dollar Bill, is still living in, a world) -> a world (5622ms)\nWhat is the life expectancy of a dollar bill?\ta design\t-13.132936546592418\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, from have, $x) -> (the hundred dollar bill, had been changed from, a design) -> a design (7228ms)\nWhat is the life expectancy of a dollar bill?\tAn industrial economy\t-13.196497414056186\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, so be, dollar bill) -> (An industrial economy, so is, a dollar bill) -> An industrial economy (7014ms)\nWhat is the life expectancy of a dollar bill?\tMaple Syrup\t-13.430689154566128\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (our hundred dollar bills, smell like, Maple Syrup) -> Maple Syrup (7228ms)\nWhat is the life expectancy of a dollar bill?\ta cheap addition\t-13.448434321967067\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (the dollar bill section, properly be like, a cheap addition) -> a cheap addition (7228ms)\nWhat is the life expectancy of a dollar bill?\ta robot\t-13.57850475522491\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a dollar bill, might look like to, a robot) -> a robot (7228ms)\nWhat is the life expectancy of a dollar bill?\tsuch a large amount\t-13.578805878150398\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a 20 dollar bill, seems like, such a large amount) -> such a large amount (7228ms)\nWhat is the life expectancy of a dollar bill?\tRWR\t-13.603700764332581\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a twenty-dollar bill, might look like with, RWR) -> RWR (7228ms)\nWhat is the life expectancy of a dollar bill?\ta successful stripper\t-13.687826903743062\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, so be, dollar bill) -> (a successful stripper, is so overburdened with, dollar bills) -> a successful stripper (7014ms)\nWhat is the life expectancy of a dollar bill?\tbow ties\t-13.732354137809647\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (the dollar bills, were shaped like, bow ties) -> bow ties (7228ms)\nWhat is the life expectancy of a dollar bill?\tone hundred\t-13.73942773442301\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (A dollar bill, would be like, one hundred) -> one hundred (7330ms)\nWhat is the life expectancy of a dollar bill?\ta life\t-13.766534533538866\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (a ten-dollar bill, might seem to have, a life) -> a life (6869ms)\nWhat is the life expectancy of a dollar bill?\tcomparison list\t-13.78891919579334\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (the Dollar Bill, has been added to, comparison list) -> comparison list (6869ms)\nWhat is the life expectancy of a dollar bill?\tapprox value/site\t-13.792416346982531\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (dollar bill, would like, approx value/site) -> approx value/site (7330ms)\nWhat is the life expectancy of a dollar bill?\tserial numbers\t-13.827059575865057\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, do have, $x) -> (Dollar bills, do have, serial numbers) -> serial numbers (7090ms)\nWhat is the life expectancy of a dollar bill?\ta Benjamin\t-13.872778628010833\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a one-dollar bill, looks like, a Benjamin) -> a Benjamin (7330ms)\nWhat is the life expectancy of a dollar bill?\tfuture payment\t-13.882646278093567\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, for have, $x) -> (a $ 1 dollar bill, has been promised for, future payment) -> future payment (7014ms)\nWhat is the life expectancy of a dollar bill?\ta postage stamp\t-13.952377278386672\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (A dollar bill, is like, a postage stamp) -> a postage stamp (7330ms)\nWhat is the life expectancy of a dollar bill?\tDollar bills\t-13.983066666961873\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, to keep, dollar bill) -> (Dollar bills, has pushed to keep, the one Dollar bill) -> Dollar bills (6411ms)\nWhat is the life expectancy of a dollar bill?\ta $ 10 bill\t-14.027485662304276\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (the five-dollar bills, is exchanged for, a $ 10 bill) -> a $ 10 bill (7014ms)\nWhat is the life expectancy of a dollar bill?\t358 feet\t-14.085147543160689\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> ($ 1,000 dollar bills, would have to be, 358 feet) -> 358 feet (6869ms)\nWhat is the life expectancy of a dollar bill?\tMoney\t-14.142180776729067\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (dollar bills, Look Like, Money) -> Money (7330ms)\nWhat is the life expectancy of a dollar bill?\tone gold coin\t-14.176801889098527\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (20 one-dollar bills, could be exchanged for, one gold coin) -> one gold coin (7014ms)\nWhat is the life expectancy of a dollar bill?\ta green piece\t-14.183542825741862\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a dollar bill, starts looking like, a green piece) -> a green piece (7330ms)\nWhat is the life expectancy of a dollar bill?\tone relationship\t-14.229341769048197\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (dollar bills, has an one to, one relationship) -> one relationship (6868ms)\nWhat is the life expectancy of a dollar bill?\ta large , lawful city\t-14.251359731728114\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, value, $x) -> (A ten-dollar bill, has more value in, a large , lawful city) -> a large , lawful city (6609ms)\nWhat is the life expectancy of a dollar bill?\tfine uses\t-14.334096217541337\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to put, $x) -> (your thousand-dollar bills, are being put to very, fine uses) -> fine uses (6829ms)\nWhat is the life expectancy of a dollar bill?\t3 million dollars\t-14.374789932977098\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, could have, $x) -> (1,000 dollar bills, could have amounted to, 3 million dollars) -> 3 million dollars (7330ms)\nWhat is the life expectancy of a dollar bill?\tJamestown\t-14.461783786870575\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, do have, $x) -> (the dollar bill, have to do with, Jamestown) -> Jamestown (7090ms)\nWhat is the life expectancy of a dollar bill?\tPiggy\t-14.528494781860372\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (the dollar bills, seems to have gone to, Piggy) -> Piggy (6869ms)\nWhat is the life expectancy of a dollar bill?\tone side\t-14.60800933976805\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, still have, $x) -> (The new twenty-dollar bill, still has the Queen on, one side) -> one side (6609ms)\nWhat is the life expectancy of a dollar bill?\tPortland\t-14.613870613904906\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to come to, $x) -> ('s Fundred Dollar Bill Project, is coming to, Portland) -> Portland (6609ms)\nWhat is the life expectancy of a dollar bill?\tAmericans\t-14.68018543722387\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (the dollar bill, has become so familiar to, Americans) -> Americans (6869ms)\nWhat is the life expectancy of a dollar bill?\tmoney\t-15.143709204456446\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, so be, dollar bill) -> (money, so be sure to bring lots of, dollar bills) -> money (7014ms)\nWhat is the life expectancy of a dollar bill?\tthe dollar coins\t-15.143873262384274\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (The dollar bills, could be traded around like, the dollar coins) -> the dollar coins (7329ms)\nWhat is the life expectancy of a dollar bill?\tcloth\t-15.159576221244942\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a dollar bill, is more like, cloth) -> cloth (7426ms)\nWhat is the life expectancy of a dollar bill?\tthe number\t-15.34374606998317\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, have find, $x) -> (a dollar bill, is found to have, the number) -> the number (7014ms)\nWhat is the life expectancy of a dollar bill?\tthe innards\t-15.45897199058267\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, be lose, $x) -> (the five-dollar bill, is lost in, the innards) -> the innards (6609ms)\nWhat is the life expectancy of a dollar bill?\tgoods\t-15.528301146778542\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (a dollar bill, can be exchanged for, goods) -> goods (7066ms)\nWhat is the life expectancy of a dollar bill?\tsubstantially more\t-15.536592482277126\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, value, $x) -> (The higher dollar amount bills, valued at, substantially more) -> substantially more (6609ms)\nWhat is the life expectancy of a dollar bill?\tthe sample\t-15.56380989603964\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, look for, $x) -> (a genuine five dollar bill, Just look for, the sample) -> the sample (7066ms)\nWhat is the life expectancy of a dollar bill?\tstudents\t-15.56626856861778\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, to bring, dollar bill) -> (students, are asked to bring in, a dollar bill) -> students (7065ms)\nWhat is the life expectancy of a dollar bill?\tthe one Dollar bill\t-15.613858348829805\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (Dollar bills, has pushed to keep, the one Dollar bill) -> the one Dollar bill (6896ms)\nWhat is the life expectancy of a dollar bill?\tthe campsite\t-15.614039904542057\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, have find, $x) -> (A hundred dollar bill, has just been found on, the campsite) -> the campsite (7066ms)\nWhat is the life expectancy of a dollar bill?\tthe gift shop\t-15.624726953573685\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, to keep, dollar bill) -> (the gift shop, will probably need to keep, more dollar bills) -> the gift shop (6411ms)\nWhat is the life expectancy of a dollar bill?\tthe ceiling\t-15.719902361142307\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (dollar bills, had been pinned to, the ceiling) -> the ceiling (6896ms)\nWhat is the life expectancy of a dollar bill?\tsilver\t-15.7630560903148\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (any dollar bill, could be exchanged for, silver) -> silver (7066ms)\nWhat is the life expectancy of a dollar bill?\tconfetti\t-15.794100235969717\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (hundred dollar bills, were flashing around like, confetti) -> confetti (7427ms)\nWhat is the life expectancy of a dollar bill?\tbusiness\t-15.812880164114578\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, ask about, $x) -> (dollar bills, asked about, business) -> business (7090ms)\nWhat is the life expectancy of a dollar bill?\tthe front ...Good news\t-15.840406660535628\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to come to, $x) -> (50 hundred dollar bills, please come to, the front ...Good news) -> the front ...Good news (6609ms)\nWhat is the life expectancy of a dollar bill?\tthe back\t-15.900197249135232\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, do have, $x) -> (The dollar bill, does n???t have a building on, the back) -> the back (7090ms)\nWhat is the life expectancy of a dollar bill?\tthe money\t-15.94591258796348\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, don?t have, $x) -> (a hundred-dollar phone bill, don?t have, the money) -> the money (6411ms)\nWhat is the life expectancy of a dollar bill?\tthe founding\t-16.072720491505823\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, do have, $x) -> (The dollar bill, had nothing to do with, the founding) -> the founding (7090ms)\nWhat is the life expectancy of a dollar bill?\tprize\t-16.089981184941514\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life a dollar bill ? -> $x: (the life a dollar bill, instance of, $x) -> $x: (life dollar bill, instance of, $x) -> (Life Savers with dollar bill wrapping, Instance Of, prize) -> prize (8133ms)\nWhat is the life expectancy of a dollar bill?\tdebt\t-16.15991325466822\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (every hundred-dollar bill, has to pay, debt) -> debt (6896ms)\nWhat is the life expectancy of a dollar bill?\thype\t-16.209820452074695\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, for have, $x) -> (The dollar bill, has a soft spot for, hype) -> hype (7065ms)\nWhat is the life expectancy of a dollar bill?\tbanks\t-16.40329359183989\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, reject, $x) -> (older dollar bills, will be rejected by, banks) -> banks (7426ms)\nWhat is the life expectancy of a dollar bill?\tvalue\t-16.516682729757164\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, will lose, $x) -> (dollar bills, will lose, value) -> value (7066ms)\nWhat is the life expectancy of a dollar bill?\tvacation\t-16.761278529128983\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to save, $x) -> (one-dollar bills, is another good way to save for, vacation) -> vacation (6896ms)\nWhat is the life expectancy of a dollar bill?\tquarters\t-16.820802894441137\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to come to, $x) -> (Dollar bills, will soon come to resemble, quarters) -> quarters (6609ms)\nWhat is the life expectancy of a dollar bill?\tthe event\t-17.667792164562794\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to put, $x) -> (the 20,000-dollar bill, to put on, the event) -> the event (6829ms)\nWhat is the life expectancy of a dollar bill?\thands\t-17.70761713007169\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (a dollar bill, exchanges, hands) -> hands (7090ms)\nWhat is the life expectancy of a dollar bill?\ttechniques\t-17.781893534082595\tWhat is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, inspire, dollar bill) -> (techniques, inspired by, a simple 5 dollar bill) -> techniques (7090ms)\nWho was the founder of Habitat for Humanity?\tHurricane Katrina\t-4.734485730158193\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Hurricane Katrina, was the Habitat For, Humanity) -> Hurricane Katrina (3847ms)\nWho was the founder of Habitat for Humanity?\tCollier County\t-5.066855182933777\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Collier County, was Habitat for, Humanity) -> Collier County (3847ms)\nWho was the founder of Habitat for Humanity?\tBuild Louder\t-5.60884952908389\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Build Louder, is Habitat for, Humanity) -> Build Louder (3847ms)\nWho was the founder of Habitat for Humanity?\tthe Week\t-5.748174308080958\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the Week, is Habitat for, Humanity) -> the Week (3847ms)\nWho was the founder of Habitat for Humanity?\tMarathon Petroleum\t-5.751140816113505\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Marathon Petroleum, was Habitat for, Humanity) -> Marathon Petroleum (3847ms)\nWho was the founder of Habitat for Humanity?\tNavigator Online\t-5.776528498312991\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Navigator Online, is helping Habitat for, Humanity) -> Navigator Online (3847ms)\nWho was the founder of Habitat for Humanity?\tCollier Construction\t-5.821191245433194\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Collier Construction, is helping Habitat for, Humanity) -> Collier Construction (4287ms)\nWho was the founder of Habitat for Humanity?\tGrace Lutheran\t-5.903486202908331\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Grace Lutheran, is helping Habitat for, Humanity) -> Grace Lutheran (4287ms)\nWho was the founder of Habitat for Humanity?\tsingle mothers\t-6.1993451864918105\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (single mothers, is Habitat for, Humanity) -> single mothers (4287ms)\nWho was the founder of Habitat for Humanity?\tprivate gifting\t-6.229407945747454\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (private gifting, is Habitat for, Humanity) -> private gifting (4287ms)\nWho was the founder of Habitat for Humanity?\tsocial activities\t-6.291366352485894\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (social activities, are Habitat for, Humanity) -> social activities (4287ms)\nWho was the founder of Habitat for Humanity?\tout Restore\t-6.499896419828262\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (out Restore, is Habitat for, Humanity) -> out Restore (4287ms)\nWho was the founder of Habitat for Humanity?\tthe Home Ownership category\t-6.601237914387642\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the Home Ownership category, is Habitat for, Humanity) -> the Home Ownership category (4315ms)\nWho was the founder of Habitat for Humanity?\tOne such program\t-6.704261674392477\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (One such program, is the Habitat for, Humanity) -> One such program (4315ms)\nWho was the founder of Habitat for Humanity?\tQuiz Nite\t-6.774566295254376\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Quiz Nite, is tonight Habitat for, Humanity) -> Quiz Nite (4315ms)\nWho was the founder of Habitat for Humanity?\tQuestions Q\t-6.802348326019333\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Questions Q, is Habitat for, Humanity) -> Questions Q (4315ms)\nWho was the founder of Habitat for Humanity?\tvolunteer\t-6.882071249251372\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (volunteer, is Habitat for, Humanity) -> volunteer (4316ms)\nWho was the founder of Habitat for Humanity?\tchoice\t-6.891732889643063\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (choice, is Habitat for, Humanity) -> choice (4315ms)\nWho was the founder of Habitat for Humanity?\tcome Sayid\t-6.950208212681419\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (come Sayid, is all Habitat For, Humanity) -> come Sayid (4330ms)\nWho was the founder of Habitat for Humanity?\tsuch an organization\t-6.95102783095526\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (such an organization, is habitat for, humanity) -> such an organization (4331ms)\nWho was the founder of Habitat for Humanity?\t11:36\t-7.029302646234002\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (11:36, AM PST Habitat for, Humanity) -> 11:36 (4330ms)\nWho was the founder of Habitat for Humanity?\tOne such organization\t-7.038563391412015\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (One such organization, is Habitat for, Humanity) -> One such organization (4330ms)\nWho was the founder of Habitat for Humanity?\tCIPH official charity\t-7.057196137473774\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (CIPH official charity, is Habitat for, Humanity) -> CIPH official charity (4330ms)\nWho was the founder of Habitat for Humanity?\tC volunteer hours\t-7.061617122181551\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (C volunteer hours, were Habitat for, Humanity) -> C volunteer hours (4331ms)\nWho was the founder of Habitat for Humanity?\tSony Electronics Inc. employees\t-7.092800267585594\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Sony Electronics Inc. employees, is Habitat for, Humanity) -> Sony Electronics Inc. employees (4331ms)\nWho was the founder of Habitat for Humanity?\tmore than two decades\t-7.098105491396764\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (more than two decades, is Habitat for, Humanity) -> more than two decades (4331ms)\nWho was the founder of Habitat for Humanity?\tFred\t-7.106390988271183\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Fred, is Habitat for, Humanity) -> Fred (4344ms)\nWho was the founder of Habitat for Humanity?\t6:30\t-7.136871630607802\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (6:30, am Habitat for, Humanity) -> 6:30 (4344ms)\nWho was the founder of Habitat for Humanity?\t09:14\t-7.178493539311841\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (09:14, AM Habitat for, Humanity) -> 09:14 (4344ms)\nWho was the founder of Habitat for Humanity?\tDeepSouthCon 49\t-7.31394978842049\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (DeepSouthCon 49, was Habitat for, Humanity) -> DeepSouthCon 49 (4345ms)\nWho was the founder of Habitat for Humanity?\triver blindness\t-7.380544355429805\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (river blindness, build habitats for, humanity) -> river blindness (4346ms)\nWho was the founder of Habitat for Humanity?\tsupport\t-7.3855882859134185\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (support, is Habitat for, Humanity) -> support (4344ms)\nWho was the founder of Habitat for Humanity?\tHumanity Project\t-7.440968067954371\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Humanity Project, Habitat for, Humanity) -> Humanity Project (4356ms)\nWho was the founder of Habitat for Humanity?\tservice\t-7.518610184344347\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (service, is Habitat for, Humanity) -> service (4356ms)\nWho was the founder of Habitat for Humanity?\tprivate\t-7.5381271168072015\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (private, is Habitat for, Humanity) -> private (4356ms)\nWho was the founder of Habitat for Humanity?\tVolunteers\t-7.541040909290787\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Volunteers, are Habitat for, Humanity) -> Volunteers (4355ms)\nWho was the founder of Habitat for Humanity?\tattendance\t-7.588764985491936\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (attendance, will be Habitat for, Humanity) -> attendance (4356ms)\nWho was the founder of Habitat for Humanity?\tthe earth\t-7.699631468988689\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the earth, is a particularly fit habitat for, humanity) -> the earth (4355ms)\nWho was the founder of Habitat for Humanity?\tThe carpenters\t-7.757536132195305\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The carpenters, have been helping Habitat for, Humanity) -> The carpenters (4365ms)\nWho was the founder of Habitat for Humanity?\tCountry Cares\t-7.787433273637458\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Country Cares, will benefit Habitat for, Humanity) -> Country Cares (4366ms)\nWho was the founder of Habitat for Humanity?\tHeart Plates\t-7.836855393453165\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Heart Plates, benefit Habitat for, Humanity) -> Heart Plates (4365ms)\nWho was the founder of Habitat for Humanity?\tsocial architecture\t-7.950868202721202\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (social architecture, include Habitat for, Humanity) -> social architecture (4366ms)\nWho was the founder of Habitat for Humanity?\tto\t-7.987784271121729\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (to, is Habitat For, Humanity) -> to (4365ms)\nWho was the founder of Habitat for Humanity?\tNew Orleans\t-7.989102523082121\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (New Orleans, had the Habitat for, Humanity) -> New Orleans (4365ms)\nWho was the founder of Habitat for Humanity?\tthe region\t-8.003108601168343\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the region, is Habitat for, Humanity) -> the region (4365ms)\nWho was the founder of Habitat for Humanity?\tthe site\t-8.011130952310058\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the site, are Habitat for, Humanity) -> the site (4365ms)\nWho was the founder of Habitat for Humanity?\tmind\t-8.078291579838952\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (mind, is Habitat for, Humanity) -> mind (4374ms)\nWho was the founder of Habitat for Humanity?\tregional projects\t-8.133434724698274\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (regional projects, Habitat for, Humanity) -> regional projects (4374ms)\nWho was the founder of Habitat for Humanity?\tThe event\t-8.198051197753612\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The event, was Habitat for, Humanity) -> The event (4374ms)\nWho was the founder of Habitat for Humanity?\tThe cause\t-8.201523427933038\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The cause, was Habitat for, Humanity) -> The cause (4374ms)\nWho was the founder of Habitat for Humanity?\tThe winner\t-8.229325774373805\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The winner, is Habitat for, Humanity) -> The winner (4374ms)\nWho was the founder of Habitat for Humanity?\t100 % of the proceeds\t-8.262658630836347\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (100 % of the proceeds, are donated to Habitat for, Humanity) -> 100 % of the proceeds (4374ms)\nWho was the founder of Habitat for Humanity?\tfreewill donations\t-8.272288797018525\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (freewill donations, benefit Habitat for, Humanity) -> freewill donations (4385ms)\nWho was the founder of Habitat for Humanity?\tDecember 2011 , 9:04\t-8.29317643295689\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (December 2011 , 9:04, am Habitat for, Humanity) -> December 2011 , 9:04 (4384ms)\nWho was the founder of Habitat for Humanity?\tpainted houses\t-8.299206957058194\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (painted houses, supported Habitat for, Humanity) -> painted houses (4384ms)\nWho was the founder of Habitat for Humanity?\tThe other two\t-8.310799476511235\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The other two, are Habitat for, Humanity) -> The other two (4384ms)\nWho was the founder of Habitat for Humanity?\tThe following businesses\t-8.334773139630961\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The following businesses, are supporting Habitat for, Humanity) -> The following businesses (4384ms)\nWho was the founder of Habitat for Humanity?\t20 Aug 1995 Q\t-8.339090137411901\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (20 Aug 1995 Q, is Habitat for, Humanity) -> 20 Aug 1995 Q (4384ms)\nWho was the founder of Habitat for Humanity?\tthe benefiting charity\t-8.343769977298168\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the benefiting charity, is Habitat for, Humanity) -> the benefiting charity (4384ms)\nWho was the founder of Habitat for Humanity?\tThe company\t-8.363097125257088\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The company, is supporting Habitat for, Humanity) -> The company (4384ms)\nWho was the founder of Habitat for Humanity?\tGentrycustom ? Mon Jan 02 , 2012 3:06\t-8.38985697661693\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Gentrycustom ? Mon Jan 02 , 2012 3:06, am habitat for, humanity) -> Gentrycustom ? Mon Jan 02 , 2012 3:06 (4396ms)\nWho was the founder of Habitat for Humanity?\tREALTORS ?\t-8.394792392769972\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (REALTORS ?, benefitted both Habitat for, Humanity) -> REALTORS ? (4397ms)\nWho was the founder of Habitat for Humanity?\tThe first place\t-8.410969039720522\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The first place, was Habitat for, Humanity) -> The first place (4396ms)\nWho was the founder of Habitat for Humanity?\tthe ArcelorMittal Foundation\t-8.47163791318666\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the ArcelorMittal Foundation, has helped Habitat for, Humanity) -> the ArcelorMittal Foundation (4396ms)\nWho was the founder of Habitat for Humanity?\tThe bands\t-8.471949040055637\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The bands, are also offering Habitat for, Humanity) -> The bands (4396ms)\nWho was the founder of Habitat for Humanity?\tThe currently supported charity\t-8.480334189550934\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The currently supported charity, is Habitat for, Humanity) -> The currently supported charity (4396ms)\nWho was the founder of Habitat for Humanity?\tThe Foundation?s projects\t-8.619946926106199\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (The Foundation?s projects, include Habitat for, Humanity) -> The Foundation?s projects (4450ms)\nWho was the founder of Habitat for Humanity?\ta warehouse\t-8.677494715826452\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a warehouse, supports Habitat for, Humanity) -> a warehouse (4450ms)\nWho was the founder of Habitat for Humanity?\tThe Healthy Homes Partnership\t-8.693446382111444\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (The Healthy Homes Partnership, includes Habitat for, Humanity) -> The Healthy Homes Partnership (4450ms)\nWho was the founder of Habitat for Humanity?\tMan-made Disasters\t-8.693474849982627\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Man-made Disasters, Has Habitat for, Humanity) -> Man-made Disasters (4450ms)\nWho was the founder of Habitat for Humanity?\ta Friend\t-8.805340678620793\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a Friend, Habitat for, Humanity) -> a Friend (4509ms)\nWho was the founder of Habitat for Humanity?\ta great idea\t-8.820333941938264\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a great idea, benefits both Habitat for, Humanity) -> a great idea (4509ms)\nWho was the founder of Habitat for Humanity?\tSearch Form Main Content\t-8.825313261292695\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Search Form Main Content, HABITAT FOR, HUMANITY) -> Search Form Main Content (4510ms)\nWho was the founder of Habitat for Humanity?\tECHO\t-8.840549552289614\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (ECHO, Habitat for, Humanity) -> ECHO (4509ms)\nWho was the founder of Habitat for Humanity?\ta successful service network\t-8.854360865981427\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a successful service network, includes Habitat for, Humanity) -> a successful service network (4564ms)\nWho was the founder of Habitat for Humanity?\tCar donations\t-8.899855767608752\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Car donations, help Habitat for, Humanity) -> Car donations (4564ms)\nWho was the founder of Habitat for Humanity?\tSurplus County-Owned Real Property\t-8.943860335533447\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Surplus County-Owned Real Property, Habitat for, Humanity) -> Surplus County-Owned Real Property (4565ms)\nWho was the founder of Habitat for Humanity?\ttarget Carter\t-8.964923606173038\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (target Carter, supports Habitat for, Humanity) -> target Carter (4564ms)\nWho was the founder of Habitat for Humanity?\t?Fund ? Run/ Walk\t-8.995180437594435\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (?Fund ? Run/ Walk, will benefit Habitat for, Humanity) -> ?Fund ? Run/ Walk (4564ms)\nWho was the founder of Habitat for Humanity?\t?This online campaign\t-8.999172564841658\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (?This online campaign, benefit Habitat for, Humanity) -> ?This online campaign (4588ms)\nWho was the founder of Habitat for Humanity?\tLOCATION RACE INFO\t-9.00221737583795\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (LOCATION RACE INFO, support Habitat for, Humanity) -> LOCATION RACE INFO (4588ms)\nWho was the founder of Habitat for Humanity?\tArea residents\t-9.00752259964912\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Area residents, can help Habitat for, Humanity) -> Area residents (4588ms)\nWho was the founder of Habitat for Humanity?\ta pay-what-you-please yard sale\t-9.041383388136335\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a pay-what-you-please yard sale, benefit Habitat for, Humanity) -> a pay-what-you-please yard sale (4621ms)\nWho was the founder of Habitat for Humanity?\tCommunity service programs\t-9.067648012755816\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Community service programs, include Habitat for, Humanity) -> Community service programs (4621ms)\nWho was the founder of Habitat for Humanity?\tMillard Fuller\t-9.099745885435524\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Millard Fuller, founded Habitat for, Humanity) -> Millard Fuller (4621ms)\nWho was the founder of Habitat for Humanity?\tthe cause\t-9.206531611921502\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the cause, was Habitat for, Humanity) -> the cause (4621ms)\nWho was the founder of Habitat for Humanity?\tJars\t-9.213500346016069\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Jars, will benefit Habitat for, Humanity) -> Jars (4621ms)\nWho was the founder of Habitat for Humanity?\tpart\t-9.423600704395259\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (part, Habitat for, Humanity) -> part (5355ms)\nWho was the founder of Habitat for Humanity?\tHaiti\t-9.434472279893303\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Haiti, Habitat for, Humanity) -> Haiti (5355ms)\nWho was the founder of Habitat for Humanity?\tvehicle sales\t-9.439042754086307\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (vehicle sales, benefit Habitat for, Humanity) -> vehicle sales (5355ms)\nWho was the founder of Habitat for Humanity?\tticket sales\t-9.448598745437709\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (ticket sales, will benefit Habitat for, Humanity) -> ticket sales (5355ms)\nWho was the founder of Habitat for Humanity?\tthe old toilet\t-9.473377630702831\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the old toilet, will be donated to Habitat for, Humanity) -> the old toilet (6394ms)\nWho was the founder of Habitat for Humanity?\tx 301 Providence Place\t-9.49999754946912\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (x 301 Providence Place, supports Habitat for, Humanity) -> x 301 Providence Place (6393ms)\nWho was the founder of Habitat for Humanity?\twork\t-9.506874336839932\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (work, help Habitat for, Humanity) -> work (6394ms)\nWho was the founder of Habitat for Humanity?\tlocalities\t-9.574565333870378\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (localities, includes Habitat for, Humanity) -> localities (6394ms)\nWho was the founder of Habitat for Humanity?\tMajor partners\t-9.620842451484531\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Major partners, include Habitat for, Humanity) -> Major partners (6470ms)\nWho was the founder of Habitat for Humanity?\tService projects\t-9.681125436494018\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Service projects, have included Habitat for, Humanity) -> Service projects (6471ms)\nWho was the founder of Habitat for Humanity?\tthe Year\t-9.685574632225851\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the Year, will benefit Habitat For, Humanity) -> the Year (6471ms)\nWho was the founder of Habitat for Humanity?\tthe MGRC Foundation\t-9.780519777262953\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the MGRC Foundation, will benefit Habitat for, Humanity) -> the MGRC Foundation (6549ms)\nWho was the founder of Habitat for Humanity?\thigh energy event\t-9.850303597721224\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (high energy event, will benefit the Habitat for, Humanity) -> high energy event (6549ms)\nWho was the founder of Habitat for Humanity?\tThe proceeds\t-9.872805145505758\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The proceeds, will be donated to Habitat for, Humanity) -> The proceeds (6549ms)\nWho was the founder of Habitat for Humanity?\tCD and DVD releases\t-9.884580023198186\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (CD and DVD releases, benefit the Habitat For, Humanity) -> CD and DVD releases (6587ms)\nWho was the founder of Habitat for Humanity?\tpartnerships\t-9.944868528400503\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (partnerships, benefit Habitat for, Humanity and Corazon) -> partnerships (6586ms)\nWho was the founder of Habitat for Humanity?\tHomes Ball\t-10.004654933391413\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Homes Ball, will benefit Habitat for, Humanity Post) -> Homes Ball (6586ms)\nWho was the founder of Habitat for Humanity?\tthe event\t-10.038742133827123\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the event, benefit Habitat for, Humanity) -> the event (6586ms)\nWho was the founder of Habitat for Humanity?\tthe sale\t-10.130897539387997\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the sale, will benefit Habitat for, Humanity) -> the sale (6586ms)\nWho was the founder of Habitat for Humanity?\tHOMES furniture\t-10.141233501889927\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (HOMES furniture, will benefit Habitat for, Humanity) -> HOMES furniture (6586ms)\nWho was the founder of Habitat for Humanity?\tthe city\t-10.152674831963433\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the city, does support Habitat for, Humanity) -> the city (6612ms)\nWho was the founder of Habitat for Humanity?\tthe tournament\t-10.166657668843222\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the tournament, will benefit Habitat for, Humanity) -> the tournament (6612ms)\nWho was the founder of Habitat for Humanity?\tOrganizations\t-10.175346580575344\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Organizations, Habitat for, Humanity) -> Organizations (6612ms)\nWho was the founder of Habitat for Humanity?\tPast concerts\t-10.196780463790644\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Past concerts, benefitted Habitat for, Humanity) -> Past concerts (6612ms)\nWho was the founder of Habitat for Humanity?\tRESTORE proceeds\t-10.20915923151288\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (RESTORE proceeds, benefit Habitat for, Humanity) -> RESTORE proceeds (6612ms)\nWho was the founder of Habitat for Humanity?\tWegmans ticket sales\t-10.221072615661704\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Wegmans ticket sales, directly benefit Habitat for, Humanity) -> Wegmans ticket sales (6612ms)\nWho was the founder of Habitat for Humanity?\tWomen\t-10.222432664381657\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Women, supports Habitat for, Humanity) -> Women (6750ms)\nWho was the founder of Habitat for Humanity?\tthe auction\t-10.228616075581662\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the auction, will benefit Habitat for, Humanity) -> the auction (6750ms)\nWho was the founder of Habitat for Humanity?\tthe local Boyscouts\t-10.268068738858428\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the local Boyscouts, Habitat for, Humanity) -> the local Boyscouts (6750ms)\nWho was the founder of Habitat for Humanity?\tAmericus\t-10.302010494526247\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Americus, created Habitat for, Humanity) -> Americus (6750ms)\nWho was the founder of Habitat for Humanity?\tExamples\t-10.346220341604026\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Examples, include Habitat for, Humanity) -> Examples (6750ms)\nWho was the founder of Habitat for Humanity?\tThe initiative\t-10.399128820388206\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (The initiative, will benefit Habitat for, Humanity) -> The initiative (6750ms)\nWho was the founder of Habitat for Humanity?\tthe event proceeds\t-10.403549805095984\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the event proceeds, benefit Habitat for, Humanity) -> the event proceeds (6784ms)\nWho was the founder of Habitat for Humanity?\tHabitat program\t-10.427857140976338\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Habitat program, benefits Habitat for, Humanity) -> Habitat program (6784ms)\nWho was the founder of Habitat for Humanity?\t5k race\t-10.58570052269828\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (5k race, will benefit Habitat for, Humanity) -> 5k race (6784ms)\nWho was the founder of Habitat for Humanity?\tproceeds\t-10.642827565296312\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (proceeds, will benefit the local Habitat for, Humanity nonprofit) -> proceeds (6784ms)\nWho was the founder of Habitat for Humanity?\tthe program\t-10.774354411792384\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the program, will benefit Habitat for, Humanity) -> the program (6784ms)\nWho was the founder of Habitat for Humanity?\tevent\t-10.945595436523124\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (event, will benefit Habitat for, Humanity Margarita fans) -> event (7018ms)\nWho was the founder of Habitat for Humanity?\twell\t-10.969630322455169\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (well, donation to Habitat for, Humanity) -> well (7018ms)\nWho was the founder of Habitat for Humanity?\tthe competition\t-11.366683447105286\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the competition, will benefit Habitat for, Humanity) -> the competition (7018ms)\nWho was the founder of Habitat for Humanity?\tProceeds\t-11.378613008215268\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Proceeds, benefit Habitat for, Humanity) -> Proceeds (7062ms)\nWho was the founder of Habitat for Humanity?\tKingfest\t-11.467160329734185\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Kingfest, benefited Habitat for, Humanity) -> Kingfest (7062ms)\nWho was the founder of Habitat for Humanity?\tThe race\t-11.534154210813751\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (The race, benefited Habitat for, Humanity) -> The race (7068ms)\nWho was the founder of Habitat for Humanity?\tThe concert\t-11.542367123453914\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (The concert, benefits Habitat for, Humanity) -> The concert (7168ms)\nWho was the founder of Habitat for Humanity?\tthe carnival games\t-11.63469421333713\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the carnival games, will benefit Habitat for, Humanity) -> the carnival games (7168ms)\nWho was the founder of Habitat for Humanity?\tthe candy sales\t-11.725781025170349\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the candy sales, will benefit the local Habitat for, Humanity) -> the candy sales (7168ms)\nWho was the founder of Habitat for Humanity?\tFuller\t-14.877944290958402\tWho was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who create habitat for humanity why ? -> $x: ($x, create habitat for, humanity) -> (Fuller, created Habitat for, Humanity) -> Fuller (3386ms)\nWho won the 2004 World Series?\tAnnie Duke\t2.540464865319665\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Annie Duke, won, the 2004 World Series) -> Annie Duke (4048ms)\nWho won the 2004 World Series?\tthe Yankees\t2.0985221820097104\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the Yankees, win, the 2004 World Series) -> the Yankees (4048ms)\nWho won the 2004 World Series?\tThe Sox\t2.036101783014887\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (The Sox, won, the 2004 World Series) -> The Sox (4049ms)\nWho won the 2004 World Series?\tGreg Raymer\t2.025970131441441\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Greg Raymer, won, the 2004 World Series) -> Greg Raymer (4049ms)\nWho won the 2004 World Series?\tThe Red Sox\t1.7081372622664177\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (The Red Sox, won, the 2004 World Series) -> The Red Sox (4135ms)\nWho won the 2004 World Series?\tpoker\t1.5929427528849804\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (poker, is winning, the 2004 World Series) -> poker (4134ms)\nWho won the 2004 World Series?\tThe Boston Red Sox\t1.488468905477379\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (The Boston Red Sox, win, the 2004 World Series) -> The Boston Red Sox (4136ms)\nWho won the 2004 World Series?\tPhil Hellmuth jr\t1.4475128580027263\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Phil Hellmuth jr, will win, the 2004 World Series) -> Phil Hellmuth jr (4134ms)\nWho won the 2004 World Series?\tthe Red Sox\t1.2716517179880524\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the Red Sox, went on to win, the 2004 World Series) -> the Red Sox (4158ms)\nWho won the 2004 World Series?\ta Boston Red Sox player\t1.1169297403736964\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (a Boston Red Sox player, ultimately win, the 2004 World Series) -> a Boston Red Sox player (4158ms)\nWho won the 2004 World Series?\tBoston\t0.5023992490487297\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Boston, won, the 2004 World Series) -> Boston (4158ms)\nWho won the 2004 World Series?\tthe team\t0.3311585833685322\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the team, win, the 2004 World Series) -> the team (4174ms)\nWho won the 2004 World Series?\tthe unexpected and\t-0.19905387561325893\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the unexpected and, won, the 2004 World Series) -> the unexpected and (4188ms)\nWho won the 2004 World Series?\tRaymer\t-1.6637039643249292\tWho won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> $x: ($x, win, 2004 world series) -> (Raymer, won the primary in, 2004 World Series) -> Raymer (4222ms)\nWho won the 2004 World Series?\tDavid Ortiz\t-8.466289633683378\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series champions, are, David Ortiz) -> David Ortiz (12855ms)\nWho won the 2004 World Series?\t98\t-8.807857681619092\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who have the 2004 world series win ? -> $x: (the 2004 world series, win, $x) -> $x: (2004 world series, win, $x) -> (2004 World Series champs, won, 98) -> 98 (5987ms)\nWho won the 2004 World Series?\tthe Boston Red sox\t-9.492228296211348\tWho won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (the Boston Red sox, win, the 2012 World Series) (The Boston Red Sox, win, the 2004 World Series) -> the Boston Red sox (9609ms)\nWho won the 2004 World Series?\tthe Sox\t-9.743741892459648\tWho won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (the Sox, won, the World Series) (The Sox, won, the 2004 World Series) -> the Sox (9609ms)\nWho won the 2004 World Series?\tToronto\t-10.166474613016781\tWho won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (Toronto, win, the 2011 World Series) (Toronto, won, the 2004 Grey Cup) -> Toronto (9653ms)\nWho won the 2004 World Series?\ta nervous wreck\t-10.224707371283957\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series, was, a nervous wreck) -> a nervous wreck (12855ms)\nWho won the 2004 World Series?\tA player\t-10.436229469359422\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, be, the 2004 world series) -> (A player, was the MVP of, the 2004 World Series) -> A player (12855ms)\nWho won the 2004 World Series?\tESPN\t-10.495535264192277\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, have, the 2004 world series) -> (ESPN, has taken to running, the 2004 World Series) -> ESPN (12901ms)\nWho won the 2004 World Series?\tthe Boston Red Sox\t-10.569886894703398\tWho won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (the Boston Red Sox, won, the world series) (The Boston Red Sox, win, the 2004 World Series) -> the Boston Red Sox (9702ms)\nWho won the 2004 World Series?\tthe Red Soxs\t-10.637536479383085\tWho won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (the Red Soxs, won, the World Series) (the Red Sox, won, the 2004 World Series) -> the Red Soxs (9702ms)\nWho won the 2004 World Series?\ta 4 game sweep\t-10.809140958462605\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, was, a 4 game sweep) -> a 4 game sweep (12901ms)\nWho won the 2004 World Series?\tOctober 23\t-11.151264471507876\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, was played from, October 23) -> October 23 (12901ms)\nWho won the 2004 World Series?\tColumbus\t-11.756124254271839\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, will be held in, Columbus) -> Columbus (12901ms)\nWho won the 2004 World Series?\tthe baseball\t-11.760251529350692\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, be, the 2004 world series) -> (the baseball, was the final out of, the 2004 World Series) -> the baseball (12901ms)\nWho won the 2004 World Series?\tRamirez\t-11.791228756112762\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, be, the 2004 world series) -> (Ramirez, was MVP of, the 2004 World Series) -> Ramirez (12901ms)\nWho won the 2004 World Series?\t1967\t-11.805788218711111\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, is set up just like, 1967) -> 1967 (12901ms)\nWho won the 2004 World Series?\tthe history\t-11.996133494780244\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, was the 100th in, the history) -> the history (12901ms)\nWho won the 2004 World Series?\tthe juice\t-12.053991293769823\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series Champion Boston Red Sox, was on, the juice) -> the juice (13130ms)\nWho won the 2004 World Series?\tthe best part\t-12.110941758485573\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, be, the 2004 world series) -> (the best part, is reliving, the 2004 World Series) -> the best part (13130ms)\nWho won the 2004 World Series?\tthe cover\t-12.203406292470273\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series ? Champions, is featured on, the cover) -> the cover (13130ms)\nWho won the 2004 World Series?\tThe team\t-12.820027585151497\tWho won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (The team, won, the 1996 World Series) (the team, won, the 2004 NBA Championship) -> The team (9971ms)\nWho won the 2004 World Series?\tthe spring 2005 edition\t-13.560639996731776\tWho won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series, was featured in, the spring 2005 edition) -> the spring 2005 edition (13130ms)\nWhat are pomegranates?\thighly-valued fruit\t-5.3648011674571325\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, highly-valued fruit) -> highly-valued fruit (2817ms)\nWhat are pomegranates?\tfresh fruit and vegetable\t-5.456127488674752\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, fresh fruit and vegetable) -> fresh fruit and vegetable (2818ms)\nWhat are pomegranates?\tsource of bioactive compound\t-5.491241115315688\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, source of bioactive compound) -> source of bioactive compound (2817ms)\nWhat are pomegranates?\tbiblical oil\t-5.503205202781131\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, biblical oil) -> biblical oil (2817ms)\nWhat are pomegranates?\tIranian ancient fruit\t-5.630742673532389\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, Iranian ancient fruit) -> Iranian ancient fruit (2817ms)\nWhat are pomegranates?\tfruit of the Prophet Muhammad\t-5.640612914994527\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruit of the Prophet Muhammad) -> fruit of the Prophet Muhammad (2817ms)\nWhat are pomegranates?\tnative plant of Northern Africa\t-5.670119247914347\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, native plant of Northern Africa) -> native plant of Northern Africa (2973ms)\nWhat are pomegranates?\trich source of polyphenols\t-5.675284981082676\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of polyphenols) -> rich source of polyphenols (2973ms)\nWhat are pomegranates?\tfresh new fashion label\t-5.681805606210265\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fresh new fashion label) -> fresh new fashion label (2973ms)\nWhat are pomegranates?\tsource of polyphenols\t-5.6962091085986\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, source of polyphenols) -> source of polyphenols (2974ms)\nWhat are pomegranates?\tsymbol of righteousness\t-5.7008827070031725\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, symbol of righteousness) -> symbol of righteousness (2973ms)\nWhat are pomegranates?\tburnt pink shade\t-5.703067714680569\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, burnt pink shade) -> burnt pink shade (2973ms)\nWhat are pomegranates?\trich source of anthocyanins\t-5.71060379129246\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of anthocyanins) -> rich source of anthocyanins (3036ms)\nWhat are pomegranates?\thandsome deciduous and somewhat thorny large shrub or small tree\t-5.712188473527705\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, handsome deciduous and somewhat thorny large shrub or small tree) -> handsome deciduous and somewhat thorny large shrub or small tree (3036ms)\nWhat are pomegranates?\tjuicy kind of fruit\t-5.712188473527705\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, juicy kind of fruit) -> juicy kind of fruit (3036ms)\nWhat are pomegranates?\texotic fruit flavor\t-5.719518779740909\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, exotic fruit flavor) -> exotic fruit flavor (3037ms)\nWhat are pomegranates?\ttropical fruit\t-5.742253898268431\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, tropical fruit) -> tropical fruit (3036ms)\nWhat are pomegranates?\tpassion-red fruit\t-5.752960842084011\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, passion-red fruit) -> passion-red fruit (3036ms)\nWhat are pomegranates?\tround, delectable fruit\t-5.752960842084011\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, round, delectable fruit) -> round, delectable fruit (3337ms)\nWhat are pomegranates?\tnatural antifungal agent\t-5.752979563757859\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, natural antifungal agent) -> natural antifungal agent (3338ms)\nWhat are pomegranates?\trich source of antioxidant compound\t-5.780379284259812\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of antioxidant compound) -> rich source of antioxidant compound (3338ms)\nWhat are pomegranates?\tfruit containing seed\t-5.788734038672018\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, fruit containing seed) -> fruit containing seed (3337ms)\nWhat are pomegranates?\tfamous traditional product\t-5.788734038672018\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, famous traditional product) -> famous traditional product (3360ms)\nWhat are pomegranates?\textremely invaluable fruit\t-5.788734038672018\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, extremely invaluable fruit) -> extremely invaluable fruit (3338ms)\nWhat are pomegranates?\tfruity pink shade\t-5.788734038672018\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruity pink shade) -> fruity pink shade (3338ms)\nWhat are pomegranates?\tnative and traditional species\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, native and traditional species) -> native and traditional species (3361ms)\nWhat are pomegranates?\tlovely little deciduous tree\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, lovely little deciduous tree) -> lovely little deciduous tree (3588ms)\nWhat are pomegranates?\tfantastic and cheap persian restaurant\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fantastic and cheap persian restaurant) -> fantastic and cheap persian restaurant (3588ms)\nWhat are pomegranates?\tsymbol of Abundance prosperity & Wealth\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, symbol of Abundance prosperity & Wealth) -> symbol of Abundance prosperity & Wealth (3567ms)\nWhat are pomegranates?\tfantastic and tasty fruit\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fantastic and tasty fruit) -> fantastic and tasty fruit (3615ms)\nWhat are pomegranates?\tnot-so-common variety\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, not-so-common variety) -> not-so-common variety (3567ms)\nWhat are pomegranates?\tgreat sweet smelling scent\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, great sweet smelling scent) -> great sweet smelling scent (3361ms)\nWhat are pomegranates?\timpressive symbol of Jewish life and commitment\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, impressive symbol of Jewish life and commitment) -> impressive symbol of Jewish life and commitment (3588ms)\nWhat are pomegranates?\tdelicious and uncommon food\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, delicious and uncommon food) -> delicious and uncommon food (3566ms)\nWhat are pomegranates?\trich source of folic acid and anti oxidant\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of folic acid and anti oxidant) -> rich source of folic acid and anti oxidant (3588ms)\nWhat are pomegranates?\tsymbol of both fertility and immortality\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, symbol of both fertility and immortality) -> symbol of both fertility and immortality (3567ms)\nWhat are pomegranates?\tsmall tree of thorny shrub\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, small tree of thorny shrub) -> small tree of thorny shrub (3567ms)\nWhat are pomegranates?\tnaturally occurring mystical and miraculous superfood\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, naturally occurring mystical and miraculous superfood) -> naturally occurring mystical and miraculous superfood (3588ms)\nWhat are pomegranates?\tSo-called superfruits\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, So-called superfruits) -> So-called superfruits (3566ms)\nWhat are pomegranates?\tnatural source of Vitamin C and Iron\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, natural source of Vitamin C and Iron) -> natural source of Vitamin C and Iron (3615ms)\nWhat are pomegranates?\tred-colored fruit\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, red-colored fruit) -> red-colored fruit (3361ms)\nWhat are pomegranates?\tmillenary fruit growing species\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, millenary fruit growing species) -> millenary fruit growing species (3588ms)\nWhat are pomegranates?\treal rock star food\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, real rock star food) -> real rock star food (3360ms)\nWhat are pomegranates?\treasonably common backyard or dooryard plant\t-5.797854797519154\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, reasonably common backyard or dooryard plant) -> reasonably common backyard or dooryard plant (3361ms)\nWhat are pomegranates?\trich source of anti oxidant\t-5.80533255447619\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of anti oxidant) -> rich source of anti oxidant (3615ms)\nWhat are pomegranates?\trich source of flavonoid antioxidant\t-5.809605558626739\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of flavonoid antioxidant) -> rich source of flavonoid antioxidant (3615ms)\nWhat are pomegranates?\tfrozen yoghurt flavor\t-5.816152480847817\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, frozen yoghurt flavor) -> frozen yoghurt flavor (3615ms)\nWhat are pomegranates?\tSJ Creations\t-5.817190806275082\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (SJ Creations, Drugs manufactured, Pomegranate Orange Antibacterial Foaming Hand Wash 0.2 liquid) -> SJ Creations (3630ms)\nWhat are pomegranates?\tagricultural product\t-5.825699453190995\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, agricultural product) -> agricultural product (3631ms)\nWhat are pomegranates?\tluscious conditioning ingredient\t-5.829861700710017\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, luscious conditioning ingredient) -> luscious conditioning ingredient (3631ms)\nWhat are pomegranates?\tcitrus fruit\t-5.837102618990824\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, citrus fruit) -> citrus fruit (3632ms)\nWhat are pomegranates?\tspecialty crop\t-5.938928434119336\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, specialty crop) -> specialty crop (3630ms)\nWhat are pomegranates?\tnutritious fruit\t-5.983926891522968\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, nutritious fruit) -> nutritious fruit (3631ms)\nWhat are pomegranates?\tfruit crop\t-6.0495970055194785\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruit crop) -> fruit crop (3648ms)\nWhat are pomegranates?\tauspicious pattern\t-6.074082687223527\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, auspicious pattern) -> auspicious pattern (3648ms)\nWhat are pomegranates?\tbeautiful ingredient\t-6.088339387939531\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, beautiful ingredient) -> beautiful ingredient (3648ms)\nWhat are pomegranates?\texotic ingredient\t-6.092527904599894\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, exotic ingredient) -> exotic ingredient (3648ms)\nWhat are pomegranates?\tprivate company\t-6.103343190750323\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, private company) -> private company (3648ms)\nWhat are pomegranates?\tnatural superfruit\t-6.110129758537861\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, natural superfruit) -> natural superfruit (3648ms)\nWhat are pomegranates?\tcommon object\t-6.116793055721799\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, common object) -> common object (3668ms)\nWhat are pomegranates?\tfamous fruit\t-6.11835529106803\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, famous fruit) -> famous fruit (3669ms)\nWhat are pomegranates?\twonderful antioxidant\t-6.120160895859461\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, wonderful antioxidant) -> wonderful antioxidant (3668ms)\nWhat are pomegranates?\torange fruit\t-6.123838979625761\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, orange fruit) -> orange fruit (3669ms)\nWhat are pomegranates?\tcommon fruit\t-6.125085272451933\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, common fruit) -> common fruit (3668ms)\nWhat are pomegranates?\tgood food\t-6.1427681425663\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, good food) -> good food (3668ms)\nWhat are pomegranates?\tteasing fruit\t-6.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, teasing fruit) -> teasing fruit (3701ms)\nWhat are pomegranates?\ttropical type\t-6.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, tropical type) -> tropical type (3701ms)\nWhat are pomegranates?\toriental fruit\t-6.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, oriental fruit) -> oriental fruit (3700ms)\nWhat are pomegranates?\tcomplicated fruit\t-6.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, complicated fruit) -> complicated fruit (3701ms)\nWhat are pomegranates?\tpowerful fruit\t-6.158600032477704\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, powerful fruit) -> powerful fruit (3701ms)\nWhat are pomegranates?\talkaline fruit\t-6.159352941588205\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, alkaline fruit) -> alkaline fruit (3701ms)\nWhat are pomegranates?\tsuperior ingredient\t-6.161351046829945\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, superior ingredient) -> superior ingredient (3724ms)\nWhat are pomegranates?\tyogurt flavor\t-6.162501470930039\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, yogurt flavor) -> yogurt flavor (3724ms)\nWhat are pomegranates?\tcrop species\t-6.164620168489392\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, crop species) -> crop species (3724ms)\nWhat are pomegranates?\tminor crop\t-6.164764476260421\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, minor crop) -> minor crop (3724ms)\nWhat are pomegranates?\tfresh fruit\t-6.166240349408557\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fresh fruit) -> fresh fruit (3724ms)\nWhat are pomegranates?\ttraditional crop\t-6.170691395041217\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, traditional crop) -> traditional crop (3724ms)\nWhat are pomegranates?\tgood treatment\t-6.171160608875257\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, good treatment) -> good treatment (3763ms)\nWhat are pomegranates?\tlovely fruit\t-6.171474779033343\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, lovely fruit) -> lovely fruit (3762ms)\nWhat are pomegranates?\ttraditional fruit\t-6.175587544992003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, traditional fruit) -> traditional fruit (3762ms)\nWhat are pomegranates?\tdesert fruit\t-6.175587544992003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, desert fruit) -> desert fruit (3762ms)\nWhat are pomegranates?\tsubtropical species\t-6.189657534894624\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, subtropical species) -> subtropical species (3762ms)\nWhat are pomegranates?\tdried fruit\t-6.192412498758184\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, dried fruit) -> dried fruit (3762ms)\nWhat are pomegranates?\tjewish symbol\t-6.196151376011002\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, jewish symbol) -> jewish symbol (3780ms)\nWhat are pomegranates?\tbold color\t-6.198612007668438\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, bold color) -> bold color (3780ms)\nWhat are pomegranates?\tcozy restaurant\t-6.198893222434842\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, cozy restaurant) -> cozy restaurant (3780ms)\nWhat are pomegranates?\tAvon Products\t-6.434848595403138\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Avon Products, Drugs manufactured, Naturals Pomegranate and Mango Anti-Bacterial Hand Soap 0.5 liquid) -> Avon Products (3780ms)\nWhat are pomegranates?\tRoccos Old School\t-6.48993797883984\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Roccos Old School, Drugs manufactured, Prevail Pomegranate Hand Sanitizer 36.58 gel) -> Roccos Old School (3816ms)\nWhat are pomegranates?\tUnique Holding Group\t-6.530798978475009\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Unique Holding Group, Drugs manufactured, Pomegranate Rose Hand Sanitizer 62 liquid) -> Unique Holding Group (3816ms)\nWhat are pomegranates?\tTopical Pharmaceuticals\t-6.678190441444729\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Topical Pharmaceuticals, Drugs manufactured, Throat-Releev (Cherry and Pomegranate) 1.3 liquid) -> Topical Pharmaceuticals (3816ms)\nWhat are pomegranates?\tInsight Pharmaceuticals\t-6.678190441444729\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Insight Pharmaceuticals, Drugs manufactured, Sucrets Ice Pomegranate 3.3/12.5 liquid) -> Insight Pharmaceuticals (3816ms)\nWhat are pomegranates?\tDuane Reade\t-6.678190441444729\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Duane Reade, Drugs manufactured, Prevail Pomegranate Scented Antibacterial Hand 0.15 soap) -> Duane Reade (3844ms)\nWhat are pomegranates?\tGreenbrier International\t-6.678190441444729\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Greenbrier International, Drugs manufactured, Antibacterial Hand - Strawberry Pomegranate Scent 0.15 soap) -> Greenbrier International (3844ms)\nWhat are pomegranates?\tanti-oxidants\t-6.754679129882165\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be great source of, $x) -> (pomegranates, are great sources of, anti-oxidants) -> anti-oxidants (3865ms)\nWhat are pomegranates?\tApollo Health And Beauty Care\t-6.762466253192266\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Apollo Health And Beauty Care, Drugs manufactured, Antibacterial Foaming POMEGRANATE 0.46 liquid) -> Apollo Health And Beauty Care (3950ms)\nWhat are pomegranates?\tRite Aid\t-6.762466253192266\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Rite Aid, Drugs manufactured, Pure Spring STRAWBERRY AND POMEGRANATE 62 liquid) -> Rite Aid (3917ms)\nWhat are pomegranates?\tBath & Body Works\t-6.762466253192266\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Bath & Body Works, Drugs manufactured, Anti-Bacterial Hand Midnight Pomegranate 68 gel) -> Bath & Body Works (3949ms)\nWhat are pomegranates?\tFDA OTC monograph part 333a\t-7.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 333a, Drugs regulated, Prevail Pomegranate Scented Antibacterial Hand 0.15 soap) -> FDA OTC monograph part 333a (4184ms)\nWhat are pomegranates?\tFDA OTC monograph part 356\t-7.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 356, Drugs regulated, Sucrets Herbal Berry Pomegranate 5/6 lozenge) -> FDA OTC monograph part 356 (4159ms)\nWhat are pomegranates?\tFDA OTC monograph part 333\t-7.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 333, Drugs regulated, Anti-Bacterial Hand Foam Midnight Pomegranate 69 liquid) -> FDA OTC monograph part 333 (4183ms)\nWhat are pomegranates?\tFDA OTC monograph part 333e\t-7.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 333e, Drugs regulated, Ulta Pomegranate Lime Anti-Bacterial Deep Cleansing 0.3 liquid) -> FDA OTC monograph part 333e (4184ms)\nWhat are pomegranates?\tFDA OTC monograph part 352\t-7.155023713973003\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 352, Drugs regulated, GAP Favorite Lip Balm Pomegranate SPF 18 7.5/6 stick) -> FDA OTC monograph part 352 (4184ms)\nWhat are pomegranates?\tUlta\t-7.39946005107625\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Ulta, Drugs manufactured, Ulta Pomegranate Lime Anti-Bacterial Deep Cleansing 0.3 liquid) -> Ulta (4381ms)\nWhat are pomegranates?\tSafeway\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Safeway, Drugs manufactured, Fresh Decor CITRUS POMEGRANATE 65 liquid) -> Safeway (4483ms)\nWhat are pomegranates?\tFruit\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Fruit, Drugs with this flavor, GAP Favorite Lip Balm Creamy Pomegranate SPF 18 7.5/6 stick) -> Fruit (4520ms)\nWhat are pomegranates?\tPomegranate\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Pomegranate, Drugs with this flavor, Ulta Pomegranate Lime Anti-Bacterial Gentle Foaming 0.3 liquid) -> Pomegranate (4483ms)\nWhat are pomegranates?\tCircle\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Circle, Drugs with this shape, Sucrets Herbal Berry Pomegranate 5/6 lozenge) -> Circle (4469ms)\nWhat are pomegranates?\tCherry\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Cherry, Drugs with this flavor, Throat-Releev (Cherry and Pomegranate) 1.3 liquid) -> Cherry (4391ms)\nWhat are pomegranates?\tFragaria\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Fragaria, Drugs with this flavor, Sucrets Herbal Berry Pomegranate 5/6 lozenge) -> Fragaria (4469ms)\nWhat are pomegranates?\tPapermates\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Papermates, Drugs manufactured, Pomegranate Rose Hand Sanitizer 62 liquid) -> Papermates (4483ms)\nWhat are pomegranates?\tVanilla\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Vanilla, Drugs with this flavor, Ulta Pomegranate Lime Anti-Bacterial Hand Sanitizer 68 gel) -> Vanilla (4483ms)\nWhat are pomegranates?\tMelaleuca\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Melaleuca, Drugs manufactured, Sun Shades Lip Balm Pomegranate SPF 15 75/30 stick) -> Melaleuca (4483ms)\nWhat are pomegranates?\tRaspberry\t-7.4541846041590665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Raspberry, Drugs with this flavor, Sucrets Herbal Berry Pomegranate 5/6 lozenge) -> Raspberry (4483ms)\nWhat are pomegranates?\tAutumn Harp\t-7.69168916453849\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Autumn Harp, Drugs manufactured, GAP Favorite Lip Balm Pomegranate SPF 18 7.5/6 stick) -> Autumn Harp (4520ms)\nWhat are pomegranates?\tVitamin C\t-7.786624329397652\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be rich source of, $x) -> (Pomegranate, is a rich source of, Vitamin C) -> Vitamin C (4535ms)\nWhat are pomegranates?\tvitamin C\t-7.807970282912123\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranates, are a good source of, vitamin C) -> vitamin C (4535ms)\nWhat are pomegranates?\tvitamins C , B , K and E.\t-8.067059278303386\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are good sources of, vitamins C , B , K and E.) -> vitamins C , B , K and E. (4658ms)\nWhat are pomegranates?\tdietary fiber\t-8.098019691642612\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are also a good source of, dietary fiber) -> dietary fiber (4673ms)\nWhat are pomegranates?\tseason\t-8.140353629490905\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, season) -> season (4674ms)\nWhat are pomegranates?\tflavoring\t-8.193336403045627\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, flavoring) -> flavoring (4674ms)\nWhat are pomegranates?\tvitamin C. One pomegranate\t-8.202318536665933\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be also high in, $x) -> (Pomegranate fruit, is also high in, vitamin C. One pomegranate) -> vitamin C. One pomegranate (4674ms)\nWhat are pomegranates?\thost\t-8.211667315001506\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, host) -> host (5559ms)\nWhat are pomegranates?\tagriculture\t-8.22908329428514\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, agriculture) -> agriculture (5560ms)\nWhat are pomegranates?\tleader\t-8.294330233095735\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, leader) -> leader (5560ms)\nWhat are pomegranates?\titem\t-8.307394526471485\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, item) -> item (5560ms)\nWhat are pomegranates?\tdelicacy\t-8.32301510630241\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, delicacy) -> delicacy (5560ms)\nWhat are pomegranates?\tingredient\t-8.324506542774305\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, ingredient) -> ingredient (6715ms)\nWhat are pomegranates?\tfolic acid and antioxidants\t-8.343626313979948\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are a good source of, folic acid and antioxidants) -> folic acid and antioxidants (6716ms)\nWhat are pomegranates?\tvitamins C and B\t-8.360112600568357\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be great source of, $x) -> (pomegranate juice, is a great source of, vitamins C and B) -> vitamins C and B (6716ms)\nWhat are pomegranates?\tblueberry\t-8.377205399489238\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, blueberry) -> blueberry (6715ms)\nWhat are pomegranates?\trefreshment\t-8.400685280747979\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, refreshment) -> refreshment (6914ms)\nWhat are pomegranates?\testablishment\t-8.41223788173623\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranates, Instance Of, establishment) -> establishment (6914ms)\nWhat are pomegranates?\tshade\t-8.417128485395224\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, shade) -> shade (6914ms)\nWhat are pomegranates?\tproject\t-8.420989751228777\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, project) -> project (7057ms)\nWhat are pomegranates?\toperation\t-8.421860944357665\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, operation) -> operation (7056ms)\nWhat are pomegranates?\twoman\t-8.42257354173245\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, woman) -> woman (7056ms)\nWhat are pomegranates?\tpotassium and vitamin C\t-8.466137553008217\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranates, are a good source of, potassium and vitamin C) -> potassium and vitamin C (7056ms)\nWhat are pomegranates?\tvitamin C and potassium\t-8.47448758781568\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranate, is a good source of, vitamin C and potassium) -> vitamin C and potassium (7056ms)\nWhat are pomegranates?\tthe B vitamin\t-8.495531928576868\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranate juice, is also a good source of, the B vitamin) -> the B vitamin (7056ms)\nWhat are pomegranates?\tvitamin K and folate\t-8.589031636232988\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be an excellent source of, $x) -> (Pomegranates, are an excellent source of, vitamin K and folate) -> vitamin K and folate (7075ms)\nWhat are pomegranates?\tdietary antioxidants\t-8.663406225449897\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be an excellent source of, $x) -> (Pomegranates, are an excellent source of, dietary antioxidants) -> dietary antioxidants (7256ms)\nWhat are pomegranates?\tVitamin C and potassium\t-9.064231689863632\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are a good source of, Vitamin C and potassium) -> Vitamin C and potassium (7345ms)\nWhat are pomegranates?\tancient healing benefits\t-9.14047293412552\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, top the list of, $x) -> (pomegranates, top the list of, ancient healing benefits) -> ancient healing benefits (7388ms)\nWhat are pomegranates?\tantioxidants and flavonoids\t-9.14710749835895\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be rich source of, $x) -> (Pomegranates, are a rich source of, antioxidants and flavonoids) -> antioxidants and flavonoids (7388ms)\nWhat are pomegranates?\toil\t-9.299907331143988\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, grapeseed, $x) -> (Contains pomegranate oil, grapeseed, oil) -> oil (7388ms)\nWhat are pomegranates?\tdelicious choices\t-9.508530982228699\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, top the list of, $x) -> (even pomegranate truffles, top the list of, delicious choices) -> delicious choices (7554ms)\nWhat are pomegranates?\tjewel-boxes\t-10.014069612871872\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, be, $x) -> (Pomegranates, are, jewel-boxes) -> jewel-boxes (7616ms)\nWhat are pomegranates?\tpotassium\t-10.09089593640525\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are good sources of, potassium) -> potassium (7616ms)\nWhat are pomegranates?\tfiber\t-10.130167383307864\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be also high in, $x) -> (Pomegranates, are also high in, fiber) -> fiber (7616ms)\nWhat are pomegranates?\tblack dot\t-10.148250810970003\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, be, $x) -> (pomegranates, are, black dot) -> black dot (7616ms)\nWhat are pomegranates?\tantioxidants\t-10.250940914238027\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (4 to 8. Pomegranates, are a good source of, antioxidants) -> antioxidants (7616ms)\nWhat are pomegranates?\tiron\t-10.256558916094686\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranate, is a good source of, iron) -> iron (7637ms)\nWhat are pomegranates?\tquercetin\t-10.320201377158849\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be great source of, $x) -> (blue berries and pomegranates, are great sources of, quercetin) -> quercetin (7665ms)\nWhat are pomegranates?\tphytoestrogens\t-10.321714620335335\tWhat are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be rich source of, $x) -> (Pomegranate seed oil, is a rich source of, phytoestrogens) -> phytoestrogens (7665ms)\nWhat are pomegranates?\tMale Excess\t-10.329058511305075\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Male Excess, is, Pomegranate) -> Male Excess (7665ms)\nWhat are pomegranates?\tGreece\t-10.452954322687681\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Greece, is, pomegranates) -> Greece (8289ms)\nWhat are pomegranates?\tEllagic acid\t-10.502193239654272\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Ellagic acid, is particularly plentiful in, pomegranates) -> Ellagic acid (8289ms)\nWhat are pomegranates?\tThird Millennium Publishing\t-10.572211721328264\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Third Millennium Publishing, Book editions published, The Incredible Pomegranate) -> Third Millennium Publishing (8603ms)\nWhat are pomegranates?\tTweak Extreme\t-10.609536660513374\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Tweak Extreme, was, Pomegranate) -> Tweak Extreme (8289ms)\nWhat are pomegranates?\tReal Grenadine\t-10.610338342674318\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Real Grenadine, is made from, Pomegranates) -> Real Grenadine (8289ms)\nWhat are pomegranates?\tA House of Pomegranates: Being a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. a Story of the Seen And the Unseen\t-10.625201272150983\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (A House of Pomegranates: Being a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. a Story of the Seen And the Unseen, Edition Of, A House of Pomegranates) -> A House of Pomegranates: Being a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. a Story of the Seen And the Unseen (8603ms)\nWhat are pomegranates?\tA House of Pomegranates\t-10.625201272150983\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (A House of Pomegranates: Being a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. a Story of the Seen And the Unseen, Edition Of, A House of Pomegranates) -> A House of Pomegranates (8603ms)\nWhat are pomegranates?\tAzerbaijan?s trademark\t-10.658379973769138\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Azerbaijan?s trademark, is, pomegranates) -> Azerbaijan?s trademark (8603ms)\nWhat are pomegranates?\tMorocco\t-10.687331343838636\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Morocco, are, pomegranates) -> Morocco (8603ms)\nWhat are pomegranates?\tThorndike Press\t-10.719603184297982\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Thorndike Press, Book editions published, Pomegranate Soup) -> Thorndike Press (8603ms)\nWhat are pomegranates?\tWildside Press\t-10.719603184297982\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Wildside Press, Book editions published, A House of Pomegranates) -> Wildside Press (8743ms)\nWhat are pomegranates?\tGeorge Tooker\t-10.719603184297982\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, George Tooker) -> George Tooker (8603ms)\nWhat are pomegranates?\tBorgo Press\t-10.719603184297982\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Borgo Press, Book editions published, A House of Pomegranates) -> Borgo Press (8742ms)\nWhat are pomegranates?\tRomare Bearden\t-10.719603184297982\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Romare Bearden) -> Romare Bearden (8603ms)\nWhat are pomegranates?\tTurker Korkmaz\t-10.720771821655251\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, produce, $x) -> (The Pomegranate, Produced by, Turker Korkmaz) -> Turker Korkmaz (9695ms)\nWhat are pomegranates?\tMassoud Bakhshi\t-10.720771821655251\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, produce, $x) -> (Tehran Has No More Pomegranates!, Produced by, Massoud Bakhshi) -> Massoud Bakhshi (9695ms)\nWhat are pomegranates?\ta superfood\t-10.721134546688361\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, be, $x) -> (Pomegranate, is, a superfood) -> a superfood (8743ms)\nWhat are pomegranates?\ta producer\t-10.72784529224585\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (a producer, was, Pomegranate) -> a producer (8742ms)\nWhat are pomegranates?\ta name\t-10.72784529224585\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (a name, is, Pomegranate) -> a name (8742ms)\nWhat are pomegranates?\t?a little pricey ?\t-10.769039016967481\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, be, $x) -> (pomegranates, were, ?a little pricey ?) -> ?a little pricey ? (8742ms)\nWhat are pomegranates?\tmuch Vitamin K\t-10.772183616183455\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (much Vitamin K, is in, pomegranates) -> much Vitamin K (8742ms)\nWhat are pomegranates?\tPomegranates from an English garden\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Pomegranates from an English garden: a selection from the poems of Robert Browning, Edition Of, Pomegranates from an English garden) -> Pomegranates from an English garden (11602ms)\nWhat are pomegranates?\tSusan Seddon Boulet: the goddess paintings\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Susan Seddon Boulet: the goddess paintings) -> Susan Seddon Boulet: the goddess paintings (11630ms)\nWhat are pomegranates?\tThe Yosemite handbook: an insider's guide to the park, as related by Bruinhilda\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Yosemite handbook: an insider's guide to the park, as related by Bruinhilda) -> The Yosemite handbook: an insider's guide to the park, as related by Bruinhilda (11224ms)\nWhat are pomegranates?\tTaking tea with Mackintosh: the story of Miss Cranston's tea rooms\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Taking tea with Mackintosh: the story of Miss Cranston's tea rooms) -> Taking tea with Mackintosh: the story of Miss Cranston's tea rooms (10398ms)\nWhat are pomegranates?\tPomegranates from the Punjab.  Indian stories\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Pomegranates from the Punjab.  Indian stories, Edition Of, Pomegranates from the Punjab.  Indian stories) -> Pomegranates from the Punjab.  Indian stories (11223ms)\nWhat are pomegranates?\tThe Alphabet Book Mobile (Book Mobiles)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Alphabet Book Mobile (Book Mobiles)) -> The Alphabet Book Mobile (Book Mobiles) (11631ms)\nWhat are pomegranates?\tDavid Roberts: travels in Egypt & the Holy Land\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, David Roberts: travels in Egypt & the Holy Land) -> David Roberts: travels in Egypt & the Holy Land (10813ms)\nWhat are pomegranates?\tIce-covered Rose Hips, Sierra Club Boxed Holiday Cards\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Ice-covered Rose Hips, Sierra Club Boxed Holiday Cards) -> Ice-covered Rose Hips, Sierra Club Boxed Holiday Cards (10813ms)\nWhat are pomegranates?\tShaman: the paintings of Susan Seddon Boulet.\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Shaman: the paintings of Susan Seddon Boulet.) -> Shaman: the paintings of Susan Seddon Boulet. (9874ms)\nWhat are pomegranates?\tBartles & Jaymes\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, product, $x) -> (Raspberry Pomegranate, Products with this flavor, Bartles & Jaymes) -> Bartles & Jaymes (11256ms)\nWhat are pomegranates?\tMother Goose Post Card Book\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Mother Goose Post Card Book) -> Mother Goose Post Card Book (9695ms)\nWhat are pomegranates?\tThe Numbers Book Mobile (Book Mobiles)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Numbers Book Mobile (Book Mobiles)) -> The Numbers Book Mobile (Book Mobiles) (10398ms)\nWhat are pomegranates?\tA Garden of Pomegranates\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (A garden of pomegranates; an outline of the Qabalah, Edition Of, A Garden of Pomegranates) -> A Garden of Pomegranates (9874ms)\nWhat are pomegranates?\tDial Books for Young Readers\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Dial Books for Young Readers, Book editions published, Persephone and the Pomegranate) -> Dial Books for Young Readers (11256ms)\nWhat are pomegranates?\tShelter: Human Habitats from Around the World\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Shelter: Human Habitats from Around the World) -> Shelter: Human Habitats from Around the World (11003ms)\nWhat are pomegranates?\tBells and Pomegranates. No. V\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Bells and pomegranates : first series, Edition Of, Bells and Pomegranates. No. V) -> Bells and Pomegranates. No. V (11631ms)\nWhat are pomegranates?\tThe Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (The Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter, Edition Of, The Narcissus and the pomegranate) -> The Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter (10813ms)\nWhat are pomegranates?\tPorcelain Moon and Pomegranates\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Porcelain Moon and Pomegranates: A Woman's Trek Through Turkey, Edition Of, Porcelain Moon and Pomegranates) -> Porcelain Moon and Pomegranates (10957ms)\nWhat are pomegranates?\tEdward Hopper's New England\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Edward Hopper's New England) -> Edward Hopper's New England (9768ms)\nWhat are pomegranates?\tCows: a book of postcards.\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Cows: a book of postcards.) -> Cows: a book of postcards. (9768ms)\nWhat are pomegranates?\tParrish and Poetry: A Gift of Words and Art\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Parrish and Poetry: A Gift of Words and Art) -> Parrish and Poetry: A Gift of Words and Art (10813ms)\nWhat are pomegranates?\tJane Morris: the Pre-Raphaelite model of beauty\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Jane Morris: the Pre-Raphaelite model of beauty) -> Jane Morris: the Pre-Raphaelite model of beauty (9874ms)\nWhat are pomegranates?\tBells and Pomegranates. No. V (Collected Works of Robert Browning)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Bells and Pomegranates. No. V (Collected Works of Robert Browning), Edition Of, Bells and Pomegranates. No. V) -> Bells and Pomegranates. No. V (Collected Works of Robert Browning) (11469ms)\nWhat are pomegranates?\tMeinrad Craighead: Crow Mother and the Dog God\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Meinrad Craighead: Crow Mother and the Dog God: A Restrospective (Pomegranate Catalog), Edition Of, Meinrad Craighead: Crow Mother and the Dog God) -> Meinrad Craighead: Crow Mother and the Dog God (10212ms)\nWhat are pomegranates?\tContemporary architectural drawings: donations to the Avery Library centennial drawings archive\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Contemporary architectural drawings: donations to the Avery Library centennial drawings archive) -> Contemporary architectural drawings: donations to the Avery Library centennial drawings archive (9768ms)\nWhat are pomegranates?\tMills & Boon\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Mills & Boon, Book editions published, Isle of Pomegranates) -> Mills & Boon (10579ms)\nWhat are pomegranates?\tThe Shadow of the Pomegranate\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (The Shadow of the Pomegranate (Tudors 3), Edition Of, The Shadow of the Pomegranate) -> The Shadow of the Pomegranate (11223ms)\nWhat are pomegranates?\tGustave Baumann's Southwest\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Gustave Baumann's Southwest) -> Gustave Baumann's Southwest (11003ms)\nWhat are pomegranates?\tPomegranates: a poem\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranates, Editions, Pomegranates: a poem) -> Pomegranates: a poem (11568ms)\nWhat are pomegranates?\tThe Muir Woods handbook: an insider's guide to the park\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Muir Woods handbook: an insider's guide to the park) -> The Muir Woods handbook: an insider's guide to the park (11602ms)\nWhat are pomegranates?\tAmerican Paintings: A Book of Postcards\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, American Paintings: A Book of Postcards) -> American Paintings: A Book of Postcards (10957ms)\nWhat are pomegranates?\tWomen of the West: A Book of Postcards\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Women of the West: A Book of Postcards) -> Women of the West: A Book of Postcards (10461ms)\nWhat are pomegranates?\tThe Art of Arthur & Lucia Mathews\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Art of Arthur & Lucia Mathews) -> The Art of Arthur & Lucia Mathews (11631ms)\nWhat are pomegranates?\tPercival Pea and Polly Pomegranate\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Percival Pea and Polly Pomegranate, Edition Of, Percival Pea and Polly Pomegranate) -> Percival Pea and Polly Pomegranate (11630ms)\nWhat are pomegranates?\tSaw-whet Owl, Sierra Club Boxed Holiday Cards\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Saw-whet Owl, Sierra Club Boxed Holiday Cards) -> Saw-whet Owl, Sierra Club Boxed Holiday Cards (9768ms)\nWhat are pomegranates?\tIsle of Pomegranates\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Isle of Pomegranates, Edition Of, Isle of Pomegranates) -> Isle of Pomegranates (11224ms)\nWhat are pomegranates?\tCafe Babilonia/ Pomegranate Soup\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Cafe Babilonia/ Pomegranate Soup, Edition Of, Cafe Babilonia/ Pomegranate Soup) -> Cafe Babilonia/ Pomegranate Soup (11630ms)\nWhat are pomegranates?\tBlack velvet: the art we love to hate\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Black velvet: the art we love to hate) -> Black velvet: the art we love to hate (10461ms)\nWhat are pomegranates?\tUnder the Pomegranate Tree\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Under the Pomegranate Tree: The Best New Latino Erotica, Edition Of, Under the Pomegranate Tree) -> Under the Pomegranate Tree (10398ms)\nWhat are pomegranates?\tHomecoming: The Paintings of William H. Johnson: A Book of Postcards\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Homecoming: The Paintings of William H. Johnson: A Book of Postcards) -> Homecoming: The Paintings of William H. Johnson: A Book of Postcards (10579ms)\nWhat are pomegranates?\tPomegranate Soup: A Novel\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Soup, Editions, Pomegranate Soup: A Novel) -> Pomegranate Soup: A Novel (11256ms)\nWhat are pomegranates?\tPomegranate: Fruits of Paradise (Woodland Health Series)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Editions, Pomegranate: Fruits of Paradise (Woodland Health Series)) -> Pomegranate: Fruits of Paradise (Woodland Health Series) (11097ms)\nWhat are pomegranates?\tUnder the Pomegranate Tree: The Best New Latino Erotica\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Under the Pomegranate Tree: The Best New Latino Erotica, Edition Of, Under the Pomegranate Tree) -> Under the Pomegranate Tree: The Best New Latino Erotica (11003ms)\nWhat are pomegranates?\tThe Grand Canyon handbook: an insider's guide to the park, as related by Ranger Jack\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Grand Canyon handbook: an insider's guide to the park, as related by Ranger Jack) -> The Grand Canyon handbook: an insider's guide to the park, as related by Ranger Jack (10957ms)\nWhat are pomegranates?\tStuart Davis's abstract argot\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Stuart Davis's abstract argot) -> Stuart Davis's abstract argot (11223ms)\nWhat are pomegranates?\tCrazy Dervish and the Pomegranate Tree\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Crazy Dervish and the Pomegranate Tree, Edition Of, Crazy Dervish and the Pomegranate Tree) -> Crazy Dervish and the Pomegranate Tree (10497ms)\nWhat are pomegranates?\tCharles Rennie Mackintosh: textile designs\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Charles Rennie Mackintosh: textile designs) -> Charles Rennie Mackintosh: textile designs (9768ms)\nWhat are pomegranates?\tCatChristmas\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, CatChristmas) -> CatChristmas (11630ms)\nWhat are pomegranates?\tPastures in the Sky\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Pastures in the Sky) -> Pastures in the Sky (10579ms)\nWhat are pomegranates?\tA garden of pomegranates; an outline of the Qabalah\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (A garden of pomegranates; an outline of the Qabalah, Edition Of, A Garden of Pomegranates) -> A garden of pomegranates; an outline of the Qabalah (11469ms)\nWhat are pomegranates?\tDomes of America\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Domes of America) -> Domes of America (10398ms)\nWhat are pomegranates?\tThe Pomegranates of Kandahar\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (The Pomegranates of Kandahar, Editions, The Pomegranates of Kandahar) -> The Pomegranates of Kandahar (11183ms)\nWhat are pomegranates?\tThe Hastings Hours (Illuminated Gift)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Hastings Hours (Illuminated Gift)) -> The Hastings Hours (Illuminated Gift) (11183ms)\nWhat are pomegranates?\tDoves and pomegranates\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Doves and pomegranates, Editions, Doves and pomegranates: poems for young readers) -> Doves and pomegranates (11631ms)\nWhat are pomegranates?\tThe Crazy Clothes Book Mobile (Book Mobiles)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Crazy Clothes Book Mobile (Book Mobiles)) -> The Crazy Clothes Book Mobile (Book Mobiles) (11184ms)\nWhat are pomegranates?\tBehind the doors of San Miguel de Allende\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Behind the doors of San Miguel de Allende) -> Behind the doors of San Miguel de Allende (11003ms)\nWhat are pomegranates?\tMarshall Field's (A Building Book)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Marshall Field's (A Building Book)) -> Marshall Field's (A Building Book) (10957ms)\nWhat are pomegranates?\tMaxfield Parrish: A Retrospective\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Maxfield Parrish: A Retrospective) -> Maxfield Parrish: A Retrospective (10957ms)\nWhat are pomegranates?\tSeed of the pomegranate\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Seed of the pomegranate, Editions, Seed of the pomegranate: and other poems.) -> Seed of the pomegranate (10957ms)\nWhat are pomegranates?\tShadows of the pomegranate tree\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Shadows of the pomegranate tree, Editions, Shadows of the pomegranate tree) -> Shadows of the pomegranate tree (11602ms)\nWhat are pomegranates?\tOuthouses by famous architects\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Outhouses by famous architects) -> Outhouses by famous architects (10497ms)\nWhat are pomegranates?\tGolden Bells & Pomegranates\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Golden Bells & Pomegranates: Studies in Midrash Leviticus Rabbah (Texts & Studies in Ancient Judaism, 94), Edition Of, Golden Bells & Pomegranates) -> Golden Bells & Pomegranates (10461ms)\nWhat are pomegranates?\tThe Yellowstone handbook: an insider's guide to the park, as related by Ranger Norm\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Yellowstone handbook: an insider's guide to the park, as related by Ranger Norm) -> The Yellowstone handbook: an insider's guide to the park, as related by Ranger Norm (11223ms)\nWhat are pomegranates?\tThe Pomegranate: Love and Peace Poems\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (The Pomegranate: Love and Peace Poems, Edition Of, The Pomegranate) -> The Pomegranate: Love and Peace Poems (11568ms)\nWhat are pomegranates?\tBells and pomegranates : first series\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Bells and pomegranates : first series, Edition Of, Bells and Pomegranates. No. V) -> Bells and pomegranates : first series (10579ms)\nWhat are pomegranates?\tPomegranates from an English garden: a selection from the poems of Robert Browning\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Pomegranates from an English garden: a selection from the poems of Robert Browning, Edition Of, Pomegranates from an English garden) -> Pomegranates from an English garden: a selection from the poems of Robert Browning (10813ms)\nWhat are pomegranates?\tA House of Pomegranates (Collected Works of Oscar Wilde)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (A House of Pomegranates (Collected Works of Oscar Wilde), Edition Of, A House of Pomegranates) -> A House of Pomegranates (Collected Works of Oscar Wilde) (10212ms)\nWhat are pomegranates?\tWhite Wolf Publishing\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (White Wolf Publishing, Book editions published, Pomegranates Full and Fine) -> White Wolf Publishing (11098ms)\nWhat are pomegranates?\tPomegranates Full and Fine\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Pomegranates Full and Fine, Edition Of, Pomegranates Full and Fine) -> Pomegranates Full and Fine (11256ms)\nWhat are pomegranates?\tDinosaurs and pink pomegranates\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Dinosaurs and pink pomegranates, Edition Of, Dinosaurs and pink pomegranates) -> Dinosaurs and pink pomegranates (11568ms)\nWhat are pomegranates?\tThe Gutenberg Bible (Illuminated Gift)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Gutenberg Bible (Illuminated Gift)) -> The Gutenberg Bible (Illuminated Gift) (9874ms)\nWhat are pomegranates?\tThoughts from Walden Pond by Henry David Thoreau\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Thoughts from Walden Pond by Henry David Thoreau) -> Thoughts from Walden Pond by Henry David Thoreau (11469ms)\nWhat are pomegranates?\tRed Fox, Sierra Club Boxed Holiday Cards\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Red Fox, Sierra Club Boxed Holiday Cards) -> Red Fox, Sierra Club Boxed Holiday Cards (10957ms)\nWhat are pomegranates?\tThe Narcissus and the pomegranate\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (The Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter, Edition Of, The Narcissus and the pomegranate) -> The Narcissus and the pomegranate (10579ms)\nWhat are pomegranates?\tWinter Wildlife Boxed Assorted Sierra Club Holiday Cards\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Winter Wildlife Boxed Assorted Sierra Club Holiday Cards) -> Winter Wildlife Boxed Assorted Sierra Club Holiday Cards (11183ms)\nWhat are pomegranates?\tDoves and pomegranates: poems for young readers\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Doves and pomegranates: poems for young readers, Edition Of, Doves and pomegranates) -> Doves and pomegranates: poems for young readers (11602ms)\nWhat are pomegranates?\tSurfing: a history of the ancient Hawaiian sport\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Surfing: a history of the ancient Hawaiian sport) -> Surfing: a history of the ancient Hawaiian sport (10497ms)\nWhat are pomegranates?\tDigireads.com\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Digireads.com, Book editions published, A House of Pomegranates) -> Digireads.com (10579ms)\nWhat are pomegranates?\tYasuo Kuniyoshi's women\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Yasuo Kuniyoshi's women) -> Yasuo Kuniyoshi's women (9874ms)\nWhat are pomegranates?\tThe Art of Whitfield Lovell\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (The Art of Whitfield Lovell: Whispers from the Walls (Pomegranate Catalog, No. A662), Edition Of, The Art of Whitfield Lovell) -> The Art of Whitfield Lovell (9874ms)\nWhat are pomegranates?\tCharles Bragg, the works!: a retrospective\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Charles Bragg, the works!: a retrospective) -> Charles Bragg, the works!: a retrospective (11224ms)\nWhat are pomegranates?\tSears Tower: A Building Book from the Chicago Architecture Foundation\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Sears Tower: A Building Book from the Chicago Architecture Foundation) -> Sears Tower: A Building Book from the Chicago Architecture Foundation (10461ms)\nWhat are pomegranates?\tPomegranates: A Selection from the Poems of Robert Browning\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Pomegranates: A Selection from the Poems of Robert Browning, Edition Of, Pomegranates) -> Pomegranates: A Selection from the Poems of Robert Browning (11098ms)\nWhat are pomegranates?\tAltered English: surprising meanings of familiar words\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Altered English: surprising meanings of familiar words) -> Altered English: surprising meanings of familiar words (11256ms)\nWhat are pomegranates?\tOverTime: the jazz photographs of Milt Hinton\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, OverTime: the jazz photographs of Milt Hinton) -> OverTime: the jazz photographs of Milt Hinton (11469ms)\nWhat are pomegranates?\tPorcelain Moon and Pomegranates: A Woman's Trek Through Turkey\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Porcelain Moon and Pomegranates: A Woman's Trek Through Turkey, Edition Of, Porcelain Moon and Pomegranates) -> Porcelain Moon and Pomegranates: A Woman's Trek Through Turkey (11003ms)\nWhat are pomegranates?\tFloating Worlds: The Letters of Edward Gorey and Peter F. Neumeyer\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Floating Worlds: The Letters of Edward Gorey and Peter F. Neumeyer) -> Floating Worlds: The Letters of Edward Gorey and Peter F. Neumeyer (10398ms)\nWhat are pomegranates?\tTalking Jazz: An Illustrated Oral History\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Talking Jazz: An Illustrated Oral History) -> Talking Jazz: An Illustrated Oral History (11568ms)\nWhat are pomegranates?\tHeart of the circle: photographs of Native American women\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Heart of the circle: photographs of Native American women) -> Heart of the circle: photographs of Native American women (11098ms)\nWhat are pomegranates?\tSeed of the pomegranate: and other poems.\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Seed of the pomegranate: and other poems., Edition Of, Seed of the pomegranate) -> Seed of the pomegranate: and other poems. (11184ms)\nWhat are pomegranates?\tPomegranate seed: a novel\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Pomegranate seed: a novel, Edition Of, Pomegranate seed) -> Pomegranate seed: a novel (11469ms)\nWhat are pomegranates?\tCryptorunes: codes and secret writing\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Cryptorunes: codes and secret writing) -> Cryptorunes: codes and secret writing (11469ms)\nWhat are pomegranates?\tThe Magic Pomegranate: A Jewish Folktale (On My Own Folklore)\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (The Magic Pomegranate: A Jewish Folktale (On My Own Folklore), Edition Of, The Magic Pomegranate) -> The Magic Pomegranate: A Jewish Folktale (On My Own Folklore) (11256ms)\nWhat are pomegranates?\tBurne-Jones\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Burne-Jones) -> Burne-Jones (10398ms)\nWhat are pomegranates?\tThe Pomegranate Princess: And Other Tales From India\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (The Pomegranate Princess: And Other Tales From India, Edition Of, The Pomegranate Princess) -> The Pomegranate Princess: And Other Tales From India (9874ms)\nWhat are pomegranates?\tThe Wuggly Ump\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Wuggly Ump) -> The Wuggly Ump (11602ms)\nWhat are pomegranates?\tM.C. Escher kaleidocycles\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, M.C. Escher kaleidocycles) -> M.C. Escher kaleidocycles (11568ms)\nWhat are pomegranates?\tBookSurge Classics\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (BookSurge Classics, Book editions published, A House of Pomegranates) -> BookSurge Classics (10497ms)\nWhat are pomegranates?\tWomen of the civil rights movement\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Women of the civil rights movement) -> Women of the civil rights movement (10398ms)\nWhat are pomegranates?\tA view from the river: the Chicago Architecture Foundation river cruise\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, A view from the river: the Chicago Architecture Foundation river cruise) -> A view from the river: the Chicago Architecture Foundation river cruise (11256ms)\nWhat are pomegranates?\tThe Other Side of Color: African American Art in the Collection of Camille O. and William H. Cosby, Jr.\t-10.80387899604552\tWhat are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Other Side of Color: African American Art in the Collection of Camille O. and William H. Cosby, Jr.) -> The Other Side of Color: African American Art in the Collection of Camille O. and William H. Cosby, Jr. (10497ms)\nWhat year was the program first broadcast?\tthe growing interest\t-7.655613962172634\tWhat year was the program first broadcast? -> $x: (the program first broadcast, year, $x) -> $x: (the program first broadcast, come, $x) -> (The program first broadcast, comes out of, the growing interest) -> the growing interest (2387ms)\nWhat is the average weight of a Yellow Labrador?\tMr Deeley\t-9.34379171774577\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Mr Deeley, is the owner of, a yellow Labrador) -> Mr Deeley (5074ms)\nWhat is the average weight of a Yellow Labrador?\tCA Sonny\t-9.833179391518463\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (CA Sonny, is, a friendly yellow labrador) -> CA Sonny (5074ms)\nWhat is the average weight of a Yellow Labrador?\t14 years\t-10.200768528714997\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (14 years, is, a yellow labrador) -> 14 years (5074ms)\nWhat is the average weight of a Yellow Labrador?\tKentucky Fried Chicken\t-10.333583203170573\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a female yellow Labrador, was found near, Kentucky Fried Chicken) -> Kentucky Fried Chicken (5250ms)\nWhat is the average weight of a Yellow Labrador?\tbreeder Gretchen\t-10.75979900558966\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (A yellow Labrador retriever puppy, is held by, breeder Gretchen) -> breeder Gretchen (5249ms)\nWhat is the average weight of a Yellow Labrador?\tME Max\t-10.814908069138104\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (ME Max, is, a adorable , funny yellow labrador) -> ME Max (5074ms)\nWhat is the average weight of a Yellow Labrador?\ta Christmas puppy\t-10.887211136030196\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador, had been, a Christmas puppy) -> a Christmas puppy (5251ms)\nWhat is the average weight of a Yellow Labrador?\tNumber three\t-10.903619688460138\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Number three, was, a yellow Labrador) -> Number three (5074ms)\nWhat is the average weight of a Yellow Labrador?\tButch\t-10.904069241759359\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Butch, is, a Yellow Labrador Retriever) -> Butch (5074ms)\nWhat is the average weight of a Yellow Labrador?\tan older brother Jake\t-10.905096241500443\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (an older brother Jake, is, a Yellow Labrador Retriever) -> an older brother Jake (5249ms)\nWhat is the average weight of a Yellow Labrador?\tloud noises\t-10.909208314185255\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador, was terrified of, loud noises) -> loud noises (5249ms)\nWhat is the average weight of a Yellow Labrador?\tMaddie\t-10.941568395981946\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Maddie, is actually, a Yellow Labrador) -> Maddie (5249ms)\nWhat is the average weight of a Yellow Labrador?\tOld Yeller\t-10.970168638246038\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Old Yeller, was played by, a Yellow Labrador Retriever) -> Old Yeller (5643ms)\nWhat is the average weight of a Yellow Labrador?\tTexas USA My dog\t-11.056926970777358\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Texas USA My dog, is, a Yellow Labrador) -> Texas USA My dog (5643ms)\nWhat is the average weight of a Yellow Labrador?\tKura\t-11.082959039988976\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Kura, is, a 8 year old Yellow Labrador) -> Kura (5643ms)\nWhat is the average weight of a Yellow Labrador?\t16451 Cosmo\t-11.167239248460104\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (16451 Cosmo, is, a yellow Labrador) -> 16451 Cosmo (5643ms)\nWhat is the average weight of a Yellow Labrador?\tMom\t-11.170819545522487\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Mom, is, a yellow labrador) -> Mom (5643ms)\nWhat is the average weight of a Yellow Labrador?\tNaomi\t-11.235799965683746\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador, is special companion of, Naomi) -> Naomi (5643ms)\nWhat is the average weight of a Yellow Labrador?\tTennessee\t-11.243705874731297\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a adorable , funny yellow labrador, was rescued from, Tennessee) -> Tennessee (5708ms)\nWhat is the average weight of a Yellow Labrador?\tLibby\t-11.271484401604056\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Libby, is, a yellow Labrador retriever) -> Libby (5708ms)\nWhat is the average weight of a Yellow Labrador?\ta small child\t-11.278527368073064\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a huge yellow Labrador, was dragging, a small child) -> a small child (5708ms)\nWhat is the average weight of a Yellow Labrador?\tthree years\t-11.339677256038776\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador guide dog, was a little over, three years) -> three years (5708ms)\nWhat is the average weight of a Yellow Labrador?\tSunshine\t-11.345950399334141\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Sunshine, is, a yellow labrador) -> Sunshine (5708ms)\nWhat is the average weight of a Yellow Labrador?\tBadge # 17\t-11.389374963145531\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Badge # 17, was, a yellow Labrador Retriever) -> Badge # 17 (5831ms)\nWhat is the average weight of a Yellow Labrador?\tDakota\t-11.443410976003888\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Dakota, is, a 4-year-old yellow Labrador) -> Dakota (5831ms)\nWhat is the average weight of a Yellow Labrador?\tHubbell\t-11.472524928028884\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Hubbell, is, a light-colored yellow Labrador) -> Hubbell (5831ms)\nWhat is the average weight of a Yellow Labrador?\tMillie\t-11.501375817217683\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Millie, is, a beautiful yellow labrador) -> Millie (5831ms)\nWhat is the average weight of a Yellow Labrador?\tStellablue\t-11.516773967779216\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Stellablue, was, a yellow Labrador retriever) -> Stellablue (5831ms)\nWhat is the average weight of a Yellow Labrador?\tSalty\t-11.552042109924052\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Salty, is, a mature Yellow Labrador) -> Salty (5831ms)\nWhat is the average weight of a Yellow Labrador?\tDigger\t-11.595492986977412\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Digger, is, a yellow Labrador puppy) -> Digger (5856ms)\nWhat is the average weight of a Yellow Labrador?\tDuster\t-11.635773889360095\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Duster, is, a yellow Labrador Retriever) -> Duster (5856ms)\nWhat is the average weight of a Yellow Labrador?\tHooper\t-11.67949180182978\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Hooper, is, a yellow Labrador Retriever) -> Hooper (5856ms)\nWhat is the average weight of a Yellow Labrador?\tJjurgens\t-11.751664704583453\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Jjurgens, is, a frisky 4-month-old yellow Labrador retriever) -> Jjurgens (5856ms)\nWhat is the average weight of a Yellow Labrador?\tRudy\t-11.783224754622584\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Rudy, was, a happy-go-lucky , energetic Yellow Labrador) -> Rudy (5857ms)\nWhat is the average weight of a Yellow Labrador?\t2012 Hooch\t-11.928461898000364\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (2012 Hooch, is, a 2 year old , yellow labrador seeking adoption) -> 2012 Hooch (5856ms)\nWhat is the average weight of a Yellow Labrador?\tHappy Jack\t-11.990621034591127\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Happy Jack, is, a yellow Labrador Retriever) -> Happy Jack (5882ms)\nWhat is the average weight of a Yellow Labrador?\tthe dogs\t-12.393707633945597\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (the dogs, is, a female yellow Labrador) -> the dogs (5882ms)\nWhat is the average weight of a Yellow Labrador?\tThe puppy\t-12.489044314421129\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (The puppy, is, a 6 week old male yellow labrador) -> The puppy (5882ms)\nWhat is the average weight of a Yellow Labrador?\tthe tracking dog\t-12.502363468231827\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (the tracking dog, is, a yellow Labrador retriever) -> the tracking dog (5882ms)\nWhat is the average weight of a Yellow Labrador?\tthe floor\t-12.878562986316025\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (A yellow Labrador, was lying on, the floor) -> the floor (5882ms)\nWhat is the average weight of a Yellow Labrador?\tMarley\t-12.881939428757894\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Marley, is, a yellow Labrador) -> Marley (5882ms)\nWhat is the average weight of a Yellow Labrador?\tback\t-13.347144930428215\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador-type dog, was barking in, back) -> back (5998ms)\nWhat is the average weight of a Yellow Labrador?\tthe water\t-14.213157156445009\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: (a yellow labrador, weight, $x) -> $x: (a yellow labrador, love to, $x) -> (a yellow labrador, just loves to play in, the water) -> the water (6747ms)\nWhat is the average weight of a Yellow Labrador?\tadventure\t-17.20007746720335\tWhat is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> how many heart do a yellow labrador have ? -> $x: (a yellow labrador, heart, $x) -> $x: (a yellow labrador, loving, $x) -> (a yellow Labrador, loves, adventure) -> adventure (13077ms)\nWhat birthstone is turquoise?\tDecember\t-4.647319943408512\tWhat birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone for, December) -> December (1886ms)\nWhat birthstone is turquoise?\tSagittarius Nov. 22nd\t-4.858085034081475\tWhat birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone for, Sagittarius Nov. 22nd) -> Sagittarius Nov. 22nd (1887ms)\nWhat birthstone is turquoise?\tSagittarius\t-4.953839169482679\tWhat birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone of, Sagittarius) -> Sagittarius (1896ms)\nWhat birthstone is turquoise?\tCapricorns\t-5.183409034160624\tWhat birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Lapis and Turquoise, are the birthstones for, Capricorns) -> Capricorns (2008ms)\nWhat birthstone is turquoise?\tthe month\t-6.3276831049908715\tWhat birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (December Birthstone Turquoise, is the birthstone of, the month) -> the month (2094ms)\nWhat birthstone is turquoise?\tgreen\t-18.16447444782939\tWhat birthstone is turquoise? -> [ what birthstone be turquoise ] ? -> do what birthstone be turquoise go away ? -> do what birthstone be turquoise go ? -> $x: ($x, instance of, birthstone) (turquoise, go, $x) -> (green, Instance Of, swarovski crystal birthstone color) (the turquoises, went into, greens) -> green (5245ms)\nHow many events are part of the LPGA tour?\tLPGA\t-6.922071525236562\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, also know as, lpga tour) -> (LPGA, Instance Of, event) (LPGA, Also known as, LPGA Tour) -> LPGA (7669ms)\nHow many events are part of the LPGA tour?\tearnings\t-7.862104924911893\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) (lpga tour, recording, $x) -> (earnings, Instance Of, event) (the LPGA Tour, set a record for, earnings) -> earnings (2787ms)\nHow many events are part of the LPGA tour?\tcharity event\t-7.884543676030734\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (charity event, Instance Of, event) (charity events, was played a lot on, the LPGA tour) -> charity event (4488ms)\nHow many events are part of the LPGA tour?\tmajor\t-8.448235075358184\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) (lpga tour, include, $x) -> (major, Instance Of, event) (her 25 LPGA Tour victories, include five in, Majors) -> major (7291ms)\nHow many events are part of the LPGA tour?\tmajor championship\t-8.802358805461004\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (major championship, Instance Of, event) (major championships, played full-time on, the LPGA Tour) -> major championship (4488ms)\nHow many events are part of the LPGA tour?\tMrs Singapore\t-8.82802662875108\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) (lpga tour, play, $x) -> (Mrs Singapore, Instance Of, event) (the LPGA Tour, has played in, Singapore) -> Mrs Singapore (3090ms)\nHow many events are part of the LPGA tour?\tWie\t-8.952658071305228\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (Wie, Instance Of, medium event) (Wie, will be playing, her seventh and final LPGA Tour event) -> Wie (4488ms)\nHow many events are part of the LPGA tour?\tWIE\t-8.976694174762882\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (WIE, Instance Of, event) (Wie, has been playing, LPGA Tour events) -> WIE (4488ms)\nHow many events are part of the LPGA tour?\tSouth Koreans\t-9.095732954335679\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (South Koreans, Instance Of, event) (South Koreans, play on, the LPGA Tour) -> South Koreans (4488ms)\nHow many events are part of the LPGA tour?\tHawaii\t-9.19587657176861\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) (lpga tour, play, $x) -> (Hawaii, Instance Of, event) (the last LPGA Tour event, played in, Hawaii) -> Hawaii (3090ms)\nHow many events are part of the LPGA tour?\tWaterloo\t-9.317980565418344\tHow many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (Waterloo, Instance Of, event) (Waterloo, will play host to, the LPGA Tour) -> Waterloo (6879ms)\nWhat was Sammy Sosa's team?\tRight Field\t-2.9894681182655822\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays the athletic team position, Right Field) -> Right Field (2654ms)\nWhat was Sammy Sosa's team?\tCubs\t-3.650761988408028\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays for the team, Cubs) -> Cubs (2654ms)\nWhat was Sammy Sosa's team?\tOutfielder\t-3.7379734003807603\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays the athletic team position, Outfielder) -> Outfielder (2654ms)\nWhat was Sammy Sosa's team?\tPEDs\t-4.901012727818765\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, be link, $x) -> (Sammy Sosa, have been linked to using, PEDs) -> PEDs (4651ms)\nWhat was Sammy Sosa's team?\tpositive tests\t-5.270440459116543\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, be link, $x) -> (Sammy Sosa, were linked to, positive tests) -> positive tests (4651ms)\nWhat was Sammy Sosa's team?\tChicago\t-5.312460267813953\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, well be, $x) -> (Cubbies home run king Sammy Sosa, was well loved in, Chicago) -> Chicago (4606ms)\nWhat was Sammy Sosa's team?\tVegas\t-5.444983939960528\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, be spot, $x) -> (Sammy Sosa, was spotted last week in, Vegas) -> Vegas (4431ms)\nWhat was Sammy Sosa's team?\thome runs\t-5.545688944087041\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, league, $x) -> (Sammy Sosa, now leads the league in, home runs) -> home runs (4696ms)\nWhat was Sammy Sosa's team?\tMlb\t-5.5858221854164185\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, league, $x) -> (sammy sosa, plays in the league, Mlb) -> Mlb (4697ms)\nWhat was Sammy Sosa's team?\tthe Dominican Republic\t-6.177545213766242\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, grow up, $x) -> (Sammy Sosa, grew up in, the Dominican Republic) -> the Dominican Republic (4518ms)\nWhat was Sammy Sosa's team?\t42 home runs\t-6.239493656224374\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, league, $x) -> (Sammy Sosa, now leads the Major Leagues with, 42 home runs) -> 42 home runs (4696ms)\nWhat was Sammy Sosa's team?\tThursday\t-6.808585411637017\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, train, $x) -> (Sammy Sosa, began training, Thursday) -> Thursday (4718ms)\nWhat was Sammy Sosa's team?\tthe lead\t-7.221086610070968\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, be tie, $x) -> (a 0.41 era Sammy Sosa, is tied for, the lead) -> the lead (4538ms)\nWhat was Sammy Sosa's team?\thomers\t-7.652190409012987\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, paired, $x) -> (Sammy Sosa, hits a pair of, homers) -> homers (4608ms)\nWhat was Sammy Sosa's team?\tplayers\t-7.738688186743293\tWhat was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, stick, $x) -> (a bleached Sammy Sosa, is sticking, players) -> players (4518ms)\nWhat was Sammy Sosa's team?\tinside-the-park jobs\t-11.673655151126203\tWhat was Sammy Sosa's team? -> what be [ sammy sosa s ] team ? -> what be the fact of sammy sosa s ? -> $x: (sammy sosa s, fact, $x) -> $x: (sammy sosa s, be, $x) -> (Sammy Sosa?s 598 home runs, were, inside-the-park jobs) -> inside-the-park jobs (7704ms)\nWhat was Sammy Sosa's team?\tthe ?Mendoza line\t-11.697891199305387\tWhat was Sammy Sosa's team? -> what be [ sammy sosa s ] team ? -> what be the fact of sammy sosa s ? -> $x: (sammy sosa s, fact, $x) -> $x: (sammy sosa s, be, $x) -> (Sammy Sosa?s average, is closer to, the ?Mendoza line) -> the ?Mendoza line (7704ms)\nWhat was Sammy Sosa's team?\tthe news and everyone\t-13.79649063519231\tWhat was Sammy Sosa's team? -> what be [ sammy sosa s ] team ? -> what be the fact of sammy sosa s ? -> $x: (sammy sosa s, fact, $x) -> $x: ($x, be, sammy sosa s) -> (the news and everyone, was talking about, Sammy Sosa?s skin) -> the news and everyone (7704ms)\nWhich film won three awards at the festival?\tThe Film\t-3.2260548419903303\tWhich film won three awards at the festival? -> $x: ($x, instance of, film) ($x, won three awards at, the festival) -> (The Film, Instance Of, film) (The film, won three awards at, the film festival) -> The Film (374ms)\nWhich film won three awards at the festival?\tthe film\t-7.9823076092128105\tWhich film won three awards at the festival? -> $x: ($x, instance of, film) ($x, won three awards at, the festival) -> $x: ($x, top the list of, film) ($x, won three awards at, the festival) -> (the film, still tops the list of, most women?s favorite films) (The film, won three awards at, the film festival) -> the film (899ms)\nWhat organization investigated the disaster?\tBAT-MAN\t-4.90778286770008\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (BAT-MAN, Instance Of, organization) (Batman, goes to investigate, the disaster) -> BAT-MAN (2279ms)\nWhat organization investigated the disaster?\tCongress\t-5.011972323068232\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (Congress, Instance Of, organization) (?Congress, continues to investigate, the disaster) -> Congress (2279ms)\nWhat organization investigated the disaster?\tscientist\t-7.257903452655609\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (scientist, Instance Of, organization) (Scientists, are investigating whether, the BP oil disaster) -> scientist (2279ms)\nWhat organization investigated the disaster?\tlocal authority\t-7.766159809358351\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, be alert to, the disaster) -> (local authority, Instance Of, organization) (local authorities, were first alerted to, the disaster) -> local authority (2937ms)\nWhat organization investigated the disaster?\tDow\t-7.869075654191582\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (Dow, Instance Of, organization) (Dow, has any liabilities relating to, the disaster) -> Dow (6543ms)\nWhat organization investigated the disaster?\tSpecialists\t-7.956645888881363\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) (the disaster, investigate by, $x) -> (Specialists, Instance Of, organization) (the disaster, is being thoroughly investigated by, specialists) -> Specialists (5179ms)\nWhat organization investigated the disaster?\tDOW\t-7.995702986831747\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (DOW, Instance Of, organization) (Dow, has any liabilities relating to, the disaster) -> DOW (6542ms)\nWhat organization investigated the disaster?\tScientists\t-8.305251595484723\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, be investigate whether, the disaster) -> (Scientists, Instance Of, organization of scientific man) (Scientists, are investigating whether, the BP oil disaster) -> Scientists (8183ms)\nWhat organization investigated the disaster?\tprosecutor\t-8.365790390666163\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (prosecutor, Instance Of, organization) (prosecutors, investigating, the Concordia disaster) -> prosecutor (2740ms)\nWhat organization investigated the disaster?\tInvestigators\t-9.007330364076713\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, be probe, the disaster) -> (Investigators, Instance Of, professional security organization) (Investigators, are still probing the cause of, the disaster) -> Investigators (7816ms)\nWhat organization investigated the disaster?\temergency service\t-9.138346976716427\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (emergency service, Instance Of, organization) (emergency services, related to, the disaster) -> emergency service (6542ms)\nWhat organization investigated the disaster?\tparticipant\t-9.191962794824398\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> (participant, Instance Of, organization) (Participants, investigate one of, nature?s natural disasters) -> participant (2936ms)\nWhat organization investigated the disaster?\tspecialist\t-9.449083139055926\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) (the disaster, investigate by, $x) -> (specialist, Instance Of, organization) (the disaster, is being thoroughly investigated by, specialists) -> specialist (5179ms)\nWhat organization investigated the disaster?\tchildren's\t-9.62729415155656\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be take seriously, disaster) -> (children's, Instance Of, organization) (children, are taken seriously in, disaster response) -> children's (12467ms)\nWhat organization investigated the disaster?\tMaterials\t-9.664211851210853\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (Materials, Instance Of, organization) (material, related to, the disaster) -> Materials (6542ms)\nWhat organization investigated the disaster?\tWHS\t-9.745990802361321\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, have refer, disaster) -> (WHS, Instance Of, great organization) (WHS, has been referred to as, a disaster) -> WHS (10855ms)\nWhat organization investigated the disaster?\tTalk\t-9.757172855942773\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (Talk, Instance Of, organization) (talks, related to, the disaster) -> Talk (6648ms)\nWhat organization investigated the disaster?\tPFD Donations\t-10.04191971596455\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be to compare, disaster) -> (PFD Donations, Instance Of, organization) (donations, are relatively low compared to, other disasters) -> PFD Donations (9613ms)\nWhat organization investigated the disaster?\tmiddle school\t-10.068950443730952\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (middle school, Instance Of, organization) (middle school, relate to, environmental disasters) -> middle school (13559ms)\nWhat organization investigated the disaster?\tChildren's\t-10.074017817966476\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be take seriously, disaster) -> (Children's, Instance Of, organization) (children, are taken seriously in, disaster response) -> Children's (12466ms)\nWhat organization investigated the disaster?\tChildren\t-10.274926419956985\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be take seriously, disaster) -> (Children, Instance Of, organization) (children, are taken seriously in, disaster response) -> Children (12466ms)\nWhat organization investigated the disaster?\tcoyote skin\t-10.285209982799593\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, will revisit, disaster) -> (coyote skin, Instance Of, organization) (Coyotes, will revisit, disaster) -> coyote skin (9778ms)\nWhat organization investigated the disaster?\tBank\t-10.430937450157193\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be to assess, disaster) -> (Bank, Instance Of, organization) (Banks, are required to assess, various disaster risks) -> Bank (9999ms)\nWhat organization investigated the disaster?\tCoyotes\t-10.481626312120763\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, will revisit, disaster) -> (Coyotes, Instance Of, volunteer organization) (Coyotes, will revisit, disaster) -> Coyotes (9778ms)\nWhat organization investigated the disaster?\tTALK\t-10.55002529142498\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (TALK, Instance Of, organization) (talks, related to, the disaster) -> TALK (6648ms)\nWhat organization investigated the disaster?\tCOST\t-10.63645243528175\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (COST, Instance Of, organization) (costs, related to, the disaster) -> COST (6648ms)\nWhat organization investigated the disaster?\tPAPERS\t-10.706759780593572\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (PAPERS, Instance Of, organization) (papers, related to, the disaster) -> PAPERS (6648ms)\nWhat organization investigated the disaster?\tCLAIM\t-10.71488180912704\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (CLAIM, Instance Of, organization) (claims, relating to, the disaster) -> CLAIM (6648ms)\nWhat organization investigated the disaster?\tCOYOTE\t-10.716984884768102\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, will revisit, disaster) -> (COYOTE, Instance Of, organization) (Coyotes, will revisit, disaster) -> COYOTE (9778ms)\nWhat organization investigated the disaster?\tSurprise\t-10.812752364959604\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (Surprise, Instance Of, organization) (surprise, was also related to, disaster) -> Surprise (13559ms)\nWhat organization investigated the disaster?\tinvestigator\t-10.927908308059948\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, be probe, the disaster) -> (investigator, Instance Of, individual and organization) (Investigators, are still probing the cause of, the disaster) -> investigator (7816ms)\nWhat organization investigated the disaster?\tcost\t-11.328227236673143\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (cost, Instance Of, organization) (costs, related to, the disaster) -> cost (6865ms)\nWhat organization investigated the disaster?\tCitizens\t-11.578976376766143\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, in understanding, disaster) -> (Citizens, Instance Of, organization) (citizens, understand in preparing for, disaster) -> Citizens (11757ms)\nWhat organization investigated the disaster?\tclaim\t-11.617748227494129\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (claim, Instance Of, organization) (claims, relating to, the disaster) -> claim (6865ms)\nWhat organization investigated the disaster?\tProblems\t-11.748561767344446\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (Problems, Instance Of, organization) (the problems, related to, the disaster) -> Problems (13559ms)\nWhat organization investigated the disaster?\tCitizen\t-12.089835502418765\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, in understanding, disaster) -> (Citizen, Instance Of, national, nonprofit consumer advocacy organization) (citizens, understand in preparing for, disaster) -> Citizen (11758ms)\nWhat organization investigated the disaster?\tbank\t-12.23794569080217\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be to assess, disaster) -> (bank, Instance Of, organization) (Banks, are required to assess, various disaster risks) -> bank (9999ms)\nWhat organization investigated the disaster?\tdonations\t-12.248553729856742\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be to compare, disaster) -> (donations, Instance Of, organization) (donations, are relatively low compared to, other disasters) -> donations (9613ms)\nWhat organization investigated the disaster?\tteams\t-12.428227811428872\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, and / or, organization) ($x, investigate, disaster) -> (teams, and/or, organizations) (the team, investigating, disaster) -> teams (10314ms)\nWhat organization investigated the disaster?\tvictim\t-12.450316197620888\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) (disaster, be remit to, $x) -> (victim, Instance Of, organization) (Disaster relief funds, are remitted to, victims) -> victim (11355ms)\nWhat organization investigated the disaster?\tAREA\t-12.75943299597878\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (AREA, Instance Of, organization) (areas, related to, disaster management) -> AREA (16516ms)\nWhat organization investigated the disaster?\tissue\t-13.25274106366205\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (issue, Instance Of, organization) (the issues, related to, the disaster) -> issue (16517ms)\nWhat organization investigated the disaster?\tevent\t-13.459200632994825\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (event, Instance Of, organization) (events, related to, natural disasters) -> event (16538ms)\nWhat organization investigated the disaster?\tcitizen\t-13.546656447304667\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, in understanding, disaster) -> (citizen, Instance Of, role outside the organization) (citizens, understand in preparing for, disaster) -> citizen (11758ms)\nWhat organization investigated the disaster?\texpense\t-13.98356487910971\tWhat organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (expense, Instance Of, organization function) (expenses, related to, disaster response) -> expense (16580ms)\nWhat organization investigated the disaster?\tInvestigators Forum\t-16.890223311589924\tWhat organization investigated the disaster? -> what [ organization investigate the disaster ] ? -> what its organization investigate the disaster ? -> $x: ($x, instance of, its organization) ($x, investigate, the disaster) -> $x: ($x, instance of, its organization) ($x, be probe, the disaster) -> (Investigators Forum, Instance Of, one-of-its-kind full service Healthcare Research Organization) (Investigators, are still probing the cause of, the disaster) -> Investigators Forum (19482ms)\nWhat is the birthstone of October?\tTourmaline\t1.7331874295615455\tWhat is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Tourmaline, is the birthstone of, October) -> Tourmaline (1275ms)\nWhat is the birthstone of October?\tOpal\t1.529273898587693\tWhat is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Opal, is also the birthstone of, October) -> Opal (1275ms)\nWhat is the birthstone of October?\tCoral\t1.2883807580584818\tWhat is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Coral, is the birthstone of, October and November) -> Coral (1275ms)\nWhat is the birthstone of October?\tthe 8th year\t1.099940177611417\tWhat is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (the 8th year, is the traditional birthstone of, October) -> the 8th year (1275ms)\nWhat is the birthstone of October?\tthe 14th and 18th years\t0.944003254939821\tWhat is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (the 14th and 18th years, is the birthstone of, October) -> the 14th and 18th years (1275ms)\nWhat is the birthstone of October?\tThe opal\t0.8072976893795745\tWhat is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (The opal, is the birthstone of, October) -> The opal (1306ms)\nWhen is the summer solstice?\t21 June\t1.6184507269723438\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is on, 21 June) -> 21 June (1383ms)\nWhen is the summer solstice?\tJune 21\t0.9682293069479933\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, was on, June 21) -> June 21 (1383ms)\nWhen is the summer solstice?\tJune 25\t0.9154401328045738\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the summer solstice, was celebrated on, June 25) -> June 25 (1383ms)\nWhen is the summer solstice?\tJune 21st\t0.4305562099882727\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, was on, June 21st) -> June 21st (2942ms)\nWhen is the summer solstice?\tJune 20th\t0.4196181841047766\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is on, June 20th) -> June 20th (2942ms)\nWhen is the summer solstice?\tMay 2017\t0.4074805201201803\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is passed in, May 2017) -> May 2017 (2942ms)\nWhen is the summer solstice?\tDecember 22\t0.324598866157114\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Southern Summer Solstice, is on, December 22) -> December 22 (2942ms)\nWhen is the summer solstice?\tJuly 31st\t0.2598762525591325\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is celebrated on, July 31st) -> July 31st (2999ms)\nWhen is the summer solstice?\tJune\t0.1941846346447016\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The Summer solstice, is in, June) -> June (2999ms)\nWhen is the summer solstice?\tDecember\t-0.5052220994464331\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, December) -> December (2999ms)\nWhen is the summer solstice?\t2016\t-0.828170997137732\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Northern summer solstice, is in, 2016) -> 2016 (3092ms)\nWhen is the summer solstice?\t21st June\t-0.8485091319260403\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is on, 21st June) -> 21st June (3091ms)\nWhen is the summer solstice?\t1974\t-0.877646567328247\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The annual Summer Solstice Parade, began in, 1974) -> 1974 (3091ms)\nWhen is the summer solstice?\t2000\t-0.9137396273981655\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The southern summer solstice, began in, 2000) -> 2000 (3131ms)\nWhen is the summer solstice?\tTuesday\t-1.103017362517389\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, be celebrated on, Tuesday) -> Tuesday (3130ms)\nWhen is the summer solstice?\t1o Virgo\t-1.2958773334962617\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was in, 1o Virgo) -> 1o Virgo (3156ms)\nWhen is the summer solstice?\tDecember in Peru\t-1.4104500282169052\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, December in Peru) -> December in Peru (3156ms)\nWhen is the summer solstice?\ttheory\t-1.5082903188873176\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is in, theory) -> theory (3180ms)\nWhen is the summer solstice?\tthe 21st\t-1.5122387595702307\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is always on, the 21st) -> the 21st (3180ms)\nWhen is the summer solstice?\tJune 20\t-1.5944447680235583\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, occurred on, June 20) -> June 20 (3180ms)\nWhen is the summer solstice?\t525.5 Seasons and zones\t-1.6979952639229254\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is classed in, 525.5 Seasons and zones) -> 525.5 Seasons and zones (3206ms)\nWhen is the summer solstice?\tthe 21st June\t-1.7517955989354497\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice, is on, the 21st June) -> the 21st June (3206ms)\nWhen is the summer solstice?\ttime\t-1.8055155375088872\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is an instant in, time) -> time (3230ms)\nWhen is the summer solstice?\tJune 21 , 1:45 am\t-2.0372640168803624\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the Summer Solstice, begins on, June 21 , 1:45 am) -> June 21 , 1:45 am (3321ms)\nWhen is the summer solstice?\tJune 21 marks\t-2.149297633190841\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, falls this year on, June 21 marks) -> June 21 marks (3321ms)\nWhen is the summer solstice?\tJune 21 or 22\t-2.271223986537776\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the Summer Solstice, occurs on, June 21 or 22) -> June 21 or 22 (3347ms)\nWhen is the summer solstice?\tLeo\t-2.2836392146535447\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was in, Leo) -> Leo (3346ms)\nWhen is the summer solstice?\tJune 21 , 2009\t-2.332233638747864\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, begins on, June 21 , 2009) -> June 21 , 2009 (3368ms)\nWhen is the summer solstice?\tthe 4th July\t-2.3413734706057583\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, the 4th July) -> the 4th July (3368ms)\nWhen is the summer solstice?\tDecember 21st\t-2.3910476508926966\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, would occur on, December 21st) -> December 21st (3386ms)\nWhen is the summer solstice?\tJune 21/June 22\t-2.4109272297890634\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, usually occurs on, June 21/June 22) -> June 21/June 22 (3386ms)\nWhen is the summer solstice?\tmeaning\t-2.465629538716618\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The summer solstice, is very similar in, meaning) -> meaning (3387ms)\nWhen is the summer solstice?\tJune 20th or 21st\t-2.492273432735847\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, occurs on, June 20th or 21st) -> June 20th or 21st (3387ms)\nWhen is the summer solstice?\tplaces\t-2.5442287931094483\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is celebrated in, places) -> places (3410ms)\nWhen is the summer solstice?\tbalance\t-2.5452073688612087\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer and winter solstices, are in, balance) -> balance (3410ms)\nWhen is the summer solstice?\tThe Winter\t-2.711436520359163\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Winter and Summer Solstices, are unfolded in, The Winter) -> The Winter (3431ms)\nWhen is the summer solstice?\tJun 21 2011\t-2.7534152420943716\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, begins on, Jun 21 2011) -> Jun 21 2011 (3431ms)\nWhen is the summer solstice?\tmodern society\t-2.7854303226198884\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is still celebrated in, modern society) -> modern society (3451ms)\nWhen is the summer solstice?\ta long valley\t-2.79227138786633\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The Summer Solstice celebration, was held in, a long valley) -> a long valley (3451ms)\nWhen is the summer solstice?\tMarch 30\t-2.8179492690516192\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Mars ? Summer Solstice, occurs on, March 30) -> March 30 (3451ms)\nWhen is the summer solstice?\tJune 21 , 2010\t-2.819580339093418\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer or Summer solstice, begins on, June 21 , 2010) -> June 21 , 2010 (3451ms)\nWhen is the summer solstice?\tJune 21st and winter solstice\t-2.8496288805249215\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer solstice, occurs on, June 21st and winter solstice) -> June 21st and winter solstice (3451ms)\nWhen is the summer solstice?\tJune 20th/21st\t-2.854869536208835\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice, happens each year on, June 20th/21st) -> June 20th/21st (3469ms)\nWhen is the summer solstice?\ta separate post\t-2.898439694384844\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The Summer Solstice, will be covered in, a separate post) -> a separate post (3469ms)\nWhen is the summer solstice?\tDamanhur\t-3.1144819048581005\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the first summer solstice, was celebrated in, Damanhur) -> Damanhur (3469ms)\nWhen is the summer solstice?\tFrance\t-3.2234768138473386\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is a big deal in, France) -> France (3488ms)\nWhen is the summer solstice?\tAuthorities Concept Scheme\t-3.28270077853546\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer solstice, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (3488ms)\nWhen is the summer solstice?\tTopical Terms Concept Scheme\t-3.3216850092033585\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer solstice, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (3510ms)\nWhen is the summer solstice?\tlate June\t-3.3937001075839666\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the Summer Solstice, occurred in, late June) -> late June (3509ms)\nWhen is the summer solstice?\tGemini\t-3.411781513534758\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, Gemini) -> Gemini (3510ms)\nWhen is the summer solstice?\ta Saturday\t-3.490897255730118\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, a Saturday) -> a Saturday (3535ms)\nWhen is the summer solstice?\tTaurus\t-3.4910368965606917\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is located in, Taurus) -> Taurus (3535ms)\nWhen is the summer solstice?\tthe 20th\t-3.5938526494609926\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, is actually on, the 20th) -> the 20th (3580ms)\nWhen is the summer solstice?\tthe 21st of June\t-3.713438653483691\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The Summer Solstice, falls on, the 21st of June) -> the 21st of June (3803ms)\nWhen is the summer solstice?\tJune 20 or 21\t-3.762000349616894\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, falls on, June 20 or 21) -> June 20 or 21 (3803ms)\nWhen is the summer solstice?\tSunday\t-3.764228678315804\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, arrives on, Sunday) -> Sunday (3804ms)\nWhen is the summer solstice?\ta Wednesday\t-3.7694747757352265\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice, fell on, a Wednesday) -> a Wednesday (3804ms)\nWhen is the summer solstice?\t1983\t-3.8049629804244898\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (The summer solstice: poems, Publication date, 1983) -> 1983 (6117ms)\nWhen is the summer solstice?\tthe time\t-3.8410498724422393\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was located in, the time) -> the time (3824ms)\nWhen is the summer solstice?\tMonday\t-3.848848554047886\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The Summer Solstice, has arrived on, Monday) -> Monday (3824ms)\nWhen is the summer solstice?\t1996\t-3.882931441760288\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (The Disappearance of Summer Solstice, Publication date, 1996) -> 1996 (6116ms)\nWhen is the summer solstice?\tthe middle\t-3.929808359383856\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, the middle) -> the middle (3824ms)\nWhen is the summer solstice?\t2002\t-4.002882920738439\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Midsummer: Magical Celebrations of the Summer Solstice, Publication date, 2002) -> 2002 (6116ms)\nWhen is the summer solstice?\t1969\t-4.002882920738439\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Notes on the summer solstice, June 21, 1969, Publication date, 1969) -> 1969 (6116ms)\nWhen is the summer solstice?\tthe reversal\t-4.006935215215122\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is in, the reversal) -> the reversal (3903ms)\nWhen is the summer solstice?\t1988\t-4.050006716051284\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Maestro Ali Akbar Khan: The Summer Solstice, Initial release date, 1988) -> 1988 (6116ms)\nWhen is the summer solstice?\t1943\t-4.126582883434657\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (The night of the summer solstice: & other stories of the Russian war, Publication date, 1943) -> 1943 (6116ms)\nWhen is the summer solstice?\tsummer\t-4.151047399272452\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, is the longest day in, summer) -> summer (3925ms)\nWhen is the summer solstice?\t2001\t-4.186142124732836\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Summer Solstice,The, Publication date, 2001) -> 2001 (6116ms)\nWhen is the summer solstice?\tSaturday\t-4.253474058685651\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice events, abound on, Saturday) -> Saturday (3942ms)\nWhen is the summer solstice?\tthe hundreds\t-4.301633447518312\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice Parade, was in, the hundreds) -> the hundreds (3942ms)\nWhen is the summer solstice?\tFriday\t-4.354853908953768\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, falls on, Friday) -> Friday (3943ms)\nWhen is the summer solstice?\tthe day\t-4.484210848605629\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, am most active early in, the day) -> the day (3971ms)\nWhen is the summer solstice?\t112 years?or\t-4.492909272413171\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (summer solstice, has occurred in, 112 years?or) -> 112 years?or (3972ms)\nWhen is the summer solstice?\tthe mid-point\t-4.516558051631373\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is celebrated on, the mid-point) -> the mid-point (3972ms)\nWhen is the summer solstice?\tmid-summer\t-4.5984073776328875\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The summer solstice, occurs in, mid-summer) -> mid-summer (3989ms)\nWhen is the summer solstice?\tfull force\t-4.813953042625662\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The summer solstice, came in, full force) -> full force (4054ms)\nWhen is the summer solstice?\tMid\t-5.166789399598218\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, Mid) -> Mid (4237ms)\nWhen is the summer solstice?\tMid-year\t-5.284525951742066\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, Mid-year) -> Mid-year (4257ms)\nWhen is the summer solstice?\tthe UK today\t-5.2859705507734525\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, began in, the UK today) -> the UK today (4257ms)\nWhen is the summer solstice?\tthe Northern Hemisphere\t-5.300117744000178\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, occurs in, the Northern Hemisphere) -> the Northern Hemisphere (4279ms)\nWhen is the summer solstice?\tCancer\t-5.306482043352654\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, falls in, Cancer) -> Cancer (4279ms)\nWhen is the summer solstice?\ta full moon\t-5.375004227541533\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, happened to fall on, a full moon) -> a full moon (4279ms)\nWhen is the summer solstice?\tseasons\t-5.378479731497796\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The Summer Solstice, heralds the change in, seasons) -> seasons (4279ms)\nWhen is the summer solstice?\tmid-July\t-5.431263238205988\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, then will flower in, mid-July) -> mid-July (4297ms)\nWhen is the summer solstice?\tthe Kimmel Center\t-5.454252400848269\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, took place in, the Kimmel Center) -> the Kimmel Center (4297ms)\nWhen is the summer solstice?\ta few days\t-5.458309417491254\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The Summer Solstice, will take place in, a few days) -> a few days (4298ms)\nWhen is the summer solstice?\tone scandal\t-5.459100652819109\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the Summer Solstice Sun, will shine on, one scandal) -> one scandal (4297ms)\nWhen is the summer solstice?\tBeltaine\t-5.518257767643734\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Midsummer / Summer Solstice, was begun in, Beltaine) -> Beltaine (4316ms)\nWhen is the summer solstice?\tservice\t-5.519383637828597\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (our Summer and Winter Solstice Gatherings, is done in, service) -> service (4316ms)\nWhen is the summer solstice?\tan ATV\t-5.524923640747753\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, then jumped on, an ATV) -> an ATV (4316ms)\nWhen is the summer solstice?\tLatvia\t-5.5520904676010705\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, would do in, Latvia) -> Latvia (4316ms)\nWhen is the summer solstice?\t2001-04-01\t-5.563376710650385\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Summer Solstice,The, Publication date, 2001-04-01) -> 2001-04-01 (6116ms)\nWhen is the summer solstice?\tArgentina\t-5.706984147175875\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the Summer Solstice solar eclipse, began in, Argentina) -> Argentina (4333ms)\nWhen is the summer solstice?\tTexas\t-5.777719955202615\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, was too dang hot in, Texas) -> Texas (4333ms)\nWhen is the summer solstice?\tSquamish\t-5.823698227784883\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Sky Summer Solstice Festival, was held in, Squamish) -> Squamish (4333ms)\nWhen is the summer solstice?\ttwo weeks\t-5.857278159653893\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer solstice, arrived in, two weeks) -> two weeks (4449ms)\nWhen is the summer solstice?\t1991\t-5.888668074082154\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 1991) -> 1991 (7133ms)\nWhen is the summer solstice?\t1971\t-5.888668074082154\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 1971) -> 1971 (7133ms)\nWhen is the summer solstice?\t1980\t-5.888668074082154\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer solstice, Publication date, 1980) -> 1980 (7133ms)\nWhen is the summer solstice?\t1972\t-5.888668074082154\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer solstice, Publication date, 1972) -> 1972 (7133ms)\nWhen is the summer solstice?\t2003\t-5.936315467120697\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Initial release date, 2003) -> 2003 (7364ms)\nWhen is the summer solstice?\t1976\t-5.975299697788596\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer solstice: a novel, Publication date, 1976) -> 1976 (7364ms)\nWhen is the summer solstice?\tAustin\t-6.052536999375797\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, officially arrives in, Austin) -> Austin (4467ms)\nWhen is the summer solstice?\t2005\t-6.09712541862578\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice: A Novel of Adobe Springs, New Mexico, Publication date, 2005) -> 2005 (7364ms)\nWhen is the summer solstice?\tSouthern California\t-6.2604897466108245\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, means so much more here in, Southern California) -> Southern California (4467ms)\nWhen is the summer solstice?\tthe longest day\t-6.260676581209465\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the Summer Solstice, results in, the longest day) -> the longest day (4467ms)\nWhen is the summer solstice?\tthe birth\t-6.331020190145496\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, brings happiness in, the birth) -> the birth (4601ms)\nWhen is the summer solstice?\tthe observer\t-6.371499649922308\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, depends on, the observer) -> the observer (4601ms)\nWhen is the summer solstice?\tthe sign\t-6.525935927187609\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, took place in, the sign) -> the sign (4601ms)\nWhen is the summer solstice?\tthe running\t-6.540073594212938\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (summer solstice Labor Day, are in, the running) -> the running (4617ms)\nWhen is the summer solstice?\tthe belief\t-6.554220734737367\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer solstice traditions, were rooted in, the belief) -> the belief (4617ms)\nWhen is the summer solstice?\tthe sky\t-6.68242944936981\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (summer solstice, is very low in, the sky) -> the sky (4636ms)\nWhen is the summer solstice?\tthe earth\t-6.712660738820249\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice Z, represents the point on, the earth) -> the earth (4636ms)\nWhen is the summer solstice?\tthe desert\t-6.808224110789062\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> ('s summer solstice celebration, was held in, the desert) -> the desert (4636ms)\nWhen is the summer solstice?\tthe home page\t-6.862805794094489\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, is featured on, the home page) -> the home page (4636ms)\nWhen is the summer solstice?\tthe beginnings\t-6.961960576915631\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, ushered in, the beginnings) -> the beginnings (4659ms)\nWhen is the summer solstice?\tthe sixth month\t-6.971552743465411\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, occurs in, the sixth month) -> the sixth month (4659ms)\nWhen is the summer solstice?\tthe date\t-7.049560705499642\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, occurs on, the date) -> the date (4726ms)\nWhen is the summer solstice?\tthe night\t-7.1088019322052425\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, start on, the night) -> the night (4726ms)\nWhen is the summer solstice?\tthe following days\t-7.264222184091319\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, occurs on, the following days) -> the following days (4726ms)\nWhen is the summer solstice?\t1997-05-20\t-7.2659026599997025\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 1997-05-20) -> 1997-05-20 (7552ms)\nWhen is the summer solstice?\t2001-02-19\t-7.2659026599997025\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 2001-02-19) -> 2001-02-19 (7552ms)\nWhen is the summer solstice?\t2009-12-08\t-7.2659026599997025\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 2009-12-08) -> 2009-12-08 (7552ms)\nWhen is the summer solstice?\tthe balance\t-7.282949418721518\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice ?Buddhabrot ?, reflects on, the balance) -> the balance (4726ms)\nWhen is the summer solstice?\t2006-02-01\t-7.313550053038245\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Original air date, 2006-02-01) -> 2006-02-01 (7552ms)\nWhen is the summer solstice?\t1999-06-01\t-7.352534283706144\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Sun Dance: Summer Solstice, Release Date, 1999-06-01) -> 1999-06-01 (7591ms)\nWhen is the summer solstice?\t2011\t-7.354645331696682\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> $x: ($x, day of, summer solstice) -> (2011, was the first day of, Summer Solstice) -> 2011 (7591ms)\nWhen is the summer solstice?\tthe ice\t-7.36753296733515\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice melt ponds, start to form on, the ice) -> the ice (4943ms)\nWhen is the summer solstice?\t2011-06-21\t-7.38502114259606\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Tunguska Summer Solstice, Volume 1, Release Date, 2011-06-21) -> 2011-06-21 (7591ms)\nWhen is the summer solstice?\t2004-06-19\t-7.41251002319522\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2004 :: Derby, Original air date, 2004-06-19) -> 2004-06-19 (7591ms)\nWhen is the summer solstice?\t2005-06-19\t-7.41251002319522\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2005 :: Wakefield, Original air date, 2005-06-19) -> 2005-06-19 (7591ms)\nWhen is the summer solstice?\t2008-11-01\t-7.41251002319522\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice Entheos Conference & Festival, Release Date, 2008-11-01) -> 2008-11-01 (7590ms)\nWhen is the summer solstice?\t2005-06-21\t-7.436071920851642\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2003 :: Woodchester Mansion, Original air date, 2005-06-21) -> 2005-06-21 (7630ms)\nWhen is the summer solstice?\t2006-06-24\t-7.436071920851642\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2006 : LLanelli Wales, Original air date, 2006-06-24) -> 2006-06-24 (7630ms)\nWhen is the summer solstice?\t1998-06-16\t-7.436071920851642\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2: A Windham Hill Collection, Release Date, 1998-06-16) -> 1998-06-16 (7630ms)\nWhen is the summer solstice?\t2004-06-20\t-7.456492232153876\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 2, Original air date, 2004-06-20) -> 2004-06-20 (7630ms)\nWhen is the summer solstice?\t2004-06-21\t-7.456492232153876\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 3, Original air date, 2004-06-21) -> 2004-06-21 (7676ms)\nWhen is the summer solstice?\t2005-06-20\t-7.456492232153876\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 2, Original air date, 2005-06-20) -> 2005-06-20 (7630ms)\nWhen is the summer solstice?\t2006-06-26\t-7.456492232153876\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 3, Original air date, 2006-06-26) -> 2006-06-26 (7630ms)\nWhen is the summer solstice?\t2006-06-25\t-7.456492232153876\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 2, Original air date, 2006-06-25) -> 2006-06-25 (7676ms)\nWhen is the summer solstice?\tfather\t-7.570361959578433\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> $x: (summer solstice, to fall to, $x) -> (the Summer solstice, also happened to fall on, father) -> father (4943ms)\nWhen is the summer solstice?\tany full moon\t-7.607519461253842\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> $x: (summer solstice, may be on, $x) -> (This Summer Solstice ritual, may be done on, any full moon) -> any full moon (5254ms)\nWhen is the summer solstice?\ta variety\t-7.727611441753165\tWhen is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> $x: (summer solstice, work from, $x) -> (the Summer Solstice Art Show, will feature works from, a variety) -> a variety (5075ms)\nWhen is the summer solstice?\tthe northern hemisphere\t-7.913921945154181\tWhen is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The Summer Solstice, occurs in, the northern hemisphere) -> the northern hemisphere (4963ms)\nWhen is the summer solstice?\tnoon\t-8.943175668748866\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> (noon, is the day of, the summer solstice) -> noon (8033ms)\nWhen is the summer solstice?\tdaylight\t-8.957994125973293\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (the summer solstice, is the longest day of, daylight) -> daylight (8033ms)\nWhen is the summer solstice?\tsunlight\t-9.071296677354592\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The Summer Solstice, is the longest day of, sunlight) -> sunlight (8100ms)\nWhen is the summer solstice?\t1998-06\t-9.280297873636826\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice: Bee Stings, Release Date, 1998-06) -> 1998-06 (8173ms)\nWhen is the summer solstice?\tthe Season\t-9.461208959828886\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The Summer Solstice, is the first day of, the Season) -> the Season (8295ms)\nWhen is the summer solstice?\tBulgaria ns\t-9.4892149573391\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The summer solstice, comes three days before, Bulgaria ns) -> Bulgaria ns (8376ms)\nWhen is the summer solstice?\theathen rejoicing\t-9.65522110963838\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (the summer solstice, had been a day of, heathen rejoicing) -> heathen rejoicing (8376ms)\nWhen is the summer solstice?\tAsh Today\t-9.679140455377748\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> (Ash Today, was the day of, the summer solstice) -> Ash Today (8376ms)\nWhen is the summer solstice?\tBulgarians\t-10.237707694124328\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The summer solstice, comes three days before, Bulgarians) -> Bulgarians (8376ms)\nWhen is the summer solstice?\tthe year\t-11.27327887133778\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (the summer solstice, is the day of, the year) -> the year (8881ms)\nWhen is the summer solstice?\tthe Owl and children\t-11.350082455589583\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (summer solstice, day, $x) -> (Summer solstice, was the Day of, the Owl and children) -> the Owl and children (8881ms)\nWhen is the summer solstice?\tthe Verdehr Trio\t-11.539340991613166\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (the summer solstice, be be write, $x) -> (the Summer Solstice, was written for, the Verdehr Trio) -> the Verdehr Trio (8881ms)\nWhen is the summer solstice?\tThe shortest night\t-11.542943117773834\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> (The shortest night, is the day of, the summer solstice) -> The shortest night (8881ms)\nWhen is the summer solstice?\tsuch a holiday\t-11.629410198949683\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer solstice, is the perfect date for, such a holiday) -> such a holiday (8881ms)\nWhen is the summer solstice?\tthe sun\t-11.657970822457251\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (the summer solstice, was a day dedicated to, the sun) -> the sun (8934ms)\nWhen is the summer solstice?\tsix month\t-11.746903204870412\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what month do the summer solstice occur ? -> $x: ($x, instance of, month) (the summer solstice, occur, $x) -> (six month, Instance Of, six-month period) (the summer solstice, occurs exactly, six months) -> six month (8934ms)\nWhen is the summer solstice?\tcelebration\t-11.763115509800818\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (summer solstice, day, $x) -> (Summer Solstice, is an ancient day of, celebration) -> celebration (8982ms)\nWhen is the summer solstice?\trenewal\t-11.867706005015586\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (summer solstice, day, $x) -> (Summer Solstice, is traditionally a day of, renewal) -> renewal (8982ms)\nWhen is the summer solstice?\tthe season\t-11.926278002603897\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The summer solstice, marks the first day of, the season) -> the season (8982ms)\nWhen is the summer solstice?\tThe B family\t-12.284623146604511\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> $x: ($x, day of, summer solstice) -> (The B family, spent the day of, the summer solstice) -> The B family (9233ms)\nWhen is the summer solstice?\tWendy Pfeffer\t-12.320467769032327\tWhen is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (the summer solstice, be be write, $x) -> (the Summer Solstice, is written by, Wendy Pfeffer) -> Wendy Pfeffer (9233ms)\nWho is Paul Newman married to?\tBritish author Roald Dahl\t-1.6944690349482352\tWho is Paul Newman married to? -> $x: (Paul Newman, married to, $x) -> (Paul Newman, was married to, British author Roald Dahl) -> British author Roald Dahl (2327ms)\nWho is Paul Newman married to?\tacclaimed actress Joanne Woodward\t-1.8360052191289717\tWho is Paul Newman married to? -> $x: (Paul Newman, married to, $x) -> (Paul Newman, is married to, acclaimed actress Joanne Woodward) -> acclaimed actress Joanne Woodward (2327ms)\nWho is Paul Newman married to?\tJoanne Woodward\t-4.620681447423999\tWho is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> (Paul Newman, married, Joanne Woodward) -> Joanne Woodward (7300ms)\nWho is Paul Newman married to?\tWoodward\t-4.850240531736532\tWho is Paul Newman married to? -> $x: (Paul Newman, married to, $x) -> $x: ($x, marry to, Paul Newman) -> (Woodward, is married to, Paul Newman) -> Woodward (6701ms)\nWho is Paul Newman married to?\t50 years\t-6.343133241802484\tWho is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> (Paul Newman, was married for, 50 years) -> 50 years (7298ms)\nWho is Paul Newman married to?\tthe effect\t-6.7983700055555945\tWho is Paul Newman married to? -> $x: (Paul Newman, married to, $x) -> $x: (Paul Newman, to say to, $x) -> (Paul Newman, says something to, the effect) -> the effect (6781ms)\nWho is Paul Newman married to?\tty murray\t-7.186135317499513\tWho is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who marry paul newman ? -> $x: ($x, marry, paul newman) -> (ty murray, marry, katie holmes pixie paul newman) -> ty murray (7299ms)\nWho is Paul Newman married to?\tJanuary 29 , 1958\t-8.208999464962039\tWho is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> (Paul Newman, married on, January 29 , 1958) -> January 29 , 1958 (7321ms)\nWho is Paul Newman married to?\tjoanne-woodward\t-9.586234061162951\tWho is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> $x: (paul newman, have wife, $x) -> (paul newman, has wife, joanne-woodward) -> joanne-woodward (7431ms)\nWho is Paul Newman married to?\t50 year\t-10.11726244826487\tWho is Paul Newman married to? -> who be [ paul newman ] marry to ? -> how many time do paul newman marry ? -> $x: ($x, instance of, time) (paul newman, marry, $x) -> (50 year, Instance Of, time) (Paul Newman, was married for, 50 years) -> 50 year (8979ms)\nWho is Paul Newman married to?\tone time\t-10.342955307239336\tWho is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> $x: (paul newman, have problem, $x) -> (Paul Newman, had the same problem at, one time) -> one time (7519ms)\nWho is Paul Newman married to?\tBTW-50 years\t-11.293168029679446\tWho is Paul Newman married to? -> who be [ paul newman ] marry to ? -> how many time have paul newman be marry ? -> $x: ($x, instance of, time) (paul newman, be marry, $x) -> (BTW-50 years, Instance Of, short time) (Paul Newman, was married for, 50 years) -> BTW-50 years (9263ms)\nWho is Paul Newman married to?\t1569\t-14.736627429411211\tWho is Paul Newman married to? -> who be paul [ newman marry to ] ? -> who be mary newman marry to ? -> $x: (mary newman, marry to, $x) -> $x: (mary newman, have marry, $x) -> (a Cornish woman named Mary Newman ,, had married in, 1569) -> 1569 (14660ms)\nWhere did the Hindenburg disaster occur?\tMay\t-4.9165768336175475\tWhere did the Hindenburg disaster occur? -> $x: (the Hindenburg disaster, did occur in, $x) -> $x: (hindenburg disaster, occur in, $x) -> (The Hindenburg Disaster, occurred in, May) -> May (5674ms)\nWhere did the Hindenburg disaster occur?\tMays\t-8.956404352081279\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster occur ] ? -> which place be the hindenburg disaster occur ? -> $x: ($x, instance of, place) (the hindenburg disaster, occur, $x) -> (Mays, Instance Of, great place) (The Hindenburg Disaster, occurred in, May) -> Mays (6954ms)\nWhere did the Hindenburg disaster occur?\ttwo months\t-10.021420878544962\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what do the hindenburg disaster occur ? -> $x: (the hindenburg disaster, occur, $x) -> $x: (the hindenburg disaster, happen, $x) -> (the Hindenburg disaster, happened, two months) -> two months (12677ms)\nWhere did the Hindenburg disaster occur?\tThursday\t-10.443547914493033\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what do the hindenburg disaster occur ? -> $x: (the hindenburg disaster, occur, $x) -> $x: (the hindenburg disaster, take place, $x) -> (The Hindenburg disaster, took place on, Thursday) -> Thursday (12599ms)\nWhere did the Hindenburg disaster occur?\tmay\t-11.155500098672524\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what time do the hindenburg disaster occur ? -> $x: ($x, instance of, time) (the hindenburg disaster, occur, $x) -> (may, Instance Of, time information) (The Hindenburg Disaster, occurred in, May) -> may (8492ms)\nWhere did the Hindenburg disaster occur?\ttwo month\t-11.746625014358102\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what time do the hindenburg disaster occur ? -> $x: ($x, instance of, time) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, time) (the hindenburg disaster, happen, $x) -> (two month, Instance Of, time) (the Hindenburg disaster, happened, two months) -> two month (17877ms)\nWhere did the Hindenburg disaster occur?\tThursday's\t-12.147987882086873\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster occur ] ? -> which place be the hindenburg disaster occur ? -> $x: ($x, instance of, place) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, place) (the hindenburg disaster, take place, $x) -> (Thursday's, Instance Of, great place) (The Hindenburg disaster, took place on, Thursday) -> Thursday's (12327ms)\nWhere did the Hindenburg disaster occur?\tTwo months\t-12.277868378837944\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what time do the hindenburg disaster occur ? -> $x: ($x, instance of, time) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, time) (the hindenburg disaster, happen, $x) -> (Two months, Instance Of, time) (the Hindenburg disaster, happened, two months) -> Two months (17877ms)\nWhere did the Hindenburg disaster occur?\tMay 6 , 1937\t-13.381173183638516\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what do the hindenburg disaster occur ? -> $x: (the hindenburg disaster, occur, $x) -> $x: (the hindenburg disaster, take place, $x) -> (the Hindenburg airship disaster, take place on, May 6 , 1937) -> May 6 , 1937 (12599ms)\nWhere did the Hindenburg disaster occur?\tThursday DL\t-13.663966138322847\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what year do the hindenburg disaster occur ? -> $x: ($x, instance of, year) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, year) (the hindenburg disaster, take place, $x) -> (Thursday DL, Instance Of, 50-year-old gentleman) (The Hindenburg disaster, took place on, Thursday) -> Thursday DL (16699ms)\nWhere did the Hindenburg disaster occur?\tThursday TL\t-13.67930187658525\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what year do the hindenburg disaster occur ? -> $x: ($x, instance of, year) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, year) (the hindenburg disaster, take place, $x) -> (Thursday TL, Instance Of, 35-year-old woman) (The Hindenburg disaster, took place on, Thursday) -> Thursday TL (16698ms)\nWhere did the Hindenburg disaster occur?\tThursday LL\t-13.68306112374376\tWhere did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what year do the hindenburg disaster occur ? -> $x: ($x, instance of, year) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, year) (the hindenburg disaster, take place, $x) -> (Thursday LL, Instance Of, 20-year-old woman) (The Hindenburg disaster, took place on, Thursday) -> Thursday LL (16698ms)\nWhen was the telegraph invented?\t1837\t2.6017828011117756\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The telegraph, was invented in, 1837) -> 1837 (5988ms)\nWhen was the telegraph invented?\t1844\t2.4824108720500937\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The telegraph key, was invented in, 1844) -> 1844 (5988ms)\nWhen was the telegraph invented?\t1794\t2.446981236908129\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The OG telegraph system, was invented in, 1794) -> 1794 (5988ms)\nWhen was the telegraph invented?\t1832\t2.4230106878665745\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The first electromagnetic telegraph, was invented in, 1832) -> 1832 (6651ms)\nWhen was the telegraph invented?\t1855\t-0.5839732430580167\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, originate in, $x) -> (the Sheffield Telegraph, originated in, 1855) -> 1855 (8156ms)\nWhen was the telegraph invented?\tthe 1830s\t-0.6239046327104831\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (the telegraph, was invented in, the 1830s) -> the 1830s (7978ms)\nWhen was the telegraph invented?\t1861\t-1.2737433975599122\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (the telegraph, was introduced in, 1861) -> 1861 (10451ms)\nWhen was the telegraph invented?\tthe 1830\t-1.2828846481580172\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be first use in, $x) -> (the telegraph, was first used in, the 1830) -> the 1830 (8396ms)\nWhen was the telegraph invented?\t1865\t-1.5993568660947233\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be announce in, $x) -> (the overland telegraph scheme, was announced in, 1865) -> 1865 (10677ms)\nWhen was the telegraph invented?\t1842\t-2.001140079727559\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be patent in, $x) -> (An electrical telegraph, was US-patented in, 1842) -> 1842 (10366ms)\nWhen was the telegraph invented?\t1866\t-2.0106980747069247\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (Telegraph machines, were introduced in, 1866) -> 1866 (10451ms)\nWhen was the telegraph invented?\t2008\t-2.171309707208366\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (The Telegraph, launched in, 2008) -> 2008 (10854ms)\nWhen was the telegraph invented?\tFrance\t-2.3463740722377233\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The optical telegraph, was invented in, France) -> France (7978ms)\nWhen was the telegraph invented?\tEngland\t-2.3806205493059327\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The electric telegraph, was originally invented in, England) -> England (7978ms)\nWhen was the telegraph invented?\t2006\t-2.580707621415294\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (The Sunday Telegraph, have launched the program again in, 2006) -> 2006 (10854ms)\nWhen was the telegraph invented?\t2007\t-2.6007421212656068\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (Victoria and Telegraph TV, was launched in, 2007) -> 2007 (10854ms)\nWhen was the telegraph invented?\t1873\t-2.7162726155359795\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, license in, $x) -> (Direct United States Telegraph, was granted a license in, 1873) -> 1873 (10178ms)\nWhen was the telegraph invented?\tthe 1830?s\t-2.8922655101870487\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be develop in, $x) -> (the electrical telegraph, was developed in, the 1830?s) -> the 1830?s (8771ms)\nWhen was the telegraph invented?\t1905\t-2.9904347016246806\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, distribute in, $x) -> (American De Forest Wireless Telegraph Co., distributed in, 1905) -> 1905 (10886ms)\nWhen was the telegraph invented?\t2012\t-3.031128805366357\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, support in, $x) -> (Telegraph.co.uk Scuba Divers, support the Games in, 2012) -> 2012 (10276ms)\nWhen was the telegraph invented?\tToronto\t-3.17306386434748\tWhen was the telegraph invented? -> $x: (the telegraph invented, be in, $x) -> (The newly invented magnetic telegraph, was installed in, Toronto) -> Toronto (8010ms)\nWhen was the telegraph invented?\tthe eighteen hundreds people\t-3.6400430311822896\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (the telegraph, was invented in, the eighteen hundreds people) -> the eighteen hundreds people (8010ms)\nWhen was the telegraph invented?\trevolutionary France\t-3.7722222284011715\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be develop in, $x) -> (the earliest telegraph, was developed in, revolutionary France) -> revolutionary France (8772ms)\nWhen was the telegraph invented?\tthe nineteenth century\t-3.7924229045981526\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (the telegraph, was invented in, the nineteenth century) -> the nineteenth century (8010ms)\nWhen was the telegraph invented?\tthe U.S.\t-4.155523133051378\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be patent in, $x) -> (the electric telegraph, was patented in, the U.S.) -> the U.S. (8771ms)\nWhen was the telegraph invented?\tthe University\t-4.264115179703579\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: ($x, be the birthplace of, the telegraph) -> (the University, was the birthplace of, the Recording Telegraph) -> the University (8124ms)\nWhen was the telegraph invented?\tMay\t-4.290779386850126\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be play in, $x) -> (telegraph, was played in, May) -> May (10978ms)\nWhen was the telegraph invented?\tthe 1840s\t-4.500504749584907\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (the telegraph, was introduced in, the 1840s) -> the 1840s (10451ms)\nWhen was the telegraph invented?\tthe USA\t-4.502592393794892\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be first introduce in, $x) -> (the telegraph, was first introduced in, the USA) -> the USA (8525ms)\nWhen was the telegraph invented?\ta large-scale war\t-4.717393178733049\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be first use in, $x) -> (the telegraph, were first used in, a large-scale war) -> a large-scale war (8396ms)\nWhen was the telegraph invented?\tMorris County\t-4.723115008327262\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: ($x, be the birthplace of, the telegraph) -> (Morris County, is also the birthplace of, the telegraph) -> Morris County (8124ms)\nWhen was the telegraph invented?\tthe 1820s\t-4.850716848788568\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (Copper-wire telegraphs, were introduced in, the 1820s) -> the 1820s (10451ms)\nWhen was the telegraph invented?\tthe 1800s , money\t-4.95563853833639\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (the telegraph, was introduced in, the 1800s , money) -> the 1800s , money (10490ms)\nWhen was the telegraph invented?\tAustralia\t-4.978602254834286\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be popular in, $x) -> (The Daily Telegraph, is a very popular newspaper in, Australia) -> Australia (8156ms)\nWhen was the telegraph invented?\tMorse\t-5.134062633043072\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be patent in, $x) -> (the printing telegraph, was patented in, Morse) -> Morse (8771ms)\nWhen was the telegraph invented?\tFebruary\t-5.357342758807931\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (the Daily Telegraph, launched a competition in, February) -> February (10855ms)\nWhen was the telegraph invented?\treporting\t-5.395532830877789\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be nt in, $x) -> (The Telegraph, was n?t alone in, reporting) -> reporting (10178ms)\nWhen was the telegraph invented?\tAmerica\t-5.440948600266088\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> (a telegraph, is invented in, America) -> America (8047ms)\nWhen was the telegraph invented?\tMorse code\t-6.367868918014849\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, require in, $x) -> (The telegraph ticket, requires a proficiency in, Morse code) -> Morse code (10886ms)\nWhen was the telegraph invented?\tIndia\t-6.373874151242235\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (The first electrical telegraph, is introduced in, India) -> India (10525ms)\nWhen was the telegraph invented?\tmaximum 3.6 megabyte\t-6.391871230742517\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, handle in, $x) -> (TelegraphCQ, can handle in, maximum 3.6 megabyte) -> maximum 3.6 megabyte (10854ms)\nWhen was the telegraph invented?\tCeltic FC\t-6.547361076338431\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, share in, $x) -> (the Telegraph Three, offered his shares in, Celtic FC) -> Celtic FC (10525ms)\nWhen was the telegraph invented?\ttelegraphy\t-6.581248917439403\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, recognize in, $x) -> (the telegraph, was a recognized expert in, telegraphy) -> telegraphy (10178ms)\nWhen was the telegraph invented?\tinvestigation\t-6.598665298223054\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (the Sunday Telegraph, launched in, investigation) -> investigation (10854ms)\nWhen was the telegraph invented?\tKolkata\t-6.6025489331191825\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (The Telegraph, was launched in, Kolkata) -> Kolkata (10886ms)\nWhen was the telegraph invented?\tthe mid-19 th century\t-6.90659341932221\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (the electric telegraph, was introduced in, the mid-19 th century) -> the mid-19 th century (10525ms)\nWhen was the telegraph invented?\tone family\t-7.003821529149065\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, bring into, $x) -> (the telegraph, brought the world into, one family) -> one family (10766ms)\nWhen was the telegraph invented?\ta link\t-7.029132293552051\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, view in, $x) -> (K9WDY Telegraph Patent Collection, may be viewed in, a link) -> a link (10525ms)\nWhen was the telegraph invented?\taway\t-7.077274517208647\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, bring from, $x) -> (The telegraph, brought news from far, away) -> away (10367ms)\nWhen was the telegraph invented?\tLiverpool\t-7.129675567259983\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, bring from, $x) -> (the telegraph, brings from, Liverpool) -> Liverpool (10367ms)\nWhen was the telegraph invented?\tturn\t-7.145516822727792\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, quote in, $x) -> (The Daily Telegraph?s report, was quoted in, turn) -> turn (10886ms)\nWhen was the telegraph invented?\tJapan\t-7.198707570611786\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, introduce to, $x) -> (The bicycle , train and telegraph, were introduced to, Japan) -> Japan (10301ms)\nWhen was the telegraph invented?\tthe Titanic disaster\t-7.199478486198075\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, must have in, $x) -> (wireless telegraph, must have played in, the Titanic disaster) -> the Titanic disaster (10766ms)\nWhen was the telegraph invented?\tSoth\t-7.223186666615843\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: ($x, appearance, telegraph) -> (Soth, makes an appearance also in, Telegraph? Interviews) -> Soth (10525ms)\nWhen was the telegraph invented?\ta series\t-7.225675589201392\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, create in, $x) -> (Telegraph.co.uk Mr Marsh, will be created in, a series) -> a series (10330ms)\nWhen was the telegraph invented?\tCanada\t-7.386530310209013\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, introduce into, $x) -> (Land line telegraph, was introduced into, Canada) -> Canada (10886ms)\nWhen was the telegraph invented?\ta boat\t-7.575355628794075\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, to have in, $x) -> (The telegraph-boy, would have to come in, a boat) -> a boat (10767ms)\nWhen was the telegraph invented?\tGermany\t-7.648399520707466\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, emerge in, $x) -> (Electromagnetic telegraphs, emerged in, Germany) -> Germany (10276ms)\nWhen was the telegraph invented?\tGrafton\t-8.010755045707006\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, bring from, $x) -> (Old telegraph poles, were brought from, Grafton) -> Grafton (10601ms)\nWhen was the telegraph invented?\tthe colony\t-8.182940425919693\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, introduce into, $x) -> (the telegraph system, was introduced into, the colony) -> the colony (10886ms)\nWhen was the telegraph invented?\tthe survey\t-8.273008646282666\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, quote in, $x) -> (The Telegraph and Trouve Media, are quoted in, the survey) -> the survey (10978ms)\nWhen was the telegraph invented?\tthe wording\t-8.33377973980036\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, quote in, $x) -> (the radio telegraph text, is quoted in, the wording) -> the wording (11018ms)\nWhen was the telegraph invented?\tCoventry\t-8.37664892214439\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, distribute in, $x) -> (the Coventry Telegraph, Distributed in, Coventry) -> Coventry (11018ms)\nWhen was the telegraph invented?\tthe capture\t-8.794843985954216\tWhen was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, to use in, $x) -> (His wireless telegraph, was even used to help in, the capture) -> the capture (10301ms)\nWhen was the telegraph invented?\ttelegraph offices\t-10.447661394314387\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (telegraph offices, is to make, the telegraph service) -> telegraph offices (16119ms)\nWhen was the telegraph invented?\tfaxes\t-10.457019542544959\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (faxes, can be made at, the Central Telegraph Office) -> faxes (16118ms)\nWhen was the telegraph invented?\t15 year\t-10.56568765764988\tWhen was the telegraph invented? -> when be [ the telegraph invent ] ? -> what date be the telegraph invent ? -> $x: ($x, instance of, date) (the telegraph, invent, $x) -> (15 year, Instance Of, maturity date) (the telegraph, had only been invented, 15 years) -> 15 year (13937ms)\nWhen was the telegraph invented?\ta distinction\t-10.759549957663106\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (a distinction, is made between, the wireless telegraph) -> a distinction (16118ms)\nWhen was the telegraph invented?\tSimilar claims\t-10.826162643424407\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Similar claims, were made about, the telegraph) -> Similar claims (16118ms)\nWhen was the telegraph invented?\tQuantum leaps\t-11.019504079830082\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Quantum leaps, were also made by, the telegraph) -> Quantum leaps (16119ms)\nWhen was the telegraph invented?\ta race\t-11.100204655068165\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (a race, was made for, the nearest telegraph office) -> a race (16119ms)\nWhen was the telegraph invented?\tAndres West?s comments\t-11.108162438082623\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Andres West?s comments, were made to, the Sunday Telegraph) -> Andres West?s comments (16405ms)\nWhen was the telegraph invented?\tCo\t-11.11189804408335\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Co, has been made for, the Daily Telegraph Business Club) -> Co (16405ms)\nWhen was the telegraph invented?\tsales forces\t-11.160528928571201\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (sales forces, was made possible by, the telegraph and telephone) -> sales forces (16405ms)\nWhen was the telegraph invented?\tCornell University\t-11.21903813866085\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be invent be the telegraph ? -> $x: ($x, be invent be, the telegraph) -> (Cornell University, is said to have invented, the telegraph pole) -> Cornell University (15777ms)\nWhen was the telegraph invented?\tMarconi\t-11.254318564967894\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be invent be the telegraph ? -> $x: ($x, be invent be, the telegraph) -> (Marconi, is best known for inventing, the radio telegraph) -> Marconi (15777ms)\nWhen was the telegraph invented?\tMarconi's\t-11.276214579324705\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> what year be the telegraph be invent ? -> $x: ($x, instance of, year) (the telegraph, be invent, $x) -> (Marconi's, Instance Of, 84-year old institution) (the wireless telegraph, was invented by, Marconi) -> Marconi's (14041ms)\nWhen was the telegraph invented?\tthe telegraph\t-11.421890359854526\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be invent be the telegraph ? -> $x: ($x, be invent be, the telegraph) -> (the telegraph, was invented until, the last telegraph) -> the telegraph (15777ms)\nWhen was the telegraph invented?\tSpringer\t-11.869050414305622\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Springer, is making its bid for, the Telegraph) -> Springer (16405ms)\nWhen was the telegraph invented?\tFRANCE\t-11.89693144916952\tWhen was the telegraph invented? -> when be [ the telegraph invent ] ? -> what day be the telegraph invent ? -> $x: ($x, instance of, day) (the telegraph, invent, $x) -> (FRANCE, Instance Of, fashion Thinking Day country) (The optical telegraph, was invented in, France) -> FRANCE (14334ms)\nWhen was the telegraph invented?\tSuleiman\t-11.928291641011223\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Suleiman, was made public by, the Daily Telegraph) -> Suleiman (16405ms)\nWhen was the telegraph invented?\tFrances\t-11.999560678221481\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> what year be the telegraph be invent ? -> $x: ($x, instance of, year) (the telegraph, be invent, $x) -> (Frances, Instance Of, year hurricane) (The optical telegraph, was invented in, France) -> Frances (14450ms)\nWhen was the telegraph invented?\tAlexander Bain\t-12.009788636620296\tWhen was the telegraph invented? -> when be [ the telegraph invent ] ? -> what century be the telegraph invent ? -> $x: ($x, instance of, century) (the telegraph, invent, $x) -> (Alexander Bain, Instance Of, nineteenth century scientist) (the chemical telegraph, invented by, Alexander Bain) -> Alexander Bain (15097ms)\nWhen was the telegraph invented?\tSamuel Morse\t-12.025604679579445\tWhen was the telegraph invented? -> when be [ the telegraph ] invent ? -> what be the first the telegraph invent ? -> $x: (the first the telegraph, invent, $x) -> (the first practical telegraph, was invented by, Samuel Morse) -> Samuel Morse (16405ms)\nWhen was the telegraph invented?\tfirst\t-12.243032404964659\tWhen was the telegraph invented? -> when be [ the telegraph invent ] ? -> what date be the telegraph invent ? -> $x: ($x, instance of, date) (the telegraph, invent, $x) -> (first, Instance Of, date) (the telegraph, was invented, first) -> first (15463ms)\nWhen was the telegraph invented?\tthe deportations\t-12.600039366597539\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (the deportations, was made possible by, the telegraph) -> the deportations (16740ms)\nWhen was the telegraph invented?\tthe same claim\t-12.647786064684293\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (the same claim, was made about, the telegraph) -> the same claim (16740ms)\nWhen was the telegraph invented?\tThe cable\t-12.684922367851005\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (The cable, was made by, the Telegraph Construction) -> The cable (16740ms)\nWhen was the telegraph invented?\tthe current level\t-12.882039161255754\tWhen was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (the current level, have been made by, The Daily Telegraph) -> the current level (17102ms)\nWhat food companies have been acquired by Heinz?\tWeight Watchers\t-5.881294667674578\tWhat food companies have been acquired by Heinz? -> $x: ($x, instance of, food companies) ($x, have been acquired by, Heinz) -> $x: ($x, instance of, food companies) ($x, be sell to, Heinz) -> (Weight Watchers, Instance Of, food company) (Weight Watchers, was sold to, H.J. Heinz Co. Today) -> Weight Watchers (1977ms)\nWhen did he die?\t1990\t-8.015283034047856\tWhen did he die? -> when do [ he ] die ? -> when do william he die ? -> $x: (william he, do die in, $x) -> $x: (william he, die in, $x) -> (The Williams trials--he, died in, 1990) -> 1990 (9860ms)\nWhen did he die?\t1996\t-9.684835867862652\tWhen did he die? -> when do [ he ] die ? -> when be he death ? -> $x: (he death, be in, $x) -> (his death?he, was beheaded in, 1996) -> 1996 (11011ms)\nWhen did he die?\tprison\t-12.279499405285428\tWhen did he die? -> when do [ he ] die ? -> what be the year he die ? -> $x: (the year he, die, $x) -> $x: (year he, die, $x) -> (5 to 10 years?...He, will die in, prison) -> prison (10676ms)\nWhen did he die?\tleukemia\t-12.363562735562757\tWhen did he die? -> when do [ he ] die ? -> what be the year he die ? -> $x: (the year he, die, $x) -> $x: (year he, die, $x) -> (only three years-he, died of, leukemia) -> leukemia (10676ms)\nWhen did he die?\tthe unenviable position\t-15.365185392270849\tWhen did he die? -> when do [ he ] die ? -> when be he death ? -> $x: (he death, be in, $x) -> (he death, was left in, the unenviable position) -> the unenviable position (11011ms)\nWhen did he die?\tthe net\t-16.255047808592128\tWhen did he die? -> when do [ he ] die ? -> when be he death ? -> $x: (he death, be in, $x) -> (he who gets free from death, will be taken in, the net) -> the net (11011ms)\nWhen was the Hoover Dam constructed?\t1931\t3.121346797184852\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> (The Hoover Dam, was constructed in, 1931) -> 1931 (2798ms)\nWhen was the Hoover Dam constructed?\t1937\t0.9650817321652423\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the Hoover Dam, was completed in, 1937) -> 1937 (4500ms)\nWhen was the Hoover Dam constructed?\t1935\t0.9641170329427564\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the Hoover Dam, was completed in, 1935) -> 1935 (4500ms)\nWhen was the Hoover Dam constructed?\t2008\t0.9380041841784776\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the Hoover Dam Bypass, is completed in, 2008) -> 2008 (4500ms)\nWhen was the Hoover Dam constructed?\t1928\t0.9031233254268005\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, 1928) -> 1928 (3873ms)\nWhen was the Hoover Dam constructed?\t2010\t0.7009762408880973\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the new Hoover Dam bridge, is completed in, 2010) -> 2010 (4500ms)\nWhen was the Hoover Dam constructed?\t1936\t-0.2631159907361904\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the Hoover Dam, was completed in, 1936) -> 1936 (4557ms)\nWhen was the Hoover Dam constructed?\t2001\t-0.37611822420461305\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, date to, $x) -> (The Hoover Dam Bypass project, dates back to, 2001) -> 2001 (4006ms)\nWhen was the Hoover Dam constructed?\tthe 1930 's\t-1.6070926090499955\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, the 1930 's) -> the 1930 's (3873ms)\nWhen was the Hoover Dam constructed?\tOctober 9 , 1936\t-2.161137065363349\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: (the Hoover Dam, be complete on, $x) -> (The Hoover Dam, was completed on, October 9 , 1936) -> October 9 , 1936 (5645ms)\nWhen was the Hoover Dam constructed?\tthe 1930s\t-2.413369431742569\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was being built in, the 1930s) -> the 1930s (3873ms)\nWhen was the Hoover Dam constructed?\tthe 1930?s and ,\t-2.520770289746152\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (The Hoover Dam, was built in, the 1930?s and ,) -> the 1930?s and , (3873ms)\nWhen was the Hoover Dam constructed?\t?blocks\t-3.3348347421827507\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (The Hoover Dam, was built in, ?blocks) -> ?blocks (3873ms)\nWhen was the Hoover Dam constructed?\tpart\t-3.555884188380822\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be finance in, $x) -> (the Hoover Dam, was financed in, part) -> part (3743ms)\nWhen was the Hoover Dam constructed?\tthe 30s\t-3.7342631094339067\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, the 30s) -> the 30s (3873ms)\nWhen was the Hoover Dam constructed?\ta peak\t-3.7933362195183578\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be build during, $x) -> (The Hoover Dam, was built during, a peak) -> a peak (3812ms)\nWhen was the Hoover Dam constructed?\tfive years\t-3.9483889557888574\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (The Hoover Dam, was completed in just, five years) -> five years (4578ms)\nWhen was the Hoover Dam constructed?\tupper Black Canyon\t-4.181093100755118\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (The proposed Hoover Dam, is to be built in, upper Black Canyon) -> upper Black Canyon (3895ms)\nWhen was the Hoover Dam constructed?\tthe Great Depression\t-4.45397398435394\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be build during, $x) -> (the Hoover Dam, was built during, the Great Depression) -> the Great Depression (3812ms)\nWhen was the Hoover Dam constructed?\tconcrete\t-4.489521686167469\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: ($x, to be build, the Hoover Dam) -> (concrete, were used to build, the Hoover Dam) -> concrete (5871ms)\nWhen was the Hoover Dam constructed?\tNevada\t-4.529714745190676\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (Dam Completed -The Hoover Dam, was completed in, Nevada) -> Nevada (4594ms)\nWhen was the Hoover Dam constructed?\tthe Colorado River\t-4.540740561731354\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: (the Hoover Dam, be build across, $x) -> (the Hoover Dam, was built across, the Colorado River) -> the Colorado River (5416ms)\nWhen was the Hoover Dam constructed?\tthe Colorado river\t-4.642413745140478\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: (the Hoover Dam, be build on, $x) -> (The famous Hoover dam, is built on, the Colorado river) -> the Colorado river (5871ms)\nWhen was the Hoover Dam constructed?\tworkers\t-4.676690888319532\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: ($x, to be build, the Hoover Dam) -> (workers, were needed to build, the Hoover Dam . Trade Schools) -> workers (5871ms)\nWhen was the Hoover Dam constructed?\ta civilization\t-4.68253034387852\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: ($x, to be build, the Hoover Dam) -> (a civilization, is allowed to build, the Hoover Dam) -> a civilization (5871ms)\nWhen was the Hoover Dam constructed?\tthe depression\t-4.690440228300883\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be build during, $x) -> (the Hoover Dam, was built during, the depression) -> the depression (3812ms)\nWhen was the Hoover Dam constructed?\tBlack Canyon\t-4.756543199039429\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, Black Canyon) -> Black Canyon (3894ms)\nWhen was the Hoover Dam constructed?\tany one company\t-5.134766607831\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: (the Hoover Dam, be too big for, $x) -> (The Hoover Dam project, was too big for, any one company) -> any one company (5597ms)\nWhen was the Hoover Dam constructed?\tthe depths\t-5.289087810080561\tWhen was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, the depths) -> the depths (3895ms)\nWho was Picasso?\tinternational artist\t-3.444794674761426\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, international artist) -> international artist (4120ms)\nWho was Picasso?\tgreat painter\t-3.509644851549561\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, great painter) -> great painter (4119ms)\nWho was Picasso?\thousehold name\t-3.579729373455441\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, household name) -> household name (4119ms)\nWho was Picasso?\tinfluential artist\t-3.5852341895980966\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, influential artist) -> influential artist (4119ms)\nWho was Picasso?\tspanish master\t-3.6153580450228473\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, spanish master) -> spanish master (4119ms)\nWho was Picasso?\tmodernist master\t-3.641453510252504\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, modernist master) -> modernist master (4119ms)\nWho was Picasso?\tfrench master\t-3.7370990680985727\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, french master) -> french master (4140ms)\nWho was Picasso?\tmale artist\t-3.7386657798142227\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, male artist) -> male artist (4140ms)\nWho was Picasso?\tgifted artist\t-3.741828157786684\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, gifted artist) -> gifted artist (4141ms)\nWho was Picasso?\trespected artist\t-3.743748760801644\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, respected artist) -> respected artist (4140ms)\nWho was Picasso?\tlarge artist\t-3.745600676989916\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, large artist) -> large artist (4140ms)\nWho was Picasso?\tgreatest painter\t-3.7480487522717345\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, greatest painter) -> greatest painter (4140ms)\nWho was Picasso?\thistorical figure\t-3.7609081089039176\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historical figure) -> historical figure (4177ms)\nWho was Picasso?\tpioneering artist\t-3.7633769665756507\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, pioneering artist) -> pioneering artist (4177ms)\nWho was Picasso?\tmaster painter\t-3.7771075487580497\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master painter) -> master painter (4177ms)\nWho was Picasso?\tcatalan artist\t-3.807105010755878\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, catalan artist) -> catalan artist (4177ms)\nWho was Picasso?\taccomplished artist\t-3.827629954530151\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, accomplished artist) -> accomplished artist (4177ms)\nWho was Picasso?\teminent painter\t-3.8401779948110706\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, eminent painter) -> eminent painter (4177ms)\nWho was Picasso?\temblematic artist\t-3.857750723537536\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, emblematic artist) -> emblematic artist (4192ms)\nWho was Picasso?\tcompetent artist\t-3.8837643606124814\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, competent artist) -> competent artist (4192ms)\nWho was Picasso?\tfamed painter\t-3.8850631293260376\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famed painter) -> famed painter (4192ms)\nWho was Picasso?\tcontinental artist\t-3.8850631293260376\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, continental artist) -> continental artist (4192ms)\nWho was Picasso?\tcommon name\t-3.885632992728394\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, common name) -> common name (4192ms)\nWho was Picasso?\tparticular favorite\t-3.8873817354655524\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, particular favorite) -> particular favorite (4192ms)\nWho was Picasso?\tversatile artist\t-3.896397306925146\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, versatile artist) -> versatile artist (4214ms)\nWho was Picasso?\tcrap artist\t-3.9135060197008396\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, crap artist) -> crap artist (4214ms)\nWho was Picasso?\thistoric master\t-3.9135060197008396\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historic master) -> historic master (4214ms)\nWho was Picasso?\thistoric great\t-3.9184911910055304\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historic great) -> historic great (4214ms)\nWho was Picasso?\tnotable friend\t-3.920983776657876\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, notable friend) -> notable friend (4214ms)\nWho was Picasso?\tcelebrity artist\t-3.926550916376574\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, celebrity artist) -> celebrity artist (4214ms)\nWho was Picasso?\ttrained artist\t-3.9316410517130294\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, trained artist) -> trained artist (4311ms)\nWho was Picasso?\tborn artist\t-3.9364609950017697\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, born artist) -> born artist (4311ms)\nWho was Picasso?\ttrue master\t-3.936671003961488\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, true master) -> true master (4311ms)\nWho was Picasso?\tperennial favorite\t-3.936926331947206\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, perennial favorite) -> perennial favorite (4311ms)\nWho was Picasso?\trevolutionary artist\t-3.941547607676876\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, revolutionary artist) -> revolutionary artist (4311ms)\nWho was Picasso?\tliving artist\t-3.942447707710862\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, living artist) -> living artist (4311ms)\nWho was Picasso?\trealist painter\t-3.9456247658293937\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, realist painter) -> realist painter (4336ms)\nWho was Picasso?\tsuperior painter\t-3.9464081498215196\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, superior painter) -> superior painter (4336ms)\nWho was Picasso?\tart master\t-4.058469326739851\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, art master) -> art master (4336ms)\nWho was Picasso?\tworld famous artist\t-4.1815380954060055\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world famous artist) -> world famous artist (4336ms)\nWho was Picasso?\ttwentieth-century artist\t-4.31412478608904\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, twentieth-century artist) -> twentieth-century artist (4336ms)\nWho was Picasso?\tfamous spanish master\t-4.383095927357559\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous spanish master) -> famous spanish master (4336ms)\nWho was Picasso?\tworld's most renowned artist\t-4.416993978231135\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world's most renowned artist) -> world's most renowned artist (4421ms)\nWho was Picasso?\tworld's greatest painter\t-4.4460973169178954\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world's greatest painter) -> world's greatest painter (4421ms)\nWho was Picasso?\tname in the art world\t-4.45131494859238\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, name in the art world) -> name in the art world (4422ms)\nWho was Picasso?\tfamous and fabulous artist\t-4.466661147936896\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous and fabulous artist) -> famous and fabulous artist (4422ms)\nWho was Picasso?\tlike-minded artist\t-4.48883492003177\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, like-minded artist) -> like-minded artist (4422ms)\nWho was Picasso?\twell-known international artist\t-4.492288574747843\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known international artist) -> well-known international artist (4422ms)\nWho was Picasso?\tfamous and referenced international artist\t-4.4924426106303805\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous and referenced international artist) -> famous and referenced international artist (4474ms)\nWho was Picasso?\tworld-class artist from modern master\t-4.496208904027522\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world-class artist from modern master) -> world-class artist from modern master (4474ms)\nWho was Picasso?\tpopular spanish artist\t-4.497138561537416\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, popular spanish artist) -> popular spanish artist (4474ms)\nWho was Picasso?\teminently creative individual\t-4.513919794109173\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, eminently creative individual) -> eminently creative individual (4474ms)\nWho was Picasso?\tworld-renown artist\t-4.519343213923897\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world-renown artist) -> world-renown artist (4474ms)\nWho was Picasso?\tworld class master\t-4.522488056829473\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world class master) -> world class master (4474ms)\nWho was Picasso?\twell-known artist\t-4.52737396497635\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known artist) -> well-known artist (4545ms)\nWho was Picasso?\trenowned japanese and international artist\t-4.529111034148203\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, renowned japanese and international artist) -> renowned japanese and international artist (4545ms)\nWho was Picasso?\tgroundbreaking and incredibly prolific artist\t-4.536981272583829\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, groundbreaking and incredibly prolific artist) -> groundbreaking and incredibly prolific artist (4545ms)\nWho was Picasso?\tsolid delivery, neighborhood pizza joint\t-4.536981272583829\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, solid delivery, neighborhood pizza joint) -> solid delivery, neighborhood pizza joint (4545ms)\nWho was Picasso?\tartist of good caliber\t-4.536981272583829\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, artist of good caliber) -> artist of good caliber (4545ms)\nWho was Picasso?\tsuperbly skilled classical artist\t-4.536981272583829\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, superbly skilled classical artist) -> superbly skilled classical artist (4545ms)\nWho was Picasso?\tsmall house museum\t-4.551959139000365\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, small house museum) -> small house museum (4600ms)\nWho was Picasso?\tvery skilled artist\t-4.551959139000365\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very skilled artist) -> very skilled artist (4599ms)\nWho was Picasso?\treally good painter\t-4.551959139000365\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, really good painter) -> really good painter (4601ms)\nWho was Picasso?\thugely important artist\t-4.551959139000365\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, hugely important artist) -> hugely important artist (4599ms)\nWho was Picasso?\topportunistic white artist\t-4.551959139000365\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, opportunistic white artist) -> opportunistic white artist (4599ms)\nWho was Picasso?\tmaster of technique\t-4.55486286418806\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of technique) -> master of technique (4599ms)\nWho was Picasso?\twell-established artist\t-4.5599232334038255\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-established artist) -> well-established artist (4621ms)\nWho was Picasso?\tground breaking artist\t-4.563709900107951\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, ground breaking artist) -> ground breaking artist (4621ms)\nWho was Picasso?\tvery talented artist\t-4.5687375884887995\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very talented artist) -> very talented artist (4621ms)\nWho was Picasso?\tcri\t-4.56988340270451\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, cri) -> cri (4621ms)\nWho was Picasso?\tvery productive artist\t-4.5725229700193655\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very productive artist) -> very productive artist (4621ms)\nWho was Picasso?\tgreat trompe l'oeil artist\t-4.581875228018972\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, great trompe l'oeil artist) -> great trompe l'oeil artist (4638ms)\nWho was Picasso?\tinfluential and renowned artist\t-4.581875228018972\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, influential and renowned artist) -> influential and renowned artist (4621ms)\nWho was Picasso?\tsilent and live auction fundraiser\t-4.581875228018972\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picassos, Instance Of, silent and live auction fundraiser) -> silent and live auction fundraiser (4638ms)\nWho was Picasso?\trenowned artist of the world\t-4.581875228018972\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, renowned artist of the world) -> renowned artist of the world (4640ms)\nWho was Picasso?\ttasty haven serving gourmet breakfast and lunch\t-4.581875228018972\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, tasty haven serving gourmet breakfast and lunch) -> tasty haven serving gourmet breakfast and lunch (4638ms)\nWho was Picasso?\twell-renowned Spanish painter\t-4.581875228018972\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-renowned Spanish painter) -> well-renowned Spanish painter (4638ms)\nWho was Picasso?\tinventive and protean artist\t-4.581875228018972\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, inventive and protean artist) -> inventive and protean artist (4638ms)\nWho was Picasso?\twell-known great\t-4.587016185773722\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known great) -> well-known great (4657ms)\nWho was Picasso?\tcommercially ruthless artist\t-4.593086801038365\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, commercially ruthless artist) -> commercially ruthless artist (4658ms)\nWho was Picasso?\thigh-profile artist\t-4.593812508774482\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, high-profile artist) -> high-profile artist (4658ms)\nWho was Picasso?\tmaster of evasion\t-4.595584449106871\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of evasion) -> master of evasion (4658ms)\nWho was Picasso?\tmaster of public relation\t-4.597027524365756\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of public relation) -> master of public relation (4658ms)\nWho was Picasso?\tflemish and dutch master\t-4.599192138479782\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, flemish and dutch master) -> flemish and dutch master (4658ms)\nWho was Picasso?\tpainting by artist\t-4.601459829047815\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, painting by artist) -> painting by artist (4673ms)\nWho was Picasso?\tartist of international renown\t-4.613325793683654\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, artist of international renown) -> artist of international renown (4673ms)\nWho was Picasso?\tfamous sculptor and artist\t-4.616148278900171\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous sculptor and artist) -> famous sculptor and artist (4673ms)\nWho was Picasso?\tgreat provider of banquet hall\t-4.633954042583609\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picassos, Instance Of, great provider of banquet hall) -> great provider of banquet hall (4673ms)\nWho was Picasso?\tpainter\t-4.64049894273171\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, painter) -> painter (4673ms)\nWho was Picasso?\t20th-century painter\t-4.812246026378941\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, 20th-century painter) -> 20th-century painter (4673ms)\nWho was Picasso?\tluminary\t-4.887359052289491\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, luminary) -> luminary (4692ms)\nWho was Picasso?\tpleasure\t-5.189211126623183\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, pleasure) -> pleasure (4693ms)\nWho was Picasso?\treference\t-5.204046539380576\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, reference) -> reference (4692ms)\nWho was Picasso?\tthreat\t-5.303247574485111\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, threat) -> threat (4692ms)\nWho was Picasso?\tparticipant\t-5.305802048173935\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, participant) -> participant (4692ms)\nWho was Picasso?\tidol\t-5.336528684559014\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, idol) -> idol (4693ms)\nWho was Picasso?\tanchor\t-5.342942525472333\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, anchor) -> anchor (4722ms)\nWho was Picasso?\tfigure\t-5.348636487128098\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, figure) -> figure (4722ms)\nWho was Picasso?\ttreat\t-5.348782220388044\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (PICASSO, Instance Of, treat) -> treat (4722ms)\nWho was Picasso?\tcandidate\t-5.352240010347242\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, candidate) -> candidate (4722ms)\nWho was Picasso?\tpainting\t-5.9554626337630046\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (Picasso, be a style of, $x) -> (Pablo Picasso, had been developing a similar style of, painting) -> painting (4722ms)\nWho was Picasso?\tPicasso\t-6.192481667593315\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (Picasso, be a by, $x) -> (Pablo Picasso, is a painting by, Picasso) -> Picasso (4722ms)\nWho was Picasso?\tthe Spanish character\t-6.426024243592406\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: ($x, element, Picasso) -> (the Spanish character, were a vital element in, Picasso) -> the Spanish character (4738ms)\nWho was Picasso?\tGeorges Braque\t-8.166510218443678\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Georges Braque, was, Picasso) -> Georges Braque (5955ms)\nWho was Picasso?\tMus?e Picasso\t-8.238832039867894\tWho was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Mus?e Picasso) -> Mus?e Picasso (6304ms)\nWho was Picasso?\tTorre Picasso\t-8.238832039867894\tWho was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Torre Picasso) -> Torre Picasso (6198ms)\nWho was Picasso?\tMuseu Picasso\t-8.238832039867894\tWho was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Museu Picasso) -> Museu Picasso (6198ms)\nWho was Picasso?\tPablo Picasso\t-8.238832039867894\tWho was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (4221 Picasso, Named after, Pablo Picasso) -> Pablo Picasso (6304ms)\nWho was Picasso?\tThe style\t-8.737404299710274\tWho was Picasso? -> $x: (Picasso, instance of, $x) -> $x: ($x, element, Picasso) -> (The style, has elements of, Picasso and Matisse) -> The style (4738ms)\nWho was Picasso?\tfairground performers\t-9.20573207125295\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (fairground performers, was, Picasso) -> fairground performers (5955ms)\nWho was Picasso?\treduction printing\t-9.273690103699721\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (reduction printing, was, Picasso) -> reduction printing (5954ms)\nWho was Picasso?\tDaniel-Henry Kahnweiler\t-9.33564373172765\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Daniel-Henry Kahnweiler, was, Picasso) -> Daniel-Henry Kahnweiler (5955ms)\nWho was Picasso?\tMuseo Picasso M?laga\t-9.373089610097738\tWho was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Museo Picasso M?laga) -> Museo Picasso M?laga (6304ms)\nWho was Picasso?\tRosa 'Picasso'\t-9.373089610097738\tWho was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Rosa 'Picasso') -> Rosa 'Picasso' (6304ms)\nWho was Picasso?\tThe Source\t-9.44326696366239\tWho was Picasso? -> who be [ picasso ] ? -> who be one of picasso ? -> $x: ($x, be one of, picasso) -> (The Source, is one of, Picasso) -> The Source (6304ms)\nWho was Picasso?\tGoya\t-9.503172183768532\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Goya, was, Picasso) -> Goya (5955ms)\nWho was Picasso?\tCarlos Casagemas\t-9.622435519556829\tWho was Picasso? -> who be [ picasso ] ? -> who be one of picasso ? -> $x: ($x, be one of, picasso) -> (Carlos Casagemas, was one of, Picasso) -> Carlos Casagemas (6366ms)\nWho was Picasso?\tart\t-9.689701548098348\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (art, is, Picasso) -> art (5954ms)\nWho was Picasso?\tLes Demoiselles d'Avignon\t-9.705673486385356\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Les Demoiselles d'Avignon, was, Picasso) -> Les Demoiselles d'Avignon (6044ms)\nWho was Picasso?\tMaster Sachin Tendulkar\t-9.763111172898633\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Master Sachin Tendulkar, is, Picasso) -> Master Sachin Tendulkar (6044ms)\nWho was Picasso?\tArte Reina Sof?a\t-9.85582674078988\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Arte Reina Sof?a, is, Picasso) -> Arte Reina Sof?a (6044ms)\nWho was Picasso?\t?one language\t-9.88520360909922\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (?one language, is, Picasso) -> ?one language (6044ms)\nWho was Picasso?\twealth\t-9.88621280698715\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (wealth, was, Picasso) -> wealth (6044ms)\nWho was Picasso?\tAn example\t-9.909404589106048\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (An example, is, Picasso) -> An example (6044ms)\nWho was Picasso?\tDutch painter Kees van Dongen\t-9.939919683053578\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Dutch painter Kees van Dongen, was, Picasso) -> Dutch painter Kees van Dongen (6366ms)\nWho was Picasso?\ta broader sense\t-9.986813178299995\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (a broader sense, was, Picasso) -> a broader sense (6366ms)\nWho was Picasso?\tPablo Diego Jos? Francisco de Paula Juan Nepomuceno Mar?a de los Remedios Cipriano de la Sant?sima Trinidad Ruiz y Picasso\t-9.997314345595731\tWho was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Official name, Pablo Diego Jos? Francisco de Paula Juan Nepomuceno Mar?a de los Remedios Cipriano de la Sant?sima Trinidad Ruiz y Picasso) -> Pablo Diego Jos? Francisco de Paula Juan Nepomuceno Mar?a de los Remedios Cipriano de la Sant?sima Trinidad Ruiz y Picasso (6366ms)\nWho was Picasso?\tAnne Paloma Picasso\t-9.997314345595731\tWho was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Paloma Picasso, Official name, Anne Paloma Picasso) -> Anne Paloma Picasso (6366ms)\nWho was Picasso?\tthe Michael Mina\t-10.02388491333945\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (the Michael Mina, is, Picasso) -> the Michael Mina (6366ms)\nWho was Picasso?\tOne whole rack\t-10.068794305011924\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (One whole rack, was, Picasso ?) -> One whole rack (6455ms)\nWho was Picasso?\tSept. 11\t-10.20273835346923\tWho was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Sept. 11, is, Picasso) -> Sept. 11 (6455ms)\nHow did John Quincy Adams die?\tage 80\t-5.790228617519927\tHow did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (1848 John Quincy Adams, died at, age 80) -> age 80 (6311ms)\nHow did John Quincy Adams die?\tJohn Adams II\t-6.460946902290606\tHow did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, Children, John Adams II) -> John Adams II (8323ms)\nHow did John Quincy Adams die?\tGeorge Washington Adams\t-6.639624626185142\tHow did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, Children, George Washington Adams) -> George Washington Adams (8323ms)\nHow did John Quincy Adams die?\tLouisa Catherine Adams\t-6.639624626185142\tHow did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, Children, Louisa Catherine Adams) -> Louisa Catherine Adams (8323ms)\nHow did John Quincy Adams die?\t1848\t-6.854811490728415\tHow did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died in, 1848) -> 1848 (6311ms)\nHow did John Quincy Adams die?\tCharles Francis Adams, Sr.\t-6.899519497304469\tHow did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, Children, Charles Francis Adams, Sr.) -> Charles Francis Adams, Sr. (8323ms)\nHow did John Quincy Adams die?\tCharles Francis Adams III\t-6.899519497304469\tHow did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams II, Children, Charles Francis Adams III) -> Charles Francis Adams III (8323ms)\nHow did John Quincy Adams die?\ta stroke\t-7.046939780670995\tHow did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (President John Quincy Adams, dies of, a stroke) -> a stroke (6311ms)\nHow did John Quincy Adams die?\tan alcohol related death\t-7.467746628511599\tHow did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (President John Quincy Adams, dies, an alcohol related death) -> an alcohol related death (6311ms)\nHow did John Quincy Adams die?\tdifferent ways\t-7.503939106103617\tHow did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died in very, different ways) -> different ways (6311ms)\nHow did John Quincy Adams die?\tthe Speaker?s room\t-7.654670078489849\tHow did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died in, the Speaker?s room) -> the Speaker?s room (6435ms)\nHow did John Quincy Adams die?\tFebruary 23\t-8.450471285752979\tHow did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died on, February 23) -> February 23 (6435ms)\nHow did John Quincy Adams die?\tthe Revolution\t-8.957943061812404\tHow did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, was a child during, the Revolution) -> the Revolution (8323ms)\nHow did John Quincy Adams die?\ttwo days later\t-9.363885551202802\tHow did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died, two days later) -> two days later (6435ms)\nHow did John Quincy Adams die?\tDifferent Way\t-10.050458627208656\tHow did John Quincy Adams die? -> how [ do john quincy adam ] die ? -> what make do john quincy adam die ? -> $x: ($x, instance of, make) (john quincy adam, die, $x) -> (Different Way, Instance Of, well-made film) (John Quincy Adams, died in very, different ways) -> Different Way (7552ms)\nHow did John Quincy Adams die?\tone habit\t-10.199217019851435\tHow did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> what be john quincy adam know for ? -> $x: (john quincy adam, know for, $x) -> (President John Quincy Adams, was well know for, one habit) -> one habit (10134ms)\nWho invented the game bowling?\tcolor\t-3.2229992147086453\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> (color, invent, new bowling games) -> color (3648ms)\nWho invented the game bowling?\tYou?d\t-3.560047056105086\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> (You?d, have to invent, a couple more bad bowl games) -> You?d (3648ms)\nWho invented the game bowling?\tBoston College\t-5.263970818652567\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, perfect, game bowl) -> (Boston College, went a perfect 5-0 overall in, bowl games) -> Boston College (4549ms)\nWho invented the game bowling?\tSeries organizers\t-5.576033399553981\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: (the game bowling, be intend by, $x) -> (the final bowl game, is intended by, Series organizers) -> Series organizers (4287ms)\nWho invented the game bowling?\tThe Alamodome\t-6.099032442221873\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, perfect, game bowl) -> (The Alamodome, is a perfect venue for, a bowl game) -> The Alamodome (4549ms)\nWho invented the game bowling?\tthe organizers\t-6.741840298729207\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: (the game bowling, be intend by, $x) -> (the final bowl game, is intended by, the organizers) -> the organizers (4287ms)\nWho invented the game bowling?\ta former USC player\t-7.0070200853630755\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, actually play, game bowl) -> (a former USC player, actually played in, a Rose Bowl game) -> a former USC player (4788ms)\nWho invented the game bowling?\tDave Bauer\t-7.204829803241422\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, perfect, game bowl) -> (Dave Bauer, was perfecting, his bowling game) -> Dave Bauer (4549ms)\nWho invented the game bowling?\tTempe\t-7.515827965393663\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, perfect, game bowl) -> (Tempe, is the perfect place for, a college bowl game) -> Tempe (4549ms)\nWho invented the game bowling?\tThe goal\t-7.681475846001355\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, to be create, game bowl) -> (The goal, would be to create, top-tier bowl games) -> The goal (4765ms)\nWho invented the game bowling?\tBaylor\t-8.408443388354721\tWho invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, first make, game bowl) -> (Baylor, made its first trip to, a bowl game) -> Baylor (4416ms)\nWho invented the game bowling?\tThe Orange\t-9.636733825161215\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> (The Orange, were invited to play in, the second Rose Bowl Game) -> The Orange (5871ms)\nWho invented the game bowling?\tthe University\t-9.746435795846143\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> (the University, was invited to participate in, the bowl game) -> the University (5872ms)\nWho invented the game bowling?\tany home or office\t-10.381511763816647\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who be the game bowl invent ? -> $x: (the game bowl, invent, $x) -> $x: (the game bowl, perfect, $x) -> (The Desktop Bowling game, is perfect for, any home or office) -> any home or office (6310ms)\nWho invented the game bowling?\tthe Cardinal\t-11.108564533610116\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (the Cardinal, was invited to, a BCS bowl game) -> the Cardinal (8535ms)\nWho invented the game bowling?\ttourism\t-11.118138483721605\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who be the game bowl invent ? -> $x: (the game bowl, invent, $x) -> $x: (the game bowl, to be create, $x) -> (the two bowl games, is to create, tourism) -> tourism (6059ms)\nWho invented the game bowling?\tfootball teams\t-11.230948269172883\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (football teams, are invited to, bowl games) -> football teams (8535ms)\nWho invented the game bowling?\tthe AP Poll\t-11.72837609562964\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who be invent the game bowl ? -> $x: ($x, be invent, the game bowl) -> $x: ($x, be be release, the game bowl) -> (the AP Poll, was released after, the bowl games) -> the AP Poll (9889ms)\nWho invented the game bowling?\tan intricate design\t-11.789510362996936\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who be invent the game bowl ? -> $x: ($x, be invent, the game bowl) -> $x: ($x, be be create, the game bowl) -> (an intricate design, was created for, the championship bowl game) -> an intricate design (10101ms)\nWho invented the game bowling?\tPenn State\t-11.862458514602672\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (Penn State, was invited to play in, major Bowl games) -> Penn State (8535ms)\nWho invented the game bowling?\tthe Illinois football team\t-11.864000386441061\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (the Illinois football team, might get invited to, a bowl game) -> the Illinois football team (8535ms)\nWho invented the game bowling?\tRice\t-11.876464493675543\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (Rice, was invited to, a bowl game) -> Rice (8535ms)\nWho invented the game bowling?\tPK Michael Cklamovski\t-11.965465723013837\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who be invent the game bowl ? -> $x: ($x, be invent, the game bowl) -> $x: ($x, be concerned, the game bowl) -> (PK Michael Cklamovski, is a concern in, the bowl game) -> PK Michael Cklamovski (10237ms)\nWho invented the game bowling?\tCentre and TCU\t-12.485745570870417\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who be the game bowl invent ? -> $x: (the game bowl, invent, $x) -> $x: (game bowl, invent, $x) -> $x: (game bowl, by play, $x) -> (One-shot bowl game, is played by, Centre and TCU) -> Centre and TCU (8584ms)\nWho invented the game bowling?\tNavy\t-12.56565868838453\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (Navy, has now been invited to, 5 consecutive bowl games) -> Navy (8535ms)\nWho invented the game bowling?\tnumerous\t-12.673310551463342\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (numerous, invites to, bowl games) -> numerous (8584ms)\nWho invented the game bowling?\tp.s\t-12.821455004499997\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (p.s, think of, the Extremely Bowl) -> p.s (10665ms)\nWho invented the game bowling?\tBob\t-12.824246827727563\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (Bob, often thinks of, his bowling ball) -> Bob (10664ms)\nWho invented the game bowling?\tI?ve\t-12.893631123896304\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (I?ve, thought of, bowl games) -> I?ve (10664ms)\nWho invented the game bowling?\tteams\t-12.897727319298962\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (teams, are invited to play in, various bowl games) -> teams (8584ms)\nWho invented the game bowling?\tBert and Nan\t-13.074410779668288\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (Bert and Nan, were thinking of, the sugar bowl and pitcher) -> Bert and Nan (10664ms)\nWho invented the game bowling?\tnot everybody\t-13.210202704395236\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (not everybody, thinks highly of, bowling) -> not everybody (10664ms)\nWho invented the game bowling?\tdeviantART Details\t-13.287810096806599\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (deviantART Details, think of, my Metal bowl) -> deviantART Details (10664ms)\nWho invented the game bowling?\ta cell\t-13.322358356194982\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (a cell, can be thought of as, a bowl) -> a cell (10665ms)\nWho invented the game bowling?\tthe sidelines\t-13.35853099334424\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who be invent the game bowl ? -> $x: ($x, be invent, the game bowl) -> $x: ($x, even start, the game bowl) -> (the sidelines, even started in, the bowl game) -> the sidelines (10177ms)\nWho invented the game bowling?\t53.5 Everyone\t-13.361067504295427\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (53.5 Everyone, thinks of, the Super Bowl) -> 53.5 Everyone (10664ms)\nWho invented the game bowling?\tthe teams\t-13.406328260780656\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (the teams, are routinely invited to, bowl games) -> the teams (8584ms)\nWho invented the game bowling?\tHot peppers\t-13.500082141716371\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (Hot peppers, make one think of, bowls) -> Hot peppers (10721ms)\nWho invented the game bowling?\tTN\t-13.53096446654356\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (TN, Once thought of as, a Super Bowl contender) -> TN (10721ms)\nWho invented the game bowling?\tBuffalo\t-13.54607241929649\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (Buffalo, has been invited to, one bowl game) -> Buffalo (8584ms)\nWho invented the game bowling?\tNJ\t-13.551365585407511\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (NJ, Once thought of as, a Super Bowl contender) -> NJ (10721ms)\nWho invented the game bowling?\tErik Anstine\t-13.553853549067629\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (Erik Anstine, thinks of, a bowling name) -> Erik Anstine (10721ms)\nWho invented the game bowling?\ttreatments\t-13.653273612501714\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (treatments, Does the thought of, a big bowl) -> treatments (10721ms)\nWho invented the game bowling?\tthe school\t-13.66359211937538\tWho invented the game bowling? -> who invent [ the game bowl ] ? -> who be the game bowl invent ? -> $x: (the game bowl, invent, $x) -> $x: (game bowl, invent, $x) -> $x: (game bowl, by play, $x) -> (Sixteen bowl games, have been played by, the school) -> the school (8584ms)\nWho invented the game bowling?\tguys\t-13.673312876973299\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (guys, think the impact of, a Crossfit Super Bowl commercial) -> guys (10721ms)\nWho invented the game bowling?\tthe experts\t-14.663874448067851\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (the experts, think of, this year?s Super Bowl commercials) -> the experts (10721ms)\nWho invented the game bowling?\tthe final Seinfeld episode\t-14.789065468574101\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (the final Seinfeld episode, can be thought of as, the Super Bowl) -> the final Seinfeld episode (10721ms)\nWho invented the game bowling?\tthe only one\t-14.794584112680253\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (the only one, thought of, the 1982 Cotton Bowl) -> the only one (10767ms)\nWho invented the game bowling?\tthe place?s name\t-14.991760209834947\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (the place?s name, makes one think of, bowling) -> the place?s name (10767ms)\nWho invented the game bowling?\tThe club\t-15.0468397737076\tWho invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (The club, is thinking of setting up, a bowling lawn) -> The club (10767ms)\nWhat do penguins eat?\ttwenty-five species\t-1.879816032475612\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (The penguin, is known to eat, twenty-five species) -> twenty-five species (11222ms)\nWhat do penguins eat?\tsnow and ice\t-1.9732582082293668\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the Antarctic penguins, eat, snow and ice) -> snow and ice (11222ms)\nWhat do penguins eat?\tMr. Popper?s goldfish\t-2.052980108497914\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin Captain Cook, eats, Mr. Popper?s goldfish) -> Mr. Popper?s goldfish (11222ms)\nWhat do penguins eat?\ta banana\t-2.096440872758434\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a banana) -> a banana (11222ms)\nWhat do penguins eat?\ta shark\t-2.170475368715964\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the Penguin, was eaten by, a shark) -> a shark (11222ms)\nWhat do penguins eat?\tthe V&A Waterfront\t-2.189658291102125\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat along, the V&A Waterfront) -> the V&A Waterfront (11222ms)\nWhat do penguins eat?\tan Apple ??\t-2.1909347292962247\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eat, an Apple ??) -> an Apple ?? (11343ms)\nWhat do penguins eat?\tan ice cream cone\t-2.2274305707516984\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, came back eating, an ice cream cone) -> an ice cream cone (11344ms)\nWhat do penguins eat?\tan Orca or other sea mammal\t-2.2418210054968144\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, has been eaten by, an Orca or other sea mammal) -> an Orca or other sea mammal (11343ms)\nWhat do penguins eat?\tPatrick?s head\t-2.2643230965262546\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, was eating, Patrick?s head) -> Patrick?s head (11344ms)\nWhat do penguins eat?\ta tub\t-2.323432903942467\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a tub) -> a tub (11343ms)\nWhat do penguins eat?\tkrill and surface fish\t-2.3464542335282186\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Most penguins, eat, krill and surface fish) -> krill and surface fish (11343ms)\nWhat do penguins eat?\t9 fish\t-2.3806186700203904\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Six penguins, can eat, 9 fish) -> 9 fish (11359ms)\nWhat do penguins eat?\tone pound\t-2.4074694376531385\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (A penguin, may eat up to, one pound) -> one pound (11360ms)\nWhat do penguins eat?\tdelicious treats\t-2.465107578314278\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (polar bears , seals and penguins, eat, delicious treats) -> delicious treats (11360ms)\nWhat do penguins eat?\ta wider variety\t-2.4894255552076867\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Chinstrap penguins, will eat, a wider variety) -> a wider variety (11360ms)\nWhat do penguins eat?\tsmall fish\t-2.538030074603715\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (King penguins, eat, small fish) -> small fish (11360ms)\nWhat do penguins eat?\tPanda\t-2.5751934975177617\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Penguin, eats, Panda) -> Panda (11382ms)\nWhat do penguins eat?\tseven fish\t-2.645201541550308\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, eat five to, seven fish) -> seven fish (11382ms)\nWhat do penguins eat?\tsmall amounts\t-2.6585439976703418\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (King penguins, mainly eat fish with, small amounts) -> small amounts (11382ms)\nWhat do penguins eat?\tleopard seals\t-2.7557908327766\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, may be eaten by, leopard seals) -> leopard seals (11383ms)\nWhat do penguins eat?\tfish and squid\t-2.770615361953876\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eats, fish and squid) -> fish and squid (11383ms)\nWhat do penguins eat?\ta fish\t-2.8347578993974185\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a fish) -> a fish (11399ms)\nWhat do penguins eat?\tfish and krill\t-2.918967829107113\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish and krill) -> fish and krill (11399ms)\nWhat do penguins eat?\ta turtle\t-2.9596910189087637\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, can eat, a turtle) -> a turtle (11399ms)\nWhat do penguins eat?\tfish , squid , and krill\t-3.011570364482954\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish , squid , and krill) -> fish , squid , and krill (11399ms)\nWhat do penguins eat?\tany given month\t-3.032924259432889\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (How many penguins, will eat in, any given month) -> any given month (11399ms)\nWhat do penguins eat?\tas much as they can\t-3.4866170520819306\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat, as much as they can) -> as much as they can (11465ms)\nWhat do penguins eat?\tmostly small fish\t-3.6076571008693588\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Galapagos penguins, eat, mostly small fish) -> mostly small fish (11503ms)\nWhat do penguins eat?\tfish\t-3.8454729720441554\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish) -> fish (11548ms)\nWhat do penguins eat?\tthe local fish\t-3.8542867293703207\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, must eat, the local fish) -> the local fish (11554ms)\nWhat do penguins eat?\tsardines\t-3.868388950203731\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (These penguins, eat, sardines) -> sardines (11555ms)\nWhat do penguins eat?\tthe Apple\t-3.878080021090935\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (The penguin, ate, the Apple) -> the Apple (11610ms)\nWhat do penguins eat?\tapples\t-3.9228601940482157\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (A snowboarding penguin, eats, apples) -> apples (11708ms)\nWhat do penguins eat?\tlunch\t-3.9432181119747973\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat for, lunch) -> lunch (11708ms)\nWhat do penguins eat?\tkrill\t-3.952662534428769\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, krill) -> krill (11708ms)\nWhat do penguins eat?\tfishes\t-4.0178440717133155\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (afrv3 Big penguins, have eaten, fishes) -> fishes (11708ms)\nWhat do penguins eat?\tthe absence\t-4.031590533838761\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat in, the absence) -> the absence (11750ms)\nWhat do penguins eat?\tbreakfast\t-4.054670222412299\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eat for, breakfast) -> breakfast (11750ms)\nWhat do penguins eat?\tthe poor halibut\t-4.068922296633531\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, are gonna eat, the poor halibut) -> the poor halibut (11751ms)\nWhat do penguins eat?\tthe wife\t-4.0902966249988975\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, eat, the wife) -> the wife (11771ms)\nWhat do penguins eat?\tSidney Crosby\t-4.097235775952878\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, play the game, $x) -> (the Penguins, played the game without, Sidney Crosby) -> Sidney Crosby (11770ms)\nWhat do penguins eat?\tcrustaceans\t-4.101468113268407\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Emperor Penguins, mainly eat, crustaceans) -> crustaceans (11770ms)\nWhat do penguins eat?\tthe same basic foods\t-4.106271663586992\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (a less-efficient penguin, probably ate, the same basic foods) -> the same basic foods (11770ms)\nWhat do penguins eat?\tthe leopard seals\t-4.137085047453682\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the adult penguins, were eaten by, the leopard seals) -> the leopard seals (11770ms)\nWhat do penguins eat?\tthe ocean\t-4.204327110141562\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, only eat in, the ocean) -> the ocean (11790ms)\nWhat do penguins eat?\tthe llamas\t-4.207040317594273\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (My penguins, are eating, the llamas) -> the llamas (11790ms)\nWhat do penguins eat?\tthe camera\t-4.2264945211573295\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, kept trying to eat, the camera) -> the camera (11790ms)\nWhat do penguins eat?\tAntarctica\t-4.537354362460615\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (penguin, actually live in, Antarctica) -> Antarctica (11970ms)\nWhat do penguins eat?\tStaal back today\t-4.569469619337094\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (the Penguins, should be excited to get, Staal back today) -> Staal back today (11852ms)\nWhat do penguins eat?\tworms\t-4.624392677802755\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the little blue penguin, eat, worms) -> worms (11970ms)\nWhat do penguins eat?\tpiranhas\t-4.723924475964206\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, ate meat of, piranhas) -> piranhas (12014ms)\nWhat do penguins eat?\ta lead\t-4.751552943919967\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, find they, $x) -> (The Penguins, maybe they?ll find a way to hold, a lead) -> a lead (12014ms)\nWhat do penguins eat?\tPenguin USA\t-4.768724834377071\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (Penguin 2.0, is the very exciting website of, Penguin USA) -> Penguin USA (12014ms)\nWhat do penguins eat?\tthe snow\t-4.936818161412075\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat, the snow) -> the snow (12033ms)\nWhat do penguins eat?\tthe krill\t-4.939206832408897\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, eat, the krill) -> the krill (12033ms)\nWhat do penguins eat?\tcrazy penguins\t-5.053290345905257\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, have fun, $x) -> (Crazy Penguin Party, Have some fun together with, crazy penguins) -> crazy penguins (12058ms)\nWhat do penguins eat?\ta Monday\t-5.090282173032863\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, have fun, $x) -> (Penguin, Have fun on, a Monday) -> a Monday (12058ms)\nWhat do penguins eat?\ttrue lovers\t-5.115115258602573\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (the Penguin Threads, is an exciting new series for, true lovers) -> true lovers (12076ms)\nWhat do penguins eat?\tthemselves\t-5.208849603075105\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do something, $x) -> (The penguins, need to do something to protect, themselves) -> themselves (12094ms)\nWhat do penguins eat?\tsnow\t-5.290024886549944\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, snow) -> snow (12103ms)\nWhat do penguins eat?\tfood\t-5.4149162329218825\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, eat, food) -> food (12133ms)\nWhat do penguins eat?\thumans\t-5.4597284615114425\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do thing, $x) -> (2010 Websites Penguins, much do the same things as, humans) -> humans (12145ms)\nWhat do penguins eat?\tthe years\t-5.544943962950373\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do thing, $x) -> (the Penguins, have done amazing things over, the years) -> the years (12156ms)\nWhat do penguins eat?\tthe animators\t-5.6197383778175904\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do anything, $x) -> (my little penguin, did n?t look anything like, the animators) -> the animators (12156ms)\nWhat do penguins eat?\tthe anonymity\t-5.926103356909502\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do something, $x) -> (?penguin?, have something to do with, the anonymity) -> the anonymity (12185ms)\nWhat do penguins eat?\tusually\t-6.186903675812421\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, like a swim after they eat, usually) -> usually (12194ms)\nWhat do penguins eat?\tthe same sex\t-6.35013947279956\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (penguin, actually live at almost, the same sex) -> the same sex (12224ms)\nWhat do penguins eat?\tairplanes\t-6.369350197373375\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be fascinate, $x) -> (the local penguins, are fascinated by, airplanes) -> airplanes (12233ms)\nWhat do penguins eat?\tthe southern hemisphere\t-6.4093011975084595\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (Penguins, actually live in, the southern hemisphere) -> the southern hemisphere (12233ms)\nWhat do penguins eat?\tthe hot sauces\t-6.434138287651929\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, get one, $x) -> (the penguin, then get one of, the hot sauces) -> the hot sauces (12233ms)\nWhat do penguins eat?\tthe hot lights\t-6.484457990242978\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, get sick, $x) -> (the penguins, got sick under, the hot lights) -> the hot lights (12245ms)\nWhat do penguins eat?\tthe new ideas\t-6.52329815078692\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (the penguins, were excited by, the new ideas) -> the new ideas (12256ms)\nWhat do penguins eat?\tthe mes\t-6.603675777887547\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, get one, $x) -> (The Penguins, were apparently the only ones to get, the mes) -> the mes (12268ms)\nWhat do penguins eat?\tthe winbers\t-6.912284087160978\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (Penguins, must have been very excited for, the winbers) -> the winbers (12291ms)\nWhat do penguins eat?\tcollectively\t-7.1361161694828725\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, have fun, $x) -> (the penguins, have fun with, collectively) -> collectively (12299ms)\nWhat do penguins eat?\tdeath\t-7.2962007812488965\tWhat do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be starve, $x) -> (Whales and penguins, are literally starving to, death) -> death (12299ms)\nWhat do penguins eat?\tApple's\t-11.367202981248914\tWhat do penguins eat? -> what [ do penguin ] eat ? -> what o do penguin eat ? -> $x: ($x, instance of, o) (penguin, eat, $x) -> (Apple's, Instance Of, OS) (A snowboarding penguin, eats, apples) -> Apple's (15817ms)\nWhat do penguins eat?\tcrustacean s\t-11.493653502610421\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what animal do penguin eat ? -> $x: ($x, instance of, animal) (penguin, eat, $x) -> (crustacean s, Instance Of, animal) (Emperor Penguins, mainly eat, crustaceans) -> crustacean s (18109ms)\nWhat do penguins eat?\tApple OSX\t-11.497072291871902\tWhat do penguins eat? -> what [ do penguin ] eat ? -> what o do penguin eat ? -> $x: ($x, instance of, o) (penguin, eat, $x) -> (Apple OSX, Instance Of, OS) (A snowboarding penguin, eats, apples) -> Apple OSX (15817ms)\nWhat do penguins eat?\tFish\t-11.508248898829326\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (Fish, Instance Of, food) (penguins, eat, fish) -> Fish (18109ms)\nWhat do penguins eat?\tfish's\t-11.590682945599312\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what animal do penguin eat ? -> $x: ($x, instance of, animal) (penguin, eat, $x) -> (fish's, Instance Of, animal) (afrv3 Big penguins, have eaten, fishes) -> fish's (18375ms)\nWhat do penguins eat?\tsmall feeder fish\t-11.639194446864455\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (small feeder fish, Instance Of, food) (King penguins, eat, small fish) -> small feeder fish (18375ms)\nWhat do penguins eat?\tsmall bait fish\t-11.748655754833697\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (small bait fish, Instance Of, food) (King penguins, eat, small fish) -> small bait fish (18622ms)\nWhat do penguins eat?\tSardines\t-12.133536649985812\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (Sardines, Instance Of, food) (These penguins, eat, sardines) -> Sardines (18787ms)\nWhat do penguins eat?\tKrill\t-12.144557197336564\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (Krill, Instance Of, food) (Penguins, eat, krill) -> Krill (18787ms)\nWhat do penguins eat?\tBreakfast Club\t-12.684149778540098\tWhat do penguins eat? -> what [ do penguin ] eat ? -> what doe do penguin eat ? -> $x: ($x, instance of, doe) (penguin, eat, $x) -> (Breakfast Club, Instance Of, DOE group) (a penguin, eat for, breakfast) -> Breakfast Club (18947ms)\nWhat do penguins eat?\tFISH\t-12.768486414107574\tWhat do penguins eat? -> what [ do penguin ] eat ? -> what o do penguin eat ? -> $x: ($x, instance of, o) (penguin, eat, $x) -> (FISH, Instance Of, O. stentina using cytogenetic approach) (penguins, eat, fish) -> FISH (19000ms)\nWhat do penguins eat?\tsardine\t-13.106809581623871\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (sardine, Instance Of, food) (These penguins, eat, sardines) -> sardine (19105ms)\nWhat do penguins eat?\tapple\t-13.214525884827962\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what plant do penguin eat ? -> $x: ($x, instance of, plant) (penguin, eat, $x) -> (apple, Instance Of, plant) (A snowboarding penguin, eats, apples) -> apple (19348ms)\nWhat do penguins eat?\tworm\t-13.31309023438164\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what insect do penguin eat ? -> $x: ($x, instance of, insect) (penguin, eat, $x) -> (worm, Instance Of, insect) (the little blue penguin, eat, worms) -> worm (19458ms)\nWhat do penguins eat?\tcrustacean\t-13.428090145519253\tWhat do penguins eat? -> what do [ penguin ] eat ? -> what animal do penguin eat ? -> $x: ($x, instance of, animal) (penguin, eat, $x) -> (crustacean, Instance Of, animal) (Emperor Penguins, mainly eat, crustaceans) -> crustacean (19509ms)\nWhat do penguins eat?\tFood\t-13.480134188947048\tWhat do penguins eat? -> what [ do penguin ] eat ? -> what o do penguin eat ? -> $x: ($x, instance of, o) (penguin, eat, $x) -> (Food, Instance Of, friend o) (The penguins, eat, food) -> Food (19509ms)\nHow many non-permanent members are in the Security Council?\tSri Lanka\t-1.5379237521036204\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Sri Lanka, Instance Of, non-permanent member) (Sri Lanka, will be listed in, the Security Council) -> Sri Lanka (1496ms)\nHow many non-permanent members are in the Security Council?\tSyria\t-1.9868836842743227\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Syria, Instance Of, non-permanent member) (Syria, cannot be considered in, the Security Council) -> Syria (1496ms)\nHow many non-permanent members are in the Security Council?\tSouth Africa\t-2.0560186112265213\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (South Africa, Instance Of, non-permanent council member) (South Africa, was taking its positions in, the Security Council) -> South Africa (1496ms)\nHow many non-permanent members are in the Security Council?\tIndia\t-2.120789769106347\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (India, Instance Of, non-permanent member) (India, should be represented in, the Security Council) -> India (1815ms)\nHow many non-permanent members are in the Security Council?\tSingapore\t-2.137288598192443\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Singapore, Instance Of, non-permanent member) (Singapore, was the only country in, the Security Council) -> Singapore (1815ms)\nHow many non-permanent members are in the Security Council?\tAustria\t-2.297328392180426\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Austria, Instance Of, council's non-permanent member) (Austria, is represented in, the Security Council) -> Austria (1871ms)\nHow many non-permanent members are in the Security Council?\tBrazil\t-2.3754422493762344\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Brazil, Instance Of, non-permanent UN security council member) (Brazil, are seeking permanent seats in, the UN Security Council) -> Brazil (1912ms)\nHow many non-permanent members are in the Security Council?\tGermany\t-3.9178687624000026\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Germany, Instance Of, non-permanent member) (Germany, abstained in, the Security Council vote) -> Germany (2325ms)\nHow many non-permanent members are in the Security Council?\tIran\t-3.9254369759270267\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Iran, Instance Of, non permanent member) (Iran, tabled in, the UN Security Council) -> Iran (2325ms)\nHow many non-permanent members are in the Security Council?\tZimbabwe\t-3.991820128952078\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Zimbabwe, Instance Of, non-permanent member) (Zimbabwe, belongs in, the Security Council) -> Zimbabwe (2452ms)\nHow many non-permanent members are in the Security Council?\tQatar\t-4.145205181856678\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Qatar, Instance Of, non-permanent member) (Qatar, can vote in, the security council) -> Qatar (2529ms)\nHow many non-permanent members are in the Security Council?\tLebanon\t-4.1745541406137265\tHow many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Lebanon, Instance Of, non-permanent member) (Lebanon, has led efforts in, the Security Council) -> Lebanon (2621ms)\nWhat is Ursa Major?\twell-known constellation\t-1.8004875097544475\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, well-known constellation) -> well-known constellation (5980ms)\nWhat is Ursa Major?\tseven-star constellation\t-1.969821718222199\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, seven-star constellation) -> seven-star constellation (5980ms)\nWhat is Ursa Major?\teasy-to-find constellation\t-2.2895924242246073\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, easy-to-find constellation) -> easy-to-find constellation (5980ms)\nWhat is Ursa Major?\tgood starting point\t-2.358162689384028\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, good starting point) -> good starting point (5981ms)\nWhat is Ursa Major?\tCanadian public company\t-2.359922429234964\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canadian public company) -> Canadian public company (5980ms)\nWhat is Ursa Major?\tRegular School\t-2.366246929575226\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Elementary School, Instance Of, Regular School) -> Regular School (6135ms)\nWhat is Ursa Major?\tCanadian mining company\t-2.3710553334371363\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canadian mining company) -> Canadian mining company (6135ms)\nWhat is Ursa Major?\textreme northern constellation\t-2.3968633205221783\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, extreme northern constellation) -> extreme northern constellation (6136ms)\nWhat is Ursa Major?\tconstellation's name\t-2.399109054887078\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation's name) -> constellation's name (6135ms)\nWhat is Ursa Major?\tconstellation of star\t-2.421857346242197\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation of star) -> constellation of star (6135ms)\nWhat is Ursa Major?\tothers popular constellation\t-2.437635689078485\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, others popular constellation) -> others popular constellation (6163ms)\nWhat is Ursa Major?\tfancy latin name\t-2.441401982475627\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, fancy latin name) -> fancy latin name (6163ms)\nWhat is Ursa Major?\tprominent northern constellation\t-2.441401982475627\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, prominent northern constellation) -> prominent northern constellation (6163ms)\nWhat is Ursa Major?\tsmall eclectic gallery\t-2.441401982475627\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Gallery, Instance Of, small eclectic gallery) -> small eclectic gallery (6163ms)\nWhat is Ursa Major?\tbright large constellation\t-2.441401982475627\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bright large constellation) -> bright large constellation (6163ms)\nWhat is Ursa Major?\tplace of kind School\t-2.4505227413227635\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major School, Instance Of, place of kind School) -> place of kind School (6182ms)\nWhat is Ursa Major?\tpretty cool character\t-2.456972949697721\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, pretty cool character) -> pretty cool character (6182ms)\nWhat is Ursa Major?\tlarge and sprawling constellation\t-2.47203145873132\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large and sprawling constellation) -> large and sprawling constellation (6182ms)\nWhat is Ursa Major?\tprovider of value-added service\t-2.4775151466761995\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major International, Instance Of, provider of value-added service) -> provider of value-added service (6182ms)\nWhat is Ursa Major?\tconstellation in the sky\t-2.4895069719906626\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation in the sky) -> constellation in the sky (6199ms)\nWhat is Ursa Major?\tconstellation for the ceiling\t-2.4895069719906626\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation for the ceiling) -> constellation for the ceiling (6182ms)\nWhat is Ursa Major?\tclassic North Sea Trawler\t-2.4895069719906626\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA MAJOR'S, Instance Of, classic North Sea Trawler) -> classic North Sea Trawler (6182ms)\nWhat is Ursa Major?\tTSX-listed Canadian public company\t-2.504944049526289\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, TSX-listed Canadian public company) -> TSX-listed Canadian public company (6199ms)\nWhat is Ursa Major?\tcircumpolar constellation\t-2.51783803828278\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, circumpolar constellation) -> circumpolar constellation (6199ms)\nWhat is Ursa Major?\tprominent constellation\t-2.5204702430178862\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, prominent constellation) -> prominent constellation (6199ms)\nWhat is Ursa Major?\tlarge and reasonably bright constellation\t-2.521993830880578\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large and reasonably bright constellation) -> large and reasonably bright constellation (6199ms)\nWhat is Ursa Major?\tconstellation from the northern sky\t-2.521993830880578\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation from the northern sky) -> constellation from the northern sky (6199ms)\nWhat is Ursa Major?\tsign of the greatness and infinity of bear wisdom\t-2.528150653701018\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, sign of the greatness and infinity of bear wisdom) -> sign of the greatness and infinity of bear wisdom (6216ms)\nWhat is Ursa Major?\tcluster of star\t-2.529216438025194\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Great Bear, Ursa Major, Instance Of, cluster of star) -> cluster of star (6216ms)\nWhat is Ursa Major?\tcorrespondent of BOLLYWOOD FANTASTIC trademark\t-2.5494827114797376\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA MAJOR MEDIA INCORPORATED, Instance Of, correspondent of BOLLYWOOD FANTASTIC trademark) -> correspondent of BOLLYWOOD FANTASTIC trademark (6216ms)\nWhat is Ursa Major?\tspiral-rich galaxy cluster of the Virgo Supercluster\t-2.5494827114797376\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Cluster, Instance Of, spiral-rich galaxy cluster of the Virgo Supercluster) -> spiral-rich galaxy cluster of the Virgo Supercluster (6216ms)\nWhat is Ursa Major?\tcrossword puzzle clue\t-2.5545885159798054\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Constellation near Ursa Major, Instance Of, crossword puzzle clue) -> crossword puzzle clue (6216ms)\nWhat is Ursa Major?\tCanada-based company\t-2.558641816610103\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canada-based company) -> Canada-based company (6216ms)\nWhat is Ursa Major?\twoman-owned small business\t-2.5619118546462136\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Consulting, LLC, Instance Of, woman-owned small business) -> woman-owned small business (6237ms)\nWhat is Ursa Major?\tconstellation up close and personal\t-2.5631214929185786\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation up close and personal) -> constellation up close and personal (6237ms)\nWhat is Ursa Major?\tWinter & Fall & Spirng and Summer Season Constellation\t-2.593464920438393\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, Winter & Fall & Spirng and Summer Season Constellation) -> Winter & Fall & Spirng and Summer Season Constellation (6237ms)\nWhat is Ursa Major?\tCanadian mining and exploration company\t-2.611174204536738\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals, Instance Of, Canadian mining and exploration company) -> Canadian mining and exploration company (6237ms)\nWhat is Ursa Major?\tmineral exploration and development company\t-2.6140683711314807\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, mineral exploration and development company) -> mineral exploration and development company (6237ms)\nWhat is Ursa Major?\tLatin name\t-2.6252110641260575\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, Latin name) -> Latin name (6237ms)\nWhat is Ursa Major?\tnorthern constellation\t-2.641396861848917\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, northern constellation) -> northern constellation (6254ms)\nWhat is Ursa Major?\tlarge constellation\t-2.643459262669773\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large constellation) -> large constellation (6254ms)\nWhat is Ursa Major?\tbright constellation\t-2.651684795812793\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bright constellation) -> bright constellation (6254ms)\nWhat is Ursa Major?\tstar pattern\t-2.6571684837576734\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star pattern) -> star pattern (6254ms)\nWhat is Ursa Major?\tcustom design\t-2.6572212574114635\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, custom design) -> custom design (6254ms)\nWhat is Ursa Major?\thuge disappointment\t-2.669226859289079\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, huge disappointment) -> huge disappointment (6270ms)\nWhat is Ursa Major?\tcommon constellation\t-2.6888935865322967\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, common constellation) -> common constellation (6271ms)\nWhat is Ursa Major?\tola constellation\t-2.6929154796231476\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, ola constellation) -> ola constellation (6271ms)\nWhat is Ursa Major?\tkey constellation\t-2.709366544683488\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, key constellation) -> key constellation (6271ms)\nWhat is Ursa Major?\tset of 220 star\t-2.710731784788501\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Group, Instance Of, set of 220 star) -> set of 220 star (6271ms)\nWhat is Ursa Major?\tmythology name\t-2.715150309302927\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, mythology name) -> mythology name (6286ms)\nWhat is Ursa Major?\tspectacular constellation\t-2.71550560278462\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, spectacular constellation) -> spectacular constellation (6286ms)\nWhat is Ursa Major?\tfan favorite\t-2.715957168285178\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, fan favorite) -> fan favorite (6286ms)\nWhat is Ursa Major?\tPublic school\t-2.72312766686637\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Elementary School, Instance Of, Public school) -> Public school (6286ms)\nWhat is Ursa Major?\tprivate company\t-2.7560111345539315\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Constellation, Instance Of, private company) -> private company (6286ms)\nWhat is Ursa Major?\tpolar constellation\t-2.7600442647380694\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, polar constellation) -> polar constellation (6370ms)\nWhat is Ursa Major?\tinteresting constellation\t-2.7600442647380694\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, interesting constellation) -> interesting constellation (6370ms)\nWhat is Ursa Major?\tnortherly constellation\t-2.7600442647380694\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, northerly constellation) -> northerly constellation (6387ms)\nWhat is Ursa Major?\tbear constellation\t-2.7600442647380694\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bear constellation) -> bear constellation (6370ms)\nWhat is Ursa Major?\tbeautiful constellation\t-2.7600442647380694\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, beautiful constellation) -> beautiful constellation (6286ms)\nWhat is Ursa Major?\tastral constellation\t-2.7600442647380694\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, astral constellation) -> astral constellation (6369ms)\nWhat is Ursa Major?\tamazing constellation\t-2.7600442647380694\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, amazing constellation) -> amazing constellation (6370ms)\nWhat is Ursa Major?\tstar constellation\t-2.7687027199684744\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star constellation) -> star constellation (6385ms)\nWhat is Ursa Major?\tspring constellation\t-2.7764953297984087\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, spring constellation) -> spring constellation (6385ms)\nWhat is Ursa Major?\tpopular constellation\t-2.7776704057865977\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, popular constellation) -> popular constellation (6385ms)\nWhat is Ursa Major?\twinter constellation\t-2.7847208629414286\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, winter constellation) -> winter constellation (6401ms)\nWhat is Ursa Major?\tcool design\t-2.788559443522285\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, cool design) -> cool design (6401ms)\nWhat is Ursa Major?\tfamous constellation\t-2.7920324468679354\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, famous constellation) -> famous constellation (6401ms)\nWhat is Ursa Major?\tfamous group\t-2.7935556927021583\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, famous group) -> famous group (6401ms)\nWhat is Ursa Major?\tprofit group\t-2.8011719267760693\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, profit group) -> profit group (6401ms)\nWhat is Ursa Major?\tgood place\t-2.8017357585094977\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, good place) -> good place (6401ms)\nWhat is Ursa Major?\texcellent tool\t-2.8392166724497647\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major MSP-126, Instance Of, excellent tool) -> excellent tool (6418ms)\nWhat is Ursa Major?\tadministration company\t-2.848819319814613\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Investments, Instance Of, administration company) -> administration company (6417ms)\nWhat is Ursa Major?\tdouble star\t-2.891432460396806\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Mizar in Ursa Major, Instance Of, double star) -> double star (6433ms)\nWhat is Ursa Major?\tstar and constellation\t-3.1553381019957687\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star and constellation) -> star and constellation (6433ms)\nWhat is Ursa Major?\tNorth Polar constellation\t-3.19521680781573\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, North Polar constellation) -> North Polar constellation (6433ms)\nWhat is Ursa Major?\tconstellation\t-4.366234301479\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation) -> constellation (6601ms)\nWhat is Ursa Major?\talbum\t-4.835553847147453\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, album) -> album (6616ms)\nWhat is Ursa Major?\tdesign\t-4.841463570506495\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, design) -> design (6616ms)\nWhat is Ursa Major?\tbeauty\t-4.945775024210227\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, beauty) -> beauty (6616ms)\nWhat is Ursa Major?\tpattern\t-4.950442160725227\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, pattern) -> pattern (6626ms)\nWhat is Ursa Major?\tboat\t-4.952573441932019\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, boat) -> boat (6626ms)\nWhat is Ursa Major?\tdegree\t-4.9572423630659905\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, degree) -> degree (6626ms)\nWhat is Ursa Major?\tclub\t-4.959930026202566\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, club) -> club (6626ms)\nWhat is Ursa Major?\tfigure\t-4.9631768388991695\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, figure) -> figure (6626ms)\nWhat is Ursa Major?\tgroup\t-4.965671442053457\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, group) -> group (6626ms)\nWhat is Ursa Major?\tcompany\t-4.981640143971839\tWhat is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, company) -> company (6637ms)\nWhat is Ursa Major?\ta woman\t-7.960787425813683\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, a woman) -> a woman (8569ms)\nWhat is Ursa Major?\tEl Alcola\t-8.005246808465884\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, are, El Alcola) -> El Alcola (8569ms)\nWhat is Ursa Major?\tPole Star\t-8.007597408109543\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, was, Pole Star) -> Pole Star (8569ms)\nWhat is Ursa Major?\tthe ?Big Dipper\t-8.016647086742774\tWhat is Ursa Major? -> what [ be ursa major ] ? -> what be know be ursa major ? -> $x: ($x, be know be, ursa major) -> (the ?Big Dipper, is also known as, Ursa Major) -> the ?Big Dipper (7055ms)\nWhat is Ursa Major?\ta poor man\t-8.049121103835182\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, a poor man) -> a poor man (8569ms)\nWhat is Ursa Major?\t65 feet\t-8.25154818349118\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, 65 feet) -> 65 feet (8569ms)\nWhat is Ursa Major?\tUrsa Minor\t-8.3856324719942\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Ursa Minor, is to, Ursa Major) -> Ursa Minor (8951ms)\nWhat is Ursa Major?\tWhite Lotus\t-8.386088859685948\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, White Lotus) -> White Lotus (8569ms)\nWhat is Ursa Major?\tthe Fire Falls\t-8.508840966119738\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa ? LOIS, are, the Fire Falls) -> the Fire Falls (8951ms)\nWhat is Ursa Major?\tthe Web\t-8.510464670924767\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, is accessed through, the Web) -> the Web (8951ms)\nWhat is Ursa Major?\ta tank\t-8.531076105714952\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a tank) -> a tank (8951ms)\nWhat is Ursa Major?\t?Deal\t-8.544789931114476\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is like, ?Deal) -> ?Deal (8951ms)\nWhat is Ursa Major?\tCancer ]\t-8.605477754107262\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Cancer ], is, Ursa Major) -> Cancer ] (9027ms)\nWhat is Ursa Major?\ta constellation\t-8.651707823068044\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, a constellation) -> a constellation (9027ms)\nWhat is Ursa Major?\tICU\t-8.68231952150128\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was kept in, ICU) -> ICU (9027ms)\nWhat is Ursa Major?\ta handprint\t-8.68763225616791\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is making, a handprint) -> a handprint (9027ms)\nWhat is Ursa Major?\tPSP\t-8.719083283577884\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (PSP, are the stars of, Ursa Major) -> PSP (9027ms)\nWhat is Ursa Major?\tCepheus\t-8.74049220851343\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, Cepheus) -> Cepheus (9094ms)\nWhat is Ursa Major?\ta bear\t-8.760967521328578\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a bear) -> a bear (9094ms)\nWhat is Ursa Major?\tLeo Minor\t-8.77869751051788\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, Leo Minor) -> Leo Minor (9093ms)\nWhat is Ursa Major?\tthe Big Dipper\t-8.826548981350522\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the Big Dipper) -> the Big Dipper (9094ms)\nWhat is Ursa Major?\tMs Perfect Mom\t-8.84412935590744\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, Ms Perfect Mom) -> Ms Perfect Mom (9094ms)\nWhat is Ursa Major?\tM?htyw\t-8.857402064063098\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (M?htyw, is, Ursa Major) -> M?htyw (9162ms)\nWhat is Ursa Major?\tThe Big Dipper\t-8.897284842079555\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The Big Dipper, is, Ursa Major) -> The Big Dipper (9162ms)\nWhat is Ursa Major?\ta shape-shifting kleptomaniac\t-8.913233849243769\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Ojo, is, a shape-shifting kleptomaniac) -> a shape-shifting kleptomaniac (9162ms)\nWhat is Ursa Major?\tthe Fire Nation\t-8.914687741750267\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was banished from, the Fire Nation) -> the Fire Nation (9162ms)\nWhat is Ursa Major?\ta boil-free bush\t-8.96003179280217\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was pruning, a boil-free bush) -> a boil-free bush (9190ms)\nWhat is Ursa Major?\tNGC2366\t-9.002778028813077\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, NGC2366) -> NGC2366 (9190ms)\nWhat is Ursa Major?\ta Radiant?s Agility hero\t-9.006480744492613\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a Radiant?s Agility hero) -> a Radiant?s Agility hero (9190ms)\nWhat is Ursa Major?\t4,000 feet\t-9.009349633518736\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is in, 4,000 feet) -> 4,000 feet (9190ms)\nWhat is Ursa Major?\tthe Great Bear\t-9.011785915601488\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, was, the Great Bear) -> the Great Bear (9190ms)\nWhat is Ursa Major?\tJohn Little\t-9.012695904087607\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (John Little, was called, Ursa Major) -> John Little (9191ms)\nWhat is Ursa Major?\tUrsa\t-9.013873650363653\tWhat is Ursa Major? -> what [ be ursa major ] ? -> what be know be ursa major ? -> $x: ($x, be know be, ursa major) -> $x: ($x, know, ursa major) -> (Ursa, Also known as, Ursa Major) -> Ursa (9216ms)\nWhat is Ursa Major?\ta loud yet irresistibly cute little brat\t-9.025390163181253\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a loud yet irresistibly cute little brat) -> a loud yet irresistibly cute little brat (9216ms)\nWhat is Ursa Major?\tSuperman\t-9.030462509190318\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was created for, Superman) -> Superman (9216ms)\nWhat is Ursa Major?\ta great\t-9.033439967864187\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (\" Ursa Minor, is, a great) -> a great (9216ms)\nWhat is Ursa Major?\tBruinAlert\t-9.04083921937706\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, are automatically enrolled in, BruinAlert) -> BruinAlert (9216ms)\nWhat is Ursa Major?\tCancer\t-9.060540736428997\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Cancer, is, URSA MAJOR) -> Cancer (9216ms)\nWhat is Ursa Major?\tLa Grande Ourse\t-9.062185172891532\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, La Grande Ourse) -> La Grande Ourse (9240ms)\nWhat is Ursa Major?\ta true trawler yacht\t-9.083093131983835\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (The Ursa, is, a true trawler yacht) -> a true trawler yacht (9241ms)\nWhat is Ursa Major?\tHospice care\t-9.119316941852341\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is under, Hospice care) -> Hospice care (9240ms)\nWhat is Ursa Major?\ta project\t-9.119966125543167\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was working on, a project) -> a project (9241ms)\nWhat is Ursa Major?\tTampa Bay Library Consortium\t-9.13115260811608\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, are, Tampa Bay Library Consortium) -> Tampa Bay Library Consortium (9268ms)\nWhat is Ursa Major?\tvisible smudges\t-9.137993092648488\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, were, visible smudges) -> visible smudges (9268ms)\nWhat is Ursa Major?\t130 miles\t-9.138897893011956\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is about, 130 miles) -> 130 miles (9268ms)\nWhat is Ursa Major?\tthe Assyrian name\t-9.140847883760916\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, the Assyrian name) -> the Assyrian name (9268ms)\nWhat is Ursa Major?\ta perfect twist\t-9.175727321601663\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, a perfect twist) -> a perfect twist (9446ms)\nWhat is Ursa Major?\tUCLA?s student record access system\t-9.195386280587359\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, is, UCLA?s student record access system) -> UCLA?s student record access system (9446ms)\nWhat is Ursa Major?\ta go fast sailing machine\t-9.19613642501929\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, a go fast sailing machine) -> a go fast sailing machine (9446ms)\nWhat is Ursa Major?\tUrsa Major\t-9.210339036056727\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Ursa Major, Editions, Ursa Major: A Tale of the Old South) -> Ursa Major (11124ms)\nWhat is Ursa Major?\tthe Lesser Flock\t-9.210837607377197\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, the Lesser Flock) -> the Lesser Flock (9446ms)\nWhat is Ursa Major?\tFirst Woman\t-9.235450546575414\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (First Woman, were, Ursa Major) -> First Woman (9548ms)\nWhat is Ursa Major?\ta variety\t-9.242548065428757\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, has been involved in developing, a variety) -> a variety (9548ms)\nWhat is Ursa Major?\tthe URSA Web site\t-9.261765672033578\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, are available on, the URSA Web site) -> the URSA Web site (9548ms)\nWhat is Ursa Major?\tVermont ?We\t-9.264578432659384\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Vermont ?We, are, Ursa Major) -> Vermont ?We (9548ms)\nWhat is Ursa Major?\tDraco\t-9.26965101972334\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, Draco) -> Draco (9548ms)\nWhat is Ursa Major?\tPolaris\t-9.28778391634986\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, Polaris) -> Polaris (9587ms)\nWhat is Ursa Major?\ta very mellow and sweet lady\t-9.290681066664446\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a very mellow and sweet lady) -> a very mellow and sweet lady (9586ms)\nWhat is Ursa Major?\ttwo megalithic sites\t-9.292566916492275\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are, two megalithic sites) -> two megalithic sites (9587ms)\nWhat is Ursa Major?\tCygnus\t-9.305938338972231\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Cygnus, is above, Ursa Major) -> Cygnus (9587ms)\nWhat is Ursa Major?\tlibrary consortial borrowing\t-9.30664120360212\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, has been a leader in, library consortial borrowing) -> library consortial borrowing (9586ms)\nWhat is Ursa Major?\tRockets in Ursa Major\t-9.331790089352157\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Rockets in Ursa Major, Editions, Rockets in Ursa Major) -> Rockets in Ursa Major (11124ms)\nWhat is Ursa Major?\tArtemis\t-9.357221782663373\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is also, Artemis) -> Artemis (9656ms)\nWhat is Ursa Major?\tthe Bear\t-9.358608049033712\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the Bear, is the constellation of, Ursa Major) -> the Bear (9656ms)\nWhat is Ursa Major?\tAsterisms\t-9.361578199243894\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are called, Asterisms) -> Asterisms (9656ms)\nWhat is Ursa Major?\tDubhe\t-9.363346624748383\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is called, Dubhe) -> Dubhe (9657ms)\nWhat is Ursa Major?\ta play\t-9.370169174546048\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is based on, a play) -> a play (9656ms)\nWhat is Ursa Major?\tAsteroid belt\t-9.37787655754244\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: ($x, member, ursa) -> (Asteroid belt, Asteroid Group Members, 1838 Ursa) -> Asteroid belt (10916ms)\nWhat is Ursa Major?\tUrsa Major The Greater Bear\t-9.391349330650337\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Ursa Major The Greater Bear, Editions, Ursa Major The Greater Bear) -> Ursa Major The Greater Bear (11124ms)\nWhat is Ursa Major?\t47 Ursae Majoris\t-9.394679602963055\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (47 Ursae Majoris, is in, the constellation Ursa Major) -> 47 Ursae Majoris (9681ms)\nWhat is Ursa Major?\ta fine physick\t-9.413576520229748\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a fine physick) -> a fine physick (9681ms)\nWhat is Ursa Major?\ta vague affliction\t-9.420295475339092\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is dying of, a vague affliction) -> a vague affliction (9681ms)\nWhat is Ursa Major?\tLeo\t-9.421736206602706\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Leo, is, Ursa Major) -> Leo (9681ms)\nWhat is Ursa Major?\tFawcett Crest\t-9.426192001499157\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Fawcett Crest, Book editions published, Rockets in Ursa Major) -> Fawcett Crest (11124ms)\nWhat is Ursa Major?\tfearful determination\t-9.433501282572106\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was fueled by, fearful determination) -> fearful determination (9681ms)\nWhat is Ursa Major?\ta small constellation\t-9.441172752269638\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, a small constellation) -> a small constellation (9738ms)\nWhat is Ursa Major?\tVanguards\t-9.445114392429854\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Warrior, is, Vanguards) -> Vanguards (9738ms)\nWhat is Ursa Major?\tRegulus\t-9.450062566931297\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was in, Regulus) -> Regulus (9738ms)\nWhat is Ursa Major?\ta dignified family\t-9.460232864812234\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was from, a dignified family) -> a dignified family (9738ms)\nWhat is Ursa Major?\tCallisto\t-9.461492580125181\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was originally, Callisto) -> Callisto (9764ms)\nWhat is Ursa Major?\ta lot\t-9.474909888551215\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, away has been changed to, a lot) -> a lot (9764ms)\nWhat is Ursa Major?\tRockets in Ursa Major; a novel\t-9.477980954356779\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: (ursa major, edition, $x) -> (Rockets in Ursa Major, Editions, Rockets in Ursa Major; a novel) -> Rockets in Ursa Major; a novel (10991ms)\nWhat is Ursa Major?\tan amazing craft\t-9.485578074096836\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, an amazing craft) -> an amazing craft (9764ms)\nWhat is Ursa Major?\ta distance\t-9.49458590854381\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is located at, a distance) -> a distance (9764ms)\nWhat is Ursa Major?\tPolaris?s right\t-9.497700796661428\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is to, Polaris?s right) -> Polaris?s right (9764ms)\nWhat is Ursa Major?\tTeddy Roosevelt and the treasure of Ursa Major\t-9.510467813246695\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Teddy Roosevelt and the treasure of Ursa Major, Edition Of, Teddy Roosevelt and the treasure of Ursa Major) -> Teddy Roosevelt and the treasure of Ursa Major (11214ms)\nWhat is Ursa Major?\tAladdin Paperbacks\t-9.515530863446426\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Aladdin Paperbacks, Book editions published, Teddy Roosevelt and the treasure of Ursa Major) -> Aladdin Paperbacks (11215ms)\nWhat is Ursa Major?\ta circumpolar constellation\t-9.527763530778168\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, a circumpolar constellation) -> a circumpolar constellation (9860ms)\nWhat is Ursa Major?\tMichael Joseph\t-9.531296544966532\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Michael Joseph, Book editions published, Ursa Major: a study of Dr.Johnson and his friends.) -> Michael Joseph (11350ms)\nWhat is Ursa Major?\tUrsa Major: A Tale of the Old South\t-9.537956693845855\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: (ursa major, edition, $x) -> (Ursa Major, Editions, Ursa Major: A Tale of the Old South) -> Ursa Major: A Tale of the Old South (11350ms)\nWhat is Ursa Major?\tharbor black holes\t-9.562405824133059\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are thought to, harbor black holes) -> harbor black holes (9860ms)\nWhat is Ursa Major?\tComet NEAT\t-9.57084100667552\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Comet NEAT, will be in, URSA MAJOR) -> Comet NEAT (9860ms)\nWhat is Ursa Major?\tHarper & Row / SFBC\t-9.58193890280451\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Harper & Row / SFBC, Book editions published, Rockets in Ursa Major) -> Harper & Row / SFBC (11350ms)\nWhat is Ursa Major?\tSaturday\t-9.588366284811642\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, is operational Monday through, Saturday) -> Saturday (9860ms)\nWhat is Ursa Major?\ta dog\t-9.588906789127382\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is an absolute sweetheart of, a dog) -> a dog (9901ms)\nWhat is Ursa Major?\tThuban\t-9.591720320376902\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Thuban, is Alioth of, Ursa Major) -> Thuban (9901ms)\nWhat is Ursa Major?\tsubtle evolutionary currents\t-9.612119505118429\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are of, subtle evolutionary currents) -> subtle evolutionary currents (9901ms)\nWhat is Ursa Major?\tthe Plough\t-9.655548139970026\tWhat is Ursa Major? -> what [ be ursa major ] ? -> what be know be ursa major ? -> $x: ($x, be know be, ursa major) -> (the Plough, is even more widely known as, Ursa Major) -> the Plough (7055ms)\nWhat is Ursa Major?\tKara\t-9.65673749649993\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is looking down at, Kara) -> Kara (9901ms)\nWhat is Ursa Major?\tthe Most noticeable\t-9.660830568941437\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the Most noticeable, are the stars of, Ursa Major) -> the Most noticeable (9901ms)\nWhat is Ursa Major?\tNa'ash or Nash\t-9.685722146355078\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was called, Na'ash or Nash) -> Na'ash or Nash (9928ms)\nWhat is Ursa Major?\tlate degrees\t-9.735503020600685\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, were in, late degrees) -> late degrees (9927ms)\nWhat is Ursa Major?\tTala\t-9.746041482461175\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is a lock for, Tala) -> Tala (9927ms)\nWhat is Ursa Major?\tHigh above Leo\t-9.756323965114946\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (High above Leo, is, the constellation Ursa Major) -> High above Leo (9927ms)\nWhat is Ursa Major?\tthe Black Thunder mine\t-9.760164368110035\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the Black Thunder mine, is, ?Ursa Major?) -> the Black Thunder mine (9954ms)\nWhat is Ursa Major?\t28 years\t-9.780657006469355\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (parents Ursa Major, would have been, 28 years) -> 28 years (9954ms)\nWhat is Ursa Major?\tExamples\t-9.786020859129632\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Examples, are, Ursa Major) -> Examples (9954ms)\nWhat is Ursa Major?\ttop left\t-9.786731525222581\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is at, top left) -> top left (9954ms)\nWhat is Ursa Major?\tLibra\t-9.786969613657984\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Libra, is, Ursa Major) -> Libra (9955ms)\nWhat is Ursa Major?\ta master firebender\t-9.788931279714348\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, quickly she?d be extinguished by, a master firebender) -> a master firebender (9954ms)\nWhat is Ursa Major?\tthe 2:00 p.m.\t-9.790979853043742\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the 2:00 p.m., Are, the Ursa Major Awards) -> the 2:00 p.m. (9987ms)\nWhat is Ursa Major?\t10-40 million light years\t-9.797104695128752\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are, 10-40 million light years) -> 10-40 million light years (9986ms)\nWhat is Ursa Major?\tTruck\t-9.806625576360736\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Truck, is operating under, the name Ursa Major) -> Truck (9986ms)\nWhat is Ursa Major?\tThe Big Dip\t-9.855293049432891\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The Big Dip, is actually part of, the constellation Ursa Major) -> The Big Dip (9986ms)\nWhat is Ursa Major?\tthe Delaware Diamond\t-9.860865321697279\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is called, the Delaware Diamond) -> the Delaware Diamond (9986ms)\nWhat is Ursa Major?\tthe First Year Experience program\t-9.865666586668251\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is part of, the First Year Experience program) -> the First Year Experience program (10048ms)\nWhat is Ursa Major?\tMars\t-9.9054934185182\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is like, Mars) -> Mars (10049ms)\nWhat is Ursa Major?\tthe NASA/ESA Hubble Space Telescope\t-9.91076067284942\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was taken by, the NASA/ESA Hubble Space Telescope) -> the NASA/ESA Hubble Space Telescope (10048ms)\nWhat is Ursa Major?\tthe 7 rays\t-9.917221584777568\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are the sources of, the 7 rays) -> the 7 rays (10048ms)\nWhat is Ursa Major?\t?Kevin & Kell ?\t-9.924907866076147\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (?Kevin & Kell ?, was given, the Ursa Major Award) -> ?Kevin & Kell ? (10048ms)\nWhat is Ursa Major?\tthe Waggon\t-9.92681863419537\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, the Waggon) -> the Waggon (10048ms)\nWhat is Ursa Major?\tinteresting galaxies\t-9.927945355002112\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is full of, interesting galaxies) -> interesting galaxies (10080ms)\nWhat is Ursa Major?\tpersonal will\t-9.934000723245212\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is the star of, personal will) -> personal will (10080ms)\nWhat is Ursa Major?\tamateur astronomers\t-9.939797881664475\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is a favorite among, amateur astronomers) -> amateur astronomers (10080ms)\nWhat is Ursa Major?\t10 * children\t-9.944918755366622\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (10 * children, must be accompanied by, adult Ursa Major-- Star) -> 10 * children (10080ms)\nWhat is Ursa Major?\t41 Lyn\t-9.969587824966228\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (41 Lyn, is part of, Ursa Major) -> 41 Lyn (10080ms)\nWhat is Ursa Major?\tN?hookos\t-9.990223972151961\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was named, N?hookos) -> N?hookos (10158ms)\nWhat is Ursa Major?\tlow\t-10.003860699002146\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, low) -> low (10159ms)\nWhat is Ursa Major?\tnormal stars\t-10.007548199873233\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is the only group of, normal stars) -> normal stars (10158ms)\nWhat is Ursa Major?\tone star\t-10.021765617705094\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (one star, was a member of, the Ursa Major) -> one star (10159ms)\nWhat is Ursa Major?\tKranj\t-10.057500581937404\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, place of birth, $x) -> (Ursa Bezan, Place of birth, Kranj) -> Kranj (10853ms)\nWhat is Ursa Major?\tstellar cosmology\t-10.064072246545992\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is the sacred point of, stellar cosmology) -> stellar cosmology (10159ms)\nWhat is Ursa Major?\ta Bear\t-10.086084131647103\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a Bear) -> a Bear (10159ms)\nWhat is Ursa Major?\tM82 These Galaxies\t-10.121079026752621\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (M82 These Galaxies, are located in, Ursa Major) -> M82 These Galaxies (10202ms)\nWhat is Ursa Major?\tBootes\t-10.14786185975374\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Bootes, is next to, Ursa Major) -> Bootes (10202ms)\nWhat is Ursa Major?\tMayflower\t-10.16969930532358\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Mayflower, Book editions published, Rockets in Ursa Major) -> Mayflower (11375ms)\nWhat is Ursa Major?\tHeinemann\t-10.16969930532358\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Heinemann, Book editions published, Rockets in Ursa Major) -> Heinemann (11375ms)\nWhat is Ursa Major?\ttrademarks\t-10.172474151480817\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, are, trademarks) -> trademarks (10202ms)\nWhat is Ursa Major?\tMS 81\t-10.263986190398192\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (MS 81, is being positioned in, the Ursa Major constellation) -> MS 81 (10202ms)\nWhat is Ursa Major?\ta constellation visible\t-10.292415741265646\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, a constellation visible) -> a constellation visible (10202ms)\nWhat is Ursa Major?\tGEORGE\t-10.305606860151263\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is up there, GEORGE) -> GEORGE (10202ms)\nWhat is Ursa Major?\ta cart\t-10.337710193031551\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was visualized as, a cart) -> a cart (10234ms)\nWhat is Ursa Major?\t2610.4\t-10.349740922988158\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, run, $x) -> (Ursa Major, Running Time, 2610.4) -> 2610.4 (11498ms)\nWhat is Ursa Major?\t2859.093\t-10.349740922988158\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, run, $x) -> (Ursa Major, Running Time, 2859.093) -> 2859.093 (11498ms)\nWhat is Ursa Major?\tThe nearest open cluster\t-10.354975541074307\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The nearest open cluster, is, the Ursa Major cluster) -> The nearest open cluster (10234ms)\nWhat is Ursa Major?\tZeta Tucanae\t-10.528560709511565\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Zeta Tucanae, Instance Of, member of the Ursa Major moving group of star) -> Zeta Tucanae (11375ms)\nWhat is Ursa Major?\talmost overhead\t-10.545713432228235\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, almost overhead) -> almost overhead (10268ms)\nWhat is Ursa Major?\tthe Arcturus\t-10.568473893800386\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was probably, the Arcturus) -> the Arcturus (10267ms)\nWhat is Ursa Major?\t9780583119122\t-10.617033936384976\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9780583119122, Book Editions, Rockets in Ursa Major) -> 9780583119122 (11375ms)\nWhat is Ursa Major?\t9780434349227\t-10.617033936384976\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9780434349227, Book Editions, Rockets in Ursa Major) -> 9780434349227 (11375ms)\nWhat is Ursa Major?\tthe Dipper\t-10.619573695700549\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, were the ones of, the Dipper) -> the Dipper (10268ms)\nWhat is Ursa Major?\t9781425321079\t-10.656018167052874\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9781425321079, Book Editions, Ursa Major The Greater Bear) -> 9781425321079 (11375ms)\nWhat is Ursa Major?\tthe North\t-10.682312220014397\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, may be seen dimly to, the North) -> the North (10312ms)\nWhat is Ursa Major?\tthe Saptarishis\t-10.685496319928804\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are equated with, the Saptarishis) -> the Saptarishis (10312ms)\nWhat is Ursa Major?\ta group of the first importance\t-10.705892045102694\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, are, a group of the first importance) -> a group of the first importance (10312ms)\nWhat is Ursa Major?\t9780934870931\t-10.739555804198373\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9780934870931, Book Editions, Ursa Major: A Tale of the Old South) -> 9780934870931 (11434ms)\nWhat is Ursa Major?\t9781416948575\t-10.739555804198373\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9781416948575, Book Editions, Teddy Roosevelt and the treasure of Ursa Major) -> 9781416948575 (11434ms)\nWhat is Ursa Major?\tAugust 17 , 2009\t-10.739900653840277\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (\" Ursa Major, was released on, August 17 , 2009) -> August 17 , 2009 (10312ms)\nWhat is Ursa Major?\tM101\t-10.77432956152001\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (M101, is found in, the Ursa Major constellation) -> M101 (11435ms)\nWhat is Ursa Major?\tthe star Dubheh\t-10.784878187890909\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, the star Dubheh) -> the star Dubheh (10359ms)\nWhat is Ursa Major?\ttreason\t-10.824114659898877\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is banished for, treason) -> treason (10359ms)\nWhat is Ursa Major?\tBeta Ursae Majoris\t-10.833133759728549\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Beta Ursae Majoris, Instance Of, member of the Ursa Major) -> Beta Ursae Majoris (11435ms)\nWhat is Ursa Major?\tUrsula Major\t-10.834006981888182\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Ursula Major, Instance Of, pun of the constellation of star called Ursa Major) -> Ursula Major (11467ms)\nWhat is Ursa Major?\tJoyce Gauthier\t-10.834006981888182\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Joyce Gauthier, Instance Of, Seattle physician and owner of Ursa Major) -> Joyce Gauthier (11468ms)\nWhat is Ursa Major?\tMegrez Alkaid\t-10.850963007801148\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Megrez Alkaid, Instance Of, sequence star, and not part of the Ursa Major constellation) -> Megrez Alkaid (11468ms)\nWhat is Ursa Major?\tthe only members\t-10.878056603027888\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, may be one of, the only members) -> the only members (10359ms)\nWhat is Ursa Major?\tthe dragon Draco\t-10.882924407750322\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, the dragon Draco) -> the dragon Draco (10401ms)\nWhat is Ursa Major?\tthe best known constellation\t-10.887981368940963\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, the best known constellation) -> the best known constellation (10401ms)\nWhat is Ursa Major?\tVenetian Plaster Art-This\t-10.89079391303656\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Venetian Plaster Art-This, Instance Of, star scape of Ursa Major) -> Venetian Plaster Art-This (11468ms)\nWhat is Ursa Major?\tthe masque\t-10.902658518894988\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the masque, is, Ursa Major) -> the masque (10400ms)\nWhat is Ursa Major?\tliterature and art\t-10.904090087451175\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Ursa Major, has featured in, literature and art) -> literature and art (10400ms)\nWhat is Ursa Major?\tWinter Guard\t-10.90456632496951\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Winter Guard, Instance Of, team of interchangeable superhero icon featuring Darkstar, Ursa Major, Crimson Dynamo and Red Guardian) -> Winter Guard (11468ms)\nWhat is Ursa Major?\tthe right items\t-10.92485454658629\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, can be deadly with, the right items) -> the right items (10400ms)\nWhat is Ursa Major?\tmale\t-10.930405207440888\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Alex Ursa, is a, male) -> male (10581ms)\nWhat is Ursa Major?\tMr. H. Ross Arnold, III.\t-10.98013277498383\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Mr. H. Ross Arnold, III., Instance Of, Independent Director of Ursa Major Minerals Inc.) -> Mr. H. Ross Arnold, III. (11467ms)\nWhat is Ursa Major?\tHubble Deep Field\t-10.98013277498383\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Hubble Deep Field, Instance Of, portrait of a small region of the Ursa Major constellation) -> Hubble Deep Field (11498ms)\nWhat is Ursa Major?\tthe most brutal and unrelenting story\t-11.03383446900379\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, the most brutal and unrelenting story) -> the most brutal and unrelenting story (10581ms)\nWhat is Ursa Major?\tthe center\t-11.039711645841837\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is rising in, the center) -> the center (10581ms)\nWhat is Ursa Major?\tThe big dipper\t-11.051143423845941\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The big dipper, is part of, the Ursa Major constellation) -> The big dipper (10581ms)\nWhat is Ursa Major?\tPicture shown\t-11.061517561260835\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Picture shown, Instance Of, stock picture of a Ursa Major) -> Picture shown (11498ms)\nWhat is Ursa Major?\t1974\t-11.067985413410891\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was adopted in, 1974) -> 1974 (10808ms)\nWhat is Ursa Major?\tthe outfit\t-11.118715705447034\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, would rather be in, the outfit) -> the outfit (10808ms)\nWhat is Ursa Major?\tthe whale\t-11.126986266506982\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is making like, the whale) -> the whale (10808ms)\nWhat is Ursa Major?\tRob\t-11.12774962527174\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (Rob, was bouncing around in, Virgo/Ursa Major) -> Rob (11498ms)\nWhat is Ursa Major?\tthe great ?W?\t-11.134526888488857\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the great ?W?) -> the great ?W? (10808ms)\nWhat is Ursa Major?\tthe first two galaxies\t-11.14620198242859\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, were, the first two galaxies) -> the first two galaxies (10808ms)\nWhat is Ursa Major?\t20,000 t\t-11.204347902360718\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Ursa Major, has about, 20,000 t) -> 20,000 t (10853ms)\nWhat is Ursa Major?\ta double meaning\t-11.234168249762025\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Ursa Major, has, a double meaning) -> a double meaning (10853ms)\nWhat is Ursa Major?\ta mystic significance\t-11.237685297719489\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (the constellation Ursa Major, has, a mystic significance) -> a mystic significance (10853ms)\nWhat is Ursa Major?\tthe most recognizable constellation\t-11.245687588070757\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the most recognizable constellation) -> the most recognizable constellation (10853ms)\nWhat is Ursa Major?\tsimilar names\t-11.251974628734597\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Bootes and Ursa Major, had, similar names) -> similar names (10853ms)\nWhat is Ursa Major?\ta full-time Captain\t-11.259085851813161\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Vic & Barb kayaking ?Ursa Major ?, has, a full-time Captain) -> a full-time Captain (10916ms)\nWhat is Ursa Major?\tthe stellar constellations\t-11.260510357696553\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the stellar constellations, is, Ursa Major) -> the stellar constellations (10916ms)\nWhat is Ursa Major?\tthe teddy bear\t-11.273281377211791\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the teddy bear, is, Ursa Major) -> the teddy bear (10916ms)\nWhat is Ursa Major?\tcourse\t-11.277106730459181\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was of, course) -> course (10916ms)\nWhat is Ursa Major?\ta rampage\t-11.285919858808057\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, go, $x) -> (an Ursa-major, went on, a rampage) -> a rampage (10916ms)\nWhat is Ursa Major?\tthe ox thigh constellation M?htyw\t-11.286162079447726\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the ox thigh constellation M?htyw, was, Ursa Major) -> the ox thigh constellation M?htyw (10916ms)\nWhat is Ursa Major?\tThe system\t-11.293260568777656\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The system, is in, Ursa Major) -> The system (10916ms)\nWhat is Ursa Major?\tSirius\t-11.299028974490646\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: ($x, member, ursa) -> (Sirius, was a member of, the Ursa Major Moving Group) -> Sirius (11498ms)\nWhat is Ursa Major?\tthe video image\t-11.315787419614633\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the video image, is, Ursa Major) -> the video image (11498ms)\nWhat is Ursa Major?\tthe naked eye\t-11.31659563295263\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the naked eye, were, the bears Ursa Major) -> the naked eye (11623ms)\nWhat is Ursa Major?\tthe asterism\t-11.317000705850303\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the asterism) -> the asterism (11623ms)\nWhat is Ursa Major?\tThe hounds\t-11.318902290623226\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The hounds, are pursuing, Ursa Major) -> The hounds (11623ms)\nWhat is Ursa Major?\t1.4 % Ni\t-11.323466384957076\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Ursa Major, have yielded up to, 1.4 % Ni) -> 1.4 % Ni (11623ms)\nWhat is Ursa Major?\tBig Dipper\t-11.330848128994035\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Big Dipper, Instance Of, part of the Ursa Major constellation) -> Big Dipper (11623ms)\nWhat is Ursa Major?\tthe first cycle\t-11.331577769266874\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the first cycle, were, Ursa Major) -> the first cycle (11623ms)\nWhat is Ursa Major?\tthe most conspicuous asterism\t-11.334107334928609\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the most conspicuous asterism) -> the most conspicuous asterism (11729ms)\nWhat is Ursa Major?\tthe two most obvious\t-11.335677150336673\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the two most obvious, are probably, Ursa Major) -> the two most obvious (11729ms)\nWhat is Ursa Major?\tThe official name\t-11.351090781851894\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The official name, is, Ursa Major) -> The official name (11729ms)\nWhat is Ursa Major?\tMessier 101\t-11.353886250246559\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (Messier 101, is located in, the constellation Ursa Major) -> Messier 101 (11729ms)\nWhat is Ursa Major?\tgalaxy M82\t-11.366425302517829\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (galaxy M82, is in, the Great Bear constellation Ursa Major) -> galaxy M82 (11729ms)\nWhat is Ursa Major?\tthe northern hemisphere\t-11.37113956926963\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, can be seen in, the northern hemisphere) -> the northern hemisphere (11755ms)\nWhat is Ursa Major?\tthe trees\t-11.37139767360652\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is getting rather low in, the trees) -> the trees (11756ms)\nWhat is Ursa Major?\tthe lion\t-11.392549750377823\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the lion, is, Ursa Major) -> the lion (11756ms)\nWhat is Ursa Major?\tSeven Woods Audio's SST-206 Space Station\t-11.402469856413655\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Seven Woods Audio's SST-206 Space Station, Instance Of, faithful reproduction of the original Ursa Major SST-282) -> Seven Woods Audio's SST-206 Space Station (11756ms)\nWhat is Ursa Major?\tthe beautiful Goddess Artemis\t-11.403894388426995\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the beautiful Goddess Artemis, is, Ursa Major) -> the beautiful Goddess Artemis (11756ms)\nWhat is Ursa Major?\tTrixie\t-11.41495293117234\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Trixie, is, the Ursa Major) -> Trixie (11756ms)\nWhat is Ursa Major?\tthe zodiac\t-11.434991277355703\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the zodiac, is, Ursa Major) -> the zodiac (11817ms)\nWhat is Ursa Major?\tthe most prominent constellations\t-11.437295335892898\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the most prominent constellations, would be, Ursa Major) -> the most prominent constellations (11817ms)\nWhat is Ursa Major?\tthe northeast\t-11.440231880337322\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the northeast, is, Ursa Major) -> the northeast (11817ms)\nWhat is Ursa Major?\tthe sky\t-11.448168856334325\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is highest in, the sky) -> the sky (11817ms)\nWhat is Ursa Major?\tthe northern sky\t-11.452589841042103\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the northern sky, is, the constellation Ursa Major) -> the northern sky (11817ms)\nWhat is Ursa Major?\tThe radio source\t-11.4545870756333\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The radio source, was, first called Ursa Major) -> The radio source (11817ms)\nWhat is Ursa Major?\tthe most conspicuous galaxies\t-11.468073654579586\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is one of, the most conspicuous galaxies) -> the most conspicuous galaxies (11817ms)\nWhat is Ursa Major?\tthe most spectacular galaxies\t-11.482548478769763\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is one of, the most spectacular galaxies) -> the most spectacular galaxies (11899ms)\nWhat is Ursa Major?\tthe northern horizon\t-11.490049342646188\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, can be seen somewhere about, the northern horizon) -> the northern horizon (11899ms)\nWhat is Ursa Major?\tNGC4051\t-11.497678775444268\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (NGC4051, is a spiral galaxy in, the constellation Ursa Major) -> NGC4051 (11899ms)\nWhat is Ursa Major?\tthe constellation\t-11.501180884297987\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the constellation, is, Ursa Major) -> the constellation (11899ms)\nWhat is Ursa Major?\tThe full constellation\t-11.515303350629424\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The full constellation, actually is, Ursa Major) -> The full constellation (11898ms)\nWhat is Ursa Major?\tAlcor\t-11.52433482061107\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Alcor, Instance Of, nuclear member of the Ursa Major star cluster) -> Alcor (11898ms)\nWhat is Ursa Major?\tdancing\t-11.537709664386984\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (dancing, was connected with, Ursa Major) -> dancing (11925ms)\nWhat is Ursa Major?\tthe veteran character\t-11.542579456010316\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is portrayed as, the veteran character) -> the veteran character (11925ms)\nWhat is Ursa Major?\tthe horizon\t-11.555428293663518\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the horizon, will be, Ursa Major) -> the horizon (11925ms)\nWhat is Ursa Major?\tthe largest\t-11.559849278371296\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is among, the largest) -> the largest (11925ms)\nWhat is Ursa Major?\tthe deceased?s spirit\t-11.56219087704161\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was believed to protect, the deceased?s spirit) -> the deceased?s spirit (11925ms)\nWhat is Ursa Major?\tmidnight\t-11.564871549116514\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, will be overhead at, midnight) -> midnight (11925ms)\nWhat is Ursa Major?\tbinoculars\t-11.5794711762529\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are very possible to see in, binoculars) -> binoculars (11925ms)\nWhat is Ursa Major?\tthe brightest stars\t-11.609545323335361\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the brightest stars, is somewhat similar to, Ursa Major) -> the brightest stars (11952ms)\nWhat is Ursa Major?\tthe ox thigh\t-11.63292668506835\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is clearly identified as, the ox thigh) -> the ox thigh (11951ms)\nWhat is Ursa Major?\tDipper\t-11.633563042258942\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Dipper, Instance Of, part of a larger group of star called Ursa Major) -> Dipper (11951ms)\nWhat is Ursa Major?\tAlkaid\t-11.653983353561175\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Alkaid, Instance Of, sequence star, and not part of the Ursa Major constellation) -> Alkaid (11951ms)\nWhat is Ursa Major?\toperations\t-11.656502586362182\tWhat is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is focused on expanding, operations) -> operations (11951ms)\nWhat is Ursa Major?\tthe photo\t-11.659763606550285\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the photo, is named, Ursa Major) -> the photo (11951ms)\nWhat is Ursa Major?\tthe oldest\t-11.694818758869314\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is one of, the oldest) -> the oldest (11977ms)\nWhat is Ursa Major?\tover\t-11.704664571214616\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (over, is, Ursa Major) -> over (11977ms)\nWhat is Ursa Major?\tNGC 4088\t-11.738269353824064\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (NGC 4088, Instance Of, member of the Ursa Major North Group of galaxy) -> NGC 4088 (11977ms)\nWhat is Ursa Major?\tthe left\t-11.747050957088808\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the left, are the stars of, Ursa Major) -> the left (11977ms)\nWhat is Ursa Major?\tthe home\t-11.752032407129171\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is best known as, the home) -> the home (11977ms)\nWhat is Ursa Major?\tthe most well known constellations\t-11.753637134070917\tWhat is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is also one of, the most well known constellations) -> the most well known constellations (11977ms)\nWhat is peyote?\tmind-altering substance\t-4.797327701396938\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, mind-altering substance) -> mind-altering substance (2788ms)\nWhat is peyote?\tmind-expanding drug\t-5.036798857406887\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, mind-expanding drug) -> mind-expanding drug (2788ms)\nWhat is peyote?\thallu-cinogenic substance\t-5.081692812842029\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallu-cinogenic substance) -> hallu-cinogenic substance (2788ms)\nWhat is peyote?\tvision-inducing plant\t-5.081692812842029\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, vision-inducing plant) -> vision-inducing plant (2788ms)\nWhat is peyote?\thallucination-producing substance\t-5.102256643861029\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucination-producing substance) -> hallucination-producing substance (2789ms)\nWhat is peyote?\tpowerful indigenous plant\t-5.240998106640499\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful indigenous plant) -> powerful indigenous plant (2789ms)\nWhat is peyote?\ttype of small cactus\t-5.254602578676496\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, type of small cactus) -> type of small cactus (2803ms)\nWhat is peyote?\tspecies of small cactus\t-5.254602578676496\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, species of small cactus) -> species of small cactus (2804ms)\nWhat is peyote?\thallucinogenic or entheogenic drug\t-5.299496534111638\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogenic or entheogenic drug) -> hallucinogenic or entheogenic drug (2803ms)\nWhat is peyote?\thallucinogenic cactus plant\t-5.319840410528823\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic cactus plant) -> hallucinogenic cactus plant (2803ms)\nWhat is peyote?\tsmall, fleshy, spineless cactus\t-5.3603358568064365\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, fleshy, spineless cactus) -> small, fleshy, spineless cactus (2803ms)\nWhat is peyote?\twoolen Mexican cactus\t-5.384186163477459\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, woolen Mexican cactus) -> woolen Mexican cactus (2803ms)\nWhat is peyote?\tpretty heavy duty plant\t-5.4290801189126014\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, pretty heavy duty plant) -> pretty heavy duty plant (2817ms)\nWhat is peyote?\tsmall button shaped cactus\t-5.4290801189126014\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small button shaped cactus) -> small button shaped cactus (2817ms)\nWhat is peyote?\tspecies of cactus\t-5.446365777056725\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, species of cactus) -> species of cactus (2817ms)\nWhat is peyote?\tnatural hallucinogenic drug\t-5.460731728621772\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural hallucinogenic drug) -> natural hallucinogenic drug (2818ms)\nWhat is peyote?\tsupremely potent medicine\t-5.460731728621772\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, supremely potent medicine) -> supremely potent medicine (2817ms)\nWhat is peyote?\tarounders CHAPTER OVERVIEW psychedelic drug\t-5.469852487468907\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, arounders CHAPTER OVERVIEW psychedelic drug) -> arounders CHAPTER OVERVIEW psychedelic drug (2817ms)\nWhat is peyote?\thallucinogen or psychedelic\t-5.469852487468907\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogen or psychedelic) -> hallucinogen or psychedelic (2839ms)\nWhat is peyote?\tinstantly accessable drug\t-5.479713726579749\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, instantly accessable drug) -> instantly accessable drug (2840ms)\nWhat is peyote?\thallucinogenic and mind-altering drug\t-5.490416318487908\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic and mind-altering drug) -> hallucinogenic and mind-altering drug (2839ms)\nWhat is peyote?\tplant from the old world\t-5.493354009684079\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, plant from the old world) -> plant from the old world (2839ms)\nWhat is peyote?\tbead weaving technique\t-5.505625684056914\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, bead weaving technique) -> bead weaving technique (2856ms)\nWhat is peyote?\tsynaesthetes hallucinogenic compound\t-5.505625684056914\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, synaesthetes hallucinogenic compound) -> synaesthetes hallucinogenic compound (2856ms)\nWhat is peyote?\tsmall brown cactus\t-5.505625684056914\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small brown cactus) -> small brown cactus (2840ms)\nWhat is peyote?\thallucinogenic plant substance\t-5.505625684056914\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogenic plant substance) -> hallucinogenic plant substance (2839ms)\nWhat is peyote?\tplant with powerful hallucinogenic property\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant with powerful hallucinogenic property) -> plant with powerful hallucinogenic property (2886ms)\nWhat is peyote?\tspinelss dome-shaped cactus\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, spinelss dome-shaped cactus) -> spinelss dome-shaped cactus (2870ms)\nWhat is peyote?\tpsychoactive effect of herb\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive effect of herb) -> psychoactive effect of herb (2870ms)\nWhat is peyote?\talkaloid-producing hallucinogenic plant\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, alkaloid-producing hallucinogenic plant) -> alkaloid-producing hallucinogenic plant (2886ms)\nWhat is peyote?\tmassively powerful psychedelic plant\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, massively powerful psychedelic plant) -> massively powerful psychedelic plant (2856ms)\nWhat is peyote?\tsmall, carrot-shaped cactus\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, carrot-shaped cactus) -> small, carrot-shaped cactus (2870ms)\nWhat is peyote?\tvibrant, versatile stitch\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, vibrant, versatile stitch) -> vibrant, versatile stitch (2886ms)\nWhat is peyote?\tinteresting conscious-alternating product\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, interesting conscious-alternating product) -> interesting conscious-alternating product (2856ms)\nWhat is peyote?\tsmall mescaline-containing cactus\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small mescaline-containing cactus) -> small mescaline-containing cactus (2886ms)\nWhat is peyote?\tsmall, spineless, cactus\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, spineless, cactus) -> small, spineless, cactus (2870ms)\nWhat is peyote?\tsmall low spineless cactus of the southwestern United States and Mexico\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small low spineless cactus of the southwestern United States and Mexico) -> small low spineless cactus of the southwestern United States and Mexico (2886ms)\nWhat is peyote?\tnon-habit forming drug\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, non-habit forming drug) -> non-habit forming drug (2856ms)\nWhat is peyote?\tabusable drug of illicit origin\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, abusable drug of illicit origin) -> abusable drug of illicit origin (2886ms)\nWhat is peyote?\tHallucinogenic or Psychedelic type drug\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, Hallucinogenic or Psychedelic type drug) -> Hallucinogenic or Psychedelic type drug (2871ms)\nWhat is peyote?\tsmall spineless globe-shaped cactus\t-5.51474644290405\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small spineless globe-shaped cactus) -> small spineless globe-shaped cactus (2870ms)\nWhat is peyote?\tnatural psychoactive substance\t-5.515907599566414\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural psychoactive substance) -> natural psychoactive substance (2903ms)\nWhat is peyote?\tillegal and prescription drug\t-5.5198874006588\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, illegal and prescription drug) -> illegal and prescription drug (2903ms)\nWhat is peyote?\tthread bead technique\t-5.5330441262327135\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, thread bead technique) -> thread bead technique (2903ms)\nWhat is peyote?\toff-loom technique\t-5.53531027392305\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, off-loom technique) -> off-loom technique (2903ms)\nWhat is peyote?\tsacred plant\t-5.626487939959162\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, sacred plant) -> sacred plant (2903ms)\nWhat is peyote?\tcontrolled substance\t-5.633406554893984\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, controlled substance) -> controlled substance (2903ms)\nWhat is peyote?\tpsychoactive plant\t-5.6395590779924305\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive plant) -> psychoactive plant (3108ms)\nWhat is peyote?\tillegal drug\t-5.6439015975436035\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, illegal drug) -> illegal drug (3108ms)\nWhat is peyote?\tpsychotropic drug\t-5.660099528384556\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychotropic drug) -> psychotropic drug (3108ms)\nWhat is peyote?\tbasic technique\t-5.666683563027491\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, basic technique) -> basic technique (3108ms)\nWhat is peyote?\tcommon drug\t-5.7011864441038185\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, common drug) -> common drug (3108ms)\nWhat is peyote?\tpsychedelic drug\t-5.716296592274157\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychedelic drug) -> psychedelic drug (3108ms)\nWhat is peyote?\tRitualistic drugs\t-5.717956950018242\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, Ritualistic drugs) -> Ritualistic drugs (3120ms)\nWhat is peyote?\tsoft drug\t-5.719253954455338\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, soft drug) -> soft drug (3120ms)\nWhat is peyote?\tAmerican plant\t-5.748261542711811\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, American plant) -> American plant (3120ms)\nWhat is peyote?\thallucinatory drug\t-5.759987754927845\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinatory drug) -> hallucinatory drug (3120ms)\nWhat is peyote?\tspiritual plant\t-5.759987754927845\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, spiritual plant) -> spiritual plant (3120ms)\nWhat is peyote?\thallucinogenic substance\t-5.761918910950308\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic substance) -> hallucinogenic substance (3120ms)\nWhat is peyote?\tpsychoactive drug\t-5.81709478189495\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive drug) -> psychoactive drug (3135ms)\nWhat is peyote?\tpowerful psychedelic\t-5.827021403922757\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful psychedelic) -> powerful psychedelic (3136ms)\nWhat is peyote?\tshamanistic plant\t-5.827021403922757\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, shamanistic plant) -> shamanistic plant (3135ms)\nWhat is peyote?\thardcore hallucinogen\t-5.827021403922757\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hardcore hallucinogen) -> hardcore hallucinogen (3135ms)\nWhat is peyote?\tentheogenic drug\t-5.833876014466707\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, entheogenic drug) -> entheogenic drug (3135ms)\nWhat is peyote?\tbasic stitch\t-5.834010189858153\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, basic stitch) -> basic stitch (3135ms)\nWhat is peyote?\tothe drug\t-5.871915359357899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, othe drug) -> othe drug (3148ms)\nWhat is peyote?\tshamanic herb\t-5.871915359357899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, shamanic herb) -> shamanic herb (3148ms)\nWhat is peyote?\tunpretentious plant\t-5.871915359357899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, unpretentious plant) -> unpretentious plant (3148ms)\nWhat is peyote?\tuseda hallucinogen\t-5.871915359357899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, useda hallucinogen) -> useda hallucinogen (3162ms)\nWhat is peyote?\tscared substance\t-5.871915359357899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, scared substance) -> scared substance (3148ms)\nWhat is peyote?\torganic hallucinogen\t-5.871915359357899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, organic hallucinogen) -> organic hallucinogen (3162ms)\nWhat is peyote?\tpolitical drug\t-5.871915359357899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, political drug) -> political drug (3162ms)\nWhat is peyote?\tnarcotic plant\t-5.871915359357899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, narcotic plant) -> narcotic plant (3148ms)\nWhat is peyote?\tsafe drug\t-5.874801511101367\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, safe drug) -> safe drug (3162ms)\nWhat is peyote?\tdrug substance\t-5.874961852864893\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, drug substance) -> drug substance (3162ms)\nWhat is peyote?\tpowerful drug\t-5.882197274867399\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful drug) -> powerful drug (3162ms)\nWhat is peyote?\tdivination technique\t-5.886097312038388\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, divination technique) -> divination technique (3175ms)\nWhat is peyote?\thealing herb\t-5.888117166098144\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, healing herb) -> healing herb (3175ms)\nWhat is peyote?\tnatural substance\t-5.8908698464828975\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural substance) -> natural substance (3175ms)\nWhat is peyote?\trecreational drug\t-5.890897357315875\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, recreational drug) -> recreational drug (3175ms)\nWhat is peyote?\tplant psychedelic\t-5.892479190376899\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant psychedelic) -> plant psychedelic (3175ms)\nWhat is peyote?\tprotected plant\t-5.903365925022581\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, protected plant) -> protected plant (3186ms)\nWhat is peyote?\tstimulant drug\t-5.906917625652358\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, stimulant drug) -> stimulant drug (3185ms)\nWhat is peyote?\tversatile stitch\t-5.93173741501419\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, versatile stitch) -> versatile stitch (3186ms)\nWhat is peyote?\tplant and substance\t-6.265202480846407\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant and substance) -> plant and substance (3186ms)\nWhat is peyote?\tAmerican Indian stitch\t-6.371368113827071\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, American Indian stitch) -> American Indian stitch (3185ms)\nWhat is peyote?\thallucinogen\t-7.4483058378733356\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogen) -> hallucinogen (3185ms)\nWhat is peyote?\tdrug\t-7.778307832991054\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, drug) -> drug (3200ms)\nWhat is peyote?\tnarcotic\t-7.907687486031319\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, narcotic) -> narcotic (3200ms)\nWhat is peyote?\tpsychedelic\t-7.940883404856131\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychedelic) -> psychedelic (3200ms)\nWhat is peyote?\tstitch\t-7.96812988754332\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, stitch) -> stitch (3200ms)\nWhat is peyote?\tstyle\t-7.998198145964087\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, style) -> style (3200ms)\nWhat is peyote?\tclassic\t-8.086011953954603\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, classic) -> classic (3200ms)\nWhat is peyote?\tstitches\t-8.094097044874134\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, stitches) -> stitches (3218ms)\nWhat is peyote?\tdrugs\t-8.105064421989594\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, drugs) -> drugs (3218ms)\nWhat is peyote?\tintoxicant\t-8.106949439261008\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, intoxicant) -> intoxicant (3218ms)\nWhat is peyote?\tchallenge\t-8.12892988267928\tWhat is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, challenge) -> challenge (3218ms)\nWhat is peyote?\tEl Peyote Asesino\t-11.730977946938447\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (El Peyote Asesino, Also known as, \"Peyote Asesino\"@es) -> El Peyote Asesino (4322ms)\nWhat is peyote?\tDon Peyote & Marcell Cellier\t-11.730977946938447\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (Don Peyote & Marcell Cellier, Also known as, Peyote & Marcell Cellier, Don) -> Don Peyote & Marcell Cellier (4322ms)\nWhat is peyote?\tIone Skye\t-11.730977946938447\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (Ione Skye, Also known as, Peyote) -> Ione Skye (4322ms)\nWhat is peyote?\tThe Peyote Cowboys\t-11.7747575894047\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (The Peyote Cowboys, Also known as, Peyote Cowboys, The) -> The Peyote Cowboys (4322ms)\nWhat is peyote?\troot-plowing\t-11.854828935254545\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, are, root-plowing) -> root-plowing (5742ms)\nWhat is peyote?\tnative Americans\t-12.093743078388679\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is considered sacred by, native Americans) -> native Americans (5742ms)\nWhat is peyote?\tHarvard Medical School\t-12.103383146807491\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Harvard Medical School, is an expert on, peyote) -> Harvard Medical School (5742ms)\nWhat is peyote?\tveterinarian-husband\t-12.144018002534157\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (veterinarian-husband, is poisoned with, peyote) -> veterinarian-husband (5742ms)\nWhat is peyote?\texact what\t-12.16894681612815\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is to, exact what) -> exact what (5742ms)\nWhat is peyote?\tBolo cord\t-12.17314737194995\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Bolo cord, is white intertwined nylon with, peyote) -> Bolo cord (5742ms)\nWhat is peyote?\tCanadian law\t-12.195063900601838\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is legal under, Canadian law) -> Canadian law (5742ms)\nWhat is peyote?\tEuropean-Americans\t-12.199014317891407\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was condemned by, European-Americans) -> European-Americans (5742ms)\nWhat is peyote?\tDon Peyote\t-12.25669848688737\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (Don Peyote, Also known as, Peyote, Don) -> Don Peyote (4322ms)\nWhat is peyote?\tLos Peyotes\t-12.25669848688737\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (Los Peyotes, Also known as, Peyotes, Los) -> Los Peyotes (4444ms)\nWhat is peyote?\tAmerican Indians\t-12.313651939837705\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (American Indians, are allowed to use, peyote) -> American Indians (5759ms)\nWhat is peyote?\twidespread use\t-12.326765096506602\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was in, widespread use) -> widespread use (5760ms)\nWhat is peyote?\tNative Americans\t-12.362942542004056\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Native Americans, have been allowed to consume, peyote) -> Native Americans (5760ms)\nWhat is peyote?\tthe Native American Church\t-12.501851115032087\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (the Native American Church, is allowed to use, Peyote) -> the Native American Church (5760ms)\nWhat is peyote?\tPeyote And Mescaline\t-12.609959242703859\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote And Mescaline, Editions, Peyote And Mescaline (Drugs: the Straight Facts)) -> Peyote And Mescaline (7387ms)\nWhat is peyote?\tPeyote Stitch Primer\t-12.650820242339028\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote Stitch Primer, Editions, Peyote Stitch Primer) -> Peyote Stitch Primer (7412ms)\nWhat is peyote?\tChelsea House Publications\t-12.650820242339028\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Chelsea House Publications, Book editions published, Peyote And Mescaline (Drugs: the Straight Facts)) -> Chelsea House Publications (7387ms)\nWhat is peyote?\tCornell University Press\t-12.650820242339028\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Cornell University Press, Book editions published, Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)) -> Cornell University Press (7387ms)\nWhat is peyote?\tSyracuse University Press\t-12.650820242339028\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Syracuse University Press, Book editions published, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> Syracuse University Press (7387ms)\nWhat is peyote?\ta crime\t-12.665474131811223\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was, a crime) -> a crime (5760ms)\nWhat is peyote?\ta guardian\t-12.669338561081355\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a guardian) -> a guardian (5760ms)\nWhat is peyote?\ta quill\t-12.695338490207483\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (a quill, is, peyote stitch) -> a quill (5760ms)\nWhat is peyote?\tan outward physical act distinguishable\t-12.724052658971774\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, an outward physical act distinguishable) -> an outward physical act distinguishable (5778ms)\nWhat is peyote?\tan entheogen containing mescaline\t-12.740367149612565\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, an entheogen containing mescaline) -> an entheogen containing mescaline (5778ms)\nWhat is peyote?\tan alkaloid called mescaline\t-12.74773320979925\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, an alkaloid called mescaline) -> an alkaloid called mescaline (5778ms)\nWhat is peyote?\tStella\t-12.752400890725646\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> (Stella, is known for, her free form flat peyote cuffs) -> Stella (3472ms)\nWhat is peyote?\ta type\t-12.764366573681452\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, occurs is, a type) -> a type (5778ms)\nWhat is peyote?\ta plant\t-12.765780711783217\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a plant) -> a plant (5778ms)\nWhat is peyote?\ta cactus\t-12.794441816468082\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a cactus) -> a cactus (5778ms)\nWhat is peyote?\tWarner Books\t-12.798211705308747\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Warner Books, Book editions published, In the magic land of Peyote) -> Warner Books (7481ms)\nWhat is peyote?\tPeyote Religion\t-12.798211705308747\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote Religion, Editions, Peyote religion : a history) -> Peyote Religion (7481ms)\nWhat is peyote?\tSchocken Books\t-12.798211705308747\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Schocken Books, Book editions published, The peyote cult) -> Schocken Books (7412ms)\nWhat is peyote?\tArchon Books\t-12.798211705308747\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Archon Books, Book editions published, The peyote cult) -> Archon Books (7480ms)\nWhat is peyote?\tRonin Publishing\t-12.798211705308747\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Ronin Publishing, Book editions published, Peyote and Other Psychoactive Cacti) -> Ronin Publishing (7481ms)\nWhat is peyote?\tAtlantic Books\t-12.798211705308747\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Atlantic Books, Book editions published, Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork)) -> Atlantic Books (7412ms)\nWhat is peyote?\tGrabhorn Press\t-12.798211705308747\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Grabhorn Press, Book editions published, The messenger bird. [From statements on peyote and from a painting by Monroe Tsa To Ke) -> Grabhorn Press (7412ms)\nWhat is peyote?\tWilliam\t-12.813880635101906\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (William, is on, peyote) -> William (5778ms)\nWhat is peyote?\tChris Prussing\t-12.823815206632275\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Chris Prussing, was inspired to try, peyote) -> Chris Prussing (5839ms)\nWhat is peyote?\ta very powerful sacrament\t-12.825542614439353\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a very powerful sacrament) -> a very powerful sacrament (5839ms)\nWhat is peyote?\tDistinct Judge McConnell\t-12.844459790527194\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, Distinct Judge McConnell) -> Distinct Judge McConnell (5839ms)\nWhat is peyote?\tPsychedelic kinds\t-12.863959703925739\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Psychedelic kinds, are, Peyote) -> Psychedelic kinds (5839ms)\nWhat is peyote?\ta hallucinogen\t-12.875421248481157\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a hallucinogen) -> a hallucinogen (5839ms)\nWhat is peyote?\tUniversity of Arizona Press\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (University of Arizona Press, Book editions published, Peyote, the divine cactus) -> University of Arizona Press (8054ms)\nWhat is peyote?\tHalf moon way\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Half moon way, Editions, Half moon way : the peyote ritual of Chief White Bear) -> Half moon way (8187ms)\nWhat is peyote?\tThe Peyote cult\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (The Peyote cult: ritual equipment, Edition Of, The Peyote cult) -> The Peyote cult (8270ms)\nWhat is peyote?\tSculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork)\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition of, peyote) -> (Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork), Edition Of, Sculptural Peyote Projects Primer) -> Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork) (8270ms)\nWhat is peyote?\tRock Crystals & Peyote Dreams: Explorations in the Huichol Universe\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Rock Crystals & Peyote Dreams, Editions, Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe) -> Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe (8326ms)\nWhat is peyote?\tPeyote and Other Psychoactive Cacti\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote and Other Psychoactive Cacti, Edition Of, Peyote and Other Psychoactive Cacti) -> Peyote and Other Psychoactive Cacti (8121ms)\nWhat is peyote?\tUniversity of Tennessee Press\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (University of Tennessee Press, Book editions published, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> University of Tennessee Press (8121ms)\nWhat is peyote?\tSculptural Peyote Projects Primer\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork), Edition Of, Sculptural Peyote Projects Primer) -> Sculptural Peyote Projects Primer (8121ms)\nWhat is peyote?\tThe Secret of the Cicadas' Song\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (The Secret of the Cicadas' Song: A Peyote Trip in Prose and Poetry, Edition Of, The Secret of the Cicadas' Song) -> The Secret of the Cicadas' Song (8358ms)\nWhat is peyote?\tRock Crystals & Peyote Dreams\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe, Edition Of, Rock Crystals & Peyote Dreams) -> Rock Crystals & Peyote Dreams (8187ms)\nWhat is peyote?\tPeyote: The Divine Cactus\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote, Editions, Peyote: The Divine Cactus) -> Peyote: The Divine Cactus (8326ms)\nWhat is peyote?\tPeyote: the divine cactus\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote, Editions, Peyote: the divine cactus) -> Peyote: the divine cactus (8270ms)\nWhat is peyote?\tPeyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References, Edition Of, Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References) -> Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References (8326ms)\nWhat is peyote?\tContemporary Beadwork I\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Contemporary Beadwork I: Counted and Charted Patterns for Flat Peyote Stitch, Edition Of, Contemporary Beadwork I) -> Contemporary Beadwork I (8187ms)\nWhat is peyote?\tIn the magic land of Peyote\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (In the magic land of Peyote, Edition Of, In the magic land of Peyote) -> In the magic land of Peyote (8188ms)\nWhat is peyote?\tFarrar, Straus and Giroux\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Farrar, Straus and Giroux, Book editions published, The peyote dance) -> Farrar, Straus and Giroux (7953ms)\nWhat is peyote?\tPeyote And Mescaline (Drugs: the Straight Facts)\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote And Mescaline, Editions, Peyote And Mescaline (Drugs: the Straight Facts)) -> Peyote And Mescaline (Drugs: the Straight Facts) (8326ms)\nWhat is peyote?\tPeyote & Mescaline\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Peyote & Mescaline, Edition Of, Peyote & Mescaline) -> Peyote & Mescaline (8270ms)\nWhat is peyote?\tPipe, Bible, and peyote among the Oglala Lakota\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Pipe, Bible, and peyote among the Oglala Lakota, Editions, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> Pipe, Bible, and peyote among the Oglala Lakota (7851ms)\nWhat is peyote?\tPipe, Bible, and peyote among the Oglala Lakota: a study in religious identity\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity, Edition Of, Pipe, Bible, and peyote among the Oglala Lakota) -> Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity (8326ms)\nWhat is peyote?\tUniversity of Oklahoma Press\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (University of Oklahoma Press, Book editions published, Peyote Religion: A History (Civilization of the American Indian Series)) -> University of Oklahoma Press (7953ms)\nWhat is peyote?\tPeyote Religion: A History (Civilization of the American Indian Series)\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote Religion, Editions, Peyote Religion: A History (Civilization of the American Indian Series)) -> Peyote Religion: A History (Civilization of the American Indian Series) (7822ms)\nWhat is peyote?\tPeyote religion : a history\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition of, peyote) -> (Peyote religion : a history, Edition Of, Peyote Religion) -> Peyote religion : a history (8326ms)\nWhat is peyote?\tThe Peyote cult: ritual equipment\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (The Peyote cult: ritual equipment, Edition Of, The Peyote cult) -> The Peyote cult: ritual equipment (8086ms)\nWhat is peyote?\tPeyote and magic mushrooms\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote and magic mushrooms, Edition Of, Peyote and magic mushrooms) -> Peyote and magic mushrooms (8270ms)\nWhat is peyote?\tPeyote, the divine cactus\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote, the divine cactus, Edition Of, Peyote, the divine cactus) -> Peyote, the divine cactus (8188ms)\nWhat is peyote?\tPeyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)\t-12.882487517056285\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote Hunt, Editions, Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)) -> Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual) (8270ms)\nWhat is peyote?\tFestival day\t-12.90747467322416\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Festival day, were, Peyote Patty) -> Festival day (5839ms)\nWhat is peyote?\tloom bead weaving\t-12.924293966785669\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (loom bead weaving, is, Peyote Stitch) -> loom bead weaving (5839ms)\nWhat is peyote?\tMescaline\t-12.955717054922264\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Mescaline, can be extracted from, peyote) -> Mescaline (5839ms)\nWhat is peyote?\tDr. Hoffman\t-12.959275157022741\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Dr. Hoffman, was doing a lot of, peyote) -> Dr. Hoffman (6399ms)\nWhat is peyote?\ta small , spineless cactus\t-12.97621079064938\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a small , spineless cactus) -> a small , spineless cactus (6399ms)\nWhat is peyote?\tsure i\t-12.979742049070705\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (sure i, was on, peyote) -> sure i (6399ms)\nWhat is peyote?\ta spirit\t-12.980645984316112\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is considered to be, a spirit) -> a spirit (6399ms)\nWhat is peyote?\tmedicine men\t-12.988699290028958\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has been used by, medicine men) -> medicine men (6399ms)\nWhat is peyote?\ta jet engine\t-12.990003393135114\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is like, a jet engine) -> a jet engine (6399ms)\nWhat is peyote?\tC13\t-12.993470629777969\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (C13, was tripping on, peyote) -> C13 (6399ms)\nWhat is peyote?\tan entheogen\t-13.002460293621073\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is used as, an entheogen) -> an entheogen (8358ms)\nWhat is peyote?\tCitrus candies\t-13.020795338539086\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Citrus candies, are loaded with, peyote) -> Citrus candies (8358ms)\nWhat is peyote?\tmodern american culture\t-13.023642123156142\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was brought to, modern american culture) -> modern american culture (8358ms)\nWhat is peyote?\tparticularly their religion\t-13.029831533368409\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (particularly their religion, was centered around, Peyote) -> particularly their religion (8358ms)\nWhat is peyote?\tDesign\t-13.030906532229999\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Design, is stitched using, circular peyote) -> Design (8358ms)\nWhat is peyote?\tpan-Indianism\t-13.034531254805472\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was thus a step toward, pan-Indianism) -> pan-Indianism (8358ms)\nWhat is peyote?\ta small gray-green desert cactus\t-13.059163626575561\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a small gray-green desert cactus) -> a small gray-green desert cactus (8358ms)\nWhat is peyote?\tOne such example\t-13.060416754043198\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (One such example, would be the legal use of, peyote) -> One such example (8386ms)\nWhat is peyote?\tLigusticum porteri\t-13.072855252268992\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Ligusticum porteri, is called, Peyote) -> Ligusticum porteri (8386ms)\nWhat is peyote?\tChrist\t-13.080486171246202\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Christ, is the Goddess of, peyote) -> Christ (8385ms)\nWhat is peyote?\tPeyote paraphernalia\t-13.085698024170476\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Peyote paraphernalia, Edition Of, Peyote paraphernalia) -> Peyote paraphernalia (8415ms)\nWhat is peyote?\tPeyote music\t-13.085698024170476\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Peyote music, Edition Of, Peyote music) -> Peyote music (8415ms)\nWhat is peyote?\tStudents\t-13.115779811708\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Students, must be proficient in, Peyote stitch) -> Students (8445ms)\nWhat is peyote?\ta god-powerful medicine\t-13.124654859040556\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was believed to be, a god-powerful medicine) -> a god-powerful medicine (8445ms)\nWhat is peyote?\t2n = 22\t-13.125608341807798\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, 2n = 22) -> 2n = 22 (8445ms)\nWhat is peyote?\tdream-like\t-13.125685173239415\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, have been described as very, dream-like) -> dream-like (8445ms)\nWhat is peyote?\ta sacrament\t-13.146865466740898\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is conceived of as, a sacrament) -> a sacrament (8445ms)\nWhat is peyote?\tadded height and delight\t-13.162576096262447\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was consumed for, added height and delight) -> added height and delight (8445ms)\nWhat is peyote?\tan introspective experience\t-13.166989556322859\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, an introspective experience) -> an introspective experience (8445ms)\nWhat is peyote?\tgreat importance\t-13.169766538660152\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (great importance, is still employed, ....? Peyote) -> great importance (8471ms)\nWhat is peyote?\tPrem Das\t-13.185709329028683\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Prem Das, had been an avid student of, peyote) -> Prem Das (8471ms)\nWhat is peyote?\ta plant sacrament\t-13.203110819168604\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a plant sacrament) -> a plant sacrament (8471ms)\nWhat is peyote?\ta great Rock / Kosmische / Psychedelic band\t-13.20958267807206\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, are, a great Rock / Kosmische / Psychedelic band) -> a great Rock / Kosmische / Psychedelic band (8471ms)\nWhat is peyote?\ta small cactus\t-13.21614587784587\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a small cactus) -> a small cactus (8471ms)\nWhat is peyote?\ta flowering plant\t-13.234998709931139\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a flowering plant) -> a flowering plant (8471ms)\nWhat is peyote?\tpeyote cult\t-13.239656433510135\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (The Peyote cult, Edition Of, peyote cult) -> peyote cult (8499ms)\nWhat is peyote?\tSchedule\t-13.266251706748344\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, Schedule) -> Schedule (8526ms)\nWhat is peyote?\ta classic stitch\t-13.316288154173224\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a classic stitch) -> a classic stitch (8526ms)\nWhat is peyote?\ta holy medicine\t-13.31914827066082\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is considered, a holy medicine) -> a holy medicine (8526ms)\nWhat is peyote?\ta dangerous hallucinogen\t-13.33049986282491\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a dangerous hallucinogen) -> a dangerous hallucinogen (8526ms)\nWhat is peyote?\treligious ceremonies\t-13.34691717996326\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was used in, religious ceremonies) -> religious ceremonies (8526ms)\nWhat is peyote?\tSanapia\t-13.353912483581777\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was, Sanapia) -> Sanapia (8526ms)\nWhat is peyote?\ta different genus\t-13.369875158914315\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, clearly is, a different genus) -> a different genus (8526ms)\nWhat is peyote?\ta controversial plant\t-13.375237141430183\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, has been, a controversial plant) -> a controversial plant (8526ms)\nWhat is peyote?\ta controlled substance\t-13.387972769430611\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a controlled substance) -> a controlled substance (10702ms)\nWhat is peyote?\tDelica beads\t-13.410061071283968\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Delica beads, are used widely for, peyote stitch) -> Delica beads (10702ms)\nWhat is peyote?\ta healing herb\t-13.411453866680986\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a healing herb) -> a healing herb (10702ms)\nWhat is peyote?\tcapsicum peppers\t-13.435810818693477\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is quite visually distinct from, capsicum peppers) -> capsicum peppers (10702ms)\nWhat is peyote?\ta different drug\t-13.446329809735115\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a different drug) -> a different drug (10702ms)\nWhat is peyote?\tSunday\t-13.469278792432196\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is being released on, Sunday) -> Sunday (10702ms)\nWhat is peyote?\tParker\t-13.531338353958532\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Parker, was given, peyote) -> Parker (10702ms)\nWhat is peyote?\tPeyote\t-13.574205868023085\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote, Edition Of, Peyote) -> Peyote (10964ms)\nWhat is peyote?\tIndians\t-13.59001859270041\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Indians, should be permitted to use, Peyote) -> Indians (10964ms)\nWhat is peyote?\ta Schedule 1 narcotic\t-13.590566055534957\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is listed as, a Schedule 1 narcotic) -> a Schedule 1 narcotic (12533ms)\nWhat is peyote?\tExamples\t-13.621526526320872\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Examples, are, Basic Peyote) -> Examples (12533ms)\nWhat is peyote?\tPrerequisite\t-13.629554061307383\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Prerequisite, Must be proficient with, peyote) -> Prerequisite (12533ms)\nWhat is peyote?\tThe drug\t-13.634229258230686\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> (The drug, is known locally as, Peyote) -> The drug (3473ms)\nWhat is peyote?\tWhalen\t-13.638745081578572\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Whalen, was experimenting with, peyote) -> Whalen (12533ms)\nWhat is peyote?\tFeather Fan\t-13.658171173805115\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Feather Fan, Instance Of, chief symbol of the peyote religion) -> Feather Fan (12533ms)\nWhat is peyote?\tindigenous peoples\t-13.659805194045731\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, has been used by, indigenous peoples) -> indigenous peoples (12533ms)\nWhat is peyote?\tLSD.\t-13.66013571455343\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, has an effect comparable to, LSD.) -> LSD. (12533ms)\nWhat is peyote?\tthe Toilet Bowl\t-13.685703394772643\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, go, $x) -> (Peyote Manning, is going to is, the Toilet Bowl) -> the Toilet Bowl (12560ms)\nWhat is peyote?\tCastaneda\t-13.707855453257874\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Castaneda, was specifically interested in, peyote) -> Castaneda (12560ms)\nWhat is peyote?\tPeyotists\t-13.751499128527135\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Peyotists, are endearingly called, \" Peyote boys) -> Peyotists (12560ms)\nWhat is peyote?\tPeyote Hunt\t-13.81171042840251\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote Hunt, Editions, Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)) -> Peyote Hunt (12560ms)\nWhat is peyote?\tNevada\t-13.822263697811913\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, may have been important in, Nevada) -> Nevada (12587ms)\nWhat is peyote?\tthe Chichimeca and Toltec\t-13.82784348280347\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was known to, the Chichimeca and Toltec) -> the Chichimeca and Toltec (12587ms)\nWhat is peyote?\tanyplace ? slurs\t-13.82807459600184\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, go, $x) -> (a Peyote song, is liable to go, anyplace ? slurs) -> anyplace ? slurs (12587ms)\nWhat is peyote?\tlong as inhabitants\t-13.835232098888794\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote Peyote, has been around as, long as inhabitants) -> long as inhabitants (12587ms)\nWhat is peyote?\tRose Boutonniere\t-13.855564217164373\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Rose Boutonniere, Instance Of, 3-dimensional circular peyote amulet bag) -> Rose Boutonniere (12587ms)\nWhat is peyote?\tbeaded bag\t-13.864202155799337\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (beaded bag, Instance Of, peyote stitch project) -> beaded bag (12587ms)\nWhat is peyote?\tamulet bag\t-13.864202155799337\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (amulet bag, Instance Of, peyote stitch project) -> amulet bag (12587ms)\nWhat is peyote?\ta sacrament of the Native American Church\t-13.866305769146717\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a sacrament of the Native American Church) -> a sacrament of the Native American Church (12587ms)\nWhat is peyote?\ta lifeline\t-13.877222701888188\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (The peyote religion, has been, a lifeline) -> a lifeline (12697ms)\nWhat is peyote?\t1518.133\t-13.900438350692282\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, run, $x) -> (Peyote Radio Theatre, Running Time, 1518.133) -> 1518.133 (12697ms)\nWhat is peyote?\t2630.267\t-13.900438350692282\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, run, $x) -> (Peyote, Running Time, 2630.267) -> 2630.267 (12697ms)\nWhat is peyote?\ta treatment\t-13.915779996544424\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Healing Alcoholism Peyote, has been used as, a treatment) -> a treatment (12697ms)\nWhat is peyote?\tthe 1870\t-13.933522910124266\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (the 1870, have been relying on, peyote) -> the 1870 (12697ms)\nWhat is peyote?\ta source\t-13.93652854942334\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has been used as, a source) -> a source (12697ms)\nWhat is peyote?\ta rather peculiar man\t-13.943034213103033\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (a rather peculiar man, knew a great deal about, peyote) -> a rather peculiar man (4444ms)\nWhat is peyote?\tMarcellus Bearheart Williams\t-13.951514600236244\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Marcellus Bearheart Williams, Instance Of, respected elder shaman and Road Chief of the Peyote Lodge) -> Marcellus Bearheart Williams (12789ms)\nWhat is peyote?\tleast five different genera\t-13.986738216278336\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, had been included in at, least five different genera) -> least five different genera (12789ms)\nWhat is peyote?\tMarquee Bracelet\t-14.013239739214514\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Marquee Bracelet, Instance Of, elegant, flat peyote bracelet using Delica and 15/0 bead) -> Marquee Bracelet (12789ms)\nWhat is peyote?\tEaster Egg earrings\t-14.022244521537427\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be in, peyote) -> (Easter Egg earrings, are weaved in, flat vertical peyote) -> Easter Egg earrings (12789ms)\nWhat is peyote?\tGerald Wayne Primeaux, Sr.\t-14.047403963852425\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Gerald Wayne Primeaux, Sr., Instance Of, generation member of the respected Primeaux family of Peyote singer and songmakers) -> Gerald Wayne Primeaux, Sr. (12789ms)\nWhat is peyote?\tPeyote Cultivation\t-14.054012107770822\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Peyote Cultivation, Instance Of, essential and inseparable part of responsible peyote worship) -> Peyote Cultivation (12789ms)\nWhat is peyote?\t9780806122144\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780806122144, Book Editions, The Peyote cult) -> 9780806122144 (12995ms)\nWhat is peyote?\t9780816506804\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780816506804, Book Editions, Peyote, the divine cactus) -> 9780816506804 (12995ms)\nWhat is peyote?\t9780208014566\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780208014566, Book Editions, The peyote cult) -> 9780208014566 (12789ms)\nWhat is peyote?\t9780446893060\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780446893060, Book Editions, In the magic land of Peyote) -> 9780446893060 (12845ms)\nWhat is peyote?\t9780801491375\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780801491375, Book Editions, Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)) -> 9780801491375 (12817ms)\nWhat is peyote?\t9780805204933\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780805204933, Book Editions, The peyote cult) -> 9780805204933 (12817ms)\nWhat is peyote?\t9780964607705\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780964607705, Book Editions, Contemporary Beadwork I: Counted and Charted Patterns for Flat Peyote Stitch) -> 9780964607705 (12995ms)\nWhat is peyote?\t9780874808698\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780874808698, Book Editions, Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe) -> 9780874808698 (12845ms)\nWhat is peyote?\t9780451620347\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780451620347, Book Editions, Peyote) -> 9780451620347 (12789ms)\nWhat is peyote?\t9780965584210\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780965584210, Book Editions, The Secret of the Cicadas' Song: A Peyote Trip in Prose and Poetry) -> 9780965584210 (12995ms)\nWhat is peyote?\t9780816516544\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780816516544, Book Editions, Peyote: The Divine Cactus) -> 9780816516544 (13022ms)\nWhat is peyote?\t9781889789019\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9781889789019, Book Editions, Peyote Stitch Primer) -> 9781889789019 (12817ms)\nWhat is peyote?\t9789122017127\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9789122017127, Book Editions, The attraction of peyote: an inquiry into the basic conditions of the diffusion of the peyote religion in North America) -> 9789122017127 (12845ms)\nWhat is peyote?\t9780914171959\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780914171959, Book Editions, Peyote and Other Psychoactive Cacti) -> 9780914171959 (12817ms)\nWhat is peyote?\t9780791085455\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780791085455, Book Editions, Peyote And Mescaline (Drugs: the Straight Facts)) -> 9780791085455 (12845ms)\nWhat is peyote?\t9780816506132\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780816506132, Book Editions, Peyote, the divine cactus) -> 9780816506132 (12845ms)\nWhat is peyote?\t9789122004523\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9789122004523, Book Editions, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> 9789122004523 (13022ms)\nWhat is peyote?\t9780892302109\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780892302109, Book Editions, Peyote & Mescaline) -> 9780892302109 (12817ms)\nWhat is peyote?\t9780806120683\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780806120683, Book Editions, Peyote religion : a history) -> 9780806120683 (12845ms)\nWhat is peyote?\t9780374230906\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780374230906, Book Editions, The peyote dance) -> 9780374230906 (12818ms)\nWhat is peyote?\t9781889789057\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9781889789057, Book Editions, Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork)) -> 9781889789057 (12818ms)\nWhat is peyote?\t9780870496233\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780870496233, Book Editions, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> 9780870496233 (12817ms)\nWhat is peyote?\t9780597835735\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780597835735, Book Editions, Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References) -> 9780597835735 (12995ms)\nWhat is peyote?\t9780823917006\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780823917006, Book Editions, Peyote and magic mushrooms) -> 9780823917006 (12995ms)\nWhat is peyote?\t9780806124575\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780806124575, Book Editions, Peyote Religion: A History (Civilization of the American Indian Series)) -> 9780806124575 (12845ms)\nWhat is peyote?\t9780815605577\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780815605577, Book Editions, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> 9780815605577 (12995ms)\nWhat is peyote?\t9780816516537\t-14.06052472975238\tWhat is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780816516537, Book Editions, Peyote: The Divine Cactus) -> 9780816516537 (12995ms)\nWhat is peyote?\tLone Tree\t-14.071254270523447\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Lone Tree, Instance Of, member of the Peyote Church) -> Lone Tree (13022ms)\nWhat is peyote?\tP. aselliformis\t-14.093393964083216\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (P. aselliformis, Instance Of, well known medicinal peyote) -> P. aselliformis (13022ms)\nWhat is peyote?\tancient cultural significance\t-14.09840014478629\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, has, ancient cultural significance) -> ancient cultural significance (13022ms)\nWhat is peyote?\tTooty Frooty\t-14.098906063205964\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Tooty Frooty, Instance Of, long, skinny peyote tube) -> Tooty Frooty (13022ms)\nWhat is peyote?\tKimberly House\t-14.098906063205964\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Kimberly House, Instance Of, open pavilion and adjoining peyote) -> Kimberly House (13077ms)\nWhat is peyote?\tDanny Trejo\t-14.098906063205964\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Danny Trejo, Instance Of, peyote-eating desert guru) -> Danny Trejo (13022ms)\nWhat is peyote?\tDutch Spiral\t-14.098906063205964\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Dutch Spiral, Instance Of, simple variation of tubular odd count peyote stitch) -> Dutch Spiral (13022ms)\nWhat is peyote?\tan outstanding job\t-14.135690021007902\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, do, $x) -> (Los Peyotes, truly do, an outstanding job) -> an outstanding job (13077ms)\nWhat is peyote?\tGerald Primeaux, Sr.\t-14.138287919518358\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Gerald Primeaux, Sr., Instance Of, fifth generation member of the respected Primeaux family of Peyote singer and songmakers) -> Gerald Primeaux, Sr. (13077ms)\nWhat is peyote?\tRev. Anne Zapf\t-14.138287919518358\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Rev. Anne Zapf, Instance Of, apostle and sacrament steward of the Peyote Way Church) -> Rev. Anne Zapf (13077ms)\nWhat is peyote?\tN-methylmescaline\t-14.138287919518358\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (N-methylmescaline, Instance Of, trace component of peyote) -> N-methylmescaline (13077ms)\nWhat is peyote?\tTim's Grandfather\t-14.138287919518358\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Tim's Grandfather, Instance Of, peyote man) -> Tim's Grandfather (13077ms)\nWhat is peyote?\tThe hills\t-14.171064638272295\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (The hills, are covered with, peyote) -> The hills (13159ms)\nWhat is peyote?\tlarge taproots and care\t-14.171942137773517\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote plants, have pretty, large taproots and care) -> large taproots and care (13159ms)\nWhat is peyote?\tThe strips\t-14.173503354701834\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (The strips, are, Peyote) -> The strips (13159ms)\nWhat is peyote?\ta narcotic\t-14.182366842215801\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a narcotic) -> a narcotic (13159ms)\nWhat is peyote?\tstitch on the BRACELET\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (stitch on the BRACELET, Instance Of, PEYOTE STITCH) -> stitch on the BRACELET (13159ms)\nWhat is peyote?\tBangle Bracelet or Necklace by Isabee Thiebaut Demski\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Bangle Bracelet or Necklace by Isabee Thiebaut Demski, Instance Of, peyote project) -> Bangle Bracelet or Necklace by Isabee Thiebaut Demski (13307ms)\nWhat is peyote?\tSanta Fe\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Santa Fe, Instance Of, peyote's natural growth area) -> Santa Fe (13159ms)\nWhat is peyote?\tPeyote Church of God\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Peyote Church of God, Instance Of, peyote church) -> Peyote Church of God (13307ms)\nWhat is peyote?\tFlat Peyote Banner Pin by Judi Wood\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Flat Peyote Banner Pin by Judi Wood, Instance Of, easy peyote project) -> Flat Peyote Banner Pin by Judi Wood (13307ms)\nWhat is peyote?\tAvailable now on e-Bay\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Available now on e-Bay, Instance Of, 4 color Peyote Rope Stitch Bolo Tie) -> Available now on e-Bay (13307ms)\nWhat is peyote?\thighlight of the book\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (highlight of the book, Instance Of, full-color photo gallery of peyote-stitched beadwork) -> highlight of the book (13307ms)\nWhat is peyote?\tPart II of Allen Ginsberg's Howl''\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Part II of Allen Ginsberg's Howl'', Instance Of, peyote-induced hallucination of a hotel) -> Part II of Allen Ginsberg's Howl'' (13307ms)\nWhat is peyote?\tSeed Bead Strip Tease by Kathie Schroeder\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Seed Bead Strip Tease by Kathie Schroeder, Instance Of, sampler of peyote strip) -> Seed Bead Strip Tease by Kathie Schroeder (13307ms)\nWhat is peyote?\tS. disciformis\t-14.183181874953501\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (S. disciformis, Instance Of, well known peyote species) -> S. disciformis (13307ms)\nWhat is peyote?\t500 B.C.\t-14.183559909540241\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, have been found dating back to, 500 B.C.) -> 500 B.C. (13337ms)\nWhat is peyote?\ta take-no-prisoners\t-14.243295149487324\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote rituals, has evolved into, a take-no-prisoners) -> a take-no-prisoners (13337ms)\nWhat is peyote?\tan Easter Egg\t-14.245508944100063\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be in, peyote) -> (an Easter Egg, is weaved in, flat vertical peyote) -> an Easter Egg (13337ms)\nWhat is peyote?\tthe military\t-14.246035815583143\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (the military, were barred from using, peyote) -> the military (13337ms)\nWhat is peyote?\tuse\t-14.293077255792596\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has a long history of, use) -> use (13337ms)\nWhat is peyote?\tOregon law\t-14.307741371759313\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was a crime under, Oregon law) -> Oregon law (13367ms)\nWhat is peyote?\tBeauty\t-14.30944690751491\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be in, peyote) -> (Beauty, is found in, the all-night peyote ceremonies) -> Beauty (13367ms)\nWhat is peyote?\tBead Patterns Boutique\t-14.332361762869168\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be on, $x) -> (peyote cuffs, are all listed on, Bead Patterns Boutique) -> Bead Patterns Boutique (13367ms)\nWhat is peyote?\tthe Mescalero Apache\t-14.34712004953051\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (the Mescalero Apache, knew about, peyote and Christianity) -> the Mescalero Apache (4444ms)\nWhat is peyote?\treligious rights\t-14.36529176131174\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Hairstyles and peyote, have been blessed as, religious rights) -> religious rights (13367ms)\nWhat is peyote?\t10,000 years\t-14.367458065999863\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has been used for over, 10,000 years) -> 10,000 years (13367ms)\nWhat is peyote?\tThe N-acetyl analogue\t-14.383443814549157\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be in, peyote) -> (The N-acetyl analogue, has been found in, the peyote plant) -> The N-acetyl analogue (13367ms)\nWhat is peyote?\ta ritual setting\t-14.384999003429439\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, do, $x) -> (peyote, is done in, a ritual setting) -> a ritual setting (13367ms)\nWhat is peyote?\tDutch spiral\t-14.386392382067694\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Dutch spiral, Instance Of, peyote stitch variation) -> Dutch spiral (13367ms)\nWhat is peyote?\ta type of beading stitch\t-14.3918115904052\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a type of beading stitch) -> a type of beading stitch (13398ms)\nWhat is peyote?\thallucinogenic properties\t-14.396542003136567\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, also has, hallucinogenic properties) -> hallucinogenic properties (13398ms)\nWhat is peyote?\tthe US and Canada\t-14.396653598654947\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has spread northward into, the US and Canada) -> the US and Canada (13398ms)\nWhat is peyote?\ta cross or rosette\t-14.423949104702956\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be on, $x) -> (the Peyote plant, is placed on, a cross or rosette) -> a cross or rosette (13398ms)\nWhat is peyote?\tThe Cellini spiral\t-14.426859854355671\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (The Cellini spiral, is a modified version of, tubular peyote) -> The Cellini spiral (13398ms)\nWhat is peyote?\tmescaline\t-14.430461780576799\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, mescaline) -> mescaline (13398ms)\nWhat is peyote?\ta resounding success\t-14.44053955865289\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Our peyote experiments, have been, a resounding success) -> a resounding success (13398ms)\nWhat is peyote?\tbeneficial effects\t-14.441636089317738\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote , cocaine & marijuana, can have, beneficial effects) -> beneficial effects (13398ms)\nWhat is peyote?\tDis\t-14.446204738197672\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Dis, Instance Of, peyote song) -> Dis (13595ms)\nWhat is peyote?\tdreadlocks\t-14.464055886567813\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (dreadlocks, are, peyote satiates) -> dreadlocks (13595ms)\nWhat is peyote?\ta teacher of the right path to walk\t-14.539893786415941\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a teacher of the right path to walk) -> a teacher of the right path to walk (13595ms)\nWhat is peyote?\tNative people\t-14.54592799747012\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, has increased somewhat among, Native people) -> Native people (13595ms)\nWhat is peyote?\tlong roots\t-14.55222538054403\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote?s tale, has, long roots) -> long roots (13595ms)\nWhat is peyote?\ta long time\t-14.557169355221426\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (The peyote cactus, has been used for, a long time) -> a long time (13595ms)\nWhat is peyote?\ta sacrament for all the children of the Earth\t-14.557893306588756\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a sacrament for all the children of the Earth) -> a sacrament for all the children of the Earth (13595ms)\nWhat is peyote?\tpeyote-induced\t-14.562448538611408\tWhat is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, make of, peyote) -> (peyote-induced, only made the prospect of, peyote) -> peyote-induced (13595ms)\nWhat is peyote?\tcacti\t-17.5305696966461\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (cacti, known as, peyote) -> cacti (4444ms)\nWhat is peyote?\tbeaders\t-18.16395614638265\tWhat is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (beaders, knew, peyote stitch) -> beaders (4457ms)\nWhere was the Andersonville Prison?\tEmigranten\t-2.1020298020173454\tWhere was the Andersonville Prison? -> $x: (the Andersonville Prison, was in, $x) -> (the dreaded Andersonville prison, was told in, Emigranten) -> Emigranten (1201ms)\nWhere was the Andersonville Prison?\toperation\t-6.297804841599822\tWhere was the Andersonville Prison? -> $x: (the Andersonville Prison, was in, $x) -> $x: (andersonville prison, in, $x) -> (Andersonville Prison, was in, operation) -> operation (2133ms)\nWhere was the Andersonville Prison?\tthe National Cemetery\t-6.6962931040007945\tWhere was the Andersonville Prison? -> $x: (the Andersonville Prison, was in, $x) -> $x: (andersonville prison, in, $x) -> (Andersonville prison pen, lies buried in, the National Cemetery) -> the National Cemetery (2134ms)\nWhere was the Andersonville Prison?\tBoston\t-9.951373094071212\tWhere was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: (the andersonville prison, place, $x) -> (The soldier's story of his captivity at Andersonville, Belle Isle, and other Rebel prisons, Place of publication, Boston) -> Boston (5543ms)\nWhere was the Andersonville Prison?\tCushman\t-10.108125827805473\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (Cushman, was sent to, the Andersonville Prison) -> Cushman (3427ms)\nWhere was the Andersonville Prison?\tGeorgia\t-10.403388629289317\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (Georgia, was also the site of, the infamous Andersonville Prison) -> Georgia (3427ms)\nWhere was the Andersonville Prison?\tKnapp\t-10.44773276863618\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (Knapp, was also a prisoner at, the Andersonville prison camp) -> Knapp (3427ms)\nWhere was the Andersonville Prison?\twar crimes\t-10.561376641201235\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: (the andersonville prison, be, $x) -> (the Andersonville prison, was charged with, war crimes) -> war crimes (3427ms)\nWhere was the Andersonville Prison?\tNew York City\t-11.131767675084298\tWhere was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: (the andersonville prison, place, $x) -> (This was Andersonville: the true story of Andersonville Military Prison, Place of publication, New York City) -> New York City (5542ms)\nWhere was the Andersonville Prison?\tChauncey\t-11.74979558009105\tWhere was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: ($x, die, the andersonville prison) -> (Chauncey, died at, the Andersonville Prison) -> Chauncey (5445ms)\nWhere was the Andersonville Prison?\tprisoner\t-12.139713558411234\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (prisoner, was imprisoned in, the infamous Andersonville Prison) -> prisoner (3427ms)\nWhere was the Andersonville Prison?\tFOX\t-12.221092762887519\tWhere was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: ($x, die, the andersonville prison) -> (FOX, died in, the Andersonville prison) -> FOX (5444ms)\nWhere was the Andersonville Prison?\tEarthworks\t-12.346420898696175\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (Earthworks, were erected about, Andersonville prison) -> Earthworks (6549ms)\nWhere was the Andersonville Prison?\tthe Civil war\t-12.439027675914417\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (the Civil war, was confined in, Andersonville prison) -> the Civil war (6549ms)\nWhere was the Andersonville Prison?\tThomas Eston\t-12.496914403074117\tWhere was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: ($x, die, the andersonville prison) -> (Thomas Eston, died in, the Andersonville prison pen) -> Thomas Eston (5444ms)\nWhere was the Andersonville Prison?\tthe most dreaded\t-12.687437835878399\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: (the andersonville prison, be, $x) -> (The Andersonville Prison, was, the most dreaded) -> the most dreaded (3427ms)\nWhere was the Andersonville Prison?\tHOLLINGSHEAD\t-12.810833754422092\tWhere was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: ($x, die, the andersonville prison) -> (HOLLINGSHEAD, died in, the Andersonville prison) -> HOLLINGSHEAD (5444ms)\nWhere was the Andersonville Prison?\tthe leading horseman\t-12.879378513896269\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (the leading horseman, is, the dreaded Andersonville Prison) -> the leading horseman (3516ms)\nWhere was the Andersonville Prison?\tBelle Isle\t-13.00356271281014\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: (andersonville prison, be, $x) -> (Andersonville prison camp, was sent to, Belle Isle) -> Belle Isle (6549ms)\nWhere was the Andersonville Prison?\tthe Union army\t-13.201490408681156\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (the Union army, was a prisoner at, Andersonville prison) -> the Union army (6583ms)\nWhere was the Andersonville Prison?\tvariety\t-13.271307266775601\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (variety, are, Andersonville prison) -> variety (6583ms)\nWhere was the Andersonville Prison?\ta Union prisoner\t-13.379125238577629\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: (andersonville prison, be, $x) -> (Andersonville Prison, pretend to be, a Union prisoner) -> a Union prisoner (6583ms)\nWhere was the Andersonville Prison?\tUnion sailors\t-13.52662720814768\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (Union sailors, were sent to, Andersonville prison) -> Union sailors (6583ms)\nWhere was the Andersonville Prison?\tIra DeForest WARREN\t-13.64916826839936\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (Ira DeForest WARREN, was a prisoner in, Andersonville Prison) -> Ira DeForest WARREN (6583ms)\nWhere was the Andersonville Prison?\talive\t-14.24479260600296\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (alive, were taken to, Andersonville Prison) -> alive (6615ms)\nWhere was the Andersonville Prison?\tthe Union Army\t-14.255796797851385\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, have, andersonville prison) -> (the Union Army, had died in, Andersonville Prison) -> the Union Army (6615ms)\nWhere was the Andersonville Prison?\ta stone\t-14.341237662108936\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: (andersonville prison, be, $x) -> (Andersonville prison, is commemorated on, a stone) -> a stone (6615ms)\nWhere was the Andersonville Prison?\tThe carpenter\t-14.461858170429114\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (The carpenter, had once been a prisoner in, Andersonville prison) -> The carpenter (6615ms)\nWhere was the Andersonville Prison?\tthe bright drummer boy\t-14.563092387319097\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (the bright drummer boy, was in, Andersonville prison) -> the bright drummer boy (6615ms)\nWhere was the Andersonville Prison?\tThe above Flag\t-14.869844453044475\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (The above Flag, was raised in, Andersonville Prison) -> The above Flag (6615ms)\nWhere was the Andersonville Prison?\t45,000 Union soldiers\t-15.093380398340713\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (45,000 Union soldiers, were confined at, Andersonville Prison) -> 45,000 Union soldiers (6647ms)\nWhere was the Andersonville Prison?\tVariety for a dog\t-15.460626523135316\tWhere was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> which organ be be the andersonville prison ? -> $x: ($x, instance of, organ) ($x, be be, the andersonville prison) -> $x: ($x, instance of, organ) ($x, be be, andersonville prison) -> (Variety for a dog, Instance Of, meat, soft digestable bone, organ) (variety, are, Andersonville prison) -> Variety for a dog (7934ms)\nWhen was the company founded?\t1909\t2.1800845556126975\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1909) -> 1909 (4195ms)\nWhen was the company founded?\t1914\t2.148172135158499\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1914) -> 1914 (4195ms)\nWhen was the company founded?\t1990\t1.867184593101853\tWhen was the company founded? -> $x: (the company, was founded on, $x) -> (The company, was founded on, 1990) -> 1990 (4195ms)\nWhen was the company founded?\t1974\t1.6111368820327852\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1974) -> 1974 (4195ms)\nWhen was the company founded?\t1975\t1.5885194226547186\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1975) -> 1975 (5664ms)\nWhen was the company founded?\t1946\t1.586034208878376\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (the Company, was founded in, 1946) -> 1946 (5664ms)\nWhen was the company founded?\t1994\t1.575418172337002\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1994) -> 1994 (5664ms)\nWhen was the company founded?\t1912\t1.572658425816333\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1912) -> 1912 (5664ms)\nWhen was the company founded?\t1964\t1.5620022112680565\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1964) -> 1964 (5664ms)\nWhen was the company founded?\t2000\t1.5550170534730499\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 2000) -> 2000 (7941ms)\nWhen was the company founded?\t2001\t1.5550170534730499\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 2001) -> 2001 (7940ms)\nWhen was the company founded?\t1896\t1.5499335254409297\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 1896) -> 1896 (7940ms)\nWhen was the company founded?\t1873\t1.5466862471555687\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1873) -> 1873 (7940ms)\nWhen was the company founded?\t1954\t1.5405422292828725\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1954) -> 1954 (7940ms)\nWhen was the company founded?\t1867\t1.539486078109539\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1867) -> 1867 (7940ms)\nWhen was the company founded?\t1932\t1.5320150962334798\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1932) -> 1932 (8805ms)\nWhen was the company founded?\t1849\t1.5310806933556615\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 1849) -> 1849 (8805ms)\nWhen was the company founded?\t1920\t1.5239473996605057\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1920) -> 1920 (8805ms)\nWhen was the company founded?\t2004\t1.5201411104189204\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 2004) -> 2004 (9255ms)\nWhen was the company founded?\t1895\t1.5201411104189204\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1895) -> 1895 (8804ms)\nWhen was the company founded?\t1848\t1.5201411104189204\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1848) -> 1848 (9254ms)\nWhen was the company founded?\t1997\t1.5201411104189204\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1997) -> 1997 (9254ms)\nWhen was the company founded?\t1919\t1.5201411104189204\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1919) -> 1919 (8804ms)\nWhen was the company founded?\t1922\t1.5201411104189204\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1922) -> 1922 (8804ms)\nWhen was the company founded?\t1869\t1.5201411104189204\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1869) -> 1869 (9254ms)\nWhen was the company founded?\t1921\t1.5201411104189204\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1921) -> 1921 (9255ms)\nWhen was the company founded?\t1870\t1.508338903618823\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1870) -> 1870 (10150ms)\nWhen was the company founded?\t1943\t1.4952402353643621\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1943) -> 1943 (10150ms)\nWhen was the company founded?\t1840\t1.4914091852374871\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1840) -> 1840 (10150ms)\nWhen was the company founded?\t1776\t1.4914091852374871\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1776) -> 1776 (10151ms)\nWhen was the company founded?\t1828\t1.4657068151424943\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1828) -> 1828 (10150ms)\nWhen was the company founded?\t1735\t1.4657068151424943\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1735) -> 1735 (10150ms)\nWhen was the company founded?\t1775\t1.4453056962785422\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1775) -> 1775 (10733ms)\nWhen was the company founded?\t1816\t1.4453056962785422\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1816) -> 1816 (10733ms)\nWhen was the company founded?\t2009\t1.3661839104792368\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 2009) -> 2009 (10733ms)\nWhen was the company founded?\t1996\t1.3661839104792368\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1996) -> 1996 (10733ms)\nWhen was the company founded?\t1983\t1.3661839104792368\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (the Company, was founded in, 1983) -> 1983 (10733ms)\nWhen was the company founded?\t1987\t1.3661839104792368\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1987) -> 1987 (10733ms)\nWhen was the company founded?\t1998\t1.2666279723840055\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, has been founded in, 1998) -> 1998 (11424ms)\nWhen was the company founded?\t1871\t1.2666279723840055\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, had been founded in, 1871) -> 1871 (11424ms)\nWhen was the company founded?\t1773\t0.6889272881571258\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be begin in, $x) -> (the company, was begun in, 1773) -> 1773 (18864ms)\nWhen was the company founded?\t2003\t0.5317071063827705\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be initiate in, $x) -> (the two companies, were initiated in, 2003) -> 2003 (13235ms)\nWhen was the company founded?\t1898\t0.5202823297359758\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (the company, was bought in, 1898) -> 1898 (11424ms)\nWhen was the company founded?\t1831\t0.5202823297359758\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be charter in, $x) -> (the company, was chartered in, 1831) -> 1831 (11424ms)\nWhen was the company founded?\t2008\t0.4936866168149625\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (The daughter company, was bought in, 2008) -> 2008 (12135ms)\nWhen was the company founded?\t1992\t0.4636936622336649\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be initiate in, $x) -> (The company, was initiated in, 1992) -> 1992 (13235ms)\nWhen was the company founded?\t2006\t0.4537952695618803\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 2006) -> 2006 (13851ms)\nWhen was the company founded?\tJanuary 2010\t0.44937389633329783\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, January 2010) -> January 2010 (12135ms)\nWhen was the company founded?\t1989\t0.44689390980365085\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be close in, $x) -> (the company, was closed in, 1989) -> 1989 (17218ms)\nWhen was the company founded?\t2005\t0.44515735300549464\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 2005) -> 2005 (13852ms)\nWhen was the company founded?\t1988\t0.44488867931677367\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The Company, was created in, 1988) -> 1988 (13852ms)\nWhen was the company founded?\t1927\t0.4359207165300254\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be rename in, $x) -> (the company, was renamed in, 1927) -> 1927 (18542ms)\nWhen was the company founded?\t2010\t0.42662192719421066\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (The company, was bought in, 2010) -> 2010 (12135ms)\nWhen was the company founded?\t1852\t0.4195483305808483\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be disband in, $x) -> (the company, was disbanded in, 1852) -> 1852 (15312ms)\nWhen was the company founded?\t1638\t0.4185995760524954\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be begin in, $x) -> (The Company, was begun in, 1638) -> 1638 (18864ms)\nWhen was the company founded?\t1984\t0.41646443231659225\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 1984) -> 1984 (15312ms)\nWhen was the company founded?\tJuly 2006\t0.4144979532791684\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2006) -> July 2006 (13235ms)\nWhen was the company founded?\tJuly 2008\t0.4144979532791684\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2008) -> July 2008 (13235ms)\nWhen was the company founded?\tJanuary 2012\t0.41350020482036154\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, January 2012) -> January 2012 (13235ms)\nWhen was the company founded?\t1977\t0.40887342023584283\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (The company, was bought in, 1977) -> 1977 (13235ms)\nWhen was the company founded?\t1928\t0.40179982362248046\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be close in, $x) -> (the company, was closed in, 1928) -> 1928 (17218ms)\nWhen was the company founded?\tNovember 2000\t0.40002312908899196\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2000) -> November 2000 (15842ms)\nWhen was the company founded?\tJuly 2007\t0.40002312908899196\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2007) -> July 2007 (16230ms)\nWhen was the company founded?\tAugust 2000\t0.40002312908899196\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, August 2000) -> August 2000 (15842ms)\nWhen was the company founded?\tFebruary 2004\t0.40002312908899196\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, February 2004) -> February 2004 (15842ms)\nWhen was the company founded?\t1995\t0.39851820764379875\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 1995) -> 1995 (16230ms)\nWhen was the company founded?\t1913\t0.38777784677243377\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be organize in, $x) -> (The company, was organized in, 1913) -> 1913 (17798ms)\nWhen was the company founded?\t1886\t0.38777784677243377\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be organize in, $x) -> (The company, was organized in, 1886) -> 1886 (17798ms)\nWhen was the company founded?\t1986\t0.38412369421392656\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 1986) -> 1986 (17799ms)\nWhen was the company founded?\t1864\t0.38323164568797763\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (The company, was bought in, 1864) -> 1864 (18004ms)\nWhen was the company founded?\t1970\t0.3815884892624628\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 1970) -> 1970 (18004ms)\nWhen was the company founded?\tApril 1994\t0.37962201022503983\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, April 1994) -> April 1994 (18542ms)\nWhen was the company founded?\tNovember 2005\t0.37962201022503983\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2005) -> November 2005 (18542ms)\nWhen was the company founded?\tNovember 2001\t0.37962201022503983\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2001) -> November 2001 (18004ms)\nWhen was the company founded?\tOctober 1998\t0.37962201022503983\tWhen was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, October 1998) -> October 1998 (18004ms)\nWhat is pastrami made of?\ta cut\t-4.930307002358361\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Pastrami, ideally is made from, a cut) -> a cut (5606ms)\nWhat is pastrami made of?\tbrisket or beef navel\t-4.93832352081483\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Traditional pastrami, is made from, brisket or beef navel) -> brisket or beef navel (5607ms)\nWhat is pastrami made of?\tbeef brisket\t-4.944086305493759\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Pastrami, is made from, beef brisket) -> beef brisket (5606ms)\nWhat is pastrami made of?\tbeef\t-5.056377718745544\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> (True pastrami, is made of, beef) -> beef (5120ms)\nWhat is pastrami made of?\tgourmet meats\t-5.369594754078334\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (The Reuben and Hot Pastrami, are made from, gourmet meats) -> gourmet meats (5606ms)\nWhat is pastrami made of?\t100 % brisket\t-5.47439750094213\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Our pastrami, is made from, 100 % brisket) -> 100 % brisket (5619ms)\nWhat is pastrami made of?\ta secret recipe\t-6.305867859602824\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, make from, $x) -> (pastrami, made from, a secret recipe) -> a secret recipe (5987ms)\nWhat is pastrami made of?\ta brisket\t-6.485505249794368\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, compose of, $x) -> (The real pastrami, is composed of, a brisket) -> a brisket (5835ms)\nWhat is pastrami made of?\tthe forequarter\t-6.974620170026348\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Pastrami, is traditionally made from, the forequarter) -> the forequarter (5619ms)\nWhat is pastrami made of?\tthe deli section\t-8.016273421530002\tWhat is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, make from, $x) -> (a pastrami or roast beef sandwich, made from, the deli section) -> the deli section (5987ms)\nWhat is pastrami made of?\ta pound\t-8.28451057392602\tWhat is pastrami made of? -> what [ be pastrami ] make of ? -> what be pastrami be make ? -> $x: (pastrami, be make, $x) -> (hot pastrami sandwich, is made with over, a pound) -> a pound (7129ms)\nWhat is pastrami made of?\t6 ounces\t-8.825015628604053\tWhat is pastrami made of? -> what [ be pastrami ] make of ? -> what be pastrami be make ? -> $x: (pastrami, be make, $x) -> (Our standard pastrami sandwich, is made with, 6 ounces) -> 6 ounces (7263ms)\nWhat is pastrami made of?\tthe premises\t-10.63771781511945\tWhat is pastrami made of? -> what [ be pastrami ] make of ? -> what be pastrami be make ? -> $x: (pastrami, be make, $x) -> (the corned beef and pastrami, will be made on, the premises) -> the premises (7334ms)\nWhat is pastrami made of?\torder\t-11.600442685230906\tWhat is pastrami made of? -> what be [ pastrami make ] of ? -> what be pastrami make to do ? -> $x: (pastrami, make to, $x) -> (decent pastrami sandwiches, made fresh to, order) -> order (7334ms)\nWhere are the National Archives?\tPrague\t-0.32765848764642924\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is in, Prague) -> Prague (1175ms)\nWhere are the National Archives?\tParis\t-0.5805442497471331\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The French National Archives, are in, Paris) -> Paris (1175ms)\nWhere are the National Archives?\tCanberra\t-0.6996777006489356\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are also based in, Canberra) -> Canberra (1176ms)\nWhere are the National Archives?\tFlorida\t-0.7721818814778691\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives Workshop, was held in, Florida) -> Florida (1176ms)\nWhere are the National Archives?\tRecords\t-0.8776106168110016\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are in, Records) -> Records (1175ms)\nWhere are the National Archives?\tSucre\t-1.0464923802145405\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Sucre) -> Sucre (2059ms)\nWhere are the National Archives?\tWashington\t-1.0562185887334876\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Washington) -> Washington (2059ms)\nWhere are the National Archives?\tParkes\t-1.2667273919835662\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is located in, Parkes) -> Parkes (2059ms)\nWhere are the National Archives?\tEnglish\t-1.2823450955701454\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the Hungarian National Archives, is available in, English) -> English (2059ms)\nWhere are the National Archives?\tthe USA\t-1.388130224243659\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are made in, the USA) -> the USA (2059ms)\nWhere are the National Archives?\tWashington DC\t-1.5894715526906364\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Washington DC) -> Washington DC (2059ms)\nWhere are the National Archives?\tTripoli\t-1.9118418425832342\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are located in, Tripoli) -> Tripoli (2087ms)\nWhere are the National Archives?\tDar es Salaam\t-2.062664704110177\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archives, are also located in, Dar es Salaam) -> Dar es Salaam (2087ms)\nWhere are the National Archives?\tresearch guides\t-2.1161444661931452\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are described in, research guides) -> research guides (2087ms)\nWhere are the National Archives?\tmuch better condition\t-2.1391336288354257\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are in, much better condition) -> much better condition (2087ms)\nWhere are the National Archives?\tnegotiations\t-2.18365847264968\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is currently in, negotiations) -> negotiations (2087ms)\nWhere are the National Archives?\tcooperative projects\t-2.2261478012446663\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archive, are involved in, cooperative projects) -> cooperative projects (2132ms)\nWhere are the National Archives?\tessence\t-2.2384141465202463\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives Experience, is in, essence) -> essence (2132ms)\nWhere are the National Archives?\tKew\t-2.2862082784401196\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are based in, Kew) -> Kew (2132ms)\nWhere are the National Archives?\tcourt\t-2.3144551783581555\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Security Archive, is in, court) -> court (2132ms)\nWhere are the National Archives?\tan extremely poor state\t-2.329410119941897\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archive, is in, an extremely poor state) -> an extremely poor state (2132ms)\nWhere are the National Archives?\tearly censuses\t-2.3672566189445647\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was included in, early censuses) -> early censuses (2132ms)\nWhere are the National Archives?\ta constant battle\t-2.370776846317937\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is engaged in, a constant battle) -> a constant battle (2281ms)\nWhere are the National Archives?\tan area\t-2.376918259336256\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is located in, an area) -> an area (2281ms)\nWhere are the National Archives?\tan accessible style\t-2.406399906308159\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is written in, an accessible style) -> an accessible style (2281ms)\nWhere are the National Archives?\tPDF.\t-2.432622687735175\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archives, are particularly interested in, PDF.) -> PDF. (2281ms)\nWhere are the National Archives?\ttwo different buildings\t-2.5761659088150894\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is housed in, two different buildings) -> two different buildings (2281ms)\nWhere are the National Archives?\tan iconic building\t-2.5807857012169126\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archives, are usually housed in, an iconic building) -> an iconic building (2466ms)\nWhere are the National Archives?\tR. J. Whitwell\t-2.6709093054519966\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, has been translated in, R. J. Whitwell) -> R. J. Whitwell (2466ms)\nWhere are the National Archives?\tjeopardy\t-2.8361077899267775\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archive, was in, jeopardy) -> jeopardy (2466ms)\nWhere are the National Archives?\taccordance\t-2.844466466544046\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, shall be authenticated in, accordance) -> accordance (2466ms)\nWhere are the National Archives?\ta project\t-2.9212832677242773\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The Dutch National Archives, are involved in, a project) -> a project (2466ms)\nWhere are the National Archives?\tprogress\t-2.9276773198453974\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is now in, progress) -> progress (2503ms)\nWhere are the National Archives?\ta series\t-2.95285984369329\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is the latest in, a series) -> a series (2503ms)\nWhere are the National Archives?\tcharge\t-2.957312659917908\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Music Archives, was in, charge) -> charge (2503ms)\nWhere are the National Archives?\tAuthorities Concept Scheme\t-2.9648978804975066\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (Archives and national socialism, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2503ms)\nWhere are the National Archives?\tTopical Terms Concept Scheme\t-2.992386761096666\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (Archives and national socialism, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (2534ms)\nWhere are the National Archives?\tscandal\t-2.9988053796651406\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was embroiled in, scandal) -> scandal (2534ms)\nWhere are the National Archives?\tthe Regional Archives\t-3.031980358560286\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are kept in, the Regional Archives) -> the Regional Archives (2534ms)\nWhere are the National Archives?\tabsentia\t-3.170990647060278\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Security Archive, was cited in, absentia) -> absentia (2534ms)\nWhere are the National Archives?\ta fire\t-3.177381520070787\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archive, was destroyed in, a fire) -> a fire (2563ms)\nWhere are the National Archives?\tthe Gelman Library\t-3.187539916792843\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Security Archive, is housed in, the Gelman Library) -> the Gelman Library (2564ms)\nWhere are the National Archives?\tmemory\t-3.207242763825892\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives award, is named in, memory) -> memory (2564ms)\nWhere are the National Archives?\tBelmopan\t-3.2621566844095\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (Its national archives, are in, Belmopan) -> Belmopan (2713ms)\nWhere are the National Archives?\tthe business\t-3.5440066019675136\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, be in, the business) -> the business (2789ms)\nWhere are the National Archives?\tthe possession\t-3.722187154706867\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was in, the possession) -> the possession (2788ms)\nWhere are the National Archives?\tthe process\t-3.7414489048417225\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is in, the process) -> the process (2815ms)\nWhere are the National Archives?\tBoulevard 9\t-3.83256019784913\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are situated in, Boulevard 9) -> Boulevard 9 (2849ms)\nWhere are the National Archives?\tthe 60s\t-3.8475915774769516\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Film Archive, was created in, the 60s) -> the 60s (2849ms)\nWhere are the National Archives?\tRecord Group 59\t-3.9668046295932307\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are contained in, Record Group 59) -> Record Group 59 (2849ms)\nWhere are the National Archives?\tFact Sheet 1\t-3.967688815994327\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are given in, Fact Sheet 1) -> Fact Sheet 1 (2849ms)\nWhere are the National Archives?\tthe centre\t-3.9792308386791513\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are located in, the centre) -> the centre (2849ms)\nWhere are the National Archives?\tthe form\t-3.9928859918931923\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, have been in, the form) -> the form (2904ms)\nWhere are the National Archives?\tJanuary\t-3.9965329826369125\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, made in, January) -> January (2904ms)\nWhere are the National Archives?\tRecord Group 127\t-4.004825119161038\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are found in, Record Group 127) -> Record Group 127 (2904ms)\nWhere are the National Archives?\tthe classroom\t-4.0120404937864524\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, might be useful in, the classroom) -> the classroom (2904ms)\nWhere are the National Archives?\tthe Squadron\t-4.062054077226282\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National Archives, else was in, the Squadron) -> the Squadron (2904ms)\nWhere are the National Archives?\tthe database\t-4.064506039023325\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is found in, the database) -> the database (2972ms)\nWhere are the National Archives?\tthe development\t-4.06988011862357\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archive, is currently involved in, the development) -> the development (2972ms)\nWhere are the National Archives?\tan 18th century mansion\t-4.077627895903698\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archives, are stored in, an 18th century mansion) -> an 18th century mansion (2972ms)\nWhere are the National Archives?\tthe north-east\t-4.088379388066701\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archive, is located in, the north-east) -> the north-east (2971ms)\nWhere are the National Archives?\tthe article\t-4.106063326897813\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is mentioned in, the article) -> the article (3001ms)\nWhere are the National Archives?\tthe same building\t-4.106947513298909\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were in, the same building) -> the same building (3001ms)\nWhere are the National Archives?\tthe middle\t-4.110061232786573\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is hidden away in, the middle) -> the middle (3001ms)\nWhere are the National Archives?\tthe cellar\t-4.138778645356746\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are housed in, the cellar) -> the cellar (3001ms)\nWhere are the National Archives?\tthe theft\t-4.1658909302644656\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, has been charged in, the theft) -> the theft (3001ms)\nWhere are the National Archives?\tJuly\t-4.180240868871634\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Security Archive, found in, July) -> July (3001ms)\nWhere are the National Archives?\tthe Archives\t-4.181678648732274\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National Australian Archives, Was in, the Archives) -> the Archives (3032ms)\nWhere are the National Archives?\tthe some premises\t-4.403978687584948\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives office, is located in, the some premises) -> the some premises (3032ms)\nWhere are the National Archives?\tCollege Park\t-4.440305249930798\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, located in, College Park) -> College Park (3062ms)\nWhere are the National Archives?\tApril 2003\t-4.73840630325841\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was formed in, April 2003) -> April 2003 (3117ms)\nWhere are the National Archives?\tOctober 2000\t-4.761634024593087\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Obituary Archive?, was launched in, October 2000) -> October 2000 (3118ms)\nWhere are the National Archives?\tCAC\t-4.786495613849455\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, presented in, CAC) -> CAC (3140ms)\nWhere are the National Archives?\tforce\t-4.803804487883996\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, remain in, force) -> force (3140ms)\nWhere are the National Archives?\tpartnership\t-4.832983008036248\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, works in, partnership) -> partnership (3197ms)\nWhere are the National Archives?\tthe 2001 Census\t-4.836790817327605\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was first introduced in, the 2001 Census) -> the 2001 Census (3197ms)\nWhere are the National Archives?\ta news release\t-4.886305873202758\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, said in, a news release) -> a news release (3197ms)\nWhere are the National Archives?\tcategories\t-4.908532052563768\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National archives, were valued in, categories) -> categories (3197ms)\nWhere are the National Archives?\tnew information\t-4.917317386986754\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives II, resulted in, new information) -> new information (3289ms)\nWhere are the National Archives?\tcommon\t-4.928868603300464\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, have in, common) -> common (3289ms)\nWhere are the National Archives?\tmultiple locations\t-4.9578314317644505\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archive, s in, multiple locations) -> multiple locations (3289ms)\nWhere are the National Archives?\t1970\t-4.965420481690385\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was in, 1970) -> 1970 (3289ms)\nWhere are the National Archives?\tevery capital city\t-4.985860205897086\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, has a presence in, every capital city) -> every capital city (3289ms)\nWhere are the National Archives?\tRio\t-4.997620346836746\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National Archives, are both located in, Rio) -> Rio (3289ms)\nWhere are the National Archives?\tquantity\t-5.009822554454246\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the national archives, grew in, quantity) -> quantity (3360ms)\nWhere are the National Archives?\t1992\t-5.029277714154787\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was established in, 1992) -> 1992 (3360ms)\nWhere are the National Archives?\tcountless attics\t-5.049787976928984\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, searched in, countless attics) -> countless attics (3360ms)\nWhere are the National Archives?\tWilliam Preston?s Classic book\t-5.084858044851163\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, cited in, William Preston?s Classic book) -> William Preston?s Classic book (3411ms)\nWhere are the National Archives?\ta very long time\t-5.122413150845557\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the national archives, should have resulted in, a very long time) -> a very long time (3411ms)\nWhere are the National Archives?\t2003\t-5.237948392630621\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were created in, 2003) -> 2003 (3477ms)\nWhere are the National Archives?\t1838\t-5.29264347095406\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was created in, 1838) -> 1838 (3496ms)\nWhere are the National Archives?\t1988\t-5.323715580285183\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was established in, 1988) -> 1988 (3496ms)\nWhere are the National Archives?\t1936\t-5.331310932730047\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives building, was erected in, 1936) -> 1936 (3496ms)\nWhere are the National Archives?\t1922\t-5.345820503824072\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archives, were burnt in, 1922) -> 1922 (3496ms)\nWhere are the National Archives?\t1934\t-5.34733374700056\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was established in, 1934) -> 1934 (3496ms)\nWhere are the National Archives?\t1997\t-5.350176920404595\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was established in, 1997) -> 1997 (3496ms)\nWhere are the National Archives?\t1985\t-5.368745098339097\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives building, was built in, 1985) -> 1985 (3518ms)\nWhere are the National Archives?\t1998\t-5.380890571746251\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Photographic Archive, was opened in, 1998) -> 1998 (3539ms)\nWhere are the National Archives?\t1935\t-5.396806137775169\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The BFI National Archive, was founded in, 1935) -> 1935 (3539ms)\nWhere are the National Archives?\t1882\t-5.425398333968664\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were founded in, 1882) -> 1882 (3562ms)\nWhere are the National Archives?\tterms\t-5.48714523371091\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, established in, terms) -> terms (3593ms)\nWhere are the National Archives?\tmicrofilm\t-5.515072796528356\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, published in, microfilm) -> microfilm (3593ms)\nWhere are the National Archives?\t1953\t-5.5727614977920705\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Literary Archives, were opened in, 1953) -> 1953 (3593ms)\nWhere are the National Archives?\tPune\t-5.731264048796603\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, be `` in, $x) -> (National Film Archives, are also located in, Pune) -> Pune (3891ms)\nWhere are the National Archives?\ta statement\t-6.088990208338516\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National Archives officials, said in, a statement) -> a statement (4134ms)\nWhere are the National Archives?\thistoric documents\t-6.314870504074284\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, benefited in, historic documents) -> historic documents (4202ms)\nWhere are the National Archives?\tthe framing\t-6.415363922662426\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, aided in, the framing) -> the framing (4469ms)\nWhere are the National Archives?\tthe Roll\t-6.442364763335165\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: ($x, may be purchase, national archive) -> (the Roll, may be purchased from, the National Archives) -> the Roll (4579ms)\nWhere are the National Archives?\tChapter 1\t-6.497566673698133\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Security Archive, cited in, Chapter 1) -> Chapter 1 (4702ms)\nWhere are the National Archives?\tthe study\t-6.557655209692041\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, engaged in, the study) -> the study (5946ms)\nWhere are the National Archives?\tthe spring\t-6.674235301034177\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Gay Archives, appeared in, the spring) -> the spring (6005ms)\nWhere are the National Archives?\tthe planning\t-6.799066274055632\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (our national archives, reflect the results in, the planning) -> the planning (6142ms)\nWhere are the National Archives?\ttouch\t-7.023024216467026\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, Getting in, touch) -> touch (6180ms)\nWhere are the National Archives?\tthe 1980 's\t-7.140190168418899\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, declassified in, the 1980 's) -> the 1980 's (6216ms)\nWhere are the National Archives?\tJan 2008\t-7.204407608198808\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the Serbian National Archives, arrived in, Jan 2008) -> Jan 2008 (6275ms)\nWhere are the National Archives?\thead\t-7.225270253403793\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, have be since, $x) -> (the National Archives, has since then been, head) -> head (6275ms)\nWhere are the National Archives?\tformats\t-7.296137124713871\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, to deliver those records in, formats) -> formats (6312ms)\nWhere are the National Archives?\tprevious censuses\t-7.330025436442511\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, have from, $x) -> (the National Archives, has released data from, previous censuses) -> previous censuses (6346ms)\nWhere are the National Archives?\tthe October 17\t-7.3352350417155225\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, published in, the October 17) -> the October 17 (6346ms)\nWhere are the National Archives?\t1972\t-7.742264460954731\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, began in, 1972) -> 1972 (6829ms)\nWhere are the National Archives?\t1968\t-7.8265909067705515\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, occurred in, 1968) -> 1968 (6900ms)\nWhere are the National Archives?\t2006\t-8.10668307498239\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives building, renovated in, 2006) -> 2006 (7070ms)\nWhere are the National Archives?\tmaps\t-8.27595588573629\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, coverage, $x) -> (( National Archives, Coverage, maps) -> maps (7227ms)\nWhere are the National Archives?\tthe series\t-9.041421997045699\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, have from, $x) -> (the National Archives, has digitized from, the series) -> the series (7507ms)\nWhere are the National Archives?\t1918\t-9.240131221291534\tWhere are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, closed in, 1918) -> 1918 (7542ms)\nWhere are the National Archives?\tConstitution Avenue\t-9.26441112988176\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, is located on, Constitution Avenue) -> Constitution Avenue (7586ms)\nWhere are the National Archives?\tTumblr Welcome\t-9.41605219341385\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is on, Tumblr Welcome) -> Tumblr Welcome (7586ms)\nWhere are the National Archives?\tAugust\t-9.428133157757367\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archive, was first signed on, August) -> August (7620ms)\nWhere are the National Archives?\tKennedy\t-9.450991088136899\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, are, Kennedy) -> Kennedy (7994ms)\nWhere are the National Archives?\tWindhoek\t-9.486754439300142\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Film register of the National Archives, Place of publication, Windhoek) -> Windhoek (11021ms)\nWhere are the National Archives?\tHistory\t-9.503978389205272\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, History) -> History (9476ms)\nWhere are the National Archives?\tDiscovery\t-9.563029054412421\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Discovery, is, The National Archives) -> Discovery (9521ms)\nWhere are the National Archives?\tStockholm\t-9.588855995811306\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (The Diplomatica collection in the Swedish National Archives, Place of publication, Stockholm) -> Stockholm (11021ms)\nWhere are the National Archives?\tthe Internet\t-9.637502386013495\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archive, were posted on, the Internet) -> the Internet (9568ms)\nWhere are the National Archives?\tSeattle\t-9.696963526234892\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Picturing the century: one hundred years of photography from the National Archives, Place of publication, Seattle) -> Seattle (11021ms)\nWhere are the National Archives?\tKolkata\t-9.696963526234892\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Selections from Ochterlony papers, 1818-1825, in the National Archives of India, Place of publication, Kolkata) -> Kolkata (11021ms)\nWhere are the National Archives?\tUnited Kingdom\t-9.79977613882833\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: ($x, contain, the national archive) -> (United Kingdom, Contains, The National Archives) -> United Kingdom (11198ms)\nWhere are the National Archives?\tEdmonton\t-9.8116230281993\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (The John Robert Kovalevitch Collection, National Archives of Canada, Manuscript Division, MG30, D218 : finding aid, Place of publication, Edmonton) -> Edmonton (11021ms)\nWhere are the National Archives?\tLondon\t-9.8116230281993\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Administering the Empire, 1801-1968 : a guide to the records of the Colonial Office in the National Archives of the UK, Place of publication, London) -> London (11021ms)\nWhere are the National Archives?\tDelhi\t-9.85840410500078\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Indian sources for African history : guide to the sources of the history of Africa and of the Indian diaspora in the basin of the Indian Ocean in the National Archives of India, Place of publication, Delhi) -> Delhi (11063ms)\nWhere are the National Archives?\tCambridge\t-9.883816047954669\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (The national archives of Latin America; edited for the Joint committee on Latin American studies of the National research council, the American council of learned societies, and the Social science research council, Place of publication, Cambridge) -> Cambridge (11063ms)\nWhere are the National Archives?\tSyracuse\t-9.895160665344799\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (A guide to the Kenya National Archives : to the microfilms of the provincial and district annual reports, record books, and handing-over reports, miscellaneous correspondence, and intelligence reports, Place of publication, Syracuse) -> Syracuse (11063ms)\nWhere are the National Archives?\tLeipzig\t-9.987052066204846\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Personal recollections of Joan of Arc by the sieur Louis de Conte [pseud.] (her page and secretary) freely translated out of the ancient French into modern English from the original unpublished manuscript in the National Archives by Jean Francois Alden, Place of publication, Leipzig) -> Leipzig (11063ms)\nWhere are the National Archives?\tChapel Hill\t-10.137905301378193\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (The National Archives: America's ministry of documents, 1934-1968, Place of publication, Chapel Hill) -> Chapel Hill (11063ms)\nWhere are the National Archives?\tDallas\t-10.199071179592535\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Dallas, has been stored at, the National Archives) -> Dallas (9828ms)\nWhere are the National Archives?\tthe National Mall\t-10.20576751078457\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, is located on, the National Mall) -> the National Mall (9828ms)\nWhere are the National Archives?\tmilitary service\t-10.224520953912421\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (military service, are, the National Archives) -> military service (9828ms)\nWhere are the National Archives?\tSound Archive\t-10.269541977357765\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Sound Archive, is, the national audiovisual archive) -> Sound Archive (9828ms)\nWhere are the National Archives?\tProbate Records\t-10.271310350159958\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Probate Records, is, the National Archives) -> Probate Records (9828ms)\nWhere are the National Archives?\tProcessing\t-10.322923477644453\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Processing, has been completed by, the National Archives) -> Processing (9875ms)\nWhere are the National Archives?\tC-SPAN?s website\t-10.348080685827101\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is available on, C-SPAN?s website) -> C-SPAN?s website (9875ms)\nWhere are the National Archives?\tTemple Bar\t-10.399661879500277\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Temple Bar, are, the National Photographic Archive) -> Temple Bar (9875ms)\nWhere are the National Archives?\tWilliam Spencer\t-10.407049428623727\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (William Spencer, is, The National Archives) -> William Spencer (9875ms)\nWhere are the National Archives?\tpublic display\t-10.407560523927392\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Video Game Archive, are on, public display) -> public display (9948ms)\nWhere are the National Archives?\tthe Mall\t-10.41970068025494\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives Building, is also on, the Mall) -> the Mall (9948ms)\nWhere are the National Archives?\tinformation\t-10.441236414129207\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, was based on, information) -> information (9948ms)\nWhere are the National Archives?\ta crash course\t-10.452396597882348\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, is now embarked on, a crash course) -> a crash course (9948ms)\nWhere are the National Archives?\ta single terminal\t-10.455307169311851\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, are available on, a single terminal) -> a single terminal (9948ms)\nWhere are the National Archives?\tonion skin paper\t-10.462380765925214\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is printed on, onion skin paper) -> onion skin paper (9948ms)\nWhere are the National Archives?\tWorld Vital Records\t-10.474367281854448\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, are available on, World Vital Records) -> World Vital Records (9948ms)\nWhere are the National Archives?\tAustralia\t-10.493107445706302\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Australia, has worked with, the national archives) -> Australia (9990ms)\nWhere are the National Archives?\tSolsis Berhad\t-10.502547955939736\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives Malaysia, is, Solsis Berhad) -> Solsis Berhad (9990ms)\nWhere are the National Archives?\ta wide range\t-10.528502197847514\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is an expert on, a wide range) -> a wide range (9990ms)\nWhere are the National Archives?\ttelephone\t-10.549302650190707\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, may be contacted on, telephone) -> telephone (9990ms)\nWhere are the National Archives?\tofficers papers\t-10.58611347447856\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, are, officers papers) -> officers papers (9990ms)\nWhere are the National Archives?\twheelchair\t-10.599064541751446\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, are, wheelchair) -> wheelchair (9990ms)\nWhere are the National Archives?\tMorton Halperin\t-10.605179464151568\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Security Archive, was, Morton Halperin) -> Morton Halperin (9990ms)\nWhere are the National Archives?\tPhiladelphia\t-10.613815144542249\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Philadelphia, have survived at, the National Archives) -> Philadelphia (9990ms)\nWhere are the National Archives?\tsector responsible\t-10.619738460197883\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, sector responsible) -> sector responsible (10040ms)\nWhere are the National Archives?\tD.C.\t-10.620785612764783\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (D.C., is, the National Archives) -> D.C. (10040ms)\nWhere are the National Archives?\tone month\t-10.659627110787564\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, one month) -> one month (10040ms)\nWhere are the National Archives?\tWashington, D.C.\t-10.694271591053495\tWhere are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Repair and preservation in the National Archives, Place of publication, Washington, D.C.) -> Washington, D.C. (11063ms)\nWhere are the National Archives?\tNGDC\t-10.704784374914857\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (NGDC, is, the National Archive) -> NGDC (10040ms)\nWhere are the National Archives?\tview\t-10.706904252163168\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, are going on, view) -> view (10040ms)\nWhere are the National Archives?\tone box\t-10.732031608801407\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, one box) -> one box (10130ms)\nWhere are the National Archives?\tNew Year\t-10.735595895911082\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, were released on, New Year) -> New Year (10130ms)\nWhere are the National Archives?\tthe U.S. Government\t-10.736944528117279\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, the U.S. Government) -> the U.S. Government (10130ms)\nWhere are the National Archives?\tDC\t-10.742804864482665\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (DC, is, the National Archives) -> DC (10130ms)\nWhere are the National Archives?\tthe UK government\t-10.753779500639718\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, the UK government) -> the UK government (10130ms)\nWhere are the National Archives?\tFriedman\t-10.765236737228363\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Friedman, had been phoning, the National Archives) -> Friedman (10130ms)\nWhere are the National Archives?\tdisplay\t-10.773541522600787\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is on, display) -> display (10230ms)\nWhere are the National Archives?\tControl Commission for Germany (British Element), Political Division\t-10.780625139499124\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Control Commission for Germany (British Element), Political Division) -> Control Commission for Germany (British Element), Political Division (10229ms)\nWhere are the National Archives?\tMelbourne\t-10.803192515378178\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Melbourne, have joined forces with, the National Archives) -> Melbourne (10229ms)\nWhere are the National Archives?\ta national treasure\t-10.805294812357054\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, are, a national treasure) -> a national treasure (10230ms)\nWhere are the National Archives?\tcost prohibitive\t-10.809026579012464\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives everyday, is, cost prohibitive) -> cost prohibitive (10230ms)\nWhere are the National Archives?\tpolitical culture\t-10.813377811748191\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (political culture, is, the National Archives) -> political culture (10272ms)\nWhere are the National Archives?\teach entry\t-10.818557766480387\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (each entry, is, the National Archives) -> each entry (10272ms)\nWhere are the National Archives?\tThe State Papers\t-10.818682982857066\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The State Papers, are, The National Archives) -> The State Papers (10272ms)\nWhere are the National Archives?\tAllied Commission for Austria (British Element): Headquarters and Regional Files\t-10.828272532537666\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Allied Commission for Austria (British Element): Headquarters and Regional Files) -> Allied Commission for Austria (British Element): Headquarters and Regional Files (10272ms)\nWhere are the National Archives?\ta public trust\t-10.83220967461501\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a public trust) -> a public trust (10272ms)\nWhere are the National Archives?\tgovernment research\t-10.834598548885984\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (government research, is, the National Archives) -> government research (10272ms)\nWhere are the National Archives?\tControl Commission for Germany (British Element), Military Sections and Headquarters Secretariat\t-10.848692843839899\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Control Commission for Germany (British Element), Military Sections and Headquarters Secretariat) -> Control Commission for Germany (British Element), Military Sections and Headquarters Secretariat (10272ms)\nWhere are the National Archives?\tControl Commission for Germany (British Element), Prisoners of War/Displaced Persons Division\t-10.848692843839899\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Control Commission for Germany (British Element), Prisoners of War/Displaced Persons Division) -> Control Commission for Germany (British Element), Prisoners of War/Displaced Persons Division (10272ms)\nWhere are the National Archives?\tnation?s pride\t-10.851398301316\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, are, nation?s pride) -> nation?s pride (10656ms)\nWhere are the National Archives?\tChina\t-10.8587284135823\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (China, has been obtained from, the National Archives) -> China (10656ms)\nWhere are the National Archives?\ta living document\t-10.862898066481934\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, a living document) -> a living document (10656ms)\nWhere are the National Archives?\theaven\t-10.869262287904755\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (heaven, was, the National Archives) -> heaven (10656ms)\nWhere are the National Archives?\tContents INTRODUCTION\t-10.887650418081613\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Contents INTRODUCTION, is, the National Archives) -> Contents INTRODUCTION (10656ms)\nWhere are the National Archives?\tone source\t-10.89656213946922\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the great national archives, are, one source) -> one source (10656ms)\nWhere are the National Archives?\ta chilling read\t-10.896691696210013\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Security Archive, are, a chilling read) -> a chilling read (10656ms)\nWhere are the National Archives?\ta government department\t-10.89850280182884\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a government department) -> a government department (10656ms)\nWhere are the National Archives?\tthe Rotunda\t-10.90268174500714\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives Experience, is, the Rotunda) -> the Rotunda (10848ms)\nWhere are the National Archives?\tThe Public Record Office\t-10.902751549681485\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The Public Record Office, is, the National Archives) -> The Public Record Office (10895ms)\nWhere are the National Archives?\ta joint project\t-10.90805672079036\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, a joint project) -> a joint project (10895ms)\nWhere are the National Archives?\tways\t-10.909842340346994\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, is working on, ways) -> ways (10895ms)\nWhere are the National Archives?\ta major institution\t-10.912477705498137\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the national archives, are, a major institution) -> a major institution (10895ms)\nWhere are the National Archives?\tControl Commission for Germany (British Element), Combined Travel Security Board, later Combined Travel Board, and Zonal Travel Directorate and Bureaux\t-10.914037840007044\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Control Commission for Germany (British Element), Combined Travel Security Board, later Combined Travel Board, and Zonal Travel Directorate and Bureaux) -> Control Commission for Germany (British Element), Combined Travel Security Board, later Combined Travel Board, and Zonal Travel Directorate and Bureaux (10895ms)\nWhere are the National Archives?\ta small map\t-10.91555768388456\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, was, a small map) -> a small map (10895ms)\nWhere are the National Archives?\tan annual event\t-10.92141941043108\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, an annual event) -> an annual event (10942ms)\nWhere are the National Archives?\tthe ONLY time tours\t-10.93104588343264\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, the ONLY time tours) -> the ONLY time tours (10942ms)\nWhere are the National Archives?\topen seven days\t-10.93104588343264\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, are, open seven days) -> open seven days (10942ms)\nWhere are the National Archives?\tPresident Clinton\t-10.932629517261327\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (President Clinton, has asked, the National Archives) -> President Clinton (10942ms)\nWhere are the National Archives?\tThe Presbyterian Historical Society\t-10.938810885688868\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The Presbyterian Historical Society, is, the National Archives) -> The Presbyterian Historical Society (10942ms)\nWhere are the National Archives?\tBrief\t-10.940074616529085\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Brief, has been extracted from, the National Archives) -> Brief (10942ms)\nWhere are the National Archives?\ta UK government department\t-10.94135836320805\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a UK government department) -> a UK government department (11119ms)\nWhere are the National Archives?\tcensus records\t-10.950428443093895\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, are, census records) -> census records (11118ms)\nWhere are the National Archives?\ta minute-by-minute time line\t-10.952852944529191\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, was, a minute-by-minute time line) -> a minute-by-minute time line (11119ms)\nWhere are the National Archives?\tfull color scans\t-10.97260317130713\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, were, full color scans) -> full color scans (11119ms)\nWhere are the National Archives?\tThe NFSA\t-10.98225957515173\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The NFSA, is, the national audiovisual archive) -> The NFSA (11198ms)\nWhere are the National Archives?\tany Roswell files\t-10.983148945397621\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (any Roswell files, was, the National Archives) -> any Roswell files (11198ms)\nWhere are the National Archives?\tGaston County\t-10.983177051354597\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Gaston County, has been produced by, the The National Archives) -> Gaston County (11198ms)\nWhere are the National Archives?\ta real bonus\t-10.991171296539337\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a real bonus) -> a real bonus (11198ms)\nWhere are the National Archives?\ta mammoth task\t-10.997360706751603\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, was, a mammoth task) -> a mammoth task (11198ms)\nWhere are the National Archives?\tthe US Capitol building\t-10.998180325025443\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, the US Capitol building) -> the US Capitol building (11198ms)\nWhere are the National Archives?\tresearch genealogy\t-11.000827700383939\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (research genealogy, are, the National Archives) -> research genealogy (11321ms)\nWhere are the National Archives?\tNational\t-11.003464288648964\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (National, is, the national audiovisual archive) -> National (11321ms)\nWhere are the National Archives?\tThe British Library\t-11.003550064261574\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The British Library, is, the national published archive) -> The British Library (11321ms)\nWhere are the National Archives?\tthe U.S. Government?s collection\t-11.008790719945488\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, the U.S. Government?s collection) -> the U.S. Government?s collection (11321ms)\nWhere are the National Archives?\tforeign policy\t-11.020841804001977\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (foreign policy, is, the National Security Archive) -> foreign policy (11321ms)\nWhere are the National Archives?\ta government agency\t-11.03538119631941\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a government agency) -> a government agency (11321ms)\nWhere are the National Archives?\tthe Natural History Museum\t-11.041570606531677\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (the Natural History Museum, is, the National Archives) -> the Natural History Museum (11377ms)\nWhere are the National Archives?\ta Crown asset\t-11.066914465934907\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archive Collection, is, a Crown asset) -> a Crown asset (11377ms)\nWhere are the National Archives?\tArmy Medical Services research\t-11.081945845562728\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Army Medical Services research, is, the National Archives) -> Army Medical Services research (11377ms)\nWhere are the National Archives?\tan Executive Agency\t-11.092789482095561\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, an Executive Agency) -> an Executive Agency (11377ms)\nWhere are the National Archives?\tMichael?s\t-11.094614666304748\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, was supposed to be, Michael?s) -> Michael?s (11377ms)\nWhere are the National Archives?\tmaterial\t-11.098990790054874\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (material, is, the National Archives collection) -> material (11470ms)\nWhere are the National Archives?\ta secondary find\t-11.115545350422758\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the UK National Archives, was, a secondary find) -> a secondary find (11470ms)\nWhere are the National Archives?\tADA compliant\t-11.123800995879556\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives Experience, is, ADA compliant) -> ADA compliant (11470ms)\nWhere are the National Archives?\tthe UK government?s official archive\t-11.148433314947352\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, the UK government?s official archive) -> the UK government?s official archive (11470ms)\nWhere are the National Archives?\tschedule\t-11.158004071452785\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives Building, is progressing on, schedule) -> schedule (11470ms)\nWhere are the National Archives?\tan amazing resource\t-11.15936299840983\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Security Archive, is, an amazing resource) -> an amazing resource (11470ms)\nWhere are the National Archives?\trequest\t-11.162425056160563\tWhere are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives ?, is available on, request) -> request (11569ms)\nWhere are the National Archives?\tUpper Canada Land Petition\t-11.173018204326166\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, Upper Canada Land Petition) -> Upper Canada Land Petition (11570ms)\nWhere are the National Archives?\tProfessor Howard Newby\t-11.194174373336702\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Data Archive, was, Professor Howard Newby) -> Professor Howard Newby (11570ms)\nWhere are the National Archives?\ta Senior Reader Adviser\t-11.195942746138895\tWhere are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a Senior Reader Adviser) -> a Senior Reader Adviser (11570ms)\nWhat countries supplied aid?\tAmerica\t-4.7906221848151125\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (America, Instance Of, country) (America, supplied, military aid) -> America (6222ms)\nWhat countries supplied aid?\tIsrael\t-4.855447144721803\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Israel, Instance Of, country) (Israel, has supplied, enough aid) -> Israel (6222ms)\nWhat countries supplied aid?\tAmerica's\t-5.2101862344715\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (America's, Instance Of, country) (America, supplied, military aid) -> America's (6222ms)\nWhat countries supplied aid?\tFood\t-6.152068526313819\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Food, Instance Of, country) (Food, supplied by, international aid groups) -> Food (6419ms)\nWhat countries supplied aid?\tBritain\t-6.326339828711551\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Britain, Instance Of, country) (Britain, will supply, vital aid) -> Britain (8885ms)\nWhat countries supplied aid?\tFrance\t-6.704906185402016\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (France, Instance Of, country) (France, has supplied, economic aid and troops) -> France (9509ms)\nWhat countries supplied aid?\tBritain's\t-6.899585622825403\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Britain's, Instance Of, country) (Britain, will supply, vital aid) -> Britain's (9509ms)\nWhat countries supplied aid?\tstate\t-6.97837541929851\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (state, Instance Of, country) (states, routinely supply, aid) -> state (9509ms)\nWhat countries supplied aid?\tAnkara\t-7.212157417756265\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Ankara, Instance Of, country) (Ankara, wants to begin supplying, aid) -> Ankara (9604ms)\nWhat countries supplied aid?\tFrance 18\t-7.259558903042546\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (France 18, Instance Of, country) (France, has supplied, economic aid and troops) -> France 18 (9605ms)\nWhat countries supplied aid?\tUSA\t-7.2696019041176285\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, of provide, aid) -> (USA, Instance Of, country) (USA, actually provided most of, the aid) -> USA (9604ms)\nWhat countries supplied aid?\t6 France\t-7.326196906311518\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (6 France, Instance Of, country) (France, has supplied, economic aid and troops) -> 6 France (9605ms)\nWhat countries supplied aid?\tthird world country\t-7.454004171499524\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, be supply, aid) -> (third world country, Instance Of, country) (third world countries, are supplied with, medical aids) -> third world country (10982ms)\nWhat countries supplied aid?\tthe U.S.\t-7.621525276861821\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, study abroad, countries) ($x, supplied, aid) -> (the U.S., have studied abroad in, another country) (the U.S., supplied, aid) -> the U.S. (14542ms)\nWhat countries supplied aid?\tThe United States\t-7.713038077864789\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, modelling, countries) ($x, supplied, aid) -> (The United States, seldom follows the models of, other countries) (The United States, is supplying, military aid) -> The United States (12879ms)\nWhat countries supplied aid?\tChina\t-7.757723611859106\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, have supply, aid) -> (China, Instance Of, country) (China, has already supplied, some 50 public aid projects) -> China (11505ms)\nWhat countries supplied aid?\tthe United States\t-7.779329309923347\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, to supply, aid) -> (the United States, Instance Of, country) (the United States, had already begun to supply, some aid) -> the United States (17376ms)\nWhat countries supplied aid?\tNorth America\t-7.807206842562621\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (North America, Instance Of, country) (North America, had furnished only, naval and logistical aid) -> North America (11505ms)\nWhat countries supplied aid?\tChina.\t-7.88010024066536\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, have supply, aid) -> (China., Instance Of, country) (China, has already supplied, some 50 public aid projects) -> China. (11841ms)\nWhat countries supplied aid?\tThe U.S.\t-7.958357444573487\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, top the list of, countries) ($x, supplied, aid) -> (The U.S., routinely tops the list of, countries) (the U.S., had already begun to supply, some aid) -> The U.S. (14046ms)\nWhat countries supplied aid?\tthe Unite States\t-8.04315056546983\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, to supply, aid) -> (the Unite States, Instance Of, country) (the United States, had already begun to supply, some aid) -> the Unite States (17376ms)\nWhat countries supplied aid?\tSweden\t-8.186813955781703\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (Sweden, Instance Of, country) (Sweden, furnish, their stipulated aid) -> Sweden (12515ms)\nWhat countries supplied aid?\tEuropean country\t-8.20098165983822\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, of provide, aid) -> (European country, Instance Of, country) (European countries, provide the bulk of, aid) -> European country (12516ms)\nWhat countries supplied aid?\tUSA.\t-8.211102521975803\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, of provide, aid) -> (USA., Instance Of, country) (USA, actually provided most of, the aid) -> USA. (12554ms)\nWhat countries supplied aid?\t44 employer\t-8.218218203872429\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (44 employer, Instance Of, country) (Employer, must furnish, medical aid ? approval) -> 44 employer (12554ms)\nWhat countries supplied aid?\tEurope\t-8.273443971730082\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, of provide, aid) -> (Europe, Instance Of, country) (Europe, could provide a significant amount of, aid) -> Europe (13060ms)\nWhat countries supplied aid?\tIntel\t-8.468145599521895\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, be supply, aid) -> (Intel, Instance Of, major of the country) (Intel, was heavily involved in supplying, immediate aid) -> Intel (18768ms)\nWhat countries supplied aid?\tNorth and South America\t-8.549525677335401\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (North and South America, Instance Of, country) (North America, had furnished only, naval and logistical aid) -> North and South America (19024ms)\nWhat countries supplied aid?\tNorth-America\t-8.620412145544893\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (North-America, Instance Of, country) (North America, had furnished only, naval and logistical aid) -> North-America (19024ms)\nWhat countries supplied aid?\tNorth & South America\t-8.77823139095236\tWhat countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (North & South America, Instance Of, country) (North America, had furnished only, naval and logistical aid) -> North & South America (19417ms)\nWhat companies has BAT owned?\tBrown & Williamson\t-4.395408431499474\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> (Brown & Williamson, Instance Of, company) (BAT, owns 100 % of, Brown & Williamson) -> Brown & Williamson (1942ms)\nWhat companies has BAT owned?\tBats Global Markets\t-4.762102273907678\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> (Bats Global Markets, Instance Of, company) (BATS Europe, is owned by, BATS Global Markets) -> Bats Global Markets (1942ms)\nWhat companies has BAT owned?\tSchool\t-5.075291185799822\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> (School, Instance Of, company) (? bat, carry their own books to, school) -> School (1942ms)\nWhat companies has BAT owned?\tKelly's\t-6.767597540510904\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, from buy, $x) -> (Kelly's, Instance Of, company) (brand new bats, bought directly from, Kelly) -> Kelly's (12182ms)\nWhat companies has BAT owned?\ta group\t-6.976292809752059\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: (companies, offer include, $x) (BAT, owned, $x) -> (the company, included their offer to, a group) (Bats, is owned by, a group) -> a group (6285ms)\nWhat companies has BAT owned?\tHardware Store\t-6.997229779605754\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, in purchase, $x) -> (Hardware Store, Instance Of, private company) (Bat houses, can be purchased in, hardware stores) -> Hardware Store (6570ms)\nWhat companies has BAT owned?\tLast night I\t-7.069950036982564\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, from carry, $x) -> (Last night I, Instance Of, guest of the Ford Motor Company) ('s hot bats, carried over from, last night) -> Last night I (14181ms)\nWhat companies has BAT owned?\tB&W\t-7.088133191007337\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, be the parent company of, $x) -> (B&W, Instance Of, company) (12 BAT Ind, is the parent company of, B&W) -> B&W (12183ms)\nWhat companies has BAT owned?\thardware store\t-7.088532120687972\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, in purchase, $x) -> (hardware store, Instance Of, company) (Bat houses, can be purchased in, hardware stores) -> hardware store (6571ms)\nWhat companies has BAT owned?\tKelly\t-7.134406325974645\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, from buy, $x) -> (Kelly, Instance Of, company) (brand new bats, bought directly from, Kelly) -> Kelly (12183ms)\nWhat companies has BAT owned?\tinsect\t-7.267730069114185\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> (insect, Instance Of, PEST CONTROL company pest) (A single bat, will eat its own weight in, insects) -> insect (3629ms)\nWhat companies has BAT owned?\tCeramics\t-7.470130815946483\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, be famous, $x) -> (Ceramics, Instance Of, company) (Bat Trang Ceramic Village, is famous for, ceramics) -> Ceramics (14083ms)\nWhat companies has BAT owned?\tFlamingo\t-7.5365667816289\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, be be run, $x) -> (Flamingo, Instance Of, company) (The Bat Islands, are a long run from, Flamingo) -> Flamingo (8247ms)\nWhat companies has BAT owned?\tCASA\t-8.262971311983895\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, be be run, $x) -> (CASA, Instance Of, company) (casaRun.bat, is used to run, casa) -> CASA (8863ms)\nWhat companies has BAT owned?\tThe school\t-8.572169074435621\tWhat companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, modelling, companies) (BAT, owned, $x) -> (The school, is modeled after, the old company schools) (? bat, carry their own books to, school) -> The school (5296ms)\nWhat companies has BAT owned?\tschool\t-14.612202425147844\tWhat companies has BAT owned? -> what [ company have bat own ] ? -> what big company have bat own ? -> $x: ($x, instance of, big company) (bat, own, $x) -> (school, Instance Of, medium/big size company or organization) (? bat, carry their own books to, school) -> school (16134ms)\nWhere does chocolate come from?\tthe Gallery Room\t-6.695205452232306\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> (chocolate, comes from in, the Gallery Room) -> the Gallery Room (16599ms)\nWhere does chocolate come from?\tFrance\t-8.1831657056829\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, exist in, $x) -> (almond filled chocolates, have existed in, France) -> France (18096ms)\nWhere does chocolate come from?\tBelgium\t-8.312288026138823\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, arrive in, $x) -> (chocolates, arrived in, Belgium) -> Belgium (18097ms)\nWhere does chocolate come from?\tState\t-8.353629671312921\tWhere does chocolate come from? -> where do [ chocolate come ] from ? -> what year do chocolate come out ? -> $x: ($x, instance of, year) (chocolate, come out, $x) -> (State, Instance Of, year tournament) (the chocolate, does come from out of, state) -> State (18096ms)\nWhere does chocolate come from?\tEurope\t-8.383480654085822\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, arrive in, $x) -> (Chocolate, arrived in, Europe) -> Europe (18096ms)\nWhere does chocolate come from?\tLondon\t-8.3879016387936\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, arrive in, $x) -> (chocolate, arrived in, London) -> London (18096ms)\nWhere does chocolate come from?\tSpain\t-8.417080158945852\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, arrive in, $x) -> (chocolate, arrived in, Spain) -> Spain (18163ms)\nWhere does chocolate come from?\tCleveland\t-8.470286169558593\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, raise in, $x) -> ('s Chocolates, was raised in, Cleveland) -> Cleveland (18162ms)\nWhere does chocolate come from?\tEngland\t-8.47470715426637\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, exist in, $x) -> (numerous chocolate houses, existed in, England) -> England (18163ms)\nWhere does chocolate come from?\tCarpet\t-8.581527180181734\tWhere does chocolate come from? -> where do [ chocolate come ] from ? -> what year do chocolate come out ? -> $x: ($x, instance of, year) (chocolate, come out, $x) -> (Carpet, Instance Of, year new, good condition) (Hot Chocolate, come out of, carpets) -> Carpet (18163ms)\nWhere does chocolate come from?\tthe cold\t-8.795993502026532\tWhere does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> ($ 1 Hot Chocolate or Hot Mocha, Come in from, the cold) -> the cold (16599ms)\nWhere does chocolate come from?\tBlood\t-8.993174233613265\tWhere does chocolate come from? -> where do [ chocolate come ] from ? -> what year do chocolate come out ? -> $x: ($x, instance of, year) (chocolate, come out, $x) -> (Blood, Instance Of, year-long series) (the chocolate-strawberry syrup mix, came out for, blood) -> Blood (18163ms)\nWho was the captain of the Titanic?\tEdward Smith\t3.377083714006817\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Edward Smith, was the captain of, the Titanic) -> Edward Smith (2009ms)\nWho was the captain of the Titanic?\tDick Clark\t2.183322146133709\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Dick Clark, was the captain of, the Titanic) -> Dick Clark (2010ms)\nWho was the captain of the Titanic?\tEdward J. Smith\t2.0061330826638555\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Edward J. Smith, was the captain of, the Titanic) -> Edward J. Smith (2010ms)\nWho was the captain of the Titanic?\tugly ;A\t1.4690517085319095\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (ugly ;A, is the captain of, the Titanic richer) -> ugly ;A (2009ms)\nWho was the captain of the Titanic?\tdeviantART More\t1.4266748023835802\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (deviantART More, is the captain of, the Titanic richer) -> deviantART More (2677ms)\nWho was the captain of the Titanic?\tdeviantART Details\t1.4062736835196281\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (deviantART Details, is the captain of, the Titanic richer) -> deviantART Details (2677ms)\nWho was the captain of the Titanic?\tCaptain Edward John Smith\t1.367433522975685\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Captain Edward John Smith, was the captain of, the Titanic) -> Captain Edward John Smith (2677ms)\nWho was the captain of the Titanic?\tRosenthal\t0.45691291107455667\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Rosenthal, is the captain of, the Titanic) -> Rosenthal (2698ms)\nWho was the captain of the Titanic?\tObama\t-0.13813636208227065\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Obama, was the captain of, the Titanic) -> Obama (2698ms)\nWho was the captain of the Titanic?\tThe most famous\t-0.28482106326782075\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (The most famous, is the captain of, the Titanic) -> The most famous (2698ms)\nWho was the captain of the Titanic?\tRMS Carpathia\t-0.8026183004194172\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (Sinking of the Titanic, Rescue ship, RMS Carpathia) -> RMS Carpathia (4229ms)\nWho was the captain of the Titanic?\tSS Californian\t-0.8026183004194172\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (Sinking of the Titanic, Rescue ship, SS Californian) -> SS Californian (4229ms)\nWho was the captain of the Titanic?\t?Full\t-0.9090921019002856\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain of, titanic) -> (?Full, says the captain of, the Titanic) -> ?Full (2735ms)\nWho was the captain of the Titanic?\tBush\t-1.867887275738954\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain of, titanic) -> (Bush, were captain of, the Titanic) -> Bush (2788ms)\nWho was the captain of the Titanic?\the?s\t-1.8793440615325863\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (he?s, was a member of, The Titanic Players) -> he?s (4293ms)\nWho was the captain of the Titanic?\tGreen Gables\t-1.9373279863696498\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Green Gables, sails on, the Titanic) -> Green Gables (3280ms)\nWho was the captain of the Titanic?\tChristopher\t-1.971366610640017\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain of, titanic) -> (Christopher, Is Captain Of, The Titanic Important) -> Christopher (2788ms)\nWho was the captain of the Titanic?\t? Stephen Cox\t-2.1800141462258886\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be the author of, the Titanic) -> (? Stephen Cox, is the author of, ?The Titanic Story) -> ? Stephen Cox (2809ms)\nWho was the captain of the Titanic?\tLukes Lane Primary School\t-2.267891843418174\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (Lukes Lane Primary School, was a member of, the Titanic Society) -> Lukes Lane Primary School (4293ms)\nWho was the captain of the Titanic?\t18\t-2.3655405543682675\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (18, was the youngest member of, the Titanic crew) -> 18 (4293ms)\nWho was the captain of the Titanic?\tinternational waters\t-2.411647708150931\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (The Titanic, rests in, international waters) -> international waters (2908ms)\nWho was the captain of the Titanic?\tArthur Peuchen\t-2.4395184835780226\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Arthur Peuchen, boarded, the Titanic) -> Arthur Peuchen (4229ms)\nWho was the captain of the Titanic?\tOne such example\t-2.572625184408663\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain, the Titanic) -> (One such example, might have been the captain on, the Titanic) -> One such example (3280ms)\nWho was the captain of the Titanic?\tunreachable depths\t-2.628410766266079\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (the Titanic, was resting in, unreachable depths) -> unreachable depths (2908ms)\nWho was the captain of the Titanic?\tNY\t-2.8771463898268554\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (NY, boarded, the Titanic) -> NY (4229ms)\nWho was the captain of the Titanic?\tthree boys\t-2.8962521789801703\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (three boys, boarded, the RMS Titanic) -> three boys (4229ms)\nWho was the captain of the Titanic?\tBuilding C\t-2.9091485821390894\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, alone be, the Titanic) -> (Building C, alone is large enough to hold, the Titanic) -> Building C (3728ms)\nWho was the captain of the Titanic?\tWoody\t-2.9426774982854695\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain of, titanic) -> (Woody, were Captain of, the Titanic) -> Woody (2789ms)\nWho was the captain of the Titanic?\tNew York\t-2.9468811502530037\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (New York, boarded, the Titanic) -> New York (4229ms)\nWho was the captain of the Titanic?\tNew York City\t-2.969083184642172\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (New York City, boarded, the Titanic) -> New York City (4229ms)\nWho was the captain of the Titanic?\ta family\t-3.1297777935913134\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (a family, was almost going to board, the Titanic) -> a family (4229ms)\nWho was the captain of the Titanic?\tLeonardo DiCaprio\t-3.1332509356416605\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Leonardo DiCaprio, set sail on, the Titanic) -> Leonardo DiCaprio (3425ms)\nWho was the captain of the Titanic?\tthe Mauretania\t-3.2361807386771675\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the Mauretania, boarded, the Titanic) -> the Mauretania (4293ms)\nWho was the captain of the Titanic?\tAnna\t-3.26807898482676\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Anna, boarded, the Titanic) -> Anna (4293ms)\nWho was the captain of the Titanic?\tOscar Rudolph Theg\t-3.3492693112998135\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Oscar Rudolph Theg, boarded, the Titanic) -> Oscar Rudolph Theg (4293ms)\nWho was the captain of the Titanic?\ta leather worker\t-3.362532318125442\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (a leather worker, boarded, the Titanic) -> a leather worker (4293ms)\nWho was the captain of the Titanic?\tDr. Robert Ballard\t-3.3660494606951423\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, found by, $x) -> (the Titanic, was found by, Dr. Robert Ballard) -> Dr. Robert Ballard (2933ms)\nWho was the captain of the Titanic?\tBabler\t-3.3671072871929346\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be head of, the Titanic) -> (Babler, is head of, the Switzerland Titanic Society) -> Babler (3728ms)\nWho was the captain of the Titanic?\tonly the wealthy\t-3.4339418155383616\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (only the wealthy, were allowed to board, the luxurious Titanic) -> only the wealthy (4293ms)\nWho was the captain of the Titanic?\tvery wealthy people\t-3.434954709622395\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (very wealthy people, initially boarded, the Titanic) -> very wealthy people (4391ms)\nWho was the captain of the Titanic?\treal-life children\t-3.442869118294451\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (real-life children, sailed aboard, the Titanic) -> real-life children (3425ms)\nWho was the captain of the Titanic?\tSpanish domestic Encarnacion Reynaldo\t-3.448071046210987\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Spanish domestic Encarnacion Reynaldo, boarded, the Titanic) -> Spanish domestic Encarnacion Reynaldo (4391ms)\nWho was the captain of the Titanic?\tthe Manitobans\t-3.4598629937293124\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the Manitobans, sailed on, the RMS Titanic) -> the Manitobans (3424ms)\nWho was the captain of the Titanic?\texactly the same number\t-3.4649059660311314\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (exactly the same number, sailed on, the Titanic) -> exactly the same number (3450ms)\nWho was the captain of the Titanic?\tThe New Republican party\t-3.4710781187050728\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (The New Republican party, is setting sail on, the Titanic) -> The New Republican party (3451ms)\nWho was the captain of the Titanic?\tthe Jesuit master\t-3.4724561511802627\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the Jesuit master, boarded, the Titanic) -> the Jesuit master (4391ms)\nWho was the captain of the Titanic?\t?People\t-3.494198223663275\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (?People, sailed on, the Titanic) -> ?People (3451ms)\nWho was the captain of the Titanic?\tSoto y Vallejo\t-3.524340484915619\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Soto y Vallejo, boarded, the Titanic) -> Soto y Vallejo (4391ms)\nWho was the captain of the Titanic?\tMr Smith\t-3.5286173994994403\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Mr Smith, boarded, the Titanic) -> Mr Smith (4391ms)\nWho was the captain of the Titanic?\tsix year old daughter\t-3.5478601580133007\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (six year old daughter, boarded, the Titanic) -> six year old daughter (4391ms)\nWho was the captain of the Titanic?\tCo Cork\t-3.549018518363392\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Co Cork, boarded, the Titanic) -> Co Cork (4391ms)\nWho was the captain of the Titanic?\ta minister\t-3.5605130996845324\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (a minister, boarded, the Titanic) -> a minister (4391ms)\nWho was the captain of the Titanic?\tWilliam Ali\t-3.573776053807866\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (William Ali, boarded, the Titanic) -> William Ali (4617ms)\nWho was the captain of the Titanic?\tAndrick\t-3.574509221137475\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (Andrick, is a longtime member of, the Titanic Historical Society) -> Andrick (4617ms)\nWho was the captain of the Titanic?\tMahala?s French maid\t-3.5933079201401656\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Mahala?s French maid, boarded, the Titanic) -> Mahala?s French maid (4617ms)\nWho was the captain of the Titanic?\t?the same number\t-3.6077529056844377\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (?the same number, sailed on, the fateful Titanic voyage) -> ?the same number (3451ms)\nWho was the captain of the Titanic?\tThe Laroche family\t-3.6090793633428326\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The Laroche family, boarded, the Titanic) -> The Laroche family (4617ms)\nWho was the captain of the Titanic?\tAnna Sophia Turja\t-3.612760284475765\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Anna Sophia Turja, boarded, the Titanic) -> Anna Sophia Turja (4617ms)\nWho was the captain of the Titanic?\ta companion\t-3.6127954518658947\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (a companion, sails on, the Titanic) -> a companion (3450ms)\nWho was the captain of the Titanic?\tpassengers\t-3.620217585571267\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (passengers, board, the famous ship Titanic) -> passengers (4617ms)\nWho was the captain of the Titanic?\tWashington A. Roebling II\t-3.620489607921207\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Washington A. Roebling II, boarded, the Titanic) -> Washington A. Roebling II (4617ms)\nWho was the captain of the Titanic?\tThe MS Balmoral\t-3.6309510452689335\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (The MS Balmoral, sets sail for, the Titanic... View Full Caption) -> The MS Balmoral (3512ms)\nWho was the captain of the Titanic?\tcrew--\t-3.6356698924190503\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (crew--, sailed on, the Titanic) -> crew-- (3512ms)\nWho was the captain of the Titanic?\tpeace\t-3.6567147669206803\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (the Titanic, can again rest in, peace) -> peace (2908ms)\nWho was the captain of the Titanic?\tEleanore and George\t-3.6684647128746835\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Eleanore and George, boarded, the Titanic) -> Eleanore and George (4815ms)\nWho was the captain of the Titanic?\tBridget Delia Bradley\t-3.6684647128746835\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Bridget Delia Bradley, boarded, the Titanic) -> Bridget Delia Bradley (4617ms)\nWho was the captain of the Titanic?\tWilliam and Marie\t-3.6684647128746835\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (William and Marie, boarded, the Titanic) -> William and Marie (4815ms)\nWho was the captain of the Titanic?\tseveral Philadelphia-area families\t-3.6722004707954805\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (several Philadelphia-area families, sailed on, the Titanic) -> several Philadelphia-area families (3512ms)\nWho was the captain of the Titanic?\tDattilo\t-3.674423549316467\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (Dattilo, is a longtime member of, the Titanic Historical Society) -> Dattilo (4815ms)\nWho was the captain of the Titanic?\tvery few children\t-3.6761940363201258\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (very few children, sailed on, the Titanic) -> very few children (3512ms)\nWho was the captain of the Titanic?\tdogs\t-3.6835451126599446\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (dogs, sailed on, the Titanic) -> dogs (3512ms)\nWho was the captain of the Titanic?\tno mummy\t-3.7011154632063605\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (no mummy, sailed on, the Titanic) -> no mummy (3686ms)\nWho was the captain of the Titanic?\tan Englishwoman\t-3.704363206396897\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (an Englishwoman, sets sail on, the Titanic) -> an Englishwoman (3686ms)\nWho was the captain of the Titanic?\tThree Widener family members\t-3.760699003604728\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Three Widener family members, sailed on, the Titanic) -> Three Widener family members (3686ms)\nWho was the captain of the Titanic?\tLucy Ridsdale\t-3.763321707013021\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Lucy Ridsdale, boarded, the Titanic) -> Lucy Ridsdale (4815ms)\nWho was the captain of the Titanic?\ta poor choice\t-3.7849645517388133\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (a poor choice, sailed back on, the Titanic) -> a poor choice (3686ms)\nWho was the captain of the Titanic?\tFrancis Browne\t-3.828357277377947\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Francis Browne, boarded, the Titanic) -> Francis Browne (4815ms)\nWho was the captain of the Titanic?\tJohn Harper\t-3.8564901222443972\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (John Harper, boarded, the Titanic) -> John Harper (4815ms)\nWho was the captain of the Titanic?\tMichael Dunnagan\t-3.8649524238816326\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Michael Dunnagan, to sail on, the Titanic) -> Michael Dunnagan (3686ms)\nWho was the captain of the Titanic?\tElna Strom\t-3.8786596139105423\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Elna Strom, boarded, the Titanic) -> Elna Strom (4815ms)\nWho was the captain of the Titanic?\tMary\t-3.8923037203247532\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Mary, boarded, the Titanic) -> Mary (4849ms)\nWho was the captain of the Titanic?\tRood\t-3.8923037203247532\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Rood, boarded, the Titanic) -> Rood (4848ms)\nWho was the captain of the Titanic?\tBehr\t-3.8923037203247532\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Behr, boarded, the Titanic) -> Behr (4848ms)\nWho was the captain of the Titanic?\tthe tour guides\t-3.920055112089393\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (the tour guides, are actual members of, the Titanic cast) -> the tour guides (4849ms)\nWho was the captain of the Titanic?\t111 other passengers\t-3.921944994038315\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (111 other passengers, boarded, the Titanic) -> 111 other passengers (4849ms)\nWho was the captain of the Titanic?\t705 survivors\t-3.925010038555293\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (the Titanic, rescued, 705 survivors) -> 705 survivors (4849ms)\nWho was the captain of the Titanic?\t123 people\t-3.9819263370210556\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (123 people, boarded, the Titanic) -> 123 people (4849ms)\nWho was the captain of the Titanic?\t100 Irish passengers\t-3.988751804667666\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (100 Irish passengers, boarded, the Titanic) -> 100 Irish passengers (4848ms)\nWho was the captain of the Titanic?\t497 third-class passengers\t-4.0183225766129205\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (497 third-class passengers, boarded, the Titanic) -> 497 third-class passengers (4890ms)\nWho was the captain of the Titanic?\t710 steerage passengers\t-4.023627747721795\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (710 steerage passengers, boarded, the Titanic) -> 710 steerage passengers (4890ms)\nWho was the captain of the Titanic?\t12 honeymoon couples\t-4.0438355744068595\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (12 honeymoon couples, sailed on, the Titanic) -> 12 honeymoon couples (3728ms)\nWho was the captain of the Titanic?\t2,228 passengers\t-4.0553793250806365\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (2,228 passengers, boarded, the Titanic) -> 2,228 passengers (4890ms)\nWho was the captain of the Titanic?\t2,224 passengers\t-4.0553793250806365\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (2,224 passengers, boarded, the Titanic) -> 2,224 passengers (4890ms)\nWho was the captain of the Titanic?\tAn Irish 19 year-old man\t-4.09130608789733\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (An Irish 19 year-old man, boarded, the Titanic) -> An Irish 19 year-old man (4891ms)\nWho was the captain of the Titanic?\tdock\t-4.133362865597988\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (The Titanic, rests in, dock) -> dock (2908ms)\nWho was the captain of the Titanic?\t88-year-old Edwina Mackenzie\t-4.195012396711002\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (88-year-old Edwina Mackenzie, had sailed on, the Titanic) -> 88-year-old Edwina Mackenzie (3728ms)\nWho was the captain of the Titanic?\tShe and her husband\t-4.2059285570894795\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (She and her husband, boarded, the Titanic) -> She and her husband (4890ms)\nWho was the captain of the Titanic?\tGuntur\t-4.230058696004661\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Guntur, boarded, the Titanic) -> Guntur (4890ms)\nWho was the captain of the Titanic?\tdeath\t-4.263785729968738\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (death, had boarded, the Titanic) -> death (4890ms)\nWho was the captain of the Titanic?\tThe ship\t-4.298630289753185\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (The ship, sail on is, the Titanic) -> The ship (3728ms)\nWho was the captain of the Titanic?\trelatives\t-4.32443253112295\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (relatives, sailed on, the Titanic) -> relatives (3728ms)\nWho was the captain of the Titanic?\tBernanke\t-4.340217078639161\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, steer, the Titanic) -> (Bernanke, has steered, the Titanic) -> Bernanke (2789ms)\nWho was the captain of the Titanic?\tSaalfeld\t-4.342869207373276\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Saalfeld, boarded, the Titanic) -> Saalfeld (5014ms)\nWho was the captain of the Titanic?\tTwelve dogs\t-4.344919121239284\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Twelve dogs, set sail on, the Titanic) -> Twelve dogs (3727ms)\nWho was the captain of the Titanic?\tan iceberg\t-4.376358189830235\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (the Titanic, to rescue, an iceberg) -> an iceberg (5014ms)\nWho was the captain of the Titanic?\tMrs\t-4.391982174281123\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Mrs, boarded, the Titanic) -> Mrs (5014ms)\nWho was the captain of the Titanic?\tState residents\t-4.406464326618732\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (State residents, set sail Those on, the Titanic) -> State residents (3728ms)\nWho was the captain of the Titanic?\tHow many black people\t-4.440637493314109\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (How many black people, sailed on, the Titanic) -> How many black people (5014ms)\nWho was the captain of the Titanic?\ta ship\t-4.702623226285961\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, have rescue, the Titanic) -> (a ship, had rescued, the survivors of the Titanic) -> a ship (5014ms)\nWho was the captain of the Titanic?\tIreland\t-4.778953800794691\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Ireland, boarded, the Titanic) -> Ireland (5041ms)\nWho was the captain of the Titanic?\ta museum\t-4.819040972819179\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (the Titanic, to spend the rest of its days in, a museum) -> a museum (2908ms)\nWho was the captain of the Titanic?\tSyrians\t-4.867964548747457\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Syrians, Boarded, the Titanic. ?) -> Syrians (5042ms)\nWho was the captain of the Titanic?\tGumoshtnik\t-4.905200104260085\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Gumoshtnik, boarded, the Titanic) -> Gumoshtnik (5042ms)\nWho was the captain of the Titanic?\tBrowne\t-4.911816880953188\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Browne, boarded, the Titanic) -> Browne (5041ms)\nWho was the captain of the Titanic?\tNewcastle\t-4.935262863515728\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Newcastle, boarded, the Titanic) -> Newcastle (5041ms)\nWho was the captain of the Titanic?\tthe kind\t-4.951605033141349\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the kind, might board, the Titanic) -> the kind (5041ms)\nWho was the captain of the Titanic?\tFrancisco\t-4.967093942871269\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Francisco, boarded, the Titanic) -> Francisco (5042ms)\nWho was the captain of the Titanic?\tHarper\t-4.967093942871269\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Harper, boarded, the Titanic) -> Harper (5068ms)\nWho was the captain of the Titanic?\tEllen\t-4.9759359649891195\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Ellen, boarded, the Titanic) -> Ellen (5068ms)\nWho was the captain of the Titanic?\tthe survivors\t-4.994190630243185\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (the Titanic, came to rescue, the survivors) -> the survivors (5068ms)\nWho was the captain of the Titanic?\tthe famous fashion designer\t-5.020304081948491\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the famous fashion designer, is about to board, the Titanic) -> the famous fashion designer (5068ms)\nWho was the captain of the Titanic?\tThieves\t-5.032524579789135\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Thieves, boarded, the Titanic) -> Thieves (5068ms)\nWho was the captain of the Titanic?\tthe passengers\t-5.065747067368456\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the passengers, sailed on, the Titanic) -> the passengers (5068ms)\nWho was the captain of the Titanic?\tthe icy waters\t-5.081910710319433\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (the Titanic, were rescued from, the icy waters) -> the icy waters (5068ms)\nWho was the captain of the Titanic?\tthe chance\t-5.099266059407095\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the chance, board, the RMS Titanic) -> the chance (5115ms)\nWho was the captain of the Titanic?\tthe two\t-5.127199207587674\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the two, were secretly sailing on, the Titanic) -> the two (5115ms)\nWho was the captain of the Titanic?\tthe couple\t-5.173702538915984\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the couple, boarded, the Titanic) -> the couple (5116ms)\nWho was the captain of the Titanic?\tthe bankers\t-5.18422856265726\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, steer, the Titanic) -> (the bankers, only steered, the financial Titanic) -> the bankers (2810ms)\nWho was the captain of the Titanic?\tthe full No one\t-5.200955491815343\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the full No one, boarded, the Titanic) -> the full No one (5115ms)\nWho was the captain of the Titanic?\tthe guy\t-5.215614369999377\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, steer, the Titanic) -> (the guy, steered, the Titanic) -> the guy (2810ms)\nWho was the captain of the Titanic?\tthe coronation\t-5.25944997622133\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the coronation, also sailed aboard, the Titanic) -> the coronation (5116ms)\nWho was the captain of the Titanic?\tThe family\t-5.328728492932731\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The family, boarded, the Titanic) -> The family (5116ms)\nWho was the captain of the Titanic?\tthe real people\t-5.358278105770486\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the real people, sailed on, the Titanic) -> the real people (5115ms)\nWho was the captain of the Titanic?\tthe same number\t-5.402427357301136\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the same number, sailed on, the Titanic) -> the same number (5157ms)\nWho was the captain of the Titanic?\tThe two\t-5.422908874763728\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The two, boarded, the Titanic) -> The two (5157ms)\nWho was the captain of the Titanic?\tthe children?s dogs\t-5.43084690742897\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the children?s dogs, had boarded, the Titanic) -> the children?s dogs (5157ms)\nWho was the captain of the Titanic?\tThe three ladies\t-5.450155148938318\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The three ladies, boarded, the Titanic) -> The three ladies (5157ms)\nWho was the captain of the Titanic?\tThe wealthy and glamorous passengers\t-5.462324363541111\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The wealthy and glamorous passengers, boarded, the Titanic) -> The wealthy and glamorous passengers (5157ms)\nWho was the captain of the Titanic?\tThe two ladies\t-5.4705562678022694\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The two ladies, boarded, the Titanic) -> The two ladies (5157ms)\nWho was the captain of the Titanic?\tthe same ship\t-5.615656636009668\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, have rescue, the Titanic) -> (the same ship, had rescued survivors from, the RMS Titanic) -> the same ship (5157ms)\nWho was the captain of the Titanic?\tthe troubled Massey family\t-5.6243365326593615\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the troubled Massey family, set sail on, the Titanic) -> the troubled Massey family (5215ms)\nWho was the captain of the Titanic?\tthe son\t-5.643788844292667\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the son, had sailed on, the Titanic?s sister ship) -> the son (5215ms)\nWho was the captain of the Titanic?\tMargaret\t-6.273859603155181\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Margaret, boarded, the Titanic) -> Margaret (5215ms)\nWho was the captain of the Titanic?\tMichael\t-6.294260722019132\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Michael, boards, the Titanic) -> Michael (5215ms)\nWho was the captain of the Titanic?\tthe families\t-6.589629613226503\tWho was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the families, boarded, the unsinkable Titanic) -> the families (5247ms)\nWho was the captain of the Titanic?\ttypical captain\t-8.129499733902783\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, typical captain) -> typical captain (6490ms)\nWho was the captain of the Titanic?\tpositive thinker\t-8.148955027001767\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, positive thinker) -> positive thinker (6490ms)\nWho was the captain of the Titanic?\texperienced captain\t-8.149562008545981\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the Titanic, Instance Of, experienced captain) -> experienced captain (6490ms)\nWho was the captain of the Titanic?\tstrong captain\t-8.156918176078582\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, strong captain) -> strong captain (6490ms)\nWho was the captain of the Titanic?\tEastern Europe\t-8.23307470357156\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be a product of, the titanic) -> (Eastern Europe, were a product of, the titanic clash) -> Eastern Europe (5388ms)\nWho was the captain of the Titanic?\tgreat commander\t-8.294637795246707\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, great commander) -> great commander (6490ms)\nWho was the captain of the Titanic?\tThe Britannic\t-8.573313594345763\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the sister of, the titanic) -> (The Britannic, was the sister ship of, the Titanic) -> The Britannic (5388ms)\nWho was the captain of the Titanic?\tgreat guy\t-8.932772643782048\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the Titanic, Instance Of, great guy) -> great guy (6490ms)\nWho was the captain of the Titanic?\tThe Olympic\t-9.075756660102778\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the sister of, the titanic) -> (The Olympic, was the sister ship of, the Titanic) -> The Olympic (5452ms)\nWho was the captain of the Titanic?\tMillvina Dean\t-9.080327618047185\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the last of, the titanic) -> (Millvina Dean, was the last survivor of, the Titanic) -> Millvina Dean (5453ms)\nWho was the captain of the Titanic?\tJesuit tempore co-adjutor\t-9.125763427377413\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic Edward Smith, Instance Of, Jesuit tempore co-adjutor) -> Jesuit tempore co-adjutor (6490ms)\nWho was the captain of the Titanic?\tcountertop installation\t-9.128402062275745\tWho was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (countertop installation, Instance Of, brass key ring s s titanic captain office affordable interior decorating advice service) -> countertop installation (5625ms)\nWho was the captain of the Titanic?\tMaury Yeston\t-9.14545776853348\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, compose, titanic) -> (Maury Yeston, Plays Composed, Titanic) -> Maury Yeston (6490ms)\nWho was the captain of the Titanic?\tMrs. Harrison\t-9.19110415093588\tWho was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (Mrs. Harrison, Instance Of, descendant of the HMS Titanic's Captain Smith) -> Mrs. Harrison (5625ms)\nWho was the captain of the Titanic?\tCobh\t-9.209088380165525\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the last of, the titanic) -> (Cobh, was the last port of, the Titanic) -> Cobh (5453ms)\nWho was the captain of the Titanic?\tR.M.S. Olympic\t-9.290555942807506\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the sister of, the titanic) -> (R.M.S. Olympic, is the sister ship of, the Titanic) -> R.M.S. Olympic (5626ms)\nWho was the captain of the Titanic?\texpert\t-9.371547832437557\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the Titanic, Instance Of, expert) -> expert (6581ms)\nWho was the captain of the Titanic?\tSinking of the Titanic\t-9.46332685527264\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Sinking of the Titanic, Made shipwreck, Wreck of the  RMS Titanic) -> Sinking of the Titanic (6581ms)\nWho was the captain of the Titanic?\twoman\t-9.466442643113242\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the Titanic, Instance Of, woman) -> woman (6581ms)\nWho was the captain of the Titanic?\tEdward John Smith\t-9.510886912362619\tWho was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (Edward John Smith, Instance Of, captain of RMS Titanic) -> Edward John Smith (5625ms)\nWho was the captain of the Titanic?\tcharacter\t-9.536367345425294\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, character) -> character (6581ms)\nWho was the captain of the Titanic?\tfact\t-9.550636336339203\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the last of, the titanic) -> (fact, is the last photograph of, the Titanic) -> fact (5626ms)\nWho was the captain of the Titanic?\tdummy\t-9.552554133355594\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the TITANIC, Instance Of, dummy) -> dummy (6581ms)\nWho was the captain of the Titanic?\tthe Olympic\t-9.579738670032174\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the sister of, the titanic) -> (the Olympic, was the sister ship of, the HMS Titanic) -> the Olympic (5626ms)\nWho was the captain of the Titanic?\tBenjamin Guggenheim\t-9.590116635574178\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Benjamin Guggenheim, went down with, the Titanic) -> Benjamin Guggenheim (5680ms)\nWho was the captain of the Titanic?\tcareerist\t-9.69301614438399\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain Smith of the Titanic, Instance Of, careerist) -> careerist (6581ms)\nWho was the captain of the Titanic?\tThomas Andrews\t-9.759123615354396\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Thomas Andrews, went down with, the Titanic) -> Thomas Andrews (5680ms)\nWho was the captain of the Titanic?\tEleven-year-old John Payne\t-10.075827243991494\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be a student of, the titanic) -> (Eleven-year-old John Payne, has been a student of, the Titanic) -> Eleven-year-old John Payne (5758ms)\nWho was the captain of the Titanic?\tTPS\t-10.084397793567321\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be a product of, the titanic) -> (TPS, is a product of, the post- Titanic era) -> TPS (5758ms)\nWho was the captain of the Titanic?\tCaptain Smith\t-10.110448584351424\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Captain Smith, went down with, the Titanic) -> Captain Smith (5758ms)\nWho was the captain of the Titanic?\tJames Cameron\t-10.231885729591399\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (James Cameron, made, the movie Titanic) -> James Cameron (6581ms)\nWho was the captain of the Titanic?\tIsador Straus\t-10.257792248125533\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Isador Straus, went down with, the Titanic) -> Isador Straus (5781ms)\nWho was the captain of the Titanic?\tDownton Abbey\t-10.260444860031116\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Downton Abbey, went down with, the Titanic) -> Downton Abbey (5781ms)\nWho was the captain of the Titanic?\tEnglishman\t-10.314911257566326\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain Smith of the Titanic, Instance Of, Englishman) -> Englishman (6607ms)\nWho was the captain of the Titanic?\tthey?d\t-10.349005295007437\tWho was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (they?d, include actual film of, the Titanic?s Captain Smith) -> they?d (5781ms)\nWho was the captain of the Titanic?\thelp\t-10.454134073888634\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> (help, think of, the Titanic) -> help (5781ms)\nWho was the captain of the Titanic?\tJesuit\t-10.47980550225487\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain Edward Smith of the Titanic, Instance Of, Jesuit) -> Jesuit (6607ms)\nWho was the captain of the Titanic?\tcall\t-10.483446078492022\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the last of, the titanic) -> (call, was the last stop of, the Titanic) -> call (5781ms)\nWho was the captain of the Titanic?\tGaelic Storm\t-10.490857338706284\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Gaelic Storm, made famous in, the blockbuster movie Titanic) -> Gaelic Storm (6607ms)\nWho was the captain of the Titanic?\ta 46-year-old auditor\t-10.574455108579816\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> (a 46-year-old auditor, thought of, the Titanic) -> a 46-year-old auditor (5806ms)\nWho was the captain of the Titanic?\tClick here\t-10.700265067209662\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> (Click here, thought of, the the Titanic disaster) -> Click here (5806ms)\nWho was the captain of the Titanic?\tcrew members\t-10.739218142097299\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (crew members, went down with, the RMS Titanic) -> crew members (5805ms)\nWho was the captain of the Titanic?\tBallmer\t-10.753205586950017\tWho was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (Ballmer, Instance Of, Titanic of a Captain) -> Ballmer (5805ms)\nWho was the captain of the Titanic?\tIda Straus\t-10.83989905907479\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Ida Straus, went down with, the Titanic) -> Ida Straus (5806ms)\nWho was the captain of the Titanic?\t?My grandfather\t-10.84441466532725\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be second on, the titanic) -> (?My grandfather, was the Second Officer on, the Titanic) -> ?My grandfather (5874ms)\nWho was the captain of the Titanic?\tThe FISTS club\t-10.882749904842395\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> (The FISTS club, is also running, the Titanic 24 Hour Sprint) -> The FISTS club (5874ms)\nWho was the captain of the Titanic?\tMr Ismay\t-10.91105796740624\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> (Mr Ismay, runs, the Titanic Museum) -> Mr Ismay (5874ms)\nWho was the captain of the Titanic?\tJ.P. Morgan\t-10.91335435129117\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (J.P. Morgan, owned, the Titanic) -> J.P. Morgan (5874ms)\nWho was the captain of the Titanic?\tThe engineer\t-10.942401543052933\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be against the titanic ? -> $x: ($x, be against, the titanic) -> (The engineer, is continually battling against, the titanic might) -> The engineer (5874ms)\nWho was the captain of the Titanic?\tJohn Jacob Astor\t-11.034620136202161\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (John Jacob Astor, had gone down with, the Titanic) -> John Jacob Astor (5874ms)\nWho was the captain of the Titanic?\tJohn Jacob Astor IV\t-11.055776305212698\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (John Jacob Astor IV, went down with, the Titanic) -> John Jacob Astor IV (5874ms)\nWho was the captain of the Titanic?\tShine\t-11.075390719376518\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be employee of, the titanic) -> (Shine, was an employee of, the Titanic crew) -> Shine (5874ms)\nWho was the captain of the Titanic?\tMichigan Senator\t-11.088298551672402\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Michigan Senator, led, Titanic investigation) -> Michigan Senator (6061ms)\nWho was the captain of the Titanic?\tGod\t-11.10662108625905\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (God, made, the Titanic collide) -> God (6608ms)\nWho was the captain of the Titanic?\tpopular movies\t-11.205279528530266\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (popular movies, have been made about, the Titanic) -> popular movies (6607ms)\nWho was the captain of the Titanic?\tEloise Smith\t-11.246732330211403\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Eloise Smith, made her way into, the Titanic?s lifeboat No. 6) -> Eloise Smith (6607ms)\nWho was the captain of the Titanic?\tPayne\t-11.33719299129196\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be a student of, the titanic) -> (Payne, has been a student of, the Titanic) -> Payne (6061ms)\nWho was the captain of the Titanic?\tLeonardo Di Caprio\t-11.346741774800208\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Leonardo Di Caprio, has made the event of, the Titanic?s demise) -> Leonardo Di Caprio (6633ms)\nWho was the captain of the Titanic?\tthree Jewish men\t-11.387186231551478\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (three Jewish men, went down with, the Titanic) -> three Jewish men (6061ms)\nWho was the captain of the Titanic?\tan artist\t-11.397549690509528\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (an artist, later went down with, the S.S. Titanic) -> an artist (6096ms)\nWho was the captain of the Titanic?\tthe matter\t-11.422624915749703\tWho was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (the matter, was reminiscent of, Titanic captain Edward Smith) -> the matter (6096ms)\nWho was the captain of the Titanic?\tthe Major Archibald Willingham Butt\t-11.443100596610957\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the Major Archibald Willingham Butt, went down with, the Titanic) -> the Major Archibald Willingham Butt (6096ms)\nWho was the captain of the Titanic?\tLen\t-11.462043914761368\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (Len, has his own connection to, the Titanic) -> Len (6096ms)\nWho was the captain of the Titanic?\ta mess steward\t-11.462864412333511\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (a mess steward, went down with, the Titanic) -> a mess steward (6096ms)\nWho was the captain of the Titanic?\tthe White Star Line\t-11.468462746694595\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the White Star Line, owned, the Titanic ?) -> the White Star Line (6096ms)\nWho was the captain of the Titanic?\tthere?s Isidor and Ida Straus\t-11.491815241664344\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (there?s Isidor and Ida Straus, went down with, the Titanic) -> there?s Isidor and Ida Straus (6096ms)\nWho was the captain of the Titanic?\ta British journalist\t-11.504421700208\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (a British journalist, went down with, the Titanic) -> a British journalist (6120ms)\nWho was the captain of the Titanic?\tthe Titanic\t-11.522666147376793\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (the Titanic, led by, RMS Titanic Inc) -> the Titanic (6119ms)\nWho was the captain of the Titanic?\tAlfred S. Allsop\t-11.537137018666932\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Alfred S. Allsop, went down with, the Titanic) -> Alfred S. Allsop (6119ms)\nWho was the captain of the Titanic?\tWhite Star Lines\t-11.554333177541496\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (White Star Lines, owned, the Titanic) -> White Star Lines (6119ms)\nWho was the captain of the Titanic?\tFeburary?s ride\t-11.562740638859216\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, be bigger, the titanic) -> (Feburary?s ride, will be bigger than, the Titanic) -> Feburary?s ride (7303ms)\nWho was the captain of the Titanic?\tthe Oceanic Steam Navigation Company\t-11.567100636679488\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the Oceanic Steam Navigation Company, owned, the Titanic) -> the Oceanic Steam Navigation Company (6119ms)\nWho was the captain of the Titanic?\tthe building\t-11.596853971134383\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> (the building, think of, the city ?s Titanic link) -> the building (6119ms)\nWho was the captain of the Titanic?\tMary Eloise Faulkland-Herne\t-11.60048783139565\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Mary Eloise Faulkland-Herne, had gone down with, the Titanic) -> Mary Eloise Faulkland-Herne (6140ms)\nWho was the captain of the Titanic?\tSwitzerland Henry Bond\t-11.645009129860384\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Switzerland Henry Bond, went down with, the Titanic) -> Switzerland Henry Bond (6140ms)\nWho was the captain of the Titanic?\tNational Geographic magazine\t-11.64677628641768\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (National Geographic magazine, has made, the Titanic anniversary) -> National Geographic magazine (6633ms)\nWho was the captain of the Titanic?\tThe Mighty Mo\t-11.684160439161197\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, be bigger, the titanic) -> (The Mighty Mo, is bigger than, the Titanic) -> The Mighty Mo (7303ms)\nWho was the captain of the Titanic?\tThe White Star Line\t-11.687875026959018\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (The White Star Line, owned, the Titanic) -> The White Star Line (6140ms)\nWho was the captain of the Titanic?\tEurope and America\t-11.701702867769903\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Europe and America, led to, the Titanic?s demise) -> Europe and America (6140ms)\nWho was the captain of the Titanic?\tOver-confidence\t-11.727986250543482\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Over-confidence, had led to, the Titanic) -> Over-confidence (6160ms)\nWho was the captain of the Titanic?\tCapricorn ?\t-11.730283061257365\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Capricorn ?, Make like, the Titanic and split) -> Capricorn ? (6632ms)\nWho was the captain of the Titanic?\tA discovery\t-11.735333080664194\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (A discovery, was made of, the fabled luxury liner Titanic Found) -> A discovery (6632ms)\nWho was the captain of the Titanic?\tstudents\t-11.744794872621728\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (students, write their own story about, the Titanic) -> students (6160ms)\nWho was the captain of the Titanic?\tthe 8 Musicians\t-11.75825061460337\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the 8 Musicians, Went Down with, the Titanic) -> the 8 Musicians (6161ms)\nWho was the captain of the Titanic?\tMore than 1,500 people\t-11.75935890278687\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (More than 1,500 people, went down with, the Titanic) -> More than 1,500 people (6160ms)\nWho was the captain of the Titanic?\tJack Astor\t-11.771141469366512\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Jack Astor, went down with, the Titanic) -> Jack Astor (6160ms)\nWho was the captain of the Titanic?\ta shipbuilder\t-11.795411965727457\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (a shipbuilder, was to make, the Titanic watertight) -> a shipbuilder (6633ms)\nWho was the captain of the Titanic?\tCha\t-11.81498870673337\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Cha, have started making, the Titanic) -> Cha (6632ms)\nWho was the captain of the Titanic?\tcarpet\t-11.815218213321787\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (carpet, was made for, the Titanic) -> carpet (6633ms)\nWho was the captain of the Titanic?\tthe 8 musicians\t-11.827674817045878\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the 8 musicians, went down with, the Titanic) -> the 8 musicians (6160ms)\nWho was the captain of the Titanic?\tJack Phillips\t-11.853436426841649\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Jack Phillips, went down with, the Titanic) -> Jack Phillips (6160ms)\nWho was the captain of the Titanic?\tthe Belfast boat-builders\t-11.856382395788216\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the Belfast boat-builders, made, the Titanic) -> the Belfast boat-builders (6659ms)\nWho was the captain of the Titanic?\tWindy City\t-11.876161352197318\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Windy City, took a 14-10 lead before, Titanic) -> Windy City (6182ms)\nWho was the captain of the Titanic?\tJeromy and Ron\t-11.934755062175999\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Jeromy and Ron, led the way with, Titanic banner) -> Jeromy and Ron (6182ms)\nWho was the captain of the Titanic?\tKate Winslet\t-11.936071964157186\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Kate Winslet, made famous in, the Titanic movie) -> Kate Winslet (6659ms)\nWho was the captain of the Titanic?\tNew plans\t-11.970155455677514\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (New plans, are being made to raise, the Titanic) -> New plans (6659ms)\nWho was the captain of the Titanic?\tA lifetime highlight\t-11.9785242320971\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (A lifetime highlight, was making dives to, the Titanic wrecksite) -> A lifetime highlight (6659ms)\nWho was the captain of the Titanic?\tmention\t-11.99886318985874\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (mention, was made of, the Titanic) -> mention (6659ms)\nWho was the captain of the Titanic?\tOrlando\t-12.06583019377046\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Orlando, go down with, the Titanic or trade Dwight Howard) -> Orlando (6182ms)\nWho was the captain of the Titanic?\tthe Dordogne\t-12.084544001015312\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (the Dordogne, are running, a Titanic cooking course) -> the Dordogne (6659ms)\nWho was the captain of the Titanic?\tCount Alexander Bismarck\t-12.118301807255083\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Count Alexander Bismarck, famously made, the Titanic necklace) -> Count Alexander Bismarck (6659ms)\nWho was the captain of the Titanic?\tPolicies Michigan Senator\t-12.147399329167726\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Policies Michigan Senator, led, Titanic investigation) -> Policies Michigan Senator (6182ms)\nWho was the captain of the Titanic?\tA Buckley\t-12.15041871200702\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (A Buckley, led, ?Titanic?) -> A Buckley (6182ms)\nWho was the captain of the Titanic?\tCIE Tours\t-12.16190241062836\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (CIE Tours, makes, the Titanic Museum) -> CIE Tours (6684ms)\nWho was the captain of the Titanic?\tthe museum\t-12.1639116350281\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> (the museum, is run by, the Titanic Historical Society) -> the museum (6182ms)\nWho was the captain of the Titanic?\tn't teen-aged boys\t-12.168826280921806\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (n't teen-aged boys, made, Titanic the biggest hit) -> n't teen-aged boys (6685ms)\nWho was the captain of the Titanic?\tautomatist\t-12.172997514495119\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (automatist, went down with, the Titanic) -> automatist (6182ms)\nWho was the captain of the Titanic?\tInformation Act\t-12.179357889890454\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Information Act, has made, the titanic bumblebee) -> Information Act (6685ms)\nWho was the captain of the Titanic?\ta long time\t-12.198745686098796\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (a long time, makes, the Titanic disaster) -> a long time (6685ms)\nWho was the captain of the Titanic?\tLightoller\t-12.254208155282981\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be second on, the titanic) -> (Lightoller, was the Second Officer on, the RMS Titanic) -> Lightoller (6203ms)\nWho was the captain of the Titanic?\tlucky readers\t-12.284175178112488\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (lucky readers, can have my running commentary on, this titanic) -> lucky readers (6685ms)\nWho was the captain of the Titanic?\tVermont\t-12.285551843676643\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Vermont, goes down with, the Titanic) -> Vermont (6202ms)\nWho was the captain of the Titanic?\tOdysseus ? crew\t-12.304108539465314\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Odysseus ? crew, makes, the Titanic staff look) -> Odysseus ? crew (6684ms)\nWho was the captain of the Titanic?\tThe British company\t-12.332542383439975\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (The British company, has been running, Titanic tours) -> The British company (6684ms)\nWho was the captain of the Titanic?\ta dressing table\t-12.335055485122055\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (a dressing table, originally made for, the Titanic) -> a dressing table (6740ms)\nWho was the captain of the Titanic?\ta rare lunar event\t-12.347826871631082\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be against the titanic ? -> $x: ($x, be against, the titanic) -> $x: ($x, against, titanic) -> (a rare lunar event, stacked the deck against, the Titanic) -> a rare lunar event (6741ms)\nWho was the captain of the Titanic?\tdrinkers\t-12.361727933530341\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (drinkers, can make a replica of, the Titanic) -> drinkers (6740ms)\nWho was the captain of the Titanic?\tCommander\t-12.363753447407454\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Commander, went down with, the Titanic) -> Commander (6202ms)\nWho was the captain of the Titanic?\tA cigar box\t-12.375818853627633\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (A cigar box, owned by, the captain of the Titanic) -> A cigar box (6202ms)\nWho was the captain of the Titanic?\tsmall factors\t-12.381111952423232\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (small factors, played a role in, the Titanic disaster) -> small factors (9636ms)\nWho was the captain of the Titanic?\tDancing\t-12.398990693457565\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (Dancing, has his own connection to, the legendary ship Titanic) -> Dancing (6202ms)\nWho was the captain of the Titanic?\tthe crew\t-12.451879537338675\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the crew, went down with, the Titanic) -> the crew (6202ms)\nWho was the captain of the Titanic?\twireless telegraph\t-12.467827894606147\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (wireless telegraph, must have played in, the Titanic disaster) -> wireless telegraph (9637ms)\nWho was the captain of the Titanic?\tparticular numerals\t-12.48639607254065\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (particular numerals, played its part in, the Titanic disaster) -> particular numerals (9637ms)\nWho was the captain of the Titanic?\tGlasgow\t-12.57282688469041\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (Glasgow, has its own direct link to, the Titanic) -> Glasgow (6202ms)\nWho was the captain of the Titanic?\tEvery effort\t-12.621254332746378\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Every effort, has been made to be respectful to, the Titanic) -> Every effort (6740ms)\nWho was the captain of the Titanic?\tMark\t-12.654368085694124\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Mark, made an excellent parallel between, the Titanic) -> Mark (6740ms)\nWho was the captain of the Titanic?\tEngine room\t-12.695003308925974\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (Engine room, was sent from, the Titanic) -> Engine room (9501ms)\nWho was the captain of the Titanic?\tseven passengers\t-12.70675763378766\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> what be leave the titanic ? -> $x: ($x, be leave, the titanic) -> $x: ($x, leave, titanic) -> (seven passengers, left, the Titanic) -> seven passengers (10465ms)\nWho was the captain of the Titanic?\tClash\t-12.734595360873273\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> $x: ($x, think of, titanic) -> (Clash, think of, ?Titanic) -> Clash (6817ms)\nWho was the captain of the Titanic?\tNova Scotia\t-12.788580838918383\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (Nova Scotia, played a central role in, the Titanic event) -> Nova Scotia (9637ms)\nWho was the captain of the Titanic?\tBelfast\t-12.858187359943246\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Belfast, could make, the Titanic) -> Belfast (6818ms)\nWho was the captain of the Titanic?\tAmerica\t-12.920150579321156\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (America, was leading the civilized world in, a titanic struggle) -> America (6818ms)\nWho was the captain of the Titanic?\tSmith\t-12.953239309316324\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Smith, went down with, the Titanic) -> Smith (6818ms)\nWho was the captain of the Titanic?\tthe S.O.S. signals\t-12.975441219843502\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (the S.O.S. signals, sent from, the doomed Titanic) -> the S.O.S. signals (9501ms)\nWho was the captain of the Titanic?\tMinnesota\t-12.983743892781316\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (Minnesota, extended the run of, Titanic) -> Minnesota (6818ms)\nWho was the captain of the Titanic?\t2012 Many famous names\t-12.984777087096013\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (2012 Many famous names, went down with, the Titanic) -> 2012 Many famous names (6817ms)\nWho was the captain of the Titanic?\tthe dogs\t-13.023936590042137\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the dogs, went down with, the Titanic) -> the dogs (6817ms)\nWho was the captain of the Titanic?\tGracie\t-13.035496421423186\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Gracie, actually went down with, the Titanic) -> Gracie (6877ms)\nWho was the captain of the Titanic?\tPolar\t-13.039917406130964\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Polar, nearly went down with, the Titanic) -> Polar (6878ms)\nWho was the captain of the Titanic?\tthe progenitor\t-13.095492069045012\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the progenitor, went down with, the Titanic) -> the progenitor (6877ms)\nWho was the captain of the Titanic?\tthe men passengers\t-13.1147981649173\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> what be leave the titanic ? -> $x: ($x, be leave, the titanic) -> (the men passengers, were left aboard, the Titanic) -> the men passengers (6877ms)\nWho was the captain of the Titanic?\tThe Park Inn Belfast\t-13.12206915483813\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, join force, the titanic) -> (The Park Inn Belfast, has joined forces with, the Titanic Dock) -> The Park Inn Belfast (9971ms)\nWho was the captain of the Titanic?\tthe way women and children\t-13.167350961558157\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> what be leave the titanic ? -> $x: ($x, be leave, the titanic) -> (the way women and children, were allowed to leave, the Titanic) -> the way women and children (6878ms)\nWho was the captain of the Titanic?\t2009\t-13.1740359035162\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (2009, is led by, ?Titanic? director James Cameron?s ?Avatar) -> 2009 (6878ms)\nWho was the captain of the Titanic?\tthe wreck\t-13.180604059098364\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (the wreck, was led by, RMS Titanic Inc.) -> the wreck (6878ms)\nWho was the captain of the Titanic?\tthe image\t-13.19072246670802\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (the image, was led by, RMS Titanic Inc.) -> the image (6940ms)\nWho was the captain of the Titanic?\tthe firm\t-13.204704581617342\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the firm, owned, the Titanic) -> the firm (6940ms)\nWho was the captain of the Titanic?\tpostcards\t-13.210350850346618\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (postcards, sent from, the Titanic) -> postcards (9501ms)\nWho was the captain of the Titanic?\tKevin\t-13.234515554318568\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (Kevin, has his own connection to, the Titanic tragedy) -> Kevin (6940ms)\nWho was the captain of the Titanic?\tthe crucial missing heir\t-13.265035469257798\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the crucial missing heir, went down with, the Titanic) -> the crucial missing heir (6940ms)\nWho was the captain of the Titanic?\tthe matter ?\t-13.299440427269824\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the matter ?, went down with, the Titanic) -> the matter ? (6940ms)\nWho was the captain of the Titanic?\tThe question\t-13.340341988312233\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (The question, go down with, the Titanic) -> The question (6940ms)\nWho was the captain of the Titanic?\ta love story\t-13.386929078969677\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be against the titanic ? -> $x: ($x, be against, the titanic) -> $x: ($x, against, titanic) -> (a love story, set against, the sinking of the Titanic) -> a love story (6963ms)\nWho was the captain of the Titanic?\tDistress calls\t-13.400082260060364\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (Distress calls, were sent from, the Titanic) -> Distress calls (9501ms)\nWho was the captain of the Titanic?\tthe routes\t-13.411812245455758\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (the routes, leads to, Titanic Rock) -> the routes (6963ms)\nWho was the captain of the Titanic?\tthe shipping line\t-13.421096346660235\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the shipping line, owned, the Titanic) -> the shipping line (6963ms)\nWho was the captain of the Titanic?\tThe left boots\t-13.440027856922207\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (The left boots, went down with, the Titanic) -> The left boots (6963ms)\nWho was the captain of the Titanic?\tthe prospective groom\t-13.475788039079728\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the prospective groom, goes down with, the Titanic) -> the prospective groom (6963ms)\nWho was the captain of the Titanic?\tThe chair\t-13.497514928649755\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (The chair, should have gone down with, the Titanic) -> The chair (6963ms)\nWho was the captain of the Titanic?\tDisney\t-13.722030274960503\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (Disney, should run, Titanic Belfast) -> Disney (6989ms)\nWho was the captain of the Titanic?\tSavage\t-13.73084794779373\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Savage, made these observations about, the Titanic) -> Savage (6989ms)\nWho was the captain of the Titanic?\tThe same inversions\t-13.838880628084546\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The same inversions, could have made, the Titanic) -> The same inversions (6989ms)\nWho was the captain of the Titanic?\tThe sets\t-13.845380464424235\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The sets, were painstakingly made to represent, the real Titanic) -> The sets (6989ms)\nWho was the captain of the Titanic?\tthe film\t-13.858310313304695\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, compose, titanic) -> (the film, is actually composed by, Titanic composer James Horner) -> the film (6989ms)\nWho was the captain of the Titanic?\tthe company\t-13.874389721059726\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the company, owned, the Titanic) -> the company (6989ms)\nWho was the captain of the Titanic?\tthe analyst community\t-13.893779913360707\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the analyst community, made a few moves to change, the Titanic) -> the analyst community (6989ms)\nWho was the captain of the Titanic?\tthe fruity\t-13.898655058359585\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the fruity, made jokes about, the Titanic) -> the fruity (7169ms)\nWho was the captain of the Titanic?\tland\t-13.90935080827355\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (land, played an important role in, the Titanic story) -> land (9638ms)\nWho was the captain of the Titanic?\tthe accident HBO\t-13.917334351270569\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (the accident HBO, was running, Titanic) -> the accident HBO (7169ms)\nWho was the captain of the Titanic?\tthe errors\t-13.926046299260072\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the errors, made on, the Titanic) -> the errors (7169ms)\nWho was the captain of the Titanic?\tthe necklace\t-13.926846148918402\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the necklace, made famous in, the Titanic movie) -> the necklace (7169ms)\nWho was the captain of the Titanic?\tThe beardy Canadian\t-14.140684554401627\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The beardy Canadian, made, Titanic the biggest film) -> The beardy Canadian (7169ms)\nWho was the captain of the Titanic?\tThe movie\t-14.223812358804434\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be against the titanic ? -> $x: ($x, be against, the titanic) -> $x: ($x, against, titanic) -> (The movie, went up against, Titanic) -> The movie (7169ms)\nWho was the captain of the Titanic?\tThe only reason people\t-14.22648667074451\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The only reason people, made such a big deal about, the Titanic) -> The only reason people (7169ms)\nWho was the captain of the Titanic?\tEdvard\t-14.33741304104294\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (Edvard, runs, a titanic smouldering balrog) -> Edvard (7169ms)\nWho was the captain of the Titanic?\tthe lifeboats\t-14.350179952318747\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (the lifeboats, were sent away from, the Titanic) -> the lifeboats (9501ms)\nWho was the captain of the Titanic?\tThe morning show\t-14.355653802821323\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (The morning show, will run, a Titanic piece and interview) -> The morning show (7222ms)\nWho was the captain of the Titanic?\ta telegram\t-14.42320244710411\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (a telegram, sent from, the Titanic) -> a telegram (9501ms)\nWho was the captain of the Titanic?\tHalifax\t-14.556700670615147\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (Halifax, played a specific role in, the Titanic story) -> Halifax (9637ms)\nWho was the captain of the Titanic?\tthe items\t-14.593099063699837\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> $x: ($x, own, titanic) -> (the items, are owned by, RMS Titanic Inc.) -> the items (8901ms)\nWho was the captain of the Titanic?\tthe site\t-14.670618875151806\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, can listen to, the titanic) -> (the site, can also listen to, the 1990s Titanic playlist) -> the site (9373ms)\nWho was the captain of the Titanic?\tthe same line\t-14.85306084863009\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the same line, owned, the Titanic) -> the same line (7222ms)\nWho was the captain of the Titanic?\tthe same company\t-14.85306084863009\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the same company, owned, the Titanic) -> the same company (7222ms)\nWho was the captain of the Titanic?\tthe city ?s locals\t-14.930020613246826\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, pride, the titanic) -> (the city ?s locals, take so much pride with, the Titanic) -> the city ?s locals (9971ms)\nWho was the captain of the Titanic?\tThe dramatic images\t-15.205102069192343\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The dramatic images, made from, 250 mosaics of the Titanic site) -> The dramatic images (7222ms)\nWho was the captain of the Titanic?\tThe maiden voyage\t-15.39075381173706\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> $x: ($x, own, titanic) -> (The maiden voyage, has its own space at, Titanic Belfast) -> The maiden voyage (8942ms)\nWho was the captain of the Titanic?\tthe role\t-16.091273728270682\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (the role, played in, the Titanic recovery effort) -> the role (9637ms)\nWho was the captain of the Titanic?\tthe distress message\t-16.242975377570353\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (the distress message, sent from, the Titanic) -> the distress message (9501ms)\nWho was the captain of the Titanic?\tthe shipping company\t-16.495862991559925\tWho was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> $x: ($x, own, titanic) -> (the shipping company, owned, Titanic) -> the shipping company (8987ms)\nWhat is the tallest statue in the world?\tGiza\t-10.91053803294247\tWhat is the tallest statue in the world? -> what be the tallest [ statue in the world ] ? -> what be largest statue in the world ? -> $x: ($x, be largest statue in, the world) -> (Giza, is the largest monolith statue in, the world) -> Giza (8732ms)\nWhat is the tallest statue in the world?\tthe Sam Houston Statue/Visitor Center\t-11.329393150439248\tWhat is the tallest statue in the world? -> what be [ the tallest statue ] in the world ? -> who see the tallest statue ? -> $x: ($x, see, the tallest statue) -> (the Sam Houston Statue/Visitor Center, see, the tallest statue) -> the Sam Houston Statue/Visitor Center (11645ms)\nWhat is the tallest statue in the world?\tDisabled access\t-11.498939584566154\tWhat is the tallest statue in the world? -> what be [ the tallest statue ] in the world ? -> who see the tallest statue ? -> $x: ($x, see, the tallest statue) -> (Disabled access, See, the tallest open air statues) -> Disabled access (11645ms)\nWhat is the tallest statue in the world?\tVulcan\t-11.719434757082944\tWhat is the tallest statue in the world? -> what be the tallest [ statue in the world ] ? -> what be largest statue in the world ? -> $x: ($x, be largest statue in, the world) -> (Vulcan, is the largest cast iron statue in, the world) -> Vulcan (8732ms)\nWhat is a stratocaster?\tseparate piece\t-5.028795776966302\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> (neck of a Fender Stratocaster, Instance Of, separate piece) -> separate piece (4431ms)\nWhat is a stratocaster?\tsolid-body guitar\t-6.306428310835462\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, solid-body guitar) -> solid-body guitar (5585ms)\nWhat is a stratocaster?\tdouble-cutaway guitar\t-6.306428310835462\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, double-cutaway guitar) -> double-cutaway guitar (5585ms)\nWhat is a stratocaster?\ticonic fender instrument\t-6.347303498898952\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic fender instrument) -> iconic fender instrument (5584ms)\nWhat is a stratocaster?\tmodel of electric guitar\t-6.358607981801314\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, model of electric guitar) -> model of electric guitar (5584ms)\nWhat is a stratocaster?\tfender's original guitar\t-6.4956769410008715\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's original guitar) -> fender's original guitar (5584ms)\nWhat is a stratocaster?\ttop quality instrument\t-6.540570896436014\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, top quality instrument) -> top quality instrument (5584ms)\nWhat is a stratocaster?\ttype of electric guitar\t-6.5571341622257515\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, type of electric guitar) -> type of electric guitar (5691ms)\nWhat is a stratocaster?\tfender's successful and modern guitar\t-6.570618729254677\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's successful and modern guitar) -> fender's successful and modern guitar (5691ms)\nWhat is a stratocaster?\tfender's iconic instrument\t-6.58507135479987\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's iconic instrument) -> fender's iconic instrument (5691ms)\nWhat is a stratocaster?\tfender and gibson model\t-6.603704029796408\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender and gibson model) -> fender and gibson model (5691ms)\nWhat is a stratocaster?\tgreat electric guitar\t-6.644694858058898\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great electric guitar) -> great electric guitar (5691ms)\nWhat is a stratocaster?\tcomfortable guitar design\t-6.644694858058898\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, comfortable guitar design) -> comfortable guitar design (5691ms)\nWhat is a stratocaster?\ttimeless electric guitar design\t-6.650049323508892\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, timeless electric guitar design) -> timeless electric guitar design (5704ms)\nWhat is a stratocaster?\tfender style electric guitar\t-6.653815616906034\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender style electric guitar) -> fender style electric guitar (5705ms)\nWhat is a stratocaster?\tsolid body electric guitar\t-6.681234059081834\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, solid body electric guitar) -> solid body electric guitar (5704ms)\nWhat is a stratocaster?\tinnovative electric model\t-6.685467226615205\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, innovative electric model) -> innovative electric model (5704ms)\nWhat is a stratocaster?\tstandard type guitar\t-6.685467226615205\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, standard type guitar) -> standard type guitar (5719ms)\nWhat is a stratocaster?\tthree pickup guitar\t-6.685467226615205\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, three pickup guitar) -> three pickup guitar (5704ms)\nWhat is a stratocaster?\tfender model guitar\t-6.685467226615205\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender model guitar) -> fender model guitar (5718ms)\nWhat is a stratocaster?\ticonic electric guitar\t-6.685467226615205\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic electric guitar) -> iconic electric guitar (5704ms)\nWhat is a stratocaster?\ttype of guitar\t-6.693768202955845\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, type of guitar) -> type of guitar (5719ms)\nWhat is a stratocaster?\tfamous guitar in the world\t-6.694587985462341\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, famous guitar in the world) -> famous guitar in the world (5719ms)\nWhat is a stratocaster?\tlady boudoir guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, lady boudoir guitar) -> lady boudoir guitar (5745ms)\nWhat is a stratocaster?\tbasic electric guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, basic electric guitar) -> basic electric guitar (5732ms)\nWhat is a stratocaster?\tpopular model guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular model guitar) -> popular model guitar (5732ms)\nWhat is a stratocaster?\ticonic electric model\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic electric model) -> iconic electric model (5719ms)\nWhat is a stratocaster?\tsignature fender guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, signature fender guitar) -> signature fender guitar (5732ms)\nWhat is a stratocaster?\tpopular guitar model\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular guitar model) -> popular guitar model (5732ms)\nWhat is a stratocaster?\tdouble cutaway guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, double cutaway guitar) -> double cutaway guitar (5732ms)\nWhat is a stratocaster?\textreemely versatile instrument\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, extreemely versatile instrument) -> extreemely versatile instrument (5745ms)\nWhat is a stratocaster?\tstandard shape guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, standard shape guitar) -> standard shape guitar (5745ms)\nWhat is a stratocaster?\tfender electric guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender electric guitar) -> fender electric guitar (5745ms)\nWhat is a stratocaster?\toriginal fender guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, original fender guitar) -> original fender guitar (5732ms)\nWhat is a stratocaster?\tsolid electric guitar\t-6.730361182050347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, solid electric guitar) -> solid electric guitar (5719ms)\nWhat is a stratocaster?\ttype of Fender guitar\t-6.73571564750034\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, type of Fender guitar) -> type of Fender guitar (5745ms)\nWhat is a stratocaster?\tpretty distinct sounding guitar\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, pretty distinct sounding guitar) -> pretty distinct sounding guitar (5773ms)\nWhat is a stratocaster?\tfamous type of guitar\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, famous type of guitar) -> famous type of guitar (5745ms)\nWhat is a stratocaster?\tguitar of standard\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, guitar of standard) -> guitar of standard (5759ms)\nWhat is a stratocaster?\tfender's instrument\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's instrument) -> fender's instrument (5773ms)\nWhat is a stratocaster?\tdouble cutaway type guitar\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, double cutaway type guitar) -> double cutaway type guitar (5773ms)\nWhat is a stratocaster?\tFENDER design\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, FENDER design) -> FENDER design (5773ms)\nWhat is a stratocaster?\ticon of mid-century modernism and industrial design\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, icon of mid-century modernism and industrial design) -> icon of mid-century modernism and industrial design (5759ms)\nWhat is a stratocaster?\toriginal design of interest\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, original design of interest) -> original design of interest (5759ms)\nWhat is a stratocaster?\tguitar and bass model\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, guitar and bass model) -> guitar and bass model (5759ms)\nWhat is a stratocaster?\tpro quality instrument\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, pro quality instrument) -> pro quality instrument (5772ms)\nWhat is a stratocaster?\tregistered trademark of Fender guitar\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, registered trademark of Fender guitar) -> registered trademark of Fender guitar (5786ms)\nWhat is a stratocaster?\tfender's most popular model\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's most popular model) -> fender's most popular model (5759ms)\nWhat is a stratocaster?\tclassic solid body guitar\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic solid body guitar) -> classic solid body guitar (5772ms)\nWhat is a stratocaster?\ttop notch electric guitar\t-6.739481940897483\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, top notch electric guitar) -> top notch electric guitar (5759ms)\nWhat is a stratocaster?\tgreat rhythm instrument\t-6.750925013069347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great rhythm instrument) -> great rhythm instrument (5786ms)\nWhat is a stratocaster?\tfamous fender guitar\t-6.757779624226147\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, famous fender guitar) -> famous fender guitar (5786ms)\nWhat is a stratocaster?\tpopular model of electric guitar\t-6.766900383073283\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular model of electric guitar) -> popular model of electric guitar (5786ms)\nWhat is a stratocaster?\twell known guitar\t-6.771488844088347\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, well known guitar) -> well known guitar (5786ms)\nWhat is a stratocaster?\telectric guitar\t-6.776842366154001\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, electric guitar) -> electric guitar (5800ms)\nWhat is a stratocaster?\tMyCams model\t-6.785995087808933\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (STRATOCASTER, Instance Of, MyCams model) -> MyCams model (5800ms)\nWhat is a stratocaster?\tguitar model\t-6.813614810140651\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, guitar model) -> guitar model (5800ms)\nWhat is a stratocaster?\tFender model\t-6.942692448011675\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, Fender model) -> Fender model (5800ms)\nWhat is a stratocaster?\tclassic design\t-6.997449548533994\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic design) -> classic design (5800ms)\nWhat is a stratocaster?\tmodern design\t-7.006369391610141\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, modern design) -> modern design (5812ms)\nWhat is a stratocaster?\tfender instrument\t-7.010984533359883\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender instrument) -> fender instrument (5812ms)\nWhat is a stratocaster?\tfender guitar\t-7.015709830601856\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender guitar) -> fender guitar (5813ms)\nWhat is a stratocaster?\tfender model\t-7.016859913913676\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender model) -> fender model (5813ms)\nWhat is a stratocaster?\tpopular guitar\t-7.019210065890053\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular guitar) -> popular guitar (5812ms)\nWhat is a stratocaster?\treal guitar\t-7.02092746227634\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, real guitar) -> real guitar (5813ms)\nWhat is a stratocaster?\ttraditional design\t-7.02430206245172\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, traditional design) -> traditional design (5825ms)\nWhat is a stratocaster?\tpopular model\t-7.039980142357403\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular model) -> popular model (5825ms)\nWhat is a stratocaster?\tgreat guitar\t-7.048060813713066\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great guitar) -> great guitar (5825ms)\nWhat is a stratocaster?\tflagship model\t-7.066350588010877\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, flagship model) -> flagship model (5825ms)\nWhat is a stratocaster?\ticonic model\t-7.075258424131361\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic model) -> iconic model (5825ms)\nWhat is a stratocaster?\tsexy guitar\t-7.096650857351332\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, sexy guitar) -> sexy guitar (5839ms)\nWhat is a stratocaster?\tbright guitar\t-7.096650857351332\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, bright guitar) -> bright guitar (5838ms)\nWhat is a stratocaster?\toriginal guitar\t-7.096650857351332\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, original guitar) -> original guitar (5839ms)\nWhat is a stratocaster?\tpercussion instrument\t-7.107377170259915\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, percussion instrument) -> percussion instrument (5839ms)\nWhat is a stratocaster?\tclassic model\t-7.110651763133696\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic model) -> classic model (5839ms)\nWhat is a stratocaster?\tmodern guitar\t-7.111606371265404\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, modern guitar) -> modern guitar (5839ms)\nWhat is a stratocaster?\tcomplicated instrument\t-7.1118031536981166\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, complicated instrument) -> complicated instrument (5851ms)\nWhat is a stratocaster?\tsignature design\t-7.114276998399861\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, signature design) -> signature design (5851ms)\nWhat is a stratocaster?\telectrical guitar\t-7.117214688370332\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, electrical guitar) -> electrical guitar (5851ms)\nWhat is a stratocaster?\tclassic guitar\t-7.120152379566504\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic guitar) -> classic guitar (5851ms)\nWhat is a stratocaster?\ticonic instrument\t-7.120152379566504\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic instrument) -> iconic instrument (5851ms)\nWhat is a stratocaster?\texcellent guitar\t-7.123090068311275\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, excellent guitar) -> excellent guitar (5851ms)\nWhat is a stratocaster?\tpopular brand\t-7.128758260853538\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular brand) -> popular brand (5862ms)\nWhat is a stratocaster?\tgood guitar\t-7.130649724080428\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, good guitar) -> good guitar (5862ms)\nWhat is a stratocaster?\tguitar\t-7.332781055565015\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> (old-style Stratocaster with a three-position selector switch, Instance Of, guitar) -> guitar (4431ms)\nWhat is a stratocaster?\thigh end guitar\t-7.48993797883984\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, high end guitar) -> high end guitar (5862ms)\nWhat is a stratocaster?\t2006 American Vintage Series Stratocaster\t-7.491012647994264\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, 2006 American Vintage Series Stratocaster) -> 2006 American Vintage Series Stratocaster (5862ms)\nWhat is a stratocaster?\tvariation\t-9.058072771444778\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, variation) -> variation (5875ms)\nWhat is a stratocaster?\tmodel\t-9.070280922255296\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, model) -> model (5875ms)\nWhat is a stratocaster?\treference\t-9.26622605979561\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, reference) -> reference (5875ms)\nWhat is a stratocaster?\tdesign\t-9.302027234928238\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, design) -> design (5875ms)\nWhat is a stratocaster?\tmanufacturer\t-9.331036569312602\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, manufacturer) -> manufacturer (5887ms)\nWhat is a stratocaster?\tclassic\t-9.355641407383178\tWhat is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic) -> classic (5887ms)\nWhat is a stratocaster?\tStellas & Stratocasters: an anthology of articles, interviews, and columns from the pages of Vintage guitar magazine plus new essays\t-11.714041994281752\tWhat is a stratocaster? -> what [ be a stratocaster ] ? -> what be know be a stratocaster ? -> $x: ($x, be know be, a stratocaster) -> $x: ($x, know, stratocaster) -> (Stellas & Stratocasters: an anthology of articles, interviews, and columns from the pages of Vintage guitar magazine plus new essays, Also known as, Stellas and Stratocasters.) -> Stellas & Stratocasters: an anthology of articles, interviews, and columns from the pages of Vintage guitar magazine plus new essays (7336ms)\nWhat is a stratocaster?\tStevie Ray\t-12.783745690593214\tWhat is a stratocaster? -> what [ be a stratocaster ] ? -> what be know be a stratocaster ? -> $x: ($x, be know be, a stratocaster) -> $x: ($x, know, stratocaster) -> (Stevie Ray, was well-known for playing, Stratocasters) -> Stevie Ray (7336ms)\nWhat is a stratocaster?\tJimi Hendrix\t-12.904234521924247\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (A Fender Stratocaster, is carved on, Jimi Hendrix) -> Jimi Hendrix (9416ms)\nWhat is a stratocaster?\tDick Dale\t-13.01404615460802\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Dick Dale, is, a prominent Stratocaster player) -> Dick Dale (9416ms)\nWhat is a stratocaster?\tCharley\t-13.26638029761037\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Charley, was, a custom-made Stratocaster) -> Charley (9416ms)\nWhat is a stratocaster?\tGuitar\t-13.515598861182918\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Guitar, is, a Fender Stratocaster) -> Guitar (9416ms)\nWhat is a stratocaster?\tMexico\t-13.602481539926433\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Red Fender Stratocaster, was made in, Mexico) -> Mexico (9416ms)\nWhat is a stratocaster?\tFender\t-13.654972996491772\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Fender, is introducing, a Blacktop Stratocaster HSH) -> Fender (9416ms)\nWhat is a stratocaster?\tPA system\t-13.67316094098447\tWhat is a stratocaster? -> [ what be a stratocaster ] ? -> what be a stratocaster connect to ? -> $x: (a stratocaster, connect to, $x) -> (a 79 Fender Stratocaster, connected to, PA system) -> PA system (8635ms)\nWhat is a stratocaster?\tan auction\t-13.720743653177069\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (an auction, is ongoing for, a a Fender Stratocaster) -> an auction (9416ms)\nWhat is a stratocaster?\tThe Jimi Hendrix Gibson\t-13.738870847291974\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The Jimi Hendrix Gibson, Will be, a Stratocaster) -> The Jimi Hendrix Gibson (9416ms)\nWhat is a stratocaster?\tDimensions\t-13.799981410851935\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Dimensions, Are For, A Fender Stratocaster Guitar) -> Dimensions (9436ms)\nWhat is a stratocaster?\tSECOND FAVORITE\t-13.807637625848662\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (SECOND FAVORITE, IS, A 1974 FENDER STRATOCASTER SUNBURST.) -> SECOND FAVORITE (9436ms)\nWhat is a stratocaster?\tClaude V. Lucas\t-13.93928588031101\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a 1955 Stratocaster, is the work of, Claude V. Lucas) -> Claude V. Lucas (9436ms)\nWhat is a stratocaster?\tquite small\t-14.00477371058351\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (quite small, is carved with, a Stratocaster) -> quite small (9436ms)\nWhat is a stratocaster?\ta '60 NoNeck\t-14.008524817251438\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a pre-owned Custom Shop Stratocaster, is, a '60 NoNeck) -> a '60 NoNeck (9436ms)\nWhat is a stratocaster?\ta jazz guitarist\t-14.103050671865208\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Stratocaster, seems to be unusual for, a jazz guitarist) -> a jazz guitarist (9436ms)\nWhat is a stratocaster?\tRitchie Blackmore\t-14.15713880904903\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, do, $x) -> (a Stratocaster, did, Ritchie Blackmore) -> Ritchie Blackmore (9436ms)\nWhat is a stratocaster?\tDweezil\t-14.273648783488735\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Dweezil, is holding, a burned Stratocaster) -> Dweezil (9456ms)\nWhat is a stratocaster?\tChoicePt\t-14.300006216912083\tWhat is a stratocaster? -> what [ be a stratocaster ] ? -> what branch have be a stratocaster ? -> $x: ($x, instance of, branch) ($x, have be, a stratocaster) -> (ChoicePt, Instance Of, secret branch of NSA) (choice, has been, a Fender Stratocaster) -> ChoicePt (8512ms)\nWhat is a stratocaster?\tThe GK-2 MIDI pickup\t-14.417545960619053\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The GK-2 MIDI pickup, was mounted onto, a Stratocaster copy) -> The GK-2 MIDI pickup (9456ms)\nWhat is a stratocaster?\ta 1954 Strat\t-14.479228598153087\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a 1992 Fender Stratocaster, has been turned into, a 1954 Strat) -> a 1954 Strat (9456ms)\nWhat is a stratocaster?\tTownshend\t-14.486293626657693\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a 1957 Fender Stratocaster, was given to, Townshend) -> Townshend (9456ms)\nWhat is a stratocaster?\tBruce\t-14.545534906065587\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Bruce, was using, a cheap Fender Stratocaster copy) -> Bruce (9456ms)\nWhat is a stratocaster?\ta humbucker\t-14.773990909878256\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, have, $x) -> (a Fender Stratocaster, had, a humbucker) -> a humbucker (9456ms)\nWhat is a stratocaster?\tthe Affinity\t-14.788487775420393\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the Affinity, is lighter than, a standard stratocaster) -> the Affinity (9456ms)\nWhat is a stratocaster?\tthe Author\t-15.191394895536698\tWhat is a stratocaster? -> what [ be a stratocaster ] ? -> what be know be a stratocaster ? -> $x: ($x, be know be, a stratocaster) -> $x: ($x, know, stratocaster) -> (the Author, Want to known more about, the Fender Stratocaster) -> the Author (7336ms)\nWhat is a stratocaster?\tchoice\t-15.30185965956923\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (choice, has been, a Fender Stratocaster) -> choice (9507ms)\nWhat is a stratocaster?\tmagnets\t-15.308933256182591\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Fender Stratocaster pickup, are, magnets) -> magnets (9507ms)\nWhat is a stratocaster?\tthe guitar player\t-15.403107033767165\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the guitar player, was playing, a Fender Stratocaster) -> the guitar player (9507ms)\nWhat is a stratocaster?\tthe end\t-15.420453341729221\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the end, is on, a Stratocaster) -> the end (9507ms)\nWhat is a stratocaster?\tthe other vital component part\t-15.553579728634192\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Fender Stratocaster, was, the other vital component part) -> the other vital component part (9507ms)\nWhat is a stratocaster?\tThe guitar\t-15.581944122397648\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The guitar, is, a Fender Stratocaster US 1983 Gear) -> The guitar (9507ms)\nWhat is a stratocaster?\tthe looks\t-15.6060583719617\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Stratocaster, neither are, the looks) -> the looks (9589ms)\nWhat is a stratocaster?\tThe bridge\t-15.648651197509613\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The bridge, is, a Fender Stratocaster Deluxe Gold tremolo) -> The bridge (9589ms)\nWhat is a stratocaster?\tthe instrument\t-15.678906118402468\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the instrument, is either, a Fender Stratocaster) -> the instrument (9589ms)\nWhat is a stratocaster?\tThe black guitar\t-15.7099236676198\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The black guitar, is definitely, a Fender Stratocaster) -> The black guitar (9589ms)\nWhat is a stratocaster?\tThe pinball machine\t-15.712576279525383\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The pinball machine, was, a Fender Stratocaster guitar) -> The pinball machine (9588ms)\nWhat is a stratocaster?\tthe auction\t-15.71810331064699\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the auction, was, a 1957 Fender Stratocaster) -> the auction (9588ms)\nWhat is a stratocaster?\tthe first Van Halen record\t-15.771519643788645\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the first Van Halen record, was, a 1959 Fender Stratocaster) -> the first Van Halen record (9588ms)\nWhat is a stratocaster?\tthe track\t-15.782649708461463\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the track, was, a 1972 Fender Stratocaster) -> the track (9589ms)\nWhat is a stratocaster?\tThe other addition\t-15.796734098371154\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The other addition, was, a Rory Gallagher 1961 Stratocaster) -> The other addition (9610ms)\nWhat is a stratocaster?\tthe electric\t-15.807967709238524\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the electric, is, a Fender Blacktop HH Stratocaster) -> the electric (9610ms)\nWhat is a stratocaster?\tthe bass\t-15.816741200631881\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the bass, is, a 20-year-old Fender Stratocaster) -> the bass (9610ms)\nWhat is a stratocaster?\tThe first two guitar solos\t-15.83695028070651\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The first two guitar solos, were played on, a Stratocaster) -> The first two guitar solos (9610ms)\nWhat is a stratocaster?\tthe raffle\t-15.928537876696645\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Fender Squire Stratocaster guitar, was won in, the raffle) -> the raffle (9610ms)\nWhat is a stratocaster?\tthe body\t-16.05729630962029\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the body, tends to be heavy than even, a USA Stratocaster) -> the body (9610ms)\nWhat is a stratocaster?\ta local pawnshop\t-16.289776183496716\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, have, $x) -> (a used Stratocaster, had caught his eye in, a local pawnshop) -> a local pawnshop (9610ms)\nWhat is a stratocaster?\tthe sea change I needed\t-17.132802665838895\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (switching to a Stratocaster, might be, the sea change I needed) -> the sea change I needed (9610ms)\nWhat is a stratocaster?\tthe exact same tools\t-17.963739937750574\tWhat is a stratocaster? -> what [ be a stratocaster ] ? -> what be know be a stratocaster ? -> $x: ($x, be know be, a stratocaster) -> $x: ($x, know, stratocaster) -> $x: ($x, to talk to about, stratocaster) -> (the exact same tools, can be used to talk about, Stratocasters) -> the exact same tools (10753ms)\nWhat is a stratocaster?\trecently\t-18.89054687835976\tWhat is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, have, $x) -> (a used Stratocaster, had caught his eye, recently) -> recently (9631ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIslamic Group\t-3.1325584319941533\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> (Islamic Group, Instance Of, global terrorist organization) (Islamic Group, claimed responsibility for, the 1997 massacre) -> Islamic Group (470ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIslamic Jihad Group\t-3.4878549061741753\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> (Islamic Jihad Group, Instance Of, terrorist organization) (Islamic Group, claimed responsibility for, the 1997 massacre) -> Islamic Jihad Group (470ms)\nWhich terrorist organization claimed responsibility for the massacre?\tAl Qaeda\t-7.053598525508242\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (Al Qaeda, Instance Of, terrorist organization) (Al Qaeda, carries out, the Ashoura Massacre) -> Al Qaeda (8525ms)\nWhich terrorist organization claimed responsibility for the massacre?\torganized crime\t-7.166039522065161\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, blame for, the massacre) -> (organized crime, Instance Of, transnational terrorist organization) (organized crime, has been blamed for, the local massacre) -> organized crime (12215ms)\nWhich terrorist organization claimed responsibility for the massacre?\tLos Zetas\t-7.394949043079736\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, blame for, the massacre) -> (Los Zetas, Instance Of, narco-terrorist organization) (Los Zetas, is blamed for, the massacre) -> Los Zetas (12215ms)\nWhich terrorist organization claimed responsibility for the massacre?\tAl-Qaeda\t-7.400417851264347\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (Al-Qaeda, Instance Of, terrorist organization) (Al Qaeda, carries out, the Ashoura Massacre) -> Al-Qaeda (8525ms)\nWhich terrorist organization claimed responsibility for the massacre?\tal-qaeda\t-7.50668480254942\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (al-qaeda, Instance Of, terrorist organization) (Al-Qaeda, carried out, the Ashoura Massacre) -> al-qaeda (8525ms)\nWhich terrorist organization claimed responsibility for the massacre?\tBushCo\t-7.544328979421882\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, know of, the massacre) -> (BushCo, Instance Of, terrorist organization) (Bush, knew of, the massacre) -> BushCo (1416ms)\nWhich terrorist organization claimed responsibility for the massacre?\tAl- Qaeda\t-7.59125962375064\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (Al- Qaeda, Instance Of, terrorist organization) (Al Qaeda, carries out, the Ashoura Massacre) -> Al- Qaeda (8525ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIraq\t-7.59433919137836\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, take credit for, the massacre) -> (Iraq, Instance Of, terrorist organization) (Iraq, took credit for, the massacre) -> Iraq (12215ms)\nWhich terrorist organization claimed responsibility for the massacre?\tEnd of History\t-7.692393506672573\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, witness, the massacre) -> (End of History, Instance Of, terrorist organization) (History, is witness to, the massacres) -> End of History (13386ms)\nWhich terrorist organization claimed responsibility for the massacre?\tAmnesty International\t-7.7202460622290054\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, kill in, the massacre) -> (Amnesty International, Instance Of, terrorist organization) (Amnesty International, were killed in, the massacre) -> Amnesty International (8597ms)\nWhich terrorist organization claimed responsibility for the massacre?\tOrdine Nuovo\t-7.728289236775908\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (Ordine Nuovo, Instance Of, Italian extreme right terrorist organization) (the massacre, had been carried out by, Ordine Nuovo) -> Ordine Nuovo (7238ms)\nWhich terrorist organization claimed responsibility for the massacre?\tAlQaeda\t-7.7687849887567415\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (AlQaeda, Instance Of, terrorist organization) (Al-Qaeda, carried out, the Ashoura Massacre) -> AlQaeda (8597ms)\nWhich terrorist organization claimed responsibility for the massacre?\tPeople's Will\t-7.784315429413306\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, survive, the massacre) -> (People's Will, Instance Of, terrorist organization) (people, survived, the massacre) -> People's Will (6062ms)\nWhich terrorist organization claimed responsibility for the massacre?\tal-fatah\t-7.790743570462085\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be involve in, the massacre) -> (al-fatah, Instance Of, terrorist organization) (Al-Fatah, were involved in, the massacre) -> al-fatah (12215ms)\nWhich terrorist organization claimed responsibility for the massacre?\tLTTE\t-7.867360300767774\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (LTTE, Instance Of, terrorist organization) (the most heartless massacre, was carried out by, LTTE) -> LTTE (7238ms)\nWhich terrorist organization claimed responsibility for the massacre?\tAl Fatah\t-7.897249876382546\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be involve in, the massacre) -> (Al Fatah, Instance Of, terrorist organization) (Al-Fatah, were involved in, the massacre) -> Al Fatah (12466ms)\nWhich terrorist organization claimed responsibility for the massacre?\tBush\t-7.928893632955793\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, know of, the massacre) -> (Bush, Instance Of, terrorist organization) (Bush, knew of, the massacre) -> Bush (1416ms)\nWhich terrorist organization claimed responsibility for the massacre?\tHuman Rights Watch\t-7.928915793740094\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be complicit in, the massacre) -> (Human Rights Watch, Instance Of, terrorist organization) (Human Rights Watch, was complicit in, the massacre) -> Human Rights Watch (9743ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIsrael\t-7.958837853396858\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be responsible for, the massacre) -> (Israel, Instance Of, terrorist organization) (Israel, was indirectly responsible for, the massacre) -> Israel (9573ms)\nWhich terrorist organization claimed responsibility for the massacre?\tCAIR\t-7.961211826617671\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, denounce, the massacre) -> (CAIR, Instance Of, terrorist organization) (CAIR, just denounced, the Fort Hood Massacre) -> CAIR (1416ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIran\t-7.985608525919254\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (Iran, Instance Of, terrorist organization) (Iran, unreservedly condemns, the massacre) -> Iran (10434ms)\nWhich terrorist organization claimed responsibility for the massacre?\tHama's\t-8.006827273751586\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (Hama's, Instance Of, terrorist organization) (the massacre, carried out by, Hamas) -> Hama's (7238ms)\nWhich terrorist organization claimed responsibility for the massacre?\tterrorist\t-8.201793474716391\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, perpetrate, the massacre) -> (terrorist, Instance Of, terrorist organization) (the terrorists, would perpetrate, the Munich Massacre) -> terrorist (10434ms)\nWhich terrorist organization claimed responsibility for the massacre?\tHamas\t-8.239020032636681\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (Hamas, Instance Of, terrorist organization) (the massacre, carried out by, Hamas) -> Hamas (7239ms)\nWhich terrorist organization claimed responsibility for the massacre?\tgroup\t-8.335179366454142\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (group, Instance Of, terrorist organization) (group, had carried out, the massacre) -> group (9573ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIslamic Jihad\t-8.369280730929898\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, claim responsibility for, massacre) -> $x: ($x, instance of, terrorist organization) ($x, take credit for, massacre) -> (Islamic Jihad, Instance Of, terrorist organization) (Islamic Jihad, were quick to take credit for, massacres) -> Islamic Jihad (14017ms)\nWhich terrorist organization claimed responsibility for the massacre?\tgovernment\t-8.52315743801942\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (government, Instance Of, terrorist organization) (Government, condemns, the massacre) -> government (10434ms)\nWhich terrorist organization claimed responsibility for the massacre?\tGovernment\t-8.635943079801082\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (Government, Instance Of, terrorist organization) (Government, condemns, the massacre) -> Government (10434ms)\nWhich terrorist organization claimed responsibility for the massacre?\tloyalist\t-8.641946454847218\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, be carry out by, $x) -> (loyalist, Instance Of, terrorist organization) (the pub massacres, were all carried out by, loyalists) -> loyalist (3558ms)\nWhich terrorist organization claimed responsibility for the massacre?\tHaganah\t-8.829336558864952\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (Haganah, Instance Of, terrorist organization) (Haganah, immediately condemned, the Deir Yassin massacre) -> Haganah (10434ms)\nWhich terrorist organization claimed responsibility for the massacre?\tMossad\t-8.841353022740204\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be behind, the massacre) -> (Mossad, Instance Of, terrorist organization) (Mossad, was also behind, the Munich Olympics massacre) -> Mossad (9743ms)\nWhich terrorist organization claimed responsibility for the massacre?\tMOSSAD\t-8.843426728357096\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be behind, the massacre) -> (MOSSAD, Instance Of, state-department-identified Terrorist Organization) (Mossad, was also behind, the Munich Olympics massacre) -> MOSSAD (9743ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIndonesia\t-8.932222850966753\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (Indonesia, Instance Of, terrorist organization) (Indonesia, are condemning, the Bali massacre) -> Indonesia (10434ms)\nWhich terrorist organization claimed responsibility for the massacre?\tGerman\t-9.004542282884165\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (German, Instance Of, terrorist organization) (the massacre, was principally carried out by, Germans) -> German (7730ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIrgun\t-9.040610920999695\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be involve in, the massacre) -> (Irgun, Instance Of, terrorist organization) (Irgun, was also involved in, the Deir Yassin Massacre) -> Irgun (13386ms)\nWhich terrorist organization claimed responsibility for the massacre?\tAdvance\t-9.115011607852328\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, be plan in, $x) -> (Advance, Instance Of, terrorist organization) (the massacre, was planned well in, advance) -> Advance (11070ms)\nWhich terrorist organization claimed responsibility for the massacre?\tAmerica\t-9.232745539250764\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be complicit in, the massacre) -> (America, Instance Of, terrorist organization) (America, was complicit in, the 1990s Rwanda massacres) -> America (9743ms)\nWhich terrorist organization claimed responsibility for the massacre?\tman\t-9.525131208358793\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, claim responsibility for, massacre) -> $x: ($x, instance of, terrorist organization) ($x, mastermind, massacre) -> (man, Instance Of, member of a terrorist organization) (man, masterminded, Munich massacre tinyurl.com/28cykju) -> man (18998ms)\nWhich terrorist organization claimed responsibility for the massacre?\tmilitary police\t-9.635347352058666\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, claim responsibility for, massacre) -> $x: ($x, instance of, terrorist organization) (massacre, carry out by, $x) -> (military police, Instance Of, terrorist or insurgent organization) (a massacre, carried out by, military police) -> military police (17376ms)\nWhich terrorist organization claimed responsibility for the massacre?\tIslam\t-10.118953866774905\tWhich terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, claim responsibility for, massacre) -> $x: ($x, instance of, terrorist organization) ($x, have order, massacre) -> (Islam, Instance Of, terrorist organization) (Islam, had ordered, such massacres) -> Islam (16979ms)\nWhat is the richest country in the world?\tlux\t0.6837586975726548\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (lux, is the richest country in, the world) -> lux (7442ms)\nWhat is the richest country in the world?\tGreat Britain\t0.6129766880037093\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Great Britain, was the richest country in, the world) -> Great Britain (7442ms)\nWhat is the richest country in the world?\tThe Vatican\t0.27426030362464404\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The Vatican, is the richest country in, the world) -> The Vatican (7441ms)\nWhat is the richest country in the world?\tThe USA\t0.1961572269395262\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The USA, IS the richest country in, the world) -> The USA (7441ms)\nWhat is the richest country in the world?\tIndia\t0.1810591897113184\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (India, was the richest country in, the world) -> India (7442ms)\nWhat is the richest country in the world?\tLuxembourg\t0.1795548560711523\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Luxembourg, was the richest country in, the world) -> Luxembourg (7564ms)\nWhat is the richest country in the world?\tthe US today\t0.1687867322079707\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the US today, is the richest country in, the world) -> the US today (7564ms)\nWhat is the richest country in the world?\tThe U.S.\t0.16838751236968108\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The U.S., is the richest country in, the world) -> The U.S. (7564ms)\nWhat is the richest country in the world?\tQatar\t0.11457706649341726\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Qatar, is the richest country in, the world) -> Qatar (7564ms)\nWhat is the richest country in the world?\tRussia\t0.11307567640525351\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Russia, was the richest country in, the world) -> Russia (8673ms)\nWhat is the richest country in the world?\tAustralia\t0.0876589064537473\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Australia, was the richest country in, the world) -> Australia (8674ms)\nWhat is the richest country in the world?\tArgentina\t0.0764313605489314\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Argentina, was the richest country in, the world) -> Argentina (8673ms)\nWhat is the richest country in the world?\tNew Zealand\t0.04630063338884194\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (New Zealand, was the second richest country in, the world) -> New Zealand (8674ms)\nWhat is the richest country in the world?\tCanada\t-0.012380638101923025\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Canada, is the richest country in, the world) -> Canada (9517ms)\nWhat is the richest country in the world?\tBermuda\t-0.012380638101923025\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Bermuda, is the richest country in, the world) -> Bermuda (9517ms)\nWhat is the richest country in the world?\tThe United States\t-0.023637911144806067\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The United States, is the richest country in, the world) -> The United States (9517ms)\nWhat is the richest country in the world?\tBrazil\t-0.03133658260105576\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Brazil, is probably the richest country in, the world) -> Brazil (9518ms)\nWhat is the richest country in the world?\tThe UAE\t-0.062480857117141464\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The UAE, is the second richest country in, the world) -> The UAE (9582ms)\nWhat is the richest country in the world?\tSingapore\t-0.1224089413644921\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Singapore, is the third richest country in, the world) -> Singapore (9582ms)\nWhat is the richest country in the world?\tKazakhstan\t-0.1357716310052114\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Kazakhstan, is the second richest country in, the world) -> Kazakhstan (9581ms)\nWhat is the richest country in the world?\tThe Dutch Republic\t-0.1523758416306643\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The Dutch Republic, was the richest country in, the World) -> The Dutch Republic (9730ms)\nWhat is the richest country in the world?\tAustria\t-0.15505969169616896\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Austria, is the 12th richest country in, the world) -> Austria (9730ms)\nWhat is the richest country in the world?\tJapan\t-0.17546081056012108\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Japan, is the second richest country in, the world) -> Japan (9730ms)\nWhat is the richest country in the world?\tEconomy Austria\t-0.18760102289927627\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Economy Austria, is the 12th richest country in, the world) -> Economy Austria (9730ms)\nWhat is the richest country in the world?\tEngland\t-0.19491317489572046\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (England, was already the richest country in, the world) -> England (9790ms)\nWhat is the richest country in the world?\tup all\t-0.20802400903269236\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (up all, probably is the richest country in, the world) -> up all (9790ms)\nWhat is the richest country in the world?\tKuwait\t-0.24177563387908352\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Kuwait, is the fourth richest country in, the world) -> Kuwait (9790ms)\nWhat is the richest country in the world?\tNorway\t-0.2506176032946392\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Norway, is the third richest country in, the world) -> Norway (9790ms)\nWhat is the richest country in the world?\tScotland\t-0.2987619167694846\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Scotland, would be the sixth richest country in, the world) -> Scotland (9915ms)\nWhat is the richest country in the world?\tthe Soviet Union\t-0.3148769343640968\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the Soviet Union, is the richest country in, the world) -> the Soviet Union (9914ms)\nWhat is the richest country in the world?\tthe USA\t-0.4120944047935071\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the USA, is the richest country in, the world) -> the USA (9914ms)\nWhat is the richest country in the world?\tthe Vatican\t-0.4184136799149275\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the Vatican, is probably the richest country in, the world) -> the Vatican (9914ms)\nWhat is the richest country in the world?\tCongo\t-0.43140244007513484\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Congo, would be the richest country in, the world) -> Congo (9914ms)\nWhat is the richest country in the world?\tAmerica\t-0.450373068981722\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (America, is the richest country in, the world) -> America (9981ms)\nWhat is the richest country in the world?\tThe Scandinavians\t-0.4538078101520252\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The Scandinavians, are the richest countries in, the world) -> The Scandinavians (9980ms)\nWhat is the richest country in the world?\tthe United States\t-0.46601560710665113\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the United States, is still the richest country in, the world) -> the United States (9981ms)\nWhat is the richest country in the world?\tChina\t-0.5386962232055068\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (China, is the richest country in, the world) -> China (10081ms)\nWhat is the richest country in the world?\tBritain\t-0.5477933749490621\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Britain, was the richest country in, the world) -> Britain (10082ms)\nWhat is the richest country in the world?\tBritain today\t-0.6154812807989514\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Britain today, may be the fourth richest country in, the world) -> Britain today (10082ms)\nWhat is the richest country in the world?\tAmercia\t-0.6277634041843609\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Amercia, is the richest country in, the world) -> Amercia (10082ms)\nWhat is the richest country in the world?\tthe 20th century America\t-0.6901405854003769\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the 20th century America, was the richest country in, the world) -> the 20th century America (10146ms)\nWhat is the richest country in the world?\tEverQuest\t-0.7313108019992971\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (EverQuest, is the 77th richest country in, the world) -> EverQuest (10146ms)\nWhat is the richest country in the world?\tthe UK\t-0.7313108019992971\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the UK, is the fifth richest country in, the world) -> the UK (10146ms)\nWhat is the richest country in the world?\t2005 america\t-0.9202428555248994\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (2005 america, is the richest country in, the world) -> 2005 america (10211ms)\nWhat is the richest country in the world?\tU.A.E\t-1.010595409815087\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> $x: ($x, richest country in, world) -> (U.A.E, is richest country in, the world) -> U.A.E (10212ms)\nWhat is the richest country in the world?\tthe U.S.\t-1.0620215103864938\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the U.S., is the richest country in, the world) -> the U.S. (10236ms)\nWhat is the richest country in the world?\tWe?ve\t-1.1172985723045745\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (We?ve, been the richest country in, the world) -> We?ve (10237ms)\nWhat is the richest country in the world?\tHaiti\t-1.1847921877733816\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Haiti, was the richest country in, the world) -> Haiti (10313ms)\nWhat is the richest country in the world?\tthe nation\t-1.380158156939404\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the nation, was the richest country in, the world) -> the nation (10437ms)\nWhat is the richest country in the world?\tNepal\t-1.3881532099119687\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Nepal, is the second richest country in, the world) -> Nepal (10437ms)\nWhat is the richest country in the world?\tBarbados\t-1.4230291529660977\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Barbados, is the 51st richest country in, the world) -> Barbados (10613ms)\nWhat is the richest country in the world?\tIceland\t-1.4230291529660977\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Iceland, is the 5th richest country in, the world) -> Iceland (10613ms)\nWhat is the richest country in the world?\tthe question\t-1.9654782164684939\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the question, is the richest country in, the world) -> the question (10951ms)\nWhat is the richest country in the world?\tamerca\t-2.331482512156284\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (amerca, is the richest country in, the world) -> amerca (11325ms)\nWhat is the richest country in the world?\t2000 Ireland\t-2.7367236600476983\tWhat is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (2000 Ireland, was the sixth-richest country in, the world) -> 2000 Ireland (11514ms)\nWhat is the richest country in the world?\tRSA\t-7.221216499308602\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (RSA, is the richest country in, Africa) -> RSA (12902ms)\nWhat is the richest country in the world?\tSouth Africa\t-7.358647063302024\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (South Africa, is the richest country in, Africa) -> South Africa (12903ms)\nWhat is the richest country in the world?\tinhabitants Angola\t-7.866409228252671\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (inhabitants Angola, should be the richest country in, Africa) -> inhabitants Angola (12902ms)\nWhat is the richest country in the world?\tBurma\t-7.9567752428358425\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in asia ? -> $x: ($x, be the richest country in, asia) -> (Burma, was once the richest country in, Asia) -> Burma (11968ms)\nWhat is the richest country in the world?\tsooner..the Philippines\t-7.9595308643807705\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in asia ? -> $x: ($x, be the richest country in, asia) -> (sooner..the Philippines, will be the richest country in, Asia) -> sooner..the Philippines (11992ms)\nWhat is the richest country in the world?\tUganda\t-8.121407672630154\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (Uganda, is the richest country in, Africa) -> Uganda (13085ms)\nWhat is the richest country in the world?\tNigeria\t-8.402970351201846\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (Nigeria, should be the richest country in, Africa) -> Nigeria (13290ms)\nWhat is the richest country in the world?\tNew York city\t-8.585315623041751\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (New York city, is the richest city in, the world) -> New York city (12179ms)\nWhat is the richest country in the world?\tEthiopia\t-8.61001508993558\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (Ethiopia, is also the 10th richest country in, Africa) -> Ethiopia (13432ms)\nWhat is the richest country in the world?\tZambia\t-8.610762206871673\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (Zambia, was actually the richest country in, Central Africa) -> Zambia (13432ms)\nWhat is the richest country in the world?\ta good track record\t-8.696368981828794\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (a good track record, is the richest country in, Africa) -> a good track record (13547ms)\nWhat is the richest country in the world?\t1962 Myanmar\t-8.801049613093863\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in asia ? -> $x: ($x, be the richest country in, asia) -> (1962 Myanmar, was the single richest country in, Asia) -> 1962 Myanmar (12400ms)\nWhat is the richest country in the world?\tPhiladelphia\t-8.805247833868023\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Philadelphia, was the richest city in, the world) -> Philadelphia (12400ms)\nWhat is the richest country in the world?\tthe Arab world\t-8.999537649893465\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the name of the richest country ? -> $x: ($x, be the name of, the richest country) -> (the Arab world, is the name of, the richest country) -> the Arab world (13829ms)\nWhat is the richest country in the world?\tBabylon\t-9.025594137591385\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Babylon, was the richest city in, the ancient world) -> Babylon (13829ms)\nWhat is the richest country in the world?\tZimbabwe\t-9.077302093900729\tWhat is the richest country in the world? -> what [ be the richest country ] in the world ? -> what be be the richest country on the planet ? -> $x: ($x, be be the richest country on, the planet) -> (Zimbabwe, would be the richest country on, the planet) -> Zimbabwe (13914ms)\nWhat is the richest country in the world?\tMelbourne\t-9.08140792448434\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Melbourne, was the richest city in, the world) -> Melbourne (13914ms)\nWhat is the richest country in the world?\tAbu Dhabi\t-9.1326843193116\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Abu Dhabi, is the richest city in, the world) -> Abu Dhabi (14018ms)\nWhat is the richest country in the world?\tTimbuktu\t-9.1627189073387\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Timbuktu, was the richest city in, the world) -> Timbuktu (14018ms)\nWhat is the richest country in the world?\tBaghdad\t-9.173329302258743\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Baghdad, was the richest city in, the world) -> Baghdad (14199ms)\nWhat is the richest country in the world?\tEconomy S?o Paulo\t-9.229906263089827\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Economy S?o Paulo, is the 10th richest city in, the world) -> Economy S?o Paulo (14365ms)\nWhat is the richest country in the world?\tLondon\t-9.274381414805262\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (London, is likely the richest city in, the world) -> London (14415ms)\nWhat is the richest country in the world?\tTHE BUZZ Abu Dhabi\t-9.445656100617922\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (THE BUZZ Abu Dhabi, is the richest city in, the world) -> THE BUZZ Abu Dhabi (14465ms)\nWhat is the richest country in the world?\tSao Paulo Brazil\t-9.503833353882342\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Sao Paulo Brazil, is the 19th richest city in, the world) -> Sao Paulo Brazil (14536ms)\nWhat is the richest country in the world?\tS?o Paulo\t-9.881188468204506\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (S?o Paulo, is the 19th richest city in, the world) -> S?o Paulo (14766ms)\nWhat is the richest country in the world?\tSao Paulo\t-9.942133552287338\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Sao Paulo, is the 10th richest city in, the world) -> Sao Paulo (14797ms)\nWhat is the richest country in the world?\tAmerica and China\t-10.333429559042877\tWhat is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (America and China, are the only two countries in, the world) -> America and China (14969ms)\nWhat is the richest country in the world?\tChina and India\t-10.345808326765113\tWhat is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (China and India, are the only two countries in, the world) -> China and India (14969ms)\nWhat is the richest country in the world?\tIndia & China\t-10.35818709448735\tWhat is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (India & China, are the only two countries in, the world) -> India & China (14994ms)\nWhat is the richest country in the world?\tAmsterdam\t-10.3648009644728\tWhat is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Amsterdam, was the richest city in, the world) -> Amsterdam (14994ms)\nWhat is the richest country in the world?\tMadagascar\t-10.366154096724534\tWhat is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (Madagascar, are the only two countries in, the world) -> Madagascar (14995ms)\nWhat is the richest country in the world?\tIndia and China\t-10.519539850115551\tWhat is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (India and China, are the only two countries in, the world) -> India and China (15155ms)\nWhat store does Martha Stewart advertise for?\tyear\t-9.52837686564407\tWhat store does Martha Stewart advertise for? -> $x: ($x, instance of, store) (Martha Stewart, advertise for, $x) -> $x: ($x, instance of, store) (Martha Stewart, could be for, $x) -> (year, Instance Of, Store key vehicle information) (Martha Stewart, could be living there for, years) -> year (546ms)\nWhat is Britney Spears' middle name?\tBritney Spears\t-10.107564249071503\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (Britney Spears, Also known as, Britney Jean Spears) -> Britney Spears (14969ms)\nWhat is Britney Spears' middle name?\tSvetlana Svetikova\t-10.191101886217002\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (Svetlana Svetikova, Also known as, Britney Spears of Russia) -> Svetlana Svetikova (14968ms)\nWhat is Britney Spears' middle name?\tThe Circus: Starring Britney Spears\t-10.295798009266772\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (The Circus: Starring Britney Spears, Also known as, The Circus Starring: Britney Spears) -> The Circus: Starring Britney Spears (14968ms)\nWhat is Britney Spears' middle name?\tBritney Spears: In the Zone\t-10.295798009266772\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (Britney Spears: In the Zone, Also known as, \"Britney Spears: In the Zone\"@ru) -> Britney Spears: In the Zone (14968ms)\nWhat is Britney Spears' middle name?\tBritney Spears: Greatest Hits: My Prerogative\t-10.313665781656226\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (Britney Spears: Greatest Hits: My Prerogative, Also known as, Britney Spears: Greatest Hits - My Prerogative) -> Britney Spears: Greatest Hits: My Prerogative (14968ms)\nWhat is Britney Spears' middle name?\tOops! I Did It Again: The Best Of Britney Spears\t-10.367269098824586\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (Oops! I Did It Again: The Best Of Britney Spears, Also known as, Oops! I Did It Again - The Best Of Britney Spears) -> Oops! I Did It Again: The Best Of Britney Spears (14969ms)\nWhat is Britney Spears' middle name?\tBritney Spears doll\t-11.048461731742062\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (Britney Spears doll, Also known as, Britney Spears Doll) -> Britney Spears doll (14968ms)\nWhat is Britney Spears' middle name?\tthe West\t-11.855484163754525\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (the West, knows everything about, Britney Spears) -> the West (14968ms)\nWhat is Britney Spears' middle name?\tthe Lindsay Lohan\t-13.71137586212592\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (the Lindsay Lohan, known as, the Britney Spears) -> the Lindsay Lohan (15051ms)\nWhat is Britney Spears' middle name?\tThe lass\t-14.069143350975917\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (The lass, has been known as, the Britney Spears lookalike) -> The lass (15051ms)\nWhat is Britney Spears' middle name?\tthe next county\t-14.43227232759724\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (the next county, knows all about, Britney Spears) -> the next county (15051ms)\nWhat is Britney Spears' middle name?\tthe students\t-14.563013549972922\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (the students, knew, Elvis or Britney Spears) -> the students (15051ms)\nWhat is Britney Spears' middle name?\tthe train wreck\t-15.285417646976379\tWhat is Britney Spears' middle name? -> what be [ britney spear  ] middle name ? -> who know britney spear  ? -> $x: ($x, know, britney spear) -> (the train wreck, known as, Britney Spears) -> the train wreck (15051ms)\nWho is Anubis?\tegyptian deity\t-2.4730515156282245\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian deity) -> egyptian deity (3229ms)\nWho is Anubis?\tinfernal deity\t-2.544856315900308\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, infernal deity) -> infernal deity (3229ms)\nWho is Anubis?\tintriguing character\t-2.6637353514532114\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, intriguing character) -> intriguing character (3229ms)\nWho is Anubis?\tawesome character\t-2.6638419787596628\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, awesome character) -> awesome character (3229ms)\nWho is Anubis?\tgreat leader\t-2.667844523659931\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great leader) -> great leader (3229ms)\nWho is Anubis?\tprotective deity\t-2.6791288483693214\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, protective deity) -> protective deity (3229ms)\nWho is Anubis?\tremovable figure\t-2.6887705217074065\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, removable figure) -> removable figure (3378ms)\nWho is Anubis?\tcynocephalic deity\t-2.6887705217074065\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, cynocephalic deity) -> cynocephalic deity (3378ms)\nWho is Anubis?\tprimary character\t-2.6997378988228666\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, primary character) -> primary character (3378ms)\nWho is Anubis?\tminor deity\t-2.703286167493083\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, minor deity) -> minor deity (3378ms)\nWho is Anubis?\tdark deity\t-2.7112037925785155\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dark deity) -> dark deity (3378ms)\nWho is Anubis?\tleaved plant\t-2.7118597356551537\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, leaved plant) -> leaved plant (3378ms)\nWho is Anubis?\tgreat ride\t-2.7145761144876532\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great ride) -> great ride (3393ms)\nWho is Anubis?\tgreat tool\t-2.730549755976404\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great tool) -> great tool (3393ms)\nWho is Anubis?\tegyptian god\t-2.981268084477934\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian god) -> egyptian god (3393ms)\nWho is Anubis?\tlow light plant\t-3.177563617256066\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, low light plant) -> low light plant (3393ms)\nWho is Anubis?\tancient egyptian god\t-3.196031054700807\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient egyptian god) -> ancient egyptian god (3393ms)\nWho is Anubis?\tancient god\t-3.213696521043385\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient god) -> ancient god (3393ms)\nWho is Anubis?\tgod\t-3.235275317733835\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god) -> god (3410ms)\nWho is Anubis?\textremely ancient deity\t-3.2415573170154834\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, extremely ancient deity) -> extremely ancient deity (3410ms)\nWho is Anubis?\tegytian god\t-3.2574251971274473\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egytian god) -> egytian god (3410ms)\nWho is Anubis?\tanimal-headed god of ancient egypt\t-3.2714734060340893\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal-headed god of ancient egypt) -> animal-headed god of ancient egypt (3410ms)\nWho is Anubis?\tmalwarebinary analysis platform\t-3.2823296855717903\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, malwarebinary analysis platform) -> malwarebinary analysis platform (3410ms)\nWho is Anubis?\thieroglyph egyptian god\t-3.2920372370530897\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, hieroglyph egyptian god) -> hieroglyph egyptian god (3425ms)\nWho is Anubis?\tprincipal egyptian god\t-3.2920372370530897\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, principal egyptian god) -> principal egyptian god (3410ms)\nWho is Anubis?\tdog-headed human figure\t-3.312245774590396\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog-headed human figure) -> dog-headed human figure (3425ms)\nWho is Anubis?\tfate and underworld deity\t-3.312245774590396\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fate and underworld deity) -> fate and underworld deity (3425ms)\nWho is Anubis?\tdeity of Egyptian cult and religion\t-3.312245774590396\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, deity of Egyptian cult and religion) -> deity of Egyptian cult and religion (3425ms)\nWho is Anubis?\tEgyptian Lord of the Dead\t-3.312245774590396\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian Lord of the Dead) -> Egyptian Lord of the Dead (3425ms)\nWho is Anubis?\tgoldfish safe aquarium plant\t-3.312245774590396\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, goldfish safe aquarium plant) -> goldfish safe aquarium plant (3425ms)\nWho is Anubis?\tcomic book character\t-3.3177695242588396\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, comic book character) -> comic book character (3447ms)\nWho is Anubis?\tfalse god\t-3.3270095510523117\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, false god) -> false god (3447ms)\nWho is Anubis?\tdynamicmalware analysis platform\t-3.327223641006932\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dynamicmalware analysis platform) -> dynamicmalware analysis platform (3447ms)\nWho is Anubis?\tfairly small character\t-3.327223641006932\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fairly small character) -> fairly small character (3447ms)\nWho is Anubis?\tamazingly young band\t-3.327223641006932\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, amazingly young band) -> amazingly young band (3447ms)\nWho is Anubis?\twell rounded character\t-3.3387682479808056\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, well rounded character) -> well rounded character (3461ms)\nWho is Anubis?\tancient Egyptian deity\t-3.339664216766196\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient Egyptian deity) -> ancient Egyptian deity (3461ms)\nWho is Anubis?\tgreat aquatic plant\t-3.354642083182732\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great aquatic plant) -> great aquatic plant (3461ms)\nWho is Anubis?\tmiddle kingdom deity\t-3.354642083182732\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, middle kingdom deity) -> middle kingdom deity (3461ms)\nWho is Anubis?\thouse band with name\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, house band with name) -> house band with name (3492ms)\nWho is Anubis?\tfate and the underworld deity\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fate and the underworld deity) -> fate and the underworld deity (3491ms)\nWho is Anubis?\tlord of the land of death\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, lord of the land of death) -> lord of the land of death (3476ms)\nWho is Anubis?\tprincipal egyptian-greco-roman god\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, principal egyptian-greco-roman god) -> principal egyptian-greco-roman god (3507ms)\nWho is Anubis?\tgod of the pharoahs\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of the pharoahs) -> god of the pharoahs (3523ms)\nWho is Anubis?\tgod with the head of a dog or a jackal\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god with the head of a dog or a jackal) -> god with the head of a dog or a jackal (3476ms)\nWho is Anubis?\tgod of greek mythology\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of greek mythology) -> god of greek mythology (3491ms)\nWho is Anubis?\tAncient Mysterious Figure\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Ancient Mysterious Figure) -> Ancient Mysterious Figure (3491ms)\nWho is Anubis?\tanthropomorphic egyptian god\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, anthropomorphic egyptian god) -> anthropomorphic egyptian god (3523ms)\nWho is Anubis?\tgod of antiquity\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of antiquity) -> god of antiquity (3507ms)\nWho is Anubis?\tEgyptian-themed character\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian-themed character) -> Egyptian-themed character (3536ms)\nWho is Anubis?\tdog-like deity\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog-like deity) -> dog-like deity (3524ms)\nWho is Anubis?\tgod by mortal\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god by mortal) -> god by mortal (3476ms)\nWho is Anubis?\tgod with astonishing power\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god with astonishing power) -> god with astonishing power (3524ms)\nWho is Anubis?\tfamous figure from historical egypt\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, famous figure from historical egypt) -> famous figure from historical egypt (3524ms)\nWho is Anubis?\tgiant stones of these deity\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, giant stones of these deity) -> giant stones of these deity (3536ms)\nWho is Anubis?\tanimal-shaped or animal-headed deity\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal-shaped or animal-headed deity) -> animal-shaped or animal-headed deity (3507ms)\nWho is Anubis?\tfunerary and protective deity\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, funerary and protective deity) -> funerary and protective deity (3507ms)\nWho is Anubis?\tegyptian god of lore\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian god of lore) -> egyptian god of lore (3476ms)\nWho is Anubis?\treligious or mythological figure\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, religious or mythological figure) -> religious or mythological figure (3491ms)\nWho is Anubis?\tcommon egyptian tattoo show god\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, common egyptian tattoo show god) -> common egyptian tattoo show god (3461ms)\nWho is Anubis?\tegypt too god\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egypt too god) -> egypt too god (3536ms)\nWho is Anubis?\tegyptians god\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptians god) -> egyptians god (3524ms)\nWho is Anubis?\tdog deity of the Egyptians\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog deity of the Egyptians) -> dog deity of the Egyptians (3476ms)\nWho is Anubis?\tsecond order Egyptian deity\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, second order Egyptian deity) -> second order Egyptian deity (3506ms)\nWho is Anubis?\tgod in the afterlife\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god in the afterlife) -> god in the afterlife (3507ms)\nWho is Anubis?\tegyption god\t-3.357139730025539\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyption god) -> egyption god (3491ms)\nWho is Anubis?\tprogressive rock band\t-3.3587919008219496\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, progressive rock band) -> progressive rock band (3536ms)\nWho is Anubis?\tanimal god\t-3.3630151105793313\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal god) -> animal god (3536ms)\nWho is Anubis?\tsun god\t-3.3727015486240033\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, sun god) -> sun god (3536ms)\nWho is Anubis?\tgod of egypt\t-3.3735907950858786\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of egypt) -> god of egypt (3991ms)\nWho is Anubis?\tsolar god\t-3.3754186910675053\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, solar god) -> solar god (3991ms)\nWho is Anubis?\tlow-light plant\t-3.38266724337958\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, low-light plant) -> low-light plant (3991ms)\nWho is Anubis?\tMyCams model\t-3.403652876936989\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (ANUBIS, Instance Of, MyCams model) -> MyCams model (3991ms)\nWho is Anubis?\thieroglyphic egyptian god\t-3.404142774455881\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, hieroglyphic egyptian god) -> hieroglyphic egyptian god (3991ms)\nWho is Anubis?\tdeity\t-3.7385169927980977\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, deity) -> deity (4251ms)\nWho is Anubis?\tEgyptian deity\t-3.8594282487293414\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian deity) -> Egyptian deity (4251ms)\nWho is Anubis?\ttool\t-3.8792911934571457\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, tool) -> tool (4251ms)\nWho is Anubis?\tsymbol\t-3.895933846981114\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, symbol) -> symbol (4251ms)\nWho is Anubis?\tgood plant\t-3.9003857807912157\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, good plant) -> good plant (4251ms)\nWho is Anubis?\tcharacter\t-3.9091037781199436\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, character) -> character (4271ms)\nWho is Anubis?\tprivate company\t-3.947491820469608\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus Software, Instance Of, private company) -> private company (4271ms)\nWho is Anubis?\tfigure\t-4.051238285935138\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, figure) -> figure (4271ms)\nWho is Anubis?\twarlord\t-4.080078800350735\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, warlord) -> warlord (4271ms)\nWho is Anubis?\tcandidate\t-4.082610556918667\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, candidate) -> candidate (4271ms)\nWho is Anubis?\twoman\t-4.092747079912777\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, woman) -> woman (4271ms)\nWho is Anubis?\tfactor\t-4.097401106342255\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, factor) -> factor (4283ms)\nWho is Anubis?\tfemale\t-4.117497859612275\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, female) -> female (4283ms)\nWho is Anubis?\tmatter\t-4.121663356403885\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, matter) -> matter (4283ms)\nWho is Anubis?\tmonster\t-4.121921400540455\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, monster) -> monster (4283ms)\nWho is Anubis?\tcreature\t-4.122014752291906\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, creature) -> creature (4283ms)\nWho is Anubis?\tgift\t-4.124195524806964\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, gift) -> gift (4283ms)\nWho is Anubis?\twork\t-4.127841702380648\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, work) -> work (4296ms)\nWho is Anubis?\tname\t-4.131457156562065\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, name) -> name (4296ms)\nWho is Anubis?\tgirl\t-4.133281608327132\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, girl) -> girl (4296ms)\nWho is Anubis?\tplatform\t-4.137230494539669\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, platform) -> platform (4296ms)\nWho is Anubis?\tmaterial\t-4.149840166038013\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> (ANUBIS, Instance Of, material) -> material (4296ms)\nWho is Anubis?\ttwo-pieces-band\t-4.2199635169646115\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, two-pieces-band) -> two-pieces-band (4307ms)\nWho is Anubis?\timproved lollo rosso\t-4.551959139000365\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, improved lollo rosso) -> improved lollo rosso (4307ms)\nWho is Anubis?\tsound pug\t-4.581875228018972\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, sound pug) -> sound pug (4307ms)\nWho is Anubis?\tsexy part of this Egyptian breakfast\t-4.581875228018972\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, sexy part of this Egyptian breakfast) -> sexy part of this Egyptian breakfast (4307ms)\nWho is Anubis?\tset of portfolio management tool\t-4.581875228018972\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, set of portfolio management tool) -> set of portfolio management tool (4307ms)\nWho is Anubis?\timproved lollo rosso type\t-4.581875228018972\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, improved lollo rosso type) -> improved lollo rosso type (4307ms)\nWho is Anubis?\tWAY better name\t-4.607184559446741\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, WAY better name) -> WAY better name (4323ms)\nWho is Anubis?\tnet.label\t-4.618890122872612\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus Music, Instance Of, net.label) -> net.label (4323ms)\nWho is Anubis?\t4 year entire male\t-5.04182813631746\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, 4 year entire male) -> 4 year entire male (4323ms)\nWho is Anubis?\tleader\t-5.3699111358057126\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, leader) -> leader (4323ms)\nWho is Anubis?\tthe donate button\t-10.02087966425503\tWho is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (Anubis, modelling, $x) -> (an Anubis plushie, modeled after, the donate button) -> the donate button (4323ms)\nWho is Anubis?\tThe face\t-11.805365560375574\tWho is Anubis? -> who be [ anubi ] ? -> who be be anubi ? -> $x: ($x, be be, anubi) -> (The face, down was a Judgement of, Anubus) -> The face (5255ms)\nWho is Anubis?\tXylophanes anubus\t-11.855263317291634\tWho is Anubis? -> who be [ anubi ] ? -> what s the name of anubi ? -> $x: (anubi, name, $x) -> (Xylophanes anubus, Scientific name, Xylophanes anubus) -> Xylophanes anubus (5686ms)\nWho is Anubis?\tthe genus Xylophanes\t-12.017784186859425\tWho is Anubis? -> who be [ anubi ] ? -> who be be anubi ? -> $x: ($x, be be, anubi) -> (the genus Xylophanes, is, Xylophanes anubus) -> the genus Xylophanes (5255ms)\nWho is Anubis?\tthe black fox\t-12.21309217569454\tWho is Anubis? -> who be [ anubi ] ? -> who be be anubi ? -> $x: ($x, be be, anubi) -> (the black fox, is, Anubi) -> the black fox (5255ms)\nWho is Anubis?\t1987-03-03\t-13.387515100112395\tWho is Anubis? -> who be [ anubi ] ? -> what be the birthdate of anubi ? -> $x: (anubi, birthdate, $x) -> $x: (anubi, date of birth, $x) -> (Kola Anubi, Date of birth, 1987-03-03) -> 1987-03-03 (8044ms)\nWhen did Hawaii become a state?\t1978\t-5.070058624713676\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: (hawaius, establish date, $x) -> (Hawaii Volcanoes Wilderness, Date Established, 1978) -> 1978 (11073ms)\nWhen did Hawaii become a state?\t1963\t-6.394324438141158\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a state in, 1963) -> 1963 (13140ms)\nWhen did Hawaii become a state?\t1893\t-6.404934780358907\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a republic in, 1893) -> 1893 (13140ms)\nWhen did Hawaii become a state?\t1900\t-6.4288081294022845\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a territory in, 1900) -> 1900 (13139ms)\nWhen did Hawaii become a state?\t1959\t-6.497283577316443\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a State in, 1959) -> 1959 (13140ms)\nWhen did Hawaii become a state?\t2005\t-6.607765749645945\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what be the date of hawaius independence ? -> $x: (hawaius independence, date, $x) -> (A Study on Korean immigration and independence movements in Hawaii : relating to Korean churches and picture bride, 1903-2003, Publication date, 2005) -> 2005 (9524ms)\nWhen did Hawaii become a state?\t1918\t-6.746885474927543\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became dry in, 1918) -> 1918 (13140ms)\nWhen did Hawaii become a state?\t2000\t-6.771703605919145\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became available in, 2000) -> 2000 (13275ms)\nWhen did Hawaii become a state?\t1970\t-6.82563966151587\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became independent in, 1970) -> 1970 (13275ms)\nWhen did Hawaii become a state?\t1898\t-6.846040780379823\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became American in, 1898) -> 1898 (13275ms)\nWhen did Hawaii become a state?\t1894\t-7.054671958157225\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became an independent republic in, 1894) -> 1894 (13324ms)\nWhen did Hawaii become a state?\t2001\t-7.063724986551965\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (2001, Instance Of, date) (Hawaii Photography Club, was established in, 2001) -> 2001 (11073ms)\nWhen did Hawaii become a state?\t1957\t-7.18295426170441\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (1957, Instance Of, date) (Hawaii, was established in, 1957.) -> 1957 (11073ms)\nWhen did Hawaii become a state?\t2010\t-7.290121527935911\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (2010, Instance Of, date) (The East Hawai?i Fund, was established in, 2010) -> 2010 (11073ms)\nWhen did Hawaii become a state?\t1961\t-7.411932104437973\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be hawaius ? -> $x: (hawaius, state, $x) -> (Hawaii, was a state in, 1961) -> 1961 (18336ms)\nWhen did Hawaii become a state?\tAugust 1959\t-7.8849304312290815\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a state in, August 1959) -> August 1959 (13978ms)\nWhen did Hawaii become a state?\tJune 1900\t-8.036759066286908\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a US territory in, June 1900) -> June 1900 (14042ms)\nWhen did Hawaii become a state?\tAugust 21 , 1959\t-8.546669640953473\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be hawaius ? -> $x: (hawaius, state, $x) -> (Hawaii, became a state on, August 21 , 1959) -> August 21 , 1959 (18437ms)\nWhen did Hawaii become a state?\tAug. 21 , 1959\t-8.603931941834329\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be hawaius ? -> $x: (hawaius, state, $x) -> (Hawaii, became a state on, Aug. 21 , 1959) -> Aug. 21 , 1959 (18566ms)\nWhen did Hawaii become a state?\t1916 D\t-8.901292924518023\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (1916 D, Instance Of, date) (Kamaka Hawaii, was established in, 1916) -> 1916 D (12271ms)\nWhen did Hawaii become a state?\tAugust 25 , 2010\t-9.157147495811838\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when be hawaius settle ? -> $x: (hawaius, be settle on, $x) -> (The Hawaii suit, was settled on, August 25 , 2010) -> August 25 , 2010 (17495ms)\nWhen did Hawaii become a state?\tAugust\t-9.279918241199637\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a state in, August) -> August (15266ms)\nWhen did Hawaii become a state?\tAugust of 1959\t-9.363010828191173\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a state in, August of 1959) -> August of 1959 (15266ms)\nWhen did Hawaii become a state?\t1941\t-9.54113162293297\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> $x: ($x, instance of, date) (hawaius, be establish, $x) -> (1941, Instance Of, date) (Hawaii Vocational School, was established in, 1941) -> 1941 (16005ms)\nWhen did Hawaii become a state?\tJuly 4\t-9.75389569368812\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (July 4, Instance Of, date) (The Republic of Hawaii, was established, July 4) -> July 4 (12368ms)\nWhen did Hawaii become a state?\t1979\t-9.773882542340456\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> $x: ($x, instance of, date) (hawaius, be establish, $x) -> (1979, Instance Of, date) (The Hawaii Jayceettes, were established in, 1979) -> 1979 (16132ms)\nWhen did Hawaii become a state?\t1898.\t-9.845030747326321\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, officially became a US territory in, 1898.) -> 1898. (16770ms)\nWhen did Hawaii become a state?\tAugust 21\t-9.876556593516419\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become on, $x) -> $x: (hawaius, become on, $x) -> (Hawaii, became a state on, August 21) -> August 21 (16770ms)\nWhen did Hawaii become a state?\tthe Union\t-10.021293173956021\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> (Hawai'i, did indeed become the 50th State in, the Union) -> the Union (12368ms)\nWhen did Hawaii become a state?\thips\t-10.035753686776495\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (hips, has become a legendary symbol of, Hawaii) -> hips (12368ms)\nWhen did Hawaii become a state?\tJapan 1894.7.4 Dole\t-10.156241555777315\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (Japan 1894.7.4 Dole, became president of, Hawaii) -> Japan 1894.7.4 Dole (16770ms)\nWhen did Hawaii become a state?\t16 years\t-10.20817290949549\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, recently became the first state in, 16 years) -> 16 years (16770ms)\nWhen did Hawaii become a state?\t2. Prince Kamehameha V\t-10.213350441615928\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (2. Prince Kamehameha V, became the King of, Hawaii) -> 2. Prince Kamehameha V (16890ms)\nWhen did Hawaii become a state?\tJohn\t-10.243140749355359\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (John, became a member of, the Hawaii Bar) -> John (16890ms)\nWhen did Hawaii become a state?\tJuly 4th\t-10.296572142448923\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (July 4th, Instance Of, date) (The Republic of Hawaii, was established, July 4) -> July 4th (16890ms)\nWhen did Hawaii become a state?\tthe Republic\t-10.383799136063912\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (the Republic, became the Territory of, Hawaii) -> the Republic (16890ms)\nWhen did Hawaii become a state?\tthe Pacific\t-10.546715114078136\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (the Pacific, could become part of, Hawaii) -> the Pacific (16983ms)\nWhen did Hawaii become a state?\tAugust 21st 1959\t-10.625955358598905\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become on, $x) -> $x: (hawaius, become on, $x) -> (Hawaii, became the 50th state on, August 21st 1959) -> August 21st 1959 (16983ms)\nWhen did Hawaii become a state?\trighteousness ?\t-10.651934666068296\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (righteousness ?, became the motto of, Hawaii) -> righteousness ? (16983ms)\nWhen did Hawaii become a state?\ta company\t-10.716312533687974\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (a company, became the State of, Hawaii) -> a company (17123ms)\nWhen did Hawaii become a state?\tChow\t-10.718357892678132\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (Chow, became the head coach of, the Hawaii Warriors) -> Chow (17123ms)\nWhen did Hawaii become a state?\ta Ph.D\t-10.768355000105828\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (a Ph.D, became a University of, Hawaii professor) -> a Ph.D (17123ms)\nWhen did Hawaii become a state?\tAug. 21 ,\t-10.827563501241835\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become on, $x) -> $x: (hawaius, become on, $x) -> (( Hawaii, became a state on, Aug. 21 ,) -> Aug. 21 , (17123ms)\nWhen did Hawaii become a state?\treal estate\t-10.83303191720934\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (real estate, has become a major portion of, Hawaii?s economy) -> real estate (17123ms)\nWhen did Hawaii become a state?\tthe United States\t-10.852717590027272\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (the United States, becomes a resident of, Hawaii) -> the United States (17123ms)\nWhen did Hawaii become a state?\tmarine debris\t-10.865059900158187\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Alaska and Hawaii, become entangled in, marine debris) -> marine debris (17495ms)\nWhen did Hawaii become a state?\tOahu\t-10.878770484242064\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when be hawaius ratify ? -> $x: (hawaius, be ratify in, $x) -> $x: ($x, be, hawaius) -> (Oahu, is a proxy for, HAWAII) -> Oahu (17495ms)\nWhen did Hawaii become a state?\ta small local drive-inn\t-10.941336197281462\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (a small local drive-inn, has become one of, Hawaii) -> a small local drive-inn (17495ms)\nWhen did Hawaii become a state?\tthe West\t-10.944702298430034\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, started to become popular in, the West) -> the West (17495ms)\nWhen did Hawaii become a state?\ta nice Jewish republican woman\t-10.946641368390337\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (a nice Jewish republican woman, become Governor of, Hawaii) -> a nice Jewish republican woman (17770ms)\nWhen did Hawaii become a state?\t5 hour\t-11.00113307175845\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what state be hawaius locate ? -> $x: ($x, instance of, state) (hawaius, locate, $x) -> (5 hour, Instance Of, state-selected, average-stream-flow travel time) (Hawaii, is located, 5 hours) -> 5 hour (17770ms)\nWhen did Hawaii become a state?\tLand\t-11.008250750303482\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (Land, become the Islands of, Hawai?i) -> Land (17769ms)\nWhen did Hawaii become a state?\tusa...\t-11.029100195849988\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what state be hawaius locate ? -> $x: (hawaius, locate state, $x) -> (HAWAII, is a state or province located in the geopolitical location, usa...) -> usa... (17769ms)\nWhen did Hawaii become a state?\tUs\t-11.029100195849988\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what state be hawaius locate ? -> $x: (hawaius, locate state, $x) -> (HAWAII, is a state or province located in the geopolitical location, Us) -> Us (17769ms)\nWhen did Hawaii become a state?\tHana\t-13.594969541979744\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Hana, Instance Of, state of mind) (hana, is a city located in the state or province, HAWAII) -> Hana (8235ms)\nWhen did Hawaii become a state?\tsugar\t-14.378224614440597\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (sugar, Instance Of, state industry) (Sugar, is an agricultural product growing in, HAWAII) -> sugar (8235ms)\nWhen did Hawaii become a state?\tcoffee\t-14.411250398430981\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (coffee, Instance Of, state industry) (Coffee, is an agricultural product growing in, HAWAII) -> coffee (8235ms)\nWhen did Hawaii become a state?\tSchofield Barracks\t-15.002202048804207\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Schofield Barracks, Instance Of, United States Army installation) (Schofield Barracks, is a city located in the state or province, HAWAII) -> Schofield Barracks (9523ms)\nWhen did Hawaii become a state?\tHaleiwa\t-15.104781528222693\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Haleiwa, Instance Of, state marina) (haleiwa, is a city located in the state or province, HAWAII) -> Haleiwa (9549ms)\nWhen did Hawaii become a state?\thotel\t-15.278160565544436\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what year hawaius become a state ? -> $x: ($x, instance of, year hawaius) ($x, become, a state) -> $x: ($x, instance of, year hawaius) ($x, become, state) -> (hotel, Instance Of, year hawaii's travel industry) (a hotel, has become, ?state) -> hotel (9549ms)\nWhen did Hawaii become a state?\tCoffee\t-15.283749280098094\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Coffee, Instance Of, constant state) (Coffee, is an agricultural product growing in, HAWAII) -> Coffee (9549ms)\nWhen did Hawaii become a state?\tSkye\t-15.51255030437358\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Skye, Instance Of, state of mind) (Skye, is in, Hawaii) -> Skye (9549ms)\nWhen did Hawaii become a state?\tMaui\t-15.54753327044663\tWhen did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Maui, Instance Of, U.S. state) (Maui, is in, Hawaii) -> Maui (9549ms)\nWhy is the sun yellow?\tCanonical\t-10.575314772880931\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (Canonical, is removing, the Sun JDK) -> Canonical (11674ms)\nWhy is the sun yellow?\tGod\t-10.786534737574172\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what make the sun yellow ? -> $x: ($x, make, the sun yellow) -> (God, made, the big bright , yellow sun) -> God (10455ms)\nWhy is the sun yellow?\thelium\t-10.82619421934224\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (helium, is the source of, the Sun) -> helium (12491ms)\nWhy is the sun yellow?\tthe Moon\t-10.851249081906376\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the Moon, is removed from, the Sun) -> the Moon (11674ms)\nWhy is the sun yellow?\tman\t-11.28692343765034\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (The sun and moon, were to function for, man) -> man (12634ms)\nWhy is the sun yellow?\ta very high frequency\t-11.316101957802593\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the Sun, are functioning at, a very high frequency) -> a very high frequency (12634ms)\nWhy is the sun yellow?\tHydrogen\t-11.31875682753605\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Hydrogen, has been the power source of, the sun) -> Hydrogen (12493ms)\nWhy is the sun yellow?\tMuseum\t-11.407622692174176\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (Dr Sun Yat-sen Museum, Building Function, Museum) -> Museum (12766ms)\nWhy is the sun yellow?\tNuclear fusion\t-11.454152428395277\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Nuclear fusion, is the primary energy source of, the Sun) -> Nuclear fusion (12491ms)\nWhy is the sun yellow?\ta wheel or spring\t-11.491903794067323\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the sun, functions as, a wheel or spring) -> a wheel or spring (12634ms)\nWhy is the sun yellow?\tFusion\t-11.517026294434812\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Fusion, is the source of, the sun) -> Fusion (12491ms)\nWhy is the sun yellow?\tday\t-11.605185197897631\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the sun, functions only by, day) -> day (12634ms)\nWhy is the sun yellow?\textracts\t-11.623303183312789\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun, is running, extracts) -> extracts (17956ms)\nWhy is the sun yellow?\ta CLIENT\t-11.64722320340999\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (The Sun RPC, has another function to create, a CLIENT) -> a CLIENT (12635ms)\nWhy is the sun yellow?\tan administrative and political centre\t-11.685642729214946\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the Sun, functioned as, an administrative and political centre) -> an administrative and political centre (12634ms)\nWhy is the sun yellow?\tTwo questions\t-11.69570401832935\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Two questions, is the source of, the sun) -> Two questions (12491ms)\nWhy is the sun yellow?\tG-d\t-11.71523612932584\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (G-d, will remove, the sun) -> G-d (11674ms)\nWhy is the sun yellow?\tvery hot conditions\t-11.743637778067237\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (very hot conditions, should be removed from, the sun) -> very hot conditions (11674ms)\nWhy is the sun yellow?\tservice\t-11.757163140045467\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (The sun, performs his specific function of, service) -> service (12766ms)\nWhy is the sun yellow?\tSun Visor Removal\t-11.785911341805452\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (Sun Visor Removal, Remove, the sun visor) -> Sun Visor Removal (11674ms)\nWhy is the sun yellow?\tenormous amounts\t-11.813496410207502\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (enormous amounts, is the source of, the Suns power) -> enormous amounts (12517ms)\nWhy is the sun yellow?\tnorth\t-11.851154364352212\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (north, remove, the actual sun illumination) -> north (11674ms)\nWhy is the sun yellow?\tUSA\t-11.879175607561463\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (USA, had been a football-playing member of, the Sun Belt) -> USA (11449ms)\nWhy is the sun yellow?\ta confirmation\t-11.912755739390075\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (a confirmation, removed, the sun glasses) -> a confirmation (12024ms)\nWhy is the sun yellow?\ttwo signs\t-11.927888968390475\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (two signs, removed from, the sun) -> two signs (12024ms)\nWhy is the sun yellow?\tfusion\t-11.937914950617566\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (fusion, is the energy source of, the sun and stars) -> fusion (12518ms)\nWhy is the sun yellow?\tdisease\t-11.983008720195249\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the Sun, are responsible for, disease) -> disease (17956ms)\nWhy is the sun yellow?\tthe Earth\t-12.01084628672844\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, the Earth) -> the Earth (17956ms)\nWhy is the sun yellow?\ta long time\t-12.013871837674603\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (a long time, just remove from, the sun) -> a long time (12024ms)\nWhy is the sun yellow?\tRedHat\t-12.024440844395354\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Suns, have been running, RedHat) -> RedHat (17955ms)\nWhy is the sun yellow?\tno greater delight\t-12.064573198553328\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (no greater delight, indiscriminatly remove, the moon and sun) -> no greater delight (12024ms)\nWhy is the sun yellow?\tFusion energy\t-12.06573136075471\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Fusion energy, is the energy source of, the sun and stars) -> Fusion energy (12517ms)\nWhy is the sun yellow?\tthe Skopjeans\t-12.07649080599119\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the Skopjeans, finally decided to remove, the Sun) -> the Skopjeans (12024ms)\nWhy is the sun yellow?\t?Showtime?\t-12.078502116368757\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Suns, are running like, ?Showtime?) -> ?Showtime? (17956ms)\nWhy is the sun yellow?\tclimate change\t-12.08263042247899\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is mainly responsible for, climate change) -> climate change (17956ms)\nWhy is the sun yellow?\t?We?ll\t-12.092604929414236\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (?We?ll, have to remove, the sun) -> ?We?ll (12024ms)\nWhy is the sun yellow?\t4194326 uninstall\t-12.097910153225405\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (4194326 uninstall, removes, the Sun WebServer) -> 4194326 uninstall (12050ms)\nWhy is the sun yellow?\tEarl\t-12.116890566622759\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Earl, has been playing pretty well for, the Suns) -> Earl (11448ms)\nWhy is the sun yellow?\tice ages\t-12.125136464881832\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the Sun, has been responsible for, ice ages) -> ice ages (17955ms)\nWhy is the sun yellow?\tefforts\t-12.13497606841879\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Baltimore Sun, is running a series about, efforts) -> efforts (18006ms)\nWhy is the sun yellow?\tSaturn\t-12.135195703233249\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Sun, are particularly interested in, Saturn) -> Saturn (16854ms)\nWhy is the sun yellow?\tsolar activity\t-12.145645714386484\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, solar activity) -> solar activity (18006ms)\nWhy is the sun yellow?\tgas\t-12.182907181227579\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Suns, are running out of, gas) -> gas (18006ms)\nWhy is the sun yellow?\tBaltimore\t-12.193453008020366\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Baltimore Sun, was run out of, Baltimore) -> Baltimore (18005ms)\nWhy is the sun yellow?\ta rough calendar\t-12.195472439770548\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the SunClock, also functions as, a rough calendar) -> a rough calendar (12766ms)\nWhy is the sun yellow?\tsunscreen\t-12.196152204314393\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, sunscreen) -> sunscreen (13556ms)\nWhy is the sun yellow?\tgrammar\t-12.200526604633728\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (The Sun, is very interested in, grammar) -> grammar (16854ms)\nWhy is the sun yellow?\tfuel\t-12.20166948403013\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, is gradually running out of, fuel) -> fuel (18006ms)\nWhy is the sun yellow?\tMODERATION\t-12.210317328577636\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be healthy, $x) -> (the sun, can be healthy in, MODERATION) -> MODERATION (16854ms)\nWhy is the sun yellow?\tThe Oakley terroir\t-12.22635736552401\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what characterize the sun ? -> $x: ($x, characterize, the sun) -> (The Oakley terroir, is characterized by, the hot sun) -> The Oakley terroir (12212ms)\nWhy is the sun yellow?\tgardening\t-12.235661187980869\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be benefit, $x) -> (the sun, is an indirect benefit of, gardening) -> gardening (17465ms)\nWhy is the sun yellow?\tplayers\t-12.246643679707391\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be healing, $x) -> (The Suns, are healing, players) -> players (17465ms)\nWhy is the sun yellow?\tclimate changes\t-12.250627999481434\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, has been responsible for, climate changes) -> climate changes (18005ms)\nWhy is the sun yellow?\tacrylic paint\t-12.25338328328648\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, are colored with, acrylic paint) -> acrylic paint (14245ms)\nWhy is the sun yellow?\tutility\t-12.273344160079873\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (utility, has played for, the Suns) -> utility (11448ms)\nWhy is the sun yellow?\tsport\t-12.279284763802183\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (The Sun, was always interested in, sport) -> sport (16854ms)\nWhy is the sun yellow?\tglobal warming\t-12.283407886067623\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is also responsible for, global warming) -> global warming (18006ms)\nWhy is the sun yellow?\tPerihelion\t-12.286937755528013\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (the sun, is the opposite to, Perihelion) -> Perihelion (16283ms)\nWhy is the sun yellow?\tphotons\t-12.288108749478925\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, photons) -> photons (13556ms)\nWhy is the sun yellow?\tSkin moisture\t-12.293213756049923\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (Skin moisture, unfortunately get removed by, the sun) -> Skin moisture (12050ms)\nWhy is the sun yellow?\tA reader\t-12.296710974365645\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what characterize the sun ? -> $x: ($x, characterize, the sun) -> (A reader, characterizes, The Sun) -> A reader (12212ms)\nWhy is the sun yellow?\tPeace\t-12.298414297018416\tWhy is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Peace, is like, the fresh yellow sun) -> Peace (19326ms)\nWhy is the sun yellow?\tbetter lighting\t-12.301410743357483\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what make the sun blue ? -> $x: ($x, make, the sun blue) -> (better lighting, made the most of, the sun and blue sky) -> better lighting (11448ms)\nWhy is the sun yellow?\tchoice\t-12.312131829484956\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the sun dress, can be a single garment of, choice) -> choice (17342ms)\nWhy is the sun yellow?\tenergy\t-12.320479621107078\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (The sun, is the single greatest source of, energy) -> energy (17342ms)\nWhy is the sun yellow?\tAllah\t-12.335362439546412\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, are signs of, Allah) -> Allah (16283ms)\nWhy is the sun yellow?\tgold\t-12.345154236901493\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, gold) -> gold (13556ms)\nWhy is the sun yellow?\tUK\t-12.358564678802141\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (The Morning Sun, is the new single from, UK) -> UK (17342ms)\nWhy is the sun yellow?\tBlue light\t-12.35956364754124\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (Blue light, is therefore removed from, the Sun?s beam) -> Blue light (12050ms)\nWhy is the sun yellow?\tgod\t-12.388349740614785\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, were signs of, god) -> god (16283ms)\nWhy is the sun yellow?\tvandalism\t-12.39828902574718\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun, is running a piece on, vandalism) -> vandalism (18005ms)\nWhy is the sun yellow?\tingredients\t-12.403938643686836\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, ingredients) -> ingredients (13556ms)\nWhy is the sun yellow?\tdefense Fish\t-12.408418335027859\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (defense Fish, has been playing is keeping, the Suns) -> defense Fish (11448ms)\nWhy is the sun yellow?\tGold\t-12.42763974016666\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: ($x, be the color  of, the sun) -> (Gold, is the color of, the sun) -> Gold (19143ms)\nWhy is the sun yellow?\tDennis Erickson\t-12.43587184889833\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Dennis Erickson, have played for, the Sun Devils) -> Dennis Erickson (11448ms)\nWhy is the sun yellow?\tBingo\t-12.45204185814688\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Bingo, has been played in, The Sun) -> Bingo (12050ms)\nWhy is the sun yellow?\tRe\t-12.471399080403165\tWhy is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Re, is, the sun yellow) -> Re (19326ms)\nWhy is the sun yellow?\t450Mhz\t-12.482561592069775\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, was running at, 450Mhz) -> 450Mhz (18079ms)\nWhy is the sun yellow?\tShawn Marion\t-12.499552560497975\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be better off, $x) -> (the Suns, could be better off with, Shawn Marion) -> Shawn Marion (16699ms)\nWhy is the sun yellow?\tSuperman\t-12.509245600089447\tWhy is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Superman, is powered by, the yellow sun) -> Superman (19326ms)\nWhy is the sun yellow?\tproduction\t-12.516161096929805\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, production) -> production (18079ms)\nWhy is the sun yellow?\thome appliances\t-12.524640242604077\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The sun, can be used to run, home appliances) -> home appliances (18079ms)\nWhy is the sun yellow?\tGordon Brown\t-12.541638802728137\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun, is running a despicable campaign against, Gordon Brown) -> Gordon Brown (18079ms)\nWhy is the sun yellow?\tchanges\t-12.559556562280832\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are chiefly responsible for, changes) -> changes (18079ms)\nWhy is the sun yellow?\twrinkles\t-12.562958987785912\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, wrinkles) -> wrinkles (18079ms)\nWhy is the sun yellow?\tOklahoma\t-12.57082235197819\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Oklahoma, has played three times in, the Sun Bowl) -> Oklahoma (12050ms)\nWhy is the sun yellow?\tJohnny Cash\t-12.577691679852405\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (Johnny Cash, happened to be at, the Sun Records recording studio) -> Johnny Cash (13067ms)\nWhy is the sun yellow?\tLondon\t-12.578084363592708\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun Protection Conference, is run biennially in, London) -> London (18079ms)\nWhy is the sun yellow?\tFos\t-12.609726149942968\tWhy is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: (the sun yellow, be, $x) -> (the yellow sun, is, Fos) -> Fos (19326ms)\nWhy is the sun yellow?\tSunday\t-12.61339644555189\tWhy is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Sunday, is ruled by, the Sun and yellow candles) -> Sunday (19326ms)\nWhy is the sun yellow?\ttwo\t-12.6151912387077\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The Suns, are responsible for, two) -> two (19143ms)\nWhy is the sun yellow?\tlife\t-12.616175213328479\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, was responsible for, life) -> life (19143ms)\nWhy is the sun yellow?\tsolar energy\t-12.619217796223998\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be relatively new, $x) -> (the sun, is a relatively new use of, solar energy) -> solar energy (17083ms)\nWhy is the sun yellow?\tthe Wanted\t-12.62105820180131\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the Sun, is the lead single from, the Wanted) -> the Wanted (17342ms)\nWhy is the sun yellow?\tbad contracts\t-12.63206079581206\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be plague, $x) -> (the Suns, are plagued by, bad contracts) -> bad contracts (16466ms)\nWhy is the sun yellow?\tColbie\t-12.635533025991487\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the Sun, is the second single from, Colbie) -> Colbie (17342ms)\nWhy is the sun yellow?\tLindsay Lohan\t-12.64240035026294\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be a mess, $x) -> (the Sun, was a \"hot mess like, Lindsay Lohan) -> Lindsay Lohan (16943ms)\nWhy is the sun yellow?\tSodam Yat\t-12.649535167299492\tWhy is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Sodam Yat, is power by, the yellow sun) -> Sodam Yat (19326ms)\nWhy is the sun yellow?\troom\t-12.65167159121908\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun kernel, was just plain running out of, room) -> room (19143ms)\nWhy is the sun yellow?\t50 %\t-12.653710308188975\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, was responsible for, 50 %) -> 50 % (19143ms)\nWhy is the sun yellow?\tSunOS 3.2\t-12.658516952086677\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Suns, were running, SunOS 3.2) -> SunOS 3.2 (19143ms)\nWhy is the sun yellow?\tclimate\t-12.667233705125554\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, is responsible for, climate) -> climate (19143ms)\nWhy is the sun yellow?\trecent warming\t-12.669132530851517\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, recent warming) -> recent warming (19143ms)\nWhy is the sun yellow?\tVitamin D\t-12.671123902852383\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (The sun, is the single greatest natural source of, Vitamin D) -> Vitamin D (17342ms)\nWhy is the sun yellow?\tbingo games\t-12.675972833149796\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun Bingo, will be running online, bingo games) -> bingo games (19326ms)\nWhy is the sun yellow?\tblue light\t-12.682067470010688\tWhy is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (blue light, is, the Sun yellow) -> blue light (19326ms)\nWhy is the sun yellow?\tzone\t-12.697193570287588\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun Devils, were only running inside, zone) -> zone (19388ms)\nWhy is the sun yellow?\tThe Secret\t-12.700973195666556\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be try to figure out, $x) -> (the Midnight Sun, are trying to figure out, The Secret) -> The Secret (16854ms)\nWhy is the sun yellow?\tinjuries\t-12.717763415339368\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be plague, $x) -> (the Suns, would be plagued by, injuries) -> injuries (16466ms)\nWhy is the sun yellow?\tspot\t-12.722053724420288\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be in there, $x) -> (the sun, would be in there, spot) -> spot (17342ms)\nWhy is the sun yellow?\tthe Brethren\t-12.723063402603447\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, the Brethren) -> the Brethren (19388ms)\nWhy is the sun yellow?\trecent changes\t-12.726307522312585\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, cannot be responsible for, recent changes) -> recent changes (19388ms)\nWhy is the sun yellow?\ta Phoenix Suns player\t-12.730440339073454\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (a Phoenix Suns player, has been playing for, the Suns) -> a Phoenix Suns player (12075ms)\nWhy is the sun yellow?\ttopography\t-12.743626288607572\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (percent possible sun, be a function of, topography) -> topography (12766ms)\nWhy is the sun yellow?\ttoday?s climate\t-12.747006503618875\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, was responsible for, today?s climate) -> today?s climate (19388ms)\nWhy is the sun yellow?\tscientists\t-12.759588187461045\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (scientists, 's happening at, the Sun) -> scientists (13067ms)\nWhy is the sun yellow?\t10 percent\t-12.766394299827219\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, 10 percent) -> 10 percent (19482ms)\nWhy is the sun yellow?\tsuch symptoms\t-12.766394299827219\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, such symptoms) -> such symptoms (19387ms)\nWhy is the sun yellow?\t90 percent\t-12.766394299827219\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, 90 percent) -> 90 percent (19387ms)\nWhy is the sun yellow?\tan AP story\t-12.775887161328788\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Lowell Sun, is running, an AP story) -> an AP story (19482ms)\nWhy is the sun yellow?\tfull swing and life\t-12.78176664381753\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (full swing and life, has been spent playing in, the sun) -> full swing and life (12075ms)\nWhy is the sun yellow?\tpieces\t-12.79347676351153\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Baltimore Sun, has been running, pieces) -> pieces (19482ms)\nWhy is the sun yellow?\tskin cancer\t-12.795637388106726\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, skin cancer) -> skin cancer (19482ms)\nWhy is the sun yellow?\ta bunch\t-12.799993804687247\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun, is run by, a bunch) -> a bunch (19482ms)\nWhy is the sun yellow?\tdifferent skin reactions\t-12.804181495079943\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, different skin reactions) -> different skin reactions (19482ms)\nWhy is the sun yellow?\ttwo astronomers\t-12.806383974245398\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (two astronomers, happened to be looking at, the sun) -> two astronomers (13067ms)\nWhy is the sun yellow?\tany significant amount\t-12.808448839389408\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, cannot be responsible for, any significant amount) -> any significant amount (19482ms)\nWhy is the sun yellow?\tsurface features\t-12.810668715032252\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, surface features) -> surface features (19482ms)\nWhy is the sun yellow?\tQB Dwight Dasher\t-12.812171487106408\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (QB Dwight Dasher, may have been playing in, the lowly Sun Belt) -> QB Dwight Dasher (12075ms)\nWhy is the sun yellow?\tdepression\t-12.814205513338933\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be healthy, $x) -> (The sun, is extremely healthy for, depression) -> depression (16854ms)\nWhy is the sun yellow?\tfull force\t-12.818062583365794\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be in there, $x) -> (The sun, will definitely be out there in, full force) -> full force (17465ms)\nWhy is the sun yellow?\teach other\t-12.827163676173639\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (the Sun, are opposite, each other) -> each other (16361ms)\nWhy is the sun yellow?\tfuture affairs\t-12.833657877674533\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Sun, are interested in, future affairs) -> future affairs (16854ms)\nWhy is the sun yellow?\tfree agent\t-12.83754789645176\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The Connecticut Sun, signed, free agent) -> free agent (16361ms)\nWhy is the sun yellow?\tmuch more\t-12.838963048783407\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the Sun, was responsible for, much more) -> much more (19538ms)\nWhy is the sun yellow?\tfour men\t-12.839484804614909\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun, was running stories about, four men) -> four men (19538ms)\nWhy is the sun yellow?\tWeezer\t-12.839653387512001\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the Sun?, is a 2001 single by, Weezer) -> Weezer (17465ms)\nWhy is the sun yellow?\ta story\t-12.841551092561737\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun, are running with, a story) -> a story (19538ms)\nWhy is the sun yellow?\tfreckles\t-12.844897276667673\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for causing, freckles) -> freckles (19538ms)\nWhy is the sun yellow?\tdrought\t-12.845928733049226\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, aggravates the problems of, drought) -> drought (14245ms)\nWhy is the sun yellow?\tfour/3 odds\t-12.850918790388922\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Phoenix Suns, is running at, four/3 odds) -> four/3 odds (19538ms)\nWhy is the sun yellow?\ta significant part\t-12.851282565457996\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, could be responsible for, a significant part) -> a significant part (19538ms)\nWhy is the sun yellow?\tMercury\t-12.85884283230214\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (The Sun, is very interested in, Mercury) -> Mercury (16854ms)\nWhy is the sun yellow?\tlight\t-12.860127678320513\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the Sun, contains all colors of, light) -> light (14245ms)\nWhy is the sun yellow?\ta TV campaign\t-12.876293476818168\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun, has been running, a TV campaign) -> a TV campaign (19538ms)\nWhy is the sun yellow?\t10 %\t-12.877867777454606\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The Sun, is responsible for, 10 %) -> 10 % (19738ms)\nWhy is the sun yellow?\tsuch wonders\t-12.884876753238418\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, was responsible for, such wonders) -> such wonders (19738ms)\nWhy is the sun yellow?\tMidlands football\t-12.8901872414269\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (recently The Sun, were so interested in, Midlands football) -> Midlands football (16943ms)\nWhy is the sun yellow?\tsame management ,journalists\t-12.894369667442282\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, are run by, same management ,journalists) -> same management ,journalists (19738ms)\nWhy is the sun yellow?\tThe Earth\t-12.896253729218841\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: ($x, be the opposite of, the sun) -> (The Earth, is always the exact opposite of, the Sun sign) -> The Earth (19738ms)\nWhy is the sun yellow?\tpremature aging\t-12.899580501902788\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, is responsible for, premature aging) -> premature aging (19738ms)\nWhy is the sun yellow?\treception\t-12.900013185463234\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Sun, are very interested each other by, reception) -> reception (16943ms)\nWhy is the sun yellow?\tSummersgill\t-12.900856887394593\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, was run over by, Summersgill) -> Summersgill (19738ms)\nWhy is the sun yellow?\twallflowers\t-12.90201264986075\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The spring-like sun, makes the colors of, wallflowers) -> wallflowers (14245ms)\nWhy is the sun yellow?\tepoxy\t-12.9022362746837\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, could also change the color of, epoxy) -> epoxy (14245ms)\nWhy is the sun yellow?\thistory\t-12.904095823258935\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Sun, is another interesting look at, history) -> history (16943ms)\nWhy is the sun yellow?\tPhoenix\t-12.908516807966713\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be viable, $x) -> (the sun, was a viable option since, Phoenix) -> Phoenix (16466ms)\nWhy is the sun yellow?\tmillions\t-12.909698909512443\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be stable, $x) -> (The sun, has been stable for, millions) -> millions (17083ms)\nWhy is the sun yellow?\tA typical scenario\t-12.910807918149516\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (A typical scenario, removed from, the sun) -> A typical scenario (12074ms)\nWhy is the sun yellow?\ta 7-man rotation\t-12.91293779267449\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Suns, are effectively running, a 7-man rotation) -> a 7-man rotation (19738ms)\nWhy is the sun yellow?\tplants and flowers\t-12.916656827741908\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be rough, $x) -> (the blazing sun, can be rough on, plants and flowers) -> plants and flowers (16943ms)\nWhy is the sun yellow?\ta vague brightness\t-12.9171405688567\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be conscious, $x) -> (the sun, is half conscious of, a vague brightness) -> a vague brightness (16361ms)\nWhy is the sun yellow?\tEarth\t-12.918072018889836\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (the Sun and Uranus, are opposite as seen from, Earth) -> Earth (16361ms)\nWhy is the sun yellow?\tnon-melanoma skin cancers\t-12.918178448358404\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, non-melanoma skin cancers) -> non-melanoma skin cancers (19812ms)\nWhy is the sun yellow?\tnoon\t-12.923051905882643\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, changed signs at about, noon) -> noon (16361ms)\nWhy is the sun yellow?\tcholesterol\t-12.925758247865355\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the sun, reacts with, cholesterol) -> cholesterol (16361ms)\nWhy is the sun yellow?\tsuch a deal\t-12.930621784207897\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Suns, are interested in, such a deal) -> such a deal (16943ms)\nWhy is the sun yellow?\ta corner\t-12.931474322409148\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, was coloring, a corner) -> a corner (14245ms)\nWhy is the sun yellow?\ttelescopic observers\t-12.93262876840478\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the sun, were a keen interest among, telescopic observers) -> telescopic observers (16943ms)\nWhy is the sun yellow?\trecent global climate changes\t-12.93627384211652\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, recent global climate changes) -> recent global climate changes (19812ms)\nWhy is the sun yellow?\tmore carp movement\t-12.93641894262716\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, more carp movement) -> more carp movement (19812ms)\nWhy is the sun yellow?\tweather\t-12.937928622434047\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The Sun, is ultimately responsible for, weather) -> weather (19812ms)\nWhy is the sun yellow?\t99.86\t-12.941904256922173\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, 99.86) -> 99.86 (13556ms)\nWhy is the sun yellow?\tthe Earths\t-12.944718624890566\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the Sun, react with, the Earths) -> the Earths (16361ms)\nWhy is the sun yellow?\tpressure\t-12.945602811291662\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the Sun, react to, pressure) -> pressure (16466ms)\nWhy is the sun yellow?\tearly 20th century\t-12.945653111133423\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, was responsible for, early 20th century) -> early 20th century (19812ms)\nWhy is the sun yellow?\tseveral trips\t-12.949125341312849\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the SUN DANCER, has been running, several trips) -> several trips (19812ms)\nWhy is the sun yellow?\tSPARC processors\t-12.950566083151589\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun systems, are run on, SPARC processors) -> SPARC processors (19812ms)\nWhy is the sun yellow?\ttubing\t-12.953463406370568\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, tubing) -> tubing (13557ms)\nWhy is the sun yellow?\temotions\t-12.956172330280426\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, change different color for there, emotions) -> emotions (14245ms)\nWhy is the sun yellow?\tmedia veterans\t-12.957967310728405\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun newspaper, is being run by, media veterans) -> media veterans (19812ms)\nWhy is the sun yellow?\ta great many\t-12.965989661870118\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, is responsible for, a great many) -> a great many (19858ms)\nWhy is the sun yellow?\ta copper kettle\t-12.966614142303378\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, is the color of, a copper kettle) -> a copper kettle (14245ms)\nWhy is the sun yellow?\tmore like 99.9 %\t-12.967996646067002\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, more like 99.9 %) -> more like 99.9 % (19858ms)\nWhy is the sun yellow?\tthe Archaeological Survey\t-12.969243683523976\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun Temple Museum, is run by, the Archaeological Survey) -> the Archaeological Survey (19858ms)\nWhy is the sun yellow?\tThe Eagles\t-12.970460895673725\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (The Eagles, have yet to play, the Rising Sun Shiners) -> The Eagles (12075ms)\nWhy is the sun yellow?\tPartyPoker\t-12.972179072082385\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, are running every day on, PartyPoker) -> PartyPoker (19858ms)\nWhy is the sun yellow?\tSteve Nash\t-12.977107097828277\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The Suns, signed, Steve Nash) -> Steve Nash (16466ms)\nWhy is the sun yellow?\tleadership\t-12.978166180596443\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the Sun, creates problems with, leadership) -> leadership (14277ms)\nWhy is the sun yellow?\tfamiliar elements\t-12.978342458377616\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, familiar elements) -> familiar elements (13625ms)\nWhy is the sun yellow?\tpleasure\t-12.98065796361069\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the sun, might react with, pleasure) -> pleasure (16466ms)\nWhy is the sun yellow?\ttwo windows\t-12.993438406132695\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, two windows) -> two windows (13625ms)\nWhy is the sun yellow?\twill , honesty and focus\t-12.993816664361782\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what characterize the sun ? -> $x: ($x, characterize, the sun) -> (will , honesty and focus, characterize, the Sun?s time) -> will , honesty and focus (12212ms)\nWhy is the sun yellow?\tmagnetic storms\t-13.004894390541319\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, also were responsible for, magnetic storms) -> magnetic storms (19858ms)\nWhy is the sun yellow?\ta business\t-13.007785561139299\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun Spa, is permitted to run, a business) -> a business (19858ms)\nWhy is the sun yellow?\tHakim Warrick\t-13.012454300290159\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The Suns, have agreed to sign, Hakim Warrick) -> Hakim Warrick (16699ms)\nWhy is the sun yellow?\tMiddle Earth\t-13.016631094488098\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, has its usual color in, Middle Earth) -> Middle Earth (14277ms)\nWhy is the sun yellow?\tRed\t-13.017175753292612\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: ($x, be the color  of, the sun) -> (Red, is the color of, the Sun) -> Red (19858ms)\nWhy is the sun yellow?\tfront\t-13.017309782535637\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be in there, $x) -> (the sun, has been right there in, front) -> front (17465ms)\nWhy is the sun yellow?\tgod yellow star\t-13.019280142460438\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be honest, $x) -> (The sun, is an honest to, god yellow star) -> god yellow star (17083ms)\nWhy is the sun yellow?\tVarious members\t-13.030586460700492\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Various members, have also played with, The Suns) -> Various members (12099ms)\nWhy is the sun yellow?\tthe Netbeans IDE\t-13.034500329876701\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the SUN demos, were running on, the Netbeans IDE) -> the Netbeans IDE (19903ms)\nWhy is the sun yellow?\tsolar flare\t-13.038644292095414\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, can produce problems with, solar flare) -> solar flare (14277ms)\nWhy is the sun yellow?\tthe Bridge deck\t-13.044219556847064\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (The Sun deck, is opposite, the Bridge deck) -> the Bridge deck (16699ms)\nWhy is the sun yellow?\tDoomsaying pundits\t-13.046074607546277\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Doomsaying pundits, have played, the Sun Belt dirge) -> Doomsaying pundits (12099ms)\nWhy is the sun yellow?\tnarration\t-13.046302675172337\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the Sun Alan Moody, faced an interesting problem in, narration) -> narration (14277ms)\nWhy is the sun yellow?\tgeological reckoning\t-13.048657470306736\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, will be a short run by, geological reckoning) -> geological reckoning (19904ms)\nWhy is the sun yellow?\tfour stories\t-13.049142887233907\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, four stories) -> four stories (13625ms)\nWhy is the sun yellow?\tthe United States\t-13.051921794137645\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the United States, to build a tower to remove, the sun) -> the United States (12099ms)\nWhy is the sun yellow?\tScorpio\t-13.053528923821052\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The sun, enters the sign of, Scorpio) -> Scorpio (16699ms)\nWhy is the sun yellow?\tthe Phoenix metropolitan area\t-13.05649537592726\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, the Phoenix metropolitan area) -> the Phoenix metropolitan area (13625ms)\nWhy is the sun yellow?\tCapricorn\t-13.0568009251665\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, enters the sign of, Capricorn) -> Capricorn (16698ms)\nWhy is the sun yellow?\tshort periods\t-13.056997505208594\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be healing, $x) -> (The sun, is very healing for, short periods) -> short periods (19903ms)\nWhy is the sun yellow?\ttown\t-13.058341341998496\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be in the game, $x) -> (the Suns, were the only game in, town) -> town (16943ms)\nWhy is the sun yellow?\tthe Principalities\t-13.059567144761827\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contained, the Principalities) -> the Principalities (13625ms)\nWhy is the sun yellow?\t6.02 times\t-13.061521654956145\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, 6.02 times) -> 6.02 times (13625ms)\nWhy is the sun yellow?\ta hypocrite\t-13.064876479006617\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the Sun, is the sign of, a hypocrite) -> a hypocrite (16698ms)\nWhy is the sun yellow?\ta lav tank\t-13.066635966468656\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (a lav tank, to remove everything under, the sun) -> a lav tank (12099ms)\nWhy is the sun yellow?\tthe magnitude and direction\t-13.070461748512868\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the Sun, is a function of, the magnitude and direction) -> the magnitude and direction (12802ms)\nWhy is the sun yellow?\twarm but temporary periods\t-13.070563586151579\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, warm but temporary periods) -> warm but temporary periods (19903ms)\nWhy is the sun yellow?\tmillions of?years\t-13.071144645733025\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be stable, $x) -> (The sun, has been stable for, millions of?years) -> millions of?years (17083ms)\nWhy is the sun yellow?\tgood days\t-13.073653880294916\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the Sun, are signs of, good days) -> good days (17012ms)\nWhy is the sun yellow?\tskin cancer worldwide\t-13.074299192152306\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the sun, is the single biggest cause of, skin cancer worldwide) -> skin cancer worldwide (19903ms)\nWhy is the sun yellow?\tOOXML.\t-13.079117729148654\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the Sun OpenOffice .org team, has some problems with, OOXML.) -> OOXML. (14277ms)\nWhy is the sun yellow?\tone coach\t-13.079405555567135\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (The Sun Devils, were reportedly interested in, one coach) -> one coach (17012ms)\nWhy is the sun yellow?\ta supernova 20,000 light years\t-13.079411213555229\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (a supernova 20,000 light years, removed from, the sun) -> a supernova 20,000 light years (12099ms)\nWhy is the sun yellow?\tJapanese prints\t-13.088122361308308\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Rising Sun, was very interested in, Japanese prints) -> Japanese prints (17012ms)\nWhy is the sun yellow?\tG Steve Nash\t-13.091545764596976\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Suns, are run by, G Steve Nash) -> G Steve Nash (19903ms)\nWhy is the sun yellow?\tgases\t-13.091858315811091\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the sun, react with, gases) -> gases (17012ms)\nWhy is the sun yellow?\ta warning\t-13.095056591688918\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, a warning) -> a warning (13720ms)\nWhy is the sun yellow?\tBulgarian yoghurt\t-13.099051905565295\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the rising sun, has been interested in, Bulgarian yoghurt) -> Bulgarian yoghurt (17012ms)\nWhy is the sun yellow?\tCancer\t-13.099762378731317\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the Sun, leaves the sign of, Cancer) -> Cancer (17012ms)\nWhy is the sun yellow?\tblotchy pigmentation\t-13.10215615951702\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, is largely responsible for, blotchy pigmentation) -> blotchy pigmentation (19904ms)\nWhy is the sun yellow?\t99.86 percent\t-13.110636664629533\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.86 percent) -> 99.86 percent (13720ms)\nWhy is the sun yellow?\ta fact\t-13.114325261531246\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun Herald, contains, a fact) -> a fact (13720ms)\nWhy is the sun yellow?\tThe Lobos\t-13.119890294741666\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (The Lobos, have already played, the Sun Devils three times) -> The Lobos (12099ms)\nWhy is the sun yellow?\tskin cells\t-13.131920356310374\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the sun, react with, skin cells) -> skin cells (17012ms)\nWhy is the sun yellow?\tMeursault\t-13.133128285491148\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The sun, first presents a problem to, Meursault) -> Meursault (14277ms)\nWhy is the sun yellow?\tGrant Hill\t-13.133555577990222\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The Phoenix Suns today, signed, Grant Hill) -> Grant Hill (17083ms)\nWhy is the sun yellow?\tinfinite knowledge\t-13.133961267657822\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, infinite knowledge) -> infinite knowledge (13720ms)\nWhy is the sun yellow?\ta geocentric chart\t-13.136896798771957\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (the sun, are opposite in, a geocentric chart) -> a geocentric chart (17083ms)\nWhy is the sun yellow?\tsun damage\t-13.137872699848234\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, are a sign of, sun damage) -> sun damage (17083ms)\nWhy is the sun yellow?\t99.85 %\t-13.150370177053118\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, 99.85 %) -> 99.85 % (13720ms)\nWhy is the sun yellow?\t99.86 %\t-13.150370177053118\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, 99.86 %) -> 99.86 % (13719ms)\nWhy is the sun yellow?\tharmful chemicals\t-13.16320435593733\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, harmful chemicals) -> harmful chemicals (13747ms)\nWhy is the sun yellow?\t25 CDs\t-13.165608757924682\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the atomic sun, contains, 25 CDs) -> 25 CDs (13747ms)\nWhy is the sun yellow?\t99.9 %\t-13.1682543974205\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.9 %) -> 99.9 % (13747ms)\nWhy is the sun yellow?\ta light source\t-13.170392593688337\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, a light source) -> a light source (13747ms)\nWhy is the sun yellow?\tcataracts\t-13.170909970668546\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, can cause other health problems such as, cataracts) -> cataracts (14277ms)\nWhy is the sun yellow?\tmoral lessons\t-13.17405852824953\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun King, contain, moral lessons) -> moral lessons (13747ms)\nWhy is the sun yellow?\t99.8 percent\t-13.1760105428427\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.8 percent) -> 99.8 percent (13747ms)\nWhy is the sun yellow?\t99.8 %\t-13.181517351543834\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, 99.8 %) -> 99.8 % (13775ms)\nWhy is the sun yellow?\tmaterials\t-13.181772533871833\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contained in, materials) -> materials (13775ms)\nWhy is the sun yellow?\thuge rivers\t-13.185184115801835\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, huge rivers) -> huge rivers (13775ms)\nWhy is the sun yellow?\ta very light green\t-13.187663588501449\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, was colored, a very light green) -> a very light green (14307ms)\nWhy is the sun yellow?\tseven colors\t-13.202536503791661\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, seven colors) -> seven colors (13774ms)\nWhy is the sun yellow?\tseven different colours\t-13.205005421203975\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, seven different colours) -> seven different colours (13775ms)\nWhy is the sun yellow?\tT.J. Simpson\t-13.216360775687217\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (T.J. Simpson, have played huge roles for, the Sun Devils) -> T.J. Simpson (12124ms)\nWhy is the sun yellow?\t99.9 percent\t-13.23128760476078\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.9 percent) -> 99.9 percent (13775ms)\nWhy is the sun yellow?\tvisible light\t-13.243164510542503\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun?s spectrum, contains, visible light) -> visible light (13802ms)\nWhy is the sun yellow?\tsimilar chemical constituents\t-13.246006206343113\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contain, similar chemical constituents) -> similar chemical constituents (13802ms)\nWhy is the sun yellow?\toccupants\t-13.259699198663828\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, can be a major problem to, occupants) -> occupants (14307ms)\nWhy is the sun yellow?\teach reed\t-13.259761095074541\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contained within, each reed) -> each reed (13802ms)\nWhy is the sun yellow?\tthe Spring Lake Outdoor Club\t-13.261970480906012\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (sun, is a function of, the Spring Lake Outdoor Club) -> the Spring Lake Outdoor Club (12927ms)\nWhy is the sun yellow?\tconsiderable interesting material\t-13.267226943480905\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, considerable interesting material) -> considerable interesting material (13803ms)\nWhy is the sun yellow?\tfour groups\t-13.282689609467399\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun symbol, contains, four groups) -> four groups (13802ms)\nWhy is the sun yellow?\tIron Composer\t-13.286641991822574\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the sun, could be a secret ingredient for, Iron Composer) -> Iron Composer (12927ms)\nWhy is the sun yellow?\tone million\t-13.287628062344858\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, could contain, one million) -> one million (13803ms)\nWhy is the sun yellow?\ta nuclear fusion reactor\t-13.295387235262893\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, a nuclear fusion reactor) -> a nuclear fusion reactor (13830ms)\nWhy is the sun yellow?\tvision work\t-13.301914266375373\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, does color, vision work) -> vision work (14307ms)\nWhy is the sun yellow?\ta kid\t-13.31248885393989\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what make the sun yellow ? -> $x: ($x, make, the sun yellow) -> $x: ($x, make, sun yellow) -> (a kid, makes, our sun yellow) -> a kid (10563ms)\nWhy is the sun yellow?\tinvisible ultraviolet rays\t-13.321227567204888\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, invisible ultraviolet rays) -> invisible ultraviolet rays (13830ms)\nWhy is the sun yellow?\t99 percent\t-13.326140539223054\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains approximately, 99 percent) -> 99 percent (13830ms)\nWhy is the sun yellow?\tthe center\t-13.359525503295295\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what characterize the sun ? -> $x: ($x, characterize, the sun) -> (the center, characterizes, the sun) -> the center (12212ms)\nWhy is the sun yellow?\ta blood red orange\t-13.36032076160636\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, was the color of, a blood red orange) -> a blood red orange (14307ms)\nWhy is the sun yellow?\ta minimal number\t-13.36412152809243\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the SUN FROST refrigerator, contains, a minimal number) -> a minimal number (13830ms)\nWhy is the sun yellow?\tfreezes\t-13.375125644589652\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (freezes, remove them after, the sun) -> freezes (12124ms)\nWhy is the sun yellow?\tleather\t-13.382117027405114\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun?s UV rays, will affect the color of, leather) -> leather (14307ms)\nWhy is the sun yellow?\ta morning sun\t-13.386782101725771\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, was colored too darkly for, a morning sun) -> a morning sun (14307ms)\nWhy is the sun yellow?\tone or more loops\t-13.388228019530818\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, one or more loops) -> one or more loops (13830ms)\nWhy is the sun yellow?\tUVA and UVB\t-13.406994754859449\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, UVA and UVB) -> UVA and UVB (13856ms)\nWhy is the sun yellow?\ta very powerful wind\t-13.41750102825151\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the forming sun, contained, a very powerful wind) -> a very powerful wind (13856ms)\nWhy is the sun yellow?\ta view\t-13.418857079552751\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (a view, has happened at, the Sun) -> a view (13068ms)\nWhy is the sun yellow?\tcompetitive teams\t-13.425299754570274\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun Belt Conference, contains, competitive teams) -> competitive teams (13856ms)\nWhy is the sun yellow?\tred\t-13.425751398524225\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, was setting a magnificient color of, red) -> red (14307ms)\nWhy is the sun yellow?\tThe program\t-13.466411461804986\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (The program, can also remove, the Sun Download Manager) -> The program (12124ms)\nWhy is the sun yellow?\ttwo decillion grams\t-13.468690036076506\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains about, two decillion grams) -> two decillion grams (13856ms)\nWhy is the sun yellow?\tmore GLA\t-13.484764658801119\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun Evening Primrose Deluxe, contain, more GLA) -> more GLA (13856ms)\nWhy is the sun yellow?\tthe independent power source\t-13.486380493932497\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (the independent power source, is the source of, the sun) -> the independent power source (12953ms)\nWhy is the sun yellow?\ta letter\t-13.49167914601649\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The New York Sun, contained, a letter) -> a letter (13857ms)\nWhy is the sun yellow?\tthe fog\t-13.501922555208338\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what make the sun blue ? -> $x: ($x, make, the sun blue) -> (the fog, made space for, the sun and blue sky) -> the fog (12124ms)\nWhy is the sun yellow?\tnative C interfaces\t-13.502448597632231\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun Performance Library, contains, native C interfaces) -> native C interfaces (13883ms)\nWhy is the sun yellow?\tPDT\t-13.503806229978748\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (PDT, can also be used to remove, sun damage) -> PDT (12124ms)\nWhy is the sun yellow?\ta statue\t-13.504708957744812\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun Yatsen Memorial Hall, contains, a statue) -> a statue (13883ms)\nWhy is the sun yellow?\ta Skull\t-13.51221430684961\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun halo, contained, a Skull) -> a Skull (13883ms)\nWhy is the sun yellow?\tpositive development\t-13.517363025615644\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the sun, produces the ingredients for, positive development) -> positive development (12953ms)\nWhy is the sun yellow?\tsignificant safety concerns\t-13.518507412988104\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the sun, contained ingredients with, significant safety concerns) -> significant safety concerns (12953ms)\nWhy is the sun yellow?\tTDateTime\t-13.529927553383178\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (sun, longitude is linear function of, TDateTime) -> TDateTime (12953ms)\nWhy is the sun yellow?\ta silvery gray\t-13.540578749968997\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, change the color to, a silvery gray) -> a silvery gray (14307ms)\nWhy is the sun yellow?\tthe system\t-13.541146295726715\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the system, are furthest removed from, the Divine central sun) -> the system (12212ms)\nWhy is the sun yellow?\tthe Ptolemaic system\t-13.585059622953306\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, caused enormous problems to, the Ptolemaic system) -> the Ptolemaic system (14338ms)\nWhy is the sun yellow?\tcreatures\t-13.59590180270923\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (creatures, removed from, the sun and human biology) -> creatures (12278ms)\nWhy is the sun yellow?\ta gas fireplace\t-13.603023540091662\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun room, contains, a gas fireplace) -> a gas fireplace (13883ms)\nWhy is the sun yellow?\tmisuse\t-13.613393510105187\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The Sun, covered the problem of, misuse) -> misuse (14338ms)\nWhy is the sun yellow?\ta rainbow\t-13.63771086298613\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, makes the colors of, a rainbow) -> a rainbow (14338ms)\nWhy is the sun yellow?\tSunOS 4\t-13.650337389776787\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (Sun, had implemented the gettext function in, SunOS 4) -> SunOS 4 (13067ms)\nWhy is the sun yellow?\tdark amber\t-13.6517934880856\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, turned the color of, dark amber) -> dark amber (14338ms)\nWhy is the sun yellow?\tnight\t-13.65444604728889\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, reflects colored light at, night) -> night (14338ms)\nWhy is the sun yellow?\ttwo pools\t-13.658559394222825\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The gulf front sun deck, contains, two pools) -> two pools (13884ms)\nWhy is the sun yellow?\tsunrise\t-13.664096427990955\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, has a very strong reddish color at, sunrise) -> sunrise (14338ms)\nWhy is the sun yellow?\tthe night\t-13.672891755963542\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the night, will only be removed by, the rising Sun) -> the night (12278ms)\nWhy is the sun yellow?\teye strains\t-13.68870333681183\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, can cause health problems such as, eye strains) -> eye strains (14338ms)\nWhy is the sun yellow?\ta smoggy or hazy sky\t-13.698944408585382\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the setting sun, turns different colors in, a smoggy or hazy sky) -> a smoggy or hazy sky (14338ms)\nWhy is the sun yellow?\ta buffet and BBQ set-up\t-13.714134587149456\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun deck, contains, a buffet and BBQ set-up) -> a buffet and BBQ set-up (14564ms)\nWhy is the sun yellow?\tcities\t-13.731386674271358\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Europe Sun-Belt, contains, cities) -> cities (14564ms)\nWhy is the sun yellow?\ta catalyst\t-13.737212709923902\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (Every sun, functions as, a catalyst) -> a catalyst (14564ms)\nWhy is the sun yellow?\tMicrodermabrasion\t-13.744154668680318\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Microdermabrasion, is used to remove, sun-damaged skin) -> Microdermabrasion (14564ms)\nWhy is the sun yellow?\tUPDATE\t-13.769868433617997\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (UPDATE, happened at, the HOLE Lotta Fun Holiday Club Sun) -> UPDATE (14564ms)\nWhy is the sun yellow?\tRomney and Huntsman\t-13.773821070657801\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The Sun News, reports the problem for, Romney and Huntsman) -> Romney and Huntsman (14564ms)\nWhy is the sun yellow?\ta carrying case\t-13.7824592116424\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (A sun visor, also functions as, a carrying case) -> a carrying case (14564ms)\nWhy is the sun yellow?\tnon-UTF-8 characters\t-13.813609933027802\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The sun format, has also problems with, non-UTF-8 characters) -> non-UTF-8 characters (14597ms)\nWhy is the sun yellow?\ton-board computers\t-13.83776309553724\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (all SUN MCA, functions including, on-board computers) -> on-board computers (14596ms)\nWhy is the sun yellow?\tfive radiant tracks\t-13.880796322990081\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Terminal Sun?, contains, five radiant tracks) -> five radiant tracks (14596ms)\nWhy is the sun yellow?\t?Lasers\t-13.893955729475856\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (?Lasers, can remove every bit of, sun damage?brown spots) -> ?Lasers (14674ms)\nWhy is the sun yellow?\tseveral factual errors and implications\t-13.901788600558856\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun-News, contains, several factual errors and implications) -> several factual errors and implications (14674ms)\nWhy is the sun yellow?\ta laser\t-13.940999826966383\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (a laser, is used to remove, sun damage or age spots) -> a laser (14674ms)\nWhy is the sun yellow?\ttwo errors\t-13.993009916894609\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The shrinking-sun argument, contains, two errors) -> two errors (14674ms)\nWhy is the sun yellow?\tIPLs\t-14.005576584370946\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (IPLs, are very good at removing, sun spots) -> IPLs (14673ms)\nWhy is the sun yellow?\tUVA radiation\t-14.02218843704686\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun?s rays, contain, UVA radiation) -> UVA radiation (14674ms)\nWhy is the sun yellow?\tFalmer\t-14.028841991496403\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Falmer, had removed, his sun-helmet , seemingly oblivious) -> Falmer (14770ms)\nWhy is the sun yellow?\ta national distributor\t-14.038779339868997\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (K-Sun, continues to function as, a national distributor) -> a national distributor (14770ms)\nWhy is the sun yellow?\tthe ND protocol\t-14.039909028358933\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the ND protocol, was removed from, SunOS.) -> the ND protocol (14770ms)\nWhy is the sun yellow?\tcomments\t-14.05382811111537\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (comments, removed for, Sun) -> comments (14770ms)\nWhy is the sun yellow?\t4 Heat Sun God\t-14.070493543446078\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (4 Heat Sun God, removes the hydrogen from, our Sun) -> 4 Heat Sun God (14771ms)\nWhy is the sun yellow?\t2-4 months\t-14.10464511851538\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (2-4 months, remove, sun spots) -> 2-4 months (14771ms)\nWhy is the sun yellow?\tVehicles\t-14.12498615448045\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Vehicles, are to be removed from, Tree Suns Towing compound) -> Vehicles (14771ms)\nWhy is the sun yellow?\tDermafile ? Exfoliation\t-14.137161396408715\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Dermafile ? Exfoliation, remove, sun damage) -> Dermafile ? Exfoliation (14800ms)\nWhy is the sun yellow?\tthe blond nut\t-14.143623346451282\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the blond nut, is removed from, the fruit and sun-dried) -> the blond nut (14800ms)\nWhy is the sun yellow?\t4E , divine\t-14.162514656737867\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (4E , divine, is simply removed from, Dark Sun) -> 4E , divine (14800ms)\nWhy is the sun yellow?\tparticular those\t-14.178817989331415\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (particular those, remove, sun damage) -> particular those (14800ms)\nWhy is the sun yellow?\tThe story\t-14.182036187029869\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (The story, has been removed from, the Sun?s website) -> The story (14800ms)\nWhy is the sun yellow?\ta dermatologist\t-14.187305524073055\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (a dermatologist, remove, minor sun skin-damage) -> a dermatologist (14800ms)\nWhy is the sun yellow?\teditors\t-14.191042410079582\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (editors, removed, ?Chicago Sun-Times) -> editors (14800ms)\nWhy is the sun yellow?\tsummer months\t-14.214985787620558\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (summer months, removed to allow, sun light) -> summer months (14831ms)\nWhy is the sun yellow?\tcare\t-14.229937612549383\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (care, remove, brown and sun spots) -> care (14830ms)\nWhy is the sun yellow?\tResurface\t-14.237349055056022\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Resurface, Remove, Sun Damaged) -> Resurface (14830ms)\nWhy is the sun yellow?\tthe thinker\t-14.265052967814762\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, are an ever-present problem for, the thinker) -> the thinker (14831ms)\nWhy is the sun yellow?\tan innovative way\t-14.273899383362705\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (an innovative way, comfortably remove, sun spots) -> an innovative way (14830ms)\nWhy is the sun yellow?\tCosmetic procedures\t-14.278633065164492\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Cosmetic procedures, can remove, sun damage) -> Cosmetic procedures (14830ms)\nWhy is the sun yellow?\tMake eye contact\t-14.305010068541137\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Make eye contact, remove, all eye-concealing sun glasses) -> Make eye contact (14831ms)\nWhy is the sun yellow?\tless costly ray\t-14.323513625646088\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (less costly ray, remove, sunglasses sale-gucci sun light) -> less costly ray (14861ms)\nWhy is the sun yellow?\tChemical peeling\t-14.330800747959023\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Chemical peeling, remove, some sun damage) -> Chemical peeling (14861ms)\nWhy is the sun yellow?\t10 & 2\t-14.37670884892037\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (10 & 2, remove, your sun glasses or hat) -> 10 & 2 (14861ms)\nWhy is the sun yellow?\tBell\t-14.379138685702083\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Bell, removed, Sun News Network) -> Bell (14861ms)\nWhy is the sun yellow?\tQ-switched lasers\t-14.391889902165811\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Q-switched lasers, can remove, brown sun spots) -> Q-switched lasers (14861ms)\nWhy is the sun yellow?\tevens\t-14.395446450821709\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (evens, removes, sun damaged skin) -> evens (14861ms)\nWhy is the sun yellow?\t99.8 percent of the total material\t-14.404408640698858\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains over, 99.8 percent of the total material) -> 99.8 percent of the total material (14861ms)\nWhy is the sun yellow?\tmore than a million Earths\t-14.405424793646318\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, could contain, more than a million Earths) -> more than a million Earths (14861ms)\nWhy is the sun yellow?\tThe fill flash\t-14.432936261788447\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (The fill flash, remove shadows, when the sun is overhead) -> The fill flash (14890ms)\nWhy is the sun yellow?\tpercent of all the mass in our solar system\t-14.484382295470567\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, percent of all the mass in our solar system) -> percent of all the mass in our solar system (14889ms)\nWhy is the sun yellow?\tearly spring\t-14.486349332916014\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (early spring, remove, old , twiggy growth Sun Exposure) -> early spring (14889ms)\nWhy is the sun yellow?\tA peel\t-14.487224323438904\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (A peel, removes several layers of, sun damaged skin cells) -> A peel (14889ms)\nWhy is the sun yellow?\tthe penguins\t-14.487870786815026\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The strong sun, is the main problem for, the penguins) -> the penguins (14890ms)\nWhy is the sun yellow?\tA power washer\t-14.528414840379682\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (A power washer, is best for removing, sun-damaged wood fibers) -> A power washer (14889ms)\nWhy is the sun yellow?\tas many as 5,000 former mortgagors\t-14.532327658200575\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (as many as 5,000 former mortgagors, were removed from, SunTrust) -> as many as 5,000 former mortgagors (14889ms)\nWhy is the sun yellow?\tTom\t-14.548239426797238\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Tom, removed, his dark black sun-glasses) -> Tom (14889ms)\nWhy is the sun yellow?\t0 / 5 Fraxel laser treatment\t-14.550011597031686\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (0 / 5 Fraxel laser treatment, removes, sun damage) -> 0 / 5 Fraxel laser treatment (14918ms)\nWhy is the sun yellow?\tout there\t-14.574120041017105\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The sun, was obviously causing a problem, out there) -> out there (14918ms)\nWhy is the sun yellow?\twhats\t-14.57826813821212\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (whats, happening at, the Sun) -> whats (14918ms)\nWhy is the sun yellow?\tlaser facials\t-14.589861282798982\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (laser facials, remove, sun- and liver-spots) -> laser facials (14918ms)\nWhy is the sun yellow?\tthe hills\t-14.593037922806287\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, change the colors of, the hills) -> the hills (14918ms)\nWhy is the sun yellow?\tpages\t-14.596934701650248\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, coloring, pages) -> pages (14918ms)\nWhy is the sun yellow?\tout\t-14.659744224133753\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, bringing the colors, out) -> out (14918ms)\nWhy is the sun yellow?\tthe teams\t-14.675660236642091\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (the teams, have played better than, the Suns) -> the teams (14918ms)\nWhy is the sun yellow?\tRemoval\t-14.706774887145055\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Removal, attempt to remove, a SunPass Mini Sticker Transponder) -> Removal (14994ms)\nWhy is the sun yellow?\tthe soap\t-14.75511307524734\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, the soap) -> the soap (14994ms)\nWhy is the sun yellow?\tpictures free\t-14.764561860607172\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, coloring, pictures free) -> pictures free (14994ms)\nWhy is the sun yellow?\tthe dog\t-14.76457229811541\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, enhances the color of, the dog) -> the dog (14994ms)\nWhy is the sun yellow?\tthe clouds\t-14.786478664260173\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, can change the color of, the clouds) -> the clouds (14994ms)\nWhy is the sun yellow?\tthe reality\t-14.804265347782707\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, the reality) -> the reality (14994ms)\nWhy is the sun yellow?\tMayfield fund\t-14.824048519446002\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Mayfield fund, has removed all reference to, SunRocket) -> Mayfield fund (15023ms)\nWhy is the sun yellow?\tthe sun\t-14.847478790268863\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the Sun Glow, will be the same color as, the sun) -> the sun (15023ms)\nWhy is the sun yellow?\timportant safeguards\t-14.88392588101213\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun Download Center, contains, important safeguards) -> important safeguards (15023ms)\nWhy is the sun yellow?\t99.85 % of the mass\t-14.885691197081222\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.85 % of the mass) -> 99.85 % of the mass (15023ms)\nWhy is the sun yellow?\tApr 07\t-14.916959584033648\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the morning sun, color-me-club, Apr 07) -> Apr 07 (15052ms)\nWhy is the sun yellow?\t99.8 % of all matter\t-14.942807573831868\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, 99.8 % of all matter) -> 99.8 % of all matter (15052ms)\nWhy is the sun yellow?\tabout 98 % of the mass\t-14.942807573831868\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, about 98 % of the mass) -> about 98 % of the mass (15052ms)\nWhy is the sun yellow?\t99 % of the matter\t-14.942807573831868\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains over, 99 % of the matter) -> 99 % of the matter (15052ms)\nWhy is the sun yellow?\tthe sky\t-14.949412825648954\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, color, the sky) -> the sky (15052ms)\nWhy is the sun yellow?\tmore than 99.8 % of the mass\t-15.02863337619685\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, more than 99.8 % of the mass) -> more than 99.8 % of the mass (15052ms)\nWhy is the sun yellow?\t99.8 % of the mass of the solar system\t-15.02863337619685\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.8 % of the mass of the solar system) -> 99.8 % of the mass of the solar system (15052ms)\nWhy is the sun yellow?\tthe cimi or sign\t-15.030557892563545\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, the cimi or sign) -> the cimi or sign (15125ms)\nWhy is the sun yellow?\tthe paper\t-15.047446582271334\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The setting sun, produced a warm color to, the paper) -> the paper (15125ms)\nWhy is the sun yellow?\tthe oven\t-15.100516187367731\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the sun, add the ingredients to, the oven) -> the oven (15125ms)\nWhy is the sun yellow?\tthe ocean\t-15.104134778226143\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the midday sun and eyes, are the color of, the ocean) -> the ocean (15125ms)\nWhy is the sun yellow?\tthe direct channels\t-15.149621014868195\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (Only those suns, function in, the direct channels) -> the direct channels (15125ms)\nWhy is the sun yellow?\tthe shorts\t-15.220796297931754\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the shorts, can be removed for, sunning) -> the shorts (15125ms)\nWhy is the sun yellow?\tthe encumbrances\t-15.253447048263432\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the encumbrances, have been removed by, Sun) -> the encumbrances (15232ms)\nWhy is the sun yellow?\tthe sands\t-15.272967139405495\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, changes the colors of, the sands) -> the sands (15232ms)\nWhy is the sun yellow?\tthe leaves\t-15.295655280926228\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the leaves, have been removed for, sun exposure) -> the leaves (15232ms)\nWhy is the sun yellow?\tthe townsite\t-15.299489941675247\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the townsite, was removed between, two suns) -> the townsite (15232ms)\nWhy is the sun yellow?\tthe sky change\t-15.345764750150689\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, see the colors of, the sky change) -> the sky change (15259ms)\nWhy is the sun yellow?\tthe lake\t-15.353364535121631\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, changed the colors of, the lake) -> the lake (15260ms)\nWhy is the sun yellow?\tthe private swimming pool\t-15.36163574124196\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The terracotta sun terrace, contains, the private swimming pool) -> the private swimming pool (15260ms)\nWhy is the sun yellow?\tthe tea\t-15.390701857085082\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the tea, remove from, sun) -> the tea (15260ms)\nWhy is the sun yellow?\tthe coral and fish\t-15.390888604852972\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, will enhance the colors of, the coral and fish) -> the coral and fish (15260ms)\nWhy is the sun yellow?\tthe rainbow\t-15.4239663538815\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the Sun, contains all the colors of, the rainbow) -> the rainbow (15259ms)\nWhy is the sun yellow?\tthe planet\t-15.441166788176613\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun?s rays, is a problem for, the planet) -> the planet (15260ms)\nWhy is the sun yellow?\tthe solid materials\t-15.462826507615052\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun ! Mother Earth, contains, the solid materials) -> the solid materials (15328ms)\nWhy is the sun yellow?\tthe scenery\t-15.46906044006267\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, brings out the color of, the scenery) -> the scenery (15329ms)\nWhy is the sun yellow?\tthe decoration\t-15.494702214610534\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, brought out the colors of, the decoration) -> the decoration (15329ms)\nWhy is the sun yellow?\tthe landscape\t-15.499282256014007\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the low afternoon sun, brought the colors of, the landscape) -> the landscape (15329ms)\nWhy is the sun yellow?\tthe story\t-15.527244799500082\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the ?sun stone ? ?, was another ingredient of, the story) -> the story (15329ms)\nWhy is the sun yellow?\tthe door\t-15.546499822927892\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the door, remove, my sun glasses) -> the door (15328ms)\nWhy is the sun yellow?\tThe abrasion\t-15.582324520510372\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (The abrasion, removes, sun damaged cells) -> The abrasion (15418ms)\nWhy is the sun yellow?\tthe day\t-15.585808413692988\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, shall paint its colors on, the day) -> the day (15418ms)\nWhy is the sun yellow?\tthe mystical runes\t-15.606946151127968\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun-fertilizes, contains, the mystical runes) -> the mystical runes (15418ms)\nWhy is the sun yellow?\tthe desiccated\t-15.609499457985342\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun?s good light, contain, the desiccated) -> the desiccated (15418ms)\nWhy is the sun yellow?\tthe canyon walls\t-15.612002619178298\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, really brought out the colors in, the canyon walls) -> the canyon walls (15418ms)\nWhy is the sun yellow?\tThe oil\t-15.752399653950985\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (The oil, is useful to remove, any sun damage or age spots) -> The oil (15418ms)\nWhy is the sun yellow?\tthe water\t-15.821186979324555\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colored, the water) -> the water (15446ms)\nWhy is the sun yellow?\tthe room\t-15.841588098188508\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, coloring, the room) -> the room (15446ms)\nWhy is the sun yellow?\tthe practice green\t-15.852849536898958\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the practice green, awkwardly removed, their sun visors) -> the practice green (15446ms)\nWhy is the sun yellow?\tthe flowers\t-15.861405320511519\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colors, the flowers) -> the flowers (15446ms)\nWhy is the sun yellow?\tthe new research\t-15.951924589724843\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (Even the Chicago Sun-Times, had a problem with, the new research) -> the new research (15446ms)\nWhy is the sun yellow?\ta process\t-16.16661348191807\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (a process, removes, sun-damaged cells) -> a process (15474ms)\nWhy is the sun yellow?\tthe bulk of solar system material\t-16.173437111901148\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, the bulk of solar system material) -> the bulk of solar system material (15474ms)\nWhy is the sun yellow?\tthe horizon\t-16.445411714822548\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colors, the horizon) -> the horizon (15474ms)\nWhy is the sun yellow?\tthe walls\t-16.451892418434618\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colored, the walls) -> the walls (15474ms)\nWhy is the sun yellow?\tthe mountains\t-16.465812833686503\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colored, the mountains) -> the mountains (15474ms)\nWhy is the sun yellow?\tthe morning sky\t-16.618965168453247\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colors, the morning sky) -> the morning sky (15501ms)\nWhy is the sun yellow?\tthe sky pink\t-16.936962954290458\tWhy is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the first rays of the sun, colored, the sky pink) -> the sky pink (15502ms)\nIn what month is it held?\tGod\t-13.533145011258897\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Jan holding Issue 6 February 2006, marked 20 years since, God) -> God (15407ms)\nIn what month is it held?\tBusiness Objects\t-13.535622046533254\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (privately held firm, also spent 12 years at, Business Objects) -> Business Objects (15407ms)\nIn what month is it held?\tNYC\t-13.593232696043605\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (2010 | 3 CommentsIt, is finally spring here in, NYC) -> NYC (15183ms)\nIn what month is it held?\tHold It Up\t-13.617112095291068\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, record version, $x) -> (Hold It Up, Recorded versions, Hold It Up) -> Hold It Up (17676ms)\nIn what month is it held?\tHold It Against Me\t-13.656096325958966\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, split to, $x) -> (Hold It Against Me, Split To, Hold It Against Me) -> Hold It Against Me (18756ms)\nIn what month is it held?\tbusiness\t-13.68712266989418\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Hold Marketing, is celebrating its 20th year in, business) -> business (15407ms)\nIn what month is it held?\tHold On (live in Japan)\t-13.688583184848882\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, record version, $x) -> (Hold On, Recorded versions, Hold On (live in Japan)) -> Hold On (live in Japan) (17677ms)\nIn what month is it held?\tWhat The Future Holds\t-13.688583184848882\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, recording of composition, $x) -> (What the Future Holds, Recording of Composition, What The Future Holds) -> What The Future Holds (17676ms)\nIn what month is it held?\tHold On\t-13.716072065448042\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, recording of composition, $x) -> (Hold On (live in Japan), Recording of Composition, Hold On) -> Hold On (17676ms)\nIn what month is it held?\tHolding On (When Love Is Gone)\t-13.739633963104465\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, recording of composition, $x) -> (Holding On, Recording of Composition, Holding On (When Love Is Gone)) -> Holding On (When Love Is Gone) (18756ms)\nIn what month is it held?\tHold It Against Me (The Alias Radio Edit)\t-13.760054274406698\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, record version, $x) -> (Hold It Against Me, Recorded versions, Hold It Against Me (The Alias Radio Edit)) -> Hold It Against Me (The Alias Radio Edit) (18756ms)\nIn what month is it held?\tHold It Against Me (Tracy Young Ferosh radio remix)\t-13.777922046796151\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, record version, $x) -> (Hold It Against Me, Recorded versions, Hold It Against Me (Tracy Young Ferosh radio remix)) -> Hold It Against Me (Tracy Young Ferosh radio remix) (18756ms)\nIn what month is it held?\tthe FederalRegister\t-13.786732180081252\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (2010.It, was published in, the FederalRegister) -> the FederalRegister (15183ms)\nIn what month is it held?\tWashington\t-13.870783265865162\tIn what month is it held? -> When is it held? -> when be [ it hold ] ? -> when be the 1 st it hold ? -> $x: (the 1 st it, be hold in, $x) -> (The 1st Annual GovIT Expo, is held in, Washington) -> Washington (13913ms)\nIn what month is it held?\tIn Held 'Twas in I: Glimpses of Nirvana - 'Twas Teatime at the Circus - In the Autumn of My Madness - Look to Your Soul - Grand Finale\t-13.887113989176147\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, split to, $x) -> (In Held 'Twas in I: Glimpses of Nirvana - 'Twas Teatime at the Circus - In the Autumn of My Madness - Look to Your Soul - Grand Finale, Split To, In Held 'Twas in I: Glimpses of Nirvana - 'Twas Teatime at the Circus - In the Autumn of My Madness - Look to Your Soul - Grand Finale) -> In Held 'Twas in I: Glimpses of Nirvana - 'Twas Teatime at the Circus - In the Autumn of My Madness - Look to Your Soul - Grand Finale (18756ms)\nIn what month is it held?\tan upcoming edition\t-13.916903339681642\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (2010--it, will be published in, an upcoming edition) -> an upcoming edition (15183ms)\nIn what month is it held?\tVCT shares\t-13.94600639654465\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (the minimum holding period, will be 3 years for, VCT shares) -> VCT shares (15407ms)\nIn what month is it held?\ta CTS operation\t-13.94624998216944\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (hand-held tools, are symptom-free 3 years after, a CTS operation) -> a CTS operation (15407ms)\nIn what month is it held?\ttwo\t-13.981414386739988\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (hold, said the 47-year-old mother of, two) -> two (15407ms)\nIn what month is it held?\thonor\t-14.042937540926586\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (patent holding companies, throw a year-end party in, honor) -> honor (16042ms)\nIn what month is it held?\texpertise internet\t-14.05903809219672\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Omaha hold?em locksmiths, have got years of, expertise internet) -> expertise internet (16042ms)\nIn what month is it held?\thalf price\t-14.089985037853461\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (hold, get the sixth year at, half price) -> half price (16041ms)\nIn what month is it held?\ta lifetime kind\t-14.090235909016366\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (July 15 , 2010 ?It, was a once in, a lifetime kind) -> a lifetime kind (15183ms)\nIn what month is it held?\tTandem Computer\t-14.15542579732347\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Held, spent 18 years at, Tandem Computer) -> Tandem Computer (16042ms)\nIn what month is it held?\tan executive\t-14.158560860437285\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (MIT. Held, spent 18 years as, an executive) -> an executive (16042ms)\nIn what month is it held?\tEurope\t-14.284025485787714\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (,2010.It, was launch in, Europe) -> Europe (15183ms)\nIn what month is it held?\tcooperation\t-14.3041483603472\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (The conhIT Congress 2010, is being organised in, cooperation) -> cooperation (15183ms)\nIn what month is it held?\tbusiness and management experience\t-14.351073613732158\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Held, has 25 years of, business and management experience) -> business and management experience (16041ms)\nIn what month is it held?\tMay 16\t-14.382900143376515\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be on, $x) -> (2010...It, was 50 years ago on, May 16) -> May 16 (15210ms)\nIn what month is it held?\tPRESIDENT Robert Mugabe\t-14.451602933420212\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the date for hold ? -> $x: ($x, be the date for, hold) -> $x: ($x, date for, hold) -> (PRESIDENT Robert Mugabe, says the date for, the holding) -> PRESIDENT Robert Mugabe (9838ms)\nIn what month is it held?\texperience\t-14.485045857051102\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Jane Held Jane, has 32 years of, experience) -> experience (16407ms)\nIn what month is it held?\t11th\t-14.571279789670013\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be on, $x) -> (The IT Show 2010, will be here on, 11th) -> 11th (15210ms)\nIn what month is it held?\tstress\t-14.600796053436694\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (hold, will probably be two years of, stress) -> stress (16407ms)\nIn what month is it held?\tSouth Korea\t-14.679757624735224\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, go, $x) -> (hold, went to, South Korea) -> South Korea (16407ms)\nIn what month is it held?\tthe Republican debates\t-14.693528697005398\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (the Republican debates, have been held to, date) -> the Republican debates (14922ms)\nIn what month is it held?\ta Redskins uniform?HTTR!\t-14.742974354476083\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be in, $x) -> (this year?it?ll, just be in, a Redskins uniform?HTTR!) -> a Redskins uniform?HTTR! (13634ms)\nIn what month is it held?\tthe President\t-14.748439189917889\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the date for hold ? -> $x: ($x, be the date for, hold) -> $x: ($x, date for, hold) -> (the President, shall fix the date for, the holding) -> the President (9838ms)\nIn what month is it held?\tNovember?s general election\t-14.818066631785639\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be in, $x) -> (this year?it, will be in, November?s general election) -> November?s general election (13634ms)\nIn what month is it held?\ttown\t-14.845020693628086\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (January 26 , 2010 Ahhhh?.It, feels damn good to be back in, town) -> town (15210ms)\nIn what month is it held?\t1988\t-14.865813277170098\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be in, $x) -> (old this year--it, was first introduced in, 1988) -> 1988 (13634ms)\nIn what month is it held?\tNew York\t-14.92940611757019\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, go, $x) -> (hold, went to, New York) -> New York (16407ms)\nIn what month is it held?\tKawasaki\t-14.979671658319416\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (The Nippon IT Charity Relay Race 2010, will be held in, Kawasaki) -> Kawasaki (15210ms)\nIn what month is it held?\ta different direction\t-14.991141525109956\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, go, $x) -> (hold, we?ll go in, a different direction) -> a different direction (16407ms)\nIn what month is it held?\tveggies tomorrow\t-15.003711609826544\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, go, $x) -> (hold &, will be going for, veggies tomorrow) -> veggies tomorrow (16407ms)\nIn what month is it held?\tdata\t-15.010296443904847\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be on, $x) -> (The PayItGreen Survey 2010, is based on, data) -> data (15210ms)\nIn what month is it held?\tThe Contest\t-15.040913040993214\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (The Contest, will be held, Date) -> The Contest (14921ms)\nIn what month is it held?\t08sep 2010.additional\t-15.070833573415463\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be on, $x) -> (2010 .It, was received on, 08sep 2010.additional) -> 08sep 2010.additional (15210ms)\nIn what month is it held?\tthe SADC\t-15.166504596182037\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the criterion for hold ? -> $x: ($x, be the criterion for, hold) -> $x: ($x, criterion for, hold) -> (the SADC, has its own clear criteria for, the holding) -> the SADC (10001ms)\nIn what month is it held?\tThe Match\t-15.18736765756246\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (The Match, will be held in, dates) -> The Match (14922ms)\nIn what month is it held?\tsix-party talks\t-15.251815300196366\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (six-party talks, were held to, date) -> six-party talks (14921ms)\nIn what month is it held?\tJohn Stott\t-15.256007825335127\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (John Stott, will be held on, Date) -> John Stott (14921ms)\nIn what month is it held?\tthe Executive Committee\t-15.316595511580227\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (the Executive Committee, shall be held on, dates) -> the Executive Committee (14921ms)\nIn what month is it held?\tinnovative 30-month program\t-15.353399274973137\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Department of Education, ACE-IT in College, Instance Of, innovative 30-month program) -> innovative 30-month program (10925ms)\nIn what month is it held?\tnew and innovative 30-month program\t-15.353399274973137\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (ACE-IT in College, Instance Of, new and innovative 30-month program) -> new and innovative 30-month program (10925ms)\nIn what month is it held?\tcloud computing\t-15.385365709551595\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be on, $x) -> (this year?s Symposium?it, was the sessions on, cloud computing) -> cloud computing (13634ms)\nIn what month is it held?\tfree gay masturbation porn video\t-15.42188571021813\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (College Guy Jerking It, Instance Of, free gay masturbation porn video) -> free gay masturbation porn video (10925ms)\nIn what month is it held?\tthe years\t-15.475629968554943\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (April 06 , 2010 GE Healthcare IT, has been working in, the years) -> the years (15238ms)\nIn what month is it held?\tAffiliated College\t-15.492738443493721\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Platinum College of IT, Raipur, Instance Of, Affiliated College) -> Affiliated College (10927ms)\nIn what month is it held?\tnice elevated plot\t-15.528124695349822\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be a college it ? -> $x: (a college it, instance of, $x) -> (A.Aziz Engineering College.It, Instance Of, nice elevated plot) -> nice elevated plot (10300ms)\nIn what month is it held?\tthe Kirkwall Teaching Scroll\t-15.58852603985741\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (the Kirkwall Teaching Scroll, is held to, date) -> the Kirkwall Teaching Scroll (14998ms)\nIn what month is it held?\tFive such conferences\t-15.599136382075159\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Five such conferences, have been held to, date) -> Five such conferences (14997ms)\nIn what month is it held?\tNew York City\t-15.634300234809563\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Marion Held Marion Held, was born in, New York City) -> New York City (10001ms)\nIn what month is it held?\tPalo Alto\t-15.634300234809563\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (ARCHIE HELD Biography Archie Held, was born in, Palo Alto) -> Palo Alto (10001ms)\nIn what month is it held?\tcollection of INTERNET search engine\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Northwestern College's SearchIT, Instance Of, collection of INTERNET search engine) -> collection of INTERNET search engine (12954ms)\nIn what month is it held?\tBeed based college\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Tulsi College of Computer Science & I.T., Instance Of, Beed based college) -> Beed based college (11017ms)\nIn what month is it held?\ttough game of football\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Hazelwood College.It, Instance Of, tough game of football) -> tough game of football (11017ms)\nIn what month is it held?\tSEASON yanno\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (LOVE college football-it, Instance Of, SEASON yanno) -> SEASON yanno (12955ms)\nIn what month is it held?\tnewly developed boarding school\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (GameIT College, Instance Of, newly developed boarding school) -> newly developed boarding school (11017ms)\nIn what month is it held?\tlong tough project\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Good-luck with it. College life, Instance Of, long tough project) -> long tough project (11017ms)\nIn what month is it held?\tgrowing independentnon-denominational college\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (TEACHING AIDE/IT ADMINBrindabella Christian College, Instance Of, growing independentnon-denominational college) -> growing independentnon-denominational college (12954ms)\nIn what month is it held?\tblast Kia\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Summer before college..it, Instance Of, blast Kia) -> blast Kia (11017ms)\nIn what month is it held?\tpart of Mahatma Gandhi Mission\t-15.639283633204396\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (College of Computer Science & I.T, Instance Of, part of Mahatma Gandhi Mission) -> part of Mahatma Gandhi Mission (12954ms)\nIn what month is it held?\tsix\t-15.652337977590705\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (six, have been held to, date) -> six (14997ms)\nIn what month is it held?\ta meteorological phenomena\t-15.655332850486761\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (a meteorological phenomena, has been held to, date) -> a meteorological phenomena (14997ms)\nIn what month is it held?\tThirteen PRO Institutes\t-15.661030220686344\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Thirteen PRO Institutes, have been held to, date) -> Thirteen PRO Institutes (14998ms)\nIn what month is it held?\tfollow-up workshops\t-15.675098680663968\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (follow-up workshops, were held at later, dates) -> follow-up workshops (15023ms)\nIn what month is it held?\tweb-based project\t-15.69349737175576\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Resolve-It College Virtual Campus, Instance Of, web-based project) -> web-based project (12954ms)\nIn what month is it held?\tspite\t-15.714355894847577\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be in, $x) -> (this year.It, has been another good season in, spite) -> spite (13634ms)\nIn what month is it held?\tthe north\t-15.719168785956592\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (June 1 , 2010 ?It, is my mission in, the north) -> the north (15238ms)\nIn what month is it held?\tvoluntary society\t-15.722156289170783\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Bareilly College-Social Service League.-It., Instance Of, voluntary society) -> voluntary society (12955ms)\nIn what month is it held?\tTwo Conferences\t-15.722382170825597\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Two Conferences, have been held to, date) -> Two Conferences (15023ms)\nIn what month is it held?\t10 %\t-15.726382124355109\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (10 %, are required to hold, dates) -> 10 % (15023ms)\nIn what month is it held?\tundergraduate college\t-15.727639977115663\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Rani Birla Girls CollegeIt, Instance Of, undergraduate college) -> undergraduate college (13145ms)\nIn what month is it held?\tOnly one public hearing\t-15.730570443627327\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Only one public hearing, has been held to, date) -> Only one public hearing (15023ms)\nIn what month is it held?\tthe Business office\t-15.731344512592345\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Your hold, will only be released by, the Business office) -> the Business office (13146ms)\nIn what month is it held?\tthe country\t-15.794780960333945\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (2009 or 2010..it, will be here in, the country) -> the country (15238ms)\nIn what month is it held?\t173\t-15.79646220554977\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (173, are held to later, date) -> 173 (15023ms)\nIn what month is it held?\tPublic workshops\t-15.819386800064795\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Public workshops, are held on, dates) -> Public workshops (15024ms)\nIn what month is it held?\t1989 and nine conferences\t-15.838050303027774\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (1989 and nine conferences, have been held to, date) -> 1989 and nine conferences (15239ms)\nIn what month is it held?\tJune 4\t-15.841670239513709\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Hold, is released on, June 4) -> June 4 (13146ms)\nIn what month is it held?\ttwenty sessions\t-15.84668499146892\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (twenty sessions, have been held to, date) -> twenty sessions (15239ms)\nIn what month is it held?\tMAPnet\t-15.853497812950868\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (all held records, will be released in, MAPnet) -> MAPnet (13145ms)\nIn what month is it held?\tA written contract\t-15.856373376911588\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (A written contract, is required to hold, dates) -> A written contract (15239ms)\nIn what month is it held?\tgeneral public\t-15.903637136693403\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (all held seats, will be released to, general public) -> general public (13145ms)\nIn what month is it held?\t48 hours\t-15.909425240548462\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Holds, are also released within, 48 hours) -> 48 hours (13145ms)\nIn what month is it held?\tNew Orleans\t-15.951702047667833\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Many hold, was born in, New Orleans) -> New Orleans (10001ms)\nIn what month is it held?\t1928\t-15.951880982520585\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Al Held Al Held, was born in, 1928) -> 1928 (10001ms)\nIn what month is it held?\t1951\t-16.012006448329576\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (David Held, was born in, 1951) -> 1951 (10001ms)\nIn what month is it held?\t2 weeks\t-16.01442179333995\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, will be released in, 2 weeks) -> 2 weeks (13184ms)\nIn what month is it held?\t1984\t-16.06429929479849\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (?Hold Me?, was released in, 1984) -> 1984 (13183ms)\nIn what month is it held?\ta German refugee camp\t-16.131300230295892\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Held, was born in, a German refugee camp) -> a German refugee camp (10075ms)\nIn what month is it held?\tthe UAE\t-16.14580455444097\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (hold, have been cancelled in, the UAE) -> the UAE (10075ms)\nIn what month is it held?\t2005\t-16.156842216624078\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Inconsistent ?Hold Your Colour?, was released in, 2005) -> 2005 (13183ms)\nIn what month is it held?\t5-7 business days\t-16.162796841541542\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, would be released in, 5-7 business days) -> 5-7 business days (13184ms)\nIn what month is it held?\tbonus\t-16.190047818885308\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Advanced Diploma in Engineering York College 2yearsIt, Instance Of, bonus) -> bonus (13184ms)\nIn what month is it held?\t21 days\t-16.219838531531856\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, can be released before, 21 days) -> 21 days (13236ms)\nIn what month is it held?\tten days\t-16.23700113501775\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, may be released within, ten days) -> ten days (13236ms)\nIn what month is it held?\tAug. 23\t-16.26030768337947\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Texas Hold-em, will be released, Aug. 23) -> Aug. 23 (13236ms)\nIn what month is it held?\tthe Office\t-16.300806085989002\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the legal hold, is released by, the Office) -> the Office (13235ms)\nIn what month is it held?\tMystic Music\t-16.31075590372947\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Holding, was released on, Mystic Music) -> Mystic Music (13235ms)\nIn what month is it held?\ta growing number\t-16.3121899203024\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be to begin, $x) -> (hold, are beginning to be, a growing number) -> a growing number (10380ms)\nIn what month is it held?\tMrs. Knight\t-16.31901839962967\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (hold, was released after, Mrs. Knight) -> Mrs. Knight (13236ms)\nIn what month is it held?\trelief\t-16.32559596094419\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Held breaths, were released in, relief) -> relief (13269ms)\nIn what month is it held?\t4 business days\t-16.333588601550616\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, would be released within, 4 business days) -> 4 business days (13269ms)\nIn what month is it held?\t14 days\t-16.33470550608957\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, will be released, 14 days) -> 14 days (13269ms)\nIn what month is it held?\t7 days\t-16.33470550608957\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (This hold, will be released, 7 days) -> 7 days (13269ms)\nIn what month is it held?\tperson\t-16.342097850931864\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (703-228-5990 Holds, can also be cancelled in, person) -> person (10076ms)\nIn what month is it held?\t72 hours\t-16.350734972757717\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, is usually released approximately, 72 hours) -> 72 hours (13269ms)\nIn what month is it held?\tone business day\t-16.3565777641929\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, will be released within, one business day) -> one business day (13336ms)\nIn what month is it held?\ta positive impact\t-16.359541774783143\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (free hold development, is bearing, a positive impact) -> a positive impact (10076ms)\nIn what month is it held?\tDecember 10 ,\t-16.368816507923793\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, commence on, $x) -> (UAP Holding Corp., was commenced on, December 10 ,) -> December 10 , (13336ms)\nIn what month is it held?\tthree years\t-16.37742737543\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Hold Time, was released, three years) -> three years (13336ms)\nIn what month is it held?\tTeller Services\t-16.39340935447387\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Most financial holds, may be released by, Teller Services) -> Teller Services (13336ms)\nIn what month is it held?\ta power level\t-16.4151816877571\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> ('held promise, was born with, a power level) -> a power level (10075ms)\nIn what month is it held?\tlengthy negotiations\t-16.432615359277584\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The yearlong hold, was released after, lengthy negotiations) -> lengthy negotiations (13336ms)\nIn what month is it held?\t2 working days\t-16.437859399012424\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (this hold, will be released within, 2 working days) -> 2 working days (13396ms)\nIn what month is it held?\tArkansas BioVentures\t-16.44234495184746\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (a privately-held company, was born out of, Arkansas BioVentures) -> Arkansas BioVentures (10151ms)\nIn what month is it held?\tservice\t-16.44315687625427\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Click-It @ College student banking package, Instance Of, service) -> service (13397ms)\nIn what month is it held?\tany objects\t-16.451186921263016\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (using HOLD_CURSOR=YES no locks, are held on, any objects) -> any objects (10574ms)\nIn what month is it held?\t4 working days\t-16.466153680061286\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (this hold, will be released within, 4 working days) -> 4 working days (13396ms)\nIn what month is it held?\tdelay\t-16.49697203045737\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (held incommunicado, should be released without, delay) -> delay (13396ms)\nIn what month is it held?\tfour working days\t-16.498808402973093\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (this authorisation hold, is released within, four working days) -> four working days (13396ms)\nIn what month is it held?\tproject management\t-16.50327573658997\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what year it take place ? -> $x: ($x, instance of, year it) ($x, take, place) -> (project management, Instance Of, year experience in IT) (Project management, took, place) -> project management (13396ms)\nIn what month is it held?\tlipstick\t-16.505403390326943\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, would be like, $x) -> (holding hearings, would be like putting, lipstick) -> lipstick (13452ms)\nIn what month is it held?\tgate\t-16.51519401480723\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Face it. College, Instance Of, gate) -> gate (13452ms)\nIn what month is it held?\tOctober 1 , 2010\t-16.520029140110886\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Held scores, will be released, October 1 , 2010) -> October 1 , 2010 (13452ms)\nIn what month is it held?\tadvantage\t-16.52447164334468\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (College or university degree within IT. Project experience, Instance Of, advantage) -> advantage (13452ms)\nIn what month is it held?\tlocation\t-16.524913137976768\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Arya college of Engineering &IT, Instance Of, location) -> location (13452ms)\nIn what month is it held?\t24 hours\t-16.532844575596755\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Your hold, will be released within, 24 hours) -> 24 hours (13512ms)\nIn what month is it held?\tJanuary 11 , 2010\t-16.537157082211905\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Legal Holds ?, will be released on, January 11 , 2010) -> January 11 , 2010 (13512ms)\nIn what month is it held?\tcourse\t-16.539763901130847\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (I.T at Sutton College, Instance Of, course) -> course (13512ms)\nIn what month is it held?\tOctober 23 , 1929\t-16.54080230590892\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (GEORGE HELD, was born, October 23 , 1929) -> October 23 , 1929 (10151ms)\nIn what month is it held?\tDraft and Publish\t-16.547732601145924\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Hold and, Release are now, Draft and Publish) -> Draft and Publish (13512ms)\nIn what month is it held?\tTOURISTS\t-16.548359900238\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the date for hold ? -> $x: ($x, be the date for, hold) -> $x: ($x, date for, hold) -> $x: ($x, be visit for, hold) -> (TOURISTS, ARE VISITING THAILAND FOR, LESS THAN 30 DAYS AND HOLD) -> TOURISTS (13512ms)\nIn what month is it held?\tFY03\t-16.556564577015138\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will resume, $x) -> (hold, will resume in, FY03) -> FY03 (9659ms)\nIn what month is it held?\ta Muslim reaction\t-16.571045601087995\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (held power, was born out of, a Muslim reaction) -> a Muslim reaction (10151ms)\nIn what month is it held?\ta few days\t-16.576743023989874\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Advising holds, are released automatically within, a few days) -> a few days (13551ms)\nIn what month is it held?\t24 hours time\t-16.58192297872207\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (This hold, will be released after, 24 hours time) -> 24 hours time (13551ms)\nIn what month is it held?\tAugust 23rd\t-16.59371087372819\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (?Worth Holding, was released on, August 23rd) -> August 23rd (13551ms)\nIn what month is it held?\tAugust\t-16.59764615987644\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Worth Holding, was self-released in, August) -> August (13551ms)\nIn what month is it held?\ta few minutes\t-16.599159398915717\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, is released within, a few minutes) -> a few minutes (13551ms)\nIn what month is it held?\tan English\t-16.600616320330957\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Your AZ hold, must be released by, an English) -> an English (13551ms)\nIn what month is it held?\tfirst day\t-16.60880682148327\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (Dharam Sansad Held First Dharam Sansad, was held on, first day) -> first day (10574ms)\nIn what month is it held?\tprogram OEHR\t-16.6114735985107\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Held orders, can be released with, program OEHR) -> program OEHR (13702ms)\nIn what month is it held?\tsexual harassment\t-16.614745497039962\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, still do, $x) -> (hold, still did n?t count for, sexual harassment) -> sexual harassment (10151ms)\nIn what month is it held?\ta second broad fortitude\t-16.620152445232094\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The holds, are released pursuant to, a second broad fortitude) -> a second broad fortitude (13703ms)\nIn what month is it held?\ta second click\t-16.628026467681014\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, can be released with, a second click) -> a second click (13702ms)\nIn what month is it held?\tinspection\t-16.630485916198687\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, will be released upon, inspection) -> inspection (13703ms)\nIn what month is it held?\tGeneva\t-16.641856059656515\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (John Held, was born in, Geneva) -> Geneva (10151ms)\nIn what month is it held?\thold radio\t-16.66201743209613\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be over on, $x) -> (hold message, is important over on, hold radio) -> hold radio (10478ms)\nIn what month is it held?\tVirginia\t-16.67987654922432\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Grey Held, was born in, Virginia) -> Virginia (10152ms)\nIn what month is it held?\tApril 11 , 1912\t-16.700798242633827\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The Lucky Hold Up, was released on, April 11 , 1912) -> April 11 , 1912 (13702ms)\nIn what month is it held?\tnotice\t-16.70557814080595\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (your hold, can be cancelled without, notice) -> notice (10217ms)\nIn what month is it held?\tmarket trends\t-16.747375143677885\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will continue on, $x) -> (Tri-Tech Holding, will continue to focus on, market trends) -> market trends (10300ms)\nIn what month is it held?\tpayment\t-16.748019615081535\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (This hold, is released only upon, payment) -> payment (13808ms)\nIn what month is it held?\ta income\t-16.75353686797223\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (holds, were released as well as, a income) -> a income (13808ms)\nIn what month is it held?\tbail\t-16.763264467706634\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Holding, was released on, bail) -> bail (13808ms)\nIn what month is it held?\tfruit\t-16.772841718653265\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Our long-held bullish view, is bearing, fruit) -> fruit (10217ms)\nIn what month is it held?\tApril\t-16.794524394588798\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (TEXAS HOLD HIM, will be released in, April) -> April (13808ms)\nIn what month is it held?\tprocessing\t-16.79464940862934\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (all held adjustment requests, shall be released for, processing) -> processing (13808ms)\nIn what month is it held?\t25-knot gusts\t-16.80567506264928\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, still stand, $x) -> (a no-holds-barred one design, still stand tall in, 25-knot gusts) -> 25-knot gusts (13808ms)\nIn what month is it held?\tTuesday\t-16.870868821812568\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (its holding companies, is released, Tuesday) -> Tuesday (13913ms)\nIn what month is it held?\tany time\t-16.892242676139404\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, re-opened, $x) -> (the hold status, may be re-opened at, any time) -> any time (10217ms)\nIn what month is it held?\ta balloon\t-16.917665770371105\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, would be like, $x) -> (the holding tank, would be like, a balloon) -> a balloon (13913ms)\nIn what month is it held?\twake\t-16.968483362945125\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, was recently released in, wake) -> wake (13913ms)\nIn what month is it held?\tJohn\t-17.042805762059988\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (John Held, was born to, John) -> John (10217ms)\nIn what month is it held?\titems\t-17.061563287456764\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (hold, Hold can only be placed on, items) -> items (10575ms)\nIn what month is it held?\tNovember 27th\t-17.071714857454232\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will begin on, $x) -> (No Limit Hold?em tournament, will begin on, November 27th) -> November 27th (10300ms)\nIn what month is it held?\t7:01 p.m. tonight\t-17.096800076564453\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will resume, $x) -> (a planned hold, will resume at, 7:01 p.m. tonight) -> 7:01 p.m. tonight (9660ms)\nIn what month is it held?\tMarch\t-17.113559965202672\tIn what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be on, $x) -> (this year?s Code Camp Oz ? It?ll, be on, March) -> March (13913ms)\nIn what month is it held?\triggers\t-17.137191065233385\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (a holding bridle, would be released by, riggers) -> riggers (13913ms)\nIn what month is it held?\tMonday\t-17.139501074655634\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (the Future Holds, will be held on, Monday) -> Monday (10575ms)\nIn what month is it held?\tGoals Divorce\t-17.139950160609907\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, mark the end of, hold) -> (Goals Divorce, will mark the end of, your once-held goals) -> Goals Divorce (10300ms)\nIn what month is it held?\tnew policy applications\t-17.147299069371883\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will continue on, $x) -> (the temporary hold, will continue on, new policy applications) -> new policy applications (10300ms)\nIn what month is it held?\tMonday October 26th\t-17.18479493975838\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, resume on, $x) -> (hold, then resume on, Monday October 26th) -> Monday October 26th (9740ms)\nIn what month is it held?\tSunday\t-17.195284289005947\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (a stein holding competition, will be held on, Sunday) -> Sunday (10575ms)\nIn what month is it held?\tFebruary\t-17.198768883963304\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will resume, $x) -> (hold, will resume in, February) -> February (9660ms)\nIn what month is it held?\tsame date\t-17.215981069895676\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, still exist, $x) -> (holds, still exist on, same date) -> same date (9740ms)\nIn what month is it held?\tBrooklyn\t-17.21660089165569\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Al Held, was born in, Brooklyn) -> Brooklyn (10380ms)\nIn what month is it held?\treaders\t-17.226644777514544\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (hold, is cancelled * For, readers) -> readers (10380ms)\nIn what month is it held?\tMarch 2nd , 2009 Today\t-17.227661350400187\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, mark the end of, hold) -> (March 2nd , 2009 Today, marks the end of, the holding period) -> March 2nd , 2009 Today (10380ms)\nIn what month is it held?\tone to five days\t-17.2842499652002\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, last from, $x) -> (This hold, can last from, one to five days) -> one to five days (10380ms)\nIn what month is it held?\t2002\t-17.297869329130528\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (The Hold Steady, was born in, 2002) -> 2002 (10413ms)\nIn what month is it held?\tJanuary 2nd\t-17.312544298951355\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will resume on, $x) -> (hold, will resume on, January 2nd) -> January 2nd (10478ms)\nIn what month is it held?\tsight\t-17.33561419984505\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (its hold, was quickly borne out of, sight) -> sight (10413ms)\nIn what month is it held?\tsuspicion\t-17.335992233813915\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (rebel-held war zone, are being held on, suspicion) -> suspicion (10575ms)\nIn what month is it held?\t3-7 days\t-17.337366402523084\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, last from, $x) -> (This hold, typically lasts from, 3-7 days) -> 3-7 days (10413ms)\nIn what month is it held?\tlife\t-17.33926172395097\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be to begin, $x) -> (the Scourge-held land, was beginning to return to, life) -> life (10413ms)\nIn what month is it held?\tMarch 5th\t-17.347584545650125\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will begin on, $x) -> (Financial Registration Holds, will begin on, March 5th) -> March 5th (10413ms)\nIn what month is it held?\tAugust 2006\t-17.351449027622554\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, resume on, $x) -> (hold, then resumed on, August 2006) -> August 2006 (9741ms)\nIn what month is it held?\tthe go\t-17.72247272749324\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, be the first of, hold) -> (the go, is the first killer app of, the hand-held world) -> the go (10478ms)\nIn what month is it held?\tDecember\t-17.857450313477703\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, mark the end of, hold) -> (December, also marks the end of, our legal hold) -> December (10478ms)\nIn what month is it held?\tthe cardholder\t-18.0493410025571\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (Holds, can be cancelled by, the cardholder) -> the cardholder (10477ms)\nIn what month is it held?\tthe host\t-18.100410973250963\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (This hold open override, can be canceled by, the host) -> the host (10478ms)\nIn what month is it held?\tthe Supreme Court in Minor\t-18.31905217245746\tIn what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, discerning, hold) -> (the Supreme Court in Minor, to properly discern, their holding) -> the Supreme Court in Minor (9741ms)\nWhat state is the Filenes store located in?\tAirport Plaza\t-9.771154428074743\tWhat state is the Filenes store located in? -> what state be [ the filene store ] locate in ? -> what be the region of the filene store ? -> $x: ($x, be the region of, the filene store) -> $x: ($x, have, the filene store) -> (Airport Plaza, still has, the former Filene?s furniture stores) -> Airport Plaza (6587ms)\nWhat is the population of Venezuela?\t26 million\t-0.07274820127267301\tWhat is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of over, 26 million) -> 26 million (5241ms)\nWhat is the population of Venezuela?\tone million people\t-0.40985396721055123\tWhat is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of approximately, one million people) -> one million people (5240ms)\nWhat is the population of Venezuela?\trefugee and asylum seekers\t-0.5473965858666425\tWhat is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, hosted a population of, refugee and asylum seekers) -> refugee and asylum seekers (5240ms)\nWhat is the population of Venezuela?\t29 million people\t-0.9513488924511337\tWhat is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of about, 29 million people) -> 29 million people (5241ms)\nWhat is the population of Venezuela?\t23916810\t-1.8228952319585927\tWhat is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has an approximate population of, 23916810) -> 23916810 (5240ms)\nWhat is the population of Venezuela?\tignorant Greek\t-9.057734332076608\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: ($x, be the population of, greece) -> (ignorant Greek, was the population of, Balkans and Greece) -> ignorant Greek (13377ms)\nWhat is the population of Venezuela?\tSuch a large number\t-9.755721402034272\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> (Such a large number, is twice the population of, France) -> Such a large number (13614ms)\nWhat is the population of Venezuela?\tAfrican Americans\t-9.776433098339671\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has the largest population of, African Americans) -> African Americans (12869ms)\nWhat is the population of Venezuela?\tOne such population\t-9.807817973150849\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in uganda ? -> $x: ($x, be the population in, uganda) -> (One such population, was the black population in, Uganda) -> One such population (12578ms)\nWhat is the population of Venezuela?\t14 million\t-10.054405039324926\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, 14 million) -> 14 million (12577ms)\nWhat is the population of Venezuela?\t10 million\t-10.078670587459012\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, 10 million) -> 10 million (12578ms)\nWhat is the population of Venezuela?\t15 million\t-10.084625165860997\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of just under, 15 million) -> 15 million (12578ms)\nWhat is the population of Venezuela?\t22 million\t-10.122382091612842\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a total population of, 22 million) -> 22 million (12869ms)\nWhat is the population of Venezuela?\t126 million\t-10.262404899645686\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> (126 million, was almost double the entire population of, France) -> 126 million (13614ms)\nWhat is the population of Venezuela?\tCentral Europe\t-10.356205975075738\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has the second largest population in, Central Europe) -> Central Europe (12869ms)\nWhat is the population of Venezuela?\t23 million\t-10.366877619591229\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, had a population of, 23 million) -> 23 million (12869ms)\nWhat is the population of Venezuela?\t20 people\t-10.384933346036135\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a low population density of, 20 people) -> 20 people (13092ms)\nWhat is the population of Venezuela?\t21 inhabitants\t-10.419809289090265\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a low population density of, 21 inhabitants) -> 21 inhabitants (13092ms)\nWhat is the population of Venezuela?\t21 people\t-10.462441377566593\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a low population density of, 21 people) -> 21 people (13092ms)\nWhat is the population of Venezuela?\tClos 17th June 2005\t-10.604407914660658\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> (Clos 17th June 2005, was the population of, France) -> Clos 17th June 2005 (13614ms)\nWhat is the population of Venezuela?\t379,066\t-10.73139822406841\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the Mississippi River, had a population of, 379,066) -> 379,066 (13214ms)\nWhat is the population of Venezuela?\twestern Europe\t-10.734744876662134\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest jewish population in, western Europe) -> western Europe (13615ms)\nWhat is the population of Venezuela?\t14.5 million\t-10.766273236837591\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (the CIA Fact book Cambodia, has a population of, 14.5 million) -> 14.5 million (12613ms)\nWhat is the population of Venezuela?\t28,781\t-10.768989938397096\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the Mississippi River, has a population of, 28,781) -> 28,781 (13214ms)\nWhat is the population of Venezuela?\t65 million\t-10.799002057641948\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of almost, 65 million) -> 65 million (13614ms)\nWhat is the population of Venezuela?\tninety thousand people\t-10.804082658001644\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, had a population of, ninety thousand people) -> ninety thousand people (13214ms)\nWhat is the population of Venezuela?\t8.9 Millions\t-10.811777714113362\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, counted a population of, 8.9 Millions) -> 8.9 Millions (12613ms)\nWhat is the population of Venezuela?\twild animals\t-10.822865058641856\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a very large population of, wild animals) -> wild animals (13214ms)\nWhat is the population of Venezuela?\tGreat Britain\t-10.828759475236582\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: ($x, be the population of, romanium) -> $x: ($x, population of, romanium) -> (Great Britain, has three times the population of, Romania) -> Great Britain (13214ms)\nWhat is the population of Venezuela?\tCrete\t-10.833168954274774\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in greece ? -> $x: ($x, be the population in, greece) -> (Crete, is the only viable population in, Greece) -> Crete (13614ms)\nWhat is the population of Venezuela?\tSoutheast Asia\t-10.839591404250733\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has the youngest population in, Southeast Asia) -> Southeast Asia (12613ms)\nWhat is the population of Venezuela?\t11,426,223 people\t-10.840891666138358\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, 11,426,223 people) -> 11,426,223 people (12612ms)\nWhat is the population of Venezuela?\t11 million\t-10.86305538387872\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of about, 11 million) -> 11 million (13378ms)\nWhat is the population of Venezuela?\tArab heritage\t-10.863698978033309\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a large Muslim population of, Arab heritage) -> Arab heritage (13758ms)\nWhat is the population of Venezuela?\ttwo million\t-10.880273220013091\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of about, two million) -> two million (12613ms)\nWhat is the population of Venezuela?\thundreds of thousands\t-10.901070085479772\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has created a population of, hundreds of thousands) -> hundreds of thousands (13214ms)\nWhat is the population of Venezuela?\t63 millions\t-10.916992728365123\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France France France, has a population of, 63 millions) -> 63 millions (13758ms)\nWhat is the population of Venezuela?\t14,805,000\t-10.919649825306813\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has an estimated population of, 14,805,000) -> 14,805,000 (12613ms)\nWhat is the population of Venezuela?\tEnglish speaking people\t-10.928709630630138\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest population of, English speaking people) -> English speaking people (13758ms)\nWhat is the population of Venezuela?\t14,805,358 people\t-10.932063661201404\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has an estimated population of, 14,805,358 people) -> 14,805,358 people (13378ms)\nWhat is the population of Venezuela?\t13.8 million\t-10.969592163458824\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has an estimated population of, 13.8 million) -> 13.8 million (13378ms)\nWhat is the population of Venezuela?\tWestern Europe\t-10.975119653680864\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest Muslim population in, Western Europe) -> Western Europe (13758ms)\nWhat is the population of Venezuela?\t9,568,000\t-10.97660119194493\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (1994 Cambodia, had a population of about, 9,568,000) -> 9,568,000 (13758ms)\nWhat is the population of Venezuela?\t17 million\t-10.991401494444274\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a population of about, 17 million) -> 17 million (13758ms)\nWhat is the population of Venezuela?\tnine million\t-11.009021956008649\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the Mississippi River, has a population of over, nine million) -> nine million (13786ms)\nWhat is the population of Venezuela?\t27,426\t-11.012055405211436\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi County, has a population of, 27,426) -> 27,426 (13786ms)\nWhat is the population of Venezuela?\tPelasgians\t-11.026344543465223\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a population of, Pelasgians) -> Pelasgians (13786ms)\nWhat is the population of Venezuela?\tSan Timoteo\t-11.028978734310574\tWhat is the population of Venezuela? -> what be the population [ of venezuelum ] ? -> what be of venezuelum population ? -> $x: ($x, be of, venezuelum population) -> $x: ($x, of, venezuelum population) -> (San Timoteo, Instance Of, population of the Zulia state, Venezuela) -> San Timoteo (11135ms)\nWhat is the population of Venezuela?\tsouth America\t-11.03740271590654\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, south America) -> south America (10049ms)\nWhat is the population of Venezuela?\t60 million\t-11.04569337760566\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 60 million) -> 60 million (13786ms)\nWhat is the population of Venezuela?\t8.5 million\t-11.070809727260244\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has an estimated population of, 8.5 million) -> 8.5 million (13787ms)\nWhat is the population of Venezuela?\t15 million people\t-11.072651090853789\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, 15 million people) -> 15 million people (13864ms)\nWhat is the population of Venezuela?\tmore than 14 million\t-11.075853421050578\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, more than 14 million) -> more than 14 million (13864ms)\nWhat is the population of Venezuela?\t40 million\t-11.084855209074671\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, then had a population of about, 40 million) -> 40 million (13864ms)\nWhat is the population of Venezuela?\t63 million\t-11.090330544648795\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (( France, has a population of, 63 million) -> 63 million (13864ms)\nWhat is the population of Venezuela?\tMuslims\t-11.09676325842404\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the highest population of, Muslims) -> Muslims (13864ms)\nWhat is the population of Venezuela?\t21,680,974\t-11.098384895008847\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, 21,680,974) -> 21,680,974 (13864ms)\nWhat is the population of Venezuela?\tEuropean France\t-11.100851251882592\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, exceeded the total Jewish population of, European France) -> European France (13895ms)\nWhat is the population of Venezuela?\t9.35 million\t-11.102550148050227\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of only, 9.35 million) -> 9.35 million (13895ms)\nWhat is the population of Venezuela?\t9,263,872\t-11.105375406021473\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, puts the population at, 9,263,872) -> 9,263,872 (13895ms)\nWhat is the population of Venezuela?\tthe USA\t-11.117297190722377\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has one-fifth the population of, the USA) -> the USA (13895ms)\nWhat is the population of Venezuela?\tmore than nine million people\t-11.123422520906624\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, more than nine million people) -> more than nine million people (13895ms)\nWhat is the population of Venezuela?\t2,967,297\t-11.141748219573698\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has a population of, 2,967,297) -> 2,967,297 (13895ms)\nWhat is the population of Venezuela?\tSouth American Countries\t-11.152983382421821\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (venezuela, is a country located in the geopolitical location, South American Countries) -> South American Countries (10049ms)\nWhat is the population of Venezuela?\tmore than 2,200,000\t-11.171842223432543\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, more than 2,200,000) -> more than 2,200,000 (13926ms)\nWhat is the population of Venezuela?\t2,951,996\t-11.173422597557712\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Nathan Culpepper Mississippi, has a population of, 2,951,996) -> 2,951,996 (13926ms)\nWhat is the population of Venezuela?\t21,698,181\t-11.199610828772068\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, had a population of, 21,698,181) -> 21,698,181 (13926ms)\nWhat is the population of Venezuela?\tJews and Muslims\t-11.203203795817846\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest population of, Jews and Muslims) -> Jews and Muslims (13926ms)\nWhat is the population of Venezuela?\tVietnam\t-11.204951987037818\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia and Laos, have tiny populations compared to, Vietnam) -> Vietnam (13926ms)\nWhat is the population of Venezuela?\t22 million people\t-11.217945712391488\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania Romania, has a population of, 22 million people) -> 22 million people (13926ms)\nWhat is the population of Venezuela?\t8,400\t-11.228619298574474\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has a population of approximately, 8,400) -> 8,400 (13957ms)\nWhat is the population of Venezuela?\t21.7 million\t-11.229771996473985\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, 21.7 million) -> 21.7 million (13957ms)\nWhat is the population of Venezuela?\t22,607,620\t-11.238282263128184\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (1996 Romania, had an estimated population of, 22,607,620) -> 22,607,620 (13957ms)\nWhat is the population of Venezuela?\t9 million\t-11.239600832098226\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of around, 9 million) -> 9 million (13957ms)\nWhat is the population of Venezuela?\t21,698,181 inhabitants\t-11.246696965280677\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, 21,698,181 inhabitants) -> 21,698,181 inhabitants (13957ms)\nWhat is the population of Venezuela?\t2.8 million\t-11.261334617033407\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has a population of, 2.8 million) -> 2.8 million (13957ms)\nWhat is the population of Venezuela?\tAsians today\t-11.29710256567582\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, also has a huge population of, Asians today) -> Asians today (13957ms)\nWhat is the population of Venezuela?\teight million\t-11.314801678215405\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, eight million) -> eight million (13993ms)\nWhat is the population of Venezuela?\t9 million people\t-11.316060666763818\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (? Sweden, has a total population of, 9 million people) -> 9 million people (13993ms)\nWhat is the population of Venezuela?\ta state\t-11.320343199872251\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, a state) -> a state (10049ms)\nWhat is the population of Venezuela?\tthe Yellow Fever zone\t-11.322989865371426\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the Yellow Fever zone) -> the Yellow Fever zone (10050ms)\nWhat is the population of Venezuela?\t8.7 million\t-11.323202337301373\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, 8.7 million) -> 8.7 million (13993ms)\nWhat is the population of Venezuela?\tthe U.S. State\t-11.325652684416198\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population less than, the U.S. State) -> the U.S. State (13993ms)\nWhat is the population of Venezuela?\tless than eight million\t-11.326209187151548\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a population of, less than eight million) -> less than eight million (13993ms)\nWhat is the population of Venezuela?\t45,000\t-11.333446499553858\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, had an undocumented population of about, 45,000) -> 45,000 (13993ms)\nWhat is the population of Venezuela?\t10M people\t-11.348904707396365\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, 10M people) -> 10M people (14021ms)\nWhat is the population of Venezuela?\tthe European Union\t-11.3526374294199\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest Muslim population in, the European Union) -> the European Union (14022ms)\nWhat is the population of Venezuela?\t95,000\t-11.357356618308826\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (east central Sweden, has a population of about, 95,000) -> 95,000 (14022ms)\nWhat is the population of Venezuela?\t9 million ?\t-11.360735950117306\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, 9 million ?) -> 9 million ? (14022ms)\nWhat is the population of Venezuela?\tNorth America\t-11.389449289385395\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, North America) -> North America (10049ms)\nWhat is the population of Venezuela?\ttop\t-11.392905622417492\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, top) -> top (10049ms)\nWhat is the population of Venezuela?\tless than 10 million\t-11.39714553338112\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, less than 10 million) -> less than 10 million (14021ms)\nWhat is the population of Venezuela?\t10 million people\t-11.398786450001248\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, 10 million people) -> 10 million people (14022ms)\nWhat is the population of Venezuela?\t21.7 million people\t-11.427500577268418\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, 21.7 million people) -> 21.7 million people (14053ms)\nWhat is the population of Venezuela?\t8 millions\t-11.433697050084273\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, 8 millions) -> 8 millions (14053ms)\nWhat is the population of Venezuela?\t11 million people\t-11.43845552529312\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of, 11 million people) -> 11 million people (14053ms)\nWhat is the population of Venezuela?\t9 Million\t-11.441197913960696\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of about, 9 Million) -> 9 Million (14053ms)\nWhat is the population of Venezuela?\t8 million people\t-11.444889938960191\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, 8 million people) -> 8 million people (14053ms)\nWhat is the population of Venezuela?\thomeless dogs\t-11.44708979413985\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a very large population of, homeless dogs) -> homeless dogs (14053ms)\nWhat is the population of Venezuela?\t9.2 million people\t-11.450039883376252\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, 9.2 million people) -> 9.2 million people (14190ms)\nWhat is the population of Venezuela?\tany country\t-11.453253269701657\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest Muslim population of, any country) -> any country (14190ms)\nWhat is the population of Venezuela?\tgreater risk\t-11.453618132921921\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, put an already vulnerable population at, greater risk) -> greater risk (14190ms)\nWhat is the population of Venezuela?\t23 million citizens\t-11.471867943546695\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a total population of, 23 million citizens) -> 23 million citizens (14190ms)\nWhat is the population of Venezuela?\t21 000 000 people\t-11.47268761452283\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of around, 21 000 000 people) -> 21 000 000 people (14190ms)\nWhat is the population of Venezuela?\tnon-believers\t-11.491567752713198\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Denmark and Sweden, have large populations of, non-believers) -> non-believers (14190ms)\nWhat is the population of Venezuela?\t10,964,020 people\t-11.501945651771436\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, reported a population of, 10,964,020 people) -> 10,964,020 people (14190ms)\nWhat is the population of Venezuela?\tPool A\t-11.55418711767862\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, are in, Pool A) -> Pool A (10596ms)\nWhat is the population of Venezuela?\t10,964,020\t-11.568468189328414\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a population of, 10,964,020) -> 10,964,020 (14371ms)\nWhat is the population of Venezuela?\t700,000\t-11.571638216701384\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a population of, 700,000) -> 700,000 (14371ms)\nWhat is the population of Venezuela?\tleast five million\t-11.57818926287387\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a Muslim population of at, least five million) -> least five million (14371ms)\nWhat is the population of Venezuela?\tEurope\t-11.598680353260916\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the first Jewish population in, Europe) -> Europe (14371ms)\nWhat is the population of Venezuela?\tten million people\t-11.612298208146388\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of over, ten million people) -> ten million people (14371ms)\nWhat is the population of Venezuela?\t54 million people\t-11.618572378272436\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (The People France, has a population of, 54 million people) -> 54 million people (14371ms)\nWhat is the population of Venezuela?\tthe UK\t-11.632804923348333\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a similar population to, the UK) -> the UK (14428ms)\nWhat is the population of Venezuela?\t11.082.752\t-11.633691112008265\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a total population of, 11.082.752) -> 11.082.752 (14428ms)\nWhat is the population of Venezuela?\tthe US Congress\t-11.66574555767305\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is being prepared in, the US Congress) -> the US Congress (10596ms)\nWhat is the population of Venezuela?\t11.3m\t-11.668899985677086\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of, 11.3m) -> 11.3m (14428ms)\nWhat is the population of Venezuela?\tmore than five million\t-11.67130878387108\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a Muslim population of, more than five million) -> more than five million (14428ms)\nWhat is the population of Venezuela?\t520,000 inhabitants\t-11.678263710924144\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of about, 520,000 inhabitants) -> 520,000 inhabitants (14428ms)\nWhat is the population of Venezuela?\t11,000,000\t-11.703383676938213\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of, 11,000,000) -> 11,000,000 (14456ms)\nWhat is the population of Venezuela?\tthe United States\t-11.704654491405359\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, would have the same population as, the United States) -> the United States (14456ms)\nWhat is the population of Venezuela?\t805,000 people\t-11.716348821321501\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has an estimated population of, 805,000 people) -> 805,000 people (14456ms)\nWhat is the population of Venezuela?\tUnderprivileged viewers\t-11.722367196875542\tWhat is the population of Venezuela? -> what be the population [ of venezuelum ] ? -> what be of venezuelum s population ? -> $x: ($x, be of, venezuelum s population) -> $x: ($x, of, venezuelum s population) -> (Underprivileged viewers, make 80 % of, Venezuela?s population) -> Underprivileged viewers (8798ms)\nWhat is the population of Venezuela?\t57 million people\t-11.730849529479533\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (The People France, has a population of, 57 million people) -> 57 million people (14456ms)\nWhat is the population of Venezuela?\t10.76 million\t-11.749883758054276\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a current population of, 10.76 million) -> 10.76 million (14456ms)\nWhat is the population of Venezuela?\tsixty million\t-11.754841821206936\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of over, sixty million) -> sixty million (14456ms)\nWhat is the population of Venezuela?\tfive million Muslims\t-11.771846067526276\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of over, five million Muslims) -> five million Muslims (15855ms)\nWhat is the population of Venezuela?\t10,623,835\t-11.775162780764038\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has an estimated population of, 10,623,835) -> 10,623,835 (15855ms)\nWhat is the population of Venezuela?\tNorthern South America\t-11.796502685564464\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Northern South America) -> Northern South America (10596ms)\nWhat is the population of Venezuela?\tthe ?Axis\t-11.80102781621656\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been placed on, the ?Axis) -> the ?Axis (10596ms)\nWhat is the population of Venezuela?\t500,000\t-11.802935627249905\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a Muslim population of around, 500,000) -> 500,000 (15855ms)\nWhat is the population of Venezuela?\tthe 60 meterband\t-11.81941057672891\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, are in, the 60 meterband) -> the 60 meterband (10596ms)\nWhat is the population of Venezuela?\tFrench law ?\t-11.829509129595394\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (French law ?, put the current Muslim population of, France) -> French law ? (15855ms)\nWhat is the population of Venezuela?\t600,000\t-11.832671839809409\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, indeed has a Jewish population of, 600,000) -> 600,000 (15855ms)\nWhat is the population of Venezuela?\tthe Perija mountains\t-11.843857742809764\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the Perija mountains) -> the Perija mountains (10596ms)\nWhat is the population of Venezuela?\t64.3 million\t-11.852581123283043\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 64.3 million) -> 64.3 million (16241ms)\nWhat is the population of Venezuela?\t10m\t-11.85870462377608\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a total population of about, 10m) -> 10m (16241ms)\nWhat is the population of Venezuela?\tTexas\t-11.866846000064072\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: ($x, be the population of, sweden) -> $x: ($x, population of, sweden) -> (Texas, has nearly twice the population density of, Sweden) -> Texas (16241ms)\nWhat is the population of Venezuela?\t762,000\t-11.86947253789662\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had an immigrant population of just over, 762,000) -> 762,000 (16241ms)\nWhat is the population of Venezuela?\t12 million people\t-11.87919869371327\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of about, 12 million people) -> 12 million people (16241ms)\nWhat is the population of Venezuela?\tthe Troncal del Caribe\t-11.880148727223117\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is easy on, the Troncal del Caribe) -> the Troncal del Caribe (11135ms)\nWhat is the population of Venezuela?\tthirty millions\t-11.889571596110706\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a population of, thirty millions) -> thirty millions (16241ms)\nWhat is the population of Venezuela?\ta mess\t-11.903795098379467\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, a mess) -> a mess (11135ms)\nWhat is the population of Venezuela?\t200,000\t-11.919780133003101\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of only, 200,000) -> 200,000 (16333ms)\nWhat is the population of Venezuela?\tBush?s agenda\t-11.931571727560655\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, might be next on, Bush?s agenda) -> Bush?s agenda (11135ms)\nWhat is the population of Venezuela?\tmore than 30 million\t-11.95173923160424\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, more than 30 million) -> more than 30 million (16333ms)\nWhat is the population of Venezuela?\tMaracaibo\t-11.953335280365428\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Maracaibo) -> Maracaibo (11135ms)\nWhat is the population of Venezuela?\t10,000 people\t-11.962806393742246\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (Fort Frances, has a population of approximately, 10,000 people) -> 10,000 people (16334ms)\nWhat is the population of Venezuela?\t400,000\t-11.969295203892049\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a Muslim population of, 400,000) -> 400,000 (16333ms)\nWhat is the population of Venezuela?\t5 million\t-11.972349602201405\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a Muslim population of, 5 million) -> 5 million (16365ms)\nWhat is the population of Venezuela?\t63.1 million\t-11.974300975063386\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a metropolitan population of around, 63.1 million) -> 63.1 million (16365ms)\nWhat is the population of Venezuela?\t58.7 million\t-11.979905598812094\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 58.7 million) -> 58.7 million (16365ms)\nWhat is the population of Venezuela?\tCountries\t-11.988404590188566\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (venezuela, is a country located in the geopolitical location, Countries) -> Countries (11135ms)\nWhat is the population of Venezuela?\tMoscow\t-11.999229234471223\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, would be signed in, Moscow) -> Moscow (11164ms)\nWhat is the population of Venezuela?\t60 million people\t-12.002595308814541\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has an estimated population of, 60 million people) -> 60 million people (16365ms)\nWhat is the population of Venezuela?\t2.2 million people\t-12.00347949521564\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of about, 2.2 million people) -> 2.2 million people (16365ms)\nWhat is the population of Venezuela?\tCaracas\t-12.003669969528216\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Caracas) -> Caracas (11164ms)\nWhat is the population of Venezuela?\t65 million people\t-12.012163998132992\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 65 million people) -> 65 million people (16365ms)\nWhat is the population of Venezuela?\t12.687 million people\t-12.019330493117302\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of over, 12.687 million people) -> 12.687 million people (16365ms)\nWhat is the population of Venezuela?\t41,500,000 people\t-12.023231259488774\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 41,500,000 people) -> 41,500,000 people (16397ms)\nWhat is the population of Venezuela?\t8 million Muslims\t-12.044879316591924\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 8 million Muslims) -> 8 million Muslims (16397ms)\nWhat is the population of Venezuela?\ta par\t-12.04596869643729\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, a par) -> a par (11164ms)\nWhat is the population of Venezuela?\t100,000\t-12.047624826868455\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (Fort de France, has a population of over, 100,000) -> 100,000 (16397ms)\nWhat is the population of Venezuela?\ta plan\t-12.072592472337945\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been working on, a plan) -> a plan (11166ms)\nWhat is the population of Venezuela?\toil\t-12.079824064451294\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, has been awash in, oil) -> oil (11164ms)\nWhat is the population of Venezuela?\t64.5 million\t-12.082015619758636\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has an estimated population of, 64.5 million) -> 64.5 million (16397ms)\nWhat is the population of Venezuela?\ta `` social bomb\t-12.096111292207812\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is sitting on, a `` social bomb) -> a `` social bomb (11227ms)\nWhat is the population of Venezuela?\tFacebook\t-12.10983827604673\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are on, Facebook) -> Facebook (11227ms)\nWhat is the population of Venezuela?\t59 million people\t-12.11488840471577\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of about, 59 million people) -> 59 million people (16397ms)\nWhat is the population of Venezuela?\telectronic voting machines\t-12.12404805057599\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was recorded on, electronic voting machines) -> electronic voting machines (11226ms)\nWhat is the population of Venezuela?\tEngland\t-12.126764723207119\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a much larger population than, England) -> England (16396ms)\nWhat is the population of Venezuela?\t300,000\t-12.130678807070305\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (Pre-war France, had a Jewish population of over, 300,000) -> 300,000 (16428ms)\nWhat is the population of Venezuela?\t6964549\t-12.154785578175677\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has an approximate population of, 6964549) -> 6964549 (16428ms)\nWhat is the population of Venezuela?\t8875053\t-12.170545917511781\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has an approximate population of, 8875053) -> 8875053 (16428ms)\nWhat is the population of Venezuela?\ttemporary bilateral agreements\t-12.172614366936585\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is working on, temporary bilateral agreements) -> temporary bilateral agreements (11226ms)\nWhat is the population of Venezuela?\tModern scholars\t-12.180507735285817\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (Modern scholars, estimate the population of, France) -> Modern scholars (16428ms)\nWhat is the population of Venezuela?\tColombia\t-12.186735934513964\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is his position on, Colombia) -> Colombia (11227ms)\nWhat is the population of Venezuela?\tWWII\t-12.204146562933673\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (northern Greece, had a thriving Jewish population prior to, WWII) -> WWII (16428ms)\nWhat is the population of Venezuela?\tsingle digits\t-12.213732756150007\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, single digits) -> single digits (11340ms)\nWhat is the population of Venezuela?\tgood shape\t-12.226111523872245\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, good shape) -> good shape (11340ms)\nWhat is the population of Venezuela?\tfirst place\t-12.236721918792288\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, first place) -> first place (11340ms)\nWhat is the population of Venezuela?\tSpanish\t-12.248969019413956\tWhat is the population of Venezuela? -> what be the population [ of venezuelum ] ? -> what population be of venezuelum ? -> $x: ($x, instance of, population) ($x, be of, venezuelum) -> (Spanish, Instance Of, population) (SPanish, is the language of the country, venezuela) -> Spanish (16428ms)\nWhat is the population of Venezuela?\tMr. Bush?s list\t-12.264108869210254\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is very high on, Mr. Bush?s list) -> Mr. Bush?s list (11340ms)\nWhat is the population of Venezuela?\ttrade and investment deals\t-12.269414040319129\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is concentrating on, trade and investment deals) -> trade and investment deals (11340ms)\nWhat is the population of Venezuela?\tdesperate need\t-12.270321423652318\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, desperate need) -> desperate need (11340ms)\nWhat is the population of Venezuela?\tfourth place\t-12.322363890070172\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, fourth place) -> fourth place (11372ms)\nWhat is the population of Venezuela?\tmajor sea and air routes\t-12.326659203401118\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is ideally located on, major sea and air routes) -> major sea and air routes (11372ms)\nWhat is the population of Venezuela?\tSTATES\t-12.336513427456902\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (venezuela, is a country located in the geopolitical location, STATES) -> STATES (11372ms)\nWhat is the population of Venezuela?\tFrance\t-12.337763463788287\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (France, exceeded the total Jewish population of, European France) -> France (16459ms)\nWhat is the population of Venezuela?\ta better situation\t-12.360859392834369\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, a better situation) -> a better situation (11372ms)\nWhat is the population of Venezuela?\t26 February\t-12.375448817651716\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was operated on, 26 February) -> 26 February (11373ms)\nWhat is the population of Venezuela?\t1.36 trillion barrels\t-12.386023026952575\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is sitting on, 1.36 trillion barrels) -> 1.36 trillion barrels (11403ms)\nWhat is the population of Venezuela?\tthe Middle East\t-12.38618170531813\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the Middle East) -> the Middle East (11403ms)\nWhat is the population of Venezuela?\tsimilar programmes\t-12.387050490833063\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is embarking on, similar programmes) -> similar programmes (11404ms)\nWhat is the population of Venezuela?\tthe 2010 Great Place\t-12.42208190519514\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, has been included in, the 2010 Great Place) -> the 2010 Great Place (11403ms)\nWhat is the population of Venezuela?\ta strategic location\t-12.432871639055207\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, a strategic location) -> a strategic location (11403ms)\nWhat is the population of Venezuela?\tSunday\t-12.441037423793516\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, will be on, Sunday) -> Sunday (11404ms)\nWhat is the population of Venezuela?\thigh alert\t-12.447588389253449\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, high alert) -> high alert (11473ms)\nWhat is the population of Venezuela?\tCanadian exports\t-12.456630248155301\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is particularly reliant on, Canadian exports) -> Canadian exports (11473ms)\nWhat is the population of Venezuela?\tsecond place\t-12.46560393162814\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, second place) -> second place (11473ms)\nWhat is the population of Venezuela?\tundemanding approval\t-12.470899579365515\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela ?, are looked on with, undemanding approval) -> undemanding approval (11473ms)\nWhat is the population of Venezuela?\tnews bulletins\t-12.511786922583784\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been on, news bulletins) -> news bulletins (11473ms)\nWhat is the population of Venezuela?\tmore than 20 tax treaties\t-12.5178472731408\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, more than 20 tax treaties) -> more than 20 tax treaties (11473ms)\nWhat is the population of Venezuela?\ta critical situation\t-12.54952115153696\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, a critical situation) -> a critical situation (11543ms)\nWhat is the population of Venezuela?\teach other\t-12.551347378087064\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are rubbing off on, each other) -> each other (11543ms)\nWhat is the population of Venezuela?\tFacebook 60 percent\t-12.55153193619349\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are on, Facebook 60 percent) -> Facebook 60 percent (11543ms)\nWhat is the population of Venezuela?\tbasic knowledge\t-12.553279695033313\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was focused on, basic knowledge) -> basic knowledge (11543ms)\nWhat is the population of Venezuela?\ta desalination project\t-12.568496158589191\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is currently working on, a desalination project) -> a desalination project (11543ms)\nWhat is the population of Venezuela?\tMiraflores\t-12.597504314807114\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, Miraflores) -> Miraflores (11543ms)\nWhat is the population of Venezuela?\ta long decline\t-12.600804647930396\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, a long decline) -> a long decline (11573ms)\nWhat is the population of Venezuela?\tMI deaths\t-12.611033723774\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in the 1900s ? -> $x: ($x, be the population in, the 1900s) -> $x: ($x, population in, 1900) -> (MI deaths, was the English population in, 1900) -> MI deaths (16460ms)\nWhat is the population of Venezuela?\ta similar suitation\t-12.61760440036041\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, a similar suitation) -> a similar suitation (11573ms)\nWhat is the population of Venezuela?\tslaves\t-12.619910759833626\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, increased the population of, slaves) -> slaves (16459ms)\nWhat is the population of Venezuela?\tan independent path\t-12.63179723661205\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is increasingly going on, an independent path) -> an independent path (11573ms)\nWhat is the population of Venezuela?\tBritain\t-12.63856966807351\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Britain) -> Britain (11573ms)\nWhat is the population of Venezuela?\tSouth America\t-12.652659076573588\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is a country in, South America) -> South America (11573ms)\nWhat is the population of Venezuela?\ta similar principle\t-12.669543623585925\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is based on, a similar principle) -> a similar principle (11573ms)\nWhat is the population of Venezuela?\tBolivars\t-12.680946574221839\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Bolivars) -> Bolivars (11603ms)\nWhat is the population of Venezuela?\tthe Llanos\t-12.756368517889555\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is tropical on, the Llanos) -> the Llanos (11602ms)\nWhat is the population of Venezuela?\t59551227\t-12.76260752244519\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has an approximate population of, 59551227) -> 59551227 (16459ms)\nWhat is the population of Venezuela?\tLatin America\t-12.910354791323371\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is the only country in, Latin America) -> Latin America (11603ms)\nWhat is the population of Venezuela?\tzero\t-12.94055830856196\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the Mississippi River, has a total population of, zero) -> zero (16491ms)\nWhat is the population of Venezuela?\tthe edge\t-12.982573739266572\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the edge) -> the edge (11632ms)\nWhat is the population of Venezuela?\tJanuary 20 , 1836\t-13.08440682808326\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was signed on, January 20 , 1836) -> January 20 , 1836 (11632ms)\nWhat is the population of Venezuela?\tvampires\t-13.099395667952146\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a very large population of, vampires) -> vampires (16491ms)\nWhat is the population of Venezuela?\tthe country\t-13.12859357050755\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has the highest black population in, the country) -> the country (16491ms)\nWhat is the population of Venezuela?\tthe EU\t-13.140400593106142\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, found on, the EU) -> the EU (11632ms)\nWhat is the population of Venezuela?\ta state of political turmoil\t-13.155813295453818\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, a state of political turmoil) -> a state of political turmoil (11658ms)\nWhat is the population of Venezuela?\tthe government power\t-13.186582698596874\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, are in, the government power) -> the government power (11659ms)\nWhat is the population of Venezuela?\tbass\t-13.188461346672444\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the mighty Mississippi, holds a good population of, bass) -> bass (16491ms)\nWhat is the population of Venezuela?\tthe planning committee\t-13.22283481536249\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the planning committee) -> the planning committee (11658ms)\nWhat is the population of Venezuela?\tSalonika\t-13.26220239254417\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in greece ? -> $x: ($x, be the population in, greece) -> $x: ($x, population in, greece) -> (Salonika, had the largest Jewish population in, Greece) -> Salonika (16491ms)\nWhat is the population of Venezuela?\tthe same path\t-13.2687485198175\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the same path) -> the same path (11658ms)\nWhat is the population of Venezuela?\tthe southern state\t-13.292686436988133\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the southern state) -> the southern state (11659ms)\nWhat is the population of Venezuela?\tthe up\t-13.302611150198913\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are on, the up) -> the up (11690ms)\nWhat is the population of Venezuela?\t11330700\t-13.330436628748924\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, is Paris Population of, 11330700) -> 11330700 (16685ms)\nWhat is the population of Venezuela?\tthe same level\t-13.332410731230876\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are on, the same level) -> the same level (11690ms)\nWhat is the population of Venezuela?\tthe map\t-13.333493527728397\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the map) -> the map (11690ms)\nWhat is the population of Venezuela?\tthe number\t-13.333715024428095\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: ($x, be the population of, haitus) -> $x: ($x, population of, haitus) -> (the number, exceeds the population of, Haiti) -> the number (16685ms)\nWhat is the population of Venezuela?\tthe United Nations\t-13.34208466326675\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, passed in, the United Nations) -> the United Nations (11690ms)\nWhat is the population of Venezuela?\tthe energy sector\t-13.35988544670819\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the energy sector) -> the energy sector (11690ms)\nWhat is the population of Venezuela?\tapprox\t-13.37291483682888\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Contents Sweden, has a population of, approx) -> approx (16685ms)\nWhat is the population of Venezuela?\tthe list\t-13.411821197091033\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is placed on, the list) -> the list (11720ms)\nWhat is the population of Venezuela?\tnorthern South America\t-13.434751993377224\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is a country in, northern South America) -> northern South America (11720ms)\nWhat is the population of Venezuela?\tan axis\t-13.44273952754889\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is located on, an axis) -> an axis (11720ms)\nWhat is the population of Venezuela?\tthe side\t-13.453832277389944\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (?Venezuela, is on, the side) -> the side (11720ms)\nWhat is the population of Venezuela?\ttens\t-13.455663573752094\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a population of, tens) -> tens (16685ms)\nWhat is the population of Venezuela?\tthe midst\t-13.470167400477143\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the midst) -> the midst (11720ms)\nWhat is the population of Venezuela?\tthe thrall\t-13.47852524470716\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the thrall) -> the thrall (11747ms)\nWhat is the population of Venezuela?\tthe wings\t-13.484779170344389\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the wings) -> the wings (11747ms)\nWhat is the population of Venezuela?\tthe process\t-13.49536408440514\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the process) -> the process (11747ms)\nWhat is the population of Venezuela?\tthe receiving end\t-13.49565969256209\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the receiving end) -> the receiving end (11747ms)\nWhat is the population of Venezuela?\tthe provision\t-13.49981054997221\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the provision) -> the provision (11747ms)\nWhat is the population of Venezuela?\tthe semifinals\t-13.516610302402224\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the semifinals) -> the semifinals (11944ms)\nWhat is the population of Venezuela?\tthe better side\t-13.521693666200662\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the better side) -> the better side (11944ms)\nWhat is the population of Venezuela?\tthe brink\t-13.525253714423652\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is possibly on, the brink) -> the brink (11944ms)\nWhat is the population of Venezuela?\tthe hit list\t-13.526606585516534\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the hit list) -> the hit list (11944ms)\nWhat is the population of Venezuela?\tthe wrong track\t-13.530471067488962\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the wrong track) -> the wrong track (11944ms)\nWhat is the population of Venezuela?\tpolitical and social hatred\t-13.540657623842051\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is boiling in, political and social hatred) -> political and social hatred (11971ms)\nWhat is the population of Venezuela?\t2004\t-13.542902872078422\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, 2004) -> 2004 (11971ms)\nWhat is the population of Venezuela?\tthe northern coast\t-13.550872186352914\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the northern coast) -> the northern coast (11971ms)\nWhat is the population of Venezuela?\tthe grip\t-13.555942397554261\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the grip) -> the grip (11971ms)\nWhat is the population of Venezuela?\timmigrants\t-13.562511102600311\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (New France, had a relatively small population of, immigrants) -> immigrants (16685ms)\nWhat is the population of Venezuela?\tthe highest order\t-13.578441337696374\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is based on, the highest order) -> the highest order (11971ms)\nWhat is the population of Venezuela?\tthe same trajectory\t-13.590661101425209\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the same trajectory) -> the same trajectory (11998ms)\nWhat is the population of Venezuela?\tOsaka\t-13.602479443377783\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in japan ? -> $x: ($x, be the population in, japan) -> $x: ($x, population in, japan) -> (Osaka, has the third largest population in, Japan) -> Osaka (17989ms)\nWhat is the population of Venezuela?\tthe middle\t-13.611219459472341\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the middle) -> the middle (11997ms)\nWhat is the population of Venezuela?\tthe region\t-13.621437602599382\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, the region) -> the region (11997ms)\nWhat is the population of Venezuela?\tconformity\t-13.62204930902871\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, conformity) -> conformity (11997ms)\nWhat is the population of Venezuela?\tsolidarity\t-13.628504872258198\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, solidarity) -> solidarity (11997ms)\nWhat is the population of Venezuela?\tthe crapper\t-13.63591242678956\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, the crapper) -> the crapper (12024ms)\nWhat is the population of Venezuela?\tthe rise\t-13.65137117289822\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the rise) -> the rise (12024ms)\nWhat is the population of Venezuela?\tthe throes\t-13.656313545653513\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, the throes) -> the throes (12024ms)\nWhat is the population of Venezuela?\tthe Caribbean port city\t-13.66633041565502\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, established in, the Caribbean port city) -> the Caribbean port city (12051ms)\nWhat is the population of Venezuela?\tthe verge\t-13.680549693050471\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the verge) -> the verge (12051ms)\nWhat is the population of Venezuela?\tNagasaki\t-13.695328037068265\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in japan ? -> $x: ($x, be the population in, japan) -> $x: ($x, population in, japan) -> (Nagasaki, had the largest Christian population in, Japan) -> Nagasaki (17989ms)\nWhat is the population of Venezuela?\tthe increase\t-13.706712802943557\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the increase) -> the increase (12051ms)\nWhat is the population of Venezuela?\tlight\t-13.709157503004628\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, light) -> light (12079ms)\nWhat is the population of Venezuela?\tthe northern tropical Caribbean coast\t-13.71872936741122\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is located on, the northern tropical Caribbean coast) -> the northern tropical Caribbean coast (12078ms)\nWhat is the population of Venezuela?\tthe path\t-13.725216412750804\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the path) -> the path (12079ms)\nWhat is the population of Venezuela?\tthe agenda\t-13.72700985298182\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, perhaps will be on, the agenda) -> the agenda (12078ms)\nWhat is the population of Venezuela?\tRecently\t-13.727492041246558\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, has been in the news, Recently) -> Recently (12079ms)\nWhat is the population of Venezuela?\tthe interests\t-13.732155967394998\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is being run in, the interests) -> the interests (12078ms)\nWhat is the population of Venezuela?\tslavery\t-13.737516404883038\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, were in, slavery) -> slavery (12105ms)\nWhat is the population of Venezuela?\tthe field\t-13.746303160621725\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, will be on, the field) -> the field (12105ms)\nWhat is the population of Venezuela?\tOsaka city\t-13.756865220751173\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in japan ? -> $x: ($x, be the population in, japan) -> $x: ($x, population in, japan) -> (Osaka city, has the largest homeless population in, Japan) -> Osaka city (17991ms)\nWhat is the population of Venezuela?\tthe family\t-13.757797689240569\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is tough on, the family) -> the family (12105ms)\nWhat is the population of Venezuela?\tpolitical turmoil\t-13.787100044976238\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, political turmoil) -> political turmoil (12105ms)\nWhat is the population of Venezuela?\tlive television\t-13.793766400268956\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, joked on, live television) -> live television (12105ms)\nWhat is the population of Venezuela?\tthe list of countries\t-13.793822032475429\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the list of countries) -> the list of countries (12105ms)\nWhat is the population of Venezuela?\tfifth place\t-13.798866570138927\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, fifth place) -> fifth place (12132ms)\nWhat is the population of Venezuela?\tthe Himalaya glacier trip\t-13.809315327587283\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, went on, the Himalaya glacier trip) -> the Himalaya glacier trip (12132ms)\nWhat is the population of Venezuela?\tsouls\t-13.836407942638704\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (souls, constituted the population of, France) -> souls (16685ms)\nWhat is the population of Venezuela?\tthe course\t-13.845268734272363\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was set on, the course) -> the course (12132ms)\nWhat is the population of Venezuela?\tthe minds\t-13.851522659909591\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was suddenly on, the minds) -> the minds (12132ms)\nWhat is the population of Venezuela?\trecessions\t-13.851577926288755\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, are in, recessions) -> recessions (12132ms)\nWhat is the population of Venezuela?\tthe barrios\t-13.854175271815176\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is going on, the barrios) -> the barrios (12158ms)\nWhat is the population of Venezuela?\tthe U.S. market\t-13.855777242066566\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, depends on, the U.S. market) -> the U.S. market (12159ms)\nWhat is the population of Venezuela?\tthe part\t-13.85594364461737\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been on, the part) -> the part (12158ms)\nWhat is the population of Venezuela?\t1813\t-13.85659524747454\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (1813, make the population of, ancient France 28,786,911) -> 1813 (16715ms)\nWhat is the population of Venezuela?\tneed\t-13.87267344704987\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, need) -> need (12158ms)\nWhat is the population of Venezuela?\tJuly\t-13.87989761572882\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was formally accepted in, July) -> July (12158ms)\nWhat is the population of Venezuela?\tpreferential terms\t-13.8978265402959\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been providing oil on, preferential terms) -> preferential terms (12215ms)\nWhat is the population of Venezuela?\tfact\t-13.898932372582507\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, fact) -> fact (12215ms)\nWhat is the population of Venezuela?\tthe British Parliament\t-13.905299746554656\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, calls on, the British Parliament) -> the British Parliament (12215ms)\nWhat is the population of Venezuela?\tCuba\t-13.90867368308307\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remains in, Cuba) -> Cuba (12215ms)\nWhat is the population of Venezuela?\ta change\t-13.985641921783229\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a change) -> a change (12215ms)\nWhat is the population of Venezuela?\tthe north of South America\t-14.019410243051604\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is located in, the north of South America) -> the north of South America (12269ms)\nWhat is the population of Venezuela?\ta very early morning\t-14.050211824393056\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a very early morning) -> a very early morning (12268ms)\nWhat is the population of Venezuela?\tthe northern coast of South America\t-14.067000941794955\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is located on, the northern coast of South America) -> the northern coast of South America (12403ms)\nWhat is the population of Venezuela?\ta viral encephalitis\t-14.074225135471274\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in japan ? -> $x: ($x, be the population in, japan) -> $x: ($x, population in, japan) -> (a viral encephalitis, affects populations in, Japan) -> a viral encephalitis (17989ms)\nWhat is the population of Venezuela?\t30 April\t-14.106456640842396\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, announced on, 30 April) -> 30 April (12404ms)\nWhat is the population of Venezuela?\tair\t-14.113352700461213\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, came on, air) -> air (12403ms)\nWhat is the population of Venezuela?\tItaly and Paris\t-14.13028158914574\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, lived in, Italy and Paris) -> Italy and Paris (16716ms)\nWhat is the population of Venezuela?\tHavana\t-14.160966585113584\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, arrived in, Havana) -> Havana (16716ms)\nWhat is the population of Venezuela?\ta power hungry tyrant\t-14.16869433050655\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (venezuela, take on, a power hungry tyrant) -> a power hungry tyrant (16748ms)\nWhat is the population of Venezuela?\tan amazing dance exhibition\t-14.169513948780391\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, put on, an amazing dance exhibition) -> an amazing dance exhibition (16748ms)\nWhat is the population of Venezuela?\ttrade\t-14.174290323118797\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is based largely on, trade) -> trade (16748ms)\nWhat is the population of Venezuela?\tHaiti\t-14.181367703977536\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, happened in, Haiti) -> Haiti (16748ms)\nWhat is the population of Venezuela?\tan international pageant\t-14.190204620868844\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, an international pageant) -> an international pageant (16748ms)\nWhat is the population of Venezuela?\tBaghdad\t-14.201704202011936\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, gathered in, Baghdad) -> Baghdad (16748ms)\nWhat is the population of Venezuela?\tthe conflict\t-14.20521030163154\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in uganda ? -> $x: ($x, be the population in, uganda) -> $x: ($x, population in, uganda) -> (the conflict, badly affected the population in, northern Uganda) -> the conflict (16748ms)\nWhat is the population of Venezuela?\tfour trillion barrels\t-14.208204456147266\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, sits on, four trillion barrels) -> four trillion barrels (16779ms)\nWhat is the population of Venezuela?\taid missions\t-14.210673181408797\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum 2, be on, $x) -> $x: (venezuelum 2, on, $x) -> (Venezuela 2 helicopters, crashed on, aid missions) -> aid missions (16779ms)\nWhat is the population of Venezuela?\tIsrael\t-14.22027237994644\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, called on, Israel) -> Israel (16779ms)\nWhat is the population of Venezuela?\tBarcelona\t-14.221976184621376\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, works in, Barcelona) -> Barcelona (16779ms)\nWhat is the population of Venezuela?\tQuito\t-14.232651147668676\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, held in, Quito) -> Quito (16779ms)\nWhat is the population of Venezuela?\tPlague\t-14.236089736648212\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: ($x, be the population of, greece) -> $x: ($x, population of, greece) -> (Plague, wipes out over half of the population with, Greece) -> Plague (16779ms)\nWhat is the population of Venezuela?\toil exports\t-14.288903891211291\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, depends on, oil exports) -> oil exports (16836ms)\nWhat is the population of Venezuela?\tforeigners\t-14.289145311684678\tWhat is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, also had a large population of, foreigners) -> foreigners (16836ms)\nWhat is the population of Venezuela?\tInterpol\t-14.296313411784348\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, called on, Interpol) -> Interpol (16836ms)\nWhat is the population of Venezuela?\tsecond position\t-14.3578011018307\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remained in, second position) -> second position (16836ms)\nWhat is the population of Venezuela?\tVenezuelan television\t-14.36217868180409\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, went on, Venezuelan television) -> Venezuelan television (16836ms)\nWhat is the population of Venezuela?\ta news conference\t-14.374935664508689\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, highlighted in, a news conference) -> a news conference (16836ms)\nWhat is the population of Venezuela?\tfive areas\t-14.383050624585564\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, focuses on, five areas) -> five areas (16908ms)\nWhat is the population of Venezuela?\tthe side of the people\t-14.39899857753721\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the side of the people) -> the side of the people (16908ms)\nWhat is the population of Venezuela?\tNovember 10\t-14.401903909750567\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, held on, November 10) -> November 10 (16908ms)\nWhat is the population of Venezuela?\ttenth spot\t-14.416158142135204\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, falls in, tenth spot) -> tenth spot (16908ms)\nWhat is the population of Venezuela?\tethnographic fieldwork\t-14.422412120474727\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, draws on, ethnographic fieldwork) -> ethnographic fieldwork (16908ms)\nWhat is the population of Venezuela?\tcontact\t-14.431592762006677\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, contact) -> contact (16908ms)\nWhat is the population of Venezuela?\tlife\t-14.436706829826742\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> what be the popularity of venezuelum ? -> $x: (venezuelum, popularity, $x) -> $x: (venezuelum, quality, $x) -> (Venezuela, directly affects the quality of, life) -> life (8646ms)\nWhat is the population of Venezuela?\tdanger\t-14.44473049975333\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, danger) -> danger (16908ms)\nWhat is the population of Venezuela?\tless than $ 2\t-14.476368790033822\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, lived on, less than $ 2) -> less than $ 2 (16989ms)\nWhat is the population of Venezuela?\tshambles\t-14.47927483926388\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, shambles) -> shambles (16988ms)\nWhat is the population of Venezuela?\tline\t-14.492602414216764\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, were in, line) -> line (16988ms)\nWhat is the population of Venezuela?\ttrack\t-14.499675958127831\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, track) -> track (16988ms)\nWhat is the population of Venezuela?\tPrieto\t-14.506426406250583\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> how many student be attend venezuelum ? -> $x: ($x, instance of, student) ($x, be attend, venezuelum) -> (Prieto, Instance Of, student of mine) (Prieto, is currently attending, the First Cuba-Venezuela Meeting) -> Prieto (17989ms)\nWhat is the population of Venezuela?\toil sales\t-14.507365346333328\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, depends on, oil sales) -> oil sales (16988ms)\nWhat is the population of Venezuela?\tFebruary\t-14.510962246693005\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, warned in, February) -> February (16988ms)\nWhat is the population of Venezuela?\tdiscussions\t-14.51834387157972\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, discussions) -> discussions (16988ms)\nWhat is the population of Venezuela?\tthe brink of civil war\t-14.534999459977119\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the brink of civil war) -> the brink of civil war (16988ms)\nWhat is the population of Venezuela?\tSeptember\t-14.564898354992025\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, starts in, September) -> September (17018ms)\nWhat is the population of Venezuela?\tcontrol\t-14.580073406546262\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, control) -> control (17018ms)\nWhat is the population of Venezuela?\tcarnival holidays\t-14.580683488958222\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, 's on, carnival holidays) -> carnival holidays (17018ms)\nWhat is the population of Venezuela?\ttrouble\t-14.587638937767718\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, trouble) -> trouble (17018ms)\nWhat is the population of Venezuela?\tboard\t-14.589346715022783\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, board) -> board (17018ms)\nWhat is the population of Venezuela?\tturmoil\t-14.600474525410215\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, turmoil) -> turmoil (17018ms)\nWhat is the population of Venezuela?\tfire\t-14.601294143684054\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, fire) -> fire (17018ms)\nWhat is the population of Venezuela?\t1991 and 1996\t-14.621101487891874\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, issued in, 1991 and 1996) -> 1991 and 1996 (17018ms)\nWhat is the population of Venezuela?\tPage\t-14.648792880916229\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, began on, Page) -> Page (17048ms)\nWhat is the population of Venezuela?\tpoint\t-14.654563067512857\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is a case in, point) -> point (17048ms)\nWhat is the population of Venezuela?\tbehalf\t-14.659361317441899\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is acting on, behalf) -> behalf (17048ms)\nWhat is the population of Venezuela?\tview\t-14.66053542309195\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, view) -> view (17048ms)\nWhat is the population of Venezuela?\taccount\t-14.663252550422495\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, account) -> account (17048ms)\nWhat is the population of Venezuela?\tLos Angeles\t-14.676666363497107\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, raised in, Los Angeles) -> Los Angeles (17048ms)\nWhat is the population of Venezuela?\tthe Report\t-14.68426516929792\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, contained in, the Report) -> the Report (17076ms)\nWhat is the population of Venezuela?\tdozens\t-14.690498824597086\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is being tried on, dozens) -> dozens (17076ms)\nWhat is the population of Venezuela?\tcharges\t-14.692411320225531\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was indicted Thursday on, charges) -> charges (17076ms)\nWhat is the population of Venezuela?\trace\t-14.732940351574968\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is based on, race) -> race (17076ms)\nWhat is the population of Venezuela?\talert\t-14.73388910610332\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are being put on, alert) -> alert (17076ms)\nWhat is the population of Venezuela?\thold\t-14.75954581452063\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been put on, hold) -> hold (17076ms)\nWhat is the population of Venezuela?\tthe Seminar\t-14.767379797749193\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, participated in, the Seminar) -> the Seminar (17076ms)\nWhat is the population of Venezuela?\tthe state sponsor of terrorism list\t-14.785612371413613\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, to be placed on, the state sponsor of terrorism list) -> the state sponsor of terrorism list (17076ms)\nWhat is the population of Venezuela?\tPeter\t-14.786632009748024\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, Get on, Peter) -> Peter (17105ms)\nWhat is the population of Venezuela?\timports\t-14.788788902800137\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is highly reliant on, imports) -> imports (17104ms)\nWhat is the population of Venezuela?\ta Moratorium on the Use of the Death\t-14.821881069305958\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, voted on, a Moratorium on the Use of the Death) -> a Moratorium on the Use of the Death (17105ms)\nWhat is the population of Venezuela?\tJanuary 23 , 1961\t-14.8315405391699\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, decreed on, January 23 , 1961) -> January 23 , 1961 (17105ms)\nWhat is the population of Venezuela?\tAsuncion\t-14.849802286553308\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, met in, Asuncion) -> Asuncion (17105ms)\nWhat is the population of Venezuela?\tDecember 1999\t-14.857246881845022\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, suffered in, December 1999) -> December 1999 (17105ms)\nWhat is the population of Venezuela?\tApril 2002\t-14.860093426710872\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, failed in, April 2002) -> April 2002 (17104ms)\nWhat is the population of Venezuela?\tSunday 24-hour power cutoffs\t-14.981918745468489\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, announced on, Sunday 24-hour power cutoffs) -> Sunday 24-hour power cutoffs (17204ms)\nWhat is the population of Venezuela?\tJune\t-14.984843869260288\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, June) -> June (17204ms)\nWhat is the population of Venezuela?\tthe global oil market\t-14.986011410482277\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is an important player in, the global oil market) -> the global oil market (17204ms)\nWhat is the population of Venezuela?\tSeptember 26th\t-14.997442059704404\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, signed on, September 26th) -> September 26th (17204ms)\nWhat is the population of Venezuela?\tFebruary 27 , 1989\t-15.068570119524146\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, exploded on, February 27 , 1989) -> February 27 , 1989 (17204ms)\nWhat is the population of Venezuela?\tJanuary 1922\t-15.071222731429732\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, signed on, January 1922) -> January 1922 (17204ms)\nWhat is the population of Venezuela?\tthe news\t-15.136913436659238\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, has been in, the news) -> the news (17293ms)\nWhat is the population of Venezuela?\tthe road\t-15.199896462910424\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, continue on, the road) -> the road (17328ms)\nWhat is the population of Venezuela?\tthe tropics\t-15.214881897995038\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is entirely situated in, the tropics) -> the tropics (17328ms)\nWhat is the population of Venezuela?\tthe world community\t-15.34481709125157\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, called on, the world community) -> the world community (17355ms)\nWhat is the population of Venezuela?\truins\t-15.349176127118625\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, ruins) -> ruins (17462ms)\nWhat is the population of Venezuela?\tthe lush valleys\t-15.352015851539317\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, flourished in, the lush valleys) -> the lush valleys (17462ms)\nWhat is the population of Venezuela?\tthe post-War era\t-15.359973634553775\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, experienced in, the post-War era) -> the post-War era (17462ms)\nWhat is the population of Venezuela?\tthe world stage\t-15.381129803564313\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, plays on, the world stage) -> the world stage (17462ms)\nWhat is the population of Venezuela?\t2010\t-15.402853827299808\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, continued in, 2010) -> 2010 (17461ms)\nWhat is the population of Venezuela?\tdiscounted heating oil\t-15.470184398364962\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, in providing, discounted heating oil) -> discounted heating oil (17521ms)\nWhat is the population of Venezuela?\tmid September\t-15.508052370853182\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, returned in, mid September) -> mid September (17521ms)\nWhat is the population of Venezuela?\t2008\t-15.510916552694002\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, launched in, 2008) -> 2008 (17521ms)\nWhat is the population of Venezuela?\tthe aftermath\t-15.534923987961934\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, faced in, the aftermath) -> the aftermath (18111ms)\nWhat is the population of Venezuela?\tthe proletariat\t-15.536692360764128\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, rests on, the proletariat) -> the proletariat (18111ms)\nWhat is the population of Venezuela?\tthe major sea and air routes\t-15.544309838981658\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, lies on, the major sea and air routes) -> the major sea and air routes (18111ms)\nWhat is the population of Venezuela?\t2005\t-15.544580678383582\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, said in, 2005) -> 2005 (18111ms)\nWhat is the population of Venezuela?\tthe leaves\t-15.553556681321396\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, chew on, the leaves) -> the leaves (18111ms)\nWhat is the population of Venezuela?\tthe responsibility\t-15.555325106825885\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, take on, the responsibility) -> the responsibility (18111ms)\nWhat is the population of Venezuela?\tthe achievements and obstacles\t-15.569235471734434\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, commented on, the achievements and obstacles) -> the achievements and obstacles (18111ms)\nWhat is the population of Venezuela?\tthe north coast\t-15.585806916515502\tWhat is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, lies on, the north coast) -> the north coast (18111ms)\nWhat is an Indian flute made of?\triver cane and cedar\t-4.736114065153823\tWhat is an Indian flute made of? -> $x: (an Indian flute, made of, $x) -> $x: (indian flute, make of, $x) -> (Primitive Indian flutes, made both of, river cane and cedar) -> river cane and cedar (4170ms)\nWhat is an Indian flute made of?\tbamboo\t-6.244394360483471\tWhat is an Indian flute made of? -> $x: (an Indian flute, made of, $x) -> $x: (indian flute, make of, $x) -> (The North Indian flute, is usually made of, bamboo) -> bamboo (4170ms)\nWhat is an Indian flute made of?\tBamboo\t-11.37234979439026\tWhat is an Indian flute made of? -> what be [ an indian flute make ] of ? -> what idea do an indian flute make have ? -> $x: ($x, instance of, idea) (an indian flute, make have, $x) -> $x: ($x, instance of, idea) (indian flute, make, $x) -> (Bamboo, Instance Of, great idea) (The North Indian flute, is usually made of, bamboo) -> Bamboo (6824ms)\nWho is the airport named after?\tConstantine the Great\t-0.5041256847490265\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (Ni? Constantine the Great Airport, Named after, Constantine the Great) -> Constantine the Great (4038ms)\nWho is the airport named after?\tThurgood Marshall\t-0.6253926755760428\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Thurgood Marshall) -> Thurgood Marshall (4038ms)\nWho is the airport named after?\tMedgar Evers\t-0.6317726472867575\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Medgar Evers) -> Medgar Evers (4038ms)\nWho is the airport named after?\tAmerigo Vespucci\t-0.6565947508584875\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, Amerigo Vespucci) -> Amerigo Vespucci (4039ms)\nWho is the airport named after?\tMother Teresa\t-0.6959268460105243\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Mother Teresa) -> Mother Teresa (5059ms)\nWho is the airport named after?\tPaul the Apostle\t-0.7185389534224711\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (Ohrid \"St. Paul the Apostle\" Airport, Named after, Paul the Apostle) -> Paul the Apostle (5060ms)\nWho is the airport named after?\tAlexander the Great\t-0.7185389534224711\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (Skopje \"Alexander the Great\" Airport, Named after, Alexander the Great) -> Alexander the Great (5060ms)\nWho is the airport named after?\tElefth?rios Veniz?los\t-0.7582775045419674\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Elefth?rios Veniz?los) -> Elefth?rios Veniz?los (5060ms)\nWho is the airport named after?\tKempe Gowda\t-0.9089996347691145\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, be named after, Kempe Gowda) -> Kempe Gowda (5060ms)\nWho is the airport named after?\tMedger Evers\t-1.252525152605326\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Medger Evers) -> Medger Evers (7294ms)\nWho is the airport named after?\tIoannis Daskalogiannis\t-1.3710076587188207\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Ioannis Daskalogiannis) -> Ioannis Daskalogiannis (7295ms)\nWho is the airport named after?\tHalim Perdanakusuma\t-1.4059258151383052\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Halim Perdanakusuma Airport, Named after, Halim Perdanakusuma) -> Halim Perdanakusuma (7294ms)\nWho is the airport named after?\tAmelia Earhart\t-1.4059258151383052\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Amelia Earhart Airport, Named after, Amelia Earhart) -> Amelia Earhart (7386ms)\nWho is the airport named after?\tRoland Garros\t-1.4059258151383052\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Roland Garros Airport, Named after, Roland Garros) -> Roland Garros (7295ms)\nWho is the airport named after?\tFerit Melen\t-1.4059258151383052\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ferit Melen Airport, Named after, Ferit Melen) -> Ferit Melen (7295ms)\nWho is the airport named after?\tSultan Hasanuddin\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Sultan Hasanuddin International Airport, Named after, Sultan Hasanuddin) -> Sultan Hasanuddin (7478ms)\nWho is the airport named after?\tTancredo Neves\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Tancredo Neves International Airport, Named after, Tancredo Neves) -> Tancredo Neves (7519ms)\nWho is the airport named after?\tAbraham Lincoln\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Abraham Lincoln Capital Airport, Named after, Abraham Lincoln) -> Abraham Lincoln (7386ms)\nWho is the airport named after?\tIndira Gandhi\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Indira Gandhi International Airport, Named after, Indira Gandhi) -> Indira Gandhi (7479ms)\nWho is the airport named after?\tNorman Manley\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Norman Manley International Airport, Named after, Norman Manley) -> Norman Manley (7386ms)\nWho is the airport named after?\tNikola Tesla\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Belgrade Nikola Tesla Airport, Named after, Nikola Tesla) -> Nikola Tesla (7519ms)\nWho is the airport named after?\tAurel Vlaicu\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Aurel Vlaicu International Airport, Named after, Aurel Vlaicu) -> Aurel Vlaicu (7519ms)\nWho is the airport named after?\tArnold Palmer\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Arnold Palmer Regional Airport, Named after, Arnold Palmer) -> Arnold Palmer (7519ms)\nWho is the airport named after?\tHenri Coand?\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Henri Coand? International Airport, Named after, Henri Coand?) -> Henri Coand? (7479ms)\nWho is the airport named after?\tRajiv Gandhi\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Rajiv Gandhi International Airport, Named after, Rajiv Gandhi) -> Rajiv Gandhi (7478ms)\nWho is the airport named after?\tSakamoto Ry?ma\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (K?chi Airport, Named after, Sakamoto Ry?ma) -> Sakamoto Ry?ma (7479ms)\nWho is the airport named after?\tJorge Ch?vez\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Jorge Ch?vez International Airport, Named after, Jorge Ch?vez) -> Jorge Ch?vez (7386ms)\nWho is the airport named after?\tFederico Fellini\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Federico Fellini International Airport, Named after, Federico Fellini) -> Federico Fellini (7480ms)\nWho is the airport named after?\tSim?n Bol?var\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Sim?n Bol?var International Airport, Named after, Sim?n Bol?var) -> Sim?n Bol?var (7519ms)\nWho is the airport named after?\tS?leyman Demirel\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Isparta S?leyman Demirel Airport, Named after, S?leyman Demirel) -> S?leyman Demirel (7519ms)\nWho is the airport named after?\tJulius Nyerere\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Julius Nyerere International Airport, Named after, Julius Nyerere) -> Julius Nyerere (7386ms)\nWho is the airport named after?\tFr?d?ric Chopin\t-1.5012206012153912\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Warsaw Chopin Airport, Named after, Fr?d?ric Chopin) -> Fr?d?ric Chopin (7386ms)\nWho is the airport named after?\tBenazir Bhutto\t-1.5791890625511895\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Islamabad International Airport, Named after, Benazir Bhutto) -> Benazir Bhutto (7543ms)\nWho is the airport named after?\tDjuanda Kartawidjaja\t-1.5791890625511895\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Juanda International Airport, Named after, Djuanda Kartawidjaja) -> Djuanda Kartawidjaja (7543ms)\nWho is the airport named after?\tGalileo Galilei\t-1.5791890625511895\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Pisa International Airport, Named after, Galileo Galilei) -> Galileo Galilei (7543ms)\nWho is the airport named after?\tIoannis Kapodistrias\t-1.5791890625511895\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Corfu International Airport, Named after, Ioannis Kapodistrias) -> Ioannis Kapodistrias (7543ms)\nWho is the airport named after?\tBilly Mitchell\t-1.5791890625511895\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (General Mitchell International Airport, Named after, Billy Mitchell) -> Billy Mitchell (7543ms)\nWho is the airport named after?\t?stor Piazzolla\t-1.5791890625511895\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (?stor Piazzola International Airport, Named after, ?stor Piazzolla) -> ?stor Piazzolla (7543ms)\nWho is the airport named after?\tNASA\t-1.5884752208682258\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, NASA) -> NASA (7606ms)\nWho is the airport named after?\tChristopher Columbus\t-1.6441627803310217\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Genoa Cristoforo Colombo Airport, Named after, Christopher Columbus) -> Christopher Columbus (7606ms)\nWho is the airport named after?\tCharles Lindbergh\t-1.6441627803310217\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Airport ? Terminal 1-Lindbergh, Named after, Charles Lindbergh) -> Charles Lindbergh (7606ms)\nWho is the airport named after?\tNorman Mineta\t-1.6441627803310217\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (San Jose International Airport, Named after, Norman Mineta) -> Norman Mineta (7606ms)\nWho is the airport named after?\tBenito Juarez\t-1.7581776031430096\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, named after, Benito Juarez) -> Benito Juarez (7606ms)\nWho is the airport named after?\tCharles de Gaulle\t-1.8036649645864242\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Charles de Gaulle Airport, Named after, Charles de Gaulle) -> Charles de Gaulle (7606ms)\nWho is the airport named after?\tHussein of Jordan\t-1.946607143702054\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (King Hussein International Airport, Named after, Hussein of Jordan) -> Hussein of Jordan (7641ms)\nWho is the airport named after?\tMuhammad al-Idrisi\t-1.9725100988279205\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Cherif Al Idrissi Airport, Named after, Muhammad al-Idrisi) -> Muhammad al-Idrisi (7641ms)\nWho is the airport named after?\tEnrique Olaya Herrera\t-1.9928719064363882\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Enrique Olaya Herrera) -> Enrique Olaya Herrera (7642ms)\nWho is the airport named after?\tthe Battle\t-2.0049824236219442\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the Battle) -> the Battle (7641ms)\nWho is the airport named after?\tJohn Foster Dulles\t-2.0255265766458983\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, John Foster Dulles) -> John Foster Dulles (7641ms)\nWho is the airport named after?\tWill Rogers\t-2.121313087611617\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Will Rogers) -> Will Rogers (7803ms)\nWho is the airport named after?\tIbn Battuta\t-2.1330015397492925\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Tangier Ibn Battouta Airport, Named after, Ibn Battuta) -> Ibn Battuta (7802ms)\nWho is the airport named after?\tGeorge H. W. Bush\t-2.1722899263583586\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, George H. W. Bush) -> George H. W. Bush (7802ms)\nWho is the airport named after?\tAyatollah Ruhollah Khomeini\t-2.2107672358464248\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is now named after, Ayatollah Ruhollah Khomeini) -> Ayatollah Ruhollah Khomeini (7802ms)\nWho is the airport named after?\tairplanes\t-2.220549456552429\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, are named after, airplanes) -> airplanes (7802ms)\nWho is the airport named after?\tPope John Paul II\t-2.231987972984217\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Pope John Paul II) -> Pope John Paul II (7802ms)\nWho is the airport named after?\tQueen Alia\t-2.273423915257548\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Queen Alia) -> Queen Alia (7874ms)\nWho is the airport named after?\tFrank Pa?s\t-2.338797030023384\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Frank Pa?s Airport, Named after, Frank Pa?s) -> Frank Pa?s (7874ms)\nWho is the airport named after?\tJuliana of the Netherlands\t-2.42106490277179\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Princess Juliana International Airport, Named after, Juliana of the Netherlands) -> Juliana of the Netherlands (7874ms)\nWho is the airport named after?\tLennart Meri\t-2.4340918161004703\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Tallinn Airport, Named after, Lennart Meri) -> Lennart Meri (7874ms)\nWho is the airport named after?\tCyril King\t-2.4340918161004703\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Cyril E. King Airport, Named after, Cyril King) -> Cyril King (7874ms)\nWho is the airport named after?\tFiorello LaGuardia\t-2.435513342840406\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Fiorello LaGuardia) -> Fiorello LaGuardia (7968ms)\nWho is the airport named after?\tformer President\t-2.437673967435602\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, former President) -> former President (7968ms)\nWho is the airport named after?\tan MP\t-2.4469081886441604\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, an MP) -> an MP (7968ms)\nWho is the airport named after?\tJos? Joaqu?n\t-2.4654117457491127\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Jos? Joaqu?n) -> Jos? Joaqu?n (7968ms)\nWho is the airport named after?\tLouis Armstrong\t-2.5180337003229245\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, Louis Armstrong) -> Louis Armstrong (7968ms)\nWho is the airport named after?\ta prominent businessman\t-2.5207836274870314\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, a prominent businessman) -> a prominent businessman (7968ms)\nWho is the airport named after?\tRobert Mueller\t-2.541971617493558\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, was named for, Robert Mueller) -> Robert Mueller (8023ms)\nWho is the airport named after?\tBob Hope\t-2.556965581646879\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Bob Hope Airport, Named after, Bob Hope) -> Bob Hope (8023ms)\nWho is the airport named after?\tCaptain Auguste George Airport\t-2.5693499438476266\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Captain Auguste George Airport) -> Captain Auguste George Airport (8023ms)\nWho is the airport named after?\ta local heroine\t-2.587098450805994\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a local heroine) -> a local heroine (8023ms)\nWho is the airport named after?\ta prominent politician\t-2.6348451488927482\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a prominent politician) -> a prominent politician (8023ms)\nWho is the airport named after?\tWendell H. Ford\t-2.635478171445235\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Wendell H. Ford Airport, Named after, Wendell H. Ford) -> Wendell H. Ford (8061ms)\nWho is the airport named after?\tHenry E. Rohlsen\t-2.635478171445235\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Henry E. Rohlsen Airport, Named after, Henry E. Rohlsen) -> Henry E. Rohlsen (8061ms)\nWho is the airport named after?\tWilliam P. Hobby\t-2.635478171445235\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (William P. Hobby Airport, Named after, William P. Hobby) -> William P. Hobby (8137ms)\nWho is the airport named after?\tRafael Hern?ndez Mar?n\t-2.635478171445235\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Rafael Hern?ndez Airport, Named after, Rafael Hern?ndez Mar?n) -> Rafael Hern?ndez Mar?n (8061ms)\nWho is the airport named after?\tMariana Grajales Coello\t-2.635478171445235\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Mariana Grajales Airport, Named after, Mariana Grajales Coello) -> Mariana Grajales Coello (8061ms)\nWho is the airport named after?\tFiorello H. LaGuardia\t-2.635478171445235\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (LaGuardia Airport, Named after, Fiorello H. LaGuardia) -> Fiorello H. LaGuardia (8061ms)\nWho is the airport named after?\tZachary Smith Reynolds\t-2.635478171445235\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Smith Reynolds Airport, Named after, Zachary Smith Reynolds) -> Zachary Smith Reynolds (8061ms)\nWho is the airport named after?\tFederico Garc?a Lorca\t-2.635478171445235\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Federico Garc?a Lorca Airport, Named after, Federico Garc?a Lorca) -> Federico Garc?a Lorca (8137ms)\nWho is the airport named after?\tKing Mohammed V\t-2.6560013179032853\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, King Mohammed V) -> King Mohammed V (8137ms)\nWho is the airport named after?\tformer Prime Minister\t-2.6631394826439037\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, former Prime Minister) -> former Prime Minister (8137ms)\nWho is the airport named after?\ta freedom fighter\t-2.6772866231683334\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a freedom fighter) -> a freedom fighter (8136ms)\nWho is the airport named after?\tHugo Ch?vez\t-2.6775191424134155\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Hugo Ch?vez) -> Hugo Ch?vez (8137ms)\nWho is the airport named after?\tPhilippine hero-senator Beniguo\t-2.6790550486728217\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Philippine hero-senator Beniguo) -> Philippine hero-senator Beniguo (8166ms)\nWho is the airport named after?\tFranz Josef Strau?\t-2.679874666946662\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Franz Josef Strau?) -> Franz Josef Strau? (8166ms)\nWho is the airport named after?\tDavid Ben-Gurion\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ben Gurion Airport, Named after, David Ben-Gurion) -> David Ben-Gurion (8295ms)\nWho is the airport named after?\tClyde Edward Pangborn\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Pangborn Memorial Airport, Named after, Clyde Edward Pangborn) -> Clyde Edward Pangborn (8295ms)\nWho is the airport named after?\tEdward Lawrence Logan\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Logan International Airport, Named after, Edward Lawrence Logan) -> Edward Lawrence Logan (8166ms)\nWho is the airport named after?\tRuben Martin Berta\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ruben Berta International Airport, Named after, Ruben Martin Berta) -> Ruben Martin Berta (8166ms)\nWho is the airport named after?\tWolfgang Amadeus Mozart\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Salzburg Airport, Named after, Wolfgang Amadeus Mozart) -> Wolfgang Amadeus Mozart (8295ms)\nWho is the airport named after?\tAlia al-Hussein\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Queen Alia International Airport, Named after, Alia al-Hussein) -> Alia al-Hussein (8295ms)\nWho is the airport named after?\tCharles Kingsford Smith\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Sydney Airport, Named after, Charles Kingsford Smith) -> Charles Kingsford Smith (8166ms)\nWho is the airport named after?\tAlberto Santos-Dumont\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Santos Dumont Airport, Named after, Alberto Santos-Dumont) -> Alberto Santos-Dumont (8166ms)\nWho is the airport named after?\tTheodore F. Green\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (T. F. Green Airport, Named after, Theodore F. Green) -> Theodore F. Green (8295ms)\nWho is the airport named after?\tL?on M'ba\t-2.713446632781033\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Libreville International Airport, Named after, L?on M'ba) -> L?on M'ba (8296ms)\nWho is the airport named after?\tLiverpudlian musician John Lennon\t-2.759835125907605\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Liverpudlian musician John Lennon) -> Liverpudlian musician John Lennon (8401ms)\nWho is the airport named after?\tthe Venetian traveller Marco Polo\t-2.7660597035100007\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the Venetian traveller Marco Polo) -> the Venetian traveller Marco Polo (8401ms)\nWho is the airport named after?\tMilan Rastislav ?tef?nik\t-2.7784203505608644\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (M. R. ?tef?nik Airport, Named after, Milan Rastislav ?tef?nik) -> Milan Rastislav ?tef?nik (8572ms)\nWho is the airport named after?\tJames M. Cox\t-2.7784203505608644\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Dayton International Airport, Named after, James M. Cox) -> James M. Cox (8572ms)\nWho is the airport named after?\tGustav III of Sweden\t-2.7784203505608644\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Gustaf III Airport, Named after, Gustav III of Sweden) -> Gustav III of Sweden (8572ms)\nWho is the airport named after?\tLester B. Pearson\t-2.7784203505608644\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Toronto Pearson International Airport, Named after, Lester B. Pearson) -> Lester B. Pearson (8572ms)\nWho is the airport named after?\tMohammed V of Morocco\t-2.7784203505608644\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Mohammed V International Airport, Named after, Mohammed V of Morocco) -> Mohammed V of Morocco (8572ms)\nWho is the airport named after?\tNilo de Sousa Coelho\t-2.7784203505608644\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Petrolina Airport, Named after, Nilo de Sousa Coelho) -> Nilo de Sousa Coelho (8402ms)\nWho is the airport named after?\tthe Venetian traveler Marco Polo\t-2.7787661548979843\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the Venetian traveler Marco Polo) -> the Venetian traveler Marco Polo (8651ms)\nWho is the airport named after?\tFlorence native Amerigo Vespucci\t-2.7885568788418924\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, Florence native Amerigo Vespucci) -> Florence native Amerigo Vespucci (8651ms)\nWho is the airport named after?\tSep? Tiaraju\t-2.7893625170719063\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Sep? Tiaraju Airport, Named after, Sep? Tiaraju) -> Sep? Tiaraju (8651ms)\nWho is the airport named after?\tBert Mooney\t-2.7893625170719063\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Bert Mooney Airport, Named after, Bert Mooney) -> Bert Mooney (8651ms)\nWho is the airport named after?\tJohn Wayne\t-2.7893625170719063\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (John Wayne Airport, Named after, John Wayne) -> John Wayne (8651ms)\nWho is the airport named after?\tIbn Saud\t-2.795202546839595\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (King Abdulaziz International Airport, Named after, Ibn Saud) -> Ibn Saud (8651ms)\nWho is the airport named after?\tNorman Y . Mineta\t-2.805688234815488\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Norman Y . Mineta) -> Norman Y . Mineta (8686ms)\nWho is the airport named after?\teither Judge John Heath\t-2.8145908524804657\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, either Judge John Heath) -> either Judge John Heath (8686ms)\nWho is the airport named after?\tHerkalion native Nikos Kazantzakis\t-2.8169157807203034\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Herkalion native Nikos Kazantzakis) -> Herkalion native Nikos Kazantzakis (8686ms)\nWho is the airport named after?\tBologna native Guglielmo Marconi\t-2.817182816136628\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Bologna native Guglielmo Marconi) -> Bologna native Guglielmo Marconi (8686ms)\nWho is the airport named after?\tClarence E. Hancock\t-2.820452579026985\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The Airport, was originally named after, Clarence E. Hancock) -> Clarence E. Hancock (8686ms)\nWho is the airport named after?\tGen . Murtala Muhammed\t-2.8213367654280814\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Gen . Murtala Muhammed) -> Gen . Murtala Muhammed (8686ms)\nWho is the airport named after?\tPresident Gustavo D?az Ordaz\t-2.8278538066037995\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, President Gustavo D?az Ordaz) -> President Gustavo D?az Ordaz (8836ms)\nWho is the airport named after?\tItalian filmmaker Federico Fellini\t-2.833158977712674\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Italian filmmaker Federico Fellini) -> Italian filmmaker Federico Fellini (8836ms)\nWho is the airport named after?\tFahd of Saudi Arabia\t-2.833398111759184\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (King Fahd International Airport, Named after, Fahd of Saudi Arabia) -> Fahd of Saudi Arabia (8836ms)\nWho is the airport named after?\tKhalid of Saudi Arabia\t-2.833398111759184\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (King Khalid International Airport, Named after, Khalid of Saudi Arabia) -> Khalid of Saudi Arabia (8836ms)\nWho is the airport named after?\tBenigno Aquino, Jr.\t-2.833398111759184\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ninoy Aquino International Airport, Named after, Benigno Aquino, Jr.) -> Benigno Aquino, Jr. (8835ms)\nWho is the airport named after?\tAden Abdullah Osman Daar\t-2.833398111759184\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Mogadishu International Airport, Named after, Aden Abdullah Osman Daar) -> Aden Abdullah Osman Daar (8836ms)\nWho is the airport named after?\tArgentine aviator Jorge Newbery\t-2.848254925467751\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Argentine aviator Jorge Newbery) -> Argentine aviator Jorge Newbery (8874ms)\nWho is the airport named after?\tan American WWII pilot\t-2.849139111868848\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, an American WWII pilot) -> an American WWII pilot (8873ms)\nWho is the airport named after?\tCaptain Robert A. LaFleur\t-2.854444335680017\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Captain Robert A. LaFleur) -> Captain Robert A. LaFleur (8873ms)\nWho is the airport named after?\tLeo? Jan??ek\t-2.884657303148993\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Leo? Jan??ek Airport Ostrava, Named after, Leo? Jan??ek) -> Leo? Jan??ek (9392ms)\nWho is the airport named after?\tJomo Kenyatta\t-2.884657303148993\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Jomo Kenyatta International Airport, Named after, Jomo Kenyatta) -> Jomo Kenyatta (8873ms)\nWho is the airport named after?\tJuan Santamar?a\t-2.884657303148993\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Juan Santamar?a International Airport, Named after, Juan Santamar?a) -> Juan Santamar?a (8873ms)\nWho is the airport named after?\tJo?e Pu?nik\t-2.884657303148993\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ljubljana Jo?e Pu?nik Airport, Named after, Jo?e Pu?nik) -> Jo?e Pu?nik (9392ms)\nWho is the airport named after?\tLuiz Eduardo\t-2.8981714211209364\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is also named after, Luiz Eduardo) -> Luiz Eduardo (9392ms)\nWho is the airport named after?\tArmy aviator Major Harold Geiger\t-2.917128140690071\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, Army aviator Major Harold Geiger) -> Army aviator Major Harold Geiger (9392ms)\nWho is the airport named after?\tItalian polymath Leonardo da Vinci\t-2.9356356703751514\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Italian polymath Leonardo da Vinci) -> Italian polymath Leonardo da Vinci (9392ms)\nWho is the airport named after?\tReagan\t-2.936599771404543\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Reagan) -> Reagan (9392ms)\nWho is the airport named after?\tthe French writer and pilot Antoine\t-2.9490238408751632\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the French writer and pilot Antoine) -> the French writer and pilot Antoine (9566ms)\nWho is the airport named after?\tIsrael\t-2.9697073416564788\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Israel) -> Israel (9566ms)\nWho is the airport named after?\tShaka\t-2.981960893002037\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Shaka) -> Shaka (9566ms)\nWho is the airport named after?\tatists\t-2.9915510319150718\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airports, were named after, atists) -> atists (9566ms)\nWho is the airport named after?\tCuban patriot and poet Jose Marti\t-2.9980048784518427\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Cuban patriot and poet Jose Marti) -> Cuban patriot and poet Jose Marti (9654ms)\nWho is the airport named after?\tLeonardo da Vinci\t-3.1440800167069964\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (the Rome airport, is named for, Leonardo da Vinci) -> Leonardo da Vinci (9654ms)\nWho is the airport named after?\tElefthrios  Venizlos\t-3.3166169442033144\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Elefthrios  Venizlos) -> Elefthrios  Venizlos (9684ms)\nWho is the airport named after?\tan entertainer\t-3.466450677617058\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the first airport, to be named after, an entertainer) -> an entertainer (9786ms)\nWho is the airport named after?\tthe village\t-3.5746779377980404\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the village) -> the village (10046ms)\nWho is the airport named after?\tpolitician\t-3.6096249890609253\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, politician) -> politician (10046ms)\nWho is the airport named after?\tMinister\t-3.6124356342594246\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Minister) -> Minister (10046ms)\nWho is the airport named after?\tDaskalogiannis\t-3.631887998595024\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Daskalogiannis) -> Daskalogiannis (10046ms)\nWho is the airport named after?\tStandiford\t-3.6328367531233763\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Standiford) -> Standiford (10242ms)\nWho is the airport named after?\tCarlos Manuel de C?spedes\t-3.6408453923578294\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Carlos Manuel C?spedes Airport, Named after, Carlos Manuel de C?spedes) -> Carlos Manuel de C?spedes (10242ms)\nWho is the airport named after?\tBauerfield\t-3.6522891174589756\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Bauerfield) -> Bauerfield (10242ms)\nWho is the airport named after?\tthe Gipper\t-3.776868007286519\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (airport, was named after, the Gipper) -> the Gipper (10242ms)\nWho is the airport named after?\tGeorge W. Bush\t-3.8048603531391336\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (the airport, is named for, George W. Bush) -> George W. Bush (10389ms)\nWho is the airport named after?\tNinoy\t-3.8400622572343917\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was later named after, Ninoy) -> Ninoy (10389ms)\nWho is the airport named after?\tNikos Kazantzakis\t-3.8433262387642504\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Nikos Kazantzakis, Named after, Heraklion International Airport) -> Nikos Kazantzakis (10389ms)\nWho is the airport named after?\tthe close\t-3.8473385113529996\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the close) -> the close (10591ms)\nWho is the airport named after?\tthe hamlet\t-3.8677396302169513\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the hamlet) -> the hamlet (10591ms)\nWho is the airport named after?\tlesser persons\t-3.9223843352322287\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (airports all over the world, named after, lesser persons) -> lesser persons (10798ms)\nWho is the airport named after?\tHeathrow\t-3.925444239071177\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (London Heathrow Airport, Named after, Heathrow) -> Heathrow (10874ms)\nWho is the airport named after?\tFranz Josef Strau\t-3.9408416797013075\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Franz Josef Strau) -> Franz Josef Strau (10874ms)\nWho is the airport named after?\tColeman Young\t-3.9632777177424012\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Coleman Young, Things named after this, Coleman A. Young International Airport) -> Coleman Young (10874ms)\nWho is the airport named after?\tShivaji\t-4.020739025148263\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Chhatrapati Shivaji International Airport, Named after, Shivaji) -> Shivaji (10941ms)\nWho is the airport named after?\tthe small village\t-4.034219156880347\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the small village) -> the small village (11166ms)\nWho is the airport named after?\tthe French writer and pilot\t-4.083480021498236\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the French writer and pilot) -> the French writer and pilot (11193ms)\nWho is the airport named after?\tNeil Armstrong\t-4.086754803301823\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (The nearby airport, is named after, Neil Armstrong) -> Neil Armstrong (11193ms)\nWho is the airport named after?\tthe area native\t-4.160659446008301\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, the area native) -> the area native (11328ms)\nWho is the airport named after?\tPreston Smith\t-4.175629029456129\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Preston Smith, Things named after this, Lubbock Preston Smith International Airport) -> Preston Smith (11517ms)\nWho is the airport named after?\tHabib Bourguiba\t-4.175629029456129\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Habib Bourguiba, Things named after this, Monastir Habib Bourguiba International Airport) -> Habib Bourguiba (11432ms)\nWho is the airport named after?\tJoshua Nkomo\t-4.175629029456129\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Joshua Nkomo, Things named after this, Joshua Mqabuko Nkomo International Airport) -> Joshua Nkomo (11433ms)\nWho is the airport named after?\tJesus Christ\t-4.222752824768973\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Jesus Christ, Things named after this, Bom Jesus Da Lapa Airport) -> Jesus Christ (12331ms)\nWho is the airport named after?\tthe small town\t-4.250783050243385\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the small town) -> the small town (12331ms)\nWho is the airport named after?\tthe former mayor\t-4.250783050243385\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the former mayor) -> the former mayor (12484ms)\nWho is the airport named after?\tthe first President\t-4.260608994279718\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first President) -> the first President (12484ms)\nWho is the airport named after?\tthe archeological site\t-4.271184169107336\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the archeological site) -> the archeological site (12484ms)\nWho is the airport named after?\tthe famous scientist\t-4.278257765720699\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the famous scientist) -> the famous scientist (12485ms)\nWho is the airport named after?\tThe Starship\t-4.339693401084606\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, name after, the airport) -> (The Starship, was named after, the Vulcan airports identifier) -> The Starship (12656ms)\nWho is the airport named after?\tthe former ruler\t-4.387501134928088\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, has been named after, the former ruler) -> the former ruler (12797ms)\nWho is the airport named after?\ta motorway\t-4.394665965503256\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (the nearest airport, is named after, a motorway) -> a motorway (12797ms)\nWho is the airport named after?\tCOS\t-4.429418118158273\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, name after, the airport) -> (COS, was names after, the airport) -> COS (12834ms)\nWho is the airport named after?\tthe hamlet Heath Row\t-4.461518611635805\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the hamlet Heath Row) -> the hamlet Heath Row (12881ms)\nWho is the airport named after?\taviator Gerald McClellan\t-4.487506697068886\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, aviator Gerald McClellan) -> aviator Gerald McClellan (12881ms)\nWho is the airport named after?\tDr Abdus Salam\t-4.518771756117016\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (the Multan airport, is being named after, Dr Abdus Salam) -> Dr Abdus Salam (12921ms)\nWho is the airport named after?\tthe first Tanzanian President\t-4.52985699008496\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first Tanzanian President) -> the first Tanzanian President (12921ms)\nWho is the airport named after?\tJohn Munro\t-4.546096256618471\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, John Munro) -> John Munro (12921ms)\nWho is the airport named after?\tformer Rhode Island governor\t-4.563740625921508\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (the airport, was named for, former Rhode Island governor) -> former Rhode Island governor (12962ms)\nWho is the airport named after?\tthe most famous Zulu monarch\t-4.606216082611965\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, the most famous Zulu monarch) -> the most famous Zulu monarch (13204ms)\nWho is the airport named after?\tthe first Kenyan prime minister\t-4.624784260546468\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first Kenyan prime minister) -> the first Kenyan prime minister (13241ms)\nWho is the airport named after?\tan electronic number\t-4.6266493825143025\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, name after, the airport) -> (an electronic number, is named after, the airport) -> an electronic number (13241ms)\nWho is the airport named after?\tthe former Jamaican Prime Minister\t-4.668994160326541\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, the former Jamaican Prime Minister) -> the former Jamaican Prime Minister (13278ms)\nWho is the airport named after?\tGonggar County\t-4.682082820992772\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, take its name from, $x) -> (The airport, takes its name from, Gonggar County) -> Gonggar County (13279ms)\nWho is the airport named after?\tElrey B Jeppesen\t-4.747684765327319\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (The airport terminal building, is named after, Elrey B Jeppesen) -> Elrey B Jeppesen (13348ms)\nWho is the airport named after?\tCharles McGhee Tyson\t-5.042557526773925\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Charles McGhee Tyson, Things named after this, McGhee Tyson Airport) -> Charles McGhee Tyson (13549ms)\nWho is the airport named after?\tJohn F. Kennedy\t-5.097535287972245\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (John F. Kennedy, Things named after this, John F. Kennedy International Airport) -> John F. Kennedy (13587ms)\nWho is the airport named after?\tFernando L. Ribas-Dominicci\t-5.185499705889555\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Fernando L. Ribas-Dominicci, Things named after this, Fernando Luis Ribas Dominicci Airport) -> Fernando L. Ribas-Dominicci (13731ms)\nWho is the airport named after?\tLuis Mu?oz Mar?n\t-5.309886599685972\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Luis Mu?oz Mar?n, Things named after this, Luis Mu?oz Mar?n International Airport) -> Luis Mu?oz Mar?n (14021ms)\nWho is the airport named after?\tLouise Thaden\t-5.336940587269504\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> ('s airport, is named after, Louise Thaden) -> Louise Thaden (14227ms)\nWho is the airport named after?\tJohn Murtha\t-5.346714419676002\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (John Murtha, Things named after this, Johnstown?Cambria County Airport) -> John Murtha (14227ms)\nWho is the airport named after?\tBen Elbert Douglas, Sr.\t-5.397851017603283\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Ben Elbert Douglas, Sr., Things named after this, Charlotte/Douglas International Airport) -> Ben Elbert Douglas, Sr. (14271ms)\nWho is the airport named after?\tMuhammad bin Fahd\t-5.397851017603283\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Muhammad bin Fahd, Things named after this, Prince Mohammad Bin Abdulaziz Airport) -> Muhammad bin Fahd (14308ms)\nWho is the airport named after?\tIan Fleming\t-5.451150122035584\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (a new international airport, named after, Ian Fleming) -> Ian Fleming (14387ms)\nWho is the airport named after?\tnew members\t-5.489871153367969\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, should be with, $x) -> (The Airport Authority, should be replaced with, new members) -> new members (14387ms)\nWho is the airport named after?\tFedEx\t-5.5852266380950475\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (FedEx, has found room at, the Memphis Airport) -> FedEx (14522ms)\nWho is the airport named after?\tMaj\t-5.588479517666511\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (Logan International Airport, is named for, Maj) -> Maj (14522ms)\nWho is the airport named after?\tFloyd Glass\t-5.599785932736754\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (This airport, is now named for, Floyd Glass) -> Floyd Glass (14521ms)\nWho is the airport named after?\tBlaise Diagne\t-5.660869176264209\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (Africa ?s newest airport, is named for, Blaise Diagne) -> Blaise Diagne (14560ms)\nWho is the airport named after?\tthe President\t-5.7413262842297135\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (This airport, is named after, the President) -> the President (14560ms)\nWho is the airport named after?\ta part\t-5.750025567903653\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, take its name from, $x) -> (The airport, took its name from, a part) -> a part (14560ms)\nWho is the airport named after?\tthe great opera composer\t-5.761545287808763\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the great opera composer) -> the great opera composer (14596ms)\nWho is the airport named after?\tthe first Kenyan president\t-5.761545287808763\tWho is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first Kenyan president) -> the first Kenyan president (14596ms)\nWho is the airport named after?\tpolitical leaders\t-5.77123642851807\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (no airport, would be named after, political leaders) -> political leaders (14595ms)\nWho is the airport named after?\taviation pioneers\t-5.834595513111796\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (Airports, have been named for, aviation pioneers) -> aviation pioneers (14596ms)\nWho is the airport named after?\ta high-speed rail link\t-5.858396319386857\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, could build, the airport) -> (a high-speed rail link, could be built between, the airports) -> a high-speed rail link (14595ms)\nWho is the airport named after?\tthe LTTE\t-5.86182208162062\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, to bomb, the airport) -> (the LTTE, were able to bomb, the capital and airport) -> the LTTE (14647ms)\nWho is the airport named after?\tBritish Airways\t-5.907364354274458\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be abandon by, $x) -> (London Heathrow Airport, was abandoned by, British Airways) -> British Airways (14647ms)\nWho is the airport named after?\tManchester Airport\t-5.916426757497342\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, be look to buy, airport) -> (Manchester Airport, is looking to buy, a fifth airport ?) -> Manchester Airport (14647ms)\nWho is the airport named after?\tthe Algerian\t-6.005698005636285\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, to bomb, the airport) -> (the Algerian, tried to bomb, the Los Angeles airport) -> the Algerian (15784ms)\nWho is the airport named after?\tforeign exchange counters\t-6.007861352618914\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, can locate, the airport) -> (foreign exchange counters, can be located at, the airport) -> foreign exchange counters (15784ms)\nWho is the airport named after?\tthe family\t-6.025440038517608\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (the Friedman Memorial Airport, is named for, the family) -> the family (15784ms)\nWho is the airport named after?\tthe historic city\t-6.0370691795534315\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, the historic city) -> the historic city (15784ms)\nWho is the airport named after?\tthe nearby village\t-6.078751631102303\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The Airport, is named for, the nearby village) -> the nearby village (16061ms)\nWho is the airport named after?\tonce my luggage\t-6.103143510428131\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (once my luggage, has been found by, the airport) -> once my luggage (16061ms)\nWho is the airport named after?\tthe late Secretary\t-6.117656359773503\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, was named for, the late Secretary) -> the late Secretary (16060ms)\nWho is the airport named after?\tpak21\t-6.177410189583017\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, creator, $x) -> (Airport Coder, Creator(s), pak21) -> pak21 (16336ms)\nWho is the airport named after?\tthe Chicago & Western Indiana Railroad\t-6.181076119517506\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, bisect, the airport) -> (the Chicago & Western Indiana Railroad, bisected, the airport) -> the Chicago & Western Indiana Railroad (16428ms)\nWho is the airport named after?\tPierre Savorgnan de Brazza\t-6.208193251543438\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Pierre Savorgnan de Brazza, Things named after this, Trieste ? Friuli Venezia Giulia Airport) -> Pierre Savorgnan de Brazza (16428ms)\nWho is the airport named after?\ta shuttle\t-6.212039364669074\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, can hire, $x) -> (the airport, can chose to hire, a shuttle) -> a shuttle (16428ms)\nWho is the airport named after?\tthe famous Charles Schulz\t-6.231949770464062\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, the famous Charles Schulz) -> the famous Charles Schulz (16428ms)\nWho is the airport named after?\tthe nearby suburb\t-6.23328203620787\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (The Paris Orly Airport, was named after, the nearby suburb) -> the nearby suburb (16428ms)\nWho is the airport named after?\tI?ll\t-6.2357425492472025\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (I?ll, have to find something interesting in, the airport) -> I?ll (16428ms)\nWho is the airport named after?\ta small river\t-6.260008150083582\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, run past, the airport) -> (a small river, runs right past, the airport premises) -> a small river (16509ms)\nWho is the airport named after?\tHahn\t-6.288569426999697\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, know for, the airport) -> (Hahn, is known for, the Frankfurt-Hahn Airport) -> Hahn (16617ms)\nWho is the airport named after?\ta master developer\t-6.30759732896984\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, will hire, $x) -> (The Springs Airport, will hire, a master developer) -> a master developer (16617ms)\nWho is the airport named after?\tthe United States Secretary\t-6.307949079521993\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (This airport, is named after, the United States Secretary) -> the United States Secretary (16617ms)\nWho is the airport named after?\tparking\t-6.411432159937652\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, actually pay, $x) -> (the airport, actually pay the same price for, parking) -> parking (16788ms)\nWho is the airport named after?\tWorcester North9\t-6.412947896978714\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, bisect, the airport) -> (Worcester North9, bisects, the airport) -> Worcester North9 (16866ms)\nWho is the airport named after?\tFuji Television\t-6.484238005411718\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, creator, $x) -> (TOKYO Airport: Air Traffic Controller, Program creator, Fuji Television) -> Fuji Television (16949ms)\nWho is the airport named after?\ta world war\t-6.497022116105654\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (?Its largest airport, is named for, a world war) -> a world war (16949ms)\nWho is the airport named after?\tA new report\t-6.503889239723438\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (A new report, has found, the Cairns Airport) -> A new report (16949ms)\nWho is the airport named after?\tEach traveler\t-6.563235438493512\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (Each traveler, has to find their own way out of, the airport) -> Each traveler (17087ms)\nWho is the airport named after?\tan overrated twit\t-6.563393314058571\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> ('s airport, is named for, an overrated twit) -> an overrated twit (17087ms)\nWho is the airport named after?\ta forgettable president\t-6.617329369655296\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> ('s airport, is named for, a forgettable president) -> a forgettable president (17087ms)\nWho is the airport named after?\tApple\t-6.6224797538927165\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (Airport Express Airport, is the name for, Apple) -> Apple (17087ms)\nWho is the airport named after?\tNoir de Noir 72 percent cacao\t-6.625670588693674\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (Noir de Noir 72 percent cacao, have been found at, the airport) -> Noir de Noir 72 percent cacao (17212ms)\nWho is the airport named after?\ta legendary proto-communist terrorist\t-6.630664301985366\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (An airport, named after, a legendary proto-communist terrorist) -> a legendary proto-communist terrorist (17212ms)\nWho is the airport named after?\tpremier\t-6.635661112974646\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, to honor, $x) -> (The Phoenix Airport Museum, is honored to, premier) -> premier (17212ms)\nWho is the airport named after?\tSolidarity\t-6.640169692190681\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Solidarity, Things named after this, \"Solidarity\" Szczecin-Goleni?w Airport) -> Solidarity (17212ms)\nWho is the airport named after?\tformer US Secretary\t-6.659770896633177\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (Dulles Airport, is named after, former US Secretary) -> former US Secretary (17212ms)\nWho is the airport named after?\tSky Towers\t-6.665232341140552\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Sky Towers, named after, airport codes) -> Sky Towers (17212ms)\nWho is the airport named after?\t1965\t-6.666032453523047\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be abandon by, $x) -> (The airport, was abandoned by, 1965) -> 1965 (17212ms)\nWho is the airport named after?\ta relatively obscure general\t-6.714789946325044\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> ('s airport, is named for, a relatively obscure general) -> a relatively obscure general (17354ms)\nWho is the airport named after?\tNorm Mineta\t-6.717332478206813\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (this airport, is named after, Norm Mineta) -> Norm Mineta (17354ms)\nWho is the airport named after?\tthe IEEE 802.11\t-6.723237527475801\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (AirPort, is Apple 's name for, the IEEE 802.11) -> the IEEE 802.11 (17354ms)\nWho is the airport named after?\tThe Newberry iPhone Case\t-6.746442603115973\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (The Newberry iPhone Case, is named after, Newbery Airport) -> The Newberry iPhone Case (17354ms)\nWho is the airport named after?\ta WWII hero\t-6.748881438495462\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (?Its largest airport, is named for, a WWII hero) -> a WWII hero (17487ms)\nWho is the airport named after?\tan authentic hero\t-6.781040201516751\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (O?Hare International Airport, is named for, an authentic hero) -> an authentic hero (17487ms)\nWho is the airport named after?\tMemphis\t-6.782605530240314\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, know for, the airport) -> (Memphis, is known for having, the largest freight airport) -> Memphis (17487ms)\nWho is the airport named after?\ta World War II battle\t-6.813931176878153\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (this airport, was named after, a World War II battle) -> a World War II battle (17487ms)\nWho is the airport named after?\ta legendary Hamilton member\t-6.820893684716301\tWho is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (This airport, is named for, a legendary Hamilton member) -> a legendary Hamilton member (17487ms)\nWhere is the U.S. Mint headquartered?\tPhiladelphia\t-5.503849162824033\tWhere is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (the U.S. Mint, start operation in, $x) -> (The first U.S. Mint, started operations in, Philadelphia) -> Philadelphia (4004ms)\nWhere is the U.S. Mint headquartered?\tDenver\t-7.202585476672536\tWhere is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, located in, $x) -> (the U.S. Mint, located in, Denver) -> Denver (5245ms)\nWhere is the U.S. Mint headquartered?\tDahlonega\t-7.599649790452959\tWhere is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, located in, $x) -> (the US Mint, located in, Dahlonega) -> Dahlonega (5245ms)\nWhere is the U.S. Mint headquartered?\tthe city\t-7.70849478153711\tWhere is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (the U.S. Mint, be base in, $x) -> (the U.S. Mint, are based in, the city) -> the city (4163ms)\nWhere is the U.S. Mint headquartered?\tCharlotte\t-7.727387818599631\tWhere is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, located in, $x) -> (the U.S. Mint, located in, Charlotte) -> Charlotte (5245ms)\nWhere is the U.S. Mint headquartered?\tCongress\t-8.598041283771714\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was authorized by, Congress) -> Congress (8095ms)\nWhere is the U.S. Mint headquartered?\tKentucky\t-8.791983762141673\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Kentucky, is another facility of, the US Mint) -> Kentucky (8095ms)\nWhere is the U.S. Mint headquartered?\tCoins\t-8.833819906791152\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Coins, are produced by, the US mint) -> Coins (8095ms)\nWhere is the U.S. Mint headquartered?\tDavid Rittenhouse\t-9.140453638712948\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was, David Rittenhouse) -> David Rittenhouse (8095ms)\nWhere is the U.S. Mint headquartered?\tauthorized dealers\t-9.174294342250757\tWhere is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, do business with, $x) -> (The U.S. Mint, does business with, authorized dealers) -> authorized dealers (5245ms)\nWhere is the U.S. Mint headquartered?\tEagles\t-9.201502102052174\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is turning out, Eagles) -> Eagles (8240ms)\nWhere is the U.S. Mint headquartered?\tEagle\t-9.246721404610021\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Eagle, is available from, the US Mint) -> Eagle (8240ms)\nWhere is the U.S. Mint headquartered?\tthe Fed\t-9.27519899824999\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the Fed, is, the US Mint) -> the Fed (8240ms)\nWhere is the U.S. Mint headquartered?\tSilver Coin\t-9.290115463047865\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Silver Coin, was struck by, the US Mint) -> Silver Coin (8240ms)\nWhere is the U.S. Mint headquartered?\tlegal tender\t-9.368048886240542\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are, legal tender) -> legal tender (8240ms)\nWhere is the U.S. Mint headquartered?\tJanuary\t-9.461446838918606\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are absolutely exploding in, January) -> January (8240ms)\nWhere is the U.S. Mint headquartered?\tlaw\t-9.490814898386285\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is required by, law) -> law (8240ms)\nWhere is the U.S. Mint headquartered?\tDimes\t-9.537861031126132\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Dimes, have been produced by, the US Mint) -> Dimes (8345ms)\nWhere is the U.S. Mint headquartered?\tSan Francisco\t-9.548984027318935\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was built in, San Francisco) -> San Francisco (8345ms)\nWhere is the U.S. Mint headquartered?\tbas-relief\t-9.710488170872871\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are struck in, bas-relief) -> bas-relief (8345ms)\nWhere is the U.S. Mint headquartered?\tGold Coin\t-9.842286377878288\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Gold Coin, was struck by, the US Mint) -> Gold Coin (8345ms)\nWhere is the U.S. Mint headquartered?\tbullion coins\t-9.93767240635926\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, will be offered as, bullion coins) -> bullion coins (8345ms)\nWhere is the U.S. Mint headquartered?\tPlatinum Coin\t-9.947074739700788\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Platinum Coin, was struck by, the US Mint) -> Platinum Coin (8345ms)\nWhere is the U.S. Mint headquartered?\ta Palladium Eagle coin\t-9.991511434128475\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is planning to issue, a Palladium Eagle coin) -> a Palladium Eagle coin (8345ms)\nWhere is the U.S. Mint headquartered?\tUKW\t-10.014463385031476\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is audited annually by, UKW) -> UKW (8429ms)\nWhere is the U.S. Mint headquartered?\ta Mint\t-10.047149328140986\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, a Mint) -> a Mint (8429ms)\nWhere is the U.S. Mint headquartered?\tJefferson Nickels\t-10.070551570614828\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Jefferson Nickels, was introduced by, the US Mint) -> Jefferson Nickels (8430ms)\nWhere is the U.S. Mint headquartered?\tDaniel Carr\t-10.076132473344199\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Daniel Carr, was invited by, the US Mint) -> Daniel Carr (8429ms)\nWhere is the U.S. Mint headquartered?\ta nickel worth\t-10.097255906833485\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, a nickel worth) -> a nickel worth (8430ms)\nWhere is the U.S. Mint headquartered?\tan unlikely partner\t-10.120737056786155\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (an unlikely partner, is, the US Mint) -> an unlikely partner (8430ms)\nWhere is the U.S. Mint headquartered?\tthe FBI building\t-10.178080353948769\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the FBI building, is, the US Mint) -> the FBI building (8459ms)\nWhere is the U.S. Mint headquartered?\tless offers\t-10.197234855842028\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, there are, less offers) -> less offers (8459ms)\nWhere is the U.S. Mint headquartered?\ttoday Conversal\t-10.240858378961049\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, today Conversal) -> today Conversal (8459ms)\nWhere is the U.S. Mint headquartered?\tdemand\t-10.279710437252039\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (demand, is, the US Mint) -> demand (8459ms)\nWhere is the U.S. Mint headquartered?\ttwo products\t-10.315891352520662\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is now missing, two products) -> two products (8459ms)\nWhere is the U.S. Mint headquartered?\tbags and rolls\t-10.342680689290926\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, has been offering, bags and rolls) -> bags and rolls (8459ms)\nWhere is the U.S. Mint headquartered?\ta bad precedent\t-10.357513208522407\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is setting, a bad precedent) -> a bad precedent (8459ms)\nWhere is the U.S. Mint headquartered?\tPeppermint\t-10.361047716496607\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Peppermint, Instance Of, mint in the US) -> Peppermint (10943ms)\nWhere is the U.S. Mint headquartered?\tSpearmint\t-10.361047716496607\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Spearmint, Instance Of, mint in the US) -> Spearmint (10944ms)\nWhere is the U.S. Mint headquartered?\ta highly collectible proof version\t-10.381460201585446\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, a highly collectible proof version) -> a highly collectible proof version (8459ms)\nWhere is the U.S. Mint headquartered?\tnew quarters\t-10.405021347916765\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is making, new quarters) -> new quarters (8487ms)\nWhere is the U.S. Mint headquartered?\tnew silver dollars\t-10.412333503222523\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US mint, has been minting, new silver dollars) -> new silver dollars (8487ms)\nWhere is the U.S. Mint headquartered?\tTabitha\t-10.436105240039616\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Tabitha, Instance Of, freshly minted Veteran of the US Army) -> Tabitha (10943ms)\nWhere is the U.S. Mint headquartered?\ta low premium\t-10.440998328990066\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Territorial Mint, is available at, a low premium) -> a low premium (8487ms)\nWhere is the U.S. Mint headquartered?\ta private company\t-10.464699993711102\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are rolled by, a private company) -> a private company (8487ms)\nWhere is the U.S. Mint headquartered?\ta pricing grid\t-10.465385372418153\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is developing, a pricing grid) -> a pricing grid (8487ms)\nWhere is the U.S. Mint headquartered?\tsilver American eagles\t-10.465385372418153\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is selling, silver American eagles) -> silver American eagles (8487ms)\nWhere is the U.S. Mint headquartered?\tFREE coin boards\t-10.468037931621444\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, FREE coin boards) -> FREE coin boards (8487ms)\nWhere is the U.S. Mint headquartered?\ta brilliant finish\t-10.485329671361846\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is using, a brilliant finish) -> a brilliant finish (8487ms)\nWhere is the U.S. Mint headquartered?\tlonger periods\t-10.509794079892272\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, have been available for, longer periods) -> longer periods (8515ms)\nWhere is the U.S. Mint headquartered?\ta whole lot\t-10.527478018723382\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, has been communicating, a whole lot) -> a whole lot (8515ms)\nWhere is the U.S. Mint headquartered?\tnumismatic bags and rolls\t-10.530622565237062\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, numismatic bags and rolls) -> numismatic bags and rolls (8515ms)\nWhere is the U.S. Mint headquartered?\ttwo roll sets\t-10.531243375816857\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, two roll sets) -> two roll sets (8515ms)\nWhere is the U.S. Mint headquartered?\tsales\t-10.534131330542147\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is currently rationing, sales) -> sales (8515ms)\nWhere is the U.S. Mint headquartered?\tan initial ordering limit\t-10.562845949087901\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is placing, an initial ordering limit) -> an initial ordering limit (8515ms)\nWhere is the U.S. Mint headquartered?\tSilver Proof Coin\t-10.568167064890908\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Silver Proof Coin, was struck by, the US Mint) -> Silver Proof Coin (8515ms)\nWhere is the U.S. Mint headquartered?\tKlaus\t-10.56896361339207\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Klaus, Instance Of, newly minted chief executive of the US business of Siemens) -> Klaus (10943ms)\nWhere is the U.S. Mint headquartered?\tCarson City Mint\t-10.597491700602598\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Carson City Mint, Instance Of, branch of the US Mint) -> Carson City Mint (10943ms)\nWhere is the U.S. Mint headquartered?\tgold\t-10.600053902068106\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (gold, is obtained by, the US mints) -> gold (8515ms)\nWhere is the U.S. Mint headquartered?\tPlatinum Proof Coin\t-10.600901606045838\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Platinum Proof Coin, was struck by, the US Mint) -> Platinum Proof Coin (8545ms)\nWhere is the U.S. Mint headquartered?\ta Fractional coin\t-10.627628599351972\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is still considering introducing, a Fractional coin) -> a Fractional coin (8545ms)\nWhere is the U.S. Mint headquartered?\texcessive premiums\t-10.629160772406863\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, had been priced at, excessive premiums) -> excessive premiums (8545ms)\nWhere is the U.S. Mint headquartered?\tsilver\t-10.629232422220358\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (silver, were used by, the US mint) -> silver (8544ms)\nWhere is the U.S. Mint headquartered?\tNone Silver American Eagles\t-10.630536946118347\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (None Silver American Eagles, are minted by, the US Mint) -> None Silver American Eagles (8545ms)\nWhere is the U.S. Mint headquartered?\tcoin production figures\t-10.63616980089297\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (coin production figures, are available from, the US Mint) -> coin production figures (8544ms)\nWhere is the U.S. Mint headquartered?\tAmerican currency\t-10.638002741822419\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US mint, is responsible for producing, American currency) -> American currency (8545ms)\nWhere is the U.S. Mint headquartered?\tthe United States congress\t-10.663579895540733\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the United States congress, is backed by, the US Mint) -> the United States congress (8545ms)\nWhere is the U.S. Mint headquartered?\tPocket change\t-10.67595866326297\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Pocket change, is a product of, the US Mint) -> Pocket change (8574ms)\nWhere is the U.S. Mint headquartered?\tthe Newest State Quarters\t-10.681328455201395\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the Newest State Quarters, are released by, the US Mint) -> the Newest State Quarters (8574ms)\nWhere is the U.S. Mint headquartered?\tOnce more information\t-10.684865253508077\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Once more information, is available from, the US Mint) -> Once more information (8574ms)\nWhere is the U.S. Mint headquartered?\tDouble Eagle Gold Coin\t-10.703769366707268\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Double Eagle Gold Coin, was struck by, the US Mint) -> Double Eagle Gold Coin (8574ms)\nWhere is the U.S. Mint headquartered?\tthe James K. Polk Dollar\t-10.70443913440625\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the James K. Polk Dollar, has been revealed by, the US Mint) -> the James K. Polk Dollar (8574ms)\nWhere is the U.S. Mint headquartered?\tfour new Lincoln pennies\t-10.70608599064587\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is releasing, four new Lincoln pennies) -> four new Lincoln pennies (8574ms)\nWhere is the U.S. Mint headquartered?\t?American Gold Eagles ?\t-10.722237756422091\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, are known as, ?American Gold Eagles ?) -> ?American Gold Eagles ? (8574ms)\nWhere is the U.S. Mint headquartered?\tSilver Eagle bullion coins\t-10.728312483449628\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is required to produce, Silver Eagle bullion coins) -> Silver Eagle bullion coins (8574ms)\nWhere is the U.S. Mint headquartered?\tShipping charges\t-10.733496085293632\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Shipping charges, are also covered by, the US Mint) -> Shipping charges (8603ms)\nWhere is the U.S. Mint headquartered?\tAmerican Gold Bullion Coins\t-10.762846289768227\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (American Gold Bullion Coins, are issued by, the US Mint) -> American Gold Bullion Coins (8603ms)\nWhere is the U.S. Mint headquartered?\tPresidential dollar coins\t-10.764679283399971\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Presidential dollar coins, will be issued by, the US Mint) -> Presidential dollar coins (8603ms)\nWhere is the U.S. Mint headquartered?\tpace\t-10.772194896357998\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is on, pace) -> pace (8603ms)\nWhere is the U.S. Mint headquartered?\tSilver Eagle coins\t-10.773521252815526\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Silver Eagle coins, had been sold by, the US Mint) -> Silver Eagle coins (8603ms)\nWhere is the U.S. Mint headquartered?\tthe same way\t-10.800420294647694\tWhere is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, operate in, $x) -> (The U.S. Mint, operates in much, the same way) -> the same way (5053ms)\nWhere is the U.S. Mint headquartered?\tA solid customer base\t-10.880459062550408\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (A solid customer base, is just like owning, the US Mint) -> A solid customer base (8603ms)\nWhere is the U.S. Mint headquartered?\tthe historic French Quarter\t-10.93419755621031\tWhere is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, located in, $x) -> (the old U.S. Mint, located in, the historic French Quarter) -> the historic French Quarter (5245ms)\nWhere is the U.S. Mint headquartered?\tproduction\t-10.98940968180705\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is scaling down, production) -> production (8603ms)\nWhere is the U.S. Mint headquartered?\tpurchases\t-10.994779473745476\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, were to disallow, purchases) -> purchases (8632ms)\nWhere is the U.S. Mint headquartered?\traid\t-11.00172785398216\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (raid, was related to, the US Mint) -> raid (8632ms)\nWhere is the U.S. Mint headquartered?\tmint\t-11.020421195591046\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is legally required to, mint) -> mint (8632ms)\nWhere is the U.S. Mint headquartered?\twonderful approach\t-11.037891783893368\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, wonderful approach) -> wonderful approach (10943ms)\nWhere is the U.S. Mint headquartered?\teffective option\t-11.040263383165598\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, effective option) -> effective option (10944ms)\nWhere is the U.S. Mint headquartered?\tThe U.S. Silver Eagle\t-11.042272107877823\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be in, the us mint) -> (The U.S. Silver Eagle, is minted in, the U.S. Mint) -> The U.S. Silver Eagle (11026ms)\nWhere is the U.S. Mint headquartered?\twonderful technique\t-11.052043579760053\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, wonderful technique) -> wonderful technique (10943ms)\nWhere is the U.S. Mint headquartered?\tgreat approach\t-11.053445780380569\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, great approach) -> great approach (11026ms)\nWhere is the U.S. Mint headquartered?\tfantastic method\t-11.065099186943668\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, fantastic method) -> fantastic method (11026ms)\nWhere is the U.S. Mint headquartered?\texcellent technique\t-11.067153734437483\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, excellent technique) -> excellent technique (11026ms)\nWhere is the U.S. Mint headquartered?\tgood technique\t-11.067634130331191\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, good technique) -> good technique (11026ms)\nWhere is the U.S. Mint headquartered?\tgreat strategy\t-11.068816273704675\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, great strategy) -> great strategy (11026ms)\nWhere is the U.S. Mint headquartered?\tpopular option\t-11.069815371063589\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, popular option) -> popular option (11125ms)\nWhere is the U.S. Mint headquartered?\tpopular method\t-11.06985035989131\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, popular method) -> popular method (11124ms)\nWhere is the U.S. Mint headquartered?\tpopular strategy\t-11.072333806725625\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, popular strategy) -> popular strategy (11125ms)\nWhere is the U.S. Mint headquartered?\tpopular technique\t-11.072343190683624\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, popular technique) -> popular technique (11125ms)\nWhere is the U.S. Mint headquartered?\tsuperb approach\t-11.074174915751561\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, superb approach) -> superb approach (11125ms)\nWhere is the U.S. Mint headquartered?\texcellent strategy\t-11.084035256970969\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, excellent strategy) -> excellent strategy (11125ms)\nWhere is the U.S. Mint headquartered?\tfantastic option\t-11.084580036426036\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, fantastic option) -> fantastic option (11124ms)\nWhere is the U.S. Mint headquartered?\twonderful option\t-11.084986353472628\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, wonderful option) -> wonderful option (11125ms)\nWhere is the U.S. Mint headquartered?\tgood method\t-11.086232385224735\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, good method) -> good method (11256ms)\nWhere is the U.S. Mint headquartered?\tfantastic technique\t-11.08796380392031\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, fantastic technique) -> fantastic technique (11255ms)\nWhere is the U.S. Mint headquartered?\texcellent method\t-11.088001783455649\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, excellent method) -> excellent method (11255ms)\nWhere is the U.S. Mint headquartered?\teffective approach\t-11.08913979918338\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, effective approach) -> effective approach (11255ms)\nWhere is the U.S. Mint headquartered?\teffective technique\t-11.091817242434665\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, effective technique) -> effective technique (11347ms)\nWhere is the U.S. Mint headquartered?\tsuperb method\t-11.092172401221204\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, superb method) -> superb method (11347ms)\nWhere is the U.S. Mint headquartered?\texcellent option\t-11.096680851280315\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, excellent option) -> excellent option (11347ms)\nWhere is the U.S. Mint headquartered?\tways\t-11.101767398537831\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was experimenting on, ways) -> ways (8632ms)\nWhere is the U.S. Mint headquartered?\twonderful method\t-11.105315759013122\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, wonderful method) -> wonderful method (11347ms)\nWhere is the U.S. Mint headquartered?\twonderful strategy\t-11.108355055823488\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, wonderful strategy) -> wonderful strategy (11347ms)\nWhere is the U.S. Mint headquartered?\tgood approach\t-11.112385487846586\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, good approach) -> good approach (11386ms)\nWhere is the U.S. Mint headquartered?\tfantastic strategy\t-11.112390868668896\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, fantastic strategy) -> fantastic strategy (11386ms)\nWhere is the U.S. Mint headquartered?\tgreat method\t-11.112494717313805\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, great method) -> great method (11426ms)\nWhere is the U.S. Mint headquartered?\tpopular approach\t-11.112628323499502\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, popular approach) -> popular approach (11426ms)\nWhere is the U.S. Mint headquartered?\tsuperb strategy\t-11.112967643792668\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, superb strategy) -> superb strategy (11426ms)\nWhere is the U.S. Mint headquartered?\texcellent approach\t-11.113063147873044\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, excellent approach) -> excellent approach (11426ms)\nWhere is the U.S. Mint headquartered?\tgreat technique\t-11.113170859923857\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, great technique) -> great technique (11426ms)\nWhere is the U.S. Mint headquartered?\tsuperb option\t-11.116669350472044\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, superb option) -> superb option (11464ms)\nWhere is the U.S. Mint headquartered?\tgood option\t-11.118131296605714\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, good option) -> good option (11464ms)\nWhere is the U.S. Mint headquartered?\teffective method\t-11.11865765379214\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, effective method) -> effective method (11464ms)\nWhere is the U.S. Mint headquartered?\tgreat option\t-11.121735256174002\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, great option) -> great option (11464ms)\nWhere is the U.S. Mint headquartered?\tgood strategy\t-11.156067314387283\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, good strategy) -> good strategy (11504ms)\nWhere is the U.S. Mint headquartered?\tsuperb technique\t-11.156213167765813\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, superb technique) -> superb technique (11504ms)\nWhere is the U.S. Mint headquartered?\tbold\t-11.159240252441236\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are listed in, bold) -> bold (8632ms)\nWhere is the U.S. Mint headquartered?\tfantastic approach\t-11.161262004371755\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, fantastic approach) -> fantastic approach (11669ms)\nWhere is the U.S. Mint headquartered?\teffective strategy\t-11.162178087531695\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, effective strategy) -> effective strategy (11708ms)\nWhere is the U.S. Mint headquartered?\tline\t-11.196222915209635\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is standing last in, line) -> line (8632ms)\nWhere is the U.S. Mint headquartered?\ttravelers\t-11.22048846334372\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (travelers, were buying coins from, the US Mint) -> travelers (8661ms)\nWhere is the U.S. Mint headquartered?\tProof Sets\t-11.2283940344258\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, offer, the us mint) -> (Proof Sets, were publicly offered by, the U.S. Mint) -> Proof Sets (11708ms)\nWhere is the U.S. Mint headquartered?\table to meet demand\t-11.289968423415594\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was, able to meet demand) -> able to meet demand (8661ms)\nWhere is the U.S. Mint headquartered?\tuncirculated\t-11.385811721366258\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint price, will be $ 1500 for, uncirculated) -> uncirculated (8661ms)\nWhere is the U.S. Mint headquartered?\t10,000 coins\t-11.543077352881339\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, 10,000 coins) -> 10,000 coins (8661ms)\nWhere is the U.S. Mint headquartered?\tnow\t-11.54641384426381\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is done, now) -> now (8661ms)\nWhere is the U.S. Mint headquartered?\t3.34 cents\t-11.61832853496652\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was losing, 3.34 cents) -> 3.34 cents (8661ms)\nWhere is the U.S. Mint headquartered?\t801 9th street\t-11.720895475051098\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, 801 9th street) -> 801 9th street (8661ms)\nWhere is the U.S. Mint headquartered?\t25-coin rolls\t-11.84108178583953\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, 25-coin rolls) -> 25-coin rolls (8688ms)\nWhere is the U.S. Mint headquartered?\t100-coin bags\t-11.86148290470348\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, 100-coin bags) -> 100-coin bags (8688ms)\nWhere is the U.S. Mint headquartered?\tthe proof version\t-11.90421043173744\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, the proof version) -> the proof version (8688ms)\nWhere is the U.S. Mint headquartered?\tthe same\t-11.969835140821061\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US mint, is doing exactly, the same) -> the same (8688ms)\nWhere is the U.S. Mint headquartered?\t2009-dated gold Eagles\t-11.974213472395741\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, will be shipping, 2009-dated gold Eagles) -> 2009-dated gold Eagles (8688ms)\nWhere is the U.S. Mint headquartered?\tthe majority\t-12.000290099167412\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is setting aside, the majority) -> the majority (8688ms)\nWhere is the U.S. Mint headquartered?\table to help you there\t-12.009780104359958\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, should be, able to help you there) -> able to help you there (8688ms)\nWhere is the U.S. Mint headquartered?\t5,000 coins\t-12.037811115681862\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is limiting sales to, 5,000 coins) -> 5,000 coins (8688ms)\nWhere is the U.S. Mint headquartered?\tthe other end\t-12.038673439791095\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US mints, were at, the other end) -> the other end (8715ms)\nWhere is the U.S. Mint headquartered?\tthe rolls\t-12.03949269028095\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is selling, the rolls) -> the rolls (8715ms)\nWhere is the U.S. Mint headquartered?\tthe 10th Anniversary Platinum Eagle Set\t-12.045833466823577\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, the 10th Anniversary Platinum Eagle Set) -> the 10th Anniversary Platinum Eagle Set (8715ms)\nWhere is the U.S. Mint headquartered?\tThe coins\t-12.107575886402106\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The coins, are from, the US Mint) -> The coins (8715ms)\nWhere is the U.S. Mint headquartered?\tthe organizations\t-12.113467434172032\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the organizations, was forwarded to, the US Mint) -> the organizations (8715ms)\nWhere is the U.S. Mint headquartered?\tthe $ 1 coins\t-12.133540711602674\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is trying to get, the $ 1 coins) -> the $ 1 coins (8715ms)\nWhere is the U.S. Mint headquartered?\tJan 04\t-12.138674251091501\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Jan 04, are your thoughts on, the US Mint) -> Jan 04 (8715ms)\nWhere is the U.S. Mint headquartered?\tthe problem\t-12.176672878367446\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is aware of, the problem) -> the problem (8715ms)\nWhere is the U.S. Mint headquartered?\tthe graphics\t-12.19026743603436\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the graphics, are as real as, the US Mint) -> the graphics (8978ms)\nWhere is the U.S. Mint headquartered?\tthe limit\t-12.192007384814918\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, has been right at, the limit) -> the limit (8978ms)\nWhere is the U.S. Mint headquartered?\tthe 2011-W Proof Gold Buffalo\t-12.204341140458965\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the 2011-W Proof Gold Buffalo, is available from, the US Mint) -> the 2011-W Proof Gold Buffalo (8978ms)\nWhere is the U.S. Mint headquartered?\tThe exchanges\t-12.21735597974644\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The exchanges, will be available at, the US Mint sales) -> The exchanges (8978ms)\nWhere is the U.S. Mint headquartered?\tthe production\t-12.235486738592208\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, has been prioritizing, the production) -> the production (8978ms)\nWhere is the U.S. Mint headquartered?\tthe proofs\t-12.267317817947749\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the proofs, are struck at, the US Mint) -> the proofs (8978ms)\nWhere is the U.S. Mint headquartered?\tthe court\t-12.29112659886387\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the court, were delivered to, the US Mint) -> the court (9054ms)\nWhere is the U.S. Mint headquartered?\tthe release\t-12.291921712993911\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is getting ready for, the release) -> the release (9054ms)\nWhere is the U.S. Mint headquartered?\tThe sets\t-12.299968568279427\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The sets, are offered by, the US Mint) -> The sets (9054ms)\nWhere is the U.S. Mint headquartered?\tThe foundation-stone\t-12.306157978491692\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The foundation-stone, was laid for, the US Mint) -> The foundation-stone (9054ms)\nWhere is the U.S. Mint headquartered?\tannually\t-12.325022380899982\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is audited, annually) -> annually (9054ms)\nWhere is the U.S. Mint headquartered?\t100th , 442nd and MIS veterans\t-12.326245708992118\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is inviting, 100th , 442nd and MIS veterans) -> 100th , 442nd and MIS veterans (9054ms)\nWhere is the U.S. Mint headquartered?\tthe coins\t-12.328993448033366\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the coins, are sold directly by, the US Mint) -> the coins (9054ms)\nWhere is the U.S. Mint headquartered?\tthe government\t-12.345365833982543\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the government, was ready to open, the US Mint) -> the government (9097ms)\nWhere is the U.S. Mint headquartered?\tno 2009-dated proof Silver Eagles\t-12.358141409177211\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (no 2009-dated proof Silver Eagles, were released by, the US Mint) -> no 2009-dated proof Silver Eagles (9097ms)\nWhere is the U.S. Mint headquartered?\t9,023,500 American Silver Eagle coins\t-12.363446580286084\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (9,023,500 American Silver Eagle coins, were sold by, the US Mint) -> 9,023,500 American Silver Eagle coins (9097ms)\nWhere is the U.S. Mint headquartered?\tThe cat and mouse\t-12.367470757521431\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The cat and mouse, are outside, the US Mint) -> The cat and mouse (9097ms)\nWhere is the U.S. Mint headquartered?\tThe bullion coins\t-12.373267915940694\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The bullion coins, are distributed through, the US Mint) -> The bullion coins (9097ms)\nWhere is the U.S. Mint headquartered?\tThe coin series\t-12.404741352957227\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The coin series, was first offered by, the US Mint) -> The coin series (9097ms)\nWhere is the U.S. Mint headquartered?\tthe design\t-12.407259672593728\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, has been responsible for, the design) -> the design (9284ms)\nWhere is the U.S. Mint headquartered?\tThe dollar coins\t-12.416037073882027\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The dollar coins, are distributed by, the US Mint) -> The dollar coins (9284ms)\nWhere is the U.S. Mint headquartered?\tthe typical release pattern\t-12.468468132497861\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is reverting to, the typical release pattern) -> the typical release pattern (9284ms)\nWhere is the U.S. Mint headquartered?\tThe new coin catalog\t-12.522011989003879\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The new coin catalog, was delivered to, the US Mint) -> The new coin catalog (9284ms)\nWhere is the U.S. Mint headquartered?\tThe whole roof\t-12.526760604675108\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The whole roof, was off of, the old US Mint) -> The whole roof (9284ms)\nWhere is the U.S. Mint headquartered?\tthe 2010 Kennedy Halves\t-12.543865563403795\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is selling, the 2010 Kennedy Halves) -> the 2010 Kennedy Halves (9284ms)\nWhere is the U.S. Mint headquartered?\tThe newest item\t-12.55328656562407\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The newest item, is a first for, the US Mint) -> The newest item (9348ms)\nWhere is the U.S. Mint headquartered?\tthe gold sale business\t-12.560660982814287\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, has been out of, the gold sale business) -> the gold sale business (9348ms)\nWhere is the U.S. Mint headquartered?\ta 2012 Birth Set\t-12.573044083556047\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, a 2012 Birth Set) -> a 2012 Birth Set (9348ms)\nWhere is the U.S. Mint headquartered?\tThe first American Buffalo gold coin\t-12.612778497849051\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The first American Buffalo gold coin, was issued by, the US Mint) -> The first American Buffalo gold coin (9348ms)\nWhere is the U.S. Mint headquartered?\t2011 Silver\t-12.730987821076091\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, has been selling, 2011 Silver) -> 2011 Silver (9348ms)\nWhere is the U.S. Mint headquartered?\tthe 2009 Proof Silver Eagle\t-12.775140793689419\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the 2009 Proof Silver Eagle, was canceled by, the US Mint) -> the 2009 Proof Silver Eagle (9348ms)\nWhere is the U.S. Mint headquartered?\tApril 2 , 1792\t-13.135893483138776\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, was created on, April 2 , 1792) -> April 2 , 1792 (9348ms)\nWhere is the U.S. Mint headquartered?\tThe next product\t-13.18022056907262\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The next product, to be released by, the US Mint) -> The next product (9348ms)\nWhere is the U.S. Mint headquartered?\t1792\t-13.582231840310822\tWhere is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, was established in, 1792) -> 1792 (9416ms)\nWhen was PBGC established?\t1974\t-0.4642900643429906\tWhen was PBGC established? -> $x: (PBGC, was established in, $x) -> $x: (PBGC, be create in, $x) -> (The PBGC, was created in, 1974) -> 1974 (4667ms)\nWhen was PBGC established?\tPBGC?s Web site\t-6.4380372659542555\tWhen was PBGC established? -> $x: (PBGC, was established on, $x) -> $x: (PBGC, be found on, $x) -> (PBGC?s strategic plan, may be found on, PBGC?s Web site) -> PBGC?s Web site (5678ms)\nWhen was PBGC established?\temployer liability\t-8.126683029055306\tWhen was PBGC established? -> $x: (PBGC, was established on, $x) -> $x: (pbgc, establish on, $x) -> $x: (pbgc, charge on, $x) -> (PBGC, will charge on, employer liability) -> employer liability (7296ms)\nWhen was PBGC established?\tVariable Rate Premiums\t-8.265824596546754\tWhen was PBGC established? -> $x: (PBGC, was established on, $x) -> $x: (pbgc, establish on, $x) -> $x: (pbgc, rule on, $x) -> (the PBGC, issued a Proposed Rule on, Variable Rate Premiums) -> Variable Rate Premiums (7296ms)\nWhen was PBGC established?\tthe interest rate\t-9.857477868943912\tWhen was PBGC established? -> $x: (PBGC, was established on, $x) -> $x: (pbgc, establish on, $x) -> $x: (pbgc, rule on, $x) -> (The PBGC, amends its final rule on, the interest rate) -> the interest rate (7296ms)\nWhen was PBGC established?\tstatute\t-10.276804985385073\tWhen was PBGC established? -> when be [ pbgc ] establish ? -> what do pbgc define ? -> $x: (pbgc, define, $x) -> (the PBGC?s premiums, are defined by, statute) -> statute (7653ms)\nWhen was PBGC established?\tbehalf\t-10.834462648080626\tWhen was PBGC established? -> when be [ pbgc ] establish ? -> when be pbgc be make ? -> $x: (pbgc, be be make on, $x) -> (the PBGC, would be made on, behalf) -> behalf (8135ms)\nWhen was PBGC established?\ta beautiful island\t-11.363233458062751\tWhen was PBGC established? -> [ when be pbgc ] establish ? -> when be pbgc be locate ? -> $x: (pbgc, be be locate on, $x) -> (PBGC, is located on, a beautiful island) -> a beautiful island (8695ms)\nWhen was PBGC established?\tbenefit plans\t-12.274151729618358\tWhen was PBGC established? -> when be [ pbgc ] establish ? -> what do pbgc define ? -> $x: (pbgc, define, $x) -> (the PBGC insures, most defined, benefit plans) -> benefit plans (7653ms)\nWhere is the Kalahari desert?\tAfrica\t-1.4144406648460184\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (The Kalahari Desert, is located in, Africa) -> Africa (3332ms)\nWhere is the Kalahari desert?\tSouthern Africa\t-1.9565594977090286\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari desert, is located in, Southern Africa) -> Southern Africa (3332ms)\nWhere is the Kalahari desert?\tsouthern Africa\t-2.323396828203536\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is in, southern Africa) -> southern Africa (3332ms)\nWhere is the Kalahari desert?\teastern Namibia\t-3.024740906808585\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is located in, eastern Namibia) -> eastern Namibia (3332ms)\nWhere is the Kalahari desert?\tpopularity and usage\t-3.130591269284145\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, are growing in, popularity and usage) -> popularity and usage (3332ms)\nWhere is the Kalahari desert?\ta class\t-3.586212089518628\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is in, a class) -> a class (4270ms)\nWhere is the Kalahari desert?\tAuthorities Concept Scheme\t-3.669785784007915\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Kalahari Desert, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4269ms)\nWhere is the Kalahari desert?\tGeographic Names Concept Scheme\t-3.708770014675814\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Kalahari Desert, In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (4269ms)\nWhere is the Kalahari desert?\tTopical Terms Concept Scheme\t-4.098612321354804\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Brown hyena--Behavior--Kalahari Desert, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4466ms)\nWhere is the Kalahari desert?\tSouth Africa\t-4.255155361905228\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Kalahari Desert, is in, South Africa) -> South Africa (4466ms)\nWhere is the Kalahari desert?\tthe rough ,\t-4.759951512705209\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, was a diamond in, the rough ,) -> the rough , (4480ms)\nWhere is the Kalahari desert?\tthe southwest\t-4.7949864950266665\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (The Kalahari Desert, is located in, the southwest) -> the southwest (4480ms)\nWhere is the Kalahari desert?\tthe same place\t-5.133674029363853\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari desert, have been living in exactly, the same place) -> the same place (4479ms)\nWhere is the Kalahari desert?\tlarge colonies\t-5.527654890092744\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (the Kalahari Desert, live in, large colonies) -> large colonies (4497ms)\nWhere is the Kalahari desert?\tdry stony areas\t-5.672490658387245\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (the Kalahari Desert, sometimes appears in, dry stony areas) -> dry stony areas (4496ms)\nWhere is the Kalahari desert?\tthe Kalahari\t-5.814652388676066\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (The Kalahari Desert Bushman, have lived in, the Kalahari) -> the Kalahari (4496ms)\nWhere is the Kalahari desert?\ta dry bush desert\t-5.992446327970532\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Kalahari Desert, live in, a dry bush desert) -> a dry bush desert (4496ms)\nWhere is the Kalahari desert?\tthe Kalahari Basin\t-6.51811698378752\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (The Kalahari Desert, lies in, the Kalahari Basin) -> the Kalahari Basin (4548ms)\nWhere is the Kalahari desert?\tthe southern areas\t-7.461204689022443\tWhere is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (the Kalahari Desert, located in, the southern areas) -> the southern areas (4548ms)\nWhere is the Kalahari desert?\ta mission station\t-7.52409295973956\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: (the kalaharus desert, name, $x) -> (the Kalahari Desert, was named to head, a mission station) -> a mission station (5505ms)\nWhere is the Kalahari desert?\tBotswana\t-8.90575097265469\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Botswana, is, the Kalahari Desert) -> Botswana (9725ms)\nWhere is the Kalahari desert?\tNamibia\t-9.198904933938094\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is perhaps, Namibia) -> Namibia (9725ms)\nWhere is the Kalahari desert?\tHoodia\t-9.283723367064303\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hoodia, is from, the Kalahari Desert) -> Hoodia (9725ms)\nWhere is the Kalahari desert?\tHawaii\t-9.454507876071638\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hawaii, is antipodal to, the Kalahari Desert) -> Hawaii (9968ms)\nWhere is the Kalahari desert?\tWatermelons\t-9.468590448468811\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Watermelons, are native to, the Kalahari desert) -> Watermelons (9968ms)\nWhere is the Kalahari desert?\tMillions\t-9.823199421408138\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Millions, are displaced as, the Kalahari desert) -> Millions (10054ms)\nWhere is the Kalahari desert?\tthe ?edge\t-9.925754076855569\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, was, the ?edge) -> the ?edge (10099ms)\nWhere is the Kalahari desert?\tFood\t-9.98072404759202\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Food, is available in, the Kalahari desert) -> Food (10099ms)\nWhere is the Kalahari desert?\tHoodia Gordonii\t-9.983210061710706\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hoodia Gordonii, is located in, the Kalahari Desert part) -> Hoodia Gordonii (10099ms)\nWhere is the Kalahari desert?\tWatermelon\t-10.033181705468202\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Watermelon, is native to, the Kalahari Desert) -> Watermelon (10099ms)\nWhere is the Kalahari desert?\tAmerica\t-10.123762129623545\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, were introduced to, America) -> America (10099ms)\nWhere is the Kalahari desert?\tTsodilo\t-10.138858024676328\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Tsodilo, is situated in, the Kalahari Desert) -> Tsodilo (10099ms)\nWhere is the Kalahari desert?\tBushmen\t-10.149632113818743\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Bushmen, live in, the Kalahari Desert) -> Bushmen (7682ms)\nWhere is the Kalahari desert?\tMeerkats\t-10.351721182991604\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Meerkats, live in, the Kalahari Desert) -> Meerkats (7681ms)\nWhere is the Kalahari desert?\tHoodia gordonii\t-10.51554605040268\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hoodia gordonii, is from, the Kalahari Desert) -> Hoodia gordonii (10144ms)\nWhere is the Kalahari desert?\tnuclear power\t-10.650704437068988\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (nuclear power, could be the destruction of, the Kalahari desert) -> nuclear power (10144ms)\nWhere is the Kalahari desert?\tHoodia Stems\t-10.672009671747103\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari deserts, have been eating, Hoodia Stems) -> Hoodia Stems (10218ms)\nWhere is the Kalahari desert?\textraordinary people\t-10.699305946207415\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, are, extraordinary people) -> extraordinary people (10218ms)\nWhere is the Kalahari desert?\ta harsh desert\t-10.708212483750227\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, a harsh desert) -> a harsh desert (10218ms)\nWhere is the Kalahari desert?\tSpringbok\t-10.776031655019443\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what desert be in the kalaharus ? -> $x: ($x, instance of, desert) ($x, be in, the kalaharus) -> (Springbok, Instance Of, desert antelope) (springbok, are abundant in, the Kalahari) -> Springbok (9150ms)\nWhere is the Kalahari desert?\tsand\t-10.807185245004305\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the area of the kalaharus ? -> $x: (the kalaharus, area, $x) -> (The Kalahari, is the largest continuous area of, sand) -> sand (7302ms)\nWhere is the Kalahari desert?\tone such group\t-10.822706608183871\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, are, one such group) -> one such group (10218ms)\nWhere is the Kalahari desert?\tgrassland\t-10.839975078281192\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is savanna, grassland) -> grassland (10218ms)\nWhere is the Kalahari desert?\tgrasses\t-10.9382839471215\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is, grasses) -> grasses (10402ms)\nWhere is the Kalahari desert?\ta vast open space\t-10.940463832671895\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari desert, is, a vast open space) -> a vast open space (10402ms)\nWhere is the Kalahari desert?\thoodia\t-10.952112780074103\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (hoodia, is in, the Kalahari Desert) -> hoodia (10402ms)\nWhere is the Kalahari desert?\tthe San bushmen\t-10.952842600394131\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, is home to, the San bushmen) -> the San bushmen (10402ms)\nWhere is the Kalahari desert?\tdelicate balance\t-10.986014694027345\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the area of the kalaharus ? -> $x: (the kalaharus, area, $x) -> (The Central Kalahari, is an area of, delicate balance) -> delicate balance (7302ms)\nWhere is the Kalahari desert?\ta principle home\t-10.999610722729127\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari desert, is, a principle home) -> a principle home (10402ms)\nWhere is the Kalahari desert?\tAn exception\t-11.030944683631779\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (An exception, is, the the Kalahari Desert) -> An exception (10402ms)\nWhere is the Kalahari desert?\tindigenous tribes\t-11.080078003652126\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, was once used by, indigenous tribes) -> indigenous tribes (10490ms)\nWhere is the Kalahari desert?\tassociate DHEA\t-11.092610411772675\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (associate DHEA, is found in, the Kalahari Desert) -> associate DHEA (10490ms)\nWhere is the Kalahari desert?\tan important and forgotten storehouse\t-11.095501635072951\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, are, an important and forgotten storehouse) -> an important and forgotten storehouse (10490ms)\nWhere is the Kalahari desert?\tostrich eggshells\t-11.095755010988649\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (ostrich eggshells, are common around, the Kalahari Desert) -> ostrich eggshells (10490ms)\nWhere is the Kalahari desert?\tSusie\t-11.125568959254117\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Susie, spends summer in, the Kalahari Desert) -> Susie (7704ms)\nWhere is the Kalahari desert?\tthe Southwest\t-11.143307584207353\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is expanding to, the Southwest) -> the Southwest (10490ms)\nWhere is the Kalahari desert?\tred sand dunes\t-11.14583632423574\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is characterised by, red sand dunes) -> red sand dunes (10490ms)\nWhere is the Kalahari desert?\tthe San\t-11.147430706472793\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is the native place for, the San) -> the San (10490ms)\nWhere is the Kalahari desert?\tdry river-beds\t-11.152735877581666\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is crossed by, dry river-beds) -> dry river-beds (10490ms)\nWhere is the Kalahari desert?\tan extraordinary natural phenomenon\t-11.153620063982764\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is, an extraordinary natural phenomenon) -> an extraordinary natural phenomenon (10537ms)\nWhere is the Kalahari desert?\tan extreme realm\t-11.180443887374064\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, an extreme realm) -> an extreme realm (10537ms)\nWhere is the Kalahari desert?\tprevious excavations\t-11.190538158623905\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, has been the scene of, previous excavations) -> previous excavations (10537ms)\nWhere is the Kalahari desert?\tthe San Bushmen\t-11.20032893527011\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, were highly beneficial for, the San Bushmen) -> the San Bushmen (10537ms)\nWhere is the Kalahari desert?\ta new concession\t-11.203925753347855\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> where be the kalaharus locate ? -> $x: (the kalaharus, be locate in, $x) -> (The Kalahari Plains Camp, is located in, a new concession) -> a new concession (10537ms)\nWhere is the Kalahari desert?\ta classic , maybe cliche example\t-11.22086429370085\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, are, a classic , maybe cliche example) -> a classic , maybe cliche example (10537ms)\nWhere is the Kalahari desert?\tivory poachers\t-11.225240111112894\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, are disrupted by, ivory poachers) -> ivory poachers (10580ms)\nWhere is the Kalahari desert?\tweight\t-11.22977015620964\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, could be key to, weight) -> weight (10580ms)\nWhere is the Kalahari desert?\tHoodia stems\t-11.231429468622865\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Deserts, have been eating, Hoodia stems) -> Hoodia stems (10580ms)\nWhere is the Kalahari desert?\tthe Namib\t-11.246460848250688\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is very different to, the Namib) -> the Namib (10580ms)\nWhere is the Kalahari desert?\ta vast and open space\t-11.255020041013418\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, a vast and open space) -> a vast and open space (10580ms)\nWhere is the Kalahari desert?\trugged beauty\t-11.255737833063908\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the area of the kalaharus ? -> $x: (the kalaharus, area, $x) -> (The Kalahari Gemsbok National Park, is an area of, rugged beauty) -> rugged beauty (7302ms)\nWhere is the Kalahari desert?\tthe Bushveld\t-11.26231184615235\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (the Bushveld, is the southern basin of, the Kalahari Desert) -> the Bushveld (10580ms)\nWhere is the Kalahari desert?\ttsama melons\t-11.263499212075393\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, have been seen eating, tsama melons) -> tsama melons (10620ms)\nWhere is the Kalahari desert?\tan organic powder\t-11.271655802783897\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (an organic powder, is only found in, the Kalahari Desert) -> an organic powder (10620ms)\nWhere is the Kalahari desert?\ta slender column cactus\t-11.27342417558609\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (a slender column cactus, is found in, the Kalahari Desert) -> a slender column cactus (10620ms)\nWhere is the Kalahari desert?\tan episode\t-11.281828778615205\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, was the site of, an episode) -> an episode (10620ms)\nWhere is the Kalahari desert?\tthe San people\t-11.282951523708697\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, has been home to, the San people) -> the San people (10620ms)\nWhere is the Kalahari desert?\ttime\t-11.28601171528912\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is a lot of, time) -> time (10620ms)\nWhere is the Kalahari desert?\tmiraculous\t-11.294983650655997\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is nothing short of, miraculous) -> miraculous (10620ms)\nWhere is the Kalahari desert?\tcourse Upington\t-11.308071910209048\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (course Upington, is your gateway to, the Kalahari desert) -> course Upington (10702ms)\nWhere is the Kalahari desert?\tDevil?s Claw\t-11.310058544239105\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Devil?s Claw, is indigenous to, the Kalahari Desert) -> Devil?s Claw (10702ms)\nWhere is the Kalahari desert?\tSan tribe\t-11.32382348557843\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is a native place of, San tribe) -> San tribe (10702ms)\nWhere is the Kalahari desert?\tpoor or damaged women\t-11.326712297231317\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, is a refuge for, poor or damaged women) -> poor or damaged women (10702ms)\nWhere is the Kalahari desert?\tNatural hoodia\t-11.330395042273505\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Natural hoodia, is found in, the Kalahari Desert) -> Natural hoodia (10702ms)\nWhere is the Kalahari desert?\ta cactus plant\t-11.332466594597644\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (a cactus plant, is found in, the Kalahari Desert) -> a cactus plant (10702ms)\nWhere is the Kalahari desert?\ta year-out\t-11.336649020613027\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (a year-out, was traveling in, the Kalahari Desert) -> a year-out (10702ms)\nWhere is the Kalahari desert?\tagriculture\t-11.345443556195464\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Australian or Kalahari desert, is to, agriculture) -> agriculture (10824ms)\nWhere is the Kalahari desert?\ta wider area\t-11.361645167452192\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is part of, a wider area) -> a wider area (10824ms)\nWhere is the Kalahari desert?\tweight loss success\t-11.367908168981824\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, could be the key to, weight loss success) -> weight loss success (10824ms)\nWhere is the Kalahari desert?\tthe Hoodia Gordonii plant\t-11.374908121575524\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, has been using, the Hoodia Gordonii plant) -> the Hoodia Gordonii plant (10824ms)\nWhere is the Kalahari desert?\tJack?s Camp\t-11.377552871356258\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Jack?s Camp, is located deep in, the Kalahari Desert) -> Jack?s Camp (10824ms)\nWhere is the Kalahari desert?\tSalt Pan Salt pans\t-11.390823687604444\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Salt Pan Salt pans, can be found throughout, the Kalahari Desert) -> Salt Pan Salt pans (10824ms)\nWhere is the Kalahari desert?\tsatan\t-11.395321057654007\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (satan, were located in, the Kalahari Desert) -> satan (10824ms)\nWhere is the Kalahari desert?\tan advanced fat burner\t-11.40097726260423\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is also, an advanced fat burner) -> an advanced fat burner (10824ms)\nWhere is the Kalahari desert?\ta natural remedy\t-11.40320245532668\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is used as, a natural remedy) -> a natural remedy (10859ms)\nWhere is the Kalahari desert?\tCraig\t-11.404482364928384\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, have, the kalaharus desert) -> (Craig, has also driven across, the Kalahari Desert) -> Craig (10859ms)\nWhere is the Kalahari desert?\tHoodia plant\t-11.408050806515297\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hoodia plant, is seen in, the great Kalahari Desert) -> Hoodia plant (10859ms)\nWhere is the Kalahari desert?\tfascinating species\t-11.408507626435554\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari desert region, is home to, fascinating species) -> fascinating species (10859ms)\nWhere is the Kalahari desert?\ta succulent plant\t-11.411095670213884\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (a succulent plant, is found in, the Kalahari Desert) -> a succulent plant (10858ms)\nWhere is the Kalahari desert?\tThe Bukakhwe San people\t-11.44475974320117\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (The Bukakhwe San people, are indigenous to, the Kalahari Desert) -> The Bukakhwe San people (11090ms)\nWhere is the Kalahari desert?\tthe Khoikhoi and San\t-11.449180727908947\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, were left to, the Khoikhoi and San) -> the Khoikhoi and San (11090ms)\nWhere is the Kalahari desert?\tDeception Valley\t-11.449747876962675\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Deception Valley, lies in, the scenic Kalahari Desert) -> Deception Valley (7722ms)\nWhere is the Kalahari desert?\tSunny Meerkat\t-11.455321410558987\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Sunny Meerkat, lives in, the Kalahari desert) -> Sunny Meerkat (7722ms)\nWhere is the Kalahari desert?\tDevil?s Claw\t-11.464212107536769\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Devil?s Claw, is found in, the harsh Kalahari Desert) -> Devil?s Claw (11090ms)\nWhere is the Kalahari desert?\tappetite\t-11.468650173836387\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, has been shown to suppress, appetite) -> appetite (11090ms)\nWhere is the Kalahari desert?\ta daily challenge\t-11.492193860840057\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the inhospitable KalahariDesert, is, a daily challenge) -> a daily challenge (11090ms)\nWhere is the Kalahari desert?\ta game preserve\t-11.500663031996428\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, was officially turned into, a game preserve) -> a game preserve (11090ms)\nWhere is the Kalahari desert?\tred-brown sands\t-11.500956131592863\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the area of the kalaharus ? -> $x: (the kalaharus, area, $x) -> (The Kalahari, has vast areas covered by, red-brown sands) -> red-brown sands (7302ms)\nWhere is the Kalahari desert?\teastern and southern Namibia\t-11.515694358921955\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (eastern and southern Namibia, is covered by, the Kalahari Desert) -> eastern and southern Namibia (11143ms)\nWhere is the Kalahari desert?\ta vast and almost unpopulated area\t-11.537799335163138\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, a vast and almost unpopulated area) -> a vast and almost unpopulated area (11143ms)\nWhere is the Kalahari desert?\tDq?e Qare Game Reserve\t-11.566093668914293\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Dq?e Qare Game Reserve, is located in, the Kalahari Desert) -> Dq?e Qare Game Reserve (11143ms)\nWhere is the Kalahari desert?\tthe San or Bushmen\t-11.582893421344309\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is the last refuge of, the San or Bushmen) -> the San or Bushmen (11215ms)\nWhere is the Kalahari desert?\tUTC+02:00\t-11.590893965101625\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (UTC+02:00, Locations in this time zone, Kalahari Desert) -> UTC+02:00 (7722ms)\nWhere is the Kalahari desert?\tcamels\t-11.632226766131053\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (camels, were also introduced into, the Kalahari desert region) -> camels (11216ms)\nWhere is the Kalahari desert?\tHabitat Meerkats\t-11.653838514035035\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Habitat Meerkats, live in, the Kalahari Desert) -> Habitat Meerkats (7722ms)\nWhere is the Kalahari desert?\ta desert\t-11.700482102403322\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is called, a desert) -> a desert (11259ms)\nWhere is the Kalahari desert?\tplant\t-11.748589024271977\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (plant, is found in, the kalahari desert) -> plant (11258ms)\nWhere is the Kalahari desert?\tthe Ju/'hoansi\t-11.806600689896623\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (the Ju/'hoansi, live in, the Kalahari Desert) -> the Ju/'hoansi (7741ms)\nWhere is the Kalahari desert?\tThe Bushmen\t-11.810168714370388\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (The Bushmen, have lived in, the Kalahari Desert) -> The Bushmen (7741ms)\nWhere is the Kalahari desert?\tCommment Hoodia\t-11.848780017541358\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Commment Hoodia, grows in, Kalahari Desert) -> Commment Hoodia (7756ms)\nWhere is the Kalahari desert?\tsparrow-sized birds\t-11.870064343915873\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (sparrow-sized birds, live in, the Kalahari desert) -> sparrow-sized birds (7756ms)\nWhere is the Kalahari desert?\ta cactus-like plant\t-11.874946488908027\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a cactus-like plant, can be seen in, Kalahari Desert) -> a cactus-like plant (7756ms)\nWhere is the Kalahari desert?\ta normal plant\t-11.877599048111316\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a normal plant, can be found in, Kalahari Desert) -> a normal plant (7756ms)\nWhere is the Kalahari desert?\tthe Beholder\t-11.942310367623266\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (the Beholder, lived in, the Kalahari desert) -> the Beholder (7756ms)\nWhere is the Kalahari desert?\tpill form\t-11.95189472475049\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (pill form, grows in, the Kalahari Desert) -> pill form (7756ms)\nWhere is the Kalahari desert?\tthe Tsodilo Hills\t-11.951926597831172\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is known as, the Tsodilo Hills) -> the Tsodilo Hills (11430ms)\nWhere is the Kalahari desert?\tan African plant\t-11.977146757276667\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (an African plant, grows in, the Kalahari Desert) -> an African plant (7773ms)\nWhere is the Kalahari desert?\tnatives\t-11.98289861394587\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the harsh Kalahari Desert, is used by, natives) -> natives (11462ms)\nWhere is the Kalahari desert?\ta paleodesert\t-11.985328132816372\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is also, a paleodesert) -> a paleodesert (11462ms)\nWhere is the Kalahari desert?\ta small mammal\t-12.043461580595629\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a small mammal, live in, the Kalahari Desert) -> a small mammal (7773ms)\nWhere is the Kalahari desert?\ta host\t-12.069142427542118\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the semi-arid Kalahari desert, is home to, a host) -> a host (11462ms)\nWhere is the Kalahari desert?\tthe Okavango Delta\t-12.094745963574503\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is the magical oasis of, the Okavango Delta) -> the Okavango Delta (11462ms)\nWhere is the Kalahari desert?\tmillions\t-12.106783491166416\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (millions, are displaced as, the Kalahari desert expands) -> millions (11462ms)\nWhere is the Kalahari desert?\tcenturies\t-12.107022102561107\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, has actually been used for, centuries) -> centuries (11501ms)\nWhere is the Kalahari desert?\tpart of the huge sand basin\t-12.11510015862989\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is, part of the huge sand basin) -> part of the huge sand basin (11501ms)\nWhere is the Kalahari desert?\tyucca plant\t-12.135206560273891\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what desert be in the kalaharus ? -> $x: ($x, instance of, desert) ($x, be in, the kalaharus) -> (yucca plant, Instance Of, desert plant) (a cactus plant, is found in, the Kalahari Desert) -> yucca plant (11501ms)\nWhere is the Kalahari desert?\ta small ceremony\t-12.157005587316185\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a small ceremony, recently held in, the Kalahari desert) -> a small ceremony (7773ms)\nWhere is the Kalahari desert?\tThe Hoodia Gordonii plant\t-12.172791187393782\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (The Hoodia Gordonii plant, grows in, the Kalahari Desert region) -> The Hoodia Gordonii plant (7901ms)\nWhere is the Kalahari desert?\tcactus plant\t-12.18338397502447\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what desert be in the kalaharus ? -> $x: ($x, instance of, desert) ($x, be in, the kalaharus) -> (cactus plant, Instance Of, desert plant) (a cactus plant, is found in, the Kalahari Desert) -> cactus plant (11501ms)\nWhere is the Kalahari desert?\tEven Bushmen\t-12.184838760782966\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Even Bushmen, clapped in, the Kalahari Desert) -> Even Bushmen (7901ms)\nWhere is the Kalahari desert?\tthe Bushman\t-12.203797991587964\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, have, the kalaharus desert) -> (the Bushman, has to live in, the Kalahari Desert) -> the Bushman (11501ms)\nWhere is the Kalahari desert?\ta rare species\t-12.22084827485477\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, collect from, kalaharus desert) -> (a rare species, collected from, the Kalahari Desert) -> a rare species (7901ms)\nWhere is the Kalahari desert?\ta cactus-like , succulent plant\t-12.257138030242801\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a cactus-like , succulent plant, found in, the Kalahari Desert) -> a cactus-like , succulent plant (7901ms)\nWhere is the Kalahari desert?\tAn anthropologist\t-12.26399351210854\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (An anthropologist, did a study in, the Kalahari desert) -> An anthropologist (7901ms)\nWhere is the Kalahari desert?\t362,500 square miles\t-12.302286463867379\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is, 362,500 square miles) -> 362,500 square miles (11542ms)\nWhere is the Kalahari desert?\tmedicine\t-12.316178276494913\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: (kalaharus desert, plant, $x) -> (Kalahari Desert, have been using this plant as, medicine) -> medicine (7901ms)\nWhere is the Kalahari desert?\tAn appetite suppressant\t-12.33043355180418\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (An appetite suppressant, found in, the African Kalahari desert) -> An appetite suppressant (7918ms)\nWhere is the Kalahari desert?\tthe honey\t-12.34785410094675\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, are, the honey) -> the honey (11542ms)\nWhere is the Kalahari desert?\tthousands\t-12.35566508797853\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: (kalaharus desert, plant, $x) -> (the Kalahari desert, have used the plant for, thousands) -> thousands (7918ms)\nWhere is the Kalahari desert?\tjust pure hoodia\t-12.372586200577674\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, originate from, kalaharus desert) -> (just pure hoodia, originates from, Kalahari Desert) -> just pure hoodia (7918ms)\nWhere is the Kalahari desert?\tSan Camp\t-12.375088970411397\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (San Camp, is located deep in, the Kalahari Desert) -> San Camp (11542ms)\nWhere is the Kalahari desert?\tThe plant\t-12.408789466090402\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (The plant, is native to, the Kalahari Desert) -> The plant (11542ms)\nWhere is the Kalahari desert?\tthe plant\t-12.431147862698479\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (the plant, is grown in, Kalahari Desert) -> the plant (7918ms)\nWhere is the Kalahari desert?\tjuicy cactus\t-12.450580693145579\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (juicy cactus, found in, Kalahari Desert) -> juicy cactus (7918ms)\nWhere is the Kalahari desert?\tThe BBC\t-12.507440526269722\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, have, the kalaharus desert) -> (The BBC, may have traveled deep into, the Kalahari Desert) -> The BBC (11616ms)\nWhere is the Kalahari desert?\tone of the worlds\t-12.514305966062686\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, one of the worlds) -> one of the worlds (11616ms)\nWhere is the Kalahari desert?\ta succulent\t-12.60709478471298\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a succulent, only grows in, the Kalahari desert) -> a succulent (7918ms)\nWhere is the Kalahari desert?\ta 250,000 sq\t-12.61096585987287\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the deep Kalahari desert, is, a 250,000 sq) -> a 250,000 sq (11616ms)\nWhere is the Kalahari desert?\tthe country\t-12.62460797554374\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (the country, are, the Kalahari Desert) -> the country (11649ms)\nWhere is the Kalahari desert?\tspringbok\t-12.66158677326348\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what desert be in the kalaharus ? -> $x: ($x, instance of, desert) ($x, be in, the kalaharus) -> (springbok, Instance Of, desert species) (springbok, are abundant in, the Kalahari) -> springbok (11648ms)\nWhere is the Kalahari desert?\tgreat\t-12.673112743024618\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (great, affect in, the Kalahari Desert) -> great (11649ms)\nWhere is the Kalahari desert?\t900,000 sq\t-12.68288376944534\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is over, 900,000 sq) -> 900,000 sq (11648ms)\nWhere is the Kalahari desert?\tnight\t-12.729701410526928\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (night, walks in, the Kalahari Desert) -> night (11721ms)\nWhere is the Kalahari desert?\tthe deserts\t-12.736673642556498\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is one of, the deserts) -> the deserts (11721ms)\nWhere is the Kalahari desert?\ta leopardess\t-12.749850252466995\tWhere is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a leopardess, survive in, the Kalahari Desert) -> a leopardess (11721ms)\nWhere is the Kalahari desert?\t70 %\t-12.754568752486716\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (70 %, is covered by, the Kalahari Desert) -> 70 % (11721ms)\nWhere is the Kalahari desert?\tthe largest continuous stretch\t-12.755311519760758\tWhere is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, the largest continuous stretch) -> the largest continuous stretch (11721ms)\nWhat year was the phonograph invented?\t1877\t-3.2086469146632726\tWhat year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> (The phonograph, was invented in, 1877) -> 1877 (12130ms)\nWhat year was the phonograph invented?\tThomas Edison Invents The Light Bulb! The Phonograph! (Part 1)\t-3.8535095317573047\tWhat year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: (the phonograph invented, record, $x) -> (Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1), Recording, Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1)) -> Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1) (12446ms)\nWhat year was the phonograph invented?\tThomas Edison Invents The Light Bulb! The Phonograph! (Part 2)\t-3.8535095317573047\tWhat year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: (the phonograph invented, record, $x) -> (Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2), Recording, Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2)) -> Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2) (12447ms)\nWhat year was the phonograph invented?\tThomas Edison Invents the Light Bulb! The Phonograph! (Part 2)\t-3.8535095317573047\tWhat year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: (the phonograph invented, record, $x) -> (Thomas Edison Invents the Light Bulb! The Phonograph! (Part 2), Recording, Thomas Edison Invents the Light Bulb! The Phonograph! (Part 2)) -> Thomas Edison Invents the Light Bulb! The Phonograph! (Part 2) (12446ms)\nWhat year was the phonograph invented?\tThomas Edison Invents the Light Bulb! The Phonograph! (Part 1)\t-3.8535095317573047\tWhat year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: ($x, version, the phonograph invented) -> (Thomas Edison Invents the Light Bulb! The Phonograph! (Part 1), Versions, Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1)) -> Thomas Edison Invents the Light Bulb! The Phonograph! (Part 1) (12672ms)\nWhat year was the phonograph invented?\tStan Freberg\t-4.666206176893622\tWhat year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: (the phonograph invented, record, $x) -> (Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2), Recorded by, Stan Freberg) -> Stan Freberg (12622ms)\nWhat year was the phonograph invented?\tthe 1820s\t-4.809943311183133\tWhat year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> (the phonograph, actually had been invented in, the 1820s) -> the 1820s (12130ms)\nWhat year was the phonograph invented?\tthe 18th century\t-4.871590781679366\tWhat year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> (The phonograph, was invented in, the 18th century) -> the 18th century (12130ms)\nWhat year was the phonograph invented?\t1912\t-5.803051971668819\tWhat year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> $x: (the phonograph, be develop in, $x) -> (The Edison Disc Phonograph, was developed in, 1912) -> 1912 (16127ms)\nWhat year was the phonograph invented?\tEdison\t-5.911363088320591\tWhat year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: ($x, instance of, year) (phonograph, invent, $x) -> (Edison, Instance Of, second year man) (phonograph or Gramophone, invented by, Edison) -> Edison (4076ms)\nWhat year was the phonograph invented?\tFall 2003\t-6.42505998990267\tWhat year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> $x: (the phonograph, be be release in, $x) -> (the phonograph and branding, was released in, Fall 2003) -> Fall 2003 (16074ms)\nWhat year was the phonograph invented?\tFirst\t-6.708329268421062\tWhat year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: ($x, instance of, year) (the phonograph, be marketing, $x) -> (First, Instance Of, one year certificate-program) (the phonograph, was marketed, first) -> First (7677ms)\nWhat year was the phonograph invented?\tFIRST\t-7.103120905491909\tWhat year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: ($x, instance of, year) (the phonograph, be marketing, $x) -> (FIRST, Instance Of, three year postdoctoral program) (the phonograph, was marketed, first) -> FIRST (7943ms)\nWhat year was the phonograph invented?\tthe Year ?\t-7.7716999918788945\tWhat year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: ($x, modelling, year) (the phonograph, invented, $x) -> (the Year ?, had a pro model for, seven years) (the phonograph, was invented, the year) -> the Year ? (10245ms)\nWhat year was the phonograph invented?\texistence\t-7.801775112112679\tWhat year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> $x: (the phonograph, be popular in, $x) -> (the phonograph, was the most popular technology in, existence) -> existence (15937ms)\nWhat year was the phonograph invented?\tthe year\t-9.169726713197708\tWhat year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: (year, element, $x) (the phonograph, invented, $x) -> (20 years-old, still has elements of, the year) (the phonograph, was invented, the year) -> the year (10176ms)\nWhat team drafted Brett Favre?\tthe Falcons\t-6.14926749205712\tWhat team drafted Brett Favre? -> $x: ($x, instance of, team) ($x, drafted, Brett Favre) -> $x: ($x, be the type of, team) ($x, drafted, Brett Favre) -> (the Falcons, are the type of, team) (the Falcons, drafted, Brett Favre) -> the Falcons (2995ms)\nWhat is the inner peel of an orange called?\tBlend\t-9.700258568251698\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange, peeled, Blend) -> Blend (297ms)\nWhat is the inner peel of an orange called?\ta man\t-9.834975575943112\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange, is peeled by, a man) -> a man (297ms)\nWhat is the inner peel of an orange called?\ta vegetable peeler\t-10.431222702857228\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange skin, peeled with, a vegetable peeler) -> a vegetable peeler (297ms)\nWhat is the inner peel of an orange called?\tessential oil\t-10.861967288748138\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, essential oil) -> essential oil (760ms)\nWhat is the inner peel of an orange called?\ttea\t-10.991084959647912\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, tea) -> tea (760ms)\nWhat is the inner peel of an orange called?\tan adsorbent\t-11.223307148348747\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel as, an adsorbent) -> an adsorbent (760ms)\nWhat is the inner peel of an orange called?\told fashioned\t-11.345201541423911\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange, peel, old fashioned) -> old fashioned (760ms)\nWhat is the inner peel of an orange called?\tside\t-11.48687404344703\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange slice, peel, side) -> side (297ms)\nWhat is the inner peel of an orange called?\tfree motion\t-11.551219411886624\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the orange, peel, free motion) -> free motion (760ms)\nWhat is the inner peel of an orange called?\ta little\t-11.574376283894772\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (this hot the orange backing tape, peel, a little) -> a little (760ms)\nWhat is the inner peel of an orange called?\t? skin\t-11.586898394213977\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (your dimply ?orange, peeled, ? skin) -> ? skin (790ms)\nWhat is the inner peel of an orange called?\toil\t-11.648974795296654\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Ginger and Orange, peel, oil) -> oil (790ms)\nWhat is the inner peel of an orange called?\tblock pattern\t-11.687584664525275\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the classic orange, peel, block pattern) -> block pattern (790ms)\nWhat is the inner peel of an orange called?\tice\t-11.701034301903903\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (1 orange, peeled, ice) -> ice (790ms)\nWhat is the inner peel of an orange called?\tRe\t-11.727793405247878\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peels, Re) -> Re (790ms)\nWhat is the inner peel of an orange called?\tsuch a way\t-11.760322010137457\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Oranges, were carefully peeled in, such a way) -> such a way (790ms)\nWhat is the inner peel of an orange called?\ta long strip\t-11.778435330801333\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the orange, peel, a long strip) -> a long strip (790ms)\nWhat is the inner peel of an orange called?\tSteps\t-11.778551836413927\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, Steps) -> Steps (790ms)\nWhat is the inner peel of an orange called?\tseveral ?sachets\t-11.795800826254448\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (powdered dry orange, peel, several ?sachets) -> several ?sachets (816ms)\nWhat is the inner peel of an orange called?\tcolor and pulp color\t-11.799534392763356\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (a large orange, peel, color and pulp color) -> color and pulp color (816ms)\nWhat is the inner peel of an orange called?\tSteep tea\t-11.830132234862166\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Fair Trade Certified honey Thick orange, peel, Steep tea) -> Steep tea (816ms)\nWhat is the inner peel of an orange called?\tthe layer\t-11.855299216353327\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (An evil orange--you, peel away, the layer) -> the layer (298ms)\nWhat is the inner peel of an orange called?\t? navel orange\t-11.87007343258787\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange Extract, Thinly peel, ? navel orange) -> ? navel orange (816ms)\nWhat is the inner peel of an orange called?\t20mg\t-11.882173983734782\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, 20mg) -> 20mg (816ms)\nWhat is the inner peel of an orange called?\tPlace all ingredients\t-11.899680810200676\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Nutmeg 3 pieces Orange, peels, Place all ingredients) -> Place all ingredients (816ms)\nWhat is the inner peel of an orange called?\taluminum reflector\t-11.937952286739769\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, aluminum reflector) -> aluminum reflector (816ms)\nWhat is the inner peel of an orange called?\tBrew tea\t-11.94283900244858\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (cinnamon stick and orange, peel, Brew tea) -> Brew tea (816ms)\nWhat is the inner peel of an orange called?\touter skin\t-11.971191796115134\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Marinated oranges Preparation, peel, outer skin) -> outer skin (846ms)\nWhat is the inner peel of an orange called?\tholy yumminess\t-12.004503815823346\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (candy orange, peels, holy yumminess) -> holy yumminess (846ms)\nWhat is the inner peel of an orange called?\tcancer studies\t-12.095637232046732\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel extract has been used in, cancer studies) -> cancer studies (846ms)\nWhat is the inner peel of an orange called?\t4x6\t-12.117464959807947\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Monday Feb252008 orange, peeled, 4x6) -> 4x6 (846ms)\nWhat is the inner peel of an orange called?\teach quarter\t-12.134701017413626\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Oranges, peel, each quarter) -> each quarter (846ms)\nWhat is the inner peel of an orange called?\tPeel\t-12.141085145028207\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (! Orange, peel, Peel) -> Peel (846ms)\nWhat is the inner peel of an orange called?\t1 carrot\t-12.14962779462714\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (1 orange, peeled, 1 carrot) -> 1 carrot (869ms)\nWhat is the inner peel of an orange called?\tquality\t-12.151901016672927\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an exotic orange, peel, quality) -> quality (297ms)\nWhat is the inner peel of an orange called?\t50 grams butter Extract fresh orange juice\t-12.166781903771941\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, 50 grams butter Extract fresh orange juice) -> 50 grams butter Extract fresh orange juice (869ms)\nWhat is the inner peel of an orange called?\t1/2\t-12.172777189116157\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange Champagne, Thinly peel, 1/2) -> 1/2 (869ms)\nWhat is the inner peel of an orange called?\t250g small strawberries\t-12.23548208234803\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (2 large oranges, peeled, 250g small strawberries) -> 250g small strawberries (868ms)\nWhat is the inner peel of an orange called?\tDirections\t-12.24188775891297\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, Directions) -> Directions (869ms)\nWhat is the inner peel of an orange called?\tthe Ginger\t-12.245197237670993\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the Oranges, peel, the Ginger) -> the Ginger (869ms)\nWhat is the inner peel of an orange called?\t1 tsp\t-12.277039370222518\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Procedure .5 oz Orange, peel, 1 tsp) -> 1 tsp (869ms)\nWhat is the inner peel of an orange called?\trough or dead skin\t-12.288894035619087\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, be rub, $x) -> (an orange, can be rubbed against, rough or dead skin) -> rough or dead skin (979ms)\nWhat is the inner peel of an orange called?\ta railroad track\t-12.315244919821417\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange pennies, peeled off, a railroad track) -> a railroad track (869ms)\nWhat is the inner peel of an orange called?\tMadge\t-12.322761375380889\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (That orange, was peeled for, Madge) -> Madge (892ms)\nWhat is the inner peel of an orange called?\t1 tablespoon fresh rosemary\t-12.333770974179584\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (nytimes.com 2 navel oranges, peeled, 1 tablespoon fresh rosemary) -> 1 tablespoon fresh rosemary (892ms)\nWhat is the inner peel of an orange called?\t4 c Sifted flour\t-12.34971112488482\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (1 tb Orange, peel, 4 c Sifted flour) -> 4 c Sifted flour (892ms)\nWhat is the inner peel of an orange called?\t1/2 cup\t-12.359505178800532\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (blood orange and chia seed jam Ingredients, peeled, 1/2 cup) -> 1/2 cup (892ms)\nWhat is the inner peel of an orange called?\tpapery flakes\t-12.378700672670861\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (beautiful reddish-orange bark, peels in, papery flakes) -> papery flakes (892ms)\nWhat is the inner peel of an orange called?\t4 cups fresh soft crumbs\t-12.519844741806141\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (finely grated orange, peel, 4 cups fresh soft crumbs) -> 4 cups fresh soft crumbs (892ms)\nWhat is the inner peel of an orange called?\ta lot of attention\t-12.592943781731861\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, be be draw, $x) -> (The specter of an orange, is drawing, a lot of attention) -> a lot of attention (892ms)\nWhat is the inner peel of an orange called?\tStrain\t-12.672577842983188\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Jared Sadoian 1.00 ea Orange, peel, Strain) -> Strain (915ms)\nWhat is the inner peel of an orange called?\tnow\t-12.983447763167778\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange, peels, now) -> now (915ms)\nWhat is the inner peel of an orange called?\ta skydiver\t-13.06440572865059\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, just fall, $x) -> (An average orange, falls just as fast as, a skydiver) -> a skydiver (979ms)\nWhat is the inner peel of an orange called?\tthe orange rind\t-13.199961296470368\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (1 orange, will be peeled for, the orange rind) -> the orange rind (915ms)\nWhat is the inner peel of an orange called?\tthe oranges\t-13.205305926129906\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (6 oranges, peel, the oranges) -> the oranges (915ms)\nWhat is the inner peel of an orange called?\tthe orange zest\t-13.290979795446372\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (SOUR ORANGE MARMALADE 1, Carefully peel, the orange zest) -> the orange zest (915ms)\nWhat is the inner peel of an orange called?\thand\t-13.301240410534028\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (The oranges, can be peeled easily by, hand) -> hand (915ms)\nWhat is the inner peel of an orange called?\tthe fruit\t-13.350415882419755\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (one orange, peel, the fruit) -> the fruit (915ms)\nWhat is the inner peel of an orange called?\tthe rest\t-13.390358437890363\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the oranges, peeled, the rest) -> the rest (932ms)\nWhat is the inner peel of an orange called?\ta yellow colour\t-13.406972402666586\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, fading, $x) -> (an orange cupped top, fades to, a yellow colour) -> a yellow colour (932ms)\nWhat is the inner peel of an orange called?\tLake Geneva\t-13.468443322455588\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Orange Cinema Geneva People, are drawn to, Lake Geneva) -> Lake Geneva (1473ms)\nWhat is the inner peel of an orange called?\t15 troubled months\t-13.487309111247631\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, fading, $x) -> (an orange coalition, faded after, 15 troubled months) -> 15 troubled months (932ms)\nWhat is the inner peel of an orange called?\tthighs\t-13.552281622707188\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (their orange, peeled, thighs) -> thighs (932ms)\nWhat is the inner peel of an orange called?\talready\t-13.59427607966942\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange, peeled, already) -> already (297ms)\nWhat is the inner peel of an orange called?\tfiltered water\t-13.595119340037446\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange, peel with, filtered water) -> filtered water (932ms)\nWhat is the inner peel of an orange called?\tacts\t-13.59626789766431\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, acts) -> acts (978ms)\nWhat is the inner peel of an orange called?\tThai basil\t-13.596506750818396\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1/2 orange, diced, Thai basil) -> Thai basil (2250ms)\nWhat is the inner peel of an orange called?\tGulf Shores\t-13.60998283660813\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange Beach, is only a short drive from, Gulf Shores) -> Gulf Shores (1563ms)\nWhat is the inner peel of an orange called?\tpeach\t-13.633468768958277\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (oranges, peeled, peach) -> peach (978ms)\nWhat is the inner peel of an orange called?\tgrapes\t-13.659994677204944\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (oranges, peeled, grapes) -> grapes (978ms)\nWhat is the inner peel of an orange called?\tzest\t-13.746875136453896\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange zest, is to peel, zest) -> zest (978ms)\nWhat is the inner peel of an orange called?\tloose skin\t-13.773477619415107\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (A mandarin orange with, peels easily, loose skin) -> loose skin (1005ms)\nWhat is the inner peel of an orange called?\tchicken\t-13.798673390813292\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Lettuce wraps and orange, peeled, chicken) -> chicken (1005ms)\nWhat is the inner peel of an orange called?\twater\t-13.798673390813292\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (dry orange, peel mixed with, water) -> water (1005ms)\nWhat is the inner peel of an orange called?\tpear\t-13.819481479124883\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange blossom honey, peeled, pear) -> pear (1005ms)\nWhat is the inner peel of an orange called?\t1/4 cup\t-13.81973618607423\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (ground black pepper 1 medium orange, peeled, 1/4 cup) -> 1/4 cup (1005ms)\nWhat is the inner peel of an orange called?\treal-world connections\t-13.852834013538276\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, is a Web-driven campaign with, real-world connections) -> real-world connections (1563ms)\nWhat is the inner peel of an orange called?\tteeth\t-13.865159708608148\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, be rub, $x) -> (an orange peel, could be rubbed on, teeth) -> teeth (1005ms)\nWhat is the inner peel of an orange called?\tthe appearance\t-13.94574620475055\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (?orange, peeled ? due to, the appearance) -> the appearance (1005ms)\nWhat is the inner peel of an orange called?\ta branch\t-13.977688143465441\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be rub, $x) -> (the orange, has been rubbing against, a branch) -> a branch (1765ms)\nWhat is the inner peel of an orange called?\tthe cleanest\t-13.9780427203818\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange-peeling competition, peels, the cleanest) -> the cleanest (1026ms)\nWhat is the inner peel of an orange called?\ta copper pan\t-13.98774704379759\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have melt, $x) -> (a very orange wax, may have been melted in, a copper pan) -> a copper pan (2059ms)\nWhat is the inner peel of an orange called?\ta BMW.\t-13.995377336589867\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (orange county, is driving, a BMW.) -> a BMW. (1563ms)\nWhat is the inner peel of an orange called?\tbirthmarks Icepack\t-14.048767938154628\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be rub, $x) -> (vitamin E and orange oil, can be rubbed over, birthmarks Icepack) -> birthmarks Icepack (1765ms)\nWhat is the inner peel of an orange called?\tleast four times\t-14.084766693370652\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (the orange ball, will be drawn at, least four times) -> least four times (1473ms)\nWhat is the inner peel of an orange called?\tsea\t-14.085245725674783\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to float, $x) -> (the orange and lemon trees, floated out to, sea) -> sea (1473ms)\nWhat is the inner peel of an orange called?\tpurplish-blue\t-14.118583855946582\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the last red and orange streaked clouds, faded to, purplish-blue) -> purplish-blue (2059ms)\nWhat is the inner peel of an orange called?\tthe Crumlin Road\t-14.13680263501813\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (The Orange men, were driven down, the Crumlin Road) -> the Crumlin Road (1563ms)\nWhat is the inner peel of an orange called?\taromas\t-14.137442572838287\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, aromas) -> aromas (1026ms)\nWhat is the inner peel of an orange called?\ta big coat\t-14.153561043249507\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be slip, $x) -> (red orange hair, was quickly slipping, a big coat) -> a big coat (1765ms)\nWhat is the inner peel of an orange called?\tsweet potatoes\t-14.188173417021204\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (orange, is mashed, sweet potatoes) -> sweet potatoes (1935ms)\nWhat is the inner peel of an orange called?\tOrange Beach\t-14.2409718894645\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Orange Beach Artisans, are drawn to, Orange Beach) -> Orange Beach (1473ms)\nWhat is the inner peel of an orange called?\tone output\t-14.24297973838317\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (the orange, is driven by, one output) -> one output (1563ms)\nWhat is the inner peel of an orange called?\ta Subaru SUV\t-14.292532382753103\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, was driving, a Subaru SUV) -> a Subaru SUV (1563ms)\nWhat is the inner peel of an orange called?\tpure white light\t-14.302878465418418\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, will be turn, $x) -> (orange light, will gradually be turned into, pure white light) -> pure white light (1892ms)\nWhat is the inner peel of an orange called?\tfine-line magic marker\t-14.329580971393664\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (orange slices, may be drawn with, fine-line magic marker) -> fine-line magic marker (1473ms)\nWhat is the inner peel of an orange called?\tbase\t-14.338314524995358\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel in, base) -> base (1026ms)\nWhat is the inner peel of an orange called?\tdudes\t-14.366608858746513\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (those oranges, peeled, dudes) -> dudes (1026ms)\nWhat is the inner peel of an orange called?\tdark blue and black\t-14.399194260650875\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange, faded to, dark blue and black) -> dark blue and black (2059ms)\nWhat is the inner peel of an orange called?\tPenzance\t-14.424049281482157\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (U.K. Orange Trevillion, was drawn to, Penzance) -> Penzance (1473ms)\nWhat is the inner peel of an orange called?\ta corner\t-14.444959994325384\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fold, $x) -> (orange camouglage jacket, are neatly folded in, a corner) -> a corner (1080ms)\nWhat is the inner peel of an orange called?\tred\t-14.494783418545136\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the blaze orange, faded to, red) -> red (2059ms)\nWhat is the inner peel of an orange called?\tTortilla chips\t-14.584116014798091\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (Sliced 1 orange bell, diced, Tortilla chips) -> Tortilla chips (2250ms)\nWhat is the inner peel of an orange called?\tfirm conclusions\t-14.59732068550959\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Agent Orange, was too small to draw, firm conclusions) -> firm conclusions (1473ms)\nWhat is the inner peel of an orange called?\tsocial media\t-14.616607755277386\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (Powered By Orange, mashes up, social media) -> social media (1935ms)\nWhat is the inner peel of an orange called?\tthe LED ligts\t-14.641262048674943\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to float, $x) -> (a dozen orange orbs, floated to, the LED ligts) -> the LED ligts (1563ms)\nWhat is the inner peel of an orange called?\ta fertile area\t-14.649657176280458\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (the Orange Free State, had been driven into, a fertile area) -> a fertile area (1563ms)\nWhat is the inner peel of an orange called?\tLos Angeles\t-14.670136514793445\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be tuck, $x) -> (Orange County, is tucked sweetly between, Los Angeles) -> Los Angeles (1935ms)\nWhat is the inner peel of an orange called?\tmaraschino cherries\t-14.671000578092073\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange jello and mandarin oranges, diced, maraschino cherries) -> maraschino cherries (2250ms)\nWhat is the inner peel of an orange called?\tcharacter\t-14.683797258276654\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (a spicy marmalade/orange, peel, character) -> character (1026ms)\nWhat is the inner peel of an orange called?\ta year or so\t-14.722326759520032\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The flourescent orange, faded from, a year or so) -> a year or so (2059ms)\nWhat is the inner peel of an orange called?\tthe air pockets\t-14.734626067981134\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, to float, $x) -> (An orange, will float due to, the air pockets) -> the air pockets (1026ms)\nWhat is the inner peel of an orange called?\tUkraine\t-14.736465459506075\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The Orange Revolution, has faded away in, Ukraine) -> Ukraine (2059ms)\nWhat is the inner peel of an orange called?\tAOS weekend\t-14.75014356264617\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just fall, $x) -> (Orange Beach, is just prior to fall, AOS weekend) -> AOS weekend (1935ms)\nWhat is the inner peel of an orange called?\ta dark blue\t-14.752224116365035\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fading, $x) -> (The orange sunset color, was fading away into, a dark blue) -> a dark blue (1288ms)\nWhat is the inner peel of an orange called?\ta supermarket\t-14.76291044164487\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (a hand retrieves oranges, have rolled all over, a supermarket) -> a supermarket (1195ms)\nWhat is the inner peel of an orange called?\tForrest Wang\t-14.768101049687044\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (The orange, was driven by, Forrest Wang) -> Forrest Wang (1892ms)\nWhat is the inner peel of an orange called?\tgreen containers , dogs and cats\t-14.776423338923287\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, get put, $x) -> (the orange lids, gets put on, green containers , dogs and cats) -> green containers , dogs and cats (1194ms)\nWhat is the inner peel of an orange called?\ta Ziploc sandwich bag\t-14.779906552884189\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to melt, $x) -> (the leftover orange candy, melts to, a Ziploc sandwich bag) -> a Ziploc sandwich bag (1288ms)\nWhat is the inner peel of an orange called?\t1,000 degrees\t-14.78896982748007\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (Agent Orange, was burned there at, 1,000 degrees) -> 1,000 degrees (2250ms)\nWhat is the inner peel of an orange called?\ta year or so ? more Options\t-14.800054283132933\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The flourescent orange, faded from, a year or so ? more Options) -> a year or so ? more Options (2059ms)\nWhat is the inner peel of an orange called?\tthe ROM update\t-14.82402396988888\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (Orange UK, has just rolled out, the ROM update) -> the ROM update (1195ms)\nWhat is the inner peel of an orange called?\tutter contempt\t-14.842595231874148\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange blazed trail, fade gradually into, utter contempt) -> utter contempt (2119ms)\nWhat is the inner peel of an orange called?\tsmall patches\t-14.87036326186125\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fading, $x) -> (His once smooth orange breast, was faded in, small patches) -> small patches (1288ms)\nWhat is the inner peel of an orange called?\ta plate\t-14.87202656024937\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (some oranges, quartered on, a plate) -> a plate (1288ms)\nWhat is the inner peel of an orange called?\tcold winter gray\t-14.872316351709046\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the burnt-orange autumn afternoons, fade to, cold winter gray) -> cold winter gray (2119ms)\nWhat is the inner peel of an orange called?\tGlass\t-14.967757213858636\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 orange wheels, quartered, Glass) -> Glass (1288ms)\nWhat is the inner peel of an orange called?\tdrying\t-14.96826968632778\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peels, drying) -> drying (1026ms)\nWhat is the inner peel of an orange called?\tEast Michigan Street\t-14.975344483982422\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to take i, $x) -> (north Orange County, Take I-4 west to, East Michigan Street) -> East Michigan Street (1195ms)\nWhat is the inner peel of an orange called?\t6 sprigs\t-14.99042794554492\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 oranges, quartered, 6 sprigs) -> 6 sprigs (1288ms)\nWhat is the inner peel of an orange called?\tred bell peppers\t-15.013088026196353\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (Valencia orange segments, diced, red bell peppers) -> red bell peppers (2250ms)\nWhat is the inner peel of an orange called?\tE. Michigan Street\t-15.02867504268667\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to take i, $x) -> (north Orange County, Take I-4 west to, E. Michigan Street) -> E. Michigan Street (1195ms)\nWhat is the inner peel of an orange called?\tValentine\t-15.03022581610324\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, will be turn, $x) -> (our oranges, will be turned into, Valentine) -> Valentine (1935ms)\nWhat is the inner peel of an orange called?\tthe Elite Eight\t-15.044588915078002\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (his Syracuse Orange, have rolled into, the Elite Eight) -> the Elite Eight (1195ms)\nWhat is the inner peel of an orange called?\tnon-stop mobile Internet access\t-15.045420411329221\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (Orange Tunisia, has rolled out, non-stop mobile Internet access) -> non-stop mobile Internet access (1195ms)\nWhat is the inner peel of an orange called?\tPastry\t-15.061129277329561\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (? tsp orange zest, diced For, Pastry) -> Pastry (2250ms)\nWhat is the inner peel of an orange called?\tFresh dill Dash soy sauce Method\t-15.08119718634827\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (big orange squash, diced, Fresh dill Dash soy sauce Method) -> Fresh dill Dash soy sauce Method (2250ms)\nWhat is the inner peel of an orange called?\ta black night\t-15.086864099384279\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange sun, fade into, a black night) -> a black night (2119ms)\nWhat is the inner peel of an orange called?\tblack velvet\t-15.102470201143152\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> ('s orange glow, faded to, black velvet) -> black velvet (2250ms)\nWhat is the inner peel of an orange called?\tusually\t-15.112180746418055\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Oranges, are peeled, usually) -> usually (1050ms)\nWhat is the inner peel of an orange called?\ta delicate light pink\t-15.115814131707138\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Bronzy orange petals, fade to, a delicate light pink) -> a delicate light pink (2250ms)\nWhat is the inner peel of an orange called?\tDRIVE\t-15.128994063621281\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (A BIG ORANGE TRUCK, IS DRIVING ON, DRIVE) -> DRIVE (2250ms)\nWhat is the inner peel of an orange called?\t1 kiwi\t-15.134015493573699\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, 1 kiwi) -> 1 kiwi (2250ms)\nWhat is the inner peel of an orange called?\tpale pink Celestite\t-15.140761611491245\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (brown/orange varieties, may fade to, pale pink Celestite) -> pale pink Celestite (2250ms)\nWhat is the inner peel of an orange called?\t1 lemon\t-15.145607604244578\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 medium oranges, quartered, 1 lemon) -> 1 lemon (1288ms)\nWhat is the inner peel of an orange called?\tpale orange\t-15.149332712828809\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (a bright orange, then fade to, pale orange) -> pale orange (2263ms)\nWhat is the inner peel of an orange called?\ta play kitchen\t-15.156842215907167\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be tuck, $x) -> (orange?that, were tucked into, a play kitchen) -> a play kitchen (2263ms)\nWhat is the inner peel of an orange called?\ta cold , pale rust tone\t-15.166914721478726\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (These orange details, have faded to, a cold , pale rust tone) -> a cold , pale rust tone (2263ms)\nWhat is the inner peel of an orange called?\t3 T minced cilantro\t-15.19614448970718\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange bell pepper, diced, 3 T minced cilantro) -> 3 T minced cilantro (2263ms)\nWhat is the inner peel of an orange called?\t4 oz\t-15.200553062619079\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 naval oranges, quartered, 4 oz) -> 4 oz (1288ms)\nWhat is the inner peel of an orange called?\tI-95 North\t-15.201955915299902\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to take i, $x) -> (the Westside and Orange Park, Take I-10 East to, I-95 North) -> I-95 North (1316ms)\nWhat is the inner peel of an orange called?\tmacerate\t-15.230817248637171\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the orange, peel, macerate) -> macerate (1051ms)\nWhat is the inner peel of an orange called?\t3 Tb\t-15.277789679542744\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, 3 Tb) -> 3 Tb (2263ms)\nWhat is the inner peel of an orange called?\tYellow Baby Ben Patent # 201895\t-15.29150076371339\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Orange, fade, Yellow Baby Ben Patent # 201895) -> Yellow Baby Ben Patent # 201895 (2263ms)\nWhat is the inner peel of an orange called?\t2 tbs\t-15.296849792085341\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (candied orange, diced, 2 tbs) -> 2 tbs (2263ms)\nWhat is the inner peel of an orange called?\t1 cup ripe mango\t-15.29966696496251\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange sections, diced, 1 cup ripe mango) -> 1 cup ripe mango (2263ms)\nWhat is the inner peel of an orange called?\t2 large avocados\t-15.301287009071912\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (2 sour oranges, diced, 2 large avocados) -> 2 large avocados (2263ms)\nWhat is the inner peel of an orange called?\torange segments\t-15.315318570106077\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange salsa?combine, diced, orange segments) -> orange segments (2263ms)\nWhat is the inner peel of an orange called?\t1 lime\t-15.318462781016137\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 oranges, quartered, 1 lime) -> 1 lime (1316ms)\nWhat is the inner peel of an orange called?\thamburger meat\t-15.327056445647905\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (Orange Mix, diced onion in, hamburger meat) -> hamburger meat (2267ms)\nWhat is the inner peel of an orange called?\t2 14 oz\t-15.331398791972136\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (red , yellow and orange, roughly diced, 2 14 oz) -> 2 14 oz (2266ms)\nWhat is the inner peel of an orange called?\t1 Tbsp parsley\t-15.344104555564002\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, 1 Tbsp parsley) -> 1 Tbsp parsley (2266ms)\nWhat is the inner peel of an orange called?\ta bit\t-15.352047551084398\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Her orange hair, had faded, a bit) -> a bit (2266ms)\nWhat is the inner peel of an orange called?\t1 small onion\t-15.360020068890625\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (1 oranges, quartered, 1 small onion) -> 1 small onion (1316ms)\nWhat is the inner peel of an orange called?\t1 cup jicama\t-15.360020068890625\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, 1 cup jicama) -> 1 cup jicama (2266ms)\nWhat is the inner peel of an orange called?\t1 green bell pepper\t-15.363180847683097\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange bell pepper, diced, 1 green bell pepper) -> 1 green bell pepper (2266ms)\nWhat is the inner peel of an orange called?\t1 sm\t-15.370630463810668\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (orange ,, quartered, 1 sm) -> 1 sm (1316ms)\nWhat is the inner peel of an orange called?\t? 1 kiwi\t-15.37465924942774\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, ? 1 kiwi) -> ? 1 kiwi (2266ms)\nWhat is the inner peel of an orange called?\t1 stalk celery\t-15.377704060424032\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange, diced, 1 stalk celery) -> 1 stalk celery (2266ms)\nWhat is the inner peel of an orange called?\tHighway 76\t-15.387667802150183\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to take i, $x) -> (Los Angeles / Orange County, Take I-5 south to, Highway 76) -> Highway 76 (1316ms)\nWhat is the inner peel of an orange called?\tfresh figs\t-15.411973395950898\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (Sassy Fig Orange Jam 1 1/2 cups, diced, fresh figs) -> fresh figs (2266ms)\nWhat is the inner peel of an orange called?\t1/2 cup fresh cilantro\t-15.420443780238118\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange zest 1 cup corn, diced, 1/2 cup fresh cilantro) -> 1/2 cup fresh cilantro (2266ms)\nWhat is the inner peel of an orange called?\tthe bottom\t-15.439494237743965\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (the orange, might be burnt on, the bottom) -> the bottom (2266ms)\nWhat is the inner peel of an orange called?\ta darker color\t-15.460637100418262\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (a bright-orange or red, fades into, a darker color) -> a darker color (2266ms)\nWhat is the inner peel of an orange called?\tBlack satin\t-15.528834016165149\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Flo-orange, fade to, Black satin) -> Black satin (2267ms)\nWhat is the inner peel of an orange called?\t3-4 minutes\t-15.551167367450029\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (red-orange object, faded after, 3-4 minutes) -> 3-4 minutes (2270ms)\nWhat is the inner peel of an orange called?\twhite\t-15.552538329659638\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, fading, $x) -> (an orange, almost faded to, white) -> white (1051ms)\nWhat is the inner peel of an orange called?\tthe March\t-15.566905403164746\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (The orange trend line, is drawn from, the March) -> the March (2270ms)\nWhat is the inner peel of an orange called?\tagain\t-15.584870183819534\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (oranges, peeled, again) -> again (1051ms)\nWhat is the inner peel of an orange called?\tDissolve\t-15.621310195828798\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (oranges, diced, Dissolve) -> Dissolve (2270ms)\nWhat is the inner peel of an orange called?\tthe house\t-15.667473014605825\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (orange peel, may be burned in, the house) -> the house (2270ms)\nWhat is the inner peel of an orange called?\tnostalgia\t-15.714125354091465\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (the oranges, is mutely burning, nostalgia) -> nostalgia (2270ms)\nWhat is the inner peel of an orange called?\tthe market\t-15.715794177772292\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, is driving, the market) -> the market (2270ms)\nWhat is the inner peel of an orange called?\t1868\t-15.735758083592037\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (The first Orange County Courthouse, was burned in, 1868) -> 1868 (2270ms)\nWhat is the inner peel of an orange called?\tlavender and indigo\t-15.781081641742865\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Crimson and orange, had faded to, lavender and indigo) -> lavender and indigo (2270ms)\nWhat is the inner peel of an orange called?\tthe mine site\t-15.795202592828552\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, is a beautiful 20 minute drive from, the mine site) -> the mine site (2270ms)\nWhat is the inner peel of an orange called?\tthousands\t-15.868226443386565\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (the Orange Bowl, is expected to draw, thousands) -> thousands (2270ms)\nWhat is the inner peel of an orange called?\tthe global restaurant chain\t-15.90264011844505\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (orange shorts, are the main draw at, the global restaurant chain) -> the global restaurant chain (2273ms)\nWhat is the inner peel of an orange called?\tthe final mixture\t-15.907001642490483\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fold, $x) -> (one orange, was also folded into, the final mixture) -> the final mixture (1080ms)\nWhat is the inner peel of an orange called?\tthe sky\t-15.945349815724038\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be drift, $x) -> (The orange quarter moon, was drifting low in, the sky) -> the sky (1316ms)\nWhat is the inner peel of an orange called?\tthe west\t-15.962534531075772\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, slowly move, $x) -> (a small orange glow, was seen moving slowly to, the west) -> the west (2273ms)\nWhat is the inner peel of an orange called?\tice Combine\t-15.965796092547167\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (thirds oranges, quartered, ice Combine) -> ice Combine (1316ms)\nWhat is the inner peel of an orange called?\tthe town\t-15.966370481241261\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, slowly move, $x) -> (the dark orange sun, slowly move downward behind, the town) -> the town (2273ms)\nWhat is the inner peel of an orange called?\tthe obvious years\t-15.992828290807388\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fading, $x) -> (his orange t-shirt, was very faded from, the obvious years) -> the obvious years (2273ms)\nWhat is the inner peel of an orange called?\tthe lungs\t-16.00320130834226\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be rip, $x) -> (the Agent Orange, was ripping out, the lungs) -> the lungs (2273ms)\nWhat is the inner peel of an orange called?\tthe value\t-16.009099897883274\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (The orange vertical line, has been drawn at, the value) -> the value (2273ms)\nWhat is the inner peel of an orange called?\tthe crowd\t-16.051796183253064\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just fall, $x) -> (a radiant orange dusk, was just falling over, the crowd) -> the crowd (2273ms)\nWhat is the inner peel of an orange called?\textinction\t-16.05651938924899\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (The green and orange races, were driven to, extinction) -> extinction (2273ms)\nWhat is the inner peel of an orange called?\tthe dirt\t-16.07369363064654\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The orange, faded from, the dirt) -> the dirt (2273ms)\nWhat is the inner peel of an orange called?\tattention\t-16.09217978318683\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (The Orange NST Chronograph, is sure to draw, attention) -> attention (2273ms)\nWhat is the inner peel of an orange called?\tthe laboring\t-16.099086903606477\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Orange membership, was drawn from, the laboring) -> the laboring (2273ms)\nWhat is the inner peel of an orange called?\tthe fastest\t-16.112299742672338\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (the orange candle, was going to burn, the fastest) -> the fastest (2273ms)\nWhat is the inner peel of an orange called?\tcommuters\t-16.132131943398868\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (South Orange, is a big draw to, commuters) -> commuters (2275ms)\nWhat is the inner peel of an orange called?\tthe atmosphere\t-16.16098074221766\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fading, $x) -> (The orange tint, was fading from, the atmosphere) -> the atmosphere (2275ms)\nWhat is the inner peel of an orange called?\tthe ongoing transformation\t-16.16144712045691\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (?Orange, is helping to drive, the ongoing transformation) -> the ongoing transformation (2275ms)\nWhat is the inner peel of an orange called?\tbankruptcy\t-16.174761816603258\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange County, is driven into, bankruptcy) -> bankruptcy (2275ms)\nWhat is the inner peel of an orange called?\tthe hotel\t-16.178801279560656\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, is located a short drive from, the hotel) -> the hotel (2275ms)\nWhat is the inner peel of an orange called?\tinsurance\t-16.187794119745686\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (South Orange County, are driving without, insurance) -> insurance (2275ms)\nWhat is the inner peel of an orange called?\tthe gaze\t-16.20981279334465\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Orange County?s water utility, has been drawing, the gaze) -> the gaze (2275ms)\nWhat is the inner peel of an orange called?\tthe rain\t-16.22238808665566\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just drive, $x) -> (SolidOrange, just drove in, the rain) -> the rain (2275ms)\nWhat is the inner peel of an orange called?\tthe pocket\t-16.254842311398562\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be tuck, $x) -> (His little orange book, was tucked in, the pocket) -> the pocket (2275ms)\nWhat is the inner peel of an orange called?\tnails\t-16.258650742882296\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be rub, $x) -> (The raw orange peels, can be rubbed on, nails) -> nails (2275ms)\nWhat is the inner peel of an orange called?\tthe center\t-16.342160075070705\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Red , yellow , and orange, had faded in, the center) -> the center (2275ms)\nWhat is the inner peel of an orange called?\tthe hall or parking lot\t-16.342759754693525\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, would roll, $x) -> (oranges, would roll down, the hall or parking lot) -> the hall or parking lot (2275ms)\nWhat is the inner peel of an orange called?\tcolour\t-16.352519549498226\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The orange, faded, colour) -> colour (2278ms)\nWhat is the inner peel of an orange called?\tzucchini\t-16.410876589802726\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange peel, diced, zucchini) -> zucchini (2277ms)\nWhat is the inner peel of an orange called?\tthe oven\t-16.43544646939024\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be tuck, $x) -> (these orange-gold tubers, are tucked into, the oven) -> the oven (2278ms)\nWhat is the inner peel of an orange called?\tthe menu\t-16.463941269027806\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to float, $x) -> (orange cream, floats to, the menu) -> the menu (2278ms)\nWhat is the inner peel of an orange called?\tpears\t-16.484235509780152\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (the orange pieces, diced, pears) -> pears (2278ms)\nWhat is the inner peel of an orange called?\tthe night air\t-16.500689035528197\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (bright orange city buses, faded into, the night air) -> the night air (2278ms)\nWhat is the inner peel of an orange called?\tthe flesh\t-16.500984673823574\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, scoop out, $x) -> (the orange, scoop out, the flesh) -> the flesh (2278ms)\nWhat is the inner peel of an orange called?\tthe canvas\t-16.50465097616875\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to float, $x) -> (vivid oranges, seem to float above, the canvas) -> the canvas (2278ms)\nWhat is the inner peel of an orange called?\tthe middle\t-16.58509531854264\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (orange Zig Zags, mashed into, the middle) -> the middle (2278ms)\nWhat is the inner peel of an orange called?\tthe trout\t-16.602240299728024\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have slip, $x) -> (deep orange mucus-covered roe, had slipped out of, the trout) -> the trout (2278ms)\nWhat is the inner peel of an orange called?\tthe testing fork\t-16.612917616004466\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (The orange flesh, mashed up beautifully with, the testing fork) -> the testing fork (2280ms)\nWhat is the inner peel of an orange called?\tthe horizon\t-16.629270050932583\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange glow, finally fades over, the horizon) -> the horizon (2280ms)\nWhat is the inner peel of an orange called?\tthe hive\t-16.655589015174492\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (Orange Juice, has a very important roll in, the hive) -> the hive (2280ms)\nWhat is the inner peel of an orange called?\talmonds\t-16.65990300726032\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, flake, $x) -> (orange juice, flaked, almonds) -> almonds (2280ms)\nWhat is the inner peel of an orange called?\tthe painful light\t-16.718751587297007\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, squint, $x) -> (orange-twilight sky, squinted at, the painful light) -> the painful light (2280ms)\nWhat is the inner peel of an orange called?\trocks\t-16.729377068163746\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be scrape, $x) -> (The black , orange and green lichens, are scraped from, rocks) -> rocks (2280ms)\nWhat is the inner peel of an orange called?\tpart\t-16.75100920303359\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (TechPortal Orange, have been driven in, part) -> part (2280ms)\nWhat is the inner peel of an orange called?\tcoconut\t-16.78280649808159\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, flake, $x) -> (mandarin oranges, flaked, coconut) -> coconut (2280ms)\nWhat is the inner peel of an orange called?\tsight\t-16.8064427804226\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the entire orange light/object, faded out of, sight) -> sight (2280ms)\nWhat is the inner peel of an orange called?\tlandfill\t-16.809644854538142\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, get take, $x) -> (your orange rubbish bag, gets taken to, landfill) -> landfill (2280ms)\nWhat is the inner peel of an orange called?\tthe army\t-16.81494465626162\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just fall, $x) -> (the Orange Free State, had just fallen to, the army) -> the army (2280ms)\nWhat is the inner peel of an orange called?\tprunes\t-16.81640600294162\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, stew, $x) -> (orange cream, stewed, prunes) -> prunes (2280ms)\nWhat is the inner peel of an orange called?\tthe sunset\t-16.817771699802794\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Orange County, slowly fades away into, the sunset) -> the sunset (2280ms)\nWhat is the inner peel of an orange called?\tmushrooms\t-16.821353292238257\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (pineapple or orange marmalade, diced, mushrooms) -> mushrooms (2280ms)\nWhat is the inner peel of an orange called?\tpaint\t-16.850112476591896\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Oranges, were drawn under, paint) -> paint (2282ms)\nWhat is the inner peel of an orange called?\ttime\t-16.872781144744355\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (bright oranges and pinks, faded over, time) -> time (2282ms)\nWhat is the inner peel of an orange called?\tbuttercup\t-16.89318226360831\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (woodsy brown , rusty orange, faded, buttercup) -> buttercup (2282ms)\nWhat is the inner peel of an orange called?\tdriftwood\t-16.910622960921028\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (burnt oranges, faded, driftwood) -> driftwood (2282ms)\nWhat is the inner peel of an orange called?\tyear\t-16.91158413256704\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (average 14 Orange Halls, have been burnt per, year) -> year (2282ms)\nWhat is the inner peel of an orange called?\ttomatoes\t-16.924506626406384\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (oranges, diced, tomatoes) -> tomatoes (2282ms)\nWhat is the inner peel of an orange called?\tboard\t-16.925003922167043\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, stow, $x) -> (oranges, were stowed on, board) -> board (2282ms)\nWhat is the inner peel of an orange called?\tedges\t-16.969139534880682\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (orange card cover, faded at, edges) -> edges (2282ms)\nWhat is the inner peel of an orange called?\tblack\t-16.976936819666776\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange, does fade into, black) -> black (2282ms)\nWhat is the inner peel of an orange called?\tnight\t-17.104501264335422\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the purple and orange velvet clouds, fade into, night) -> night (2282ms)\nWhat is the inner peel of an orange called?\tturquoise\t-17.14546711697954\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (pink-orange , dirty white ,, faded, turquoise) -> turquoise (2284ms)\nWhat is the inner peel of an orange called?\tyellow\t-17.1719930779285\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (light orange/tawny gold hues, fade to, yellow) -> yellow (2284ms)\nWhat is the inner peel of an orange called?\tinput\t-17.205669859437545\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (OrangeFS development, tends to be driven by, input) -> input (2284ms)\nWhat is the inner peel of an orange called?\tfront\t-17.30650505467627\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just run, $x) -> (The famous West Orange Trail, runs just in, front) -> front (2284ms)\nWhat is the inner peel of an orange called?\twidgets\t-17.33552066136501\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (Orange, had only rolled out, widgets) -> widgets (2284ms)\nWhat is the inner peel of an orange called?\thours\t-17.42898725224845\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, stew, $x) -> (harsh orange pekoe tea, stew for, hours) -> hours (2284ms)\nWhat is the inner peel of an orange called?\tblue\t-17.46458282073209\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (orange sparks, faded to, blue) -> blue (2284ms)\nWhat is the inner peel of an orange called?\tbrown\t-17.480329313121256\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (those fabulous reds and oranges, fade to, brown) -> brown (2284ms)\nWhat is the inner peel of an orange called?\tgreens\t-17.533257997007965\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (pretty reds , oranges and, faded, greens) -> greens (2284ms)\nWhat is the inner peel of an orange called?\tspine\t-17.564497201613378\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (262p orange paperback, faded, spine) -> spine (2284ms)\nWhat is the inner peel of an orange called?\tpotatoes\t-18.19085833021683\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (orange, mashed, potatoes) -> potatoes (2285ms)\nWhat is the inner peel of an orange called?\tpoints\t-18.215373528060933\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (orange, is its own Will draw for, points) -> points (2285ms)\nWhat is the inner peel of an orange called?\taway\t-18.312321296360032\tWhat is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange, faded, away) -> away (2285ms)\nWhere is Rider College located?\tJamaica\t-6.723843521347898\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Honeychile Rider, Tryst location(s), Jamaica) -> Jamaica (8702ms)\nWhere is Rider College located?\tAgoura\t-6.77149091438644\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Night Riders, Notable filming locations, Agoura) -> Agoura (8806ms)\nWhere is Rider College located?\tPrescott\t-6.77149091438644\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, Prescott) -> Prescott (8805ms)\nWhere is Rider College located?\tCottonwood\t-6.77149091438644\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, Cottonwood) -> Cottonwood (8702ms)\nWhere is Rider College located?\tFlagstaff\t-6.77149091438644\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, Flagstaff) -> Flagstaff (8702ms)\nWhere is Rider College located?\tTucson\t-6.77149091438644\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, Tucson) -> Tucson (8702ms)\nWhere is Rider College located?\tOttawa\t-6.77149091438644\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Ottawa Junior Riders, Sports Team Location, Ottawa) -> Ottawa (8702ms)\nWhere is Rider College located?\tLawrenceville\t-6.842962003944256\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Rider Broncs men's basketball, Sports Team Location, Lawrenceville) -> Lawrenceville (8806ms)\nWhere is Rider College located?\tNew Zealand\t-6.845863689381227\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Whale Rider, Notable filming locations, New Zealand) -> New Zealand (8807ms)\nWhere is Rider College located?\tNew Orleans\t-6.845863689381227\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, New Orleans) -> New Orleans (8805ms)\nWhere is Rider College located?\tMescal\t-6.870450884543415\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Legend of the Phantom Rider, Notable filming locations, Mescal) -> Mescal (8805ms)\nWhere is Rider College located?\tNashville\t-7.20031745173333\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Kentucky-Rider 1993 NCAA Men's Division I Basketball Tournament Game, Location(s), Nashville) -> Nashville (8887ms)\nWhere is Rider College located?\tFrisco\t-7.20031745173333\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Frisco RoughRiders, Sports Team Location, Frisco) -> Frisco (8888ms)\nWhere is Rider College located?\tBronc\t-7.974099722002956\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the mascot of rider university ? -> $x: (rider university, mascot, $x) -> (Rider University, Mascot, Bronc) -> Bronc (8887ms)\nWhere is Rider College located?\tNew Jersey\t-8.668728561224757\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (New Jersey, Instance Of, state) (Rider University, is located in, New Jersey) -> New Jersey (7687ms)\nWhere is Rider College located?\tSingapore\t-8.954506412874878\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (Singapore, Instance Of, state) (1-800-780-5733 Riders Lodge, is located in, Singapore) -> Singapore (7687ms)\nWhere is Rider College located?\tJut\t-9.529807292780134\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> (Jut, was nowhere near, your rider) -> Jut (7786ms)\nWhere is Rider College located?\tSouthern California\t-9.57002059254417\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (Southern California, Instance Of, state) (riders, are located in, Southern California) -> Southern California (7786ms)\nWhere is Rider College located?\tAfrica\t-9.866024191315631\tWhere is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (Riders, is building capacity in, Africa) -> Africa (18797ms)\nWhere is Rider College located?\tIpswich\t-9.982345440184183\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (Ipswich, Instance Of, area around the state) (EdgeRiders, is located in, Ipswich) -> Ipswich (7844ms)\nWhere is Rider College located?\tsafety and comfort\t-10.325378643881255\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (bicycle riders, can reach the location in, safety and comfort) -> safety and comfort (8888ms)\nWhere is Rider College located?\tany shuttle\t-10.340185869024378\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (riders, can track the location of, any shuttle) -> any shuttle (8888ms)\nWhere is Rider College located?\tsouthern California\t-10.413121083316227\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (southern California, Instance Of, state) (riders, are located in, Southern California) -> southern California (7946ms)\nWhere is Rider College located?\tPennsylvania\t-10.76838597889708\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, from visit, $x) -> (Pennsylvania, Instance Of, state) (a third rider, was visiting from, Pennsylvania) -> Pennsylvania (15219ms)\nWhere is Rider College located?\tNJ New Jersey\t-10.911013618560675\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (NJ New Jersey, Instance Of, state) (Rider University, is located in, New Jersey) -> NJ New Jersey (7946ms)\nWhere is Rider College located?\tSCLC\t-11.203776792247526\tWhere is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (A five rider carousel, was built in, SCLC) -> SCLC (18797ms)\nWhere is Rider College located?\tthe pack\t-11.482093377779329\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> (the pack, is positioned near, the riders mouth) -> the pack (7946ms)\nWhere is Rider College located?\tStuntman Kidd\t-11.490024329300626\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> $x: ($x, near, rider) -> (Stuntman Kidd, nears, marathon end Former stunt rider Eddie Kidd) -> Stuntman Kidd (9003ms)\nWhere is Rider College located?\tThe Board\t-11.737952070893673\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, modelling, state) (rider, locate, $x) -> (The Board, was modeled on, the Massachusetts State Board) (the rider, locate, the board) -> The Board (17382ms)\nWhere is Rider College located?\tPossession\t-11.808498891882742\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Possession, Instance Of, mental state) (the rider, was found to be in, possession) -> Possession (11465ms)\nWhere is Rider College located?\tStevens\t-11.816827408704093\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, will trust, $x) -> (Stevens, Instance Of, state) (Planet Bike rider Katie Compton, will be trusting, Stevens) -> Stevens (15219ms)\nWhere is Rider College located?\tHouston\t-11.829596069032652\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Houston, Instance Of, state) (Sirrus-Rider, find similar routes in, Houston) -> Houston (11465ms)\nWhere is Rider College located?\tSteven\t-11.891767662759932\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, will trust, $x) -> (Steven, Instance Of, multi-state champion) (Planet Bike rider Katie Compton, will be trusting, Stevens) -> Steven (15894ms)\nWhere is Rider College located?\tStanford\t-11.933339516907157\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, can connect with, $x) -> (Stanford, Instance Of, united state university) (riders, can connect with, Stanford) -> Stanford (16107ms)\nWhere is Rider College located?\tVWS members\t-12.000845175288351\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: ($x, be the location of, rider) -> $x: ($x, location of, rider) -> (VWS members, communicate the location of, horses and riders) -> VWS members (9002ms)\nWhere is Rider College located?\tCriteria\t-12.118302699233528\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, comply, $x) -> (Criteria, Instance Of, state initiative) (The rider training programs, shall comply with, criteria) -> Criteria (14850ms)\nWhere is Rider College located?\tNina DePetris\t-12.155186173818112\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (dressage riders, stated, Nina DePetris) -> Nina DePetris (18640ms)\nWhere is Rider College located?\tthe port\t-12.184371033743412\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (rider Dave Feazell, changed the location of, the port) -> the port (8888ms)\nWhere is Rider College located?\tThe Station\t-12.185012785463172\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, will view, $x) -> (The Station, Instance Of, state-legislative mandated facility) (Riders, will even be able to get an aerial view of, the station) -> The Station (13337ms)\nWhere is Rider College located?\tMike Karsting\t-12.274304656414472\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (the top off-road motorcycle riders, stated, Mike Karsting) -> Mike Karsting (18640ms)\nWhere is Rider College located?\tArea\t-12.29574564228178\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Area, Instance Of, state) (no okada rider, must be found in, areas) -> Area (11465ms)\nWhere is Rider College located?\tan email\t-12.31586194428896\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (Australian rider Baden Cooke, stated in, an email) -> an email (18640ms)\nWhere is Rider College located?\tScranton\t-12.319673488098854\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Scranton, Instance Of, state) (ATV riders, found her body in, Scranton) -> Scranton (11465ms)\nWhere is Rider College located?\tFriends\t-12.36718596568127\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, to spend time with, $x) -> (Friends, Instance Of, United state sitcom) (Some riders, choose to spend time with, friends) -> Friends (14016ms)\nWhere is Rider College located?\tFriend\t-12.398486637623492\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, to spend time with, $x) -> (Friend, Instance Of, state pratrol person) (Some riders, choose to spend time with, friends) -> Friend (14016ms)\nWhere is Rider College located?\tJohn Harrel\t-12.42235139253263\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (rider acceptability, ? states, John Harrel) -> John Harrel (18639ms)\nWhere is Rider College located?\tthe Olympics\t-12.437756032332459\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (riders, have represented the United States in, the Olympics) -> the Olympics (18640ms)\nWhere is Rider College located?\tdaily\t-12.452969784532748\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (more than 1,000 riders, use that location, daily) -> daily (8915ms)\nWhere is Rider College located?\tnight\t-12.508229531854525\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Night Rider, Mastered every location at, night) -> night (8915ms)\nWhere is Rider College located?\tHill\t-12.810221505901705\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, need to access, $x) -> (Hill, Instance Of, state employee) (the rider, needs access to, hills) -> Hill (10776ms)\nWhere is Rider College located?\tTitle V\t-12.885086389249167\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Title V, Instance Of, state agency) (the rider, is found in, Title V) -> Title V (11465ms)\nWhere is Rider College located?\tHall\t-12.91212749305543\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (In my opinion , Julia was a perfect rider, states, Hall) -> Hall (18640ms)\nWhere is Rider College located?\treal estate\t-12.974632958746819\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, of buying, $x) -> (real estate, Instance Of, state asset) (later every rider, buys a ?cheap? piece of, real estate) -> real estate (10776ms)\nWhere is Rider College located?\tconstruction project\t-13.133126259513064\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, navigate to, $x) -> (construction project, Instance Of, state-sponsored prestige project) (time riders, will have to navigate around, construction projects) -> construction project (17382ms)\nWhere is Rider College located?\tthe style\t-13.220629954036902\tWhere is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (The Stock Rider, is built in, the style) -> the style (18797ms)\nWhere is Rider College located?\tReal estate\t-13.245195107217516\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, of buying, $x) -> (Real estate, Instance Of, state) (later every rider, buys a ?cheap? piece of, real estate) -> Real estate (11592ms)\nWhere is Rider College located?\tWill county\t-13.331128217683172\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, can also access, $x) -> (Will county, Instance Of, county in the state) (Riders, also can access, Will County) -> Will county (14142ms)\nWhere is Rider College located?\til Houston\t-13.38817002939754\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (il Houston, Instance Of, state) (Sirrus-Rider, find similar routes in, Houston) -> il Houston (11592ms)\nWhere is Rider College located?\tPre existing conditions\t-13.477505204821195\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, can list, $x) -> (Pre existing conditions, Instance Of, stated cause) (the rider/driver, can list, pre-existing conditions) -> Pre existing conditions (12840ms)\nWhere is Rider College located?\t? 1st grade children\t-13.531211130343348\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> $x: ($x, near, rider) -> (? 1st grade children, gather near, 1st grade car rider door) -> ? 1st grade children (9003ms)\nWhere is Rider College located?\tpossession\t-13.560976046956373\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (possession, Instance Of, mental state) (the rider, was found to be in, possession) -> possession (11879ms)\nWhere is Rider College located?\tsouthern california\t-13.57212557183951\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: (state, be a state or province located in the geopolitical location, $x) (rider, locate, $x) -> (STATES, is a state or province located in the geopolitical location, southern california) (riders, are located in, Southern California) -> southern california (11879ms)\nWhere is Rider College located?\tthe dog attack\t-13.739398961390819\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> $x: ($x, near, rider) -> (the dog attack, occurred near, East Rider Street) -> the dog attack (9003ms)\nWhere is Rider College located?\tSINGAPORE\t-13.887767015847963\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, be a country located in the geopolitical location, state) (rider, locate, $x) -> (SINGAPORE, is a country located in the geopolitical location, STATES) (1-800-780-5733 Riders Lodge, is located in, Singapore) -> SINGAPORE (13558ms)\nWhere is Rider College located?\tcriterion\t-13.900603778550122\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, comply, $x) -> (criterion, Instance Of, state) (The rider training programs, shall comply with, criteria) -> criterion (14849ms)\nWhere is Rider College located?\tcriteria\t-13.904805931661018\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, comply, $x) -> (criteria, Instance Of, state) (The rider training programs, shall comply with, criteria) -> criteria (14849ms)\nWhere is Rider College located?\tpoint\t-13.996583602925266\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, from finding, $x) -> (point, Instance Of, state) (transit riders, find their way from, points) -> point (14849ms)\nWhere is Rider College located?\tthe depth\t-14.016598457448\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (riders, also states, the depth) -> the depth (18640ms)\nWhere is Rider College located?\tthe expiration\t-14.149817650143506\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (Such rider, shall state the approximate date of, the expiration) -> the expiration (18797ms)\nWhere is Rider College located?\thill\t-14.155647664880233\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, need to access, $x) -> (hill, Instance Of, region of the state) (the rider, needs access to, hills) -> hill (11879ms)\nWhere is Rider College located?\tfriend\t-14.163504649174605\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, to spend time with, $x) -> (friend, Instance Of, state police officer) (Some riders, choose to spend time with, friends) -> friend (14016ms)\nWhere is Rider College located?\tThe board\t-14.338518727153621\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, be a by, state) (rider, locate, $x) -> (The board, was dealt a difficult hand by, the state) (the rider, locate, the board) -> The board (16326ms)\nWhere is Rider College located?\tThe Sign\t-14.480278008310535\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, can look for, $x) -> (The Sign, Instance Of, good Western-mystery hybrid, featuring Arizona State Trooper Ben Hale) (Riders, can look for, the signs) -> The Sign (16606ms)\nWhere is Rider College located?\t3-mm thick steel plate\t-14.617140636199794\tWhere is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (All Riders, are built in, 3-mm thick steel plate) -> 3-mm thick steel plate (18797ms)\nWhere is Rider College located?\tthe project\t-14.624230755831022\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, be a by, state) (rider, locate, $x) -> (the project, was a joint effort by, the State Government) (westbound riders, is located west of, the Project) -> the project (16326ms)\nWhere is Rider College located?\tThe project\t-14.697005142115113\tWhere is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, be a by, state) (rider, locate, $x) -> (The project, was also considered a high priority by, the State) (westbound riders, is located west of, the Project) -> The project (16326ms)\nWhere is Rider College located?\t1902\t-14.77692997333474\tWhere is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (The Rider House, was built in, 1902) -> 1902 (18797ms)\nWhat is the heaviest naturally occurring element?\tcrossword puzzle clue\t-4.779116976579605\tWhat is the heaviest naturally occurring element? -> $x: (the heaviest naturally occurring element, instance of, $x) -> $x: (heaviest naturally occur element, instance of, $x) -> (Heaviest naturally occurring element, Instance Of, crossword puzzle clue) -> crossword puzzle clue (5401ms)\nWhat is the heaviest naturally occurring element?\telement\t-7.190815481989836\tWhat is the heaviest naturally occurring element? -> $x: (the heaviest naturally occurring element, instance of, $x) -> $x: (heaviest naturally occur element, instance of, $x) -> (heaviest naturally occurring chemical element, Instance Of, element) -> element (5401ms)\nwhat is Speedy Claxton's real name?\tSpeedy Claxton\t-8.022953487716052\twhat is Speedy Claxton's real name? -> what be [ speedy claxton ] s real name ? -> what be speedy claxton s name ? -> $x: (speedy claxton, name, $x) -> (Speedy Claxton, Daylife Topic Name, Speedy Claxton) -> Speedy Claxton (8843ms)\nWhat is the capital of Italy?\tFlorence Italy\t2.4146375686835606\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence Italy, was actually the capital of, Italy) -> Florence Italy (4485ms)\nWhat is the capital of Italy?\tRomans Rome Rome\t2.364002325127956\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Romans Rome Rome, is the capital of, Italy) -> Romans Rome Rome (4486ms)\nWhat is the capital of Italy?\tEmilia-Romagna\t2.2630374781369906\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Emilia-Romagna, is the gastronomic capital of, Italy) -> Emilia-Romagna (4485ms)\nWhat is the capital of Italy?\tRome Rome Rome\t2.062184116270105\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Rome Rome, is the capital of, Italy) -> Rome Rome Rome (4486ms)\nWhat is the capital of Italy?\tFlorence\t1.9461090416576043\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence, was the capital of, Italy) -> Florence (4980ms)\nWhat is the capital of Italy?\tneighbouring Riccione\t1.8876901549271912\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (neighbouring Riccione, is the clubbing capital of, Italy) -> neighbouring Riccione (4980ms)\nWhat is the capital of Italy?\tRome\t1.872730415770571\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome, Is the capital of, Italy) -> Rome (4980ms)\nWhat is the capital of Italy?\tFirenze\t1.794132513644377\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Firenze, was the capital of, Italy) -> Firenze (12469ms)\nWhat is the capital of Italy?\tTurin\t1.78568274331953\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Turin, was the capital of, Italy) -> Turin (12469ms)\nWhat is the capital of Italy?\tItaly Florence\t1.773095612585871\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Italy Florence, is the artistic capital of, Italy) -> Italy Florence (12469ms)\nWhat is the capital of Italy?\tRome Rome\t1.7471768411428368\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Rome, has been the capital of, Italy) -> Rome Rome (12469ms)\nWhat is the capital of Italy?\tFlorence Florence\t1.744801278834716\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence Florence, is the artistic capital of, Italy) -> Florence Florence (12469ms)\nWhat is the capital of Italy?\tThe 'Eternal City\t1.6852478351415225\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (The 'Eternal City, is the capital of, Italy) -> The 'Eternal City (12845ms)\nWhat is the capital of Italy?\tE Rome\t1.6631780789927633\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (E Rome, is the capital of, Italy) -> E Rome (12986ms)\nWhat is the capital of Italy?\tMajor Cities\t1.6572657183779609\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Major Cities, is the capital of, Italy) -> Major Cities (12986ms)\nWhat is the capital of Italy?\tclose Rome\t1.6472625129638452\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (close Rome, is the capital of, Italy) -> close Rome (12986ms)\nWhat is the capital of Italy?\tPerugia\t1.5806530838961348\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Perugia, is the capital city of, Italy) -> Perugia (13437ms)\nWhat is the capital of Italy?\tSalerno\t1.5205276180871432\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Salerno, was the capital city of, Italy) -> Salerno (13876ms)\nWhat is the capital of Italy?\tStudent Blogger Florence\t1.520024525133096\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Student Blogger Florence, has been the capital of, Italy) -> Student Blogger Florence (13876ms)\nWhat is the capital of Italy?\tBologna\t1.5138511889643311\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Bologna, is also the culinary capital of, Italy) -> Bologna (13876ms)\nWhat is the capital of Italy?\tAsk\t1.5103835970548936\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Ask, is the capital of, Italy) -> Ask (13876ms)\nWhat is the capital of Italy?\ta Roman Rome Rome\t1.5027764297686175\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (a Roman Rome Rome, is the capital of, Italy) -> a Roman Rome Rome (13876ms)\nWhat is the capital of Italy?\tNational government Rome\t1.459782319933221\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (National government Rome, is the national capital of, Italy) -> National government Rome (14052ms)\nWhat is the capital of Italy?\tDiscussion Forum Rome Rome\t1.4566729408096726\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Discussion Forum Rome Rome, is the capital of, Italy) -> Discussion Forum Rome Rome (14052ms)\nWhat is the capital of Italy?\tan extremely beautiful country\t1.423704077086605\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (an extremely beautiful country, is the capital of, Italy) -> an extremely beautiful country (14052ms)\nWhat is the capital of Italy?\tan extremely attractive city\t1.423639508959349\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (an extremely attractive city, is the capital of, Italy) -> an extremely attractive city (14052ms)\nWhat is the capital of Italy?\tLocal Information Rome\t1.4067304507375922\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Local Information Rome, is the capital of, Italy) -> Local Information Rome (14113ms)\nWhat is the capital of Italy?\tVenice\t1.4059590344908512\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Kingdom of Italy, Capital, Venice) -> Venice (14113ms)\nWhat is the capital of Italy?\tMilan\t1.4059590344908512\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Kingdom of Italy, Capital, Milan) -> Milan (14114ms)\nWhat is the capital of Italy?\tworld history Rome\t1.3798864290995345\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (world history Rome, is the capital city of, Italy) -> world history Rome (14113ms)\nWhat is the capital of Italy?\tRome Colosseum Rome\t1.357642799031777\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Colosseum Rome, is the capital city of, Italy) -> Rome Colosseum Rome (14363ms)\nWhat is the capital of Italy?\ta . Rome\t1.357642799031777\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (a . Rome, is the capital of, Italy) -> a . Rome (14363ms)\nWhat is the capital of Italy?\tRavenna\t1.314906719007444\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Ravenna, was then the Roman capital of, Italy) -> Ravenna (14363ms)\nWhat is the capital of Italy?\tJohnny\t1.2858022404815497\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Johnny, is the capital of, Italy) -> Johnny (14450ms)\nWhat is the capital of Italy?\tSociety Rome ?\t1.2773840571422141\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Society Rome ?, is the capital city of, Italy) -> Society Rome ? (14450ms)\nWhat is the capital of Italy?\tclose Turin ?\t1.267136513278047\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (close Turin ?, was the original capital of, Italy) -> close Turin ? (14450ms)\nWhat is the capital of Italy?\tRome and Vatican City Rome\t1.2485683353435442\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome and Vatican City Rome, is the capital of, Italy) -> Rome and Vatican City Rome (14450ms)\nWhat is the capital of Italy?\tRome Hotel Guide Rome\t1.2203385697196447\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Hotel Guide Rome, is the current capital of, Italy) -> Rome Hotel Guide Rome (14450ms)\nWhat is the capital of Italy?\tunified Italy\t1.0241068435023557\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, was the first capital of, unified Italy) -> unified Italy (14601ms)\nWhat is the capital of Italy?\tthe Emilia-Romagna\t1.0184393787507466\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (northern Italy, is the capital city of, the Emilia-Romagna) -> the Emilia-Romagna (14601ms)\nWhat is the capital of Italy?\tItaly Rome\t1.0004942760129674\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Italy Rome, is the capital of, Italy) -> Italy Rome (14601ms)\nWhat is the capital of Italy?\tTirana\t0.8818377110668756\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Albania under Italy, Capital, Tirana) -> Tirana (15244ms)\nWhat is the capital of Italy?\tItaly\t0.7670499558745321\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Rome, is the capital of, Italy) -> Italy (15243ms)\nWhat is the capital of Italy?\tthe 2006 winter Olympics\t0.7601626064567417\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (the 2006 winter Olympics, is the capital of, Italy) -> the 2006 winter Olympics (15244ms)\nWhat is the capital of Italy?\tTuscany ?\t0.7446188025430254\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (12:00 pm Florence , Italy ,, is the capital of, Tuscany ?) -> Tuscany ? (15285ms)\nWhat is the capital of Italy?\tAvailability Rome\t0.6844400967575917\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Availability Rome, is the capital of, Italy) -> Availability Rome (15286ms)\nWhat is the capital of Italy?\t4 June Rome Rome Rome\t0.6779322171088613\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (4 June Rome Rome Rome, is the capital of, Italy) -> 4 June Rome Rome Rome (15286ms)\nWhat is the capital of Italy?\t1861 Rome\t0.6708586731977935\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (1861 Rome, was declared the capital of, Italy) -> 1861 Rome (15286ms)\nWhat is the capital of Italy?\tNational Rome\t0.6658719188230888\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (National Rome, is the national capital of, Italy) -> National Rome (15648ms)\nWhat is the capital of Italy?\tLatin Roma\t0.6284012500934\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Latin Roma, is the capital city of, Italy) -> Latin Roma (15650ms)\nWhat is the capital of Italy?\tFebruary 8-10 Milan\t0.4777853946571917\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (February 8-10 Milan, is the economic capital of, Italy) -> February 8-10 Milan (15739ms)\nWhat is the capital of Italy?\tMilan Rome\t0.42551373051583385\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Milan Rome, may be the administrative capital of, Italy) -> Milan Rome (15739ms)\nWhat is the capital of Italy?\tRome 2313 60.05 % Rome\t0.37436392004649033\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome 2313 60.05 % Rome, is the capital city of, Italy) -> Rome 2313 60.05 % Rome (15739ms)\nWhat is the capital of Italy?\tthe Province\t0.35697588649582346\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, the Province) -> the Province (15856ms)\nWhat is the capital of Italy?\tNaples\t0.3505943768273232\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Napoli, is the capital city of, Naples) -> Naples (15856ms)\nWhat is the capital of Italy?\tTuscany\t0.3169948719672937\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Florence, is the regional capital of, Tuscany) -> Tuscany (15856ms)\nWhat is the capital of Italy?\tthe Siena Province\t0.31334802561737396\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, the Siena Province) -> the Siena Province (15856ms)\nWhat is the capital of Italy?\tSicily\t0.2887651063433945\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Palermo Italy Palermo, is the capital city of, Sicily) -> Sicily (16131ms)\nWhat is the capital of Italy?\tthe Campania Region\t0.15282121271884463\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital city of, the Campania Region) -> the Campania Region (16201ms)\nWhat is the capital of Italy?\tthe Italian island\t0.12267525067158358\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Palermo, is the capital of, the Italian island) -> the Italian island (16201ms)\nWhat is the capital of Italy?\tthe Calabria region\t0.08773473949019861\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Catanzaro, is capital of, the Calabria region) -> the Calabria region (16201ms)\nWhat is the capital of Italy?\tthe Trentino region\t0.08773473949019861\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Trento, is the capital of, the Trentino region) -> the Trentino region (16200ms)\nWhat is the capital of Italy?\tVeneto\t0.0774513421633718\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, Veneto) -> Veneto (16554ms)\nWhat is the capital of Italy?\tthe Italian region\t0.07150106006988999\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Florence, is the capital city of, the Italian region) -> the Italian region (16554ms)\nWhat is the capital of Italy?\ttrulli country\t0.05030868092223795\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (southern Italy, is the capital of, trulli country) -> trulli country (16554ms)\nWhat is the capital of Italy?\ttasty food and Rome\t0.02624032113689001\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is arguably the world???s capital of, tasty food and Rome) -> tasty food and Rome (16554ms)\nWhat is the capital of Italy?\tthe capital\t-0.21201693391782195\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (the capital, is now the capital of, Italy) -> the capital (16929ms)\nWhat is the capital of Italy?\tthe city\t-0.28147630375046306\tWhat is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (the city, is the capital of, Italy) -> the city (17121ms)\nWhat is the capital of Italy?\tVeneto area\t-0.3755390631318536\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (Venice Italy, is a capital of, Veneto area) -> Veneto area (17364ms)\nWhat is the capital of Italy?\tcentral Italy\t-0.4173884941836672\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, be the heart of, Italy) -> (central Italy, is the heart of, Italy) -> central Italy (17601ms)\nWhat is the capital of Italy?\tProvince of La Spezia\t-0.5439690625012423\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of La Spezia, Second level division of, Italy) -> Province of La Spezia (17983ms)\nWhat is the capital of Italy?\tSouth Tyrol\t-0.8211135273964281\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (South Tyrol, Second level division of, Italy) -> South Tyrol (18587ms)\nWhat is the capital of Italy?\tAosta Valley\t-0.8211135273964281\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, first level division of, Italy) -> (Aosta Valley, First level division of, Italy) -> Aosta Valley (18587ms)\nWhat is the capital of Italy?\tthe island\t-0.8478143596960721\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> (ITALY Cagliari, is the capital of, the island) -> the island (18716ms)\nWhat is the capital of Italy?\tProvince of Matera\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Matera, Second level division of, Italy) -> Province of Matera (19609ms)\nWhat is the capital of Italy?\tProvince of Rieti\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Rieti, Second level division of, Italy) -> Province of Rieti (19810ms)\nWhat is the capital of Italy?\tProvince of Mantua\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Mantua, Second level division of, Italy) -> Province of Mantua (19144ms)\nWhat is the capital of Italy?\tProvince of Ravenna\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Ravenna, Second level division of, Italy) -> Province of Ravenna (19144ms)\nWhat is the capital of Italy?\tProvince of Genoa\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Genoa, Second level division of, Italy) -> Province of Genoa (19144ms)\nWhat is the capital of Italy?\tProvince of Pordenone\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Pordenone, Second level division of, Italy) -> Province of Pordenone (19810ms)\nWhat is the capital of Italy?\tProvince of Florence\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Florence, Second level division of, Italy) -> Province of Florence (19670ms)\nWhat is the capital of Italy?\tProvince of Vercelli\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Vercelli, Second level division of, Italy) -> Province of Vercelli (18948ms)\nWhat is the capital of Italy?\tProvince of Pistoia\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Pistoia, Second level division of, Italy) -> Province of Pistoia (19310ms)\nWhat is the capital of Italy?\tProvince of Udine\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Udine, Second level division of, Italy) -> Province of Udine (19810ms)\nWhat is the capital of Italy?\tProvince of Forl?-Cesena\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Forl?-Cesena, Second level division of, Italy) -> Province of Forl?-Cesena (19535ms)\nWhat is the capital of Italy?\tProvince of Cuneo\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Cuneo, Second level division of, Italy) -> Province of Cuneo (18874ms)\nWhat is the capital of Italy?\tProvince of Brescia\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Brescia, Second level division of, Italy) -> Province of Brescia (19739ms)\nWhat is the capital of Italy?\tProvince of Crotone\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Crotone, Second level division of, Italy) -> Province of Crotone (19311ms)\nWhat is the capital of Italy?\tProvince of Grosseto\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Grosseto, Second level division of, Italy) -> Province of Grosseto (19739ms)\nWhat is the capital of Italy?\tProvince of Rovigo\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Rovigo, Second level division of, Italy) -> Province of Rovigo (19388ms)\nWhat is the capital of Italy?\tProvince of Cremona\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Cremona, Second level division of, Italy) -> Province of Cremona (19144ms)\nWhat is the capital of Italy?\tProvince of Messina\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Messina, Second level division of, Italy) -> Province of Messina (19810ms)\nWhat is the capital of Italy?\tProvince of Parma\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Parma, Second level division of, Italy) -> Province of Parma (19311ms)\nWhat is the capital of Italy?\tProvince of Latina\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Latina, Second level division of, Italy) -> Province of Latina (19670ms)\nWhat is the capital of Italy?\tProvince of Taranto\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Taranto, Second level division of, Italy) -> Province of Taranto (19388ms)\nWhat is the capital of Italy?\tProvince of Perugia\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Perugia, Second level division of, Italy) -> Province of Perugia (19670ms)\nWhat is the capital of Italy?\tProvince of Avellino\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Avellino, Second level division of, Italy) -> Province of Avellino (18948ms)\nWhat is the capital of Italy?\tProvince of Alessandria\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Alessandria, Second level division of, Italy) -> Province of Alessandria (19609ms)\nWhat is the capital of Italy?\tProvince of Benevento\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Benevento, Second level division of, Italy) -> Province of Benevento (19609ms)\nWhat is the capital of Italy?\tProvince of Bergamo\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Bergamo, Second level division of, Italy) -> Province of Bergamo (19739ms)\nWhat is the capital of Italy?\tProvince of Arezzo\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Arezzo, Second level division of, Italy) -> Province of Arezzo (18874ms)\nWhat is the capital of Italy?\tProvince of Brindisi\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Brindisi, Second level division of, Italy) -> Province of Brindisi (19535ms)\nWhat is the capital of Italy?\tProvince of Novara\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Novara, Second level division of, Italy) -> Province of Novara (19312ms)\nWhat is the capital of Italy?\tProvince of Campobasso\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Campobasso, Second level division of, Italy) -> Province of Campobasso (19739ms)\nWhat is the capital of Italy?\tProvince of Ragusa\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Ragusa, Second level division of, Italy) -> Province of Ragusa (19739ms)\nWhat is the capital of Italy?\tProvince of Biella\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Biella, Second level division of, Italy) -> Province of Biella (19000ms)\nWhat is the capital of Italy?\tProvince of Padua\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Padua, Second level division of, Italy) -> Province of Padua (19144ms)\nWhat is the capital of Italy?\tProvince of Ancona\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Ancona, Second level division of, Italy) -> Province of Ancona (19609ms)\nWhat is the capital of Italy?\tProvince of Milan\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Milan, Second level division of, Italy) -> Province of Milan (19144ms)\nWhat is the capital of Italy?\tProvince of Syracuse\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Syracuse, Second level division of, Italy) -> Province of Syracuse (19535ms)\nWhat is the capital of Italy?\tProvince of Terni\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Terni, Second level division of, Italy) -> Province of Terni (19810ms)\nWhat is the capital of Italy?\tProvince of Turin\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Turin, Second level division of, Italy) -> Province of Turin (19609ms)\nWhat is the capital of Italy?\tProvince of Sassari\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Sassari, Second level division of, Italy) -> Province of Sassari (19535ms)\nWhat is the capital of Italy?\tProvince of Carbonia-Iglesias\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Carbonia-Iglesias, Second level division of, Italy) -> Province of Carbonia-Iglesias (19000ms)\nWhat is the capital of Italy?\tProvince of Sondrio\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Sondrio, Second level division of, Italy) -> Province of Sondrio (19535ms)\nWhat is the capital of Italy?\tProvince of Belluno\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Belluno, Second level division of, Italy) -> Province of Belluno (18948ms)\nWhat is the capital of Italy?\tProvince of Agrigento\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Agrigento, Second level division of, Italy) -> Province of Agrigento (19000ms)\nWhat is the capital of Italy?\tProvince of Bari\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Bari, Second level division of, Italy) -> Province of Bari (19670ms)\nWhat is the capital of Italy?\tProvince of Venice\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Venice, Second level division of, Italy) -> Province of Venice (18948ms)\nWhat is the capital of Italy?\tProvince of Fermo\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Fermo, Second level division of, Italy) -> Province of Fermo (19739ms)\nWhat is the capital of Italy?\tProvince of Prato\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Prato, Second level division of, Italy) -> Province of Prato (19000ms)\nWhat is the capital of Italy?\tProvince of Teramo\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Teramo, Second level division of, Italy) -> Province of Teramo (19810ms)\nWhat is the capital of Italy?\tProvince of Lodi\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Lodi, Second level division of, Italy) -> Province of Lodi (19388ms)\nWhat is the capital of Italy?\tProvince of Lecco\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Lecco, Second level division of, Italy) -> Province of Lecco (19388ms)\nWhat is the capital of Italy?\tProvince of Gorizia\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Gorizia, Second level division of, Italy) -> Province of Gorizia (19388ms)\nWhat is the capital of Italy?\tProvince of Asti\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Asti, Second level division of, Italy) -> Province of Asti (19670ms)\nWhat is the capital of Italy?\tProvince of Caltanissetta\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Caltanissetta, Second level division of, Italy) -> Province of Caltanissetta (18948ms)\nWhat is the capital of Italy?\tFriuli-Venezia Giulia\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, first level division of, Italy) -> (Friuli-Venezia Giulia, First level division of, Italy) -> Friuli-Venezia Giulia (19000ms)\nWhat is the capital of Italy?\tProvince of Barletta-Andria-Trani\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Barletta-Andria-Trani, Second level division of, Italy) -> Province of Barletta-Andria-Trani (19310ms)\nWhat is the capital of Italy?\tProvince of Cagliari\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Cagliari, Second level division of, Italy) -> Province of Cagliari (19609ms)\nWhat is the capital of Italy?\tProvince of Pisa\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Pisa, Second level division of, Italy) -> Province of Pisa (19000ms)\nWhat is the capital of Italy?\tProvince of Olbia-Tempio\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Olbia-Tempio, Second level division of, Italy) -> Province of Olbia-Tempio (19388ms)\nWhat is the capital of Italy?\tProvince of Ferrara\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Ferrara, Second level division of, Italy) -> Province of Ferrara (19311ms)\nWhat is the capital of Italy?\tProvince of Lucca\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Lucca, Second level division of, Italy) -> Province of Lucca (18874ms)\nWhat is the capital of Italy?\tProvince of Rimini\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Rimini, Second level division of, Italy) -> Province of Rimini (19535ms)\nWhat is the capital of Italy?\tProvince of Treviso\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Treviso, Second level division of, Italy) -> Province of Treviso (19671ms)\nWhat is the capital of Italy?\tProvince of Bologna\t-0.9053893391439654\tWhat is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Bologna, Second level division of, Italy) -> Province of Bologna (18948ms)\nWhat did George Washington call his house?\tRyan\t-12.628676313672054\tWhat did George Washington call his house? -> what do george washington [ call his house ] ? -> what george washington call his house ? -> $x: ($x, instance of, george washington) ($x, call, his house) -> (Ryan, Instance Of, 2010 graduate of The George Washington University Law School) (Ryan, just called, his house) -> Ryan (2406ms)\nWhat does the acronym NATO stand for?\tNorth Atlantic\t-7.63531148886095\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stood for, North Atlantic) -> North Atlantic (9587ms)\nWhat does the acronym NATO stand for?\tthe North Atlantic Treaty Organization\t-7.681980946482119\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands for, the North Atlantic Treaty Organization) -> the North Atlantic Treaty Organization (9587ms)\nWhat does the acronym NATO stand for?\tthe Soviet threat\t-8.069055707882875\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stood against, the Soviet threat) -> the Soviet threat (9587ms)\nWhat does the acronym NATO stand for?\tNorth Atlantic Treaty Organisation\t-8.126904639301165\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands for, North Atlantic Treaty Organisation) -> North Atlantic Treaty Organisation (9587ms)\nWhat does the acronym NATO stand for?\ta chance\t-8.239288977464904\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands, a chance) -> a chance (9587ms)\nWhat does the acronym NATO stand for?\tthe ICJ\t-8.268967771117534\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (The NATO countries, all stood before, the ICJ) -> the ICJ (9587ms)\nWhat does the acronym NATO stand for?\tAfghan fighting units\t-8.327921230769066\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands up, Afghan fighting units) -> Afghan fighting units (9677ms)\nWhat does the acronym NATO stand for?\tEstonia\t-8.393060886683417\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, would stand up for, Estonia) -> Estonia (9677ms)\nWhat does the acronym NATO stand for?\ta crossroads\t-8.44147556270204\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (1991 NATO, stood at, a crossroads) -> a crossroads (9677ms)\nWhat does the acronym NATO stand for?\tNATO Ain?t\t-8.44398954250915\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands for, NATO Ain?t) -> NATO Ain?t (9677ms)\nWhat does the acronym NATO stand for?\t?No Action Talking Only?\t-8.529260257624951\tWhat does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands for, ?No Action Talking Only?) -> ?No Action Talking Only? (9677ms)\nWhen was Julius Caesar born?\tJuly\t0.1174499290396569\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (the Roman emperor Julius Caesar, was born on, July) -> July (3044ms)\nWhen was Julius Caesar born?\teither July 12th\t0.10466789276076138\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Julius Caesar, was born on, either July 12th) -> either July 12th (3044ms)\nWhen was Julius Caesar born?\tJuly 12 , 100 BC\t-0.10886118951158696\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Julius Caesar, was born on, July 12 , 100 BC) -> July 12 , 100 BC (3045ms)\nWhen was Julius Caesar born?\tJuly 13 , 100 BC\t-0.15645188825493683\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Gaius Julius Caesar, was born on, July 13 , 100 BC) -> July 13 , 100 BC (3044ms)\nWhen was Julius Caesar born?\tjuly 12\t-0.3777277898696143\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Julius Caesar, was born on, july 12) -> july 12 (6586ms)\nWhen was Julius Caesar born?\tJuly 13\t-0.4905392351569562\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Gaius Julius Caesar, was born on, July 13) -> July 13 (6586ms)\nWhen was Julius Caesar born?\t12 July\t-0.5611153969600489\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Gaius Julius Caesar, was born, 12 July) -> 12 July (10008ms)\nWhen was Julius Caesar born?\tRome\t-0.600761657549409\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, Rome) -> Rome (6586ms)\nWhen was Julius Caesar born?\t100 B.C.\t-0.8769801793151204\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100 B.C.) -> 100 B.C. (6585ms)\nWhen was Julius Caesar born?\t100 BC\t-0.8951561054566203\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100 BC) -> 100 BC (6586ms)\nWhen was Julius Caesar born?\tJuly 12 , 100\t-1.8604485919653655\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born, July 12 , 100) -> July 12 , 100 (10008ms)\nWhen was Julius Caesar born?\t100\t-1.8835372034509126\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100) -> 100 (7666ms)\nWhen was Julius Caesar born?\tthe Subura\t-2.1061463100090316\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, the Subura) -> the Subura (7666ms)\nWhen was Julius Caesar born?\tMarch 15th\t-3.2199772970650553\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, was murdered on, March 15th) -> March 15th (11808ms)\nWhen was Julius Caesar born?\tMarch 15 , 44 B.C.\t-3.551630374759136\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, was murdered on, March 15 , 44 B.C.) -> March 15 , 44 B.C. (11808ms)\nWhen was Julius Caesar born?\tc-section\t-3.7488015269025423\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born through, c-section) -> c-section (10098ms)\nWhen was Julius Caesar born?\tsouthern France\t-4.044145359656497\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (Julius Caesar, have be found in, $x) -> (Julius Caesar, has just been found in, southern France) -> southern France (7772ms)\nWhen was Julius Caesar born?\tCaesarean section\t-4.046720726934993\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born by, Caesarean section) -> Caesarean section (10125ms)\nWhen was Julius Caesar born?\t709 AUC\t-4.116383857195709\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, 709 AUC) -> 709 AUC (10288ms)\nWhen was Julius Caesar born?\tthe twelfth\t-4.174503720891208\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (C. Julius Caesar, was born on, the twelfth) -> the twelfth (7687ms)\nWhen was Julius Caesar born?\t44 B.C.\t-4.295876015519292\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, 44 B.C.) -> 44 B.C. (10288ms)\nWhen was Julius Caesar born?\t44 B.C. Dramatic stuff\t-4.338128272795908\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, 44 B.C. Dramatic stuff) -> 44 B.C. Dramatic stuff (10288ms)\nWhen was Julius Caesar born?\t44 BC\t-4.38700902253215\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, 44 BC) -> 44 BC (10288ms)\nWhen was Julius Caesar born?\tnatal teeth\t-4.7754060443987285\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, were born with, natal teeth) -> natal teeth (10125ms)\nWhen was Julius Caesar born?\tdiamonds\t-4.784833261618841\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (Julius Caesar, become king of, $x) -> (Julius Caesar, became the king of, diamonds) -> diamonds (7825ms)\nWhen was Julius Caesar born?\ta virgin\t-4.909933620579641\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was reportedly born of, a virgin) -> a virgin (10159ms)\nWhen was Julius Caesar born?\tEgypt\t-4.92919963222056\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be to come to, $x) -> (Julius Caesar, was coming to, Egypt) -> Egypt (9780ms)\nWhen was Julius Caesar born?\tGoogle and Wikipedia\t-5.038712497448058\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born thanks to, Google and Wikipedia) -> Google and Wikipedia (10159ms)\nWhen was Julius Caesar born?\tthe Julian calendar\t-5.187451058558768\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be to come to, $x) -> (Julius Caesar, came to be known as, the Julian calendar) -> the Julian calendar (9781ms)\nWhen was Julius Caesar born?\tthe year 164\t-5.329822380393794\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (Julius Caesar, be bear about, $x) -> (Julius Caesar Tiberius Gracchus, was born about, the year 164) -> the year 164 (7717ms)\nWhen was Julius Caesar born?\ta long time\t-5.3489431336634405\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (?Julius Caesar, was born, a long time) -> a long time (10159ms)\nWhen was Julius Caesar born?\tthe Romans\t-5.507459134821632\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (Julius Caesar, become king of, $x) -> (Julius Caesar, became king of, the Romans) -> the Romans (7825ms)\nWhen was Julius Caesar born?\ta cold blood\t-5.710332807455528\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (' Julius Caesar, was killed in, a cold blood) -> a cold blood (10309ms)\nWhen was Julius Caesar born?\ta ford\t-6.146090827242957\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, establish on, $x) -> (Julius Caesar, established a settlement on, a ford) -> a ford (10159ms)\nWhen was Julius Caesar born?\ta long time ago\t-6.368359495019032\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius  Caesar, was born, a long time ago) -> a long time ago (10189ms)\nWhen was Julius Caesar born?\tsuspicion\t-6.452714755212475\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (its leader Julius Caesar, was murdered on, suspicion) -> suspicion (11808ms)\nWhen was Julius Caesar born?\tthe Ides\t-6.465977709335808\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, is still murdered on, the Ides) -> the Ides (11808ms)\nWhen was Julius Caesar born?\tthe forum\t-6.684480937954416\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, the forum) -> the forum (10310ms)\nWhen was Julius Caesar born?\tbehalf\t-7.006983604792712\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, intervene on, $x) -> (Julius Caesar, intervened on, behalf) -> behalf (11872ms)\nWhen was Julius Caesar born?\tBritish soil\t-7.46109541792311\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, set foot on, $x) -> (Julius Caesar, set foot on, British soil) -> British soil (12037ms)\nWhen was Julius Caesar born?\tthe British shore\t-7.542600624863295\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, set foot on, $x) -> (Julius Caesar, set foot on, the British shore) -> the British shore (12038ms)\nWhen was Julius Caesar born?\tthe steps\t-8.123373646215017\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, was murdered on, the steps) -> the steps (11808ms)\nWhen was Julius Caesar born?\tthe fateful Ides\t-8.29290630170457\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, was murdered on, the fateful Ides) -> the fateful Ides (11808ms)\nWhen was Julius Caesar born?\tBritain\t-8.365005174476215\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, set foot on, $x) -> (Julius Caesar, first set foot on, Britain) -> Britain (12071ms)\nWhen was Julius Caesar born?\tthe island\t-8.441099092863361\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, landing on, $x) -> (Julius Caesar, landed on, the island) -> the island (11747ms)\nWhen was Julius Caesar born?\tthe ides\t-8.675629350092514\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (?Julius Caesar, was murdered on, the ides) -> the ides (11808ms)\nWhen was Julius Caesar born?\tthe year\t-8.681561555506603\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, the year) -> the year (10309ms)\nWhen was Julius Caesar born?\tthe shores\t-9.013030929190144\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, landing on, $x) -> (Julius Caesar, landed on, the shores) -> the shores (11747ms)\nWhen was Julius Caesar born?\tthe coast\t-9.090081363805828\tWhen was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, landing on, $x) -> (Julius Caesar, landed on, the coast) -> the coast (11747ms)\nHow many NFL teams are there?\tThe Saints\t-6.840264358157438\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Saints, are the hottest team in, the NFL) -> The Saints (9590ms)\nHow many NFL teams are there?\tThe Redskins\t-6.947619053883503\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Redskins, were the first team in, the NFL) -> The Redskins (9589ms)\nHow many NFL teams are there?\tchiefs\t-7.021414995421466\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (chiefs, is a sports team that plays in the league, NFL) -> chiefs (9589ms)\nHow many NFL teams are there?\tLouis Rams\t-7.307776257675483\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Louis Rams, is a sports team that plays in the league, NFL) -> Louis Rams (9589ms)\nHow many NFL teams are there?\tBucs\t-7.328966983746895\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Bucs, is a sports team that plays in the league, NFL) -> Bucs (9954ms)\nHow many NFL teams are there?\tJags\t-7.328966983746895\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Jags, is a sports team that plays in the league, NFL) -> Jags (9589ms)\nHow many NFL teams are there?\tPats\t-7.328966983746895\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Pats, is a sports team that plays in the league, NFL) -> Pats (9589ms)\nHow many NFL teams are there?\tphiladelphia-eagles\t-7.396095768861817\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (philadelphia-eagles, is a sports team that plays in the league, NFL) -> philadelphia-eagles (9954ms)\nHow many NFL teams are there?\tBILLS\t-7.396095768861817\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (BILLS, is a sports team that plays in the league, NFL) -> BILLS (9954ms)\nHow many NFL teams are there?\tGIANTS\t-7.396095768861817\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (GIANTS, is a sports team that plays in the league, NFL) -> GIANTS (10021ms)\nHow many NFL teams are there?\tNFL Jerseys\t-7.396095768861817\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (NFL Jerseys, is a sports team that plays in the league, NFL) -> NFL Jerseys (10021ms)\nHow many NFL teams are there?\tminnesota-vikings\t-7.396095768861817\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (minnesota-vikings, is a sports team that plays in the league, NFL) -> minnesota-vikings (9954ms)\nHow many NFL teams are there?\tnew-england-patriots\t-7.396095768861817\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (new-england-patriots, is a sports team that plays in the league, NFL) -> new-england-patriots (10021ms)\nHow many NFL teams are there?\tcincinnati-bengals\t-7.396095768861817\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (cincinnati-bengals, is a sports team that plays in the league, NFL) -> cincinnati-bengals (9954ms)\nHow many NFL teams are there?\tjacksonville-jaguars\t-7.396095768861817\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (jacksonville-jaguars, is a sports team that plays in the league, NFL) -> jacksonville-jaguars (9954ms)\nHow many NFL teams are there?\tthe Giants\t-7.411437224459803\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Giants, are the best team in, the NFL) -> the Giants (10021ms)\nHow many NFL teams are there?\tBUFFALO BILLS\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (BUFFALO BILLS, is a sports team that plays in the league, NFL) -> BUFFALO BILLS (10045ms)\nHow many NFL teams are there?\thouston texans\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (houston texans, is a sports team that plays in the league, NFL) -> houston texans (10045ms)\nHow many NFL teams are there?\tchicago cardinals\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (chicago cardinals, is a sports team that plays in the league, NFL) -> chicago cardinals (10045ms)\nHow many NFL teams are there?\tNY Jets\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (NY Jets, is a sports team that plays in the league, NFL) -> NY Jets (10045ms)\nHow many NFL teams are there?\tatlanta falcons\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (atlanta falcons, is a sports team that plays in the league, NFL) -> atlanta falcons (10021ms)\nHow many NFL teams are there?\ttennessee oilers\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (tennessee oilers, is a sports team that plays in the league, NFL) -> tennessee oilers (10045ms)\nHow many NFL teams are there?\tsd chargers\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (sd chargers, is a sports team that plays in the league, NFL) -> sd chargers (10069ms)\nHow many NFL teams are there?\ttennessee titans\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (tennessee titans, is a sports team that plays in the league, NFL) -> tennessee titans (10021ms)\nHow many NFL teams are there?\tL.A. Rams\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (L.A. Rams, is a sports team that plays in the league, NFL) -> L.A. Rams (10045ms)\nHow many NFL teams are there?\toakland raiders\t-7.457356702768514\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (oakland raiders, is a sports team that plays in the league, NFL) -> oakland raiders (10069ms)\nHow many NFL teams are there?\tlos angeles raiders\t-7.510960019936876\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (los angeles raiders, is a sports team that plays in the league, NFL) -> los angeles raiders (11021ms)\nHow many NFL teams are there?\tSaint Louis Rams\t-7.510960019936876\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Saint Louis Rams, is a sports team that plays in the league, NFL) -> Saint Louis Rams (11021ms)\nHow many NFL teams are there?\tnew york titans\t-7.510960019936876\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (new york titans, is a sports team that plays in the league, NFL) -> new york titans (10069ms)\nHow many NFL teams are there?\tSt Louis Rams\t-7.510960019936876\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (St Louis Rams, is a sports team that plays in the league, NFL) -> St Louis Rams (10069ms)\nHow many NFL teams are there?\tNew Orleans Hornets\t-7.510960019936876\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (New Orleans Hornets, is a sports team that plays in the league, NFL) -> New Orleans Hornets (11020ms)\nHow many NFL teams are there?\ttampa bay bucs\t-7.510960019936876\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (tampa bay bucs, is a sports team that plays in the league, NFL) -> tampa bay bucs (10069ms)\nHow many NFL teams are there?\tPittsburgh Steelers Sunday\t-7.510960019936876\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Pittsburgh Steelers Sunday, is a sports team that plays in the league, NFL) -> Pittsburgh Steelers Sunday (10069ms)\nHow many NFL teams are there?\tthe Lions\t-7.517476394723805\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Lions, were the worst team in, the NFL) -> the Lions (11020ms)\nHow many NFL teams are there?\tDenver\t-7.534392502733491\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Denver, is the only team in, the NFL) -> Denver (11020ms)\nHow many NFL teams are there?\tThe Titans\t-7.55644569152226\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Titans, are the only team in, the NFL) -> The Titans (11021ms)\nHow many NFL teams are there?\tFlorida Intl Golden Panthers\t-7.5582570644971945\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Florida Intl Golden Panthers, is a sports team that plays in the league, NFL) -> Florida Intl Golden Panthers (11245ms)\nHow many NFL teams are there?\tthe Colts\t-7.585231959881509\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Colts, are the worst team in, the NFL) -> the Colts (11245ms)\nHow many NFL teams are there?\tThe Green Bay Packers\t-7.589598376367634\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Green Bay Packers, are the only team in, the NFL) -> The Green Bay Packers (11245ms)\nHow many NFL teams are there?\t? The Chargers\t-7.606398181499943\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (? The Chargers, are the first team in, NFL history) -> ? The Chargers (11245ms)\nHow many NFL teams are there?\tthe Indianapolis Colts\t-7.609610903033606\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Indianapolis Colts, are the best team in, the NFL) -> the Indianapolis Colts (11245ms)\nHow many NFL teams are there?\tThe Buccaneers\t-7.611140717143403\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Buccaneers, were the youngest team in, the NFL) -> The Buccaneers (11245ms)\nHow many NFL teams are there?\tThe Dolphins\t-7.629834111454585\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Dolphins, are the worst team in, the NFL) -> The Dolphins (11296ms)\nHow many NFL teams are there?\tThe Carolina Panthers\t-7.658733774831846\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Carolina Panthers, were the worst team in, the NFL) -> The Carolina Panthers (11297ms)\nHow many NFL teams are there?\tWE CANT\t-7.703461090079305\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (WE CANT, BE THE WORST TEAMS IN, THE NFL) -> WE CANT (11296ms)\nHow many NFL teams are there?\tMiami Dolphins\t-7.750680307292411\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Miami Dolphins, is a sports team that plays in the league, NFL) -> Miami Dolphins (11322ms)\nHow many NFL teams are there?\tSeattle Seahawks\t-7.750680307292411\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Seattle Seahawks, is a sports team that plays in the league, NFL) -> Seattle Seahawks (11322ms)\nHow many NFL teams are there?\tGreenbay Packers\t-7.750680307292411\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Greenbay Packers, is a sports team that plays in the league, NFL) -> Greenbay Packers (11322ms)\nHow many NFL teams are there?\tDallas Cowboys\t-7.750680307292411\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Dallas Cowboys, is a sports team that plays in the league, NFL) -> Dallas Cowboys (11322ms)\nHow many NFL teams are there?\tBaltimore Colts\t-7.750680307292411\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Baltimore Colts, is a sports team that plays in the league, NFL) -> Baltimore Colts (11297ms)\nHow many NFL teams are there?\tDetroit Lions\t-7.750680307292411\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Detroit Lions, is a sports team that plays in the league, NFL) -> Detroit Lions (11297ms)\nHow many NFL teams are there?\tHouston Oilers\t-7.750680307292411\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Houston Oilers, is a sports team that plays in the league, NFL) -> Houston Oilers (11322ms)\nHow many NFL teams are there?\tIndianapolis Colts\t-7.750680307292411\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Indianapolis Colts, is a sports team that plays in the league, NFL) -> Indianapolis Colts (11297ms)\nHow many NFL teams are there?\tthe New York Football Giants\t-7.821494469935347\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the New York Football Giants, are the best team in, the NFL) -> the New York Football Giants (11322ms)\nHow many NFL teams are there?\t2012 Super Bowl\t-7.823254802862815\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (2012 Super Bowl, is a sports team that plays in the league, NFL) -> 2012 Super Bowl (11348ms)\nHow many NFL teams are there?\t2009 pro bowl\t-7.823254802862815\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (2009 pro bowl, is a sports team that plays in the league, NFL) -> 2009 pro bowl (11349ms)\nHow many NFL teams are there?\t2011 Pro Bowl\t-7.823254802862815\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (2011 Pro Bowl, is a sports team that plays in the league, NFL) -> 2011 Pro Bowl (11349ms)\nHow many NFL teams are there?\tSan Francisco 49ers\t-7.823254802862815\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (San Francisco 49ers, is a sports team that plays in the league, NFL) -> San Francisco 49ers (11349ms)\nHow many NFL teams are there?\tChicago bears\t-7.825835360192812\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Chicago bears, is a sports team that plays in the league, NFL) -> Chicago bears (11349ms)\nHow many NFL teams are there?\tDenver broncos\t-7.825835360192812\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Denver broncos, is a sports team that plays in the league, NFL) -> Denver broncos (11348ms)\nHow many NFL teams are there?\tthe 49ers\t-7.834684149667911\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the 49ers, are the best team in, the NFL) -> the 49ers (11375ms)\nHow many NFL teams are there?\tFurther Review\t-7.874373191092317\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Further Review, is the best team in, the NFL) -> Further Review (11376ms)\nHow many NFL teams are there?\tRedskins\t-8.00098449560388\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Redskins, is a sports team that plays in the league, NFL) -> Redskins (11375ms)\nHow many NFL teams are there?\tBuccaneers\t-8.00098449560388\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Buccaneers, is a sports team that plays in the league, NFL) -> Buccaneers (11376ms)\nHow many NFL teams are there?\tBrowns\t-8.00098449560388\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Browns, is a sports team that plays in the league, NFL) -> Browns (11375ms)\nHow many NFL teams are there?\tRavens\t-8.00098449560388\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Ravens, is a sports team that plays in the league, NFL) -> Ravens (11375ms)\nHow many NFL teams are there?\tthe Packers\t-8.157227554971096\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Packers, are the best team in, the NFL) -> the Packers (11401ms)\nHow many NFL teams are there?\tthe Saints\t-8.177628673835047\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Saints, were the only team in, the NFL) -> the Saints (11401ms)\nHow many NFL teams are there?\tthe Vikings\t-8.192103498025224\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Vikings, are the only team in, the NFL) -> the Vikings (11401ms)\nHow many NFL teams are there?\tthe Steelers\t-8.212504616889175\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Steelers, are the best team in, the NFL) -> the Steelers (11431ms)\nHow many NFL teams are there?\tthe Cowboys\t-8.212504616889175\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Cowboys, are the best team in, the NFL) -> the Cowboys (11431ms)\nHow many NFL teams are there?\tthe Redskins\t-8.212504616889175\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Redskins, were the last team in, the NFL) -> the Redskins (11431ms)\nHow many NFL teams are there?\tBengals\t-8.771289854672295\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Bengals, are the worst team in, the NFL) -> Bengals (11431ms)\nHow many NFL teams are there?\tthe Panthers\t-8.816328233523217\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Panthers, are the worst team in, the NFL) -> the Panthers (11482ms)\nHow many NFL teams are there?\tthe Patriots\t-8.816328233523217\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Patriots, are the best team in, the NFL) -> the Patriots (11482ms)\nHow many NFL teams are there?\tthe Rams\t-8.816328233523217\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Rams, are the worst team in, the NFL) -> the Rams (11456ms)\nHow many NFL teams are there?\tthe Ravens\t-8.816328233523217\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Ravens, are the only team in, the NFL) -> the Ravens (11456ms)\nHow many NFL teams are there?\tArizona\t-8.81739334363124\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Arizona, is the only team in, the NFL) -> Arizona (11482ms)\nHow many NFL teams are there?\tthe Bills\t-8.836729352387168\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Bills, are the worst team in, the NFL) -> the Bills (11658ms)\nHow many NFL teams are there?\tthe Bears\t-8.836729352387168\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Bears, are the best team in, the NFL) -> the Bears (11658ms)\nHow many NFL teams are there?\tthe Chargers\t-8.836729352387168\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Chargers, are the best team in, the NFL) -> the Chargers (11658ms)\nHow many NFL teams are there?\tthe Texans\t-8.836729352387168\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Texans, are the only team in, the NFL) -> the Texans (11658ms)\nHow many NFL teams are there?\tthemost\t-8.919448747887436\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (themost, improved teams in, the NFL) -> themost (11728ms)\nHow many NFL teams are there?\tthe Jets\t-8.928117310472755\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Jets, are the 2nd best team in, the NFL) -> the Jets (11755ms)\nHow many NFL teams are there?\tNew England\t-8.990895335485037\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (New England, is the best team in, the NFL) -> New England (11912ms)\nHow many NFL teams are there?\tThe 49ers\t-9.102920646354164\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The 49ers, are the only team in, the NFL) -> The 49ers (11966ms)\nHow many NFL teams are there?\tThe Jets\t-9.105384276073886\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Jets, are arguably the best team in, the NFL) -> The Jets (11966ms)\nHow many NFL teams are there?\tthe Baltimore Ravens\t-9.188109751895308\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (the Baltimore Ravens, is a great team in, nfl) -> the Baltimore Ravens (11966ms)\nHow many NFL teams are there?\t?dey ?\t-9.229763012783303\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (?dey ?, is possibly the best team in, the NFL) -> ?dey ? (12018ms)\nHow many NFL teams are there?\tBen Roethlisberger\t-9.272269055186145\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (Ben Roethlisberger, are probably the best team in, the NFL) -> Ben Roethlisberger (12018ms)\nHow many NFL teams are there?\tThe Browns\t-9.28621738801653\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Browns, are the best 1-4 team in, the NFL) -> The Browns (12650ms)\nHow many NFL teams are there?\ta matter\t-9.349992907204626\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (a matter, does any team in, the NFL) -> a matter (14080ms)\nHow many NFL teams are there?\tvotes\t-9.360690229160664\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (votes, is the Best team in, the NFL right) -> votes (14080ms)\nHow many NFL teams are there?\tSt . Louis\t-9.36592945772791\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (St . Louis, is the best team in, the NFL) -> St . Louis (14080ms)\nHow many NFL teams are there?\tthe team\t-9.405414639302654\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the team, is the only non-profit team in, NFL) -> the team (14080ms)\nHow many NFL teams are there?\tthe season\t-9.466424291512741\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the season, were the only team in, the NFL) -> the season (14261ms)\nHow many NFL teams are there?\tThe Chargers\t-9.488376655035426\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Chargers, were the best team in, the NFL) -> The Chargers (14261ms)\nHow many NFL teams are there?\tprofootballtalk?s\t-9.5307316824989\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (profootballtalk?s, ranked team in, the NFL) -> profootballtalk?s (14478ms)\nHow many NFL teams are there?\tTexans\t-9.531955992593353\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (Texans, are only team in, NFL) -> Texans (14477ms)\nHow many NFL teams are there?\tThe Eagles\t-9.551219248174961\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Eagles, are the best team in, the NFL) -> The Eagles (14478ms)\nHow many NFL teams are there?\tDetroit\t-9.558570771132931\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Detroit, is the only team in, NFL history) -> Detroit (14477ms)\nHow many NFL teams are there?\tthe Pittsburgh Steelers\t-9.571794410306348\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Pittsburgh Steelers, were the best team in, the NFL) -> the Pittsburgh Steelers (16508ms)\nHow many NFL teams are there?\tthe Pats\t-9.605090735644431\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Pats, are the second-best team in, the NFL) -> the Pats (16508ms)\nHow many NFL teams are there?\tGreen Bay\t-9.608046474369667\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (Green Bay, is the best team in, the NFL) -> Green Bay (16508ms)\nHow many NFL teams are there?\tthe Eagles\t-9.652191806022484\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Eagles, are the best team in, the NFL right) -> the Eagles (16508ms)\nHow many NFL teams are there?\tthe Fins\t-9.66817194017866\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Fins, are the best 2-4 team in, the NFL) -> the Fins (17847ms)\nHow many NFL teams are there?\tThe Seahawks\t-9.674058170868978\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Seahawks, are the best team in, the NFL) -> The Seahawks (17847ms)\nHow many NFL teams are there?\tThe Patriots\t-9.681983322012517\tHow many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Patriots, are the best team in, the NFL) -> The Patriots (17847ms)\nWhat do manatees eat?\t22 pounds\t-1.480537010794668\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (The manatee, eats, 22 pounds) -> 22 pounds (5580ms)\nWhat do manatees eat?\t72 heads\t-1.5532599011679693\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (the two manatees, eat about, 72 heads) -> 72 heads (5580ms)\nWhat do manatees eat?\tmarine and freshwater plant\t-2.055980532185341\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Shelter Manatees, eat, marine and freshwater plant) -> marine and freshwater plant (5580ms)\nWhat do manatees eat?\tmarine and freshwater plants\t-2.079525767093797\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, marine and freshwater plants) -> marine and freshwater plants (5580ms)\nWhat do manatees eat?\ta tiny Mexican place\t-2.092540511298898\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatee and I, ate at, a tiny Mexican place) -> a tiny Mexican place (5580ms)\nWhat do manatees eat?\t150 pounds\t-2.331605202812704\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat over, 150 pounds) -> 150 pounds (5580ms)\nWhat do manatees eat?\t9 %\t-2.3813578896955914\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (an adult manatee, can eat nearly, 9 %) -> 9 % (5674ms)\nWhat do manatees eat?\t50 different types\t-2.415494613074519\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 50 different types) -> 50 different types (5673ms)\nWhat do manatees eat?\t10-15 %\t-2.422487000077692\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10-15 %) -> 10-15 % (5673ms)\nWhat do manatees eat?\t10\t-2.45354613890538\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10) -> 10 (5674ms)\nWhat do manatees eat?\tdifferent kinds\t-2.49276593558257\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat lots of, different kinds) -> different kinds (5674ms)\nWhat do manatees eat?\texotic plants\t-2.4950828128174987\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, exotic plants) -> exotic plants (5674ms)\nWhat do manatees eat?\t4 to 9 percent\t-2.5139686298839443\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, must eat, 4 to 9 percent) -> 4 to 9 percent (5703ms)\nWhat do manatees eat?\t10 %\t-2.519810175612073\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Food Manatees, can eat up to, 10 %) -> 10 % (5703ms)\nWhat do manatees eat?\t60 different species\t-2.5362374793005955\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 60 different species) -> 60 different species (5703ms)\nWhat do manatees eat?\t10 % to 20 %\t-2.540101908570729\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, 10 % to 20 %) -> 10 % to 20 % (5703ms)\nWhat do manatees eat?\teight heads\t-2.604593008204172\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (The young manatee, is eating, eight heads) -> eight heads (5703ms)\nWhat do manatees eat?\t100 to 150 pounds\t-2.6206284932436716\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, 100 to 150 pounds) -> 100 to 150 pounds (5703ms)\nWhat do manatees eat?\t10-15 percent\t-2.6374282456736866\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat anywhere from, 10-15 percent) -> 10-15 percent (5726ms)\nWhat do manatees eat?\t100 pounds\t-2.6399815525310606\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (An adult manatee, eats over, 100 pounds) -> 100 pounds (5726ms)\nWhat do manatees eat?\t60 different plant species\t-2.6841914523111337\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 60 different plant species) -> 60 different plant species (5726ms)\nWhat do manatees eat?\t60 to 100 pounds\t-2.7786658169307783\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (An adult manatee, eats as much as, 60 to 100 pounds) -> 60 to 100 pounds (5726ms)\nWhat do manatees eat?\twater plants\t-2.803388573291037\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (The manatee, eats mostly a variety of, water plants) -> water plants (5741ms)\nWhat do manatees eat?\tRecreation Area\t-2.926126090001433\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Lake Manatee St, ate, Recreation Area) -> Recreation Area (5741ms)\nWhat do manatees eat?\t10-15 % of their body weight\t-3.3879119933738737\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10-15 % of their body weight) -> 10-15 % of their body weight (5741ms)\nWhat do manatees eat?\thydrilla\t-3.649573260381265\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat, hydrilla) -> hydrilla (5758ms)\nWhat do manatees eat?\tthe vegetation right\t-3.9054063525882885\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, will come eat, the vegetation right) -> the vegetation right (5803ms)\nWhat do manatees eat?\tplankton\t-3.921505387526616\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, ever eat, plankton) -> plankton (5835ms)\nWhat do manatees eat?\tlettuce\t-3.970671407559931\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat heads of, lettuce) -> lettuce (5835ms)\nWhat do manatees eat?\tthe abundant sea grasses\t-3.9918293480264113\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, the abundant sea grasses) -> the abundant sea grasses (5834ms)\nWhat do manatees eat?\tclams\t-4.002115524371854\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (West African manatees, have been known to eat, clams) -> clams (5834ms)\nWhat do manatees eat?\telephants\t-4.010068070839223\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat grass like, elephants) -> elephants (5835ms)\nWhat do manatees eat?\tthe lettuce\t-4.163810261307901\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (The manatees, eat, the lettuce) -> the lettuce (5848ms)\nWhat do manatees eat?\tfish\t-4.1959187146616275\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Antillean manatees, have been known to eat, fish) -> fish (5848ms)\nWhat do manatees eat?\tthe vegetation\t-4.951829883083909\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat, the vegetation) -> the vegetation (5861ms)\nWhat do manatees eat?\tFeb. 20\t-5.1742519355961605\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> $x: (manatees, get one, $x) -> (Pasco , Polk and Manatee students, get one for, Feb. 20) -> Feb. 20 (5949ms)\nWhat do manatees eat?\tdaily\t-6.156406018119301\tWhat do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat 10-15 % of their body weight, daily) -> daily (5894ms)\nWhat was Malcolm X's original surname?\tWettin\t-14.494825079508457\tWhat was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, have have, $x) -> ('s original surname, may have been, Wettin) -> Wettin (5508ms)\nWhat was Malcolm X's original surname?\tpresent day\t-14.56498094814928\tWhat was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, have have, $x) -> (original Hutterite surnames, have survived until, present day) -> present day (5508ms)\nWhat was Malcolm X's original surname?\tHatkho\t-15.11751458459927\tWhat was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, have have, $x) -> (his original surname, had been, Hatkho) -> Hatkho (5508ms)\nWhat was Malcolm X's original surname?\tShaink\t-15.444244743071877\tWhat was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, change, $x) -> (The original family surname, was changed to, Shaink) -> Shaink (5423ms)\nWhat was Malcolm X's original surname?\tSTRANG\t-15.459916571187406\tWhat was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, have have, $x) -> (my STRONG ancestors original Surname, may have been, STRANG) -> STRANG (5508ms)\nWhat is cribbage?\tsmall-area event\t-5.081692812842029\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, small-area event) -> small-area event (1909ms)\nWhat is cribbage?\tpoint-based game\t-5.098143877902369\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, point-based game) -> point-based game (1909ms)\nWhat is cribbage?\tchallenging card game\t-5.315325035549797\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, challenging card game) -> challenging card game (1909ms)\nWhat is cribbage?\tclassic card game\t-5.315876340619406\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, classic card game) -> classic card game (1909ms)\nWhat is cribbage?\ttwo-player card game\t-5.334956584826713\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-player card game) -> two-player card game (1908ms)\nWhat is cribbage?\tcard game\t-5.341132365883407\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, card game) -> card game (1909ms)\nWhat is cribbage?\tAOL compatible video online card game\t-5.343413794921152\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, AOL compatible video online card game) -> AOL compatible video online card game (1924ms)\nWhat is cribbage?\tcard and board game\t-5.384707275628207\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, card and board game) -> card and board game (1923ms)\nWhat is cribbage?\tplay free online board game\t-5.4290801189126014\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, play free online board game) -> play free online board game (1924ms)\nWhat is cribbage?\tsocial club offering activity\t-5.445531183972941\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social club offering activity) -> social club offering activity (1923ms)\nWhat is cribbage?\tcounting card game\t-5.447377802241265\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, counting card game) -> counting card game (1923ms)\nWhat is cribbage?\ttwo-to-four player card game\t-5.469852487468907\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-to-four player card game) -> two-to-four player card game (2138ms)\nWhat is cribbage?\tcard game of the period\t-5.469852487468907\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, card game of the period) -> card game of the period (2138ms)\nWhat is cribbage?\tterrific, fast paced game\t-5.469852487468907\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, terrific, fast paced game) -> terrific, fast paced game (2138ms)\nWhat is cribbage?\tcentury old game of skill and persistence\t-5.469852487468907\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, century old game of skill and persistence) -> century old game of skill and persistence (2138ms)\nWhat is cribbage?\tgame of making match and group of card\t-5.469852487468907\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, game of making match and group of card) -> game of making match and group of card (2138ms)\nWhat is cribbage?\tfeatured classic card game\t-5.469852487468907\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, featured classic card game) -> featured classic card game (2138ms)\nWhat is cribbage?\tpub game\t-5.490942725254116\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, pub game) -> pub game (2153ms)\nWhat is cribbage?\tmath type game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, math type game) -> math type game (2153ms)\nWhat is cribbage?\textensive table game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, extensive table game) -> extensive table game (2153ms)\nWhat is cribbage?\twooden game favorite\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, wooden game favorite) -> wooden game favorite (2170ms)\nWhat is cribbage?\tgood card game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, good card game) -> good card game (2169ms)\nWhat is cribbage?\tmath board game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, math board game) -> math board game (2153ms)\nWhat is cribbage?\tonline card game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, online card game) -> online card game (2169ms)\nWhat is cribbage?\toldfashioned card game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, oldfashioned card game) -> oldfashioned card game (2170ms)\nWhat is cribbage?\tbeautiful classic game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, beautiful classic game) -> beautiful classic game (2169ms)\nWhat is cribbage?\tnoble card game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, noble card game) -> noble card game (2170ms)\nWhat is cribbage?\tprime winter pastime\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, prime winter pastime) -> prime winter pastime (2153ms)\nWhat is cribbage?\tsocial card game\t-5.505625684056914\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social card game) -> social card game (2153ms)\nWhat is cribbage?\tlive online adult poker game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, live online adult poker game) -> live online adult poker game (2223ms)\nWhat is cribbage?\tage-old pub game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, age-old pub game) -> age-old pub game (2281ms)\nWhat is cribbage?\tfreeware version of the popular card game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, freeware version of the popular card game) -> freeware version of the popular card game (2223ms)\nWhat is cribbage?\tMAINSTREET CLASSIC game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, MAINSTREET CLASSIC game) -> MAINSTREET CLASSIC game (2280ms)\nWhat is cribbage?\tcentury-old card game of English origin\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, century-old card game of English origin) -> century-old card game of English origin (2280ms)\nWhat is cribbage?\tinteresting and engaging game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, interesting and engaging game) -> interesting and engaging game (2280ms)\nWhat is cribbage?\taddictive and fast-paced card game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, addictive and fast-paced card game) -> addictive and fast-paced card game (2280ms)\nWhat is cribbage?\tfashioned great classic card game of skill\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, fashioned great classic card game of skill) -> fashioned great classic card game of skill (2222ms)\nWhat is cribbage?\tjovial kind of game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, jovial kind of game) -> jovial kind of game (2294ms)\nWhat is cribbage?\tRegency-era card game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, Regency-era card game) -> Regency-era card game (2222ms)\nWhat is cribbage?\tone-on-one board game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, one-on-one board game) -> one-on-one board game (2295ms)\nWhat is cribbage?\trelaxing, totally not physical game\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, relaxing, totally not physical game) -> relaxing, totally not physical game (2222ms)\nWhat is cribbage?\tgame of sailor\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, game of sailor) -> game of sailor (2280ms)\nWhat is cribbage?\tgood game of skill an luck\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, good game of skill an luck) -> good game of skill an luck (2295ms)\nWhat is cribbage?\tinterest in event\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, interest in event) -> interest in event (2295ms)\nWhat is cribbage?\texciting game of wit and luck\t-5.51474644290405\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, exciting game of wit and luck) -> exciting game of wit and luck (2222ms)\nWhat is cribbage?\tplayer card game\t-5.515907599566414\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, player card game) -> player card game (2295ms)\nWhat is cribbage?\tsocial, educational and physical activity\t-5.519584991397133\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social, educational and physical activity) -> social, educational and physical activity (2295ms)\nWhat is cribbage?\tgame of point\t-5.522224199861086\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, game of point) -> game of point (2314ms)\nWhat is cribbage?\tstrategic card game\t-5.527771349362637\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, strategic card game) -> strategic card game (2315ms)\nWhat is cribbage?\tgame on board\t-5.53119750796439\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, game on board) -> game on board (2315ms)\nWhat is cribbage?\tclassic board game\t-5.542914765514058\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, classic board game) -> classic board game (2315ms)\nWhat is cribbage?\ttwo-player board game\t-5.543284005418801\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-player board game) -> two-player board game (2315ms)\nWhat is cribbage?\tclassic game\t-5.601893739655087\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, classic game) -> classic game (2315ms)\nWhat is cribbage?\ttime favorite\t-5.730628999681266\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, time favorite) -> time favorite (2325ms)\nWhat is cribbage?\trecreational activity\t-5.763576675850563\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, recreational activity) -> recreational activity (2326ms)\nWhat is cribbage?\tancient game\t-5.771707318988828\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, ancient game) -> ancient game (2326ms)\nWhat is cribbage?\tbig game\t-5.776388266248569\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, big game) -> big game (2326ms)\nWhat is cribbage?\tstrategy game\t-5.7829671895851025\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, strategy game) -> strategy game (2326ms)\nWhat is cribbage?\twonderful game\t-5.7853604158151075\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, wonderful game) -> wonderful game (2326ms)\nWhat is cribbage?\texcellent game\t-5.794226579366626\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, excellent game) -> excellent game (2386ms)\nWhat is cribbage?\tsocial activity\t-5.811965122641354\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social activity) -> social activity (2386ms)\nWhat is cribbage?\tconventional sport\t-5.83273357947819\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, conventional sport) -> conventional sport (2386ms)\nWhat is cribbage?\tquiet game\t-5.8358344744470205\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, quiet game) -> quiet game (2386ms)\nWhat is cribbage?\thouse game\t-5.837303319432257\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, house game) -> house game (2386ms)\nWhat is cribbage?\tlifetime activity\t-5.83756695888861\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, lifetime activity) -> lifetime activity (2386ms)\nWhat is cribbage?\tboard game\t-5.84091873425945\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, board game) -> board game (2485ms)\nWhat is cribbage?\tcompetitive game\t-5.843139001406681\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, competitive game) -> competitive game (2484ms)\nWhat is cribbage?\tpopular 2-person game\t-5.862409948249645\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, popular 2-person game) -> popular 2-person game (2484ms)\nWhat is cribbage?\ttimeless amusement\t-5.871915359357899\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, timeless amusement) -> timeless amusement (2484ms)\nWhat is cribbage?\tcribbage game\t-5.871915359357899\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, cribbage game) -> cribbage game (2484ms)\nWhat is cribbage?\taccessible game\t-5.871915359357899\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, accessible game) -> accessible game (2484ms)\nWhat is cribbage?\tpromotional game\t-5.877790739911692\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, promotional game) -> promotional game (2498ms)\nWhat is cribbage?\trecycled item\t-5.881592456344066\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, recycled item) -> recycled item (2498ms)\nWhat is cribbage?\tcomplicated game\t-5.8852704671812255\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, complicated game) -> complicated game (2498ms)\nWhat is cribbage?\tplayer game\t-5.886917902149252\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, player game) -> player game (2498ms)\nWhat is cribbage?\tpogo game\t-5.888366424418239\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, pogo game) -> pogo game (2498ms)\nWhat is cribbage?\tfamily game\t-5.888630344559857\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, family game) -> family game (2498ms)\nWhat is cribbage?\tfrench game\t-5.890194320399866\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, french game) -> french game (2510ms)\nWhat is cribbage?\tindoor sport\t-5.890301843692902\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, indoor sport) -> indoor sport (2509ms)\nWhat is cribbage?\tmind sport\t-5.890897357315875\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, mind sport) -> mind sport (2509ms)\nWhat is cribbage?\ttabletop game\t-5.893643181135706\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, tabletop game) -> tabletop game (2509ms)\nWhat is cribbage?\tdifficult game\t-5.893943055956522\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, difficult game) -> difficult game (2509ms)\nWhat is cribbage?\tleisure activity\t-5.902836893359098\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, leisure activity) -> leisure activity (2509ms)\nWhat is cribbage?\tfree game\t-5.916320307442001\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, free game) -> free game (2521ms)\nWhat is cribbage?\ttraditional pub game\t-6.1593355975734765\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, traditional pub game) -> traditional pub game (2522ms)\nWhat is cribbage?\tclass and activity\t-6.186272584194335\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, class and activity) -> class and activity (2522ms)\nWhat is cribbage?\tpopular pub game\t-6.189818072364458\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, popular pub game) -> popular pub game (2521ms)\nWhat is cribbage?\tprogram and activity\t-6.2318531323851385\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, program and activity) -> program and activity (2522ms)\nWhat is cribbage?\tsport and activity\t-6.232387134261486\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, sport and activity) -> sport and activity (2522ms)\nWhat is cribbage?\tfavorite\t-7.75891072724033\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, favorite) -> favorite (2535ms)\nWhat is cribbage?\tcard\t-7.788190573395969\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, card) -> card (2535ms)\nWhat is cribbage?\tpastime\t-7.95316233112829\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, pastime) -> pastime (2535ms)\nWhat is cribbage?\ttournament\t-7.999186493935377\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, tournament) -> tournament (2535ms)\nWhat is cribbage?\tsport\t-8.058333530904653\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, sport) -> sport (2547ms)\nWhat is cribbage?\thobby\t-8.058900922452164\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, hobby) -> hobby (2548ms)\nWhat is cribbage?\ttime\t-8.135486668385402\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, time) -> time (2547ms)\nWhat is cribbage?\tgroup\t-8.147132390693534\tWhat is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, group) -> group (2547ms)\nWhat is cribbage?\tRules of cribbage\t-11.672247053165188\tWhat is cribbage? -> what [ be cribbage ] ? -> what be know be cribbage ? -> $x: ($x, be know be, cribbage) -> $x: ($x, know, cribbage) -> (Rules of cribbage, Also known as, Cribbage) -> Rules of cribbage (3500ms)\nWhat is cribbage?\tCribbage statistics\t-11.87545756027938\tWhat is cribbage? -> what [ be cribbage ] ? -> what be know be cribbage ? -> $x: ($x, be know be, cribbage) -> $x: ($x, know, cribbage) -> (Cribbage statistics, Also known as, Cribbage) -> Cribbage statistics (3501ms)\nWhat is cribbage?\t29 points\t-12.081618949867709\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, 29 points) -> 29 points (4340ms)\nWhat is cribbage?\tCard game\t-12.248788479876241\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Card game, Computer games, Hi-Res Cribbage) -> Card game (5324ms)\nWhat is cribbage?\tThe Cribbage Generation Is Here\t-12.326399963427946\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (The Cribbage Generation Is Here, Editions, The Cribbage Generation Is Here) -> The Cribbage Generation Is Here (5324ms)\nWhat is cribbage?\tUser login\t-12.348221356563933\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (User login, is, Five Hundred Cribbage) -> User login (4340ms)\nWhat is cribbage?\tevery day\t-12.380983320895297\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, are played, every day) -> every day (4340ms)\nWhat is cribbage?\tEach point\t-12.434997946996269\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Each point, is called, a cribbage) -> Each point (4340ms)\nWhat is cribbage?\tI?ll\t-12.47610467133805\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (I?ll, be playing, cribbage) -> I?ll (4340ms)\nWhat is cribbage?\t61 points\t-12.48887653649394\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, was played to, 61 points) -> 61 points (4340ms)\nWhat is cribbage?\ta term\t-12.521959703607576\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, a term) -> a term (4340ms)\nWhat is cribbage?\tKing Cribbage\t-12.534815477322429\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (King Cribbage, Game, King Cribbage) -> King Cribbage (5324ms)\nWhat is cribbage?\ta little\t-12.636969979541647\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a little) -> a little (4340ms)\nWhat is cribbage?\ta new cribbage game\t-12.664994671369875\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a new cribbage game) -> a new cribbage game (4527ms)\nWhat is cribbage?\tfun\t-12.68363247041748\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, fun) -> fun (4527ms)\nWhat is cribbage?\ta doubt\t-12.694861688975031\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is without, a doubt) -> a doubt (4527ms)\nWhat is cribbage?\tCribbage\t-12.73248828683868\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Cribbage, is, a new cribbage game) -> Cribbage (4527ms)\nWhat is cribbage?\tDouble Cribbage\t-12.739245410433831\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Double Cribbage, is, four player cribbage) -> Double Cribbage (4527ms)\nWhat is cribbage?\tSimulation video game\t-12.740214966559932\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Simulation video game, Computer games, Hoyle's Backgammon & Cribbage) -> Simulation video game (5360ms)\nWhat is cribbage?\tStrategy video game\t-12.740214966559932\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Strategy video game, Computer games, The Games People Play: Gin, Cribbage, Checkers, and Backgammon) -> Strategy video game (5359ms)\nWhat is cribbage?\tmore complex card games\t-12.776309712342373\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, are, more complex card games) -> more complex card games (4527ms)\nWhat is cribbage?\tMicrosoft Windows\t-12.778157323364018\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Microsoft Windows, Games On This Platform, Hoyle's Backgammon & Cribbage) -> Microsoft Windows (5360ms)\nWhat is cribbage?\tWinchester Press\t-12.778157323364018\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Winchester Press, Book editions published, How to win at cribbage) -> Winchester Press (5360ms)\nWhat is cribbage?\ttwo men\t-12.795636860301293\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (two men, were playing at, cribbage) -> two men (4527ms)\nWhat is cribbage?\tnew\t-12.795692272003627\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (new, is, Cribbage Vox) -> new (4527ms)\nWhat is cribbage?\tDeLynn\t-12.801826217811264\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (DeLynn, was hosting, his cribbage tournament) -> DeLynn (4596ms)\nWhat is cribbage?\ta hit\t-12.807373395925664\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, was, a hit) -> a hit (4596ms)\nWhat is cribbage?\ta classic , two-player game\t-12.826078176994349\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a classic , two-player game) -> a classic , two-player game (4596ms)\nWhat is cribbage?\tBill@PlayCribbage .com Website\t-12.829710632393635\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Bill@PlayCribbage .com Website, is, PlayCribbage) -> Bill@PlayCribbage .com Website (4596ms)\nWhat is cribbage?\tLake Superior Cribbage\t-12.837259840693461\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition of, $x) -> (Lake Superior Cribbage: The GEM of Board Games, Edition Of, Lake Superior Cribbage) -> Lake Superior Cribbage (5393ms)\nWhat is cribbage?\tCarte Primus\t-12.854979700251432\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Carte Primus, is, a cool cribbage game) -> Carte Primus (4596ms)\nWhat is cribbage?\tHoyle's Backgammon & Cribbage\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Hoyle's Backgammon & Cribbage, Game, Hoyle's Backgammon & Cribbage) -> Hoyle's Backgammon & Cribbage (5393ms)\nWhat is cribbage?\tFun with Cribbage\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition of, $x) -> (Fun with Cribbage, Edition Of, Fun with Cribbage) -> Fun with Cribbage (6192ms)\nWhat is cribbage?\tHow to win at cribbage\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (How to win at cribbage, Edition Of, How to win at cribbage) -> How to win at cribbage (6121ms)\nWhat is cribbage?\tHayden Book Company, Inc.\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Hayden Book Company, Inc., Games Developed, King Cribbage) -> Hayden Book Company, Inc. (6192ms)\nWhat is cribbage?\tWinning Cribbage Tips (Mensa)\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Winning Cribbage Tips (Mensa), Edition Of, Winning Cribbage Tips) -> Winning Cribbage Tips (Mensa) (5539ms)\nWhat is cribbage?\tCribbage for Experts\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Cribbage for Experts, Editions, Cribbage for Experts: And Future Experts) -> Cribbage for Experts (6192ms)\nWhat is cribbage?\tWin at cribbage\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition of, $x) -> (Win at cribbage, Edition Of, Win at cribbage) -> Win at cribbage (6192ms)\nWhat is cribbage?\tCribbage for Experts: And Future Experts\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition of, cribbage) -> (Cribbage for Experts: And Future Experts, Edition Of, Cribbage for Experts) -> Cribbage for Experts: And Future Experts (6121ms)\nWhat is cribbage?\tWinning Cribbage Tips\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition, $x) -> (Winning Cribbage Tips (Mensa), Edition Of, Winning Cribbage Tips) -> Winning Cribbage Tips (6121ms)\nWhat is cribbage?\tPlay Cribbage to Win MENSA\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition of, cribbage) -> (Play Cribbage to Win MENSA, Edition Of, Play Cribbage to Win MENSA) -> Play Cribbage to Win MENSA (6018ms)\nWhat is cribbage?\tCribbage d'Etroit\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Cribbage d'Etroit, Editions, Cribbage d'Etroit) -> Cribbage d'Etroit (6121ms)\nWhat is cribbage?\tLake Superior Cribbage: The GEM of Board Games\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Lake Superior Cribbage: The GEM of Board Games, Edition Of, Lake Superior Cribbage) -> Lake Superior Cribbage: The GEM of Board Games (6121ms)\nWhat is cribbage?\tKey to Cribbage\t-12.862433135111557\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition, $x) -> (Key to Cribbage                                                                                     (050107), Edition Of, Key to Cribbage) -> Key to Cribbage (6192ms)\nWhat is cribbage?\tthe Wrentham Senior Center\t-12.864883600617336\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is offered at, the Wrentham Senior Center) -> the Wrentham Senior Center (4596ms)\nWhat is cribbage?\t10 years\t-12.867162780290148\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (the biggest cribbage sites, has been around for over, 10 years) -> 10 years (4596ms)\nWhat is cribbage?\ta very interesting and engaging game\t-12.87104752997031\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a very interesting and engaging game) -> a very interesting and engaging game (4687ms)\nWhat is cribbage?\ta fun game\t-12.872087538541965\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a fun game) -> a fun game (4687ms)\nWhat is cribbage?\ta great family game\t-12.87873784709927\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, could be, a great family game) -> a great family game (4687ms)\nWhat is cribbage?\ta mention\t-12.884048966852212\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, would be complete without, a mention) -> a mention (4687ms)\nWhat is cribbage?\tStar Wars fame\t-12.88690418741346\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Star Wars fame, may be playing a game of, cribbage) -> Star Wars fame (4687ms)\nWhat is cribbage?\tan itinerant?s game\t-12.890263464683464\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (?Cribbage, is, an itinerant?s game) -> an itinerant?s game (4687ms)\nWhat is cribbage?\ta family\t-12.904951689397427\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (a family, is, Cribbage Death Match) -> a family (4687ms)\nWhat is cribbage?\tone game\t-12.907124484122363\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, one game) -> one game (4687ms)\nWhat is cribbage?\t29\t-12.917590879048976\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, 29) -> 29 (4981ms)\nWhat is cribbage?\tlocal favourites\t-12.918156536343067\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, are, local favourites) -> local favourites (4981ms)\nWhat is cribbage?\ta call shot game\t-12.952265072359275\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a call shot game) -> a call shot game (4981ms)\nWhat is cribbage?\tInterStellar MacCribbage\t-12.959656630862922\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (InterStellar MacCribbage, is, a shareware Cribbage program) -> InterStellar MacCribbage (4981ms)\nWhat is cribbage?\tSwan River\t-12.964834435549447\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (the singles cribbage championship, is going back to, Swan River) -> Swan River (4981ms)\nWhat is cribbage?\tRoyal Cribbage\t-12.966135215988537\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Royal Cribbage, is, a freeware Cribbage program) -> Royal Cribbage (4981ms)\nWhat is cribbage?\tOne game I?d\t-12.966605011099606\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (One game I?d, ever played was, cribbage) -> One game I?d (4981ms)\nWhat is cribbage?\tCribbage Corner\t-12.969890723839585\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Cribbage Corner, is one of, the biggest cribbage sites) -> Cribbage Corner (4981ms)\nWhat is cribbage?\ta Game\t-12.971592220318195\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is considered to be, a Game) -> a Game (5048ms)\nWhat is cribbage?\tEngland\t-12.977317160850202\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (England, is the birthplace of, cribbage) -> England (5048ms)\nWhat is cribbage?\tfree or\t-12.980812799873458\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, can be played for, free or) -> free or (5048ms)\nWhat is cribbage?\taccurate counting\t-12.981326813148351\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, accurate counting) -> accurate counting (5048ms)\nWhat is cribbage?\tAmend Games\t-12.986789728615516\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Amend Games, was introduced after, a cribbage game) -> Amend Games (5048ms)\nWhat is cribbage?\tan Englishman\t-13.018579895678236\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is credited to, an Englishman) -> an Englishman (5048ms)\nWhat is cribbage?\tEvery Saturday\t-13.020911309919548\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Every Saturday, is, Cribbage) -> Every Saturday (6192ms)\nWhat is cribbage?\ta new and growing group\t-13.024138513252435\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a new and growing group) -> a new and growing group (6192ms)\nWhat is cribbage?\tParson?s poke\t-13.0256534922916\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Parson?s poke, is, another cribbage term) -> Parson?s poke (6346ms)\nWhat is cribbage?\tThe ACC\t-13.0427712066119\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The ACC, is the home of, great cribbage) -> The ACC (6346ms)\nWhat is cribbage?\ta study\t-13.05597597172122\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (a study, had been done regarding, cribbage hands) -> a study (6346ms)\nWhat is cribbage?\tZach and Jonathan\t-13.05780258623972\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Zach and Jonathan, were essentially, cribbage machines) -> Zach and Jonathan (6346ms)\nWhat is cribbage?\tan avid Boston Red Sox Fan\t-13.0673649215832\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, was, an avid Boston Red Sox Fan) -> an avid Boston Red Sox Fan (6346ms)\nWhat is cribbage?\tSir John Suckling\t-13.06933233495099\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, was invented by, Sir John Suckling) -> Sir John Suckling (6346ms)\nWhat is cribbage?\tThe Past Playing Cards\t-13.073077690557401\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The Past Playing Cards, are included with, this Cribbage set) -> The Past Playing Cards (6346ms)\nWhat is cribbage?\tthe Oxford English Dictionary\t-13.080543538963768\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the Oxford English Dictionary, may be a reference to, cribbage) -> the Oxford English Dictionary (6346ms)\nWhat is cribbage?\tOver-pegging your score\t-13.08224785505936\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Over-pegging your score, is another form of, cribbage cheating) -> Over-pegging your score (6375ms)\nWhat is cribbage?\ta two player game\t-13.095823075807527\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is generally, a two player game) -> a two player game (6375ms)\nWhat is cribbage?\tthe 15-ball\t-13.100248788754197\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the 15-ball, is, a cribbage) -> the 15-ball (6375ms)\nWhat is cribbage?\tthe BCA Official Rules and Records Book\t-13.10972205911602\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, are in, the BCA Official Rules and Records Book) -> the BCA Official Rules and Records Book (6375ms)\nWhat is cribbage?\teach row and column\t-13.122100826838256\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (each row and column, is done as in, normal cribbage) -> each row and column (6375ms)\nWhat is cribbage?\tthe Wawatam Area Senior Center\t-13.143256995848793\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (CRIBBAGE, will be played at, the Wawatam Area Senior Center) -> the Wawatam Area Senior Center (6375ms)\nWhat is cribbage?\tClub director Tracy Yott\t-13.147891453553848\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Club director Tracy Yott, was introduced to, cribbage) -> Club director Tracy Yott (6375ms)\nWhat is cribbage?\tAugust Cribbage\t-13.155142329051621\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (August Cribbage, is, the perfect cribbage hand) -> August Cribbage (6403ms)\nWhat is cribbage?\tthe ACC\t-13.173925427192422\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, has been a member of, the ACC) -> the ACC (6403ms)\nWhat is cribbage?\ta fifty two card pack\t-13.183830873225455\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is played with, a fifty two card pack) -> a fifty two card pack (6403ms)\nWhat is cribbage?\t4 or more cards\t-13.19709693874701\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, 4 or more cards) -> 4 or more cards (6403ms)\nWhat is cribbage?\tthe ACC Web site\t-13.1977987762358\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, are available on, the ACC Web site) -> the ACC Web site (6403ms)\nWhat is cribbage?\ttwo phases\t-13.206545074242976\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is played in, two phases) -> two phases (6403ms)\nWhat is cribbage?\ta crazy game\t-13.240137092036573\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, a crazy game) -> a crazy game (6403ms)\nWhat is cribbage?\tCommodore 64\t-13.254990595892293\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Commodore 64, Games On This Platform, King Cribbage) -> Commodore 64 (6431ms)\nWhat is cribbage?\tKey to Cribbage                                                                                     (050107)\t-13.254990595892293\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition, $x) -> (Key to Cribbage, Editions, Key to Cribbage                                                                                     (050107)) -> Key to Cribbage                                                                                     (050107) (6431ms)\nWhat is cribbage?\tMiracles on 4th Street\t-13.254990595892293\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Miracles on 4th Street, Editions, Miracles on 4th Street: A Quiz Book for Cribbage Fanatics) -> Miracles on 4th Street (6431ms)\nWhat is cribbage?\tAtari 8-bit family\t-13.254990595892293\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Atari 8-bit family, Games On This Platform, King Cribbage) -> Atari 8-bit family (6431ms)\nWhat is cribbage?\ta card game\t-13.264895983537036\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a card game) -> a card game (6431ms)\nWhat is cribbage?\tHal Mueller\t-13.26521191101487\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Hal Mueller, is, a strong Cribbage program) -> Hal Mueller (6461ms)\nWhat is cribbage?\tScoring aces\t-13.270739249170564\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Scoring aces, Is the ace high in, cribbage) -> Scoring aces (6461ms)\nWhat is cribbage?\tthe 15\t-13.292654850345478\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the 15, is in, standard Cribbage) -> the 15 (6461ms)\nWhat is cribbage?\tan elderly couple\t-13.295687891626985\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (an elderly couple, were playing, cribbage) -> an elderly couple (6461ms)\nWhat is cribbage?\ta great game\t-13.296233772228495\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a great game) -> a great game (6461ms)\nWhat is cribbage?\tForum\t-13.299011927104033\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Forum, Is, cribbage dying) -> Forum (6461ms)\nWhat is cribbage?\tThe 15 ball\t-13.305917804468812\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The 15 ball, is, a cribbage) -> The 15 ball (6461ms)\nWhat is cribbage?\ttwo people\t-13.31247478721413\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is played generally between, two people) -> two people (6461ms)\nWhat is cribbage?\ta poker expert\t-13.316634891092448\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a poker expert) -> a poker expert (6488ms)\nWhat is cribbage?\ta wonderful game\t-13.316634891092448\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a wonderful game) -> a wonderful game (6488ms)\nWhat is cribbage?\tThe Captain\t-13.348784942210035\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The Captain, was playing, cribbage) -> The Captain (6488ms)\nWhat is cribbage?\tthe 4th Earl\t-13.364379816837792\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the 4th Earl, was busy playing a game of, cribbage) -> the 4th Earl (6488ms)\nWhat is cribbage?\t400 years\t-13.368129657672576\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, has been around for, 400 years) -> 400 years (6488ms)\nWhat is cribbage?\tno hard evidence\t-13.381548572449235\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (no hard evidence, was the inventor of, Cribbage) -> no hard evidence (6488ms)\nWhat is cribbage?\tSubject property\t-13.39619604684921\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Subject property, is located at, 3965 Cribbage Lane) -> Subject property (6488ms)\nWhat is cribbage?\tMr Windsor\t-13.398807901618769\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr Windsor, Instance Of, national cribbage champion) -> Mr Windsor (6488ms)\nWhat is cribbage?\tthe 2nd and 4th Sundays\t-13.430023496283761\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, the 2nd and 4th Sundays) -> the 2nd and 4th Sundays (6519ms)\nWhat is cribbage?\t1:00 p.m. Mah Jongg\t-13.448343411597737\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is held each Thursday at, 1:00 p.m. Mah Jongg) -> 1:00 p.m. Mah Jongg (6518ms)\nWhat is cribbage?\tJennifer\t-13.450274319803716\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Jennifer, was playing, cribbage) -> Jennifer (6518ms)\nWhat is cribbage?\ta cribbage board\t-13.45294427249181\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is scored with, a cribbage board) -> a cribbage board (6519ms)\nWhat is cribbage?\t12:30\t-13.463166233925826\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is held each Thursday at, 12:30) -> 12:30 (6519ms)\nWhat is cribbage?\tmysterious terms\t-13.465370759983614\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is full of mildly, mysterious terms) -> mysterious terms (6518ms)\nWhat is cribbage?\ttable-talk\t-13.466274827472208\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage, has developed a sort of, table-talk) -> table-talk (6518ms)\nWhat is cribbage?\tScores\t-13.483379040353206\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Scores, are as, standard Cribbage) -> Scores (6543ms)\nWhat is cribbage?\tfree accessories\t-13.497494838786242\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (free accessories, are provided with, the cribbage board) -> free accessories (6543ms)\nWhat is cribbage?\tWord\t-13.49942693299554\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Word, Games, Kings Cribbage) -> Word (6543ms)\nWhat is cribbage?\ta standard 52-card deck\t-13.50305748154217\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is played with, a standard 52-card deck) -> a standard 52-card deck (6543ms)\nWhat is cribbage?\t1:00 p.m.\t-13.512154633285725\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is held each Thursday at, 1:00 p.m.) -> 1:00 p.m. (6543ms)\nWhat is cribbage?\ta charter member\t-13.523898359593742\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (a charter member, has been playing, cribbage) -> a charter member (6543ms)\nWhat is cribbage?\tBook publishing\t-13.54592250278419\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be in, cribbage) -> (Book publishing, is an industry in, a cribbage game?and) -> Book publishing (6543ms)\nWhat is cribbage?\tOldcastle\t-13.554151486078357\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Oldcastle, Book editions published, Win at cribbage) -> Oldcastle (6632ms)\nWhat is cribbage?\tMacintosh\t-13.554151486078357\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Macintosh, Games On This Platform, Hoyle's Backgammon & Cribbage) -> Macintosh (6543ms)\nWhat is cribbage?\tpagat.com\t-13.561462508581208\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (pagat.com, can be found on, the Cribbage Variations page) -> pagat.com (6632ms)\nWhat is cribbage?\tNoddy\t-13.564690075909862\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is exactly like, Noddy) -> Noddy (6632ms)\nWhat is cribbage?\tThe most popular activity\t-13.588410896826566\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The most popular activity, was, cribbage) -> The most popular activity (6632ms)\nWhat is cribbage?\ta similar idea\t-13.594570029962401\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, was already working on, a similar idea) -> a similar idea (6632ms)\nWhat is cribbage?\t9780963658302\t-13.611643810460764\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780963658302, Book Editions, The Cribbage Generation Is Here) -> 9780963658302 (6632ms)\nWhat is cribbage?\tScoring\t-13.640736594930836\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Scoring, is virtually the same as, Cribbage) -> Scoring (6632ms)\nWhat is cribbage?\tJanet\t-13.650172780836046\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Janet, was, an avid cribbage player) -> Janet (6632ms)\nWhat is cribbage?\tThe next game viewer\t-13.651799883176219\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The next game viewer, will be for, cribbage) -> The next game viewer (6661ms)\nWhat is cribbage?\tboards and pegs\t-13.652321853011587\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (CRIBBAGE, Here are, boards and pegs) -> boards and pegs (6661ms)\nWhat is cribbage?\tAdam\t-13.655573693562221\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Adam, is dying to play, cribbage) -> Adam (6661ms)\nWhat is cribbage?\tAces\t-13.680331229006695\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Aces, are always low in, cribbage) -> Aces (6661ms)\nWhat is cribbage?\tthe 1600\t-13.692036499261631\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, were codified in, the 1600) -> the 1600 (6661ms)\nWhat is cribbage?\tCards\t-13.69915271617953\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Cards, are used in, Cribbage) -> Cards (6661ms)\nWhat is cribbage?\ta game of luck\t-13.726198108547663\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a game of luck) -> a game of luck (6661ms)\nWhat is cribbage?\t30 holes\t-13.727529112309035\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (A standard cribbage board, has four parallel rows of, 30 holes) -> 30 holes (6661ms)\nWhat is cribbage?\tadults and children\t-13.734413437031789\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is good for, adults and children) -> adults and children (6690ms)\nWhat is cribbage?\tMorneau\t-13.739630908214401\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Morneau, is a whiz at, cribbage and solitaire) -> Morneau (6690ms)\nWhat is cribbage?\t60 holes\t-13.745213051140146\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The traditional cribbage board layout, has, 60 holes) -> 60 holes (6690ms)\nWhat is cribbage?\tmore fun than gin rummy\t-13.74753247296248\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, more fun than gin rummy) -> more fun than gin rummy (6690ms)\nWhat is cribbage?\tCaptain's Cribbage\t-13.771279871028574\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Captain's Cribbage, Instance Of, variant of cribbage) -> Captain's Cribbage (6690ms)\nWhat is cribbage?\ta sign\t-13.799590557498178\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage whiz Harold Butts, may have been tacking up, a sign) -> a sign (6690ms)\nWhat is cribbage?\tWhite Maple\t-13.808821336523305\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The Rosewood cribbage board, has been inlaid with, White Maple) -> White Maple (6690ms)\nWhat is cribbage?\tCribbage Pro Online\t-13.8194439827826\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage Pro Online, Instance Of, classic cribbage game) -> Cribbage Pro Online (6690ms)\nWhat is cribbage?\tDamage\t-13.82025674523326\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Damage, is recorded with, brass cribbage markers) -> Damage (6775ms)\nWhat is cribbage?\tKarl Demanski\t-13.835509835219645\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Karl Demanski, Instance Of, master cribbage player) -> Karl Demanski (6775ms)\nWhat is cribbage?\tCribbage.ca\t-13.836978347926223\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage.ca, Instance Of, bilingual cribbage card game) -> Cribbage.ca (6775ms)\nWhat is cribbage?\tHALSCRIB\t-13.839182688780593\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (HALSCRIB, is certainly, THE killer cribbage program) -> HALSCRIB (6775ms)\nWhat is cribbage?\tKeith Masters\t-13.882884611121842\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Championships, has been organised by, Keith Masters) -> Keith Masters (6775ms)\nWhat is cribbage?\tbig\t-13.923969056623179\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, big) -> big (6775ms)\nWhat is cribbage?\tgin rummy\t-13.933101266791567\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is more fun than, gin rummy) -> gin rummy (7035ms)\nWhat is cribbage?\tCribbage .ca\t-13.96553356458727\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage .ca, Instance Of, bilingual cribbage card game) -> Cribbage .ca (7035ms)\nWhat is cribbage?\tCanadian Military people\t-13.97621884342801\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, has been played by, Canadian Military people) -> Canadian Military people (7035ms)\nWhat is cribbage?\tBrass\t-13.989678594123973\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The Rosewood cribbage board, has been inlaid with, Brass) -> Brass (7035ms)\nWhat is cribbage?\tCrash Cribbage\t-13.993185357269786\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Crash Cribbage, Instance Of, variation of cribbage) -> Crash Cribbage (7035ms)\nWhat is cribbage?\tCribbage League\t-13.993185357269786\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage League, Instance Of, five-week cribbage contest) -> Cribbage League (7035ms)\nWhat is cribbage?\tmetal marker pegs\t-14.005776961183077\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (This folding travel Cribbage Board, has, metal marker pegs) -> metal marker pegs (9209ms)\nWhat is cribbage?\tACC Grass Roots\t-14.00871690691116\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (ACC Grass Roots, Instance Of, non-profit cribbage organization) -> ACC Grass Roots (9209ms)\nWhat is cribbage?\tThursday\t-14.03635604375612\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Thursday, was, table bowling and cribbage) -> Thursday (9209ms)\nWhat is cribbage?\t9780970622563\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780970622563, Book Editions, Fun with Cribbage) -> 9780970622563 (9456ms)\nWhat is cribbage?\t9780962700361\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780962700361, Book Editions, Lake Superior Cribbage: The GEM of Board Games) -> 9780962700361 (9456ms)\nWhat is cribbage?\t9781402711046\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9781402711046, Book Editions, Winning Cribbage Tips (Mensa)) -> 9781402711046 (9456ms)\nWhat is cribbage?\t9780962700378\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780962700378, Book Editions, Cribbage d'Etroit) -> 9780962700378 (9456ms)\nWhat is cribbage?\t9780876913048\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780876913048, Book Editions, How to win at cribbage) -> 9780876913048 (9456ms)\nWhat is cribbage?\t9780870190278\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780870190278, Book Editions, Key to Cribbage                                                                                     (050107)) -> 9780870190278 (9209ms)\nWhat is cribbage?\t9780948353970\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780948353970, Book Editions, Win at cribbage) -> 9780948353970 (9456ms)\nWhat is cribbage?\t9780806943138\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780806943138, Book Editions, Play Cribbage to Win MENSA) -> 9780806943138 (9209ms)\nWhat is cribbage?\t9780970622594\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780970622594, Book Editions, Miracles on 4th Street: A Quiz Book for Cribbage Fanatics) -> 9780970622594 (9456ms)\nWhat is cribbage?\t9780970622587\t-14.040470347807652\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780970622587, Book Editions, Cribbage for Experts: And Future Experts) -> 9780970622587 (9456ms)\nWhat is cribbage?\tThe play\t-14.047355703684662\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The play, is the same as, traditional cribbage) -> The play (9484ms)\nWhat is cribbage?\tJason Marquis\t-14.075085387864092\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Jason Marquis, Instance Of, keen cribbage player) -> Jason Marquis (9484ms)\nWhat is cribbage?\tKings Cribbage\t-14.078851681261236\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Kings Cribbage, Instance Of, cribbage game) -> Kings Cribbage (9512ms)\nWhat is cribbage?\tCompact Cribbage\t-14.078851681261236\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Compact Cribbage, Instance Of, half length cribbage board game) -> Compact Cribbage (9512ms)\nWhat is cribbage?\tPattern Cribbage\t-14.078851681261236\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Pattern Cribbage, Instance Of, Pattern of cribbage) -> Pattern Cribbage (9484ms)\nWhat is cribbage?\tMichael Schell\t-14.078851681261236\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Michael Schell, Instance Of, pioneer of modern cribbage theory) -> Michael Schell (9484ms)\nWhat is cribbage?\tCribbage Quest\t-14.078851681261236\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage Quest, Instance Of, fun graphical cribbage game) -> Cribbage Quest (9512ms)\nWhat is cribbage?\tRaymond Rasmussen\t-14.078851681261236\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Raymond Rasmussen, Instance Of, champion cribbage player) -> Raymond Rasmussen (9484ms)\nWhat is cribbage?\tCribbage Champion\t-14.078851681261236\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage Champion, Instance Of, exciting game of Cribbage) -> Cribbage Champion (9484ms)\nWhat is cribbage?\tJames Nelson\t-14.086685521795342\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (James Nelson, Instance Of, avid cribbage player) -> James Nelson (9512ms)\nWhat is cribbage?\tCorb Lund\t-14.09232755061672\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Corb Lund, Instance Of, cribbage player) -> Corb Lund (9513ms)\nWhat is cribbage?\tFish , Romme , and Skat\t-14.1057795172952\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (Cribbage, Go, Fish , Romme , and Skat) -> Fish , Romme , and Skat (9512ms)\nWhat is cribbage?\tChampionship Cribbage Pro\t-14.11823353757363\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Championship Cribbage Pro, Instance Of, simple and fun cribbage game) -> Championship Cribbage Pro (9771ms)\nWhat is cribbage?\tMr. Cody\t-14.11823353757363\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Cody, Instance Of, avid bowler and cribbage player) -> Mr. Cody (9771ms)\nWhat is cribbage?\tKing's Cribbage\t-14.11823353757363\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (King's Cribbage, Instance Of, combination of Scrabble and Cribbage) -> King's Cribbage (9771ms)\nWhat is cribbage?\tMr. Jordan\t-14.126067378107738\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Jordan, Instance Of, avid cribbage player) -> Mr. Jordan (9771ms)\nWhat is cribbage?\tsuch a rich history\t-14.128898593186507\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has, such a rich history) -> such a rich history (9771ms)\nWhat is cribbage?\tMaple\t-14.13094723146773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The Snake shape cribbage board, has been inlaid in, Maple) -> Maple (9771ms)\nWhat is cribbage?\tEbony\t-14.138020828081093\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The White Maple cribbage board, has been inlaid with, Ebony) -> Ebony (9771ms)\nWhat is cribbage?\tO'Kane\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (O'Kane, Instance Of, singularly lucky cribbage player) -> O'Kane (9857ms)\nWhat is cribbage?\tCoCocoGames.com\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (CoCocoGames.com, Instance Of, cribbage board company) -> CoCocoGames.com (9912ms)\nWhat is cribbage?\tCribbage ca\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage ca, Instance Of, bilingual cribbage card game) -> Cribbage ca (9830ms)\nWhat is cribbage?\tMrs. Cerrone\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mrs. Cerrone, Instance Of, member of the Cribbage Club) -> Mrs. Cerrone (9912ms)\nWhat is cribbage?\tQC Cribbage Club\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (QC Cribbage Club, Instance Of, group of social cribbage player) -> QC Cribbage Club (9830ms)\nWhat is cribbage?\tECribbage\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (ECribbage, Instance Of, free , online cribbage game) -> ECribbage (9912ms)\nWhat is cribbage?\tHopoate at center\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Hopoate at center, Instance Of, stupid pick, Cribbage) -> Hopoate at center (9885ms)\nWhat is cribbage?\tAmerican Cribbage Congress Grass Roots\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (American Cribbage Congress Grass Roots, Instance Of, non-profit cribbage organization) -> American Cribbage Congress Grass Roots (9885ms)\nWhat is cribbage?\tPavillion Deluxe Cribbage Set\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Pavillion Deluxe Cribbage Set, Instance Of, reasonably priced Cribbage Set) -> Pavillion Deluxe Cribbage Set (9830ms)\nWhat is cribbage?\tRev. Poland\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Rev. Poland, Instance Of, avid cribbage) -> Rev. Poland (9858ms)\nWhat is cribbage?\tHalscrib by Hal Mueller\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Halscrib by Hal Mueller, Instance Of, strong Cribbage program) -> Halscrib by Hal Mueller (9830ms)\nWhat is cribbage?\tO Cribbage.ca\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (O Cribbage.ca, Instance Of, bilingual cribbage card game) -> O Cribbage.ca (9858ms)\nWhat is cribbage?\tMVP Cribbage\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (MVP Cribbage, Instance Of, cribbage game) -> MVP Cribbage (9885ms)\nWhat is cribbage?\tMrs. Kimball\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mrs. Kimball, Instance Of, accomplished cribbage player) -> Mrs. Kimball (9885ms)\nWhat is cribbage?\tCribbage Champion Game\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage Champion Game, Instance Of, exciting game of Cribbage) -> Cribbage Champion Game (9885ms)\nWhat is cribbage?\tMr. C\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. C, Instance Of, master of cribbage) -> Mr. C (9858ms)\nWhat is cribbage?\tMr. Montgomery\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Montgomery, Instance Of, accomplished cribbage player) -> Mr. Montgomery (9858ms)\nWhat is cribbage?\ttable on the left\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (table on the left, Instance Of, Cribbage Coffee table) -> table on the left (9830ms)\nWhat is cribbage?\tCribbageBoardStore.com\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (CribbageBoardStore.com, Instance Of, exclusive online seller of classic cribbage board) -> CribbageBoardStore.com (9830ms)\nWhat is cribbage?\trule of three\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (rule of three, Instance Of, cribbage technique) -> rule of three (9885ms)\nWhat is cribbage?\trule of seven\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (rule of seven, Instance Of, cribbage technique) -> rule of seven (9857ms)\nWhat is cribbage?\tMr. Bradstreet\t-14.163127493008773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Bradstreet, Instance Of, masterful cribbage player) -> Mr. Bradstreet (9858ms)\nWhat is cribbage?\ta drink\t-14.163940868651512\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage, have, a drink) -> a drink (9911ms)\nWhat is cribbage?\tNintendo\t-14.164621724846901\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage , bridge or backgammon, have come to include, Nintendo) -> Nintendo (9911ms)\nWhat is cribbage?\tMr. Obuchowski\t-14.17096133354288\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Obuchowski, Instance Of, avid cribbage player) -> Mr. Obuchowski (9911ms)\nWhat is cribbage?\tMr. Jodoin\t-14.17096133354288\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Jodoin, Instance Of, avid cribbage player) -> Mr. Jodoin (9911ms)\nWhat is cribbage?\tMrs. Goodwin\t-14.17096133354288\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mrs. Goodwin, Instance Of, avid cribbage player) -> Mrs. Goodwin (9911ms)\nWhat is cribbage?\ta new home\t-14.175002082145452\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Forum, has, a new home) -> a new home (9939ms)\nWhat is cribbage?\tRegular readers\t-14.189955550151865\tWhat is cribbage? -> what [ be cribbage ] ? -> what be know be cribbage ? -> $x: ($x, be know be, cribbage) -> $x: ($x, know, cribbage) -> (Regular readers, will know, the standard Cribbage Corner method) -> Regular readers (3501ms)\nWhat is cribbage?\ttwo kinds\t-14.190382419594592\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The cribbage board, has been inlaid in, two kinds) -> two kinds (9939ms)\nWhat is cribbage?\ta VIDEO option\t-14.200187036773059\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The update cribbage, also has, a VIDEO option) -> a VIDEO option (9938ms)\nWhat is cribbage?\ta library\t-14.204221718331901\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage , converse, have, a library) -> a library (9938ms)\nWhat is cribbage?\tCharles Dickens Toby Crackit\t-14.204255155046773\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Charles Dickens Toby Crackit, Instance Of, cribbage player) -> Charles Dickens Toby Crackit (9939ms)\nWhat is cribbage?\ta rich user interface\t-14.207199985136999\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has, a rich user interface) -> a rich user interface (9939ms)\nWhat is cribbage?\tseveral distinctive features\t-14.209142468550036\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has, several distinctive features) -> several distinctive features (9939ms)\nWhat is cribbage?\tle\t-14.217964377360373\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (le, Instance Of, cribbage term) -> le (9965ms)\nWhat is cribbage?\ta wonderful Xmas\t-14.253695725888946\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (all cribbage players, have, a wonderful Xmas) -> a wonderful Xmas (9965ms)\nWhat is cribbage?\tbed\t-14.266833463635601\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (Cribbage, then went to, bed) -> bed (9965ms)\nWhat is cribbage?\tFish , Hearts , Old Maid\t-14.275736081300579\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (Cribbage, Go, Fish , Hearts , Old Maid) -> Fish , Hearts , Old Maid (9990ms)\nWhat is cribbage?\tISA conventions\t-14.301442371273406\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (camping and fishing , play cribbage, go to, ISA conventions) -> ISA conventions (9990ms)\nWhat is cribbage?\tcomparison list\t-14.313179196498442\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The product Cribbage Board, has been added to, comparison list) -> comparison list (9990ms)\nWhat is cribbage?\ta flip top storing\t-14.330620891425657\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The dark brown Cribbage board, has, a flip top storing) -> a flip top storing (9991ms)\nWhat is cribbage?\tone of the few games\t-14.409982085343835\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, one of the few games) -> one of the few games (10016ms)\nWhat is cribbage?\tfive years\t-14.431819880211098\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage boards, has been open seven days a week for, five years) -> five years (10016ms)\nWhat is cribbage?\tInterland/Web.com\t-14.447335024736958\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Forum, has given up on, Interland/Web.com) -> Interland/Web.com (10015ms)\nWhat is cribbage?\tRoy\t-14.471044311688086\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Roy, Instance Of, avid bridge and cribbage player) -> Roy (10328ms)\nWhat is cribbage?\tLew\t-14.471044311688086\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Lew, Instance Of, dedicated cribbage player) -> Lew (10016ms)\nWhat is cribbage?\tLaw\t-14.478878152222194\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Law, Instance Of, avid cribbage player) -> Law (10328ms)\nWhat is cribbage?\trecommended books\t-14.495854313706431\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Corner, has its own Amazon list of, recommended books) -> recommended books (10328ms)\nWhat is cribbage?\tthe world?s\t-14.514918293370668\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is one of, the world?s) -> the world?s (10328ms)\nWhat is cribbage?\tjourney bags\t-14.51685569528583\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Provide, had a massive need for, journey bags) -> journey bags (10328ms)\nWhat is cribbage?\tprime directive\t-14.520296409462622\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (prime directive, Instance Of, cribbage technique) -> prime directive (10328ms)\nWhat is cribbage?\ta faithful following\t-14.524483510407853\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has, a faithful following) -> a faithful following (10357ms)\nWhat is cribbage?\tthe time\t-14.525471077114656\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the time, was spent playing, cribbage) -> the time (10357ms)\nWhat is cribbage?\ttwo players\t-14.535778074213415\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (all wood cribbage set, has double tracks for, two players) -> two players (10357ms)\nWhat is cribbage?\tthe English language\t-14.585425099704068\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has given, the English language) -> the English language (10357ms)\nWhat is cribbage?\ta 29 hand\t-14.59723005038883\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage, have yet to get, a 29 hand) -> a 29 hand (10357ms)\nWhat is cribbage?\tthe different strategy\t-14.603556319303713\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, stand out is, the different strategy) -> the different strategy (10357ms)\nWhat is cribbage?\tthe British poet\t-14.648517083806983\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, was invented by, the British poet) -> the British poet (10357ms)\nWhat is cribbage?\tstorage space\t-14.656842914925061\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Every 29 cribbage board, has, storage space) -> storage space (10426ms)\nWhat is cribbage?\tDan Barlow\t-14.688848032957697\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Dan Barlow, Instance Of, National Open Cribbage champion) -> Dan Barlow (10426ms)\nWhat is cribbage?\tthe most popular card games\t-14.692840502213445\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is one of, the most popular card games) -> the most popular card games (10426ms)\nWhat is cribbage?\tPaul\t-14.69602752699681\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Paul, Instance Of, avid cribbage player) -> Paul (10426ms)\nWhat is cribbage?\tRoy Snyder\t-14.696681873491803\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Roy Snyder, Instance Of, avid cribbage player) -> Roy Snyder (10426ms)\nWhat is cribbage?\tThe iPhone\t-14.699658916498809\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The iPhone, is well served with, free cribbage games) -> The iPhone (10426ms)\nWhat is cribbage?\tuser settings\t-14.71032215060153\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Pro, has a nice set of, user settings) -> user settings (10426ms)\nWhat is cribbage?\t2 deck\t-14.723178352206395\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Every continuous cribbage board, has storage space for, 2 deck) -> 2 deck (10527ms)\nWhat is cribbage?\ttwo kinds of wood\t-14.724105060247954\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The cribbage board, has been inlaid in, two kinds of wood) -> two kinds of wood (10526ms)\nWhat is cribbage?\t4 player pins\t-14.742238517451286\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage board, has, 4 player pins) -> 4 player pins (10526ms)\nWhat is cribbage?\tthe six-card game\t-14.748465428615663\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, has been superceded by, the six-card game) -> the six-card game (10527ms)\nWhat is cribbage?\tthe game\t-14.749878593533493\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, was, the game) -> the game (10526ms)\nWhat is cribbage?\tJames\t-14.750752080079625\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (James, Instance Of, avid cribbage player) -> James (10527ms)\nWhat is cribbage?\tmonumental size\t-14.753220444797373\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (the Cribbage Series, had grown to, monumental size) -> monumental size (10555ms)\nWhat is cribbage?\texcellent graphics\t-14.75498887030186\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Ultimate Cribbage, has, excellent graphics) -> excellent graphics (10555ms)\nWhat is cribbage?\tJack\t-14.755227335457615\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Jack, Instance Of, excellent cribbage player) -> Jack (10555ms)\nWhat is cribbage?\tGreg\t-14.755227335457615\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Greg, Instance Of, mean Cribbage player) -> Greg (10555ms)\nWhat is cribbage?\tRosewood\t-14.762245563579086\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The White Maple cribbage board, has been inlaid with, Rosewood) -> Rosewood (10555ms)\nWhat is cribbage?\tBattlefield\t-14.769179519984124\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Battlefield, Instance Of, variation of cribbage) -> Battlefield (10555ms)\nWhat is cribbage?\tErnest\t-14.77701336051823\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Ernest, Instance Of, avid cribbage player) -> Ernest (10555ms)\nWhat is cribbage?\tlearning\t-14.781299700559044\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (learning, is, our cribbage books) -> learning (10584ms)\nWhat is cribbage?\tbrass slot hinges\t-14.787959812483459\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, make, $x) -> (cribbage boxes, are made with, brass slot hinges) -> brass slot hinges (10584ms)\nWhat is cribbage?\tthe language\t-14.795882346975052\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, the language) -> the language (10584ms)\nWhat is cribbage?\tRoss\t-14.800121290892758\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Ross, Instance Of, pretty good cribbage player) -> Ross (10584ms)\nWhat is cribbage?\tTuch\t-14.800121290892758\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Tuch, Instance Of, lively cribbage player) -> Tuch (10584ms)\nWhat is cribbage?\tEnos\t-14.800121290892758\tWhat is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Enos, Instance Of, master cribbage player) -> Enos (10584ms)\nIn what year was the Guinness Brewery founded?\t1759\t-3.3558047005136467\tIn what year was the Guinness Brewery founded? -> When was the Guinness Brewery founded? -> $x: (the Guinness Brewery, was founded in, $x) -> (The Guinness brewery, was founded in, 1759) -> 1759 (955ms)\nWho founded the House of Chanel?\tJacques Wetheimer\t-8.626903841647383\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (Jacques Wetheimer, bought the entire House of, Chanel) -> Jacques Wetheimer (2792ms)\nWho founded the House of Chanel?\tJacques Wertheimer\t-8.705989684481585\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (Jacques Wertheimer, bought the entire House of, Chanel) -> Jacques Wertheimer (2792ms)\nWho founded the House of Chanel?\tCoco Chanel\t-9.322607237067926\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (Coco Chanel, first established the house of, Chanel) -> Coco Chanel (2792ms)\nWho founded the House of Chanel?\tKarl Lagerfeld\t-9.444800532053241\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (Karl Lagerfeld, took over the House of, Chanel) -> Karl Lagerfeld (2792ms)\nWho founded the House of Chanel?\therself?and\t-9.540249035144159\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (herself?and, has become the iconic House of, Chanel) -> herself?and (2792ms)\nWho founded the House of Chanel?\tChanel\t-11.237332684271047\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> (Coco Chanel, first established the house of, Chanel) -> Chanel (3294ms)\nWho founded the House of Chanel?\tDellal\t-13.067881189883938\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, be the will of, chanel) -> (Dellal, will be the new face of, the Boy Chanel handbag campaign) -> Dellal (3656ms)\nWho founded the House of Chanel?\tAlain Wertheimer\t-14.299163433115368\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is jointly owned by, Alain Wertheimer) -> Alain Wertheimer (5744ms)\nWho founded the House of Chanel?\tthe perfect height\t-14.50489881194736\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: (chanel, be blessing, $x) -> (Chanel Iman, is blessed with, the perfect height) -> the perfect height (3707ms)\nWho founded the House of Chanel?\tLarcrest Holsteins\t-15.116297898174082\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (EX-93-3E GMD DOM Chanel, is owned by, Larcrest Holsteins) -> Larcrest Holsteins (5744ms)\nWho founded the House of Chanel?\texquisite craftsmanship\t-15.626396107163572\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel flap bag, is famous for, exquisite craftsmanship) -> exquisite craftsmanship (5691ms)\nWho founded the House of Chanel?\t1939\t-15.638709361507367\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> (Coco Chanel, closed her couture house in, 1939) -> 1939 (4122ms)\nWho founded the House of Chanel?\tchanel\t-15.71697312153653\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel J12 Watches, is famous series of, chanel) -> chanel (5691ms)\nWho founded the House of Chanel?\tthe Wertheimer brothers--grandsons\t-15.87559481503284\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is jointly owned by, the Wertheimer brothers--grandsons) -> the Wertheimer brothers--grandsons (5744ms)\nWho founded the House of Chanel?\tlies and rumors\t-15.877363187835034\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, was famous of spreading, lies and rumors) -> lies and rumors (5691ms)\nWho founded the House of Chanel?\tthe ?little black dress?\t-15.881015953937894\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, is most famous for, the ?little black dress?) -> the ?little black dress? (5691ms)\nWho founded the House of Chanel?\tan olfactive diamond\t-16.120513812842034\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be construct, $x) -> (Chanel perfume, is constructed around, an olfactive diamond) -> an olfactive diamond (5789ms)\nWho founded the House of Chanel?\ta recent recovery\t-16.155489491413547\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel hand bags, really are famous for, a recent recovery) -> a recent recovery (5691ms)\nWho founded the House of Chanel?\tharpies\t-16.162519373325917\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be run, $x) -> (Chanel, is run by, harpies) -> harpies (5868ms)\nWho founded the House of Chanel?\ta single unit\t-16.180639278651025\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be construct, $x) -> (Chanel jackets, are constructed as, a single unit) -> a single unit (5789ms)\nWho founded the House of Chanel?\ta cloud\t-16.207229755024947\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be surround, $x) -> (Chanel, was surrounded by, a cloud) -> a cloud (5828ms)\nWho founded the House of Chanel?\tGloria Lee\t-16.21430335163831\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is jointly owned by, Gloria Lee) -> Gloria Lee (5744ms)\nWho founded the House of Chanel?\tquilts\t-16.384453005925085\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, is famous for there, quilts) -> quilts (5691ms)\nWho founded the House of Chanel?\t80 years\t-16.534525822601744\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, is a famous brand in, 80 years) -> 80 years (5691ms)\nWho founded the House of Chanel?\tCoco\t-16.535384325012572\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is surprisingly still owned by, Coco) -> Coco (5745ms)\nWho founded the House of Chanel?\ta over 80 years\t-16.53763520172529\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, is a famous brand with, a over 80 years) -> a over 80 years (5691ms)\nWho founded the House of Chanel?\ta stroll in the variety\t-16.5962347467144\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (chanel outlet, is owned by, a stroll in the variety) -> a stroll in the variety (5745ms)\nWho founded the House of Chanel?\tthe NBA\t-16.677862106792375\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be run, $x) -> (Chanel outlet, is likely to run in, the NBA) -> the NBA (5868ms)\nWho founded the House of Chanel?\tthe industry\t-17.114260654258256\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel Unisex watches, are very famous in, the industry) -> the industry (5744ms)\nWho founded the House of Chanel?\tthe fashion industry\t-17.388280322439805\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel Unisex watches, are very famous in, the fashion industry) -> the fashion industry (5744ms)\nWho founded the House of Chanel?\tthe different types\t-17.412441957851726\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel Handbags, is famous among, the different types) -> the different types (5789ms)\nWho founded the House of Chanel?\tthe likes\t-17.47624161336659\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Coco Chanel, was made famous by, the likes) -> the likes (5789ms)\nWho founded the House of Chanel?\tthe extra attention\t-17.569358207594316\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is owned by, the extra attention) -> the extra attention (5789ms)\nWho founded the House of Chanel?\tthe little black dress\t-17.639759246124935\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (chanel uk, is most famous for, the little black dress) -> the little black dress (5789ms)\nWho founded the House of Chanel?\tthe best quality\t-17.668798686164894\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel bags, are famous for, the best quality) -> the best quality (5789ms)\nWho founded the House of Chanel?\tthe highest standards\t-17.705176019307185\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be construct, $x) -> (Chanel handbags, are constructed with, the highest standards) -> the highest standards (5789ms)\nWho founded the House of Chanel?\tthe dedicated pair\t-17.719979655411294\tWho founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (The actual Chanel bag, will be famous for, the dedicated pair) -> the dedicated pair (5828ms)\nWhat is Weiss's home town?\tsmall comic masterpiece\t-11.177009238450053\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be old weiss ? -> $x: (old weiss, instance of, $x) -> (Weiss's bad tempered old hornet'', Instance Of, small comic masterpiece) -> small comic masterpiece (15598ms)\nWhat is Weiss's home town?\tAnswers.com\t-11.291827625118414\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Weiss, can be found at, Answers.com) -> Answers.com (14377ms)\nWhat is Weiss's home town?\tWeiss?s warning\t-11.534018861839552\tWhat is Weiss's home town? -> what be [ weiss s ] home town ? -> what be weiss s s state ? -> $x: (weiss s, state, $x) -> (Weiss Research?s Safe Money Report, stated, Weiss?s warning) -> Weiss?s warning (10004ms)\nWhat is Weiss's home town?\tinspirer of politics\t-11.537328622265823\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be old weiss ? -> $x: (old weiss, instance of, $x) -> (Seventeen-year-old Aimee Lee Weiss, Instance Of, inspirer of politics) -> inspirer of politics (15598ms)\nWhat is Weiss's home town?\told-world clockworker, making metal animal\t-11.537328622265823\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be old weiss ? -> $x: (old weiss, instance of, $x) -> (Old Frau Weiss, Instance Of, old-world clockworker, making metal animal) -> old-world clockworker, making metal animal (15598ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Emil%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Emil Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Emil%20Weiss) -> http://en.wikipedia.org/wiki/Emil%20Weiss (14553ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Eric%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Eric Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Eric%20Weiss) -> http://en.wikipedia.org/wiki/Eric%20Weiss (14376ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Andrew%20Weiss%20(guitarist)\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Andy Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Andrew%20Weiss%20(guitarist)) -> http://en.wikipedia.org/wiki/Andrew%20Weiss%20(guitarist) (14431ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Wojciech%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (wojciech weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Wojciech%20Weiss) -> http://en.wikipedia.org/wiki/Wojciech%20Weiss (14504ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/John%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (John Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/John%20Weiss) -> http://en.wikipedia.org/wiki/John%20Weiss (14432ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Shaun%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Shaun Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Shaun%20Weiss) -> http://en.wikipedia.org/wiki/Shaun%20Weiss (14431ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Norman%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Norman Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Norman%20Weiss) -> http://en.wikipedia.org/wiki/Norman%20Weiss (14504ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Ellen%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (ellen weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ellen%20Weiss) -> http://en.wikipedia.org/wiki/Ellen%20Weiss (14464ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Mount%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Mount Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Mount%20Weiss) -> http://en.wikipedia.org/wiki/Mount%20Weiss (14376ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Allan%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Allan Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Allan%20Weiss) -> http://en.wikipedia.org/wiki/Allan%20Weiss (14464ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Sid%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Sid Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sid%20Weiss) -> http://en.wikipedia.org/wiki/Sid%20Weiss (14504ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Vladimir%20Weiss%20(footballer%20born%201964)\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Vladimir Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Vladimir%20Weiss%20(footballer%20born%201964)) -> http://en.wikipedia.org/wiki/Vladimir%20Weiss%20(footballer%20born%201964) (14504ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Lisa%20Wei%C3%9F\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Lisa Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lisa%20Wei%C3%9F) -> http://en.wikipedia.org/wiki/Lisa%20Wei%C3%9F (14504ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Matt%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Matt Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Matt%20Weiss) -> http://en.wikipedia.org/wiki/Matt%20Weiss (14376ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Johnny%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Johnny Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Johnny%20Weiss) -> http://en.wikipedia.org/wiki/Johnny%20Weiss (14431ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Rob%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Rob Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rob%20Weiss) -> http://en.wikipedia.org/wiki/Rob%20Weiss (14431ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Erick%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Erick Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Erick%20Weiss) -> http://en.wikipedia.org/wiki/Erick%20Weiss (14464ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Stanley%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Stanley Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Stanley%20Weiss) -> http://en.wikipedia.org/wiki/Stanley%20Weiss (14464ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Trude%20Weiss%2DRosmarin\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Trude Weiss-Rosmarin, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Trude%20Weiss%2DRosmarin) -> http://en.wikipedia.org/wiki/Trude%20Weiss%2DRosmarin (14464ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Nate%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Nate Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Nate%20Weiss) -> http://en.wikipedia.org/wiki/Nate%20Weiss (14376ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Roberta%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Roberta Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Roberta%20Weiss) -> http://en.wikipedia.org/wiki/Roberta%20Weiss (14376ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Bill%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Bill Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bill%20Weiss) -> http://en.wikipedia.org/wiki/Bill%20Weiss (14431ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Emanuel%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Emanuel Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Emanuel%20Weiss) -> http://en.wikipedia.org/wiki/Emanuel%20Weiss (14504ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Pierre%20Weiss\t-11.80361328631787\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Pierre-Ernest Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Pierre%20Weiss) -> http://en.wikipedia.org/wiki/Pierre%20Weiss (14464ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Jamie%20Sue%20Weiss\t-11.827175183974292\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (jamie sue weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Jamie%20Sue%20Weiss) -> http://en.wikipedia.org/wiki/Jamie%20Sue%20Weiss (14553ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Carl%20G%C3%BCnther%20Weiss\t-11.827175183974292\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Carl G?nther Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Carl%20G%C3%BCnther%20Weiss) -> http://en.wikipedia.org/wiki/Carl%20G%C3%BCnther%20Weiss (14553ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Mallory%E2%80%93Weiss%20syndrome\t-11.827175183974292\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Mallory Weiss syndrome, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Mallory%E2%80%93Weiss%20syndrome) -> http://en.wikipedia.org/wiki/Mallory%E2%80%93Weiss%20syndrome (14553ms)\nWhat is Weiss's home town?\thttp://en.wikipedia.org/wiki/Louis%20A%2E%20Weiss%20Memorial%20Hospital\t-11.86546326766598\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Louis A. Weiss Memorial Hospital, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Louis%20A%2E%20Weiss%20Memorial%20Hospital) -> http://en.wikipedia.org/wiki/Louis%20A%2E%20Weiss%20Memorial%20Hospital (14553ms)\nWhat is Weiss's home town?\tany settlement negotitations\t-11.966371436492807\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what prevent weiss ? -> $x: ($x, prevent, weiss) -> (any settlement negotitations, prevent, Milberg Weiss) -> any settlement negotitations (10280ms)\nWhat is Weiss's home town?\tPhiladelphia\t-12.062026094129136\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be originally from, $x) -> ($ 1,500 Robert Weiss, is originally from, Philadelphia) -> Philadelphia (14553ms)\nWhat is Weiss's home town?\tthe USA\t-12.075137796582373\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be popular in, $x) -> (His Weiss-Antiqua typeface, was particularly popular in, the USA) -> the USA (14581ms)\nWhat is Weiss's home town?\tHungry\t-12.503435398696439\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be originally from, $x) -> (David Weiss, were originally from, Hungry) -> Hungry (14581ms)\nWhat is Weiss's home town?\tThe building\t-12.761281392207731\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, be home of, weiss) -> (The building, is the home of, the Stephan Weiss Studio) -> The building (14914ms)\nWhat is Weiss's home town?\tThe UND Center\t-12.770903325914155\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, play host to, weiss) -> (The UND Center, will play host to, Martin Weiss) -> The UND Center (14762ms)\nWhat is Weiss's home town?\tthe U.S. Holocaust Memorial Museum\t-12.784166332739783\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, play host to, weiss) -> (the U.S. Holocaust Memorial Museum, played host to, Martin Weiss) -> the U.S. Holocaust Memorial Museum (14763ms)\nWhat is Weiss's home town?\tRomania\t-12.82867078556631\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, emigrate from, $x) -> (Weiss, emigrated from, Romania) -> Romania (14581ms)\nWhat is Weiss's home town?\tDavis\t-13.412222419590911\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, will take over, $x) -> (Barry Weiss, will take over for, Davis) -> Davis (14719ms)\nWhat is Weiss's home town?\tPresident\t-13.456432319370986\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, will take over, $x) -> (Tom Weiss, will take over as, President) -> President (14719ms)\nWhat is Weiss's home town?\tpowerhouse\t-13.66325604262189\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be old weiss ? -> $x: (old weiss, instance of, $x) -> (Weiss's 10-year-old show, Instance Of, powerhouse) -> powerhouse (15598ms)\nWhat is Weiss's home town?\tThe new building\t-13.895387635943782\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, will be connect to, weiss) -> (The new building, will be connected to, Weiss) -> The new building (14992ms)\nWhat is Weiss's home town?\twork\t-15.343115815845916\tWhat is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, change his name to, weiss) -> (work, changed his last name to, Weiss) -> work (14655ms)\nWhich king signed the Magna Carta?\tKing John\t-4.084419249049735\tWhich king signed the Magna Carta? -> $x: ($x, instance of, king) ($x, signed, the Magna Carta) -> (King John, Instance Of, english king) (King John, famously signed, the Magna Carta) -> King John (846ms)\nWhich king signed the Magna Carta?\tRobin Hood\t-4.2230887782548585\tWhich king signed the Magna Carta? -> $x: ($x, instance of, king) ($x, signed, the Magna Carta) -> (Robin Hood, Instance Of, king and great heroes) (Robin Hood, signed, the Magna Carta) -> Robin Hood (1241ms)\nWhich king signed the Magna Carta?\ta hand\t-7.312238190015426\tWhich king signed the Magna Carta? -> $x: ($x, instance of, king) ($x, signed, the Magna Carta) -> $x: ($x, modelling, king) ($x, signed, the Magna Carta) -> (a hand, casted model of, Cambridge Kings College) (hand, was about to sign, the Magna Carta) -> a hand (1895ms)\nWhich king signed the Magna Carta?\tEngland\t-7.5479983164466775\tWhich king signed the Magna Carta? -> $x: ($x, instance of, king) ($x, signed, the Magna Carta) -> $x: ($x, be a by, king) ($x, signed, the Magna Carta) -> (England, was a book first published by, Daniel King) (England, signed, the Magna Carta) -> England (2196ms)\nWho founded Wal-Mart?\tSam Walton\t0.601150388120341\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Sam Walton, founded, Wal-Mart) -> Sam Walton (1946ms)\nWho founded Wal-Mart?\tthe Walton family\t-0.6078750500570229\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the Walton family, founded, Wal-Mart) -> the Walton family (1946ms)\nWho founded Wal-Mart?\tno . Sam Walton\t-0.6914602459265022\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (no . Sam Walton, founded, Wal-Mart) -> no . Sam Walton (1945ms)\nWho founded Wal-Mart?\tthe Authors Sam Walton\t-0.9093357261885111\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the Authors Sam Walton, founded, Wal-Mart and Sam?s Club) -> the Authors Sam Walton (2498ms)\nWho founded Wal-Mart?\tUniv\t-0.9462212121370062\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Univ, then founded, Wal-Mart) -> Univ (2498ms)\nWho founded Wal-Mart?\tNewport native\t-1.1895213417373895\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Newport native, founded, Wal-Mart Stores) -> Newport native (2498ms)\nWho founded Wal-Mart?\tArkansas\t-1.2025610763787573\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Arkansas, founded, Wal-Mart) -> Arkansas (2498ms)\nWho founded Wal-Mart?\tOklahoma\t-1.4048142868743332\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Oklahoma, founded, two American retailers Wal-Mart) -> Oklahoma (2498ms)\nWho founded Wal-Mart?\tIllinois\t-1.484741115172262\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Illinois, was founded by, Wal-Mart) -> Illinois (2541ms)\nWho founded Wal-Mart?\tBentonville\t-1.712669248545175\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Bentonville, was founded by, Wal-Mart heiress Alice Walton) -> Bentonville (2541ms)\nWho founded Wal-Mart?\tWalton\t-1.7394870037000905\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Walton, founded, Wal-Mart) -> Walton (2542ms)\nWho founded Wal-Mart?\t1962 Sam Walton\t-2.0903241140367226\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (1962 Sam Walton, founded, Wal-Mart Stores) -> 1962 Sam Walton (2541ms)\nWho founded Wal-Mart?\tmike duke\t-2.528154753226417\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be a person who lead the organization, Wal-Mart) -> (mike duke, is a person who leads the organization, wal-Mart) -> mike duke (2565ms)\nWho founded Wal-Mart?\tpet food\t-2.5989088452892277\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (pet food, found at, Wal*Mart) -> pet food (2565ms)\nWho founded Wal-Mart?\tweights and measures\t-2.63937993453388\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (weights and measures, found, 164 Wal-Marts) -> weights and measures (2565ms)\nWho founded Wal-Mart?\tobscure brands\t-2.7066443712138737\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (obscure brands, found at, Wal-Mart work) -> obscure brands (2565ms)\nWho founded Wal-Mart?\tprivate labels\t-2.7495778327998477\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (private labels, find, Wal-Mart) -> private labels (2565ms)\nWho founded Wal-Mart?\tsmall vehicles\t-2.762413420442343\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (small vehicles, can be found at, Wal-Mart) -> small vehicles (2565ms)\nWho founded Wal-Mart?\tscrapbooking supplies\t-2.799549723609054\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (scrapbooking supplies, found at, Wal-Mart) -> scrapbooking supplies (2653ms)\nWho founded Wal-Mart?\tBaja California\t-2.824706240623516\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Baja California, can find, a Wal-Mart) -> Baja California (2654ms)\nWho founded Wal-Mart?\tthe New York Times\t-2.859217510665108\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the New York Times, is still found in, many Wal-Marts) -> the New York Times (2653ms)\nWho founded Wal-Mart?\tlee scott\t-3.0100956507090872\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be a person who lead the organization, Wal-Mart) -> (lee scott, is a person who leads the organization, wal-Mart) -> lee scott (2654ms)\nWho founded Wal-Mart?\tsam walton\t-3.0100956507090872\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be a person who lead the organization, Wal-Mart) -> (sam walton, is a person who leads the organization, wal-Mart) -> sam walton (2653ms)\nWho founded Wal-Mart?\tGil\t-3.03130899027795\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Gil, found a job at, Wal-Mart) -> Gil (2796ms)\nWho founded Wal-Mart?\twhite sculpy clay\t-3.1036508980315043\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (white sculpy clay, can be found at, Wal-Mart) -> white sculpy clay (2796ms)\nWho founded Wal-Mart?\ta Wal-Mart Supercenter\t-3.1151240254922863\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a Wal-Mart Supercenter, found, Wal-Mart) -> a Wal-Mart Supercenter (2796ms)\nWho founded Wal-Mart?\ta search\t-3.1354605762289824\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a search, found, Wal-Mart) -> a search (2796ms)\nWho founded Wal-Mart?\ta local tire company\t-3.1411931665209893\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a local tire company, suddenly finds, Wal-Mart) -> a local tire company (2796ms)\nWho founded Wal-Mart?\ta clothes line and can?t\t-3.1822584670850897\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a clothes line and can?t, find one at, Wal Mart) -> a clothes line and can?t (2796ms)\nWho founded Wal-Mart?\twhite cardstock paper\t-3.182504872839512\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (white cardstock paper, can be found at, Wal-Mart) -> white cardstock paper (2822ms)\nWho founded Wal-Mart?\tLotus Center\t-3.2121390595278907\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, duplicated, Wal-Mart) -> (Lotus Center, is almost an exact duplicate of, a Super Wal Mart) -> Lotus Center (3007ms)\nWho founded Wal-Mart?\ta Clone Trooper Power Quad\t-3.261900865356936\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a Clone Trooper Power Quad, found at, a Wal-Mart) -> a Clone Trooper Power Quad (2822ms)\nWho founded Wal-Mart?\tthe Pure Ice brand\t-3.2639060431415183\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the Pure Ice brand, is found mostly at, Wal-Mart) -> the Pure Ice brand (2822ms)\nWho founded Wal-Mart?\tBasker and Noel\t-3.33175248698258\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Basker and Noel, find, that Wal-Mart) -> Basker and Noel (2822ms)\nWho founded Wal-Mart?\tthe Luanna brand\t-3.3635189982108655\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the Luanna brand, found in, Wal-Mart) -> the Luanna brand (2822ms)\nWho founded Wal-Mart?\tThe Ranch Style Beans\t-3.364403237314257\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (The Ranch Style Beans, can be found at, Wal Mart) -> The Ranch Style Beans (2856ms)\nWho founded Wal-Mart?\ta clear COLORPLACE Spray Paint\t-3.3715413493525803\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a clear COLORPLACE Spray Paint, found at, WalMart) -> a clear COLORPLACE Spray Paint (2856ms)\nWho founded Wal-Mart?\tthe US judges\t-3.3724255884559717\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the US judges, have found, Wal-Mart guilty) -> the US judges (2856ms)\nWho founded Wal-Mart?\tA Florida jury\t-3.3729175230640656\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (A Florida jury, finds, Wal-Mart liable) -> A Florida jury (2856ms)\nWho founded Wal-Mart?\tnew electronic gifts\t-3.378550377838687\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (new electronic gifts, found at, Wal-Mart) -> new electronic gifts (2856ms)\nWho founded Wal-Mart?\tHome materials\t-3.3805556083255643\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Home materials, can be found at, Wal Mart) -> Home materials (2856ms)\nWho founded Wal-Mart?\tan explosive device\t-3.382151744272624\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (an explosive device, found at, Wal-Mart) -> an explosive device (2896ms)\nWho founded Wal-Mart?\tMissing special-needs teen\t-3.3882159381082118\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Missing special-needs teen, found at, Wal-Mart) -> Missing special-needs teen (2896ms)\nWho founded Wal-Mart?\ta tool box\t-3.3954146983959577\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a tool box, found at, Wal-Mart) -> a tool box (2896ms)\nWho founded Wal-Mart?\ta plastic trading card sleeve\t-3.3954146983959577\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a plastic trading card sleeve, found at, WalMart) -> a plastic trading card sleeve (2896ms)\nWho founded Wal-Mart?\talcohol\t-3.416501724548503\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (alcohol, even find, a Wal-Mart) -> alcohol (2896ms)\nWho founded Wal-Mart?\tCLW\t-3.4626137608183116\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (CLW, has found, that Wal-Mart) -> CLW (2896ms)\nWho founded Wal-Mart?\tThe Brinkmann Q Beam\t-3.475876714941645\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (The Brinkmann Q Beam, can be found at, Wal Mart) -> The Brinkmann Q Beam (2919ms)\nWho founded Wal-Mart?\tTop left\t-3.485602870758297\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Top left, was found only in, Wal-Mart) -> Top left (2919ms)\nWho founded Wal-Mart?\t? variety\t-3.501057879934413\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (? variety, would be found at, Wal-Mart) -> ? variety (2919ms)\nWho founded Wal-Mart?\t12/20/2004 AMR Research\t-3.5162007120921133\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (12/20/2004 AMR Research, finds, Wal-Mart suppliers) -> 12/20/2004 AMR Research (2919ms)\nWho founded Wal-Mart?\tnatural and organic foods sections\t-3.5200866147217185\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (natural and organic foods sections, are found in, Wal-Mart) -> natural and organic foods sections (2921ms)\nWho founded Wal-Mart?\tcustomers\t-3.5425752427427466\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (customers, find great value at, Wal-Mart) -> customers (2919ms)\nWho founded Wal-Mart?\tmore workers\t-3.552963306023133\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (?Wal-Mart, was found to have, more workers) -> more workers (3569ms)\nWho founded Wal-Mart?\tAloe Vera\t-3.5731204532066205\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Aloe Vera, can now be found at, your local Wal-Mart) -> Aloe Vera (2948ms)\nWho founded Wal-Mart?\tzero people\t-3.613416402795577\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart stores, have so far found exactly, zero people) -> zero people (3569ms)\nWho founded Wal-Mart?\tthe family\t-3.6215414338457825\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the family, founded, Wal-Mart) -> the family (2947ms)\nWho founded Wal-Mart?\temployment gains\t-3.689522002760742\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, were found to have, employment gains) -> employment gains (3569ms)\nWho founded Wal-Mart?\tWal-Mart\t-3.715033729519122\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Wal-Mart, can be found by visiting, www.WalMart.com) -> Wal-Mart (2948ms)\nWho founded Wal-Mart?\tBell\t-3.7164311563452577\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Bell, found at, Wal-Mart) -> Bell (2947ms)\nWho founded Wal-Mart?\tgreater liability\t-3.757605198881898\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal*Mart, has been found to have much, greater liability) -> greater liability (3569ms)\nWho founded Wal-Mart?\thouse advertising\t-3.7610167808119006\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has found, house advertising) -> house advertising (3569ms)\nWho founded Wal-Mart?\tclear coat\t-3.7654984137691008\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (clear coat, be found at, Wal-Mart) -> clear coat (2984ms)\nWho founded Wal-Mart?\tbasketball team\t-3.769983966604135\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (basketball team, could be found outside, the local Wal-Mart) -> basketball team (2984ms)\nWho founded Wal-Mart?\t3-D Paint\t-3.7846692254134866\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (3-D Paint, found at, Wal-Mart) -> 3-D Paint (2984ms)\nWho founded Wal-Mart?\tmuch that\t-3.7863915199434413\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (much that, is found in, Wal-mart) -> much that (2984ms)\nWho founded Wal-Mart?\tthe guy\t-3.807969744681244\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the guy, founded, Wal-Mart) -> the guy (2984ms)\nWho founded Wal-Mart?\ta 3$ scarf i\t-3.8142399446564466\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a 3$ scarf i, found at, Wal-mart) -> a 3$ scarf i (3006ms)\nWho founded Wal-Mart?\tWarren Buffett\t-3.8179549931322048\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, try to find, wal-mart) -> (Warren Buffett, try to find, the next Wal-Mart) -> Warren Buffett (4409ms)\nWho founded Wal-Mart?\tthe $ 100 models\t-3.8301555106853646\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the $ 100 models, found at, Wal Mart) -> the $ 100 models (3007ms)\nWho founded Wal-Mart?\tI?m\t-3.8467791897559507\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, outraged, Wal-Mart) -> (I?m, outraged, that Wal-Mart?s Supercenters) -> I?m (3253ms)\nWho founded Wal-Mart?\tCR2032\t-3.859826018148005\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (CR2032, are commonly found at, Wal-Mart) -> CR2032 (3006ms)\nWho founded Wal-Mart?\tan entrepreneur\t-3.860990951109931\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, be start by, $x) -> (this ? Wal-Mart, was started by, an entrepreneur) -> an entrepreneur (3006ms)\nWho founded Wal-Mart?\teight weeks\t-3.881392876104267\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (eight weeks, can be found at, Wal-Mart) -> eight weeks (3006ms)\nWho founded Wal-Mart?\tsuppose\t-3.9059616169703735\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (suppose, find, a Wal-Mart) -> suppose (3069ms)\nWho founded Wal-Mart?\tcoffees\t-3.9103180335508956\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (coffees, found at, Wal-Mart) -> coffees (3069ms)\nWho founded Wal-Mart?\tProcter & Gamble\t-3.9400453009051697\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Procter & Gamble, has found, Wal-Mart) -> Procter & Gamble (3069ms)\nWho founded Wal-Mart?\tGerman shoppers\t-4.011544681337451\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (German shoppers, found, Wal-Mart) -> German shoppers (3069ms)\nWho founded Wal-Mart?\tSandwich containers\t-4.027952234676757\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Sandwich containers, can be found at, Wal-Mart) -> Sandwich containers (3069ms)\nWho founded Wal-Mart?\tSeveral states\t-4.041542872465838\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Several states, have found, Wal-Mart workers) -> Several states (3163ms)\nWho founded Wal-Mart?\ta famous store brand\t-4.071155945634938\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a famous store brand, can be found in, all Wal-Mart stores) -> a famous store brand (3163ms)\nWho founded Wal-Mart?\tHearing officer\t-4.110574823115346\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Hearing officer, found, Wal-Mart Stores) -> Hearing officer (3163ms)\nWho founded Wal-Mart?\ta product\t-4.116910840651563\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a product, found at, Wal-Mart) -> a product (3163ms)\nWho founded Wal-Mart?\tcommonality\t-4.125242690366251\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (commonality, found in, Wal-Mart) -> commonality (3163ms)\nWho founded Wal-Mart?\ta hat\t-4.12532250364551\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a hat, find at, WalMart) -> a hat (3163ms)\nWho founded Wal-Mart?\tJanuary Lee County zoning staff\t-4.1301031585234025\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (January Lee County zoning staff, found, Wal-Mart) -> January Lee County zoning staff (3199ms)\nWho founded Wal-Mart?\tOregon\t-4.133461706661006\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Oregon, found, Wal-Mart guilty) -> Oregon (3199ms)\nWho founded Wal-Mart?\tthe USA\t-4.181585940905434\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the USA, found, a Wal-Mart) -> the USA (3199ms)\nWho founded Wal-Mart?\tthe Striking Z Fighters\t-4.197851364388596\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have found, Wal-Mart) -> (the Striking Z Fighters, have been found at, Wal-Mart) -> the Striking Z Fighters (3199ms)\nWho founded Wal-Mart?\ta flavoring oil & yes\t-4.216354974195843\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a flavoring oil & yes, can usually be found at, Wal-Mart) -> a flavoring oil & yes (3230ms)\nWho founded Wal-Mart?\tsolid footing online\t-4.219218771763425\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has struggled to find, solid footing online) -> solid footing online (3626ms)\nWho founded Wal-Mart?\twww.walmartstores.com\t-4.220840527030877\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, be found by, $x) -> ('s Wal-Mart, can be found by visiting, www.walmartstores.com) -> www.walmartstores.com (3230ms)\nWho founded Wal-Mart?\ta certain grand confection\t-4.240292891366476\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a certain grand confection, Was found at, Wal-Mart) -> a certain grand confection (3230ms)\nWho founded Wal-Mart?\tEventual his company\t-4.300353736345917\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, would build, Wal-Mart) -> (Eventual his company, would build, 40 Wal-Marts) -> Eventual his company (3253ms)\nWho founded Wal-Mart?\ttwo other units\t-4.302186729977661\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart investigators, have found, two other units) -> two other units (3626ms)\nWho founded Wal-Mart?\tthousands\t-4.314949202182037\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has been found to have, thousands) -> thousands (3626ms)\nWho founded Wal-Mart?\twww.WalMart.com\t-4.3392584650171155\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, be found by, $x) -> (Wal-Mart, can be found by visiting, www.WalMart.com) -> www.WalMart.com (3253ms)\nWho founded Wal-Mart?\tdisc brakes\t-4.363356564358956\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (disc brakes, can be found on, Target and Wal-Mart specials) -> disc brakes (4349ms)\nWho founded Wal-Mart?\tso few American made items\t-4.3777063737680555\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (so few American made items, can be found at, Wal-Mart) -> so few American made items (3307ms)\nWho founded Wal-Mart?\tthe HALO ? Sleep Sack\t-4.40033268535446\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the HALO ? Sleep Sack, can be found at, Wal-Mart) -> the HALO ? Sleep Sack (3307ms)\nWho founded Wal-Mart?\tviolations\t-4.429830341861594\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (violations, were found throughout, the Wal-Mart system) -> violations (3382ms)\nWho founded Wal-Mart?\ttravel kits and accessories\t-4.448708387514311\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (travel kits and accessories, can be found in, Wal-Mart) -> travel kits and accessories (3382ms)\nWho founded Wal-Mart?\tone such brand\t-4.464814567743973\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (one such brand, can be found in, Wal-Mart and Reliance) -> one such brand (3382ms)\nWho founded Wal-Mart?\tForce Unleashed figures\t-4.480794701900146\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have found, Wal-Mart) -> (Force Unleashed figures, have found their way to, Wal-Mart) -> Force Unleashed figures (3382ms)\nWho founded Wal-Mart?\ta man\t-4.48338269297618\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a man, was found behind, the WalMart) -> a man (3382ms)\nWho founded Wal-Mart?\tCombat? Ant Baits and Gels\t-4.488497302586607\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Combat? Ant Baits and Gels, can be found at, your local Wal-Mart) -> Combat? Ant Baits and Gels (3382ms)\nWho founded Wal-Mart?\tUdi?s Gluten Free Foods\t-4.490520857716799\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Udi?s Gluten Free Foods, can be found in, 150 Wal-Mart stores) -> Udi?s Gluten Free Foods (3439ms)\nWho founded Wal-Mart?\tthe Cushing crime scene\t-4.497594454330161\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the Cushing crime scene, was also found at, that Wal-Mart) -> the Cushing crime scene (3439ms)\nWho founded Wal-Mart?\tA good GPSr\t-4.501131252636842\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (A good GPSr, can be found at, a Super Wal-mart) -> A good GPSr (3439ms)\nWho founded Wal-Mart?\tBeautiful blank books\t-4.513117768566077\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Beautiful blank books, can be found at, Wal-Mart) -> Beautiful blank books (3439ms)\nWho founded Wal-Mart?\tSilk Fruit&Protein\t-4.515213825034017\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Silk Fruit&Protein, is easily found at, your local Wal-mart) -> Silk Fruit&Protein (3439ms)\nWho founded Wal-Mart?\tOxiClean Versatile Stain Remover\t-4.542688540511332\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (OxiClean Versatile Stain Remover, can be found at, Wal-Mart) -> OxiClean Versatile Stain Remover (3698ms)\nWho founded Wal-Mart?\tKelly\t-4.5428263534709\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Kelly, found, a Wal-Mart) -> Kelly (3698ms)\nWho founded Wal-Mart?\tCarolina Pad arts and crafts items\t-4.543508158785173\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Carolina Pad arts and crafts items, can be found at, Wal-Mart) -> Carolina Pad arts and crafts items (3720ms)\nWho founded Wal-Mart?\tUltimate Game Cards\t-4.543508158785173\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Ultimate Game Cards, currently can be found at, select Wal-Marts) -> Ultimate Game Cards (3720ms)\nWho founded Wal-Mart?\tmeth\t-4.656249527295795\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (meth, can be found at, WalMart) -> meth (3805ms)\nWho founded Wal-Mart?\tEquate\t-4.6749346647636045\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Equate, found in, Wal-Mart) -> Equate (3805ms)\nWho founded Wal-Mart?\tKantar\t-4.7042423211703674\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Kantar, found, Wal-Mart) -> Kantar (3995ms)\nWho founded Wal-Mart?\ta woman\t-4.743541884886213\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (a woman, was found in, a Wal-Mart retention pond) -> a woman (4256ms)\nWho founded Wal-Mart?\tBandanas\t-4.765251973380456\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Bandanas, can be found at, WalMart) -> Bandanas (4016ms)\nWho founded Wal-Mart?\tthe union\t-4.771539873054504\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the union, has found, Wal-Mart nearly) -> the union (4016ms)\nWho founded Wal-Mart?\tCimarron\t-4.774486194589015\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Cimarron, then found, the Wal-Mart) -> Cimarron (4016ms)\nWho founded Wal-Mart?\tFrankfort\t-4.777958424768441\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Frankfort, finally found, freggin Wal Mart) -> Frankfort (4016ms)\nWho founded Wal-Mart?\tR4-P17\t-4.781072873919886\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have found, Wal-Mart) -> (R4-P17, has been found at, a Louisville area Wal-Mart) -> R4-P17 (4114ms)\nWho founded Wal-Mart?\tElaine\t-4.786800394183995\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Elaine, found this item at, Wal-Mart) -> Elaine (4114ms)\nWho founded Wal-Mart?\tproducts\t-4.834446373000258\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (products, cannot be found in, Wal-mart or Target) -> products (4114ms)\nWho founded Wal-Mart?\tunion households\t-4.843129440934431\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (union households, would like to see, a Wal-Mart open) -> union households (4553ms)\nWho founded Wal-Mart?\t09:23 AM CST C & D Visionary products\t-4.859831033088341\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (09:23 AM CST C & D Visionary products, can be found at, Wal-Mart) -> 09:23 AM CST C & D Visionary products (4114ms)\nWho founded Wal-Mart?\t10\t-4.862091393200922\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has been found guilty in, 10) -> 10 (4114ms)\nWho founded Wal-Mart?\tthe agency\t-4.90151696048914\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the agency, has found, Wal-Mart) -> the agency (4256ms)\nWho founded Wal-Mart?\tmore than $ 200 million\t-4.936756251327346\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (more than $ 200 million, is found in, many Wal-Mart) -> more than $ 200 million (4256ms)\nWho founded Wal-Mart?\tPREMARIN\t-4.946386004205658\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (PREMARIN, will find in, KMart or WalMart) -> PREMARIN (4257ms)\nWho founded Wal-Mart?\tthe states\t-4.962526612699227\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the states, find, a Wal-Mart) -> the states (4281ms)\nWho founded Wal-Mart?\tgeneral merchandise\t-4.9633803198501205\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (general merchandise, found in, traditional Wal-Mart stores) -> general merchandise (4280ms)\nWho founded Wal-Mart?\tinspirational selections\t-4.990298479889789\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (inspirational selections, found in, Target or Wal-Mart) -> inspirational selections (4281ms)\nWho founded Wal-Mart?\tthe photo\t-5.020819084876473\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the photo, found this set at, a Wal-Mart) -> the photo (4350ms)\nWho founded Wal-Mart?\tthe type\t-5.022587457678666\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the type, found at, Wal-Mart) -> the type (4350ms)\nWho founded Wal-Mart?\treaders\t-5.027468520863498\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (readers, can be found at, Wal-Mart) -> readers (4384ms)\nWho founded Wal-Mart?\tthe product\t-5.0624409408782185\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the product, found at, Wal-Mart) -> the product (4384ms)\nWho founded Wal-Mart?\tWall Street\t-5.082909188952311\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (Wall Street, is starting to look like, Wal-Mart Street) -> Wall Street (4554ms)\nWho founded Wal-Mart?\tfolks\t-5.0875939339701945\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (folks, are still finding the shirts in, Wal-Mart stores) -> folks (4409ms)\nWho founded Wal-Mart?\ta car\t-5.100757776028891\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a car, was stolen from, the Stapleton Wal-Mart) -> a car (4408ms)\nWho founded Wal-Mart?\tSimilar items\t-5.114608623672751\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Similar items, can be found at, Wal-Mart) -> Similar items (4433ms)\nWho founded Wal-Mart?\tInexpensive ones\t-5.114608623672751\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Inexpensive ones, can be found at, Wal-Mart) -> Inexpensive ones (4433ms)\nWho founded Wal-Mart?\tJason products\t-5.123450593088307\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Jason products, are found in, Wal-Mart) -> Jason products (4433ms)\nWho founded Wal-Mart?\tsuccess\t-5.169065353293657\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has found, success) -> success (4553ms)\nWho founded Wal-Mart?\tthe produce packaging\t-5.173255639058903\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the produce packaging, found in, Wal-Mart stores) -> the produce packaging (4553ms)\nWho founded Wal-Mart?\tworkers\t-5.196475500643716\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has found an unlimited pool of, workers) -> workers (4580ms)\nWho founded Wal-Mart?\tTarg?t\t-5.196736733924011\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Targ?t, ever would be found in, Wal-Mart) -> Targ?t (4579ms)\nWho founded Wal-Mart?\tconfectionary\t-5.1991280598470055\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have leave to, Wal-Mart) -> (confectionary, has also left to join, Wal-Mart) -> confectionary (4579ms)\nWho founded Wal-Mart?\tfigures\t-5.203549097257078\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (figures, are being found at, Wal-Mart stores) -> figures (4579ms)\nWho founded Wal-Mart?\tthe greatest gender gaps\t-5.217038119655845\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the greatest gender gaps, found at, Wal-Mart stores) -> the greatest gender gaps (4579ms)\nWho founded Wal-Mart?\twork\t-5.220348849687093\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (work, can be found at, Wal-Mart) -> work (4612ms)\nWho founded Wal-Mart?\tthe inexpensive needles\t-5.224931334543047\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the inexpensive needles, found at, Wal-Mart) -> the inexpensive needles (4612ms)\nWho founded Wal-Mart?\titem\t-5.275104523557658\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (item, was still being found on, Wal-Mart shelves) -> item (4612ms)\nWho founded Wal-Mart?\tthe lower-priced models\t-5.288265914992973\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the lower-priced models, found at, Wal-Mart) -> the lower-priced models (4628ms)\nWho founded Wal-Mart?\ta travel pillow\t-5.368650806785304\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (a travel pillow, can be found at, any Target or WalMart) -> a travel pillow (4698ms)\nWho founded Wal-Mart?\tdon?t\t-5.3748324075750125\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (don?t, steal from, Wal-Mart) -> don?t (4785ms)\nWho founded Wal-Mart?\tan hour\t-5.402250311645333\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (an hour, can now only find work as, a Wal-Mart greeter) -> an hour (4785ms)\nWho founded Wal-Mart?\tthe environment\t-5.402461090865335\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the environment, can be found at, www.VermontWalMartWatch .org) -> the environment (4785ms)\nWho founded Wal-Mart?\ta television\t-5.440270853915435\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a television, was stolen from, a Pahrump Wal-Mart) -> a television (4857ms)\nWho founded Wal-Mart?\tYou?ll\t-5.450816628005928\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from finding, wal-mart) -> (You?ll, find everyone from, Wal-Mart) -> You?ll (4857ms)\nWho founded Wal-Mart?\tpharmacists\t-5.474254063257604\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, think to, wal-mart) -> (pharmacists, seem to think, Wal-Mart) -> pharmacists (4857ms)\nWho founded Wal-Mart?\ta Nazi symbol\t-5.4871333128987985\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (a Nazi symbol, found in, a Wal-Mart store) -> a Nazi symbol (4857ms)\nWho founded Wal-Mart?\tfuture financial success\t-5.496121952551391\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (future financial success, is to be \"more like, Wal-Mart) -> future financial success (4933ms)\nWho founded Wal-Mart?\ta laptop computer\t-5.497679139691586\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a laptop computer, was reported stolen from, Wal-Mart) -> a laptop computer (4934ms)\nWho founded Wal-Mart?\tThe Federal Government\t-5.497743707818842\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, learn a lot from, wal-mart) -> (The Federal Government, has a lot to learn from, Wal-Mart) -> The Federal Government (4933ms)\nWho founded Wal-Mart?\tStar Wars items\t-5.509238289139983\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (Star Wars items, recently found in, the Wal-Mart data base) -> Star Wars items (4934ms)\nWho founded Wal-Mart?\thigh cadmium content\t-5.51285713685415\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (high cadmium content, can be found at, Wal-Mart and Claire?s) -> high cadmium content (4934ms)\nWho founded Wal-Mart?\ta TV\t-5.51631183305105\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a TV, had been stolen from, Wal-Mart) -> a TV (4933ms)\nWho founded Wal-Mart?\tWalMart CCYC\t-5.523385429664412\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (WalMart CCYC, would like to thank, WalMart) -> WalMart CCYC (4994ms)\nWho founded Wal-Mart?\treal-time\t-5.53065295923804\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (real-time, are starting to look like, our Wal-Mart shopping) -> real-time (4995ms)\nWho founded Wal-Mart?\tLabor\t-5.579575472487237\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, glove, Wal-Mart) -> (Labor, is working hand-in-glove with, Wal-Mart) -> Labor (4995ms)\nWho founded Wal-Mart?\tdresses\t-5.592219153903713\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (dresses, were stolen from, a Wal-Mart) -> dresses (4994ms)\nWho founded Wal-Mart?\tno policeman\t-5.609088049191719\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (no policeman, should be stealing from, Wal-Mart) -> no policeman (5013ms)\nWho founded Wal-Mart?\ta fundraising device\t-5.624942966971214\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (a fundraising device, found in, Wal-Marts and McDonalds) -> a fundraising device (5013ms)\nWho founded Wal-Mart?\ta friend\t-5.645340165957332\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a friend, steal DVDs from, Wal-Mart) -> a friend (5031ms)\nWho founded Wal-Mart?\tFebruary 2000 Cifra\t-5.682684057745638\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, change its name, Wal-Mart) -> (February 2000 Cifra, changed its name to, Wal-Mart) -> February 2000 Cifra (5031ms)\nWho founded Wal-Mart?\tCan?t\t-5.694035618572439\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (Can?t, be stealing from, Wal-Mart) -> Can?t (5049ms)\nWho founded Wal-Mart?\ta mess kit\t-5.6949198049735354\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, easily find, wal-mart) -> (a mess kit, can easily be found at, a Target or Wal-Mart) -> a mess kit (5049ms)\nWho founded Wal-Mart?\ta little girl\t-5.724982511526884\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a little girl, was stolen from, the Wal-Mart) -> a little girl (5104ms)\nWho founded Wal-Mart?\tColeman\t-5.795064565248435\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Coleman, can also be found at, Wal-Mart) -> Coleman (5201ms)\nWho founded Wal-Mart?\tClinton\t-5.8011168532934025\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Clinton, is finding her past ties to, Wal-Mart too) -> Clinton (5201ms)\nWho founded Wal-Mart?\tMama\t-5.8576041934876235\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (Mama, liked to go to, the Wal-Mart) -> Mama (5218ms)\nWho founded Wal-Mart?\tUtapau\t-5.858097772588716\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Utapau, has been found at, Wal-Mart) -> Utapau (5218ms)\nWho founded Wal-Mart?\tthe author\t-5.873327377195704\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, outraged, Wal-Mart) -> (the author, is outraged by, Wal-Mart) -> the author (5218ms)\nWho founded Wal-Mart?\tThe kind\t-5.959324692627632\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (The kind, can find at, Wal-Mart) -> The kind (5235ms)\nWho founded Wal-Mart?\tthe girl\t-5.970981345262116\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, have yet to find, the girl) -> the girl (5235ms)\nWho founded Wal-Mart?\tthe lowest price\t-6.009259178040651\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the lowest price, can usually be found at, Wal-Mart) -> the lowest price (5253ms)\nWho founded Wal-Mart?\tThe clothes\t-6.097219622161328\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The clothes, can be found from, WalMart) -> The clothes (5271ms)\nWho founded Wal-Mart?\tthe chemical\t-6.125715968141224\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the chemical, have been found at, Target , Wal-Mart and Babies) -> the chemical (5271ms)\nWho founded Wal-Mart?\tthe figures\t-6.128368580046809\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the figures, are being found at, both Target and Wal-Mart stores) -> the figures (5291ms)\nWho founded Wal-Mart?\tthe bag\t-6.158293842498674\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the bag, could easily be found at, WalMart) -> the bag (5291ms)\nWho founded Wal-Mart?\t2:00\t-6.172594078848917\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, arrive home from, wal-mart) -> (2:00, finally arrive home from, Wal-mart) -> 2:00 (5290ms)\nWho founded Wal-Mart?\titems\t-6.183236583632384\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (items, were stolen from, the Carthage Wal-Mart) -> items (5290ms)\nWho founded Wal-Mart?\tthe products\t-6.1884939931535055\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the products, can be found at, Wal-mart) -> the products (5389ms)\nWho founded Wal-Mart?\tThe new Star Wars sticker books\t-6.218419308307665\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The new Star Wars sticker books, have been found at, Wal-Mart) -> The new Star Wars sticker books (5389ms)\nWho founded Wal-Mart?\tNatural brushes\t-6.2464955279757035\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (Natural brushes, can be found at, Target , Wal-Mart or K-Mart) -> Natural brushes (5389ms)\nWho founded Wal-Mart?\tThe spudtrooper\t-6.266101438267162\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The spudtrooper, was found today at, Wal-Mart) -> The spudtrooper (5407ms)\nWho founded Wal-Mart?\tThe following list\t-6.296228712947768\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The following list, was found in, Wal-Marts computers) -> The following list (5425ms)\nWho founded Wal-Mart?\tthe international union\t-6.3147968908822705\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have found, Wal-Mart) -> (the international union, has found more success with, Wal-Mart) -> the international union (5425ms)\nWho founded Wal-Mart?\tThe real challenge\t-6.321745218416659\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The real challenge, is n?t finding, the Wal-Marts) -> The real challenge (5425ms)\nWho founded Wal-Mart?\tThe spray paint\t-6.340438612727841\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The spray paint, can also be found at, Wal-Mart) -> The spray paint (5447ms)\nWho founded Wal-Mart?\tthe above photo\t-6.342206985530034\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the above photo, were found these at, the Wal-Mart) -> the above photo (5448ms)\nWho founded Wal-Mart?\tthe stuff\t-6.3510176283312205\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the stuff, find at, WalMart) -> the stuff (5448ms)\nWho founded Wal-Mart?\tThe parking lot\t-6.351540942255978\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, still own, Wal-Mart) -> (The parking lot, is still private land owned by, Wal-Mart) -> The parking lot (5448ms)\nWho founded Wal-Mart?\tThe white prison truck\t-6.357730352468243\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The white prison truck, was found near, a Wal-Mart) -> The white prison truck (5448ms)\nWho founded Wal-Mart?\tthe most venerated managers\t-6.367848707375604\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be founder of, Wal-Mart) -> (the most venerated managers, is the founder of, Wal-Mart) -> the most venerated managers (5465ms)\nWho founded Wal-Mart?\tThe one above\t-6.370501319281189\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The one above, was recently found at, a Wal-Mart) -> The one above (5465ms)\nWho founded Wal-Mart?\tThe white pickup\t-6.370501319281189\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The white pickup, was found later at, a Wal-Mart store) -> The white pickup (5465ms)\nWho founded Wal-Mart?\tThe lists\t-6.376690729493454\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The lists, below can also be found at, Wal-mart and Target) -> The lists (5465ms)\nWho founded Wal-Mart?\tthe bargains\t-6.397121117290165\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the bargains, find at, Wal-Mart) -> the bargains (5625ms)\nWho founded Wal-Mart?\thundreds of thousands of dresses\t-6.418536642688601\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (hundreds of thousands of dresses, were stolen from, a Wal-Mart) -> hundreds of thousands of dresses (5626ms)\nWho founded Wal-Mart?\tStarbucks\t-6.419703806412956\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (Starbucks, is like going to, WalMart) -> Starbucks (5626ms)\nWho founded Wal-Mart?\tPolice\t-6.464797892594126\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, also find, wal-mart) -> (Police, also found, a Wal-Mart receipt) -> Police (5663ms)\nWho founded Wal-Mart?\tthe the one\t-6.555769638267066\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the the one, found at, Wal-Mart) -> the the one (5680ms)\nWho founded Wal-Mart?\tyou guys\t-6.584056200001372\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (you guys, like to, shop at WalMart) -> you guys (5741ms)\nWho founded Wal-Mart?\tthe couple\t-7.235505758327843\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (the couple, was trying to steal from, Wal-Mart) -> the couple (5855ms)\nWho founded Wal-Mart?\tthe inventory\t-7.246935771521727\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (the inventory, is starting to look like, Wal-Mart?s shelves) -> the inventory (5855ms)\nWho founded Wal-Mart?\tthe size\t-7.269924881461712\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (the size, can be found at, Pep Boys or WalMart) -> the size (5925ms)\nWho founded Wal-Mart?\tthe staples\t-7.287673441122376\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (the staples, found in, all Wal-mart sites) -> the staples (5925ms)\nWho founded Wal-Mart?\tthe softest cotton sheet i\t-7.297262152837545\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, could find, wal-mart) -> (the softest cotton sheet i, could find at, wal-mart) -> the softest cotton sheet i (5925ms)\nWho founded Wal-Mart?\tthe library\t-7.35834468102186\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (the library, has been like going to, Wal-Mart) -> the library (5925ms)\nWho founded Wal-Mart?\tthe silicone top\t-7.481175295868905\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, also find, wal-mart) -> (the silicone top, also found at, Wal-Mart and Kmart) -> the silicone top (5991ms)\nWho founded Wal-Mart?\tthe teal colored bag ?\t-7.498859287402311\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (the teal colored bag ?, can be found in, Wegman?s and Wal-Mart) -> the teal colored bag ? (5991ms)\nWho founded Wal-Mart?\tthe jury\t-8.028621895011286\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (the jury, found in, favor of Wal-Mart) -> the jury (6105ms)\nWho founded Wal-Mart?\tAlvin\t-8.413536795334398\tWho founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (Alvin, with stealing condoms from, a Wal-Mart) -> Alvin (6105ms)\nWho founded Wal-Mart?\tgood answer\t-11.242772571113033\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (WalMart isle 2, Instance Of, good answer) -> good answer (6991ms)\nWho founded Wal-Mart?\tnational chain\t-11.248643525051843\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (2 Wal-Mart's, Instance Of, national chain) -> national chain (6991ms)\nWho founded Wal-Mart?\tLet?s\t-11.595018755292614\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who be credit for wal-mart ? -> $x: ($x, be credit for, wal-mart) -> $x: ($x, credit for, wal-mart) -> (Let?s, give some credit for, Wal-mart) -> Let?s (6178ms)\nWho founded Wal-Mart?\tAndrei Hagiu\t-11.904997131484599\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Andrei Hagiu, identifies, Wal-Mart) -> Andrei Hagiu (6991ms)\nWho founded Wal-Mart?\tpopular product and model\t-11.913720971808726\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (wal mart black decker drill driver 2vxp, Instance Of, popular product and model) -> popular product and model (6991ms)\nWho founded Wal-Mart?\tgood gun\t-11.937429120052048\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (RS2 from wal-mart, Instance Of, good gun) -> good gun (6991ms)\nWho founded Wal-Mart?\tthe Vines\t-12.310888776334526\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (the Vines, identified, a Wal-Mart store) -> the Vines (6991ms)\nWho founded Wal-Mart?\texisting customers\t-12.338295391314055\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (existing customers, identify, new onesWal-Mart) -> existing customers (6991ms)\nWho founded Wal-Mart?\tname\t-12.632652846928448\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (2 Wal Marts Supercenters, Instance Of, name) -> name (6991ms)\nWho founded Wal-Mart?\tLowes\t-13.333254878844354\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (WalMart less than 2 miles away and, Instance Of, Lowes) -> Lowes (7196ms)\nWho founded Wal-Mart?\tThe IEP team\t-13.333817731519222\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (The IEP team, identified, Wal-Mart) -> The IEP team (7196ms)\nWho founded Wal-Mart?\tDems\t-13.580626151262356\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Dems, have identified, Wal-Mart) -> Dems (7196ms)\nWho founded Wal-Mart?\tDyster\t-13.604996331804024\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who be credit for wal-mart ? -> $x: ($x, be credit for, wal-mart) -> $x: ($x, credit for, wal-mart) -> (Dyster, takes credit for, the new Wal-Mart) -> Dyster (6648ms)\nWho founded Wal-Mart?\tRecent studies\t-13.949947714460714\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Recent studies, have identified, Wal-Mart) -> Recent studies (7196ms)\nWho founded Wal-Mart?\tHerro\t-14.561626835012595\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Herro, has identified, Wal-Mart) -> Herro (7196ms)\nWho founded Wal-Mart?\tthe magazine\t-15.014598915435204\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (the magazine, identifies, Wal-Mart) -> the magazine (7196ms)\nWho founded Wal-Mart?\tThe suit\t-15.344555535499609\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who originate wal-mart ? -> $x: ($x, originate, wal-mart) -> (The suit, originated with, Wal-Mart worker Betty Dukes) -> The suit (8103ms)\nWho founded Wal-Mart?\tThe bribery allegations\t-15.353332936787908\tWho founded Wal-Mart? -> who found [ wal-mart ] ? -> who originate wal-mart ? -> $x: ($x, originate, wal-mart) -> (The bribery allegations, originated with, a Wal-Mart lawyer) -> The bribery allegations (8103ms)\nWhat is Susan B. Anthony's birthday?\tcause\t-5.721449213440808\tWhat is Susan B. Anthony's birthday? -> $x: (Susan B. Anthony's birthday, instance of, $x) -> (Susan B. Anthony's birthday, Instance Of, cause) -> cause (4400ms)\nWhat is Susan B. Anthony's birthday?\tWomen's rights activist\t-8.910589526080209\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony s profession ? -> $x: (susan b anthony, profession, $x) -> (Susan B. Anthony, Profession, Women's rights activist) -> Women's rights activist (6340ms)\nWhat is Susan B. Anthony's birthday?\t1820-02-15\t-9.21646922509012\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be the birth date of susan b anthony ? -> $x: (susan b anthony, birth date, $x) -> (Susan B. Anthony, Date of birth, 1820-02-15) -> 1820-02-15 (6052ms)\nWhat is Susan B. Anthony's birthday?\tBaldwin, Hoar & Sherman family\t-9.817451567086648\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what kind of family do susan b anthony have ? -> what family do susan b anthony have ? -> $x: (susan b anthony, family, $x) -> (Susan B. Anthony, Family, Baldwin, Hoar & Sherman family) -> Baldwin, Hoar & Sherman family (6920ms)\nWhat is Susan B. Anthony's birthday?\tAdams\t-9.933951196746795\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> when be susan b anthony s birth ? -> $x: (susan b anthony, birth, $x) -> (Susan B. Anthony, Place of birth, Adams) -> Adams (6660ms)\nWhat is Susan B. Anthony's birthday?\tRochester\t-9.938175918996073\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> when be susan b anthony s death ? -> $x: (susan b anthony, death, $x) -> (Susan B. Anthony, Place of death, Rochester) -> Rochester (6660ms)\nWhat is Susan B. Anthony's birthday?\t1906-03-13\t-9.942553883242699\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> when be susan b anthony s death ? -> $x: (susan b anthony, death, $x) -> (Susan B. Anthony, Date of death, 1906-03-13) -> 1906-03-13 (6660ms)\nWhat is Susan B. Anthony's birthday?\tThe Selected Papers of Elizabeth Cady Stanton and Susan B. Anthony\t-10.387416053564824\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony add ? -> $x: (susan b anthony, add, $x) -> $x: (susan b anthony, to contribute, $x) -> (Susan B. Anthony, Series Written (or Contributed To), The Selected Papers of Elizabeth Cady Stanton and Susan B. Anthony) -> The Selected Papers of Elizabeth Cady Stanton and Susan B. Anthony (7478ms)\nWhat is Susan B. Anthony's birthday?\tLast week\t-10.46310225968897\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be the birth date of susan b anthony ? -> $x: ($x, be the birth date of, susan b anthony) -> (Last week, was the 185th birth date of, Susan B. Anthony) -> Last week (6272ms)\nWhat is Susan B. Anthony's birthday?\tthe business committee\t-11.482746689418265\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony add ? -> $x: (susan b anthony, add, $x) -> (Susan B. Anthony, be added to, the business committee) -> the business committee (5880ms)\nWhat is Susan B. Anthony's birthday?\tFeb. 15\t-12.197856805642404\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> when be susan b anthony b day ? -> $x: (susan b anthony b day, be on, $x) -> (Susan B. Anthony Day, will be held on, Feb. 15) -> Feb. 15 (6920ms)\nWhat is Susan B. Anthony's birthday?\tVol\t-12.768579482484453\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony add ? -> $x: (susan b anthony, add, $x) -> $x: (susan b anthony, to contribute, $x) -> (Susan B. Anthony, contributed to, Vol) -> Vol (7478ms)\nWhat is Susan B. Anthony's birthday?\tnursing\t-13.417004211090914\tWhat is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony s profession ? -> $x: (susan b anthony, profession, $x) -> (Susan B. Anthony and nursing, promote the profession of, nursing) -> nursing (6339ms)\nWhat day did Pearl Harbor occur?\tDecember 7, 1941\t-1.9583085770656385\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> (December 7, 1941, Instance Of, day of infamy) (Pearl Harbor, occurred in, December 1941) -> December 7, 1941 (2798ms)\nWhat day did Pearl Harbor occur?\tDecember\t-2.0192700511453765\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> (December, Instance Of, 31 day time frame) (Pearl Harbor, occurred in, December) -> December (2798ms)\nWhat day did Pearl Harbor occur?\tDecember 7,1941\t-2.188094886755573\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> (December 7,1941, Instance Of, day which would live in infamy) (Pearl Harbor, occurred in, December 1941) -> December 7,1941 (2798ms)\nWhat day did Pearl Harbor occur?\tSundays\t-3.926076015090198\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, be the sort of, day) (Pearl Harbor, occur, $x) -> (Sundays, are the right sort of, day) (Pearl Harbor, occurred on, a Sunday) -> Sundays (10054ms)\nWhat day did Pearl Harbor occur?\tSunday\t-3.9620679114311597\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, be the sort of, day) (Pearl Harbor, occur, $x) -> (Sunday, was the sort of, day) (Pearl Harbor, occurred on, a Sunday) -> Sunday (10054ms)\nWhat day did Pearl Harbor occur?\tpart\t-4.158655115082682\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, happen, $x) -> (part, Instance Of, day cost) (Pearl Harbor, happened as, part) -> part (14429ms)\nWhat day did Pearl Harbor occur?\tDecember 8\t-4.4876302247085285\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, take place, $x) -> (December 8, Instance Of, worldwide day of light) (Pearl Harbor, took place in, December) -> December 8 (12767ms)\nWhat day did Pearl Harbor occur?\t?Today\t-4.544047960949598\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, be the kind of, day) (Pearl Harbor, occur, $x) -> (?Today, is the kind of, day) (Pearl Harbor, has occured, today) -> ?Today (4589ms)\nWhat day did Pearl Harbor occur?\tDecember 26 th\t-4.546021046282645\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, happen, $x) -> (December 26 th, Instance Of, tourist day) (Pearl Harbor, happened on, December 7th) -> December 26 th (14529ms)\nWhat day did Pearl Harbor occur?\tJapan\t-4.574750581817721\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, be serious, $x) -> (Japan, Instance Of, day country) (Pearl Harbor, was a serious achievement by, Japan) -> Japan (11561ms)\nWhat day did Pearl Harbor occur?\tDecember 8 th\t-4.613536163609085\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, be accompany, $x) -> (December 8 th, Instance Of, Hol y Day of Obligation) (Pearl Harbor, is accompanied, December 8th) -> December 8 th (11949ms)\nWhat day did Pearl Harbor occur?\tTODAY..\t-4.682588914356465\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, have occur, $x) -> (TODAY.., Instance Of, interesting day thusfar) (Pearl Harbor, has occured, today) -> TODAY.. (15177ms)\nWhat day did Pearl Harbor occur?\tCongress\t-4.991716181465715\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, be utter, $x) -> (Congress, Instance Of, one day event) (a ?digital Pearl Harbor?, was first uttered before, Congress) -> Congress (13958ms)\nWhat day did Pearl Harbor occur?\tSpain\t-5.264267536175075\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (Spain, have nothing to do with, Pearl Harbor) -> Spain (16412ms)\nWhat day did Pearl Harbor occur?\tRussia\t-5.266035961679563\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (Russia, had nothing to do with, Pearl Harbor) -> Russia (16411ms)\nWhat day did Pearl Harbor occur?\tItaly\t-5.284211887821064\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (Italy, had nothing to do with, Pearl Harbor) -> Italy (16411ms)\nWhat day did Pearl Harbor occur?\tILM\t-5.48358898619358\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (ILM, had done with, Pearl Harbor) -> ILM (16411ms)\nWhat day did Pearl Harbor occur?\ta world\t-5.484985426701182\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, a world) -> a world (16006ms)\nWhat day did Pearl Harbor occur?\t1941\t-5.522557092244409\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, 1941) -> 1941 (16006ms)\nWhat day did Pearl Harbor occur?\torder\t-5.526068743196779\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, happen, $x) -> (order, Instance Of, day operation) (Pearl Harbor, to happen in, order) -> order (14529ms)\nWhat day did Pearl Harbor occur?\tany\t-5.544877697412866\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, might have occurred in, any) -> any (16006ms)\nWhat day did Pearl Harbor occur?\tDecember 1941\t-5.695424477979209\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, December 1941) -> December 1941 (16006ms)\nWhat day did Pearl Harbor occur?\tFascist Italy\t-5.831218225463708\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (Fascist Italy, had anything to do with, Pearl Harbor) -> Fascist Italy (16411ms)\nWhat day did Pearl Harbor occur?\tnone\t-5.876997690351929\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (none, had anything to do with, Pearl Harbor) -> none (16435ms)\nWhat day did Pearl Harbor occur?\tthe Japanese\t-5.959663192545747\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (the Japanese, could have done better in, the Pearl Harbor attack) -> the Japanese (16435ms)\nWhat day did Pearl Harbor occur?\tthe Moroccans\t-5.9877212738473045\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (the Moroccans, had nothing to do with, Pearl Harbor) -> the Moroccans (16435ms)\nWhat day did Pearl Harbor occur?\tNew York City\t-5.992277971283045\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (Pearl Harbor, happen in, $x) -> (Pearl Harbor, happened in, New York City) -> New York City (16634ms)\nWhat day did Pearl Harbor occur?\tDecember 7 , 1941\t-6.053869579908086\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> (Pearl Harbor, occurred on, December 7 , 1941) -> December 7 , 1941 (16072ms)\nWhat day did Pearl Harbor occur?\tOrder\t-6.191613624489529\tWhat day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, to happen, $x) -> (Order, Instance Of, modern-day society) (Pearl Harbor, to happen in, order) -> Order (12440ms)\nWhat day did Pearl Harbor occur?\ta Sunday\t-6.636532687167475\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> (Pearl Harbor, occurred on, a Sunday) -> a Sunday (16072ms)\nWhat day did Pearl Harbor occur?\t11\t-6.6929710058820095\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, can experience, Pearl Harbor) -> (11, can experience, this popular Pearl Harbor tour) -> 11 (16435ms)\nWhat day did Pearl Harbor occur?\tU.S.\t-7.094307993099916\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, have survive, Pearl Harbor) -> (U.S., has survived, ?economic Pearl Harbor?) -> U.S. (16667ms)\nWhat day did Pearl Harbor occur?\tdetailed narrations and photos\t-7.915703345778449\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> $x: (pearl harbor, unfold in, $x) -> (Pearl Harbor, will unfold in, detailed narrations and photos) -> detailed narrations and photos (16850ms)\nWhat day did Pearl Harbor occur?\tThe reason\t-7.940205968942922\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (The reason, had nothing to do with, Pearl Harbor) -> The reason (16435ms)\nWhat day did Pearl Harbor occur?\tDecember of 1941\t-8.271912079655564\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (Pearl Harbor, happen in, $x) -> (Pearl Harbor, happened in, December of 1941) -> December of 1941 (16667ms)\nWhat day did Pearl Harbor occur?\tforty minutes\t-8.555751819635715\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, around, $x) -> (Pearl Harbor, lasts around, forty minutes) -> forty minutes (17865ms)\nWhat day did Pearl Harbor occur?\tthe naval battleship USS Arizona\t-8.56801910023704\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> (Pearl Harbor, occurred on, the naval battleship USS Arizona) -> the naval battleship USS Arizona (16103ms)\nWhat day did Pearl Harbor occur?\ttwo continents\t-8.616809233847006\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (Pearl Harbor, took place on, two continents) -> two continents (17865ms)\nWhat day did Pearl Harbor occur?\tsurprise\t-8.70518127140595\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, around, $x) -> (Pearl Harbor, was designed around, surprise) -> surprise (17865ms)\nWhat day did Pearl Harbor occur?\tthe financial world\t-8.802740350542491\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (Pearl Harbor, happen in, $x) -> (an economic Pearl Harbor, was happening in, the financial world) -> the financial world (16667ms)\nWhat day did Pearl Harbor occur?\tthe Schofield Barracks\t-8.84016566750712\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, around, $x) -> (Pearl Harbor, turned around over, the Schofield Barracks) -> the Schofield Barracks (17866ms)\nWhat day did Pearl Harbor occur?\tDecember 7th\t-8.864417746614922\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, happen on, $x) -> (Pearl Harbor, happened on, December 7th) -> December 7th (17906ms)\nWhat day did Pearl Harbor occur?\tDecember 7 , 2006\t-8.944581900718271\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, happen on, $x) -> (Pearl Harbor, happened on, December 7 , 2006) -> December 7 , 2006 (17906ms)\nWhat day did Pearl Harbor occur?\tDecember 7 , 1942\t-9.029685335779064\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (Pearl Harbor, took place on, December 7 , 1942) -> December 7 , 1942 (17866ms)\nWhat day did Pearl Harbor occur?\t9-11-01\t-9.033885886679514\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, happen on, $x) -> (\" Pearl Harbor, has already happened on, 9-11-01) -> 9-11-01 (17906ms)\nWhat day did Pearl Harbor occur?\tThe point\t-9.071545865853395\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, to avoid, Pearl Harbor) -> (The point, is to avoid, another Pearl Harbor-like event) -> The point (16103ms)\nWhat day did Pearl Harbor occur?\t9/11\t-9.103735854784732\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (a New Pearl Harbor, took place on, 9/11) -> 9/11 (17865ms)\nWhat day did Pearl Harbor occur?\ta Pacific island\t-9.232427940372114\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (the Pearl Harbor attack, took place on, a Pacific island) -> a Pacific island (17906ms)\nWhat day did Pearl Harbor occur?\tthe final episode\t-9.271098492811925\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (A global Pearl Harbor event, to occur in, the final episode) -> the final episode (16103ms)\nWhat day did Pearl Harbor occur?\tDecember, 1941\t-9.39336171375876\tWhat day did Pearl Harbor occur? -> what day do [ pearl harbor occur ] ? -> how many month do pearl harbor occur ? -> $x: ($x, instance of, month) (pearl harbor, occur, $x) -> (December, 1941, Instance Of, month of change) (Pearl Harbor, occurred in, December 1941) -> December, 1941 (17658ms)\nWhat day did Pearl Harbor occur?\twhat day\t-9.549795719689914\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (The Pearl Harbor attack, took place on, what day) -> what day (17906ms)\nWhat day did Pearl Harbor occur?\tthe island\t-9.645472618289983\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, around, $x) -> (Pearl Harbor, then continue around, the island) -> the island (17906ms)\nWhat day did Pearl Harbor occur?\tthe watch\t-10.574334395932336\tWhat day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, happen on, $x) -> (his Pearl Harbor, had happened on, the watch) -> the watch (17932ms)\nHow large is it?\tbig order\t-8.49050681219752\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, big order) -> big order (8563ms)\nHow large is it?\tevent\t-9.000637917613274\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, event) -> event (8564ms)\nHow large is it?\tlarge social gathering\t-9.03245560095229\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large social gathering) -> large social gathering (8563ms)\nHow large is it?\tlarge event\t-9.042177494289598\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large event) -> large event (8563ms)\nHow large is it?\tlarge private event\t-9.168441786210503\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large private event) -> large private event (8563ms)\nHow large is it?\tno-go\t-9.171151348926175\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large wedding party, Instance Of, no-go) -> no-go (8564ms)\nHow large is it?\toutdoor event\t-9.18106262215241\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, outdoor event) -> outdoor event (8636ms)\nHow large is it?\tspecial-event occasion\t-9.197912868381396\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, special-event occasion) -> special-event occasion (8636ms)\nHow large is it?\tnon-business event\t-9.201489186886096\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, non-business event) -> non-business event (8636ms)\nHow large is it?\tlarge group event\t-9.20733795780272\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large group event) -> large group event (8636ms)\nHow large is it?\tlarge scale event\t-9.221384181998234\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large scale event) -> large scale event (8636ms)\nHow large is it?\tentertainment and business facility\t-9.231365026986303\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party room, Instance Of, entertainment and business facility) -> entertainment and business facility (8636ms)\nHow large is it?\tunfamiliar person\t-9.232092050343699\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, unfamiliar person) -> unfamiliar person (8661ms)\nHow large is it?\tcommercial activity\t-9.239320432539156\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, commercial activity) -> commercial activity (8659ms)\nHow large is it?\tMoreno Valley area\t-9.24556026141994\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, Moreno Valley area) -> Moreno Valley area (8659ms)\nHow large is it?\tlarge social event\t-9.254106269108187\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large holiday party, Instance Of, large social event) -> large social event (8659ms)\nHow large is it?\tprivate event\t-9.256181217188852\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, private event) -> private event (8659ms)\nHow large is it?\tsocial and formal function\t-9.260214367671695\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, social and formal function) -> social and formal function (8660ms)\nHow large is it?\tfunction\t-9.262777694428335\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, function) -> function (8678ms)\nHow large is it?\trestaurant wide private event\t-9.272137395542611\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large cocktail party, Instance Of, restaurant wide private event) -> restaurant wide private event (8678ms)\nHow large is it?\thelped coordinate event\t-9.272978703595738\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, helped coordinate event) -> helped coordinate event (8678ms)\nHow large is it?\tcostly event\t-9.274359970046273\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, costly event) -> costly event (8679ms)\nHow large is it?\tlarge party\t-9.275397974283292\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (traditionally large party, Instance Of, large party) -> large party (8678ms)\nHow large is it?\toccasional family gathering\t-9.284544492087837\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (no large party, Instance Of, occasional family gathering) -> occasional family gathering (8696ms)\nHow large is it?\troutine police activity\t-9.284544492087837\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large parties disturbing, Instance Of, routine police activity) -> routine police activity (8696ms)\nHow large is it?\tming dynasty huizhou merchant\t-9.284544492087837\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, ming dynasty huizhou merchant) -> ming dynasty huizhou merchant (8697ms)\nHow large is it?\tevent in the ballroom\t-9.284544492087837\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, event in the ballroom) -> event in the ballroom (8696ms)\nHow large is it?\tship's heavy work\t-9.284544492087837\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large liberty party, Instance Of, ship's heavy work) -> ship's heavy work (8678ms)\nHow large is it?\tsocial celebration\t-9.285562496450934\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, social celebration) -> social celebration (8696ms)\nHow large is it?\tsocial event\t-9.286137645320924\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, social event) -> social event (8696ms)\nHow large is it?\tindoor or outdoor event\t-9.289685449842587\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, indoor or outdoor event) -> indoor or outdoor event (8715ms)\nHow large is it?\twonderful amenity\t-9.293670605617834\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party room, Instance Of, wonderful amenity) -> wonderful amenity (8715ms)\nHow large is it?\twork special event\t-9.303526490045815\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, work special event) -> work special event (8715ms)\nHow large is it?\tdance party\t-9.310280617378112\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large scale dance party, Instance Of, dance party) -> dance party (8715ms)\nHow large is it?\topposition party\t-9.310878253710966\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large opposition party, Instance Of, opposition party) -> opposition party (8715ms)\nHow large is it?\tformal party\t-9.312389728279355\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large dinner party, Instance Of, formal party) -> formal party (8736ms)\nHow large is it?\tonetime event\t-9.313506316475642\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, onetime event) -> onetime event (8736ms)\nHow large is it?\tuncommon event\t-9.314850357638603\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, uncommon event) -> uncommon event (8736ms)\nHow large is it?\tcomplex event\t-9.316848533051658\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, complex event) -> complex event (8736ms)\nHow large is it?\tphysical space\t-9.317135227922062\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, physical space) -> physical space (8736ms)\nHow large is it?\tcustomer need\t-9.317941652619838\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, customer need) -> customer need (8805ms)\nHow large is it?\tseparate event\t-9.319173085061113\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, separate event) -> separate event (8806ms)\nHow large is it?\tbusy event\t-9.321353450030973\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, busy event) -> busy event (8805ms)\nHow large is it?\tplanning event\t-9.322245027773949\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, planning event) -> planning event (8806ms)\nHow large is it?\tsocial custom\t-9.323857124325944\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large dinner party, Instance Of, social custom) -> social custom (8806ms)\nHow large is it?\tformal gathering\t-9.327054848969532\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, formal gathering) -> formal gathering (8806ms)\nHow large is it?\tcommon facility\t-9.327484314583359\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party area, Instance Of, common facility) -> common facility (8861ms)\nHow large is it?\tupcoming event\t-9.33186054376145\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, upcoming event) -> upcoming event (8861ms)\nHow large is it?\tprivate function\t-9.337902761062239\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, private function) -> private function (8861ms)\nHow large is it?\tdecline of case plan\t-9.344449793153553\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (swimsuit large breast party, Instance Of, decline of case plan) -> decline of case plan (8861ms)\nHow large is it?\tpublic event\t-9.345591924276814\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, public event) -> public event (8877ms)\nHow large is it?\tlocal event\t-9.346323309178796\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, local event) -> local event (8878ms)\nHow large is it?\ttasty main dish\t-9.348520856347571\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (Large party casserole, Instance Of, tasty main dish) -> tasty main dish (8877ms)\nHow large is it?\tgood place\t-9.351972111149541\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, good place) -> good place (8878ms)\nHow large is it?\thigh profile event\t-9.355476774826684\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large members Christmas Party, Instance Of, high profile event) -> high profile event (8878ms)\nHow large is it?\tmandatory charge\t-9.356588025909904\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (automatic large party gratuity, Instance Of, mandatory charge) -> mandatory charge (8895ms)\nHow large is it?\tdining room\t-9.364066467217723\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, dining room) -> dining room (8895ms)\nHow large is it?\tpersonal event\t-9.368990548416534\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, personal event) -> personal event (8895ms)\nHow large is it?\tperfect place\t-9.392829256981445\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party situation, Instance Of, perfect place) -> perfect place (8895ms)\nHow large is it?\tendurance group\t-9.399055672454654\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, endurance group) -> endurance group (8912ms)\nHow large is it?\toccasion\t-9.406253901685666\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, occasion) -> occasion (8912ms)\nHow large is it?\tparty\t-9.411569126301206\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, party) -> party (8912ms)\nHow large is it?\tamenity\t-9.414718565184796\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party room, Instance Of, amenity) -> amenity (8912ms)\nHow large is it?\tgroup\t-9.446045107125435\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, group) -> group (8970ms)\nHow large is it?\tcircumstance\t-9.498778920938406\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (extra large wedding party, Instance Of, circumstance) -> circumstance (8970ms)\nHow large is it?\tactivity\t-9.502860581279883\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, activity) -> activity (8970ms)\nHow large is it?\tgathering\t-9.511432780025462\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, gathering) -> gathering (9027ms)\nHow large is it?\tidea\t-9.52035301409986\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, idea) -> idea (9028ms)\nHow large is it?\tunit\t-9.526673685891005\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party unit, Instance Of, unit) -> unit (9027ms)\nHow large is it?\ttopic\t-9.543494092310768\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, topic) -> topic (9045ms)\nHow large is it?\texception\t-9.569998415100024\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (very large party, Instance Of, exception) -> exception (9045ms)\nHow large is it?\trequirement\t-9.577749476156677\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (extra large party, Instance Of, requirement) -> requirement (9045ms)\nHow large is it?\toption\t-9.584532518699639\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party reservation, Instance Of, option) -> option (9044ms)\nHow large is it?\tvenue\t-9.591218539745817\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large private party, Instance Of, venue) -> venue (9045ms)\nHow large is it?\ttask\t-9.6009787238601\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (arranging large party, Instance Of, task) -> task (9066ms)\nHow large is it?\twebsite\t-9.605569911110022\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large third party website, Instance Of, website) -> website (9066ms)\nHow large is it?\tretailer\t-9.606020826471104\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large third party retailer, Instance Of, retailer) -> retailer (9066ms)\nHow large is it?\tservice\t-9.608033214793116\tHow large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party tray, Instance Of, service) -> service (9066ms)\nHow large is it?\texhibition of digital photo of Australian landscape\t-12.44067130658266\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Lake George.It, Instance Of, exhibition of digital photo of Australian landscape) -> exhibition of digital photo of Australian landscape (9400ms)\nHow large is it?\tevening of nail-biting drama\t-12.485565262017802\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (ELLIOT LAKE-It, Instance Of, evening of nail-biting drama) -> evening of nail-biting drama (9400ms)\nHow large is it?\tindependent professional organization and forum\t-12.485565262017802\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (itSMF Great Lakes Local Interest Group, Instance Of, independent professional organization and forum) -> independent professional organization and forum (9400ms)\nHow large is it?\tChicago based company\t-12.493276456271126\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Great Lakes IT, Inc., Instance Of, Chicago based company) -> Chicago based company (9400ms)\nHow large is it?\tplace of kind Reservoir\t-12.554193456252895\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Lake Just-It, Instance Of, place of kind Reservoir) -> place of kind Reservoir (9400ms)\nHow large is it?\tcool lake\t-12.619867765245438\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Love it. Lake Eufaula, Instance Of, cool lake) -> cool lake (9400ms)\nHow large is it?\tfascinating place\t-12.620983041789682\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Lake Titicaca and it's environs, Instance Of, fascinating place) -> fascinating place (9492ms)\nHow large is it?\tnice lake\t-12.629339588763232\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Lakes..it, Instance Of, nice lake) -> nice lake (9491ms)\nHow large is it?\tprivate company\t-12.631918811783287\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Dig-It Inc in Lake Odessa, MI, Instance Of, private company) -> private company (9492ms)\nHow large is it?\tbeautiful place\t-12.638655919998929\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Historic lake.It, Instance Of, beautiful place) -> beautiful place (9492ms)\nHow large is it?\tcircular lake\t-12.66373727125588\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Kankaria LakeIt, Instance Of, circular lake) -> circular lake (9492ms)\nHow large is it?\tbite\t-12.812346886120565\tHow large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (LAKE ALMANOR-It, Instance Of, bite) -> bite (9491ms)\nHow large is it?\tChinese proverb meaning better\t-12.92251700057922\tHow large is it? -> how large be [ it ] ? -> what be it curse ? -> $x: (it curse, instance of, $x) -> (It is better to light a candle than curse the darkness, Instance Of, Chinese proverb meaning better) -> Chinese proverb meaning better (9084ms)\nHow large is it?\tmark of evil thing\t-13.18898754668652\tHow large is it? -> how large be [ it ] ? -> what be it curse ? -> $x: (it curse, instance of, $x) -> (Curse on thy Spanish steelcoat!It, Instance Of, mark of evil thing) -> mark of evil thing (9084ms)\nHow large is it?\tincredibly popular fast-food chain\t-13.218263843076457\tHow large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (Let's face it. Taco Bell, Instance Of, incredibly popular fast-food chain) -> incredibly popular fast-food chain (9506ms)\nHow large is it?\tproven container-tag printing resource\t-13.2631577985116\tHow large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (Bell and Howell's TagIt Pro?, Instance Of, proven container-tag printing resource) -> proven container-tag printing resource (9506ms)\nHow large is it?\tScot\t-13.291966115670293\tHow large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (Love it. Bell, Instance Of, Scot) -> Scot (9506ms)\nHow large is it?\tproverb\t-13.328895029259296\tHow large is it? -> how large be [ it ] ? -> what be it curse ? -> $x: (it curse, instance of, $x) -> (It is better to light a candle than curse the darkness, Instance Of, proverb) -> proverb (9101ms)\nHow large is it?\tinstant hit\t-13.35461214524131\tHow large is it? -> how large be [ it ] ? -> what be it strait ? -> $x: (it strait, instance of, $x) -> (George Strait's current single It Just Comes Natural'', Instance Of, instant hit) -> instant hit (10207ms)\nHow large is it?\tgreat race\t-13.400455926864192\tHow large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (Bell.\\n\\nIt, Instance Of, great race) -> great race (9506ms)\nHow large is it?\tsturdy product\t-13.44254617266278\tHow large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (PACKARD BELL EASYNOTE MZ36-U-020-IT, Instance Of, sturdy product) -> sturdy product (9506ms)\nHow large is it?\tspelling contest\t-13.475057219433117\tHow large is it? -> how large be [ it ] ? -> what be it strait ? -> $x: (it strait, instance of, $x) -> (RHB New Straits Times National Spell-It-Right Challenge, Instance Of, spelling contest) -> spelling contest (10206ms)\nHow large is it?\tspelling competition\t-13.503846582369437\tHow large is it? -> how large be [ it ] ? -> what be it strait ? -> $x: (it strait, instance of, $x) -> (RHB New Straits Times National Spell-It-Right Challenge, Instance Of, spelling competition) -> spelling competition (10206ms)\nHow large is it?\tposition of superior responsibility\t-14.124854973575262\tHow large is it? -> how large be [ it ] ? -> who be it commander ? -> $x: (it commander, instance of, $x) -> (IT-05-88-PT p.2984 StaffIDeputy Commander, Instance Of, position of superior responsibility) -> position of superior responsibility (10316ms)\nHow large is it?\tPC-based software simulation\t-14.124854973575262\tHow large is it? -> how large be [ it ] ? -> who be it commander ? -> $x: (it commander, instance of, $x) -> (Gadomski, http://erg4146.casaccia.enea.it Incident Commander, Instance Of, PC-based software simulation) -> PC-based software simulation (10317ms)\nWho is Aaron Copland?\tmusical legend\t-1.5348521789133773\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical legend) -> musical legend (2683ms)\nWho is Aaron Copland?\tcontemporary composer\t-1.5675427038095426\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary composer) -> contemporary composer (2683ms)\nWho is Aaron Copland?\tclassical composer\t-1.589409594200286\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, classical composer) -> classical composer (2683ms)\nWho is Aaron Copland?\tnotorious conductor\t-1.603945860539497\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notorious conductor) -> notorious conductor (2684ms)\nWho is Aaron Copland?\tcentury composer\t-1.6212821086006832\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, century composer) -> century composer (2684ms)\nWho is Aaron Copland?\tmodern composer\t-1.6297768309008\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern composer) -> modern composer (2684ms)\nWho is Aaron Copland?\tmusic luminary\t-1.6304123760701412\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, music luminary) -> music luminary (2842ms)\nWho is Aaron Copland?\tclassical music\t-1.6451533404194265\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, classical music) -> classical music (2841ms)\nWho is Aaron Copland?\tmusical luminary\t-1.6578613676237675\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical luminary) -> musical luminary (2841ms)\nWho is Aaron Copland?\tdistinguished musician\t-1.6675143146109896\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, distinguished musician) -> distinguished musician (2841ms)\nWho is Aaron Copland?\testablished composer\t-1.6854882265751896\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, established composer) -> established composer (2842ms)\nWho is Aaron Copland?\tgreat composer\t-1.6871469195962745\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great composer) -> great composer (2841ms)\nWho is Aaron Copland?\tmainstream composer\t-1.6952849654805717\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, mainstream composer) -> mainstream composer (3006ms)\nWho is Aaron Copland?\tmusical figure\t-1.699894100040446\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical figure) -> musical figure (3005ms)\nWho is Aaron Copland?\tamerican composer\t-1.700249393522139\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american composer) -> american composer (3006ms)\nWho is Aaron Copland?\tprominent artist\t-1.720320064341093\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, prominent artist) -> prominent artist (3005ms)\nWho is Aaron Copland?\tearly work\t-1.7212488482028074\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland's, Instance Of, early work) -> early work (3005ms)\nWho is Aaron Copland?\topera composer\t-1.7251315294640186\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, opera composer) -> opera composer (3048ms)\nWho is Aaron Copland?\tinterestin composer\t-1.7345061399660882\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, interestin composer) -> interestin composer (3047ms)\nWho is Aaron Copland?\tmodernist composer\t-1.75133109250657\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modernist composer) -> modernist composer (3047ms)\nWho is Aaron Copland?\tmaster composer\t-1.753200532358679\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, master composer) -> master composer (3047ms)\nWho is Aaron Copland?\tguest conductor\t-1.7624621986070723\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, guest conductor) -> guest conductor (3047ms)\nWho is Aaron Copland?\tnative composer\t-1.7631166880036968\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, native composer) -> native composer (3047ms)\nWho is Aaron Copland?\tgreat musician\t-1.7663048436086082\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great musician) -> great musician (3065ms)\nWho is Aaron Copland?\tfamed conductor\t-1.766693005589123\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famed conductor) -> famed conductor (3064ms)\nWho is Aaron Copland?\testablished artist\t-1.767523613344804\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, established artist) -> established artist (3064ms)\nWho is Aaron Copland?\tleading figure\t-1.77087329412644\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, leading figure) -> leading figure (3064ms)\nWho is Aaron Copland?\tnotable composer\t-1.770897889019492\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notable composer) -> notable composer (3065ms)\nWho is Aaron Copland?\teminent composer\t-1.7731661421837521\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, eminent composer) -> eminent composer (3064ms)\nWho is Aaron Copland?\tgreat conductor\t-1.792950710013499\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great conductor) -> great conductor (3082ms)\nWho is Aaron Copland?\tfamous composer\t-1.8001021587069035\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famous composer) -> famous composer (3082ms)\nWho is Aaron Copland?\tAmerican composer of concert and film music\t-2.167803572470184\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American composer of concert and film music) -> American composer of concert and film music (3082ms)\nWho is Aaron Copland?\tgreat american composer\t-2.2393515465749663\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great american composer) -> great american composer (3082ms)\nWho is Aaron Copland?\twell-known american composer\t-2.2693798779616006\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, well-known american composer) -> well-known american composer (3082ms)\nWho is Aaron Copland?\tcontemporary american composer\t-2.2727853746920195\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary american composer) -> contemporary american composer (3082ms)\nWho is Aaron Copland?\tbritish and american composer\t-2.29878325830832\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, british and american composer) -> british and american composer (3099ms)\nWho is Aaron Copland?\tworld's greatest musician\t-2.3116095351057635\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, world's greatest musician) -> world's greatest musician (3099ms)\nWho is Aaron Copland?\tmainstream Americans\t-2.317209024292771\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, mainstream Americans) -> mainstream Americans (3099ms)\nWho is Aaron Copland?\tserious american composer\t-2.334940328312708\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, serious american composer) -> serious american composer (3099ms)\nWho is Aaron Copland?\tcomposer and conductor\t-2.3421632723974875\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer and conductor) -> composer and conductor (3099ms)\nWho is Aaron Copland?\tinstru-mentsandgreat composer\t-2.357981392849078\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, instru-mentsandgreat composer) -> instru-mentsandgreat composer (3099ms)\nWho is Aaron Copland?\tprominent gay composer\t-2.375138332840814\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, prominent gay composer) -> prominent gay composer (3116ms)\nWho is Aaron Copland?\tlearned, modernist composer\t-2.379367505449016\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, learned, modernist composer) -> learned, modernist composer (3116ms)\nWho is Aaron Copland?\tmusician and composer\t-2.3898267839188714\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musician and composer) -> musician and composer (3116ms)\nWho is Aaron Copland?\tnow-famous composer\t-2.40287534828422\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, now-famous composer) -> now-famous composer (3116ms)\nWho is Aaron Copland?\tcontemporary of barber\t-2.40287534828422\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary of barber) -> contemporary of barber (3116ms)\nWho is Aaron Copland?\toutstanding american composer\t-2.403131139044815\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, outstanding american composer) -> outstanding american composer (3116ms)\nWho is Aaron Copland?\tAmerican nationalist composer of concert and film music\t-2.416578342752657\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American nationalist composer of concert and film music) -> American nationalist composer of concert and film music (3177ms)\nWho is Aaron Copland?\ttwentieth-century composer\t-2.4165845693721204\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth-century composer) -> twentieth-century composer (3177ms)\nWho is Aaron Copland?\tfreaking amazing composer\t-2.4206066523041567\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, freaking amazing composer) -> freaking amazing composer (3177ms)\nWho is Aaron Copland?\tfamous american composer\t-2.4206066523041567\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famous american composer) -> famous american composer (3177ms)\nWho is Aaron Copland?\ttwentieth century composer\t-2.4206066523041567\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth century composer) -> twentieth century composer (3177ms)\nWho is Aaron Copland?\tamerican musical artist\t-2.4206066523041567\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american musical artist) -> american musical artist (3177ms)\nWho is Aaron Copland?\tsongwriter and composer\t-2.423413721253624\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, songwriter and composer) -> songwriter and composer (3271ms)\nWho is Aaron Copland?\tAmerican classical composer\t-2.4236102216435427\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American classical composer) -> American classical composer (3271ms)\nWho is Aaron Copland?\twell-known American composer\t-2.434204389800616\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, well-known American composer) -> well-known American composer (3271ms)\nWho is Aaron Copland?\tworld-renowned composer, teacher, writer and conductor\t-2.4375551070496835\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, world-renowned composer, teacher, writer and conductor) -> world-renowned composer, teacher, writer and conductor (3271ms)\nWho is Aaron Copland?\tgreat contemporary composer\t-2.439301044696748\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great contemporary composer) -> great contemporary composer (3271ms)\nWho is Aaron Copland?\ttwentieth century classical composer\t-2.44461301655552\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth century classical composer) -> twentieth century classical composer (3271ms)\nWho is Aaron Copland?\tnotable jewish composer\t-2.4480250944799566\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notable jewish composer) -> notable jewish composer (3287ms)\nWho is Aaron Copland?\tgoldfarb's favorite composer\t-2.4505227413227635\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, goldfarb's favorite composer) -> goldfarb's favorite composer (3287ms)\nWho is Aaron Copland?\ttop american composer\t-2.4505227413227635\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, top american composer) -> top american composer (3287ms)\nWho is Aaron Copland?\tmodern classical composer\t-2.4507669384523973\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern classical composer) -> modern classical composer (3287ms)\nWho is Aaron Copland?\tartist and composer\t-2.4624529032135856\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, artist and composer) -> artist and composer (3287ms)\nWho is Aaron Copland?\tcomposer\t-2.4647442571187677\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer) -> composer (3287ms)\nWho is Aaron Copland?\tmodern american jewish composer\t-2.47203145873132\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern american jewish composer) -> modern american jewish composer (3302ms)\nWho is Aaron Copland?\tyet-to-be-famous writer and musician\t-2.47203145873132\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, yet-to-be-famous writer and musician) -> yet-to-be-famous writer and musician (3302ms)\nWho is Aaron Copland?\tamerica's most renowned composer\t-2.48574067859352\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, america's most renowned composer) -> america's most renowned composer (3302ms)\nWho is Aaron Copland?\testeemed and reputable composer\t-2.4895069719906626\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, esteemed and reputable composer) -> esteemed and reputable composer (3317ms)\nWho is Aaron Copland?\tfirst generation american composer\t-2.4895069719906626\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, first generation american composer) -> first generation american composer (3302ms)\nWho is Aaron Copland?\tworld-renowned composer and conductor\t-2.4895069719906626\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, world-renowned composer and conductor) -> world-renowned composer and conductor (3303ms)\nWho is Aaron Copland?\tmodern american classical composer\t-2.4895069719906626\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern american classical composer) -> modern american classical composer (3317ms)\nWho is Aaron Copland?\trespected American composer\t-2.4916504033607634\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, respected American composer) -> respected American composer (3317ms)\nWho is Aaron Copland?\tinfluential American composer\t-2.4916504033607634\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, influential American composer) -> influential American composer (3317ms)\nWho is Aaron Copland?\twell-known composer of the twentieth century\t-2.521993830880578\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, well-known composer of the twentieth century) -> well-known composer of the twentieth century (3332ms)\nWho is Aaron Copland?\tcomposer in the music literature\t-2.521993830880578\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer in the music literature) -> composer in the music literature (3317ms)\nWho is Aaron Copland?\tAmerican composer of concert and film\t-2.521993830880578\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American composer of concert and film) -> American composer of concert and film (3332ms)\nWho is Aaron Copland?\tamerican musician of jewish origin\t-2.5306346340286625\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american musician of jewish origin) -> american musician of jewish origin (3332ms)\nWho is Aaron Copland?\tgreatest american art-song composer\t-2.5306346340286625\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, greatest american art-song composer) -> greatest american art-song composer (3332ms)\nWho is Aaron Copland?\tAmerican classical composer, composition teacher, writer and conductor\t-2.593464920438393\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American classical composer, composition teacher, writer and conductor) -> American classical composer, composition teacher, writer and conductor (3332ms)\nWho is Aaron Copland?\tlegendary 20th century artist\t-2.7725543071500756\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, legendary 20th century artist) -> legendary 20th century artist (3347ms)\nWho is Aaron Copland?\t20th century american composer\t-2.8226658942597025\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, 20th century american composer) -> 20th century american composer (3348ms)\nWho is Aaron Copland?\t20th century jewish composer\t-2.8226658942597025\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, 20th century jewish composer) -> 20th century jewish composer (3348ms)\nWho is Aaron Copland?\tfigure\t-2.8257732362523154\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, figure) -> figure (3362ms)\nWho is Aaron Copland?\ttreasured 20th-century composer\t-2.869347987583252\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, treasured 20th-century composer) -> treasured 20th-century composer (3364ms)\nWho is Aaron Copland?\tmusician\t-2.8795382256037403\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musician) -> musician (3380ms)\nWho is Aaron Copland?\t20th-century's greatest american composer\t-2.908332218251151\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, 20th-century's greatest american composer) -> 20th-century's greatest american composer (3380ms)\nWho is Aaron Copland?\tname\t-2.9169860692050262\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, name) -> name (3394ms)\nWho is Aaron Copland?\tcomposer of the 20th century\t-2.9243820369851514\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer of the 20th century) -> composer of the 20th century (3394ms)\nWho is Aaron Copland?\tcontemporary\t-2.93654836893036\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary) -> contemporary (3408ms)\nWho is Aaron Copland?\tAmerican composer of the 20th century\t-2.940819077141067\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American composer of the 20th century) -> American composer of the 20th century (3408ms)\nWho is Aaron Copland?\tstudent\t-2.9576851374778013\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, student) -> student (3422ms)\nWho is Aaron Copland?\tfriend\t-3.108846886022671\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, friend) -> friend (3497ms)\nWho is Aaron Copland?\texception\t-3.116203078069267\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, exception) -> exception (3497ms)\nWho is Aaron Copland?\tluminary\t-3.1347085741819374\tWho is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, luminary) -> luminary (3497ms)\nWho is Aaron Copland?\tNadia Boulanger\t-8.249846654366955\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who s aaron copland ? -> $x: ($x, s, aaron copland) -> (Nadia Boulanger, Student(s), Aaron Copland) -> Nadia Boulanger (4166ms)\nWho is Aaron Copland?\tAaron Copeland\t-9.571478219749794\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Aaron Copeland) -> Aaron Copeland (4307ms)\nWho is Aaron Copland?\tAaronn Copland\t-9.571478219749794\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Aaronn Copland) -> Aaronn Copland (4307ms)\nWho is Aaron Copland?\tCopeland House\t-9.619125612788338\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland House, Also known as, Copeland House) -> Copeland House (4307ms)\nWho is Aaron Copland?\t4532 Copland\t-10.177080575009064\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland s name ? -> $x: (aaron copland, name, $x) -> (Aaron Copland, Things named after this, 4532 Copland) -> 4532 Copland (4097ms)\nWho is Aaron Copland?\tRock Hill\t-10.596453513649596\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland House, Also known as, Rock Hill) -> Rock Hill (4307ms)\nWho is Aaron Copland?\tFilm Score Composer\t-10.59962753011029\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Film Score Composer) -> Film Score Composer (5109ms)\nWho is Aaron Copland?\tCopland, Aaron\t-10.705735789979638\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Copland, Aaron) -> Copland, Aaron (4307ms)\nWho is Aaron Copland?\tThe Dean of American composers\t-10.852343153175156\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, The Dean of American composers) -> The Dean of American composers (4308ms)\nWho is Aaron Copland?\tWilliam Grant\t-10.905854155526066\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who s aaron copland ? -> $x: ($x, s, aaron copland) -> (William Grant, Still 's The American Scene to, Aaron Copland) -> William Grant (4166ms)\nWho is Aaron Copland?\tAaron Copland (1900-1990)\t-11.124561036240127\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Aaron Copland (1900-1990)) -> Aaron Copland (1900-1990) (4371ms)\nWho is Aaron Copland?\tMIDI\t-11.345240260301669\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who s aaron copland ? -> $x: ($x, s, aaron copland) -> (MIDI, here 's a theme from, Aaron Copland) -> MIDI (4166ms)\nWho is Aaron Copland?\tA Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland) (disc 2)\t-11.422357242731021\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (A Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland), Also known as, A Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland) (disc 2)) -> A Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland) (disc 2) (4371ms)\nWho is Aaron Copland?\tPianist\t-11.848752975131765\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Pianist) -> Pianist (5109ms)\nWho is Aaron Copland?\tComposer\t-11.848752975131765\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Composer) -> Composer (5109ms)\nWho is Aaron Copland?\tConductor\t-11.848752975131765\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Conductor) -> Conductor (5110ms)\nWho is Aaron Copland?\tWriter\t-11.848752975131765\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Writer) -> Writer (5110ms)\nWho is Aaron Copland?\tCopland\t-12.031437402384487\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Copland) -> Copland (4371ms)\nWho is Aaron Copland?\tAaron Copland Interview - 1977\t-12.059058402376339\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland Interview 1977, Also known as, Aaron Copland Interview - 1977) -> Aaron Copland Interview - 1977 (4371ms)\nWho is Aaron Copland?\tCopeland\t-12.090996643682665\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Copeland) -> Copeland (4371ms)\nWho is Aaron Copland?\t?Appalachian Spring\t-12.690569098790117\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> what do aaron copland enjoy ? -> $x: (aaron copland, enjoy, $x) -> $x: (aaron copland, do nt like, $x) -> (Aaron Copland?s music, does n?t sound like, ?Appalachian Spring) -> ?Appalachian Spring (4948ms)\nWho is Aaron Copland?\tthe coming\t-14.173199671229426\tWho is Aaron Copland? -> who be [ aaron copland ] ? -> what do aaron copland enjoy ? -> $x: (aaron copland, enjoy, $x) -> $x: (aaron copland, in play, $x) -> (Aaron Copland, played a crucial role in, the coming) -> the coming (5006ms)\nWhen was Microsoft established?\t1975\t1.9869912032898487\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, was established in, 1975) -> 1975 (5295ms)\nWhen was Microsoft established?\t1980\t1.957455598734724\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, was established in, 1980) -> 1980 (5295ms)\nWhen was Microsoft established?\t1999\t1.7436858635508923\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Latvia, was established in, 1999) -> 1999 (5296ms)\nWhen was Microsoft established?\t1986\t0.12197289863890592\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1986) -> 1986 (5296ms)\nWhen was Microsoft established?\t1981\t0.06888483078273433\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1981) -> 1981 (5296ms)\nWhen was Microsoft established?\t1992\t0.0484837119187822\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1992) -> 1992 (5425ms)\nWhen was Microsoft established?\t1979\t0.0484837119187822\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1979) -> 1979 (5425ms)\nWhen was Microsoft established?\t2003\t-0.4740996137849902\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Workplace Publisher, was launched in, 2003) -> 2003 (7216ms)\nWhen was Microsoft established?\t1995\t-0.5952984075493291\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be form in, $x) -> (a Microsoft Gold Partner, was formed in, 1995) -> 1995 (6069ms)\nWhen was Microsoft established?\t1987\t-0.6356489385421606\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have be around since, $x) -> (Microsoft PowerPoint, has been around since, 1987) -> 1987 (6664ms)\nWhen was Microsoft established?\t1985\t-0.6361256129221444\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established a Canadian subsidiary in, 1985) -> 1985 (5453ms)\nWhen was Microsoft established?\t1994\t-0.6500442889848235\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be last update in, $x) -> (Microsoft, was last updated in, 1994) -> 1994 (5645ms)\nWhen was Microsoft established?\t2004\t-0.702541514669683\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (the Microsoft UP program, was launched in, 2004) -> 2004 (7217ms)\nWhen was Microsoft established?\t2007\t-0.7219938790052827\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The Microsoft Connector service, was launched in, 2007) -> 2007 (7216ms)\nWhen was Microsoft established?\t1996\t-0.784348825198546\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (The Microsoft core Web fonts project, was started in, 1996) -> 1996 (7007ms)\nWhen was Microsoft established?\t1982\t-0.8688785423660463\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have be around since, $x) -> (Microsoft Flight Simulation, has been around since, 1982) -> 1982 (6664ms)\nWhen was Microsoft established?\t2011\t-1.2039517875445003\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft?s own phone, will be launched in, 2011) -> 2011 (7281ms)\nWhen was Microsoft established?\tOffice 2007\t-1.2605904607513927\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft Office, is opened in, Office 2007) -> Office 2007 (6825ms)\nWhen was Microsoft established?\t2009\t-1.4400473740453523\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, closed positively in, 2009) -> 2009 (5453ms)\nWhen was Microsoft established?\tOffice 2010\t-1.4603997162778537\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, is expected to launch in, Office 2010) -> Office 2010 (7281ms)\nWhen was Microsoft established?\t2005\t-1.5231552659952587\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go bankrupt in, $x) -> (Microsoft, went bankrupt in, 2005) -> 2005 (7281ms)\nWhen was Microsoft established?\t2010\t-1.6744941471683585\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, will probably expand its market share in, 2010) -> 2010 (6170ms)\nWhen was Microsoft established?\tJuly 2010\t-1.6912289076876141\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established in, July 2010) -> July 2010 (5453ms)\nWhen was Microsoft established?\tHoliday 2010\t-1.7456227131042836\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, would be launching in, Holiday 2010) -> Holiday 2010 (7281ms)\nWhen was Microsoft established?\t2001\t-1.82209975253964\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, been an open company in, 2001) -> 2001 (6825ms)\nWhen was Microsoft established?\t2013 occupies\t-1.8224745376235454\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, is expected to start in, 2013 occupies) -> 2013 occupies (7007ms)\nWhen was Microsoft established?\tOctober 1990\t-1.9110850851552632\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Workplace, was started in, October 1990) -> October 1990 (7007ms)\nWhen was Microsoft established?\tOctober 2007\t-1.9383139580328526\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft?s HealthVault, was launched in, October 2007) -> October 2007 (7373ms)\nWhen was Microsoft established?\tOctober 2001\t-1.9399476409592658\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Windows XP, was launched in, October 2001) -> October 2001 (7373ms)\nWhen was Microsoft established?\tSeptember 2007\t-1.9445935775611076\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft PerformancePoint, was also launched in, September 2007) -> September 2007 (7373ms)\nWhen was Microsoft established?\tlate 1998\t-1.9446923994378493\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be begin in, $x) -> (Microsoft Access, was begun in, late 1998) -> late 1998 (7373ms)\nWhen was Microsoft established?\tFebruary 2012\t-1.9515028178275338\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, is due to start in, February 2012) -> February 2012 (7007ms)\nWhen was Microsoft established?\tJuly 2005\t-1.9968600822323817\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Connect Microsoft Connect, was launched in, July 2005) -> July 2005 (7510ms)\nWhen was Microsoft established?\tApril 2000\t-2.034880571800189\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, was found guilty in, April 2000) -> April 2000 (6432ms)\nWhen was Microsoft established?\t2006 GSI action\t-2.0525645106313\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, is launched in, 2006 GSI action) -> 2006 GSI action (7510ms)\nWhen was Microsoft established?\t2006\t-2.129996144023738\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, to complete in, $x) -> (Microsoft, has to be completed in, 2006) -> 2006 (11877ms)\nWhen was Microsoft established?\tDecember 2003\t-2.148647410179474\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The Microsoft Partner Programme, was launched in, December 2003) -> December 2003 (7510ms)\nWhen was Microsoft established?\tthe August 1989\t-2.172383689757848\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Ramesh Microsoft Office, was launched in, the August 1989) -> the August 1989 (7510ms)\nWhen was Microsoft established?\tOctober 2003\t-2.1912794986558026\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The Microsoft Partner Network, was launched in, October 2003) -> October 2003 (7510ms)\nWhen was Microsoft established?\tOct 2003\t-2.2116806175197548\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The Microsoft Partner Program, was launched in, Oct 2003) -> Oct 2003 (7510ms)\nWhen was Microsoft established?\t1968\t-2.2156534642942787\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be charter in, $x) -> (MicrosoftOfficeWebServer, was chartered in, 1968) -> 1968 (6170ms)\nWhen was Microsoft established?\tNovember 2005\t-2.230550846340642\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The BL and Microsoft partnership, was launched in, November 2005) -> November 2005 (7574ms)\nWhen was Microsoft established?\tWord 2003\t-2.263548847674455\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (a Microsoft Word 95 file, can normally be opened in, Word 2003) -> Word 2003 (6825ms)\nWhen was Microsoft established?\tQ3 2012\t-2.3013187092526035\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft?s Windows 8 OS, is due to launch in, Q3 2012) -> Q3 2012 (7574ms)\nWhen was Microsoft established?\tJuly 1997\t-2.34612199773332\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (Microsoft Research Cambridge, was set up in, July 1997) -> July 1997 (7574ms)\nWhen was Microsoft established?\tJune\t-2.553179359931711\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Office 2010, was launched in, June) -> June (7593ms)\nWhen was Microsoft established?\tDecember 2009\t-2.854849230443297\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Dynamics CRM, is expected to come in, December 2009) -> December 2009 (10997ms)\nWhen was Microsoft established?\t1997\t-2.9370930053752176\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, begin operation in, $x) -> (Microsoft, began operations in Reno in, 1997) -> 1997 (7611ms)\nWhen was Microsoft established?\tCRM\t-3.0648013060570274\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> (Microsoft Michael, is a well-established authority on, CRM) -> CRM (5511ms)\nWhen was Microsoft established?\tJune 25 , 2003\t-3.134182585165462\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Media Player 9 Series, was found on, June 25 , 2003) -> June 25 , 2003 (8963ms)\nWhen was Microsoft established?\tMay 12\t-3.1421877847948876\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, May 12) -> May 12 (9206ms)\nWhen was Microsoft established?\tmid January\t-3.168513858324454\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Windows, would be launched sometime in, mid January) -> mid January (7611ms)\nWhen was Microsoft established?\tDecember\t-3.1812727865260633\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be institute in, $x) -> (Microsoft, was instituted in, December) -> December (5511ms)\nWhen was Microsoft established?\tWindows NT 4.0, 2000\t-3.2056579028130203\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, has found a flaw in, Windows NT 4.0, 2000) -> Windows NT 4.0, 2000 (6664ms)\nWhen was Microsoft established?\tBeijing\t-3.2729824685835744\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Asian research institute, was established in, Beijing) -> Beijing (5645ms)\nWhen was Microsoft established?\tJapan\t-3.302225556863082\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (ASCII Microsoft company, is formally established in, Japan) -> Japan (5645ms)\nWhen was Microsoft established?\tMay\t-3.3675382865276147\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (the new Nokia-Microsoft programme, is set to start in, May) -> May (7611ms)\nWhen was Microsoft established?\tSeptember\t-3.37707520557042\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Security Essentials, was launched in, September) -> September (7611ms)\nWhen was Microsoft established?\tJanuary\t-3.379976027394238\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Vista, was launched in, January) -> January (7611ms)\nWhen was Microsoft established?\tApril 2 , 1993\t-3.4501022094438643\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be create on, $x) -> (The Microsoft Word document, was created on, April 2 , 1993) -> April 2 , 1993 (9949ms)\nWhen was Microsoft established?\tJanuary 8\t-3.513356471304837\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is intending to release on, January 8) -> January 8 (9718ms)\nWhen was Microsoft established?\tIreland\t-3.652795796982031\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Ireland Microsoft, was first established in, Ireland) -> Ireland (5645ms)\nWhen was Microsoft established?\t75 %\t-3.738241559017096\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is found in, 75 %) -> 75 % (6432ms)\nWhen was Microsoft established?\tChina\t-3.7957876286217664\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, is establishing a center in, China) -> China (5645ms)\nWhen was Microsoft established?\tMSKB 246817\t-3.8181276819788037\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, can be found in, MSKB 246817) -> MSKB 246817 (6432ms)\nWhen was Microsoft established?\t23 cities\t-3.8650181888052093\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established representative offices in, 23 cities) -> 23 cities (5645ms)\nWhen was Microsoft established?\tcontempt\t-3.941635646727689\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is found in, contempt) -> contempt (6432ms)\nWhen was Microsoft established?\tWindows 7\t-3.9505665773311884\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was quick to come out with, Windows 7) -> Windows 7 (10997ms)\nWhen was Microsoft established?\tlate 2006\t-3.967902912917857\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, work since, $x) -> (Microsoft+Novell, have been working since, late 2006) -> late 2006 (11400ms)\nWhen was Microsoft established?\tcorporations\t-3.976180259004262\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is typically found in, corporations) -> corporations (6432ms)\nWhen was Microsoft established?\tWord\t-4.0382726491106435\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft Word Headings, are created in, Word) -> Word (6825ms)\nWhen was Microsoft established?\tthe ?70s\t-4.0502230829610735\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have be around since, $x) -> (Microsoft, has been around since, the ?70s) -> the ?70s (6851ms)\nWhen was Microsoft established?\tthe '70s\t-4.0706242018250265\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have be around since, $x) -> (Microsoft, has been around since, the '70s) -> the '70s (6851ms)\nWhen was Microsoft established?\tcontinuation\t-4.114938394839006\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft, is created in, continuation) -> continuation (6851ms)\nWhen was Microsoft established?\tthe AX 2012 release\t-4.188098395969545\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, set out in, $x) -> (Simplicity Microsoft, set out in, the AX 2012 release) -> the AX 2012 release (12270ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20XNA\t-4.231673116161005\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (microsoft xna, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20XNA) -> http://en.wikipedia.org/wiki/Microsoft%20XNA (8964ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Flight\t-4.231673116161005\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Flight, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Flight) -> http://en.wikipedia.org/wiki/Microsoft%20Flight (8964ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Narrator\t-4.231673116161005\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Narrator, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Narrator) -> http://en.wikipedia.org/wiki/Microsoft%20Narrator (9017ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Press\t-4.231673116161005\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Press, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Press) -> http://en.wikipedia.org/wiki/Microsoft%20Press (8963ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Tinker\t-4.231673116161005\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Tinker, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Tinker) -> http://en.wikipedia.org/wiki/Microsoft%20Tinker (8964ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Research%20Maps\t-4.231673116161005\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft TerraServer, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps) -> http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps (8963ms)\nWhen was Microsoft established?\tWord 2010\t-4.272192151241583\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, modify in, $x) -> (Microsoft Word 2010 Learn, modify documents in, Word 2010) -> Word 2010 (12036ms)\nWhen was Microsoft established?\tthe No. 2 Xbox 360\t-4.277079625259699\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (Microsoft Corp., was closing in on, the No. 2 Xbox 360) -> the No. 2 Xbox 360 (5761ms)\nWhen was Microsoft established?\t1991\t-4.2809469859650084\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, set up in, $x) -> (Microsoft, set up its Hong Kong office in, 1991) -> 1991 (11537ms)\nWhen was Microsoft established?\tpartnership\t-4.286594339412999\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft Outlook, was created in, partnership) -> partnership (6851ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade\t-4.296646833940837\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Pinball Arcade, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade) -> http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade (9017ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Baseball%202001\t-4.296646833940837\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Baseball 2001, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001) -> http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001 (9017ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Binary%20Format\t-4.296646833940837\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Binary Format, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format) -> http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format (9089ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator\t-4.296646833940837\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Space Simulator, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator) -> http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator (9017ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Bing%20Maps%20Platform\t-4.296646833940837\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (microsoft virtual earth, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bing%20Maps%20Platform) -> http://en.wikipedia.org/wiki/Bing%20Maps%20Platform (9016ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack\t-4.296646833940837\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Entertainment Pack, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack) -> http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack (9017ms)\nWhen was Microsoft established?\tMicrosoft Word\t-4.442909208074951\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (a Microsoft Excel file, also may be opened in, Microsoft Word) -> Microsoft Word (6872ms)\nWhen was Microsoft established?\tmarket\t-4.478281623667842\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Dynamics brand, was launched in, market) -> market (7740ms)\nWhen was Microsoft established?\tWindows 8.\t-4.489311835791286\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, Windows 8.) -> Windows 8. (10997ms)\nWhen was Microsoft established?\tOctober\t-4.50113975121751\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft and Skype, closed the deal in, October) -> October (5761ms)\nWhen was Microsoft established?\tMS Office\t-4.584186751962676\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft applications, could be found in, MS Office) -> MS Office (6432ms)\nWhen was Microsoft established?\tWindows Phone 7\t-4.589118730620737\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is now on to, Windows Phone 7) -> Windows Phone 7 (9718ms)\nWhen was Microsoft established?\tIBS\t-4.591195780448783\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Business Solution practice, was started in, IBS) -> IBS (7740ms)\nWhen was Microsoft established?\tmore than 100,000 apps\t-4.612512402459452\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is expected to come up with, more than 100,000 apps) -> more than 100,000 apps (10998ms)\nWhen was Microsoft established?\tcomputer technology\t-4.613365272114928\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, was just starting out in, computer technology) -> computer technology (7740ms)\nWhen was Microsoft established?\tNew Jersey\t-4.664743257076803\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, will be opening a store in, New Jersey) -> New Jersey (6873ms)\nWhen was Microsoft established?\tthe 17th place\t-4.670325070639472\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be rank on, $x) -> (Environment Microsoft, is ranked on, the 17th place) -> the 17th place (10597ms)\nWhen was Microsoft established?\tRound 2\t-4.672092582503316\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was already on to, Round 2) -> Round 2 (9718ms)\nWhen was Microsoft established?\tthe Xbox 360\t-4.702840918063633\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, will be coming to, the Xbox 360) -> the Xbox 360 (10997ms)\nWhen was Microsoft established?\t15 percent\t-4.714335499384774\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft, can already be found on, 15 percent) -> 15 percent (9089ms)\nWhen was Microsoft established?\tany\t-4.72292054017793\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft Corporation, has established in, any) -> any (5761ms)\nWhen was Microsoft established?\t90 percent\t-4.757661160061455\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Corp, can be found on, 90 percent) -> 90 percent (9089ms)\nWhen was Microsoft established?\tthe Nokia N8\t-4.765321080633576\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office, will also be coming to, the Nokia N8) -> the Nokia N8 (10997ms)\nWhen was Microsoft established?\tWindows 8\t-4.770798950510406\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is continues to work on, Windows 8) -> Windows 8 (9718ms)\nWhen was Microsoft established?\tmode\t-4.77383295899025\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be buy in, $x) -> (Microsoft, is back in buying, mode) -> mode (7740ms)\nWhen was Microsoft established?\tp2p file sharing\t-4.784220961329434\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is looking to improve on, p2p file sharing) -> p2p file sharing (9718ms)\nWhen was Microsoft established?\tmore than 160 mobile phones\t-4.811948859726728\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft software, can be found on, more than 160 mobile phones) -> more than 160 mobile phones (9089ms)\nWhen was Microsoft established?\ta Twitter clone\t-4.824605067241775\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft, is interested in creating, a Twitter clone) -> a Twitter clone (6873ms)\nWhen was Microsoft established?\tiPad\t-4.8578799415879885\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office, is coming to, iPad) -> iPad (11056ms)\nWhen was Microsoft established?\tTuesday\t-4.860988598681003\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Tuesday) -> Tuesday (9205ms)\nWhen was Microsoft established?\t200 Ugandans\t-4.872528086717578\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found only one in, 200 Ugandans) -> 200 Ugandans (7758ms)\nWhen was Microsoft established?\ttop 25 apps\t-4.883343200011001\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, close all gaps in, top 25 apps) -> top 25 apps (5960ms)\nWhen was Microsoft established?\tOpenID\t-4.9094910689448765\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be implement on, $x) -> (Microsoft, is working on implementing, OpenID) -> OpenID (10597ms)\nWhen was Microsoft established?\ta few years\t-4.91020368062858\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Surface, will be launched in, a few years) -> a few years (7759ms)\nWhen was Microsoft established?\t32-bit versions\t-4.913801777875458\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be design on, $x) -> (Microsoft Photo Info, is designed to run on, 32-bit versions) -> 32-bit versions (9763ms)\nWhen was Microsoft established?\ta 32-bit version\t-4.927129300126047\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is also said to be working on, a 32-bit version) -> a 32-bit version (9718ms)\nWhen was Microsoft established?\tviolation\t-4.9400621631904995\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (1999 Microsoft, was found in, violation) -> violation (7758ms)\nWhen was Microsoft established?\topposition\t-4.942509873249004\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (Microsoft servers, are set up in, opposition) -> opposition (7759ms)\nWhen was Microsoft established?\tlight\t-4.943939645518167\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, are now coming to, light) -> light (11056ms)\nWhen was Microsoft established?\tfour years\t-4.950359727362759\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, was first launched in, four years) -> four years (7759ms)\nWhen was Microsoft established?\ta garage\t-4.95905770760584\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, was started in, a garage) -> a garage (7778ms)\nWhen was Microsoft established?\ta market\t-4.962507770750375\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, a market) -> a market (11056ms)\nWhen was Microsoft established?\tmobile\t-4.966924412097326\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, will establish a foothold in, mobile) -> mobile (5960ms)\nWhen was Microsoft established?\tcompatibility mode\t-4.9906436572412805\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft Company 2007, are opened in, compatibility mode) -> compatibility mode (7778ms)\nWhen was Microsoft established?\tmalware company Claria\t-4.995255256149802\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be buy in, $x) -> (Microsoft, is interested in buying, malware company Claria) -> malware company Claria (7778ms)\nWhen was Microsoft established?\ta couple\t-5.006516543155859\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (new Microsoft OS, is due to be launched in, a couple) -> a couple (7778ms)\nWhen was Microsoft established?\tresponse\t-5.006973462293893\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (The Microsoft Home brand, has been created in, response) -> response (7778ms)\nWhen was Microsoft established?\tYahoo!\t-5.010786566281396\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, was once interested in acquiring, Yahoo!) -> Yahoo! (7777ms)\nWhen was Microsoft established?\tMonday\t-5.030499418859934\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Monday) -> Monday (9205ms)\nWhen was Microsoft established?\tthe File menu\t-5.032424311439732\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Word, is found in, the File menu) -> the File menu (7795ms)\nWhen was Microsoft established?\ta college dorm room\t-5.034224552948256\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, was started in, a college dorm room) -> a college dorm room (7795ms)\nWhen was Microsoft established?\tearly next year\t-5.036877112151546\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, will be launched in, early next year) -> early next year (7795ms)\nWhen was Microsoft established?\tInsert option\t-5.048570250866814\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Word, is found in, Insert option) -> Insert option (7795ms)\nWhen was Microsoft established?\ta discussion\t-5.053612296454305\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, have been commendably open in, a discussion) -> a discussion (7795ms)\nWhen was Microsoft established?\t20 to 80 years\t-5.054931539770476\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go bankrupt in, $x) -> (Microsoft, goes bankrupt in, 20 to 80 years) -> 20 to 80 years (7795ms)\nWhen was Microsoft established?\ttough times\t-5.065370003296829\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, were all launched in, tough times) -> tough times (7811ms)\nWhen was Microsoft established?\ta stake\t-5.069398788913899\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be buy in, $x) -> (Microsoft, was interested in buying, a stake) -> a stake (7812ms)\nWhen was Microsoft established?\tsoftware\t-5.08863528183284\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be develop on, $x) -> (Microsoft, is completely focused on developing, software) -> software (10157ms)\nWhen was Microsoft established?\tthe Common Files\t-5.106828469294576\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, can be found in, the Common Files) -> the Common Files (7812ms)\nWhen was Microsoft established?\tforce\t-5.112310020779795\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft licensing, was due to come into, force) -> force (11056ms)\nWhen was Microsoft established?\treality\t-5.1127374399629275\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, might be gradually coming around to, reality) -> reality (11056ms)\nWhen was Microsoft established?\ttechnology\t-5.128488765032391\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be develop on, $x) -> (Microsoft, is now focused on developing, technology) -> technology (10157ms)\nWhen was Microsoft established?\tan exposition\t-5.129984829313575\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (Microsoft, would be interested in setting up, an exposition) -> an exposition (7812ms)\nWhen was Microsoft established?\ta gathering place\t-5.133776549775429\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (generous Microsoft, has been in creating, a gathering place) -> a gathering place (7830ms)\nWhen was Microsoft established?\tCanada\t-5.134250731821478\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be expand in, $x) -> (Microsoft, is expanding in, Canada) -> Canada (5960ms)\nWhen was Microsoft established?\tfraud\t-5.140231556271765\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be build upon, $x) -> (Microsoft Corporation, is built upon, fraud) -> fraud (11101ms)\nWhen was Microsoft established?\tMSN\t-5.149317250377181\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, is starting to focus on, MSN) -> MSN (11101ms)\nWhen was Microsoft established?\tsuch a way\t-5.15463448855964\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (the Microsoft site, is created in, such a way) -> such a way (7830ms)\nWhen was Microsoft established?\tthe Colorado Convention Center\t-5.156222280936557\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, had established in, the Colorado Convention Center) -> the Colorado Convention Center (5960ms)\nWhen was Microsoft established?\tolder training\t-5.159055473267418\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Visual C++, are found packaged in, older training) -> older training (7830ms)\nWhen was Microsoft established?\tpricing\t-5.159180528361132\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is refusing to budge on, pricing) -> pricing (9763ms)\nWhen was Microsoft established?\tIndia\t-5.1653191940407925\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Store, was started in, India) -> India (7831ms)\nWhen was Microsoft established?\tprice\t-5.1670012419105875\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was willing to deal on, price) -> price (9763ms)\nWhen was Microsoft established?\tcollege dorm rooms\t-5.167440675465009\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Facebook and Microsoft, were started in, college dorm rooms) -> college dorm rooms (7848ms)\nWhen was Microsoft established?\ttown Microsoft\t-5.174117983922741\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, town Microsoft) -> town Microsoft (11101ms)\nWhen was Microsoft established?\tnew ways\t-5.174419730807637\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Problem Microsoft, was interested in finding, new ways) -> new ways (7848ms)\nWhen was Microsoft established?\tthe Film menu\t-5.179232967308418\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Word, is found in, the Film menu) -> the Film menu (7848ms)\nWhen was Microsoft established?\ttiming\t-5.199371391120161\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (Apple and Microsoft, are also once again close in, timing) -> timing (6069ms)\nWhen was Microsoft established?\tNorth America\t-5.200167174381401\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, will be launched in, North America) -> North America (7848ms)\nWhen was Microsoft established?\tHP\t-5.200992945861325\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is looking to capitalize on, HP) -> HP (9763ms)\nWhen was Microsoft established?\tbenchmarks\t-5.207182356073591\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring open season on, benchmarks) -> benchmarks (10597ms)\nWhen was Microsoft established?\tPowerset\t-5.209280831200337\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, may be interested in acquiring, Powerset) -> Powerset (7848ms)\nWhen was Microsoft established?\tJeeves\t-5.209280831200337\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, might be interested in acquiring, Jeeves) -> Jeeves (7848ms)\nWhen was Microsoft established?\tvarious systems\t-5.214695386241375\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be incorporate in, $x) -> (Microsoft windows, has now been incorporated in, various systems) -> various systems (7864ms)\nWhen was Microsoft established?\tSan Antonio\t-5.217792750993635\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Bootcamp, is coming to, San Antonio) -> San Antonio (11101ms)\nWhen was Microsoft established?\tLas Vegas\t-5.217792750993635\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Bootcamp, is coming to, Las Vegas) -> Las Vegas (11101ms)\nWhen was Microsoft established?\tconferences\t-5.232443893199743\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, is also very open about participating in, conferences) -> conferences (7864ms)\nWhen was Microsoft established?\tseveral cases\t-5.24116064623862\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, has been found guilty recently in, several cases) -> several cases (7864ms)\nWhen was Microsoft established?\tthe FAST Search Server\t-5.254127064990728\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be incorporate in, $x) -> (Microsoft, has now been incorporated in, the FAST Search Server) -> the FAST Search Server (7864ms)\nWhen was Microsoft established?\tVB6\t-5.258979939446601\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, would give up, $x) -> (a darn shame Microsoft, would just give up on, VB6) -> VB6 (11101ms)\nWhen was Microsoft established?\tprevious versions\t-5.261100926086704\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft Office 2010 files, can be opened in, previous versions) -> previous versions (7864ms)\nWhen was Microsoft established?\tan Internet Explorer browser\t-5.277081060242878\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft Word, can be opened in, an Internet Explorer browser) -> an Internet Explorer browser (7882ms)\nWhen was Microsoft established?\tservers\t-5.278539224980044\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be design on, $x) -> (Microsoft SQL Server, are designed to be used on, servers) -> servers (9763ms)\nWhen was Microsoft established?\tthe Online Books\t-5.278849433045071\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft SQL Server, can be found in, the Online Books) -> the Online Books (7882ms)\nWhen was Microsoft established?\tcampus\t-5.2793375359129024\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, campus) -> campus (11188ms)\nWhen was Microsoft established?\ta few chapels\t-5.281502044950656\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (microsoft windows, are still found in quite, a few chapels) -> a few chapels (7882ms)\nWhen was Microsoft established?\ta lot\t-5.29293205814454\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft and Adobe computer software, are found in, a lot) -> a lot (7882ms)\nWhen was Microsoft established?\ta phased approach\t-5.2956141700050265\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (Microsoft, will be closing newsgroups in, a phased approach) -> a phased approach (6102ms)\nWhen was Microsoft established?\tentertainment\t-5.2990214632886445\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, has found one in, entertainment) -> entertainment (7882ms)\nWhen was Microsoft established?\tthe Start Menu\t-5.312448990607396\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Sound Recorder, can be found in, the Start Menu) -> the Start Menu (7882ms)\nWhen was Microsoft established?\tVancouver\t-5.324851572466992\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, is opening a new office in, Vancouver) -> Vancouver (7899ms)\nWhen was Microsoft established?\tthe U. S.\t-5.354038581305703\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Office Accounting 2007, can be found in, the U. S.) -> the U. S. (7899ms)\nWhen was Microsoft established?\tthe USA\t-5.366803849031806\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be authorize in, $x) -> (Microsoft Office Suite ?, Must be authorized to work in, the USA) -> the USA (7899ms)\nWhen was Microsoft established?\tReno\t-5.367150802070775\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, begin operation in, $x) -> (Microsoft, began operations in, Reno) -> Reno (7899ms)\nWhen was Microsoft established?\tpar\t-5.373640843064757\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is going to be on, par) -> par (9822ms)\nWhen was Microsoft established?\ta down economy\t-5.381808624922651\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Burger King and Microsoft, were launched in, a down economy) -> a down economy (7899ms)\nWhen was Microsoft established?\tFaceBob\t-5.393178117070805\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be resurrect, $x) -> (Microsoft Bob, can be resurrected as, FaceBob) -> FaceBob (9822ms)\nWhen was Microsoft established?\tdozens\t-5.402861056358898\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft?s music player, is found in, dozens) -> dozens (7916ms)\nWhen was Microsoft established?\ttown\t-5.419924965565286\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (town Microsoft, is coming to, town) -> town (11188ms)\nWhen was Microsoft established?\tAfrica\t-5.420470132314884\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be expand in, $x) -> (Google and Microsoft, are expanding rapidly in, Africa) -> Africa (6102ms)\nWhen was Microsoft established?\tfriends\t-5.429848052905715\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft OneAlbum, Find your photos in, friends) -> friends (7916ms)\nWhen was Microsoft established?\tiOS\t-5.4364189207793325\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office, is coming to, iOS) -> iOS (11187ms)\nWhen was Microsoft established?\tterms\t-5.441473386368826\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, terms) -> terms (11188ms)\nWhen was Microsoft established?\tBangalore\t-5.448078837059071\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Research India, was launched in, Bangalore) -> Bangalore (7916ms)\nWhen was Microsoft established?\tMicrosoft\t-5.468953710673144\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (the Microsoft officials, were involved in setting up, Microsoft) -> Microsoft (7916ms)\nWhen was Microsoft established?\tSilicon Valley\t-5.473944663302\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be expand in, $x) -> (Microsoft, is expanding its reach in, Silicon Valley) -> Silicon Valley (6102ms)\nWhen was Microsoft established?\ta standard\t-5.479496371537781\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be create on, $x) -> (Microsoft, was working on creating, a standard) -> a standard (9949ms)\nWhen was Microsoft established?\tAustralia\t-5.489804338473142\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The day Microsoft Kinect, was launched in, Australia) -> Australia (7916ms)\nWhen was Microsoft established?\ta legacy\t-5.4969071849419056\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be build upon, $x) -> (Microsoft, is building upon, a legacy) -> a legacy (11187ms)\nWhen was Microsoft established?\tThursday\t-5.499688158369174\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Thursday) -> Thursday (9205ms)\nWhen was Microsoft established?\ttablets\t-5.501536726949414\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is going to work on, tablets) -> tablets (9822ms)\nWhen was Microsoft established?\tMoscow\t-5.504468894464958\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (Microsoft software, has been closed down in, Moscow) -> Moscow (6170ms)\nWhen was Microsoft established?\tthe Web.\t-5.505544787075298\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft, can probably still be found somewhere on, the Web.) -> the Web. (9089ms)\nWhen was Microsoft established?\ta journey\t-5.509559078091129\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, is starting out on, a journey) -> a journey (11187ms)\nWhen was Microsoft established?\tEurope\t-5.520022029924282\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (the Microsoft portable media player Zune, be launched in, Europe) -> Europe (7934ms)\nWhen was Microsoft established?\tCapitol Hill\t-5.537809158187195\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be here on, $x) -> (Microsoft, was here on, Capitol Hill) -> Capitol Hill (10040ms)\nWhen was Microsoft established?\tGordon Brown\t-5.54286606485373\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (the UK, Microsoft, established a major office in, Gordon Brown) -> Gordon Brown (6171ms)\nWhen was Microsoft established?\topen source\t-5.549078059467774\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, should be make on, $x) -> (?One big bet Microsoft, should make is on, open source) -> open source (9089ms)\nWhen was Microsoft established?\tgrips\t-5.551364628586146\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was yet to come to, grips) -> grips (11248ms)\nWhen was Microsoft established?\tSymphony\t-5.570942827181911\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (a Microsoft word 2002 document, is opened in, Symphony) -> Symphony (7934ms)\nWhen was Microsoft established?\thandy making work\t-5.576102763199097\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, might come to be, handy making work) -> handy making work (11248ms)\nWhen was Microsoft established?\tan end\t-5.577825968705557\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, are coming to, an end) -> an end (11248ms)\nWhen was Microsoft established?\tthe DotSpatial Library\t-5.583507910653745\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be build upon, $x) -> (Microsoft Windows, is built upon, the DotSpatial Library) -> the DotSpatial Library (11248ms)\nWhen was Microsoft established?\tabout 265 of the patents\t-5.586526915873214\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is hanging on to, about 265 of the patents) -> about 265 of the patents (9822ms)\nWhen was Microsoft established?\ttyposquatters\t-5.598162519442253\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring war on, typosquatters) -> typosquatters (10598ms)\nWhen was Microsoft established?\tskeuomorphs\t-5.598406296834408\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring a war on, skeuomorphs) -> skeuomorphs (10598ms)\nWhen was Microsoft established?\tWindows\t-5.60719489124523\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Other important Microsoft files, can be found in, Windows) -> Windows (7934ms)\nWhen was Microsoft established?\ttrack\t-5.6158464582733645\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seems to be on, track) -> track (9822ms)\nWhen was Microsoft established?\ta way\t-5.616054992247254\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (Microsoft?s PPTP server, is also set up in, a way) -> a way (7950ms)\nWhen was Microsoft established?\tthe Republic\t-5.632070588525628\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have operation in, $x) -> (WPP and Microsoft, have operations in, the Republic) -> the Republic (6246ms)\nWhen was Microsoft established?\ta whole bunch\t-5.637317579506554\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Ex-Microsoft Employee, was found in, a whole bunch) -> a whole bunch (7950ms)\nWhen was Microsoft established?\tRPL!\t-5.638651979124668\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office 2010, is coming to, RPL!) -> RPL! (11300ms)\nWhen was Microsoft established?\ta point\t-5.646732755680682\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, a point) -> a point (11300ms)\nWhen was Microsoft established?\ta screen\t-5.665936910098048\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Windows, is coming to, a screen) -> a screen (11300ms)\nWhen was Microsoft established?\talert\t-5.667705282900242\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, have to constantly be on, alert) -> alert (9822ms)\nWhen was Microsoft established?\tOffice piracy\t-5.674313286703152\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, continue to be lax on, Office piracy) -> Office piracy (9949ms)\nWhen was Microsoft established?\tany PC\t-5.684827555990891\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft Outlook files, can be started on, any PC) -> any PC (11340ms)\nWhen was Microsoft established?\tUkraine and Russia\t-5.68701968538884\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Corporation, is coming to, Ukraine and Russia) -> Ukraine and Russia (11399ms)\nWhen was Microsoft established?\tPhotoshop\t-5.69338939886515\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (A Microsoft word document, cannot be simply opened in, Photoshop) -> Photoshop (7951ms)\nWhen was Microsoft established?\tright\t-5.695732581235072\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, needs to be working on, right) -> right (9949ms)\nWhen was Microsoft established?\tUK.\t-5.702125159345314\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft?s .NET platform, is coming to, UK.) -> UK. (11399ms)\nWhen was Microsoft established?\tCambridge\t-5.705006795146877\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft?s R&D Center, already established in, Cambridge) -> Cambridge (6247ms)\nWhen was Microsoft established?\ta domain\t-5.710991442878491\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be create on, $x) -> (Microsoft FrontPage subaccounts, can be created on, a domain) -> a domain (9949ms)\nWhen was Microsoft established?\tLand System\t-5.714136042094464\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Surface, Is Finally Coming In To, Land System) -> Land System (11399ms)\nWhen was Microsoft established?\ttown Bill\t-5.719605930278449\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (threats Microsoft, is coming to, town Bill) -> town Bill (11399ms)\nWhen was Microsoft established?\thuge annuity streams\t-5.727395076339964\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is trying to hang on to, huge annuity streams) -> huge annuity streams (9949ms)\nWhen was Microsoft established?\tThe Halloween Memo\t-5.727916411685184\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, came to be known as, The Halloween Memo) -> The Halloween Memo (11537ms)\nWhen was Microsoft established?\tleverage Redmond\t-5.741904548216214\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, came down being able to, leverage Redmond) -> leverage Redmond (11537ms)\nWhen was Microsoft established?\tan internet\t-5.746677124290243\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (this Yahoo Microsoft merger, is coming very soon to, an internet) -> an internet (11558ms)\nWhen was Microsoft established?\tcloud services\t-5.750673085850014\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, be relatively new to, $x) -> (Microsoft, is relatively new to offering, cloud services) -> cloud services (12210ms)\nWhen was Microsoft established?\tthe Identity layer\t-5.760671283544844\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be implement on, $x) -> (Microsoft, was implementing on, the Identity layer) -> the Identity layer (10598ms)\nWhen was Microsoft established?\ttop\t-5.7702722229848185\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, does seem to be on, top) -> top (10040ms)\nWhen was Microsoft established?\ta patent hunt\t-5.7719026866423055\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seem to be on, a patent hunt) -> a patent hunt (10040ms)\nWhen was Microsoft established?\tpromotions\t-5.772101244036433\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is keen to expand on, promotions) -> promotions (10040ms)\nWhen was Microsoft established?\tsale\t-5.775638042343115\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is ready to go on, sale) -> sale (10040ms)\nWhen was Microsoft established?\ta game\t-5.777078784181856\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming late to, a game) -> a game (11558ms)\nWhen was Microsoft established?\ta collision course\t-5.785722196203284\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seems to be on, a collision course) -> a collision course (10040ms)\nWhen was Microsoft established?\ta patch\t-5.7870324747164\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was able to come up with, a patch) -> a patch (11618ms)\nWhen was Microsoft established?\tan imitation\t-5.7915786758008565\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was forced to come up with, an imitation) -> an imitation (11618ms)\nWhen was Microsoft established?\texamples\t-5.796758630533052\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, has been unable to come up with, examples) -> examples (11618ms)\nWhen was Microsoft established?\ta place\t-5.810574120998422\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Mac v. Microsoft, seem to be coming from, a place) -> a place (11618ms)\nWhen was Microsoft established?\ta tablet computer\t-5.811812542099946\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was the very first to come up with, a tablet computer) -> a tablet computer (11618ms)\nWhen was Microsoft established?\ta dramatic escalation\t-5.812674196561971\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is about to embark on, a dramatic escalation) -> a dramatic escalation (10104ms)\nWhen was Microsoft established?\ta tear\t-5.817134734670476\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, appears to be on, a tear) -> a tear (10103ms)\nWhen was Microsoft established?\tvarious levels\t-5.826758148732552\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be possible on, $x) -> (Microsoft Dynamics GP, is possible on, various levels) -> various levels (10104ms)\nWhen was Microsoft established?\tsuch speculation\t-5.835629518885234\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was reluctant to comment on, such speculation) -> such speculation (10104ms)\nWhen was Microsoft established?\tslow machines\t-5.8375569483831224\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be design on, $x) -> (Microsoft software, was designed to run on, slow machines) -> slow machines (10104ms)\nWhen was Microsoft established?\tOffice\t-5.838239382153892\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be incorporate in, $x) -> (Microsoft Excel, was incorporated in, Office) -> Office (7988ms)\nWhen was Microsoft established?\tsuch rumors\t-5.839925287216333\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is reluctant to comment on, such rumors) -> such rumors (10104ms)\nWhen was Microsoft established?\tSan Francisco\t-5.842017486491628\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Bootcamp, is coming to, San Francisco) -> San Francisco (11699ms)\nWhen was Microsoft established?\tSan Diego\t-5.842017486491628\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Bootcamp, is coming to, San Diego) -> San Diego (11699ms)\nWhen was Microsoft established?\tRoss Mayfield\t-5.847180008931463\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (kneejerk anti-Microsoft stuff, found in, Ross Mayfield) -> Ross Mayfield (7988ms)\nWhen was Microsoft established?\tWGA notification\t-5.850467204114181\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, would be starting on, WGA notification) -> WGA notification (11699ms)\nWhen was Microsoft established?\tthe Xbox Live service\t-5.852951027146751\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is decided to capitalize on, the Xbox Live service) -> the Xbox Live service (10157ms)\nWhen was Microsoft established?\tFreehold Raceway Mall\t-5.857048813417155\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, Freehold Raceway Mall) -> Freehold Raceway Mall (11699ms)\nWhen was Microsoft established?\tbloated and stodgy\t-5.861732348312884\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, has come to be seen as, bloated and stodgy) -> bloated and stodgy (11787ms)\nWhen was Microsoft established?\tany computer\t-5.870932828420202\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is easy to install on, any computer) -> any computer (10157ms)\nWhen was Microsoft established?\tRIM?s patent portfolio\t-5.873383746585022\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, could find value in, RIM?s patent portfolio) -> RIM?s patent portfolio (8005ms)\nWhen was Microsoft established?\tSymantec IM Manager\t-5.8820997787778895\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Lync, was coming to, Symantec IM Manager) -> Symantec IM Manager (11787ms)\nWhen was Microsoft established?\tsmartphone marketplace\t-5.882491977868597\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was slow to capitalize on, smartphone marketplace) -> smartphone marketplace (10157ms)\nWhen was Microsoft established?\ta crest\t-5.884260403373085\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Outlook/Interwoven Mailsite, is coming to, a crest) -> a crest (11787ms)\nWhen was Microsoft established?\twww .sugarexchange\t-5.889440358105281\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Outlook, can be found on, www .sugarexchange) -> www .sugarexchange (9164ms)\nWhen was Microsoft established?\tperformance , stability and\t-5.8911358203591995\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Windows XP, is comes to, performance , stability and) -> performance , stability and (11877ms)\nWhen was Microsoft established?\tprevious success\t-5.893102372788641\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, are continuing to build on, previous success) -> previous success (10157ms)\nWhen was Microsoft established?\taccess\t-5.895953542088353\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (microsoft, was just starting work on, access) -> access (11877ms)\nWhen was Microsoft established?\ta few more lovers\t-5.896897963308403\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft, is counting on finding, a few more lovers) -> a few more lovers (9164ms)\nWhen was Microsoft established?\ta settlement spree\t-5.898407543897515\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seems to be on, a settlement spree) -> a settlement spree (10228ms)\nWhen was Microsoft established?\tcriteria\t-5.898441384216532\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be choose on, $x) -> (Microsoft Managed ISV Partners, are chosen based on, criteria) -> criteria (9165ms)\nWhen was Microsoft established?\ta dime\t-5.907184945185815\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was able to turn on, a dime) -> a dime (10233ms)\nWhen was Microsoft established?\ta Windows computer\t-5.911308219371325\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be create on, $x) -> (Microsoft Word documents, were created on, a Windows computer) -> a Windows computer (10228ms)\nWhen was Microsoft established?\ta project\t-5.914815097236822\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, appears to be working on, a project) -> a project (10228ms)\nWhen was Microsoft established?\tAlbuquerque\t-5.919247596335628\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be form in, $x) -> (Micro-Soft, had been formed in, Albuquerque) -> Albuquerque (8006ms)\nWhen was Microsoft established?\ta copy-cat version\t-5.924635642404139\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was sure to come up with, a copy-cat version) -> a copy-cat version (11877ms)\nWhen was Microsoft established?\tstate\t-5.925994415082532\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found in, state) -> state (8226ms)\nWhen was Microsoft established?\tAmerica\t-5.928195289292132\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (the next Microsoft, is created in, America) -> America (8226ms)\nWhen was Microsoft established?\ta recruiting trip\t-5.94615424198427\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be here on, $x) -> (( Microsoft, was here on, a recruiting trip) -> a recruiting trip (10228ms)\nWhen was Microsoft established?\tthe 'coat-tails\t-5.950575226692047\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, were able to ride on, the 'coat-tails) -> the 'coat-tails (12271ms)\nWhen was Microsoft established?\ta Windows-based\t-5.950734283387743\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is expected to come out with, a Windows-based) -> a Windows-based (12270ms)\nWhen was Microsoft established?\tthe Microsoft website\t-5.963838180815381\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (the Microsoft Surface, can be found on, the Microsoft website) -> the Microsoft website (9165ms)\nWhen was Microsoft established?\ta hacking website\t-5.965701042186014\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft software, has been found on, a hacking website) -> a hacking website (9165ms)\nWhen was Microsoft established?\tAllaire\t-5.967968206967999\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, was once interested in acquiring, Allaire) -> Allaire (8226ms)\nWhen was Microsoft established?\tan unfinished specification\t-5.974448575735424\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be implement on, $x) -> (Microsoft, is implementing this on, an unfinished specification) -> an unfinished specification (12271ms)\nWhen was Microsoft established?\ta very generous foot\t-5.976471339905693\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, are starting the year off on, a very generous foot) -> a very generous foot (12271ms)\nWhen was Microsoft established?\tGoogle?s turf\t-5.977920753212556\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is trying to compete on, Google?s turf) -> Google?s turf (12297ms)\nWhen was Microsoft established?\ta new fresh take\t-5.980497590003554\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was able to come up with, a new fresh take) -> a new fresh take (12297ms)\nWhen was Microsoft established?\tserver OS licensing\t-5.981780911859573\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, manages to be flexible on, server OS licensing) -> server OS licensing (12297ms)\nWhen was Microsoft established?\trelease standards\t-5.984994349825918\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (The Microsoft reader, is found on, release standards) -> release standards (9205ms)\nWhen was Microsoft established?\tthe MVP website\t-5.985153406521613\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (a Microsoft MVP, can be found on, the MVP website) -> the MVP website (9233ms)\nWhen was Microsoft established?\ta solution\t-5.985217974648869\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was challenged to come up with, a solution) -> a solution (12296ms)\nWhen was Microsoft established?\tApple ideas\t-6.000249354276691\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, have be steal, $x) -> (Microsoft, has long been accused of stealing, Apple ideas) -> Apple ideas (9233ms)\nWhen was Microsoft established?\tplace\t-6.001601555187481\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have operation in, $x) -> (Microsoft, has massive operations in, place) -> place (8243ms)\nWhen was Microsoft established?\tVersusSport.com\t-6.009816453397647\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Tag, can also be found on, VersusSport.com) -> VersusSport.com (9233ms)\nWhen was Microsoft established?\tthe Mall\t-6.024122703320068\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (A Microsoft retail store, is coming to, the Mall) -> the Mall (12296ms)\nWhen was Microsoft established?\tthe Springer site\t-6.0325077535975895\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Word etc, can be found on, the Springer site) -> the Springer site (9233ms)\nWhen was Microsoft established?\tevery field\t-6.035847640207278\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, has expanded its operations in nearly, every field) -> every field (8243ms)\nWhen was Microsoft established?\tthe MS AntiSpyware application\t-6.037779957153527\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft Research, found in, the MS AntiSpyware application) -> the MS AntiSpyware application (8264ms)\nWhen was Microsoft established?\tthe Microsoft Web site\t-6.061259006486779\tWhen was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Press, can be found on, the Microsoft Web site) -> the Microsoft Web site (9233ms)\nWhen was Microsoft established?\tMetro\t-6.068079839430949\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (a former Microsoft designer, was involved in creating, Metro) -> Metro (8264ms)\nWhen was Microsoft established?\tthe fall\t-6.091919942756567\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, will be launched worldwide in, the fall) -> the fall (8281ms)\nWhen was Microsoft established?\tserver software\t-6.123139475974172\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds flaw in, server software) -> server software (8280ms)\nWhen was Microsoft established?\tvarious work fields\t-6.126506797611722\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft access, finds great easy use in, various work fields) -> various work fields (8281ms)\nWhen was Microsoft established?\ta promising collaboration\t-6.130113767539323\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds solace in, a promising collaboration) -> a promising collaboration (8297ms)\nWhen was Microsoft established?\tMassachusetts\t-6.2157321232655836\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, will expand its presence in, Massachusetts) -> Massachusetts (8298ms)\nWhen was Microsoft established?\tthe TechEd office meeting\t-6.227280543393061\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go public in, $x) -> (Microsoft, went public recently in, the TechEd office meeting) -> the TechEd office meeting (8297ms)\nWhen was Microsoft established?\tWindows Installer\t-6.22932429871501\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found in, Windows Installer) -> Windows Installer (8313ms)\nWhen was Microsoft established?\tnow\t-6.278568122482543\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft developers, are in open rebellion, now) -> now (8313ms)\nWhen was Microsoft established?\tSystem Tools\t-6.313676459696275\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (The Microsoft Backup utility, can be found in, System Tools) -> System Tools (8313ms)\nWhen was Microsoft established?\ta position\t-6.411770432256565\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is finding itself in, a position) -> a position (8329ms)\nWhen was Microsoft established?\tthe late 1990s\t-6.63673930232348\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found out in, the late 1990s) -> the late 1990s (8483ms)\nWhen was Microsoft established?\ta special diagnostic mode\t-6.656061731679786\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Windows, can be started in, a special diagnostic mode) -> a special diagnostic mode (8483ms)\nWhen was Microsoft established?\tthe New York metro area\t-6.667163507022316\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, is opening two stores in, the New York metro area) -> the New York metro area (8482ms)\nWhen was Microsoft established?\tthe TechEd conference\t-6.68101357375674\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go public in, $x) -> ('microsoft ', went public recently in, the TechEd conference) -> the TechEd conference (8482ms)\nWhen was Microsoft established?\tthe race\t-6.730291871481285\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (glasses Microsoft, is also launching in, the race) -> the race (8498ms)\nWhen was Microsoft established?\tthe city\t-6.780005499764361\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, can be found in, the city) -> the city (8498ms)\nWhen was Microsoft established?\tthe newer versions\t-6.80380979545211\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft office files, cannot be opened in, the newer versions) -> the newer versions (8498ms)\nWhen was Microsoft established?\tthe caves\t-6.828437826858083\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft FS, has been found in, the caves) -> the caves (8498ms)\nWhen was Microsoft established?\tthe possession\t-6.886109238155619\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft software, were found in, the possession) -> the possession (8514ms)\nWhen was Microsoft established?\tthe download\t-6.923965010648315\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Word OpenOffice, can be found in, the download) -> the download (8514ms)\nWhen was Microsoft established?\tthe products side\t-6.9574445833324905\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, has completely established in, the products side) -> the products side (8514ms)\nWhen was Microsoft established?\tthe next ten years\t-6.9691843132061635\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft, will be created in, the next ten years) -> the next ten years (8514ms)\nWhen was Microsoft established?\tthe same sense\t-6.992014419152749\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (microsoft, is n?t closed in, the same sense) -> the same sense (8530ms)\nWhen was Microsoft established?\tthe right approach\t-6.9975137151296725\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, are taking a lead in finding, the right approach) -> the right approach (8530ms)\nWhen was Microsoft established?\tthe middle\t-7.00376779268697\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Hewlett Packard and Microsoft, were started in, the middle) -> the middle (8530ms)\nWhen was Microsoft established?\tBoulder\t-7.01787963214827\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, expanded its operations in, Boulder) -> Boulder (8530ms)\nWhen was Microsoft established?\tthe edit menu\t-7.026657167109571\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Explorer, can be found in, the edit menu) -> the edit menu (8587ms)\nWhen was Microsoft established?\tthe final analysi\t-7.027968673476025\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (microsoft office product key, was launched in, the final analysi) -> the final analysi (8587ms)\nWhen was Microsoft established?\tthe stock market\t-7.054951500860725\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, is starting a process in, the stock market) -> the stock market (8587ms)\nWhen was Microsoft established?\tthe second half\t-7.0925150712904985\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Expression Web, will be launched in, the second half) -> the second half (8660ms)\nWhen was Microsoft established?\tVerizon\t-7.093820928468793\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds an ally in, Verizon) -> Verizon (8660ms)\nWhen was Microsoft established?\tthe upper left corner\t-7.1597141337128525\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (The Microsoft Office Button, is found in, the upper left corner) -> the upper left corner (8660ms)\nWhen was Microsoft established?\tRedmond\t-7.224826441973464\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have its headquarters in, $x) -> (Microsoft, has its headquarters in, Redmond) -> Redmond (8660ms)\nWhen was Microsoft established?\tthe window\t-7.388617572648799\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (the Microsoft?s strategy, is created in, the window) -> the window (8675ms)\nWhen was Microsoft established?\tthe internet market\t-7.526417703349716\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft?s Bing, is creating a buzz in, the internet market) -> the internet market (8689ms)\nWhen was Microsoft established?\ta rather interesting position\t-7.532298179596973\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds itself in, a rather interesting position) -> a rather interesting position (8689ms)\nWhen was Microsoft established?\ta bid\t-7.564785038486889\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, to expand its Trustworthy Computing in, a bid) -> a bid (8703ms)\nWhen was Microsoft established?\tthe future world\t-7.709699036648879\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft DRM, finds a hospitable home in, the future world) -> the future world (8703ms)\nWhen was Microsoft established?\tthe years\t-7.711994400992252\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand over, $x) -> (Microsoft Research, has expanded over, the years) -> the years (8703ms)\nWhen was Microsoft established?\tthe new age\t-7.826260640771348\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, find its path in, the new age) -> the new age (8718ms)\nWhen was Microsoft established?\tthe next month\t-7.979882617680344\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, expects the deal to close in, the next month) -> the next month (8717ms)\nWhen was Microsoft established?\tthe relationship\t-7.99683127498038\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found its future in, the relationship) -> the relationship (8717ms)\nWhen was Microsoft established?\tthe enterprise\t-8.009289597401612\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (many Microsoft applications, found standard in, the enterprise) -> the enterprise (8718ms)\nWhen was Microsoft established?\tthe post-Windows world\t-8.027729051284483\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, will find its place in, the post-Windows world) -> the post-Windows world (8732ms)\nWhen was Microsoft established?\tthe buisness sector\t-8.074491774750461\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, has found a market in, the buisness sector) -> the buisness sector (8732ms)\nWhen was Microsoft established?\tthe second quarter\t-8.076260147552654\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, expects the deal to close in, the second quarter) -> the second quarter (8732ms)\nWhen was Microsoft established?\tthe new Outlook Web App\t-8.112590997567368\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, incorporate in, $x) -> (A.? Microsoft, has incorporated in, the new Outlook Web App) -> the new Outlook Web App (8732ms)\nWhen was Microsoft established?\tthe same position\t-9.327316137911197\tWhen was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds itself in, the same position) -> the same position (8746ms)\nWhere was Shakespeare born?\tItaly\t-3.1340132230169333\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Italy) -> Italy (7380ms)\nWhere was Shakespeare born?\tEngland\t-3.202588406448478\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, England) -> England (7379ms)\nWhere was Shakespeare born?\tWorcester\t-3.390616684269352\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (7379ms)\nWhere was Shakespeare born?\tStratford\t-3.8193473462424\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford) -> Stratford (7379ms)\nWhere was Shakespeare born?\tKingston\t-4.1295389176559265\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (7443ms)\nWhere was Shakespeare born?\tApril\t-4.16907766590016\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April) -> April (7443ms)\nWhere was Shakespeare born?\tStratford-upon-Avon\t-4.187201889738574\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (7443ms)\nWhere was Shakespeare born?\tJackson\t-4.256698676109865\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (7458ms)\nWhere was Shakespeare born?\tHenley Street\t-4.593510231838309\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (7457ms)\nWhere was Shakespeare born?\tTeaneck\t-4.673035209695007\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (7474ms)\nWhere was Shakespeare born?\tSt . Austell\t-4.7992841505728165\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (7474ms)\nWhere was Shakespeare born?\tStratford-on-Avon\t-4.907570716029436\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (7474ms)\nWhere was Shakespeare born?\ta small town\t-4.9213887486114345\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, a small town) -> a small town (7474ms)\nWhere was Shakespeare born?\tthe Warwickshire town\t-5.192146907395033\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (7487ms)\nWhere was Shakespeare born?\tStratford and today\t-5.215136070037314\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (7487ms)\nWhere was Shakespeare born?\tLatin\t-5.845406190924455\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was better educated in, Latin) -> Latin (8708ms)\nWhere was Shakespeare born?\tApril and World book day\t-6.025712404096037\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (7500ms)\nWhere was Shakespeare born?\tProject Gutenberg\t-6.315404799280729\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be originally from, $x) -> (Shakespeare, were originally drawn from, Project Gutenberg) -> Project Gutenberg (8918ms)\nWhere was Shakespeare born?\tthe town\t-6.378249621932209\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the town) -> the town (7500ms)\nWhere was Shakespeare born?\tthe year\t-6.827586825605374\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the year) -> the year (7500ms)\nWhere was Shakespeare born?\tThailand\t-6.850310838323594\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Shakespeare, has been killed in, Thailand) -> Thailand (9735ms)\nWhere was Shakespeare born?\tAvon\t-6.858865325703308\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (Avon, was the birthplace of, William Shakespeare) -> Avon (8763ms)\nWhere was Shakespeare born?\tthe village\t-6.862954755969891\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the village) -> the village (7500ms)\nWhere was Shakespeare born?\tthe latter half\t-6.998613785352715\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (7500ms)\nWhere was Shakespeare born?\tthe depths\t-7.002474357430202\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (7500ms)\nWhere was Shakespeare born?\tStratford upon Avon\t-7.027510380533754\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (Stratford upon Avon, is the birthplace of, Shakespeare) -> Stratford upon Avon (8994ms)\nWhere was Shakespeare born?\tthirty-five years\t-7.373368065253245\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear about, $x) -> (the Shakespeare, was born about, thirty-five years) -> thirty-five years (9048ms)\nWhere was Shakespeare born?\tApril 1564\t-7.475768974445508\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April 1564) -> April 1564 (7556ms)\nWhere was Shakespeare born?\tApril , 1564\t-7.593915853699872\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (7556ms)\nWhere was Shakespeare born?\tlate April 1564\t-7.6332466217807955\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (7556ms)\nWhere was Shakespeare born?\tVancouver\t-7.650376065869472\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> (a Shakespeare fix, were forced to travel to, Vancouver) -> Vancouver (10338ms)\nWhere was Shakespeare born?\tAustralia\t-7.763688070072128\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> ('s Royal Shakespeare Company, will travel to, Australia) -> Australia (10338ms)\nWhere was Shakespeare born?\tthe county of Warwick\t-7.842791809989508\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (7630ms)\nWhere was Shakespeare born?\t1564\t-7.8660855227106445\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1564) -> 1564 (7630ms)\nWhere was Shakespeare born?\t1554\t-7.980506543786145\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (7630ms)\nWhere was Shakespeare born?\tthe English language\t-8.011937904054435\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was highly educated in, the English language) -> the English language (8709ms)\nWhere was Shakespeare born?\tTemple Grafton church\t-8.05519899660386\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (William Shakespeare, was married in, Temple Grafton church) -> Temple Grafton church (8709ms)\nWhere was Shakespeare born?\ta time\t-8.095385944864809\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (Shakespeare, was born at, a time) -> a time (9251ms)\nWhere was Shakespeare born?\t1529\t-8.196501471692429\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (7644ms)\nWhere was Shakespeare born?\tthe same year\t-8.488673499519965\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (7657ms)\nWhere was Shakespeare born?\tthe start\t-8.558323415165646\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (William Shakespeare, was born at, the start) -> the start (9251ms)\nWhere was Shakespeare born?\ta gang-related shooting\t-8.558935709054095\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Letisha Shakespeare, was killed in, a gang-related shooting) -> a gang-related shooting (9736ms)\nWhere was Shakespeare born?\tThe town\t-8.792808259812714\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (9251ms)\nWhere was Shakespeare born?\tNames\t-8.79387851852314\tWhere was Shakespeare born? -> where be [ shakespeare bear ] ? -> what be shakespeare bear s location ? -> $x: (shakespeare bear, location, $x) -> $x: (shakespeare bear, subject, $x) -> (In real life, unlike in Shakespeare, the sweetness of the rose depends upon the name it bears. Things are not only what they are. They are, in very important respects, what they seem to be., Subjects, Names) -> Names (11124ms)\nWhere was Shakespeare born?\tunser Shakespeare\t-8.802198007691759\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, have be come to, $x) -> (Shakespeare, has come to be known as, unser Shakespeare) -> unser Shakespeare (9558ms)\nWhere was Shakespeare born?\tWhat town\t-8.862167155271013\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (9302ms)\nWhere was Shakespeare born?\tthe editors\t-9.095961344735237\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be away in, $x) -> (Shakespeare, was given away in, the editors) -> the editors (8607ms)\nWhere was Shakespeare born?\tthe work\t-9.175539122177533\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be reborn in, $x) -> (Shakespeare, is truly reborn in, the work) -> the work (8607ms)\nWhere was Shakespeare born?\ta fight\t-9.18926016902251\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Shakespeare, was killed in, a fight) -> a fight (9735ms)\nWhere was Shakespeare born?\ta Taurean sun\t-9.31248123878847\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, bear under, $x) -> (William Shakespeare, were also born under, a Taurean sun) -> a Taurean sun (10006ms)\nWhere was Shakespeare born?\tthe art\t-9.789157783837668\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was well educated in, the art) -> the art (8708ms)\nWhere was Shakespeare born?\tthe law\t-9.79760750146022\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was clearly educated in, the law) -> the law (8709ms)\nWhere was Shakespeare born?\tmusic\t-9.859463453447098\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, have ever be to, $x) -> (No Shakespeare sonnet, has ever been successfully put to, music) -> music (10339ms)\nWhere was Shakespeare born?\ta world\t-9.979862366273121\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, bear into, $x) -> (William Shakespeare, was born into, a world) -> a world (9931ms)\nWhere was Shakespeare born?\tfilm\t-10.242945070685238\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to migrate to, $x) -> (Shakespeare, migrated to, film) -> film (10051ms)\nWhere was Shakespeare born?\tschools\t-10.271173631252385\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> (Shakespeare & Company actor/teachers, travel to, schools) -> schools (10338ms)\nWhere was Shakespeare born?\t1564 ! 2\t-10.96902333196757\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (8466ms)\nWhere was Shakespeare born?\t1564 ! 1 hour ago\t-11.163152600043555\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (8479ms)\nWhere was Shakespeare born?\t1564 ! 5 hours ago\t-11.183553718907506\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (8479ms)\nWhere was Shakespeare born?\t1564 ! 3 hours ago\t-11.183553718907506\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (8479ms)\nWhere was Shakespeare born?\t1582\t-11.400243576359621\tWhere was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (Shakespeare, married her in, 1582) -> 1582 (9559ms)\nWhere was Shakespeare born?\tMormon\t-11.495536588257634\tWhere was Shakespeare born? -> where [ be shakespeare bear ] ? -> what get be shakespeare bear ? -> $x: ($x, get be, shakespeare bear) -> $x: ($x, be, shakespeare bear) -> (Mormon, was writing before, Shakespeare was born) -> Mormon (13791ms)\nWhere was Shakespeare born?\tBeowulf\t-11.524132062921698\tWhere was Shakespeare born? -> where [ be shakespeare bear ] ? -> what get be shakespeare bear ? -> $x: ($x, get be, shakespeare bear) -> $x: ($x, be, shakespeare bear) -> (Beowulf, was written before, Shakespeare was born) -> Beowulf (13792ms)\nWhere was Shakespeare born?\t1585-02-02\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Hamnet Shakespeare, Date of birth, 1585-02-02) -> 1585-02-02 (10998ms)\nWhere was Shakespeare born?\t1893-08-24\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1893-08-24) -> 1893-08-24 (11022ms)\nWhere was Shakespeare born?\t1909-07-25\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Heather Shakespeare, Date of birth, 1909-07-25) -> 1909-07-25 (10846ms)\nWhere was Shakespeare born?\t1571-09-28\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Anne Shakespeare, Date of birth, 1571-09-28) -> 1571-09-28 (10862ms)\nWhere was Shakespeare born?\t1925-04-09\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Frank Shakespeare, Date of birth, 1925-04-09) -> 1925-04-09 (10823ms)\nWhere was Shakespeare born?\t1569-04-15\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Joan Shakespeare, Date of birth, 1569-04-15) -> 1569-04-15 (10998ms)\nWhere was Shakespeare born?\t1906-02-28\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Percy Shakespeare, Date of birth, 1906-02-28) -> 1906-02-28 (10998ms)\nWhere was Shakespeare born?\t1616-11-23\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Shakespeare Quiney, Date of birth, 1616-11-23) -> 1616-11-23 (10823ms)\nWhere was Shakespeare born?\t1558-09-15\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Joan Shakespeare, Date of birth, 1558-09-15) -> 1558-09-15 (10823ms)\nWhere was Shakespeare born?\t1950-04-25\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Malcolm Shakespeare, Date of birth, 1950-04-25) -> 1950-04-25 (10861ms)\nWhere was Shakespeare born?\t1574-03-11\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Richard Shakespeare, Date of birth, 1574-03-11) -> 1574-03-11 (10846ms)\nWhere was Shakespeare born?\t1966-05-11\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Tom Shakespeare, Date of birth, 1966-05-11) -> 1966-05-11 (11022ms)\nWhere was Shakespeare born?\t1562-12-02\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Margaret Shakespeare, Date of birth, 1562-12-02) -> 1562-12-02 (10823ms)\nWhere was Shakespeare born?\t1953-09-27\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Robbie Shakespeare, Date of birth, 1953-09-27) -> 1953-09-27 (11022ms)\nWhere was Shakespeare born?\t1957-03-03\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Nicholas Shakespeare, Date of birth, 1957-03-03) -> 1957-03-03 (10845ms)\nWhere was Shakespeare born?\t1841-02-26\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Shakespeare Hirst, Date of birth, 1841-02-26) -> 1841-02-26 (10846ms)\nWhere was Shakespeare born?\t1966-04-23\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Abraham Shakespeare, Date of birth, 1966-04-23) -> 1966-04-23 (10998ms)\nWhere was Shakespeare born?\t1580-05-03\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Edmund Shakespeare, Date of birth, 1580-05-03) -> 1580-05-03 (10863ms)\nWhere was Shakespeare born?\t1912-09-27\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1912-09-27) -> 1912-09-27 (11022ms)\nWhere was Shakespeare born?\t1977-05-06\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Shannon Shakespeare, Date of birth, 1977-05-06) -> 1977-05-06 (10863ms)\nWhere was Shakespeare born?\t1839-01-26\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Noah Shakespeare, Date of birth, 1839-01-26) -> 1839-01-26 (10998ms)\nWhere was Shakespeare born?\t1897-09-27\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Arthur Shakespeare, Date of birth, 1897-09-27) -> 1897-09-27 (10823ms)\nWhere was Shakespeare born?\t1949-06-03\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Clive Shakespeare, Date of birth, 1949-06-03) -> 1949-06-03 (10998ms)\nWhere was Shakespeare born?\t1952-07-19\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Ivan Shakespeare, Date of birth, 1952-07-19) -> 1952-07-19 (10861ms)\nWhere was Shakespeare born?\t1957-04-09\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Stephan Shakespeare, Date of birth, 1957-04-09) -> 1957-04-09 (10823ms)\nWhere was Shakespeare born?\t1566-10-13\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Gilbert Shakespeare, Date of birth, 1566-10-13) -> 1566-10-13 (11022ms)\nWhere was Shakespeare born?\t1849-06-16\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1849-06-16) -> 1849-06-16 (10846ms)\nWhere was Shakespeare born?\t1930-05-31\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Frank Shakespeare, Date of birth, 1930-05-31) -> 1930-05-31 (10846ms)\nWhere was Shakespeare born?\t1564-04-23\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1564-04-23) -> 1564-04-23 (10861ms)\nWhere was Shakespeare born?\t1963-10-26\t-12.496113682108337\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Craig Shakespeare, Date of birth, 1963-10-26) -> 1963-10-26 (11022ms)\nWhere was Shakespeare born?\t1837-07-19\t-12.543761075146879\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare Hays, Date of birth, 1837-07-19) -> 1837-07-19 (11039ms)\nWhere was Shakespeare born?\t1825-12-25\t-12.543761075146879\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare Hall, Date of birth, 1825-12-25) -> 1825-12-25 (11039ms)\nWhere was Shakespeare born?\t1824-06-01\t-12.543761075146879\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare Burton, Date of birth, 1824-06-01) -> 1824-06-01 (11039ms)\nWhere was Shakespeare born?\t1853-05-07\t-12.582745305814779\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Arthur Henry Shakespeare Lucas, Date of birth, 1853-05-07) -> 1853-05-07 (11039ms)\nWhere was Shakespeare born?\tEternity\t-12.79652535888662\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Eternity, Instance Of, state) (eternity, produce the complete works of, Shakespeare) -> Eternity (13792ms)\nWhere was Shakespeare born?\t1893-09-23\t-12.972587612493768\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Sir Geoffrey Shakespeare, 1st Baronet, Date of birth, 1893-09-23) -> 1893-09-23 (11039ms)\nWhere was Shakespeare born?\tCharm\t-13.00377498709717\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Charm, Instance Of, state of spirit) (CHARM, will be produced at, Orlando Shakespeare) -> Charm (13861ms)\nWhere was Shakespeare born?\tRandom\t-13.011574227175435\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Random, Instance Of, state) (random, could eventually produce the works of, Shakespeare) -> Random (13861ms)\nWhere was Shakespeare born?\tCharmed\t-13.038636686886406\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Charmed, Instance Of, state) (CHARM, will be produced at, Orlando Shakespeare) -> Charmed (13861ms)\nWhere was Shakespeare born?\tPope\t-13.11102726407436\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Pope, Instance Of, head of state) (Pope, produced an errant edition of, William Shakespeare) -> Pope (13901ms)\nWhere was Shakespeare born?\t1531\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (John Shakespeare, Date of birth, 1531) -> 1531 (11072ms)\nWhere was Shakespeare born?\t1600\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1600) -> 1600 (11039ms)\nWhere was Shakespeare born?\t1537\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Mary Shakespeare, Date of birth, 1537) -> 1537 (11057ms)\nWhere was Shakespeare born?\t1603\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Mary Shakespeare, Date of birth, 1603) -> 1603 (11057ms)\nWhere was Shakespeare born?\t1608\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Michael Shakespeare, Date of birth, 1608) -> 1608 (11072ms)\nWhere was Shakespeare born?\t1985\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Letisha Shakespeare, Date of birth, 1985) -> 1985 (11072ms)\nWhere was Shakespeare born?\t1968\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Steven Shakespeare, Date of birth, 1968) -> 1968 (11072ms)\nWhere was Shakespeare born?\t1605\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Thomas Shakespeare, Date of birth, 1605) -> 1605 (11057ms)\nWhere was Shakespeare born?\t1869\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1869) -> 1869 (11071ms)\nWhere was Shakespeare born?\t1950\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1950) -> 1950 (11057ms)\nWhere was Shakespeare born?\t1490\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Richard Shakespeare, Date of birth, 1490) -> 1490 (11057ms)\nWhere was Shakespeare born?\t1948\t-13.29326800534803\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Pam Shakespeare, Date of birth, 1948) -> 1948 (11057ms)\nWhere was Shakespeare born?\tFire\t-13.2991076112617\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Fire, Instance Of, state subject) (Fire, produces, free outdoor Shakespeare) -> Fire (13901ms)\nWhere was Shakespeare born?\t1826\t-13.340915398386574\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare Burton, Date of birth, 1826) -> 1826 (11072ms)\nWhere was Shakespeare born?\tPapp\t-13.409533518013735\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Papp, Instance Of, 1975 graduate of the United States Coast Guard Academy) (Papp, produced musical versions of, William Shakespeare) -> Papp (13901ms)\nWhere was Shakespeare born?\t1927\t-13.769741935733462\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Geoffrey Shakespeare, 2nd Baronet, Date of birth, 1927) -> 1927 (11088ms)\nWhere was Shakespeare born?\tgolden monkey\t-14.087058539691023\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (golden monkey, Instance Of, state protected animal) (one monkey, could produce the complete works of, shakespeare) -> golden monkey (13952ms)\nWhere was Shakespeare born?\tSRTS\t-14.140068366423712\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (SRTS, Instance Of, federal, state) (SRT, also produces, the ' Shakespeare) -> SRTS (13952ms)\nWhere was Shakespeare born?\tSRT\t-14.23274548404028\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (SRT, Instance Of, emergency response group of pre-designated State agency) (SRT, also produces, the ' Shakespeare) -> SRT (13951ms)\nWhere was Shakespeare born?\ttypewriter\t-14.54373929571994\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (typewriter, Instance Of, state property) (typewriters, could produce the works of, Shakespeare) -> typewriter (13987ms)\nWhere was Shakespeare born?\tfire\t-14.650921382304574\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (fire, Instance Of, state service) (Fire, produces, free outdoor Shakespeare) -> fire (13987ms)\nWhere was Shakespeare born?\tkeyboard\t-14.68059174600807\tWhere was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (keyboard, Instance Of, state accessory) (keyboards, would produce the works of, Shakespeare) -> keyboard (13987ms)\nHow many people visit Angkor Wat annually?\tVietnam\t-5.780650374512806\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> (Vietnam, Instance Of, nation of many peoples and religion) (Vietnam, visit, Angkor Wat) -> Vietnam (5786ms)\nHow many people visit Angkor Wat annually?\tCambodia\t-5.834855679078596\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> (Cambodia, Instance Of, peoples culture) (Cambodia, will be visiting, Angkor Wat) -> Cambodia (5786ms)\nHow many people visit Angkor Wat annually?\tcourse\t-7.0343797185780605\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, be a by, people) ($x, visit, Angkor Wat) -> (course, is a common thought by, many people) (course, visit, Angkor Wat) -> course (13594ms)\nHow many people visit Angkor Wat annually?\tyou?ll\t-7.604860081964796\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, modelling, people) ($x, visit, Angkor Wat) -> (you?ll, have to model, successful people) (You?ll, visit, the marvelous Angkor Wat) -> you?ll (16634ms)\nHow many people visit Angkor Wat annually?\tguests\t-7.809406208432081\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, be the type of, people) ($x, visit, Angkor Wat) -> (guests, are the only type of, people) (Guests, will also visit, the impressive Angkor Wat) -> guests (12910ms)\nHow many people visit Angkor Wat annually?\tthe course\t-9.217531695680382\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: (people, drug, $x) ($x, visit, Angkor Wat) -> (people, take the drug over, the course) (course, visit, Angkor Wat) -> the course (16634ms)\nHow many people visit Angkor Wat annually?\tThe issue\t-9.970841967386013\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, be a by, people) ($x, visit, Angkor Wat) -> (The issue, is a critical one followed closely by, people) (issues, visit, Angkor Wat) -> The issue (13595ms)\nHow many people visit Angkor Wat annually?\tthe other people\t-10.020724931612417\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, be the kind of, people) ($x, visit, Angkor Wat) -> (the other people, there were the kind of, people) (the people, want to visit, Angkor Wat) -> the other people (10539ms)\nHow many people visit Angkor Wat annually?\tthe day\t-11.254870829194687\tHow many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: (people, drug, $x) ($x, visit, Angkor Wat) -> (Many people, have to take prescription drugs throughout, the day) (the day, was the visit to, Angkor Wat) -> the day (16646ms)\nWhat did Rachel Carson die of?\tbreast cancer\t-2.4955962525566333\tWhat did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (Rachel Carson, died of, breast cancer) -> breast cancer (2462ms)\nWhat did Rachel Carson die of?\tBreast Cancer\t-2.7185670394231303\tWhat did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (?Rachel Carson, Died of, Breast Cancer) -> Breast Cancer (2463ms)\nWhat did Rachel Carson die of?\tcancer\t-4.518048342433856\tWhat did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (Rachel Carson, died of, cancer) -> cancer (2463ms)\nWhat did Rachel Carson die of?\tSilver Spring\t-6.473976869948759\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died in, Silver Spring) -> Silver Spring (6119ms)\nWhat did Rachel Carson die of?\tApril 14\t-7.632256154178657\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (breast cancer Rachel Carson, died in, April 14) -> April 14 (6119ms)\nWhat did Rachel Carson die of?\tthe public\t-7.882079871137097\tWhat did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> $x: (Rachel Carson, have already have, $x) -> (Rachel Carson, had already awoken, the public) -> the public (5783ms)\nWhat did Rachel Carson die of?\tApril 14 , 1964\t-8.418487916863167\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Resistance Rachel Carson, died on, April 14 , 1964) -> April 14 , 1964 (6474ms)\nWhat did Rachel Carson die of?\t1861\t-8.481368742157969\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson Benson, died, 1861) -> 1861 (6474ms)\nWhat did Rachel Carson die of?\t1964\t-8.513666380666901\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died in, 1964) -> 1964 (6473ms)\nWhat did Rachel Carson die of?\t1965\t-8.531375800357306\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died in, 1965) -> 1965 (6474ms)\nWhat did Rachel Carson die of?\tthe peak\t-8.668147808790621\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died at, the peak) -> the peak (6814ms)\nWhat did Rachel Carson die of?\tBreast cancer\t-10.000525603098245\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what age be rachel carson die ? -> $x: ($x, instance of, age) (rachel carson, die, $x) -> (Breast cancer, Instance Of, disease of ageing) (Rachel Carson, died of, breast cancer) -> Breast cancer (7204ms)\nWhat did Rachel Carson die of?\tthe age of 56\t-11.010077473916649\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died at, the age of 56) -> the age of 56 (7660ms)\nWhat did Rachel Carson die of?\tApril 11, 1964\t-11.839701893458862\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what date do rachel carson die ? -> $x: ($x, instance of, date) (rachel carson, die, $x) -> (April 11, 1964, Instance Of, date) (Resistance Rachel Carson, died on, April 14 , 1964) -> April 11, 1964 (8111ms)\nWhat did Rachel Carson die of?\tSilver Springs\t-12.46197137476543\tWhat did Rachel Carson die of? -> what do [ rachel carson die ] of ? -> what city be rachel carson die in ? -> $x: ($x, instance of, city) (rachel carson, die in, $x) -> (Silver Springs, Instance Of, city) (Rachel Carson, died in, Silver Spring) -> Silver Springs (12027ms)\nWhat did Rachel Carson die of?\tCancer\t-12.875527796747916\tWhat did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what age be rachel carson die ? -> $x: ($x, instance of, age) (rachel carson, die, $x) -> $x: ($x, instance of, age) (rachel carson, be die, $x) -> (Cancer, Instance Of, age disease) (Rachel Carson, was dying of, cancer) -> Cancer (10748ms)\nWhat did Rachel Carson die of?\tSilver Spring MD\t-12.897144417115038\tWhat did Rachel Carson die of? -> what do [ rachel carson die ] of ? -> what city be rachel carson die in ? -> $x: ($x, instance of, city) (rachel carson, die in, $x) -> (Silver Spring MD, Instance Of, city) (Rachel Carson, died in, Silver Spring) -> Silver Spring MD (12067ms)\nWhat is amitriptyline?\tanti-depressants\t-2.2510757560309207\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-depressants) -> anti-depressants (2496ms)\nWhat is amitriptyline?\tanti-anxiety drug\t-2.7705977153768107\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-anxiety drug) -> anti-anxiety drug (2496ms)\nWhat is amitriptyline?\tmood-altering drug\t-2.9272497663919888\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, mood-altering drug) -> mood-altering drug (2496ms)\nWhat is amitriptyline?\tTCAs\t-2.9581344039856834\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, TCAs) -> TCAs (2496ms)\nWhat is amitriptyline?\tanti-psychotic drug\t-2.9587199208851382\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti-psychotic drug) -> anti-psychotic drug (2497ms)\nWhat is amitriptyline?\texcellent med\t-3.0497601448026224\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, excellent med) -> excellent med (2510ms)\nWhat is amitriptyline?\ttertiary tricyclic antidepressant\t-3.0912459898804134\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary tricyclic antidepressant) -> tertiary tricyclic antidepressant (2511ms)\nWhat is amitriptyline?\toral tricyclic antidepressant\t-3.1075231948664266\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, oral tricyclic antidepressant) -> oral tricyclic antidepressant (2510ms)\nWhat is amitriptyline?\tsedative antidepressant drug\t-3.212241060077327\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, sedative antidepressant drug) -> sedative antidepressant drug (2510ms)\nWhat is amitriptyline?\tcase adjuvant analgesic\t-3.217458691751811\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, case adjuvant analgesic) -> case adjuvant analgesic (2511ms)\nWhat is amitriptyline?\ttri-cyclic anti-depressant medication\t-3.2213618189244624\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tri-cyclic anti-depressant medication) -> tri-cyclic anti-depressant medication (2574ms)\nWhat is amitriptyline?\tdrug anti-depressants\t-3.2213618189244624\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug anti-depressants) -> drug anti-depressants (2511ms)\nWhat is amitriptyline?\tBeers criterion medication\t-3.2349215614739153\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, Beers criterion medication) -> Beers criterion medication (2573ms)\nWhat is amitriptyline?\tanticholinergic tricyclic antidepressant\t-3.236091366748348\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anticholinergic tricyclic antidepressant) -> anticholinergic tricyclic antidepressant (2573ms)\nWhat is amitriptyline?\tdaily prophylactic medication\t-3.2452308472693314\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, daily prophylactic medication) -> daily prophylactic medication (2573ms)\nWhat is amitriptyline?\tneuropathic pain drug\t-3.26983040414399\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, neuropathic pain drug) -> neuropathic pain drug (2572ms)\nWhat is amitriptyline?\tre-uptake inhibitor\t-3.2714734060340893\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, re-uptake inhibitor) -> re-uptake inhibitor (2573ms)\nWhat is amitriptyline?\tfirst generation tricyclic antidepressant\t-3.2920372370530897\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, first generation tricyclic antidepressant) -> first generation tricyclic antidepressant (2590ms)\nWhat is amitriptyline?\tclosely related tricyclics\t-3.3031250157432606\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, closely related tricyclics) -> closely related tricyclics (2590ms)\nWhat is amitriptyline?\tfairly complex molecule\t-3.3031250157432606\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, fairly complex molecule) -> fairly complex molecule (2590ms)\nWhat is amitriptyline?\ttertiary tricyclic drug\t-3.3031250157432606\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary tricyclic drug) -> tertiary tricyclic drug (2590ms)\nWhat is amitriptyline?\tstrongly basic antidepressant drug\t-3.312245774590396\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, strongly basic antidepressant drug) -> strongly basic antidepressant drug (2601ms)\nWhat is amitriptyline?\ttricyclic antidepressant in low dose\t-3.312245774590396\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricyclic antidepressant in low dose) -> tricyclic antidepressant in low dose (2601ms)\nWhat is amitriptyline?\tprescription tricyclic antidepressant medication\t-3.312245774590396\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, prescription tricyclic antidepressant medication) -> prescription tricyclic antidepressant medication (2590ms)\nWhat is amitriptyline?\tanti-depressant and anti-epileptic medication\t-3.312245774590396\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti-depressant and anti-epileptic medication) -> anti-depressant and anti-epileptic medication (2590ms)\nWhat is amitriptyline?\tdrug for IC\t-3.312245774590396\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug for IC) -> drug for IC (2602ms)\nWhat is amitriptyline?\tSSRIs\t-3.3255269063935637\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, SSRIs) -> SSRIs (2601ms)\nWhat is amitriptyline?\tnon-narcotic sleep aid\t-3.3328096056093965\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, non-narcotic sleep aid) -> non-narcotic sleep aid (2601ms)\nWhat is amitriptyline?\tanti-migraine prophylactic medication\t-3.339664216766196\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-migraine prophylactic medication) -> anti-migraine prophylactic medication (2601ms)\nWhat is amitriptyline?\tprescribed tricyclic antidepressant\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, prescribed tricyclic antidepressant) -> prescribed tricyclic antidepressant (2627ms)\nWhat is amitriptyline?\tfrequently prescribed medication\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, frequently prescribed medication) -> frequently prescribed medication (2614ms)\nWhat is amitriptyline?\tsimple oral drug\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, simple oral drug) -> simple oral drug (2627ms)\nWhat is amitriptyline?\tbasic pharmaceutical drug\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, basic pharmaceutical drug) -> basic pharmaceutical drug (2614ms)\nWhat is amitriptyline?\tpsyc hotropic agent\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psyc hotropic agent) -> psyc hotropic agent (2626ms)\nWhat is amitriptyline?\ttricylic prescription drug\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricylic prescription drug) -> tricylic prescription drug (2614ms)\nWhat is amitriptyline?\tweak basic drug\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, weak basic drug) -> weak basic drug (2614ms)\nWhat is amitriptyline?\tprophylactic migraine medication\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, prophylactic migraine medication) -> prophylactic migraine medication (2614ms)\nWhat is amitriptyline?\tanticholinergic acting drug\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anticholinergic acting drug) -> anticholinergic acting drug (2614ms)\nWhat is amitriptyline?\tolder generation drug\t-3.3480189711784023\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, older generation drug) -> older generation drug (2627ms)\nWhat is amitriptyline?\tfrequently prescribed antidepressant agent\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, frequently prescribed antidepressant agent) -> frequently prescribed antidepressant agent (2669ms)\nWhat is amitriptyline?\tplacebo and various prescription antidepressant\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, placebo and various prescription antidepressant) -> placebo and various prescription antidepressant (2669ms)\nWhat is amitriptyline?\tdisruptive, tricyclic antidepressant\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, disruptive, tricyclic antidepressant) -> disruptive, tricyclic antidepressant (2653ms)\nWhat is amitriptyline?\tgeneration antidepressant drug of the tricyclic family\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, generation antidepressant drug of the tricyclic family) -> generation antidepressant drug of the tricyclic family (2653ms)\nWhat is amitriptyline?\tmember of the category of drug\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, member of the category of drug) -> member of the category of drug (2627ms)\nWhat is amitriptyline?\tfairly potent inhibitor of serotonin reuptake\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, fairly potent inhibitor of serotonin reuptake) -> fairly potent inhibitor of serotonin reuptake (2639ms)\nWhat is amitriptyline?\tnerve root pain and agent\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, nerve root pain and agent) -> nerve root pain and agent (2669ms)\nWhat is amitriptyline?\ttricyclic and antidepressant drug\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tricyclic and antidepressant drug) -> tricyclic and antidepressant drug (2653ms)\nWhat is amitriptyline?\tdrug therapy for pain\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug therapy for pain) -> drug therapy for pain (2639ms)\nWhat is amitriptyline?\tmember of the family of antidepressant\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, member of the family of antidepressant) -> member of the family of antidepressant (2653ms)\nWhat is amitriptyline?\tsedating tricyclic antidepressant medication\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, sedating tricyclic antidepressant medication) -> sedating tricyclic antidepressant medication (2639ms)\nWhat is amitriptyline?\tsynthetic anti-depressants\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, synthetic anti-depressants) -> synthetic anti-depressants (2639ms)\nWhat is amitriptyline?\tmeds for IC\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, meds for IC) -> meds for IC (2640ms)\nWhat is amitriptyline?\testablished migraine preventive drug\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, established migraine preventive drug) -> established migraine preventive drug (2653ms)\nWhat is amitriptyline?\tpsychoactive drug in monitoring\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychoactive drug in monitoring) -> psychoactive drug in monitoring (2653ms)\nWhat is amitriptyline?\tdrug with sedative effect\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug with sedative effect) -> drug with sedative effect (2639ms)\nWhat is amitriptyline?\teffective migraine prophylactic agent\t-3.357139730025539\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, effective migraine prophylactic agent) -> effective migraine prophylactic agent (2627ms)\nWhat is amitriptyline?\tpotent neurotoxic agent\t-3.3571584516993855\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, potent neurotoxic agent) -> potent neurotoxic agent (2669ms)\nWhat is amitriptyline?\tfirst line drug\t-3.3583008866879025\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, first line drug) -> first line drug (2669ms)\nWhat is amitriptyline?\tfrequently preventive drug\t-3.375437413354202\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, frequently preventive drug) -> frequently preventive drug (2669ms)\nWhat is amitriptyline?\ttertiary amine antidepressant\t-3.375437413354202\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary amine antidepressant) -> tertiary amine antidepressant (2680ms)\nWhat is amitriptyline?\tmember of the group of drug called tricyclic antidepressant\t-3.3845581722013387\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, member of the group of drug called tricyclic antidepressant) -> member of the group of drug called tricyclic antidepressant (2681ms)\nWhat is amitriptyline?\ttricyclic antidepressant medication\t-3.393716375621869\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricyclic antidepressant medication) -> tricyclic antidepressant medication (2681ms)\nWhat is amitriptyline?\tadjuvant analgesic tricyclic anti-depressants\t-3.3982673920635387\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, adjuvant analgesic tricyclic anti-depressants) -> adjuvant analgesic tricyclic anti-depressants (2681ms)\nWhat is amitriptyline?\tpsychotropic drug\t-3.4493682066784794\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychotropic drug) -> psychotropic drug (2681ms)\nWhat is amitriptyline?\tanti depressant\t-3.4573327270880494\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti depressant) -> anti depressant (2681ms)\nWhat is amitriptyline?\ttricyclic drug\t-3.483442890886451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tricyclic drug) -> tricyclic drug (2696ms)\nWhat is amitriptyline?\tgood drug\t-3.560025756645196\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, good drug) -> good drug (2696ms)\nWhat is amitriptyline?\tneuropathic medication\t-3.585385345922262\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, neuropathic medication) -> neuropathic medication (2696ms)\nWhat is amitriptyline?\tprescription medicine\t-3.613063065824922\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, prescription medicine) -> prescription medicine (2696ms)\nWhat is amitriptyline?\tconventional drug\t-3.636614204402626\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, conventional drug) -> conventional drug (2696ms)\nWhat is amitriptyline?\tcommon drug\t-3.638585273770077\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, common drug) -> common drug (2697ms)\nWhat is amitriptyline?\tbig help\t-3.67042683268762\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, big help) -> big help (2709ms)\nWhat is amitriptyline?\tlethal drug\t-3.6724611845512403\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, lethal drug) -> lethal drug (2710ms)\nWhat is amitriptyline?\topioid drug\t-3.6828441314345577\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, opioid drug) -> opioid drug (2710ms)\nWhat is amitriptyline?\tdangerous drug\t-3.687693652086212\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, dangerous drug) -> dangerous drug (2710ms)\nWhat is amitriptyline?\tgood medicine\t-3.68885685839712\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, good medicine) -> good medicine (2710ms)\nWhat is amitriptyline?\twhite pill\t-3.6933435118359217\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, white pill) -> white pill (2721ms)\nWhat is amitriptyline?\tCYP 1A2 inhibitor\t-3.7048032353711333\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, CYP 1A2 inhibitor) -> CYP 1A2 inhibitor (2722ms)\nWhat is amitriptyline?\tbehavioral medicine\t-3.7143086464793873\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, behavioral medicine) -> behavioral medicine (2722ms)\nWhat is amitriptyline?\tricyclic antidepressant\t-3.7143086464793873\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, ricyclic antidepressant) -> ricyclic antidepressant (2722ms)\nWhat is amitriptyline?\tinexpensive medication\t-3.7143086464793873\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, inexpensive medication) -> inexpensive medication (2721ms)\nWhat is amitriptyline?\tdepression medication\t-3.7159214960281526\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, depression medication) -> depression medication (2722ms)\nWhat is amitriptyline?\tpsychotherapeutic drug\t-3.720889072258384\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychotherapeutic drug) -> psychotherapeutic drug (2736ms)\nWhat is amitriptyline?\tdaily medication\t-3.7239151076092964\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, daily medication) -> daily medication (2736ms)\nWhat is amitriptyline?\tgreat medication\t-3.7258593942094755\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, great medication) -> great medication (2736ms)\nWhat is amitriptyline?\toral agent\t-3.7260594075869733\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, oral agent) -> oral agent (2736ms)\nWhat is amitriptyline?\tpowerful drug\t-3.726844886300131\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, powerful drug) -> powerful drug (2736ms)\nWhat is amitriptyline?\tpotent drug\t-3.7275356331238143\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, potent drug) -> potent drug (2736ms)\nWhat is amitriptyline?\tsupportive measure\t-3.7335526451330283\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, supportive measure) -> supportive measure (3169ms)\nWhat is amitriptyline?\tserotonin modulator\t-3.7408426211970003\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, serotonin modulator) -> serotonin modulator (3169ms)\nWhat is amitriptyline?\ttreatment for hypertension\t-4.079152877593093\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, treatment for hypertension) -> treatment for hypertension (3169ms)\nWhat is amitriptyline?\tMutual Pharmceutical Company\t-4.090083910981394\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Mutual Pharmceutical Company, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Mutual Pharmceutical Company (3185ms)\nWhat is amitriptyline?\tBryant Ranch Prepack\t-4.090083910981394\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Bryant Ranch Prepack, Drugs manufactured, Amitriptyline Hydrochloride 75 film coated tablet) -> Bryant Ranch Prepack (3185ms)\nWhat is amitriptyline?\tMajor Pharmaceuticals\t-4.2374753739511135\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Major Pharmaceuticals, Drugs manufactured, Amitriptyline Hydrochloride 25 film coated tablet) -> Major Pharmaceuticals (3250ms)\nWhat is amitriptyline?\tMutual Pharmaceutical\t-4.2374753739511135\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Mutual Pharmaceutical, Drugs manufactured, Amitriptyline Hydrochloride 25 film coated tablet) -> Mutual Pharmaceutical (3236ms)\nWhat is amitriptyline?\tDispensing Solutions\t-4.2374753739511135\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Dispensing Solutions, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Dispensing Solutions (3185ms)\nWhat is amitriptyline?\tBlenheim Pharmacal\t-4.2374753739511135\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Blenheim Pharmacal, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Blenheim Pharmacal (3250ms)\nWhat is amitriptyline?\tRebel Distributors\t-4.2374753739511135\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Rebel Distributors, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Rebel Distributors (3250ms)\nWhat is amitriptyline?\tPreferred Pharmaceuticals\t-4.2374753739511135\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Preferred Pharmaceuticals, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Preferred Pharmaceuticals (3236ms)\nWhat is amitriptyline?\tCardinal Health\t-4.2374753739511135\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Cardinal Health, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Cardinal Health (3250ms)\nWhat is amitriptyline?\tPregnancy Category C (FDA)\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Pregnancy Category C (FDA), Drugs in this category, Amitriptyline) -> Pregnancy Category C (FDA) (3336ms)\nWhat is amitriptyline?\tPhysicians Total Care\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Physicians Total Care, Drugs manufactured, Amitriptyline Hydrochloride 150 film coated tablet) -> Physicians Total Care (3325ms)\nWhat is amitriptyline?\tH.J. Harkins Company\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (H.J. Harkins Company, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> H.J. Harkins Company (3326ms)\nWhat is amitriptyline?\tNCS HEALTHCARE OF KENTUCKY INC\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (NCS HEALTHCARE OF KENTUCKY INC, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> NCS HEALTHCARE OF KENTUCKY INC (3275ms)\nWhat is amitriptyline?\tStat Rx Usa\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Stat Rx Usa, Drugs manufactured, Amitriptyline Hydrochloride 75 film coated tablet) -> Stat Rx Usa (3336ms)\nWhat is amitriptyline?\tSt Marys Medical Park Pharmacy\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (St Marys Medical Park Pharmacy, Drugs manufactured, Amitriptyline Hydrochloride 50 tablet) -> St Marys Medical Park Pharmacy (3336ms)\nWhat is amitriptyline?\tContract Pharmacy Services-PA\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Contract Pharmacy Services-PA, Drugs manufactured, Amitriptyline Hydrochloride 100 film coated tablet) -> Contract Pharmacy Services-PA (3264ms)\nWhat is amitriptyline?\tPD-Rx Pharmaceuticals\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (PD-Rx Pharmaceuticals, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> PD-Rx Pharmaceuticals (3325ms)\nWhat is amitriptyline?\tLake Erie Medical\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Lake Erie Medical, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Lake Erie Medical (3290ms)\nWhat is amitriptyline?\tUDL Laboratories Inc\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (UDL Laboratories Inc, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> UDL Laboratories Inc (3325ms)\nWhat is amitriptyline?\tMylan Laboratories Inc.\t-4.32175118569865\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Mylan Laboratories Inc., Drugs manufactured, Amitriptyline Hydrochloride 25 film coated tablet) -> Mylan Laboratories Inc. (3291ms)\nWhat is amitriptyline?\tTCAD\t-4.34984312294783\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, TCAD) -> TCAD (3336ms)\nWhat is amitriptyline?\tMed Health Pharma\t-4.3655308281649035\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Med Health Pharma, Drugs manufactured, Amitriptyline Hydrochloride 100 film coated tablet) -> Med Health Pharma (3336ms)\nWhat is amitriptyline?\tTricyclic antidepressant\t-4.524961692812843\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: (amitriptyline, pharmacological class, $x) -> (Amitriptyline, Pharmacological class, Tricyclic antidepressant) -> Tricyclic antidepressant (3590ms)\nWhat is amitriptyline?\tDrug\t-4.958744983582635\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Drug, Drug formulations in this category, Amitriptyline hydrochloride 50 tablet) -> Drug (3659ms)\nWhat is amitriptyline?\tOral\t-4.958744983582635\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Oral, Drug formulations, Amitriptyline hydrochloride 150 tablet) -> Oral (3659ms)\nWhat is amitriptyline?\tOval\t-4.958744983582635\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Oval, Drugs with this shape, Amitriptyline Hydrochloride 150 tablet) -> Oval (3659ms)\nWhat is amitriptyline?\tRemedyrepack\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Remedyrepack, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Remedyrepack (4478ms)\nWhat is amitriptyline?\tLimbitrol\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Limbitrol, Canonical drug, Chlordiazepoxide/Amitriptyline) -> Limbitrol (3658ms)\nWhat is amitriptyline?\tQualitest\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Qualitest, Drugs manufactured, Amitriptyline Hydrochloride 75 film coated tablet) -> Qualitest (4478ms)\nWhat is amitriptyline?\tSandoz\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Sandoz, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Sandoz (4453ms)\nWhat is amitriptyline?\tChlordiazepoxide\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Chlordiazepoxide, Active moiety of drug, Chlordiazepoxide/Amitriptyline) -> Chlordiazepoxide (3671ms)\nWhat is amitriptyline?\tCircle\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Circle, Drugs with this shape, Amitriptyline Hydrochloride 50 tablet) -> Circle (4478ms)\nWhat is amitriptyline?\tPhenothiazine\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: (amitriptyline, pharmacological class, $x) -> (Perphenazine/Amitriptyline, Pharmacological class, Phenothiazine) -> Phenothiazine (3684ms)\nWhat is amitriptyline?\tAmitriptyline\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Amitriptyline, Active moiety of drug, Chlordiazepoxide/Amitriptyline) -> Amitriptyline (3739ms)\nWhat is amitriptyline?\tCholine\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Choline, Active moiety of drug, Amitriptyline/Choline) -> Choline (3684ms)\nWhat is amitriptyline?\tBenzodiazepine\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Benzodiazepine, Drugs, Chlordiazepoxide/Amitriptyline) -> Benzodiazepine (4478ms)\nWhat is amitriptyline?\tPerphenazine\t-5.013469536665451\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Perphenazine, Active moiety of drug, Perphenazine/Amitriptyline) -> Perphenazine (4454ms)\nWhat is amitriptyline?\tdrug\t-5.564470842099775\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, drug) -> drug (4478ms)\nWhat is amitriptyline?\tmedicine\t-5.647343748306392\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, medicine) -> medicine (4478ms)\nWhat is amitriptyline?\tdepressant\t-5.702348444620621\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, depressant) -> depressant (4494ms)\nWhat is amitriptyline?\ttranquilizer\t-5.844573493130415\tWhat is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tranquilizer) -> tranquilizer (4494ms)\nWhat is amitriptyline?\ta very few\t-9.036178194912129\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very few) -> a very few (4494ms)\nWhat is amitriptyline?\ta very low\t-9.22490457444427\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very low) -> a very low (4494ms)\nWhat is amitriptyline?\tself-stimulation\t-9.38620740896799\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (self-stimulation, was restored with, amitriptyline) -> self-stimulation (4494ms)\nWhat is amitriptyline?\tdry mouth\t-9.518427844252331\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are, dry mouth) -> dry mouth (4494ms)\nWhat is amitriptyline?\tproblem-solving therapy\t-9.619582495758385\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (problem-solving therapy, were as effective as, amitriptyline) -> problem-solving therapy (4509ms)\nWhat is amitriptyline?\tan overdose\t-9.624300555649656\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, an overdose) -> an overdose (4509ms)\nWhat is amitriptyline?\tStraightforward Guide\t-9.632295355393637\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Straightforward Guide, is, Amitriptyline) -> Straightforward Guide (4509ms)\nWhat is amitriptyline?\ttension-type headaches\t-9.63575145555033\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (tension-type headaches, can be treated with, amitriptyline) -> tension-type headaches (4509ms)\nWhat is amitriptyline?\tGeneric Elavil\t-9.648702908732943\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Generic Elavil, is, Amitriptyline) -> Generic Elavil (4509ms)\nWhat is amitriptyline?\tserotonin syndrome\t-9.659458032240886\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (serotonin syndrome, have been reported with, amitriptyline) -> serotonin syndrome (4509ms)\nWhat is amitriptyline?\tspinal manipulation\t-9.708655088537254\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (spinal manipulation, was as effective as, Amitriptyline) -> spinal manipulation (4525ms)\nWhat is amitriptyline?\ta very\t-9.712518929431047\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very) -> a very (4525ms)\nWhat is amitriptyline?\tan antidepressant\t-9.735317213356785\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant) -> an antidepressant (4525ms)\nWhat is amitriptyline?\tan antidepressant ,\t-9.741682989988371\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant ,) -> an antidepressant , (4525ms)\nWhat is amitriptyline?\textreme weight gain\t-9.744713050715111\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are, extreme weight gain) -> extreme weight gain (4525ms)\nWhat is amitriptyline?\tgood treatment choices\t-9.746360320810032\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, may be, good treatment choices) -> good treatment choices (4525ms)\nWhat is amitriptyline?\ta very popular drug\t-9.768326353830501\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very popular drug) -> a very popular drug (4540ms)\nWhat is amitriptyline?\ta group\t-9.794056039759448\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is in, a group) -> a group (4540ms)\nWhat is amitriptyline?\ta very interesting drug\t-9.821148521557424\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very interesting drug) -> a very interesting drug (4540ms)\nWhat is amitriptyline?\ta very few hereditary causes\t-9.868976376552073\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very few hereditary causes) -> a very few hereditary causes (4540ms)\nWhat is amitriptyline?\ttricyclic antidepressant\t-9.87160088819385\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is a type of, tricyclic antidepressant) -> tricyclic antidepressant (4540ms)\nWhat is amitriptyline?\tan anti-depressant drug\t-9.879290176771718\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, an anti-depressant drug) -> an anti-depressant drug (4540ms)\nWhat is amitriptyline?\tA common protocol\t-9.901364064047554\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (A common protocol, is to give, amitriptyline) -> A common protocol (4598ms)\nWhat is amitriptyline?\tan oral and parenteral tertiary\t-9.906996918822175\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an oral and parenteral tertiary) -> an oral and parenteral tertiary (4599ms)\nWhat is amitriptyline?\ta comprehensive Canadian\t-9.927429073949181\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a comprehensive Canadian) -> a comprehensive Canadian (4599ms)\nWhat is amitriptyline?\tside effects\t-9.947538862635854\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is a drug having the side effect, side effects) -> side effects (4599ms)\nWhat is amitriptyline?\tchronic tension headaches\t-9.952368771009409\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (chronic tension headaches, are, Amitriptyline and Mirtazapine) -> chronic tension headaches (4599ms)\nWhat is amitriptyline?\tNortriptyline\t-9.982418705319073\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Nortriptyline, is as effective as, amitriptyline) -> Nortriptyline (4598ms)\nWhat is amitriptyline?\tAcupuncture\t-10.002488220639444\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Acupuncture, is comparable with, amitriptyline) -> Acupuncture (4776ms)\nWhat is amitriptyline?\t100\t-10.005091177477482\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, 100) -> 100 (4777ms)\nWhat is amitriptyline?\tsimilar side effects\t-10.012821867781852\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (similar side effects, was worse with, amitriptyline) -> similar side effects (4777ms)\nWhat is amitriptyline?\tHaloperidol\t-10.039952207471902\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Haloperidol, was as effective as, amitriptyline) -> Haloperidol (4777ms)\nWhat is amitriptyline?\ta very low price\t-10.042845401876498\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very low price) -> a very low price (4777ms)\nWhat is amitriptyline?\t75 mg/day\t-10.052540013121897\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, 75 mg/day) -> 75 mg/day (4784ms)\nWhat is amitriptyline?\ta very powerful drug related questions\t-10.083801728319218\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very powerful drug related questions) -> a very powerful drug related questions (5177ms)\nWhat is amitriptyline?\tlow doses and act\t-10.096180496041455\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are used in, low doses and act) -> low doses and act (5178ms)\nWhat is amitriptyline?\tRiboflavin\t-10.13105809809954\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Riboflavin, are also recommended along with, amitriptyline) -> Riboflavin (5179ms)\nWhat is amitriptyline?\ta very small , hearing and balance\t-10.143057941596556\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very small , hearing and balance) -> a very small , hearing and balance (5178ms)\nWhat is amitriptyline?\ta need\t-10.150649171811297\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, was developed out of, a need) -> a need (5178ms)\nWhat is amitriptyline?\tcardiac function\t-10.159451859547254\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is to impair, cardiac function) -> cardiac function (5196ms)\nWhat is amitriptyline?\t79\t-10.172325508464171\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (79, are, amitriptyline tablets price) -> 79 (5195ms)\nWhat is amitriptyline?\tthe GI tract\t-10.179787059100821\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is well absorbed from, the GI tract) -> the GI tract (5196ms)\nWhat is amitriptyline?\tFDA category C. Patients\t-10.195210690521645\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is classified as, FDA category C. Patients) -> FDA category C. Patients (5196ms)\nWhat is amitriptyline?\tseveral times\t-10.20277757292623\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, may be taken, several times) -> several times (5197ms)\nWhat is amitriptyline?\tIC/PBS patients\t-10.207604392113327\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, seems to be most effective for, IC/PBS patients) -> IC/PBS patients (5218ms)\nWhat is amitriptyline?\ta majority\t-10.23109143800777\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is usually the first choice for, a majority) -> a majority (5218ms)\nWhat is amitriptyline?\tan antidepressant medication\t-10.25526401085372\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant medication) -> an antidepressant medication (5218ms)\nWhat is amitriptyline?\tLouis PERIACTIN\t-10.263293886642801\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Louis PERIACTIN, was put on, Amitriptyline 10 mg) -> Louis PERIACTIN (5218ms)\nWhat is amitriptyline?\tan antidepressant drug\t-10.271179576882638\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant drug) -> an antidepressant drug (5218ms)\nWhat is amitriptyline?\ta first line agent\t-10.281941566574003\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is often used as, a first line agent) -> a first line agent (5235ms)\nWhat is amitriptyline?\ta first generation\t-10.287028857118942\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a first generation) -> a first generation (5235ms)\nWhat is amitriptyline?\tClomipramine\t-10.287149144340919\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Clomipramine, would be worth a trial instead of, Amitriptyline) -> Clomipramine (5235ms)\nWhat is amitriptyline?\ta very expensive\t-10.308185026129479\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very expensive) -> a very expensive (5235ms)\nWhat is amitriptyline?\t30 to 50 %\t-10.319071312065768\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is about, 30 to 50 %) -> 30 to 50 % (5235ms)\nWhat is amitriptyline?\ta very dangerous\t-10.328586144993432\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very dangerous) -> a very dangerous (5235ms)\nWhat is amitriptyline?\ta tricyclic antidepressant\t-10.33398329489943\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a tricyclic antidepressant) -> a tricyclic antidepressant (5550ms)\nWhat is amitriptyline?\tsuch medication\t-10.340837607049707\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (such medication, is, Amitriptyline Generic Tablets) -> such medication (5550ms)\nWhat is amitriptyline?\tTRAMADOL\t-10.348540797741425\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (TRAMADOL, was on, Amitriptyline) -> TRAMADOL (5551ms)\nWhat is amitriptyline?\ta day\t-10.352863969903936\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, only needs to be taken once, a day) -> a day (5551ms)\nWhat is amitriptyline?\tthe 7 days\t-10.363281159143545\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the 7 days, am still taking, the amitriptyline) -> the 7 days (5550ms)\nWhat is amitriptyline?\ta useful prophylactic\t-10.363954075357949\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a useful prophylactic) -> a useful prophylactic (5551ms)\nWhat is amitriptyline?\tthe American Academy\t-10.397798697432567\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is listed by, the American Academy) -> the American Academy (5650ms)\nWhat is amitriptyline?\tExcessive saliva\t-10.415320202411769\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Excessive saliva, can be treated with, amitriptyline) -> Excessive saliva (5651ms)\nWhat is amitriptyline?\thealthy volunteers\t-10.421662421948977\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (healthy volunteers, were incubated with, amitriptyline) -> healthy volunteers (5651ms)\nWhat is amitriptyline?\t7/2/11 10:22\t-10.454035556016699\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (7/2/11 10:22, AM Tracked by, Amitriptyline) -> 7/2/11 10:22 (5651ms)\nWhat is amitriptyline?\tBritain\t-10.46618122754136\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Britain, is, that sell amitriptyline) -> Britain (5650ms)\nWhat is amitriptyline?\tShowings\t-10.46753079751587\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Showings, are, amitriptyline hlc) -> Showings (5650ms)\nWhat is amitriptyline?\ta good drug\t-10.469109059220854\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a good drug) -> a good drug (5779ms)\nWhat is amitriptyline?\tan antidepressants\t-10.487037781066341\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressants) -> an antidepressants (5779ms)\nWhat is amitriptyline?\tvgx rats\t-10.526887611731762\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (vgx rats, was also attenuated by, gabapentin and amitriptyline) -> vgx rats (5779ms)\nWhat is amitriptyline?\ta tricyclic\t-10.589342663717456\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, a tricyclic) -> a tricyclic (5779ms)\nWhat is amitriptyline?\tan anti-depressant\t-10.601493971478565\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, an anti-depressant) -> an anti-depressant (5779ms)\nWhat is amitriptyline?\ta Tricyclic Antidepressant\t-10.64061561614947\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a Tricyclic Antidepressant) -> a Tricyclic Antidepressant (5779ms)\nWhat is amitriptyline?\tExamples of Tricyclic antidepressants\t-10.685441736827098\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Examples of Tricyclic antidepressants, are, amitriptyline) -> Examples of Tricyclic antidepressants (5803ms)\nWhat is amitriptyline?\tElavil\t-10.738793107328325\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Elavil, is the brand name for, Amitriptyline) -> Elavil (5803ms)\nWhat is amitriptyline?\tmore effective than placebo\t-10.789432858842083\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, was, more effective than placebo) -> more effective than placebo (5803ms)\nWhat is amitriptyline?\ta class of medications\t-10.812201516211887\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is in, a class of medications) -> a class of medications (5804ms)\nWhat is amitriptyline?\tchildren and adolescents\t-10.830820273003106\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (children and adolescents, is available for, amitriptyline) -> children and adolescents (5803ms)\nWhat is amitriptyline?\tAmytriptyline\t-10.850776177068749\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amytriptyline, is a common misspelling of, amitriptyline) -> Amytriptyline (5821ms)\nWhat is amitriptyline?\tAmitriptilyne\t-10.850776177068749\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amitriptilyne, is a common misspelling of, amitriptyline) -> Amitriptilyne (5820ms)\nWhat is amitriptyline?\tAmytriptiline\t-10.850776177068749\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amytriptiline, is a common misspelling of, amitriptyline) -> Amytriptiline (5820ms)\nWhat is amitriptyline?\tAmytripyline\t-10.850776177068749\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amytripyline, is a common misspelling of, amitriptyline) -> Amytripyline (5820ms)\nWhat is amitriptyline?\tAmitryptyline\t-10.862762745700277\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amitryptyline, is an alternate name for, Amitriptyline) -> Amitryptyline (5820ms)\nWhat is amitriptyline?\ttreat depression and anxiety\t-10.880250028114382\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to, treat depression and anxiety) -> treat depression and anxiety (5857ms)\nWhat is amitriptyline?\tSomebody\t-10.892904926001139\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Somebody, else may be best suited by, 10 mg amitriptyline) -> Somebody (5857ms)\nWhat is amitriptyline?\tLennox\t-10.900291247957696\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Lennox, was quite rightly put on, Amitriptyline) -> Lennox (5857ms)\nWhat is amitriptyline?\tserious side effects\t-10.95775627302724\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, is more likely to have, serious side effects) -> serious side effects (5857ms)\nWhat is amitriptyline?\tAUC\t-10.972838846488303\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (AUC, Instance Of, pharmacokinetic parameter of amitriptyline) -> AUC (5857ms)\nWhat is amitriptyline?\ta treatment\t-11.052998032657143\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has also been used as, a treatment) -> a treatment (5874ms)\nWhat is amitriptyline?\tAmiKet\t-11.071951657205577\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (AmiKet, Instance Of, prescription, topical analgesic cream containing 4% amitriptyline and 2% ketamine) -> AmiKet (5874ms)\nWhat is amitriptyline?\tAmitriptyline HCI\t-11.114434638873137\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitriptyline HCI, Instance Of, common misspelling and variation of amitriptyline) -> Amitriptyline HCI (5874ms)\nWhat is amitriptyline?\ta much better safety profile\t-11.125059550137546\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, has, a much better safety profile) -> a much better safety profile (5874ms)\nWhat is amitriptyline?\tConvenience. bodies\t-11.181468287868048\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Convenience. bodies, Instance Of, can-yoy-take-amitriptyline-with-nexium) -> Convenience. bodies (5874ms)\nWhat is amitriptyline?\tI t\t-11.181468287868048\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (I t, Instance Of, definite side effect of the amitriptyline) -> I t (5874ms)\nWhat is amitriptyline?\tPERIACTIN\t-11.195971118804312\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (PERIACTIN, was put on, Amitriptyline 10 mg) -> PERIACTIN (5961ms)\nWhat is amitriptyline?\thair loss\t-11.222293218849442\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has caused, hair loss) -> hair loss (5961ms)\nWhat is amitriptyline?\tNational Data Bank for Rheumatic Diseases\t-11.22636224330319\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (National Data Bank for Rheumatic Diseases, Instance Of, world-renowned, non-profit, independent research group Amitriptyline 90 Pills 25 Mg 54.95) -> National Data Bank for Rheumatic Diseases (5962ms)\nWhat is amitriptyline?\tBudesonide/formoterol\t-11.22636224330319\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Budesonide/formoterol, Instance Of, Buy buy amitriptyline) -> Budesonide/formoterol (5961ms)\nWhat is amitriptyline?\tbiological half-life\t-11.24281330836353\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (biological half-life, Instance Of, pharmacokinetic parameter of amitriptyline) -> biological half-life (5961ms)\nWhat is amitriptyline?\tvolume of distribution\t-11.24281330836353\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (volume of distribution, Instance Of, pharmacokinetic parameter of amitriptyline) -> volume of distribution (5961ms)\nWhat is amitriptyline?\tHeart Rate Increase\t-11.26748990534119\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Heart Rate Increase, Instance Of, Amitriptyline side effect) -> Heart Rate Increase (6031ms)\nWhat is amitriptyline?\tmore side effects\t-11.30780971733623\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, more side effects) -> more side effects (6031ms)\nWhat is amitriptyline?\tan NNT\t-11.313329109749429\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (neuropathic pain.Amitriptyline, has, an NNT) -> an NNT (6030ms)\nWhat is amitriptyline?\tWeight gain\t-11.339784839547098\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Weight gain, Instance Of, potential side effect of amitriptyline) -> Weight gain (6031ms)\nWhat is amitriptyline?\tgreater antihistaminic effects\t-11.342293408597357\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, greater antihistaminic effects) -> greater antihistaminic effects (6080ms)\nWhat is amitriptyline?\ta fairly high overdose rate\t-11.34918897472204\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Comments Amitriptyline, has, a fairly high overdose rate) -> a fairly high overdose rate (6080ms)\nWhat is amitriptyline?\ta tricyclic antidepressant TCA\t-11.401994832179959\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a tricyclic antidepressant TCA) -> a tricyclic antidepressant TCA (6100ms)\nWhat is amitriptyline?\tmore than 50 years\t-11.415013757379649\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has been prescribed for, more than 50 years) -> more than 50 years (6100ms)\nWhat is amitriptyline?\ta prominent sedative action\t-11.421265789070135\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, had, a prominent sedative action) -> a prominent sedative action (6100ms)\nWhat is amitriptyline?\ta class of drugs\t-11.421951427519703\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is in, a class of drugs) -> a class of drugs (6100ms)\nWhat is amitriptyline?\ttreat symptoms of depression\t-11.423495331599302\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to, treat symptoms of depression) -> treat symptoms of depression (6100ms)\nWhat is amitriptyline?\ta coma\t-11.4296568872095\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (The patient using amitriptyline, may go into, a coma) -> a coma (6100ms)\nWhat is amitriptyline?\tEpiCept NP-1 Cream\t-11.433134430555835\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (EpiCept NP-1 Cream, Instance Of, patented formulation containing two FDA-approved drugs, amitriptyline and ketamine) -> EpiCept NP-1 Cream (6154ms)\nWhat is amitriptyline?\ta group of drugs\t-11.456827370573833\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is in, a group of drugs) -> a group of drugs (6154ms)\nWhat is amitriptyline?\tNeither drug\t-11.460308360345813\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Neither drug, are rediscovering, amitriptyline) -> Neither drug (6153ms)\nWhat is amitriptyline?\tit has a tendency\t-11.473160720705575\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, should be avoided because, it has a tendency) -> it has a tendency (6153ms)\nWhat is amitriptyline?\textremely sedating\t-11.486880379881878\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, extremely sedating) -> extremely sedating (6154ms)\nWhat is amitriptyline?\tdrowsiness\t-11.489785610401476\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are, drowsiness) -> drowsiness (6175ms)\nWhat is amitriptyline?\tharmful to an unborn baby\t-11.504474763612375\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, may be, harmful to an unborn baby) -> harmful to an unborn baby (6175ms)\nWhat is amitriptyline?\tseveral times a day\t-11.504474763612375\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, may be taken, several times a day) -> several times a day (6175ms)\nWhat is amitriptyline?\tNP-1\t-11.506992099653875\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (NP-1, Instance Of, patented formulation containing two FDA-approved drugs, amitriptyline) -> NP-1 (6175ms)\nWhat is amitriptyline?\tpatients\t-11.519856577196773\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (patients, are rediscovering, amitriptyline) -> patients (6192ms)\nWhat is amitriptyline?\tan antidepressant used to treat depression\t-11.520864228676798\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant used to treat depression) -> an antidepressant used to treat depression (6192ms)\nWhat is amitriptyline?\ta member of the class of drugs\t-11.520864228676798\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a member of the class of drugs) -> a member of the class of drugs (6192ms)\nWhat is amitriptyline?\tEpiCept NP-1\t-11.533253380092479\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (EpiCept NP-1, Instance Of, topical analgesic cream containing two FDA-approved drugs, amitriptyline and ketamine) -> EpiCept NP-1 (6192ms)\nWhat is amitriptyline?\tblurred vision\t-11.538637204321898\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (blurred vision, Instance Of, Amitriptyline's most common side-effects) -> blurred vision (6192ms)\nWhat is amitriptyline?\tExamples\t-11.546436998828243\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Examples, are, amitriptyline) -> Examples (6212ms)\nWhat is amitriptyline?\tMylan 277\t-11.574025748648786\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Mylan 277, Instance Of, Amitriptyline) -> Mylan 277 (6212ms)\nWhat is amitriptyline?\tside effect\t-11.58353115975704\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (side effect, Instance Of, information on Amitriptyline) -> side effect (6212ms)\nWhat is amitriptyline?\tdrugging tablet\t-11.606016143813765\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (low amitriptyline, have, drugging tablet) -> drugging tablet (6211ms)\nWhat is amitriptyline?\tEpiCept? NP-1\t-11.618919704083929\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (EpiCept? NP-1, Instance Of, topical analgesic cream containing two FDA-approved drugs, amitriptyline and ketamine) -> EpiCept? NP-1 (6232ms)\nWhat is amitriptyline?\tearlier studies\t-11.649341857192741\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (? Amitriptyline or Pamelor, had, earlier studies) -> earlier studies (6232ms)\nWhat is amitriptyline?\t2010\t-11.65834932118381\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (2010, is filed under, Amitriptyline Review) -> 2010 (6232ms)\nWhat is amitriptyline?\tadverse effects\t-11.669778143446823\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has the highest rate of, adverse effects) -> adverse effects (6250ms)\nWhat is amitriptyline?\ta generic alternative\t-11.67833379954545\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, a generic alternative) -> a generic alternative (6251ms)\nWhat is amitriptyline?\tsleep issues\t-11.72117003964783\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is prescribed for, sleep issues) -> sleep issues (6250ms)\nWhat is amitriptyline?\ttreat depression\t-11.722269401702862\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to, treat depression) -> treat depression (6250ms)\nWhat is amitriptyline?\ttreating depression\t-11.73403592686555\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used for, treating depression) -> treating depression (6251ms)\nWhat is amitriptyline?\tsimilar effects\t-11.751024558173928\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, had, similar effects) -> similar effects (6267ms)\nWhat is amitriptyline?\tthe first choice drug\t-11.773460979797907\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, the first choice drug) -> the first choice drug (6267ms)\nWhat is amitriptyline?\t313.87\t-11.774034334778577\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline HCl, has a molecular weight of, 313.87) -> 313.87 (6267ms)\nWhat is amitriptyline?\tsleep disturbances\t-11.795234457953999\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, may have a better effect on, sleep disturbances) -> sleep disturbances (6267ms)\nWhat is amitriptyline?\ta moderate effect\t-11.812696704297734\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, a moderate effect) -> a moderate effect (6267ms)\nWhat is amitriptyline?\telderly patients\t-11.813996287027681\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, should be avoided in, elderly patients) -> elderly patients (6282ms)\nWhat is amitriptyline?\tthe most widely researched prophylactic agent\t-11.820149949234931\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the most widely researched prophylactic agent) -> the most widely researched prophylactic agent (6282ms)\nWhat is amitriptyline?\toxycodone\t-11.825509505700998\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (oxycodone, were unaffected by, amitriptyline) -> oxycodone (6282ms)\nWhat is amitriptyline?\tthe tricyclic\t-11.830431920483598\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the tricyclic) -> the tricyclic (6282ms)\nWhat is amitriptyline?\tthe boxed warning\t-11.832036729646779\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, has been shown to, the boxed warning) -> the boxed warning (6282ms)\nWhat is amitriptyline?\tThe best evidence\t-11.834962619318386\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (The best evidence, is for, amitriptyline) -> The best evidence (6283ms)\nWhat is amitriptyline?\tthe generic form\t-11.84631426418477\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the generic form) -> the generic form (6307ms)\nWhat is amitriptyline?\ta false positive\t-11.871937983705628\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has shown up as, a false positive) -> a false positive (6307ms)\nWhat is amitriptyline?\tNortiptyline\t-11.873186638834849\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Nortiptyline, Instance Of, metabolite of amitriptyline) -> Nortiptyline (6307ms)\nWhat is amitriptyline?\tAmitriptoline\t-11.873186638834849\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitriptoline, Instance Of, common misspelling of amitriptyline) -> Amitriptoline (6307ms)\nWhat is amitriptyline?\tthe breast milk\t-11.874545692966539\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is excreted in, the breast milk) -> the breast milk (6307ms)\nWhat is amitriptyline?\tthe prototypical tertiary amine\t-11.87475153439068\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the prototypical tertiary amine) -> the prototypical tertiary amine (6307ms)\nWhat is amitriptyline?\tthe most widely used TCA\t-11.898450858013954\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the most widely used TCA) -> the most widely used TCA (6324ms)\nWhat is amitriptyline?\tthe few people\t-11.899901268925863\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the few people, was on, Amitriptyline) -> the few people (6325ms)\nWhat is amitriptyline?\tDosulepin\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Dosulepin, Instance Of, analog of amitriptyline) -> Dosulepin (6343ms)\nWhat is amitriptyline?\tRanitidine\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Ranitidine, Instance Of, clomipramine vs amitriptyline of the modality class h2 antagonist) -> Ranitidine (6343ms)\nWhat is amitriptyline?\tAmytriptaline\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amytriptaline, Instance Of, common misspelling of amitriptyline) -> Amytriptaline (6343ms)\nWhat is amitriptyline?\tButalbital\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Butalbital, Instance Of, drug amitriptyline Elavil Etrafon clomipramine medicine) -> Butalbital (6552ms)\nWhat is amitriptyline?\tReasons\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Reasons, Instance Of, segment of amitriptyline ibs-a different lifestyle) -> Reasons (6343ms)\nWhat is amitriptyline?\tLevazine\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Levazine, Instance Of, combination medication made of Perphenazine and Amitriptyline) -> Levazine (6325ms)\nWhat is amitriptyline?\tAmitryptilin\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitryptilin, Instance Of, common misspelling of amitriptyline) -> Amitryptilin (6552ms)\nWhat is amitriptyline?\tAmtriptyline\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amtriptyline, Instance Of, common misspelling of amitriptyline) -> Amtriptyline (6343ms)\nWhat is amitriptyline?\tAmitriptylline\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitriptylline, Instance Of, common misspelling of amitriptyline) -> Amitriptylline (6325ms)\nWhat is amitriptyline?\tEndep\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Endep, Instance Of, form of amitriptyline) -> Endep (6324ms)\nWhat is amitriptyline?\tAmatriptaline\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amatriptaline, Instance Of, common misspelling of amitriptyline) -> Amatriptaline (6552ms)\nWhat is amitriptyline?\tAmixide\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amixide, Instance Of, brand name of a medicine called amitriptyline) -> Amixide (6343ms)\nWhat is amitriptyline?\tLamictal\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Lamictal, Instance Of, amitriptyline or newer drug) -> Lamictal (6343ms)\nWhat is amitriptyline?\tCharacter\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Character, Instance Of, part of the Amitriptyline dosage) -> Character (6552ms)\nWhat is amitriptyline?\tAmitryptaline\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitryptaline, Instance Of, common misspelling of amitriptyline) -> Amitryptaline (6343ms)\nWhat is amitriptyline?\tLipsovir\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Lipsovir, Instance Of, offered Amitriptyline of limita and inulin) -> Lipsovir (6552ms)\nWhat is amitriptyline?\tLaroxyl\t-11.918080594269991\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Laroxyl, Instance Of, Amitriptylines) -> Laroxyl (6552ms)\nWhat is amitriptyline?\tlower fit threshold\t-11.928930255629115\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, do, $x) -> (amitriptyline, does, lower fit threshold) -> lower fit threshold (6552ms)\nWhat is amitriptyline?\tcitalopram\t-11.932605199557978\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (citalopram, is probably as efficacious as, amitriptyline) -> citalopram (6571ms)\nWhat is amitriptyline?\tthe past few weeks\t-11.934533498110435\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the past few weeks, is a dead-give away as to, the amitriptyline) -> the past few weeks (6570ms)\nWhat is amitriptyline?\tTrembling\t-11.959208256307992\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Trembling, Instance Of, Amitriptyline side effect) -> Trembling (6571ms)\nWhat is amitriptyline?\tDizziness\t-11.959208256307992\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Dizziness, Instance Of, Amitriptyline side effect) -> Dizziness (6571ms)\nWhat is amitriptyline?\tNausea\t-11.959208256307992\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Nausea, Instance Of, Amitriptyline side effect) -> Nausea (6571ms)\nWhat is amitriptyline?\tsleep\t-11.966031162169372\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (sleep, was improved by, both amitriptyline and nabilone) -> sleep (6571ms)\nWhat is amitriptyline?\tthe survey sites\t-11.970543089402963\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the survey sites, are free to join, ! Amitriptyline) -> the survey sites (6571ms)\nWhat is amitriptyline?\tsymptoms\t-11.978583472140244\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to recover, symptoms) -> symptoms (6571ms)\nWhat is amitriptyline?\tthe central nervous system\t-11.991043432363645\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is likely to work in, the central nervous system) -> the central nervous system (6595ms)\nWhat is amitriptyline?\tsertraline\t-12.001006410271712\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (sertraline, was found to be as effective as, amitriptyline) -> sertraline (6596ms)\nWhat is amitriptyline?\tpill imprinted with 2101\t-12.022786905835114\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (pill imprinted with 2101, Instance Of, 10 mg Amitriptyline HCl tablet) -> pill imprinted with 2101 (6595ms)\nWhat is amitriptyline?\tThe most widely used TCA\t-12.028264072273121\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (The most widely used TCA, is called, amitriptyline) -> The most widely used TCA (6596ms)\nWhat is amitriptyline?\tthe same period patient\t-12.08051130976665\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the same period patient, was treated with, AMITRIPTYLINE HCL) -> the same period patient (6595ms)\nWhat is amitriptyline?\tfive different medications\t-12.086455717627635\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, make, $x) -> (Amitriptyline, is actually made of, five different medications) -> five different medications (6595ms)\nWhat is amitriptyline?\tthe patient\t-12.10789790445724\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is to be used only by, the patient) -> the patient (6613ms)\nWhat is amitriptyline?\tletter\t-12.121083942512831\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (letter, Is, Amitriptyline) -> letter (6613ms)\nWhat is amitriptyline?\tan effect on pain\t-12.143775562379084\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, has, an effect on pain) -> an effect on pain (6613ms)\nWhat is amitriptyline?\torthostatic or postural hypotension\t-12.194082180845758\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, can produce, orthostatic or postural hypotension) -> orthostatic or postural hypotension (6613ms)\nWhat is amitriptyline?\tsedation , drowsiness , dry mouth\t-12.220231182452054\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, include, $x) -> (amitriptyline, include, sedation , drowsiness , dry mouth) -> sedation , drowsiness , dry mouth (6630ms)\nWhat is amitriptyline?\theroin\t-12.327752901169095\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (heroin, was taking, amitriptyline) -> heroin (6630ms)\nWhat is amitriptyline?\ta greater overall incidence\t-12.387352382475957\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, produced, a greater overall incidence) -> a greater overall incidence (6630ms)\nWhat is amitriptyline?\ttaking acidophilus\t-12.417312411434555\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went to, taking acidophilus) -> taking acidophilus (6630ms)\nWhat is amitriptyline?\ttreatment\t-12.478628278622864\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (treatment, is, the tricyclic antidepressant amitriptyline) -> treatment (6630ms)\nWhat is amitriptyline?\ttips\t-12.48375947701393\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (tips, were selected for, the Amitriptyline unproblematic) -> tips (6630ms)\nWhat is amitriptyline?\toutpatients\t-12.498771106292537\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (outpatients, is to begin with, 50 to 100 mg amitriptyline) -> outpatients (6630ms)\nWhat is amitriptyline?\tadverse interactions\t-12.510700833216495\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, can produce, adverse interactions) -> adverse interactions (6649ms)\nWhat is amitriptyline?\tcaution\t-12.532296234090452\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used with, caution) -> caution (6649ms)\nWhat is amitriptyline?\tlists\t-12.585081067869755\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is included on, lists) -> lists (6649ms)\nWhat is amitriptyline?\tdepression\t-12.618421095164008\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to relieve symptoms of, depression) -> depression (6649ms)\nWhat is amitriptyline?\tbaseline\t-12.646069300187662\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (baseline, was 49 % for, amitriptyline) -> baseline (6649ms)\nWhat is amitriptyline?\tpurposes\t-12.665447427322839\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, may also be used for, purposes) -> purposes (6649ms)\nWhat is amitriptyline?\tof fashion - side effects\t-12.677106886180223\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went out, of fashion - side effects) -> of fashion - side effects (6666ms)\nWhat is amitriptyline?\tthe first line treatment for fibromyalgia\t-12.712817924141516\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, the first line treatment for fibromyalgia) -> the first line treatment for fibromyalgia (6666ms)\nWhat is amitriptyline?\tof fashion - side effects in the body\t-12.718637126389698\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went out, of fashion - side effects in the body) -> of fashion - side effects in the body (6666ms)\nWhat is amitriptyline?\tshelf life written on them\t-12.744844964899059\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, shelf life written on them) -> shelf life written on them (6666ms)\nWhat is amitriptyline?\tLondon\t-12.75784269196566\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what exactly be amitriptyline ? -> $x: ($x, exactly be, amitriptyline) -> $x: ($x, concerned, amitriptyline) -> (London, raised concerns about, amitriptyline and use) -> London (7041ms)\nWhat is amitriptyline?\tfibromyalgia\t-12.847432080471979\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has been used for, fibromyalgia) -> fibromyalgia (6666ms)\nWhat is amitriptyline?\tarrhythmias\t-12.887638692951942\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, have been reported to produce, arrhythmias) -> arrhythmias (6666ms)\nWhat is amitriptyline?\thumans\t-12.922906887799074\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has been used extensively in, humans) -> humans (6722ms)\nWhat is amitriptyline?\tthe most\t-12.932150265891467\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, have been relied upon, the most) -> the most (6722ms)\nWhat is amitriptyline?\tadults\t-12.98603193339585\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline and topiramate, have long been used in, adults) -> adults (6722ms)\nWhat is amitriptyline?\tthe nerve pain\t-12.994857035965026\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, do, $x) -> (Amitriptyline, Does indeed calm, the nerve pain) -> the nerve pain (6722ms)\nWhat is amitriptyline?\tfashion\t-13.140310829716334\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (sell amitriptyline, went out of, fashion) -> fashion (6722ms)\nWhat is amitriptyline?\tthe greatest anticholinergic effects\t-13.169500790397699\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, the greatest anticholinergic effects) -> the greatest anticholinergic effects (6722ms)\nWhat is amitriptyline?\tthe best support\t-13.236699852820053\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, seems to have, the best support) -> the best support (6722ms)\nWhat is amitriptyline?\tthe same day\t-13.255953616501827\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, be taken on, the same day) -> the same day (6780ms)\nWhat is amitriptyline?\tyears\t-13.25783505510008\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (trazodone and amitriptyline, have been used for, years) -> years (6780ms)\nWhat is amitriptyline?\tnabilone\t-13.274383535409383\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (nabilone, was, superior to amitriptyline) -> nabilone (6780ms)\nWhat is amitriptyline?\tnortriptyline\t-13.27581782836437\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is metabolized to, nortriptyline) -> nortriptyline (6780ms)\nWhat is amitriptyline?\tpain\t-13.339255352375517\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, has an effect on, pain) -> pain (6780ms)\nWhat is amitriptyline?\tThe first drug\t-13.356972955321055\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (The first drug, are taking, an overdose of amitriptyline) -> The first drug (6795ms)\nWhat is amitriptyline?\tthe cells\t-13.378557569845718\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, do, $x) -> (Amitriptyline, did n?t kill, the cells) -> the cells (6795ms)\nWhat is amitriptyline?\tthe reduction\t-13.390573486512078\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, may have had a greater effect on, the reduction) -> the reduction (6795ms)\nWhat is amitriptyline?\tthe treatment\t-13.413041261106844\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has FDA approval for, the treatment) -> the treatment (6795ms)\nWhat is amitriptyline?\tcats\t-13.435340131077101\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, has been prescribed for, cats) -> cats (6795ms)\nWhat is amitriptyline?\tthe class\t-13.474964060430057\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is a member of, the class) -> the class (6795ms)\nWhat is amitriptyline?\tanimals\t-13.48757238199889\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has been used in, animals) -> animals (6795ms)\nWhat is amitriptyline?\tavailable\t-13.545718767418531\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, available) -> available (6810ms)\nWhat is amitriptyline?\teffective\t-13.566554408887683\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, effective) -> effective (6810ms)\nWhat is amitriptyline?\tthe electrocardiograph\t-13.625770125936874\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has the effects on, the electrocardiograph) -> the electrocardiograph (6810ms)\nWhat is amitriptyline?\tnausea\t-13.669934934172199\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (nausea, Instance Of, withdrawal side effect with amitriptyline) -> nausea (6810ms)\nWhat is amitriptyline?\tusually\t-13.68947968450106\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is prescribed, usually) -> usually (6810ms)\nWhat is amitriptyline?\tuseful\t-13.693500764195338\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is also, useful) -> useful (6810ms)\nWhat is amitriptyline?\tthe similar pharmacology\t-13.753638292011733\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, include, $x) -> (amitriptyline but, are included due to, the similar pharmacology) -> the similar pharmacology (6810ms)\nWhat is amitriptyline?\ttremor\t-13.805712845273275\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (tremor, Instance Of, side effect of amitriptyline) -> tremor (6828ms)\nWhat is amitriptyline?\tdosage\t-13.805712845273275\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (dosage, Instance Of, information on Amitriptyline) -> dosage (6828ms)\nWhat is amitriptyline?\tconstipation\t-13.805712845273275\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (constipation, Instance Of, amitriptyline steady-state concentration minor complaint) -> constipation (6828ms)\nWhat is amitriptyline?\tbioavailability\t-13.822163910333614\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (bioavailability, Instance Of, pharmacokinetic parameter of amitriptyline) -> bioavailability (6828ms)\nWhat is amitriptyline?\tclearance\t-13.822163910333614\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (clearance, Instance Of, pharmacokinetic parameter of amitriptyline) -> clearance (6828ms)\nWhat is amitriptyline?\tthe sun\t-14.18110102704297\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, make, $x) -> (Amitriptyline, may make your skin more sensitive to, the sun) -> the sun (6842ms)\nWhat is amitriptyline?\tfever\t-14.197405213758335\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, include, $x) -> (an amitriptyline overdose, can include, fever) -> fever (6842ms)\nWhat is amitriptyline?\tthe benzodiazepines\t-14.326924541494886\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what exactly be amitriptyline ? -> $x: ($x, exactly be, amitriptyline) -> $x: (amitriptyline, mention in, $x) -> (Amitriptyline, is mentioned in, the benzodiazepines) -> the benzodiazepines (6842ms)\nWhat is amitriptyline?\tsedation\t-14.394520715365903\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, produces, sedation) -> sedation (6842ms)\nWhat is amitriptyline?\tthe addict\t-14.476846390706331\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, include, $x) -> (The 2008 amitriptyline and aspirin, includes, the addict) -> the addict (6858ms)\nWhat is amitriptyline?\tflinching\t-14.988415708894223\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, produced dose-related suppression of, flinching) -> flinching (6858ms)\nWhat is amitriptyline?\tgeneric\t-15.217708684977932\tWhat is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went, generic) -> generic (6872ms)\nWhich airlines use Dulles?\ttraffic\t-4.4776328448786265\tWhich airlines use Dulles? -> $x: ($x, instance of, airlines) ($x, use, Dulles) -> (traffic, Instance Of, information on airline) (Traffic, will be directed to use, the Dulles Connector Rd) -> traffic (2551ms)\nWho was the first king of England?\tThe Independent\t3.6915554022960855\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (The Independent, was the first King of, England) -> The Independent (6575ms)\nWho was the first king of England?\tthe Great\t2.294095738310092\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (the Great, was the first effective King of, England 871-899) -> the Great (6575ms)\nWho was the first king of England?\tSt . Edward\t2.034275090898541\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (St . Edward, was the first King of, England) -> St . Edward (6575ms)\nWho was the first king of England?\tAquitaine\t1.7514266092796316\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (Aquitaine, was the first king of, England) -> Aquitaine (6575ms)\nWho was the first king of England?\tWessex\t1.2763498482366042\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (Wessex, was the first king of, all England) -> Wessex (6575ms)\nWho was the first king of England?\tAlfred\t1.199911201010604\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (Alfred, could be considered the first king of, England) -> Alfred (6653ms)\nWho was the first king of England?\tMarch 24\t0.9083446808952851\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (March 24, was the first king of, both England and Scotland) -> March 24 (6652ms)\nWho was the first king of England?\tEgbert\t0.3996058891190306\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (Egbert, is considered the first king of, all England) -> Egbert (6720ms)\nWho was the first king of England?\t?thelstan\t0.3908284878307309\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (?thelstan, was the first real king of, all England) -> ?thelstan (6720ms)\nWho was the first king of England?\tthe Peaceful\t-0.21320402373744174\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (the Peaceful, became the first King of, All England) -> the Peaceful (8079ms)\nWho was the first king of England?\tthe Saxon King Harold II\t-0.4147025470967739\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (the Saxon King Harold II, became the first King of, England) -> the Saxon King Harold II (8079ms)\nWho was the first king of England?\t?thelstan\t-0.4665817156725923\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (?thelstan, becomes the first king of, England) -> ?thelstan (8079ms)\nWho was the first king of England?\tAthelstan\t-0.4976249138833535\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> (Athelstan, [is] the first king of, all England) -> Athelstan (8079ms)\nWho was the first king of England?\tEurope and Egbert\t-0.7002983911093196\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (Europe and Egbert, became the first King of, England) -> Europe and Egbert (8078ms)\nWho was the first king of England?\tDiana\t-1.8220979762136624\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (Diana, first met the future King of, England) -> Diana (8634ms)\nWho was the first king of England?\tEdgar\t-1.852269988558753\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (Edgar, was crowned first King of, England) -> Edgar (8634ms)\nWho was the first king of England?\tJames\t-2.217856548432559\tWho was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (James, became the first King of, both Scotland and England) -> James (8634ms)\nWho was the first king of England?\tUther Pendragon\t-5.841993770885821\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Uther Pendragon, was king of, England) -> Uther Pendragon (8722ms)\nWho was the first king of England?\tPrince William\t-5.901235050293716\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Prince William, be King of, England) -> Prince William (8722ms)\nWho was the first king of England?\tWestminster Cathedral\t-6.394104235994662\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Westminster Cathedral, is the king of, England) -> Westminster Cathedral (8722ms)\nWho was the first king of England?\tHenry Tudor\t-6.596369637085885\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Henry Tudor, was proclaimed King of, England) -> Henry Tudor (8722ms)\nWho was the first king of England?\tWilliam III\t-6.662370564277884\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (William III, was the king of, England) -> William III (8852ms)\nWho was the first king of England?\tPrince Charles\t-6.8639313891322535\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Prince Charles, is the potential King of, England) -> Prince Charles (8852ms)\nWho was the first king of England?\tGeorge III\t-6.985121855634414\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (George III, is King of, England) -> George III (8852ms)\nWho was the first king of England?\tCharles II\t-7.008316120421842\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Charles II, was King of, England) -> Charles II (8852ms)\nWho was the first king of England?\tGeorge VI\t-7.009100571305552\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (George VI, was king of, England) -> George VI (8853ms)\nWho was the first king of England?\tthe Battle\t-7.04298844861957\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Battle, was crowned King of, England) -> the Battle (8918ms)\nWho was the first king of England?\tEdward VII\t-7.1031836175540075\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Edward VII, was King of, England) -> Edward VII (8918ms)\nWho was the first king of England?\tKing Henry II\t-7.107987327853391\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (King Henry II, was the king of, England) -> King Henry II (8918ms)\nWho was the first king of England?\tEdward II\t-7.126937449710347\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Edward II, was became king of, England) -> Edward II (8918ms)\nWho was the first king of England?\tRichard Plantagenet\t-7.130065564658534\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Richard Plantagenet, was the King of, England) -> Richard Plantagenet (8918ms)\nWho was the first king of England?\tEdward IV\t-7.137975263813523\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Edward IV, was crowned king of, England) -> Edward IV (8925ms)\nWho was the first king of England?\tHenry III\t-7.186044817387286\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Henry III, is crowned King of, England) -> Henry III (8946ms)\nWho was the first king of England?\tGeorge V\t-7.2098535983034076\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (George V, was crowned King of, England) -> George V (8946ms)\nWho was the first king of England?\tOne player\t-7.257352158794075\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (One player, is the king of, England) -> One player (8946ms)\nWho was the first king of England?\tDK\t-7.291301974177678\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (DK, was the King of, England) -> DK (8946ms)\nWho was the first king of England?\tthe Confessor\t-7.437851130060085\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Confessor, was the King of, England) -> the Confessor (8946ms)\nWho was the first king of England?\tSaul\t-7.4531664807245726\tWho was the first king of England? -> who be [ the first ] king of england ? -> what be the name of the first king ? -> $x: ($x, be the name of, the first king) -> (Saul, was the name of, the first king) -> Saul (11730ms)\nWho was the first king of England?\tlike manner\t-7.472230817475133\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (like manner, was the king of, England) -> like manner (8970ms)\nWho was the first king of England?\ta boy\t-7.616391642642576\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (a boy, was king of, England) -> a boy (8970ms)\nWho was the first king of England?\tEngland Edward IV\t-7.621304614660742\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (England Edward IV, was King of, England) -> England Edward IV (8970ms)\nWho was the first king of England?\tIsrael and Jesus\t-7.628944453632248\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Israel and Jesus, was king of, England) -> Israel and Jesus (8970ms)\nWho was the first king of England?\tEdward III\t-7.6557782078483845\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Edward III, was the king of, England) -> Edward III (8970ms)\nWho was the first king of England?\tWashington D.C.\t-7.6781834570854475\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Washington D.C., was the King of, England) -> Washington D.C. (8970ms)\nWho was the first king of England?\tThe Lionheart\t-7.710961294201408\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (The Lionheart, is King of, England) -> The Lionheart (9138ms)\nWho was the first king of England?\tKing George III\t-7.732748569457565\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (King George III, was the king of, England) -> King George III (9138ms)\nWho was the first king of England?\tHenry VII\t-7.743614094003314\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Henry VII, was the King of, England) -> Henry VII (9138ms)\nWho was the first king of England?\tGeorge II\t-7.7672291029846425\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (George II, was the King of, England) -> George II (9138ms)\nWho was the first king of England?\tRichard III\t-7.775660645247475\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Richard III, was crowned King of, England) -> Richard III (9139ms)\nWho was the first king of England?\tNew York state\t-7.783721122466999\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (New York state, was the King of, England) -> New York state (9176ms)\nWho was the first king of England?\tJohn\t-7.8855382802396825\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (John, was king of, England) -> John (9244ms)\nWho was the first king of England?\tBono\t-7.892276558369649\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Bono, would be the King of, England) -> Bono (9244ms)\nWho was the first king of England?\tWorld history\t-7.901841043613979\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (World history, was the kings of, England) -> World history (9244ms)\nWho was the first king of England?\tthe Trust\t-7.923653187537979\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (the Trust, is the King of, England) -> the Trust (9244ms)\nWho was the first king of England?\tRichard II\t-7.944779014587034\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Richard II, was the lawful king of, England) -> Richard II (9244ms)\nWho was the first king of England?\tHenry VI\t-7.957157782309271\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Henry VI, was the crowned King of, England) -> Henry VI (9369ms)\nWho was the first king of England?\tJames II\t-7.958926207813759\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (James II, was the crowned king of, England) -> James II (9370ms)\nWho was the first king of England?\tthe Eighth\t-8.096951808612207\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Eighth, was king of, England) -> the Eighth (9439ms)\nWho was the first king of England?\tthe Unready\t-8.096951808612207\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Unready, was King of, England) -> the Unready (9439ms)\nWho was the first king of England?\tOne Monkey\t-8.111037303988498\tWho was the first king of England? -> who be [ the first ] king of england ? -> what be the name of the first king ? -> $x: (the first king, name, $x) -> (the first king, was named, One Monkey) -> One Monkey (11730ms)\nWho was the first king of England?\tHenry II\t-8.230078437337607\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Henry II, was king of, England) -> Henry II (9942ms)\nWho was the first king of England?\t978 Ethelred\t-8.235284209358035\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (978 Ethelred, was crowned king of, England) -> 978 Ethelred (9943ms)\nWho was the first king of England?\tPrompt:Charles\t-8.25548608117037\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Prompt:Charles, is the king of, England) -> Prompt:Charles (9974ms)\nWho was the first king of England?\tGod\t-8.256644865267724\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (God, [is] king of, England) -> God (9974ms)\nWho was the first king of England?\tEngland Henry VIII\t-8.26715190352693\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (England Henry VIII, was the King of, England) -> England Henry VIII (9974ms)\nWho was the first king of England?\tEdward V\t-8.286597761236218\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Edward V, was king of, England) -> Edward V (9974ms)\nWho was the first king of England?\tlaw courts\t-8.316126704199649\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (law courts, was to be the King of, England) -> law courts (10061ms)\nWho was the first king of England?\tVII\t-8.320911802390688\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (VII, was the second king of, England) -> VII (10061ms)\nWho was the first king of England?\tConnie Justice\t-8.321306201462669\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (Connie Justice, is president of, a New England exporter) -> Connie Justice (10061ms)\nWho was the first king of England?\tthe Christian\t-8.329915962426135\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king in england ? -> $x: ($x, be king in, england) -> (the Christian, was the most powerful king in, England) -> the Christian (10061ms)\nWho was the first king of England?\t?Pine\t-8.35964092615967\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king in england ? -> $x: ($x, be king in, england) -> (?Pine, was king in, New England) -> ?Pine (10061ms)\nWho was the first king of England?\tHarold Godwinson\t-8.422927504279581\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be crown king of, england) -> (Harold Godwinson, was crowned King of, England) -> Harold Godwinson (13476ms)\nWho was the first king of England?\tEdgar St Edgar\t-8.463332225674815\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Edgar St Edgar, was the King of, England) -> Edgar St Edgar (11422ms)\nWho was the first king of England?\tHarry Lauder\t-8.467658739404875\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be crown king of, england) -> (Harry Lauder, Was crowned King of, England) -> Harry Lauder (13476ms)\nWho was the first king of England?\tKing Alfred\t-8.484873323945363\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king in england ? -> $x: ($x, be king in, england) -> (King Alfred, was King in, England) -> King Alfred (11422ms)\nWho was the first king of England?\tNorway\t-8.518015243202289\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Norway, then is King of, England) -> Norway (11422ms)\nWho was the first king of England?\tKing George\t-8.52103754612101\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (King George, was the king of, England) -> King George (11566ms)\nWho was the first king of England?\tKing James\t-8.540585518936906\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (King James, was the king of, England) -> King James (11566ms)\nWho was the first king of England?\ta particular movie or\t-8.556336255082481\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (a particular movie or, was the King of, England) -> a particular movie or (11566ms)\nWho was the first king of England?\tThe 'squirming dog\t-8.591859000996353\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (The 'squirming dog, then was the King of, England) -> The 'squirming dog (11566ms)\nWho was the first king of England?\tSuch a monarch\t-8.604173200591333\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Such a monarch, is the King of, England) -> Such a monarch (11730ms)\nWho was the first king of England?\ta sorry contemptible lot\t-8.618355310070344\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (a sorry contemptible lot, were the kings of, England) -> a sorry contemptible lot (11730ms)\nWho was the first king of England?\ta wretched and peevish fellow\t-8.654163364676407\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (a wretched and peevish fellow, is this king of, England) -> a wretched and peevish fellow (11821ms)\nWho was the first king of England?\t1167-1216\t-8.656199969416615\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (1167-1216, was the king of, England) -> 1167-1216 (11821ms)\nWho was the first king of England?\tthe Lionheart\t-8.661090856195187\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Lionheart, [is] the king of, England) -> the Lionheart (11821ms)\nWho was the first king of England?\tWinston Churchill\t-8.665928844379325\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be the prime minister of, england) -> (Winston Churchill, was the prime minister of, England) -> Winston Churchill (13476ms)\nWho was the first king of England?\tBenjamin Disraeli\t-8.67349437560078\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be the prime minister of, england) -> (Benjamin Disraeli, was the prime minister of, England) -> Benjamin Disraeli (13476ms)\nWho was the first king of England?\tthe 8th\t-8.710231633493638\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the 8th, was King of, England) -> the 8th (11872ms)\nWho was the first king of England?\tthe Lionhearted\t-8.716367918113269\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Lionhearted, [is] king of, England) -> the Lionhearted (11872ms)\nWho was the first king of England?\tthe Longshanks\t-8.716367918113269\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Longshanks, [is] king of, England) -> the Longshanks (11872ms)\nWho was the first king of England?\tNeville Chamberlain\t-8.728771437518862\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be the prime minister of, england) -> (Neville Chamberlain, was the Prime Minister of, England) -> Neville Chamberlain (13476ms)\nWho was the first king of England?\tthe conquest\t-8.764373774678482\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the conquest, was crowned King of, England) -> the conquest (12058ms)\nWho was the first king of England?\tmoney\t-8.784261600383829\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king in england ? -> $x: ($x, be king in, england) -> (money, is king in, England) -> money (12058ms)\nWho was the first king of England?\tKent\t-8.803423212942615\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (Kent, is president of, the All England Club) -> Kent (12059ms)\nWho was the first king of England?\tthe Anglican Church\t-8.806675758794672\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (the Anglican Church, was the King of, England) -> the Anglican Church (12059ms)\nWho was the first king of England?\t? Beckham\t-8.824368392584974\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (? Beckham, is a vice president of, Englands bid team) -> ? Beckham (12227ms)\nWho was the first king of England?\tthe Bible\t-8.828902615077002\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be crown king of, england) -> (the Bible, was crowned king of, England) -> the Bible (13476ms)\nWho was the first king of England?\tGary\t-8.839739897835486\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (Gary, was president of, the New England chapter) -> Gary (12227ms)\nWho was the first king of England?\tEthelred\t-8.847974758635548\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Ethelred, was king of, England) -> Ethelred (12227ms)\nWho was the first king of England?\tone day\t-8.87594655368008\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (one day, be King of, England) -> one day (12333ms)\nWho was the first king of England?\tSir\t-8.877385595733099\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be the people of, england) -> (Sir, hath been the People of, England) -> Sir (13579ms)\nWho was the first king of England?\tthe Dane\t-8.890421377870258\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Dane, [is] king of, England) -> the Dane (12333ms)\nWho was the first king of England?\tHenry\t-8.895062169512974\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Henry, was King of, England) -> Henry (12332ms)\nWho was the first king of England?\tArthur\t-8.914906785641577\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Arthur, was King of, England) -> Arthur (12477ms)\nWho was the first king of England?\tthe Congress\t-8.950041454797066\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (the Congress, is President of, the CNU New England chapter) -> the Congress (12477ms)\nWho was the first king of England?\tWilliam\t-8.970745564385396\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (William, was the King of, England) -> William (12477ms)\nWho was the first king of England?\tNormandy\t-9.015210593791174\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Normandy, was the King of, England) -> Normandy (12477ms)\nWho was the first king of England?\tHarold\t-9.042296197081871\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Harold, was crowned king of, England) -> Harold (13055ms)\nWho was the first king of England?\tthe general public\t-9.070198178765661\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the general public, was the King of, England) -> the general public (13055ms)\nWho was the first king of England?\tthe game players\t-9.070516292157052\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the game players, will be king of, England) -> the game players (13055ms)\nWho was the first king of England?\tHarold Harefoot\t-9.070844420397098\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, become king of, england) -> (Harold Harefoot, became King of, England) -> Harold Harefoot (13579ms)\nWho was the first king of England?\tRichard Lionheart\t-9.102429301695656\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be crown king of, england) -> (Richard Lionheart, was crowned King of, England) -> Richard Lionheart (13579ms)\nWho was the first king of England?\tEdmund Ironside\t-9.108472710874196\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, become king of, england) -> (Edmund Ironside, becomes King of, England) -> Edmund Ironside (13579ms)\nWho was the first king of England?\tItaly\t-9.112075195276326\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Italy, was the rightful King of, England) -> Italy (13579ms)\nWho was the first king of England?\tQueen Victoria\t-9.125997645711907\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be queen of, england) -> (Queen Victoria, was Queen of, England) -> Queen Victoria (13660ms)\nWho was the first king of England?\t24 Henry VII\t-9.130905474297558\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (24 Henry VII, is crowned the King of, England) -> 24 Henry VII (13660ms)\nWho was the first king of England?\tFrance\t-9.164242878070858\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (France, as was the King of, England) -> France (13660ms)\nWho was the first king of England?\tHenry VIII\t-9.17124477171581\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, king of, england) -> (Henry VIII, becomes king of, England) -> Henry VIII (13660ms)\nWho was the first king of England?\tMr. Tracy\t-9.172298379858773\tWho was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (Mr. Tracy, was the President of, the New England Association) -> Mr. Tracy (13660ms)\nWhere is the Orinoco River?\tswamps\t-0.8501574509261465\tWhere is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> (the river Orinoco, is lost in, swamps) -> swamps (3765ms)\nWhere is the Orinoco River?\tAuthorities Concept Scheme\t-1.5836501606872182\tWhere is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> $x: (orinoco river, in, $x) -> (Orinoco River Delta (Venezuela), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4182ms)\nWhere is the Orinoco River?\tGeographic Names Concept Scheme\t-1.611139041286378\tWhere is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> $x: (orinoco river, in, $x) -> (Orinoco River Delta (Venezuela), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (4182ms)\nWhere is the Orinoco River?\tTopical Terms Concept Scheme\t-1.9410056084762926\tWhere is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> $x: (orinoco river, in, $x) -> (Indians of South America--Orinoco River Valley (Venezuela and Colombia), In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4196ms)\nWhere is the Orinoco River?\tthe past\t-2.7298229157540597\tWhere is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> (the Orinoco river, was an advantage in, the past) -> the past (3765ms)\nWhere is the Orinoco River?\tthe jungles\t-5.0272908688593025\tWhere is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> $x: (orinoco river, in, $x) -> (course Orinoco River area, could be anywhere in, the jungles) -> the jungles (4209ms)\nWhere is the Orinoco River?\tSouth America\t-7.530655358281185\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (South America, is, the Orinoco river) -> South America (6188ms)\nWhere is the Orinoco River?\tVenezuela\t-8.045796465383106\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> which river be the orinoco ? -> $x: (the orinoco, river, $x) -> (The Orinoco, is a river in, Venezuela) -> Venezuela (6756ms)\nWhere is the Orinoco River?\tLa Concepci?n\t-8.995310609451826\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the orinoco river call ? -> $x: (the orinoco river, call, $x) -> (the Orinoco River, called, La Concepci?n) -> La Concepci?n (5946ms)\nWhere is the Orinoco River?\tthe Cardinal tetra\t-9.237565702418337\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (the Cardinal tetra, is, the upper Orinoco and Negro rivers) -> the Cardinal tetra (6188ms)\nWhere is the Orinoco River?\ta large natural area\t-9.24949534388312\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (a large natural area, is located south of, the Orinoco River) -> a large natural area (6188ms)\nWhere is the Orinoco River?\ttoo wide a sur-face-it\t-9.33754465142688\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (too wide a sur-face-it, is like, the river Orinoco) -> too wide a sur-face-it (6188ms)\nWhere is the Orinoco River?\tEstado Delta Amacuro\t-9.456027157540374\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (Estado Delta Amacuro, is situated at, the Orinoco River delta) -> Estado Delta Amacuro (6188ms)\nWhere is the Orinoco River?\t326.0\t-10.060221033660296\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: (orinoco river, length, $x) -> (Casiquiare canal-Orinoco River hydrographic divide, Length, 326.0) -> 326.0 (5946ms)\nWhere is the Orinoco River?\tRhinodoras gallagheri\t-10.401583055502758\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the name of the orinoco river ? -> $x: (the orinoco river, name, $x) -> $x: (orinoco river, name, $x) -> ('s Orinoco river basin, has been named, Rhinodoras gallagheri) -> Rhinodoras gallagheri (6059ms)\nWhere is the Orinoco River?\tterms\t-10.71782762433543\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> which river be the orinoco ? -> $x: (the orinoco, river, $x) -> (The Orinoco, is the world?s fourth largest river in, terms) -> terms (6756ms)\nWhere is the Orinoco River?\t61695\t-10.85737535689999\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: (orinoco river, length, $x) -> (OrinocoRiverCrossing, Length, 61695) -> 61695 (5946ms)\nWhere is the Orinoco River?\t196.0\t-10.886728031206037\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (The Orinoco Kid, Length, 196.0) -> 196.0 (9182ms)\nWhere is the Orinoco River?\t196.64\t-10.886728031206037\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (The Orinoco Kid, Length, 196.64) -> 196.64 (9182ms)\nWhere is the Orinoco River?\t196.4\t-10.886728031206037\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (The Orinoco Kid, Length, 196.4) -> 196.4 (9182ms)\nWhere is the Orinoco River?\tThe flat area\t-10.980321542071884\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (The flat area, is bounded by, the Orinoco River) -> The flat area (6188ms)\nWhere is the Orinoco River?\tthe ever-wet Amazon\t-10.991816123393024\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (the ever-wet Amazon, are, the Orinoco river ' Llanos) -> the ever-wet Amazon (6212ms)\nWhere is the Orinoco River?\tOrinoco River Crossing\t-11.00514910790269\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: (orinoco river, length, $x) -> $x: ($x, am |, orinoco river) -> (Orinoco River Crossing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Orinoco%20River%20Crossing) -> Orinoco River Crossing (8218ms)\nWhere is the Orinoco River?\tthe fish\t-11.222080337265837\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (the fish, was native to, the upper Orinoco and Negro Rivers) -> the fish (6212ms)\nWhere is the Orinoco River?\tThe region\t-11.230723498987347\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (The region, is very close to, the Orinoco river banks) -> The region (6212ms)\nWhere is the Orinoco River?\t333.0\t-11.672910016342001\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (Megamix: The Summer of '69 / I Useta Lover / Take Me to the Clouds Above / Orinoco Flow / Teenage Kicks / I Still Haven't Found What I'm Looking For, Length, 333.0) -> 333.0 (9182ms)\nWhere is the Orinoco River?\t75811\t-12.096215563433125\tWhere is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (Bridge over the Orinoco at Ciudad Bol?var, Venezuela, Length, 75811) -> 75811 (9182ms)\nWhere is Merrill Lynch headquartered?\tLondon\t-2.6498899559505795\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch HSBC, will be headquartered in, London) -> London (1492ms)\nWhere is Merrill Lynch headquartered?\tnew york city\t-3.928222569647443\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (america merrill lynch, is headquartered in, new york city) -> new york city (1492ms)\nWhere is Merrill Lynch headquartered?\tNew York City\t-4.523456733948949\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch, is headquartered in, New York City) -> New York City (1493ms)\nWhere is Merrill Lynch headquartered?\tNew York\t-4.817951509707132\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch and Morgan Stanley, are headquartered in, New York) -> New York (1493ms)\nWhere is Merrill Lynch headquartered?\tTaipei\t-4.8732003902919345\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (Merrill Lynch, be base in, $x) -> (Merrill Lynch analyst Tony Tseng, is based in, Taipei) -> Taipei (3822ms)\nWhere is Merrill Lynch headquartered?\tLos Angeles\t-5.443706891771381\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> (Merrill Lynch, headquartered in, Los Angeles) -> Los Angeles (2573ms)\nWhere is Merrill Lynch headquartered?\tEurope\t-5.74169232000138\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (Merrill Lynch, expand into, $x) -> (Merrill Lynch, have expanded into, Europe) -> Europe (3173ms)\nWhere is Merrill Lynch headquartered?\tOregon\t-6.736357193116286\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, operate in, $x) -> (Merrill Lynch, operate in, Oregon) -> Oregon (4420ms)\nWhere is Merrill Lynch headquartered?\tThe Wellesley Office Park\t-6.834725240109867\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (Merrill Lynch, be locate in, $x) -> (Merrill Lynch, is located in, The Wellesley Office Park) -> The Wellesley Office Park (3707ms)\nWhere is Merrill Lynch headquartered?\tDow Jones\t-7.66351653113462\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, do business with, $x) -> (Merrill Lynch, does business with, Dow Jones) -> Dow Jones (4303ms)\nWhere is Merrill Lynch headquartered?\tBank\t-7.753854687549016\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, take over by, $x) -> (Merrill Lynch, is being taken over by, Bank) -> Bank (4388ms)\nWhere is Merrill Lynch headquartered?\tJersey City\t-7.7606496641916065\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, expand in, $x) -> (Merrill Lynch, may expand facilities in, Jersey City) -> Jersey City (4448ms)\nWhere is Merrill Lynch headquartered?\tAsia\t-7.804726194560495\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, expand in, $x) -> (Merrill Lynch, have all expanded their presence in, Asia) -> Asia (4448ms)\nWhere is Merrill Lynch headquartered?\tFINRA\t-8.080870559913759\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, sanction by, $x) -> (The five Merrill Lynch brokers, sanctioned by, FINRA) -> FINRA (4420ms)\nWhere is Merrill Lynch headquartered?\tMetroPCS\t-8.356940841745562\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: ($x, file a lawsuit against, merrill lynch) -> (MetroPCS, has filed a lawsuit against, Merrill Lynch) -> MetroPCS (4468ms)\nWhere is Merrill Lynch headquartered?\tBroadway\t-8.421533647916085\tWhere is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> which state be merrill lynch locate ? -> $x: ($x, instance of, state) (merrill lynch, locate, $x) -> (Broadway, Instance Of, state of mind) (The Merrill Lynch building, is located south of, Broadway) -> Broadway (4303ms)\nWhere is Merrill Lynch headquartered?\tthe Bank\t-8.503295727398402\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, take over by, $x) -> (Merrill Lynch, was taken over by, the Bank) -> the Bank (4388ms)\nWhere is Merrill Lynch headquartered?\tBank of America\t-9.93921352298348\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, take over by, $x) -> (Merrill Lynch, is taken over by, Bank of America) -> Bank of America (4388ms)\nWhere is Merrill Lynch headquartered?\tthe Bank of America\t-10.217049891845114\tWhere is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, take over by, $x) -> (Merrill Lynch, has been taken over by, the Bank of America) -> the Bank of America (4401ms)\nWhere is Merrill Lynch headquartered?\tJohn Thain\t-10.274736953544332\tWhere is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> who head merrill lynch ? -> $x: ($x, head, merrill lynch) -> (John Thain, is the now-outgoing head of, Merrill Lynch) -> John Thain (7205ms)\nWhere is Merrill Lynch headquartered?\tMarcus Heilner\t-10.276004844427568\tWhere is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> who head merrill lynch ? -> $x: ($x, head, merrill lynch) -> (Marcus Heilner, has been the head of, Merrill Lynch) -> Marcus Heilner (7205ms)\nWhere is Merrill Lynch headquartered?\tA syndicate\t-12.363115670685232\tWhere is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> who head merrill lynch ? -> $x: ($x, head, merrill lynch) -> (A syndicate, headed by, Merrill Lynch) -> A syndicate (7205ms)\nWhere is Merrill Lynch headquartered?\twomen\t-14.551894914369134\tWhere is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> which state be merrill lynch locate ? -> $x: ($x, instance of, state) (merrill lynch, locate, $x) -> $x: (state, drug, $x) (merrill lynch, locate, $x) -> (Some states, provide prescription drug assistance to, women) (Merrill Lynch office, is located near, Women) -> women (5410ms)\nAspartame is also known as what?\tbrain tumors\t-11.31443303868324\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be aspartame be be know for ? -> $x: (aspartame, be be know for, $x) -> (aspartame, is known for causing, brain tumors) -> brain tumors (5344ms)\nAspartame is also known as what?\tMultiple Sclerosis\t-11.384395198461963\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, Multiple Sclerosis) -> Multiple Sclerosis (7841ms)\nAspartame is also known as what?\tBirth Defects\t-11.433026082949814\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, Birth Defects) -> Birth Defects (7841ms)\nAspartame is also known as what?\tbrain cancer\t-11.683872983523386\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, brain cancer) -> brain cancer (7841ms)\nAspartame is also known as what?\tmetabolic acidosis\t-11.7097053195697\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, metabolic acidosis) -> metabolic acidosis (7841ms)\nAspartame is also known as what?\tmemory loss\t-11.710654074098052\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, memory loss) -> memory loss (7841ms)\nAspartame is also known as what?\ta known neurotoxin\t-11.727256751822662\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a known neurotoxin) -> a known neurotoxin (6611ms)\nAspartame is also known as what?\tbrain damage\t-11.743244176180307\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, cause, brain damage) -> brain damage (7841ms)\nAspartame is also known as what?\tsudden cardiac death\t-11.746108345895435\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, sudden cardiac death) -> sudden cardiac death (8008ms)\nAspartame is also known as what?\tbirth defects\t-11.798875554825461\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, birth defects) -> birth defects (8008ms)\nAspartame is also known as what?\tdrug\t-11.813782452054339\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is a, drug) -> drug (6611ms)\nAspartame is also known as what?\tfood\t-11.813782452054339\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is a, food) -> food (6611ms)\nAspartame is also known as what?\tdiabetic retinopathy\t-11.819679707466822\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, often be, aspartame) -> (diabetic retinopathy, is often, aspartame retinopathy) -> diabetic retinopathy (8756ms)\nAspartame is also known as what?\tmanic depression\t-11.927282535588345\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, manic depression) -> manic depression (8008ms)\nAspartame is also known as what?\tseizures\t-11.936519662295854\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be aspartame be be know for ? -> $x: (aspartame, be be know for, $x) -> (aspartame, is known for causing, seizures) -> seizures (5343ms)\nAspartame is also known as what?\tNew York\t-11.952894411442442\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (aspartame brain tumor cases, are being taken in, New York) -> New York (6611ms)\nAspartame is also known as what?\ta known destroyer of DNA\t-12.046475056141691\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a known destroyer of DNA) -> a known destroyer of DNA (6611ms)\nAspartame is also known as what?\tsugar substitute\t-12.049653902128586\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, sugar substitute) -> sugar substitute (14483ms)\nAspartame is also known as what?\tleukemias/lymphomas\t-12.062021352504622\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, leukemias/lymphomas) -> leukemias/lymphomas (8008ms)\nAspartame is also known as what?\tso poisonous\t-12.063998021319495\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, so poisonous) -> so poisonous (6611ms)\nAspartame is also known as what?\tanaphylactic shock\t-12.082012110307527\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, have gone into, anaphylactic shock) -> anaphylactic shock (6686ms)\nAspartame is also known as what?\tan adjuvant\t-12.12487723753355\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, an adjuvant) -> an adjuvant (6686ms)\nAspartame is also known as what?\tsoft drinks\t-12.126168294693674\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, be fully, $x) -> (Aspartame, was fully marketed for, soft drinks) -> soft drinks (12977ms)\nAspartame is also known as what?\tMethanol Toxicity\t-12.13935599141901\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, Cause, Methanol Toxicity) -> Methanol Toxicity (8008ms)\nAspartame is also known as what?\tsevere health problems\t-12.154753162651167\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, severe health problems) -> severe health problems (8202ms)\nAspartame is also known as what?\treproductive outcome\t-12.190231441619233\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, is having adverse effects on, reproductive outcome) -> reproductive outcome (8203ms)\nAspartame is also known as what?\tnerve cells\t-12.192457331409862\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Aspartame, goes to, nerve cells) -> nerve cells (6686ms)\nAspartame is also known as what?\tbrain function\t-12.196658016152018\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (Aspartame, has a direct effect on, brain function) -> brain function (8202ms)\nAspartame is also known as what?\ta higher incidence\t-12.201123687026437\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, a higher incidence) -> a higher incidence (8202ms)\nAspartame is also known as what?\twell known neurotoxin\t-12.20361106467892\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, well known neurotoxin) -> well known neurotoxin (14483ms)\nAspartame is also known as what?\tAcesulfame K\t-12.209394211795198\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, often be, aspartame) -> (Acesulfame K, is often blended with, aspartame) -> Acesulfame K (8755ms)\nAspartame is also known as what?\tbrain tumors and cancer\t-12.230709392841135\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, brain tumors and cancer) -> brain tumors and cancer (8203ms)\nAspartame is also known as what?\tGulf War illness\t-12.239536375684951\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, Gulf War illness) -> Gulf War illness (8202ms)\nAspartame is also known as what?\tHuman Brain Cancer\t-12.242425792572925\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, Cause, Human Brain Cancer) -> Human Brain Cancer (8288ms)\nAspartame is also known as what?\tseizures and degrades\t-12.245268965976958\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, seizures and degrades) -> seizures and degrades (8287ms)\nAspartame is also known as what?\ta multipotential carcinogen\t-12.25711884408163\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a multipotential carcinogen) -> a multipotential carcinogen (6686ms)\nAspartame is also known as what?\t200 million people\t-12.26402020450459\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Aspartame, is going to kill, 200 million people) -> 200 million people (6686ms)\nAspartame is also known as what?\tsweetening agent\t-12.289249811839268\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, sweetening agent) -> sweetening agent (14483ms)\nAspartame is also known as what?\tconvulsions\t-12.290110712880999\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, caused, convulsions) -> convulsions (8287ms)\nAspartame is also known as what?\tbrain tumors and seizures\t-12.295812346093253\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, brain tumors and seizures) -> brain tumors and seizures (8288ms)\nAspartame is also known as what?\tan artificial sweetener\t-12.301516564599401\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an artificial sweetener) -> an artificial sweetener (6686ms)\nAspartame is also known as what?\tchronic methanol poisoning\t-12.307986395442112\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, chronic methanol poisoning) -> chronic methanol poisoning (8287ms)\nAspartame is also known as what?\ta multi-potential carcinogen\t-12.333019772295026\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a multi-potential carcinogen) -> a multi-potential carcinogen (6783ms)\nAspartame is also known as what?\tfood supply\t-12.342475455553952\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, food supply) -> food supply (14483ms)\nAspartame is also known as what?\tlupus\t-12.360026955336194\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, lupus) -> lupus (8287ms)\nAspartame is also known as what?\ta known Excitotoxin\t-12.360742650789636\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a known Excitotoxin) -> a known Excitotoxin (6783ms)\nAspartame is also known as what?\tcancer ? lymphoma and leukemia\t-12.3631751480373\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, cancer ? lymphoma and leukemia) -> cancer ? lymphoma and leukemia (8331ms)\nAspartame is also known as what?\taspartame Neotame\t-12.367174459903682\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, be a derivative of, aspartame) -> (aspartame Neotame, is a derivative of, aspartame) -> aspartame Neotame (8331ms)\nAspartame is also known as what?\t50 percent phenylalanine\t-12.37126845070766\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 50 percent phenylalanine) -> 50 percent phenylalanine (6783ms)\nAspartame is also known as what?\tbetter than sugar\t-12.376646042585726\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, better than sugar) -> better than sugar (6783ms)\nAspartame is also known as what?\ta Monsanto product\t-12.38762129549318\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, was, a Monsanto product) -> a Monsanto product (6783ms)\nAspartame is also known as what?\tfull meals\t-12.394044887070937\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (aspartame, is taken with, full meals) -> full meals (6783ms)\nAspartame is also known as what?\tan rDNA derivative\t-12.400407926275445\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an rDNA derivative) -> an rDNA derivative (6862ms)\nAspartame is also known as what?\tcarcinogenic agent\t-12.400674506468935\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, carcinogenic agent) -> carcinogenic agent (14483ms)\nAspartame is also known as what?\tsatiety and hunger\t-12.417627351146443\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (Stevia and aspartame, had similar effects on, satiety and hunger) -> satiety and hunger (8330ms)\nAspartame is also known as what?\tillness and death\t-12.420796959513023\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, illness and death) -> illness and death (8330ms)\nAspartame is also known as what?\tagonizing joint pain\t-12.421288894121115\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, agonizing joint pain) -> agonizing joint pain (8330ms)\nAspartame is also known as what?\tsafe sweetener\t-12.42150450213187\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, safe sweetener) -> safe sweetener (14483ms)\nAspartame is also known as what?\tNutraSweet\t-12.447979183109535\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (NutraSweet, Instance Of, aspartame product) -> NutraSweet (15336ms)\nAspartame is also known as what?\t200 times sweeter than sugar\t-12.449077441917293\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 200 times sweeter than sugar) -> 200 times sweeter than sugar (6861ms)\nAspartame is also known as what?\tmood and cognition\t-12.449493650594409\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (Aspartame, has a profound effect on, mood and cognition) -> mood and cognition (8331ms)\nAspartame is also known as what?\tObesity Dear Editor\t-12.45528065077415\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, Obesity Dear Editor) -> Obesity Dear Editor (8411ms)\nAspartame is also known as what?\tsudden death\t-12.456441294095963\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, sudden death) -> sudden death (8411ms)\nAspartame is also known as what?\tsynthetic sweetener\t-12.458363735614013\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, synthetic sweetener) -> synthetic sweetener (14483ms)\nAspartame is also known as what?\thealth agencies\t-12.46045419895834\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (aspartame, is being taken seriously by, health agencies) -> health agencies (6862ms)\nAspartame is also known as what?\tcommon sweetener\t-12.46346531880098\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, common sweetener) -> common sweetener (14484ms)\nAspartame is also known as what?\tpolychemical sensitivity syndrome\t-12.46903559220787\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, polychemical sensitivity syndrome) -> polychemical sensitivity syndrome (8411ms)\nAspartame is also known as what?\tan irregular heart rhythm\t-12.473280949286643\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, an irregular heart rhythm) -> an irregular heart rhythm (8411ms)\nAspartame is also known as what?\ta safe sugar substitute\t-12.474418047331056\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a safe sugar substitute) -> a safe sugar substitute (6861ms)\nAspartame is also known as what?\tsafe for pregnant women\t-12.477703192179716\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, safe for pregnant women) -> safe for pregnant women (6862ms)\nAspartame is also known as what?\tcarbohydrate craving\t-12.483168892637185\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, carbohydrate craving) -> carbohydrate craving (8411ms)\nAspartame is also known as what?\tmuch sweeter than sugar\t-12.486964355648698\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, much sweeter than sugar) -> much sweeter than sugar (6861ms)\nAspartame is also known as what?\tchronic fatigue\t-12.491317237150092\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, chronic fatigue) -> chronic fatigue (8412ms)\nAspartame is also known as what?\tthyroid dysfunction and hyperthyroidism\t-12.498685866149826\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, thyroid dysfunction and hyperthyroidism) -> thyroid dysfunction and hyperthyroidism (8514ms)\nAspartame is also known as what?\tCalcium Phosphate\t-12.510913434378224\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Calcium Phosphate, Instance Of, aspartame related product) -> Calcium Phosphate (15336ms)\nAspartame is also known as what?\tconfusion and memory loss\t-12.514601432178743\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, confusion and memory loss) -> confusion and memory loss (8514ms)\nAspartame is also known as what?\tthe FDA such as\t-12.515289876456507\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (the aspartame issue, takes statements from, the FDA such as) -> the FDA such as (6890ms)\nAspartame is also known as what?\tProxy being introduced in Sachets\t-12.534389378345322\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Proxy being introduced in Sachets, Instance Of, sugar substitute containing aspartame) -> Proxy being introduced in Sachets (15336ms)\nAspartame is also known as what?\tnew-style intense sweetener of amino acid\t-12.53931054782444\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, new-style intense sweetener of amino acid) -> new-style intense sweetener of amino acid (14650ms)\nAspartame is also known as what?\tcancer\t-12.543968590768454\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, cancer) -> cancer (8514ms)\nAspartame is also known as what?\t180 times sweeter than sucrose\t-12.555671653515514\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 180 times sweeter than sucrose) -> 180 times sweeter than sucrose (6890ms)\nAspartame is also known as what?\tDicalcium Phosphate\t-12.555807389813367\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Dicalcium Phosphate, Instance Of, aspartame related offer) -> Dicalcium Phosphate (15337ms)\nAspartame is also known as what?\tActivated Carbon\t-12.555807389813367\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Activated Carbon, Instance Of, aspartame related offer) -> Activated Carbon (15337ms)\nAspartame is also known as what?\tnoncaloric sweetener\t-12.56129316896587\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, noncaloric sweetener) -> noncaloric sweetener (14651ms)\nAspartame is also known as what?\tan irregular heart rate\t-12.571190099681054\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, an irregular heart rate) -> an irregular heart rate (8514ms)\nAspartame is also known as what?\tcausative factor\t-12.581536240937673\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, causative factor) -> causative factor (14651ms)\nAspartame is also known as what?\twww.nutrasweet.com\t-12.581735694793686\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, please go to, www.nutrasweet.com) -> www.nutrasweet.com (6889ms)\nAspartame is also known as what?\thazardous product\t-12.583082568136124\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, hazardous product) -> hazardous product (14650ms)\nAspartame is also known as what?\tinfertility\t-12.58638157264314\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, infertility) -> infertility (8515ms)\nAspartame is also known as what?\tdangerous drug\t-12.596654146195892\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, dangerous drug) -> dangerous drug (14651ms)\nAspartame is also known as what?\tCori Brackett\t-12.596988942088116\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Cori Brackett, Instance Of, aspartame victim) -> Cori Brackett (15336ms)\nAspartame is also known as what?\tneurotoxic substance\t-12.600171526578935\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, neurotoxic substance) -> neurotoxic substance (14650ms)\nAspartame is also known as what?\tAspartic acid\t-12.601101708046775\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Aspartic acid, Instance Of, component of aspartame) -> Aspartic acid (15336ms)\nAspartame is also known as what?\theadache\t-12.60141295227096\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, headache) -> headache (8514ms)\nAspartame is also known as what?\tsafe low-calorie sweetener\t-12.604388183698797\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, safe low-calorie sweetener) -> safe low-calorie sweetener (14651ms)\nAspartame is also known as what?\tflavoured water\t-12.608782488180108\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, often be, aspartame) -> (flavoured water, is often sweetened with, aspartame) -> flavoured water (8755ms)\nAspartame is also known as what?\tapproximately 200 times sweeter than sugar\t-12.609505415900376\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, approximately 200 times sweeter than sugar) -> approximately 200 times sweeter than sugar (6890ms)\nAspartame is also known as what?\tfood chemical\t-12.610168711708456\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, food chemical) -> food chemical (14650ms)\nAspartame is also known as what?\thigh intensity, no-calorie sweetener\t-12.61302473591769\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, high intensity, no-calorie sweetener) -> high intensity, no-calorie sweetener (15400ms)\nAspartame is also known as what?\tharmful chemical\t-12.61460667422099\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, harmful chemical) -> harmful chemical (15400ms)\nAspartame is also known as what?\tartificial or intense sweetener\t-12.629475800978032\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, artificial or intense sweetener) -> artificial or intense sweetener (15400ms)\nAspartame is also known as what?\tresponsible for 75 percent of complaints\t-12.629906534764327\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, responsible for 75 percent of complaints) -> responsible for 75 percent of complaints (6889ms)\nAspartame is also known as what?\t200 times sweeter than normal sugar\t-12.629906534764327\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 200 times sweeter than normal sugar) -> 200 times sweeter than normal sugar (6889ms)\nAspartame is also known as what?\tPUR Gum\t-12.630649464137402\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (PUR Gum, Instance Of, aspartame free gum) -> PUR Gum (15400ms)\nAspartame is also known as what?\tant poison\t-12.632792895507503\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, ant poison) -> ant poison (15401ms)\nAspartame is also known as what?\tlow\t-12.638789603294189\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, low) -> low (7047ms)\nAspartame is also known as what?\tfried food\t-12.645184303120105\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, fried food) -> fried food (15401ms)\nAspartame is also known as what?\taddictive neurotoxin\t-12.64711944726009\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, addictive neurotoxin) -> addictive neurotoxin (15401ms)\nAspartame is also known as what?\tdipeptide compound\t-12.64711944726009\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, dipeptide compound) -> dipeptide compound (15401ms)\nAspartame is also known as what?\tsugar sweetener\t-12.64711944726009\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, sugar sweetener) -> sugar sweetener (15565ms)\nAspartame is also known as what?\tnon-calorie sweetener\t-12.64888866708615\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, non-calorie sweetener) -> non-calorie sweetener (15565ms)\nAspartame is also known as what?\tone?s health\t-12.649598590949218\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, has any negative effects on, one?s health) -> one?s health (8554ms)\nAspartame is also known as what?\tprotein\t-12.651076822307957\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the function of aspartame be ? -> $x: (aspartame, function, $x) -> (Aspartame, has the same metabolic function as, protein) -> protein (8553ms)\nAspartame is also known as what?\tevil substance\t-12.65321243427408\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, evil substance) -> evil substance (15565ms)\nAspartame is also known as what?\tso safe\t-12.65334681376336\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, so safe) -> so safe (7046ms)\nAspartame is also known as what?\tbrand name\t-12.658323734347638\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, brand name) -> brand name (15565ms)\nAspartame is also known as what?\tnerve toxin\t-12.661925406182107\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, nerve toxin) -> nerve toxin (15565ms)\nAspartame is also known as what?\tlow calorie, artificial sweetener\t-12.663136323027317\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, low calorie, artificial sweetener) -> low calorie, artificial sweetener (15565ms)\nAspartame is also known as what?\tsafe for use by people with epilepsy\t-12.664483177098695\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe for use by people with epilepsy) -> safe for use by people with epilepsy (7046ms)\nAspartame is also known as what?\tnon-saccharide artificial sweetener\t-12.671421832693708\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, non-saccharide artificial sweetener) -> non-saccharide artificial sweetener (15565ms)\nAspartame is also known as what?\tDiet Coke\t-12.671421832693708\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Diet Coke, Instance Of, aspartame product) -> Diet Coke (16072ms)\nAspartame is also known as what?\tgreat tasting sweetener\t-12.671421832693708\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, great tasting sweetener) -> great tasting sweetener (16072ms)\nAspartame is also known as what?\tmoderately powerful genotoxin\t-12.671421832693708\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, moderately powerful genotoxin) -> moderately powerful genotoxin (16072ms)\nAspartame is also known as what?\ta carcinogen\t-12.672830268319839\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a carcinogen) -> a carcinogen (7047ms)\nAspartame is also known as what?\t160 to 220 times sweeter than sugar\t-12.675623132493666\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 160 to 220 times sweeter than sugar) -> 160 to 220 times sweeter than sugar (7047ms)\nAspartame is also known as what?\tcompound of phenylalanine\t-12.677331557460953\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, compound of phenylalanine) -> compound of phenylalanine (16072ms)\nAspartame is also known as what?\tDietary excitotoxins\t-12.677331557460953\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, Dietary excitotoxins) -> Dietary excitotoxins (16072ms)\nAspartame is also known as what?\tDKP\t-12.677331557460953\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (DKP, Instance Of, byproduct of aspartame) -> DKP (16072ms)\nAspartame is also known as what?\tgeneral-purpose sweetener\t-12.677331557460953\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, general-purpose sweetener) -> general-purpose sweetener (16072ms)\nAspartame is also known as what?\tleading cause of obesity\t-12.683172593801295\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, leading cause of obesity) -> leading cause of obesity (16072ms)\nAspartame is also known as what?\ta neurotoxin\t-12.685163690610818\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a neurotoxin) -> a neurotoxin (7047ms)\nAspartame is also known as what?\tdiet soda\t-12.686103677927989\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (diet soda, Instance Of, aspartame product) -> diet soda (16113ms)\nAspartame is also known as what?\tindividuals\t-12.687998704845551\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, only causes adverse effects in, individuals) -> individuals (8554ms)\nAspartame is also known as what?\torganic compound\t-12.688424384717798\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, organic compound) -> organic compound (16113ms)\nAspartame is also known as what?\tSenator Howard Metzenbaum\t-12.690625203626476\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Senator Howard Metzenbaum, Instance Of, vocal critic of aspartame) -> Senator Howard Metzenbaum (16113ms)\nAspartame is also known as what?\thard drug\t-12.692979774003506\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, hard drug) -> hard drug (16113ms)\nAspartame is also known as what?\tlow-calorie alternative\t-12.697895388479951\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, low-calorie alternative) -> low-calorie alternative (16113ms)\nAspartame is also known as what?\twhite, odourless powder\t-12.698840274869509\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, white, odourless powder) -> white, odourless powder (16113ms)\nAspartame is also known as what?\ta sweetener\t-12.699149287434832\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is used as, a sweetener) -> a sweetener (16113ms)\nAspartame is also known as what?\texpensive ingredient\t-12.699237377715649\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, expensive ingredient) -> expensive ingredient (16113ms)\nAspartame is also known as what?\thealthy sugar substitute\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, healthy sugar substitute) -> healthy sugar substitute (16150ms)\nAspartame is also known as what?\tStevia amoroso\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Stevia amoroso, Instance Of, accustomed aspartame) -> Stevia amoroso (16228ms)\nAspartame is also known as what?\tform IV\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (form IV, Instance Of, adduct of aspartame) -> form IV (16189ms)\nAspartame is also known as what?\theavily researched product\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, heavily researched product) -> heavily researched product (16189ms)\nAspartame is also known as what?\tkind of artificial food\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, kind of artificial food) -> kind of artificial food (16228ms)\nAspartame is also known as what?\tdangerous collection of chemical\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, dangerous collection of chemical) -> dangerous collection of chemical (16228ms)\nAspartame is also known as what?\tendocrine disrupting drug\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, endocrine disrupting drug) -> endocrine disrupting drug (16150ms)\nAspartame is also known as what?\tdangerous, carcinogenic toxin\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, dangerous, carcinogenic toxin) -> dangerous, carcinogenic toxin (16151ms)\nAspartame is also known as what?\tnon-saccharine, artificial sweetener\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, non-saccharine, artificial sweetener) -> non-saccharine, artificial sweetener (16189ms)\nAspartame is also known as what?\tnon sugar sweetener\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, non sugar sweetener) -> non sugar sweetener (16150ms)\nAspartame is also known as what?\tgreat ant poison\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, great ant poison) -> great ant poison (16228ms)\nAspartame is also known as what?\tchemical sugar substitute\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, chemical sugar substitute) -> chemical sugar substitute (16150ms)\nAspartame is also known as what?\tlowcalorie, intensive sweetener\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, lowcalorie, intensive sweetener) -> lowcalorie, intensive sweetener (16189ms)\nAspartame is also known as what?\tartificial non-nutritive sweetner\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, artificial non-nutritive sweetner) -> artificial non-nutritive sweetner (16189ms)\nAspartame is also known as what?\testerified, dipeptide sweetener\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, esterified, dipeptide sweetener) -> esterified, dipeptide sweetener (16189ms)\nAspartame is also known as what?\tsynthetic sugar substitute\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, synthetic sugar substitute) -> synthetic sugar substitute (16189ms)\nAspartame is also known as what?\tgood quality sweetener\t-12.71631578812885\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, good quality sweetener) -> good quality sweetener (16189ms)\nAspartame is also known as what?\tone of the most thoroughly studied food additives\t-12.72274692780651\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, one of the most thoroughly studied food additives) -> one of the most thoroughly studied food additives (7099ms)\nAspartame is also known as what?\tfood aspartame\t-12.726876046484296\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (food aspartame, Instance Of, aspartame related product) -> food aspartame (16228ms)\nAspartame is also known as what?\tsugar free\t-12.726876046484296\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (sugar free, Instance Of, aspartame product) -> sugar free (16228ms)\nAspartame is also known as what?\tchinese aspartame\t-12.726876046484296\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (chinese aspartame, Instance Of, aspartame related product) -> chinese aspartame (16228ms)\nAspartame is also known as what?\tAjinomoto Food Ingredients\t-12.731397572182784\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Ajinomoto Food Ingredients, Instance Of, leading manufacturer of aspartame) -> Ajinomoto Food Ingredients (16265ms)\nAspartame is also known as what?\tan artificial sweetener used in place of sugar\t-12.732008091275492\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an artificial sweetener used in place of sugar) -> an artificial sweetener used in place of sugar (7099ms)\nAspartame is also known as what?\tconflicting sweetener\t-12.732785771251539\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, conflicting sweetener) -> conflicting sweetener (16265ms)\nAspartame is also known as what?\tdeadly additive\t-12.732785771251539\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, deadly additive) -> deadly additive (16265ms)\nAspartame is also known as what?\tprotein sweetener\t-12.732785771251539\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, protein sweetener) -> protein sweetener (16265ms)\nAspartame is also known as what?\texcitoneurotoxic drug\t-12.732785771251539\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, excitoneurotoxic drug) -> excitoneurotoxic drug (16265ms)\nAspartame is also known as what?\tquarrelsome chemical\t-12.732785771251539\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, quarrelsome chemical) -> quarrelsome chemical (16265ms)\nAspartame is also known as what?\tbrain tumor\t-12.733101624935607\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (brain tumor, Instance Of, aspartame & disease) -> brain tumor (16265ms)\nAspartame is also known as what?\tbrain lesion\t-12.733101624935607\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (brain lesion, Instance Of, aspartame & disease) -> brain lesion (16265ms)\nAspartame is also known as what?\tsweet substance\t-12.73777094255623\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, sweet substance) -> sweet substance (16303ms)\nAspartame is also known as what?\tmigraine trigger\t-12.741444226481944\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, migraine trigger) -> migraine trigger (16303ms)\nAspartame is also known as what?\tcontroversial product\t-12.741925251772523\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, controversial product) -> controversial product (16303ms)\nAspartame is also known as what?\tsimple ingredient\t-12.742900952972832\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, simple ingredient) -> simple ingredient (16303ms)\nAspartame is also known as what?\tcaloric sweetener\t-12.743067686761039\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, caloric sweetener) -> caloric sweetener (16303ms)\nAspartame is also known as what?\tharmless substance\t-12.743636473998933\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, harmless substance) -> harmless substance (16303ms)\nAspartame is also known as what?\tDiketopiperazineDKP\t-12.74373423030465\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (DiketopiperazineDKP, Instance Of, byproduct of aspartame metabolism) -> DiketopiperazineDKP (16303ms)\nAspartame is also known as what?\tdangerous\t-12.744560573390133\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, dangerous) -> dangerous (7099ms)\nAspartame is also known as what?\tthe Internet\t-12.74764102777023\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, circulate, $x) -> (aspartame, has recently been circulating on, the Internet) -> the Internet (12632ms)\nAspartame is also known as what?\tchoice then sugar substitute\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, choice then sugar substitute) -> choice then sugar substitute (16341ms)\nAspartame is also known as what?\tteratogen, endocrine disrupting chemical\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, teratogen, endocrine disrupting chemical) -> teratogen, endocrine disrupting chemical (16341ms)\nAspartame is also known as what?\tartificial or low-cal sweetener\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, artificial or low-cal sweetener) -> artificial or low-cal sweetener (16379ms)\nAspartame is also known as what?\tleading low calorie sweetener\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, leading low calorie sweetener) -> leading low calorie sweetener (16341ms)\nAspartame is also known as what?\tpopular type of artificial sweetener\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, popular type of artificial sweetener) -> popular type of artificial sweetener (16341ms)\nAspartame is also known as what?\tfirst group fall product\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, first group fall product) -> first group fall product (16341ms)\nAspartame is also known as what?\tDr. Roberts\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Dr. Roberts, Instance Of, world aspartame expert) -> Dr. Roberts (16303ms)\nAspartame is also known as what?\tmolecule composed of three component\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, molecule composed of three component) -> molecule composed of three component (16379ms)\nAspartame is also known as what?\tvery popular zero-calorie sweetener\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, very popular zero-calorie sweetener) -> very popular zero-calorie sweetener (16379ms)\nAspartame is also known as what?\tCLP Chemcials, L.P.\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (CLP Chemcials, L.P., Instance Of, distributor of Aspartame) -> CLP Chemcials, L.P. (16341ms)\nAspartame is also known as what?\tJohn Garst, Pd.D.\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (John Garst, Pd.D., Instance Of, aspartame flack) -> John Garst, Pd.D. (16379ms)\nAspartame is also known as what?\texcellent acceptable sugar substitute\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, excellent acceptable sugar substitute) -> excellent acceptable sugar substitute (16341ms)\nAspartame is also known as what?\tsynthetic, low-calorie sugar substitute\t-12.748802647018767\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, synthetic, low-calorie sugar substitute) -> synthetic, low-calorie sugar substitute (16341ms)\nAspartame is also known as what?\tan excitotoxin\t-12.749101973031543\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an excitotoxin) -> an excitotoxin (7099ms)\nAspartame is also known as what?\trtificial saweetners\t-12.74923683631188\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, rtificial saweetners) -> rtificial saweetners (16379ms)\nAspartame is also known as what?\treally bad\t-12.75246228005496\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, really bad) -> really bad (7099ms)\nAspartame is also known as what?\tartificial product\t-12.75334960227054\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, artificial product) -> artificial product (16379ms)\nAspartame is also known as what?\tartificial ingredient\t-12.753787130537935\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, artificial ingredient) -> artificial ingredient (16379ms)\nAspartame is also known as what?\tIm afraid so. Neotame\t-12.754959469839207\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Im afraid so. Neotame, Instance Of, modified version of aspartame) -> Im afraid so. Neotame (16415ms)\nAspartame is also known as what?\tJ Starr Hull\t-12.754959469839207\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (J Starr Hull, Instance Of, book exposing aspartame danger) -> J Starr Hull (16379ms)\nAspartame is also known as what?\ta dipeptide\t-12.76084187139285\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a dipeptide) -> a dipeptide (7099ms)\nAspartame is also known as what?\tdiet coke\t-12.771770001919439\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (diet coke, Instance Of, aspartame product) -> diet coke (16415ms)\nAspartame is also known as what?\tdiet cola\t-12.771770001919439\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (diet cola, Instance Of, aspartame product) -> diet cola (16415ms)\nAspartame is also known as what?\tdiet drink\t-12.771770001919439\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (diet drink, Instance Of, aspartame product) -> diet drink (16415ms)\nAspartame is also known as what?\tsoft drink\t-12.771770001919439\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (soft drink, Instance Of, aspartame product) -> soft drink (16415ms)\nAspartame is also known as what?\ta disease\t-12.775316695583026\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a disease) -> a disease (7230ms)\nAspartame is also known as what?\twell-characterized, thoroughly studied, high-intensity sweetener\t-12.776291527617927\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, well-characterized, thoroughly studied, high-intensity sweetener) -> well-characterized, thoroughly studied, high-intensity sweetener (16415ms)\nAspartame is also known as what?\tnew generation low calorie sweetener\t-12.776291527617927\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, new generation low calorie sweetener) -> new generation low calorie sweetener (16415ms)\nAspartame is also known as what?\thealthy\t-12.788828035800801\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, healthy) -> healthy (7230ms)\nAspartame is also known as what?\tartificial Low calorie sweetener\t-12.789930309056766\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, artificial Low calorie sweetener) -> artificial Low calorie sweetener (16453ms)\nAspartame is also known as what?\tordinary thomas kinkade screen saver\t-12.79985342527435\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (ordinary thomas kinkade screen saver, Instance Of, aspartame of carbon) -> ordinary thomas kinkade screen saver (16453ms)\nAspartame is also known as what?\tJanet Starr Hull\t-12.79985342527435\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Janet Starr Hull, Instance Of, book exposing aspartame danger) -> Janet Starr Hull (16453ms)\nAspartame is also known as what?\tStevia or Agave\t-12.79985342527435\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Stevia or Agave, Instance Of, good sweetener versus Aspartame) -> Stevia or Agave (16453ms)\nAspartame is also known as what?\tbaby aspirin\t-12.804256860809353\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (baby aspirin, Instance Of, meds with aspartame) -> baby aspirin (16453ms)\nAspartame is also known as what?\tvery bad\t-12.812343056924888\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, very bad) -> very bad (7230ms)\nAspartame is also known as what?\tclinical trials\t-12.826838760500362\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is particularly convenient to use in, clinical trials) -> clinical trials (16453ms)\nAspartame is also known as what?\tokay\t-12.82861948058325\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, okay) -> okay (7230ms)\nAspartame is also known as what?\tartificial sweeteners\t-12.828747476544397\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (aspartame, is used in, artificial sweeteners) -> artificial sweeteners (16533ms)\nAspartame is also known as what?\tan excipient\t-12.829230576805669\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is only used as, an excipient) -> an excipient (16533ms)\nAspartame is also known as what?\tcrystal light\t-12.831745741408513\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (crystal light, Instance Of, drinking beverage with aspartame) -> crystal light (16534ms)\nAspartame is also known as what?\tyeast extract\t-12.831745741408513\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (yeast extract, Instance Of, aspartame and food additive) -> yeast extract (16534ms)\nAspartame is also known as what?\taspartic acid\t-12.831745741408513\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (aspartic acid, Instance Of, breakdown product in aspartame) -> aspartic acid (16534ms)\nAspartame is also known as what?\tmeat product\t-12.831745741408513\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (meat product, Instance Of, aspartame and normal food) -> meat product (16533ms)\nAspartame is also known as what?\tPart 1\t-12.831814703571691\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Aspartame Part, would like to go to, Part 1) -> Part 1 (7230ms)\nAspartame is also known as what?\tnasty\t-12.842987240730057\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, nasty) -> nasty (7299ms)\nAspartame is also known as what?\textremely harmful\t-12.846961629246325\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, extremely harmful) -> extremely harmful (7299ms)\nAspartame is also known as what?\tevil\t-12.862065779872081\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, evil) -> evil (7299ms)\nAspartame is also known as what?\ta low-calorie\t-12.874439949662186\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a low-calorie) -> a low-calorie (7299ms)\nAspartame is also known as what?\tHeath Ledger\t-12.876509882829113\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, like, $x) -> (aspartame, have died like, Heath Ledger) -> Heath Ledger (13563ms)\nAspartame is also known as what?\ta substitute sweetener\t-12.890013814557848\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is used as, a substitute sweetener) -> a substitute sweetener (16663ms)\nAspartame is also known as what?\tsafe or harmful\t-12.891981881515271\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe or harmful) -> safe or harmful (7299ms)\nAspartame is also known as what?\tStevia\t-12.893407793850393\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, substitute for, aspartame) -> (Stevia, can be used to substitute for, aspartame) -> Stevia (5635ms)\nAspartame is also known as what?\thealth\t-12.900220346749911\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, has any other adverse effect on, health) -> health (8554ms)\nAspartame is also known as what?\tpersons\t-12.901593220066955\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be aspartame be be know for ? -> $x: (aspartame, be be know for, $x) -> (Aspartame intake, is known to be dangerous for, persons) -> persons (5342ms)\nAspartame is also known as what?\tdecades\t-12.913176873659152\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be aspartame be be know for ? -> $x: (aspartame, be be know for, $x) -> (Aspartame carcinogenicity, has been known for, decades) -> decades (5343ms)\nAspartame is also known as what?\tgood for you\t-12.929838617236868\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, was, good for you) -> good for you (7299ms)\nAspartame is also known as what?\tpublic health\t-12.932288559854657\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, protect, $x) -> (aspartame, protect, public health) -> public health (16663ms)\nAspartame is also known as what?\thorrible withdrawal\t-12.939436600156812\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Many aspartame victims, go through, horrible withdrawal) -> horrible withdrawal (7337ms)\nAspartame is also known as what?\tcarbohydrate or food\t-12.940687792409927\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: (aspartame, be substitute for, $x) -> (aspartame, is substituted for, carbohydrate or food) -> carbohydrate or food (8807ms)\nAspartame is also known as what?\tsafe as a general purpose sweetener in food\t-12.941017587387362\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe as a general purpose sweetener in food) -> safe as a general purpose sweetener in food (7337ms)\nAspartame is also known as what?\tsweetener\t-12.94237928794507\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, sweetener) -> sweetener (16663ms)\nAspartame is also known as what?\tthe United States\t-12.943109874535349\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, create, $x) -> (Aspartame, was created in, the United States) -> the United States (16891ms)\nAspartame is also known as what?\tthe PR Agency\t-12.943875134037363\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, then went to work for, the PR Agency) -> the PR Agency (7337ms)\nAspartame is also known as what?\tmedications\t-12.945514421551055\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: (aspartame, be cure by, $x) -> (aspartame disease, cannot be cured by, medications) -> medications (9480ms)\nAspartame is also known as what?\tsafe for you\t-12.950239736100821\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, safe for you) -> safe for you (7337ms)\nAspartame is also known as what?\tphysicians\t-12.954246569617947\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be do, $x) -> (An aspartame study, will be done with, physicians) -> physicians (16891ms)\nAspartame is also known as what?\tpregnant women\t-12.954393483393545\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, use, aspartame) -> (pregnant women, use, aspartame) -> pregnant women (16891ms)\nAspartame is also known as what?\tinsulin\t-12.955105156874989\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, does n?t have an effect on, insulin) -> insulin (8553ms)\nAspartame is also known as what?\ta deadly poison\t-12.95724450779302\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a deadly poison) -> a deadly poison (7337ms)\nAspartame is also known as what?\t10,000 calls\t-12.963246697966913\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (Aspartame Safety Network, has taken over, 10,000 calls) -> 10,000 calls (7337ms)\nAspartame is also known as what?\ta deadly neurotoxin\t-12.96979081611066\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a deadly neurotoxin) -> a deadly neurotoxin (7367ms)\nAspartame is also known as what?\ta psycho drug\t-12.96979081611066\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a psycho drug) -> a psycho drug (7366ms)\nAspartame is also known as what?\trat poison\t-12.970459886409403\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (aspartame, can be used as, rat poison) -> rat poison (16891ms)\nAspartame is also known as what?\tpharmaceutical companies\t-12.9902803050391\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (pharmaceutical companies, refuse to even remove, aspartame such) -> pharmaceutical companies (8939ms)\nAspartame is also known as what?\ta sugar substitute\t-12.992500241821036\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is used as, a sugar substitute) -> a sugar substitute (16891ms)\nAspartame is also known as what?\tDNA\t-12.994432613074173\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, change, $x) -> (aspartame, can change, DNA) -> DNA (16890ms)\nAspartame is also known as what?\ta health risk\t-12.995493186205653\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a health risk) -> a health risk (7367ms)\nAspartame is also known as what?\ta toxic poison\t-12.995493186205653\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a toxic poison) -> a toxic poison (7367ms)\nAspartame is also known as what?\tinherently and uniquely unstable\t-12.998698888662634\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, inherently and uniquely unstable) -> inherently and uniquely unstable (7367ms)\nAspartame is also known as what?\tThe NutraSweet Company\t-13.002946649216621\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, be a derivative of, aspartame) -> (The NutraSweet Company, is a derivative of, aspartame) -> The NutraSweet Company (8554ms)\nAspartame is also known as what?\ta seizure triggering drug\t-13.013279940752282\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a seizure triggering drug) -> a seizure triggering drug (7367ms)\nAspartame is also known as what?\ta dangerous neurotoxin\t-13.015894305069605\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a dangerous neurotoxin) -> a dangerous neurotoxin (8592ms)\nAspartame is also known as what?\ta chemical hypersensitization agent\t-13.025414094069573\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a chemical hypersensitization agent) -> a chemical hypersensitization agent (8592ms)\nAspartame is also known as what?\ttacky stria\t-13.045307620410217\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (Assisted aspartame, barely takes the form of, tacky stria) -> tacky stria (8592ms)\nAspartame is also known as what?\tan Imminent Health Hazard\t-13.072264874014131\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an Imminent Health Hazard) -> an Imminent Health Hazard (8592ms)\nAspartame is also known as what?\tunfit for human consumption\t-13.076313148092563\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, unfit for human consumption) -> unfit for human consumption (8592ms)\nAspartame is also known as what?\tespecially deadly for diabetics\t-13.076313148092563\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, especially deadly for diabetics) -> especially deadly for diabetics (8592ms)\nAspartame is also known as what?\tcompletely safe for diabetics\t-13.09078797228274\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, completely safe for diabetics) -> completely safe for diabetics (8630ms)\nAspartame is also known as what?\ta multipotential carcinogenic agent\t-13.098642782829051\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a multipotential carcinogenic agent) -> a multipotential carcinogenic agent (8630ms)\nAspartame is also known as what?\ta very safe substance\t-13.098642782829051\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a very safe substance) -> a very safe substance (8630ms)\nAspartame is also known as what?\ta very dangerous chemical\t-13.10192792767771\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a very dangerous chemical) -> a very dangerous chemical (8630ms)\nAspartame is also known as what?\t40 percent aspartic acid\t-13.111189091146692\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 40 percent aspartic acid) -> 40 percent aspartic acid (8630ms)\nAspartame is also known as what?\tan effective ant poison\t-13.111189091146692\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, an effective ant poison) -> an effective ant poison (8662ms)\nAspartame is also known as what?\ta literal chemical poison\t-13.111189091146692\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a literal chemical poison) -> a literal chemical poison (8662ms)\nAspartame is also known as what?\tsafe for use in food\t-13.130507755205905\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe for use in food) -> safe for use in food (8662ms)\nAspartame is also known as what?\tcrime\t-13.142523059317682\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, crime) -> crime (8662ms)\nAspartame is also known as what?\t86oF\t-13.151910882373482\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heated, $x) -> (aspartame, is heated above, 86oF) -> 86oF (13563ms)\nAspartame is also known as what?\tan addictive excitoneurotoxic carcinogenic drug\t-13.168756433618537\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an addictive excitoneurotoxic carcinogenic drug) -> an addictive excitoneurotoxic carcinogenic drug (8694ms)\nAspartame is also known as what?\tlymphoma and leukemia\t-13.16883436558688\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, lymphoma and leukemia) -> lymphoma and leukemia (8694ms)\nAspartame is also known as what?\tlymphomas and leukaemia\t-13.1726211721927\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, lymphomas and leukaemia) -> lymphomas and leukaemia (8694ms)\nAspartame is also known as what?\tweight gain\t-13.177180165596798\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, weight gain) -> weight gain (8694ms)\nAspartame is also known as what?\tbirth defects and mental retardation\t-13.189406401121705\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, birth defects and mental retardation) -> birth defects and mental retardation (8755ms)\nAspartame is also known as what?\tleukemia and lymphoma\t-13.199555312415459\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, leukemia and lymphoma) -> leukemia and lymphoma (8807ms)\nAspartame is also known as what?\tstroke-like symptoms\t-13.20371030864101\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, to cause, stroke-like symptoms) -> stroke-like symptoms (8807ms)\nAspartame is also known as what?\tmultiple sclerosis\t-13.211517129393053\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, multiple sclerosis) -> multiple sclerosis (8807ms)\nAspartame is also known as what?\tcancer of the kidney\t-13.211605402860599\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, cancer of the kidney) -> cancer of the kidney (8807ms)\nAspartame is also known as what?\tunique among the intense sweeteners in\t-13.219255327208192\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, unique among the intense sweeteners in) -> unique among the intense sweeteners in (8841ms)\nAspartame is also known as what?\tan epidemic of obesity\t-13.231670861443432\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, has caused, an epidemic of obesity) -> an epidemic of obesity (8841ms)\nAspartame is also known as what?\tbrain tumors and brain cancer\t-13.231885245928012\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, brain tumors and brain cancer) -> brain tumors and brain cancer (8841ms)\nAspartame is also known as what?\tdiabetics to go into convulsions\t-13.236545443415446\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, diabetics to go into convulsions) -> diabetics to go into convulsions (8888ms)\nAspartame is also known as what?\theadaches than placebo\t-13.242694539308909\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, to cause, headaches than placebo) -> headaches than placebo (8888ms)\nAspartame is also known as what?\ta potent neurotoxin and endocrine disrupter\t-13.24487010679334\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a potent neurotoxin and endocrine disrupter) -> a potent neurotoxin and endocrine disrupter (8888ms)\nAspartame is also known as what?\tSplenda\t-13.245978517926027\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, go to, Splenda) -> Splenda (8888ms)\nAspartame is also known as what?\ta coma\t-13.247188053099068\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (an aspartame product, had gone into, a coma) -> a coma (8888ms)\nAspartame is also known as what?\tjoint pain\t-13.259164522431597\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, can cause, joint pain) -> joint pain (8938ms)\nAspartame is also known as what?\ta poison when the NSDA opposed it\t-13.26141493026417\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, a poison when the NSDA opposed it) -> a poison when the NSDA opposed it (8938ms)\nAspartame is also known as what?\tSaccharin\t-13.26414374266086\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, often be, aspartame) -> (Saccharin, is often used together with, aspartame) -> Saccharin (8939ms)\nAspartame is also known as what?\ta toxic poison unfit for human consumption\t-13.276161604279048\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a toxic poison unfit for human consumption) -> a toxic poison unfit for human consumption (8974ms)\nAspartame is also known as what?\ta multipotential carcinogen even in small amounts\t-13.276161604279048\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a multipotential carcinogen even in small amounts) -> a multipotential carcinogen even in small amounts (8972ms)\nAspartame is also known as what?\ta potent brain toxin and endocrine disrupter\t-13.299847867991659\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a potent brain toxin and endocrine disrupter) -> a potent brain toxin and endocrine disrupter (8972ms)\nAspartame is also known as what?\tLyme disease and the Lyme treponema\t-13.309283626270215\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, can cause, Lyme disease and the Lyme treponema) -> Lyme disease and the Lyme treponema (8973ms)\nAspartame is also known as what?\tmass poisoning of the American public and more\t-13.3190191566379\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, mass poisoning of the American public and more) -> mass poisoning of the American public and more (8973ms)\nAspartame is also known as what?\ta significant conversion\t-13.349568866877258\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heated, $x) -> (aspartame, is heated there is, a significant conversion) -> a significant conversion (13563ms)\nAspartame is also known as what?\t160 to 220 times sweeter than table sugar\t-13.356232826773486\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 160 to 220 times sweeter than table sugar) -> 160 to 220 times sweeter than table sugar (8973ms)\nAspartame is also known as what?\tphenylalanine\t-13.363626653835176\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, like, $x) -> (drinking aspartame, is like drinking, phenylalanine) -> phenylalanine (13563ms)\nAspartame is also known as what?\ta cause\t-13.372280924749887\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a cause) -> a cause (9008ms)\nAspartame is also known as what?\t30 centigrad\t-13.37947251673491\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heated, $x) -> (aspartame, is heated above, 30 centigrad) -> 30 centigrad (13563ms)\nAspartame is also known as what?\ta life\t-13.385272649868078\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (aspartame, have taken on, a life) -> a life (9008ms)\nAspartame is also known as what?\ta world aspartame expert\t-13.40194794225491\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, treat, aspartame) -> (a world aspartame expert, treated, aspartame victims) -> a world aspartame expert (9480ms)\nAspartame is also known as what?\ttoxic\t-13.405311083357\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, was, toxic) -> toxic (9008ms)\nAspartame is also known as what?\tnames\t-13.415188718691057\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Aspartame, goes by, names) -> names (9009ms)\nAspartame is also known as what?\tcardiac disease\t-13.416726309946934\tAspartame is also known as what? -> [ aspartame ] be also know as what ? -> what role do aspartame have ? -> $x: (aspartame, role, $x) -> (aspartame, plays a major role in, cardiac disease) -> cardiac disease (9008ms)\nAspartame is also known as what?\t86 degrees Fahrenheit\t-13.42256503501658\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heated, $x) -> (aspartame, is heated above, 86 degrees Fahrenheit) -> 86 degrees Fahrenheit (13562ms)\nAspartame is also known as what?\tsale\t-13.435133017634751\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, go on, sale) -> sale (9038ms)\nAspartame is also known as what?\tpoison\t-13.436754242254896\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, poison) -> poison (9038ms)\nAspartame is also known as what?\tdeadly\t-13.436939748125768\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, deadly) -> deadly (9038ms)\nAspartame is also known as what?\ta harmful chemical\t-13.442706573001413\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, like, $x) -> (aspartame, is treated like, a harmful chemical) -> a harmful chemical (13563ms)\nAspartame is also known as what?\tharmful\t-13.443658426893744\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, harmful) -> harmful (9038ms)\nAspartame is also known as what?\tfine\t-13.458233078434377\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, fine) -> fine (9038ms)\nAspartame is also known as what?\tSearle\t-13.458965272567763\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (the aspartame studies, took a job with, Searle) -> Searle (9038ms)\nAspartame is also known as what?\tcontroversial\t-13.463601913915458\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, controversial) -> controversial (9070ms)\nAspartame is also known as what?\tunstable\t-13.471815691179899\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, unstable) -> unstable (9070ms)\nAspartame is also known as what?\thelpful\t-13.473245334945194\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, helpful) -> helpful (9070ms)\nAspartame is also known as what?\tsafe\t-13.473245334945194\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe) -> safe (9070ms)\nAspartame is also known as what?\tsweet\t-13.473245334945194\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, sweet) -> sweet (9070ms)\nAspartame is also known as what?\tsymptoms\t-13.474579366441603\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, may contribute to, aspartame) -> (symptoms, may be contributed to by, aspartame) -> symptoms (9197ms)\nAspartame is also known as what?\taspartame\t-13.479425505621183\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, treat, aspartame) -> (aspartame, treats, aspartame cases) -> aspartame (9480ms)\nAspartame is also known as what?\tavailable\t-13.48400303277941\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, available) -> available (9070ms)\nAspartame is also known as what?\tstable\t-13.486290515370074\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, stable) -> stable (9111ms)\nAspartame is also known as what?\tNeotame\t-13.498239283625521\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, be a derivative of, aspartame) -> (Neotame, is a derivative of, aspartame) -> Neotame (9111ms)\nAspartame is also known as what?\teverywhere\t-13.506691634234027\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, everywhere) -> everywhere (9111ms)\nAspartame is also known as what?\tgenotoxic\t-13.506691634234027\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, genotoxic) -> genotoxic (9111ms)\nAspartame is also known as what?\ta Maillard reaction\t-13.558843189729215\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: (aspartame, undergo, $x) -> (aspartame, can undergo, a Maillard reaction) -> a Maillard reaction (9606ms)\nAspartame is also known as what?\tfurther investigation\t-13.580553775833522\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: (aspartame, undergo, $x) -> (aspartame, has undergone, further investigation) -> further investigation (9606ms)\nAspartame is also known as what?\ta sludge\t-13.586181458801374\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (a sludge, is centrifuged to remove, the aspartame) -> a sludge (9197ms)\nAspartame is also known as what?\tdeath\t-13.591124399782386\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, death) -> death (9197ms)\nAspartame is also known as what?\tstraight to the brain\t-13.610952362298637\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Components of aspartame, go, straight to the brain) -> straight to the brain (9233ms)\nAspartame is also known as what?\tCincinnati\t-13.666756192940705\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, treat, aspartame) -> (Cincinnati, has been treating, aspartame victims) -> Cincinnati (9480ms)\nAspartame is also known as what?\tThe FDA\t-13.674043017680898\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (The FDA, has refused to remove, aspartame) -> The FDA (9233ms)\nAspartame is also known as what?\t200 studies\t-13.678473409985177\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: (aspartame, undergo, $x) -> (Aspartame, has undergone close to, 200 studies) -> 200 studies (9606ms)\nAspartame is also known as what?\tFL\t-13.68935078761925\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, treat, aspartame) -> (FL, has treated hundreds of, aspartame reactors) -> FL (9480ms)\nAspartame is also known as what?\tthe cell\t-13.724788103686011\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the function of aspartame be ? -> $x: (aspartame, function, $x) -> (aspartame, disrupts the functioning of, the cell) -> the cell (9233ms)\nAspartame is also known as what?\tmillions\t-13.734787378610937\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (the aspartame disease toll, has taken the lives of, millions) -> millions (9233ms)\nAspartame is also known as what?\tchromosomal damage\t-13.804652728442738\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, chromosomal damage) -> chromosomal damage (9272ms)\nAspartame is also known as what?\t86o F.\t-13.810048654931993\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heating, $x) -> (aspartame-sweetened beverages, had been heated to over, 86o F.) -> 86o F. (12897ms)\nAspartame is also known as what?\tgreat toxicity\t-13.835741864891048\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, great toxicity) -> great toxicity (9272ms)\nAspartame is also known as what?\thealth problems\t-13.847508390053736\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, health problems) -> health problems (9314ms)\nAspartame is also known as what?\tserious disease\t-13.847508390053736\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, serious disease) -> serious disease (9315ms)\nAspartame is also known as what?\tbrain lesions\t-13.88338925792959\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, to cause, brain lesions) -> brain lesions (9314ms)\nAspartame is also known as what?\tMonsanto\t-13.894869834826219\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, prevent, aspartame) -> (Monsanto, prevented, aspartame congressional hearings) -> Monsanto (9314ms)\nAspartame is also known as what?\tleukemia\t-13.904973647100492\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, leukemia) -> leukemia (9357ms)\nAspartame is also known as what?\tDeaths\t-13.905538869499168\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, have be link to, aspartame) -> (Deaths, have also been linked to, aspartame consumption) -> Deaths (9357ms)\nAspartame is also known as what?\tan epidemic of diabetes\t-13.911172658859506\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, has caused, an epidemic of diabetes) -> an epidemic of diabetes (9357ms)\nAspartame is also known as what?\ta spike in insulin levels\t-13.911172658859506\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, a spike in insulin levels) -> a spike in insulin levels (9357ms)\nAspartame is also known as what?\tadverse changes or health problems\t-13.922740018070428\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, can cause, adverse changes or health problems) -> adverse changes or health problems (9388ms)\nAspartame is also known as what?\tlesions\t-13.93536999267891\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, lesions) -> lesions (9388ms)\nAspartame is also known as what?\tan epidemic of obesity and diabetes\t-13.941822318251138\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, has caused, an epidemic of obesity and diabetes) -> an epidemic of obesity and diabetes (9388ms)\nAspartame is also known as what?\ttumors\t-13.944004586380172\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causing, tumors) -> tumors (9388ms)\nAspartame is also known as what?\tbrain tumors or brain cancer in animals\t-13.962223437115089\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, has caused, brain tumors or brain cancer in animals) -> brain tumors or brain cancer in animals (9388ms)\nAspartame is also known as what?\tparticipants\t-13.975267977567515\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (participants, are asked to remove, aspartame) -> participants (9514ms)\nAspartame is also known as what?\theadaches\t-13.994929233977087\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, may cause, headaches) -> headaches (9513ms)\nAspartame is also known as what?\tfair\t-14.001952995212173\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (fair, is to remove, all aspartame products) -> fair (9513ms)\nAspartame is also known as what?\tthe devil\t-14.07167733290325\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, the devil) -> the devil (9546ms)\nAspartame is also known as what?\tyears\t-14.124206676595701\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (?Aspartame News ?, goes back for, years) -> years (9546ms)\nAspartame is also known as what?\tthe highest incidence\t-14.133538814099389\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, caused, the highest incidence) -> the highest incidence (9546ms)\nAspartame is also known as what?\tthe market\t-14.144884852470076\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (Aspartame products, should be taken off, the market) -> the market (9546ms)\nAspartame is also known as what?\tthe disappearance\t-14.2448123501464\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, again effected, the disappearance) -> the disappearance (9546ms)\nAspartame is also known as what?\tthe market years\t-14.374541588193493\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (Aspartame, should have been taken off, the market years) -> the market years (9576ms)\nAspartame is also known as what?\tthe product of genetic engineering\t-14.378533887102668\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, the product of genetic engineering) -> the product of genetic engineering (9577ms)\nAspartame is also known as what?\tthe body\t-14.421554287972588\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, has the same deleterious effects on, the body) -> the body (9576ms)\nAspartame is also known as what?\tthe brain\t-14.507089268273011\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, go straight to, the brain) -> the brain (9606ms)\nAspartame is also known as what?\tthe brains\t-14.507474128974719\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, has such an effect on, the brains) -> the brains (9606ms)\nAspartame is also known as what?\tthe cell?s energy source\t-14.527963072096963\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the function of aspartame be ? -> $x: (aspartame, function, $x) -> (aspartame, disrupts the functioning of, the cell?s energy source) -> the cell?s energy source (9606ms)\nAspartame is also known as what?\tMerck\t-14.568441007572526\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (Merck, was told to remove, the aspartame) -> Merck (9638ms)\nAspartame is also known as what?\tthe behavior\t-14.572677075071166\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (neither sugar nor aspartame, had any effect on, the behavior) -> the behavior (9638ms)\nAspartame is also known as what?\tthe pink\t-14.596472832118689\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (The blue ? aspartame, Took the spotlight from, the pink) -> the pink (9637ms)\nAspartame is also known as what?\tproblems\t-14.60010577903887\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, can cause, problems) -> problems (9637ms)\nAspartame is also known as what?\tthe gut right\t-14.613649262461578\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame methanol, goes from, the gut right) -> the gut right (9637ms)\nAspartame is also known as what?\tthe blood brain barrier\t-14.630070928220434\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (? Aspartame, goes past, the blood brain barrier) -> the blood brain barrier (9717ms)\nAspartame is also known as what?\t86 degrees\t-14.646316207855747\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heating, $x) -> (aspartame, is heated above, 86 degrees) -> 86 degrees (12897ms)\nAspartame is also known as what?\t85 degrees\t-14.703767969453462\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heating, $x) -> (Aspartame, is heated above, 85 degrees) -> 85 degrees (12897ms)\nAspartame is also known as what?\tthe FDA\t-15.05310802586057\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (the FDA, to remove, aspartame) -> the FDA (9717ms)\nAspartame is also known as what?\tthe most tested additive in history\t-15.055186032062853\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, the most tested additive in history) -> the most tested additive in history (9717ms)\nAspartame is also known as what?\tthe single focus in Sweet Misery\t-15.076470697084327\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, the single focus in Sweet Misery) -> the single focus in Sweet Misery (9717ms)\nAspartame is also known as what?\tthe substance name for the sugar substitutes\t-15.088133459244444\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, the substance name for the sugar substitutes) -> the substance name for the sugar substitutes (9794ms)\nAspartame is also known as what?\tAttorney James Turner\t-15.113222283406367\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, prevent, aspartame) -> (Attorney James Turner, tried to prevent, approval of aspartame) -> Attorney James Turner (9794ms)\nAspartame is also known as what?\tthe brain to cease production of serotonin\t-15.121598410653153\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, the brain to cease production of serotonin) -> the brain to cease production of serotonin (9794ms)\nAspartame is also known as what?\tDr. John Olney\t-15.126834917256188\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, prevent, aspartame) -> (Dr. John Olney, tried to prevent, approval of aspartame) -> Dr. John Olney (9794ms)\nAspartame is also known as what?\tthe most tested food additive in history\t-15.130564912125124\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, the most tested food additive in history) -> the most tested food additive in history (9794ms)\nAspartame is also known as what?\tFood\t-15.138671255294895\tAspartame is also known as what? -> [ aspartame ] be also know as what ? -> which country be aspartame locate ? -> $x: ($x, instance of, country) (aspartame, locate, $x) -> $x: ($x, instance of, country) (aspartame, in finding, $x) -> (Food, Instance Of, country) (aspartame, is found in, foods) -> Food (12526ms)\nAspartame is also known as what?\tthe first South African retailer\t-17.005589857981857\tAspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (the first South African retailer, to remove, aspartame) -> the first South African retailer (9860ms)\nWhat countries have Rhodes Scholars come from?\tAustralia\t-3.2474246255901003\tWhat countries have Rhodes Scholars come from? -> $x: ($x, instance of, countries) (Rhodes Scholars, come from, $x) -> (Australia, Instance Of, country) (some Rhodes Scholars, come from, Australia) -> Australia (3130ms)\nWhat countries have Rhodes Scholars come from?\tAustralia's\t-3.654204484345242\tWhat countries have Rhodes Scholars come from? -> $x: ($x, instance of, countries) (Rhodes Scholars, come from, $x) -> (Australia's, Instance Of, country) (some Rhodes Scholars, come from, Australia) -> Australia's (3131ms)\nWhat countries have Rhodes Scholars come from?\tAustralia/NZ\t-12.001006203161731\tWhat countries have Rhodes Scholars come from? -> what country have [ rhode scholar come from ] ? -> what nation have rhode scholar come from ? -> $x: ($x, instance of, nation) (rhode scholar, come from, $x) -> (Australia/NZ, Instance Of, nation) (some Rhodes Scholars, come from, Australia) -> Australia/NZ (8095ms)\nWhat countries have Rhodes Scholars come from?\tCarolina's\t-12.65637398361742\tWhat countries have Rhodes Scholars come from? -> what country [ have rhode scholar ] come from ? -> what country produce have rhode scholar ? -> $x: ($x, instance of, country) ($x, produce have, rhode scholar) -> (Carolina's, Instance Of, place around the country) (Carolina, has produced, more Rhodes Scholars) -> Carolina's (9081ms)\nWhat countries have Rhodes Scholars come from?\tCarolinas\t-12.710651993545644\tWhat countries have Rhodes Scholars come from? -> what country [ have rhode scholar ] come from ? -> what country produce have rhode scholar ? -> $x: ($x, instance of, country) ($x, produce have, rhode scholar) -> (Carolinas, Instance Of, country) (Carolina, has produced, more Rhodes Scholars) -> Carolinas (9081ms)\nWhat countries have Rhodes Scholars come from?\tCarolina\t-12.912195671028\tWhat countries have Rhodes Scholars come from? -> what country [ have rhode scholar ] come from ? -> what country produce have rhode scholar ? -> $x: ($x, instance of, country) ($x, produce have, rhode scholar) -> (Carolina, Instance Of, country) (Carolina, has produced, more Rhodes Scholars) -> Carolina (9275ms)\nWhat countries have Rhodes Scholars come from?\taustralia\t-14.510759249617752\tWhat countries have Rhodes Scholars come from? -> what country have [ rhode scholar come from ] ? -> what county have rhode scholar come from ? -> $x: ($x, instance of, county) (rhode scholar, come from, $x) -> (australia, Instance Of, overseas county) (some Rhodes Scholars, come from, Australia) -> australia (9420ms)\nOn what date did the disaster occur?\tthe Philippine island\t-4.449582943097699\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, the Philippine island) -> the Philippine island (1336ms)\nOn what date did the disaster occur?\tthe Housatonic line\t-4.488552239896154\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, occurred on, the Housatonic line) -> the Housatonic line (1336ms)\nOn what date did the disaster occur?\tthe Riverside area\t-4.5691567810543985\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, the Riverside area) -> the Riverside area (1336ms)\nOn what date did the disaster occur?\tthe Japanese archipelago\t-4.66169811268249\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurred this year in, the Japanese archipelago) -> the Japanese archipelago (1337ms)\nOn what date did the disaster occur?\tthe Costa Concordia\t-4.672803584465823\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurred on, the Costa Concordia) -> the Costa Concordia (2210ms)\nOn what date did the disaster occur?\turban forestry\t-4.673986655317394\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do get, the disaster) -> (urban forestry, got to do with, the disaster) -> urban forestry (4905ms)\nOn what date did the disaster occur?\tthe United States\t-4.746523237581372\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, were occurring in, the United States) -> the United States (2210ms)\nOn what date did the disaster occur?\tthe Cape\t-4.776115073478792\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (other disasters, do occur on, the Cape) -> the Cape (2210ms)\nOn what date did the disaster occur?\tLake Huron\t-4.8311834530727005\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the sad disaster, occurred on, Lake Huron) -> Lake Huron (2211ms)\nOn what date did the disaster occur?\tJanuary 2\t-4.900150835594953\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The Ibrox disaster, occurred on, January 2) -> January 2 (2307ms)\nOn what date did the disaster occur?\tInterstate 10\t-4.914968095923475\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurred on, Interstate 10) -> Interstate 10 (2307ms)\nOn what date did the disaster occur?\tthe Afghan people\t-5.039212931652478\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, die from, the disaster) -> (the Afghan people, will be dying from, the disaster) -> the Afghan people (5609ms)\nOn what date did the disaster occur?\tinternational waters\t-5.047472744329748\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (990 disaster, occurred on, international waters) -> international waters (2307ms)\nOn what date did the disaster occur?\tthe Chinese people\t-5.050899780694786\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, battle, the disaster) -> (the Chinese people, could win the battle against, the disaster) -> the Chinese people (2307ms)\nOn what date did the disaster occur?\tNew Hamburg\t-5.06752366876302\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (New Hamburg, have anything to do with, the disaster) -> New Hamburg (5559ms)\nOn what date did the disaster occur?\tsuch a gradient\t-5.093771260017944\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurs on, such a gradient) -> such a gradient (2806ms)\nOn what date did the disaster occur?\tMicrosoft Exchange server\t-5.109725072954323\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, occurs on, Microsoft Exchange server) -> Microsoft Exchange server (2807ms)\nOn what date did the disaster occur?\tthe Indian leaders\t-5.162800624803013\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (the Indian leaders, were struggling to overcome, the disaster) -> the Indian leaders (2807ms)\nOn what date did the disaster occur?\tthe 15th\t-5.1757630906734295\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (this disaster, occurred on, the 15th) -> the 15th (2807ms)\nOn what date did the disaster occur?\tthe Tohoku region\t-5.189282333924692\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Tohoku region, were affected by, the disaster) -> the Tohoku region (5217ms)\nOn what date did the disaster occur?\tCRA loans\t-5.192762654250276\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (CRA loans, had almost nothing to do with, the subprime disaster) -> CRA loans (5559ms)\nOn what date did the disaster occur?\tMohave County\t-5.19931911745566\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have typically occurred in, Mohave County) -> Mohave County (2807ms)\nOn what date did the disaster occur?\tthe 20th\t-5.1999343021591455\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, the 20th) -> the 20th (3489ms)\nOn what date did the disaster occur?\tterritorial waters\t-5.202207314506562\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (those disasters, occurred on, territorial waters) -> territorial waters (3488ms)\nOn what date did the disaster occur?\thuman karma\t-5.207931787236899\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (human karma, had nothing to do with, the disasters) -> human karma (5559ms)\nOn what date did the disaster occur?\tSoutheast Asia\t-5.2755365962660425\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, engulf, $x) -> (the economic disaster, has engulfed, Southeast Asia) -> Southeast Asia (3488ms)\nOn what date did the disaster occur?\tJuly 18\t-5.278041694517063\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (no disaster, will occur on, July 18) -> July 18 (3489ms)\nOn what date did the disaster occur?\tfloor failure\t-5.307239444920774\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (floor failure, had nothing to do with, the WTC disasters) -> floor failure (5559ms)\nOn what date did the disaster occur?\tNew Zealand\t-5.308943732476954\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (the biggest disasters, has occurred in, New Zealand) -> New Zealand (3896ms)\nOn what date did the disaster occur?\tDow Chemical\t-5.317244700135611\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (Dow Chemical, had nothing to do with, the Bhopal disaster) -> Dow Chemical (5559ms)\nOn what date did the disaster occur?\tthe Japanese people\t-5.3293778289689815\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Japanese people, were affected by, the disaster) -> the Japanese people (5217ms)\nOn what date did the disaster occur?\tthe PUP\t-5.336546715821077\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (the PUP, have done with, the NEMO disaster agency) -> the PUP (5559ms)\nOn what date did the disaster occur?\tthe Republic\t-5.362472509655581\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (the Republic, suffered from, the Chernobyl disaster) -> the Republic (5217ms)\nOn what date did the disaster occur?\tthe Japanese groups\t-5.376397807152841\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Japanese groups, were directly affected by, the disasters) -> the Japanese groups (5217ms)\nOn what date did the disaster occur?\tcomplex systems\t-5.392455727884328\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, arise in, $x) -> (The disasters, arise in, complex systems) -> complex systems (4496ms)\nOn what date did the disaster occur?\tJan . 12 , 2010\t-5.395717782905346\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, Jan . 12 , 2010) -> Jan . 12 , 2010 (3488ms)\nOn what date did the disaster occur?\tJune 5 , 1976\t-5.397249955960236\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, June 5 , 1976) -> June 5 , 1976 (3488ms)\nOn what date did the disaster occur?\tJapanese people\t-5.404304973264043\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (Japanese people, are suffering from, the triple disaster) -> Japanese people (5217ms)\nOn what date did the disaster occur?\tmanufacturing plants\t-5.407915105252096\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occurred frequently in, manufacturing plants) -> manufacturing plants (3609ms)\nOn what date did the disaster occur?\tthe Ukraine\t-5.412871766945625\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the Chernobyl disaster, happened in, the Ukraine) -> the Ukraine (4830ms)\nOn what date did the disaster occur?\tdecorating combs\t-5.416060363344872\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (decorating combs, has something to do with, the almost disaster) -> decorating combs (5610ms)\nOn what date did the disaster occur?\tPort au Prince\t-5.4239099909472115\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, has occurred in, Port au Prince) -> Port au Prince (4118ms)\nOn what date did the disaster occur?\tJackson Hole\t-5.424964394515853\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, had occurred in, Jackson Hole) -> Jackson Hole (4117ms)\nOn what date did the disaster occur?\ta clear day\t-5.427605789427632\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occured on, a clear day) -> a clear day (3609ms)\nOn what date did the disaster occur?\tTuesday afternoon\t-5.448826526565425\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Katrina disaster, occurred on, Tuesday afternoon) -> Tuesday afternoon (3609ms)\nOn what date did the disaster occur?\tthe North Sea Piper Alpha rig\t-5.4592548306443405\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, the North Sea Piper Alpha rig) -> the North Sea Piper Alpha rig (3609ms)\nOn what date did the disaster occur?\tDecember 22 , 2008\t-5.463564779279199\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, December 22 , 2008) -> December 22 , 2008 (3609ms)\nOn what date did the disaster occur?\tLet?s\t-5.467470436918694\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to avoid, the disaster) -> (Let?s, try to avoid, the disaster part) -> Let?s (4118ms)\nOn what date did the disaster occur?\tWarren County\t-5.469785974166262\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occured in, Warren County) -> Warren County (3609ms)\nOn what date did the disaster occur?\tTur `Abdin\t-5.492278325129551\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Tur `Abdin, were destroyed in, the disaster) -> Tur `Abdin (5610ms)\nOn what date did the disaster occur?\ta periodic basis\t-5.495992334419171\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, occur on, a periodic basis) -> a periodic basis (3697ms)\nOn what date did the disaster occur?\t26 April 1986\t-5.519070399984072\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, 26 April 1986) -> 26 April 1986 (3697ms)\nOn what date did the disaster occur?\tApril 26 1986\t-5.5224138068940904\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Chernobyl disaster, occurred on, April 26 1986) -> April 26 1986 (3697ms)\nOn what date did the disaster occur?\tNew York\t-5.527988253738464\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, New York) -> New York (4119ms)\nOn what date did the disaster occur?\thelping Haitians\t-5.559065951664043\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (helping Haitians, were affected by, the disaster) -> helping Haitians (5217ms)\nOn what date did the disaster occur?\tenglish language\t-5.563076364135158\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to report, the disaster) -> (english language, reports relating to, the disaster) -> english language (3697ms)\nOn what date did the disaster occur?\tStephens Media\t-5.5662130389396065\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to report, the disaster) -> (Stephens Media, continues to report on, the financial disaster) -> Stephens Media (3697ms)\nOn what date did the disaster occur?\ta project site?contact\t-5.566728195148206\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurs on, a project site?contact) -> a project site?contact (3697ms)\nOn what date did the disaster occur?\turban areas\t-5.569538161739265\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (urban areas, may be affected by, the disaster) -> urban areas (5281ms)\nOn what date did the disaster occur?\tSouth East Asia\t-5.576798895813421\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (the tragic natural disaster, has occurred in, South East Asia) -> South East Asia (3897ms)\nOn what date did the disaster occur?\tthe Meuse Valley\t-5.577159992693748\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the mysterious fog disaster, occurred in, the Meuse Valley) -> the Meuse Valley (4117ms)\nOn what date did the disaster occur?\tApril 26 , 1986\t-5.577501084308237\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, April 26 , 1986) -> April 26 , 1986 (3775ms)\nOn what date did the disaster occur?\tNYC\t-5.583757250264638\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the 9-11 disaster, happened in, NYC) -> NYC (4830ms)\nOn what date did the disaster occur?\tBP\t-5.586837129433285\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (BP, could suffer from, the Gulf disaster) -> BP (5281ms)\nOn what date did the disaster occur?\tOctober 5 , 1930\t-5.595310239516027\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, October 5 , 1930) -> October 5 , 1930 (3775ms)\nOn what date did the disaster occur?\tOctober 7 , 2010\t-5.603268022530486\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, October 7 , 2010) -> October 7 , 2010 (3775ms)\nOn what date did the disaster occur?\t2012\t-5.616795149366839\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, will again occur in, 2012) -> 2012 (3775ms)\nOn what date did the disaster occur?\tSeptember 30 , 1879\t-5.6236045732671816\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, September 30 , 1879) -> September 30 , 1879 (3775ms)\nOn what date did the disaster occur?\tSeptember\t-5.625409003341349\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, September) -> September (3775ms)\nOn what date did the disaster occur?\tthe 26th April 1986\t-5.639756391745698\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Chernobyl nuclear disaster, occurred on, the 26th April 1986) -> the 26th April 1986 (3896ms)\nOn what date did the disaster occur?\thydrogen peroxide\t-5.653993743809598\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (hydrogen peroxide, has been affected by, the disaster) -> hydrogen peroxide (5281ms)\nOn what date did the disaster occur?\twestern Hungary\t-5.66816430020528\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, western Hungary) -> western Hungary (4497ms)\nOn what date did the disaster occur?\thillside communities\t-5.675138191352289\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurred in, hillside communities) -> hillside communities (4497ms)\nOn what date did the disaster occur?\t3 May 1945\t-5.689271462634646\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The greatest ship disaster, occurred on, 3 May 1945) -> 3 May 1945 (4537ms)\nOn what date did the disaster occur?\tBMW\t-5.69883241559447\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to avoid, the disaster) -> (BMW, is trying to completely avoid, the GM EV1 disaster) -> BMW (4538ms)\nOn what date did the disaster occur?\tWaco\t-5.702609244281291\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, Waco) -> Waco (4536ms)\nOn what date did the disaster occur?\tmore than 85 percent\t-5.703143789914343\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (more than 85 percent, has much to do with, the BP oil disaster) -> more than 85 percent (5609ms)\nOn what date did the disaster occur?\tNew Yorkers\t-5.704018086842863\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (New Yorkers, cope with, the disaster) -> New Yorkers (4537ms)\nOn what date did the disaster occur?\tany part\t-5.704566978815167\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, any part) -> any part (4537ms)\nOn what date did the disaster occur?\tRaph\t-5.705911169324156\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do get, the disaster) -> (Raph, do Labour plan to get, the natural disaster fund) -> Raph (4905ms)\nOn what date did the disaster occur?\tthe Courland\t-5.7099433178542895\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be experience, the disaster) -> (the Courland, was experiencing, the sand disaster) -> the Courland (5371ms)\nOn what date did the disaster occur?\tTuesday\t-5.711176190995911\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, Tuesday) -> Tuesday (4830ms)\nOn what date did the disaster occur?\tAug. 29 , 2005\t-5.7151832596107255\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, occurred on, Aug. 29 , 2005) -> Aug. 29 , 2005 (4830ms)\nOn what date did the disaster occur?\tan island\t-5.716891887976281\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (this disaster, occurred on, an island) -> an island (4905ms)\nOn what date did the disaster occur?\tany\t-5.721287229248482\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurs in, any) -> any (4905ms)\nOn what date did the disaster occur?\tdifferent regions\t-5.729958486052406\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, different regions) -> different regions (4905ms)\nOn what date did the disaster occur?\ta tremendous scale\t-5.736037225814808\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, would occur on, a tremendous scale) -> a tremendous scale (4905ms)\nOn what date did the disaster occur?\tcoastal areas\t-5.739391614172785\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, will occur in, coastal areas) -> coastal areas (5280ms)\nOn what date did the disaster occur?\tMouse Island\t-5.752499170358837\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a natural weather disaster, occurs on, Mouse Island) -> Mouse Island (5371ms)\nOn what date did the disaster occur?\ta Dutch government\t-5.759626386979023\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (a Dutch government, has done so since, the Chernobyl-disaster) -> a Dutch government (5609ms)\nOn what date did the disaster occur?\tMonday\t-5.773562016917484\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, Monday) -> Monday (5371ms)\nOn what date did the disaster occur?\tLocal governments\t-5.780895283811277\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (Local governments, are desperate to cope with, the disaster) -> Local governments (5371ms)\nOn what date did the disaster occur?\tearth\t-5.789120132622706\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (natural disasters, will occur on, earth) -> earth (5371ms)\nOn what date did the disaster occur?\ta big scale\t-5.790365632422311\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, occur on, a big scale) -> a big scale (5412ms)\nOn what date did the disaster occur?\tcertain terrain types\t-5.795178212574028\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, tends to occur in, certain terrain types) -> certain terrain types (5412ms)\nOn what date did the disaster occur?\tthe Atlantic\t-5.812482411504389\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, exhibit, the disaster) -> (the Atlantic, has an exhibit about, the disaster) -> the Atlantic (5412ms)\nOn what date did the disaster occur?\tNew Orleans\t-5.827898563218403\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the devastating natural disaster, happened in, New Orleans) -> New Orleans (5413ms)\nOn what date did the disaster occur?\tApril 20th\t-5.828442880694817\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (This disaster, occurred on, April 20th) -> April 20th (5412ms)\nOn what date did the disaster occur?\tJuly 28 , 1976\t-5.834476767642612\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a natural disaster, occurred on, July 28 , 1976) -> July 28 , 1976 (5412ms)\nOn what date did the disaster occur?\t1937\t-5.8452372986881285\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, 1937) -> 1937 (5609ms)\nOn what date did the disaster occur?\tthe States\t-5.846071699190841\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the Chilean mining disaster, had happened here in, the States) -> the States (5889ms)\nOn what date did the disaster occur?\tPrince William Sound\t-5.848094293531336\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The Exxon Valdez disaster, occurred in, Prince William Sound) -> Prince William Sound (5889ms)\nOn what date did the disaster occur?\tcalm seas\t-5.859394372873296\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, calm seas) -> calm seas (5889ms)\nOn what date did the disaster occur?\tIraq\t-5.862023544863483\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, has already occurred in, Iraq) -> Iraq (5888ms)\nOn what date did the disaster occur?\tconflict zones\t-5.866124930997012\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, conflict zones) -> conflict zones (5889ms)\nOn what date did the disaster occur?\tDecember 2 , 1959 ? i .e\t-5.8695161828678035\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred here on, December 2 , 1959 ? i .e) -> December 2 , 1959 ? i .e (5889ms)\nOn what date did the disaster occur?\tfour villages\t-5.8831036630341735\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, engulf, $x) -> (The mudflow disaster, engulfed, four villages) -> four villages (5926ms)\nOn what date did the disaster occur?\tMay\t-5.887743341090969\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, May) -> May (5927ms)\nOn what date did the disaster occur?\ta much larger scale\t-5.891591466967757\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, occur on, a much larger scale) -> a much larger scale (5926ms)\nOn what date did the disaster occur?\tMax\t-5.896224533457355\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (Max, must overcome, the previous evening?s disaster) -> Max (5926ms)\nOn what date did the disaster occur?\t1902\t-5.901984970183839\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Monomoy Disaster, occured in, 1902) -> 1902 (5926ms)\nOn what date did the disaster occur?\tan area\t-5.903275819381619\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurs in, an area) -> an area (5927ms)\nOn what date did the disaster occur?\t1989\t-5.9116166901343465\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, 1989) -> 1989 (5995ms)\nOn what date did the disaster occur?\tthe Northeast\t-5.915737812303883\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (The disaster, happened in, the Northeast) -> the Northeast (5995ms)\nOn what date did the disaster occur?\tthe Judiciary\t-5.923854652014038\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the disaster he?s, caused in, the Judiciary) -> the Judiciary (5995ms)\nOn what date did the disaster occur?\tlocal communities\t-5.926021937236987\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurs first in, local communities) -> local communities (5995ms)\nOn what date did the disaster occur?\tAsia\t-5.92713484053662\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disasters, occurred in, Asia) -> Asia (6260ms)\nOn what date did the disaster occur?\ta local , national or global scale\t-5.934291634238648\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, occur on, a local , national or global scale) -> a local , national or global scale (6261ms)\nOn what date did the disaster occur?\tRapu-Rapu island\t-5.938518494078377\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (an environmental disaster, occurred on, Rapu-Rapu island) -> Rapu-Rapu island (6261ms)\nOn what date did the disaster occur?\t1999\t-5.948688425173802\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the disaster, caused in, 1999) -> 1999 (6261ms)\nOn what date did the disaster occur?\tnumerous occasions\t-5.95021977992922\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Disasters, have occurred on, numerous occasions) -> numerous occasions (6342ms)\nOn what date did the disaster occur?\tthe Middle East\t-5.9502235036609115\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, is happening in, the Middle East) -> the Middle East (6342ms)\nOn what date did the disaster occur?\ta worldwide scale\t-5.9509902128738545\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (such disasters, occur repeatedly on, a worldwide scale) -> a worldwide scale (6342ms)\nOn what date did the disaster occur?\tan effort\t-5.964121167947066\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (an effort, cope with, the disaster) -> an effort (6342ms)\nOn what date did the disaster occur?\tCA ARCserve D2D servers\t-5.964317735124443\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurs on, CA ARCserve D2D servers) -> CA ARCserve D2D servers (6342ms)\nOn what date did the disaster occur?\ta smaller scale\t-5.966905778902772\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Disasters, can also occur on, a smaller scale) -> a smaller scale (6342ms)\nOn what date did the disaster occur?\tless developed regions\t-5.998790550498391\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disasters, often occur in, less developed regions) -> less developed regions (6401ms)\nOn what date did the disaster occur?\tthe Japanese\t-6.000964974006872\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Japanese, have been affected by, the disasters) -> the Japanese (6401ms)\nOn what date did the disaster occur?\tland and sea\t-6.001454038291154\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (countless disasters, occurred both on, land and sea) -> land and sea (6401ms)\nOn what date did the disaster occur?\t100\t-6.0059280839799\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, die from, the disaster) -> (100, have died from, the disaster) -> 100 (6401ms)\nOn what date did the disaster occur?\tthe Gulf\t-6.010741320480681\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The ecological disaster, occurred in, the Gulf) -> the Gulf (6401ms)\nOn what date did the disaster occur?\t?the system ?\t-6.013758285042497\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (?the system ?, will overcome, the disasters) -> ?the system ? (6450ms)\nOn what date did the disaster occur?\tyoung children\t-6.014976658707384\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (young children, cope with, the disaster) -> young children (6450ms)\nOn what date did the disaster occur?\tdates\t-6.01718798755506\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, seem to frequently occur on, dates) -> dates (6450ms)\nOn what date did the disaster occur?\tAugust 5 , 2010\t-6.0191380298245605\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (This disaster, occurred on, August 5 , 2010) -> August 5 , 2010 (6450ms)\nOn what date did the disaster occur?\tH-GAC\t-6.019190938885459\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have develop, the disaster) -> (H-GAC, has developed, the Disaster Debris Clearance) -> H-GAC (6450ms)\nOn what date did the disaster occur?\tcoal-fired power stations\t-6.021052262760893\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, also affect, $x) -> (the natural disaster, also affected, coal-fired power stations) -> coal-fired power stations (6765ms)\nOn what date did the disaster occur?\t7 February 1967\t-6.022936111758429\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (an Australian natural disaster, occurred on, 7 February 1967) -> 7 February 1967 (6766ms)\nOn what date did the disaster occur?\tsecurity drills\t-6.029123799231814\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur during, $x) -> (the disasters, occurred during, security drills) -> security drills (6766ms)\nOn what date did the disaster occur?\twar\t-6.030591130855935\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur during, $x) -> (the disaster, occurred during, war) -> war (6766ms)\nOn what date did the disaster occur?\tconsequence\t-6.0366823432081835\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, consequence) -> consequence (6818ms)\nOn what date did the disaster occur?\twhole villages\t-6.037873301383342\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, engulf, $x) -> (the worst tsunami disasters, engulfed, whole villages) -> whole villages (6818ms)\nOn what date did the disaster occur?\tmusicians\t-6.038489855980634\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (musicians, suffered from, the disaster) -> musicians (6818ms)\nOn what date did the disaster occur?\t1644\t-6.03936858484653\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The disaster, occurred in, 1644) -> 1644 (6818ms)\nOn what date did the disaster occur?\ta more regular basis\t-6.047693647202903\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (These disasters, are occurring on, a more regular basis) -> a more regular basis (6818ms)\nOn what date did the disaster occur?\tThe GOP\t-6.049255450879302\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (The GOP, has truly overcome, the disaster) -> The GOP (6909ms)\nOn what date did the disaster occur?\t1957\t-6.051478990081329\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, had occurred in, 1957) -> 1957 (6909ms)\nOn what date did the disaster occur?\tdisabilities\t-6.054366282039295\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (disabilities, have survived, the disaster) -> disabilities (6909ms)\nOn what date did the disaster occur?\t150 youth\t-6.057261781219649\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (150 youth, were affected by, the disasters) -> 150 youth (6909ms)\nOn what date did the disaster occur?\tunexpected places\t-6.058651583874912\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occurred in, unexpected places) -> unexpected places (6910ms)\nOn what date did the disaster occur?\t1.5 million people\t-6.065120951594405\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (1.5 million people, have been affected by, the disaster) -> 1.5 million people (7004ms)\nOn what date did the disaster occur?\tabout non-Japanese regions\t-6.065312515307349\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (about non-Japanese regions, are affected by, the disaster) -> about non-Japanese regions (7004ms)\nOn what date did the disaster occur?\t386.400 people\t-6.0709313544169285\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (386.400 people, suffered from, the disaster) -> 386.400 people (7004ms)\nOn what date did the disaster occur?\t417,000 people\t-6.0709313544169285\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (417,000 people, suffered from, the disaster) -> 417,000 people (7004ms)\nOn what date did the disaster occur?\teach other\t-6.079458488394602\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (each other, cope with, the disaster) -> each other (7104ms)\nOn what date did the disaster occur?\tindividual schools\t-6.084421661259081\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (individual schools, were affected by, the disaster) -> individual schools (7105ms)\nOn what date did the disaster occur?\tHelp children\t-6.085865481344278\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (Help children, cope with, the disaster) -> Help children (7104ms)\nOn what date did the disaster occur?\ta long time\t-6.093882400748859\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (a long time, are now suffering from, the disaster) -> a long time (7105ms)\nOn what date did the disaster occur?\t1923\t-6.10312920470618\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The worst disaster, occurred in, 1923) -> 1923 (7105ms)\nOn what date did the disaster occur?\tCuba\t-6.105839363586356\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have take place in, $x) -> (the greatest natural disasters, have taken place in, Cuba) -> Cuba (7105ms)\nOn what date did the disaster occur?\tPart 1\t-6.121175895375393\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the nuclear disaster, happened in, Part 1) -> Part 1 (7352ms)\nOn what date did the disaster occur?\tline\t-6.125876672282289\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (line, had absolutely nothing to do with, the Katrina disaster) -> line (7352ms)\nOn what date did the disaster occur?\trecent years\t-6.127512642045552\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (the natural disasters, had occurred in, recent years) -> recent years (7407ms)\nOn what date did the disaster occur?\tno Canadian media outlet\t-6.12799386992803\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have report, the disaster) -> (no Canadian media outlet, has reported on, the USC disaster) -> no Canadian media outlet (7407ms)\nOn what date did the disaster occur?\tMarch 2011\t-6.129288394721432\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, March 2011) -> March 2011 (7407ms)\nOn what date did the disaster occur?\teach generation\t-6.133463353264924\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the Aberfan disaster, will happen only once in, each generation) -> each generation (7407ms)\nOn what date did the disaster occur?\thalf the world\t-6.138715150600547\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (half the world, suffers from, the worst natural disaster) -> half the world (7407ms)\nOn what date did the disaster occur?\t1984\t-6.139506537848473\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The Bhopal Disaster, occurred in, 1984) -> 1984 (7509ms)\nOn what date did the disaster occur?\ttwang\t-6.141777785241424\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (twang, had anything to do with, the Challenger disaster) -> twang (7510ms)\nOn what date did the disaster occur?\tas many as 50 %\t-6.142513232534416\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (as many as 50 %, would have survived, the disaster) -> as many as 50 % (7509ms)\nOn what date did the disaster occur?\tDecember 1987\t-6.153653678372903\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The disaster, occurred in, December 1987) -> December 1987 (7509ms)\nOn what date did the disaster occur?\tthe Deaf\t-6.159828721304226\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Deaf, has been affected by, the disaster) -> the Deaf (7559ms)\nOn what date did the disaster occur?\ttime\t-6.168116506357713\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disasters, may occur suddenly in, time) -> time (7559ms)\nOn what date did the disaster occur?\t1986\t-6.168620390655693\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the Chernobyl nuclear disaster, happened in, 1986) -> 1986 (7559ms)\nOn what date did the disaster occur?\tsuccessive kinds\t-6.184742608512019\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The disaster, occurs in, successive kinds) -> successive kinds (7559ms)\nOn what date did the disaster occur?\tchile\t-6.185292124002283\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, chile) -> chile (7635ms)\nOn what date did the disaster occur?\tFood\t-6.195136993806326\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, also get, the disaster) -> (Food, has also been slow getting to, the disaster area) -> Food (7636ms)\nOn what date did the disaster occur?\tlarge part\t-6.19636515637646\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the Katrina disaster, was caused in, large part) -> large part (7636ms)\nOn what date did the disaster occur?\tJapan\t-6.197240742419725\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, recently occurred in, Japan) -> Japan (7636ms)\nOn what date did the disaster occur?\tMay 1910\t-6.1999596346209165\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, May 1910) -> May 1910 (7694ms)\nOn what date did the disaster occur?\ttwo players\t-6.203522884744503\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (two players, had survived, the most famous maritime disaster) -> two players (7694ms)\nOn what date did the disaster occur?\tLouisiana\t-6.2051985254341835\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur here in, Louisiana) -> Louisiana (7694ms)\nOn what date did the disaster occur?\tAlabama\t-6.206887396239676\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, Alabama) -> Alabama (7694ms)\nOn what date did the disaster occur?\tEarth?s populations\t-6.211946051332375\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (Earth?s populations, have survived, the Nuclear Disaster) -> Earth?s populations (7694ms)\nOn what date did the disaster occur?\ta floor\t-6.2157839032591875\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurs on, a floor) -> a floor (7827ms)\nOn what date did the disaster occur?\tlate October and early November 2007\t-6.216069173597814\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disasters, occurred in, late October and early November 2007) -> late October and early November 2007 (7827ms)\nOn what date did the disaster occur?\tKie Fallis\t-6.217142354621143\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have report, the disaster) -> (Kie Fallis, had issued a report before, the disaster) -> Kie Fallis (7827ms)\nOn what date did the disaster occur?\tAssisi parishioners\t-6.218185814311024\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Assisi parishioners, were affected by, the disaster) -> Assisi parishioners (7827ms)\nOn what date did the disaster occur?\t13 provinces\t-6.2229695973723835\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (13 provinces, were affected by, the disaster) -> 13 provinces (7827ms)\nOn what date did the disaster occur?\tresidents\t-6.224072742716561\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (residents, do have to weather, the occasional natural disaster) -> residents (7944ms)\nOn what date did the disaster occur?\tIrish wills\t-6.227060086550398\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Irish wills, were destroyed in, the 1922 disaster) -> Irish wills (7944ms)\nOn what date did the disaster occur?\tregulations\t-6.233390413455289\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to develop, the disaster) -> (regulations, were developed to prevent, the next disaster) -> regulations (7945ms)\nOn what date did the disaster occur?\tApril 1986\t-6.240272687907348\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Chernobyl nuclear disaster, occurred in, April 1986) -> April 1986 (7945ms)\nOn what date did the disaster occur?\ta place\t-6.241488647720615\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, a place) -> a place (8072ms)\nOn what date did the disaster occur?\tchildren\t-6.247772339274519\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (children, cope with, the recent wildfire disaster) -> children (8072ms)\nOn what date did the disaster occur?\tyoung specialists\t-6.25020831360224\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (young specialists, suffered from, the Chernobyl disaster) -> young specialists (8072ms)\nOn what date did the disaster occur?\tdepositors or borrowers\t-6.250435749196544\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (depositors or borrowers, have been affected by, the disaster) -> depositors or borrowers (8072ms)\nOn what date did the disaster occur?\tdefaulted borrowers\t-6.2587661676742865\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (defaulted borrowers, have been affected by, the disaster) -> defaulted borrowers (8072ms)\nOn what date did the disaster occur?\tBagong Silang\t-6.260605988254653\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (Bagong Silang, has been affected the most by, the disaster) -> Bagong Silang (8072ms)\nOn what date did the disaster occur?\tspecimens\t-6.261684747206443\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (specimens, had survived, the Space Shuttle Columbia disaster) -> specimens (8116ms)\nOn what date did the disaster occur?\twinter\t-6.2632956535104345\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster and destruction, occurs in, winter) -> winter (8116ms)\nOn what date did the disaster occur?\tApril 20\t-6.263348185698563\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Deepwater Horizon disaster, occurred on, April 20) -> April 20 (8116ms)\nOn what date did the disaster occur?\tMySpace\t-6.2636483505534954\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (MySpace, has been able to survive with, the disaster) -> MySpace (8116ms)\nOn what date did the disaster occur?\t200,000 people\t-6.272763514293783\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (200,000 people, were directly affected by, the disaster) -> 200,000 people (8117ms)\nOn what date did the disaster occur?\tthe Aged\t-6.276115587352464\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Aged, were affected by, the disaster) -> the Aged (8307ms)\nOn what date did the disaster occur?\t1347\t-6.277301824639945\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, break out in, $x) -> (The fearful disaster, broke out in, 1347) -> 1347 (8307ms)\nOn what date did the disaster occur?\treal time\t-6.280820738446793\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, is happening in almost, real time) -> real time (8307ms)\nOn what date did the disaster occur?\tonce offered protection\t-6.2811213585238015\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (once offered protection, were destroyed in, the disaster) -> once offered protection (8307ms)\nOn what date did the disaster occur?\tPalm Beach\t-6.2853344712647\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the ballot disaster, happened in, Palm Beach) -> Palm Beach (8307ms)\nOn what date did the disaster occur?\t1868\t-6.2854919904651965\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the most notorious disaster, happened here in, 1868) -> 1868 (8307ms)\nOn what date did the disaster occur?\tlate July\t-6.286154089538541\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur during, $x) -> (The disaster, specifically occurred during, late July) -> late July (8388ms)\nOn what date did the disaster occur?\tthe North End\t-6.286803596049426\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Boston Molasses Disaster, occurred in, the North End) -> the North End (8388ms)\nOn what date did the disaster occur?\tKorean carmakers\t-6.2873107160337725\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Korean carmakers, were less affected by, the disaster) -> Korean carmakers (8388ms)\nOn what date did the disaster occur?\tUSDA\t-6.289137236192966\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, struggle with, the disaster) -> (USDA, was struggling with, the disaster program regulations) -> USDA (8388ms)\nOn what date did the disaster occur?\ta magnitude\t-6.289598415303532\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (natural disasters, occur on, a magnitude) -> a magnitude (8388ms)\nOn what date did the disaster occur?\tindustry\t-6.293952348666821\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disasters, have occurred in, industry) -> industry (8388ms)\nOn what date did the disaster occur?\tCINCPACFLT\t-6.296989527679711\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurs in, CINCPACFLT) -> CINCPACFLT (8479ms)\nOn what date did the disaster occur?\tthe Gulf of Mexico\t-6.298370629326308\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (the disaster, occurred in, the Gulf of Mexico) -> the Gulf of Mexico (8479ms)\nOn what date did the disaster occur?\tgovernments\t-6.304360954074535\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (governments, cope with, the insurmountable disaster assistance) -> governments (8479ms)\nOn what date did the disaster occur?\t950,000 people\t-6.306637863992694\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (950,000 people, have been affected by, the disaster) -> 950,000 people (8479ms)\nOn what date did the disaster occur?\ta reservation\t-6.311828555219099\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a natural disaster, occur on, a reservation) -> a reservation (8479ms)\nOn what date did the disaster occur?\twitness\t-6.316614558122388\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (witness, were coping with, the disaster ?) -> witness (8832ms)\nOn what date did the disaster occur?\tiPad tablets\t-6.317373422587121\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (iPad tablets, could be affected by, the disaster) -> iPad tablets (8832ms)\nOn what date did the disaster occur?\teconomic activities\t-6.31750027439554\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, also affect, $x) -> (The natural disaster, has also affected, economic activities) -> economic activities (8832ms)\nOn what date did the disaster occur?\tscam people\t-6.31817420691244\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (scam people, have been affected by, the disaster) -> scam people (8832ms)\nOn what date did the disaster occur?\tBritish families\t-6.3191418480916095\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (British families, have been affected by, the disaster) -> British families (8833ms)\nOn what date did the disaster occur?\t1967\t-6.325123386336996\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The third Mayak disaster, occurred in, 1967) -> 1967 (8876ms)\nOn what date did the disaster occur?\tThree attempts\t-6.3263634609589445\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (Three attempts, have been made to overcome, the disaster) -> Three attempts (8876ms)\nOn what date did the disaster occur?\t14 million people\t-6.329556706718581\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (14 million people, have been affected by, the disaster) -> 14 million people (8876ms)\nOn what date did the disaster occur?\tthe ship\t-6.331018111899781\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, the ship) -> the ship (8876ms)\nOn what date did the disaster occur?\tApril 2010\t-6.333238688551951\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Deepwater Horizon disaster, occurred in, April 2010) -> April 2010 (8876ms)\nOn what date did the disaster occur?\tindustry employees\t-6.338613845099218\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (industry employees, were affected by, the disasters) -> industry employees (8876ms)\nOn what date did the disaster occur?\tmore than 90,000 people\t-6.339428046061922\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (more than 90,000 people, suffered from, the disaster) -> more than 90,000 people (8920ms)\nOn what date did the disaster occur?\t99,300 cattle or sheep\t-6.339428046061922\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, die from, the disaster) -> (99,300 cattle or sheep, died from, the disasters) -> 99,300 cattle or sheep (8920ms)\nOn what date did the disaster occur?\tSLA members\t-6.341674190813631\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (SLA members, have been affected by, the disaster) -> SLA members (8920ms)\nOn what date did the disaster occur?\tHaiti\t-6.343708168009654\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (Haiti, cope with, the disaster) -> Haiti (8920ms)\nOn what date did the disaster occur?\t28 December 1879\t-6.34581482749604\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Tay Bridge disaster, occurred on, 28 December 1879) -> 28 December 1879 (8920ms)\nOn what date did the disaster occur?\t20 people\t-6.346548752540442\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (20 people, have each been affected by, the disaster) -> 20 people (8920ms)\nOn what date did the disaster occur?\tSaturday\t-6.349687149960524\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (This disaster, occurred on, Saturday) -> Saturday (9004ms)\nOn what date did the disaster occur?\tDecember\t-6.3502069397943455\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurred there in, December) -> December (9004ms)\nOn what date did the disaster occur?\tBaze\t-6.350868039038781\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, notice, the disaster) -> (Baze, failed to notice, the disaster) -> Baze (9004ms)\nOn what date did the disaster occur?\twomen and children\t-6.3520860656099405\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (women and children, have been affected by, the natural disaster) -> women and children (9004ms)\nOn what date did the disaster occur?\ttakeoff\t-6.355709117813001\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur during, $x) -> (The Challenger disaster, occurred during, takeoff) -> takeoff (9004ms)\nOn what date did the disaster occur?\tfive turtle species\t-6.357162337659417\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (five turtle species, are affected by, the disaster) -> five turtle species (9004ms)\nOn what date did the disaster occur?\tTexas\t-6.36048265038969\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, Texas) -> Texas (9048ms)\nOn what date did the disaster occur?\tOgoni-land\t-6.3677223798130775\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the environmental disaster Shell, was causing in, Ogoni-land) -> Ogoni-land (9048ms)\nOn what date did the disaster occur?\tDec 2009\t-6.370114887298335\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the worst coal ash disasters, happened in, Dec 2009) -> Dec 2009 (9048ms)\nOn what date did the disaster occur?\tSomalia\t-6.376197934882336\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurred in, Somalia) -> Somalia (9112ms)\nOn what date did the disaster occur?\tVan\t-6.387025138513902\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (Van, have been the worst affected by, the disaster) -> Van (9112ms)\nOn what date did the disaster occur?\tconfidence\t-6.392482891192342\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the Chernobyl disaster, may cause a sudden drop in, confidence) -> confidence (9478ms)\nOn what date did the disaster occur?\temployees\t-6.393280601808498\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (employees, may have been affected by, the disaster) -> employees (9479ms)\nOn what date did the disaster occur?\tconsumers\t-6.395526263911212\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (consumers, cope with, the World Trade Center disaster) -> consumers (9479ms)\nOn what date did the disaster occur?\tthe public\t-6.402199888643847\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (the public, has done little to avert, the disaster) -> the public (9478ms)\nOn what date did the disaster occur?\tvolunteers\t-6.402925712279018\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, don?t have, the disaster) -> (volunteers, don?t have to be on-scene at, the disaster) -> volunteers (9479ms)\nOn what date did the disaster occur?\tThe Peruvian Trading Company\t-6.4031406102416835\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (The Peruvian Trading Company, was destroyed in, the disaster) -> The Peruvian Trading Company (9526ms)\nOn what date did the disaster occur?\t12 provinces\t-6.404024849345074\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (12 provinces, were directly affected by, the disaster) -> 12 provinces (9526ms)\nOn what date did the disaster occur?\tten districts\t-6.407361689250599\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (ten districts, have been affected by, the disaster) -> ten districts (9526ms)\nOn what date did the disaster occur?\tHvalur?s fin whale meat\t-6.414831959765049\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Hvalur?s fin whale meat, were destroyed in, the disaster) -> Hvalur?s fin whale meat (9526ms)\nOn what date did the disaster occur?\tKansas\t-6.419813767974819\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurs in, Kansas) -> Kansas (9526ms)\nOn what date did the disaster occur?\tpets\t-6.422351624797711\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (pets, coped better with, the disaster) -> pets (9526ms)\nOn what date did the disaster occur?\t250,000 people\t-6.431277477494636\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (250,000 people, were affected by, the disaster) -> 250,000 people (9575ms)\nOn what date did the disaster occur?\tindividuals\t-6.435208012549394\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (individuals, were adversely affected by, the disaster) -> individuals (9575ms)\nOn what date did the disaster occur?\tTabasco\t-6.437889958598934\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disasters, occurred in, Tabasco) -> Tabasco (9575ms)\nOn what date did the disaster occur?\tclose friends\t-6.439203837624996\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (close friends, have been affected by, the Tsunami disaster) -> close friends (9575ms)\nOn what date did the disaster occur?\tthe New Orleans\t-6.447411887950081\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have take place in, $x) -> (the great disaster, has taken place in, the New Orleans) -> the New Orleans (9575ms)\nOn what date did the disaster occur?\tTen vehicles\t-6.451771494729535\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Ten vehicles, were completely destroyed in, the disaster) -> Ten vehicles (9635ms)\nOn what date did the disaster occur?\tthirteen million\t-6.453973880923336\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (thirteen million, have been affected by, the disaster) -> thirteen million (9635ms)\nOn what date did the disaster occur?\tPalestinians\t-6.464449759866913\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (Palestinians, still suffer from, the disaster) -> Palestinians (9635ms)\nOn what date did the disaster occur?\tcommercial bank balance sheets\t-6.464871148821558\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have take place in, $x) -> (the disaster, has taken place in, commercial bank balance sheets) -> commercial bank balance sheets (9635ms)\nOn what date did the disaster occur?\t2500 Gulf residents\t-6.4708929852004555\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (2500 Gulf residents, have been affected by, the Gulf disaster) -> 2500 Gulf residents (9635ms)\nOn what date did the disaster occur?\t115 Foundation grant recipients\t-6.4714851953946155\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (115 Foundation grant recipients, were affected by, the disaster) -> 115 Foundation grant recipients (9635ms)\nOn what date did the disaster occur?\tsurrounding areas\t-6.472742017258995\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (surrounding areas, were seriously affected by, the disaster) -> surrounding areas (9911ms)\nOn what date did the disaster occur?\tMore people\t-6.4773493781267515\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (More people, have been directly affected by, the disaster) -> More people (9911ms)\nOn what date did the disaster occur?\t500 and 1,000 people\t-6.4780097827511876\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (500 and 1,000 people, could have been affected by, the disaster) -> 500 and 1,000 people (9911ms)\nOn what date did the disaster occur?\tComoros\t-6.48010452523228\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disaster, occurred in, Comoros) -> Comoros (9912ms)\nOn what date did the disaster occur?\tmore than 18 million people\t-6.481378872342342\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (more than 18 million people, were affected by, the disaster) -> more than 18 million people (9912ms)\nOn what date did the disaster occur?\tMinnesota\t-6.48896142851728\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occurred in, Minnesota) -> Minnesota (9990ms)\nOn what date did the disaster occur?\tMexico\t-6.48896142851728\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occurred in, Mexico) -> Mexico (9990ms)\nOn what date did the disaster occur?\ta hand\t-6.497657584707218\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (a hand, overcome, the typhoon disaster) -> a hand (9990ms)\nOn what date did the disaster occur?\tMore than 300 churches\t-6.500663715546867\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (More than 300 churches, were affected by, the disaster) -> More than 300 churches (9990ms)\nOn what date did the disaster occur?\tmore than 200,000 people\t-6.5017154230790375\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (more than 200,000 people, have been affected by, the disaster) -> more than 200,000 people (10054ms)\nOn what date did the disaster occur?\tPakistan\t-6.50230887367932\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, engulf, $x) -> (the disaster, has engulfed, Pakistan) -> Pakistan (10054ms)\nOn what date did the disaster occur?\tTwenty-two provinces\t-6.504231206433298\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (Twenty-two provinces, have been affected by, the disaster) -> Twenty-two provinces (10054ms)\nOn what date did the disaster occur?\t36 districts\t-6.507537353759073\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (36 districts, had been directly affected by, the disaster) -> 36 districts (10054ms)\nOn what date did the disaster occur?\tMyanmar\t-6.511864702490016\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the natural disasters, have happened in, Myanmar) -> Myanmar (10054ms)\nOn what date did the disaster occur?\tparticular\t-6.5121332307883995\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (particular, has been affected by, the disaster) -> particular (10141ms)\nOn what date did the disaster occur?\tauctions\t-6.5251756676801005\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (The March 11 disaster, caused the decline in, auctions) -> auctions (10141ms)\nOn what date did the disaster occur?\tFour million people\t-6.525421250991341\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Four million people, have been affected by, the disaster) -> Four million people (10141ms)\nOn what date did the disaster occur?\tlife and livelihood\t-6.530544183777136\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (life and livelihood, has been most affected by, the BP disaster) -> life and livelihood (10141ms)\nOn what date did the disaster occur?\tLibreville\t-6.537804286777925\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, Libreville) -> Libreville (10401ms)\nOn what date did the disaster occur?\ta million people\t-6.538651767844591\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (a million people, have been affected by, the natural disaster) -> a million people (10400ms)\nOn what date did the disaster occur?\tthe Gulf Stream Current\t-6.540355625221823\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (the Gulf Stream Current, has been affected by, the B.P. disaster) -> the Gulf Stream Current (10401ms)\nOn what date did the disaster occur?\tTokyo\t-6.553421990364505\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (Tokyo, are still coping with, the disaster) -> Tokyo (10401ms)\nOn what date did the disaster occur?\tHungary\t-6.55375369312586\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the ecological disaster, occurred in, Hungary) -> Hungary (10401ms)\nOn what date did the disaster occur?\tIndia\t-6.55695888788896\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the great disaster, caused in, India) -> India (11300ms)\nOn what date did the disaster occur?\tCurly\t-6.571990168299007\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to report, the disaster) -> (Curly, was the first to report, the disaster) -> Curly (11300ms)\nOn what date did the disaster occur?\tCalifornia\t-6.589531536230647\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disasters, occur every year in, California) -> California (12285ms)\nOn what date did the disaster occur?\tRussia\t-6.589659891769246\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Russia, were severely affected by, the disaster) -> Russia (12285ms)\nOn what date did the disaster occur?\tsite\t-6.593562156149684\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, should occur on, site) -> site (12285ms)\nOn what date did the disaster occur?\tMontana\t-6.593997428710394\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the worst environmental disaster, has happened in, Montana) -> Montana (12285ms)\nOn what date did the disaster occur?\tpercent\t-6.603070199277935\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (percent, has been affected by, the disaster) -> percent (12889ms)\nOn what date did the disaster occur?\ta year\t-6.609091345206126\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (a year, are still suffering from, the Chernobyl disaster) -> a year (12890ms)\nOn what date did the disaster occur?\thull design\t-6.611208833054622\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have be make in, $x) -> (the Titanic disaster changes, had been made both in, hull design) -> hull design (12889ms)\nOn what date did the disaster occur?\tstudents\t-6.62179584371064\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (students, may have been affected by, the disaster) -> students (13795ms)\nOn what date did the disaster occur?\tAdam\t-6.6268006418415055\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, had happened in, Adam) -> Adam (13794ms)\nOn what date did the disaster occur?\tWhitehaven\t-6.648915386538014\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Wellington Pit Disaster, occurred in, Whitehaven) -> Whitehaven (13897ms)\nOn what date did the disaster occur?\tthe workplace\t-6.659551233139469\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, do occur in, the workplace) -> the workplace (13896ms)\nOn what date did the disaster occur?\tItaly\t-6.666013001410367\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, Italy) -> Italy (13896ms)\nOn what date did the disaster occur?\tthe earth\t-6.666561763064014\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Disasters, were occurring somewhere on, the earth) -> the earth (13897ms)\nOn what date did the disaster occur?\ta building\t-6.674103126594012\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, has occurred in, a building) -> a building (14817ms)\nOn what date did the disaster occur?\twildlife\t-6.677771399263447\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (wildlife, had survived, the disaster) -> wildlife (14817ms)\nOn what date did the disaster occur?\tdeveloping countries\t-6.678017901816398\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurring in, developing countries) -> developing countries (14817ms)\nOn what date did the disaster occur?\tKauai\t-6.681203385031589\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the worst Disasters, happen in, Kauai) -> Kauai (15468ms)\nOn what date did the disaster occur?\tan urban area\t-6.690317495703825\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (a disaster, occurs in, an urban area) -> an urban area (15468ms)\nOn what date did the disaster occur?\tFishermen\t-6.698980278608079\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, battle, the disaster) -> (Fishermen, now are battling, the worst maritime oil disaster) -> Fishermen (15468ms)\nOn what date did the disaster occur?\tIndonesia\t-6.699612506270396\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disasters, happened in, Indonesia) -> Indonesia (15468ms)\nOn what date did the disaster occur?\tGermany and japan\t-6.703616076578493\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Similar disasters, occurred in, Germany and japan) -> Germany and japan (15468ms)\nOn what date did the disaster occur?\tJapan and Thailand\t-6.703616076578493\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (natural disasters, occurring in, Japan and Thailand) -> Japan and Thailand (15574ms)\nOn what date did the disaster occur?\tOctober\t-6.709338662087049\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, October) -> October (15573ms)\nOn what date did the disaster occur?\tconnections\t-6.710968914208362\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (connections, had been affected by, the September 11 disaster) -> connections (15573ms)\nOn what date did the disaster occur?\tAustralia\t-6.71265455445475\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (the horrific disaster, has occurred right here in, Australia) -> Australia (15573ms)\nOn what date did the disaster occur?\tthe island\t-6.716469085745965\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Natural disasters, sometimes occur on, the island) -> the island (15573ms)\nOn what date did the disaster occur?\tJune\t-6.717713943909247\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, June) -> June (15573ms)\nOn what date did the disaster occur?\tdeveloped countries\t-6.718282828895253\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Natural disasters, occurring in, developed countries) -> developed countries (16383ms)\nOn what date did the disaster occur?\tJune 14th\t-6.7224320047476676\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (also the disaster, occurred on, June 14th) -> June 14th (16383ms)\nOn what date did the disaster occur?\tBelarus\t-6.724007611145275\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (Belarus, suffered the most from, the Chernobyl disaster) -> Belarus (16383ms)\nOn what date did the disaster occur?\tmothers\t-6.725247022898608\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (mothers, had been affected by, the Chernobyl Disaster) -> mothers (16383ms)\nOn what date did the disaster occur?\tSouthampton\t-6.726347823979141\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Southampton, were affected by, the disaster) -> Southampton (16383ms)\nOn what date did the disaster occur?\tthe planet\t-6.727611791896729\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, the planet) -> the planet (16383ms)\nOn what date did the disaster occur?\tApril\t-6.727673644924244\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the following disasters, occurred in, April) -> April (17169ms)\nOn what date did the disaster occur?\tVermont\t-6.7355021924664165\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be experience, the disaster) -> (Vermont, is experiencing, the worst flooding disaster) -> Vermont (17169ms)\nOn what date did the disaster occur?\tthe Galacian coast\t-6.736262461938385\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, unfold on, $x) -> (the environmental disaster, has unfolded on, the Galacian coast) -> the Galacian coast (17169ms)\nOn what date did the disaster occur?\tthe Republican watch\t-6.741194834788075\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, happen on, $x) -> (the disaster, happened on, the Republican watch) -> the Republican watch (17169ms)\nOn what date did the disaster occur?\tMarch 11\t-6.7421699945039775\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, happen on, $x) -> (the earthquake disaster, happened on, March 11) -> March 11 (17169ms)\nOn what date did the disaster occur?\tsedation\t-6.7483678286215625\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (?The worst disasters, occur in, sedation) -> sedation (17242ms)\nOn what date did the disaster occur?\tRomania\t-6.753125483048105\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The most severe disaster, occurred in, Romania) -> Romania (17242ms)\nOn what date did the disaster occur?\tMeknes\t-6.757244416869499\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the mosque disaster, occurred in, Meknes) -> Meknes (17242ms)\nOn what date did the disaster occur?\tFlorida\t-6.757722036898944\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (The natural disasters, have occurred in, Florida) -> Florida (18321ms)\nOn what date did the disaster occur?\tthe Philippines\t-6.7620350102520135\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The worst smallpox disaster, occurred in, the Philippines) -> the Philippines (18321ms)\nOn what date did the disaster occur?\tthe Earth\t-6.763207986055724\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, happen on, $x) -> (disaster, often happens on, the Earth) -> the Earth (18322ms)\nOn what date did the disaster occur?\tan economy\t-6.780083542932331\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (The disaster, occurred in, an economy) -> an economy (18322ms)\nOn what date did the disaster occur?\tthe U.S.\t-6.780391816187363\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, the U.S.) -> the U.S. (18398ms)\nOn what date did the disaster occur?\tAfghanistan\t-6.785966017883716\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (Afghanistan, suffered from, the Oct. 8 disaster) -> Afghanistan (18398ms)\nOn what date did the disaster occur?\tChernobyl\t-6.797033331941794\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (The last disaster, happened in, Chernobyl) -> Chernobyl (18398ms)\nOn what date did the disaster occur?\tSichuan\t-6.805483049564347\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the earthquake disaster, happened in, Sichuan) -> Sichuan (18471ms)\nOn what date did the disaster occur?\tscreams\t-6.811871608963521\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to avoid, the disaster) -> (screams, runs to avoid, the messy disaster) -> screams (18471ms)\nOn what date did the disaster occur?\tRikuzentakata\t-6.812934629907545\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Rikuzentakata, were destroyed in, the disaster) -> Rikuzentakata (18471ms)\nOn what date did the disaster occur?\tBhopal\t-6.8319300751051095\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Bhopal, were directly affected by, the disaster) -> Bhopal (18471ms)\nOn what date did the disaster occur?\twarning\t-6.838397517210188\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, can strike, $x) -> (the unexpected Disaster, can strike without, warning) -> warning (18550ms)\nOn what date did the disaster occur?\tJiangxi\t-6.847026022860187\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Jiangxi, have been affected by, the disaster) -> Jiangxi (18549ms)\nOn what date did the disaster occur?\tTohoshinki\t-6.859861709720458\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Tohoshinki, were affected by, the disaster) -> Tohoshinki (18550ms)\nOn what date did the disaster occur?\tvictims\t-6.884757898022489\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (victims, are affected by, the disaster) -> victims (18621ms)\nOn what date did the disaster occur?\tGray\t-6.904032189170236\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Gray, was affected personally by, the disaster) -> Gray (18697ms)\nOn what date did the disaster occur?\trenters\t-6.906053498770577\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (renters, have suffered from, the disaster) -> renters (18697ms)\nOn what date did the disaster occur?\tPersuasion\t-6.9088695087049885\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The one real disaster, occurs in, Persuasion) -> Persuasion (18697ms)\nOn what date did the disaster occur?\tthe Reagan years\t-6.912376851181441\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> $x: (disaster, unfold in, $x) -> (the savings and loan disaster, unfolded in, the Reagan years) -> the Reagan years (18697ms)\nOn what date did the disaster occur?\tcompanies\t-6.923699321291338\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to avoid, the disaster) -> (companies, want to avoid being, the next risk disaster) -> companies (18772ms)\nOn what date did the disaster occur?\tSeptember 11\t-6.934977655775833\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, happen on, $x) -> (the disaster, happened on, September 11) -> September 11 (18773ms)\nOn what date did the disaster occur?\tpart\t-6.937884578126118\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the disaster, was caused in, part) -> part (18772ms)\nOn what date did the disaster occur?\tFriday\t-6.941645524794993\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (worst disasters, occurred on, Friday) -> Friday (18772ms)\nOn what date did the disaster occur?\tthe Garden of Eden\t-6.942996483688253\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (the disaster, occurred in, the Garden of Eden) -> the Garden of Eden (18846ms)\nOn what date did the disaster occur?\tthe amulet\t-6.947666464973385\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (the amulet, has something to do with, the disasters) -> the amulet (18846ms)\nOn what date did the disaster occur?\tAdobe\t-6.95933375460857\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be experience, the disaster) -> (Adobe, is experiencing its own version of, the Y2k disaster) -> Adobe (18929ms)\nOn what date did the disaster occur?\tApril 15 , 1989\t-6.965684192643375\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The Hillsborough disaster, occurred on, April 15 , 1989) -> April 15 , 1989 (18929ms)\nOn what date did the disaster occur?\tnews\t-6.971120114921354\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have report, the disaster) -> (news, have already been reported about, the disaster) -> news (18929ms)\nOn what date did the disaster occur?\trecords\t-6.97317764488034\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (records, are affected by, the disaster) -> records (18929ms)\nOn what date did the disaster occur?\tmembers\t-6.983064085246025\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (members, have been affected by, the disaster) -> members (19060ms)\nOn what date did the disaster occur?\tSabbath\t-6.98763165950211\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (our disasters, occurred on, Sabbath) -> Sabbath (19060ms)\nOn what date did the disaster occur?\thistory\t-6.997710643997572\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (history, had miraculously managed to survive, the disaster) -> history (19268ms)\nOn what date did the disaster occur?\tGuatemala\t-6.999992220234808\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Guatemala, was most affected by, the disaster) -> Guatemala (19268ms)\nOn what date did the disaster occur?\tthe night\t-7.000965990354336\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Disaster, occurred on, the night) -> the night (19268ms)\nOn what date did the disaster occur?\tEngland\t-7.022633167668367\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the 17th this disaster, caused an immense sensation in, England) -> England (19268ms)\nOn what date did the disaster occur?\tthe cusp\t-7.023326096221225\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occured on, the cusp) -> the cusp (19357ms)\nOn what date did the disaster occur?\tsuccessive kinds of turbulence\t-7.028237811234516\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The disaster, occurs in, successive kinds of turbulence) -> successive kinds of turbulence (19356ms)\nOn what date did the disaster occur?\tterms\t-7.030425962456505\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the swine flu disaster, has caused in, terms) -> terms (19356ms)\nOn what date did the disaster occur?\tthe Space Pirate\t-7.031311359056607\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, strike on, $x) -> (disaster, struck on, the Space Pirate) -> the Space Pirate (19356ms)\nOn what date did the disaster occur?\tApril 20 , 2010\t-7.03290207460995\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Deepwater Horizon disaster, occurred on, April 20 , 2010) -> April 20 , 2010 (19356ms)\nOn what date did the disaster occur?\tearnest\t-7.07852241324718\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have start in, $x) -> (the disaster, has started in, earnest) -> earnest (19595ms)\nOn what date did the disaster occur?\t2008\t-7.079202319103705\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurring in, 2008) -> 2008 (19595ms)\nOn what date did the disaster occur?\t2011\t-7.087765471889056\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (a disaster, occurring in, 2011) -> 2011 (19595ms)\nOn what date did the disaster occur?\tKing County\t-7.090319361069244\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, can strike, $x) -> (the most common disasters, can strike in, King County) -> King County (19595ms)\nOn what date did the disaster occur?\tthe absence\t-7.091586937829587\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurs in, the absence) -> the absence (19595ms)\nOn what date did the disaster occur?\tthe county\t-7.097284360731464\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, the county) -> the county (19668ms)\nOn what date did the disaster occur?\tthe future\t-7.105116927369245\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occur in, the future) -> the future (19668ms)\nOn what date did the disaster occur?\t2010-11\t-7.106098909526249\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (a disaster, occurred in, 2010-11) -> 2010-11 (19668ms)\nOn what date did the disaster occur?\t2010\t-7.113467841984049\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (a disaster, occurring in, 2010) -> 2010 (19668ms)\nOn what date did the disaster occur?\tslow motion\t-7.124088279920293\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> $x: (disaster, unfold in, $x) -> (the disaster, unfolded in, slow motion) -> slow motion (19668ms)\nOn what date did the disaster occur?\tfacilities\t-7.127282943469433\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (facilities, may have been affected by, the disaster) -> facilities (19668ms)\nOn what date did the disaster occur?\tOct. 4\t-7.128855566018536\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, erupt on, $x) -> (The Hungarian disaster, erupted on, Oct. 4) -> Oct. 4 (19793ms)\nOn what date did the disaster occur?\tcosts\t-7.1314858133660755\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the Deepwater Horizon disaster, caused an increase in, costs) -> costs (19792ms)\nOn what date did the disaster occur?\tthe Balkans\t-7.131629240377255\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> $x: (disaster, have occur in, $x) -> (Great disasters, have occurred in, the Balkans) -> the Balkans (19792ms)\nOn what date did the disaster occur?\tthe form\t-7.1381086567756995\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disasters, can occur in, the form) -> the form (19792ms)\nOn what date did the disaster occur?\tMarch\t-7.145164701718648\tOn what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, March) -> March (19792ms)\nWhen was the first camera invented?\t1975\t3.029787366808575\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (the first digital camera, was invented in, 1975) -> 1975 (3009ms)\nWhen was the first camera invented?\t1888\t2.9980168830001603\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (The first cheap camera, was invented in, 1888) -> 1888 (3009ms)\nWhen was the first camera invented?\t1685\t2.6271243598410527\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (The first small and portable camera, was invented in, 1685) -> 1685 (3009ms)\nWhen was the first camera invented?\t1892\t0.7983009409271902\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be develop in, $x) -> (the first trichromatic camera, was developed in, 1892) -> 1892 (6221ms)\nWhen was the first camera invented?\t1991\t0.7534993710216384\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be be release in, $x) -> (The first digital camera, was released in, 1991) -> 1991 (6438ms)\nWhen was the first camera invented?\t1996\t0.7081773366921067\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be be release in, $x) -> (The first IP camera, was released in, 1996) -> 1996 (6437ms)\nWhen was the first camera invented?\t1951\t0.6877762178281546\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be develop in, $x) -> (The first video camera, was developed in, 1951) -> 1951 (6221ms)\nWhen was the first camera invented?\tNovember 2000\t-0.5677571770606078\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be be release in, $x) -> (the first camera phone, was released in, November 2000) -> November 2000 (6437ms)\nWhen was the first camera invented?\t1987\t-0.8975530711982707\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (the first such camera, was introduced in, 1987) -> 1987 (8205ms)\nWhen was the first camera invented?\t1988\t-1.4941535496555454\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, launch in, $x) -> (The first true digital camera, was launched in, 1988) -> 1988 (8144ms)\nWhen was the first camera invented?\t1995\t-1.5220258915900562\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (My first digital camera, was introduced in, 1995) -> 1995 (8205ms)\nWhen was the first camera invented?\t2006\t-1.9279125764982652\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, launch in, $x) -> ('s first digital rangefinder camera, was launched in, 2006) -> 2006 (8144ms)\nWhen was the first camera invented?\tFebruary 2012\t-2.2582763662022236\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be announce in, $x) -> (the first X camera, will be announced in, February 2012) -> February 2012 (8165ms)\nWhen was the first camera invented?\tq1 2008\t-2.7387107338648726\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (The first new camera system, will be introduced in, q1 2008) -> q1 2008 (8231ms)\nWhen was the first camera invented?\t1934 as well as\t-2.7727205410109343\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, create in, $x) -> (the first Polaroid camera, was created in, 1934 as well as) -> 1934 as well as (8302ms)\nWhen was the first camera invented?\tOctober 1958\t-3.044104729074089\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, assemble in, $x) -> (The first five M2 cameras, were assembled in, October 1958) -> October 1958 (8481ms)\nWhen was the first camera invented?\t1981\t-3.2025716800575292\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (the first portable computer, was invented in, 1981) -> 1981 (10772ms)\nWhen was the first camera invented?\tthe 80s\t-3.254384475560015\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be develop in, $x) -> (The first lomo camera, was developed in, the 80s) -> the 80s (6221ms)\nWhen was the first camera invented?\tthe laboratory\t-3.3101493630917913\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (The first movie camera, was invented in, the laboratory) -> the laboratory (4286ms)\nWhen was the first camera invented?\t1929\t-3.4735356707949627\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> (The first car radio, was invented in, 1929) -> 1929 (10771ms)\nWhen was the first camera invented?\t1946\t-3.6454479198237\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first modern computer, was invented in, 1946) -> 1946 (10771ms)\nWhen was the first camera invented?\t1963\t-3.671150289918693\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first computer mouse, was invented in, 1963) -> 1963 (10771ms)\nWhen was the first camera invented?\tthe year 1988\t-4.154992012069372\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (the first true digital camera, was introduced in, the year 1988) -> the year 1988 (8232ms)\nWhen was the first camera invented?\tFrance\t-4.290360067248156\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be patent in, $x) -> (The first motion picture camera, was patented in, France) -> France (6437ms)\nWhen was the first camera invented?\t1936\t-4.812922841258395\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first modern computer, was invented in, 1936) -> 1936 (10771ms)\nWhen was the first camera invented?\tAnn Arbor\t-4.976300319946641\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be manufacture in, $x) -> (The first Argus camera, was manufactured in, Ann Arbor) -> Ann Arbor (8145ms)\nWhen was the first camera invented?\tJapan\t-5.6792436357742355\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (the first camera phones, were introduced in, Japan) -> Japan (8232ms)\nWhen was the first camera invented?\t1920\t-5.854953780736266\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, come into be in, $x) -> (the first radio station, came into being in, 1920) -> 1920 (13439ms)\nWhen was the first camera invented?\taround 1964\t-6.28761800384569\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first computer mouse, was invented in, around 1964) -> around 1964 (10872ms)\nWhen was the first camera invented?\tLeningrad\t-6.344219879330578\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, create in, $x) -> (the first Lomo Lubitel camera, was created in, Leningrad) -> Leningrad (8302ms)\nWhen was the first camera invented?\tIllinois\t-6.419347020190124\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, allow in, $x) -> (the first time speed cameras, have been allowed in, Illinois) -> Illinois (8066ms)\nWhen was the first camera invented?\tthe 1940?s\t-6.859498900582878\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first programmable computers, were invented in, the 1940?s) -> the 1940?s (10872ms)\nWhen was the first camera invented?\tthe public\t-6.9657112891152435\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, introduce to, $x) -> (the first Leica camera, was introduced to, the public) -> the public (8231ms)\nWhen was the first camera invented?\tway\t-7.409306176908764\tWhen was the first camera invented? -> when be the first [ camera invent ] ? -> what be the the first camera invent ? -> $x: (the the first camera, invent, $x) -> (the first camera, was invented, way) -> way (11554ms)\nWhen was the first camera invented?\tthe year\t-7.77845835249474\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, launch in, $x) -> (The first Canon ELPH camera, was launched in, the year) -> the year (8144ms)\nWhen was the first camera invented?\tManchester\t-8.419851809953201\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first computer, was invented in, Manchester) -> Manchester (10872ms)\nWhen was the first camera invented?\tSir David Brewster\t-8.56202261113873\tWhen was the first camera invented? -> when be the first [ camera invent ] ? -> what be the the first camera invent ? -> $x: (the the first camera, invent, $x) -> (The first pinhole camera, was invented by, Sir David Brewster) -> Sir David Brewster (11642ms)\nWhen was the first camera invented?\tthe early 1960s\t-8.823647583956555\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first computer mouse, was invented in, the early 1960s) -> the early 1960s (10872ms)\nWhen was the first camera invented?\tthe market\t-8.91358830944103\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, launch in, $x) -> (the first prototype phantom camera, launched in, the market) -> the market (8144ms)\nWhen was the first camera invented?\tthe early 1940s\t-8.928012350282746\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first digital computer, was invented in, the early 1940s) -> the early 1940s (10872ms)\nWhen was the first camera invented?\tthe Middle Ages\t-9.12135923345616\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (the Middle Ages, invented, the first pinhole camera) -> the Middle Ages (13827ms)\nWhen was the first camera invented?\tthe west\t-9.14641797054617\tWhen was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, export to, $x) -> (the first of the Zorki cameras, to be exported to, the west) -> the west (8165ms)\nWhen was the first camera invented?\tthe 1970s\t-9.14729885201864\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, be develop in, $x) -> (The first radio equipment, was developed in, the 1970s) -> the 1970s (13646ms)\nWhen was the first camera invented?\tAxis\t-9.361353266824608\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Axis, invented, the first network security surveillance camera) -> Axis (13827ms)\nWhen was the first camera invented?\tLouis Boutan\t-9.413487481978764\tWhen was the first camera invented? -> when be the first [ camera invent ] ? -> what be the the first camera invent ? -> $x: (the the first camera, invent, $x) -> (The first underwater camera, is invented by, Louis Boutan) -> Louis Boutan (11642ms)\nWhen was the first camera invented?\tan electrical engineer\t-9.67578029182016\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (an electrical engineer, invented, the first digital camera) -> an electrical engineer (13828ms)\nWhen was the first camera invented?\tpartnership\t-9.755091719516482\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, be develop in, $x) -> (The First Response Radio Unit, was developed in, partnership) -> partnership (13827ms)\nWhen was the first camera invented?\tEastman Kodak Co.\t-9.871378630373405\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Eastman Kodak Co., invented, the first digital camera) -> Eastman Kodak Co. (13827ms)\nWhen was the first camera invented?\tKodak engineers\t-9.963096616845542\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Kodak engineers, invented, the first digital camera) -> Kodak engineers (13827ms)\nWhen was the first camera invented?\tthe past\t-9.986764544518229\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The very first and basic computer, was invented in, the past) -> the past (10872ms)\nWhen was the first camera invented?\tGeorge Eastman\t-10.082593334762326\tWhen was the first camera invented? -> when be the first [ camera invent ] ? -> what be the the first camera invent ? -> $x: (the the first camera, invent, $x) -> (the first cheap camera, was invented by, George Eastman) -> George Eastman (11805ms)\nWhen was the first camera invented?\tSteven Sasson\t-10.146589187842926\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Steven Sasson, invented, the first digital camera) -> Steven Sasson (13827ms)\nWhen was the first camera invented?\ta basement\t-10.516024648635364\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> $x: (first computer, invent in, $x) -> ('s first electronic computer, was invented in, a basement) -> a basement (11804ms)\nWhen was the first camera invented?\tWay\t-10.539560516168505\tWhen was the first camera invented? -> when be [ the first camera invent ] ? -> what century be the first camera invent ? -> $x: ($x, instance of, century) (the first camera, invent, $x) -> (Way, Instance Of, late-nineteenth century text) (the first camera, was invented, way) -> Way (12752ms)\nWhen was the first camera invented?\tKodak\t-10.575584958501713\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Kodak, invented, the first digital camera) -> Kodak (13923ms)\nWhen was the first camera invented?\tBritain\t-11.08253271693773\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, be develop in, $x) -> (The first radio, is developed in, Britain) -> Britain (13923ms)\nWhen was the first camera invented?\tSecond Life\t-11.908496374998773\tWhen was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, to launch in, $x) -> (the first radio station, to launch in, Second Life) -> Second Life (13439ms)\nWho was the first host of Jeopardy?\tArt Fleming\t-5.4778618834541195\tWho was the first host of Jeopardy? -> who be the first [ host of jeopardy ] ? -> who be host of jeopardy 2 ? -> $x: ($x, be host of, jeopardy) -> (Art Fleming, was the host of, Jeopardy) -> Art Fleming (1729ms)\nWho was the first host of Jeopardy?\t?AND NOW... HERE\t-6.094877206642865\tWho was the first host of Jeopardy? -> who be the first [ host of jeopardy ] ? -> who be host of jeopardy 2 ? -> $x: ($x, be host of, jeopardy) -> (?AND NOW... HERE, IS THE HOST OF, JEOPARDY) -> ?AND NOW... HERE (1727ms)\nWho was the first host of Jeopardy?\tTexas Public Health\t-8.63669253913492\tWho was the first host of Jeopardy? -> who be the first [ host of jeopardy ] ? -> who be host of jeopardy 2 ? -> $x: ($x, be host of, jeopardy) -> $x: ($x, host of, jeopardy) -> (Texas Public Health, will host a game of, Jeopardy) -> Texas Public Health (1831ms)\nWho is president of Nissan Corp.?\taftermarket tuners\t-9.72066692364342\tWho is president of Nissan Corp.? -> who be president of [ nissan corp  ] ? -> who be nissan corp  s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, have, $x) -> (the Nissan Corp., has ruined the fun of, aftermarket tuners) -> aftermarket tuners (3919ms)\nWho is president of Nissan Corp.?\ta Thai-made eco car\t-10.09458852939699\tWho is president of Nissan Corp.? -> who be president of [ nissan corp  ] ? -> who be nissan corp  s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, be, $x) -> (Nissan Motor Corp, was the first to produce, a Thai-made eco car) -> a Thai-made eco car (3919ms)\nWho is president of Nissan Corp.?\ta new president\t-10.321679603040998\tWho is president of Nissan Corp.? -> who be president of [ nissan corp  ] ? -> who be nissan corp  s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, have, $x) -> (Nissan Motors Acceptance Corp., has, a new president) -> a new president (3919ms)\nWho is president of Nissan Corp.?\tJapan\t-10.577489514666532\tWho is president of Nissan Corp.? -> who be president of [ nissan corp  ] ? -> who be nissan corp  s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, be, $x) -> (Nissan Motor Corp, is established in, Japan) -> Japan (3919ms)\nWho is president of Nissan Corp.?\tRaleigh\t-10.649993695495464\tWho is president of Nissan Corp.? -> who be president of [ nissan corp  ] ? -> who be nissan corp  s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, be, $x) -> (Nissan Computer Corp., is based in, Raleigh) -> Raleigh (3919ms)\nWho is president of Nissan Corp.?\tthe GO6 Series\t-11.210106962566506\tWho is president of Nissan Corp.? -> who be president of [ nissan corp  ] ? -> who be nissan corp  s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, have, $x) -> (Nissan Forklift Corp., has added, the GO6 Series) -> the GO6 Series (3919ms)\nWho is president of Nissan Corp.?\ta deal\t-11.501356519185217\tWho is president of Nissan Corp.? -> who be president [ of nissan corp  ] ? -> who be the vice president of nissan corp  ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (a deal, has been reached with, Nissan Motor Acceptance Corp.) -> a deal (8289ms)\nWho is president of Nissan Corp.?\twork\t-12.011782497374288\tWho is president of Nissan Corp.? -> who be president [ of nissan corp  ] ? -> who be the vice president of nissan corp  ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (work, is, Nissan Motor Acceptance Corp.) -> work (8289ms)\nWho is president of Nissan Corp.?\tthe casualties\t-12.18701975203559\tWho is president of Nissan Corp.? -> who be president [ of nissan corp  ] ? -> who be the vice president of nissan corp  ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (the casualties, are, Nissan Corp) -> the casualties (8289ms)\nWho is president of Nissan Corp.?\tthe company\t-13.170381785450578\tWho is president of Nissan Corp.? -> who be president [ of nissan corp  ] ? -> who be the vice president of nissan corp  ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (the company, was briefly called, Nissan Heavy Industries Corp.) -> the company (8289ms)\nWho is president of Nissan Corp.?\tThe graphics display\t-13.365002611893004\tWho is president of Nissan Corp.? -> who be president [ of nissan corp  ] ? -> who be the vice president of nissan corp  ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (The graphics display, was contributed by, the Nissan Corp.) -> The graphics display (8289ms)\nHow many Great Lakes are there?\tStar Theatres\t-8.13121991974591\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Star Theatres) -> Star Theatres (10090ms)\nHow many Great Lakes are there?\tMastercuts, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Mastercuts, Great Lakes Mall) -> Mastercuts, Great Lakes Mall (10447ms)\nHow many Great Lakes are there?\tGymboree, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Gymboree, Great Lakes Mall) -> Gymboree, Great Lakes Mall (10270ms)\nHow many Great Lakes are there?\tGameStop, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, GameStop, Great Lakes Mall) -> GameStop, Great Lakes Mall (10090ms)\nHow many Great Lakes are there?\tChick-fil-A, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Chick-fil-A, Great Lakes Mall) -> Chick-fil-A, Great Lakes Mall (10271ms)\nHow many Great Lakes are there?\tMacy's, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Macy's, Great Lakes Mall) -> Macy's, Great Lakes Mall (10270ms)\nHow many Great Lakes are there?\tDillard's, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Dillard's, Great Lakes Mall) -> Dillard's, Great Lakes Mall (10270ms)\nHow many Great Lakes are there?\tMichaels, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Michaels, Great Lakes Mall) -> Michaels, Great Lakes Mall (10090ms)\nHow many Great Lakes are there?\tRadioShack, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, RadioShack, Great Lakes Mall) -> RadioShack, Great Lakes Mall (10270ms)\nHow many Great Lakes are there?\tExpress, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Express, Great Lakes Mall) -> Express, Great Lakes Mall (10447ms)\nHow many Great Lakes are there?\tSubway, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Subway, Great Lakes Mall) -> Subway, Great Lakes Mall (10447ms)\nHow many Great Lakes are there?\tLensCrafters, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, LensCrafters, Great Lakes Mall) -> LensCrafters, Great Lakes Mall (10270ms)\nHow many Great Lakes are there?\tEyeMasters, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, EyeMasters, Great Lakes Mall) -> EyeMasters, Great Lakes Mall (10090ms)\nHow many Great Lakes are there?\tClaire's, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Claire's, Great Lakes Mall) -> Claire's, Great Lakes Mall (10447ms)\nHow many Great Lakes are there?\tTalbots, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Talbots, Great Lakes Mall) -> Talbots, Great Lakes Mall (10090ms)\nHow many Great Lakes are there?\tA?ropostale, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, A?ropostale, Great Lakes Mall) -> A?ropostale, Great Lakes Mall (10447ms)\nHow many Great Lakes are there?\tOfficeMax, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, OfficeMax, Great Lakes Mall) -> OfficeMax, Great Lakes Mall (10090ms)\nHow many Great Lakes are there?\tLids, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Lids, Great Lakes Mall) -> Lids, Great Lakes Mall (10447ms)\nHow many Great Lakes are there?\tRainforest Cafe\t-8.969235242620773\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Rainforest Cafe) -> Rainforest Cafe (10494ms)\nHow many Great Lakes are there?\tThe Limited, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Limited, Great Lakes Mall) -> The Limited, Great Lakes Mall (10493ms)\nHow many Great Lakes are there?\tVictoria's Secret, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Victoria's Secret, Great Lakes Mall) -> Victoria's Secret, Great Lakes Mall (12357ms)\nHow many Great Lakes are there?\tPacific Sunwear, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Pacific Sunwear, Great Lakes Mall) -> Pacific Sunwear, Great Lakes Mall (12118ms)\nHow many Great Lakes are there?\tDisney Store, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Disney Store, Great Lakes Mall) -> Disney Store, Great Lakes Mall (10493ms)\nHow many Great Lakes are there?\tWet Seal, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Wet Seal, Great Lakes Mall) -> Wet Seal, Great Lakes Mall (11188ms)\nHow many Great Lakes are there?\tBest Buy, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Best Buy, Great Lakes Mall) -> Best Buy, Great Lakes Mall (12234ms)\nHow many Great Lakes are there?\tPayless ShoeSource, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Payless ShoeSource, Great Lakes Mall) -> Payless ShoeSource, Great Lakes Mall (10573ms)\nHow many Great Lakes are there?\tTalbots, Great Lakes Crossing\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Talbots, Great Lakes Crossing) -> Talbots, Great Lakes Crossing (10494ms)\nHow many Great Lakes are there?\tMotherhood Maternity, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Motherhood Maternity, Great Lakes Mall) -> Motherhood Maternity, Great Lakes Mall (12119ms)\nHow many Great Lakes are there?\tHot Topic, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Hot Topic, Great Lakes Mall) -> Hot Topic, Great Lakes Mall (12234ms)\nHow many Great Lakes are there?\tSpencer's Gifts, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Spencer's Gifts, Great Lakes Mall) -> Spencer's Gifts, Great Lakes Mall (12357ms)\nHow many Great Lakes are there?\tZales Jewelers, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Zales Jewelers, Great Lakes Mall) -> Zales Jewelers, Great Lakes Mall (12357ms)\nHow many Great Lakes are there?\tDairy Queen, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Dairy Queen, Great Lakes Mall) -> Dairy Queen, Great Lakes Mall (10573ms)\nHow many Great Lakes are there?\tBuild-A-Bear Workshop, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Build-A-Bear Workshop, Great Lakes Mall) -> Build-A-Bear Workshop, Great Lakes Mall (12234ms)\nHow many Great Lakes are there?\tChamps Sports, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Champs Sports, Great Lakes Mall) -> Champs Sports, Great Lakes Mall (10493ms)\nHow many Great Lakes are there?\tSelect Comfort, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Select Comfort, Great Lakes Mall) -> Select Comfort, Great Lakes Mall (12357ms)\nHow many Great Lakes are there?\tTaco Bell, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Taco Bell, Great Lakes Mall) -> Taco Bell, Great Lakes Mall (12234ms)\nHow many Great Lakes are there?\tFoot Locker, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Foot Locker, Great Lakes Mall) -> Foot Locker, Great Lakes Mall (12234ms)\nHow many Great Lakes are there?\tKay Jewelers, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Kay Jewelers, Great Lakes Mall) -> Kay Jewelers, Great Lakes Mall (12119ms)\nHow many Great Lakes are there?\tTrade Secret, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Trade Secret, Great Lakes Mall) -> Trade Secret, Great Lakes Mall (12118ms)\nHow many Great Lakes are there?\tLane Bryant, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Lane Bryant, Great Lakes Mall) -> Lane Bryant, Great Lakes Mall (12357ms)\nHow many Great Lakes are there?\tWilsons Leather, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Wilsons Leather, Great Lakes Mall) -> Wilsons Leather, Great Lakes Mall (12234ms)\nHow many Great Lakes are there?\tCircuit City, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Circuit City, Great Lakes Mall) -> Circuit City, Great Lakes Mall (12357ms)\nHow many Great Lakes are there?\tThe Buckle, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Buckle, Great Lakes Mall) -> The Buckle, Great Lakes Mall (11188ms)\nHow many Great Lakes are there?\tJourneys Shoes, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Journeys Shoes, Great Lakes Mall) -> Journeys Shoes, Great Lakes Mall (10573ms)\nHow many Great Lakes are there?\tPiercing Pagoda, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Piercing Pagoda, Great Lakes Mall) -> Piercing Pagoda, Great Lakes Mall (11189ms)\nHow many Great Lakes are there?\tHollister Co., Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Hollister Co., Great Lakes Mall) -> Hollister Co., Great Lakes Mall (12118ms)\nHow many Great Lakes are there?\tRegis Salons, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Regis Salons, Great Lakes Mall) -> Regis Salons, Great Lakes Mall (10573ms)\nHow many Great Lakes are there?\tCharlotte Russe, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Charlotte Russe, Great Lakes Mall) -> Charlotte Russe, Great Lakes Mall (10493ms)\nHow many Great Lakes are there?\tGameWorks\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, GameWorks) -> GameWorks (12119ms)\nHow many Great Lakes are there?\tSteak Escape, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Steak Escape, Great Lakes Mall) -> Steak Escape, Great Lakes Mall (11189ms)\nHow many Great Lakes are there?\tJ.C. Penney, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, J.C. Penney, Great Lakes Mall) -> J.C. Penney, Great Lakes Mall (10572ms)\nHow many Great Lakes are there?\tWhitehall Jewellers, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Whitehall Jewellers, Great Lakes Mall) -> Whitehall Jewellers, Great Lakes Mall (11188ms)\nHow many Great Lakes are there?\tH&M, Great Lakes Crossing\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, H&M, Great Lakes Crossing) -> H&M, Great Lakes Crossing (11188ms)\nHow many Great Lakes are there?\tThings Remembered, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Things Remembered, Great Lakes Mall) -> Things Remembered, Great Lakes Mall (10572ms)\nHow many Great Lakes are there?\tFinish Line, Inc., Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Finish Line, Inc., Great Lakes Mall) -> Finish Line, Inc., Great Lakes Mall (12491ms)\nHow many Great Lakes are there?\tIcing by Claire's, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Icing by Claire's, Great Lakes Mall) -> Icing by Claire's, Great Lakes Mall (12420ms)\nHow many Great Lakes are there?\tYankee Candle Company, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Yankee Candle Company, Great Lakes Mall) -> Yankee Candle Company, Great Lakes Mall (12492ms)\nHow many Great Lakes are there?\tWilsons Leather, Great Lakes Crossing\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Wilsons Leather, Great Lakes Crossing) -> Wilsons Leather, Great Lakes Crossing (12420ms)\nHow many Great Lakes are there?\tThe Children's Place, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Children's Place, Great Lakes Mall) -> The Children's Place, Great Lakes Mall (12492ms)\nHow many Great Lakes are there?\tAbercrombie & Fitch, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Abercrombie & Fitch, Great Lakes Mall) -> Abercrombie & Fitch, Great Lakes Mall (12420ms)\nHow many Great Lakes are there?\tStride Rite Corporation, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Stride Rite Corporation, Great Lakes Mall) -> Stride Rite Corporation, Great Lakes Mall (12421ms)\nHow many Great Lakes are there?\tSunglass Hut International, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Sunglass Hut International, Great Lakes Mall) -> Sunglass Hut International, Great Lakes Mall (12420ms)\nHow many Great Lakes are there?\tGeneral Nutrition Centers, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, General Nutrition Centers, Great Lakes Mall) -> General Nutrition Centers, Great Lakes Mall (12420ms)\nHow many Great Lakes are there?\tAmerican Eagle Outfitters, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, American Eagle Outfitters, Great Lakes Mall) -> American Eagle Outfitters, Great Lakes Mall (12492ms)\nHow many Great Lakes are there?\tChristopher & Banks, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Christopher & Banks, Great Lakes Mall) -> Christopher & Banks, Great Lakes Mall (12491ms)\nHow many Great Lakes are there?\tBass Pro Shops\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Bass Pro Shops) -> Bass Pro Shops (12534ms)\nHow many Great Lakes are there?\tBath & Body Works, Great Lakes Mall\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Bath & Body Works, Great Lakes Mall) -> Bath & Body Works, Great Lakes Mall (12534ms)\nHow many Great Lakes are there?\tSears, Roebuck and Company, Great Lakes Mall\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Sears, Roebuck and Company, Great Lakes Mall) -> Sears, Roebuck and Company, Great Lakes Mall (12534ms)\nHow many Great Lakes are there?\tRocky Mountain Chocolate Factory, Great Lakes Mall\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Rocky Mountain Chocolate Factory, Great Lakes Mall) -> Rocky Mountain Chocolate Factory, Great Lakes Mall (12534ms)\nHow many Great Lakes are there?\tNew York & Company, Great Lakes Mall\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, New York & Company, Great Lakes Mall) -> New York & Company, Great Lakes Mall (12492ms)\nHow many Great Lakes are there?\tSteve & Barry's\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Steve & Barry's) -> Steve & Barry's (12534ms)\nHow many Great Lakes are there?\tLord & Taylor\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Lord & Taylor) -> Lord & Taylor (12534ms)\nHow many Great Lakes are there?\tFye - For Your Entertainment, Great Lakes Mall\t-9.238767166691954\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Fye - For Your Entertainment, Great Lakes Mall) -> Fye - For Your Entertainment, Great Lakes Mall (12611ms)\nHow many Great Lakes are there?\tPolo By Ralph Lauren, Great Lakes Crossing\t-9.238767166691954\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Polo By Ralph Lauren, Great Lakes Crossing) -> Polo By Ralph Lauren, Great Lakes Crossing (12610ms)\nHow many Great Lakes are there?\tresponse\t-10.597308259300476\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> (response, Instance Of, newborn baby's characteristic) (Great Lakes Lighthouse Odyssey, was produced in, response) -> response (12611ms)\nHow many Great Lakes are there?\tcooperation\t-10.964533058654688\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> (cooperation, Instance Of, baby's social skill) (low Great Lakes water levels, have been produced in, cooperation) -> cooperation (12611ms)\nHow many Great Lakes are there?\tpain\t-11.794062169264166\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (pain, Instance Of, baby's basic need) (Great Lakes, has been a lot of, pain) -> pain (15118ms)\nHow many Great Lakes are there?\tsalt\t-11.883960279561645\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (salt, Instance Of, baby's blood chemical and mineral) (the Great Salt Lake, has been accumulating, salt) -> salt (15118ms)\nHow many Great Lakes are there?\tleave\t-12.298350582322172\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (leave, Instance Of, baby item) (Great Lakes, have both been here the past week on, leave) -> leave (15169ms)\nHow many Great Lakes are there?\tLast year I\t-12.601962653660209\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (Last year I, Instance Of, baby nurse) (the Great Lakes Basin, have been reduced in, the last 20 years) -> Last year I (15169ms)\nHow many Great Lakes are there?\tgull\t-12.730196683288893\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there today ? -> $x: ($x, instance of, great lake) ($x, be there, today) -> (gull, Instance Of, bird of great salt lake) (gulls, were there, today) -> gull (5861ms)\nHow many Great Lakes are there?\tGull\t-12.819161334017133\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there today ? -> $x: ($x, instance of, great lake) ($x, be there, today) -> (Gull, Instance Of, great lake) (gulls, were there, today) -> Gull (5861ms)\nHow many Great Lakes are there?\tmineral\t-13.043901154041436\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be source, $x) -> (mineral, Instance Of, baby building nutrient) (Great Salt Lake, is an important source of, minerals) -> mineral (18569ms)\nHow many Great Lakes are there?\tmountain\t-13.052006522547622\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (mountain, Instance Of, great lake) (such a mountain, were placed on, Earth) -> mountain (8497ms)\nHow many Great Lakes are there?\tjob\t-13.28066228083943\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be be create, $x) -> (job, Instance Of, baby) (the Great Lakes, is creating, jobs) -> job (17935ms)\nHow many Great Lakes are there?\tcomputer\t-13.447291949725129\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world today ? -> $x: ($x, instance of, great lake) ($x, be in, the world today) -> (computer, Instance Of, Great Lakes.Maintains NPS property) (computers, are important in, the world today) -> computer (16818ms)\nHow many Great Lakes are there?\tTims\t-13.648383066863769\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there world wide ? -> $x: ($x, instance of, great lake) ($x, be there, world wide) -> $x: ($x, instance of, great lake) ($x, be be work, world wide) -> (Tims, Instance Of, great lake) (Tim, was working on called, the World Wide Web.) -> Tims (8814ms)\nHow many Great Lakes are there?\tinformation\t-13.724729783686524\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be source, $x) -> (information, Instance Of, program for the baby boomers) (GreatLakesDestinations.com, is your source of, information) -> information (18569ms)\nHow many Great Lakes are there?\tSwan\t-13.750714621473154\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be stage, $x) -> (Swan, Instance Of, seldom used baby name) (The Great Lakes, is the first major staging area for, swans) -> Swan (19041ms)\nHow many Great Lakes are there?\tSpirit\t-14.021797796245348\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Spirit, Instance Of, great lake) (spirit, is expressed on, earth) -> Spirit (8497ms)\nHow many Great Lakes are there?\tWashington\t-14.093554465306886\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Washington, Instance Of, great lake) (Washington, is basically hell on, Earth) -> Washington (8498ms)\nHow many Great Lakes are there?\tLimestone\t-14.107651490773842\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Limestone, Instance Of, great lake) (Limestone, is found virtually everywhere on, earth) -> Limestone (8814ms)\nHow many Great Lakes are there?\tOntario\t-14.145311635808786\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Ontario, Instance Of, great lake) (Ontario, is the fifth-richest nation on, Earth) -> Ontario (8814ms)\nHow many Great Lakes are there?\tCommunication 06-7\t-14.178450627140919\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world today ? -> $x: ($x, instance of, great lake) ($x, be in, the world today) -> (Communication 06-7, Instance Of, appeal of a decision of Great Lakes-Gulf Presbytery) (communications, are in, the world today) -> Communication 06-7 (16818ms)\nHow many Great Lakes are there?\tMoab\t-14.203004540850031\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, provide service, $x) -> (Moab, Instance Of, baby boy name) (GREAT LAKES AIRLINES, provides daily service to, Moab) -> Moab (19043ms)\nHow many Great Lakes are there?\tCanada\t-14.496758126388668\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be be create, $x) -> (Canada, Instance Of, young, sparsely populated nation of aging baby-boomers having trouble filling job) (The Great Lakes Fishery Commission, was created by, Canada) -> Canada (17935ms)\nHow many Great Lakes are there?\tStar Theatres\t-8.13121991974591\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Star Theatres) -> Star Theatres (1299ms)\nHow many Great Lakes are there?\tMastercuts, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Mastercuts, Great Lakes Mall) -> Mastercuts, Great Lakes Mall (1433ms)\nHow many Great Lakes are there?\tGymboree, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Gymboree, Great Lakes Mall) -> Gymboree, Great Lakes Mall (1362ms)\nHow many Great Lakes are there?\tGameStop, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, GameStop, Great Lakes Mall) -> GameStop, Great Lakes Mall (1298ms)\nHow many Great Lakes are there?\tChick-fil-A, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Chick-fil-A, Great Lakes Mall) -> Chick-fil-A, Great Lakes Mall (1362ms)\nHow many Great Lakes are there?\tMacy's, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Macy's, Great Lakes Mall) -> Macy's, Great Lakes Mall (1362ms)\nHow many Great Lakes are there?\tDillard's, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Dillard's, Great Lakes Mall) -> Dillard's, Great Lakes Mall (1362ms)\nHow many Great Lakes are there?\tMichaels, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Michaels, Great Lakes Mall) -> Michaels, Great Lakes Mall (1298ms)\nHow many Great Lakes are there?\tRadioShack, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, RadioShack, Great Lakes Mall) -> RadioShack, Great Lakes Mall (1362ms)\nHow many Great Lakes are there?\tExpress, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Express, Great Lakes Mall) -> Express, Great Lakes Mall (1432ms)\nHow many Great Lakes are there?\tLensCrafters, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, LensCrafters, Great Lakes Mall) -> LensCrafters, Great Lakes Mall (1362ms)\nHow many Great Lakes are there?\tSubway, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Subway, Great Lakes Mall) -> Subway, Great Lakes Mall (1432ms)\nHow many Great Lakes are there?\tEyeMasters, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, EyeMasters, Great Lakes Mall) -> EyeMasters, Great Lakes Mall (1298ms)\nHow many Great Lakes are there?\tClaire's, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Claire's, Great Lakes Mall) -> Claire's, Great Lakes Mall (1432ms)\nHow many Great Lakes are there?\tTalbots, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Talbots, Great Lakes Mall) -> Talbots, Great Lakes Mall (1298ms)\nHow many Great Lakes are there?\tA?ropostale, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, A?ropostale, Great Lakes Mall) -> A?ropostale, Great Lakes Mall (1432ms)\nHow many Great Lakes are there?\tOfficeMax, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, OfficeMax, Great Lakes Mall) -> OfficeMax, Great Lakes Mall (1299ms)\nHow many Great Lakes are there?\tLids, Great Lakes Mall\t-8.945552440300919\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Lids, Great Lakes Mall) -> Lids, Great Lakes Mall (1433ms)\nHow many Great Lakes are there?\tRainforest Cafe\t-8.969235242620773\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Rainforest Cafe) -> Rainforest Cafe (1457ms)\nHow many Great Lakes are there?\tThe Limited, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Limited, Great Lakes Mall) -> The Limited, Great Lakes Mall (1457ms)\nHow many Great Lakes are there?\tVictoria's Secret, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Victoria's Secret, Great Lakes Mall) -> Victoria's Secret, Great Lakes Mall (1803ms)\nHow many Great Lakes are there?\tPacific Sunwear, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Pacific Sunwear, Great Lakes Mall) -> Pacific Sunwear, Great Lakes Mall (1747ms)\nHow many Great Lakes are there?\tDisney Store, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Disney Store, Great Lakes Mall) -> Disney Store, Great Lakes Mall (1458ms)\nHow many Great Lakes are there?\tWet Seal, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Wet Seal, Great Lakes Mall) -> Wet Seal, Great Lakes Mall (1634ms)\nHow many Great Lakes are there?\tBest Buy, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Best Buy, Great Lakes Mall) -> Best Buy, Great Lakes Mall (1776ms)\nHow many Great Lakes are there?\tPayless ShoeSource, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Payless ShoeSource, Great Lakes Mall) -> Payless ShoeSource, Great Lakes Mall (1522ms)\nHow many Great Lakes are there?\tTalbots, Great Lakes Crossing\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Talbots, Great Lakes Crossing) -> Talbots, Great Lakes Crossing (1458ms)\nHow many Great Lakes are there?\tMotherhood Maternity, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Motherhood Maternity, Great Lakes Mall) -> Motherhood Maternity, Great Lakes Mall (1747ms)\nHow many Great Lakes are there?\tHot Topic, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Hot Topic, Great Lakes Mall) -> Hot Topic, Great Lakes Mall (1776ms)\nHow many Great Lakes are there?\tSpencer's Gifts, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Spencer's Gifts, Great Lakes Mall) -> Spencer's Gifts, Great Lakes Mall (1803ms)\nHow many Great Lakes are there?\tZales Jewelers, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Zales Jewelers, Great Lakes Mall) -> Zales Jewelers, Great Lakes Mall (1803ms)\nHow many Great Lakes are there?\tDairy Queen, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Dairy Queen, Great Lakes Mall) -> Dairy Queen, Great Lakes Mall (1522ms)\nHow many Great Lakes are there?\tChamps Sports, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Champs Sports, Great Lakes Mall) -> Champs Sports, Great Lakes Mall (1457ms)\nHow many Great Lakes are there?\tBuild-A-Bear Workshop, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Build-A-Bear Workshop, Great Lakes Mall) -> Build-A-Bear Workshop, Great Lakes Mall (1776ms)\nHow many Great Lakes are there?\tSelect Comfort, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Select Comfort, Great Lakes Mall) -> Select Comfort, Great Lakes Mall (1803ms)\nHow many Great Lakes are there?\tTaco Bell, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Taco Bell, Great Lakes Mall) -> Taco Bell, Great Lakes Mall (1775ms)\nHow many Great Lakes are there?\tFoot Locker, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Foot Locker, Great Lakes Mall) -> Foot Locker, Great Lakes Mall (1775ms)\nHow many Great Lakes are there?\tKay Jewelers, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Kay Jewelers, Great Lakes Mall) -> Kay Jewelers, Great Lakes Mall (1747ms)\nHow many Great Lakes are there?\tTrade Secret, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Trade Secret, Great Lakes Mall) -> Trade Secret, Great Lakes Mall (1747ms)\nHow many Great Lakes are there?\tLane Bryant, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Lane Bryant, Great Lakes Mall) -> Lane Bryant, Great Lakes Mall (1803ms)\nHow many Great Lakes are there?\tWilsons Leather, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Wilsons Leather, Great Lakes Mall) -> Wilsons Leather, Great Lakes Mall (1775ms)\nHow many Great Lakes are there?\tCircuit City, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Circuit City, Great Lakes Mall) -> Circuit City, Great Lakes Mall (1803ms)\nHow many Great Lakes are there?\tThe Buckle, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Buckle, Great Lakes Mall) -> The Buckle, Great Lakes Mall (1634ms)\nHow many Great Lakes are there?\tJourneys Shoes, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Journeys Shoes, Great Lakes Mall) -> Journeys Shoes, Great Lakes Mall (1522ms)\nHow many Great Lakes are there?\tPiercing Pagoda, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Piercing Pagoda, Great Lakes Mall) -> Piercing Pagoda, Great Lakes Mall (1634ms)\nHow many Great Lakes are there?\tHollister Co., Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Hollister Co., Great Lakes Mall) -> Hollister Co., Great Lakes Mall (1747ms)\nHow many Great Lakes are there?\tRegis Salons, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Regis Salons, Great Lakes Mall) -> Regis Salons, Great Lakes Mall (1522ms)\nHow many Great Lakes are there?\tCharlotte Russe, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Charlotte Russe, Great Lakes Mall) -> Charlotte Russe, Great Lakes Mall (1457ms)\nHow many Great Lakes are there?\tGameWorks\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, GameWorks) -> GameWorks (1747ms)\nHow many Great Lakes are there?\tSteak Escape, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Steak Escape, Great Lakes Mall) -> Steak Escape, Great Lakes Mall (1634ms)\nHow many Great Lakes are there?\tJ.C. Penney, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, J.C. Penney, Great Lakes Mall) -> J.C. Penney, Great Lakes Mall (1522ms)\nHow many Great Lakes are there?\tWhitehall Jewellers, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Whitehall Jewellers, Great Lakes Mall) -> Whitehall Jewellers, Great Lakes Mall (1634ms)\nHow many Great Lakes are there?\tH&M, Great Lakes Crossing\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, H&M, Great Lakes Crossing) -> H&M, Great Lakes Crossing (1634ms)\nHow many Great Lakes are there?\tThings Remembered, Great Lakes Mall\t-9.040847226378006\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Things Remembered, Great Lakes Mall) -> Things Remembered, Great Lakes Mall (1522ms)\nHow many Great Lakes are there?\tFinish Line, Inc., Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Finish Line, Inc., Great Lakes Mall) -> Finish Line, Inc., Great Lakes Mall (1855ms)\nHow many Great Lakes are there?\tIcing by Claire's, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Icing by Claire's, Great Lakes Mall) -> Icing by Claire's, Great Lakes Mall (1828ms)\nHow many Great Lakes are there?\tYankee Candle Company, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Yankee Candle Company, Great Lakes Mall) -> Yankee Candle Company, Great Lakes Mall (1855ms)\nHow many Great Lakes are there?\tWilsons Leather, Great Lakes Crossing\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Wilsons Leather, Great Lakes Crossing) -> Wilsons Leather, Great Lakes Crossing (1828ms)\nHow many Great Lakes are there?\tThe Children's Place, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Children's Place, Great Lakes Mall) -> The Children's Place, Great Lakes Mall (1855ms)\nHow many Great Lakes are there?\tAbercrombie & Fitch, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Abercrombie & Fitch, Great Lakes Mall) -> Abercrombie & Fitch, Great Lakes Mall (1828ms)\nHow many Great Lakes are there?\tStride Rite Corporation, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Stride Rite Corporation, Great Lakes Mall) -> Stride Rite Corporation, Great Lakes Mall (1828ms)\nHow many Great Lakes are there?\tSunglass Hut International, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Sunglass Hut International, Great Lakes Mall) -> Sunglass Hut International, Great Lakes Mall (1828ms)\nHow many Great Lakes are there?\tGeneral Nutrition Centers, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, General Nutrition Centers, Great Lakes Mall) -> General Nutrition Centers, Great Lakes Mall (1828ms)\nHow many Great Lakes are there?\tAmerican Eagle Outfitters, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, American Eagle Outfitters, Great Lakes Mall) -> American Eagle Outfitters, Great Lakes Mall (1856ms)\nHow many Great Lakes are there?\tChristopher & Banks, Great Lakes Mall\t-9.118815687713804\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Christopher & Banks, Great Lakes Mall) -> Christopher & Banks, Great Lakes Mall (1855ms)\nHow many Great Lakes are there?\tBass Pro Shops\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Bass Pro Shops) -> Bass Pro Shops (1882ms)\nHow many Great Lakes are there?\tBath & Body Works, Great Lakes Mall\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Bath & Body Works, Great Lakes Mall) -> Bath & Body Works, Great Lakes Mall (1883ms)\nHow many Great Lakes are there?\tSears, Roebuck and Company, Great Lakes Mall\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Sears, Roebuck and Company, Great Lakes Mall) -> Sears, Roebuck and Company, Great Lakes Mall (1882ms)\nHow many Great Lakes are there?\tRocky Mountain Chocolate Factory, Great Lakes Mall\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Rocky Mountain Chocolate Factory, Great Lakes Mall) -> Rocky Mountain Chocolate Factory, Great Lakes Mall (1882ms)\nHow many Great Lakes are there?\tNew York & Company, Great Lakes Mall\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, New York & Company, Great Lakes Mall) -> New York & Company, Great Lakes Mall (1856ms)\nHow many Great Lakes are there?\tSteve & Barry's\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Steve & Barry's) -> Steve & Barry's (1882ms)\nHow many Great Lakes are there?\tLord & Taylor\t-9.183789405493636\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Lord & Taylor) -> Lord & Taylor (1882ms)\nHow many Great Lakes are there?\tFye - For Your Entertainment, Great Lakes Mall\t-9.238767166691954\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Fye - For Your Entertainment, Great Lakes Mall) -> Fye - For Your Entertainment, Great Lakes Mall (1912ms)\nHow many Great Lakes are there?\tPolo By Ralph Lauren, Great Lakes Crossing\t-9.238767166691954\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Polo By Ralph Lauren, Great Lakes Crossing) -> Polo By Ralph Lauren, Great Lakes Crossing (1911ms)\nHow many Great Lakes are there?\tresponse\t-10.597308259300476\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> (response, Instance Of, newborn baby's characteristic) (Great Lakes Lighthouse Odyssey, was produced in, response) -> response (1912ms)\nHow many Great Lakes are there?\tcooperation\t-10.964533058654688\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> (cooperation, Instance Of, baby's social skill) (low Great Lakes water levels, have been produced in, cooperation) -> cooperation (1911ms)\nHow many Great Lakes are there?\tpain\t-11.794062169264166\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (pain, Instance Of, baby's basic need) (Great Lakes, has been a lot of, pain) -> pain (2367ms)\nHow many Great Lakes are there?\tsalt\t-11.883960279561645\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (salt, Instance Of, baby's blood chemical and mineral) (the Great Salt Lake, has been accumulating, salt) -> salt (2367ms)\nHow many Great Lakes are there?\tleave\t-12.298350582322172\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (leave, Instance Of, baby item) (Great Lakes, have both been here the past week on, leave) -> leave (2389ms)\nHow many Great Lakes are there?\tLast year I\t-12.601962653660209\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (Last year I, Instance Of, baby nurse) (the Great Lakes Basin, have been reduced in, the last 20 years) -> Last year I (2389ms)\nHow many Great Lakes are there?\tgull\t-12.730196683288893\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there today ? -> $x: ($x, instance of, great lake) ($x, be there, today) -> (gull, Instance Of, bird of great salt lake) (gulls, were there, today) -> gull (370ms)\nHow many Great Lakes are there?\tLake Huron\t-12.81811776200378\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Lake Huron, Instance Of, great lake) (Lake Huron, is the fifth largest lake in, the world) -> Lake Huron (12321ms)\nHow many Great Lakes are there?\tLake Winnipeg\t-12.81811776200378\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Lake Winnipeg, Instance Of, great lake) (Lake Winnipeg, is the 13th largest in, the world) -> Lake Winnipeg (12321ms)\nHow many Great Lakes are there?\tGull\t-12.819161334017133\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there today ? -> $x: ($x, instance of, great lake) ($x, be there, today) -> (Gull, Instance Of, great lake) (gulls, were there, today) -> Gull (370ms)\nHow many Great Lakes are there?\tmineral\t-13.043901154041436\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be source, $x) -> (mineral, Instance Of, baby building nutrient) (Great Salt Lake, is an important source of, minerals) -> mineral (2768ms)\nHow many Great Lakes are there?\tmountain\t-13.052006522547622\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (mountain, Instance Of, great lake) (such a mountain, were placed on, Earth) -> mountain (956ms)\nHow many Great Lakes are there?\tlight blue\t-13.177600817027225\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be be show, $x) -> (light blue, Instance Of, soft baby color) (The present Great Lakes, are shown in, light blue) -> light blue (2988ms)\nHow many Great Lakes are there?\tjob\t-13.28066228083943\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be be create, $x) -> (job, Instance Of, baby) (the Great Lakes, is creating, jobs) -> job (2737ms)\nHow many Great Lakes are there?\tcomputer\t-13.447291949725129\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world today ? -> $x: ($x, instance of, great lake) ($x, be in, the world today) -> (computer, Instance Of, Great Lakes.Maintains NPS property) (computers, are important in, the world today) -> computer (2579ms)\nHow many Great Lakes are there?\twildlife\t-13.470079509137976\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there in britain ? -> $x: ($x, instance of, great lake) ($x, be there in, britain) -> (wildlife, Instance Of, great lake issue) (wildlife, there is in, Britain) -> wildlife (12321ms)\nHow many Great Lakes are there?\tTims\t-13.648383066863769\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there world wide ? -> $x: ($x, instance of, great lake) ($x, be there, world wide) -> $x: ($x, instance of, great lake) ($x, be be work, world wide) -> (Tims, Instance Of, great lake) (Tim, was working on called, the World Wide Web.) -> Tims (984ms)\nHow many Great Lakes are there?\tinformation\t-13.724729783686524\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be source, $x) -> (information, Instance Of, program for the baby boomers) (GreatLakesDestinations.com, is your source of, information) -> information (2768ms)\nHow many Great Lakes are there?\tSwan\t-13.750714621473154\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be stage, $x) -> (Swan, Instance Of, seldom used baby name) (The Great Lakes, is the first major staging area for, swans) -> Swan (2830ms)\nHow many Great Lakes are there?\tSt. Marys\t-13.828247791880203\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in england ? -> $x: ($x, instance of, great lake) ($x, be in, england) -> (St. Marys, Instance Of, great lake) (St . Mary 's, were born in, England) -> St. Marys (8371ms)\nHow many Great Lakes are there?\tCleveland\t-13.854517128173054\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Cleveland, Instance Of, great lake) (Cleveland, was in, the World Series) -> Cleveland (12792ms)\nHow many Great Lakes are there?\tWebster\t-13.86014162643598\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in england ? -> $x: ($x, instance of, great lake) ($x, be in, england) -> (Webster, Instance Of, great lake) (Webster, is available in, England) -> Webster (8371ms)\nHow many Great Lakes are there?\tTime\t-13.922107487043641\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there in californium ? -> $x: ($x, instance of, great lake) ($x, be there in, californium) -> (Time, Instance Of, pretty standard Great Lakes measure of distance) (Times, there are in, California) -> Time (12792ms)\nHow many Great Lakes are there?\tSpirit\t-13.92443303282251\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in this world ? -> $x: ($x, instance of, great lake) ($x, be in, this world) -> (Spirit, Instance Of, great lake) (spirit, is alone in, this world) -> Spirit (7702ms)\nHow many Great Lakes are there?\tDouglas\t-14.05100221307862\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in america ? -> $x: ($x, instance of, great lake) ($x, be in, america) -> (Douglas, Instance Of, great lake) (Douglas, was born in, America) -> Douglas (12882ms)\nHow many Great Lakes are there?\tOntario\t-14.075070296327667\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Ontario, Instance Of, great lake) (Ontario, is the first place in, the world) -> Ontario (12882ms)\nHow many Great Lakes are there?\tSheridan\t-14.082207046286271\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in earth ? -> $x: ($x, instance of, great lake) ($x, be in, earth) -> (Sheridan, Instance Of, great lake) (Sheridan, is wanted in, EarthDome) -> Sheridan (8371ms)\nHow many Great Lakes are there?\tWashington\t-14.093554465306886\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Washington, Instance Of, great lake) (Washington, is basically hell on, Earth) -> Washington (956ms)\nHow many Great Lakes are there?\tLimestone\t-14.107651490773842\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Limestone, Instance Of, great lake) (Limestone, is found virtually everywhere on, earth) -> Limestone (984ms)\nHow many Great Lakes are there?\tCommunication 06-7\t-14.178450627140919\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world today ? -> $x: ($x, instance of, great lake) ($x, be in, the world today) -> (Communication 06-7, Instance Of, appeal of a decision of Great Lakes-Gulf Presbytery) (communications, are in, the world today) -> Communication 06-7 (2579ms)\nHow many Great Lakes are there?\tMoab\t-14.203004540850031\tHow many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, provide service, $x) -> (Moab, Instance Of, baby boy name) (GREAT LAKES AIRLINES, provides daily service to, Moab) -> Moab (2828ms)\nHow many Great Lakes are there?\tStockton\t-14.254997207878997\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in america ? -> $x: ($x, instance of, great lake) ($x, be in, america) -> (Stockton, Instance Of, great lake) (Stockton, would be the largest city in, America) -> Stockton (13191ms)\nHow many Great Lakes are there?\tPine\t-14.280648142127363\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many great lake have be release ? -> $x: ($x, instance of, great lake) ($x, have be, release) -> (Pine, Instance Of, great lake) (the Pine, has been set for, a February 22nd release date) -> Pine (13191ms)\nHow many Great Lakes are there?\tCanada\t-14.318408825239013\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there in france ? -> $x: ($x, instance of, great lake) ($x, be there in, france) -> (Canada, Instance Of, great lake state) (Canada, there was in, France) -> Canada (13191ms)\nHow many Great Lakes are there?\tAgnes\t-14.367224335735333\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in england ? -> $x: ($x, instance of, great lake) ($x, be in, england) -> (Agnes, Instance Of, great lake) (Agnes, was sent to boarding school in, England) -> Agnes (8646ms)\nHow many Great Lakes are there?\tMarsh\t-14.453050505781167\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in new zealand ? -> $x: ($x, instance of, great lake) ($x, be in, new zealand) -> (Marsh, Instance Of, great lake) (Marsh, was also a major figure in, New Zealand theatre) -> Marsh (8646ms)\nHow many Great Lakes are there?\tSimcoe\t-14.456634812213391\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Simcoe, Instance Of, great lake) (Simcoe, is such a popular hop in, the craft brewing world) -> Simcoe (13371ms)\nHow many Great Lakes are there?\tGillis\t-14.569756723602179\tHow many Great Lakes are there? -> how many [ great lake ] be there ? -> how many great lake have be release ? -> $x: ($x, instance of, great lake) ($x, have be, release) -> (Gillis, Instance Of, great Lake trout lake) (Gillis, have been anxiously awaiting, her release) -> Gillis (13371ms)\nHow many Great Lakes are there?\tAmerica\t-14.906731339835147\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there in canada ? -> $x: ($x, instance of, great lake) ($x, be there in, canada) -> (America, Instance Of, beautiful country of great forest and lakes, beauteous mountain and coast) (America, there is in, Canada) -> America (13459ms)\nHow many Great Lakes are there?\tLake Van\t-15.117680930590076\tHow many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Lake Van, Instance Of, great lake) (Lake Van, is the fourth largest terminal lake in, the world) -> Lake Van (13547ms)\nWho is Terrence Malick?\tfilm director\t-1.5344609693900577\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film director) -> film director (2239ms)\nWho is Terrence Malick?\tnotable director\t-1.56514815528018\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, notable director) -> notable director (2239ms)\nWho is Terrence Malick?\tinfluencing director\t-1.58673640355055\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, influencing director) -> influencing director (2239ms)\nWho is Terrence Malick?\ttrue artist\t-1.6018835207375839\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, true artist) -> true artist (2239ms)\nWho is Terrence Malick?\tacclaimed director\t-1.6166098204692427\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acclaimed director) -> acclaimed director (2239ms)\nWho is Terrence Malick?\textraordinary director\t-1.6281051310211265\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, extraordinary director) -> extraordinary director (2239ms)\nWho is Terrence Malick?\tgreat director\t-1.6407897614190756\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, great director) -> great director (2393ms)\nWho is Terrence Malick?\testablished director\t-1.649636207671413\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, established director) -> established director (2392ms)\nWho is Terrence Malick?\tcontemporary filmmaker\t-1.6610528001022729\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, contemporary filmmaker) -> contemporary filmmaker (2392ms)\nWho is Terrence Malick?\testeemed filmmaker\t-1.674815180440155\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, esteemed filmmaker) -> esteemed filmmaker (2392ms)\nWho is Terrence Malick?\tcinematic mastermind\t-1.689612184530946\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, cinematic mastermind) -> cinematic mastermind (2411ms)\nWho is Terrence Malick?\trarified director\t-1.689612184530946\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, rarified director) -> rarified director (2411ms)\nWho is Terrence Malick?\toverdue director\t-1.689612184530946\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, overdue director) -> overdue director (2392ms)\nWho is Terrence Malick?\tfalse idol\t-1.6981481145150845\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, false idol) -> false idol (2410ms)\nWho is Terrence Malick?\tmassive influence\t-1.7057406797121752\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, massive influence) -> massive influence (2410ms)\nWho is Terrence Malick?\texec producer\t-1.7074341715775059\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, exec producer) -> exec producer (2410ms)\nWho is Terrence Malick?\tinteresting story\t-1.7132716455251007\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, interesting story) -> interesting story (2410ms)\nWho is Terrence Malick?\trare creature\t-1.715812028568528\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, rare creature) -> rare creature (2428ms)\nWho is Terrence Malick?\tfilm auteur\t-1.7170306267067459\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film auteur) -> film auteur (2427ms)\nWho is Terrence Malick?\taction director\t-1.7261701066148791\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, action director) -> action director (2427ms)\nWho is Terrence Malick?\tgreat letdown\t-1.7307398465689459\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, great letdown) -> great letdown (2427ms)\nWho is Terrence Malick?\tseductive director\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, seductive director) -> seductive director (2463ms)\nWho is Terrence Malick?\texacting filmmaker\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, exacting filmmaker) -> exacting filmmaker (2446ms)\nWho is Terrence Malick?\tbeloved filmmaker\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, beloved filmmaker) -> beloved filmmaker (2446ms)\nWho is Terrence Malick?\tdivisive director\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, divisive director) -> divisive director (2464ms)\nWho is Terrence Malick?\tgentle loon\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, gentle loon) -> gentle loon (2446ms)\nWho is Terrence Malick?\tuncontested visionary\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, uncontested visionary) -> uncontested visionary (2427ms)\nWho is Terrence Malick?\tserious mystery\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, serious mystery) -> serious mystery (2446ms)\nWho is Terrence Malick?\tunique filmmaker\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, unique filmmaker) -> unique filmmaker (2446ms)\nWho is Terrence Malick?\tpreeminent director\t-1.7345061399660882\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, preeminent director) -> preeminent director (2427ms)\nWho is Terrence Malick?\tslow mover\t-1.7408334728230304\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, slow mover) -> slow mover (2463ms)\nWho is Terrence Malick?\tmysterious sort\t-1.7509572050264282\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, mysterious sort) -> mysterious sort (2463ms)\nWho is Terrence Malick?\tinspiring filmmaker\t-1.7509572050264282\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, inspiring filmmaker) -> inspiring filmmaker (2463ms)\nWho is Terrence Malick?\tacquired taste\t-1.75222030097175\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acquired taste) -> acquired taste (2464ms)\nWho is Terrence Malick?\tfamous filmmaker\t-1.7546503011644066\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, famous filmmaker) -> famous filmmaker (2479ms)\nWho is Terrence Malick?\tenigmatic director\t-1.755069970985088\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, enigmatic director) -> enigmatic director (2479ms)\nWho is Terrence Malick?\tbrilliant filmmaker\t-1.7565272496537543\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, brilliant filmmaker) -> brilliant filmmaker (2479ms)\nWho is Terrence Malick?\tvisual poet\t-1.7602109287398382\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visual poet) -> visual poet (2479ms)\nWho is Terrence Malick?\tfilm maker\t-1.7612819624225442\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film maker) -> film maker (2479ms)\nWho is Terrence Malick?\tacclaimed filmmaker\t-1.762310756037257\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acclaimed filmmaker) -> acclaimed filmmaker (2478ms)\nWho is Terrence Malick?\tunique artist\t-1.762507951530816\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, unique artist) -> unique artist (2536ms)\nWho is Terrence Malick?\tnational treasure\t-1.7639468103822398\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, national treasure) -> national treasure (2536ms)\nWho is Terrence Malick?\tuncredited screenwriter\t-1.775633802004088\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, uncredited screenwriter) -> uncredited screenwriter (2536ms)\nWho is Terrence Malick?\tman\t-2.265264392100278\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, man) -> man (2536ms)\nWho is Terrence Malick?\tAmerican filmmaker, screenwriter, and producer\t-2.3506611828976802\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American filmmaker, screenwriter, and producer) -> American filmmaker, screenwriter, and producer (2646ms)\nWho is Terrence Malick?\tmystical guy\t-2.357981392849078\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, mystical guy) -> mystical guy (2646ms)\nWho is Terrence Malick?\tno-show\t-2.363019126553826\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, no-show) -> no-show (2646ms)\nWho is Terrence Malick?\tadmirably crafty bastard\t-2.375712696869015\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, admirably crafty bastard) -> admirably crafty bastard (2646ms)\nWho is Terrence Malick?\treal cult figure\t-2.3921637619293548\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, real cult figure) -> real cult figure (2646ms)\nWho is Terrence Malick?\tauteurist-cum-obscurantist filmmaker\t-2.40287534828422\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteurist-cum-obscurantist filmmaker) -> auteurist-cum-obscurantist filmmaker (2646ms)\nWho is Terrence Malick?\taustin-based filmmaker\t-2.40287534828422\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, austin-based filmmaker) -> austin-based filmmaker (2667ms)\nWho is Terrence Malick?\tbroad-shouldered young Texan\t-2.405628785887621\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, broad-shouldered young Texan) -> broad-shouldered young Texan (2667ms)\nWho is Terrence Malick?\tAmerican film director, screenwriter, and producer\t-2.4189224320531464\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American film director, screenwriter, and producer) -> American film director, screenwriter, and producer (2667ms)\nWho is Terrence Malick?\tincredibly guarded filmmaker\t-2.4206066523041567\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, incredibly guarded filmmaker) -> incredibly guarded filmmaker (2667ms)\nWho is Terrence Malick?\tsomewhat polarising director\t-2.4206066523041567\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, somewhat polarising director) -> somewhat polarising director (2667ms)\nWho is Terrence Malick?\tvisionary genius thats\t-2.4206066523041567\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visionary genius thats) -> visionary genius thats (2667ms)\nWho is Terrence Malick?\tnative of Austin\t-2.4296331039249885\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, native of Austin) -> native of Austin (2683ms)\nWho is Terrence Malick?\tworld class director\t-2.435839119226279\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, world class director) -> world class director (2683ms)\nWho is Terrence Malick?\tAmerican filmmaker , screenwriter , and producer\t-2.4375551070496835\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American filmmaker , screenwriter , and producer) -> American filmmaker , screenwriter , and producer (2683ms)\nWho is Terrence Malick?\tAssyrian-American film director, screenwriter, and producer\t-2.4375551070496835\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, Assyrian-American film director, screenwriter, and producer) -> Assyrian-American film director, screenwriter, and producer (2683ms)\nWho is Terrence Malick?\tneighbor of Limp Bizkit frontman Fred Durst\t-2.4375551070496835\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, neighbor of Limp Bizkit frontman Fred Durst) -> neighbor of Limp Bizkit frontman Fred Durst (2683ms)\nWho is Terrence Malick?\tprolific film maker\t-2.441170483323157\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, prolific film maker) -> prolific film maker (2683ms)\nWho is Terrence Malick?\tbit of a quirky director\t-2.44461301655552\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, bit of a quirky director) -> bit of a quirky director (2699ms)\nWho is Terrence Malick?\tpoet of the film medium\t-2.44461301655552\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, poet of the film medium) -> poet of the film medium (2699ms)\nWho is Terrence Malick?\tlove-or-hate-him kind of director\t-2.4505227413227635\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, love-or-hate-him kind of director) -> love-or-hate-him kind of director (2699ms)\nWho is Terrence Malick?\tauteurist american director\t-2.4617343143421575\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteurist american director) -> auteurist american director (2699ms)\nWho is Terrence Malick?\tfilm director, producer and writer\t-2.471757719507524\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film director, producer and writer) -> film director, producer and writer (2699ms)\nWho is Terrence Malick?\tgood film director and film creator\t-2.477099875445436\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (TERRENCE MALICK, Instance Of, good film director and film creator) -> good film director and film creator (2699ms)\nWho is Terrence Malick?\theavy-weight and very credible director\t-2.477099875445436\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, heavy-weight and very credible director) -> heavy-weight and very credible director (2717ms)\nWho is Terrence Malick?\tfan of this particular cartoon\t-2.4895069719906626\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, fan of this particular cartoon) -> fan of this particular cartoon (2716ms)\nWho is Terrence Malick?\tvisionary director the like\t-2.4895069719906626\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visionary director the like) -> visionary director the like (2717ms)\nWho is Terrence Malick?\tbig fan of Cameron Diaz\t-2.4895069719906626\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, big fan of Cameron Diaz) -> big fan of Cameron Diaz (2717ms)\nWho is Terrence Malick?\twarm and humble man\t-2.4895069719906626\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, warm and humble man) -> warm and humble man (2716ms)\nWho is Terrence Malick?\tintense, visual, poetic director\t-2.4895069719906626\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, intense, visual, poetic director) -> intense, visual, poetic director (2717ms)\nWho is Terrence Malick?\tAmerican screen writer, producer and director\t-2.504588756044595\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American screen writer, producer and director) -> American screen writer, producer and director (2731ms)\nWho is Terrence Malick?\treclusive, yet widely respected American director and writer\t-2.5077985964469436\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, reclusive, yet widely respected American director and writer) -> reclusive, yet widely respected American director and writer (2731ms)\nWho is Terrence Malick?\tdirector with arguably more vision\t-2.521993830880578\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, director with arguably more vision) -> director with arguably more vision (2731ms)\nWho is Terrence Malick?\tAmerican screenwriter, filmmaker and producer\t-2.521993830880578\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American screenwriter, filmmaker and producer) -> American screenwriter, filmmaker and producer (2731ms)\nWho is Terrence Malick?\tlegendarily elusive and painstaking director\t-2.521993830880578\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, legendarily elusive and painstaking director) -> legendarily elusive and painstaking director (2731ms)\nWho is Terrence Malick?\tenigmatic American film director, screenwriter, and film producer\t-2.5730446091361605\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, enigmatic American film director, screenwriter, and film producer) -> enigmatic American film director, screenwriter, and film producer (2731ms)\nWho is Terrence Malick?\tenigmatic American film director , screenwriter , and film producer\t-2.593464920438393\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, enigmatic American film director , screenwriter , and film producer) -> enigmatic American film director , screenwriter , and film producer (2745ms)\nWho is Terrence Malick?\tfilmmaker\t-2.8485478861255755\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, filmmaker) -> filmmaker (2762ms)\nWho is Terrence Malick?\tdirector\t-2.942671358964134\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, director) -> director (2792ms)\nWho is Terrence Malick?\tauteur\t-2.9685484679191747\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteur) -> auteur (2935ms)\nWho is Terrence Malick?\tproducer\t-2.983990116453622\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, producer) -> producer (2947ms)\nWho is Terrence Malick?\tAmerican director\t-3.0156143124758685\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American director) -> American director (2960ms)\nWho is Terrence Malick?\tmaster\t-3.0288824466107718\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, master) -> master (2970ms)\nWho is Terrence Malick?\tartist\t-3.041069460032217\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, artist) -> artist (2970ms)\nWho is Terrence Malick?\tveteran\t-3.06153586088043\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, veteran) -> veteran (2970ms)\nWho is Terrence Malick?\tbeliever\t-3.1017450610131148\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, believer) -> believer (2970ms)\nWho is Terrence Malick?\tfeminist\t-3.102471393580343\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, feminist) -> feminist (2970ms)\nWho is Terrence Malick?\tracist\t-3.106819041625638\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, racist) -> racist (2970ms)\nWho is Terrence Malick?\tstep\t-3.114219152949013\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, step) -> step (2979ms)\nWho is Terrence Malick?\tpainter\t-3.116824355902943\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, painter) -> painter (2979ms)\nWho is Terrence Malick?\tCatholic\t-3.7577617049779795\tWho is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, Catholic) -> Catholic (3042ms)\nWho is Terrence Malick?\tNatalie Portman\t-8.031255642387386\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Natalie Portman, is working with, Terrence MAlick) -> Natalie Portman (4304ms)\nWho is Terrence Malick?\tThe Road\t-8.92738327961418\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The Road, had been filmed by, Terrence Malick) -> The Road (4304ms)\nWho is Terrence Malick?\tofficial competition\t-9.011663634971896\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (official competition, were, American directors Terrence Malick) -> official competition (4304ms)\nWho is Terrence Malick?\tlast year\t-9.032391971368831\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (last year, was, veteran U.S. film maker Terrence Malick) -> last year (4304ms)\nWho is Terrence Malick?\teach film\t-9.05303030864564\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (each film, is released by, Terrence Malick) -> each film (4370ms)\nWho is Terrence Malick?\thard people\t-9.105327957391495\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (hard people, have been on, Terrence Malick) -> hard people (4370ms)\nWho is Terrence Malick?\tnotable absentee\t-9.128377715580902\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (notable absentee, was, the director Terrence Malick) -> notable absentee (4370ms)\nWho is Terrence Malick?\tArt\t-9.198785635379881\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Art, is having, a Terrence Malick retrospective) -> Art (4370ms)\nWho is Terrence Malick?\ttime\t-9.266785210526272\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (time, were, Terrence Malick) -> time (4370ms)\nWho is Terrence Malick?\tTerry Malick\t-9.35939364415421\tWho is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, Terry Malick) -> Terry Malick (4770ms)\nWho is Terrence Malick?\tDavid Whitney\t-9.407041037192753\tWho is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, David Whitney) -> David Whitney (4770ms)\nWho is Terrence Malick?\tTerence Malic\t-9.407041037192753\tWho is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, Terence Malic) -> Terence Malic (4770ms)\nWho is Terrence Malick?\ta vision\t-9.411301267132458\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (a vision, is equal to, Terrence Malick) -> a vision (4370ms)\nWho is Terrence Malick?\tSteven D. Greydanus\t-9.428349282183001\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Steven D. Greydanus, Is, Terrence Malick?s) -> Steven D. Greydanus (4434ms)\nWho is Terrence Malick?\tfar this year\t-9.445149034613015\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (far this year, is, Terrence Malick?s) -> far this year (4434ms)\nWho is Terrence Malick?\tRooney Mara\t-9.456342954309951\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Rooney Mara, were filming, the Terrence Malick film Lawless) -> Rooney Mara (4434ms)\nWho is Terrence Malick?\tThe New World\t-9.480452344147983\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The New World, was, Terrence Malick) -> The New World (4434ms)\nWho is Terrence Malick?\tThe BFI\t-9.496184268385923\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The BFI, are reissuing, Terrence Malick?s Days) -> The BFI (4434ms)\nWho is Terrence Malick?\tPitt\t-9.574103952315753\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Pitt, was directed by, Terrence Malick) -> Pitt (4434ms)\nWho is Terrence Malick?\tFew films\t-9.613718019971065\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Few films, were as polarizing as, Terrence Malick) -> Few films (4434ms)\nWho is Terrence Malick?\tPortman?s next gig\t-9.732265094211815\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Portman?s next gig, is, Terrence Malick?s film) -> Portman?s next gig (4620ms)\nWho is Terrence Malick?\tLife\t-9.74448788280197\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Life, is, director Terrence Malick?s meditation) -> Life (4620ms)\nWho is Terrence Malick?\ta country mile\t-9.783349980508829\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (a country mile, was, Terrence Malick?s ambitious feast) -> a country mile (4620ms)\nWho is Terrence Malick?\topen-ended take\t-9.896988423095529\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (open-ended take, could be found in, Terrence Malick?s ?The Tree) -> open-ended take (4620ms)\nWho is Terrence Malick?\t06 :04\t-9.922331321178007\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (06 :04, AM Been watching, Terrence Malick?s) -> 06 :04 (4620ms)\nWho is Terrence Malick?\tBale\t-9.965810507129323\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Bale, is shooting, two Terrence Malick films) -> Bale (4686ms)\nWho is Terrence Malick?\tCannes\t-10.031812028211217\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Cannes, was, Terrence Malick?s Tree) -> Cannes (4686ms)\nWho is Terrence Malick?\tmoment\t-10.230308028687316\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (moment, is from, Terrence Malick 's-The Tree) -> moment (4796ms)\nWho is Terrence Malick?\t2009 will\t-10.379230697603075\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (2009 will, be, Terrence Malick) -> 2009 will (4796ms)\nWho is Terrence Malick?\tTerrence Frederick Malick\t-10.493651214384053\tWho is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, Terrence Frederick Malick) -> Terrence Frederick Malick (4796ms)\nWho is Terrence Malick?\ttown\t-10.529977724909138\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (town, was for, reclusive US director Terrence Malick) -> town (4820ms)\nWho is Terrence Malick?\tAnderson\t-10.85339899825603\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Anderson, has been studying, Terrence Malick) -> Anderson (4820ms)\nWho is Terrence Malick?\tHazanavicius\t-10.926722850061097\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Hazanavicius, was up against, Terrence Malick) -> Hazanavicius (4844ms)\nWho is Terrence Malick?\tthe year\t-10.934010224556058\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the year, was, Terrence Malick?s) -> the year (4844ms)\nWho is Terrence Malick?\tthe film\t-11.023177141052297\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the film, are, Terrence Malick) -> the film (4844ms)\nWho is Terrence Malick?\tTree of Life\t-11.19416078265997\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Tree of Life, is directed by, Terrence Malick) -> Tree of Life (4845ms)\nWho is Terrence Malick?\tsparky\t-11.22878437746322\tWho is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, sparky) -> sparky (4844ms)\nWho is Terrence Malick?\tGreen\t-11.29505112333981\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Green, has been often compared to, Terrence Malick) -> Green (4845ms)\nWho is Terrence Malick?\tthe top prize\t-11.313375988344232\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the top prize, is, Terrence Malick) -> the top prize (4872ms)\nWho is Terrence Malick?\tthe reclusive genius\t-11.367362697175396\tWho is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick call ? -> $x: (terrence malick, call, $x) -> (Terrence Malick, has been called, the reclusive genius) -> the reclusive genius (3180ms)\nWho is Terrence Malick?\tthe holy hell\t-11.469785631793645\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the holy hell, is going on in, Terrence Malick?s) -> the holy hell (4872ms)\nWho is Terrence Malick?\tthe biggest boost\t-11.477782915506538\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the biggest boost, is, Terrence Malick?s Tree) -> the biggest boost (4873ms)\nWho is Terrence Malick?\tThe best comparison\t-11.551921532573086\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The best comparison, would be, Terrence Malick ?) -> The best comparison (4898ms)\nWho is Terrence Malick?\tthe movie\t-11.561944189186917\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the movie, are brilliant in, a Terrence Malick-inspired way) -> the movie (4898ms)\nWho is Terrence Malick?\tThe fifth Academy Award nominee\t-11.616075731296853\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The fifth Academy Award nominee, is, Terrence Malick) -> The fifth Academy Award nominee (4898ms)\nWho is Terrence Malick?\tThe more likely nominee\t-11.616467983089855\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The more likely nominee, would be, Terrence Malick) -> The more likely nominee (4898ms)\nWho is Terrence Malick?\tThe film\t-11.634842466625484\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The film, was directed by, Terrence Malick) -> The film (4898ms)\nWho is Terrence Malick?\tThe video screens\t-11.638116086708486\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The video screens, were playing, Terrence Malick-y footage) -> The video screens (4898ms)\nWho is Terrence Malick?\tThe same\t-11.696865378805992\tWho is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The same, is certainly true of, Terrence Malick?s) -> The same (4922ms)\nWho is Terrence Malick?\tTerry\t-11.87891206808708\tWho is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, Terry) -> Terry (4922ms)\nWho is Terrence Malick?\tClooney\t-14.489472620532942\tWho is Terrence Malick? -> who be [ terrence malick ] ? -> who wa terrence malick ? -> $x: ($x, wa, terrence malick) -> $x: ($x, cameo, terrence malick) -> (Clooney, then made a cameo appearance in, Terrence Malick) -> Clooney (6472ms)\nWhen did the Big Dig begin?\t1991\t0.3806359733100466\tWhen did the Big Dig begin? -> $x: (the Big Dig, did begin in, $x) -> $x: (big dig, begin in, $x) -> $x: (big dig, kick off in, $x) -> (The Big Dig, kicked off in, 1991) -> 1991 (3961ms)\nWhen did the Big Dig begin?\tthe post-WWII Interstate Highway boom\t-4.014668918306778\tWhen did the Big Dig begin? -> $x: (the Big Dig, did begin in, $x) -> $x: (big dig, begin in, $x) -> (the Big Dig, began in, the post-WWII Interstate Highway boom) -> the post-WWII Interstate Highway boom (3551ms)\nWhen did the Big Dig begin?\tthe mid-1980s\t-5.10962948384541\tWhen did the Big Dig begin? -> $x: (the Big Dig, did begin in, $x) -> $x: (big dig, begin in, $x) -> $x: (big dig, break ground in, $x) -> ('s Big Dig, broke ground in, the mid-1980s) -> the mid-1980s (3575ms)\nWhen did the Big Dig begin?\tBoston\t-5.815739146532735\tWhen did the Big Dig begin? -> $x: (the Big Dig, did begin in, $x) -> $x: (big dig, begin in, $x) -> $x: (big dig, start in, $x) -> (?The Big Dig, was starting in, Boston) -> Boston (4127ms)\nWhen did the Big Dig begin?\tmillions\t-10.96600571264074\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what be the beginning of the big dig ? -> $x: (the big dig, beginning, $x) -> (The big dig, begins today for, millions) -> millions (6164ms)\nWhen did the Big Dig begin?\tmuch success\t-11.028957780920456\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what be the beginning of the big dig ? -> $x: (the big dig, beginning, $x) -> (the big dig, began ? without, much success) -> much success (6164ms)\nWhen did the Big Dig begin?\tthe 1970?s\t-11.362932193235801\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> when be the big dig begin ? -> $x: (the big dig, be begin in, $x) -> $x: (the big dig, be conceive in, $x) -> (The ?Big Dig? tunnel system, was conceived in, the 1970?s) -> the 1970?s (6776ms)\nWhen did the Big Dig begin?\tDawn\t-11.706038929224455\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what year do the big dig begin ? -> $x: ($x, instance of, year) (the big dig, begin, $x) -> (Dawn, Instance Of, eight-year mission) (The ?Big Dig?, began at, dawn) -> Dawn (5112ms)\nWhen did the Big Dig begin?\tdawn\t-11.847611638374595\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what be the beginning of the big dig ? -> $x: (the big dig, beginning, $x) -> (The ?Big Dig?, began at, dawn) -> dawn (6164ms)\nWhen did the Big Dig begin?\tCar\t-12.098646666317109\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what date do the big dig open ? -> $x: ($x, instance of, date) (the big dig, open, $x) -> (Car, Instance Of, 1986 production date car) (the Big Dig, finally opened to, cars) -> Car (5737ms)\nWhen did the Big Dig begin?\tcar\t-12.106733419024408\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what date do the big dig open ? -> $x: ($x, instance of, date) (the big dig, open, $x) -> (car, Instance Of, private date location) (the Big Dig, finally opened to, cars) -> car (5737ms)\nWhen did the Big Dig begin?\tMillions\t-12.690234221359576\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what year do the big dig begin ? -> $x: ($x, instance of, year) (the big dig, begin, $x) -> (Millions, Instance Of, good 2-year-old) (The big dig, begins today for, millions) -> Millions (5456ms)\nWhen did the Big Dig begin?\tthe Massachusetts Secretary\t-12.69861036350328\tWhen did the Big Dig begin? -> when [ do the big dig ] begin ? -> who begin do the big dig ? -> $x: ($x, begin do, the big dig) -> $x: ($x, begin, big dig) -> (the Massachusetts Secretary, begins planning, the Big Dig) -> the Massachusetts Secretary (10394ms)\nWhen did the Big Dig begin?\tany construction\t-12.772757806162318\tWhen did the Big Dig begin? -> when [ do the big dig ] begin ? -> who begin do the big dig ? -> $x: ($x, begin do, the big dig) -> $x: ($x, begin, big dig) -> (any construction, began on, the Big Dig) -> any construction (10394ms)\nWhen did the Big Dig begin?\tDAWN\t-12.832468072864728\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what day do the big dig begin ? -> $x: ($x, instance of, day) (the big dig, begin, $x) -> (DAWN, Instance Of, time of day description) (The ?Big Dig?, began at, dawn) -> DAWN (5455ms)\nWhen did the Big Dig begin?\tboston\t-14.612589056074349\tWhen did the Big Dig begin? -> when do [ the big dig ] begin ? -> what date do the big dig begin ? -> $x: ($x, instance of, date) (the big dig, begin, $x) -> $x: ($x, instance of, date) (the big dig, be start, $x) -> (boston, Instance Of, country completely out-dated brace) (?The Big Dig, was starting in, Boston) -> boston (12581ms)\nWhich authority runs the airport?\tMassPort\t-4.289739914477748\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (MassPort, Instance Of, authority) (Massport, runs, the airport) -> MassPort (1943ms)\nWhich authority runs the airport?\tBAA\t-4.47513862535946\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (BAA, Instance Of, aviation authority) (BAA, runs, the airport) -> BAA (1943ms)\nWhich authority runs the airport?\tMASSPORT\t-5.539268003189642\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (MASSPORT, Instance Of, state legislated public authority) (Massport, runs, the airport) -> MASSPORT (3211ms)\nWhich authority runs the airport?\tMassport\t-5.54558167688594\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Massport, Instance Of, independent authority) (Massport, runs, the airport) -> Massport (3211ms)\nWhich authority runs the airport?\tcoach\t-6.35969846130657\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (coach, Instance Of, authority) (Coaches, run from, the airport) -> coach (3393ms)\nWhich authority runs the airport?\tTaxi\t-6.615615766582636\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Taxi, Instance Of, authority) (Taxis, run from, the airport) -> Taxi (3393ms)\nWhich authority runs the airport?\tgovernment\t-6.829866341003447\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> (government, Instance Of, authority) (Governments, now try to run, airports) -> government (3511ms)\nWhich authority runs the airport?\tService\t-7.198094043321386\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Service, Instance Of, authority) (Services, running from, the airport) -> Service (3511ms)\nWhich authority runs the airport?\tbus\t-7.243221900080744\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, from run, the airport) -> (bus, Instance Of, port authority property) (Bush, ran from, the airport) -> bus (9459ms)\nWhich authority runs the airport?\tHurley\t-7.26222859327455\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Hurley, Instance Of, authority) (Hurley, runs through, the airport) -> Hurley (3562ms)\nWhich authority runs the airport?\tMetro\t-7.26222859327455\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Metro, Instance Of, authority) (Metro, runs from, the airport) -> Metro (3562ms)\nWhich authority runs the airport?\tBush\t-7.280241696748786\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, from run, the airport) -> (Bush, Instance Of, authority) (Bush, ran from, the airport) -> Bush (9460ms)\nWhich authority runs the airport?\tSun\t-7.416965673868722\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, would run, the airport) -> (Sun, Instance Of, certification authority company) (Sun, would have run away from, the airport) -> Sun (4713ms)\nWhich authority runs the airport?\tMr. Wright\t-7.507250145832522\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to be run, the airport) -> (Mr. Wright, Instance Of, recognized authority) (Mr. Wright, was asked to run, the local city airport) -> Mr. Wright (4115ms)\nWhich authority runs the airport?\tGovernment\t-7.62416426240667\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> (Government, Instance Of, authority) (Governments, now try to run, airports) -> Government (3589ms)\nWhich authority runs the airport?\tMcNeil\t-8.085352125720924\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (McNeil, Instance Of, authority) (Neil, had to rush to, the airport) -> McNeil (7196ms)\nWhich authority runs the airport?\teVisitor\t-8.213091837388472\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, just drive, the airport) -> (eVisitor, Instance Of, authority) (visitors, is just a 20-minute drive from, the airport) -> eVisitor (4713ms)\nWhich authority runs the airport?\tDoug\t-8.365648844714904\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (Doug, Instance Of, authority) (Doug, rushed to, the airport) -> Doug (7196ms)\nWhich authority runs the airport?\ttaxi\t-8.369476554499798\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, be be run, the airport) -> (taxi, Instance Of, public authority) (Taxi, was running late to, the airport) -> taxi (8584ms)\nWhich authority runs the airport?\tZappos\t-8.490305574668554\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, be be run, the airport) -> (Zappos, Instance Of, authority site) (Zappos, would have been to run to, the airport) -> Zappos (8584ms)\nWhich authority runs the airport?\tJessica\t-8.538256058586636\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, be be run, the airport) -> (Jessica, Instance Of, authority) (Jessica, is running through, the Newark airport) -> Jessica (8584ms)\nWhich authority runs the airport?\tBC Ferries\t-8.658047598055475\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, from run, the airport) -> (BC Ferries, Instance Of, transportation authority) (Ferries, run from, the airport) -> BC Ferries (9459ms)\nWhich authority runs the airport?\tDavid\t-8.987477121456882\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (David, Instance Of, authority) (David, was reportedly rushing to, the airport) -> David (7196ms)\nWhich authority runs the airport?\tAndrew\t-9.024190001235262\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (Andrew, Instance Of, authority) (Andrew, then rushed back to, the airport) -> Andrew (7196ms)\nWhich authority runs the airport?\tOffice\t-9.115193357820377\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (Office, Instance Of, authority) (office, have to rush to, the airport) -> Office (7196ms)\nWhich authority runs the airport?\tAndrews\t-9.222684746491243\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (Andrews, Instance Of, authority) (Andrew, then rushed back to, the airport) -> Andrews (7196ms)\nWhich authority runs the airport?\tMichigan\t-9.233060094549312\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, just drive, the airport) -> (Michigan, Instance Of, leading authority) (Michigan, is just a short drive from, the airport) -> Michigan (4713ms)\nWhich authority runs the airport?\tauthority\t-9.245621756275611\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, be one form of, authority) ($x, runs, the airport) -> (authority, is one form of, actual authority) (the Authority, ran, the airport) -> authority (8850ms)\nWhich authority runs the airport?\tairport parking\t-9.262444320955282\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, be be run, airport) -> (airport parking, Instance Of, authority) (Airport parking, is run by, Heathrow Airport) -> airport parking (14008ms)\nWhich authority runs the airport?\tThe device\t-9.30917208872807\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, be a by, authority) ($x, runs, the airport) -> (The device, was created by a..., French authorities) (the device, then run, the included AirPort configuration utility) -> The device (6119ms)\nWhich authority runs the airport?\tGodfrey\t-9.327186283191061\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, scurry, the airport) -> (Godfrey, Instance Of, authority) (Godfrey, scurried back to, the airport) -> Godfrey (7991ms)\nWhich authority runs the airport?\tOrange County\t-9.389985126118555\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, have problem, airport) -> (Orange County, Instance Of, Aquatic Authority) (Orange County, has the same problems with, John Wayne Airport) -> Orange County (11610ms)\nWhich authority runs the airport?\tthe country\t-9.40626184186127\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, be a by, authority) ($x, runs, the airport) -> (the country, is a major argument used by, Iraqi authorities) (the country, are run distinctively to, the airport) -> the country (6119ms)\nWhich authority runs the airport?\texperience\t-9.52223265592555\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: (authority, element, $x) ($x, run, airport) -> (Authority, is a many-faceted element in, experience) (This experience, is run out, both Bathurst Airport) -> experience (14008ms)\nWhich authority runs the airport?\ttraining course\t-9.591659687359469\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, be be run, airport) -> (training course, Instance Of, information for local authority) (Training courses, are run by, Robin Hood Airport) -> training course (14008ms)\nWhich authority runs the airport?\tVIP\t-9.737098465803964\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, lounge, airport) -> (VIP, Instance Of, program of Longview Housing Authority) (VIP, lounges worldwide at almost, 100 airports) -> VIP (14795ms)\nWhich authority runs the airport?\tVIPs\t-9.810655731708291\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, lounge, airport) -> (VIPs, Instance Of, position of authority) (VIP, lounges worldwide at almost, 100 airports) -> VIPs (14795ms)\nWhich authority runs the airport?\tMr. Mondale\t-10.065724059058095\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, could walk, airport) -> (Mr. Mondale, Instance Of, international authority) (Mondale, could walk through, any airport) -> Mr. Mondale (13026ms)\nWhich authority runs the airport?\towner\t-10.18349790506334\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, drive it, the airport) -> (owner, Instance Of, authority) (Owners, can drive it to, the nearest small airport) -> owner (10467ms)\nWhich authority runs the airport?\tthe program\t-10.226248508670611\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, modelling, authority) ($x, run, airport) -> (the program, are modeled after, the New York Power Authority) (The program, has so far run through, airports) -> the program (12245ms)\nWhich authority runs the airport?\tlawyer\t-10.357758070178791\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, to rush, airport) -> (lawyer, Instance Of, authority) (lawyers, rushed to, KL International Airport) -> lawyer (14812ms)\nWhich authority runs the airport?\texpert\t-10.425096339634218\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, to rush, airport) -> (expert, Instance Of, authority) (experts, rushed to, a closed airport hangar) -> expert (14812ms)\nWhich authority runs the airport?\tOwner\t-10.876610390142464\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, drive it, the airport) -> (Owner, Instance Of, public authority) (Owners, can drive it to, the nearest small airport) -> Owner (10467ms)\nWhich authority runs the airport?\tPeter\t-10.9171669938159\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, to rush, airport) -> (Peter, Instance Of, authority) (Peter, rushed to, Kennedy airport) -> Peter (16640ms)\nWhich authority runs the airport?\ttrain\t-11.1186984848846\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, from run, airport) -> (train, Instance Of, transportation authority communication system) (Trains, run from, the airport) -> train (11823ms)\nWhich authority runs the airport?\tBerlin\t-11.118812570973049\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, just drive, airport) -> (Berlin, Instance Of, local authority) (Berlin, is just a 10-minute drive from, Tegel Airport) -> Berlin (12717ms)\nWhich authority runs the airport?\tRoosevelt\t-11.17306317466201\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, be whisk, airport) -> (Roosevelt, Instance Of, authority) (Roosevelt, was whisked from, Midway Airport) -> Roosevelt (14426ms)\nWhich authority runs the airport?\tPeters\t-11.309812710980246\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, to rush, airport) -> (Peters, Instance Of, authority) (Peter, rushed to, Kennedy airport) -> Peters (16640ms)\nWhich authority runs the airport?\tReader\t-11.40992571244426\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, have problem, airport) -> (Reader, Instance Of, authority) (Reader, has problem with, Win XP and AirPort) -> Reader (12103ms)\nWhich authority runs the airport?\tthe government\t-11.666325380296776\tWhich authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, look to start, airport) -> (the government, Instance Of, intellectual authority) (the government, started looking forward to, another airport) -> the government (14441ms)\nWhich authority runs the airport?\tPort Authority\t-15.397538726790732\tWhich authority runs the airport? -> which [ authority run the airport ] ? -> what bi authority run the airport ? -> $x: ($x, instance of, bi authority) ($x, run, the airport) -> (Port Authority, Instance Of, bi-state governmental authority of both New York and New Jersey) (the Port Authority, runs, the airport) -> Port Authority (16640ms)\nWhich authority runs the airport?\tTri-Rail\t-15.752944018820019\tWhich authority runs the airport? -> which [ authority run the airport ] ? -> what three authority run the airport ? -> $x: ($x, instance of, three authority) ($x, run, the airport) -> (Tri-Rail, Instance Of, three-county commuter rail authority) (The Tri-Rail, runs from, the airport) -> Tri-Rail (16640ms)\nWhere is NATO headquartered?\tBrussels\t-3.2255775163884635\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> (NATO, is headquartered in, Brussels) -> Brussels (3268ms)\nWhere is NATO headquartered?\tNorfolk\t-5.347786256627785\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (NATO, is located in, Norfolk) -> Norfolk (5308ms)\nWhere is NATO headquartered?\tGreece\t-5.474822933243015\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be pressure, $x) -> (the EU and Nato, were applying pressure on, Greece) -> Greece (4238ms)\nWhere is NATO headquartered?\tAfghanistan\t-5.66537854296988\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (the US and Nato forces, are currently based in, Afghanistan) -> Afghanistan (5066ms)\nWhere is NATO headquartered?\tParis\t-5.741976642893679\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (the NATO headquarters, was based in, Paris) -> Paris (5066ms)\nWhere is NATO headquartered?\tCroatia\t-5.808356034339897\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO troops, are now based in, Croatia) -> Croatia (5066ms)\nWhere is NATO headquartered?\tEurope\t-5.821420431069103\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO base, is the largest military base in, Europe) -> Europe (5066ms)\nWhere is NATO headquartered?\tMalta\t-5.990410123373345\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be the headquarters of, NATO) -> (Malta, was the headquarters of, Southern Nato Command) -> Malta (4210ms)\nWhere is NATO headquartered?\tEastern Europe\t-5.991152436515217\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be expand into, $x) -> (NATO, is expanding into, Eastern Europe) -> Eastern Europe (5122ms)\nWhere is NATO headquartered?\tGermany\t-6.27392492946177\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO?s missile shield program, will be based here in, Germany) -> Germany (5066ms)\nWhere is NATO headquartered?\tIzmir\t-6.350979437265401\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (Two NATO headquarters, are located in, Izmir) -> Izmir (5307ms)\nWhere is NATO headquartered?\tTeveren\t-6.4509503376759705\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (NATO Air Base Geilenkirchen, is located in, Teveren) -> Teveren (5347ms)\nWhere is NATO headquartered?\tRussia\t-6.457264956653473\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Nato, expanded to, Russia) -> Russia (4455ms)\nWhere is NATO headquartered?\tBerlin\t-6.4578267523337844\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO, is meeting here in, Berlin) -> Berlin (5714ms)\nWhere is NATO headquartered?\tChicago\t-6.537110900146309\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO, are meeting in, Chicago) -> Chicago (5714ms)\nWhere is NATO headquartered?\tCapellen\t-6.568315514993356\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (The NATO Support Agency, will be located in, Capellen) -> Capellen (5348ms)\nWhere is NATO headquartered?\tUkraine\t-6.712210502411972\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, has already expanded into, Ukraine) -> Ukraine (4455ms)\nWhere is NATO headquartered?\tKyrgyzstan\t-6.730843248473731\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, base in, $x) -> (Nato, needs a base in, Kyrgyzstan) -> Kyrgyzstan (4521ms)\nWhere is NATO headquartered?\tthe Balkans\t-6.829320970706345\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have be operate in, $x) -> (NATO, has been operating in, the Balkans) -> the Balkans (4168ms)\nWhere is NATO headquartered?\tLibya\t-6.874529936744229\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, begin operation in, $x) -> (NATO forces, began military operations in, Libya) -> Libya (4589ms)\nWhere is NATO headquartered?\tFrance\t-6.911363885569645\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have its headquarters in, $x) -> (Nato, had had its headquarters in, France) -> France (5183ms)\nWhere is NATO headquartered?\tAmerica\t-7.1879439896934745\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have turn against, $x) -> (NATO, would have turned against, America) -> America (4921ms)\nWhere is NATO headquartered?\tPapa\t-7.194182142635917\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, base in, $x) -> (NATO, set up a base in, Papa) -> Papa (4589ms)\nWhere is NATO headquartered?\tCentral Europe\t-7.202206121159761\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expanded to, Central Europe) -> Central Europe (4636ms)\nWhere is NATO headquartered?\tYugoslav territory\t-7.32365443697017\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO troops, must be based in, Yugoslav territory) -> Yugoslav territory (5097ms)\nWhere is NATO headquartered?\tPolish troops\t-7.388359891480339\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be know throughout, NATO) -> (Polish troops, are now known throughout, the NATO alliance) -> Polish troops (4871ms)\nWhere is NATO headquartered?\tGeorgia\t-7.406912428118235\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have a presence in, $x) -> (the US and NATO, have a military presence in, Georgia) -> Georgia (4921ms)\nWhere is NATO headquartered?\tWashington\t-7.411757496107012\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO leaders, are meeting in, Washington) -> Washington (5755ms)\nWhere is NATO headquartered?\tTirana\t-7.415172742645605\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, set up in, $x) -> (a NATO cell, was set up in, Tirana) -> Tirana (5954ms)\nWhere is NATO headquartered?\tMadrid\t-7.416555254484001\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (the Russia-NATO council, are to hold a meeting in, Madrid) -> Madrid (5769ms)\nWhere is NATO headquartered?\tBelium\t-7.423744064738541\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: ($x, be home of, nato) -> (Belium, is the home of, NATO) -> Belium (5769ms)\nWhere is NATO headquartered?\tthe Mediterranean\t-7.437418043231252\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO Maritime Group 1, is usually based in, the Mediterranean) -> the Mediterranean (5097ms)\nWhere is NATO headquartered?\tVictoria\t-7.4459534767514715\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO Parliamentary Assembly, was going to meet in, Victoria) -> Victoria (5769ms)\nWhere is NATO headquartered?\tQuebec City\t-7.454609340541662\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (the NATO parliamentary assembly, is meeting in, Quebec City) -> Quebec City (5769ms)\nWhere is NATO headquartered?\tthe Taliban\t-7.4889994020670265\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be turn against, $x) -> (Nato command, are turning the tide against, the Taliban) -> the Taliban (4956ms)\nWhere is NATO headquartered?\tmissile defense\t-7.4954200015441845\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, agreed to expand, missile defense) -> missile defense (4636ms)\nWhere is NATO headquartered?\tMacedonia\t-7.5014971288972205\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have a presence in, $x) -> (NATO, has had a presence in, Macedonia) -> Macedonia (4921ms)\nWhere is NATO headquartered?\tthe Mediterranean Sea\t-7.550568067349106\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, start operation in, $x) -> (NATO, started naval operations in, the Mediterranean Sea) -> the Mediterranean Sea (4666ms)\nWhere is NATO headquartered?\tKeflavik\t-7.656867728259192\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have a presence in, $x) -> (other NATO countries, have had a permanent presence in, Keflavik) -> Keflavik (4921ms)\nWhere is NATO headquartered?\tBosnia\t-7.689931633924389\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate in, $x) -> (Russian and NATO troops, are operating well together in, Bosnia) -> Bosnia (5586ms)\nWhere is NATO headquartered?\tCentral and Eastern Europe\t-7.71493645421655\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, could expand into, Central and Eastern Europe) -> Central and Eastern Europe (4667ms)\nWhere is NATO headquartered?\tthe East\t-7.745202335472653\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, was expanded to, the East) -> the East (4667ms)\nWhere is NATO headquartered?\tKrakow\t-7.785485429063038\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO defence ministers, are due to meet in, Krakow) -> Krakow (5848ms)\nWhere is NATO headquartered?\tthe UN.\t-7.7874967673050115\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be charter by, $x) -> (NATO, is chartered by, the UN.) -> the UN. (5463ms)\nWhere is NATO headquartered?\tU.S. influence\t-7.798980230137694\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO expansion, was to expand, U.S. influence) -> U.S. influence (4667ms)\nWhere is NATO headquartered?\tSyria\t-7.8475995208029445\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate in, $x) -> (NATO forces, already operate covertly in, Syria) -> Syria (5612ms)\nWhere is NATO headquartered?\tthe West\t-7.858096993777819\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, has just expanded into, the West) -> the West (4666ms)\nWhere is NATO headquartered?\tthree Baltic states\t-7.867088493687673\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, will be expanded to include, three Baltic states) -> three Baltic states (4666ms)\nWhere is NATO headquartered?\tRussian border\t-7.931609876775619\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, is expanding right to, Russian border) -> Russian border (4871ms)\nWhere is NATO headquartered?\tPoland\t-7.938813155435989\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, to invest in, $x) -> (NATO, has decided to heavily invest in, Poland) -> Poland (5848ms)\nWhere is NATO headquartered?\ttroops\t-7.971817154900656\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be pressure, $x) -> (further NATO integration, be pressured for, troops) -> troops (4238ms)\nWhere is NATO headquartered?\tThe Bucharest Summit\t-7.983707482268262\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be the biggest in, NATO) -> (The Bucharest Summit, will be the biggest in, NATO?s history) -> The Bucharest Summit (4210ms)\nWhere is NATO headquartered?\tTallinn\t-7.989093932850722\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, located in, $x) -> (the NATO Cyber Defence Centre, located in, Tallinn) -> Tallinn (5848ms)\nWhere is NATO headquartered?\tnew client-states\t-8.012822090455531\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has been expanded to incorporate, new client-states) -> new client-states (4871ms)\nWhere is NATO headquartered?\tPoland , Hungary\t-8.06056873583999\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, was expanded to include, Poland , Hungary) -> Poland , Hungary (4921ms)\nWhere is NATO headquartered?\tKhaled\t-8.096211163442572\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: ($x, file a lawsuit against, nato) -> (Khaled, has filed a lawsuit against, NATO) -> Khaled (5860ms)\nWhere is NATO headquartered?\tsouthern Afghanistan\t-8.112443792739274\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, expand into, southern Afghanistan) -> southern Afghanistan (4956ms)\nWhere is NATO headquartered?\tChicago ?\t-8.120750917902347\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (The NATO summit, will still be meeting in, Chicago ?) -> Chicago ? (5860ms)\nWhere is NATO headquartered?\tIndia and China\t-8.341734246921133\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expand up to, India and China) -> India and China (4956ms)\nWhere is NATO headquartered?\tNATO missions\t-8.367624051414523\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have a presence in, $x) -> (NATO ?, has always been a dynamic presence in, NATO missions) -> NATO missions (4956ms)\nWhere is NATO headquartered?\tflight\t-8.37025442460519\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, control in, $x) -> (NATO, loses control in, flight) -> flight (4956ms)\nWhere is NATO headquartered?\tCentral\t-8.412590839017895\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, located in, $x) -> (the new NATO members, located in, Central) -> Central (5954ms)\nWhere is NATO headquartered?\tthe Baltics\t-8.434674336237268\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expanded to include, the Baltics) -> the Baltics (4956ms)\nWhere is NATO headquartered?\tthe town\t-8.442806299003223\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (NATO, is located in, the town) -> the town (5348ms)\nWhere is NATO headquartered?\tEast Europe\t-8.466485665243594\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO expansion, continue to expand into, East Europe) -> East Europe (4996ms)\nWhere is NATO headquartered?\tTbilisi and branches\t-8.468963782030514\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have office in, $x) -> (NATO, has its main office in, Tbilisi and branches) -> Tbilisi and branches (4239ms)\nWhere is NATO headquartered?\tlarge areas\t-8.480488735644068\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Today NATO, has expanded to, large areas) -> large areas (4996ms)\nWhere is NATO headquartered?\tten new members\t-8.523958519147001\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has expanded to include, ten new members) -> ten new members (4995ms)\nWhere is NATO headquartered?\tformer adversaries\t-8.5521882847709\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has already expanded to include, former adversaries) -> former adversaries (4995ms)\nWhere is NATO headquartered?\tfederal law\t-8.725323653883784\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate outside, $x) -> (NATO, freely operate outside, federal law) -> federal law (5348ms)\nWhere is NATO headquartered?\tSHAPE\t-8.816396328713475\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be charter by, $x) -> (the NATO air bridge, are commercially chartered by, SHAPE) -> SHAPE (5464ms)\nWhere is NATO headquartered?\tthree\t-8.822745476081215\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, instead has been expanded to include, three) -> three (5122ms)\nWhere is NATO headquartered?\teastwards\t-8.89413741274106\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, continues to expand, eastwards) -> eastwards (5122ms)\nWhere is NATO headquartered?\tEAGLE GUARDIAN\t-8.914685064929383\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO?s Military Committee, agreed to expand, EAGLE GUARDIAN) -> EAGLE GUARDIAN (5122ms)\nWhere is NATO headquartered?\tsecularism\t-8.928744294631613\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: ($x, be the second largest in, nato) -> (secularism, is the second-largest force in, NATO) -> secularism (5490ms)\nWhere is NATO headquartered?\tmembership\t-9.003713328609448\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, wants to expand, membership) -> membership (5151ms)\nWhere is NATO headquartered?\tthe NATO base\t-9.218989410514462\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, base at, $x) -> (the NATO missile shield, will be based at, the NATO base) -> the NATO base (5627ms)\nWhere is NATO headquartered?\tthe city\t-9.243029702589272\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be the headquarters of, NATO) -> (the city, was the headquarters of, NATO) -> the city (4210ms)\nWhere is NATO headquartered?\tThe capital\t-9.29791451271435\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be the headquarters of, NATO) -> (The capital, is the headquarters of, NATO) -> The capital (4238ms)\nWhere is NATO headquartered?\teach other\t-9.305666120565155\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate in, $x) -> (NATO members, operate in, each other) -> each other (5627ms)\nWhere is NATO headquartered?\tprogress\t-9.307509696493755\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have operation in, $x) -> (NATO, has its own psychological operation in, progress) -> progress (5151ms)\nWhere is NATO headquartered?\tthree-quarters\t-9.313881603706829\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate in, $x) -> (Nato, is operating in, three-quarters) -> three-quarters (5627ms)\nWhere is NATO headquartered?\tsupport\t-9.322441287901896\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, start operation in, $x) -> (NATO, may soon start another operation in, support) -> support (5151ms)\nWhere is NATO headquartered?\tformer Soviet territory\t-9.329147270517824\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate within, $x) -> (NATO, operate within, former Soviet territory) -> former Soviet territory (5627ms)\nWhere is NATO headquartered?\tthe west\t-9.339085566780675\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expands to, the west) -> the west (5151ms)\nWhere is NATO headquartered?\tthe south\t-9.43274596932244\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (the NATO, expands into, the south) -> the south (5151ms)\nWhere is NATO headquartered?\tAfghanistan every time\t-9.511115827576493\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, do business in, $x) -> (the US and Nato, do business in, Afghanistan every time) -> Afghanistan every time (5490ms)\nWhere is NATO headquartered?\t10,000 troops\t-9.64483740724252\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, would expand to about, 10,000 troops) -> 10,000 troops (5151ms)\nWhere is NATO headquartered?\tthe empire\t-9.749761067856081\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Nato, is being used to expand, the empire) -> the empire (5182ms)\nWhere is NATO headquartered?\tthe borders\t-9.755001723539994\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (The NATO, is provocatively expanding to, the borders) -> the borders (5183ms)\nWhere is NATO headquartered?\tpeacekeeping operations\t-9.763010315796906\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO members, to expand, peacekeeping operations) -> peacekeeping operations (5183ms)\nWhere is NATO headquartered?\tthe volume\t-9.84963589533664\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Nato diplomats, are also seeking to expand, the volume) -> the volume (5253ms)\nWhere is NATO headquartered?\tthe southern sector\t-9.86990787794608\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (the Nato mission, is expanded to cover, the southern sector) -> the southern sector (5253ms)\nWhere is NATO headquartered?\tthe east\t-9.999170167251279\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expands to, the east) -> the east (5253ms)\nWhere is NATO headquartered?\t28 member states\t-10.009598648788263\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO today, has expanded to, 28 member states) -> 28 member states (5254ms)\nWhere is NATO headquartered?\tthe very borders\t-10.042158034736978\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expand up to, the very borders) -> the very borders (5254ms)\nWhere is NATO headquartered?\tthe transit\t-10.043990975666429\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, would like to expand, the transit) -> the transit (5254ms)\nWhere is NATO headquartered?\tthe plan\t-10.044974467115736\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, agreed to expand, the plan) -> the plan (5367ms)\nWhere is NATO headquartered?\tthe mission\t-10.066195204253528\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has to expand, the mission) -> the mission (5368ms)\nWhere is NATO headquartered?\tthe desired ?regime change\t-10.195859513642676\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have engineer, $x) -> (its NATO allies, have engineered, the desired ?regime change) -> the desired ?regime change (4168ms)\nWhere is NATO headquartered?\tthe benefit\t-10.265611911171588\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (the NATO bargain, has dramatically expanded to, the benefit) -> the benefit (5368ms)\nWhere is NATO headquartered?\tthe soil\t-10.265939594837334\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (the NATO alliance, have expanded adjacent to, the soil) -> the soil (5368ms)\nWhere is NATO headquartered?\tthe former Soviet expanse\t-10.338279936926803\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (the EU and NATO, expanded into, the former Soviet expanse) -> the former Soviet expanse (5490ms)\nWhere is NATO headquartered?\tthe broader Middle East\t-10.33833384867486\tWhere is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, to operate in, $x) -> (NATO, begins to operate in, the broader Middle East) -> the broader Middle East (5490ms)\nHow long does the Madness last?\t9780252023996\t-10.174099797886553\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (9780252023996, Book Editions, From mission to madness : last son of the Mormon prophet) -> 9780252023996 (16295ms)\nHow long does the Madness last?\t9780915815357\t-10.38255714243018\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (9780915815357, Book Editions, Last Days Madness: Obsession of the Modern Church) -> 9780915815357 (16295ms)\nHow long does the Madness last?\t9780915815319\t-10.38255714243018\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (9780915815319, Book Editions, Last Days Madness: Obsession of the Modern Church) -> 9780915815319 (16295ms)\nHow long does the Madness last?\t9780252067013\t-10.412336763079269\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (9780252067013, Book Editions, From mission to madness: last son of the Mormon prophet) -> 9780252067013 (16295ms)\nHow long does the Madness last?\tCris D'Amato\t-11.358302467704958\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, film, the madness last) -> (Cris D'Amato, Films directed, The Last Madness) -> Cris D'Amato (16432ms)\nHow long does the Madness last?\t2007\t-11.402446940525095\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, release, $x) -> (The Last Madness, Initial release date, 2007) -> 2007 (16084ms)\nHow long does the Madness last?\t2\t-11.464389373876292\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, track, $x) -> (Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower, Track #, 2) -> 2 (15862ms)\nHow long does the Madness last?\tWorld cinema\t-11.478253946683108\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, film, the madness last) -> (World cinema, Films of this genre, The Last Madness) -> World cinema (16432ms)\nHow long does the Madness last?\tLast Days Madness\t-11.525377741995953\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (Last Days Madness, Editions, Last Days Madness: Obsession of the Modern Church) -> Last Days Madness (16295ms)\nHow long does the Madness last?\tFrom mission to madness\t-11.601953909379326\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (From mission to madness, Editions, From mission to madness : last son of the Mormon prophet) -> From mission to madness (16321ms)\nHow long does the Madness last?\tOverture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower\t-11.842244641513359\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, recording, the madness last) -> (Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower, Recording, Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower) -> Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower (16383ms)\nHow long does the Madness last?\tEels\t-11.861324798903654\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, recording, the madness last) -> (Eels, Tracks Recorded, Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower) -> Eels (16383ms)\nHow long does the Madness last?\tOh What a Beautiful Morning\t-11.87809220994361\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, release, $x) -> (Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower, Release, Oh What a Beautiful Morning) -> Oh What a Beautiful Morning (16084ms)\nHow long does the Madness last?\tAn easy recipe\t-11.986869333917564\tHow long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (An easy recipe, was even used long before, the madness) -> An easy recipe (12384ms)\nHow long does the Madness last?\tDrama\t-12.224443642617222\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, film, the madness last) -> (Drama, Films of this genre, The Last Madness) -> Drama (16432ms)\nHow long does the Madness last?\tlooks\t-12.397085644573053\tHow long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (looks, made Willen long for, the anger or madness) -> looks (12385ms)\nHow long does the Madness last?\tUrbana\t-12.462680607809938\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, place, $x) -> (From mission to madness : last son of the Mormon prophet, Place of publication, Urbana) -> Urbana (16350ms)\nHow long does the Madness last?\tScott Kelly\t-12.533239146221094\tHow long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (Scott Kelly, followed a long tradition with, Startup Madness) -> Scott Kelly (12385ms)\nHow long does the Madness last?\thand\t-12.559748403190287\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, be, $x) -> (the last gay madness, is now at, hand) -> hand (15108ms)\nHow long does the Madness last?\tMan\t-12.778567466152394\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (Man, Instance Of, influence) (man, had always done before, the agro-industrial madness) -> Man (9219ms)\nHow long does the Madness last?\tSign\t-12.909463685811966\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (Sign, become part of, the madness) -> Sign (14192ms)\nHow long does the Madness last?\tCBS\t-12.96631385171391\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (CBS, Instance Of, influence) (CBS, does carry some of, the March Madness broadcasts) -> CBS (9219ms)\nHow long does the Madness last?\tsuch madness\t-12.972475268695359\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (such madness, is to become part of, the madness) -> such madness (14192ms)\nHow long does the Madness last?\tStones\t-13.059232273350835\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (Stones, Instance Of, influence) (stones, can do, the madness constructor) -> Stones (9219ms)\nHow long does the Madness last?\tMillie Reynolds\t-13.20778915173374\tHow long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (Millie Reynolds, longs to, escape the madness) -> Millie Reynolds (12385ms)\nHow long does the Madness last?\tTwilight\t-13.20898632955193\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (Twilight, Instance Of, influence) (twilight, so did, the madness) -> Twilight (9219ms)\nHow long does the Madness last?\tRobespierre\t-13.25118361011829\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (Robespierre, was to become a victim of, the madness) -> Robespierre (14191ms)\nHow long does the Madness last?\ta lesson\t-13.456840884536968\tHow long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (a lesson, should last long past, March Madness) -> a lesson (12385ms)\nHow long does the Madness last?\tschooling\t-13.476584082263619\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (schooling, Instance Of, influence) (School, is now done for, a month?the madness) -> schooling (9725ms)\nHow long does the Madness last?\tSchool\t-13.774765958560911\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (School, Instance Of, influence) (School, is now done for, a month?the madness) -> School (9726ms)\nHow long does the Madness last?\tthe nations\t-13.897335250328464\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (the nations, become aware of, the frightful madness) -> the nations (14191ms)\nHow long does the Madness last?\tHeart\t-14.04771414483593\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (Heart, Instance Of, influence) (heart, are encouraged to do, the Maple Madness March ...a cross) -> Heart (9726ms)\nHow long does the Madness last?\tThe asylum\t-14.436984592044894\tHow long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (The asylum, has become a tangible manifestation of, the madness) -> The asylum (14191ms)\nHow long does the Madness last?\ttime\t-14.615772953918304\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (time, Instance Of, influence) (time, does, Midnight Madness start) -> time (17293ms)\nHow long does the Madness last?\tLevy\t-14.645732140209613\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Levy, Instance Of, influence) (Levy, does n?t do, pure madness) -> Levy (17293ms)\nHow long does the Madness last?\tcloud\t-15.194741833829351\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (cloud, Instance Of, influence) (Cloud, did n?t see, madness) -> cloud (17293ms)\nHow long does the Madness last?\tDavid\t-15.239776105267282\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (David, Instance Of, influence) (David, do, a Madness track) -> David (17293ms)\nHow long does the Madness last?\tChristian\t-15.255197191952607\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Christian, Instance Of, influence) (Christians, do to stop, this madness) -> Christian (17320ms)\nHow long does the Madness last?\tChesterton\t-15.29815864798514\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Chesterton, Instance Of, influence) (Chesterton, does understand, madness) -> Chesterton (17320ms)\nHow long does the Madness last?\tTrust\t-15.588703087245422\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Trust, Instance Of, influence) (trust, has nothing to do with, madness) -> Trust (17320ms)\nHow long does the Madness last?\tCloud\t-15.63434953868009\tHow long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Cloud, Instance Of, influence) (Cloud, did n?t see, madness) -> Cloud (17320ms)\nWhat university did Thomas Jefferson found?\tGreat Falls\t-6.102732531710314\tWhat university did Thomas Jefferson found? -> $x: ($x, instance of, university) (Thomas Jefferson, found, $x) -> $x: ($x, instance of, university) (Thomas Jefferson, to like, $x) -> (Great Falls, Instance Of, university location) (- Thomas Jefferson, like to do in, Great Falls) -> Great Falls (3087ms)\nWhat university did Thomas Jefferson found?\tEnglish\t-6.884303462909167\tWhat university did Thomas Jefferson found? -> $x: ($x, instance of, university) (Thomas Jefferson, found, $x) -> $x: ($x, instance of, university) (Thomas Jefferson, in reading, $x) -> (English, Instance Of, university department) (Thomas Jefferson, could read fluently in, English) -> English (5211ms)\nWhat university did Thomas Jefferson found?\tonline\t-8.970945185169143\tWhat university did Thomas Jefferson found? -> $x: ($x, instance of, university) (Thomas Jefferson, found, $x) -> $x: ($x, instance of, university) (Thomas Jefferson, easily find, $x) -> (online, Instance Of, university publication) (John Adams and Thomas Jefferson, can be easily found, online) -> online (3510ms)\nWhen did the Chernobyl nuclear accident occur?\tFriday\t-1.0777149940244959\tWhen did the Chernobyl nuclear accident occur? -> $x: (the Chernobyl nuclear accident, did occur on, $x) -> $x: (chernobyl nuclear accident, occur on, $x) -> (the Chernobyl nuclear plant accident, occurred on, Friday) -> Friday (1482ms)\nWhen did the Chernobyl nuclear accident occur?\tBelarus\t-2.7636860658351674\tWhen did the Chernobyl nuclear accident occur? -> $x: (the Chernobyl nuclear accident, did occur in, $x) -> $x: ($x, be affect by, the Chernobyl nuclear accident) -> (Belarus, was badly affected by, the Chernobyl nuclear accident) -> Belarus (1571ms)\nWhen did the Chernobyl nuclear accident occur?\t18 years\t-7.191186456563631\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> what do the chernobyl nuclear accident occur ? -> $x: (the chernobyl nuclear accident, occur, $x) -> (the Chernobyl nuclear accident, occurred, 18 years) -> 18 years (3194ms)\nWhen did the Chernobyl nuclear accident occur?\tcase\t-8.847091579199219\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> (accident at the Chernobyl nuclear power station, Instance Of, case) -> case (3533ms)\nWhen did the Chernobyl nuclear accident occur?\tserious occurrence\t-8.92146102777919\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> (accident at the Chernobyl nuclear power station, Instance Of, serious occurrence) -> serious occurrence (3533ms)\nWhen did the Chernobyl nuclear accident occur?\tevent\t-10.352548668667131\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, event) -> event (7942ms)\nWhen did the Chernobyl nuclear accident occur?\ttragedy\t-10.43851602991609\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, tragedy) -> tragedy (7942ms)\nWhen did the Chernobyl nuclear accident occur?\tincident\t-10.484752212920021\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, incident) -> incident (7942ms)\nWhen did the Chernobyl nuclear accident occur?\ttopic\t-10.503957841040075\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, topic) -> topic (7942ms)\nWhen did the Chernobyl nuclear accident occur?\tenvironmental disaster\t-10.505844156837222\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, environmental disaster) -> environmental disaster (7942ms)\nWhen did the Chernobyl nuclear accident occur?\tcatastrophic event\t-10.525564590456874\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, catastrophic event) -> catastrophic event (7972ms)\nWhen did the Chernobyl nuclear accident occur?\tissue\t-10.555563047326967\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, issue) -> issue (7972ms)\nWhen did the Chernobyl nuclear accident occur?\tenvironmental catastrophe\t-10.576808667436973\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, environmental catastrophe) -> environmental catastrophe (7972ms)\nWhen did the Chernobyl nuclear accident occur?\tinternational incident\t-10.577028307946058\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, international incident) -> international incident (7972ms)\nWhen did the Chernobyl nuclear accident occur?\twell-publicized event\t-10.58355650788044\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, well-publicized event) -> well-publicized event (7972ms)\nWhen did the Chernobyl nuclear accident occur?\tlarge-scale disaster\t-10.585841377857474\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, large-scale disaster) -> large-scale disaster (7972ms)\nWhen did the Chernobyl nuclear accident occur?\thuman catastrophe\t-10.613747820778316\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, human catastrophe) -> human catastrophe (8001ms)\nWhen did the Chernobyl nuclear accident occur?\tethical matter\t-10.615444279756543\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, ethical matter) -> ethical matter (8001ms)\nWhen did the Chernobyl nuclear accident occur?\tcontroversial event\t-10.620453417783116\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, controversial event) -> controversial event (8001ms)\nWhen did the Chernobyl nuclear accident occur?\tearth-shattering event\t-10.70386578554622\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (nuclear accident at Chernobyl, Instance Of, earth-shattering event) -> earth-shattering event (8001ms)\nWhen did the Chernobyl nuclear accident occur?\tdramatic environmental disaster\t-10.707632078943362\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, dramatic environmental disaster) -> dramatic environmental disaster (8001ms)\nWhen did the Chernobyl nuclear accident occur?\tlarge scale event\t-10.7311033925602\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, large scale event) -> large scale event (8001ms)\nWhen did the Chernobyl nuclear accident occur?\tbig disaster\t-10.737936671636932\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (nuclear accident at Chernobyl, Instance Of, big disaster) -> big disaster (8001ms)\nWhen did the Chernobyl nuclear accident occur?\textreme and typical instance\t-10.790098720740842\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (nuclear accident in Chernobyl, Instance Of, extreme and typical instance) -> extreme and typical instance (8031ms)\nWhen did the Chernobyl nuclear accident occur?\tsmall and large-scale disaster\t-10.790098720740842\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, small and large-scale disaster) -> small and large-scale disaster (8030ms)\nWhen did the Chernobyl nuclear accident occur?\tman-made disaster\t-10.816939931832529\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Soviet nuclear accident at Chernobyl, Instance Of, man-made disaster) -> man-made disaster (8030ms)\nWhen did the Chernobyl nuclear accident occur?\tradiological incident\t-10.860784413710109\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (1986 nuclear reactor accident at Chernobyl, Instance Of, radiological incident) -> radiological incident (8030ms)\nWhen did the Chernobyl nuclear accident occur?\tman-made environmental disaster\t-10.86900994624028\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl Nuclear Power Plant accident, Instance Of, man-made environmental disaster) -> man-made environmental disaster (8030ms)\nWhen did the Chernobyl nuclear accident occur?\timportant subject\t-10.886783372897606\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (West Environmental Issues Chernobyl Nuclear Accident, Instance Of, important subject) -> important subject (8030ms)\nWhen did the Chernobyl nuclear accident occur?\tdisaster\t-10.913719693394317\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (nuclear plant accident at Chernobyl m Russia, Instance Of, disaster) -> disaster (8059ms)\nWhen did the Chernobyl nuclear accident occur?\tcatastrophic radiological incident\t-10.922045347616807\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (1986 nuclear reactor accident at Chernobyl, Instance Of, catastrophic radiological incident) -> catastrophic radiological incident (8059ms)\nWhen did the Chernobyl nuclear accident occur?\tUkraine\t-11.10559846127845\tWhen did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> what do the chernobyl nuclear accident occur ? -> $x: (the chernobyl nuclear accident, occur, $x) -> $x: (the chernobyl nuclear accident, take place, $x) -> (the Chernobyl nuclear accident, took place in, Ukraine) -> Ukraine (8145ms)\nWhere is the LPGA headquartered?\tDaytona Beach\t-3.1250497756313234\tWhere is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> (The LPGA, is headquartered in, Daytona Beach) -> Daytona Beach (1544ms)\nWhere is the LPGA headquartered?\tLas Vegas\t-5.907475218282434\tWhere is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (the LPGA, relocate to, $x) -> (the LPGA Takefuji Classic, relocated to, Las Vegas) -> Las Vegas (3216ms)\nWhere is the LPGA headquartered?\tthe Daytona Beach\t-6.778215903869885\tWhere is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (the LPGA, be locate in, $x) -> (the LPGA, is located in, the Daytona Beach) -> the Daytona Beach (3216ms)\nWhere is the LPGA headquartered?\tProspector\t-6.81461336506875\tWhere is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: ($x, be home of, lpga) -> (Prospector, was home of, the LPGA Safeway International) -> Prospector (3970ms)\nWhere is the LPGA headquartered?\tRivertowne\t-7.357366733945575\tWhere is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: ($x, be home of, lpga) -> (Rivertowne, is home of, the LPGA Ginn Tribute) -> Rivertowne (3970ms)\nWhere is the LPGA headquartered?\tCalifornia\t-8.337916021490301\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, are in, California) -> California (7999ms)\nWhere is the LPGA headquartered?\tJapan\t-8.43865002064543\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was in, Japan) -> Japan (8000ms)\nWhere is the LPGA headquartered?\tThailand\t-8.443071005353207\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is in, Thailand) -> Thailand (7999ms)\nWhere is the LPGA headquartered?\tHawaii\t-8.456890514914186\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was in, Hawaii) -> Hawaii (7999ms)\nWhere is the LPGA headquartered?\tRookie\t-8.503261039289455\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was selected, Rookie) -> Rookie (7999ms)\nWhere is the LPGA headquartered?\tTseng\t-8.729716494697517\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Tseng, was, the LPGA) -> Tseng (7999ms)\nWhere is the LPGA headquartered?\tNatalie Gulbis\t-8.946647592816907\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Natalie Gulbis, is, the LPGA) -> Natalie Gulbis (7999ms)\nWhere is the LPGA headquartered?\tLawless\t-8.948622673239257\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Lawless, is giving, the LPGA) -> Lawless (8095ms)\nWhere is the LPGA headquartered?\tRolex\t-8.94962850385427\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Rolex, has been a longtime supporter of, the LPGA) -> Rolex (8095ms)\nWhere is the LPGA headquartered?\tTerry\t-9.015913899121513\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Terry, is one of, the LPGA) -> Terry (8095ms)\nWhere is the LPGA headquartered?\tDuramed\t-9.082391688606277\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is losing, Duramed) -> Duramed (8095ms)\nWhere is the LPGA headquartered?\tDelasin\t-9.105380798546264\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Delasin, was, the LPGA Rookie) -> Delasin (8095ms)\nWhere is the LPGA headquartered?\tSouth Korea\t-9.219637187516453\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was in, South Korea) -> South Korea (8095ms)\nWhere is the LPGA headquartered?\tSmith\t-9.27282326299449\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Smith, was president of, the LPGA) -> Smith (8095ms)\nWhere is the LPGA headquartered?\tSingapore\t-9.306159016289895\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was last seen a month ago in, Singapore) -> Singapore (8165ms)\nWhere is the LPGA headquartered?\tWhitworth\t-9.306815019647523\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Whitworth, was president of, the LPGA) -> Whitworth (8165ms)\nWhere is the LPGA headquartered?\tSouth Florida\t-9.323650053284565\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (South Florida, was normal for, the LPGA) -> South Florida (8165ms)\nWhere is the LPGA headquartered?\tStrudwick\t-9.335109300696383\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Strudwick, was, the 1993 LPGA Rookie) -> Strudwick (8165ms)\nWhere is the LPGA headquartered?\tthe PGA\t-9.358491393956355\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is the same as, the PGA) -> the PGA (8165ms)\nWhere is the LPGA headquartered?\tJamie Farr\t-9.410149739777586\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Jamie Farr, has been hosting, the LPGA) -> Jamie Farr (8165ms)\nWhere is the LPGA headquartered?\tThe River\t-9.49966049802886\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The River, is currently host to, the LPGA) -> The River (8165ms)\nWhere is the LPGA headquartered?\tPaula\t-9.555219148791025\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Paula, is the sexiest woman on, the lpga) -> Paula (8227ms)\nWhere is the LPGA headquartered?\tTV\t-9.560762415313816\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is on, TV) -> TV (8227ms)\nWhere is the LPGA headquartered?\tArpin\t-9.576565102305496\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Arpin, is the official mover of, the LPGA) -> Arpin (8227ms)\nWhere is the LPGA headquartered?\tway\t-9.5877814134546\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, way) -> way (8227ms)\nWhere is the LPGA headquartered?\tPatty Berg\t-9.621364376887168\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Patty Berg, was, the LPGA?s youngest) -> Patty Berg (8227ms)\nWhere is the LPGA headquartered?\tCarolyn Bivens\t-9.794411420252754\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Carolyn Bivens, is running, the LPGA) -> Carolyn Bivens (8227ms)\nWhere is the LPGA headquartered?\tAnnika Sorenstam\t-9.857004067611381\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Annika Sorenstam, may still be, the LPGA) -> Annika Sorenstam (8334ms)\nWhere is the LPGA headquartered?\tthe natural\t-9.873667739765315\tWhere is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: ($x, be home of, lpga) -> (the natural, is the original home of, LPGA star Dawn Coe-Jones) -> the natural (3970ms)\nWhere is the LPGA headquartered?\tok\t-10.010800216299394\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, might be, ok) -> ok (8334ms)\nWhere is the LPGA headquartered?\tWebb\t-10.014063664525688\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Webb, is the only player to win, the LPGA) -> Webb (8334ms)\nWhere is the LPGA headquartered?\tOchoa\t-10.023860512538675\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Ochoa, was named, the LPGA?s Player) -> Ochoa (8334ms)\nWhere is the LPGA headquartered?\tthe DFT\t-10.044391383796642\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the DFT, is the developmental tour of, the LPGA.) -> the DFT (8334ms)\nWhere is the LPGA headquartered?\tZaharias\t-10.048782288942604\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Zaharias, was a co-founder of, the LPGA.) -> Zaharias (8334ms)\nWhere is the LPGA headquartered?\tthe Rockies\t-10.082749284574112\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the Rockies, is, the evolving LPGA status) -> the Rockies (8409ms)\nWhere is the LPGA headquartered?\tLynn\t-10.089712444570596\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Lynn, has been a member of, the LPGA) -> Lynn (8408ms)\nWhere is the LPGA headquartered?\t?CME Group\t-10.116515234248569\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (?CME Group, has been a friend of, the LPGA) -> ?CME Group (8408ms)\nWhere is the LPGA headquartered?\tMagnolia Grove\t-10.126641718182965\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Magnolia Grove, will be host to, the LPGA) -> Magnolia Grove (8409ms)\nWhere is the LPGA headquartered?\tlong-drive golf\t-10.12682999539738\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (long-drive golf, is suing, the LPGA) -> long-drive golf (8408ms)\nWhere is the LPGA headquartered?\tdecent shape\t-10.135309166459352\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is in, decent shape) -> decent shape (8408ms)\nWhere is the LPGA headquartered?\tprofessional golf\t-10.156529903597145\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is to, professional golf) -> professional golf (8408ms)\nWhere is the LPGA headquartered?\tneed\t-10.15670995135479\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is in, need) -> need (8545ms)\nWhere is the LPGA headquartered?\ta bit\t-10.165863860323089\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is in, a bit) -> a bit (8545ms)\nWhere is the LPGA headquartered?\tfive years\t-10.169728289593223\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (five years, is suing, the LPGA) -> five years (8545ms)\nWhere is the LPGA headquartered?\tfive majors\t-10.244010052351568\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, will be playing, five majors) -> five majors (8545ms)\nWhere is the LPGA headquartered?\tThe ADT\t-10.281137199093354\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The ADT, is, the only LPGA tournament) -> The ADT (8545ms)\nWhere is the LPGA headquartered?\ta great value\t-10.28915955023507\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, a great value) -> a great value (8545ms)\nWhere is the LPGA headquartered?\ta considerably bigger stage\t-10.322436607976442\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, a considerably bigger stage) -> a considerably bigger stage (8545ms)\nWhere is the LPGA headquartered?\tMorgan Pressel\t-10.32409923508299\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Morgan Pressel, wants to be a full-fledged member of, the LPGA) -> Morgan Pressel (8545ms)\nWhere is the LPGA headquartered?\tthree tour stops\t-10.347194196123212\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is cutting, three tour stops) -> three tour stops (8628ms)\nWhere is the LPGA headquartered?\ta not-for-profit organization\t-10.349285016044062\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, a not-for-profit organization) -> a not-for-profit organization (8628ms)\nWhere is the LPGA headquartered?\ta buffet table\t-10.359016408407804\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is n?t, a buffet table) -> a buffet table (8628ms)\nWhere is the LPGA headquartered?\tthe Year\t-10.359895410964105\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the Year, was recognized during, the LPGA) -> the Year (8628ms)\nWhere is the LPGA headquartered?\tNavistar LPGA Classic Lexi Thompson\t-10.402406637211742\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Navistar LPGA Classic Lexi Thompson, is, the LPGA) -> Navistar LPGA Classic Lexi Thompson (8628ms)\nWhere is the LPGA headquartered?\tlast weekend\t-10.410230100126894\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was off, last weekend) -> last weekend (8629ms)\nWhere is the LPGA headquartered?\ta global tour\t-10.417368264867513\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, a global tour) -> a global tour (8628ms)\nWhere is the LPGA headquartered?\tany discussions\t-10.421958737064726\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was privy to, any discussions) -> any discussions (8628ms)\nWhere is the LPGA headquartered?\tupstaged three times zones\t-10.429360017343836\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was, upstaged three times zones) -> upstaged three times zones (8703ms)\nWhere is the LPGA headquartered?\tThe Title Sponsorship\t-10.436890381175163\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The Title Sponsorship, will be giving, the LPGA) -> The Title Sponsorship (8703ms)\nWhere is the LPGA headquartered?\tthe Swedish Match Play champion\t-10.48103571282798\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was, the Swedish Match Play champion) -> the Swedish Match Play champion (8703ms)\nWhere is the LPGA headquartered?\tthe West Coast\t-10.487219886493156\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was on, the West Coast) -> the West Coast (8702ms)\nWhere is the LPGA headquartered?\tbrighter times\t-10.487289638465207\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (brighter times, are ahead for, the LPGA) -> brighter times (8703ms)\nWhere is the LPGA headquartered?\ta transgender woman\t-10.50055259258854\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (a transgender woman, is suing, the LPGA) -> a transgender woman (8702ms)\nWhere is the LPGA headquartered?\tsuch a tough Tour\t-10.51463521768801\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, such a tough Tour) -> such a tough Tour (8703ms)\nWhere is the LPGA headquartered?\tthe Symetra Tour\t-10.522657568829723\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is now called, the Symetra Tour) -> the Symetra Tour (8703ms)\nWhere is the LPGA headquartered?\tstrong financial condition\t-10.530615351844183\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is in, strong financial condition) -> strong financial condition (8799ms)\nWhere is the LPGA headquartered?\tLeta Lindley\t-10.534152150150865\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Leta Lindley, is available through, the LPGA) -> Leta Lindley (8799ms)\nWhere is the LPGA headquartered?\tWE TOO\t-10.540927831619593\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (WE TOO, are sooo excited for, the LPGA) -> WE TOO (8799ms)\nWhere is the LPGA headquartered?\tWie\t-10.541161125934677\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Wie, was expected to dominate, the LPGA) -> Wie (8799ms)\nWhere is the LPGA headquartered?\tbriefing energy policymakers\t-10.541225694061932\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, will be, briefing energy policymakers) -> briefing energy policymakers (8799ms)\nWhere is the LPGA headquartered?\tthe Sybase Match Play Championship\t-10.542994119566421\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is playing, the Sybase Match Play Championship) -> the Sybase Match Play Championship (8799ms)\nWhere is the LPGA headquartered?\tthe Board\t-10.5465309178731\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is the outgoing Chairman of, the Board) -> the Board (8799ms)\nWhere is the LPGA headquartered?\tbankruptcy\t-10.56560811200754\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, could be close to, bankruptcy) -> bankruptcy (8799ms)\nWhere is the LPGA headquartered?\tteaching teachers\t-10.57711538025795\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is very good at, teaching teachers) -> teaching teachers (8855ms)\nWhere is the LPGA headquartered?\tcrisis mode\t-10.579246236332034\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been in, crisis mode) -> crisis mode (8855ms)\nWhere is the LPGA headquartered?\tAmerican stars\t-10.587962989370912\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is starved for, American stars) -> American stars (8855ms)\nWhere is the LPGA headquartered?\tThe Handa Cup\t-10.603119585375412\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The Handa Cup, was formed by, the LPGA) -> The Handa Cup (8855ms)\nWhere is the LPGA headquartered?\tthe LPG industry\t-10.625810832873059\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is the national body for, the LPG industry) -> the LPG industry (8855ms)\nWhere is the LPGA headquartered?\tTorrey Pines South\t-10.632298105527664\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is playing, Torrey Pines South) -> Torrey Pines South (8855ms)\nWhere is the LPGA headquartered?\tforeign players\t-10.66029457683648\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been dominated by, foreign players) -> foreign players (8855ms)\nWhere is the LPGA headquartered?\tA war\t-10.667665983189886\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (A war, is raging on, the LPGA) -> A war (8916ms)\nWhere is the LPGA headquartered?\tconjunction\t-10.678028652134559\tWhere is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: (lpga, set up in, $x) -> (LPGA association Member, set up in, conjunction) -> conjunction (3876ms)\nWhere is the LPGA headquartered?\tonly foreign players\t-10.688588857885339\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (only foreign players, were winning on, the LPGA) -> only foreign players (8916ms)\nWhere is the LPGA headquartered?\tan upswing\t-10.690292715262572\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, appears to be on, an upswing) -> an upswing (8916ms)\nWhere is the LPGA headquartered?\tbeautiful Half Moon Bay\t-10.693009895295413\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is in, beautiful Half Moon Bay) -> beautiful Half Moon Bay (8916ms)\nWhere is the LPGA headquartered?\tKerr\t-10.710504244611673\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Kerr, is one of, the LPGA?s most dominating stars) -> Kerr (8916ms)\nWhere is the LPGA headquartered?\tjunior golf\t-10.730146198462123\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been committed to, junior golf) -> junior golf (8916ms)\nWhere is the LPGA headquartered?\tTen-year teacher\t-10.74252496618436\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Ten-year teacher, is involved nationally with, the LPGA) -> Ten-year teacher (8916ms)\nWhere is the LPGA headquartered?\tAsian women\t-10.771703486336612\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Asian women, are starting to dominate, the LPGA) -> Asian women (8977ms)\nWhere is the LPGA headquartered?\tSheary and everyone\t-10.782751247643096\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Sheary and everyone, else is still waiting for, the LPGA) -> Sheary and everyone (8977ms)\nWhere is the LPGA headquartered?\t?We?re\t-10.784082254058848\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (?We?re, thrilled to be partnering with, the LPGA) -> ?We?re (8977ms)\nWhere is the LPGA headquartered?\tWomen?s Work\t-10.787857611057925\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Women?s Work, is a loving appreciation of, the LPGA) -> Women?s Work (8977ms)\nWhere is the LPGA headquartered?\tWomen?s Work\t-10.787857611057925\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Women?s Work, is a loving appreciation of, the LPGA) -> Women?s Work (8977ms)\nWhere is the LPGA headquartered?\t19 organisations\t-10.788557103081764\tWhere is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: (lpga, expand to, $x) -> (LPGA, has been expanded to, 19 organisations) -> 19 organisations (3748ms)\nWhere is the LPGA headquartered?\tThe Red course\t-10.819563526739083\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The Red course, is also played host to, the LPGA) -> The Red course (8977ms)\nWhere is the LPGA headquartered?\ttrouble\t-10.844471734591778\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is in, trouble) -> trouble (8977ms)\nWhere is the LPGA headquartered?\ta new identity\t-10.846214651362429\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is trying to forge, a new identity) -> a new identity (8977ms)\nWhere is the LPGA headquartered?\tgay women\t-10.863014456494739\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, has always been associated with, gay women) -> gay women (9054ms)\nWhere is the LPGA headquartered?\tthe Phoenix area\t-10.868319627603613\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been a part of, the Phoenix area) -> the Phoenix area (9054ms)\nWhere is the LPGA headquartered?\t?My idea\t-10.875885158825069\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (?My idea, was first to play on, the LPGA) -> ?My idea (9054ms)\nWhere is the LPGA headquartered?\tFutcher and Shin\t-10.910895341445988\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is a new feeling for, Futcher and Shin) -> Futcher and Shin (9054ms)\nWhere is the LPGA headquartered?\tleast one United States LPGA event\t-10.920293866299188\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is losing at, least one United States LPGA event) -> least one United States LPGA event (9054ms)\nWhere is the LPGA headquartered?\tKINGSMILL\t-10.923776096384216\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the @lpga, is coming BACK TO, KINGSMILL) -> KINGSMILL (9054ms)\nWhere is the LPGA headquartered?\tthe forum\t-10.945219893204477\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was, the forum) -> the forum (9054ms)\nWhere is the LPGA headquartered?\ta resurging\t-10.945269297383335\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, a resurging) -> a resurging (9054ms)\nWhere is the LPGA headquartered?\ta business\t-10.965605848120031\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, a business) -> a business (9159ms)\nWhere is the LPGA headquartered?\tpoints\t-10.975295258638385\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (points, are doubled at, the LPGA) -> points (9159ms)\nWhere is the LPGA headquartered?\tgreat players\t-10.981695770302279\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is a special organization comprised of, great players) -> great players (9159ms)\nWhere is the LPGA headquartered?\tWie?s success\t-10.987000941411154\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Wie?s success, is, the LPGA?s success) -> Wie?s success (9159ms)\nWhere is the LPGA headquartered?\ta dream\t-11.002087250512846\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, has been, a dream) -> a dream (9159ms)\nWhere is the LPGA headquartered?\twinner?s check\t-11.015732694251044\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (winner?s check, is huge for, the LPGA.) -> winner?s check (9159ms)\nWhere is the LPGA headquartered?\tlouder\t-11.025372068809773\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, are about to get, louder) -> louder (9159ms)\nWhere is the LPGA headquartered?\tShe?ll\t-11.046878197301911\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (She?ll, be missed on, the LPGA.) -> She?ll (9159ms)\nWhere is the LPGA headquartered?\tFellow teen phenom Morgan Pressel\t-11.093340932252008\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Fellow teen phenom Morgan Pressel, is still winless on, the LPGA) -> Fellow teen phenom Morgan Pressel (9278ms)\nWhere is the LPGA headquartered?\tpartner\t-11.094661951152975\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is proud to, partner) -> partner (9277ms)\nWhere is the LPGA headquartered?\tdire straits\t-11.107577750289657\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is in, dire straits) -> dire straits (9277ms)\nWhere is the LPGA headquartered?\ttwo\t-11.140563614570205\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (two, could be very interesting for, the LPGA?) -> two (9278ms)\nWhere is the LPGA headquartered?\t?This one\t-11.17488830183793\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (?This one, is the face of, the LPGA.) -> ?This one (9278ms)\nWhere is the LPGA headquartered?\taction\t-11.18580411459076\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is finally back in, action) -> action (9278ms)\nWhere is the LPGA headquartered?\tthe wedding date\t-11.207314662957897\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, the wedding date) -> the wedding date (9277ms)\nWhere is the LPGA headquartered?\tThe Legends Tour\t-11.211791409907333\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The Legends Tour, is the official senior tour of, the LPGA.) -> The Legends Tour (9277ms)\nWhere is the LPGA headquartered?\tTGF\t-11.233245342142434\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (?The LPGA, will be working with, TGF) -> TGF (9413ms)\nWhere is the LPGA headquartered?\ta member\t-11.236171593066258\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (a member, may be key to, the LPGA) -> a member (9413ms)\nWhere is the LPGA headquartered?\twomen\t-11.237152546895437\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is far more dominant in, women) -> women (9413ms)\nWhere is the LPGA headquartered?\ta great person and golfer\t-11.243557821917843\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA?s star, is, a great person and golfer) -> a great person and golfer (9413ms)\nWhere is the LPGA headquartered?\tTeenager Lexi Thompson\t-11.276765127687165\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Teenager Lexi Thompson, is the new face of, the LPGA.) -> Teenager Lexi Thompson (9413ms)\nWhere is the LPGA headquartered?\tI-95\t-11.27763495241998\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> which state be the lpga locate ? -> $x: ($x, instance of, state) (the lpga, locate, $x) -> (I-95, Instance Of, state's interstate roadway) (The Holiday Inn Daytona Bch Lpga Hotel, is located off of, I-95) -> I-95 (3628ms)\nWhere is the LPGA headquartered?\tbest\t-11.318433761228682\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, has been mediocre at, best) -> best (9412ms)\nWhere is the LPGA headquartered?\tI95\t-11.335225726692572\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> which state be the lpga locate ? -> $x: ($x, instance of, state) (the lpga, locate, $x) -> (I95, Instance Of, state highway) (The Holiday Inn Daytona Bch Lpga Hotel, is located off of, I-95) -> I95 (3628ms)\nWhere is the LPGA headquartered?\tthe Evian Masters\t-11.361856757176572\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the Evian Masters, is currently sanctioned by, the LPGA) -> the Evian Masters (9413ms)\nWhere is the LPGA headquartered?\tapplications\t-11.373189487801545\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (applications, have been received by, the LPGA) -> applications (9474ms)\nWhere is the LPGA headquartered?\t13\t-11.409788919182702\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is listing, 13) -> 13 (9473ms)\nWhere is the LPGA headquartered?\ta schedule\t-11.413895325885353\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, will be treated to, a schedule) -> a schedule (9474ms)\nWhere is the LPGA headquartered?\ta loss\t-11.466554943287978\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been reeling from, a loss) -> a loss (9474ms)\nWhere is the LPGA headquartered?\ta defendent\t-11.594271670610032\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is also named as, a defendent) -> a defendent (9474ms)\nWhere is the LPGA headquartered?\tback in action\t-11.73759388826903\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, back in action) -> back in action (9474ms)\nWhere is the LPGA headquartered?\tthe transsexual\t-11.761687776830247\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the transsexual, is suing, the LPGA) -> the transsexual (9474ms)\nWhere is the LPGA headquartered?\tthe guidance\t-11.802068414730316\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is under, the guidance) -> the guidance (9637ms)\nWhere is the LPGA headquartered?\tthe lawsuit\t-11.80307434181867\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the lawsuit, is to force, the LPGA) -> the lawsuit (9637ms)\nWhere is the LPGA headquartered?\ttoils\t-11.818286504084995\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> who head the lpga ? -> $x: ($x, head, the lpga) -> (toils, is likely headed for, the LPGA Tour) -> toils (6853ms)\nWhere is the LPGA headquartered?\tthe air\t-11.88629512502875\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is off, the air) -> the air (9637ms)\nWhere is the LPGA headquartered?\tconservative\t-11.895836602829714\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was, conservative) -> conservative (9637ms)\nWhere is the LPGA headquartered?\ta global  tour\t-11.914020117424267\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, a global  tour) -> a global  tour (9637ms)\nWhere is the LPGA headquartered?\tthe pack\t-11.916422399709354\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the pack, is, the LPGA Tour) -> the pack (9637ms)\nWhere is the LPGA headquartered?\tthe field\t-12.028552582147077\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is also in, the field) -> the field (9637ms)\nWhere is the LPGA headquartered?\tthe verge\t-12.034020719421752\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is on, the verge) -> the verge (9746ms)\nWhere is the LPGA headquartered?\t32 players\t-12.065770552374392\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (32 players, was, the final LPGA event) -> 32 players (9746ms)\nWhere is the LPGA headquartered?\tThe company\t-12.139961544349504\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The company, was to sponsor, the LPGA) -> The company (9746ms)\nWhere is the LPGA headquartered?\tthe best\t-12.167441443671612\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, will prove to be, the best) -> the best (9746ms)\nWhere is the LPGA headquartered?\t13 founders\t-12.25822780237897\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was officially chartered with, 13 founders) -> 13 founders (9746ms)\nWhere is the LPGA headquartered?\tMarch 18-20\t-12.266184521830292\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (March 18-20, is, the LPGA) -> March 18-20 (9746ms)\nWhere is the LPGA headquartered?\tthe big news\t-12.278780548497398\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the big news, was on, the LPGA) -> the big news (9746ms)\nWhere is the LPGA headquartered?\tThe tournament\t-12.292927741724125\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The tournament, was, the Navistar LPGA Classic) -> The tournament (9796ms)\nWhere is the LPGA headquartered?\tThe media\t-12.333149063831318\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The media, is working hard to promote, the LPGA.) -> The media (9796ms)\nWhere is the LPGA headquartered?\tthe South?s 18 holes\t-12.350422958938193\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is playing all of, the South?s 18 holes) -> the South?s 18 holes (9796ms)\nWhere is the LPGA headquartered?\tThe 23-year-old Korean\t-12.380360449114862\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The 23-year-old Korean, is ranked No. 4 in, the LPGA) -> The 23-year-old Korean (9796ms)\nWhere is the LPGA headquartered?\tthe first three events\t-12.453559096217955\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, were eligible for, the first three events) -> the first three events (9796ms)\nWhere is the LPGA headquartered?\tThe ever popular LPGA International\t-12.455427204537534\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The ever popular LPGA International, is home to, the LPGA) -> The ever popular LPGA International (9796ms)\nWhere is the LPGA headquartered?\tthe finish\t-12.483040743189857\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, should be an exciting race to, the finish) -> the finish (9796ms)\nWhere is the LPGA headquartered?\tThe eight-stroke comeback\t-12.483984233340898\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The eight-stroke comeback, was the largest on, the LPGA) -> The eight-stroke comeback (10025ms)\nWhere is the LPGA headquartered?\tfinally\t-12.61931036949485\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is back in action, finally) -> finally (10025ms)\nWhere is the LPGA headquartered?\t1989\t-12.627392058192648\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> where be the lpga s headquarters ? -> $x: (the lpga, headquarters, $x) -> (The LPGA, moved its headquarters here in, 1989) -> 1989 (3993ms)\nWhere is the LPGA headquartered?\tthe new tournament\t-12.837190291409796\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the new tournament, would be a major milestone for, the LPGA.) -> the new tournament (10130ms)\nWhere is the LPGA headquartered?\t1950\t-12.840312418903979\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was established in, 1950) -> 1950 (10130ms)\nWhere is the LPGA headquartered?\tthe board\t-12.902394500635793\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the board, had been working with, the LPGA.) -> the board (10130ms)\nWhere is the LPGA headquartered?\tThe same\t-12.945426784098508\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The same, is true for, the LPGA.) -> The same (10201ms)\nWhere is the LPGA headquartered?\tthe 1990 Patty Berg Award\t-13.008693657200439\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the 1990 Patty Berg Award, was instituted by, the LPGA) -> the 1990 Patty Berg Award (10201ms)\nWhere is the LPGA headquartered?\tthe future\t-13.080669541943585\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the future, is definitely looking up for, the LPGA.) -> the future (10201ms)\nWhere is the LPGA headquartered?\tthe last few months\t-13.084273658544145\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the last few months, have been very tough for, the LPGA.) -> the last few months (10201ms)\nWhere is the LPGA headquartered?\tthe June 16th EWGA Web Caf? Lorena Ochoa\t-13.09914520538408\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the June 16th EWGA Web Caf? Lorena Ochoa, was, the LPGA) -> the June 16th EWGA Web Caf? Lorena Ochoa (10201ms)\nWhere is the LPGA headquartered?\t2009\t-13.94992280617501\tWhere is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (2009, is to be, the LPGA?s rookie) -> 2009 (10201ms)\nWhat plays did Shakespeare write?\tTitus Andronicus\t0.7262661587464818\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Titus Andronicus) -> Titus Andronicus (5144ms)\nWhat plays did Shakespeare write?\tRomeo and Juliet\t0.5640218856631465\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Romeo and Juliet) -> Romeo and Juliet (5144ms)\nWhat plays did Shakespeare write?\tAntony and Cleopatra\t0.5640218856631465\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Antony and Cleopatra) -> Antony and Cleopatra (5144ms)\nWhat plays did Shakespeare write?\tThe Taming of the Shrew\t0.49904816788331474\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, The Taming of the Shrew) -> The Taming of the Shrew (5350ms)\nWhat plays did Shakespeare write?\tA Midsummer Night's Dream\t0.49904816788331474\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, A Midsummer Night's Dream) -> A Midsummer Night's Dream (5144ms)\nWhat plays did Shakespeare write?\tThe Comedy of Errors\t0.49904816788331474\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, The Comedy of Errors) -> The Comedy of Errors (5350ms)\nWhat plays did Shakespeare write?\tThe Two Gentlemen of Verona\t0.44407040668499564\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, The Two Gentlemen of Verona) -> The Two Gentlemen of Verona (5350ms)\nWhat plays did Shakespeare write?\tMacbeth\t0.045566782109230375\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Macbeth) -> Macbeth (5350ms)\nWhat plays did Shakespeare write?\tLord Strange\t-1.6103690360076737\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare and Marlowe, wrote plays for, Lord Strange) -> Lord Strange (5821ms)\nWhat plays did Shakespeare write?\ta black and white union\t-1.778374167071881\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote a play about, a black and white union) -> a black and white union (5821ms)\nWhat plays did Shakespeare write?\tthe Elizabethan age\t-1.7963559683453314\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, the Elizabethan age) -> the Elizabethan age (5821ms)\nWhat plays did Shakespeare write?\t1599?decades\t-1.8522972142414702\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1599?decades) -> 1599?decades (5821ms)\nWhat plays did Shakespeare write?\tElizabethan\t-1.894175468591165\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, Elizabethan) -> Elizabethan (5821ms)\nWhat plays did Shakespeare write?\tEngland\t-1.9019346942114963\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, wrote his plays as, England) -> England (6573ms)\nWhat plays did Shakespeare write?\ta comedy\t-1.923294140725447\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play as, a comedy) -> a comedy (6573ms)\nWhat plays did Shakespeare write?\tunrhymed iambic pentameters\t-1.9315831149825065\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, unrhymed iambic pentameters) -> unrhymed iambic pentameters (6573ms)\nWhat plays did Shakespeare write?\tOthello and Hamlet\t-1.9632360646315943\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, was writing plays such as, Othello and Hamlet) -> Othello and Hamlet (6573ms)\nWhat plays did Shakespeare write?\ta Jew\t-1.9632360646315943\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, wrote a very different play about, a Jew) -> a Jew (6573ms)\nWhat plays did Shakespeare write?\tthe Queen?s pleasure\t-2.0445822675783782\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, is writing this play for, the Queen?s pleasure) -> the Queen?s pleasure (6573ms)\nWhat plays did Shakespeare write?\ta novelist famous\t-2.195968291410339\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (a lost Shakespeare, play written by, a novelist famous) -> a novelist famous (6603ms)\nWhat plays did Shakespeare write?\ttwo audiences\t-2.2333965643718594\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote a single play for, two audiences) -> two audiences (6603ms)\nWhat plays did Shakespeare write?\tfive or six years\t-2.319841378815428\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (?Shakespeare, had been writing plays for, five or six years) -> five or six years (6602ms)\nWhat plays did Shakespeare write?\thistorical figures\t-2.4119342589869133\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote many plays based on, historical figures) -> historical figures (6603ms)\nWhat plays did Shakespeare write?\tbe performed\t-2.4235680762681318\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays to, be performed) -> be performed (6603ms)\nWhat plays did Shakespeare write?\tago\t-2.8791810128274795\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays, ago) -> ago (6884ms)\nWhat plays did Shakespeare write?\tiambic pentameter\t-2.9579955357360594\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, iambic pentameter) -> iambic pentameter (6884ms)\nWhat plays did Shakespeare write?\tKing Lear\t-3.0792371108025054\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (King Lear, Instance Of, play) (Shakespeare, wrote, King Lear) -> King Lear (7142ms)\nWhat plays did Shakespeare write?\tTwelfth Night\t-3.098320832697277\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Twelfth Night, Instance Of, play) (Shakespeare, writes, Twelfth Night) -> Twelfth Night (7142ms)\nWhat plays did Shakespeare write?\t1597\t-3.119880991731251\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1597) -> 1597 (7142ms)\nWhat plays did Shakespeare write?\t1605\t-3.1857038804421194\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1605) -> 1605 (7218ms)\nWhat plays did Shakespeare write?\tShakespearean comedy\t-3.188247833258468\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, to write, $x) -> (Shakespearean comedy, Instance Of, play) (William Shakespeare, Series Written (or Contributed To), Shakespearean comedy) -> Shakespearean comedy (10080ms)\nWhat plays did Shakespeare write?\tenthusiasm\t-3.5176162545106724\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote plays with, enthusiasm) -> enthusiasm (7910ms)\nWhat plays did Shakespeare write?\tHamlet\t-3.5252831276947885\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Hamlet, Instance Of, play) (Shakespeare, wrote, Hamlet) -> Hamlet (7910ms)\nWhat plays did Shakespeare write?\tactors\t-3.5987787629641845\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, actors) -> actors (7910ms)\nWhat plays did Shakespeare write?\tabout 400 years ago\t-3.6751761580327873\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays, about 400 years ago) -> about 400 years ago (8035ms)\nWhat plays did Shakespeare write?\tabout 400 years\t-3.6955772768967385\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, about 400 years) -> about 400 years (8036ms)\nWhat plays did Shakespeare write?\tOthello\t-3.7090259611283125\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Othello, Instance Of, play) (Shakespeare, wrote, Othello) -> Othello (8036ms)\nWhat plays did Shakespeare write?\tthe richest era\t-3.7198857681116486\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, the richest era) -> the richest era (8454ms)\nWhat plays did Shakespeare write?\tthe mass public\t-3.7763153789182633\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote plays for, the mass public) -> the mass public (8455ms)\nWhat plays did Shakespeare write?\tTwelfth-Night\t-3.783023319988106\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Twelfth-Night, Instance Of, play) (Shakespeare, writes, Twelfth Night) -> Twelfth-Night (8454ms)\nWhat plays did Shakespeare write?\tgood pm play\t-3.8999609832952165\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (good pm play, Instance Of, play) (Shakespeare, wrote, good plays) -> good pm play (8574ms)\nWhat plays did Shakespeare write?\tRomeo and Juliette\t-3.900069862268325\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Romeo and Juliette, Instance Of, play) (Shakespeare, wrote, Romeo and Juliette) -> Romeo and Juliette (8574ms)\nWhat plays did Shakespeare write?\tThe Tempest\t-3.9041782398355385\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (The Tempest, Instance Of, play) (Shakespeare, wrote, The Tempest) -> The Tempest (8574ms)\nWhat plays did Shakespeare write?\tgood play\t-3.990595782917221\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (good play, Instance Of, play) (Shakespeare, wrote, good plays) -> good play (8574ms)\nWhat plays did Shakespeare write?\tPericles\t-3.9938720847077223\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Pericles, Instance Of, play) (Shakespeare, wrote, Pericles) -> Pericles (8575ms)\nWhat plays did Shakespeare write?\tWomen\t-4.149260777943464\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Women, Instance Of, play) (Shakespeare, wrote, women) -> Women (8645ms)\nWhat plays did Shakespeare write?\tJulius Caesar\t-4.182222456621341\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Julius Caesar, Instance Of, play) (Shakespeare, wrote in, Julius Caesar) -> Julius Caesar (9203ms)\nWhat plays did Shakespeare write?\tPoetry\t-4.192567187590093\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Poetry, Instance Of, play) (Shakespeare, wrote, poetry) -> Poetry (9203ms)\nWhat plays did Shakespeare write?\tDramatic poetry\t-4.21218005553021\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Dramatic poetry, Instance Of, play) (Shakespeare, wrote, the dramatic part) -> Dramatic poetry (9203ms)\nWhat plays did Shakespeare write?\tverse\t-4.245729535583075\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote this play entirely in, verse) -> verse (9406ms)\nWhat plays did Shakespeare write?\tHenry VI\t-4.305083911556633\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, pen, $x) -> (Henry VI, Instance Of, play) (Shakespeare, penned, Henry VI) -> Henry VI (9648ms)\nWhat plays did Shakespeare write?\tperformance\t-4.317612655532296\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, performance) -> performance (9649ms)\nWhat plays did Shakespeare write?\tHenry VIII\t-4.401749625913214\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Henry VIII, Instance Of, play) (Shakespeare, writes in, Henry VIII) -> Henry VIII (10080ms)\nWhat plays did Shakespeare write?\tTroilus and Cressida\t-4.461242272890784\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Troilus and Cressida, Instance Of, play) (Shakespeare, wrote in, Troilus and Cressida) -> Troilus and Cressida (10130ms)\nWhat plays did Shakespeare write?\trime\t-4.480106504031736\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, writes his plays sometimes in, rime) -> rime (10130ms)\nWhat plays did Shakespeare write?\tKing John\t-4.564387923276039\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (King John, Instance Of, play) (Shakespeare, wrote in, King John) -> King John (10213ms)\nWhat plays did Shakespeare write?\tMuch Ado\t-4.601705018339971\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Much Ado, Instance Of, play) (Shakespeare, wrote in, Much Ado) -> Much Ado (11116ms)\nWhat plays did Shakespeare write?\tthe time\t-4.605471079455384\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote this play, the time) -> the time (11116ms)\nWhat plays did Shakespeare write?\tHenry V\t-4.610773975842333\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, use the term, $x) -> (Henry V, Instance Of, play) (William Shakespeare, used the term in, ? Henry V) -> Henry V (11116ms)\nWhat plays did Shakespeare write?\ta number\t-4.7308158691135525\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: (plays, element, $x) (Shakespeare, write, $x) -> (The play, contains elements from, a number) (Shakespeare, teaches fiction writing at, a number) -> a number (14416ms)\nWhat plays did Shakespeare write?\tA play\t-4.741547908367425\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, modelling, plays) (Shakespeare, write, $x) -> (A play, is modelled according to, a theatrical play) (Shakespeare, actually wrote, a play) -> A play (17819ms)\nWhat plays did Shakespeare write?\tShylock\t-4.761883305956534\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, do thing, $x) -> (Shylock, Instance Of, award-winning play) (Shakespeare, does the same thing in making, Shylock) -> Shylock (12556ms)\nWhat plays did Shakespeare write?\t1610\t-4.853694433489597\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare 's younger contemporaries, to write a play in, 1610) -> 1610 (12556ms)\nWhat plays did Shakespeare write?\tMeasure T\t-4.858356370727332\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, may write, $x) -> (Measure T, Instance Of, power play) (Shakespeare, may well have written, Measure) -> Measure T (12556ms)\nWhat plays did Shakespeare write?\tCymbeline\t-4.877217541088678\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Cymbeline, Instance Of, play) (Shakespeare, wrote in, Cymbeline) -> Cymbeline (12556ms)\nWhat plays did Shakespeare write?\tThe King and I\t-4.9322914945910865\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, to write, $x) -> (The King and I, Instance Of, play) (Scotland and Shakespeare, was writing to, the king) -> The King and I (14416ms)\nWhat plays did Shakespeare write?\tWORDS\t-4.93958587798673\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (WORDS, Instance Of, play) (Shakespeares, written, words) -> WORDS (14473ms)\nWhat plays did Shakespeare write?\tKing Henry VI\t-4.991371554383201\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (King Henry VI, Instance Of, play) (Shakespeare, wrote in, King Henry VI) -> King Henry VI (15487ms)\nWhat plays did Shakespeare write?\torder\t-5.064481316311256\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, writes a play in, order) -> order (16373ms)\nWhat plays did Shakespeare write?\tROMEO AND JULIET\t-5.12265759958359\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, to write, $x) -> (ROMEO AND JULIET, Instance Of, powerful play) (Shakespeare, was inspired to write, Romeo and Juliet) -> ROMEO AND JULIET (16373ms)\nWhat plays did Shakespeare write?\tRomeo\t-5.252547282913424\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, make fun, $x) -> (Romeo, Instance Of, play) (Shakespeare?s play Mercutio, makes fun of, Romeo) -> Romeo (17968ms)\nWhat plays did Shakespeare write?\tSanta\t-5.479327951701196\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, have to write, $x) -> (Santa, Instance Of, play) (Shakespeare, have written Letters to, Santa) -> Santa (18223ms)\nWhat plays did Shakespeare write?\tstill\t-5.481527365226704\tWhat plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, is writing plays, still) -> still (18223ms)\nWhat plays did Shakespeare write?\tCharacter\t-5.485226934232862\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: (plays, element, $x) (Shakespeare, write, $x) -> (every play, contains Spectacular elements as well as, Character) (Shakespeare, writes about, a character) -> Character (18222ms)\nWhat plays did Shakespeare write?\tThe Story\t-5.557689176334936\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, write about in, $x) -> (The Story, Instance Of, play) (A city Shakespeare, wrote about in, the story) -> The Story (18266ms)\nWhat plays did Shakespeare write?\tRoses\t-5.585127442804333\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, say something, $x) -> (Roses, Instance Of, play) (Shakespeare, said something about, roses) -> Roses (18266ms)\nWhat plays did Shakespeare write?\tWorms\t-5.618124251202868\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, say something, $x) -> (Worms, Instance Of, play game) (Shakespeare, says something about, worms) -> Worms (18318ms)\nWhat plays did Shakespeare write?\tENGLAND\t-5.945111790653822\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (ENGLAND, Instance Of, play) (Shakespeare, was writing in, England) -> ENGLAND (18393ms)\nWhat plays did Shakespeare write?\tMerchant of Venice\t-5.978533310756854\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Merchant of Venice, Instance Of, play) (Shakespeare, wrote in, Merchant of Venice) -> Merchant of Venice (18451ms)\nWhat plays did Shakespeare write?\tthe top\t-6.394236130404073\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, be a way of, plays) (Shakespeare, write, $x) -> (the top, is a way of, life--plays) (Shakespeare, once wrote at, the top) -> the top (18934ms)\nWhat plays did Shakespeare write?\tfarce\t-6.7572407431163715\tWhat plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: (plays, element, $x) (Shakespeare, write, $x) -> (a romantic comedy play, has strong elements of, farce) (William Shakespeare, wrote in, his farce) -> farce (19163ms)\nThe Orange Bowl is in what city?\tsunny Miami\t-9.589398708426053\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The 2009 Orange Bowl, will be held in, sunny Miami) -> sunny Miami (4689ms)\nThe Orange Bowl is in what city?\tWest Virginia\t-9.634948387255555\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (West Virginia, is in, the Orange Bowl) -> West Virginia (6523ms)\nThe Orange Bowl is in what city?\t1935\t-9.700603750120075\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Orange Bowl Committee, was created in, 1935) -> 1935 (4689ms)\nThe Orange Bowl is in what city?\tPenn State\t-9.726904932420087\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Penn State, was in, the Orange Bowl) -> Penn State (6523ms)\nThe Orange Bowl is in what city?\tdiameter\t-9.75506716394776\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The orange bowl, is 3\" in, diameter) -> diameter (4689ms)\nThe Orange Bowl is in what city?\tUC\t-9.84908376765913\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (UC, was in, the Orange Bowl) -> UC (6523ms)\nThe Orange Bowl is in what city?\tthe City\t-9.85341498002527\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Miami Orange Bowl, is a stadium in, the City) -> the City (4690ms)\nThe Orange Bowl is in what city?\tMiami?s Little Havana\t-9.915175923569144\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (the Orange Bowl, used to be in, Miami?s Little Havana) -> Miami?s Little Havana (4689ms)\nThe Orange Bowl is in what city?\tKU\t-9.925883769521457\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (KU, is in, the Orange Bowl) -> KU (6523ms)\nThe Orange Bowl is in what city?\tthe Seminoles\t-9.970689319722137\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Seminoles, are cursed in, the orange Bowl) -> the Seminoles (6523ms)\nThe Orange Bowl is in what city?\tDolphin Stadium\t-10.003749350020904\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The annual Orange Bowl game, has been played in, Dolphin Stadium) -> Dolphin Stadium (4689ms)\nThe Orange Bowl is in what city?\tplay\t-10.042412559039773\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (the Orange Bowl, is now in, play) -> play (4689ms)\nThe Orange Bowl is in what city?\tthe Tigers\t-10.086519213930048\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Tigers, were blasted in, the Orange Bowl) -> the Tigers (6523ms)\nThe Orange Bowl is in what city?\tIowa\t-10.239836325732613\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Iowa, was selected in, the 2003 Orange Bowl) -> Iowa (6523ms)\nThe Orange Bowl is in what city?\tVirginia Tech\t-10.330793117181384\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Virginia Tech, is in, the Orange Bowl) -> Virginia Tech (6523ms)\nThe Orange Bowl is in what city?\tCincinnati\t-10.356788910891508\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Cincinnati, is in, the Orange Bowl) -> Cincinnati (6611ms)\nThe Orange Bowl is in what city?\tjest\t-10.366483100002014\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> where be the orange bowl make ? -> $x: (the orange bowl, be make in, $x) -> (the 1984 Orange Bowl, is probably made in, jest) -> jest (4541ms)\nThe Orange Bowl is in what city?\tThe Hurricanes\t-10.36962240449209\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Hurricanes, are, the Orange Bowl) -> The Hurricanes (6611ms)\nThe Orange Bowl is in what city?\tthe Dons\t-10.372738171620503\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Dons, was, the Orange Bowl) -> the Dons (6611ms)\nThe Orange Bowl is in what city?\tperson\t-10.387939825076412\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (person, was in, the 2006 Orange Bowl) -> person (6611ms)\nThe Orange Bowl is in what city?\tmid 1930\t-10.392782302976203\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Orange , Sugar , & Cotton Bowl, were all formed in, mid 1930) -> mid 1930 (4713ms)\nThe Orange Bowl is in what city?\tthe Miami Hurricanes\t-10.39948327203887\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Miami Hurricanes, are leaving, the historic Orange Bowl) -> the Miami Hurricanes (6611ms)\nThe Orange Bowl is in what city?\tNo. 1\t-10.4682369313891\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (No. 1, could be playing in, the Orange Bowl) -> No. 1 (6611ms)\nThe Orange Bowl is in what city?\tPaul Posluzny\t-10.54338836052853\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Paul Posluzny, was injured in, the Orange Bowl) -> Paul Posluzny (6611ms)\nThe Orange Bowl is in what city?\tthe Alliance showcase\t-10.625828438226918\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was, the Alliance showcase) -> the Alliance showcase (7890ms)\nThe Orange Bowl is in what city?\tMiami\t-10.694603190927431\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Orange Bowl, is played in, Miami) -> Miami (4713ms)\nThe Orange Bowl is in what city?\ta major bowl\t-10.717078875204477\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (a major bowl, was, the Orange Bowl) -> a major bowl (6611ms)\nThe Orange Bowl is in what city?\tStep 3\t-10.71806279712296\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Step 3, is, the orange bowl) -> Step 3 (6644ms)\nThe Orange Bowl is in what city?\tThe Fiesta Bowl\t-10.732869224856717\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Fiesta Bowl, is, the new Orange Bowl) -> The Fiesta Bowl (6644ms)\nThe Orange Bowl is in what city?\tthe Orange Bowl game\t-10.764746519192073\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Orange Bowl game, would be played at, the Orange Bowl) -> the Orange Bowl game (6644ms)\nThe Orange Bowl is in what city?\t1933\t-10.7846397401607\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (1933, was precursor of, the Orange Bowl) -> 1933 (6644ms)\nThe Orange Bowl is in what city?\tcollege officials\t-10.819251978454307\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (college officials, was advertised by, the Orange Bowl) -> college officials (6644ms)\nThe Orange Bowl is in what city?\tthe Bucknell Bison\t-10.854223308037103\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, were, the Bucknell Bison) -> the Bucknell Bison (7890ms)\nThe Orange Bowl is in what city?\tThe Orange Bowl\t-10.87930954548024\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Orange Bowl, is hosted by, the Orange Bowl Committee) -> The Orange Bowl (6643ms)\nThe Orange Bowl is in what city?\tUConn\t-10.892317374507266\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (UConn, would have been selected to play in, the Orange Bowl) -> UConn (6643ms)\nThe Orange Bowl is in what city?\tAuthorities Concept Scheme\t-10.900384297036824\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Orange Bowl, Miami, Fla. (Football game), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (9020ms)\nThe Orange Bowl is in what city?\t10-1\t-10.925352386189761\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (10-1, is now called, the Orange Bowl) -> 10-1 (6644ms)\nThe Orange Bowl is in what city?\tthe Wolverines\t-10.929856189877945\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Wolverines, were invited to, the 1976 Orange Bowl) -> the Wolverines (6676ms)\nThe Orange Bowl is in what city?\tTopical Terms Concept Scheme\t-10.936119841815733\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Orange Bowl, Miami, Fla. (Football game), In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (9019ms)\nThe Orange Bowl is in what city?\tOhio State\t-10.957501631638989\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Ohio State, was going to, the Orange Bowl) -> Ohio State (6676ms)\nThe Orange Bowl is in what city?\tMarlins Park\t-10.963626473723998\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Marlins Park, is nothing like, the Orange Bowl) -> Marlins Park (6676ms)\nThe Orange Bowl is in what city?\tstadiums\t-10.973384494898768\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Orange and Sugar Bowls, have n?t been played in, stadiums) -> stadiums (4714ms)\nThe Orange Bowl is in what city?\ta game\t-10.995819227271221\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (a game, was in, the 1966 Orange Bowl) -> a game (6675ms)\nThe Orange Bowl is in what city?\tthe Hurricanes\t-11.017094175497084\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is, the Hurricanes) -> the Hurricanes (7890ms)\nThe Orange Bowl is in what city?\tACC\t-11.037610978718906\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the orange bowl, is going to be, ACC) -> ACC (7890ms)\nThe Orange Bowl is in what city?\t1933 and 1934\t-11.039637800984641\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (1933 and 1934, is the forerunner of, the Orange Bowl) -> 1933 and 1934 (6676ms)\nThe Orange Bowl is in what city?\tthe Board\t-11.082159019250234\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Board, is an active member of, the Orange Bowl Committee) -> the Board (6675ms)\nThe Orange Bowl is in what city?\tMiami ! Jake\t-11.106836863406995\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Miami ! Jake, is headlining, the Discover Orange Bowl) -> Miami ! Jake (6676ms)\nThe Orange Bowl is in what city?\tSeveral public health organizations\t-11.129890541474238\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Several public health organizations, are asking, the Orange Bowl) -> Several public health organizations (6675ms)\nThe Orange Bowl is in what city?\tIII\t-11.140530588269252\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (III, were both played at, the Orange Bowl) -> III (6705ms)\nThe Orange Bowl is in what city?\tMissouri\t-11.142985480798187\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Missouri, were victories in, the 1961 Orange Bowl) -> Missouri (6705ms)\nThe Orange Bowl is in what city?\tTonight ESPNU\t-11.165258471838754\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Tonight ESPNU, will be airing, the 2006 Orange bowl) -> Tonight ESPNU (6705ms)\nThe Orange Bowl is in what city?\tthe Seminole\t-11.182701690781894\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The 2001 Orange Bowl, was, the Seminole) -> the Seminole (7890ms)\nThe Orange Bowl is in what city?\tThe 1963 team\t-11.182972062544838\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The 1963 team, was headed to, the Orange Bowl) -> The 1963 team (6705ms)\nThe Orange Bowl is in what city?\tline\t-11.208489372749543\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (line, is, the Orange Bowl) -> line (6705ms)\nThe Orange Bowl is in what city?\ta live tiger\t-11.23068910875662\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (a live tiger, was at, the 1970 Orange Bowl) -> a live tiger (6705ms)\nThe Orange Bowl is in what city?\t1969\t-11.235726304200556\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was, 1969) -> 1969 (7890ms)\nThe Orange Bowl is in what city?\tA holding area\t-11.23978149574362\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (A holding area, was set up at, the Orange Bowl) -> A holding area (6705ms)\nThe Orange Bowl is in what city?\tThe Florida Lottery\t-11.262127989021455\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Florida Lottery, is a sponsor of, the Orange Bowl) -> The Florida Lottery (6705ms)\nThe Orange Bowl is in what city?\ta memorial service\t-11.264780600927038\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (a memorial service, was held at, the Orange Bowl) -> a memorial service (6739ms)\nThe Orange Bowl is in what city?\thome\t-11.292351065434614\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (home, was, the Orange Bowl) -> home (6739ms)\nThe Orange Bowl is in what city?\tSuper Bowls II & III\t-11.296434731373186\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Super Bowls II & III, were played at, the Orange Bowl) -> Super Bowls II & III (6739ms)\nThe Orange Bowl is in what city?\tThe Mountaineers and Tigers\t-11.303193342287848\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Mountaineers and Tigers, are heading to, the Orange Bowl) -> The Mountaineers and Tigers (6739ms)\nThe Orange Bowl is in what city?\tMike Bellamy\t-11.345557603171425\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Mike Bellamy, will be suspended for, the Discover Orange Bowl) -> Mike Bellamy (6739ms)\nThe Orange Bowl is in what city?\tNebraska Cornhuskers\t-11.357934812831001\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (Nebraska Cornhuskers, have, the most Orange bowl victories) -> Nebraska Cornhuskers (6739ms)\nThe Orange Bowl is in what city?\tMr. Abess\t-11.382201919027747\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Mr. Abess, is a member of, the Orange Bowl Committee) -> Mr. Abess (6739ms)\nThe Orange Bowl is in what city?\tGeorgia\t-11.384417118732893\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Georgia, will be playing in, the Orange Bowl) -> Georgia (6768ms)\nThe Orange Bowl is in what city?\tseven miles\t-11.43303995331155\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the orange bowl, is, seven miles) -> seven miles (8033ms)\nThe Orange Bowl is in what city?\teight national champions\t-11.433485415421183\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (eight national champions, were crowned on, the Orange Bowl field) -> eight national champions (6768ms)\nThe Orange Bowl is in what city?\tThe Jayhawks\t-11.450105641344447\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (The Jayhawks, have played in, the Orange Bowl) -> The Jayhawks (6768ms)\nThe Orange Bowl is in what city?\tinteresting\t-11.45582343698352\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (interesting, was, the burnt orange bowl) -> interesting (6768ms)\nThe Orange Bowl is in what city?\tMr. Trueba\t-11.472520512256049\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Mr. Trueba, is also a member of, the Orange Bowl Committee) -> Mr. Trueba (6768ms)\nThe Orange Bowl is in what city?\t26\t-11.475878364453171\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (2006 Orange Bowl, was the winning score in, 26) -> 26 (9019ms)\nThe Orange Bowl is in what city?\ta manufacturer consumer\t-11.477102900209404\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the orange bowl, was, a manufacturer consumer) -> a manufacturer consumer (8033ms)\nThe Orange Bowl is in what city?\tPoms\t-11.499789851548842\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Poms, has been at, the Orange Bowl) -> Poms (6767ms)\nThe Orange Bowl is in what city?\tthe boys\t-11.512763738996375\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the boys, are wearing in, the Orange Bowl game) -> the boys (6767ms)\nThe Orange Bowl is in what city?\tJoe Robbie Stadium\t-11.518006797527926\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Joe Robbie Stadium, was a major upgrade from, the Orange Bowl) -> Joe Robbie Stadium (6768ms)\nThe Orange Bowl is in what city?\t19-14\t-11.529270583003935\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the 1944 Orange Bowl, was won, 19-14) -> 19-14 (8033ms)\nThe Orange Bowl is in what city?\tFootball\t-11.536931034117922\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Football, is celebrated in, the Orange Bowl) -> Football (6798ms)\nThe Orange Bowl is in what city?\tRecords\t-11.540467832424604\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Records, were broken in, the Orange Bowl) -> Records (6798ms)\nThe Orange Bowl is in what city?\ta huge money-maker\t-11.544301962631758\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is, a huge money-maker) -> a huge money-maker (8033ms)\nThe Orange Bowl is in what city?\tthe Orange Bowl\t-11.5737985961754\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl game, would be played at, the Orange Bowl) -> the Orange Bowl (8069ms)\nThe Orange Bowl is in what city?\t50 different teams\t-11.58719599258573\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (50 different teams, have played in, the Orange Bowl) -> 50 different teams (6798ms)\nThe Orange Bowl is in what city?\ta wild game\t-11.59293284711961\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was, a wild game) -> a wild game (8069ms)\nThe Orange Bowl is in what city?\tmuch controversy\t-11.599756176422344\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is as, much controversy) -> much controversy (8069ms)\nThe Orange Bowl is in what city?\tInternships\t-11.60299094808449\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Internships, are also available with, the Orange Bowl) -> Internships (6798ms)\nThe Orange Bowl is in what city?\ta not-for-profit\t-11.66065238925325\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl Committee, is, a not-for-profit) -> a not-for-profit (8069ms)\nThe Orange Bowl is in what city?\t17 %\t-11.674279050066392\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was up, 17 %) -> 17 % (8069ms)\nThe Orange Bowl is in what city?\ta mediocre matchup\t-11.677220321923947\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is still, a mediocre matchup) -> a mediocre matchup (8069ms)\nThe Orange Bowl is in what city?\tthe Orange Bowl Committee\t-11.688361622463567\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is hosted by, the Orange Bowl Committee) -> the Orange Bowl Committee (8069ms)\nThe Orange Bowl is in what city?\tthe University\t-11.709337494916017\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl Hall, was inducted into, the University) -> the University (8142ms)\nThe Orange Bowl is in what city?\tonly Bowden\t-11.713397230136527\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (only Bowden, had stepped down after, the 2001 Orange Bowl) -> only Bowden (6798ms)\nThe Orange Bowl is in what city?\tOU 13\t-11.714952151539784\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the 2001 Orange Bowl, was, OU 13) -> OU 13 (8142ms)\nThe Orange Bowl is in what city?\tYou?ll\t-11.746700949800548\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (You?ll, have to play in, the Orange Bowl) -> You?ll (6798ms)\nThe Orange Bowl is in what city?\ta legendary event\t-11.747602901871462\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is, a legendary event) -> a legendary event (8142ms)\nThe Orange Bowl is in what city?\tNU?s single-game bowl record\t-11.785057318429564\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the 1973 Orange Bowl, is, NU?s single-game bowl record) -> NU?s single-game bowl record (8142ms)\nThe Orange Bowl is in what city?\tthe Miami area\t-11.791593681532712\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl & various Super Bowls, played in, the Miami area) -> the Miami area (9020ms)\nThe Orange Bowl is in what city?\tan enjoyable experience\t-11.798384840680152\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, has been, an enjoyable experience) -> an enjoyable experience (8142ms)\nThe Orange Bowl is in what city?\tFOX\t-11.830522693931101\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (FOX, has, the ORANGE BOWL ? Georgia Tech and Iowa) -> FOX (6798ms)\nThe Orange Bowl is in what city?\t37,000-seat Marlins Park\t-11.8328987361393\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was twice the size of, 37,000-seat Marlins Park) -> 37,000-seat Marlins Park (8142ms)\nThe Orange Bowl is in what city?\tKey Biscayne\t-11.838880120754443\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the first Orange Bowl, was held here on, Key Biscayne) -> Key Biscayne (8142ms)\nThe Orange Bowl is in what city?\tUS Currency\t-11.839233431485473\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (All Orange Bowl ticket prices, are in, US Currency) -> US Currency (9020ms)\nThe Orange Bowl is in what city?\tMoore Park\t-11.85222667627465\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl Committee, is helping restore, Moore Park) -> Moore Park (8253ms)\nThe Orange Bowl is in what city?\tSouth Florida\t-11.854339652053511\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (The FedEx Orange Bowl, will take place in, South Florida) -> South Florida (9020ms)\nThe Orange Bowl is in what city?\tthe 18-and-under crop\t-11.86643843762863\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, are already the cream of, the 18-and-under crop) -> the 18-and-under crop (8253ms)\nThe Orange Bowl is in what city?\tComplainant?s favor\t-11.873875006055835\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> where do the orange bowl find ? -> $x: (the orange bowl, do find in, $x) -> $x: (orange bowl, find in, $x) -> (ORANGE BOWL, find in, Complainant?s favor) -> Complainant?s favor (6798ms)\nThe Orange Bowl is in what city?\ta special one\t-11.878817205350868\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl Committee, is truly, a special one) -> a special one (8252ms)\nThe Orange Bowl is in what city?\ta football game\t-11.890562204243452\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is much more than, a football game) -> a football game (8252ms)\nThe Orange Bowl is in what city?\tthe 1950s\t-11.904628630873477\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl, began in, the 1950s) -> the 1950s (9053ms)\nThe Orange Bowl is in what city?\tthe ACC champion\t-11.924825129808106\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is home to, the ACC champion) -> the ACC champion (8253ms)\nThe Orange Bowl is in what city?\ta special , special place\t-11.946930053346996\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was, a special , special place) -> a special , special place (8253ms)\nThe Orange Bowl is in what city?\ta Heisman winner\t-11.955669660067159\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (a Heisman winner, has played in, the Orange Bowl) -> a Heisman winner (6924ms)\nThe Orange Bowl is in what city?\tVirginia\t-11.963100234691149\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, will be, Virginia) -> Virginia (8253ms)\nThe Orange Bowl is in what city?\tthe Rose Bowl\t-11.973741348119685\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl game, is clearly a ripoff of, the Rose Bowl) -> the Rose Bowl (8253ms)\nThe Orange Bowl is in what city?\tthousands\t-11.987177273294623\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is expected to draw, thousands) -> thousands (8352ms)\nThe Orange Bowl is in what city?\ta unique twist\t-11.988457742048807\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was a game with, a unique twist) -> a unique twist (8352ms)\nThe Orange Bowl is in what city?\t62 parades\t-11.999952270667652\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl Parade, has been cancelled after, 62 parades) -> 62 parades (8352ms)\nThe Orange Bowl is in what city?\tattention\t-12.005620234852447\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl trophy, was the center of, attention) -> attention (8352ms)\nThe Orange Bowl is in what city?\tNotre Dame\t-12.020780808714736\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is free to choose, Notre Dame) -> Notre Dame (8352ms)\nThe Orange Bowl is in what city?\tan ?at-large ? bowl game\t-12.028182036291552\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was basically, an ?at-large ? bowl game) -> an ?at-large ? bowl game (8352ms)\nThe Orange Bowl is in what city?\tan economic benefit\t-12.031214202023092\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is more than just, an economic benefit) -> an economic benefit (8352ms)\nThe Orange Bowl is in what city?\thalf its allotment\t-12.048536574409775\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is a little more than, half its allotment) -> half its allotment (8352ms)\nThe Orange Bowl is in what city?\tThe Seminoles\t-12.055561210246571\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (The Seminoles, still have to come into, the Orange Bowl) -> The Seminoles (6923ms)\nThe Orange Bowl is in what city?\twhite hankie-waving fans\t-12.068919705892199\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was filled with, white hankie-waving fans) -> white hankie-waving fans (8389ms)\nThe Orange Bowl is in what city?\ta barbecue place\t-12.070576982523704\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the '78 Orange Bowl, is the ultimate test for, a barbecue place) -> a barbecue place (8389ms)\nThe Orange Bowl is in what city?\t64 players\t-12.083066899118926\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl draw, was down to, 64 players) -> 64 players (8389ms)\nThe Orange Bowl is in what city?\tClemson\t-12.087836958783871\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Clemson, is going to, the Orange Bowl) -> Clemson (6924ms)\nThe Orange Bowl is in what city?\tACC champion Clemson\t-12.09190886853448\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is stuck with, ACC champion Clemson) -> ACC champion Clemson (8389ms)\nThe Orange Bowl is in what city?\tthe Bowl Championship Series\t-12.10605600905891\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is a member of, the Bowl Championship Series) -> the Bowl Championship Series (8389ms)\nThe Orange Bowl is in what city?\ta long time partner and friend\t-12.120156621539907\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, has been, a long time partner and friend) -> a long time partner and friend (8389ms)\nThe Orange Bowl is in what city?\tOU and Nebraska\t-12.125823359093209\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, always seemed to be, OU and Nebraska) -> OU and Nebraska (8389ms)\nThe Orange Bowl is in what city?\ta disappointment\t-12.126222897898536\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was, a disappointment) -> a disappointment (8425ms)\nThe Orange Bowl is in what city?\tJanuary 3rd 2012\t-12.171801631675475\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The 2012 Orange Bowl, will be played on, January 3rd 2012) -> January 3rd 2012 (8425ms)\nThe Orange Bowl is in what city?\t1984\t-12.193095538626553\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the most interesting Orange Bowl, came in, 1984) -> 1984 (9053ms)\nThe Orange Bowl is in what city?\tfive BCS Bowl games\t-12.222200941667815\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Discover Orange Bowl, is one of, five BCS Bowl games) -> five BCS Bowl games (8425ms)\nThe Orange Bowl is in what city?\tL football team\t-12.233511845838898\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (L football team, has won, the Orange Bowl) -> L football team (6924ms)\nThe Orange Bowl is in what city?\ta state\t-12.241230124685835\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl, lingered semi-vacant in, a state) -> a state (9088ms)\nThe Orange Bowl is in what city?\tPayton\t-12.280910184622178\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Payton, was named MVP of, the Orange Bowl) -> Payton (6924ms)\nThe Orange Bowl is in what city?\tDiscover\t-12.302523173552974\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Discover, is the new sponsor of, the Orange Bowl) -> Discover (6954ms)\nThe Orange Bowl is in what city?\tThe Rose Bowl\t-12.311115136078122\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (The Rose Bowl, would have, Oregon and Ohio State The Orange Bowl) -> The Rose Bowl (6954ms)\nThe Orange Bowl is in what city?\tSimmons\t-12.320207112384084\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Simmons, was inducted into, the Orange Bowl Hall) -> Simmons (6954ms)\nThe Orange Bowl is in what city?\tbowl games\t-12.324362519080873\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> what city be the first the orange bowl be ? -> $x: (the first the orange bowl, be city, $x) -> $x: (first orange bowl, city, $x) -> $x: ($x, be, first orange bowl) -> (bowl games, will be, the Orange?s first bowl) -> bowl games (9088ms)\nThe Orange Bowl is in what city?\tThe King Mango Strut\t-12.32451515966646\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (The King Mango Strut, now has outlived, the Orange Bowl parade) -> The King Mango Strut (6954ms)\nThe Orange Bowl is in what city?\tThe girls\t-12.343398792857622\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The girls, were seen in, The Orange Bowl Restaurant) -> The girls (6954ms)\nThe Orange Bowl is in what city?\tFSU and Oklahoma\t-12.350412063840029\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (FSU and Oklahoma, have played since, the 2001 Orange Bowl) -> FSU and Oklahoma (6954ms)\nThe Orange Bowl is in what city?\t2010\t-12.38299615043778\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Orange Bowl, expires in, 2010) -> 2010 (9088ms)\nThe Orange Bowl is in what city?\ta victory\t-12.383445406763062\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was more than, a victory) -> a victory (8425ms)\nThe Orange Bowl is in what city?\tthe western side\t-12.385154062792806\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the western side, is, the Orange Bowl) -> the western side (6954ms)\nThe Orange Bowl is in what city?\thours\t-12.394330270236548\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The 2012 Orange Bowl, is just, hours) -> hours (8425ms)\nThe Orange Bowl is in what city?\ta speech\t-12.403781957499758\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was the site of, a speech) -> a speech (8425ms)\nThe Orange Bowl is in what city?\tJanuary\t-12.41943950306999\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, will be played on, January) -> January (8612ms)\nThe Orange Bowl is in what city?\tThe games\t-12.419767455658983\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The games, are, the Orange Bowl) -> The games (6982ms)\nThe Orange Bowl is in what city?\tThe project\t-12.429558232305187\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The project, will be centered in, the Orange Bowl) -> The project (6982ms)\nThe Orange Bowl is in what city?\ta candidate\t-12.434699251281527\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl ?, is believed to be, a candidate) -> a candidate (8612ms)\nThe Orange Bowl is in what city?\tWednesday\t-12.446677413564915\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Discover Orange Bowl, will be played, Wednesday) -> Wednesday (8612ms)\nThe Orange Bowl is in what city?\tthe marching band\t-12.493361520222052\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the marching band, was invited to play in, the 1947 Orange Bowl) -> the marching band (6982ms)\nThe Orange Bowl is in what city?\tArgiz\t-12.494364447723822\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Argiz, is a member of, the Orange Bowl Committee) -> Argiz (6982ms)\nThe Orange Bowl is in what city?\tVT\t-12.496491430872936\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (VT, has come a long way from, the 1996 Orange Bowl) -> VT (6982ms)\nThe Orange Bowl is in what city?\tEchevarria\t-12.541286762780178\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Echevarria, is also a member of, the Orange Bowl Committee) -> Echevarria (6982ms)\nThe Orange Bowl is in what city?\tFrazier\t-12.59989898541268\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Frazier, was healthy enough to start, the 1995 Orange Bowl) -> Frazier (7012ms)\nThe Orange Bowl is in what city?\tThe title game\t-12.608232622429126\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The title game, was, the Orange bowl) -> The title game (7012ms)\nThe Orange Bowl is in what city?\tThe previous best\t-12.616984757853052\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The previous best, was 40 in, the 1942 Orange Bowl) -> The previous best (7012ms)\nThe Orange Bowl is in what city?\tdecades\t-12.625484633892086\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was already there for, decades) -> decades (8612ms)\nThe Orange Bowl is in what city?\ta field\t-12.633643721238414\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl Classic, was played on, a field) -> a field (8612ms)\nThe Orange Bowl is in what city?\tthe Little Havana section\t-12.640612699100163\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the old Orange Bowl, once stood in, the Little Havana section) -> the Little Havana section (9088ms)\nThe Orange Bowl is in what city?\tthe audience\t-12.695618225356895\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the audience, is nicer than, the Orange Bowl fans) -> the audience (7012ms)\nThe Orange Bowl is in what city?\tthe Big East\t-12.696252612074122\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (The Orange Bowl, has some historical interest in, the Big East) -> the Big East (9088ms)\nThe Orange Bowl is in what city?\tthe title\t-12.72840768221744\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the title, was decided at, the Orange Bowl) -> the title (7012ms)\nThe Orange Bowl is in what city?\tthe Miami Field\t-12.735305050313624\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, place, $x) -> (the Orange Bowl, took place at, the Miami Field) -> the Miami Field (9976ms)\nThe Orange Bowl is in what city?\tthe rose bowl\t-12.746027052921296\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the rose bowl, was followed by, the orange bowl) -> the rose bowl (7012ms)\nThe Orange Bowl is in what city?\tThe game\t-12.817254848258424\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The game, was played at, the Orange Bowl) -> The game (7012ms)\nThe Orange Bowl is in what city?\tnow\t-12.820216131927362\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is gone, now) -> now (8612ms)\nThe Orange Bowl is in what city?\tplenty\t-12.895199880830292\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was a great game with, plenty) -> plenty (8681ms)\nThe Orange Bowl is in what city?\tAuburn\t-12.896397048456809\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl Nebraska, was playing, Auburn) -> Auburn (8681ms)\nThe Orange Bowl is in what city?\tJan\t-12.920142001908932\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is on, Jan) -> Jan (8681ms)\nThe Orange Bowl is in what city?\tthe conference football champion\t-12.931177411997428\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the conference football champion, was sent to, the Orange Bowl) -> the conference football champion (7041ms)\nThe Orange Bowl is in what city?\tthe other five\t-12.93285027300021\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the other five, were played at, the Orange Bowl) -> the other five (7041ms)\nThe Orange Bowl is in what city?\tFlorida\t-12.933738492830422\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (The Orange Bowl, takes place in, Florida) -> Florida (9121ms)\nThe Orange Bowl is in what city?\tFeist\t-12.956248709379423\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (Feist, already has his eyes on, the Orange Bowl) -> Feist (7041ms)\nThe Orange Bowl is in what city?\ta great game\t-12.956318853131082\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, provide, $x) -> (the Orange Bowl, should provide, a great game) -> a great game (10133ms)\nThe Orange Bowl is in what city?\t2012\t-12.981089661210122\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Orange Bowl MVP Geno Smith, will graduate in, 2012) -> 2012 (9121ms)\nThe Orange Bowl is in what city?\tlook-away bad\t-13.010805704081536\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was indeed, look-away bad) -> look-away bad (8681ms)\nThe Orange Bowl is in what city?\tthe second-lowest\t-13.01667662398705\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, were, the second-lowest) -> the second-lowest (8681ms)\nThe Orange Bowl is in what city?\tDolphins Stadium\t-13.034249581838978\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, place, $x) -> (the Fedex Orange Bowl, takes place at, Dolphins Stadium) -> Dolphins Stadium (9976ms)\nThe Orange Bowl is in what city?\tThe first Pryor-Arguello fight\t-13.05307155274322\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The first Pryor-Arguello fight, was held at, the Orange Bowl) -> The first Pryor-Arguello fight (7041ms)\nThe Orange Bowl is in what city?\tthe three times Clemson\t-13.056668946597028\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the three times Clemson, has been to, the Orange Bowl) -> the three times Clemson (7042ms)\nThe Orange Bowl is in what city?\twonderful condition\t-13.085174759488561\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Vintage orange-red # 12 bowl, is in, wonderful condition) -> wonderful condition (9121ms)\nThe Orange Bowl is in what city?\tthe controversy\t-13.147141213503701\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is juicing, the controversy) -> the controversy (8718ms)\nThe Orange Bowl is in what city?\tthe final reinforcement\t-13.147925664387412\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was, the final reinforcement) -> the final reinforcement (8718ms)\nThe Orange Bowl is in what city?\tThe Bowl Alliance\t-13.150530135668134\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, include, the orange bowl) -> (The Bowl Alliance, only included, the Orange Bowl) -> The Bowl Alliance (9887ms)\nThe Orange Bowl is in what city?\tOrlanda Calling\t-13.188099965614695\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, place, the orange bowl) -> (Orlanda Calling, takes place at, the Citrus Orange Bowl) -> Orlanda Calling (10049ms)\nThe Orange Bowl is in what city?\tSun Life Stadium\t-13.249235079398538\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, place, $x) -> (the 2012 Orange Bowl, takes place at, Sun Life Stadium) -> Sun Life Stadium (9976ms)\nThe Orange Bowl is in what city?\tthe second-oldest bowl game\t-13.264247545905711\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is, the second-oldest bowl game) -> the second-oldest bowl game (8718ms)\nThe Orange Bowl is in what city?\tBrigade 2506\t-13.330631397402794\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, place, the orange bowl) -> (Brigade 2506, took place at, the Orange Bowl Stadium) -> Brigade 2506 (10049ms)\nThe Orange Bowl is in what city?\tthe last bowl game\t-13.429523027177765\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was usually, the last bowl game) -> the last bowl game (8718ms)\nThe Orange Bowl is in what city?\tNebraska\t-13.46571346076868\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, place, the orange bowl) -> (Nebraska, reclaimed its rightful place in, the Orange Bowl) -> Nebraska (10049ms)\nThe Orange Bowl is in what city?\tthe least-watched BCS game\t-13.494626033132178\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was, the least-watched BCS game) -> the least-watched BCS game (8718ms)\nThe Orange Bowl is in what city?\ta statement\t-13.5018049434154\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (? Orange Bowl Committee CEO Eric Poms, said in, a statement) -> a statement (9204ms)\nThe Orange Bowl is in what city?\tMusic\t-13.530958373988469\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (Music, has recently performed at, the Discover Orange Bowl) -> Music (7069ms)\nThe Orange Bowl is in what city?\t1985\t-13.54504740842409\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl, juniors tournament in, 1985) -> 1985 (9204ms)\nThe Orange Bowl is in what city?\tthe award\t-13.56072137854145\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (the award, has been sponsored by, the FedEx Orange Bowl) -> the award (7069ms)\nThe Orange Bowl is in what city?\ta sense\t-13.608055711359231\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, provide, $x) -> (the Orange Bowl atmosphere, ought to provide, a sense) -> a sense (10133ms)\nThe Orange Bowl is in what city?\tthe brim\t-13.672742017744277\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was packed to, the brim) -> the brim (8718ms)\nThe Orange Bowl is in what city?\tthe worst rated BCS bowl telecast\t-13.710196434302379\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was, the worst rated BCS bowl telecast) -> the worst rated BCS bowl telecast (8755ms)\nThe Orange Bowl is in what city?\tthe county\t-13.713340980816056\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, has been designated by, the county) -> the county (8755ms)\nThe Orange Bowl is in what city?\tthe worst I?ve\t-13.719371602898839\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Discover Orange Bowl, was one of, the worst I?ve) -> the worst I?ve (8755ms)\nThe Orange Bowl is in what city?\tthe family-unfriendly start time\t-13.736692743376368\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, also was at, the family-unfriendly start time) -> the family-unfriendly start time (8755ms)\nThe Orange Bowl is in what city?\tannually\t-13.82343067310329\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, has been played, annually) -> annually (8755ms)\nThe Orange Bowl is in what city?\tFanfare\t-13.825587228194255\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, include, the orange bowl) -> (Fanfare, will include, the Orange Bowl Trophy) -> Fanfare (9887ms)\nThe Orange Bowl is in what city?\tSaturday\t-13.843581063494625\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, place, $x) -> (the Junior Orange Bowl Parade, takes place on, Saturday) -> Saturday (9976ms)\nThe Orange Bowl is in what city?\tSite\t-13.84500796508014\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, contain, the orange bowl) -> (Site, contains latest information about, the orange bowl hall) -> Site (9887ms)\nThe Orange Bowl is in what city?\tthe most competitive events\t-13.912014334563617\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl Regatta, is one of, the most competitive events) -> the most competitive events (8755ms)\nThe Orange Bowl is in what city?\tthe other three BCS Bowls\t-13.942900579268638\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is now tied into, the other three BCS Bowls) -> the other three BCS Bowls (8755ms)\nThe Orange Bowl is in what city?\tthe fugitive\t-14.06239500110427\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (the fugitive, had walked away from, the Orange Bowl work detail) -> the fugitive (7069ms)\nThe Orange Bowl is in what city?\tthe attempt\t-14.065512053331057\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the 1984 Orange Bowl, failed in, the attempt) -> the attempt (9204ms)\nThe Orange Bowl is in what city?\tthe mall\t-14.164127869845224\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (the mall, as have lunch at, The Orange Bowl Restaurant) -> the mall (7069ms)\nThe Orange Bowl is in what city?\tThe multiplatinum-selling singer\t-14.26414142406436\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The multiplatinum-selling singer, was booed at, the Orange Bowl) -> The multiplatinum-selling singer (7167ms)\nThe Orange Bowl is in what city?\ta stadium\t-14.288269648730367\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, call, the orange bowl) -> (a stadium, called, the Orange Bowl) -> a stadium (9976ms)\nThe Orange Bowl is in what city?\tthe new years bass fishing\t-14.304533952578954\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl, rang in, the new years bass fishing) -> the new years bass fishing (9204ms)\nThe Orange Bowl is in what city?\tThe ballpark\t-14.409311791946541\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be on, the orange bowl) -> (The ballpark, is built on, the former Orange Bowl site) -> The ballpark (10175ms)\nThe Orange Bowl is in what city?\tthe many decades\t-14.439738945028159\tThe Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (The Orange Bowl, has continued to develop in, the many decades) -> the many decades (9204ms)\nThe Orange Bowl is in what city?\tthe stadium\t-14.726579869600558\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, call, the orange bowl) -> (the stadium, called, the Orange Bowl) -> the stadium (10049ms)\nThe Orange Bowl is in what city?\tthe controversy over last weeks\t-15.221163013362371\tThe Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is juicing, the controversy over last weeks) -> the controversy over last weeks (8755ms)\nWhat is the chemical formula for sulphur dioxide?\tgas\t-8.289679493625881\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, gas) -> gas (7684ms)\nWhat is the chemical formula for sulphur dioxide?\tGases\t-8.981397844592681\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, Gases) -> Gases (7684ms)\nWhat is the chemical formula for sulphur dioxide?\tCARBON\t-9.282382886548172\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, CARBON) -> CARBON (7684ms)\nWhat is the chemical formula for sulphur dioxide?\tNITROGEN\t-9.282382886548172\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, NITROGEN) -> NITROGEN (7683ms)\nWhat is the chemical formula for sulphur dioxide?\tA study of the effect of sulphur dioxide on plants\t-9.392536897455953\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (A study of the effect of sulphur dioxide on plants, Editions, A study of the effect of sulphur dioxide on plants) -> A study of the effect of sulphur dioxide on plants (10328ms)\nWhat is the chemical formula for sulphur dioxide?\tPergamon Press\t-9.67276364245327\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (Pergamon Press, Book editions published, Chemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide) -> Pergamon Press (10328ms)\nWhat is the chemical formula for sulphur dioxide?\tOptical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine\t-9.71415680046612\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (Optical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine, Editions, Optical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine) -> Optical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine (10328ms)\nWhat is the chemical formula for sulphur dioxide?\tChemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide\t-9.80563456456988\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, also know as, sulphur dioxide) -> (Chemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide, Also known as, Chemistry in liquid dinitrogen tetroxide and sulphur dioxide.) -> Chemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide (10214ms)\nWhat is the chemical formula for sulphur dioxide?\tSulfur dioxide\t-9.857656228388695\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, also know as, sulphur dioxide) -> (Sulfur dioxide, Also known as, sulphur dioxide) -> Sulfur dioxide (10214ms)\nWhat is the chemical formula for sulphur dioxide?\tdangerous gas\t-10.272674234939634\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, dangerous gas) -> dangerous gas (9840ms)\nWhat is the chemical formula for sulphur dioxide?\tIthaca\t-10.277227190228853\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, place, $x) -> (The electrical conductance of solutions in methylamine and ethylamine the fluidity of ammonia, methylamine and sulphur dioxide and the fluidity of certain solutions in these solvents, Place of publication, Ithaca) -> Ithaca (10345ms)\nWhat is the chemical formula for sulphur dioxide?\ttoxic gas\t-10.475398001911614\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, toxic gas) -> toxic gas (9840ms)\nWhat is the chemical formula for sulphur dioxide?\tacid gas\t-10.482104099921225\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, acid gas) -> acid gas (9880ms)\nWhat is the chemical formula for sulphur dioxide?\tair\t-10.49447329812078\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, air) -> air (9880ms)\nWhat is the chemical formula for sulphur dioxide?\thaze-causing pollutant\t-10.495580439332043\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, haze-causing pollutant) -> haze-causing pollutant (9880ms)\nWhat is the chemical formula for sulphur dioxide?\tcorrosion-promoting substance\t-10.495580439332043\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, corrosion-promoting substance) -> corrosion-promoting substance (9880ms)\nWhat is the chemical formula for sulphur dioxide?\twater-soluble contaminant\t-10.501319183157275\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, water-soluble contaminant) -> water-soluble contaminant (10170ms)\nWhat is the chemical formula for sulphur dioxide?\tpolluting gas\t-10.501493039206988\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, polluting gas) -> polluting gas (10170ms)\nWhat is the chemical formula for sulphur dioxide?\twaste gas\t-10.527754319645592\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, waste gas) -> waste gas (10170ms)\nWhat is the chemical formula for sulphur dioxide?\tcondensable gas\t-10.571861363353205\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, condensable gas) -> condensable gas (10170ms)\nWhat is the chemical formula for sulphur dioxide?\tnasty gas\t-10.57401037675963\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, nasty gas) -> nasty gas (10170ms)\nWhat is the chemical formula for sulphur dioxide?\tlife-threatening\t-10.607180549482349\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, be, life-threatening) -> life-threatening (10794ms)\nWhat is the chemical formula for sulphur dioxide?\tpollution gas\t-10.613420643637042\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, pollution gas) -> pollution gas (10170ms)\nWhat is the chemical formula for sulphur dioxide?\tsecondary gas\t-10.61542687097879\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, secondary gas) -> secondary gas (10214ms)\nWhat is the chemical formula for sulphur dioxide?\ttest gas\t-10.615643760557791\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, test gas) -> test gas (10215ms)\nWhat is the chemical formula for sulphur dioxide?\tinorganic gas\t-10.618405814941731\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, inorganic gas) -> inorganic gas (10215ms)\nWhat is the chemical formula for sulphur dioxide?\tambient gas\t-10.61867098345864\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, ambient gas) -> ambient gas (10214ms)\nWhat is the chemical formula for sulphur dioxide?\tcompressed gas\t-10.624573907939308\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, compressed gas) -> compressed gas (10237ms)\nWhat is the chemical formula for sulphur dioxide?\tshielding gas\t-10.62712986472494\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, shielding gas) -> shielding gas (10238ms)\nWhat is the chemical formula for sulphur dioxide?\tatmospheric gas\t-10.631476690325641\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, atmospheric gas) -> atmospheric gas (10237ms)\nWhat is the chemical formula for sulphur dioxide?\tpollutant from the air\t-10.65336905447403\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, pollutant from the air) -> pollutant from the air (10237ms)\nWhat is the chemical formula for sulphur dioxide?\tCorrosion of Al\t-10.68673192012146\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Corrosion of Al, Instance Of, result of the combination of sulphur dioxide) -> Corrosion of Al (10328ms)\nWhat is the chemical formula for sulphur dioxide?\tchemical irritant\t-10.70718857075296\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, chemical irritant) -> chemical irritant (10345ms)\nWhat is the chemical formula for sulphur dioxide?\tproduct of combustion\t-10.722061697362745\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, product of combustion) -> product of combustion (10345ms)\nWhat is the chemical formula for sulphur dioxide?\tCoalcheck SDS\t-10.722467464900367\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Coalcheck SDS, Instance Of, biodegradable compound of sulphur dioxide absorbing chemical) -> Coalcheck SDS (10345ms)\nWhat is the chemical formula for sulphur dioxide?\tcomponent of acid deposition\t-10.750655279345976\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, component of acid deposition) -> component of acid deposition (10345ms)\nWhat is the chemical formula for sulphur dioxide?\tBurning of fossil fuels for power generation\t-10.75399882794058\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Burning of fossil fuels for power generation, Instance Of, contributor of sulphur dioxide) -> Burning of fossil fuels for power generation (10345ms)\nWhat is the chemical formula for sulphur dioxide?\tSodium Sulphite Heptahydrate\t-10.758816776024917\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Sodium Sulphite Heptahydrate, Instance Of, convenient source of sulphur dioxide) -> Sodium Sulphite Heptahydrate (10793ms)\nWhat is the chemical formula for sulphur dioxide?\t9780725904609\t-10.76354605195815\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (9780725904609, Book Editions, The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region) -> 9780725904609 (10793ms)\nWhat is the chemical formula for sulphur dioxide?\tsevere respiratory irritant\t-10.767571850184758\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, severe respiratory irritant) -> severe respiratory irritant (10793ms)\nWhat is the chemical formula for sulphur dioxide?\tAQI\t-10.793605021369256\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (AQI, Instance Of, measure of carbon monoxide, fine particulate matter, sulphur dioxide, ozone, and nitrogen dioxide) -> AQI (10793ms)\nWhat is the chemical formula for sulphur dioxide?\tchemical agent\t-10.802579586093794\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, chemical agent) -> chemical agent (10856ms)\nWhat is the chemical formula for sulphur dioxide?\tirritating and corrosive gas\t-10.803753066709913\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, irritating and corrosive gas) -> irritating and corrosive gas (10856ms)\nWhat is the chemical formula for sulphur dioxide?\tgaseous sulphur compound\t-10.807585706116875\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, gaseous sulphur compound) -> gaseous sulphur compound (10856ms)\nWhat is the chemical formula for sulphur dioxide?\televated combustion pollutant\t-10.857408884211901\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, elevated combustion pollutant) -> elevated combustion pollutant (10856ms)\nWhat is the chemical formula for sulphur dioxide?\tfossil fuels\t-10.85815611884027\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is the use of, fossil fuels) -> fossil fuels (10856ms)\nWhat is the chemical formula for sulphur dioxide?\tairborne particle and pollutant\t-10.860688673922665\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, airborne particle and pollutant) -> airborne particle and pollutant (10856ms)\nWhat is the chemical formula for sulphur dioxide?\tcolourless, toxic gas\t-10.866529643059037\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, colourless, toxic gas) -> colourless, toxic gas (11170ms)\nWhat is the chemical formula for sulphur dioxide?\tAcid Gas A gas\t-10.866529643059037\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, Acid Gas A gas) -> Acid Gas A gas (11170ms)\nWhat is the chemical formula for sulphur dioxide?\temissions\t-10.869030095595965\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, emissions) -> emissions (7684ms)\nWhat is the chemical formula for sulphur dioxide?\tcolourless, non-flammable gas\t-10.882980708119378\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, colourless, non-flammable gas) -> colourless, non-flammable gas (11169ms)\nWhat is the chemical formula for sulphur dioxide?\tPotassium Metabisulphite\t-10.888340466605182\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Potassium Metabisulphite, Instance Of, stable source of sulphur dioxide) -> Potassium Metabisulphite (11169ms)\nWhat is the chemical formula for sulphur dioxide?\tsulphur compound\t-10.89212969793213\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, sulphur compound) -> sulphur compound (11169ms)\nWhat is the chemical formula for sulphur dioxide?\tconventional atmospheric contaminant\t-10.898181252768207\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, conventional atmospheric contaminant) -> conventional atmospheric contaminant (11169ms)\nWhat is the chemical formula for sulphur dioxide?\tfresh air air contaminant\t-10.907302011615345\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, fresh air air contaminant) -> fresh air air contaminant (11251ms)\nWhat is the chemical formula for sulphur dioxide?\tdangerous GHG gas\t-10.907302011615345\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, dangerous GHG gas) -> dangerous GHG gas (11251ms)\nWhat is the chemical formula for sulphur dioxide?\tharmful, colourless gas\t-10.907302011615345\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, harmful, colourless gas) -> harmful, colourless gas (11251ms)\nWhat is the chemical formula for sulphur dioxide?\tdangerous chemical\t-10.908752529147602\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, dangerous chemical) -> dangerous chemical (11252ms)\nWhat is the chemical formula for sulphur dioxide?\tpreservative chemical\t-10.90918418998985\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, preservative chemical) -> preservative chemical (11252ms)\nWhat is the chemical formula for sulphur dioxide?\tchemical industry\t-10.910653576121566\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, chemical industry) -> chemical industry (11251ms)\nWhat is the chemical formula for sulphur dioxide?\tchemical additive\t-10.914196447422523\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, chemical additive) -> chemical additive (11274ms)\nWhat is the chemical formula for sulphur dioxide?\tgaseous emission\t-10.923415020876636\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, gaseous emission) -> gaseous emission (11275ms)\nWhat is the chemical formula for sulphur dioxide?\thardcore toxic air pollutant\t-10.927722322917576\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, hardcore toxic air pollutant) -> hardcore toxic air pollutant (11274ms)\nWhat is the chemical formula for sulphur dioxide?\tgroup o acid gas\t-10.927722322917576\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, group o acid gas) -> group o acid gas (11275ms)\nWhat is the chemical formula for sulphur dioxide?\tinjurious and harmful gas\t-10.927722322917576\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, injurious and harmful gas) -> injurious and harmful gas (11275ms)\nWhat is the chemical formula for sulphur dioxide?\tnon-speci?c agent\t-10.930546983900333\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, non-speci?c agent) -> non-speci?c agent (11274ms)\nWhat is the chemical formula for sulphur dioxide?\tharmful by-products\t-10.9312316059019\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, harmful by-products) -> harmful by-products (11301ms)\nWhat is the chemical formula for sulphur dioxide?\thot gas\t-10.939421652276637\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, hot gas) -> hot gas (11301ms)\nWhat is the chemical formula for sulphur dioxide?\thighly aggressive substance\t-10.94307520820335\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, highly aggressive substance) -> highly aggressive substance (11301ms)\nWhat is the chemical formula for sulphur dioxide?\tconventional monitoring parameter\t-10.94307520820335\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, conventional monitoring parameter) -> conventional monitoring parameter (11301ms)\nWhat is the chemical formula for sulphur dioxide?\tClausMaster\t-10.94559009530703\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (ClausMaster, Instance Of, patented sulphur dioxide physical absorption process) -> ClausMaster (11301ms)\nWhat is the chemical formula for sulphur dioxide?\tair quality indicator\t-10.968647032110827\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, air quality indicator) -> air quality indicator (11430ms)\nWhat is the chemical formula for sulphur dioxide?\tcolorless or transparent gas\t-10.972616278352719\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, colorless or transparent gas) -> colorless or transparent gas (11453ms)\nWhat is the chemical formula for sulphur dioxide?\tparticulate and noxious gas\t-10.972616278352719\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, particulate and noxious gas) -> particulate and noxious gas (11430ms)\nWhat is the chemical formula for sulphur dioxide?\ttoxic and poisonous gas\t-10.972616278352719\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, toxic and poisonous gas) -> toxic and poisonous gas (11430ms)\nWhat is the chemical formula for sulphur dioxide?\tcorrosive and irritating gas\t-10.972616278352719\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, corrosive and irritating gas) -> corrosive and irritating gas (11430ms)\nWhat is the chemical formula for sulphur dioxide?\tcolourless, non-flammable, non-explosive gas\t-10.972616278352719\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, colourless, non-flammable, non-explosive gas) -> colourless, non-flammable, non-explosive gas (11430ms)\nWhat is the chemical formula for sulphur dioxide?\tlocal and regional pollutant\t-10.972616278352719\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, local and regional pollutant) -> local and regional pollutant (11430ms)\nWhat is the chemical formula for sulphur dioxide?\tactive reducing agent\t-10.974711871875211\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, active reducing agent) -> active reducing agent (11453ms)\nWhat is the chemical formula for sulphur dioxide?\tair pollutant from motor vehicle\t-11.002234811849759\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, air pollutant from motor vehicle) -> air pollutant from motor vehicle (11453ms)\nWhat is the chemical formula for sulphur dioxide?\tcolourless, irritating and reactive gas\t-11.006935115802513\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, colourless, irritating and reactive gas) -> colourless, irritating and reactive gas (11452ms)\nWhat is the chemical formula for sulphur dioxide?\tGaua volcano\t-11.007598433209713\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was released from, Gaua volcano) -> Gaua volcano (11475ms)\nWhat is the chemical formula for sulphur dioxide?\tvolatile organic compound\t-11.023681700185849\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (volatile organic compound, Instance Of, emission of sulphur dioxide and resultant toxic co-pollutants) -> volatile organic compound (11475ms)\nWhat is the chemical formula for sulphur dioxide?\tair quality\t-11.041759599493291\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, air quality) -> air quality (11475ms)\nWhat is the chemical formula for sulphur dioxide?\tfossil fuel\t-11.048500905788195\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, fossil fuel) -> fossil fuel (11475ms)\nWhat is the chemical formula for sulphur dioxide?\tExhaust from a running car\t-11.048673397553879\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Exhaust from a running car, Instance Of, toxic cocktail of carbon monoxide, sulphur dioxide, oxide of nitrogen, benzene, toluene and xylene) -> Exhaust from a running car (11475ms)\nWhat is the chemical formula for sulphur dioxide?\tthroat irritation\t-11.053529298660946\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (throat irritation, Instance Of, acute effect of sulphur dioxide on the respiratory tract) -> throat irritation (11475ms)\nWhat is the chemical formula for sulphur dioxide?\tTamil Nadu, India TCP Limited\t-11.072054315998376\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Tamil Nadu, India TCP Limited, Instance Of, manufacturer, supplier and exporter of sodium hydrosulphite and liquid sulphur dioxide) -> Tamil Nadu, India TCP Limited (11500ms)\nWhat is the chemical formula for sulphur dioxide?\tgaseous precursor\t-11.08255420958902\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, gaseous precursor) -> gaseous precursor (11501ms)\nWhat is the chemical formula for sulphur dioxide?\tcommon preservative\t-11.110241732817796\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, common preservative) -> common preservative (11501ms)\nWhat is the chemical formula for sulphur dioxide?\tcarbon dioxide\t-11.111167744394429\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (carbon dioxide, Instance Of, water and the emission of sulphur dioxide and greenhouse gas) -> carbon dioxide (11501ms)\nWhat is the chemical formula for sulphur dioxide?\tSulphuric acid\t-11.13093283003177\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Sulphuric acid, Instance Of, oxidation product of sulphur dioxide) -> Sulphuric acid (11500ms)\nWhat is the chemical formula for sulphur dioxide?\tbleaching agent\t-11.132539921663366\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, bleaching agent) -> bleaching agent (11526ms)\nWhat is the chemical formula for sulphur dioxide?\tinorganic substance\t-11.161186861340113\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, inorganic substance) -> inorganic substance (11526ms)\nWhat is the chemical formula for sulphur dioxide?\tprecursor substance\t-11.17387538141786\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, precursor substance) -> precursor substance (11526ms)\nWhat is the chemical formula for sulphur dioxide?\tCoalcheck 24-7\t-11.197757915884917\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Coalcheck 24-7, Instance Of, biodegradable compound of flame inhibitor phophate esters, and sulphur dioxide absorbing chemical) -> Coalcheck 24-7 (11526ms)\nWhat is the chemical formula for sulphur dioxide?\toutdoor pollutant\t-11.202555936103005\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, outdoor pollutant) -> outdoor pollutant (11527ms)\nWhat is the chemical formula for sulphur dioxide?\ttoxic compound\t-11.21145703930104\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, toxic compound) -> toxic compound (11551ms)\nWhat is the chemical formula for sulphur dioxide?\tindustrial pollutant\t-11.250048510933754\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, industrial pollutant) -> industrial pollutant (11551ms)\nWhat is the chemical formula for sulphur dioxide?\ta big success--is\t-11.26320757902851\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, has been, a big success--is) -> a big success--is (11551ms)\nWhat is the chemical formula for sulphur dioxide?\ta toxin\t-11.282383255648778\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a toxin) -> a toxin (11551ms)\nWhat is the chemical formula for sulphur dioxide?\tnoxious pollutant\t-11.285802985847912\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, noxious pollutant) -> noxious pollutant (11572ms)\nWhat is the chemical formula for sulphur dioxide?\ttoxic emission\t-11.285802985847912\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, toxic emission) -> toxic emission (11572ms)\nWhat is the chemical formula for sulphur dioxide?\tundesirable constituent\t-11.285802985847912\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, undesirable constituent) -> undesirable constituent (11573ms)\nWhat is the chemical formula for sulphur dioxide?\tmetallic pollutant\t-11.285802985847912\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, metallic pollutant) -> metallic pollutant (11572ms)\nWhat is the chemical formula for sulphur dioxide?\tacidifying substance\t-11.285802985847912\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, acidifying substance) -> acidifying substance (11572ms)\nWhat is the chemical formula for sulphur dioxide?\ttrace material\t-11.289682954022522\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, trace material) -> trace material (11711ms)\nWhat is the chemical formula for sulphur dioxide?\tpollution factor\t-11.290249219689414\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, pollution factor) -> pollution factor (11711ms)\nWhat is the chemical formula for sulphur dioxide?\tvolatile fluid\t-11.291678366401706\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, volatile fluid) -> volatile fluid (11712ms)\nWhat is the chemical formula for sulphur dioxide?\tsynthetic additive\t-11.294312157578776\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, synthetic additive) -> synthetic additive (11712ms)\nWhat is the chemical formula for sulphur dioxide?\tactive substance\t-11.295178739624854\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, active substance) -> active substance (11712ms)\nWhat is the chemical formula for sulphur dioxide?\tanthropogenic stressors\t-11.295890903101895\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, anthropogenic stressors) -> anthropogenic stressors (11712ms)\nWhat is the chemical formula for sulphur dioxide?\tsulphuric acid\t-11.298026021081707\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was converted into, sulphuric acid) -> sulphuric acid (11733ms)\nWhat is the chemical formula for sulphur dioxide?\tparticulate material\t-11.299861486040205\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, particulate material) -> particulate material (11733ms)\nWhat is the chemical formula for sulphur dioxide?\tdried fruits\t-11.302837478373478\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is usually added to, dried fruits) -> dried fruits (11733ms)\nWhat is the chemical formula for sulphur dioxide?\tcopper smelter\t-11.309364883504335\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (copper smelter, Instance Of, source of sulphur dioxide) -> copper smelter (11733ms)\nWhat is the chemical formula for sulphur dioxide?\tpower plant\t-11.309364883504335\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (power plant, Instance Of, sulphur dioxide emitter) -> power plant (11733ms)\nWhat is the chemical formula for sulphur dioxide?\tpower station\t-11.309364883504335\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (power station, Instance Of, source of sulphur dioxide) -> power station (11733ms)\nWhat is the chemical formula for sulphur dioxide?\tE201\t-11.3211915301748\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (E201, Instance Of, form of sulphur dioxide) -> E201 (11760ms)\nWhat is the chemical formula for sulphur dioxide?\tsoft drinks\t-11.323796931884083\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is found in, soft drinks) -> soft drinks (11760ms)\nWhat is the chemical formula for sulphur dioxide?\tconvenient reagent\t-11.326930647885913\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, convenient reagent) -> convenient reagent (11760ms)\nWhat is the chemical formula for sulphur dioxide?\ta bactericide\t-11.328486744607723\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a bactericide) -> a bactericide (11761ms)\nWhat is the chemical formula for sulphur dioxide?\ttree bark\t-11.329785194806568\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (tree bark, Instance Of, sulphur dioxide acidifies substrate) -> tree bark (11761ms)\nWhat is the chemical formula for sulphur dioxide?\tPTB\t-11.333491789367743\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was associated with, PTB) -> PTB (11760ms)\nWhat is the chemical formula for sulphur dioxide?\thuman health\t-11.340301465205936\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, were intended to protect, human health) -> human health (11785ms)\nWhat is the chemical formula for sulphur dioxide?\tfossil fuel combustion\t-11.348146258960288\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are, fossil fuel combustion) -> fossil fuel combustion (11786ms)\nWhat is the chemical formula for sulphur dioxide?\tpower plants\t-11.360441247740406\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is created by, power plants) -> power plants (11786ms)\nWhat is the chemical formula for sulphur dioxide?\tparticulate matter\t-11.377432587845112\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (particulate matter, Instance Of, emission of sulphur dioxide and resultant toxic co-pollutants) -> particulate matter (11785ms)\nWhat is the chemical formula for sulphur dioxide?\ta good reducing agent\t-11.383458457944197\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a good reducing agent) -> a good reducing agent (11786ms)\nWhat is the chemical formula for sulphur dioxide?\tforest fire\t-11.383982479735128\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (forest fire, Instance Of, source of sulphur dioxide and oxide of nitrogen) -> forest fire (11786ms)\nWhat is the chemical formula for sulphur dioxide?\tThe electrical conductance of solutions in methylamine and ethylamine\t-11.38967961695048\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, edition, $x) -> (The electrical conductance of solutions in methylamine and ethylamine the fluidity of ammonia, methylamine and sulphur dioxide and the fluidity of certain solutions in these solvents, Edition Of, The electrical conductance of solutions in methylamine and ethylamine) -> The electrical conductance of solutions in methylamine and ethylamine (11856ms)\nWhat is the chemical formula for sulphur dioxide?\tThe contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region\t-11.38967961695048\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region, Editions, The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region) -> The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region (11856ms)\nWhat is the chemical formula for sulphur dioxide?\tharmful greenhouse gas\t-11.412103771488068\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, harmful greenhouse gas) -> harmful greenhouse gas (11924ms)\nWhat is the chemical formula for sulphur dioxide?\ta well established phenomenon\t-11.417058015506523\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is, a well established phenomenon) -> a well established phenomenon (11924ms)\nWhat is the chemical formula for sulphur dioxide?\tHYDRANAL Composite 5 K\t-11.436644828691271\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (HYDRANAL Composite 5 K, Instance Of, formulation consisting of imidazole, sulphur dioxide, and iodine) -> HYDRANAL Composite 5 K (11924ms)\nWhat is the chemical formula for sulphur dioxide?\ta very dense gas\t-11.474466301282673\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a very dense gas) -> a very dense gas (11944ms)\nWhat is the chemical formula for sulphur dioxide?\ta colourless gas\t-11.50664236949805\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a colourless gas) -> a colourless gas (11944ms)\nWhat is the chemical formula for sulphur dioxide?\ttraditional air pollutant\t-11.519089848385502\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, traditional air pollutant) -> traditional air pollutant (11944ms)\nWhat is the chemical formula for sulphur dioxide?\tcommon household gas\t-11.545045292114333\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, common household gas) -> common household gas (11944ms)\nWhat is the chemical formula for sulphur dioxide?\tprominent examples\t-11.566484710197466\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are, prominent examples) -> prominent examples (11944ms)\nWhat is the chemical formula for sulphur dioxide?\tsevere leaf damage\t-11.583437235033452\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, should be avoided as, severe leaf damage) -> severe leaf damage (11964ms)\nWhat is the chemical formula for sulphur dioxide?\ta dense colourless gas\t-11.597926294839295\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a dense colourless gas) -> a dense colourless gas (11964ms)\nWhat is the chemical formula for sulphur dioxide?\ta result\t-11.601339905535532\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is emitted as, a result) -> a result (11964ms)\nWhat is the chemical formula for sulphur dioxide?\tcriterion air contaminant\t-11.616985681001394\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, criterion air contaminant) -> criterion air contaminant (11964ms)\nWhat is the chemical formula for sulphur dioxide?\ta preservative\t-11.6385407768295\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur Dioxide, is added as, a preservative) -> a preservative (11965ms)\nWhat is the chemical formula for sulphur dioxide?\tKalgoorlie\t-11.643914318017288\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Kalgoorlie, Instance Of, sulphur dioxide problem area) -> Kalgoorlie (11984ms)\nWhat is the chemical formula for sulphur dioxide?\tKwinana\t-11.643914318017288\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Kwinana, Instance Of, sulphur dioxide problem area) -> Kwinana (11984ms)\nWhat is the chemical formula for sulphur dioxide?\tTazzetti\t-11.643914318017288\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Tazzetti, Instance Of, established supplier of sulphur dioxide) -> Tazzetti (11984ms)\nWhat is the chemical formula for sulphur dioxide?\tCollie\t-11.643914318017288\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Collie, Instance Of, sulphur dioxide problem area) -> Collie (11984ms)\nWhat is the chemical formula for sulphur dioxide?\tAromax\t-11.66433462931952\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Aromax, Instance Of, oenological agent containing sulphur dioxide) -> Aromax (11984ms)\nWhat is the chemical formula for sulphur dioxide?\t200 ppm\t-11.665726080138475\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is, 200 ppm) -> 200 ppm (11984ms)\nWhat is the chemical formula for sulphur dioxide?\tserious questions\t-11.68254653820653\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, alone are enough to raise, serious questions) -> serious questions (12146ms)\nWhat is the chemical formula for sulphur dioxide?\ttransboundary air pollutant\t-11.702652004992842\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, transboundary air pollutant) -> transboundary air pollutant (12147ms)\nWhat is the chemical formula for sulphur dioxide?\tmajor phytotoxicants\t-11.70997988138114\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are, major phytotoxicants) -> major phytotoxicants (12146ms)\nWhat is the chemical formula for sulphur dioxide?\tdangerous air pollutant\t-11.710877537523013\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, dangerous air pollutant) -> dangerous air pollutant (12147ms)\nWhat is the chemical formula for sulphur dioxide?\tacceptable limits\t-11.712333040646893\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was well below, acceptable limits) -> acceptable limits (12170ms)\nWhat is the chemical formula for sulphur dioxide?\tBiomass\t-11.724520809999785\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Biomass, Instance Of, carbon dioxide neutral and sulphur free method of burning fuel) -> Biomass (12170ms)\nWhat is the chemical formula for sulphur dioxide?\tcriterion air pollutant\t-11.732563032820988\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, criterion air pollutant) -> criterion air pollutant (12170ms)\nWhat is the chemical formula for sulphur dioxide?\t15 ppm\t-11.75567936798824\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is less than, 15 ppm) -> 15 ppm (12170ms)\nWhat is the chemical formula for sulphur dioxide?\t56 percent\t-11.75862714519899\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, has fallen, 56 percent) -> 56 percent (12341ms)\nWhat is the chemical formula for sulphur dioxide?\t65 percent\t-11.772665860333088\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (acid rain-causing sulphur dioxide, have declined by, 65 percent) -> 65 percent (12341ms)\nWhat is the chemical formula for sulphur dioxide?\tacid rain\t-11.7831140353241\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, may have created, acid rain) -> acid rain (12341ms)\nWhat is the chemical formula for sulphur dioxide?\tcoal containing sulphur\t-11.784368271794982\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (coal containing sulphur, released, sulphur dioxide) -> coal containing sulphur (12341ms)\nWhat is the chemical formula for sulphur dioxide?\tlower worldwide\t-11.805173824914817\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are expected to be, lower worldwide) -> lower worldwide (12341ms)\nWhat is the chemical formula for sulphur dioxide?\ta gas\t-11.823091333737949\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is emitted as, a gas) -> a gas (12341ms)\nWhat is the chemical formula for sulphur dioxide?\ta known preservative\t-11.85948969155038\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a known preservative) -> a known preservative (12399ms)\nWhat is the chemical formula for sulphur dioxide?\ta natural substance\t-11.862267467130348\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a natural substance) -> a natural substance (12398ms)\nWhat is the chemical formula for sulphur dioxide?\tsignificant pollutant\t-11.903319780291614\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is identified as, significant pollutant) -> significant pollutant (12398ms)\nWhat is the chemical formula for sulphur dioxide?\tvarious industries\t-11.911704982489207\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur Dioxide, is used in, various industries) -> various industries (12398ms)\nWhat is the chemical formula for sulphur dioxide?\t4.2 percent\t-11.933403153509628\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, were up by, 4.2 percent) -> 4.2 percent (12398ms)\nWhat is the chemical formula for sulphur dioxide?\ta common preservative\t-11.936540073463771\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a common preservative) -> a common preservative (12421ms)\nWhat is the chemical formula for sulphur dioxide?\ta commercial preservative\t-11.938894822927015\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is widely used as, a commercial preservative) -> a commercial preservative (12421ms)\nWhat is the chemical formula for sulphur dioxide?\t500 km\t-11.94297184282808\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, was detected, 500 km) -> 500 km (12421ms)\nWhat is the chemical formula for sulphur dioxide?\tsulphur trioxide\t-11.973432738246741\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, has to be converted into, sulphur trioxide) -> sulphur trioxide (12421ms)\nWhat is the chemical formula for sulphur dioxide?\trecent years\t-11.988464065172266\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, have been falling over, recent years) -> recent years (12421ms)\nWhat is the chemical formula for sulphur dioxide?\tvisibility problems\t-12.003662965931163\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is a major source of, visibility problems) -> visibility problems (12421ms)\nWhat is the chemical formula for sulphur dioxide?\tmore than 99\t-12.03263006348975\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is used by, more than 99) -> more than 99 (12442ms)\nWhat is the chemical formula for sulphur dioxide?\tto 17 times\t-12.036398898352466\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was found at up, to 17 times) -> to 17 times (12443ms)\nWhat is the chemical formula for sulphur dioxide?\tan indicator pollutant\t-12.095528672528188\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, has been chosen as, an indicator pollutant) -> an indicator pollutant (12442ms)\nWhat is the chemical formula for sulphur dioxide?\tSmelting operations\t-12.118226854866096\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (Smelting operations, release, sulphur dioxide) -> Smelting operations (12443ms)\nWhat is the chemical formula for sulphur dioxide?\tEarth\t-12.118466908534396\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, could have plunged, Earth) -> Earth (12443ms)\nWhat is the chemical formula for sulphur dioxide?\tAgra\t-12.142496541253678\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (Agra, released a large amount of, sulphur dioxides) -> Agra (12443ms)\nWhat is the chemical formula for sulphur dioxide?\tbuilding materials\t-12.14386672477346\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, have effects on, building materials) -> building materials (12443ms)\nWhat is the chemical formula for sulphur dioxide?\ta pungent odour\t-12.219185495830686\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is a colourless gas with, a pungent odour) -> a pungent odour (12464ms)\nWhat is the chemical formula for sulphur dioxide?\tVolcanoes\t-12.233408642974853\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (Volcanoes, can release massive quantities of, sulphur dioxide) -> Volcanoes (12464ms)\nWhat is the chemical formula for sulphur dioxide?\t44\t-12.336735479861307\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide emissions, have been reduced by, 44) -> 44 (12464ms)\nWhat is the chemical formula for sulphur dioxide?\tglobal climatic cooling\t-12.351670121804304\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, would have led to, global climatic cooling) -> global climatic cooling (12464ms)\nWhat is the chemical formula for sulphur dioxide?\tfresh pet meats\t-12.356993651216301\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur Dioxide, is added to, fresh pet meats) -> fresh pet meats (12464ms)\nWhat is the chemical formula for sulphur dioxide?\tsuch a universal additive\t-12.357070248786416\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has become, such a universal additive) -> such a universal additive (12464ms)\nWhat is the chemical formula for sulphur dioxide?\tstacks and disperses\t-12.418003303426389\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is released from, stacks and disperses) -> stacks and disperses (12494ms)\nWhat is the chemical formula for sulphur dioxide?\ta colourless gas with a strong odour\t-12.419863065705963\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a colourless gas with a strong odour) -> a colourless gas with a strong odour (12494ms)\nWhat is the chemical formula for sulphur dioxide?\tEurope\t-12.421827491784102\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, have declined significantly in, Europe) -> Europe (12494ms)\nWhat is the chemical formula for sulphur dioxide?\tsimilar effects\t-12.468039931804716\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur and carbon dioxide, would have had, similar effects) -> similar effects (12494ms)\nWhat is the chemical formula for sulphur dioxide?\t300\t-12.509042138467946\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide emissions, have risen from, 300) -> 300 (12494ms)\nWhat is the chemical formula for sulphur dioxide?\ta high energy density\t-12.54556767436759\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Lithium-sulphur dioxide cells, have, a high energy density) -> a high energy density (12494ms)\nWhat is the chemical formula for sulphur dioxide?\trotten eggs\t-12.620121995480536\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, has a smell like, rotten eggs) -> rotten eggs (12526ms)\nWhat is the chemical formula for sulphur dioxide?\t4.6 m\t-12.662061477330377\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide and water, has a diameter of, 4.6 m) -> 4.6 m (12526ms)\nWhat is the chemical formula for sulphur dioxide?\tpower stations\t-12.675375418588384\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, come, $x) -> (the UK sulphur dioxide, comes from, power stations) -> power stations (13373ms)\nWhat is the chemical formula for sulphur dioxide?\tmore than 60 percent\t-12.69106225102799\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, have declined by, more than 60 percent) -> more than 60 percent (12526ms)\nWhat is the chemical formula for sulphur dioxide?\tminor reactions\t-12.706365771670868\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has had, minor reactions) -> minor reactions (12526ms)\nWhat is the chemical formula for sulphur dioxide?\trecent decades\t-12.718660149948043\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, have fallen considerably in, recent decades) -> recent decades (12525ms)\nWhat is the chemical formula for sulphur dioxide?\t89\t-12.742470352388253\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, had still fallen by, 89) -> 89 (12548ms)\nWhat is the chemical formula for sulphur dioxide?\tpreserve the taste of wine\t-12.773657676973759\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is used evident to, preserve the taste of wine) -> preserve the taste of wine (12548ms)\nWhat is the chemical formula for sulphur dioxide?\turban areas\t-12.792154067324647\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, concentrate, $x) -> (sulphur dioxide, are more concentrated in, urban areas) -> urban areas (13436ms)\nWhat is the chemical formula for sulphur dioxide?\tthe major causes\t-12.831889651337487\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is one of, the major causes) -> the major causes (12548ms)\nWhat is the chemical formula for sulphur dioxide?\ta high level\t-12.840516326360211\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide emissions, have remained at, a high level) -> a high level (12548ms)\nWhat is the chemical formula for sulphur dioxide?\tthe air\t-12.884705268083518\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are discarded into, the air) -> the air (12548ms)\nWhat is the chemical formula for sulphur dioxide?\tchemical\t-12.886301708923734\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, chemical) -> chemical (12548ms)\nWhat is the chemical formula for sulphur dioxide?\tthe atmosphere ?\t-12.889854439848989\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was present in, the atmosphere ?) -> the atmosphere ? (12548ms)\nWhat is the chemical formula for sulphur dioxide?\tthe wine making process\t-12.952090415195704\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is used in, the wine making process) -> the wine making process (12548ms)\nWhat is the chemical formula for sulphur dioxide?\tthe main causes\t-12.964454729848157\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is one of, the main causes) -> the main causes (12569ms)\nWhat is the chemical formula for sulphur dioxide?\ta haze\t-12.974225771730946\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, form, $x) -> (sulphur dioxide, formed, a haze) -> a haze (13436ms)\nWhat is the chemical formula for sulphur dioxide?\tthe winter months\t-12.999204155875676\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, tend to be higher in, the winter months) -> the winter months (12569ms)\nWhat is the chemical formula for sulphur dioxide?\tthe southeast\t-13.022663388448922\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are evident in, the southeast) -> the southeast (12569ms)\nWhat is the chemical formula for sulphur dioxide?\ta minimum\t-13.036392755224231\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, keep, $x) -> (sulphur dioxide, was kept to, a minimum) -> a minimum (13373ms)\nWhat is the chemical formula for sulphur dioxide?\tthe most important factor\t-13.081183263526947\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was identified as, the most important factor) -> the most important factor (12569ms)\nWhat is the chemical formula for sulphur dioxide?\tatmosphere\t-13.082777675694762\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, atmosphere) -> atmosphere (12569ms)\nWhat is the chemical formula for sulphur dioxide?\tthe solution\t-13.118156731920136\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was released by, the solution) -> the solution (12569ms)\nWhat is the chemical formula for sulphur dioxide?\tmold\t-13.1320703743051\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is recommended for, mold) -> mold (12604ms)\nWhat is the chemical formula for sulphur dioxide?\twater\t-13.133167271809025\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, chemical, sulphur dioxide) -> (water, is a chemical that is a kind of, Sulphur dioxide) -> water (12604ms)\nWhat is the chemical formula for sulphur dioxide?\tvolcanoes\t-13.158223159259068\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are, volcanoes) -> volcanoes (12604ms)\nWhat is the chemical formula for sulphur dioxide?\tpreservative\t-13.168238745992564\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, preservative) -> preservative (12604ms)\nWhat is the chemical formula for sulphur dioxide?\ta necessary 'disinfectant '\t-13.177343341626653\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, use, $x) -> (Sulphur dioxide, is widely used as, a necessary 'disinfectant ') -> a necessary 'disinfectant ' (13373ms)\nWhat is the chemical formula for sulphur dioxide?\t2007\t-13.17960005830567\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, has clearly been falling since, 2007) -> 2007 (12604ms)\nWhat is the chemical formula for sulphur dioxide?\tthe volcano\t-13.182874866759247\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, have been reported at, the volcano) -> the volcano (12604ms)\nWhat is the chemical formula for sulphur dioxide?\tthe picture\t-13.20315076924652\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are also part of, the picture) -> the picture (12604ms)\nWhat is the chemical formula for sulphur dioxide?\tspecies\t-13.24169544535864\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, species) -> species (12626ms)\nWhat is the chemical formula for sulphur dioxide?\tnose\t-13.247683105919215\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (nose, Instance Of, acute effect of sulphur dioxide on the respiratory tract) -> nose (12626ms)\nWhat is the chemical formula for sulphur dioxide?\tthe atmosphere\t-13.25242958768587\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was released into, the atmosphere) -> the atmosphere (12625ms)\nWhat is the chemical formula for sulphur dioxide?\tthe color\t-13.261633025927702\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is used to fix, the color) -> the color (12626ms)\nWhat is the chemical formula for sulphur dioxide?\tthe burning\t-13.27023874289366\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is formed by, the burning) -> the burning (12626ms)\nWhat is the chemical formula for sulphur dioxide?\tthe stratosphere\t-13.288742352700908\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, were injected into, the stratosphere) -> the stratosphere (12626ms)\nWhat is the chemical formula for sulphur dioxide?\tthe combustion\t-13.332132581504844\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is produced by, the combustion) -> the combustion (12647ms)\nWhat is the chemical formula for sulphur dioxide?\tsulphuric acids\t-13.398415565107946\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, concentrate, $x) -> (Sulphur dioxide, concentrated, sulphuric acids) -> sulphuric acids (13436ms)\nWhat is the chemical formula for sulphur dioxide?\tzinc\t-13.422318347372698\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (zinc, Instance Of, sulphur dioxide-containing gas) -> zinc (12647ms)\nWhat is the chemical formula for sulphur dioxide?\tcomponent\t-13.426124922574475\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, component) -> component (12647ms)\nWhat is the chemical formula for sulphur dioxide?\thumans\t-13.429499216681522\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are damaging to, humans) -> humans (12647ms)\nWhat is the chemical formula for sulphur dioxide?\trefrigerant\t-13.441170496010221\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, refrigerant) -> refrigerant (12669ms)\nWhat is the chemical formula for sulphur dioxide?\tyeast\t-13.442035503604256\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, can be produced by, yeast) -> yeast (12669ms)\nWhat is the chemical formula for sulphur dioxide?\tfume\t-13.480495790764987\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, fume) -> fume (12670ms)\nWhat is the chemical formula for sulphur dioxide?\tsterilant\t-13.486371171318781\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, sterilant) -> sterilant (12670ms)\nWhat is the chemical formula for sulphur dioxide?\tselenium\t-13.50707292488766\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (selenium, Instance Of, sulphur dioxide rare earth metal) -> selenium (12670ms)\nWhat is the chemical formula for sulphur dioxide?\trhenium\t-13.50707292488766\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (rhenium, Instance Of, sulphur dioxide rare earth metal) -> rhenium (12669ms)\nWhat is the chemical formula for sulphur dioxide?\tboiler\t-13.53154656902057\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (boiler, Instance Of, localized source of sulphur dioxide) -> boiler (12691ms)\nWhat is the chemical formula for sulphur dioxide?\trock\t-13.53154656902057\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (rock, Instance Of, sulphur dioxide acidifies substrate) -> rock (12691ms)\nWhat is the chemical formula for sulphur dioxide?\tlimestone\t-13.53154656902057\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (limestone, Instance Of, sulphur dioxide absorbent material) -> limestone (12691ms)\nWhat is the chemical formula for sulphur dioxide?\tdolomite\t-13.53154656902057\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (dolomite, Instance Of, sulphur dioxide absorbent material) -> dolomite (12691ms)\nWhat is the chemical formula for sulphur dioxide?\tincinerator\t-13.53154656902057\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (incinerator, Instance Of, localized source of sulphur dioxide) -> incinerator (12691ms)\nWhat is the chemical formula for sulphur dioxide?\thigh concentrations\t-13.543502765419506\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, lead, $x) -> (sulphur dioxide, leads to, high concentrations) -> high concentrations (13692ms)\nWhat is the chemical formula for sulphur dioxide?\tthe interior\t-13.564143671894655\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, release, $x) -> (sulphur dioxide and nitrogen, were released from, the interior) -> the interior (12691ms)\nWhat is the chemical formula for sulphur dioxide?\txylene\t-13.585600334232362\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (xylene, Instance Of, emission of sulphur dioxide and toxic aromatic substance) -> xylene (12691ms)\nWhat is the chemical formula for sulphur dioxide?\tbenzene\t-13.585600334232362\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (benzene, Instance Of, emission of sulphur dioxide and toxic aromatic substance) -> benzene (12711ms)\nWhat is the chemical formula for sulphur dioxide?\ttoluene\t-13.585600334232362\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (toluene, Instance Of, emission of sulphur dioxide and toxic aromatic substance) -> toluene (12691ms)\nWhat is the chemical formula for sulphur dioxide?\tvolcano\t-13.590398483731256\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (volcano, Instance Of, source of sulphur dioxide and oxide of nitrogen) -> volcano (12711ms)\nWhat is the chemical formula for sulphur dioxide?\tocean\t-13.590398483731256\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (ocean, Instance Of, source of sulphur dioxide and oxide of nitrogen) -> ocean (12711ms)\nWhat is the chemical formula for sulphur dioxide?\tthe acid rain\t-13.611141026922464\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, so has, the acid rain) -> the acid rain (12711ms)\nWhat is the chemical formula for sulphur dioxide?\tcalcium\t-13.612153061003069\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (calcium, Instance Of, sulfonation using a solution of sulphur dioxide and alkaline oxide) -> calcium (12711ms)\nWhat is the chemical formula for sulphur dioxide?\tsodium\t-13.612153061003069\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (sodium, Instance Of, sulfonation using a solution of sulphur dioxide and alkaline oxide) -> sodium (12837ms)\nWhat is the chemical formula for sulphur dioxide?\tmagnesium\t-13.612153061003069\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (magnesium, Instance Of, sulfonation using a solution of sulphur dioxide and alkaline oxide) -> magnesium (12711ms)\nWhat is the chemical formula for sulphur dioxide?\tgirls\t-13.674630299082967\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was most harmful for, girls) -> girls (12838ms)\nWhat is the chemical formula for sulphur dioxide?\tthe same effecto\t-13.70212043461266\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has, the same effecto) -> the same effecto (12838ms)\nWhat is the chemical formula for sulphur dioxide?\tthe bean plant\t-13.841916628937186\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (the sulphur dioxide, have on, the bean plant) -> the bean plant (12837ms)\nWhat is the chemical formula for sulphur dioxide?\tnucleation and growth\t-13.873784171074313\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, lead, $x) -> (smoke and sulphur dioxide, led to, nucleation and growth) -> nucleation and growth (13743ms)\nWhat is the chemical formula for sulphur dioxide?\tthe chemical formula\t-13.924270966075149\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulfur dioxide   or Sulphur dioxide, has, the chemical formula) -> the chemical formula (12837ms)\nWhat is the chemical formula for sulphur dioxide?\twine\t-13.9268563957885\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is to, wine) -> wine (12837ms)\nWhat is the chemical formula for sulphur dioxide?\tareas\t-14.044817414636704\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are recorded in, areas) -> areas (12903ms)\nWhat is the chemical formula for sulphur dioxide?\tplants\t-14.083394459642157\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is damaging to, plants) -> plants (12903ms)\nWhat is the chemical formula for sulphur dioxide?\tsmelters\t-14.088143075313386\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is released by, smelters) -> smelters (12903ms)\nWhat is the chemical formula for sulphur dioxide?\tfireworks\t-14.098032538897575\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (fireworks, release large quantities of, sulphur dioxide) -> fireworks (12903ms)\nWhat is the chemical formula for sulphur dioxide?\taround 500 tonnes/day\t-14.111271600143105\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide flux, has risen to, around 500 tonnes/day) -> around 500 tonnes/day (12903ms)\nWhat is the chemical formula for sulphur dioxide?\tthe reduction\t-14.162512892417276\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (UK sulphur dioxide, have occurred largely through, the reduction) -> the reduction (12921ms)\nWhat is the chemical formula for sulphur dioxide?\thealth\t-14.408573697833113\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has a direct effect on, health) -> health (12921ms)\nWhat is the chemical formula for sulphur dioxide?\tthe wine industry\t-14.443034459554967\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, use, $x) -> (Sulphur dioxide, is widely used today in, the wine industry) -> the wine industry (13743ms)\nWhat is the chemical formula for sulphur dioxide?\teffect\t-14.513876621992823\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide emissions, have been in, effect) -> effect (12921ms)\nWhat is the chemical formula for sulphur dioxide?\tbleaching\t-14.545837971431043\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, use, $x) -> (Sulphur dioxide, is used for, bleaching) -> bleaching (13804ms)\nWhat is the chemical formula for sulphur dioxide?\tapplications\t-14.879683854561398\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has a number of, applications) -> applications (12997ms)\nWhat is the chemical formula for sulphur dioxide?\ttoxic\t-15.239808521602432\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur Dioxide, is, toxic) -> toxic (12997ms)\nWhat is the chemical formula for sulphur dioxide?\tassemblage\t-15.258173848749047\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, use, $x) -> (sulphur dioxide, used just at, assemblage) -> assemblage (13962ms)\nWhat is the chemical formula for sulphur dioxide?\treductions\t-15.75065307130792\tWhat is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, contribute, $x) -> (sulphur dioxide emissions, contribute to, reductions) -> reductions (13962ms)\nWhere is Venezuela?\tMaracaibo\t-0.4804764322558752\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Maracaibo) -> Maracaibo (3355ms)\nWhere is Venezuela?\tCaracas\t-0.5308111214186638\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Caracas) -> Caracas (3355ms)\nWhere is Venezuela?\tMoscow\t-0.6184164865497651\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, would be signed in, Moscow) -> Moscow (3355ms)\nWhere is Venezuela?\tCountries\t-1.0236735349725692\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, Countries) -> Countries (3355ms)\nWhere is Venezuela?\tMiraflores\t-1.1246454666975618\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, Miraflores) -> Miraflores (3355ms)\nWhere is Venezuela?\tBritain\t-1.1657108199639568\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Britain) -> Britain (3355ms)\nWhere is Venezuela?\tBolivars\t-1.208087726112286\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Bolivars) -> Bolivars (3518ms)\nWhere is Venezuela?\tNorth America\t-1.2982974321837053\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, North America) -> North America (3517ms)\nWhere is Venezuela?\tsouth America\t-1.7846310119335982\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, south America) -> south America (3517ms)\nWhere is Venezuela?\tPool A\t-1.8920757566462114\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, Pool A) -> Pool A (3518ms)\nWhere is Venezuela?\tSTATES\t-2.1207353665002087\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, STATES) -> STATES (3518ms)\nWhere is Venezuela?\tconformity\t-2.1360565681792814\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, conformity) -> conformity (3517ms)\nWhere is Venezuela?\tsolidarity\t-2.1425121314087674\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, solidarity) -> solidarity (3568ms)\nWhere is Venezuela?\tSouth American Countries\t-2.1482242470993684\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, South American Countries) -> South American Countries (3567ms)\nWhere is Venezuela?\tsingle digits\t-2.1944524786637505\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, single digits) -> single digits (3567ms)\nWhere is Venezuela?\tgood shape\t-2.2068312463859874\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, good shape) -> good shape (3567ms)\nWhere is Venezuela?\tfirst place\t-2.2174416413060305\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, first place) -> first place (3567ms)\nWhere is Venezuela?\tlight\t-2.2231647621551986\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, light) -> light (3567ms)\nWhere is Venezuela?\tdesperate need\t-2.2510411461660604\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, desperate need) -> desperate need (3610ms)\nWhere is Venezuela?\tslavery\t-2.2515236640336096\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, were in, slavery) -> slavery (3610ms)\nWhere is Venezuela?\ta better situation\t-2.259141865635275\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a better situation) -> a better situation (3610ms)\nWhere is Venezuela?\tfourth place\t-2.3030836125839143\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, fourth place) -> fourth place (3610ms)\nWhere is Venezuela?\ta strategic location\t-2.3311541118561143\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a strategic location) -> a strategic location (3610ms)\nWhere is Venezuela?\trecessions\t-2.3655851854393264\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, recessions) -> recessions (3610ms)\nWhere is Venezuela?\tneed\t-2.3866807062004405\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, need) -> need (3695ms)\nWhere is Venezuela?\tNorthern South America\t-2.403650535964786\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Northern South America) -> Northern South America (3695ms)\nWhere is Venezuela?\tfact\t-2.412939631733078\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, fact) -> fact (3695ms)\nWhere is Venezuela?\tthe Perija mountains\t-2.4204580978173578\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Perija mountains) -> the Perija mountains (3695ms)\nWhere is Venezuela?\tsecond place\t-2.4463236541418825\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, second place) -> second place (3695ms)\nWhere is Venezuela?\ta critical situation\t-2.4478036243378654\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a critical situation) -> a critical situation (3695ms)\nWhere is Venezuela?\toil\t-2.4553046401343606\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been awash in, oil) -> oil (3759ms)\nWhere is Venezuela?\ta state\t-2.4626827691572446\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a state) -> a state (3760ms)\nWhere is Venezuela?\tthe US Congress\t-2.4906276813332857\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is being prepared in, the US Congress) -> the US Congress (3759ms)\nWhere is Venezuela?\tthe Yellow Fever zone\t-2.502122262654426\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Yellow Fever zone) -> the Yellow Fever zone (3760ms)\nWhere is Venezuela?\ta similar suitation\t-2.5158868731613158\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a similar suitation) -> a similar suitation (3759ms)\nWhere is Venezuela?\tSouth America\t-2.626171538495637\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a country in, South America) -> South America (3760ms)\nWhere is Venezuela?\tRecently\t-2.7960808413022695\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been in the news, Recently) -> Recently (3811ms)\nWhere is Venezuela?\tcontact\t-2.9456000211572464\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, contact) -> contact (3811ms)\nWhere is Venezuela?\tdanger\t-2.9587377589039017\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, danger) -> danger (3811ms)\nWhere is Venezuela?\tColombia\t-2.9603779483030808\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be all in, $x) -> (Venezuela, are all active in, Colombia) -> Colombia (4618ms)\nWhere is Venezuela?\tshambles\t-2.9932820984144497\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, shambles) -> shambles (3842ms)\nWhere is Venezuela?\tline\t-3.0066096733673344\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, were in, line) -> line (3842ms)\nWhere is Venezuela?\tdiscussions\t-3.032351130730291\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, discussions) -> discussions (3842ms)\nWhere is Venezuela?\ta mess\t-3.046134667664461\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a mess) -> a mess (3842ms)\nWhere is Venezuela?\tTripoli\t-3.090829250267732\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, Tripoli) -> Tripoli (3903ms)\nWhere is Venezuela?\tcontrol\t-3.0940806656968336\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, control) -> control (3903ms)\nWhere is Venezuela?\tItaly\t-3.100276159903097\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Brazil , Venezuela and Argentina, are also strong in, Italy) -> Italy (4307ms)\nWhere is Venezuela?\ttrouble\t-3.1016461969182902\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, trouble) -> trouble (3903ms)\nWhere is Venezuela?\tturmoil\t-3.1144817845607857\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, turmoil) -> turmoil (3903ms)\nWhere is Venezuela?\tHavana\t-3.1771846891585884\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, arrived in, Havana) -> Havana (4090ms)\nWhere is Venezuela?\tHaiti\t-3.19758580802254\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, happened in, Haiti) -> Haiti (4090ms)\nWhere is Venezuela?\tBaghdad\t-3.2179223060569413\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, gathered in, Baghdad) -> Baghdad (4090ms)\nWhere is Venezuela?\tthe Middle East\t-3.2294730490159838\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Middle East) -> the Middle East (4090ms)\nWhere is Venezuela?\tBarcelona\t-3.2381942886663815\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, works in, Barcelona) -> Barcelona (4091ms)\nWhere is Venezuela?\tQuito\t-3.248869251713681\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, held in, Quito) -> Quito (4185ms)\nWhere is Venezuela?\tpoint\t-3.2606164268515228\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a case in, point) -> point (4185ms)\nWhere is Venezuela?\tLatin America\t-3.2888700940730367\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is the only country in, Latin America) -> Latin America (4185ms)\nWhere is Venezuela?\tJuly\t-3.3848929670412184\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was formally accepted in, July) -> July (4185ms)\nWhere is Venezuela?\tCuba\t-3.417412764873423\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remains in, Cuba) -> Cuba (4237ms)\nWhere is Venezuela?\tPuerto Rico\t-3.576509721635208\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also popular in, Puerto Rico) -> Puerto Rico (4308ms)\nWhere is Venezuela?\tpolitical turmoil\t-3.7678197674899803\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, political turmoil) -> political turmoil (4308ms)\nWhere is Venezuela?\tfifth place\t-3.7795862926526693\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, fifth place) -> fifth place (4343ms)\nWhere is Venezuela?\tthe 60 meterband\t-3.7805421247317614\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, the 60 meterband) -> the 60 meterband (4343ms)\nWhere is Venezuela?\tEnglish\t-3.788028786715161\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, now am reading in, English) -> English (4539ms)\nWhere is Venezuela?\tSaudi Arabia\t-3.820565545599858\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be then in, $x) -> (Venezuela, are larger then those in, Saudi Arabia) -> Saudi Arabia (4576ms)\nWhere is Venezuela?\tnorthern South America\t-3.857463463907936\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a country in, northern South America) -> northern South America (4343ms)\nWhere is Venezuela?\truins\t-3.8631833862691956\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, ruins) -> ruins (4343ms)\nWhere is Venezuela?\tAsuncion\t-3.8660203905983117\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, met in, Asuncion) -> Asuncion (4372ms)\nWhere is Venezuela?\tLos Angeles\t-3.8942708228868765\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, raised in, Los Angeles) -> Los Angeles (4372ms)\nWhere is Venezuela?\tFebruary\t-3.920467472226517\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, warned in, February) -> February (4372ms)\nWhere is Venezuela?\ta state of political turmoil\t-3.963369094372764\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a state of political turmoil) -> a state of political turmoil (4428ms)\nWhere is Venezuela?\tpolitical and social hatred\t-3.963369094372764\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is boiling in, political and social hatred) -> political and social hatred (4428ms)\nWhere is Venezuela?\tSeptember\t-3.9744035805255375\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, starts in, September) -> September (4428ms)\nWhere is Venezuela?\tthe Americas\t-4.018689273528114\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, only be in, $x) -> (Venezuela, is the only state in, the Americas) -> the Americas (4428ms)\nWhere is Venezuela?\tthe government power\t-4.029874042294728\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, the government power) -> the government power (4539ms)\nWhere is Venezuela?\tthe midst\t-4.042137231529782\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the midst) -> the midst (4540ms)\nWhere is Venezuela?\tthe thrall\t-4.050495075759802\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the thrall) -> the thrall (4539ms)\nWhere is Venezuela?\tthe wings\t-4.056749001397028\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the wings) -> the wings (4576ms)\nWhere is Venezuela?\tmore than 20 tax treaties\t-4.058398947976511\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, more than 20 tax treaties) -> more than 20 tax treaties (4576ms)\nWhere is Venezuela?\tthe process\t-4.0673339154577794\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the process) -> the process (4576ms)\nWhere is Venezuela?\tthe provision\t-4.07178038102485\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the provision) -> the provision (4576ms)\nWhere is Venezuela?\tthe semifinals\t-4.088580133454864\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the semifinals) -> the semifinals (4577ms)\nWhere is Venezuela?\tthe grip\t-4.127912228606901\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the grip) -> the grip (4618ms)\nWhere is Venezuela?\tthe southern state\t-4.135977780685986\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the southern state) -> the southern state (4618ms)\nWhere is Venezuela?\tthe middle\t-4.183189290524982\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the middle) -> the middle (4683ms)\nWhere is Venezuela?\tthe region\t-4.193407433652023\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the region) -> the region (4682ms)\nWhere is Venezuela?\tthe energy sector\t-4.203176790406045\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the energy sector) -> the energy sector (4682ms)\nWhere is Venezuela?\tthe crapper\t-4.207882257842201\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the crapper) -> the crapper (4682ms)\nWhere is Venezuela?\tthe throes\t-4.228283376706152\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the throes) -> the throes (4682ms)\nWhere is Venezuela?\tthe interests\t-4.285407179753926\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is being run in, the interests) -> the interests (4718ms)\nWhere is Venezuela?\ttalks\t-4.4756415966045\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, talks) -> talks (4745ms)\nWhere is Venezuela?\tprogress\t-4.560180215196898\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a work in, progress) -> progress (4796ms)\nWhere is Venezuela?\tan international pageant\t-4.57380689127649\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, an international pageant) -> an international pageant (4797ms)\nWhere is Venezuela?\tpolitical limbo\t-4.575914452883151\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Venezuela, would be in, political limbo) -> political limbo (4797ms)\nWhere is Venezuela?\tany danger\t-4.665810108969874\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be nt in, $x) -> (Venezuela, is n?t in, any danger) -> any danger (4910ms)\nWhere is Venezuela?\ta news conference\t-4.670248989276057\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, highlighted in, a news conference) -> a news conference (4910ms)\nWhere is Venezuela?\teditorials\t-4.717277986854089\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be often in, $x) -> (Venezuela, was often found in, editorials) -> editorials (4910ms)\nWhere is Venezuela?\tcritical condition\t-4.724334449173315\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, critical condition) -> critical condition (4938ms)\nWhere is Venezuela?\tthe 2010 Great Place\t-4.724771499377173\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been included in, the 2010 Great Place) -> the 2010 Great Place (4937ms)\nWhere is Venezuela?\tthe Senate hearings\t-4.770592079549372\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be all in, $x) -> (Venezuela, is all reported in, the Senate hearings) -> the Senate hearings (4937ms)\nWhere is Venezuela?\tsecond position\t-4.773143613026381\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remained in, second position) -> second position (4937ms)\nWhere is Venezuela?\tthe Caribbean port city\t-4.796197291093622\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, established in, the Caribbean port city) -> the Caribbean port city (4970ms)\nWhere is Venezuela?\ta very early morning\t-4.822723252042584\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a very early morning) -> a very early morning (4970ms)\nWhere is Venezuela?\tCh?vez\t-4.826516544364228\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be since, $x) -> (Venezuela, have been shrinking fast since, Ch?vez) -> Ch?vez (5460ms)\nWhere is Venezuela?\ttenth spot\t-4.831500653330884\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, falls in, tenth spot) -> tenth spot (5082ms)\nWhere is Venezuela?\tthe Report\t-4.835986206165917\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, contained in, the Report) -> the Report (5082ms)\nWhere is Venezuela?\ta political crisis\t-4.842356196803459\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be currently in, $x) -> (Venezuela, is also currently embroiled in, a political crisis) -> a political crisis (5108ms)\nWhere is Venezuela?\tSpanish hands\t-4.869701776026262\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela and Ecuador, are still securely in, Spanish hands) -> Spanish hands (5108ms)\nWhere is Venezuela?\tJune\t-4.88687007253915\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, June) -> June (5108ms)\nWhere is Venezuela?\tItaly and Paris\t-4.902793016795268\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, lived in, Italy and Paris) -> Italy and Paris (5141ms)\nWhere is Venezuela?\tforce\t-4.911688630806282\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Bolivia and Venezuela, would still be in, force) -> force (5141ms)\nWhere is Venezuela?\tthe Seminar\t-4.91910083461719\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, participated in, the Seminar) -> the Seminar (5164ms)\nWhere is Venezuela?\tjail\t-4.922821566128298\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, jail) -> jail (5164ms)\nWhere is Venezuela?\tthe U.S.\t-4.925033755683689\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, are also seen in, the U.S.) -> the U.S. (5165ms)\nWhere is Venezuela?\tan unseemly tug-of-war\t-4.939538463782462\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, are now engaged in, an unseemly tug-of-war) -> an unseemly tug-of-war (5165ms)\nWhere is Venezuela?\tinternational forums\t-4.967932049879534\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, also was active in, international forums) -> international forums (5278ms)\nWhere is Venezuela?\tlow-A ball\t-4.973137968642491\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be all in, $x) -> (Venezuela, was a first-half all-star in, low-A ball) -> low-A ball (5278ms)\nWhere is Venezuela?\ta more vulnerable position\t-4.974906341444684\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, a more vulnerable position) -> a more vulnerable position (5279ms)\nWhere is Venezuela?\tsmall rocks\t-4.980226499125298\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be often in, $x) -> (Venezuela?s Amazon jungle, is often found in, small rocks) -> small rocks (5279ms)\nWhere is Venezuela?\tparticular\t-5.004885103863593\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, headed in, particular) -> particular (5340ms)\nWhere is Venezuela?\ta very good position\t-5.0402724102352945\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, a very good position) -> a very good position (5341ms)\nWhere is Venezuela?\trecession\t-5.04218825864289\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, recession) -> recession (5341ms)\nWhere is Venezuela?\tthe United Nations\t-5.072479258594904\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, passed in, the United Nations) -> the United Nations (5340ms)\nWhere is Venezuela?\ta painful economic crisis\t-5.108499729182701\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now mired in, a painful economic crisis) -> a painful economic crisis (5388ms)\nWhere is Venezuela?\tthe north of South America\t-5.223305720427524\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is located in, the north of South America) -> the north of South America (5460ms)\nWhere is Venezuela?\tSyria\t-5.2493902910764065\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, has shipped fuel to, Syria) -> Syria (5460ms)\nWhere is Venezuela?\t2004\t-5.349139244691232\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, 2004) -> 2004 (5484ms)\nWhere is Venezuela?\tprojects\t-5.378764241895472\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also investing in, projects) -> projects (5484ms)\nWhere is Venezuela?\ta year\t-5.394553639759182\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Venezuela, would be in, a year) -> a year (5485ms)\nWhere is Venezuela?\tIran\t-5.4203928666071155\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Bolivia and Venezuela, is being shipped to, Iran) -> Iran (5506ms)\nWhere is Venezuela?\tnews\t-5.431049555805797\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, mentions in, news) -> news (5507ms)\nWhere is Venezuela?\tpossession\t-5.441969686090886\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be always in, $x) -> (Venezuela, has always been in, possession) -> possession (5571ms)\nWhere is Venezuela?\ta report\t-5.4646239709291935\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be ever in, $x) -> (Venezuela, has ever been mentioned in, a report) -> a report (5571ms)\nWhere is Venezuela?\tRussia\t-5.494438302694533\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has recently bought from, Russia) -> Russia (5597ms)\nWhere is Venezuela?\tpower\t-5.503785156374572\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, power) -> power (5597ms)\nWhere is Venezuela?\tLibya\t-5.520080024540104\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, talk in, $x) -> (Venezuela, held talks in, Libya) -> Libya (5812ms)\nWhere is Venezuela?\ta change\t-5.562604279750159\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a change) -> a change (5812ms)\nWhere is Venezuela?\tBrazil\t-5.569469879052374\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has regional support from, Brazil) -> Brazil (6080ms)\nWhere is Venezuela?\tfifth\t-5.596394520902654\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, finished in, fifth) -> fifth (6081ms)\nWhere is Venezuela?\tmid September\t-5.6242339918628\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, returned in, mid September) -> mid September (6081ms)\nWhere is Venezuela?\tnumbers\t-5.629109839361587\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, defended in, numbers) -> numbers (6081ms)\nWhere is Venezuela?\trecords\t-5.641488607083824\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, listed in, records) -> records (6299ms)\nWhere is Venezuela?\tdiscounted heating oil\t-5.649846500950645\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, in providing, discounted heating oil) -> discounted heating oil (6299ms)\nWhere is Venezuela?\tsecond\t-5.690054923444419\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, came in, second) -> second (6337ms)\nWhere is Venezuela?\tthe news\t-5.690164649018165\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been in, the news) -> the news (6337ms)\nWhere is Venezuela?\tthe tropics\t-5.749723890316345\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is entirely situated in, the tropics) -> the tropics (6389ms)\nWhere is Venezuela?\tthe global oil market\t-5.7629367424478755\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is an important player in, the global oil market) -> the global oil market (6391ms)\nWhere is Venezuela?\tterms\t-5.784829727070369\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also a regional leader in, terms) -> terms (6391ms)\nWhere is Venezuela?\tthe United States\t-5.793182655096079\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be currently in, $x) -> (Venezuela, am currently living in, the United States) -> the United States (6391ms)\nWhere is Venezuela?\tFriday\t-5.798742041219727\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be since, $x) -> (Venezuela helicopters, have been waiting since, Friday) -> Friday (6722ms)\nWhere is Venezuela?\tthe Western Hemisphere\t-5.865766390624008\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, only be in, $x) -> (Venezuela, is the only net creditor in, the Western Hemisphere) -> the Western Hemisphere (6748ms)\nWhere is Venezuela?\tchemical pollution\t-6.078506774121333\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, be there from, $x) -> (Venezuela, there are moderate impacts from, chemical pollution) -> chemical pollution (6879ms)\nWhere is Venezuela?\tilliteracy\t-6.116325688438909\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be from, $x) -> (Venezuela, has been freed from, illiteracy) -> illiteracy (6879ms)\nWhere is Venezuela?\tdifferent agencies\t-6.180189475102518\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be from, $x) -> (Venezuela, has been receiving money from, different agencies) -> different agencies (6951ms)\nWhere is Venezuela?\ta ton\t-6.268996393909639\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, shipped, a ton) -> a ton (6977ms)\nWhere is Venezuela?\ta nuclear reactor\t-6.274071236448638\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, in purchasing, a nuclear reactor) -> a nuclear reactor (6977ms)\nWhere is Venezuela?\tmore than 30 countries\t-6.3914301309913775\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela campaign, is now active in, more than 30 countries) -> more than 30 countries (7052ms)\nWhere is Venezuela?\t50 countries\t-6.394082690194667\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be almost in, $x) -> (Venezuela ! ? campaign, is organized in almost, 50 countries) -> 50 countries (7052ms)\nWhere is Venezuela?\tDave Navarro\t-6.398908860514723\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, name of, $x) -> (Miss Venezuela, picks the name of, Dave Navarro) -> Dave Navarro (7078ms)\nWhere is Venezuela?\tthe aftermath\t-6.446221821619423\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, faced in, the aftermath) -> the aftermath (7107ms)\nWhere is Venezuela?\tthe market\t-6.450589743338666\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, might be in, $x) -> (Venezuela, might be in, the market) -> the market (7107ms)\nWhere is Venezuela?\tBolivia due\t-6.484120181460068\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, was being shipped to, Bolivia due) -> Bolivia due (7133ms)\nWhere is Venezuela?\ttens\t-6.490546587865297\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, had been shipping, tens) -> tens (7133ms)\nWhere is Venezuela?\tthe lush valleys\t-6.514369585867835\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, flourished in, the lush valleys) -> the lush valleys (7273ms)\nWhere is Venezuela?\tthe post-War era\t-6.522327368882294\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, experienced in, the post-War era) -> the post-War era (7273ms)\nWhere is Venezuela?\tthe hands\t-6.537294180382859\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, 's in, the hands) -> the hands (7274ms)\nWhere is Venezuela?\tGran Colombia\t-6.564318446441131\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela and Ecuador, had seceded from, Gran Colombia) -> Gran Colombia (7372ms)\nWhere is Venezuela?\tthe cross-hairs\t-6.587211702810029\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Iran and Venezuela, are also in, the cross-hairs) -> the cross-hairs (7442ms)\nWhere is Venezuela?\tthe park\t-6.627546920872456\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, installed in, the park) -> the park (7466ms)\nWhere is Venezuela?\tthe country\t-6.636569523415583\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela?s gold reserves, are now held in, the country) -> the country (7504ms)\nWhere is Venezuela?\tfinancial institutions\t-6.650085634095693\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, have come from, financial institutions) -> financial institutions (7504ms)\nWhere is Venezuela?\tthe course\t-6.651420269915834\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, participated in, the course) -> the course (7504ms)\nWhere is Venezuela?\tthe fields\t-6.664863804464443\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be already in, $x) -> (Venezuela and Colombia, were already cash-buying in, the fields) -> the fields (7585ms)\nWhere is Venezuela?\tthe project\t-6.70280479203555\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, will also be involved in, the project) -> the project (7679ms)\nWhere is Venezuela?\tthe eyes\t-6.708209268192635\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be too in, $x) -> (Venezuela, was too boring in, the eyes) -> the eyes (7679ms)\nWhere is Venezuela?\tthe congress\t-6.721472222315969\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, were also present in, the congress) -> the congress (7679ms)\nWhere is Venezuela?\tthe fight\t-6.72500902062265\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be firmly in, $x) -> (Venezuela, is firmly committed in, the fight) -> the fight (7679ms)\nWhere is Venezuela?\tthe air\t-6.72846150045286\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still very much up in, the air) -> the air (7679ms)\nWhere is Venezuela?\tthe movement\t-6.753283604024589\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be deeply in, $x) -> (Venezuela, has been very deeply embedded in, the movement) -> the movement (7716ms)\nWhere is Venezuela?\tthe worse position\t-6.758608578184974\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be certainly in, $x) -> (Venezuela, is certainly in, the worse position) -> the worse position (7716ms)\nWhere is Venezuela?\tthe top twenty\t-6.760111999383124\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, ranked in, the top twenty) -> the top twenty (7716ms)\nWhere is Venezuela?\tthe amber zone\t-6.767058295807527\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also in, the amber zone) -> the amber zone (7716ms)\nWhere is Venezuela?\tthe line\t-6.8010500524605595\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also found in, the line) -> the line (7716ms)\nWhere is Venezuela?\tthe second round\t-6.808908530426807\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now 3-3 in, the second round) -> the second round (7779ms)\nWhere is Venezuela?\tthe side\t-6.847892761094707\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now a major thorn in, the side) -> the side (7779ms)\nWhere is Venezuela?\tthe parliamentary front\t-6.862039954321432\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, has also been busy in, the parliamentary front) -> the parliamentary front (7864ms)\nWhere is Venezuela?\toil sales\t-6.87547256974697\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, make money from, $x) -> (Venezuela, makes enough money from, oil sales) -> oil sales (7864ms)\nWhere is Venezuela?\tthe group\t-6.885833748665814\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be currently in, $x) -> (Venezuela, is currently seeking membership in, the group) -> the group (7864ms)\nWhere is Venezuela?\t1991 and 1996\t-6.904740241334908\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, issued in, 1991 and 1996) -> 1991 and 1996 (7910ms)\nWhere is Venezuela?\ttwo million barrels\t-6.905474680753191\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, has begun to ship, two million barrels) -> two million barrels (7910ms)\nWhere is Venezuela?\tany outside group\t-6.926820634267662\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, had received financing from, any outside group) -> any outside group (7910ms)\nWhere is Venezuela?\ta previous marriage\t-6.9577675272221065\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has a few children from, a previous marriage) -> a previous marriage (7910ms)\nWhere is Venezuela?\thigh prices\t-6.9913670847844305\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has much to gain from, high prices) -> high prices (8105ms)\nWhere is Venezuela?\tCh?vez supporters\t-7.070944862226726\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has received much criticism from, Ch?vez supporters) -> Ch?vez supporters (8105ms)\nWhere is Venezuela?\ta financial windfall\t-7.08155525714677\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has benefited from, a financial windfall) -> a financial windfall (8105ms)\nWhere is Venezuela?\ta friendly America\t-7.121706970572648\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has more to gain from, a friendly America) -> a friendly America (8135ms)\nWhere is Venezuela?\tan average\t-7.127141277936033\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, shipped, an average) -> an average (8135ms)\nWhere is Venezuela?\tDecember 1999\t-7.140885635288056\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, suffered in, December 1999) -> December 1999 (8135ms)\nWhere is Venezuela?\tApril 2002\t-7.143732180153906\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, failed in, April 2002) -> April 2002 (8135ms)\nWhere is Venezuela?\tthree percent\t-7.1637856464946505\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has increased from just, three percent) -> three percent (8264ms)\nWhere is Venezuela?\tthe Portuguese word\t-7.1743959887124\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, may have derived from, the Portuguese word) -> the Portuguese word (8264ms)\nWhere is Venezuela?\tChurch influence\t-7.222142686799154\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, have benefited from, Church influence) -> Church influence (8294ms)\nWhere is Venezuela?\ta chain\t-7.244396085681899\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, name of, $x) -> (Venezuela, is the new name of, a chain) -> a chain (8294ms)\nWhere is Venezuela?\t2010\t-7.698167152067176\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, continued in, 2010) -> 2010 (11031ms)\nWhere is Venezuela?\t2008\t-7.806229877461371\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, launched in, 2008) -> 2008 (12513ms)\nWhere is Venezuela?\t2005\t-7.839894003150951\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, said in, 2005) -> 2005 (12711ms)\nWhere is Venezuela?\ta lack\t-7.841280848280653\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has suffered from, a lack) -> a lack (12711ms)\nWhere is Venezuela?\t1979\t-7.906700761078008\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, won in, 1979) -> 1979 (13043ms)\nWhere is Venezuela?\tmore fuel\t-7.925750202326394\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, to ship, more fuel) -> more fuel (13043ms)\nWhere is Venezuela?\t1976\t-7.98124798808864\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be actually in, $x) -> (Venezuela, was actually nationalized in, 1976) -> 1976 (13239ms)\nWhere is Venezuela?\tthe list\t-7.984872683693514\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be from, $x) -> (Libya and Venezuela, had been dropped from, the list) -> the list (13239ms)\nWhere is Venezuela?\tthe National Endowment\t-7.993491920637634\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, have received from, the National Endowment) -> the National Endowment (13239ms)\nWhere is Venezuela?\t364,000 barrels\t-8.003216932208899\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, is shipping, 364,000 barrels) -> 364,000 barrels (13239ms)\nWhere is Venezuela?\tthe mid-20th century\t-8.149439167279331\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, began in, the mid-20th century) -> the mid-20th century (13409ms)\nWhere is Venezuela?\t100,000 bbl/day\t-8.379224057402475\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Michael Lynch Venezuela, will ship, 100,000 bbl/day) -> 100,000 bbl/day (13471ms)\nWhere is Venezuela?\tdomestic shortfalls\t-8.490162576349242\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, will ship oil to meet, domestic shortfalls) -> domestic shortfalls (13707ms)\nWhere is Venezuela?\t8 to 15 percent\t-8.538016866635779\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has ranged from, 8 to 15 percent) -> 8 to 15 percent (13707ms)\nWhere is Venezuela?\tAugust 2004\t-8.592961015418108\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be since, $x) -> (Venezuela, has been relatively calm since, August 2004) -> August 2004 (13707ms)\nWhere is Venezuela?\t8.4 %\t-8.611150104240107\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has grown from just, 8.4 %) -> 8.4 % (13707ms)\nWhere is Venezuela?\t1.32 million barrels\t-8.63753894302177\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, shipped, 1.32 million barrels) -> 1.32 million barrels (13857ms)\nWhere is Venezuela?\t3.1 million barrels\t-8.640583806720358\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela?s oil exports, have declined from, 3.1 million barrels) -> 3.1 million barrels (13857ms)\nWhere is Venezuela?\t13 to 20\t-8.649917710744006\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has expanded from, 13 to 20) -> 13 to 20 (13857ms)\nWhere is Venezuela?\t800\t-8.674183311580386\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has increased from about, 800) -> 800 (13857ms)\nWhere is Venezuela?\t3-1 down\t-8.682960712868686\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, had come back from, 3-1 down) -> 3-1 down (13857ms)\nWhere is Venezuela?\tthe native word\t-8.69365892821756\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, may have evolved from, the native word) -> the native word (13857ms)\nWhere is Venezuela?\tthe heavy Trades\t-8.800219486529077\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, bash, $x) -> (Venezuela or Trinidad, then bash into, the heavy Trades) -> the heavy Trades (14174ms)\nWhere is Venezuela?\tthe late 1950s\t-8.851187927804233\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, arose in, the late 1950s) -> the late 1950s (14174ms)\nWhere is Venezuela?\tthe year 1937\t-8.898721576055593\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, decreed in, the year 1937) -> the year 1937 (14265ms)\nWhere is Venezuela?\tVenezuela\t-8.907614450487545\tWhere is Venezuela? -> where be [ venezuelum ] ? -> what be venezuelum s location ? -> $x: (venezuelum, location, $x) -> (Venezuela men's national volleyball team, Sports Team Location, Venezuela) -> Venezuela (17459ms)\nWhere is Venezuela?\t2006\t-9.16347744367923\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be since, $x) -> (Venezuela, has been included since, 2006) -> 2006 (19149ms)\nWhere is Venezuela?\tOctober 12 Columbus Day\t-9.187510110907432\tWhere is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, name of, $x) -> (Venezuela, have changed the name of, October 12 Columbus Day) -> October 12 Columbus Day (19149ms)\nWho developed potlatch?\tthe Floss\t-11.909661141720475\tWho developed potlatch? -> who develop [ potlatch ] ? -> what be potlatch create ? -> $x: (potlatch, create, $x) -> (The Potlatch dentist, created, the Floss) -> the Floss (5163ms)\nWho developed potlatch?\tthe animals\t-14.324874586228214\tWho developed potlatch? -> who develop [ potlatch ] ? -> who invite potlatch ? -> $x: ($x, invite, potlatch) -> (the animals, were invited to, Raven?s Potlatch) -> the animals (8990ms)\nWho developed potlatch?\tCanada\t-14.967938086510578\tWho developed potlatch? -> who develop [ potlatch ] ? -> what state be potlatch make in ? -> $x: ($x, instance of, state) (potlatch, make in, $x) -> (Canada, Instance Of, state) (Potlatching, was made illegal in, Canada) -> Canada (9984ms)\nWho was the first Triple Crown Winner?\tSir Barton\t-6.844627237613594\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Sir Barton, became, the first Triple Crown winner) -> Sir Barton (3175ms)\nWho was the first Triple Crown Winner?\tBig Country\t-6.926591170104114\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Big Country, would become, the first Triple Crown winner) -> Big Country (3175ms)\nWho was the first Triple Crown Winner?\tSmarty Jones\t-6.97260184790684\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (Smarty Jones, won, the first two Triple Crown races) -> Smarty Jones (4079ms)\nWho was the first Triple Crown Winner?\tScott Frost\t-7.286184689729099\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (Scott Frost, won, the first Triple Crown) -> Scott Frost (4079ms)\nWho was the first Triple Crown Winner?\the?ll\t-7.444887242196669\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (he?ll, try to become, the first Triple Crown winner) -> he?ll (3175ms)\nWho was the first Triple Crown Winner?\tBig Brown\t-7.58869461365065\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Big Brown, attempts to become, the first Triple Crown winner) -> Big Brown (3175ms)\nWho was the first Triple Crown Winner?\tSWA\t-8.254610223249244\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (SWA, wins, the first Triple Crown) -> SWA (4079ms)\nWho was the first Triple Crown Winner?\tSecretariat\t-8.620988727073467\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Secretariat, became, the first Triple Crown winner) -> Secretariat (3175ms)\nWho was the first Triple Crown Winner?\tMickey Mantle\t-8.80442921504045\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Mickey Mantle, won, the Triple Crown) -> Mickey Mantle (3908ms)\nWho was the first Triple Crown Winner?\tSteve Cauthen\t-8.852483374743791\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Steve Cauthen, won, the Triple Crown) -> Steve Cauthen (3908ms)\nWho was the first Triple Crown Winner?\tracing great\t-8.854363998427774\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winners Gallant Fox, Instance Of, racing great) -> racing great (4777ms)\nWho was the first Triple Crown Winner?\tRogers Hornsby\t-8.85970627695853\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Rogers Hornsby, wins, the Triple Crown) -> Rogers Hornsby (3908ms)\nWho was the first Triple Crown Winner?\tAlbert Pujols\t-8.867299209801613\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Albert Pujols, winning, the Triple Crown) -> Albert Pujols (3908ms)\nWho was the first Triple Crown Winner?\tChuck Klein\t-8.872884493607742\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Chuck Klein, won, the Triple Crown) -> Chuck Klein (3908ms)\nWho was the first Triple Crown Winner?\tlegendary horse\t-8.89930468938326\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winners Citation, Instance Of, legendary horse) -> legendary horse (4776ms)\nWho was the first Triple Crown Winner?\trenowned horse\t-8.917206197221\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (1973 Triple Crown winner Secretariat, Instance Of, renowned horse) -> renowned horse (4776ms)\nWho was the first Triple Crown Winner?\tKemp\t-9.060485761079274\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (Kemp, came close to winning, the first Triple Crown) -> Kemp (4079ms)\nWho was the first Triple Crown Winner?\teach age group\t-9.204337511181354\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (each age group, wins, the Triple Crown Cup) -> each age group (3908ms)\nWho was the first Triple Crown Winner?\ta Hawaiian\t-9.240052473340846\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a Hawaiian, won, the Hawaiian Triple Crown) -> a Hawaiian (3908ms)\nWho was the first Triple Crown Winner?\t19-12\t-9.247239131718265\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (19-12, win, the Triple Crown) -> 19-12 (3973ms)\nWho was the first Triple Crown Winner?\tWindsor Lad\t-9.268585365784396\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Windsor Lad, won, the Irish Triple Crown) -> Windsor Lad (3973ms)\nWho was the first Triple Crown Winner?\tCharismatic\t-9.321858810441368\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Charismatic, was poised to become, the first Triple Crown winner) -> Charismatic (3973ms)\nWho was the first Triple Crown Winner?\tTed Williams\t-9.358241692238552\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ted Williams, won, the Triple Crown) -> Ted Williams (3973ms)\nWho was the first Triple Crown Winner?\tLou Gehrig\t-9.38781638406164\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Lou Gehrig, won, the Triple Crown) -> Lou Gehrig (3973ms)\nWho was the first Triple Crown Winner?\tGannon Volk\t-9.40445944800269\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Gannon Volk, wins, Triple Crown) -> Gannon Volk (3972ms)\nWho was the first Triple Crown Winner?\tSadie\t-9.41985580824585\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Sadie, became, the first Triple Crown winner) -> Sadie (4079ms)\nWho was the first Triple Crown Winner?\tJoe Medwick\t-9.433919873020585\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Joe Medwick, won, the Triple Crown) -> Joe Medwick (4079ms)\nWho was the first Triple Crown Winner?\tSuper Saver\t-9.504332131320474\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Super Saver, wins, the Triple Crown) -> Super Saver (4079ms)\nWho was the first Triple Crown Winner?\tPujols\t-9.523530880822982\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Pujols, could become, the first NL Triple Crown winner) -> Pujols (4102ms)\nWho was the first Triple Crown Winner?\tTwickenham see Wales\t-9.530646277796302\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Twickenham see Wales, win, Triple Crown |) -> Twickenham see Wales (4102ms)\nWho was the first Triple Crown Winner?\tJake Cody\t-9.572559278027407\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (Jake Cody, wins, his first poker Triple Crown) -> Jake Cody (4776ms)\nWho was the first Triple Crown Winner?\tstate park system\t-9.575936108105992\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (popular prints of Triple Crown winner, Instance Of, state park system) -> state park system (4829ms)\nWho was the first Triple Crown Winner?\tTrevor\t-9.606317825608507\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Trevor, would become, the first multiple Triple Crown winner) -> Trevor (4102ms)\nWho was the first Triple Crown Winner?\tbehold Hansel\t-9.65883264136595\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (behold Hansel, wins, my first Triple Crown race) -> behold Hansel (4829ms)\nWho was the first Triple Crown Winner?\tSeattle Slew\t-9.72282560573535\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Seattle Slew, won, the Triple Crown) -> Seattle Slew (4102ms)\nWho was the first Triple Crown Winner?\tT-ara\t-9.728279294089031\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (T-ara, won, the ?triple crown ?) -> T-ara (4103ms)\nWho was the first Triple Crown Winner?\tBarbaro\t-9.74307548824676\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Barbaro, win, the Triple Crown) -> Barbaro (4102ms)\nWho was the first Triple Crown Winner?\tJohn John\t-9.747330512778293\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (John John, has won, Triple Crown?) -> John John (4102ms)\nWho was the first Triple Crown Winner?\ttime and Wales\t-9.76173556941751\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (time and Wales, had won, their first Triple Crown) -> time and Wales (4829ms)\nWho was the first Triple Crown Winner?\tJewett and Barnes\t-9.775141805774687\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Jewett and Barnes, won, triple crowns) -> Jewett and Barnes (4102ms)\nWho was the first Triple Crown Winner?\tany horse\t-9.804556705058094\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (any horse, won, the Triple Crown) -> any horse (4128ms)\nWho was the first Triple Crown Winner?\ta horse\t-9.846060058248748\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a horse, won, the Triple Crown) -> a horse (4128ms)\nWho was the first Triple Crown Winner?\tShafter V. Shoemaker\t-9.854420183279448\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Shafter V. Shoemaker, won, 11 Triple Crown races) -> Shafter V. Shoemaker (4128ms)\nWho was the first Triple Crown Winner?\tchampion\t-9.949284734210018\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Eleventh winner of the Triple Crown Affirmed, Instance Of, champion) -> champion (4830ms)\nWho was the first Triple Crown Winner?\tOnly Yastrzemski , Robinson , and Mantle\t-9.96609042910906\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Only Yastrzemski , Robinson , and Mantle, won, Triple Crowns) -> Only Yastrzemski , Robinson , and Mantle (4128ms)\nWho was the first Triple Crown Winner?\ta jockey\t-9.970583897029604\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a jockey, won, the Triple Crown) -> a jockey (4128ms)\nWho was the first Triple Crown Winner?\ta racehorse\t-9.990985015893555\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a racehorse, won, the Triple Crown) -> a racehorse (4128ms)\nWho was the first Triple Crown Winner?\ttrainer\t-9.993652758710258\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (trainer, won, his first Triple Crown race) -> trainer (4830ms)\nWho was the first Triple Crown Winner?\tTy Cobb\t-9.993963847188374\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ty Cobb, won, the Triple Crown) -> Ty Cobb (4128ms)\nWho was the first Triple Crown Winner?\tYaz\t-10.018373397387636\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Yaz, won, the Triple Crown) -> Yaz (4188ms)\nWho was the first Triple Crown Winner?\tcharset=UTF-8 120322 Big Bang\t-10.07060664207587\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (charset=UTF-8 120322 Big Bang, wins, triple crown) -> charset=UTF-8 120322 Big Bang (4188ms)\nWho was the first Triple Crown Winner?\t1919\t-10.106132885671437\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who be the first winner of triple crown ? -> $x: ($x, be the first winner of, triple crown) -> $x: ($x, first winner of, triple crown) -> (1919, became the first winner of, the American Triple Crown) -> 1919 (4188ms)\nWho was the first Triple Crown Winner?\tThe 31-length victory\t-10.114110155193835\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, clinch, the first triple crown) -> (The 31-length victory, clinched, the first Triple Crown) -> The 31-length victory (7569ms)\nWho was the first Triple Crown Winner?\tcategory\t-10.119101098940844\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner, Instance Of, category) -> category (4830ms)\nWho was the first Triple Crown Winner?\trarity\t-10.160262840027514\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner, Instance Of, rarity) -> rarity (4853ms)\nWho was the first Triple Crown Winner?\tgift\t-10.164992095010563\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner, Instance Of, gift) -> gift (4853ms)\nWho was the first Triple Crown Winner?\tDon\t-10.178217126991493\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Don, won, the Triple Crown award) -> Don (4188ms)\nWho was the first Triple Crown Winner?\thorse\t-10.190529994361203\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner Affirmed, Instance Of, horse) -> horse (4853ms)\nWho was the first Triple Crown Winner?\tplayer\t-10.192149737092674\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (batting triple crown winner, Instance Of, player) -> player (4853ms)\nWho was the first Triple Crown Winner?\tCarl Yastrzemski\t-10.200510890415803\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Carl Yastrzemski, wins, the Triple Crown) -> Carl Yastrzemski (4188ms)\nWho was the first Triple Crown Winner?\tsweetie\t-10.212129836831526\tWho was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner Affirmed, Instance Of, sweetie) -> sweetie (4854ms)\nWho was the first Triple Crown Winner?\tHank Aaron\t-10.251807876412947\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Hank Aaron, won, the Triple Crown) -> Hank Aaron (4188ms)\nWho was the first Triple Crown Winner?\tIreland scoring\t-10.286936423127116\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ireland scoring, won, 3 triple crowns) -> Ireland scoring (4188ms)\nWho was the first Triple Crown Winner?\tWales\t-10.297091787855969\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Wales, win, Triple Crown) -> Wales (4276ms)\nWho was the first Triple Crown Winner?\tthe horses\t-10.341645810006058\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> (the horses, have won, the first two legs of the Triple Crown) -> the horses (4276ms)\nWho was the first Triple Crown Winner?\thes\t-10.407872422231698\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (hes, winning, the Triple Crown) -> hes (4275ms)\nWho was the first Triple Crown Winner?\tany team\t-10.416690111150093\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (any team, wins, the triple crown) -> any team (4275ms)\nWho was the first Triple Crown Winner?\tBig Red\t-10.488509561734022\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Big Red, won, the Triple Crown) -> Big Red (4276ms)\nWho was the first Triple Crown Winner?\tCitation\t-10.509656078901624\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Citation, won, the Triple Crown) -> Citation (4275ms)\nWho was the first Triple Crown Winner?\tBig Bang\t-10.510318139935052\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Big Bang, win, a Triple Crown) -> Big Bang (4276ms)\nWho was the first Triple Crown Winner?\tA player\t-10.604253832410278\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (A player, wins, the Triple Crown) -> A player (4301ms)\nWho was the first Triple Crown Winner?\tSande\t-10.613361925802476\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Sande, won, the 1930 Triple Crown) -> Sande (4301ms)\nWho was the first Triple Crown Winner?\tThe Welsh team\t-10.642272748725274\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (The Welsh team, won, the Triple Crown) -> The Welsh team (4301ms)\nWho was the first Triple Crown Winner?\t2005 Mark Long\t-10.698167568062269\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (2005 Mark Long, won, the Triple Butt Crown) -> 2005 Mark Long (4301ms)\nWho was the first Triple Crown Winner?\ta super horse\t-10.717359414995077\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a super horse, won, the Triple Crown) -> a super horse (4301ms)\nWho was the first Triple Crown Winner?\ta famous racehorse\t-10.717359414995077\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a famous racehorse, won, the Triple Crown) -> a famous racehorse (4301ms)\nWho was the first Triple Crown Winner?\tFisk\t-10.72399368803998\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Fisk, won, the Triple Crown) -> Fisk (4301ms)\nWho was the first Triple Crown Winner?\tBell\t-10.740749178358337\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Bell, won, the Triple Crown) -> Bell (4301ms)\nWho was the first Triple Crown Winner?\tFoxx\t-10.747745724216594\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Foxx, won, the triple crown) -> Foxx (4479ms)\nWho was the first Triple Crown Winner?\tRuth\t-10.747745724216594\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ruth, won, the triple crown) -> Ruth (4479ms)\nWho was the first Triple Crown Winner?\tPaul Hines\t-10.887768833254075\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Paul Hines, won, the Triple Crown) -> Paul Hines (4479ms)\nWho was the first Triple Crown Winner?\tPletcher\t-10.939559321785868\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (Pletcher, won, his first Triple Crown race) -> Pletcher (4877ms)\nWho was the first Triple Crown Winner?\tthe favourite\t-11.004754997865662\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (the favourite, to win, the first ever Triple Crown) -> the favourite (4479ms)\nWho was the first Triple Crown Winner?\tVader\t-11.089666851450975\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Vader, wins, Japanese Triple Crown title) -> Vader (4479ms)\nWho was the first Triple Crown Winner?\tAffirmed\t-11.136808398031027\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Affirmed, won, the Triple Crown) -> Affirmed (4478ms)\nWho was the first Triple Crown Winner?\tBeachley\t-11.158155016474696\tWho was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (Beachley, won, that first Vans Triple Crown title) -> Beachley (4877ms)\nWho was the first Triple Crown Winner?\tMantle\t-11.16688877602111\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Mantle, won, the Triple Crown) -> Mantle (4530ms)\nWho was the first Triple Crown Winner?\tEfland\t-11.175433986403242\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Efland, won, a Triple Crown championship) -> Efland (4530ms)\nWho was the first Triple Crown Winner?\tAssault\t-11.2177878300441\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Assault, won, the Triple Crown) -> Assault (4530ms)\nWho was the first Triple Crown Winner?\tWhirlaway\t-11.232262654234278\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Whirlaway, won, the Triple Crown) -> Whirlaway (4530ms)\nWho was the first Triple Crown Winner?\tScotland\t-11.252663773098229\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Scotland, won, the Triple Crown) -> Scotland (4530ms)\nWho was the first Triple Crown Winner?\tCody\t-11.349842081668791\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Cody, won pokers, Triple Crown) -> Cody (4555ms)\nWho was the first Triple Crown Winner?\tthe horse\t-11.638558894040218\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the horse, won, the 1973 Triple Crown) -> the horse (4555ms)\nWho was the first Triple Crown Winner?\tWilliams\t-11.778979358201813\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Williams, won, the Triple Crown) -> Williams (4555ms)\nWho was the first Triple Crown Winner?\tIreland\t-11.795909076583149\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ireland, win, the Triple Crown) -> Ireland (4555ms)\nWho was the first Triple Crown Winner?\tRobinson\t-11.795909076583149\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Robinson, won, the Triple Crown) -> Robinson (4555ms)\nWho was the first Triple Crown Winner?\tGehrig\t-11.80121032781419\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Gehrig, won, the Triple Crown) -> Gehrig (4555ms)\nWho was the first Triple Crown Winner?\tthe legendary racehorse\t-11.83058529533946\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the legendary racehorse, won, the Triple Crown) -> the legendary racehorse (4555ms)\nWho was the first Triple Crown Winner?\tMisawa\t-11.842012565542094\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Misawa, won, the Triple Crown) -> Misawa (4580ms)\nWho was the first Triple Crown Winner?\tKawada\t-11.856487389732271\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Kawada, won, the Triple Crown) -> Kawada (4580ms)\nWho was the first Triple Crown Winner?\tKlein\t-11.856487389732271\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Klein, won, the Triple Crown) -> Klein (4580ms)\nWho was the first Triple Crown Winner?\tHornsby\t-11.856487389732271\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Hornsby, wins, the Triple Crown) -> Hornsby (4580ms)\nWho was the first Triple Crown Winner?\tSmitty\t-11.86815015189239\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Smitty, won, the triple crown) -> Smitty (4580ms)\nWho was the first Triple Crown Winner?\tLajoie\t-11.876888508596224\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Lajoie, won, the Triple Crown) -> Lajoie (4604ms)\nWho was the first Triple Crown Winner?\tMedwick\t-11.876888508596224\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Medwick, won, the Triple Crown) -> Medwick (4580ms)\nWho was the first Triple Crown Winner?\tFrankel\t-11.876888508596224\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Frankel, won, the Triple Crown) -> Frankel (4604ms)\nWho was the first Triple Crown Winner?\tKershaw\t-12.011092331008019\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Kershaw, won, the pitching triple crown) -> Kershaw (4604ms)\nWho was the first Triple Crown Winner?\tGainsborough\t-12.019830687711853\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Gainsborough, wins, the English Triple Crown) -> Gainsborough (4604ms)\nWho was the first Triple Crown Winner?\tKoufax\t-12.123996748933285\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Koufax, won, the pitchers ' Triple Crown) -> Koufax (4604ms)\nWho was the first Triple Crown Winner?\tthe guy\t-12.26961147218178\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the guy, won, the Triple Crown) -> the guy (4604ms)\nWho was the first Triple Crown Winner?\tThe team\t-12.295313842276771\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (The team, won, the Triple Crown) -> The team (4604ms)\nWho was the first Triple Crown Winner?\tthe major reasons\t-12.437051729068276\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the major reasons, winning, the Triple Crown) -> the major reasons (4629ms)\nWho was the first Triple Crown Winner?\tthe great horse\t-12.454810030837455\tWho was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the great horse, won, the Triple Crown) -> the great horse (4629ms)\nHow far does a laser pointer shine?\tAuthor Topic\t-13.768836007560557\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, do, a laser pointer) -> (Author Topic, far does, a 10mw green laser pointer shoot) -> Author Topic (8190ms)\nHow far does a laser pointer shine?\ta 405nm wave length\t-13.84554867094364\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a pen-shaped laser pointer, has, a 405nm wave length) -> a 405nm wave length (8128ms)\nHow far does a laser pointer shine?\ta 650nm wave length\t-13.84554867094364\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a pen-shaped laser pointer, has, a 650nm wave length) -> a 650nm wave length (8128ms)\nHow far does a laser pointer shine?\ta 532nm wave length\t-13.888180759419967\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a pen-shaped laser pointer, has, a 532nm wave length) -> a 532nm wave length (8128ms)\nHow far does a laser pointer shine?\t5 miles\t-13.98145725873473\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, can be seen as far as, 5 miles) -> 5 miles (8128ms)\nHow far does a laser pointer shine?\t1 mW\t-14.063708700253736\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a typical laser pointer, has around, 1 mW) -> 1 mW (8128ms)\nHow far does a laser pointer shine?\tThe R800 Pro\t-14.13109384736592\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The R800 Pro, has, a powerful brilliant green laser pointer) -> The R800 Pro (8128ms)\nHow far does a laser pointer shine?\t200mW\t-14.212440050312704\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (200mW, be less bright than, a 55mW Viper laser pointer) -> 200mW (8128ms)\nHow far does a laser pointer shine?\teBay\t-14.226746676268018\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (eBay, was, a Broken Laser Pointer) -> eBay (8128ms)\nHow far does a laser pointer shine?\t60 times brighter\t-14.236855501723943\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, is about, 60 times brighter) -> 60 times brighter (8190ms)\nHow far does a laser pointer shine?\t1W or so\t-14.295490057934426\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, has an output of, 1W or so) -> 1W or so (8190ms)\nHow far does a laser pointer shine?\ta 19-year-old man\t-14.300673712480725\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (a 19-year-old man, was found with, a laser pointer) -> a 19-year-old man (8190ms)\nHow far does a laser pointer shine?\tThe FLIR P660 model\t-14.341532951346244\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The FLIR P660 model, has, a more advanced Laser Pointer) -> The FLIR P660 model (8190ms)\nHow far does a laser pointer shine?\ta drop\t-14.371252694033116\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> (a laser pointer, was shone through, a drop) -> a drop (5587ms)\nHow far does a laser pointer shine?\t60 seconds\t-14.375356021912312\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 95mW Viper laser pointer, has been working for, 60 seconds) -> 60 seconds (8190ms)\nHow far does a laser pointer shine?\tless than $ 15.\t-14.380259003169721\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a non-functional laser pointer, was sold for, less than $ 15.) -> less than $ 15. (8221ms)\nHow far does a laser pointer shine?\tThe S3 Krypton\t-14.437044573603089\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The S3 Krypton, is too powerful to be used as, a laser pointer) -> The S3 Krypton (8221ms)\nHow far does a laser pointer shine?\tsound\t-14.460753939528738\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (sound, has, a laser pointer) -> sound (8221ms)\nHow far does a laser pointer shine?\tafterimage\t-14.50142704100213\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, are, afterimage) -> afterimage (8221ms)\nHow far does a laser pointer shine?\tless than $ 40\t-14.64958684774288\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, can now be purchased for, less than $ 40) -> less than $ 40 (8221ms)\nHow far does a laser pointer shine?\ta modification\t-14.663704317897182\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (a modification, would be to use, a laser pointer) -> a modification (8221ms)\nHow far does a laser pointer shine?\ta pilot\t-14.737721189369813\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (a pilot, has been temporarily blinded by, a laser pointer) -> a pilot (8221ms)\nHow far does a laser pointer shine?\tone example--shine\t-14.7510243314638\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, one example--shine) -> one example--shine (8258ms)\nHow far does a laser pointer shine?\ta patentable process\t-14.751973085992152\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was, a patentable process) -> a patentable process (8258ms)\nHow far does a laser pointer shine?\ta prankster\t-14.778604858408263\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (a prankster, had shined, a LASER POINTER) -> a prankster (8258ms)\nHow far does a laser pointer shine?\ta 3D mouse\t-14.797698033452708\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, need, $x) -> (A Laser pointer, need, a 3D mouse) -> a 3D mouse (9827ms)\nHow far does a laser pointer shine?\tsomeone?s eyes\t-14.80212173835965\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> (a laser pointer, is shone directly into, someone?s eyes) -> someone?s eyes (5587ms)\nHow far does a laser pointer shine?\tinertia and friction\t-14.803869430526627\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, have to do with, inertia and friction) -> inertia and friction (8258ms)\nHow far does a laser pointer shine?\ta cat\t-14.817766573965894\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is to, a cat) -> a cat (8258ms)\nHow far does a laser pointer shine?\tA HeNe laser\t-14.852944299340196\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A HeNe laser, is far superior to, a cheap laser pointer) -> A HeNe laser (8258ms)\nHow far does a laser pointer shine?\tbuilt-in\t-14.876878296632995\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (built-in, is, a laser pointer) -> built-in (8294ms)\nHow far does a laser pointer shine?\ta laser diode\t-14.891421199617735\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a do-it-yourself laser pointer, is, a laser diode) -> a laser diode (8294ms)\nHow far does a laser pointer shine?\tToday?s invention\t-14.896097313951218\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Today?s invention, is, a laser pointer) -> Today?s invention (8294ms)\nHow far does a laser pointer shine?\tpolice\t-14.908098751986106\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was aimed at, police) -> police (8294ms)\nHow far does a laser pointer shine?\tpresentations\t-14.914673054582249\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a red laser beam pointer, could be used in, presentations) -> presentations (8294ms)\nHow far does a laser pointer shine?\ta flashlight\t-14.92416172793008\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a diode laser pointer, is about as exciting as, a flashlight) -> a flashlight (8294ms)\nHow far does a laser pointer shine?\tWal-Mart\t-14.933575544184656\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, get, a laser pointer) -> (Wal-Mart, get, a laser pointer) -> Wal-Mart (9739ms)\nHow far does a laser pointer shine?\tmiles\t-14.933920404349616\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a red laser pointer, can be seen in, miles) -> miles (8294ms)\nHow far does a laser pointer shine?\tpilots\t-14.935638662094336\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a pointer or handheld laser, can be visible to, pilots) -> pilots (8294ms)\nHow far does a laser pointer shine?\ta very basic model\t-14.954891773344457\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (a very basic model, also has, a laser pointer) -> a very basic model (8326ms)\nHow far does a laser pointer shine?\tthe Intelligent Remote\t-14.959312758052235\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (the Intelligent Remote, has, a handy laser pointer) -> the Intelligent Remote (8326ms)\nHow far does a laser pointer shine?\ta similar way\t-14.962457357268207\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was used in, a similar way) -> a similar way (8326ms)\nHow far does a laser pointer shine?\ta great one\t-14.982748688006875\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, a great one) -> a great one (8326ms)\nHow far does a laser pointer shine?\tSkyFOX helicopter\t-15.005291083336795\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (SkyFOX helicopter, was hit by, a laser pointer) -> SkyFOX helicopter (8326ms)\nHow far does a laser pointer shine?\tCan\t-15.011470440941164\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (Can, has, a built-in laser pointer) -> Can (8326ms)\nHow far does a laser pointer shine?\ta beam angle\t-15.015901425554544\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a keychain laser pointer, might have, a beam angle) -> a beam angle (8326ms)\nHow far does a laser pointer shine?\tBORING\t-15.0163482455692\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a Rav'n laser pointers, are, BORING) -> BORING (8326ms)\nHow far does a laser pointer shine?\tLASER light\t-15.019438223861226\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (LASER light, is to take, a cheap LASER pointer) -> LASER light (8445ms)\nHow far does a laser pointer shine?\tJustin Stouder\t-15.021827407243215\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Justin Stouder, was aiming, a laser pointer) -> Justin Stouder (8445ms)\nHow far does a laser pointer shine?\ta police officer\t-15.022582770374903\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is directed at, a police officer) -> a police officer (8445ms)\nHow far does a laser pointer shine?\ta miniature camera\t-15.024152388185346\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (a miniature camera, is actually, a laser pointer) -> a miniature camera (8445ms)\nHow far does a laser pointer shine?\tpizza cutter knife\t-15.02592076098754\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (pizza cutter knife, has, a laser pointer) -> pizza cutter knife (8444ms)\nHow far does a laser pointer shine?\tTristan\t-15.030504171959409\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (Tristan, had, a laser pointer) -> Tristan (8445ms)\nHow far does a laser pointer shine?\tA nice recent solution\t-15.037122162692338\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A nice recent solution, is, a green laser pointer) -> A nice recent solution (8444ms)\nHow far does a laser pointer shine?\tseveral laser wavelengths\t-15.039710206470666\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a typical DPSS laser pointer, has, several laser wavelengths) -> several laser wavelengths (8473ms)\nHow far does a laser pointer shine?\ta telescope\t-15.04265471453323\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, can also be mounted on, a telescope) -> a telescope (8473ms)\nHow far does a laser pointer shine?\tafterimage , flashblindness and glare\t-15.061331499702698\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, are, afterimage , flashblindness and glare) -> afterimage , flashblindness and glare (8473ms)\nHow far does a laser pointer shine?\tan option\t-15.063648123641299\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is available as, an option) -> an option (8473ms)\nHow far does a laser pointer shine?\ta commercial success\t-15.065416496443492\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer ?, had become, a commercial success) -> a commercial success (8473ms)\nHow far does a laser pointer shine?\tfive millennia\t-15.066310767812821\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, could have existed, five millennia) -> five millennia (8473ms)\nHow far does a laser pointer shine?\tFuzeBox\t-15.079930460603928\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (FuzeBox, has even built, a touch-based laser pointer) -> FuzeBox (8473ms)\nHow far does a laser pointer shine?\tSmart Dot\t-15.091942457392454\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Smart Dot, is, a small laser pointer accessory) -> Smart Dot (8473ms)\nHow far does a laser pointer shine?\tA company\t-15.092563267972249\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A company, is selling, a gun-shaped laser pointer) -> A company (8577ms)\nHow far does a laser pointer shine?\tThe LED flashlight\t-15.113399446979844\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The LED flashlight, may really be, a laser pointer) -> The LED flashlight (8577ms)\nHow far does a laser pointer shine?\tastronomers\t-15.116949308277585\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (such a laser pointer, is a perfect tool for, astronomers) -> astronomers (8577ms)\nHow far does a laser pointer shine?\ta bright laser end ?spot?\t-15.125713646574825\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (A 5mW green laser pointer, has, a bright laser end ?spot?) -> a bright laser end ?spot? (8577ms)\nHow far does a laser pointer shine?\tpresenters\t-15.130594517039404\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (presenters, will have, a laser pointer) -> presenters (8577ms)\nHow far does a laser pointer shine?\tgood use\t-15.130892300657091\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 405 nm laser pointer, is already being put to, good use) -> good use (8577ms)\nHow far does a laser pointer shine?\ta very visible BLUE beam &\t-15.14415530748272\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a unique 1000mw laser pointer, has, a very visible BLUE beam &) -> a very visible BLUE beam & (8577ms)\nHow far does a laser pointer shine?\tan adjustable stand\t-15.153138194292373\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (an adjustable stand, is operated by, a small laser pointer) -> an adjustable stand (8577ms)\nHow far does a laser pointer shine?\tjust about everyone\t-15.162286013626192\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (just about everyone, has, a red laser pointer) -> just about everyone (8605ms)\nHow far does a laser pointer shine?\tthere own right\t-15.174358931430165\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, are useful elements in, there own right) -> there own right (8605ms)\nHow far does a laser pointer shine?\tPersonal Edition\t-15.174409099189933\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Personal Edition, is, a virtual and interactive laser pointer) -> Personal Edition (8605ms)\nHow far does a laser pointer shine?\tone man\t-15.185839112383817\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (one man, was playing with, a cheap laser pointer) -> one man (8605ms)\nHow far does a laser pointer shine?\ta few hundred nanometers\t-15.187279801520264\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, has a wavelength of, a few hundred nanometers) -> a few hundred nanometers (8605ms)\nHow far does a laser pointer shine?\tless coherent and less stable\t-15.190766484769473\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, tends to be, less coherent and less stable) -> less coherent and less stable (8605ms)\nHow far does a laser pointer shine?\tfront\t-15.193044911088231\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, take, a laser pointer) -> (front, took out, a laser pointer) -> front (8605ms)\nHow far does a laser pointer shine?\tpreclinical evaluation\t-15.195269376577276\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is under, preclinical evaluation) -> preclinical evaluation (8605ms)\nHow far does a laser pointer shine?\ta power source\t-15.195579721270253\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is a small portable device with, a power source) -> a power source (8644ms)\nHow far does a laser pointer shine?\tTech Gadgets Mysteries\t-15.197847335387372\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Tech Gadgets Mysteries, Is, A Laser Pointer) -> Tech Gadgets Mysteries (8645ms)\nHow far does a laser pointer shine?\tA test\t-15.203472936157455\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A test, is described by using, a pointer laser pen light) -> A test (8644ms)\nHow far does a laser pointer shine?\tgreat use\t-15.213680546092547\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, can be put to, great use) -> great use (8644ms)\nHow far does a laser pointer shine?\tStarPointer ?\t-15.220836498029652\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (StarPointer ?, is like, a laser pointer) -> StarPointer ? (8645ms)\nHow far does a laser pointer shine?\tblind a pilot\t-15.223859601951624\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, had been used to, blind a pilot) -> blind a pilot (8644ms)\nHow far does a laser pointer shine?\ta pet?s toy\t-15.22848175329854\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 10mw Green Laser Pointer, can be used as, a pet?s toy) -> a pet?s toy (8644ms)\nHow far does a laser pointer shine?\tan arrow\t-15.232766139494435\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (an arrow, has been generated by, a laser pointer) -> an arrow (8691ms)\nHow far does a laser pointer shine?\tan event\t-15.238384046601714\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, will be escorted out of, an event) -> an event (8691ms)\nHow far does a laser pointer shine?\ta beam diameter\t-15.240609239324167\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (A typical 5 mW green laser pointer, has, a beam diameter) -> a beam diameter (8691ms)\nHow far does a laser pointer shine?\ta great trade show giveaway\t-15.249501323797196\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A Laser Pointer Pen, is, a great trade show giveaway) -> a great trade show giveaway (8691ms)\nHow far does a laser pointer shine?\ta great tool\t-15.25317864049359\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (such a high power laser pointer pen, is really, a great tool) -> a great tool (8691ms)\nHow far does a laser pointer shine?\tan LED flashlight\t-15.29044016003698\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (an LED flashlight, could also be used as, a laser pointer) -> an LED flashlight (8691ms)\nHow far does a laser pointer shine?\tA Thurston County man\t-15.300014769674409\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A Thurston County man, was fooling around with, a laser pointer) -> A Thurston County man (8691ms)\nHow far does a laser pointer shine?\tStudents\t-15.317516063514745\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Students, will also be building, a laser pointer) -> Students (8734ms)\nHow far does a laser pointer shine?\tfour juveniles\t-15.319622685129694\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (four juveniles, were found with, a laser pointer) -> four juveniles (8734ms)\nHow far does a laser pointer shine?\tstring play\t-15.327057697867039\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (string play, is sometimes replaced with, a laser pointer) -> string play (8734ms)\nHow far does a laser pointer shine?\tuse\t-15.338633625436096\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, will be available for, use) -> use (8734ms)\nHow far does a laser pointer shine?\tDavid Banach\t-15.346591408450555\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (David Banach, had recently purchased, a laser pointer) -> David Banach (8734ms)\nHow far does a laser pointer shine?\thigh quality material\t-15.36641657104534\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 532NM green laser pointer, is made of, high quality material) -> high quality material (8734ms)\nHow far does a laser pointer shine?\tVIP presenters\t-15.373780988329953\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (VIP presenters, were supposed to get, a laser pointer) -> VIP presenters (8734ms)\nHow far does a laser pointer shine?\tpens\t-15.422233824528707\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (pens, are made into, a keychain or laser pointer) -> pens (8777ms)\nHow far does a laser pointer shine?\ttools and methods\t-15.426606604981586\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (tools and methods, may be employed such as, a laser pointer) -> tools and methods (8777ms)\nHow far does a laser pointer shine?\tgreen light\t-15.436156132197116\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A 55mW Viper laser pointer, will be 55mW of, green light) -> green light (8777ms)\nHow far does a laser pointer shine?\ta laser line\t-15.446550956627576\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer or diode, can easily be made into, a laser line) -> a laser line (8777ms)\nHow far does a laser pointer shine?\tthe order\t-15.450875005440695\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is of, the order) -> the order (8777ms)\nHow far does a laser pointer shine?\ta visible green or red light\t-15.475237489469437\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is converted to, a visible green or red light) -> a visible green or red light (8777ms)\nHow far does a laser pointer shine?\tBasic experiements\t-15.494046320315423\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Basic experiements, can be performed with just, a laser pointer) -> Basic experiements (8777ms)\nHow far does a laser pointer shine?\tmetal material\t-15.499185438906007\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a pen-shaped red laser pointer pen, is made of, metal material) -> metal material (8777ms)\nHow far does a laser pointer shine?\tpresentation\t-15.571362403019792\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a pointer laser, is usually used for, presentation) -> presentation (8883ms)\nHow far does a laser pointer shine?\tresponsible persons\t-15.586941727967789\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (3a laser pointers, should be limited to, responsible persons) -> responsible persons (8883ms)\nHow far does a laser pointer shine?\tLaser\t-15.626240626815969\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Laser, is, a professional 2-Function laser pointer/ballpoint pen) -> Laser (8883ms)\nHow far does a laser pointer shine?\tcoordination\t-15.644659444438265\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A Laser Pointer Marker, is added to enhance, coordination) -> coordination (8883ms)\nHow far does a laser pointer shine?\tthe bottom\t-15.65227864320421\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was pressed against, the bottom) -> the bottom (8883ms)\nHow far does a laser pointer shine?\tthe internet\t-15.656051693960489\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 200mw green laser pointer pen, is, the internet) -> the internet (8883ms)\nHow far does a laser pointer shine?\tthe bill\t-15.666296700176423\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is defined in, the bill) -> the bill (8883ms)\nHow far does a laser pointer shine?\tapplications\t-15.675883906000983\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a green laser pointer, have so many kinds of, applications) -> applications (8883ms)\nHow far does a laser pointer shine?\ta hot merchandise\t-15.693481881282727\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, is, a hot merchandise) -> a hot merchandise (8925ms)\nHow far does a laser pointer shine?\tequipment\t-15.698923183700737\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (A laser pointer, has become a must-have piece of, equipment) -> equipment (8925ms)\nHow far does a laser pointer shine?\tnight\t-15.69982177046932\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 5 mW green laser pointer, is visible at, night) -> night (8925ms)\nHow far does a laser pointer shine?\tpain\t-15.704618150579044\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, leave, $x) -> (a laser pointer incident, left her with, pain) -> pain (9797ms)\nHow far does a laser pointer shine?\ta .5 MW laser\t-15.711816014292443\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (a .5 MW laser, is like, your laser pointer) -> a .5 MW laser (10877ms)\nHow far does a laser pointer shine?\tEach room\t-15.738624672368804\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (Each room, will have, a timer and slide advancer/laser pointer) -> Each room (8925ms)\nHow far does a laser pointer shine?\tthe JAC.\t-15.739669021304575\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (Class 3a laser pointers, are banned at, the JAC.) -> the JAC. (8925ms)\nHow far does a laser pointer shine?\tlow output power\t-15.74316466341285\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (A 5mW green laser pointer, has, low output power) -> low output power (8925ms)\nHow far does a laser pointer shine?\tfun\t-15.778587478788465\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser-pointer, could be, fun) -> fun (8925ms)\nHow far does a laser pointer shine?\tI?ve\t-15.792173328253478\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, get, a laser pointer) -> (I?ve, got, a laser pointer) -> I?ve (9739ms)\nHow far does a laser pointer shine?\t5milliwatts\t-15.797270423901516\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is, 5milliwatts) -> 5milliwatts (10877ms)\nHow far does a laser pointer shine?\trel=shortlink September 15\t-15.803525216941836\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (rel=shortlink September 15, is, a laser pointer) -> rel=shortlink September 15 (8925ms)\nHow far does a laser pointer shine?\ta path\t-15.827250523333607\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> $x: (laser pointer, shine, $x) -> (The laser pointer, shines, a path) -> a path (9117ms)\nHow far does a laser pointer shine?\tPierre\t-15.858188804175025\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (Pierre, had bought, a laser pointer) -> Pierre (9117ms)\nHow far does a laser pointer shine?\texcellent and efficiency\t-15.895073269083408\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, get, a laser pointer) -> (excellent and efficiency, get, a laser pointer) -> excellent and efficiency (9739ms)\nHow far does a laser pointer shine?\tto 500 ft\t-15.89647951599643\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> $x: (laser pointer, shine, $x) -> (This laser pointer, will shine for up, to 500 ft) -> to 500 ft (9117ms)\nHow far does a laser pointer shine?\ta good aiming device\t-15.936695125085153\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, make, $x) -> (a laser pointer, makes, a good aiming device) -> a good aiming device (9873ms)\nHow far does a laser pointer shine?\t10 times\t-15.96664142683592\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (Green laser pointers, have approximately, 10 times) -> 10 times (10876ms)\nHow far does a laser pointer shine?\tthe gelatin\t-15.976292832220018\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> (a laser pointer, was shined through, the gelatin) -> the gelatin (5587ms)\nHow far does a laser pointer shine?\tMore details\t-15.985332248719633\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (More details, are in, a LaserPointerSafety .com) -> More details (9117ms)\nHow far does a laser pointer shine?\ta particularly nasty quote\t-15.987029814247942\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, illuminate, $x) -> (a laser pointer, illuminate, a particularly nasty quote) -> a particularly nasty quote (9798ms)\nHow far does a laser pointer shine?\tthe camera\t-15.989093941889436\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the camera, is, a laser pointer) -> the camera (9117ms)\nHow far does a laser pointer shine?\tthe annoyance\t-15.989970318867977\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the annoyance, was, a laser pointer) -> the annoyance (9117ms)\nHow far does a laser pointer shine?\tthe game\t-16.01208310453172\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the game, is, a laser pointer) -> the game (9117ms)\nHow far does a laser pointer shine?\ta better result\t-16.016471710221495\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, make, $x) -> (a green laser pointer, would make, a better result) -> a better result (9873ms)\nHow far does a laser pointer shine?\ta wonderful present\t-16.01729138119763\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, make, $x) -> (a Green Laser Pointer, would make, a wonderful present) -> a wonderful present (9873ms)\nHow far does a laser pointer shine?\tcharset=UTF-8\t-16.022606865540492\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (charset=UTF-8, Are, Laser Pointers Safe) -> charset=UTF-8 (10888ms)\nHow far does a laser pointer shine?\tIzwan\t-16.03929569490249\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was used on, Izwan) -> Izwan (9243ms)\nHow far does a laser pointer shine?\tofficers\t-16.058131002921066\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, see, a laser pointer) -> (officers, saw, a laser pointer) -> officers (9686ms)\nHow far does a laser pointer shine?\tAccept-Encoding\t-16.060681610001566\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, get, a laser pointer) -> (Accept-Encoding, want to get, a cheap laser pointer) -> Accept-Encoding (9740ms)\nHow far does a laser pointer shine?\tthe applications\t-16.07044014483622\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the applications, is, a laser pointer) -> the applications (9243ms)\nHow far does a laser pointer shine?\tthe teams\t-16.136644188809804\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, was used to direct, the teams) -> the teams (9243ms)\nHow far does a laser pointer shine?\tthe site\t-16.148423540041463\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the site, was, a broken laser pointer) -> the site (9243ms)\nHow far does a laser pointer shine?\t23 local stores\t-16.15235102644403\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (23 local stores, had sold more than, 30,000 laser pointers) -> 23 local stores (10888ms)\nHow far does a laser pointer shine?\tcertain parts\t-16.18566437917012\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, draw, $x) -> (a laser pointer, wish to draw attention to, certain parts) -> certain parts (9798ms)\nHow far does a laser pointer shine?\t30ft\t-16.186342514530853\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (30ft, has built in, laser pointer) -> 30ft (10888ms)\nHow far does a laser pointer shine?\tthe organizers\t-16.19306849996518\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, will be provided by, the organizers) -> the organizers (9243ms)\nHow far does a laser pointer shine?\tthe back\t-16.217890603536908\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, had a little screen on, the back) -> the back (9243ms)\nHow far does a laser pointer shine?\t100 participants\t-16.252657337849815\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (100 participants, are given, laser pointers) -> 100 participants (10888ms)\nHow far does a laser pointer shine?\tmuch output power\t-16.273959410577305\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, need, a laser pointer) -> (much output power, need to buy, a burning laser pointer) -> much output power (9827ms)\nHow far does a laser pointer shine?\tthe group\t-16.275002041316334\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (the group, had been waving, a laser pointer) -> the group (9281ms)\nHow far does a laser pointer shine?\tcat owners\t-16.28776392571314\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (cat owners, is, the laser pointer) -> cat owners (10888ms)\nHow far does a laser pointer shine?\ta beam\t-16.306699852223677\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (high power laser pointers, have, a beam) -> a beam (10888ms)\nHow far does a laser pointer shine?\ta range\t-16.31459306711088\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (the laser pointer function, has, a range) -> a range (10900ms)\nHow far does a laser pointer shine?\tthe aircraft\t-16.314897242886907\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a simple laser pointer, was directed at, the aircraft) -> the aircraft (9281ms)\nHow far does a laser pointer shine?\tthe teen\t-16.322675095383428\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the teen, was holding, a laser pointer) -> the teen (9281ms)\nHow far does a laser pointer shine?\ta place\t-16.345349398566874\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (handheld laser pointers, have earned, a place) -> a place (10900ms)\nHow far does a laser pointer shine?\tthe sample\t-16.365315430055354\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the sample, is illuminated by, a laser pointer) -> the sample (9281ms)\nHow far does a laser pointer shine?\tthe package\t-16.370620601164227\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the package, is, a class IIIA laser pointer) -> the package (9281ms)\nHow far does a laser pointer shine?\ta very good light beam\t-16.37204079782685\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, make, $x) -> (A small laser pointer pen, makes, a very good light beam) -> a very good light beam (9873ms)\nHow far does a laser pointer shine?\ttwo years\t-16.399233483462694\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are so, two years) -> two years (10900ms)\nHow far does a laser pointer shine?\ta while\t-16.40085988303634\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have been around for quite, a while) -> a while (10900ms)\nHow far does a laser pointer shine?\ta small button which\t-16.40303785854106\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, turn, a laser pointer) -> (a small button which, turned on, a powerful laser pointer) -> a small button which (9798ms)\nHow far does a laser pointer shine?\ta step\t-16.40389705307212\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (green laser pointers, has gone, a step) -> a step (10900ms)\nHow far does a laser pointer shine?\tthe mirror\t-16.405988531528745\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, was pointed towards, the mirror) -> the mirror (9281ms)\nHow far does a laser pointer shine?\tclassrooms\t-16.41367564496937\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (classrooms, have, laser pointers) -> classrooms (10900ms)\nHow far does a laser pointer shine?\tCBC News\t-16.415609017179133\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (CBC News, also has photos of, the laser pointer) -> CBC News (10900ms)\nHow far does a laser pointer shine?\tcontinuous wave\t-16.422269502866634\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is, continuous wave) -> continuous wave (10909ms)\nHow far does a laser pointer shine?\tthe researchers\t-16.42278828395876\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the researchers, are working with, a laser pointer) -> the researchers (9310ms)\nHow far does a laser pointer shine?\tvery dangerous\t-16.437755555880486\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, very dangerous) -> very dangerous (9310ms)\nHow far does a laser pointer shine?\ta forbidden activity\t-16.44605872531542\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is, a forbidden activity) -> a forbidden activity (10909ms)\nHow far does a laser pointer shine?\tthe army\t-16.44866625825393\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, has a wide application in, the army) -> the army (9310ms)\nHow far does a laser pointer shine?\ta momentary switch\t-16.45488412379767\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (most laser pointers, have, a momentary switch) -> a momentary switch (10909ms)\nHow far does a laser pointer shine?\tthe lectern\t-16.459860018998214\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, will be on, the lectern) -> the lectern (9310ms)\nHow far does a laser pointer shine?\tavailable\t-16.485849617831448\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, available) -> available (9310ms)\nHow far does a laser pointer shine?\thand\t-16.512732128544904\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (hand, is, the laser pointer) -> hand (10909ms)\nHow far does a laser pointer shine?\tLaser diode\t-16.517623677817397\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (Laser diode, is from, laser pointer) -> Laser diode (10909ms)\nHow far does a laser pointer shine?\tthe podium\t-16.523823050988447\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, will be available from, the podium) -> the podium (9310ms)\nHow far does a laser pointer shine?\ttwo categories\t-16.53111088282295\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, can be separated into, two categories) -> two categories (10918ms)\nHow far does a laser pointer shine?\tgreat\t-16.531953106790393\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, great) -> great (9350ms)\nHow far does a laser pointer shine?\tideal\t-16.531953106790393\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, ideal) -> ideal (9350ms)\nHow far does a laser pointer shine?\tthe place\t-16.54288814088747\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, keep, $x) -> (a fancy laser pointer, kept going to, the place) -> the place (9797ms)\nHow far does a laser pointer shine?\tthe remote\t-16.54410948666767\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the remote, can also be used as, a laser pointer) -> the remote (9350ms)\nHow far does a laser pointer shine?\tnecessary\t-16.546248701863448\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a Laser Pointer, is, necessary) -> necessary (9350ms)\nHow far does a laser pointer shine?\ta dangerous object\t-16.552401022399074\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are considered, a dangerous object) -> a dangerous object (10918ms)\nHow far does a laser pointer shine?\ta Cat Lady\t-16.555937820705758\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (a Cat Lady, Are, Laser Pointers Bad) -> a Cat Lady (10918ms)\nHow far does a laser pointer shine?\ta pinch\t-16.558830483645277\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, can be used in, a pinch) -> a pinch (10918ms)\nHow far does a laser pointer shine?\ta prohibited item\t-16.570576948540573\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser Pointers Laser pointers, are considered, a prohibited item) -> a prohibited item (10918ms)\nHow far does a laser pointer shine?\tthe view\t-16.580612885129895\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a small laser pointer, is often reflected away from, the view) -> the view (9350ms)\nHow far does a laser pointer shine?\ta great two-in-one device\t-16.6054528915947\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser Pointer, is, a great two-in-one device) -> a great two-in-one device (10927ms)\nHow far does a laser pointer shine?\ta selection\t-16.60864637511108\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (a selection, has been made with, the laser pointer) -> a selection (10927ms)\nHow far does a laser pointer shine?\tInfraRed\t-16.615109071616054\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (InfraRed, has built in, laser pointer) -> InfraRed (10927ms)\nHow far does a laser pointer shine?\tlaser\t-16.6232305098463\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (laser, has, built-in laser pointer) -> laser (10927ms)\nHow far does a laser pointer shine?\tthe mouse\t-16.63871864373779\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is also built in to, the mouse) -> the mouse (9350ms)\nHow far does a laser pointer shine?\ta bright beam\t-16.6436076207293\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The infrared laser pointer, has, a bright beam) -> a bright beam (10927ms)\nHow far does a laser pointer shine?\tcomputer\t-16.66762580811971\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (computer, is, the embedded laser pointer) -> computer (10936ms)\nHow far does a laser pointer shine?\ta diffraction grating\t-16.694043454167755\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (This laser pointer pen, has, a diffraction grating) -> a diffraction grating (10936ms)\nHow far does a laser pointer shine?\t2008\t-16.707427509786008\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (Laser Pointers, have been banned since, 2008) -> 2008 (10944ms)\nHow far does a laser pointer shine?\teveryday life\t-16.7147986002507\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, may be hilarious in, everyday life) -> everyday life (10944ms)\nHow far does a laser pointer shine?\ta dead giveaway\t-16.721356429822276\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, also can be, a dead giveaway) -> a dead giveaway (10944ms)\nHow far does a laser pointer shine?\tlaser-scopes\t-16.729439376511117\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, has nothing to do with, laser-scopes) -> laser-scopes (10944ms)\nHow far does a laser pointer shine?\ta ballpoint pen\t-16.73430718123355\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser Pointer, is, a ballpoint pen) -> a ballpoint pen (10944ms)\nHow far does a laser pointer shine?\ta green beam\t-16.746040321247087\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (This laser pointer, has, a green beam) -> a green beam (10953ms)\nHow far does a laser pointer shine?\ta trip\t-16.750117991164558\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The laser pointer, had been bought during, a trip) -> a trip (10952ms)\nHow far does a laser pointer shine?\tDigit\t-16.7528292244632\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Digit, is, a super laser-pointer chaser) -> Digit (9350ms)\nHow far does a laser pointer shine?\ta parked car\t-16.7676983495244\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, turn, a laser pointer) -> (a parked car, turned, a laser-pointer) -> a parked car (9827ms)\nHow far does a laser pointer shine?\ta high quality\t-16.781969910361525\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The green laser pointer, has, a high quality) -> a high quality (10952ms)\nHow far does a laser pointer shine?\tmarket\t-16.782442379672013\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have flooded into, market) -> market (10961ms)\nHow far does a laser pointer shine?\tOne of the first items\t-16.78634324709988\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (One of the first items, is, a broken laser pointer) -> One of the first items (9350ms)\nHow far does a laser pointer shine?\tpenalties\t-16.79366696179274\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (penalties, previously have been reserved for, laser pointers) -> penalties (10961ms)\nHow far does a laser pointer shine?\ta very visible BLUE beam\t-16.795770001179353\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a unique 1000mw laser pointer, has, a very visible BLUE beam) -> a very visible BLUE beam (9395ms)\nHow far does a laser pointer shine?\ta recent development\t-16.799976429546106\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (a recent development, is, the laser pointer) -> a recent development (10961ms)\nHow far does a laser pointer shine?\torder\t-16.81768065407796\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, were on, order) -> order (10961ms)\nHow far does a laser pointer shine?\ta real notebook Touchpad\t-16.81885439854528\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (One Wireless Laser Pointer, have, a real notebook Touchpad) -> a real notebook Touchpad (10961ms)\nHow far does a laser pointer shine?\tcomputers\t-16.834182544065637\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointer, have fun talking about, computers) -> computers (10969ms)\nHow far does a laser pointer shine?\ta sleek design\t-16.83970896998445\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The viper laser pointer, has, a sleek design) -> a sleek design (10969ms)\nHow far does a laser pointer shine?\tthe wiimote motion sensor\t-16.855636204828674\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the wiimote motion sensor, is, a laser pointer) -> the wiimote motion sensor (9395ms)\nHow far does a laser pointer shine?\tchildren\t-16.88415453409262\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (children, are playing with, laser pointers) -> children (10969ms)\nHow far does a laser pointer shine?\tcheap Posts\t-16.890959885386923\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are really, cheap Posts) -> cheap Posts (10977ms)\nHow far does a laser pointer shine?\tThe lines\t-16.894673676647113\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The lines, are from, a laser pointer) -> The lines (9395ms)\nHow far does a laser pointer shine?\tThe remote\t-16.903894238355047\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The remote, has, a laser pointer) -> The remote (9395ms)\nHow far does a laser pointer shine?\ta wide range\t-16.93088051173248\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are now available in, a wide range) -> a wide range (10977ms)\nHow far does a laser pointer shine?\ttouchpad and keyboard device\t-16.93989282076116\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (touchpad and keyboard device, has, laser pointer) -> touchpad and keyboard device (10977ms)\nHow far does a laser pointer shine?\tFORBIDDEN\t-16.944051255280986\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (LASER POINTERS, ARE, FORBIDDEN) -> FORBIDDEN (10977ms)\nHow far does a laser pointer shine?\tteachers\t-16.94735987907026\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have been aimed at, teachers) -> teachers (10977ms)\nHow far does a laser pointer shine?\ttoys\t-16.956137280358558\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (toys, are being introduced such as, laser pointers) -> toys (10977ms)\nHow far does a laser pointer shine?\tday\t-16.95699043563351\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are dropping, day) -> day (10977ms)\nHow far does a laser pointer shine?\tengineers\t-16.957542954024944\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are ideal for, engineers) -> engineers (10985ms)\nHow far does a laser pointer shine?\t?F/?C switchable\t-16.968217981538327\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, are, ?F/?C switchable) -> ?F/?C switchable (10985ms)\nHow far does a laser pointer shine?\teach team\t-16.978177847146164\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (each team, has, one laser pointer) -> each team (10985ms)\nHow far does a laser pointer shine?\t?special equipment\t-16.984525746657955\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, is, ?special equipment) -> ?special equipment (10985ms)\nHow far does a laser pointer shine?\tThe boy\t-16.992134253316863\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The boy, would have shined, a laser pointer) -> The boy (9395ms)\nHow far does a laser pointer shine?\ta real notbook Touchpad\t-16.99752301871719\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (One Wireless Laser pointer, have, a real notbook Touchpad) -> a real notbook Touchpad (10985ms)\nHow far does a laser pointer shine?\tA curious parrot\t-16.997537471786973\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (A curious parrot, has some fun with, this laser pointer) -> A curious parrot (10985ms)\nHow far does a laser pointer shine?\teffective tools\t-16.998290773059907\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are, effective tools) -> effective tools (10985ms)\nHow far does a laser pointer shine?\tlaser diodes\t-16.999567211254007\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (laser diodes, are, inexpensive laser pointers) -> laser diodes (11024ms)\nHow far does a laser pointer shine?\trefraction\t-17.000411695563592\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are used to demonstrate, refraction) -> refraction (11024ms)\nHow far does a laser pointer shine?\twalls\t-17.00153477992222\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> $x: (laser pointer, shine, $x) -> (laser pointers, shone on, walls) -> walls (9395ms)\nHow far does a laser pointer shine?\tThe device\t-17.009619384453927\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The device, has, a built-in laser pointer) -> The device (9438ms)\nHow far does a laser pointer shine?\tdifferent output power\t-17.013863376208196\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have, different output power) -> different output power (11024ms)\nHow far does a laser pointer shine?\tthe best light source\t-17.014299825105173\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is, the best light source) -> the best light source (9438ms)\nHow far does a laser pointer shine?\tbusiness\t-17.018095687097\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are typically used in, business) -> business (11025ms)\nHow far does a laser pointer shine?\tInfrared Laser Pointer Kit\t-17.01916854731707\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (Infrared Laser Pointer Kit, are, specialist laser pointers) -> Infrared Laser Pointer Kit (11024ms)\nHow far does a laser pointer shine?\tABSOLUTELY\t-17.022744846322183\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser Pointers, are, ABSOLUTELY) -> ABSOLUTELY (11024ms)\nHow far does a laser pointer shine?\tThe light\t-17.02774891662063\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The light, is used is very similar to, a laser pointer) -> The light (9438ms)\nHow far does a laser pointer shine?\thelpful tools\t-17.034115470642387\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are, helpful tools) -> helpful tools (11024ms)\nHow far does a laser pointer shine?\tnice pen-shaped presentation remote\t-17.03698045269148\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (nice pen-shaped presentation remote, has, built-in laser pointer) -> nice pen-shaped presentation remote (11047ms)\nHow far does a laser pointer shine?\ttemporary blindness\t-17.04311649675364\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have mentioned, temporary blindness) -> temporary blindness (11047ms)\nHow far does a laser pointer shine?\tthe sun\t-17.058509724885244\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is brighter than, the sun) -> the sun (9438ms)\nHow far does a laser pointer shine?\tContinue reading\t-17.0646899007613\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (green laser pointer, have ?, Continue reading) -> Continue reading (11047ms)\nHow far does a laser pointer shine?\tavailable Material\t-17.066363936915128\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is, available Material) -> available Material (11048ms)\nHow far does a laser pointer shine?\tplugs-and-plays\t-17.066850624574275\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (plugs-and-plays, has, an inbuilt laser pointer) -> plugs-and-plays (11048ms)\nHow far does a laser pointer shine?\tdiscussion groups\t-17.071934846273354\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (Laser Pointer Forums, has a number of, discussion groups) -> discussion groups (11048ms)\nHow far does a laser pointer shine?\tSafe\t-17.073574602993492\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (Safe, is, your Laser Pointer) -> Safe (11069ms)\nHow far does a laser pointer shine?\tnight sky observation\t-17.07493804113007\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is suitable for, night sky observation) -> night sky observation (11069ms)\nHow far does a laser pointer shine?\tThe remote controller\t-17.080679269253686\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The remote controller, has, a built-in laser pointer) -> The remote controller (9438ms)\nHow far does a laser pointer shine?\tThe ranger\t-17.084815118363547\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The ranger, had, a very powerful green laser pointer) -> The ranger (9438ms)\nHow far does a laser pointer shine?\ta long beam range\t-17.08865994560788\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (These green laser pointers, have, a long beam range) -> a long beam range (11069ms)\nHow far does a laser pointer shine?\tThe first sale\t-17.089521238669242\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The first sale, was, a broken laser pointer) -> The first sale (9438ms)\nHow far does a laser pointer shine?\tthe night sky\t-17.09766510637353\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is projected directly at, the night sky) -> the night sky (9438ms)\nHow far does a laser pointer shine?\tThe laser\t-17.107205177500354\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The laser, would be, a simple red laser pointer) -> The laser (9533ms)\nHow far does a laser pointer shine?\tmaximums\t-17.108636188494103\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are, maximums) -> maximums (11069ms)\nHow far does a laser pointer shine?\ta blast footprint\t-17.1098305676882\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The laser pointer, has been replaced with, a blast footprint) -> a blast footprint (11069ms)\nHow far does a laser pointer shine?\tThe presenters\t-17.114515026563314\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The presenters, should be provided with, a laser pointer) -> The presenters (9533ms)\nHow far does a laser pointer shine?\tPowerPoint presenter\t-17.115246677251843\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (PowerPoint presenter, has, an integrated green laser pointer) -> PowerPoint presenter (11069ms)\nHow far does a laser pointer shine?\tPowerPoint , MediaPlayer and\t-17.11532245236643\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (PowerPoint , MediaPlayer and, also has a built in, laser pointer) -> PowerPoint , MediaPlayer and (11069ms)\nHow far does a laser pointer shine?\ta few examples\t-17.1256709296671\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (a few examples, are, laser pointers) -> a few examples (11069ms)\nHow far does a laser pointer shine?\tthe flashlight\t-17.126695509772862\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, turn, a laser pointer) -> (the flashlight, will turn into, a laser pointer) -> the flashlight (9827ms)\nHow far does a laser pointer shine?\tThe remote control\t-17.14522566706816\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The remote control, also has, a laser pointer) -> The remote control (9533ms)\nHow far does a laser pointer shine?\tThe easiest way\t-17.165562217804858\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The easiest way, was with, a laser pointer) -> The easiest way (9533ms)\nHow far does a laser pointer shine?\tThe laptops\t-17.20553727026928\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The laptops, will have a remote control with, a laser pointer) -> The laptops (9533ms)\nHow far does a laser pointer shine?\tThe presentation friendly IR remote\t-17.216197780246794\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The presentation friendly IR remote, has, a laser pointer) -> The presentation friendly IR remote (9533ms)\nHow far does a laser pointer shine?\tThe light source\t-17.272786395046808\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The light source, is replaced by, a laser pointer) -> The light source (9533ms)\nHow far does a laser pointer shine?\tthe external video screen\t-17.374670315369425\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, can be shown on, the external video screen) -> the external video screen (9533ms)\nHow far does a laser pointer shine?\tthe microscopic contents\t-17.497603475320165\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, be used to examine, the microscopic contents) -> the microscopic contents (9633ms)\nHow far does a laser pointer shine?\tthe longarm machine\t-17.52261229246125\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a stylus or laser pointer, is attached to, the longarm machine) -> the longarm machine (9633ms)\nHow far does a laser pointer shine?\twall\t-17.52757031178682\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what process do a laser pointer shine ? -> $x: ($x, instance of, process) (a laser pointer, shine, $x) -> $x: ($x, instance of, process) (laser pointer, shine, $x) -> $x: ($x, instance of, process) (laser pointer, shone on, $x) -> (wall, Instance Of, processing environment) (laser pointers, shone on, walls) -> wall (6194ms)\nHow far does a laser pointer shine?\tthe robot torch\t-17.54004494959575\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is also affixed to, the robot torch) -> the robot torch (9633ms)\nHow far does a laser pointer shine?\tThe upper half\t-17.6547381143499\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The upper half, is, a laser-pointer) -> The upper half (9633ms)\nHow far does a laser pointer shine?\tthe drawing tool\t-17.671790462534872\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green 60 milliwatt laser pointer, is, the drawing tool) -> the drawing tool (9633ms)\nHow far does a laser pointer shine?\tthe best choice\t-17.711830606601485\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the best choice, as was found out with, a laser pointer) -> the best choice (9633ms)\nHow far does a laser pointer shine?\tThe buyer\t-17.918348393534544\tHow far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The buyer, was, a collector of broken laser pointers) -> The buyer (9633ms)\nWhat does ACLU stand for?\tAmerican Civil Liberties Union\t-3.0691838113034104\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, American Civil Liberties Union) -> American Civil Liberties Union (6151ms)\nWhat does ACLU stand for?\t?American? Civil Liberties Union\t-3.158441553780713\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, ?American? Civil Liberties Union) -> ?American? Civil Liberties Union (6151ms)\nWhat does ACLU stand for?\tAmerican\t-3.255027813933534\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stood for, American) -> American (6151ms)\nWhat does ACLU stand for?\thuman rights\t-3.267944237106466\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stand up for, human rights) -> human rights (6152ms)\nWhat does ACLU stand for?\tSgt\t-3.414453867889174\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, stood up for, Sgt) -> Sgt (6152ms)\nWhat does ACLU stand for?\tAnti-Christian Lawyers\t-3.499285585380715\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, Anti-Christian Lawyers) -> Anti-Christian Lawyers (7454ms)\nWhat does ACLU stand for?\tfree speech\t-3.5781552009317603\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, took a controversial stand for, free speech) -> free speech (7454ms)\nWhat does ACLU stand for?\tAnti Christian Litigation Union\t-3.605891310987964\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stood for, Anti Christian Litigation Union) -> Anti Christian Litigation Union (7455ms)\nWhat does ACLU stand for?\tthe 2nd Amendment\t-3.8985343908874146\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stood up for, the 2nd Amendment) -> the 2nd Amendment (7454ms)\nWhat does ACLU stand for?\tthe Anti-Christian Liberal Union\t-3.9176506853798774\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, might well stand for, the Anti-Christian Liberal Union) -> the Anti-Christian Liberal Union (7455ms)\nWhat does ACLU stand for?\tthe Fourth Amendment\t-3.9768089317439808\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU-NC, has been stood up for, the Fourth Amendment) -> the Fourth Amendment (7455ms)\nWhat does ACLU stand for?\ta basic public right\t-4.043428822732192\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, has stood up for, a basic public right) -> a basic public right (7477ms)\nWhat does ACLU stand for?\tprinciple\t-5.352793266296581\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stands for, principle) -> principle (7521ms)\nWhat does ACLU stand for?\tthe whole Bill\t-5.575919601672851\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, will now actually stand up for, the whole Bill) -> the whole Bill (7521ms)\nWhat does ACLU stand for?\tthe civil rights and liberties\t-5.72181220243411\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, will stand up for, the civil rights and liberties) -> the civil rights and liberties (7521ms)\nWhat does ACLU stand for?\tthe ACLU\t-6.131296075766042\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (card-carrying ACLU members, stand behind, the ACLU) -> the ACLU (8130ms)\nWhat does ACLU stand for?\tthe rights\t-6.279011047571592\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU?s butt, stands for, the rights) -> the rights (7539ms)\nWhat does ACLU stand for?\tlittle chance\t-6.299494887997889\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (the ACLU, stand, little chance) -> little chance (8140ms)\nWhat does ACLU stand for?\tthe American Legion\t-6.4416569415244975\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (The ACLU, stands with, the American Legion) -> the American Legion (8140ms)\nWhat does ACLU stand for?\tthe United States Supreme Court\t-6.542835789070075\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (ACLU attorneys, stand before, the United States Supreme Court) -> the United States Supreme Court (8140ms)\nWhat does ACLU stand for?\tthe United States\t-6.60719560102023\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (the ACLU, stands on in, the United States) -> the United States (8149ms)\nWhat does ACLU stand for?\tthe Supreme Court\t-6.631560884671702\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (ACLU attorneys, stand before, the Supreme Court) -> the Supreme Court (8149ms)\nWhat does ACLU stand for?\texpansion\t-6.6690765224068125\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU-MN, has always stood for, expansion) -> expansion (7540ms)\nWhat does ACLU stand for?\ta suit\t-6.997366860893534\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, consider for, $x) -> (ACLU briefly, considered a request for, a suit) -> a suit (7594ms)\nWhat does ACLU stand for?\ta case\t-7.037966398846049\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, have wait for, $x) -> (the ACLU, had been waiting for, a case) -> a case (7907ms)\nWhat does ACLU stand for?\tthe very center\t-8.041731495676782\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (ACLU, stands at, the very center) -> the very center (8161ms)\nWhat does ACLU stand for?\tprayer\t-8.407579358311775\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (The ACLU, has certainly stood against, prayer) -> prayer (8160ms)\nWhat does ACLU stand for?\tthe war\t-8.513489625863048\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (the ACLU, is reluctant to take a stand on, the war) -> the war (8169ms)\nWhat does ACLU stand for?\tbrainwashing\t-8.55982047868329\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (the ACLU, took a formal stand against, brainwashing) -> brainwashing (8169ms)\nWhat does ACLU stand for?\tconstitutional law\t-8.816656628653952\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (the ACLU, has helped define, constitutional law) -> constitutional law (8522ms)\nWhat does ACLU stand for?\tconservatives\t-8.866459128712911\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (The ACLU, has stood shoulder-to-shoulder with, conservatives) -> conservatives (8169ms)\nWhat does ACLU stand for?\tthemselves\t-8.903492033696992\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, be ashamed of, $x) -> (The ACLU, should be deeply ashamed of, themselves) -> themselves (8169ms)\nWhat does ACLU stand for?\tlaw\t-9.290946107298867\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (The ACLU, is defined by, law) -> law (8522ms)\nWhat does ACLU stand for?\tsame-sex couples\t-9.352019064188509\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working with, same-sex couples) -> same-sex couples (9337ms)\nWhat does ACLU stand for?\tMontana\t-9.760355061129566\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU attorneys, were working in, Montana) -> Montana (9337ms)\nWhat does ACLU stand for?\tfull force\t-9.814758852775565\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, would be there, $x) -> (the ACLU, would be there in, full force) -> full force (9138ms)\nWhat does ACLU stand for?\tweeks\t-9.831480246637955\tWhat does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, be silent for, $x) -> (The ACLU, has been silent for, weeks) -> weeks (7907ms)\nWhat does ACLU stand for?\tfull page ad propaganda war\t-9.853162618869106\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (the ACLU, were running, full page ad propaganda war) -> full page ad propaganda war (9113ms)\nWhat does ACLU stand for?\tfull-page advertisements today\t-9.895879035841286\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (the ACLU, is running, full-page advertisements today) -> full-page advertisements today (9113ms)\nWhat does ACLU stand for?\tSenator Jeanne Kohl-Welles\t-9.905251568414538\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working with, Senator Jeanne Kohl-Welles) -> Senator Jeanne Kohl-Welles (9337ms)\nWhat does ACLU stand for?\ta lawsuit\t-9.920121131882315\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (the ACLU, is considering bringing, a lawsuit) -> a lawsuit (8887ms)\nWhat does ACLU stand for?\tthe Richard Fine case\t-9.928380059853048\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, should be working on is, the Richard Fine case) -> the Richard Fine case (9337ms)\nWhat does ACLU stand for?\ta nationwide class action suit\t-9.955854775330362\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is considering, a nationwide class action suit) -> a nationwide class action suit (8887ms)\nWhat does ACLU stand for?\tEd Barocas\t-9.96496174867533\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Ed Barocas, are, the ACLU) -> Ed Barocas (13061ms)\nWhat does ACLU stand for?\tthe CIA\t-9.974071041886482\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (The ACLU, is running, the CIA) -> the CIA (9113ms)\nWhat does ACLU stand for?\tracial and ethnic profiling\t-9.99356386621351\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU, is also working to eliminate, racial and ethnic profiling) -> racial and ethnic profiling (9337ms)\nWhat does ACLU stand for?\t?the border?\t-10.010129432904643\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (aclu, is, ?the border?) -> ?the border? (13061ms)\nWhat does ACLU stand for?\tthe US Communist Party\t-10.037300713794531\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (the ACLU, have been considering joining, the US Communist Party) -> the US Communist Party (8887ms)\nWhat does ACLU stand for?\tApple\t-10.041731558026594\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be angry, $x) -> (the ACLU, is angry at, Apple) -> Apple (8622ms)\nWhat does ACLU stand for?\ta moratorium\t-10.063361173440283\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is working towards, a moratorium) -> a moratorium (9359ms)\nWhat does ACLU stand for?\tFBI\t-10.064874253257528\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (FBI, Is Keeping Documents on, ACLU) -> FBI (13061ms)\nWhat does ACLU stand for?\tLGBT equality\t-10.094339916603452\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is also working for, LGBT equality) -> LGBT equality (9359ms)\nWhat does ACLU stand for?\tthe City\t-10.112357771011665\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (?The ACLU, is pleased to work with, the City) -> the City (9359ms)\nWhat does ACLU stand for?\tvarious lawsuits\t-10.146015209724741\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (ACLU, is considering, various lawsuits) -> various lawsuits (8887ms)\nWhat does ACLU stand for?\tCounty Counsel\t-10.146564465377622\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU, would be happy to work with, County Counsel) -> County Counsel (9359ms)\nWhat does ACLU stand for?\tthe PGC.\t-10.159961167722061\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is considering a lawsuit against, the PGC.) -> the PGC. (8962ms)\nWhat does ACLU stand for?\tKeith and Food\t-10.16717806571178\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working to have, Keith and Food) -> Keith and Food (9359ms)\nWhat does ACLU stand for?\tseveral states\t-10.175010088086015\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is currently working in, several states) -> several states (9359ms)\nWhat does ACLU stand for?\tGovernor Romney\t-10.194371934159378\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be discuss, $x) -> (the ACLU?s letter, was discussed by, Governor Romney) -> Governor Romney (9392ms)\nWhat does ACLU stand for?\tstate legislators\t-10.202912170044169\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the Maryland ACLU, are working with, state legislators) -> state legislators (9392ms)\nWhat does ACLU stand for?\tIbarra?s resignation\t-10.216614403351628\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, have yet, $x) -> (The ACLU, has n?t yet accepted, Ibarra?s resignation) -> Ibarra?s resignation (9415ms)\nWhat does ACLU stand for?\tFacebook\t-10.216783740021402\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be angry, $x) -> (The ACLU, is now very angry with, Facebook) -> Facebook (8621ms)\nWhat does ACLU stand for?\tsponsors Rep. Edith Ajello\t-10.232297251242692\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The RI ACLU, is working with, sponsors Rep. Edith Ajello) -> sponsors Rep. Edith Ajello (9392ms)\nWhat does ACLU stand for?\tfree-speech\t-10.243277822383913\tWhat does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (free-speech, Instance Of, subject) (The ACLU, took a controversial stand for, free speech) -> free-speech (11166ms)\nWhat does ACLU stand for?\tthe PATRIOT Act\t-10.245579466092469\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the PATRIOT Act, are, the ACLU) -> the PATRIOT Act (13061ms)\nWhat does ACLU stand for?\tradio advertisements\t-10.24982638660167\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (the ACLU, is running, radio advertisements) -> radio advertisements (9113ms)\nWhat does ACLU stand for?\tHuman rights\t-10.332278174376848\tWhat does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Human rights, Instance Of, subject) (the ACLU, stand up for, human rights) -> Human rights (11165ms)\nWhat does ACLU stand for?\troad checks\t-10.345217674897924\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (ACLU ? Woman claims police, are running, road checks) -> road checks (9113ms)\nWhat does ACLU stand for?\tSenate passage\t-10.352854307612482\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU, have been working for, Senate passage) -> Senate passage (9392ms)\nWhat does ACLU stand for?\treligious freedom\t-10.382647690876599\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is to, religious freedom) -> religious freedom (13061ms)\nWhat does ACLU stand for?\tFree Speech\t-10.419097589204119\tWhat does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Free Speech, Instance Of, subject) (The ACLU, took a controversial stand for, free speech) -> Free Speech (11166ms)\nWhat does ACLU stand for?\tlocal police\t-10.438632755783512\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU-NC, is working to keep, local police) -> local police (9392ms)\nWhat does ACLU stand for?\tSacramento\t-10.469044852196994\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU-NC, has been working hard on in, Sacramento) -> Sacramento (9392ms)\nWhat does ACLU stand for?\tthe Lawyers ? Committee\t-10.495276207397207\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NC, will be working with, the Lawyers ? Committee) -> the Lawyers ? Committee (9415ms)\nWhat does ACLU stand for?\tpolice action\t-10.52387114971414\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, may be reluctant to object to, police action) -> police action (13061ms)\nWhat does ACLU stand for?\ta court challenge\t-10.534885358215917\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is considering, a court challenge) -> a court challenge (8962ms)\nWhat does ACLU stand for?\tPLEASE SHARE YOUR THOUGHTS\t-10.553051047371216\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (PLEASE SHARE YOUR THOUGHTS, Is, the ACLU) -> PLEASE SHARE YOUR THOUGHTS (13483ms)\nWhat does ACLU stand for?\tbusy defending pornographers\t-10.560120787230215\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, busy defending pornographers) -> busy defending pornographers (13483ms)\nWhat does ACLU stand for?\ta town\t-10.576256900974403\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (a town, was sued by, ACLU) -> a town (13483ms)\nWhat does ACLU stand for?\tFree speech\t-10.582301063737454\tWhat does ACLU stand for? -> what do [ aclu stand ] for ? -> what animal do aclu stand ? -> $x: ($x, instance of, animal) (aclu, stand, $x) -> (Free speech, Instance Of, completely different animal) (The ACLU, took a controversial stand for, free speech) -> Free speech (11582ms)\nWhat does ACLU stand for?\tOne example\t-10.612637266766331\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (One example, is, the ACLU) -> One example (13483ms)\nWhat does ACLU stand for?\ta host\t-10.612935953751682\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is representing, a host) -> a host (13483ms)\nWhat does ACLU stand for?\ta Canadian\t-10.619322788774815\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, a Canadian) -> a Canadian (13484ms)\nWhat does ACLU stand for?\ta joke\t-10.638816269144613\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, a joke) -> a joke (13564ms)\nWhat does ACLU stand for?\tTaser policies\t-10.675497604571413\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NC, has been working to reform, Taser policies) -> Taser policies (9415ms)\nWhat does ACLU stand for?\ta wide range\t-10.689962189383204\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, was soon working on, a wide range) -> a wide range (9415ms)\nWhat does ACLU stand for?\ttoday?s lawsuit\t-10.691827022306043\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (today?s lawsuit, is, ACLU) -> today?s lawsuit (13564ms)\nWhat does ACLU stand for?\tcommunity members\t-10.70085510018792\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU-NJ, is working with, community members) -> community members (9415ms)\nWhat does ACLU stand for?\tthe GOP\t-10.705974215532768\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, the GOP) -> the GOP (13564ms)\nWhat does ACLU stand for?\ttwo years\t-10.744678404652873\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NC, has been working for, two years) -> two years (9415ms)\nWhat does ACLU stand for?\tCAPPS II\t-10.74961789080203\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (CAPPS II, is, the ACLU) -> CAPPS II (13564ms)\nWhat does ACLU stand for?\tlegal counsel Steven Shapiro\t-10.75387500233434\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, legal counsel Steven Shapiro) -> legal counsel Steven Shapiro (13564ms)\nWhat does ACLU stand for?\ta peer harassment case\t-10.754674851992672\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is involved in, a peer harassment case) -> a peer harassment case (13646ms)\nWhat does ACLU stand for?\tToday?s case\t-10.761678643931688\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Today?s case, is, ACLU) -> Today?s case (13645ms)\nWhat does ACLU stand for?\tthe Tax Commission\t-10.76528519421042\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, was also pleased by, the Tax Commission) -> the Tax Commission (13645ms)\nWhat does ACLU stand for?\tMedia Matters\t-10.77496281270092\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Media Matters, is a sort of, ACLU) -> Media Matters (13646ms)\nWhat does ACLU stand for?\tan equal opportunity employer\t-10.806991439657224\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, an equal opportunity employer) -> an equal opportunity employer (13645ms)\nWhat does ACLU stand for?\tMuslims\t-10.817613109952099\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Muslims, was, the ACLU) -> Muslims (13744ms)\nWhat does ACLU stand for?\ta tool\t-10.829380773450998\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is designed to serve as, a tool) -> a tool (13744ms)\nWhat does ACLU stand for?\tRevise Release\t-10.836777149315404\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, Was Forced to, Revise Release) -> Revise Release (13743ms)\nWhat does ACLU stand for?\tMetro\t-10.849091474910534\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is committed to working with, Metro) -> Metro (9980ms)\nWhat does ACLU stand for?\ta professor\t-10.85775944394492\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (a professor, is counsel to, ACLU) -> a professor (13826ms)\nWhat does ACLU stand for?\tthe Death Penalty\t-10.87871822543471\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the Death Penalty, is, the ACLU) -> the Death Penalty (13826ms)\nWhat does ACLU stand for?\tGood ! Mom\t-10.879495673188453\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Good ! Mom, is, the ACLU) -> Good ! Mom (13826ms)\nWhat does ACLU stand for?\tthe Secretary\t-10.900206685616554\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NJ and LWVNJ, are working closely with, the Secretary) -> the Secretary (9980ms)\nWhat does ACLU stand for?\tAugust 5\t-10.900597027995872\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (August 5, is, the ACLU) -> August 5 (13826ms)\nWhat does ACLU stand for?\tAiding and abetting\t-10.91397936444958\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Aiding and abetting, is, the ACLU) -> Aiding and abetting (13826ms)\nWhat does ACLU stand for?\ttough prosecutors\t-10.91990309042865\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, were, tough prosecutors) -> tough prosecutors (13826ms)\nWhat does ACLU stand for?\tHumanities\t-10.928421110722757\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Humanities, was a leader in, ACLU) -> Humanities (13942ms)\nWhat does ACLU stand for?\tA good example\t-10.953768279521874\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (A good example, is, the ACLU) -> A good example (13942ms)\nWhat does ACLU stand for?\tMeetings\t-10.98854657653175\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Meetings, will be coordinated by, ACLU) -> Meetings (13943ms)\nWhat does ACLU stand for?\tRodd Monts\t-10.996098730727617\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Rodd Monts, is the field director for, ACLU.) -> Rodd Monts (13943ms)\nWhat does ACLU stand for?\ta voluntary organization\t-11.013724330500576\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, a voluntary organization) -> a voluntary organization (14110ms)\nWhat does ACLU stand for?\tthe TSA\t-11.017624615803303\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, has been unable to get any answers from, the TSA) -> the TSA (14110ms)\nWhat does ACLU stand for?\tsubstantial efforts\t-11.021019619601317\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is putting, substantial efforts) -> substantial efforts (14110ms)\nWhat does ACLU stand for?\tCAIR\t-11.022459112858476\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (* The ACLU, is working with, CAIR) -> CAIR (9980ms)\nWhat does ACLU stand for?\tPrayer\t-11.024997385092732\tWhat does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Prayer, Instance Of, subject) (The ACLU, has certainly stood against, prayer) -> Prayer (11166ms)\nWhat does ACLU stand for?\tjust where\t-11.035986378399587\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (just where, is, the ACLU) -> just where (14111ms)\nWhat does ACLU stand for?\tFOR?s virtual office\t-11.038437755075767\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (FOR?s virtual office, is there as well as, ACLU) -> FOR?s virtual office (14111ms)\nWhat does ACLU stand for?\thelp him\t-11.047231803753467\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is working to, help him) -> help him (9980ms)\nWhat does ACLU stand for?\tSecond question\t-11.060700509109672\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Second question, is, the ACLU) -> Second question (14111ms)\nWhat does ACLU stand for?\tACLJ?\t-11.067820400001672\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (ACLJ?, is curiously similar to, ACLU.) -> ACLJ? (14247ms)\nWhat does ACLU stand for?\tparticular significance\t-11.078492473504724\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (particular significance, was, the ACLU) -> particular significance (14247ms)\nWhat does ACLU stand for?\t280,000\t-11.092660280693819\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is reported to be, 280,000) -> 280,000 (14247ms)\nWhat does ACLU stand for?\tprofessional organization\t-11.096902499415165\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU., is a, professional organization) -> professional organization (14247ms)\nWhat does ACLU stand for?\tthe Matrix\t-11.097374651510163\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the Matrix, is, the ACLU) -> the Matrix (14247ms)\nWhat does ACLU stand for?\tthe New York case\t-11.126669427616564\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the New York case, was run by, ACLU.) -> the New York case (14247ms)\nWhat does ACLU stand for?\tPrinciple\t-11.156751880966578\tWhat does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Principle, Instance Of, subject) (the ACLU, stands for, principle) -> Principle (11582ms)\nWhat does ACLU stand for?\toriginal sources\t-11.167697154417755\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, are quoted with, original sources) -> original sources (14288ms)\nWhat does ACLU stand for?\tan excellent point\t-11.200321581606886\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (an excellent point, is, the ACLU) -> an excellent point (14288ms)\nWhat does ACLU stand for?\toppose policies\t-11.229684503224394\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, has been working vigorously to, oppose policies) -> oppose policies (10222ms)\nWhat does ACLU stand for?\tRomero\t-11.244601100045974\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Romero, is, the ACLU) -> Romero (14289ms)\nWhat does ACLU stand for?\ta long hair\t-11.244907548646921\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, called ? Being, a long hair) -> a long hair (14288ms)\nWhat does ACLU stand for?\tLee Rowland\t-11.25680542020658\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Lee Rowland, is, the ACLU) -> Lee Rowland (14329ms)\nWhat does ACLU stand for?\tTreme\t-11.25759707145528\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Treme, is, the ACLU) -> Treme (14329ms)\nWhat does ACLU stand for?\tcivilian privacy\t-11.259379578335587\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is expressing grave concern for, civilian privacy) -> civilian privacy (14329ms)\nWhat does ACLU stand for?\tAnn Beeson\t-11.319548277828732\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Ann Beeson, were, ACLU attorneys) -> Ann Beeson (14329ms)\nWhat does ACLU stand for?\tNew Policy\t-11.34424124514595\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is Hiring, New Policy) -> New Policy (14329ms)\nWhat does ACLU stand for?\tCaroline\t-11.348669430218715\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Caroline, is, the ACLU) -> Caroline (14329ms)\nWhat does ACLU stand for?\t01-05-06 @ 1:02\t-11.354363025313772\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (01-05-06 @ 1:02, am Filed under, ACLU) -> 01-05-06 @ 1:02 (14370ms)\nWhat does ACLU stand for?\tAmerica\t-11.371986223824448\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is destroying, America) -> America (14370ms)\nWhat does ACLU stand for?\t2003\t-11.39781342105327\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, has been working since, 2003) -> 2003 (10222ms)\nWhat does ACLU stand for?\tTHE DIFFERENCE ? 39 Drumm Street\t-11.480342189437149\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU AND ACLU FOUNDATION, IS, THE DIFFERENCE ? 39 Drumm Street) -> THE DIFFERENCE ? 39 Drumm Street (14370ms)\nWhat does ACLU stand for?\tOlivares\t-11.508435946440677\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Olivares, was only released after, ACLU) -> Olivares (14370ms)\nWhat does ACLU stand for?\tEducation\t-11.541186001820567\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Education, are being sued by, ACLU) -> Education (14370ms)\nWhat does ACLU stand for?\ta corporation\t-11.582661448861185\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a corporation) -> a corporation (14370ms)\nWhat does ACLU stand for?\tShows\t-11.58280785782231\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Shows, are produced by, ACLU) -> Shows (14411ms)\nWhat does ACLU stand for?\tchurch and state\t-11.58397338584625\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (church and state, is, the ACLU) -> church and state (14411ms)\nWhat does ACLU stand for?\tstaff profession\t-11.589450095151282\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (staff profession, is to, ACLU.) -> staff profession (14411ms)\nWhat does ACLU stand for?\tthe information\t-11.592793215822338\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be review, $x) -> (The ACLU, is currently reviewing, the information) -> the information (9139ms)\nWhat does ACLU stand for?\tExpansion\t-11.624630327764098\tWhat does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Expansion, Instance Of, subject) (The ACLU-MN, has always stood for, expansion) -> Expansion (11581ms)\nWhat does ACLU stand for?\tlegalization\t-11.665828358658821\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (The ACLU, defines, legalization) -> legalization (8522ms)\nWhat does ACLU stand for?\tpatriotism\t-11.703347191843072\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (The ACLU, apparently defines, patriotism) -> patriotism (8522ms)\nWhat does ACLU stand for?\tIrina | Dec 30 , 2005 4:19:01\t-11.733011566615907\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Irina | Dec 30 , 2005 4:19:01, is, the ACLU) -> Irina | Dec 30 , 2005 4:19:01 (14411ms)\nWhat does ACLU stand for?\tthe legislative front\t-11.748329218593954\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is also working on, the legislative front) -> the legislative front (10222ms)\nWhat does ACLU stand for?\tlegislation\t-11.769430239797575\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is also working proactively on, legislation) -> legislation (10222ms)\nWhat does ACLU stand for?\tlitigation\t-11.812020671645477\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is now considering, litigation) -> litigation (8962ms)\nWhat does ACLU stand for?\tthe states\t-11.850011283531451\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working in, the states) -> the states (10222ms)\nWhat does ACLU stand for?\tthe use\t-11.868620779676899\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU, is working over, the use) -> the use (10223ms)\nWhat does ACLU stand for?\tthe motions\t-11.945106824418291\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, have yet, $x) -> (The ACLU, has yet to publicly comment on, the motions) -> the motions (14451ms)\nWhat does ACLU stand for?\tThe residents\t-11.984123634694722\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The residents, are represented by, ACLU) -> The residents (14451ms)\nWhat does ACLU stand for?\tbad\t-11.990957731723118\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, bad) -> bad (14451ms)\nWhat does ACLU stand for?\tout\t-12.005432555913295\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, out) -> out (14451ms)\nWhat does ACLU stand for?\tthe same script\t-12.049811139181756\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The NAACP and ACLU, are working from, the same script) -> the same script (14607ms)\nWhat does ACLU stand for?\tthe case\t-12.06413125594241\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be review, $x) -> (the ACLU, is interested in reviewing, the case) -> the case (9139ms)\nWhat does ACLU stand for?\tlegislators\t-12.064370513630246\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NJ, is currently working with, legislators) -> legislators (14607ms)\nWhat does ACLU stand for?\tthe education system\t-12.094965996057926\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-WA, is committed to working in, the education system) -> the education system (14607ms)\nWhat does ACLU stand for?\tthe halls\t-12.096054314095076\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, has been working within, the halls) -> the halls (14607ms)\nWhat does ACLU stand for?\tthe constitutionality\t-12.110030026527976\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is considering challenging, the constitutionality) -> the constitutionality (8962ms)\nWhat does ACLU stand for?\tthe textbook\t-12.117853017091964\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, have yet, $x) -> (the ACLU, has yet to weigh in on, the textbook) -> the textbook (14607ms)\nWhat does ACLU stand for?\tinvolved in\t-12.120268859129554\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, involved in) -> involved in (14607ms)\nWhat does ACLU stand for?\tthe extent\t-12.125076340025242\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working to uncover, the extent) -> the extent (14647ms)\nWhat does ACLU stand for?\tthe wheel\t-12.137047922085031\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be asleep, $x) -> (the ACLU, is asleep at, the wheel) -> the wheel (8568ms)\nWhat does ACLU stand for?\tnowhere to be found\t-12.147515133304145\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, nowhere to be found) -> nowhere to be found (14647ms)\nWhat does ACLU stand for?\tthe parents\t-12.147646428897762\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the Louisiana ACLU, has been working with, the parents) -> the parents (14646ms)\nWhat does ACLU stand for?\tprivacy\t-12.153664079199604\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, has been working to protect, privacy) -> privacy (14646ms)\nWhat does ACLU stand for?\tdocuments\t-12.156787623444998\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, have yet, $x) -> (The ACLU, has released yet another set of, documents) -> documents (14647ms)\nWhat does ACLU stand for?\tright up there\t-12.167916252168098\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, right up there) -> right up there (14647ms)\nWhat does ACLU stand for?\tsimply unable to handle\t-12.186499363972043\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, simply unable to handle) -> simply unable to handle (14688ms)\nWhat does ACLU stand for?\tthe courts\t-12.190303600807745\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the courts, was, ACLU) -> the courts (14688ms)\nWhat does ACLU stand for?\ta party\t-12.206886184359178\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a party) -> a party (14688ms)\nWhat does ACLU stand for?\ta member\t-12.206886184359178\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a member) -> a member (14688ms)\nWhat does ACLU stand for?\topposed to them\t-12.208349241986046\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, opposed to them) -> opposed to them (14688ms)\nWhat does ACLU stand for?\tstrategies\t-12.220446090128416\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be discuss, $x) -> (The ACLU-NCLF, is discussing, strategies) -> strategies (14688ms)\nWhat does ACLU stand for?\tthe time\t-12.223569232354626\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the time, was director of, ACLU) -> the time (14728ms)\nWhat does ACLU stand for?\tthe county\t-12.245655314809557\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be review, $x) -> (The ACLU, is reviewing the action taken by, the county) -> the county (9139ms)\nWhat does ACLU stand for?\tfull of crap\t-12.246142479258356\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, full of crap) -> full of crap (14729ms)\nWhat does ACLU stand for?\tpart of an effort\t-12.285126709926256\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, part of an effort) -> part of an effort (14729ms)\nWhat does ACLU stand for?\tright at the top of the list\t-12.31761356881617\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, right at the top of the list) -> right at the top of the list (14728ms)\nWhat does ACLU stand for?\treforms\t-12.331845526129445\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, are working towards, reforms) -> reforms (14768ms)\nWhat does ACLU stand for?\tthe actual hill\t-12.340496693607951\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, has been doing a great job on, the actual hill) -> the actual hill (14768ms)\nWhat does ACLU stand for?\tThe case\t-12.377098876305624\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The case, is, ACLU) -> The case (14768ms)\nWhat does ACLU stand for?\tThe issue\t-12.387080214450275\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The issue, is, the ACLU) -> The issue (14769ms)\nWhat does ACLU stand for?\tout there\t-12.410308990468481\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, out there) -> out there (14769ms)\nWhat does ACLU stand for?\tthe community\t-12.413300461148008\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU-NJ, are working together to educate, the community) -> the community (14769ms)\nWhat does ACLU stand for?\t2008\t-12.437988841994152\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (2008, is filed under, ACLU) -> 2008 (14808ms)\nWhat does ACLU stand for?\tright there\t-12.442561832529275\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, right there) -> right there (14808ms)\nWhat does ACLU stand for?\tsuit\t-12.44420319015793\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (the ACLU, is considering filing, suit) -> suit (8962ms)\nWhat does ACLU stand for?\t2007\t-12.450633815435904\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (2007, is filed under, ACLU) -> 2007 (14809ms)\nWhat does ACLU stand for?\tThe question\t-12.456314685091147\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The question, is, the ACLU) -> The question (14808ms)\nWhat does ACLU stand for?\tthe other two authors\t-12.463349397816954\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the other two authors, are, ACLU lawyers) -> the other two authors (14808ms)\nWhat does ACLU stand for?\t2005\t-12.46756353381724\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (2005, is filed under, ACLU) -> 2005 (14808ms)\nWhat does ACLU stand for?\tprotections\t-12.469924466702498\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is working to bring, protections) -> protections (14854ms)\nWhat does ACLU stand for?\tworried about\t-12.477437775583404\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, worried about) -> worried about (14854ms)\nWhat does ACLU stand for?\t2006\t-12.478791079722056\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (2006, is filed under, ACLU) -> 2006 (14854ms)\nWhat does ACLU stand for?\tconjunction\t-12.49955058685627\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working in, conjunction) -> conjunction (14854ms)\nWhat does ACLU stand for?\tdiscrimination\t-12.509902257432431\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (discrimination, is, the ACLU) -> discrimination (14854ms)\nWhat does ACLU stand for?\tcoordination\t-12.521128408396937\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is working in, coordination) -> coordination (14854ms)\nWhat does ACLU stand for?\tthe most important church-state cases\t-12.521556764503835\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is one of, the most important church-state cases) -> the most important church-state cases (14894ms)\nWhat does ACLU stand for?\tmembers\t-12.52742813020942\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU and other groups, will be working with, members) -> members (14893ms)\nWhat does ACLU stand for?\tterrorist organization\t-12.535262883809711\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, terrorist organization) -> terrorist organization (14894ms)\nWhat does ACLU stand for?\tcoalition\t-12.53792816082695\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working in, coalition) -> coalition (14894ms)\nWhat does ACLU stand for?\tThe real Thomas Jefferson\t-12.556994813786979\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The real Thomas Jefferson, is, the ACLU) -> The real Thomas Jefferson (14894ms)\nWhat does ACLU stand for?\tcompanies\t-12.559515668898454\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working with, companies) -> companies (14934ms)\nWhat does ACLU stand for?\tThe brief\t-12.592432804163797\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The brief, was written by, ACLU) -> The brief (14934ms)\nWhat does ACLU stand for?\tdifficult\t-12.598410937270854\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: ($x, be people like, aclu) -> (difficult, are people like, the ACLU) -> difficult (8522ms)\nWhat does ACLU stand for?\tThe common-sense\t-12.620756382950862\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The common-sense, is with, ACLU) -> The common-sense (14935ms)\nWhat does ACLU stand for?\tthe authorised director\t-12.646298799748223\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the authorised director, is to, ACLU) -> the authorised director (14934ms)\nWhat does ACLU stand for?\tthe right questions\t-12.668403775989407\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is asking, the right questions) -> the right questions (14973ms)\nWhat does ACLU stand for?\ta communist front\t-12.676928264845412\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a communist front) -> a communist front (14973ms)\nWhat does ACLU stand for?\tThe following statement\t-12.690722593011856\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The following statement, can be attributed to, ACLU) -> The following statement (14973ms)\nWhat does ACLU stand for?\ta liberal organization\t-12.702939463276564\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a liberal organization) -> a liberal organization (14973ms)\nWhat does ACLU stand for?\tThe ruling\t-12.721997458987039\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The ruling, was made public on, ACLU) -> The ruling (15013ms)\nWhat does ACLU stand for?\tthe resolution\t-12.727194413441243\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the resolution, was, the ACLU) -> the resolution (15013ms)\nWhat does ACLU stand for?\tThe interactive forum\t-12.735453880839444\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The interactive forum, will be moderated by, ACLU) -> The interactive forum (15013ms)\nWhat does ACLU stand for?\tthe challenge\t-12.73727548710328\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the challenge, are, the ACLU) -> the challenge (15013ms)\nWhat does ACLU stand for?\tthe most dangerous groups\t-12.743411663853903\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is one of, the most dangerous groups) -> the most dangerous groups (15013ms)\nWhat does ACLU stand for?\tThe newest one\t-12.750733417683204\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The newest one, was, ACLU) -> The newest one (15012ms)\nWhat does ACLU stand for?\tThe eight groups\t-12.750733417683204\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The eight groups, were, the ACLU) -> The eight groups (15052ms)\nWhat does ACLU stand for?\tthe hell\t-12.808340334851756\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the hell, was, the ACLU) -> the hell (15052ms)\nWhat does ACLU stand for?\tnation\t-12.819297213287932\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is unique in, nation) -> nation (15052ms)\nWhat does ACLU stand for?\tthe pro-choice movement\t-12.83102595755976\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, has been centrally involved in, the pro-choice movement) -> the pro-choice movement (15052ms)\nWhat does ACLU stand for?\tthe workers\t-12.849404279359867\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the workers, were, the ACLU) -> the workers (15052ms)\nWhat does ACLU stand for?\tthe activities\t-12.875264710749807\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is talking about, the activities) -> the activities (15093ms)\nWhat does ACLU stand for?\tthe report\t-12.882184165946057\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the report, is, the ACLU) -> the report (15093ms)\nWhat does ACLU stand for?\tthe laws\t-12.89662957071385\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the laws, has been condemned by, ACLU) -> the laws (15092ms)\nWhat does ACLU stand for?\tthe lawsuit\t-12.910632641114324\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the lawsuit, is available via, ACLU) -> the lawsuit (15092ms)\nWhat does ACLU stand for?\tthe window\t-12.941251903105316\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, was peek out, the window) -> the window (15092ms)\nWhat does ACLU stand for?\tthe suit\t-12.998660188881468\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the suit, were represented by, ACLU) -> the suit (15132ms)\nWhat does ACLU stand for?\tthe school\t-13.020765112420357\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the school, was represented by, ACLU) -> the school (15132ms)\nWhat does ACLU stand for?\tgovernment\t-13.093198709129034\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (government, are, the ACLU) -> government (15132ms)\nWhat does ACLU stand for?\tthe most\t-13.186302366885847\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the most, is, the ACLU.) -> the most (15132ms)\nWhat does ACLU stand for?\tThe other anomaly\t-13.216597005850888\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The other anomaly, was, the ACLU.) -> The other anomaly (15132ms)\nWhat does ACLU stand for?\tgroups\t-13.237798881308205\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (groups, are incompatible with, ACLU) -> groups (15178ms)\nWhat does ACLU stand for?\tliberals\t-13.310301009789399\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (liberals, are the ones in, ACLU) -> liberals (15178ms)\nWhat does ACLU stand for?\tpersons\t-13.338470179866171\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (persons, were ever members of, ACLU) -> persons (15178ms)\nWhat does ACLU stand for?\tinmates\t-13.34802860531471\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is investigating whether, inmates) -> inmates (15178ms)\nWhat does ACLU stand for?\tcomment\t-13.38244772844858\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, was reached for, comment) -> comment (15178ms)\nWhat does ACLU stand for?\tbehalf\t-13.433048623330883\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, was acting on, behalf) -> behalf (15261ms)\nWhat does ACLU stand for?\tthe scapegoat\t-13.638753429744693\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, the scapegoat) -> the scapegoat (15488ms)\nWhat does ACLU stand for?\tinsane\t-14.015835484303466\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, insane) -> insane (15690ms)\nWhat does ACLU stand for?\tasleep\t-14.015835484303466\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, asleep) -> asleep (15690ms)\nWhat does ACLU stand for?\tupset\t-14.015835484303466\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, upset) -> upset (15690ms)\nWhat does ACLU stand for?\tterrorists\t-14.044109486356541\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, are, terrorists) -> terrorists (15690ms)\nWhat does ACLU stand for?\tfascists\t-14.064289868805785\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, are, fascists) -> fascists (15728ms)\nWhat does ACLU stand for?\tthe nations  foremost guardian of liberty\t-14.179104638397455\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, the nations  foremost guardian of liberty) -> the nations  foremost guardian of liberty (15728ms)\nWhat does ACLU stand for?\tthe problem\t-14.249160361358921\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, the problem) -> the problem (15728ms)\nWhat does ACLU stand for?\tthe heck\t-14.257060488062788\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the heck, is, the ACLU) -> the heck (15729ms)\nWhat does ACLU stand for?\tright\t-14.51940927967021\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, right) -> right (15769ms)\nWhat does ACLU stand for?\twrong\t-14.532382041568273\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, wrong) -> wrong (15768ms)\nWhat does ACLU stand for?\tsuccessful\t-14.54215106940705\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, successful) -> successful (15768ms)\nWhat does ACLU stand for?\tgood\t-14.545879837970462\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, good) -> good (15768ms)\nWhat does ACLU stand for?\tcorrect\t-14.60518427674733\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, correct) -> correct (15768ms)\nWhat does ACLU stand for?\tgreat\t-14.608685015296576\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, great) -> great (15768ms)\nWhat does ACLU stand for?\timportant\t-14.61375518687261\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, important) -> important (15805ms)\nWhat does ACLU stand for?\tgenuine\t-14.61375518687261\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, was, genuine) -> genuine (15806ms)\nWhat does ACLU stand for?\tpresent\t-14.61880079917923\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, present) -> present (15808ms)\nWhat does ACLU stand for?\ttherefore\t-14.619659100937508\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, was, therefore) -> therefore (15805ms)\nWhat does ACLU stand for?\tinvolved\t-14.619659100937508\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, involved) -> involved (15806ms)\nWhat does ACLU stand for?\tactive\t-14.640060219801459\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, active) -> active (15843ms)\nWhat does ACLU stand for?\tbeloved\t-14.640060219801459\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, beloved) -> beloved (15843ms)\nWhat does ACLU stand for?\tworried\t-14.640060219801459\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, worried) -> worried (15843ms)\nWhat does ACLU stand for?\tliberal\t-14.640060219801459\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, liberal) -> liberal (15843ms)\nWhat does ACLU stand for?\tcontroversial\t-14.640060219801459\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, controversial) -> controversial (15843ms)\nWhat does ACLU stand for?\taround\t-14.640060219801459\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, around) -> around (15806ms)\nWhat does ACLU stand for?\tstill\t-14.67893891353899\tWhat does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, still) -> still (15843ms)\nWhat is the highest dam in the U.S.?\tBhakra village\t-11.782560888284621\tWhat is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what be the highest dam ever build ? -> what be the highest dam build ? -> $x: (the highest dam, build, $x) -> (the world?s highest gravity dam, was built at, Bhakra village) -> Bhakra village (7392ms)\nWhat is the highest dam in the U.S.?\tNorth America\t-11.802274292208711\tWhat is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what be the highest dam ever build ? -> what be the highest dam build ? -> $x: (the highest dam, build, $x) -> (the highest dam, built in, North America) -> North America (7392ms)\nWhat is the highest dam in the U.S.?\ta narrow gorge\t-11.84175301619404\tWhat is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what be the highest dam ever build ? -> what be the highest dam build ? -> $x: (the highest dam, build, $x) -> (the second highest dam, was built across, a narrow gorge) -> a narrow gorge (7392ms)\nWhat is the highest dam in the U.S.?\tCondit\t-12.349178006622235\tWhat is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what bring about the highest dam ? -> $x: ($x, bring about, the highest dam) -> $x: ($x, will, the highest dam) -> (Condit, will be, the second-highest dam) -> Condit (8021ms)\nWhat is the highest dam in the U.S.?\tThe main dam\t-14.846909066273982\tWhat is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what bring about the highest dam ? -> $x: ($x, bring about, the highest dam) -> $x: ($x, bring about, highest dam) -> $x: ($x, will, highest dam) -> (The main dam, will be, highest rockfill dam) -> The main dam (11246ms)\nWhat is the highest dam in the U.S.?\tpower\t-15.832647758002775\tWhat is the highest dam in the U.S.? -> what [ be the highest dam ] in the us ? -> which one be be the highest dam ? -> $x: ($x, instance of, one) ($x, be be, the highest dam) -> (power, Instance Of, one's property) (power, was, the highest dam) -> power (10577ms)\nWhere is the world's largest meteorite?\tHoba meteorite\t-11.023010757106308\tWhere is the world's largest meteorite? -> where be the world s [ largest meteorite ] ? -> what be largest meteorite in the world ? -> $x: ($x, be largest meteorite in, the world) -> (Hoba meteorite, is the largest known meteorite in, the world) -> Hoba meteorite (5364ms)\nWhat is the largest variety of cactus?\ttip\t-14.918732874633445\tWhat is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: ($x, instance of, water) ($x, variety of, cactus) -> (tip, Instance Of, water cost) (Tip, here are several varieties of, the Hoodia Cactus) -> tip (3041ms)\nWhat is the largest variety of cactus?\tNature\t-17.06470872471208\tWhat is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: ($x, instance of, water) ($x, be many species of, cactus) -> (Nature, Instance Of, water purification technology) (nature, there are many species of, cactus) -> Nature (6015ms)\nWhat is the largest variety of cactus?\tThe garden\t-17.06967100151267\tWhat is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: ($x, be a by, water) ($x, be variety of, cactus) -> (The garden, is a joint effort by, water agencies) (the gardening, was varieties of, cactus) -> The garden (5115ms)\nWhat is the largest variety of cactus?\tthe garden\t-17.341435670154752\tWhat is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: (water, element, $x) ($x, be variety of, cactus) -> (the water, is an essential element of, the garden) (the gardening, was varieties of, cactus) -> the garden (5315ms)\nWhat is the largest variety of cactus?\tnature\t-18.73680722729617\tWhat is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: ($x, instance of, water) ($x, be many species of, cactus) -> (nature, Instance Of, water related sector) (nature, there are many species of, cactus) -> nature (6015ms)\nWhat are coral reefs?\tgray-areas\t-4.1561581354428085\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, gray-areas) -> gray-areas (5670ms)\nWhat are coral reefs?\tspecies-rich community\t-4.211625741254346\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, species-rich community) -> species-rich community (5670ms)\nWhat are coral reefs?\tnear-shore environment\t-4.260238965883286\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, near-shore environment) -> near-shore environment (5670ms)\nWhat are coral reefs?\thealthy coastal ecosystem\t-4.59756413059656\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, healthy coastal ecosystem) -> healthy coastal ecosystem (5670ms)\nWhat are coral reefs?\tsensitive benthic community\t-4.612346971500723\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive benthic community) -> sensitive benthic community (5670ms)\nWhat are coral reefs?\tcritical coastal habitat\t-4.660970654933626\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical coastal habitat) -> critical coastal habitat (5670ms)\nWhat are coral reefs?\tworld's ecosystem\t-4.677096316288021\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, world's ecosystem) -> world's ecosystem (5832ms)\nWhat are coral reefs?\tnatural barrier\t-4.701911088775759\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural barrier) -> natural barrier (5831ms)\nWhat are coral reefs?\tcoastal zone feature\t-4.748506120423492\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal zone feature) -> coastal zone feature (5831ms)\nWhat are coral reefs?\tsensitive coastal ecosystem\t-4.7737575810439665\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive coastal ecosystem) -> sensitive coastal ecosystem (5832ms)\nWhat are coral reefs?\tcoastal marine habitat\t-4.800189604456312\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal marine habitat) -> coastal marine habitat (5832ms)\nWhat are coral reefs?\tshallow marine area\t-4.81472968701976\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shallow marine area) -> shallow marine area (5831ms)\nWhat are coral reefs?\tmarine organism\t-4.819811626569198\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine organism) -> marine organism (5855ms)\nWhat are coral reefs?\tgreat location for diving\t-4.820225591076687\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, great location for diving) -> great location for diving (5855ms)\nWhat are coral reefs?\tmarine turtle habitat\t-4.8238691681535935\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine turtle habitat) -> marine turtle habitat (5856ms)\nWhat are coral reefs?\tkey coastal habitat\t-4.8261353158439295\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, key coastal habitat) -> key coastal habitat (5855ms)\nWhat are coral reefs?\tnatural and historical resource\t-4.83283611361275\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural and historical resource) -> natural and historical resource (5855ms)\nWhat are coral reefs?\tpotential tourist attraction\t-4.8372230945341\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, potential tourist attraction) -> potential tourist attraction (5855ms)\nWhat are coral reefs?\tspectacular dive site\t-4.8427193457705435\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, spectacular dive site) -> spectacular dive site (5876ms)\nWhat are coral reefs?\tnatural water area\t-4.843550427391042\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural water area) -> natural water area (5876ms)\nWhat are coral reefs?\tshort, word\t-4.843590415777836\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, short, word) -> short, word (5876ms)\nWhat are coral reefs?\timportance source of food\t-4.846343853381237\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral reef, Instance Of, importance source of food) -> importance source of food (5876ms)\nWhat are coral reefs?\tprotected natural resource\t-4.851528368552905\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, protected natural resource) -> protected natural resource (5876ms)\nWhat are coral reefs?\tbenthic community\t-4.876388434128503\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic community) -> benthic community (5876ms)\nWhat are coral reefs?\tecologically vital area\t-4.882117049969242\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ecologically vital area) -> ecologically vital area (5894ms)\nWhat are coral reefs?\tactive, living community\t-4.891237808816379\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, active, living community) -> active, living community (5894ms)\nWhat are coral reefs?\tNatural ecosystem s\t-4.891237808816379\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, Natural ecosystem s) -> Natural ecosystem s (5894ms)\nWhat are coral reefs?\tancient historical site\t-4.893867811076828\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ancient historical site) -> ancient historical site (5894ms)\nWhat are coral reefs?\tlarge, complex structure\t-4.894074199291191\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, large, complex structure) -> large, complex structure (5894ms)\nWhat are coral reefs?\tshallow coastal area\t-4.894455349070922\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shallow coastal area) -> shallow coastal area (5894ms)\nWhat are coral reefs?\tunderwater habitat\t-4.909316454215925\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, underwater habitat) -> underwater habitat (5941ms)\nWhat are coral reefs?\ttourist attraction\t-4.9098562235010785\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, tourist attraction) -> tourist attraction (5941ms)\nWhat are coral reefs?\tbit of a letdown\t-4.9125741641268945\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, bit of a letdown) -> bit of a letdown (5942ms)\nWhat are coral reefs?\tmarine management issue\t-4.923244712007243\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine management issue) -> marine management issue (5942ms)\nWhat are coral reefs?\tbeautiful shallow water habitat\t-4.930222039484278\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful shallow water habitat) -> beautiful shallow water habitat (5962ms)\nWhat are coral reefs?\tintertidal and marine ecosystem\t-4.930222039484278\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, intertidal and marine ecosystem) -> intertidal and marine ecosystem (5962ms)\nWhat are coral reefs?\tstressed and marginal environment\t-4.930222039484278\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, stressed and marginal environment) -> stressed and marginal environment (5942ms)\nWhat are coral reefs?\tfragile and complicated substructure\t-4.930222039484278\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fragile and complicated substructure) -> fragile and complicated substructure (5962ms)\nWhat are coral reefs?\tfragile and important ecosystem\t-4.930222039484278\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fragile and important ecosystem) -> fragile and important ecosystem (5942ms)\nWhat are coral reefs?\tfish and invertebrate species\t-4.930222039484278\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fish and invertebrate species) -> fish and invertebrate species (5962ms)\nWhat are coral reefs?\tEcosystem A bio logical community\t-4.962708898374194\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, Ecosystem A bio logical community) -> Ecosystem A bio logical community (5962ms)\nWhat are coral reefs?\tkey resource\t-4.97107275172417\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, key resource) -> key resource (5962ms)\nWhat are coral reefs?\tdelicate and fragile ecosystem\t-4.971349701522278\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, delicate and fragile ecosystem) -> delicate and fragile ecosystem (5979ms)\nWhat are coral reefs?\tessential part of the maritime Eco system\t-4.990197778973354\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, essential part of the maritime Eco system) -> essential part of the maritime Eco system (5979ms)\nWhat are coral reefs?\tcritical habitat\t-4.9926671694002\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical habitat) -> critical habitat (5979ms)\nWhat are coral reefs?\ticonic system\t-5.0018482877702155\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, iconic system) -> iconic system (5979ms)\nWhat are coral reefs?\toligotrophic environment\t-5.018401363975568\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, oligotrophic environment) -> oligotrophic environment (5979ms)\nWhat are coral reefs?\tshore habitat\t-5.070856801684402\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shore habitat) -> shore habitat (5979ms)\nWhat are coral reefs?\tcoastal zone\t-5.077498535130999\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal zone) -> coastal zone (6104ms)\nWhat are coral reefs?\tsolid object\t-5.079152013065301\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, solid object) -> solid object (6104ms)\nWhat are coral reefs?\twater resource\t-5.079842677501047\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, water resource) -> water resource (6104ms)\nWhat are coral reefs?\tbiogenic habitat\t-5.087005410121426\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biogenic habitat) -> biogenic habitat (6104ms)\nWhat are coral reefs?\tbenthic resource\t-5.10254094888953\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic resource) -> benthic resource (6104ms)\nWhat are coral reefs?\thealthy environment\t-5.102773308485888\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, healthy environment) -> healthy environment (6104ms)\nWhat are coral reefs?\tecosystem type\t-5.10939555882063\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ecosystem type) -> ecosystem type (6148ms)\nWhat are coral reefs?\tland barrier\t-5.119931556733319\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, land barrier) -> land barrier (6148ms)\nWhat are coral reefs?\tmarine component\t-5.12774767395412\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine component) -> marine component (6148ms)\nWhat are coral reefs?\tcal structure\t-5.136123132769108\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, cal structure) -> cal structure (6149ms)\nWhat are coral reefs?\taquatic organism\t-5.140107642203326\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic organism) -> aquatic organism (6149ms)\nWhat are coral reefs?\tbeautiful resource\t-5.165004857317525\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful resource) -> beautiful resource (6149ms)\nWhat are coral reefs?\tbeautiful organism\t-5.183283818972342\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful organism) -> beautiful organism (6233ms)\nWhat are coral reefs?\tdistinctive community\t-5.192880271650182\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, distinctive community) -> distinctive community (6234ms)\nWhat are coral reefs?\tcritical ecosystem\t-5.2007593322316845\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical ecosystem) -> critical ecosystem (6234ms)\nWhat are coral reefs?\tmarine structure\t-5.2007593322316845\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine structure) -> marine structure (6234ms)\nWhat are coral reefs?\tcalcareous substrate\t-5.2007593322316845\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, calcareous substrate) -> calcareous substrate (6234ms)\nWhat are coral reefs?\tcommon ecosystem\t-5.2007593322316845\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, common ecosystem) -> common ecosystem (6271ms)\nWhat are coral reefs?\toffshore habitat\t-5.2007593322316845\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, offshore habitat) -> offshore habitat (6233ms)\nWhat are coral reefs?\tmaritime resource\t-5.203501176510549\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, maritime resource) -> maritime resource (6271ms)\nWhat are coral reefs?\tclosed ecosystem\t-5.206243020789414\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, closed ecosystem) -> closed ecosystem (6271ms)\nWhat are coral reefs?\tbottom area\t-5.206852319245673\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, bottom area) -> bottom area (6272ms)\nWhat are coral reefs?\tunderwater site\t-5.208237089188721\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, underwater site) -> underwater site (6271ms)\nWhat are coral reefs?\tdeepwater habitat\t-5.208237089188721\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, deepwater habitat) -> deepwater habitat (6271ms)\nWhat are coral reefs?\tsensitive system\t-5.208984864761854\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive system) -> sensitive system (6332ms)\nWhat are coral reefs?\tthreatened area\t-5.208984864761854\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, threatened area) -> threatened area (6333ms)\nWhat are coral reefs?\taquatic community\t-5.211726709347144\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic community) -> aquatic community (6333ms)\nWhat are coral reefs?\tprime candidate\t-5.2189149866437345\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, prime candidate) -> prime candidate (6333ms)\nWhat are coral reefs?\taquatic species\t-5.224674503629908\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic species) -> aquatic species (6333ms)\nWhat are coral reefs?\tawesome place\t-5.227420740510586\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, awesome place) -> awesome place (6332ms)\nWhat are coral reefs?\tbiological system\t-5.230095146477658\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biological system) -> biological system (6419ms)\nWhat are coral reefs?\texcellent spot\t-5.231327977442454\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, excellent spot) -> excellent spot (6419ms)\nWhat are coral reefs?\tamazing place\t-5.232704761951023\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, amazing place) -> amazing place (6419ms)\nWhat are coral reefs?\tflorida water\t-5.237317254315618\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, florida water) -> florida water (6419ms)\nWhat are coral reefs?\tlimestone formation\t-5.237317254315618\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, limestone formation) -> limestone formation (6419ms)\nWhat are coral reefs?\twonderful place\t-5.24052040022961\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, wonderful place) -> wonderful place (6419ms)\nWhat are coral reefs?\taquaculture facility\t-5.241886994269684\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Reef Corals, Instance Of, aquaculture facility) -> aquaculture facility (6442ms)\nWhat are coral reefs?\tromantic restaurant\t-5.243213691779865\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, romantic restaurant) -> romantic restaurant (6442ms)\nWhat are coral reefs?\tbenthic habitat\t-5.259513136543912\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic habitat) -> benthic habitat (6442ms)\nWhat are coral reefs?\thabitat and community\t-5.567778283874873\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, habitat and community) -> habitat and community (6459ms)\nWhat are coral reefs?\tNational Monument\t-5.8105576834098525\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> $x: (coral reefs, np classification, $x) -> (Virgin Islands Coral Reef National Monument, NPS Classification, National Monument) -> National Monument (6482ms)\nWhat are coral reefs?\ttopic\t-6.888010359967717\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, topic) -> topic (6765ms)\nWhat are coral reefs?\tcommunity\t-6.9242392993413295\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, community) -> community (6765ms)\nWhat are coral reefs?\tstructure\t-7.01954773751422\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, structure) -> structure (6775ms)\nWhat are coral reefs?\tspecies\t-7.0305891825185345\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, species) -> species (6776ms)\nWhat are coral reefs?\tsystem\t-7.073139118030009\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, system) -> system (6775ms)\nWhat are coral reefs?\tentity\t-7.242652086027924\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, entity) -> entity (6775ms)\nWhat are coral reefs?\tattraction\t-7.291217314593251\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, attraction) -> attraction (6775ms)\nWhat are coral reefs?\tlocation\t-7.330330692107864\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, location) -> location (6785ms)\nWhat are coral reefs?\tproject\t-7.362272172754137\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, project) -> project (6785ms)\nWhat are coral reefs?\tfood\t-7.38026351474802\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, food) -> food (6785ms)\nWhat are coral reefs?\tbiomes\t-7.402721279695028\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biomes) -> biomes (6785ms)\nWhat are coral reefs?\tbrand\t-7.424624158375828\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, brand) -> brand (6785ms)\nWhat are coral reefs?\tDaughters of a Coral Dawn\t-9.736262952096581\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Daughters of a coral dawn, Part of series, Daughters of a Coral Dawn) -> Daughters of a Coral Dawn (8637ms)\nWhat are coral reefs?\tBowman-Biltmore Hotels\t-9.77524718276448\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Gables Biltmore Hotel, Part of Brand, Bowman-Biltmore Hotels) -> Bowman-Biltmore Hotels (8637ms)\nWhat are coral reefs?\thabitat\t-9.890997514238514\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> $x: (coral reefs, be the type of, $x) -> (?Coral reef?, may be the type of, habitat) -> habitat (6812ms)\nWhat are coral reefs?\tpacific.noun.01\t-10.021613778540596\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral sea.noun.01, part meronym, pacific.noun.01) -> pacific.noun.01 (8637ms)\nWhat are coral reefs?\tworld war ii.noun.01\t-10.128820412877317\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral sea.noun.02, part meronym, world war ii.noun.01) -> world war ii.noun.01 (8637ms)\nWhat are coral reefs?\tFDA OTC monograph part 333e\t-10.167804643545217\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral 0.003 soap, FDA OTC monograph part, FDA OTC monograph part 333e) -> FDA OTC monograph part 333e (8637ms)\nWhat are coral reefs?\tUttara Kannada\t-10.236707701026663\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Uttara Kannada, is well known for, coral reefs) -> Uttara Kannada (7590ms)\nWhat are coral reefs?\tSea Pictures\t-10.261983492045506\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Where Corals Lie, Part of, Sea Pictures) -> Sea Pictures (8637ms)\nWhat are coral reefs?\tSouth Florida\t-10.369401915791846\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (South Florida, are known for, their coral reefs) -> South Florida (7591ms)\nWhat are coral reefs?\tkm\t-10.372331577294894\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (km, little is known about, the coral reef) -> km (7591ms)\nWhat are coral reefs?\tHard corals\t-10.374953874543111\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Hard corals, are also known as, reef building corals) -> Hard corals (7590ms)\nWhat are coral reefs?\tAcroporids\t-10.386287361377503\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef of coral ? -> $x: ($x, be reef of, coral) -> (Acroporids, are reef-building types of, coral) -> Acroporids (7186ms)\nWhat are coral reefs?\tGrand Cayman\t-10.397855306238695\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Grand Cayman, is known for, its stunning coral reefs) -> Grand Cayman (7590ms)\nWhat are coral reefs?\tPalmyra Atoll\t-10.40181937180844\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Palmyra Atoll, is known for, its steep coral reef walls) -> Palmyra Atoll (7590ms)\nWhat are coral reefs?\tlobster.noun.01\t-10.557646950224207\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral.noun.03, part meronym, lobster.noun.01) -> lobster.noun.01 (8656ms)\nWhat are coral reefs?\tAfrican coral reefs\t-10.630111684226277\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (African coral reefs, Also known as, The African Coral Reef) -> African coral reefs (11250ms)\nWhat are coral reefs?\tMnemba Atoll\t-10.667303530726201\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be large reef call ? -> $x: (large reef, call, $x) -> (a large coral reef, called, Mnemba Atoll) -> Mnemba Atoll (6920ms)\nWhat are coral reefs?\tconservation\t-10.668457642232557\tWhat are coral reefs? -> $x: (coral reefs, instance of, $x) -> $x: (coral reefs, modelling, $x) -> (coral reefs, create models for, conservation) -> conservation (6812ms)\nWhat are coral reefs?\tCoral Reef Alliance\t-10.752329852777901\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Coral Reef Alliance, Also known as, The Coral Reef Alliance) -> Coral Reef Alliance (11250ms)\nWhat are coral reefs?\tCoral Reef Place\t-10.7913140834458\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Coral Reef Place, Also known as, Coral Reef Place, Vancouver) -> Coral Reef Place (11250ms)\nWhat are coral reefs?\tAES Coral Reef LLC\t-10.7913140834458\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (AES Coral Reef LLC, Also known as, AES Coral Reef, LLC) -> AES Coral Reef LLC (11250ms)\nWhat are coral reefs?\tLe R?cif de corail\t-10.823800942335716\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Le R?cif de corail, Also known as, Coral Reefs) -> Le R?cif de corail (11250ms)\nWhat are coral reefs?\train forests\t-10.838257836169221\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be large reef call ? -> $x: (large reef, call, $x) -> (large tropical reefs, called, rain forests) -> rain forests (6921ms)\nWhat are coral reefs?\tEnvironmental guidelines for reef coral harvesting operations\t-10.851289822934875\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Environmental guidelines for reef coral harvesting operations, Also known as, Reef coral harvesting operations) -> Environmental guidelines for reef coral harvesting operations (11250ms)\nWhat are coral reefs?\tEnvironmental issues with coral reefs\t-10.874851720591296\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Environmental issues with coral reefs, Also known as, Human impact on coral reefs) -> Environmental issues with coral reefs (11250ms)\nWhat are coral reefs?\tPisces guide to watching fishes\t-10.874851720591296\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Pisces guide to watching fishes, Also known as, Coral reef fish behavior.) -> Pisces guide to watching fishes (11317ms)\nWhat are coral reefs?\tA guide to the coral reefs of the Caribbean\t-10.874851720591296\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (A guide to the coral reefs of the Caribbean, Also known as, Coral reefs of the Caribbean) -> A guide to the coral reefs of the Caribbean (11250ms)\nWhat are coral reefs?\tPulau Hantu\t-10.922200880947827\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Pulau Hantu, is known for, its rich coral reefs) -> Pulau Hantu (7612ms)\nWhat are coral reefs?\tThe Yucatan Peninsula\t-10.935767394572768\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The Yucatan Peninsula, might be known for, coral reefs) -> The Yucatan Peninsula (7612ms)\nWhat are coral reefs?\tScholastic's the magic school bus takes a dive: a book about coral reefs\t-10.955458212573795\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Scholastic's the magic school bus takes a dive: a book about coral reefs, Also known as, Book about coral reefs.) -> Scholastic's the magic school bus takes a dive: a book about coral reefs (11317ms)\nWhat are coral reefs?\tCoral reefs & islands: the natural history of a threatened paradise\t-10.955458212573795\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Coral reefs & islands: the natural history of a threatened paradise, Also known as, Coral reefs and islands.) -> Coral reefs & islands: the natural history of a threatened paradise (11316ms)\nWhat are coral reefs?\tA field guide to the coral reef fishes of the Indian and West Pacific Oceans\t-10.976953277102462\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (A field guide to the coral reef fishes of the Indian and West Pacific Oceans, Also known as, Coral reef fishes of the Indian and West Pacific Oceans.) -> A field guide to the coral reef fishes of the Indian and West Pacific Oceans (11316ms)\nWhat are coral reefs?\tAqaba\t-10.980637589288152\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Aqaba, is also well known for, its coral reef) -> Aqaba (7612ms)\nWhat are coral reefs?\trecreational fishing\t-11.009336956448731\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (clean artificial reefs, were meant for, recreational fishing) -> recreational fishing (7186ms)\nWhat are coral reefs?\tGiftun Island\t-11.02208004173669\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Giftun Island, is known for, its vibrant coral reefs) -> Giftun Island (7612ms)\nWhat are coral reefs?\tMontserrat\t-11.05003672430184\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Montserrat, is known for, its coral reefs) -> Montserrat (7612ms)\nWhat are coral reefs?\t?coral reef?\t-11.077503440712773\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (Reef fishing, does n?t have to mean, ?coral reef?) -> ?coral reef? (7186ms)\nWhat are coral reefs?\tHOH\t-11.079128712753553\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, is part of, HOH) -> HOH (8657ms)\nWhat are coral reefs?\tPorto de Galinhas\t-11.100529294327837\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Porto de Galinhas, is known for, its coral reefs) -> Porto de Galinhas (7612ms)\nWhat are coral reefs?\tGarden\t-11.104882033728487\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Garden, is known as, the second largest coral reef) -> Garden (7626ms)\nWhat are coral reefs?\tThe Bahamas\t-11.105997613311954\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The Bahamas, is known to offer worldly, coral reefs) -> The Bahamas (7626ms)\nWhat are coral reefs?\tAnguilla\t-11.120837153158131\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Anguilla, is known for, its coral reef) -> Anguilla (7626ms)\nWhat are coral reefs?\tBarbados\t-11.165732629242878\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Barbados, is known for, its extensive coral reefs) -> Barbados (7626ms)\nWhat are coral reefs?\tKayangel\t-11.182467813545637\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Kayangel, is known as, Palau?s true coral reef) -> Kayangel (7626ms)\nWhat are coral reefs?\ttype of underwater environment\t-11.183224939442912\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be coral reef reef ? -> $x: (coral reef reef, instance of, $x) -> (Reefs Coral reef, Instance Of, type of underwater environment) -> type of underwater environment (10914ms)\nWhat are coral reefs?\tLakshadweep\t-11.212595140928537\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Lakshadweep, is well known for, its coral reefs) -> Lakshadweep (7626ms)\nWhat are coral reefs?\tFlorida\t-11.216131939235218\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Florida, is known for, its beautiful coral reefs) -> Florida (7683ms)\nWhat are coral reefs?\tthe City\t-11.217764762984359\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the City, is known for, its beautiful coral reef) -> the City (7683ms)\nWhat are coral reefs?\tHurghada\t-11.223299971714725\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Hurghada, is known worldwide especially for, its coral reefs) -> Hurghada (7683ms)\nWhat are coral reefs?\tSea Aquarium beachCura?ao\t-11.22660678510221\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Sea Aquarium beachCura?ao, is known for, its coral reefs) -> Sea Aquarium beachCura?ao (7683ms)\nWhat are coral reefs?\tAntigua\t-11.243636522451421\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Antigua, is best known for, its magnificent coral reef) -> Antigua (7683ms)\nWhat are coral reefs?\trelatively little\t-11.258365822340098\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (relatively little, is known about, coral reefs) -> relatively little (7683ms)\nWhat are coral reefs?\tThe Cahuita National Park\t-11.306146446234155\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The Cahuita National Park, may be best known for, its coral reef) -> The Cahuita National Park (7732ms)\nWhat are coral reefs?\tthe Dry Tortugas National Park\t-11.339484667466998\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the Dry Tortugas National Park, is known for, its coral reefs) -> the Dry Tortugas National Park (7732ms)\nWhat are coral reefs?\tthe Great Barrier Reef\t-11.374594680627357\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (This tiny coral cay, is both part of, the Great Barrier Reef) -> the Great Barrier Reef (8657ms)\nWhat are coral reefs?\tthe Great Mayan Reef\t-11.408512546653267\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are part of, the Great Mayan Reef) -> the Great Mayan Reef (8657ms)\nWhat are coral reefs?\tRed algae\t-11.427615982605381\tWhat are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (Red algae, are important members of, coral reefs) -> Red algae (12656ms)\nWhat are coral reefs?\ta chain\t-11.505585161115878\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Cape Coral, is part of, a chain) -> a chain (8656ms)\nWhat are coral reefs?\tLive rocks\t-11.526416676144287\tWhat are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (Live rocks, are pieces of, coral reef) -> Live rocks (12656ms)\nWhat are coral reefs?\ta group\t-11.553907752786614\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are part of, a group) -> a group (8657ms)\nWhat are coral reefs?\tmarine ecosystem\t-11.569501460073216\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral reefs, are the most fascinating part of, marine ecosystem) -> marine ecosystem (8674ms)\nWhat are coral reefs?\tThe Great Barrier Reef\t-11.620007244395563\tWhat are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (The Great Barrier Reef, is the largest network of, coral reefs) -> The Great Barrier Reef (12656ms)\nWhat are coral reefs?\tThe Keys\t-11.632259915806872\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The Keys, are known for, their spectacular coral reefs) -> The Keys (7732ms)\nWhat are coral reefs?\tGuam\t-11.662113614358224\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are an indispensible part of, Guam) -> Guam (8674ms)\nWhat are coral reefs?\tthe IRIS peer-to-peer network project\t-11.675270546890179\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, is part of, the IRIS peer-to-peer network project) -> the IRIS peer-to-peer network project (8674ms)\nWhat are coral reefs?\tCoral Reef\t-11.681552764124124\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Coral Reef, Also known as, \"Coral Reef\"@ja) -> Coral Reef (12154ms)\nWhat are coral reefs?\tBelize\t-11.68395554908317\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (colorful coral gardens, are just part of, Belize) -> Belize (8674ms)\nWhat are coral reefs?\tthe REA teams\t-11.684837646011136\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral scientists, are part of, the REA teams) -> the REA teams (8674ms)\nWhat are coral reefs?\tGrace Bay\t-11.6941651514061\tWhat are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (Grace Bay, are a chain of, coral reefs) -> Grace Bay (12656ms)\nWhat are coral reefs?\tCura?ao\t-11.714999129400482\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Cura?ao, is known for, its coral reefs) -> Cura?ao (7732ms)\nWhat are coral reefs?\tthe Nephtheidae family\t-11.739813145229267\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the Tree Coral, is part of, the Nephtheidae family) -> the Nephtheidae family (8691ms)\nWhat are coral reefs?\tNew Caledonia\t-11.742111369140261\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the Coral Sea, are also part of, New Caledonia) -> New Caledonia (8691ms)\nWhat are coral reefs?\tthe Reef\t-11.745032020311498\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (an unspoilt coral cay, is actually part of, the Reef) -> the Reef (8691ms)\nWhat are coral reefs?\tSenunu Bay\t-11.809873456734014\tWhat are coral reefs? -> [ what be ] coral reef ? -> what be of a coral reef ? -> $x: ($x, be of, a coral reef) -> (Senunu Bay, is part of, a coral reef triangle) -> Senunu Bay (13014ms)\nWhat are coral reefs?\tCahuita\t-11.834167264520945\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Cahuita, is also known for, its coral reef) -> Cahuita (7732ms)\nWhat are coral reefs?\tcone snails\t-11.869270156634649\tWhat are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (cone snails, is the loss of, coral reefs) -> cone snails (13044ms)\nWhat are coral reefs?\ta biologically diverse Earth\t-11.873301330491067\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are all part of, a biologically diverse Earth) -> a biologically diverse Earth (8691ms)\nWhat are coral reefs?\tCancun\t-11.889339150587315\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Cancun, is well known to have, rich and virgin coral reefs) -> Cancun (7732ms)\nWhat are coral reefs?\tthe Mesoamerican Barrier Reef System\t-11.89055790284134\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (its coral reef, is part of, the Mesoamerican Barrier Reef System) -> the Mesoamerican Barrier Reef System (8691ms)\nWhat are coral reefs?\tglobal warming\t-11.893302562373721\tWhat are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (global warming, is causing the destruction of, coral reefs) -> global warming (13074ms)\nWhat are coral reefs?\tthe Miami-Dade School District\t-11.894551620286057\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Gables, are part of, the Miami-Dade School District) -> the Miami-Dade School District (8706ms)\nWhat are coral reefs?\tChalky Mount\t-11.910857427527706\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: ($x, be the part of, coral) -> (Chalky Mount, is the only part of, the coral capped island) -> Chalky Mount (13104ms)\nWhat are coral reefs?\tRoatan\t-11.922289201638753\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Roatan, is known for having, the second largest coral reef) -> Roatan (7745ms)\nWhat are coral reefs?\tThe Great Calusa Blueway\t-11.925199113302964\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Cape Coral, is an awesome part of, The Great Calusa Blueway) -> The Great Calusa Blueway (8706ms)\nWhat are coral reefs?\tan obvious heraldic display\t-11.925925780503563\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the red coral, is part of, an obvious heraldic display) -> an obvious heraldic display (8706ms)\nWhat are coral reefs?\ta reef?s ecosystem\t-11.926874686951987\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are an important part of, a reef?s ecosystem) -> a reef?s ecosystem (8706ms)\nWhat are coral reefs?\tthe National parks\t-11.927849562446138\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The Coral Reef Preserve, is part of, the National parks) -> the National parks (8706ms)\nWhat are coral reefs?\tthe Great Barrier Reef Marine Park\t-11.928578392409149\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the coral reefs, are part of, the Great Barrier Reef Marine Park) -> the Great Barrier Reef Marine Park (8706ms)\nWhat are coral reefs?\ta general idea\t-11.936530756934806\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (a reef tank, is only meant to provide, a general idea) -> a general idea (7186ms)\nWhat are coral reefs?\tthe Marietas ? marine life\t-11.937452664648523\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are also part of, the Marietas ? marine life) -> the Marietas ? marine life (8723ms)\nWhat are coral reefs?\tCahuita National Park\t-11.948680210553338\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the coral reef, offshore are all part of, Cahuita National Park) -> Cahuita National Park (8723ms)\nWhat are coral reefs?\tKoh Samui\t-11.955630299586936\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Cove, is a relatively quiet part of, Koh Samui) -> Koh Samui (8723ms)\nWhat are coral reefs?\tthe Ongame network\t-11.996821330978987\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, is part of, the Ongame network) -> the Ongame network (8723ms)\nWhat are coral reefs?\tthe Isidella genus\t-12.001672762365734\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Bamboo corals, are part of, the Isidella genus) -> the Isidella genus (8723ms)\nWhat are coral reefs?\tOngame network\t-12.019108037057482\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Poker, is part of, Ongame network) -> Ongame network (8723ms)\nWhat are coral reefs?\tthe Lee County School District\t-12.033733376272053\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Cape Coral, is part of, the Lee County School District) -> the Lee County School District (8739ms)\nWhat are coral reefs?\t20,000 acres\t-12.046391641605851\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Springs, was part of, 20,000 acres) -> 20,000 acres (8739ms)\nWhat are coral reefs?\ta consolidation trend\t-12.10145351586634\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Springs, is part of, a consolidation trend) -> a consolidation trend (8739ms)\nWhat are coral reefs?\ta larger effort\t-12.108258749992265\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Reef Watch, is part of, a larger effort) -> a larger effort (8739ms)\nWhat are coral reefs?\tBIMP-EAGA\t-12.124125673408047\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, make up a significant part of, BIMP-EAGA) -> BIMP-EAGA (8739ms)\nWhat are coral reefs?\tthe Presbyterian Church\t-12.138533094598294\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Ridge Presbyterian, is a part of, the Presbyterian Church) -> the Presbyterian Church (8739ms)\nWhat are coral reefs?\texpedition itineraries\t-12.159242451607788\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (huge Coral Gardens, are all a part of, expedition itineraries) -> expedition itineraries (8755ms)\nWhat are coral reefs?\tMexico?s Marine National Park\t-12.16516157323502\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral coast, became part of, Mexico?s Marine National Park) -> Mexico?s Marine National Park (8755ms)\nWhat are coral reefs?\tprehistoric and now extinct worms\t-12.269870133962336\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (These reefs, were created by, prehistoric and now extinct worms) -> prehistoric and now extinct worms (7413ms)\nWhat are coral reefs?\t2?5 %\t-12.307377300175116\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (other reefs, had mean values of, 2?5 %) -> 2?5 % (7186ms)\nWhat are coral reefs?\ttiny organisms\t-12.316079614499039\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (Coral reefs, are created by, tiny organisms) -> tiny organisms (7413ms)\nWhat are coral reefs?\ta gradual transition\t-12.318305602179585\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The coral rubble, is part of, a gradual transition) -> a gradual transition (8754ms)\nWhat are coral reefs?\ta marine preserve\t-12.32964112680503\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Island, is part of, a marine preserve) -> a marine preserve (8754ms)\nWhat are coral reefs?\ta bit\t-12.373968774003659\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (her coral lips, parted, a bit) -> a bit (8754ms)\nWhat are coral reefs?\ta reef\t-12.46322803820329\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (Reef breaks, are created by, a reef) -> a reef (7413ms)\nWhat are coral reefs?\tmass spawning\t-12.586663046722078\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (most corals, take part in, mass spawning) -> mass spawning (8754ms)\nWhat are coral reefs?\tthe United States Army Corps\t-12.613679769605323\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (The reefs, were created by, the United States Army Corps) -> the United States Army Corps (7413ms)\nWhat are coral reefs?\tthe Act\t-12.688648488022785\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (a Reef Maintenance Fund, created by, the Act) -> the Act (7413ms)\nWhat are coral reefs?\tThe islands\t-12.808851269211871\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The islands, are also known for, the coral reefs) -> The islands (7745ms)\nWhat are coral reefs?\tThe hospital\t-12.834557559184699\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The hospital, then was known as, Coral Reef Hospital) -> The hospital (7745ms)\nWhat are coral reefs?\tthe red sea\t-12.83955952788626\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the red sea, is known for, its coral reef) -> the red sea (7745ms)\nWhat are coral reefs?\tThe refuge\t-12.84958893881252\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The refuge, is known for, its coral reef) -> The refuge (7745ms)\nWhat are coral reefs?\texecutive order\t-12.86215695659188\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (the Coral Reef Ecosystem Reserve, created by, executive order) -> executive order (7745ms)\nWhat are coral reefs?\tthe same latitude\t-12.955389422094171\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the same latitude, is known for, its coral reefs) -> the same latitude (7758ms)\nWhat are coral reefs?\tthe least\t-13.06328478320393\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the least, is generally known about, coral reef diversity) -> the least (7757ms)\nWhat are coral reefs?\tphylum copper cadmium granules\t-13.068572486064014\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are part of, phylum copper cadmium granules) -> phylum copper cadmium granules (8770ms)\nWhat are coral reefs?\tthe northern tip\t-13.073415009069631\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the northern tip, is well-known for, its beautiful coral reefs) -> the northern tip (7758ms)\nWhat are coral reefs?\tThe underwater park\t-13.08137279208409\tWhat are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The underwater park, is known for, its protected coral reef) -> The underwater park (7757ms)\nWhat are coral reefs?\tthe program\t-13.192613013848652\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the most common corals, is part of, the program) -> the program (8770ms)\nWhat are coral reefs?\tthe 2011 Tour de Turtles marathon\t-13.223844336607765\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, took part in, the 2011 Tour de Turtles marathon) -> the 2011 Tour de Turtles marathon (8770ms)\nWhat are coral reefs?\tthe action\t-13.256210709837069\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Lounge Sit, be part of, the action) -> the action (8939ms)\nWhat are coral reefs?\tthe newer castle\t-13.263735472773181\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The coral pieces, are part of, the newer castle) -> the newer castle (8939ms)\nWhat are coral reefs?\tphylum\t-13.321787816257599\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are part of, phylum) -> phylum (8939ms)\nWhat are coral reefs?\tfunction\t-13.35749313205551\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (coral reefs, were meant to, function) -> function (7186ms)\nWhat are coral reefs?\tthe summertime experience\t-13.438122688821867\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral, are just part of, the summertime experience) -> the summertime experience (8939ms)\nWhat are coral reefs?\tawareness\t-13.495939463219697\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (The Reef, is meant to raise, awareness) -> awareness (7771ms)\nWhat are coral reefs?\tthe same eco-system\t-13.528566043512205\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are part of, the same eco-system) -> the same eco-system (8939ms)\nWhat are coral reefs?\tcorals\t-13.593497661019907\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (Coral reefs, are created by, corals) -> corals (7771ms)\nWhat are coral reefs?\tthe famous Great Barrier Reef\t-13.594732714166769\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (a coral lagoon, is part of, the famous Great Barrier Reef) -> the famous Great Barrier Reef (8939ms)\nWhat are coral reefs?\tthe diving experience\t-13.63073745802694\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral gardens and wrecks, are all part of, the diving experience) -> the diving experience (8939ms)\nWhat are coral reefs?\tthe only stretch\t-13.634307450551644\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The coral reef, here is part of, the only stretch) -> the only stretch (8986ms)\nWhat are coral reefs?\tthe interesting sightings\t-13.659586374043633\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the coral bommies, were also part of, the interesting sightings) -> the interesting sightings (8986ms)\nWhat are coral reefs?\tthe cobra family\t-13.660078308651727\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (a coral snake, is part of, the cobra family) -> the cobra family (8986ms)\nWhat are coral reefs?\tthe reef ecosystem\t-13.669739797123349\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (live coral, is a normal part of, the reef ecosystem) -> the reef ecosystem (8986ms)\nWhat are coral reefs?\tthe aquarium\t-13.674417378764812\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (This coral display, is part of, the aquarium) -> the aquarium (8986ms)\nWhat are coral reefs?\tthe ship\t-13.678371248435923\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the colored coral, becomes an integral part of, the ship) -> the ship (8986ms)\nWhat are coral reefs?\tthe foundation\t-13.714898194597613\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral reefs, are part of, the foundation) -> the foundation (8986ms)\nWhat are coral reefs?\tthe reef\t-13.731721605698167\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (a coral cay, is actually part of, the reef) -> the reef (8986ms)\nWhat are coral reefs?\talgae\t-13.73466344732296\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (healthy reefs, mean keeping, algae) -> algae (7770ms)\nWhat are coral reefs?\tthe ocean environment\t-13.739591471451286\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (healthy coral, is a vital part of, the ocean environment) -> the ocean environment (9004ms)\nWhat are coral reefs?\tthe larger Gala Coral group\t-13.754622798376813\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (close Coral Casino, is part of, the larger Gala Coral group) -> the larger Gala Coral group (9004ms)\nWhat are coral reefs?\tthe story\t-13.816837749346645\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, is only part of, the story) -> the story (9004ms)\nWhat are coral reefs?\tthe park?s vision\t-13.829937110311828\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (A coral regeneration plan, is a vital part of, the park?s vision) -> the park?s vision (9004ms)\nWhat are coral reefs?\tthe discussion\t-13.89657463618693\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral, is n?t an important part of, the discussion) -> the discussion (9004ms)\nWhat are coral reefs?\tmanagement\t-13.905313636230987\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (the reefs, will mean improved systems of, management) -> management (7770ms)\nWhat are coral reefs?\tthe cycle\t-13.979624643808652\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The coral reef, is an integral part of, the cycle) -> the cycle (9004ms)\nWhat are coral reefs?\tthe ultimate\t-13.982926610305052\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Beach Diving Hotel, will be taking part in, the ultimate) -> the ultimate (9004ms)\nWhat are coral reefs?\tthe intricate food\t-14.02886367041691\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (corals, also play a part in, the intricate food) -> the intricate food (9022ms)\nWhat are coral reefs?\tthe article\t-14.034936773899087\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reef destruction, was only one part of, the article) -> the article (9022ms)\nWhat are coral reefs?\tthe hobby\t-14.05697712931072\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral propagation, really is an interesting part of, the hobby) -> the hobby (9022ms)\nWhat are coral reefs?\tthe food\t-14.077209942473129\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (live corals, produce part of, the food) -> the food (9022ms)\nWhat are coral reefs?\tthe new marine reserve\t-14.0984825739047\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (These coral reefs, now form part of, the new marine reserve) -> the new marine reserve (9022ms)\nWhat are coral reefs?\tthe coral ecosystem\t-14.111978246165886\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (soft corals, form an important part of, the coral ecosystem) -> the coral ecosystem (9022ms)\nWhat are coral reefs?\tthe answer\t-14.138611793773924\tWhat are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the corals, may provide part of, the answer) -> the answer (9022ms)\nWhat are coral reefs?\ttrouble\t-14.269584249562005\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (SAVE A REEF, mean by, trouble) -> trouble (7770ms)\nWhat are coral reefs?\tthe placing steel and concrete\t-14.337300536864767\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (Artificial reefs, are created by, the placing steel and concrete) -> the placing steel and concrete (7771ms)\nWhat are coral reefs?\tmillions\t-14.340320057588745\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (reefs, could mean economic trouble for, millions) -> millions (7783ms)\nWhat are coral reefs?\tthe structures\t-14.600884931577948\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (artificial reefs, are created by, the structures) -> the structures (7784ms)\nWhat are coral reefs?\tthe river\t-14.656440455106846\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (a reef pass, has been created by, the river) -> the river (7783ms)\nWhat are coral reefs?\tmussels\t-16.197702864789843\tWhat are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (the reefs, created by, mussels) -> mussels (7784ms)\nWhat companies manufacture golf clubs?\tCallaway Golf Company\t-5.089554218274531\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> (Callaway Golf Company, Instance Of, American sporting good company) (Callaway Company, has manufactured, the golf clubs) -> Callaway Golf Company (1784ms)\nWhat companies manufacture golf clubs?\tNike Golf\t-5.9576372684302985\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> (Nike Golf, Instance Of, company) (Nike Golf, to manufacture, golf clubs) -> Nike Golf (2280ms)\nWhat companies manufacture golf clubs?\tthe U.S.\t-7.422329864991506\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: (companies, drug, $x) ($x, manufacture, golf clubs) -> (the same companies, make the drugs in, the U.S.) (the U.S., are manufactured in, fewer than 10 golf club foundries) -> the U.S. (3625ms)\nWhat companies manufacture golf clubs?\tCallaway Company\t-7.710656374245925\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, have manufacture, golf clubs) -> (Callaway Company, Instance Of, American sporting good company) (Callaway Company, has manufactured, the golf clubs) -> Callaway Company (6829ms)\nWhat companies manufacture golf clubs?\tCallaway company\t-7.83982473762403\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, have manufacture, golf clubs) -> (Callaway company, Instance Of, leading golf company) (Callaway Company, has manufactured, the golf clubs) -> Callaway company (6829ms)\nWhat companies manufacture golf clubs?\tGolf\t-7.885810410181837\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be manufacture, golf clubs) -> (Golf, Instance Of, company) (golf, is definitely the manufacturing of, golf clubs) -> Golf (4513ms)\nWhat companies manufacture golf clubs?\tGolfers Inc\t-8.014526182687597\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, like to buy, golf clubs) -> (Golfers Inc, Instance Of, private company) (golfers, would like to buy, good golf clubs) -> Golfers Inc (6882ms)\nWhat companies manufacture golf clubs?\tCallaway Golf Co.\t-8.318009647688235\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, market, golf clubs) -> (Callaway Golf Co., Instance Of, company) (CALLAWAY GOLF CO., will directly market, its golf clubs) -> Callaway Golf Co. (3443ms)\nWhat companies manufacture golf clubs?\tCleveland golf\t-8.36009875824664\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, begin produce, golf clubs) -> (Cleveland golf, Instance Of, top company) (Cleveland Golf, began producing, golf clubs) -> Cleveland golf (6557ms)\nWhat companies manufacture golf clubs?\tCallaway\t-8.424495669633277\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, of selling, golf clubs) -> (Callaway, Instance Of, company) (Callaway, still sells a broad line of, premium golf clubs) -> Callaway (6023ms)\nWhat companies manufacture golf clubs?\tInstance IH\t-8.433703531899502\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be market, golf clubs) -> (Instance IH, Instance Of, utilised truck primary company) (instance, may be in-market to purchase, golf clubs) -> Instance IH (5076ms)\nWhat companies manufacture golf clubs?\tGoodwill\t-8.471538248697687\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be source, golf clubs) -> (Goodwill, Instance Of, company) (Goodwill, are great sources of, golf clubs) -> Goodwill (3968ms)\nWhat companies manufacture golf clubs?\tTitanium Metals\t-8.53092328307725\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be familiar, golf clubs) -> (Titanium Metals, Instance Of, metal company) (Titanium metal, is familiar used in, golf club heads) -> Titanium Metals (4890ms)\nWhat companies manufacture golf clubs?\tCallaway Golf CO\t-8.55837536641778\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, market, golf clubs) -> (Callaway Golf CO, Instance Of, private company) (CALLAWAY GOLF CO., will directly market, its golf clubs) -> Callaway Golf CO (3506ms)\nWhat companies manufacture golf clubs?\tTitanium Metal\t-8.562632150892084\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be familiar, golf clubs) -> (Titanium Metal, Instance Of, private company) (Titanium metal, is familiar used in, golf club heads) -> Titanium Metal (4890ms)\nWhat companies manufacture golf clubs?\tCallaway golf\t-8.713346852207945\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be the manufacturer of, golf clubs) -> (Callaway golf, Instance Of, company) (Callaway Golf, is the leading manufacturer of, golf clubs) -> Callaway golf (3625ms)\nWhat companies manufacture golf clubs?\tGuest\t-8.860489299697925\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, can ship, golf clubs) -> (Guest, Instance Of, company property) (guests, can ship, their golf clubs) -> Guest (6557ms)\nWhat companies manufacture golf clubs?\tEtc\t-8.860685638687603\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, then head, golf clubs) -> (Etc, Instance Of, private company) (etc, then headed up to, the Golf Club) -> Etc (5076ms)\nWhat companies manufacture golf clubs?\tNikeGolf\t-8.864785041478232\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, to manufacture, golf clubs) -> (NikeGolf, Instance Of, golf company) (Nike Golf, to manufacture, golf clubs) -> NikeGolf (2531ms)\nWhat companies manufacture golf clubs?\tCleveland Golf\t-8.907242076463591\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, begin produce, golf clubs) -> (Cleveland Golf, Instance Of, company) (Cleveland Golf, began producing, golf clubs) -> Cleveland Golf (6557ms)\nWhat companies manufacture golf clubs?\tNIKE Golf\t-8.945674406118815\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, to manufacture, golf clubs) -> (NIKE Golf, Instance Of, owned company) (Nike Golf, to manufacture, golf clubs) -> NIKE Golf (2531ms)\nWhat companies manufacture golf clubs?\tGuests\t-8.963331349923031\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, can ship, golf clubs) -> (Guests, Instance Of, company) (guests, can ship, their golf clubs) -> Guests (6557ms)\nWhat companies manufacture golf clubs?\tCallaway Golf\t-8.969104602971898\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be the manufacturer of, golf clubs) -> (Callaway Golf, Instance Of, company) (Callaway Golf, is the leading manufacturer of, golf clubs) -> Callaway Golf (3625ms)\nWhat companies manufacture golf clubs?\tCom\t-9.130043200653432\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be source, golf clubs) -> (Com, Instance Of, company) (com, is your source for, new and used golf clubs) -> Com (3968ms)\nWhat companies manufacture golf clubs?\tCountry Club\t-9.21477226556282\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be be sell, golf clubs) -> (Country Club, Instance Of, company) (Country Club, was sold to, the Club de Golf Lachute Canada) -> Country Club (5426ms)\nWhat companies manufacture golf clubs?\t3Balls . com\t-9.215507255823407\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be source, golf clubs) -> (3Balls . com, Instance Of, company) (3balls.com, is your source for, new and used golf clubs) -> 3Balls . com (3968ms)\nWhat companies manufacture golf clubs?\tGOLF\t-9.712135149041318\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, be the kind of, companies) ($x, manufacture, golf clubs) -> (GOLF, is a kind of equipment for the sport, COMPANIES) (golf, is definitely the manufacturing of, golf clubs) -> GOLF (5713ms)\nWhat companies manufacture golf clubs?\tSeth Raynor\t-10.528989948965203\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Seth Raynor, Golf Courses Designed, Chicago Golf Club Golf Course) -> Seth Raynor (16094ms)\nWhat companies manufacture golf clubs?\tJohn Harbottlem\t-10.528989948965203\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (John Harbottlem, Golf Courses Designed, Country Club Golf Course) -> John Harbottlem (16094ms)\nWhat companies manufacture golf clubs?\tJack Nicklaus\t-10.528989948965203\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Jack Nicklaus, Golf Courses Designed, Bear's Club Golf Course) -> Jack Nicklaus (16094ms)\nWhat companies manufacture golf clubs?\tguests\t-10.690456793510112\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, can ship, golf clubs) -> (guests, Instance Of, international company) (guests, can ship, their golf clubs) -> guests (7137ms)\nWhat companies manufacture golf clubs?\texecutive\t-10.702295006221823\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be be sell, golf clubs) -> (executive, Instance Of, company) (Executives, now are selling, golf clubs) -> executive (5426ms)\nWhat companies manufacture golf clubs?\tArnold Palmer\t-10.772331795006792\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Arnold Palmer, Golf Courses Designed, Tournament Club Golf Course) -> Arnold Palmer (16094ms)\nWhat companies manufacture golf clubs?\tWilliam Powell\t-10.772331795006792\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (William Powell, Golf Courses Designed, Clearview Golf Club) -> William Powell (16094ms)\nWhat companies manufacture golf clubs?\tguest\t-10.773508161992236\tWhat companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, can ship, golf clubs) -> (guest, Instance Of, company function) (guests, can ship, their golf clubs) -> guest (7137ms)\nWhat companies manufacture golf clubs?\tHarold B. Lamb\t-10.889094465644247\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Harold B. Lamb, Golf Courses Designed, Country Club Golf Course) -> Harold B. Lamb (16094ms)\nWhat companies manufacture golf clubs?\tCharles B. Macdonald\t-10.889094465644247\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Charles B. Macdonald, Golf Courses Designed, Chicago Golf Club Golf Course) -> Charles B. Macdonald (16094ms)\nWhat companies manufacture golf clubs?\tA. W. Tillinghast\t-10.916583346243407\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (A. W. Tillinghast, Golf Courses Designed, San Francisco Golf Club) -> A. W. Tillinghast (16419ms)\nWhat companies manufacture golf clubs?\tChattanooga\t-11.156060542255357\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (Chattanooga, manufactured, the first left-handed golf club) -> Chattanooga (9351ms)\nWhat companies manufacture golf clubs?\tkennel area\t-11.420978307795925\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (kennel area, manufactured from, golf club pages) -> kennel area (9351ms)\nWhat companies manufacture golf clubs?\tEye contact\t-11.64426645707995\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (Eye contact, Instance Of, part of country dancing) (your golf club, made, contact) -> Eye contact (9121ms)\nWhat companies manufacture golf clubs?\tNew York City\t-11.919853338264895\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (the first golfing club, was created in, New York City) -> New York City (9235ms)\nWhat companies manufacture golf clubs?\tkey contact\t-11.963492601464361\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (key contact, Instance Of, country information) (your golf club, made, contact) -> key contact (9121ms)\nWhat companies manufacture golf clubs?\tThe corporation\t-12.178362171463714\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (The corporation, manufactures, golf club components) -> The corporation (9351ms)\nWhat companies manufacture golf clubs?\tPhoenix\t-12.266588483495834\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (Phoenix, Instance Of, country) (golf clubs, are made in, Phoenix) -> Phoenix (9121ms)\nWhat companies manufacture golf clubs?\tGary Player\t-12.336381601946877\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Gary Player, designed, Shanghai Links Golf & Country Club) -> Gary Player (16419ms)\nWhat companies manufacture golf clubs?\tGreg Norman\t-12.422525467514314\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Greg Norman, designed, the El Camaleon Golf Club) -> Greg Norman (16419ms)\nWhat companies manufacture golf clubs?\tColin Montgomerie\t-12.6316120291615\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Colin Montgomerie, designed, the beautiful Montgomerie Golf Club) -> Colin Montgomerie (16419ms)\nWhat companies manufacture golf clubs?\tThe Jack Nicklaus\t-12.643796092691499\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Jack Nicklaus, designed, Golf Club) -> The Jack Nicklaus (16419ms)\nWhat companies manufacture golf clubs?\tNike\t-12.653206583940452\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (Nike, Instance Of, home country) (fitted Golf Clubs, made by, Nike) -> Nike (9121ms)\nWhat companies manufacture golf clubs?\tWood\t-12.722325474959025\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (Wood, Instance Of, country) (golf clubs, were made entirely of, wood) -> Wood (9236ms)\nWhat companies manufacture golf clubs?\tLandmark Golf Company\t-12.7371535918179\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Landmark Golf Company, designed, Falcon Golf Club) -> Landmark Golf Company (16419ms)\nWhat companies manufacture golf clubs?\tGolf players\t-12.750996997047173\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Golf players, usually are designed to utilize, golf clubs) -> Golf players (16653ms)\nWhat companies manufacture golf clubs?\tthe Greg Norman\t-12.857946373242772\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Greg Norman, designed, Tibur?n Golf Club) -> the Greg Norman (16652ms)\nWhat companies manufacture golf clubs?\tgolf\t-12.89613150251028\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (golf, is definitely the manufacturing of, golf clubs) -> golf (9351ms)\nWhat companies manufacture golf clubs?\tthe Jack Nicklaus\t-12.941065975645598\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Jack Nicklaus, designed, Ritz Carlton Golf Club) -> the Jack Nicklaus (16653ms)\nWhat companies manufacture golf clubs?\tthe Fred Couples\t-12.965624551475956\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Fred Couples, designed, Westfields Golf Club) -> the Fred Couples (16653ms)\nWhat companies manufacture golf clubs?\tthe Rees Jones\t-12.981739077118991\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Rees Jones, designed, Currituck Club Golf Course) -> the Rees Jones (16683ms)\nWhat companies manufacture golf clubs?\tthe top brand Golf Wedges\t-12.994383287766855\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (the top brand Golf Wedges, also manufactures, Golf Club Clones) -> the top brand Golf Wedges (9440ms)\nWhat companies manufacture golf clubs?\tthe Gary Player\t-12.998111410365873\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Gary Player, designed, River Run Golf Club) -> the Gary Player (16683ms)\nWhat companies manufacture golf clubs?\tGary Panks\t-13.025757925443532\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Gary Panks, designed, the Whirlwind Golf Club) -> Gary Panks (16683ms)\nWhat companies manufacture golf clubs?\tstep\t-13.080886264237327\tWhat companies manufacture golf clubs? -> what company [ manufacture golf club ] ? -> what be the company manufacture golf club ? -> $x: (the company manufacture golf club, instance of, $x) -> (Golf clubs manufactured by the company, Instance Of, step) -> step (9441ms)\nWhat companies manufacture golf clubs?\tThe Robert Cupp\t-13.095125265740622\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Robert Cupp, designed, Silverstone Golf Club) -> The Robert Cupp (16714ms)\nWhat companies manufacture golf clubs?\tThe Rick Jacobson\t-13.09860141579788\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Rick Jacobson, designed, Augustine Golf Club) -> The Rick Jacobson (16714ms)\nWhat companies manufacture golf clubs?\tsandy soils\t-13.10820548827812\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create on, $x) -> (Sand Golf Club, was created on, sandy soils) -> sandy soils (9441ms)\nWhat companies manufacture golf clubs?\tScotland James Braid\t-13.15073710234774\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Scotland James Braid, designed, Blairmore and Strone Golf Club) -> Scotland James Braid (16744ms)\nWhat companies manufacture golf clubs?\tBill Amick\t-13.167001081927996\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Bill Amick, originally designed, Hidden Lakes Golf Club) -> Bill Amick (16744ms)\nWhat companies manufacture golf clubs?\ta 250-acre spread\t-13.167234716212826\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create on, $x) -> (the Nantucket Golf Club, was created on, a 250-acre spread) -> a 250-acre spread (9441ms)\nWhat companies manufacture golf clubs?\tJack Frei\t-13.184388353801658\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Jack Frei, designed, Golf Club) -> Jack Frei (16744ms)\nWhat companies manufacture golf clubs?\tThe Henry Cotton\t-13.18848454722308\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Henry Cotton, designed, Golf Club Bologna) -> The Henry Cotton (16744ms)\nWhat companies manufacture golf clubs?\tTom Weiskopf\t-13.200463525594866\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Tom Weiskopf, designed, Hassayampa Golf Club) -> Tom Weiskopf (16744ms)\nWhat companies manufacture golf clubs?\tChris King Gene Hamm\t-13.206245067422316\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Chris King Gene Hamm, designed, Beachwood Golf Club) -> Chris King Gene Hamm (16744ms)\nWhat companies manufacture golf clubs?\tThe Robert Trent Jones Jr\t-13.228242541902324\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Robert Trent Jones Jr, designed, Penha Longa Golf Club) -> The Robert Trent Jones Jr (16744ms)\nWhat companies manufacture golf clubs?\tTom Fazio\t-13.241608380857961\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Tom Fazio, designed, Bull?s Bridge Golf Club) -> Tom Fazio (16773ms)\nWhat companies manufacture golf clubs?\tthe Ron Kirby\t-13.257627057433446\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Ron Kirby, designed, Barbados Golf Club) -> the Ron Kirby (16773ms)\nWhat companies manufacture golf clubs?\tInternet Software\t-13.268950045165207\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Internet Software, is designed for, golf clubs and associations) -> Internet Software (16773ms)\nWhat companies manufacture golf clubs?\tRobert Mendralla\t-13.269099771485124\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Robert Mendralla, has been designing, golf clubs) -> Robert Mendralla (16773ms)\nWhat companies manufacture golf clubs?\tHall-of-Famer Johnny Miller\t-13.277079369066751\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Hall-of-Famer Johnny Miller, designed, Badlands Golf Club) -> Hall-of-Famer Johnny Miller (16773ms)\nWhat companies manufacture golf clubs?\tthe Crenshaw-Coore\t-13.296707361031356\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Crenshaw-Coore, designed, Colorado Golf Club) -> the Crenshaw-Coore (16773ms)\nWhat companies manufacture golf clubs?\tthe Tom Watson\t-13.305236633352903\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Tom Watson, designed, Conservatory Golf Club) -> the Tom Watson (16773ms)\nWhat companies manufacture golf clubs?\tthe Donald Ross\t-13.320660264773727\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Donald Ross, designed, Detroit Golf Club) -> the Donald Ross (16773ms)\nWhat companies manufacture golf clubs?\tthe Joe Lee\t-13.322428637575921\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Joe Lee, designed, International Golf Club) -> the Joe Lee (16804ms)\nWhat companies manufacture golf clubs?\tthe Tom Fazio\t-13.324335321742808\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Tom Fazio, designed, Camp Creek Golf Club) -> the Tom Fazio (16804ms)\nWhat companies manufacture golf clubs?\ta young Greg Nash\t-13.349610325356963\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (a young Greg Nash, designed, Hillcrest Golf Club) -> a young Greg Nash (16804ms)\nWhat companies manufacture golf clubs?\tArthur Hills\t-13.352884239188025\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Arthur Hills, designed, the spectacular Bay Harbor Golf Club) -> Arthur Hills (16804ms)\nWhat companies manufacture golf clubs?\tthe Nick Fold\t-13.372599435296948\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Nick Fold, designed, Ocean Dunes Golf Club) -> the Nick Fold (16804ms)\nWhat companies manufacture golf clubs?\tNicklaus\t-13.378348169726888\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Nicklaus, later co-designed, Concession Golf Club) -> Nicklaus (16804ms)\nWhat companies manufacture golf clubs?\tthe Jack Nicklaus Signature\t-13.380636004262803\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Jack Nicklaus Signature, designed, Ritz Carlton Golf Club) -> the Jack Nicklaus Signature (16834ms)\nWhat companies manufacture golf clubs?\tan Arnold Palmer\t-13.392136189077608\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (an Arnold Palmer, designed, Golf Club) -> an Arnold Palmer (16834ms)\nWhat companies manufacture golf clubs?\tMaster Designer Gray Player\t-13.422685226745385\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Master Designer Gray Player, designed, Ria Bintan Golf Club) -> Master Designer Gray Player (16834ms)\nWhat companies manufacture golf clubs?\tPGA Member Jim Hardy\t-13.424534452655921\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (PGA Member Jim Hardy, have designed, Twin Rivers Golf Club) -> PGA Member Jim Hardy (16834ms)\nWhat companies manufacture golf clubs?\tWell-known Meade & Garfield\t-13.431527248863235\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Well-known Meade & Garfield, designed, the Euclid Golf Club) -> Well-known Meade & Garfield (16834ms)\nWhat companies manufacture golf clubs?\tThe Greg Norman\t-13.452177265441538\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Greg Norman, designed, Ritz-Carlton Golf Club Orlando) -> The Greg Norman (16834ms)\nWhat companies manufacture golf clubs?\tRobert Cupp Jr.\t-13.457561169799515\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Robert Cupp Jr., designed, the 7,100-yard Rookery Golf Club) -> Robert Cupp Jr. (16834ms)\nWhat companies manufacture golf clubs?\tThe Arnold Palmer\t-13.46856092567958\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Arnold Palmer, designed, Tralee Golf Club?s 18-hole course) -> The Arnold Palmer (16897ms)\nWhat companies manufacture golf clubs?\tthe Old Tom Morris\t-13.468912449744298\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Old Tom Morris, designed, Machrihanish Golf Club) -> the Old Tom Morris (16897ms)\nWhat companies manufacture golf clubs?\tTaylorMade\t-13.535218247856937\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (TaylorMade, Instance Of, company) (Taylormade, Makes, Golf Clubs) -> TaylorMade (18777ms)\nWhat companies manufacture golf clubs?\t1995\t-13.552835543423765\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (the Pebble Creek Golf Club, was created in, 1995) -> 1995 (9235ms)\nWhat companies manufacture golf clubs?\t1603\t-13.554460614849601\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (The first golf club, was created in, 1603) -> 1603 (9235ms)\nWhat companies manufacture golf clubs?\tthe Arnold Palmer\t-13.5848143983809\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Arnold Palmer, designed, Mill Cove Golf Club) -> the Arnold Palmer (16897ms)\nWhat companies manufacture golf clubs?\tthe Colin Montgomerie\t-13.586582771183092\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Colin Montgomerie, designed, Royal Golf Club course) -> the Colin Montgomerie (16897ms)\nWhat companies manufacture golf clubs?\tthe companies\t-13.586633894054794\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (the companies, manufacturing, golf clubs) -> the companies (9440ms)\nWhat companies manufacture golf clubs?\ta most enjoyable 27-hole Arthur Hills\t-13.602021888087997\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (a most enjoyable 27-hole Arthur Hills, designed, golf club) -> a most enjoyable 27-hole Arthur Hills (16897ms)\nWhat companies manufacture golf clubs?\t1923\t-13.603234800713809\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (The Royal Waterloo Golf Club, was created in, 1923) -> 1923 (9235ms)\nWhat companies manufacture golf clubs?\tthe 27 hole Arthur Hills\t-13.6503059189164\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the 27 hole Arthur Hills, designed, Hill Country Golf Club) -> the 27 hole Arthur Hills (16960ms)\nWhat companies manufacture golf clubs?\tthe last collaboration\t-13.669625578555802\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (Elkhorn Golf Club, was created in, the last collaboration) -> the last collaboration (9235ms)\nWhat companies manufacture golf clubs?\tgolf bag # 101\t-13.693304183511994\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (golf bag # 101, are designed to carry, your golf clubs) -> golf bag # 101 (16960ms)\nWhat companies manufacture golf clubs?\tCA, Cleveland Golf\t-13.70107712825677\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company produce golf club ? -> $x: ($x, instance of, company) ($x, produce, golf club) -> (CA, Cleveland Golf, Instance Of, company) (Cleveland Golf, began producing, golf clubs) -> CA, Cleveland Golf (16960ms)\nWhat companies manufacture golf clubs?\tthe 1923\t-13.762139498392091\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> $x: (golf club, create in, $x) -> (the Marrakech Royal Golf Club, created in, the 1923) -> the 1923 (9440ms)\nWhat companies manufacture golf clubs?\tthe 27-hole , Jack Nicklaus\t-13.840392474763599\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the 27-hole , Jack Nicklaus, designed, Breckenridge Golf Club) -> the 27-hole , Jack Nicklaus (16960ms)\nWhat companies manufacture golf clubs?\tGil Hanse\t-13.859564204146988\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Gil Hanse, designed, Applebrook Golf Club) -> Gil Hanse (16960ms)\nWhat companies manufacture golf clubs?\tPing\t-13.90442204163323\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Ping, Instance Of, company) (Ping, make, golf clubs) -> Ping (18777ms)\nWhat companies manufacture golf clubs?\tTed Robinson\t-13.9115829820715\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Ted Robinson, designed, the Tustin Ranch Golf Club) -> Ted Robinson (16960ms)\nWhat companies manufacture golf clubs?\tthe vicinity\t-13.984876092679336\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (the European Center Golf Club, is created in, the vicinity) -> the vicinity (9235ms)\nWhat companies manufacture golf clubs?\tthe early 19th century\t-14.058188848739734\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (so many golf clubs, were created in, the early 19th century) -> the early 19th century (9235ms)\nWhat companies manufacture golf clubs?\tBridgestone APM\t-14.06870963087181\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Bridgestone APM, Instance Of, company) (Bridgestone, started making, golf clubs) -> Bridgestone APM (18777ms)\nWhat companies manufacture golf clubs?\t1950 Stanley Thomson\t-14.092983118693256\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (1950 Stanley Thomson, designed, North Oaks Golf Club) -> 1950 Stanley Thomson (17081ms)\nWhat companies manufacture golf clubs?\tBridgestone\t-14.113014477866574\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Bridgestone, Instance Of, company) (Bridgestone, started making, golf clubs) -> Bridgestone (18777ms)\nWhat companies manufacture golf clubs?\tPar\t-14.139368809219691\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Par, Instance Of, company) (par, made, Discount Golf Clubs) -> Par (18778ms)\nWhat companies manufacture golf clubs?\tTaylor's\t-14.140697025400854\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Taylor's, Instance Of, company) (taylor, made, golf club clone) -> Taylor's (18777ms)\nWhat companies manufacture golf clubs?\tGeorge Cobb\t-14.203155055921153\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (George Cobb, designed, South Carolina National Golf Club) -> George Cobb (17081ms)\nWhat companies manufacture golf clubs?\tNorman\t-14.205868188268624\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Norman, designed, the Mayakoba Resort?s El Camaleon Golf Club) -> Norman (17081ms)\nWhat companies manufacture golf clubs?\tTaylor\t-14.212700551837045\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Taylor, Instance Of, company) (taylor, made, golf club clone) -> Taylor (18848ms)\nWhat companies manufacture golf clubs?\tcontact\t-14.250592313774654\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (contact, Instance Of, category of country) (your golf club, made, contact) -> contact (9255ms)\nWhat companies manufacture golf clubs?\tWhat type of degree\t-14.320941633843683\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (What type of degree, to design, golf clubs) -> What type of degree (17081ms)\nWhat companies manufacture golf clubs?\tmetal\t-14.38814752911765\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (metal, Instance Of, country's major export) (Golf clubs, made from, metal) -> metal (9256ms)\nWhat companies manufacture golf clubs?\tTillinghast\t-14.417252249345044\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Tillinghast, designed, BaltusrolGolf Club) -> Tillinghast (17110ms)\nWhat companies manufacture golf clubs?\tthe Palmer\t-14.437476202622207\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Palmer, designed, Four Seasons Golf Club) -> the Palmer (17110ms)\nWhat companies manufacture golf clubs?\tcelebration\t-14.491324569345448\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (The Revere Golf Club, was created in, celebration) -> celebration (9256ms)\nWhat companies manufacture golf clubs?\twood\t-14.520983420947875\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (wood, Instance Of, country product) (golf clubs, were made entirely of, wood) -> wood (9256ms)\nWhat companies manufacture golf clubs?\tmoney\t-14.594393570808801\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (money, Instance Of, host country) (golf club, has n?t been designed to make, money) -> money (9680ms)\nWhat companies manufacture golf clubs?\thardwood\t-14.616217923535189\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (hardwood, Instance Of, country product) (Golfing clubs, were hand made from, hardwoods) -> hardwood (9820ms)\nWhat companies manufacture golf clubs?\tgolfing\t-14.94775886237193\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> $x: (golf club, create in, $x) -> (smaller sized golf club, create their knowledge in, golfing) -> golfing (9820ms)\nWhat companies manufacture golf clubs?\tChina\t-14.972706060093994\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, top the list of, country) (golf club, make, $x) -> (China, tops the list of, carbon dioxide-emitting countries) (All Golf Clubs, made in, China) -> China (15378ms)\nWhat companies manufacture golf clubs?\tIron\t-15.041884715799991\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, instance of, country) (golf club, actually make, $x) -> (Iron, Instance Of, country artist) (the original iron golf clubs, were actually made from cast, iron) -> Iron (11155ms)\nWhat companies manufacture golf clubs?\tthe renowned Jack Nicklaus\t-15.152273369591637\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the renowned Jack Nicklaus, designed, Breckenridge Golf Club) -> the renowned Jack Nicklaus (17159ms)\nWhat companies manufacture golf clubs?\tthe classic Ted Robinson\t-15.214638193244927\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the classic Ted Robinson, designed, Tustin Ranch Golf Club) -> the classic Ted Robinson (17159ms)\nWhat companies manufacture golf clubs?\tthe nearby Nick Faldo\t-15.229669520170454\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the nearby Nick Faldo, designed, Ocean Dunes Golf Club) -> the nearby Nick Faldo (17159ms)\nWhat companies manufacture golf clubs?\tresearch\t-15.239961380961041\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (research, has gone into designing, golf clubs) -> research (17159ms)\nWhat companies manufacture golf clubs?\tthe importance\t-15.303230916339004\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the importance, have designed, golf club components) -> the importance (17159ms)\nWhat companies manufacture golf clubs?\tthe par 72 6,795 yard Greg Norman\t-15.650412889312014\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the par 72 6,795 yard Greg Norman, designed, Old Field Golf Club) -> the par 72 6,795 yard Greg Norman (17159ms)\nWhat companies manufacture golf clubs?\tiron\t-16.775134553740703\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, instance of, country) (golf club, actually make, $x) -> (iron, Instance Of, country commodity) (the original iron golf clubs, were actually made from cast, iron) -> iron (11206ms)\nWhat companies manufacture golf clubs?\tquality\t-16.825928313116762\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, instance of, country) (golf club, with make, $x) -> (quality, Instance Of, country study) (the Alpha golf clubs, are made with, quality) -> quality (13364ms)\nWhat companies manufacture golf clubs?\tanimal\t-16.829417456272925\tWhat companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, instance of, country) (golf club, look to make, $x) -> (animal, Instance Of, country motif) (Some golf club covers, are made to look like, animals) -> animal (15424ms)\nWhat operas has Caruso sung?\tLa Boheme\t-3.295638499905553\tWhat operas has Caruso sung? -> $x: ($x, instance of, operas) (Caruso, sung, $x) -> (La Boheme, Instance Of, opera) (Enrico Caruso, sang in, ?La Boheme?) -> La Boheme (1644ms)\nWhat operas has Caruso sung?\tItalian\t-7.494563450948262\tWhat operas has Caruso sung? -> $x: ($x, instance of, operas) (Caruso, sung, $x) -> $x: ($x, instance of, operas) (Caruso, say something, $x) -> (Italian, Instance Of, opera language) (Caruso, said something in, Italian) -> Italian (3185ms)\nWhat is the phobia for number 13?\t? Triskaidekaphobia\t-7.612715389179968\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear of number 13 ? -> $x: ($x, be the fear of, number 13) -> (? Triskaidekaphobia, is the fear of, the number 13) -> ? Triskaidekaphobia (1423ms)\nWhat is the phobia for number 13?\t? Triskaidekaphobia\t-7.833811384789662\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be fear of number 13 ? -> $x: ($x, be fear of, number 13) -> (? Triskaidekaphobia, is an irrational fear of, the number 13) -> ? Triskaidekaphobia (1348ms)\nWhat is the phobia for number 13?\tTriskaidekaphobia\t-8.045619443797355\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear of number 13 ? -> $x: ($x, be the fear of, number 13) -> (Triskaidekaphobia, is the fear of, the number 13) -> Triskaidekaphobia (1424ms)\nWhat is the phobia for number 13?\tAn example\t-8.317498805692743\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be fear of number 13 ? -> $x: ($x, be fear of, number 13) -> (An example, might be fear of, the number 13) -> An example (1348ms)\nWhat is the phobia for number 13?\tTriskadekaphobia\t-8.869014285137357\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be fear of number 13 ? -> $x: ($x, be fear of, number 13) -> (Triskadekaphobia, is fear of, the number 13) -> Triskadekaphobia (1348ms)\nWhat is the phobia for number 13?\ttriskaidekaphobia\t-9.988700536485387\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear of number 13 ? -> $x: ($x, be the fear of, number 13) -> (triskaidekaphobia, is the fear of, the number 13 Search) -> triskaidekaphobia (1424ms)\nWhat is the phobia for number 13?\twidespread phobia\t-10.322694431815064\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear number 13 ? -> $x: (the fear number 13, instance of, $x) -> (Fear of the number 13, Instance Of, widespread phobia) -> widespread phobia (3874ms)\nWhat is the phobia for number 13?\tA NSN Number\t-10.33369877858137\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what represent number 13 ? -> $x: ($x, represent, number 13) -> (A NSN Number, is represented by, a 13 digit number) -> A NSN Number (1914ms)\nWhat is the phobia for number 13?\tlearned, culture-specific social behavior\t-10.510717097701061\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear number 13 ? -> $x: (the fear number 13, instance of, $x) -> (fear of the number 13, Instance Of, learned, culture-specific social behavior) -> learned, culture-specific social behavior (3873ms)\nWhat is the phobia for number 13?\tfriggatriskaidekaphobia\t-10.542217786513508\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be fear of number 13 ? -> $x: ($x, be fear of, number 13) -> (friggatriskaidekaphobia, is fear of, the number 13) -> friggatriskaidekaphobia (1672ms)\nWhat is the phobia for number 13?\tthe unknown\t-10.721873415882524\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be a fear of number 13 ? -> $x: (number 13, fear, $x) -> (Number 13, reflects man?s fear of, the unknown) -> the unknown (1672ms)\nWhat is the phobia for number 13?\tFriggatriskaidekaphobia\t-10.858538586092347\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what phobia be fear of number 13 ? -> $x: ($x, instance of, phobia) ($x, be fear of, number 13) -> (Friggatriskaidekaphobia, Instance Of, phobia) (friggatriskaidekaphobia, is fear of, the number 13) -> Friggatriskaidekaphobia (1672ms)\nWhat is the phobia for number 13?\tthe cards\t-11.961709948341808\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what represent number 13 ? -> $x: ($x, represent, number 13) -> (the cards, will be represented as, a number 1..13) -> the cards (1914ms)\nWhat is the phobia for number 13?\tthe hexadecimal letter D\t-12.01303091281164\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what represent number 13 ? -> $x: ($x, represent, number 13) -> (the hexadecimal letter D, represents, the decimal number 13) -> the hexadecimal letter D (1913ms)\nWhat is the phobia for number 13?\tphobia\t-12.474256751753238\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear number 13 ? -> $x: (the fear number 13, instance of, $x) -> (fear of the number 13, Instance Of, phobia) -> phobia (3873ms)\nWhat is the phobia for number 13?\tchampionship\t-14.757029615056869\tWhat is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the aspect of number 13 ? -> $x: (number 13, aspect, $x) -> $x: ($x, will join, number 13) -> (championship, will be joined by, number 13 seed Jason Greenslade) -> championship (4304ms)\nWhere is South Bend?\tIndiana\t0.21936564364635291\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, are planned in, Indiana) -> Indiana (3437ms)\nWhere is South Bend?\tBelfast\t-0.1950353907830663\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Tribune Jackson, was born in, Belfast) -> Belfast (3437ms)\nWhere is South Bend?\tLouisiana\t-0.21010178588094697\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Toledo Bend State Park, was the best park in, Louisiana) -> Louisiana (3437ms)\nWhere is South Bend?\tSouth Bend\t-0.4778131435380718\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Division, is held in, South Bend) -> South Bend (3437ms)\nWhere is South Bend?\tNorthern Indiana\t-0.5726385562980835\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is located in, Northern Indiana) -> Northern Indiana (3732ms)\nWhere is South Bend?\tnorthern Indiana\t-1.031526874010083\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (Indiana South Bend, is located in, northern Indiana) -> northern Indiana (3732ms)\nWhere is South Bend?\tBethel Cemetery\t-1.2370444586613751\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was buried in, Bethel Cemetery) -> Bethel Cemetery (3732ms)\nWhere is South Bend?\tbed\t-1.4364705361121983\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was found dead in, bed) -> bed (3822ms)\nWhere is South Bend?\tAuthorities Concept Scheme\t-1.4715315599046548\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Reservoir (Tex.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (3822ms)\nWhere is South Bend?\tthe St Joseph County\t-1.4919764071169892\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend, is in, the St Joseph County) -> the St Joseph County (3822ms)\nWhere is South Bend?\tGeographic Names Concept Scheme\t-1.5040184187945707\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Reservoir (Tex.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (3822ms)\nWhere is South Bend?\tSt\t-1.5222822192060481\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is located in, St) -> St (3822ms)\nWhere is South Bend?\ttradition and rich\t-1.5831221596001697\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is rich in, tradition and rich) -> tradition and rich (3840ms)\nWhere is South Bend?\textreme danger\t-1.6224454818620129\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is believed to be in, extreme danger) -> extreme danger (3840ms)\nWhere is South Bend?\tsnow\t-1.677237690858239\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is blanketed in, snow) -> snow (3840ms)\nWhere is South Bend?\ta pleasant setting\t-1.7218678754329109\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is a pleasant town in, a pleasant setting) -> a pleasant setting (3840ms)\nWhere is South Bend?\tRice Cemetery\t-1.750360766578194\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was buried in, Rice Cemetery) -> Rice Cemetery (3840ms)\nWhere is South Bend?\ta successful career\t-1.8294421241840233\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was the latest stop in, a successful career) -> a successful career (3871ms)\nWhere is South Bend?\tthe Eastern Standard Time Zone\t-1.8377316099598382\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is in, the Eastern Standard Time Zone) -> the Eastern Standard Time Zone (3870ms)\nWhere is South Bend?\tculture , heritage , history and fun\t-1.868504319353424\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is rich in, culture , heritage , history and fun) -> culture , heritage , history and fun (3870ms)\nWhere is South Bend?\tdiverse and thriving neighborhoods\t-1.8766969341781643\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is seen in, diverse and thriving neighborhoods) -> diverse and thriving neighborhoods (3870ms)\nWhere is South Bend?\tthe Quaker Room\t-1.8807255678751642\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Friends, have been worshiping in, the Quaker Room) -> the Quaker Room (3870ms)\nWhere is South Bend?\tthe Ivy Tech network\t-1.896798653104579\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, are the only ones available in, the Ivy Tech network) -> the Ivy Tech network (3895ms)\nWhere is South Bend?\tthe U.S. District Court\t-1.902765975989092\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend lawsuit, was filed in, the U.S. District Court) -> the U.S. District Court (3895ms)\nWhere is South Bend?\ta three way tie\t-1.95276441783298\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (The IU South Bend Titans, are now in, a three way tie) -> a three way tie (3895ms)\nWhere is South Bend?\tcharge\t-2.0022113237250556\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, will be in, charge) -> charge (3894ms)\nWhere is South Bend?\ttouch\t-2.051234460005909\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, will be in, touch) -> touch (3914ms)\nWhere is South Bend?\tNew York\t-2.0996569297002394\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is now back in, New York) -> New York (3914ms)\nWhere is South Bend?\tZEST\t-2.1393790689727457\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (the Raymond-South Bend area, are detailed in, ZEST) -> ZEST (3914ms)\nWhere is South Bend?\tJoplin\t-2.139751767217941\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend resident, stopped in, Joplin) -> Joplin (3914ms)\nWhere is South Bend?\tOakland\t-2.224699283896367\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, now lives in, Oakland) -> Oakland (3914ms)\nWhere is South Bend?\ta series\t-2.284680494933484\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is displayed in, a series) -> a series (3914ms)\nWhere is South Bend?\thistory\t-2.539356792280051\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend/Mishawaka, is a community rich in, history) -> history (3936ms)\nWhere is South Bend?\tproducts\t-2.6309509068749897\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (The more south central bent, is also evident in, products) -> products (3936ms)\nWhere is South Bend?\tUniontown\t-2.7592375034155774\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, lived in, Uniontown) -> Uniontown (3936ms)\nWhere is South Bend?\tBloomington\t-2.860273633989606\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, will open a sixth in, Bloomington) -> Bloomington (3936ms)\nWhere is South Bend?\tWilliamston\t-2.8662899963351878\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, raised in, Williamston) -> Williamston (3953ms)\nWhere is South Bend?\tthe nation\t-2.8795985865078535\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (January 21 , 2010 South Bend, is the best city in, the nation) -> the nation (3953ms)\nWhere is South Bend?\tDetroit\t-3.0042300506290767\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, later filed a related suit in, Detroit) -> Detroit (3953ms)\nWhere is South Bend?\tthe north\t-3.157479084582973\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is in, the north) -> the north (3990ms)\nWhere is South Bend?\tauto insurance\t-3.18483963859911\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, provides services in, auto insurance) -> auto insurance (3990ms)\nWhere is South Bend?\tghost hunting\t-3.245700385939175\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (Indiana University South Bend, offers classes in, ghost hunting) -> ghost hunting (3990ms)\nWhere is South Bend?\tthe air\t-3.3261126380682793\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Applause, was in, the air) -> the air (4017ms)\nWhere is South Bend?\tthe release\t-3.343573894701958\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was n?t included in, the release) -> the release (4017ms)\nWhere is South Bend?\tthe heart\t-3.3684201230769926\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (Hilton South Bend hotel, is in, the heart) -> the heart (4017ms)\nWhere is South Bend?\t1957.\t-3.4136851283401173\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (The South Bend Civic Theatre, was founded in, 1957.) -> 1957. (4017ms)\nWhere is South Bend?\tthe movie\t-3.4605752783379478\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was featured in, the movie) -> the movie (4050ms)\nWhere is South Bend?\tthe invasion\t-3.4658804494468223\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was involved in, the invasion) -> the invasion (4050ms)\nWhere is South Bend?\tthe process\t-3.513130674994815\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (non-wing sprints South Bend Motor Speedway, is in, the process) -> the process (4050ms)\nWhere is South Bend?\tStudebaker\t-3.5466125587476953\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> $x: (south bend, have be from, $x) -> (South Bend, had been acquired from, Studebaker) -> Studebaker (5266ms)\nWhere is South Bend?\tthe left hand menu\t-3.574015110828225\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (south bend, will be posted in, the left hand menu) -> the left hand menu (4131ms)\nWhere is South Bend?\tless than quarter\t-3.6383496697641147\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, responded in, less than quarter) -> less than quarter (4131ms)\nWhere is South Bend?\tthe two following games\t-3.6696336706761175\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, were a rumor in, the two following games) -> the two following games (4163ms)\nWhere is South Bend?\tthe same way\t-3.713052335128335\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Cash Advance loans, are repaid in, the same way) -> the same way (4163ms)\nWhere is South Bend?\tthe country\t-3.732569214888895\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is rising faster than anywhere else in, the country) -> the country (4163ms)\nWhere is South Bend?\t?very critical condition\t-3.7514426153236746\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (A South Bend man, remained in, ?very critical condition) -> ?very critical condition (4179ms)\nWhere is South Bend?\ta hotel cause\t-3.802875016587132\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, slept in, a hotel cause) -> a hotel cause (4179ms)\nWhere is South Bend?\tthe top five\t-3.819220641646848\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (1937 South Bend Medical Laboratory, was rated in, the top five) -> the top five (4179ms)\nWhere is South Bend?\tsimple and powerful ways\t-3.8289385014198754\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (Mark Vanderheyden South Bend, saves in, simple and powerful ways) -> simple and powerful ways (4211ms)\nWhere is South Bend?\tthe U.S. Army\t-3.8312690858556726\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, served in, the U.S. Army) -> the U.S. Army (4211ms)\nWhere is South Bend?\tthird place\t-3.8392263856986624\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, came in, third place) -> third place (4211ms)\nWhere is South Bend?\tCONJUNCTION\t-3.9055214586684084\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (SOUTH BEND, WILL GIVE A TALK IN, CONJUNCTION) -> CONJUNCTION (4211ms)\nWhere is South Bend?\tan article\t-3.914283926087264\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Tribune, Included in, an article) -> an article (4231ms)\nWhere is South Bend?\tseveral finance roles\t-3.9213575227006263\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, served in, several finance roles) -> several finance roles (4232ms)\nWhere is South Bend?\ta Gift suitable\t-3.9351919661310486\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, has Flowers in, a Gift suitable) -> a Gift suitable (4232ms)\nWhere is South Bend?\tthe United States Army\t-3.9400052026318297\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, served in, the United States Army) -> the United States Army (4232ms)\nWhere is South Bend?\tHCAHPS scores\t-3.944853553820445\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, saw an increase in, HCAHPS scores) -> HCAHPS scores (4231ms)\nWhere is South Bend?\tthe College Junior Women\t-4.007054486031973\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, took first place in, the College Junior Women) -> the College Junior Women (4231ms)\nWhere is South Bend?\tassets\t-4.158190711649436\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, has approximately $ 1.4 billion in, assets) -> assets (4380ms)\nWhere is South Bend?\tzoology\t-4.1654927151295205\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, earned a bachelor?s degree in, zoology) -> zoology (4380ms)\nWhere is South Bend?\tfifth\t-4.489894911391543\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> ('s South Bend team, came in, fifth) -> fifth (4583ms)\nWhere is South Bend?\texcess\t-4.510012752583871\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, stood in, excess) -> excess (4583ms)\nWhere is South Bend?\t1979\t-4.624539686046826\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was founded in, 1979) -> 1979 (4884ms)\nWhere is South Bend?\t1877\t-4.695911470556429\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was the founding in, 1877) -> 1877 (4884ms)\nWhere is South Bend?\t1933\t-4.718702023102288\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Symphony, was founded in, 1933) -> 1933 (4884ms)\nWhere is South Bend?\t2008\t-4.750667144426996\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (IU South Bend, was formed in, 2008) -> 2008 (5013ms)\nWhere is South Bend?\t1903\t-4.751615898955348\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Railroad, was started in, 1903) -> 1903 (5013ms)\nWhere is South Bend?\tearly September\t-4.828152329935964\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend?s playoffs, ended in, early September) -> early September (5013ms)\nWhere is South Bend?\tthe mid-30\t-4.846986656104891\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, are expected to be in, the mid-30) -> the mid-30 (5012ms)\nWhere is South Bend?\tmusic\t-4.886095033202119\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, has many notable offerings in, music) -> music (5013ms)\nWhere is South Bend?\tthe bottom\t-5.131214478181456\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, added four runs in, the bottom) -> the bottom (5170ms)\nWhere is South Bend?\tthe top\t-5.177113248767022\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, bounced back in, the top) -> the top (5170ms)\nWhere is South Bend?\t83\t-5.372201211284459\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (second and South Bend, came in at, 83) -> 83 (5307ms)\nWhere is South Bend?\tthe Sept. 11 attacks\t-5.509494420805543\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (two South Bend natives, lost in, the Sept. 11 attacks) -> the Sept. 11 attacks (5327ms)\nWhere is South Bend?\tthe wrong location\t-5.5228951861602384\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, could result in, the wrong location) -> the wrong location (5347ms)\nWhere is South Bend?\tthe economic world\t-5.610430799319288\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, stands out in, the economic world) -> the economic world (5363ms)\nWhere is South Bend?\tthe towns\t-5.648116604562396\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, grew up in, the towns) -> the towns (5383ms)\nWhere is South Bend?\tthe rankings\t-5.73045321866596\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, had done so well in, the rankings) -> the rankings (5408ms)\nWhere is South Bend?\tthe tenth\t-5.741311823504236\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, won in, the tenth) -> the tenth (5408ms)\nWhere is South Bend?\tthe school orchestra\t-5.77096258061766\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, played flute in, the school orchestra) -> the school orchestra (5428ms)\nWhere is South Bend?\tthe finals\t-5.783654045433905\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, took the lead in, the finals) -> the finals (5428ms)\nWhere is South Bend?\tDanny Graber\t-5.817240769807382\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> $x: (south bend, have from, $x) -> (South Bend, has comments from, Danny Graber) -> Danny Graber (5457ms)\nWhere is South Bend?\tthe second inning\t-5.849164184348471\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, opened the scoring in, the second inning) -> the second inning (5543ms)\nWhere is South Bend?\tthe seventh\t-5.909139923837546\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, tacked on three more runs in, the seventh) -> the seventh (5543ms)\nWhere is South Bend?\t1865\t-6.145154193799628\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was incorporated as a city in, 1865) -> 1865 (5723ms)\nWhere is South Bend?\tthe 1940 ?s\t-6.190084337053852\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (the South Bend area, occurred in, the 1940 ?s) -> the 1940 ?s (5811ms)\nWhere is South Bend?\tMay 1903\t-6.204910945606\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, probably occurred in, May 1903) -> May 1903 (5811ms)\nWhere is South Bend?\t1824\t-6.779146147255182\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, returned in, 1824) -> 1824 (5993ms)\nWhere is South Bend?\t1970\t-6.803027253018821\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, unionized in, 1970) -> 1970 (5993ms)\nWhere is South Bend?\t1954\t-7.012835564361076\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, finished second in, 1954) -> 1954 (6013ms)\nWhere is South Bend?\t1991\t-7.086124679245189\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Chocolate Factory, opened in, 1991) -> 1991 (6048ms)\nWhere is South Bend?\tthe suit\t-7.168931764289206\tWhere is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (a South Bend attorney, involved in, the suit) -> the suit (6078ms)\nWhere is South Bend?\tHounslow\t-12.568844099602648\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Hounslow) -> Hounslow (6896ms)\nWhere is South Bend?\tLondon\t-12.568844099602648\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, London) -> London (6895ms)\nWhere is South Bend?\tDadeville\t-12.568844099602648\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Horseshoe Bend, Location(s), Dadeville) -> Dadeville (6895ms)\nWhere is South Bend?\tSouthall\t-12.568844099602648\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Southall) -> Southall (6896ms)\nWhere is South Bend?\tKentucky\t-12.568844099602648\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Lucas Bend, Location(s), Kentucky) -> Kentucky (6896ms)\nWhere is South Bend?\tWiota\t-12.568844099602648\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Horseshoe Bend, Location(s), Wiota) -> Wiota (6895ms)\nWhere is South Bend?\tMacedonia\t-12.568844099602648\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of the Cerna Bend, Location(s), Macedonia) -> Macedonia (6906ms)\nWhere is South Bend?\tSoho\t-13.00664052426518\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Soho) -> Soho (6906ms)\nWhere is South Bend?\tBend\t-13.00664052426518\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (BendFilm Festival, Location, Bend) -> Bend (6906ms)\nWhere is South Bend?\tCrna\t-13.00664052426518\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of the Cerna Bend, Location(s), Crna) -> Crna (6906ms)\nWhere is South Bend?\tGunnersbury Park\t-13.07705278256507\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Gunnersbury Park) -> Gunnersbury Park (6906ms)\nWhere is South Bend?\tTaylor County\t-13.120102764323553\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Tebbs Bend, Location(s), Taylor County) -> Taylor County (7046ms)\nWhere is South Bend?\tMadison Parish\t-13.120102764323553\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Milliken's Bend, Location(s), Madison Parish) -> Madison Parish (7492ms)\nWhere is South Bend?\tVolga Bulgaria\t-13.120102764323553\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Samara Bend, Location(s), Volga Bulgaria) -> Volga Bulgaria (7046ms)\nWhere is South Bend?\tPiccadilly Circus\t-13.120102764323553\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Piccadilly Circus) -> Piccadilly Circus (7046ms)\nWhere is South Bend?\tMississippi River\t-13.120102764323553\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Lucas Bend, Location(s), Mississippi River) -> Mississippi River (7046ms)\nWhere is South Bend?\tSabine River\t-13.120102764323553\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Toledo Bend Reservoir, Outflow location, Sabine River) -> Sabine River (7046ms)\nWhere is South Bend?\tCentral London\t-13.120102764323553\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Central London) -> Central London (7046ms)\nWhere is South Bend?\tWoodford, Wisconsin\t-13.633419072240372\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Horseshoe Bend, Location(s), Woodford, Wisconsin) -> Woodford, Wisconsin (7492ms)\nWhere is South Bend?\tSt. Mary Parish\t-13.633419072240372\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Irish Bend, Location(s), St. Mary Parish) -> St. Mary Parish (7492ms)\nWhere is South Bend?\tFort Pillow State Park\t-13.633419072240372\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Plum Point Bend, Location(s), Fort Pillow State Park) -> Fort Pillow State Park (7492ms)\nWhere is South Bend?\tBent Creek Vineyard\t-13.633419072240372\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bent Creek Vineyard, Organization locations, Bent Creek Vineyard) -> Bent Creek Vineyard (7492ms)\nWhere is South Bend?\tKansas\t-14.131938677272435\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Great bend, is a location located within, Kansas) -> Kansas (7492ms)\nWhere is South Bend?\tLompoc\t-14.181537956452654\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, was in, Lompoc) -> Lompoc (10173ms)\nWhere is South Bend?\tGreece\t-14.334473117564222\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, had all been in, Greece) -> Greece (10172ms)\nWhere is South Bend?\tGhana\t-14.389194107216127\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is now a missionary in, Ghana) -> Ghana (10173ms)\nWhere is South Bend?\tHoover\t-14.790529493386869\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (Hoover, is getting a bit old for, all the bending) -> Hoover (7632ms)\nWhere is South Bend?\tTime\t-14.857801379081156\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (Time, should be taken to get, the right pre-bend settings) -> Time (7632ms)\nWhere is South Bend?\tCentral Oregon\t-14.858887859445879\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is in, Central Oregon) -> Central Oregon (10173ms)\nWhere is South Bend?\tSsion\t-14.877102134193427\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (Ssion, is getting ready to officially release, ?Bent ?) -> Ssion (7632ms)\nWhere is South Bend?\tDeschutes County\t-14.955358935188174\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is a city in, Deschutes County) -> Deschutes County (10199ms)\nWhere is South Bend?\tDivers\t-15.038254574151523\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (Divers, have been known to get, the Bends) -> Divers (7633ms)\nWhere is South Bend?\tNorthwest Texas\t-15.419513215795075\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is being used in, Northwest Texas) -> Northwest Texas (10198ms)\nWhere is South Bend?\tfurniture making\t-15.423006616189655\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (South Bend, was an excellent location for, furniture making) -> furniture making (7633ms)\nWhere is South Bend?\tguitar solo\t-15.431271904521958\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bending, is another style in, guitar solo) -> guitar solo (10198ms)\nWhere is South Bend?\ta lot\t-15.435216978992571\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (?Bend, is a beautiful location with, a lot) -> a lot (7633ms)\nWhere is South Bend?\tcentral Oregon\t-15.495013670634332\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is a beautiful town in, central Oregon) -> central Oregon (10198ms)\nWhere is South Bend?\tcentral oregon\t-15.513974047659541\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is the largest town in, central oregon) -> central oregon (10234ms)\nWhere is South Bend?\tfamily reunions\t-15.5864242770641\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Whistlers Bend, makes a great location for, family reunions) -> family reunions (7698ms)\nWhere is South Bend?\tan ongoing station\t-15.60948346820398\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (the Bent, is the location of, an ongoing station) -> an ongoing station (7697ms)\nWhere is South Bend?\tsuperlative form\t-15.713485618051436\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is in, superlative form) -> superlative form (10234ms)\nWhere is South Bend?\tETS.\t-15.74348928855339\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend road, are a good location for, ETS.) -> ETS. (7697ms)\nWhere is South Bend?\tmen?s\t-15.758877915773674\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, was awarded the gold medal in, men?s) -> men?s (10234ms)\nWhere is South Bend?\tdowntown Bend\t-15.765758004316265\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend travelers, is a perfect central location in, downtown Bend) -> downtown Bend (7698ms)\nWhere is South Bend?\tcommunication\t-15.839943041473527\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is apparently in, communication) -> communication (10234ms)\nWhere is South Bend?\t?Country driving?\t-15.843780667376356\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (bends, is described in, ?Country driving?) -> ?Country driving? (10234ms)\nWhere is South Bend?\tan off road race\t-15.849835552417733\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend, is the ideal location for, an off road race) -> an off road race (7698ms)\nWhere is South Bend?\tsummer\t-15.885921314055793\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (bent, is usually in, summer) -> summer (10234ms)\nWhere is South Bend?\tbeer\t-15.939857369652518\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is awash in, beer) -> beer (10288ms)\nWhere is South Bend?\tacres\t-15.949048389923707\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is in, acres) -> acres (10288ms)\nWhere is South Bend?\tthirty five countries\t-15.953172994156063\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, has been performed in over, thirty five countries) -> thirty five countries (10287ms)\nWhere is South Bend?\tromantic comedies\t-15.954206138129475\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is the latest in, romantic comedies) -> romantic comedies (10287ms)\nWhere is South Bend?\tan England squad\t-15.969237465055002\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is back in, an England squad) -> an England squad (10287ms)\nWhere is South Bend?\ta quiet location\t-15.972317496143718\tWhere is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is nestled in, a quiet location) -> a quiet location (10287ms)\nWhere is South Bend?\ta little troublesome\t-15.98081024236907\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (a little troublesome, was getting, clean blow bends) -> a little troublesome (7697ms)\nWhere is South Bend?\tJohn Brock\t-16.09118523914819\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (John Brock, are getting ready for, a back bend warmup) -> John Brock (7737ms)\nWhere is South Bend?\teach guide\t-16.149639360352005\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (The rod?s bend, determines the location of, each guide) -> each guide (7737ms)\nWhere is South Bend?\taccess\t-16.353091977808404\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bending Branch, is the prime location for, access) -> access (7737ms)\nWhere is South Bend?\tthe United States\t-16.45494141693412\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Big Bend, is the only location in, the United States) -> the United States (7737ms)\nWhere is South Bend?\tthe Second Chance\t-16.480338754447118\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (the Second Chance, is to get, the bends) -> the Second Chance (7737ms)\nWhere is South Bend?\tadventures\t-16.482989563246342\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend, is an ideal location for, adventures) -> adventures (7737ms)\nWhere is South Bend?\ta squeak\t-16.51559072920771\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (a squeak, is getting, bend) -> a squeak (7764ms)\nWhere is South Bend?\tphysio\t-16.53276161464175\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (physio, is getting, a knee bend) -> physio (7764ms)\nWhere is South Bend?\tspace\t-16.63157802040787\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (space, is going to get, a little bent) -> space (7764ms)\nWhere is South Bend?\taction\t-16.68233577096718\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (action, is used to get, flat , angular or bent areas) -> action (7764ms)\nWhere is South Bend?\thome\t-16.765976092550282\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (home, is learning to get, the correct bend) -> home (7764ms)\nWhere is South Bend?\t18 employees\t-16.95809724859261\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (South Bend, was the only location with, 18 employees) -> 18 employees (7790ms)\nWhere is South Bend?\tYou guys\t-17.08701620756748\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (You guys, are getting, all bent) -> You guys (7791ms)\nWhere is South Bend?\tthe customer end\t-17.49816182905997\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (The B-end, is the location of, the customer end) -> the customer end (7790ms)\nWhere is South Bend?\t22 counties\t-17.662689637343327\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Goodwill Big Bend, has locations throughout, 22 counties) -> 22 counties (7791ms)\nWhere is South Bend?\tthe underwire\t-17.668814364562472\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (the underwire, was getting, all bent) -> the underwire (7790ms)\nWhere is South Bend?\tthe whole problem\t-17.716666475974396\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (the whole problem, is to get, Whistle Bend) -> the whole problem (7791ms)\nWhere is South Bend?\tThe scoring\t-17.90174149827007\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (The scoring, is important to get, a nice crisp bend) -> The scoring (7823ms)\nWhere is South Bend?\tthe scrutiny Judge Adams\t-17.925928313155055\tWhere is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (the scrutiny Judge Adams, is getting in, the Coastal Bend) -> the scrutiny Judge Adams (7822ms)\nWhere is South Bend?\tthe main Kiowa camp\t-17.95086166274794\tWhere is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bent, gave the location of, the main Kiowa camp) -> the main Kiowa camp (7820ms)\nWho is Alberto Tomba?\titalian star\t-1.665290881034979\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, italian star) -> italian star (2283ms)\nWho is Alberto Tomba?\tfamous skier\t-1.665290881034979\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, famous skier) -> famous skier (2283ms)\nWho is Alberto Tomba?\tcharismatic sportsman\t-1.7345061399660882\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, charismatic sportsman) -> charismatic sportsman (2283ms)\nWho is Alberto Tomba?\tmixed drink\t-1.7678751612196053\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, mixed drink) -> mixed drink (2283ms)\nWho is Alberto Tomba?\talpine skiier\t-1.775633802004088\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, alpine skiier) -> alpine skiier (2283ms)\nWho is Alberto Tomba?\tski champion\t-2.13078071345731\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, ski champion) -> ski champion (2283ms)\nWho is Alberto Tomba?\tbig mane\t-2.216447037448759\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, big mane) -> big mane (2373ms)\nWho is Alberto Tomba?\tace skier\t-2.216447037448759\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, ace skier) -> ace skier (2374ms)\nWho is Alberto Tomba?\tbig star\t-2.3542232836235963\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Sex symbol skier Alberto Tomba, Instance Of, big star) -> big star (2373ms)\nWho is Alberto Tomba?\tpopular former champion\t-2.4311479925972534\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Olympic champions Alberto Tomba, Instance Of, popular former champion) -> popular former champion (2374ms)\nWho is Alberto Tomba?\tfriend of mine\t-2.4334426133569664\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, friend of mine) -> friend of mine (2373ms)\nWho is Alberto Tomba?\tItalian retired alpine ski racer\t-2.4363275068891292\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian retired alpine ski racer) -> Italian retired alpine ski racer (2374ms)\nWho is Alberto Tomba?\tretired professional alpine skier of Italian nationality\t-2.4375551070496835\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, retired professional alpine skier of Italian nationality) -> retired professional alpine skier of Italian nationality (2534ms)\nWho is Alberto Tomba?\tfamous Italian Alpine skier\t-2.44461301655552\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, famous Italian Alpine skier) -> famous Italian Alpine skier (2534ms)\nWho is Alberto Tomba?\tItalian Olympic alpine skier\t-2.44461301655552\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian Olympic alpine skier) -> Italian Olympic alpine skier (2534ms)\nWho is Alberto Tomba?\tItalian retired skier\t-2.4505227413227635\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian retired skier) -> Italian retired skier (2534ms)\nWho is Alberto Tomba?\tflamboyant Italian skier\t-2.4505227413227635\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, flamboyant Italian skier) -> flamboyant Italian skier (2534ms)\nWho is Alberto Tomba?\tbig money player\t-2.4740242635379346\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, big money player) -> big money player (2565ms)\nWho is Alberto Tomba?\tretired Italian alpine skier\t-2.4895069719906626\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, retired Italian alpine skier) -> retired Italian alpine skier (2565ms)\nWho is Alberto Tomba?\tworld Alpine Ski champion\t-2.4895069719906626\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, world Alpine Ski champion) -> world Alpine Ski champion (2565ms)\nWho is Alberto Tomba?\tskier, Olympic gold medal winner\t-2.521993830880578\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, skier, Olympic gold medal winner) -> skier, Olympic gold medal winner (2565ms)\nWho is Alberto Tomba?\tchampion\t-2.884959184551226\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, champion) -> champion (2565ms)\nWho is Alberto Tomba?\t44 year old Italian Celebrity\t-2.8959251217059245\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, 44 year old Italian Celebrity) -> 44 year old Italian Celebrity (2580ms)\nWho is Alberto Tomba?\tItalian skier\t-2.966153592776112\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian skier) -> Italian skier (2580ms)\nWho is Alberto Tomba?\tItalian gent\t-3.0110475482112538\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian gent) -> Italian gent (2594ms)\nWho is Alberto Tomba?\tstar\t-3.0598125482538743\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, star) -> star (2594ms)\nWho is Alberto Tomba?\tathlete\t-3.10008542910595\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Tomba Alberto, Instance Of, athlete) -> athlete (2595ms)\nWho is Alberto Tomba?\tartist\t-3.1267357840236656\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, artist) -> artist (2595ms)\nWho is Alberto Tomba?\tItalian\t-3.764041141775003\tWho is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian) -> Italian (2635ms)\nWho is Alberto Tomba?\tyoung my favourite athlete\t-9.588341913446182\tWho is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (young my favourite athlete, was, Alberto Tomba) -> young my favourite athlete (4097ms)\nWho is Alberto Tomba?\tthe Albertville Games\t-9.973891005574322\tWho is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (the Albertville Games, was, Alberto Tomba) -> the Albertville Games (4098ms)\nWho is Alberto Tomba?\tItaly\t-10.41648068275037\tWho is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (Italy, is still suffering from, the Alberto Tomba Race Trauma) -> Italy (4097ms)\nWho is Alberto Tomba?\t1996 Gustavo Thoeni\t-10.75930359069563\tWho is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (1996 Gustavo Thoeni, was, Alberto Tomba) -> 1996 Gustavo Thoeni (4098ms)\nWho is Alberto Tomba?\tthe hell\t-10.806657800660606\tWho is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (the hell, is, Alberto Tomba) -> the hell (4097ms)\nWho is Alberto Tomba?\tretirement\t-11.399586909523983\tWho is Alberto Tomba? -> who be [ alberto tomba ] ? -> what be alberto tomba s story ? -> $x: (alberto tomba, story, $x) -> $x: (alberto tomba, be, $x) -> (Alberto Tomba, were going to come out of, retirement) -> retirement (5266ms)\nWho is Alberto Tomba?\t50 ski wins\t-12.626709218452993\tWho is Alberto Tomba? -> who be [ alberto tomba ] ? -> what be alberto tomba s story ? -> $x: (alberto tomba, story, $x) -> $x: (alberto tomba, have, $x) -> (Alberto Tomba, has, 50 ski wins) -> 50 ski wins (5266ms)\nWho is Alberto Tomba?\tthe most flamboyant skier\t-13.204975628400069\tWho is Alberto Tomba? -> who be [ alberto tomba ] ? -> what be alberto tomba s story ? -> $x: (alberto tomba, story, $x) -> $x: (alberto tomba, be, $x) -> (Biography Alberto Tomba, is arguably, the most flamboyant skier) -> the most flamboyant skier (5266ms)\nWhere is it?\tAkron\t-12.742922272407274\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> (participant sports?it, is here in, Akron) -> Akron (7021ms)\nWhere is it?\tOdessa\t-13.07029416654097\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> (B. It?s obvious sports, is Important in, Odessa) -> Odessa (7021ms)\nWhere is it?\tSan Francisco\t-13.620346464366907\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> (long sleeve sports shirt?it, was cold in, San Francisco) -> San Francisco (7021ms)\nWhere is it?\tcollege football\t-13.729022363548166\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> (Sport It?s not fair, is in, college football) -> college football (7021ms)\nWhere is it?\tDover Mall\t-13.80907172591846\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (Play It Again Sports, Dover Mall, In shopping center, Dover Mall) -> Dover Mall (8155ms)\nWhere is it?\tNottingham\t-13.970563075927458\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Nottingham, is currently recruiting for, an IT Technician) -> Nottingham (8155ms)\nWhere is it?\tIndian River Mall\t-14.365438015593762\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (Play It Again Sports, Indian River Mall, In shopping center, Indian River Mall) -> Indian River Mall (8155ms)\nWhere is it?\tBlack\t-14.490786371851831\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Black, are highly, skilled IT technicians) -> Black (8155ms)\nWhere is it?\tAshford\t-14.679875531052296\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Ashford, is looking for, a IT Helpdesk Support Technician) -> Ashford (8155ms)\nWhere is it?\tCraig\t-14.740020747210504\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Craig, was, an IT technician and administrator) -> Craig (8155ms)\nWhere is it?\tJames\t-14.888912980461841\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (James, has been employed as, a senior IT technician) -> James (8226ms)\nWhere is it?\tSam Morales\t-14.893792492602675\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Sam Morales, is, an Executive IT Field Technician) -> Sam Morales (8226ms)\nWhere is it?\tMoira\t-14.929139756302527\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Moira, had been working as, an IT technician) -> Moira (8226ms)\nWhere is it?\tRyan\t-15.219056445154946\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Ryan, was, an IT computer technician) -> Ryan (8226ms)\nWhere is it?\tMichael Wolf\t-15.323679169652236\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Michael Wolf, is, an IT and video technician) -> Michael Wolf (8226ms)\nWhere is it?\tmigrated sites\t-15.331925886350087\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s main use, would be in, migrated sites) -> migrated sites (7021ms)\nWhere is it?\tJonathan Brown\t-15.33605548352\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Jonathan Brown, is, an IT technician) -> Jonathan Brown (8226ms)\nWhere is it?\tDarrell Hoberer\t-15.362015219958149\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Darrell Hoberer, is, a senior IT technician) -> Darrell Hoberer (8226ms)\nWhere is it?\tmonetary terms\t-15.391796169831078\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s use, must be justified in, monetary terms) -> monetary terms (7021ms)\nWhere is it?\tUC Berkeley\t-15.39344289718463\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (UC Berkeley, was then working as, an IT Technician) -> UC Berkeley (8225ms)\nWhere is it?\tManeet Puri\t-15.405596861906108\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Maneet Puri, is, an eminent IT technician and director) -> Maneet Puri (8392ms)\nWhere is it?\tAustria and Germany\t-15.432269042470494\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s use, is restricted in, Austria and Germany) -> Austria and Germany (7036ms)\nWhere is it?\tgovernment health facilities\t-15.451864068171766\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s use, is now mandatory in, government health facilities) -> government health facilities (7036ms)\nWhere is it?\tthe ITER Center\t-15.524863409330516\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (the ITER Center, is, an IT-Technician) -> the ITER Center (8392ms)\nWhere is it?\tcooking\t-15.5580789284068\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s first use, was in, cooking) -> cooking (7035ms)\nWhere is it?\tTHE GUY\t-15.605432970816146\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (THE GUY, WAS, AN IT TECHNICIAN.) -> THE GUY (8391ms)\nWhere is it?\tArmco IT\t-15.64622504631652\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Armco IT, is seeking, an experienced IT Support Technician) -> Armco IT (8391ms)\nWhere is it?\tActive@ Data Studio\t-15.64887760551981\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Active@ Data Studio, is, a complete IT Technician) -> Active@ Data Studio (8436ms)\nWhere is it?\tThe Service Desk\t-15.670177897356599\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The Service Desk, is staffed by, three IT Technicians) -> The Service Desk (8436ms)\nWhere is it?\tJoe\t-15.679829676111137\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Joe, is, an IT technician) -> Joe (8436ms)\nWhere is it?\tKingston Adult Education\t-15.68520927698442\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Kingston Adult Education, is seeking, a skilled IT technician) -> Kingston Adult Education (8436ms)\nWhere is it?\tRoy\t-15.696897581372586\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Roy, is, a laid-back IT technician) -> Roy (8436ms)\nWhere is it?\tthe Biozentrum , Basel ,\t-15.717570919497657\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (the Biozentrum , Basel ,, is looking for, an IT technician) -> the Biozentrum , Basel , (8436ms)\nWhere is it?\tJeremy LaCroix\t-15.71844594947383\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Jeremy LaCroix, is, an IT technician) -> Jeremy LaCroix (8436ms)\nWhere is it?\tBREVCO SERVICES\t-15.726374313065905\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (BREVCO SERVICES, is looking for, a General IT Technician) -> BREVCO SERVICES (8436ms)\nWhere is it?\tan appointment\t-15.77009222553559\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (an appointment, will be scheduled for, a DoIT technician) -> an appointment (8463ms)\nWhere is it?\tQC ? BREVCO SERVICES\t-15.783205506041302\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (QC ? BREVCO SERVICES, is looking for, a General IT Technician) -> QC ? BREVCO SERVICES (8463ms)\nWhere is it?\tThe IT guys\t-15.795529229007782\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The IT guys, are more than, fix-it technicians) -> The IT guys (8463ms)\nWhere is it?\tThe IT Surgery\t-15.867373744860508\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The IT Surgery, is based in, the IT Technician) -> The IT Surgery (8463ms)\nWhere is it?\tknowledge\t-15.881538019679075\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (knowledge, are universal for, any IT technician) -> knowledge (8464ms)\nWhere is it?\tcritical issues\t-15.929267583471693\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (critical issues, are submitted by, IT technicians) -> critical issues (8464ms)\nWhere is it?\tPrinter drivers\t-15.949440313735217\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Printer drivers, are available from, the IT technician) -> Printer drivers (8464ms)\nWhere is it?\tGoCertify\t-15.968892625368522\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (GoCertify, are the major differences between, the IT Technician) -> GoCertify (8464ms)\nWhere is it?\tthe NFL\t-15.987242264192295\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (Doc?s Sports It?s, can change in, the NFL) -> the NFL (8484ms)\nWhere is it?\tDORADO Personnel\t-15.988489112530372\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (DORADO Personnel, is currently recruiting for, a IT Technician) -> DORADO Personnel (8484ms)\nWhere is it?\trecently Helen\t-15.992845529110893\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (recently Helen, was employed as, a part-time IT technician) -> recently Helen (8484ms)\nWhere is it?\tan Apprentice\t-16.022088617390402\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (an Apprentice, is now employed here as, an IT Technician) -> an Apprentice (8484ms)\nWhere is it?\tbusiness\t-16.064959658571517\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (business, may be read by, IT support technicians) -> business (8484ms)\nWhere is it?\tWells based company\t-16.07225941511143\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Wells based company, is looking for, a I.T. Support Technician) -> Wells based company (8484ms)\nWhere is it?\tautomobiles\t-16.087694506834676\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s main use, is in, automobiles) -> automobiles (7036ms)\nWhere is it?\trepairs\t-16.141392889500136\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (repairs, will be assessed by, an IT technician) -> repairs (8484ms)\nWhere is it?\tconversations\t-16.24095896845266\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s highest and best use, is in stimulating, conversations) -> conversations (7035ms)\nWhere is it?\ta number\t-16.263265354789795\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s Used Your driving record, is used in, a number) -> a number (7035ms)\nWhere is it?\tPolokwane\t-16.273241439984268\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, need, it technician) -> (Polokwane, needs, a Senior IT Desktop Technician) -> Polokwane (10152ms)\nWhere is it?\tGrove City\t-16.45511157927478\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (Grove City, has an immediate need for, a IT Support Technician) -> Grove City (8510ms)\nWhere is it?\ta file\t-16.470641158091126\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (a file, can be supplied to, the IT technician) -> a file (8510ms)\nWhere is it?\tComspan Communications\t-16.518006177161865\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (Comspan Communications, has, an IT/IP Technician position) -> Comspan Communications (8510ms)\nWhere is it?\tcomponents\t-16.65686132740358\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (components, are installed by, a qualified IT technician) -> components (8510ms)\nWhere is it?\ta recent report\t-16.815735732179437\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (the U-Can-IT sports, echoed this sentiment in, a recent report) -> a recent report (8510ms)\nWhere is it?\tAn opportunity\t-16.89015301912936\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (An opportunity, has arisen for, a Junior IT Support Technician) -> An opportunity (8510ms)\nWhere is it?\tartificial fireplaces\t-16.901280829516793\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (do-it-yourself technicians, have created, artificial fireplaces) -> artificial fireplaces (8510ms)\nWhere is it?\thigh demand\t-16.938591546230597\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, be in, $x) -> (2011 Healthcare IT technicians, are in, high demand) -> high demand (10450ms)\nWhere is it?\tnoise rejection issues\t-16.948143288500155\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (noise rejection issues, would have required, an IT technician?) -> noise rejection issues (8510ms)\nWhere is it?\tthe IT Industry\t-16.95262884133519\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (Each IT Support Technician, has worked in, the IT Industry) -> the IT Industry (8663ms)\nWhere is it?\tSeren Group ?We\t-16.953120828645577\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (Seren Group ?We, have reduced workloads on, IT technicians) -> Seren Group ?We (8663ms)\nWhere is it?\tcommon\t-16.972590327275316\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (an IT Technician Senior and robots, have in, common) -> common (8663ms)\nWhere is it?\tBritain\t-17.008289625839296\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (it the largest multi-sports event, held in, Britain) -> Britain (8663ms)\nWhere is it?\tPC systems\t-17.00968852169738\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, be in, $x) -> (The IT staff /technicians, may also be skilled in, PC systems) -> PC systems (10449ms)\nWhere is it?\twork\t-17.17810688033378\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (an IT technician, has been out of, work) -> work (8691ms)\nWhere is it?\tthe definition\t-17.236743438057946\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s most familiar modern uses, are in, the definition) -> the definition (7051ms)\nWhere is it?\tthe customer service range\t-17.276303893561224\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s best use, far is in, the customer service range) -> the customer service range (7051ms)\nWhere is it?\ta heart attack\t-17.31372637020117\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (the technician who was supposed to do it, had, a heart attack) -> a heart attack (8691ms)\nWhere is it?\tCNS\t-17.41032064615322\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, get, it technician) -> (CNS, wants to get an explicit list of, IFAS IT Technicians) -> CNS (10086ms)\nWhere is it?\tthe can\t-17.455961626580237\tWhere is it? -> [ where be it ] ? -> where be it episode ? -> $x: (it episode, be in, $x) -> (It?s rough and spotty but episode 2, is in, the can) -> the can (7051ms)\nWhere is it?\tcommerce\t-17.50324756159194\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (this sport.It, ends in, commerce) -> commerce (8691ms)\nWhere is it?\tThe same company\t-17.67902280038551\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The same company, is looking to hire, a IT technician) -> The same company (8691ms)\nWhere is it?\tdepartments\t-17.72276336459087\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (departments, have, their own IT technician) -> departments (8691ms)\nWhere is it?\ta look\t-17.737176588743097\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (our IT technicians, Just had, a look) -> a look (8691ms)\nWhere is it?\tcase\t-17.84756398008375\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, be in, $x) -> (The CompTIA IT Technician assessment, is trapped in, case) -> case (10449ms)\nWhere is it?\tThe applicant\t-17.871941804274186\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The applicant, must be qualified as, an IT Technician) -> The applicant (8749ms)\nWhere is it?\t2011 Box .net\t-18.030781754877655\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (2011 Box .net, is looking for, an IT Technician) -> 2011 Box .net (8749ms)\nWhere is it?\tIT skills\t-18.034545381651213\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, get, it technician) -> (IT skills, now got a great job as, an IT technician) -> IT skills (10086ms)\nWhere is it?\tEach production\t-18.301754716772027\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (Each production, will have, a technician assigned to it) -> Each production (8749ms)\nWhere is it?\tsituations\t-18.328906239773193\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> $x: (it its use, in, $x) -> (It?s correct use, occurs in, situations) -> situations (8749ms)\nWhere is it?\t1598\t-18.40540202728914\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s first use, was in, 1598) -> 1598 (7051ms)\nWhere is it?\tthe summer\t-18.532239336966548\tWhere is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (It?s Sports ?, started in, the summer) -> the summer (8749ms)\nWhere is it?\tSedo\t-18.723028006305025\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, offer, it technician) -> (Sedo, offers, it technicians) -> Sedo (10502ms)\nWhere is it?\tthe device\t-19.017429761997896\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (the device, was intact, when the bomb technician removed it) -> the device (8820ms)\nWhere is it?\tthe 1890?s\t-19.03196851030928\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> $x: (it its use, in, $x) -> (It?s first use, happened way back in, the 1890?s) -> the 1890?s (8820ms)\nWhere is it?\tapplicants\t-19.1940670031243\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, be for, $x) -> (The IT Technician exam, is for, applicants) -> applicants (10151ms)\nWhere is it?\tthe hundreds and there?s\t-19.51505923219317\tWhere is it? -> [ where be it ] ? -> where be it episode ? -> $x: (it episode, be in, $x) -> $x: (it episode, in, $x) -> (It?s true those episodes, run in, the hundreds and there?s) -> the hundreds and there?s (8820ms)\nWhere is it?\tthe latest skills\t-20.60345740339165\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, need, it technician) -> (the latest skills, needed by, IT technicians) -> the latest skills (10151ms)\nWhere is it?\t1995\t-20.746592656533902\tWhere is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> $x: (it its use, in, $x) -> (It?s first use, came in, 1995) -> 1995 (8820ms)\nWhere is it?\tThe certificate\t-21.22048674727283\tWhere is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, give, it technician) -> (The certificate, gives, IT technicians) -> The certificate (10449ms)\nWhat is the gestation period for humans?\tmatter of common knowledge\t-9.538350662590812\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Period of human gestation, Instance Of, matter of common knowledge) -> matter of common knowledge (3049ms)\nWhat is the gestation period for humans?\tapproximate length of time\t-10.057027927613195\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Human gestation, Instance Of, approximate length of time) -> approximate length of time (3050ms)\nWhat is the gestation period for humans?\trandom variable\t-10.076852101040513\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (gestation period in humans, Instance Of, random variable) -> random variable (3049ms)\nWhat is the gestation period for humans?\thaphazard process\t-10.358265073093081\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Human gestation, Instance Of, haphazard process) -> haphazard process (3050ms)\nWhat is the gestation period for humans?\tgood analogy\t-10.385313092746973\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Armstrong's analogy of human gestation, Instance Of, good analogy) -> good analogy (3050ms)\nWhat is the gestation period for humans?\tlow budget, sad excuse\t-12.065683307603658\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (MATING HABITS OF THE EARTHBOUND HUMAN, Instance Of, low budget, sad excuse) -> low budget, sad excuse (3567ms)\nWhat is the gestation period for humans?\tsilly little flick\t-12.06705814767502\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, silly little flick) -> silly little flick (3568ms)\nWhat is the gestation period for humans?\tweek\t-12.070659803869807\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (normal gestation period for a human female, Instance Of, week) -> week (3106ms)\nWhat is the gestation period for humans?\tpair of yin\t-12.082784778265612\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Habits of the human body, Instance Of, pair of yin) -> pair of yin (3568ms)\nWhat is the gestation period for humans?\telement of these social structure\t-12.371613934539763\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (importance of habit androutinisation of human behavior, Instance Of, element of these social structure) -> element of these social structure (3567ms)\nWhat is the gestation period for humans?\tstructural repair or change\t-12.389089447799105\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (alteration of human habit, Instance Of, structural repair or change) -> structural repair or change (3567ms)\nWhat is the gestation period for humans?\tnon-viral factor\t-12.401427746900785\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human living habit, Instance Of, non-viral factor) -> non-viral factor (3568ms)\nWhat is the gestation period for humans?\tfun film\t-12.415218523397758\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, fun film) -> fun film (3664ms)\nWhat is the gestation period for humans?\tnon-profit group of volunteer\t-12.426237012403764\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (HABIT or Human-Animal Bond in Tennessee, Instance Of, non-profit group of volunteer) -> non-profit group of volunteer (3664ms)\nWhat is the gestation period for humans?\tawesome film\t-12.475996141309437\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, awesome film) -> awesome film (3664ms)\nWhat is the gestation period for humans?\tseparate film\t-12.480937837040695\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, separate film) -> separate film (3664ms)\nWhat is the gestation period for humans?\ttopic\t-12.6320357762995\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (human gestation, Instance Of, topic) -> topic (3107ms)\nWhat is the gestation period for humans?\tcrucial element\t-12.70588393215573\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (realistic human habit, Instance Of, crucial element) -> crucial element (3664ms)\nWhat is the gestation period for humans?\tfunny movie\t-12.733956140258822\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (DVD Mating Habits of Earthbound Humans, Instance Of, funny movie) -> funny movie (3665ms)\nWhat is the gestation period for humans?\taffective venture\t-12.746258364252954\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Human habit-taking, Instance Of, affective venture) -> affective venture (3678ms)\nWhat is the gestation period for humans?\tcontradictory topic\t-12.746258364252954\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human bad habit, Instance Of, contradictory topic) -> contradictory topic (3678ms)\nWhat is the gestation period for humans?\tlife style\t-12.751426237763408\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (elementary human habit, Instance Of, life style) -> life style (3678ms)\nWhat is the gestation period for humans?\thelpful information\t-12.7631312514629\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human habit, Instance Of, helpful information) -> helpful information (3678ms)\nWhat is the gestation period for humans?\tlocal factor\t-12.766499059119516\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human habit, Instance Of, local factor) -> local factor (3678ms)\nWhat is the gestation period for humans?\tfilm\t-14.25714770935138\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, film) -> film (3678ms)\nWhat is the gestation period for humans?\ta decade\t-14.618484183373498\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> (human-bear contacts, were the highest in, a decade) -> a decade (5916ms)\nWhat is the gestation period for humans?\tmockumentary\t-14.620617391809198\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (MATING HABITS OF THE EARTHBOUND HUMAN, Instance Of, mockumentary) -> mockumentary (3694ms)\nWhat is the gestation period for humans?\tcontributor\t-14.960319683208173\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Human food habit, Instance Of, contributor) -> contributor (3694ms)\nWhat is the gestation period for humans?\tfactor\t-14.968440049769189\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (plain old human defiance play roles in persistent bad habit, Instance Of, factor) -> factor (3694ms)\nWhat is the gestation period for humans?\telement\t-15.003300907072749\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human-habits, Instance Of, element) -> element (3694ms)\nWhat is the gestation period for humans?\tsubject\t-15.007289787871166\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human eating habit, Instance Of, subject) -> subject (3711ms)\nWhat is the gestation period for humans?\tconcern\t-15.01469537807284\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Habit Capture Errors Human error, Instance Of, concern) -> concern (3711ms)\nWhat is the gestation period for humans?\tFlorida\t-15.312209269994622\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> (Both human and bear populations, are growing in, Florida) -> Florida (5916ms)\nWhat is the gestation period for humans?\tgene tests\t-15.603836777340199\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (human born mutants, are sent there based on, gene tests) -> gene tests (5917ms)\nWhat is the gestation period for humans?\tthe survival level\t-16.595293098788684\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (human and bear, is on, the survival level) -> the survival level (5916ms)\nWhat is the gestation period for humans?\tthe news\t-16.656200784538402\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> (human food-borne illness, is currently in, the news) -> the news (5916ms)\nWhat is the gestation period for humans?\tthe train tracks\t-16.72629049257722\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (Pre-born human beings, are being destroyed on, the train tracks) -> the train tracks (5916ms)\nWhat is the gestation period for humans?\tthe rise\t-16.74671637321678\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (Human-bear conflicts, are on, the rise) -> the rise (5917ms)\nWhat is the gestation period for humans?\tthe land-fast ice\t-16.802624209220586\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (both humans and bears, are found on, the land-fast ice) -> the land-fast ice (6094ms)\nWhat is the gestation period for humans?\tthe increase\t-16.851733725267582\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (human and bear interaction, is on, the increase) -> the increase (6094ms)\nWhat is the gestation period for humans?\ta glacial lake\t-16.944079328134848\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (the ?human polar bear?, recently swam in, a glacial lake) -> a glacial lake (6938ms)\nWhat is the gestation period for humans?\tEurope\t-17.06981139713664\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (Tick-borne human pathogenic microorganisms, found in, Europe) -> Europe (6938ms)\nWhat is the gestation period for humans?\tthe Kodiak Archipelago\t-17.0718883753762\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (Bears and humans, have coexisted on, the Kodiak Archipelago) -> the Kodiak Archipelago (6938ms)\nWhat is the gestation period for humans?\thuman injuries\t-17.116332328384722\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (bear-human conflicts, Decrease in, human injuries) -> human injuries (6938ms)\nWhat is the gestation period for humans?\tunintentional harassment\t-17.197286279538503\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (human-bear encounters, could result in, unintentional harassment) -> unintentional harassment (6938ms)\nWhat is the gestation period for humans?\tseveral ways\t-17.22148725954533\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (Human borne viruses, can spread in, several ways) -> several ways (6963ms)\nWhat is the gestation period for humans?\tclose proximity\t-17.24414879122416\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (Brown Bears and humans, have lived in, close proximity) -> close proximity (6963ms)\nWhat is the gestation period for humans?\ttwo French caves\t-17.308797685430388\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (both humans and cave bears, lived in, two French caves) -> two French caves (6963ms)\nWhat is the gestation period for humans?\tdamaged property\t-17.366168042942043\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (bears and humans, result in, damaged property) -> damaged property (6963ms)\nWhat is the gestation period for humans?\tnumber\t-17.5220626018171\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> (humans and bears, are rising in, number) -> number (6094ms)\nWhat is the gestation period for humans?\tthe same habitat\t-18.34106458110011\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (bears and humans, can successfully coexist in, the same habitat) -> the same habitat (7087ms)\nWhat is the gestation period for humans?\tbear mortality\t-18.702810683320457\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (human-bear conflicts, result in, bear mortality) -> bear mortality (7087ms)\nWhat is the gestation period for humans?\tthe bear\t-18.7483708699003\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (Human/bear close encounters, rely entirely on, the bear) -> the bear (7087ms)\nWhat is the gestation period for humans?\tthe form\t-18.750515262216705\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (Another bear?human interaction, occurs in, the form) -> the form (7110ms)\nWhat is the gestation period for humans?\tthe park\t-18.778809595967857\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (bear-human encounters, have occurred in, the park) -> the park (7110ms)\nWhat is the gestation period for humans?\tfood\t-18.883171041806502\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (human-borne illnesses, passed on through, food) -> food (7111ms)\nWhat is the gestation period for humans?\tthe planet\t-18.904257220602087\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (Eric Only four natural born humans, remain on, the planet) -> the planet (7111ms)\nWhat is the gestation period for humans?\tthe spot\t-18.93146434195552\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (a human bear fight, originated on, the spot) -> the spot (7111ms)\nWhat is the gestation period for humans?\tcities\t-19.494007606804484\tWhat is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (human-bear encounters, have become more common in, cities) -> cities (7111ms)\nWhere is it based?\tDoctorate\t-6.8930291307462985\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (Architectural Styles and the Design of Network-based Software Architectures, Degree, Doctorate) -> Doctorate (9480ms)\nWhere is it based?\tScience\t-8.851339559381197\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (Citizen Base Strategy Leveraging, advanced degrees in, Science) -> Science (9480ms)\nWhere is it based?\tCronote\t-9.543535480629773\tWhere is it based? -> where be it [ base ] ? -> what be base in 2010 ? -> $x: ($x, be base in, 2010) -> (Cronote, is a web-based company established in, December 2010) -> Cronote (12002ms)\nWhere is it based?\tCalifornia\t-9.918778297341609\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, be eligible for, base) -> (California, are eligible for, need-based financial aid) -> California (17121ms)\nWhere is it based?\tQatar\t-10.02406236475673\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, be eligible for, base) -> (Qatar, are eligible for, merit-based partial scholarships) -> Qatar (17121ms)\nWhere is it based?\tStudents\t-10.090084294033197\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, be eligible for, base) -> (Students, are eligible for, need-based aid) -> Students (17121ms)\nWhere is it based?\tcustomer behaviour\t-10.135276413804867\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (your data-base, measure some degree of, customer behaviour) -> customer behaviour (9480ms)\nWhere is it based?\thome plate\t-10.16179148945677\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (Second base, is 90 degrees from, home plate) -> home plate (9480ms)\nWhere is it based?\tAmerican\t-10.18883880555039\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (base, is, American) -> American (9480ms)\nWhere is it based?\tsports equipment\t-10.206916297322117\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is, sports equipment) -> sports equipment (9480ms)\nWhere is it based?\tAcupuncture\t-10.246010983927638\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, be offer at, base) -> (Acupuncture, was offered at, McGuire Air Force Base) -> Acupuncture (14083ms)\nWhere is it based?\tgeometric shape\t-10.283492464705489\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is a, geometric shape) -> geometric shape (12002ms)\nWhere is it based?\tGoogle\t-10.295716954194422\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: ($x, have, base) -> (Google, has, Base) -> Google (12002ms)\nWhere is it based?\tcontinuity\t-10.317330720685934\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (a base level campaign, will provide a degree of, continuity) -> continuity (12002ms)\nWhere is it based?\tArafat\t-10.32312710154448\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: ($x, have, base) -> (Arafat, moved has, base) -> Arafat (12002ms)\nWhere is it based?\tOregon\t-10.339825939778072\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, study, base) -> (Oregon, is studying, mileage-based fees) -> Oregon (12002ms)\nWhere is it based?\tNEW\t-10.343051706003669\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is a proxy for, NEW) -> NEW (13012ms)\nWhere is it based?\tSouth American person\t-10.343051706003669\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is a, South American person) -> South American person (13012ms)\nWhere is it based?\tnursing\t-10.379232368719675\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (hospital-based programs, hold an associate degree in, nursing) -> nursing (13013ms)\nWhere is it based?\tthe Milky Way\t-10.419699898507835\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: ($x, have, base) -> (the Milky Way, have touched, base) -> the Milky Way (13013ms)\nWhere is it based?\tbusiness\t-10.421976045801715\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (the Chicago-based institution, offers degrees in, business) -> business (13013ms)\nWhere is it based?\tUSC.\t-10.459677250971225\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (these broadly based scholars, finish their degrees at, USC.) -> USC. (13013ms)\nWhere is it based?\tautomation\t-10.526893394985422\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (these model based approaches, offer a high degree of, automation) -> automation (14083ms)\nWhere is it based?\tgranularity\t-10.541924774613243\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (usage-based linguistics, 's the right degree of, granularity) -> granularity (14083ms)\nWhere is it based?\tResearchers\t-10.561094095520511\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, study, base) -> (Researchers, are studying, an ELISA -based system) -> Researchers (14083ms)\nWhere is it based?\tBarbara J. Stapleton\t-10.605069149946157\tWhere is it based? -> where be it [ base ] ? -> what be base in 2010 ? -> $x: ($x, be base in, 2010) -> (Barbara J. Stapleton, was based in, Afghanistan 2002-2010) -> Barbara J. Stapleton (14083ms)\nWhere is it based?\tNext\t-10.699872974284201\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is, Next) -> Next (15918ms)\nWhere is it based?\tinterconnectivity\t-10.714343336323463\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (Hub based networks, have a high degree of, interconnectivity) -> interconnectivity (15918ms)\nWhere is it based?\tporosity\t-10.736448259862353\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (PINE WOOD based Charcoals, have a high degree of, porosity) -> porosity (15918ms)\nWhere is it based?\tMumbengegwi\t-10.74745855985494\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: ($x, have, base) -> (Mumbengegwi, has touched, base) -> Mumbengegwi (15918ms)\nWhere is it based?\tCambridge\t-10.778633918634394\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: (base, teach, $x) -> (mindfulness-based stress reduction, taught in, Cambridge) -> Cambridge (15918ms)\nWhere is it based?\tChrist\t-10.789207737406025\tWhere is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, to teach, base) -> (Christ, used to teach at, White Sands Missile Base) -> Christ (15918ms)\nWhere is it based?\tIT equipment provider and specialises\t-11.1300621631637\tWhere is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (Darwin-based Territory Technology Solutions, Instance Of, IT equipment provider and specialises) -> IT equipment provider and specialises (7042ms)\nWhere is it based?\tinteresting concept\t-11.374646700115596\tWhere is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (Dose fractionation based on arterial territory, Instance Of, interesting concept) -> interesting concept (7042ms)\nWhere is it based?\tsocio-political concept\t-11.436366832697193\tWhere is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (Territory-based development, Instance Of, socio-political concept) -> socio-political concept (7042ms)\nWhere is it based?\tmanagement system\t-11.454487558340814\tWhere is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (culture-based territory, Instance Of, management system) -> management system (7042ms)\nWhere is it based?\tsubstantive issue\t-11.460046395168774\tWhere is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (sovereignty-based assertions over territory, Instance Of, substantive issue) -> substantive issue (7041ms)\nWhere is it based?\tlocal agency\t-11.469096700510523\tWhere is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (Territory & Client Base CCAD, Instance Of, local agency) -> local agency (7042ms)\nWhere is it based?\tprogramme\t-12.231454367342854\tWhere is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (licence-based territory-wide management framework, Instance Of, programme) -> programme (7121ms)\nWhere is it based?\tissue\t-12.313485172314625\tWhere is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (disposition of nuclear weapons based on Ukrainian territory, Instance Of, issue) -> issue (7122ms)\n"
  },
  {
    "path": "oqa-data/predictions/paralex-trec.txt",
    "content": "What does SIDS stand for?\tSimulated Interaction Device\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Simulated Interaction Device) -> Simulated Interaction Device (3584ms)\nWhat does SIDS stand for?\tSudden Infant Death Syndrome\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (SIDS SIDS, stands for, Sudden Infant Death Syndrome) -> Sudden Infant Death Syndrome (3671ms)\nWhat does SIDS stand for?\t?security identifier ?\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (?sid ?, stands for, ?security identifier ?) -> ?security identifier ? (3585ms)\nWhat does SIDS stand for?\tSound Interface Device\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Sound Interface Device) -> Sound Interface Device (3584ms)\nWhat does SIDS stand for?\tcivil rights\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (Sid McMath, stood for, civil rights) -> civil rights (3584ms)\nWhat does SIDS stand for?\tSystem\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID SID, stands for, System) -> System (3671ms)\nWhat does SIDS stand for?\tSpeed Indicator Device\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Speed Indicator Device) -> Speed Indicator Device (3584ms)\nWhat does SIDS stand for?\tMulti-resolution Seamless Image Database\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (MrSID, stands for, Multi-resolution Seamless Image Database) -> Multi-resolution Seamless Image Database (3670ms)\nWhat does SIDS stand for?\tMrSID Generation 3\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (MrSID Generation 2, stands for, MrSID Generation 3) -> MrSID Generation 3 (3584ms)\nWhat does SIDS stand for?\tSketching\t0.111111111111\tWhat does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Sketching) -> Sketching (3670ms)\nWhat does SIDS stand for?\tline\t-0.0\tWhat does SIDS stand for? -> $x: (sids, stand in, $x) -> (his friend Sid, stood in, line) -> line (3670ms)\nWhat does SIDS stand for?\tthe doorway\t-0.0\tWhat does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stands in, the doorway) -> the doorway (3671ms)\nWhat does SIDS stand for?\tfront\t-0.0\tWhat does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stands in, front) -> front (3670ms)\nWhat does SIDS stand for?\tcountless elections\t-0.0\tWhat does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stood in, countless elections) -> countless elections (3670ms)\nWhat does SIDS stand for?\tthe hall\t-0.0\tWhat does SIDS stand for? -> $x: (sids, stand in, $x) -> (Nana , Sue and Sid, were all standing in, the hall) -> the hall (3670ms)\nWhat does SIDS stand for?\ta hot head\t-0.222222222222\tWhat does SIDS stand for? -> $x: (sids, be know for, $x) -> (Sid, is also known for having, a hot head) -> a hot head (3697ms)\nWhat does SIDS stand for?\tspecific types\t-0.222222222222\tWhat does SIDS stand for? -> $x: (sids, be know for, $x) -> (Will , Clint or Sid, are known for making, specific types) -> specific types (3697ms)\nWhat does SIDS stand for?\tbow ties\t-0.222222222222\tWhat does SIDS stand for? -> $x: (sids, be know for, $x) -> (Sid, was well-known for wearing, bow ties) -> bow ties (3697ms)\nWhat does SIDS stand for?\tHoon\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (Hoon, was standing next to, Sid) -> Hoon (3699ms)\nWhat does SIDS stand for?\tThe lion\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (The lion, stood outside, Sid?s office building) -> The lion (3699ms)\nWhat does SIDS stand for?\tMickey\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (Mickey, stands across from, Yen Sid?s desk) -> Mickey (3697ms)\nWhat does SIDS stand for?\tMG2\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (MG2, stands for, MrSID Generation 2) -> MG2 (3699ms)\nWhat does SIDS stand for?\tNana\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (Nana, stood next to, Sid) -> Nana (3699ms)\nWhat does SIDS stand for?\t?SB7 ,?\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (?SB7 ,?, stood for, ?Sid Beckerman tune # 7.?) -> ?SB7 ,? (3697ms)\nWhat does SIDS stand for?\tKong Li\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (Kong Li, was already standing too close to, Sid) -> Kong Li (3697ms)\nWhat does SIDS stand for?\tThe old woman\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (The old woman, stood beside, Sid) -> The old woman (3697ms)\nWhat does SIDS stand for?\tKurt Lauderdale\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (Kurt Lauderdale, stood toe to toe with, Sid Vicious) -> Kurt Lauderdale (3699ms)\nWhat does SIDS stand for?\tMrSID Generation 2\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (MrSID Generation 2, stands for, MrSID Generation 3) -> MrSID Generation 2 (3697ms)\nWhat does SIDS stand for?\tgreen eyes\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (green eyes, stood, Sid) -> green eyes (3699ms)\nWhat does SIDS stand for?\tland\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (land, stood, SidMar) -> land (3704ms)\nWhat does SIDS stand for?\tMG4\t-0.333333333332\tWhat does SIDS stand for? -> $x: ($x, stand, sids) -> (MG4, stands for, MrSID Generation 4) -> MG4 (3697ms)\nWhat does SIDS stand for?\tsecond base\t-0.444444444442\tWhat does SIDS stand for? -> $x: (sids, stand on, $x) -> (Sid Bream, stood on, second base) -> second base (3704ms)\nWhat does SIDS stand for?\ta grey reflective plain\t-0.444444444442\tWhat does SIDS stand for? -> $x: (sids, stand on, $x) -> (? Sid, stands on, a grey reflective plain) -> a grey reflective plain (3704ms)\nWhat does SIDS stand for?\ttoo ? chatting\t-0.555555555553\tWhat does SIDS stand for? -> $x: (sids, be stand, $x) -> (Sid Vicious, would have been standing there, too ? chatting) -> too ? chatting (3704ms)\nWhat does SIDS stand for?\tthe whole interview\t-0.555555555553\tWhat does SIDS stand for? -> $x: (sids, be stand, $x) -> (LOL Sid, was standing so far back during, the whole interview) -> the whole interview (3704ms)\nWhat does SIDS stand for?\tso far back during the whole interview\t-0.555555555553\tWhat does SIDS stand for? -> $x: (sids, be stand, $x) -> (LOL Sid, was standing, so far back during the whole interview) -> so far back during the whole interview (3704ms)\nWhat does SIDS stand for?\tLowe\t-0.555555555553\tWhat does SIDS stand for? -> $x: (sids, be stand, $x) -> (Sid, was standing behind, Lowe) -> Lowe (3704ms)\nHow many times has he married?\tManuel\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Manuel, married, three times) -> Manuel (3006ms)\nHow many times has he married?\tThe King\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (The King, married, six times) -> The King (2992ms)\nHow many times has he married?\tColette\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Colette, married, three times) -> Colette (2993ms)\nHow many times has he married?\tNewt Gingrich\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Newt Gingrich, married, three times) -> Newt Gingrich (2976ms)\nHow many times has he married?\tThe daughter of Aristotle\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (The daughter of Aristotle, married, three times) -> The daughter of Aristotle (2992ms)\nHow many times has he married?\tA hyperactive heterosexual , Philby\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (A hyperactive heterosexual , Philby, married, four times) -> A hyperactive heterosexual , Philby (2828ms)\nHow many times has he married?\tThomas\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Thomas, married, three times) -> Thomas (3006ms)\nHow many times has he married?\tBarbara Hutton\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Barbara Hutton, married, seven times) -> Barbara Hutton (3006ms)\nHow many times has he married?\tZsa Zsa Gabor\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Zsa Zsa Gabor, married, nine times) -> Zsa Zsa Gabor (2702ms)\nHow many times has he married?\tThe story\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (The story, marries, three times) -> The story (2976ms)\nHow many times has he married?\tGrandfather\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Grandfather, married, four times) -> Grandfather (2702ms)\nHow many times has he married?\tCouple\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Couple, married, shortest time) -> Couple (2992ms)\nHow many times has he married?\tAaron\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Aaron, married, againthis  time) -> Aaron (2993ms)\nHow many times has he married?\tA glamourous Austrian actress\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (A glamourous Austrian actress, married, six times) -> A glamourous Austrian actress (3006ms)\nHow many times has he married?\twomen\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (women, married, multiple times) -> women (3016ms)\nHow many times has he married?\tMargaret\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Margaret, married, three times) -> Margaret (3006ms)\nHow many times has he married?\tEli C. Hale\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Eli C. Hale, married, second time) -> Eli C. Hale (2702ms)\nHow many times has he married?\tDick\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Dick, married, five times) -> Dick (2993ms)\nHow many times has he married?\ta Elijah Throckmorton\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (a Elijah Throckmorton, married, 3 times) -> a Elijah Throckmorton (2641ms)\nHow many times has he married?\tBetty Lou Beets\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Betty Lou Beets, married, five times) -> Betty Lou Beets (3016ms)\nHow many times has he married?\tSalim\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Salim, marries, time) -> Salim (3016ms)\nHow many times has he married?\tSam\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Sam, married, 3 times) -> Sam (2642ms)\nHow many times has he married?\tBertrand Russell\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Bertrand Russell, married, four times) -> Bertrand Russell (2977ms)\nHow many times has he married?\tPersonal Life Stokowski\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Personal Life Stokowski, married, three times) -> Personal Life Stokowski (2977ms)\nHow many times has he married?\tGazzara\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Gazzara, married, three times) -> Gazzara (3006ms)\nHow many times has he married?\tMary\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Mary, married, three times) -> Mary (3016ms)\nHow many times has he married?\tKerouac\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Kerouac, married, three times) -> Kerouac (2702ms)\nHow many times has he married?\tSagan\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Sagan, married, three times) -> Sagan (2641ms)\nHow many times has he married?\tDavy\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Davy, married, three times) -> Davy (3016ms)\nHow many times has he married?\tThe girl\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (The girl, married, several times) -> The girl (2829ms)\nHow many times has he married?\tZoroaster\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Zoroaster, married, three times) -> Zoroaster (2976ms)\nHow many times has he married?\tNewt\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Newt, married, three times) -> Newt (2829ms)\nHow many times has he married?\tNorthern California\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Northern California, married, three times) -> Northern California (3006ms)\nHow many times has he married?\tElizabeth Taylor\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Elizabeth Taylor, married, eight times) -> Elizabeth Taylor (2992ms)\nHow many times has he married?\tRobert Hanson\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Robert Hanson, married, four times) -> Robert Hanson (2641ms)\nHow many times has he married?\ta story of\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (a story of, married, 23 times) -> a story of (3006ms)\nHow many times has he married?\tAristotle\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Aristotle, married, three times) -> Aristotle (2977ms)\nHow many times has he married?\tSo-called experts\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (So-called experts, married, several times) -> So-called experts (3006ms)\nHow many times has he married?\tTom\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Tom, married, five times) -> Tom (2829ms)\nHow many times has he married?\tA former drug addict\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (A former drug addict, married, five times) -> A former drug addict (2992ms)\nHow many times has he married?\tKishore Kumar\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Kishore Kumar, married, four times) -> Kishore Kumar (2828ms)\nHow many times has he married?\tCurtis\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Curtis, married, six times) -> Curtis (2976ms)\nHow many times has he married?\tIra\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Ira, married, four times) -> Ira (2830ms)\nHow many times has he married?\tJohn\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (John, married, four times) -> John (3016ms)\nHow many times has he married?\tCharles\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Charles, married, three times) -> Charles (3006ms)\nHow many times has he married?\tBeisner\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Beisner, married, three times) -> Beisner (3016ms)\nHow many times has he married?\ta father\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (a father, married, four times) -> a father (2992ms)\nHow many times has he married?\tScarlett\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Scarlett, married, three times) -> Scarlett (3006ms)\nHow many times has he married?\tWilliams\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Williams, married, four times) -> Williams (2992ms)\nHow many times has he married?\tDavis\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Davis, married, three times) -> Davis (2977ms)\nHow many times has he married?\ta man\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (a man, married, multiple times) -> a man (2976ms)\nHow many times has he married?\tCora\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Cora, married, four times) -> Cora (2829ms)\nHow many times has he married?\tMuhammad\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Muhammad, married, eleven times) -> Muhammad (3006ms)\nHow many times has he married?\tDavid\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (David, married, eight times) -> David (2702ms)\nHow many times has he married?\tDelphine\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Delphine, married, eight times) -> Delphine (3016ms)\nHow many times has he married?\ta Solar Empire\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (a Solar Empire, married, real time) -> a Solar Empire (3016ms)\nHow many times has he married?\tWilliam\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (William, married, four times) -> William (2992ms)\nHow many times has he married?\tAndrew\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Andrew, married, three times) -> Andrew (2992ms)\nHow many times has he married?\tHemingway\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Hemingway, married, four times) -> Hemingway (2992ms)\nHow many times has he married?\tMaud\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Maud, married, 3 times) -> Maud (3016ms)\nHow many times has he married?\tArchibald\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Archibald, married, 3 times) -> Archibald (2641ms)\nHow many times has he married?\tNewley\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Newley, married, three times) -> Newley (2702ms)\nHow many times has he married?\tJames\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (James, married, three times) -> James (2993ms)\nHow many times has he married?\tone man\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (one man, married, eight times) -> one man (3006ms)\nHow many times has he married?\tCharles Howe Sr\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Charles Howe Sr, married, four times) -> Charles Howe Sr (2976ms)\nHow many times has he married?\ta woman\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (a woman, marrying, seven times) -> a woman (3006ms)\nHow many times has he married?\ta person\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (a person, married, three times) -> a person (2976ms)\nHow many times has he married?\tHenry\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Henry, married, six times) -> Henry (2976ms)\nHow many times has he married?\tWoody\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Woody, married, 3 times) -> Woody (2992ms)\nHow many times has he married?\tA woman\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (A woman, married, three times) -> A woman (2641ms)\nHow many times has he married?\tHemmings\t0.444444444443\tHow many times has he married? -> $x: ($x, marry, time) -> (Hemmings, married, four times) -> Hemmings (3006ms)\nHow many times has he married?\tthe Colonial themes\t0.222222222222\tHow many times has he married? -> $x: ($x, marry, victorian) -> (the Colonial themes, would be married to, Victorian fussiness) -> the Colonial themes (3016ms)\nHow many times has he married?\tthe Tyrannosaurus Rex\t0.222222222222\tHow many times has he married? -> $x: ($x, marry, stegosaurus) -> (the Tyrannosaurus Rex, married to, the Stegosaurus) -> the Tyrannosaurus Rex (3016ms)\nHow many times has he married?\t4.5 % Muslims\t0.222222222222\tHow many times has he married? -> $x: ($x, marry, sikh) -> (4.5 % Muslims, marry, Hindu , Jain or Sikh) -> 4.5 % Muslims (3016ms)\nHow many times has he married?\tthe same caste\t0.222222222222\tHow many times has he married? -> $x: ($x, marry, sikh) -> (the same caste, marry, a Sikh) -> the same caste (3024ms)\nHow many times has he married?\ta bride\t0.222222222222\tHow many times has he married? -> $x: ($x, marry, victorian) -> (a bride, was married, prior to the Victorian era) -> a bride (3024ms)\nHow many times has he married?\tMahendra Pratap\t0.222222222222\tHow many times has he married? -> $x: ($x, marry, sikh) -> (Mahendra Pratap, married a lady from, a Jat Sikh family) -> Mahendra Pratap (3016ms)\nHow many times has he married?\tSunday Sweepstakes\t0.222222222222\tHow many times has he married? -> $x: ($x, marry, time square) -> (Sunday Sweepstakes, Get Married in, Times Square) -> Sunday Sweepstakes (3016ms)\nHow many times has he married?\tOmar Abdullah\t0.222222222222\tHow many times has he married? -> $x: ($x, marry, sikh) -> (Omar Abdullah, is married to, a Sikh) -> Omar Abdullah (3016ms)\nHow many times has he married?\tThe trouble\t0.222222222221\tHow many times has he married? -> $x: ($x, be marry of, time) -> (The trouble, is you?re married all of, the time) -> The trouble (3024ms)\nHow many times has he married?\tA man\t0.222222222221\tHow many times has he married? -> $x: ($x, be marry of, time) -> (A man, of being married to two women at, the same time) -> A man (3024ms)\nHow many times has he married?\tthe tobaccos\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, to marry, the tobaccos) -> the tobaccos (3038ms)\nHow many times has he married?\ta daughter\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, marries, a daughter) -> a daughter (3031ms)\nHow many times has he married?\tCiel\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, then marry, Ciel) -> Ciel (3048ms)\nHow many times has he married?\ta hockey player\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, even marry, a hockey player) -> a hockey player (3038ms)\nHow many times has he married?\tOlive Nathan\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time Grandpa Estes, married, Olive Nathan) -> Olive Nathan (3038ms)\nHow many times has he married?\tdeacons\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, married, deacons) -> deacons (3043ms)\nHow many times has he married?\tJones\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (Three-times, married, Jones) -> Jones (3048ms)\nHow many times has he married?\tBernadette\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (The many times, married, Bernadette) -> Bernadette (3038ms)\nHow many times has he married?\tWynette\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the same time Jones, married, Wynette) -> Wynette (3043ms)\nHow many times has he married?\ta second wife\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (this time, married, a second wife) -> a second wife (3038ms)\nHow many times has he married?\tthe Temple\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, get married at, the Temple) -> the Temple (3037ms)\nHow many times has he married?\ta secret agent\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, married, a secret agent) -> a secret agent (3037ms)\nHow many times has he married?\tTorch Lake\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, were married on, Torch Lake) -> Torch Lake (3048ms)\nHow many times has he married?\tthe handsome avacado-farmer\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (her time, marry, the handsome avacado-farmer) -> the handsome avacado-farmer (3048ms)\nHow many times has he married?\tthe pleasures\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (Time, marries, the pleasures) -> the pleasures (3024ms)\nHow many times has he married?\tthe first time\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, got married for, the first time) -> the first time (3031ms)\nHow many times has he married?\tactress Talisa Soto\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (one-time beau Benjamin Bratt, married, actress Talisa Soto) -> actress Talisa Soto (3038ms)\nHow many times has he married?\tchain\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the first time, marry, chain) -> chain (3052ms)\nHow many times has he married?\tthe Roman Catholic Church\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, were married in, the Roman Catholic Church) -> the Roman Catholic Church (3043ms)\nHow many times has he married?\ta sculptor\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, would marry, a sculptor) -> a sculptor (3048ms)\nHow many times has he married?\ta cutlass blade\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (times, married to, a cutlass blade) -> a cutlass blade (3031ms)\nHow many times has he married?\ta Frenchman\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, eventually marries, a Frenchman) -> a Frenchman (3048ms)\nHow many times has he married?\t18 years\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, have been married for, 18 years) -> 18 years (3052ms)\nHow many times has he married?\ta Midianite priest\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, married the daughter of, a Midianite priest) -> a Midianite priest (3024ms)\nHow many times has he married?\ttechnological components\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (timeRAZOR, marries, technological components) -> technological components (3048ms)\nHow many times has he married?\tbananas\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (most of the time, marry, bananas) -> bananas (3038ms)\nHow many times has he married?\tawareness metrics\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (peak usage time, marry, awareness metrics) -> awareness metrics (3052ms)\nHow many times has he married?\tfour times\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (three times, married, four times) -> four times (3025ms)\nHow many times has he married?\ttwo years later\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, married, two years later) -> two years later (3052ms)\nHow many times has he married?\tAyaka\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, marry, Ayaka) -> Ayaka (3048ms)\nHow many times has he married?\teach year\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, are married, each year) -> each year (3024ms)\nHow many times has he married?\tnow\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (a long time, married, now) -> now (3048ms)\nHow many times has he married?\ta wife\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (times, is being married to, a wife) -> a wife (3048ms)\nHow many times has he married?\tagain\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, again) -> again (3052ms)\nHow many times has he married?\ta Tasmanian\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (times, is actually married to, a Tasmanian) -> a Tasmanian (3048ms)\nHow many times has he married?\tthe lead guitarist\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (a Time, married, the lead guitarist) -> the lead guitarist (3038ms)\nHow many times has he married?\tactor Dijimon Hounsou\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, only get married to, actor Dijimon Hounsou) -> actor Dijimon Hounsou (3043ms)\nHow many times has he married?\ta Jeffery\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (My own x times granny Sarah Broadway, married, a Jeffery) -> a Jeffery (3031ms)\nHow many times has he married?\tthe suspense\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (The timed challenges, marry, the suspense) -> the suspense (3038ms)\nHow many times has he married?\tthe love\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the Sunday Times fashion journalist, married, the love) -> the love (3031ms)\nHow many times has he married?\tthe next day\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, were married, the next day) -> the next day (3031ms)\nHow many times has he married?\tLouis\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (good time, marry, Louis) -> Louis (3043ms)\nHow many times has he married?\tlater\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, married, later) -> later (3038ms)\nHow many times has he married?\ta fellow international student\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, marry, a fellow international student) -> a fellow international student (3052ms)\nHow many times has he married?\ta non-Jewish woman\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, married, a non-Jewish woman) -> a non-Jewish woman (3031ms)\nHow many times has he married?\tJuly\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, was married in, July) -> July (3031ms)\nHow many times has he married?\tthe niece\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, is married to, the niece) -> the niece (3031ms)\nHow many times has he married?\tHadassah\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, finally marry, Hadassah) -> Hadassah (3031ms)\nHow many times has he married?\teach other\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, are married to, each other) -> each other (3031ms)\nHow many times has he married?\tfellow student Yuana Parisia\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, marry, fellow student Yuana Parisia) -> fellow student Yuana Parisia (3043ms)\nHow many times has he married?\tHelen\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, Helen) -> Helen (3043ms)\nHow many times has he married?\ta rock star\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (A Time , Vallerie Bertinelli, married, a rock star) -> a rock star (3024ms)\nHow many times has he married?\tthe couple\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, married, the couple) -> the couple (3043ms)\nHow many times has he married?\ta fellow parishioner\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (two and sometimes three times, married, a fellow parishioner) -> a fellow parishioner (3052ms)\nHow many times has he married?\ta child\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (a time, marry, a child) -> a child (3024ms)\nHow many times has he married?\tthe heir\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (A short time, married, the heir) -> the heir (3024ms)\nHow many times has he married?\tAgnese\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time Alfredo, married, Agnese) -> Agnese (3043ms)\nHow many times has he married?\treports\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (my time, marry, reports) -> reports (3043ms)\nHow many times has he married?\tthe parties\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, married, the parties) -> the parties (3031ms)\nHow many times has he married?\ta Dutch woman\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, married, a Dutch woman) -> a Dutch woman (3038ms)\nHow many times has he married?\tan Iraqi staffer\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (a Times reporter, married, an Iraqi staffer) -> an Iraqi staffer (3024ms)\nHow many times has he married?\tpop singer\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (a one-time radio DJ, married, pop singer) -> pop singer (3043ms)\nHow many times has he married?\tthe person\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (first time cohabitors, marry, the person) -> the person (3031ms)\nHow many times has he married?\ta Welsh gentleman\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (Time, married, a Welsh gentleman) -> a Welsh gentleman (3031ms)\nHow many times has he married?\tpriests\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, priests) -> priests (3024ms)\nHow many times has he married?\tthe flavors\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, to marry, the flavors) -> the flavors (3037ms)\nHow many times has he married?\tfellow activist Chris Hatch\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, marry, fellow activist Chris Hatch) -> fellow activist Chris Hatch (3048ms)\nHow many times has he married?\tthe next woman\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (time, marry, the next woman) -> the next woman (3048ms)\nHow many times has he married?\tCarl\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (a full-time student, marries, Carl) -> Carl (3031ms)\nHow many times has he married?\tAllene Wyman\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (the time, marry, Allene Wyman) -> Allene Wyman (3024ms)\nHow many times has he married?\tPaul McCartney 10\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (a time-machine and travel, marry, Paul McCartney 10) -> Paul McCartney 10 (3043ms)\nHow many times has he married?\tthe wrong reasons\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (times people, marry for, the wrong reasons) -> the wrong reasons (3037ms)\nHow many times has he married?\tgeometric architecture\t0.11111111111\tHow many times has he married? -> $x: (time, marry, $x) -> (The Two Timing Collection, marries, geometric architecture) -> geometric architecture (3048ms)\nHow many times has he married?\ta nice Jewish man\t-0.111111111111\tHow many times has he married? -> $x: (sikh, marry, $x) -> (a Sikh, eventually decided to marry, a nice Jewish man) -> a nice Jewish man (3052ms)\nHow many times has he married?\tHindus\t-0.111111111111\tHow many times has he married? -> $x: (sikh, marry, $x) -> (Sikhs, marry with, Hindus) -> Hindus (3052ms)\nHow many times has he married?\tthe children\t-0.111111111111\tHow many times has he married? -> $x: (sikh, marry, $x) -> (the Hmong or Punjabi Sikhs, marry, the children) -> the children (3052ms)\nHow many times has he married?\tBarbara Irving\t-0.111111111111\tHow many times has he married? -> $x: (victorian, marry, $x) -> (the Victorian Railways, married, Barbara Irving) -> Barbara Irving (3052ms)\nHow many times has he married?\twigs and bustles\t-0.111111111111\tHow many times has he married? -> $x: (victorian, marry, $x) -> (The Victorian wedding, get married in, wigs and bustles) -> wigs and bustles (3055ms)\nHow many times has he married?\tthe gruff master\t-0.111111111111\tHow many times has he married? -> $x: (victorian, marry, $x) -> (a Victorian gothic, marries, the gruff master) -> the gruff master (3055ms)\nHow many times has he married?\t20 years\t-0.111111111111\tHow many times has he married? -> $x: (the new york times, marry, $x) -> (The New York Times Dr. Bernard Perez, was married for, 20 years) -> 20 years (3052ms)\nHow many times has he married?\tlocal Chinese women\t-0.111111111111\tHow many times has he married? -> $x: (sikh, marry, $x) -> (the Sikhs, married, local Chinese women) -> local Chinese women (3055ms)\nHow many times has he married?\tMexican women\t-0.111111111111\tHow many times has he married? -> $x: (sikh, marry, $x) -> (Sikh men, married, Mexican women) -> Mexican women (3055ms)\nHow many times has he married?\tCarolyn Hoef\t-0.111111111111\tHow many times has he married? -> $x: (the new york times, marry, $x) -> (The New York Times Brian Frederick, plans to marry, Carolyn Hoef) -> Carolyn Hoef (3052ms)\nHow many times has he married?\ta long magazine feature\t-0.111111111111\tHow many times has he married? -> $x: (the new york times, marry, $x) -> (The New York Times, recently married, a long magazine feature) -> a long magazine feature (3055ms)\nHow many times has he married?\ta Sikh\t-0.111111111111\tHow many times has he married? -> $x: (sikh, marry, $x) -> (all Sikh girls, is to marry, a Sikh) -> a Sikh (3052ms)\nHow many times has he married?\ta Methodist church\t-0.111111111111\tHow many times has he married? -> $x: (victorian, marry, $x) -> (Victorians, will be married in, a Methodist church) -> a Methodist church (3052ms)\nHow many times has he married?\tthree\t-0.111111111112\tHow many times has he married? -> $x: (time, be marry of, $x) -> (the time, was a married father of, three) -> three (3055ms)\nHow many times has he married?\ttwo children\t-0.111111111112\tHow many times has he married? -> $x: (time, be marry of, $x) -> (the time, was a married father of, two children) -> two children (3055ms)\nHow many times has he married?\tthree whose wife\t-0.111111111112\tHow many times has he married? -> $x: (time, be marry of, $x) -> (the time, was a married father of, three whose wife) -> three whose wife (3055ms)\nWhere is the capital of the Mormon Church?\tSalt Lake City\t2.77777777777\tWhere is the capital of the Mormon Church? -> $x: ($x, be capital of, mormon) -> (Salt Lake City, is the historic capital of, the Mormon church) -> Salt Lake City (3034ms)\nWhat was Sinatra's first recording?\tDisc 2\t0.666666666665\tWhat was Sinatra's first recording? -> $x: ($x, be recording of, sinatra) -> (Disc 2, is a recording of, Mr Sinatra) -> Disc 2 (500ms)\nWhen was Limbaugh born?\tMissouri\t0.33333333333\tWhen was Limbaugh born? -> $x: (limbaugh, be bear in, $x) -> (Rush Limbaugh, was born in, Missouri) -> Missouri (2138ms)\nWhen was Limbaugh born?\tCape Girardeau\t0.33333333333\tWhen was Limbaugh born? -> $x: (rush limbaugh, be bear in, $x) -> (Rush Hudson Limbaugh III, was born in, Cape Girardeau) -> Cape Girardeau (2139ms)\nWhen was Limbaugh born?\t1951\t0.33333333333\tWhen was Limbaugh born? -> $x: (limbaugh, be bear in, $x) -> (Rush Limbaugh, was born in, 1951) -> 1951 (2138ms)\nWhen was Limbaugh born?\tBakersfield\t-0.0\tWhen was Limbaugh born? -> $x: (limbaugh, live in, $x) -> (Limbaugh, live in, Bakersfield) -> Bakersfield (2211ms)\nWhen was Limbaugh born?\tJan . 12\t-0.0\tWhen was Limbaugh born? -> $x: (limbaugh, be bear on, $x) -> (Limbaugh and Stern, were both born on, Jan . 12) -> Jan . 12 (2138ms)\nWhen was Limbaugh born?\tkidney failure\t-0.111111111111\tWhen was Limbaugh born? -> $x: (rush limbaugh, die of, $x) -> (Rush Limbaugh, will die of, kidney failure) -> kidney failure (3380ms)\nWhen was Limbaugh born?\ta heart attack\t-0.111111111111\tWhen was Limbaugh born? -> $x: (limbaugh, die of, $x) -> (Limbaugh, dying of, a heart attack) -> a heart attack (3342ms)\nWhen was Limbaugh born?\tcancer\t-0.111111111111\tWhen was Limbaugh born? -> $x: (limbaugh, die of, $x) -> (Limbaugh, dies of, cancer) -> cancer (3415ms)\nWhen was Limbaugh born?\tcare\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does nt, care) -> care (3711ms)\nWhen was Limbaugh born?\tright-wing talkmeister Rush Limbaugh use\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, right-wing talkmeister Rush Limbaugh use) -> right-wing talkmeister Rush Limbaugh use (3733ms)\nWhen was Limbaugh born?\tsignificant moral character\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does n?t have, significant moral character) -> significant moral character (3733ms)\nWhen was Limbaugh born?\tHeaton\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, so did, Heaton) -> Heaton (3711ms)\nWhen was Limbaugh born?\tthe matter\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (? Limbaugh, did n?t shy away from, the matter) -> the matter (3687ms)\nWhen was Limbaugh born?\tthe reputation\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does threaten, the reputation) -> the reputation (3746ms)\nWhen was Limbaugh born?\tRepublicans\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does the dirty work for, Republicans) -> Republicans (3718ms)\nWhen was Limbaugh born?\tthe subject\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (some research Rush Limbaugh, did on, the subject) -> the subject (3739ms)\nWhen was Limbaugh born?\tthe Democrat\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t like, the Democrat) -> the Democrat (3687ms)\nWhen was Limbaugh born?\tthe Republican Party\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t run, the Republican Party) -> the Republican Party (3746ms)\nWhen was Limbaugh born?\tcallers\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does take, callers) -> callers (3740ms)\nWhen was Limbaugh born?\tn?t\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, n?t) -> n?t (3746ms)\nWhen was Limbaugh born?\ta broad need classroom seats\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, a broad need classroom seats) -> a broad need classroom seats (3711ms)\nWhen was Limbaugh born?\tthe Chevy Volt\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (2011 Rush Limbaugh, does n?t like, the Chevy Volt) -> the Chevy Volt (3733ms)\nWhen was Limbaugh born?\tthe memo\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, clearly did n?t get, the memo) -> the memo (3746ms)\nWhen was Limbaugh born?\ta living\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, do for, a living) -> a living (3696ms)\nWhen was Limbaugh born?\tan effective job\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, really does, an effective job) -> an effective job (3732ms)\nWhen was Limbaugh born?\twhine\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t, whine) -> whine (3719ms)\nWhen was Limbaugh born?\tthe same\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, the same) -> the same (3733ms)\nWhen was Limbaugh born?\tfunders\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done, funders) -> funders (3696ms)\nWhen was Limbaugh born?\tspew\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, do are, spew) -> spew (3696ms)\nWhen was Limbaugh born?\tthe pill\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did any research on, the pill) -> the pill (3719ms)\nWhen was Limbaugh born?\ta cup\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t even throw, a cup) -> a cup (3726ms)\nWhen was Limbaugh born?\tthe Little Timmy moniker\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did borrow, the Little Timmy moniker) -> the Little Timmy moniker (3711ms)\nWhen was Limbaugh born?\tan apology\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did offer, an apology) -> an apology (3719ms)\nWhen was Limbaugh born?\twomen\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t give a damn about, women) -> women (3746ms)\nWhen was Limbaugh born?\t?EIB.?\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does n?t actually work for, ?EIB.?) -> ?EIB.? (3719ms)\nWhen was Limbaugh born?\tdecency\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t care about, decency) -> decency (3746ms)\nWhen was Limbaugh born?\ta good job\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a good job) -> a good job (3732ms)\nWhen was Limbaugh born?\tthe United States\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, the United States) -> the United States (3726ms)\nWhen was Limbaugh born?\tMonday Night Football\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did get fired from, Monday Night Football) -> Monday Night Football (3726ms)\nWhen was Limbaugh born?\tthe commercial time\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does hold back some of, the commercial time) -> the commercial time (3719ms)\nWhen was Limbaugh born?\ta radio program\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a radio program) -> a radio program (3732ms)\nWhen was Limbaugh born?\tstill\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, still) -> still (3740ms)\nWhen was Limbaugh born?\tgirly men\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (the Rush Limbaugh Quilt, do, girly men) -> girly men (3740ms)\nWhen was Limbaugh born?\tthe political right\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does for, the political right) -> the political right (3687ms)\nWhen was Limbaugh born?\tWednesday\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t complain until, Wednesday) -> Wednesday (3740ms)\nWhen was Limbaugh born?\ttaxes\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (my BFF Rush Limbaugh, does n?t like, taxes) -> taxes (3593ms)\nWhen was Limbaugh born?\tinsult\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did more than, insult) -> insult (3696ms)\nWhen was Limbaugh born?\tSaddam\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, Saddam) -> Saddam (3726ms)\nWhen was Limbaugh born?\tcall George Zimmerman\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t, call George Zimmerman) -> call George Zimmerman (3704ms)\nWhen was Limbaugh born?\ta pay-podcast\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, just do, a pay-podcast) -> a pay-podcast (3696ms)\nWhen was Limbaugh born?\tliberal searchlight\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, liberal searchlight) -> liberal searchlight (3711ms)\nWhen was Limbaugh born?\tClinton\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did this to, Clinton) -> Clinton (3740ms)\nWhen was Limbaugh born?\ta nice job one day\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a nice job one day) -> a nice job one day (3704ms)\nWhen was Limbaugh born?\tliberal breton\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, liberal breton) -> liberal breton (3732ms)\nWhen was Limbaugh born?\tthe doubt\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t get the benefit of, the doubt) -> the doubt (3726ms)\nWhen was Limbaugh born?\thenchman cameo\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, is doing today?s, henchman cameo) -> henchman cameo (3719ms)\nWhen was Limbaugh born?\tWilson\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Racist Rush Limbaugh, naturally does n?t think, Wilson) -> Wilson (3704ms)\nWhen was Limbaugh born?\tair\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does on, air) -> air (3726ms)\nWhen was Limbaugh born?\tthe time\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, were doing at, the time) -> the time (3740ms)\nWhen was Limbaugh born?\ta cable TV station\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (@Lady D Rush Limbaugh, does n?t work for, a cable TV station) -> a cable TV station (3696ms)\nWhen was Limbaugh born?\talienate two-thirds\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does his best to, alienate two-thirds) -> alienate two-thirds (3711ms)\nWhen was Limbaugh born?\tthree solid days\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did for, three solid days) -> three solid days (3696ms)\nWhen was Limbaugh born?\tRomney\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (( Limbaugh, does n?t even like, Romney) -> Romney (3696ms)\nWhen was Limbaugh born?\tHoward?s forays\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, do a lot more damage than, Howard?s forays) -> Howard?s forays (3696ms)\nWhen was Limbaugh born?\tan ?ideology\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t inject, an ?ideology) -> an ?ideology (3719ms)\nWhen was Limbaugh born?\tthe lesser-known FM station\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did move to, the lesser-known FM station) -> the lesser-known FM station (3704ms)\nWhen was Limbaugh born?\tFluke?s life\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did some research into, Fluke?s life) -> Fluke?s life (3726ms)\nWhen was Limbaugh born?\theart Hillary\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, really does, heart Hillary) -> heart Hillary (3733ms)\nWhen was Limbaugh born?\tthe attacks\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t stop with, the attacks) -> the attacks (3711ms)\nWhen was Limbaugh born?\tPresident Obama\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (--radio talk-show host Rush Limbaugh, does, President Obama) -> President Obama (3719ms)\nWhen was Limbaugh born?\tan impression of her\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, mocked Sawyer doing, an impression of her) -> an impression of her (3711ms)\nWhen was Limbaugh born?\tYouTube or Facebook\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, apparently does n?t offend, YouTube or Facebook) -> YouTube or Facebook (3704ms)\nWhen was Limbaugh born?\tmen\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (( Limbaugh, pointedly does n?t suggest this to, men) -> men (3732ms)\nWhen was Limbaugh born?\tthe problem\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has nothing to do with, the problem) -> the problem (3740ms)\nWhen was Limbaugh born?\tHillary Clinton\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did for, Hillary Clinton) -> Hillary Clinton (3746ms)\nWhen was Limbaugh born?\tthe brand\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (\" Rush Limbaugh, may have done more damage to, the brand) -> the brand (3732ms)\nWhen was Limbaugh born?\tthe cause\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done great harm to, the cause) -> the cause (3696ms)\nWhen was Limbaugh born?\tStoltenberg\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does have the advantage on, Stoltenberg) -> Stoltenberg (3594ms)\nWhen was Limbaugh born?\tjust call people names\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does nt, just call people names) -> just call people names (3687ms)\nWhen was Limbaugh born?\tvoters\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has done a fine service to, voters) -> voters (3687ms)\nWhen was Limbaugh born?\tJesse Jackson imitation\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, Jesse Jackson imitation) -> Jesse Jackson imitation (3746ms)\nWhen was Limbaugh born?\tRepublican water\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (? Limbaugh, does n?t carry, Republican water) -> Republican water (3696ms)\nWhen was Limbaugh born?\tBush\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did the right thing by, Bush) -> Bush (3711ms)\nWhen was Limbaugh born?\ta radio talk show\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, a radio talk show) -> a radio talk show (3740ms)\nWhen was Limbaugh born?\tthe conservatives\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the conservatives) -> the conservatives (3704ms)\nWhen was Limbaugh born?\t?Machine Gun Preacher ?\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t see, ?Machine Gun Preacher ?) -> ?Machine Gun Preacher ? (3513ms)\nWhen was Limbaugh born?\ta live show\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, a live show) -> a live show (3711ms)\nWhen was Limbaugh born?\ttorture\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done nothing but cheerlead for, torture) -> torture (3704ms)\nWhen was Limbaugh born?\t2000\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did in, 2000) -> 2000 (3726ms)\nWhen was Limbaugh born?\tthe law student\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did issue an apology to, the law student) -> the law student (3687ms)\nWhen was Limbaugh born?\tFluke\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, Fluke) -> Fluke (3726ms)\nWhen was Limbaugh born?\tthe defense\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh?s comments, has anything to do with, the defense) -> the defense (3704ms)\nWhen was Limbaugh born?\tradio segments\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, radio segments) -> radio segments (3733ms)\nWhen was Limbaugh born?\tso\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, so) -> so (3719ms)\nWhen was Limbaugh born?\tyears\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has been doing for, years) -> years (3719ms)\nWhen was Limbaugh born?\tbig bucks\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does the same thing for really, big bucks) -> big bucks (3740ms)\nWhen was Limbaugh born?\tadvertisers\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has to do with, advertisers) -> advertisers (3719ms)\nWhen was Limbaugh born?\tdecades\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (All Rush Limbaugh, has done is work hard for, decades) -> decades (3740ms)\nWhen was Limbaugh born?\tprivate behavior\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t share my opinion about, private behavior) -> private behavior (3733ms)\nWhen was Limbaugh born?\tlast week\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, last week) -> last week (3726ms)\nWhen was Limbaugh born?\tratings\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (1:39 pm Rush Limbaugh, is doing this for, ratings) -> ratings (3687ms)\nWhen was Limbaugh born?\tthe meaning\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t regret, the meaning) -> the meaning (3726ms)\nWhen was Limbaugh born?\ta daily basis\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does on, a daily basis) -> a daily basis (3711ms)\nWhen was Limbaugh born?\tMs. Fluke\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did to, Ms. Fluke) -> Ms. Fluke (3696ms)\nWhen was Limbaugh born?\tHonolulu Council\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, Did, Honolulu Council) -> Honolulu Council (3740ms)\nWhen was Limbaugh born?\tdrugs\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, doing, drugs) -> drugs (3712ms)\nWhen was Limbaugh born?\tThursday\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did his part on, Thursday) -> Thursday (3712ms)\nWhen was Limbaugh born?\tthe NYTimes\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has been doing a good job on, the NYTimes) -> the NYTimes (3704ms)\nWhen was Limbaugh born?\tthe obvious ,\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the obvious ,) -> the obvious , (3740ms)\nWhen was Limbaugh born?\tan excellent , good or fair job\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, is doing, an excellent , good or fair job) -> an excellent , good or fair job (3687ms)\nWhen was Limbaugh born?\tObama\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, Obama) -> Obama (3593ms)\nWhen was Limbaugh born?\tan article\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did a riff on, an article) -> an article (3704ms)\nWhen was Limbaugh born?\tn?t pay\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, n?t pay) -> n?t pay (3746ms)\nWhen was Limbaugh born?\tFine\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, Is Doing Just, Fine) -> Fine (3704ms)\nWhen was Limbaugh born?\ta montage\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, is going to do, a montage) -> a montage (3593ms)\nWhen was Limbaugh born?\tthe word\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did use, the word) -> the word (3719ms)\nWhen was Limbaugh born?\tthe work nobody\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the work nobody) -> the work nobody (3726ms)\nWhen was Limbaugh born?\tthe Democrats\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, so did, the Democrats) -> the Democrats (3719ms)\nWhen was Limbaugh born?\tparodies\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does tired, parodies) -> parodies (3593ms)\nWhen was Limbaugh born?\tpeople names\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (?Limbaugh, does n?t just call, people names) -> people names (3746ms)\nWhen was Limbaugh born?\tDemocrats\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (RUSH LIMBAUGH, do, Democrats) -> Democrats (3704ms)\nWhen was Limbaugh born?\ta sit-down interview\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has done, a sit-down interview) -> a sit-down interview (3704ms)\nWhen was Limbaugh born?\tSandra Fluke\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did to, Sandra Fluke) -> Sandra Fluke (3732ms)\nWhen was Limbaugh born?\tEntergy v. Riverkeeper\t-0.222222222222\tWhen was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t include, Entergy v. Riverkeeper) -> Entergy v. Riverkeeper (3726ms)\nWhen was Limbaugh born?\tany loss\t-0.222222222222\tWhen was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Stories Rush Limbaugh, does n?t seem to have suffered, any loss) -> any loss (3593ms)\nWhen was Limbaugh born?\tan opening\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (an opening, did, Mr Limbaugh) -> an opening (3772ms)\nWhen was Limbaugh born?\tComments Frameshop\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Comments Frameshop, Did, Limbaugh) -> Comments Frameshop (3772ms)\nWhen was Limbaugh born?\tLink\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (Link, do, RUSH Limbaugh) -> Link (3781ms)\nWhen was Limbaugh born?\ta preview\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a preview, did, Rush Limbaugh) -> a preview (3752ms)\nWhen was Limbaugh born?\tthe heck\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the heck, does, Limbaugh) -> the heck (3762ms)\nWhen was Limbaugh born?\tDean\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Dean, even did an impersonation of, Limbaugh snorting coke) -> Dean (3767ms)\nWhen was Limbaugh born?\treply\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (reply, did, LImbaugh attack) -> reply (3781ms)\nWhen was Limbaugh born?\tOralmann\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Oralmann, does, a Limbaugh impression) -> Oralmann (3762ms)\nWhen was Limbaugh born?\tcults\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (cults, do tend to develop, ( Rush Limbaugh anyone) -> cults (3757ms)\nWhen was Limbaugh born?\tthe Republican party\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the Republican party, is doing the same right now with, Limbaugh) -> the Republican party (3767ms)\nWhen was Limbaugh born?\toccasion\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (occasion, does, Rush Limbaugh) -> occasion (3781ms)\nWhen was Limbaugh born?\tUPDATE\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (UPDATE, Did n?t, the Advertisers Drop Rush Limbaugh) -> UPDATE (3776ms)\nWhen was Limbaugh born?\tEven the NFL\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Even the NFL, did n?t want, Limbaugh) -> Even the NFL (3752ms)\nWhen was Limbaugh born?\tthe sisterhood\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the sisterhood, is doing battle with, Rush Limbaugh) -> the sisterhood (3757ms)\nWhen was Limbaugh born?\tpoliticsathome\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (politicsathome, Does, Mr. Limbaugh) -> politicsathome (3762ms)\nWhen was Limbaugh born?\ta really disgusting image\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a really disgusting image, so does, Limbaugh) -> a really disgusting image (3757ms)\nWhen was Limbaugh born?\tBeck and\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Beck and, could do the same to, Limbaugh) -> Beck and (3752ms)\nWhen was Limbaugh born?\tFranken\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Franken, does, a good Rush Limbaugh imitation) -> Franken (3772ms)\nWhen was Limbaugh born?\tOlbermann\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Olbermann, Did, Limbaugh) -> Olbermann (3772ms)\nWhen was Limbaugh born?\tJust another Hot site news\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Just another Hot site news, Does, Rush Limbaugh) -> Just another Hot site news (3777ms)\nWhen was Limbaugh born?\tThe liberals\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (The liberals, did this with, Rush Limbaugh) -> The liberals (3777ms)\nWhen was Limbaugh born?\t06/13/2011\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (06/13/2011, Did, Limbaugh) -> 06/13/2011 (3781ms)\nWhen was Limbaugh born?\tThe Republican board members\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (The Republican board members, wont do anything to, Limbaugh) -> The Republican board members (3757ms)\nWhen was Limbaugh born?\tthe Classes\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the Classes, Does, Rush Limbaugh) -> the Classes (3767ms)\nWhen was Limbaugh born?\tVIAGRA\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (VIAGRA, does sound like, Limbaugh) -> VIAGRA (3767ms)\nWhen was Limbaugh born?\ta regular basis\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a regular basis, does, Limbaugh) -> a regular basis (3757ms)\nWhen was Limbaugh born?\thome\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (home, so did, Rush Limbaugh) -> home (3777ms)\nWhen was Limbaugh born?\twodiej\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (wodiej, Did, Levin or Limbaugh endorse anyone) -> wodiej (3772ms)\nWhen was Limbaugh born?\tHere?s one\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Here?s one, obviously does n?t listen to, Limbaugh) -> Here?s one (3762ms)\nWhen was Limbaugh born?\tBarack ? Obama\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Barack ? Obama, did n?t take, Limbaugh?s bait) -> Barack ? Obama (3776ms)\nWhen was Limbaugh born?\tRush Limbaugh\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Rush Limbaugh, does, right-wing talkmeister Rush Limbaugh use) -> Rush Limbaugh (3746ms)\nWhen was Limbaugh born?\t12 August 2010 12:55\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (12 August 2010 12:55, Do, Rush Limbaugh) -> 12 August 2010 12:55 (3781ms)\nWhen was Limbaugh born?\tboard\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (board, did, Limbaugh) -> board (3762ms)\nWhen was Limbaugh born?\tBuzzFlash\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (BuzzFlash, does, Rush Limbaugh play) -> BuzzFlash (3772ms)\nWhen was Limbaugh born?\tterrorists\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (terrorists, does, Rush Limbaugh) -> terrorists (3772ms)\nWhen was Limbaugh born?\tJust\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (Just, do famed, women-bashers Rush Limbaugh) -> Just (3772ms)\nWhen was Limbaugh born?\tmore ]\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (more ], Did, some Rush Limbaugh dittohead call) -> more ] (3781ms)\nWhen was Limbaugh born?\tmuch influence\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (much influence, did, Rush Limbaugh) -> much influence (3762ms)\nWhen was Limbaugh born?\tthe destruction\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the destruction, done to, Limbaugh) -> the destruction (3752ms)\nWhen was Limbaugh born?\tthe answer\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the answer, has to do with, Rush Limbaugh) -> the answer (3772ms)\nWhen was Limbaugh born?\tKPUA\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (KPUA, does have three marvelous hours of, Rush Limbaugh) -> KPUA (3777ms)\nWhen was Limbaugh born?\tChafets\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Chafets, did ask, Limbaugh) -> Chafets (3777ms)\nWhen was Limbaugh born?\taudience\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (audience, would do serious damage to, Limbaugh) -> audience (3757ms)\nWhen was Limbaugh born?\t127 other followers\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (127 other followers, do, Limbaugh) -> 127 other followers (3762ms)\nWhen was Limbaugh born?\tthe public protest\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the public protest, did to, Limbaugh) -> the public protest (3767ms)\nWhen was Limbaugh born?\tanyone else\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (anyone else, does n?t fit the mold of, Mr. Limbaugh?s version) -> anyone else (3746ms)\nWhen was Limbaugh born?\tPresident Reagan\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (President Reagan, did send, Limbaugh) -> President Reagan (3762ms)\nWhen was Limbaugh born?\tfans\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (fans, do listen to, Limbaugh ? fans) -> fans (3777ms)\nWhen was Limbaugh born?\tRush\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Rush, did n?t go from, Rush Limbaugh) -> Rush (3762ms)\nWhen was Limbaugh born?\tBush Country\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Bush Country, makes do with, Rush Limbaugh) -> Bush Country (3777ms)\nWhen was Limbaugh born?\tracist\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (racist, does, n?t Limbaugh) -> racist (3762ms)\nWhen was Limbaugh born?\tthe firm\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the firm, does n?t want to continue, Limbaugh?s advertising) -> the firm (3772ms)\nWhen was Limbaugh born?\tThe better question\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (The better question, does, Rush Limbaugh) -> The better question (3781ms)\nWhen was Limbaugh born?\ta *huge* following\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (a *huge* following, does, Rush Limbaugh) -> a *huge* following (3772ms)\nWhen was Limbaugh born?\tInsurance\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Insurance, did tape, Limbaugh) -> Insurance (3767ms)\nWhen was Limbaugh born?\tthe the health care bill\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (the the health care bill, did, Rush Limbaugh) -> the the health care bill (3757ms)\nWhen was Limbaugh born?\tspinnerator\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (spinnerator, does, Hannity , Limbaugh , Curic , Walters) -> spinnerator (3757ms)\nWhen was Limbaugh born?\tProcedure\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Procedure, Does, Limbaugh) -> Procedure (3762ms)\nWhen was Limbaugh born?\tno time\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (no time, did, Rush Limbaugh) -> no time (3772ms)\nWhen was Limbaugh born?\tthe Columbia accident\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (the Columbia accident, is largely the doing of, Rush Limbaugh) -> the Columbia accident (3777ms)\nWhen was Limbaugh born?\tBill Maher\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Bill Maher, have to do with, Rush Limbaugh) -> Bill Maher (3772ms)\nWhen was Limbaugh born?\tZell Miller\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Zell Miller, does to, Rush Limbaugh?s medicine cabinet) -> Zell Miller (3776ms)\nWhen was Limbaugh born?\tAnswer\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Answer, does rush, limbaugh need viagra) -> Answer (3762ms)\nWhen was Limbaugh born?\t2002 *\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (2002 *, do, Rush Limbaugh) -> 2002 * (3772ms)\nWhen was Limbaugh born?\tgumdrops\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (gumdrops, did, the decidedly nonfictional Rush Limbaugh) -> gumdrops (3762ms)\nWhen was Limbaugh born?\tQuestions\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Questions, Does, Rush Limbaugh) -> Questions (3757ms)\nWhen was Limbaugh born?\tcompassion\t-0.333333333333\tWhen was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (compassion, does, Rush Limbaugh) -> compassion (3772ms)\nWhen was Limbaugh born?\ta hardscrabble existence\t-1.9999999999940001\tWhen was Limbaugh born? -> $x: ($x, invent, limbaugh) -> (a hardscrabble existence, was totally invented by, Limbaugh) -> a hardscrabble existence (3789ms)\nWhen was Limbaugh born?\tthe talk-radio format\t-1.9999999999940001\tWhen was Limbaugh born? -> $x: (limbaugh, invent, $x) -> (Limbaugh more or less, invented, the talk-radio format) -> the talk-radio format (3789ms)\nWhen was Limbaugh born?\tthe reprehensible slur ?feminazi\t-1.9999999999940001\tWhen was Limbaugh born? -> $x: (limbaugh, invent, $x) -> (Limbaugh, invented, the reprehensible slur ?feminazi) -> the reprehensible slur ?feminazi (3789ms)\nWhen was Limbaugh born?\ta couple weeks\t-1.9999999999940001\tWhen was Limbaugh born? -> $x: (rush limbaugh, die, $x) -> (Rush Limbaugh, died, a couple weeks) -> a couple weeks (3789ms)\nWhen was Limbaugh born?\ta piece\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, looks like, a piece) -> a piece (3795ms)\nWhen was Limbaugh born?\ta new Kingfish\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, is starting to look like, a new Kingfish) -> a new Kingfish (3795ms)\nWhen was Limbaugh born?\ta flaming liberal\t-2.111111111103\tWhen was Limbaugh born? -> $x: (rush limbaugh, look like, $x) -> (Rush Limbaugh, look like, a flaming liberal) -> a flaming liberal (3792ms)\nWhen was Limbaugh born?\tbushfailure\t-2.111111111103\tWhen was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (bushfailure, Looks like, Rush Limbaugh) -> bushfailure (3795ms)\nWhen was Limbaugh born?\tthe Teletubbies\t-2.111111111103\tWhen was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (the Teletubbies, looks a lot like, Rush Limbaugh) -> the Teletubbies (3796ms)\nWhen was Limbaugh born?\ta hulking man\t-2.111111111103\tWhen was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (a hulking man, looked a bit like, Rush Limbaugh) -> a hulking man (3795ms)\nWhen was Limbaugh born?\tBill Clinton\t-2.111111111103\tWhen was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (Bill Clinton, look like, Rush Limbaugh) -> Bill Clinton (3795ms)\nWhen was Limbaugh born?\tthe political landscape\t-2.111111111103\tWhen was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (the political landscape, would look like without, Limbaugh) -> the political landscape (3789ms)\nWhen was Limbaugh born?\tan independent thinker\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, an independent thinker) -> an independent thinker (3792ms)\nWhen was Limbaugh born?\tTed Kennedy\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, looks like, Ted Kennedy) -> Ted Kennedy (3795ms)\nWhen was Limbaugh born?\ta mob\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (This anti-Limbaugh movement, is starting to look like, a mob) -> a mob (3792ms)\nWhen was Limbaugh born?\tSusan B. Anthony\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, Susan B. Anthony) -> Susan B. Anthony (3795ms)\nWhen was Limbaugh born?\ta nice guy\t-2.111111111103\tWhen was Limbaugh born? -> $x: (rush limbaugh, look like, $x) -> (Rush Limbaugh, looks like, a nice guy) -> a nice guy (3795ms)\nWhen was Limbaugh born?\tthe Minnesota State Fair\t-2.111111111103\tWhen was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (the Minnesota State Fair, looked a whole lot like, Limbaugh) -> the Minnesota State Fair (3789ms)\nWhen was Limbaugh born?\ta fool\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Limbaugh, was made to look like, a fool) -> a fool (3792ms)\nWhen was Limbaugh born?\tsugar and honey\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, sugar and honey) -> sugar and honey (3792ms)\nWhen was Limbaugh born?\ta beached whale\t-2.111111111103\tWhen was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Limbaugh, looks like, a beached whale) -> a beached whale (3795ms)\nWhen was Limbaugh born?\tGuy\t-2.111111111103\tWhen was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (Guy, looks like, a rush limbaugh listener) -> Guy (3792ms)\nWhen was Limbaugh born?\ttypes\t-2.111111111103\tWhen was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (types, look like, Rush Limbaugh) -> types (3792ms)\nWhen was Limbaugh born?\tMichelle Sixta\t-2.111111111104\tWhen was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Michelle Sixta) -> Michelle Sixta (3801ms)\nWhen was Limbaugh born?\tthe same person\t-2.111111111104\tWhen was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, were ever married to, the same person) -> the same person (3798ms)\nWhen was Limbaugh born?\ttwo years\t-2.111111111104\tWhen was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (61-year-old Limbaugh, has been married less than, two years) -> two years (3801ms)\nWhen was Limbaugh born?\t4 times\t-2.111111111104\tWhen was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (presumably Rush Limbaugh, has been married, 4 times) -> 4 times (3798ms)\nWhen was Limbaugh born?\tfour times\t-2.111111111104\tWhen was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Mr. Limbaugh, has been married, four times) -> four times (3801ms)\nWhen was Limbaugh born?\tany woman\t-2.111111111104\tWhen was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (any woman, have married, Rush Limbaugh) -> any woman (3801ms)\nWhen was Limbaugh born?\tJane Fonda\t-2.111111111104\tWhen was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (Jane Fonda, marries, Rush Limbaugh) -> Jane Fonda (3801ms)\nWhen was Limbaugh born?\tthe very first time\t-2.111111111104\tWhen was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, was married for, the very first time) -> the very first time (3801ms)\nWhen was Limbaugh born?\tDavid Limbaugh\t-2.111111111104\tWhen was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (David Limbaugh, has been married to, Lisa Limbaugh) -> David Limbaugh (3798ms)\nWhen was Limbaugh born?\tLisa Limbaugh\t-2.111111111104\tWhen was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (David Limbaugh, has been married to, Lisa Limbaugh) -> Lisa Limbaugh (3803ms)\nWhen was Limbaugh born?\ta blonde bombshell\t-2.111111111104\tWhen was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (?Rush Limbaugh, married, a blonde bombshell) -> a blonde bombshell (3803ms)\nWhen was Limbaugh born?\tthe fourth time\t-2.111111111104\tWhen was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, gets married for, the fourth time) -> the fourth time (3803ms)\nWhen was Limbaugh born?\tKathryn Rogers\t-2.111111111104\tWhen was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Kathryn Rogers) -> Kathryn Rogers (3798ms)\nWhen was Limbaugh born?\tMarta Fitzgerald\t-2.111111111104\tWhen was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Marta Fitzgerald) -> Marta Fitzgerald (3801ms)\nWhen was Limbaugh born?\tJune 5 , 2010\t-2.111111111104\tWhen was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Rush Limbaugh, were married on, June 5 , 2010) -> June 5 , 2010 (3798ms)\nWho was the first person to set foot on the moon?\tNeil Armstrong\t0.66666666668\tWho was the first person to set foot on the moon? -> $x: ($x, be first person to set foot on, moon) -> (Neil Armstrong, was the first person to set foot on, the moon) -> Neil Armstrong (629ms)\nWho was the first person to set foot on the moon?\tBuzz Lightyear\t0.66666666668\tWho was the first person to set foot on the moon? -> $x: ($x, be first person to set foot on, moon) -> (Buzz Lightyear, was the first person to set foot on, the moon) -> Buzz Lightyear (627ms)\nWho was the first person to set foot on the moon?\tThe Commander\t0.66666666668\tWho was the first person to set foot on the moon? -> $x: ($x, be first person to set foot on, moon) -> (The Commander, was the first person to set foot on, the Moon) -> The Commander (629ms)\nWho was the first person to set foot on the moon?\tthe moon\t-1.8888888888909998\tWho was the first person to set foot on the moon? -> $x: (neil armstrong, be first person to set foot on, $x) -> (Neil Armstrong, was the first person to set foot on, the moon) -> the moon (727ms)\nWhat does laser stand for?\tALICE ALICE\t0.7777777777789999\tWhat does laser stand for? -> $x: ($x, be stand for, laser) -> (ALICE ALICE, is an acronym standing for, Accelerators and Lasers) -> ALICE ALICE (1544ms)\nWhat does laser stand for?\tLaser light\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, Laser light) -> Laser light (1543ms)\nWhat does laser stand for?\ta word\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (laser, actually stands for, a word) -> a word (1913ms)\nWhat does laser stand for?\t?Radiation ?\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (LASER, stands for, ?Radiation ?) -> ?Radiation ? (1940ms)\nWhat does laser stand for?\tlight amplification\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (laser ?, stands for, light amplification) -> light amplification (1847ms)\nWhat does laser stand for?\tfreedom\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (Laser direct structuring, stands for, freedom) -> freedom (1940ms)\nWhat does laser stand for?\tLove\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (LASERS, stands for, Love) -> Love (1733ms)\nWhat does laser stand for?\tLaser\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (Laser eye surgery, stands for, Laser) -> Laser (1940ms)\nWhat does laser stand for?\tIntense Pulsed Light\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (| Laser Hair Removal IPL, stands for, Intense Pulsed Light) -> Intense Pulsed Light (1733ms)\nWhat does laser stand for?\tlight amphlication\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (The laser, stands for, light amphlication) -> light amphlication (1847ms)\nWhat does laser stand for?\t?microwave amplification\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (a ?laser, stands for, ?microwave amplification) -> ?microwave amplification (1544ms)\nWhat does laser stand for?\tLight Amplified\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, Light Amplified) -> Light Amplified (1914ms)\nWhat does laser stand for?\tmore information\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (the Laser Engineer, stand for, more information) -> more information (1846ms)\nWhat does laser stand for?\tunprecedented measuring speed\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (VERTILAS laser diodes, stand for, unprecedented measuring speed) -> unprecedented measuring speed (1940ms)\nWhat does laser stand for?\t?light amplification\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, ?light amplification) -> ?light amplification (1913ms)\nWhat does laser stand for?\tLight  Amplification\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (laser, stands for, Light  Amplification) -> Light  Amplification (1846ms)\nWhat does laser stand for?\tquality\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (Trotec?s laser engravers and cutters, stand for, quality) -> quality (1544ms)\nWhat does laser stand for?\tLight wave Amplification\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (the word laser, stands for, Light wave Amplification) -> Light wave Amplification (1940ms)\nWhat does laser stand for?\tlove and compassion\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (Lasers, stand for, love and compassion) -> love and compassion (1733ms)\nWhat does laser stand for?\tLight Amplification\t0.666666666669\tWhat does laser stand for? -> $x: (laser, be stand for, $x) -> (LASER, is an acronym standing for, Light Amplification) -> Light Amplification (1913ms)\nWhat does laser stand for?\tthe use\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, the use) -> the use (1913ms)\nWhat does laser stand for?\t?Light Amplification\t0.666666666669\tWhat does laser stand for? -> $x: (laser, stand for, $x) -> (The word ?laser ?, stands for, ?Light Amplification) -> ?Light Amplification (1940ms)\nWhat does laser stand for?\tthe path\t0.555555555558\tWhat does laser stand for? -> $x: (laser, stand in, $x) -> (the lasers, unfortunately stood in, the path) -> the path (1940ms)\nWhat does laser stand for?\tLISA\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LISA, stands for, Laser Interferometer Space Antenna) -> LISA (2588ms)\nWhat does laser stand for?\tMOLA\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (MOLA, stands for, Mars Orbiter Laser Altimeter) -> MOLA (2621ms)\nWhat does laser stand for?\tLASIK LASIK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK LASIK, stands for, Laser Assisted In-Situ Keratomileusis) -> LASIK LASIK (2631ms)\nWhat does laser stand for?\tLANAP\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LANAP, stands for, Laser Assisted New Attachment Procedure) -> LANAP (2588ms)\nWhat does laser stand for?\tThe word LASIK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (The word LASIK, stands for, Laser Assisted) -> The word LASIK (2621ms)\nWhat does laser stand for?\tEpithelial and Lasik\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (Epithelial and Lasik, stands for, Laser) -> Epithelial and Lasik (2311ms)\nWhat does laser stand for?\tLasik Eye Surgery LASIK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik Eye Surgery LASIK, stands for, Laser-Assisted) -> Lasik Eye Surgery LASIK (2621ms)\nWhat does laser stand for?\tSLS\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (SLS, stands for, selective laser sintering) -> SLS (2391ms)\nWhat does laser stand for?\tLDS\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LDS, stands for, Laser Direct Structuring) -> LDS (2249ms)\nWhat does laser stand for?\tthe surgery\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (the surgery, stands for, Laser Assisted) -> the surgery (2249ms)\nWhat does laser stand for?\tThe acronym\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (The acronym, stands for, laser-assisted) -> The acronym (1975ms)\nWhat does laser stand for?\tCML\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (CML, stands for, Chirp Managed Laser) -> CML (2631ms)\nWhat does laser stand for?\tLASIK Surgery LASIK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK Surgery LASIK, stands for, Laser-Assisted) -> LASIK Surgery LASIK (2588ms)\nWhat does laser stand for?\ttext/html LASEK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (text/html LASEK, stands for, laser epithelial keratomileusis) -> text/html LASEK (2391ms)\nWhat does laser stand for?\tclear Lasik\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (clear Lasik, stands for, Laser-Assisted) -> clear Lasik (2310ms)\nWhat does laser stand for?\tAVLIS\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (AVLIS, stands for, Atomic Vapor Laser Isotope Separation) -> AVLIS (2392ms)\nWhat does laser stand for?\tMILES\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (MILES, stands for, Multiple Integrated Laser Engagement System) -> MILES (1975ms)\nWhat does laser stand for?\tLANAP?\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LANAP?, stands for, Laser Assisted New Attachment Procedure) -> LANAP? (2621ms)\nWhat does laser stand for?\tEVLT\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (EVLT, stands for, Endovenous Laser Treatment) -> EVLT (2621ms)\nWhat does laser stand for?\tLASIK surgery\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK surgery, stands for, Laser Assisted In-Situ Keratomileusis) -> LASIK surgery (2417ms)\nWhat does laser stand for?\tLasik\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik, stands for, Laser in-situ Keratomileusis) -> Lasik (2621ms)\nWhat does laser stand for?\twhish\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (whish, stands for, airborne laser optical link) -> whish (2631ms)\nWhat does laser stand for?\tSLT\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (SLT, stands for, Selective Laser Trabeculoplasty) -> SLT (2621ms)\nWhat does laser stand for?\tMALDI\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (MALDI, stands for, Matrix Assisted Laser Desorption) -> MALDI (2620ms)\nWhat does laser stand for?\tCTLM\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (CTLM, stands for, Computed Tomography Laser Mammography) -> CTLM (2250ms)\nWhat does laser stand for?\ta medical term\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (a medical term, stands for, Laser Assisted) -> a medical term (2587ms)\nWhat does laser stand for?\tLLLT\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LLLT, stands for, Low Level Laser Therapy) -> LLLT (2248ms)\nWhat does laser stand for?\tthe LASIK procedure\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (the LASIK procedure, stands for, Laser-Assisted) -> the LASIK procedure (2249ms)\nWhat does laser stand for?\tSlimLipo\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (SlimLipo, stands for, Selective Laser Induced Melting) -> SlimLipo (2588ms)\nWhat does laser stand for?\tThe term LASIK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (The term LASIK, stands for, Laser Assisted) -> The term LASIK (2621ms)\nWhat does laser stand for?\tLADAR\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LADAR, stands for, Laser Detection) -> LADAR (1975ms)\nWhat does laser stand for?\tHELEX\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (HELEX, stands for, High Energy Laser Experimental) -> HELEX (2311ms)\nWhat does laser stand for?\tLD\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LD, stands for, LaserDisc) -> LD (2391ms)\nWhat does laser stand for?\tLASEK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LASEK, stands for, Laser Assisted Sub-Epithelial Keratomileus) -> LASEK (2587ms)\nWhat does laser stand for?\tLaser eye surgery\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (Laser eye surgery, stands for, Laser) -> Laser eye surgery (2311ms)\nWhat does laser stand for?\tNALA\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (NALA, stands for, Non Ablative Laser Ablation) -> NALA (2311ms)\nWhat does laser stand for?\tan acronym\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (an acronym, stands for, Laser-assisted) -> an acronym (1975ms)\nWhat does laser stand for?\tthe most common\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (the most common, stands for, laser) -> the most common (2311ms)\nWhat does laser stand for?\tThe word lasik\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (The word lasik, stands for, laser) -> The word lasik (2588ms)\nWhat does laser stand for?\tLasik eye surgery\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik eye surgery, stands for, a laser) -> Lasik eye surgery (2621ms)\nWhat does laser stand for?\tVCSEL\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (VCSEL, stands for, Vertical-Cavity Surface-Emitting Laser) -> VCSEL (2588ms)\nWhat does laser stand for?\tLASIK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK, stands for, laser-assisted) -> LASIK (2631ms)\nWhat does laser stand for?\tThe SDL\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (The SDL, stands for, Semiconductor Diode Laser) -> The SDL (2588ms)\nWhat does laser stand for?\tdeviantART ALR\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (deviantART ALR, stands for, Automatic Laser Rifle) -> deviantART ALR (2621ms)\nWhat does laser stand for?\tlasik surgery ?LASIK\t0.33333333334399995\tWhat does laser stand for? -> $x: ($x, stand for, laser) -> (lasik surgery ?LASIK, stands for, Laser-Assisted) -> lasik surgery ?LASIK (2249ms)\nWhat does laser stand for?\tlaser adjustment\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (green laser beam tips, are so well known for, laser adjustment) -> laser adjustment (2632ms)\nWhat does laser stand for?\tthe sophistication\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (Laser treatments, are known for, the sophistication) -> the sophistication (2632ms)\nWhat does laser stand for?\tlaser hair removal\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (Laser Cosmetica, is well known for, laser hair removal) -> laser hair removal (2631ms)\nWhat does laser stand for?\tthe highest level\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (Leica Rugby laser levels, are known for, the highest level) -> the highest level (2632ms)\nWhat does laser stand for?\tlaser-cutting\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (Laser Excel, is well known industry-wide for, laser-cutting) -> laser-cutting (2632ms)\nWhat does laser stand for?\tgetting rid of unwanted hair\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (Laser Hair Removal, is known for, getting rid of unwanted hair) -> getting rid of unwanted hair (2631ms)\nWhat does laser stand for?\tscar sufferers\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (laser treatment, is a well-known solution for, scar sufferers) -> scar sufferers (2631ms)\nWhat does laser stand for?\tunusual behavior\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (lasers, are known for, unusual behavior) -> unusual behavior (2631ms)\nWhat does laser stand for?\tlong lasting ends\t0.33333333333599996\tWhat does laser stand for? -> $x: (laser, be know for, $x) -> (The laser treatment Greater, is known for, long lasting ends) -> long lasting ends (2631ms)\nWhat does laser stand for?\tHigh-field magnets\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (High-field magnets, now stand beside, lasers and microscopes) -> High-field magnets (2662ms)\nWhat does laser stand for?\tHarken\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (Harken, have a long standing relationship with, the Laser fleet) -> Harken (2642ms)\nWhat does laser stand for?\tcontrast\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (contrast, just stands there with, his laser-eyes) -> contrast (2672ms)\nWhat does laser stand for?\tthe baseline EO payload DCoMPASS\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (the baseline EO payload DCoMPASS, Stand off, EO/IR/Laser system) -> the baseline EO payload DCoMPASS (2662ms)\nWhat does laser stand for?\thigh-field magnets\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (high-field magnets, stand beside, lasers and microscopes) -> high-field magnets (2642ms)\nWhat does laser stand for?\tHan and Luke\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (Han and Luke, stand fast with, their laser pistols) -> Han and Luke (2672ms)\nWhat does laser stand for?\tthreshold\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (threshold, has been a long-standing question in, laser theory) -> threshold (2652ms)\nWhat does laser stand for?\tVentana Research\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (Ventana Research, stands out in, its laser-sharp focus) -> Ventana Research (2662ms)\nWhat does laser stand for?\tthe ImageREt 3600\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (the ImageREt 3600, stand out against, other laser printers) -> the ImageREt 3600 (2682ms)\nWhat does laser stand for?\tSandblasting cuts\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (Sandblasting cuts, stands out more than, laser engraving) -> Sandblasting cuts (2652ms)\nWhat does laser stand for?\tthe Laser double-looping coaster\t0.22222222222599997\tWhat does laser stand for? -> $x: ($x, stand, laser) -> (the Laser double-looping coaster, stands, Little Laser) -> the Laser double-looping coaster (2632ms)\nWhat does laser stand for?\tthe face of the sign\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (laser cut numbers, stand 1/2 inch off, the face of the sign) -> the face of the sign (2701ms)\nWhat does laser stand for?\ta good buy\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the LaserJet CP2025dn, stands as, a good buy) -> a good buy (2702ms)\nWhat does laser stand for?\tmagnets\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (The laser, features a free-standing base with, magnets) -> magnets (2724ms)\nWhat does laser stand for?\tthe leading finest solution\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (Laser Hair Removal, stands out as, the leading finest solution) -> the leading finest solution (2717ms)\nWhat does laser stand for?\t12 % electrical power\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (a green DPSS laser, stands at about, 12 % electrical power) -> 12 % electrical power (2724ms)\nWhat does laser stand for?\tthe competition\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (professional line laser, stands out from, the competition) -> the competition (2702ms)\nWhat does laser stand for?\tpencil markups\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the long run laser, stands up to, pencil markups) -> pencil markups (2709ms)\nWhat does laser stand for?\tthe brightest\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the laser dot, just might stand out as, the brightest) -> the brightest (2709ms)\nWhat does laser stand for?\tone more example\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (laser multifunctional printer, stands as, one more example) -> one more example (2702ms)\nWhat does laser stand for?\ttaller\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the HP Color LaserJet 3800dn, will stand even, taller) -> taller (2692ms)\nWhat does laser stand for?\tLittle Laser\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the Laser double-looping coaster, stands, Little Laser) -> Little Laser (2709ms)\nWhat does laser stand for?\ttime\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (this green laser pointer, stand the test of, time) -> time (2709ms)\nWhat does laser stand for?\tsuccess\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (laser, have been the long-standing measure of, success) -> success (2724ms)\nWhat does laser stand for?\tthe most utilized\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the laser printer, stands out as being, the most utilized) -> the most utilized (2724ms)\nWhat does laser stand for?\tthe rest\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (this laser, really does stand out above, the rest) -> the rest (2709ms)\nWhat does laser stand for?\twaves\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (laser, standing, waves) -> waves (2709ms)\nWhat does laser stand for?\tstimulated emission of radiation\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (Laser, stands by, stimulated emission of radiation) -> stimulated emission of radiation (2724ms)\nWhat does laser stand for?\talone sources\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (deep UV lasers, stand, alone sources) -> alone sources (2709ms)\nWhat does laser stand for?\tthe ring\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the Celtic laser, stand out from, the ring) -> the ring (2717ms)\nWhat does laser stand for?\tlittle Artoo\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (his long laser rifle slung, stands before, little Artoo) -> little Artoo (2692ms)\nWhat does laser stand for?\tshoes\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (laser cut pumps, are all stand out, shoes) -> shoes (2717ms)\nWhat does laser stand for?\tvibratory energy\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (lasers, stands, vibratory energy) -> vibratory energy (2709ms)\nWhat does laser stand for?\ta high position\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (blue laser pen, is usually standing, a high position) -> a high position (2717ms)\nWhat does laser stand for?\tthe proof\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (?The new airborne laser scanning system, stood, the proof) -> the proof (2724ms)\nWhat does laser stand for?\tthe forefront\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (green laser pointer, has been standing at, the forefront) -> the forefront (2717ms)\nWhat does laser stand for?\ta heavier model\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the HP LaserJet 4050n, stands out as, a heavier model) -> a heavier model (2724ms)\nWhat does laser stand for?\ta building\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the Blue Laser Commander, is standing next to, a building) -> a building (2724ms)\nWhat does laser stand for?\tcorrosion\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (These pipe lasers, stand up to, corrosion) -> corrosion (2709ms)\nWhat does laser stand for?\t1/2 inch\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (laser cut numbers, stand, 1/2 inch) -> 1/2 inch (2692ms)\nWhat does laser stand for?\tmanual height adjustment\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (a high-precision laser, stand with, manual height adjustment) -> manual height adjustment (2702ms)\nWhat does laser stand for?\tthe top jammer\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (The actual Laser Interceptor, stands out as, the top jammer) -> the top jammer (2692ms)\nWhat does laser stand for?\tfew seconds\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (Laser PSU, can stand, few seconds) -> few seconds (2692ms)\nWhat does laser stand for?\ta bit\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the lasers, stand out, a bit) -> a bit (2702ms)\nWhat does laser stand for?\tUV rays\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (the printed laser technology, stands up to, UV rays) -> UV rays (2709ms)\nWhat does laser stand for?\tthe best possible solution\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (Laser treatment, stands out as, the best possible solution) -> the best possible solution (2709ms)\nWhat does laser stand for?\tthe leading jammer\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (The actual Laser Interceptor, stands out as, the leading jammer) -> the leading jammer (2717ms)\nWhat does laser stand for?\tone metre high\t0.11111111111599997\tWhat does laser stand for? -> $x: (laser, stand, $x) -> (The patented in-line laser equipment, stands, one metre high) -> one metre high (2702ms)\nWhat does laser stand for?\tthe end\t0.11111111111499994\tWhat does laser stand for? -> $x: ($x, symbolize, laser) -> (the end, has been symbolized as, LASER LIGHT POWER) -> the end (2730ms)\nWhat does laser stand for?\tMicrowave Amplification\t0.111111111111\tWhat does laser stand for? -> $x: (maser, stand for, $x) -> (Maser, stands for, Microwave Amplification) -> Microwave Amplification (2746ms)\nWhat does laser stand for?\t?means\t0.111111111111\tWhat does laser stand for? -> $x: (maser, stand for, $x) -> (maser, stood for, ?means) -> ?means (2745ms)\nWhat does laser stand for?\tthe few times\t4.999944902550624E-12\tWhat does laser stand for? -> $x: (laser, symbolize, $x) -> (Our laser-etched logo, symbolizes, the few times) -> the few times (2754ms)\nWhat does laser stand for?\tunique\t-0.444444444442\tWhat does laser stand for? -> $x: (maser, stand, $x) -> (Chris Maser, stands out as, unique) -> unique (2812ms)\nWhere is John Wayne airport?\tan unincorporated area\t0.555555555555\tWhere is John Wayne airport? -> $x: (john wayne, be airport in, $x) -> (John Wayne Airport, is an airport in, an unincorporated area) -> an unincorporated area (2885ms)\nWhere is John Wayne airport?\tORANGE COUNTY\t0.555555555555\tWhere is John Wayne airport? -> $x: (john wayne, be airport in, $x) -> (john wayne airport, is an airport in the city, ORANGE COUNTY) -> ORANGE COUNTY (2886ms)\nWhere is John Wayne airport?\tSanta Ana\t0.111111111109\tWhere is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Santa Ana) -> Santa Ana (2886ms)\nWhere is John Wayne airport?\tIrvine\t0.111111111109\tWhere is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Irvine) -> Irvine (2885ms)\nWhere is John Wayne airport?\tOrange County\t0.111111111109\tWhere is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Orange County) -> Orange County (2886ms)\nWhere is John Wayne airport?\ta classroom\t-0.0\tWhere is John Wayne airport? -> $x: (john wayne airport, have use of, $x) -> (the John Wayne Airport, has donated the use of, a classroom) -> a classroom (3124ms)\nWhere is John Wayne airport?\tUnited States of America\t-0.0\tWhere is John Wayne airport? -> $x: ($x, contain, john wayne airport) -> (United States of America, Contains, John Wayne Airport) -> United States of America (2980ms)\nWhere is John Wayne airport?\tchildren\t-0.0\tWhere is John Wayne airport? -> $x: (john wayne airport, do, $x) -> (John Wayne Airport, did have a lot of, children) -> children (2905ms)\nWhere is John Wayne airport?\tthe communities\t-0.0\tWhere is John Wayne airport? -> $x: ($x, surround, john wayne airport) -> (the communities, surrounding, John Wayne Airport) -> the communities (3076ms)\nWhere is John Wayne airport?\ta 5 percent bump\t-0.0\tWhere is John Wayne airport? -> $x: ($x, found, john wayne airport) -> (a 5 percent bump, was found near, John Wayne Airport) -> a 5 percent bump (3123ms)\nWhere is John Wayne airport?\tUC Irvine shuttle service\t-0.0\tWhere is John Wayne airport? -> $x: ($x, go, john wayne airport) -> (UC Irvine shuttle service, goes only to, John Wayne Airport) -> UC Irvine shuttle service (2886ms)\nWhere is John Wayne airport?\tOrange\t-0.0\tWhere is John Wayne airport? -> $x: ($x, contain, john wayne airport) -> (Orange, Contains, John Wayne Airport) -> Orange (2981ms)\nWhere is John Wayne airport?\tearly spring\t-0.111111111112\tWhere is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (John Wayne Airport, were performed in, early spring) -> early spring (3687ms)\nWhere is John Wayne airport?\tLA\t-0.111111111112\tWhere is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (John Wayne Airport ?, is the closest in, LA) -> LA (3200ms)\nWhere is John Wayne airport?\tdistance\t-0.111111111112\tWhere is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (the John Wayne Airport, is in walking, distance) -> distance (3200ms)\nWhere is John Wayne airport?\tengine problems\t-0.222222222222\tWhere is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (John Wayne Airport, was being examined for, engine problems) -> engine problems (3688ms)\nWhere is John Wayne airport?\ta fee\t-0.222222222222\tWhere is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (John Wayne Airports, are available for, a fee) -> a fee (3687ms)\nWhere is John Wayne airport?\tgroups\t-0.222222222222\tWhere is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (Our John Wayne Airport limousines, are perfect for, groups) -> groups (3687ms)\nWhere is John Wayne airport?\tRental cars\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Rental cars, are available near, John Wayne Airport) -> Rental cars (3728ms)\nWhere is John Wayne airport?\tdirect access\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (direct access, is only 20 minutes from, John Wayne Airport) -> direct access (3712ms)\nWhere is John Wayne airport?\tthe plane\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the plane, was from, John Wayne Airport) -> the plane (3728ms)\nWhere is John Wayne airport?\tOrange County Airport\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Orange County Airport, was renamed, John Wayne Airport) -> Orange County Airport (3728ms)\nWhere is John Wayne airport?\tAnaheim\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Anaheim, is equidistant from, both John Wayne Airport) -> Anaheim (3725ms)\nWhere is John Wayne airport?\tthe immediate answer\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the immediate answer, is, John Wayne Airport) -> the immediate answer (3726ms)\nWhere is John Wayne airport?\tThe event\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The event, will be held at, John Wayne Orange County Airport) -> The event (3725ms)\nWhere is John Wayne airport?\tAllied Rent\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Allied Rent, is, just 5 minuets away from John Wayne airport) -> Allied Rent (3712ms)\nWhere is John Wayne airport?\ta third Terminal C\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (a third Terminal C, is opening at, John Wayne Airport) -> a third Terminal C (3725ms)\nWhere is John Wayne airport?\tUCI. UCI\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (UCI. UCI, is located close to, John Wayne Airport) -> UCI. UCI (3723ms)\nWhere is John Wayne airport?\tthe city\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the city, is closely located to, John Wayne airport offering) -> the city (3728ms)\nWhere is John Wayne airport?\tOptions\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Options, be the first to comment, John Wayne Airport Rate) -> Options (3725ms)\nWhere is John Wayne airport?\tHuntington Beach\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Huntington Beach, is close to, John Wayne Airport) -> Huntington Beach (3712ms)\nWhere is John Wayne airport?\tThe nearest airport\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The nearest airport, is, John Wayne Airport) -> The nearest airport (3723ms)\nWhere is John Wayne airport?\tAir- Orange County?s only major airport\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Air- Orange County?s only major airport, is, John Wayne Airport) -> Air- Orange County?s only major airport (3712ms)\nWhere is John Wayne airport?\tThe hotel\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The hotel, is 20 minutes from, John Wayne Airport) -> The hotel (3730ms)\nWhere is John Wayne airport?\tair cargo\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (air cargo, were moved through, John Wayne Airport) -> air cargo (3730ms)\nWhere is John Wayne airport?\tThe Hotel\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Hotel, Is 20 Minutes From, John Wayne Airport) -> The Hotel (3723ms)\nWhere is John Wayne airport?\tFuddy\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Fuddy, will be based out of, John Wayne Airport) -> Fuddy (3728ms)\nWhere is John Wayne airport?\tOffice\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Office, is located near, John Wayne Airport) -> Office (3723ms)\nWhere is John Wayne airport?\tThe sleeping-hours ban\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The sleeping-hours ban, is among, John Wayne Airport) -> The sleeping-hours ban (3712ms)\nWhere is John Wayne airport?\tThe closest airport\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The closest airport, is, John Wayne Airport) -> The closest airport (3728ms)\nWhere is John Wayne airport?\tthe 405 Freeway\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the 405 Freeway, is, John Wayne Airport) -> the 405 Freeway (3687ms)\nWhere is John Wayne airport?\trapper Snoop Dogg\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (rapper Snoop Dogg, was again arrested at, John Wayne Airport) -> rapper Snoop Dogg (3723ms)\nWhere is John Wayne airport?\ta Car\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (a Car, is just 10 minutes from, the John Wayne Airport) -> a Car (3725ms)\nWhere is John Wayne airport?\tA Car\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (A Car, is just 10 minutes from, the John Wayne Airport) -> A Car (3728ms)\nWhere is John Wayne airport?\tThe project\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The project, is located only minutes from, John Wayne Airport) -> The project (3687ms)\nWhere is John Wayne airport?\tImprovements\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Improvements, are underway at, John Wayne Airport) -> Improvements (3730ms)\nWhere is John Wayne airport?\tJetSuite?s move\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (JetSuite?s move, is good news for, John Wayne Airport) -> JetSuite?s move (3728ms)\nWhere is John Wayne airport?\tThe Santa Ana hotel\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Santa Ana hotel, is near, John Wayne Airport) -> The Santa Ana hotel (3712ms)\nWhere is John Wayne airport?\tThe news\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The news, was even better at, John Wayne Orange County Airport) -> The news (3730ms)\nWhere is John Wayne airport?\tSnoop Dogg\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Snoop Dogg, was detained at, John Wayne Airport) -> Snoop Dogg (3725ms)\nWhere is John Wayne airport?\tthe east\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the east, is, John Wayne Airport and Irvine) -> the east (3728ms)\nWhere is John Wayne airport?\tAn unused runway\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (An unused runway, is now, John Wayne Airport) -> An unused runway (3730ms)\nWhere is John Wayne airport?\ta Santa Ana man\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (a Santa Ana man, was near, the John Wayne Airport) -> a Santa Ana man (3723ms)\nWhere is John Wayne airport?\tthe hotel\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the hotel, is 16 miles from, John Wayne Airport-Orange County) -> the hotel (3730ms)\nWhere is John Wayne airport?\tLake Forest\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Lake Forest, is also accessible via, the John Wayne Airport) -> Lake Forest (3723ms)\nWhere is John Wayne airport?\tThe Econolodge North\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Econolodge North, is located near, the John Wayne Airport) -> The Econolodge North (3728ms)\nWhere is John Wayne airport?\tThe closest commercial airports\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The closest commercial airports, are, John Wayne Airport) -> The closest commercial airports (3723ms)\nWhere is John Wayne airport?\tCalifornia\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (California, is just minutes away from, John Wayne Airport) -> California (3728ms)\nWhere is John Wayne airport?\thotel\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (hotel, is 2 miles from, the orange county-john wayne airport) -> hotel (3725ms)\nWhere is John Wayne airport?\tthe Buddhist lecture\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the Buddhist lecture, was near, John Wayne Airport) -> the Buddhist lecture (3728ms)\nWhere is John Wayne airport?\t1200 ? Time Zone\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (1200 ? Time Zone, is -8 Directions From, John Wayne Intl Airport) -> 1200 ? Time Zone (3723ms)\nWhere is John Wayne airport?\tDisneyland\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Disneyland, are, John Wayne Airport) -> Disneyland (3723ms)\nWhere is John Wayne airport?\tInn\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Inn, is located 16 miles from, Orange County/John Wayne Airport) -> Inn (3687ms)\nWhere is John Wayne airport?\tthe new location\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the new location, is close to, John Wayne Airport) -> the new location (3728ms)\nWhere is John Wayne airport?\tthe venue\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the venue, is, John Wayne Airport) -> the venue (3723ms)\nWhere is John Wayne airport?\tThe airplanes\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The airplanes, were approaching, John Wayne Airport) -> The airplanes (3723ms)\nWhere is John Wayne airport?\tvisiting Disneyland\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (visiting Disneyland, is, John Wayne Airport) -> visiting Disneyland (3730ms)\nWhere is John Wayne airport?\t? Time Zone\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (? Time Zone, is GMT-8 Directions From, John Wayne Airport-SNA) -> ? Time Zone (3712ms)\nWhere is John Wayne airport?\tThe next closest airport\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The next closest airport, is, John Wayne Airport) -> The next closest airport (3725ms)\nWhere is John Wayne airport?\tSNA Auto Rental\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (SNA Auto Rental, is located close to, John Wayne Airport) -> SNA Auto Rental (3725ms)\nWhere is John Wayne airport?\ta brand new terminal\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (a brand new terminal, is opening up at, John Wayne Airport) -> a brand new terminal (3725ms)\nWhere is John Wayne airport?\tan aircraft\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (an aircraft, is just about to land at, John Wayne airport) -> an aircraft (3723ms)\nWhere is John Wayne airport?\tThe Econolodge\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Econolodge, Is Located Near, The John Wayne Airport) -> The Econolodge (3723ms)\nWhere is John Wayne airport?\tCampus Dr.\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Campus Dr., is close to, the John Wayne Airport) -> Campus Dr. (3725ms)\nWhere is John Wayne airport?\tOasis\t-0.333333333333\tWhere is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Oasis, is sure to be a hit with, John Wayne Airport travelers) -> Oasis (3712ms)\nWhen was the U.S. capitol built?\tthe capital\t-0.0\tWhen was the U.S. capitol built? -> $x: (u.s. capitol, be locate in, $x) -> (The U.S. Capitol, is located in, the capital) -> the capital (1709ms)\nWhen was the U.S. capitol built?\tcentral Washington\t-0.0\tWhen was the U.S. capitol built? -> $x: (u.s. capitol, be locate in, $x) -> (Marriott U.S. Capitol, is located in, central Washington) -> central Washington (1709ms)\nWhen was the U.S. capitol built?\t1793\t-0.0\tWhen was the U.S. capitol built? -> $x: (u.s. capitol, start in, $x) -> (The U.S Capitol Building, started construction in, 1793) -> 1793 (1640ms)\nWhen was the U.S. capitol built?\tblack slaves\t-0.111111111111\tWhen was the U.S. capitol built? -> $x: (u.s. capitol, be build by, $x) -> (the U.S. Capitol, was built by, black slaves) -> black slaves (1709ms)\nWhen was the U.S. capitol built?\ta full day\t-1.444444444438\tWhen was the U.S. capitol built? -> $x: (u.s. capitol, be part of, $x) -> (the U.S. Capitol Visitor Center, is part of, a full day) -> a full day (1917ms)\nWhen was the U.S. capitol built?\tBenjamin Latrobe\t-1.4444444444400002\tWhen was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (Benjamin Latrobe, also helped design, the U.S. Capitol) -> Benjamin Latrobe (1956ms)\nWhen was the U.S. capitol built?\tthe same man\t-1.4444444444400002\tWhen was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (the same man, designed, the U.S. Capitol) -> the same man (2006ms)\nWhen was the U.S. capitol built?\tBenjamin Henry Latrobe\t-1.4444444444400002\tWhen was the U.S. capitol built? -> $x: (u.s. capitol, design, $x) -> (the U.S. Capitol, was designed by, Benjamin Henry Latrobe) -> Benjamin Henry Latrobe (1917ms)\nWhen was the U.S. capitol built?\tan amateur architect\t-1.4444444444400002\tWhen was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (an amateur architect, designed, the U.S. Capitol) -> an amateur architect (1918ms)\nWhen was the U.S. capitol built?\tslave labor\t-1.5555555555490002\tWhen was the U.S. capitol built? -> $x: (u.s. capitol, be build, $x) -> (the U.S. Capitol, were built with, slave labor) -> slave labor (1918ms)\nWhen was the U.S. capitol built?\ta beehive\t-1.66666666666\tWhen was the U.S. capitol built? -> $x: (u.s. capitol, look like, $x) -> (the U.S. Capitol, looks like, a beehive) -> a beehive (2007ms)\nWhat was Bing Crosby's nickname?\tthe Live Search API\t-0.8888888888920001\tWhat was Bing Crosby's nickname? -> $x: ($x, be know as, bing) -> (the Live Search API, is now known as, the Bing API) -> the Live Search API (711ms)\nWhat is the name of the airport in Amsterdam?\tEurope\t0.111111111112\tWhat is the name of the airport in Amsterdam? -> $x: (amsterdam, be largest airport in, $x) -> (?Amsterdam Schiphol, is the fifth largest airport in, Europe) -> Europe (950ms)\nWhat is the name of the airport in Amsterdam?\tthe Netherlands\t0.111111111112\tWhat is the name of the airport in Amsterdam? -> $x: (amsterdam, be largest airport in, $x) -> (Amsterdam, is the largest airport in, the Netherlands) -> the Netherlands (950ms)\nWho invented basketball?\ta pursuit\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, a pursuit) -> a pursuit (2678ms)\nWho invented basketball?\tthe USA\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, the USA) -> the USA (6860ms)\nWho invented basketball?\tCanada\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in, Canada) -> Canada (6786ms)\nWho invented basketball?\tDecember 1891\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, December 1891) -> December 1891 (6660ms)\nWho invented basketball?\t1946\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Wheelchair basketball, was invented in, 1946) -> 1946 (6660ms)\nWho invented basketball?\tthe 18th century\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, had n?t been invented in, the 18th century) -> the 18th century (6785ms)\nWho invented basketball?\tthe United States\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, the United States) -> the United States (6193ms)\nWho invented basketball?\ta pursuit for an indoor game\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, a pursuit for an indoor game) -> a pursuit for an indoor game (6860ms)\nWho invented basketball?\tAlmonte\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball Basketball, was actually invented in, Almonte) -> Almonte (6193ms)\nWho invented basketball?\t1892\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, 1892) -> 1892 (6785ms)\nWho invented basketball?\tjames\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in naismith by, james) -> james (2678ms)\nWho invented basketball?\tNorth America\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, North America) -> North America (6785ms)\nWho invented basketball?\tspringfield\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, is invented in, springfield) -> springfield (6193ms)\nWho invented basketball?\t1861\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (The basketball, was invented in, 1861) -> 1861 (6193ms)\nWho invented basketball?\tMassachusetts\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, Massachusetts) -> Massachusetts (6785ms)\nWho invented basketball?\tAmerica\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (O.K. basketball, was invented in, America) -> America (6660ms)\nWho invented basketball?\t1891\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball By 1936 Basketball, was invented in, 1891) -> 1891 (6860ms)\nWho invented basketball?\ta YMCA gymnasium\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Content Filter Basketball, was invented in, a YMCA gymnasium) -> a YMCA gymnasium (4694ms)\nWho invented basketball?\tDecember\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, December) -> December (2678ms)\nWho invented basketball?\tthe 1800?s\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in, the 1800?s) -> the 1800?s (6660ms)\nWho invented basketball?\tSpringfield\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball game, was invented in, Springfield) -> Springfield (6660ms)\nWho invented basketball?\ta religious context\t2.1111111111080003\tWho invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, had been invented in, a religious context) -> a religious context (6660ms)\nWho invented basketball?\tOxy\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Oxy, develop into, competitive basketball players) -> Oxy (7677ms)\nWho invented basketball?\tImaginEngine\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (ImaginEngine, Games Developed, Nicktoons Basketball) -> ImaginEngine (7578ms)\nWho invented basketball?\tBilly Packer\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Billy Packer, developed his love of, college basketball) -> Billy Packer (7753ms)\nWho invented basketball?\tNova Scotia Basketball\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Nova Scotia Basketball, develops the game of, basketball) -> Nova Scotia Basketball (6860ms)\nWho invented basketball?\tthe players\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (the players, develop, high basketball IQ?s) -> the players (7753ms)\nWho invented basketball?\tEC-NET Co.,Ltd.\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (EC-NET Co.,Ltd., Games Developed, Action Basketball) -> EC-NET Co.,Ltd. (7399ms)\nWho invented basketball?\tHigh Voltage Software\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (High Voltage Software, Games Developed, World League Basketball) -> High Voltage Software (7736ms)\nWho invented basketball?\tTraction mats\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Traction mats, developed for, Pro Basketball) -> Traction mats (7735ms)\nWho invented basketball?\tcoaching program\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (coaching program, has been developed by, Canada Basketball) -> coaching program (7718ms)\nWho invented basketball?\tyoung men\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (young men, develop as, basketball players) -> young men (7718ms)\nWho invented basketball?\tHAL Laboratory\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (HAL Laboratory, Game Versions Developed, NCAA Basketball) -> HAL Laboratory (7735ms)\nWho invented basketball?\tthe respected coach\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (the respected coach, had developed, the basketball program) -> the respected coach (7718ms)\nWho invented basketball?\tthe Simmenthal Club\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (the Simmenthal Club, is credited with developing, basketball) -> the Simmenthal Club (6860ms)\nWho invented basketball?\tThe Newark , Ohio native\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (The Newark , Ohio native, developed a talent for, basketball) -> The Newark , Ohio native (7578ms)\nWho invented basketball?\tData Design Interactive\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Data Design Interactive, Games Developed, Kidz Sports Basketball) -> Data Design Interactive (6980ms)\nWho invented basketball?\tPolicies and procedures\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Policies and procedures, were developed so, basketball fans) -> Policies and procedures (7677ms)\nWho invented basketball?\tstudy\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (study, need to be highly developed in, basketball) -> study (7735ms)\nWho invented basketball?\tTony Hinkle\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Tony Hinkle, developed, the modern day orange basketball) -> Tony Hinkle (7399ms)\nWho invented basketball?\tSmartphones\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Smartphones, developed, College Basketball Bracket Challenge) -> Smartphones (7578ms)\nWho invented basketball?\tkids\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (kids, develop, fundamental basketball skills) -> kids (7736ms)\nWho invented basketball?\tThe District\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (The District, develop, a new playfield and basketball courts) -> The District (7174ms)\nWho invented basketball?\tGame Time Hoops participants\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Game Time Hoops participants, develop, their basketball skills) -> Game Time Hoops participants (7677ms)\nWho invented basketball?\tyoung players\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (young players, develop, their basketball skills) -> young players (7718ms)\nWho invented basketball?\tEpyx\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Epyx, Games Developed, Street Sports Basketball) -> Epyx (7753ms)\nWho invented basketball?\t18 years\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (18 years, develop, basketball skills) -> 18 years (7677ms)\nWho invented basketball?\tJames Naismith\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (James Naismith, developed, basketball) -> James Naismith (7718ms)\nWho invented basketball?\tJeremy\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Jeremy, developed into, a basketball star) -> Jeremy (7736ms)\nWho invented basketball?\tEurope\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Europe, is developing, great basketball) -> Europe (7735ms)\nWho invented basketball?\tNBA Canada\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (NBA Canada, develop, amateur basketball) -> NBA Canada (7174ms)\nWho invented basketball?\tthe chance\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (the chance, develop, a successful basketball program) -> the chance (7718ms)\nWho invented basketball?\tChristian\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Christian, developed, the Christian Laettner Basketball Academy) -> Christian (6979ms)\nWho invented basketball?\tturn\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (turn, developed, ideal Basketball new soccer cleats) -> turn (7735ms)\nWho invented basketball?\tKonami\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Konami, Games Developed, Disney Sports Basketball) -> Konami (7578ms)\nWho invented basketball?\tNaismith\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Naismith, developed, basketball) -> Naismith (6980ms)\nWho invented basketball?\tSkyworks Interactive, Inc.\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Skyworks Interactive, Inc., Games Developed, Arcade Hoops Basketball) -> Skyworks Interactive, Inc. (7718ms)\nWho invented basketball?\tHumongous Entertainment\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Humongous Entertainment, Games Developed, Backyard Basketball 2007) -> Humongous Entertainment (7718ms)\nWho invented basketball?\tbasketball\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (basketball, develop through, his summer basketball) -> basketball (7677ms)\nWho invented basketball?\tElectronic Arts\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Electronic Arts, Games Developed, Team USA Basketball) -> Electronic Arts (7174ms)\nWho invented basketball?\tContent Filter Netball\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Content Filter Netball, developed out of, basketball) -> Content Filter Netball (6980ms)\nWho invented basketball?\tAir Max2 Uptempo system\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Air Max2 Uptempo system, was developed for, basketball models) -> Air Max2 Uptempo system (7735ms)\nWho invented basketball?\tNR\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (NR, Develop, rock solid basketball fundamentals) -> NR (7753ms)\nWho invented basketball?\tParticipants\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Participants, develop, their basketball skills) -> Participants (6980ms)\nWho invented basketball?\tthe Rec Program\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (the Rec Program, develops, the Intramural Basketball League) -> the Rec Program (6979ms)\nWho invented basketball?\tequipment\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (equipment, develop, community basketball courts) -> equipment (7718ms)\nWho invented basketball?\tshoes\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (shoes, was developed for, basketball) -> shoes (7174ms)\nWho invented basketball?\tJohn\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (John, quickly developed a fondness for, wheelchair basketball) -> John (7677ms)\nWho invented basketball?\tvarious positions\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (various positions, have been developed in, basketball) -> various positions (7753ms)\nWho invented basketball?\t?Clint\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (?Clint, developed a love for, basketball) -> ?Clint (7736ms)\nWho invented basketball?\tBasketball Clinics\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Basketball Clinics, develops, basketball skills) -> Basketball Clinics (7718ms)\nWho invented basketball?\tyoung athletes\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (young athletes, develop, basketball skills) -> young athletes (6980ms)\nWho invented basketball?\tthe partnership\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (the partnership, develop, the basketball strategy) -> the partnership (7718ms)\nWho invented basketball?\tyoung people\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (young people, develop, leadership , social and basketball skills) -> young people (7718ms)\nWho invented basketball?\ta sudden\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (a sudden, develop, a higher basketball IQ or coaching knowledge) -> a sudden (7735ms)\nWho invented basketball?\tNets owner Mikhail Prokhorov\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Nets owner Mikhail Prokhorov, wants to help develop, basketball) -> Nets owner Mikhail Prokhorov (7399ms)\nWho invented basketball?\tNike\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Nike, has developed, Nike basketball shoes) -> Nike (7736ms)\nWho invented basketball?\tAicom\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Aicom, Games Developed, Ultimate Basketball) -> Aicom (7718ms)\nWho invented basketball?\tDan\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Dan, had developed a full-blown obsession with, basketball) -> Dan (7718ms)\nWho invented basketball?\tTaito Corporation\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Taito Corporation, Game Versions Developed, Ultimate Basketball) -> Taito Corporation (7735ms)\nWho invented basketball?\tAtari\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Atari, Game Versions Developed, Basketball) -> Atari (7677ms)\nWho invented basketball?\tBackbone Entertainment\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Backbone Entertainment, Games Developed, Nicktoons Basketball) -> Backbone Entertainment (6980ms)\nWho invented basketball?\tRichmond\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Richmond, developed, a basketball program) -> Richmond (6860ms)\nWho invented basketball?\tFreeverse\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Freeverse, Games Developed, Flick NBA Basketball) -> Freeverse (7735ms)\nWho invented basketball?\tKids\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Kids, need to develop, basketball skills) -> Kids (7578ms)\nWho invented basketball?\tshoe brands\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (shoe brands, were busy focusing on developing, basketball shoes) -> shoe brands (7718ms)\nWho invented basketball?\tTecmo\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Tecmo, Games Developed, Tecmo NBA Basketball) -> Tecmo (7677ms)\nWho invented basketball?\tHamza\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Hamza, developed interest in, basketball) -> Hamza (7400ms)\nWho invented basketball?\tSculptured Software\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Sculptured Software, Games Developed, NCAA Basketball) -> Sculptured Software (7578ms)\nWho invented basketball?\tChildren\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Children, will develop, basketball skills) -> Children (7718ms)\nWho invented basketball?\tS6 pupils\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (S6 pupils, has been developing their skills in, basketball) -> S6 pupils (6860ms)\nWho invented basketball?\tHudson Soft\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (Hudson Soft, Games Developed, Bill Laimbeer's Combat Basketball) -> Hudson Soft (7735ms)\nWho invented basketball?\tThe mission\t1.444444444444\tWho invented basketball? -> $x: ($x, develop, basketball) -> (The mission, is to develop, basketball skills) -> The mission (7677ms)\nWho invented basketball?\talumni\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (alumni, can be found, playing basketball) -> alumni (7770ms)\nWho invented basketball?\tthe Panthers\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (the Panthers, are finding rare success in, basketball) -> the Panthers (7786ms)\nWho invented basketball?\tSFGS\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (SFGS, find most rewarding about, coaching basketball) -> SFGS (7786ms)\nWho invented basketball?\tclose\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (close, find, the Pistons-Pacers basketball brawl) -> close (7802ms)\nWho invented basketball?\tscott\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (scott, Find, the Best Basketball Camps) -> scott (7802ms)\nWho invented basketball?\tplay-for-pay\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (play-for-pay, found its way into, basketball) -> play-for-pay (7835ms)\nWho invented basketball?\tDanny Ainge\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Danny Ainge, continues to find, basketball talent) -> Danny Ainge (7802ms)\nWho invented basketball?\tthe students\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (the students, found, the new NCAA Basketball Brackets) -> the students (7786ms)\nWho invented basketball?\tThe amazon online marketplace\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (The amazon online marketplace, found, the actual basketball) -> The amazon online marketplace (7770ms)\nWho invented basketball?\tSports enthusiasts\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Sports enthusiasts, will find, professional basketball) -> Sports enthusiasts (7819ms)\nWho invented basketball?\ta player\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (a player, find, the best basketball camp) -> a player (7770ms)\nWho invented basketball?\tidea\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (idea, found on, Basketball mmorpgs) -> idea (7770ms)\nWho invented basketball?\tMarbury\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Marbury, finds, basketball redemption) -> Marbury (7770ms)\nWho invented basketball?\tfamily members\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (family members, found his passion in, basketball) -> family members (7770ms)\nWho invented basketball?\tBasketball Fundraisers Can't\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Basketball Fundraisers Can't, find, the Basketball Shorts) -> Basketball Fundraisers Can't (7770ms)\nWho invented basketball?\t11 Ways\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (11 Ways, to find, your Basketball) -> 11 Ways (7786ms)\nWho invented basketball?\tDay 23\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Day 23, Find, six baseball , football or basketball scores) -> Day 23 (7786ms)\nWho invented basketball?\tTosh APPS\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Tosh APPS, Find, pick-up basketball games) -> Tosh APPS (7786ms)\nWho invented basketball?\tRose\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Rose, can be found, playing basketball) -> Rose (7770ms)\nWho invented basketball?\tDisease Control\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Disease Control, also found, basketball) -> Disease Control (7786ms)\nWho invented basketball?\tBo\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Bo, found, a basketball court) -> Bo (7786ms)\nWho invented basketball?\tthe eight oblong panels\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (the eight oblong panels, found on, traditional basketballs) -> the eight oblong panels (7802ms)\nWho invented basketball?\tthe shorter end\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (the shorter end, did n?t find much substance in, Basketball) -> the shorter end (7802ms)\nWho invented basketball?\tso many talents\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (so many talents, found in, basketball game) -> so many talents (7835ms)\nWho invented basketball?\tManning\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Manning, found, Division I basketball role models) -> Manning (7818ms)\nWho invented basketball?\tthe best example\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (the best example, is found in, ?Basketball ?) -> the best example (7802ms)\nWho invented basketball?\tNCAA Games\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (NCAA Games, Find, college basketball game tickets) -> NCAA Games (7819ms)\nWho invented basketball?\tKobe Dream Season\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Kobe Dream Season, find, an Tony Parker Shoes basketball shoe) -> Kobe Dream Season (7786ms)\nWho invented basketball?\tBasketball directory\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Basketball directory, to find, basketball links) -> Basketball directory (7802ms)\nWho invented basketball?\tbumpy leather\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (bumpy leather, found on, a basketball) -> bumpy leather (7770ms)\nWho invented basketball?\tA FREE 3 RING BINDER\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (A FREE 3 RING BINDER, Find, baseball basketball cards) -> A FREE 3 RING BINDER (7818ms)\nWho invented basketball?\tthe 28th , everyone\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (the 28th , everyone, found, the basketball-only arena) -> the 28th , everyone (7802ms)\nWho invented basketball?\tusers\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (users, find, pick-up basketball games) -> users (7786ms)\nWho invented basketball?\tSaid Rageah\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Said Rageah, can sometimes be found, playing basketball) -> Said Rageah (7753ms)\nWho invented basketball?\tthe eight panels\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (the eight panels, found on, traditional basketballs) -> the eight panels (7786ms)\nWho invented basketball?\t3 inches\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (3 inches, found, basketball) -> 3 inches (7786ms)\nWho invented basketball?\tTribunal\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Tribunal, finds, Basketball player) -> Tribunal (7753ms)\nWho invented basketball?\tN?diaye\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (N?diaye, did n?t find, basketball) -> N?diaye (7786ms)\nWho invented basketball?\tCan't\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Can't, find, the basketball referee uniforms) -> Can't (7770ms)\nWho invented basketball?\tdifferent neighbourhoods\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (different neighbourhoods, find, a vacant basketball court) -> different neighbourhoods (7818ms)\nWho invented basketball?\tGreg\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Greg, can be found, playing basketball) -> Greg (7818ms)\nWho invented basketball?\ttennis partners\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (tennis partners, find, a regular pickup basketball game) -> tennis partners (7753ms)\nWho invented basketball?\tMilford\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Milford, found, their basketballs) -> Milford (7802ms)\nWho invented basketball?\tNo 2011-2012 events\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (No 2011-2012 events, were found for, Basketball) -> No 2011-2012 events (7818ms)\nWho invented basketball?\tvideos\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (videos, find, basketball equipment) -> videos (7770ms)\nWho invented basketball?\tbusinessmen\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (businessmen, found the new game of, basketball) -> businessmen (7818ms)\nWho invented basketball?\tcan i\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (can i, find, vintage NBA basketball jersey) -> can i (7770ms)\nWho invented basketball?\tGrade 5\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Grade 5, can find information about, Upward Basketball) -> Grade 5 (7753ms)\nWho invented basketball?\tfootball\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (football, find the open man in, basketball) -> football (7786ms)\nWho invented basketball?\tDavis\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Davis, found solace in, basketball) -> Davis (7786ms)\nWho invented basketball?\tNo results\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (No results, were found for, Basketball Shop) -> No results (7802ms)\nWho invented basketball?\tthe offseason\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (the offseason, find, free basketball predictions) -> the offseason (7770ms)\nWho invented basketball?\tBrown\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Brown, found solace in, basketball) -> Brown (7770ms)\nWho invented basketball?\tAraragi\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Araragi, finds, Kanbaru?s basketball uniform) -> Araragi (7818ms)\nWho invented basketball?\tMike\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Mike, found, a basketball-sized rock) -> Mike (7802ms)\nWho invented basketball?\tUSC\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (USC, find, a basketball version) -> USC (7802ms)\nWho invented basketball?\tGarcia\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Garcia, found his love for, basketball) -> Garcia (7802ms)\nWho invented basketball?\tBasketball coaches\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Basketball coaches, can find, basketball equipment) -> Basketball coaches (7818ms)\nWho invented basketball?\tYou?ll\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (You?ll, find a variety of, basketball sneakers) -> You?ll (7753ms)\nWho invented basketball?\tSam Young Official Website\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Sam Young Official Website, Find, Sam Young basketball speaker) -> Sam Young Official Website (7835ms)\nWho invented basketball?\tAPPS\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (APPS, Find, pick-up basketball games) -> APPS (7835ms)\nWho invented basketball?\tprofessional hoops\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (professional hoops, are found throughout, Basketball Forum) -> professional hoops (7819ms)\nWho invented basketball?\tKenny\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Kenny, can be found, playing basketball) -> Kenny (7753ms)\nWho invented basketball?\tSearch ebay\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Search ebay, directly to find, used Basketball) -> Search ebay (7818ms)\nWho invented basketball?\tstudents\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (students, find, basketball scholarships) -> students (7753ms)\nWho invented basketball?\tNFL Gear\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (NFL Gear, Find, youth and teen college basketball shorts) -> NFL Gear (7802ms)\nWho invented basketball?\tChampions\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Champions, finds, Canadian-style basketball) -> Champions (7835ms)\nWho invented basketball?\twriting\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (writing, found, a minute rotating metal basketball) -> writing (7835ms)\nWho invented basketball?\tSports fans\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Sports fans, will find tickets to, National Basketball) -> Sports fans (7818ms)\nWho invented basketball?\tLackner\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Lackner, found, two other former Harvard basketball players) -> Lackner (7835ms)\nWho invented basketball?\tJeff\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Jeff, finds, a basketball backboard) -> Jeff (7818ms)\nWho invented basketball?\ta friend\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (a friend, find, this the best basketball song) -> a friend (7802ms)\nWho invented basketball?\tfriends\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (friends, find common ground through, basketball) -> friends (7818ms)\nWho invented basketball?\tNarron\t1.444444444442\tWho invented basketball? -> $x: ($x, found, basketball) -> (Narron, has found his calling coaching, girls ' basketball) -> Narron (7786ms)\nWho invented basketball?\tinnovators\t1.333333333332\tWho invented basketball? -> $x: ($x, have invent, basketball) -> (innovators, have invented the game of, basketball and volleyball) -> innovators (7835ms)\nWho invented basketball?\tBiddy Ball\t1.333333333332\tWho invented basketball? -> $x: ($x, exactly be, basketball) -> (Biddy Ball, is exactly like, basketball) -> Biddy Ball (7835ms)\nWho invented basketball?\tthe rule\t1.333333333332\tWho invented basketball? -> $x: ($x, exactly be, basketball) -> (the rule, can?t be exactly the same as, basketball) -> the rule (7835ms)\nWho invented basketball?\tOklahoma\t1.333333333332\tWho invented basketball? -> $x: ($x, exactly be, basketball) -> (Oklahoma, is n?t exactly playing, its best basketball) -> Oklahoma (7835ms)\nWho invented basketball?\tBFF Brackets\t1.333333333332\tWho invented basketball? -> $x: ($x, exactly be, basketball) -> (BFF Brackets, is exactly like, the college basketball tourney) -> BFF Brackets (7835ms)\nWho invented basketball?\tColorado\t1.333333333331\tWho invented basketball? -> $x: (basketball, be make in, $x) -> (our Basketball Bags, are made in, Colorado) -> Colorado (7851ms)\nWho invented basketball?\tthe off-season\t1.333333333331\tWho invented basketball? -> $x: (basketball, be make in, $x) -> (the next level Basketball players, are made in, the off-season) -> the off-season (7851ms)\nWho invented basketball?\tthe Bahamas\t1.333333333331\tWho invented basketball? -> $x: (basketball, be make in, $x) -> (PHIL SMITH BASKETBALL CLASSIC History, was made in, the Bahamas) -> the Bahamas (7851ms)\nWho invented basketball?\tthe winter\t1.333333333331\tWho invented basketball? -> $x: (basketball, be make in, $x) -> (basketball teams, are made in, the winter) -> the winter (7851ms)\nWho invented basketball?\tthe summer\t1.333333333331\tWho invented basketball? -> $x: (basketball, be make in, $x) -> (A basketball player, is made in, the summer) -> the summer (7851ms)\nWho invented basketball?\texcellence\t1.222222222221\tWho invented basketball? -> $x: (basketball, have history of, $x) -> ('s basketball programs, have a storied history of, excellence) -> excellence (8004ms)\nWho invented basketball?\tApple\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Apple, has now introduced, ESPN iScore Basketball Scorekeeper) -> Apple (8026ms)\nWho invented basketball?\tHanno Mottola\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (Hanno Mottola, invent game of, basketball) -> Hanno Mottola (7942ms)\nWho invented basketball?\tJames naismith\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (James naismith, invented the game of, basketball) -> James naismith (8015ms)\nWho invented basketball?\tCanadian drillmaster\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was originally invented by, Canadian drillmaster) -> Canadian drillmaster (7851ms)\nWho invented basketball?\tCanadian Dr. James Naismith\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, Canadian Dr. James Naismith) -> Canadian Dr. James Naismith (7897ms)\nWho invented basketball?\tHuffman\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Huffman, introduced, the basketball) -> Huffman (7968ms)\nWho invented basketball?\ta rugby coach\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a rugby coach) -> a rugby coach (7981ms)\nWho invented basketball?\tthree-point shooting\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (three-point shooting, was introduced to, college basketball) -> three-point shooting (7992ms)\nWho invented basketball?\tBoys Basketball Students\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Boys Basketball Students, will be introduced to, basketball) -> Boys Basketball Students (8015ms)\nWho invented basketball?\tMacKinnon\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (MacKinnon, was quickly introduced to, basketball) -> MacKinnon (8015ms)\nWho invented basketball?\tJohnson\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Johnson, introduced a fast-paced style of, basketball) -> Johnson (8015ms)\nWho invented basketball?\ta canadian\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a canadian) -> a canadian (7992ms)\nWho invented basketball?\tNike Tn Requin Pas Cher\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Nike Tn Requin Pas Cher, was introduced as, a basketball shoes) -> Nike Tn Requin Pas Cher (8026ms)\nWho invented basketball?\tQuick Draw\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Quick Draw, will be introduced to, basketball skills) -> Quick Draw (7913ms)\nWho invented basketball?\tan individual\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (only basketball, was invented by, an individual) -> an individual (7981ms)\nWho invented basketball?\tthe Nike Dunk\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (the Nike Dunk, was introduced as, a technical basketball sneaker) -> the Nike Dunk (7882ms)\nWho invented basketball?\tPhog Allen\t1.222222222221\tWho invented basketball? -> $x: ($x, be inventor of, basketball) -> (Phog Allen, was the inventor of, basketball) -> Phog Allen (7956ms)\nWho invented basketball?\tactive students\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (the Science Guy Basketball, was invented by, active students) -> active students (8026ms)\nWho invented basketball?\tThe company\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (The company, also introduced, new basketball teasers) -> The company (7956ms)\nWho invented basketball?\tHaruko\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Haruko, introduced him to, the Shohoku basketball team) -> Haruko (7927ms)\nWho invented basketball?\tdribbling\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (dribbling, was introduced in, basketball) -> dribbling (7956ms)\nWho invented basketball?\tphysician\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (physician, invented the game of, basketball) -> physician (7851ms)\nWho invented basketball?\ta Canadian , Dr. James A. Naismith\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a Canadian , Dr. James A. Naismith) -> a Canadian , Dr. James A. Naismith (7912ms)\nWho invented basketball?\tYMCA instructors\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball and volleyball, were invented by, YMCA instructors) -> YMCA instructors (8015ms)\nWho invented basketball?\t1917 Converse\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (1917 Converse, introduced, the All-Star basketball shoe) -> 1917 Converse (7882ms)\nWho invented basketball?\ta physical education teacher\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a physical education teacher) -> a physical education teacher (7956ms)\nWho invented basketball?\t1891 Dr. Naismith\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (1891 Dr. Naismith, invented the game of, Basketball) -> 1891 Dr. Naismith (8004ms)\nWho invented basketball?\tuncle Jed\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (uncle Jed, introduced her to, basketball) -> uncle Jed (8015ms)\nWho invented basketball?\tsuperstar players\t1.222222222221\tWho invented basketball? -> $x: (basketball, have history of, $x) -> (Basketball, has a rich history of, superstar players) -> superstar players (8004ms)\nWho invented basketball?\tand excellence\t1.222222222221\tWho invented basketball? -> $x: (basketball, have history of, $x) -> ('s basketball, has a grand history of winning, and excellence) -> and excellence (7968ms)\nWho invented basketball?\tPhilip Bryant\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, Philip Bryant) -> Philip Bryant (7968ms)\nWho invented basketball?\tHope Mills\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Hope Mills, introduced, the new ABA professional basketball team) -> Hope Mills (7897ms)\nWho invented basketball?\tBaden\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Baden, introduces, the Perfection basketball series) -> Baden (7942ms)\nWho invented basketball?\tsuccess\t1.222222222221\tWho invented basketball? -> $x: (basketball, have history of, $x) -> (Cincinnati basketball, has a rich history of, success) -> success (7897ms)\nWho invented basketball?\tStein\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Stein, was introduced as, ICC?s third womens basketball coach) -> Stein (8004ms)\nWho invented basketball?\tSports\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Sports, introduced include, soccer , basketball) -> Sports (7992ms)\nWho invented basketball?\tThe project\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (The project, will introduce, a Midnight Basketball program) -> The project (7969ms)\nWho invented basketball?\tshort\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (short, introduce about, the kobe 5 basketball shoes) -> short (7942ms)\nWho invented basketball?\trock\t1.222222222221\tWho invented basketball? -> $x: ($x, be inventor of, basketball) -> (rock, only is the inventor of, basketball) -> rock (7913ms)\nWho invented basketball?\tRomney\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Romney, is introducing, basketball) -> Romney (7981ms)\nWho invented basketball?\t1st grade\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (1st grade, are also introduced to, basketball) -> 1st grade (7897ms)\nWho invented basketball?\tNike Tn Requin\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Nike Tn Requin, was introduced as, a basketball shoes) -> Nike Tn Requin (7866ms)\nWho invented basketball?\tHinson\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Hinson, formally introduced as, men???s basketball coach) -> Hinson (7866ms)\nWho invented basketball?\tphysical education\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (physical education, invented the game of, basketball) -> physical education (7981ms)\nWho invented basketball?\tthe security technology\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (the security technology, is introduced to, the basketball shoes) -> the security technology (8004ms)\nWho invented basketball?\tCanadian James Naismith\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (Canadian James Naismith, invented the game of, basketball) -> Canadian James Naismith (7867ms)\nWho invented basketball?\tmen\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Both basketball and volleyball, were invented by, men) -> men (7942ms)\nWho invented basketball?\ttightness\t1.222222222221\tWho invented basketball? -> $x: (basketball, have history of, $x) -> (A women varsity basketball player, had a history of, tightness) -> tightness (7942ms)\nWho invented basketball?\tthe league\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (the league, helped to introduce, basketball) -> the league (7981ms)\nWho invented basketball?\tjames naismith\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, james naismith) -> james naismith (7956ms)\nWho invented basketball?\tthe new defense McGuire\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (the new defense McGuire, introduced to, college basketball) -> the new defense McGuire (7981ms)\nWho invented basketball?\tTaylor\t1.222222222221\tWho invented basketball? -> $x: ($x, be invent, basketball) -> (Taylor, is also credited with inventing, a basketball) -> Taylor (8026ms)\nWho invented basketball?\tspeakers Bill Walton Bill Walton\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (speakers Bill Walton Bill Walton, was introduced to, basketball) -> speakers Bill Walton Bill Walton (7897ms)\nWho invented basketball?\tConverse\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Converse, introduced, the All-Star basketball shoe) -> Converse (7927ms)\nWho invented basketball?\tTrent Johnson\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Trent Johnson, has been introduced as, the new basketball coach) -> Trent Johnson (7866ms)\nWho invented basketball?\tTaylor Allan\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Taylor Allan, recently introduced, Basketball game Credit) -> Taylor Allan (7992ms)\nWho invented basketball?\tleather-based upper\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (leather-based upper, was introduced on, basketball shoes) -> leather-based upper (7882ms)\nWho invented basketball?\texactly what\t1.222222222221\tWho invented basketball? -> $x: ($x, be origin of, basketball) -> (exactly what, is the origin of, basketball) -> exactly what (8015ms)\nWho invented basketball?\ta winter team sport\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (a winter team sport, invented the game of, basketball) -> a winter team sport (7942ms)\nWho invented basketball?\tLarson\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Larson, was introduced as, the 8th head men?s basketball coach) -> Larson (8004ms)\nWho invented basketball?\tSLAM DUNK\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (SLAM DUNK, has been credited with introducing, basketball) -> SLAM DUNK (7942ms)\nWho invented basketball?\tNone\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (None, Introduce, backyard basketball) -> None (8026ms)\nWho invented basketball?\tTim Miles\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Tim Miles, introduced as, the new NU basketball coach) -> Tim Miles (7968ms)\nWho invented basketball?\ta man\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was a game invented by, a man) -> a man (8004ms)\nWho invented basketball?\toffense\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (offense, will be introduced to, young basketball players) -> offense (7867ms)\nWho invented basketball?\ta Canadian\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a Canadian) -> a Canadian (7897ms)\nWho invented basketball?\tAgau\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Agau, was introduced to, basketball) -> Agau (7927ms)\nWho invented basketball?\tleagues\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (leagues, are introduced to, new basketball ideas) -> leagues (7897ms)\nWho invented basketball?\t1869\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, 1869) -> 1869 (7992ms)\nWho invented basketball?\trallying\t1.222222222221\tWho invented basketball? -> $x: (basketball, have history of, $x) -> (the Hudson girls basketball team, has had a history of, rallying) -> rallying (7882ms)\nWho invented basketball?\tthe YMCA\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was a game invented by, the YMCA) -> the YMCA (7866ms)\nWho invented basketball?\tthe 3-point line\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (the 3-point line, was being introduced to, college basketball) -> the 3-point line (8015ms)\nWho invented basketball?\tStewart\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Stewart, introduced, former basketball star Kareem Abdul-Jabbar) -> Stewart (7866ms)\nWho invented basketball?\tWe?ll\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (We?ll, introduce, the OWLS basketball teams) -> We?ll (8004ms)\nWho invented basketball?\ta Scottish American\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a Scottish American) -> a Scottish American (7956ms)\nWho invented basketball?\ta native\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a native) -> a native (8015ms)\nWho invented basketball?\tOH Ohio\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (OH Ohio, will introduce, its new head basketball coach) -> OH Ohio (8026ms)\nWho invented basketball?\tCascade\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Cascade, was introduced as, the 18th men?s basketball coach) -> Cascade (7942ms)\nWho invented basketball?\tseven years\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (seven years, was soon introduced to, wheelchair basketball) -> seven years (8004ms)\nWho invented basketball?\tinventor\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (inventor, invented the game of, basketball) -> inventor (7981ms)\nWho invented basketball?\ta Y.M.C.A. official\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a Y.M.C.A. official) -> a Y.M.C.A. official (7968ms)\nWho invented basketball?\tpopularity\t1.222222222221\tWho invented basketball? -> $x: (basketball, have history of, $x) -> (Basketball, has enjoyed a long history of, popularity) -> popularity (8026ms)\nWho invented basketball?\tThe YMCA\t1.222222222221\tWho invented basketball? -> $x: ($x, be invent, basketball) -> (The YMCA, is credited with inventing, Basketball) -> The YMCA (7897ms)\nWho invented basketball?\ta Canadian baseball football\t1.222222222221\tWho invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a Canadian baseball football) -> a Canadian baseball football (7912ms)\nWho invented basketball?\tJudi W. My son Flynn\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Judi W. My son Flynn, was introduced to, basketball) -> Judi W. My son Flynn (7927ms)\nWho invented basketball?\tDr. James Naismith\t1.222222222221\tWho invented basketball? -> $x: ($x, invent of, basketball) -> (Dr. James Naismith, invented the game of, basketball) -> Dr. James Naismith (8026ms)\nWho invented basketball?\tthe NBA\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (the NBA, introduced, a new basketball) -> the NBA (8004ms)\nWho invented basketball?\tUjiri\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Ujiri, was introduced to, basketball) -> Ujiri (7992ms)\nWho invented basketball?\tMs Galley\t1.222222222221\tWho invented basketball? -> $x: ($x, introduce, basketball) -> (Ms Galley, is introducing, basketball) -> Ms Galley (7927ms)\nWho invented basketball?\tTex\t1.2222222222180001\tWho invented basketball? -> $x: ($x, discover, basketball) -> (Tex, was discovered by, the basketball ambassadors) -> Tex (8026ms)\nWho invented basketball?\tConnor\t1.2222222222180001\tWho invented basketball? -> $x: ($x, discover, basketball) -> (Connor, has discovered, basketball) -> Connor (8026ms)\nWho invented basketball?\tsummer\t1.2222222222180001\tWho invented basketball? -> $x: ($x, discover, basketball) -> (summer, discovered, Duke Basketball) -> summer (8026ms)\nWho invented basketball?\tShanghai\t1.2222222222180001\tWho invented basketball? -> $x: ($x, discover, basketball) -> (Shanghai, was discovered too late for, basketball) -> Shanghai (8026ms)\nWho invented basketball?\tWolfgang Amadeus Naismith\t1.2222222222180001\tWho invented basketball? -> $x: ($x, discover, basketball) -> (Wolfgang Amadeus Naismith, discovered, basketball) -> Wolfgang Amadeus Naismith (8026ms)\nWho invented basketball?\tBuddhist statuary\t1.2222222222180001\tWho invented basketball? -> $x: ($x, discover, basketball) -> (Buddhist statuary, was discovered beneath, a basketball court) -> Buddhist statuary (8026ms)\nWho invented basketball?\tDIY Gino\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (DIY Gino, creates, a patio and basketball court) -> DIY Gino (8141ms)\nWho invented basketball?\tAntonio and Marco\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Antonio and Marco, are doing, basketball) -> Antonio and Marco (8224ms)\nWho invented basketball?\tthe RPI\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the RPI, originally was created for, basketball) -> the RPI (8231ms)\nWho invented basketball?\tThe Butler Way\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (The Butler Way, created the hullabaloo in, college basketball) -> The Butler Way (8204ms)\nWho invented basketball?\tfirst\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented, first) -> first (8112ms)\nWho invented basketball?\tthe Harlem Globetrotters\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (the Harlem Globetrotters, do in, basketball) -> the Harlem Globetrotters (8080ms)\nWho invented basketball?\tColor\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Color, is especially designed for, basketball players) -> Color (8217ms)\nWho invented basketball?\tAlan Miller\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Alan Miller, Games Designed, Basketball) -> Alan Miller (8141ms)\nWho invented basketball?\texpertise\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (expertise, goes into designing, basketballs shoes) -> expertise (8178ms)\nWho invented basketball?\tThe biggest misconception\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (The biggest misconception, has nothing to do with, basketball) -> The biggest misconception (8070ms)\nWho invented basketball?\tMiddlebury and MIT\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Middlebury and MIT, have made an impact in, basketball) -> Middlebury and MIT (8141ms)\nWho invented basketball?\tMissouri\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Missouri, to create, an enduring basketball rivalry with Auburn) -> Missouri (8244ms)\nWho invented basketball?\tAir Jordan 9\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Air Jordan 9, is designed according to, basketball players) -> Air Jordan 9 (8101ms)\nWho invented basketball?\tfun\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (fun, has created, an online NCAA basketball tournament bracket) -> fun (8244ms)\nWho invented basketball?\tSan Ignacio\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (the ATLIB Basketball Nationals, took place in, San Ignacio) -> San Ignacio (8237ms)\nWho invented basketball?\tMarquette\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Marquette, does playing, basketball) -> Marquette (8170ms)\nWho invented basketball?\tthe downtown arena\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (the downtown arena, had been designed for, basketball) -> the downtown arena (8231ms)\nWho invented basketball?\tNike and Adidas\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Nike and Adidas, have been making, great basketball shoes) -> Nike and Adidas (8112ms)\nWho invented basketball?\tthe coaches\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (the coaches, have helped make, Five-Star Basketball one) -> the coaches (8244ms)\nWho invented basketball?\tCCTV\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (CCTV, jointly created, the first ';entertainment basketball ') -> CCTV (8080ms)\nWho invented basketball?\tChicopee\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Chicopee, has been making headlines on, the basketball court) -> Chicopee (8238ms)\nWho invented basketball?\tCastro\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Castro, created, a youth basketball league) -> Castro (8037ms)\nWho invented basketball?\ta rich tradition\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (a rich tradition, has made his mark in, college basketball) -> a rich tradition (8217ms)\nWho invented basketball?\tBishop Ryan\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Bishop Ryan, has made their name in, Midget Girls Basketball) -> Bishop Ryan (8224ms)\nWho invented basketball?\tThe idea\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (The idea, is to create, basketball team) -> The idea (8122ms)\nWho invented basketball?\tBroback\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Broback, is done with, basketball) -> Broback (8048ms)\nWho invented basketball?\tlight\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (light, was created on, the basketball court) -> light (8231ms)\nWho invented basketball?\tthe shoe\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the shoe, is created for, basketball) -> the shoe (8161ms)\nWho invented basketball?\tAdidas and Nike\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Adidas and Nike, have been making, good basketball shoes) -> Adidas and Nike (8244ms)\nWho invented basketball?\tDean\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Dean, did with, basketball) -> Dean (8131ms)\nWho invented basketball?\tsport\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (sport, do activities such as, Basketball) -> sport (8131ms)\nWho invented basketball?\tthe canadian cation instructor\t1.11111111111\tWho invented basketball? -> $x: ($x, invent in, basketball) -> (the canadian cation instructor, invented in, basketball) -> the canadian cation instructor (8250ms)\nWho invented basketball?\tthe opportunity\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (the opportunity, design, their own basketball jerseys) -> the opportunity (8150ms)\nWho invented basketball?\tTallaght students\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Tallaght students, create, a Wonderland P3 Basketball) -> Tallaght students (8150ms)\nWho invented basketball?\tAdrian Hayes\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Adrian Hayes, has made, basketball) -> Adrian Hayes (8170ms)\nWho invented basketball?\tThe Kobe Dunks shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (The Kobe Dunks shoes, is designed for, basketball athletes) -> The Kobe Dunks shoes (8059ms)\nWho invented basketball?\tProgress\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Progress, has been made on, the basketball court relocation) -> Progress (8238ms)\nWho invented basketball?\tfun activities\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (fun activities, are designed around, basketball drills) -> fun activities (8203ms)\nWho invented basketball?\t1922 Mr. Angel Cabrera\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (1922 Mr. Angel Cabrera, created, the first basketball team) -> 1922 Mr. Angel Cabrera (8070ms)\nWho invented basketball?\tthe city\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the city, creates, a community basketball court) -> the city (8204ms)\nWho invented basketball?\tThe Nike Hyperdrunk Shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (The Nike Hyperdrunk Shoes, are designed for, basketball players) -> The Nike Hyperdrunk Shoes (8231ms)\nWho invented basketball?\tMarch Madness\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (March Madness, has made, college basketball) -> March Madness (8178ms)\nWho invented basketball?\ta YMCA\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented at, a YMCA) -> a YMCA (8121ms)\nWho invented basketball?\tMano\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Mano, created, the Excalibur Basketball Club) -> Mano (8203ms)\nWho invented basketball?\tRadio Philippines Network\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Radio Philippines Network, TV programs Created, The Basketball Show) -> Radio Philippines Network (8080ms)\nWho invented basketball?\tThe case\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (The case, is designed to hold, one full size basketball) -> The case (8187ms)\nWho invented basketball?\tTennis\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Tennis, so does, basketball) -> Tennis (8178ms)\nWho invented basketball?\tMike Hummel\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Mike Hummel, created, Advantage Basketball Camps) -> Mike Hummel (8059ms)\nWho invented basketball?\tthe rules book\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the rules book, will be created for, collegiate basketball) -> the rules book (8048ms)\nWho invented basketball?\tThe French\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (The French, have made inroads in, women?s basketball) -> The French (8244ms)\nWho invented basketball?\tThe Lady Tigers\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (The Lady Tigers, have made, basketball look) -> The Lady Tigers (8150ms)\nWho invented basketball?\tDavid Trubridge\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (David Trubridge, created, these Basketball Lights) -> David Trubridge (8224ms)\nWho invented basketball?\tthe NBL\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the NBL, has created, a basketball sneaker) -> the NBL (8210ms)\nWho invented basketball?\ta couple\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented, a couple) -> a couple (8161ms)\nWho invented basketball?\tTRP\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (TRP, created, the Resurrection Basketball League) -> TRP (8224ms)\nWho invented basketball?\tHe Ruiji\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (He Ruiji, Films production designed, Woman Basketball Player No. 5) -> He Ruiji (8187ms)\nWho invented basketball?\tHalifax\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (the men?s basketball championship, is taking place in, Halifax) -> Halifax (8112ms)\nWho invented basketball?\ta lot\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (a lot, to do with, basketball) -> a lot (8132ms)\nWho invented basketball?\ta new AD\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (a new AD, has made commitment to, men 's and women 's basketball) -> a new AD (8195ms)\nWho invented basketball?\tTorgerson\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Torgerson, created, the Ole Miss basketball network) -> Torgerson (8224ms)\nWho invented basketball?\tGod\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (God, created, bingo , basketball and beer) -> God (8178ms)\nWho invented basketball?\tkobe\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (kobe, is done with, basketball) -> kobe (8037ms)\nWho invented basketball?\tLicensed Highest Quality\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Licensed Highest Quality, do, basketball) -> Licensed Highest Quality (8244ms)\nWho invented basketball?\tn21\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (n21, Create, a basketball cake) -> n21 (8187ms)\nWho invented basketball?\tBoise st\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Boise st, did nothing in, basketball) -> Boise st (8037ms)\nWho invented basketball?\tthe end\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (America Basketball, was invented at, the end) -> the end (8070ms)\nWho invented basketball?\tthe centre\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (the centre, was originally designed for, basketball games) -> the centre (8121ms)\nWho invented basketball?\tSmall ball hoops\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Small ball hoops, were created with, basketball game players) -> Small ball hoops (8059ms)\nWho invented basketball?\ta floor\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (a floor, is somewhat uniquely designed for, basketball) -> a floor (8069ms)\nWho invented basketball?\tthe Tunit sports balls\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the Tunit sports balls, were created for, basketball quests) -> the Tunit sports balls (8070ms)\nWho invented basketball?\tDena Roth\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Dena Roth, Film sets designed, Love & Basketball) -> Dena Roth (8141ms)\nWho invented basketball?\tLegends Showcase\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Legends Showcase, creates, a truly unique basketball experience) -> Legends Showcase (8101ms)\nWho invented basketball?\tthe deeper question\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (the deeper question, does, basketball) -> the deeper question (8112ms)\nWho invented basketball?\ta Freshman\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (a Freshman, has decided to make, basketball) -> a Freshman (8231ms)\nWho invented basketball?\tthe contributions Pat\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (the contributions Pat, has made to, women?s basketball) -> the contributions Pat (8187ms)\nWho invented basketball?\tthe gym\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (a basketball game, taking place in, the gym) -> the gym (8091ms)\nWho invented basketball?\tMichael Jordan\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Michael Jordan, did for, basketball) -> Michael Jordan (8237ms)\nWho invented basketball?\tThe Discovery Channel\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (The Discovery Channel, have to do with, basketball) -> The Discovery Channel (8187ms)\nWho invented basketball?\tNBA Live\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (NBA Live, did for, basketball) -> NBA Live (8091ms)\nWho invented basketball?\tThe program\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (The program, is designed to improve, the basketball skills) -> The program (8178ms)\nWho invented basketball?\tUpward\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Upward, was designed to teach, basketball skills) -> Upward (8048ms)\nWho invented basketball?\tDez\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Dez, created, custom Wholesale Nike Basketball Shoes) -> Dez (8161ms)\nWho invented basketball?\tUF\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (UF, is doing very well in, Basketball) -> UF (8170ms)\nWho invented basketball?\tcompromises\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (compromises, had to be made to, his basketball philosophy) -> compromises (8238ms)\nWho invented basketball?\tThe diagrams\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (The diagrams, were created with, Basketball Playbook 010) -> The diagrams (8037ms)\nWho invented basketball?\tAyman Idais Academy\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Ayman Idais Academy, is to create, a lifetime basketball program) -> Ayman Idais Academy (8244ms)\nWho invented basketball?\tRuth E. Carter\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Ruth E. Carter, Costume Design for Film, Love & Basketball) -> Ruth E. Carter (8141ms)\nWho invented basketball?\tChristopher Nowak\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Christopher Nowak, Films production designed, The Basketball Diaries) -> Christopher Nowak (8195ms)\nWho invented basketball?\tBeaver Falls\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (a college basketball team, took place in, Beaver Falls) -> Beaver Falls (8187ms)\nWho invented basketball?\ta year\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (a year, ago has made, her college basketball choice) -> a year (8237ms)\nWho invented basketball?\ttwo years\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had been invented, two years) -> two years (8170ms)\nWho invented basketball?\tathletes\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (athletes, created, a competitive basketball team) -> athletes (8131ms)\nWho invented basketball?\tNike shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Nike shoes, are meticulously designed to make, your basketball) -> Nike shoes (8178ms)\nWho invented basketball?\tplay\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (play, do for, basketball) -> play (8131ms)\nWho invented basketball?\tBill Clinton\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Bill Clinton, created, midnight basketball) -> Bill Clinton (8101ms)\nWho invented basketball?\tDan Gilbert\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Dan Gilbert, create, a basketball team) -> Dan Gilbert (8131ms)\nWho invented basketball?\tJordan shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Jordan shoes, have been designed for, basketball players) -> Jordan shoes (8112ms)\nWho invented basketball?\tsale\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (sale, was n?t created, f?r basketball) -> sale (8238ms)\nWho invented basketball?\tLuck\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Luck, does play a part in, basketball) -> Luck (8091ms)\nWho invented basketball?\tPlayers\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Players, can create, their own basketball player) -> Players (8048ms)\nWho invented basketball?\tFootball teams\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Football teams, as do, Basketball) -> Football teams (8238ms)\nWho invented basketball?\tten miles\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had just been invented only, ten miles) -> ten miles (8150ms)\nWho invented basketball?\tdoes sport\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (does sport, does, basketball) -> does sport (8231ms)\nWho invented basketball?\tsuper lightweight shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (super lightweight shoes, designed for, basketball) -> super lightweight shoes (8091ms)\nWho invented basketball?\tMadison Square Garden\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> ('s basketball game, took place in, Madison Square Garden) -> Madison Square Garden (8217ms)\nWho invented basketball?\tthe team?s student managers\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the team?s student managers, created, a basketball half-court) -> the team?s student managers (8244ms)\nWho invented basketball?\tthe Internet\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (the Internet, has made, college basketball merchandise) -> the Internet (8224ms)\nWho invented basketball?\tLucas Oil\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Lucas Oil, was designed to host, basketball) -> Lucas Oil (8141ms)\nWho invented basketball?\tthe secret basketball players\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the secret basketball players, create, a new basketball player) -> the secret basketball players (8048ms)\nWho invented basketball?\tHarriet Zucker\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Harriet Zucker, Film sets designed, The Basketball Diaries) -> Harriet Zucker (8244ms)\nWho invented basketball?\tRichard\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Richard, had many attributes to make, a fine basketball coach) -> Richard (8121ms)\nWho invented basketball?\tthe arena\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (the arena, was custom-designed as, a basketball venue) -> the arena (8238ms)\nWho invented basketball?\ta $ 100,000 project\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (a $ 100,000 project, created, a hometown basketball camp) -> a $ 100,000 project (8187ms)\nWho invented basketball?\tJune\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (his own basketball camp, will take place in, June) -> June (8238ms)\nWho invented basketball?\ta street\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (a street, can also be used to create, basketball courts) -> a street (8048ms)\nWho invented basketball?\tYao Ming\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Yao Ming, created with, a basketball) -> Yao Ming (8224ms)\nWho invented basketball?\tThe congressional version\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (The congressional version, has nothing to do with, basketball) -> The congressional version (8080ms)\nWho invented basketball?\tthe foot or ankle\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (the foot or ankle, does occur in, basketball) -> the foot or ankle (8178ms)\nWho invented basketball?\tNike Blazer\t1.11111111111\tWho invented basketball? -> $x: ($x, first make, basketball) -> (Nike Blazer, was first made as, the basketball sneaker) -> Nike Blazer (8161ms)\nWho invented basketball?\tThe shootAndstar\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (The shootAndstar, is designed for, your basketball player) -> The shootAndstar (8080ms)\nWho invented basketball?\tyoung\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (young, does to play, basketball) -> young (8224ms)\nWho invented basketball?\tMitchell\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Mitchell, has made, the U.S. U-19 basketball squad) -> Mitchell (8224ms)\nWho invented basketball?\t?The investment\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (?The investment, has been made to, basketball) -> ?The investment (8091ms)\nWho invented basketball?\thist?ria\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (hist?ria, do, basketball) -> hist?ria (8178ms)\nWho invented basketball?\tStephen Schramm\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Stephen Schramm, create, the perfect ACC basketball player) -> Stephen Schramm (8101ms)\nWho invented basketball?\tWilliams ? boot camp workouts\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Williams ? boot camp workouts, did n?t require, basketballs) -> Williams ? boot camp workouts (8112ms)\nWho invented basketball?\tLyons\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Lyons, decided to create, the DONS Basketball League) -> Lyons (8141ms)\nWho invented basketball?\ta strong training club\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (a strong training club, created, a Division 1 basketball team) -> a strong training club (8210ms)\nWho invented basketball?\tLeBron\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (LeBron, is doing the same for, basketball) -> LeBron (8195ms)\nWho invented basketball?\tNike Company\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Nike Company, has designed, many basketball shoes) -> Nike Company (8141ms)\nWho invented basketball?\tyouth\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (youth, have made, their school basketball team) -> youth (8210ms)\nWho invented basketball?\tthe Air Force One shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (the Air Force One shoes, were designed for, basketball players) -> the Air Force One shoes (8132ms)\nWho invented basketball?\tRome\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Rome, has made tremendous strides as, a basketball player) -> Rome (8091ms)\nWho invented basketball?\tThe Blazers center\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (The Blazers center, may be done with, basketball) -> The Blazers center (8091ms)\nWho invented basketball?\tBritain\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Britain, does in, basketball) -> Britain (8161ms)\nWho invented basketball?\tthe conference\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (the conference, did revolve around, basketball) -> the conference (8178ms)\nWho invented basketball?\ta diversion\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented as, a diversion) -> a diversion (8250ms)\nWho invented basketball?\tThe entire area\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (The entire area, has a design around, the basketball game look) -> The entire area (8178ms)\nWho invented basketball?\tAir Jordan\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Air Jordan, has unveiled a new design of, their basketball kicks) -> Air Jordan (8048ms)\nWho invented basketball?\tfurther north\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented, further north) -> further north (8132ms)\nWho invented basketball?\tWang Yuebai\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Wang Yuebai, Films production designed, Woman Basketball Player No. 5) -> Wang Yuebai (8080ms)\nWho invented basketball?\tMichael Snaer\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Michael Snaer, created, a basketball culture) -> Michael Snaer (8037ms)\nWho invented basketball?\ta Frank Gehry\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (a Frank Gehry, designed, basketball arena) -> a Frank Gehry (8150ms)\nWho invented basketball?\tCalipari\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Calipari, has made, major-college basketball) -> Calipari (8210ms)\nWho invented basketball?\tBasketball Jones\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Basketball Jones, does stunts with, basketballs) -> Basketball Jones (8195ms)\nWho invented basketball?\toriginally\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented, originally) -> originally (8161ms)\nWho invented basketball?\tyup\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (yup, i do especially, basketball) -> yup (8231ms)\nWho invented basketball?\ttechnical college\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (technical college, creates the need for, college basketball) -> technical college (8121ms)\nWho invented basketball?\tTom\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Tom, helped design, the nike basketball shoes) -> Tom (8231ms)\nWho invented basketball?\tCBS Sports\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (CBS Sports, TV programs Created, College Basketball on CBS) -> CBS Sports (8217ms)\nWho invented basketball?\t100 years\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented more than, 100 years) -> 100 years (8112ms)\nWho invented basketball?\toffice supplies\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (office supplies, have to do with, basketball) -> office supplies (8059ms)\nWho invented basketball?\t1968\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (The first basketball skills competition, took place in, 1968) -> 1968 (8170ms)\nWho invented basketball?\t?Tone ?\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (?Tone ?, has made quite a splash in, the basketball world) -> ?Tone ? (8141ms)\nWho invented basketball?\tschools\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (schools, doing well in, basketball) -> schools (8187ms)\nWho invented basketball?\thes\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (hes, done with, basketball) -> hes (8244ms)\nWho invented basketball?\ta non-contact sport\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented as, a non-contact sport) -> a non-contact sport (8132ms)\nWho invented basketball?\tso many Asians\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (so many Asians, do love, basketball) -> so many Asians (8195ms)\nWho invented basketball?\ta center\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (a center, does in, basketball) -> a center (8059ms)\nWho invented basketball?\tProduction I.G\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Production I.G, TV programs Created, Kuroko's Basketball) -> Production I.G (8059ms)\nWho invented basketball?\tKobe\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Kobe, is done with, basketball) -> Kobe (8187ms)\nWho invented basketball?\tman\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (man, did, basketball) -> man (8141ms)\nWho invented basketball?\ta hall\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (a hall, designed for, basketball) -> a hall (8161ms)\nWho invented basketball?\ttwo venues\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (the Basketball competition, will take place in, two venues) -> two venues (8224ms)\nWho invented basketball?\tLoyola\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Loyola, are doing pretty well playing, basketball) -> Loyola (8150ms)\nWho invented basketball?\tMr. Onitsuka\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Mr. Onitsuka, created the first pair of, basketball shoes) -> Mr. Onitsuka (8217ms)\nWho invented basketball?\tNike company\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Nike company, design the shoes for, the NBA basketball players) -> Nike company (8170ms)\nWho invented basketball?\tcheap\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (cheap, designed exclusively shoe for, the NBA basketball player) -> cheap (8161ms)\nWho invented basketball?\tthe company\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the company, has created a standardized line for, basketball) -> the company (8204ms)\nWho invented basketball?\tInfront\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Infront, has created tremendous momentum for, Chinese basketball) -> Infront (8048ms)\nWho invented basketball?\tIllinois\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Illinois, has made a great choice for, its basketball coach) -> Illinois (8161ms)\nWho invented basketball?\tA Pose\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (A Pose, Has nothing to do with, basketball) -> A Pose (8170ms)\nWho invented basketball?\tDavid C. Robinson\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (David C. Robinson, Costume Design for Film, The Basketball Diaries) -> David C. Robinson (8037ms)\nWho invented basketball?\teverybody\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (everybody, was doing, basketball) -> everybody (8048ms)\nWho invented basketball?\tn20\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (n20, Create, a basketball cake) -> n20 (8048ms)\nWho invented basketball?\tthe EBAL\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (the Spartans basketball team, took over first place in, the EBAL) -> the EBAL (8210ms)\nWho invented basketball?\tImma\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Imma, do, basketball) -> Imma (8131ms)\nWho invented basketball?\tflat black\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (flat black, are designed for, the ProStar Basketball ceiling fan) -> flat black (8203ms)\nWho invented basketball?\tMichael Jordans\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Michael Jordans, did with, basketball) -> Michael Jordans (8080ms)\nWho invented basketball?\tHarlem?s dancehalls\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (basketball games, took place in, Harlem?s dancehalls) -> Harlem?s dancehalls (8238ms)\nWho invented basketball?\tThe original Nike Dunk\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (The original Nike Dunk, was created as, a basketball shoe) -> The original Nike Dunk (8080ms)\nWho invented basketball?\tThe cable\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (The cable, could have been made around, a basketball) -> The cable (8203ms)\nWho invented basketball?\tcustomers\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (customers, to create, their own basketball shoe) -> customers (8121ms)\nWho invented basketball?\tGampel Pavilion\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (men?s basketball, also took place in, Gampel Pavilion) -> Gampel Pavilion (8231ms)\nWho invented basketball?\tfootball strategy\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (football strategy, have to do with, basketball) -> football strategy (8112ms)\nWho invented basketball?\tTadatoshi Fujimaki\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Tadatoshi Fujimaki, Fictional universes created, Kuroko's Basketball) -> Tadatoshi Fujimaki (8231ms)\nWho invented basketball?\tGonzaga\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Gonzaga, has done in, basketball) -> Gonzaga (8217ms)\nWho invented basketball?\tGrant Township\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball registration, to take place in, Grant Township) -> Grant Township (8203ms)\nWho invented basketball?\tCalgary\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> ('s Basketball Championship, set to take place in, Calgary) -> Calgary (8170ms)\nWho invented basketball?\tCisco\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Cisco, created, The Wiz Kids basketball team) -> Cisco (8112ms)\nWho invented basketball?\tgirls\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (girls, was very first created with, basketball gamers) -> girls (8178ms)\nWho invented basketball?\tmore than 120 years ago\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball Shoes, was invented, more than 120 years ago) -> more than 120 years ago (8244ms)\nWho invented basketball?\tThe Jordans\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (The Jordans, are being created for, basketball players) -> The Jordans (8210ms)\nWho invented basketball?\tthe record\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (the record, did particularly well in, basketball) -> the record (8059ms)\nWho invented basketball?\tNIKE DUNK shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (NIKE DUNK shoes, is designed for, professional basketball player) -> NIKE DUNK shoes (8150ms)\nWho invented basketball?\tetc\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (etc, might have made an impact on, basketball) -> etc (8217ms)\nWho invented basketball?\tconsumers\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (consumers, compete to create, college basketball videos) -> consumers (8210ms)\nWho invented basketball?\tDiamonds\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Diamonds, are created from, a basketball-sized piece) -> Diamonds (8141ms)\nWho invented basketball?\tPro-Keds\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Pro-Keds, were specifically designed for, basketball) -> Pro-Keds (8231ms)\nWho invented basketball?\tBethany\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Bethany, has also made an impact on, the basketball court) -> Bethany (8161ms)\nWho invented basketball?\tthe first anime sport\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (the first anime sport, i did try to play, basketball) -> the first anime sport (8231ms)\nWho invented basketball?\tgreat fabrics\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (great fabrics, design, your own basketball socks) -> great fabrics (8210ms)\nWho invented basketball?\tAdidas Crazy 8 shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Adidas Crazy 8 shoes, are designed for, large basketball fans) -> Adidas Crazy 8 shoes (8131ms)\nWho invented basketball?\ta decade\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had been invented only about, a decade) -> a decade (8224ms)\nWho invented basketball?\the?s\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (he?s, does n?t play, basketball) -> he?s (8070ms)\nWho invented basketball?\tSouth Africa\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (South Africa, did like, basketball) -> South Africa (8070ms)\nWho invented basketball?\ta zone defense\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (a zone defense, does in, basketball) -> a zone defense (8121ms)\nWho invented basketball?\tBerlin\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (the Euroleague Basketball Final Four, took place in, Berlin) -> Berlin (8132ms)\nWho invented basketball?\teven more coaches\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (even more coaches, have made, Five-Star Basketball camps) -> even more coaches (8070ms)\nWho invented basketball?\tthe University\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented at, the University) -> the University (8161ms)\nWho invented basketball?\tColumbia\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball competition, will take place in, Columbia) -> Columbia (8195ms)\nWho invented basketball?\tthe awarded team\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the awarded team, creates for, Euroleague Basketball) -> the awarded team (8224ms)\nWho invented basketball?\tSeptember\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (5-12 Basketball, will take place in, September) -> September (8037ms)\nWho invented basketball?\tEven every year brands\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Even every year brands, create, basketball sneakers) -> Even every year brands (8187ms)\nWho invented basketball?\tA new award\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (A new award, was created in, basketball) -> A new award (8070ms)\nWho invented basketball?\tLost Boys\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Lost Boys, created, a 'quantum basketball) -> Lost Boys (8204ms)\nWho invented basketball?\ta shoe\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (a shoe, designed for, basketball) -> a shoe (8080ms)\nWho invented basketball?\tMalaysia\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (the Asian Basketball Championship, took place in, Malaysia) -> Malaysia (8161ms)\nWho invented basketball?\tn26\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (n26, Create, a basketball cake) -> n26 (8122ms)\nWho invented basketball?\tn19\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (n19, Create, a basketball cake) -> n19 (8195ms)\nWho invented basketball?\twinner\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (winner, has designed, the most comprehensive basketball) -> winner (8244ms)\nWho invented basketball?\tthe school gym\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (A basketball game, was taking place in, the school gym) -> the school gym (8204ms)\nWho invented basketball?\tAdidas\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Adidas, has created, a new basketball sneaker) -> Adidas (8210ms)\nWho invented basketball?\tability\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (ability, goes into designing, basketballs shoes) -> ability (8037ms)\nWho invented basketball?\tSt . Louis\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> ('s Basketball Championship, takes place in, St . Louis) -> St . Louis (8231ms)\nWho invented basketball?\tCustom\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Custom, design, your kids basketball uniform) -> Custom (8101ms)\nWho invented basketball?\tDude Perfect\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Dude Perfect, has made, trick-shot basketball videos) -> Dude Perfect (8091ms)\nWho invented basketball?\tpower programs\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (power programs, sometimes do in, basketball) -> power programs (8132ms)\nWho invented basketball?\tWittenberg\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Wittenberg, are doing so in, basketball) -> Wittenberg (8244ms)\nWho invented basketball?\taficionados\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (aficionados, can create, their own AF25 Nike basketball shoe) -> aficionados (8132ms)\nWho invented basketball?\tSmart\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Smart, has done so in, basketball) -> Smart (8112ms)\nWho invented basketball?\tLeonard Hamilton\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Leonard Hamilton, has made the game of, basketball boring) -> Leonard Hamilton (8204ms)\nWho invented basketball?\tTennessee\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Tennessee, did in, basketball) -> Tennessee (8224ms)\nWho invented basketball?\tLocal students\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Local students, create, basketball-playing robots) -> Local students (8210ms)\nWho invented basketball?\tmichael jordan\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (michael jordan, did with, basketball) -> michael jordan (8195ms)\nWho invented basketball?\tno decision\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (no decision, has been made on, basketball player Xavier Blount) -> no decision (8170ms)\nWho invented basketball?\tKU\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (KU, usually does better at, basketball) -> KU (8238ms)\nWho invented basketball?\tthe rules\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (the rules, created, basketball) -> the rules (8203ms)\nWho invented basketball?\ta recreational sport\t1.11111111111\tWho invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented as, a recreational sport) -> a recreational sport (8069ms)\nWho invented basketball?\tn17\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (n17, Create, a basketball cake) -> n17 (8080ms)\nWho invented basketball?\t64 :00\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (64 :00, do, basketball) -> 64 :00 (8170ms)\nWho invented basketball?\tScott and Kidd\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Scott and Kidd, created, a basketball symphony) -> Scott and Kidd (8187ms)\nWho invented basketball?\tNBC Sports\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (NBC Sports, TV programs Created, College Basketball on NBC) -> NBC Sports (8101ms)\nWho invented basketball?\tColin\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Colin, has also done videos for, basketball) -> Colin (8037ms)\nWho invented basketball?\tThe shoe\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (The shoe, is designed for, basketball) -> The shoe (8069ms)\nWho invented basketball?\tBHC BLOG Ethan Anderson\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (BHC BLOG Ethan Anderson, has created, the Select Basketball Blog) -> BHC BLOG Ethan Anderson (8217ms)\nWho invented basketball?\tthe Hornets\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (All home basketball games, take place in, the Hornets) -> the Hornets (8132ms)\nWho invented basketball?\tthe lakers\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (the lakers, did in, basketball) -> the lakers (8141ms)\nWho invented basketball?\tbooks\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (books, still do well at, basketball) -> books (8112ms)\nWho invented basketball?\tretro Jordan Shoes\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (retro Jordan Shoes, was designed for, basketball player.To) -> retro Jordan Shoes (8037ms)\nWho invented basketball?\tMarch or April\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball events, take place in, March or April) -> March or April (8048ms)\nWho invented basketball?\tThe Masonites\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (The Masonites, are doing more than, basketball) -> The Masonites (8080ms)\nWho invented basketball?\tI?ll\t1.11111111111\tWho invented basketball? -> $x: ($x, first make, basketball) -> (I?ll, make the first substitution in, pickup basketball history) -> I?ll (8080ms)\nWho invented basketball?\tBeth\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Beth, is done playing, basketball) -> Beth (8244ms)\nWho invented basketball?\tThree players\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Three players, have made the cut for, Miss Basketball) -> Three players (8231ms)\nWho invented basketball?\tn24\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (n24, Create, a basketball cake) -> n24 (8217ms)\nWho invented basketball?\tKyle\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Kyle, decided to do something with, basketball) -> Kyle (8187ms)\nWho invented basketball?\tJordan\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Jordan, eventually did return to, basketball) -> Jordan (8141ms)\nWho invented basketball?\tTravis\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Travis, did, basketball) -> Travis (8238ms)\nWho invented basketball?\tSneakers\t1.11111111111\tWho invented basketball? -> $x: ($x, design, basketball) -> (Sneakers, were designed for, basketball or tennis) -> Sneakers (8170ms)\nWho invented basketball?\tSaturday?s\t1.11111111111\tWho invented basketball? -> $x: (basketball, take place in, $x) -> (boys and girls basketball, will take place in, Saturday?s) -> Saturday?s (8250ms)\nWho invented basketball?\tFinally Spalding\t1.11111111111\tWho invented basketball? -> $x: ($x, create, basketball) -> (Finally Spalding, has created, a new basketball) -> Finally Spalding (8131ms)\nWho invented basketball?\tTrevor\t1.11111111111\tWho invented basketball? -> $x: ($x, have make, basketball) -> (Trevor, has made the transition to, basketball) -> Trevor (8217ms)\nWho invented basketball?\tAdam Smith\t1.11111111111\tWho invented basketball? -> $x: ($x, do, basketball) -> (Adam Smith, have to do with, basketball) -> Adam Smith (8059ms)\nWho invented basketball?\tBasketball\t0.999999999999\tWho invented basketball? -> $x: (basketball, invent, $x) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball (8250ms)\nWho invented basketball?\tdecember th\t0.999999999999\tWho invented basketball? -> $x: (basketball, invent, $x) -> (basketball, invented, december th) -> december th (8266ms)\nWho invented basketball?\tperiod\t0.999999999999\tWho invented basketball? -> $x: (basketball, invent, $x) -> (the best basketball, ever invented, period) -> period (8280ms)\nWho invented basketball?\tSheex\t0.999999999999\tWho invented basketball? -> $x: (basketball, invent, $x) -> ('s basketball coaches, invented, Sheex) -> Sheex (8250ms)\nWho invented basketball?\trap fashion\t0.999999999999\tWho invented basketball? -> $x: (basketball, invent, $x) -> (a basketball player, invent, rap fashion) -> rap fashion (8280ms)\nWho invented basketball?\ta few miles\t0.999999999999\tWho invented basketball? -> $x: (basketball, invent, $x) -> (Basketball, invented, a few miles) -> a few miles (8256ms)\nWho invented basketball?\tAmerican\t0.999999999998\tWho invented basketball? -> $x: (regulation, be invent in, $x) -> (Regulations & Subsidies Solar panels, were invented in, American) -> American (8285ms)\nWho invented basketball?\tthe 1600\t0.999999999998\tWho invented basketball? -> $x: (rule, be invent in, $x) -> (The Slide Rule, had been invented in, the 1600) -> the 1600 (8284ms)\nWho invented basketball?\tthe Mid 19th century\t0.999999999998\tWho invented basketball? -> $x: (rule, be invent in, $x) -> (Australian Rules football, was invented in, the Mid 19th century) -> the Mid 19th century (8284ms)\nWho invented basketball?\tthe 1620s\t0.999999999998\tWho invented basketball? -> $x: (rule, be invent in, $x) -> (the slide rule, was invented in, the 1620s) -> the 1620s (8288ms)\nWho invented basketball?\tthe first place\t0.999999999998\tWho invented basketball? -> $x: (guard, be invent in, $x) -> (a rash guard, has been invented in, the first place) -> the first place (8288ms)\nWho invented basketball?\t1622\t0.999999999998\tWho invented basketball? -> $x: (rule, be invent in, $x) -> (The slide rule, was invented in, 1622) -> 1622 (8285ms)\nWho invented basketball?\t1815\t0.999999999998\tWho invented basketball? -> $x: (rule, be invent in, $x) -> (Log-log Slide Rules Log-log rules, were invented in, 1815) -> 1815 (8284ms)\nWho invented basketball?\t1858\t0.999999999998\tWho invented basketball? -> $x: (rule, be invent in, $x) -> (Australian rules football, was invented in, 1858) -> 1858 (8288ms)\nWho invented basketball?\tthe beginning\t0.999999999998\tWho invented basketball? -> $x: (child, be invent in, $x) -> (child development, was invented in, the beginning) -> the beginning (8284ms)\nWho invented basketball?\t1870\t0.999999999998\tWho invented basketball? -> $x: (rim, be invent in, $x) -> (rim, was invented in, 1870) -> 1870 (8288ms)\nWho invented basketball?\t1632\t0.999999999998\tWho invented basketball? -> $x: (rule, be invent in, $x) -> (the slide rule, was invented in, 1632) -> 1632 (8288ms)\nWho invented basketball?\t1884\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball bat, was invented in, 1884) -> 1884 (8288ms)\nWho invented basketball?\t1964\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (Beep Baseball, was invented in, 1964) -> 1964 (8296ms)\nWho invented basketball?\tEngland\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, England) -> England (8296ms)\nWho invented basketball?\t1883\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (The baseball glove, was invented in, 1883) -> 1883 (8303ms)\nWho invented basketball?\tCooperstown\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball, was invented in, Cooperstown) -> Cooperstown (8302ms)\nWho invented basketball?\t1839 ~ Contrary\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (~ Baseball, was Invented in, 1839 ~ Contrary) -> 1839 ~ Contrary (8299ms)\nWho invented basketball?\t1834 Tilton\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, 1834 Tilton) -> 1834 Tilton (8303ms)\nWho invented basketball?\ta quaint rural town\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball, was invented in, a quaint rural town) -> a quaint rural town (8303ms)\nWho invented basketball?\tthe 1920s\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (Metal baseball bats, were invented in, the 1920s) -> the 1920s (8292ms)\nWho invented basketball?\t1839\t0.888888888887\tWho invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, 1839) -> 1839 (8302ms)\nWho invented basketball?\tDan Biasone\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Dan Biasone, invented, basketball) -> Dan Biasone (8313ms)\nWho invented basketball?\tthe moment James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the moment James Naismith, invented, basketball) -> the moment James Naismith (8305ms)\nWho invented basketball?\ta sports stringer\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (a sports stringer, invented, a college basketball team &) -> a sports stringer (8315ms)\nWho invented basketball?\tUnited States educator\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (United States educator, invented, the game of basketball) -> United States educator (8305ms)\nWho invented basketball?\tA Canadian doctor\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (A Canadian doctor, invented, Basketball) -> A Canadian doctor (8315ms)\nWho invented basketball?\tOnt.\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Ont., invented, basketball) -> Ont. (8313ms)\nWho invented basketball?\tCanadians\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Canadians, invented, Basketball) -> Canadians (8315ms)\nWho invented basketball?\tAl Gore\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Al Gore, invented, Basketball-Reference) -> Al Gore (8315ms)\nWho invented basketball?\tthe white man\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the white man, invented, basketball) -> the white man (8305ms)\nWho invented basketball?\twhite man\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (white man, invented, basketball) -> white man (8308ms)\nWho invented basketball?\troller James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (roller James Naismith, invented, the modern basketball) -> roller James Naismith (8308ms)\nWho invented basketball?\ta creative advertising agent\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (a creative advertising agent, invented, a basketball) -> a creative advertising agent (8313ms)\nWho invented basketball?\tBasketball Canadian Dr James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball Canadian Dr James Naismith (8313ms)\nWho invented basketball?\t1891 James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (1891 James Naismith, invented, basketball) -> 1891 James Naismith (8313ms)\nWho invented basketball?\tThe guy\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (The guy, invented, basketball) -> The guy (8310ms)\nWho invented basketball?\tthe same year James B. Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the same year James B. Naismith, invented, basketball) -> the same year James B. Naismith (8308ms)\nWho invented basketball?\tthe jews\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the jews, invented, basketball) -> the jews (8316ms)\nWho invented basketball?\tthe first try\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the first try, invented, basketball) -> the first try (8305ms)\nWho invented basketball?\ta KU Coach\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (a KU Coach, invented, basketball) -> a KU Coach (8303ms)\nWho invented basketball?\tthe who\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the who, invented, the game basketball) -> the who (8308ms)\nWho invented basketball?\t1891 - James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (1891 - James Naismith, invents, basketball) -> 1891 - James Naismith (8311ms)\nWho invented basketball?\tCanuck\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Canuck, invented, basketball) -> Canuck (8308ms)\nWho invented basketball?\tDr. Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Dr. Naismith, began inventing, basketball) -> Dr. Naismith (8313ms)\nWho invented basketball?\tMars\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Mars, invent, time travel or play basketball) -> Mars (8305ms)\nWho invented basketball?\tthe movement\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the movement, invented, basketball and volleyball) -> the movement (8305ms)\nWho invented basketball?\tProgram Director James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Program Director James Naismith, invented, Basketball) -> Program Director James Naismith (8315ms)\nWho invented basketball?\thistory ??\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (history ??, invented, basketball) -> history ?? (8311ms)\nWho invented basketball?\tThe Globetrotters\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (The Globetrotters, invented, show basketball) -> The Globetrotters (8305ms)\nWho invented basketball?\tthe Canadian physical education instructor\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the Canadian physical education instructor, invented, basketball) -> the Canadian physical education instructor (8315ms)\nWho invented basketball?\tYMCA instructor James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (YMCA instructor James Naismith, invented, basketball) -> YMCA instructor James Naismith (8313ms)\nWho invented basketball?\tthe person\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the person, invented, basketball) -> the person (8313ms)\nWho invented basketball?\tAny other interesting facts James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Any other interesting facts James Naismith, invented, basketball) -> Any other interesting facts James Naismith (8315ms)\nWho invented basketball?\tcollege students\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (college students, invented, basketball and volleyball) -> college students (8305ms)\nWho invented basketball?\tYMCA members\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (YMCA members, invented, basketball) -> YMCA members (8315ms)\nWho invented basketball?\tCompany History\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Company History, invented, basketball) -> Company History (8313ms)\nWho invented basketball?\tBasketball Dr. James Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Basketball Dr. James Naismith, invented, basketball) -> Basketball Dr. James Naismith (8308ms)\nWho invented basketball?\tthe short time limit Dr. Naismith\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the short time limit Dr. Naismith, invented, basketball) -> the short time limit Dr. Naismith (8311ms)\nWho invented basketball?\tThe Canadian\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (The Canadian, invented, the game of basketball) -> The Canadian (8311ms)\nWho invented basketball?\tThe Canadians\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (The Canadians, invented, basketball) -> The Canadians (8311ms)\nWho invented basketball?\tthe country\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (the country, invented, basketball) -> the country (8313ms)\nWho invented basketball?\tA Canadian\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (A Canadian, invented, basketball) -> A Canadian (8303ms)\nWho invented basketball?\tEuropeans\t0.6666666666630001\tWho invented basketball? -> $x: ($x, invent, basketball) -> (Europeans, invented, baseball , football and basketball) -> Europeans (8311ms)\nWhat is it called by the Indians?\tchurch\t0.888888888885\tWhat is it called by the Indians? -> $x: ($x, be fear of, indian) -> (church, was fear of, Indian attack) -> church (1255ms)\nWhat is it called by the Indians?\tKashmiris\t0.888888888885\tWhat is it called by the Indians? -> $x: ($x, be fear of, indian) -> (Kashmiris, are losing their fear of, Indian criminal police) -> Kashmiris (1256ms)\nWhat is it called by the Indians?\tthe River\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the River, called by, the Indians Ouragon) -> the River (3084ms)\nWhat is it called by the Indians?\tthe State\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the State, were called by, the Indians and Gonzalez) -> the State (1255ms)\nWhat is it called by the Indians?\tPenn Yan\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Penn Yan, was called by, the Indians O-go-ya-ga) -> Penn Yan (1373ms)\nWhat is it called by the Indians?\tKevin Costner?s character\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Kevin Costner?s character, is called by, the Indians) -> Kevin Costner?s character (3084ms)\nWhat is it called by the Indians?\ta large creek\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (a large creek, was called by, the Indians Catawba) -> a large creek (2245ms)\nWhat is it called by the Indians?\tPamlico Sound\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Pamlico Sound, called by, the Indians Roanoke Island) -> Pamlico Sound (3084ms)\nWhat is it called by the Indians?\tBarrington\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Barrington, was then called by, its Indian names) -> Barrington (1373ms)\nWhat is it called by the Indians?\tthe Chief\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the Chief, is called by, the Indians) -> the Chief (3084ms)\nWhat is it called by the Indians?\tAlaska?s largest river\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Alaska?s largest river, was called by, the Indians Throndink) -> Alaska?s largest river (3084ms)\nWhat is it called by the Indians?\tthe place\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the place, was called by, the Indians) -> the place (3084ms)\nWhat is it called by the Indians?\tan election\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (an election, shall be called by, the present Indian council) -> an election (3084ms)\nWhat is it called by the Indians?\tThe river\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (The river, was called by, the Indians Quinnehtuck) -> The river (2245ms)\nWhat is it called by the Indians?\tthe bay\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the bay, called by, the indians) -> the bay (1255ms)\nWhat is it called by the Indians?\tSam Houston\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Sam Houston, once was called by, the Indians) -> Sam Houston (3084ms)\nWhat is it called by the Indians?\tMark Gurath\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Mark Gurath, was called by, Indian Landing Lutheran congregation) -> Mark Gurath (1255ms)\nWhat is it called by the Indians?\tThe creek\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (The creek, was also called by, the Indians) -> The creek (2245ms)\nWhat is it called by the Indians?\tthe schools\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the schools, is called by, the Indian Association) -> the schools (2245ms)\nWhat is it called by the Indians?\tThe bridges\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (The bridges, are called by, their Hopi Indian names) -> The bridges (3084ms)\nWhat is it called by the Indians?\tMind\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Mind, was called by, Indian psychologists) -> Mind (1373ms)\nWhat is it called by the Indians?\tthe province\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the province, called Apalachen by, the Indians) -> the province (2245ms)\nWhat is it called by the Indians?\tKim\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Kim, was called by, the Indians) -> Kim (1373ms)\nWhat is it called by the Indians?\tThe whites\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (The whites, are called from their swords by, the Indians) -> The whites (1373ms)\nWhat is it called by the Indians?\tWestbrook parish\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Westbrook parish, was called by, its Indian name Pochaug) -> Westbrook parish (3084ms)\nWhat is it called by the Indians?\tthe east , contrary\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the east , contrary, is called by, the Indians Teotl Lixco) -> the east , contrary (1373ms)\nWhat is it called by the Indians?\theight\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (height, is called by, the Indians 'Kolana ') -> height (3084ms)\nWhat is it called by the Indians?\tthe first congregation\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the first congregation, still is called by, its Indian name) -> the first congregation (2245ms)\nWhat is it called by the Indians?\tMount Graham\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Mount Graham, called by, the ancient Hopi Indians) -> Mount Graham (2245ms)\nWhat is it called by the Indians?\tMr. Hridayesh Tripathi\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (Mr. Hridayesh Tripathi, were called by, Indian establishment) -> Mr. Hridayesh Tripathi (2245ms)\nWhat is it called by the Indians?\tKing Bowlegs\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (King Bowlegs, was called by, the Indians) -> King Bowlegs (1373ms)\nWhat is it called by the Indians?\tthe country\t0.444444444443\tWhat is it called by the Indians? -> $x: ($x, call by, indian) -> (the country, was called by, the Indians) -> the country (3084ms)\nWhat is it called by the Indians?\tDisease Control\t-0.222222222222\tWhat is it called by the Indians? -> $x: ($x, call by, cleveland) -> (Disease Control, was called in by, Cleveland doctors) -> Disease Control (3266ms)\nWhat is it called by the Indians?\tfederal troops\t-0.222222222222\tWhat is it called by the Indians? -> $x: ($x, call by, cleveland) -> (federal troops, called out by, President Grover Cleveland) -> federal troops (3275ms)\nWhat is it called by the Indians?\tFai\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian press, referred to, Fai) -> Fai (3403ms)\nWhat is it called by the Indians?\tthe movie\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the movie, does n?t sound, Indian) -> the movie (3342ms)\nWhat is it called by the Indians?\tSlate\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Slate, refers to, the American Indian Movement) -> Slate (3367ms)\nWhat is it called by the Indians?\tthe local newspapers\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the local newspapers, continued to refer to, the Indians) -> the local newspapers (3399ms)\nWhat is it called by the Indians?\tKalamkari\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Kalamkari, refers to, the Indian craft) -> Kalamkari (3318ms)\nWhat is it called by the Indians?\tthe narration\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the narration, sounds very, Indian- English) -> the narration (3371ms)\nWhat is it called by the Indians?\tHindu gods\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian clothes, even worshipped, Hindu gods) -> Hindu gods (3386ms)\nWhat is it called by the Indians?\tPlains Indian Sign Language Glossed Text\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Plains Indian Sign Language Glossed Text, Refers To, Plains Indian Sign Language) -> Plains Indian Sign Language Glossed Text (3390ms)\nWhat is it called by the Indians?\t182/2\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Mumbai Indians, raced to, 182/2) -> 182/2 (3395ms)\nWhat is it called by the Indians?\tEtienne Lucier\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, wife, indians) -> (Etienne Lucier, mentions his wife as, being a Spokane indian) -> Etienne Lucier (3342ms)\nWhat is it called by the Indians?\tWhite poppy seeds\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (White poppy seeds, are often referred to as, ' Indian') -> White poppy seeds (3299ms)\nWhat is it called by the Indians?\ta god\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the sun. Indians, worshiped the sun as, a god) -> a god (3291ms)\nWhat is it called by the Indians?\tIracema\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Iracema, refers to, an Indian female) -> Iracema (3352ms)\nWhat is it called by the Indians?\tthe indigenous population\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, use to be call, indians) -> (the indigenous population, (used to be called, Indians) -> the indigenous population (3358ms)\nWhat is it called by the Indians?\ta Maryland farmer\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (a Maryland farmer, raced, Indians) -> a Maryland farmer (3305ms)\nWhat is it called by the Indians?\tGeologist\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Geologist, refer to, the earliest Indians) -> Geologist (3383ms)\nWhat is it called by the Indians?\tthe Platte River\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian word, refers to, the Platte River) -> the Platte River (3383ms)\nWhat is it called by the Indians?\ta group\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, refer to, a group) -> a group (3362ms)\nWhat is it called by the Indians?\tsweet potatoes\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, referred to, sweet potatoes) -> sweet potatoes (3380ms)\nWhat is it called by the Indians?\ta common term\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (a common term, refered to, indians) -> a common term (3330ms)\nWhat is it called by the Indians?\tB1-256\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (B1-256, Sounds of, Indian America) -> B1-256 (3352ms)\nWhat is it called by the Indians?\tThe Muslims\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Muslims, referred to, the Indian people) -> The Muslims (3324ms)\nWhat is it called by the Indians?\tAmericans\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Americans, refer to, American Indians) -> Americans (3312ms)\nWhat is it called by the Indians?\tthe spirit\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshiped, the spirit) -> the spirit (3275ms)\nWhat is it called by the Indians?\tdemons\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, demons) -> demons (3399ms)\nWhat is it called by the Indians?\ta warm , friendly officer\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (a warm , friendly officer, refers to, the Indian Army) -> a warm , friendly officer (3291ms)\nWhat is it called by the Indians?\thorses\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (The Indians, have always raced, horses) -> horses (3403ms)\nWhat is it called by the Indians?\tCanada\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Canada, have been referred to as, Indians) -> Canada (3318ms)\nWhat is it called by the Indians?\tNorth India\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (North India, refer to, South Indians) -> North India (3401ms)\nWhat is it called by the Indians?\tRedskin Indians\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Redskin Indians, refers to, literally skinning American Indians) -> Redskin Indians (3371ms)\nWhat is it called by the Indians?\tHRT\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (The Indian driver, raced for, HRT) -> HRT (3325ms)\nWhat is it called by the Indians?\tthe vernacular Indian languages\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, often refer to, the vernacular Indian languages) -> the vernacular Indian languages (3399ms)\nWhat is it called by the Indians?\tThe word REDSKINS\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The word REDSKINS, refers to, a DEAD Indian) -> The word REDSKINS (3342ms)\nWhat is it called by the Indians?\thost\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Indian auto industry, is progressively racing ahead with, host) -> host (3389ms)\nWhat is it called by the Indians?\tcontact\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (contact, has referred to, Indians) -> contact (3318ms)\nWhat is it called by the Indians?\tthe Enemy\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Indians, are still Racing, the Enemy) -> the Enemy (3393ms)\nWhat is it called by the Indians?\ttsunamis\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (tsunamis, racing across, the Indian Ocean) -> tsunamis (3318ms)\nWhat is it called by the Indians?\tzibethinus\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (zibethinus, refers to, the Indian civet) -> zibethinus (3318ms)\nWhat is it called by the Indians?\tmamak\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (mamak, refers to, the Indian Muslims community) -> mamak (3291ms)\nWhat is it called by the Indians?\tsaints\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian villagers, can worship, saints) -> saints (3362ms)\nWhat is it called by the Indians?\tRedskins\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Redskins, refer to, a DEAD Indian) -> Redskins (3389ms)\nWhat is it called by the Indians?\tTulsi\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (Tulsi, is worshipped in, Indian homes) -> Tulsi (3390ms)\nWhat is it called by the Indians?\tthe ?merciless Indian Savages\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, are referred to as, the ?merciless Indian Savages) -> the ?merciless Indian Savages (3305ms)\nWhat is it called by the Indians?\tgold\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, gold) -> gold (3362ms)\nWhat is it called by the Indians?\tDC 20013\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (DC 20013, Sounds of, Indian Summer) -> DC 20013 (3383ms)\nWhat is it called by the Indians?\tthree times\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Indian Charlie, only raced, three times) -> three times (3318ms)\nWhat is it called by the Indians?\toutfielder/DH Johnny Damon\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, will call, $x) -> (The Indians, will likely call up, outfielder/DH Johnny Damon) -> outfielder/DH Johnny Damon (3324ms)\nWhat is it called by the Indians?\tthe Vedas\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian?s Corporate Headquarters ?, refers to, the Vedas) -> the Vedas (3352ms)\nWhat is it called by the Indians?\tAnasuya\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (Anasuya, sounds like, an Indian name) -> Anasuya (3318ms)\nWhat is it called by the Indians?\tredskins\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to as, redskins) -> redskins (3357ms)\nWhat is it called by the Indians?\ta sacred plant\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (a sacred plant, worshipped in, many Indian homes) -> a sacred plant (3342ms)\nWhat is it called by the Indians?\tHindus\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hindus, referred to, all Indians) -> Hindus (3376ms)\nWhat is it called by the Indians?\tNokia\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have worshiped, Nokia) -> Nokia (3380ms)\nWhat is it called by the Indians?\tCharles Nagy\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (Charles Nagy, was a young pitcher for, the Indians) -> Charles Nagy (3283ms)\nWhat is it called by the Indians?\ta huge tidal wave\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (a huge tidal wave, would race northward across, the Indian Ocean) -> a huge tidal wave (3389ms)\nWhat is it called by the Indians?\tnearly every instance\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, wife, indians) -> (nearly every instance, becomes the wife of, a blanket Indian) -> nearly every instance (3352ms)\nWhat is it called by the Indians?\tThayaparan\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, will call, $x) -> (poor Indians, will soon be calling for, Thayaparan) -> Thayaparan (3336ms)\nWhat is it called by the Indians?\tThe child\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, will call, indians) -> (The child, will legally still be called, an Indian) -> The child (3403ms)\nWhat is it called by the Indians?\tthe culture\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (South Indian culture, refers to, the culture) -> the culture (3383ms)\nWhat is it called by the Indians?\tHello Sunil?\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Hello Sunil?, sounds, an Indian name) -> Hello Sunil? (3401ms)\nWhat is it called by the Indians?\toccasions Lewis and Clark\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (occasions Lewis and Clark, refer to, the Indians) -> occasions Lewis and Clark (3330ms)\nWhat is it called by the Indians?\ta screen\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound like, $x) -> (The Indian government?s proposal, sounds more like, a screen) -> a screen (3395ms)\nWhat is it called by the Indians?\tProgressive Field\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, will call, $x) -> (the Indians, will now be called, Progressive Field) -> Progressive Field (3395ms)\nWhat is it called by the Indians?\thundreds\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (American Indian creationism ?, refers to, hundreds) -> hundreds (3325ms)\nWhat is it called by the Indians?\tTime periods\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Time periods, refer to, the Indian fiscal year) -> Time periods (3395ms)\nWhat is it called by the Indians?\tChie\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, Chie) -> Chie (3312ms)\nWhat is it called by the Indians?\ta contract extension\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (the Indians, signed a key young player to, a contract extension) -> a contract extension (3371ms)\nWhat is it called by the Indians?\tthe guy\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the guy, sounded, indian) -> the guy (3403ms)\nWhat is it called by the Indians?\tMakula\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, are referred to as, Makula) -> Makula (3275ms)\nWhat is it called by the Indians?\tthe devil\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worship, the devil) -> the devil (3379ms)\nWhat is it called by the Indians?\tthe workers\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the workers, referred to as, ?Indians) -> the workers (3311ms)\nWhat is it called by the Indians?\tthe sun\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshipped, the sun) -> the sun (3401ms)\nWhat is it called by the Indians?\tthe customer service agent\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the customer service agent, sounded, Indian) -> the customer service agent (3330ms)\nWhat is it called by the Indians?\tplayers\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (the Cleveland Indians, have a very good young crop of, players) -> players (3390ms)\nWhat is it called by the Indians?\tAmerican terms\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian programmer, sounds ridiculously low in, American terms) -> American terms (3318ms)\nWhat is it called by the Indians?\tSKINNER\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, use to be call, $x) -> (the Indian Army, used to be called, SKINNER) -> SKINNER (3367ms)\nWhat is it called by the Indians?\tthe Antiquarian Society\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (the Antiquarian Society, Have our present race of, Indians) -> the Antiquarian Society (3386ms)\nWhat is it called by the Indians?\tMcMurry University athletes\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, will call, indians) -> (McMurry University athletes, will still be called, \" Indians) -> McMurry University athletes (3337ms)\nWhat is it called by the Indians?\tRafael Nadal\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (Rafael Nadal, raced into, the Indian Wells quarter-finals) -> Rafael Nadal (3386ms)\nWhat is it called by the Indians?\ta 14-4 lead\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (The Indian, raced to, a 14-4 lead) -> a 14-4 lead (3399ms)\nWhat is it called by the Indians?\tHarry\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, wife, indians) -> (Harry, has a wife of, Malaysian Indian extraction) -> Harry (3283ms)\nWhat is it called by the Indians?\t?man meat\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound like, $x) -> (That Indian guy?s name, sounded like, ?man meat) -> ?man meat (3330ms)\nWhat is it called by the Indians?\tthe other matter\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian enrollment, referred to, the other matter) -> the other matter (3347ms)\nWhat is it called by the Indians?\tthe black giant\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (the black giant, had been worshipped by, the Indians) -> the black giant (3379ms)\nWhat is it called by the Indians?\tNative Americans\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, use to be call, indians) -> (Native Americans, used to be called, Indians) -> Native Americans (3357ms)\nWhat is it called by the Indians?\tSamba\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (African Sounds Indian, Sounds, Samba) -> Samba (3330ms)\nWhat is it called by the Indians?\tseveral countries\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (several countries, refer to, the Indian experience) -> several countries (3330ms)\nWhat is it called by the Indians?\tthe seventh day\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indian women, worship on, the seventh day) -> the seventh day (3347ms)\nWhat is it called by the Indians?\tGanesha\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (The ancient indians, worshipped, Ganesha) -> Ganesha (3403ms)\nWhat is it called by the Indians?\tthe elvish tunes\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the elvish tunes, do sound sort of, Indian) -> the elvish tunes (3371ms)\nWhat is it called by the Indians?\tthe students\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (the students, raced to, an Indian restaurant) -> the students (3342ms)\nWhat is it called by the Indians?\tThe guy\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (The guy, sounded, Indian) -> The guy (3324ms)\nWhat is it called by the Indians?\tfirst sight\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian, sounds at, first sight) -> first sight (3275ms)\nWhat is it called by the Indians?\tdi Resta\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (di Resta, would be racing for, the Indian-owned franchise) -> di Resta (3347ms)\nWhat is it called by the Indians?\tGod\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Inca Indians, worshipped the Sun as, God) -> God (3401ms)\nWhat is it called by the Indians?\ta 20-6 lead\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (the Indians, raced out to, a 20-6 lead) -> a 20-6 lead (3403ms)\nWhat is it called by the Indians?\tThe song\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The song, refers to, Mardi Gras Indian groups) -> The song (3386ms)\nWhat is it called by the Indians?\tSuper Azarbayjan\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Super Azarbayjan, sounds like, an Indian super hero) -> Super Azarbayjan (3367ms)\nWhat is it called by the Indians?\tline\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (line, are included other races such as, Indian) -> line (3352ms)\nWhat is it called by the Indians?\tpersons\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, refers to, persons) -> persons (3362ms)\nWhat is it called by the Indians?\tEPIC\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (EPIC, refer to, the Hopi Indians) -> EPIC (3305ms)\nWhat is it called by the Indians?\tthe bass drum\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (the bass drum, is made to sound like, Indian drums) -> the bass drum (3362ms)\nWhat is it called by the Indians?\tOgopogo\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, Ogopogo) -> Ogopogo (3299ms)\nWhat is it called by the Indians?\ta Great Spirit\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshipped, a Great Spirit) -> a Great Spirit (3386ms)\nWhat is it called by the Indians?\tthe Creator\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (many American Indians, referred to, the Creator) -> the Creator (3352ms)\nWhat is it called by the Indians?\tprivate e-mails\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (private e-mails, referred to, the Indians) -> private e-mails (3376ms)\nWhat is it called by the Indians?\tthe wind\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (The Indian, prefers the soft sound of, the wind) -> the wind (3399ms)\nWhat is it called by the Indians?\tthe walled city\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Ancient American Indian legends, refer to, the walled city) -> the walled city (3401ms)\nWhat is it called by the Indians?\tthe caste Chamar\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (the way Indians, referred to, the caste Chamar) -> the caste Chamar (3336ms)\nWhat is it called by the Indians?\tthe Sun\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian no more, worshiped, the Sun) -> the Sun (3401ms)\nWhat is it called by the Indians?\todds\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (pokernews global new york indian casinos, greyhound racing, odds) -> odds (3383ms)\nWhat is it called by the Indians?\tThe Kundalini force\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Kundalini force, refers to, the ancient Indian idea) -> The Kundalini force (3336ms)\nWhat is it called by the Indians?\tRock & Roll\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (indigenous Native Indian, sounds with, Rock & Roll) -> Rock & Roll (3380ms)\nWhat is it called by the Indians?\tNaxalism\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian leaders, have referred to, Naxalism) -> Naxalism (3403ms)\nWhat is it called by the Indians?\tHindu religion\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, is referring to, Hindu religion) -> Hindu religion (3305ms)\nWhat is it called by the Indians?\tThe author\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The author, refers to, the Indian) -> The author (3275ms)\nWhat is it called by the Indians?\t?amakulas\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (?amakulas, was used to refer to, Indians) -> ?amakulas (3399ms)\nWhat is it called by the Indians?\tUlips\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (Ulips, are young products in, the Indian market) -> Ulips (3347ms)\nWhat is it called by the Indians?\tFirst Nations\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Status Indian, refers to, First Nations) -> First Nations (3390ms)\nWhat is it called by the Indians?\ta company\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, will call, indians) -> (a company, will be called, an Indian company) -> a company (3299ms)\nWhat is it called by the Indians?\tAmerican actor Brian White\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (American actor Brian White, sounds upbeat about, Indian films) -> American actor Brian White (3379ms)\nWhat is it called by the Indians?\tanimals\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, animals) -> animals (3362ms)\nWhat is it called by the Indians?\tRed Indians\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, use to be call, $x) -> (Some U.S Indians, (used to be called, Red Indians) -> Red Indians (3330ms)\nWhat is it called by the Indians?\tMamak\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Mamak, refers to, the Indian Muslims) -> Mamak (3399ms)\nWhat is it called by the Indians?\tthe Reservation\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian constitution, refers to, the Reservation) -> the Reservation (3336ms)\nWhat is it called by the Indians?\tfront\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (Indian troops, kill young children right in, front) -> front (3357ms)\nWhat is it called by the Indians?\tOklahoma\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian, Sounds in, Oklahoma) -> Oklahoma (3371ms)\nWhat is it called by the Indians?\tthe tsunami\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (the tsunami, raced across, the Indian Ocean) -> the tsunami (3312ms)\nWhat is it called by the Indians?\tAani\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (Aani, [is] a young girl in, a large Indian family) -> Aani (3371ms)\nWhat is it called by the Indians?\tAgni\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian Brahmin priests, were worshiping, Agni) -> Agni (3305ms)\nWhat is it called by the Indians?\tthe Delta Force\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian television, referred to, the Delta Force) -> the Delta Force (3358ms)\nWhat is it called by the Indians?\ta reptilian race\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian texts, refer to, a reptilian race) -> a reptilian race (3342ms)\nWhat is it called by the Indians?\tKamaljit\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Kamaljit, sounds though like, an Indian name) -> Kamaljit (3367ms)\nWhat is it called by the Indians?\tdrives\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Ounce ? sample and Indian sitar, sounds, drives) -> drives (3395ms)\nWhat is it called by the Indians?\tthe ornamental corn\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (?Indian Corn ?, refers to, the ornamental corn) -> the ornamental corn (3383ms)\nWhat is it called by the Indians?\tdisabilities\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (Indian parents, have children/young adults with, disabilities) -> disabilities (3376ms)\nWhat is it called by the Indians?\tThe word\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The word, refers to, Indians) -> The word (3392ms)\nWhat is it called by the Indians?\tNeal\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Neal, refers to, the Indian city) -> Neal (3376ms)\nWhat is it called by the Indians?\tThe caller\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (The caller, sounded, Indian) -> The caller (3376ms)\nWhat is it called by the Indians?\tKerala\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (Kerala, is a very young addition to, the Indian peninsula) -> Kerala (3312ms)\nWhat is it called by the Indians?\ta contending position\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (INDIAN BROOM, raced to, a contending position) -> a contending position (3357ms)\nWhat is it called by the Indians?\tThe store manager\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (The store manager, sounds, East Indian) -> The store manager (3390ms)\nWhat is it called by the Indians?\tgoalkeeper Sam Walker\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (the Indian team, YOUNG, goalkeeper Sam Walker) -> goalkeeper Sam Walker (3299ms)\nWhat is it called by the Indians?\tthe location\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Chippewa Indians, referred to, the location) -> the location (3390ms)\nWhat is it called by the Indians?\tthe Great Spirit\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, Worshiped, the Great Spirit) -> the Great Spirit (3395ms)\nWhat is it called by the Indians?\tThe agency\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, will call, indians) -> (The agency, will reportedly be called, the Indian Agency) -> The agency (3376ms)\nWhat is it called by the Indians?\tdown\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (the Indians, would send half a dozen of their young Lads, down) -> down (3347ms)\nWhat is it called by the Indians?\tthe Mission Church\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (The Wyandot Indians, worshipped at, the Mission Church) -> the Mission Church (3386ms)\nWhat is it called by the Indians?\trats\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, always worshipped, rats) -> rats (3336ms)\nWhat is it called by the Indians?\tthe indigenous people\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the indigenous people, are sometimes referred to as, Indians) -> the indigenous people (3283ms)\nWhat is it called by the Indians?\tThe Swami\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Swami, referred to, the Indian scientist) -> The Swami (3371ms)\nWhat is it called by the Indians?\tNeem\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Ancient Indian texts, refer to, Neem) -> Neem (3367ms)\nWhat is it called by the Indians?\tUganda\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Indian and Chinese companies, have joined the race for, Uganda) -> Uganda (3357ms)\nWhat is it called by the Indians?\tthe way drums\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the way drums, can sound in, Indian classical music) -> the way drums (3371ms)\nWhat is it called by the Indians?\ta quaver\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (a quaver, sounded a little like, American Indian song) -> a quaver (3399ms)\nWhat is it called by the Indians?\tno monsoon\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (no monsoon, must sound quite incredible to, the indian mind) -> no monsoon (3386ms)\nWhat is it called by the Indians?\ttown\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (town, sounds different from, the Indian food) -> town (3305ms)\nWhat is it called by the Indians?\tthe same kind\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (the same kind, are still worshipped in, Indian villages today) -> the same kind (3386ms)\nWhat is it called by the Indians?\tthe Caribbean fuse\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (classical Indian music, here sounds from, the Caribbean fuse) -> the Caribbean fuse (3393ms)\nWhat is it called by the Indians?\tThe name sepoy\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The name sepoy, refers to, the Indian soldiers) -> The name sepoy (3357ms)\nWhat is it called by the Indians?\ta fanged dwarf villain\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (a fanged dwarf villain, worshipped by, Inca Indians) -> a fanged dwarf villain (3367ms)\nWhat is it called by the Indians?\tHanson\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hanson, referred to, American Indian resistance) -> Hanson (3291ms)\nWhat is it called by the Indians?\tthe pale skin\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian society, generally worships, the pale skin) -> the pale skin (3283ms)\nWhat is it called by the Indians?\tMARRIAGE\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (MARRIAGE, 're just sounding like, a traditional Indian housewife) -> MARRIAGE (3392ms)\nWhat is it called by the Indians?\tThe latter\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The latter, refer to, the Indian Army) -> The latter (3362ms)\nWhat is it called by the Indians?\tasleep\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (the Indians, were sound, asleep) -> asleep (3383ms)\nWhat is it called by the Indians?\tFort Miami\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Fleeing Indians, raced toward, Fort Miami) -> Fort Miami (3371ms)\nWhat is it called by the Indians?\ta French man\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (a French man, sounds astonishingly like, an Indian) -> a French man (3401ms)\nWhat is it called by the Indians?\tthe beat\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the beat, sounds, a little West Indian) -> the beat (3330ms)\nWhat is it called by the Indians?\tVancouver\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (Vancouver, sounds like, Indian pop) -> Vancouver (3395ms)\nWhat is it called by the Indians?\tthe altar\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (the altar, is worshiped in, most Indian people) -> the altar (3403ms)\nWhat is it called by the Indians?\tJamaica\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (?British West Indian colonies ?, refers to, Jamaica) -> Jamaica (3318ms)\nWhat is it called by the Indians?\teither sex\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (either sex, have been taken prisoners young by, Indians) -> either sex (3299ms)\nWhat is it called by the Indians?\tIUP\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, will call, indians) -> (IUP, still will be called, the Indians) -> IUP (3376ms)\nWhat is it called by the Indians?\tside\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the old Church white men and Indians, worshiped, side) -> side (3367ms)\nWhat is it called by the Indians?\tHerb\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (?The Indians, won the race for, Herb) -> Herb (3393ms)\nWhat is it called by the Indians?\tthe fusion\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (the fusion, sounds like, traditional Indian music) -> the fusion (3389ms)\nWhat is it called by the Indians?\tearlier\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Old Indian Lane, referred to, earlier) -> earlier (3401ms)\nWhat is it called by the Indians?\tthe bird\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (the bird, was once worshipped by, the Mayan and Aztec Indians) -> the bird (3275ms)\nWhat is it called by the Indians?\tTelugu and Kannada\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (two Indians translators, recorded sounds in, Telugu and Kannada) -> Telugu and Kannada (3399ms)\nWhat is it called by the Indians?\tKali\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (an ancient Indian religious organization, worshiped, Kali) -> Kali (3371ms)\nWhat is it called by the Indians?\tthe developments\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian official, referred to, the developments) -> the developments (3305ms)\nWhat is it called by the Indians?\tthe goddess\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian cult, worshiped, the goddess) -> the goddess (3312ms)\nWhat is it called by the Indians?\tthe staple crops\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Early Indians, referred to, the staple crops) -> the staple crops (3352ms)\nWhat is it called by the Indians?\tJewish Standard Time\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Jewish Standard Time, sounds a lot like, Indian Standard Time) -> Jewish Standard Time (3362ms)\nWhat is it called by the Indians?\tthe variegated variety\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian corn, refers to, the variegated variety) -> the variegated variety (3352ms)\nWhat is it called by the Indians?\tdentistry\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (dentistry, refer to, the Indian Dental Association) -> dentistry (3311ms)\nWhat is it called by the Indians?\tcontrol ?\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (The Indians, have several young players under, control ?) -> control ? (3283ms)\nWhat is it called by the Indians?\tthe caller\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the caller, sounds, Indian) -> the caller (3395ms)\nWhat is it called by the Indians?\ta blast\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (a blast, sounded like, an Indian snake charmer) -> a blast (3383ms)\nWhat is it called by the Indians?\tsuicidal\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, will call, $x) -> (the Indian highways, will normally be called, suicidal) -> suicidal (3305ms)\nWhat is it called by the Indians?\tsoulful hip hop\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (subtle South-Asian and West Indian, sounds with, soulful hip hop) -> soulful hip hop (3371ms)\nWhat is it called by the Indians?\tIndians\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (the Indian Navy, will sound naive to, Indians) -> Indians (3312ms)\nWhat is it called by the Indians?\tthe terms\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the terms, refer generally to, Indians) -> the terms (3393ms)\nWhat is it called by the Indians?\tindigenous peoples\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian government, refers to, indigenous peoples) -> indigenous peoples (3299ms)\nWhat is it called by the Indians?\tAustralia\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, wife, $x) -> (an Indian, killed his wife in, Australia) -> Australia (3324ms)\nWhat is it called by the Indians?\tthe goddess of death\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian cult, worshiped, the goddess of death) -> the goddess of death (3312ms)\nWhat is it called by the Indians?\tSuneet and Raja Tulli\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to as, Suneet and Raja Tulli) -> Suneet and Raja Tulli (3347ms)\nWhat is it called by the Indians?\treelection\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (reelection, referred to, an Indian employee) -> reelection (3324ms)\nWhat is it called by the Indians?\tthe goddess Huitzilopochotli\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Zapotec Indians, worshipped, the goddess Huitzilopochotli) -> the goddess Huitzilopochotli (3379ms)\nWhat is it called by the Indians?\tEskimos\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (\" Indians, refers to, Eskimos) -> Eskimos (3305ms)\nWhat is it called by the Indians?\tMango shake\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Mango shake, sounds perfect for, the Indian summer) -> Mango shake (3399ms)\nWhat is it called by the Indians?\tPNC Park\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (PNC Park, sounds exceedingly similar to, the Indians) -> PNC Park (3367ms)\nWhat is it called by the Indians?\ta place\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (an Indian term, referred to, a place) -> a place (3383ms)\nWhat is it called by the Indians?\tWen\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Wen, sounded unhappy with, the Indian media) -> Wen (3311ms)\nWhat is it called by the Indians?\tMaguire\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Maguire, refers to, the Indians) -> Maguire (3376ms)\nWhat is it called by the Indians?\tThe Stallions\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, use to be call, indians) -> (The Stallions, used to be called, the Indians) -> The Stallions (3299ms)\nWhat is it called by the Indians?\tI?ve\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (I?ve, always enjoyed the sound of, Indian music) -> I?ve (3318ms)\nWhat is it called by the Indians?\tusually\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (an Indian, is referred to, usually) -> usually (3399ms)\nWhat is it called by the Indians?\tBritish Sahibs\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, were referred to by, British Sahibs) -> British Sahibs (3399ms)\nWhat is it called by the Indians?\tthe band\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred both to, the band) -> the band (3275ms)\nWhat is it called by the Indians?\tTaylor\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Native-Indian-like tom-tom, sounds from, Taylor) -> Taylor (3379ms)\nWhat is it called by the Indians?\tterms\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (terms, refers to, Indians) -> terms (3283ms)\nWhat is it called by the Indians?\tthe treaty\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the treaty, refers to, ?Indian Kings and Queens?) -> the treaty (3352ms)\nWhat is it called by the Indians?\ta younger version\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Ten Little Indians, sounds much like, a younger version) -> a younger version (3403ms)\nWhat is it called by the Indians?\tterm ?tribal?\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (term ?tribal?, refers to, an Indian tribe) -> term ?tribal? (3362ms)\nWhat is it called by the Indians?\tThe victim\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, wife, indians) -> (The victim, was the ex-wife of, former Indian Ambassador) -> The victim (3403ms)\nWhat is it called by the Indians?\tthe saloon\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Indians, then had raced for, the saloon) -> the saloon (3283ms)\nWhat is it called by the Indians?\tthe phone\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the phone, sounded, Indian) -> the phone (3347ms)\nWhat is it called by the Indians?\tThe Marietta Times THUD!\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (The Marietta Times THUD!, 's the sound of, my Cleveland Indians) -> The Marietta Times THUD! (3383ms)\nWhat is it called by the Indians?\tthe alarm bells\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the alarm bells, have sounded on, the tiny Indian Ocean island) -> the alarm bells (3318ms)\nWhat is it called by the Indians?\tTituba\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (John Indian, playfully refers to, Tituba) -> Tituba (3352ms)\nWhat is it called by the Indians?\tThe voice\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (The voice, sounds like, old Indian) -> The voice (3392ms)\nWhat is it called by the Indians?\tKun Faya Kun\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Kun Faya Kun, sound like, an Indian melody) -> Kun Faya Kun (3383ms)\nWhat is it called by the Indians?\tthe mountains and valleys\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, referred to, the mountains and valleys) -> the mountains and valleys (3401ms)\nWhat is it called by the Indians?\tSwitzerland\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Switzerland, sounds to, Indians) -> Switzerland (3312ms)\nWhat is it called by the Indians?\tthe Venezuelan goddess\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (the Venezuelan goddess, was worshipped by, the native Indians) -> the Venezuelan goddess (3362ms)\nWhat is it called by the Indians?\tpictures\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian grammarian, refers to, pictures) -> pictures (3275ms)\nWhat is it called by the Indians?\t?Jefferson\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (?Jefferson, was referring only to, Indians) -> ?Jefferson (3389ms)\nWhat is it called by the Indians?\tMr. Abramoff\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Mr. Abramoff, referred to, these Indians) -> Mr. Abramoff (3357ms)\nWhat is it called by the Indians?\ta deity\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian toddler Lakshmi Tatma, worshipped as, a deity) -> a deity (3389ms)\nWhat is it called by the Indians?\ta date\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (Indian policewomen, attacked a young woman on, a date) -> a date (3386ms)\nWhat is it called by the Indians?\tFirst Nations peoples\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (First Nations peoples, refers to, the Indian people) -> First Nations peoples (3386ms)\nWhat is it called by the Indians?\ta little trumpet\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (The Indians, sounded, a little trumpet) -> a little trumpet (3352ms)\nWhat is it called by the Indians?\tthe other doctors\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the other doctors, refer to, an Indian doctor) -> the other doctors (3337ms)\nWhat is it called by the Indians?\twater\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (these Indians, worship, water) -> water (3392ms)\nWhat is it called by the Indians?\tEastern\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Eastern, sounds, Indian tabla player) -> Eastern (3336ms)\nWhat is it called by the Indians?\tthe Lo-Shu\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The ancient Indian seers, referred to, the Lo-Shu) -> the Lo-Shu (3383ms)\nWhat is it called by the Indians?\tThe last validation\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The last validation, refers to, my Indian heritage) -> The last validation (3324ms)\nWhat is it called by the Indians?\tSouth Asia\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (South Asia, refers to, the Indian subcontinent) -> South Asia (3362ms)\nWhat is it called by the Indians?\tMarch\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, will call, $x) -> (An Indians Rep, will call you in, March) -> March (3376ms)\nWhat is it called by the Indians?\tGandhi&emdash ;he\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (An old Indian man, had been a young aide to, Gandhi&emdash ;he) -> Gandhi&emdash ;he (3371ms)\nWhat is it called by the Indians?\tIndica\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Indica, refers to, its Indian origin) -> Indica (3342ms)\nWhat is it called by the Indians?\tthe ballots\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the ballots, referred to, Indians) -> the ballots (3386ms)\nWhat is it called by the Indians?\t1 Cylan\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (1 Cylan, is a young girl in, a small east Indian village) -> 1 Cylan (3399ms)\nWhat is it called by the Indians?\ta tea\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (a tea, sounded, Indian i .e) -> a tea (3403ms)\nWhat is it called by the Indians?\ta contract\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (the Indians, have signed a young player to, a contract) -> a contract (3392ms)\nWhat is it called by the Indians?\tthe Hindu demigods\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian cricketers, are worshipped like, the Hindu demigods) -> the Hindu demigods (3324ms)\nWhat is it called by the Indians?\tsnakes\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, snakes) -> snakes (3403ms)\nWhat is it called by the Indians?\tthe same legendary spot\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indians, refer to, the same legendary spot) -> the same legendary spot (3362ms)\nWhat is it called by the Indians?\tlanes\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Indian cab-drivers, raced across, lanes) -> lanes (3330ms)\nWhat is it called by the Indians?\tbad today\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian people, does n?t sound so, bad today) -> bad today (3291ms)\nWhat is it called by the Indians?\tthe island\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indians, referred to, the island) -> the island (3299ms)\nWhat is it called by the Indians?\thistorical figures\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Old Indian Days, refers to, historical figures) -> historical figures (3371ms)\nWhat is it called by the Indians?\ta cow horn\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian, sounded, a cow horn) -> a cow horn (3403ms)\nWhat is it called by the Indians?\tnames\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (names, referring to, Indians) -> names (3376ms)\nWhat is it called by the Indians?\tthe term\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the term, often refers to, Indians) -> the term (3336ms)\nWhat is it called by the Indians?\tthe withdrawal\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian leaders, refers to, the withdrawal) -> the withdrawal (3291ms)\nWhat is it called by the Indians?\tparticipation\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian economy, will be sounded with, participation) -> participation (3380ms)\nWhat is it called by the Indians?\tthe earth\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (American Indian traditions, refer to, the earth) -> the earth (3299ms)\nWhat is it called by the Indians?\tRahul\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Rahul, refers to, a prominent Indian actor) -> Rahul (3376ms)\nWhat is it called by the Indians?\tJunglee .com\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, will call, $x) -> (their Indian branch, will be called, Junglee .com) -> Junglee .com (3393ms)\nWhat is it called by the Indians?\tMound builders\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (Mound builders, were a different race than, Indians) -> Mound builders (3395ms)\nWhat is it called by the Indians?\tAbramoff\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Abramoff, referred to, his Indian clients) -> Abramoff (3392ms)\nWhat is it called by the Indians?\ta 6th grade teacher\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (a 6th grade teacher, referred to, American Indians) -> a 6th grade teacher (3386ms)\nWhat is it called by the Indians?\tDev?\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian context, is worship of, Dev?) -> Dev? (3352ms)\nWhat is it called by the Indians?\tThe Hot Stone\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Hot Stone, refers to, the Oneida Indians) -> The Hot Stone (3283ms)\nWhat is it called by the Indians?\tthe Mexican cactus\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (the Mexican cactus, was once worshiped by, Indian tribes) -> the Mexican cactus (3312ms)\nWhat is it called by the Indians?\tthe gods\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (the gods, worshipped by, the Indians) -> the gods (3380ms)\nWhat is it called by the Indians?\tEven the East India Company\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Even the East India Company, referred to, Indian Muslims) -> Even the East India Company (3379ms)\nWhat is it called by the Indians?\tthe new King\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound like, $x) -> (Indian oligarch Tata, is sounding like, the new King) -> the new King (3347ms)\nWhat is it called by the Indians?\tThe original phrasing\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (The original phrasing, sounds like, the Indian band) -> The original phrasing (3390ms)\nWhat is it called by the Indians?\tthe music players\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (the music players, sounded like, Indian words) -> the music players (3357ms)\nWhat is it called by the Indians?\trisk\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (Indian sensibilities, puts young lives at, risk) -> risk (3403ms)\nWhat is it called by the Indians?\tApril 9 , 2010\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian Express Eco, Sounds, April 9 , 2010) -> April 9 , 2010 (3275ms)\nWhat is it called by the Indians?\ttrees\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Native American Indians, refer to, trees) -> trees (3358ms)\nWhat is it called by the Indians?\tBengalis\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (Bengalis, are the same race as, Indians) -> Bengalis (3367ms)\nWhat is it called by the Indians?\ta defiant note\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian official, sounded, a defiant note) -> a defiant note (3395ms)\nWhat is it called by the Indians?\trivers\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have worshipped, rivers) -> rivers (3401ms)\nWhat is it called by the Indians?\tOne Maori site\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (One Maori site, referred to, Indian ambition) -> One Maori site (3367ms)\nWhat is it called by the Indians?\tSnack\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Snack, enjoy the sounds of, live Indian music) -> Snack (3393ms)\nWhat is it called by the Indians?\tDalits\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Bigoted Indians, refer to, Dalits) -> Dalits (3362ms)\nWhat is it called by the Indians?\tAtul\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (Atul, is a young student of, Indian origin) -> Atul (3352ms)\nWhat is it called by the Indians?\tthe Formula 1\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Indian GP, was the smooth race in, the Formula 1) -> the Formula 1 (3342ms)\nWhat is it called by the Indians?\tspiced tea\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, normally refer to, spiced tea) -> spiced tea (3383ms)\nWhat is it called by the Indians?\tAnkytrixx\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Ankytrixx, truly represents the sound of, Indian EDM.) -> Ankytrixx (3352ms)\nWhat is it called by the Indians?\tBuddh International Circuit\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (2011 Indian Grand Prix, Race Track, Buddh International Circuit) -> Buddh International Circuit (3367ms)\nWhat is it called by the Indians?\ta song sequence\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian movies, refers to, a song sequence) -> a song sequence (3324ms)\nWhat is it called by the Indians?\tcricket\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (cricket, is worshiped in, India and Indians) -> cricket (3330ms)\nWhat is it called by the Indians?\tRadha Krishna Portraits\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian love, worship, Radha Krishna Portraits) -> Radha Krishna Portraits (3367ms)\nWhat is it called by the Indians?\tThe Buddha\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Buddha, refers to, an Indian sage) -> The Buddha (3357ms)\nWhat is it called by the Indians?\tFools Crow\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (Fools Crow, is a young warrior in, the Blackfeet Indian tribe) -> Fools Crow (3275ms)\nWhat is it called by the Indians?\tgarlic\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Egyptian and Indian cultures, referred to, garlic) -> garlic (3383ms)\nWhat is it called by the Indians?\tone group\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshiped, one group) -> one group (3401ms)\nWhat is it called by the Indians?\tcorn and corn meal\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (?Indian?, was used to refer to, corn and corn meal) -> corn and corn meal (3342ms)\nWhat is it called by the Indians?\tthe work\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the work, refers to, Indian) -> the work (3386ms)\nWhat is it called by the Indians?\tMonkey God\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian Hindu, worships, Monkey God) -> Monkey God (3401ms)\nWhat is it called by the Indians?\tone Supreme Being\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worship, one Supreme Being) -> one Supreme Being (3386ms)\nWhat is it called by the Indians?\tprotesters\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (protesters, sounds like, a Mardi Gras Indians song) -> protesters (3389ms)\nWhat is it called by the Indians?\ta 5-1 lead\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (the Indian, raced to, a 5-1 lead) -> a 5-1 lead (3347ms)\nWhat is it called by the Indians?\tThe helicopters\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (The helicopters, make the sound of, American Indian war drums) -> The helicopters (3342ms)\nWhat is it called by the Indians?\ta body\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian people, refers to, a body) -> a body (3299ms)\nWhat is it called by the Indians?\tBasil\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (Basil, is worshipped in, Indian culture) -> Basil (3380ms)\nWhat is it called by the Indians?\tthe poem\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the poem, refer to, Indian people) -> the poem (3337ms)\nWhat is it called by the Indians?\tthe bombers\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (the bombers, was a young man of, West Indian descent) -> the bombers (3336ms)\nWhat is it called by the Indians?\tThe Spanish\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Spanish, referred to, Indians) -> The Spanish (3324ms)\nWhat is it called by the Indians?\tCoalinga\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (Coalinga, sounds like, an Indian name) -> Coalinga (3376ms)\nWhat is it called by the Indians?\tthe melodies\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian, sounds round out, the melodies) -> the melodies (3312ms)\nWhat is it called by the Indians?\ta human\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (a human, sounded like, an Indian accent) -> a human (3299ms)\nWhat is it called by the Indians?\tPayuta\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Payuta, blends the sound of, the Indian sitar) -> Payuta (3379ms)\nWhat is it called by the Indians?\t?Hindus ?\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, were referred to as, ?Hindus ?) -> ?Hindus ? (3275ms)\nWhat is it called by the Indians?\tdifferent churches\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (West Indians, worshipped in, different churches) -> different churches (3390ms)\nWhat is it called by the Indians?\tthe shore\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (The Indians, raced to, the shore) -> the shore (3389ms)\nWhat is it called by the Indians?\tWhite Sage\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Cahuilla Indians, referred to, White Sage) -> White Sage (3291ms)\nWhat is it called by the Indians?\tEcuador\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (Ecuador, are a mixed race of, the original Ameri-Indians) -> Ecuador (3318ms)\nWhat is it called by the Indians?\ta road accident\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (a West Indian family, had lost a young child in, a road accident) -> a road accident (3376ms)\nWhat is it called by the Indians?\tKurds\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (Kurds, are a mixed race of, Indians) -> Kurds (3337ms)\nWhat is it called by the Indians?\tthe accordian\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the accordian, sounds from, the Indian Ocean) -> the accordian (3291ms)\nWhat is it called by the Indians?\tSix Sigma and\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indian?s, also referred to, Six Sigma and) -> Six Sigma and (3342ms)\nWhat is it called by the Indians?\tthe cavarlymen\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, the cavarlymen) -> the cavarlymen (3336ms)\nWhat is it called by the Indians?\ttwo particular local issues\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian Affairs, refers to, two particular local issues) -> two particular local issues (3358ms)\nWhat is it called by the Indians?\tthe ' Mother\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the ancient Indians, worshiped, the ' Mother) -> the ' Mother (3376ms)\nWhat is it called by the Indians?\tSoundtrack\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Soundtrack, is deeply relaxing sound of, Indian Creek Canyon) -> Soundtrack (3401ms)\nWhat is it called by the Indians?\tthe Lenape\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Other Indians, referred to, the Lenape) -> the Lenape (3367ms)\nWhat is it called by the Indians?\t2 percussion\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (2 percussion, Sounds for, Indian music) -> 2 percussion (3318ms)\nWhat is it called by the Indians?\tLMC\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, will call, indians) -> (LMC, will continue to be called, a Indians) -> LMC (3312ms)\nWhat is it called by the Indians?\tthe general policy and laws\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indian Office, refers to, the general policy and laws) -> the general policy and laws (3283ms)\nWhat is it called by the Indians?\tRs\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Rs, refers to, the Indian currency) -> Rs (3275ms)\nWhat is it called by the Indians?\tIndia\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, India) -> India (3401ms)\nWhat is it called by the Indians?\tin\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, wife, $x) -> (an Indian, may bring only one wife, in) -> in (3305ms)\nWhat is it called by the Indians?\tThe ancient Greeks\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (The ancient Greeks, referred to, the Indians) -> The ancient Greeks (3395ms)\nWhat is it called by the Indians?\tliterally skinning American Indians\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Redskin Indians, refers to, literally skinning American Indians) -> literally skinning American Indians (3330ms)\nWhat is it called by the Indians?\tthe coconut\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, refer to, the coconut) -> the coconut (3347ms)\nWhat is it called by the Indians?\ta member\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, refers to, a member) -> a member (3386ms)\nWhat is it called by the Indians?\tJapan\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Thursday Indian driver Narain Karthikeyan, now raced in, Japan) -> Japan (3291ms)\nWhat is it called by the Indians?\toften\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship India, often) -> often (3325ms)\nWhat is it called by the Indians?\tthe Spanish and Columbus\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the native AmerIndians, worshiped, the Spanish and Columbus) -> the Spanish and Columbus (3383ms)\nWhat is it called by the Indians?\tthe beginning\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (the beginning, sounded like, an indian telemarketer) -> the beginning (3396ms)\nWhat is it called by the Indians?\tHawthorne briefly\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hawthorne briefly, refers to, Indians) -> Hawthorne briefly (3358ms)\nWhat is it called by the Indians?\tdepicts\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (depicts, refers to, an American Indian tribe) -> depicts (3393ms)\nWhat is it called by the Indians?\ta Laloo Prasad Yadav\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have been worshipping, a Laloo Prasad Yadav) -> a Laloo Prasad Yadav (3399ms)\nWhat is it called by the Indians?\ta woman\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (a woman, refers to, Indians) -> a woman (3305ms)\nWhat is it called by the Indians?\tcow\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worship, cow) -> cow (3367ms)\nWhat is it called by the Indians?\ta guy\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (a guy, sound like, an Indian) -> a guy (3399ms)\nWhat is it called by the Indians?\tAn alert\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (An alert, was sounded in, the Indian capital) -> An alert (3283ms)\nWhat is it called by the Indians?\tKannada\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian English, sounds the same as, Kannada) -> Kannada (3376ms)\nWhat is it called by the Indians?\tweird\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (weird, sounds like, an Indian snake-charmer) -> weird (3336ms)\nWhat is it called by the Indians?\ta single season\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (33-year-old Indian Karthikeyan, raced, a single season) -> a single season (3393ms)\nWhat is it called by the Indians?\tThome\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, young, indians) -> (Thome, was a young player with, the Cleveland Indians) -> Thome (3275ms)\nWhat is it called by the Indians?\tthe Indian Spice Enspicopedia\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian spices, refer to, the Indian Spice Enspicopedia) -> the Indian Spice Enspicopedia (3401ms)\nWhat is it called by the Indians?\tDen Paradera\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Den Paradera, refers to, Paraguiri Indians) -> Den Paradera (3312ms)\nWhat is it called by the Indians?\tAshwagandha\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Ashwagandha, is referred to as, Indian Ginseng) -> Ashwagandha (3395ms)\nWhat is it called by the Indians?\ta Greek word\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound like, $x) -> (Shawnee Indian Monocacy, sounds like, a Greek word) -> a Greek word (3362ms)\nWhat is it called by the Indians?\tthe sky\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, wife, indians) -> (the sky, became the wife of, that same Alabama Indian) -> the sky (3347ms)\nWhat is it called by the Indians?\twords\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound like, indians) -> (words, sounded like, an Indian language) -> words (3386ms)\nWhat is it called by the Indians?\ta great game\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound like, $x) -> (New MOT Grunfeld Indian, Sounds like, a great game) -> a great game (3403ms)\nWhat is it called by the Indians?\tFlat racing\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, race, indians) -> (Flat racing, Horse races, McDowell's Indian Derby) -> Flat racing (3352ms)\nWhat is it called by the Indians?\tKissinger\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Kissinger, referred to, the Indians) -> Kissinger (3392ms)\nWhat is it called by the Indians?\tQuanna Pakka\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (a Cherokee Indian, sounds like, Quanna Pakka) -> Quanna Pakka (3379ms)\nWhat is it called by the Indians?\tthe Indian Navy\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (the Indian Navy, will sound naive to, Indians) -> the Indian Navy (3352ms)\nWhat is it called by the Indians?\tChristine Herdman\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (Christine Herdman, referred to, Indian mascots) -> Christine Herdman (3283ms)\nWhat is it called by the Indians?\tdevils\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, devils) -> devils (3283ms)\nWhat is it called by the Indians?\tTamil names\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound like, $x) -> (the Indian names, mostly sounded like, Tamil names) -> Tamil names (3404ms)\nWhat is it called by the Indians?\tan hour\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, sound, $x) -> (these Indians, sounded the alarm about, an hour) -> an hour (3275ms)\nWhat is it called by the Indians?\tthe native people\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, refer to, indians) -> (the native people, are still ignorantly referred to as, Indians) -> the native people (3403ms)\nWhat is it called by the Indians?\tthe surge\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, young, $x) -> (Indian, will be young as well as, the surge) -> the surge (3291ms)\nWhat is it called by the Indians?\tthe role\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, refer to, $x) -> (The ancient Indian texts, referred to, the role) -> the role (3324ms)\nWhat is it called by the Indians?\tOhio\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (Ohio, is the sound of, an indian yawning) -> Ohio (3347ms)\nWhat is it called by the Indians?\ta newspaper reporter\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, wife, $x) -> (The Indian chief, introduced his wife to, a newspaper reporter) -> a newspaper reporter (3380ms)\nWhat is it called by the Indians?\tthe pack\t-0.666666666668\tWhat is it called by the Indians? -> $x: (indians, race, $x) -> (Indian companies, could eventually race ahead of, the pack) -> the pack (3305ms)\nWhat is it called by the Indians?\ta snake god\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, worship, indians) -> (a snake god, worshiped in, West Indian) -> a snake god (3342ms)\nWhat is it called by the Indians?\ttibetan\t-0.666666666668\tWhat is it called by the Indians? -> $x: ($x, sound, indians) -> (tibetan, sounds, half chinese half indian) -> tibetan (3401ms)\nWhat are pathogens?\tSpecific diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Specific diseases, caused by, invasive pathogens) -> Specific diseases (7929ms)\nWhat are pathogens?\tDiseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Diseases, caused by, plant pathogens) -> Diseases (9629ms)\nWhat are pathogens?\t?An illness\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (?An illness, can be caused by, pathogens) -> ?An illness (5630ms)\nWhat are pathogens?\tan infectious disease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (an infectious disease, caused by, a pathogen) -> an infectious disease (5630ms)\nWhat are pathogens?\tthe condition\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the condition, is caused by, pathogens) -> the condition (6500ms)\nWhat are pathogens?\tthe root\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the root, causes of, pathogens) -> the root (8502ms)\nWhat are pathogens?\tHuman illnesses\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Human illnesses, caused by, foodborne pathogens) -> Human illnesses (6500ms)\nWhat are pathogens?\thumans\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (humans, are caused by, pathogens) -> humans (3023ms)\nWhat are pathogens?\tcampylobacter\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (campylobacter, is a bacteria that causes, Pathogens) -> campylobacter (8574ms)\nWhat are pathogens?\tThe most diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (The most diseases, are caused due to, pathogens) -> The most diseases (9629ms)\nWhat are pathogens?\ta bacterial infection\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (a bacterial infection, caused by, a pathogen) -> a bacterial infection (6672ms)\nWhat are pathogens?\ta fungal infection\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (a fungal infection, caused by, the pathogen) -> a fungal infection (9629ms)\nWhat are pathogens?\tlisteria\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (listeria, is a bacteria that causes, Pathogens) -> listeria (9229ms)\nWhat are pathogens?\tInflammation\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Inflammation, caused by, a pathogen) -> Inflammation (9629ms)\nWhat are pathogens?\tthe new diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the new diseases, have been caused by, pathogens) -> the new diseases (6500ms)\nWhat are pathogens?\tmore than 650 different disease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (more than 650 different disease, causing, pathogens) -> more than 650 different disease (7062ms)\nWhat are pathogens?\tchronic diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (chronic diseases, are caused by, pathogens) -> chronic diseases (3640ms)\nWhat are pathogens?\trots\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (rots, occur caused by, pathogens) -> rots (6672ms)\nWhat are pathogens?\thumanity\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (humanity, are caused by, pathogens) -> humanity (9229ms)\nWhat are pathogens?\tthe yield losses\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the yield losses, caused by, the pathogen) -> the yield losses (9629ms)\nWhat are pathogens?\tthe mortality\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the mortality, caused by, the pathogen) -> the mortality (7928ms)\nWhat are pathogens?\tMalaria\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Malaria, is caused by, pathogens) -> Malaria (8573ms)\nWhat are pathogens?\tinfection\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (infection, caused by, various pathogens) -> infection (3023ms)\nWhat are pathogens?\tillnesses\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (illnesses, caused by, waterborne pathogens) -> illnesses (7928ms)\nWhat are pathogens?\tDisease outbreaks\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Disease outbreaks, caused by, waterborne pathogens) -> Disease outbreaks (5630ms)\nWhat are pathogens?\tshigella\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (shigella, is a bacteria that causes, Pathogens) -> shigella (8573ms)\nWhat are pathogens?\tinfection and damage\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (infection and damage, is caused by, pathogens) -> infection and damage (7928ms)\nWhat are pathogens?\tdisease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (disease, could be caused by, pathogens) -> disease (7062ms)\nWhat are pathogens?\tplants\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (plants, are caused by, pathogens) -> plants (8574ms)\nWhat are pathogens?\tMastitis\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Mastitis, caused by, environmental pathogens) -> Mastitis (9629ms)\nWhat are pathogens?\tillness\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (illness, can be caused by, pathogens) -> illness (7928ms)\nWhat are pathogens?\tthe Intercept Blood System\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the Intercept Blood System, causes, pathogens) -> the Intercept Blood System (9228ms)\nWhat are pathogens?\tIllnesses\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Illnesses, caused by, pathogens) -> Illnesses (3640ms)\nWhat are pathogens?\tbed bugs\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (bed bugs, cause, harm or spread pathogens) -> bed bugs (9229ms)\nWhat are pathogens?\tviral meningitis\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (viral meningitis, is usually caused by, pathogens) -> viral meningitis (6500ms)\nWhat are pathogens?\tthe lower respiratory tract\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the lower respiratory tract, caused by, microbial pathogens) -> the lower respiratory tract (7928ms)\nWhat are pathogens?\tmastitis\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (mastitis, causing, pathogens) -> mastitis (8502ms)\nWhat are pathogens?\tZoonotic diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Zoonotic diseases, are caused by, pathogens) -> Zoonotic diseases (7928ms)\nWhat are pathogens?\tIL-10\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (IL-10, could be caused by, pathogens) -> IL-10 (3023ms)\nWhat are pathogens?\tThe diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (The diseases, cause, these pathogens) -> The diseases (6672ms)\nWhat are pathogens?\tdiseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (diseases, caused by, enteric pathogens) -> diseases (8502ms)\nWhat are pathogens?\tThinkable drugs\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Thinkable drugs, cause, pathogen like symptoms) -> Thinkable drugs (7062ms)\nWhat are pathogens?\tseedlings\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (seedlings, caused, soil borne pathogens) -> seedlings (7062ms)\nWhat are pathogens?\tdiarrhea\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (diarrhea, is caused by, pathogens) -> diarrhea (6672ms)\nWhat are pathogens?\tUpper Respiratory Tract Disease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Upper Respiratory Tract Disease, caused by, the pathogen) -> Upper Respiratory Tract Disease (9629ms)\nWhat are pathogens?\tDo bed bugs\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Do bed bugs, cause, harm or spread pathogens) -> Do bed bugs (8573ms)\nWhat are pathogens?\tthe infection\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the infection, caused, pathogens) -> the infection (9228ms)\nWhat are pathogens?\tInfection\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Infection, is caused by, pathogens) -> Infection (6673ms)\nWhat are pathogens?\thuman cancer cases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (human cancer cases, were caused by, pathogens) -> human cancer cases (9629ms)\nWhat are pathogens?\tPowdery mildew\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Powdery mildew, caused by, the pathogen) -> Powdery mildew (9228ms)\nWhat are pathogens?\tPlant diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Plant diseases, are caused by, pathogens) -> Plant diseases (8502ms)\nWhat are pathogens?\t19th century cities\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (19th century cities, were caused by, pathogens) -> 19th century cities (7062ms)\nWhat are pathogens?\tStaphylococcus\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Staphylococcus, is a bacteria that causes, Pathogens) -> Staphylococcus (7062ms)\nWhat are pathogens?\ta disease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (a disease, caused by, some pathogen) -> a disease (3640ms)\nWhat are pathogens?\timmunosuppression\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (immunosuppression, is also frequently caused by, pathogens) -> immunosuppression (3640ms)\nWhat are pathogens?\tDisease symptoms\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Disease symptoms, can indeed be caused by, pathogens) -> Disease symptoms (3640ms)\nWhat are pathogens?\tsensitivity response\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (sensitivity response, can cause a shift in, pathogen) -> sensitivity response (3639ms)\nWhat are pathogens?\tDisease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Disease, caused by, a pathogen) -> Disease (8574ms)\nWhat are pathogens?\ta continuum of disease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (a continuum of disease, caused by, specific pathogens) -> a continuum of disease (9229ms)\nWhat are pathogens?\tHuman diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Human diseases, caused by, bacterial pathogens) -> Human diseases (3024ms)\nWhat are pathogens?\tThe disease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (The disease, is caused by, pathogens) -> The disease (8502ms)\nWhat are pathogens?\tinfections\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (infections, caused by, intracellular pathogens) -> infections (6500ms)\nWhat are pathogens?\ta condition\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (a condition, caused by, the pathogen) -> a condition (3640ms)\nWhat are pathogens?\tImmunology & An infectious disease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Immunology & An infectious disease, is caused by, pathogens) -> Immunology & An infectious disease (8502ms)\nWhat are pathogens?\tan infection\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (an infection, caused by, pathogens) -> an infection (9629ms)\nWhat are pathogens?\twater related disease\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (water related disease, is caused by, pathogens) -> water related disease (3023ms)\nWhat are pathogens?\tA technology\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, invent, pathogen) -> (A technology, invented to detect, airborne terrorist pathogens) -> A technology (5630ms)\nWhat are pathogens?\thospital infections\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (hospital infections, are currently caused by, pathogens) -> hospital infections (6672ms)\nWhat are pathogens?\tbrain diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (brain diseases, actually ARE caused by, pathogens) -> brain diseases (9229ms)\nWhat are pathogens?\tThe illnesses\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (The illnesses, caused by, pathogens) -> The illnesses (5630ms)\nWhat are pathogens?\tthe harm\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the harm, caused by, pathogens) -> the harm (8573ms)\nWhat are pathogens?\tthe inflammation\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (the inflammation, was caused by, pathogens) -> the inflammation (8502ms)\nWhat are pathogens?\tinfectious diseases\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (infectious diseases, are caused by, pathogens) -> infectious diseases (9629ms)\nWhat are pathogens?\tSudden Oak Death\t1.4444444444409998\tWhat are pathogens? -> $x: ($x, cause, pathogen) -> (Sudden Oak Death, caused by, the pathogen) -> Sudden Oak Death (9629ms)\nWhat are pathogens?\tthe problem\t1.44444444444\tWhat are pathogens? -> $x: ($x, re, pathogen) -> (the problem, were re-introduced as, the pathogen) -> the problem (9629ms)\nWhat are pathogens?\tseveral others\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (several others, is most interested in, human pathogens) -> several others (9766ms)\nWhat are pathogens?\tThe sand layer\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (The sand layer, is extremely effective in removing, pathogens) -> The sand layer (9796ms)\nWhat are pathogens?\tplasmatoctyes\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (plasmatoctyes, play a significant role in, pathogen defence) -> plasmatoctyes (9899ms)\nWhat are pathogens?\tviruses\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (viruses, are included in, the pathogens) -> viruses (9766ms)\nWhat are pathogens?\tthe control\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the control, showed a natural decline in, the pathogen) -> the control (9825ms)\nWhat are pathogens?\tno means\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (no means, is a magic bullet in, pathogen control) -> no means (9853ms)\nWhat are pathogens?\tputative orthologs\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (putative orthologs, found in, plant pathogens) -> putative orthologs (9796ms)\nWhat are pathogens?\tthe leaves\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the leaves, were effective in controlling, bacterial pathogens) -> the leaves (9825ms)\nWhat are pathogens?\tmilk\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (milk, can target multiple early steps in, pathogen replication) -> milk (9766ms)\nWhat are pathogens?\tmechanisms\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (mechanisms, involved in, pathogen recognition) -> mechanisms (9795ms)\nWhat are pathogens?\tgenome evolution\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (genome evolution, are well documented in, human pathogens) -> genome evolution (9853ms)\nWhat are pathogens?\tDNA\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (DNA, found only in, certain pathogens) -> DNA (9796ms)\nWhat are pathogens?\tKyolic\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Kyolic, is also effective in killing, pathogens) -> Kyolic (9853ms)\nWhat are pathogens?\ta T-cell\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (a T-cell, will be in attacking, pathogens) -> a T-cell (9853ms)\nWhat are pathogens?\tacid motif\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (acid motif, also occurs quite frequently in, pathogens) -> acid motif (9876ms)\nWhat are pathogens?\tresearch\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (research, reported in, Foodborne Pathogens) -> research (9853ms)\nWhat are pathogens?\tthe molecular mechanisms\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the molecular mechanisms, involved in, pathogen) -> the molecular mechanisms (9825ms)\nWhat are pathogens?\tthe avrLm1 virulence\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the avrLm1 virulence, has diffused in, pathogen populations) -> the avrLm1 virulence (9877ms)\nWhat are pathogens?\tproteins\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (proteins, involved in, host-pathogen interactions) -> proteins (9796ms)\nWhat are pathogens?\tozone\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (ozone, is very efficient in killing, pathogens) -> ozone (9795ms)\nWhat are pathogens?\tthermal processes\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (thermal processes, are effective in lowering, pathogen levels) -> thermal processes (9825ms)\nWhat are pathogens?\tgovernment data\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (government data, show a decline in, pathogen prevalence) -> government data (9825ms)\nWhat are pathogens?\tgenes\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (genes, involved in, host-pathogen interactions) -> genes (9876ms)\nWhat are pathogens?\tactive surveillance\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (active surveillance, occurs in, equine pathogens) -> active surveillance (9766ms)\nWhat are pathogens?\tlow-grade beef trimmings\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (low-grade beef trimmings, are notoriously high in, pathogens) -> low-grade beef trimmings (9825ms)\nWhat are pathogens?\ta spinal tap\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (a spinal tap, showed a remarkable reduction in, pathogens) -> a spinal tap (9825ms)\nWhat are pathogens?\tThe program\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (The program, includes training in, microbial pathogens) -> The program (9853ms)\nWhat are pathogens?\tBroad patterns of resistance\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Broad patterns of resistance, exist in, these pathogens) -> Broad patterns of resistance (9853ms)\nWhat are pathogens?\tsex\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (sex, played an important role in, the pathogen) -> sex (9877ms)\nWhat are pathogens?\tThe center\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (The center, also offers expertise in, pathogen biology) -> The center (9877ms)\nWhat are pathogens?\tthe intestines\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the intestines, may be important in countering, pathogens) -> the intestines (9766ms)\nWhat are pathogens?\thost genes\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (host genes, involved in, pathogen defense) -> host genes (9853ms)\nWhat are pathogens?\tantibiotic resistance genes\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (antibiotic resistance genes, present in, human pathogens) -> antibiotic resistance genes (9766ms)\nWhat are pathogens?\tStx2\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Stx2, are found in, this pathogen) -> Stx2 (9825ms)\nWhat are pathogens?\tvirulence\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (virulence, is maintained in, pathogens) -> virulence (9766ms)\nWhat are pathogens?\tscience teachers\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (science teachers, need to be trained in, Bloodborne Pathogens) -> science teachers (9877ms)\nWhat are pathogens?\tOMV\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (OMV, has been extensively studied only in, pathogens) -> OMV (9796ms)\nWhat are pathogens?\tVermicast\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Vermicast, is low in, pathogens) -> Vermicast (9825ms)\nWhat are pathogens?\tan enzyme\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (an enzyme, may apply in, pathogen destruction) -> an enzyme (9876ms)\nWhat are pathogens?\tthe program\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the program, may have their roots in, the pathogen) -> the program (9796ms)\nWhat are pathogens?\tDiversity\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Diversity, was particularly high in, the pathogens) -> Diversity (9876ms)\nWhat are pathogens?\thosts\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (hosts, show an increase in, pathogens) -> hosts (9766ms)\nWhat are pathogens?\ttiming surveillance\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (timing surveillance, can result in, new pathogens) -> timing surveillance (9825ms)\nWhat are pathogens?\tMedicine researchers\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Medicine researchers, published in, PLoS Pathogens) -> Medicine researchers (9853ms)\nWhat are pathogens?\tmicroorganisms\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (microorganisms, involved in, specific pathogen suppression) -> microorganisms (9766ms)\nWhat are pathogens?\tTeacher\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Teacher, tends to get aggresive in, lethal pathogens) -> Teacher (9853ms)\nWhat are pathogens?\tclimate change\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (climate change, is a rise in, microbial pathogens) -> climate change (9876ms)\nWhat are pathogens?\tContinual use\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Continual use, may result in, pathogen resistance) -> Continual use (9766ms)\nWhat are pathogens?\tIRFs\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (IRFs, play an important role in, pathogen defense) -> IRFs (9853ms)\nWhat are pathogens?\tthe colon\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the colon, may be important in countering, pathogens) -> the colon (9877ms)\nWhat are pathogens?\tclinicians\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (clinicians, have interests in, the pathogens) -> clinicians (9853ms)\nWhat are pathogens?\tEnrofloxacin\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Enrofloxacin, was tested in, various pathogens) -> Enrofloxacin (9795ms)\nWhat are pathogens?\tWasmuth\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Wasmuth, undertook a PhD in, pathogen genomics) -> Wasmuth (9825ms)\nWhat are pathogens?\tthe two\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the two, were stationed in, pathogen) -> the two (9900ms)\nWhat are pathogens?\tcellular interactions\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (cellular interactions, are effective in, pathogen control) -> cellular interactions (9766ms)\nWhat are pathogens?\tresistance\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (resistance, did develop first in, a pathogen) -> resistance (9825ms)\nWhat are pathogens?\tmore than\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (more than, are found in, the pathogen?s relatives) -> more than (9877ms)\nWhat are pathogens?\tkey S. Typhimurium genes\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (key S. Typhimurium genes, involved in, the pathogen 's ability) -> key S. Typhimurium genes (9825ms)\nWhat are pathogens?\tarticles\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (articles, published in, Gut Pathogens) -> articles (9795ms)\nWhat are pathogens?\tLAgP\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (LAgP, would involve a reduction in, these pathogens) -> LAgP (9766ms)\nWhat are pathogens?\tWhite blood cells\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (White blood cells, are involved in fighting, pathogens) -> White blood cells (9853ms)\nWhat are pathogens?\ta micro-organism\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (a micro-organism, leaves a hole in, a pathogen?s dungeon surface) -> a micro-organism (9877ms)\nWhat are pathogens?\tThe End Game\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (The End Game, is Really Achievable in, Pathogen Reduction) -> The End Game (9825ms)\nWhat are pathogens?\tEach center\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Each center, specializes in, certain pathogens) -> Each center (9877ms)\nWhat are pathogens?\ta domain\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (a domain, is involved in, pathogen entry) -> a domain (9796ms)\nWhat are pathogens?\tphagocytosis\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (phagocytosis, play an active role in destroying, pathogens) -> phagocytosis (9766ms)\nWhat are pathogens?\ta pathogen\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (a pathogen, leaves a hole in, the pathogen?s cell membrane) -> a pathogen (9796ms)\nWhat are pathogens?\ta study\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (a study, published in, PLoS Pathogens) -> a study (9877ms)\nWhat are pathogens?\tthe system\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the system, punches massive holes in, the pathogen) -> the system (9766ms)\nWhat are pathogens?\tsuch features\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (such features, are frequently observed in, pathogens) -> such features (9853ms)\nWhat are pathogens?\ta new study\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (a new study, published in, Foodborne Pathogens and Disease) -> a new study (9795ms)\nWhat are pathogens?\tChlorine\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Chlorine, is effective in killing, harmful pathogens) -> Chlorine (9899ms)\nWhat are pathogens?\tThe findings\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (The findings, were published yesterday in, Foodborne Pathogens) -> The findings (9766ms)\nWhat are pathogens?\tcarbapenems\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (carbapenems, has developed in, this pathogen) -> carbapenems (9853ms)\nWhat are pathogens?\tamends\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (amends, are primarily only interested in, pathogen contamination) -> amends (9853ms)\nWhat are pathogens?\tDrug resistance\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (Drug resistance, occurs in, several classes of pathogens) -> Drug resistance (9877ms)\nWhat are pathogens?\tsignificant strides\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (significant strides, have been made in reducing, pathogens) -> significant strides (9877ms)\nWhat are pathogens?\tthe role\t1.33333333333\tWhat are pathogens? -> $x: ($x, in, pathogen) -> (the role, play in, plant-pathogen interactions) -> the role (9796ms)\nWhat are pathogens?\tPublication type\t1.222222222219\tWhat are pathogens? -> $x: ($x, describe, pathogen) -> (Publication type, Describes, the bacterial pathogen) -> Publication type (9922ms)\nWhat are pathogens?\ta snap\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (our pathogen enemies, can be done in, a snap) -> a snap (9945ms)\nWhat are pathogens?\tgreat caution\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, should be done with, great caution) -> great caution (9900ms)\nWhat are pathogens?\ta class setting\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (Bloodborne Pathogens, is done in, a class setting) -> a class setting (9968ms)\nWhat are pathogens?\tsubunit vaccines\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogen biology, do, subunit vaccines) -> subunit vaccines (9945ms)\nWhat are pathogens?\tyou sick\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (The pathogens, do make, you sick) -> you sick (9968ms)\nWhat are pathogens?\tC. concisus\t1.222222222219\tWhat are pathogens? -> $x: ($x, describe, pathogen) -> (C. concisus, has been described as, an emergent pathogen) -> C. concisus (9899ms)\nWhat are pathogens?\tthe host\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (Most pathogens, do better by letting, the host) -> the host (9945ms)\nWhat are pathogens?\tdecline\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (outside pathogens, often does lead to, decline) -> decline (9967ms)\nWhat are pathogens?\tthe initiation\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, is to be done prior to, the initiation) -> the initiation (9945ms)\nWhat are pathogens?\tthe New World\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (Those pathogens, did n?t cross the ocean to, the New World) -> the New World (9922ms)\nWhat are pathogens?\tthe Rps genes\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (This pathogen, does adapt to, the Rps genes) -> the Rps genes (9967ms)\nWhat are pathogens?\tirrigation water\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, can be done with, irrigation water) -> irrigation water (9922ms)\nWhat are pathogens?\ta very different manner\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, do so in, a very different manner) -> a very different manner (9899ms)\nWhat are pathogens?\tstudent Ardelle Grieger\t1.222222222219\tWhat are pathogens? -> $x: ($x, describe, pathogen) -> (student Ardelle Grieger, described, the pathogen race profile) -> student Ardelle Grieger (9899ms)\nWhat are pathogens?\tthe United States\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (dangerous pathogens, as is being done in, the United States) -> the United States (9945ms)\nWhat are pathogens?\tthe MPs\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (nosocomial pathogen colonization, do, the MPs) -> the MPs (9900ms)\nWhat are pathogens?\tthe jump\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, does make, the jump) -> the jump (9945ms)\nWhat are pathogens?\tselective enrichment\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, was done using, selective enrichment) -> selective enrichment (9945ms)\nWhat are pathogens?\ta new means\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (potential pathogens, was done using, a new means) -> a new means (9899ms)\nWhat are pathogens?\tus harm\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (Pollution , chemicals , noise and pathogens, can do, us harm) -> us harm (9922ms)\nWhat are pathogens?\tacademic centers\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, could be done in, academic centers) -> academic centers (9968ms)\nWhat are pathogens?\tthe job\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (updated pathogen definitions, will do, the job) -> the job (9967ms)\nWhat are pathogens?\twarm , moist conditions\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (Bacterial pathogens, do well in, warm , moist conditions) -> warm , moist conditions (9945ms)\nWhat are pathogens?\ta great job\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (fungal pathogens, can do, a great job) -> a great job (9968ms)\nWhat are pathogens?\tthe disease\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, little can be done to control, the disease) -> the disease (9899ms)\nWhat are pathogens?\tparrots\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (other food-borne pathogens, do affect, parrots) -> parrots (9899ms)\nWhat are pathogens?\tthe body\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (the pathogens, directly do damage to, the body) -> the body (9945ms)\nWhat are pathogens?\thuman breast milk\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, so does, human breast milk) -> human breast milk (9945ms)\nWhat are pathogens?\tthe meat industry\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, is to do away with, the meat industry) -> the meat industry (9968ms)\nWhat are pathogens?\tcultivation\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (Pathogen detection, is done by, cultivation) -> cultivation (9945ms)\nWhat are pathogens?\tnourishment\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, did n?t put, nourishment) -> nourishment (9922ms)\nWhat are pathogens?\tDictyostelium\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, could be done in, Dictyostelium) -> Dictyostelium (9945ms)\nWhat are pathogens?\tdamage\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (Intraphagocytic pathogens, do, damage) -> damage (9945ms)\nWhat are pathogens?\tS. dimidiatum\t1.222222222219\tWhat are pathogens? -> $x: ($x, describe, pathogen) -> (S. dimidiatum, was originally described as, a plant pathogen) -> S. dimidiatum (9945ms)\nWhat are pathogens?\tstate-certified labs\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, should be done at, state-certified labs) -> state-certified labs (9968ms)\nWhat are pathogens?\tdried blood\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (Bloodborne pathogens, do live in, dried blood) -> dried blood (9922ms)\nWhat are pathogens?\ta very long time\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, have been doing this for, a very long time) -> a very long time (9968ms)\nWhat are pathogens?\tthe trick\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen--genes, do, the trick) -> the trick (9922ms)\nWhat are pathogens?\tpaper logs\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, is done on, paper logs) -> paper logs (9968ms)\nWhat are pathogens?\tfish farms\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, do sometimes become established in, fish farms) -> fish farms (9923ms)\nWhat are pathogens?\tUSDA-style HACCP\t1.222222222219\tWhat are pathogens? -> $x: ($x, describe, pathogen) -> (USDA-style HACCP, was originally described as, a pathogen chase) -> USDA-style HACCP (9922ms)\nWhat are pathogens?\tcell growth\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogen cells, does inhibit, cell growth) -> cell growth (9922ms)\nWhat are pathogens?\tso\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (The majority of pathogens, do, so) -> so (9922ms)\nWhat are pathogens?\tbacteria\t1.222222222219\tWhat are pathogens? -> $x: ($x, describe, pathogen) -> (bacteria, were first described as, pathogens) -> bacteria (9922ms)\nWhat are pathogens?\tthe HSE\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (this pathogen, do, the HSE) -> the HSE (9945ms)\nWhat are pathogens?\tEmployees\t1.222222222219\tWhat are pathogens? -> $x: ($x, describe, pathogen) -> (Employees, Describes the types of, bloodborne pathogens) -> Employees (9923ms)\nWhat are pathogens?\tThe virus\t1.222222222219\tWhat are pathogens? -> $x: ($x, describe, pathogen) -> (The virus, is described, inPLoS Pathogens today) -> The virus (9923ms)\nWhat are pathogens?\tthe incidence\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, does seem to increase, the incidence) -> the incidence (9900ms)\nWhat are pathogens?\ta ?Doctrine\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, do indeed have, a ?Doctrine) -> a ?Doctrine (9900ms)\nWhat are pathogens?\trectal swabs\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (enteric pathogens, do, rectal swabs) -> rectal swabs (9899ms)\nWhat are pathogens?\ta reverse\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (a mildew or pathogen ?, need to do, a reverse) -> a reverse (9900ms)\nWhat are pathogens?\tthe likelihood\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, does increase, the likelihood) -> the likelihood (9945ms)\nWhat are pathogens?\tnurses\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, did, nurses) -> nurses (9922ms)\nWhat are pathogens?\tmethylmercury\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (bar pathogens, does a terrible job of keeping, methylmercury) -> methylmercury (9922ms)\nWhat are pathogens?\tacademic settings\t1.222222222219\tWhat are pathogens? -> $x: (pathogen, do, $x) -> (highly virulent pathogens, will be done in, academic settings) -> academic settings (9900ms)\nWhat are pathogens?\thealth care workers\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (bloodborne pathogens, is real for, health care workers) -> health care workers (10054ms)\nWhat are pathogens?\tsevere infections\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, is responsible for, severe infections) -> severe infections (10199ms)\nWhat are pathogens?\tcholera and dysentery\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (cholera and dysentery, must be done, one pathogen) -> cholera and dysentery (9968ms)\nWhat are pathogens?\tthe management\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (fungal pathogens, is essential for, the management) -> the management (10012ms)\nWhat are pathogens?\tthe Irish potato famine\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, were responsible for, the Irish potato famine) -> the Irish potato famine (10158ms)\nWhat are pathogens?\tthe response\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (dying pathogens, have been blamed for, the response) -> the response (10199ms)\nWhat are pathogens?\tthe damage\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (the damage, done by, the pathogen) -> the damage (10117ms)\nWhat are pathogens?\ttests\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (tests, are done for, pathogens) -> tests (10158ms)\nWhat are pathogens?\ttoxins\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (toxins, are produced by, bacterial pathogens) -> toxins (10138ms)\nWhat are pathogens?\tCopper compounds\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Copper compounds, do reduce, the pathogen) -> Copper compounds (10158ms)\nWhat are pathogens?\tpublic-health protection\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is essential for, public-health protection) -> public-health protection (10199ms)\nWhat are pathogens?\tcutaneous mycosis\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogens, are responsible for, cutaneous mycosis) -> cutaneous mycosis (10199ms)\nWhat are pathogens?\tthe diseases\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (the diseases, produced by, these pathogens) -> the diseases (10075ms)\nWhat are pathogens?\tGlobalisation\t1.222222222218\tWhat are pathogens? -> $x: ($x, define, pathogen) -> (Globalisation, defines the world of, pathogens) -> Globalisation (10033ms)\nWhat are pathogens?\tthe recognition event\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, are required for, the recognition event) -> the recognition event (10096ms)\nWhat are pathogens?\tcalcification\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (Many pathogens, have been blamed for, calcification) -> calcification (10096ms)\nWhat are pathogens?\tToxins\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (Toxins, produced by, the pathogens) -> Toxins (10158ms)\nWhat are pathogens?\teach species\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are different for, each species) -> each species (10178ms)\nWhat are pathogens?\tuse\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen, is safe for, use) -> use (10199ms)\nWhat are pathogens?\ta substance\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (a substance, produced by, pathogens) -> a substance (10178ms)\nWhat are pathogens?\t?People\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (?People, do get sick from, pathogens) -> ?People (10178ms)\nWhat are pathogens?\tscientists\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (scientists, can do little medically to fight, the pathogen) -> scientists (9968ms)\nWhat are pathogens?\tAmanda Rose\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Amanda Rose, Does, Raw Milk Kill Pathogens) -> Amanda Rose (9990ms)\nWhat are pathogens?\tThe B cell\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (The B cell, also produce antibodies against, the pathogen) -> The B cell (10012ms)\nWhat are pathogens?\tThe decay process\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (The decay process, can produce, harmful pathogens) -> The decay process (9990ms)\nWhat are pathogens?\tcreationists\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (creationists, do, dangerous pathogens) -> creationists (10158ms)\nWhat are pathogens?\ta sort procedure\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, is approved for, a sort procedure) -> a sort procedure (10138ms)\nWhat are pathogens?\tvarious places\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, were recorded for, various places) -> various places (10054ms)\nWhat are pathogens?\ta shelf-stable dried product\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (all pathogens, is necessary for, a shelf-stable dried product) -> a shelf-stable dried product (9990ms)\nWhat are pathogens?\tthe distinct set\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are responsible for, the distinct set) -> the distinct set (10012ms)\nWhat are pathogens?\tproper identification\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is important for, proper identification) -> proper identification (10075ms)\nWhat are pathogens?\tbiosolids\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (biosolids, was done to eliminate, pathogens) -> biosolids (10096ms)\nWhat are pathogens?\tAkonni\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Akonni, has done focuses on identifying, other pathogens?those) -> Akonni (10138ms)\nWhat are pathogens?\ta very clean environment\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (a very clean environment, does reduce, total pathogen exposure) -> a very clean environment (10117ms)\nWhat are pathogens?\taccount growers\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (account growers, do require, pathogen testing) -> account growers (9990ms)\nWhat are pathogens?\tthe survival\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is essential for, the survival) -> the survival (9990ms)\nWhat are pathogens?\tBedbugs\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Bedbugs, do carry, a staggering 18 human pathogens) -> Bedbugs (10096ms)\nWhat are pathogens?\ta biologist\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (detecting pathogens, was a job for, a biologist) -> a biologist (10199ms)\nWhat are pathogens?\tdestruction\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are collected for, destruction) -> destruction (10054ms)\nWhat are pathogens?\tyoung beef and dairy cattle\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is consistent for, young beef and dairy cattle) -> young beef and dairy cattle (10158ms)\nWhat are pathogens?\tfarmer ]\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (farmer ], did opened the door to, the pathogens) -> farmer ] (10075ms)\nWhat are pathogens?\tentry\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, have point of, $x) -> (disease pathogens, have little point of, entry) -> entry (10012ms)\nWhat are pathogens?\tMarine mammals\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Marine mammals, neither do, pathogens and parasites) -> Marine mammals (10033ms)\nWhat are pathogens?\tthe organism\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is intended to be harmless for, the organism) -> the organism (10199ms)\nWhat are pathogens?\tfumaric acid\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (fumaric acid, is produced by, the pathogens) -> fumaric acid (10054ms)\nWhat are pathogens?\tSSC\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (SSC, have nothing to do with, pathogens or cleanliness) -> SSC (10033ms)\nWhat are pathogens?\tlaboratory tests\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (laboratory tests, must be done to confirm, pathogen identity) -> laboratory tests (10012ms)\nWhat are pathogens?\tgermination\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are harmful for, germination) -> germination (10054ms)\nWhat are pathogens?\tany circumstances\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (any circumstances, does little to reduce, pathogens) -> any circumstances (9990ms)\nWhat are pathogens?\tlonger missions\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, will be important for, longer missions) -> longer missions (10033ms)\nWhat are pathogens?\tthe wound\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (the wound, should be done to identify, the pathogen) -> the wound (10012ms)\nWhat are pathogens?\tinterurban transport\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (interurban transport, did for, biological pathogens) -> interurban transport (9968ms)\nWhat are pathogens?\tthe health\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, were bad for, the health) -> the health (10096ms)\nWhat are pathogens?\theal whatever tissue damage\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (heal whatever tissue damage, was done by, the pathogens) -> heal whatever tissue damage (10199ms)\nWhat are pathogens?\tthe first time\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, will be imported for, the first time) -> the first time (10138ms)\nWhat are pathogens?\tcolostrum\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is the primary reason for giving, colostrum) -> colostrum (10199ms)\nWhat are pathogens?\tThe big question\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (The big question, does exposure to, virulent pathogens) -> The big question (10138ms)\nWhat are pathogens?\tmonetary loss\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (monetary loss, do, bacterial pathogens) -> monetary loss (10033ms)\nWhat are pathogens?\tanimals\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (animals, did, other recent emerging pathogens) -> animals (10096ms)\nWhat are pathogens?\tThe procedure\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (The procedure, produces, specific pathogen) -> The procedure (10138ms)\nWhat are pathogens?\teffective bio-defense\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (this pathogen, are needed for, effective bio-defense) -> effective bio-defense (10117ms)\nWhat are pathogens?\tnature\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (nature, was doing nothing to combat, the pathogen) -> nature (10158ms)\nWhat are pathogens?\tbiohazardous blood\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (Bloodborne pathogen, is a synonym for, biohazardous blood) -> biohazardous blood (10199ms)\nWhat are pathogens?\tsociety\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a huge challenge for, society) -> society (10117ms)\nWhat are pathogens?\tthe meat eater\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, be any worse for, the meat eater) -> the meat eater (10117ms)\nWhat are pathogens?\tbetter management\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (such pathogens, is needed for, better management) -> better management (10199ms)\nWhat are pathogens?\tartificial selection\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (artificial selection, can produce, pathogens) -> artificial selection (10012ms)\nWhat are pathogens?\tJohn Hawks\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (John Hawks, did leprosy come from as, a human pathogen) -> John Hawks (10012ms)\nWhat are pathogens?\tsignificance\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (Candidate pathogens, were screened for, significance) -> significance (10117ms)\nWhat are pathogens?\tthe antigens\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (the antigens, produced by, pathogens) -> the antigens (10178ms)\nWhat are pathogens?\tthe loss\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (This pathogen, is responsible for, the loss) -> the loss (10033ms)\nWhat are pathogens?\tveterinarians\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (infectious pathogens, are indispensable for, veterinarians) -> veterinarians (10075ms)\nWhat are pathogens?\tslaughter\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (foreign pathogens, are fair game for, slaughter) -> slaughter (10117ms)\nWhat are pathogens?\tStressed animals\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (Stressed animals, are known to produce, pathogens) -> Stressed animals (10012ms)\nWhat are pathogens?\tbiological control\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are promising candidates for, biological control) -> biological control (10096ms)\nWhat are pathogens?\tthe toxins\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (the toxins, produced by, the pathogen) -> the toxins (10138ms)\nWhat are pathogens?\tthe milk\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (the milk, has zero to do with, pathogens) -> the milk (10033ms)\nWhat are pathogens?\tthe pathogen\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (the pathogen, produces a quality of, Heat or fire pathogen) -> the pathogen (10158ms)\nWhat are pathogens?\tadditional direction\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, may be referenced for, additional direction) -> additional direction (10054ms)\nWhat are pathogens?\tantibacterial and anti-fungal chemicals\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (antibacterial and anti-fungal chemicals, produced by, pathogens) -> antibacterial and anti-fungal chemicals (9990ms)\nWhat are pathogens?\tThe blight\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (The blight, was produced by, a fungal pathogen Bipolaris) -> The blight (10117ms)\nWhat are pathogens?\tEMS personnel\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a significant risk for, EMS personnel) -> EMS personnel (9990ms)\nWhat are pathogens?\tTyson\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Tyson, does n?t allow, pathogen testing) -> Tyson (9990ms)\nWhat are pathogens?\tmore than 90 percent\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are responsible for, more than 90 percent) -> more than 90 percent (10199ms)\nWhat are pathogens?\tThe ability\t1.222222222218\tWhat are pathogens? -> $x: ($x, characterize, pathogen) -> (The ability, characterize, the relevant pathogen) -> The ability (10178ms)\nWhat are pathogens?\ta majority\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are responsible for, a majority) -> a majority (10178ms)\nWhat are pathogens?\tindividuals\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is indicated for, individuals) -> individuals (10138ms)\nWhat are pathogens?\tThe disproportion\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (The disproportion, did, pathogen) -> The disproportion (10199ms)\nWhat are pathogens?\tPlants\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (Plants, should be produced from, pathogen-free stock) -> Plants (10117ms)\nWhat are pathogens?\timplementation\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (respiratory pathogens, are needed for, implementation) -> implementation (9990ms)\nWhat are pathogens?\tmetabolites\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (metabolites, produced by, a coral pathogen) -> metabolites (10033ms)\nWhat are pathogens?\t?Marine mammals\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (?Marine mammals, neither do, pathogens and parasites) -> ?Marine mammals (10054ms)\nWhat are pathogens?\tMeyer\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Meyer, did find, the same pathogen) -> Meyer (10075ms)\nWhat are pathogens?\tgastroenteritis\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (Both pathogens, are responsible for, gastroenteritis) -> gastroenteritis (10054ms)\nWhat are pathogens?\tweak points\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is looking for, weak points) -> weak points (10054ms)\nWhat are pathogens?\tnew vectors\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (Pathogens, are always looking for, new vectors) -> new vectors (10096ms)\nWhat are pathogens?\tseveral species\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are available for, several species) -> several species (10138ms)\nWhat are pathogens?\tbark\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (bark, was done against, pathogens) -> bark (10117ms)\nWhat are pathogens?\tThe water\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (The water, does n?t usually have time to gather, pathogens) -> The water (9990ms)\nWhat are pathogens?\tpathogenicity\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (this pathogen, were tested for, pathogenicity) -> pathogenicity (10158ms)\nWhat are pathogens?\tcenturies\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogens, have been around for, centuries) -> centuries (9990ms)\nWhat are pathogens?\tA metabolite\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (A metabolite, produced by, a pathogen) -> A metabolite (10075ms)\nWhat are pathogens?\tsummer 2000\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen indicators, was planned for, summer 2000) -> summer 2000 (10033ms)\nWhat are pathogens?\tEmily Hagins\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (Emily Hagins, Films Produced, Pathogen) -> Emily Hagins (10158ms)\nWhat are pathogens?\tHGE\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (HGE, does n?t seem related to, pathogens) -> HGE (10096ms)\nWhat are pathogens?\torganic decomposition\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (organic decomposition, do to, the dormant pathogens) -> organic decomposition (10054ms)\nWhat are pathogens?\tClass A biosolids\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (Class A biosolids, don?t produce, the pathogens) -> Class A biosolids (10075ms)\nWhat are pathogens?\tNeuraminidase\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (Neuraminidase, is produced by, intestinal pathogens) -> Neuraminidase (10033ms)\nWhat are pathogens?\tthe positive selection\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen, was responsible for, the positive selection) -> the positive selection (10138ms)\nWhat are pathogens?\tover 30 prosthesis\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, has been joining for, over 30 prosthesis) -> over 30 prosthesis (10096ms)\nWhat are pathogens?\tbroilers\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (broilers, produces a wide variety of, pathogens) -> broilers (10075ms)\nWhat are pathogens?\tevery gardener\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (plant pathogens, are a challenge for, every gardener) -> every gardener (10012ms)\nWhat are pathogens?\twater-borne diseases\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, are responsible for, water-borne diseases) -> water-borne diseases (10178ms)\nWhat are pathogens?\ttick control\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, has been examined for, tick control) -> tick control (10178ms)\nWhat are pathogens?\tmass dissemination\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (emerging pathogens, could be engineered for, mass dissemination) -> mass dissemination (10012ms)\nWhat are pathogens?\tThe ammonia\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (The ammonia, does n?t always kill, the pathogens) -> The ammonia (10012ms)\nWhat are pathogens?\tPersonnel\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Personnel, do have access to, the pathogens) -> Personnel (10138ms)\nWhat are pathogens?\tSTT\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is very important for, STT) -> STT (10033ms)\nWhat are pathogens?\tpatient safety\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, is essential for, patient safety) -> patient safety (10096ms)\nWhat are pathogens?\tRaw milk\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Raw milk, does kill, pathogens) -> Raw milk (10054ms)\nWhat are pathogens?\tantibiotics\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (antibiotics, do kill, some pathogens) -> antibiotics (10138ms)\nWhat are pathogens?\tDON\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (DON, is the mycotoxin produced by, the FHB-causing pathogen) -> DON (10138ms)\nWhat are pathogens?\tthe clock\t1.222222222218\tWhat are pathogens? -> $x: ($x, characterize, pathogen) -> (the clock, characterize, the pathogen) -> the clock (10033ms)\nWhat are pathogens?\tthe only national program testing\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (the only national program testing, produce for, pathogens) -> the only national program testing (9968ms)\nWhat are pathogens?\ta molecule\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (a molecule, produced by, a pathogen) -> a molecule (10075ms)\nWhat are pathogens?\tmotor vehicle accidents\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (motor vehicle accidents, does research on, bloodborne pathogens) -> motor vehicle accidents (10199ms)\nWhat are pathogens?\tthe greatest number\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is probably responsible for, the greatest number) -> the greatest number (10117ms)\nWhat are pathogens?\tVery few studies\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Very few studies, have been done on, pathogens) -> Very few studies (10096ms)\nWhat are pathogens?\tOSHA\t1.222222222218\tWhat are pathogens? -> $x: ($x, define, pathogen) -> (OSHA, defines, bloodborne pathogens) -> OSHA (10033ms)\nWhat are pathogens?\tthe work\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (the work, has been done with, a fungal pathogen) -> the work (10054ms)\nWhat are pathogens?\tthe development\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (some pathogens, may be essential for, the development) -> the development (10138ms)\nWhat are pathogens?\t10 actinomycete isolates\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, were documented for, 10 actinomycete isolates) -> 10 actinomycete isolates (10054ms)\nWhat are pathogens?\tthe animals\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (the animals, did test positive for, the pathogen) -> the animals (10138ms)\nWhat are pathogens?\tcultures and tests\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (cultures and tests, must be done to detect, the pathogens) -> cultures and tests (10096ms)\nWhat are pathogens?\tleishmaniasis\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is responsible for, leishmaniasis) -> leishmaniasis (10054ms)\nWhat are pathogens?\tmortality and morbidity\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, are responsible for, mortality and morbidity) -> mortality and morbidity (10096ms)\nWhat are pathogens?\tChemicals\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (Chemicals, produced by, pathogens) -> Chemicals (10075ms)\nWhat are pathogens?\tcontact infections\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is the prerequisite for, contact infections) -> contact infections (10012ms)\nWhat are pathogens?\tvegetable production\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, was a more serious problem for, vegetable production) -> vegetable production (9990ms)\nWhat are pathogens?\ta great many diseases\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are responsible for, a great many diseases) -> a great many diseases (10117ms)\nWhat are pathogens?\tSharma\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Sharma, have both done work on, the pathogens) -> Sharma (10158ms)\nWhat are pathogens?\tbioterrorist attacks\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (potential pathogens, can be misused for, bioterrorist attacks) -> bioterrorist attacks (10178ms)\nWhat are pathogens?\ta protein\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (a protein, produced by, the pathogen) -> a protein (10012ms)\nWhat are pathogens?\ttwo severe outbreaks\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, was responsible for, two severe outbreaks) -> two severe outbreaks (10158ms)\nWhat are pathogens?\tno safe level\t1.222222222218\tWhat are pathogens? -> $x: ($x, define, pathogen) -> (no safe level, defined for, a bloodborne pathogen) -> no safe level (10178ms)\nWhat are pathogens?\tagricultural crops\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (fungal pathogens, have been developed for, agricultural crops) -> agricultural crops (10033ms)\nWhat are pathogens?\tmolecular networks\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (molecular networks, produce immune responses to, pathogens) -> molecular networks (10054ms)\nWhat are pathogens?\ta UV air purifier\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a great place for, a UV air purifier) -> a UV air purifier (10178ms)\nWhat are pathogens?\tThe USDA\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (The USDA, did, the pest and pathogen screening) -> The USDA (10117ms)\nWhat are pathogens?\tdetection\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, have been modified for, detection) -> detection (10075ms)\nWhat are pathogens?\ttuberculosis and\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (tuberculosis and, does, the pathogen cause symtoms) -> tuberculosis and (10178ms)\nWhat are pathogens?\tprotective antigens\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen genomes, can be searched for, protective antigens) -> protective antigens (10158ms)\nWhat are pathogens?\tAntibodies\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (Antibodies, are produced specifically to, the invading pathogens) -> Antibodies (10096ms)\nWhat are pathogens?\tthe maturation\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (microbial pathogens, are crucial for, the maturation) -> the maturation (10117ms)\nWhat are pathogens?\tHPV\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (HPV, does work for, other difficult pathogens) -> HPV (10054ms)\nWhat are pathogens?\tsecretion\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, were analyzed for, secretion) -> secretion (10178ms)\nWhat are pathogens?\tHigh-level containment laboratories\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (High-level containment laboratories, do research on, pathogens) -> High-level containment laboratories (10178ms)\nWhat are pathogens?\tlong-distance dispersal\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogen, is well adapted for, long-distance dispersal) -> long-distance dispersal (9990ms)\nWhat are pathogens?\tfemale homosexuality\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, also be responsible for, female homosexuality) -> female homosexuality (10075ms)\nWhat are pathogens?\tA UV Water filter\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (A UV Water filter, will do the function of, pathogen killing) -> A UV Water filter (10012ms)\nWhat are pathogens?\tan indefinite period\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, may be carried for, an indefinite period) -> an indefinite period (9990ms)\nWhat are pathogens?\tthe most part indiscriminate\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (new pathogens, are for, the most part indiscriminate) -> the most part indiscriminate (10158ms)\nWhat are pathogens?\tThe toxins\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (The toxins, produce, these pathogens) -> The toxins (10178ms)\nWhat are pathogens?\tthe lab\t1.222222222218\tWhat are pathogens? -> $x: ($x, produce, pathogen) -> (the lab, would produce, airborne pathogens) -> the lab (10178ms)\nWhat are pathogens?\tAir filters\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (Air filters, do help eliminate, pollutants and pathogens) -> Air filters (10096ms)\nWhat are pathogens?\tplaque\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (oral pathogens, be useful for controlling, plaque) -> plaque (10158ms)\nWhat are pathogens?\tless than 10\t1.222222222218\tWhat are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, have been identified for, less than 10) -> less than 10 (10075ms)\nWhat are pathogens?\tMore research\t1.222222222218\tWhat are pathogens? -> $x: ($x, do, pathogen) -> (More research, should also be done into, pathogen survival) -> More research (10075ms)\nWhat are pathogens?\tthe laboratory\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the laboratory, will sometimes find, a second pathogen) -> the laboratory (10298ms)\nWhat are pathogens?\tmprF\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (mprF, is found in, many bacterial pathogens) -> mprF (10335ms)\nWhat are pathogens?\tpatients\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (patients, were found to be positive for, pathogens) -> patients (10297ms)\nWhat are pathogens?\tCWD and\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (CWD and, easily deal with, other pathogens) -> CWD and (10239ms)\nWhat are pathogens?\tWind evils\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, refer, pathogen) -> (Wind evils, refer to, invisible pathogens) -> Wind evils (10259ms)\nWhat are pathogens?\tfactory farming\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (factory farming, create, dangerous food pathogens) -> factory farming (10259ms)\nWhat are pathogens?\t2002\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (2002, found very low incidence of, potential pathogens) -> 2002 (10354ms)\nWhat are pathogens?\t10 chickens\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (10 chickens, were found to contain, pathogens) -> 10 chickens (10336ms)\nWhat are pathogens?\ta professor\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (a professor, said finding, pathogens) -> a professor (10220ms)\nWhat are pathogens?\tthe processes\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the processes, has been found to kill, pathogens) -> the processes (10335ms)\nWhat are pathogens?\tthe common and\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the common and, recently found, pathogens) -> the common and (10298ms)\nWhat are pathogens?\tthe smallest genomes\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the smallest genomes, are found among, obligatory pathogens) -> the smallest genomes (10298ms)\nWhat are pathogens?\tSan Diego county\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (San Diego county, was found to be infected with, the pathogen) -> San Diego county (10239ms)\nWhat are pathogens?\treportable foods\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (reportable foods, likely be those found to contain, pathogens) -> reportable foods (10298ms)\nWhat are pathogens?\tthe US population\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the US population, were found to have, active XMRV pathogen) -> the US population (10220ms)\nWhat are pathogens?\ta HACCP plan\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (a HACCP plan, has been found to contain, pathogens) -> a HACCP plan (10317ms)\nWhat are pathogens?\tThe PezAT system\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (The PezAT system, is found in, the major human pathogen) -> The PezAT system (10335ms)\nWhat are pathogens?\tHeat\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, refer, pathogen) -> (Heat, refers to, bacterial or viral pathogens) -> Heat (10354ms)\nWhat are pathogens?\tEach chapter\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (Each chapter, deals with, a different pathogen) -> Each chapter (10279ms)\nWhat are pathogens?\tthe amoebas\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the amoebas, find, a pathogen) -> the amoebas (10317ms)\nWhat are pathogens?\tFilters\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (Filters, only create a breeding ground for, pathogens) -> Filters (10317ms)\nWhat are pathogens?\tgenetic engineering\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (genetic engineering, contributed to creating, the new pathogens) -> genetic engineering (10354ms)\nWhat are pathogens?\tthe study\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the study, found, the food-borne disease pathogen salmonella) -> the study (10317ms)\nWhat are pathogens?\tIdaho\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Idaho, must be found free of, five bacterial pathogens) -> Idaho (10279ms)\nWhat are pathogens?\tthe magazine\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the magazine, found, these pathogens) -> the magazine (10219ms)\nWhat are pathogens?\ttwo elk\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (two elk, were found with, the pathogen) -> two elk (10279ms)\nWhat are pathogens?\ta national law\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (a national law, deals with, pathogens as a genetic resource) -> a national law (10335ms)\nWhat are pathogens?\tThe human immune system\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (The human immune system, creates antibodies to, pathogens) -> The human immune system (10335ms)\nWhat are pathogens?\tGod\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (God, created, parasites , pathogens , and predators) -> God (10239ms)\nWhat are pathogens?\tFDA\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (FDA, found any sign of, pathogens) -> FDA (10317ms)\nWhat are pathogens?\tresearchers\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (researchers, find ways to combat, agricultural pathogens) -> researchers (10279ms)\nWhat are pathogens?\tEntomologists\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Entomologists, have found, all the blood-born pathogens) -> Entomologists (10317ms)\nWhat are pathogens?\tthe kids\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the kids, was found to have, a pathogen) -> the kids (10335ms)\nWhat are pathogens?\tThe National Consumers League\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (The National Consumers League, found, dangerous pathogens) -> The National Consumers League (10219ms)\nWhat are pathogens?\tThe infecting organism\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, refer, pathogen) -> (The infecting organism, is referred to as, a pathogen) -> The infecting organism (10317ms)\nWhat are pathogens?\taddition\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, happen to, pathogen) -> (addition, happens to, pathogens) -> addition (10219ms)\nWhat are pathogens?\tBangladesh sunflower seed oil\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Bangladesh sunflower seed oil, was found to reduce, pathogens) -> Bangladesh sunflower seed oil (10219ms)\nWhat are pathogens?\tGene therapy experiments\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (Gene therapy experiments, may create, dangerous pathogens) -> Gene therapy experiments (10354ms)\nWhat are pathogens?\tthe single mitochondrion\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the single mitochondrion, found in, the blood borne pathogen) -> the single mitochondrion (10239ms)\nWhat are pathogens?\teven individuals\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (even individuals, could create immensely, dangerous pathogens) -> even individuals (10354ms)\nWhat are pathogens?\ttilmicosin\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (tilmicosin, were found among, veterinary pathogens) -> tilmicosin (10279ms)\nWhat are pathogens?\tthe GFP\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (the GFP, are dealing with, pathogens) -> the GFP (10259ms)\nWhat are pathogens?\tthe feces\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (the feces, create, more disease resistant pathogens) -> the feces (10335ms)\nWhat are pathogens?\tMark\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Mark, found, that considerable pathogen reductions) -> Mark (10219ms)\nWhat are pathogens?\tThe driver concept\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (The driver concept, consists of finding, the correct pathogens) -> The driver concept (10298ms)\nWhat are pathogens?\ta rare sugar\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (a rare sugar, only found in, some human pathogens) -> a rare sugar (10219ms)\nWhat are pathogens?\tGiardia\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Giardia, was found to be, the most prevalent pathogen) -> Giardia (10317ms)\nWhat are pathogens?\tfarms\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (farms, found, several pathogens) -> farms (10335ms)\nWhat are pathogens?\tturn\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (turn, find, an invading pathogen) -> turn (10219ms)\nWhat are pathogens?\tpathogenic toxins\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (pathogenic toxins, creates a hostile environment for, pathogens) -> pathogenic toxins (10317ms)\nWhat are pathogens?\ttenderized steaks\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (tenderized steaks, found to contain, these pathogens) -> tenderized steaks (10298ms)\nWhat are pathogens?\tan animal?s pH\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (an animal?s pH, creates a hostile environment for, pathogens) -> an animal?s pH (10239ms)\nWhat are pathogens?\timmune selection\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (immune selection, create, more virulent pathogens) -> immune selection (10259ms)\nWhat are pathogens?\tAmerica\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (America, has created, some really horrible pathogens) -> America (10335ms)\nWhat are pathogens?\tone independent agency\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (one independent agency, deals with, food-borne pathogens) -> one independent agency (10297ms)\nWhat are pathogens?\tthe papers\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, happen to, pathogen) -> (the papers, happens to, pathogens) -> the papers (10220ms)\nWhat are pathogens?\tpublic health agencies\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (public health agencies, must be prepared to deal with, pathogens) -> public health agencies (10335ms)\nWhat are pathogens?\tnew areas\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (new areas, created a new category of, pathogens) -> new areas (10335ms)\nWhat are pathogens?\tplaces\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (places, create, pathogens) -> places (10278ms)\nWhat are pathogens?\tAcidifying toxins\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (Acidifying toxins, are created by, microforms and pathogens) -> Acidifying toxins (10239ms)\nWhat are pathogens?\tbacterial pathogen\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, refer, pathogen) -> (bacterial pathogen, is referred to as, an endogenous pathogen) -> bacterial pathogen (10259ms)\nWhat are pathogens?\ta model\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, happen to, pathogen) -> (a model, will happen to, the pathogens) -> a model (10239ms)\nWhat are pathogens?\tWanzhou\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Wanzhou, found, the epidemic hemorrhagic fever pathogen) -> Wanzhou (10317ms)\nWhat are pathogens?\tstarlings\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (starlings, lack the ability to deal with, pathogens) -> starlings (10279ms)\nWhat are pathogens?\tbegonias\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (begonias, have been found susceptible to, this pathogen) -> begonias (10335ms)\nWhat are pathogens?\t?T-39?\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (?T-39?, were found to be more resistant to, this pathogen) -> ?T-39? (10259ms)\nWhat are pathogens?\tthe Asian soybean aphid\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the Asian soybean aphid, found little evidence of, pathogens) -> the Asian soybean aphid (10279ms)\nWhat are pathogens?\tThe researchers\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (The researchers, found, several potentially dangerous pathogens) -> The researchers (10259ms)\nWhat are pathogens?\tFarman\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Farman, found, the annual ryegrass pathogen) -> Farman (10335ms)\nWhat are pathogens?\ta department study\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (a department study, found, the pathogens) -> a department study (10279ms)\nWhat are pathogens?\tGunner\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Gunner, find, your ?pathogen?) -> Gunner (10239ms)\nWhat are pathogens?\tcontinued best efforts\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (continued best efforts, find, these pathogens) -> continued best efforts (10317ms)\nWhat are pathogens?\tthe refereeing process\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the refereeing process, can be found in, 'About Gut Pathogens ') -> the refereeing process (10354ms)\nWhat are pathogens?\tmicroorganisms microbes\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (microorganisms microbes, found, pathogens) -> microorganisms microbes (10239ms)\nWhat are pathogens?\ta parasitic relationship\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, refer, pathogen) -> (a parasitic relationship, are referred to as, pathogens) -> a parasitic relationship (10317ms)\nWhat are pathogens?\tThe structures\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (The structures, found on, these pathogens) -> The structures (10279ms)\nWhat are pathogens?\tforeign proteins\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (foreign proteins, found on, infectious disease pathogens) -> foreign proteins (10278ms)\nWhat are pathogens?\tSA\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (SA, found to be, the causative pathogen) -> SA (10239ms)\nWhat are pathogens?\teither state\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (either state, have been found with, the pathogen) -> either state (10279ms)\nWhat are pathogens?\tThe study\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (The study, found, these pathogens) -> The study (10279ms)\nWhat are pathogens?\tnine patients\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (nine patients, were found to have, the pathogens) -> nine patients (10298ms)\nWhat are pathogens?\tfuture rule\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (future rule, finds common ground between, pathogen management) -> future rule (10219ms)\nWhat are pathogens?\tthe source\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (the source, create a new rapid test for, pathogens) -> the source (10259ms)\nWhat are pathogens?\tgardeners\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (gardeners, deal organically with, pathogen and pest problems) -> gardeners (10317ms)\nWhat are pathogens?\ttaffeta\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (taffeta, creates, a reliable barrier to blood borne pathogens) -> taffeta (10354ms)\nWhat are pathogens?\tdendritic cells\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (dendritic cells, find, pathogens) -> dendritic cells (10239ms)\nWhat are pathogens?\tInvestigators\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Investigators, are better at finding, foodborne pathogens) -> Investigators (10239ms)\nWhat are pathogens?\tthe lining\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (the lining, create a physical barrier to, pathogens) -> the lining (10354ms)\nWhat are pathogens?\tsimilar structures\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (similar structures, are found in, several human pathogens) -> similar structures (10239ms)\nWhat are pathogens?\tSmart\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Smart, found, the pathogen) -> Smart (10279ms)\nWhat are pathogens?\tlast year\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (last year, found, pathogens) -> last year (10317ms)\nWhat are pathogens?\tprojects\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, deal with, pathogen) -> (projects, deal with, host-pathogen interactions) -> projects (10219ms)\nWhat are pathogens?\traw , non-intact beef products\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (raw , non-intact beef products, found to have, these pathogens) -> raw , non-intact beef products (10259ms)\nWhat are pathogens?\tthe first viroid\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (the first viroid, spent many years trying to find, the pathogen) -> the first viroid (10335ms)\nWhat are pathogens?\tP. ramorum\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (P. ramorum, has found, the pathogen) -> P. ramorum (10298ms)\nWhat are pathogens?\tDr. Clark\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Dr. Clark, found that, it would kill various pathogens) -> Dr. Clark (10298ms)\nWhat are pathogens?\tAn ?attenuated ? vaccine\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (An ?attenuated ? vaccine, is created from, a pathogen) -> An ?attenuated ? vaccine (10259ms)\nWhat are pathogens?\tgenetic material\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (genetic material, create, new pathogens) -> genetic material (10219ms)\nWhat are pathogens?\taquariums\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, create, pathogen) -> (aquariums, can create the area for, pathogens) -> aquariums (10259ms)\nWhat are pathogens?\tLactococcus garvieae\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (Lactococcus garvieae, was found to be, an opportunistic pathogen) -> Lactococcus garvieae (10278ms)\nWhat are pathogens?\tvirulent hasnt\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (virulent hasnt, then found, lungs pathogens) -> virulent hasnt (10335ms)\nWhat are pathogens?\tproducts\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (products, found to have, these pathogens) -> products (10317ms)\nWhat are pathogens?\tsick babies\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (sick babies, also found, dangerous waterborne pathogens) -> sick babies (10219ms)\nWhat are pathogens?\tOne study\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (One study, found, common pathogens) -> One study (10259ms)\nWhat are pathogens?\tprotection\t1.1111111111079999\tWhat are pathogens? -> $x: ($x, found, pathogen) -> (protection, is found from, foreign pathogens) -> protection (10239ms)\nWhat are pathogens?\tSanitizers\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Sanitizers, hence can destroy, pathogens) -> Sanitizers (10443ms)\nWhat are pathogens?\tAn excellent comprehensive chapter\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (An excellent comprehensive chapter, is devoted to, pathogens) -> An excellent comprehensive chapter (10626ms)\nWhat are pathogens?\tthin skin\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (thin skin, is more vulnerable to, pathogens) -> thin skin (10702ms)\nWhat are pathogens?\tcrop yield\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (crop yield, is lost to, pathogens) -> crop yield (10702ms)\nWhat are pathogens?\tkeratinocytes\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (keratinocytes, can kill, pathogens) -> keratinocytes (10626ms)\nWhat are pathogens?\tPuccinia striiformis\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Puccinia striiformis, is conserved in, diverse fungal pathogens) -> Puccinia striiformis (10641ms)\nWhat are pathogens?\tDisinfestants\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Disinfestants, are used to eliminate, pathogens) -> Disinfestants (10529ms)\nWhat are pathogens?\tThe proper treatment\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (The proper treatment, often is to eliminate, pathogens) -> The proper treatment (10657ms)\nWhat are pathogens?\tMolecular tools\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Molecular tools, are used to detect, pathogens) -> Molecular tools (10426ms)\nWhat are pathogens?\tScientists\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Scientists, are interested in, plant-pathogen interactions) -> Scientists (10390ms)\nWhat are pathogens?\tMonoclonal antibodies\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Monoclonal antibodies, can also cling to, pathogens) -> Monoclonal antibodies (10443ms)\nWhat are pathogens?\tBetter techniques\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Better techniques, are needed to detect, pathogens) -> Better techniques (10719ms)\nWhat are pathogens?\tSource protection\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Source protection, is essential to keep, pathogens) -> Source protection (10656ms)\nWhat are pathogens?\timmune defense\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (immune defense, can transmit, pathogens) -> immune defense (10496ms)\nWhat are pathogens?\tan udder infection\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (an udder infection, is influenced by, the pathogen species) -> an udder infection (10562ms)\nWhat are pathogens?\tAlopecia hair loss\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Alopecia hair loss, is thought to be, pathogen) -> Alopecia hair loss (10610ms)\nWhat are pathogens?\tLFTB\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (LFTB, is treated to kill, pathogens) -> LFTB (10372ms)\nWhat are pathogens?\tMysis Supreme\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Mysis Supreme, is, pathogen) -> Mysis Supreme (10748ms)\nWhat are pathogens?\tWind\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Wind, can spread, pathogens) -> Wind (10748ms)\nWhat are pathogens?\tdiversity\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (diversity, can influence, pathogen protection) -> diversity (10759ms)\nWhat are pathogens?\tGadjeva\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Gadjeva, is interested in, host-pathogen interactions) -> Gadjeva (10719ms)\nWhat are pathogens?\tHepatitis C\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Hepatitis C, appear to be, pathogens) -> Hepatitis C (10479ms)\nWhat are pathogens?\tswimmers\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (swimmers, may be exposed to, pathogens) -> swimmers (10760ms)\nWhat are pathogens?\tNeoLibs\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (NeoLibs, are, Pathogens) -> NeoLibs (10372ms)\nWhat are pathogens?\tA special method\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (A special method, is established to identify, pathogens) -> A special method (10687ms)\nWhat are pathogens?\teven browsing consumers\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (even browsing consumers, can transfer, pathogens) -> even browsing consumers (10496ms)\nWhat are pathogens?\tmonoclonal populations\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (monoclonal populations, are more vulnerable to, pathogens) -> monoclonal populations (10641ms)\nWhat are pathogens?\ta monoculture\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (a monoculture, are very sensitive to, pathogens) -> a monoculture (10372ms)\nWhat are pathogens?\tUniversity\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (University, was published in, Foodborne Pathogens and Disease) -> University (10672ms)\nWhat are pathogens?\tlipoxygenase gene\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (lipoxygenase gene, can be induced by, pathogens) -> lipoxygenase gene (10672ms)\nWhat are pathogens?\tthe eggs\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (the eggs, will be housed in, Specific Pathogen Free conditions) -> the eggs (10495ms)\nWhat are pathogens?\tppGpp\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (ppGpp, is required in, many bacterial pathogens) -> ppGpp (10443ms)\nWhat are pathogens?\tthe material\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the material, can be verified to be, pathogen) -> the material (10626ms)\nWhat are pathogens?\tthe immune system\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the immune system, is more responsive to, pathogens) -> the immune system (10734ms)\nWhat are pathogens?\tgarden soil\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (garden soil, can contain, pathogens) -> garden soil (10546ms)\nWhat are pathogens?\tCOAA...\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (Emerging Pathogens Institute People, are talking about, COAA...) -> COAA... (10461ms)\nWhat are pathogens?\tsprouts\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (sprouts, being contaminated with, pathogens) -> sprouts (10390ms)\nWhat are pathogens?\tCows\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Cows, stressed can slough, pathogens) -> Cows (10443ms)\nWhat are pathogens?\tRoche\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Roche, are aiding in, these pathogen detection) -> Roche (10478ms)\nWhat are pathogens?\tfungi\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (fungi, can push back, pathogens) -> fungi (10610ms)\nWhat are pathogens?\tpets\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (pets, may be exposed to, pathogens) -> pets (10426ms)\nWhat are pathogens?\thuman health and disease\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (human health and disease, is the control of, pathogens) -> human health and disease (10479ms)\nWhat are pathogens?\ttrade and travel\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (trade and travel, are, pathogens) -> trade and travel (10733ms)\nWhat are pathogens?\tLactose and starch\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Lactose and starch, can feed, pathogens) -> Lactose and starch (10594ms)\nWhat are pathogens?\tsuspended sediment\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (suspended sediment, can transport, pathogens) -> suspended sediment (10408ms)\nWhat are pathogens?\tmicrobes\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (microbes, is, pathogen) -> microbes (10610ms)\nWhat are pathogens?\tNature\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Nature, have been published in, the journal PLoS Pathogens) -> Nature (10760ms)\nWhat are pathogens?\tSecondary constructive tests\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Secondary constructive tests, are for, pathogens) -> Secondary constructive tests (10610ms)\nWhat are pathogens?\tBallast water\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Ballast water, also can transfer, pathogens) -> Ballast water (10626ms)\nWhat are pathogens?\tcertain people\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (certain people, are carriers of, pathogens) -> certain people (10610ms)\nWhat are pathogens?\ta colony\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (a colony, influences its susceptibility to, microbial pathogens) -> a colony (10748ms)\nWhat are pathogens?\tHumans\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Humans, may be exposed to, pathogens) -> Humans (10546ms)\nWhat are pathogens?\tStormwater and rain runoff\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Stormwater and rain runoff, can carry, pathogens) -> Stormwater and rain runoff (10760ms)\nWhat are pathogens?\tDavid G Bourne\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (David G Bourne, was published in, PLoS Pathogens) -> David G Bourne (10562ms)\nWhat are pathogens?\tmolecules\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (molecules, are broadly shared by, pathogens) -> molecules (10461ms)\nWhat are pathogens?\tthe naked eye\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (the naked eye, can carry, pathogens) -> the naked eye (10626ms)\nWhat are pathogens?\tstudy\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (study, was/is, pathogens) -> study (10687ms)\nWhat are pathogens?\tThe work\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (The work, was published in, PLoS Pathogens online) -> The work (10672ms)\nWhat are pathogens?\tBacteria\t1.111111111107\tWhat are pathogens? -> $x: ($x, classify as, pathogen) -> (Bacteria, are classified as, primary pathogens) -> Bacteria (10701ms)\nWhat are pathogens?\tBasic meat safety Meat\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Basic meat safety Meat, is highly susceptible to, pathogens) -> Basic meat safety Meat (10426ms)\nWhat are pathogens?\tthe newborn calf\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the newborn calf, is exposed to, pathogens) -> the newborn calf (10719ms)\nWhat are pathogens?\tleast two-thirds\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (least two-thirds, are, pathogens) -> least two-thirds (10408ms)\nWhat are pathogens?\tStrep uberis\t1.111111111107\tWhat are pathogens? -> $x: ($x, classify as, pathogen) -> (Strep uberis, is classified as, an environmental pathogen) -> Strep uberis (10372ms)\nWhat are pathogens?\tpigs\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (pigs, are housed in, pathogen-free units) -> pigs (10426ms)\nWhat are pathogens?\tTitanium dioxide\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Titanium dioxide, can also destroy, pathogens) -> Titanium dioxide (10512ms)\nWhat are pathogens?\tFungus Gnats\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Fungus Gnats, can vector, pathogens) -> Fungus Gnats (10426ms)\nWhat are pathogens?\tStreptococcus\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Streptococcus, are, pathogens) -> Streptococcus (10771ms)\nWhat are pathogens?\ta weakened immune system\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (a weakened immune system, can be overpowered by, pathogens) -> a weakened immune system (10443ms)\nWhat are pathogens?\tenough chemical\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (enough chemical, is added to kill, pathogens) -> enough chemical (10426ms)\nWhat are pathogens?\tthe skin cells\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (the skin cells, as being, pathogens) -> the skin cells (10657ms)\nWhat are pathogens?\tworkers\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (workers, be exposed to, pathogens) -> workers (10390ms)\nWhat are pathogens?\t60 percent\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (Gram-negative pathogens, were found in about, 60 percent) -> 60 percent (10496ms)\nWhat are pathogens?\thuman illness\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (human illness, are, pathogens) -> human illness (10687ms)\nWhat are pathogens?\t30 percent worldwide\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (pathogens, are estimated to be about, 30 percent worldwide) -> 30 percent worldwide (10760ms)\nWhat are pathogens?\tthe important pH factor\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (the important pH factor, influences the survival of, pathogens) -> the important pH factor (10496ms)\nWhat are pathogens?\tan important component\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (an important component, are exposed to, pathogens) -> an important component (10610ms)\nWhat are pathogens?\tthe vegetable\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the vegetable, has been exposed to, pathogens) -> the vegetable (10443ms)\nWhat are pathogens?\tThe research\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (The research, is published in, PLoS Pathogens) -> The research (10390ms)\nWhat are pathogens?\tthe human microbiota\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (the human microbiota, influences, host-pathogen interactions) -> the human microbiota (10461ms)\nWhat are pathogens?\tVoice frequencies\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Voice frequencies, can identify, pathogens) -> Voice frequencies (10443ms)\nWhat are pathogens?\tIrradiation\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Irradiation, is used to control, pathogens) -> Irradiation (10594ms)\nWhat are pathogens?\tDCs\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (DCs, can incorporate, pathogens) -> DCs (10562ms)\nWhat are pathogens?\tgroups D , F , H , and K\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (groups D , F , H , and K, also can be, pathogens) -> groups D , F , H , and K (10461ms)\nWhat are pathogens?\tplants or animals\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (plants or animals, are, pathogens) -> plants or animals (10408ms)\nWhat are pathogens?\tSexual recombination\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Sexual recombination, is important in, the pathogen life cycle) -> Sexual recombination (10408ms)\nWhat are pathogens?\tcultivation methods\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (cultivation methods, can filter, pathogens) -> cultivation methods (10408ms)\nWhat are pathogens?\tdepressed resistance\t1.111111111107\tWhat are pathogens? -> $x: ($x, classify as, pathogen) -> (depressed resistance, are classified as, opportunistic pathogens) -> depressed resistance (10354ms)\nWhat are pathogens?\tthe soil\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the soil, are most vulnerable to, pathogens) -> the soil (10719ms)\nWhat are pathogens?\tB cells\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (B cells, are exposed to, pathogens) -> B cells (10702ms)\nWhat are pathogens?\tnatural selection\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (natural selection, is, pathogens) -> natural selection (10408ms)\nWhat are pathogens?\tRegular soil\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Regular soil, can contain, pathogens) -> Regular soil (10702ms)\nWhat are pathogens?\t20 %\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (the pathogen and toxin information, is only about, 20 %) -> 20 % (10443ms)\nWhat are pathogens?\tthe calf\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (the calf, may influence, pathogen numbers) -> the calf (10529ms)\nWhat are pathogens?\tThe products\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (The products, can actually transport, pathogens) -> The products (10496ms)\nWhat are pathogens?\tComplement proteins\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Complement proteins, can kill, pathogens) -> Complement proteins (10760ms)\nWhat are pathogens?\tTreatments\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Treatments, can kill, pathogens) -> Treatments (10771ms)\nWhat are pathogens?\tLive food\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Live food, can also introduce, pathogens) -> Live food (10594ms)\nWhat are pathogens?\tan abstact\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (a pathogen, is just throwing about, an abstact) -> an abstact (10672ms)\nWhat are pathogens?\tAnimals\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Animals, were housed in, specific pathogen?free facilities) -> Animals (10760ms)\nWhat are pathogens?\tSuch temperature abuse\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Such temperature abuse, can enable, pathogens) -> Such temperature abuse (10529ms)\nWhat are pathogens?\tManure\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Manure, can contain, pathogens) -> Manure (10578ms)\nWhat are pathogens?\tlikely\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (likely, reflect the influence of, pathogens) -> likely (10479ms)\nWhat are pathogens?\tThe role of luxS\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (The role of luxS, has been investigated in, the plant pathogen) -> The role of luxS (10656ms)\nWhat are pathogens?\tproof\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (proof, is in, our pathogen tests and flavor) -> proof (10408ms)\nWhat are pathogens?\troofs\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (roofs, can have, pathogens) -> roofs (10760ms)\nWhat are pathogens?\tPreservatives\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Preservatives, must be toxic to, pathogens) -> Preservatives (10479ms)\nWhat are pathogens?\tsmart federal laws\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (smart federal laws, can control access to, pathogens) -> smart federal laws (10672ms)\nWhat are pathogens?\tthe water\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (the water, may be contaminated with, pathogens) -> the water (10657ms)\nWhat are pathogens?\tPam\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Pam, is interested in, host/pathogen interactions) -> Pam (10513ms)\nWhat are pathogens?\tpathologists\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (pathologists, are required to test, pathogens) -> pathologists (10461ms)\nWhat are pathogens?\tthe circadian clock\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (the circadian clock, influences our susceptibility to, pathogens) -> the circadian clock (10748ms)\nWhat are pathogens?\tthe epithelium\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the epithelium, is a barrier to, pathogens) -> the epithelium (10461ms)\nWhat are pathogens?\ttext/html Select agents\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (text/html Select agents, are, pathogens) -> text/html Select agents (10479ms)\nWhat are pathogens?\tmeristem tip culture\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (meristem tip culture, is to eliminate, pathogens) -> meristem tip culture (10496ms)\nWhat are pathogens?\tAntibiotic susceptibilities\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Antibiotic susceptibilities, will be performed on, pathogens) -> Antibiotic susceptibilities (10719ms)\nWhat are pathogens?\tthe surface area\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the surface area, is potentially exposed to, pathogens) -> the surface area (10496ms)\nWhat are pathogens?\tMilk\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Milk, can be contaminated with, pathogens) -> Milk (10610ms)\nWhat are pathogens?\tenvironmental factors\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (environmental factors, influence the growth of, pathogens) -> environmental factors (10719ms)\nWhat are pathogens?\tinterventions\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (interventions, can prevent, pathogens) -> interventions (10610ms)\nWhat are pathogens?\tIxodes ricinus tick\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Ixodes ricinus tick, can transmit, pathogens) -> Ixodes ricinus tick (10771ms)\nWhat are pathogens?\tEggs and chicks\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Eggs and chicks, can carry, pathogens) -> Eggs and chicks (10562ms)\nWhat are pathogens?\t25 %\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (the pathogen, has been found in about, 25 %) -> 25 % (10529ms)\nWhat are pathogens?\tthe human body\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the human body, is able to resist, pathogens) -> the human body (10529ms)\nWhat are pathogens?\ttwo exibits\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (two exibits, are, pathogens) -> two exibits (10733ms)\nWhat are pathogens?\tThe influenza virus\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (The influenza virus, is grown in, ?specific pathogen-free?) -> The influenza virus (10513ms)\nWhat are pathogens?\tthe breeding flock\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (the breeding flock, is, pathogen) -> the breeding flock (10734ms)\nWhat are pathogens?\tmagnetoresistive biochip\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (magnetoresistive biochip, can identify, pathogens) -> magnetoresistive biochip (10733ms)\nWhat are pathogens?\tT cells\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (T cells, can kill, pathogens) -> T cells (10702ms)\nWhat are pathogens?\tshellfish\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (shellfish, are, pathogen) -> shellfish (10578ms)\nWhat are pathogens?\tprinciple sterile\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (principle sterile, can contain, pathogens) -> principle sterile (10562ms)\nWhat are pathogens?\tbacteria and viruses\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (bacteria and viruses, were discovered to be, pathogens) -> bacteria and viruses (10657ms)\nWhat are pathogens?\tProducers\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Producers, can reduce, pathogens) -> Producers (10443ms)\nWhat are pathogens?\tThe bad bacteria\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (The bad bacteria, are known as, pathogens) -> The bad bacteria (10672ms)\nWhat are pathogens?\tbroccoli\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (broccoli, is much lower in, pathogen feeding carbs) -> broccoli (10687ms)\nWhat are pathogens?\tLivup supplements\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Livup supplements, are useful to eliminate, pathogens) -> Livup supplements (10479ms)\nWhat are pathogens?\tA low dose\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (A low dose, can effectively reduce, pathogens) -> A low dose (10578ms)\nWhat are pathogens?\tthe egg\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the egg, is more vulnerable to, pathogens) -> the egg (10672ms)\nWhat are pathogens?\tThe most common drinking water contaminants\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (The most common drinking water contaminants, are, pathogens) -> The most common drinking water contaminants (10610ms)\nWhat are pathogens?\tThe team?s method\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (The team?s method, is detailed in, the journal PLoS Pathogens) -> The team?s method (10733ms)\nWhat are pathogens?\tSensors\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Sensors, can analyse, pathogens) -> Sensors (10771ms)\nWhat are pathogens?\tNystatin Cream\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Nystatin Cream, are, pathogen) -> Nystatin Cream (10771ms)\nWhat are pathogens?\tEven clear brooks and lakes\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Even clear brooks and lakes, can be loaded with, pathogens) -> Even clear brooks and lakes (10461ms)\nWhat are pathogens?\tan organism\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (an organism, can transmit, pathogens) -> an organism (10426ms)\nWhat are pathogens?\tFocus\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Focus, is on, pathogens) -> Focus (10578ms)\nWhat are pathogens?\tThe questions\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (The questions, Are, pathogens) -> The questions (10734ms)\nWhat are pathogens?\tThe foliar application formula\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (The foliar application formula, can suppress, pathogens) -> The foliar application formula (10461ms)\nWhat are pathogens?\tRaw sewage\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Raw sewage, is likely to contain, pathogens) -> Raw sewage (10594ms)\nWhat are pathogens?\tnatural agents\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (natural agents, can attack, pathogens) -> natural agents (10672ms)\nWhat are pathogens?\tinadequate air exchange\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (inadequate air exchange, can allow, pathogens) -> inadequate air exchange (10594ms)\nWhat are pathogens?\tmicrobial activity\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (microbial activity, can destroy, pathogens) -> microbial activity (10783ms)\nWhat are pathogens?\tFish\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Fish, are continually exposed to, pathogens) -> Fish (10546ms)\nWhat are pathogens?\tsteamers\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (steamers, now can help kill, pathogens) -> steamers (10626ms)\nWhat are pathogens?\twater\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (water, is mainly due to, pathogens) -> water (10701ms)\nWhat are pathogens?\theat\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (heat, can destroy, pathogens) -> heat (10513ms)\nWhat are pathogens?\tthe cells\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (the cells, are in, direct contact with the pathogen) -> the cells (10626ms)\nWhat are pathogens?\traw fish\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (raw fish, are limited to, pathogens) -> raw fish (10641ms)\nWhat are pathogens?\tGingivitis\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Gingivitis, is the result of, pathogens) -> Gingivitis (10719ms)\nWhat are pathogens?\tEuropean populations\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (European populations, are exposed to, pathogens) -> European populations (10479ms)\nWhat are pathogens?\t2 log10\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (The pathogen, was reduced by about, 2 log10) -> 2 log10 (10771ms)\nWhat are pathogens?\tThe researchers findings\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (The researchers findings, are published in, PLoS Pathogens) -> The researchers findings (10426ms)\nWhat are pathogens?\tAn AdsA homologue\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (An AdsA homologue, was identified in, the anthrax pathogen) -> An AdsA homologue (10578ms)\nWhat are pathogens?\tnatural products\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (natural products, are fungicidal to invading, pathogens) -> natural products (10657ms)\nWhat are pathogens?\tSelect Agents Select agents\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Select Agents Select agents, are, pathogens) -> Select Agents Select agents (10760ms)\nWhat are pathogens?\tthe mission briefing\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the mission briefing, is to mark, pathogens) -> the mission briefing (10529ms)\nWhat are pathogens?\tno clinical symptoms\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (no clinical symptoms, can discharge, pathogens) -> no clinical symptoms (10529ms)\nWhat are pathogens?\tthe elderly ,\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the elderly ,, are uniquely susceptible to, pathogens) -> the elderly , (10426ms)\nWhat are pathogens?\tAn effective contact\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (An effective contact, is an exposure to, pathogens) -> An effective contact (10479ms)\nWhat are pathogens?\therd animals\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (herd animals, are more susceptible to, pathogens) -> herd animals (10390ms)\nWhat are pathogens?\tglandular fever\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (glandular fever, is linked to, pathogens) -> glandular fever (10594ms)\nWhat are pathogens?\tlittle attention\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (little attention, is given to, pathogens) -> little attention (10461ms)\nWhat are pathogens?\tfields\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (fields, can carry, pathogens) -> fields (10354ms)\nWhat are pathogens?\tthe size\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (The pathogen, is about, the size) -> the size (10562ms)\nWhat are pathogens?\tspecimens\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (specimens, are likely to contain, pathogens) -> specimens (10496ms)\nWhat are pathogens?\tuncomposted plants\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (uncomposted plants, were being attacked by, pathogens) -> uncomposted plants (10657ms)\nWhat are pathogens?\t?Our No. 1 goal\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (?Our No. 1 goal, is to eliminate, pathogens) -> ?Our No. 1 goal (10771ms)\nWhat are pathogens?\tAnaerobic bacteria\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Anaerobic bacteria, are, pathogens) -> Anaerobic bacteria (10687ms)\nWhat are pathogens?\tan animal\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (an animal, is exposed to, pathogens) -> an animal (10657ms)\nWhat are pathogens?\tantibodies\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (antibodies, was solely to recognize, pathogens) -> antibodies (10610ms)\nWhat are pathogens?\t?beans\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (?beans, are notoriously susceptible to, pathogens) -> ?beans (10771ms)\nWhat are pathogens?\talternative septic systems\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (alternative septic systems, are designed to reduce, pathogens) -> alternative septic systems (10408ms)\nWhat are pathogens?\tStudents\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (Students, are also trained in, blood borne pathogens) -> Students (10529ms)\nWhat are pathogens?\tCaliper Life Sciences\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Caliper Life Sciences, are confirmed to be, pathogen) -> Caliper Life Sciences (10657ms)\nWhat are pathogens?\tcompost teas\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (compost teas, can be sources of, pathogens) -> compost teas (10372ms)\nWhat are pathogens?\tpoliovirus\t1.111111111107\tWhat are pathogens? -> $x: ($x, classify as, pathogen) -> (poliovirus, is classified as, a BSL 2 pathogen) -> poliovirus (10641ms)\nWhat are pathogens?\tpastured cows\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (pastured cows, can still have, pathogens) -> pastured cows (10496ms)\nWhat are pathogens?\te-coli\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (e-coli, are, pathogens) -> e-coli (10771ms)\nWhat are pathogens?\ta few\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (a few, can be, pathogens) -> a few (10408ms)\nWhat are pathogens?\tthe Wellcome Trust\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (the Wellcome Trust, was published in, the journal PLoS Pathogens) -> the Wellcome Trust (10760ms)\nWhat are pathogens?\tground meat\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (ground meat, can have, pathogens) -> ground meat (10529ms)\nWhat are pathogens?\tAdequate normal flora\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Adequate normal flora, is required to keep, pathogens) -> Adequate normal flora (10426ms)\nWhat are pathogens?\tsewage sludge\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (sewage sludge, is rich in, dangerous human pathogens) -> sewage sludge (10702ms)\nWhat are pathogens?\tpuppy food\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (puppy food, is, pathogen) -> puppy food (10733ms)\nWhat are pathogens?\tThe lactic bacteria\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (The lactic bacteria, can combat, pathogens) -> The lactic bacteria (10390ms)\nWhat are pathogens?\tindividual stalls\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (individual stalls, are often exposed to, pathogens) -> individual stalls (10546ms)\nWhat are pathogens?\tbeneficial stomach bacteria\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (beneficial stomach bacteria, are deadly to, pathogens) -> beneficial stomach bacteria (10687ms)\nWhat are pathogens?\tMELAfol\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (MELAfol, is impervious to, pathogens) -> MELAfol (10479ms)\nWhat are pathogens?\tsupermarket food\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (supermarket food, can be contaminated with, pathogens) -> supermarket food (10390ms)\nWhat are pathogens?\tLPS\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (LPS, can be modified by, pathogens) -> LPS (10372ms)\nWhat are pathogens?\tthe genus\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (the genus, are, pathogens) -> the genus (10372ms)\nWhat are pathogens?\tNot all germs\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Not all germs, are, pathogens) -> Not all germs (10626ms)\nWhat are pathogens?\tfresh animal manure\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (fresh animal manure, can contain, pathogens) -> fresh animal manure (10610ms)\nWhat are pathogens?\tapoptosis\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (apoptosis, may be beneficial to, pathogens) -> apoptosis (10771ms)\nWhat are pathogens?\tanimal byproducts\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (animal byproducts, can contain, pathogens) -> animal byproducts (10578ms)\nWhat are pathogens?\tsmall peptide antimicrobials\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (small peptide antimicrobials, can control, pathogens) -> small peptide antimicrobials (10641ms)\nWhat are pathogens?\tsuch effects\t1.111111111107\tWhat are pathogens? -> $x: ($x, influence, pathogen) -> (such effects, are likely to be influenced by, pathogen effects) -> such effects (10771ms)\nWhat are pathogens?\tnon-pathogens\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (non-pathogens, can be converted into, pathogens) -> non-pathogens (10578ms)\nWhat are pathogens?\tmushroom\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (dangerous pathogens, is about to, mushroom) -> mushroom (10594ms)\nWhat are pathogens?\tfresh waters\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (fresh waters, are impaired due to, pathogens) -> fresh waters (10719ms)\nWhat are pathogens?\tglands\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (glands, is very susceptible to, pathogens) -> glands (10546ms)\nWhat are pathogens?\tautopsy\t1.111111111107\tWhat are pathogens? -> $x: ($x, classify as, pathogen) -> (autopsy, were classified as, non-pathogens) -> autopsy (10702ms)\nWhat are pathogens?\ta category\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (a category, are more susceptible to, pathogens) -> a category (10478ms)\nWhat are pathogens?\tThe breed\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (The breed, is less susceptible to, pathogens) -> The breed (10626ms)\nWhat are pathogens?\tspatial transmission Disease vectors\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (spatial transmission Disease vectors, can transmit, pathogens) -> spatial transmission Disease vectors (10408ms)\nWhat are pathogens?\tthe following criteria\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the following criteria, were used to identify, pathogens) -> the following criteria (10626ms)\nWhat are pathogens?\tSouthern California\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Southern California, Are, pathogens) -> Southern California (10610ms)\nWhat are pathogens?\tHIV-infection\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (HIV-infection, is seen in almost, all infectious pathogens) -> HIV-infection (10512ms)\nWhat are pathogens?\tMicrosporidia\t1.111111111107\tWhat are pathogens? -> $x: ($x, classify as, pathogen) -> (Microsporidia, are classified as, priority pathogens) -> Microsporidia (10562ms)\nWhat are pathogens?\tdoctors\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (doctors, are, pathogens) -> doctors (10594ms)\nWhat are pathogens?\thome solution\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (home solution, can still help reduce, pathogens) -> home solution (10702ms)\nWhat are pathogens?\tradiation\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (radiation, can kill, pathogens) -> radiation (10641ms)\nWhat are pathogens?\tRhapis\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (Rhapis, are very resistant to, pathogens) -> Rhapis (10372ms)\nWhat are pathogens?\tNot all viruses\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Not all viruses, are, pathogens) -> Not all viruses (10443ms)\nWhat are pathogens?\tmucosal surfaces\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (mucosal surfaces, are exposed to, pathogens) -> mucosal surfaces (10771ms)\nWhat are pathogens?\tcertain peptides\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (certain peptides, can kill, pathogens) -> certain peptides (10594ms)\nWhat are pathogens?\tthe preserved cells\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (the preserved cells, can be tested for, pathogens) -> the preserved cells (10426ms)\nWhat are pathogens?\tthe goal\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (the goal, is to keep, pathogens) -> the goal (10479ms)\nWhat are pathogens?\traw meat\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (raw meat, can still contain, pathogens) -> raw meat (10748ms)\nWhat are pathogens?\thealthy bodies\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (healthy bodies, are, pathogens) -> healthy bodies (10687ms)\nWhat are pathogens?\ta huge surface area\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (a huge surface area, is exposed to, pathogens) -> a huge surface area (10594ms)\nWhat are pathogens?\thiv and hep C\t1.111111111107\tWhat are pathogens? -> $x: (pathogen, be about, $x) -> (the bloodborne pathogens, was all about, hiv and hep C) -> hiv and hep C (10719ms)\nWhat are pathogens?\tMigrants\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Migrants, can be exposed to, pathogens) -> Migrants (10748ms)\nWhat are pathogens?\tfood\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (food, are, pathogens) -> food (10578ms)\nWhat are pathogens?\tacinetobacter\t1.111111111107\tWhat are pathogens? -> $x: ($x, classify as, pathogen) -> (acinetobacter, is classified as, an opportunistic pathogen) -> acinetobacter (10687ms)\nWhat are pathogens?\tindoors\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (indoors, are known to be, pathogens) -> indoors (10496ms)\nWhat are pathogens?\tangular cheilitis\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (angular cheilitis, are, pathogens) -> angular cheilitis (10687ms)\nWhat are pathogens?\tsediment\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (sediment, can transport, pathogens) -> sediment (10372ms)\nWhat are pathogens?\tPollutants\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (Pollutants, addressed were, pathogens) -> Pollutants (10657ms)\nWhat are pathogens?\torganic matter\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (organic matter, can also contain, pathogens) -> organic matter (10354ms)\nWhat are pathogens?\tsystem\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (system, is a subpart of the body within, Pathogens) -> system (10461ms)\nWhat are pathogens?\tB. hominis\t1.111111111107\tWhat are pathogens? -> $x: ($x, be to, pathogen) -> (B. hominis, may be considered to be, pathogens) -> B. hominis (10610ms)\nWhat are pathogens?\t09:37\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (09:37, AM in, Pathogens , Physiology & Genetics) -> 09:37 (10372ms)\nWhat are pathogens?\tAny bodily substance\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Any bodily substance, can carry, pathogens) -> Any bodily substance (10672ms)\nWhat are pathogens?\tOPIM\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (OPIM, are enrolled in, the Bloodborne Pathogens Program) -> OPIM (10771ms)\nWhat are pathogens?\tbendamustine\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (bendamustine, is, pathogen) -> bendamustine (10687ms)\nWhat are pathogens?\torganisms\t1.111111111107\tWhat are pathogens? -> $x: ($x, be be, pathogen) -> (organisms, are, pathogens) -> organisms (10719ms)\nWhat are pathogens?\tdowner cows\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (downer cows, can pass on, pathogens) -> downer cows (10461ms)\nWhat are pathogens?\tWest Nile virus\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (West Nile virus, are important in, amplifying the pathogen) -> West Nile virus (10702ms)\nWhat are pathogens?\tEven treated sewage\t1.111111111107\tWhat are pathogens? -> $x: ($x, can, pathogen) -> (Even treated sewage, can contain, pathogens) -> Even treated sewage (10512ms)\nWhat are pathogens?\tthe past decade\t1.111111111107\tWhat are pathogens? -> $x: ($x, be in, pathogen) -> (the past decade, are listed in, Table 2. Overseas pathogens) -> the past decade (10594ms)\nWhat are pathogens?\tEiken Chemical\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (Eiken Chemical, developed, the foodborne pathogen kits) -> Eiken Chemical (10794ms)\nWhat are pathogens?\tUC Davis\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (UC Davis, develop methods to detect, pathogens) -> UC Davis (10806ms)\nWhat are pathogens?\tthe immune response\t0.999999999997\tWhat are pathogens? -> $x: ($x, induce, pathogen) -> (the immune response, were induced by, a pathogen) -> the immune response (10783ms)\nWhat are pathogens?\tPharmacists\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (Pharmacists, develop drugs against, particular pathogens) -> Pharmacists (10783ms)\nWhat are pathogens?\tthe late 1960\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (the late 1960, 's to develop, disabling pathogens) -> the late 1960 (10805ms)\nWhat are pathogens?\tthe Weizmann Institute\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (the Weizmann Institute, are developing, a host-specific pathogen) -> the Weizmann Institute (10806ms)\nWhat are pathogens?\ta technique\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (a technique, developed to, track pathogens in sewage) -> a technique (10794ms)\nWhat are pathogens?\tThe team\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (The team, aims to develop, a plant-pathogen methodology) -> The team (10783ms)\nWhat are pathogens?\tthe risk assessment models\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (the risk assessment models, developed world-wide for, pathogens) -> the risk assessment models (10794ms)\nWhat are pathogens?\tthe vaccine composition\t0.999999999997\tWhat are pathogens? -> $x: ($x, comprise, pathogen) -> (the vaccine composition, can comprise, an attenuated pathogen) -> the vaccine composition (10794ms)\nWhat are pathogens?\tThe latter two cases\t0.999999999997\tWhat are pathogens? -> $x: ($x, represent, pathogen) -> (The latter two cases, represent, pathogens) -> The latter two cases (10794ms)\nWhat are pathogens?\tIncontri\t0.999999999997\tWhat are pathogens? -> $x: ($x, di, pathogen) -> (Incontri, di, Fisica and related pathogens) -> Incontri (10806ms)\nWhat are pathogens?\tthe water environment\t0.999999999997\tWhat are pathogens? -> $x: ($x, represent, pathogen) -> (the water environment, represent, actual pathogens) -> the water environment (10794ms)\nWhat are pathogens?\tM genitalium\t0.999999999997\tWhat are pathogens? -> $x: ($x, represent, pathogen) -> (M genitalium, may represent, an important new pathogen) -> M genitalium (10794ms)\nWhat are pathogens?\tfungicides\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (fungicides, has developed in, the pathogen population) -> fungicides (10783ms)\nWhat are pathogens?\tNeutrophil microbicides\t0.999999999997\tWhat are pathogens? -> $x: ($x, induce, pathogen) -> (Neutrophil microbicides, induce, a pathogen survival response) -> Neutrophil microbicides (10794ms)\nWhat are pathogens?\tPti5\t0.999999999997\tWhat are pathogens? -> $x: ($x, induce, pathogen) -> (Pti5, are induced by, pathogens) -> Pti5 (10806ms)\nWhat are pathogens?\tMicrobial insecticides\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (Microbial insecticides, are developed from, insect pathogens) -> Microbial insecticides (10806ms)\nWhat are pathogens?\tequilibrium\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (equilibrium, develop protective responses against, pathogens) -> equilibrium (10794ms)\nWhat are pathogens?\tthe government\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (the government, secretly developed, these ?mystery pathogens) -> the government (10783ms)\nWhat are pathogens?\tfish don???t\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (fish don???t, necessarily develop immunity to, pathogens) -> fish don???t (10806ms)\nWhat are pathogens?\tcoli\t0.999999999997\tWhat are pathogens? -> $x: ($x, represent, pathogen) -> (coli, represent a group of, pathogens) -> coli (10783ms)\nWhat are pathogens?\tBrucella\t0.999999999997\tWhat are pathogens? -> $x: ($x, comprise, pathogen) -> (Brucella, is comprised mostly of, mammalian pathogens) -> Brucella (10794ms)\nWhat are pathogens?\tThe first three characters\t0.999999999997\tWhat are pathogens? -> $x: ($x, represent, pathogen) -> (The first three characters, represent, the bacterial pathogen) -> The first three characters (10783ms)\nWhat are pathogens?\t?modern ? children\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (?modern ? children, develop resistance to, pathogens) -> ?modern ? children (10783ms)\nWhat are pathogens?\tthe person\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (the person, develops, resistance to the pathogen) -> the person (10783ms)\nWhat are pathogens?\tPrion\t0.999999999997\tWhat are pathogens? -> $x: ($x, represent, pathogen) -> (Prion, represents a unique class of, pathogens) -> Prion (10806ms)\nWhat are pathogens?\t1?-OHase expression\t0.999999999997\tWhat are pathogens? -> $x: ($x, induce, pathogen) -> (1?-OHase expression, is induced by, pathogens) -> 1?-OHase expression (10783ms)\nWhat are pathogens?\tcorynebacteria\t0.999999999997\tWhat are pathogens? -> $x: ($x, represent, pathogen) -> (corynebacteria, may represent, pathogens) -> corynebacteria (10794ms)\nWhat are pathogens?\t8 Infrastructure\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (8 Infrastructure, develop, pathogens) -> 8 Infrastructure (10794ms)\nWhat are pathogens?\tthe adenovirus\t0.999999999997\tWhat are pathogens? -> $x: ($x, develop, pathogen) -> (the adenovirus, will develop immunity to, the other pathogen) -> the adenovirus (10806ms)\nWhat are pathogens?\tStanley Prusiner\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, discover, pathogen) -> (Stanley Prusiner, discovered, an entirely new class of pathogens) -> Stanley Prusiner (10878ms)\nWhat are pathogens?\ttransgene phenotypes\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (transgene phenotypes, can be modified by, pathogen invasion) -> transgene phenotypes (10869ms)\nWhat are pathogens?\tThe approach\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (The approach, could be extended to, other pathogens) -> The approach (10859ms)\nWhat are pathogens?\t? Phage therapy\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (? Phage therapy, can be used to kill, specific pathogens) -> ? Phage therapy (10878ms)\nWhat are pathogens?\tpleural fluid culture\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (pleural fluid culture, can be used to identify, the pathogen) -> pleural fluid culture (10817ms)\nWhat are pathogens?\tintestinal disease\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (intestinal disease, can be colonized by, a pathogen) -> intestinal disease (10816ms)\nWhat are pathogens?\tmechanism\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (mechanism, could be putrescent by, pathogen or spyware) -> mechanism (10848ms)\nWhat are pathogens?\tStolons and roots\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Stolons and roots, can be killed by, the pathogen) -> Stolons and roots (10816ms)\nWhat are pathogens?\tDesignated host ranges\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Designated host ranges, can be inconsistent among, pathogens) -> Designated host ranges (10868ms)\nWhat are pathogens?\tRetroviruses\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Retroviruses, can be particularly, insidious pathogens) -> Retroviruses (10806ms)\nWhat are pathogens?\tTicks\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Ticks, can also be analyzed for, the pathogens) -> Ticks (10838ms)\nWhat are pathogens?\tan outbreak\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (an outbreak, could be traced to, a single pathogen) -> an outbreak (10828ms)\nWhat are pathogens?\tthe fruit\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (the fruit, could be inoculated with, decay-causing pathogens) -> the fruit (10828ms)\nWhat are pathogens?\timmune-mediated damage\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (immune-mediated damage, can be more lethal than, the pathogen) -> immune-mediated damage (10868ms)\nWhat are pathogens?\tFecal material\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Fecal material, can be a source of, pathogens) -> Fecal material (10848ms)\nWhat are pathogens?\traw milk\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (raw milk, can be contaminated with, a pathogen) -> raw milk (10869ms)\nWhat are pathogens?\tmice\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (mice, could be designed to combat, deadlier toxins and pathogens) -> mice (10806ms)\nWhat are pathogens?\tMicropredators\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Micropredators, can be important vectors for, pathogens) -> Micropredators (10848ms)\nWhat are pathogens?\tthe product\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (the product, could be susceptible to, pathogen growth) -> the product (10838ms)\nWhat are pathogens?\tAcute bronchitis\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Acute bronchitis, can be caused by, contagious pathogens) -> Acute bronchitis (10858ms)\nWhat are pathogens?\tCMI dysfunction\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (CMI dysfunction, can be attributed to, the pathogen) -> CMI dysfunction (10838ms)\nWhat are pathogens?\tground beef\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (ground beef, could be tested only once for, pathogens) -> ground beef (10816ms)\nWhat are pathogens?\tLocal crops\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (Local crops, could be affected by, dangerous pathogens) -> Local crops (10828ms)\nWhat are pathogens?\tProduce\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Produce, can also be contaminated with, pathogens) -> Produce (10827ms)\nWhat are pathogens?\traw seafood\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (raw seafood, can also be the vector for, various pathogens) -> raw seafood (10858ms)\nWhat are pathogens?\tcats\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (cats, can be due to, different pathogens) -> cats (10828ms)\nWhat are pathogens?\tthe transgenic seeds\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (the transgenic seeds, can be transferred to, human pathogens) -> the transgenic seeds (10878ms)\nWhat are pathogens?\ta small or organic farm\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (a small or organic farm, can be a source of, pathogens) -> a small or organic farm (10828ms)\nWhat are pathogens?\thuman disease\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (human disease, can be attributed to, pathogens) -> human disease (10869ms)\nWhat are pathogens?\tThe immune response\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (The immune response, can be against, a pathogen) -> The immune response (10828ms)\nWhat are pathogens?\tConsumers\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Consumers, can be exposed to, pathogens) -> Consumers (10869ms)\nWhat are pathogens?\tno significant change\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (no significant change, can be seen for, six pathogens) -> no significant change (10827ms)\nWhat are pathogens?\tReleased non-pathogens\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Released non-pathogens, can be readily converted into, pathogens) -> Released non-pathogens (10869ms)\nWhat are pathogens?\tThe technique\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (The technique, could eventually be used to track down, pathogens) -> The technique (10848ms)\nWhat are pathogens?\tthe gut\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, constitute, pathogen) -> (the gut, constitute a reservoir of, potential pathogens) -> the gut (10848ms)\nWhat are pathogens?\tcrops\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (crops, can potentially be affected by, pathogens) -> crops (10828ms)\nWhat are pathogens?\tlime\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (lime, can be added to control, pathogens) -> lime (10838ms)\nWhat are pathogens?\tsynthetic viruses\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (synthetic viruses, can be used to make, pathogens) -> synthetic viruses (10838ms)\nWhat are pathogens?\tthe milk and calves\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (the milk and calves, can be exposed to, this pathogen) -> the milk and calves (10817ms)\nWhat are pathogens?\tItems\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (Items, could be exposed to, blood-borne pathogens and chemicals) -> Items (10817ms)\nWhat are pathogens?\tnewer techniques\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (newer techniques, can be used to directly detect, pathogens) -> newer techniques (10848ms)\nWhat are pathogens?\tlongleaf pine\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (longleaf pine, can be infected with, these pathogens) -> longleaf pine (10828ms)\nWhat are pathogens?\tSTEC\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (STEC, can be distinguished from, other pathogens) -> STEC (10816ms)\nWhat are pathogens?\twastewater\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (wastewater, could be mechanisms of, pathogen transfer) -> wastewater (10878ms)\nWhat are pathogens?\tThe brains\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (The brains, can be kept completely isolated from, pathogens) -> The brains (10816ms)\nWhat are pathogens?\tCattle\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Cattle, can be sub-clinically infected with, these pathogens) -> Cattle (10848ms)\nWhat are pathogens?\tDavis\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, discover, pathogen) -> (Davis, even discovered, a pathogen) -> Davis (10848ms)\nWhat are pathogens?\thelical microbes\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, discover, pathogen) -> (helical microbes, originally discovered as, plant pathogens) -> helical microbes (10848ms)\nWhat are pathogens?\tthe mature bird\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (the mature bird, can be resilient to, pathogen colonization) -> the mature bird (10868ms)\nWhat are pathogens?\t? ??Imported fish\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (? ??Imported fish, could be more susceptible to, local pathogens) -> ? ??Imported fish (10838ms)\nWhat are pathogens?\tone machine\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (one machine, can be used to test for, multiple pathogens) -> one machine (10858ms)\nWhat are pathogens?\tSuch resistance\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Such resistance, can then be passed on to, human pathogens) -> Such resistance (10858ms)\nWhat are pathogens?\tCo-infection Dogs\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Co-infection Dogs, can be co-infected with, other pathogens) -> Co-infection Dogs (10878ms)\nWhat are pathogens?\tone TcR\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (one TcR, could be directed against, the pathogen) -> one TcR (10869ms)\nWhat are pathogens?\tyoung shoots\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (young shoots, can be killed by, this pathogen) -> young shoots (10868ms)\nWhat are pathogens?\tPCR\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (PCR, can be used to detect, pathogens) -> PCR (10848ms)\nWhat are pathogens?\tFamily members\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (Family members, could just be passing, each other pathogens) -> Family members (10859ms)\nWhat are pathogens?\tthe symptom\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (the symptom, can be expected to last until, the pathogens) -> the symptom (10859ms)\nWhat are pathogens?\tantibiotic resistance\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, could be, pathogen) -> (antibiotic resistance, could be passed on to, pathogens) -> antibiotic resistance (10838ms)\nWhat are pathogens?\tamygdala activity\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (amygdala activity, can also be achieved by, pathogens) -> amygdala activity (10869ms)\nWhat are pathogens?\tlivestock production\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (livestock production, can be transferred to, other pathogens) -> livestock production (10817ms)\nWhat are pathogens?\tcatheter usage\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (catheter usage, can be caused by, various pathogens) -> catheter usage (10878ms)\nWhat are pathogens?\tSimilar symptoms\t0.9999999999959999\tWhat are pathogens? -> $x: ($x, can be, pathogen) -> (Similar symptoms, can also be caused by, bacterial pathogens) -> Similar symptoms (10869ms)\nWhat are pathogens?\tlong\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, leave, pathogen) -> (long, could have left a legacy of, pathogens) -> long (10888ms)\nWhat are pathogens?\tretinal damage\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, is critical in minimizing, retinal damage) -> retinal damage (10878ms)\nWhat are pathogens?\tlocker rooms\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can lurk in, locker rooms) -> locker rooms (10916ms)\nWhat are pathogens?\tsludge\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, exist in, sludge) -> sludge (10943ms)\nWhat are pathogens?\tthe intestine\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, persisting in, the intestine) -> the intestine (10925ms)\nWhat are pathogens?\tAuthorities Concept Scheme\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (10934ms)\nWhat are pathogens?\tcrop residue or in the soil\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, survive in, crop residue or in the soil) -> crop residue or in the soil (10952ms)\nWhat are pathogens?\tthe mosquitos\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (the mosquitos, get rid of, these pathogens) -> the mosquitos (10943ms)\nWhat are pathogens?\t80 proof alcohol\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, thrive in, 80 proof alcohol) -> 80 proof alcohol (10934ms)\nWhat are pathogens?\tsurface water\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, surface water) -> surface water (10925ms)\nWhat are pathogens?\tworm composting\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (worm composting, gets rid of, pathogens) -> worm composting (10878ms)\nWhat are pathogens?\tfuture containment efforts\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, will be important in, future containment efforts) -> future containment efforts (10898ms)\nWhat are pathogens?\tthe January issue\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, appeared in, the January issue) -> the January issue (10934ms)\nWhat are pathogens?\twildlife\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, commonly found in, wildlife) -> wildlife (10925ms)\nWhat are pathogens?\tsurface\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may be found in, surface) -> surface (10925ms)\nWhat are pathogens?\tcertain your P.C.\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (certain your P.C., has got, pathogen attack) -> certain your P.C. (10888ms)\nWhat are pathogens?\t39 %\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, were identified in, 39 %) -> 39 % (10916ms)\nWhat are pathogens?\tSmokers ' mouths\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (Smokers ' mouths, getting, colonized by pathogens) -> Smokers ' mouths (10907ms)\nWhat are pathogens?\tthe doctor\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (the doctor, get tested for, the pathogen) -> the doctor (10888ms)\nWhat are pathogens?\tnumber\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may increase in, number) -> number (10943ms)\nWhat are pathogens?\thigh-oxygen environments\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, die in, high-oxygen environments) -> high-oxygen environments (10898ms)\nWhat are pathogens?\tany\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can happen in, any) -> any (10952ms)\nWhat are pathogens?\tCompost\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (Compost, must get hot enough to kill, pathogens) -> Compost (10925ms)\nWhat are pathogens?\tthe lungs\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the lungs) -> the lungs (10934ms)\nWhat are pathogens?\tkids\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (kids, get exposed to, bad pathogens) -> kids (10907ms)\nWhat are pathogens?\ta radical change\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, has resulted in, a radical change) -> a radical change (10907ms)\nWhat are pathogens?\tHDL\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (HDL, gets converted to, pathogen-fighting particles) -> HDL (10888ms)\nWhat are pathogens?\tbody fluids\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, contained in, body fluids) -> body fluids (10943ms)\nWhat are pathogens?\tFast-moving species\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, leave, pathogen) -> (Fast-moving species, leave, pathogens) -> Fast-moving species (10916ms)\nWhat are pathogens?\thospitals\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, were created in, hospitals) -> hospitals (10925ms)\nWhat are pathogens?\tThe objective\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (The objective, is to get rid of, the pathogen) -> The objective (10878ms)\nWhat are pathogens?\tskills assessments\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, participate in, skills assessments) -> skills assessments (10916ms)\nWhat are pathogens?\tSurprise Gift\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (Surprise Gift, get, enteric pathogen) -> Surprise Gift (10934ms)\nWhat are pathogens?\tthe Evil Milk\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogen, is in, the Evil Milk) -> the Evil Milk (10898ms)\nWhat are pathogens?\tthe patient\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (the patient, can get treatment for, the pathogen) -> the patient (10916ms)\nWhat are pathogens?\tdrinking water\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, drinking water) -> drinking water (10907ms)\nWhat are pathogens?\tspliced genes\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (spliced genes, may get transferred to, human pathogens) -> spliced genes (10888ms)\nWhat are pathogens?\tYou?ve\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (You?ve, got, pathogen checking software) -> You?ve (10916ms)\nWhat are pathogens?\ta field\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, a field) -> a field (10878ms)\nWhat are pathogens?\tsuch an oxygen rich environment\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, cannot live in, such an oxygen rich environment) -> such an oxygen rich environment (10897ms)\nWhat are pathogens?\tthe compost\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, still remain in, the compost) -> the compost (10907ms)\nWhat are pathogens?\tnutrients\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (nutrients, get rid of, pathogens and parasites) -> nutrients (10888ms)\nWhat are pathogens?\tDetrick lab\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (Detrick lab, got, its pathogens) -> Detrick lab (10943ms)\nWhat are pathogens?\tThe material\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, leave, pathogen) -> (The material, left over from, the pathogens) -> The material (10952ms)\nWhat are pathogens?\ta host\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (a host, gets infected by, a pathogen) -> a host (10943ms)\nWhat are pathogens?\tconstant movement\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are in, constant movement) -> constant movement (10888ms)\nWhat are pathogens?\tthe granuloma\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, have been found in, the granuloma) -> the granuloma (10916ms)\nWhat are pathogens?\tcongee\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may be present in, congee) -> congee (10907ms)\nWhat are pathogens?\tan overwhelming fashion\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, activate in, an overwhelming fashion) -> an overwhelming fashion (10934ms)\nWhat are pathogens?\tlivestock and poultry\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, cause viral infections in, livestock and poultry) -> livestock and poultry (10934ms)\nWhat are pathogens?\tChina\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, was observed in, China) -> China (10888ms)\nWhat are pathogens?\trecreational water users\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, can cause illness in, recreational water users) -> recreational water users (10925ms)\nWhat are pathogens?\tGeneral Subdivisions Concept Scheme\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, In Scheme, General Subdivisions Concept Scheme) -> General Subdivisions Concept Scheme (10925ms)\nWhat are pathogens?\tmanure\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, manure) -> manure (10907ms)\nWhat are pathogens?\tTable 1\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, is shown in, Table 1) -> Table 1 (10897ms)\nWhat are pathogens?\tthe Bio-sand Filter\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occurs in, the Bio-sand Filter) -> the Bio-sand Filter (10934ms)\nWhat are pathogens?\tthe environment\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the environment) -> the environment (10952ms)\nWhat are pathogens?\tsuch small amounts\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, are typically present in, such small amounts) -> such small amounts (10943ms)\nWhat are pathogens?\tfoodborne illness\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can result in, foodborne illness) -> foodborne illness (10943ms)\nWhat are pathogens?\tcontact with the UV rays\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, come in, contact with the UV rays) -> contact with the UV rays (10888ms)\nWhat are pathogens?\tthe re-circulated air\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the re-circulated air) -> the re-circulated air (10934ms)\nWhat are pathogens?\tloss\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can result in, loss) -> loss (10907ms)\nWhat are pathogens?\tPasteurized Milk\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, Can Multiply in, Pasteurized Milk) -> Pasteurized Milk (10934ms)\nWhat are pathogens?\ta dormant stage\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are in, a dormant stage) -> a dormant stage (10925ms)\nWhat are pathogens?\tthe digestive tract\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, the digestive tract) -> the digestive tract (10907ms)\nWhat are pathogens?\tuntreated and land-disposed wastes\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, can survive in, untreated and land-disposed wastes) -> untreated and land-disposed wastes (10934ms)\nWhat are pathogens?\tthe population\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, the population) -> the population (10943ms)\nWhat are pathogens?\t500k who?ve\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (500k who?ve, got, the pathogen) -> 500k who?ve (10916ms)\nWhat are pathogens?\tgreater numbers\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are be present in, greater numbers) -> greater numbers (10943ms)\nWhat are pathogens?\tpower electrical generators\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, leave, pathogen) -> (power electrical generators, leave, pathogen-free compost) -> power electrical generators (10888ms)\nWhat are pathogens?\thuman pathogens\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, leave, pathogen) -> (human pathogens, leave about, 2 to 3 % human pathogens) -> human pathogens (10878ms)\nWhat are pathogens?\tsmokers\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (smokers, getting, colonized by pathogens-bacteria) -> smokers (10888ms)\nWhat are pathogens?\tDr. Beam\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (Dr. Beam, get a short course on, pathogens) -> Dr. Beam (10888ms)\nWhat are pathogens?\tthe food chain\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, become established in, the food chain) -> the food chain (10925ms)\nWhat are pathogens?\tsoil\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogen, survives in, soil) -> soil (10943ms)\nWhat are pathogens?\tvermicomposting process\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogen, die off in, vermicomposting process) -> vermicomposting process (10907ms)\nWhat are pathogens?\tfecal material and mucus\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, fecal material and mucus) -> fecal material and mucus (10898ms)\nWhat are pathogens?\tpasteurized milk\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, live in, pasteurized milk) -> pasteurized milk (10907ms)\nWhat are pathogens?\tthe Fort Detrick lab\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (the Fort Detrick lab, got, its pathogens) -> the Fort Detrick lab (10934ms)\nWhat are pathogens?\tIraq\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (Iraq, also got samples of, other deadly pathogens) -> Iraq (10898ms)\nWhat are pathogens?\tthe food chain and cause disease\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, survive in, the food chain and cause disease) -> the food chain and cause disease (10943ms)\nWhat are pathogens?\tinfectivity\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, also vary in, infectivity) -> infectivity (10916ms)\nWhat are pathogens?\ta person\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (a person, gets really sick with, a food-borne pathogen) -> a person (10878ms)\nWhat are pathogens?\tdirt\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, are in, dirt) -> dirt (10916ms)\nWhat are pathogens?\twild fish populations\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, exist in, wild fish populations) -> wild fish populations (10907ms)\nWhat are pathogens?\tdiagnostic data reports\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, may be skewed in, diagnostic data reports) -> diagnostic data reports (10897ms)\nWhat are pathogens?\tsewage\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, sewage) -> sewage (10916ms)\nWhat are pathogens?\tfriends\t0.8888888888859999\tWhat are pathogens? -> $x: ($x, get, pathogen) -> (friends, may have gotten, the pathogen) -> friends (10925ms)\nWhat are pathogens?\tthe water column\t0.8888888888859999\tWhat are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occurs both in, the water column) -> the water column (10916ms)\nWhat are pathogens?\twork\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (work, involving, dangerous pathogens) -> work (10961ms)\nWhat are pathogens?\tDiabetic foot infections\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (Diabetic foot infections, involve, multiple potential pathogens) -> Diabetic foot infections (10969ms)\nWhat are pathogens?\tBpaA\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (BpaA, is involved in, a critical early pathogen-host interaction) -> BpaA (10952ms)\nWhat are pathogens?\tResistance responses\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (Resistance responses, involve recognition of, pathogen) -> Resistance responses (10952ms)\nWhat are pathogens?\tPlant pathology\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (Plant pathology, involves the study of, plants and pathogens) -> Plant pathology (10969ms)\nWhat are pathogens?\tbronchitis cases\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (bronchitis cases, involve, a viral pathogen) -> bronchitis cases (10969ms)\nWhat are pathogens?\ta disaster\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (a disaster, involving, resistant pathogens) -> a disaster (10961ms)\nWhat are pathogens?\tInfectious disease emergencies\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (Infectious disease emergencies, involve, biological pathogens) -> Infectious disease emergencies (10960ms)\nWhat are pathogens?\tThe latter\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (The latter, clearly involves, pathogen load) -> The latter (10952ms)\nWhat are pathogens?\tinfancy\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (infancy, may be involved as, the triggering pathogen) -> infancy (10961ms)\nWhat are pathogens?\t3. Future threats\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (3. Future threats, may involve, novel pathogens) -> 3. Future threats (10969ms)\nWhat are pathogens?\tHIV\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (HIV, occasionally involve work on, other pathogens) -> HIV (10961ms)\nWhat are pathogens?\tThe treatment\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (The treatment, involving, exposure of plant to the pathogen) -> The treatment (10961ms)\nWhat are pathogens?\tAdditional projects\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (Additional projects, involve detecting, priority pathogens) -> Additional projects (10961ms)\nWhat are pathogens?\tsquash\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (squash, can involve, numerous pathogens) -> squash (10961ms)\nWhat are pathogens?\tthe selected genes\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (the selected genes, are involved with, pathogen defense) -> the selected genes (10952ms)\nWhat are pathogens?\tCCD\t0.888888888885\tWhat are pathogens? -> $x: ($x, involve, pathogen) -> (CCD, involves an interaction between, pathogens) -> CCD (10952ms)\nWhat are pathogens?\tthe Philippines\t0.7777777777739999\tWhat are pathogens? -> $x: ($x, be use as, pathogen) -> (the Philippines, was used as, the pathogen) -> the Philippines (10969ms)\nWhat are pathogens?\tThe chip\t0.7777777777739999\tWhat are pathogens? -> $x: ($x, be use as, pathogen) -> (The chip, will be used as, a portable pathogen detection system) -> The chip (10969ms)\nWhat are pathogens?\tany population of insects\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (any population of insects, contains, pathogens) -> any population of insects (11004ms)\nWhat are pathogens?\tWater supplies\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Water supplies, may contain, pathogens) -> Water supplies (11004ms)\nWhat are pathogens?\tpolluted resources\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (polluted resources, contains, pathogens) -> polluted resources (10991ms)\nWhat are pathogens?\tSoil\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Soil, naturally contains, pathogens) -> Soil (11004ms)\nWhat are pathogens?\tfoods\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (foods, may contain, pathogens) -> foods (10998ms)\nWhat are pathogens?\tatheromas\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (atheromas, contain greater proportions of, pathogens) -> atheromas (10991ms)\nWhat are pathogens?\tHospital environments\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Hospital environments, can contain many types of, pathogens) -> Hospital environments (10998ms)\nWhat are pathogens?\tconventional dairies\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (conventional dairies, contains, pathogens) -> conventional dairies (10991ms)\nWhat are pathogens?\tanimal wastes\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (animal wastes, may also contain, pathogens) -> animal wastes (10985ms)\nWhat are pathogens?\tWastewater\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Wastewater, contains, pathogens) -> Wastewater (11010ms)\nWhat are pathogens?\tthe latter\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the latter, may still contain some traces of, pathogens) -> the latter (10977ms)\nWhat are pathogens?\tGreywater\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Greywater, contains, less pathogens) -> Greywater (10977ms)\nWhat are pathogens?\ta food\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (a food, contains, pathogens) -> a food (10991ms)\nWhat are pathogens?\tThe droppings\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (The droppings, contain, pathogens) -> The droppings (11004ms)\nWhat are pathogens?\tThe former\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (The former, may contain large numbers of, pathogens) -> The former (10991ms)\nWhat are pathogens?\ttime\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (time, contain, vegetative pathogens) -> time (10998ms)\nWhat are pathogens?\tfood and water\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (food and water, often contain, pathogens) -> food and water (10998ms)\nWhat are pathogens?\tDiscoloured wood\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Discoloured wood, contained, the pathogen) -> Discoloured wood (10977ms)\nWhat are pathogens?\tthe group\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the group, contains, pathogens) -> the group (10998ms)\nWhat are pathogens?\tFRESH WATER Sewage\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (FRESH WATER Sewage, contains, pathogens) -> FRESH WATER Sewage (10998ms)\nWhat are pathogens?\ta sample\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (a sample, containing, a pathogen) -> a sample (10969ms)\nWhat are pathogens?\tManure tea\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Manure tea, may contain high levels of, pathogens) -> Manure tea (10985ms)\nWhat are pathogens?\tfeces\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (feces, contains, dangerous pathogens) -> feces (10969ms)\nWhat are pathogens?\tSuicide belts\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Suicide belts, may contain, pathogens--) -> Suicide belts (10991ms)\nWhat are pathogens?\tthe foods\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the foods, to contain, pathogens) -> the foods (10991ms)\nWhat are pathogens?\tclay particles\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (clay particles, contain, fewer pathogens) -> clay particles (10998ms)\nWhat are pathogens?\t?may\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (?may, contain, pathogens?) -> ?may (10985ms)\nWhat are pathogens?\tthe packages or envelopes\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the packages or envelopes, contains, lethal pathogens) -> the packages or envelopes (11004ms)\nWhat are pathogens?\tSewage\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Sewage, contains high levels of, pathogens) -> Sewage (10991ms)\nWhat are pathogens?\tinsects\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (insects, contains, pathogens) -> insects (10977ms)\nWhat are pathogens?\tOrganic wastes\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Organic wastes, may contain, pathogens) -> Organic wastes (10985ms)\nWhat are pathogens?\tthe blood\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the blood, containing, the pathogens) -> the blood (10991ms)\nWhat are pathogens?\tsubstances\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (substances, are reasonably expected to contain, pathogens) -> substances (11004ms)\nWhat are pathogens?\tthe sewage\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the sewage, contains, pathogens) -> the sewage (11004ms)\nWhat are pathogens?\tUntreated sewage\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Untreated sewage, often contains, pathogens) -> Untreated sewage (10998ms)\nWhat are pathogens?\tunder-treated sewage\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (under-treated sewage, contains, pathogens) -> under-treated sewage (10985ms)\nWhat are pathogens?\tthe samples\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the samples, contained, the pathogen) -> the samples (11004ms)\nWhat are pathogens?\traw foods\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (raw foods, containing, pathogens) -> raw foods (11010ms)\nWhat are pathogens?\tStanding water\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Standing water, can contain any number of, pathogens) -> Standing water (10977ms)\nWhat are pathogens?\tClass B biosolids\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Class B biosolids, still contain detectible levels of, pathogens) -> Class B biosolids (10977ms)\nWhat are pathogens?\tPathogens Sewage biosolids\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Pathogens Sewage biosolids, contain a variety of, pathogens) -> Pathogens Sewage biosolids (11004ms)\nWhat are pathogens?\theavy rains\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (heavy rains, may contain, pathogens) -> heavy rains (11010ms)\nWhat are pathogens?\tHuman excreta and wastewater\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Human excreta and wastewater, also contain, pathogens) -> Human excreta and wastewater (11010ms)\nWhat are pathogens?\traw animal foods\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (raw animal foods, may contain, pathogens) -> raw animal foods (10991ms)\nWhat are pathogens?\trecycled water\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (recycled water, can potentially contain, pathogens) -> recycled water (10985ms)\nWhat are pathogens?\tthe irrigation\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the irrigation, thus contains, pathogens) -> the irrigation (11010ms)\nWhat are pathogens?\tEven treated water\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Even treated water, can still contain, pathogens) -> Even treated water (10977ms)\nWhat are pathogens?\tbars and restaurants\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (bars and restaurants, contain, some pathogens) -> bars and restaurants (11004ms)\nWhat are pathogens?\tpost-consumer materials\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (post-consumer materials, are more likely to contain, pathogens) -> post-consumer materials (10977ms)\nWhat are pathogens?\tHorse manure\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Horse manure, contains, pathogens) -> Horse manure (11004ms)\nWhat are pathogens?\tcat and dog poop\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (cat and dog poop, contains, pathogens) -> cat and dog poop (10977ms)\nWhat are pathogens?\tthe genus Aegyptianella\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the genus Aegyptianella, contains, blood pathogens) -> the genus Aegyptianella (10998ms)\nWhat are pathogens?\tHowever raw milk\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (However raw milk, may contain, pathogens) -> However raw milk (10985ms)\nWhat are pathogens?\ta specimen\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (a specimen, containing, the pathogen) -> a specimen (11010ms)\nWhat are pathogens?\tImproperly-processed organic fertilizers\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Improperly-processed organic fertilizers, may contain, pathogens) -> Improperly-processed organic fertilizers (10998ms)\nWhat are pathogens?\tUnpasteurized milk\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Unpasteurized milk, may contain, pathogens) -> Unpasteurized milk (10991ms)\nWhat are pathogens?\tammonia-ridden slime\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (ammonia-ridden slime, may contain, pathogens) -> ammonia-ridden slime (10977ms)\nWhat are pathogens?\tthe poop Pet waste\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (the poop Pet waste, contains, pathogen microbes) -> the poop Pet waste (10991ms)\nWhat are pathogens?\tThe scrap meats\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (The scrap meats, are more likely to contain, pathogens) -> The scrap meats (11004ms)\nWhat are pathogens?\treal time\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (real time, contain the least amount of, pathogens) -> real time (10998ms)\nWhat are pathogens?\tHuman excreta\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Human excreta, contain a full spectrum of, pathogens) -> Human excreta (10969ms)\nWhat are pathogens?\tCAFOs\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (CAFOs, contains pollutants such as, pathogens) -> CAFOs (10985ms)\nWhat are pathogens?\tGray water\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Gray water, may contain, pathogens) -> Gray water (10998ms)\nWhat are pathogens?\tSuch foreign proteins\t0.6666666666629999\tWhat are pathogens? -> $x: ($x, contain, pathogen) -> (Such foreign proteins, are contained by, pathogens) -> Such foreign proteins (10977ms)\nWhat are pathogens?\tcattle\t0.5555555555539999\tWhat are pathogens? -> $x: ($x, demonstrate, pathogen) -> (cattle, demonstrate its utility for, other foodborne pathogens) -> cattle (11010ms)\nWhat are pathogens?\temergence\t0.555555555553\tWhat are pathogens? -> $x: ($x, concerned, pathogen) -> (emergence, is a particular concern to, the pathogen) -> emergence (11010ms)\nWhat are pathogens?\tfarmers\t0.555555555553\tWhat are pathogens? -> $x: ($x, concerned, pathogen) -> (farmers, often express concern about, pathogens and insects) -> farmers (11010ms)\nWhat are pathogens?\tPregnancy\t0.555555555553\tWhat are pathogens? -> $x: ($x, implement, pathogen) -> (Pregnancy, implement, the OSHA Bloodborne Pathogen Standards) -> Pregnancy (11010ms)\nWhat are pathogens?\tRoundup Ready wheat varieties\t0.555555555553\tWhat are pathogens? -> $x: ($x, concerned, pathogen) -> (Roundup Ready wheat varieties, were concerned about, pathogens) -> Roundup Ready wheat varieties (11010ms)\nWhat are pathogens?\tThe Microbiologist\t0.555555555553\tWhat are pathogens? -> $x: ($x, implement, pathogen) -> (The Microbiologist, implements, pathogen testing procedures) -> The Microbiologist (11010ms)\nWhat are pathogens?\tpathogens or data\t0.555555555553\tWhat are pathogens? -> $x: ($x, concerned, pathogen) -> (pathogens or data, concerning, pathogens) -> pathogens or data (11010ms)\nWhat are pathogens?\tBrown rot control\t0.555555555553\tWhat are pathogens? -> $x: ($x, concerned, pathogen) -> (Brown rot control, becomes a minimal concern as, this pathogen) -> Brown rot control (11010ms)\nWhat is Head Start?\tPalin\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, Palin) -> Palin (6337ms)\nWhat is Head Start?\ta treadmill\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start your run on, a treadmill) -> a treadmill (2914ms)\nWhat is Head Start?\t1964\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Project Head, Start in, 1964) -> 1964 (2915ms)\nWhat is Head Start?\tNixon\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Head Start, was started by, Nixon) -> Nixon (6069ms)\nWhat is Head Start?\trole once\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Heads, are starting to, role once) -> role once (4005ms)\nWhat is Head Start?\thigher education\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, higher education) -> higher education (6396ms)\nWhat is Head Start?\tWikiLeaks affair\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Heads, start rolling in, WikiLeaks affair) -> WikiLeaks affair (6406ms)\nWhat is Head Start?\tthe future\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the future) -> the future (3689ms)\nWhat is Head Start?\tthe Office\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Head Start, had originally been started by, the Office) -> the Office (6367ms)\nWhat is Head Start?\tplace\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Luther Head, started in, place) -> place (6203ms)\nWhat is Head Start?\tthe 1729 other lemon cocktails\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, the 1729 other lemon cocktails) -> the 1729 other lemon cocktails (4054ms)\nWhat is Head Start?\tthe surroundings\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (heads, started to take an interest in, the surroundings) -> the surroundings (6367ms)\nWhat is Head Start?\tthe sizing procedure\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (your head, is the starting point for, the sizing procedure) -> the sizing procedure (4055ms)\nWhat is Head Start?\t400 Partials\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Heads, are starting at, 400 Partials) -> 400 Partials (6406ms)\nWhat is Head Start?\tCapitol Hill\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (heads, start rolling on, Capitol Hill) -> Capitol Hill (6367ms)\nWhat is Head Start?\tthe little routine\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, get started on, the little routine) -> the little routine (6386ms)\nWhat is Head Start?\ttraining\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, training) -> training (6414ms)\nWhat is Head Start?\tthe day\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, started on, the day) -> the day (6377ms)\nWhat is Head Start?\tthe adjustment\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the adjustment) -> the adjustment (6397ms)\nWhat is Head Start?\tthe picture\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to catch up with, the picture) -> the picture (6397ms)\nWhat is Head Start?\tthe weeds\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the weeds) -> the weeds (6405ms)\nWhat is Head Start?\tthe?North American hemp industry\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (head, start in, the?North American hemp industry) -> the?North American hemp industry (6396ms)\nWhat is Head Start?\tstarting your day of fishing on the river\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (the head, start in, starting your day of fishing on the river) -> starting your day of fishing on the river (3097ms)\nWhat is Head Start?\tthe 90 day AthLEAN-X Training Program\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, get started on, the 90 day AthLEAN-X Training Program) -> the 90 day AthLEAN-X Training Program (6377ms)\nWhat is Head Start?\tform\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (a head, was starting to, form) -> form (3690ms)\nWhat is Head Start?\ta little clearer\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to get, a little clearer) -> a little clearer (6367ms)\nWhat is Head Start?\tthe long journey\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, started on, the long journey) -> the long journey (6414ms)\nWhat is Head Start?\ta headache\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to develop, a headache) -> a headache (6337ms)\nWhat is Head Start?\tPA test reactor\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, PA test reactor) -> PA test reactor (6357ms)\nWhat is Head Start?\tfishing\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, fishing) -> fishing (6203ms)\nWhat is Head Start?\tround four\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (the head-to-head competition, starts in, round four) -> round four (2914ms)\nWhat is Head Start?\tthe guy\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the guy) -> the guy (6396ms)\nWhat is Head Start?\t1993\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head, started in, 1993) -> 1993 (4005ms)\nWhat is Head Start?\tthe competition\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the competition) -> the competition (6386ms)\nWhat is Head Start?\tshopping\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, shopping) -> shopping (6347ms)\nWhat is Head Start?\tPR career\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, PR career) -> PR career (6397ms)\nWhat is Head Start?\tstudying\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, studying) -> studying (6367ms)\nWhat is Head Start?\tabout 4:30\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (head level, was made starting at, about 4:30) -> about 4:30 (6367ms)\nWhat is Head Start?\ttraffic\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, starts on, traffic) -> traffic (4608ms)\nWhat is Head Start?\ttalking\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, talking) -> talking (6203ms)\nWhat is Head Start?\t1992\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Red Head, started in, 1992) -> 1992 (4005ms)\nWhat is Head Start?\tthe other candidates\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (' head, start on, the other candidates) -> the other candidates (4176ms)\nWhat is Head Start?\tStaten Island\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start sites on, Staten Island) -> Staten Island (4355ms)\nWhat is Head Start?\tthe coding world\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (A head, start in, the coding world) -> the coding world (4607ms)\nWhat is Head Start?\ttwo weeks\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (My head, is started spinning, two weeks) -> two weeks (6337ms)\nWhat is Head Start?\tworld?s best 50 restaurants\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (head, start in, world?s best 50 restaurants) -> world?s best 50 restaurants (4176ms)\nWhat is Head Start?\tthe Google SERPs\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (no head, start in, the Google SERPs) -> the Google SERPs (6347ms)\nWhat is Head Start?\tthe entire process\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (the head coach, is starting, the entire process) -> the entire process (6405ms)\nWhat is Head Start?\tbigger\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to get, bigger) -> bigger (6414ms)\nWhat is Head Start?\tthe same time\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Head Start, were started around, the same time) -> the same time (6386ms)\nWhat is Head Start?\tChristmas Shopping\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, Christmas Shopping) -> Christmas Shopping (6406ms)\nWhat is Head Start?\thairs\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is slowly starting to generate, hairs) -> hairs (6358ms)\nWhat is Head Start?\teconomic development\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, economic development) -> economic development (6377ms)\nWhat is Head Start?\tthe kids\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the kids) -> the kids (4176ms)\nWhat is Head Start?\ta growing generation gap\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, are starting to show, a growing generation gap) -> a growing generation gap (6367ms)\nWhat is Head Start?\tforeign languages\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (This head, start in, foreign languages) -> foreign languages (2915ms)\nWhat is Head Start?\tthe rat race\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head, start in, the rat race) -> the rat race (6377ms)\nWhat is Head Start?\ta subject\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, a subject) -> a subject (4355ms)\nWhat is Head Start?\tthe theatrical profession\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the theatrical profession) -> the theatrical profession (6397ms)\nWhat is Head Start?\tBantry\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head walk, starts in, Bantry) -> Bantry (6348ms)\nWhat is Head Start?\t1975\t0.555555555555\tWhat is Head Start? -> $x: (head, be start in, $x) -> (The High Hopes Head Injury Program, was started in, 1975) -> 1975 (6414ms)\nWhat is Head Start?\tScience 2010\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2010) -> Science 2010 (4176ms)\nWhat is Head Start?\tstriking ad and marketing deals\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (the head, start in, striking ad and marketing deals) -> striking ad and marketing deals (6377ms)\nWhat is Head Start?\tthe fall semester\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the fall semester) -> the fall semester (6386ms)\nWhat is Head Start?\tYeah\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, was starting up again*, Yeah) -> Yeah (6405ms)\nWhat is Head Start?\ta little\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to get, a little) -> a little (6406ms)\nWhat is Head Start?\tprevail\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Cooler heads, are starting to, prevail) -> prevail (6348ms)\nWhat is Head Start?\troad races\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (your head, start in, road races) -> road races (6405ms)\nWhat is Head Start?\tKibum\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (his head, is starting to sound like, Kibum) -> Kibum (6396ms)\nWhat is Head Start?\tlarger\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (her head, was starting to get, larger) -> larger (6203ms)\nWhat is Head Start?\tthin or dry\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (their head, is starting to, thin or dry) -> thin or dry (6358ms)\nWhat is Head Start?\t1455\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> ('s Head, starts in, 1455) -> 1455 (6203ms)\nWhat is Head Start?\ta creative mode\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is starting back into, a creative mode) -> a creative mode (6367ms)\nWhat is Head Start?\tIBM\t0.555555555555\tWhat is Head Start? -> $x: (head, be start in, $x) -> (thin-film head structures, was started in, IBM) -> IBM (6347ms)\nWhat is Head Start?\tSpring\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Spring) -> Spring (4355ms)\nWhat is Head Start?\trefinancing your loan\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, refinancing your loan) -> refinancing your loan (3690ms)\nWhat is Head Start?\tthe drinking\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the drinking) -> the drinking (6203ms)\nWhat is Head Start?\tan amazing transformation\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (his head, was the start of, an amazing transformation) -> an amazing transformation (6396ms)\nWhat is Head Start?\tthe fall\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (their head, start in, the fall) -> the fall (6203ms)\nWhat is Head Start?\tpoints\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (the head, start in, points) -> points (4054ms)\nWhat is Head Start?\tPC-based agency automation\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Our head, start in, PC-based agency automation) -> PC-based agency automation (6337ms)\nWhat is Head Start?\ta deficit\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (his head, is starting at, a deficit) -> a deficit (6377ms)\nWhat is Head Start?\tsense\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (your head, is going to start making, sense) -> sense (6414ms)\nWhat is Head Start?\ta fire one dark and wintry night\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (head, was trying to start, a fire one dark and wintry night) -> a fire one dark and wintry night (6203ms)\nWhat is Head Start?\tlife\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (your head, start in, life) -> life (6405ms)\nWhat is Head Start?\tthe 2011\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Project Head, Start is now accepting applications for, the 2011) -> the 2011 (6387ms)\nWhat is Head Start?\tone piece\t0.555555555555\tWhat is Head Start? -> $x: (head, be start in, $x) -> (my head, is starting to feel back in, one piece) -> one piece (6377ms)\nWhat is Head Start?\ta little cloudy\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Her head, was already starting to get, a little cloudy) -> a little cloudy (4608ms)\nWhat is Head Start?\tJames Ray\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Head On, was started by, James Ray) -> James Ray (6069ms)\nWhat is Head Start?\tnext year 's recruiting\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, next year 's recruiting) -> next year 's recruiting (6406ms)\nWhat is Head Start?\tthe same issue\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Sankaku Head, is starting in, the same issue) -> the same issue (6387ms)\nWhat is Head Start?\tthe early 1990s\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (their head, start in, the early 1990s) -> the early 1990s (6367ms)\nWhat is Head Start?\teducation\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, education) -> education (6358ms)\nWhat is Head Start?\talways\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (the head, was a good start, always) -> always (2915ms)\nWhat is Head Start?\trunning away\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, running away) -> running away (4355ms)\nWhat is Head Start?\tschool\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, school) -> school (6367ms)\nWhat is Head Start?\tpainful ?\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to feel, painful ?) -> painful ? (6387ms)\nWhat is Head Start?\tlighter than before\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to feel, lighter than before) -> lighter than before (3690ms)\nWhat is Head Start?\tthe Manipur police department\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Heads, started rolling in, the Manipur police department) -> the Manipur police department (6405ms)\nWhat is Head Start?\tthe race\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the race) -> the race (6348ms)\nWhat is Head Start?\tMuslim feminism\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, Muslim feminism) -> Muslim feminism (6357ms)\nWhat is Head Start?\tXD\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to hurt, XD) -> XD (6069ms)\nWhat is Head Start?\tthe speakers\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to come out of, the speakers) -> the speakers (3491ms)\nWhat is Head Start?\tAmerica\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (' head, start on, America) -> America (6377ms)\nWhat is Head Start?\ta high stepping career\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (head showgirl, be the start of, a high stepping career) -> a high stepping career (6414ms)\nWhat is Head Start?\tfamily strengths\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start build on, family strengths) -> family strengths (6367ms)\nWhat is Head Start?\twhat to do\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, what to do) -> what to do (6377ms)\nWhat is Head Start?\tthe next school year\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the next school year) -> the next school year (6406ms)\nWhat is Head Start?\tcreating the success\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, creating the success) -> creating the success (6348ms)\nWhat is Head Start?\tDib\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (his head, were actually starting to give, Dib) -> Dib (6069ms)\nWhat is Head Start?\tmath\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, start on, math) -> math (6367ms)\nWhat is Head Start?\tthe field\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (our head, start in, the field) -> the field (6337ms)\nWhat is Head Start?\tTax Season\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Tax Season) -> Tax Season (4054ms)\nWhat is Head Start?\tthe first one tonight\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (three heads, am about to start, the first one tonight) -> the first one tonight (4177ms)\nWhat is Head Start?\t1998\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head Porter, started in, 1998) -> 1998 (6337ms)\nWhat is Head Start?\tterms of record releases and chart success\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (the head, start in, terms of record releases and chart success) -> terms of record releases and chart success (6414ms)\nWhat is Head Start?\tcrown\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> ('s head, was starting to, crown) -> crown (6348ms)\nWhat is Head Start?\tas much\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (her head, is starting to grow just, as much) -> as much (6069ms)\nWhat is Head Start?\ta weekend day\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is a wonderful start to, a weekend day) -> a weekend day (6387ms)\nWhat is Head Start?\t2011\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (House Head House Head, started out late in, 2011) -> 2011 (6357ms)\nWhat is Head Start?\tRound Four\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (head competition, starts in, Round Four) -> Round Four (6347ms)\nWhat is Head Start?\tthe rebound\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the rebound) -> the rebound (6386ms)\nWhat is Head Start?\tthe questions\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start voting on, the questions) -> the questions (4355ms)\nWhat is Head Start?\tFinance\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head, Start In, Finance) -> Finance (3689ms)\nWhat is Head Start?\tScience 2011\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2011) -> Science 2011 (6405ms)\nWhat is Head Start?\tChicago\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (eight Head, Start sites in, Chicago) -> Chicago (6203ms)\nWhat is Head Start?\tChristmas\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, Christmas) -> Christmas (6377ms)\nWhat is Head Start?\ta little annoying\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (your head, is starting to get, a little annoying) -> a little annoying (4607ms)\nWhat is Head Start?\ta large , additional income\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (heads, was really starting to earn, a large , additional income) -> a large , additional income (3096ms)\nWhat is Head Start?\tthe assignment\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the assignment) -> the assignment (6377ms)\nWhat is Head Start?\tlaw school\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, law school) -> law school (6414ms)\nWhat is Head Start?\tthe media\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (head scarves, started in, the media) -> the media (6357ms)\nWhat is Head Start?\t2 fade\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (head, Are starting, 2 fade) -> 2 fade (6357ms)\nWhat is Head Start?\tthe market\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (this head, start in, the market) -> the market (6358ms)\nWhat is Head Start?\tmeeting people\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, meeting people) -> meeting people (6203ms)\nWhat is Head Start?\tthe winter season\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, get a jump-start on, the winter season) -> the winter season (6337ms)\nWhat is Head Start?\tfootball\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, football) -> football (6387ms)\nWhat is Head Start?\tdiscoveries\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (( head, start on, discoveries) -> discoveries (3491ms)\nWhat is Head Start?\ta painful numbness\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to turn into, a painful numbness) -> a painful numbness (6337ms)\nWhat is Head Start?\t1974\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Heads, Up started in, 1974) -> 1974 (4005ms)\nWhat is Head Start?\tLiteracy\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Literacy) -> Literacy (6405ms)\nWhat is Head Start?\tNext Year\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Next Year) -> Next Year (6396ms)\nWhat is Head Start?\tthe size\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to catch up with, the size) -> the size (6348ms)\nWhat is Head Start?\tring\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, ring) -> ring (4356ms)\nWhat is Head Start?\tareas\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head, Start programs in, areas) -> areas (6414ms)\nWhat is Head Start?\tEnoch\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to hurt, Enoch) -> Enoch (2914ms)\nWhat is Head Start?\tthe Universal mail room\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (the head, started in, the Universal mail room) -> the Universal mail room (4355ms)\nWhat is Head Start?\tthe college experience\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the college experience) -> the college experience (6414ms)\nWhat is Head Start?\tcharge\t0.555555555555\tWhat is Head Start? -> $x: (head, be start in, $x) -> (Head coach Chris Pruitt, is starting her third year in, charge) -> charge (6069ms)\nWhat is Head Start?\tNFL\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, get started on, NFL) -> NFL (6337ms)\nWhat is Head Start?\tScience 2009\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2009) -> Science 2009 (6367ms)\nWhat is Head Start?\tclear and\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, clear and) -> clear and (4177ms)\nWhat is Head Start?\tthe following year\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the following year) -> the following year (4055ms)\nWhat is Head Start?\tKelly\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (her head, were starting to take its toll on, Kelly) -> Kelly (6337ms)\nWhat is Head Start?\tthe school year\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Head, is excited to start, the school year) -> the school year (4608ms)\nWhat is Head Start?\treading\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, reading) -> reading (6386ms)\nWhat is Head Start?\tthe garden\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the garden) -> the garden (6203ms)\nWhat is Head Start?\tmaterial\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, material) -> material (6386ms)\nWhat is Head Start?\tthe ATS race\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (the head, start in, the ATS race) -> the ATS race (2915ms)\nWhat is Head Start?\toffense\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, start on, offense) -> offense (3491ms)\nWhat is Head Start?\tcoursework\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, coursework) -> coursework (6397ms)\nWhat is Head Start?\ta whole new experience\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (your head, would have been the start of, a whole new experience) -> a whole new experience (4607ms)\nWhat is Head Start?\ta bruised melon\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Her head, was starting to look like, a bruised melon) -> a bruised melon (6337ms)\nWhat is Head Start?\ta path\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, a path) -> a path (3492ms)\nWhat is Head Start?\tthe 2008 Ramadan Olympics\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (your head, start in, the 2008 Ramadan Olympics) -> the 2008 Ramadan Olympics (6396ms)\nWhat is Head Start?\tthe public\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the public) -> the public (6414ms)\nWhat is Head Start?\tthe 60?s\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (head, started the company in, the 60?s) -> the 60?s (6358ms)\nWhat is Head Start?\tan organized clap\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Your Head ?, was started with, an organized clap) -> an organized clap (6414ms)\nWhat is Head Start?\tBlago\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (Democrat heads, are starting to play, Blago) -> Blago (6203ms)\nWhat is Head Start?\tSeptember\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (the new head, starts in, September) -> September (3491ms)\nWhat is Head Start?\t1869\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (South Head, started in, 1869) -> 1869 (3097ms)\nWhat is Head Start?\ta bit\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to spin, a bit) -> a bit (6377ms)\nWhat is Head Start?\tpreparing your paperwork\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, preparing your paperwork) -> preparing your paperwork (6397ms)\nWhat is Head Start?\tMalaysia\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (their head, start in, Malaysia) -> Malaysia (6358ms)\nWhat is Head Start?\tthe entire sizing procedure\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (the head, is a starting point for, the entire sizing procedure) -> the entire sizing procedure (6414ms)\nWhat is Head Start?\tuniversity\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, university) -> university (3689ms)\nWhat is Head Start?\tthe Day\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, Starts on, the Day) -> the Day (6377ms)\nWhat is Head Start?\tspring\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, spring) -> spring (6406ms)\nWhat is Head Start?\tshape\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, are starting to take, shape) -> shape (6347ms)\nWhat is Head Start?\tcollege\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, college) -> college (6377ms)\nWhat is Head Start?\tlogistics\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, start on, logistics) -> logistics (3690ms)\nWhat is Head Start?\t2003\t0.555555555555\tWhat is Head Start? -> $x: (head, be start in, $x) -> (The Western Heads East program, was started in, 2003) -> 2003 (6069ms)\nWhat is Head Start?\tJanuary\t0.555555555555\tWhat is Head Start? -> $x: (head, be start in, $x) -> (private HeadLines newsletter, was started in, January) -> January (3690ms)\nWhat is Head Start?\tthe fog\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (My head, is just starting to come out of, the fog) -> the fog (6069ms)\nWhat is Head Start?\ta bit grim\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (the head-to-head polls, are starting to look, a bit grim) -> a bit grim (6348ms)\nWhat is Head Start?\ta hedge fund\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (head, is starting, a hedge fund) -> a hedge fund (6348ms)\nWhat is Head Start?\tclear\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, clear) -> clear (6387ms)\nWhat is Head Start?\t1905\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (head coach, started in, 1905) -> 1905 (6414ms)\nWhat is Head Start?\tthe Linux interface\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (head, start on, the Linux interface) -> the Linux interface (6348ms)\nWhat is Head Start?\t25 years\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (The Hilton Head Symphony Orchestra, was started, 25 years) -> 25 years (6377ms)\nWhat is Head Start?\tWyoming\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (head, start here in, Wyoming) -> Wyoming (6414ms)\nWhat is Head Start?\tthe job market\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the job market) -> the job market (6337ms)\nWhat is Head Start?\tLife\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head, Start In, Life) -> Life (6337ms)\nWhat is Head Start?\tan industry of their choice\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a career head, start in, an industry of their choice) -> an industry of their choice (3491ms)\nWhat is Head Start?\ta toll\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, is just starting to take, a toll) -> a toll (6348ms)\nWhat is Head Start?\tSalt Lake City\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Project Head, Start in, Salt Lake City) -> Salt Lake City (6367ms)\nWhat is Head Start?\tgray as well\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (my head, was starting to get frosted with, gray as well) -> gray as well (6357ms)\nWhat is Head Start?\ttraining your dog\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, training your dog) -> training your dog (6358ms)\nWhat is Head Start?\tthe process\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the process) -> the process (4355ms)\nWhat is Head Start?\tpopularity\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (his head, start in, popularity) -> popularity (3096ms)\nWhat is Head Start?\tlifestyle\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start out in, lifestyle) -> lifestyle (4608ms)\nWhat is Head Start?\tthe Garden\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (this head, started in, the Garden) -> the Garden (6396ms)\nWhat is Head Start?\ta different ?ism\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (heads and pundits, are starting to recognize, a different ?ism) -> a different ?ism (6396ms)\nWhat is Head Start?\tbuzz\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (his head, was starting to, buzz) -> buzz (4005ms)\nWhat is Head Start?\tthe branches\t0.555555555555\tWhat is Head Start? -> $x: (head, be start, $x) -> (The head, is usually started with, the branches) -> the branches (6387ms)\nWhat is Head Start?\tinternational competition\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, international competition) -> international competition (3096ms)\nWhat is Head Start?\t1965\t0.555555555555\tWhat is Head Start? -> $x: (head, be start in, $x) -> (Kedren Head Start, was started in, 1965) -> 1965 (6357ms)\nWhat is Head Start?\tthe debate\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the debate) -> the debate (6414ms)\nWhat is Head Start?\tthe 1960s\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head Start, started in, the 1960s) -> the 1960s (6377ms)\nWhat is Head Start?\tthe competitive job market\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the competitive job market) -> the competitive job market (4176ms)\nWhat is Head Start?\tbanking\t0.555555555555\tWhat is Head Start? -> $x: (head, start in, $x) -> (Head, started her career in, banking) -> banking (3491ms)\nWhat is Head Start?\tscience\t0.555555555555\tWhat is Head Start? -> $x: (head, start on, $x) -> (Head, start on, science) -> science (4055ms)\nWhat is Head Start?\tChoose\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Choose, start turning, heads) -> Choose (6449ms)\nWhat is Head Start?\tLiz\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Liz, started as, head) -> Liz (6432ms)\nWhat is Head Start?\tthe giant cannibalistic monster\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the giant cannibalistic monster, started ripping, heads) -> the giant cannibalistic monster (6449ms)\nWhat is Head Start?\tThe list\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (The list, starts from, head) -> The list (6423ms)\nWhat is Head Start?\tfunny t-shirts\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (funny t-shirts, start turning, heads) -> funny t-shirts (6459ms)\nWhat is Head Start?\tGriffin\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Griffin, started calling, heads) -> Griffin (6459ms)\nWhat is Head Start?\tthe coaches\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the coaches, start banging, heads) -> the coaches (6449ms)\nWhat is Head Start?\tEarly\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Early, Start, Head) -> Early (6441ms)\nWhat is Head Start?\tthe excitement\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the excitement, starts, head) -> the excitement (6459ms)\nWhat is Head Start?\tthe cops\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the cops, started bashing, heads) -> the cops (6459ms)\nWhat is Head Start?\ta couple days\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (a couple days, start, head) -> a couple days (6423ms)\nWhat is Head Start?\tthe wind\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the wind, start chopping, heads) -> the wind (6423ms)\nWhat is Head Start?\tbreeze\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (breeze, start, butting heads) -> breeze (6432ms)\nWhat is Head Start?\tParr\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Parr, started turning, heads) -> Parr (6459ms)\nWhat is Head Start?\tthe Nokia Lumia 800\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the Nokia Lumia 800, started turning, heads) -> the Nokia Lumia 800 (6441ms)\nWhat is Head Start?\tVan Wieringen\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Van Wieringen, started, heads) -> Van Wieringen (6441ms)\nWhat is Head Start?\tthe most obvious ones\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the most obvious ones, start, a heading) -> the most obvious ones (6459ms)\nWhat is Head Start?\tBlack ice\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Black ice, started, head) -> Black ice (6432ms)\nWhat is Head Start?\tthe coin\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the coin, starts with, Heads) -> the coin (6441ms)\nWhat is Head Start?\tmore damage Mother Bear and Napalm\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (more damage Mother Bear and Napalm, start killing, heads) -> more damage Mother Bear and Napalm (6432ms)\nWhat is Head Start?\tThe Black Seeds\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (The Black Seeds, started turning, heads) -> The Black Seeds (6423ms)\nWhat is Head Start?\tthe urge\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the urge, start knocking, heads) -> the urge (6459ms)\nWhat is Head Start?\tLarry Benders\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Larry Benders, started as, head) -> Larry Benders (6441ms)\nWhat is Head Start?\tthe list\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the list, starts with, heads) -> the list (6449ms)\nWhat is Head Start?\tMarcus Strickland\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Marcus Strickland, has started to turn, heads) -> Marcus Strickland (6432ms)\nWhat is Head Start?\tmore comfortable\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (more comfortable, start turning, heads) -> more comfortable (6441ms)\nWhat is Head Start?\tSeiar\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Seiar, started, heads) -> Seiar (6423ms)\nWhat is Head Start?\tLine 3\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Line 3, starts, the head) -> Line 3 (6459ms)\nWhat is Head Start?\teach of your body parts\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (each of your body parts, starting from, head) -> each of your body parts (6432ms)\nWhat is Head Start?\tThor\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Thor, started cracking, heads) -> Thor (6441ms)\nWhat is Head Start?\tthe chunker regexp\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the chunker regexp, start from, head) -> the chunker regexp (6432ms)\nWhat is Head Start?\tshe and Kyle\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (she and Kyle, start, butting heads) -> she and Kyle (6449ms)\nWhat is Head Start?\tthe ring\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the ring, started turning, heads) -> the ring (6432ms)\nWhat is Head Start?\tIsslyer\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Isslyer, start cutting off, heads) -> Isslyer (6441ms)\nWhat is Head Start?\tthe band\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the band, started turning, heads) -> the band (6449ms)\nWhat is Head Start?\t14.2 mile North Rim trail\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (14.2 mile North Rim trail, starts at, head) -> 14.2 mile North Rim trail (6449ms)\nWhat is Head Start?\tPhil Fish\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Phil Fish, started turning, heads) -> Phil Fish (6459ms)\nWhat is Head Start?\tresis?tance\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (resis?tance, start, head?ing) -> resis?tance (6459ms)\nWhat is Head Start?\tthe army\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the army, started bashing, heads) -> the army (6459ms)\nWhat is Head Start?\tthe two\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the two, started playing, heads) -> the two (6432ms)\nWhat is Head Start?\tthe Danish police\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the Danish police, started beating, heads) -> the Danish police (6449ms)\nWhat is Head Start?\tThe competition\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (The competition, starts, head-to-head) -> The competition (6423ms)\nWhat is Head Start?\tretro Marquette Warriors tees\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (retro Marquette Warriors tees, start turning, heads) -> retro Marquette Warriors tees (6432ms)\nWhat is Head Start?\tthe police\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the police, started banging, heads) -> the police (6449ms)\nWhat is Head Start?\tCallihan\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Callihan, then starts, head) -> Callihan (6441ms)\nWhat is Head Start?\tBertrand Faivre Bertrand\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Bertrand Faivre Bertrand, started as, Head) -> Bertrand Faivre Bertrand (6423ms)\nWhat is Head Start?\tDario\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Dario, started playing, heads) -> Dario (6459ms)\nWhat is Head Start?\tuse 1 to 2 feet\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (use 1 to 2 feet, start at, head) -> use 1 to 2 feet (6423ms)\nWhat is Head Start?\tSuch a pretty boy\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Such a pretty boy, starts turning, heads) -> Such a pretty boy (6459ms)\nWhat is Head Start?\tthe game\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the game, started, the head) -> the game (6449ms)\nWhat is Head Start?\tretro Brewers tees\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (retro Brewers tees, start turning, heads) -> retro Brewers tees (6432ms)\nWhat is Head Start?\tJak\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Jak, start ripping, heads) -> Jak (6441ms)\nWhat is Head Start?\tMold your body\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Mold your body, start turning, heads) -> Mold your body (6449ms)\nWhat is Head Start?\tB?ttger\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (B?ttger, started as, Head) -> B?ttger (6441ms)\nWhat is Head Start?\tthe plants\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the plants, start to, head) -> the plants (6441ms)\nWhat is Head Start?\ta suprise visit\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (a suprise visit, starts knocking, heads) -> a suprise visit (6450ms)\nWhat is Head Start?\tLets\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Lets, get started, Head) -> Lets (6423ms)\nWhat is Head Start?\tcoworking\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (coworking, starts turning, heads) -> coworking (6449ms)\nWhat is Head Start?\tO?Brien\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (O?Brien, starts knocking, heads) -> O?Brien (6432ms)\nWhat is Head Start?\tan image\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (an image, start swapping, heads) -> an image (6449ms)\nWhat is Head Start?\tScalp Energizer\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Scalp Energizer, start, a head) -> Scalp Energizer (6459ms)\nWhat is Head Start?\tDedede\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Dedede, starts, head) -> Dedede (6441ms)\nWhat is Head Start?\tThe tape\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (The tape, starts with, Head) -> The tape (6423ms)\nWhat is Head Start?\tthe only case people\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the only case people, start, balding head) -> the only case people (6432ms)\nWhat is Head Start?\tlinear search\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (linear search, starting from, head) -> linear search (6449ms)\nWhat is Head Start?\tJouhkimainen\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (Jouhkimainen, started, heads) -> Jouhkimainen (6449ms)\nWhat is Head Start?\tthe state troopers\t0.11111111111299998\tWhat is Head Start? -> $x: ($x, start, head) -> (the state troopers, start bashing, heads) -> the state troopers (6423ms)\nWhat is Head Start?\t2009 to 52.7 %\t0.111111111111\tWhat is Head Start? -> $x: ($x, cause, head start) -> (2009 to 52.7 %, caused concerns with, the Head start Program) -> 2009 to 52.7 % (6467ms)\nWhat is Head Start?\tdisplaced kids\t0.11111111111\tWhat is Head Start? -> $x: ($x, re, head start) -> (displaced kids, re-enroll in, Head Start programs) -> displaced kids (6467ms)\nWhat is Head Start?\tthe Canadian system\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nhs) -> (the Canadian system, is heading the way of, the NHS.) -> the Canadian system (6566ms)\nWhat is Head Start?\tSue Sylvester\t-0.0\tWhat is Head Start? -> $x: ($x, be head, cheerleading) -> (Sue Sylvester, [is] head coach of, the cheerleading squad) -> Sue Sylvester (6577ms)\nWhat is Head Start?\tThe Emperor\t-0.0\tWhat is Head Start? -> $x: ($x, be head, shinto) -> (The Emperor, was head of, the Shinto faith) -> The Emperor (6518ms)\nWhat is Head Start?\tApple\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Apple, is headed in, his first conference call) -> Apple (6556ms)\nWhat is Head Start?\tLCDS\t-0.0\tWhat is Head Start? -> $x: ($x, be head, mime) -> (LCDS, is headed by, master mime performer Samuel Avital) -> LCDS (6512ms)\nWhat is Head Start?\tA seminarian\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (A seminarian, is heading off to, his first ever interview) -> A seminarian (6566ms)\nWhat is Head Start?\tThe Canadian on Tour\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (The Canadian on Tour, is heading into, the terminal) -> The Canadian on Tour (6547ms)\nWhat is Head Start?\tThe German expedition to Punta Arenas\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (The German expedition to Punta Arenas, was headed, first) -> The German expedition to Punta Arenas (6597ms)\nWhat is Head Start?\tmore Team USA\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (more Team USA, is headed to, Rome) -> more Team USA (6484ms)\nWhat is Head Start?\tdifferent aspects\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (Muslims, started to focus on, different aspects) -> different aspects (6499ms)\nWhat is Head Start?\tWisconsin\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Wisconsin, are heading to, Rome) -> Wisconsin (6556ms)\nWhat is Head Start?\tMoria Kelly\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Moria Kelly, is the Head of, the Children First Foundation) -> Moria Kelly (6467ms)\nWhat is Head Start?\tNavid Majd\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Navid Majd, [is] head of, the federation) -> Navid Majd (6590ms)\nWhat is Head Start?\tDP\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (DP, was headed down, the first path) -> DP (6573ms)\nWhat is Head Start?\tParents\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Parents, involved in, Head Start) -> Parents (6566ms)\nWhat is Head Start?\tTom and crew\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Tom and crew, are heading for, rock festivals) -> Tom and crew (6601ms)\nWhat is Head Start?\tMiami\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Miami, was headed to, its first port) -> Miami (6524ms)\nWhat is Head Start?\tStacey and Brie\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Stacey and Brie, are heading to, Rome today) -> Stacey and Brie (6580ms)\nWhat is Head Start?\tfuture commissars\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (future commissars, are heading to, their first meeting) -> future commissars (6476ms)\nWhat is Head Start?\tthe USA\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (the USA, is headed the way of, Rome) -> the USA (6594ms)\nWhat is Head Start?\tThe bus\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (The bus, was heading for, Dunoon Ferry Terminal) -> The bus (6468ms)\nWhat is Head Start?\tthe first beast\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (the first beast, is the imperial head at, Rome) -> the first beast (6557ms)\nWhat is Head Start?\t400\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (400, enrolled in, Head Start) -> 400 (6491ms)\nWhat is Head Start?\tEmily\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Emily, was head of, her gang) -> Emily (6535ms)\nWhat is Head Start?\tCorzine\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Corzine, was head of, the Goldman Sachs gang) -> Corzine (6506ms)\nWhat is Head Start?\tCash\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Cash, is heading into, her first year) -> Cash (6561ms)\nWhat is Head Start?\t?TOP\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rap) -> (?TOP, is the head of, rap) -> ?TOP (6540ms)\nWhat is Head Start?\toperators\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (operators, are scratching their heads about, Cloud First) -> operators (6557ms)\nWhat is Head Start?\tTeam URC\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Team URC, is heading to, the Strawberry Festival) -> Team URC (6556ms)\nWhat is Head Start?\tKristen Stewart\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Kristen Stewart, are headed to, the Cannes Film Festival) -> Kristen Stewart (6597ms)\nWhat is Head Start?\tDidier Grumbach\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Didier Grumbach, [is] head of, the federation) -> Didier Grumbach (6506ms)\nWhat is Head Start?\tevery dollar\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (every dollar, invested in, Head Start) -> every dollar (6573ms)\nWhat is Head Start?\tthe first Beast\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (the first Beast, was the political head of, a federation) -> the first Beast (6518ms)\nWhat is Head Start?\tThe Assassins Creed?s II hero\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (The Assassins Creed?s II hero, will be heading to, Rome) -> The Assassins Creed?s II hero (6499ms)\nWhat is Head Start?\tOsaka\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Osaka, am heading off to, my first round) -> Osaka (6484ms)\nWhat is Head Start?\tGerard\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Gerard, enrolled in, Head Start) -> Gerard (6506ms)\nWhat is Head Start?\tCarter\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Carter, was the former head of, the 5,000-strong Slauson gang) -> Carter (6566ms)\nWhat is Head Start?\tBrad Keselowski\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (Brad Keselowski, was headed for, a NASCAR Nationwide Series) -> Brad Keselowski (6467ms)\nWhat is Head Start?\tstock cars\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (stock cars, will be heading up to, the NASCAR Nationwide Series) -> stock cars (6524ms)\nWhat is Head Start?\tThe carrier\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (The carrier, was headed for, the Costa Azul energy terminal) -> The carrier (6584ms)\nWhat is Head Start?\tAngleton\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Angleton, was head of, the Rome station) -> Angleton (6476ms)\nWhat is Head Start?\tSuggestion\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (Suggestion, is to head straight to, the ferry terminal) -> Suggestion (6535ms)\nWhat is Head Start?\tGrant\t-0.0\tWhat is Head Start? -> $x: ($x, be head, motown) -> (Grant, are headed to, Motown) -> Grant (6492ms)\nWhat is Head Start?\tReuters dollar\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Reuters dollar, was headed for, its first yearly gain) -> Reuters dollar (6535ms)\nWhat is Head Start?\tJuniors\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Juniors, are heading to, their first Prom) -> Juniors (6552ms)\nWhat is Head Start?\tthe plan\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the plan, was to heading into, DPRK first week) -> the plan (6598ms)\nWhat is Head Start?\tthe nearly one million children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (the nearly one million children, enrolled in, Head Start) -> the nearly one million children (6600ms)\nWhat is Head Start?\tBlake Griffin\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Blake Griffin, is the head of, the Lob City gang) -> Blake Griffin (6535ms)\nWhat is Head Start?\ta quiet , polite four-year-old girl\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (a quiet , polite four-year-old girl, enrolled in, Head Start) -> a quiet , polite four-year-old girl (6580ms)\nWhat is Head Start?\tA dollar\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (A dollar, invested in, Head Start) -> A dollar (6592ms)\nWhat is Head Start?\tThe chipped cross\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (The chipped cross, is headed clear by, Dan Murray) -> The chipped cross (6570ms)\nWhat is Head Start?\tJones\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Jones, was the head of, a separate gang) -> Jones (6492ms)\nWhat is Head Start?\tEngland\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (England, is head of, the biggest drug gang) -> England (6592ms)\nWhat is Head Start?\ta team\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (a team, is headed by, festival director Paula Chaurand) -> a team (6561ms)\nWhat is Head Start?\tSears\t-0.0\tWhat is Head Start? -> $x: ($x, be head, pornography) -> (Sears, is now heading, some other pornography commission) -> Sears (6583ms)\nWhat is Head Start?\tRuss Archer\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (Russ Archer, was head of, the Murray Hill computer center) -> Russ Archer (6552ms)\nWhat is Head Start?\tboys and girls\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (boys and girls, enrolled in, Head Start) -> boys and girls (6573ms)\nWhat is Head Start?\tthe child\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (the child, is in, Head Start) -> the child (6583ms)\nWhat is Head Start?\tsix firefighters\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (six firefighters, were headed to, the Tribeca Film Festival) -> six firefighters (6566ms)\nWhat is Head Start?\tViolet\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Violet, is heading for, the Festival Bumper) -> Violet (6577ms)\nWhat is Head Start?\tThe curriculum model\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (The curriculum model, used in, Head Start) -> The curriculum model (6546ms)\nWhat is Head Start?\t2005\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (2005, is heading into, his first spring training) -> 2005 (6583ms)\nWhat is Head Start?\tThe children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (The children, had been in, Head Start) -> The children (6570ms)\nWhat is Head Start?\tNew Arrivals New Arrivals\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (New Arrivals New Arrivals, are headed by, the first) -> New Arrivals New Arrivals (6598ms)\nWhat is Head Start?\tSerena\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Serena, is the head of, an all-female gang) -> Serena (6577ms)\nWhat is Head Start?\tparental sick days and days children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (parental sick days and days children, miss in, Head Start) -> parental sick days and days children (6552ms)\nWhat is Head Start?\tthe last Adam\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the last Adam, [is] the head of, the first Adam) -> the last Adam (6524ms)\nWhat is Head Start?\tMickey\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Mickey, was heading for, an outdoor heavy metal festival) -> Mickey (6570ms)\nWhat is Head Start?\t2,433 children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (2,433 children, enrolled in, Head Start) -> 2,433 children (6597ms)\nWhat is Head Start?\tNAIA Championship Saint Xavier\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (NAIA Championship Saint Xavier, will be heading to, Rome) -> NAIA Championship Saint Xavier (6552ms)\nWhat is Head Start?\twoman\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (woman, was her head from, the first moment) -> woman (6524ms)\nWhat is Head Start?\tVivi Dot\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Vivi Dot, is headed to, the Treasure Island Music Festival) -> Vivi Dot (6587ms)\nWhat is Head Start?\tShe?ll\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (She?ll, soon be heading to, Norway and Rome) -> She?ll (6561ms)\nWhat is Head Start?\tabout 1,700 children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (about 1,700 children, enrolled in, Head Start) -> about 1,700 children (6547ms)\nWhat is Head Start?\tPSG\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (PSG, were also heading to, their first loss) -> PSG (6583ms)\nWhat is Head Start?\ttmills\t-0.0\tWhat is Head Start? -> $x: ($x, be head, mount rushmore) -> (tmills, is the fourth head in, the Mount Rushmore) -> tmills (6546ms)\nWhat is Head Start?\tLaura Sexton\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Laura Sexton, was headed for, a music festival) -> Laura Sexton (6506ms)\nWhat is Head Start?\tThe ball\t-0.0\tWhat is Head Start? -> $x: ($x, be head, fencing) -> (The ball, was heading over, the fence) -> The ball (6518ms)\nWhat is Head Start?\tMr Mockett\t-0.0\tWhat is Head Start? -> $x: ($x, be head, wellington) -> (Mr Mockett, was heading to, Wellington) -> Mr Mockett (6587ms)\nWhat is Head Start?\tBulger\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Bulger, was the head of, a South Boston Irish gang) -> Bulger (6476ms)\nWhat is Head Start?\tSleigh Bells\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Sleigh Bells, are heading out on, their first headlining tour) -> Sleigh Bells (6570ms)\nWhat is Head Start?\tthe authorised boo boy\t-0.0\tWhat is Head Start? -> $x: ($x, be head, clone) -> (the authorised boo boy, will be heading to, Clones or Killarney) -> the authorised boo boy (6518ms)\nWhat is Head Start?\tThe company\t-0.0\tWhat is Head Start? -> $x: ($x, be head, warren buffett) -> (The company, is headed by, Warren Buffett) -> The company (6601ms)\nWhat is Head Start?\tHeartical\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Heartical, is now heading for, the Riddim House Festival) -> Heartical (6561ms)\nWhat is Head Start?\tCaptain Jack\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Captain Jack, [is] the head of, a rival gang) -> Captain Jack (6476ms)\nWhat is Head Start?\tthe Octo\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (the Octo, is heading up, a puzzle festival) -> the Octo (6590ms)\nWhat is Head Start?\tPresident\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (President, is also heading, the Armenian Chess Federation) -> President (6499ms)\nWhat is Head Start?\tRogers\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Rogers, was headed home from, the Kerrville Folk Festival) -> Rogers (6597ms)\nWhat is Head Start?\tBrunei Darussalam\t-0.0\tWhat is Head Start? -> $x: ($x, be head, islamic faith) -> (Brunei Darussalam, is the head of, the Islamic faith) -> Brunei Darussalam (6518ms)\nWhat is Head Start?\tchildren and families\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (children and families, enrolled in, Head Start) -> children and families (6592ms)\nWhat is Head Start?\tgrandpa\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (grandpa, is the head of, a yakuza gang) -> grandpa (6557ms)\nWhat is Head Start?\tJoe Mulligan\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Joe Mulligan, [is] head of, first aid education) -> Joe Mulligan (6570ms)\nWhat is Head Start?\tJason Pamment\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Jason Pamment, will be heading over to, the festival) -> Jason Pamment (6484ms)\nWhat is Head Start?\tAriel\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Ariel, is headed back to Australia for, the Fuse Festival) -> Ariel (6491ms)\nWhat is Head Start?\tParadox\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Paradox, is heading to, Sundance Film Festival) -> Paradox (6540ms)\nWhat is Head Start?\tHealth Education\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Health Education, is headed by, First Lady) -> Health Education (6518ms)\nWhat is Head Start?\tGloria Feldt\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Gloria Feldt, was named head of, Planned Parenthood Federation) -> Gloria Feldt (6580ms)\nWhat is Head Start?\tBerkshire Hathaway\t-0.0\tWhat is Head Start? -> $x: ($x, be head, warren buffett) -> (Berkshire Hathaway, is headed by, local investor Warren Buffett) -> Berkshire Hathaway (6570ms)\nWhat is Head Start?\tthe churches\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (the churches, were heading to, Rome) -> the churches (6566ms)\nWhat is Head Start?\ttoddlers\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (toddlers, participate in, Head Start) -> toddlers (6476ms)\nWhat is Head Start?\tthe Commerce & Finance\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (the Commerce & Finance, is headed by, partner Liu Gang) -> the Commerce & Finance (6499ms)\nWhat is Head Start?\tPeter\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Peter, was crucified with his head downwards at, Rome) -> Peter (6506ms)\nWhat is Head Start?\tthe trucks\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (the trucks, are headed for, a J.B. Hunt terminal) -> the trucks (6598ms)\nWhat is Head Start?\tThe Chargers\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (The Chargers, are headed to, their first national appearance) -> The Chargers (6476ms)\nWhat is Head Start?\ttail lights\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (tail lights, were referred as head-lamps, first) -> tail lights (6512ms)\nWhat is Head Start?\tFriday\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (The four-day Muslim conference, started on, Friday) -> Friday (6518ms)\nWhat is Head Start?\ta film\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (a film, is now headed to, the Sundance Film Festival) -> a film (6561ms)\nWhat is Head Start?\tMikhail Margelov\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Mikhail Margelov, is head of, the Federation Council) -> Mikhail Margelov (6600ms)\nWhat is Head Start?\tRing\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Ring, headed was, the first research and development team) -> Ring (6587ms)\nWhat is Head Start?\trabbi\t-0.0\tWhat is Head Start? -> $x: ($x, be head, judaism) -> (rabbi, is the head of, a Hasidic Judaism dynasty) -> rabbi (6587ms)\nWhat is Head Start?\tFA chairman David Bernstein\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (FA chairman David Bernstein, is heading, the hunt) -> FA chairman David Bernstein (6518ms)\nWhat is Head Start?\t3 and 4 year olds\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (3 and 4 year olds, enrolled in, Head Start) -> 3 and 4 year olds (6583ms)\nWhat is Head Start?\tmanaging director\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (managing director, is head of, the Federation) -> managing director (6598ms)\nWhat is Head Start?\tShimizu\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Shimizu, was the 25th head honcho of, SMR jo-swinging gang) -> Shimizu (6512ms)\nWhat is Head Start?\tZubari\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Zubari, was the head of, a gang) -> Zubari (6552ms)\nWhat is Head Start?\tonly\t-0.0\tWhat is Head Start? -> $x: ($x, be head, wellington) -> (only, was heading to, Wellington) -> only (6586ms)\nWhat is Head Start?\tthe 32-year-old Moussa\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (the 32-year-old Moussa, was named to head, Rome) -> the 32-year-old Moussa (6556ms)\nWhat is Head Start?\tthe team\t-0.0\tWhat is Head Start? -> $x: ($x, be head, wellington) -> (the team, were heading back to, Wellington) -> the team (6512ms)\nWhat is Head Start?\tThe Dutchman\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (The Dutchman, is heading towards, a first) -> The Dutchman (6484ms)\nWhat is Head Start?\ttime\t-0.0\tWhat is Head Start? -> $x: (owl, start on, $x) -> (the Owl, started on, time) -> time (6492ms)\nWhat is Head Start?\tthe gains children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (the gains children, make in, Head Start) -> the gains children (6524ms)\nWhat is Head Start?\tMVP Kobe Bryant\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (MVP Kobe Bryant, will be heading to, his first Olympics) -> MVP Kobe Bryant (6499ms)\nWhat is Head Start?\tthe listing\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the listing, was headed for, a strong first day) -> the listing (6600ms)\nWhat is Head Start?\tThe weapons\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (The weapons, were headed for, Los Angeles street gangs) -> The weapons (6600ms)\nWhat is Head Start?\tAugust\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim holiday, will start on, August) -> August (6594ms)\nWhat is Head Start?\tfull members\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (full members, is headed by, Phil Murray) -> full members (6476ms)\nWhat is Head Start?\topen-wheel drivers\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (open-wheel drivers, are heading to, Nascar) -> open-wheel drivers (6601ms)\nWhat is Head Start?\tthe direction\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the direction, was headed in, the first place) -> the direction (6530ms)\nWhat is Head Start?\tJimmy Lyons\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Jimmy Lyons, was the head of, the Festival) -> Jimmy Lyons (6506ms)\nWhat is Head Start?\tRSPCA Burwood East\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rspca) -> (RSPCA Burwood East, is the head office of, RSPCA Victoria) -> RSPCA Burwood East (6570ms)\nWhat is Head Start?\tRei Ginsei\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Rei Ginsei, is the head of, his own little gang) -> Rei Ginsei (6590ms)\nWhat is Head Start?\tTackes\t-0.0\tWhat is Head Start? -> $x: ($x, be head, cheerleading) -> (Tackes, was head coach of, the girls varsity cheerleading team) -> Tackes (6552ms)\nWhat is Head Start?\tSelect staff\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Select staff, believe in, Head Start) -> Select staff (6587ms)\nWhat is Head Start?\tHaruna\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Haruna, was the head of, a gang) -> Haruna (6557ms)\nWhat is Head Start?\ta year\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (a year, was the head of, the Brigade?s Women?s Federation) -> a year (6518ms)\nWhat is Head Start?\tthe smug and sanctimonious proprietor\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (the smug and sanctimonious proprietor, is head of, the gang) -> the smug and sanctimonious proprietor (6476ms)\nWhat is Head Start?\tSB? Selma\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (SB? Selma, is headed to, the 68th annual Venice Film Festival) -> SB? Selma (6566ms)\nWhat is Head Start?\tThe IPCC Miraculous\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (The IPCC Miraculous, was heading back for, Federation HQ) -> The IPCC Miraculous (6540ms)\nWhat is Head Start?\tMs. Fuentes\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Ms. Fuentes, worked in, Head Start) -> Ms. Fuentes (6601ms)\nWhat is Head Start?\tDan and Darlene\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Dan and Darlene, were heading on to, Rome Northern Germany) -> Dan and Darlene (6484ms)\nWhat is Head Start?\tthe school district\t-0.0\tWhat is Head Start? -> $x: ($x, be head, im) -> (the school district, would be heading back to, school ?I?m) -> the school district (6530ms)\nWhat is Head Start?\tthe High Priest\t-0.0\tWhat is Head Start? -> $x: ($x, be head, judaism) -> (the High Priest, was the head of, Judaism) -> the High Priest (6573ms)\nWhat is Head Start?\tNearly 900,000 children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Nearly 900,000 children, are in, Head Start) -> Nearly 900,000 children (6512ms)\nWhat is Head Start?\tPeking Tom\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Peking Tom, was the Australian head of, a rival gang) -> Peking Tom (6598ms)\nWhat is Head Start?\tthe professor\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (the professor, was heading to, the NFTA Terminal) -> the professor (6589ms)\nWhat is Head Start?\tJenny\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Jenny, was in, Head Start) -> Jenny (6601ms)\nWhat is Head Start?\tPlayers\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Players, are thrown head, first) -> Players (6600ms)\nWhat is Head Start?\tWe?ve\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (We?ve, are heading fast to, our first day) -> We?ve (6600ms)\nWhat is Head Start?\tGunnar\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Gunnar, is soon elected head of, the European federation) -> Gunnar (6592ms)\nWhat is Head Start?\tThe precious metal\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (The precious metal, is heading for, the first weekly gain) -> The precious metal (6600ms)\nWhat is Head Start?\tManny Schellscheidt\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Manny Schellscheidt, is the head of, the U.S. Soccer Federation) -> Manny Schellscheidt (6506ms)\nWhat is Head Start?\ttop secret documents\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (top secret documents, is heading back to, Federation-held space) -> top secret documents (6512ms)\nWhat is Head Start?\t18.9 %\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (18.9 %, worked in, Head Start) -> 18.9 % (6594ms)\nWhat is Head Start?\tTrain\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (Train, is heading to, the premiere NASCAR event) -> Train (6584ms)\nWhat is Head Start?\tserious problems\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (serious problems, are headed straight for, gang membership) -> serious problems (6492ms)\nWhat is Head Start?\tthe film\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (the film, is headed to, the Sundance Film Festival) -> the film (6535ms)\nWhat is Head Start?\tYou?ve\t-0.0\tWhat is Head Start? -> $x: ($x, be head, karate) -> (You?ve, are headed to, Karate?and) -> You?ve (6484ms)\nWhat is Head Start?\tThe Solar Bus\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (The Solar Bus, is heading to, Bonnaroo music festival) -> The Solar Bus (6556ms)\nWhat is Head Start?\tThe Slaughter Rule\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (The Slaughter Rule, is headed for, another film festival) -> The Slaughter Rule (6586ms)\nWhat is Head Start?\tSpecifying plan\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Specifying plan, heads is, a mandatory first step) -> Specifying plan (6598ms)\nWhat is Head Start?\tSingapore\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Singapore, are heading to, the Sydney Film Festival) -> Singapore (6499ms)\nWhat is Head Start?\tTour\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (Tour, is heading into, the terminal) -> Tour (6598ms)\nWhat is Head Start?\tfront man\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (front man, was heading, a festival) -> front man (6499ms)\nWhat is Head Start?\thalf\t-0.0\tWhat is Head Start? -> $x: ($x, be head, fencing) -> (half, was heading under, the fence) -> half (6530ms)\nWhat is Head Start?\tGallani\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Gallani, was head of, federation and Berlusconi) -> Gallani (6556ms)\nWhat is Head Start?\tAlex\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Alex, [is] the head of, the gang) -> Alex (6506ms)\nWhat is Head Start?\tMorrissey\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Morrissey, was heading for, First Class) -> Morrissey (6587ms)\nWhat is Head Start?\tPebble Beach\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Pebble Beach, was headed for, its first sellout ?) -> Pebble Beach (6597ms)\nWhat is Head Start?\tThe Society\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (The Society, was now headed by, Nicholas Murray Butler) -> The Society (6570ms)\nWhat is Head Start?\tLinda and I\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Linda and I, will be heading south, first to Tennesee) -> Linda and I (6589ms)\nWhat is Head Start?\ta 17 year old step child\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (a 17 year old step child, was in, Head Start) -> a 17 year old step child (6506ms)\nWhat is Head Start?\tDLL preschoolers\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (DLL preschoolers, enrolled in, Head Start) -> DLL preschoolers (6580ms)\nWhat is Head Start?\tCharlie Angus\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Charlie Angus, will be heading to, Rome) -> Charlie Angus (6587ms)\nWhat is Head Start?\tJackie Hollywood\t-0.0\tWhat is Head Start? -> $x: ($x, be head, mardi gras) -> (Jackie Hollywood, is heading to, Mardi Gras) -> Jackie Hollywood (6580ms)\nWhat is Head Start?\tCarpenter\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (Carpenter, was headed for, his terminal) -> Carpenter (6594ms)\nWhat is Head Start?\tWilson\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Wilson, is the head of, the Police Federation) -> Wilson (6484ms)\nWhat is Head Start?\tCrown Point\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (Crown Point, is headed by, Murray McCartney) -> Crown Point (6530ms)\nWhat is Head Start?\tthe Soke\t-0.0\tWhat is Head Start? -> $x: ($x, be head, karate) -> (the Soke, are also the Heads of, Kam Lung Kempo Karate) -> the Soke (6589ms)\nWhat is Head Start?\tChinese\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Chinese, are heading home for, the Spring Festival gathering) -> Chinese (6594ms)\nWhat is Head Start?\tGaspard Ulliel\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Gaspard Ulliel, is heading to, the Cannes Film Festival) -> Gaspard Ulliel (6592ms)\nWhat is Head Start?\tthe time\t-0.0\tWhat is Head Start? -> $x: ($x, be head, motown) -> (the time, was head of, Motown music and president) -> the time (6592ms)\nWhat is Head Start?\tthe industry\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the industry, is headed, first hand) -> the industry (6598ms)\nWhat is Head Start?\tnext season\t-0.0\tWhat is Head Start? -> $x: (owl, start on, $x) -> (the Owls, have started to focus on, next season) -> next season (6592ms)\nWhat is Head Start?\thigh-risk children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (high-risk children, enrolled in, Head Start) -> high-risk children (6597ms)\nWhat is Head Start?\tSylvia\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rspca) -> (Sylvia, was head of, an RSPCA shelter) -> Sylvia (6589ms)\nWhat is Head Start?\t10\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (10, are heading back to, NASCAR?s) -> 10 (6467ms)\nWhat is Head Start?\tXerez\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Xerez, were heading towards, their first) -> Xerez (6594ms)\nWhat is Head Start?\ta spree\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (the Sunni Muslims, started on, a spree) -> a spree (6594ms)\nWhat is Head Start?\tPrime Minister\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Prime Minister, was a head of, the Stern Gang) -> Prime Minister (6524ms)\nWhat is Head Start?\tThe United States\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (The United States, is headed the way of, Rome) -> The United States (6524ms)\nWhat is Head Start?\tThe storm\t-0.0\tWhat is Head Start? -> $x: ($x, be head, wellington) -> (The storm, was heading inexorably for, Wellington) -> The storm (6547ms)\nWhat is Head Start?\tShagmon\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Shagmon, may be the real head of, the gang) -> Shagmon (6506ms)\nWhat is Head Start?\t594 children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (594 children, enrolled in, Head Start) -> 594 children (6506ms)\nWhat is Head Start?\tExcellence\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Excellence, is headed by, Dr. Gang Bao) -> Excellence (6599ms)\nWhat is Head Start?\ta Murray brothers\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (a Murray brothers, was heading for, the Murray Bros. booth) -> a Murray brothers (6484ms)\nWhat is Head Start?\tthe early gains\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (the early gains, made in, Head Start) -> the early gains (6580ms)\nWhat is Head Start?\tElektra Records\t-0.0\tWhat is Head Start? -> $x: ($x, be head, motown) -> (Elektra Records, is the head of, Universal Motown) -> Elektra Records (6577ms)\nWhat is Head Start?\tStalin\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Stalin, was then the head of, a train and bank robbing gang) -> Stalin (6499ms)\nWhat is Head Start?\tthe meeting\t-0.0\tWhat is Head Start? -> $x: ($x, be head, im) -> (the meeting, will be the heads of, Ex-Im Bank) -> the meeting (6552ms)\nWhat is Head Start?\tAyo\t-0.0\tWhat is Head Start? -> $x: ($x, be head, im) -> (Ayo, is heading out east at, the beginning of October and Im) -> Ayo (6512ms)\nWhat is Head Start?\tSydney Medical School\t-0.0\tWhat is Head Start? -> $x: ($x, be head, menopause) -> (Sydney Medical School, is Head of, the Menopause clinic) -> Sydney Medical School (6602ms)\nWhat is Head Start?\thand luggage\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (hand luggage, so will be heading straight for, terminal 1) -> hand luggage (6561ms)\nWhat is Head Start?\tthe President\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (the President, was head of, the National Wildlife Federation) -> the President (6484ms)\nWhat is Head Start?\tthe common currency\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the common currency, is headed for, its first weekly gain) -> the common currency (6598ms)\nWhat is Head Start?\tVolker Boehning\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (Volker Boehning, [is] head of, the state hunting association) -> Volker Boehning (6597ms)\nWhat is Head Start?\tGay people\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Gay people, should be thrown head, first) -> Gay people (6512ms)\nWhat is Head Start?\tThe tribes\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (The tribes, were heading for, Rome) -> The tribes (6600ms)\nWhat is Head Start?\tmore then 4000 people\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (more then 4000 people, were heading for, Rome) -> more then 4000 people (6540ms)\nWhat is Head Start?\tNext weekend\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Next weekend, be heading to, the National Book Festival) -> Next weekend (6484ms)\nWhat is Head Start?\tthe greatest route\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (the greatest route, is headed for, hunt) -> the greatest route (6577ms)\nWhat is Head Start?\tSteve\t-0.0\tWhat is Head Start? -> $x: ($x, be head, fencing) -> (Steve, is head coach at, the Cobra Fencing Club) -> Steve (6557ms)\nWhat is Head Start?\tone another\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (Muslims, should start spying on, one another) -> one another (6530ms)\nWhat is Head Start?\twork and Becky\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (work and Becky, are heading down to, the Young LDS Film Festival) -> work and Becky (6535ms)\nWhat is Head Start?\tKalmykia\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Kalmykia, is the head of, the International Chess Federation) -> Kalmykia (6570ms)\nWhat is Head Start?\tThe kids\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (The kids, were in, Head Start) -> The kids (6566ms)\nWhat is Head Start?\tAustralia\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Australia, was heading towards, federation) -> Australia (6552ms)\nWhat is Head Start?\tEach section\t-0.0\tWhat is Head Start? -> $x: ($x, be head, roman numeral) -> (Each section, is headed by, a roman numeral) -> Each section (6592ms)\nWhat is Head Start?\tthe politician\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (the politician, is the head of, the biggest gang) -> the politician (6476ms)\nWhat is Head Start?\tthe networks\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (the networks, are headed by, gangs) -> the networks (6547ms)\nWhat is Head Start?\tFuel\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Fuel, is turning heads at, that festival) -> Fuel (6547ms)\nWhat is Head Start?\t5 years\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (5 years, enrolled in, Head Start) -> 5 years (6561ms)\nWhat is Head Start?\tSacred Power\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (Sacred Power, is heading to, NASCAR) -> Sacred Power (6573ms)\nWhat is Head Start?\tFood Fest\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Food Fest, is heading to, the Festival) -> Food Fest (6590ms)\nWhat is Head Start?\tSundance and Tribecca\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Sundance and Tribecca, am heading to, the Toronto film festival) -> Sundance and Tribecca (6535ms)\nWhat is Head Start?\tGambino\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hiphop) -> (Gambino, is really turning heads in, this hiphop game) -> Gambino (6573ms)\nWhat is Head Start?\tThe New Orleans Saints\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (The New Orleans Saints, are headed to, their first Super Bowl) -> The New Orleans Saints (6484ms)\nWhat is Head Start?\tNew Hampshire\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (New Hampshire, was headed for, the terminal moraines) -> New Hampshire (6577ms)\nWhat is Head Start?\tthe items\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (the items, included in, Head Start) -> the items (6540ms)\nWhat is Head Start?\tPhilippe Chatrier\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Philippe Chatrier, was head of, the French Tennis Federation) -> Philippe Chatrier (6535ms)\nWhat is Head Start?\ta course\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim Ummah, started on, a course) -> a course (6524ms)\nWhat is Head Start?\tbeatification\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (beatification, is headed to, Rome) -> beatification (6577ms)\nWhat is Head Start?\tThe big ones\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (The big ones, are headed to, the terminal) -> The big ones (6529ms)\nWhat is Head Start?\tSimon\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Simon, was the head of, the Rotterdam Film Festival) -> Simon (6535ms)\nWhat is Head Start?\tfamilies\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (families, remain in, Head Start) -> families (6594ms)\nWhat is Head Start?\tthe 11,000 children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (the 11,000 children, enrolled in, Head Start) -> the 11,000 children (6573ms)\nWhat is Head Start?\tDSTW\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (DSTW, is heading to, a festival) -> DSTW (6583ms)\nWhat is Head Start?\tinclusion\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (inclusion, mean in, Head Start) -> inclusion (6594ms)\nWhat is Head Start?\tThe truck\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (The truck, was headed south on, First Avenue) -> The truck (6547ms)\nWhat is Head Start?\tCarbondale\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Carbondale, is headed to, the Cannes Film Festival) -> Carbondale (6524ms)\nWhat is Head Start?\tthe Lyttelton Band\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the Lyttelton Band, was headed for, the first time) -> the Lyttelton Band (6484ms)\nWhat is Head Start?\tchildren\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (children, enrolled in, Head Start) -> children (6556ms)\nWhat is Head Start?\tJoe\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Joe, is heading to, creativ festival) -> Joe (6506ms)\nWhat is Head Start?\ta bumpy personal connection\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (a bumpy personal connection, are headed to, the NASCAR Hall) -> a bumpy personal connection (6565ms)\nWhat is Head Start?\tCosker\t-0.0\tWhat is Head Start? -> $x: ($x, be head, desert storm) -> (Cosker, is heading to, the Desert Storm Poker Run) -> Cosker (6492ms)\nWhat is Head Start?\tRead More Team USA\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Read More Team USA, is headed to, Rome) -> Read More Team USA (6506ms)\nWhat is Head Start?\tlow-income children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (low-income children, enrolled in, Head Start) -> low-income children (6589ms)\nWhat is Head Start?\tA group of people\t-0.0\tWhat is Head Start? -> $x: ($x, be head, fencing) -> (A group of people, were heading for, an inner fence) -> A group of people (6467ms)\nWhat is Head Start?\ta large scale\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (Hindu-Muslim riots, started on, a large scale) -> a large scale (6467ms)\nWhat is Head Start?\tthe Jewish people\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the Jewish people, were headed off into, the first exile) -> the Jewish people (6573ms)\nWhat is Head Start?\t4.5\t-0.0\tWhat is Head Start? -> $x: ($x, be head, im) -> (4.5, is really heading in, directions Im really happy with) -> 4.5 (6552ms)\nWhat is Head Start?\tHermanos Inglesos\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Hermanos Inglesos, are turning heads with, their first release) -> Hermanos Inglesos (6570ms)\nWhat is Head Start?\tLaw\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Law, was headed for, Rome) -> Law (6565ms)\nWhat is Head Start?\tIllinois\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Illinois, is headed to, Rome later) -> Illinois (6597ms)\nWhat is Head Start?\tKrux\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nh) -> (Krux, is the red headed step child of, NHS truck brands) -> Krux (6583ms)\nWhat is Head Start?\tDanica Patrick\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (Danica Patrick, is officially headed to, NASCAR) -> Danica Patrick (6524ms)\nWhat is Head Start?\tConcert master\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Concert master, is the head of, first violin) -> Concert master (6540ms)\nWhat is Head Start?\tseeding\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (seeding, will be determined to Head, first) -> seeding (6598ms)\nWhat is Head Start?\tevery child\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (every child, enrolled in, Head Start) -> every child (6518ms)\nWhat is Head Start?\tthe committee\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (the committee, was headed by, the Federation) -> the committee (6512ms)\nWhat is Head Start?\teverybody\t-0.0\tWhat is Head Start? -> $x: ($x, be head, fencing) -> (everybody, else is heading through, the fence) -> everybody (6566ms)\nWhat is Head Start?\tthe bus\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (the bus, had been headed from, Fort McMurray) -> the bus (6540ms)\nWhat is Head Start?\tthe previous 11 drivers\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (the previous 11 drivers, are headed to, the NASCAR Hall) -> the previous 11 drivers (6512ms)\nWhat is Head Start?\tUte\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Ute, was the head of, the notorious Perkins gang) -> Ute (6600ms)\nWhat is Head Start?\tNEDFEST\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (NEDFEST, we?ll be heading to, Copper Country Festival) -> NEDFEST (6592ms)\nWhat is Head Start?\taction\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (action, must be headed by, a meticulous hunt) -> action (6587ms)\nWhat is Head Start?\t15:34 Prince Fielder\t-0.0\tWhat is Head Start? -> $x: ($x, be head, motown) -> (15:34 Prince Fielder, is headed for, Motown) -> 15:34 Prince Fielder (6600ms)\nWhat is Head Start?\tindustrial agribusiness\t-0.0\tWhat is Head Start? -> $x: ($x, be head, waterloo) -> (industrial agribusiness, is headed toward, its Waterloo) -> industrial agribusiness (6600ms)\nWhat is Head Start?\tyoung children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (young children, enrolled in, Head Start) -> young children (6524ms)\nWhat is Head Start?\tcoach\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (coach, were headed to, first class) -> coach (6566ms)\nWhat is Head Start?\tAli\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Ali, is also head of, the West Asian Football Federation) -> Ali (6597ms)\nWhat is Head Start?\tINTRODUCTION Many children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (INTRODUCTION Many children, enrolled in, Head Start) -> INTRODUCTION Many children (6467ms)\nWhat is Head Start?\tLatitude\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Latitude, are heading down to, his SWN Festival) -> Latitude (6547ms)\nWhat is Head Start?\tpregnant women\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (pregnant women, enrolled in, Head Start) -> pregnant women (6492ms)\nWhat is Head Start?\tDirectors Billy\t-0.0\tWhat is Head Start? -> $x: ($x, be head, karate) -> (Directors Billy, is the head of, the Hames Shihan-Ryu Karate) -> Directors Billy (6535ms)\nWhat is Head Start?\tquarterback\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (quarterback, has been the head coach at, Murray State) -> quarterback (6580ms)\nWhat is Head Start?\tThe 49ers\t-0.0\tWhat is Head Start? -> $x: ($x, be head, motown) -> (The 49ers, are headed to, Motown) -> The 49ers (6570ms)\nWhat is Head Start?\tthe Drool\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (the Drool, will be heading, another hunt) -> the Drool (6499ms)\nWhat is Head Start?\tthe recruits\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the recruits, are thrown head, first) -> the recruits (6601ms)\nWhat is Head Start?\ta baby\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (a baby, to be born head, first) -> a baby (6524ms)\nWhat is Head Start?\tChances\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Chances, are he?ll head to, Rome) -> Chances (6583ms)\nWhat is Head Start?\tComstock\t-0.0\tWhat is Head Start? -> $x: ($x, be head, kkk) -> (Comstock, was the head of, the kkk) -> Comstock (6561ms)\nWhat is Head Start?\tcompanies\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (companies, are heading to, festivals) -> companies (6467ms)\nWhat is Head Start?\tpreschoolers\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (preschoolers, enrolled in, Head Start) -> preschoolers (6587ms)\nWhat is Head Start?\tDeb Curtis\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Deb Curtis, worked in, Head Start) -> Deb Curtis (6589ms)\nWhat is Head Start?\tthe new station\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the new station, was headed off to, my first) -> the new station (6596ms)\nWhat is Head Start?\tyoung people\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (young people, might be headed for, involvement in gangs) -> young people (6580ms)\nWhat is Head Start?\tthe helicopter\t-0.0\tWhat is Head Start? -> $x: ($x, be head, wellington) -> (the helicopter, was heading to, Wellington) -> the helicopter (6540ms)\nWhat is Head Start?\t607 children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (607 children, enrolled in, head start) -> 607 children (6484ms)\nWhat is Head Start?\tThe ten stanzas\t-0.0\tWhat is Head Start? -> $x: ($x, be head, roman numeral) -> (The ten stanzas, are headed by, Roman numerals) -> The ten stanzas (6561ms)\nWhat is Head Start?\t3-4 year olds\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (3-4 year olds, enrolled in, Head Start) -> 3-4 year olds (6599ms)\nWhat is Head Start?\tthe effort\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nhs) -> (the effort, is headed up by, the NH Office) -> the effort (6600ms)\nWhat is Head Start?\tCisco\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Cisco, are actually heading around, the first corner) -> Cisco (6577ms)\nWhat is Head Start?\tTuesday\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim holiday, starts on, Tuesday) -> Tuesday (6561ms)\nWhat is Head Start?\tAl Capone\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Al Capone, was now head of, Chicago?s biggest gang) -> Al Capone (6547ms)\nWhat is Head Start?\tThe Power\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (The Power, will be heading to, the Cannes Film Festival) -> The Power (6492ms)\nWhat is Head Start?\tthe trend\t-0.0\tWhat is Head Start? -> $x: ($x, be head, im) -> (the trend, is heading, this way and I?m) -> the trend (6506ms)\nWhat is Head Start?\tthe Capitol and Obama\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the Capitol and Obama, was headed to, the first) -> the Capitol and Obama (6573ms)\nWhat is Head Start?\tthe outer perimeter fence\t-0.0\tWhat is Head Start? -> $x: ($x, be head, fencing) -> (the outer perimeter fence, were heading for, an inner fence) -> the outer perimeter fence (6530ms)\nWhat is Head Start?\tthe train\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (the train, was headed for, Lambert Airport-Main Terminal) -> the train (6499ms)\nWhat is Head Start?\tEdgar Chandler\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Edgar Chandler, was the head of, the Church Federation) -> Edgar Chandler (6573ms)\nWhat is Head Start?\tnearly 900,000 children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (nearly 900,000 children, are in, Head Start) -> nearly 900,000 children (6468ms)\nWhat is Head Start?\tconsumers\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (consumers, are heading, first) -> consumers (6506ms)\nWhat is Head Start?\tthe Saints\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the Saints, are going head-to-head in, the first NFL game) -> the Saints (6529ms)\nWhat is Head Start?\tBrown\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Brown, began in, Head Start) -> Brown (6594ms)\nWhat is Head Start?\tIll\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Ill, be headed, first) -> Ill (6577ms)\nWhat is Head Start?\tThe second option\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (The second option, is to head to, the Carcelen bus terminal) -> The second option (6499ms)\nWhat is Head Start?\tthe animation\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (the animation, will be heading to, a few movie festivals) -> the animation (6512ms)\nWhat is Head Start?\teach family\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (each family, enrolled in, Head Start) -> each family (6589ms)\nWhat is Head Start?\ttwo friends\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (two friends, are heading to, Barbados first two weeks) -> two friends (6556ms)\nWhat is Head Start?\tthe JACKSON car\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (the JACKSON car, is headed for, the DL&W Hoboken Terminal) -> the JACKSON car (6594ms)\nWhat is Head Start?\ta band contest\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (a band contest, will be heading to, the acclaimed music festival) -> a band contest (6600ms)\nWhat is Head Start?\tCarl Jensen\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Carl Jensen, was headed for, his first big meeting) -> Carl Jensen (6573ms)\nWhat is Head Start?\tan older woman\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (an older woman, is head of, the whole gang) -> an older woman (6552ms)\nWhat is Head Start?\t2nd one\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (2nd one, is Head, first Servlets) -> 2nd one (6540ms)\nWhat is Head Start?\tAn International Wine & Food Fest\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (An International Wine & Food Fest, is heading to, the Festival) -> An International Wine & Food Fest (6499ms)\nWhat is Head Start?\tdifferent days\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim and Chinese months, start on, different days) -> different days (6561ms)\nWhat is Head Start?\tholiday shopping\t-0.0\tWhat is Head Start? -> $x: (owl, start on, $x) -> (night owls, can get a head start on, holiday shopping) -> holiday shopping (6556ms)\nWhat is Head Start?\tClassics\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Classics, was heading for, a First) -> Classics (6598ms)\nWhat is Head Start?\tSat 12 Feb I?ll\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Sat 12 Feb I?ll, be heading to, the SXSW Interactive Festival) -> Sat 12 Feb I?ll (6518ms)\nWhat is Head Start?\ta rock star\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (a rock star, is heading to, the Cannes Film Festival) -> a rock star (6592ms)\nWhat is Head Start?\tthe woods\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (the woods, are heading up to, the festival) -> the woods (6547ms)\nWhat is Head Start?\tBrentwood\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Brentwood, are heading out to, the Kiwanis Festival) -> Brentwood (6556ms)\nWhat is Head Start?\tThe sultans and governors\t-0.0\tWhat is Head Start? -> $x: ($x, be head, islamic faith) -> (The sultans and governors, are the heads of, the Islamic faith) -> The sultans and governors (6535ms)\nWhat is Head Start?\thome prices\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (home prices, are headed northward for, the first time) -> home prices (6597ms)\nWhat is Head Start?\tAndrew\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Andrew, was the Head of, FIRST) -> Andrew (6589ms)\nWhat is Head Start?\tthe new paper\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the new paper, was headed, ?The ?Safety First ? Communists) -> the new paper (6540ms)\nWhat is Head Start?\tWoodside\t-0.0\tWhat is Head Start? -> $x: ($x, be head, terminal) -> (Woodside, is heading, the China-Australia Terminal Consortium) -> Woodside (6592ms)\nWhat is Head Start?\tthe work\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (the work, was headed for, either Rome or London) -> the work (6597ms)\nWhat is Head Start?\tthe University\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (the University, is headed to, the Sundance Film Festival) -> the University (6597ms)\nWhat is Head Start?\tCronin\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (Cronin, was the head coach at, Murray State) -> Cronin (6598ms)\nWhat is Head Start?\tthe Knicks\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the Knicks, might be headed to, their first losing streak) -> the Knicks (6535ms)\nWhat is Head Start?\tMike Vening\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Mike Vening, is head of, the Stockton Borough First Federation) -> Mike Vening (6535ms)\nWhat is Head Start?\ttrue Bill France\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nascar) -> (true Bill France, was still the head of, NASCAR) -> true Bill France (6597ms)\nWhat is Head Start?\tMr. Obama\t-0.0\tWhat is Head Start? -> $x: ($x, be head, mount rushmore) -> (Mr. Obama, is headed for, Mount Rushmore) -> Mr. Obama (6565ms)\nWhat is Head Start?\tBasil\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Basil, is the head of, town ?s gang) -> Basil (6580ms)\nWhat is Head Start?\tAleeta\t-0.0\tWhat is Head Start? -> $x: ($x, be head, karate) -> (Aleeta, is the head instructor at, the Feminist Karate Union) -> Aleeta (6580ms)\nWhat is Head Start?\tThe ABA\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (The ABA, is heading to, the Rio Grande Valley Bird Festival) -> The ABA (6587ms)\nWhat is Head Start?\tcompared teachers and children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (compared teachers and children, enrolled in, Head Start) -> compared teachers and children (6540ms)\nWhat is Head Start?\ta child\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (a child, participating in, Head Start) -> a child (6592ms)\nWhat is Head Start?\tLegislators\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Legislators, continue investing in, Head Start) -> Legislators (6476ms)\nWhat is Head Start?\tmotoring history\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (motoring history, is headed Stateside for, the very first time) -> motoring history (6476ms)\nWhat is Head Start?\ta rough and tough biker\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (a rough and tough biker, is the head of, the Del Fuego gang) -> a rough and tough biker (6546ms)\nWhat is Head Start?\tmarket forces\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nhs) -> (market forces, were heading for, 'an NHS-style crash) -> market forces (6573ms)\nWhat is Head Start?\tRademacher\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Rademacher, will also be heading out to, the festival) -> Rademacher (6530ms)\nWhat is Head Start?\tJanes\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (Janes, has been head professional at, Toronto Hunt) -> Janes (6484ms)\nWhat is Head Start?\tPaul\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (Paul, is headed to, Rome) -> Paul (6580ms)\nWhat is Head Start?\tSeth Cohn\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nhs) -> (Seth Cohn, is the new head of, NH Info) -> Seth Cohn (6589ms)\nWhat is Head Start?\tHettinga\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (Hettinga, was head coach at, MacMurray College) -> Hettinga (6512ms)\nWhat is Head Start?\tMaryland\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Maryland, are going head-to-head in, the first) -> Maryland (6484ms)\nWhat is Head Start?\tAikido\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Aikido, is now the head of, the Ki Aikido Federation) -> Aikido (6600ms)\nWhat is Head Start?\tTeixeira\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Teixeira, had been head of, the Brazilian federation) -> Teixeira (6580ms)\nWhat is Head Start?\tAsaph\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Asaph, [is] head of, the first division) -> Asaph (6561ms)\nWhat is Head Start?\tparents\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (parents, involved in, Head Start) -> parents (6573ms)\nWhat is Head Start?\tlast year\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (last year, was the head of, the Greek trade-union federation) -> last year (6584ms)\nWhat is Head Start?\tHaiti\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Haiti, was heading for, its first win) -> Haiti (6540ms)\nWhat is Head Start?\tIndia\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (India, is the head of, state and first citizen) -> India (6580ms)\nWhat is Head Start?\tThe last few\t-0.0\tWhat is Head Start? -> $x: ($x, be head, im) -> (The last few, are headed out, ASAP. I?m) -> The last few (6476ms)\nWhat is Head Start?\tstudents\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (students, had been in, Head Start) -> students (6600ms)\nWhat is Head Start?\tthe foundation\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (the foundation, laid in, Head Start) -> the foundation (6552ms)\nWhat is Head Start?\thomeless children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (homeless children, enroll in, Head Start) -> homeless children (6492ms)\nWhat is Head Start?\tSteinbeck\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Steinbeck, is headed on, the first page) -> Steinbeck (6467ms)\nWhat is Head Start?\t11 %\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (11 %, participate in, Head Start) -> 11 % (6570ms)\nWhat is Head Start?\tBollinger\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (Bollinger, is the head coach at, Hill Murray High School) -> Bollinger (6518ms)\nWhat is Head Start?\tSurkis\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Surkis, is also head of, the Ukrainian football federation) -> Surkis (6577ms)\nWhat is Head Start?\tDunmoyer\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Dunmoyer, was head of, the Personal Insurance Federation) -> Dunmoyer (6491ms)\nWhat is Head Start?\tDecember 1st\t-0.0\tWhat is Head Start? -> $x: (owl, start on, $x) -> (Great Horned and Screech Owls, started on, December 1st) -> December 1st (6566ms)\nWhat is Head Start?\tFebruary 28 , 2002\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (an anti-Muslim carnage, started on, February 28 , 2002) -> February 28 , 2002 (6552ms)\nWhat is Head Start?\tKristov\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (Kristov, [is] the head of, the Russian gang) -> Kristov (6601ms)\nWhat is Head Start?\tPierric Chalvin\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Pierric Chalvin, [is] head of, the regional textile federation) -> Pierric Chalvin (6540ms)\nWhat is Head Start?\tweekend\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (weekend, be heading down to, Hunt Valley) -> weekend (6499ms)\nWhat is Head Start?\tNick\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Nick, will be heading to, the Ozone Film Festival) -> Nick (6540ms)\nWhat is Head Start?\tunderwear\t-0.0\tWhat is Head Start? -> $x: ($x, be head, fencing) -> (underwear, was headed for, the fence) -> underwear (6512ms)\nWhat is Head Start?\tMugawer\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Mugawer, is the head of, the official federation) -> Mugawer (6518ms)\nWhat is Head Start?\tproblems\t-0.0\tWhat is Head Start? -> $x: ($x, be head, menopause) -> (problems, is head of, the Menopause and PMS centre) -> problems (6589ms)\nWhat is Head Start?\ta fat ?Italian? guy\t-0.0\tWhat is Head Start? -> $x: ($x, be head, modeling agency) -> (a fat ?Italian? guy, is head of, the modeling agency) -> a fat ?Italian? guy (6586ms)\nWhat is Head Start?\tpreschool children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (preschool children, enrolled in, Head Start) -> preschool children (6570ms)\nWhat is Head Start?\tthe stochastics\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the stochastics, was a subject heading of, first order) -> the stochastics (6518ms)\nWhat is Head Start?\tGeorge W. Bush\t-0.0\tWhat is Head Start? -> $x: ($x, be head, cheerleading) -> (George W. Bush, was also the head of, the cheerleading team) -> George W. Bush (6561ms)\nWhat is Head Start?\ta long one\t-0.0\tWhat is Head Start? -> $x: ($x, be head, fencing) -> (a long one, was headed for, the fences) -> a long one (6573ms)\nWhat is Head Start?\teven soft drugs\t-0.0\tWhat is Head Start? -> $x: ($x, be head, drug addiction) -> (even soft drugs, was headed for, drug addiction) -> even soft drugs (6552ms)\nWhat is Head Start?\tTony Daley\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Tony Daley, [is] head of, first team performance) -> Tony Daley (6467ms)\nWhat is Head Start?\tThe London team\t-0.0\tWhat is Head Start? -> $x: ($x, be head, murray) -> (The London team, will be headed by, Simon Murray) -> The London team (6577ms)\nWhat is Head Start?\toutward respectability\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (outward respectability, are heads of, the Mildew gang) -> outward respectability (6592ms)\nWhat is Head Start?\tthe draft\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the draft, was headed to, his first Pro Bowl) -> the draft (6601ms)\nWhat is Head Start?\tMs. Sagheb\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Ms. Sagheb, is the head of, the Afghan Basketball Federation) -> Ms. Sagheb (6592ms)\nWhat is Head Start?\tpoverty\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (poverty, are in, Head Start) -> poverty (6589ms)\nWhat is Head Start?\tDesign\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Design, is the heading of, the first chapter) -> Design (6601ms)\nWhat is Head Start?\tthe Rubicon\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (the Rubicon, is heading toward, Rome) -> the Rubicon (6594ms)\nWhat is Head Start?\tthe parents and families\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (the parents and families, enrolled in, Head Start) -> the parents and families (6598ms)\nWhat is Head Start?\tShannon\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Shannon, was head of, the festival) -> Shannon (6540ms)\nWhat is Head Start?\tGrant and Wesley\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Grant and Wesley, are heading to, the SXSW Interactive festival) -> Grant and Wesley (6535ms)\nWhat is Head Start?\temeralds\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (emeralds, was headed at, first) -> emeralds (6524ms)\nWhat is Head Start?\t1985 Scotland\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (1985 Scotland, was heading for, its first Vuelta win) -> 1985 Scotland (6584ms)\nWhat is Head Start?\tEvery child\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Every child, receiving services in, Head Start) -> Every child (6598ms)\nWhat is Head Start?\tthe 12th August\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (Muslim mischief, started on, the 12th August) -> the 12th August (6552ms)\nWhat is Head Start?\tMasters champ Charl Schwartzel\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Masters champ Charl Schwartzel, is heading for, the first tee) -> Masters champ Charl Schwartzel (6577ms)\nWhat is Head Start?\tThe officer\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (The officer, was heading south on, First Colonial) -> The officer (6586ms)\nWhat is Head Start?\tMonday\t-0.0\tWhat is Head Start? -> $x: (muslim, start on, $x) -> (Muslims ismaelitas, started on, Monday) -> Monday (6587ms)\nWhat is Head Start?\tAsh\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Ash, is heading your way for, the Queenscliff Music Festival) -> Ash (6587ms)\nWhat is Head Start?\tI?ll\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (I?ll, be headed to, Rome) -> I?ll (6592ms)\nWhat is Head Start?\tSlope\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Slope, is only the head of, first impuls) -> Slope (6583ms)\nWhat is Head Start?\tGrand Prince ?rp?d\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Grand Prince ?rp?d, was the head of, the tribal federation) -> Grand Prince ?rp?d (6561ms)\nWhat is Head Start?\tChildren\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (Children, enrolled in, Head Start) -> Children (6594ms)\nWhat is Head Start?\tStacy\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nhs) -> (Stacy, is heading to, NH next) -> Stacy (6594ms)\nWhat is Head Start?\tthe hour\t-0.0\tWhat is Head Start? -> $x: (owl, start on, $x) -> (Owl Hollow Tours, start on, the hour) -> the hour (6570ms)\nWhat is Head Start?\tAdam\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Adam, was the head of, the first race) -> Adam (6601ms)\nWhat is Head Start?\tthe school\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (the school, was head up, a literary festival) -> the school (6484ms)\nWhat is Head Start?\tfine-tune predictions\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (fine-tune predictions, is headed for, that first , or second) -> fine-tune predictions (6530ms)\nWhat is Head Start?\ta disability\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (a disability, enrolled in, Head Start) -> a disability (6512ms)\nWhat is Head Start?\tRobert De Niro\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Robert De Niro, will be heading up, the festival?s) -> Robert De Niro (6594ms)\nWhat is Head Start?\tMister Saturday Night\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (Mister Saturday Night, is headed to, First Avenue) -> Mister Saturday Night (6577ms)\nWhat is Head Start?\ta friend\t-0.0\tWhat is Head Start? -> $x: ($x, be head, gang) -> (a friend, was the head of, a biker gang) -> a friend (6570ms)\nWhat is Head Start?\ta large muscled dwarf\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (a large muscled dwarf, was the head of, the hunting squadron) -> a large muscled dwarf (6530ms)\nWhat is Head Start?\tthe rows\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (the rows, are headed by, the first sample) -> the rows (6597ms)\nWhat is Head Start?\tDavid Dalglish\t-0.0\tWhat is Head Start? -> $x: ($x, be head, nhs) -> (David Dalglish, is Head Pharmacist at, NHS Borders) -> David Dalglish (6561ms)\nWhat is Head Start?\tCriss Oliva\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (Criss Oliva, was headed to, the rock festival) -> Criss Oliva (6561ms)\nWhat is Head Start?\tthe pack\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (the pack, were heading off on, the hunt) -> the pack (6547ms)\nWhat is Head Start?\tA woman\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (A woman, is thrown head, first) -> A woman (6546ms)\nWhat is Head Start?\tThe firm\t-0.0\tWhat is Head Start? -> $x: ($x, be head, hunting) -> (The firm, is headed by, brokers Hunt Barnett) -> The firm (6589ms)\nWhat is Head Start?\thunters\t-0.0\tWhat is Head Start? -> $x: ($x, be head, first) -> (hunters, are heading out for, the first) -> hunters (6530ms)\nWhat is Head Start?\tThe film\t-0.0\tWhat is Head Start? -> $x: ($x, be head, festival) -> (The film, is heading into, its second festival phase) -> The film (6552ms)\nWhat is Head Start?\thair transplantation\t-0.0\tWhat is Head Start? -> $x: ($x, be head, clone) -> (hair transplantation, is headed toward, hair cloning) -> hair transplantation (6592ms)\nWhat is Head Start?\tMr Ramsay\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Mr Ramsay, is a former head of, the Victorian Farmers Federation) -> Mr Ramsay (6499ms)\nWhat is Head Start?\tinternational diplomacy\t-0.0\tWhat is Head Start? -> $x: ($x, be head, rome) -> (international diplomacy, is head of, the Rome office) -> international diplomacy (6600ms)\nWhat is Head Start?\tShintani Sensei\t-0.0\tWhat is Head Start? -> $x: ($x, be head, federation) -> (Shintani Sensei, was head of, the Shintani Wado-Kai Federation) -> Shintani Sensei (6529ms)\nWhat is Head Start?\t4-year-old children\t-0.0\tWhat is Head Start? -> $x: ($x, in, head start) -> (4-year-old children, enrolled in, Head Start) -> 4-year-old children (6491ms)\nWho is the governor of Alaska?\tPalin\t1.777777777777\tWho is the governor of Alaska? -> $x: ($x, be govenor of, alaska) -> (Palin, is Govenor of, Alaska) -> Palin (1759ms)\nWho is the governor of Alaska?\tThe rising Republican star\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The rising Republican star, was elected governor of, Alaska) -> The rising Republican star (2638ms)\nWho is the governor of Alaska?\ta beauty queen\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a beauty queen, can be elected governor of, Alaska) -> a beauty queen (2170ms)\nWho is the governor of Alaska?\tFrank Murkowki\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Frank Murkowki, is the governor of, Alaska) -> Frank Murkowki (1874ms)\nWho is the governor of Alaska?\tAlso Summary Sarah Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Also Summary Sarah Palin, is a former Governor of, Alaska) -> Also Summary Sarah Palin (2882ms)\nWho is the governor of Alaska?\tThe vice presidential choice\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The vice presidential choice, is the governor of, Alaska) -> The vice presidential choice (2111ms)\nWho is the governor of Alaska?\tthe fading carnival attraction\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the fading carnival attraction, was once the governor of, Alaska) -> the fading carnival attraction (2014ms)\nWho is the governor of Alaska?\tA contrasting example\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (A contrasting example, is the Governor of, Alaska) -> A contrasting example (2013ms)\nWho is the governor of Alaska?\tthe Alaska Daily Empire\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the Alaska Daily Empire, was appointed Governor of, Alaska) -> the Alaska Daily Empire (2638ms)\nWho is the governor of Alaska?\tthe years Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the years Palin, was Governor of, Alaska) -> the years Palin (2638ms)\nWho is the governor of Alaska?\ta Finn\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a Finn, was Governor of, Alaska) -> a Finn (2819ms)\nWho is the governor of Alaska?\tSarah Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sarah Palin, has only been Governor of, Alaska) -> Sarah Palin (2882ms)\nWho is the governor of Alaska?\tMs. Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Ms. Palin, has been governor of, Alaska) -> Ms. Palin (2882ms)\nWho is the governor of Alaska?\tFrank Murkowski\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Frank Murkowski, was elected governor of, Alaska) -> Frank Murkowski (2865ms)\nWho is the governor of Alaska?\tMcCain\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (McCain, is the Governor of, Alaska) -> McCain (2013ms)\nWho is the governor of Alaska?\tThe late Jay Hammond\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The late Jay Hammond, was governor of, Alaska) -> The late Jay Hammond (2170ms)\nWho is the governor of Alaska?\tSean Parnell\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sean Parnell, has been governor of, Alaska) -> Sean Parnell (2865ms)\nWho is the governor of Alaska?\tpresident\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (president, was governor of, Alaska) -> president (3063ms)\nWho is the governor of Alaska?\tgubernatorial chutzpah\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (gubernatorial chutzpah, was elected governor of, Alaska) -> gubernatorial chutzpah (2014ms)\nWho is the governor of Alaska?\tnow and 2012\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (now and 2012, is governor of, Alaska) -> now and 2012 (2111ms)\nWho is the governor of Alaska?\tMr. Parnell\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Mr. Parnell, is governor of, Alaska) -> Mr. Parnell (2818ms)\nWho is the governor of Alaska?\tSarah\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sarah, is the governor of, Alaska) -> Sarah (2014ms)\nWho is the governor of Alaska?\tJohn Brady\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (John Brady, was later territorial governor of, Alaska) -> John Brady (2818ms)\nWho is the governor of Alaska?\twhose mother\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (whose mother, is governor of, Alaska) -> whose mother (2865ms)\nWho is the governor of Alaska?\tfour\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (four, was governor of, Alaska) -> four (2638ms)\nWho is the governor of Alaska?\tthe brow\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the brow, is the governor of, Alaska) -> the brow (2882ms)\nWho is the governor of Alaska?\tWilliam A. Egan\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (William A. Egan, was again elected Governor of, Alaska) -> William A. Egan (2112ms)\nWho is the governor of Alaska?\tPages Governor Sarah Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Pages Governor Sarah Palin, is the current Governor of, Alaska) -> Pages Governor Sarah Palin (2638ms)\nWho is the governor of Alaska?\ta 44 year old mother\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a 44 year old mother, has been the governor of, Alaska) -> a 44 year old mother (2792ms)\nWho is the governor of Alaska?\t2010\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (2010, has been the former governor of, Alaska) -> 2010 (2112ms)\nWho is the governor of Alaska?\tSep 5 , 2008 4:40 PM EDT Ms. Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sep 5 , 2008 4:40 PM EDT Ms. Palin, has been Governor of, Alaska) -> Sep 5 , 2008 4:40 PM EDT Ms. Palin (2013ms)\nWho is the governor of Alaska?\tRick Perry\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Rick Perry, had been governor of, Alaska) -> Rick Perry (2818ms)\nWho is the governor of Alaska?\tSummary Sarah Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Summary Sarah Palin, is a former Governor of, Alaska) -> Summary Sarah Palin (2882ms)\nWho is the governor of Alaska?\tThe writer\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The writer, is governor of, Alaska) -> The writer (1759ms)\nWho is the governor of Alaska?\t1 Sarah Louise Heath Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (1 Sarah Louise Heath Palin, is the current Governor of, Alaska) -> 1 Sarah Louise Heath Palin (2112ms)\nWho is the governor of Alaska?\tshe?s\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (she?s, been the governor of, Alaska) -> she?s (2865ms)\nWho is the governor of Alaska?\ta small town\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a small town, has been governor of, Alaska) -> a small town (2791ms)\nWho is the governor of Alaska?\tSara Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sara Palin, was the Governor of, Alaska) -> Sara Palin (2792ms)\nWho is the governor of Alaska?\tDemocrat Tony Knowles\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Democrat Tony Knowles, was elected governor of, Alaska) -> Democrat Tony Knowles (2791ms)\nWho is the governor of Alaska?\ta woman\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a woman, would be either the Governor of, Alaska) -> a woman (2014ms)\nWho is the governor of Alaska?\tMurkowski\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Murkowski, was elected governor of, Alaska) -> Murkowski (2866ms)\nWho is the governor of Alaska?\tmayor\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (mayor, is Governor of, Alaska) -> mayor (1759ms)\nWho is the governor of Alaska?\tSwineford\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Swineford, was governor of, Alaska) -> Swineford (1873ms)\nWho is the governor of Alaska?\tVP\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (VP, is the Governor of, Alaska) -> VP (2818ms)\nWho is the governor of Alaska?\ttodd palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (todd palin, actually is the governor of, alaska) -> todd palin (1759ms)\nWho is the governor of Alaska?\tTrig?s mum\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Trig?s mum, is the Governor of, Alaska) -> Trig?s mum (2170ms)\nWho is the governor of Alaska?\tthe Interior\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the Interior, was elected Governor of, Alaska) -> the Interior (2170ms)\nWho is the governor of Alaska?\tSarah Palin Sarah Palin\t1.333333333332\tWho is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sarah Palin Sarah Palin, is the former governor of, Alaska) -> Sarah Palin Sarah Palin (1759ms)\nWho is the governor of Alaska?\tJews\t1.11111111111\tWho is the governor of Alaska? -> $x: ($x, be governor in, alaska) -> (Jews, have been governors in, Alaska , Idaho and Utah) -> Jews (3063ms)\nWho is the governor of Alaska?\t?Sarah Palin\t0.8888888888870001\tWho is the governor of Alaska? -> $x: ($x, be first governor of, alaska) -> (?Sarah Palin, is a conservative first-term governor of, Alaska) -> ?Sarah Palin (3063ms)\nWho is the governor of Alaska?\tShawn Parnell\t0.777777777776\tWho is the governor of Alaska? -> $x: ($x, be appoint governor of, alaska) -> (Shawn Parnell, would be appointed the next governor of, Alaska) -> Shawn Parnell (3074ms)\nWho is the governor of Alaska?\tJohn F. A.\t0.777777777776\tWho is the governor of Alaska? -> $x: ($x, appoint governor of, alaska) -> (John F. A., was appointed the 8th governor of, Alaska) -> John F. A. (3074ms)\nWho is the governor of Alaska?\tWilliam Ayer\t0.666666666666\tWho is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (William Ayer, was named CEO of, Alaska Airlines) -> William Ayer (3074ms)\nWho is the governor of Alaska?\tChugach\t0.666666666666\tWho is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Chugach, is the name of, a Native Alaska culture and people) -> Chugach (3075ms)\nWho is the governor of Alaska?\tGreen\t0.666666666666\tWho is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Green, was named the MVP of, the Great Alaska Shootout) -> Green (3074ms)\nWho is the governor of Alaska?\tthe company\t0.666666666666\tWho is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (the company, was named one of, Alaska Business Monthly?s top) -> the company (3074ms)\nWho is the governor of Alaska?\tVern\t0.666666666666\tWho is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Vern, was named one of, Alaska?s top) -> Vern (3074ms)\nWho is the governor of Alaska?\tthe State\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (Governor Freudenthal, will be delivering the State of, the State) -> the State (3078ms)\nWho is the governor of Alaska?\tthe wrong direction\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (Governor Walker, is taking the state in, the wrong direction) -> the wrong direction (3078ms)\nWho is the governor of Alaska?\ta good principle\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, may have been stating, a good principle) -> a good principle (3078ms)\nWho is the governor of Alaska?\tBakersfield\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, was diner-storming the state in, Bakersfield) -> Bakersfield (3074ms)\nWho is the governor of Alaska?\tthe conscious mind\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (The only governor, is the state of, the conscious mind) -> the conscious mind (3078ms)\nWho is the governor of Alaska?\tMontana\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the first Governor, is now the state of, Montana) -> Montana (3075ms)\nWho is the governor of Alaska?\teducation\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, also is the state board of, education) -> education (3078ms)\nWho is the governor of Alaska?\tArizona\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (The Governor, is suing the State of, Arizona) -> Arizona (3074ms)\nWho is the governor of Alaska?\ttime of war\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, shall be out of the State in, time of war) -> time of war (3075ms)\nWho is the governor of Alaska?\tbusiness leaders\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (The governor, is touring the state to talk to, business leaders) -> business leaders (3078ms)\nWho is the governor of Alaska?\tany time\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, was out of the state, any time) -> any time (3074ms)\nWho is the governor of Alaska?\tthe economy\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (The Governor, is hosting a state-wide summit on, the economy) -> the economy (3078ms)\nWho is the governor of Alaska?\tLytton\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, am stated to, Lytton) -> Lytton (3078ms)\nWho is the governor of Alaska?\tthe cuts\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, is reducing state spending beyond, the cuts) -> the cuts (3078ms)\nWho is the governor of Alaska?\tthe track\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (?Governor Christie, is putting our state on, the track) -> the track (3078ms)\nWho is the governor of Alaska?\tthe state speech\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, will be giving his state of, the state speech) -> the state speech (3078ms)\nWho is the governor of Alaska?\t20 days\t0.555555555553\tWho is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, is out of the state for, 20 days) -> 20 days (3074ms)\nWho is the governor of Alaska?\tthe great-uncle\t0.44444444444500003\tWho is the governor of Alaska? -> $x: ($x, be govenor of, arizona) -> (the great-uncle, was also the first govenor of, Arizona) -> the great-uncle (3078ms)\nWho is the governor of Alaska?\tThe C.ROOK Rick SCOTT\t0.11111111111100003\tWho is the governor of Alaska? -> $x: ($x, be govenor of, florida) -> (The C.ROOK Rick SCOTT, is the Govenor of, Florida) -> The C.ROOK Rick SCOTT (3078ms)\nWho is the governor of Alaska?\tMitt Romney?s father\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney?s father, was elected governor of, Michigan) -> Mitt Romney?s father (3087ms)\nWho is the governor of Alaska?\tMr. Osborn\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mr. Osborn, was formerly Governor of, Michigan) -> Mr. Osborn (3080ms)\nWho is the governor of Alaska?\tMitt Romney\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney, was governor of, Michigan) -> Mitt Romney (3080ms)\nWho is the governor of Alaska?\tThe Mormon businessman\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (The Mormon businessman, was once governor of, Michigan) -> The Mormon businessman (3083ms)\nWho is the governor of Alaska?\tMitt\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt, had been the Governor of, Michigan) -> Mitt (3088ms)\nWho is the governor of Alaska?\tHull\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Hull, was Governor of, the Michigan territories) -> Hull (3085ms)\nWho is the governor of Alaska?\tMabus\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Mabus, [is] the former governor of, Mississippi) -> Mabus (3085ms)\nWho is the governor of Alaska?\tGeorge\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George, [is] the governor of, Michigan) -> George (3087ms)\nWho is the governor of Alaska?\tEngler\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Engler, is a former Republican governor of, Michigan) -> Engler (3083ms)\nWho is the governor of Alaska?\tRussell A. Alger\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Russell A. Alger, was a former Governor of, Michigan) -> Russell A. Alger (3090ms)\nWho is the governor of Alaska?\t1848?Democrat\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (1848?Democrat, was longtime territorial Governor of, Michigan) -> 1848?Democrat (3080ms)\nWho is the governor of Alaska?\tThe stand-in\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (The stand-in, is the governor of, Michigan) -> The stand-in (3080ms)\nWho is the governor of Alaska?\t? George Romney\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (? George Romney, was a three-term governor of, Michigan) -> ? George Romney (3087ms)\nWho is the governor of Alaska?\tcourse Jennifer Granholm\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (course Jennifer Granholm, is the governor of, Michigan) -> course Jennifer Granholm (3085ms)\nWho is the governor of Alaska?\tRepublican Rick Snyder\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Republican Rick Snyder, has been elected governor of, Michigan) -> Republican Rick Snyder (3087ms)\nWho is the governor of Alaska?\tfifteen years\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (fifteen years, ago is now the governor of, Mississippi) -> fifteen years (3090ms)\nWho is the governor of Alaska?\tTate Reeves\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Tate Reeves, is the Lieutenant Governor of, Mississippi) -> Tate Reeves (3087ms)\nWho is the governor of Alaska?\tWilliam G. Milliken\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (William G. Milliken, was governor of, Michigan) -> William G. Milliken (3083ms)\nWho is the governor of Alaska?\tthe character\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (the character, is the Governor of, Mississippi) -> the character (3083ms)\nWho is the governor of Alaska?\tAustin Blair\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Austin Blair, was governor of, Michigan) -> Austin Blair (3087ms)\nWho is the governor of Alaska?\tThe principal executive officer\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (The principal executive officer, is the governor of, Mississippi) -> The principal executive officer (3089ms)\nWho is the governor of Alaska?\tMitt?s father George\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt?s father George, was Governor of, Michigan) -> Mitt?s father George (3088ms)\nWho is the governor of Alaska?\tMitt Romney Mitt?s father\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney Mitt?s father, was the former Governor of, Michigan) -> Mitt Romney Mitt?s father (3088ms)\nWho is the governor of Alaska?\tthe senior Romney\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (the senior Romney, was elected governor of, Michigan) -> the senior Romney (3090ms)\nWho is the governor of Alaska?\tRomney\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney, was once governor of, Michigan) -> Romney (3088ms)\nWho is the governor of Alaska?\tJennifer Granholm\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Jennifer Granholm, was the two-term governor of, Michigan) -> Jennifer Granholm (3088ms)\nWho is the governor of Alaska?\tGeorge W. Romney\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George W. Romney, was elected governor of, Michigan) -> George W. Romney (3080ms)\nWho is the governor of Alaska?\tQuitman\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Quitman, was elected governor of, Mississippi) -> Quitman (3088ms)\nWho is the governor of Alaska?\tPaul Johnson\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Paul Johnson, was the Governor of, Mississippi) -> Paul Johnson (3085ms)\nWho is the governor of Alaska?\tRomney?s Mitt?s father\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney?s Mitt?s father, was the governor of, Michigan) -> Romney?s Mitt?s father (3085ms)\nWho is the governor of Alaska?\tColonel Stone\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Colonel Stone, was governor of, Mississippi) -> Colonel Stone (3085ms)\nWho is the governor of Alaska?\tThe 1:1 Classroom ?\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (The 1:1 Classroom ?, was the first governor of, Michigan ?) -> The 1:1 Classroom ? (3083ms)\nWho is the governor of Alaska?\tthe Navy\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (the Navy, [is] a former governor of, Mississippi) -> the Navy (3088ms)\nWho is the governor of Alaska?\t1813\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (1813, was appointed Governor of, Michigan Territory) -> 1813 (3083ms)\nWho is the governor of Alaska?\tJohn Engler\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (John Engler, is the former Governor of, Michigan) -> John Engler (3089ms)\nWho is the governor of Alaska?\tCEO\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (CEO, later was thrice-elected Governor of, Michigan) -> CEO (3088ms)\nWho is the governor of Alaska?\tMurphy\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Murphy, was elected Governor of, Michigan) -> Murphy (3087ms)\nWho is the governor of Alaska?\trel=shortlink ?\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (rel=shortlink ?, was the first governor of, Michigan ?) -> rel=shortlink ? (3088ms)\nWho is the governor of Alaska?\t?My primary focus\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (?My primary focus, is being governor of, Michigan) -> ?My primary focus (3080ms)\nWho is the governor of Alaska?\tMichigan Rick Snyder\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Michigan Rick Snyder, was elected governor of, Michigan) -> Michigan Rick Snyder (3080ms)\nWho is the governor of Alaska?\tGeorge Romney\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George Romney, was governor of, Michigan) -> George Romney (3085ms)\nWho is the governor of Alaska?\tMitt?s dad\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt?s dad, was governor of, Michigan) -> Mitt?s dad (3085ms)\nWho is the governor of Alaska?\twhose father George\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (whose father George, was governor of, Michigan) -> whose father George (3087ms)\nWho is the governor of Alaska?\tMr Romney\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mr Romney, was a hugely popular three-term governor of, Michigan) -> Mr Romney (3087ms)\nWho is the governor of Alaska?\tMr Romney?s father\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mr Romney?s father, was governor of, Michigan) -> Mr Romney?s father (3085ms)\nWho is the governor of Alaska?\tAndrew Houston Longino\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Andrew Houston Longino, was elected governor of, Mississippi) -> Andrew Houston Longino (3088ms)\nWho is the governor of Alaska?\tRomney?s father\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney?s father, is a former governor of, Michigan) -> Romney?s father (3089ms)\nWho is the governor of Alaska?\tMitt Romney?s dad\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney?s dad, was governor of, Michigan) -> Mitt Romney?s dad (3087ms)\nWho is the governor of Alaska?\tBarbour\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Barbour, is actually the Governor of, Mississippi) -> Barbour (3088ms)\nWho is the governor of Alaska?\tRick Snyder\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Rick Snyder, was elected governor of, Michigan) -> Rick Snyder (3090ms)\nWho is the governor of Alaska?\tHaley Barbour\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Haley Barbour, was governor of, Mississippi) -> Haley Barbour (3090ms)\nWho is the governor of Alaska?\tHazen Pingree\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Hazen Pingree, was elected Governor of, Michigan) -> Hazen Pingree (3078ms)\nWho is the governor of Alaska?\tRomney?s father\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney?s father, was a popular three-term governor of, Michigan) -> Romney?s father (3087ms)\nWho is the governor of Alaska?\tDetroit\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Detroit, [is] governor of, Michigan) -> Detroit (3089ms)\nWho is the governor of Alaska?\tGen . Charles Clark\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Gen . Charles Clark, was elected Governor of, Mississippi) -> Gen . Charles Clark (3087ms)\nWho is the governor of Alaska?\tHiram Runnels\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Hiram Runnels, was Governor of, Mississippi and Andrew Jackson) -> Hiram Runnels (3090ms)\nWho is the governor of Alaska?\twhose father\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (whose father, was governor of, Michigan) -> whose father (3085ms)\nWho is the governor of Alaska?\tLowry\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Lowry, was governor of, Mississippi) -> Lowry (3083ms)\nWho is the governor of Alaska?\tStevens T. Mason\t0.111111111111\tWho is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Stevens T. Mason, was the first governor of, Michigan) -> Stevens T. Mason (3083ms)\nWho is the governor of Alaska?\tthe first woman\t-0.0\tWho is the governor of Alaska? -> $x: ($x, elect, governor of alaska) -> (the first woman, elected, governor of Alaska) -> the first woman (3090ms)\nWhat is Jerry's last name?\tPatty\t0.111111111107\tWhat is Jerry's last name? -> $x: (jerry 's, be name, $x) -> (Jerry?s, was named, Patty) -> Patty (911ms)\nWhat is Jerry's last name?\tthe 2010 REALTOR?\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Payne, was named, the 2010 REALTOR?) -> the 2010 REALTOR? (1752ms)\nWhat is Jerry's last name?\tlong\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs, have been given a bad name for too, long) -> long (1843ms)\nWhat is Jerry's last name?\t?a mermaid?s purse?\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (?a shark?s egg ?, is another name for, ?a mermaid?s purse?) -> ?a mermaid?s purse? (1851ms)\nWhat is Jerry's last name?\ta National Peer Professional\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, a National Peer Professional) -> a National Peer Professional (1776ms)\nWhat is Jerry's last name?\tCertified Humane\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Phil?s Fresh Eggs, has been named, Certified Humane) -> Certified Humane (1378ms)\nWhat is Jerry's last name?\thead coach\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sloan, was named, head coach) -> head coach (1843ms)\nWhat is Jerry's last name?\ta plumber\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is a nice name for, a plumber) -> a plumber (1851ms)\nWhat is Jerry's last name?\tJerry Reid\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Reed, was named, Jerry Reid) -> Jerry Reid (1522ms)\nWhat is Jerry's last name?\tVolunteer\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (33 photos Jerry Ausley, was named, Volunteer) -> Volunteer (1843ms)\nWhat is Jerry's last name?\ta musical\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Zaks, was named outstanding director of, a musical) -> a musical (1849ms)\nWhat is Jerry's last name?\tregular patrons\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs Benedict, were named for, regular patrons) -> regular patrons (1821ms)\nWhat is Jerry's last name?\tRed Sox nation\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Remy, was named the first President of, Red Sox nation) -> Red Sox nation (1821ms)\nWhat is Jerry's last name?\tOviraptor\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (the supposed Protoceratops eggs, was named, Oviraptor) -> Oviraptor (1427ms)\nWhat is Jerry's last name?\tUtah ?s Bench Leader\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sloan, was named as, Utah ?s Bench Leader) -> Utah ?s Bench Leader (1843ms)\nWhat is Jerry's last name?\ta U. politician\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Lewis, is also the name of, a U. politician) -> a U. politician (1730ms)\nWhat is Jerry's last name?\tbranch manager\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Ladd, was named, branch manager) -> branch manager (1752ms)\nWhat is Jerry's last name?\tthe Bay Area sports Hall\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Coleman, are named to, the Bay Area sports Hall) -> the Bay Area sports Hall (1730ms)\nWhat is Jerry's last name?\tthe first ever list\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named in, the first ever list) -> the first ever list (1843ms)\nWhat is Jerry's last name?\tthe exterminator\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was the name of, the exterminator) -> the exterminator (1427ms)\nWhat is Jerry's last name?\tDemocrat\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Democrat) -> Democrat (1776ms)\nWhat is Jerry's last name?\tBEST GUITARIST 2010\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (our very own Jerry Battista, was named, BEST GUITARIST 2010) -> BEST GUITARIST 2010 (1522ms)\nWhat is Jerry's last name?\tTinley Park\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Weber, was named vice president of, Tinley Park) -> Tinley Park (1853ms)\nWhat is Jerry's last name?\tsenior vice president\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (9/15/11 Jerry Bosken, was named, senior vice president) -> senior vice president (1729ms)\nWhat is Jerry's last name?\ta junior high dean\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (?Jerry Donaldson, was also named, a junior high dean) -> a junior high dean (1846ms)\nWhat is Jerry's last name?\thidden features\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Easter eggs, are the playful name for, hidden features) -> hidden features (1843ms)\nWhat is Jerry's last name?\tPresident\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Deitchle, has been named, President) -> President (1378ms)\nWhat is Jerry's last name?\ta couple\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry and Sara Park, were named as, a couple) -> a couple (1729ms)\nWhat is Jerry's last name?\tthe Zoo?s Executive Director\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (-Jerry Borin, is named, the Zoo?s Executive Director) -> the Zoo?s Executive Director (1849ms)\nWhat is Jerry's last name?\tVolunteer of the Year\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Ausley, was named, Volunteer of the Year) -> Volunteer of the Year (1846ms)\nWhat is Jerry's last name?\tThe guy\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is name [of], The guy) -> The guy (1821ms)\nWhat is Jerry's last name?\tPDN magazine\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (2011 Jerry, was named by, PDN magazine) -> PDN magazine (1851ms)\nWhat is Jerry's last name?\t18\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Franklin, was named one of, 18) -> 18 (1849ms)\nWhat is Jerry's last name?\tthe ?Top Forty\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Vail and Jerry, were both named to, the ?Top Forty) -> the ?Top Forty (1843ms)\nWhat is Jerry's last name?\ta defendant\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Attorney General Jerry Brown, was named as, a defendant) -> a defendant (1821ms)\nWhat is Jerry's last name?\tthe Spirit\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (MobilityWorks client Jerry Baylor, was named, the Spirit) -> the Spirit (1752ms)\nWhat is Jerry's last name?\tJerry\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry McGuire, was the name of, Jerry) -> Jerry (1729ms)\nWhat is Jerry's last name?\tCatherine\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (This egg, was named for, Catherine) -> Catherine (1843ms)\nWhat is Jerry's last name?\tpresident\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry M. Hiegel, was named, president) -> president (1378ms)\nWhat is Jerry's last name?\tthe Ernst & Young Emerging Entrepreneur\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the Ernst & Young Emerging Entrepreneur) -> the Ernst & Young Emerging Entrepreneur (1843ms)\nWhat is Jerry's last name?\tAssociate Office Director\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Phillips, has been named as, Associate Office Director) -> Associate Office Director (1843ms)\nWhat is Jerry's last name?\ta band\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, is a very interesting name for, a band) -> a band (1849ms)\nWhat is Jerry's last name?\tregular customers & customers\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (egg dishes, are named after, regular customers & customers) -> regular customers & customers (1851ms)\nWhat is Jerry's last name?\tTangata Manu\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (an egg unbroken, was named, Tangata Manu) -> Tangata Manu (1843ms)\nWhat is Jerry's last name?\tthe roles\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (a ham-and-eggs dinner, is used to name, the roles) -> the roles (1846ms)\nWhat is Jerry's last name?\tmembers\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (# 2 Eggs Benedict, was named for, members) -> members (1776ms)\nWhat is Jerry's last name?\tco-director\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Development Jerry Schultz, has been named, co-director) -> co-director (1846ms)\nWhat is Jerry's last name?\tthe bind\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Chicken and egg, is her name for, the bind) -> the bind (1851ms)\nWhat is Jerry's last name?\tthe Town\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, has been named by, the Town) -> the Town (1776ms)\nWhat is Jerry's last name?\tNBA Executive\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (General Manager Jerry West, was named, NBA Executive) -> NBA Executive (1849ms)\nWhat is Jerry's last name?\tStore Operations\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named Vice President of, Store Operations) -> Store Operations (1849ms)\nWhat is Jerry's last name?\ta national panel\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Rep. Jerry Lewis, was named to, a national panel) -> a national panel (1378ms)\nWhat is Jerry's last name?\ta cage\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (industrial egg production, is to put a fancy name on, a cage) -> a cage (1851ms)\nWhat is Jerry's last name?\tHairLoss.com ?s 2011 ?Person\t-0.0\tWhat is Jerry's last name? -> $x: (seinfeld, be name, $x) -> (Seinfeld fame, has been named, HairLoss.com ?s 2011 ?Person) -> HairLoss.com ?s 2011 ?Person (1843ms)\nWhat is Jerry's last name?\tthe All-Rookie Team\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Augustine, is named to, the All-Rookie Team) -> the All-Rookie Team (1378ms)\nWhat is Jerry's last name?\thonor\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (the 6th annual FBI Jerry Dove Memorial, was named in, honor) -> honor (1849ms)\nWhat is Jerry's last name?\tthe list\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Hanson, is the only name on, the list) -> the list (1851ms)\nWhat is Jerry's last name?\tAPCUG founder Jerry Schneider\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (The Jerry Awards, are named for, APCUG founder Jerry Schneider) -> APCUG founder Jerry Schneider (1821ms)\nWhat is Jerry's last name?\tSuper Bowl MVP\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Super Bowl MVP) -> Super Bowl MVP (1729ms)\nWhat is Jerry's last name?\tCollege Honorary Fellows\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Monkarsh, were named, College Honorary Fellows) -> College Honorary Fellows (1752ms)\nWhat is Jerry's last name?\tthe Gophers\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Kill, was named, the Gophers) -> the Gophers (1843ms)\nWhat is Jerry's last name?\tegg\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (2010 Egg white, is popular named as, egg) -> egg (1851ms)\nWhat is Jerry's last name?\ta required resource\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs, are only named as, a required resource) -> a required resource (1378ms)\nWhat is Jerry's last name?\tthe inaugural class\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named to, the inaugural class) -> the inaugural class (1849ms)\nWhat is Jerry's last name?\tthe stronghold\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Pournelle, is named after, the stronghold) -> the stronghold (1846ms)\nWhat is Jerry's last name?\tthe 2007 Rookie\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (NC native Jerry Hollis, has been named, the 2007 Rookie) -> the 2007 Rookie (1853ms)\nWhat is Jerry's last name?\ta godfather\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is named, a godfather) -> a godfather (1821ms)\nWhat is Jerry's last name?\tthe new CEO\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Yang, was named, the new CEO) -> the new CEO (1846ms)\nWhat is Jerry's last name?\tan NSF EAPSI fellow\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (04/2006 Jerry Lii, is named, an NSF EAPSI fellow) -> an NSF EAPSI fellow (1729ms)\nWhat is Jerry's last name?\tShatash\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (the egg, is named, Shatash) -> Shatash (1853ms)\nWhat is Jerry's last name?\tstate rock\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (The Thunder-egg, was named, state rock) -> state rock (1849ms)\nWhat is Jerry's last name?\tthe band\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> ('s egg sandwich, was named for, the band) -> the band (1752ms)\nWhat is Jerry's last name?\tthe 2009 Executive\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Tan, was named, the 2009 Executive) -> the 2009 Executive (1851ms)\nWhat is Jerry's last name?\tthe company\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Jones, is the name of, the company) -> the company (1851ms)\nWhat is Jerry's last name?\tthird base coach\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Royster, has been named, third base coach) -> third base coach (1843ms)\nWhat is Jerry's last name?\tthe interim director\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Liechty, has been named as, the interim director) -> the interim director (1427ms)\nWhat is Jerry's last name?\tthe first album\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (the Egg, is the name of, the first album) -> the first album (1522ms)\nWhat is Jerry's last name?\tthe payment gateway\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Lee, was the name of, the payment gateway) -> the payment gateway (1522ms)\nWhat is Jerry's last name?\tthe Maria Callas Award winner\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Hadley, was named as, the Maria Callas Award winner) -> the Maria Callas Award winner (1821ms)\nWhat is Jerry's last name?\tMets manager\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (the Milwaukee Brewers and Jerry Manuel, was named, Mets manager) -> Mets manager (1522ms)\nWhat is Jerry's last name?\tOutstanding TAs\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sun, were named, Outstanding TAs) -> Outstanding TAs (1853ms)\nWhat is Jerry's last name?\tInformation Technology executive\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Information Technology executive) -> Information Technology executive (1851ms)\nWhat is Jerry's last name?\tErnst & Young?s Entrepreneur\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was recently named, Ernst & Young?s Entrepreneur) -> Ernst & Young?s Entrepreneur (1752ms)\nWhat is Jerry's last name?\ta regular guest\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs Benedict, was allegedly named after, a regular guest) -> a regular guest (1752ms)\nWhat is Jerry's last name?\tthe Egg group\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Egg, is a trading name of, the Egg group) -> the Egg group (1849ms)\nWhat is Jerry's last name?\tBUTTERFLIES\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Great Egg Fly, are all names of, BUTTERFLIES) -> BUTTERFLIES (1851ms)\nWhat is Jerry's last name?\tthe Super Bowl MVP\t-0.0\tWhat is Jerry's last name? -> $x: (jerry rice, be name, $x) -> (49ers wide receiver Jerry Rice, was named, the Super Bowl MVP) -> the Super Bowl MVP (1846ms)\nWhat is Jerry's last name?\tlocal benefactor Gerald Uht\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Uht park, was named for, local benefactor Gerald Uht) -> local benefactor Gerald Uht (1427ms)\nWhat is Jerry's last name?\tthe MVP\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Noah, was named, the MVP) -> the MVP (1846ms)\nWhat is Jerry's last name?\ta few\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (caramelized egg yolk, are just to name, a few) -> a few (1776ms)\nWhat is Jerry's last name?\tthe game\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, are the name of, the game) -> the game (1849ms)\nWhat is Jerry's last name?\tthe Century Outstanding Citizen\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Fischer, was named, the Century Outstanding Citizen) -> the Century Outstanding Citizen (1851ms)\nWhat is Jerry's last name?\tLuetkemeyer\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Dowell, is named, Luetkemeyer) -> Luetkemeyer (1378ms)\nWhat is Jerry's last name?\tthe academy\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Melillo, was named to, the academy) -> the academy (1846ms)\nWhat is Jerry's last name?\tthe huge amounts\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (the Rotten Egg Nebula, is so-named for, the huge amounts) -> the huge amounts (1851ms)\nWhat is Jerry's last name?\tInstructor\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Overdrive Staff Jerry Gambrell, was named, Instructor) -> Instructor (1821ms)\nWhat is Jerry's last name?\tthe new technique\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (his 1st egg, will be the name of, the new technique) -> the new technique (1843ms)\nWhat is Jerry's last name?\ta starting guard\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Kramer, was named, a starting guard) -> a starting guard (1846ms)\nWhat is Jerry's last name?\tJasper and Jinx\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Tom and Jerry, were originally named, Jasper and Jinx) -> Jasper and Jinx (1522ms)\nWhat is Jerry's last name?\tthe Jack S. Josey Professor\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Brand, has been named, the Jack S. Josey Professor) -> the Jack S. Josey Professor (1821ms)\nWhat is Jerry's last name?\tthe new company\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Wilke, was named President of, the new company) -> the new company (1851ms)\nWhat is Jerry's last name?\tthe 1965 Legislature\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (The Thunder-egg, was named state rock by, the 1965 Legislature) -> the 1965 Legislature (1776ms)\nWhat is Jerry's last name?\tYorkshire Building Society\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (N&P and Egg, are trading names of, Yorkshire Building Society) -> Yorkshire Building Society (1427ms)\nWhat is Jerry's last name?\t?Communicator\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, ?Communicator) -> ?Communicator (1846ms)\nWhat is Jerry's last name?\tassistant head coach\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (coach Jerry Gray, is has been named, assistant head coach) -> assistant head coach (1427ms)\nWhat is Jerry's last name?\tMusician\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Douglas, was named, Musician) -> Musician (1846ms)\nWhat is Jerry's last name?\tthe 1960\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (an All-Pro , Jerry, was named to, the 1960) -> the 1960 (1846ms)\nWhat is Jerry's last name?\tEB ! ? EB\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (This egg, is named after, EB ! ? EB) -> EB ! ? EB (1849ms)\nWhat is Jerry's last name?\tthe conference?s\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the conference?s) -> the conference?s (1821ms)\nWhat is Jerry's last name?\tScarpa\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (05 Mar 2012 0 Jerry and Lois Horton, were named, Scarpa) -> Scarpa (1729ms)\nWhat is Jerry's last name?\tstate librarian\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Krois, was named acting, state librarian) -> state librarian (1752ms)\nWhat is Jerry's last name?\tthe luscious summer tomatoes\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (the classic egg dish, is named for, the luscious summer tomatoes) -> the luscious summer tomatoes (1843ms)\nWhat is Jerry's last name?\tthe Songwriter\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the Songwriter) -> the Songwriter (1522ms)\nWhat is Jerry's last name?\tAmerican Football\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Rice, is the biggest name in, American Football) -> American Football (1849ms)\nWhat is Jerry's last name?\tthe Blue Demons\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Chicago-area native Jerry Wainwright, was named, the Blue Demons) -> the Blue Demons (1776ms)\nWhat is Jerry's last name?\tMedia Economic Research\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Duvall, was named Director of, Media Economic Research) -> Media Economic Research (1522ms)\nWhat is Jerry's last name?\tRobert Morrison\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Shurson, was named to replace, Robert Morrison) -> Robert Morrison (1846ms)\nWhat is Jerry's last name?\tsample\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (our egg, is named, sample) -> sample (1849ms)\nWhat is Jerry's last name?\tan entomologist\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, was named by, an entomologist) -> an entomologist (1428ms)\nWhat is Jerry's last name?\tThought\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (That first egg, was named, Thought) -> Thought (1849ms)\nWhat is Jerry's last name?\tRecord Executive\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Moss, was named, Record Executive) -> Record Executive (1849ms)\nWhat is Jerry's last name?\tthe likely culprit\t-0.0\tWhat is Jerry's last name? -> $x: (egg, be name, $x) -> (Raw egg, has been named, the likely culprit) -> the likely culprit (1851ms)\nWhat is Jerry's last name?\tMVP\t-0.0\tWhat is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Rice, was named, MVP) -> MVP (1846ms)\nWhat is Jerry's last name?\tA similar bill\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, jerry) -> (A similar bill, was vetoed last year by, Gov. Jerry Brown) -> A similar bill (1853ms)\nWhat is Jerry's last name?\tThe testing procedure\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (The testing procedure, was last completed with, eggs) -> The testing procedure (1853ms)\nWhat is Jerry's last name?\tStarsky\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (Starsky, was just finishing the last of, his fried eggs) -> Starsky (1853ms)\nWhat is Jerry's last name?\tReach\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (Reach, was released last month on, Universal Egg) -> Reach (1853ms)\nWhat is Jerry's last name?\tthe poor duckling\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (the poor duckling, had been the last one out of, his egg) -> the poor duckling (1853ms)\nWhat is Jerry's last name?\tBourbon\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (Bourbon, is added last to avoid, curdling eggs) -> Bourbon (1853ms)\nWhat is Jerry's last name?\tthe Senator\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, jerry) -> (the Senator, was vetoed last year by, Governor Jerry Brown) -> the Senator (1853ms)\nWhat is Jerry's last name?\t?This testing procedure\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (?This testing procedure, was last completed with, eggs) -> ?This testing procedure (1853ms)\nWhat is Jerry's last name?\tThe female\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (The female, was last seen sitting on, the egg) -> The female (1853ms)\nWhat is Jerry's last name?\t11:50\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, jerry) -> (11:50, am Last Tuesday at, the LUG/IP Hardware SIG Jerry) -> 11:50 (1853ms)\nWhat is Jerry's last name?\tThe shots\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (The shots, were made last week at, the Great Easter Egg Hunt) -> The shots (1853ms)\nWhat is Jerry's last name?\tFord\t-0.888888888886\tWhat is Jerry's last name? -> $x: ($x, be last, egg) -> (Ford, was hit last week with, eggs and tomatoes) -> Ford (1853ms)\nWhat is Jerry's last name?\tJack\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (Jack, swallowed the last of, his egg-nog) -> Jack (1857ms)\nWhat is Jerry's last name?\tthe poor Duckling\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (the poor Duckling, had crept last out of, the egg) -> the poor Duckling (1856ms)\nWhat is Jerry's last name?\tCecil\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (Cecil, scooped the last of, his poached egg) -> Cecil (1856ms)\nWhat is Jerry's last name?\tThe egg stage\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (The egg stage, lasts a few weeks in, most butterflies but eggs) -> The egg stage (1857ms)\nWhat is Jerry's last name?\tThe Reds\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, jerry) -> (The Reds, won so much last year with, Jerry Hairston Jr.) -> The Reds (1856ms)\nWhat is Jerry's last name?\t1 10+7 5 8 | 25 Sebastien\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (1 10+7 5 8 | 25 Sebastien, gives a last sad look into, the egg) -> 1 10+7 5 8 | 25 Sebastien (1855ms)\nWhat is Jerry's last name?\tChris\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (Chris, swallowed the last of, his eggs) -> Chris (1855ms)\nWhat is Jerry's last name?\tsperm\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (sperm, lasts longer than, the egg) -> sperm (1856ms)\nWhat is Jerry's last name?\tSiobhan\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, jerry) -> (Siobhan, recounted her last meeting with, Jerry) -> Siobhan (1855ms)\nWhat is Jerry's last name?\tA law\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, jerry) -> (A law, signed last year by, Gov. Jerry Brown) -> A law (1857ms)\nWhat is Jerry's last name?\tThe drop\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (The drop, lasts for, more then 3 eggs) -> The drop (1856ms)\nWhat is Jerry's last name?\tice tea today\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (ice tea today, i have eat the last cake with, milk and eggs) -> ice tea today (1857ms)\nWhat is Jerry's last name?\tEgg Protein\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (Egg Protein, Provides Lasting, Energy Protein-rich eggs) -> Egg Protein (1857ms)\nWhat is Jerry's last name?\tI?ve\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (I?ve, got the last of, the Cadbury Cream Eggs) -> I?ve (1855ms)\nWhat is Jerry's last name?\tTanto\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (Tanto, eat the last half of, the first egg) -> Tanto (1855ms)\nWhat is Jerry's last name?\tthe amount of time\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (the amount of time, to last, your nest egg) -> the amount of time (1857ms)\nWhat is Jerry's last name?\tAtchison\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, jerry) -> (Atchison, spent last week with, Jerry) -> Atchison (1856ms)\nWhat is Jerry's last name?\tViola\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (Viola, scrambled the last of, the eggs) -> Viola (1855ms)\nWhat is Jerry's last name?\tGale\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (Gale, scraped the last of, the egg and meat) -> Gale (1855ms)\nWhat is Jerry's last name?\tthe ants\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (the ants, carry the last of, their eggs) -> the ants (1857ms)\nWhat is Jerry's last name?\tThe Grateful Dead\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, jerry) -> (The Grateful Dead, played their last concert with, Jerry Garcia) -> The Grateful Dead (1856ms)\nWhat is Jerry's last name?\tWe?ll\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (We?ll, add the last of, the egg) -> We?ll (1855ms)\nWhat is Jerry's last name?\tSoul\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (Soul, swallowed the last of, the Eggs , full and happy) -> Soul (1855ms)\nWhat is Jerry's last name?\tHSUS\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (HSUS, conducted last year at, large egg factory farms) -> HSUS (1855ms)\nWhat is Jerry's last name?\tthe earliest\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, jerry) -> (the earliest, follows a decision last week by, Gov. Jerry Brown) -> the earliest (1855ms)\nWhat is Jerry's last name?\tredevelopment agencies\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, jerry) -> (redevelopment agencies, came last year from, Gov. Jerry Brown) -> redevelopment agencies (1857ms)\nWhat is Jerry's last name?\tI?ll\t-1.111111111107\tWhat is Jerry's last name? -> $x: ($x, last, egg) -> (I?ll, have the last of, my egg rolls) -> I?ll (1856ms)\nWhat is Jerry's last name?\tExecutive Director\t-1.111111111108\tWhat is Jerry's last name? -> $x: ($x, leader, jerry) -> (Executive Director, Leaders, Jerry DeWitt) -> Executive Director (1857ms)\nWhat is Jerry's last name?\tthe females\t-1.111111111108\tWhat is Jerry's last name? -> $x: ($x, leader, egg) -> (the females, lay in the terminal leaders, eggs) -> the females (1857ms)\nWhat is Jerry's last name?\t?96 and ?99\t-1.111111111108\tWhat is Jerry's last name? -> $x: ($x, leader, jerry) -> (?96 and ?99, included such distinguished leaders as, Jerry Yang) -> ?96 and ?99 (1857ms)\nWhat is Jerry's last name?\tThe United States\t-1.111111111108\tWhat is Jerry's last name? -> $x: ($x, leader, egg) -> (The United States, is the world leader in, egg production) -> The United States (1857ms)\nWhat is Jerry's last name?\tJerry DeWitt\t-1.111111111108\tWhat is Jerry's last name? -> $x: ($x, leader, jerry) -> (Jerry DeWitt, Leader of, Jerry DeWitt) -> Jerry DeWitt (1857ms)\nWhat is Jerry's last name?\tStock Eggtimus Prime\t-1.111111111108\tWhat is Jerry's last name? -> $x: ($x, leader, egg) -> (Stock Eggtimus Prime, is the heroic leader of, the Auto-Eggs) -> Stock Eggtimus Prime (1857ms)\nWhat is Hong Kong's population?\thongkongs population\t1.333333333335\tWhat is Hong Kong's population? -> $x: ($x, be population of, hong kong) -> (hongkongs population, was the population of, hong kong) -> hongkongs population (1544ms)\nWhat is Hong Kong's population?\tsix million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of approximately, six million) -> six million (2113ms)\nWhat is Hong Kong's population?\t600,000\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of about, 600,000) -> 600,000 (2114ms)\nWhat is Hong Kong's population?\t5,674,114\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of, 5,674,114) -> 5,674,114 (1945ms)\nWhat is Hong Kong's population?\t324.200\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a large foreign population of about, 324.200) -> 324.200 (2114ms)\nWhat is Hong Kong's population?\tmigrant workers\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a huge population of, migrant workers) -> migrant workers (1545ms)\nWhat is Hong Kong's population?\t517 560\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a large foreign population of about, 517 560) -> 517 560 (2416ms)\nWhat is Hong Kong's population?\t6.9 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6.9 million) -> 6.9 million (2113ms)\nWhat is Hong Kong's population?\t247,501\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population density of, 247,501) -> 247,501 (2113ms)\nWhat is Hong Kong's population?\t524 200\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a large foreign population of about, 524 200) -> 524 200 (2417ms)\nWhat is Hong Kong's population?\tbisexuals\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has the world 's largest population of, bisexuals) -> bisexuals (2113ms)\nWhat is Hong Kong's population?\t6,600,000\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6,600,000) -> 6,600,000 (1544ms)\nWhat is Hong Kong's population?\t5.6 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 5.6 million) -> 5.6 million (1945ms)\nWhat is Hong Kong's population?\tBuddhists and Taoists\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a huge population of, Buddhists and Taoists) -> Buddhists and Taoists (2113ms)\nWhat is Hong Kong's population?\tmore than 7.2 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has an population of, more than 7.2 million) -> more than 7.2 million (2417ms)\nWhat is Hong Kong's population?\t6,708,389\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6,708,389) -> 6,708,389 (2114ms)\nWhat is Hong Kong's population?\t6.7 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6.7 million) -> 6.7 million (2416ms)\nWhat is Hong Kong's population?\t6,571 people\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a massive population density of, 6,571 people) -> 6,571 people (2113ms)\nWhat is Hong Kong's population?\t6,855,125 people\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6,855,125 people) -> 6,855,125 people (1545ms)\nWhat is Hong Kong's population?\t4.2 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of, 4.2 million) -> 4.2 million (2113ms)\nWhat is Hong Kong's population?\tseven million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, seven million) -> seven million (1545ms)\nWhat is Hong Kong's population?\t6,970,000\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of about, 6,970,000) -> 6,970,000 (1945ms)\nWhat is Hong Kong's population?\t6 million people\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6 million people) -> 6 million people (2114ms)\nWhat is Hong Kong's population?\tfive\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of, five) -> five (1945ms)\nWhat is Hong Kong's population?\t7 million people\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a total population of just over, 7 million people) -> 7 million people (2113ms)\nWhat is Hong Kong's population?\t6.78 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a total population of, 6.78 million) -> 6.78 million (1945ms)\nWhat is Hong Kong's population?\t4.3 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has an online population of, 4.3 million) -> 4.3 million (2113ms)\nWhat is Hong Kong's population?\t7.3 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 7.3 million) -> 7.3 million (2416ms)\nWhat is Hong Kong's population?\t6.80 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a total population of, 6.80 million) -> 6.80 million (2113ms)\nWhat is Hong Kong's population?\t16,470 persons\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population density of, 16,470 persons) -> 16,470 persons (1544ms)\nWhat is Hong Kong's population?\t7 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (densely populated Hong Kong, has a population of, 7 million) -> 7 million (2417ms)\nWhat is Hong Kong's population?\t6,900,000\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6,900,000) -> 6,900,000 (2416ms)\nWhat is Hong Kong's population?\t10 million\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of over, 10 million) -> 10 million (1945ms)\nWhat is Hong Kong's population?\t6.9 million people\t0.222222222222\tWhat is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6.9 million people) -> 6.9 million people (1945ms)\nWhat is Hong Kong's population?\tThe original movie\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The original movie, was relatively popular in, Hong Kong) -> The original movie (2426ms)\nWhat is Hong Kong's population?\tTrusts\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Trusts, are another popular option in, Hong Kong) -> Trusts (2434ms)\nWhat is Hong Kong's population?\tfuture more food\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (future more food, could be imported into, Hong Kong) -> future more food (2440ms)\nWhat is Hong Kong's population?\tRadio\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Radio, is an incredibly popular medium in, Hong Kong) -> Radio (2453ms)\nWhat is Hong Kong's population?\tWatsons Water\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Watsons Water, is popular in, Hong Kong) -> Watsons Water (2450ms)\nWhat is Hong Kong's population?\tFacebook\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Facebook, is extremely popular in, Hong Kong) -> Facebook (2440ms)\nWhat is Hong Kong's population?\tfabric\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fabric, imported from, Hong Kong) -> fabric (2450ms)\nWhat is Hong Kong's population?\tgay magazines\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (gay magazines, imported from, Hong Kong) -> gay magazines (2430ms)\nWhat is Hong Kong's population?\talternative health care\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (alternative health care, is getting more popular in, Hong Kong) -> alternative health care (2434ms)\nWhat is Hong Kong's population?\tfins\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fins, imported to, Hong Kong) -> fins (2453ms)\nWhat is Hong Kong's population?\tXeloda\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Xeloda, imported into, Hong Kong) -> Xeloda (2426ms)\nWhat is Hong Kong's population?\tthe Korean noodle\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (the Korean noodle, is very popular in, Hong Kong) -> the Korean noodle (2450ms)\nWhat is Hong Kong's population?\t2007\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (2007, is very popular in, Hong Kong) -> 2007 (2447ms)\nWhat is Hong Kong's population?\tLatte art\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Latte art, is hugely popular in, Hong Kong) -> Latte art (2440ms)\nWhat is Hong Kong's population?\ta Cantonese noodle dish\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (a Cantonese noodle dish, is popular in, Hong Kong) -> a Cantonese noodle dish (2450ms)\nWhat is Hong Kong's population?\tFootball\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Football, is a popular sport in, Hong Kong) -> Football (2434ms)\nWhat is Hong Kong's population?\tthe formula\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the formula, had been imported into, Hong Kong) -> the formula (2453ms)\nWhat is Hong Kong's population?\tSanrio characters\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Sanrio characters, are very popular in, Hong Kong) -> Sanrio characters (2437ms)\nWhat is Hong Kong's population?\tkm Go! Category\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (km Go! Category, imported in, Hong Kong) -> km Go! Category (2430ms)\nWhat is Hong Kong's population?\tthe brands\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (the brands, are popular in, Hong Kong) -> the brands (2453ms)\nWhat is Hong Kong's population?\tLantau\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Lantau, is twice the size of, Hong Kong island) -> Lantau (2450ms)\nWhat is Hong Kong's population?\tThailand\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Thailand, is popular in, Hong Kong) -> Thailand (2422ms)\nWhat is Hong Kong's population?\tCauseway Bay\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Causeway Bay, is a popular shopping areas in, Hong Kong) -> Causeway Bay (2430ms)\nWhat is Hong Kong's population?\tMumbai\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size be, hong kong) -> (Mumbai, is 4 times the size of, Hong Kong) -> Mumbai (2453ms)\nWhat is Hong Kong's population?\tOne KOLOR\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (One KOLOR, is a popular rock band in, Hong Kong) -> One KOLOR (2453ms)\nWhat is Hong Kong's population?\tshark fins\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (shark fins, were imported into, Hong Kong) -> shark fins (2447ms)\nWhat is Hong Kong's population?\t1.5mn people\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size be, hong kong) -> (1.5mn people, is twice the size of, Hong Kong Island) -> 1.5mn people (2448ms)\nWhat is Hong Kong's population?\tmusic CD?s\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (music CD?s, have been imported from, Hong Kong) -> music CD?s (2434ms)\nWhat is Hong Kong's population?\tFoshan\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Foshan, is very popular in, Hong Kong) -> Foshan (2430ms)\nWhat is Hong Kong's population?\tevery single container\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (every single container, imported into, Hong Kong) -> every single container (2447ms)\nWhat is Hong Kong's population?\tVietnam?s gold\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Vietnam?s gold, is imported from, Hong Kong) -> Vietnam?s gold (2422ms)\nWhat is Hong Kong's population?\trows\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (rows, is a popular bread in, Hong Kong) -> rows (2448ms)\nWhat is Hong Kong's population?\t22,965 boxes\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (22,965 boxes, had been imported into, Hong Kong) -> 22,965 boxes (2453ms)\nWhat is Hong Kong's population?\tTwo replica trams\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Two replica trams, imported from, Hong Kong) -> Two replica trams (2426ms)\nWhat is Hong Kong's population?\tfood chelonians\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (food chelonians, was imported to, Hong Kong) -> food chelonians (2430ms)\nWhat is Hong Kong's population?\tHiking and camping\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Hiking and camping, are popular outdoor activities in, Hong Kong) -> Hiking and camping (2422ms)\nWhat is Hong Kong's population?\tSnake Snake meat soup\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Snake Snake meat soup, is a popular dish in, Hong Kong) -> Snake Snake meat soup (2430ms)\nWhat is Hong Kong's population?\tsale\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (sale, is effected in, Hong Kong) -> sale (2426ms)\nWhat is Hong Kong's population?\tthe cook\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the cook, imported from, Hong Kong) -> the cook (2450ms)\nWhat is Hong Kong's population?\tthe major items\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the major items, imported into, Hong Kong) -> the major items (2453ms)\nWhat is Hong Kong's population?\tAir-conditioning\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Air-conditioning, is very popular in, Hong Kong) -> Air-conditioning (2430ms)\nWhat is Hong Kong's population?\tSmaller amount\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Smaller amount, were imported from, Hong Kong and Thailand) -> Smaller amount (2453ms)\nWhat is Hong Kong's population?\tHiking\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Hiking, is a very popular sport in, Hong Kong) -> Hiking (2453ms)\nWhat is Hong Kong's population?\tThe show\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The show, was very popular in, Hong Kong) -> The show (2422ms)\nWhat is Hong Kong's population?\tBoard lot\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Board lot, sizes for, Hong Kong exchanges) -> Board lot (2437ms)\nWhat is Hong Kong's population?\tthe West\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the West, suddenly began importing, Hong Kong films) -> the West (2434ms)\nWhat is Hong Kong's population?\tfortune cookies\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fortune cookies, were reportedly imported into, Hong Kong) -> fortune cookies (2430ms)\nWhat is Hong Kong's population?\tThe project\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size, hong kong) -> (The project, is twice the size of, Hong Kong Island) -> The project (2448ms)\nWhat is Hong Kong's population?\tGas application\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Gas application, is very popular in, Hong Kong) -> Gas application (2450ms)\nWhat is Hong Kong's population?\tGinseng\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Ginseng, was imported into, Hong Kong ,most) -> Ginseng (2453ms)\nWhat is Hong Kong's population?\tthe EU\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (the EU, have an effect on, Hong Kong) -> the EU (2450ms)\nWhat is Hong Kong's population?\tThe DTA\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (The DTA, will have effect in, Hong Kong) -> The DTA (2426ms)\nWhat is Hong Kong's population?\twantan use\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (wantan use, is very popular in, Hong Kong) -> wantan use (2437ms)\nWhat is Hong Kong's population?\tKanban\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Kanban, is quite popular here in, Hong Kong) -> Kanban (2422ms)\nWhat is Hong Kong's population?\tThe in-store bakery\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The in-store bakery, is a popular service in, the Hong Kong) -> The in-store bakery (2430ms)\nWhat is Hong Kong's population?\tChina\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (China, imported from, Hong Kong) -> China (2437ms)\nWhat is Hong Kong's population?\tThe new proposals\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The new proposals, are likely to be popular in, Hong Kong) -> The new proposals (2447ms)\nWhat is Hong Kong's population?\tone hundred tons\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (one hundred tons, were imported into, Hong Kong) -> one hundred tons (2434ms)\nWhat is Hong Kong's population?\tThe goods\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The goods, were imported from, Hong Kong) -> The goods (2450ms)\nWhat is Hong Kong's population?\tDesserts\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Desserts, are very popular in, Hong Kong) -> Desserts (2450ms)\nWhat is Hong Kong's population?\tthe goods concerend\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the goods concerend, will be imported into, Hong Kong) -> the goods concerend (2437ms)\nWhat is Hong Kong's population?\tcheesecake\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (cheesecake, is popular in, Hong Kong) -> cheesecake (2440ms)\nWhat is Hong Kong's population?\tLantau Island\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size be, hong kong) -> (Lantau Island, is a lamost twice the size of, Hong Kong island) -> Lantau Island (2450ms)\nWhat is Hong Kong's population?\tpurchase\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (purchase, is effected in, Hong Kong) -> purchase (2422ms)\nWhat is Hong Kong's population?\tthe project\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size, hong kong) -> (the project, is almost twice the size of, Hong Kong Island) -> the project (2437ms)\nWhat is Hong Kong's population?\tOne Korean TV series\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (One Korean TV series, has been so popular in, Hong Kong) -> One Korean TV series (2453ms)\nWhat is Hong Kong's population?\tmusic CD\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (music CD, have been imported from, Hong Kong) -> music CD (2437ms)\nWhat is Hong Kong's population?\tLive music bands\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Live music bands, are also very popular in, Hong Kong) -> Live music bands (2437ms)\nWhat is Hong Kong's population?\tegg noodles\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (egg noodles, imported from, Hong Kong) -> egg noodles (2448ms)\nWhat is Hong Kong's population?\ta national award\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (a national award, is now popular in, Hong Kong) -> a national award (2426ms)\nWhat is Hong Kong's population?\tFoxy\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Foxy, is popular in, Hong Kong) -> Foxy (2426ms)\nWhat is Hong Kong's population?\tService\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (Service, can be effected in, Hong Kong) -> Service (2434ms)\nWhat is Hong Kong's population?\tsnake meat\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (snake meat, is a popular delicacy in, Hong Kong) -> snake meat (2426ms)\nWhat is Hong Kong's population?\tThe Peak\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The Peak, is the most popular tourist attraction in, Hong Kong) -> The Peak (2437ms)\nWhat is Hong Kong's population?\tChaozhou\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Chaozhou, were popular in, Hong Kong) -> Chaozhou (2437ms)\nWhat is Hong Kong's population?\tMandarin\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mandarin, is becoming more popular in, Hong Kong) -> Mandarin (2422ms)\nWhat is Hong Kong's population?\tSnake soup\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Snake soup, is quite popular here in, Hong Kong) -> Snake soup (2440ms)\nWhat is Hong Kong's population?\tapparel sourcing\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (apparel sourcing, has had a knock-on effect on, Hong Kong) -> apparel sourcing (2448ms)\nWhat is Hong Kong's population?\tThe noodles\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The noodles, were imported from, Hong Kong) -> The noodles (2440ms)\nWhat is Hong Kong's population?\tThe 2008 elections\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The 2008 elections, are very popular in, Hong Kong) -> The 2008 elections (2444ms)\nWhat is Hong Kong's population?\tChiu Chow cuisine\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Chiu Chow cuisine, is very popular in, Hong Kong) -> Chiu Chow cuisine (2440ms)\nWhat is Hong Kong's population?\ta city\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size, hong kong) -> (a city, will be twice the size of, Hong Kong) -> a city (2440ms)\nWhat is Hong Kong's population?\tforce\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (force, will have effect in, Hong Kong) -> force (2426ms)\nWhat is Hong Kong's population?\tDim Sum Dim Sum\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Dim Sum Dim Sum, is perhaps the most popular dish in, Hong Kong) -> Dim Sum Dim Sum (2457ms)\nWhat is Hong Kong's population?\ta fish\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (a fish, was imported from, Hong Kong) -> a fish (2430ms)\nWhat is Hong Kong's population?\tWaterfront\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Waterfront, covers an area twice the size of, Hong Kong) -> Waterfront (2440ms)\nWhat is Hong Kong's population?\tChrysanthemum flowers\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Chrysanthemum flowers, is very popular in, Hong Kong) -> Chrysanthemum flowers (2434ms)\nWhat is Hong Kong's population?\tMr. Zhang\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mr. Zhang, is particularly popular in, Hong Kong) -> Mr. Zhang (2448ms)\nWhat is Hong Kong's population?\tBaby doll clothes\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Baby doll clothes, are very popular now in, Hong Kong) -> Baby doll clothes (2440ms)\nWhat is Hong Kong's population?\tthe nutritional supplements\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (the nutritional supplements, are very popular in, Hong Kong) -> the nutritional supplements (2450ms)\nWhat is Hong Kong's population?\ttea\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (tea, is a popular beverage in, Hong Kong) -> tea (2440ms)\nWhat is Hong Kong's population?\tA popular export San Miguel\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (A popular export San Miguel, is popular in, Hong Kong) -> A popular export San Miguel (2422ms)\nWhat is Hong Kong's population?\tGambling\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Gambling, is a hugely popular activity in, Hong Kong) -> Gambling (2440ms)\nWhat is Hong Kong's population?\tthe contracts of purchase and sale\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (the contracts of purchase and sale, are effected in, Hong Kong) -> the contracts of purchase and sale (2437ms)\nWhat is Hong Kong's population?\tred bean ice cream\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (red bean ice cream, is especially popular in, Hong Kong) -> red bean ice cream (2447ms)\nWhat is Hong Kong's population?\tpurchase and sale\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (purchase and sale, are effected in, Hong Kong) -> purchase and sale (2447ms)\nWhat is Hong Kong's population?\tmen?s tennis\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (men?s tennis, is a popular event in, Hong Kong) -> men?s tennis (2430ms)\nWhat is Hong Kong's population?\talternative therapies\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (alternative therapies, are becoming more popular in, Hong Kong) -> alternative therapies (2430ms)\nWhat is Hong Kong's population?\ttips\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (tips, are the most popular Sports in, Hong Kong) -> tips (2437ms)\nWhat is Hong Kong's population?\tTDEC\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (TDEC, would have positive effects on, Hong Kong) -> TDEC (2426ms)\nWhat is Hong Kong's population?\tThe crackers\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The crackers, were imported from, Hong Kong) -> The crackers (2434ms)\nWhat is Hong Kong's population?\tThe product\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The product, was imported from, Hong Kong) -> The product (2440ms)\nWhat is Hong Kong's population?\tthe original furnishings\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the original furnishings, were imported from, Hong Kong) -> the original furnishings (2453ms)\nWhat is Hong Kong's population?\tacrylics\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (acrylics, are also popular in, Hong Kong) -> acrylics (2440ms)\nWhat is Hong Kong's population?\tan offense\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (an offense, to import, copies of the Hong Kong-based magazine) -> an offense (2434ms)\nWhat is Hong Kong's population?\tMahjong\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mahjong, is extremely popular in, Hong Kong) -> Mahjong (2434ms)\nWhat is Hong Kong's population?\tDragonball and Slam Dunk\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Dragonball and Slam Dunk, are especially popular in, Hong Kong) -> Dragonball and Slam Dunk (2434ms)\nWhat is Hong Kong's population?\tTarm Sarm Choy Lee Fut\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Tarm Sarm Choy Lee Fut, is especially popular in, Hong Kong) -> Tarm Sarm Choy Lee Fut (2448ms)\nWhat is Hong Kong's population?\texperience\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (experience, are imported from, Hong Kong) -> experience (2448ms)\nWhat is Hong Kong's population?\tthe seeds\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the seeds, are imported from, Hong Kong) -> the seeds (2440ms)\nWhat is Hong Kong's population?\tSilicon Valley\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Silicon Valley, was recently imported to, Hong Kong) -> Silicon Valley (2453ms)\nWhat is Hong Kong's population?\tone import licence\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (one import licence, may be imported into, Hong Kong) -> one import licence (2453ms)\nWhat is Hong Kong's population?\tlive music\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (live music, IS popular in, Hong Kong) -> live music (2430ms)\nWhat is Hong Kong's population?\tThe following goods\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The following goods, may be imported into, Hong Kong) -> The following goods (2450ms)\nWhat is Hong Kong's population?\tJapanese culture\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Japanese culture, is popular in, Hong Kong) -> Japanese culture (2447ms)\nWhat is Hong Kong's population?\tthe wine\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the wine, imported into, Hong Kong) -> the wine (2422ms)\nWhat is Hong Kong's population?\ta covered warrant\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (a covered warrant, are very popular in, Hong Kong) -> a covered warrant (2437ms)\nWhat is Hong Kong's population?\tradius\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, size, hong kong) -> (radius, is roughly the size of, Hong Kong Island) -> radius (2427ms)\nWhat is Hong Kong's population?\tSmaller amounts\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Smaller amounts, were also imported from, Hong Kong) -> Smaller amounts (2453ms)\nWhat is Hong Kong's population?\tproducts\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (products, have previously been imported into, Hong Kong) -> products (2426ms)\nWhat is Hong Kong's population?\tan offence\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (an offence, import into, Hong Kong consumer goods) -> an offence (2448ms)\nWhat is Hong Kong's population?\tsmall North Korean submarines\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, import, hong kong) -> (small North Korean submarines, was imported through, Hong Kong) -> small North Korean submarines (2450ms)\nWhat is Hong Kong's population?\thot pot\t-1.1111111111229999\tWhat is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (hot pot, is popular in, Hong Kong) -> hot pot (2450ms)\nWhat is Hong Kong's population?\tthe fins\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, alone imported, the fins) -> the fins (2459ms)\nWhat is Hong Kong's population?\t30,656.6 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 30,656.6 t) -> 30,656.6 t (2457ms)\nWhat is Hong Kong's population?\t10,414.7 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 10,414.7 t) -> 10,414.7 t (2459ms)\nWhat is Hong Kong's population?\tclearance process\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong customs import declarations, import, clearance process) -> clearance process (2465ms)\nWhat is Hong Kong's population?\tU.S. beef\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned imports of, U.S. beef) -> U.S. beef (2459ms)\nWhat is Hong Kong's population?\tthe U.S.\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, were imported to, the U.S.) -> the U.S. (2465ms)\nWhat is Hong Kong's population?\tCanada\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, was increasing imports from, Canada) -> Canada (2464ms)\nWhat is Hong Kong's population?\tthe one-child policy\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, examines the effects of, the one-child policy) -> the one-child policy (2462ms)\nWhat is Hong Kong's population?\tfirearms\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, bans imports of, firearms) -> firearms (2462ms)\nWhat is Hong Kong's population?\tLearner\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (the Hong Kong Native English Scheme, have an Effect on, Learner) -> Learner (2457ms)\nWhat is Hong Kong's population?\t2.5m and China\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, 2.5m and China) -> 2.5m and China (2464ms)\nWhat is Hong Kong's population?\t1996\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned beef imports in, 1996) -> 1996 (2459ms)\nWhat is Hong Kong's population?\t10,502.1 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 10,502.1 t) -> 10,502.1 t (2465ms)\nWhat is Hong Kong's population?\tMarch 1\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, will take effect on, March 1) -> March 1 (2464ms)\nWhat is Hong Kong's population?\t17,933,550 thousand cigarettes\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 17,933,550 thousand cigarettes) -> 17,933,550 thousand cigarettes (2464ms)\nWhat is Hong Kong's population?\t172,669.5 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 172,669.5 t) -> 172,669.5 t (2463ms)\nWhat is Hong Kong's population?\tfever\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, did have a cooling effect on, fever) -> fever (2465ms)\nWhat is Hong Kong's population?\t3,561.5 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 3,561.5 t) -> 3,561.5 t (2465ms)\nWhat is Hong Kong's population?\t1.2 million packs\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported over, 1.2 million packs) -> 1.2 million packs (2463ms)\nWhat is Hong Kong's population?\tpoultry\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, have banned imports of, poultry) -> poultry (2463ms)\nWhat is Hong Kong's population?\t1,907,519 thousand\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 1,907,519 thousand) -> 1,907,519 thousand (2457ms)\nWhat is Hong Kong's population?\tsafety net\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, size, $x) -> (Hong Kong, sized, safety net) -> safety net (2464ms)\nWhat is Hong Kong's population?\tweight loss\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (louis vuitton hong kong, can achieve the effect of, weight loss) -> weight loss (2462ms)\nWhat is Hong Kong's population?\tRussia\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (Hong Kong Ping-pong, is very popular in, Russia) -> Russia (2463ms)\nWhat is Hong Kong's population?\t28,000 tonnes\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported about, 28,000 tonnes) -> 28,000 tonnes (2463ms)\nWhat is Hong Kong's population?\ta large portion\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (The Hong Kong SAR, will continue to import, a large portion) -> a large portion (2464ms)\nWhat is Hong Kong's population?\tacupuncture\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, was researching the effects of, acupuncture) -> acupuncture (2459ms)\nWhat is Hong Kong's population?\tpoultry meat\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, stopped imports of, poultry meat) -> poultry meat (2460ms)\nWhat is Hong Kong's population?\tHK$ 163,000,000 worth\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, HK$ 163,000,000 worth) -> HK$ 163,000,000 worth (2463ms)\nWhat is Hong Kong's population?\t981,811.6 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 981,811.6 t) -> 981,811.6 t (2461ms)\nWhat is Hong Kong's population?\t198,433.7 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 198,433.7 t) -> 198,433.7 t (2464ms)\nWhat is Hong Kong's population?\tBritain\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned beef imports from, Britain) -> Britain (2464ms)\nWhat is Hong Kong's population?\tDiocese\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, size, $x) -> (Anglican Diocese of Hong Kong Island, Size or Type, Diocese) -> Diocese (2457ms)\nWhat is Hong Kong's population?\tmainland China\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, can be imported into, mainland China) -> mainland China (2457ms)\nWhat is Hong Kong's population?\tequipment and technology\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, facilitates the import of, equipment and technology) -> equipment and technology (2459ms)\nWhat is Hong Kong's population?\tEGCG\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, examined the effect of, EGCG) -> EGCG (2457ms)\nWhat is Hong Kong's population?\tdistribution\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong companies, can be imported for, distribution) -> distribution (2457ms)\nWhat is Hong Kong's population?\tApril 1998\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, also take retrospective effect to, April 1998) -> April 1998 (2457ms)\nWhat is Hong Kong's population?\tAustralia\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, is importing from, Australia) -> Australia (2459ms)\nWhat is Hong Kong's population?\t11,662 tons\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, 11,662 tons) -> 11,662 tons (2464ms)\nWhat is Hong Kong's population?\t3.8 %\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 3.8 %) -> 3.8 % (2465ms)\nWhat is Hong Kong's population?\ta family\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, size, $x) -> (The Hong Kong Disneyland, is just the right size for, a family) -> a family (2460ms)\nWhat is Hong Kong's population?\twater\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports a lot of, water) -> water (2464ms)\nWhat is Hong Kong's population?\tshark fin\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, should ban the import of, shark fin) -> shark fin (2459ms)\nWhat is Hong Kong's population?\t90 %\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 90 %) -> 90 % (2464ms)\nWhat is Hong Kong's population?\tUS$ 17 million worth\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported over, US$ 17 million worth) -> US$ 17 million worth (2459ms)\nWhat is Hong Kong's population?\tmusical training\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, analyzed the effect of, musical training) -> musical training (2464ms)\nWhat is Hong Kong's population?\tprogressive relaxation\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, compared the effects of, progressive relaxation) -> progressive relaxation (2457ms)\nWhat is Hong Kong's population?\t90 percent\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, now imports up to, 90 percent) -> 90 percent (2457ms)\nWhat is Hong Kong's population?\tthe smog\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, the smog) -> the smog (2459ms)\nWhat is Hong Kong's population?\tpieces\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong/Korean, imported, pieces) -> pieces (2462ms)\nWhat is Hong Kong's population?\t80 %\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, has to import, 80 %) -> 80 % (2463ms)\nWhat is Hong Kong's population?\tAsia\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (Hong Kong films, has been popular in, Asia) -> Asia (2459ms)\nWhat is Hong Kong's population?\tUS$ 333 million worth\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, US$ 333 million worth) -> US$ 333 million worth (2459ms)\nWhat is Hong Kong's population?\tinternet users\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, may still have an effect on, internet users) -> internet users (2464ms)\nWhat is Hong Kong's population?\tlast year\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, blocked imports of turbot, last year) -> last year (2463ms)\nWhat is Hong Kong's population?\theat and stress\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, monitored the effects of, heat and stress) -> heat and stress (2465ms)\nWhat is Hong Kong's population?\t2,216.5 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 2,216.5 t) -> 2,216.5 t (2464ms)\nWhat is Hong Kong's population?\t687.8 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 687.8 t) -> 687.8 t (2457ms)\nWhat is Hong Kong's population?\t1.6 million 40-pound boxes\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, 1.6 million 40-pound boxes) -> 1.6 million 40-pound boxes (2465ms)\nWhat is Hong Kong's population?\t269.2 t\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 269.2 t) -> 269.2 t (2463ms)\nWhat is Hong Kong's population?\tthe Golden Triangle region\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, were imported into, the Golden Triangle region) -> the Golden Triangle region (2462ms)\nWhat is Hong Kong's population?\tturbot\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, blocked imports of, turbot) -> turbot (2462ms)\nWhat is Hong Kong's population?\t95 %\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 95 %) -> 95 % (2457ms)\nWhat is Hong Kong's population?\tKorea\t-2.444444444454\tWhat is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (addition Hong Kong movies, are popular in, Korea) -> Korea (2464ms)\nWho is the Greek God of the Sea?\tPomona Poseidon Poseidon\t1.333333333332\tWho is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Pomona Poseidon Poseidon, was the Greek god of, the sea) -> Pomona Poseidon Poseidon (2223ms)\nWho is the Greek God of the Sea?\tOkeanos\t1.333333333332\tWho is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Okeanos, [is] a Greek god of, sea and water) -> Okeanos (2400ms)\nWho is the Greek God of the Sea?\tNeptune\t1.333333333332\tWho is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Neptune, [is] the Greek god of, the sea) -> Neptune (2223ms)\nWho is the Greek God of the Sea?\tPoseidon\t1.333333333332\tWho is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Poseidon, [is] the Greek god of, the sea and storms) -> Poseidon (2400ms)\nWho is the Greek God of the Sea?\tProteus\t1.333333333332\tWho is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Proteus, [is] a Greek god of, the sea) -> Proteus (2400ms)\nWho is the Greek God of the Sea?\ttreatments?thalassa\t1.22222222222\tWho is the Greek God of the Sea? -> $x: ($x, be greek word for, sea) -> (treatments?thalassa, is the Greek word for, sea?that) -> treatments?thalassa (2400ms)\nWho is the Greek God of the Sea?\tThalassa\t1.22222222222\tWho is the Greek God of the Sea? -> $x: ($x, be greek word for, sea) -> (Thalassa, is the ancient Greek word for, sea) -> Thalassa (2400ms)\nWho is the Greek God of the Sea?\tLlyr\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Llyr, is God of, the Sea) -> Llyr (3329ms)\nWho is the Greek God of the Sea?\tPontus kingdom Poseidon Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Pontus kingdom Poseidon Poseidon, was the god of, the Sea) -> Pontus kingdom Poseidon Poseidon (2554ms)\nWho is the Greek God of the Sea?\tRoman mythology Neptune\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Roman mythology Neptune, was the god of, the sea) -> Roman mythology Neptune (3499ms)\nWho is the Greek God of the Sea?\ta magician\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (a magician, is called god of, the sea) -> a magician (3329ms)\nWho is the Greek God of the Sea?\tworshiped Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (worshiped Poseidon, [is] god of, the sea) -> worshiped Poseidon (2574ms)\nWho is the Greek God of the Sea?\tPoseidon Poseidon Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Poseidon Poseidon Poseidon, was the god of, the sea) -> Poseidon Poseidon Poseidon (2626ms)\nWho is the Greek God of the Sea?\tThe god Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (The god Poseidon, [is] god of, the sea) -> The god Poseidon (3514ms)\nWho is the Greek God of the Sea?\tTyr\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Tyr, is god of, the sea) -> Tyr (2626ms)\nWho is the Greek God of the Sea?\tAthena and Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Athena and Poseidon, [is] the god of, the sea) -> Athena and Poseidon (3173ms)\nWho is the Greek God of the Sea?\tNjord\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Njord, [is] god of, the sea) -> Njord (3498ms)\nWho is the Greek God of the Sea?\tPoseidon Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Poseidon Poseidon, was the god of, the sea) -> Poseidon Poseidon (3498ms)\nWho is the Greek God of the Sea?\tVaruna\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Varuna, [is] the god of, the sea) -> Varuna (3172ms)\nWho is the Greek God of the Sea?\tGreek and Roman mythology\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Greek and Roman mythology, is the god of, the sea) -> Greek and Roman mythology (2575ms)\nWho is the Greek God of the Sea?\tManannan mac Lir\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Manannan mac Lir, [is] the god of, the sea) -> Manannan mac Lir (3498ms)\nWho is the Greek God of the Sea?\tthe Greek god Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (the Greek god Poseidon, [is] the god of, the sea) -> the Greek god Poseidon (3351ms)\nWho is the Greek God of the Sea?\tOlokun\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Olokun, [is] god of, the sea) -> Olokun (2574ms)\nWho is the Greek God of the Sea?\t?Nereus\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (?Nereus, was a god of, the sea) -> ?Nereus (3173ms)\nWho is the Greek God of the Sea?\tTriton\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Triton, [is] the god of, the sea) -> Triton (3514ms)\nWho is the Greek God of the Sea?\tDylan\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Dylan, was the God of, the Sea) -> Dylan (3514ms)\nWho is the Greek God of the Sea?\tPisces\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Pisces, is the god of, sea) -> Pisces (3514ms)\nWho is the Greek God of the Sea?\tHea\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Hea, was the god of, the sea) -> Hea (2554ms)\nWho is the Greek God of the Sea?\tTangaroa\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Tangaroa, is the god of, the sea) -> Tangaroa (3351ms)\nWho is the Greek God of the Sea?\tManannan\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Manannan, [is] god of, the sea) -> Manannan (3173ms)\nWho is the Greek God of the Sea?\tKanaloa\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Kanaloa, was the god of, the sea) -> Kanaloa (3514ms)\nWho is the Greek God of the Sea?\tNereus\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Nereus, is the God of, Sea) -> Nereus (3351ms)\nWho is the Greek God of the Sea?\tAegir Aegir\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Aegir Aegir, is the god of, the sea) -> Aegir Aegir (3514ms)\nWho is the Greek God of the Sea?\t? Tangaroa?\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (? Tangaroa?, is the God of, the sea) -> ? Tangaroa? (3248ms)\nWho is the Greek God of the Sea?\tMananan\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Mananan, [is] the god of, the sea) -> Mananan (2440ms)\nWho is the Greek God of the Sea?\tNeptune Neptune\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Neptune Neptune, is the God of, the Seas) -> Neptune Neptune (2626ms)\nWho is the Greek God of the Sea?\tGlaucus\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Glaucus, [is] god of, the sea) -> Glaucus (2574ms)\nWho is the Greek God of the Sea?\tAgwe\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Agwe, [is] god of, the sea) -> Agwe (3172ms)\nWho is the Greek God of the Sea?\tBrahadair\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Brahadair, [is] god of, the sea) -> Brahadair (2574ms)\nWho is the Greek God of the Sea?\tBasque\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Basque, [is] god of, the sea) -> Basque (3498ms)\nWho is the Greek God of the Sea?\tLiranan\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Liranan, [is] the god of, the sea) -> Liranan (3498ms)\nWho is the Greek God of the Sea?\tKing Neptune\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (King Neptune, [is] god of, the sea) -> King Neptune (3248ms)\nWho is the Greek God of the Sea?\tYamm\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Yamm, [is] the god of, the sea) -> Yamm (3329ms)\nWho is the Greek God of the Sea?\tEa or Hea\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Ea or Hea, was the god of, the sea) -> Ea or Hea (3514ms)\nWho is the Greek God of the Sea?\tMannan mac Lyr\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Mannan mac Lyr, was a God of, the sea) -> Mannan mac Lyr (3329ms)\nWho is the Greek God of the Sea?\tDewa Baruna\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Dewa Baruna, [is] god of, the seas) -> Dewa Baruna (3515ms)\nWho is the Greek God of the Sea?\tNjordur\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Njordur, is the god of, the sea) -> Njordur (3498ms)\nWho is the Greek God of the Sea?\tNEPTUNE Neptune\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (NEPTUNE Neptune, is the god of, the sea) -> NEPTUNE Neptune (2440ms)\nWho is the Greek God of the Sea?\t?gir\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (?gir, [is] the god of, the sea) -> ?gir (3499ms)\nWho is the Greek God of the Sea?\tAegir\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Aegir, [is] god of, the sea) -> Aegir (3173ms)\nWho is the Greek God of the Sea?\tthe most feared Gods\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (the most feared Gods, was the God of, the sea) -> the most feared Gods (3498ms)\nWho is the Greek God of the Sea?\tPosiedon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Posiedon, [is] god of, the sea) -> Posiedon (2625ms)\nWho is the Greek God of the Sea?\tthe Greek Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (the Greek Poseidon, [is] the god of, the sea) -> the Greek Poseidon (3514ms)\nWho is the Greek God of the Sea?\tthe behemothic squid\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (the behemothic squid, is god of, the sea) -> the behemothic squid (3248ms)\nWho is the Greek God of the Sea?\tGreek mythology\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Greek mythology, [is] god of, the sea) -> Greek mythology (3514ms)\nWho is the Greek God of the Sea?\tNeptunus\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Neptunus, [is] god of, the sea) -> Neptunus (3514ms)\nWho is the Greek God of the Sea?\tPosideon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Posideon, [is] god of, the sea) -> Posideon (2574ms)\nWho is the Greek God of the Sea?\tAEGIR Aegir\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (AEGIR Aegir, is the god of, the sea) -> AEGIR Aegir (3351ms)\nWho is the Greek God of the Sea?\tVarunan\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Varunan, is god of, sea land) -> Varunan (2626ms)\nWho is the Greek God of the Sea?\tSize Poseidon\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Size Poseidon, is the god of, the sea) -> Size Poseidon (2625ms)\nWho is the Greek God of the Sea?\tLyr\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Lyr, was the god of, the sea) -> Lyr (3351ms)\nWho is the Greek God of the Sea?\tVesta\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Vesta, was the god of, the sea) -> Vesta (3498ms)\nWho is the Greek God of the Sea?\tZeus\t1.0\tWho is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Zeus, is the god of, the sea) -> Zeus (3514ms)\nWho is the Greek God of the Sea?\terythra thalassa\t0.8888888888879999\tWho is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (erythra thalassa, is Greek for, ? Sea?) -> erythra thalassa (3520ms)\nWho is the Greek God of the Sea?\tAsphaltitis\t0.8888888888879999\tWho is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (Asphaltitis, is the Greek name for, Dead Sea) -> Asphaltitis (3514ms)\nWho is the Greek God of the Sea?\t?Thalassa?\t0.8888888888879999\tWho is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (?Thalassa?, is Greek for, \" sea) -> ?Thalassa? (3520ms)\nWho is the Greek God of the Sea?\tAlcyone\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Alcyone, is the goddess of, the sea) -> Alcyone (3546ms)\nWho is the Greek God of the Sea?\tTaiwanese 14 May 07 Matzu\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Taiwanese 14 May 07 Matzu, is the goddess of, the sea and she?s) -> Taiwanese 14 May 07 Matzu (3534ms)\nWho is the Greek God of the Sea?\tBrizo\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Brizo, is a goddess of, the sea) -> Brizo (3534ms)\nWho is the Greek God of the Sea?\tTinker\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Tinker, effected, a sea change) -> Tinker (3545ms)\nWho is the Greek God of the Sea?\tglobal temperature\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (global temperature, have far-reaching effects on, sea level) -> global temperature (3534ms)\nWho is the Greek God of the Sea?\tpersonality\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (personality, is required to effect, sea changes) -> personality (3520ms)\nWho is the Greek God of the Sea?\tThe bottom image\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The bottom image, shows the effect on, sea level) -> The bottom image (3525ms)\nWho is the Greek God of the Sea?\trel=shortlink Matzu\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (rel=shortlink Matzu, is the goddess of, the sea and she?s) -> rel=shortlink Matzu (3525ms)\nWho is the Greek God of the Sea?\tNsambakalunga\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Nsambakalunga, is an African Goddess of, the seas) -> Nsambakalunga (3525ms)\nWho is the Greek God of the Sea?\tcharged ions\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (charged ions, effects the physical properties of, sea water) -> charged ions (3525ms)\nWho is the Greek God of the Sea?\tland mass form\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (land mass form, will have more significant effects on, sea level) -> land mass form (3549ms)\nWho is the Greek God of the Sea?\tYemaya\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemaya, is the Goddess of, the sea) -> Yemaya (3545ms)\nWho is the Greek God of the Sea?\t2007\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (2007, addressed the effect on, sea level rise) -> 2007 (3549ms)\nWho is the Greek God of the Sea?\tThe report\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The report, said the effects of, sea level rise) -> The report (3545ms)\nWho is the Greek God of the Sea?\tprow\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (prow, has a similar effect on, seas) -> prow (3525ms)\nWho is the Greek God of the Sea?\t90 minutes\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (90 minutes, Experience the rejuvenating effects of, the sea) -> 90 minutes (3542ms)\nWho is the Greek God of the Sea?\torder\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (order, replicate the effect of, the long sea voyages) -> order (3542ms)\nWho is the Greek God of the Sea?\tBaveras\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Baveras, is the Santharian Goddess of, the Sea) -> Baveras (3549ms)\nWho is the Greek God of the Sea?\tthe deep oceans\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the deep oceans, would have disastrous effects on, sea life) -> the deep oceans (3529ms)\nWho is the Greek God of the Sea?\tcoastal fog\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (coastal fog, are all effects of, land and sea breezes) -> coastal fog (3542ms)\nWho is the Greek God of the Sea?\tDr. J. Arndt\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Dr. J. Arndt, studied the effect of, Dead Sea salt baths) -> Dr. J. Arndt (3530ms)\nWho is the Greek God of the Sea?\tMatsu\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Matsu, is the Goddess of, the Sea) -> Matsu (3545ms)\nWho is the Greek God of the Sea?\tpenguins\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (penguins, identify effects on, global sea levels) -> penguins (3549ms)\nWho is the Greek God of the Sea?\tsea ice\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (sea ice, has a zero effect on, sea level) -> sea ice (3520ms)\nWho is the Greek God of the Sea?\tHpOtxE or HpOtxL\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (HpOtxE or HpOtxL, caused similar morphological effects on, sea) -> HpOtxE or HpOtxL (3542ms)\nWho is the Greek God of the Sea?\trainfall\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (rainfall, as were the moderating effects of, sea temperature) -> rainfall (3530ms)\nWho is the Greek God of the Sea?\tglobal warming\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (global warming, has a much more dramatic effect on, sea levels) -> global warming (3545ms)\nWho is the Greek God of the Sea?\tthe form\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the form, illustrated the effect of, post glacial sea level rise) -> the form (3549ms)\nWho is the Greek God of the Sea?\tthe coast People\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the coast People, control the effects of, the sea) -> the coast People (3549ms)\nWho is the Greek God of the Sea?\tthe shelves\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the shelves, may effect, the air/sea fluxes) -> the shelves (3525ms)\nWho is the Greek God of the Sea?\tThe statute\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The statute, effects, a sea-change) -> The statute (3538ms)\nWho is the Greek God of the Sea?\tAmphitrite\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Amphitrite, was a goddess of, the sea) -> Amphitrite (3545ms)\nWho is the Greek God of the Sea?\tNamakaokahai\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Namakaokahai, is the Goddess of, the Sea) -> Namakaokahai (3549ms)\nWho is the Greek God of the Sea?\tthe crisis\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the crisis, has had a deleterious effect on, sea turtles) -> the crisis (3538ms)\nWho is the Greek God of the Sea?\tclimate\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (climate, change effects on, sea ice) -> climate (3538ms)\nWho is the Greek God of the Sea?\tIsabel?s impacts\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Isabel?s impacts, illustrate effects of, sea level rise) -> Isabel?s impacts (3538ms)\nWho is the Greek God of the Sea?\t?the AO\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (?the AO, has a strong effect on, Arctic sea ice motion) -> ?the AO (3525ms)\nWho is the Greek God of the Sea?\tXar?tenga\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Xar?tenga, was the goddess of, the sea) -> Xar?tenga (3520ms)\nWho is the Greek God of the Sea?\tsuch an increase\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (such an increase, would have profound effects on, sea levels) -> such an increase (3538ms)\nWho is the Greek God of the Sea?\tthe 1998 El Ni?o\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the 1998 El Ni?o, had a big effect on, the sea level trend) -> the 1998 El Ni?o (3538ms)\nWho is the Greek God of the Sea?\tOcean pH\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Ocean pH, is already having an adverse effect on, sea life) -> Ocean pH (3530ms)\nWho is the Greek God of the Sea?\tThe cyber age\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The cyber age, has effected, a sea change) -> The cyber age (3525ms)\nWho is the Greek God of the Sea?\tAyodhya\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Ayodhya, effected, a sea change) -> Ayodhya (3538ms)\nWho is the Greek God of the Sea?\tA hotter atmosphere\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (A hotter atmosphere, has several effects on, the sea) -> A hotter atmosphere (3530ms)\nWho is the Greek God of the Sea?\tAsherah\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Asherah, was goddess of, the sea) -> Asherah (3530ms)\nWho is the Greek God of the Sea?\texamination\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (examination, are the effects of, sea level) -> examination (3520ms)\nWho is the Greek God of the Sea?\tthe ice\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the ice, already effects, the sea level) -> the ice (3525ms)\nWho is the Greek God of the Sea?\tIcebreakers\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Icebreakers, have a negligible effect on, the sea ice) -> Icebreakers (3545ms)\nWho is the Greek God of the Sea?\tSedna\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Sedna, is the Inuit Goddess of, the Sea) -> Sedna (3542ms)\nWho is the Greek God of the Sea?\tThetis\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Thetis, was a Goddess of, the sea) -> Thetis (3538ms)\nWho is the Greek God of the Sea?\tice ages\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (ice ages, had much less effect on, sea level) -> ice ages (3542ms)\nWho is the Greek God of the Sea?\tThe decisions\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The decisions, have effected, a sea change) -> The decisions (3534ms)\nWho is the Greek God of the Sea?\tKiel\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Kiel, have now quantified the effect of, sea currents) -> Kiel (3520ms)\nWho is the Greek God of the Sea?\teven domestic transfers\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (even domestic transfers, are being popularly effected by, sea) -> even domestic transfers (3549ms)\nWho is the Greek God of the Sea?\tMazu\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Mazu, is the Goddess of, the Sea) -> Mazu (3549ms)\nWho is the Greek God of the Sea?\tthe province\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the province, is effected by, the Black Sea Climate) -> the province (3525ms)\nWho is the Greek God of the Sea?\tCALEA\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (CALEA, effected, a sea-change) -> CALEA (3542ms)\nWho is the Greek God of the Sea?\tHalcyone\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Halcyone, is the Goddess of, the Sea) -> Halcyone (3549ms)\nWho is the Greek God of the Sea?\tYemaja\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemaja, is the Goddess of, the Sea) -> Yemaja (3542ms)\nWho is the Greek God of the Sea?\tIris\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Iris, was a goddess of, sea and sky--her father Thaumas) -> Iris (3545ms)\nWho is the Greek God of the Sea?\tThe moon\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The moon, has an effect on, the sea) -> The moon (3538ms)\nWho is the Greek God of the Sea?\tMa-cho\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Ma-cho, is the goddess of, the sea) -> Ma-cho (3525ms)\nWho is the Greek God of the Sea?\ttidal variations\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (tidal variations, also have their effect on, sea level) -> tidal variations (3520ms)\nWho is the Greek God of the Sea?\tglaciers\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (glaciers, is having a much smaller effect on, sea levels) -> glaciers (3530ms)\nWho is the Greek God of the Sea?\tThe Naval blockade\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The Naval blockade, effected via, the Channel and North Sea) -> The Naval blockade (3549ms)\nWho is the Greek God of the Sea?\tthe Romans\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the Romans, recognised the therapeutic effects of, sea water) -> the Romans (3534ms)\nWho is the Greek God of the Sea?\tVellamo\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Vellamo, is the goddess of, the sea) -> Vellamo (3549ms)\nWho is the Greek God of the Sea?\tPartanen et al\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Partanen et al, studied the effects of, artificial sea spray) -> Partanen et al (3545ms)\nWho is the Greek God of the Sea?\twife\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (wife, is the goddess of, the sea) -> wife (3545ms)\nWho is the Greek God of the Sea?\tStorms Storms\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Storms Storms, can have a dramatic effect on, sea travel) -> Storms Storms (3530ms)\nWho is the Greek God of the Sea?\tJ.R. Jongkind\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (J.R. Jongkind, depicted fleeting effects of, sea and sky) -> J.R. Jongkind (3529ms)\nWho is the Greek God of the Sea?\tvolcanoes\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (volcanoes, have a bigger effect on, sea level) -> volcanoes (3530ms)\nWho is the Greek God of the Sea?\tconsiderable interest\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (considerable interest, is the effects of, sea breeze) -> considerable interest (3545ms)\nWho is the Greek God of the Sea?\tHippocrates\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Hippocrates, discovered the healing effects of, sea water) -> Hippocrates (3525ms)\nWho is the Greek God of the Sea?\tred tides\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (red tides, can have harmful effects on, the surrounding sea life) -> red tides (3534ms)\nWho is the Greek God of the Sea?\tthe early 1970s\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the early 1970s, had its effect on, the Sea King world) -> the early 1970s (3542ms)\nWho is the Greek God of the Sea?\tNorfolk\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Norfolk, is seeing the effects of, sea level) -> Norfolk (3534ms)\nWho is the Greek God of the Sea?\tthalassotherapy\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (thalassotherapy, combines the effects of, sea water) -> thalassotherapy (3545ms)\nWho is the Greek God of the Sea?\tThe tide\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The tide, has a nonlinear effect on, mean sea level) -> The tide (3534ms)\nWho is the Greek God of the Sea?\ta long-term solution\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (a long-term solution, mitigate the effects of, sea-level rise) -> a long-term solution (3534ms)\nWho is the Greek God of the Sea?\t14 May 07 Matzu\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (14 May 07 Matzu, is the goddess of, the sea and she?s) -> 14 May 07 Matzu (3529ms)\nWho is the Greek God of the Sea?\tHaven?t\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Haven?t, had the full effect of, sea salt) -> Haven?t (3542ms)\nWho is the Greek God of the Sea?\tlow season\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (low season, can effect, the sea temperature) -> low season (3538ms)\nWho is the Greek God of the Sea?\tthree strikes laws\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (three strikes laws, effected, a sea change) -> three strikes laws (3549ms)\nWho is the Greek God of the Sea?\tthe spill\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the spill, would have little effect on, sea life) -> the spill (3530ms)\nWho is the Greek God of the Sea?\t2003\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (2003, examined the effects of, Dead Sea climatotherapy) -> 2003 (3525ms)\nWho is the Greek God of the Sea?\tcoral reefs\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (coral reefs, could have a major effect on, sea life) -> coral reefs (3545ms)\nWho is the Greek God of the Sea?\tthe possible reasons\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the possible reasons, are the unfavourable effect of, sea water) -> the possible reasons (3534ms)\nWho is the Greek God of the Sea?\tMelanie\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Melanie, is goddess of, the sea and water) -> Melanie (3538ms)\nWho is the Greek God of the Sea?\tThe Persian Goddess Atargatis\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (The Persian Goddess Atargatis, was a mermaid Goddess of, the Sea) -> The Persian Goddess Atargatis (3525ms)\nWho is the Greek God of the Sea?\tocean currents\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (ocean currents, would have drastic effects on, sea life) -> ocean currents (3538ms)\nWho is the Greek God of the Sea?\tthe whole fiasco\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the whole fiasco, will effect, a sea change) -> the whole fiasco (3549ms)\nWho is the Greek God of the Sea?\tradiation\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (radiation, will have an effect on, the sea water) -> radiation (3525ms)\nWho is the Greek God of the Sea?\texample\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (example, is the effect of, reduced Arctic sea ice) -> example (3520ms)\nWho is the Greek God of the Sea?\tThe city ?s poor\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The city ?s poor, are unable to effect, a sea change) -> The city ?s poor (3520ms)\nWho is the Greek God of the Sea?\tnatural climate variations\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (natural climate variations, have a major effect on, air-sea) -> natural climate variations (3542ms)\nWho is the Greek God of the Sea?\tAMPHITRITE\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (AMPHITRITE, was the goddess queen of, the sea) -> AMPHITRITE (3549ms)\nWho is the Greek God of the Sea?\tOthers concerns\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Others concerns, included effects on, sea life) -> Others concerns (3545ms)\nWho is the Greek God of the Sea?\tEastern Sedna\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Eastern Sedna, is the mythical Inuit Goddess of, the sea) -> Eastern Sedna (3530ms)\nWho is the Greek God of the Sea?\tYemay?\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemay?, is the Goddess of, the Sea and Nature) -> Yemay? (3538ms)\nWho is the Greek God of the Sea?\tFinnish mythology Vellamo\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Finnish mythology Vellamo, is the goddess of, the sea) -> Finnish mythology Vellamo (3542ms)\nWho is the Greek God of the Sea?\tFreud\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Freud, effected, a sea change) -> Freud (3545ms)\nWho is the Greek God of the Sea?\tCO2 greenhouse heating\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (CO2 greenhouse heating, could have a large effect on, the seas) -> CO2 greenhouse heating (3534ms)\nWho is the Greek God of the Sea?\tArnemetia\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Arnemetia, is a Celtic goddess of, the sea) -> Arnemetia (3549ms)\nWho is the Greek God of the Sea?\tTiamat\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Tiamat, is a Babylonian Goddess of, the sea) -> Tiamat (3538ms)\nWho is the Greek God of the Sea?\tIemanj ?\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Iemanj ?, is the vain goddess of, the sea) -> Iemanj ? (3534ms)\nWho is the Greek God of the Sea?\tIemanj?\t0.777777777778\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Iemanj?, is the vain goddess of, the sea) -> Iemanj? (3534ms)\nWho is the Greek God of the Sea?\tLindsay\t0.555555555556\tWho is the Greek God of the Sea? -> $x: ($x, be effect of, sea) -> (Lindsay, is determining the effects of, sea grass beds) -> Lindsay (3552ms)\nWho is the Greek God of the Sea?\tsuperlights\t0.33333333333500004\tWho is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (superlights, have adverse effects on, turtle populations) -> superlights (3553ms)\nWho is the Greek God of the Sea?\tthe illumination\t0.33333333333500004\tWho is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (the illumination, adversely effects, turtle nests) -> the illumination (3556ms)\nWho is the Greek God of the Sea?\tSpotila\t0.33333333333500004\tWho is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (Spotila, reported this effect on, green turtles) -> Spotila (3555ms)\nWho is the Greek God of the Sea?\ttrouble\t0.33333333333500004\tWho is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (trouble, seems to have the same effect on, turtle tails) -> trouble (3555ms)\nWho is the Greek God of the Sea?\ttemperatures\t0.33333333333500004\tWho is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (temperatures, also have an effect on, the turtles) -> temperatures (3553ms)\nWho is the Greek God of the Sea?\tNaida\t0.333333333331\tWho is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (Naida, is a Greek word for, a water nymph) -> Naida (3555ms)\nWho is the Greek God of the Sea?\tHydra\t0.333333333331\tWho is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (Hydra, is the Greek word for, water) -> Hydra (3555ms)\nWho is the Greek God of the Sea?\tGFL Golden Forum Land Inc. Nerou\t0.333333333331\tWho is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (GFL Golden Forum Land Inc. Nerou, is a Greek word for, water) -> GFL Golden Forum Land Inc. Nerou (3555ms)\nWho is the Greek God of the Sea?\tNerou\t0.333333333331\tWho is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (Nerou, is a Greek word for, ?water?) -> Nerou (3555ms)\nWho is the Greek God of the Sea?\tSet\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Set, is a god of, the waters) -> Set (3558ms)\nWho is the Greek God of the Sea?\tAhto\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Ahto, is the important God of, Seas and Waters) -> Ahto (3562ms)\nWho is the Greek God of the Sea?\tthe Churner\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (the Churner, is the god of, the elemental Water) -> the Churner (3560ms)\nWho is the Greek God of the Sea?\tUta\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Uta, is the god of, sweet waters) -> Uta (3556ms)\nWho is the Greek God of the Sea?\tEnki\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Enki, [is] the god of, the sweet waters) -> Enki (3563ms)\nWho is the Greek God of the Sea?\tThe crocodile\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (The crocodile, was a God of, Water) -> The crocodile (3558ms)\nWho is the Greek God of the Sea?\tNis'acon\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Nis'acon, is the god of, water and mana) -> Nis'acon (3560ms)\nWho is the Greek God of the Sea?\tWisnu\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Wisnu, [is] god of, water) -> Wisnu (3563ms)\nWho is the Greek God of the Sea?\tSothis and Hapy\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Sothis and Hapy, were gods of, flood waters Frogs) -> Sothis and Hapy (3558ms)\nWho is the Greek God of the Sea?\tEnki/Ea\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Enki/Ea, is the god of, the sweet waters) -> Enki/Ea (3560ms)\nWho is the Greek God of the Sea?\tVolturnus\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Volturnus, [is] god of, the waters) -> Volturnus (3563ms)\nWho is the Greek God of the Sea?\tKakaraa\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Kakaraa, is the god of, water) -> Kakaraa (3565ms)\nWho is the Greek God of the Sea?\tEgyptian mythology Nu\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Egyptian mythology Nu, was the god of, waters) -> Egyptian mythology Nu (3562ms)\nWho is the Greek God of the Sea?\tUnktahee\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Unktahee, [is] the god of, water) -> Unktahee (3562ms)\nWho is the Greek God of the Sea?\tSuijin\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Suijin, [is] the god of, water) -> Suijin (3560ms)\nWho is the Greek God of the Sea?\tthe god Nu\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (the god Nu, was the god of, waters) -> the god Nu (3563ms)\nWho is the Greek God of the Sea?\tEa\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Ea, was the Sumerian god of, water and wisdom) -> Ea (3560ms)\nWho is the Greek God of the Sea?\tNefertem\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Nefertem, was The god of, the blue water lily) -> Nefertem (3555ms)\nWho is the Greek God of the Sea?\tNarfas\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Narfas, [is] the god of, spring water) -> Narfas (3562ms)\nWho is the Greek God of the Sea?\tSobek\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Sobek, was understandably a god of, the water) -> Sobek (3565ms)\nWho is the Greek God of the Sea?\tVarun\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Varun, [is] the god of, water) -> Varun (3563ms)\nWho is the Greek God of the Sea?\tNO\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (NO, was the god of, waters) -> NO (3560ms)\nWho is the Greek God of the Sea?\tChac\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Chac, is the ancient Mayan god of, water) -> Chac (3560ms)\nWho is the Greek God of the Sea?\tKamapuaa\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Kamapuaa, [is] god of, water) -> Kamapuaa (3562ms)\nWho is the Greek God of the Sea?\tApsu\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Apsu, [is] the god of, the fresh waters) -> Apsu (3563ms)\nWho is the Greek God of the Sea?\tNu\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Nu, was the god of, waters) -> Nu (3565ms)\nWho is the Greek God of the Sea?\tShiva\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, snake) -> (Shiva, is the patron god of, snakes) -> Shiva (3558ms)\nWho is the Greek God of the Sea?\t1762 and features Neptune\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (1762 and features Neptune, [is] the Roman god of, water and sea) -> 1762 and features Neptune (3562ms)\nWho is the Greek God of the Sea?\ta deity\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (a deity, was god of, waters) -> a deity (3555ms)\nWho is the Greek God of the Sea?\tRemus\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Remus, is the god of, water melons) -> Remus (3565ms)\nWho is the Greek God of the Sea?\tPariacaca\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Pariacaca, was a god of, water) -> Pariacaca (3562ms)\nWho is the Greek God of the Sea?\tInthiran\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Inthiran, is the god of, water land) -> Inthiran (3563ms)\nWho is the Greek God of the Sea?\tthe dragon\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (the dragon, is the god of, the water world) -> the dragon (3556ms)\nWho is the Greek God of the Sea?\tblack dragon\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (black dragon, was considered God of, Water) -> black dragon (3558ms)\nWho is the Greek God of the Sea?\tDraco\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Draco, is the God of, Water) -> Draco (3558ms)\nWho is the Greek God of the Sea?\tOdin\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Odin, is the god of, the waters) -> Odin (3555ms)\nWho is the Greek God of the Sea?\tPage 110 Ea\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Page 110 Ea, was god of, the waters) -> Page 110 Ea (3563ms)\nWho is the Greek God of the Sea?\tCoincidentally Neptune\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Coincidentally Neptune, is the god of, water) -> Coincidentally Neptune (3558ms)\nWho is the Greek God of the Sea?\tTonenili\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Tonenili, [is] the god of, water) -> Tonenili (3563ms)\nWho is the Greek God of the Sea?\tTlaloc\t0.222222222222\tWho is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Tlaloc, [is] god of, water) -> Tlaloc (3555ms)\nWho is the Greek God of the Sea?\tSulis\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Sulis, was the local goddess of, water) -> Sulis (3566ms)\nWho is the Greek God of the Sea?\tDanu\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Danu, is the primordial goddess of, waters) -> Danu (3566ms)\nWho is the Greek God of the Sea?\tMehet-Weret\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Mehet-Weret, was a goddess of, the waters) -> Mehet-Weret (3565ms)\nWho is the Greek God of the Sea?\tBlues\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Blues, is a goddess of, the water) -> Blues (3566ms)\nWho is the Greek God of the Sea?\tthe negative side\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (the negative side, is the goddess of, water) -> the negative side (3566ms)\nWho is the Greek God of the Sea?\tArdvi Sura\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Ardvi Sura, is the goddess of, the waters) -> Ardvi Sura (3565ms)\nWho is the Greek God of the Sea?\tTanora Tanora\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Tanora Tanora, is the Goddess of, water) -> Tanora Tanora (3566ms)\nWho is the Greek God of the Sea?\tNanshe\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Nanshe, was also the Goddess of, water and fertility) -> Nanshe (3566ms)\nWho is the Greek God of the Sea?\tChalchiuhtlicue\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Chalchiuhtlicue, was the goddess of, water) -> Chalchiuhtlicue (3566ms)\nWho is the Greek God of the Sea?\tOchun\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Ochun, is the goddess of, Sweet Waters) -> Ochun (3565ms)\nWho is the Greek God of the Sea?\tEudora\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be greek goddess of, wave) -> (Eudora, was a minor Greek goddess of, the waves) -> Eudora (3566ms)\nWho is the Greek God of the Sea?\tOc?ane\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Oc?ane, is the Goddess of, water) -> Oc?ane (3565ms)\nWho is the Greek God of the Sea?\tTefnut\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Tefnut, is a goddess of, water and fertility) -> Tefnut (3565ms)\nWho is the Greek God of the Sea?\tPurva Ashadha?s deity\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Purva Ashadha?s deity, is the goddess of, waters) -> Purva Ashadha?s deity (3565ms)\nWho is the Greek God of the Sea?\tWeda Krizhtawn\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Weda Krizhtawn, is the chief goddess of, water) -> Weda Krizhtawn (3566ms)\nWho is the Greek God of the Sea?\tMami Wata\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Mami Wata, are goddesses of, waters) -> Mami Wata (3566ms)\nWho is the Greek God of the Sea?\tLeviathan\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Leviathan, is the Goddess of, Water) -> Leviathan (3565ms)\nWho is the Greek God of the Sea?\tM?Lady\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (M?Lady, is a goddess of, water) -> M?Lady (3565ms)\nWho is the Greek God of the Sea?\tFlulia\t-0.0\tWho is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Flulia, is the Goddess of, Water) -> Flulia (3565ms)\nWho developed the Macintosh computer?\tApple\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Apple, developed, Macintosh computers) -> Apple (1304ms)\nWho developed the Macintosh computer?\tCompany\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Company, develops software for, OPENSTEP and Macintosh computers) -> Company (1303ms)\nWho developed the Macintosh computer?\tthe unit\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (the unit, developed, the Macintosh computer) -> the unit (1303ms)\nWho developed the Macintosh computer?\tAnimal stack\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Animal stack, was developed on, Macintosh computers) -> Animal stack (917ms)\nWho developed the Macintosh computer?\ta network protocol\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (a network protocol, was developed for, Macintosh computers) -> a network protocol (917ms)\nWho developed the Macintosh computer?\t1984\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (1984, developed to run on, the Macintosh computer) -> 1984 (917ms)\nWho developed the Macintosh computer?\tThe program\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (The program, was developed for, the Macintosh computer) -> The program (917ms)\nWho developed the Macintosh computer?\tLater versions\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Later versions, were developed for, Macintosh computers) -> Later versions (1303ms)\nWho developed the Macintosh computer?\tJobs\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Jobs, develop, the Macintosh computer) -> Jobs (917ms)\nWho developed the Macintosh computer?\ta new program Aldus\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (a new program Aldus, developed for, Apple Macintosh computers) -> a new program Aldus (917ms)\nWho developed the Macintosh computer?\tPageMaker\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (PageMaker, was developed for, Macintosh computers) -> PageMaker (1303ms)\nWho developed the Macintosh computer?\timage\t1.66666666666\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (image, was developed on, Macintosh computer) -> image (917ms)\nWho developed the Macintosh computer?\tStephen Jobs\t1.44444444444\tWho developed the Macintosh computer? -> $x: ($x, invent, macintosh computer) -> (Stephen Jobs, invented, the Macintosh computer) -> Stephen Jobs (1303ms)\nWho developed the Macintosh computer?\tSteve\t1.44444444444\tWho developed the Macintosh computer? -> $x: ($x, invent, macintosh computer) -> (Steve, invented, the Macintosh computer) -> Steve (1303ms)\nWho developed the Macintosh computer?\tPages\t0.444444444444\tWho developed the Macintosh computer? -> $x: ($x, be host, macintosh) -> (Pages, were hosted on, a Macintosh? server) -> Pages (1369ms)\nWho developed the Macintosh computer?\tThe site\t0.444444444444\tWho developed the Macintosh computer? -> $x: ($x, be host, macintosh) -> (The site, is hosted on, Macintosh servers) -> The site (1369ms)\nWho developed the Macintosh computer?\tThe Apple //e and IIGS\t0.444444444443\tWho developed the Macintosh computer? -> $x: ($x, be network, macintosh) -> (The Apple //e and IIGS, can be networked to, a Macintosh) -> The Apple //e and IIGS (1369ms)\nWho developed the Macintosh computer?\tThe Plus\t0.444444444443\tWho developed the Macintosh computer? -> $x: ($x, be network, macintosh) -> (The Plus, can be networked with, newer Macintoshes) -> The Plus (1386ms)\nWho developed the Macintosh computer?\tthe format\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the format, was originally developed for, the Macintosh platform) -> the format (1390ms)\nWho developed the Macintosh computer?\tBookends\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Bookends, was developed specifically for, Apple Macintosh) -> Bookends (1390ms)\nWho developed the Macintosh computer?\tProfessional People\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Professional People, developed, a new Macintosh application) -> Professional People (1390ms)\nWho developed the Macintosh computer?\tthe first operating system GUI\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the first operating system GUI, developed for, the Macintosh) -> the first operating system GUI (1386ms)\nWho developed the Macintosh computer?\tDavid Richardson\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (David Richardson, developed, another Macintosh-friendly format) -> David Richardson (1388ms)\nWho developed the Macintosh computer?\tthe early Apple team\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the early Apple team, developed for, the Macintosh) -> the early Apple team (1391ms)\nWho developed the Macintosh computer?\tthe team\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the team, developing, the Macintosh) -> the team (1388ms)\nWho developed the Macintosh computer?\tFileMaker\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (FileMaker, was originally developed for, the Apple Macintosh) -> FileMaker (1391ms)\nWho developed the Macintosh computer?\tHalo\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Halo, is being developed for, Macintosh and Windows) -> Halo (1386ms)\nWho developed the Macintosh computer?\tThe apothecaries\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (The apothecaries, developed, Macintosh cosmetic makeup products) -> The apothecaries (1388ms)\nWho developed the Macintosh computer?\tthe original team\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the original team, developed, the Macintosh) -> the original team (1388ms)\nWho developed the Macintosh computer?\tJobs and Apple\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Jobs and Apple, are developing, the Macintosh) -> Jobs and Apple (1390ms)\nWho developed the Macintosh computer?\tMathematica\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Mathematica, was developed on, the Macintosh) -> Mathematica (1388ms)\nWho developed the Macintosh computer?\tFile forks\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (File forks, were originally developed for, the Macintosh) -> File forks (1390ms)\nWho developed the Macintosh computer?\tPalm\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Palm, continues to develop, its Macintosh sync client) -> Palm (1386ms)\nWho developed the Macintosh computer?\tan e-book pioneer\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (an e-book pioneer, previously developed, the Macintosh mouse) -> an e-book pioneer (1388ms)\nWho developed the Macintosh computer?\tTOPS\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (TOPS, developed, the first IBM-Macintosh local-area network) -> TOPS (1391ms)\nWho developed the Macintosh computer?\tcreative types\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (creative types, have developed software for, Macintosh) -> creative types (1390ms)\nWho developed the Macintosh computer?\tMOTU\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (MOTU, developed one of, the Macintosh) -> MOTU (1388ms)\nWho developed the Macintosh computer?\tSpin3\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Spin3, is developed specifically for, the Macintosh Apples) -> Spin3 (1391ms)\nWho developed the Macintosh computer?\tdevelopers\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (developers, have primarily developed for, Macintosh) -> developers (1386ms)\nWho developed the Macintosh computer?\tStudion\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Studion, has developed, a Macintosh Photoshop plugin claims) -> Studion (1388ms)\nWho developed the Macintosh computer?\tnew applications\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (new applications, are being developed for, Macintosh) -> new applications (1386ms)\nWho developed the Macintosh computer?\tLynch\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Lynch, developed early, Macintosh applications) -> Lynch (1386ms)\nWho developed the Macintosh computer?\tthe company\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the company, developed, the first Macintosh memory products) -> the company (1388ms)\nWho developed the Macintosh computer?\tvector graphics\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (vector graphics, was first developed for, the Apple Macintosh) -> vector graphics (1386ms)\nWho developed the Macintosh computer?\ta uuencoded file\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (a uuencoded file, was developed originally for, the Macintosh) -> a uuencoded file (1388ms)\nWho developed the Macintosh computer?\tThe learning materials\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (The learning materials, are developed on, the Macintosh) -> The learning materials (1391ms)\nWho developed the Macintosh computer?\tExcel\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Excel, was originally developed for, the Macintosh) -> Excel (1386ms)\nWho developed the Macintosh computer?\tQuickTime\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (QuickTime, was initially developed just for, the Macintosh) -> QuickTime (1391ms)\nWho developed the Macintosh computer?\t1986\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (1986, developed, the first Macintosh design lab) -> 1986 (1388ms)\nWho developed the Macintosh computer?\tMicrosoft\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Microsoft, is developed by, the Macintosh Business Unit) -> Microsoft (1390ms)\nWho developed the Macintosh computer?\tSilicon Valley\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Silicon Valley, developed early, Macintosh upgrades) -> Silicon Valley (1386ms)\nWho developed the Macintosh computer?\tPanergy\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Panergy, has been developing software for, the Macintosh) -> Panergy (1386ms)\nWho developed the Macintosh computer?\tEmpire\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Empire, was developed from, Red Delicious and Macintosh) -> Empire (1391ms)\nWho developed the Macintosh computer?\tForks\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Forks, were originally developed for, the Macintosh) -> Forks (1386ms)\nWho developed the Macintosh computer?\tthe CD-ROM\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the CD-ROM, were developed on, a Macintosh IIci) -> the CD-ROM (1390ms)\nWho developed the Macintosh computer?\tHyperGlot\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (HyperGlot, developed software mainly for, the Macintosh) -> HyperGlot (1388ms)\nWho developed the Macintosh computer?\tpersonal computer software--to\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (personal computer software--to, develop, Macintosh products) -> personal computer software--to (1390ms)\nWho developed the Macintosh computer?\tthe handheld device\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the handheld device, are developed on, the Macintosh) -> the handheld device (1390ms)\nWho developed the Macintosh computer?\tMirra\t-0.11111111111600003\tWho developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Mirra, was developed for, Macintosh) -> Mirra (1391ms)\nWho developed the Macintosh computer?\tApple employee Jef Raskin\t-0.444444444444\tWho developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Apple employee Jef Raskin, invented, the Macintosh) -> Apple employee Jef Raskin (1392ms)\nWho developed the Macintosh computer?\tSteve Jobs\t-0.444444444444\tWho developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Steve Jobs, invented, Macintosh) -> Steve Jobs (1392ms)\nWho developed the Macintosh computer?\tJef Raskin\t-0.444444444444\tWho developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Jef Raskin, invented, the Macintosh) -> Jef Raskin (1392ms)\nWho developed the Macintosh computer?\tJef\t-0.444444444444\tWho developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Jef, invented, the Macintosh) -> Jef (1392ms)\nWho invented television?\t1939\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (television, was first invented in, 1939) -> 1939 (1129ms)\nWho invented television?\tthe 1890s\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (television, was actually invented in, the 1890s) -> the 1890s (1129ms)\nWho invented television?\t1855\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (television, has n?t been invented yet in, 1855) -> 1855 (1128ms)\nWho invented television?\tthe United States\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (Breakfast television, was invented in, the United States) -> the United States (1217ms)\nWho invented television?\tthe United States versus Russia\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (the television, was invented in, the United States versus Russia) -> the United States versus Russia (1217ms)\nWho invented television?\tthe early decades\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (the first television set, was invented in, the early decades) -> the early decades (1072ms)\nWho invented television?\tFrance\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (Television, was invented in, France) -> France (1128ms)\nWho invented television?\tthe 1930\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (The television, had been invented in, the 1930) -> the 1930 (1129ms)\nWho invented television?\tAmerica\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (television, was invented in, America) -> America (1260ms)\nWho invented television?\taround 1935\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (television, was invented in, around 1935) -> around 1935 (1072ms)\nWho invented television?\tthe act\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (the united states television, was invented in, the act) -> the act (1217ms)\nWho invented television?\t1926\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (Television, was invented in, 1926) -> 1926 (1260ms)\nWho invented television?\tthe early 19th century\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (TELEVISION Television, was invented in, the early 19th century) -> the early 19th century (1072ms)\nWho invented television?\tthe late 1950s\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (not only color television, was invented in, the late 1950s) -> the late 1950s (1217ms)\nWho invented television?\tthe 1930s\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (the television, was invented in, the 1930s) -> the 1930s (1129ms)\nWho invented television?\tthe 1920s\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (televisions, were invented in, the 1920s) -> the 1920s (1218ms)\nWho invented television?\tthe 1950s\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (The color television, was invented in, the 1950s) -> the 1950s (1218ms)\nWho invented television?\tScotland\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (' Telephone and television, were invented in, Scotland) -> Scotland (1260ms)\nWho invented television?\tthe 1950?s\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (The color television, was invented in, the 1950?s) -> the 1950?s (1072ms)\nWho invented television?\tthe 1960s\t1.222222222217\tWho invented television? -> $x: (television, be invent in, $x) -> (The plasma flat screen television, was invented in, the 1960s) -> the 1960s (1218ms)\nWho invented television?\tthe U.S.\t0.999999999998\tWho invented television? -> $x: (lcd, be invent in, $x) -> (LCDs, were nominally invented in, the U.S.) -> the U.S. (1260ms)\nWho invented television?\tcase\t0.999999999998\tWho invented television? -> $x: (satellite, be invent in, $x) -> (Satellite phones, are invented in, case) -> case (1260ms)\nWho invented television?\tthe 1940\t0.888888888887\tWho invented television? -> $x: (color tv, be invent in, $x) -> (color TV, was invented in, the 1940) -> the 1940 (1261ms)\nWho invented television?\tan online tutorial\t0.888888888884\tWho invented television? -> $x: ($x, found, watch television) -> (an online tutorial, found at, www.TelevisionWatch) -> an online tutorial (1331ms)\nWho invented television?\tthe Security guard\t0.888888888884\tWho invented television? -> $x: ($x, found, watch television) -> (the Security guard, can generally be found, watching television) -> the Security guard (1331ms)\nWho invented television?\t1:30\t0.888888888884\tWho invented television? -> $x: ($x, found, watch television) -> (1:30, found, Barbara watching television) -> 1:30 (1331ms)\nWho invented television?\tMr. Bartlett\t0.888888888884\tWho invented television? -> $x: ($x, found, watch television) -> (Mr. Bartlett, found, her watching television) -> Mr. Bartlett (1261ms)\nWho invented television?\tRembrandt\t0.888888888884\tWho invented television? -> $x: ($x, found, watch television) -> (Rembrandt, found Wade, watching a television) -> Rembrandt (1331ms)\nWho invented television?\tPC\t0.888888888884\tWho invented television? -> $x: ($x, found, watch television) -> (PC, find Ways to, Watch Free Live Streaming Television series) -> PC (1331ms)\nWho invented television?\tThin Heel Taro\t0.888888888884\tWho invented television? -> $x: ($x, found, watch television) -> (Thin Heel Taro, found, Avilynn watching television) -> Thin Heel Taro (1331ms)\nWho invented television?\tfive children\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (five children, were in, the next room watching television) -> five children (3216ms)\nWho invented television?\tpop culture\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (pop culture, are documented in, my Watching television category) -> pop culture (3217ms)\nWho invented television?\tJones\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (Jones, is engaged in, watching a baseball game on television) -> Jones (3217ms)\nWho invented television?\tDad\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (Dad, is in, the house watching television) -> Dad (2050ms)\nWho invented television?\tThe iPad\t0.666666666663\tWho invented television? -> $x: ($x, introduce, watch television) -> (The iPad, has introduced, a new way of watching television) -> The iPad (2049ms)\nWho invented television?\tA TV camera\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (A TV camera, is sitting in, an easy chair watching television) -> A TV camera (2050ms)\nWho invented television?\tThe girls\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (The girls, are in, my bedroom watching television) -> The girls (2049ms)\nWho invented television?\tthe neighbor\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (the neighbor, was lying in, the floor watching television) -> the neighbor (2050ms)\nWho invented television?\tthe two\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (the two, were in, the same room watching television) -> the two (2050ms)\nWho invented television?\tthe philosopher\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (the philosopher, was in, Cairo watching television images) -> the philosopher (1836ms)\nWho invented television?\tsnacks\t0.666666666663\tWho invented television? -> $x: ($x, be in, watch television) -> (snacks, can be settled in, the evening watching television) -> snacks (2050ms)\nWho invented television?\tGeorge\t0.66666666666\tWho invented television? -> $x: ($x, discover, watch television) -> (George, had discovered, more watching television) -> George (3217ms)\nWho invented television?\tengineers\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (engineers, develop, the television) -> engineers (5249ms)\nWho invented television?\tChopra Media\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Chopra Media, develops, television programming) -> Chopra Media (5234ms)\nWho invented television?\tfive-year Ready To Learn grant\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (five-year Ready To Learn grant, develop, new television) -> five-year Ready To Learn grant (3347ms)\nWho invented television?\tthe ad campaign\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (the ad campaign, developed, the Can TELEVISION commercial) -> the ad campaign (5249ms)\nWho invented television?\tPrincess\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Princess, has developed an affinity for, television) -> Princess (5242ms)\nWho invented television?\tSmallville\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Smallville, was developed for, television) -> Smallville (3679ms)\nWho invented television?\tMs. Covell\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Ms. Covell, developed, both television movies) -> Ms. Covell (5249ms)\nWho invented television?\tJoe Davola\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Joe Davola, was developed for, television) -> Joe Davola (4304ms)\nWho invented television?\tOnly last week\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Only last week, develop, penicillin , television) -> Only last week (5242ms)\nWho invented television?\tStephano\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Stephano, develop, the seminal television series) -> Stephano (5226ms)\nWho invented television?\ta subsidiary\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (a subsidiary, develops, Digital Television systems) -> a subsidiary (3679ms)\nWho invented television?\tbroadcasters\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (broadcasters, develop, a new television service) -> broadcasters (5226ms)\nWho invented television?\tNit Boy\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Nit Boy, is currently being developed for, television) -> Nit Boy (5242ms)\nWho invented television?\tan American teen drama\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (an American teen drama, developed for, television) -> an American teen drama (5242ms)\nWho invented television?\tSharp\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Sharp, has developed, television) -> Sharp (5226ms)\nWho invented television?\tMaster Lock\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Master Lock, developed, a television commercial) -> Master Lock (4304ms)\nWho invented television?\tThe concept\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The concept, was developed for, television) -> The concept (5249ms)\nWho invented television?\tRIZZOLI & ISLES\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (RIZZOLI & ISLES, was developed for, television) -> RIZZOLI & ISLES (3217ms)\nWho invented television?\tThe series\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The series, was developed for, television) -> The series (5234ms)\nWho invented television?\tCOMAP\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (COMAP, developed, two PBS television series) -> COMAP (5234ms)\nWho invented television?\tReiner\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Reiner, developed, a television pilot) -> Reiner (4304ms)\nWho invented television?\tcopyright Hasbro\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (copyright Hasbro, was developed for, television) -> copyright Hasbro (5234ms)\nWho invented television?\tSMALLVILE\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (SMALLVILE, was developed for, television) -> SMALLVILE (5234ms)\nWho invented television?\ttime\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (time, develop, her own television shows) -> time (5234ms)\nWho invented television?\tPaul Weiss clients\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Paul Weiss clients, developed, television) -> Paul Weiss clients (5249ms)\nWho invented television?\tNitboy\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Nitboy, is currently being developed for, television) -> Nitboy (3679ms)\nWho invented television?\tMagic\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Magic, was developed for, television) -> Magic (3679ms)\nWho invented television?\tRelativity Media\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Relativity Media, develop a series for, television) -> Relativity Media (4303ms)\nWho invented television?\tLaurenn McCubbin\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Laurenn McCubbin, is currently being developed for, television) -> Laurenn McCubbin (5249ms)\nWho invented television?\tThe production company\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The production company, develops, television shows) -> The production company (5242ms)\nWho invented television?\tMacintosh\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Macintosh, developed a whole new breed of, televisions) -> Macintosh (5234ms)\nWho invented television?\tSMALLVILLE\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (SMALLVILLE, was developed for, television) -> SMALLVILLE (5242ms)\nWho invented television?\tRe-Animator\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Re-Animator, is being developed for, television) -> Re-Animator (5249ms)\nWho invented television?\tthe production\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (the production, developed, television) -> the production (5234ms)\nWho invented television?\tThe show\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The show, was developed for, television) -> The show (5249ms)\nWho invented television?\tRosing\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Rosing, develops theory of, television) -> Rosing (3679ms)\nWho invented television?\tJustice Interrupted\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Justice Interrupted, is being developed for, television) -> Justice Interrupted (5226ms)\nWho invented television?\tDanny Thomas\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Danny Thomas, developed, breakthrough television production) -> Danny Thomas (5249ms)\nWho invented television?\tThe project\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The project, is developed for, television) -> The project (5242ms)\nWho invented television?\tThe material\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The material, is being developed for, television) -> The material (3347ms)\nWho invented television?\tPita\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Pita, developed, three television spots) -> Pita (3347ms)\nWho invented television?\tIron Man\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Iron Man, is being developed for, television) -> Iron Man (5249ms)\nWho invented television?\tA miltary robot\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (A miltary robot, develops, a television set) -> A miltary robot (5226ms)\nWho invented television?\tvsa\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (vsa, developed, a new television campaign) -> vsa (5234ms)\nWho invented television?\tLizz\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Lizz, is developing shows for, television) -> Lizz (4304ms)\nWho invented television?\tA system\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (A system, developed for, television) -> A system (5227ms)\nWho invented television?\tBrian Michael Bendis\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Brian Michael Bendis, has long been developing for, television) -> Brian Michael Bendis (4304ms)\nWho invented television?\tdirect mail pieces\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (direct mail pieces, develop, radio or television spots) -> direct mail pieces (5226ms)\nWho invented television?\tdirector Vic Cook\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (director Vic Cook, developed the series for, television) -> director Vic Cook (5242ms)\nWho invented television?\tBaird\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Baird, developed, a color television) -> Baird (3347ms)\nWho invented television?\tMiller\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Miller, developed, the television hit) -> Miller (5234ms)\nWho invented television?\t1975-1976 Ellery Queen series\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (1975-1976 Ellery Queen series, was developed for, television) -> 1975-1976 Ellery Queen series (5234ms)\nWho invented television?\tsuch a theory man\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (such a theory man, develop, television) -> such a theory man (5242ms)\nWho invented television?\tan art and design studio\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (an art and design studio, develops, television and film projects) -> an art and design studio (5249ms)\nWho invented television?\tthe way engineers\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (the way engineers, develop, television) -> the way engineers (3679ms)\nWho invented television?\tRadios\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Radios, developed into, televisions) -> Radios (5249ms)\nWho invented television?\tScottish inventor\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Scottish inventor, developed, television) -> Scottish inventor (4304ms)\nWho invented television?\tthe late Star Trek creator\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (the late Star Trek creator, developed for, television) -> the late Star Trek creator (5227ms)\nWho invented television?\tDeadman\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Deadman, is being developed for, television) -> Deadman (5242ms)\nWho invented television?\tKida\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Kida, developed a great love of, television) -> Kida (4304ms)\nWho invented television?\tcan?t\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (can?t, be developed on, television) -> can?t (3347ms)\nWho invented television?\tFarnsworth\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Farnsworth, developed, a television system) -> Farnsworth (4303ms)\nWho invented television?\tThe organization\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The organization, develops, digital television standards) -> The organization (5226ms)\nWho invented television?\tHBO\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (HBO, develops, a television series) -> HBO (3679ms)\nWho invented television?\tDavid\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (David, developed, enhanced television programs) -> David (4304ms)\nWho invented television?\tThe studio\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The studio, develops, television) -> The studio (5226ms)\nWho invented television?\texecutive\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (executive, developed this show for, television) -> executive (5249ms)\nWho invented television?\tmore than 300,000 users\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (more than 300,000 users, is being developed for, television) -> more than 300,000 users (5242ms)\nWho invented television?\tthe same name\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (the same name, was developed for, television) -> the same name (5226ms)\nWho invented television?\ta single season 1927? Philo Farnsworth\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (a single season 1927? Philo Farnsworth, develops, television) -> a single season 1927? Philo Farnsworth (5242ms)\nWho invented television?\tZuiker\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Zuiker, develop, a blockbuster television series) -> Zuiker (5242ms)\nWho invented television?\tthe series\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (the series, developed for, television) -> the series (3347ms)\nWho invented television?\ta discipline\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (a discipline, has really developed with, television) -> a discipline (5242ms)\nWho invented television?\tthe person\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (the person, developed the show for, television) -> the person (5234ms)\nWho invented television?\tPunchcut\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Punchcut, developed, an innovative television) -> Punchcut (5234ms)\nWho invented television?\tReiser\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Reiser, developed, film , television) -> Reiser (5226ms)\nWho invented television?\tNight & Weekends\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Night & Weekends, develops, advertising , books , television) -> Night & Weekends (5234ms)\nWho invented television?\tNeil Postman\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Neil Postman, cannot be developed on, television) -> Neil Postman (4304ms)\nWho invented television?\trelationships\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (relationships, develop on, television) -> relationships (3347ms)\nWho invented television?\tscripts Weichert\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (scripts Weichert, developed for, television) -> scripts Weichert (3679ms)\nWho invented television?\tIndependent films\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Independent films, develop, television) -> Independent films (5242ms)\nWho invented television?\tThe Walking Dead\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (The Walking Dead, was developed for, television) -> The Walking Dead (5249ms)\nWho invented television?\tcommissions\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (commissions, develops original programming for, television) -> commissions (5242ms)\nWho invented television?\t?Gossip Girl?\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (?Gossip Girl?, was developed for, television) -> ?Gossip Girl? (5226ms)\nWho invented television?\tPanasonic\t0.5555555555530001\tWho invented television? -> $x: ($x, develop, television) -> (Panasonic, has been developing 3D standards for, television) -> Panasonic (5249ms)\nWho invented television?\tthe energy\t0.555555555552\tWho invented television? -> $x: ($x, do, watch television) -> (the energy, do something other than, watch television) -> the energy (5256ms)\nWho invented television?\t0.0\t0.555555555552\tWho invented television? -> $x: ($x, do, watch television) -> (0.0, Do, Prices Vary Watch television) -> 0.0 (5256ms)\nWho invented television?\ta day\t0.555555555552\tWho invented television? -> $x: ($x, do, watch television) -> (a day, does, the child watch television) -> a day (5256ms)\nWho invented television?\ttwo screens\t0.555555555552\tWho invented television? -> $x: ($x, create, watch television) -> (two screens, create, television-watching heaven) -> two screens (5256ms)\nWho invented television?\tPiper\t0.555555555552\tWho invented television? -> $x: ($x, do, watch television) -> (Piper, Does, n?t Watch Television) -> Piper (5256ms)\nWho invented television?\tchildren\t0.555555555552\tWho invented television? -> $x: ($x, do, watch television) -> (children, do, watch television) -> children (5256ms)\nWho invented television?\tnews\t0.555555555552\tWho invented television? -> $x: ($x, do, watch television) -> (news, does n?t count as, television watching) -> news (5256ms)\nWho invented television?\tthe evenings\t0.555555555552\tWho invented television? -> $x: (watch television, take place in, $x) -> (television watching, took place in, the evenings) -> the evenings (5256ms)\nWho invented television?\tthe 1930s and 1940s\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the 1930s and 1940s, found its way to, television) -> the 1930s and 1940s (5275ms)\nWho invented television?\ta collective American society\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (a collective American society, cannot be found on, television) -> a collective American society (5285ms)\nWho invented television?\tjuggling\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (juggling, found, television) -> juggling (5263ms)\nWho invented television?\tLauren Conrad\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Lauren Conrad, has found success on, television) -> Lauren Conrad (5269ms)\nWho invented television?\timages\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (images, found on, television) -> images (5285ms)\nWho invented television?\tdetail\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (detail, cannot be found on, television) -> detail (5269ms)\nWho invented television?\tCathode ray tubes\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Cathode ray tubes, are found in, televisions) -> Cathode ray tubes (5263ms)\nWho invented television?\tchaos demands stability\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (chaos demands stability, can be found in, television) -> chaos demands stability (5285ms)\nWho invented television?\tthe average person\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the average person, finds time to watch, television) -> the average person (5263ms)\nWho invented television?\tUPA\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (UPA, found great success on, television) -> UPA (5269ms)\nWho invented television?\tNon-standard English\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Non-standard English, can be found on, television) -> Non-standard English (5285ms)\nWho invented television?\tPBDEs\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (PBDEs, are found in, televisions) -> PBDEs (5285ms)\nWho invented television?\tcontent\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (content, found nowhere else on, television) -> content (5280ms)\nWho invented television?\tlittle sets\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (little sets, find, televisions) -> little sets (5275ms)\nWho invented television?\tregimens\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (regimens, can be found on, television) -> regimens (5280ms)\nWho invented television?\tGaming News\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Gaming News, Find Inspiration in, Television) -> Gaming News (5280ms)\nWho invented television?\tthe best dramatic writing\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the best dramatic writing, is found on, television) -> the best dramatic writing (5280ms)\nWho invented television?\tthe sale\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the sale, find bargains on, Televisions) -> the sale (5263ms)\nWho invented television?\tadverts\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (adverts, can be found on, television) -> adverts (5269ms)\nWho invented television?\tmultiples\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (multiples, can be found on, television) -> multiples (5280ms)\nWho invented television?\tGuests\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Guests, will find, television) -> Guests (5263ms)\nWho invented television?\tthe DS\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the DS, found on, televisions) -> the DS (5263ms)\nWho invented television?\tDigiCart recorders\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (DigiCart recorders, are found throughout, television) -> DigiCart recorders (5275ms)\nWho invented television?\tImagery\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Imagery, is found on, television) -> Imagery (5275ms)\nWho invented television?\tteachers\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (teachers, tried to find, televisions) -> teachers (5269ms)\nWho invented television?\tAugust Bose\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (August Bose, found work in, television) -> August Bose (5285ms)\nWho invented television?\tyoull\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (youll, find on, television) -> youll (5280ms)\nWho invented television?\ttournament action\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (tournament action, can be found on, television) -> tournament action (5263ms)\nWho invented television?\tthe cosmetic voices\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the cosmetic voices, found on, television) -> the cosmetic voices (5280ms)\nWho invented television?\tautomotive reviews\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (automotive reviews, cannot be found on, television) -> automotive reviews (5285ms)\nWho invented television?\tany William Castle films\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (any William Castle films, did find work in, television) -> any William Castle films (5275ms)\nWho invented television?\tthe sex\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the sex, found on, television) -> the sex (5269ms)\nWho invented television?\tmarilyn and\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (marilyn and, i find out on, television) -> marilyn and (5269ms)\nWho invented television?\tthe strongest narrative stories\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the strongest narrative stories, can be found on, television) -> the strongest narrative stories (5269ms)\nWho invented television?\tthe speakers\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the speakers, found in, televisions) -> the speakers (5285ms)\nWho invented television?\tindividuals\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (individuals, can find, televisions) -> individuals (5275ms)\nWho invented television?\tMarx\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Marx, find, television) -> Marx (5256ms)\nWho invented television?\tI?ve\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (I?ve, found, television) -> I?ve (5280ms)\nWho invented television?\tGroucho Marx\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Groucho Marx, find, television) -> Groucho Marx (5285ms)\nWho invented television?\tTennessee employees\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Tennessee employees, have reported finding, televisions) -> Tennessee employees (5275ms)\nWho invented television?\tOpen and shut cases\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Open and shut cases, are only found on, television) -> Open and shut cases (5256ms)\nWho invented television?\tyou?ll\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (you?ll, find my article on, television) -> you?ll (5263ms)\nWho invented television?\tcritical information\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (critical information, found nowhere else on, television) -> critical information (5280ms)\nWho invented television?\tComputer imagery\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Computer imagery, is found on, television) -> Computer imagery (5269ms)\nWho invented television?\tlead , mercury and cadmium\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (lead , mercury and cadmium, can be found in, televisions) -> lead , mercury and cadmium (5269ms)\nWho invented television?\tfounder\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (founder, has found, television) -> founder (5280ms)\nWho invented television?\tStory lines\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Story lines, can be found on, television) -> Story lines (5280ms)\nWho invented television?\tnowadays such subtitled movies\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (nowadays such subtitled movies, can be found on, television) -> nowadays such subtitled movies (5285ms)\nWho invented television?\tThe researchers\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (The researchers, found the content of, television) -> The researchers (5256ms)\nWho invented television?\tthe basic English approach\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the basic English approach, found on, television) -> the basic English approach (5275ms)\nWho invented television?\tthe anime crap\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the anime crap, found on, television) -> the anime crap (5280ms)\nWho invented television?\ta fire retardant\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (a fire retardant, found in, televisions) -> a fire retardant (5269ms)\nWho invented television?\tSuch a menace to the Christian\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Such a menace to the Christian, to be found in, television) -> Such a menace to the Christian (5275ms)\nWho invented television?\t33 records\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (33 records, found for, Television) -> 33 records (5263ms)\nWho invented television?\tthe humorous stunts\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the humorous stunts, found on, television) -> the humorous stunts (5280ms)\nWho invented television?\tBenjamin\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Benjamin, finds, television) -> Benjamin (5280ms)\nWho invented television?\tCurrent modes\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Current modes, are also found on, television) -> Current modes (5263ms)\nWho invented television?\tAlums\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Alums, have found careers in, television) -> Alums (5275ms)\nWho invented television?\tthe comedians\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the comedians, found their niche in, television) -> the comedians (5269ms)\nWho invented television?\ta handsome , privileged man\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (a handsome , privileged man, finds fame on, television) -> a handsome , privileged man (5263ms)\nWho invented television?\tthe stereotypes\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the stereotypes, found on, television) -> the stereotypes (5275ms)\nWho invented television?\tAiles\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Ailes, found his calling in, television) -> Ailes (5256ms)\nWho invented television?\tcompetition\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (competition, finds an outlet in, television) -> competition (5263ms)\nWho invented television?\tIce-T\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Ice-T, can be found on, television) -> Ice-T (5269ms)\nWho invented television?\tsexual images\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (sexual images, found on, television) -> sexual images (5275ms)\nWho invented television?\tbull sharks\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (bull sharks, can be found on, television) -> bull sharks (5280ms)\nWho invented television?\tPaul\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Paul, finds unexpected fame on, television) -> Paul (5269ms)\nWho invented television?\tDay\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Day, found success in, television) -> Day (5263ms)\nWho invented television?\tviewers\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (viewers, can find elsewhere on, television) -> viewers (5275ms)\nWho invented television?\tLiquid-crystal displays\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Liquid-crystal displays, found in, televisions) -> Liquid-crystal displays (5285ms)\nWho invented television?\tsociety today\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (society today, is found on, television) -> society today (5256ms)\nWho invented television?\tCastellari\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Castellari, found work in, television) -> Castellari (5275ms)\nWho invented television?\tmagnetism\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (magnetism, is often found in, televisions) -> magnetism (5285ms)\nWho invented television?\tBusiness Children\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Business Children, often find, television) -> Business Children (5269ms)\nWho invented television?\tDon Kent\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Don Kent, found fame on, television) -> Don Kent (5256ms)\nWho invented television?\tthe success Kaling\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the success Kaling, has found in, television) -> the success Kaling (5275ms)\nWho invented television?\tthe plastics hardener\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the plastics hardener, is found in, televisions) -> the plastics hardener (5256ms)\nWho invented television?\tChildren\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Children, often find, television) -> Children (5275ms)\nWho invented television?\tPearce\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (Pearce, found other work in, television) -> Pearce (5263ms)\nWho invented television?\tthe sharpest comic writing\t0.555555555551\tWho invented television? -> $x: ($x, found, television) -> (the sharpest comic writing, ever found on, television) -> the sharpest comic writing (5280ms)\nWho invented television?\t1964\t0.44444444444200004\tWho invented television? -> $x: (tv, be invent in, $x) -> (Plasma TVs, were actually invented back in, 1964) -> 1964 (5285ms)\nWho invented television?\tthe USA other countries\t0.44444444444200004\tWho invented television? -> $x: (tv, be invent in, $x) -> (TV, was invented in, the USA other countries) -> the USA other countries (5285ms)\nWho invented television?\tAurecea\t0.44444444444200004\tWho invented television? -> $x: (tv, be invent in, $x) -> (TV and movies, have n?t been invented yet in, Aurecea) -> Aurecea (5285ms)\nWho invented television?\t1920\t0.44444444444200004\tWho invented television? -> $x: (tv, be invent in, $x) -> (TV EV, was invented in, 1920) -> 1920 (5290ms)\nWho invented television?\tthe same university\t0.44444444444200004\tWho invented television? -> $x: (tv, be invent in, $x) -> (flat screen TVs, were invented in, the same university) -> the same university (5290ms)\nWho invented television?\t1945\t0.44444444444200004\tWho invented television? -> $x: (tv, be invent in, $x) -> (The frozen TV dinner, was invented in, 1945) -> 1945 (5290ms)\nWho invented television?\tRigby\t0.44444444444200004\tWho invented television? -> $x: (tv, be invent in, $x) -> (TV, was invented in, Rigby) -> Rigby (5290ms)\nWho invented television?\tfrantic carrying out work\t0.444444444441\tWho invented television? -> $x: ($x, exactly be, television) -> (frantic carrying out work, exactly is, Satellite television) -> frantic carrying out work (5290ms)\nWho invented television?\tThe same\t0.444444444441\tWho invented television? -> $x: ($x, exactly be, television) -> (The same, can be said exactly on, the television side) -> The same (5290ms)\nWho invented television?\ta seat\t0.444444444441\tWho invented television? -> $x: ($x, exactly be, television) -> (a seat, exactly is on, television) -> a seat (5290ms)\nWho invented television?\tPapua New Guinea\t0.444444444441\tWho invented television? -> $x: ($x, have invent, television) -> (Papua New Guinea, had invented, the television) -> Papua New Guinea (5295ms)\nWho invented television?\tthe cave-men\t0.444444444441\tWho invented television? -> $x: ($x, have invent, television) -> (the cave-men, had invented, television many thousand years) -> the cave-men (5290ms)\nWho invented television?\tthe fad\t0.444444444441\tWho invented television? -> $x: (television, be create on, $x) -> (A cartoon television show, was created based on, the fad) -> the fad (5295ms)\nWho invented television?\tthe body\t0.444444444441\tWho invented television? -> $x: ($x, exactly be, television) -> (the body, is replicated exactly on, the television screen) -> the body (5290ms)\nWho invented television?\tWeb-captions\t0.444444444441\tWho invented television? -> $x: ($x, exactly be, television) -> (Web-captions, are exactly like, television and film captions) -> Web-captions (5290ms)\nWho invented television?\tthe concept\t0.444444444441\tWho invented television? -> $x: (television, be create on, $x) -> (television programs, have been created based on, the concept) -> the concept (5290ms)\nWho invented television?\tLife\t0.444444444441\tWho invented television? -> $x: ($x, exactly be, television) -> (Life, was exactly like, the television show Happy Days) -> Life (5290ms)\nWho invented television?\tnobody\t0.444444444441\tWho invented television? -> $x: ($x, have invent, television) -> (nobody, had invented, television) -> nobody (5290ms)\nWho invented television?\tCanada\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (American films and television shows, are made in, Canada) -> Canada (5299ms)\nWho invented television?\t1996\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (A television movie, was made in, 1996) -> 1996 (5299ms)\nWho invented television?\tEngland\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (The first public television Broadcast, were made in, England) -> England (5304ms)\nWho invented television?\trecent years\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (Commercial television, has been making gains in, recent years) -> recent years (5299ms)\nWho invented television?\tKiev\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (RT? Television, will be made in, Kiev) -> Kiev (5299ms)\nWho invented television?\tRussian\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television, were always first made in, Russian) -> Russian (5299ms)\nWho invented television?\t1984\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (His first film and television appearances, were made in, 1984) -> 1984 (5299ms)\nWho invented television?\tthe language\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television and radio broadcasts, are made in, the language) -> the language (5295ms)\nWho invented television?\tthe Vancouver area\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television and radio, were made in, the Vancouver area) -> the Vancouver area (5295ms)\nWho invented television?\tcooperation\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (the television programme, had been made in, cooperation) -> cooperation (5295ms)\nWho invented television?\tthe region\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television programs, will soon be made available in, the region) -> the region (5295ms)\nWho invented television?\tChina\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (Your television, may be made in, China) -> China (5299ms)\nWho invented television?\treality TV shows\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television, are making waves in, reality TV shows) -> reality TV shows (5295ms)\nWho invented television?\tTexas\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (43 feature films and television shows, were made in, Texas) -> Texas (5299ms)\nWho invented television?\tpart\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (the television, is made in, part) -> part (5299ms)\nWho invented television?\ta chair\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (an anti-Israeli television show, was made to sit in, a chair) -> a chair (5295ms)\nWho invented television?\tconsultation\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (press and/or television, will always be made in, consultation) -> consultation (5304ms)\nWho invented television?\tLondon and Dakar\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (Television, was made in, London and Dakar) -> London and Dakar (5304ms)\nWho invented television?\tflat screen form\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (LCD televisions, are both made in, flat screen form) -> flat screen form (5295ms)\nWho invented television?\tKaliningrad\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (one in three televisions in Russia, are made in, Kaliningrad) -> Kaliningrad (5304ms)\nWho invented television?\tanime\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television, is a huge step in making, anime) -> anime (5299ms)\nWho invented television?\tpartnership\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (the television special, was made in, partnership) -> partnership (5299ms)\nWho invented television?\tTelevision Production Tour\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television, is made in, Television Production Tour) -> Television Production Tour (5299ms)\nWho invented television?\tAsia\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (Television sets and computers, are made in, Asia) -> Asia (5295ms)\nWho invented television?\tthe 16x9 screen aspect ratio\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (Plasma televisions, are made in, the 16x9 screen aspect ratio) -> the 16x9 screen aspect ratio (5299ms)\nWho invented television?\tthe early 1960s\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television programs, were made back in, the early 1960s) -> the early 1960s (5295ms)\nWho invented television?\tEgypt\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television serials, were made in, Egypt) -> Egypt (5299ms)\nWho invented television?\t1936\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (the first television transmissions, were made in, 1936) -> 1936 (5304ms)\nWho invented television?\t1957\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (extremely rare television appearances, was made in, 1957) -> 1957 (5299ms)\nWho invented television?\t1950\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (No, television history, was being made in, 1950) -> 1950 (5304ms)\nWho invented television?\tDetroit\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (a television, was actually made in, Detroit) -> Detroit (5299ms)\nWho invented television?\tMilan\t0.44444444444\tWho invented television? -> $x: (television, be make in, $x) -> (television channels, are making plans to be in, Milan) -> Milan (5295ms)\nWho invented television?\ta mark\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (a mark, had developed on, my LCD) -> a mark (5329ms)\nWho invented television?\ta running program\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (a running program, developed, new satellite cells) -> a running program (5312ms)\nWho invented television?\twork\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (work, take to develop, an in-house LCD system) -> work (5331ms)\nWho invented television?\tMPA\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (MPA, develops, full satellite communications system) -> MPA (5320ms)\nWho invented television?\tthe Air Force\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the Air Force, was developing two different types of, satellites) -> the Air Force (5331ms)\nWho invented television?\ta screen cleaner\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (a screen cleaner, developed for, use specifically on LCD screens) -> a screen cleaner (5323ms)\nWho invented television?\ta main base\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (a main base, is developing, satellite Centres) -> a main base (5329ms)\nWho invented television?\tDOME\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (DOME, develop, the first medical imaging LCD display) -> DOME (5312ms)\nWho invented television?\tCelestron\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Celestron, has developed, the first digital LCD microscope) -> Celestron (5326ms)\nWho invented television?\tDynacon\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Dynacon, develops, satellite control systems products) -> Dynacon (5323ms)\nWho invented television?\tscientists\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (scientists, developed from, satellite imaging) -> scientists (5312ms)\nWho invented television?\tQatar\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite television) -> (Qatar, took the lead in developing, satellite television) -> Qatar (5316ms)\nWho invented television?\tthin-film transistor\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (thin-film transistor, has developed, the first 70-inch LCD panel) -> thin-film transistor (5323ms)\nWho invented television?\tIER\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (IER, developed, satellite-mounted magnetic recorders) -> IER (5323ms)\nWho invented television?\tsoftware tools\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (software tools, were developed originally for, satellite) -> software tools (5323ms)\nWho invented television?\tSylvania\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Sylvania, developed, the idea for use in satellites) -> Sylvania (5326ms)\nWho invented television?\tESA\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (ESA, has developed, the satellites) -> ESA (5335ms)\nWho invented television?\tyoung African adults\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (young African adults, developed, a satellite package) -> young African adults (5308ms)\nWho invented television?\tInnolux\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Innolux, is currently developing, a 26? wide LCD monitor panel) -> Innolux (5308ms)\nWho invented television?\tJPL\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (JPL, developed, the first American orbital satellite) -> JPL (5308ms)\nWho invented television?\tThe move\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (The move, is to develop, satellites) -> The move (5331ms)\nWho invented television?\tBAS\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (BAS, have developed, innovative satellite) -> BAS (5326ms)\nWho invented television?\tThe company\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (The company, has developed, LCD panels) -> The company (5331ms)\nWho invented television?\tDr. Hofman\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Dr. Hofman, develops, satellite systems) -> Dr. Hofman (5316ms)\nWho invented television?\tConclusion Aerospace\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Conclusion Aerospace, has been working to develop, satellites) -> Conclusion Aerospace (5329ms)\nWho invented television?\tACSER\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (ACSER, will develop technologies for, satellite navigation) -> ACSER (5308ms)\nWho invented television?\tVietnam\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Vietnam, developed, a spy satellite) -> Vietnam (5320ms)\nWho invented television?\tSSC\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (SSC, develops, state-of-the-art satellites) -> SSC (5331ms)\nWho invented television?\tgrowth capital\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (growth capital, develop, satellite facilities) -> growth capital (5304ms)\nWho invented television?\tsmartphones\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (smartphones, could feasibly develop apps for, satellites) -> smartphones (5320ms)\nWho invented television?\ta high gloss\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (a high gloss, specifically developed for, LCD screens) -> a high gloss (5316ms)\nWho invented television?\tNorsat\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Norsat, develops, ground-based satellite equipment) -> Norsat (5320ms)\nWho invented television?\tthe group\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the group, developed, the Copernicus satellite) -> the group (5323ms)\nWho invented television?\tBristol Motor Speedway\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Bristol Motor Speedway, developed, satellite parking lots) -> Bristol Motor Speedway (5312ms)\nWho invented television?\tJune 8 , 2010 Sharp\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (June 8 , 2010 Sharp, has developed, a touch screen LCD) -> June 8 , 2010 Sharp (5335ms)\nWho invented television?\tSSF\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (SSF, originally developed software for, satellites) -> SSF (5323ms)\nWho invented television?\tMelbourne\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Melbourne, developed, the satellite?s L-band reflector) -> Melbourne (5326ms)\nWho invented television?\tDefense\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Defense, developed, this satellite system) -> Defense (5331ms)\nWho invented television?\tthe first LCD producer\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (the first LCD producer, has developed, a 2.2? LCD) -> the first LCD producer (5320ms)\nWho invented television?\tCU students\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (CU students, developed, the DINO satellite mission) -> CU students (5323ms)\nWho invented television?\tan aerospace division\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (an aerospace division, developed, satellite tracking systems) -> an aerospace division (5326ms)\nWho invented television?\tUK,\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (UK,, has developed, a low-cost LCD multimedia projector) -> UK, (5312ms)\nWho invented television?\tMedicare contractors\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Medicare contractors, develop, LCDs) -> Medicare contractors (5320ms)\nWho invented television?\tOrbit Logic\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Orbit Logic, developed, the Sibyl imaging satellite tasking app) -> Orbit Logic (5323ms)\nWho invented television?\tSamsung\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Samsung, has developed a new technology for, LCD panels) -> Samsung (5331ms)\nWho invented television?\tthe British government\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the British government, developed, the Skynet 2 satellites) -> the British government (5329ms)\nWho invented television?\tPro Tech\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Pro Tech, developed, the first satellite tracking system) -> Pro Tech (5323ms)\nWho invented television?\tadults\t0.333333333334\tWho invented television? -> $x: ($x, develop, radio and television) -> (adults, helped develop, Christian radio and television) -> adults (5331ms)\nWho invented television?\tthe Government\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the Government, had also planned to develop, satellites) -> the Government (5308ms)\nWho invented television?\tINPE\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (INPE, develops, satellites) -> INPE (5308ms)\nWho invented television?\tThe Swiss Space Center\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (The Swiss Space Center, is developing, a satellite) -> The Swiss Space Center (5312ms)\nWho invented television?\tEpson\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Epson, develops, the LCD D5/D5+ panels) -> Epson (5316ms)\nWho invented television?\tTechnology\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Technology, developed, the first U.S. satellite) -> Technology (5312ms)\nWho invented television?\tTeam Xecuter\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Team Xecuter, has developed, a Parallel LCD interface) -> Team Xecuter (5316ms)\nWho invented television?\tSinger\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Singer, developed, satellites) -> Singer (5320ms)\nWho invented television?\tLG Display\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (LG Display, developed, a 14.1 inch LCD panel) -> LG Display (5326ms)\nWho invented television?\tinstrumentation\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (instrumentation, has been developed using, satellite instruments) -> instrumentation (5335ms)\nWho invented television?\tthe U.S. Navy\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the U.S. Navy, developed, the Timation satellite) -> the U.S. Navy (5323ms)\nWho invented television?\tNASA\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (NASA, develop, the satellite and instrument) -> NASA (5331ms)\nWho invented television?\tApr May Sony\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Apr May Sony, develops, new 4K SXRD high-resolution LCD panel) -> Apr May Sony (5312ms)\nWho invented television?\tmultiplexing schemes\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (multiplexing schemes, will be developed for, satellites) -> multiplexing schemes (5304ms)\nWho invented television?\ttechniques\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (techniques, developed from, satellite imaging) -> techniques (5316ms)\nWho invented television?\tMicrosoft and Samsung\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Microsoft and Samsung, worked closely to develop, the LCD panel) -> Microsoft and Samsung (5308ms)\nWho invented television?\ta few species\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (a few species, have been developed as, satellite systems) -> a few species (5312ms)\nWho invented television?\tThe UK\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (The UK, is developing, \" satellite accounts) -> The UK (5308ms)\nWho invented television?\t2 patients\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (2 patients, developed, satellite nodules) -> 2 patients (5329ms)\nWho invented television?\tDr. Steven\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Dr. Steven, develop, the first medical imaging LCD display) -> Dr. Steven (5323ms)\nWho invented television?\tThe INPE\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (The INPE, develops, satellites and conducts space) -> The INPE (5320ms)\nWho invented television?\tThe Canadian Space Agency\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (The Canadian Space Agency, develops, rockets and satellites) -> The Canadian Space Agency (5320ms)\nWho invented television?\tThales Alenia Space\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Thales Alenia Space, developed, these satellites) -> Thales Alenia Space (5333ms)\nWho invented television?\tthe Indian space programme\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the Indian space programme, is to develop, satellites) -> the Indian space programme (5304ms)\nWho invented television?\tan active part\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (an active part, develop, mini-satellite technologies) -> an active part (5335ms)\nWho invented television?\tenhanced seismic data evaluation\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (enhanced seismic data evaluation, then develop, satellites) -> enhanced seismic data evaluation (5312ms)\nWho invented television?\tThe association\t0.333333333334\tWho invented television? -> $x: ($x, develop, radio and television) -> (The association, seeks to develop, television and radio business) -> The association (5331ms)\nWho invented television?\tSwitzerland\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Switzerland, are developing a new generation of, satellites) -> Switzerland (5329ms)\nWho invented television?\ta convergence\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (a convergence, develop, satellite monitoring) -> a convergence (5312ms)\nWho invented television?\tNDRC\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (NDRC, developed, GPS satellite positioning technology) -> NDRC (5316ms)\nWho invented television?\tMr. Gale\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Mr. Gale, developed, satellite Internet communications systems) -> Mr. Gale (5329ms)\nWho invented television?\tOrbital\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Orbital, is a leader in developing, satellites) -> Orbital (5329ms)\nWho invented television?\tKevin\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Kevin, developed, the trade name ?Satellite Marketing) -> Kevin (5316ms)\nWho invented television?\tBell Labs\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Bell Labs, developed, the first communications satellites) -> Bell Labs (5323ms)\nWho invented television?\tsurprisingly after 6 months\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (surprisingly after 6 months, developed, a LCD problem) -> surprisingly after 6 months (5326ms)\nWho invented television?\tcompanies\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (companies, have already developed, UltraThin LCD models) -> companies (5326ms)\nWho invented television?\tSpecial versions\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Special versions, have been developed for, LCD manufacturing) -> Special versions (5316ms)\nWho invented television?\tJAXA\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (JAXA, developed, the satellite) -> JAXA (5329ms)\nWho invented television?\tCDC\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (CDC, will continue to develop, satellite courses) -> CDC (5320ms)\nWho invented television?\twe?ve\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (we?ve, developed, satellite offices) -> we?ve (5329ms)\nWho invented television?\tCMO\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (CMO, developed, this LCD) -> CMO (5331ms)\nWho invented television?\tconsumers\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (consumers, have developed criteria for, LCD visual tests) -> consumers (5323ms)\nWho invented television?\tPixel Qi\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Pixel Qi, developed, a hybrid LCD screen) -> Pixel Qi (5316ms)\nWho invented television?\tStudents\t0.333333333334\tWho invented television? -> $x: ($x, develop, movie and television) -> (Students, develop their passion for, movies and television) -> Students (5335ms)\nWho invented television?\tthe white-smocked scientist\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the white-smocked scientist, develops, his satellite colony) -> the white-smocked scientist (5329ms)\nWho invented television?\t8.117 Selected minor ports\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (8.117 Selected minor ports, would be developed as, satellites) -> 8.117 Selected minor ports (5316ms)\nWho invented television?\tThe church\t0.333333333334\tWho invented television? -> $x: ($x, develop, radio and television) -> (The church, also developed, radio and television spots) -> The church (5326ms)\nWho invented television?\tAxiomtek\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Axiomtek, develops, various LCD wiring kits) -> Axiomtek (5316ms)\nWho invented television?\tClone High\t0.333333333334\tWho invented television? -> $x: ($x, develop, television producer) -> (Clone High, was developed by, television producer Bill Lawrence) -> Clone High (5308ms)\nWho invented television?\tthe college\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the college, developed, a satellite campus) -> the college (5304ms)\nWho invented television?\t1977 NASA\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (1977 NASA, developed, the Satellite Arts Project) -> 1977 NASA (5304ms)\nWho invented television?\tNHK\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (NHK, developed, a HD satellite broadcast system) -> NHK (5308ms)\nWho invented television?\tPakistan\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Pakistan, developed, the Badr-B satellite) -> Pakistan (5331ms)\nWho invented television?\tSaTReC\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (SaTReC, continues to develop, satellites) -> SaTReC (5308ms)\nWho invented television?\tEUMETSAT\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (EUMETSAT, develops, space based satellite systems) -> EUMETSAT (5329ms)\nWho invented television?\tMother Angelica\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite television) -> (Mother Angelica, has developed, a satellite television network) -> Mother Angelica (5329ms)\nWho invented television?\tThe military\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (The military, is also developing, stealth satellites) -> The military (5323ms)\nWho invented television?\tET LG Display Co Ltd.\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (ET LG Display Co Ltd., has developed, an LCD panel) -> ET LG Display Co Ltd. (5331ms)\nWho invented television?\tthe NASA\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (the NASA, developed, LCD light system) -> the NASA (5308ms)\nWho invented television?\tIndia\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (India, developed, high-resolution remote sensing satellite) -> India (5326ms)\nWho invented television?\tBSkyB\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite television) -> (BSkyB, have very successfully developed, satellite television) -> BSkyB (5316ms)\nWho invented television?\tHyundai\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (Hyundai, is developing this type of, Lcd monitor) -> Hyundai (5326ms)\nWho invented television?\tSuparco\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Suparco, developed most of, the satellite?s) -> Suparco (5312ms)\nWho invented television?\tBoeing Co.\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Boeing Co., develop, the prototype satellites) -> Boeing Co. (5316ms)\nWho invented television?\tthe National Reconnaissance Office\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the National Reconnaissance Office, develops, satellites) -> the National Reconnaissance Office (5304ms)\nWho invented television?\tAllied Signal\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Allied Signal, developing, satellite systems) -> Allied Signal (5331ms)\nWho invented television?\tchb LG Philips\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (chb LG Philips, develops, dirt-resistant LCD Smudges) -> chb LG Philips (5308ms)\nWho invented television?\ta custom\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (a custom, developed, satellite network) -> a custom (5331ms)\nWho invented television?\tthe JV\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the JV, will develop, satellite technologies) -> the JV (5308ms)\nWho invented television?\tthe state government\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the state government, develop, new satellite townships) -> the state government (5329ms)\nWho invented television?\tproducts\t0.333333333334\tWho invented television? -> $x: ($x, develop, lcd) -> (products, have been developed to serve, LCD display) -> products (5312ms)\nWho invented television?\tthe Chinese ?will\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the Chinese ?will, develop, new satellites) -> the Chinese ?will (5326ms)\nWho invented television?\tHamilton\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Hamilton, could develop, satellite lots) -> Hamilton (5320ms)\nWho invented television?\thigh performance solar cells\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (high performance solar cells, developed to, power satellites) -> high performance solar cells (5312ms)\nWho invented television?\tthe Courier program\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (the Courier program, was to develop, a satellite) -> the Courier program (5326ms)\nWho invented television?\tMwalimu\t0.333333333334\tWho invented television? -> $x: ($x, develop, satellite) -> (Mwalimu, plans to develop, satellite campuses) -> Mwalimu (5312ms)\nWho invented television?\tYoull\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Youll, find, the satellites) -> Youll (5345ms)\nWho invented television?\tthe very worst\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the very worst, find, a good satellite monitor) -> the very worst (5337ms)\nWho invented television?\tthe picture tube\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (the picture tube, found in, modern television sets) -> the picture tube (5337ms)\nWho invented television?\tThe planet Jupiter\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The planet Jupiter, was found to have, satellites) -> The planet Jupiter (5343ms)\nWho invented television?\tgoods anyone\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (goods anyone, found in, TELEVISION SET) -> goods anyone (5337ms)\nWho invented television?\tLeanna\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (Leanna, may be found working, film and television sets) -> Leanna (5345ms)\nWho invented television?\tHana\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Hana, finds, the satellite) -> Hana (5341ms)\nWho invented television?\tthe content\t0.333333333332\tWho invented television? -> $x: ($x, found, television and movie) -> (the content, found in, both television shows and movies) -> the content (5343ms)\nWho invented television?\tI?ve\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (I?ve, found, a satellite image) -> I?ve (5335ms)\nWho invented television?\tthe classroom\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (the classroom, could find items such as, a television set) -> the classroom (5341ms)\nWho invented television?\tKnowledge Networks\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Knowledge Networks, found, that satellite penetration) -> Knowledge Networks (5345ms)\nWho invented television?\tseven different campuses\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (seven different campuses, find, a satellite location) -> seven different campuses (5339ms)\nWho invented television?\tYou?ll\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (You?ll, find, digital satellite television) -> You?ll (5345ms)\nWho invented television?\ta garmin\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (a garmin, would only find, satellites) -> a garmin (5335ms)\nWho invented television?\tthe MotoSat\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the MotoSat, found, the satellite) -> the MotoSat (5343ms)\nWho invented television?\tnew HD channels\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (new HD channels, find a place on, satellite) -> new HD channels (5345ms)\nWho invented television?\ta great GPS\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (a great GPS, finds, satellites) -> a great GPS (5341ms)\nWho invented television?\tSeveral asteroids\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Several asteroids, have already been found to have, satellites) -> Several asteroids (5345ms)\nWho invented television?\tFree software downloads\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Free software downloads, Find, satellite tv) -> Free software downloads (5345ms)\nWho invented television?\ttv-set\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (tv-set, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Television%20set) -> tv-set (5337ms)\nWho invented television?\tkids\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (kids, find, the satellite) -> kids (5343ms)\nWho invented television?\tany perspective\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (any perspective, find, satellites) -> any perspective (5337ms)\nWho invented television?\tthe initial start-up\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the initial start-up, took a while to find, satellites) -> the initial start-up (5345ms)\nWho invented television?\tspecial cans\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (special cans, will be found by, satellites) -> special cans (5345ms)\nWho invented television?\twires\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (wires, found on, NTSC television sets) -> wires (5343ms)\nWho invented television?\tone or two channels\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (one or two channels, find, a satellite) -> one or two channels (5341ms)\nWho invented television?\tthe dish\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the dish, find, the satellite) -> the dish (5341ms)\nWho invented television?\tGus II\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Gus II, found, a satellite) -> Gus II (5344ms)\nWho invented television?\tfour times larger than\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (four times larger than, found on, other television sets) -> four times larger than (5344ms)\nWho invented television?\tUK, US\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (UK, US, find, satellite phone codes) -> UK, US (5345ms)\nWho invented television?\tThe GPS radio\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The GPS radio, typically finds, satellites) -> The GPS radio (5337ms)\nWho invented television?\tThe eTrex\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The eTrex, finds, available satellites) -> The eTrex (5344ms)\nWho invented television?\tNvi  3790LMT\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Nvi  3790LMT, will finds, satellites) -> Nvi  3790LMT (5341ms)\nWho invented television?\tChloe\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Chloe, found, a satellite feed) -> Chloe (5341ms)\nWho invented television?\tthe district manager\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the district manager, found, several Satellite violations) -> the district manager (5337ms)\nWho invented television?\tThe Voyager team\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The Voyager team, found, 10 more Uranian satellites) -> The Voyager team (5339ms)\nWho invented television?\tThe products\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The products, have found its way into, satellites) -> The products (5335ms)\nWho invented television?\tthe cast\t0.333333333332\tWho invented television? -> $x: ($x, found, television and movie) -> (the cast, found new work in, movies and television) -> the cast (5335ms)\nWho invented television?\tBruce Bastian\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Bruce Bastian, found, Satellite Software International) -> Bruce Bastian (5337ms)\nWho invented television?\tCathode Ray Tubes\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (Cathode Ray Tubes, were found in, all electronic television sets) -> Cathode Ray Tubes (5339ms)\nWho invented television?\tthe national investigation\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the national investigation, found, the satellite TV provider) -> the national investigation (5345ms)\nWho invented television?\tthe violence\t0.333333333332\tWho invented television? -> $x: ($x, found, television and movie) -> (the violence, found in, video games , movies , and television) -> the violence (5339ms)\nWho invented television?\tOne common engine design\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (One common engine design, found on, satellites) -> One common engine design (5339ms)\nWho invented television?\tNM ?\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (NM ?, Find, Satellite TV Deals) -> NM ? (5344ms)\nWho invented television?\tSatHunter\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (SatHunter, Find, TV satellites) -> SatHunter (5335ms)\nWho invented television?\tThe iNetVu mobile satellite system\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The iNetVu mobile satellite system, finds, the right satellite) -> The iNetVu mobile satellite system (5337ms)\nWho invented television?\ttechnology\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (technology, found in, flat screen television sets) -> technology (5344ms)\nWho invented television?\ta small compass\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (a small compass, find, the satellite direction) -> a small compass (5339ms)\nWho invented television?\tProducers\t0.333333333332\tWho invented television? -> $x: ($x, found, television and movie) -> (Producers, find new music for, movies and television) -> Producers (5344ms)\nWho invented television?\tloan\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (loan, could be able to find, a television or television set) -> loan (5344ms)\nWho invented television?\tThe unit\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The unit, found, its satellite connection) -> The unit (5343ms)\nWho invented television?\tGPS\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (GPS, finds, the satellite) -> GPS (5343ms)\nWho invented television?\tThe Voyagers\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The Voyagers, found, 22 new satellites) -> The Voyagers (5341ms)\nWho invented television?\tThe FTA\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The FTA, are found through, satellite) -> The FTA (5345ms)\nWho invented television?\tthe familiar TV tube\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (the familiar TV tube, found in, most 'regular ' television sets) -> the familiar TV tube (5344ms)\nWho invented television?\tthe receivers\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the receivers, find, the satellites) -> the receivers (5344ms)\nWho invented television?\tthe double motor system\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the double motor system, finds, the satellites) -> the double motor system (5344ms)\nWho invented television?\tequipment\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (equipment, previously found mainly on, television and movie sets) -> equipment (5337ms)\nWho invented television?\tN?vi 3790LMT\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (N?vi 3790LMT, will finds, satellites) -> N?vi 3790LMT (5341ms)\nWho invented television?\tAssemble antennas\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Assemble antennas, find, satellite) -> Assemble antennas (5344ms)\nWho invented television?\tthe Holux\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the Holux, found loads of, satellites) -> the Holux (5339ms)\nWho invented television?\tSIDIP technology\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (SIDIP technology, will also find wide application in, satellite) -> SIDIP technology (5344ms)\nWho invented television?\tthe battery pack\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (the battery pack, found in, most portable television sets) -> the battery pack (5337ms)\nWho invented television?\tMarch 15/16\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (March 15/16, found, 7 satellites) -> March 15/16 (5337ms)\nWho invented television?\tLuis Mariano Paz\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Luis Mariano Paz, found, the satellite photo) -> Luis Mariano Paz (5345ms)\nWho invented television?\ta Time\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (a Time, can be found on, television sets) -> a Time (5339ms)\nWho invented television?\tTime\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Time, find, those satellites) -> Time (5343ms)\nWho invented television?\tInternet\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Internet, finds, the satellite) -> Internet (5341ms)\nWho invented television?\tAGPS information\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (AGPS information, may also help in finding, satellites) -> AGPS information (5343ms)\nWho invented television?\tan author\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (an author, Find, Satellite TV Providers) -> an author (5335ms)\nWho invented television?\treentry\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (reentry, soon found applications on, satellites) -> reentry (5339ms)\nWho invented television?\tThe MV-3500\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The MV-3500, finds, the satellite) -> The MV-3500 (5345ms)\nWho invented television?\tsharpness\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (sharpness, is found in, most modern television sets) -> sharpness (5335ms)\nWho invented television?\ttext/html S A T E L L\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (text/html S A T E L L, Find, a satellite) -> text/html S A T E L L (5335ms)\nWho invented television?\tvisitors\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (visitors, find, the Satellite Internet) -> visitors (5345ms)\nWho invented television?\tAdapting technology\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (Adapting technology, found in, flat screen television sets) -> Adapting technology (5341ms)\nWho invented television?\ta device\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (a device, is usually found on, a regular television set) -> a device (5344ms)\nWho invented television?\tYou?ll\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (You?ll, find two simple types of, television sets) -> You?ll (5343ms)\nWho invented television?\tMr. Moto\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Mr. Moto, found, his satellite) -> Mr. Moto (5344ms)\nWho invented television?\tinternet tv\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (internet tv, will find its way to, your television set) -> internet tv (5345ms)\nWho invented television?\tThe tournaments\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (The tournaments, can be found as, satellites) -> The tournaments (5345ms)\nWho invented television?\tparticle accelerators\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (particle accelerators, are those found in, television sets) -> particle accelerators (5339ms)\nWho invented television?\tthe system\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the system, finds, the satellite) -> the system (5341ms)\nWho invented television?\tMaryland\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Maryland, found, the satellite) -> Maryland (5343ms)\nWho invented television?\tSurvey crews\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Survey crews, found, satellite infestation) -> Survey crews (5341ms)\nWho invented television?\tLenny Cacchio\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (Lenny Cacchio, find, myself yelling at the television set) -> Lenny Cacchio (5339ms)\nWho invented television?\taccident\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (accident, found, a satellite image) -> accident (5343ms)\nWho invented television?\tStep 3\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (Step 3, Find, the desired satellite) -> Step 3 (5339ms)\nWho invented television?\tthe app\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the app, finds, GPS satellites) -> the app (5344ms)\nWho invented television?\tthe Garmin\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the Garmin, found, the satellites) -> the Garmin (5339ms)\nWho invented television?\tdavid-nevins\t0.333333333332\tWho invented television? -> $x: ($x, found, television producer) -> (david-nevins, can be found on Wikipedia at, http://en.wikipedia.org/wiki/David%20Nevins%20(television%20producer)) -> david-nevins (5343ms)\nWho invented television?\ta RCA connector\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (a RCA connector, can be found on, most television sets) -> a RCA connector (5337ms)\nWho invented television?\tthe same technology\t0.333333333332\tWho invented television? -> $x: ($x, found, television set) -> (the same technology, found with, Sony ?s Bravia television sets) -> the same technology (5343ms)\nWho invented television?\tthe Lick Observatory\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (the Lick Observatory, found, a fifth satellite) -> the Lick Observatory (5343ms)\nWho invented television?\ttrue free-to-air content\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (true free-to-air content, found on, satellites) -> true free-to-air content (5344ms)\nWho invented television?\tothers and mine\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (others and mine, finds, the satellites) -> others and mine (5345ms)\nWho invented television?\tmore remote areas\t0.333333333332\tWho invented television? -> $x: ($x, found, satellite) -> (more remote areas, find, the satellites) -> more remote areas (5337ms)\nWhat are enzymes?\tAntibiotics\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Antibiotics, cause an imbalance of, enzymes) -> Antibiotics (7278ms)\nWhat are enzymes?\tThe fermentation\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (The fermentation, is caused by, enzymes) -> The fermentation (8921ms)\nWhat are enzymes?\ttrauma and surgery\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (trauma and surgery, then cause a release of, enzymes) -> trauma and surgery (6415ms)\nWhat are enzymes?\ta gradual chemical change\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (a gradual chemical change, caused by, the enzymes) -> a gradual chemical change (7801ms)\nWhat are enzymes?\tthe secretion\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the secretion, caused by, enzyme deficiencies) -> the secretion (7278ms)\nWhat are enzymes?\tprotein synthesis\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (protein synthesis, could have caused the evolution of, enzymes) -> protein synthesis (8921ms)\nWhat are enzymes?\tthe tissue damage\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the tissue damage, caused by, destructive enzymes) -> the tissue damage (3008ms)\nWhat are enzymes?\tthe gene\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the gene, can cause problems with, the enzyme) -> the gene (7277ms)\nWhat are enzymes?\tthe production of cPLA2\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the production of cPLA2, causes, the production of the enzyme) -> the production of cPLA2 (4297ms)\nWhat are enzymes?\tAcute exposure\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Acute exposure, causes the elevation of, liver enzymes) -> Acute exposure (7278ms)\nWhat are enzymes?\trat trachea\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (rat trachea, caused increased, enzyme activity) -> rat trachea (4424ms)\nWhat are enzymes?\tPSC\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (PSC, causes, the blood liver enzyme) -> PSC (6971ms)\nWhat are enzymes?\tbeta carotene\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (beta carotene, cause a reduction of, these enzymes) -> beta carotene (6970ms)\nWhat are enzymes?\tmuscle soreness\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (muscle soreness, causes an increase in, enzymes) -> muscle soreness (4298ms)\nWhat are enzymes?\tThe nitric oxide\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (The nitric oxide, causes, an enzyme) -> The nitric oxide (6971ms)\nWhat are enzymes?\tinjury affecting either organ\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (injury affecting either organ, may cause release of, this enzyme) -> injury affecting either organ (10392ms)\nWhat are enzymes?\tFetal abnormalities\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Fetal abnormalities, probably caused by, enzyme changes) -> Fetal abnormalities (6415ms)\nWhat are enzymes?\tEarlier statins\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Earlier statins, caused some elevations in, liver enzymes) -> Earlier statins (4424ms)\nWhat are enzymes?\tthe excess weight\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the excess weight, caused, the high-enzyme reading) -> the excess weight (10555ms)\nWhat are enzymes?\tresearchers\t1.111111111105\tWhat are enzymes? -> $x: ($x, invent, enzyme) -> (researchers, invent, numerous DNA enzymes) -> researchers (4297ms)\nWhat are enzymes?\tAsthma\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Asthma, caused by, enzymes) -> Asthma (7801ms)\nWhat are enzymes?\tThe increase\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (The increase, causes, the lipase enzyme) -> The increase (7801ms)\nWhat are enzymes?\tThe clumps\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (The clumps, are sometimes caused by, two enzymes) -> The clumps (4424ms)\nWhat are enzymes?\tA substance\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (A substance, causes, a decrease in levels of an enzyme) -> A substance (8921ms)\nWhat are enzymes?\tClinical gmp\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Clinical gmp, caused, enzyme label) -> Clinical gmp (6971ms)\nWhat are enzymes?\tThe brouhaha\t1.111111111105\tWhat are enzymes? -> $x: ($x, invent, enzyme) -> (The brouhaha, invented, an enzyme assay) -> The brouhaha (6970ms)\nWhat are enzymes?\tThe mutations\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (The mutations, cause, the production of an enzyme) -> The mutations (3009ms)\nWhat are enzymes?\tEthylene\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Ethylene, causes increased levels of, certain enzymes) -> Ethylene (7801ms)\nWhat are enzymes?\tXALATAN\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (XALATAN, caused, macular enzyme) -> XALATAN (8844ms)\nWhat are enzymes?\tcollagen and elastin\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (collagen and elastin, caused by, destructive enzymes) -> collagen and elastin (6415ms)\nWhat are enzymes?\tTotal oxidative stress\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Total oxidative stress, causes failure of, protective enzymes) -> Total oxidative stress (4298ms)\nWhat are enzymes?\ttemperature\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (temperature, causes a rise in, enzyme) -> temperature (4298ms)\nWhat are enzymes?\tThe fungi\t1.111111111105\tWhat are enzymes? -> $x: ($x, invent, enzyme) -> (The fungi, invented, enzymes) -> The fungi (10392ms)\nWhat are enzymes?\tGenes\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Genes, cause the production of, enzymes) -> Genes (7277ms)\nWhat are enzymes?\tLactic acid\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Lactic acid, can cause, enzymes) -> Lactic acid (3008ms)\nWhat are enzymes?\talcohol\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (alcohol, causes, the body to overproduce an enzyme) -> alcohol (4297ms)\nWhat are enzymes?\tPrilosec?\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Prilosec?, may cause increased, liver enzymes) -> Prilosec? (10392ms)\nWhat are enzymes?\toxidation which\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (oxidation which, causes deficiencies of, antioxidant enzymes) -> oxidation which (8844ms)\nWhat are enzymes?\tStreptomycin\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Streptomycin, causes malfunctioning of, enzyme synthesis) -> Streptomycin (4424ms)\nWhat are enzymes?\tA high carbohydrate diet\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (A high carbohydrate diet, causes an imbalance of, enzymes) -> A high carbohydrate diet (10392ms)\nWhat are enzymes?\tjust a few degrees\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (just a few degrees, high can cause, certain enzymes) -> just a few degrees (8922ms)\nWhat are enzymes?\tSuch organ damages\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Such organ damages, cause the release of, enzymes) -> Such organ damages (10555ms)\nWhat are enzymes?\tturn\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (turn, causes, more aromatase enzyme formation) -> turn (3008ms)\nWhat are enzymes?\tThe fruit\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (The fruit, causes, greater saliva and starch breaking enzyme) -> The fruit (10392ms)\nWhat are enzymes?\tSimvastatin therapy\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Simvastatin therapy, can cause elevated, hepatic enzymes) -> Simvastatin therapy (8921ms)\nWhat are enzymes?\tacidity\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (acidity, causes, stomach enzymes) -> acidity (6415ms)\nWhat are enzymes?\tGermination\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Germination, causes, the natural enzymes) -> Germination (7277ms)\nWhat are enzymes?\tA heart attack\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (A heart attack, causes the release of, certain enzymes) -> A heart attack (8921ms)\nWhat are enzymes?\tsulphydryl groups\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (sulphydryl groups, causes the inactivation of, enzymes) -> sulphydryl groups (7801ms)\nWhat are enzymes?\tcertain chemical reactions\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (certain chemical reactions, caused by, enzymes) -> certain chemical reactions (10555ms)\nWhat are enzymes?\tsulfur\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (sulfur, causes widespread dysfunction of, enzymes) -> sulfur (10555ms)\nWhat are enzymes?\tdamage\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (damage, caused by, enzymes) -> damage (8921ms)\nWhat are enzymes?\tNO-Xplode\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (NO-Xplode, causes, abnormal liver enzyme tests) -> NO-Xplode (8844ms)\nWhat are enzymes?\tThe nitric purchase tadalafil oxide\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (The nitric purchase tadalafil oxide, causes, an enzyme) -> The nitric purchase tadalafil oxide (7277ms)\nWhat are enzymes?\tWeight reduction\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Weight reduction, causes, liver enzymes) -> Weight reduction (10392ms)\nWhat are enzymes?\ttoxic metals\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (toxic metals, cause, enzyme disruption) -> toxic metals (7801ms)\nWhat are enzymes?\tCertain medical conditions\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Certain medical conditions, can cause this lack of, enzymes) -> Certain medical conditions (6415ms)\nWhat are enzymes?\tfewer than 10,000 people\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (fewer than 10,000 people, are caused by, enzyme deficiencies) -> fewer than 10,000 people (4424ms)\nWhat are enzymes?\tinformation\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (information, causes, liver enzymes to elevate , how liver works) -> information (4424ms)\nWhat are enzymes?\tCalorie restriction\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Calorie restriction, causes an increase in, protective enzymes) -> Calorie restriction (6970ms)\nWhat are enzymes?\tVanadium\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Vanadium, causes the inhibition of, certain enzymes) -> Vanadium (7278ms)\nWhat are enzymes?\tthe eating habits or lack\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the eating habits or lack, may cause imbalance in, mouth enzymes) -> the eating habits or lack (10392ms)\nWhat are enzymes?\tthe joint lining\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the joint lining, causes a release of, enzymes) -> the joint lining (8844ms)\nWhat are enzymes?\tthe drug\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the drug, causes a decrease in, enzyme activity) -> the drug (7801ms)\nWhat are enzymes?\ta disease\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (a disease, caused by, enzyme) -> a disease (4424ms)\nWhat are enzymes?\tmonosodium glutamate\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (monosodium glutamate, may be caused by, enzyme deficiencies) -> monosodium glutamate (8844ms)\nWhat are enzymes?\tTopic\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Topic, Cause Elevated, Liver Enzymes) -> Topic (10555ms)\nWhat are enzymes?\tthe GALC gene\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the GALC gene, causes, a deficiency of an enzyme) -> the GALC gene (6415ms)\nWhat are enzymes?\tBluegreens\t1.111111111105\tWhat are enzymes? -> $x: ($x, invent, enzyme) -> (Bluegreens, invented, enzymes) -> Bluegreens (4424ms)\nWhat are enzymes?\tAmiodarone Amiodarone\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Amiodarone Amiodarone, causes, elevated liver enzymes) -> Amiodarone Amiodarone (6971ms)\nWhat are enzymes?\tcytochrome P450 induction\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (cytochrome P450 induction, caused, the enzyme deficiency) -> cytochrome P450 induction (6415ms)\nWhat are enzymes?\tglyphosate\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (glyphosate, caused changes in, enzyme activity) -> glyphosate (8844ms)\nWhat are enzymes?\tthe GI tract\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the GI tract, causes, both pancreatic enzyme deficiency) -> the GI tract (7801ms)\nWhat are enzymes?\tThe reaction\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (The reaction, is caused by, an enzyme) -> The reaction (3008ms)\nWhat are enzymes?\tStatin drugs\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Statin drugs, can cause elevations in, liver enzymes) -> Statin drugs (4298ms)\nWhat are enzymes?\tStatins\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Statins, cause elevations in, liver enzymes) -> Statins (6970ms)\nWhat are enzymes?\tRifabutin\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Rifabutin, causes, less enzyme symptoms) -> Rifabutin (6415ms)\nWhat are enzymes?\tAcetaminophen\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Acetaminophen, may cause elevations of, liver enzymes) -> Acetaminophen (3008ms)\nWhat are enzymes?\thundred\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (hundred, are caused by, defective enzymes) -> hundred (3008ms)\nWhat are enzymes?\tthe prostate\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the prostate, may be caused by, an enzyme) -> the prostate (8921ms)\nWhat are enzymes?\tthe inflammation\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (the inflammation, caused by, the enzyme) -> the inflammation (10555ms)\nWhat are enzymes?\tcell membrane\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (cell membrane, causes, enzyme inhibition) -> cell membrane (10392ms)\nWhat are enzymes?\tGaucher syndromes\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Gaucher syndromes, are caused by, enzyme deficiencies) -> Gaucher syndromes (4297ms)\nWhat are enzymes?\tReleases nitric oxide\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Releases nitric oxide, causes, an enzyme) -> Releases nitric oxide (8844ms)\nWhat are enzymes?\tAutoimmune hepatitis\t1.111111111105\tWhat are enzymes? -> $x: ($x, cause, enzyme) -> (Autoimmune hepatitis, causes, the blood liver enzyme) -> Autoimmune hepatitis (8844ms)\nWhat are enzymes?\tScientists\t1.111111111104\tWhat are enzymes? -> $x: ($x, re, enzyme) -> (Scientists, have re-engineered, a human enzyme) -> Scientists (10555ms)\nWhat are enzymes?\tcows\t1.111111111104\tWhat are enzymes? -> $x: ($x, re, enzyme) -> (cows, were re-treated with, enzymes) -> cows (10555ms)\nWhat are enzymes?\tthe researchers\t1.111111111104\tWhat are enzymes? -> $x: ($x, re, enzyme) -> (the researchers, re-inserted, the missing enzyme) -> the researchers (10555ms)\nWhat are enzymes?\tNA\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (NA, is described as, a receptor-destroying enzyme) -> NA (10651ms)\nWhat are enzymes?\tJon Backstrom\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (Jon Backstrom, has described a class of, enzymes) -> Jon Backstrom (10651ms)\nWhat are enzymes?\tGallo\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (Gallo, has described, the enzyme reverse transcriptase) -> Gallo (10555ms)\nWhat are enzymes?\tSouth San Francisco\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (South San Francisco, have described, the genes and enzymes) -> South San Francisco (10651ms)\nWhat are enzymes?\ttTG\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (tTG, is described as, an ubiquitous enzyme) -> tTG (10652ms)\nWhat are enzymes?\t3. Briefly\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (3. Briefly, describe, a generalized enzyme-substrate reaction) -> 3. Briefly (10651ms)\nWhat are enzymes?\tKent W. Wilcox\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (Kent W. Wilcox, describe the action of, restriction enzymes) -> Kent W. Wilcox (10651ms)\nWhat are enzymes?\tThe data sheets\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (The data sheets, describe industrial uses of, the enzymes) -> The data sheets (10651ms)\nWhat are enzymes?\tUPRTs\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (UPRTs, are described as, non-essential , energy-saving enzymes) -> UPRTs (10651ms)\nWhat are enzymes?\tChapter 8 further\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (Chapter 8 further, describes the role of, hormones and enzymes) -> Chapter 8 further (10651ms)\nWhat are enzymes?\tDr. Wu\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (Dr. Wu, describes the use of, restriction enzymes) -> Dr. Wu (10651ms)\nWhat are enzymes?\tthe enzymes\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (the enzymes, are described on, the individual enzyme pages) -> the enzymes (10555ms)\nWhat are enzymes?\tonline\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (online, describes, the newly-identified enzyme) -> online (10651ms)\nWhat are enzymes?\tPlant Physiology\t0.888888888883\tWhat are enzymes? -> $x: ($x, describe, enzyme) -> (Plant Physiology, describes the role of, an enzyme) -> Plant Physiology (10651ms)\nWhat are enzymes?\tSOD\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (SOD, was defined as, the enzyme amount) -> SOD (10891ms)\nWhat are enzymes?\tthe same characteristics\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the same characteristics, do, the oxygen metabolising enzyme) -> the same characteristics (10891ms)\nWhat are enzymes?\tA much smaller\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (A much smaller, does of, pancreatic enzymes) -> A much smaller (10891ms)\nWhat are enzymes?\tUnit Definition\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (Unit Definition, is defined as, the amount of enzyme) -> Unit Definition (10687ms)\nWhat are enzymes?\tplace\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (place, does, a special enzyme halt) -> place (10790ms)\nWhat are enzymes?\tthe cellular level\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the cellular level, has to do with, enzyme control) -> the cellular level (10756ms)\nWhat are enzymes?\tclinical studies\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (clinical studies, have been done on, proteolytic enzymes) -> clinical studies (10722ms)\nWhat are enzymes?\tincrease\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (increase, have to do with, liver enzymes) -> increase (10687ms)\nWhat are enzymes?\tinstance\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (instance, do, the enzymes) -> instance (10857ms)\nWhat are enzymes?\tthe sample\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the sample, was done by, enzyme digestion) -> the sample (10651ms)\nWhat are enzymes?\t6.2\t0.888888888882\tWhat are enzymes? -> $x: (enzyme, have point of, $x) -> (The final purified enzyme, had an isoelectric point of, 6.2) -> 6.2 (10722ms)\nWhat are enzymes?\tfree lab animals\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (free lab animals, DO get, enzymes) -> free lab animals (10790ms)\nWhat are enzymes?\tskin tissue\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (skin tissue, do, the enzymes) -> skin tissue (10790ms)\nWhat are enzymes?\thigh\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (high, does of, natural enzymes) -> high (10857ms)\nWhat are enzymes?\tOne activity unit\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (One activity unit, is defined as, the amount of enzyme) -> One activity unit (10756ms)\nWhat are enzymes?\tNutrients\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Nutrients, so do, enzymes) -> Nutrients (10722ms)\nWhat are enzymes?\tStrains\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (Strains, may be further characterized by, enzyme immunoassay) -> Strains (10891ms)\nWhat are enzymes?\tThe phages\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (The phages, were characterized by, restriction enzyme analysis) -> The phages (10823ms)\nWhat are enzymes?\tFurther work\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (Further work, biochemically characterize, the active enzyme) -> Further work (10790ms)\nWhat are enzymes?\tacne conditions\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (acne conditions, will do better with, Pumpkin Enzyme) -> acne conditions (10687ms)\nWhat are enzymes?\tHeat\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Heat, does destroy, enzymes) -> Heat (10890ms)\nWhat are enzymes?\talpha-amylase and lipase\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (alpha-amylase and lipase, were defined as, enzyme activity) -> alpha-amylase and lipase (10823ms)\nWhat are enzymes?\ta rare disorder of\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (a rare disorder of, characterized by, deficiency of an enzyme) -> a rare disorder of (10756ms)\nWhat are enzymes?\tUnit Definition One unit\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (Unit Definition One unit, is defined as, the amount of enzyme) -> Unit Definition One unit (10891ms)\nWhat are enzymes?\tThe body\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (The body, does produce, enzymes) -> The body (10917ms)\nWhat are enzymes?\tthe pancreatic enzymes\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (the pancreatic enzymes, was defined as, enzyme activity) -> the pancreatic enzymes (10722ms)\nWhat are enzymes?\tResearchers\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (Researchers, here are characterizing, both enzymes) -> Researchers (10857ms)\nWhat are enzymes?\tThe cutting\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (The cutting, is done with, restriction enzymes) -> The cutting (10756ms)\nWhat are enzymes?\tthe same action\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the same action, do, the enzymes) -> the same action (10756ms)\nWhat are enzymes?\tthe big question\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the big question, Does, digestive enzyme supplementation) -> the big question (10891ms)\nWhat are enzymes?\tOne enzyme unit\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (One enzyme unit, was defined as, the amount of enzyme) -> One enzyme unit (10756ms)\nWhat are enzymes?\tfigs\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (figs, *do* have tenderizing, enzymes) -> figs (10823ms)\nWhat are enzymes?\tOne unit of SOD\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (One unit of SOD, was defined as, the amount of enzyme) -> One unit of SOD (10857ms)\nWhat are enzymes?\tA sustained response\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (A sustained response, is defined as, liver enzymes) -> A sustained response (10857ms)\nWhat are enzymes?\tSubject\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Subject, do, mash enzymes work and chemistry) -> Subject (10756ms)\nWhat are enzymes?\tcolleagues\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (colleagues, characterize, the enzyme) -> colleagues (10687ms)\nWhat are enzymes?\tE. So\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (E. So, do, enzymes lower activation energy requirements) -> E. So (10790ms)\nWhat are enzymes?\tbody\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (body, does n?t create, enough enzymes) -> body (10823ms)\nWhat are enzymes?\tthe digestive organs\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the digestive organs, does supplementing with, digestive enzymes) -> the digestive organs (10687ms)\nWhat are enzymes?\tage\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (age, does our production of, digestive enzymes) -> age (10891ms)\nWhat are enzymes?\tOne unit\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (One unit, is defined as, the amount of enzyme) -> One unit (10790ms)\nWhat are enzymes?\tOne enzyme\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (One enzyme, cannot do, another enzyme) -> One enzyme (10756ms)\nWhat are enzymes?\tyeast\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (yeast, do a poor job of producing, enzymes) -> yeast (10722ms)\nWhat are enzymes?\tHDN\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (HDN, do, the enzymes) -> HDN (10722ms)\nWhat are enzymes?\treaction\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (reaction, does, this enzyme catalyze) -> reaction (10823ms)\nWhat are enzymes?\tThe cells\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (The cells, are characterized by, the enzyme P-type H+K+-ATPase) -> The cells (10823ms)\nWhat are enzymes?\tbiofuels\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (biofuels, characterize, enzymes) -> biofuels (10756ms)\nWhat are enzymes?\tSilver\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Silver, does n?t destroy, beneficial enzymes) -> Silver (10857ms)\nWhat are enzymes?\tthe Healthy Juicer\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the Healthy Juicer, does n?t destroy, certain enzymes) -> the Healthy Juicer (10790ms)\nWhat are enzymes?\tVitamins and hormones\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Vitamins and hormones, cannot do their work without, enzymes) -> Vitamins and hormones (10790ms)\nWhat are enzymes?\tan antioxidant\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (an antioxidant, is clinically defined as, ???an enzyme) -> an antioxidant (10917ms)\nWhat are enzymes?\tThe attribute name\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (The attribute name, defines the name of, the enzyme) -> The attribute name (10651ms)\nWhat are enzymes?\thormones\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (hormones, can do any work without, enzymes) -> hormones (10756ms)\nWhat are enzymes?\tThDP\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (ThDP, did, the enzyme) -> ThDP (10722ms)\nWhat are enzymes?\textensive research\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (extensive research, was done to identify, enzymes) -> extensive research (10823ms)\nWhat are enzymes?\tthe liver\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the liver, does n?t have, the enzymes) -> the liver (10857ms)\nWhat are enzymes?\tany cell\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (any cell, is being done by, enzymes) -> any cell (10722ms)\nWhat are enzymes?\tthe specific research\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the specific research, has been done on, such enzymes) -> the specific research (10722ms)\nWhat are enzymes?\timplications\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (implications, does block, certain enzymes) -> implications (10722ms)\nWhat are enzymes?\tThe searchis\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (The searchis, done for, enzymes) -> The searchis (10823ms)\nWhat are enzymes?\tH2O2\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (H2O2, does, the enzyme catalase) -> H2O2 (10687ms)\nWhat are enzymes?\tmuch phytic acid\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (much phytic acid, do contain high levels of, enzyme inhibitors) -> much phytic acid (10756ms)\nWhat are enzymes?\tUnknown Author\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Unknown Author, Does, Your Pet Need Enzymes) -> Unknown Author (10891ms)\nWhat are enzymes?\tthe roaches\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the roaches, did take up, the enzyme) -> the roaches (10823ms)\nWhat are enzymes?\tOne unit of activity\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (One unit of activity, is defined as, the amount of enzyme) -> One unit of activity (10651ms)\nWhat are enzymes?\tone SOD unit\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (one SOD unit, is defined as, the amount of enzyme) -> one SOD unit (10790ms)\nWhat are enzymes?\tAn E. coli strain\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (An E. coli strain, is defined as, the amount of enzyme) -> An E. coli strain (10756ms)\nWhat are enzymes?\traw foods\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (raw foods, do contain, enzymes) -> raw foods (10857ms)\nWhat are enzymes?\tobesity\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (obesity, is characterized by, elevated liver enzymes) -> obesity (10891ms)\nWhat are enzymes?\tthe unfolding process\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (the unfolding process, characterizes, an enzyme) -> the unfolding process (10687ms)\nWhat are enzymes?\tthe plant material\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the plant material, is currently done by, microbial enzymes) -> the plant material (10722ms)\nWhat are enzymes?\tObjectives Identify\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (Objectives Identify, characterize, enzymes) -> Objectives Identify (10857ms)\nWhat are enzymes?\tEnzymes\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (Enzymes, defined, Digestive enzymes) -> Enzymes (10891ms)\nWhat are enzymes?\tstagnant food damage\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (stagnant food damage, as do, bacterial enzymes) -> stagnant food damage (10891ms)\nWhat are enzymes?\tDebridement\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Debridement, can be done with, enzymes) -> Debridement (10891ms)\nWhat are enzymes?\textra-cellular POD\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (extra-cellular POD, characterize, the enzyme) -> extra-cellular POD (10823ms)\nWhat are enzymes?\tAxelrod\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (Axelrod, characterized, the enzyme catechol-O-methyl transferase) -> Axelrod (10687ms)\nWhat are enzymes?\tThe catalysis of all biochemical reactions\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (The catalysis of all biochemical reactions, is done by, enzymes) -> The catalysis of all biochemical reactions (10687ms)\nWhat are enzymes?\tGeneric Viagra\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Generic Viagra, does inhibit, this enzyme) -> Generic Viagra (10891ms)\nWhat are enzymes?\tThe liver\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (The liver, cannot do its job of regulating, enzymes) -> The liver (10857ms)\nWhat are enzymes?\tQuestion\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Question, do, enzymes) -> Question (10790ms)\nWhat are enzymes?\tSinead\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Sinead, did, an enzyme peel facial) -> Sinead (10790ms)\nWhat are enzymes?\tthe viability\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the viability, did, the enzyme) -> the viability (10756ms)\nWhat are enzymes?\tLindmark and M?ller\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (Lindmark and M?ller, were characterizing, the enzymes) -> Lindmark and M?ller (10790ms)\nWhat are enzymes?\tFoods\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Foods, do contain, enzymes) -> Foods (10721ms)\nWhat are enzymes?\tlactase\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (lactase, is defined as, a digestive enzyme) -> lactase (10687ms)\nWhat are enzymes?\tManganese\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Manganese, does function in, enzyme reactions) -> Manganese (10756ms)\nWhat are enzymes?\tA blood test\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (A blood test, will be done routinely to check for, enzymes) -> A blood test (10790ms)\nWhat are enzymes?\tCellular biologist\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (Cellular biologist, have defined a system of, special enzymes) -> Cellular biologist (10857ms)\nWhat are enzymes?\tstudents\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (students, do, an indicator enzyme test) -> students (10823ms)\nWhat are enzymes?\tNo vitamins or hormones\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (No vitamins or hormones, can do their work without, enzymes) -> No vitamins or hormones (10651ms)\nWhat are enzymes?\tthe starch digestion\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the starch digestion, is done by, these enzymes) -> the starch digestion (10687ms)\nWhat are enzymes?\tThe mutation\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (The mutation, was done to keep, the enzyme) -> The mutation (10857ms)\nWhat are enzymes?\tolder bicycle racers\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (older bicycle racers, did have a rise in, another enzyme) -> older bicycle racers (10790ms)\nWhat are enzymes?\tbrands\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (brands, DO, use enzymes) -> brands (10823ms)\nWhat are enzymes?\tcells\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (cells, DO contain, enzymes) -> cells (10687ms)\nWhat are enzymes?\tdoctors\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (doctors, do, a blood test of liver enzymes) -> doctors (10823ms)\nWhat are enzymes?\tTay-Sachs testing\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Tay-Sachs testing, is done with, enzyme levels) -> Tay-Sachs testing (10891ms)\nWhat are enzymes?\tGermany\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Germany, have done extensive research on, enzymes) -> Germany (10756ms)\nWhat are enzymes?\tthe cardiologist\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the cardiologist, did, the cardiac blood enzyme test) -> the cardiologist (10891ms)\nWhat are enzymes?\tactivity unit\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (activity unit, is defined as, the needed enzyme) -> activity unit (10687ms)\nWhat are enzymes?\tpurified and\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (purified and, characterized, the enzyme) -> purified and (10687ms)\nWhat are enzymes?\ttherapeutic advantages\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (therapeutic advantages, do, individual enzymes) -> therapeutic advantages (10722ms)\nWhat are enzymes?\tOne unit of enzyme activity\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (One unit of enzyme activity, is defined as, the amount of enzyme) -> One unit of enzyme activity (10823ms)\nWhat are enzymes?\tJunk food\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (Junk food, just does n?t have, enzymes) -> Junk food (10824ms)\nWhat are enzymes?\t1,25D\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (1,25D, are all also done by, enzymes) -> 1,25D (10722ms)\nWhat are enzymes?\tvitamins and minerals\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (vitamins and minerals, cannot do their jobs without, enzymes) -> vitamins and minerals (10857ms)\nWhat are enzymes?\ta change\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (a change, do to, the enzyme) -> a change (10722ms)\nWhat are enzymes?\tOne International Unit\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (One International Unit, is defined as, the amount of enzyme) -> One International Unit (10857ms)\nWhat are enzymes?\tthe steam pasteurization process\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the steam pasteurization process, does n?t hurt, the enzymes) -> the steam pasteurization process (10857ms)\nWhat are enzymes?\tthe lab\t0.888888888882\tWhat are enzymes? -> $x: ($x, characterize, enzyme) -> (the lab, is characterizing, bacterial enzymes) -> the lab (10790ms)\nWhat are enzymes?\tThe hatching enzyme\t0.888888888882\tWhat are enzymes? -> $x: ($x, define, enzyme) -> (The hatching enzyme, is defined as, the enzyme) -> The hatching enzyme (10917ms)\nWhat are enzymes?\tthe sequences\t0.888888888882\tWhat are enzymes? -> $x: ($x, do, enzyme) -> (the sequences, is easily done using, restriction enzymes) -> the sequences (10722ms)\nWhat are enzymes?\tthe laboratory\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the laboratory, have created, a new enzyme model) -> the laboratory (11017ms)\nWhat are enzymes?\tthe hurdles\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the hurdles, are created by, enzymes) -> the hurdles (10968ms)\nWhat are enzymes?\twaste biomass\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (waste biomass, is to find, enzymes) -> waste biomass (10917ms)\nWhat are enzymes?\tJapanese scientists\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Japanese scientists, found another one of, the enzymes) -> Japanese scientists (10968ms)\nWhat are enzymes?\tlead authors Pavel Nikitin\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (lead authors Pavel Nikitin, found, two enzymes) -> lead authors Pavel Nikitin (10942ms)\nWhat are enzymes?\tthe literature\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (the literature, refers to, these enzymes) -> the literature (11018ms)\nWhat are enzymes?\ta scientist\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (a scientist, finds, an unknown enzyme) -> a scientist (11181ms)\nWhat are enzymes?\tRussian researchers\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Russian researchers, have created a product from, enzymes) -> Russian researchers (11113ms)\nWhat are enzymes?\tcodon 102\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (codon 102, creates an additional site for, restriction enzyme) -> codon 102 (11136ms)\nWhat are enzymes?\tthe uncommon variants\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the uncommon variants, were found to affect, the enzyme) -> the uncommon variants (11042ms)\nWhat are enzymes?\tthe intestine\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (the intestine, is sometimes referred to as, the ?super enzyme) -> the intestine (11181ms)\nWhat are enzymes?\tSpecial formula\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Special formula, creates, an enzyme barrier) -> Special formula (10993ms)\nWhat are enzymes?\tspecific respiratory activities\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (specific respiratory activities, were found solely in, enzymes) -> specific respiratory activities (10917ms)\nWhat are enzymes?\tCurcumin\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Curcumin, is also found to increase, detoxifying enzymes) -> Curcumin (11113ms)\nWhat are enzymes?\tDNA\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (DNA, helps create, enzymes) -> DNA (11066ms)\nWhat are enzymes?\tMSU researchers\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (MSU researchers, found, a moonlighting enzyme) -> MSU researchers (11136ms)\nWhat are enzymes?\tuse\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (use, can be found for, this enzyme) -> use (11066ms)\nWhat are enzymes?\tN-glycosylation\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (N-glycosylation, are found in, this enzyme) -> N-glycosylation (11113ms)\nWhat are enzymes?\tEC numbers\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (EC numbers, may be found in, ENZYME) -> EC numbers (11090ms)\nWhat are enzymes?\tthe reaction products\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the reaction products, was found to inhibit, enzyme function) -> the reaction products (11018ms)\nWhat are enzymes?\t50 residues\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (50 residues, found attached to, various enzymes) -> 50 residues (11018ms)\nWhat are enzymes?\tthe Fraunhofer Institute\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the Fraunhofer Institute, found, the enzyme) -> the Fraunhofer Institute (10968ms)\nWhat are enzymes?\tZinc\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Zinc, is also found in, antioxidant enzymes and enzymes) -> Zinc (11136ms)\nWhat are enzymes?\tZn\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Zn, is found in almost, 100 enzymes) -> Zn (11017ms)\nWhat are enzymes?\thands-on discovery\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (hands-on discovery, create, their own solution enzyme solution) -> hands-on discovery (11018ms)\nWhat are enzymes?\tlignin\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (lignin, was found to be, an enzyme) -> lignin (11018ms)\nWhat are enzymes?\tClutch\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Clutch, created of, special enzyme washed leather) -> Clutch (10942ms)\nWhat are enzymes?\tthe fragments\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the fragments, created by, the restriction enzyme) -> the fragments (11158ms)\nWhat are enzymes?\tMolybdenum\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Molybdenum, may be found in, some enzymes) -> Molybdenum (11042ms)\nWhat are enzymes?\tthe same\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the same, create lots of, enzymes) -> the same (10993ms)\nWhat are enzymes?\tVitamin C\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Vitamin C, find, CoEnzyme Q10) -> Vitamin C (11136ms)\nWhat are enzymes?\ta chemical\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (a chemical, found, both decreased enzyme activity) -> a chemical (11113ms)\nWhat are enzymes?\t150 residues\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (150 residues, found in, bacterial enzymes) -> 150 residues (11158ms)\nWhat are enzymes?\tIron\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Iron, is also found in, enzymes) -> Iron (11158ms)\nWhat are enzymes?\tfluoride\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (fluoride, has been found to inhibit, bacterial enzymes) -> fluoride (10968ms)\nWhat are enzymes?\tFree form AAs\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Free form AAs, can be used to create, enzymes) -> Free form AAs (11158ms)\nWhat are enzymes?\tSimilar effects\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Similar effects, were found for, other enzymes) -> Similar effects (11042ms)\nWhat are enzymes?\tthe code\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, deal with, enzyme) -> (the code, deals with, the restriction enzymes) -> the code (11136ms)\nWhat are enzymes?\tenzymes\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (enzymes, is referred to as, proteolytic enzymes) -> enzymes (11090ms)\nWhat are enzymes?\tNCBI Entrez\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (NCBI Entrez, finds, restriction enzyme cleavage sites) -> NCBI Entrez (11158ms)\nWhat are enzymes?\tPantothenic acid\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Pantothenic acid, is found in, two enzymes) -> Pantothenic acid (11066ms)\nWhat are enzymes?\tThe greatest care\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (The greatest care, went into creating, Pro Enzymes) -> The greatest care (11113ms)\nWhat are enzymes?\tBCR-ABL\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (BCR-ABL, creates, an abnormal enzyme or protein) -> BCR-ABL (10993ms)\nWhat are enzymes?\tpolypeptides\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (polypeptides, referred to as, enzymes) -> polypeptides (11066ms)\nWhat are enzymes?\tProteolytic enzyme\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (Proteolytic enzyme, refers to, all enzymes) -> Proteolytic enzyme (11113ms)\nWhat are enzymes?\t60 residues\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (60 residues, found in, bacterial enzymes) -> 60 residues (11090ms)\nWhat are enzymes?\tKornberg\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Kornberg, found, the enzyme DNA ligase) -> Kornberg (10968ms)\nWhat are enzymes?\tTwo cases\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Two cases, were found with, normal enzymes) -> Two cases (10917ms)\nWhat are enzymes?\tCodexis scientists\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Codexis scientists, create, super enzymes) -> Codexis scientists (11158ms)\nWhat are enzymes?\tthe values\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the values, found for, other enzymes) -> the values (10993ms)\nWhat are enzymes?\teven nails\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (even nails, were found to, the enzyme) -> even nails (11066ms)\nWhat are enzymes?\tNovozymes ? researchers\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Novozymes ? researchers, create multiple variants of, an enzyme) -> Novozymes ? researchers (10942ms)\nWhat are enzymes?\tResearch associate Jennifer Seffernick\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Research associate Jennifer Seffernick, found, the enzyme) -> Research associate Jennifer Seffernick (11136ms)\nWhat are enzymes?\tBinuclear iron centers\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Binuclear iron centers, are found in, essential enzymes) -> Binuclear iron centers (11042ms)\nWhat are enzymes?\tNetherlands\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Netherlands, found, that GST enzyme levels) -> Netherlands (11113ms)\nWhat are enzymes?\ttissue\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (tissue, create, antibodies , hormones and enzymes) -> tissue (11018ms)\nWhat are enzymes?\t2,000 fibrinolytic units\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (2,000 fibrinolytic units, refers to, the enzyme activity level) -> 2,000 fibrinolytic units (11018ms)\nWhat are enzymes?\tnature\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (nature, created, the enzymes) -> nature (11090ms)\nWhat are enzymes?\tProtease\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (Protease, refers to, a group of enzymes) -> Protease (11181ms)\nWhat are enzymes?\tthe dogma\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the dogma, found, an enzyme) -> the dogma (10968ms)\nWhat are enzymes?\tmice\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (mice, have found, an enzyme) -> mice (11158ms)\nWhat are enzymes?\tthe actives\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the actives, create, a kinetic enzyme reaction) -> the actives (10917ms)\nWhat are enzymes?\tGreen tea\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Green tea, has been found to react with, enzymes) -> Green tea (10942ms)\nWhat are enzymes?\tThe active ingredients\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (The active ingredients, are created from, plant enzymes) -> The active ingredients (11090ms)\nWhat are enzymes?\tthe pancreas\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the pancreas, must create, all the enzymes) -> the pancreas (11136ms)\nWhat are enzymes?\tB2\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (B2, is used to create, enzymes) -> B2 (11136ms)\nWhat are enzymes?\tacids\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (acids, creates advanced, glycolytic enzymes) -> acids (11113ms)\nWhat are enzymes?\tNIH\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (NIH, have now found, an enzyme) -> NIH (10968ms)\nWhat are enzymes?\tPeppermint help wounds\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Peppermint help wounds, found, the enzymes) -> Peppermint help wounds (10917ms)\nWhat are enzymes?\tN=1 Japanese researchers\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (N=1 Japanese researchers, found, the enzyme) -> N=1 Japanese researchers (11090ms)\nWhat are enzymes?\tThe germination process\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (The germination process, creates a number of, enzymes) -> The germination process (11136ms)\nWhat are enzymes?\tthe stomach\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the stomach, create, less enzymes) -> the stomach (11066ms)\nWhat are enzymes?\tNellie\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Nellie, found large differences between, enzyme levels) -> Nellie (11113ms)\nWhat are enzymes?\tthe journal Science\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the journal Science, found, an enzyme) -> the journal Science (10993ms)\nWhat are enzymes?\tAmazing\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Amazing, would be to find, enzymes) -> Amazing (11066ms)\nWhat are enzymes?\tthe body\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the body, to create, the enzymes needed) -> the body (11181ms)\nWhat are enzymes?\tDiversa\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Diversa, created, an enzyme) -> Diversa (11042ms)\nWhat are enzymes?\ta mold\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (a mold, creates, enzymes) -> a mold (10917ms)\nWhat are enzymes?\tdiabetic subjects\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (diabetic subjects, found significantly reduced, enzyme secretion) -> diabetic subjects (11158ms)\nWhat are enzymes?\tTelomerase\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (Telomerase, is often referred to as, ?the immortalizing enzyme?) -> Telomerase (10942ms)\nWhat are enzymes?\ta normal artery system\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (a normal artery system, creates an abnormal balance of, enzymes) -> a normal artery system (11042ms)\nWhat are enzymes?\t340 pounds\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (340 pounds, found, a lipase enzyme deficiency) -> 340 pounds (10993ms)\nWhat are enzymes?\tLincoln\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Lincoln, created, their RNA enzyme) -> Lincoln (10942ms)\nWhat are enzymes?\tthe authors\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the authors, found, the enzymes) -> the authors (11181ms)\nWhat are enzymes?\tthe human body\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the human body, creates, enzymes) -> the human body (11181ms)\nWhat are enzymes?\tProteolytic enzymes\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (Proteolytic enzymes, refer to, the various enzymes) -> Proteolytic enzymes (10993ms)\nWhat are enzymes?\tNo match\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (No match, found for, enzyme %s) -> No match (10942ms)\nWhat are enzymes?\tthe 1 ppm\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the 1 ppm, found to inhibit, many enzymes) -> the 1 ppm (11113ms)\nWhat are enzymes?\tthe lowest dilution\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the lowest dilution, found in, enzyme blends) -> the lowest dilution (10942ms)\nWhat are enzymes?\tMouse study\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Mouse study, finds, enzyme injection has lasting effects) -> Mouse study (10942ms)\nWhat are enzymes?\tthe bacteria\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the bacteria, create, enzymes) -> the bacteria (11090ms)\nWhat are enzymes?\tChromium\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Chromium, has been found in, some enzymes) -> Chromium (11066ms)\nWhat are enzymes?\tinvestigates\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (investigates, found in, pumpkin enzymes) -> investigates (11158ms)\nWhat are enzymes?\tChang\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Chang, found, two new enzyme versions) -> Chang (11136ms)\nWhat are enzymes?\tthe project\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the project, successfully created, two functional enzymes) -> the project (11113ms)\nWhat are enzymes?\t56 Two studies\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (56 Two studies, failed to find, proteolytic enzymes) -> 56 Two studies (11181ms)\nWhat are enzymes?\tthe microbes\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the microbes, create, enzymes) -> the microbes (11136ms)\nWhat are enzymes?\tChicago\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Chicago, found, enzymes) -> Chicago (10968ms)\nWhat are enzymes?\tThe microorganisms\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (The microorganisms, create, their own enzymes) -> The microorganisms (11090ms)\nWhat are enzymes?\tSprouting\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Sprouting, creates, enzymes) -> Sprouting (10917ms)\nWhat are enzymes?\tHard working liver\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Hard working liver, also creates, digestive enzymes and proteins) -> Hard working liver (10917ms)\nWhat are enzymes?\tUnited States scientists\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (United States scientists, found, an enzyme) -> United States scientists (11181ms)\nWhat are enzymes?\tcarbon and nitrogen\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (carbon and nitrogen, create, enzymes) -> carbon and nitrogen (10968ms)\nWhat are enzymes?\tthe proteolytic enzyme\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (the proteolytic enzyme, referred to as, the ?miracle enzyme?) -> the proteolytic enzyme (11066ms)\nWhat are enzymes?\tAn added plus\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (An added plus, was found from, the enzymes) -> An added plus (11158ms)\nWhat are enzymes?\tthe term\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (the term, refers to, an enzyme) -> the term (11113ms)\nWhat are enzymes?\tthe biochemists\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the biochemists, were able to create, an enzyme) -> the biochemists (10993ms)\nWhat are enzymes?\tThe researchers\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (The researchers, found, enzymes) -> The researchers (11090ms)\nWhat are enzymes?\tthe target protein\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the target protein, was found to be, the enzyme) -> the target protein (11066ms)\nWhat are enzymes?\tQueensland\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Queensland, have found, two enzymes) -> Queensland (10942ms)\nWhat are enzymes?\tThe Scripps Research Institute\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (The Scripps Research Institute, have found, an enzyme) -> The Scripps Research Institute (11181ms)\nWhat are enzymes?\talcoholism\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (alcoholism, creates an interference in, the enzymes) -> alcoholism (11066ms)\nWhat are enzymes?\tNew copies\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (New copies, are created by, enzymes) -> New copies (11090ms)\nWhat are enzymes?\tG6PDH\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, happen to, enzyme) -> (G6PDH, happens to be, the first enzyme) -> G6PDH (11158ms)\nWhat are enzymes?\tProtein\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Protein, creates, digestive enzymes) -> Protein (10968ms)\nWhat are enzymes?\tabsorption\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (absorption, creates, its own enzymes) -> absorption (11182ms)\nWhat are enzymes?\tDouble-stranded RNA molecules\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Double-stranded RNA molecules, are found by, an enzyme) -> Double-stranded RNA molecules (11158ms)\nWhat are enzymes?\tnorepinephrine\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (norepinephrine, is created by, enzymes) -> norepinephrine (11113ms)\nWhat are enzymes?\tprimary structure\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (primary structure, was found to be identical with, enzymes) -> primary structure (11136ms)\nWhat are enzymes?\tCellulosic ethanol\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Cellulosic ethanol, is created by using, enzymes) -> Cellulosic ethanol (11042ms)\nWhat are enzymes?\tthe two axes and briefly\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, happen to, enzyme) -> (the two axes and briefly, is happening to, the enzymes) -> the two axes and briefly (11158ms)\nWhat are enzymes?\ta molecule\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (a molecule, created by, an enzyme) -> a molecule (10993ms)\nWhat are enzymes?\tThe study\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (The study, found, a group of ancient enzymes) -> The study (10968ms)\nWhat are enzymes?\tThe activities\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (The activities, referred to as, ecto-enzymes) -> The activities (10942ms)\nWhat are enzymes?\tThe non-protein portion\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (The non-protein portion, found in, some enzymes) -> The non-protein portion (11042ms)\nWhat are enzymes?\tnew prescription drugs\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (new prescription drugs, referred to as, enzymes) -> new prescription drugs (10942ms)\nWhat are enzymes?\tThe group\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (The group, has found, these enzymes) -> The group (11136ms)\nWhat are enzymes?\tthyroid med\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (thyroid med, recently found out, my enzymes) -> thyroid med (11018ms)\nWhat are enzymes?\tCellulase\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (Cellulase, refers to, a family of enzymes) -> Cellulase (10993ms)\nWhat are enzymes?\tThe packages\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (The packages, create, classes for restriction enzymes) -> The packages (11113ms)\nWhat are enzymes?\ta high carbohydrate\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (a high carbohydrate, have been found to develop, enzymes) -> a high carbohydrate (11090ms)\nWhat are enzymes?\tProfessor Gasser?s group\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (Professor Gasser?s group, only found, the enzymes) -> Professor Gasser?s group (11018ms)\nWhat are enzymes?\tthe scientists\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (the scientists, found, the new enzyme) -> the scientists (11136ms)\nWhat are enzymes?\tRedwood City\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Redwood City, has created a range of, enzymes) -> Redwood City (10993ms)\nWhat are enzymes?\trestover\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (restover, Find, restriction enzymes producing specific overhang) -> restover (10993ms)\nWhat are enzymes?\tactive dressings\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (active dressings, create a synthetic version of, the enzymes) -> active dressings (11090ms)\nWhat are enzymes?\tPM MSU researchers\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (PM MSU researchers, found, a moonlighting enzyme) -> PM MSU researchers (11158ms)\nWhat are enzymes?\tthe theory\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, deal with, enzyme) -> (the theory, dealt with, respiratory enzymes) -> the theory (11181ms)\nWhat are enzymes?\tsubstrates\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (substrates, have been found for, this enzyme) -> substrates (11090ms)\nWhat are enzymes?\tan enzyme potential\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, refer, enzyme) -> (an enzyme potential, referred to as, enzyme reserves) -> an enzyme potential (11042ms)\nWhat are enzymes?\tthe germination\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (the germination, creates, enzymes) -> the germination (10942ms)\nWhat are enzymes?\tblood test\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (blood test, found, liver enzymes) -> blood test (11042ms)\nWhat are enzymes?\tL-Carnitine\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (L-Carnitine, is found in, enzyme complexes) -> L-Carnitine (10968ms)\nWhat are enzymes?\tstudies\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (studies, have found, the enzyme) -> studies (10942ms)\nWhat are enzymes?\theat-treated diet\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, found, enzyme) -> (heat-treated diet, have been found to develop, enzymes) -> heat-treated diet (11042ms)\nWhat are enzymes?\tThe pancreas\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (The pancreas, will create, the necessary enzymes) -> The pancreas (11113ms)\nWhat are enzymes?\tThe first step\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (The first step, is to create, RNA enzymes) -> The first step (10942ms)\nWhat are enzymes?\tExercise\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (Exercise, creates, enzymes) -> Exercise (11090ms)\nWhat are enzymes?\tprobiotics\t0.7777777777720001\tWhat are enzymes? -> $x: ($x, create, enzyme) -> (probiotics, create, more enzymes) -> probiotics (10968ms)\nWhat are enzymes?\tDutch Greens ?\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Dutch Greens ?, is rich in, enzymes) -> Dutch Greens ? (11289ms)\nWhat are enzymes?\tdigestion\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (digestion, is to supplement with, enzymes) -> digestion (11627ms)\nWhat are enzymes?\t31 Wheat grass juice\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (31 Wheat grass juice, is high in, enzymes) -> 31 Wheat grass juice (11447ms)\nWhat are enzymes?\tThe leukocytes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (The leukocytes, are rich in, enzymes) -> The leukocytes (11611ms)\nWhat are enzymes?\tfood companies\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (food companies, are starting to use, enzymes) -> food companies (11556ms)\nWhat are enzymes?\t20 minutes\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is only about, 20 minutes) -> 20 minutes (11247ms)\nWhat are enzymes?\tFresh Pineapple ? Fresh pineapple fruit\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh Pineapple ? Fresh pineapple fruit, is rich in, enzymes) -> Fresh Pineapple ? Fresh pineapple fruit (11502ms)\nWhat are enzymes?\tMelatonin\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (Melatonin, also influences, both antioxidant enzyme activity) -> Melatonin (11556ms)\nWhat are enzymes?\tOrganic Barley Barley\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Organic Barley Barley, is rich in, enzymes) -> Organic Barley Barley (11349ms)\nWhat are enzymes?\tSulphoraphane\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Sulphoraphane, is believed to stimulate, enzymes) -> Sulphoraphane (11225ms)\nWhat are enzymes?\tpapaya , kiwi and pineapple\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (papaya , kiwi and pineapple, are naturally high in, enzymes) -> papaya , kiwi and pineapple (11408ms)\nWhat are enzymes?\tno inflammatory response\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (no inflammatory response, can be mounted without, enzymes) -> no inflammatory response (11408ms)\nWhat are enzymes?\tsaliva\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (saliva, consists of, enzymes) -> saliva (11484ms)\nWhat are enzymes?\tNitric oxide\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Nitric oxide, can activate, enzymes) -> Nitric oxide (11556ms)\nWhat are enzymes?\t5-8 percent protein\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is only about, 5-8 percent protein) -> 5-8 percent protein (11644ms)\nWhat are enzymes?\tBio Term Methyl transferase\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Bio Term Methyl transferase, is, Enzymes) -> Bio Term Methyl transferase (11573ms)\nWhat are enzymes?\tSulphur\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (Sulphur, influences, the enzyme metabolism) -> Sulphur (11627ms)\nWhat are enzymes?\tEcoRV and HindIII\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (EcoRV and HindIII, are, enzymes) -> EcoRV and HindIII (11289ms)\nWhat are enzymes?\tDirected evolution\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Directed evolution, has been used to produce, enzymes) -> Directed evolution (11268ms)\nWhat are enzymes?\tfoods\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (foods, is known to destroy, enzymes) -> foods (11466ms)\nWhat are enzymes?\tsoaked nuts\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (soaked nuts, are rich in, enzymes) -> soaked nuts (11309ms)\nWhat are enzymes?\tanimal or vegetable sources\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (animal or vegetable sources, can replace, enzymes) -> animal or vegetable sources (11691ms)\nWhat are enzymes?\terythromycin\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (erythromycin, can actually impair, enzymes) -> erythromycin (11427ms)\nWhat are enzymes?\tthe technique\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the technique, is limited to, enzymes) -> the technique (11247ms)\nWhat are enzymes?\tchronic fatigue\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (chronic fatigue, can improve with, enzymes) -> chronic fatigue (11289ms)\nWhat are enzymes?\tToxins\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Toxins, can bind to, enzymes) -> Toxins (11247ms)\nWhat are enzymes?\tRNA\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (RNA, can also act as, enzymes) -> RNA (11644ms)\nWhat are enzymes?\tEven a cold\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Even a cold, can be obtained by, Enzymes) -> Even a cold (11349ms)\nWhat are enzymes?\tThe research alliance\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (The research alliance, is expected to use, enzymes) -> The research alliance (11691ms)\nWhat are enzymes?\tremodeling\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (remodeling, is to use, enzymes) -> remodeling (11767ms)\nWhat are enzymes?\tSubstrates\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Substrates, are bound to, enzymes) -> Substrates (11268ms)\nWhat are enzymes?\tliving organisms\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (living organisms, can produce, enzymes) -> living organisms (11736ms)\nWhat are enzymes?\tAlpha-glocosidases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Alpha-glocosidases, are, enzymes) -> Alpha-glocosidases (11225ms)\nWhat are enzymes?\tRaw apple cider vinegar\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Raw apple cider vinegar, is rich in, enzymes) -> Raw apple cider vinegar (11484ms)\nWhat are enzymes?\tPhen375\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Phen375, is consists of, 5 enzyme enhancers) -> Phen375 (11753ms)\nWhat are enzymes?\tThe idea\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (The idea, is to use, enzymes) -> The idea (11225ms)\nWhat are enzymes?\tCaBP-HA complex\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (CaBP-HA complex, is subjected to, enzymes) -> CaBP-HA complex (11676ms)\nWhat are enzymes?\tevery function\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (Enzymes, are also necessary for just about, every function) -> every function (11556ms)\nWhat are enzymes?\tcadmium and lead\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (cadmium and lead, are highly toxic to, enzymes) -> cadmium and lead (11389ms)\nWhat are enzymes?\tShiitake\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Shiitake, is also rich in, enzymes) -> Shiitake (11675ms)\nWhat are enzymes?\tB-complex and K vitamins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (B-complex and K vitamins, are important catalysts to, enzymes) -> B-complex and K vitamins (11247ms)\nWhat are enzymes?\tinterest\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (interest, is, enzymes) -> interest (11660ms)\nWhat are enzymes?\t1996\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (the HCV N53 protease enzyme, was first written about in, 1996) -> 1996 (11204ms)\nWhat are enzymes?\tmangoes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (mangoes, are all high in, enzymes) -> mangoes (11767ms)\nWhat are enzymes?\tBeta-lactamases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Beta-lactamases, are, enzymes) -> Beta-lactamases (11289ms)\nWhat are enzymes?\tlipoprotein-specific enzymes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (lipoprotein-specific enzymes, be, enzymes) -> lipoprotein-specific enzymes (11627ms)\nWhat are enzymes?\tTobacco smoke\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Tobacco smoke, is known to induce, enzymes) -> Tobacco smoke (11408ms)\nWhat are enzymes?\tThe probe\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The probe, consists of, an enzyme electrode) -> The probe (11484ms)\nWhat are enzymes?\ta 100 % Food vegan supplement\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (a 100 % Food vegan supplement, is intended to supply, enzymes) -> a 100 % Food vegan supplement (11330ms)\nWhat are enzymes?\tNot a single cellular reaction\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Not a single cellular reaction, can occur without, enzymes) -> Not a single cellular reaction (11573ms)\nWhat are enzymes?\tFood irradiation\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Food irradiation, can damage, enzymes) -> Food irradiation (11767ms)\nWhat are enzymes?\taloe vera juice\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (aloe vera juice, are rich in, enzymes) -> aloe vera juice (11447ms)\nWhat are enzymes?\tobservational new drugs\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (observational new drugs, can examine with, enzymes) -> observational new drugs (11736ms)\nWhat are enzymes?\toligonucleotides of RNA\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (oligonucleotides of RNA, can act like, enzymes) -> oligonucleotides of RNA (11753ms)\nWhat are enzymes?\tExonucleases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Exonucleases, are, enzymes) -> Exonucleases (11752ms)\nWhat are enzymes?\tThe sensor\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The sensor, consists of, a DNA enzyme strand) -> The sensor (11329ms)\nWhat are enzymes?\tthe rhythms\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (the rhythms, can induce, enzymes) -> the rhythms (11408ms)\nWhat are enzymes?\tExamples of proteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Examples of proteins, are, enzymes) -> Examples of proteins (11573ms)\nWhat are enzymes?\tproteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (proteins, are, enzymes) -> proteins (11447ms)\nWhat are enzymes?\twool carpets\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (wool carpets, can be damaged by, enzymes) -> wool carpets (11706ms)\nWhat are enzymes?\tsprouts\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (sprouts, are rich in, enzymes) -> sprouts (11767ms)\nWhat are enzymes?\tpH\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (pH, would influence the activity of, the salivary enzyme amylase) -> pH (11736ms)\nWhat are enzymes?\tcolloidal silver particles\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (colloidal silver particles, influence, the enzymes) -> colloidal silver particles (11181ms)\nWhat are enzymes?\tRaw vegetables\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Raw vegetables, are rich in, enzymes) -> Raw vegetables (11753ms)\nWhat are enzymes?\ttarget tissue specificity\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (target tissue specificity, is, enzyme) -> target tissue specificity (11594ms)\nWhat are enzymes?\tViruses\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Viruses, can also contain, enzymes) -> Viruses (11502ms)\nWhat are enzymes?\tRaw goat milk\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Raw goat milk, is rich in, enzymes) -> Raw goat milk (11427ms)\nWhat are enzymes?\tfamiliar and relevant catalysts\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (familiar and relevant catalysts, are, enzymes) -> familiar and relevant catalysts (11289ms)\nWhat are enzymes?\tvitamins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (vitamins, may be tightly bound to, enzymes) -> vitamins (11721ms)\nWhat are enzymes?\tthe latter\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (the latter, consists of, an enzyme papain) -> the latter (11611ms)\nWhat are enzymes?\tAdrenergic receptors\t0.777777777771\tWhat are enzymes? -> $x: ($x, classify as, enzyme) -> (Adrenergic receptors, are classified as, enzymes) -> Adrenergic receptors (11676ms)\nWhat are enzymes?\tgenes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (genes, are involved in determining, enzymes) -> genes (11484ms)\nWhat are enzymes?\tKlibanov\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Klibanov, are, enzymes) -> Klibanov (11722ms)\nWhat are enzymes?\tVegetable juices\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Vegetable juices, are rich in, enzymes) -> Vegetable juices (11408ms)\nWhat are enzymes?\tThe carbohydrates\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The carbohydrates, consist of, enzymes) -> The carbohydrates (11706ms)\nWhat are enzymes?\tthe excess phenylalanine\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (the excess phenylalanine, can inhibit, enzymes) -> the excess phenylalanine (11226ms)\nWhat are enzymes?\tbiological systems\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (biological systems, are, enzymes) -> biological systems (11427ms)\nWhat are enzymes?\tthe space\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (the space, are, enzymes) -> the space (11643ms)\nWhat are enzymes?\tHappy\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Happy, are, enzymes) -> Happy (11676ms)\nWhat are enzymes?\tPlasminogen activators\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Plasminogen activators, are, enzymes) -> Plasminogen activators (11484ms)\nWhat are enzymes?\tthe ingredients\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (the ingredients, are, enzymes) -> the ingredients (11466ms)\nWhat are enzymes?\t3.Ozone\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (3.Ozone, can decompose, enzyme) -> 3.Ozone (11520ms)\nWhat are enzymes?\twater days\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (water days, are, enzymes) -> water days (11767ms)\nWhat are enzymes?\tglutathione\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (glutathione, are, enzymes) -> glutathione (11502ms)\nWhat are enzymes?\tBakery workers\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Bakery workers, can become sensitised to, enzymes) -> Bakery workers (11752ms)\nWhat are enzymes?\t70 and 80 nM\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (the fully reduced enzyme, are about, 70 and 80 nM) -> 70 and 80 nM (11538ms)\nWhat are enzymes?\tKarbo Combo\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Karbo Combo, consists of, encapsulated enzymes) -> Karbo Combo (11389ms)\nWhat are enzymes?\tThe Nano-Lipobelle material\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The Nano-Lipobelle material, consists of, CoEnzyme Q10) -> The Nano-Lipobelle material (11502ms)\nWhat are enzymes?\tTextile Textile industry\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Textile Textile industry, can benefit from, enzymes) -> Textile Textile industry (11389ms)\nWhat are enzymes?\tlarge molecules\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (large molecules, to be broken down by, enzymes) -> large molecules (11427ms)\nWhat are enzymes?\tmodern drugs\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (modern drugs, are designed to target, enzymes) -> modern drugs (11691ms)\nWhat are enzymes?\tthe same time\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (all these needed enzymes, are made about, the same time) -> the same time (11427ms)\nWhat are enzymes?\tthe group\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (the group, consisting of, enzymes) -> the group (11484ms)\nWhat are enzymes?\tblood inhibitors\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (blood inhibitors, consist of, certain digestive enzymes) -> blood inhibitors (11736ms)\nWhat are enzymes?\tdisease\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (disease, are, enzymes) -> disease (11594ms)\nWhat are enzymes?\tThe prothrombinase complex\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The prothrombinase complex, consists of, the enzyme factor Xa) -> The prothrombinase complex (11349ms)\nWhat are enzymes?\tPollen\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Pollen, is also rich in, enzymes) -> Pollen (11691ms)\nWhat are enzymes?\ta legendary aroma\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (a legendary aroma, is due to, enzymes) -> a legendary aroma (11538ms)\nWhat are enzymes?\tPotatoes\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Potatoes, consist of, a skin-lightening enzyme catecholase) -> Potatoes (11408ms)\nWhat are enzymes?\tthe cancer patients\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (the cancer patients, were, enzymes) -> the cancer patients (11427ms)\nWhat are enzymes?\tthe topical application\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the topical application, is limited to, enzymes) -> the topical application (11706ms)\nWhat are enzymes?\tplants\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (plants, are, enzymes) -> plants (11447ms)\nWhat are enzymes?\tPet digestion\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Pet digestion, can be improved by, enzymes) -> Pet digestion (11329ms)\nWhat are enzymes?\ttransport proteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (transport proteins, are similar to, enzymes) -> transport proteins (11502ms)\nWhat are enzymes?\tthe complex\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the complex, are tightly bound to, enzymes) -> the complex (11676ms)\nWhat are enzymes?\tKinases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Kinases, are, enzymes) -> Kinases (11502ms)\nWhat are enzymes?\tparticular interest\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (particular interest, is, enzymes) -> particular interest (11349ms)\nWhat are enzymes?\tnutritional deficiencies\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (nutritional deficiencies, is rich in, enzymes) -> nutritional deficiencies (11268ms)\nWhat are enzymes?\tBromelain\t0.777777777771\tWhat are enzymes? -> $x: ($x, classify as, enzyme) -> (Bromelain, is classified as, a proteolytic enzyme) -> Bromelain (11330ms)\nWhat are enzymes?\tthe assays\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (the assays, was greatly influenced by, the enzyme system) -> the assays (11204ms)\nWhat are enzymes?\tbreakfast\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (breakfast, is supposed to provide, enzymes) -> breakfast (11309ms)\nWhat are enzymes?\tmicroinjection\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (microinjection, can be cleaved with, enzymes) -> microinjection (11309ms)\nWhat are enzymes?\ta strong foundation\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (a strong foundation, is abundant in, enzymes) -> a strong foundation (11369ms)\nWhat are enzymes?\tThe stuff\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The stuff, consisted of, an enzyme) -> The stuff (11247ms)\nWhat are enzymes?\tan additional _base_\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (an additional _base_, can be helped with, enzymes) -> an additional _base_ (11247ms)\nWhat are enzymes?\tvenom\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (venom, are, enzymes) -> venom (11484ms)\nWhat are enzymes?\tthe temperature\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the temperature, to be destroyed, enzymes) -> the temperature (11556ms)\nWhat are enzymes?\tRaw fruits and vegetables\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Raw fruits and vegetables, are rich source in, enzymes) -> Raw fruits and vegetables (11573ms)\nWhat are enzymes?\tEach one\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Each one, consists of, three enzymes) -> Each one (11330ms)\nWhat are enzymes?\tThe vast majority of proteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (The vast majority of proteins, are, enzymes) -> The vast majority of proteins (11520ms)\nWhat are enzymes?\tthe hydroxyl radical\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (the hydroxyl radical, can inactivate, enzymes) -> the hydroxyl radical (11447ms)\nWhat are enzymes?\thydrophobic side chains\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (hydrophobic side chains, can influence, enzyme catalysis) -> hydrophobic side chains (11573ms)\nWhat are enzymes?\tCooking foods\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Cooking foods, is known to destroy, enzymes) -> Cooking foods (11369ms)\nWhat are enzymes?\t100,000 times\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (Enzyme performance, has been improved by about, 100,000 times) -> 100,000 times (11289ms)\nWhat are enzymes?\tBiotin\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Biotin, is attached to, enzymes) -> Biotin (11573ms)\nWhat are enzymes?\tthe actual motions\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (various enzymes, much is known about, the actual motions) -> the actual motions (11722ms)\nWhat are enzymes?\tThe smooth ER\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (The smooth ER, is rich in, enzymes) -> The smooth ER (11753ms)\nWhat are enzymes?\tthe produce\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the produce, are bonded to, enzymes) -> the produce (11349ms)\nWhat are enzymes?\ta higher calorie content\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (a higher calorie content, are richer in, enzymes) -> a higher calorie content (11369ms)\nWhat are enzymes?\tPapaya\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Papaya, is also rich in, enzymes) -> Papaya (11628ms)\nWhat are enzymes?\tThe average American diet\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (The average American diet, is lacking in, enzymes) -> The average American diet (11627ms)\nWhat are enzymes?\tPCBs\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (PCBs, were used to induce, enzymes) -> PCBs (11573ms)\nWhat are enzymes?\thalf\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is about, half) -> half (11706ms)\nWhat are enzymes?\tThe actual affected\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The actual affected, consists of, a lot more enzymes) -> The actual affected (11753ms)\nWhat are enzymes?\tchondrocytes\t0.777777777771\tWhat are enzymes? -> $x: ($x, withstand, enzyme) -> (chondrocytes, withstand, CYP enzymes) -> chondrocytes (11466ms)\nWhat are enzymes?\tthe most\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (the most, were, enzymes) -> the most (11502ms)\nWhat are enzymes?\tfeed formulation\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (feed formulation, is to use, enzymes) -> feed formulation (11611ms)\nWhat are enzymes?\t20 %\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (this important enzyme, was about, 20 %) -> 20 % (11247ms)\nWhat are enzymes?\tthe food\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the food, to be digested by, enzymes) -> the food (11627ms)\nWhat are enzymes?\tfresh juices\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (fresh juices, are high in, enzymes) -> fresh juices (11466ms)\nWhat are enzymes?\tany extreme temperature\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (any extreme temperature, can destroy, enzymes) -> any extreme temperature (11330ms)\nWhat are enzymes?\ta raw food diet\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (a raw food diet, consisting of, enzyme-rich raw foods) -> a raw food diet (11247ms)\nWhat are enzymes?\thigh doses\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (high doses, can damage, enzymes) -> high doses (11520ms)\nWhat are enzymes?\tgenetic information\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (genetic information, can also function as, enzymes) -> genetic information (11484ms)\nWhat are enzymes?\tFRUITS\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (FRUITS, is an agricultural product that contains, ENZYMES) -> FRUITS (11691ms)\nWhat are enzymes?\ta sea germ\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (a sea germ, can furnish, enzymes) -> a sea germ (11691ms)\nWhat are enzymes?\tRaw foods\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Raw foods, can attract, enzymes) -> Raw foods (11722ms)\nWhat are enzymes?\tGreen barley leaves\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Green barley leaves, are rich in, enzymes) -> Green barley leaves (11556ms)\nWhat are enzymes?\tGreens\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Greens, are rich in, enzymes) -> Greens (11676ms)\nWhat are enzymes?\t1 mistake\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (other repair enzymes, is about, 1 mistake) -> 1 mistake (11706ms)\nWhat are enzymes?\tPGH2 synthase\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (PGH2 synthase, actually consists of, two enzyme components) -> PGH2 synthase (11427ms)\nWhat are enzymes?\ta third\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (enzyme activity level, was about, a third) -> a third (11408ms)\nWhat are enzymes?\tcooking\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (cooking, is so damaging to, enzymes) -> cooking (11573ms)\nWhat are enzymes?\tA different strategy\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (A different strategy, is to concentrate on, enzymes) -> A different strategy (11644ms)\nWhat are enzymes?\tRecombinases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Recombinases, are, enzymes) -> Recombinases (11204ms)\nWhat are enzymes?\tA freshly caught mouse\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (A freshly caught mouse, is rich in, enzymes) -> A freshly caught mouse (11721ms)\nWhat are enzymes?\tlife\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (life, can be linked to, enzymes) -> life (11767ms)\nWhat are enzymes?\tdiagram\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (diagram, are, enzymes) -> diagram (11389ms)\nWhat are enzymes?\tpancreas\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (pancreas, can pour out, enzymes) -> pancreas (11691ms)\nWhat are enzymes?\told the grass\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (old the grass, is much higher in, enzymes) -> old the grass (11706ms)\nWhat are enzymes?\tDead Sea Mud\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Dead Sea Mud, is known to activate, enzymes) -> Dead Sea Mud (11447ms)\nWhat are enzymes?\tThe latter\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (The latter, can be digested by, enzymes) -> The latter (11660ms)\nWhat are enzymes?\tNot all proteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Not all proteins, are, enzymes) -> Not all proteins (11502ms)\nWhat are enzymes?\tFresh juices and smoothies\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh juices and smoothies, are also abundant in, enzymes) -> Fresh juices and smoothies (11330ms)\nWhat are enzymes?\teach mutation\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (each mutation, has a particular influence on, enzyme activity) -> each mutation (11408ms)\nWhat are enzymes?\tthe cyst\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (the cyst, consists of, high powered digestive enzymes) -> the cyst (11594ms)\nWhat are enzymes?\tCarboxylesterases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Carboxylesterases, are, enzymes) -> Carboxylesterases (11644ms)\nWhat are enzymes?\tLipases Lipases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Lipases Lipases, are, enzymes) -> Lipases Lipases (11538ms)\nWhat are enzymes?\tProteinases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Proteinases, are, enzymes) -> Proteinases (11289ms)\nWhat are enzymes?\tthe basic code\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (the basic code, is present in, enzyme) -> the basic code (11594ms)\nWhat are enzymes?\tWheatgrass juice\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Wheatgrass juice, is high in, enzymes) -> Wheatgrass juice (11466ms)\nWhat are enzymes?\tmiso soup\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (miso soup, is recommended to provide, enzymes) -> miso soup (11427ms)\nWhat are enzymes?\tNation\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Nation, can exhaust, enzymes) -> Nation (11736ms)\nWhat are enzymes?\tGenetic manipulation\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Genetic manipulation, has been used to transfer, enzymes) -> Genetic manipulation (11660ms)\nWhat are enzymes?\tAB Enzymes AB Enzymes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (AB Enzymes AB Enzymes, is working to develop, enzymes) -> AB Enzymes AB Enzymes (11538ms)\nWhat are enzymes?\tagency\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (agency, can swell, enzyme) -> agency (11611ms)\nWhat are enzymes?\tA great deal\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (A great deal, can be learned about, enzymes) -> A great deal (11389ms)\nWhat are enzymes?\thigh a temperature\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (high a temperature, can kill, enzymes) -> high a temperature (11676ms)\nWhat are enzymes?\tPemetrexed\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Pemetrexed, is designed to block, enzymes) -> Pemetrexed (11538ms)\nWhat are enzymes?\tcommercial diets\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (commercial diets, can be missing, enzymes) -> commercial diets (11753ms)\nWhat are enzymes?\tThe answer\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (The answer, is, enzymes) -> The answer (11627ms)\nWhat are enzymes?\tthe final week\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (the final week, should consist of, digestive enzymes) -> the final week (11691ms)\nWhat are enzymes?\tFresh fruit and vegetable juices\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh fruit and vegetable juices, also are rich in, enzymes) -> Fresh fruit and vegetable juices (11753ms)\nWhat are enzymes?\tcleaning goal\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (cleaning goal, are, enzymes) -> cleaning goal (11627ms)\nWhat are enzymes?\tuncharacterized mammalian proteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (uncharacterized mammalian proteins, are, enzymes) -> uncharacterized mammalian proteins (11556ms)\nWhat are enzymes?\tthe plant\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (the plant, is rich in, enzymes) -> the plant (11706ms)\nWhat are enzymes?\tFree p24\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Free p24, can be measured with, enzyme) -> Free p24 (11660ms)\nWhat are enzymes?\tThe necessary factors\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (The necessary factors, are, enzymes) -> The necessary factors (11538ms)\nWhat are enzymes?\tnuts\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (nuts, are all rich in, enzymes) -> nuts (11330ms)\nWhat are enzymes?\tPineapples\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Pineapples, are rich in, enzymes) -> Pineapples (11594ms)\nWhat are enzymes?\theadaches\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (headaches, can be alleviated by, enzymes) -> headaches (11369ms)\nWhat are enzymes?\tThe ripening process\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (The ripening process, is due to living, enzymes) -> The ripening process (11330ms)\nWhat are enzymes?\tThe third ingredient\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (The third ingredient, is, enzymes) -> The third ingredient (11556ms)\nWhat are enzymes?\t50 %\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (the co-enzyme, is reduced to about, 50 %) -> 50 % (11691ms)\nWhat are enzymes?\ta lot better\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (a lot better, is, enzymes) -> a lot better (11736ms)\nWhat are enzymes?\tDrilling\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Drilling, can exhaust, enzymes) -> Drilling (11556ms)\nWhat are enzymes?\tbacterial cells\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (bacterial cells, can change patterns of, enzymes) -> bacterial cells (11594ms)\nWhat are enzymes?\tnutrition\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (nutrition, will be deficient in, enzymes) -> nutrition (11594ms)\nWhat are enzymes?\tConsumers\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Consumers, can be exposed to, enzymes) -> Consumers (11627ms)\nWhat are enzymes?\tThe majority of these proteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (The majority of these proteins, are, enzymes) -> The majority of these proteins (11644ms)\nWhat are enzymes?\toverall health\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (overall health, are, enzymes) -> overall health (11676ms)\nWhat are enzymes?\tthe plant matter\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the plant matter, will be exposed to, enzymes) -> the plant matter (11538ms)\nWhat are enzymes?\tchemical compounds\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (chemical compounds, are used to control, enzymes) -> chemical compounds (11349ms)\nWhat are enzymes?\tAbout 4,000 reactions\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (About 4,000 reactions, to be catalyzed by, enzymes) -> About 4,000 reactions (11181ms)\nWhat are enzymes?\tAdjuncts\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Adjuncts, usually are lacking in, enzymes) -> Adjuncts (11484ms)\nWhat are enzymes?\ta hundred times greater\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (these enzymes, is about, a hundred times greater) -> a hundred times greater (11389ms)\nWhat are enzymes?\tDrought\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (Drought, influences the activity of, enzymes) -> Drought (11706ms)\nWhat are enzymes?\tProteases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Proteases, are, enzymes) -> Proteases (11736ms)\nWhat are enzymes?\tsuch genes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (such genes, are, enzymes) -> such genes (11309ms)\nWhat are enzymes?\tthe adiponutrin gene\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (the adiponutrin gene, influences, liver enzyme levels) -> the adiponutrin gene (11706ms)\nWhat are enzymes?\tone-third\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (Abnormal liver enzyme levels, are also found in about, one-third) -> one-third (11573ms)\nWhat are enzymes?\tMultiple changes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Multiple changes, were noted in, enzymes) -> Multiple changes (11369ms)\nWhat are enzymes?\tFresh vegetable juices\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh vegetable juices, are also rich in, enzymes) -> Fresh vegetable juices (11447ms)\nWhat are enzymes?\tYogurt\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Yogurt, is rich in living, enzymes) -> Yogurt (11349ms)\nWhat are enzymes?\tOrganic foods\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Organic foods, are rich in, enzymes) -> Organic foods (11556ms)\nWhat are enzymes?\tglobular proteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (globular proteins, can act as, : - Enzymes) -> globular proteins (11676ms)\nWhat are enzymes?\tCo-factors\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Co-factors, are, enzymes) -> Co-factors (11247ms)\nWhat are enzymes?\tliving foods\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (living foods, are rich in, enzymes) -> living foods (11289ms)\nWhat are enzymes?\tThe goal\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (The goal, was to end up with, enzymes) -> The goal (11538ms)\nWhat are enzymes?\ta 100 % Food supplement\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (a 100 % Food supplement, is intended to supply, enzymes) -> a 100 % Food supplement (11389ms)\nWhat are enzymes?\tmalt\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (malt, can be replaced by, enzymes) -> malt (11466ms)\nWhat are enzymes?\tone-half\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (Abnormal liver enzyme levels, are also found in about, one-half) -> one-half (11644ms)\nWhat are enzymes?\ttype 2\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (type 2, consisted of, three enzymes) -> type 2 (11611ms)\nWhat are enzymes?\tpapaya\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (papaya, consists of, enzymes) -> papaya (11289ms)\nWhat are enzymes?\tthe catalyst\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (the catalyst, is, enzymes) -> the catalyst (11736ms)\nWhat are enzymes?\tDietary supplements\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Dietary supplements, should consists of, enzymes) -> Dietary supplements (11722ms)\nWhat are enzymes?\tthe germ tube\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (the germ tube, can release, enzymes) -> the germ tube (11594ms)\nWhat are enzymes?\twater\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (water, is needed to successfully use, enzymes) -> water (11573ms)\nWhat are enzymes?\tA number of\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (A number of, consisting of, herbs , enzyme and tea) -> A number of (11247ms)\nWhat are enzymes?\tCofactors\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Cofactors, are, enzymes) -> Cofactors (11408ms)\nWhat are enzymes?\tThe pathway\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The pathway, consists of, three enzymes/enzyme complexes) -> The pathway (11722ms)\nWhat are enzymes?\tinvestigators\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (investigators, can restore activity of, enzymes) -> investigators (11660ms)\nWhat are enzymes?\theat\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (heat, can destroy, enzymes) -> heat (11408ms)\nWhat are enzymes?\tBarley Grass\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Barley Grass, is high in, enzymes) -> Barley Grass (11389ms)\nWhat are enzymes?\teven 100 %\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (even 100 %, is lacking in, enzymes) -> even 100 % (11706ms)\nWhat are enzymes?\tthe size difference\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the size difference, is due to, enzymes) -> the size difference (11753ms)\nWhat are enzymes?\tfried and boiled eggs\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (fried and boiled eggs, can be converted by, enzymes) -> fried and boiled eggs (11466ms)\nWhat are enzymes?\trennet\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (rennet, consists of, enzymes) -> rennet (11611ms)\nWhat are enzymes?\tnot all proteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (not all proteins, are, enzymes) -> not all proteins (11611ms)\nWhat are enzymes?\tA raw foods diet\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (A raw foods diet, is high in, enzymes) -> A raw foods diet (11611ms)\nWhat are enzymes?\tTwo-row malt\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Two-row malt, is also lower in, enzymes) -> Two-row malt (11721ms)\nWhat are enzymes?\tinflammation\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (inflammation, can be blocked by, enzymes) -> inflammation (11573ms)\nWhat are enzymes?\tProteins\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Proteins, can act as, enzymes) -> Proteins (11556ms)\nWhat are enzymes?\tFresh fruit and vegetables\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh fruit and vegetables, are rich in, enzymes) -> Fresh fruit and vegetables (11447ms)\nWhat are enzymes?\tdrug receptors\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (drug receptors, are, enzymes) -> drug receptors (11226ms)\nWhat are enzymes?\tVitamins\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Vitamins, are similar to, enzymes) -> Vitamins (11502ms)\nWhat are enzymes?\tspliceosomes and ribosomes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (spliceosomes and ribosomes, is similar to, enzymes) -> spliceosomes and ribosomes (11466ms)\nWhat are enzymes?\tbananas , pineapple and papaya\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (bananas , pineapple and papaya, are high in, enzymes) -> bananas , pineapple and papaya (11349ms)\nWhat are enzymes?\tOxygen toxicity\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Oxygen toxicity, can deactivate, enzymes) -> Oxygen toxicity (11226ms)\nWhat are enzymes?\tA micro-organism\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (A micro-organism, consists of, cells and enzymes) -> A micro-organism (11466ms)\nWhat are enzymes?\tthe marine bacteria\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (the marine bacteria, can produce, enzymes) -> the marine bacteria (11753ms)\nWhat are enzymes?\tGrapefruit Apple Juice - 2 apples\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Grapefruit Apple Juice - 2 apples, consists of, an enzyme) -> Grapefruit Apple Juice - 2 apples (11721ms)\nWhat are enzymes?\tBreast milk\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Breast milk, is a beverage that contains, enzyme) -> Breast milk (11556ms)\nWhat are enzymes?\tProStar\t0.777777777771\tWhat are enzymes? -> $x: ($x, classify as, enzyme) -> (ProStar, are classified as, enzyme inhibitors) -> ProStar (11204ms)\nWhat are enzymes?\tPhytochemicals\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Phytochemicals, can also help boost, enzymes) -> Phytochemicals (11722ms)\nWhat are enzymes?\ta frozen entree\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (a frozen entree, is low in, enzymes) -> a frozen entree (11520ms)\nWhat are enzymes?\tThe bodies most powerful anti-oxidants\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (The bodies most powerful anti-oxidants, are, enzymes) -> The bodies most powerful anti-oxidants (11226ms)\nWhat are enzymes?\tchewable tablets\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (chewable tablets, can make taking, enzymes) -> chewable tablets (11676ms)\nWhat are enzymes?\tPit viper venom\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Pit viper venom, consists of, many enzymes) -> Pit viper venom (11753ms)\nWhat are enzymes?\tresults\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (results, is less likely to, enzymes) -> results (11268ms)\nWhat are enzymes?\tTreatment\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Treatment, consists of, pancreatic enzyme replacement) -> Treatment (11520ms)\nWhat are enzymes?\tThe raw juice\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (The raw juice, is rich in, enzymes) -> The raw juice (11268ms)\nWhat are enzymes?\tmedaka embryo\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (medaka embryo, consists of, two enzymes) -> medaka embryo (11447ms)\nWhat are enzymes?\tThe first four\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (The first four, are, enzymes) -> The first four (11484ms)\nWhat are enzymes?\t90 percent\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (this enzyme, is active in about, 90 percent) -> 90 percent (11225ms)\nWhat are enzymes?\t8 grams\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (8 grams, is rich in, enzymes) -> 8 grams (11466ms)\nWhat are enzymes?\tLipases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Lipases, are, enzymes) -> Lipases (11691ms)\nWhat are enzymes?\tSprouts\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Sprouts, are rich in, enzymes) -> Sprouts (11676ms)\nWhat are enzymes?\tBiological catalysts\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Biological catalysts, are, enzymes) -> Biological catalysts (11309ms)\nWhat are enzymes?\t5 %\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (His beta-enolase enzyme residual activity, was about, 5 %) -> 5 % (11722ms)\nWhat are enzymes?\tWhite blood cells\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (White blood cells, are especially rich in, enzymes) -> White blood cells (11736ms)\nWhat are enzymes?\theating\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (heating, are high in, enzymes) -> heating (11644ms)\nWhat are enzymes?\tCopper and zinc\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Copper and zinc, are involved in, enzymes) -> Copper and zinc (11594ms)\nWhat are enzymes?\tetc\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (etc, are, enzymes) -> etc (11427ms)\nWhat are enzymes?\tAntioxidants\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Antioxidants, are, enzymes) -> Antioxidants (11644ms)\nWhat are enzymes?\tThe old formula\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The old formula, consisted of, 12,500 protease enzymes) -> The old formula (11204ms)\nWhat are enzymes?\tpineapples Pineapples\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (pineapples Pineapples, are rich in, enzymes) -> pineapples Pineapples (11289ms)\nWhat are enzymes?\tpressure\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (pressure, can inactivate, enzymes) -> pressure (11226ms)\nWhat are enzymes?\ttoo high a temp\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (too high a temp, can denature, enzyme) -> too high a temp (11660ms)\nWhat are enzymes?\tCertain flavonoids\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Certain flavonoids, can inhibit, enzymes) -> Certain flavonoids (11611ms)\nWhat are enzymes?\tprotein\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (protein, is used to make, enzymes) -> protein (11349ms)\nWhat are enzymes?\tKuhn\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Kuhn, was interested both in, enzymes) -> Kuhn (11643ms)\nWhat are enzymes?\t24 hours\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (alert enzymes, is about, 24 hours) -> 24 hours (11484ms)\nWhat are enzymes?\tthe healthy shake\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (the healthy shake, consists of, enzymes) -> the healthy shake (11502ms)\nWhat are enzymes?\tthe invention\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the invention, is directed to, enzymes) -> the invention (11767ms)\nWhat are enzymes?\traw greens and fruits\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (raw greens and fruits, are rich in, enzymes) -> raw greens and fruits (11736ms)\nWhat are enzymes?\tAloe Vera.This gel\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Aloe Vera.This gel, is rich in, enzymes) -> Aloe Vera.This gel (11268ms)\nWhat are enzymes?\ta gene\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (a gene, influences, the activity of an enzyme) -> a gene (11204ms)\nWhat are enzymes?\tAmylases Amylases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Amylases Amylases, are, enzymes) -> Amylases Amylases (11660ms)\nWhat are enzymes?\tapples\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (apples, can inhibit, enzymes) -> apples (11520ms)\nWhat are enzymes?\tarabinose\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (arabinose, can disable, enzymes) -> arabinose (11408ms)\nWhat are enzymes?\tfood and medicine\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (food and medicine, is rich in, enzymes) -> food and medicine (11466ms)\nWhat are enzymes?\tThe protease charge ladder\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The protease charge ladder, consists of, a parent enzyme) -> The protease charge ladder (11520ms)\nWhat are enzymes?\tThe reaction mixture\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The reaction mixture, consisted of, 300 mg enzyme) -> The reaction mixture (11289ms)\nWhat are enzymes?\tdietary fats\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (dietary fats, can be digested by, enzymes) -> dietary fats (11389ms)\nWhat are enzymes?\tdeduced genes\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (deduced genes, can be classified as, enzymes) -> deduced genes (11309ms)\nWhat are enzymes?\t6-phosphate.The glucose PTS\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (6-phosphate.The glucose PTS, consists of, 4 enzymes) -> 6-phosphate.The glucose PTS (11309ms)\nWhat are enzymes?\tiron deficiency\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (iron deficiency, can influence, certain enzymes) -> iron deficiency (11736ms)\nWhat are enzymes?\t31 Wheatgrass juice\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (31 Wheatgrass juice, is high in, enzymes) -> 31 Wheatgrass juice (11484ms)\nWhat are enzymes?\t1,620\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (The enzyme, is about, 1,620) -> 1,620 (11538ms)\nWhat are enzymes?\taspirin\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (aspirin, was known to affect, enzymes) -> aspirin (11408ms)\nWhat are enzymes?\tgenetic studies\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (genetic studies, are, enzymes) -> genetic studies (11369ms)\nWhat are enzymes?\tAmazon.co.uk\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Amazon.co.uk, is pleased to have, Enzymes) -> Amazon.co.uk (11627ms)\nWhat are enzymes?\ttea leaves\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (liver enzymes, were just about like reading, tea leaves) -> tea leaves (11204ms)\nWhat are enzymes?\tthe soaking wheat seeds\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (the soaking wheat seeds, is rich in, enzymes) -> the soaking wheat seeds (11447ms)\nWhat are enzymes?\tlacto-fermented foods\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (lacto-fermented foods, are also rich in, enzymes) -> lacto-fermented foods (11611ms)\nWhat are enzymes?\tPretreatments\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Pretreatments, consisted of, enzyme digestion) -> Pretreatments (11706ms)\nWhat are enzymes?\tThe system\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The system, consists of, two individual enzyme components) -> The system (11349ms)\nWhat are enzymes?\tThe transcriptional oscillators\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The transcriptional oscillators, consist of, two enzymes) -> The transcriptional oscillators (11268ms)\nWhat are enzymes?\tActivity 1\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Activity 1, are, Enzymes) -> Activity 1 (11611ms)\nWhat are enzymes?\tThe supplemental enzymes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (The supplemental enzymes, are, enzymes) -> The supplemental enzymes (11225ms)\nWhat are enzymes?\tdigestive enzymes\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (digestive enzymes, are, enzymes) -> digestive enzymes (11247ms)\nWhat are enzymes?\tCellulases Cellulases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Cellulases Cellulases, are, enzymes) -> Cellulases Cellulases (11660ms)\nWhat are enzymes?\tpreservatives\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (preservatives, can also kills, enzymes) -> preservatives (11643ms)\nWhat are enzymes?\tsituations\t0.777777777771\tWhat are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is all about finding, situations) -> situations (11611ms)\nWhat are enzymes?\tfree radical scavengers\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (free radical scavengers, consist primarily of, four enzymes) -> free radical scavengers (11520ms)\nWhat are enzymes?\tcommonly minimum\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (commonly minimum, can improve, enzymes) -> commonly minimum (11466ms)\nWhat are enzymes?\tPTSs\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (PTSs, consist of, enzyme) -> PTSs (11767ms)\nWhat are enzymes?\tThe DNAzyme\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The DNAzyme, consists of, an enzyme) -> The DNAzyme (11268ms)\nWhat are enzymes?\teach day\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (each day, is meant to supply, enzymes) -> each day (11691ms)\nWhat are enzymes?\tBarley\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Barley, is rich in, enzymes) -> Barley (11502ms)\nWhat are enzymes?\teven ice chips\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (even ice chips, can stimulate, enzymes) -> even ice chips (11204ms)\nWhat are enzymes?\tCashew yogurt fresh\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Cashew yogurt fresh, is rich in living, enzymes) -> Cashew yogurt fresh (11660ms)\nWhat are enzymes?\tThe rest\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The rest, consists of, enzymes) -> The rest (11247ms)\nWhat are enzymes?\tThe first category\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (The first category, consists of, metabolic enzymes) -> The first category (11309ms)\nWhat are enzymes?\tthe protein\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (the protein, is also used to make, enzymes) -> the protein (11736ms)\nWhat are enzymes?\traw veggies\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (raw veggies, are rich in, enzymes) -> raw veggies (11722ms)\nWhat are enzymes?\tfabrics\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (fabrics, can be treated with, enzymes) -> fabrics (11644ms)\nWhat are enzymes?\tProsthetic groups\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Prosthetic groups, are tightly bound to, enzymes) -> Prosthetic groups (11389ms)\nWhat are enzymes?\tBiomarkers\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Biomarkers, can be, enzymes) -> Biomarkers (11330ms)\nWhat are enzymes?\tPelleting\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Pelleting, can also be stressful to, enzymes) -> Pelleting (11182ms)\nWhat are enzymes?\tSulfur\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (Sulfur, is essential in, enzymes) -> Sulfur (11330ms)\nWhat are enzymes?\tHfq and PABP II\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Hfq and PABP II, are linked to, enzymes) -> Hfq and PABP II (11247ms)\nWhat are enzymes?\tOligonucleotides\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Oligonucleotides, can act as, enzymes) -> Oligonucleotides (11556ms)\nWhat are enzymes?\tbile\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (bile, is to activate, enzymes) -> bile (11204ms)\nWhat are enzymes?\tEach replisome\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Each replisome, consists of, multiple enzymes) -> Each replisome (11556ms)\nWhat are enzymes?\texample\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (example, are rich in, enzymes) -> example (11594ms)\nWhat are enzymes?\tway\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (way, consists of, a lot more digestive enzymes) -> way (11329ms)\nWhat are enzymes?\tSaponins\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (Saponins, also influence the function of, enzymes) -> Saponins (11502ms)\nWhat are enzymes?\tAcid Reflux remedies\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (Acid Reflux remedies, can include, enzymes) -> Acid Reflux remedies (11289ms)\nWhat are enzymes?\tThe hydroperoxides\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (The hydroperoxides, can be converted by, enzymes) -> The hydroperoxides (11369ms)\nWhat are enzymes?\t3 months\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (3 months, are, enzymes) -> 3 months (11628ms)\nWhat are enzymes?\tThe latter structures\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (The latter structures, can encapsulate, enzymes) -> The latter structures (11644ms)\nWhat are enzymes?\ta Greek word\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (a Greek word, is required to produce, enzymes) -> a Greek word (11204ms)\nWhat are enzymes?\tthe biggest difference\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (the biggest difference, is adding in, enzymes) -> the biggest difference (11706ms)\nWhat are enzymes?\tbioflavonoids\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (bioflavonoids, has been shown to produce, enzymes) -> bioflavonoids (11573ms)\nWhat are enzymes?\tOPCs\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (OPCs, can be converted by, enzymes) -> OPCs (11691ms)\nWhat are enzymes?\tfood\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (food, to be broken down by, enzymes) -> food (11204ms)\nWhat are enzymes?\tchronic alcohol intake\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (chronic alcohol intake, can induce, enzymes) -> chronic alcohol intake (11330ms)\nWhat are enzymes?\thyperactivity and asthma\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (hyperactivity and asthma, Can affect, enzymes) -> hyperactivity and asthma (11329ms)\nWhat are enzymes?\tmetals\t0.777777777771\tWhat are enzymes? -> $x: ($x, influence, enzyme) -> (metals, are influenced by, metal-acting co-enzymes or catalysts) -> metals (11289ms)\nWhat are enzymes?\tmilk Papaya and Pineapple-Both\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (milk Papaya and Pineapple-Both, are rich in, enzymes) -> milk Papaya and Pineapple-Both (11502ms)\nWhat are enzymes?\tsystem\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (system, is a subpart of the body within, ENZYMES) -> system (11676ms)\nWhat are enzymes?\tEvery shake\t0.777777777771\tWhat are enzymes? -> $x: ($x, consist of, enzyme) -> (Every shake, consists of, digestive enzymes and prebiotics) -> Every shake (11627ms)\nWhat are enzymes?\tAmylases\t0.777777777771\tWhat are enzymes? -> $x: ($x, be be, enzyme) -> (Amylases, are, enzymes) -> Amylases (11204ms)\nWhat are enzymes?\tgreen barley juice\t0.777777777771\tWhat are enzymes? -> $x: ($x, be in, enzyme) -> (green barley juice, is abundant in, enzymes) -> green barley juice (11349ms)\nWhat are enzymes?\tThe walls\t0.777777777771\tWhat are enzymes? -> $x: ($x, can, enzyme) -> (The walls, can be removed with, enzymes) -> The walls (11736ms)\nWhat are enzymes?\t2. Digestion\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (2. Digestion, is required to activate, enzymes) -> 2. Digestion (11502ms)\nWhat are enzymes?\tQSAR methods\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (QSAR methods, are applied to, enzymes) -> QSAR methods (11538ms)\nWhat are enzymes?\tLactic acid bacteria\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (Lactic acid bacteria, is also known to produce, enzymes) -> Lactic acid bacteria (11538ms)\nWhat are enzymes?\tdrug candidates\t0.777777777771\tWhat are enzymes? -> $x: ($x, be to, enzyme) -> (drug candidates, are exposed to, enzymes) -> drug candidates (11389ms)\nWhat are enzymes?\tthe two recombinant enzymes\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the two recombinant enzymes, developed, an enzyme assay) -> the two recombinant enzymes (11824ms)\nWhat are enzymes?\tpatients\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (patients, will develop asymptomatic increases in, liver enzymes) -> patients (11824ms)\nWhat are enzymes?\tcurrent protease\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (current protease, induce, this enzyme system) -> current protease (11879ms)\nWhat are enzymes?\tThe enzyme component\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (The enzyme component, comprises at, least one protease enzyme) -> The enzyme component (11847ms)\nWhat are enzymes?\tmammalian liver\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (mammalian liver, comprises, several enzyme families) -> mammalian liver (11928ms)\nWhat are enzymes?\tSony\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Sony, developed retaining, the activity of the enzymes) -> Sony (11796ms)\nWhat are enzymes?\tFibrozym\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (Fibrozym, is comprised of, plant-based enzymes) -> Fibrozym (11824ms)\nWhat are enzymes?\tI3C\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (I3C, induces the production of, such enzymes) -> I3C (11928ms)\nWhat are enzymes?\tthe first disorder\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the first disorder, was developed, an enzyme therapy) -> the first disorder (11908ms)\nWhat are enzymes?\tthe root\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the root, is developed by, a special enzyme) -> the root (11868ms)\nWhat are enzymes?\tthe guidelines\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the guidelines, developed for, enzymes) -> the guidelines (11908ms)\nWhat are enzymes?\tthe human liver\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the human liver, has developed, enzymes) -> the human liver (11909ms)\nWhat are enzymes?\tscientists\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (scientists, have been studying the use of, a sister enzyme) -> scientists (11824ms)\nWhat are enzymes?\trifabutin\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (rifabutin, induce, hepatic microsomal enzymes) -> rifabutin (11928ms)\nWhat are enzymes?\tcertain metabolizing enzymes\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (certain metabolizing enzymes, can induce, those enzymes) -> certain metabolizing enzymes (11782ms)\nWhat are enzymes?\tisozymes\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (isozymes, represent a group of, enzymes) -> isozymes (11899ms)\nWhat are enzymes?\tL-dopa\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (L-dopa, induces, the enzymes MAT and COMT.) -> L-dopa (11928ms)\nWhat are enzymes?\tThe need\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (The need, has developed, an enzyme pulp) -> The need (11928ms)\nWhat are enzymes?\tMefloquine\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Mefloquine, induce, the cytochrome P450 enzyme system) -> Mefloquine (11835ms)\nWhat are enzymes?\tthe tetramer\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (the tetramer, represents the physiological state of, the enzyme) -> the tetramer (11824ms)\nWhat are enzymes?\tA BIO TECHNOLOGY COMPANY\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (A BIO TECHNOLOGY COMPANY, HAVE DEVELOPED, NEW ENZYME CALLED) -> A BIO TECHNOLOGY COMPANY (11868ms)\nWhat are enzymes?\tthe dark green region\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (the dark green region, represents the active site of, an enzyme) -> the dark green region (11835ms)\nWhat are enzymes?\tButalbital\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Butalbital, induces, hepatic enzymes) -> Butalbital (11918ms)\nWhat are enzymes?\tA throat lozenge\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (A throat lozenge, may comprise just, a lysin enzyme) -> A throat lozenge (11782ms)\nWhat are enzymes?\tMild enzyme elevation\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (Mild enzyme elevation, often represents, enzyme induction) -> Mild enzyme elevation (11782ms)\nWhat are enzymes?\tthe drugs\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (the drugs, induce, the methylase enzyme) -> the drugs (11908ms)\nWhat are enzymes?\tThe ball\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (The ball, represents, the enzyme) -> The ball (11918ms)\nWhat are enzymes?\tEirzyme\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Eirzyme, has developed, a proprietary enzyme technology) -> Eirzyme (11858ms)\nWhat are enzymes?\tmuch more freedom\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (much more freedom, develop the next generation of, enzymes) -> much more freedom (11835ms)\nWhat are enzymes?\tEfavirenz\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Efavirenz, to induce, P450 enzymes) -> Efavirenz (11858ms)\nWhat are enzymes?\tGenencor\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Genencor, develops, enzymes) -> Genencor (11796ms)\nWhat are enzymes?\tGR8CF-77?\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (GR8CF-77?, represent the cutting edge in, enzyme formulation) -> GR8CF-77? (11889ms)\nWhat are enzymes?\tThe money\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (The money, will be used to develop, enzymes) -> The money (11868ms)\nWhat are enzymes?\tthe end\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the end, helps develop, oxidative enzymes and mitochondria) -> the end (11847ms)\nWhat are enzymes?\tPhenylbutazone\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Phenylbutazone, also induces, hepatic microsomal enzyme activity) -> Phenylbutazone (11782ms)\nWhat are enzymes?\tResveratrol\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Resveratrol, induces, an enzyme called quinone reductase) -> Resveratrol (11858ms)\nWhat are enzymes?\ttobacco smoking\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (tobacco smoking, can induce, liver enzyme activities) -> tobacco smoking (11810ms)\nWhat are enzymes?\tthe NCI\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (the NCI, is underway to evaluate the use of, pancreatic enzymes) -> the NCI (11810ms)\nWhat are enzymes?\tThe former reactions\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (The former reactions, are represented by, enzymes) -> The former reactions (11810ms)\nWhat are enzymes?\tA test arc\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (A test arc, to represent, enzyme activity) -> A test arc (11889ms)\nWhat are enzymes?\tCodexis\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Codexis, develops, custom enzymes and catalysts) -> Codexis (11858ms)\nWhat are enzymes?\tDigest Gold\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (Digest Gold, represents, the most potent digestive enzyme) -> Digest Gold (11824ms)\nWhat are enzymes?\tlecithin\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (lecithin, are used function of, enzyme systems) -> lecithin (11847ms)\nWhat are enzymes?\tthe missing link\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (the missing link, is the use of, the enzyme protocol) -> the missing link (11889ms)\nWhat are enzymes?\tOne long-considered solution\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (One long-considered solution, is the use of, lytic enzymes) -> One long-considered solution (11899ms)\nWhat are enzymes?\tRifampin/rifampicin\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Rifampin/rifampicin, induces, hepatic enzymes) -> Rifampin/rifampicin (11858ms)\nWhat are enzymes?\ta test\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (a test, was developed to detect, elevated liver enzymes) -> a test (11908ms)\nWhat are enzymes?\tHypericum-containing products\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Hypericum-containing products, appear to induce, hepatic enzymes) -> Hypericum-containing products (11796ms)\nWhat are enzymes?\tthe U.S. Department\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the U.S. Department, is developing, enzymes) -> the U.S. Department (11858ms)\nWhat are enzymes?\ta color\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (a color, develops in, the presence of the bound enzyme) -> a color (11767ms)\nWhat are enzymes?\tDIM\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (DIM, induces, certain P-450 enzymes) -> DIM (11782ms)\nWhat are enzymes?\tCitrate cycle map\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (Citrate cycle map, representing, enzymes present in L.) -> Citrate cycle map (11847ms)\nWhat are enzymes?\tbioluminescence\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (bioluminescence, is the use of, the AK enzyme) -> bioluminescence (11927ms)\nWhat are enzymes?\tFH\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (FH, represents, one mitochondrial enzyme) -> FH (11796ms)\nWhat are enzymes?\tOne remedy\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (One remedy, is the use of, digestive enzymes or probiotics) -> One remedy (11879ms)\nWhat are enzymes?\tThe SmartZYME process\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (The SmartZYME process, is comprised of, multiple enzyme strains) -> The SmartZYME process (11847ms)\nWhat are enzymes?\tOzone\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Ozone, Induces, specific Enzymes) -> Ozone (11810ms)\nWhat are enzymes?\tChemGen\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (ChemGen, is to develop, innovative feed enzyme products) -> ChemGen (11918ms)\nWhat are enzymes?\tOne study limitation\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (One study limitation, was the use of, various enzyme) -> One study limitation (11908ms)\nWhat are enzymes?\tbioprocesses\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (bioprocesses, are the use of, microbial and enzyme biocatalysts) -> bioprocesses (11899ms)\nWhat are enzymes?\tGalNAc residues\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (GalNAc residues, represent the products of, this enzyme) -> GalNAc residues (11782ms)\nWhat are enzymes?\ta regular basis\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (a regular basis, develop, more fat burning enzymes) -> a regular basis (11899ms)\nWhat are enzymes?\tDrugs and alcohol ingestion\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Drugs and alcohol ingestion, induce, microsomal enzymes) -> Drugs and alcohol ingestion (11899ms)\nWhat are enzymes?\tSBC-102\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (SBC-102, is being developed as, an enzyme replacement therapy) -> SBC-102 (11889ms)\nWhat are enzymes?\tdistilled water\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (distilled water, is used instead of, enzyme solution) -> distilled water (11810ms)\nWhat are enzymes?\tALA\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (ALA, induces, liver phase II detoxification enzymes) -> ALA (11918ms)\nWhat are enzymes?\tlong-chain isothiocyanates\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (long-chain isothiocyanates, induces, the Phase II enzymes) -> long-chain isothiocyanates (11878ms)\nWhat are enzymes?\tbiotechnology\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (biotechnology, have developed, enzymes) -> biotechnology (11824ms)\nWhat are enzymes?\tcertain carbohydrates\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (certain carbohydrates, can induce, the presence of the enzymes) -> certain carbohydrates (11879ms)\nWhat are enzymes?\tDrugs\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Drugs, induce, hepatic microsomal enzymes) -> Drugs (11908ms)\nWhat are enzymes?\tDyadic\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Dyadic, develop, more efficient enzyme products and solutions) -> Dyadic (11858ms)\nWhat are enzymes?\tcurcumin\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (curcumin, induces, an enzyme) -> curcumin (11879ms)\nWhat are enzymes?\ta cornerstone\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (a cornerstone, induces, the enzyme cytochrome P450) -> a cornerstone (11835ms)\nWhat are enzymes?\tCarbamazepine\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Carbamazepine, induces, hepatic microsomal enzymes) -> Carbamazepine (11918ms)\nWhat are enzymes?\tpentobarbital\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (pentobarbital, induce, hepatic chromosomal enzymes) -> pentobarbital (11858ms)\nWhat are enzymes?\tThe enzymatic cleaning composition\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (The enzymatic cleaning composition, comprises, an enzyme) -> The enzymatic cleaning composition (11899ms)\nWhat are enzymes?\tthe skin gel\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the skin gel, is developed from, arctic marine enzymes) -> the skin gel (11835ms)\nWhat are enzymes?\tNewborns\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Newborns, also have to develop, healthy enzymes) -> Newborns (11810ms)\nWhat are enzymes?\tSertraline\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Sertraline, was shown to induce, hepatic enzymes) -> Sertraline (11835ms)\nWhat are enzymes?\tthe program\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the program, is to develop, new enzyme systems) -> the program (11810ms)\nWhat are enzymes?\tIGFBP2\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (IGFBP2, induces, the repair enzyme) -> IGFBP2 (11847ms)\nWhat are enzymes?\tPAH\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (PAH, induced, enzymes) -> PAH (11835ms)\nWhat are enzymes?\tlinoleic acid\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (linoleic acid, induces, peroxisome-specific enzyme accumulation) -> linoleic acid (11782ms)\nWhat are enzymes?\tthe color determination\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the color determination, develop, new enzymes) -> the color determination (11908ms)\nWhat are enzymes?\thydrocarbons\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (hydrocarbons, induce, hepatic CYP450 microsomal enzymes) -> hydrocarbons (11928ms)\nWhat are enzymes?\tbrain compound\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (brain compound, induce, hepatic enzymes) -> brain compound (11847ms)\nWhat are enzymes?\tDr. Nussbaum?s lab\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Dr. Nussbaum?s lab, developed, a clinically useful enzyme test) -> Dr. Nussbaum?s lab (11918ms)\nWhat are enzymes?\tKatzir\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Katzir, developed a method for, binding enzymes) -> Katzir (11908ms)\nWhat are enzymes?\tthe multi-enzyme composition\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (the multi-enzyme composition, comprises, the enzyme) -> the multi-enzyme composition (11918ms)\nWhat are enzymes?\tmetabolism map\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (metabolism map, representing, enzymes present in L.) -> metabolism map (11847ms)\nWhat are enzymes?\tMprF\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (MprF, represents a new class of, lipid-biosynthetic enzymes) -> MprF (11847ms)\nWhat are enzymes?\tZOLOFT\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (ZOLOFT, was shown to induce, hepatic enzymes) -> ZOLOFT (11918ms)\nWhat are enzymes?\tCancer cells\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Cancer cells, typically develop, an active telomerase enzyme) -> Cancer cells (11889ms)\nWhat are enzymes?\tThe drugs\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (The drugs, were developed against, group-2 enzymes) -> The drugs (11908ms)\nWhat are enzymes?\tthe enzyme system\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (the enzyme system, comprising, the cytochrome P450 enzymes) -> the enzyme system (11810ms)\nWhat are enzymes?\tAn example\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (An example, would be the use of, pancreatic enzyme) -> An example (11810ms)\nWhat are enzymes?\tNo participant\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (No participant, developed, liver enzyme elevations) -> No participant (11858ms)\nWhat are enzymes?\tK1 Kcat K2 Here E\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (K1 Kcat K2 Here E, represents, Enzyme) -> K1 Kcat K2 Here E (11918ms)\nWhat are enzymes?\tEthanol\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Ethanol, can induce, hepatic oxidative enzymes) -> Ethanol (11796ms)\nWhat are enzymes?\ttroglitazone\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (troglitazone, may also induce, hepatic enzymes) -> troglitazone (11928ms)\nWhat are enzymes?\tRitonavir\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Ritonavir, to induce, metabolic enzymes) -> Ritonavir (11899ms)\nWhat are enzymes?\tGenzyme\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Genzyme, previously developed, enzyme replacement therapies) -> Genzyme (11908ms)\nWhat are enzymes?\tEnzymatic debridement\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (Enzymatic debridement, is the use of, chemical enzymes) -> Enzymatic debridement (11868ms)\nWhat are enzymes?\tCurrent research project\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (Current research project, is exploring the use of, enzymes) -> Current research project (11879ms)\nWhat are enzymes?\tDr Kukol\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Dr Kukol, developed a 3D model of, the kinase IKK-? enzyme) -> Dr Kukol (11918ms)\nWhat are enzymes?\tthe combination\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (the combination, comprises, the enzyme) -> the combination (11879ms)\nWhat are enzymes?\tSoy\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Soy, induces, Phase II enzymes) -> Soy (11868ms)\nWhat are enzymes?\tAlbendazole\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Albendazole, induces, cytochrome P450 1A enzymes) -> Albendazole (11858ms)\nWhat are enzymes?\tthe agent\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (the agent, comprises, a thrombin-like enzyme) -> the agent (11782ms)\nWhat are enzymes?\trifampin\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (rifampin, induces, hepatic microsomal enzymes) -> rifampin (11868ms)\nWhat are enzymes?\tThe second step\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (The second step, is to develop, an enzyme mixture) -> The second step (11868ms)\nWhat are enzymes?\ta test arc\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (a test arc, can be used to represent, enzyme activity) -> a test arc (11908ms)\nWhat are enzymes?\tn-3 PUFAs\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (n-3 PUFAs, can induce, phase II detoxifying enzymes) -> n-3 PUFAs (11928ms)\nWhat are enzymes?\tmedications\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (medications, induce, liver enzymes) -> medications (11928ms)\nWhat are enzymes?\tthe company\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the company, has developed, an enzyme catalysed process) -> the company (11928ms)\nWhat are enzymes?\tThe known pathway\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (The known pathway, comprises, five enzymes) -> The known pathway (11889ms)\nWhat are enzymes?\ta specialty formula\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (a specialty formula, comprised of, key therapeutic enzymes) -> a specialty formula (11868ms)\nWhat are enzymes?\tThe acid protease\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (The acid protease, comprises, one or more proteolytic enzymes) -> The acid protease (11847ms)\nWhat are enzymes?\tMat?s\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Mat?s, develops, innovative enzymes) -> Mat?s (11899ms)\nWhat are enzymes?\tthe CLA\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (the CLA, induces the activity of, another enzyme) -> the CLA (11868ms)\nWhat are enzymes?\tOmega-zyme\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (Omega-zyme, is comprised of over, 20 different enzymes) -> Omega-zyme (11918ms)\nWhat are enzymes?\tTegretol\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Tegretol, induces, enzymes) -> Tegretol (11796ms)\nWhat are enzymes?\tthe African grasshopper\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the African grasshopper, has developed, a specific enzyme) -> the African grasshopper (11835ms)\nWhat are enzymes?\tFibrozym?\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (Fibrozym?, is comprised of, plant-based enzymes) -> Fibrozym? (11782ms)\nWhat are enzymes?\tAlcohol\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Alcohol, may induce, liver enzymes) -> Alcohol (11796ms)\nWhat are enzymes?\tCompositions\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (Compositions, comprise, an enzyme) -> Compositions (11908ms)\nWhat are enzymes?\tthe Action\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the Action, is to develop, novel enzymes) -> the Action (11824ms)\nWhat are enzymes?\tDiamond shapes\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (Diamond shapes, represent, enzymes) -> Diamond shapes (11824ms)\nWhat are enzymes?\tantibodies\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (antibodies, comprise, the enzyme and hormonal systems) -> antibodies (11782ms)\nWhat are enzymes?\traw meals\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (raw meals, comprise, enzymes) -> raw meals (11879ms)\nWhat are enzymes?\tsmoking\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (smoking, induce, liver enzymes) -> smoking (11782ms)\nWhat are enzymes?\tA lock-and-key model\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (A lock-and-key model, is useful in representing, enzyme activity) -> A lock-and-key model (11928ms)\nWhat are enzymes?\tarchaea\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (archaea, represent an important source of, enzymes) -> archaea (11937ms)\nWhat are enzymes?\tpoliovirus\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (poliovirus, induced, extensive cytopathology and enzyme release) -> poliovirus (11858ms)\nWhat are enzymes?\tthe pigment epithelium\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (the pigment epithelium, induce, lysosomal enzyme) -> the pigment epithelium (11767ms)\nWhat are enzymes?\tABCB1\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (ABCB1, induce, numerous CYP enzymes) -> ABCB1 (11796ms)\nWhat are enzymes?\tRSG\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (RSG, induced the transcription of, antioxidant enzymes) -> RSG (11868ms)\nWhat are enzymes?\tERT\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (ERT, develop immune responses to, the infused enzyme) -> ERT (11928ms)\nWhat are enzymes?\tNF-kappaB\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (NF-kappaB, induces, phase 2 detoxifying enzyme activity) -> NF-kappaB (11879ms)\nWhat are enzymes?\tFermentation\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (Fermentation, is a major use of, genes and enzymes) -> Fermentation (11918ms)\nWhat are enzymes?\t11 percent\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (11 percent, developed, high liver enzymes) -> 11 percent (11899ms)\nWhat are enzymes?\tthe work\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the work, has developed into, Enzyme Nutrition Therapy) -> the work (11928ms)\nWhat are enzymes?\tbiocatalysis research\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (biocatalysis research, develop, new enzymes) -> biocatalysis research (11879ms)\nWhat are enzymes?\tTacrine\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, side, enzyme) -> (Tacrine, has side effects on, liver enzymes) -> Tacrine (11847ms)\nWhat are enzymes?\tDuke\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Duke, developed, the recombinant porcine uricase enzyme) -> Duke (11889ms)\nWhat are enzymes?\tWalker\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, be use of, enzyme) -> (Walker, are studying the use of, enzymes) -> Walker (11868ms)\nWhat are enzymes?\tdrugs\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (drugs, induce, these enzymes) -> drugs (11937ms)\nWhat are enzymes?\tEthanol Research\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Ethanol Research, is also working to develop, enzymes) -> Ethanol Research (11899ms)\nWhat are enzymes?\tThe composition\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (The composition, comprises, a selected enzyme) -> The composition (11928ms)\nWhat are enzymes?\tthe potential\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the potential, has developed a class of, enzymes) -> the potential (11858ms)\nWhat are enzymes?\tearth\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (earth, has developed some form of, the enzyme catalase) -> earth (11796ms)\nWhat are enzymes?\tPP2A\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (PP2A, is comprised of, a core enzyme) -> PP2A (11858ms)\nWhat are enzymes?\tSulforaphane\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Sulforaphane, induces, enzymes) -> Sulforaphane (11824ms)\nWhat are enzymes?\tIogen and Novozymes\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Iogen and Novozymes, have been developing, enzymes) -> Iogen and Novozymes (11899ms)\nWhat are enzymes?\ta phytochemical agent\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (a phytochemical agent, of inducing, an enzyme activity) -> a phytochemical agent (11847ms)\nWhat are enzymes?\tButanoate metabolic map\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (Butanoate metabolic map, representing, enzymes present in L.) -> Butanoate metabolic map (11879ms)\nWhat are enzymes?\tsertraline hydrochloride\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (sertraline hydrochloride, was shown to induce, hepatic enzymes) -> sertraline hydrochloride (11796ms)\nWhat are enzymes?\tCAH\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (CAH, represent, enzyme deficiencies) -> CAH (11767ms)\nWhat are enzymes?\tLH\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (LH, also induces, enzymes) -> LH (11810ms)\nWhat are enzymes?\tSuch anticonvulsants\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Such anticonvulsants, induce, hepatic P450 microsomal enzymes) -> Such anticonvulsants (11824ms)\nWhat are enzymes?\tSymptoms\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Symptoms, may develop such as, elevated liver enzymes) -> Symptoms (11908ms)\nWhat are enzymes?\tSulfinpyrazone\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Sulfinpyrazone, can induce, hepatic oxidative microsomal enzymes) -> Sulfinpyrazone (11889ms)\nWhat are enzymes?\tPreparations\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Preparations, inducing, liver enzymes) -> Preparations (11782ms)\nWhat are enzymes?\tAntiretrovirals\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Antiretrovirals, induce, the CYP enzymes) -> Antiretrovirals (11899ms)\nWhat are enzymes?\tthe edges\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (the edges, represent, the enzymes) -> the edges (11918ms)\nWhat are enzymes?\ttreatment\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (treatment, will usually develop, abnormal liver enzyme levels) -> treatment (11835ms)\nWhat are enzymes?\tSolvent\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Solvent, induced change of, enzyme enantioselectivity) -> Solvent (11824ms)\nWhat are enzymes?\tlipids\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (lipids, induces, the same enzymes) -> lipids (11824ms)\nWhat are enzymes?\tthe DNA strands\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (the DNA strands, induce synthesis of, repair enzymes) -> the DNA strands (11899ms)\nWhat are enzymes?\tDuke University\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Duke University, developed, the recombinant uricase enzyme) -> Duke University (11889ms)\nWhat are enzymes?\ta fever\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (a fever, induces, faster enzyme action) -> a fever (11782ms)\nWhat are enzymes?\thydrolase family 22\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (hydrolase family 22, comprises, enzymes) -> hydrolase family 22 (11878ms)\nWhat are enzymes?\tepigallocatechingallate\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (epigallocatechingallate, induces, enzyme activity) -> epigallocatechingallate (11824ms)\nWhat are enzymes?\tThe parameter p\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (The parameter p, represents the percentage of, other enzymes) -> The parameter p (11810ms)\nWhat are enzymes?\tthe rainbow\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (the rainbow, represented, the respiratory enzymes) -> the rainbow (11835ms)\nWhat are enzymes?\teach of these categories\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, represent, enzyme) -> (each of these categories, is represented by, multiple enzymes) -> each of these categories (11889ms)\nWhat are enzymes?\tlow.Rimonabant\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (low.Rimonabant, induce, other CYP enzymes) -> low.Rimonabant (11835ms)\nWhat are enzymes?\tproducts\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (products, appear to induce, hepatic enzymes) -> products (11868ms)\nWhat are enzymes?\tthe regular basis\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (the regular basis, will develop more of, fat burning enzymes) -> the regular basis (11810ms)\nWhat are enzymes?\tCarbohydrates\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Carbohydrates, induce, enzymes) -> Carbohydrates (11824ms)\nWhat are enzymes?\tMETABONEX\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (METABONEX, induces, thermogenic enzymes) -> METABONEX (11868ms)\nWhat are enzymes?\tisolated enzymes\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (isolated enzymes, will be developed for, enzymes) -> isolated enzymes (11847ms)\nWhat are enzymes?\thoney ? honey\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, comprise, enzyme) -> (honey ? honey, comprises of, enzymes) -> honey ? honey (11918ms)\nWhat are enzymes?\tAvicel and xylan\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, induce, enzyme) -> (Avicel and xylan, broadly induced, enzymes) -> Avicel and xylan (11868ms)\nWhat are enzymes?\tAFA\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (AFA, has developed, wide and versatile enzyme systems) -> AFA (11835ms)\nWhat are enzymes?\tGenzyme Corp.\t0.6666666666609999\tWhat are enzymes? -> $x: ($x, develop, enzyme) -> (Genzyme Corp., has developed, enzyme replacement therapies) -> Genzyme Corp. (11868ms)\nWhat are enzymes?\tIndustrial workers\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (Industrial workers, can be exposed to, various enzymes) -> Industrial workers (11997ms)\nWhat are enzymes?\tMolecular biologists\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Molecular biologists, have discovered, many enzymes) -> Molecular biologists (11937ms)\nWhat are enzymes?\tprescription\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (prescription, can be removed as, a enzyme) -> prescription (11937ms)\nWhat are enzymes?\tlist\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (list, can be used to switch between, enzymes) -> list (11997ms)\nWhat are enzymes?\tWine\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (Wine, could be fermented with, enzymes or concentrates) -> Wine (11946ms)\nWhat are enzymes?\tdegradation\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (degradation, could be counteracted by, de-ubiquitinating enzymes) -> degradation (11964ms)\nWhat are enzymes?\tsmaller particles\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (smaller particles, can be acted by, various enzymes) -> smaller particles (11989ms)\nWhat are enzymes?\tYadB\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, constitute, enzyme) -> (YadB, constitutes, the first enzyme) -> YadB (11946ms)\nWhat are enzymes?\tBlackburn\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Blackburn, co-discovered, the telomerase enzyme) -> Blackburn (11964ms)\nWhat are enzymes?\tAny residual stain\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (Any residual stain, could be treated with, an enzyme cleaner) -> Any residual stain (11981ms)\nWhat are enzymes?\tstarch\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (starch, can be digested by, vertebrate enzymes) -> starch (11937ms)\nWhat are enzymes?\tLysoSENS\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (LysoSENS, has focused on discovering, microbial enzymes) -> LysoSENS (11981ms)\nWhat are enzymes?\t5-alpha reductase\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (5-alpha reductase, can be, an enzyme) -> 5-alpha reductase (11946ms)\nWhat are enzymes?\tUCLA scientists\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (UCLA scientists, first discovered, this repair enzyme) -> UCLA scientists (11997ms)\nWhat are enzymes?\tsynthesis\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, constitute, enzyme) -> (synthesis, constitutes, the enzymes) -> synthesis (11937ms)\nWhat are enzymes?\tThe major proteins\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (The major proteins, could be digested by, proteolytic enzymes) -> The major proteins (11955ms)\nWhat are enzymes?\ta starch thickener\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (a starch thickener, can be broken down by, enzymes) -> a starch thickener (11964ms)\nWhat are enzymes?\tDr. Hiroyuki Sumi\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Dr. Hiroyuki Sumi, discovered, this enzyme) -> Dr. Hiroyuki Sumi (11955ms)\nWhat are enzymes?\tthe PI enzyme\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (the PI enzyme, could be converted into, the PII enzyme) -> the PI enzyme (11981ms)\nWhat are enzymes?\tPKU\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (PKU, can be detected by, enzyme) -> PKU (11946ms)\nWhat are enzymes?\tThe same coenzyme\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (The same coenzyme, can be associated with, many enzymes) -> The same coenzyme (11955ms)\nWhat are enzymes?\tInactive macrophages\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (Inactive macrophages, could be, withholding vital enzymes) -> Inactive macrophages (11997ms)\nWhat are enzymes?\tlysogenic B. subtilis cells\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (lysogenic B. subtilis cells, can be cut by, these enzymes) -> lysogenic B. subtilis cells (11946ms)\nWhat are enzymes?\tThe scientists\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (The scientists, discovered a way of using, enzymes) -> The scientists (11981ms)\nWhat are enzymes?\tGreider\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Greider, discovered, the enzyme telomerase) -> Greider (11972ms)\nWhat are enzymes?\tmore oVOCs\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (more oVOCs, can be metabolized by, the enzymes) -> more oVOCs (11989ms)\nWhat are enzymes?\tpeeled and cut\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (peeled and cut, can be prevented from, enzyme browning) -> peeled and cut (11989ms)\nWhat are enzymes?\tDr. Fridovich\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Dr. Fridovich, discovered, the enzyme Cu,Zn-superoxide dismutase) -> Dr. Fridovich (11997ms)\nWhat are enzymes?\tDoctors\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Doctors, have discovered, a miraculous enzyme) -> Doctors (11989ms)\nWhat are enzymes?\tAloe\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (Aloe, can also be used to, heighten enzymes) -> Aloe (11972ms)\nWhat are enzymes?\tThe new research\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (The new research, has discovered, specific enzymes) -> The new research (11955ms)\nWhat are enzymes?\thistamine intolerance benefits\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (histamine intolerance benefits, can be tamed by, the enzyme) -> histamine intolerance benefits (11955ms)\nWhat are enzymes?\tthe expanded PVA\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (the expanded PVA, could be used for, enzyme immobilisation) -> the expanded PVA (11955ms)\nWhat are enzymes?\tthe double helix\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (the double helix, can be easily separated by, enzymes) -> the double helix (11972ms)\nWhat are enzymes?\tVascular Science\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Vascular Science, have discovered the role of, an enzyme) -> Vascular Science (11981ms)\nWhat are enzymes?\tmRNA\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (mRNA, could be a memory for, an enzyme) -> mRNA (11989ms)\nWhat are enzymes?\tAn XNA alternative\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (An XNA alternative, could be impervious to, those enzymes) -> An XNA alternative (11989ms)\nWhat are enzymes?\tThe project\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (The project, aims to discover, enzymes) -> The project (11997ms)\nWhat are enzymes?\tthe junction\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (the junction, can be used for, the enzyme) -> the junction (11964ms)\nWhat are enzymes?\tPhD\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (PhD, co-discovered, the telomerase enzyme) -> PhD (11955ms)\nWhat are enzymes?\tThe DNA\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (The DNA, could also be isolated using, restriction enzymes) -> The DNA (11964ms)\nWhat are enzymes?\tthe list\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (the list, can be alleviated by, enzyme pills) -> the list (11997ms)\nWhat are enzymes?\tHot soup\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (Hot soup, can be low in, live enzymes) -> Hot soup (11981ms)\nWhat are enzymes?\t? View PHEN375\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, constitute, enzyme) -> (? View PHEN375, is constituted of, cyclic AMP enzyme boosters) -> ? View PHEN375 (11997ms)\nWhat are enzymes?\tcontrol\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (control, can be distributed over, the enzymes) -> control (11964ms)\nWhat are enzymes?\tMilk\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (Milk, can be treated with, the enzyme) -> Milk (11972ms)\nWhat are enzymes?\tpee\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (pee, could be taken away by using, enzyme cleaning soap) -> pee (11964ms)\nWhat are enzymes?\tAmoxicillin\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (Amoxicillin, can be inactivated by, an enzyme) -> Amoxicillin (11997ms)\nWhat are enzymes?\tdisinfections\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (disinfections, can be removed by, catalase enzyme) -> disinfections (11972ms)\nWhat are enzymes?\ta material\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (a material, can be broken down by, enzymes) -> a material (11964ms)\nWhat are enzymes?\tNew research\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (New research, has discovered, enzymes) -> New research (11955ms)\nWhat are enzymes?\tmore tumor cells\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (more tumor cells, could be removed by, the enzymes) -> more tumor cells (11937ms)\nWhat are enzymes?\tSchoenberg\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Schoenberg, first discovered, the PMR1 enzyme) -> Schoenberg (11989ms)\nWhat are enzymes?\tCambridge\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Cambridge, discovered the presence of, the enzyme) -> Cambridge (11955ms)\nWhat are enzymes?\tThe antibody\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (The antibody, can be directly labeled with, the enzyme) -> The antibody (11937ms)\nWhat are enzymes?\tfructose\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (fructose, can be metabolized by, an enzyme) -> fructose (11946ms)\nWhat are enzymes?\tion\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (ion, can be transported by, several enzymes) -> ion (11989ms)\nWhat are enzymes?\tImmune system regulation\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (Immune system regulation, can also be accomplished with, enzymes) -> Immune system regulation (11946ms)\nWhat are enzymes?\tFolkers\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Folkers, had also discovered, an easily measurable enzyme) -> Folkers (11964ms)\nWhat are enzymes?\tosteoarthritis\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (osteoarthritis, could be helped with, enzyme therapy) -> osteoarthritis (11981ms)\nWhat are enzymes?\tLi\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Li, also discovered, another enzyme) -> Li (11946ms)\nWhat are enzymes?\ta propeptide\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (a propeptide, can be cleaved extracellularly by, enzymes) -> a propeptide (11981ms)\nWhat are enzymes?\teffectively isoflavones\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (effectively isoflavones, can be processed by, these enzymes) -> effectively isoflavones (11937ms)\nWhat are enzymes?\tplant cell walls\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (plant cell walls, can be broken down by, enzymes) -> plant cell walls (11997ms)\nWhat are enzymes?\tlate-onset Pompe disease\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (late-onset Pompe disease, can be treated with, enzyme therapy) -> late-onset Pompe disease (11997ms)\nWhat are enzymes?\tABS\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (ABS, also has discovered, a novel enzyme) -> ABS (11972ms)\nWhat are enzymes?\tnoradrenaline\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (noradrenaline, could be neutralized by, an enzyme) -> noradrenaline (11946ms)\nWhat are enzymes?\tcertain tissues\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (certain tissues, could be replaced by, other PLC enzymes) -> certain tissues (11955ms)\nWhat are enzymes?\tThe affected protein\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (The affected protein, could be, an enzyme) -> The affected protein (11937ms)\nWhat are enzymes?\tdiagnostic work-up\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (diagnostic work-up, could be to draw, cardiac enzymes) -> diagnostic work-up (11955ms)\nWhat are enzymes?\tthe plasmid\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (the plasmid, can be opened using, restriction enzymes) -> the plasmid (11937ms)\nWhat are enzymes?\tthe original researchers\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (the original researchers, first discovered, co-enzyme Q10) -> the original researchers (11981ms)\nWhat are enzymes?\tTemin and Baltimore\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Temin and Baltimore, discovered, this enzyme) -> Temin and Baltimore (11972ms)\nWhat are enzymes?\tNEI investigators\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (NEI investigators, have discovered, a naturally occurring enzyme) -> NEI investigators (11989ms)\nWhat are enzymes?\t3000 bp\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (3000 bp, can be achieved with, this enzyme) -> 3000 bp (11972ms)\nWhat are enzymes?\tthe fat\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (the fat, can be digested by, the enzymes) -> the fat (11946ms)\nWhat are enzymes?\ta living organisms\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (a living organisms, can be is dependent on, the enzymes) -> a living organisms (11946ms)\nWhat are enzymes?\tThe reason\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (The reason, could be a deficiency of, digestive enzymes) -> The reason (11955ms)\nWhat are enzymes?\tFOS\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (FOS, can also be synthesized by, enzymes) -> FOS (11989ms)\nWhat are enzymes?\tLife\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (Life, can be hell without, these enzymes) -> Life (11972ms)\nWhat are enzymes?\tan additional substrate\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (an additional substrate, can be helped with, digestive enzymes) -> an additional substrate (11997ms)\nWhat are enzymes?\tdetection\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (detection, can be destroyed by, pancreatic enzymes) -> detection (11972ms)\nWhat are enzymes?\tKm\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (Km, can be used to compare, enzymes) -> Km (11981ms)\nWhat are enzymes?\tScotland\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Scotland, have discovered, a natural fluorinase enzyme) -> Scotland (11972ms)\nWhat are enzymes?\tplant cells\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, can be, enzyme) -> (plant cells, can be extracted with, enzymes) -> plant cells (11972ms)\nWhat are enzymes?\tBass\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Bass, discovered an entire new class of, enzymes) -> Bass (11937ms)\nWhat are enzymes?\tPh. D.\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, discover, enzyme) -> (Ph. D., co-discovered, the telomerase enzyme) -> Ph. D. (11989ms)\nWhat are enzymes?\tcancer\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (cancer, could be determined by, these enzymes) -> cancer (11997ms)\nWhat are enzymes?\timportant proteins\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (important proteins, could be, enzymes) -> important proteins (11972ms)\nWhat are enzymes?\tThe azide component\t0.6666666666600001\tWhat are enzymes? -> $x: ($x, could be, enzyme) -> (The azide component, could be tethered to, the enzyme surface) -> The azide component (11946ms)\nWho is the conductor of the Boston Pops?\tMr. Lockhart\t0.222222222222\tWho is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Mr. Lockhart, has been Conductor of, the Boston Pops Orchestra) -> Mr. Lockhart (700ms)\nWho is the conductor of the Boston Pops?\tCasella\t0.222222222222\tWho is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Casella, was the principal conductor of, the Boston Pops) -> Casella (699ms)\nWho is the conductor of the Boston Pops?\tNakahara\t0.222222222222\tWho is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Nakahara, is primary conductor of, the SuperPops series) -> Nakahara (699ms)\nWho is the conductor of the Boston Pops?\tWilliams\t0.222222222222\tWho is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Williams, was the conductor of, the Boston Pops) -> Williams (699ms)\nIn what year was Warren Moon born?\tFelicia Moon\t-1.22222222222\tIn what year was Warren Moon born? -> $x: ($x, marry, warren moon) -> (Felicia Moon, was married to, Warren Moon) -> Felicia Moon (754ms)\nWhen was the Red Cross founded?\tLibya\t1.666666666658\tWhen was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (the Red Cross, have been found in, Libya) -> Libya (1829ms)\nWhen was the Red Cross founded?\tan HIV infection case\t1.666666666658\tWhen was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (Swiss Red Cross, has been found guilty in, an HIV infection case) -> an HIV infection case (1829ms)\nWhen was the Red Cross founded?\tGeneva\t1.666666666658\tWhen was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (The Red Cross Museum, is found in, Geneva) -> Geneva (1829ms)\nWhen was the Red Cross founded?\tthe town\t1.666666666658\tWhen was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (the Red Cross, had been found in, the town) -> the town (1829ms)\nWhen was the Red Cross founded?\tthe ?About\t1.666666666658\tWhen was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (Additional Red Cross history, can be found in, the ?About) -> the ?About (1829ms)\nWhen was the Red Cross founded?\tAustralian Red Cross\t1.444444444442\tWhen was the Red Cross founded? -> $x: ($x, found, australian red cross) -> (Australian Red Cross, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Australian%20Red%20Cross) -> Australian Red Cross (1829ms)\nWhen was the Red Cross founded?\thttp://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society\t1.222222222216\tWhen was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Uganda Red Cross Society, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society) -> http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society (2605ms)\nWhen was the Red Cross founded?\twww.redcross .org\t1.222222222216\tWhen was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Open Red Cross shelters, can be found on, www.redcross .org) -> www.redcross .org (2605ms)\nWhen was the Red Cross founded?\thttp://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts\t1.222222222216\tWhen was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Crossing The Red Sea With The Adverts, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts) -> http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts (1829ms)\nWhen was the Red Cross founded?\thttp://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing\t1.222222222216\tWhen was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Japanese Red Cross College of Nursing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing) -> http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing (2604ms)\nWhen was the Red Cross founded?\twww.redcross\t1.222222222216\tWhen was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Open Red Cross shelters, can be found on, www.redcross) -> www.redcross (2605ms)\nWhen was the Red Cross founded?\thttp://en.wikipedia.org/wiki/Australian%20Red%20Cross\t1.222222222216\tWhen was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Australian Red Cross, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Australian%20Red%20Cross) -> http://en.wikipedia.org/wiki/Australian%20Red%20Cross (1829ms)\nWhen was the Red Cross founded?\tThe lesson plan\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (The lesson plan, can be found on, the Red Cross education site) -> The lesson plan (3568ms)\nWhen was the Red Cross founded?\ta compatible donor\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (a compatible donor, was found by, the American Red Cross) -> a compatible donor (2961ms)\nWhen was the Red Cross founded?\ta listing\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (a listing, can be found on, the American Red Cross website) -> a listing (3568ms)\nWhen was the Red Cross founded?\tA Spotted Gloucester Sow\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (A Spotted Gloucester Sow, found in, my local Red Cross shop) -> A Spotted Gloucester Sow (3523ms)\nWhen was the Red Cross founded?\tCrossing The Red Sea With The Adverts\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Crossing The Red Sea With The Adverts, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts) -> Crossing The Red Sea With The Adverts (3568ms)\nWhen was the Red Cross founded?\tcardigan\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (cardigan, found at, my local Red Cross op shop) -> cardigan (2819ms)\nWhen was the Red Cross founded?\tdisaster supplies\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (disaster supplies, can be found on, the Red Cross website) -> disaster supplies (3523ms)\nWhen was the Red Cross founded?\tretirees\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (retirees, find opportunities with, the Red Cross) -> retirees (3091ms)\nWhen was the Red Cross founded?\tHumanity\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Humanity, Find, your nearest solicitor Red Cross) -> Humanity (2605ms)\nWhen was the Red Cross founded?\twomen\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (women, found, the American Red Cross) -> women (2961ms)\nWhen was the Red Cross founded?\tthe end\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (the end, finds a closed door with, a giant red cross) -> the end (2819ms)\nWhen was the Red Cross founded?\tSimilar statements\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Similar statements, are found in, the Red Cross report) -> Similar statements (3568ms)\nWhen was the Red Cross founded?\ta user\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (a user, then find, the nearest American Red Cross chapter) -> a user (3651ms)\nWhen was the Red Cross founded?\tAdolphus Solomons\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Adolphus Solomons, found, the American National Red Cross) -> Adolphus Solomons (3091ms)\nWhen was the Red Cross founded?\t? People\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (? People, can find, open Red Cross shelters) -> ? People (3523ms)\nWhen was the Red Cross founded?\tthe crowds\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (the crowds, will also find, high-quality Red Cross products) -> the crowds (2819ms)\nWhen was the Red Cross founded?\tthe support\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (the support, found, their Red Cross officer) -> the support (3651ms)\nWhen was the Red Cross founded?\ta committed volunteer\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (a committed volunteer, find some time for, American Red Cross) -> a committed volunteer (3651ms)\nWhen was the Red Cross founded?\tMore information\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (More information, can be found through, the American Red Cross) -> More information (3523ms)\nWhen was the Red Cross founded?\ta little\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (a little, found a great WWII pattern from, the Red Cross) -> a little (3523ms)\nWhen was the Red Cross founded?\tCPR Certification\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (CPR Certification, Find, a red cross CPR instructor) -> CPR Certification (3091ms)\nWhen was the Red Cross founded?\tcommunity resources\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (community resources, can be found at, the American Red Cross) -> community resources (2819ms)\nWhen was the Red Cross founded?\tthe donation page\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (the donation page, can be found at, Donate Red Cross) -> the donation page (3523ms)\nWhen was the Red Cross founded?\tevacuees\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (evacuees, could find, the American Red Cross) -> evacuees (3091ms)\nWhen was the Red Cross founded?\tUganda Red Cross Society\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Uganda Red Cross Society, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society) -> Uganda Red Cross Society (2961ms)\nWhen was the Red Cross founded?\tClara Barton\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Clara Barton, helped found, the American Red Cross) -> Clara Barton (3651ms)\nWhen was the Red Cross founded?\tClara\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Clara, found out about, The Red Cross) -> Clara (3091ms)\nWhen was the Red Cross founded?\tJapanese Red Cross College of Nursing\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Japanese Red Cross College of Nursing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing) -> Japanese Red Cross College of Nursing (3651ms)\nWhen was the Red Cross founded?\tmilitary families\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (military families, Find, your local Red Cross) -> military families (3651ms)\nWhen was the Red Cross founded?\tthe Samouni family\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (the Samouni family, were finally found by, the Red Cross) -> the Samouni family (2819ms)\nWhen was the Red Cross founded?\tgeneral\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (general, will find a link to, the Red Cross) -> general (3568ms)\nWhen was the Red Cross founded?\tdamage estimates\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (damage estimates, can be found in, Red Cross records) -> damage estimates (3091ms)\nWhen was the Red Cross founded?\tmore information\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (more information, can be found at, the American Red Cross) -> more information (3091ms)\nWhen was the Red Cross founded?\tJohn\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (John, has also found, Red Cross support invaluable) -> John (3651ms)\nWhen was the Red Cross founded?\tthe middle\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (the middle, you?ll find, a Red Cross emergency aid station) -> the middle (3651ms)\nWhen was the Red Cross founded?\treporters\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (reporters, found, the Red Cross tweets) -> reporters (3568ms)\nWhen was the Red Cross founded?\tRelated Sites American Red Cross\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Related Sites American Red Cross, Find out about, the Red Cross) -> Related Sites American Red Cross (3674ms)\nWhen was the Red Cross founded?\tbroadcasting stations\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (broadcasting stations, had been found under, Red Cross control) -> broadcasting stations (3523ms)\nWhen was the Red Cross founded?\tDunant\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Dunant, found, the American Red Cross) -> Dunant (2819ms)\nWhen was the Red Cross founded?\tthe had\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (the had, found, the Red-Cross or) -> the had (3523ms)\nWhen was the Red Cross founded?\tHelp someone\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Help someone, find, a Red Cross representative) -> Help someone (2819ms)\nWhen was the Red Cross founded?\tfood\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (food, are relieved to find, the Red Cross volunteers) -> food (3568ms)\nWhen was the Red Cross founded?\tMaycie\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Maycie, found employment at, the Red Cross) -> Maycie (2961ms)\nWhen was the Red Cross founded?\ta national guardsman\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (a national guardsman, found our way to, the Red Cross shelter) -> a national guardsman (3674ms)\nWhen was the Red Cross founded?\tFurther advice\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Further advice, may be found on, the Red Cross website) -> Further advice (2961ms)\nWhen was the Red Cross founded?\tFive potential donors\t1.1111111111079999\tWhen was the Red Cross founded? -> $x: ($x, found, red cross) -> (Five potential donors, were found in, the Red Cross) -> Five potential donors (3568ms)\nWhen was the Red Cross founded?\tPotter\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (Potter, created, the American Red Cross Youth Corps) -> Potter (3907ms)\nWhen was the Red Cross founded?\tHe?s\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (He?s, created, the Red Cross Online Disaster Portal) -> He?s (3917ms)\nWhen was the Red Cross founded?\tW????rtenberg\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (W????rtenberg, created, the International Red Cross Movement) -> W????rtenberg (3912ms)\nWhen was the Red Cross founded?\t1864\t0.999999999995\tWhen was the Red Cross founded? -> $x: (red cross, start in, $x) -> (The Red Cross, was started in, 1864) -> 1864 (3912ms)\nWhen was the Red Cross founded?\tCongress\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (Congress, created, the Red Cross) -> Congress (3917ms)\nWhen was the Red Cross founded?\tFlat\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (Flat, created for, the American Red Cross) -> Flat (3912ms)\nWhen was the Red Cross founded?\tthe Civil War nurse\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (the Civil War nurse, created, the American Red Cross) -> the Civil War nurse (3778ms)\nWhen was the Red Cross founded?\tNew China News .VIETNAMISTAN ??Bush\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (New China News .VIETNAMISTAN ??Bush, creates, Red Cross fund) -> New China News .VIETNAMISTAN ??Bush (3701ms)\nWhen was the Red Cross founded?\tDarfur\t0.999999999995\tWhen was the Red Cross founded? -> $x: (red cross, found in, $x) -> (The Red Cross, found his family in, Darfur) -> Darfur (3917ms)\nWhen was the Red Cross founded?\teggs\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (eggs, were created to honor, the Red Cross) -> eggs (3902ms)\nWhen was the Red Cross founded?\t1863\t0.999999999995\tWhen was the Red Cross founded? -> $x: (red cross, start in, $x) -> (the Red Cross, was started in, 1863) -> 1863 (3907ms)\nWhen was the Red Cross founded?\ta volunteer\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (a volunteer, create an album of, your summer Red Cross trip) -> a volunteer (3912ms)\nWhen was the Red Cross founded?\tThe EHL course\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (The EHL course, was created by, the Red Cross program) -> The EHL course (3902ms)\nWhen was the Red Cross founded?\tthe government\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (the government, creates, its own Filipino Red Cross society) -> the government (3917ms)\nWhen was the Red Cross founded?\tPakistan\t0.999999999995\tWhen was the Red Cross founded? -> $x: (red cross, found in, $x) -> (the kidnapped British Red Cross worker, found dead in, Pakistan) -> Pakistan (3907ms)\nWhen was the Red Cross founded?\tPringle\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, invent, red cross) -> (Pringle, also co-invented, the Red Cross concept) -> Pringle (3902ms)\nWhen was the Red Cross founded?\ttemporary housing\t0.999999999995\tWhen was the Red Cross founded? -> $x: (red cross, found in, $x) -> (The American Red Cross, assisted in finding, temporary housing) -> temporary housing (3912ms)\nWhen was the Red Cross founded?\tThe ADGP\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (The ADGP, was created by, the American Red Cross) -> The ADGP (3777ms)\nWhen was the Red Cross founded?\tthe country\t0.999999999995\tWhen was the Red Cross founded? -> $x: ($x, create, red cross) -> (the country, create significant difficulties for, Red Cross) -> the country (3701ms)\nWhen was the Red Cross founded?\tthe early 1900s\t0.999999999995\tWhen was the Red Cross founded? -> $x: (red cross, start in, $x) -> (the American National Red Cross, started in, the early 1900s) -> the early 1900s (3902ms)\nWhen was the Red Cross founded?\twork\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, work) -> work (3961ms)\nWhen was the Red Cross founded?\tthe actual role playing\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the American Red Cross, did, the actual role playing) -> the actual role playing (3952ms)\nWhen was the Red Cross founded?\tmarks\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the American Red Cross name, are federally protected, marks) -> marks (3964ms)\nWhen was the Red Cross founded?\ta fantastic job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, a fantastic job) -> a fantastic job (3959ms)\nWhen was the Red Cross founded?\tdisasters\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does respond to, disasters) -> disasters (3966ms)\nWhen was the Red Cross founded?\tMissouri\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened shelters in, Missouri) -> Missouri (3949ms)\nWhen was the Red Cross founded?\tWyatt\t0.888888888884\tWhen was the Red Cross founded? -> $x: ($x, discover, red cross) -> (Wyatt, claimed to have discovered, the Red Sea crossing) -> Wyatt (3959ms)\nWhen was the Red Cross founded?\texcellent work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, excellent work) -> excellent work (3927ms)\nWhen was the Red Cross founded?\tMuslims\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (glad the red cross, really do, Muslims) -> Muslims (3961ms)\nWhen was the Red Cross founded?\tNorth Korea\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, was established in, North Korea) -> North Korea (3941ms)\nWhen was the Red Cross founded?\tRed Cross volunteers\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross Emblem, did, Red Cross volunteers) -> Red Cross volunteers (3922ms)\nWhen was the Red Cross founded?\tHidalgo\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, has opened shelters in, Hidalgo) -> Hidalgo (3936ms)\nWhen was the Red Cross founded?\ta damn good job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, a damn good job) -> a damn good job (3927ms)\nWhen was the Red Cross founded?\tthe Heinleins\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, so did, the Heinleins) -> the Heinleins (3964ms)\nWhen was the Red Cross founded?\toffer assistance\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, did, offer assistance) -> offer assistance (3961ms)\nWhen was the Red Cross founded?\tlight\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the American Red Cross, will be made in, light) -> light (3959ms)\nWhen was the Red Cross founded?\tCutchogue-New Suffolk\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross as, did, Cutchogue-New Suffolk) -> Cutchogue-New Suffolk (3966ms)\nWhen was the Red Cross founded?\tthe Iowa School\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, will open a shelter in, the Iowa School) -> the Iowa School (3964ms)\nWhen was the Red Cross founded?\ta wonderful job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, do, a wonderful job) -> a wonderful job (3927ms)\nWhen was the Red Cross founded?\tmobile food distribution\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, was doing, mobile food distribution) -> mobile food distribution (3936ms)\nWhen was the Red Cross founded?\ta lot of work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, is doing, a lot of work) -> a lot of work (3941ms)\nWhen was the Red Cross founded?\tnearby villages\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Three Red Cross care centers, were opened in, nearby villages) -> nearby villages (3961ms)\nWhen was the Red Cross founded?\tthe purchase\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the Japan Red Cross, has been made in, the purchase) -> the purchase (3945ms)\nWhen was the Red Cross founded?\tCenter Point\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (3 Alabama Red Cross shelters, remain open in, Center Point) -> Center Point (3927ms)\nWhen was the Red Cross founded?\tMilverton\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (-Tue Apr 29 , Red Cross, is opening a shelter in, Milverton) -> Milverton (3917ms)\nWhen was the Red Cross founded?\tthe same\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, the same) -> the same (3931ms)\nWhen was the Red Cross founded?\ta local level\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does on, a local level) -> a local level (3949ms)\nWhen was the Red Cross founded?\tthe ground\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be make on, $x) -> (the difference Red Cross, is making on, the ground) -> the ground (3964ms)\nWhen was the Red Cross founded?\tmuch more than respond to disasters\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does, much more than respond to disasters) -> much more than respond to disasters (3927ms)\nWhen was the Red Cross founded?\tan excellent job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, an excellent job) -> an excellent job (3959ms)\nWhen was the Red Cross founded?\ta lot of good work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a lot of good work) -> a lot of good work (3941ms)\nWhen was the Red Cross founded?\tthe Hempfield Twp\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, quickly opened a shelter in, the Hempfield Twp) -> the Hempfield Twp (3964ms)\nWhen was the Red Cross founded?\tmedical workers\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the Red Cross, is supposed to protect, medical workers) -> medical workers (3959ms)\nWhen was the Red Cross founded?\tHood River and Newport\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, had opened shelters in, Hood River and Newport) -> Hood River and Newport (3959ms)\nWhen was the Red Cross founded?\t1917\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The American Red Cross, was established in, 1917) -> 1917 (3952ms)\nWhen was the Red Cross founded?\ttraining course\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do first aid, training course) -> training course (3956ms)\nWhen was the Red Cross founded?\ta lot\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, has done, a lot) -> a lot (3961ms)\nWhen was the Red Cross founded?\t2004\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the Red Cross, was established in, 2004) -> 2004 (3956ms)\nWhen was the Red Cross founded?\ta good job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, is doing, a good job) -> a good job (3964ms)\nWhen was the Red Cross founded?\timportant work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, is doing, important work) -> important work (3952ms)\nWhen was the Red Cross founded?\tCharleston County\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, will open shelters in, Charleston County) -> Charleston County (3927ms)\nWhen was the Red Cross founded?\tthe state\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened shelters in, the state) -> the state (3936ms)\nWhen was the Red Cross founded?\ta tremendous job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a tremendous job) -> a tremendous job (3961ms)\nWhen was the Red Cross founded?\tgreat work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does, great work) -> great work (3945ms)\nWhen was the Red Cross founded?\ta rather special story\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (a Red Cross cat, does with, a rather special story) -> a rather special story (3941ms)\nWhen was the Red Cross founded?\tWichita Falls\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened shelters in, Wichita Falls) -> Wichita Falls (3964ms)\nWhen was the Red Cross founded?\tIcard\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Icard) -> Icard (3922ms)\nWhen was the Red Cross founded?\tclass scheduling\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, found on, $x) -> (a local Red Cross, find information on, class scheduling) -> class scheduling (3952ms)\nWhen was the Red Cross founded?\tan online course\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, do, an online course) -> an online course (3959ms)\nWhen was the Red Cross founded?\tcase work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, will continue to do, case work) -> case work (3936ms)\nWhen was the Red Cross founded?\tOklahoma\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened shelters in, Oklahoma) -> Oklahoma (3941ms)\nWhen was the Red Cross founded?\t1954\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Fiji Red Cross, was established in, 1954) -> 1954 (3959ms)\nWhen was the Red Cross founded?\tMay 21 , 1881\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish on, $x) -> (The American Red Cross, was established on, May 21 , 1881) -> May 21 , 1881 (3956ms)\nWhen was the Red Cross founded?\tNorth Carolina\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, to open in, North Carolina) -> North Carolina (3949ms)\nWhen was the Red Cross founded?\tNew York\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The first Red Cross blood center, was established in, New York) -> New York (3927ms)\nWhen was the Red Cross founded?\tthe Privacy\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (Australian Red Cross, is protected by, the Privacy) -> the Privacy (3945ms)\nWhen was the Red Cross founded?\tfinpecia work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (View Red Cross photos, does, finpecia work) -> finpecia work (3917ms)\nWhen was the Red Cross founded?\tMarietta\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened a shelter in, Marietta) -> Marietta (3936ms)\nWhen was the Red Cross founded?\tthe Town\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened an office in, the Town) -> the Town (3922ms)\nWhen was the Red Cross founded?\teveryday\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do, everyday) -> everyday (3945ms)\nWhen was the Red Cross founded?\tthe leg work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, the leg work) -> the leg work (3956ms)\nWhen was the Red Cross founded?\t1967\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The District Red Cross Society, was established in, 1967) -> 1967 (3956ms)\nWhen was the Red Cross founded?\tNewburgh\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, has opened a shelter in, Newburgh) -> Newburgh (3952ms)\nWhen was the Red Cross founded?\tcommunities\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened shelters in, communities) -> communities (3922ms)\nWhen was the Red Cross founded?\tthe Great Chicago Blizzard\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Chicago Red Cross, did during, the Great Chicago Blizzard) -> the Great Chicago Blizzard (3931ms)\nWhen was the Red Cross founded?\tOak Grove\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Stranded Motorists Red Cross, opens shelter in, Oak Grove) -> Oak Grove (3945ms)\nWhen was the Red Cross founded?\tinternational law\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the Red Cross emblem, is protected by, international law) -> international law (3922ms)\nWhen was the Red Cross founded?\ta great job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a great job) -> a great job (3952ms)\nWhen was the Red Cross founded?\tUtah\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the American Red Cross, were made in, Utah) -> Utah (3961ms)\nWhen was the Red Cross founded?\tAnjar\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the red cross, opened some schools in, Anjar) -> Anjar (3949ms)\nWhen was the Red Cross founded?\tseveral\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be discover in, $x) -> (Red Cross parcels, was discovered in, several) -> several (3922ms)\nWhen was the Red Cross founded?\ta regional disaster training\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, had done, a regional disaster training) -> a regional disaster training (3931ms)\nWhen was the Red Cross founded?\t29 May 1904\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish on, $x) -> (the Red Cross, is established on, 29 May 1904) -> 29 May 1904 (3927ms)\nWhen was the Red Cross founded?\tsewing\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross POW, did, sewing) -> sewing (3941ms)\nWhen was the Red Cross founded?\tthe region\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (another 12 non-Red Cross shelters, opened in, the region) -> the region (3949ms)\nWhen was the Red Cross founded?\tMassachusetts\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are also open in, Massachusetts) -> Massachusetts (3961ms)\nWhen was the Red Cross founded?\tvictims\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do for, victims) -> victims (3961ms)\nWhen was the Red Cross founded?\tRockport\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross, opens shelter in, Rockport) -> Rockport (3952ms)\nWhen was the Red Cross founded?\tChina\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (Red Cross, is well established in, China) -> China (3941ms)\nWhen was the Red Cross founded?\tArizona\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are open in, Arizona) -> Arizona (3949ms)\nWhen was the Red Cross founded?\tMinneapolis\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, also opened a shelter in, Minneapolis) -> Minneapolis (3959ms)\nWhen was the Red Cross founded?\tthe most good\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, to do, the most good) -> the most good (3961ms)\nWhen was the Red Cross founded?\tcentral Missouri\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Eight Red Cross shelters, remain open in, central Missouri) -> central Missouri (3966ms)\nWhen was the Red Cross founded?\ta fine job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a fine job) -> a fine job (3936ms)\nWhen was the Red Cross founded?\tAustralia\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the Red Cross, was an established practice in, Australia) -> Australia (3949ms)\nWhen was the Red Cross founded?\trelief use\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do, relief use) -> relief use (3956ms)\nWhen was the Red Cross founded?\tCongressmen\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, so do, Congressmen) -> Congressmen (3952ms)\nWhen was the Red Cross founded?\tthe website\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be make on, $x) -> (the American Red Cross events, can be made on, the website) -> the website (3927ms)\nWhen was the Red Cross founded?\tmatter\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, actually do, matter) -> matter (3931ms)\nWhen was the Red Cross founded?\tthe community\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (an additional Red Cross shelter, was opened in, the community) -> the community (3964ms)\nWhen was the Red Cross founded?\tCharlestown\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Charlestown) -> Charlestown (3941ms)\nWhen was the Red Cross founded?\tDelaware\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has additional shelters open in, Delaware) -> Delaware (3964ms)\nWhen was the Red Cross founded?\tnearby Dansville\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the first Red Cross chapter, opens in, nearby Dansville) -> nearby Dansville (3941ms)\nWhen was the Red Cross founded?\tthe joints\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the red cross, Do, the joints) -> the joints (3956ms)\nWhen was the Red Cross founded?\tIllinois\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, were open overnight in, Illinois) -> Illinois (3964ms)\nWhen was the Red Cross founded?\tChester County\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, was opening a shelter in, Chester County) -> Chester County (3931ms)\nWhen was the Red Cross founded?\t1881\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, was established in, 1881) -> 1881 (3945ms)\nWhen was the Red Cross founded?\tWashington\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The American Red Cross, was established in, Washington) -> Washington (3956ms)\nWhen was the Red Cross founded?\tLowe?s stores\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the Red Cross, can be made in, Lowe?s stores) -> Lowe?s stores (3964ms)\nWhen was the Red Cross founded?\tSierra Leone\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened a new 60-bed hospital in, Sierra Leone) -> Sierra Leone (3964ms)\nWhen was the Red Cross founded?\tThe Geneva Convention\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (The Red Cross, are protected by, The Geneva Convention) -> The Geneva Convention (3931ms)\nWhen was the Red Cross founded?\tgood work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, good work) -> good work (3936ms)\nWhen was the Red Cross founded?\tAmerican servicemen\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does for, American servicemen) -> American servicemen (3922ms)\nWhen was the Red Cross founded?\ta thorough vetting\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, a thorough vetting) -> a thorough vetting (3945ms)\nWhen was the Red Cross founded?\tColumbus\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Columbus) -> Columbus (3922ms)\nWhen was the Red Cross founded?\tso\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, to do, so) -> so (3949ms)\nWhen was the Red Cross founded?\tAlabama\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are open in, Alabama) -> Alabama (3961ms)\nWhen was the Red Cross founded?\ta blood drive\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, a blood drive) -> a blood drive (3936ms)\nWhen was the Red Cross founded?\tCanton\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, opened a shelter in, Canton) -> Canton (3952ms)\nWhen was the Red Cross founded?\tDora and Parrish\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened shelters in, Dora and Parrish) -> Dora and Parrish (3931ms)\nWhen was the Red Cross founded?\t1953\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened in, 1953) -> 1953 (3949ms)\nWhen was the Red Cross founded?\tReno\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Two more Red Cross shelters, were also recently opened in, Reno) -> Reno (3945ms)\nWhen was the Red Cross founded?\tDouble Duty\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross Volunteer, Does, Double Duty) -> Double Duty (3945ms)\nWhen was the Red Cross founded?\tthe other abductees\t0.888888888884\tWhen was the Red Cross founded? -> $x: ($x, discover, red cross) -> (the other abductees, are discovered by, the Red Cross) -> the other abductees (3941ms)\nWhen was the Red Cross founded?\ta decade\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Canadian Red Cross, did, a decade) -> a decade (3959ms)\nWhen was the Red Cross founded?\t1932\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Malawi Red Cross, was formally established in, 1932) -> 1932 (3956ms)\nWhen was the Red Cross founded?\tNebraska and Iowa due\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Four Red Cross shelters, are open in, Nebraska and Iowa due) -> Nebraska and Iowa due (3952ms)\nWhen was the Red Cross founded?\tMay 1881\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish on, $x) -> (the American Red Cross, was established on, May 1881) -> May 1881 (3958ms)\nWhen was the Red Cross founded?\tVirginia\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (No Red Cross shelters, are open in, Virginia) -> Virginia (3952ms)\nWhen was the Red Cross founded?\t9/11\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the American Red Cross, did on, 9/11) -> 9/11 (3961ms)\nWhen was the Red Cross founded?\t1952as\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Fiji Red Cross Society, was established in, 1952as) -> 1952as (3956ms)\nWhen was the Red Cross founded?\ta good deed\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do, a good deed) -> a good deed (3948ms)\nWhen was the Red Cross founded?\tthe billions\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do exactly with, the billions) -> the billions (3941ms)\nWhen was the Red Cross founded?\tvarious areas\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (American Red Cross shelters, remain open in, various areas) -> various areas (3931ms)\nWhen was the Red Cross founded?\tHaiti\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, is already well-established in, Haiti) -> Haiti (3956ms)\nWhen was the Red Cross founded?\tforward\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does put, forward) -> forward (3952ms)\nWhen was the Red Cross founded?\tseveral places\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has shelters open in, several places) -> several places (3961ms)\nWhen was the Red Cross founded?\tdifferent Allied countries\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (Red Cross parcels, were made up in, different Allied countries) -> different Allied countries (3961ms)\nWhen was the Red Cross founded?\tthe damaged areas\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross workers, opened shelters in, the damaged areas) -> the damaged areas (3927ms)\nWhen was the Red Cross founded?\tthe old Aoy School\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, opened a hospital in, the old Aoy School) -> the old Aoy School (3964ms)\nWhen was the Red Cross founded?\tyen\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the Japanese Red Cross Society, must be made in, yen) -> yen (3959ms)\nWhen was the Red Cross founded?\t1950\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Hong Kong Red Cross, was established in, 1950) -> 1950 (3956ms)\nWhen was the Red Cross founded?\tamazing work\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, amazing work) -> amazing work (3945ms)\nWhen was the Red Cross founded?\tthe affected areas\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened shelters in, the affected areas) -> the affected areas (3941ms)\nWhen was the Red Cross founded?\tsuch a request\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did put forward, such a request) -> such a request (3949ms)\nWhen was the Red Cross founded?\tVietnamese foundations\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Vietnamese Red Cross, as do, Vietnamese foundations) -> Vietnamese foundations (3952ms)\nWhen was the Red Cross founded?\t1870\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the British Red Cross, was established in, 1870) -> 1870 (3922ms)\nWhen was the Red Cross founded?\turban areas\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (American Red Cross shelters, were only opened in, urban areas) -> urban areas (3927ms)\nWhen was the Red Cross founded?\tDevine\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (One American Red Cross shelter, was open overnight in, Devine) -> Devine (3945ms)\nWhen was the Red Cross founded?\tMonday\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open on, $x) -> (The Lebanese Red Cross, opened on, Monday) -> Monday (3945ms)\nWhen was the Red Cross founded?\tthe Canine Blood Bank\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, too does, the Canine Blood Bank) -> the Canine Blood Bank (3959ms)\nWhen was the Red Cross founded?\tprotection\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross symbol, did provide, protection) -> protection (3931ms)\nWhen was the Red Cross founded?\tan amazing job\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, an amazing job) -> an amazing job (3936ms)\nWhen was the Red Cross founded?\tNorman\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, also opened a shelter in, Norman) -> Norman (3961ms)\nWhen was the Red Cross founded?\t1948\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the first Red Cross shop, opened in, 1948) -> 1948 (3927ms)\nWhen was the Red Cross founded?\tsymbols\t0.888888888884\tWhen was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (Red Cross and Red Crescent emblems, are protected, symbols) -> symbols (3941ms)\nWhen was the Red Cross founded?\t1914\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (The Australian Red Cross, was formed in, 1914) -> 1914 (3966ms)\nWhen was the Red Cross founded?\tEurope\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross Movement, was being formed in, Europe) -> Europe (3966ms)\nWhen was the Red Cross founded?\tMay 1905\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross, was first formed in, May 1905) -> May 1905 (3968ms)\nWhen was the Red Cross founded?\tSwitzerland\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (The Red Cross, was formed in, Switzerland) -> Switzerland (3968ms)\nWhen was the Red Cross founded?\tresponse\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross, was formed in, response) -> response (3966ms)\nWhen was the Red Cross founded?\tSeptember\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be create in, $x) -> (the American Red Cross, was created in, September) -> September (3966ms)\nWhen was the Red Cross founded?\t1876\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be create in, $x) -> (The Yugoslav Red Cross Society, was created in, 1876) -> 1876 (3966ms)\nWhen was the Red Cross founded?\t1923\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Belgian Red Cross, is later formed in, 1923) -> 1923 (3966ms)\nWhen was the Red Cross founded?\t1779\t0.777777777773\tWhen was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (Red Cross Sullivan County, was formed in, 1779) -> 1779 (3966ms)\nWhen was the Red Cross founded?\tantisemitism\t0.44444444443799996\tWhen was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The Red Cross, has a history of, antisemitism) -> antisemitism (3968ms)\nWhen was the Red Cross founded?\ttraining nurses\t0.44444444443799996\tWhen was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The Red Cross, has a long history of, training nurses) -> training nurses (3970ms)\nWhen was the Red Cross founded?\tfraud\t0.44444444443799996\tWhen was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The Red Cross, has a well documented history of, fraud) -> fraud (3968ms)\nWhen was the Red Cross founded?\tpartnering\t0.44444444443799996\tWhen was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The American Red Cross, has a long history of, partnering) -> partnering (3968ms)\nWhen was the Red Cross founded?\tthe herd\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the herd, is being crossed to, Swedish Red and Montbeliard sires) -> the herd (3970ms)\nWhen was the Red Cross founded?\tEcclestone\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Ecclestone, is also crossing his fingers for, Red Bull) -> Ecclestone (3973ms)\nWhen was the Red Cross founded?\tThe sound\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The sound, is a cross between, Otis Redding) -> The sound (3975ms)\nWhen was the Red Cross founded?\teach wing\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (each wing, is crossed by, a bright red band) -> each wing (3970ms)\nWhen was the Red Cross founded?\ta coherent picture\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (a coherent picture, is the crossing of, the Red Sea) -> a coherent picture (3973ms)\nWhen was the Red Cross founded?\tplant\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (plant, is a cross between, a red raspberry) -> plant (3970ms)\nWhen was the Red Cross founded?\tscary phrases\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (scary phrases, were crossed out in, red pen) -> scary phrases (3972ms)\nWhen was the Red Cross founded?\tRed sex-links\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Red sex-links, are a cross between, a Rhode Island Red) -> Red sex-links (3977ms)\nWhen was the Red Cross founded?\ta driver\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (a driver, be allowed to cross, red traffic lights) -> a driver (3972ms)\nWhen was the Red Cross founded?\tIsrael\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Israel, were crossing, the Red Sea) -> Israel (3977ms)\nWhen was the Red Cross founded?\tMario Lanza\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Mario Lanza, is a cross of, a huge dark red) -> Mario Lanza (3970ms)\nWhen was the Red Cross founded?\tthe words\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the words, are crossed out in, red) -> the words (3975ms)\nWhen was the Red Cross founded?\tA white-eyed female fruit fly\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (A white-eyed female fruit fly, is crossed with, a red-eyed male) -> A white-eyed female fruit fly (3977ms)\nWhen was the Red Cross founded?\tL33VG4\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (L33VG4, is crossed by, red mark) -> L33VG4 (3977ms)\nWhen was the Red Cross founded?\tthe praying women\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the praying women, are cross-hatched patterns in, red) -> the praying women (3972ms)\nWhen was the Red Cross founded?\tthe Canadian Pacific\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Canadian Pacific, was to cross, the Red River) -> the Canadian Pacific (3977ms)\nWhen was the Red Cross founded?\tThe orders\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The orders, have been crossed through in, red) -> The orders (3974ms)\nWhen was the Red Cross founded?\tFingers\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fingers, are crossed, that Red Lights) -> Fingers (3977ms)\nWhen was the Red Cross founded?\tthe second half\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the second half, were unable to cross, the secure Reds line) -> the second half (3973ms)\nWhen was the Red Cross founded?\tThe 7th\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The 7th, is the crossing of, the Red Sea) -> The 7th (3972ms)\nWhen was the Red Cross founded?\tThe rose color\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The rose color, is a cross between, red and pink) -> The rose color (3974ms)\nWhen was the Red Cross founded?\tthe Jews\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Jews, were crossing, the Red Sea) -> the Jews (3973ms)\nWhen was the Red Cross founded?\tFuji apples\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fuji apples, are a cross between, Red Delicious) -> Fuji apples (3975ms)\nWhen was the Red Cross founded?\tFoxander\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Foxander, is a cross between, a British Red Fox) -> Foxander (3977ms)\nWhen was the Red Cross founded?\tWorldCom and Williams\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (WorldCom and Williams, are now crossing, the Red River) -> WorldCom and Williams (3975ms)\nWhen was the Red Cross founded?\tthe Bible\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Bible, are the crossing of, the Red Sea) -> the Bible (3977ms)\nWhen was the Red Cross founded?\tthe Sooners\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Sooners, have been crossing, the Red River) -> the Sooners (3972ms)\nWhen was the Red Cross founded?\tThe marionberry\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The marionberry, is a cross between, a red raspberry) -> The marionberry (3977ms)\nWhen was the Red Cross founded?\tthe marriage\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the marriage, are crossing, each other?s red lights) -> the marriage (3970ms)\nWhen was the Red Cross founded?\tPB 111\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (PB 111, is a cross between, the Cameroon Red Dwarf) -> PB 111 (3972ms)\nWhen was the Red Cross founded?\tFordo\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fordo, is the crossing of, a red line) -> Fordo (3970ms)\nWhen was the Red Cross founded?\tFuji Fuji apples\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fuji Fuji apples, are a cross between, the Red Delicious apple) -> Fuji Fuji apples (3972ms)\nWhen was the Red Cross founded?\tthe flight\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the flight, was crossing, the red rock cliffs west) -> the flight (3975ms)\nWhen was the Red Cross founded?\tThe Johnson cattle\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The Johnson cattle, are a cross of, Red Angus and Simmental) -> The Johnson cattle (3972ms)\nWhen was the Red Cross founded?\tThe river\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The river, is crossed by, a picturesque arched red bridge) -> The river (3977ms)\nWhen was the Red Cross founded?\tBlacks\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Blacks, are a cross between, a Rhode Island Red) -> Blacks (3970ms)\nWhen was the Red Cross founded?\tSyria\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Syria, is crossing, previous red lines) -> Syria (3973ms)\nWhen was the Red Cross founded?\tthe index\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the index, are all crossed in, red crayon) -> the index (3975ms)\nWhen was the Red Cross founded?\tthe most successful\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the most successful, is the cross between, red and white) -> the most successful (3973ms)\nWhen was the Red Cross founded?\t23ft , 2gal This variety\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (23ft , 2gal This variety, is a cross between, Red Maple) -> 23ft , 2gal This variety (3972ms)\nWhen was the Red Cross founded?\tthe Hebrews and their God\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Hebrews and their God, is the crossing of, the Red Sea) -> the Hebrews and their God (3970ms)\nWhen was the Red Cross founded?\tthe sync icon\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the sync icon, will be crossed by, red line) -> the sync icon (3973ms)\nWhen was the Red Cross founded?\tthe original elongated track\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the original elongated track, is crossed by, this red coloration) -> the original elongated track (3970ms)\nWhen was the Red Cross founded?\tThe second event\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The second event, is the crossing of, the Red Sea) -> The second event (3972ms)\nWhen was the Red Cross founded?\tthe loganberry\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the loganberry, is a cross between, a red raspberry) -> the loganberry (3973ms)\nWhen was the Red Cross founded?\tthe mountains\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the mountains, was crossed by, a red pencil) -> the mountains (3975ms)\nWhen was the Red Cross founded?\tthe army\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the army, is crossing, the Red Sea) -> the army (3977ms)\nWhen was the Red Cross founded?\tMarquis\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Marquis, is a cross between, Red Fife and Hard Red Calcutta) -> Marquis (3975ms)\nWhen was the Red Cross founded?\tthe highpoint\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the highpoint, is the crossing of, the Red Sea) -> the highpoint (3973ms)\nWhen was the Red Cross founded?\tSunvalley\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Sunvalley, is a cross between, Red Sunset) -> Sunvalley (3977ms)\nWhen was the Red Cross founded?\tFuji\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fuji, is a cross between, a Red Delicious) -> Fuji (3972ms)\nWhen was the Red Cross founded?\tthe address\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the address, was crossed out with, a red crayon) -> the address (3974ms)\nWhen was the Red Cross founded?\ta French breed\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (a French breed, is a cross between, Rhode Island Red) -> a French breed (3970ms)\nWhen was the Red Cross founded?\tThe Fuji apple\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (The Fuji apple, is a cross between, a Red Delicious) -> The Fuji apple (3972ms)\nWhen was the Red Cross founded?\ttruth and error\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (truth and error, is the crossing of, the Red Sea) -> truth and error (3973ms)\nWhen was the Red Cross founded?\tinternational terrorism\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (international terrorism, was crossing, red lines) -> international terrorism (3970ms)\nWhen was the Red Cross founded?\tthe word ?commissioner ?\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the word ?commissioner ?, was crossed out with, a big red ?x ?) -> the word ?commissioner ? (3976ms)\nWhen was the Red Cross founded?\tCA\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (CA, was crossed out with, a red X) -> CA (3973ms)\nWhen was the Red Cross founded?\tArlet\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Arlet, is a cross of, Golden Delicious and Ida Red) -> Arlet (3972ms)\nWhen was the Red Cross founded?\tBnai Yisrael\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Bnai Yisrael, were crossing, the Red Sea) -> Bnai Yisrael (3970ms)\nWhen was the Red Cross founded?\tthe pedestrian\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the pedestrian, was crossing against, a red light) -> the pedestrian (3975ms)\nWhen was the Red Cross founded?\tYorkshire terriers\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Yorkshire terriers, were crossed to produce, a small , red) -> Yorkshire terriers (3973ms)\nWhen was the Red Cross founded?\ta Muppet , I?d\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (a Muppet , I?d, probably be a cross between, Red Fraggle) -> a Muppet , I?d (3970ms)\nWhen was the Red Cross founded?\trectangle\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (rectangle, is tan cross with, red) -> rectangle (3973ms)\nWhen was the Red Cross founded?\tDine For',\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (Dine For',, is a cross between, red and pink) -> Dine For', (3975ms)\nWhen was the Red Cross founded?\tfingers\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (fingers, crossed I?ll be, bright red) -> fingers (3970ms)\nWhen was the Red Cross founded?\tthe Fuji\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Fuji, is a cross between, a Red Delicious) -> the Fuji (3970ms)\nWhen was the Red Cross founded?\trefusal\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (refusal, is crossing, red lines) -> refusal (3972ms)\nWhen was the Red Cross founded?\tthe Israelites\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Israelites, were crossing, the Red Sea) -> the Israelites (3977ms)\nWhen was the Red Cross founded?\t?Grove Farm ?\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (?Grove Farm ?, was crossed with, ?Kohala Red?) -> ?Grove Farm ? (3975ms)\nWhen was the Red Cross founded?\tthe Swiss flag\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Swiss flag, is a white cross on, red) -> the Swiss flag (3977ms)\nWhen was the Red Cross founded?\tthe Jordan River\t0.33333333332900006\tWhen was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Jordan River, is like crossing, the Red Sea) -> the Jordan River (3972ms)\nWhen was the Red Cross founded?\tany RBC branch\t-0.0\tWhen was the Red Cross founded? -> $x: (canadian red cross, do, $x) -> (the Canadian Red Cross, can do so by visiting, any RBC branch) -> any RBC branch (3977ms)\nWho is the president of Stanford University?\tThe author\t1.5555555555500002\tWho is the president of Stanford University? -> $x: ($x, be first president of, stanford university) -> (The author, was the first president of, Stanford University) -> The author (1114ms)\nWho is the president of Stanford University?\tJordan\t1.5555555555500002\tWho is the president of Stanford University? -> $x: ($x, be first president of, stanford university) -> (Jordan, was the first President of, Stanford University) -> Jordan (1114ms)\nWho is the president of Stanford University?\tIra\t1.444444444441\tWho is the president of Stanford University? -> $x: ($x, leader, stanford university) -> (Ira, is also an active leader at, Stanford University) -> Ira (1114ms)\nWho is the president of Stanford University?\tThe Watson Papers\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (The Watson Papers, may be found at, Stanford University) -> The Watson Papers (1114ms)\nWho is the president of Stanford University?\tGoogle\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Google, found at, Stanford University) -> Google (1179ms)\nWho is the president of Stanford University?\t18:48\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (18:48, Find, a Faculty Member ? Stanford University) -> 18:48 (1114ms)\nWho is the president of Stanford University?\tLinn\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Linn, found a study by, Stanford University) -> Linn (1227ms)\nWho is the president of Stanford University?\tNgai?s work\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Ngai?s work, can be found on, her Stanford University web page) -> Ngai?s work (1179ms)\nWho is the president of Stanford University?\tdifferent teacher resources\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (different teacher resources, found at, Stanford University) -> different teacher resources (1114ms)\nWho is the president of Stanford University?\tRomney\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Romney, found, stanford university) -> Romney (1179ms)\nWho is the president of Stanford University?\tHakeem\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, first start, stanford university) -> (Hakeem, first started graduate school at, Stanford University) -> Hakeem (1227ms)\nWho is the president of Stanford University?\thelp\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (help, found, Stanford University) -> help (1179ms)\nWho is the president of Stanford University?\tthe Leland surname\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (the Leland surname, would found, Stanford University) -> the Leland surname (1114ms)\nWho is the president of Stanford University?\tURL\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (URL, Find, a Faculty Member ? Stanford University) -> URL (1179ms)\nWho is the president of Stanford University?\tinformation\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (information, can be found at, Stanford University) -> information (1227ms)\nWho is the president of Stanford University?\tresults\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (results, find information about, the stanford university website) -> results (1179ms)\nWho is the president of Stanford University?\tthe Matiases\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (the Matiases, found a short-stay home near, Stanford University) -> the Matiases (1179ms)\nWho is the president of Stanford University?\t18:47\t1.444444444439\tWho is the president of Stanford University? -> $x: ($x, found, stanford university) -> (18:47, Find, a Faculty Member ? Stanford University) -> 18:47 (1114ms)\nWho is the president of Stanford University?\tGerhard Casper\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Gerhard Casper, is president emeritus of, Stanford University) -> Gerhard Casper (1227ms)\nWho is the president of Stanford University?\tCasper\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Casper, was the president of, Stanford University) -> Casper (1245ms)\nWho is the president of Stanford University?\tHennessy\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Hennessy, is President of, Stanford University) -> Hennessy (1245ms)\nWho is the president of Stanford University?\tDonald Kennedy\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Donald Kennedy, is the former president of, Stanford University) -> Donald Kennedy (1301ms)\nWho is the president of Stanford University?\tGreg\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Greg, is President of, Stanford University DAPER Investment Fund) -> Greg (1245ms)\nWho is the president of Stanford University?\tJohn Hennessy\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (John Hennessy, is now President of, Stanford University) -> John Hennessy (1301ms)\nWho is the president of Stanford University?\tDavid Starr Jordan\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (David Starr Jordan, was then President of, Stanford University) -> David Starr Jordan (1301ms)\nWho is the president of Stanford University?\tKennedy\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Kennedy, is former President of, Stanford University President) -> Kennedy (1245ms)\nWho is the president of Stanford University?\tRichard W. Lyman\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Richard W. Lyman, was president of, Stanford University) -> Richard W. Lyman (1245ms)\nWho is the president of Stanford University?\tthe founder\t1.4444444444380002\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (the founder, is the 10th President of, Stanford University) -> the founder (1245ms)\nWho is the president of Stanford University?\t1925 Oliphant\t0.5555555555540002\tWho is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (1925 Oliphant, was appointed a lecturer at, Stanford university) -> 1925 Oliphant (1301ms)\nWho is the president of Stanford University?\tBergman\t0.5555555555540002\tWho is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (Bergman, was appointed to, Stanford University) -> Bergman (1301ms)\nWho is the president of Stanford University?\tThe Chair\t0.5555555555540002\tWho is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (The Chair, is formally appointed to, Stanford University) -> The Chair (1301ms)\nWho is the president of Stanford University?\tthe University\t0.5555555555540002\tWho is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (the University, is formally appointed to, Stanford University) -> the University (1301ms)\nWho is the president of Stanford University?\tJoe Edelheit Ross\t-0.7777777777789999\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Joe Edelheit Ross, was president of, the Stanford Law Review) -> Joe Edelheit Ross (1301ms)\nWho is the president of Stanford University?\ta graduate\t-0.7777777777789999\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (a graduate, was a former President of, Stanford Law Review) -> a graduate (1302ms)\nWho is the president of Stanford University?\tOrder\t-0.7777777777789999\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Order, was President of, the Stanford Law Review) -> Order (1301ms)\nWho is the president of Stanford University?\tBanks\t-0.7777777777789999\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Banks, was a vice president of, Stanford Consulting Group Inc.) -> Banks (1302ms)\nWho is the president of Stanford University?\t1999 Mr. Stanford\t-0.7777777777789999\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (1999 Mr. Stanford, is President of, Stanford Resource Management) -> 1999 Mr. Stanford (1303ms)\nWho is the president of Stanford University?\tMr. Wilkins\t-0.7777777777789999\tWho is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Mr. Wilkins, was President of, the Stanford Golf Club) -> Mr. Wilkins (1302ms)\nHow long is human gestation?\t260 days\t2.444444444438\tHow long is human gestation? -> $x: ($x, be length of, gestation) -> (260 days, is also the length of, human gestation) -> 260 days (841ms)\nHow long is human gestation?\tBlack women\t2.444444444438\tHow long is human gestation? -> $x: ($x, be length of, gestation) -> (Black women, were length of, gestation) -> Black women (841ms)\nHow long is human gestation?\ta baby\t2.444444444438\tHow long is human gestation? -> $x: ($x, be length of, gestation) -> (a baby, is its own normal length of, gestation) -> a baby (841ms)\nHow long is human gestation?\tabortion\t2.444444444438\tHow long is human gestation? -> $x: ($x, be length of, gestation) -> (abortion, are the length of, gestation) -> abortion (841ms)\nHow long is human gestation?\texample\t2.444444444438\tHow long is human gestation? -> $x: ($x, be length of, gestation) -> (example, only is the length of, gestation) -> example (841ms)\nHow long is human gestation?\tInversely CYTOTEC\t2.444444444438\tHow long is human gestation? -> $x: ($x, be length of, gestation) -> (Inversely CYTOTEC, is just an average length of, gestation) -> Inversely CYTOTEC (842ms)\nHow long is human gestation?\tThe Tiree Master Plan\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (The Tiree Master Plan, has been a long time in, gestation) -> The Tiree Master Plan (1018ms)\nHow long is human gestation?\tthe whole project\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (the whole project, has been a long time in, gestation) -> the whole project (1018ms)\nHow long is human gestation?\t4.1.1\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (4.1.1, has been a long while in, the gestation) -> 4.1.1 (1018ms)\nHow long is human gestation?\tMD\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (MD, long was, the gestation) -> MD (1018ms)\nHow long is human gestation?\tA problem\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (A problem, has been long in, gestation) -> A problem (1018ms)\nHow long is human gestation?\tA Darker Music\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (A Darker Music, has been a long time in, gestation) -> A Darker Music (1018ms)\nHow long is human gestation?\tthe Su-27IB\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (the Su-27IB, has been long in, the gestation) -> the Su-27IB (1018ms)\nHow long is human gestation?\tOBI\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (OBI, has been a long time in, gestation) -> OBI (1018ms)\nHow long is human gestation?\tThe Dark Mountain Project\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (The Dark Mountain Project, has been a long time in, gestation) -> The Dark Mountain Project (1018ms)\nHow long is human gestation?\ta problem\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (a problem, has been very long in, gestation) -> a problem (1018ms)\nHow long is human gestation?\tThe Carousel\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (The Carousel, long was, the gestation period) -> The Carousel (1018ms)\nHow long is human gestation?\t?The Finkler Question?\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (?The Finkler Question?, was a long time in, gestation) -> ?The Finkler Question? (1018ms)\nHow long is human gestation?\tWenders\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (Wenders, had been long in, the gestation) -> Wenders (841ms)\nHow long is human gestation?\tChants\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (Chants, was a long time in, the gestation) -> Chants (1018ms)\nHow long is human gestation?\t?This huge book\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (?This huge book, has been a long time in, gestation) -> ?This huge book (841ms)\nHow long is human gestation?\tonset\t1.777777777771\tHow long is human gestation? -> $x: ($x, long be, gestation) -> (onset, was relatively long compared to, gestation time) -> onset (1018ms)\nHow many types of human blood are there?\tplasmacytes\t0.8888888888870001\tHow many types of human blood are there? -> $x: ($x, be different type of, blood) -> (plasmacytes, are different types of, white blood cells) -> plasmacytes (2551ms)\nHow many types of human blood are there?\tthe disease\t0.8888888888870001\tHow many types of human blood are there? -> $x: ($x, be different type of, blood) -> (the disease, is done using different types of, blood tests) -> the disease (2551ms)\nHow many types of human blood are there?\tBlood and lymph tissue\t0.8888888888870001\tHow many types of human blood are there? -> $x: ($x, be different type of, blood) -> (Blood and lymph tissue, There are many different types of, blood) -> Blood and lymph tissue (2551ms)\nHow many types of human blood are there?\tHairy cell leukemia\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Hairy cell leukemia, is a type of, blood cancer) -> Hairy cell leukemia (6770ms)\nHow many types of human blood are there?\tthe platelet\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (the platelet, is The third type of, blood cell) -> the platelet (2551ms)\nHow many types of human blood are there?\tPheresis\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Pheresis, is a type of, blood donation) -> Pheresis (3358ms)\nHow many types of human blood are there?\tMultiple Myeloma Multiple myeloma\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Multiple Myeloma Multiple myeloma, is a type of, blood cancer) -> Multiple Myeloma Multiple myeloma (3358ms)\nHow many types of human blood are there?\tA venous thrombosis\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (A venous thrombosis, is a type of, blood clot) -> A venous thrombosis (3864ms)\nHow many types of human blood are there?\tThe laver\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (The laver, was a type of, the Blood) -> The laver (6080ms)\nHow many types of human blood are there?\tarteries\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (arteries, are a type of, blood vessel) -> arteries (5879ms)\nHow many types of human blood are there?\tthe plasma\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (the plasma, are three types of, blood cells) -> the plasma (6080ms)\nHow many types of human blood are there?\tLymphoma Lymphoma\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lymphoma Lymphoma, is a type of, blood cancer) -> Lymphoma Lymphoma (6770ms)\nHow many types of human blood are there?\tblood type O\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (blood type O, is the most common type of, blood) -> blood type O (3358ms)\nHow many types of human blood are there?\tTriglyceride\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Triglyceride, is another type of, blood fat) -> Triglyceride (3864ms)\nHow many types of human blood are there?\tevery Circle\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (every Circle, is a type of, blood magic) -> every Circle (3864ms)\nHow many types of human blood are there?\tLeukemia\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Leukemia, is a type of, blood cancer) -> Leukemia (5879ms)\nHow many types of human blood are there?\tA platelet\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (A platelet, is a type of, blood cell) -> A platelet (5879ms)\nHow many types of human blood are there?\tthe Passover lamb\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (the Passover lamb, is a type of, the blood) -> the Passover lamb (6807ms)\nHow many types of human blood are there?\tA PSA\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (A PSA, is type of, blood test) -> A PSA (6807ms)\nHow many types of human blood are there?\tTriglycerides\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Triglycerides, are a type of, blood fat) -> Triglycerides (6807ms)\nHow many types of human blood are there?\tSystolic and diastolic\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Systolic and diastolic, are two types of, blood pressures) -> Systolic and diastolic (2551ms)\nHow many types of human blood are there?\tthe Science Guy\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (the Science Guy, There are four main types of, blood) -> the Science Guy (3864ms)\nHow many types of human blood are there?\tLymphoma\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lymphoma, is a type of, blood cancer) -> Lymphoma (6079ms)\nHow many types of human blood are there?\tdeath\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (death, was some type of, blood disorder) -> death (6771ms)\nHow many types of human blood are there?\tMeningococcal septicaemia\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Meningococcal septicaemia, is a type of, blood poisoning) -> Meningococcal septicaemia (6771ms)\nHow many types of human blood are there?\tPlatelets\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Platelets, are a specialized type of, blood cell) -> Platelets (6770ms)\nHow many types of human blood are there?\tplatelets\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (platelets, is a type of, blood cell) -> platelets (5879ms)\nHow many types of human blood are there?\tExodus 12\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Exodus 12, is a type of, the blood) -> Exodus 12 (6807ms)\nHow many types of human blood are there?\tthe unblemished lamb\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (the unblemished lamb, is a type of, the blood) -> the unblemished lamb (6807ms)\nHow many types of human blood are there?\tcholesterol and triglycerides\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (cholesterol and triglycerides, are types of, blood lipids) -> cholesterol and triglycerides (5879ms)\nHow many types of human blood are there?\tArteries\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Arteries, are a type of, blood vessel) -> Arteries (6807ms)\nHow many types of human blood are there?\tPolycythaemia vera\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Polycythaemia vera, is a type of, blood disorder) -> Polycythaemia vera (6079ms)\nHow many types of human blood are there?\tAcute leukemia\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Acute leukemia, is a type of, blood cancer) -> Acute leukemia (6079ms)\nHow many types of human blood are there?\tPSA tests\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (PSA tests, are a type of, blood test) -> PSA tests (3864ms)\nHow many types of human blood are there?\tMultiple myeloma\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Multiple myeloma, is a type of, blood cancer) -> Multiple myeloma (6080ms)\nHow many types of human blood are there?\tVeins Veins\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Veins Veins, are the type of, blood vessel) -> Veins Veins (6807ms)\nHow many types of human blood are there?\tthe type AB\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (the type AB, is the very rare type of, blood) -> the type AB (6807ms)\nHow many types of human blood are there?\tLamb\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lamb, is a type of, the Blood) -> Lamb (6771ms)\nHow many types of human blood are there?\tA full blood count\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (A full blood count, is a type of, blood test) -> A full blood count (3358ms)\nHow many types of human blood are there?\tG8 Countries Leukemia\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (G8 Countries Leukemia, is the type of, blood cancer) -> G8 Countries Leukemia (5879ms)\nHow many types of human blood are there?\ta recipient\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (a recipient, is given the wrong type of, blood) -> a recipient (5879ms)\nHow many types of human blood are there?\tA glucose test\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (A glucose test, is a type of, blood test) -> A glucose test (6079ms)\nHow many types of human blood are there?\tthe possibilities\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (the possibilities, are new types of, blood pressure) -> the possibilities (3358ms)\nHow many types of human blood are there?\tsubchorionic hematoma\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (subchorionic hematoma, is a type of, blood clot) -> subchorionic hematoma (3358ms)\nHow many types of human blood are there?\tA leukocyte\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (A leukocyte, is a type of, blood cell) -> A leukocyte (2551ms)\nHow many types of human blood are there?\tStem cells\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Stem cells, are a special type of, blood cell) -> Stem cells (7551ms)\nHow many types of human blood are there?\tMonocytes\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Monocytes, are type of, blood cells) -> Monocytes (2551ms)\nHow many types of human blood are there?\tThalessemia intermedia\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (Thalessemia intermedia, is another type of, blood disorder) -> Thalessemia intermedia (3358ms)\nHow many types of human blood are there?\tthe abnormal cells\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (the abnormal cells, are a type of, blood cell) -> the abnormal cells (6771ms)\nHow many types of human blood are there?\tbleeding Platelets\t0.5555555555459999\tHow many types of human blood are there? -> $x: ($x, be type of, blood) -> (bleeding Platelets, are a type of, blood cell) -> bleeding Platelets (3864ms)\nHow many types of human blood are there?\tan Austrian ,\t0.22222222222\tHow many types of human blood are there? -> $x: ($x, type, human blood) -> (an Austrian ,, discovered different types of, human blood) -> an Austrian , (7551ms)\nHow many types of human blood are there?\tcertain markers\t0.111111111111\tHow many types of human blood are there? -> $x: (human blood, be type, $x) -> (Human blood, is typed by, certain markers) -> certain markers (7551ms)\nHow many types of human blood are there?\tbiological cell\t0.111111111111\tHow many types of human blood are there? -> $x: (human blood, be type, $x) -> (human red blood cells, is a type of, biological cell) -> biological cell (7551ms)\nHow many types of human blood are there?\tlow blood pressure\t0.11111111111099997\tHow many types of human blood are there? -> $x: ($x, be two type of, blood) -> (low blood pressure, are two types of, blood pressure problems) -> low blood pressure (7610ms)\nHow many types of human blood are there?\tshingles\t0.11111111111099997\tHow many types of human blood are there? -> $x: ($x, be two type of, blood) -> (shingles, are two types of, white blood cells) -> shingles (7611ms)\nHow many types of human blood are there?\tneutrophils and lymphocytes\t0.11111111111099997\tHow many types of human blood are there? -> $x: ($x, be two type of, blood) -> (neutrophils and lymphocytes, are two types of, white blood cells) -> neutrophils and lymphocytes (7610ms)\nHow many types of human blood are there?\tThick Artificial Blood\t-1.0000056338554941E-12\tHow many types of human blood are there? -> $x: ($x, look like, human blood) -> (Thick Artificial Blood, to look like, human blood) -> Thick Artificial Blood (7930ms)\nHow many types of human blood are there?\tLiquid Artificial Blood\t-1.0000056338554941E-12\tHow many types of human blood are there? -> $x: ($x, look like, human blood) -> (Liquid Artificial Blood, was designed to look like, human blood) -> Liquid Artificial Blood (7930ms)\nHow many types of human blood are there?\tSirolimus\t-1.0000056338554941E-12\tHow many types of human blood are there? -> $x: ($x, major in, human blood) -> (Sirolimus, is the major component in, human whole blood) -> Sirolimus (7930ms)\nHow many types of human blood are there?\tBlood Energy Potion 48\t-1.0000056338554941E-12\tHow many types of human blood are there? -> $x: ($x, look like, human blood) -> (Blood Energy Potion 48, looks like, human blood) -> Blood Energy Potion 48 (7611ms)\nHow many types of human blood are there?\tzeaxanthin\t-1.0000056338554941E-12\tHow many types of human blood are there? -> $x: ($x, major in, human blood) -> (zeaxanthin, are major carotenoids in, human blood and tissues) -> zeaxanthin (7930ms)\nHow many types of human blood are there?\tonly a few\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (only a few, have the same type of, blood) -> only a few (7978ms)\nHow many types of human blood are there?\ta Gujarati\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (a Gujarati, had a similar type of, blood) -> a Gujarati (7978ms)\nHow many types of human blood are there?\tB rh+\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (B rh+, Type, Blood Bank) -> B rh+ (7978ms)\nHow many types of human blood are there?\tO\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (O, Type, Blood Type) -> O (8052ms)\nHow many types of human blood are there?\tGang\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (Gang, Criminal organizations of this type, Bloods) -> Gang (8081ms)\nHow many types of human blood are there?\tthe gentleman\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (the gentleman, had a rare type of, blood) -> the gentleman (7930ms)\nHow many types of human blood are there?\tThe children\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (The children, have two types of, blood) -> The children (8052ms)\nHow many types of human blood are there?\tA\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (A, Type, Blood Type) -> A (8062ms)\nHow many types of human blood are there?\tSchema staging\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (Schema staging, Types, Blood type) -> Schema staging (7930ms)\nHow many types of human blood are there?\tAB\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (AB, Type, Blood Type) -> AB (8072ms)\nHow many types of human blood are there?\tB\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (B, Type, Blood type) -> B (8072ms)\nHow many types of human blood are there?\tLapointe\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (Lapointe, has Type, A blood) -> Lapointe (8081ms)\nHow many types of human blood are there?\tBlood\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (Blood, Types, Blood Type) -> Blood (8052ms)\nHow many types of human blood are there?\tI?ve\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (I?ve, got a rare type of, blood) -> I?ve (8072ms)\nHow many types of human blood are there?\tO- blood\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (O- blood, can only receive this type of, blood) -> O- blood (8072ms)\nHow many types of human blood are there?\tthe class\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (the class, Type, A Blood) -> the class (8052ms)\nHow many types of human blood are there?\tSickle Cell patients\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (Sickle Cell patients, need this special type of, blood) -> Sickle Cell patients (8052ms)\nHow many types of human blood are there?\tHOSPITAL INFORMATION SYSTEM\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (HOSPITAL INFORMATION SYSTEM, Types, Blood Bank) -> HOSPITAL INFORMATION SYSTEM (8072ms)\nHow many types of human blood are there?\tKerry Keck\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (Kerry Keck, has Type, A blood) -> Kerry Keck (8052ms)\nHow many types of human blood are there?\t?the mother and baby\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (?the mother and baby, have a different type of, blood) -> ?the mother and baby (8072ms)\nHow many types of human blood are there?\ta horse\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (a horse, typed, blood) -> a horse (8062ms)\nHow many types of human blood are there?\tAn 18-year-old man\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (An 18-year-old man, received the wrong type of, blood) -> An 18-year-old man (8072ms)\nHow many types of human blood are there?\tevery 1,000\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (every 1,000, will have this specific type of, blood) -> every 1,000 (8062ms)\nHow many types of human blood are there?\teach parent\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (each parent, influences the type of, blood) -> each parent (8062ms)\nHow many types of human blood are there?\tlocal residents\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (local residents, need specific types of, blood) -> local residents (8052ms)\nHow many types of human blood are there?\tThe baby\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (The baby, may have the type of, blood) -> The baby (8052ms)\nHow many types of human blood are there?\tpeople with\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (people with, type, A blood) -> people with (7978ms)\nHow many types of human blood are there?\tevery thousand\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (every thousand, will have this specific type of, blood) -> every thousand (8062ms)\nHow many types of human blood are there?\tthe test\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (the test, actually picks up different TYPES of, blood) -> the test (8072ms)\nHow many types of human blood are there?\tA Vulcan/Human\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (A Vulcan/Human, would actually have both types of, blood) -> A Vulcan/Human (8072ms)\nHow many types of human blood are there?\tantibodies against\t-2.000039023286604E-12\tHow many types of human blood are there? -> $x: ($x, type, blood) -> (antibodies against, type, A blood) -> antibodies against (8052ms)\nHow many types of human blood are there?\theart disease\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, have type of, $x) -> (high blood pressure, have some type of, heart disease) -> heart disease (8132ms)\nHow many types of human blood are there?\tconnective tissue\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is considered a type of, connective tissue) -> connective tissue (8132ms)\nHow many types of human blood are there?\tsinusoids\t-0.11111111111100003\tHow many types of human blood are there? -> $x: ($x, be various type of, blood) -> (sinusoids, are various types of, immature blood cells) -> sinusoids (8116ms)\nHow many types of human blood are there?\tthe outward , physical ceremony\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, be type, $x) -> (blood, is indeed a type from, the outward , physical ceremony) -> the outward , physical ceremony (8081ms)\nHow many types of human blood are there?\tlymphocytes\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, have type of, $x) -> (The blood, has three types of, lymphocytes) -> lymphocytes (8090ms)\nHow many types of human blood are there?\tdonor program\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, have type of, $x) -> (Most blood banks, have some type of, donor program) -> donor program (8098ms)\nHow many types of human blood are there?\trank or leadership position\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, have type of, $x) -> (Bloods, have held some type of, rank or leadership position) -> rank or leadership position (8090ms)\nHow many types of human blood are there?\tSHRIMP\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, be type, $x) -> (blood_worms, is a type of, SHRIMP) -> SHRIMP (8107ms)\nHow many types of human blood are there?\tthe suffering aeon\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, be type, $x) -> (blood, was a type of, the suffering aeon) -> the suffering aeon (8098ms)\nHow many types of human blood are there?\tDNA specific\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is often typed due to, DNA specific) -> DNA specific (8081ms)\nHow many types of human blood are there?\tfuel\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is a type of, fuel) -> fuel (8116ms)\nHow many types of human blood are there?\tcells\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, have type of, $x) -> (Blood, has several different types of, cells) -> cells (8140ms)\nHow many types of human blood are there?\tcancer\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, have type of, $x) -> (Two or more blood relatives, have the same type of, cancer) -> cancer (8124ms)\nHow many types of human blood are there?\ttoxic chemicals\t-0.11111111111100003\tHow many types of human blood are there? -> $x: (blood, have type of, $x) -> (Blood tests, have detected several types of, toxic chemicals) -> toxic chemicals (8132ms)\nHow many types of human blood are there?\tVenules and arterioles\t-0.22222222222200003\tHow many types of human blood are there? -> $x: ($x, be other type of, blood) -> (Venules and arterioles, are other types of, small blood vessels) -> Venules and arterioles (8140ms)\nHow many types of human blood are there?\tfearless warriors\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (fearless warriors, practiced, blood feuds) -> fearless warriors (8171ms)\nHow many types of human blood are there?\ta little salt\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (a little salt, is a cure for, the blood and milk stains) -> a little salt (8215ms)\nHow many types of human blood are there?\tAfrican forests\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (African forests, is used to cure, high blood pressure) -> African forests (8156ms)\nHow many types of human blood are there?\tWhey\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Whey, has a major role in, red blood cell production) -> Whey (8203ms)\nHow many types of human blood are there?\ta newborn sibling\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (a newborn sibling, can be used to cure, blood disease) -> a newborn sibling (8185ms)\nHow many types of human blood are there?\tsubtle energy centers\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (subtle energy centers, cure, High Blood Pressure) -> subtle energy centers (8148ms)\nHow many types of human blood are there?\tthe chief ones\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (the chief ones, was the practice of, blood feuds) -> the chief ones (8140ms)\nHow many types of human blood are there?\tAlbumin\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Albumin, is the major protein in, the blood) -> Albumin (8178ms)\nHow many types of human blood are there?\tstrawberries\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (strawberries, may play a major role in lowering, blood pressure) -> strawberries (8148ms)\nHow many types of human blood are there?\ta drug\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (a drug, to cure, high blood pressure) -> a drug (8171ms)\nHow many types of human blood are there?\tthe best\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (the best, finally cure, high blood pressure) -> the best (8156ms)\nHow many types of human blood are there?\ttransplantation\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (transplantation, cure, blood cancers) -> transplantation (8140ms)\nHow many types of human blood are there?\tstress\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (stress, are a major factor in, high blood pressure) -> stress (8163ms)\nHow many types of human blood are there?\tMagnesium deficiency\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Magnesium deficiency, is a major factor in, high blood pressure) -> Magnesium deficiency (8198ms)\nHow many types of human blood are there?\tSurgical treatment\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Surgical treatment, 'can cure, high blood pressure) -> Surgical treatment (8192ms)\nHow many types of human blood are there?\tTheodism\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Theodism, regularly practices, blood sacrifice) -> Theodism (8209ms)\nHow many types of human blood are there?\ta medicine\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (a medicine, to cure, high blood pressure) -> a medicine (8210ms)\nHow many types of human blood are there?\tStress\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Stress, is a major factor in, high blood pressure) -> Stress (8164ms)\nHow many types of human blood are there?\tmoney\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (money, eventually cure, blood cancers) -> money (8220ms)\nHow many types of human blood are there?\tJournalism\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Journalism, is practiced by, flesh-and-blood people) -> Journalism (8192ms)\nHow many types of human blood are there?\tpsychiatrists\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (psychiatrists, cure, blood drinking) -> psychiatrists (8163ms)\nHow many types of human blood are there?\tMingle\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Mingle, cure, your blood thirsty cravings) -> Mingle (8220ms)\nHow many types of human blood are there?\tVitamin C\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Vitamin C, is a major antioxidant in, the blood and) -> Vitamin C (8148ms)\nHow many types of human blood are there?\tcaffeine\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (caffeine, causes major swings in, blood sugar) -> caffeine (8140ms)\nHow many types of human blood are there?\tdietary sugar\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (dietary sugar, plays a major role in, blood cholesterol levels) -> dietary sugar (8171ms)\nHow many types of human blood are there?\tthe sodium ion\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (the sodium ion, plays a major role in, blood pressure regulation) -> the sodium ion (8198ms)\nHow many types of human blood are there?\ta poison\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (a poison, can only be cured by, the blood) -> a poison (8198ms)\nHow many types of human blood are there?\tWeight\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Weight, plays a major role in developing, high blood pressure) -> Weight (8140ms)\nHow many types of human blood are there?\tDr Karsch\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Dr Karsch, cured, his own chronic blood disease) -> Dr Karsch (8148ms)\nHow many types of human blood are there?\tIsrael\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Israel, had the major hand in, that blood libel) -> Israel (8203ms)\nHow many types of human blood are there?\tDr Karsach\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Dr Karsach, cured, his own chronic blood disease) -> Dr Karsach (8178ms)\nHow many types of human blood are there?\tLisinopril\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Lisinopril, is best used for curing, high blood pressure) -> Lisinopril (8209ms)\nHow many types of human blood are there?\tHemoglobin\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Hemoglobin, is the major substance in, a red blood cells) -> Hemoglobin (8178ms)\nHow many types of human blood are there?\tthe Leukemia and Lymphoma Society\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (the Leukemia and Lymphoma Society, find cures for, blood cancers) -> the Leukemia and Lymphoma Society (8171ms)\nHow many types of human blood are there?\tthe herb\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (the herb, is an effective herbal cure for, high blood pressure) -> the herb (8178ms)\nHow many types of human blood are there?\tFosamprenavir\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Fosamprenavir, causes major increases in, blood levels) -> Fosamprenavir (8140ms)\nHow many types of human blood are there?\tthe mainstream medical doctors\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (the mainstream medical doctors, practiced, blood letting) -> the mainstream medical doctors (8163ms)\nHow many types of human blood are there?\tno consensus\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (no consensus, is helpful for curing, high blood pressure) -> no consensus (8140ms)\nHow many types of human blood are there?\tHuman beings\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Human beings, have practiced, blood-drinking) -> Human beings (8185ms)\nHow many types of human blood are there?\tresearchers\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (researchers, are trying to cure, high blood pressure) -> researchers (8192ms)\nHow many types of human blood are there?\tBarbers\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Barbers, also practiced, dentistry and blood-letting) -> Barbers (8178ms)\nHow many types of human blood are there?\tCalcium carbonicum 6X\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Calcium carbonicum 6X, plays a major role in, blood coagulation) -> Calcium carbonicum 6X (8164ms)\nHow many types of human blood are there?\tBloodstone\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Bloodstone, to cure, blood poisoning) -> Bloodstone (8203ms)\nHow many types of human blood are there?\tA six-year-old boy\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (A six-year-old boy, has been cured of, a rare blood disorder) -> A six-year-old boy (8198ms)\nHow many types of human blood are there?\tphlebotomy\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (phlebotomy, was the practice of, ?blood-letting?) -> phlebotomy (8163ms)\nHow many types of human blood are there?\tvitamin B12\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (vitamin B12, plays a major role in, red blood cell activity) -> vitamin B12 (8178ms)\nHow many types of human blood are there?\tleukemia patient\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (leukemia patient, cured with, cord blood stem cells) -> leukemia patient (8203ms)\nHow many types of human blood are there?\tBMT\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (BMT, can cure, both cancerous and non-cancerous blood disorders) -> BMT (8171ms)\nHow many types of human blood are there?\tRev. Walker\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Rev. Walker, cured, his blood sugar) -> Rev. Walker (8220ms)\nHow many types of human blood are there?\tsymptoms\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (symptoms, cure, diet treatment and high blood) -> symptoms (8156ms)\nHow many types of human blood are there?\tcold cereal\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (cold cereal, can cause a major drop in, your blood sugar levels) -> cold cereal (8148ms)\nHow many types of human blood are there?\tsociety\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (society, was the practice of giving, blood) -> society (8171ms)\nHow many types of human blood are there?\tThe Leukemia & Lymphoma Society\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (The Leukemia & Lymphoma Society, find cures for, blood cancers) -> The Leukemia & Lymphoma Society (8215ms)\nHow many types of human blood are there?\tbreakfast bars\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (breakfast bars, cause major rises in, my blood sugars hours) -> breakfast bars (8192ms)\nHow many types of human blood are there?\tA bone marrow transplant\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (A bone marrow transplant, can cure, the blood count problems) -> A bone marrow transplant (8185ms)\nHow many types of human blood are there?\tSarah\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Sarah, is a major player in, ANGELS' BLOOD) -> Sarah (8215ms)\nHow many types of human blood are there?\tWater\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Water, helps to cure, high blood pressure) -> Water (8203ms)\nHow many types of human blood are there?\tChristians\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Christians, once practiced, the same blood-letting ritual) -> Christians (8192ms)\nHow many types of human blood are there?\tMona Vie\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Mona Vie, cured, their high blood pressure) -> Mona Vie (8185ms)\nHow many types of human blood are there?\tSalt\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Salt, is a major factor in, high blood pressure) -> Salt (8215ms)\nHow many types of human blood are there?\tNatural remedies\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Natural remedies, always cure, high blood pressure) -> Natural remedies (8208ms)\nHow many types of human blood are there?\tPastor Archer\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Pastor Archer, was cured of extremely, high blood pressure) -> Pastor Archer (8198ms)\nHow many types of human blood are there?\tErvil LeBaron\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Ervil LeBaron, may have ended the practice of, blood atonement) -> Ervil LeBaron (8156ms)\nHow many types of human blood are there?\tKhady\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Khady, has been practicing taking, my blood) -> Khady (8209ms)\nHow many types of human blood are there?\tACE secretion\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (ACE secretion, plays a major role in regulating, blood pressure) -> ACE secretion (8220ms)\nHow many types of human blood are there?\tginger extract\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (ginger extract, to cure, any blood clot and digestive problems) -> ginger extract (8198ms)\nHow many types of human blood are there?\ta Doktor\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (a Doktor, discovered a cure for, High Blood Pressure) -> a Doktor (8178ms)\nHow many types of human blood are there?\tNo medicine\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (No medicine, can cure, high blood pressure) -> No medicine (8148ms)\nHow many types of human blood are there?\tthe globe\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (the globe, could cure the artificial disease in, his blood) -> the globe (8185ms)\nHow many types of human blood are there?\tAmerica\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (America, is practiced as, blood sport) -> America (8185ms)\nHow many types of human blood are there?\tthe blood\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (the blood, plays a major role in forming, blood clots) -> the blood (8185ms)\nHow many types of human blood are there?\tthe Arab world\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (the Arab world, be cured of, its blood-lust) -> the Arab world (8185ms)\nHow many types of human blood are there?\trejuvenation\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (rejuvenation, cured, red blood) -> rejuvenation (8220ms)\nHow many types of human blood are there?\tVitamin K\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Vitamin K, plays a major role in, blood clotting) -> Vitamin K (8148ms)\nHow many types of human blood are there?\tthe liver\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (the liver, plays a major role in, blood coagulation) -> the liver (8164ms)\nHow many types of human blood are there?\ttraditional Chinese doctors\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (traditional Chinese doctors, cure, all blood related problems) -> traditional Chinese doctors (8215ms)\nHow many types of human blood are there?\tjellyfish\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (jellyfish, can cure, high blood pressure) -> jellyfish (8215ms)\nHow many types of human blood are there?\tthe acai berry\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (the acai berry, has the power to cure, the blood diseases) -> the acai berry (8215ms)\nHow many types of human blood are there?\tDiet\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Diet, is a major factor in controlling, blood sugar levels) -> Diet (8192ms)\nHow many types of human blood are there?\tthe Maya\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (the Maya, practiced, blood sacrifice) -> the Maya (8156ms)\nHow many types of human blood are there?\tLucy Lucy\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Lucy Lucy, was cured with, Porter?s silver-laden blood) -> Lucy Lucy (8209ms)\nHow many types of human blood are there?\tvitamin B 12\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (vitamin B 12, plays a major role in, red blood cell activity) -> vitamin B 12 (8198ms)\nHow many types of human blood are there?\tThe kidneys\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (The kidneys, play a major role in filtering, the blood) -> The kidneys (8178ms)\nHow many types of human blood are there?\thoney\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (honey, can cure, blood vomiting) -> honey (8171ms)\nHow many types of human blood are there?\tobesity\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (obesity, can cure, high blood pressure) -> obesity (8203ms)\nHow many types of human blood are there?\tdiet\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (diet, plays a major role in lowering, high blood cholesterol) -> diet (8215ms)\nHow many types of human blood are there?\tMagnesium\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Magnesium, also plays a major role in regulating, blood pressure) -> Magnesium (8140ms)\nHow many types of human blood are there?\trisk\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (risk, are being cured for, high blood pressure) -> risk (8164ms)\nHow many types of human blood are there?\tGoldenseal\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Goldenseal, was used to cure, high blood pressure) -> Goldenseal (8215ms)\nHow many types of human blood are there?\tStudents\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Students, will practice, extracting blood) -> Students (8163ms)\nHow many types of human blood are there?\tpressure\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (pressure, causes major variations in, blood pressure) -> pressure (8148ms)\nHow many types of human blood are there?\tEnchantment\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, type of, blood) -> (Enchantment, Card of this type, Exquisite Blood) -> Enchantment (8203ms)\nHow many types of human blood are there?\ta letter\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (a letter, criticized the practice of, blood libels) -> a letter (8192ms)\nHow many types of human blood are there?\tPakistan\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Pakistan, cured, my high blood pressure) -> Pakistan (8156ms)\nHow many types of human blood are there?\tjust a woman\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (just a woman, majored in, Blood) -> just a woman (8178ms)\nHow many types of human blood are there?\tThe sweets\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (The sweets, are causing major fluctuations in, blood sugar) -> The sweets (8178ms)\nHow many types of human blood are there?\tdiabetes\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (diabetes, will be cured of, the blood sugar disease) -> diabetes (8185ms)\nHow many types of human blood are there?\themoglobin\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (hemoglobin, is the major protein in, red blood cells) -> hemoglobin (8185ms)\nHow many types of human blood are there?\tThey?re goal\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (They?re goal, is to find a cure for, blood cancer) -> They?re goal (8210ms)\nHow many types of human blood are there?\ta visitor\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (a visitor, was cured of, a blood infection) -> a visitor (8209ms)\nHow many types of human blood are there?\tAloe vera\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Aloe vera, cured, my high blood pressure) -> Aloe vera (8163ms)\nHow many types of human blood are there?\tEarth\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Earth, practiced, the darker blood-fueled arts) -> Earth (8209ms)\nHow many types of human blood are there?\tAlpha-1 antitrypsin\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Alpha-1 antitrypsin, is a major protein in, the blood) -> Alpha-1 antitrypsin (8148ms)\nHow many types of human blood are there?\tthe LLS\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (the LLS, is to find a cure for, all blood cancers) -> the LLS (8203ms)\nHow many types of human blood are there?\tdecisive therapies\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (decisive therapies, cure, serious blood diseases) -> decisive therapies (8178ms)\nHow many types of human blood are there?\tSodium\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Sodium, is the major electrolyte in, the blood) -> Sodium (8192ms)\nHow many types of human blood are there?\tgenetic diseases and cancers\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (genetic diseases and cancers, are cured through, cord blood) -> genetic diseases and cancers (8185ms)\nHow many types of human blood are there?\tthe narrowed artery\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (the narrowed artery, even cure, the high blood pressure) -> the narrowed artery (8163ms)\nHow many types of human blood are there?\tcarbohydrate\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (carbohydrate, plays a major role in, blood-glucose level) -> carbohydrate (8156ms)\nHow many types of human blood are there?\truby\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (ruby, was thought to cure, blood diseases) -> ruby (8140ms)\nHow many types of human blood are there?\tdoctors\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (doctors, cure by, letting blood) -> doctors (8215ms)\nHow many types of human blood are there?\tPatients\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Patients, are therefore cured of, the blood problem) -> Patients (8192ms)\nHow many types of human blood are there?\tLozide\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Lozide, cannot cure, high blood pressure) -> Lozide (8192ms)\nHow many types of human blood are there?\tcelery\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (celery, can cure, high blood pressure) -> celery (8215ms)\nHow many types of human blood are there?\tvarious articles\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (various articles, also helps to cure, low blood pressure) -> various articles (8209ms)\nHow many types of human blood are there?\tTurmeric\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Turmeric, is helpful in curing, high blood pressure) -> Turmeric (8198ms)\nHow many types of human blood are there?\tFunctions and indications\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Functions and indications, cure, the high blood pressure) -> Functions and indications (8198ms)\nHow many types of human blood are there?\tmore strain\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (more strain, is a major issue in, high blood pressure) -> more strain (8185ms)\nHow many types of human blood are there?\tStresses\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (Stresses, plays a major factor in, blood pressure) -> Stresses (8171ms)\nHow many types of human blood are there?\tBaltar\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Baltar, find a cure in, the blood) -> Baltar (8148ms)\nHow many types of human blood are there?\tevery arrow-shot deer\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (every arrow-shot deer, practiced, blood-trailing skills) -> every arrow-shot deer (8209ms)\nHow many types of human blood are there?\tiron\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, major in, blood) -> (iron, is a major mineral in, blood) -> iron (8178ms)\nHow many types of human blood are there?\tRelaxed environment\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (Relaxed environment, cures, blood pressure) -> Relaxed environment (8198ms)\nHow many types of human blood are there?\tPhlebotomy\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, practice, blood) -> (Phlebotomy, is the practice of, drawing blood) -> Phlebotomy (8203ms)\nHow many types of human blood are there?\tan arrow\t-0.22222222222300003\tHow many types of human blood are there? -> $x: ($x, cure, blood) -> (an arrow, can only be cured by, the blood) -> an arrow (8185ms)\nHow many types of human blood are there?\tDiabetes\t-0.333333333333\tHow many types of human blood are there? -> $x: ($x, be example of, blood) -> (Diabetes, is a good example of, a disease restricting blood flow) -> Diabetes (8224ms)\nHow many types of human blood are there?\tCowboy Bebop\t-0.333333333333\tHow many types of human blood are there? -> $x: ($x, be example of, blood) -> (Cowboy Bebop, are excellent examples of, Space Cowboys and Blood) -> Cowboy Bebop (8220ms)\nHow many types of human blood are there?\tovarian cysts\t-0.333333333333\tHow many types of human blood are there? -> $x: ($x, be example of, blood) -> (ovarian cysts, are all examples of, Blood Stasis) -> ovarian cysts (8224ms)\nHow many types of human blood are there?\twomen\t-0.333333333333\tHow many types of human blood are there? -> $x: ($x, be example of, blood) -> (women, is another example of, a blood rule) -> women (8220ms)\nHow many types of human blood are there?\tMammals and birds\t-0.333333333333\tHow many types of human blood are there? -> $x: ($x, be example of, blood) -> (Mammals and birds, are good examples of, warm-blooded animals) -> Mammals and birds (8220ms)\nHow many types of human blood are there?\t2012\t-0.333333333333\tHow many types of human blood are there? -> $x: ($x, be example of, blood) -> (2012, Here are a few examples of, high blood pressure diets) -> 2012 (8220ms)\nHow many types of human blood are there?\tThe latter\t-0.333333333333\tHow many types of human blood are there? -> $x: ($x, be example of, blood) -> (The latter, was the first example of, HIV-positive blood samples) -> The latter (8220ms)\nHow many types of human blood are there?\ttea\t-0.333333333333\tHow many types of human blood are there? -> $x: ($x, be example of, blood) -> (tea, are examples of, good non-prescription blood thinners) -> tea (8220ms)\nHow many types of human blood are there?\ta coconut\t-0.44444444445\tHow many types of human blood are there? -> $x: ($x, can substitute, human blood) -> (a coconut, can be substituted for, human blood) -> a coconut (8224ms)\nHow many types of human blood are there?\tthe movie\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the movie, ?There will be, blood) -> the movie (8241ms)\nHow many types of human blood are there?\ta line\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (a line, There Will Be, Blood) -> a line (8245ms)\nHow many types of human blood are there?\tinadvertent honesty\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (inadvertent honesty, ?There is power in, blood) -> inadvertent honesty (8241ms)\nHow many types of human blood are there?\tdear God\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (dear God, is there, blood) -> dear God (8229ms)\nHow many types of human blood are there?\tlab\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (lab, was there to bring, blood) -> lab (8229ms)\nHow many types of human blood are there?\tknowledge regarding oil production\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (knowledge regarding oil production, were There Will Be, Blood) -> knowledge regarding oil production (8229ms)\nHow many types of human blood are there?\timmersive atmospheric gameplay\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (immersive atmospheric gameplay, let there be, blood) -> immersive atmospheric gameplay (8241ms)\nHow many types of human blood are there?\tDaniel Day-Lewis em\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Daniel Day-Lewis em, ?There Will Be, Blood?) -> Daniel Day-Lewis em (8229ms)\nHow many types of human blood are there?\tDr. Rizoli\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Dr. Rizoli, there?ll be, blood) -> Dr. Rizoli (8241ms)\nHow many types of human blood are there?\tthe pillow\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the pillow, is there, blood) -> the pillow (8233ms)\nHow many types of human blood are there?\tOld Men,\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Old Men,, There Will Be, Blood) -> Old Men, (8237ms)\nHow many types of human blood are there?\tmuckraker\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (muckraker, There Will Be, Blood) -> muckraker (8241ms)\nHow many types of human blood are there?\tthe Muslim world\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the Muslim world, there are howling for, blood) -> the Muslim world (8224ms)\nHow many types of human blood are there?\tphrases\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (phrases, ?There will be, blood) -> phrases (8237ms)\nHow many types of human blood are there?\tthe ground\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the ground, there is, blood) -> the ground (8245ms)\nHow many types of human blood are there?\tOld Men\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Old Men, There Will Be, Blood &) -> Old Men (8245ms)\nHow many types of human blood are there?\tthe actors\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the actors, THERE WAS, BLOOD) -> the actors (8233ms)\nHow many types of human blood are there?\tMichael Clayton\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Michael Clayton, There Will Be, Blood) -> Michael Clayton (8237ms)\nHow many types of human blood are there?\tthe words\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the words, there was, blood) -> the words (8241ms)\nHow many types of human blood are there?\tPaul Thomas Andersons new movie\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Paul Thomas Andersons new movie, There Will Be, Blood ,) -> Paul Thomas Andersons new movie (8229ms)\nHow many types of human blood are there?\tJust caught Paul Thomas Anderson?s\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Just caught Paul Thomas Anderson?s, There Will Be, Blood) -> Just caught Paul Thomas Anderson?s (8241ms)\nHow many types of human blood are there?\tThe moose\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (The moose, there are out for, blood) -> The moose (8237ms)\nHow many types of human blood are there?\ttheaters\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (theaters, was There Will Be, Blood) -> theaters (8245ms)\nHow many types of human blood are there?\tJed Clampett\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Jed Clampett, There Will Be, Blood) -> Jed Clampett (8237ms)\nHow many types of human blood are there?\tFilm Fight 2008\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Film Fight 2008, is ? There Will Be, Blood) -> Film Fight 2008 (8233ms)\nHow many types of human blood are there?\tHotel Rwanda,\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Hotel Rwanda,, There will be, blood) -> Hotel Rwanda, (8233ms)\nHow many types of human blood are there?\tEvidence\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Evidence, There Will Be, Blood) -> Evidence (8241ms)\nHow many types of human blood are there?\tcolostrum\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (colostrum, there are in, blood) -> colostrum (8245ms)\nHow many types of human blood are there?\tVicky Cristina Barcelona\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Vicky Cristina Barcelona, There Will Be, Blood) -> Vicky Cristina Barcelona (8237ms)\nHow many types of human blood are there?\tNumber two\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Number two, was ?There will be, blood) -> Number two (8224ms)\nHow many types of human blood are there?\tthe kid\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the kid, There Will Be, Blood) -> the kid (8224ms)\nHow many types of human blood are there?\tthe film\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the film, ?There will be, blood?) -> the film (8229ms)\nHow many types of human blood are there?\tearly years\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (early years, is there trace, blood) -> early years (8237ms)\nHow many types of human blood are there?\tthe 2008 films\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the 2008 films, ?There Will be, Blood?) -> the 2008 films (8237ms)\nHow many types of human blood are there?\trazor sharp teeth\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (razor sharp teeth, are floating there in, blood) -> razor sharp teeth (8229ms)\nHow many types of human blood are there?\tone time\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (one time, there was, blood) -> one time (8229ms)\nHow many types of human blood are there?\tbrush\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (brush, is there, blood) -> brush (8229ms)\nHow many types of human blood are there?\tFUN\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (FUN, is there is, blood) -> FUN (8233ms)\nHow many types of human blood are there?\tAtonement\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Atonement, There Will Be, Blood) -> Atonement (8224ms)\nHow many types of human blood are there?\tviewing\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (viewing, There Will Be, Blood) -> viewing (8233ms)\nHow many types of human blood are there?\tTrailer\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Trailer, There Will Be, Blood) -> Trailer (8237ms)\nHow many types of human blood are there?\tPaul Thomas Anderson\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Paul Thomas Anderson, There Will Be, Blood) -> Paul Thomas Anderson (8237ms)\nHow many types of human blood are there?\tart and download\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (art and download, There Wishes Be, Blood) -> art and download (8229ms)\nHow many types of human blood are there?\tSanji...and\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Sanji...and, there appeared to be, blood) -> Sanji...and (8233ms)\nHow many types of human blood are there?\tWherefore\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Wherefore, is there, blood) -> Wherefore (8241ms)\nHow many types of human blood are there?\twounds\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (wounds, ?There was, blood) -> wounds (8229ms)\nHow many types of human blood are there?\tany revolution\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (any revolution, there promises to be, blood) -> any revolution (8237ms)\nHow many types of human blood are there?\ta bowel movement\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (a bowel movement, there was, blood) -> a bowel movement (8233ms)\nHow many types of human blood are there?\tSallie Rios\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Sallie Rios, There was, blood) -> Sallie Rios (8233ms)\nHow many types of human blood are there?\tno-holds-barred hilarity\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (no-holds-barred hilarity, ?There has to be, blood) -> no-holds-barred hilarity (8241ms)\nHow many types of human blood are there?\tDepression Era\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Depression Era, There Will Be, Blood) -> Depression Era (8241ms)\nHow many types of human blood are there?\tthe experimental drug\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the experimental drug, was there to get, blood) -> the experimental drug (8241ms)\nHow many types of human blood are there?\tno\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (no, There Will Be, Blood) -> no (8245ms)\nHow many types of human blood are there?\tJuno Atonement\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Juno Atonement, There Will Be, Blood) -> Juno Atonement (8241ms)\nHow many types of human blood are there?\tan entire toe\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (an entire toe, are there streaks of, blood) -> an entire toe (8245ms)\nHow many types of human blood are there?\tDaniel Day-Lewis ? performance\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Daniel Day-Lewis ? performance, dominates There Will Be, Blood) -> Daniel Day-Lewis ? performance (8229ms)\nHow many types of human blood are there?\tterms\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (terms, is There Will be, Blood) -> terms (8224ms)\nHow many types of human blood are there?\tWHYTHEFUCK\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (WHYTHEFUCK, is there, BLOOD) -> WHYTHEFUCK (8233ms)\nHow many types of human blood are there?\tSure\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Sure, there was, blood) -> Sure (8233ms)\nHow many types of human blood are there?\tA parishioner\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (A parishioner, ?There was, blood) -> A parishioner (8224ms)\nHow many types of human blood are there?\tJanuary 22 , 2008 Go\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (January 22 , 2008 Go, see There Will Be, Blood) -> January 22 , 2008 Go (8245ms)\nHow many types of human blood are there?\tthe head\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the head, ?there was, blood) -> the head (8229ms)\nHow many types of human blood are there?\toh so fair ,\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (oh so fair ,, is there, blood) -> oh so fair , (8237ms)\nHow many types of human blood are there?\tNiall Ferguson\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Niall Ferguson, :?There will be, blood) -> Niall Ferguson (8233ms)\nHow many types of human blood are there?\t18-Jan-08 kirk and i\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (18-Jan-08 kirk and i, saw ?there will be, blood ?) -> 18-Jan-08 kirk and i (8241ms)\nHow many types of human blood are there?\tNina\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Nina, was laying there with, blood) -> Nina (8237ms)\nHow many types of human blood are there?\tAnderson?s belongings\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Anderson?s belongings, there appeared to be, blood) -> Anderson?s belongings (8233ms)\nHow many types of human blood are there?\tbad news\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (bad news, There Will Be, Blood) -> bad news (8245ms)\nHow many types of human blood are there?\t22-Jan-08 jonny greenwood?s score\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (22-Jan-08 jonny greenwood?s score, ?there will be, blood?) -> 22-Jan-08 jonny greenwood?s score (8233ms)\nHow many types of human blood are there?\tSuper\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Super, There Will Be, Blood) -> Super (8229ms)\nHow many types of human blood are there?\tRace\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Race, ?There Will be, Blood) -> Race (8245ms)\nHow many types of human blood are there?\tPaul Thomas Anderson?s Oscar?-nominated\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Paul Thomas Anderson?s Oscar?-nominated, ?There Will Be, Blood ?) -> Paul Thomas Anderson?s Oscar?-nominated (8241ms)\nHow many types of human blood are there?\tSouichi\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Souichi, could react there was, blood) -> Souichi (8229ms)\nHow many types of human blood are there?\tthe ground ad\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (the ground ad, there was, blood) -> the ground ad (8245ms)\nHow many types of human blood are there?\tlast year\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (last year, were There Will Be, Blood) -> last year (8229ms)\nHow many types of human blood are there?\tThe sleeping room\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (The sleeping room, there are spots of, blood) -> The sleeping room (8224ms)\nHow many types of human blood are there?\tJames\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (James, was there, blood) -> James (8241ms)\nHow many types of human blood are there?\tAtonement Juno\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Atonement Juno, There Will Be, Blood) -> Atonement Juno (8233ms)\nHow many types of human blood are there?\ta cinematic masterpiece and download\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (a cinematic masterpiece and download, There Wishes Be, Blood) -> a cinematic masterpiece and download (8237ms)\nHow many types of human blood are there?\tforce and download\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (force and download, There Wishes Be, Blood) -> force and download (8224ms)\nHow many types of human blood are there?\tDaniel Day-Lewis\t-0.5555555555630001\tHow many types of human blood are there? -> $x: ($x, be there, blood) -> (Daniel Day-Lewis, There Will Be, Blood) -> Daniel Day-Lewis (8237ms)\nHow many types of human blood are there?\tblood group\t-0.66666666667\tHow many types of human blood are there? -> $x: ($x, can be find on, human blood) -> (blood group, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Human%20blood%20group%20systems) -> blood group (8245ms)\nHow many types of human blood are there?\tmammary tissue\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (mammary tissue, consists only of, blood) -> mammary tissue (8257ms)\nHow many types of human blood are there?\tAny orange\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, can be substitute for, blood) -> (Any orange, can be substituted for, the blood orange) -> Any orange (8262ms)\nHow many types of human blood are there?\tHealth checks\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Health checks, consist of, blood pressure) -> Health checks (8249ms)\nHow many types of human blood are there?\tthe technique\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the technique, consisted of, blood test) -> the technique (8257ms)\nHow many types of human blood are there?\tthe condition\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the condition, consists of removing, blood) -> the condition (8255ms)\nHow many types of human blood are there?\thealth problems\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (health problems, consist of, poor blood flow) -> health problems (8252ms)\nHow many types of human blood are there?\tChum\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Chum, consists of, fish parts and blood) -> Chum (8257ms)\nHow many types of human blood are there?\tScreening\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Screening, consists of, a simple blood test) -> Screening (8257ms)\nHow many types of human blood are there?\tThe root canal\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The root canal, consists of, blood vessels) -> The root canal (8262ms)\nHow many types of human blood are there?\themochromatosis\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (hemochromatosis, consists of removing, blood) -> hemochromatosis (8252ms)\nHow many types of human blood are there?\tThe menses or period\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The menses or period, consists of, blood) -> The menses or period (8252ms)\nHow many types of human blood are there?\ttissues\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (tissues, consists of, blood/ red blood cells) -> tissues (8259ms)\nHow many types of human blood are there?\tThe meal\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The meal, consisted of, coagulated blood) -> The meal (8259ms)\nHow many types of human blood are there?\tHES solutions\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, can substitute, blood) -> (HES solutions, can substitute, deficient blood volume) -> HES solutions (8245ms)\nHow many types of human blood are there?\tThe Horde\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The Horde, consists of, Blood Elves) -> The Horde (8255ms)\nHow many types of human blood are there?\tThe menstrual flow\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The menstrual flow, consists of, this blood) -> The menstrual flow (8259ms)\nHow many types of human blood are there?\tThe cardiovascular system\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The cardiovascular system, consists of, the heart and blood) -> The cardiovascular system (8259ms)\nHow many types of human blood are there?\ta benign growth\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (a benign growth, consists of, small blood vessels) -> a benign growth (8255ms)\nHow many types of human blood are there?\tSuch sacrifices\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Such sacrifices, consist of, the blood) -> Such sacrifices (8254ms)\nHow many types of human blood are there?\tthe paint\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the paint, consisted of, animal blood) -> the paint (8249ms)\nHow many types of human blood are there?\tSerous fluid\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Serous fluid, consists of, blood plasma) -> Serous fluid (8257ms)\nHow many types of human blood are there?\tStygmata\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Stygmata, consists of, liquid blood) -> Stygmata (8259ms)\nHow many types of human blood are there?\tThe pus\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The pus, consists of, white blood cells) -> The pus (8259ms)\nHow many types of human blood are there?\tGod\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (God, consists of, blood) -> God (8259ms)\nHow many types of human blood are there?\tthe extracellular space\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the extracellular space, consists of, the blood vessels) -> the extracellular space (8252ms)\nHow many types of human blood are there?\tthe English throne\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the English throne, consisted of, Vere blood) -> the English throne (8259ms)\nHow many types of human blood are there?\tthe group\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the group, consisting of, blood) -> the group (8257ms)\nHow many types of human blood are there?\tThe screening\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The screening, consists of, blood pressure) -> The screening (8262ms)\nHow many types of human blood are there?\tthe percentage of\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the percentage of, consists of, red blood cells) -> the percentage of (8255ms)\nHow many types of human blood are there?\tRegular surveillance\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Regular surveillance, consists of, blood tests) -> Regular surveillance (8249ms)\nHow many types of human blood are there?\tbed bugs\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (bed bugs, consists of, blood) -> bed bugs (8252ms)\nHow many types of human blood are there?\tFood\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Food, consists of, digested blood) -> Food (8254ms)\nHow many types of human blood are there?\tVitals signs\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Vitals signs, consist of, blood pressure) -> Vitals signs (8249ms)\nHow many types of human blood are there?\tthe tooth\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the tooth, consists of, blood vessels) -> the tooth (8257ms)\nHow many types of human blood are there?\tthe time\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the time, consisted of, blood letting) -> the time (8257ms)\nHow many types of human blood are there?\tOrthodox treatment\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Orthodox treatment, consists of, blood transfusions) -> Orthodox treatment (8255ms)\nHow many types of human blood are there?\tMetabolic Syndrome\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Metabolic Syndrome, consists of, high blood pressure) -> Metabolic Syndrome (8257ms)\nHow many types of human blood are there?\tthe office\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the office, consisted of, blood tests) -> the office (8249ms)\nHow many types of human blood are there?\tThe vertebrate circulatory system\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The vertebrate circulatory system, consists of, the blood) -> The vertebrate circulatory system (8262ms)\nHow many types of human blood are there?\tthe ECF\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the ECF, consists of, blood plasma) -> the ECF (8249ms)\nHow many types of human blood are there?\tEast Africa\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (East Africa, consists largely of, blood) -> East Africa (8259ms)\nHow many types of human blood are there?\tthe ear\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the ear, may consist of, blood) -> the ear (8252ms)\nHow many types of human blood are there?\tThe B side\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The B side, consisted of, Bloods) -> The B side (8249ms)\nHow many types of human blood are there?\tThe other component\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The other component, consists of, special white blood cells) -> The other component (8259ms)\nHow many types of human blood are there?\tThe proportion of\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The proportion of, consists of, packed red blood cells) -> The proportion of (8249ms)\nHow many types of human blood are there?\tThe accumulated fluid\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The accumulated fluid, consists of, blood) -> The accumulated fluid (8254ms)\nHow many types of human blood are there?\tA positive control\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (A positive control, consists of, the blood) -> A positive control (8249ms)\nHow many types of human blood are there?\tDefective blood cells\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, can substitute, blood) -> (Defective blood cells, can?t substitute for, normal blood cells) -> Defective blood cells (8252ms)\nHow many types of human blood are there?\tVital signs\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Vital signs, consist of, blood pressure) -> Vital signs (8252ms)\nHow many types of human blood are there?\tThe standard test performed\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The standard test performed, consists of, blood work) -> The standard test performed (8262ms)\nHow many types of human blood are there?\tBiological monitoring\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Biological monitoring, usually consists of, blood) -> Biological monitoring (8252ms)\nHow many types of human blood are there?\tTreatment\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Treatment, consists of, blood glucose) -> Treatment (8255ms)\nHow many types of human blood are there?\tThe exam\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The exam, typically consists of, blood) -> The exam (8259ms)\nHow many types of human blood are there?\tvascular lesions\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (vascular lesions, consist of, blood vessels) -> vascular lesions (8255ms)\nHow many types of human blood are there?\tThe pulp\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The pulp, consists of, nerves and blood vessels) -> The pulp (8255ms)\nHow many types of human blood are there?\tThe red pulp\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The red pulp, consists of, blood vessels) -> The red pulp (8255ms)\nHow many types of human blood are there?\tthe roots\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the roots, consist of, blood bile) -> the roots (8257ms)\nHow many types of human blood are there?\taspirin\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, can substitute, blood) -> (aspirin, can be substituted for, your blood thinners) -> aspirin (8249ms)\nHow many types of human blood are there?\tthe endocrine system\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the endocrine system, consists of, the blood) -> the endocrine system (8257ms)\nHow many types of human blood are there?\tthe spermatic cord\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the spermatic cord, consists of, blood vessels) -> the spermatic cord (8255ms)\nHow many types of human blood are there?\tA control group\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (A control group, consisted of, blood donors) -> A control group (8255ms)\nHow many types of human blood are there?\ta negative control\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (a negative control, consists of, the blood) -> a negative control (8252ms)\nHow many types of human blood are there?\tstools\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (stools, consist of, pure blood) -> stools (8249ms)\nHow many types of human blood are there?\tIncomplete blood cells\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, can substitute, blood) -> (Incomplete blood cells, can?t substitute for, normal blood cells) -> Incomplete blood cells (8257ms)\nHow many types of human blood are there?\tthe skin\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the skin, consisting of, masses of blood vessels) -> the skin (8257ms)\nHow many types of human blood are there?\tThe discharge\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The discharge, consists of, blood and cells) -> The discharge (8257ms)\nHow many types of human blood are there?\tgluten sensitivity/celiac sprue\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (gluten sensitivity/celiac sprue, consisted of, blood tests) -> gluten sensitivity/celiac sprue (8245ms)\nHow many types of human blood are there?\tSymptoms\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (Symptoms, consist of, blood) -> Symptoms (8252ms)\nHow many types of human blood are there?\tplasma\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, can substitute, blood) -> (plasma, can be substituted for, whole blood transfusions) -> plasma (8259ms)\nHow many types of human blood are there?\ta benign tumor\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (a benign tumor, consisting of, blood vessels) -> a benign tumor (8259ms)\nHow many types of human blood are there?\tthe circulatory system\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (the circulatory system, consists of, the blood) -> the circulatory system (8259ms)\nHow many types of human blood are there?\tlean meats\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (lean meats, consist of, Blood potassium) -> lean meats (8262ms)\nHow many types of human blood are there?\tOne dish\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (One dish, consists of, blood sausage) -> One dish (8255ms)\nHow many types of human blood are there?\tThe blood\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (The blood, consists of, red blood cells) -> The blood (8257ms)\nHow many types of human blood are there?\tPRRSV\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (PRRSV, consists of, blood) -> PRRSV (8257ms)\nHow many types of human blood are there?\tnoninfectious pustules\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (noninfectious pustules, consist of, white blood cells) -> noninfectious pustules (8249ms)\nHow many types of human blood are there?\tnoninfectious pus\t-0.666666666672\tHow many types of human blood are there? -> $x: ($x, consist of, blood) -> (noninfectious pus, consisting of, white blood cells) -> noninfectious pus (8259ms)\nHow many types of human blood are there?\tType O negative\t-0.88888888888\tHow many types of human blood are there? -> $x: ($x, be type for, blood) -> (Type O negative, is the universal type for, red blood cells) -> Type O negative (8262ms)\nHow many types of human blood are there?\tBlood and Gold\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood and Gold, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20and%20Gold) -> Blood and Gold (8264ms)\nHow many types of human blood are there?\tPeripheral smear\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Peripheral smear, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20film) -> Peripheral smear (8268ms)\nHow many types of human blood are there?\tCLL\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (CLL, can be found on, routine blood-tests) -> CLL (8267ms)\nHow many types of human blood are there?\tBlood Thirst\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Thirst, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Thirst) -> Blood Thirst (8267ms)\nHow many types of human blood are there?\tUnited Blood Nation\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (United Blood Nation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/United%20Blood%20Nation) -> United Blood Nation (8264ms)\nHow many types of human blood are there?\tthe blood spilt\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (the blood spilt, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Spilt) -> the blood spilt (8268ms)\nHow many types of human blood are there?\tInternational Society of Blood Transfusion\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (International Society of Blood Transfusion, can be found on Wikipedia at, http://en.wikipedia.org/wiki/International%20Society%20of%20Blood%20Transfusion) -> International Society of Blood Transfusion (8264ms)\nHow many types of human blood are there?\tBack to Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Back to Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Back%20to%20Blood) -> Back to Blood (8267ms)\nHow many types of human blood are there?\tdark blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (dark blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dark%20Blood) -> dark blood (8268ms)\nHow many types of human blood are there?\ta particular marker\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (a particular marker, can be found on, their white blood cells) -> a particular marker (8267ms)\nHow many types of human blood are there?\tWire in the Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Wire in the Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Wire%20in%20the%20Blood) -> Wire in the Blood (8265ms)\nHow many types of human blood are there?\tBlood and Honor\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood and Honor, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20and%20Honour) -> Blood and Honor (8265ms)\nHow many types of human blood are there?\tBlood Storm\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Storm, can be found on Wikipedia at, http://en.wikipedia.org/wiki/BloodStorm) -> Blood Storm (8267ms)\nHow many types of human blood are there?\tBlood Theatre\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Theatre, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Theatre) -> Blood Theatre (8269ms)\nHow many types of human blood are there?\tHemophobia\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Hemophobia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20phobia) -> Hemophobia (8269ms)\nHow many types of human blood are there?\tBlood is thicker than water\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood is thicker than water, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20is%20thicker%20than%20water) -> Blood is thicker than water (8269ms)\nHow many types of human blood are there?\tblood of amber\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood of amber, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20of%20Amber) -> blood of amber (8265ms)\nHow many types of human blood are there?\tFangoria Blood Drive\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Fangoria Blood Drive, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Fangoria%20Blood%20Drive) -> Fangoria Blood Drive (8267ms)\nHow many types of human blood are there?\tDragons Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Dragons Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dragon's%20blood) -> Dragons Blood (8264ms)\nHow many types of human blood are there?\tlife in cold blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (life in cold blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Life%20in%20Cold%20Blood) -> life in cold blood (8270ms)\nHow many types of human blood are there?\tGet Yr Blood Sucked Out\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Get Yr Blood Sucked Out, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Get%20Yr%20Blood%20Sucked%20Out) -> Get Yr Blood Sucked Out (8265ms)\nHow many types of human blood are there?\tRise: Blood Hunter\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Rise: Blood Hunter, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rise%3A%20Blood%20Hunter) -> Rise: Blood Hunter (8268ms)\nHow many types of human blood are there?\tbaptized in blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (baptized in blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Baptized%20in%20Blood) -> baptized in blood (8265ms)\nHow many types of human blood are there?\tblood in my eye\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood in my eye, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20in%20My%20Eye) -> blood in my eye (8269ms)\nHow many types of human blood are there?\tTrauma Center: New Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Trauma Center: New Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Trauma%20Center%3A%20New%20Blood) -> Trauma Center: New Blood (8268ms)\nHow many types of human blood are there?\tBlood Diner\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Diner, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Diner) -> Blood Diner (8265ms)\nHow many types of human blood are there?\tBlood Red Rivers\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Red Rivers, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Red%20Rivers) -> Blood Red Rivers (8268ms)\nHow many types of human blood are there?\tcaleb blood smith\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (caleb blood smith, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Caleb%20Blood%20Smith) -> caleb blood smith (8270ms)\nHow many types of human blood are there?\tSword Stained With Royal Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Sword Stained With Royal Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sword%20Stained%20with%20Royal%20Blood) -> Sword Stained With Royal Blood (8262ms)\nHow many types of human blood are there?\tBLL\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (BLL, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20lead%20level) -> BLL (8268ms)\nHow many types of human blood are there?\tBlood Inside\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Inside, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Inside) -> Blood Inside (8268ms)\nHow many types of human blood are there?\tIn Your Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (In Your Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/In%20Your%20Blood) -> In Your Blood (8268ms)\nHow many types of human blood are there?\tBlood oxygen level\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood oxygen level, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20oxygen%20level) -> Blood oxygen level (8267ms)\nHow many types of human blood are there?\tblood noir\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood noir, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Noir) -> blood noir (8262ms)\nHow many types of human blood are there?\tCorridors of Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Corridors of Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Corridors%20of%20Blood) -> Corridors of Blood (8262ms)\nHow many types of human blood are there?\tBlood Wake\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Wake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Wake) -> Blood Wake (8265ms)\nHow many types of human blood are there?\tBlood Fire Death\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Fire Death, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Fire%20Death) -> Blood Fire Death (8262ms)\nHow many types of human blood are there?\tAmerica?s Blood Centers\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (America?s Blood Centers, can be found on Wikipedia at, http://en.wikipedia.org/wiki/America's%20Blood%20Centers) -> America?s Blood Centers (8267ms)\nHow many types of human blood are there?\tBloodRayne: Betrayal\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (BloodRayne: Betrayal, can be found on Wikipedia at, http://en.wikipedia.org/wiki/BloodRayne%3A%20Betrayal) -> BloodRayne: Betrayal (8265ms)\nHow many types of human blood are there?\ttrinity Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (trinity Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Trinity%20Blood) -> trinity Blood (8262ms)\nHow many types of human blood are there?\tmelty blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (melty blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Melty%20Blood) -> melty blood (8267ms)\nHow many types of human blood are there?\ta dying empire\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (a dying empire, can be found on, the blood-soaked landscapes) -> a dying empire (8270ms)\nHow many types of human blood are there?\tNational Blood Service\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (National Blood Service, can be found on Wikipedia at, http://en.wikipedia.org/wiki/National%20Blood%20Service) -> National Blood Service (8265ms)\nHow many types of human blood are there?\tmarrow registry\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (marrow registry, can be found on, the BloodSource website) -> marrow registry (8265ms)\nHow many types of human blood are there?\tThe F.B.I\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (The F.B.I, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Full%20Blooded%20Italians) -> The F.B.I (8269ms)\nHow many types of human blood are there?\tBlood Secret\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Secret, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Secret) -> Blood Secret (8269ms)\nHow many types of human blood are there?\tblood canticle\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood canticle, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Canticle) -> blood canticle (8264ms)\nHow many types of human blood are there?\tBlood on the Sun\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood on the Sun, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20on%20the%20Sun) -> Blood on the Sun (8269ms)\nHow many types of human blood are there?\tBlood 2\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood 2, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20II%3A%20The%20Chosen) -> Blood 2 (8270ms)\nHow many types of human blood are there?\tAtoxoplasma\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Atoxoplasma, can be found on, blood smears) -> Atoxoplasma (8267ms)\nHow many types of human blood are there?\tblood promise\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood promise, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Promise%20(novel)) -> blood promise (8264ms)\nHow many types of human blood are there?\tD.K.\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, sing with, blood) -> (D.K., sing with, his band ?Blood Cake? ?) -> D.K. (8270ms)\nHow many types of human blood are there?\tThe Crown\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (The Crown, can be found on, his 2003 effort Blood) -> The Crown (8262ms)\nHow many types of human blood are there?\tFlesh 'n' Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Flesh 'n' Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Flesh%20'n'%20Blood%20(TV%20series)) -> Flesh 'n' Blood (8268ms)\nHow many types of human blood are there?\tWorld Painted Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (World Painted Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/World%20Painted%20Blood) -> World Painted Blood (8268ms)\nHow many types of human blood are there?\tThe Blood Divine\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (The Blood Divine, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Divine) -> The Blood Divine (8267ms)\nHow many types of human blood are there?\tarterial-blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (arterial-blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Arterial%20blood) -> arterial-blood (8265ms)\nHow many types of human blood are there?\tBounty Hunter Bloods\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Bounty Hunter Bloods, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bounty%20Hunter%20Bloods) -> Bounty Hunter Bloods (8269ms)\nHow many types of human blood are there?\tBlood cockle\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood cockle, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20cockle) -> Blood cockle (8265ms)\nHow many types of human blood are there?\tRed Blooded Woman\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Red Blooded Woman, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Red%20Blooded%20Woman) -> Red Blooded Woman (8270ms)\nHow many types of human blood are there?\tthe blood doctor\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (the blood doctor, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Doctor) -> the blood doctor (8270ms)\nHow many types of human blood are there?\tDrawing Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Drawing Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Drawing%20Blood) -> Drawing Blood (8269ms)\nHow many types of human blood are there?\tBlood Red Throne\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Red Throne, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Red%20Throne) -> Blood Red Throne (8270ms)\nHow many types of human blood are there?\tSurfer Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Surfer Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Surfer%20Blood) -> Surfer Blood (8264ms)\nHow many types of human blood are there?\tTunnels of Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Tunnels of Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Tunnels%20of%20Blood) -> Tunnels of Blood (8269ms)\nHow many types of human blood are there?\tBlood Has Been Shed\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Has Been Shed, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Has%20Been%20Shed) -> Blood Has Been Shed (8270ms)\nHow many types of human blood are there?\tReign In Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Reign In Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Reign%20in%20Blood) -> Reign In Blood (8269ms)\nHow many types of human blood are there?\tBlood on the Arrow\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood on the Arrow, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20on%20the%20Arrow) -> Blood on the Arrow (8268ms)\nHow many types of human blood are there?\tBlood In Blood Out\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood In Blood Out, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20In%20Blood%20Out) -> Blood In Blood Out (8264ms)\nHow many types of human blood are there?\tBlood On the Tracks\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood On the Tracks, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20on%20the%20Tracks) -> Blood On the Tracks (8264ms)\nHow many types of human blood are there?\tBlood-spotted abalone\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood-spotted abalone, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%2Dspotted%20abalone) -> Blood-spotted abalone (8264ms)\nHow many types of human blood are there?\tToo Much Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Too Much Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Too%20Much%20Blood) -> Too Much Blood (8262ms)\nHow many types of human blood are there?\twinter in the blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (winter in the blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Winter%20in%20the%20Blood) -> winter in the blood (8265ms)\nHow many types of human blood are there?\tLet The Blood Run Free\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Let The Blood Run Free, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Let%20The%20Blood%20Run%20Free) -> Let The Blood Run Free (8267ms)\nHow many types of human blood are there?\tBlood Upon The Risers\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Upon The Risers, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20on%20the%20Risers) -> Blood Upon The Risers (8269ms)\nHow many types of human blood are there?\twilli one blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (willi one blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Willi%20One%20Blood) -> willi one blood (8265ms)\nHow many types of human blood are there?\tRaining Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Raining Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Raining%20Blood) -> Raining Blood (8269ms)\nHow many types of human blood are there?\tAretas Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Aretas Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Aretas%20Blood) -> Aretas Blood (8268ms)\nHow many types of human blood are there?\tTekken Hybrid\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Tekken Hybrid, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Tekken%3A%20Blood%20Vengeance) -> Tekken Hybrid (8268ms)\nHow many types of human blood are there?\tRivers of Blood Speech\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Rivers of Blood Speech, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rivers%20of%20Blood%20speech) -> Rivers of Blood Speech (8264ms)\nHow many types of human blood are there?\tThomas Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Thomas Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Thomas%20Blood) -> Thomas Blood (8270ms)\nHow many types of human blood are there?\thalf the blood of brooklyn\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (half the blood of brooklyn, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Half%20the%20Blood%20of%20Brooklyn) -> half the blood of brooklyn (8267ms)\nHow many types of human blood are there?\tBlood Magick Necromance\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Magick Necromance, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Magick%20Necromance) -> Blood Magick Necromance (8268ms)\nHow many types of human blood are there?\tbattle of blood river\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (battle of blood river, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Battle%20of%20Blood%20River) -> battle of blood river (8270ms)\nHow many types of human blood are there?\tBlood of the Fold\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood of the Fold, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20of%20the%20Fold) -> Blood of the Fold (8262ms)\nHow many types of human blood are there?\tblood red\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood red, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Red) -> blood red (8264ms)\nHow many types of human blood are there?\tShellShock 2: Blood Trails\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (ShellShock 2: Blood Trails, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Shellshock%202%3A%20Blood%20Trails) -> ShellShock 2: Blood Trails (8265ms)\nHow many types of human blood are there?\tPersonal Darkness\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Personal Darkness, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Opera%20Sequence) -> Personal Darkness (8269ms)\nHow many types of human blood are there?\tIt's Okay\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (It's Okay, can be found on Wikipedia at, http://en.wikipedia.org/wiki/It's%20Okay%20(One%20Blood)) -> It's Okay (8264ms)\nHow many types of human blood are there?\tBlood Hunt\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Hunt, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Hunt) -> Blood Hunt (8264ms)\nHow many types of human blood are there?\tblood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood, can be found on, the National Blood Service website) -> blood (8264ms)\nHow many types of human blood are there?\tImpressions in Blood\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Impressions in Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Impressions%20in%20Blood) -> Impressions in Blood (8269ms)\nHow many types of human blood are there?\tFecal occult blood test\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Fecal occult blood test, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Fecal%20occult%20blood) -> Fecal occult blood test (8267ms)\nHow many types of human blood are there?\tBlood volume\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood volume, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20volume) -> Blood volume (8268ms)\nHow many types of human blood are there?\tThe Blood Arm\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (The Blood Arm, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Arm) -> The Blood Arm (8267ms)\nHow many types of human blood are there?\tNicotine\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Nicotine, can be found on, the umbilical cord blood) -> Nicotine (8267ms)\nHow many types of human blood are there?\tBlood's Bird of Paradise\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood's Bird of Paradise, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood's%20Bird%20of%20Paradise) -> Blood's Bird of Paradise (8265ms)\nHow many types of human blood are there?\tBlood of Elves\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood of Elves, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20of%20Elves) -> Blood of Elves (8264ms)\nHow many types of human blood are there?\tBlood Visions\t-0.888888888892\tHow many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Visions, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Visions) -> Blood Visions (8262ms)\nHow many types of human blood are there?\tLymphocytes\t-0.99999999999\tHow many types of human blood are there? -> $x: ($x, be specific type of, blood) -> (Lymphocytes, are a specific type of, white blood cell) -> Lymphocytes (8270ms)\nHow many types of human blood are there?\tT-cells\t-1.555555555553\tHow many types of human blood are there? -> $x: ($x, be one type of, blood) -> (T-cells, are one type of, white blood cell) -> T-cells (8271ms)\nHow many types of human blood are there?\tMacrophages\t-1.555555555553\tHow many types of human blood are there? -> $x: ($x, be one type of, blood) -> (Macrophages, are one type of, white blood cell) -> Macrophages (8271ms)\nWhat color are UPS trucks?\tCaptured\t0.333333333329\tWhat color are UPS trucks? -> $x: ($x, be color of, ups) -> (Captured, is all the color of, the build up , qualifying) -> Captured (1113ms)\nWhat color are UPS trucks?\tthe school\t0.333333333329\tWhat color are UPS trucks? -> $x: ($x, be color of, ups) -> (the school, is comprised of 23 % students of color, up from 12 %) -> the school (1113ms)\nWhat color are UPS trucks?\tbrown\t0.333333333329\tWhat color are UPS trucks? -> $x: ($x, be color of, ups) -> (brown, is the color of, UPS) -> brown (1113ms)\nWhat color are UPS trucks?\t21 year\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (21 year, were driving in, their pick up truck) -> 21 year (1516ms)\nWhat color are UPS trucks?\tmidnight and 3:00\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (midnight and 3:00, am in, a pick-up truck) -> midnight and 3:00 (1514ms)\nWhat color are UPS trucks?\tThe two\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The two, were driving along in, their humble pick-up truck) -> The two (1219ms)\nWhat color are UPS trucks?\tcounseling\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (counseling, is the ride in, the pick-up truck) -> counseling (1516ms)\nWhat color are UPS trucks?\tThe department\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, do, ups truck) -> (The department, does have, a back-up truck) -> The department (1516ms)\nWhat color are UPS trucks?\tn?t\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (n?t, is n?t delivered in, brown UPS trucks) -> n?t (1514ms)\nWhat color are UPS trucks?\tBlackburn\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Blackburn, was found dead in, a pick-up truck) -> Blackburn (1413ms)\nWhat color are UPS trucks?\tGarbage\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Garbage, must be brought in, pick-up trucks or cars) -> Garbage (1413ms)\nWhat color are UPS trucks?\tJones\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Jones, was the passenger in, the pick-up truck) -> Jones (1516ms)\nWhat color are UPS trucks?\tthe corpses\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the corpses, were taken away in, a pick-up truck) -> the corpses (1514ms)\nWhat color are UPS trucks?\tthe stripey shirt\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the stripey shirt, was in, the pick up truck) -> the stripey shirt (1113ms)\nWhat color are UPS trucks?\tguns\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (guns, were prominently displayed in, pick-up truck gun racks) -> guns (1220ms)\nWhat color are UPS trucks?\tElick\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Elick, is killed in, a pick-up truck) -> Elick (1518ms)\nWhat color are UPS trucks?\tThe pair\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The pair, was traveling in, a white 1995 pick-up truck) -> The pair (1516ms)\nWhat color are UPS trucks?\tThe crystal\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The crystal, is cold still from being in, the UPS truck) -> The crystal (1413ms)\nWhat color are UPS trucks?\teven vans , service\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (even vans , service, is provided in, pick-up trucks) -> even vans , service (1219ms)\nWhat color are UPS trucks?\tJuan Sin Miedo\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Juan Sin Miedo, was seen riding around in, pick-up trucks) -> Juan Sin Miedo (1518ms)\nWhat color are UPS trucks?\teach die\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, size be, ups truck) -> (each die, is roughly the size of, a one ton pick-up truck) -> each die (1516ms)\nWhat color are UPS trucks?\tthe tail\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the tail, was up in, the bed of a pick-up truck) -> the tail (1516ms)\nWhat color are UPS trucks?\tThe shotguns\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The shotguns, were discovered in, the pick up truck) -> The shotguns (1516ms)\nWhat color are UPS trucks?\tInspections\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, do, ups truck) -> (Inspections, can be done from, a pick-up truck) -> Inspections (1113ms)\nWhat color are UPS trucks?\tTwo men\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Two men, were killed in, a parked pick-up truck) -> Two men (1413ms)\nWhat color are UPS trucks?\tthe driver\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the driver, was trapped in, the pick up truck) -> the driver (1219ms)\nWhat color are UPS trucks?\tHamda\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Hamda, was travelling in, a pick-up truck) -> Hamda (1514ms)\nWhat color are UPS trucks?\tA 4-year-old boy\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (A 4-year-old boy, was in, a pick-up truck) -> A 4-year-old boy (1516ms)\nWhat color are UPS trucks?\tNot every client\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, do, ups truck) -> (Not every client, can make do with, an old pick-up truck) -> Not every client (1514ms)\nWhat color are UPS trucks?\tthe products\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the products, are picked up in, a pick-up truck) -> the products (1516ms)\nWhat color are UPS trucks?\tIce chunks\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, size be, ups truck) -> (Ice chunks, were the size of, pick-up trucks) -> Ice chunks (1413ms)\nWhat color are UPS trucks?\tCounterbalance P.S.\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, do, ups truck) -> (Counterbalance P.S., Always did enjoy, a pick-up truck) -> Counterbalance P.S. (1220ms)\nWhat color are UPS trucks?\tThe soldiers\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The soldiers, were in, a pick-up truck) -> The soldiers (1413ms)\nWhat color are UPS trucks?\tThe Federales\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The Federales, are patrolling in, pick-up trucks) -> The Federales (1514ms)\nWhat color are UPS trucks?\tMiddle Eastern John\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, do, ups truck) -> (Middle Eastern John, Does in, a brown pick-up truck) -> Middle Eastern John (1219ms)\nWhat color are UPS trucks?\tDan Larkin\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Dan Larkin, is sitting in, his middle-of-the-range pick-up truck) -> Dan Larkin (1113ms)\nWhat color are UPS trucks?\tthe victim\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the victim, was trapped in, a small pick-up truck) -> the victim (1113ms)\nWhat color are UPS trucks?\tAmerica\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, do, ups truck) -> (America, does make, some Japanese pick-up trucks) -> America (1516ms)\nWhat color are UPS trucks?\tmen\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (men, are indulging in, pick-up trucks and gaming) -> men (1518ms)\nWhat color are UPS trucks?\tAzza\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Azza, was stuck in, the pick up truck) -> Azza (1413ms)\nWhat color are UPS trucks?\tthe parking lot\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, do, ups truck) -> (the parking lot, did contain as, many beat-up pickup trucks) -> the parking lot (1514ms)\nWhat color are UPS trucks?\tThe coffin\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The coffin, was found in, an abandoned pick-up truck) -> The coffin (1514ms)\nWhat color are UPS trucks?\tPolice officers\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Police officers, are now riding high in, pick-up trucks) -> Police officers (1518ms)\nWhat color are UPS trucks?\tSuspect\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Suspect, was last seen in, a dark blue Ford pick-up truck) -> Suspect (1413ms)\nWhat color are UPS trucks?\tan Uchiha\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (an Uchiha, would n?t be caught fucking in, a pick-up truck) -> an Uchiha (1518ms)\nWhat color are UPS trucks?\ta man\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (a man, are driving in, their pick-up truck) -> a man (1514ms)\nWhat color are UPS trucks?\tthree\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (three, was in, the pick-up truck) -> three (1516ms)\nWhat color are UPS trucks?\tfriend Joe Salaz\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (friend Joe Salaz, were driving in, a pick-up truck) -> friend Joe Salaz (1516ms)\nWhat color are UPS trucks?\tthe criminal\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the criminal, is raping the girl in, his pick-up truck) -> the criminal (1516ms)\nWhat color are UPS trucks?\tLittlehales\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Littlehales, had been in, a white pick-up truck) -> Littlehales (1514ms)\nWhat color are UPS trucks?\tCargoCatch\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (CargoCatch, can be used in, any pick-up truck) -> CargoCatch (1514ms)\nWhat color are UPS trucks?\tA Snover man\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (A Snover man, was a passenger in, a 1995 Ford pick-up truck) -> A Snover man (1514ms)\nWhat color are UPS trucks?\ttrick-or-treating\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, do, ups truck) -> (trick-or-treating, is done by, pick-up truck) -> trick-or-treating (1514ms)\nWhat color are UPS trucks?\tseat belts\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (seat belts, be worn in, pick-up trucks) -> seat belts (1514ms)\nWhat color are UPS trucks?\tOsman\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Osman, was in, a pick up truck) -> Osman (1514ms)\nWhat color are UPS trucks?\tThe 20-year-old\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The 20-year-old, was a passenger in, a pick-up truck) -> The 20-year-old (1516ms)\nWhat color are UPS trucks?\t7-year-old daughter\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (7-year-old daughter, was a passenger in, the pick-up truck) -> 7-year-old daughter (1518ms)\nWhat color are UPS trucks?\tBrian\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Brian, was in, the pick-up truck) -> Brian (1516ms)\nWhat color are UPS trucks?\tMalia Staggs\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Malia Staggs, were sitting in, a pick-up truck) -> Malia Staggs (1219ms)\nWhat color are UPS trucks?\tJackson\t0.111111111111\tWhat color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Jackson, was off-duty in, his personal GMC pick-up truck) -> Jackson (1514ms)\nWhat color are UPS trucks?\tThe army\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (The army, is like, a 4X4 pick-up truck) -> The army (1519ms)\nWhat color are UPS trucks?\ta ute\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (a ute, is like, a pick-up truck) -> a ute (1518ms)\nWhat color are UPS trucks?\tThe CNG trucks\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (The CNG trucks, look just like, the signature-brown UPS trucks) -> The CNG trucks (1518ms)\nWhat color are UPS trucks?\tAnthony Hamilton\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (Anthony Hamilton, stands out like, a road tested pick-up truck) -> Anthony Hamilton (1519ms)\nWhat color are UPS trucks?\tyounger kids\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (younger kids, will like, the Marvel/monster truck link-up) -> younger kids (1518ms)\nWhat color are UPS trucks?\tJason Clarke\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (Jason Clarke, looks like, a pick-up truck) -> Jason Clarke (1518ms)\nWhat color are UPS trucks?\tthe market\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (the market, are one like, pick-up trucks) -> the market (1518ms)\nWhat color are UPS trucks?\ta medium\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, size, ups truck) -> (a medium, sized, pick-up truck) -> a medium (1518ms)\nWhat color are UPS trucks?\tThe interior\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (The interior, looks like, a basic GMC Seirra pick-up truck) -> The interior (1518ms)\nWhat color are UPS trucks?\tCommand Vehicle Lt . Fick\t-0.5555555555439999\tWhat color are UPS trucks? -> $x: ($x, like, ups truck) -> (Command Vehicle Lt . Fick, configured like, a pick-up truck) -> Command Vehicle Lt . Fick (1518ms)\nWhat color are UPS trucks?\tthe Police\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (the Police, do is come in after, the fact and document/mop-up) -> the Police (1522ms)\nWhat color are UPS trucks?\tJesus\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (Jesus, came after, John was delivered up) -> Jesus (1519ms)\nWhat color are UPS trucks?\tThe harnesses\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, color for, ups) -> (The harnesses, are all color coded for, easy hook-up) -> The harnesses (1521ms)\nWhat color are UPS trucks?\tthe device\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (the device, comes up after, power-up) -> the device (1522ms)\nWhat color are UPS trucks?\tThe decision\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The decision, came after, China stepped up a campaign) -> The decision (1519ms)\nWhat color are UPS trucks?\tthe SMRT depot\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (the SMRT depot, comes after so, many wake-up calls) -> the SMRT depot (1522ms)\nWhat color are UPS trucks?\tThe move\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The move, comes only a few days after, a similar tie-up) -> The move (1522ms)\nWhat color are UPS trucks?\tTransactions\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, color for, ups) -> (Transactions, are color-coded for, easy look-up) -> Transactions (1521ms)\nWhat color are UPS trucks?\tThe first big rapid\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The first big rapid, comes after, a few nice warm-up rapids) -> The first big rapid (1521ms)\nWhat color are UPS trucks?\tKuwait\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (Kuwait, came days after, a goof-up) -> Kuwait (1519ms)\nWhat color are UPS trucks?\tRead More\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (Read More, Comes After, ?Start-Up?) -> Read More (1519ms)\nWhat color are UPS trucks?\ta cream\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (a cream, comes after, the cover up) -> a cream (1519ms)\nWhat color are UPS trucks?\tthe hairstylist\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (the hairstylist, came in after, the make-up artists) -> the hairstylist (1521ms)\nWhat color are UPS trucks?\ta Win-Win feature\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (a Win-Win feature, will come after, you spin up your free games) -> a Win-Win feature (1519ms)\nWhat color are UPS trucks?\tNew Zealand\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (New Zealand, to come from behind after, Australia went 2-0 up) -> New Zealand (1519ms)\nWhat color are UPS trucks?\tThe revelation\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The revelation, comes just days after, a huge shake-up) -> The revelation (1521ms)\nWhat color are UPS trucks?\taid\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (aid, comes after, the initial clean-up) -> aid (1522ms)\nWhat color are UPS trucks?\t?The assistants\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (?The assistants, came in after, warm ups) -> ?The assistants (1519ms)\nWhat color are UPS trucks?\tBlack\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, color for, ups) -> (Black, is the appropriate color for, this particular write-up) -> Black (1521ms)\nWhat color are UPS trucks?\tThe shows\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The shows, come after, Disturbed wraps up) -> The shows (1519ms)\nWhat color are UPS trucks?\tthe band\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (the band, comes out after, the house lights have come up) -> the band (1519ms)\nWhat color are UPS trucks?\tThe Final Cut Pro v10.0.3 update\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The Final Cut Pro v10.0.3 update, came after, a flare-up) -> The Final Cut Pro v10.0.3 update (1521ms)\nWhat color are UPS trucks?\tThe real test\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The real test, will come after, spring break-up) -> The real test (1522ms)\nWhat color are UPS trucks?\tThe diagnosis\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The diagnosis, came after, a pre-conception check-up) -> The diagnosis (1521ms)\nWhat color are UPS trucks?\tThe purchase\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The purchase, comes just two years after, the start-up) -> The purchase (1521ms)\nWhat color are UPS trucks?\tThe three year extension\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The three year extension, comes after, an up) -> The three year extension (1522ms)\nWhat color are UPS trucks?\tThe big surprise\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The big surprise, came after, setting up the system) -> The big surprise (1520ms)\nWhat color are UPS trucks?\tPoles\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, color for, ups) -> (Poles, are color coded for, easy set-up) -> Poles (1521ms)\nWhat color are UPS trucks?\tThe protest\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The protest, came after, the setting-up) -> The protest (1521ms)\nWhat color are UPS trucks?\tthe game\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (the game, came after, a heads-up play) -> the game (1521ms)\nWhat color are UPS trucks?\tThe announcement\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The announcement, comes after, a radical shake-up) -> The announcement (1522ms)\nWhat color are UPS trucks?\tElias Howe\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (Elias Howe, came up after, waking up) -> Elias Howe (1522ms)\nWhat color are UPS trucks?\tThe process\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The process, comes after, a break up) -> The process (1519ms)\nWhat color are UPS trucks?\tthe responses\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (the responses, came after, we had written up our findings) -> the responses (1521ms)\nWhat color are UPS trucks?\tThe divorce petition\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (The divorce petition, came after, a long and emotional build-up) -> The divorce petition (1521ms)\nWhat color are UPS trucks?\tGyans 67th-minute equalizer\t-0.7777777777770001\tWhat color are UPS trucks? -> $x: ($x, come after, ups) -> (Gyans 67th-minute equalizer, came after, a mix-up) -> Gyans 67th-minute equalizer (1521ms)\nWhat color are UPS trucks?\tthe color\t-0.888888888886\tWhat color are UPS trucks? -> $x: ($x, color in, ups) -> (the color, choose a new color in, the pop-up menu) -> the color (1522ms)\nWhat color are UPS trucks?\tthe 7th century BC\t-0.8888888888869999\tWhat color are UPS trucks? -> $x: ($x, be history of, ups) -> (the 7th century BC, is an amazing history of, ups and downs) -> the 7th century BC (1522ms)\nWhat color are UPS trucks?\tBrazil\t-0.8888888888869999\tWhat color are UPS trucks? -> $x: ($x, be history of, ups) -> (Brazil, is a history of, the ups and downs) -> Brazil (1522ms)\nWhat color are UPS trucks?\tBC\t-0.8888888888869999\tWhat color are UPS trucks? -> $x: ($x, be history of, ups) -> (BC, is an amazing history of, ups and downs) -> BC (1522ms)\nWhat color are UPS trucks?\tThe reality\t-0.8888888888869999\tWhat color are UPS trucks? -> $x: ($x, be history of, ups) -> (The reality, is a history of, accidents and cover-ups) -> The reality (1522ms)\nWhat color are UPS trucks?\tA faster history\t-0.8888888888869999\tWhat color are UPS trucks? -> $x: ($x, be history of, ups) -> (A faster history, would be a history of, throw ups) -> A faster history (1522ms)\nWhat color are UPS trucks?\tthe castle\t-0.8888888888869999\tWhat color are UPS trucks? -> $x: ($x, be history of, ups) -> (the castle, is a history of, ups and downs) -> the castle (1522ms)\nWhat was the name of Ayn Rand's husband?\tPaul\t0.44444444443799996\tWhat was the name of Ayn Rand's husband? -> $x: ($x, marry, ayn rand) -> (Paul, is married to, Ayn Rand) -> Paul (523ms)\nWhat was the name of Ayn Rand's husband?\tHegel\t-0.555555555555\tWhat was the name of Ayn Rand's husband? -> $x: (ayn rand, marry, $x) -> (New Mexico Ayn Rand and Kant, get married with, Hegel) -> Hegel (523ms)\nWhat is Africa's largest country?\tthe South African Champions\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the South African Champions, represented, Africa) -> the South African Champions (4832ms)\nWhat is Africa's largest country?\t2009\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (2009, is double the average growth rate of, Africa) -> 2009 (4866ms)\nWhat is Africa's largest country?\tCape Town\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Cape Town, is the top-ranked university in, Africa) -> Cape Town (4902ms)\nWhat is Africa's largest country?\tany better nor\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (any better nor, fairly represent, Africa) -> any better nor (3562ms)\nWhat is Africa's largest country?\tBotswana\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Botswana, is rated, the least corrupt country in Africa) -> Botswana (4902ms)\nWhat is Africa's largest country?\tmalnutrition\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (malnutrition, nearly double the rate of, sub-Saharan Africa) -> malnutrition (4882ms)\nWhat is Africa's largest country?\tthe North section\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the North section, will represent, Africa) -> the North section (4841ms)\nWhat is Africa's largest country?\tMaples\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Maples, sailed again for, Africa) -> Maples (4866ms)\nWhat is Africa's largest country?\tTransparency International\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Transparency International, rated, South Africa) -> Transparency International (3902ms)\nWhat is Africa's largest country?\tthe Reliance\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Reliance, sailed for, South Africa) -> the Reliance (3562ms)\nWhat is Africa's largest country?\tFacebook\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Facebook, is the top-ranked site in, Africa) -> Facebook (4813ms)\nWhat is Africa's largest country?\tKardouche\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Kardouche, also rates, South Africa) -> Kardouche (4642ms)\nWhat is Africa's largest country?\tthe Turks\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rule on, africa) -> (the Turks, imposed their rule on, North Africa) -> the Turks (4823ms)\nWhat is Africa's largest country?\tHKI\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (HKI, worked closely with, South Africa) -> HKI (4832ms)\nWhat is Africa's largest country?\tThe game viewing\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (The game viewing, is rated the best in, Africa) -> The game viewing (4794ms)\nWhat is Africa's largest country?\ta charity\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (a charity, works with, poor families in Africa) -> a charity (4804ms)\nWhat is Africa's largest country?\t2 million people\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (2 million people, surrounded by, South Africa) -> 2 million people (4841ms)\nWhat is Africa's largest country?\tthe selection\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the selection, will represent, Africa) -> the selection (4858ms)\nWhat is Africa's largest country?\torganizations and individuals\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (organizations and individuals, working with, radio in Africa) -> organizations and individuals (4804ms)\nWhat is Africa's largest country?\tthe taboo\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the taboo, surrounds, the disease in Africa) -> the taboo (4841ms)\nWhat is Africa's largest country?\tOkonjo-Iweala\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Okonjo-Iweala, will represent, Africa) -> Okonjo-Iweala (4823ms)\nWhat is Africa's largest country?\tthe countries\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the countries, surrounding, South Africa) -> the countries (4875ms)\nWhat is Africa's largest country?\tThe Kingdom\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (The Kingdom, surrounded by, South Africa) -> The Kingdom (4895ms)\nWhat is Africa's largest country?\tMorocco\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Morocco, represented, Africa) -> Morocco (4849ms)\nWhat is Africa's largest country?\tThe Super Eagles\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Super Eagles, are currently ranked 9th in, Africa) -> The Super Eagles (4804ms)\nWhat is Africa's largest country?\tDr. Samuel\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Dr. Samuel, worked with, South Africa) -> Dr. Samuel (4774ms)\nWhat is Africa's largest country?\ta peace broker\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (a peace broker, say sources in, South Africa) -> a peace broker (4858ms)\nWhat is Africa's largest country?\tSenegal and Cameroon\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Senegal and Cameroon, will represent, Africa) -> Senegal and Cameroon (4718ms)\nWhat is Africa's largest country?\tthe different Ecosystems\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the different Ecosystems, represented across, Africa) -> the different Ecosystems (4882ms)\nWhat is Africa's largest country?\tFFV 100 %\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (FFV 100 %, sustainably sourced from, Africa) -> FFV 100 % (4866ms)\nWhat is Africa's largest country?\tLibya\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Libya, is ranked fourth in, Africa) -> Libya (4849ms)\nWhat is Africa's largest country?\tEric\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Eric, sailed for, South Africa) -> Eric (4882ms)\nWhat is Africa's largest country?\tgold\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (gold, sourced from, Africa) -> gold (4858ms)\nWhat is Africa's largest country?\tthe lion\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the lion, represents, Africa) -> the lion (4375ms)\nWhat is Africa's largest country?\ta land-locked country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a land-locked country, surrounded by, South Africa) -> a land-locked country (3562ms)\nWhat is Africa's largest country?\tEngland\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (England, are the current top-ranked team ahead of, South Africa) -> England (4858ms)\nWhat is Africa's largest country?\ta team\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (a team, representing, South Africa) -> a team (4375ms)\nWhat is Africa's largest country?\tThe countries\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (The countries, likely represent, Africa) -> The countries (4858ms)\nWhat is Africa's largest country?\tenergy imports\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (energy imports, sourced from, West Asia and Africa) -> energy imports (3459ms)\nWhat is Africa's largest country?\tJohannesburg\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Johannesburg, is the source of, South Africa) -> Johannesburg (4875ms)\nWhat is Africa's largest country?\tThe lion\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (The lion, represents, Africa) -> The lion (4718ms)\nWhat is Africa's largest country?\tBurkina Faso\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Burkina Faso, are currently the fourth-ranked team in, Africa) -> Burkina Faso (4823ms)\nWhat is Africa's largest country?\tDerek\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Derek, sailed for, Africa) -> Derek (4857ms)\nWhat is Africa's largest country?\tan independent nation\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (an independent nation, surrounded by, South Africa) -> an independent nation (4784ms)\nWhat is Africa's largest country?\tThe course\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (The course, is rated, one of the top 5 in South Africa) -> The course (4643ms)\nWhat is Africa's largest country?\tMs. Sabiiti\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Ms. Sabiiti, has worked with, the All Africa Conference) -> Ms. Sabiiti (4889ms)\nWhat is Africa's largest country?\tA Progressio expert\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (A Progressio expert, works with, Environment Africa) -> A Progressio expert (4794ms)\nWhat is Africa's largest country?\tCineCentre\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (CineCentre, is rated amongst, South Africa) -> CineCentre (3333ms)\nWhat is Africa's largest country?\tEdinburgh Slessor\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Edinburgh Slessor, set sail for, Africa) -> Edinburgh Slessor (4889ms)\nWhat is Africa's largest country?\tvery little advice or expertise\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (very little advice or expertise, to be sourced in, South Africa) -> very little advice or expertise (4823ms)\nWhat is Africa's largest country?\tThe Pacific\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Pacific, has been ranked alongside, sub-Saharan Africa) -> The Pacific (4902ms)\nWhat is Africa's largest country?\tPurpose\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Purpose, works with in, Africa) -> Purpose (4784ms)\nWhat is Africa's largest country?\tSCI-EA?s travel\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (SCI-EA?s travel, worked with, Africa Heart) -> SCI-EA?s travel (4774ms)\nWhat is Africa's largest country?\tPrepaid Calling Cards\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, use to be call, africa) -> (Prepaid Calling Cards, can be used to call, SOUTH AFRICA) -> Prepaid Calling Cards (3517ms)\nWhat is Africa's largest country?\tIsrael\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Israel, worked with, South Africa) -> Israel (4832ms)\nWhat is Africa's largest country?\tTrade and Industry\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Trade and Industry, has rated, South Africa) -> Trade and Industry (4858ms)\nWhat is Africa's largest country?\tfive two-legged play-offs\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (five two-legged play-offs, represents, Africa) -> five two-legged play-offs (4718ms)\nWhat is Africa's largest country?\ta small mountainous country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a small mountainous country, surrounded by, South Africa) -> a small mountainous country (4902ms)\nWhat is Africa's largest country?\timpunity\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (impunity, surrounding, rape in South Africa) -> impunity (4751ms)\nWhat is Africa's largest country?\tRice\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Rice, is the most rapidly growing food source in, Africa) -> Rice (4774ms)\nWhat is Africa's largest country?\tTunisia\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Tunisia, will represent, Africa) -> Tunisia (4858ms)\nWhat is Africa's largest country?\tMSU faculty\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (MSU faculty, will work with, OER Africa) -> MSU faculty (4762ms)\nWhat is Africa's largest country?\tgloomy Chicago\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (gloomy Chicago, has a higher rate than, sunny South Africa) -> gloomy Chicago (4375ms)\nWhat is Africa's largest country?\tThe UN/IMF\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (The UN/IMF, had surrounded, South Africa) -> The UN/IMF (4762ms)\nWhat is Africa's largest country?\tthe finest quality diamonds\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the finest quality diamonds, were sourced from, South Africa) -> the finest quality diamonds (4813ms)\nWhat is Africa's largest country?\t23 St John Ambulance Brigade members\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (23 St John Ambulance Brigade members, sailed for, South Africa) -> 23 St John Ambulance Brigade members (4741ms)\nWhat is Africa's largest country?\ta landlocked country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a landlocked country, surrounded to the south by, South Africa) -> a landlocked country (4882ms)\nWhat is Africa's largest country?\tHMS Hermes\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (HMS Hermes, sailed for, West Africa) -> HMS Hermes (4730ms)\nWhat is Africa's largest country?\tHoward University\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Howard University, has been working with, South Africa) -> Howard University (3333ms)\nWhat is Africa's largest country?\tPeter\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Peter, was working with, OneWorld Africa) -> Peter (3901ms)\nWhat is Africa's largest country?\tLesotho\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (Lesotho, is surrounded by, South Africa) -> Lesotho (4902ms)\nWhat is Africa's largest country?\t1997-2001 Mr. Cleave\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (1997-2001 Mr. Cleave, worked with, Bata South Africa) -> 1997-2001 Mr. Cleave (4762ms)\nWhat is Africa's largest country?\tIndia?s crude oil imports\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (India?s crude oil imports, are sourced from, Africa) -> India?s crude oil imports (3333ms)\nWhat is Africa's largest country?\tCRB\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (CRB, is now working with, South Africa) -> CRB (3901ms)\nWhat is Africa's largest country?\tthe United States\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (the United States, had rates akin to, Africa ?s) -> the United States (4849ms)\nWhat is Africa's largest country?\ta freighter\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (a freighter, sailed for, Africa) -> a freighter (4866ms)\nWhat is Africa's largest country?\tthe end\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (the end, would be able to work with, the WFP West Africa) -> the end (4832ms)\nWhat is Africa's largest country?\t4 other growers associations\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (4 other growers associations, are working with, PAN Africa) -> 4 other growers associations (4882ms)\nWhat is Africa's largest country?\t2007 Many exotic essential oils\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (2007 Many exotic essential oils, are sourced from, Africa) -> 2007 Many exotic essential oils (4875ms)\nWhat is Africa's largest country?\tMiss Malulu\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Miss Malulu, represented, Africa) -> Miss Malulu (4882ms)\nWhat is Africa's largest country?\tSeychelles\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Seychelles, is ranked 8th in, Africa) -> Seychelles (4762ms)\nWhat is Africa's largest country?\tthe team\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the team, to represent, Africa) -> the team (4751ms)\nWhat is Africa's largest country?\tthe Second World War\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the Second World War, was sourced from, Africa) -> the Second World War (4841ms)\nWhat is Africa's largest country?\tBeyond\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, use to be call, africa) -> (Beyond, used to be called, CC Africa) -> Beyond (4875ms)\nWhat is Africa's largest country?\tBorlaug\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Borlaug, began working with, the Sasakawa Africa Association) -> Borlaug (4533ms)\nWhat is Africa's largest country?\tBombay\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Bombay, sailed for, East Africa) -> Bombay (4762ms)\nWhat is Africa's largest country?\tCaptain Nathaniel Gordon\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Captain Nathaniel Gordon, set sail for, Africa) -> Captain Nathaniel Gordon (4774ms)\nWhat is Africa's largest country?\tThe rhetoric\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (The rhetoric, surrounding, Africa) -> The rhetoric (4896ms)\nWhat is Africa's largest country?\tProgressio\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Progressio, works with, Environment Africa) -> Progressio (4882ms)\nWhat is Africa's largest country?\tInnovative Finance\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Innovative Finance, works with, Africa ?s financial institutions) -> Innovative Finance (4794ms)\nWhat is Africa's largest country?\tthe Elswick Battery\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Elswick Battery, sailed for, South Africa) -> the Elswick Battery (4774ms)\nWhat is Africa's largest country?\tthe metropolis\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the metropolis, set sail for, North Africa) -> the metropolis (4730ms)\nWhat is Africa's largest country?\tUganda?s Luke Orombi\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Uganda?s Luke Orombi, will represent, Africa) -> Uganda?s Luke Orombi (4875ms)\nWhat is Africa's largest country?\ta UK-based registered charity\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (a UK-based registered charity, works with, communities in Africa) -> a UK-based registered charity (3901ms)\nWhat is Africa's largest country?\tmajor events\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (major events, also represent, Africa) -> major events (4813ms)\nWhat is Africa's largest country?\tillegal rhino horn\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (illegal rhino horn, sourced from, Southern Africa) -> illegal rhino horn (3333ms)\nWhat is Africa's largest country?\tUoN\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (UoN, is ranked 2nd in, East Africa) -> UoN (3517ms)\nWhat is Africa's largest country?\tBahrain\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Bahrain, is top ranked in, North Africa) -> Bahrain (4751ms)\nWhat is Africa's largest country?\tWednesday\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Wednesday, downgraded the long-term rating of, South Africa) -> Wednesday (4784ms)\nWhat is Africa's largest country?\tScipio\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Scipio, set sail for, Africa) -> Scipio (4896ms)\nWhat is Africa's largest country?\tLesotho today\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Lesotho today, has the highest literacy rate in, Africa) -> Lesotho today (3459ms)\nWhat is Africa's largest country?\ta tiny mountainous kingdom\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a tiny mountainous kingdom, surrounded by, South Africa) -> a tiny mountainous kingdom (4813ms)\nWhat is Africa's largest country?\tHorst K?hler\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Horst K?hler, see cultural work with, Africa) -> Horst K?hler (4823ms)\nWhat is Africa's largest country?\ta tiny Mountain kingdom\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a tiny Mountain kingdom, surrounded by, South Africa) -> a tiny Mountain kingdom (4730ms)\nWhat is Africa's largest country?\t8000 horses\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (8000 horses, had sailed for, Africa) -> 8000 horses (3562ms)\nWhat is Africa's largest country?\tthe new system\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (the new system, worked with, South Africa) -> the new system (4832ms)\nWhat is Africa's largest country?\tthe black stripe\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the black stripe, represents, Africa) -> the black stripe (4882ms)\nWhat is Africa's largest country?\tthe future biofuel feedstocks\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the future biofuel feedstocks, may well be sourced from, Africa) -> the future biofuel feedstocks (4774ms)\nWhat is Africa's largest country?\tMinister Trevor Manuel\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Minister Trevor Manuel, is representing, Africa) -> Minister Trevor Manuel (4679ms)\nWhat is Africa's largest country?\tHPIC\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (HPIC, has been working with, HEAL Africa) -> HPIC (3334ms)\nWhat is Africa's largest country?\t2006\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (2006, was ranked, Africa) -> 2006 (4679ms)\nWhat is Africa's largest country?\ta new Roman army\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (a new Roman army, sailed for, Africa) -> a new Roman army (4784ms)\nWhat is Africa's largest country?\tJosephine Baker\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Josephine Baker, represents, Africa) -> Josephine Baker (4741ms)\nWhat is Africa's largest country?\tCliff Maunze\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Cliff Maunze, works with, Environment Africa) -> Cliff Maunze (4679ms)\nWhat is Africa's largest country?\ta project\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (a project, are sourced from, South Africa) -> a project (3487ms)\nWhat is Africa's largest country?\tmountainous country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (mountainous country, surrounded by, South Africa) -> mountainous country (4823ms)\nWhat is Africa's largest country?\tthe typical image\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the typical image, represented of, Africa) -> the typical image (4784ms)\nWhat is Africa's largest country?\tPrime Minister Meles\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Prime Minister Meles, is representing, Africa) -> Prime Minister Meles (3517ms)\nWhat is Africa's largest country?\tforty thousand men\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (forty thousand men, sailed for, Africa) -> forty thousand men (4858ms)\nWhat is Africa's largest country?\tBusiness\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Business, rated top in, Africa) -> Business (4784ms)\nWhat is Africa's largest country?\tEgypt and Kenya\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Egypt and Kenya, represented, Africa) -> Egypt and Kenya (4849ms)\nWhat is Africa's largest country?\tVegetables\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Vegetables, sourced from, Africa travel) -> Vegetables (4902ms)\nWhat is Africa's largest country?\tPemba/Ibo Ibo Island\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Pemba/Ibo Ibo Island, has special rates for, South Africa) -> Pemba/Ibo Ibo Island (4850ms)\nWhat is Africa's largest country?\tThe three other girls\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (The three other girls, represented, Africa) -> The three other girls (4902ms)\nWhat is Africa's largest country?\ta small country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a small country, entirely surrounded by, South Africa) -> a small country (4875ms)\nWhat is Africa's largest country?\tArabs\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Arabs, found new sources in, east Africa) -> Arabs (4866ms)\nWhat is Africa's largest country?\tThe successful candidate\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (The successful candidate, will work with, the WCS Africa) -> The successful candidate (4841ms)\nWhat is Africa's largest country?\tSmuts\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Smuts, represented, South Africa) -> Smuts (3517ms)\nWhat is Africa's largest country?\tNews\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (News, sourced from, South Africa) -> News (4896ms)\nWhat is Africa's largest country?\tIBM\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (IBM, is also working with, Africa) -> IBM (4902ms)\nWhat is Africa's largest country?\tThe reserve\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (The reserve, is rated as, Africa) -> The reserve (4730ms)\nWhat is Africa's largest country?\tridges\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (ridges, surrounding, Africa and Antarctica) -> ridges (4718ms)\nWhat is Africa's largest country?\tthe easiest and fastest place\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the easiest and fastest place, to source in, South Africa) -> the easiest and fastest place (4814ms)\nWhat is Africa's largest country?\tWittstock\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Wittstock, represented, South Africa) -> Wittstock (4823ms)\nWhat is Africa's largest country?\tThe five interlocking rings\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (The five interlocking rings, represent, Africa) -> The five interlocking rings (4841ms)\nWhat is Africa's largest country?\tthe oceans\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the oceans, surrounding, Africa) -> the oceans (4804ms)\nWhat is Africa's largest country?\tMembers\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Members, represent, Africa) -> Members (4889ms)\nWhat is Africa's largest country?\tAshlea Surles\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Ashlea Surles, worked with, Operation Crossroads Africa) -> Ashlea Surles (3901ms)\nWhat is Africa's largest country?\tMercy Ships Southern Africa\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Mercy Ships Southern Africa, is working with, South Africa) -> Mercy Ships Southern Africa (4889ms)\nWhat is Africa's largest country?\t1963\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (1963, is rated as, Africa) -> 1963 (4804ms)\nWhat is Africa's largest country?\tNamibia\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Namibia, was again rated the best in, Africa) -> Namibia (4882ms)\nWhat is Africa's largest country?\t1400 officers and sailors\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (1400 officers and sailors, sailed for, East Africa) -> 1400 officers and sailors (4762ms)\nWhat is Africa's largest country?\tAlex\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Alex, represented, South Africa) -> Alex (4730ms)\nWhat is Africa's largest country?\tSub-Saharan\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, use to be call, africa) -> (Sub-Saharan, used to be called, black Africa) -> Sub-Saharan (4902ms)\nWhat is Africa's largest country?\tthe teams\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the teams, representing, Africa) -> the teams (4903ms)\nWhat is Africa's largest country?\tan enclave\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (an enclave, entirely surrounded by, South Africa) -> an enclave (4643ms)\nWhat is Africa's largest country?\ta mountainous kingdom\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a mountainous kingdom, surrounded by, South Africa) -> a mountainous kingdom (4882ms)\nWhat is Africa's largest country?\tthe shirts\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the shirts, are sourced locally from, Africa) -> the shirts (4889ms)\nWhat is Africa's largest country?\tGhana\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Ghana, has been ranked first in, Africa) -> Ghana (4902ms)\nWhat is Africa's largest country?\tThe works\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (The works, have been sourced from, South Africa) -> The works (4375ms)\nWhat is Africa's largest country?\ta cut\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (a cut, set sail for, Africa) -> a cut (4866ms)\nWhat is Africa's largest country?\tSudan\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Sudan, to represent, Africa) -> Sudan (4832ms)\nWhat is Africa's largest country?\tAirbus\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Airbus, has been working with, South Africa) -> Airbus (4463ms)\nWhat is Africa's largest country?\tThe colour\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (The colour, represents, the Africa) -> The colour (4850ms)\nWhat is Africa's largest country?\tLyn\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Lyn, are working with, the Tunbridge Wells charity Build Africa) -> Lyn (4896ms)\nWhat is Africa's largest country?\tbidorbuy.co.za\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (bidorbuy.co.za, is currently ranked among, South Africa) -> bidorbuy.co.za (4784ms)\nWhat is Africa's largest country?\tCareerJunction\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (CareerJunction, is ranked, South Africa) -> CareerJunction (4804ms)\nWhat is Africa's largest country?\tIUCN\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (IUCN, has been working with, partners PhytoTrade Africa) -> IUCN (4533ms)\nWhat is Africa's largest country?\tthe wooden frames\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the wooden frames, are sourced in, Africa) -> the wooden frames (4902ms)\nWhat is Africa's largest country?\tMeles\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Meles, represents, Africa) -> Meles (4679ms)\nWhat is Africa's largest country?\tThe United States\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (The United States, is also committed to working with, Africa) -> The United States (4813ms)\nWhat is Africa's largest country?\tChurchward\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Churchward, then sailed for, South Africa) -> Churchward (4642ms)\nWhat is Africa's largest country?\tDenis Jones\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Denis Jones, was sailing for, South Africa) -> Denis Jones (4718ms)\nWhat is Africa's largest country?\textensive background\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (extensive background, now works with, TransAfrica Forum) -> extensive background (4889ms)\nWhat is Africa's largest country?\tthe small landlocked country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the small landlocked country, surrounded by, South Africa) -> the small landlocked country (4718ms)\nWhat is Africa's largest country?\tsoaps\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (soaps, are sourced from, Africa) -> soaps (4858ms)\nWhat is Africa's largest country?\tAfrodolla\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Afrodolla, represents, Africa) -> Afrodolla (4896ms)\nWhat is Africa's largest country?\tthe new undersea cables\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the new undersea cables, surrounding, Africa) -> the new undersea cables (4866ms)\nWhat is Africa's largest country?\tan Lieutenant\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (an Lieutenant, sailed for, South Africa) -> an Lieutenant (4784ms)\nWhat is Africa's largest country?\tschool\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (school, hope to work with, World Vision Africa one day) -> school (4858ms)\nWhat is Africa's largest country?\tBurton\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Burton, was the ranking Republican on, the Africa subcommittee) -> Burton (4679ms)\nWhat is Africa's largest country?\tDavid Livingstone\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (David Livingstone, set sail for, southern Africa) -> David Livingstone (4896ms)\nWhat is Africa's largest country?\tChina\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (China, will work together with, Africa) -> China (4762ms)\nWhat is Africa's largest country?\tRwanda\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Rwanda, has been ranked fourth in, Africa) -> Rwanda (4813ms)\nWhat is Africa's largest country?\tMeles Zenawi\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Meles Zenawi, representing, Africa) -> Meles Zenawi (4740ms)\nWhat is Africa's largest country?\tthe youngest king\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the youngest king, represents, Africa) -> the youngest king (4533ms)\nWhat is Africa's largest country?\tSwaziland\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (Swaziland, is surrounded by, South Africa) -> Swaziland (4841ms)\nWhat is Africa's largest country?\tMalawi\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Malawi, is working with, Africa Bags) -> Malawi (4794ms)\nWhat is Africa's largest country?\tLibyans\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Libyans, have the highest literacy rate in, Africa) -> Libyans (4774ms)\nWhat is Africa's largest country?\tthe former competitive swimmer\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the former competitive swimmer, represented, South Africa) -> the former competitive swimmer (3517ms)\nWhat is Africa's largest country?\tAfrica as well as\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Africa as well as, represent, Africa) -> Africa as well as (4784ms)\nWhat is Africa's largest country?\ta small landlocked country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a small landlocked country, surrounded by, South Africa) -> a small landlocked country (4823ms)\nWhat is Africa's largest country?\tDan Crawford\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Dan Crawford, sailed for, Africa) -> Dan Crawford (3901ms)\nWhat is Africa's largest country?\tThe NMMU Business School\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (The NMMU Business School, was rated second in, South Africa) -> The NMMU Business School (4841ms)\nWhat is Africa's largest country?\tAlgeria\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Algeria, is ranked third worst in, Africa) -> Algeria (4896ms)\nWhat is Africa's largest country?\tGuinea\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Guinea, was ranked, Africa) -> Guinea (4718ms)\nWhat is Africa's largest country?\tpart\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, use to be call, africa) -> (part, used to be called, Africa) -> part (4866ms)\nWhat is Africa's largest country?\tAmerica\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (America, has good reason to work with, Africa) -> America (3488ms)\nWhat is Africa's largest country?\tAustralia\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Australia, looks forward to working closely with, South Africa) -> Australia (4832ms)\nWhat is Africa's largest country?\tGM-free maize\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (GM-free maize, could even be sourced in, South Africa) -> GM-free maize (4804ms)\nWhat is Africa's largest country?\tThe best drums\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (The best drums, sourced from, West Africa) -> The best drums (4730ms)\nWhat is Africa's largest country?\tthe Moffats\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Moffats, sailed again for, South Africa) -> the Moffats (4762ms)\nWhat is Africa's largest country?\tmaterials\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (materials, are sourced from, Africa) -> materials (4832ms)\nWhat is Africa's largest country?\tEsperance\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Esperance, will represent, Africa) -> Esperance (4841ms)\nWhat is Africa's largest country?\tthe same way South Africa\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the same way South Africa, represented, Africa) -> the same way South Africa (4642ms)\nWhat is Africa's largest country?\tAWAKE\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (AWAKE, worked with, WSPA Africa) -> AWAKE (4730ms)\nWhat is Africa's largest country?\tthe Kingdom\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the Kingdom, is completely surrounded by, South Africa) -> the Kingdom (4741ms)\nWhat is Africa's largest country?\tHanneke Cost Budde\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Hanneke Cost Budde, has worked with, the Africa Inland Church) -> Hanneke Cost Budde (4784ms)\nWhat is Africa's largest country?\tIGD\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (IGD, is working with, TransFarm Africa) -> IGD (4679ms)\nWhat is Africa's largest country?\tlocal schools\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (local schools, work with, Media Monitoring Africa) -> local schools (4896ms)\nWhat is Africa's largest country?\tthe Vandals\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Vandals, to sail for, North Africa) -> the Vandals (4875ms)\nWhat is Africa's largest country?\t533 Balisarius\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (533 Balisarius, sailed for, Africa b) -> 533 Balisarius (4841ms)\nWhat is Africa's largest country?\tMuhammad Yunus\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Muhammad Yunus, pledged to work together with, Africa) -> Muhammad Yunus (4774ms)\nWhat is Africa's largest country?\tThe Bank\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Bank, is ranked 14th in, Africa) -> The Bank (4882ms)\nWhat is Africa's largest country?\talso many different religions\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (also many different religions, represented in, Africa) -> also many different religions (4784ms)\nWhat is Africa's largest country?\tThe East Africa ?s largest economy\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (The East Africa ?s largest economy, is now ranked among, Africa) -> The East Africa ?s largest economy (4794ms)\nWhat is Africa's largest country?\tSimons\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Simons, represented, South Africa) -> Simons (3334ms)\nWhat is Africa's largest country?\tAgriculture\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Agriculture, represents, Africa) -> Agriculture (4832ms)\nWhat is Africa's largest country?\tFifa and Match Hospitality\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Fifa and Match Hospitality, were working with, South Africa) -> Fifa and Match Hospitality (4642ms)\nWhat is Africa's largest country?\tLivingstone\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Livingstone, sailed for, Africa) -> Livingstone (4642ms)\nWhat is Africa's largest country?\tIvory Coast\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Ivory Coast, is the top-ranked team in, Africa) -> Ivory Coast (4866ms)\nWhat is Africa's largest country?\t100 % pure cotton\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (100 % pure cotton, is sourced from, South Africa) -> 100 % pure cotton (4794ms)\nWhat is Africa's largest country?\tNLNG\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (NLNG, is representing, Africa) -> NLNG (4889ms)\nWhat is Africa's largest country?\tthe Diaspora\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (the Diaspora, influence the rate of, Africa) -> the Diaspora (4889ms)\nWhat is Africa's largest country?\tthird place Nigeria\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (third place Nigeria, will represent, Africa) -> third place Nigeria (4462ms)\nWhat is Africa's largest country?\tComputer Science\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Computer Science, rated top in, Middle-East and Africa) -> Computer Science (4730ms)\nWhat is Africa's largest country?\tAfrica Pads\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Africa Pads, is working with, Africa Bags) -> Africa Pads (4462ms)\nWhat is Africa's largest country?\tthe UK,\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the UK,, sourced from, South Africa) -> the UK, (4896ms)\nWhat is Africa's largest country?\ta tree\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (a tree, represents, Africa) -> a tree (3517ms)\nWhat is Africa's largest country?\tTurner\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Turner, represented, South Africa) -> Turner (4850ms)\nWhat is Africa's largest country?\tthe nuclear nation\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (the nuclear nation, worked with, South Africa) -> the nuclear nation (4889ms)\nWhat is Africa's largest country?\tGL\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (GL, has worked with in, South Africa) -> GL (4774ms)\nWhat is Africa's largest country?\tKofi Annan\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Kofi Annan, represents, Africa) -> Kofi Annan (4794ms)\nWhat is Africa's largest country?\tseven thousand ventures\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (seven thousand ventures, sailed for, Africa) -> seven thousand ventures (4875ms)\nWhat is Africa's largest country?\tShubrick\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Shubrick, sailed for, North Africa) -> Shubrick (4866ms)\nWhat is Africa's largest country?\tKenya\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Kenya, represents, Africa) -> Kenya (4794ms)\nWhat is Africa's largest country?\tthe CAF region\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the CAF region, will represent, Africa) -> the CAF region (4850ms)\nWhat is Africa's largest country?\tTitilayo Akinsanmi\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Titilayo Akinsanmi, currently works with, SchoolNet Africa) -> Titilayo Akinsanmi (3459ms)\nWhat is Africa's largest country?\ta separate country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a separate country, surrounded by, South Africa) -> a separate country (4823ms)\nWhat is Africa's largest country?\ttrade\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (trade, is the source of, Africa) -> trade (4841ms)\nWhat is Africa's largest country?\t?This pavilion\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (?This pavilion, represents, Africa) -> ?This pavilion (4762ms)\nWhat is Africa's largest country?\tmedicine\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (medicine, sailed for, southern Africa) -> medicine (4841ms)\nWhat is Africa's largest country?\tthe G8\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (the G8, worked with, Africa) -> the G8 (4882ms)\nWhat is Africa's largest country?\tThe farmers\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (The farmers, worked with, FARM-Africa) -> The farmers (4375ms)\nWhat is Africa's largest country?\tSierra Leone\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Sierra Leone, are representing, Africa) -> Sierra Leone (4875ms)\nWhat is Africa's largest country?\tGCB\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (GCB, was once rated 10th in, Africa) -> GCB (4794ms)\nWhat is Africa's largest country?\ta country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a country, surrounded by, South Africa and Mozambique) -> a country (4866ms)\nWhat is Africa's largest country?\tTogo and Angola\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Togo and Angola, represented, Africa) -> Togo and Angola (4882ms)\nWhat is Africa's largest country?\ta willing tool\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (a willing tool, worked with, apartheid South Africa) -> a willing tool (4832ms)\nWhat is Africa's largest country?\tSATH\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (SATH, will work with, PhytoTrade Africa) -> SATH (4875ms)\nWhat is Africa's largest country?\tEthiopian Prime Minister Meles Zenawi\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Ethiopian Prime Minister Meles Zenawi, will represent, Africa) -> Ethiopian Prime Minister Meles Zenawi (4718ms)\nWhat is Africa's largest country?\tMr. Pharasi\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Mr. Pharasi, previously worked with, Viral Genetics South Africa) -> Mr. Pharasi (4866ms)\nWhat is Africa's largest country?\tthe deer family\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the deer family, is represented in, Africa) -> the deer family (4751ms)\nWhat is Africa's largest country?\tFebruary JWW\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (February JWW, worked with, Moriah Africa) -> February JWW (4740ms)\nWhat is Africa's largest country?\tThe Game Reserve\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (The Game Reserve, is rated as, South Africa) -> The Game Reserve (4718ms)\nWhat is Africa's largest country?\tIbrahima\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Ibrahima, sailed for, Africa) -> Ibrahima (4814ms)\nWhat is Africa's largest country?\tthe fairly traded items\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the fairly traded items, are sourced from, Africa) -> the fairly traded items (4832ms)\nWhat is Africa's largest country?\tThe Kenyan womens national team\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (The Kenyan womens national team, will represent, Africa) -> The Kenyan womens national team (3901ms)\nWhat is Africa's largest country?\tthe five countries\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the five countries, representing, Africa) -> the five countries (4849ms)\nWhat is Africa's largest country?\tMiss Togo\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Miss Togo, has also worked with, the Miss South Africa team) -> Miss Togo (3458ms)\nWhat is Africa's largest country?\tchair\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (chair, represents, Africa) -> chair (4463ms)\nWhat is Africa's largest country?\tWood\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Wood, is the main energy source in, rural Africa) -> Wood (4823ms)\nWhat is Africa's largest country?\tguests\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (guests, surrounded by, the rich textures of Africa) -> guests (4533ms)\nWhat is Africa's largest country?\tEritrea\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Eritrea, has been ranked as, Africa) -> Eritrea (4902ms)\nWhat is Africa's largest country?\tthe Nile\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the Nile, are sourced from, central Africa) -> the Nile (4841ms)\nWhat is Africa's largest country?\tthe UK\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (the UK, would continue to work with, South Africa) -> the UK (4902ms)\nWhat is Africa's largest country?\tthe size\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the size, is surrounded by, South Africa) -> the size (4858ms)\nWhat is Africa's largest country?\tMoremi\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Moremi, is rated as, Africa) -> Moremi (3488ms)\nWhat is Africa's largest country?\tCameroon\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Cameroon, already had the highest tax rates in, Central Africa) -> Cameroon (4741ms)\nWhat is Africa's largest country?\thaste\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (haste, then set sail for, Africa) -> haste (4762ms)\nWhat is Africa's largest country?\tthe Battalion\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Battalion, sailed for, East Africa) -> the Battalion (4896ms)\nWhat is Africa's largest country?\tthe armies\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the armies, were to sail for, africa) -> the armies (4823ms)\nWhat is Africa's largest country?\ta man\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (a man, worked closely with, Apartheid South Africa) -> a man (4751ms)\nWhat is Africa's largest country?\tships\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (ships, set sail for, Africa) -> ships (4774ms)\nWhat is Africa's largest country?\tZimbabwe\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (Zimbabwe, has the highest literacy rate in, Africa) -> Zimbabwe (3487ms)\nWhat is Africa's largest country?\tachievers and trend setters\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (achievers and trend setters, positively represent, Africa) -> achievers and trend setters (4751ms)\nWhat is Africa's largest country?\tThe 2nd battalion\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (The 2nd battalion, sailed for, South Africa) -> The 2nd battalion (4762ms)\nWhat is Africa's largest country?\tDavid\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (David, representing, South Africa) -> David (4794ms)\nWhat is Africa's largest country?\tconsulates\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (consulates, representing, South Africa) -> consulates (4741ms)\nWhat is Africa's largest country?\tNOC\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (NOC, works closely with, GOOS-Africa) -> NOC (4741ms)\nWhat is Africa's largest country?\tthe Rock\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Rock, sets sail for, Africa) -> the Rock (4794ms)\nWhat is Africa's largest country?\tyears\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (years, afterwards sailed for, Africa) -> years (3901ms)\nWhat is Africa's largest country?\tFive teams\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Five teams, will represent, Africa) -> Five teams (4875ms)\nWhat is Africa's largest country?\tGandhi\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Gandhi, had sailed for, South Africa) -> Gandhi (4902ms)\nWhat is Africa's largest country?\tDiamonds\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Diamonds, are another important source of, South Africa) -> Diamonds (4741ms)\nWhat is Africa's largest country?\tSkills Development\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Skills Development, is ranking high on, South Africa) -> Skills Development (4804ms)\nWhat is Africa's largest country?\tthe fleets\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the fleets, sailed for, Africa and Arabia) -> the fleets (4882ms)\nWhat is Africa's largest country?\ta naturally derived ingredient\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (a naturally derived ingredient, sourced from, Africa) -> a naturally derived ingredient (4823ms)\nWhat is Africa's largest country?\tthe world?s\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the world?s, can be sourced from, Africa) -> the world?s (3562ms)\nWhat is Africa's largest country?\tcatalytic converters\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (catalytic converters, sourced from, South Africa) -> catalytic converters (4762ms)\nWhat is Africa's largest country?\tThe Indian girls\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Indian girls, are ranked just behind, South Africa) -> The Indian girls (4741ms)\nWhat is Africa's largest country?\tHayward\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Hayward, represented, South Africa) -> Hayward (4895ms)\nWhat is Africa's largest country?\tthe Heritage logo\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the Heritage logo, represents, Africa) -> the Heritage logo (4875ms)\nWhat is Africa's largest country?\tgold ?\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (gold ?, sourced from, South Africa) -> gold ? (4850ms)\nWhat is Africa's largest country?\tHRF\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (HRF, has been working with, the Africa Bureau) -> HRF (4730ms)\nWhat is Africa's largest country?\tthe waters\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the waters, surrounding, Africa) -> the waters (4889ms)\nWhat is Africa's largest country?\tYellowwood\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Yellowwood, works closely with, Open Africa) -> Yellowwood (4751ms)\nWhat is Africa's largest country?\tthe 82nd Airborne Division\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the 82nd Airborne Division, set sail for, North Africa) -> the 82nd Airborne Division (4832ms)\nWhat is Africa's largest country?\tSouth Africa\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (South Africa, was ranked 10th in, Africa) -> South Africa (4875ms)\nWhat is Africa's largest country?\tcorn\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (corn, is still a primary food source in, Africa) -> corn (4814ms)\nWhat is Africa's largest country?\tChristian media\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Christian media, sourced in, South Africa REAL LIFE EXPERIENCES) -> Christian media (4751ms)\nWhat is Africa's largest country?\tthe issues\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the issues, surrounding, Africa) -> the issues (4679ms)\nWhat is Africa's largest country?\tthe Indian team\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Indian team, set sail for, East Africa) -> the Indian team (4794ms)\nWhat is Africa's largest country?\ta Cow\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (a Cow, works with in, Africa) -> a Cow (4804ms)\nWhat is Africa's largest country?\tThe Second Contingent\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (The Second Contingent, sailed for, South Africa) -> The Second Contingent (4896ms)\nWhat is Africa's largest country?\tthe pieces\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (the pieces, are sourced from, Africa) -> the pieces (4718ms)\nWhat is Africa's largest country?\tTanzania\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Tanzania, was ranked 11th in, Sub-Saharan Africa) -> Tanzania (4882ms)\nWhat is Africa's largest country?\ta few examples\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (a few examples, sourced from, Africa) -> a few examples (4804ms)\nWhat is Africa's largest country?\tToday Ghana\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Today Ghana, represents, Africa) -> Today Ghana (4533ms)\nWhat is Africa's largest country?\tthe African Children?s Choir\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (the African Children?s Choir, has been working with, Africa) -> the African Children?s Choir (4804ms)\nWhat is Africa's largest country?\tthe islands\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the islands, surrounding, Africa) -> the islands (4866ms)\nWhat is Africa's largest country?\tLotersztain\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Lotersztain, works with, the InAfrica Foundation) -> Lotersztain (4875ms)\nWhat is Africa's largest country?\tThe tender green leaves\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (The tender green leaves, are an important food source in, Africa) -> The tender green leaves (4875ms)\nWhat is Africa's largest country?\tWinning entries\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Winning entries, will represent, Africa) -> Winning entries (4375ms)\nWhat is Africa's largest country?\tthe Society\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Society, sailed for, Africa) -> the Society (4751ms)\nWhat is Africa's largest country?\t10,000 Australian soldiers\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (10,000 Australian soldiers, sailed for, South Africa) -> 10,000 Australian soldiers (4889ms)\nWhat is Africa's largest country?\tMiddle Jurassic strata\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Middle Jurassic strata, represented in, Africa) -> Middle Jurassic strata (3562ms)\nWhat is Africa's largest country?\tan Anglican missionary\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (an Anglican missionary, sailed for, Africa) -> an Anglican missionary (4866ms)\nWhat is Africa's largest country?\tRoberts\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Roberts, then set sail for, West Africa) -> Roberts (4832ms)\nWhat is Africa's largest country?\tbeautiful butterflies\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (beautiful butterflies, sourced from, africa and indonesia) -> beautiful butterflies (4679ms)\nWhat is Africa's largest country?\tMajor perennial rivers\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Major perennial rivers, have their sources in, South Africa) -> Major perennial rivers (4866ms)\nWhat is Africa's largest country?\tThe black colours of the flag\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (The black colours of the flag, represent, Africa) -> The black colours of the flag (4751ms)\nWhat is Africa's largest country?\tHershey?s cocoa\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Hershey?s cocoa, is sourced from, West Africa) -> Hershey?s cocoa (4804ms)\nWhat is Africa's largest country?\tAfrican\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (African, was the top-ranked junior in, Morocco & Africa) -> African (4718ms)\nWhat is Africa's largest country?\tthemes\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (themes, surrounding, the World Cup and South Africa) -> themes (4896ms)\nWhat is Africa's largest country?\tThe Beast\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (The Beast, was rated highly in, South Africa) -> The Beast (4804ms)\nWhat is Africa's largest country?\ta mammalogist I?d\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (a mammalogist I?d, worked with in, Africa) -> a mammalogist I?d (4730ms)\nWhat is Africa's largest country?\tAIM\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (AIM, offers opportunities to work with, Africa) -> AIM (4902ms)\nWhat is Africa's largest country?\tthe ministry\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (the ministry, will work closely with, South Africa) -> the ministry (4866ms)\nWhat is Africa's largest country?\ta figure\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (a figure, representing, Africa) -> a figure (4679ms)\nWhat is Africa's largest country?\tIndia\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (India, is still ranked above, South Africa) -> India (4463ms)\nWhat is Africa's largest country?\tthe kinara\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the kinara, represents, Africa) -> the kinara (4740ms)\nWhat is Africa's largest country?\tfilms and events\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (films and events, represent, Africa) -> films and events (3333ms)\nWhat is Africa's largest country?\ta landlocked nation\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a landlocked nation, surrounded by, South Africa) -> a landlocked nation (4774ms)\nWhat is Africa's largest country?\tJakobsen\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Jakobsen, worked with, Africa-related trade) -> Jakobsen (4889ms)\nWhat is Africa's largest country?\tEight South African?s\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Eight South African?s, will represent, Africa) -> Eight South African?s (4814ms)\nWhat is Africa's largest country?\tJohnson Cook\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Johnson Cook, worked with, Operation Crossroads Africa) -> Johnson Cook (4814ms)\nWhat is Africa's largest country?\tthe women WOMANKIND\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (the women WOMANKIND, works with in, Africa) -> the women WOMANKIND (4832ms)\nWhat is Africa's largest country?\tEgypt\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Egypt, are ranked 2nd in, Africa) -> Egypt (4889ms)\nWhat is Africa's largest country?\tThe diamonds\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (The diamonds, are sourced from, South Africa) -> The diamonds (4533ms)\nWhat is Africa's largest country?\tBaltimore\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Baltimore, sailed for, Africa) -> Baltimore (4896ms)\nWhat is Africa's largest country?\ta UK based charity\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (a UK based charity, works with, communities across Africa) -> a UK based charity (4823ms)\nWhat is Africa's largest country?\tWestern Australia\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Western Australia, represented in, Africa) -> Western Australia (4889ms)\nWhat is Africa's largest country?\tChillies\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (Chillies, are sourced from, Africa Invest) -> Chillies (4813ms)\nWhat is Africa's largest country?\tan independent country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (an independent country, surrounded by, South Africa) -> an independent country (4741ms)\nWhat is Africa's largest country?\tThe basin\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (The basin, is believed to be the source of, Africa ?s) -> The basin (4858ms)\nWhat is Africa's largest country?\tZambia\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (Zambia, is ranked 11th in, Africa) -> Zambia (4751ms)\nWhat is Africa's largest country?\tthe Zambezi River\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the Zambezi River, surrounded by, Africa ?s incredible wild life) -> the Zambezi River (3333ms)\nWhat is Africa's largest country?\tColin\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Colin, worked extensively with, Highway Africa) -> Colin (3488ms)\nWhat is Africa's largest country?\ta very small country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (a very small country, is completely surrounded by, South Africa) -> a very small country (4794ms)\nWhat is Africa's largest country?\tthe former US Coast Guard cutter CHASE\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the former US Coast Guard cutter CHASE, has sailed for, Africa) -> the former US Coast Guard cutter CHASE (4841ms)\nWhat is Africa's largest country?\tNnenna Nwakanma\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Nnenna Nwakanma, represented, Africa) -> Nnenna Nwakanma (4832ms)\nWhat is Africa's largest country?\tNatural resources\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Natural resources, represent, Africa) -> Natural resources (4730ms)\nWhat is Africa's largest country?\tbooks\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, source, africa) -> (books, will be sourced by, Biblionef South Africa) -> books (4533ms)\nWhat is Africa's largest country?\tthe flag\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (the flag, represent, Africa) -> the flag (4813ms)\nWhat is Africa's largest country?\tThe rings\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (The rings, represent, Africa) -> The rings (4730ms)\nWhat is Africa's largest country?\tJack Morton\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (Jack Morton, is working with, SOS Africa) -> Jack Morton (4882ms)\nWhat is Africa's largest country?\trich mine owner\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (rich mine owner, had set sail for, Africa) -> rich mine owner (4679ms)\nWhat is Africa's largest country?\tThe country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rank be, africa) -> (The country, was also ranked first in, Africa) -> The country (4774ms)\nWhat is Africa's largest country?\tthe 1st Batalion\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (the 1st Batalion, sailed for, South Africa) -> the 1st Batalion (4730ms)\nWhat is Africa's largest country?\tNigeria\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Nigeria, will represent, Africa) -> Nigeria (4751ms)\nWhat is Africa's largest country?\tNew\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, rate, africa) -> (New, reduced rates for, South Africa) -> New (4784ms)\nWhat is Africa's largest country?\tThe NYSA\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (The NYSA, works very closely with, Lead Africa Schools League) -> The NYSA (4841ms)\nWhat is Africa's largest country?\tITC\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, work with, africa) -> (ITC, works with, Africa) -> ITC (4850ms)\nWhat is Africa's largest country?\tthe country\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (the country, is entirely surrounded by, South Africa) -> the country (4832ms)\nWhat is Africa's largest country?\t2010 Uncertainty\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, surround, africa) -> (2010 Uncertainty, surrounds the future of, Africa) -> 2010 Uncertainty (4762ms)\nWhat is Africa's largest country?\tBalthazar\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Balthazar, represented, Africa) -> Balthazar (4784ms)\nWhat is Africa's largest country?\tSmith\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, sail for, africa) -> (Smith, sailed for, South Africa) -> Smith (4889ms)\nWhat is Africa's largest country?\tCommittee members\t1.666666666653\tWhat is Africa's largest country? -> $x: ($x, represent, africa) -> (Committee members, represent, Africa) -> Committee members (4463ms)\nWhat is Africa's largest country?\twildlife\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (wildlife, is the tallest mountain in, Africa) -> wildlife (4909ms)\nWhat is Africa's largest country?\tMount Kenya\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kenya, is the second tallest mountain in, Africa) -> Mount Kenya (4915ms)\nWhat is Africa's largest country?\tMt Kilimanjaro\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mt Kilimanjaro, is the tallest mountain in, Africa) -> Mt Kilimanjaro (4915ms)\nWhat is Africa's largest country?\t1920\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, have largest population in, africa) -> (1920, had the largest urban population in, Africa) -> 1920 (4909ms)\nWhat is Africa's largest country?\tMultiple Choice\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, have largest population in, africa) -> (Multiple Choice, has the largest population in, Africa) -> Multiple Choice (4915ms)\nWhat is Africa's largest country?\tKJ\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (KJ, is the tallest mountain in, Africa) -> KJ (4915ms)\nWhat is Africa's largest country?\tRand\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be unit of, africa) -> (Rand, is the monetary unit of, South Africa) -> Rand (4915ms)\nWhat is Africa's largest country?\tKili\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Kili, is the tallest mountain in, Africa) -> Kili (4909ms)\nWhat is Africa's largest country?\tBloemfontein\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be sixth largest city in, africa) -> (Bloemfontein, is the sixth largest city in, South Africa) -> Bloemfontein (4915ms)\nWhat is Africa's largest country?\tThe Rand\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be unit of, africa) -> (The Rand, is the monetary unit of, South Africa) -> The Rand (4909ms)\nWhat is Africa's largest country?\tCountry Context DRC\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, have largest population in, africa) -> (Country Context DRC, has the third largest population in, Africa) -> Country Context DRC (4915ms)\nWhat is Africa's largest country?\tKilimanjaro\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Kilimanjaro, is the tallest mountain in, Africa) -> Kilimanjaro (4909ms)\nWhat is Africa's largest country?\tthe equator\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (the equator, is the tallest mountain in, Africa) -> the equator (4915ms)\nWhat is Africa's largest country?\tthe Rand\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be unit of, africa) -> (the Rand, is the official monetary unit of, South Africa) -> the Rand (4909ms)\nWhat is Africa's largest country?\tThe mighty Okavango\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be third largest river in, africa) -> (The mighty Okavango, is the third largest river in, Africa) -> The mighty Okavango (4915ms)\nWhat is Africa's largest country?\tgame\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (game, is the tallest mountain in, Africa) -> game (4909ms)\nWhat is Africa's largest country?\tMount Kilamanjaro\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kilamanjaro, is the tallest mountain in, Africa) -> Mount Kilamanjaro (4909ms)\nWhat is Africa's largest country?\tthe ?rand?\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be unit of, africa) -> (the ?rand?, is the official monetary unit of, South Africa) -> the ?rand? (4915ms)\nWhat is Africa's largest country?\tMount Kilimanjaro\t1.1111111110979999\tWhat is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kilimanjaro, is the tallest mountain in, Africa) -> Mount Kilimanjaro (4915ms)\nWhat is Africa's largest country?\t1 . Algeria\t0.5555555555289999\tWhat is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (1 . Algeria, is the second largest country in, Africa) -> 1 . Algeria (4920ms)\nWhat is Africa's largest country?\tThe Congo\t0.5555555555289999\tWhat is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (The Congo, is the second largest country in, the Africa) -> The Congo (4920ms)\nWhat is Africa's largest country?\tZa?re\t0.5555555555289999\tWhat is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Za?re, is the second largest country in, Africa) -> Za?re (4915ms)\nWhat is Africa's largest country?\tOverview Algeria\t0.5555555555289999\tWhat is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Overview Algeria, is the second largest country in, Africa) -> Overview Algeria (4920ms)\nWhat is Africa's largest country?\tCongo\t0.5555555555289999\tWhat is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Congo, is the second largest country in, Sub-Saharan Africa) -> Congo (4920ms)\nWhat is Africa's largest country?\tFrench StampAlgeria\t0.5555555555289999\tWhat is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (French StampAlgeria, is the second largest country in, Africa) -> French StampAlgeria (4920ms)\nWhat is Africa's largest country?\tEthiopia\t0.5555555555289999\tWhat is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Ethiopia, is the second largest country in, Africa) -> Ethiopia (4920ms)\nWhat is Africa's largest country?\tAlgeria Algeria\t0.5555555555289999\tWhat is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Algeria Algeria, is the second largest country in, Africa) -> Algeria Algeria (4920ms)\nWhat is Africa's largest country?\tDr Tlou\t0.444444444445\tWhat is Africa's largest country? -> $x: ($x, represent, eastern africa) -> (Dr Tlou, also represented, Eastern and Southern Africa) -> Dr Tlou (4920ms)\nWhat is Africa's largest country?\tthe capital Maputo\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, southern africa) -> (the capital Maputo, represents the gateway to, Southern Africa) -> the capital Maputo (4926ms)\nWhat is Africa's largest country?\tonly one species\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, southern africa) -> (only one species, represented in, southern Africa) -> only one species (4926ms)\nWhat is Africa's largest country?\tThe body\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, west africa) -> (The body, representing nations in, West Africa) -> The body (4926ms)\nWhat is Africa's largest country?\tSWAPO\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, west africa) -> (SWAPO, represented radical elements in, South West Africa) -> SWAPO (4931ms)\nWhat is Africa's largest country?\tthe regional body\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, west africa) -> (the regional body, representing, states in West Africa) -> the regional body (4926ms)\nWhat is Africa's largest country?\tthe regional bloc\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, west africa) -> (the regional bloc, representing nations in, West Africa) -> the regional bloc (4920ms)\nWhat is Africa's largest country?\tThe regional body\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, west africa) -> (The regional body, representing 15 nations in, West Africa) -> The regional body (4926ms)\nWhat is Africa's largest country?\tMungoshi\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, southern africa) -> (Mungoshi, was representing, Southern Africa) -> Mungoshi (4926ms)\nWhat is Africa's largest country?\tthe collection\t0.333333333334\tWhat is Africa's largest country? -> $x: ($x, represent, west africa) -> (the collection, represent the range of, West Africa) -> the collection (4926ms)\nWhat is Africa's largest country?\tthe Medicines Control Council\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Medicines Control Council, represented, South Africa) -> the Medicines Control Council (4955ms)\nWhat is Africa's largest country?\tKhumalo\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Khumalo, represented, South Africa 50 times) -> Khumalo (4945ms)\nWhat is Africa's largest country?\tSouth African franchise\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (South African franchise, represent, South Africa) -> South African franchise (4961ms)\nWhat is Africa's largest country?\tThe teams\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (The teams, to represent, South Africa) -> The teams (4948ms)\nWhat is Africa's largest country?\t?The finalists\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (?The finalists, represent, the best South Africa) -> ?The finalists (4964ms)\nWhat is Africa's largest country?\tTwalu?s population\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Twalu?s population, represents one third of, South Africa) -> Twalu?s population (4964ms)\nWhat is Africa's largest country?\tRyk\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Ryk, will represent, South Africa) -> Ryk (4948ms)\nWhat is Africa's largest country?\tBarry\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Barry, has represented, South Africa) -> Barry (4931ms)\nWhat is Africa's largest country?\tplayers\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (players, to represent, South Africa) -> players (4955ms)\nWhat is Africa's largest country?\tHip-hop\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Hip-hop, represents, South Africa) -> Hip-hop (4968ms)\nWhat is Africa's largest country?\tSolomons\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Solomons, has been representing, South Africa) -> Solomons (4958ms)\nWhat is Africa's largest country?\tthe first black African cricketer\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the first black African cricketer, to represent, South Africa) -> the first black African cricketer (4945ms)\nWhat is Africa's largest country?\tSimona\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Simona, has been represented in, South Africa) -> Simona (4964ms)\nWhat is Africa's largest country?\tThe team\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (The team, selected to represent, South Africa) -> The team (4931ms)\nWhat is Africa's largest country?\tASISA\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (ASISA, represents the majority of, South Africa) -> ASISA (4958ms)\nWhat is Africa's largest country?\tA team of 41 athletes\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (A team of 41 athletes, to represent, South Africa) -> A team of 41 athletes (4952ms)\nWhat is Africa's largest country?\tKarl Stegen\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Karl Stegen, represented, South Africa) -> Karl Stegen (4936ms)\nWhat is Africa's largest country?\tthe Western Cape\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Western Cape, represents the essence of, South Africa) -> the Western Cape (4970ms)\nWhat is Africa's largest country?\t?This clinical trial\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (?This clinical trial, represents a milestone for, South Africa) -> ?This clinical trial (4964ms)\nWhat is Africa's largest country?\tCanada and Johnston\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Canada and Johnston, represented, South Africa) -> Canada and Johnston (4971ms)\nWhat is Africa's largest country?\tPFF\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (PFF, represents most of, South Africa) -> PFF (4952ms)\nWhat is Africa's largest country?\tThe plant\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (The plant, represents, South Africa) -> The plant (4968ms)\nWhat is Africa's largest country?\tcroquet\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (croquet, has represented, South Africa) -> croquet (4948ms)\nWhat is Africa's largest country?\tGail Anthony\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Gail Anthony, was selected to represent, South Africa) -> Gail Anthony (4966ms)\nWhat is Africa's largest country?\tThe transaction\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (The transaction, represents, South Africa) -> The transaction (4968ms)\nWhat is Africa's largest country?\ta political system\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (a political system, represented everyone in, South Africa) -> a political system (4940ms)\nWhat is Africa's largest country?\tThomas Cook\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Thomas Cook, is represented in, South Africa) -> Thomas Cook (4961ms)\nWhat is Africa's largest country?\tfists\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (fists, has represented, South Africa) -> fists (4964ms)\nWhat is Africa's largest country?\tsocial justice\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (social justice, is perhaps represented by, South Africa) -> social justice (4964ms)\nWhat is Africa's largest country?\tSkoonheid\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Skoonheid, represent, South Africa) -> Skoonheid (4955ms)\nWhat is Africa's largest country?\tthe squad\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the squad, will represent, South Africa) -> the squad (4970ms)\nWhat is Africa's largest country?\ta sport\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (a sport, would represent, South Africa) -> a sport (4958ms)\nWhat is Africa's largest country?\tBritain\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Britain, was represented in, South Africa) -> Britain (4955ms)\nWhat is Africa's largest country?\tKronk\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Kronk, represent the spirit of, South Africa) -> Kronk (4970ms)\nWhat is Africa's largest country?\tBokang Montjane\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Bokang Montjane, will represent, South Africa) -> Bokang Montjane (4961ms)\nWhat is Africa's largest country?\tthe Amy Biehl Club\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Amy Biehl Club, proudly represented, South Africa) -> the Amy Biehl Club (4936ms)\nWhat is Africa's largest country?\ta translation\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (a translation, represent, South Africa) -> a translation (4945ms)\nWhat is Africa's largest country?\tthe single institution\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the single institution, represents, South Africa) -> the single institution (4966ms)\nWhat is Africa's largest country?\tJust Music\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Just Music, also represents some of, South Africa) -> Just Music (4952ms)\nWhat is Africa's largest country?\tTinker Makhane\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Tinker Makhane, represented, South Africa) -> Tinker Makhane (4945ms)\nWhat is Africa's largest country?\tLEARN 2 SURF\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (LEARN 2 SURF, represent, South Africa) -> LEARN 2 SURF (4971ms)\nWhat is Africa's largest country?\tBP Microsystems\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (BP Microsystems, is now represented in, South Africa) -> BP Microsystems (4970ms)\nWhat is Africa's largest country?\tTough Love\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Tough Love, represented throughout, South Africa) -> Tough Love (4955ms)\nWhat is Africa's largest country?\tJulian\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Julian, represented, his native South Africa) -> Julian (4945ms)\nWhat is Africa's largest country?\ta National team\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (a National team, to represent, South Africa) -> a National team (4964ms)\nWhat is Africa's largest country?\tiVeri\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (iVeri, is represented in, South Africa) -> iVeri (4955ms)\nWhat is Africa's largest country?\tSchabort\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Schabort, will likely represent, South Africa) -> Schabort (4966ms)\nWhat is Africa's largest country?\tdiverse sources\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (diverse sources, represent, South Africa) -> diverse sources (4948ms)\nWhat is Africa's largest country?\tthe major vehicle makers\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the major vehicle makers, are represented in, South Africa) -> the major vehicle makers (4931ms)\nWhat is Africa's largest country?\tDavid Letterman Die Antwoord\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (David Letterman Die Antwoord, will be representing, South Africa) -> David Letterman Die Antwoord (4970ms)\nWhat is Africa's largest country?\tKhanyisa Masebeni\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Khanyisa Masebeni, was selected to represent, South Africa) -> Khanyisa Masebeni (4964ms)\nWhat is Africa's largest country?\tNexus\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Nexus, represents, South Africa) -> Nexus (4935ms)\nWhat is Africa's largest country?\tVickerman\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Vickerman, represented, South Africa) -> Vickerman (4931ms)\nWhat is Africa's largest country?\tMatapa\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Matapa, will represent, South Africa) -> Matapa (4961ms)\nWhat is Africa's largest country?\tZoe\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Zoe, has represented, South Africa) -> Zoe (4931ms)\nWhat is Africa's largest country?\tToday Lufthansa Group\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Today Lufthansa Group, is strongly represented in, South Africa) -> Today Lufthansa Group (4966ms)\nWhat is Africa's largest country?\tcricket\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (cricket, represented, South Africa) -> cricket (4945ms)\nWhat is Africa's largest country?\tAfrica\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Africa, will be represented by, South Africa) -> Africa (4970ms)\nWhat is Africa's largest country?\tGeoff\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Geoff, has represented, South Africa) -> Geoff (4958ms)\nWhat is Africa's largest country?\tKZN\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (KZN, is now representing, South Africa) -> KZN (4966ms)\nWhat is Africa's largest country?\tthe national squad\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the national squad, to represent, South Africa) -> the national squad (4971ms)\nWhat is Africa's largest country?\tThe Y shape\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (The Y shape, represents the convergence of, South Africa) -> The Y shape (4945ms)\nWhat is Africa's largest country?\tevery art form\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (every art form, is represented all over, South Africa) -> every art form (4955ms)\nWhat is Africa's largest country?\tProteaceae\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Proteaceae, is best represented in, South Africa) -> Proteaceae (4961ms)\nWhat is Africa's largest country?\tHitachi Ltd\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Hitachi Ltd, is represented in, South Africa) -> Hitachi Ltd (4968ms)\nWhat is Africa's largest country?\tthe National Council\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the National Council, has represented, South Africa) -> the National Council (4971ms)\nWhat is Africa's largest country?\tCatherine HIGGINS\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Catherine HIGGINS, represented, South Africa) -> Catherine HIGGINS (4955ms)\nWhat is Africa's largest country?\tVenda--are\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Venda--are, represented in, South Africa) -> Venda--are (4970ms)\nWhat is Africa's largest country?\tShaun Pollock\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Shaun Pollock, represented, South Africa) -> Shaun Pollock (4949ms)\nWhat is Africa's largest country?\tthe athletes\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (the athletes, to represent, South Africa) -> the athletes (4952ms)\nWhat is Africa's largest country?\tBeth\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Beth, has subsequently represented, South Africa) -> Beth (4971ms)\nWhat is Africa's largest country?\tCAF\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (CAF, has been represented in, South Africa) -> CAF (4948ms)\nWhat is Africa's largest country?\tRasool\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (Rasool, has represented, South Africa) -> Rasool (4952ms)\nWhat is Africa's largest country?\ta Verwoerd\t0.33333333333299997\tWhat is Africa's largest country? -> $x: ($x, represent, south africa) -> (a Verwoerd, representing, the new South Africa) -> a Verwoerd (4972ms)\nWhat is Africa's largest country?\tThe frozen seas\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, south pole) -> (The frozen seas, surrounding, the South Pole) -> The frozen seas (4972ms)\nWhat is Africa's largest country?\tthe bottom\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, represent, south pole) -> (the bottom, represents, the South Pole) -> the bottom (4972ms)\nWhat is Africa's largest country?\tthe circumference\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, represent, south pole) -> (the circumference, represents, the South Pole) -> the circumference (4973ms)\nWhat is Africa's largest country?\tfield sites\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, south pole) -> (field sites, surrounding, the North and South Poles) -> field sites (4972ms)\nWhat is Africa's largest country?\ta large region\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, south pole) -> (a large region, surrounding, the planet 's south pole) -> a large region (4972ms)\nWhat is Africa's largest country?\tthe frozen continent\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, south pole) -> (the frozen continent, surrounding, the Earth 's South Pole) -> the frozen continent (4972ms)\nWhat is Africa's largest country?\t27 men\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, sail for, south pole) -> (27 men, set sail for, the South Pole) -> 27 men (4972ms)\nWhat is Africa's largest country?\tThe city\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, savanna) -> (The city, is surrounded by, a vast savanna) -> The city (4973ms)\nWhat is Africa's largest country?\tThe continent of Antarctica\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, south pole) -> (The continent of Antarctica, surrounds, the south pole) -> The continent of Antarctica (4973ms)\nWhat is Africa's largest country?\tthe yellow\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, represent, savanna) -> (the yellow, represents, the savannas) -> the yellow (4972ms)\nWhat is Africa's largest country?\tAntarctica\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, south pole) -> (Antarctica, surrounds, the south pole) -> Antarctica (4973ms)\nWhat is Africa's largest country?\tNatural History Antarctica\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, south pole) -> (Natural History Antarctica, surrounds, the South Pole) -> Natural History Antarctica (4972ms)\nWhat is Africa's largest country?\ta continent\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, surround, south pole) -> (a continent, surrounding, the South Pole) -> a continent (4973ms)\nWhat is Africa's largest country?\tthe positive and negative\t0.222222222223\tWhat is Africa's largest country? -> $x: ($x, represent, south pole) -> (the positive and negative, represent, our North and South Poles) -> the positive and negative (4972ms)\nWhat is Dr. Ruth's last name?\tActing Director\t-0.0\tWhat is Dr. Ruth's last name? -> $x: (dr. ruth, be name, $x) -> (Dr. Ruth L. Kirschstein, is named, Acting Director) -> Acting Director (497ms)\nWho is the manager of the Boston Pops?\tBoogie\t0.33333333333299997\tWho is the manager of the Boston Pops? -> $x: ($x, be manager of, pops) -> (Boogie, is also manager of, Pop/Rock singer Chai$ e) -> Boogie (529ms)\nWhat is Curveball's real name?\tthe Iraqi defector\t-0.333333333334\tWhat is Curveball's real name? -> $x: (curveball, be name, $x) -> (Curveball, was the code name of, the Iraqi defector) -> the Iraqi defector (911ms)\nWhat is Curveball's real name?\tthe White House\t-0.6666666666650001\tWhat is Curveball's real name? -> $x: ($x, be real, curveball) -> (the White House, was the real victim of, Curveball?s) -> the White House (911ms)\nWhat is Curveball's real name?\ta better idea\t-0.777777777774\tWhat is Curveball's real name? -> $x: ($x, happen to, curveball) -> (a better idea, happens to, high curveballs) -> a better idea (911ms)\nWhat is Curveball's real name?\tLife\t-0.8888888888850001\tWhat is Curveball's real name? -> $x: ($x, number, curveball) -> (Life, will definitely throw a number of, common curveballs) -> Life (950ms)\nIn what year was Padre Pio born?\tthe village\t1.33333333333\tIn what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, the village) -> the village (721ms)\nIn what year was Padre Pio born?\tPietrelcina\t1.33333333333\tIn what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (. Padre Pio 1887-1968 Padre Pio, was born in, Pietrelcina) -> Pietrelcina (721ms)\nIn what year was Padre Pio born?\tItaly\t1.33333333333\tIn what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Italy) -> Italy (721ms)\nIn what year was Padre Pio born?\tSouthern Italy\t1.33333333333\tIn what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Southern Italy) -> Southern Italy (721ms)\nIn what year was Padre Pio born?\t1887\t1.33333333333\tIn what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, 1887) -> 1887 (721ms)\nIn what year was Padre Pio born?\tPietralcina\t1.33333333333\tIn what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Pietralcina) -> Pietralcina (721ms)\nIn what year was Padre Pio born?\tThe same\t-1.5555555555529998\tIn what year was Padre Pio born? -> $x: ($x, happen to, padre pio) -> (The same, happened to, Padre Pio) -> The same (805ms)\nWhat is schizophrenia?\tno particular\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (no particular, causes for, schizophrenia) -> no particular (6748ms)\nWhat is schizophrenia?\tbromine\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (bromine, can cause, schizophrenia) -> bromine (5644ms)\nWhat is schizophrenia?\tScientists\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Scientists, causes, schizophrenia) -> Scientists (5475ms)\nWhat is schizophrenia?\ttoxoplasmosis\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (toxoplasmosis, causes, schizophrenia) -> toxoplasmosis (4353ms)\nWhat is schizophrenia?\tthe search\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the search, cause, Schizophrenia) -> the search (6677ms)\nWhat is schizophrenia?\tthe root\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the root, causes of, schizophrenia) -> the root (2928ms)\nWhat is schizophrenia?\tSchizophrenia Information >\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Schizophrenia Information >, Causes, Schizophrenia) -> Schizophrenia Information > (4353ms)\nWhat is schizophrenia?\tNobody\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Nobody, causes, schizophrenia) -> Nobody (6520ms)\nWhat is schizophrenia?\tscientists\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (scientists, causes, schizophrenia) -> scientists (6831ms)\nWhat is schizophrenia?\tbiology\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (biology, causes, schizophrenia) -> biology (2689ms)\nWhat is schizophrenia?\tGoogle\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, invent, schizophrenia) -> (Google, invented, a new form of schizophrenia) -> Google (5644ms)\nWhat is schizophrenia?\ta chemical imbalance\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a chemical imbalance, caused, schizophrenia) -> a chemical imbalance (6748ms)\nWhat is schizophrenia?\tschizoph\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (schizoph, causes, schizophrenia) -> schizoph (2689ms)\nWhat is schizophrenia?\tStress\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Stress, can cause, schizophrenia) -> Stress (6520ms)\nWhat is schizophrenia?\t? Marijuana\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (? Marijuana, causes, Schizophrenia) -> ? Marijuana (5475ms)\nWhat is schizophrenia?\tno closer\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (no closer, causes, schizophrenia) -> no closer (7138ms)\nWhat is schizophrenia?\thigher levels\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (higher levels, may cause, schizophrenia) -> higher levels (6677ms)\nWhat is schizophrenia?\tthe question\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the question, causes, schizophrenia) -> the question (2688ms)\nWhat is schizophrenia?\tsubstance abuse\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (substance abuse, causes, schizophrenia) -> substance abuse (6678ms)\nWhat is schizophrenia?\torder\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (order, causes, schizophrenia) -> order (4179ms)\nWhat is schizophrenia?\tDopamine\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Dopamine, causes, Schizophrenia) -> Dopamine (5475ms)\nWhat is schizophrenia?\tsmoking cannabis\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (smoking cannabis, causes, schizophrenia) -> smoking cannabis (5475ms)\nWhat is schizophrenia?\tthe biochemical imbalances\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the biochemical imbalances, cause, schizophrenia) -> the biochemical imbalances (6831ms)\nWhat is schizophrenia?\tPsychosis\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Psychosis, Causes, Schizophrenia) -> Psychosis (6520ms)\nWhat is schizophrenia?\thousecats\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (housecats, can cause, schizophrenia) -> housecats (7138ms)\nWhat is schizophrenia?\tcannabis\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (cannabis, did cause, schizophrenia) -> cannabis (6521ms)\nWhat is schizophrenia?\ttobacco\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (tobacco, causes, schizophrenia) -> tobacco (6520ms)\nWhat is schizophrenia?\tResearchers\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Researchers, causes, schizophrenia) -> Researchers (2928ms)\nWhat is schizophrenia?\tparanoid delusions\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (paranoid delusions, caused by, schizophrenia) -> paranoid delusions (6831ms)\nWhat is schizophrenia?\tbrain synaptic transfer\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain synaptic transfer, cause, schizophrenia) -> brain synaptic transfer (6748ms)\nWhat is schizophrenia?\tPsychiatrists\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Psychiatrists, causes, schizophrenia) -> Psychiatrists (7138ms)\nWhat is schizophrenia?\tUndoJan 19 , 2012 ?\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (UndoJan 19 , 2012 ?, causes, schizophrenia) -> UndoJan 19 , 2012 ? (2928ms)\nWhat is schizophrenia?\tDoctors\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Doctors, causes, schizophrenia) -> Doctors (6748ms)\nWhat is schizophrenia?\tthe Sun\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the Sun, causes, schizophrenia) -> the Sun (4353ms)\nWhat is schizophrenia?\tExperts\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Experts, causes, schizophrenia) -> Experts (2928ms)\nWhat is schizophrenia?\tFeline parasite\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Feline parasite, ?can cause, schizophrenia) -> Feline parasite (6677ms)\nWhat is schizophrenia?\tsun\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (sun, can cause, schizophrenia) -> sun (5475ms)\nWhat is schizophrenia?\ta gene or genes\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a gene or genes, cause, schizophrenia) -> a gene or genes (2689ms)\nWhat is schizophrenia?\tpot\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (pot, causes, schizophrenia) -> pot (6520ms)\nWhat is schizophrenia?\tclinical psychopharmacologists\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (clinical psychopharmacologists, causes, schizophrenia) -> clinical psychopharmacologists (5644ms)\nWhat is schizophrenia?\tcertain\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (certain, causes, schizophrenia) -> certain (6748ms)\nWhat is schizophrenia?\tthe categories\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the categories, actually seem to cause, Schizophrenia) -> the categories (6831ms)\nWhat is schizophrenia?\tJan 17\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Jan 17, causes, schizophrenia) -> Jan 17 (2928ms)\nWhat is schizophrenia?\treference\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (reference, Causes, Schizophrenia ?) -> reference (5644ms)\nWhat is schizophrenia?\tcats\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (cats, cause, schizophrenia) -> cats (7138ms)\nWhat is schizophrenia?\tCause Experts\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Cause Experts, causes, schizophrenia) -> Cause Experts (7138ms)\nWhat is schizophrenia?\textra bodeads\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (extra bodeads, will cause, schizophrenia) -> extra bodeads (5475ms)\nWhat is schizophrenia?\tbrain volumes\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain volumes, caused by, schizophrenia) -> brain volumes (4179ms)\nWhat is schizophrenia?\thigh dopamine levels\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (high dopamine levels, cause, schizophrenia) -> high dopamine levels (6748ms)\nWhat is schizophrenia?\tdopamine\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (dopamine, may cause, schizophrenia) -> dopamine (5475ms)\nWhat is schizophrenia?\tthe suffering\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the suffering, caused by, schizophrenia) -> the suffering (6831ms)\nWhat is schizophrenia?\tthe genetic code\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the genetic code, causes most cases of, schizophrenia) -> the genetic code (6749ms)\nWhat is schizophrenia?\tthe field\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the field, causes, schizophrenia) -> the field (5644ms)\nWhat is schizophrenia?\tMay 12 , 2011 Proof\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (May 12 , 2011 Proof, cause, schizophrenia) -> May 12 , 2011 Proof (7138ms)\nWhat is schizophrenia?\ta clue\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a clue, causes, schizophrenia) -> a clue (6677ms)\nWhat is schizophrenia?\tmedical science\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (medical science, causes, schizophrenia) -> medical science (5475ms)\nWhat is schizophrenia?\tdrug abuse\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (drug abuse, will cause, schizophrenia) -> drug abuse (7138ms)\nWhat is schizophrenia?\tBrain abnormalities\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Brain abnormalities, are the cause of, schizophrenia) -> Brain abnormalities (6831ms)\nWhat is schizophrenia?\tinformation\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (information, causes, schizophrenia) -> information (6831ms)\nWhat is schizophrenia?\tEnvironmental factor\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Environmental factor, Diseases or conditions caused, Schizophrenia) -> Environmental factor (7138ms)\nWhat is schizophrenia?\tmarijuana\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (marijuana, to causing, Schizophrenia) -> marijuana (7138ms)\nWhat is schizophrenia?\therpes\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (herpes, causes, schizophrenia) -> herpes (4179ms)\nWhat is schizophrenia?\thallucinations\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (hallucinations, caused by, schizophrenia) -> hallucinations (4353ms)\nWhat is schizophrenia?\texperts\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (experts, causes, schizophrenia) -> experts (6831ms)\nWhat is schizophrenia?\tthe behavior\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the behavior, caused by, schizophrenia) -> the behavior (4179ms)\nWhat is schizophrenia?\ttoo much dopamine\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (too much dopamine, must cause, schizophrenia) -> too much dopamine (4353ms)\nWhat is schizophrenia?\ta gene\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a gene, causes, schizophrenia) -> a gene (2689ms)\nWhat is schizophrenia?\tthe mystery\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the mystery, causes, schizophrenia) -> the mystery (5644ms)\nWhat is schizophrenia?\tthe stress\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the stress, can cause, schizophrenia) -> the stress (4353ms)\nWhat is schizophrenia?\tdrugs\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (drugs, cause, schizophrenia) -> drugs (4179ms)\nWhat is schizophrenia?\tchild abuse\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (child abuse, can cause, schizophrenia) -> child abuse (5644ms)\nWhat is schizophrenia?\tthe brain\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the brain, can cause, schizophrenia) -> the brain (6521ms)\nWhat is schizophrenia?\tbrain atrophy\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain atrophy, causes, Schizophrenia) -> brain atrophy (2689ms)\nWhat is schizophrenia?\tmultiple genes\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (multiple genes, cause, schizophrenia) -> multiple genes (4179ms)\nWhat is schizophrenia?\tMarijuana\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Marijuana, causes, schizophrenia) -> Marijuana (4179ms)\nWhat is schizophrenia?\tthe factors\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the factors, causes, Schizophrenia) -> the factors (4353ms)\nWhat is schizophrenia?\tthe most important kinds of impairment\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the most important kinds of impairment, caused by, schizophrenia) -> the most important kinds of impairment (6677ms)\nWhat is schizophrenia?\tCannabis\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Cannabis, causes, schizophrenia) -> Cannabis (6520ms)\nWhat is schizophrenia?\tauditory hallucinations\t0.33333333333299997\tWhat is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (auditory hallucinations, caused by, schizophrenia) -> auditory hallucinations (6677ms)\nWhat is schizophrenia?\tanomalies\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (anomalies, develop prenatally in, schizophrenia) -> anomalies (7991ms)\nWhat is schizophrenia?\tMelville C\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Melville C, Relapse in, schizophrenia) -> Melville C (8026ms)\nWhat is schizophrenia?\tthe brain changes\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the brain changes, seen in, schizophrenia) -> the brain changes (7991ms)\nWhat is schizophrenia?\ta doctor\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a doctor, specialized in, schizophrenia) -> a doctor (8043ms)\nWhat is schizophrenia?\tinsufficient motivation\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (insufficient motivation, observed in, schizophrenia) -> insufficient motivation (8026ms)\nWhat is schizophrenia?\tthe gene\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the gene, was first implicated in, schizophrenia) -> the gene (8026ms)\nWhat is schizophrenia?\tthe neural deficits\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the neural deficits, observed in, schizophrenia) -> the neural deficits (8008ms)\nWhat is schizophrenia?\tthe brain regions\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the brain regions, involved in, schizophrenia) -> the brain regions (7974ms)\nWhat is schizophrenia?\tsentence\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (sentence, boundaries in, schizophrenia) -> sentence (8008ms)\nWhat is schizophrenia?\tNeurolinguistics\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Neurolinguistics, Language in, Schizophrenia) -> Neurolinguistics (7955ms)\nWhat is schizophrenia?\tSomatic hallucinations\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Somatic hallucinations, occur in, schizophrenia) -> Somatic hallucinations (7991ms)\nWhat is schizophrenia?\thearing voices\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (hearing voices, experience in, schizophrenia) -> hearing voices (8026ms)\nWhat is schizophrenia?\tthe deficits\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the deficits, observed in, schizophrenia) -> the deficits (8008ms)\nWhat is schizophrenia?\tthe psychotic symptoms\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the psychotic symptoms, found in, schizophrenia) -> the psychotic symptoms (8026ms)\nWhat is schizophrenia?\tTwo gene variants\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Two gene variants, implicated in, schizophrenia) -> Two gene variants (8026ms)\nWhat is schizophrenia?\ta syndrome\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a syndrome, seen in, schizophrenia) -> a syndrome (7974ms)\nWhat is schizophrenia?\tcognitive deficit\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (cognitive deficit, observed in, schizophrenia) -> cognitive deficit (7138ms)\nWhat is schizophrenia?\tyet psychoanalytic theorists\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (yet psychoanalytic theorists, found in, schizophrenia) -> yet psychoanalytic theorists (7974ms)\nWhat is schizophrenia?\tgenes\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (genes, play in, schizophrenia) -> genes (7974ms)\nWhat is schizophrenia?\tAlcohol and cannabis\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Alcohol and cannabis, use in, schizophrenia) -> Alcohol and cannabis (7991ms)\nWhat is schizophrenia?\tthe cognitive/attentional abnormalities\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive/attentional abnormalities, found in, schizophrenia) -> the cognitive/attentional abnormalities (8026ms)\nWhat is schizophrenia?\tthe central self\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the central self, happens in, schizophrenia) -> the central self (7991ms)\nWhat is schizophrenia?\tthe breakthroughs\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the breakthroughs, in treating, schizophrenia) -> the breakthroughs (7955ms)\nWhat is schizophrenia?\tinformation-processing deficits\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (information-processing deficits, occur in, schizophrenia) -> information-processing deficits (7991ms)\nWhat is schizophrenia?\tbrain regions\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (brain regions, described in, schizophrenia) -> brain regions (7956ms)\nWhat is schizophrenia?\tantipsychotic drugs\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (antipsychotic drugs, in treating, schizophrenia) -> antipsychotic drugs (8008ms)\nWhat is schizophrenia?\tthe hallucinations\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the hallucinations, occur in, schizophrenia) -> the hallucinations (8008ms)\nWhat is schizophrenia?\tthe symptoms\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the symptoms, occurring in, schizophrenia) -> the symptoms (8026ms)\nWhat is schizophrenia?\tthe cognitive deficits\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive deficits, observed in, schizophrenia) -> the cognitive deficits (7973ms)\nWhat is schizophrenia?\tbasal ganglia\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (basal ganglia, function in, schizophrenia) -> basal ganglia (7956ms)\nWhat is schizophrenia?\tA gene\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (A gene, implicated in, schizophrenia) -> A gene (7956ms)\nWhat is schizophrenia?\tWhite matter\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (White matter, changes in, schizophrenia) -> White matter (8008ms)\nWhat is schizophrenia?\tFlat\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Flat, affect in, schizophrenia) -> Flat (7973ms)\nWhat is schizophrenia?\tProdromal symptoms\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Prodromal symptoms, relapse prevention in, schizophrenia) -> Prodromal symptoms (8008ms)\nWhat is schizophrenia?\tcognitive/attentional abnormalities\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (cognitive/attentional abnormalities, found in, schizophrenia) -> cognitive/attentional abnormalities (7956ms)\nWhat is schizophrenia?\tZyprexa ?\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Zyprexa ?, used in, schizophrenia) -> Zyprexa ? (8043ms)\nWhat is schizophrenia?\tdepression\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (depression, observed in, schizophrenia) -> depression (7138ms)\nWhat is schizophrenia?\tlikely\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (likely, occurs in, schizophrenia) -> likely (7973ms)\nWhat is schizophrenia?\tDopamine D4 receptors\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Dopamine D4 receptors, elevated in, schizophrenia) -> Dopamine D4 receptors (8008ms)\nWhat is schizophrenia?\tR.C. Flat\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (R.C. Flat, affect in, schizophrenia) -> R.C. Flat (7991ms)\nWhat is schizophrenia?\tan inhibitory deficit\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (an inhibitory deficit, found in, schizophrenia) -> an inhibitory deficit (8044ms)\nWhat is schizophrenia?\tthe genes\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the genes, involved in, schizophrenia) -> the genes (7955ms)\nWhat is schizophrenia?\tbrain abnormalities\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (brain abnormalities, occur in, schizophrenia) -> brain abnormalities (8026ms)\nWhat is schizophrenia?\tthe body\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the body, occurs in, schizophrenia) -> the body (8026ms)\nWhat is schizophrenia?\tAnarchy\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Anarchy, works in, schizophrenia) -> Anarchy (8026ms)\nWhat is schizophrenia?\tnegative symptoms\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (negative symptoms, commonly observed in, schizophrenia) -> negative symptoms (7991ms)\nWhat is schizophrenia?\tan area\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (an area, may be involved in, schizophrenia) -> an area (7991ms)\nWhat is schizophrenia?\tthe problem\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the problem, lie in, schizophrenia) -> the problem (7991ms)\nWhat is schizophrenia?\ta brain chemical\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a brain chemical, involved in, schizophrenia) -> a brain chemical (7991ms)\nWhat is schizophrenia?\tmetabolites\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (metabolites, significantly altered in, schizophrenia) -> metabolites (7973ms)\nWhat is schizophrenia?\tToxiplasmosis\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Toxiplasmosis, plays a part in, schizophrenia) -> Toxiplasmosis (7991ms)\nWhat is schizophrenia?\tcircadian rhythm disturbances\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (circadian rhythm disturbances, observed in, schizophrenia) -> circadian rhythm disturbances (8043ms)\nWhat is schizophrenia?\tpsychodynamic psychotherapy\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (psychodynamic psychotherapy, in treating, schizophrenia) -> psychodynamic psychotherapy (7991ms)\nWhat is schizophrenia?\tthe fundamental defects\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the fundamental defects, found in, schizophrenia) -> the fundamental defects (7955ms)\nWhat is schizophrenia?\tthe auditory hallucinations\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the auditory hallucinations, observed in, schizophrenia) -> the auditory hallucinations (7956ms)\nWhat is schizophrenia?\tSusan J. Out-of-body\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Susan J. Out-of-body, experiences in, schizophrenia) -> Susan J. Out-of-body (7974ms)\nWhat is schizophrenia?\tactive psychosis\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (active psychosis, seen in, schizophrenia) -> active psychosis (8008ms)\nWhat is schizophrenia?\tMitochondrial\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Mitochondrial, variants in, schizophrenia) -> Mitochondrial (7956ms)\nWhat is schizophrenia?\tThe Double  Bind\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (The Double  Bind, in promoting, schizophrenia) -> The Double  Bind (8008ms)\nWhat is schizophrenia?\tthe cognitive impairments\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive impairments, seen in, schizophrenia) -> the cognitive impairments (8008ms)\nWhat is schizophrenia?\tSuicide\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Suicide, attempts in, schizophrenia) -> Suicide (7956ms)\nWhat is schizophrenia?\tthe ability\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the ability, demonstrated in, schizophrenia) -> the ability (8026ms)\nWhat is schizophrenia?\tthe response patterns\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the response patterns, observed in, schizophrenia) -> the response patterns (8043ms)\nWhat is schizophrenia?\ta phenomenon\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a phenomenon, implicated in, schizophrenia) -> a phenomenon (7955ms)\nWhat is schizophrenia?\tthe defect state\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the defect state, noted in, schizophrenia) -> the defect state (7973ms)\nWhat is schizophrenia?\treality distortion and symptoms\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (reality distortion and symptoms, occur in, schizophrenia) -> reality distortion and symptoms (7991ms)\nWhat is schizophrenia?\tthe cognitive functions\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive functions, affected in, schizophrenia) -> the cognitive functions (7973ms)\nWhat is schizophrenia?\ta circuit\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a circuit, implicated in, schizophrenia) -> a circuit (8008ms)\nWhat is schizophrenia?\tdisruption during early life\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (disruption during early life, may result in, schizophrenia) -> disruption during early life (8026ms)\nWhat is schizophrenia?\ta psychiatrist\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a psychiatrist, specializes in, schizophrenia) -> a psychiatrist (8043ms)\nWhat is schizophrenia?\tthe thought disorder\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the thought disorder, seen in, schizophrenia) -> the thought disorder (8026ms)\nWhat is schizophrenia?\tthe voices\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the voices, heard in, schizophrenia) -> the voices (8008ms)\nWhat is schizophrenia?\tfrontal cortex brain\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (frontal cortex brain, proteins in, schizophrenia) -> frontal cortex brain (8043ms)\nWhat is schizophrenia?\tthe abnormalities\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the abnormalities, seen in, schizophrenia) -> the abnormalities (8043ms)\nWhat is schizophrenia?\ta person\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a person, has in, schizophrenia) -> a person (8043ms)\nWhat is schizophrenia?\tthe delusions\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the delusions, seen in, schizophrenia) -> the delusions (7974ms)\nWhat is schizophrenia?\thallucination\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (hallucination, found in, schizophrenia) -> hallucination (8026ms)\nWhat is schizophrenia?\tThe genes\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (The genes, are implicated in, schizophrenia) -> The genes (7956ms)\nWhat is schizophrenia?\tthe OFC sulcogyral pattern\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the OFC sulcogyral pattern, differed in, schizophrenia) -> the OFC sulcogyral pattern (7991ms)\nWhat is schizophrenia?\ta complex cognitive function\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a complex cognitive function, is impaired in, schizophrenia) -> a complex cognitive function (8008ms)\nWhat is schizophrenia?\tmental disorders\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (mental disorders, found in, schizophrenia) -> mental disorders (7956ms)\nWhat is schizophrenia?\ta schizophrenic individual\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a schizophrenic individual, happens in, schizophrenia) -> a schizophrenic individual (7956ms)\nWhat is schizophrenia?\tcandidate genes\t0.222222222222\tWhat is schizophrenia? -> $x: ($x, in, schizophrenia) -> (candidate genes, involved in, schizophrenia) -> candidate genes (8043ms)\nWhat is schizophrenia?\tolder medications\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia patients, did as well on, older medications) -> older medications (8077ms)\nWhat is schizophrenia?\tbabies\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (developing schizophrenia, did, babies) -> babies (8060ms)\nWhat is schizophrenia?\tvast improvements\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do make, vast improvements) -> vast improvements (8093ms)\nWhat is schizophrenia?\tview recovery\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, view recovery) -> view recovery (8093ms)\nWhat is schizophrenia?\tan individual\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, r, schizophrenia) -> (an individual, met DSM-III-R criteria for, schizophrenia) -> an individual (8077ms)\nWhat is schizophrenia?\ttribal societies\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia/psychosis, did fair better in, tribal societies) -> tribal societies (8060ms)\nWhat is schizophrenia?\twomen\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, women) -> women (8060ms)\nWhat is schizophrenia?\tevery level\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do perform at, every level) -> every level (8060ms)\nWhat is schizophrenia?\tresearchers\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia prevalence, have been done by, researchers) -> researchers (8077ms)\nWhat is schizophrenia?\tthe progress\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (the progress, described the market for, schizophrenia drugs) -> the progress (8061ms)\nWhat is schizophrenia?\tparanoia\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has more to do with, paranoia) -> paranoia (8077ms)\nWhat is schizophrenia?\ta *very slight* hint\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Moral schizophrenia, does have, a *very slight* hint) -> a *very slight* hint (8093ms)\nWhat is schizophrenia?\tthe disorder\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (label schizophrenia, does have, the disorder) -> the disorder (8060ms)\nWhat is schizophrenia?\tthe other leg\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (the other leg, be described as, schizophrenia) -> the other leg (8061ms)\nWhat is schizophrenia?\tthe other people\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (SCHIZOPHRENIA, do the activities like, the other people) -> the other people (8093ms)\nWhat is schizophrenia?\ta combination\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do best with, a combination) -> a combination (8093ms)\nWhat is schizophrenia?\taerobic exercise\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, did 30 minutes of, aerobic exercise) -> aerobic exercise (8043ms)\nWhat is schizophrenia?\tIGT performance\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (both schizophrenia groups, did worse on, IGT performance) -> IGT performance (8093ms)\nWhat is schizophrenia?\trun in families\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does tend to, run in families) -> run in families (8093ms)\nWhat is schizophrenia?\tbest\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, best) -> best (8061ms)\nWhat is schizophrenia?\tlow-level jobs\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia cannot, do anything except, low-level jobs) -> low-level jobs (8077ms)\nWhat is schizophrenia?\tColby Cosh\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (Colby Cosh, has done a good job of describing, the schizophrenia) -> Colby Cosh (8077ms)\nWhat is schizophrenia?\tolfactory dysfunction\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (olfactory dysfunction, is well described in, schizophrenia) -> olfactory dysfunction (8093ms)\nWhat is schizophrenia?\tsplit personalities\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, split personalities) -> split personalities (8077ms)\nWhat is schizophrenia?\tfamilies\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do worse in, families) -> families (8093ms)\nWhat is schizophrenia?\tmental tasks\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do poorly on, mental tasks) -> mental tasks (8060ms)\nWhat is schizophrenia?\tLaing\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (Laing, described, Schizophrenia) -> Laing (8077ms)\nWhat is schizophrenia?\tpsychologists\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (psychologists, have described, schizophrenia) -> psychologists (8061ms)\nWhat is schizophrenia?\ta secret\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does n?t have to remain, a secret) -> a secret (8093ms)\nWhat is schizophrenia?\teveryone else\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, so did, everyone else) -> everyone else (8060ms)\nWhat is schizophrenia?\tsmoking\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, can do to reduce, smoking) -> smoking (8077ms)\nWhat is schizophrenia?\tthe pseudonyms influence\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, far do, the pseudonyms influence) -> the pseudonyms influence (8077ms)\nWhat is schizophrenia?\tpsychotic inpatients\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, r, schizophrenia) -> (psychotic inpatients, met DSM-III-R criteria for, schizophrenia) -> psychotic inpatients (8077ms)\nWhat is schizophrenia?\trisks\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does have, risks) -> risks (8093ms)\nWhat is schizophrenia?\tcause split personalities\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does n \\'t, cause split personalities) -> cause split personalities (8077ms)\nWhat is schizophrenia?\tassociations\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, as do, associations) -> associations (8061ms)\nWhat is schizophrenia?\tviolent ?\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do become, violent ?) -> violent ? (8060ms)\nWhat is schizophrenia?\taggression\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does n?t mention, aggression) -> aggression (8077ms)\nWhat is schizophrenia?\texist\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does nt, exist) -> exist (8093ms)\nWhat is schizophrenia?\tgrieving\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia ?We carers, do a lot of, grieving) -> grieving (8077ms)\nWhat is schizophrenia?\tdaemons\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, daemons) -> daemons (8043ms)\nWhat is schizophrenia?\ta level\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (chronic/intermittent schizophrenia, do so at, a level) -> a level (8077ms)\nWhat is schizophrenia?\tSHANK3\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (SHANK3, have been described in, atypical schizophrenia) -> SHANK3 (8043ms)\nWhat is schizophrenia?\tphysicians\t0.111111111111\tWhat is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (physicians, describe, schizophrenia) -> physicians (8061ms)\nWhat is schizophrenia?\tmultiple personality\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, multiple personality) -> multiple personality (8043ms)\nWhat is schizophrenia?\tthe oppressive structure\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, did, the oppressive structure) -> the oppressive structure (8093ms)\nWhat is schizophrenia?\tcognitive impairment limit improvement\t0.111111111111\tWhat is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, Does, cognitive impairment limit improvement) -> cognitive impairment limit improvement (8093ms)\nWhat is schizophrenia?\tforms\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is just a catch-all term for, forms) -> forms (8125ms)\nWhat is schizophrenia?\tChemical imbalances\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Chemical imbalances, can produce, schizophrenia and depression) -> Chemical imbalances (8218ms)\nWhat is schizophrenia?\tWHAS\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (WHAS, Produces, A Disaster Called Schizophrenia) -> WHAS (8218ms)\nWhat is schizophrenia?\tlong\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been untouched for so, long) -> long (8125ms)\nWhat is schizophrenia?\tpatients\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is looking for, patients) -> patients (8125ms)\nWhat is schizophrenia?\tsuch beautiful voices\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is an awful name for, such beautiful voices) -> such beautiful voices (8218ms)\nWhat is schizophrenia?\tpolitical rather\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been used for, political rather) -> political rather (8157ms)\nWhat is schizophrenia?\tKing Scar\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, define, schizophrenia) -> (King Scar, defines, the escalating schizophrenia) -> King Scar (8141ms)\nWhat is schizophrenia?\ta schizo-obsessive subtype\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is there evidence for, a schizo-obsessive subtype) -> a schizo-obsessive subtype (8125ms)\nWhat is schizophrenia?\tthe worst\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (paranoid schizophrenia, is to prepare for, the worst) -> the worst (8203ms)\nWhat is schizophrenia?\ta group\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is the word for, a group) -> a group (8093ms)\nWhat is schizophrenia?\ta heterogeneous group\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is the collective term for, a heterogeneous group) -> a heterogeneous group (8156ms)\nWhat is schizophrenia?\tpsychiatric treatment\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been admitted for, psychiatric treatment) -> psychiatric treatment (8187ms)\nWhat is schizophrenia?\tthe onset\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, are basic for, the onset) -> the onset (8172ms)\nWhat is schizophrenia?\tdisturbances\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is noted for, disturbances) -> disturbances (8187ms)\nWhat is schizophrenia?\tdistress\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is important for alleviating, distress) -> distress (8172ms)\nWhat is schizophrenia?\tnormal and abnormal behavior\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (normal and abnormal behavior, do, schizophrenia) -> normal and abnormal behavior (8172ms)\nWhat is schizophrenia?\theart disease\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are at increased risk for, heart disease) -> heart disease (8141ms)\nWhat is schizophrenia?\ta mental illness but society\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a mental illness but society, does see, schizophrenia) -> a mental illness but society (8125ms)\nWhat is schizophrenia?\tOC symptoms\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (chronic schizophrenia, were assessed for, OC symptoms) -> OC symptoms (8141ms)\nWhat is schizophrenia?\ta living\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, define, schizophrenia) -> (a living, is actually defined as, Schizophrenia) -> a living (8141ms)\nWhat is schizophrenia?\tgenetic counselling\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, be considered for, genetic counselling) -> genetic counselling (8187ms)\nWhat is schizophrenia?\tbipolar disorder\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are effective for, bipolar disorder) -> bipolar disorder (8187ms)\nWhat is schizophrenia?\ttransient residents\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia rates, are only increased for, transient residents) -> transient residents (8172ms)\nWhat is schizophrenia?\tThe role Toxoplasm gondii\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (The role Toxoplasm gondii, may play in producing, schizophrenia) -> The role Toxoplasm gondii (8125ms)\nWhat is schizophrenia?\tthe impairments\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are important for characterizing, the impairments) -> the impairments (8172ms)\nWhat is schizophrenia?\tpolitical science\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is also taken for granted in, political science) -> political science (8157ms)\nWhat is schizophrenia?\tthe European initiative\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the European initiative, has produced, the usual schizophrenia) -> the European initiative (8141ms)\nWhat is schizophrenia?\tAlfred Lion\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Alfred Lion, Releases produced, Schizophrenia) -> Alfred Lion (8109ms)\nWhat is schizophrenia?\tclinical reasons\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is changed for, clinical reasons) -> clinical reasons (8157ms)\nWhat is schizophrenia?\tconcern\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a cause for, concern) -> concern (8203ms)\nWhat is schizophrenia?\tMary Jeffries\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Mary Jeffries, Produces, A Disaster Called Schizophrenia) -> Mary Jeffries (8187ms)\nWhat is schizophrenia?\tLeft theory\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is deeply problematic for, Left theory) -> Left theory (8172ms)\nWhat is schizophrenia?\tpathological TDP-43 , 18\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was negative for, pathological TDP-43 , 18) -> pathological TDP-43 , 18 (8218ms)\nWhat is schizophrenia?\tthe philosophy\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is an ideal case study for, the philosophy) -> the philosophy (8203ms)\nWhat is schizophrenia?\tHallucinogenics\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Hallucinogenics, can produce, schizophrenia) -> Hallucinogenics (8218ms)\nWhat is schizophrenia?\tmediumistic forces\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (mediumistic forces, produces symptoms of, schizophrenia) -> mediumistic forces (8141ms)\nWhat is schizophrenia?\tthe study\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were recruited for, the study) -> the study (8125ms)\nWhat is schizophrenia?\treasons\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (chronic schizophrenia, are discussed for, reasons) -> reasons (8203ms)\nWhat is schizophrenia?\tunnatural causes\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is accounted for by, unnatural causes) -> unnatural causes (8109ms)\nWhat is schizophrenia?\tthe psychiatrist\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, define, schizophrenia) -> (the psychiatrist, defines, schizophrenia) -> the psychiatrist (8109ms)\nWhat is schizophrenia?\tAired 6-11-2010\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Aired 6-11-2010, did the definition of, schizophrenia change) -> Aired 6-11-2010 (8109ms)\nWhat is schizophrenia?\tthe thalamus ?\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (the thalamus ?, do people with, schizophrenia) -> the thalamus ? (8218ms)\nWhat is schizophrenia?\tthe first time\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is usually diagnosed for, the first time) -> the first time (8172ms)\nWhat is schizophrenia?\t?silkyegg? ? ?\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (?silkyegg? ? ?, Do, your research?SCHIZOPHRENIA) -> ?silkyegg? ? ? (8172ms)\nWhat is schizophrenia?\tMPD\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (MPD, is nothing to do with, schizophrenia) -> MPD (8157ms)\nWhat is schizophrenia?\tfamily members\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, can be especially difficult for, family members) -> family members (8172ms)\nWhat is schizophrenia?\tTom Middleton\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Tom Middleton, Tracks produced, Entrance to Exit (feat. Schizophrenia)) -> Tom Middleton (8109ms)\nWhat is schizophrenia?\tabnormality\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (abnormality, characterized, schizophrenia patients) -> abnormality (8172ms)\nWhat is schizophrenia?\tviolent behavior\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were assessed for, violent behavior) -> violent behavior (8203ms)\nWhat is schizophrenia?\ta long time\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, may have been ill for, a long time) -> a long time (8218ms)\nWhat is schizophrenia?\tone hundred years\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been recognized for over, one hundred years) -> one hundred years (8157ms)\nWhat is schizophrenia?\tthe major and minor alleles\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the major and minor alleles) -> the major and minor alleles (8218ms)\nWhat is schizophrenia?\t6 weeks\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were treated for, 6 weeks) -> 6 weeks (8125ms)\nWhat is schizophrenia?\texercise\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (exercise, is doing good in, the treatment of schizophrenia) -> exercise (8157ms)\nWhat is schizophrenia?\tcaregivers\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a challenging task for, caregivers) -> caregivers (8157ms)\nWhat is schizophrenia?\ta Section Chief\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a Section Chief, has done research on, schizophrenia) -> a Section Chief (8172ms)\nWhat is schizophrenia?\ta revolution\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are ripe for, a revolution) -> a revolution (8202ms)\nWhat is schizophrenia?\tParasurama\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Parasurama, does, the schizophrenia) -> Parasurama (8125ms)\nWhat is schizophrenia?\tpublication\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was accepted for, publication) -> publication (8187ms)\nWhat is schizophrenia?\ta few weeks\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, only need to be tested for, a few weeks) -> a few weeks (8218ms)\nWhat is schizophrenia?\teach person\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is different for, each person) -> each person (8125ms)\nWhat is schizophrenia?\ttreatments\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (treatments, do help a person with, schizophrenia) -> treatments (8125ms)\nWhat is schizophrenia?\tlarge deletions\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were also found for, large deletions) -> large deletions (8218ms)\nWhat is schizophrenia?\tlong time\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been an issue for, long time) -> long time (8203ms)\nWhat is schizophrenia?\ta formal diagnosis\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is too young for, a formal diagnosis) -> a formal diagnosis (8232ms)\nWhat is schizophrenia?\tmen and women\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is the same for, men and women) -> men and women (8187ms)\nWhat is schizophrenia?\tPsychiatry\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (Psychiatry, characterizes, schizophrenia) -> Psychiatry (8218ms)\nWhat is schizophrenia?\tA remarkable study\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (A remarkable study, was done on, schizophrenia) -> A remarkable study (8109ms)\nWhat is schizophrenia?\tupper-class families\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (upper-class families, do patients with, schizophrenia) -> upper-class families (8203ms)\nWhat is schizophrenia?\tRead\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Read, exactly does, schizophrenia work) -> Read (8109ms)\nWhat is schizophrenia?\tany parent\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a life-changing moment for, any parent) -> any parent (8218ms)\nWhat is schizophrenia?\tmadness\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (madness, do patients with, schizophrenia) -> madness (8109ms)\nWhat is schizophrenia?\tthe human body\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the human body, can produce the same symptoms of, schizophrenia) -> the human body (8172ms)\nWhat is schizophrenia?\tindividuals\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is almost doubled for, individuals) -> individuals (8141ms)\nWhat is schizophrenia?\tpsychosurgery\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, was n?t the strong suit for, psychosurgery) -> psychosurgery (8187ms)\nWhat is schizophrenia?\tthe most part\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, define, schizophrenia) -> (the most part, defined, schizophrenia) -> the most part (8157ms)\nWhat is schizophrenia?\tviolent incidents\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (violent incidents, did those with, schizophrenia) -> violent incidents (8187ms)\nWhat is schizophrenia?\tusers\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (users, produces, schizophrenia) -> users (8187ms)\nWhat is schizophrenia?\telderly patients\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are commonly prescribed for, elderly patients) -> elderly patients (8187ms)\nWhat is schizophrenia?\tDogma\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Dogma, will produce, schizophrenia) -> Dogma (8203ms)\nWhat is schizophrenia?\tchildren\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is for, children) -> children (8172ms)\nWhat is schizophrenia?\ta famous psychiatrist\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, define, schizophrenia) -> (a famous psychiatrist, defined, schizophrenia) -> a famous psychiatrist (8203ms)\nWhat is schizophrenia?\tRD Laing\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (RD Laing, did on, Schizophrenia) -> RD Laing (8202ms)\nWhat is schizophrenia?\tpositive symptoms\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been used for, positive symptoms) -> positive symptoms (8141ms)\nWhat is schizophrenia?\tthe top-two primary\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the top-two primary, produces, an electoral schizophrenia) -> the top-two primary (8187ms)\nWhat is schizophrenia?\tcytomegalovirus\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were treated for, cytomegalovirus) -> cytomegalovirus (8157ms)\nWhat is schizophrenia?\tfolks\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (folks, are already doing with, schizophrenia) -> folks (8109ms)\nWhat is schizophrenia?\taging than\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (aging than, do patients with, Schizophrenia) -> aging than (8109ms)\nWhat is schizophrenia?\tclose relatives\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is much greater for, close relatives) -> close relatives (8109ms)\nWhat is schizophrenia?\tthe major allele\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the major allele) -> the major allele (8156ms)\nWhat is schizophrenia?\tFrancis Wolff\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Francis Wolff, Releases produced, Schizophrenia) -> Francis Wolff (8232ms)\nWhat is schizophrenia?\tthe individual\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia symptoms, again are for, the individual) -> the individual (8218ms)\nWhat is schizophrenia?\tyoung people\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is especially destructive for, young people) -> young people (8187ms)\nWhat is schizophrenia?\tRay Davies\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Ray Davies, Tracks produced, Acute Schizophrenia Paranoia Blues) -> Ray Davies (8141ms)\nWhat is schizophrenia?\tThe CCCS\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (The CCCS, does help people with, schizophrenia) -> The CCCS (8218ms)\nWhat is schizophrenia?\tArmstrong\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Armstrong, would be able to do on, schizophrenia) -> Armstrong (8141ms)\nWhat is schizophrenia?\ta board game ?\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a board game ?, does, manic depression top schizophrenia) -> a board game ? (8157ms)\nWhat is schizophrenia?\tthe thalamus\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (the thalamus, as do people with, schizophrenia) -> the thalamus (8172ms)\nWhat is schizophrenia?\tdiabetes\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is an independent risk factor for, diabetes) -> diabetes (8218ms)\nWhat is schizophrenia?\tthe sufferer\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are terrifying for, the sufferer) -> the sufferer (8203ms)\nWhat is schizophrenia?\tassessment interview\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were referred for, assessment interview) -> assessment interview (8187ms)\nWhat is schizophrenia?\tthe treatment\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia SEROQUEL, is indicated for, the treatment) -> the treatment (8203ms)\nWhat is schizophrenia?\tFluoridation\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Fluoridation, produces, schizophrenia) -> Fluoridation (8109ms)\nWhat is schizophrenia?\tThe symptoms\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (The symptoms, characterizing, Schizophrenia) -> The symptoms (8125ms)\nWhat is schizophrenia?\tJapan\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Japan, has decided to do away with, the term schizophrenia) -> Japan (8141ms)\nWhat is schizophrenia?\tthe person\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, can be very difficult for, the person) -> the person (8187ms)\nWhat is schizophrenia?\ttreatment\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is an indication for, treatment) -> treatment (8141ms)\nWhat is schizophrenia?\ttrials\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, there is an urgent need for, trials) -> trials (8157ms)\nWhat is schizophrenia?\t6 months\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, there is a requirement for, 6 months) -> 6 months (8125ms)\nWhat is schizophrenia?\tWestern\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, appears to be roughly the same for, Western) -> Western (8203ms)\nWhat is schizophrenia?\ttype 2 diabetes\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are at increased risk for, type 2 diabetes) -> type 2 diabetes (8203ms)\nWhat is schizophrenia?\tDavid Cornwell Tony Zichi\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (David Cornwell Tony Zichi, did n?t choose to have, schizophrenia) -> David Cornwell Tony Zichi (8141ms)\nWhat is schizophrenia?\tinfluenza exposure\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was increased 7-fold for, influenza exposure) -> influenza exposure (8125ms)\nWhat is schizophrenia?\tthe minor allele\t0.11111111111\tWhat is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the minor allele) -> the minor allele (8141ms)\nWhat is schizophrenia?\tauditory cortex\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (auditory cortex, reliably characterizes, schizophrenia) -> auditory cortex (8157ms)\nWhat is schizophrenia?\ta psychosis\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a psychosis, was \"doing, a schizophrenia) -> a psychosis (8109ms)\nWhat is schizophrenia?\tMalkin\t0.11111111111\tWhat is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Malkin, did n?t say something like, ?Schizophrenia) -> Malkin (8156ms)\nWhat is schizophrenia?\tsmall non-connected areas\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (small non-connected areas, creates, schizophrenia) -> small non-connected areas (8247ms)\nWhat is schizophrenia?\tA large study\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A large study, found the risk of, schizophrenia) -> A large study (8278ms)\nWhat is schizophrenia?\tthe world scientists\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the world scientists, are finding, schizophrenia-related genes) -> the world scientists (8278ms)\nWhat is schizophrenia?\tmother-infant interaction\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (mother-infant interaction, found in, the schizophrenia group) -> mother-infant interaction (8278ms)\nWhat is schizophrenia?\tAuditory hallucinations\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Auditory hallucinations, are classically found in, schizophrenia) -> Auditory hallucinations (8307ms)\nWhat is schizophrenia?\tDopamine hypothesis of schizophrenia\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Dopamine hypothesis of schizophrenia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dopamine%20hypothesis%20of%20schizophrenia) -> Dopamine hypothesis of schizophrenia (8232ms)\nWhat is schizophrenia?\tstructures\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (structures, found to be abnormal in, chronic schizophrenia) -> structures (8278ms)\nWhat is schizophrenia?\tHe?s\t-0.0\tWhat is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (He?s, dealt with, schizophrenia) -> He?s (8292ms)\nWhat is schizophrenia?\ta family member\t-0.0\tWhat is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a family member, dealing with, schizophrenia) -> a family member (8233ms)\nWhat is schizophrenia?\tthe nervous system\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the nervous system, is found in, schizophrenia) -> the nervous system (8248ms)\nWhat is schizophrenia?\tIsrael\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Israel, is creating a kind of, moral schizophrenia) -> Israel (8307ms)\nWhat is schizophrenia?\t14 Brown\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (14 Brown, found a seven-fold increased risk of, schizophrenia) -> 14 Brown (8278ms)\nWhat is schizophrenia?\tno genes\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (no genes, have been found for, depression or schizophrenia) -> no genes (8248ms)\nWhat is schizophrenia?\t18 Brown\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (18 Brown, found a seven-fold increased risk of, schizophrenia) -> 18 Brown (8292ms)\nWhat is schizophrenia?\tThe work\t-0.0\tWhat is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (The work, deals with, schizophrenia) -> The work (8292ms)\nWhat is schizophrenia?\tINVEGA? and Schizophrenia\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (INVEGA? and Schizophrenia, Find, schizophrenia) -> INVEGA? and Schizophrenia (8248ms)\nWhat is schizophrenia?\tHelping\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Helping, Find Treatment For, Schizophrenia) -> Helping (8233ms)\nWhat is schizophrenia?\tenrollment\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (enrollment, was found in, 6 first-episode schizophrenia) -> enrollment (8307ms)\nWhat is schizophrenia?\tThe MGS study\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (The MGS study, also found an association between, schizophrenia) -> The MGS study (8233ms)\nWhat is schizophrenia?\tthe disturbance\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the disturbance, is found in, schizophrenia) -> the disturbance (8233ms)\nWhat is schizophrenia?\tBrian Cohn\t-0.0\tWhat is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (Brian Cohn, was learning to deal with, the Schizophrenia) -> Brian Cohn (8263ms)\nWhat is schizophrenia?\tdiagnostic , physical abnormality\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (diagnostic , physical abnormality, is found in, schizophrenia) -> diagnostic , physical abnormality (8307ms)\nWhat is schizophrenia?\tDivergent ERP responses\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Divergent ERP responses, have been found in, schizophrenia) -> Divergent ERP responses (8262ms)\nWhat is schizophrenia?\tA scientist\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A scientist, finds a gene associated with, schizophrenia) -> A scientist (8278ms)\nWhat is schizophrenia?\tMore information\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (More information, can be found about, schizophrenia) -> More information (8248ms)\nWhat is schizophrenia?\ta freelance writer\t-0.0\tWhat is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a freelance writer, has been dealing with, schizophrenia) -> a freelance writer (8247ms)\nWhat is schizophrenia?\tschizophrenia_research\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (schizophrenia_research, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Schizophrenia%20Research) -> schizophrenia_research (8278ms)\nWhat is schizophrenia?\tA peptide\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A peptide, found in, schizophrenia and autism) -> A peptide (8292ms)\nWhat is schizophrenia?\tCognitive deficits\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Cognitive deficits, found in, patients with schizophrenia) -> Cognitive deficits (8307ms)\nWhat is schizophrenia?\tStudy\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Study, finds patients with, schizophrenia) -> Study (8292ms)\nWhat is schizophrenia?\ta relation\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (a relation, has been found between, schizophrenia) -> a relation (8248ms)\nWhat is schizophrenia?\tMorality\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Morality, creates, schizophrenia) -> Morality (8233ms)\nWhat is schizophrenia?\t7 Brown\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (7 Brown, found a seven-fold increased risk of, schizophrenia) -> 7 Brown (8247ms)\nWhat is schizophrenia?\tSedlacek\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Sedlacek, was found to have, schizophrenia) -> Sedlacek (8233ms)\nWhat is schizophrenia?\tDisorganized schizophrenia\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Disorganized schizophrenia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Disorganized%20schizophrenia) -> Disorganized schizophrenia (8292ms)\nWhat is schizophrenia?\t4 / 5\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (4 / 5, Find, More Schizophrenia) -> 4 / 5 (8307ms)\nWhat is schizophrenia?\tI?ve\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (I?ve, always found, schizophrenia fuckin? excellent) -> I?ve (8262ms)\nWhat is schizophrenia?\tNumerous brain abnormalities\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Numerous brain abnormalities, have been found in, schizophrenia) -> Numerous brain abnormalities (8307ms)\nWhat is schizophrenia?\tThe new reality\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (The new reality, created the feeling of, schizophrenia) -> The new reality (8307ms)\nWhat is schizophrenia?\taetiology\t-0.0\tWhat is schizophrenia? -> $x: ($x, refer, schizophrenia) -> (aetiology, is referred to as, schizophrenia) -> aetiology (8262ms)\nWhat is schizophrenia?\ta family\t-0.0\tWhat is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a family, dealing with, schizophrenia) -> a family (8292ms)\nWhat is schizophrenia?\tNo single cause\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (No single cause, has been found for, schizophrenia) -> No single cause (8262ms)\nWhat is schizophrenia?\te-mail\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (e-mail, Find, schizophrenia) -> e-mail (8278ms)\nWhat is schizophrenia?\tlong-term follow-up\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (long-term follow-up, usually finds, schizophrenia) -> long-term follow-up (8262ms)\nWhat is schizophrenia?\tKing\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (King, found the exact same prevalence of, schizophrenia) -> King (8248ms)\nWhat is schizophrenia?\tcontext use\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (context use, found previously in, schizophrenia and male SPD) -> context use (8248ms)\nWhat is schizophrenia?\tThe researchers\t-0.0\tWhat is schizophrenia? -> $x: ($x, happen to, schizophrenia) -> (The researchers, might happen to, schizophrenia cases) -> The researchers (8233ms)\nWhat is schizophrenia?\tNo association\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (No association, was found with, schizophrenia) -> No association (8248ms)\nWhat is schizophrenia?\tNava?s dual positions\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Nava?s dual positions, had created a sort of, ?schizophrenia?) -> Nava?s dual positions (8262ms)\nWhat is schizophrenia?\tevidence\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (evidence, found in, all schizophrenia algorithms) -> evidence (8233ms)\nWhat is schizophrenia?\tKing?s research\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (King?s research, found a two-fold increase in, schizophrenia) -> King?s research (8278ms)\nWhat is schizophrenia?\tan increased receptor density\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (an increased receptor density, was found in, schizophrenia) -> an increased receptor density (8262ms)\nWhat is schizophrenia?\thigh levels\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (high levels, are found in, schizophrenia) -> high levels (8307ms)\nWhat is schizophrenia?\tthe literature inquiring\t-0.0\tWhat is schizophrenia? -> $x: ($x, happen to, schizophrenia) -> (the literature inquiring, happens to, Schizophrenia) -> the literature inquiring (8262ms)\nWhat is schizophrenia?\tDurden\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Durden, was found to be suffering from, paranoid schizophrenia) -> Durden (8248ms)\nWhat is schizophrenia?\tIntellectual impairments\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Intellectual impairments, are commonly found in, schizophrenia) -> Intellectual impairments (8292ms)\nWhat is schizophrenia?\tapoptosis\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (apoptosis, is found associated with, schizophrenia) -> apoptosis (8233ms)\nWhat is schizophrenia?\teveryone disappoints\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (everyone disappoints, creates a bit of, schizophrenia) -> everyone disappoints (8233ms)\nWhat is schizophrenia?\tyoung Muslim\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (young Muslim, creates, a schizophrenia) -> young Muslim (8262ms)\nWhat is schizophrenia?\tAnorexia\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Anorexia, has been found to be as inheritable as, schizophrenia) -> Anorexia (8292ms)\nWhat is schizophrenia?\tthe scientists\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the scientists, must find out the cause of, schizophrenia) -> the scientists (8278ms)\nWhat is schizophrenia?\tcyberspace networks\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (cyberspace networks, also create, schizophrenia) -> cyberspace networks (8278ms)\nWhat is schizophrenia?\t1959\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (1959, found the rate of, Schizophrenia) -> 1959 (8278ms)\nWhat is schizophrenia?\tScotland\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Scotland, found a significant decline in, schizophrenia) -> Scotland (8233ms)\nWhat is schizophrenia?\tAn earlier study\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (An earlier study, found twice the risk of, schizophrenia) -> An earlier study (8307ms)\nWhat is schizophrenia?\tfood\t-0.0\tWhat is schizophrenia? -> $x: ($x, refer, schizophrenia) -> (food, refers to, ?schizophrenia) -> food (8307ms)\nWhat is schizophrenia?\tventral pathway abnormalities\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (ventral pathway abnormalities, were only found in, schizophrenia) -> ventral pathway abnormalities (8292ms)\nWhat is schizophrenia?\tShame based religion\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Shame based religion, created, a certain schizophrenia) -> Shame based religion (8262ms)\nWhat is schizophrenia?\tno country\t-0.0\tWhat is schizophrenia? -> $x: ($x, found, schizophrenia) -> (no country, was found to be free of, schizophrenia) -> no country (8292ms)\nWhat is schizophrenia?\talcoholics\t-0.0\tWhat is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (alcoholics, have had to deal with, schizophrenia) -> alcoholics (8292ms)\nWhat is schizophrenia?\t?Israel\t-0.0\tWhat is schizophrenia? -> $x: ($x, create, schizophrenia) -> (?Israel, is creating a kind of, moral schizophrenia) -> ?Israel (8262ms)\nWhat is schizophrenia?\tcommon\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (common, is, Schizophrenia ?) -> common (8498ms)\nWhat is schizophrenia?\tOlder people and children\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Older people and children, can develop, schizophrenia) -> Older people and children (8336ms)\nWhat is schizophrenia?\t?clear consciousness\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (?clear consciousness, is contestable in, schizophrenia) -> ?clear consciousness (8601ms)\nWhat is schizophrenia?\tNRG1-induced AKT phosphorylation\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (NRG1-induced AKT phosphorylation, is decreased in, schizophrenia) -> NRG1-induced AKT phosphorylation (8548ms)\nWhat is schizophrenia?\tthe store , redheads and blonds\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the store , redheads and blonds, are prone to, schizophrenia) -> the store , redheads and blonds (8575ms)\nWhat is schizophrenia?\tthe thought process\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the thought process, is more similar to, schizophrenia) -> the thought process (8392ms)\nWhat is schizophrenia?\tAfghanistan\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Afghanistan, is, schizophrenia) -> Afghanistan (8584ms)\nWhat is schizophrenia?\texpertise\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (expertise, is, schizophrenia) -> expertise (8593ms)\nWhat is schizophrenia?\tmicroRNAs\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (microRNAs, may be altered in, schizophrenia) -> microRNAs (8433ms)\nWhat is schizophrenia?\tDepression\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Depression, is an emotion associated with, Schizophrenia) -> Depression (8557ms)\nWhat is schizophrenia?\tThe problem\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The problem, is highly similar to, schizophrenia) -> The problem (8610ms)\nWhat is schizophrenia?\t30 times higher\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 30 times higher) -> 30 times higher (8392ms)\nWhat is schizophrenia?\thead injury\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (head injury, however can be seen in, schizophrenia) -> head injury (8601ms)\nWhat is schizophrenia?\tcyanocobalamin\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cyanocobalamin, is useful in treating, schizophrenia) -> cyanocobalamin (8365ms)\nWhat is schizophrenia?\t1 percent\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1 percent) -> 1 percent (8566ms)\nWhat is schizophrenia?\tPaliperidone\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Paliperidone, is used to treat, schizophrenia) -> Paliperidone (8584ms)\nWhat is schizophrenia?\tCB1R immunoreactivity\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (CB1R immunoreactivity, may be common in, schizophrenia) -> CB1R immunoreactivity (8593ms)\nWhat is schizophrenia?\t3.5\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was about, 3.5) -> 3.5 (8519ms)\nWhat is schizophrenia?\tLewis SW\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Lewis SW, Is, Schizophrenia) -> Lewis SW (8350ms)\nWhat is schizophrenia?\tReligion\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Religion, is, schizophrenia) -> Religion (8566ms)\nWhat is schizophrenia?\tmotivation and judgment\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (motivation and judgment, are all common in, schizophrenia) -> motivation and judgment (8350ms)\nWhat is schizophrenia?\tthe big concerns\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the big concerns, is, schizophrenia) -> the big concerns (8392ms)\nWhat is schizophrenia?\tmarijuana usage\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (marijuana usage, can be a contributing trigger to, schizophrenia) -> marijuana usage (8472ms)\nWhat is schizophrenia?\tcommon genetic variations\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (common genetic variations, can lead to, schizophrenia) -> common genetic variations (8321ms)\nWhat is schizophrenia?\tone percent\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, one percent) -> one percent (8433ms)\nWhat is schizophrenia?\tinadequate social skills\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (inadequate social skills, can bring on, schizophrenia) -> inadequate social skills (8379ms)\nWhat is schizophrenia?\tAn Overview\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (An Overview, Is, Schizophrenia) -> An Overview (8584ms)\nWhat is schizophrenia?\tHoffman-LaRoche\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Hoffman-LaRoche, is, schizophrenia) -> Hoffman-LaRoche (8392ms)\nWhat is schizophrenia?\tthe extent\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, little is known about, the extent) -> the extent (8379ms)\nWhat is schizophrenia?\tpsychiatry\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (psychiatry, are, schizophrenia) -> psychiatry (8419ms)\nWhat is schizophrenia?\twhites\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (whites, to be diagnosed with, schizophrenia) -> whites (8350ms)\nWhat is schizophrenia?\tDysbandin expression\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Dysbandin expression, is decreased in, schizophrenia) -> Dysbandin expression (8419ms)\nWhat is schizophrenia?\tToxo infection\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Toxo infection, may be linked to, schizophrenia) -> Toxo infection (8419ms)\nWhat is schizophrenia?\tamphetamines\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (amphetamines, are virtually identical to, schizophrenia) -> amphetamines (8433ms)\nWhat is schizophrenia?\tadverse conditions\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adverse conditions, are likely linked to, schizophrenia) -> adverse conditions (8498ms)\nWhat is schizophrenia?\tLorazepam\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Lorazepam, can help some patients with, schizophrenia) -> Lorazepam (8601ms)\nWhat is schizophrenia?\tMET\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (MET, influenced the risk for, schizophrenia) -> MET (8419ms)\nWhat is schizophrenia?\tGRM3 gene\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (GRM3 gene, have been implicated in, schizophrenia) -> GRM3 gene (8528ms)\nWhat is schizophrenia?\tmore than one month\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (more than one month, is needed to diagnose, schizophrenia) -> more than one month (8321ms)\nWhat is schizophrenia?\tDISC1 binding partners\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (DISC1 binding partners, is reduced in, schizophrenia) -> DISC1 binding partners (8350ms)\nWhat is schizophrenia?\tpruning\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (pruning, has been implicated in, schizophrenia) -> pruning (8472ms)\nWhat is schizophrenia?\tthe above factors\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (the above factors, influence the course of, schizophrenia) -> the above factors (8485ms)\nWhat is schizophrenia?\tHallucinations\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Hallucinations, are common in, schizophrenia) -> Hallucinations (8459ms)\nWhat is schizophrenia?\tCLOZAPINE\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (CLOZAPINE, is used to treat, schizophrenia) -> CLOZAPINE (8321ms)\nWhat is schizophrenia?\tseroquel\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (seroquel, is a drug that might treat, Schizophrenia) -> seroquel (8575ms)\nWhat is schizophrenia?\tpredominant concern\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (predominant concern, are, schizophrenia) -> predominant concern (8547ms)\nWhat is schizophrenia?\tcognitive impairment\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cognitive impairment, was higher in, schizophrenia) -> cognitive impairment (8365ms)\nWhat is schizophrenia?\tvoice hearers\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (voice hearers, can be diagnosed with, schizophrenia) -> voice hearers (8584ms)\nWhat is schizophrenia?\tThe same\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (The same, can be said of, Schizophrenia) -> The same (8321ms)\nWhat is schizophrenia?\tThe condition\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The condition, is thought to be linked to, schizophrenia) -> The condition (8508ms)\nWhat is schizophrenia?\tcognition\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cognition, have been reported in, schizophrenia) -> cognition (8350ms)\nWhat is schizophrenia?\tsample size\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia Bulletin, is all about, sample size) -> sample size (8350ms)\nWhat is schizophrenia?\tthe past\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the past, were, schizophrenia) -> the past (8538ms)\nWhat is schizophrenia?\tSo lobotomy\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (So lobotomy, was used to treat, schizophrenia) -> So lobotomy (8406ms)\nWhat is schizophrenia?\tModern medicine\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Modern medicine, can diagnose, schizophrenia) -> Modern medicine (8557ms)\nWhat is schizophrenia?\thigher doses\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (higher doses, is used to treat, schizophrenia) -> higher doses (8529ms)\nWhat is schizophrenia?\t1 %\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1 %) -> 1 % (8321ms)\nWhat is schizophrenia?\tDISC1 splice variants\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (DISC1 splice variants, are upregulated in, schizophrenia) -> DISC1 splice variants (8459ms)\nWhat is schizophrenia?\ttotal neuron number\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (total neuron number, are reduced in, schizophrenia) -> total neuron number (8601ms)\nWhat is schizophrenia?\tclozapine\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (clozapine, is a drug that might treat, Schizophrenia) -> clozapine (8538ms)\nWhat is schizophrenia?\tThe drug\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The drug, is used to treat, schizophrenia) -> The drug (8365ms)\nWhat is schizophrenia?\tsensory input processing\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (sensory input processing, is often impaired in, schizophrenia) -> sensory input processing (8498ms)\nWhat is schizophrenia?\tPanic attacks\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Panic attacks, are often associated to, schizophrenia) -> Panic attacks (8419ms)\nWhat is schizophrenia?\tAbilify\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Abilify, can help, schizophrenia) -> Abilify (8584ms)\nWhat is schizophrenia?\tmental illnesses\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (mental illnesses, is, schizophrenia) -> mental illnesses (8498ms)\nWhat is schizophrenia?\tnow its most overt manifestation\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (now its most overt manifestation, is, schizophrenia) -> now its most overt manifestation (8621ms)\nWhat is schizophrenia?\tonly psychiatrists\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (only psychiatrists, can provide for, schizophrenia) -> only psychiatrists (8620ms)\nWhat is schizophrenia?\tFlutterrage\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Flutterrage, is, schizophrenia) -> Flutterrage (8498ms)\nWhat is schizophrenia?\tpatients Risperidone\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (patients Risperidone, is used to treat, schizophrenia) -> patients Risperidone (8557ms)\nWhat is schizophrenia?\tnineteen million dollars\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, nineteen million dollars) -> nineteen million dollars (8519ms)\nWhat is schizophrenia?\tthe issue\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the issue, was, schizophrenia) -> the issue (8620ms)\nWhat is schizophrenia?\tthe Mentally Ill\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the Mentally Ill, Is, Schizophrenia) -> the Mentally Ill (8584ms)\nWhat is schizophrenia?\tThe a7-nAChRs\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The a7-nAChRs, are also linked to, Schizophrenia) -> The a7-nAChRs (8459ms)\nWhat is schizophrenia?\tAn example of a psychotic disorder\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (An example of a psychotic disorder, is, Schizophrenia) -> An example of a psychotic disorder (8459ms)\nWhat is schizophrenia?\tClozaril\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Clozaril, is used to treat, schizophrenia) -> Clozaril (8575ms)\nWhat is schizophrenia?\tthe definition\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, are questions about, the definition) -> the definition (8601ms)\nWhat is schizophrenia?\tBipolar Disorder\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Bipolar Disorder, can go on to develop, Schizophrenia) -> Bipolar Disorder (8610ms)\nWhat is schizophrenia?\tADHD children\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (ADHD children, were developed to treat, schizophrenia) -> ADHD children (8419ms)\nWhat is schizophrenia?\tthe cortex\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cortex, is extensive in, schizophrenia) -> the cortex (8419ms)\nWhat is schizophrenia?\tThe first example\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The first example, is, schizophrenia) -> The first example (8547ms)\nWhat is schizophrenia?\t60 Minutes and PBS Frontline\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (60 Minutes and PBS Frontline, is, schizophrenia) -> 60 Minutes and PBS Frontline (8485ms)\nWhat is schizophrenia?\tPsychosocial treatments\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Psychosocial treatments, can help people with, schizophrenia) -> Psychosocial treatments (8557ms)\nWhat is schizophrenia?\tSchizo-Affctive\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Schizo-Affctive, is, Schizophrenia) -> Schizo-Affctive (8365ms)\nWhat is schizophrenia?\tdissociation\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (dissociation, can lead to, schizophrenia) -> dissociation (8459ms)\nWhat is schizophrenia?\tone twin\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (one twin, can develop, schizophrenia) -> one twin (8485ms)\nWhat is schizophrenia?\tFamily counselling\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Family counselling, can help people with, schizophrenia) -> Family counselling (8433ms)\nWhat is schizophrenia?\tantipsychotics\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (antipsychotics, are used to treat, schizophrenia) -> antipsychotics (8459ms)\nWhat is schizophrenia?\tThe hippocampus\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The hippocampus, is strongly implicated in, schizophrenia) -> The hippocampus (8406ms)\nWhat is schizophrenia?\tadderall users\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adderall users, is related to, schizophrenia) -> adderall users (8406ms)\nWhat is schizophrenia?\tOLANZAPINE\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (OLANZAPINE, is used to treat, schizophrenia) -> OLANZAPINE (8419ms)\nWhat is schizophrenia?\tspeed\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (speed, are known problems in, schizophrenia) -> speed (8392ms)\nWhat is schizophrenia?\tdisjointed ways\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (disjointed ways, is common in, schizophrenia) -> disjointed ways (8472ms)\nWhat is schizophrenia?\ta 10 % risk\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia, is associated with about, a 10 % risk) -> a 10 % risk (8557ms)\nWhat is schizophrenia?\tniacin pyridoxine\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (niacin pyridoxine, is useful in treating, schizophrenia) -> niacin pyridoxine (8610ms)\nWhat is schizophrenia?\tmultiple pathogens\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (multiple pathogens, have been implicated in, schizophrenia) -> multiple pathogens (8547ms)\nWhat is schizophrenia?\tQuetiapine\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Quetiapine, is used to treat, schizophrenia) -> Quetiapine (8593ms)\nWhat is schizophrenia?\tprevalent\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia spectrum disorders, are about twice as, prevalent) -> prevalent (8519ms)\nWhat is schizophrenia?\tonline zyprexa\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (online zyprexa, can be prescribed for, schizophrenia) -> online zyprexa (8433ms)\nWhat is schizophrenia?\ttri-personal\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (tri-personal, is, schizophrenia) -> tri-personal (8472ms)\nWhat is schizophrenia?\trisperdal\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (risperdal, is a drug that might treat, Schizophrenia) -> risperdal (8472ms)\nWhat is schizophrenia?\t2006\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (2006, is, schizophrenia) -> 2006 (8557ms)\nWhat is schizophrenia?\tan expert\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (an expert, can cure, schizophrenia) -> an expert (8378ms)\nWhat is schizophrenia?\tsymptoms\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (symptoms, can be diagnosed as, schizophrenia) -> symptoms (8459ms)\nWhat is schizophrenia?\tinsight\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (insight, was first identified in, schizophrenia) -> insight (8593ms)\nWhat is schizophrenia?\tcomparison subjects\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (comparison subjects, has been shown in, schizophrenia) -> comparison subjects (8575ms)\nWhat is schizophrenia?\tchromosome 16\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (chromosome 16, can increase the risk of, schizophrenia) -> chromosome 16 (8498ms)\nWhat is schizophrenia?\tAtypical antipsychotics\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Atypical antipsychotics, are used to treat, schizophrenia) -> Atypical antipsychotics (8365ms)\nWhat is schizophrenia?\tBipolar illness\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Bipolar illness, is, schizophrenia) -> Bipolar illness (8433ms)\nWhat is schizophrenia?\tCOMT\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (COMT, is involved in, schizophrenia) -> COMT (8446ms)\nWhat is schizophrenia?\tLOXAPINE\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (LOXAPINE, is used to manage, schizophrenia) -> LOXAPINE (8621ms)\nWhat is schizophrenia?\tOnly a doctor\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Only a doctor, can diagnose, schizophrenia) -> Only a doctor (8350ms)\nWhat is schizophrenia?\tchromosome 8p12\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (chromosome 8p12, influences susceptibility to, schizophrenia) -> chromosome 8p12 (8379ms)\nWhat is schizophrenia?\tnicotinic acid\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (nicotinic acid, is effective in treating, schizophrenia) -> nicotinic acid (8392ms)\nWhat is schizophrenia?\tRecognition\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Recognition, can be normalized in, schizophrenia) -> Recognition (8446ms)\nWhat is schizophrenia?\taddiction\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (addiction, are, schizophrenia) -> addiction (8529ms)\nWhat is schizophrenia?\tthe diagnosis\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the diagnosis, is, schizophrenia) -> the diagnosis (8447ms)\nWhat is schizophrenia?\tEgon Leubner\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Egon Leubner, was interested in, schizophrenia) -> Egon Leubner (8538ms)\nWhat is schizophrenia?\tcritical roles\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (critical roles, is affected in, schizophrenia) -> critical roles (8378ms)\nWhat is schizophrenia?\tGlutamate\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Glutamate, is also deficient in, schizophrenia) -> Glutamate (8433ms)\nWhat is schizophrenia?\tAfrican Americans\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (African Americans, to be diagnosed with, schizophrenia) -> African Americans (8610ms)\nWhat is schizophrenia?\tAcupuncture\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Acupuncture, was effective in alleviating, schizophrenia) -> Acupuncture (8485ms)\nWhat is schizophrenia?\tAntipsychotic medication\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Antipsychotic medication, is key to treating, schizophrenia) -> Antipsychotic medication (8485ms)\nWhat is schizophrenia?\tsocial support\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (social support, might influence the prevalence of, schizophrenia) -> social support (8620ms)\nWhat is schizophrenia?\tsuch damage\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (such damage, is also seen in, schizophrenia) -> such damage (8547ms)\nWhat is schizophrenia?\tthe disease\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, should be educated about, the disease) -> the disease (8519ms)\nWhat is schizophrenia?\tOne Dutch reader\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (One Dutch reader, was particularly interested in, schizophrenia) -> One Dutch reader (8547ms)\nWhat is schizophrenia?\tsevere nausea\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (severe nausea, is used to treat, schizophrenia) -> severe nausea (8472ms)\nWhat is schizophrenia?\t1 Yes No\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (1 Yes No, is, schizophrenia) -> 1 Yes No (8557ms)\nWhat is schizophrenia?\t10\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 10) -> 10 (8508ms)\nWhat is schizophrenia?\ta given point\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (a given point, can be quite similar between, schizophrenia) -> a given point (8336ms)\nWhat is schizophrenia?\tthe patients\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the patients, were, schizophrenia) -> the patients (8379ms)\nWhat is schizophrenia?\tAmong the health conditions\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Among the health conditions, are, Schizophrenia) -> Among the health conditions (8459ms)\nWhat is schizophrenia?\tsentences\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (sentences, was normal in, schizophrenia) -> sentences (8433ms)\nWhat is schizophrenia?\tNAMI | Schizophrenia\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (NAMI | Schizophrenia, Is, Schizophrenia) -> NAMI | Schizophrenia (8575ms)\nWhat is schizophrenia?\toveractive dopamine pathways\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (overactive dopamine pathways, are implicated in, schizophrenia) -> overactive dopamine pathways (8392ms)\nWhat is schizophrenia?\tThe first one\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The first one, is, Schizophrenia) -> The first one (8508ms)\nWhat is schizophrenia?\t13 percent\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 13 percent) -> 13 percent (8472ms)\nWhat is schizophrenia?\tprivate\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (private, Is, Schizophrenia) -> private (8321ms)\nWhat is schizophrenia?\tThe alpha-7 receptor\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The alpha-7 receptor, is important in, schizophrenia) -> The alpha-7 receptor (8566ms)\nWhat is schizophrenia?\tcontrol\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (control, are, schizophrenia) -> control (8519ms)\nWhat is schizophrenia?\tHaldol\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Haldol, was used to treat, schizophrenia) -> Haldol (8378ms)\nWhat is schizophrenia?\tToxo\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Toxo, is, schizophrenia) -> Toxo (8321ms)\nWhat is schizophrenia?\tthe depression\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the depression, can accompany, Schizophrenia) -> the depression (8547ms)\nWhat is schizophrenia?\tpsychological treatments\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (psychological treatments, can help people with, schizophrenia) -> psychological treatments (8336ms)\nWhat is schizophrenia?\tno organic lesion\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (no organic lesion, are, schizophrenia) -> no organic lesion (8584ms)\nWhat is schizophrenia?\tNIMH Schizophrenia ?\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (NIMH Schizophrenia ?, is, schizophrenia) -> NIMH Schizophrenia ? (8584ms)\nWhat is schizophrenia?\tPsychotherapy\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Psychotherapy, be used to treat, Schizophrenia) -> Psychotherapy (8566ms)\nWhat is schizophrenia?\t66\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (66, is dopamine implicated in, schizophrenia) -> 66 (8498ms)\nWhat is schizophrenia?\tprolonged meth abuse\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (prolonged meth abuse, can resemble those of, schizophrenia) -> prolonged meth abuse (8538ms)\nWhat is schizophrenia?\tPCP\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (PCP, can be confused with, schizophrenia) -> PCP (8575ms)\nWhat is schizophrenia?\t25 %\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 25 %) -> 25 % (8365ms)\nWhat is schizophrenia?\tglutamate\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (glutamate, may be involved in, schizophrenia) -> glutamate (8584ms)\nWhat is schizophrenia?\tsun-deprived regions\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (sun-deprived regions, are especially prone to, schizophrenia) -> sun-deprived regions (8566ms)\nWhat is schizophrenia?\tneurotransmitters\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (neurotransmitters, has been linked to, schizophrenia) -> neurotransmitters (8575ms)\nWhat is schizophrenia?\tThe same deficiencies\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The same deficiencies, are common in, schizophrenia) -> The same deficiencies (8584ms)\nWhat is schizophrenia?\tVarious treatments\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Various treatments, are used in handling, schizophrenia) -> Various treatments (8365ms)\nWhat is schizophrenia?\tfive\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (five, can develop, schizophrenia) -> five (8593ms)\nWhat is schizophrenia?\t50 %\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 50 %) -> 50 % (8433ms)\nWhat is schizophrenia?\tretreatism\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (retreatism, is, schizophrenia) -> retreatism (8538ms)\nWhat is schizophrenia?\tKundalini Yoga\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Kundalini Yoga, are used to model, Schizophrenia) -> Kundalini Yoga (8575ms)\nWhat is schizophrenia?\tperc\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (perc, can increase the risk of, schizophrenia) -> perc (8307ms)\nWhat is schizophrenia?\tRisperidone Risperidone\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Risperidone Risperidone, is used to treat, schizophrenia) -> Risperidone Risperidone (8350ms)\nWhat is schizophrenia?\tadderall customers\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adderall customers, is comparable to, schizophrenia) -> adderall customers (8538ms)\nWhat is schizophrenia?\tthe corpus callosum\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the corpus callosum, is abnormal in, schizophrenia) -> the corpus callosum (8557ms)\nWhat is schizophrenia?\tcannabis use\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (cannabis use, can trigger, schizophrenia) -> cannabis use (8566ms)\nWhat is schizophrenia?\t3 times\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 3 times) -> 3 times (8321ms)\nWhat is schizophrenia?\tThe most common psychosis\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The most common psychosis, is, schizophrenia) -> The most common psychosis (8405ms)\nWhat is schizophrenia?\tmemory saccade\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (memory saccade, is often impaired in, schizophrenia) -> memory saccade (8529ms)\nWhat is schizophrenia?\tthe innocent and guilty\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the innocent and guilty, is, Schizophrenia) -> the innocent and guilty (8446ms)\nWhat is schizophrenia?\tthe young people\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the young people, was then considered to be, schizophrenia) -> the young people (8557ms)\nWhat is schizophrenia?\tThe most commonly known mental health issue\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The most commonly known mental health issue, is, schizophrenia ?) -> The most commonly known mental health issue (8433ms)\nWhat is schizophrenia?\tthe cause\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the cause, is, Schizophrenia) -> the cause (8378ms)\nWhat is schizophrenia?\tthe answer\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the answer, is, schizophrenia) -> the answer (8307ms)\nWhat is schizophrenia?\tthe illness\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, are educated about, the illness) -> the illness (8321ms)\nWhat is schizophrenia?\tthe most prevalent psychosis\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most prevalent psychosis, is, schizophrenia) -> the most prevalent psychosis (8621ms)\nWhat is schizophrenia?\tsubstance misuse\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (substance misuse, can aggravate the symptoms of, schizophrenia) -> substance misuse (8508ms)\nWhat is schizophrenia?\t30 %\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is only about, 30 %) -> 30 % (8529ms)\nWhat is schizophrenia?\tnon-users\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (non-users, to be diagnosed with, schizophrenia) -> non-users (8566ms)\nWhat is schizophrenia?\tCBT\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (CBT, can successfully treat people with, schizophrenia) -> CBT (8365ms)\nWhat is schizophrenia?\tThe diagnosis\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The diagnosis, was, schizophrenia) -> The diagnosis (8508ms)\nWhat is schizophrenia?\tpsychosis\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (psychosis, can occur with, schizophrenia) -> psychosis (8593ms)\nWhat is schizophrenia?\tLAN za peen\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (LAN za peen, is used to treat, schizophrenia) -> LAN za peen (8392ms)\nWhat is schizophrenia?\tpossible impacts\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia patients, little is known about, possible impacts) -> possible impacts (8621ms)\nWhat is schizophrenia?\tRisperdal\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Risperdal, is approved to treat, schizophrenia) -> Risperdal (8593ms)\nWhat is schizophrenia?\tDrug use\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Drug use, can mimic the symptoms of, schizophrenia) -> Drug use (8365ms)\nWhat is schizophrenia?\tbrain cells\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (brain cells, are damaged in, schizophrenia) -> brain cells (8405ms)\nWhat is schizophrenia?\tprotein X\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (protein X, was involved in, schizophrenia) -> protein X (8459ms)\nWhat is schizophrenia?\tBPD\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was written about, BPD) -> BPD (8538ms)\nWhat is schizophrenia?\tthe dentate gyrus\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the dentate gyrus, was decreased in, schizophrenia) -> the dentate gyrus (8584ms)\nWhat is schizophrenia?\tthe risk factors\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is crucial to finding out about, the risk factors) -> the risk factors (8365ms)\nWhat is schizophrenia?\tprivate What\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (private What, is, schizophrenia) -> private What (8508ms)\nWhat is schizophrenia?\tperception and attention\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (perception and attention, are common in, schizophrenia) -> perception and attention (8529ms)\nWhat is schizophrenia?\tNMDARs\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (NMDARs, was suspected in, schizophrenia) -> NMDARs (8529ms)\nWhat is schizophrenia?\tsuch functions\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (such functions, has been implicated in, schizophrenia) -> such functions (8538ms)\nWhat is schizophrenia?\tan anti-depressant and\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (an anti-depressant and, can treat, schizophrenia) -> an anti-depressant and (8350ms)\nWhat is schizophrenia?\tdeeper laminae\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (deeper laminae, are decreased in, schizophrenia) -> deeper laminae (8433ms)\nWhat is schizophrenia?\tfickle human behavior\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (fickle human behavior, can be related to, schizophrenia) -> fickle human behavior (8620ms)\nWhat is schizophrenia?\tperforming lobotomies\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (performing lobotomies, was to treat, schizophrenia) -> performing lobotomies (8621ms)\nWhat is schizophrenia?\tDopaminergic overactivity\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Dopaminergic overactivity, is linked to, schizophrenia) -> Dopaminergic overactivity (8529ms)\nWhat is schizophrenia?\tOCD\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (OCD, is a precursor to, Schizophrenia) -> OCD (8498ms)\nWhat is schizophrenia?\tZyprexa\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Zyprexa, is approved to treat, schizophrenia) -> Zyprexa (8610ms)\nWhat is schizophrenia?\tSubstance abuse\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Substance abuse, is very common in, Schizophrenia) -> Substance abuse (8621ms)\nWhat is schizophrenia?\tattention training\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (attention training, is effective in, schizophrenia) -> attention training (8419ms)\nWhat is schizophrenia?\tphysical exercise\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (physical exercise, can help reduce symptoms of, schizophrenia) -> physical exercise (8575ms)\nWhat is schizophrenia?\tresults\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (results, are normal in, schizophrenia) -> results (8601ms)\nWhat is schizophrenia?\tan attorney\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (an attorney, is, Schizophrenia) -> an attorney (8336ms)\nWhat is schizophrenia?\tceliac disease\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (celiac disease, are highly exposed to, Schizophrenia) -> celiac disease (8321ms)\nWhat is schizophrenia?\tTeens\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Teens, can get, schizophrenia) -> Teens (8459ms)\nWhat is schizophrenia?\tthe drug\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the drug, can hasten the onset of, schizophrenia) -> the drug (8446ms)\nWhat is schizophrenia?\tthe CUS\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the CUS, was driven to, schizophrenia) -> the CUS (8538ms)\nWhat is schizophrenia?\tthe most common main diagnoses\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most common main diagnoses, were, schizophrenia) -> the most common main diagnoses (8566ms)\nWhat is schizophrenia?\trefreshing\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (refreshing, was impaired in, schizophrenia) -> refreshing (8575ms)\nWhat is schizophrenia?\tNRG3\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (NRG3, is linked to, schizophrenia) -> NRG3 (8392ms)\nWhat is schizophrenia?\tnerve cells\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (nerve cells, are altered in, schizophrenia) -> nerve cells (8307ms)\nWhat is schizophrenia?\tThe primary diagnoses\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The primary diagnoses, were, schizophrenia) -> The primary diagnoses (8392ms)\nWhat is schizophrenia?\tinappropriate responses\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (inappropriate responses, is, schizophrenia) -> inappropriate responses (8593ms)\nWhat is schizophrenia?\tThe study\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The study, is, schizophrenia) -> The study (8584ms)\nWhat is schizophrenia?\tAfrican-Americans\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (African-Americans, to be diagnosed with, schizophrenia) -> African-Americans (8365ms)\nWhat is schizophrenia?\titems\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (items, is impaired in, schizophrenia) -> items (8519ms)\nWhat is schizophrenia?\tThought disorders\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Thought disorders, can occur in, schizophrenia) -> Thought disorders (8610ms)\nWhat is schizophrenia?\tany comments\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (any comments, is, Schizophrenia) -> any comments (8566ms)\nWhat is schizophrenia?\tSchizoaffect Disorder\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Schizoaffect Disorder, is, Schizophrenia) -> Schizoaffect Disorder (8547ms)\nWhat is schizophrenia?\tthe public\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the public, is likely to have, schizophrenia?) -> the public (8321ms)\nWhat is schizophrenia?\tExecutive control\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Executive control, is disturbed in, schizophrenia) -> Executive control (8433ms)\nWhat is schizophrenia?\tCognition\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Cognition, is very important in, schizophrenia) -> Cognition (8307ms)\nWhat is schizophrenia?\t80 %\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was about, 80 %) -> 80 % (8566ms)\nWhat is schizophrenia?\tP300\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (P300, have been demonstrated in, schizophrenia) -> P300 (8566ms)\nWhat is schizophrenia?\tprimary psychiatric diagnoses\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (primary psychiatric diagnoses, were, schizophrenia) -> primary psychiatric diagnoses (8419ms)\nWhat is schizophrenia?\tlinguistic context\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (linguistic context, are disrupted in, schizophrenia) -> linguistic context (8557ms)\nWhat is schizophrenia?\tGABA and glutamate\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (GABA and glutamate, are also implicated in, schizophrenia) -> GABA and glutamate (8529ms)\nWhat is schizophrenia?\tEvidence based treatment summaries\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Evidence based treatment summaries, is, schizophrenia) -> Evidence based treatment summaries (8350ms)\nWhat is schizophrenia?\tA psychiatrist\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (A psychiatrist, can treat those with, schizophrenia) -> A psychiatrist (8419ms)\nWhat is schizophrenia?\tvisual perception\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (visual perception, is, schizophrenia) -> visual perception (8472ms)\nWhat is schizophrenia?\tHaloperidol\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Haloperidol, is used to treat, schizophrenia) -> Haloperidol (8620ms)\nWhat is schizophrenia?\tthe PubMed search\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the PubMed search, were, 'schizophrenia) -> the PubMed search (8336ms)\nWhat is schizophrenia?\tmanganese\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (manganese, can be useful in treating, schizophrenia) -> manganese (8519ms)\nWhat is schizophrenia?\tMedical care\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Medical care, is needed to treat, schizophrenia) -> Medical care (8446ms)\nWhat is schizophrenia?\tJanuary 13 , 2010\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (January 13 , 2010, is, schizophrenia) -> January 13 , 2010 (8593ms)\nWhat is schizophrenia?\tthe drug Clozapine\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the drug Clozapine, is used to treat, schizophrenia) -> the drug Clozapine (8528ms)\nWhat is schizophrenia?\tAnonymous Seroquel\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Anonymous Seroquel, is used to treat, schizophrenia) -> Anonymous Seroquel (8538ms)\nWhat is schizophrenia?\tthe only other topic worth\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (*Schizophrenia, is about, the only other topic worth) -> the only other topic worth (8336ms)\nWhat is schizophrenia?\tthe dysbindin gene\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the dysbindin gene, is linked to, schizophrenia) -> the dysbindin gene (8566ms)\nWhat is schizophrenia?\tFanapt\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Fanapt, is used to treat, schizophrenia) -> Fanapt (8485ms)\nWhat is schizophrenia?\tSkunk cannabis\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Skunk cannabis, can induce, schizophrenia) -> Skunk cannabis (8336ms)\nWhat is schizophrenia?\tEven genes\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (Even genes, seem to influence, schizophrenia) -> Even genes (8392ms)\nWhat is schizophrenia?\tthe principal form of which\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the principal form of which, is, schizophrenia) -> the principal form of which (8365ms)\nWhat is schizophrenia?\tacute stress\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (acute stress, can trigger the onset of, schizophrenia) -> acute stress (8392ms)\nWhat is schizophrenia?\tthe first instance\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, classify as, schizophrenia) -> (the first instance, are classified as, schizophrenia) -> the first instance (8498ms)\nWhat is schizophrenia?\ta certain gene\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a certain gene, are predisposed to develop, schizophrenia) -> a certain gene (8498ms)\nWhat is schizophrenia?\tpregnancy\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (pregnancy, can increase the risk of, schizophrenia) -> pregnancy (8519ms)\nWhat is schizophrenia?\t?Personal identity\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (?Personal identity, is frequently disturbed in, schizophrenia) -> ?Personal identity (8446ms)\nWhat is schizophrenia?\ta painter\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (a painter, was influenced by, his schizophrenia) -> a painter (8575ms)\nWhat is schizophrenia?\ta medication\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (a medication, can also be used for, schizophrenia) -> a medication (8601ms)\nWhat is schizophrenia?\tcommunication\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (communication, is key to managing, schizophrenia) -> communication (8610ms)\nWhat is schizophrenia?\tthe cerebral cortex\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cerebral cortex, is decreased in, schizophrenia) -> the cerebral cortex (8518ms)\nWhat is schizophrenia?\tthe frontal lobe\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the frontal lobe, can be misdiagnosed as, schizophrenia) -> the frontal lobe (8601ms)\nWhat is schizophrenia?\tamphetamine\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (amphetamine, can exacerbate the symptoms of, schizophrenia) -> amphetamine (8575ms)\nWhat is schizophrenia?\tAltered serotonin levels\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Altered serotonin levels, have been implicated in, schizophrenia) -> Altered serotonin levels (8336ms)\nWhat is schizophrenia?\tSeroquel\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Seroquel, is approved to treat, schizophrenia) -> Seroquel (8406ms)\nWhat is schizophrenia?\ta criminal matter\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a criminal matter, is linked to, schizophrenia) -> a criminal matter (8472ms)\nWhat is schizophrenia?\tthe cerebellum\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cerebellum, have been implicated in, schizophrenia) -> the cerebellum (8406ms)\nWhat is schizophrenia?\tExtinction memory\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Extinction memory, is impaired in, schizophrenia) -> Extinction memory (8508ms)\nWhat is schizophrenia?\tstigmatising\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (stigmatising, is, schizophrenia) -> stigmatising (8336ms)\nWhat is schizophrenia?\tB-3\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (B-3, is used to treat, schizophrenia) -> B-3 (8601ms)\nWhat is schizophrenia?\tout methylation\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (out methylation, have been implicated in, schizophrenia) -> out methylation (8378ms)\nWhat is schizophrenia?\tthe experience\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia Empirically, little is known about, the experience) -> the experience (8472ms)\nWhat is schizophrenia?\tThree major psychiatric disorders\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Three major psychiatric disorders, are, schizophrenia) -> Three major psychiatric disorders (8472ms)\nWhat is schizophrenia?\thealthy subjects\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (healthy subjects, is reduced in, schizophrenia) -> healthy subjects (8628ms)\nWhat is schizophrenia?\tKey Q&A Key Q&A\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Key Q&A Key Q&A, is, schizophrenia) -> Key Q&A Key Q&A (8519ms)\nWhat is schizophrenia?\t0.01\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 0.01) -> 0.01 (8447ms)\nWhat is schizophrenia?\tthe most frequent\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most frequent, is, SCHIZOPHRENIA) -> the most frequent (8508ms)\nWhat is schizophrenia?\tmasked stimuli\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (masked stimuli, is impaired in, schizophrenia) -> masked stimuli (8557ms)\nWhat is schizophrenia?\tthe medication\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the medication, is prescribed to treat, schizophrenia) -> the medication (8336ms)\nWhat is schizophrenia?\tpsychiatric case register\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (psychiatric case register, Is, schizophrenia) -> psychiatric case register (8472ms)\nWhat is schizophrenia?\t1-2 %\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1-2 %) -> 1-2 % (8601ms)\nWhat is schizophrenia?\tday life situations\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (day life situations, can be a sign of, schizophrenia) -> day life situations (8379ms)\nWhat is schizophrenia?\tSSDs The outcome\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (SSDs The outcome, was, schizophrenia) -> SSDs The outcome (8485ms)\nWhat is schizophrenia?\tinteracting genes\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (interacting genes, influence susceptibility to, schizophrenia) -> interacting genes (8593ms)\nWhat is schizophrenia?\tserum proline\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (serum proline, was specific to, schizophrenia) -> serum proline (8538ms)\nWhat is schizophrenia?\tthe research diagnosis\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the research diagnosis, was, schizophrenia) -> the research diagnosis (8610ms)\nWhat is schizophrenia?\tP300 asymmetry\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (P300 asymmetry, is specific to, schizophrenia) -> P300 asymmetry (8365ms)\nWhat is schizophrenia?\tChildren\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Children, can have, Schizophrenia) -> Children (8498ms)\nWhat is schizophrenia?\t100\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (100, can be expected to develop, schizophrenia) -> 100 (8620ms)\nWhat is schizophrenia?\t10360\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (10360, is, schizophrenia) -> 10360 (8610ms)\nWhat is schizophrenia?\ta patient\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a patient, to be diagnosed with, schizophrenia) -> a patient (8406ms)\nWhat is schizophrenia?\tApril 17 , 2006\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (April 17 , 2006, is, schizophrenia) -> April 17 , 2006 (8472ms)\nWhat is schizophrenia?\tthe primary diagnosis\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the primary diagnosis, is, Schizophrenia) -> the primary diagnosis (8336ms)\nWhat is schizophrenia?\tillegal hallucinogens\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, can, schizophrenia) -> (illegal hallucinogens, can cause problems with, schizophrenia) -> illegal hallucinogens (8419ms)\nWhat is schizophrenia?\tMore About\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (More About, is, Schizophrenia) -> More About (8593ms)\nWhat is schizophrenia?\tTHIORIDAZINE\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (THIORIDAZINE, is used to treat, schizophrenia) -> THIORIDAZINE (8610ms)\nWhat is schizophrenia?\t41\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (41, was compromised in, schizophrenia) -> 41 (8610ms)\nWhat is schizophrenia?\ta new idea\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (a new idea, was, schizophrenia) -> a new idea (8447ms)\nWhat is schizophrenia?\tsplit personality\t-1.0000056338554941E-12\tWhat is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (split personality, is, schizophrenia) -> split personality (8364ms)\nWhat is schizophrenia?\tApproximately 2.4 million Americans\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Approximately 2.4 million Americans, develop, schizophrenia) -> Approximately 2.4 million Americans (8652ms)\nWhat is schizophrenia?\ta hundred young people\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a hundred young people, develop, schizophrenia) -> a hundred young people (8629ms)\nWhat is schizophrenia?\toffspring\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (offspring, developing, schizophrenia) -> offspring (8659ms)\nWhat is schizophrenia?\tfalse memories\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (false memories, induce by, schizophrenia) -> false memories (8673ms)\nWhat is schizophrenia?\tSchizotypal Personality Disorder\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (Schizotypal Personality Disorder, represents, mild schizophrenia) -> Schizotypal Personality Disorder (8666ms)\nWhat is schizophrenia?\tchildren and adolescents\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (children and adolescents, develop, schizophrenia) -> children and adolescents (8666ms)\nWhat is schizophrenia?\tthe child\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the child, to develop, schizophrenia) -> the child (8666ms)\nWhat is schizophrenia?\tmusical prodigy Nathaniel Ayers\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (musical prodigy Nathaniel Ayers, developed, schizophrenia) -> musical prodigy Nathaniel Ayers (8666ms)\nWhat is schizophrenia?\tMesoridazine\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Mesoridazine, is used to treat the symptoms of, schizophrenia) -> Mesoridazine (8629ms)\nWhat is schizophrenia?\tthe children\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the children, developed, schizophrenia) -> the children (8629ms)\nWhat is schizophrenia?\ta musical prodigy\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a musical prodigy, developed, schizophrenia) -> a musical prodigy (8644ms)\nWhat is schizophrenia?\thigh-risk individuals\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (high-risk individuals, developed, schizophrenia) -> high-risk individuals (8659ms)\nWhat is schizophrenia?\tSchizotypal Many\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (Schizotypal Many, represents, mild schizophrenia) -> Schizotypal Many (8673ms)\nWhat is schizophrenia?\tkids\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (kids, develop, schizophrenia) -> kids (8652ms)\nWhat is schizophrenia?\ta mechanism\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a mechanism, develops, schizophrenia) -> a mechanism (8666ms)\nWhat is schizophrenia?\tApproximately 1 % of the population\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Approximately 1 % of the population, develops, schizophrenia) -> Approximately 1 % of the population (8666ms)\nWhat is schizophrenia?\ta musician\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a musician, develops, schizophrenia) -> a musician (8636ms)\nWhat is schizophrenia?\tone young lad\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (one young lad, developed, schizophrenia) -> one young lad (8659ms)\nWhat is schizophrenia?\tmales\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (males, develop, schizophrenia) -> males (8629ms)\nWhat is schizophrenia?\tWomen\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Women, to develop, schizophrenia) -> Women (8636ms)\nWhat is schizophrenia?\tUsed Clozapine\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Used Clozapine, is used to treat the symptoms of, schizophrenia) -> Used Clozapine (8629ms)\nWhat is schizophrenia?\tA Kabbalah member\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (A Kabbalah member, developed, schizophrenia) -> A Kabbalah member (8644ms)\nWhat is schizophrenia?\tnot enough money\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (not enough money, developed, schizophrenia) -> not enough money (8629ms)\nWhat is schizophrenia?\tSlightly more males\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Slightly more males, develop, schizophrenia) -> Slightly more males (8628ms)\nWhat is schizophrenia?\ta classical bass student\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a classical bass student, developed, schizophrenia) -> a classical bass student (8644ms)\nWhat is schizophrenia?\tGEODON\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (GEODON, can be used to treat symptoms of, schizophrenia) -> GEODON (8659ms)\nWhat is schizophrenia?\tadults\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (adults, develop, schizophrenia) -> adults (8666ms)\nWhat is schizophrenia?\tonly one twin\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (only one twin, develops, schizophrenia) -> only one twin (8644ms)\nWhat is schizophrenia?\tAntipsychotics\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Antipsychotics, are used to treat the symptoms of, schizophrenia) -> Antipsychotics (8628ms)\nWhat is schizophrenia?\tThe cannabis users\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (The cannabis users, developed, schizophrenia) -> The cannabis users (8628ms)\nWhat is schizophrenia?\ta former Juilliard student\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a former Juilliard student, developed, schizophrenia) -> a former Juilliard student (8652ms)\nWhat is schizophrenia?\tPsilocybin\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (Psilocybin, induces, schizophrenia-like psychosis) -> Psilocybin (8659ms)\nWhat is schizophrenia?\tOlanzapine\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Olanzapine, is used to treat the symptoms of, schizophrenia) -> Olanzapine (8659ms)\nWhat is schizophrenia?\tPrader-Willi syndrome\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Prader-Willi syndrome, develop, schizophrenia) -> Prader-Willi syndrome (8636ms)\nWhat is schizophrenia?\tone identical twin\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (one identical twin, develops, schizophrenia) -> one identical twin (8666ms)\nWhat is schizophrenia?\tLSD experiments\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (LSD experiments, had induced, schizophrenia) -> LSD experiments (8636ms)\nWhat is schizophrenia?\tSaphris\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Saphris, is used to treat symptoms of, schizophrenia) -> Saphris (8673ms)\nWhat is schizophrenia?\tThe patients\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (The patients, developed, schizophrenia) -> The patients (8659ms)\nWhat is schizophrenia?\tdrug\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (drug, induced, schizophrenia) -> drug (8652ms)\nWhat is schizophrenia?\t5 years\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (5 years, induce, Schizophrenia) -> 5 years (8652ms)\nWhat is schizophrenia?\tmen\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (men, to develop, schizophrenia) -> men (8644ms)\nWhat is schizophrenia?\tLuis\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Luis, developed, schizophrenia) -> Luis (8659ms)\nWhat is schizophrenia?\t757 subjects\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (757 subjects, developed, schizophrenia) -> 757 subjects (8644ms)\nWhat is schizophrenia?\tEduard\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Eduard, developed, schizophrenia) -> Eduard (8666ms)\nWhat is schizophrenia?\tParticipants\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, comprise, schizophrenia) -> (Participants, comprised, 16 chronic schizophrenia patients) -> Participants (8644ms)\nWhat is schizophrenia?\tA Zurich University study\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (A Zurich University study, developing, schizophrenia) -> A Zurich University study (8652ms)\nWhat is schizophrenia?\tcannabis users\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (cannabis users, to developing, schizophrenia) -> cannabis users (8636ms)\nWhat is schizophrenia?\tschizotypal -> Many believe\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (schizotypal -> Many believe, represents, mild schizophrenia) -> schizotypal -> Many believe (8644ms)\nWhat is schizophrenia?\treal news\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (real news, may induce a kind of, schizophrenia) -> real news (8666ms)\nWhat is schizophrenia?\tthe non-users\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the non-users, developed, schizophrenia) -> the non-users (8652ms)\nWhat is schizophrenia?\tLucia\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Lucia, developed, schizophrenia) -> Lucia (8636ms)\nWhat is schizophrenia?\tthe offspring\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the offspring, developed, schizophrenia) -> the offspring (8666ms)\nWhat is schizophrenia?\tpregnant women\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (pregnant women, developed, schizophrenia) -> pregnant women (8652ms)\nWhat is schizophrenia?\tharder drugs\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (harder drugs, develop, schizophrenia) -> harder drugs (8652ms)\nWhat is schizophrenia?\tVCFS\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (VCFS, thus represents a rare genetic cause of, schizophrenia) -> VCFS (8628ms)\nWhat is schizophrenia?\ta man\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a man, developed, schizophrenia) -> a man (8659ms)\nWhat is schizophrenia?\tthe population\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the population, develops, schizophrenia) -> the population (8644ms)\nWhat is schizophrenia?\t7,331 of the offspring\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (7,331 of the offspring, developed, schizophrenia) -> 7,331 of the offspring (8636ms)\nWhat is schizophrenia?\tsister\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (sister, developed, schizophrenia) -> sister (8644ms)\nWhat is schizophrenia?\t100 people\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (100 people, develops, schizophrenia) -> 100 people (8659ms)\nWhat is schizophrenia?\tevery five people\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (every five people, develop, schizophrenia) -> every five people (8636ms)\nWhat is schizophrenia?\ta teenager\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a teenager, developing, Schizophrenia) -> a teenager (8666ms)\nWhat is schizophrenia?\tZYPREXA\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (ZYPREXA, is used to treat symptoms of, schizophrenia) -> ZYPREXA (8652ms)\nWhat is schizophrenia?\ta child\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a child, would develop, schizophrenia) -> a child (8659ms)\nWhat is schizophrenia?\tnewer drugs\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (newer drugs, developed for, schizophrenia) -> newer drugs (8673ms)\nWhat is schizophrenia?\tthe OT Levels\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (the OT Levels, induce, schizophrenia) -> the OT Levels (8659ms)\nWhat is schizophrenia?\tboys\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (boys, develop, schizophrenia) -> boys (8628ms)\nWhat is schizophrenia?\ta twin brother\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a twin brother, developed, schizophrenia) -> a twin brother (8659ms)\nWhat is schizophrenia?\tthe 274 conscripts\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the 274 conscripts, developed, schizophrenia) -> the 274 conscripts (8636ms)\nWhat is schizophrenia?\tmigration\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (migration, develops, schizophrenia) -> migration (8652ms)\nWhat is schizophrenia?\tOne identical twin\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (One identical twin, develops, schizophrenia) -> One identical twin (8673ms)\nWhat is schizophrenia?\tAripiprazole\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Aripiprazole, is used to treat symptoms of, schizophrenia) -> Aripiprazole (8636ms)\nWhat is schizophrenia?\ta twin pair\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a twin pair, develop, schizophrenia) -> a twin pair (8666ms)\nWhat is schizophrenia?\ta music prodigy\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a music prodigy, developed, schizophrenia) -> a music prodigy (8673ms)\nWhat is schizophrenia?\tZiprasidone\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Ziprasidone, is used to treat the symptoms of, schizophrenia) -> Ziprasidone (8629ms)\nWhat is schizophrenia?\tteens\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (teens, develop, schizophrenia) -> teens (8652ms)\nWhat is schizophrenia?\tpsychotic symptoms\t-0.11111111111100003\tWhat is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (psychotic symptoms, develop, schizophrenia) -> psychotic symptoms (8644ms)\nWhat is schizophrenia?\tpersonality\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (personality, could be, Schizophrenia) -> personality (8681ms)\nWhat is schizophrenia?\tghosts\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (ghosts, could be a slight form of, schizophrenia) -> ghosts (8674ms)\nWhat is schizophrenia?\ta more thorough discussion\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (a more thorough discussion, constitutes, childhood schizophrenia) -> a more thorough discussion (8681ms)\nWhat is schizophrenia?\taware\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (aware, constitutes, schizophrenia) -> aware (8680ms)\nWhat is schizophrenia?\tthe mother?s genes\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (the mother?s genes, could be, schizophrenia) -> the mother?s genes (8681ms)\nWhat is schizophrenia?\tGod\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (God, could be a symptom of, schizophrenia) -> God (8681ms)\nWhat is schizophrenia?\tan actual demon possession\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (an actual demon possession, could be diagnosed as, schizophrenia) -> an actual demon possession (8687ms)\nWhat is schizophrenia?\ttimes\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, can be, schizophrenia) -> (times, can be a form of, controlled schizophrenia) -> times (8688ms)\nWhat is schizophrenia?\tSuch behaviors\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (Such behaviors, could be signs of, schizophrenia) -> Such behaviors (8681ms)\nWhat is schizophrenia?\ta cure\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, discover, schizophrenia) -> (a cure, is finally discovered for, schizophrenia) -> a cure (8674ms)\nWhat is schizophrenia?\tsuch a woman\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (such a woman, could only be the case of, schizophrenia) -> such a woman (8687ms)\nWhat is schizophrenia?\tmother and fetus\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (mother and fetus, could be a risk factor for, schizophrenia) -> mother and fetus (8681ms)\nWhat is schizophrenia?\tmedication\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (medication, could be used to treat, schizophrenia) -> medication (8687ms)\nWhat is schizophrenia?\tthe work\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, can be, schizophrenia) -> (the work, can be covered by, schizophrenia.com) -> the work (8673ms)\nWhat is schizophrenia?\tAn individual\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (An individual, could be diagnosed with, Schizophrenia) -> An individual (8687ms)\nWhat is schizophrenia?\topinion\t-0.111111111112\tWhat is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (opinion, constitutes, schizophrenia) -> opinion (8674ms)\nWhat is schizophrenia?\ta hospital\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, died in, a hospital) -> a hospital (8694ms)\nWhat is schizophrenia?\tthe world?s population\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the world?s population, is getting affected by, Schizophrenia) -> the world?s population (8726ms)\nWhat is schizophrenia?\treality\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, reality) -> reality (8726ms)\nWhat is schizophrenia?\tAuthorities Concept Scheme\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (8706ms)\nWhat is schizophrenia?\tSusano\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Susano, gets a nasty case of, schizophrenia) -> Susano (8701ms)\nWhat is schizophrenia?\tlate adolescence or early adulthood\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, begins in, late adolescence or early adulthood) -> late adolescence or early adulthood (8711ms)\nWhat is schizophrenia?\tabout 1 % of the population\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, occurs in, about 1 % of the population) -> about 1 % of the population (8711ms)\nWhat is schizophrenia?\tLink\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Link, get over, his schizophrenia) -> Link (8694ms)\nWhat is schizophrenia?\thumans\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerges in, humans) -> humans (8701ms)\nWhat is schizophrenia?\tLi Hongzhi\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, obsessed in, Li Hongzhi) -> Li Hongzhi (8701ms)\nWhat is schizophrenia?\tThe child\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, raise be, schizophrenia) -> (The child, was raised by, a paranoid schizophrenia) -> The child (8716ms)\nWhat is schizophrenia?\ttune\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (tune, then got, schizophrenia) -> tune (8726ms)\nWhat is schizophrenia?\tBMJ 305\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, BMJ 305) -> BMJ 305 (8706ms)\nWhat is schizophrenia?\ta state hospital\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, died in, a state hospital) -> a state hospital (8716ms)\nWhat is schizophrenia?\ta Scottish population\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, confirmed in, a Scottish population) -> a Scottish population (8711ms)\nWhat is schizophrenia?\tyoung adult life\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerges in, young adult life) -> young adult life (8716ms)\nWhat is schizophrenia?\toutpatient research protocols\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, participated in, outpatient research protocols) -> outpatient research protocols (8711ms)\nWhat is schizophrenia?\tdegree and type\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, varies in, degree and type) -> degree and type (8716ms)\nWhat is schizophrenia?\tthe soul\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the soul, gets into, a state of schizophrenia) -> the soul (8711ms)\nWhat is schizophrenia?\tvolume\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is a decrease in, volume) -> volume (8721ms)\nWhat is schizophrenia?\thospitals\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, were in, hospitals) -> hospitals (8711ms)\nWhat is schizophrenia?\tTriangle 32\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, Triangle 32) -> Triangle 32 (8716ms)\nWhat is schizophrenia?\ta young person\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (a young person, gets treatment for, schizophrenia) -> a young person (8721ms)\nWhat is schizophrenia?\tfact\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, fact) -> fact (8706ms)\nWhat is schizophrenia?\ttype and severity\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, vary in, type and severity) -> type and severity (8726ms)\nWhat is schizophrenia?\tthe reader\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the reader, can get a sense of, the doctrinal schizophrenia) -> the reader (8706ms)\nWhat is schizophrenia?\tNew York\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurred in, New York) -> New York (8706ms)\nWhat is schizophrenia?\tthe late teens or early 20s\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, starts in, the late teens or early 20s) -> the late teens or early 20s (8706ms)\nWhat is schizophrenia?\tneed\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, need) -> need (8716ms)\nWhat is schizophrenia?\tyoung\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (young, get, schizophrenia) -> young (8716ms)\nWhat is schizophrenia?\tBibi?s family\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, runs in, Bibi?s family) -> Bibi?s family (8711ms)\nWhat is schizophrenia?\ta few cases\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, benefited in, a few cases) -> a few cases (8694ms)\nWhat is schizophrenia?\tthe June issue\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appears in, the June issue) -> the June issue (8694ms)\nWhat is schizophrenia?\tthe model\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerge in, the model) -> the model (8711ms)\nWhat is schizophrenia?\tMales\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Males, typically get, schizophrenia) -> Males (8701ms)\nWhat is schizophrenia?\tthe workplace\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, succeed in, the workplace) -> the workplace (8711ms)\nWhat is schizophrenia?\tMargaret Sanger\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Margaret Sanger, gets diagnosed with, Schizophrenia) -> Margaret Sanger (8694ms)\nWhat is schizophrenia?\t1990\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurred in, 1990) -> 1990 (8711ms)\nWhat is schizophrenia?\tthe August 6 edition\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appear in, the August 6 edition) -> the August 6 edition (8726ms)\nWhat is schizophrenia?\tCurtis?s family\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, runs in, Curtis?s family) -> Curtis?s family (8721ms)\nWhat is schizophrenia?\tCUD\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, compare to, schizophrenia) -> (CUD, were compared to, 51 first-episode schizophrenia subjects) -> CUD (8694ms)\nWhat is schizophrenia?\tliterature\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, receive in, literature) -> literature (8694ms)\nWhat is schizophrenia?\tcommon and\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, have in, common and) -> common and (8711ms)\nWhat is schizophrenia?\tthe copy\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, perform in, the copy) -> the copy (8726ms)\nWhat is schizophrenia?\tadolescence or adulthood\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appears in, adolescence or adulthood) -> adolescence or adulthood (8701ms)\nWhat is schizophrenia?\tpart\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, depends in, part) -> part (8716ms)\nWhat is schizophrenia?\tOuran High School Host Club\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (Ouran High School Host Club, Leave, schizophrenia) -> Ouran High School Host Club (8694ms)\nWhat is schizophrenia?\ta plan\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (a plan, get the most from, your Schizophrenia treatment) -> a plan (8726ms)\nWhat is schizophrenia?\tTable 1\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, Table 1) -> Table 1 (8711ms)\nWhat is schizophrenia?\thes\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (hes, got, mild schizophrenia) -> hes (8706ms)\nWhat is schizophrenia?\tsuicide\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, ends in, suicide) -> suicide (8701ms)\nWhat is schizophrenia?\tthe community\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, live in, the community) -> the community (8725ms)\nWhat is schizophrenia?\t1952\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, began in, 1952) -> 1952 (8730ms)\nWhat is schizophrenia?\treductions\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, resulted in, reductions) -> reductions (8706ms)\nWhat is schizophrenia?\tTopical Terms Concept Scheme\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (8706ms)\nWhat is schizophrenia?\tidentical twins\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, occurs in, identical twins) -> identical twins (8701ms)\nWhat is schizophrenia?\tdeletion carriers\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurs in, deletion carriers) -> deletion carriers (8716ms)\nWhat is schizophrenia?\tenough adrenochrome\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (enough adrenochrome, then will get, schizophrenia) -> enough adrenochrome (8725ms)\nWhat is schizophrenia?\trecordings\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, lies in, recordings) -> recordings (8701ms)\nWhat is schizophrenia?\tcycles\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, worsen in, cycles) -> cycles (8711ms)\nWhat is schizophrenia?\tadolescence\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, develops in, adolescence) -> adolescence (8726ms)\nWhat is schizophrenia?\tequal rates among men and women\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, to occur in, equal rates among men and women) -> equal rates among men and women (8711ms)\nWhat is schizophrenia?\ttwo steps\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, goes in, two steps) -> two steps (8716ms)\nWhat is schizophrenia?\tlate preclinical testing\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, late preclinical testing) -> late preclinical testing (8716ms)\nWhat is schizophrenia?\tWhite Denim\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (White Denim, left behind, their schizophrenia) -> White Denim (8725ms)\nWhat is schizophrenia?\tventricular size and structure\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, reflected in, ventricular size and structure) -> ventricular size and structure (8721ms)\nWhat is schizophrenia?\tvarious forums\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, headlined in, various forums) -> various forums (8716ms)\nWhat is schizophrenia?\tan Internal Medicine journal\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, reported in, an Internal Medicine journal) -> an Internal Medicine journal (8721ms)\nWhat is schizophrenia?\tambush\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, lay in, ambush) -> ambush (8711ms)\nWhat is schizophrenia?\tcommunity settings\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, living in, community settings) -> community settings (8721ms)\nWhat is schizophrenia?\t14297\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (14297, gets, Schizophrenia) -> 14297 (8706ms)\nWhat is schizophrenia?\ttouch\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, get in, touch) -> touch (8721ms)\nWhat is schizophrenia?\tthe 1950s\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerged in, the 1950s) -> the 1950s (8721ms)\nWhat is schizophrenia?\tLongest Journey\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (Longest Journey, Leave, schizophrenia) -> Longest Journey (8726ms)\nWhat is schizophrenia?\tthe mind\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, reigned in, the mind) -> the mind (8721ms)\nWhat is schizophrenia?\tlate adolescence\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, begin in, late adolescence) -> late adolescence (8694ms)\nWhat is schizophrenia?\tseveral varieties\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, comes in, several varieties) -> several varieties (8706ms)\nWhat is schizophrenia?\tcancer\t-0.222222222222\tWhat is schizophrenia? -> $x: ($x, get, schizophrenia) -> (cancer, are much less apt to get, schizophrenia) -> cancer (8721ms)\nWhat is schizophrenia?\tgreater danger\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, greater danger) -> greater danger (8711ms)\nWhat is schizophrenia?\tthe residual phase\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, the residual phase) -> the residual phase (8694ms)\nWhat is schizophrenia?\tconcert\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, rose in, concert) -> concert (8725ms)\nWhat is schizophrenia?\tCharlie Giles ? family\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, runs in, Charlie Giles ? family) -> Charlie Giles ? family (8721ms)\nWhat is schizophrenia?\tdifferent cultures\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, vary in, different cultures) -> different cultures (8721ms)\nWhat is schizophrenia?\tthe winter\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, born in, the winter) -> the winter (8730ms)\nWhat is schizophrenia?\tthe elderly population\t-0.222222222222\tWhat is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurs in, the elderly population) -> the elderly population (8706ms)\nWhat is schizophrenia?\tinsufficient NR signaling\t-0.22222222222299998\tWhat is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (insufficient NR signaling, has been involved with, schizophrenia) -> insufficient NR signaling (8730ms)\nWhat is schizophrenia?\tthe vagus nerve low levels\t-0.22222222222299998\tWhat is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (the vagus nerve low levels, may be involved in, schizophrenia) -> the vagus nerve low levels (8734ms)\nWhat is schizophrenia?\tThe latter\t-0.22222222222299998\tWhat is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (The latter, are presumably those involved with, schizophrenia) -> The latter (8734ms)\nWhat is schizophrenia?\tNOS1AP\t-0.22222222222299998\tWhat is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (NOS1AP, is involved in, schizophrenia) -> NOS1AP (8730ms)\nWhat is schizophrenia?\ta study\t-0.22222222222299998\tWhat is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (a study, involving, schizophrenia) -> a study (8734ms)\nWhat is schizophrenia?\tDavid Shakow\t-0.22222222222299998\tWhat is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (David Shakow, involved, schizophrenia research) -> David Shakow (8734ms)\nWhat is schizophrenia?\tthe same genes\t-0.22222222222299998\tWhat is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (the same genes, are involved in, schizophrenia) -> the same genes (8730ms)\nWhat is schizophrenia?\tSite\t-0.44444444444500003\tWhat is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (Site, contains information on, schizophrenia) -> Site (8734ms)\nWhat is schizophrenia?\tPsychiatrie\t-0.44444444444500003\tWhat is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (Psychiatrie, contained his classifications of, schizophrenia) -> Psychiatrie (8734ms)\nWhat is schizophrenia?\tThe psychosis group\t-0.44444444444500003\tWhat is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (The psychosis group, contained, schizophrenia) -> The psychosis group (8734ms)\nWhat is schizophrenia?\tChina\t-0.5555555555539999\tWhat is schizophrenia? -> $x: ($x, demonstrate, schizophrenia) -> (China, have demonstrated a degree of, schizophrenia) -> China (8734ms)\nWhat is schizophrenia?\tstudies\t-0.5555555555539999\tWhat is schizophrenia? -> $x: ($x, demonstrate, schizophrenia) -> (studies, demonstrate the validity of, schizophrenia) -> studies (8734ms)\nWhat is schizophrenia?\tinformed consent\t-0.555555555555\tWhat is schizophrenia? -> $x: ($x, concerned, schizophrenia) -> (informed consent, has concerned patients with, schizophrenia) -> informed consent (8734ms)\nWhat is schizophrenia?\tImprovements\t-0.555555555555\tWhat is schizophrenia? -> $x: ($x, concerned, schizophrenia) -> (Improvements, concerned, the schizophrenia-like symptoms) -> Improvements (8734ms)\nWhat is schizophrenia?\ta poor concept\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are already known to have, a poor concept) -> a poor concept (8767ms)\nWhat is schizophrenia?\tthe Community\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community) -> the Community (8738ms)\nWhat is schizophrenia?\ta higher occurrence\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been associated with, a higher occurrence) -> a higher occurrence (8769ms)\nWhat is schizophrenia?\tthe Community Jan Volavka Risk\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community Jan Volavka Risk) -> the Community Jan Volavka Risk (8765ms)\nWhat is schizophrenia?\tan effect\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been thought to be, an effect) -> an effect (8776ms)\nWhat is schizophrenia?\tlower levels\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, lower levels) -> lower levels (8757ms)\nWhat is schizophrenia?\tevery two weeks\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has to be given, every two weeks) -> every two weeks (8777ms)\nWhat is schizophrenia?\tseveral centres\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is practised in, several centres) -> several centres (8777ms)\nWhat is schizophrenia?\tsequential phases\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, can be described in, sequential phases) -> sequential phases (8769ms)\nWhat is schizophrenia?\trecent years\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been revolutionized in, recent years) -> recent years (8774ms)\nWhat is schizophrenia?\tabnormalities\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have also been shown to have, abnormalities) -> abnormalities (8771ms)\nWhat is schizophrenia?\tthe new book Essentials\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, can be found in, the new book Essentials) -> the new book Essentials (8769ms)\nWhat is schizophrenia?\tdetail\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are described in, detail) -> detail (8767ms)\nWhat is schizophrenia?\torigin\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is biological in, origin) -> origin (8767ms)\nWhat is schizophrenia?\t6.8\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been increasing by, 6.8) -> 6.8 (8754ms)\nWhat is schizophrenia?\ttwo independent studies\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been revealed by, two independent studies) -> two independent studies (8774ms)\nWhat is schizophrenia?\tthe cold sore virus\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been exposed to, the cold sore virus) -> the cold sore virus (8776ms)\nWhat is schizophrenia?\tP. Seeman et al\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is claimed in, P. Seeman et al) -> P. Seeman et al (8765ms)\nWhat is schizophrenia?\tone 6- week\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, one 6- week) -> one 6- week (8746ms)\nWhat is schizophrenia?\tyounger males\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is especially common in, younger males) -> younger males (8767ms)\nWhat is schizophrenia?\tthe prefrontal or frontal cortex\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been, the prefrontal or frontal cortex) -> the prefrontal or frontal cortex (8746ms)\nWhat is schizophrenia?\ta waking dream state\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been described as, a waking dream state) -> a waking dream state (8775ms)\nWhat is schizophrenia?\ta prominent feature\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been recognized as, a prominent feature) -> a prominent feature (8738ms)\nWhat is schizophrenia?\tstudy\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been under, study) -> study (8750ms)\nWhat is schizophrenia?\tthe Community John S. Brekke\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community John S. Brekke) -> the Community John S. Brekke (8760ms)\nWhat is schizophrenia?\teither Zyprexa or Risperdal\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been placed on, either Zyprexa or Risperdal) -> either Zyprexa or Risperdal (8754ms)\nWhat is schizophrenia?\tan adolescent girl\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, could be developing in, an adolescent girl) -> an adolescent girl (8769ms)\nWhat is schizophrenia?\ta separate disease\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been considered, a separate disease) -> a separate disease (8765ms)\nWhat is schizophrenia?\tsocial skill\t-0.777777777778\tWhat is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (social skill, have been well established in, schizophrenia) -> social skill (8762ms)\nWhat is schizophrenia?\tgluten intolerance\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, gluten intolerance) -> gluten intolerance (8760ms)\nWhat is schizophrenia?\t60 percent\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is successful in, 60 percent) -> 60 percent (8762ms)\nWhat is schizophrenia?\tthe make-believe story\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is told in, the make-believe story) -> the make-believe story (8777ms)\nWhat is schizophrenia?\tan early stage\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is still in, an early stage) -> an early stage (8750ms)\nWhat is schizophrenia?\tsatisfying relationships\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are able to have, satisfying relationships) -> satisfying relationships (8760ms)\nWhat is schizophrenia?\tnature\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are bizarre in, nature) -> nature (8760ms)\nWhat is schizophrenia?\ta hard plastic chair\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been shackled to, a hard plastic chair) -> a hard plastic chair (8738ms)\nWhat is schizophrenia?\tsingle day\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, single day) -> single day (8742ms)\nWhat is schizophrenia?\ta good safety\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been shown to have, a good safety) -> a good safety (8767ms)\nWhat is schizophrenia?\tspecial powers\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are seen as having, special powers) -> special powers (8769ms)\nWhat is schizophrenia?\tthe late teens\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is typically in, the late teens) -> the late teens (8777ms)\nWhat is schizophrenia?\t72 cases\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, was present in, 72 cases) -> 72 cases (8750ms)\nWhat is schizophrenia?\tthe Age , Beginning and Course\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was included in, the Age , Beginning and Course) -> the Age , Beginning and Course (8771ms)\nWhat is schizophrenia?\tcollaboration\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been established in, collaboration) -> collaboration (8771ms)\nWhat is schizophrenia?\t5 placebo-controlled studies\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was evaluated in, 5 placebo-controlled studies) -> 5 placebo-controlled studies (8750ms)\nWhat is schizophrenia?\ta biological basis\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are now recognized as having, a biological basis) -> a biological basis (8757ms)\nWhat is schizophrenia?\ta genetic component\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, is considered to have, a genetic component) -> a genetic component (8738ms)\nWhat is schizophrenia?\tthe mental health system\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are treated in, the mental health system) -> the mental health system (8754ms)\nWhat is schizophrenia?\tthe May issue\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, was published in, the May issue) -> the May issue (8765ms)\nWhat is schizophrenia?\ta new edition\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, will be published in, a new edition) -> a new edition (8738ms)\nWhat is schizophrenia?\ta long journey\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been, a long journey) -> a long journey (8769ms)\nWhat is schizophrenia?\tthe 19th century\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been recognized since, the 19th century) -> the 19th century (8767ms)\nWhat is schizophrenia?\tlow blood levels\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been found to have, low blood levels) -> low blood levels (8771ms)\nWhat is schizophrenia?\tnow\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been linked, now) -> now (8777ms)\nWhat is schizophrenia?\ta biological disease\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has also been termed, a biological disease) -> a biological disease (8776ms)\nWhat is schizophrenia?\tthe first sample\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was strongly reduced in, the first sample) -> the first sample (8738ms)\nWhat is schizophrenia?\tincreased rate\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been associated with, increased rate) -> increased rate (8765ms)\nWhat is schizophrenia?\tschool\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in teaching, $x) -> (the way schizophrenia, is taught in, school) -> school (8738ms)\nWhat is schizophrenia?\tthree 6-week trials\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, three 6-week trials) -> three 6-week trials (8746ms)\nWhat is schizophrenia?\t0.1 cases\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been estimated as, 0.1 cases) -> 0.1 cases (8754ms)\nWhat is schizophrenia?\tan emphasis\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been replaced by, an emphasis) -> an emphasis (8742ms)\nWhat is schizophrenia?\tbehavioral deficits\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are known to have, behavioral deficits) -> behavioral deficits (8776ms)\nWhat is schizophrenia?\tlow melatonin output\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, low melatonin output) -> low melatonin output (8774ms)\nWhat is schizophrenia?\tobject working memory\t-0.777777777778\tWhat is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (object working memory, established, schizophrenia) -> object working memory (8750ms)\nWhat is schizophrenia?\treviewers\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been characterized by, reviewers) -> reviewers (8760ms)\nWhat is schizophrenia?\tgifted children\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been intellectually, gifted children) -> gifted children (8773ms)\nWhat is schizophrenia?\tleast two years\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had all been diagnosed at, least two years) -> least two years (8774ms)\nWhat is schizophrenia?\ta failure\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been attributed to, a failure) -> a failure (8774ms)\nWhat is schizophrenia?\tterms\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are impaired in, terms) -> terms (8771ms)\nWhat is schizophrenia?\ta section\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was listed in, a section) -> a section (8750ms)\nWhat is schizophrenia?\timproper lateralization\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been linked to, improper lateralization) -> improper lateralization (8750ms)\nWhat is schizophrenia?\tFigure 1\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are summarized in, Figure 1) -> Figure 1 (8765ms)\nWhat is schizophrenia?\tthe pattern\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been estimated from, the pattern) -> the pattern (8777ms)\nWhat is schizophrenia?\tthe media\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is often confused in, the media) -> the media (8771ms)\nWhat is schizophrenia?\tperceptual closure\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are profoundly impaired in, perceptual closure) -> perceptual closure (8759ms)\nWhat is schizophrenia?\tDr. Goff\t-0.777777777778\tWhat is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (Dr. Goff, established, the Schizophrenia Program) -> Dr. Goff (8776ms)\nWhat is schizophrenia?\ta disorder\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been hypothesized to be, a disorder) -> a disorder (8742ms)\nWhat is schizophrenia?\tpoor social functioning\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, poor social functioning) -> poor social functioning (8738ms)\nWhat is schizophrenia?\ta stable dose\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been on, a stable dose) -> a stable dose (8774ms)\nWhat is schizophrenia?\ta result\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been shown to be, a result) -> a result (8769ms)\nWhat is schizophrenia?\trecurrent and disabling\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been regarded as, recurrent and disabling) -> recurrent and disabling (8757ms)\nWhat is schizophrenia?\ta plethora\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, a plethora) -> a plethora (8771ms)\nWhat is schizophrenia?\tpoint\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, is a case in, point) -> point (8757ms)\nWhat is schizophrenia?\ta disease\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been known as, a disease) -> a disease (8757ms)\nWhat is schizophrenia?\tnon-affected relatives\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are also found in, non-affected relatives) -> non-affected relatives (8767ms)\nWhat is schizophrenia?\tlatent inhibition\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are impaired in, latent inhibition) -> latent inhibition (8760ms)\nWhat is schizophrenia?\tinterior products\t-0.777777777778\tWhat is schizophrenia? -> $x: ($x, inspired, schizophrenia) -> (interior products, are inspired by, schizophrenia) -> interior products (8773ms)\nWhat is schizophrenia?\tBritish political life\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is becoming apparent in, British political life) -> British political life (8750ms)\nWhat is schizophrenia?\tan age\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was treated in, an age) -> an age (8762ms)\nWhat is schizophrenia?\tcities\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was more common in, cities) -> cities (8760ms)\nWhat is schizophrenia?\tseveral respects\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, is similar in, several respects) -> several respects (8757ms)\nWhat is schizophrenia?\t38 , 39 ]\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been reported [, 38 , 39 ]) -> 38 , 39 ] (8742ms)\nWhat is schizophrenia?\ta rollercoaster ride\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been described as, a rollercoaster ride) -> a rollercoaster ride (8762ms)\nWhat is schizophrenia?\tFound\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, Has been, Found) -> Found (8762ms)\nWhat is schizophrenia?\trecent decades\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been published in, recent decades) -> recent decades (8746ms)\nWhat is schizophrenia?\tseveral loci\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been identified at, several loci) -> several loci (8754ms)\nWhat is schizophrenia?\tHLA type\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been correlated with, HLA type) -> HLA type (8774ms)\nWhat is schizophrenia?\tthe NIMH\t-0.777777777778\tWhat is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (the NIMH, has established, a Schizophrenia Genetics Initiative) -> the NIMH (8757ms)\nWhat is schizophrenia?\tdoubt\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been established beyond, doubt) -> doubt (8746ms)\nWhat is schizophrenia?\tthe left temporal lobe\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, the left temporal lobe) -> the left temporal lobe (8769ms)\nWhat is schizophrenia?\tcultures\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is rare in, cultures) -> cultures (8767ms)\nWhat is schizophrenia?\tintensive research\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been the focus of, intensive research) -> intensive research (8760ms)\nWhat is schizophrenia?\tseveral studies\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been reported in, several studies) -> several studies (8765ms)\nWhat is schizophrenia?\tprevious neuroimaging\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been described by, previous neuroimaging) -> previous neuroimaging (8754ms)\nWhat is schizophrenia?\tlow selenium regions\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is more common in, low selenium regions) -> low selenium regions (8762ms)\nWhat is schizophrenia?\tIsraeli researchers\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been proposed by, Israeli researchers) -> Israeli researchers (8746ms)\nWhat is schizophrenia?\tbad genes or even bad parents\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been blamed on, bad genes or even bad parents) -> bad genes or even bad parents (8773ms)\nWhat is schizophrenia?\ta higher risk\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been linked to, a higher risk) -> a higher risk (8777ms)\nWhat is schizophrenia?\tthe basis\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been postulated on, the basis) -> the basis (8750ms)\nWhat is schizophrenia?\tthe general population\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is found in, the general population) -> the general population (8750ms)\nWhat is schizophrenia?\ta $ 1 million boost\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been given, a $ 1 million boost) -> a $ 1 million boost (8757ms)\nWhat is schizophrenia?\tthe haplotype analysis\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was detected in, the haplotype analysis) -> the haplotype analysis (8776ms)\nWhat is schizophrenia?\tcohorts\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was examined in, cohorts) -> cohorts (8771ms)\nWhat is schizophrenia?\tbewilderment\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been a source of, bewilderment) -> bewilderment (8757ms)\nWhat is schizophrenia?\tdate\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been published to, date) -> date (8771ms)\nWhat is schizophrenia?\taround\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been, around) -> around (8757ms)\nWhat is schizophrenia?\tearly detection\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is very important in, early detection) -> early detection (8765ms)\nWhat is schizophrenia?\tTable 6-8\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are summarized in, Table 6-8) -> Table 6-8 (8769ms)\nWhat is schizophrenia?\tthe July 1 , 2009 issue\t-0.777777777778\tWhat is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is published in, the July 1 , 2009 issue) -> the July 1 , 2009 issue (8769ms)\nWhat is the length of the Big Dig?\tthe service browser\t0.999999999995\tWhat is the length of the Big Dig? -> $x: ($x, be type of, dig) -> (the service browser, is a type of, dig-down interface) -> the service browser (1973ms)\nWhat is the length of the Big Dig?\tTani\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tani, then goes back to, digging) -> Tani (2192ms)\nWhat is the length of the Big Dig?\tMax Spaniel\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Max Spaniel, decides to go on, a dinosaur dig) -> Max Spaniel (2207ms)\nWhat is the length of the Big Dig?\tYellow-\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Yellow-, Go to, the dig site) -> Yellow- (2192ms)\nWhat is the length of the Big Dig?\tBinah\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Binah, went on to issue, a thinly veiled dig at the group) -> Binah (2192ms)\nWhat is the length of the Big Dig?\tThe Battn\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (The Battn, is going to put in, three tube dug-outs) -> The Battn (2203ms)\nWhat is the length of the Big Dig?\tthe day\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the day, went to, my digs) -> the day (2206ms)\nWhat is the length of the Big Dig?\tofficers\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (officers, go back to, their digging) -> officers (2068ms)\nWhat is the length of the Big Dig?\tthe Old Man\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Old Man, went to, digging) -> the Old Man (2192ms)\nWhat is the length of the Big Dig?\tRick\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Rick, went off to, a dig) -> Rick (2207ms)\nWhat is the length of the Big Dig?\tthe tour group\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the tour group, went to, the main dig site) -> the tour group (2206ms)\nWhat is the length of the Big Dig?\tthe squirrel suit\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the squirrel suit, had had gone back to, digging) -> the squirrel suit (2192ms)\nWhat is the length of the Big Dig?\tI?m\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (I?m, excited to go back to, my old digs) -> I?m (2203ms)\nWhat is the length of the Big Dig?\tReaders\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Readers, can even go online to read about, the dig adventures) -> Readers (2203ms)\nWhat is the length of the Big Dig?\tHarry\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Harry, went back to, digging) -> Harry (1972ms)\nWhat is the length of the Big Dig?\tScan\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Scan, then go back to do, the digging) -> Scan (2192ms)\nWhat is the length of the Big Dig?\tInterested contributors\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Interested contributors, should go to, the ht ://Dig developer) -> Interested contributors (2203ms)\nWhat is the length of the Big Dig?\tjoke\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (joke, ? go to, Donna?s blog & dig) -> joke (2203ms)\nWhat is the length of the Big Dig?\tthe excavator\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the excavator, is going to start, their digging) -> the excavator (2206ms)\nWhat is the length of the Big Dig?\tA woman from New England\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (A woman from New England, went to, try to dig him up) -> A woman from New England (2207ms)\nWhat is the length of the Big Dig?\tHopalong Cassidy\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Hopalong Cassidy, is long gone to, the big dig) -> Hopalong Cassidy (2207ms)\nWhat is the length of the Big Dig?\tMichael\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Michael, goes back to, his digging area) -> Michael (2207ms)\nWhat is the length of the Big Dig?\tthe Grand Palace\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Grand Palace, is the place to go for, cheap digs) -> the Grand Palace (2192ms)\nWhat is the length of the Big Dig?\ta pig\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (a pig, went to, dig) -> a pig (2203ms)\nWhat is the length of the Big Dig?\ta daffy hound dog\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (a daffy hound dog, decides to go on, a dinosaur dig) -> a daffy hound dog (2206ms)\nWhat is the length of the Big Dig?\tthe place\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the place, to go deeper to, dig) -> the place (2192ms)\nWhat is the length of the Big Dig?\trace .5\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (race .5, Went to, Digging) -> race .5 (2069ms)\nWhat is the length of the Big Dig?\tTiffany Milburn\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tiffany Milburn, served up three aces to go with, 12 digs) -> Tiffany Milburn (2192ms)\nWhat is the length of the Big Dig?\tI?d\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (I?d, also like to go on, an archaeological dig) -> I?d (2203ms)\nWhat is the length of the Big Dig?\tjust maybe I?ll\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (just maybe I?ll, even get to go on, some digs) -> just maybe I?ll (2069ms)\nWhat is the length of the Big Dig?\tMatt\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Matt, went back to, digging) -> Matt (1972ms)\nWhat is the length of the Big Dig?\tthe wasp\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the wasp, will soon go back to, its digging) -> the wasp (2192ms)\nWhat is the length of the Big Dig?\tWonder\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Wonder, else is going to take, digs) -> Wonder (2172ms)\nWhat is the length of the Big Dig?\tThe kids\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (The kids, get to go on, a pretend dig) -> The kids (1972ms)\nWhat is the length of the Big Dig?\tOlsen\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Olsen, recorded 15 assists to go along with, 4 digs) -> Olsen (2206ms)\nWhat is the length of the Big Dig?\tthe Normandy ?\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Normandy ?, went right to, the dig site) -> the Normandy ? (2206ms)\nWhat is the length of the Big Dig?\ttrucks\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (trucks, are all going to scanned, an dig?i?tized) -> trucks (2203ms)\nWhat is the length of the Big Dig?\tman\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, invent, dig) -> (man, invented, the dug-out canoe) -> man (2173ms)\nWhat is the length of the Big Dig?\tso many airlines\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (so many airlines, are going to, a digEplayer program) -> so many airlines (2203ms)\nWhat is the length of the Big Dig?\tThe Doctor\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (The Doctor, plans to go to, the archaeological dig) -> The Doctor (1972ms)\nWhat is the length of the Big Dig?\tChapter 90 funds\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Chapter 90 funds, had previously gone to, the Big Dig) -> Chapter 90 funds (2192ms)\nWhat is the length of the Big Dig?\tthe gold fever\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the gold fever, went west to, DIG) -> the gold fever (2203ms)\nWhat is the length of the Big Dig?\t? Auntie\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (? Auntie, goes back to, digging) -> ? Auntie (2192ms)\nWhat is the length of the Big Dig?\tJonathan\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jonathan, goes back to, digging) -> Jonathan (2173ms)\nWhat is the length of the Big Dig?\tBuckbeak\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Buckbeak, then went back to, digging) -> Buckbeak (2069ms)\nWhat is the length of the Big Dig?\tSan Diego\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (San Diego, then went to work on, an archaeological dig) -> San Diego (2173ms)\nWhat is the length of the Big Dig?\tCelia\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Celia, loves to go on, archaeological digs) -> Celia (2207ms)\nWhat is the length of the Big Dig?\tTony\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tony, goes to, the digs) -> Tony (2209ms)\nWhat is the length of the Big Dig?\tthe team from Ibex\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the team from Ibex, went to, dig some test pits) -> the team from Ibex (1972ms)\nWhat is the length of the Big Dig?\tTim and Rich\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tim and Rich, were going to, the dig) -> Tim and Rich (2192ms)\nWhat is the length of the Big Dig?\tFreedom\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Freedom, went back to work on, the digging) -> Freedom (2206ms)\nWhat is the length of the Big Dig?\tAsia\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Asia, went back to, her digging) -> Asia (2068ms)\nWhat is the length of the Big Dig?\tgood news ?\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (good news ?, went out to, my soon-to-be new digs) -> good news ? (2172ms)\nWhat is the length of the Big Dig?\tspring\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (spring, goes on to do, a little digging) -> spring (2203ms)\nWhat is the length of the Big Dig?\tPaul\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Paul, went up to, the dig) -> Paul (2068ms)\nWhat is the length of the Big Dig?\tthe price\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the price, is always going to be higher than, a dig) -> the price (2192ms)\nWhat is the length of the Big Dig?\tBridget\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Bridget, goes to, an archaeological dig and kisses) -> Bridget (2173ms)\nWhat is the length of the Big Dig?\tEgypt\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Egypt, went to, the King Tut dig) -> Egypt (2192ms)\nWhat is the length of the Big Dig?\tBell\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Bell, continued to go on, many archaeological digs) -> Bell (2068ms)\nWhat is the length of the Big Dig?\tthe Orioles and Jays\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Orioles and Jays, went back to, the old school digs) -> the Orioles and Jays (2206ms)\nWhat is the length of the Big Dig?\tthe safari activity window\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the safari activity window, decided to go, digging) -> the safari activity window (2203ms)\nWhat is the length of the Big Dig?\tthe Librarian\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Librarian, goes to, a dig) -> the Librarian (2207ms)\nWhat is the length of the Big Dig?\tan archeology major\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (an archeology major, can go to, a dig) -> an archeology major (2172ms)\nWhat is the length of the Big Dig?\tthe answers\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the answers, was going to do, a little digging) -> the answers (2203ms)\nWhat is the length of the Big Dig?\tJacka\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jacka, had gone to, his dug-out) -> Jacka (2207ms)\nWhat is the length of the Big Dig?\tintrest\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (intrest, are now going to have to do, a dig) -> intrest (2173ms)\nWhat is the length of the Big Dig?\tDanaos\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, invent, dig) -> (Danaos, invented, the digging) -> Danaos (2203ms)\nWhat is the length of the Big Dig?\tJules and Martin\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jules and Martin, went to have, a dig) -> Jules and Martin (2203ms)\nWhat is the length of the Big Dig?\tMood\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Mood, go to, the park digging) -> Mood (1972ms)\nWhat is the length of the Big Dig?\tthe plaines\t0.8888888888840001\tWhat is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the plaines, went over to, Spanish Dry Digging) -> the plaines (2203ms)\nWhat is the length of the Big Dig?\ta flat , flexible molding strip\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (a flat , flexible molding strip, need for, digging) -> a flat , flexible molding strip (2215ms)\nWhat is the length of the Big Dig?\tEaton Bray\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Eaton Bray, needed, a drainage system digging) -> Eaton Bray (2217ms)\nWhat is the length of the Big Dig?\tSoetoro and Holder\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Soetoro and Holder, need to try out, their NEW DIGS) -> Soetoro and Holder (2217ms)\nWhat is the length of the Big Dig?\tcourse\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (course, also need to establish, digs) -> course (2209ms)\nWhat is the length of the Big Dig?\ta fancy fox\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (a fancy fox, needs, some fancy digs) -> a fancy fox (2212ms)\nWhat is the length of the Big Dig?\tthe best DUI attorney\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the best DUI attorney, really needs, some digging) -> the best DUI attorney (2220ms)\nWhat is the length of the Big Dig?\ta journalist\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (a journalist, needs to, dig deeper) -> a journalist (2217ms)\nWhat is the length of the Big Dig?\tExterior Excavation Exterior excavation\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Exterior Excavation Exterior excavation, needs, the digging) -> Exterior Excavation Exterior excavation (2217ms)\nWhat is the length of the Big Dig?\tThe toll increases\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (The toll increases, are needed to pay for, the Big Dig) -> The toll increases (2209ms)\nWhat is the length of the Big Dig?\tThe Sloughi\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (The Sloughi, may need training to, discourage digging holes) -> The Sloughi (2220ms)\nWhat is the length of the Big Dig?\tthe trench\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the trench, needs to, be dug) -> the trench (2215ms)\nWhat is the length of the Big Dig?\tthe organization\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the organization, need to do a lot of, digging) -> the organization (2220ms)\nWhat is the length of the Big Dig?\tonly 1 magazine\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (only 1 magazine, is needed per, digs) -> only 1 magazine (2215ms)\nWhat is the length of the Big Dig?\tSolar Power options\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Solar Power options, eliminate the need for, digging) -> Solar Power options (2220ms)\nWhat is the length of the Big Dig?\tScripts and HTML code\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Scripts and HTML code, needed for using, ht ://Dig) -> Scripts and HTML code (2209ms)\nWhat is the length of the Big Dig?\tDean\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Dean, need to upgrade to, bigger digs) -> Dean (2209ms)\nWhat is the length of the Big Dig?\tDimond\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Dimond, needed money and resources to, help her dig  it out) -> Dimond (2212ms)\nWhat is the length of the Big Dig?\tthe cable\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the cable, needs to, be dug up) -> the cable (2220ms)\nWhat is the length of the Big Dig?\tBadgers\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Badgers, need, these digging tools) -> Badgers (2212ms)\nWhat is the length of the Big Dig?\tsmall wooden dolls\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (small wooden dolls, need, some new digs) -> small wooden dolls (2217ms)\nWhat is the length of the Big Dig?\tStudent Newspapers\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Student Newspapers, need to challenge, the SRC and ?dig?) -> Student Newspapers (2212ms)\nWhat is the length of the Big Dig?\tplayers\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (players, need to, dig to the underground well before the others) -> players (2215ms)\nWhat is the length of the Big Dig?\tBen\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Ben, needs, a digging alien) -> Ben (2209ms)\nWhat is the length of the Big Dig?\tthe rain\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the rain, needs to, get dug out as ice-cubes) -> the rain (2215ms)\nWhat is the length of the Big Dig?\tthe best equipment\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the best equipment, needs, some serious pocket digging) -> the best equipment (2209ms)\nWhat is the length of the Big Dig?\tJuvenile justice reforms\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Juvenile justice reforms, need to, dig deeper) -> Juvenile justice reforms (2215ms)\nWhat is the length of the Big Dig?\tthe grade\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the grade, eliminates the need for, digging) -> the grade (2212ms)\nWhat is the length of the Big Dig?\tintelligent women\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (intelligent women, need to do some of, their own digging) -> intelligent women (2220ms)\nWhat is the length of the Big Dig?\ta new line\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (a new line, needs, new digs) -> a new line (2209ms)\nWhat is the length of the Big Dig?\tsupport\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (support, is there any need to have, a dig) -> support (2215ms)\nWhat is the length of the Big Dig?\tThe roots\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (The roots, need to, be dug out) -> The roots (2212ms)\nWhat is the length of the Big Dig?\tKilmer\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Kilmer, will need to do, more digging) -> Kilmer (2212ms)\nWhat is the length of the Big Dig?\tthe observatory\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the observatory, will need, some digging) -> the observatory (2220ms)\nWhat is the length of the Big Dig?\tJoe Contractor\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Joe Contractor, needs, a dedicated digging machine) -> Joe Contractor (2217ms)\nWhat is the length of the Big Dig?\tan ?oopsy ?\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (an ?oopsy ?, so needs, a ?dig) -> an ?oopsy ? (2209ms)\nWhat is the length of the Big Dig?\tthe soil\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the soil, reduce the need for, digging) -> the soil (2212ms)\nWhat is the length of the Big Dig?\ta good soil mix\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (a good soil mix, should eliminate the need for, deep digging) -> a good soil mix (2217ms)\nWhat is the length of the Big Dig?\tJustin\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Justin, needed to move into, his new digs) -> Justin (2217ms)\nWhat is the length of the Big Dig?\tBuyer beware , @ groupon\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Buyer beware , @ groupon, needs to do, a little digging) -> Buyer beware , @ groupon (2217ms)\nWhat is the length of the Big Dig?\tthe new well\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the new well, needed to, be dug) -> the new well (2220ms)\nWhat is the length of the Big Dig?\tshallow foundation tubes\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (shallow foundation tubes, eliminated the need for, deep digging) -> shallow foundation tubes (2215ms)\nWhat is the length of the Big Dig?\tthe home\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the home, will reduce the need for, extensive digging) -> the home (2220ms)\nWhat is the length of the Big Dig?\tSmall trees\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Small trees, need to, be dug up or pulled out) -> Small trees (2217ms)\nWhat is the length of the Big Dig?\tThe holes\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (The holes, need to, be dug) -> The holes (2215ms)\nWhat is the length of the Big Dig?\tgarden\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (garden, needs, dug/de-graveled/watered etc.) -> garden (2209ms)\nWhat is the length of the Big Dig?\tThe answer\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (The answer, needed, some digging) -> The answer (2212ms)\nWhat is the length of the Big Dig?\tthe steps\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the steps, needed to use, the ht ://Dig system) -> the steps (2209ms)\nWhat is the length of the Big Dig?\tMr. Sharf\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Mr. Sharf, needed, a digging shovel) -> Mr. Sharf (2217ms)\nWhat is the length of the Big Dig?\tSweetcorn\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Sweetcorn, needs, a well dug , rich soil) -> Sweetcorn (2212ms)\nWhat is the length of the Big Dig?\twaste\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (waste, will need to, be dug out and taken elsewhere) -> waste (2220ms)\nWhat is the length of the Big Dig?\t716 m\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (716 m, has regularly needed, 4 hour + digging dives) -> 716 m (2212ms)\nWhat is the length of the Big Dig?\tlarger clients\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (larger clients, often need, a little digging) -> larger clients (2215ms)\nWhat is the length of the Big Dig?\tsubsidization options\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (subsidization options, will need to do, some digging) -> subsidization options (2217ms)\nWhat is the length of the Big Dig?\tSchwarzenegger\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Schwarzenegger, Needs, Digs) -> Schwarzenegger (2209ms)\nWhat is the length of the Big Dig?\tPermission\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Permission, will be needed before, any digging) -> Permission (2215ms)\nWhat is the length of the Big Dig?\tanswer\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (answer, need to do, some more digging) -> answer (2212ms)\nWhat is the length of the Big Dig?\tdiving\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (diving, is needed to get to, this dig) -> diving (2212ms)\nWhat is the length of the Big Dig?\tgroupon\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (groupon, needs to do, a little digging) -> groupon (2209ms)\nWhat is the length of the Big Dig?\tthe garden\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the garden, needs to, be dug) -> the garden (2217ms)\nWhat is the length of the Big Dig?\tIll\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Ill, need to, dig further) -> Ill (2220ms)\nWhat is the length of the Big Dig?\ta road\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (a road, needs, digging up) -> a road (2215ms)\nWhat is the length of the Big Dig?\ta cite\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (a cite, need to do, some digging) -> a cite (2215ms)\nWhat is the length of the Big Dig?\tYou?ll\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (You?ll, probably need to do, some digging) -> You?ll (2220ms)\nWhat is the length of the Big Dig?\tCauliflowers\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Cauliflowers, need, a well dug) -> Cauliflowers (2220ms)\nWhat is the length of the Big Dig?\tHTML code\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (HTML code, needed for using, ht ://Dig) -> HTML code (2215ms)\nWhat is the length of the Big Dig?\tKey contributions\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Key contributions, will be needed from, the dug-out) -> Key contributions (2215ms)\nWhat is the length of the Big Dig?\tIMD\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (IMD, needed, new digs) -> IMD (2209ms)\nWhat is the length of the Big Dig?\tDGCI\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (DGCI, need, new digs) -> DGCI (2217ms)\nWhat is the length of the Big Dig?\tcollege student\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (college student, will need to outfit, their new digs) -> college student (2222ms)\nWhat is the length of the Big Dig?\tthe tree\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the tree, would need, giant digging machines) -> the tree (2222ms)\nWhat is the length of the Big Dig?\tSomebody\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Somebody, needs to do, some digging) -> Somebody (2217ms)\nWhat is the length of the Big Dig?\tEvery able-bodied man\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Every able-bodied man, was needed for, the digging) -> Every able-bodied man (2215ms)\nWhat is the length of the Big Dig?\tHump Day ?\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Hump Day ?, needs a bit of, a dig) -> Hump Day ? (2220ms)\nWhat is the length of the Big Dig?\tthe hole\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the hole, needed, digging) -> the hole (2220ms)\nWhat is the length of the Big Dig?\tThe tides\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (The tides, need to be right for, clam digging) -> The tides (2212ms)\nWhat is the length of the Big Dig?\tStar\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (Star, needs to, dig deeper into critical issues) -> Star (2220ms)\nWhat is the length of the Big Dig?\ta beginner\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (a beginner, needs to, know to start digging into their roots) -> a beginner (2209ms)\nWhat is the length of the Big Dig?\tthe Malakettes\t0.777777777774\tWhat is the length of the Big Dig? -> $x: ($x, need, dig) -> (the Malakettes, needed, better digs) -> the Malakettes (2217ms)\nWhat is the length of the Big Dig?\tJames Davidson\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (James Davidson, dug deeply into, the Mac) -> James Davidson (2229ms)\nWhat is the length of the Big Dig?\tchinchoks\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (chinchoks, dig, Sesshu , Bach , John D. MacDonald) -> chinchoks (2224ms)\nWhat is the length of the Big Dig?\tThe crowd\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (The crowd, is digging, Giant big time) -> The crowd (2229ms)\nWhat is the length of the Big Dig?\tfamily\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (family, dig, a big hole) -> family (2225ms)\nWhat is the length of the Big Dig?\tEmily\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Emily, just dug, big comfortable hole) -> Emily (2226ms)\nWhat is the length of the Big Dig?\tThe article\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (The article, digs into, Vince MacMahon) -> The article (2225ms)\nWhat is the length of the Big Dig?\tAmericans\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Americans, dig, big cars) -> Americans (2227ms)\nWhat is the length of the Big Dig?\tthe villagers\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the villagers, dig out, big stones) -> the villagers (2228ms)\nWhat is the length of the Big Dig?\ta backhoe\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (a backhoe, dug, a big hole) -> a backhoe (2223ms)\nWhat is the length of the Big Dig?\tDad and son\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Dad and son, dug, a big hole) -> Dad and son (2229ms)\nWhat is the length of the Big Dig?\t?We?ve\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (?We?ve, dug, a big hole) -> ?We?ve (2227ms)\nWhat is the length of the Big Dig?\textremely powerful back legs rabbits\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (extremely powerful back legs rabbits, dig, big holes) -> extremely powerful back legs rabbits (2229ms)\nWhat is the length of the Big Dig?\tWindows 7\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Windows 7, dug out, a MacBook) -> Windows 7 (2223ms)\nWhat is the length of the Big Dig?\ta smile\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (a smile, dug back into, his mac'n'cheese) -> a smile (2228ms)\nWhat is the length of the Big Dig?\ta matter\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (a matter, dug, a hole big and deep enough) -> a matter (2228ms)\nWhat is the length of the Big Dig?\tthe children\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the children, dug, a big pail) -> the children (2224ms)\nWhat is the length of the Big Dig?\tNative Americans\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Native Americans, dug, big holes) -> Native Americans (2228ms)\nWhat is the length of the Big Dig?\tthey?ve\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (they?ve, dug, a big hole) -> they?ve (2222ms)\nWhat is the length of the Big Dig?\tthe end\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the end, dig, a big deep hole) -> the end (2228ms)\nWhat is the length of the Big Dig?\tthe flashy advertising\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the flashy advertising, dug, two big pits) -> the flashy advertising (2228ms)\nWhat is the length of the Big Dig?\twaste ?\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (waste ?, dig, a big hole) -> waste ? (2222ms)\nWhat is the length of the Big Dig?\tthe atom bomb\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the atom bomb, dug, a big canal) -> the atom bomb (2227ms)\nWhat is the length of the Big Dig?\tthe kids\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the kids, just dug, the big beats) -> the kids (2224ms)\nWhat is the length of the Big Dig?\thospitals\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (hospitals, dig into, Big Data) -> hospitals (2228ms)\nWhat is the length of the Big Dig?\tKhan\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Khan, dug, his big fingers) -> Khan (2222ms)\nWhat is the length of the Big Dig?\tchicks\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (chicks, dig, big vocabularies) -> chicks (2222ms)\nWhat is the length of the Big Dig?\tthe street\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (the street, maybe dig into, some delicious mac ?n cheese) -> the street (2224ms)\nWhat is the length of the Big Dig?\tYoure\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Youre, digging yourself, a big hole) -> Youre (2229ms)\nWhat is the length of the Big Dig?\t?Chicks\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (?Chicks, dig, big brains) -> ?Chicks (2222ms)\nWhat is the length of the Big Dig?\tMike Mulligan and his steam shovel\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Mike Mulligan and his steam shovel, dig, big holes) -> Mike Mulligan and his steam shovel (2228ms)\nWhat is the length of the Big Dig?\tBlack Oak Ridge .... Big engines\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Black Oak Ridge .... Big engines, will dig, big ditches) -> Black Oak Ridge .... Big engines (2222ms)\nWhat is the length of the Big Dig?\tlocal governments\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (local governments, start digging, big tunnels) -> local governments (2227ms)\nWhat is the length of the Big Dig?\tAn estimated 30 million U. First\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (An estimated 30 million U. First, dig, a big hole) -> An estimated 30 million U. First (2224ms)\nWhat is the length of the Big Dig?\tArie Kamp\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Arie Kamp, has dug up, Pat MacKay) -> Arie Kamp (2228ms)\nWhat is the length of the Big Dig?\tCommerce\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Commerce, dug, a big hole) -> Commerce (2228ms)\nWhat is the length of the Big Dig?\tthe pigs\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the pigs, dig up, big patches) -> the pigs (2222ms)\nWhat is the length of the Big Dig?\tHarrison\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Harrison, dug into, his mac n? cheese & grapes) -> Harrison (2222ms)\nWhat is the length of the Big Dig?\tthe Warriors\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the Warriors, dig, another big hole) -> the Warriors (2227ms)\nWhat is the length of the Big Dig?\tMr. Sharon\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Mr. Sharon, has dug, a very big hole) -> Mr. Sharon (2230ms)\nWhat is the length of the Big Dig?\tWindows users\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Windows users, dig around in, Mac filesystems) -> Windows users (2227ms)\nWhat is the length of the Big Dig?\ta place\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (a place, digs, a big hole) -> a place (2224ms)\nWhat is the length of the Big Dig?\tSwam\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Swam, dug, a big hole) -> Swam (2229ms)\nWhat is the length of the Big Dig?\ta mud puddle\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (a mud puddle, dig, a big dirt pit) -> a mud puddle (2229ms)\nWhat is the length of the Big Dig?\t?How\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (?How, dig, such a big hole) -> ?How (2222ms)\nWhat is the length of the Big Dig?\tthe Titus Brothers\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the Titus Brothers, dig, the big tunnel) -> the Titus Brothers (2227ms)\nWhat is the length of the Big Dig?\tFancy\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Fancy, digs in, a big city) -> Fancy (2228ms)\nWhat is the length of the Big Dig?\tThe director\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (The director, dug, a big hole) -> The director (2226ms)\nWhat is the length of the Big Dig?\ta girl\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (a girl, digs, a guy with a big dick) -> a girl (2222ms)\nWhat is the length of the Big Dig?\tthe new structure\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the new structure, dig, a big hole) -> the new structure (2228ms)\nWhat is the length of the Big Dig?\tDon?t\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Don?t, dig, a big deep hole) -> Don?t (2229ms)\nWhat is the length of the Big Dig?\tBush\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Bush, dug, a really big hole) -> Bush (2227ms)\nWhat is the length of the Big Dig?\tThe Teso\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (The Teso, can dig, a big portion) -> The Teso (2227ms)\nWhat is the length of the Big Dig?\tbricks and rocks\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (bricks and rocks, dug, a big hole) -> bricks and rocks (2229ms)\nWhat is the length of the Big Dig?\tKevin\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Kevin, dug, big holes) -> Kevin (2228ms)\nWhat is the length of the Big Dig?\tthe bulldozer\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the bulldozer, dug, a big hole) -> the bulldozer (2225ms)\nWhat is the length of the Big Dig?\tsomebody\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (somebody, to dig, a big hole) -> somebody (2225ms)\nWhat is the length of the Big Dig?\thead-on\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (head-on, digs up, big hypocrisies) -> head-on (2225ms)\nWhat is the length of the Big Dig?\tTheyve\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Theyve, dug, a big hole) -> Theyve (2228ms)\nWhat is the length of the Big Dig?\tChicks\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Chicks, dig, Mac OS X) -> Chicks (2225ms)\nWhat is the length of the Big Dig?\tan intense bout\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (an intense bout, digged up, my old Mac Plus) -> an intense bout (2225ms)\nWhat is the length of the Big Dig?\tthe soldiers\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the soldiers, dug, a big hole) -> the soldiers (2224ms)\nWhat is the length of the Big Dig?\ta man\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (a man, dug up, a big , earthenware cask) -> a man (2224ms)\nWhat is the length of the Big Dig?\tThe excavator\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (The excavator, dug, a big hole) -> The excavator (2229ms)\nWhat is the length of the Big Dig?\tWeve\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Weve, dug ourselves, a big hole) -> Weve (2225ms)\nWhat is the length of the Big Dig?\tLord Para?ur?ma\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Lord Para?ur?ma, dug, five big lakes) -> Lord Para?ur?ma (2227ms)\nWhat is the length of the Big Dig?\tgardening\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (gardening, Dig, two big holes) -> gardening (2224ms)\nWhat is the length of the Big Dig?\tLocation\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Location, Digging, the big hole) -> Location (2222ms)\nWhat is the length of the Big Dig?\tthe guys\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the guys, dig, big holes) -> the guys (2230ms)\nWhat is the length of the Big Dig?\tKaren\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Karen, is totally digging, her MacBook Pro) -> Karen (2225ms)\nWhat is the length of the Big Dig?\tDon?t fig\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Don?t fig, dig, a big wide hole) -> Don?t fig (2225ms)\nWhat is the length of the Big Dig?\tbricks and stones\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (bricks and stones, dug, a big hole) -> bricks and stones (2225ms)\nWhat is the length of the Big Dig?\tOld Romney quote\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Old Romney quote, dug up by, @AlecMacGillis) -> Old Romney quote (2227ms)\nWhat is the length of the Big Dig?\tCertain critics\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Certain critics, dig, big fat juice) -> Certain critics (2225ms)\nWhat is the length of the Big Dig?\tthe contractor\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the contractor, dug, a big hole) -> the contractor (2227ms)\nWhat is the length of the Big Dig?\tthe entire socailist democratic party\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the entire socailist democratic party, dig, a big ditch) -> the entire socailist democratic party (2228ms)\nWhat is the length of the Big Dig?\tthe table and\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the table and, dug into, big bowls) -> the table and (2228ms)\nWhat is the length of the Big Dig?\tMicrosoft\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Microsoft, have dug, an awfully big hole) -> Microsoft (2225ms)\nWhat is the length of the Big Dig?\tthe lawnmower\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the lawnmower, dug, a big hole) -> the lawnmower (2229ms)\nWhat is the length of the Big Dig?\tSeason 1\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Season 1, really dug, Kyle MacLachlan?s button-down look) -> Season 1 (2229ms)\nWhat is the length of the Big Dig?\tJustis\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (Justis, dug, a big whole) -> Justis (2224ms)\nWhat is the length of the Big Dig?\ta smaller plant\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (a smaller plant, just dig, a hole big enough) -> a smaller plant (2225ms)\nWhat is the length of the Big Dig?\tthe insulation value\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the insulation value, dig, a big hole) -> the insulation value (2227ms)\nWhat is the length of the Big Dig?\ta forest\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (a forest, dig, a big mine) -> a forest (2229ms)\nWhat is the length of the Big Dig?\tthe iPad end-user licensing agreement\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (the iPad end-user licensing agreement, dug up by, MacRumors) -> the iPad end-user licensing agreement (2227ms)\nWhat is the length of the Big Dig?\tAsh\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Ash, was digging for, second and Mac) -> Ash (2224ms)\nWhat is the length of the Big Dig?\tthe builders\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the builders, dug, a big hole) -> the builders (2229ms)\nWhat is the length of the Big Dig?\tthe east face\t0.666666666667\tWhat is the length of the Big Dig? -> $x: ($x, dig, big) -> (the east face, dug, a snow cave big) -> the east face (2229ms)\nWhat is the length of the Big Dig?\tFans\t0.555555555556\tWhat is the length of the Big Dig? -> $x: ($x, dig, big bang) -> (Fans, are digging, Big Bang?s strong promotions) -> Fans (2230ms)\nWhat president created social security?\tTitle V\t0.555555555553\tWhat president created social security? -> $x: ($x, created, social security act) -> (Title V, were created by, the Social Security Act) -> Title V (1394ms)\nWhat president created social security?\tthe U.S.\t0.555555555553\tWhat president created social security? -> $x: ($x, establish, social security act) -> (the U.S., were established with, the Social Security Act) -> the U.S. (1652ms)\nWhat president created social security?\tJohnson\t0.555555555553\tWhat president created social security? -> $x: ($x, find, social security act) -> (Johnson, found, the social security act) -> Johnson (1451ms)\nWhat president created social security?\tunions\t0.555555555553\tWhat president created social security? -> $x: ($x, created, social security act) -> (unions, had created, the social security act) -> unions (772ms)\nWhat president created social security?\tfoster care system\t0.555555555553\tWhat president created social security? -> $x: ($x, created, social security act) -> (foster care system, was created under, the Social Security Act) -> foster care system (1652ms)\nWhat president created social security?\tAFDC\t0.555555555553\tWhat president created social security? -> $x: ($x, created, social security act) -> (AFDC, was first created by, the Social Security Act) -> AFDC (772ms)\nWhat president created social security?\tCongress\t0.555555555553\tWhat president created social security? -> $x: ($x, created, social security act) -> (Congress, created, the Social Security Act) -> Congress (772ms)\nWhat president created social security?\tThe Medicaid program\t0.555555555553\tWhat president created social security? -> $x: ($x, created, social security act) -> (The Medicaid program, was created under, the Social Security Act) -> The Medicaid program (772ms)\nWhat president created social security?\ta defined benefit category\t0.555555555553\tWhat president created social security? -> $x: ($x, find, social security act) -> (a defined benefit category, found in, the Social Security Act) -> a defined benefit category (1451ms)\nWhat president created social security?\tThe program\t0.555555555553\tWhat president created social security? -> $x: ($x, establish, social security act) -> (The program, was established by, the federal Social Security Act) -> The program (1394ms)\nWhat president created social security?\thospice benefits\t0.555555555553\tWhat president created social security? -> $x: ($x, find, social security act) -> (hospice benefits, are found in, the Social Security Act) -> hospice benefits (1394ms)\nWhat president created social security?\tRoosevelt\t0.555555555553\tWhat president created social security? -> $x: ($x, establish, social security act) -> (Roosevelt, established, the Social Security Act) -> Roosevelt (1451ms)\nWhat president created social security?\ta bill\t0.555555555553\tWhat president created social security? -> $x: ($x, establish, social security act) -> (a bill, established, the Social Security Act) -> a bill (1394ms)\nWhat president created social security?\tSocial Security\t0.555555555553\tWhat president created social security? -> $x: ($x, created, social security act) -> (Social Security, was created by, the Social Security Act) -> Social Security (1394ms)\nWhat president created social security?\troosevelt\t0.555555555553\tWhat president created social security? -> $x: ($x, find, social security act) -> (roosevelt, found, the social security act) -> roosevelt (1451ms)\nWhat president created social security?\tThe requirements\t0.555555555553\tWhat president created social security? -> $x: ($x, establish, social security act) -> (The requirements, are established by, the Social Security Act) -> The requirements (772ms)\nWhat president created social security?\tA program\t0.555555555553\tWhat president created social security? -> $x: ($x, establish, social security act) -> (A program, established by, the Social Security Act of 1935) -> A program (1451ms)\nWhat president created social security?\tThe system\t0.555555555553\tWhat president created social security? -> $x: ($x, establish, social security act) -> (The system, was established by, the Social Security Act of 1935) -> The system (1652ms)\nWhat president created social security?\tEconomic Security\t0.555555555553\tWhat president created social security? -> $x: ($x, created, social security act) -> (Economic Security, created, the Social Security Act) -> Economic Security (1451ms)\nWhat president created social security?\tSSA\t0.555555555553\tWhat president created social security? -> $x: ($x, establish, social security act) -> (SSA, was established by, the Social Security Act) -> SSA (1451ms)\nWhat president created social security?\tThe federal law\t0.555555555553\tWhat president created social security? -> $x: ($x, find, social security act) -> (The federal law, can be found in, the Social Security Act) -> The federal law (1394ms)\nWhat president created social security?\tNeed\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Need, help finding, your Social Security form) -> Need (1925ms)\nWhat president created social security?\tnational standards\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (national standards, establish, a social security system) -> national standards (1905ms)\nWhat president created social security?\tChinese workers\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Chinese workers, will find, that state-provided social security) -> Chinese workers (1948ms)\nWhat president created social security?\t800-772-1213\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (800-772-1213, find, the Social Security office) -> 800-772-1213 (1932ms)\nWhat president created social security?\tlifespans\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (lifespans, have created havoc with, Social Security) -> lifespans (1948ms)\nWhat president created social security?\tSocial Security Offices\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Social Security Offices, Find, a social security office) -> Social Security Offices (1745ms)\nWhat president created social security?\tdisabled people\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (disabled people, found expression in, Social Security) -> disabled people (1925ms)\nWhat president created social security?\tU.S.\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (U.S., created through, the Social Security Administration system) -> U.S. (1946ms)\nWhat president created social security?\tThe Democrats\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (The Democrats, created, Social Security) -> The Democrats (1946ms)\nWhat president created social security?\tthe criteria\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (the criteria, established by, the Social Security Administration) -> the criteria (1935ms)\nWhat president created social security?\tthe zip code\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (the zip code, can help find, a social security lawyer) -> the zip code (1948ms)\nWhat president created social security?\tthe legislation\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (the legislation, establishing, Social Security) -> the legislation (1941ms)\nWhat president created social security?\tArmenian\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Armenian, can find out about, Social Security) -> Armenian (1941ms)\nWhat president created social security?\tHe?s\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (He?s, create, Social Security) -> He?s (1941ms)\nWhat president created social security?\tan individual\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (an individual, found in, the Social Security Death Index) -> an individual (1929ms)\nWhat president created social security?\tThe government\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (The government, created, the Social Security) -> The government (1944ms)\nWhat president created social security?\tthieves\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (thieves, easily create, fake Social Security numbers) -> thieves (1932ms)\nWhat president created social security?\tPresident Roosevelt\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (President Roosevelt, created, Social Security) -> President Roosevelt (1795ms)\nWhat president created social security?\tLegal Phone Book\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Legal Phone Book, Find, Lawyers Texas Social Security Lawyers) -> Legal Phone Book (1938ms)\nWhat president created social security?\tThe survey\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (The survey, also found vigorous support for, Social Security) -> The survey (1929ms)\nWhat president created social security?\tGeorge\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (George, wants to create, Social Security Savings Accounts) -> George (1935ms)\nWhat president created social security?\t?Has Obama\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (?Has Obama, created, a Social Security ?death panel?) -> ?Has Obama (1876ms)\nWhat president created social security?\tthe federal government\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the federal government, created, Social Security) -> the federal government (1948ms)\nWhat president created social security?\tAn answer\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (An answer, can be found in, the 2011 Social Security report) -> An answer (1925ms)\nWhat president created social security?\tThe company\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (The company, had even established, a social security system) -> The company (1941ms)\nWhat president created social security?\tThe form\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (The form, can be found at, your local Social Security office) -> The form (1938ms)\nWhat president created social security?\tsecurity officers\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (security officers, found, a social security card) -> security officers (1795ms)\nWhat president created social security?\tThe Listing\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (The Listing, found in, the Social Security regulations) -> The Listing (1847ms)\nWhat president created social security?\tPerkins\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (Perkins, helped establish, the Social Security program) -> Perkins (1946ms)\nWhat president created social security?\tlegislation\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (legislation, created, the Social Security Program) -> legislation (1905ms)\nWhat president created social security?\ta collection agency\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (a collection agency, find, the social security numbers) -> a collection agency (1946ms)\nWhat president created social security?\tPresident Franklin Roosevelt\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (President Franklin Roosevelt, created, Social Security) -> President Franklin Roosevelt (1935ms)\nWhat president created social security?\tthe United States\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the United States, created, Social Security) -> the United States (1941ms)\nWhat president created social security?\tpersons\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (persons, seeking to establish, Social Security eligibility) -> persons (1932ms)\nWhat president created social security?\ta denial\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (a denial, find, a Social Security lawyer) -> a denial (1819ms)\nWhat president created social security?\t18\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (18, can establish an account with, a Social Security Number) -> 18 (1905ms)\nWhat president created social security?\tThe federal government\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (The federal government, created, Social Security) -> The federal government (1946ms)\nWhat president created social security?\tFox poll\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Fox poll, finds support for, private Social Security accounts) -> Fox poll (1688ms)\nWhat president created social security?\tmedical expenses\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (medical expenses, find, that Social Security) -> medical expenses (1819ms)\nWhat president created social security?\tLaw 100\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Law 100, created, a new general social security system) -> Law 100 (1929ms)\nWhat president created social security?\ta U.S. Congressman\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (a U.S. Congressman, voted to create, Social Security) -> a U.S. Congressman (1932ms)\nWhat president created social security?\tless than one child\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (less than one child, creates an undue burden on, social security) -> less than one child (1745ms)\nWhat president created social security?\tBiomass production\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Biomass production, should create, social security) -> Biomass production (1925ms)\nWhat president created social security?\tjobs\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (jobs, establish a new system of, social security) -> jobs (1943ms)\nWhat president created social security?\t?disability ?\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (?disability ?, found in, the Social Security regulations) -> ?disability ? (1932ms)\nWhat president created social security?\tthe Social Security Act\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (the Social Security Act, established, the Social Security Board) -> the Social Security Act (1847ms)\nWhat president created social security?\tSeniors\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Seniors, often find, their Social Security income) -> Seniors (1943ms)\nWhat president created social security?\t2. Bush\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (2. Bush, still wants to create, a Social Security system) -> 2. Bush (1935ms)\nWhat president created social security?\tthe U.S. federal government\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the U.S. federal government, created, social security) -> the U.S. federal government (1794ms)\nWhat president created social security?\tMore information\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (More information, can be found on, the Social Security website) -> More information (1819ms)\nWhat president created social security?\tFDR\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (FDR, created, the Social Security system) -> FDR (1946ms)\nWhat president created social security?\tcivil service\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (civil service, creates, Social Security Administration) -> civil service (1929ms)\nWhat president created social security?\twork incentives\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (work incentives, can be found on, the Social Security web site) -> work incentives (1745ms)\nWhat president created social security?\tthe U.S. government\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the U.S. government, created, its social security program) -> the U.S. government (1938ms)\nWhat president created social security?\tthe tab\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (the tab, Find, a Social Security Office ') -> the tab (1876ms)\nWhat president created social security?\tarthritis\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (arthritis, will be found disabled under, Social Security rules) -> arthritis (1938ms)\nWhat president created social security?\tlife\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (life, can be found in, Social Security or immediate annuities) -> life (1941ms)\nWhat president created social security?\tstate\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (state, can be found on, Social Security web site) -> state (1745ms)\nWhat president created social security?\tthe Congress\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the Congress, created, Social Security or Medicare) -> the Congress (1745ms)\nWhat president created social security?\tthe New-Deal\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the New-Deal, created, Social Security) -> the New-Deal (1938ms)\nWhat president created social security?\tSSI\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (SSI, can be found at, Social Security) -> SSI (1941ms)\nWhat president created social security?\t87 ?\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (87 ?, Creates, a social security fund) -> 87 ? (1938ms)\nWhat president created social security?\tInmate\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Inmate, was found by, the Social Security Admin) -> Inmate (1688ms)\nWhat president created social security?\tsleep apnea\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (sleep apnea, will be found disabled under, Social Security rules) -> sleep apnea (1946ms)\nWhat president created social security?\tNational Social Security Workers Union\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (National Social Security Workers Union, can be found on Wikipedia at, http://en.wikipedia.org/wiki/National%20Social%20Security%20Workers%20Union) -> National Social Security Workers Union (1925ms)\nWhat president created social security?\tMcCoy\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (McCoy, did find, Jonestown social security beneficiaries) -> McCoy (1941ms)\nWhat president created social security?\tThe State\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (The State, establishes, a social security system) -> The State (1932ms)\nWhat president created social security?\tFrance\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (France, created, a fifth national social security agency) -> France (1652ms)\nWhat president created social security?\tturn\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (turn, created, the corporate social security system) -> turn (1932ms)\nWhat president created social security?\tthe Needy\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (the Needy, establish a system of, Social Security) -> the Needy (1932ms)\nWhat president created social security?\tany hacker\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (any hacker, can find, my social security number) -> any hacker (1943ms)\nWhat president created social security?\tFranklin D. Roosevelt\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Franklin D. Roosevelt, created, Social Security) -> Franklin D. Roosevelt (1944ms)\nWhat president created social security?\tthe federal laws\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (the federal laws, established, the Social Security program) -> the federal laws (1847ms)\nWhat president created social security?\tindividuals\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (individuals, find, their local Social Security office) -> individuals (1946ms)\nWhat president created social security?\tThe Social Security Board\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (The Social Security Board, then created, 10 Social Security) -> The Social Security Board (1946ms)\nWhat president created social security?\tNo Culpeppers\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (No Culpeppers, found, Social Security Death Index Source) -> No Culpeppers (1948ms)\nWhat president created social security?\ta plan\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (a plan, would establish, Social Security private accounts) -> a plan (1905ms)\nWhat president created social security?\tThe charter\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (The charter, also creates new rights to, social security) -> The charter (1905ms)\nWhat president created social security?\tSensitive Data\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Sensitive Data, Find, unsecured Social Security Numbers) -> Sensitive Data (1905ms)\nWhat president created social security?\tTibet\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (Tibet, has established, a social security system) -> Tibet (1795ms)\nWhat president created social security?\tOne reader\t0.555555555551\tWhat president created social security? -> $x: ($x, discover, social security) -> (One reader, discovered errors in, her Social Security statements) -> One reader (1935ms)\nWhat president created social security?\tthe president\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the president, first created, a Social Security system) -> the president (1795ms)\nWhat president created social security?\tPolitical Movement for Social Security\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Political Movement for Social Security, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Political%20Movement%20for%20Social%20Security) -> Political Movement for Social Security (1925ms)\nWhat president created social security?\tgovernment\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (government, creates, a social security system) -> government (1935ms)\nWhat president created social security?\tthe author\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (the author, find disappointing in, the Social Security program) -> the author (1941ms)\nWhat president created social security?\tThe new web pages\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (The new web pages, can be found on, the Social Security website) -> The new web pages (1932ms)\nWhat president created social security?\tyou?ll\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (you?ll, find, a Social Security disability attorney) -> you?ll (1946ms)\nWhat president created social security?\tthe commission\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the commission, thus created, the Social Security surplus) -> the commission (1925ms)\nWhat president created social security?\tChipotle\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Chipotle, found, incorrect Social Security numbers) -> Chipotle (1925ms)\nWhat president created social security?\tFranklin Roosevelt\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Franklin Roosevelt, created, social security) -> Franklin Roosevelt (1925ms)\nWhat president created social security?\tPresident Franklin Delano Roosevelt\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (President Franklin Delano Roosevelt, created, Social Security) -> President Franklin Delano Roosevelt (1935ms)\nWhat president created social security?\ta state\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (a state, to establish, a system of social security) -> a state (1938ms)\nWhat president created social security?\tinformation\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (information, found in, the Social Security Death Index) -> information (1943ms)\nWhat president created social security?\tthe promise\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the promise, create, a social security network) -> the promise (1932ms)\nWhat president created social security?\tOld Friends\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Old Friends, will help create, a social security system) -> Old Friends (1905ms)\nWhat president created social security?\tRall\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Rall, says finding, a social security card) -> Rall (1929ms)\nWhat president created social security?\tLiberals\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Liberals, created, Social Security) -> Liberals (1819ms)\nWhat president created social security?\tthe header\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (the header, Find, A Social Security Office) -> the header (1847ms)\nWhat president created social security?\tthe heading\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (the heading, Find, A Social Security Office) -> the heading (1935ms)\nWhat president created social security?\tthe politicians\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the politicians, created, the Social Security program) -> the politicians (1938ms)\nWhat president created social security?\tLocal Office Search\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Local Office Search, find, your local Social Security office) -> Local Office Search (1932ms)\nWhat president created social security?\tthe party\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the party, created, Social Security and Medicare) -> the party (1948ms)\nWhat president created social security?\tQuigley?s office\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Quigley?s office, found out, the Social Security Administration) -> Quigley?s office (1929ms)\nWhat president created social security?\tdhss\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (dhss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Department%20of%20Health%20and%20Social%20Security) -> dhss (1905ms)\nWhat president created social security?\tany age\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (any age, can be found disabled by, Social Security) -> any age (1932ms)\nWhat president created social security?\tthe bill\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the bill, creating, Social Security) -> the bill (1948ms)\nWhat president created social security?\tthe government\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (the government, established, Social Security) -> the government (1948ms)\nWhat president created social security?\tsoftware\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (software, find, Social Security Numbers) -> software (1935ms)\nWhat president created social security?\tthe staff\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (the staff, will be able to find, their Social Security Number) -> the staff (1943ms)\nWhat president created social security?\tGenerations\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Generations, worked to create, our Social Security) -> Generations (1929ms)\nWhat president created social security?\ta business\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (a business, may find, Social Security) -> a business (1688ms)\nWhat president created social security?\tthe New Deal\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the New Deal, created, Social Security) -> the New Deal (1941ms)\nWhat president created social security?\t35 %\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (35 %, establish private accounts for, Social Security) -> 35 % (1929ms)\nWhat president created social security?\tPeople Search GUIDE TOOLS\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (People Search GUIDE TOOLS, Find Out, Social Security Numbers) -> People Search GUIDE TOOLS (1688ms)\nWhat president created social security?\tmuch less work\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (much less work, even created, a social-security system) -> much less work (1935ms)\nWhat president created social security?\ta child\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (a child, was found to have, six social security numbers) -> a child (1819ms)\nWhat president created social security?\tCrooks\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Crooks, can find, all the Social Security numbers) -> Crooks (1946ms)\nWhat president created social security?\tBachelet\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Bachelet, created, a social security network) -> Bachelet (1935ms)\nWhat president created social security?\tthe Rich\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the Rich, Created, the Social Security) -> the Rich (1795ms)\nWhat president created social security?\tEric Karros\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (Eric Karros, found, their social security checks) -> Eric Karros (1905ms)\nWhat president created social security?\tIndia\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (India, create, an American-style Social Security Administration) -> India (1938ms)\nWhat president created social security?\tInternational Social Security Association\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (International Social Security Association, can be found on Wikipedia at, http://en.wikipedia.org/wiki/International%20Social%20Security%20Association) -> International Social Security Association (1847ms)\nWhat president created social security?\tE-Verify\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (E-Verify, was created at, Social Security) -> E-Verify (1847ms)\nWhat president created social security?\tonline businesses\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (online businesses, are finding, inactive Social Security numbers) -> online businesses (1938ms)\nWhat president created social security?\tthe law\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the law, creating, Social Security) -> the law (1948ms)\nWhat president created social security?\tthe IRA. 9\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (the IRA. 9, Find out about, your Social Security benefits) -> the IRA. 9 (1948ms)\nWhat president created social security?\tprogressives politicians\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (progressives politicians, create, Social Security) -> progressives politicians (1929ms)\nWhat president created social security?\ta switch\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (a switch, also could create, Social Security issues) -> a switch (1652ms)\nWhat president created social security?\tRalphs\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (Ralphs, created, fake Social Security Numbers) -> Ralphs (1905ms)\nWhat president created social security?\thigher brackets\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (higher brackets, may find, that Social Security income) -> higher brackets (1929ms)\nWhat president created social security?\tthe Democrats\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the Democrats, created, Social Security and the Republicans) -> the Democrats (1935ms)\nWhat president created social security?\tdeath records\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (death records, find people by, name or social security number) -> death records (1925ms)\nWhat president created social security?\tthe Great Depression\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the Great Depression, was to create, Social Security) -> the Great Depression (1941ms)\nWhat president created social security?\t1935\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (1935, created, Social Security) -> 1935 (1905ms)\nWhat president created social security?\tthe Act\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (the Act, established, Social Security) -> the Act (1943ms)\nWhat president created social security?\tThe Act\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (The Act, creates, a Social Security Board) -> The Act (1935ms)\nWhat president created social security?\tlicenses\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (licenses, will find, their Social Security numbers) -> licenses (1938ms)\nWhat president created social security?\tharness modern science\t0.555555555551\tWhat president created social security? -> $x: ($x, establish, social security) -> (harness modern science, establish, personal Social Security) -> harness modern science (1688ms)\nWhat president created social security?\tthe option\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (the option, Find, a Social Security office) -> the option (1944ms)\nWhat president created social security?\tthe country\t0.555555555551\tWhat president created social security? -> $x: ($x, created, social security) -> (the country, must create a real system of, social security) -> the country (1935ms)\nWhat president created social security?\tThe information\t0.555555555551\tWhat president created social security? -> $x: ($x, find, social security) -> (The information, found in, the Social Security Death Index) -> The information (1943ms)\nWhat president created social security?\tThe Communists\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (The Communists, produced, social security) -> The Communists (1948ms)\nWhat president created social security?\ta waiver\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (a waiver, produce, a Social Security Card) -> a waiver (1950ms)\nWhat president created social security?\tThe accounts\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (The accounts, produce a permanent surplus in, Social Security) -> The accounts (1950ms)\nWhat president created social security?\tthe demographics\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (the demographics, produce, a Social Security gap) -> the demographics (1950ms)\nWhat president created social security?\tSanae\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (Sanae, also produced, a Social Security number) -> Sanae (1950ms)\nWhat president created social security?\tworkers\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (workers, must produce, a Social Security card) -> workers (1950ms)\nWhat president created social security?\tFlores\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (Flores, produced, a Social Security card) -> Flores (1950ms)\nWhat president created social security?\tAndy Cox\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (Andy Cox, Tracks produced, Social Security) -> Andy Cox (1950ms)\nWhat president created social security?\tthe Machine\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (the Machine, produces, the social security number) -> the Machine (1950ms)\nWhat president created social security?\tDiaz\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (Diaz, had produced, a Social Security number) -> Diaz (1950ms)\nWhat president created social security?\tDavid Steele\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (David Steele, Tracks produced, Social Security) -> David Steele (1950ms)\nWhat president created social security?\tthe hiring hall\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (the hiring hall, produced, the Social Security cards) -> the hiring hall (1950ms)\nWhat president created social security?\tNon-Residents\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (Non-Residents, are required to produce, Social Security number) -> Non-Residents (1948ms)\nWhat president created social security?\tAlvarez\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (Alvarez, was unable to produce, a valid Social Security card) -> Alvarez (1950ms)\nWhat president created social security?\tRoland Gift\t0.55555555555\tWhat president created social security? -> $x: ($x, produce, social security) -> (Roland Gift, Tracks produced, Social Security) -> Roland Gift (1950ms)\nWhat president created social security?\tthe accounts\t0.222222222221\tWhat president created social security? -> $x: ($x, created, social security number) -> (the accounts, are created under, the same Social Security number) -> the accounts (1952ms)\nWhen was it introduced into the U.S.?\tJapanese scientists\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Japanese scientists, introduced into, U.S. soft drinks) -> Japanese scientists (988ms)\nWhen was it introduced into the U.S.?\tBill\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Bill, introduced into, the U.S. House) -> Bill (990ms)\nWhen was it introduced into the U.S.?\tsweet potatoes\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (sweet potatoes, were first introduced into, the U.S.) -> sweet potatoes (990ms)\nWhen was it introduced into the U.S.?\tKudzu\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Kudzu, was introduced into, the U.S.) -> Kudzu (990ms)\nWhen was it introduced into the U.S.?\tThe Maxixe\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Maxixe, was introduced into, the U.S.A.) -> The Maxixe (990ms)\nWhen was it introduced into the U.S.?\tIntroduction Houndstongue\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Introduction Houndstongue, was introduced into, the U.S.) -> Introduction Houndstongue (989ms)\nWhen was it introduced into the U.S.?\tmetrazol convulsive therapy\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (metrazol convulsive therapy, was introduced into, U.S. asylums) -> metrazol convulsive therapy (989ms)\nWhen was it introduced into the U.S.?\tthe virus\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the virus, was first introduced into, the U.S.) -> the virus (986ms)\nWhen was it introduced into the U.S.?\tan act\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (an act, was introduced into, the U.S. Congress) -> an act (989ms)\nWhen was it introduced into the U.S.?\tan innovative method\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (an innovative method, were largely introduced into, the U.S.) -> an innovative method (987ms)\nWhen was it introduced into the U.S.?\tWater chestnut\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Water chestnut, was introduced into, the U.S.) -> Water chestnut (987ms)\nWhen was it introduced into the U.S.?\tMass.\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Mass., had introduced into, the U.S.) -> Mass. (984ms)\nWhen was it introduced into the U.S.?\tautumn olive\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (autumn olive, was introduced into, the U.S.) -> autumn olive (991ms)\nWhen was it introduced into the U.S.?\tThe House Sparrow\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The House Sparrow, was first introduced into, the U.S.) -> The House Sparrow (986ms)\nWhen was it introduced into the U.S.?\tDistribution Autumn olive\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Distribution Autumn olive, was introduced into, U.S. cultivation) -> Distribution Autumn olive (988ms)\nWhen was it introduced into the U.S.?\tGreen Star\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Green Star, has just been introduced into, U.S. market) -> Green Star (990ms)\nWhen was it introduced into the U.S.?\tSales\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Sales, introduced into, the U.S. market) -> Sales (989ms)\nWhen was it introduced into the U.S.?\tThe elm leaf beetle\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The elm leaf beetle, was accidentally introduced into, the U.S.) -> The elm leaf beetle (990ms)\nWhen was it introduced into the U.S.?\tCounterfeits Act ?\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Counterfeits Act ?, was introduced into, the U.S. Senate) -> Counterfeits Act ? (988ms)\nWhen was it introduced into the U.S.?\tEurope or Asia\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Europe or Asia, was probably introduced into, the U.S.) -> Europe or Asia (989ms)\nWhen was it introduced into the U.S.?\tThe Asian grass carp\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Asian grass carp, was introduced deliberately into, the U.S.) -> The Asian grass carp (984ms)\nWhen was it introduced into the U.S.?\tThe pest\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The pest, was introduced into, the U.S.) -> The pest (991ms)\nWhen was it introduced into the U.S.?\ta new pest/disease\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a new pest/disease, may have been introduced into, the U.S.) -> a new pest/disease (987ms)\nWhen was it introduced into the U.S.?\tFabaceae Soybeans\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Fabaceae Soybeans, were first introduced into, the U.S.) -> Fabaceae Soybeans (989ms)\nWhen was it introduced into the U.S.?\tThe PROTECT IP Act\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The PROTECT IP Act, was introduced into, the U.S. Senate) -> The PROTECT IP Act (991ms)\nWhen was it introduced into the U.S.?\tGMOs\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (GMOs, are rapidly being introduced into, U.S. agriculture) -> GMOs (990ms)\nWhen was it introduced into the U.S.?\tThe method\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The method, was introduced into, the U.S.) -> The method (984ms)\nWhen was it introduced into the U.S.?\tOne bill\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (One bill, introduced into, the U.S. Senate) -> One bill (989ms)\nWhen was it introduced into the U.S.?\tdisease\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (disease, is first introduced into, the U.S.) -> disease (984ms)\nWhen was it introduced into the U.S.?\tcultivar\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (cultivar, was introduced into, the U.S.) -> cultivar (988ms)\nWhen was it introduced into the U.S.?\tThe predators\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The predators, have been introduced into, the U.S.) -> The predators (984ms)\nWhen was it introduced into the U.S.?\tMexico and Canada\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Mexico and Canada, was introduced into, the U.S. House) -> Mexico and Canada (989ms)\nWhen was it introduced into the U.S.?\tWest Nile\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (West Nile, was first introduced into, the U.S.) -> West Nile (984ms)\nWhen was it introduced into the U.S.?\tgarlic mustard\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (garlic mustard, was introduced into, the northeastern U. S.) -> garlic mustard (989ms)\nWhen was it introduced into the U.S.?\tRussian bee queens\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Russian bee queens, were introduced into, the U.S.) -> Russian bee queens (990ms)\nWhen was it introduced into the U.S.?\tEurope\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Europe, was introduced into, the U.S.) -> Europe (986ms)\nWhen was it introduced into the U.S.?\tAmur honeysuckles\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Amur honeysuckles, were introduced into, the U.S.) -> Amur honeysuckles (988ms)\nWhen was it introduced into the U.S.?\tThe seeds\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The seeds, were introduced into, the U.S) -> The seeds (984ms)\nWhen was it introduced into the U.S.?\tthe products\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the products, were introduced into, the U.S.) -> the products (986ms)\nWhen was it introduced into the U.S.?\tProject\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Project, have been introduced into, the U.S.) -> Project (989ms)\nWhen was it introduced into the U.S.?\tEurope centuries\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Europe centuries, was introduced into, the U.S.) -> Europe centuries (984ms)\nWhen was it introduced into the U.S.?\tantidepressant medication\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (antidepressant medication, was introduced into, the U.S.) -> antidepressant medication (989ms)\nWhen was it introduced into the U.S.?\tAir yam\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Air yam, was introduced into, the U.S.) -> Air yam (989ms)\nWhen was it introduced into the U.S.?\tChina\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (China, was introduced into, the U.S.) -> China (988ms)\nWhen was it introduced into the U.S.?\tGA Mimosa Tree\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (GA Mimosa Tree, was introduced into, the U.S.) -> GA Mimosa Tree (990ms)\nWhen was it introduced into the U.S.?\tthe varroa mite\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the varroa mite, were introduced into, the U.S.) -> the varroa mite (986ms)\nWhen was it introduced into the U.S.?\tPaulownia tomentosa Princesstree\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Paulownia tomentosa Princesstree, was introduced into, the U.S.) -> Paulownia tomentosa Princesstree (988ms)\nWhen was it introduced into the U.S.?\ta leading supplier\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a leading supplier, introduces into, the U.S. market) -> a leading supplier (990ms)\nWhen was it introduced into the U.S.?\tthe 128 kHz microchip\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the 128 kHz microchip, have been introduced into, the U.S.) -> the 128 kHz microchip (986ms)\nWhen was it introduced into the U.S.?\tMorrow?s and Amur honeysuckles\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Morrow?s and Amur honeysuckles, were introduced into, the U.S.) -> Morrow?s and Amur honeysuckles (984ms)\nWhen was it introduced into the U.S.?\tvegetable oils\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (vegetable oils, was introduced into, the U.S.) -> vegetable oils (990ms)\nWhen was it introduced into the U.S.?\tdata breach response\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (data breach response, have been introduced into, the U.S. Senate) -> data breach response (989ms)\nWhen was it introduced into the U.S.?\tThe soybean plant\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The soybean plant, was originally introduced into, the U.S.) -> The soybean plant (988ms)\nWhen was it introduced into the U.S.?\tChinaberry\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Chinaberry, was introduced into, the U.S.) -> Chinaberry (989ms)\nWhen was it introduced into the U.S.?\tRepair Act\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Repair Act, has been introduced into, the U.S. Congress) -> Repair Act (991ms)\nWhen was it introduced into the U.S.?\tevery 10 new books\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (every 10 new books, introduced into, the U.S. market) -> every 10 new books (990ms)\nWhen was it introduced into the U.S.?\tnew soybean accessions\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (new soybean accessions, were introduced into, the U.S.) -> new soybean accessions (983ms)\nWhen was it introduced into the U.S.?\tFirst\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (First, introduced into, the U.S.) -> First (990ms)\nWhen was it introduced into the U.S.?\tHertz\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Hertz, introduced into, its U.S. fleet) -> Hertz (990ms)\nWhen was it introduced into the U.S.?\t555\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (555, was introduced into, the U. S. Senate) -> 555 (987ms)\nWhen was it introduced into the U.S.?\tFaith\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Faith, will be introduced into, U.S. public) -> Faith (990ms)\nWhen was it introduced into the U.S.?\trisks\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (risks, are introduced into, U.S. waters) -> risks (984ms)\nWhen was it introduced into the U.S.?\ta fungus\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a fungus, introduced into, the U.S.) -> a fungus (986ms)\nWhen was it introduced into the U.S.?\tthe tomato\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the tomato, was introduced into, the U.S.) -> the tomato (990ms)\nWhen was it introduced into the U.S.?\tthe same name\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the same name, was introduced into, the U.S. House) -> the same name (989ms)\nWhen was it introduced into the U.S.?\tAfrica\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Africa, introduced into, the U.S.) -> Africa (984ms)\nWhen was it introduced into the U.S.?\tThe M3\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The M3, was introduced into, the U. S. Army) -> The M3 (983ms)\nWhen was it introduced into the U.S.?\t230 new pizzas\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (230 new pizzas, were introduced into, the U.S.) -> 230 new pizzas (986ms)\nWhen was it introduced into the U.S.?\tRed fire ants\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Red fire ants, were introduced into, the U.S.) -> Red fire ants (984ms)\nWhen was it introduced into the U.S.?\tthe monkeypox virus\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the monkeypox virus, was introduced into, the U.S.) -> the monkeypox virus (986ms)\nWhen was it introduced into the U.S.?\tthe PWR\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the PWR, introduced into, the U.S. market) -> the PWR (986ms)\nWhen was it introduced into the U.S.?\tThe Elise\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Elise, was recently introduced into, the U.S.) -> The Elise (989ms)\nWhen was it introduced into the U.S.?\ta member\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a member, was introduced into, the U.S.) -> a member (988ms)\nWhen was it introduced into the U.S.?\tThe Chinese Jujube\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Chinese Jujube, was introduced formally into, the U.S.) -> The Chinese Jujube (986ms)\nWhen was it introduced into the U.S.?\ta native\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a native, was probably introduced into, the U.S.) -> a native (991ms)\nWhen was it introduced into the U.S.?\tIridology\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Iridology, was introduced into, the U. S.) -> Iridology (986ms)\nWhen was it introduced into the U.S.?\tdeterrence\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (deterrence, should also be introduced into, U.S. policy) -> deterrence (986ms)\nWhen was it introduced into the U.S.?\ta resolution\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a resolution, had been introduced into, the U.S. House) -> a resolution (991ms)\nWhen was it introduced into the U.S.?\tSAM-e\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (SAM-e, was officially introduced into, the U.S.) -> SAM-e (986ms)\nWhen was it introduced into the U.S.?\tMimosa\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Mimosa, was first introduced into, the U.S.) -> Mimosa (990ms)\nWhen was it introduced into the U.S.?\tGHB and ketamine\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (GHB and ketamine, were first introduced into, the U.S.) -> GHB and ketamine (988ms)\nWhen was it introduced into the U.S.?\tGreen-oriented legislation\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Green-oriented legislation, introduced into, the U.S. Congress) -> Green-oriented legislation (991ms)\nWhen was it introduced into the U.S.?\tSenator Obama\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Senator Obama, introduced into, the U.S. Senate) -> Senator Obama (990ms)\nWhen was it introduced into the U.S.?\tSeveral technologies\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Several technologies, have been introduced into, the U.S. market) -> Several technologies (984ms)\nWhen was it introduced into the U.S.?\tThe Gardnerian sect\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Gardnerian sect, is introduced into, the U.S.) -> The Gardnerian sect (991ms)\nWhen was it introduced into the U.S.?\tThe B-biotype\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The B-biotype, was introduced into, the U.S.) -> The B-biotype (990ms)\nWhen was it introduced into the U.S.?\tthe Troya brand\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the Troya brand, was introduced into, the U. S. market) -> the Troya brand (984ms)\nWhen was it introduced into the U.S.?\tthe Beetle\t1.22222222221\tWhen was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the Beetle, was introduced into, the U.S.) -> the Beetle (988ms)\nWhen is Jennifer Lopez's birthday?\tthe USA\t0.111111111108\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez, was born in, the USA) -> the USA (773ms)\nWhen is Jennifer Lopez's birthday?\t1970\t0.111111111108\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez and Beck, were all born in, 1970) -> 1970 (773ms)\nWhen is Jennifer Lopez's birthday?\tthe Castle Hill section\t0.111111111108\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lynn Lopez, was born in, the Castle Hill section) -> the Castle Hill section (773ms)\nWhen is Jennifer Lopez's birthday?\tNew York City\t0.111111111108\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez, was born in, New York City) -> New York City (773ms)\nWhen is Jennifer Lopez's birthday?\tthe Bronx , New York\t0.111111111108\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez Jennifer Lopez, was born in, the Bronx , New York) -> the Bronx , New York (773ms)\nWhen is Jennifer Lopez's birthday?\tthe Bronx , NY ,\t0.111111111108\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Actress/singer Jennifer Lopez, was born in, the Bronx , NY ,) -> the Bronx , NY , (773ms)\nWhen is Jennifer Lopez's birthday?\tJuly 24\t-0.333333333335\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lynn Lopez, was born on, July 24) -> July 24 (773ms)\nWhen is Jennifer Lopez's birthday?\t24th July 1969\t-0.333333333335\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lynn Lopez, was born on, 24th July 1969) -> 24th July 1969 (773ms)\nWhen is Jennifer Lopez's birthday?\tJuly 24 , 1970\t-0.333333333335\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lopez, was born on, July 24 , 1970) -> July 24 , 1970 (773ms)\nWhen is Jennifer Lopez's birthday?\tJuly 24 , 1969\t-0.333333333335\tWhen is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lopez, was born on, July 24 , 1969) -> July 24 , 1969 (773ms)\nWhen was Shakespeare born?\tEngland\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, England) -> England (6544ms)\nWhen was Shakespeare born?\tApril , 1564\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (6933ms)\nWhen was Shakespeare born?\tthe depths\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (6545ms)\nWhen was Shakespeare born?\tthe year\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the year) -> the year (6640ms)\nWhen was Shakespeare born?\tApril 1564\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (THE POET William Shakespeare, was born in, April 1564) -> April 1564 (6933ms)\nWhen was Shakespeare born?\tStratford\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, is born in, Stratford) -> Stratford (6640ms)\nWhen was Shakespeare born?\tlate April 1564\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (6545ms)\nWhen was Shakespeare born?\tStratford-on-Avon\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (6640ms)\nWhen was Shakespeare born?\tStratford-upon-Avon\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (2007 William Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (6933ms)\nWhen was Shakespeare born?\tStratford and today\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (5275ms)\nWhen was Shakespeare born?\t1564\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, 1564) -> 1564 (6640ms)\nWhen was Shakespeare born?\tthe town\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the town) -> the town (5349ms)\nWhen was Shakespeare born?\tthe county of Warwick\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (6933ms)\nWhen was Shakespeare born?\tApril\t0.888888888883\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, April) -> April (6545ms)\nWhen was Shakespeare born?\tSt . Austell\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (9644ms)\nWhen was Shakespeare born?\tKingston\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (11787ms)\nWhen was Shakespeare born?\t1529\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (7560ms)\nWhen was Shakespeare born?\tthe village\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, the village) -> the village (12057ms)\nWhen was Shakespeare born?\tTeaneck\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (11660ms)\nWhen was Shakespeare born?\tWorcester\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (11660ms)\nWhen was Shakespeare born?\tthe same year\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (12057ms)\nWhen was Shakespeare born?\tHenley Street\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (11660ms)\nWhen was Shakespeare born?\t1554\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (9589ms)\nWhen was Shakespeare born?\tItaly\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, Italy) -> Italy (11273ms)\nWhen was Shakespeare born?\tthe Warwickshire town\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (12057ms)\nWhen was Shakespeare born?\tApril and World book day\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (6933ms)\nWhen was Shakespeare born?\ta small town\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, a small town) -> a small town (12057ms)\nWhen was Shakespeare born?\tthe latter half\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (7560ms)\nWhen was Shakespeare born?\tJackson\t0.666666666662\tWhen was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (6933ms)\nWhen was Shakespeare born?\tthe same city\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the same city) -> the same city (12092ms)\nWhen was Shakespeare born?\tEngland four hundred years\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, England four hundred years) -> England four hundred years (12091ms)\nWhen was Shakespeare born?\t26 April 1564\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, 26 April 1564) -> 26 April 1564 (12192ms)\nWhen was Shakespeare born?\tApril 23 , 1564\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, may have been born on, April 23 , 1564) -> April 23 , 1564 (12192ms)\nWhen was Shakespeare born?\tLondon\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> ('s Southwark William Shakespeare, lived in, London) -> London (12092ms)\nWhen was Shakespeare born?\ta time\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, also lived in, a time) -> a time (12192ms)\nWhen was Shakespeare born?\tthe epoch\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the epoch) -> the epoch (12159ms)\nWhen was Shakespeare born?\tApril 23\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, April 23) -> April 23 (12159ms)\nWhen was Shakespeare born?\t23 April 1564\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, 23 April 1564) -> 23 April 1564 (12125ms)\nWhen was Shakespeare born?\tthe 26th\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, the 26th) -> the 26th (12192ms)\nWhen was Shakespeare born?\ta 23... dead\t0.555555555553\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, a 23... dead) -> a 23... dead (12125ms)\nWhen was Shakespeare born?\tApril 23 , 1616\t0.44444444444199993\tWhen was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, April 23 , 1616) -> April 23 , 1616 (12270ms)\nWhen was Shakespeare born?\t1564 ! 5 hours ago\t0.44444444444199993\tWhen was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (12192ms)\nWhen was Shakespeare born?\tThe town\t0.44444444444199993\tWhen was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (12320ms)\nWhen was Shakespeare born?\t1564 ! 1 hour ago\t0.44444444444199993\tWhen was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (12245ms)\nWhen was Shakespeare born?\t23 April 1616\t0.44444444444199993\tWhen was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, 23 April 1616) -> 23 April 1616 (12320ms)\nWhen was Shakespeare born?\t1564 ! 2\t0.44444444444199993\tWhen was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (12192ms)\nWhen was Shakespeare born?\tStratford upon Avon\t0.44444444444199993\tWhen was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford upon Avon, is the birthplace of, William Shakespeare) -> Stratford upon Avon (12245ms)\nWhen was Shakespeare born?\tWhat town\t0.44444444444199993\tWhen was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (12218ms)\nWhen was Shakespeare born?\tAvon\t0.44444444444199993\tWhen was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Avon, is the birthplace of, William Shakespeare) -> Avon (12245ms)\nWhen was Shakespeare born?\t1564 ! 3 hours ago\t0.44444444444199993\tWhen was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (12192ms)\nWhen was Shakespeare born?\tan island\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare?s Prospero, lived on, an island) -> an island (12572ms)\nWhen was Shakespeare born?\tLafayette\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Lafayette) -> Lafayette (12505ms)\nWhen was Shakespeare born?\tsuch a nasty 'ouse\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, such a nasty 'ouse) -> such a nasty 'ouse (12438ms)\nWhen was Shakespeare born?\t23rd April\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, 23rd April) -> 23rd April (12550ms)\nWhen was Shakespeare born?\tSt George?s day\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, St George?s day) -> St George?s day (12548ms)\nWhen was Shakespeare born?\t1616\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, 1616) -> 1616 (12460ms)\nWhen was Shakespeare born?\tLondon writing\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, London writing) -> London writing (12572ms)\nWhen was Shakespeare born?\t23 April\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, 23 April) -> 23 April (12483ms)\nWhen was Shakespeare born?\tsuch a time\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, did live in, such a time) -> such a time (12526ms)\nWhen was Shakespeare born?\tthe present day\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (shakespeare, lived in, the present day) -> the present day (12548ms)\nWhen was Shakespeare born?\tthe parish\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in, the parish) -> the parish (12572ms)\nWhen was Shakespeare born?\tan era\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an era) -> an era (12415ms)\nWhen was Shakespeare born?\ta very turbulent time\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a very turbulent time) -> a very turbulent time (12460ms)\nWhen was Shakespeare born?\thigh schools\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, is living today?in, high schools) -> high schools (12460ms)\nWhen was Shakespeare born?\ta world\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (?Shakespeare, lived in, a world) -> a world (12438ms)\nWhen was Shakespeare born?\ta theatre\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (10 professionally-produced Shakespeare plays, live in, a theatre) -> a theatre (12460ms)\nWhen was Shakespeare born?\tSunday\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was indeed born on, Sunday) -> Sunday (12438ms)\nWhen was Shakespeare born?\tthe overwhelming fascination\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in was, the overwhelming fascination) -> the overwhelming fascination (12526ms)\nWhen was Shakespeare born?\tBuenos Aires\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Nicholas Shakespeare, lived in, Buenos Aires) -> Buenos Aires (12392ms)\nWhen was Shakespeare born?\tthe countryside\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s day, lived in, the countryside) -> the countryside (12504ms)\nWhen was Shakespeare born?\ttheater\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s Play, live in, theater) -> theater (12571ms)\nWhen was Shakespeare born?\tan absolutist world\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an absolutist world) -> an absolutist world (12548ms)\nWhen was Shakespeare born?\tMars\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Bierce and Shakespeare, are all living on, Mars) -> Mars (12415ms)\nWhen was Shakespeare born?\tApril 26\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, April 26) -> April 26 (12504ms)\nWhen was Shakespeare born?\tan age\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an age) -> an age (12571ms)\nWhen was Shakespeare born?\ta tiny house\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a tiny house) -> a tiny house (12483ms)\nWhen was Shakespeare born?\tLancashire\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, may have lived in, Lancashire) -> Lancashire (12505ms)\nWhen was Shakespeare born?\tTudor England\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, Tudor England) -> Tudor England (12548ms)\nWhen was Shakespeare born?\tretirement\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, retirement) -> retirement (12593ms)\nWhen was Shakespeare born?\tApril 26 , 1564\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, April 26 , 1564) -> April 26 , 1564 (12593ms)\nWhen was Shakespeare born?\tMuggleton Street\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Muggleton Street) -> Muggleton Street (12505ms)\nWhen was Shakespeare born?\tApril 23rd\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (! Shakespeare, was born on, April 23rd) -> April 23rd (12526ms)\nWhen was Shakespeare born?\tthe streets\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (this Shakespeare, lived in, the streets) -> the streets (12483ms)\nWhen was Shakespeare born?\tthe 23rd too\t0.333333333332\tWhen was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, the 23rd too) -> the 23rd too (12571ms)\nWhen was Shakespeare born?\tAprill\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, Aprill) -> Aprill (12614ms)\nWhen was Shakespeare born?\tmurder sleep\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare Macbeth, does, murder sleep) -> murder sleep (12634ms)\nWhen was Shakespeare born?\tCharlie Brown love\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (. William Shakespeare 14, did, Charlie Brown love) -> Charlie Brown love (12613ms)\nWhen was Shakespeare born?\twrong\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, do, wrong) -> wrong (12613ms)\nWhen was Shakespeare born?\ttoday effects tomorrow\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (~William Shakespeare, is done, today effects tomorrow) -> today effects tomorrow (12613ms)\nWhen was Shakespeare born?\ta kindness\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (- William Shakespeare, cannot do, a kindness) -> a kindness (12593ms)\nWhen was Shakespeare born?\ta laptop?\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (?William Shakespeare, did n?t have, a laptop?) -> a laptop? (12613ms)\nWhen was Shakespeare born?\tApril 1616\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, April 1616) -> April 1616 (12613ms)\nWhen was Shakespeare born?\tsuccess\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare Commitment, does n?t guarantee, success) -> success (12634ms)\nWhen was Shakespeare born?\tnow\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, Did my heart love till, now) -> now (12593ms)\nWhen was Shakespeare born?\ta sponge\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did have the brain like, a sponge) -> a sponge (12634ms)\nWhen was Shakespeare born?\tmatter\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare ?It, does n?t, matter) -> matter (12634ms)\nWhen was Shakespeare born?\tthe ghost\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did play the role of, the ghost) -> the ghost (12613ms)\nWhen was Shakespeare born?\tbattle\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, battle) -> battle (12613ms)\nWhen was Shakespeare born?\tcollege\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did n?t go to, college) -> college (12613ms)\nWhen was Shakespeare born?\tWitchcraft\t0.33333333333099996\tWhen was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did, Witchcraft) -> Witchcraft (12613ms)\nWhen was Shakespeare born?\t1830\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1830) -> 1830 (12654ms)\nWhen was Shakespeare born?\t1840\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1840) -> 1840 (12751ms)\nWhen was Shakespeare born?\t1852\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, being born in, 1852) -> 1852 (12674ms)\nWhen was Shakespeare born?\t1849\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1849) -> 1849 (12732ms)\nWhen was Shakespeare born?\t1811\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1811) -> 1811 (12693ms)\nWhen was Shakespeare born?\tMissouri\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Missouri) -> Missouri (12732ms)\nWhen was Shakespeare born?\t1765\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1765) -> 1765 (12674ms)\nWhen was Shakespeare born?\tWales\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Wales) -> Wales (12712ms)\nWhen was Shakespeare born?\t1915\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1915) -> 1915 (12634ms)\nWhen was Shakespeare born?\t1833\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1833) -> 1833 (12654ms)\nWhen was Shakespeare born?\t1864\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1864) -> 1864 (12732ms)\nWhen was Shakespeare born?\t1804\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1804) -> 1804 (12751ms)\nWhen was Shakespeare born?\tToronto\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Toronto) -> Toronto (12674ms)\nWhen was Shakespeare born?\t1787\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1787) -> 1787 (12654ms)\nWhen was Shakespeare born?\tBoston\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Boston) -> Boston (12712ms)\nWhen was Shakespeare born?\tMiss\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (william, was born in, Miss) -> Miss (12674ms)\nWhen was Shakespeare born?\tSydney\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Sydney) -> Sydney (12732ms)\nWhen was Shakespeare born?\tBelfast City\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belfast City) -> Belfast City (12712ms)\nWhen was Shakespeare born?\tGreene County\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Greene County) -> Greene County (12693ms)\nWhen was Shakespeare born?\tBrooklyn\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Brooklyn) -> Brooklyn (12693ms)\nWhen was Shakespeare born?\t1827\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1827) -> 1827 (12654ms)\nWhen was Shakespeare born?\t1893\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1893) -> 1893 (12732ms)\nWhen was Shakespeare born?\t1728\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1728) -> 1728 (12674ms)\nWhen was Shakespeare born?\t1892\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1892) -> 1892 (12712ms)\nWhen was Shakespeare born?\tNew York\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, New York) -> New York (12732ms)\nWhen was Shakespeare born?\t1825\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1825) -> 1825 (12751ms)\nWhen was Shakespeare born?\t1822\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1822) -> 1822 (12673ms)\nWhen was Shakespeare born?\tEdinburgh\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Edinburgh) -> Edinburgh (12732ms)\nWhen was Shakespeare born?\t1836\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1836) -> 1836 (12693ms)\nWhen was Shakespeare born?\t1818\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1818) -> 1818 (12732ms)\nWhen was Shakespeare born?\t1763\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1763) -> 1763 (12751ms)\nWhen was Shakespeare born?\torleans\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in the city, orleans) -> orleans (12674ms)\nWhen was Shakespeare born?\t1770\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1770) -> 1770 (12732ms)\nWhen was Shakespeare born?\tMitre Lane\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Mitre Lane) -> Mitre Lane (12751ms)\nWhen was Shakespeare born?\t1817\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1817) -> 1817 (12712ms)\nWhen was Shakespeare born?\tSan Jose\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, San Jose) -> San Jose (12634ms)\nWhen was Shakespeare born?\tAla\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Ala) -> Ala (12751ms)\nWhen was Shakespeare born?\t1803\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1803) -> 1803 (12634ms)\nWhen was Shakespeare born?\t1931\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1931) -> 1931 (12732ms)\nWhen was Shakespeare born?\tTexas\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Texas) -> Texas (12673ms)\nWhen was Shakespeare born?\t1880\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1880) -> 1880 (12693ms)\nWhen was Shakespeare born?\t1887\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1887) -> 1887 (12751ms)\nWhen was Shakespeare born?\tAmerica\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, America) -> America (12654ms)\nWhen was Shakespeare born?\t1937\t0.33333333333\tWhen was Shakespeare born? -> $x: (prose, be bear in, $x) -> (Prose Alain Labrousse, was born in, 1937) -> 1937 (12693ms)\nWhen was Shakespeare born?\t1790\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1790) -> 1790 (12751ms)\nWhen was Shakespeare born?\tCambridge\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Cambridge) -> Cambridge (12654ms)\nWhen was Shakespeare born?\t1824\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1824) -> 1824 (12693ms)\nWhen was Shakespeare born?\t1831\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1831) -> 1831 (12712ms)\nWhen was Shakespeare born?\t1794\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1794) -> 1794 (12654ms)\nWhen was Shakespeare born?\t1841\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1841) -> 1841 (12654ms)\nWhen was Shakespeare born?\tChicago\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Chicago) -> Chicago (12693ms)\nWhen was Shakespeare born?\tDerby\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Derby) -> Derby (12654ms)\nWhen was Shakespeare born?\tMadison\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Madison) -> Madison (12751ms)\nWhen was Shakespeare born?\tLycoming County\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Lycoming County) -> Lycoming County (12654ms)\nWhen was Shakespeare born?\tConnecticut\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Connecticut) -> Connecticut (12751ms)\nWhen was Shakespeare born?\tColumbus\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Columbus) -> Columbus (12693ms)\nWhen was Shakespeare born?\t1872\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1872) -> 1872 (12634ms)\nWhen was Shakespeare born?\tAlabama\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Alabama) -> Alabama (12673ms)\nWhen was Shakespeare born?\tSalem\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Salem) -> Salem (12712ms)\nWhen was Shakespeare born?\tPennsylvania\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Pennsylvania) -> Pennsylvania (12693ms)\nWhen was Shakespeare born?\tBedford Co.\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Bedford Co.) -> Bedford Co. (12673ms)\nWhen was Shakespeare born?\tAlexandria\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Alexandria) -> Alexandria (12693ms)\nWhen was Shakespeare born?\t1932\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1932) -> 1932 (12751ms)\nWhen was Shakespeare born?\t1778\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1778) -> 1778 (12693ms)\nWhen was Shakespeare born?\t1866\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1866) -> 1866 (12751ms)\nWhen was Shakespeare born?\t1865\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1865) -> 1865 (12732ms)\nWhen was Shakespeare born?\tDublin barracks\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Dublin barracks) -> Dublin barracks (12674ms)\nWhen was Shakespeare born?\tGreenwood Township\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Greenwood Township) -> Greenwood Township (12693ms)\nWhen was Shakespeare born?\t1869\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1869) -> 1869 (12673ms)\nWhen was Shakespeare born?\tBelfast\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belfast) -> Belfast (12732ms)\nWhen was Shakespeare born?\tVirginia\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Virginia) -> Virginia (12732ms)\nWhen was Shakespeare born?\tPlainfield\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Plainfield) -> Plainfield (12654ms)\nWhen was Shakespeare born?\t1826\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1826) -> 1826 (12712ms)\nWhen was Shakespeare born?\t1027\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1027) -> 1027 (12751ms)\nWhen was Shakespeare born?\tSouth Carolina\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, South Carolina) -> South Carolina (12712ms)\nWhen was Shakespeare born?\t1876\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1876) -> 1876 (12712ms)\nWhen was Shakespeare born?\tApril 1885\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, April 1885) -> April 1885 (12732ms)\nWhen was Shakespeare born?\tIndia\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, India) -> India (12712ms)\nWhen was Shakespeare born?\tKentucky\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was actually born in, Kentucky) -> Kentucky (12751ms)\nWhen was Shakespeare born?\tTennessee\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Tennessee) -> Tennessee (12674ms)\nWhen was Shakespeare born?\t1911\t0.33333333333\tWhen was Shakespeare born? -> $x: (prose, be bear in, $x) -> (prose writer and translator, was born in, 1911) -> 1911 (12732ms)\nWhen was Shakespeare born?\t1797\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1797) -> 1797 (12674ms)\nWhen was Shakespeare born?\tAccomack Co.\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Accomack Co.) -> Accomack Co. (12654ms)\nWhen was Shakespeare born?\tSpringfield\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Springfield) -> Springfield (12634ms)\nWhen was Shakespeare born?\tBelper\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belper) -> Belper (12654ms)\nWhen was Shakespeare born?\tYORK\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in the location, YORK) -> YORK (12693ms)\nWhen was Shakespeare born?\t1816\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1816) -> 1816 (12674ms)\nWhen was Shakespeare born?\t1873\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1873) -> 1873 (12634ms)\nWhen was Shakespeare born?\tIndiana\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Indiana) -> Indiana (12674ms)\nWhen was Shakespeare born?\tRutherford\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Rutherford) -> Rutherford (12712ms)\nWhen was Shakespeare born?\t1743\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1743) -> 1743 (12693ms)\nWhen was Shakespeare born?\t1871\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1871) -> 1871 (12712ms)\nWhen was Shakespeare born?\t1839\t0.33333333333\tWhen was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1839) -> 1839 (12654ms)\nWhen was Shakespeare born?\tThe star\t0.222222222221\tWhen was Shakespeare born? -> $x: ($x, date be, shakespeare) -> (The star, has been dating, the Royal Shakespeare Company actor) -> The star (12806ms)\nWhen was Shakespeare born?\tthe pox\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, is also dying of, the pox) -> the pox (12908ms)\nWhen was Shakespeare born?\tprostate cancer\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Clive Shakespeare, died of, prostate cancer) -> prostate cancer (12940ms)\nWhen was Shakespeare born?\tcholera infantum\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (the aforesaid W. Shakespeare, had died of, cholera infantum) -> cholera infantum (12770ms)\nWhen was Shakespeare born?\tthe same day\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same day) -> the same day (12956ms)\nWhen was Shakespeare born?\tthe very same day\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the very same day) -> the very same day (12892ms)\nWhen was Shakespeare born?\tRare Cancer\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, Died of, Rare Cancer) -> Rare Cancer (12875ms)\nWhen was Shakespeare born?\ta fever there\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, a fever there) -> a fever there (12924ms)\nWhen was Shakespeare born?\tunknown causes\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, unknown causes) -> unknown causes (12908ms)\nWhen was Shakespeare born?\tMay 3\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, May 3) -> May 3 (12908ms)\nWhen was Shakespeare born?\t23rd April 1616\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, 23rd April 1616) -> 23rd April 1616 (12841ms)\nWhen was Shakespeare born?\ta fever\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, a fever) -> a fever (12841ms)\nWhen was Shakespeare born?\tan unknown cause\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Hamnet Shakespeare, died of, an unknown cause) -> an unknown cause (12841ms)\nWhen was Shakespeare born?\tthe same date\t0.222222222221\tWhen was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same date) -> the same date (12956ms)\nWhen was Shakespeare born?\tthe best piece of writing\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the best piece of writing, done by, William Shakespeare , Hamlet) -> the best piece of writing (13033ms)\nWhen was Shakespeare born?\tthe 5th floor\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the 5th floor, do a search for, \" William Shakespeare) -> the 5th floor (13033ms)\nWhen was Shakespeare born?\tMarkey\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Markey, does, William Shakespeare) -> Markey (13033ms)\nWhen was Shakespeare born?\tOct. 28\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Oct. 28, Did, William Shakespeare) -> Oct. 28 (13033ms)\nWhen was Shakespeare born?\tJulius Caesar\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Julius Caesar, does bring to, mind William Shakespeare) -> Julius Caesar (13048ms)\nWhen was Shakespeare born?\trel=shortlink\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (rel=shortlink, does, the name ?William Shakespeare ?) -> rel=shortlink (13048ms)\nWhen was Shakespeare born?\tplaywrights\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (playwrights, does, the name William Shakespeare ring) -> playwrights (13048ms)\nWhen was Shakespeare born?\tFavourite poet or writer\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Favourite poet or writer, Does, William Shakespeare count) -> Favourite poet or writer (13033ms)\nWhen was Shakespeare born?\tvz-nostalgia\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (vz-nostalgia, so did, William Shakespeare) -> vz-nostalgia (13048ms)\nWhen was Shakespeare born?\tthe shocking question\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the shocking question, Did, William Shakespeare) -> the shocking question (13033ms)\nWhen was Shakespeare born?\tthe qoutes\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the qoutes, are done by, William Shakespeare) -> the qoutes (13048ms)\nWhen was Shakespeare born?\tErin\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Erin, does, William Shakespeare) -> Erin (13048ms)\nWhen was Shakespeare born?\tMark Antony\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Mark Antony, did in, William Shakespeare?s Julius Caesar) -> Mark Antony (13033ms)\nWhen was Shakespeare born?\tthe film ?Miguel & William? Press / EP\t0.22222222221999993\tWhen was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the film ?Miguel & William? Press / EP, Did, William Shakespeare) -> the film ?Miguel & William? Press / EP (13048ms)\nWhen was Shakespeare born?\tCanada\t0.22222222221899998\tWhen was Shakespeare born? -> $x: (globe, be bear in, $x) -> (Golden Globe-nominated New Zealand actress, was born in, Canada) -> Canada (13048ms)\nWhen was Shakespeare born?\tMontreal\t0.22222222221899998\tWhen was Shakespeare born? -> $x: (globe, be bear in, $x) -> (-The Globe and Mail Samantha Warwick, was born in, Montreal) -> Montreal (13048ms)\nWhen was Shakespeare born?\tthe Philippines\t0.22222222221899998\tWhen was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe?he, was born in, the Philippines) -> the Philippines (13048ms)\nWhen was Shakespeare born?\tthe regions\t0.22222222221899998\tWhen was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe, were born here in, the regions) -> the regions (13048ms)\nWhen was Shakespeare born?\t1951\t0.22222222221899998\tWhen was Shakespeare born? -> $x: (globe, be bear in, $x) -> (The Boston Sunday Globe Paul Muldoon, was born in, 1951) -> 1951 (13048ms)\nWhen was Shakespeare born?\tgroups\t0.22222222221899998\tWhen was Shakespeare born? -> $x: (globe, be bear in, $x) -> (The globe-shaped flower heads, are borne in, groups) -> groups (13048ms)\nWhen was Shakespeare born?\tGermany\t0.22222222221899998\tWhen was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe-trotter, was born in, Germany) -> Germany (13048ms)\nWhen was Shakespeare born?\tfirst\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did it, first) -> first (13127ms)\nWhen was Shakespeare born?\tPolanski orchestrate\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, successfully does, Polanski orchestrate) -> Polanski orchestrate (13097ms)\nWhen was Shakespeare born?\tRomeo and Juliet\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, Romeo and Juliet) -> Romeo and Juliet (13127ms)\nWhen was Shakespeare born?\tcare\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, care) -> care (13171ms)\nWhen was Shakespeare born?\tthangs\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, thangs) -> thangs (13139ms)\nWhen was Shakespeare born?\tRoger Zelazny\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, so did, Roger Zelazny) -> Roger Zelazny (13150ms)\nWhen was Shakespeare born?\tthe ending\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did alter, the ending) -> the ending (13171ms)\nWhen was Shakespeare born?\tMarlowe\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, Marlowe) -> Marlowe (13139ms)\nWhen was Shakespeare born?\tbefore\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, done, before) -> before (13082ms)\nWhen was Shakespeare born?\tHamlet\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, Hamlet) -> Hamlet (13161ms)\nWhen was Shakespeare born?\tApril 2003 , four months\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mrs. Shakespeare, died in, April 2003 , four months) -> April 2003 , four months (13161ms)\nWhen was Shakespeare born?\tDickens?\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, Dickens?) -> Dickens? (13150ms)\nWhen was Shakespeare born?\tthe same\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, the same) -> the same (13150ms)\nWhen was Shakespeare born?\tpen\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, pen) -> pen (13127ms)\nWhen was Shakespeare born?\tan excellent job\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, an excellent job) -> an excellent job (13150ms)\nWhen was Shakespeare born?\tIsrael\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, unfortunately did, Israel) -> Israel (13161ms)\nWhen was Shakespeare born?\tlikewise\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, likewise) -> likewise (13097ms)\nWhen was Shakespeare born?\tn?t Punctuate\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (?Shakespeare, Did, n?t Punctuate) -> n?t Punctuate (13161ms)\nWhen was Shakespeare born?\tthe end\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare?s tragedies main characters, die in, the end) -> the end (13127ms)\nWhen was Shakespeare born?\tsupernatural stuff\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did write, supernatural stuff) -> supernatural stuff (13082ms)\nWhen was Shakespeare born?\t1601\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (John Shakespeare, died in, 1601) -> 1601 (13161ms)\nWhen was Shakespeare born?\tverse\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did ? in, verse) -> verse (13150ms)\nWhen was Shakespeare born?\tAnne Hathaway\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did to, Anne Hathaway) -> Anne Hathaway (13082ms)\nWhen was Shakespeare born?\tCondell\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, presumably did, Condell) -> Condell (13097ms)\nWhen was Shakespeare born?\tlyrics\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did include, lyrics) -> lyrics (13097ms)\nWhen was Shakespeare born?\tJuliet\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, Juliet) -> Juliet (13139ms)\nWhen was Shakespeare born?\tSpanish\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did speak, Spanish) -> Spanish (13112ms)\nWhen was Shakespeare born?\tthe Bible\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did read, the Bible) -> the Bible (13127ms)\nWhen was Shakespeare born?\t1896\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1896) -> 1896 (13150ms)\nWhen was Shakespeare born?\tright ?\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, is done, right ?) -> right ? (13160ms)\nWhen was Shakespeare born?\ta very good job\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, a very good job) -> a very good job (13161ms)\nWhen was Shakespeare born?\tn?t touch\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, n?t touch) -> n?t touch (13150ms)\nWhen was Shakespeare born?\t1599\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1599) -> 1599 (13127ms)\nWhen was Shakespeare born?\tchildhood\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (the Shakespeare household?three, died in, childhood) -> childhood (13161ms)\nWhen was Shakespeare born?\tTroilus and Cressida\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did in, Troilus and Cressida) -> Troilus and Cressida (13171ms)\nWhen was Shakespeare born?\tfew years\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, few years) -> few years (13082ms)\nWhen was Shakespeare born?\t1596\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1596) -> 1596 (13171ms)\nWhen was Shakespeare born?\tinfancy\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare Quiney, died in, infancy) -> infancy (13112ms)\nWhen was Shakespeare born?\tbest\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, best) -> best (13139ms)\nWhen was Shakespeare born?\tdiscretion and valor\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did relate, discretion and valor) -> discretion and valor (13139ms)\nWhen was Shakespeare born?\t1608\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mary Shakespeare, died in, 1608) -> 1608 (13112ms)\nWhen was Shakespeare born?\tEnglish\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, English) -> English (13139ms)\nWhen was Shakespeare born?\tthe Seven Deadly Sins\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, Does, the Seven Deadly Sins) -> the Seven Deadly Sins (13082ms)\nWhen was Shakespeare born?\tthe same centuries\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, the same centuries) -> the same centuries (13082ms)\nWhen was Shakespeare born?\tthe old stories\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, the old stories) -> the old stories (13112ms)\nWhen was Shakespeare born?\ta marvelous job\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, a marvelous job) -> a marvelous job (13082ms)\nWhen was Shakespeare born?\twhen he left school\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, when he left school) -> when he left school (13171ms)\nWhen was Shakespeare born?\tan immersion\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does require, an immersion) -> an immersion (13161ms)\nWhen was Shakespeare born?\tart excell\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did in, art excell) -> art excell (13097ms)\nWhen was Shakespeare born?\tmore than\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, more than) -> more than (13161ms)\nWhen was Shakespeare born?\t1585 and 1592\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did between, 1585 and 1592) -> 1585 and 1592 (13127ms)\nWhen was Shakespeare born?\texert\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, exert) -> exert (13112ms)\nWhen was Shakespeare born?\tn?t interest\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, n?t interest) -> n?t interest (13161ms)\nWhen was Shakespeare born?\tthe equation\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did draw, the equation) -> the equation (13082ms)\nWhen was Shakespeare born?\tEnglish literature\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, English literature) -> English literature (13127ms)\nWhen was Shakespeare born?\tso\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, so) -> so (13081ms)\nWhen was Shakespeare born?\tcrosswords\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, crosswords) -> crosswords (13097ms)\nWhen was Shakespeare born?\ttoo\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, too) -> too (13161ms)\nWhen was Shakespeare born?\tDickens\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, so did, Dickens) -> Dickens (13139ms)\nWhen was Shakespeare born?\ta hand\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did have, a hand) -> a hand (13161ms)\nWhen was Shakespeare born?\tdwarfs\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do, dwarfs) -> dwarfs (13171ms)\nWhen was Shakespeare born?\tthe work\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do, the work) -> the work (13127ms)\nWhen was Shakespeare born?\tstudents\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do study, students) -> students (13082ms)\nWhen was Shakespeare born?\toften\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, often) -> often (13097ms)\nWhen was Shakespeare born?\tonce\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did say, once) -> once (13127ms)\nWhen was Shakespeare born?\t1623\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare 's widow, died in, 1623) -> 1623 (13150ms)\nWhen was Shakespeare born?\tthe play\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, the play) -> the play (13139ms)\nWhen was Shakespeare born?\tthe software work\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, the software work) -> the software work (13150ms)\nWhen was Shakespeare born?\twords\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, words) -> words (13082ms)\nWhen was Shakespeare born?\ta certain Anne Hathaway\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did marry, a certain Anne Hathaway) -> a certain Anne Hathaway (13150ms)\nWhen was Shakespeare born?\tthe early twenty-first century\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, will die in, the early twenty-first century) -> the early twenty-first century (13160ms)\nWhen was Shakespeare born?\ta marvellous job\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, a marvellous job) -> a marvellous job (13082ms)\nWhen was Shakespeare born?\tre-enactments\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does monthly, re-enactments) -> re-enactments (13139ms)\nWhen was Shakespeare born?\tthe role\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, the role) -> the role (13150ms)\nWhen was Shakespeare born?\tactor/manager\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did as, actor/manager) -> actor/manager (13150ms)\nWhen was Shakespeare born?\t400 years ago\t0.11111111111\tWhen was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, 400 years ago) -> 400 years ago (13097ms)\nWhen was Shakespeare born?\tthe day\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, the day) -> the day (13211ms)\nWhen was Shakespeare born?\tJohn and Mary Shakespeare\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (1564 /William Shakespeare, is born to, John and Mary Shakespeare) -> John and Mary Shakespeare (13221ms)\nWhen was Shakespeare born?\ttwo years\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, two years) -> two years (13202ms)\nWhen was Shakespeare born?\tthe time\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, the time) -> the time (13230ms)\nWhen was Shakespeare born?\tallegedly on April 23 , 1564\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, allegedly on April 23 , 1564) -> allegedly on April 23 , 1564 (13192ms)\nWhen was Shakespeare born?\tthe start\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born at, the start) -> the start (13211ms)\nWhen was Shakespeare born?\tApril 23 ,\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (?William Shakespeare, was born, April 23 ,) -> April 23 , (13181ms)\nWhen was Shakespeare born?\tJohn Shakespeare\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born to, John Shakespeare) -> John Shakespeare (13192ms)\nWhen was Shakespeare born?\thumble stock\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born of quite, humble stock) -> humble stock (13181ms)\nWhen was Shakespeare born?\ta Taurean sun\t0.11111111110899996\tWhen was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, were also born under, a Taurean sun) -> a Taurean sun (13221ms)\nWhen was Shakespeare born?\tCharlottesville\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, has lived in, Charlottesville) -> Charlottesville (13299ms)\nWhen was Shakespeare born?\t1789\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1789) -> 1789 (13355ms)\nWhen was Shakespeare born?\tthe Ranch\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams ?, live on, the Ranch) -> the Ranch (13299ms)\nWhen was Shakespeare born?\tthe same block\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, had lived on, the same block) -> the same block (13380ms)\nWhen was Shakespeare born?\t16 March 1934\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, was living on, 16 March 1934) -> 16 March 1934 (13266ms)\nWhen was Shakespeare born?\tthe Cross Bronx Expressway\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Betty Williams, lived on, the Cross Bronx Expressway) -> the Cross Bronx Expressway (13384ms)\nWhen was Shakespeare born?\tBlairstown Township\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Blairstown Township) -> Blairstown Township (13365ms)\nWhen was Shakespeare born?\tthe road\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Walrath, lived on, the road) -> the road (13307ms)\nWhen was Shakespeare born?\tthe southwest corner\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Howarth, lived on, the southwest corner) -> the southwest corner (13299ms)\nWhen was Shakespeare born?\tVancouver Island\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (artist E. Colin Williams, live on, Vancouver Island) -> Vancouver Island (13330ms)\nWhen was Shakespeare born?\tHanslape\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Hanslape) -> Hanslape (13316ms)\nWhen was Shakespeare born?\t1847\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1847) -> 1847 (13291ms)\nWhen was Shakespeare born?\tChristmas St\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, Lived on, Christmas St) -> Christmas St (13370ms)\nWhen was Shakespeare born?\tDan Post\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Morey, lived on, Dan Post) -> Dan Post (13380ms)\nWhen was Shakespeare born?\t1585\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1585) -> 1585 (13283ms)\nWhen was Shakespeare born?\tDummer Twp.\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dummer Twp.) -> Dummer Twp. (13337ms)\nWhen was Shakespeare born?\tBasin Harbor\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Solomon and William Kellogg, lived on, Basin Harbor) -> Basin Harbor (13299ms)\nWhen was Shakespeare born?\tStony Brook\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Stony Brook) -> Stony Brook (13258ms)\nWhen was Shakespeare born?\t1875\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1875) -> 1875 (13258ms)\nWhen was Shakespeare born?\tan alley\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Brewster, lived on, an alley) -> an alley (13291ms)\nWhen was Shakespeare born?\tPalm Coast\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Palm Coast) -> Palm Coast (13275ms)\nWhen was Shakespeare born?\tParis\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Paris) -> Paris (13344ms)\nWhen was Shakespeare born?\tNorth Water Street\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, North Water Street) -> North Water Street (13249ms)\nWhen was Shakespeare born?\tEagle Township\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Eagle Township) -> Eagle Township (13337ms)\nWhen was Shakespeare born?\tWolf\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Judge William Sparks, lived on, Wolf) -> Wolf (13316ms)\nWhen was Shakespeare born?\t12 March 1925\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (177 William, was living on, 12 March 1925) -> 12 March 1925 (13283ms)\nWhen was Shakespeare born?\tC-SPAN.\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, was broadcast live on, C-SPAN.) -> C-SPAN. (13299ms)\nWhen was Shakespeare born?\tIsleworth\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Isleworth) -> Isleworth (13323ms)\nWhen was Shakespeare born?\tHawaii\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Hawaii) -> Hawaii (13275ms)\nWhen was Shakespeare born?\tPEI\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, has lived on, PEI) -> PEI (13299ms)\nWhen was Shakespeare born?\tMercer County\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Mercer County) -> Mercer County (13316ms)\nWhen was Shakespeare born?\tOhio Ave\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Merrill HAMILTON, lived on, Ohio Ave) -> Ohio Ave (13344ms)\nWhen was Shakespeare born?\tPine Ridge\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (The Rev. Mr. Williams, lived on, Pine Ridge) -> Pine Ridge (13275ms)\nWhen was Shakespeare born?\tDenver\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (William E. Barrett, now lived in, Denver) -> Denver (13375ms)\nWhen was Shakespeare born?\ta flat\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, a flat) -> a flat (13380ms)\nWhen was Shakespeare born?\tthe property\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (stipulation William, will live on, the property) -> the property (13380ms)\nWhen was Shakespeare born?\tcampus\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams students, live on, campus) -> campus (13350ms)\nWhen was Shakespeare born?\tthe Clear Fork\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Holden, lived on, the Clear Fork) -> the Clear Fork (13315ms)\nWhen was Shakespeare born?\tlot 532\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, probably lived on, lot 532) -> lot 532 (13380ms)\nWhen was Shakespeare born?\tKansas City\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Kansas City) -> Kansas City (13384ms)\nWhen was Shakespeare born?\tPark Lane\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William B. Randall, lived on, Park Lane) -> Park Lane (13366ms)\nWhen was Shakespeare born?\tthe past\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, the past) -> the past (13330ms)\nWhen was Shakespeare born?\tthe Bebout farm\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the Bebout farm) -> the Bebout farm (13344ms)\nWhen was Shakespeare born?\tthe new house\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the new house) -> the new house (13375ms)\nWhen was Shakespeare born?\tMaine\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (Bob Williams, now live in, Maine) -> Maine (13350ms)\nWhen was Shakespeare born?\tNew Jersey\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, New Jersey) -> New Jersey (13330ms)\nWhen was Shakespeare born?\tMemphis ? streets\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Sam Williams, lived on, Memphis ? streets) -> Memphis ? streets (13370ms)\nWhen was Shakespeare born?\tCreek\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on Back, Creek) -> Creek (13267ms)\nWhen was Shakespeare born?\tthe same street\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, was living on, the same street) -> the same street (13365ms)\nWhen was Shakespeare born?\tthe reign\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the reign) -> the reign (13355ms)\nWhen was Shakespeare born?\ta house\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house) -> a house (13275ms)\nWhen was Shakespeare born?\tLot 48\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Lot 48) -> Lot 48 (13275ms)\nWhen was Shakespeare born?\tScaly Mountain\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Scaly Mountain) -> Scaly Mountain (13307ms)\nWhen was Shakespeare born?\tEngland ? '\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (WIlliam, live in, England ? ') -> England ? ' (13307ms)\nWhen was Shakespeare born?\tNorwich\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Norwich) -> Norwich (13380ms)\nWhen was Shakespeare born?\tGrand Bahama\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, has lived on, Grand Bahama) -> Grand Bahama (13350ms)\nWhen was Shakespeare born?\tthe street\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (John T. Williams, lived on, the street) -> the street (13299ms)\nWhen was Shakespeare born?\t1795\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1795) -> 1795 (13365ms)\nWhen was Shakespeare born?\tNorth Carolina\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, North Carolina) -> North Carolina (13337ms)\nWhen was Shakespeare born?\tDublin\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dublin) -> Dublin (13344ms)\nWhen was Shakespeare born?\tthe east coast\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, has been living on, the east coast) -> the east coast (13350ms)\nWhen was Shakespeare born?\tthe Sanctuary\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Ricketts, lived on at, the Sanctuary) -> the Sanctuary (13384ms)\nWhen was Shakespeare born?\tWimple Creek\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (John and William Boyd, live on, Wimple Creek) -> Wimple Creek (13337ms)\nWhen was Shakespeare born?\tFairfield village\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fairfield village) -> Fairfield village (13266ms)\nWhen was Shakespeare born?\tdeath row\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, lived on, death row) -> death row (13291ms)\nWhen was Shakespeare born?\ta large farm\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William and Mary Jane Wilson, lived on, a large farm) -> a large farm (13330ms)\nWhen was Shakespeare born?\t1620\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1620) -> 1620 (13370ms)\nWhen was Shakespeare born?\tthe homestead\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the homestead) -> the homestead (13360ms)\nWhen was Shakespeare born?\tFauquier and Loudon counties\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fauquier and Loudon counties) -> Fauquier and Loudon counties (13350ms)\nWhen was Shakespeare born?\tthe old homestead\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the old homestead) -> the old homestead (13380ms)\nWhen was Shakespeare born?\tWood Co.\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Wood Co.) -> Wood Co. (13366ms)\nWhen was Shakespeare born?\tGraig Terrace\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William Williams, lived in, Graig Terrace) -> Graig Terrace (13375ms)\nWhen was Shakespeare born?\tWestline Rd.\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (KNOX William, Lived on, Westline Rd.) -> Westline Rd. (13375ms)\nWhen was Shakespeare born?\tthe Town\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Town) -> the Town (13291ms)\nWhen was Shakespeare born?\ttwo very different worlds\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, two very different worlds) -> two very different worlds (13344ms)\nWhen was Shakespeare born?\tMetropolitan Opera Radio\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Berger, live on, Metropolitan Opera Radio) -> Metropolitan Opera Radio (13307ms)\nWhen was Shakespeare born?\tJefferson\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Jefferson) -> Jefferson (13360ms)\nWhen was Shakespeare born?\tCarland\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Carland) -> Carland (13275ms)\nWhen was Shakespeare born?\tWake Forest\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Wake Forest) -> Wake Forest (13323ms)\nWhen was Shakespeare born?\tsixteen more years\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on for, sixteen more years) -> sixteen more years (13258ms)\nWhen was Shakespeare born?\tstage\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Shatner, live on, stage) -> stage (13330ms)\nWhen was Shakespeare born?\ta farm\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, a farm) -> a farm (13330ms)\nWhen was Shakespeare born?\tMiles Ave\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William J. Elliott, lived on, Miles Ave) -> Miles Ave (13307ms)\nWhen was Shakespeare born?\tUtah\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Utah) -> Utah (13344ms)\nWhen was Shakespeare born?\tthe famous Glastonbury Abbey\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the famous Glastonbury Abbey) -> the famous Glastonbury Abbey (13266ms)\nWhen was Shakespeare born?\tSouth St.\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Judge William WALKER, lived on, South St.) -> South St. (13384ms)\nWhen was Shakespeare born?\tthe home\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the home) -> the home (13370ms)\nWhen was Shakespeare born?\tSea Street\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Captain William Truman Tuttle, lived on, Sea Street) -> Sea Street (13355ms)\nWhen was Shakespeare born?\tLOT 48\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, LOT 48) -> LOT 48 (13370ms)\nWhen was Shakespeare born?\tthe farm\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (6 ~ ~ William Roberson, lived on, the farm) -> the farm (13299ms)\nWhen was Shakespeare born?\tU City\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, U City) -> U City (13307ms)\nWhen was Shakespeare born?\tElmley Castle\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Elmley Castle) -> Elmley Castle (13344ms)\nWhen was Shakespeare born?\t1635\t-0.0\tWhen was Shakespeare born? -> $x: (william, be from in, $x) -> (Williams, was banished from the colony in, 1635) -> 1635 (13308ms)\nWhen was Shakespeare born?\ta hotel room\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams and Allen, now live in, a hotel room) -> a hotel room (13323ms)\nWhen was Shakespeare born?\tthe Tuscarora Reservation\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Mike Williams, live on, the Tuscarora Reservation) -> the Tuscarora Reservation (13380ms)\nWhen was Shakespeare born?\tAlbany\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Albany) -> Albany (13366ms)\nWhen was Shakespeare born?\ta Brooklyn condo\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now living in, a Brooklyn condo) -> a Brooklyn condo (13299ms)\nWhen was Shakespeare born?\tpart\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, part) -> part (13330ms)\nWhen was Shakespeare born?\tBull Street\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Jim Williams, lived on, Bull Street) -> Bull Street (13283ms)\nWhen was Shakespeare born?\tHungary\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Hungary) -> Hungary (13366ms)\nWhen was Shakespeare born?\tClay county\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (William MARESBECK, is now living in, Clay county) -> Clay county (13299ms)\nWhen was Shakespeare born?\tdeath\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Dennis Williams, lived on, death) -> death (13266ms)\nWhen was Shakespeare born?\tOrange County\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Orange County) -> Orange County (13366ms)\nWhen was Shakespeare born?\tNew River\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Col . William Christian, lived on, New River) -> New River (13355ms)\nWhen was Shakespeare born?\tCincinnati\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Cincinnati) -> Cincinnati (13291ms)\nWhen was Shakespeare born?\tCampbell Street\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Miss Carrie Williams, lived on, Campbell Street) -> Campbell Street (13258ms)\nWhen was Shakespeare born?\tLexington\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lexington) -> Lexington (13316ms)\nWhen was Shakespeare born?\tIllinois\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Illinois) -> Illinois (13375ms)\nWhen was Shakespeare born?\tthe months\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the months) -> the months (13355ms)\nWhen was Shakespeare born?\t1842\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1842) -> 1842 (13365ms)\nWhen was Shakespeare born?\tTucson\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Tucson) -> Tucson (13370ms)\nWhen was Shakespeare born?\tthe province\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the province) -> the province (13375ms)\nWhen was Shakespeare born?\tNew York City\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, New York City) -> New York City (13323ms)\nWhen was Shakespeare born?\t1881\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living In, 1881) -> 1881 (13337ms)\nWhen was Shakespeare born?\tForestdale\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (His son William, now live in, Forestdale) -> Forestdale (13316ms)\nWhen was Shakespeare born?\tOxford village\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (William, is now living in, Oxford village) -> Oxford village (13258ms)\nWhen was Shakespeare born?\tthe premises\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Janelle Williams, lived on, the premises) -> the premises (13299ms)\nWhen was Shakespeare born?\tCuba and China\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Cuba and China) -> Cuba and China (13360ms)\nWhen was Shakespeare born?\ta sober house\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now living in, a sober house) -> a sober house (13384ms)\nWhen was Shakespeare born?\tLiverpool\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Liverpool) -> Liverpool (13360ms)\nWhen was Shakespeare born?\tGeyserville\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Geyserville) -> Geyserville (13323ms)\nWhen was Shakespeare born?\tthe adjacent lot\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William and Lillie Morse, lived on, the adjacent lot) -> the adjacent lot (13283ms)\nWhen was Shakespeare born?\tadjacent farms\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William and Sarah, lived on, adjacent farms) -> adjacent farms (13375ms)\nWhen was Shakespeare born?\tthe air\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Brian Williams, live on, the air) -> the air (13344ms)\nWhen was Shakespeare born?\ta Quonset hut\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Cavanaugh, lived on, a Quonset hut) -> a Quonset hut (13337ms)\nWhen was Shakespeare born?\tAmherst\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (William P. Noies, is now living in, Amherst) -> Amherst (13355ms)\nWhen was Shakespeare born?\tan island inIrondequoit Bay\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Held, lived on, an island inIrondequoit Bay) -> an island inIrondequoit Bay (13258ms)\nWhen was Shakespeare born?\tSan Diego\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, San Diego) -> San Diego (13370ms)\nWhen was Shakespeare born?\ta ranch\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Bent, lived on, a ranch) -> a ranch (13323ms)\nWhen was Shakespeare born?\tLoves Creek\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Poe, lived on, Loves Creek) -> Loves Creek (13380ms)\nWhen was Shakespeare born?\tTharpe?s land\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Dougherty, lived on, Tharpe?s land) -> Tharpe?s land (13366ms)\nWhen was Shakespeare born?\tKnob Fork\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William and Rosa, lived on, Knob Fork) -> Knob Fork (13384ms)\nWhen was Shakespeare born?\tMichigan\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living in, Michigan) -> Michigan (13355ms)\nWhen was Shakespeare born?\tCalifornia\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, California) -> California (13316ms)\nWhen was Shakespeare born?\ta mountain\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, live on, a mountain) -> a mountain (13266ms)\nWhen was Shakespeare born?\ta house trailer\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house trailer) -> a house trailer (13355ms)\nWhen was Shakespeare born?\tthe house\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the house) -> the house (13330ms)\nWhen was Shakespeare born?\tCBS\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, live on, CBS) -> CBS (13375ms)\nWhen was Shakespeare born?\tGranville County\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Granville County) -> Granville County (13323ms)\nWhen was Shakespeare born?\tCentral\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Central) -> Central (13299ms)\nWhen was Shakespeare born?\tChepstow\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Chepstow) -> Chepstow (13375ms)\nWhen was Shakespeare born?\tthe ocean\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Kunz, has lived on, the ocean) -> the ocean (13355ms)\nWhen was Shakespeare born?\tthe home farm\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, is living on, the home farm) -> the home farm (13366ms)\nWhen was Shakespeare born?\tLancashire ,England\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lancashire ,England) -> Lancashire ,England (13283ms)\nWhen was Shakespeare born?\tRehoboth\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Rehoboth) -> Rehoboth (13366ms)\nWhen was Shakespeare born?\tDavenport\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Davenport) -> Davenport (13283ms)\nWhen was Shakespeare born?\tElizabethton\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, had lived in, Elizabethton) -> Elizabethton (13258ms)\nWhen was Shakespeare born?\tthe Nisqually flats\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Packwood, lived on, the Nisqually flats) -> the Nisqually flats (13323ms)\nWhen was Shakespeare born?\tWalton County\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Walton County) -> Walton County (13266ms)\nWhen was Shakespeare born?\tan apartment\t-0.0\tWhen was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now back to living in, an apartment) -> an apartment (13307ms)\nWhen was Shakespeare born?\tthe Society\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Society) -> the Society (13355ms)\nWhen was Shakespeare born?\t1925\t-0.0\tWhen was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, 1925) -> 1925 (13323ms)\nWhen was Shakespeare born?\tFleming Street\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Fleming Street) -> Fleming Street (13380ms)\nWhen was Shakespeare born?\tthe corner\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Parrott, lived on, the corner) -> the corner (13360ms)\nWhen was Shakespeare born?\tthe French Quarter\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the French Quarter) -> the French Quarter (13330ms)\nWhen was Shakespeare born?\tPortsmouth\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Portsmouth) -> Portsmouth (13344ms)\nWhen was Shakespeare born?\tthe green mountains\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the green mountains) -> the green mountains (13337ms)\nWhen was Shakespeare born?\tBeaver\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Roy, was living on, Beaver) -> Beaver (13379ms)\nWhen was Shakespeare born?\tBussey Street\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Scollay, lived on, Bussey Street) -> Bussey Street (13370ms)\nWhen was Shakespeare born?\tJapan\t-0.0\tWhen was Shakespeare born? -> $x: (prose, live in, $x) -> (the poetry and prose, lived in, Japan) -> Japan (13360ms)\nWhen was Shakespeare born?\tNorth Court\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, North Court) -> North Court (13337ms)\nWhen was Shakespeare born?\tUnion St\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William John Moore, lived on, Union St) -> Union St (13355ms)\nWhen was Shakespeare born?\tfour different residences\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, four different residences) -> four different residences (13291ms)\nWhen was Shakespeare born?\t12/1/58\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (ROSE WILLIAMS, Lived on, 12/1/58) -> 12/1/58 (13370ms)\nWhen was Shakespeare born?\tthe caravan\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, will get live reports on, the caravan) -> the caravan (13316ms)\nWhen was Shakespeare born?\tthe Woodland neighborhood\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the Woodland neighborhood) -> the Woodland neighborhood (13366ms)\nWhen was Shakespeare born?\tthe west coast\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William and Emanuel, live on, the west coast) -> the west coast (13380ms)\nWhen was Shakespeare born?\tCSN\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William and Mary, live on, CSN) -> CSN (13350ms)\nWhen was Shakespeare born?\t1901\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living in, 1901) -> 1901 (13291ms)\nWhen was Shakespeare born?\t1906\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living In, 1906) -> 1906 (13370ms)\nWhen was Shakespeare born?\tOrchard Drive\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Baker, lived on, Orchard Drive) -> Orchard Drive (13366ms)\nWhen was Shakespeare born?\tSparta\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sparta) -> Sparta (13283ms)\nWhen was Shakespeare born?\tNatchez\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Natchez) -> Natchez (13307ms)\nWhen was Shakespeare born?\tSefton\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sefton) -> Sefton (13360ms)\nWhen was Shakespeare born?\tMontour Run\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (William Tucker, lived on, Montour Run) -> Montour Run (13316ms)\nWhen was Shakespeare born?\tGeorgia\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Georgia) -> Georgia (13365ms)\nWhen was Shakespeare born?\tOhio\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Ohio) -> Ohio (13370ms)\nWhen was Shakespeare born?\tKey West\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Key West) -> Key West (13307ms)\nWhen was Shakespeare born?\tbroadway\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Robin Williams, live on, broadway) -> broadway (13375ms)\nWhen was Shakespeare born?\tNPR\t-0.0\tWhen was Shakespeare born? -> $x: (william, live on, $x) -> (Hear Jason D. Williams, live on, NPR) -> NPR (13275ms)\nWhen was Shakespeare born?\tOakham Rutlandshire\t-0.0\tWhen was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Oakham Rutlandshire) -> Oakham Rutlandshire (13360ms)\nWhen was Shakespeare born?\tGeoffrey Boycott\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Geoffrey Boycott, do, Shakespeare) -> Geoffrey Boycott (13388ms)\nWhen was Shakespeare born?\tNobody\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Nobody, does, Shakespeare) -> Nobody (13392ms)\nWhen was Shakespeare born?\tJUST A DREAM\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (JUST A DREAM, do, Shakespeare) -> JUST A DREAM (13392ms)\nWhen was Shakespeare born?\tthe Americans\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the Americans, do, Shakespeare) -> the Americans (13388ms)\nWhen was Shakespeare born?\tthe companies\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the companies, do, Shakespeare) -> the companies (13388ms)\nWhen was Shakespeare born?\tany\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (any, did, Shakespeare) -> any (13384ms)\nWhen was Shakespeare born?\tGoethe\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Goethe, so did, Shakespeare) -> Goethe (13384ms)\nWhen was Shakespeare born?\tBrits\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Brits, do, Shakespeare) -> Brits (13388ms)\nWhen was Shakespeare born?\tyoure\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (youre, doing, Shakespeare) -> youre (13388ms)\nWhen was Shakespeare born?\tEd Westwick\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ed Westwick, do, Shakespeare) -> Ed Westwick (13392ms)\nWhen was Shakespeare born?\tBranagh\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Branagh, doing, Shakespeare) -> Branagh (13392ms)\nWhen was Shakespeare born?\tMark Twain\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Mark Twain, did for, Shakespeare) -> Mark Twain (13392ms)\nWhen was Shakespeare born?\tBacon\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Bacon, did write, Shakespeare) -> Bacon (13388ms)\nWhen was Shakespeare born?\tGer\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ger, does, Shakespeare) -> Ger (13392ms)\nWhen was Shakespeare born?\tfamous actors\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (famous actors, do, Shakespeare) -> famous actors (13388ms)\nWhen was Shakespeare born?\tTouching\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Touching, did, Shakespeare) -> Touching (13392ms)\nWhen was Shakespeare born?\teach year\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (each year, only did, Shakespeare) -> each year (13392ms)\nWhen was Shakespeare born?\tjust an entertaining play\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (just an entertaining play, did, Shakespeare) -> just an entertaining play (13392ms)\nWhen was Shakespeare born?\t1.2\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (1.2, does, Shakespeare) -> 1.2 (13392ms)\nWhen was Shakespeare born?\tColeridge\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Coleridge, did, Shakespeare) -> Coleridge (13388ms)\nWhen was Shakespeare born?\tA DREAM\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (A DREAM, do, Shakespeare) -> A DREAM (13392ms)\nWhen was Shakespeare born?\ta more dramatic and poetic form\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a more dramatic and poetic form, did, Shakespeare) -> a more dramatic and poetic form (13388ms)\nWhen was Shakespeare born?\tKaramazov Brothers\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Karamazov Brothers, do, Shakespeare) -> Karamazov Brothers (13384ms)\nWhen was Shakespeare born?\tHes\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Hes, done, Shakespeare) -> Hes (13388ms)\nWhen was Shakespeare born?\ta balcony\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a balcony, could do, Shakespeare) -> a balcony (13388ms)\nWhen was Shakespeare born?\tliterature?s great mysteries ?\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (literature?s great mysteries ?, did, Shakespeare) -> literature?s great mysteries ? (13388ms)\nWhen was Shakespeare born?\tTessa\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Tessa, Does, Shakespeare) -> Tessa (13384ms)\nWhen was Shakespeare born?\tUK Company Propeller\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (UK Company Propeller, does, Shakespeare) -> UK Company Propeller (13392ms)\nWhen was Shakespeare born?\tcritics or scholars\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (critics or scholars, did, Shakespeare) -> critics or scholars (13388ms)\nWhen was Shakespeare born?\tHow many plays\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (How many plays, did write, Shakespeare) -> How many plays (13388ms)\nWhen was Shakespeare born?\tOlivier\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Olivier, did, Shakespeare) -> Olivier (13388ms)\nWhen was Shakespeare born?\ta professional company\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a professional company, did, Shakespeare) -> a professional company (13384ms)\nWhen was Shakespeare born?\tpretty melodies\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (pretty melodies, do, Shakespeare) -> pretty melodies (13392ms)\nWhen was Shakespeare born?\tGargoyles\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Gargoyles, do, Shakespeare) -> Gargoyles (13384ms)\nWhen was Shakespeare born?\tDescription\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Description, Did, Shakespeare) -> Description (13392ms)\nWhen was Shakespeare born?\ta toddler\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a toddler, do, Shakespeare) -> a toddler (13392ms)\nWhen was Shakespeare born?\tThe question\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The question, is did, Shakespeare) -> The question (13392ms)\nWhen was Shakespeare born?\tDunster\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Dunster, does, Shakespeare) -> Dunster (13384ms)\nWhen was Shakespeare born?\tthe rules\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the rules, did, Shakespeare) -> the rules (13388ms)\nWhen was Shakespeare born?\tAdam Sandler\t-1.0000333894311098E-12\tWhen was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Adam Sandler, did, Shakespeare) -> Adam Sandler (13384ms)\nWhat year did Patsy Cline die?\tan airplane crash\t0.555555555564\tWhat year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, an airplane crash) -> an airplane crash (1063ms)\nWhat year did Patsy Cline die?\t1963\t0.555555555564\tWhat year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, 1963) -> 1963 (1063ms)\nWhat year did Patsy Cline die?\ta plane crash\t0.555555555564\tWhat year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, a plane crash) -> a plane crash (1063ms)\nWhat year did Patsy Cline die?\tthe Shenandoah Valley\t0.555555555555\tWhat year did Patsy Cline die? -> $x: (patsy cline, be bear in, $x) -> (Patsy Cline, was born in, the Shenandoah Valley) -> the Shenandoah Valley (1063ms)\nWhat year did Patsy Cline die?\t1932\t0.555555555555\tWhat year did Patsy Cline die? -> $x: (patsy cline, be bear in, $x) -> (Patsy Cline, was born in, 1932) -> 1932 (1102ms)\nWhat year did Patsy Cline die?\tage 30\t0.333333333333\tWhat year did Patsy Cline die? -> $x: (patsy cline, die, $x) -> (legendary country singer Patsy Cline, died at, age 30) -> age 30 (1102ms)\nWhat year did Patsy Cline die?\tstudio gadgets\t-1.33333333333\tWhat year did Patsy Cline die? -> $x: (patsy cline, make up, $x) -> (Patsy Cline-esque crooning, is n?t made up of, studio gadgets) -> studio gadgets (1261ms)\nWhat year did Patsy Cline die?\tholloween\t-1.33333333333\tWhat year did Patsy Cline die? -> $x: (patsy cline, make up, $x) -> (Lexi martinez crazy patsy cline lyrics, make up for, holloween) -> holloween (1261ms)\nWhat year did Patsy Cline die?\tAir disaster\t-1.444444444443\tWhat year did Patsy Cline die? -> $x: ($x, die, patsy cline) -> (Air disaster, People Who Died This Way, Patsy Cline) -> Air disaster (1284ms)\nWhat is neuropathy?\tStavudine\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Stavudine, may cause, neuropathies) -> Stavudine (2176ms)\nWhat is neuropathy?\tdiabetic foot ulcers\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (diabetic foot ulcers, are typically caused by, neuropathy) -> diabetic foot ulcers (1724ms)\nWhat is neuropathy?\tdenture adhesives\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (denture adhesives, could cause, neuropathy) -> denture adhesives (3724ms)\nWhat is neuropathy?\ta foot deformity\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (a foot deformity, caused by, neuropathy) -> a foot deformity (3931ms)\nWhat is neuropathy?\ttrichlorphon and/or dichlorvos\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (trichlorphon and/or dichlorvos, cause delayed, neuropathy) -> trichlorphon and/or dichlorvos (4195ms)\nWhat is neuropathy?\tScientists\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Scientists, causes, diabetic neuropathy) -> Scientists (2023ms)\nWhat is neuropathy?\tglycyl-tRNA synthetase\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (glycyl-tRNA synthetase, causes, neuropathy) -> glycyl-tRNA synthetase (3724ms)\nWhat is neuropathy?\tPinched nerve\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Pinched nerve, can cause, neuropathy) -> Pinched nerve (2176ms)\nWhat is neuropathy?\tDiabetes\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Diabetes, is the most common cause of, neuropathy) -> Diabetes (4195ms)\nWhat is neuropathy?\thigher daily doses\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (higher daily doses, can actually cause symptoms of, neuropathy) -> higher daily doses (3299ms)\nWhat is neuropathy?\tAlcoholism\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Alcoholism, is a leading cause of, neuropathy) -> Alcoholism (4162ms)\nWhat is neuropathy?\tthe injuries\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (the injuries, causing, neuropathy) -> the injuries (3931ms)\nWhat is neuropathy?\teven a few antibiotics\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (even a few antibiotics, will also cause, neuropathy) -> even a few antibiotics (2195ms)\nWhat is neuropathy?\tNeurogenic bladder\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Neurogenic bladder, Causes, Neuropathy) -> Neurogenic bladder (4195ms)\nWhat is neuropathy?\tthe nervous system\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (the nervous system, are the primarily cause of, neuropathy) -> the nervous system (4195ms)\nWhat is neuropathy?\tHormonal imbalances\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Hormonal imbalances, cause, neuropathies) -> Hormonal imbalances (3299ms)\nWhat is neuropathy?\ta genetic biomarker\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (a genetic biomarker, causes, neuropathy) -> a genetic biomarker (3795ms)\nWhat is neuropathy?\tchemotherapy\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (chemotherapy, can also cause, neuropathy) -> chemotherapy (1944ms)\nWhat is neuropathy?\ta number of factors\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (a number of factors, can cause, neuropathies) -> a number of factors (1618ms)\nWhat is neuropathy?\tDoes Vincristine\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Does Vincristine, Cause, Neuropathy) -> Does Vincristine (3794ms)\nWhat is neuropathy?\tTwo inherited disorders\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Two inherited disorders, are known to cause, neuropathy) -> Two inherited disorders (4162ms)\nWhat is neuropathy?\tVISUAL IMPROVEMENTS Diplopia\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (VISUAL IMPROVEMENTS Diplopia, is caused by, neuropathy) -> VISUAL IMPROVEMENTS Diplopia (1944ms)\nWhat is neuropathy?\tthe peripheral nervous system\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (the peripheral nervous system, causes, neuropathy) -> the peripheral nervous system (3794ms)\nWhat is neuropathy?\tResearchers\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Researchers, causes, diabetic neuropathy) -> Researchers (1618ms)\nWhat is neuropathy?\tMDMA\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (MDMA, caused, neuropathy) -> MDMA (3724ms)\nWhat is neuropathy?\talcohol abuse\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (alcohol abuse, is a frequent cause of, neuropathy) -> alcohol abuse (3931ms)\nWhat is neuropathy?\tVinblastine\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Vinblastine, also causes, neuropathy) -> Vinblastine (4162ms)\nWhat is neuropathy?\tSjogren Syndrome\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Sjogren Syndrome, are the cause of, neuropathy) -> Sjogren Syndrome (3724ms)\nWhat is neuropathy?\tglyburide\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (glyburide, might cause, neuropathy) -> glyburide (4162ms)\nWhat is neuropathy?\tDiabetes mellitus\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Diabetes mellitus, Diseases or conditions caused, Diabetic Peripheral Neuropathy) -> Diabetes mellitus (2023ms)\nWhat is neuropathy?\ttype 1\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (type 1, has caused, neuropathy) -> type 1 (2176ms)\nWhat is neuropathy?\tthe body tissues\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (the body tissues, cause, neuropathy) -> the body tissues (4162ms)\nWhat is neuropathy?\tMechanical compression and ischemia\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Mechanical compression and ischemia, also cause, neuropathies) -> Mechanical compression and ischemia (1945ms)\nWhat is neuropathy?\tMedications\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Medications, can treat pain caused by, neuropathy) -> Medications (1724ms)\nWhat is neuropathy?\tThe latter\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (The latter, can cause, neuropathy) -> The latter (2023ms)\nWhat is neuropathy?\tNARP\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (NARP, causes, neuropathy) -> NARP (3931ms)\nWhat is neuropathy?\tFoot drop\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Foot drop, can be caused by, diabetic neuropathy) -> Foot drop (3931ms)\nWhat is neuropathy?\tAIDS\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (AIDS, can cause, neuropathy) -> AIDS (2195ms)\nWhat is neuropathy?\tthe body\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (the body, can also cause, neuropathy) -> the body (4195ms)\nWhat is neuropathy?\tcertain artificial sweeteners\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (certain artificial sweeteners, can cause, neuropathy) -> certain artificial sweeteners (3299ms)\nWhat is neuropathy?\tradiation treatments\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (radiation treatments, often cause, neuropathy) -> radiation treatments (4195ms)\nWhat is neuropathy?\tDamage\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Damage, caused by, diabetic neuropathy) -> Damage (4195ms)\nWhat is neuropathy?\tNeurological disorder\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Neurological disorder, Includes causes of death, Neuropathy) -> Neurological disorder (3794ms)\nWhat is neuropathy?\tmen\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (men, causes, diabetic neuropathy) -> men (3299ms)\nWhat is neuropathy?\tvitamin\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (vitamin, causes, neuropathy) -> vitamin (3931ms)\nWhat is neuropathy?\tthe combination\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (the combination, has the potential to cause, neuropathy) -> the combination (4195ms)\nWhat is neuropathy?\tinjured areas\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (injured areas, relieves pain caused by, diabetic neuropathy) -> injured areas (1724ms)\nWhat is neuropathy?\ta B12 deficiency\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (a B12 deficiency, can cause, neuropathy) -> a B12 deficiency (1945ms)\nWhat is neuropathy?\tthe pain and discomfort\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (the pain and discomfort, caused by, neuropathy) -> the pain and discomfort (4195ms)\nWhat is neuropathy?\tAmiodarone\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Amiodarone, can cause, neuropathy) -> Amiodarone (3724ms)\nWhat is neuropathy?\tsevere vocal spasms\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (severe vocal spasms, are caused by, neuropathy) -> severe vocal spasms (4162ms)\nWhat is neuropathy?\tThe leg pain\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (The leg pain, could be caused by, Neuropathy) -> The leg pain (4195ms)\nWhat is neuropathy?\tlower cholesterol\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (lower cholesterol, will cause, neuropathy) -> lower cholesterol (1945ms)\nWhat is neuropathy?\tbacterial or viral infections\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (bacterial or viral infections, may cause, neuropathy) -> bacterial or viral infections (1618ms)\nWhat is neuropathy?\tThe treatment\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (The treatment, causes, neuropathy) -> The treatment (2023ms)\nWhat is neuropathy?\tHigh blood pressure medication\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (High blood pressure medication, can cause, neuropathy) -> High blood pressure medication (2195ms)\nWhat is neuropathy?\tdrop foot\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (drop foot, is caused by, Diabetic Neuropathy) -> drop foot (1944ms)\nWhat is neuropathy?\tPain\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Pain, caused by, neuropathy) -> Pain (4195ms)\nWhat is neuropathy?\tdefective heme synthesis\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (defective heme synthesis, causes, neuropathy) -> defective heme synthesis (3299ms)\nWhat is neuropathy?\tChronic exposure\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Chronic exposure, can cause, neuropathy) -> Chronic exposure (1724ms)\nWhat is neuropathy?\tthe back\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (the back, can be another cause of, neuropathy) -> the back (2176ms)\nWhat is neuropathy?\tLelio Luttazzi\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Lelio Luttazzi, Cause of death, Neuropathy) -> Lelio Luttazzi (2023ms)\nWhat is neuropathy?\tThe virus\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (The virus, can cause several different forms of, neuropathy) -> The virus (1725ms)\nWhat is neuropathy?\ta chemotherapy drug\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (a chemotherapy drug, has the potential for causing, neuropathy) -> a chemotherapy drug (1618ms)\nWhat is neuropathy?\tdiabetes\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (diabetes, is the most common cause of, neuropathy) -> diabetes (3931ms)\nWhat is neuropathy?\tnerves\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (nerves, causes, Diabetic Neuropathy) -> nerves (3724ms)\nWhat is neuropathy?\tGastroparesis\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Gastroparesis, is a condition caused by, neuropathy) -> Gastroparesis (3931ms)\nWhat is neuropathy?\tNerve Pain\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Nerve Pain, caused by, diabetic neuropathy) -> Nerve Pain (4195ms)\nWhat is neuropathy?\tdrugs\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (drugs, are known potent causes of, neuropathy) -> drugs (2195ms)\nWhat is neuropathy?\taffinity\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (affinity, are likely the cause of, neuropathy) -> affinity (4195ms)\nWhat is neuropathy?\tnot all pain\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (not all pain, is caused by, neuropathy) -> not all pain (4195ms)\nWhat is neuropathy?\tVitamin B6\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Vitamin B6, can cause, neuropathy) -> Vitamin B6 (3794ms)\nWhat is neuropathy?\tpain\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (pain, caused by, fibromyalgia and diabetic peripheral neuropathy) -> pain (4162ms)\nWhat is neuropathy?\ta person?s body\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (a person?s body, is caused by, Diabetic Neuropathy) -> a person?s body (4162ms)\nWhat is neuropathy?\told age\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (old age, are common known causes of, neuropathy) -> old age (3724ms)\nWhat is neuropathy?\tpyridoxine\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (pyridoxine, may cause, neuropathy) -> pyridoxine (1619ms)\nWhat is neuropathy?\tDiabetic neuropathy\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Diabetic neuropathy, is the leading cause of, neuropathy) -> Diabetic neuropathy (3724ms)\nWhat is neuropathy?\tUltram\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (Ultram, cause, neuropathy) -> Ultram (1945ms)\nWhat is neuropathy?\tThe diabetes\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (The diabetes, has caused, neuropathy) -> The diabetes (4162ms)\nWhat is neuropathy?\tfactors\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (factors, can cause, neuropathies) -> factors (2176ms)\nWhat is neuropathy?\tthe nerve damage\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (the nerve damage, caused by, diabetic neuropathy) -> the nerve damage (3794ms)\nWhat is neuropathy?\t18v Ziprasidone batteries\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (18v Ziprasidone batteries, cause, neuropathy) -> 18v Ziprasidone batteries (2023ms)\nWhat is neuropathy?\ttoxic chemicals\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (toxic chemicals, can cause, neuropathy) -> toxic chemicals (3795ms)\nWhat is neuropathy?\ttoxic substances\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (toxic substances, is a very frequent cause of, neuropathy) -> toxic substances (1618ms)\nWhat is neuropathy?\thigh glucose\t0.111111111111\tWhat is neuropathy? -> $x: ($x, cause, neuropathy) -> (high glucose, causes, neuropathy) -> high glucose (4195ms)\nWhat is neuropathy?\tthe optic nerve\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (the optic nerve, result in, optic neuropathy) -> the optic nerve (4204ms)\nWhat is neuropathy?\tpatients\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (patients, is less likely to result in, neuropathy) -> patients (4239ms)\nWhat is neuropathy?\tlarge nerve fibers\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (large nerve fibers, are thus normal in, small fiber neuropathy) -> large nerve fibers (4213ms)\nWhat is neuropathy?\tPat Irmer\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Pat Irmer, is participating in, a neuropathy study) -> Pat Irmer (4213ms)\nWhat is neuropathy?\tClinical Studies\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Clinical Studies, validate in, neuropathy symptoms) -> Clinical Studies (4231ms)\nWhat is neuropathy?\tlubricants\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (lubricants, can result in, a neuropathy indistinguishable) -> lubricants (4239ms)\nWhat is neuropathy?\tNeurontin\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Neurontin, is in, painful neuropathies) -> Neurontin (4204ms)\nWhat is neuropathy?\tmacronutrients\t-0.0\tWhat is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (macronutrients, is beneficial in, diabetic neuropathy) -> macronutrients (4248ms)\nWhat is neuropathy?\tAlcohol abuse\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Alcohol abuse, can result in, neuropathy) -> Alcohol abuse (4231ms)\nWhat is neuropathy?\tcollaborative efforts\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (collaborative efforts, involve studies in, peripheral neuropathy) -> collaborative efforts (4248ms)\nWhat is neuropathy?\tCIDP\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (CIDP, is uncommon in, the motor neuropathies) -> CIDP (4213ms)\nWhat is neuropathy?\tCompensatory hyperhidrosis\t-0.0\tWhat is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (Compensatory hyperhidrosis, is also seen in, diabetic neuropathy) -> Compensatory hyperhidrosis (4231ms)\nWhat is neuropathy?\tcannabis\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (cannabis, was effective in, neuropathy patients) -> cannabis (4213ms)\nWhat is neuropathy?\tHigh titers\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (High titers, are common in, axonal sensory > motor neuropathies) -> High titers (4222ms)\nWhat is neuropathy?\tPregabalin and gabapentin\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Pregabalin and gabapentin, are effective in, diabetic neuropathy) -> Pregabalin and gabapentin (4239ms)\nWhat is neuropathy?\tA 1953 accident\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (A 1953 accident, elsewhere resulted in, peripheral neuropathies) -> A 1953 accident (4248ms)\nWhat is neuropathy?\tGlucose control\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Glucose control, seems to play a role in, neuropathy) -> Glucose control (4231ms)\nWhat is neuropathy?\tSeveral B vitamins\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Several B vitamins, are useful in treating, diabetic neuropathy) -> Several B vitamins (4248ms)\nWhat is neuropathy?\tSativex Seen\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Sativex Seen, referred to in, my Neuropathy post) -> Sativex Seen (4239ms)\nWhat is neuropathy?\tDemyelinating features\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Demyelinating features, are common in, the POEMS neuropathy) -> Demyelinating features (4248ms)\nWhat is neuropathy?\tlarge fibre loss\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (large fibre loss, was observed in, sensory ataxic neuropathy) -> large fibre loss (4239ms)\nWhat is neuropathy?\tacupuncture\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (acupuncture, can indeed help in treating, peripheral neuropathy) -> acupuncture (4222ms)\nWhat is neuropathy?\tALA\t-0.0\tWhat is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (ALA, reduces sensory symptoms in, diabetic neuropathy) -> ALA (4248ms)\nWhat is neuropathy?\tsensory nerve fibers\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (sensory nerve fibers, are impaired in, diabetic neuropathy) -> sensory nerve fibers (4248ms)\nWhat is neuropathy?\tMoth-eaten fibers\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Moth-eaten fibers, may occur in, myopathy or neuropathy) -> Moth-eaten fibers (4222ms)\nWhat is neuropathy?\tgastroparesis\t-0.0\tWhat is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (gastroparesis, is a prominant finding in, Diabetic Neuropathy) -> gastroparesis (4248ms)\nWhat is neuropathy?\tAnti-GM1 antibodies\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Anti-GM1 antibodies, may be found in, acute motor neuropathies) -> Anti-GM1 antibodies (4213ms)\nWhat is neuropathy?\tGabapentin\t-0.0\tWhat is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (Gabapentin, is also recommended in, painful diabetic neuropathy) -> Gabapentin (4248ms)\nWhat is neuropathy?\tDr. Van Gils\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Dr. Van Gils, also has a strong interest in, neuropathy) -> Dr. Van Gils (4204ms)\nWhat is neuropathy?\toccurs\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (occurs, was more severe in, peripheral neuropathy) -> occurs (4213ms)\nWhat is neuropathy?\tChemotherapy\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Chemotherapy, often results in, ?peripheral neuropathy) -> Chemotherapy (4205ms)\nWhat is neuropathy?\tWashington Title\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Washington Title, is best in, ulnar neuropathy) -> Washington Title (4213ms)\nWhat is neuropathy?\tbtx-a\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (btx-a, is helpful in, chronic focal painful neuropathies) -> btx-a (4231ms)\nWhat is neuropathy?\tfour factor\t-0.0\tWhat is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (four factor, involved in, the development of diabetic neuropathy) -> four factor (4239ms)\nWhat is neuropathy?\tOpiates\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Opiates, are only used in, diabetic neuropathy treatments) -> Opiates (4248ms)\nWhat is neuropathy?\tthe NeuropathyDR logo\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (the NeuropathyDR logo, are specialists in, neuropathy) -> the NeuropathyDR logo (4213ms)\nWhat is neuropathy?\tbrain\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (brain, are also fundamentally involved in, neuropathy) -> brain (4213ms)\nWhat is neuropathy?\tthe disruptions\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (the disruptions, found in, peripheral neuropathies) -> the disruptions (4205ms)\nWhat is neuropathy?\teither side\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (either side, is a slide in, neuropathy) -> either side (4239ms)\nWhat is neuropathy?\ta pathway\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (a pathway, thought to be involved in, diabetic neuropathy) -> a pathway (4222ms)\nWhat is neuropathy?\tDHA\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (DHA, plays a protective role in, diabetic neuropathy) -> DHA (4239ms)\nWhat is neuropathy?\tmassage\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (massage, may be beneficial in, diabetic neuropathy) -> massage (4231ms)\nWhat is neuropathy?\t?Aspartame\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (?Aspartame, is a culprit in, small fiber neuropathy) -> ?Aspartame (4222ms)\nWhat is neuropathy?\ta cobalamin\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (a cobalamin, used in, peripheral neuropathy) -> a cobalamin (4248ms)\nWhat is neuropathy?\tgenetic lesions\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (genetic lesions, resulting in, inherited neuropathy) -> genetic lesions (4205ms)\nWhat is neuropathy?\t?The consistency\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (?The consistency, observed differences in, peripheral neuropathy) -> ?The consistency (4213ms)\nWhat is neuropathy?\tVitamin B12 deficiency\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Vitamin B12 deficiency, can result in, neuropathies) -> Vitamin B12 deficiency (4204ms)\nWhat is neuropathy?\tthe same medications\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (the same medications, are generally used in, neuropathy) -> the same medications (4239ms)\nWhat is neuropathy?\tDr. Vinik\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Dr. Vinik, is a leading expert in, neuropathy) -> Dr. Vinik (4248ms)\nWhat is neuropathy?\tRecent studies\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Recent studies, show improvement in, diabetic neuropathy) -> Recent studies (4239ms)\nWhat is neuropathy?\tthalidomide\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (thalidomide, may result in, severe peripheral neuropathy) -> thalidomide (4239ms)\nWhat is neuropathy?\tSchizophrenic diabetic man\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Schizophrenic diabetic man, came in with, peripheral neuropathy) -> Schizophrenic diabetic man (4231ms)\nWhat is neuropathy?\tEffexor\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Effexor, is also used in treating, diabetic neuropathy) -> Effexor (4231ms)\nWhat is neuropathy?\tTaxol\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Taxol, include reduction in, peripheral neuropathies and lack) -> Taxol (4222ms)\nWhat is neuropathy?\tmarked improvements\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (marked improvements, were noted in, both peripheral neuropathy) -> marked improvements (4248ms)\nWhat is neuropathy?\tPregabalin\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Pregabalin, is registered in, diabetic neuropathy patients) -> Pregabalin (4231ms)\nWhat is neuropathy?\tCMT pain\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (CMT pain, is used in, many painful neuropathies) -> CMT pain (4239ms)\nWhat is neuropathy?\ta new member\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (a new member, is mutated in, giant axonal neuropathy) -> a new member (4231ms)\nWhat is neuropathy?\tantidepressants\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (antidepressants, reduce pain in, diabetic neuropathy) -> antidepressants (4239ms)\nWhat is neuropathy?\tActive oxygen\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (Active oxygen, is involved in, many neuropathies and myopathies) -> Active oxygen (4231ms)\nWhat is neuropathy?\tvery uncontrolled diabetes\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (very uncontrolled diabetes, has resulted in, diabetic neuropathy) -> very uncontrolled diabetes (4248ms)\nWhat is neuropathy?\tconnexins\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (connexins, has been implicated in, peripheral neuropathy) -> connexins (4222ms)\nWhat is neuropathy?\tblood flow\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (blood flow, are more harmful in, glaucomatous optic neuropathy) -> blood flow (4222ms)\nWhat is neuropathy?\tperipheral neuropathy\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (peripheral neuropathy, occurs in, diabetic neuropathy) -> peripheral neuropathy (4248ms)\nWhat is neuropathy?\tmyo-inositol\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (myo-inositol, may be involved in, diabetic neuropathy) -> myo-inositol (4248ms)\nWhat is neuropathy?\tpremature death\t-0.0\tWhat is neuropathy? -> $x: ($x, in, neuropathy) -> (premature death, found in, neuropathy) -> premature death (4222ms)\nWhat is neuropathy?\trelief\t-0.111111111111\tWhat is neuropathy? -> $x: (neuropathy, do, $x) -> (neuropathy, can be done to get, relief) -> relief (4256ms)\nWhat is neuropathy?\ta monthly basis\t-0.111111111111\tWhat is neuropathy? -> $x: (neuropathy, do, $x) -> (neuropathy, should be done on, a monthly basis) -> a monthly basis (4256ms)\nWhat is neuropathy?\t2004\t-0.111111111111\tWhat is neuropathy? -> $x: (neuropathy, do, $x) -> (The neuropathy study, should be done in, 2004) -> 2004 (4256ms)\nWhat is neuropathy?\tIntravenous Application\t-0.111111111111\tWhat is neuropathy? -> $x: (diabetic neuropathy, do, $x) -> (Diabetic Neuropathy, were done via, Intravenous Application) -> Intravenous Application (4256ms)\nWhat is neuropathy?\tSource\t-0.111111111111\tWhat is neuropathy? -> $x: (neuropathy, do, $x) -> (Ulnar Neuropathy, DO, Source) -> Source (4256ms)\nWhat is neuropathy?\tceliac disease and cidp\t-0.111111111111\tWhat is neuropathy? -> $x: ($x, describe, neuropathy) -> (celiac disease and cidp, described as, small fiber neuropathy) -> celiac disease and cidp (4256ms)\nWhat is neuropathy?\tDoctors Diagnose Diabetic Neuropathy\t-0.111111111111\tWhat is neuropathy? -> $x: (neuropathy, do, $x) -> (Neuropathy, Do, Doctors Diagnose Diabetic Neuropathy) -> Doctors Diagnose Diabetic Neuropathy (4256ms)\nWhat is neuropathy?\ta cochlear implant\t-0.111111111111\tWhat is neuropathy? -> $x: (neuropathy, do, $x) -> (auditory neuropathy, would do badly with, a cochlear implant) -> a cochlear implant (4256ms)\nWhat is neuropathy?\ta physical challenge\t-0.111111111111\tWhat is neuropathy? -> $x: (neuropathy, do, $x) -> (The neuropathy, did n?t just produce, a physical challenge) -> a physical challenge (4256ms)\nWhat is neuropathy?\ta paradox\t-0.111111111111\tWhat is neuropathy? -> $x: (neuropathy, do, $x) -> (Diabetic somatic neuropathies, do represent, a paradox) -> a paradox (4256ms)\nWhat is neuropathy?\tfoot infections\t-0.111111111112\tWhat is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (Diabetic neuropathy, is a major risk factor for, foot infections) -> foot infections (4295ms)\nWhat is neuropathy?\tevaluation\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, are indications for, evaluation) -> evaluation (4273ms)\nWhat is neuropathy?\t15 years\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (optic neuropathy, has been following patients for, 15 years) -> 15 years (4273ms)\nWhat is neuropathy?\tan eye disease\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, define, neuropathy) -> (an eye disease, is defined as, a characteristic optic neuropathy) -> an eye disease (4295ms)\nWhat is neuropathy?\tany disorder\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is a general term for, any disorder) -> any disorder (4280ms)\nWhat is neuropathy?\tfoot ulcers\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, are at increased risk for, foot ulcers) -> foot ulcers (4288ms)\nWhat is neuropathy?\tAbrams\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, neuropathy) -> (Abrams, is now doing, his peripheral neuropathy study) -> Abrams (4280ms)\nWhat is neuropathy?\tAVAPRO\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, neuropathy) -> (AVAPRO, did make, a neuropathy) -> AVAPRO (4295ms)\nWhat is neuropathy?\tCisplatin/Taxol combination\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, produce, neuropathy) -> (Cisplatin/Taxol combination, produces, more neuropathy) -> Cisplatin/Taxol combination (4273ms)\nWhat is neuropathy?\ta few days post surgery\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (The neuropathy, was completely gone for, a few days post surgery) -> a few days post surgery (4256ms)\nWhat is neuropathy?\ttwenty or thirty other doctors\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (This NEUROPATHY, is for, twenty or thirty other doctors) -> twenty or thirty other doctors (4273ms)\nWhat is neuropathy?\ta lot\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, neuropathy) -> (a lot, as did, neuropathy) -> a lot (4295ms)\nWhat is neuropathy?\tdisorders\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is a general term for, disorders) -> disorders (4288ms)\nWhat is neuropathy?\tseverity\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (incident peripheral neuropathy and, were graded for, severity) -> severity (4272ms)\nWhat is neuropathy?\tIsoniazid\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, produce, neuropathy) -> (Isoniazid, produced, 602 % peripheral neuropathy) -> Isoniazid (4256ms)\nWhat is neuropathy?\tthe cortex\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, define, neuropathy) -> (the cortex, might be defined as, an auditory neuropathy) -> the cortex (4288ms)\nWhat is neuropathy?\tdisease\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is the medical word for, disease) -> disease (4273ms)\nWhat is neuropathy?\tEarly postoperative period\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, characterize, neuropathy) -> (Early postoperative period, is characterized by, neuropathies) -> Early postoperative period (4280ms)\nWhat is neuropathy?\tthe ataxia\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is often responsible for, the ataxia) -> the ataxia (4265ms)\nWhat is neuropathy?\tglaucoma\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, characterize, neuropathy) -> (glaucoma, is characterized by, optic neuropathy) -> glaucoma (4288ms)\nWhat is neuropathy?\tprimrose oil\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, neuropathy) -> (primrose oil, do anything for, diabetic neuropathy) -> primrose oil (4280ms)\nWhat is neuropathy?\tonce the four treatments\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, neuropathy) -> (once the four treatments, does, the neuropathy) -> once the four treatments (4273ms)\nWhat is neuropathy?\tL-OHP\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral sensory neuropathy, was greatest for, L-OHP) -> L-OHP (4265ms)\nWhat is neuropathy?\tNeuropathy\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, diabetic neuropathy) -> (Neuropathy, Do, Doctors Diagnose Diabetic Neuropathy) -> Neuropathy (4280ms)\nWhat is neuropathy?\tthe most part\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral Neuropathy, Is For, the most part) -> the most part (4288ms)\nWhat is neuropathy?\tmuscle cramps\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is noted for, muscle cramps) -> muscle cramps (4295ms)\nWhat is neuropathy?\tdamage\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is the term for, damage) -> damage (4288ms)\nWhat is neuropathy?\tneuropathic pains\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathies, may be causes for, neuropathic pains) -> neuropathic pains (4273ms)\nWhat is neuropathy?\ta very long time\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, has been present for, a very long time) -> a very long time (4288ms)\nWhat is neuropathy?\tinformation\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (This NEUROPATHY, is for, information) -> information (4288ms)\nWhat is neuropathy?\talcoholism\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (alcoholic neuropathy, is treatment for, alcoholism) -> alcoholism (4256ms)\nWhat is neuropathy?\teach group\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (NEUROPATHY, was then determined for, each group) -> each group (4280ms)\nWhat is neuropathy?\tyears\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, has been extremely mild for, years) -> years (4280ms)\nWhat is neuropathy?\tthe maintenance\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (hereditary axonal neuropathy, are critical for, the maintenance) -> the maintenance (4295ms)\nWhat is neuropathy?\tany type\t-0.111111111112\tWhat is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (diabetic neuropathy, is generally used for, any type) -> any type (4265ms)\nWhat is neuropathy?\tLead toxicity\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, produce, neuropathy) -> (Lead toxicity, produces, a classic motor neuropathy) -> Lead toxicity (4265ms)\nWhat is neuropathy?\tneuropathic pain\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is another term for, neuropathic pain) -> neuropathic pain (4265ms)\nWhat is neuropathy?\tThe nerve damage\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, characterize, neuropathy) -> (The nerve damage, characterizes, diabetic peripheral neuropathy) -> The nerve damage (4280ms)\nWhat is neuropathy?\tthe neck\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, produce, neuropathy) -> (the neck, can produce, SYMPTOMS SENSORY NEUROPATHIES NEUROPATHY) -> the neck (4288ms)\nWhat is neuropathy?\tamputation\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (?Neuropathy, is the leading cause for, amputation) -> amputation (4265ms)\nWhat is neuropathy?\tThe isoniazid\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, produce, neuropathy) -> (The isoniazid, produced, more peripheral neuropathy) -> The isoniazid (4288ms)\nWhat is neuropathy?\tthe common link\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, is a prime candidate for, the common link) -> the common link (4288ms)\nWhat is neuropathy?\tQuestion\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, neuropathy) -> (Question, Does, neuropathy) -> Question (4273ms)\nWhat is neuropathy?\teach 2200 patient years\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, could be expected for, each 2200 patient years) -> each 2200 patient years (4288ms)\nWhat is neuropathy?\tneurotoxicity\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, characterize, neuropathy) -> (neurotoxicity, is characterized by, an acute neuropathy) -> neurotoxicity (4265ms)\nWhat is neuropathy?\tphysical damage\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is a general term for, physical damage) -> physical damage (4280ms)\nWhat is neuropathy?\tthe feet\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, neuropathy) -> (the feet, is to do with, ?neuropathy?) -> the feet (4273ms)\nWhat is neuropathy?\tpresentation\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (Motor Neuropathy Patients, has been accepted for, presentation) -> presentation (4273ms)\nWhat is neuropathy?\ta few hours\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (my neuropathy, was diminished for, a few hours) -> a few hours (4280ms)\nWhat is neuropathy?\ttreatment\t-0.111111111112\tWhat is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathies, may be a dose-limiting factor for, treatment) -> treatment (4288ms)\nWhat is neuropathy?\tcramps\t-0.111111111112\tWhat is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (diabetic neuropathy, can also be mistaken for, cramps) -> cramps (4280ms)\nWhat is neuropathy?\tNCS\t-0.111111111112\tWhat is neuropathy? -> $x: ($x, do, neuropathy) -> (NCS, cannot be done for, autonomic neuropathy) -> NCS (4295ms)\nWhat is neuropathy?\tCondition\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (Condition, also referred to as, peripheral Neuropathy) -> Condition (4295ms)\nWhat is neuropathy?\tneuropathy-target-esterase\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (neuropathy-target-esterase, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Neuropathy%20target%20esterase) -> neuropathy-target-esterase (4303ms)\nWhat is neuropathy?\tTopics\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (Topics, Find, a Podiatrist , neuropathy and footwear) -> Topics (4303ms)\nWhat is neuropathy?\tDoctors\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (Doctors, usually refer to, neuropathies) -> Doctors (4310ms)\nWhat is neuropathy?\taverage exposure\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (average exposure, were found to have, neuropathies) -> average exposure (4310ms)\nWhat is neuropathy?\tthe extremities\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (the extremities, referred to as, a peripheral neuropathy) -> the extremities (4295ms)\nWhat is neuropathy?\tCIDN\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (CIDN, referred to as, hypertrophic neuropathy) -> CIDN (4295ms)\nWhat is neuropathy?\tNARP syndrome\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (NARP syndrome, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Neuropathy,%20ataxia,%20and%20retinitis%20pigmentosa) -> NARP syndrome (4310ms)\nWhat is neuropathy?\tmedications\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, create, neuropathy) -> (medications, create, Neuropathy Saturday) -> medications (4303ms)\nWhat is neuropathy?\ta statistical association\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (a statistical association, was found between, neuropathy) -> a statistical association (4310ms)\nWhat is neuropathy?\tThe term sensorimotor\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (The term sensorimotor, refers to, neuropathies) -> The term sensorimotor (4310ms)\nWhat is neuropathy?\tNo association\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, diabetic neuropathy) -> (No association, was found between, diabetic neuropathy) -> No association (4303ms)\nWhat is neuropathy?\tmultifocal_motor_neuropathy\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (multifocal_motor_neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy) -> multifocal_motor_neuropathy (4310ms)\nWhat is neuropathy?\tGiant axonal neuropathy\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (Giant axonal neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy) -> Giant axonal neuropathy (4303ms)\nWhat is neuropathy?\tHMSN III\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (HMSN III, refers to, hypertrophic neuropathy) -> HMSN III (4303ms)\nWhat is neuropathy?\t486 patients\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (486 patients, referred for, suspected sensory neuropathy) -> 486 patients (4303ms)\nWhat is neuropathy?\tThe other ,\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (The other ,, referred to as, autonomic neuropathy) -> The other , (4295ms)\nWhat is neuropathy?\tnerve damage\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (nerve damage, is also referred to as, neuropathy) -> nerve damage (4303ms)\nWhat is neuropathy?\tthe hands and feet\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (the hands and feet, is referred to as, amyloid neuropathy) -> the hands and feet (4310ms)\nWhat is neuropathy?\tcednik syndrome\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (cednik syndrome, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Cerebral%20dysgenesis%E2%80%93neuropathy%E2%80%93ichthyosis%E2%80%93keratoderma%20syndrome) -> cednik syndrome (4303ms)\nWhat is neuropathy?\tfeelings\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, refer, neuropathy) -> (feelings, is referred to as, peripheral neuropathy) -> feelings (4303ms)\nWhat is neuropathy?\tThe 5th patient\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, diabetic neuropathy) -> (The 5th patient, was found to suffer from, diabetic neuropathy) -> The 5th patient (4303ms)\nWhat is neuropathy?\tAuditory Neuropathy\t-0.222222222222\tWhat is neuropathy? -> $x: ($x, found, neuropathy) -> (Auditory Neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Auditory%20neuropathy) -> Auditory Neuropathy (4303ms)\nWhat is neuropathy?\tFixodent zinc poisoning\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Fixodent zinc poisoning, can lead to, neuropathy) -> Fixodent zinc poisoning (4344ms)\nWhat is neuropathy?\texposure\t-0.222222222223\tWhat is neuropathy? -> $x: (neuropathy, be about, $x) -> (Diabetic focal neuropathy, is usually brought about by, exposure) -> exposure (4358ms)\nWhat is neuropathy?\tSevere zinc poisoning\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Severe zinc poisoning, can lead to, neuropathy) -> Severe zinc poisoning (4419ms)\nWhat is neuropathy?\t?The main task\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (?The main task, is to identify those with, peripheral neuropathy) -> ?The main task (4398ms)\nWhat is neuropathy?\tprocedures\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (procedures, can lead to, ulnar neuropathy) -> procedures (4368ms)\nWhat is neuropathy?\tbreast cancer\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (breast cancer, can cause, peripheral neuropathy) -> breast cancer (4398ms)\nWhat is neuropathy?\tCertain chemotherapy drugs\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Certain chemotherapy drugs, can cause, peripheral neuropathy) -> Certain chemotherapy drugs (4390ms)\nWhat is neuropathy?\tthe condition\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (the condition, may be due to, inflammatory neuropathy) -> the condition (4398ms)\nWhat is neuropathy?\tdiabetic food neuropathy\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic food neuropathy, is, diabetic neuropathy) -> diabetic food neuropathy (4331ms)\nWhat is neuropathy?\tpast radiation treatment\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (past radiation treatment, is, neuropathy) -> past radiation treatment (4363ms)\nWhat is neuropathy?\tVitamin B12 deficiencies\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Vitamin B12 deficiencies, can lead to, peripheral neuropathy) -> Vitamin B12 deficiencies (4317ms)\nWhat is neuropathy?\tkidney failure\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (kidney failure, can cause, peripheral neuropathy) -> kidney failure (4310ms)\nWhat is neuropathy?\ta copper deficiency\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (a copper deficiency, can lead to, neuropathy) -> a copper deficiency (4394ms)\nWhat is neuropathy?\tthe body?s cells\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (the body?s cells, can treat, diabetic neuropathy) -> the body?s cells (4409ms)\nWhat is neuropathy?\tFlagyl\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Flagyl, can cause, perephial neuropathy) -> Flagyl (4419ms)\nWhat is neuropathy?\tdeficiency\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (deficiency, is linked to, neuropathy and mental depression) -> deficiency (4317ms)\nWhat is neuropathy?\ta known result\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (a known result, is indistinguishable from, diabetic neuropathy) -> a known result (4324ms)\nWhat is neuropathy?\tthe medicines\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (the medicines, used can have, peripheral neuropathy) -> the medicines (4414ms)\nWhat is neuropathy?\ta denizen\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (a denizen, is suffering greatly from, diabetic neuropathy) -> a denizen (4381ms)\nWhat is neuropathy?\tSeveral factors\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Several factors, have been linked to, auditory neuropathy) -> Several factors (4372ms)\nWhat is neuropathy?\tmission\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (mission, is to increase public awareness of, neuropathy) -> mission (4344ms)\nWhat is neuropathy?\tB vitamins and magnesium\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (B vitamins and magnesium, are compromised with, neuropathy) -> B vitamins and magnesium (4414ms)\nWhat is neuropathy?\tan 8\t-0.222222222223\tWhat is neuropathy? -> $x: (neuropathy, be about, $x) -> (Feet neuropathy, is about, an 8) -> an 8 (4338ms)\nWhat is neuropathy?\tthe lookout\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the lookout, is, diabetic neuropathy) -> the lookout (4382ms)\nWhat is neuropathy?\tYASMIN\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (YASMIN, is used to treat, neuropathy) -> YASMIN (4394ms)\nWhat is neuropathy?\tContains n-hexane\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Contains n-hexane, can cause, peripheral neuropathy) -> Contains n-hexane (4386ms)\nWhat is neuropathy?\tMyalgic hyperalgesia\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Myalgic hyperalgesia, may also be secondary to, neuropathy) -> Myalgic hyperalgesia (4405ms)\nWhat is neuropathy?\tINH\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (INH, can cause, peripheral neuropathy) -> INH (4390ms)\nWhat is neuropathy?\tThe symptom\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (The symptom, is known as, neuropathy) -> The symptom (4421ms)\nWhat is neuropathy?\tMyeloma patients\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Myeloma patients, can also experience, peripheral neuropathy) -> Myeloma patients (4331ms)\nWhat is neuropathy?\tdentures\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (dentures, were afflicted with, neuropathy) -> dentures (4377ms)\nWhat is neuropathy?\t600 mg/day doses\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (600 mg/day doses, were mainly used for, diabetic neuropathy) -> 600 mg/day doses (4402ms)\nWhat is neuropathy?\tLifestyle changes\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Lifestyle changes, can help, peripheral neuropathy) -> Lifestyle changes (4412ms)\nWhat is neuropathy?\tNeuropathy Severe zinc poisoning\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Neuropathy Severe zinc poisoning, can lead to, neuropathy) -> Neuropathy Severe zinc poisoning (4419ms)\nWhat is neuropathy?\tExcessive zinc\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Excessive zinc, has been linked to, neuropathy) -> Excessive zinc (4409ms)\nWhat is neuropathy?\tBlood sugar control\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (Blood sugar control, is the only treatment for, neuropathy) -> Blood sugar control (4402ms)\nWhat is neuropathy?\tDiabetics\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Diabetics, can develop, peripheral neuropathies) -> Diabetics (4412ms)\nWhat is neuropathy?\terectile dysfunction\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (erectile dysfunction, is due to, neuropathy) -> erectile dysfunction (4412ms)\nWhat is neuropathy?\texcellent blood sugar control\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (excellent blood sugar control, can develop, diabetic neuropathy) -> excellent blood sugar control (4368ms)\nWhat is neuropathy?\t15 percent\t-0.222222222223\tWhat is neuropathy? -> $x: (neuropathy, be about, $x) -> (Peripheral neuropathy, is found in about, 15 percent) -> 15 percent (4421ms)\nWhat is neuropathy?\tCymbalta\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Cymbalta, is used for, Diabetic Neuropathy) -> Cymbalta (4368ms)\nWhat is neuropathy?\tThe muscles\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The muscles, are affected by, diabetic neuropathy) -> The muscles (4398ms)\nWhat is neuropathy?\tthe body organs\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (the body organs, can be impacted by, neuropathy) -> the body organs (4412ms)\nWhat is neuropathy?\tNerve damage\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Nerve damage, is also called, diabetic neuropathy) -> Nerve damage (4344ms)\nWhat is neuropathy?\tdiabetic foot pain\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic foot pain, is, diabetic neuropathy) -> diabetic foot pain (4350ms)\nWhat is neuropathy?\tThe ultimate aim\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (The ultimate aim, is to prevent, the neuropathy) -> The ultimate aim (4394ms)\nWhat is neuropathy?\tthe peripheral nerves\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (the peripheral nerves, are affected due to, neuropathy) -> the peripheral nerves (4402ms)\nWhat is neuropathy?\tDM20\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (DM20, is necessary to prevent, neuropathy) -> DM20 (4417ms)\nWhat is neuropathy?\tautoimmune disorders\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (autoimmune disorders, can cause, peripheral neuropathy) -> autoimmune disorders (4417ms)\nWhat is neuropathy?\tSteven NEUROPATHY\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (Steven NEUROPATHY, was told, NEUROPATHY) -> Steven NEUROPATHY (4377ms)\nWhat is neuropathy?\tlipoic acid\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (lipoic acid, has been shown to decrease, diabetic neuropathy) -> lipoic acid (4381ms)\nWhat is neuropathy?\tA common example\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (A common example, is, Diabetic Neuropathy) -> A common example (4405ms)\nWhat is neuropathy?\thigh blood glucose levels\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (high blood glucose levels, is, diabetic neuropathy) -> high blood glucose levels (4381ms)\nWhat is neuropathy?\ttime\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (time, is the key to treating, diabetic neuropathy) -> time (4405ms)\nWhat is neuropathy?\tA Diabetic\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (A Diabetic, can also acquire, diabetic neuropathy) -> A Diabetic (4398ms)\nWhat is neuropathy?\tFree radicals\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Free radicals, are hypothesized to, play a role in neuropathy) -> Free radicals (4310ms)\nWhat is neuropathy?\tGold chloride\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Gold chloride, has been known to cause, Peripheral Neuropathy) -> Gold chloride (4377ms)\nWhat is neuropathy?\tneurotrophic agents\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (neurotrophic agents, can be applied to, peripheral neuropathies) -> neurotrophic agents (4324ms)\nWhat is neuropathy?\tvitamin B12\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (vitamin B12, may be helpful to, diabetic neuropathy patients) -> vitamin B12 (4394ms)\nWhat is neuropathy?\tHigh doses\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (High doses, can cause, peripheral neuropathy) -> High doses (4368ms)\nWhat is neuropathy?\tthe patient\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (the patient, is suspected of having, neuropathy) -> the patient (4338ms)\nWhat is neuropathy?\tparoxetine\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (paroxetine, is effective for, diabetic neuropathy) -> paroxetine (4372ms)\nWhat is neuropathy?\tthe right steps\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (the right steps, now can delay, neuropathy) -> the right steps (4358ms)\nWhat is neuropathy?\tNo medical treatments\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (No medical treatments, can cure, peripheral neuropathy) -> No medical treatments (4363ms)\nWhat is neuropathy?\tB6\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (B6, is important to control, INH related peripheral neuropathy) -> B6 (4331ms)\nWhat is neuropathy?\tThe reduced blood flow\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (The reduced blood flow, can intensify, neuropathy symptoms) -> The reduced blood flow (4331ms)\nWhat is neuropathy?\tPrimrose evening oil\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Primrose evening oil, is also great for, diabetic neuropathy) -> Primrose evening oil (4390ms)\nWhat is neuropathy?\torbital compartment syndrome\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (orbital compartment syndrome, can develop, optic neuropathy) -> orbital compartment syndrome (4350ms)\nWhat is neuropathy?\tcyclohexane\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (cyclohexane, has been known to cause, a peripheral neuropathy) -> cyclohexane (4390ms)\nWhat is neuropathy?\tTricyclic antidepressants\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Tricyclic antidepressants, are known to help, some neuropathies) -> Tricyclic antidepressants (4344ms)\nWhat is neuropathy?\tthe most common distal axonopathy\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the most common distal axonopathy, is, diabetic neuropathy) -> the most common distal axonopathy (4386ms)\nWhat is neuropathy?\tnerve endings\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (nerve endings, can lead to, diabetic neuropathy) -> nerve endings (4422ms)\nWhat is neuropathy?\tGLA\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (GLA, may be more effective for, diabetic neuropathy) -> GLA (4405ms)\nWhat is neuropathy?\tDiabetic Peripheral Neuropathy\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (Diabetic Peripheral Neuropathy, is, Neuropathy) -> Diabetic Peripheral Neuropathy (4414ms)\nWhat is neuropathy?\thalf\t-0.222222222223\tWhat is neuropathy? -> $x: (neuropathy, be about, $x) -> (neuropathy, is about, half) -> half (4402ms)\nWhat is neuropathy?\tAlpha-lipoic acid\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Alpha-lipoic acid, is effectively used to treat, neuropathy) -> Alpha-lipoic acid (4421ms)\nWhat is neuropathy?\tThe cause\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (The cause, was complication of, neuropathy) -> The cause (4405ms)\nWhat is neuropathy?\tnutrients\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (nutrients, are specifically designed to, address neuropathy) -> nutrients (4377ms)\nWhat is neuropathy?\tAfrican Americans\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (African Americans, were much more likely to have, neuropathy) -> African Americans (4324ms)\nWhat is neuropathy?\t60\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (60, are most likely to develop, peripheral neuropathy) -> 60 (4421ms)\nWhat is neuropathy?\tdepression\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (depression, is used to treat, chronic pain/neuropathy) -> depression (4317ms)\nWhat is neuropathy?\tsensation\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (sensation, is limited with, neuropathy) -> sensation (4344ms)\nWhat is neuropathy?\tDiabetes Mellitus\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Diabetes Mellitus, is, Diabetic Neuropathy) -> Diabetes Mellitus (4422ms)\nWhat is neuropathy?\talcohol\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (alcohol, can experience, peripheral neuropathy) -> alcohol (4390ms)\nWhat is neuropathy?\tsmoking and alcohol use\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (smoking and alcohol use, can also lead to, neuropathy) -> smoking and alcohol use (4402ms)\nWhat is neuropathy?\tfeeling\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (feeling, is called, diabetic neuropathy) -> feeling (4386ms)\nWhat is neuropathy?\tsixth nerve impairment\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (sixth nerve impairment, is, diabetic neuropathy) -> sixth nerve impairment (4358ms)\nWhat is neuropathy?\twounds\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (wounds, is, diabetic neuropathy) -> wounds (4412ms)\nWhat is neuropathy?\tthe meeting\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (the meeting, was devoted to, Auditory Neuropathy) -> the meeting (4363ms)\nWhat is neuropathy?\tThe heart\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (The heart, is also affected by, neuropathy) -> The heart (4331ms)\nWhat is neuropathy?\t19 Nov 2010 , 12:15 AM Diabetics\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (19 Nov 2010 , 12:15 AM Diabetics, is called, neuropathy) -> 19 Nov 2010 , 12:15 AM Diabetics (4310ms)\nWhat is neuropathy?\tdiabetic complication\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic complication, is, diabetic neuropathy) -> diabetic complication (4402ms)\nWhat is neuropathy?\tWard?s condition\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Ward?s condition, was diagnosed as, diabetic neuropathy) -> Ward?s condition (4402ms)\nWhat is neuropathy?\tTRAMADOL\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (TRAMADOL, is used for, Diabetic Neuropathy) -> TRAMADOL (4405ms)\nWhat is neuropathy?\tthe causes\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (the causes, could be from, Neuropathy) -> the causes (4386ms)\nWhat is neuropathy?\tImproved regulation\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Improved regulation, is the best way to reduce, neuropathy) -> Improved regulation (4344ms)\nWhat is neuropathy?\tNutritional deficiencies\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Nutritional deficiencies, can cause, peripheral neuropathy) -> Nutritional deficiencies (4405ms)\nWhat is neuropathy?\tcontrols\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (controls, cannot be used to rule out, small fiber neuropathy) -> controls (4402ms)\nWhat is neuropathy?\ta physical exam\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (a physical exam, is used to diagnose, neuropathy) -> a physical exam (4358ms)\nWhat is neuropathy?\tpeople with diabetes\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (people with diabetes, can develop, neuropathy) -> people with diabetes (4358ms)\nWhat is neuropathy?\tsevere nerve damage\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (severe nerve damage, was diagnosed with, neuropathy) -> severe nerve damage (4417ms)\nWhat is neuropathy?\tthe longest\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (the longest, often are affected by, neuropathy) -> the longest (4417ms)\nWhat is neuropathy?\tWard\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Ward, was already suffering from, diabetic neuropathy) -> Ward (4377ms)\nWhat is neuropathy?\tVelcade\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Velcade, can make, neuropathy) -> Velcade (4358ms)\nWhat is neuropathy?\tcortical plasticity\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (cortical plasticity, may be related to, neuropathies) -> cortical plasticity (4331ms)\nWhat is neuropathy?\tno fun\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (no fun, is certainly more temporary than, neuropathy) -> no fun (4419ms)\nWhat is neuropathy?\tulcers\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (ulcers, are a common complication of, diabetic neuropathy) -> ulcers (4317ms)\nWhat is neuropathy?\tthe foot\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (the foot, is called, neuropathy) -> the foot (4412ms)\nWhat is neuropathy?\theel ulcers\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (heel ulcers, are directly related to, peripheral neuropathy) -> heel ulcers (4324ms)\nWhat is neuropathy?\tIOP evaluation\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (IOP evaluation, is widely used to test for, optic neuropathy) -> IOP evaluation (4372ms)\nWhat is neuropathy?\ttopical pain creams\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (topical pain creams, are, diabetic neuropathy) -> topical pain creams (4394ms)\nWhat is neuropathy?\tBlindness\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Blindness, as are, diabetic neuropathy) -> Blindness (4419ms)\nWhat is neuropathy?\t2011\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (2011, is, Diabetic Neuropathy) -> 2011 (4368ms)\nWhat is neuropathy?\tthe more common syndromes\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the more common syndromes, are, diabetic neuropathy) -> the more common syndromes (4377ms)\nWhat is neuropathy?\tThe diagnosis\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (The diagnosis, was later altered to, autonomic neuropathy) -> The diagnosis (4394ms)\nWhat is neuropathy?\tpictures\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (pictures, are classic examples of, diabetic neuropathy) -> pictures (4324ms)\nWhat is neuropathy?\tthe sublimed conceptions\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (the sublimed conceptions, are all product of, neuropathy) -> the sublimed conceptions (4386ms)\nWhat is neuropathy?\tmotor function\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (motor function, are impaired from, neuropathy) -> motor function (4377ms)\nWhat is neuropathy?\tCancer\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Cancer, can cause, peripheral neuropathy) -> Cancer (4419ms)\nWhat is neuropathy?\tHereditary\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (Hereditary, are Hereditary, Neuropathies) -> Hereditary (4414ms)\nWhat is neuropathy?\tThe nervous system\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The nervous system, is known as, diabetic neuropathy) -> The nervous system (4386ms)\nWhat is neuropathy?\tMetronidazole\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Metronidazole, can cause, peripheral neuropathy) -> Metronidazole (4363ms)\nWhat is neuropathy?\tDCA\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (DCA, may be limited by, neuropathy) -> DCA (4317ms)\nWhat is neuropathy?\talpha lipoic acid\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (alpha lipoic acid, is beneficial for, neuropathy) -> alpha lipoic acid (4368ms)\nWhat is neuropathy?\tToo much B6\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Too much B6, can cause, peripheral neuropathy) -> Too much B6 (4338ms)\nWhat is neuropathy?\t70 years\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (70 years, was diagnosed with, diabetic neuropathy) -> 70 years (4421ms)\nWhat is neuropathy?\tMore serious side effects\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (More serious side effects, can include, neuropathy) -> More serious side effects (4409ms)\nWhat is neuropathy?\tB12 deficiency\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (B12 deficiency, can lead to varying degrees of, neuropathy) -> B12 deficiency (4390ms)\nWhat is neuropathy?\tthe toes and hands\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (the toes and hands, can be signs of, diabetic neuropathy) -> the toes and hands (4409ms)\nWhat is neuropathy?\tDuloxetine\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Duloxetine, is also used to treat, diabetic neuropathy) -> Duloxetine (4363ms)\nWhat is neuropathy?\tOne example\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (One example, is, diabetic neuropathy) -> One example (4419ms)\nWhat is neuropathy?\tagents\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (agents, are used for, neuropathy) -> agents (4394ms)\nWhat is neuropathy?\tdeficiencies\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (deficiencies, have also been linked to, peripheral neuropathy) -> deficiencies (4405ms)\nWhat is neuropathy?\ta larger factor\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (a larger factor, is, neuropathy) -> a larger factor (4350ms)\nWhat is neuropathy?\ta daily and prolonged basis\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (a daily and prolonged basis, can cause, alcoholic neuropathy) -> a daily and prolonged basis (4338ms)\nWhat is neuropathy?\tThe flagship application\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The flagship application, will be, diabetic neuropathy) -> The flagship application (4402ms)\nWhat is neuropathy?\tnerve cells\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (nerve cells, is the primary reason for, Diabetic neuropathy) -> nerve cells (4405ms)\nWhat is neuropathy?\t17p12\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (17p12, are associated with, neuropathy) -> 17p12 (4417ms)\nWhat is neuropathy?\tvincristine and cisplatin\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (vincristine and cisplatin, can cause, peripheral neuropathies) -> vincristine and cisplatin (4386ms)\nWhat is neuropathy?\tthe foot problems\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (the foot problems, are primarily a consequence of, neuropathy) -> the foot problems (4390ms)\nWhat is neuropathy?\tVitamin B\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Vitamin B, is commonly used to treat, peripheral neuropathy) -> Vitamin B (4419ms)\nWhat is neuropathy?\t2009 Nucleus Medical Media\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (2009 Nucleus Medical Media, can cause, peripheral neuropathy) -> 2009 Nucleus Medical Media (4381ms)\nWhat is neuropathy?\tthe organs\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (the organs, can be altered by, neuropathy) -> the organs (4390ms)\nWhat is neuropathy?\tthe pain\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (the pain, could be due to, neuropathy) -> the pain (4358ms)\nWhat is neuropathy?\tOld mitochondria\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (Old mitochondria, might be responsible for, neuropathy) -> Old mitochondria (4398ms)\nWhat is neuropathy?\treal , sometimes permanent nerve damage\t-0.222222222223\tWhat is neuropathy? -> $x: (neuropathy, be about, $x) -> (neuropathy, is about, real , sometimes permanent nerve damage) -> real , sometimes permanent nerve damage (4414ms)\nWhat is neuropathy?\thigh blood sugar levels\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (high blood sugar levels, is known as, diabetic neuropathy) -> high blood sugar levels (4337ms)\nWhat is neuropathy?\tNerve Damage\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (Nerve Damage, is also called, Neuropathy) -> Nerve Damage (4409ms)\nWhat is neuropathy?\tNerve damage Diabetes\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Nerve damage Diabetes, can lead to, neuropathy) -> Nerve damage Diabetes (4372ms)\nWhat is neuropathy?\tsuch long-term complications\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (such long-term complications, can arise as, neuropathy) -> such long-term complications (4317ms)\nWhat is neuropathy?\t2.This formula\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (2.This formula, may also be used for, neuropathy) -> 2.This formula (4398ms)\nWhat is neuropathy?\tlower back pain\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (lower back pain, is, diabetic neuropathy) -> lower back pain (4412ms)\nWhat is neuropathy?\thypomotility\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (hypomotility, is a consequence of, diabetic neuropathy) -> hypomotility (4398ms)\nWhat is neuropathy?\tmuscles\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (muscles, are impacted by, diabetic neuropathy) -> muscles (4409ms)\nWhat is neuropathy?\tThe antibiotics\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (The antibiotics, can have dreadful side effects like, neuropathy) -> The antibiotics (4417ms)\nWhat is neuropathy?\tDiscomfort\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (Discomfort, is Brought on by, neuropathy) -> Discomfort (4372ms)\nWhat is neuropathy?\tFibromyalgia pain\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Fibromyalgia pain, is similar to, diabetic neuropathy) -> Fibromyalgia pain (4324ms)\nWhat is neuropathy?\tA PT\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (A PT, can help treat, diabetic neuropathy) -> A PT (4324ms)\nWhat is neuropathy?\tblood rheology\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (blood rheology, may be relevant to, neuropathy .38,39) -> blood rheology (4409ms)\nWhat is neuropathy?\tfoot ulceration\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (foot ulceration, is usually related to, peripheral neuropathy) -> foot ulceration (4363ms)\nWhat is neuropathy?\tgastrointestinal tract\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (gastrointestinal tract, is called, neuropathy) -> gastrointestinal tract (4405ms)\nWhat is neuropathy?\tthe person\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (the person, is suffering from, neuropathy) -> the person (4386ms)\nWhat is neuropathy?\tsimilar symptoms\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (similar symptoms, are, diabetic neuropathy) -> similar symptoms (4394ms)\nWhat is neuropathy?\tproblems\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (problems, is, neuropathy) -> problems (4344ms)\nWhat is neuropathy?\tPatients\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (Patients, are also likely to have, coexisting neuropathy) -> Patients (4331ms)\nWhat is neuropathy?\tM.D.\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (M.D., is, Neuropathy) -> M.D. (4324ms)\nWhat is neuropathy?\tThe model variables\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (The model variables, were used to classify, neuropathy) -> The model variables (4363ms)\nWhat is neuropathy?\tnerve compression\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (nerve compression, can help certain types of, neuropathy) -> nerve compression (4372ms)\nWhat is neuropathy?\tcertain genes\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (certain genes, were more likely to develop, diabetic neuropathy) -> certain genes (4409ms)\nWhat is neuropathy?\ta nerve\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (a nerve, can lead to, neuropathy) -> a nerve (4409ms)\nWhat is neuropathy?\tLipoic acid\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (Lipoic acid, has been used to treat, diabetic neuropathy) -> Lipoic acid (4377ms)\nWhat is neuropathy?\tthe first symptom\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the first symptom, is, diabetic neuropathy) -> the first symptom (4317ms)\nWhat is neuropathy?\tLead exposure\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (Lead exposure, can cause, peripheral neuropathy) -> Lead exposure (4409ms)\nWhat is neuropathy?\tthe hearing results\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (the hearing results, may be due to, an auditory neuropathy) -> the hearing results (4381ms)\nWhat is neuropathy?\tsarcoidosis\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (sarcoidosis, can cause, peripheral neuropathy) -> sarcoidosis (4368ms)\nWhat is neuropathy?\tThe weak hind legs\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The weak hind legs, is called, diabetic neuropathy) -> The weak hind legs (4310ms)\nWhat is neuropathy?\tanterior optic type\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, neuropathy) -> (anterior optic type, were called, neuropathy) -> anterior optic type (4417ms)\nWhat is neuropathy?\tanti-nausea medications\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (anti-nausea medications, can increase, neuropathy) -> anti-nausea medications (4414ms)\nWhat is neuropathy?\tdiabetics\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be to, neuropathy) -> (diabetics, are attributed to, neuropathy) -> diabetics (4417ms)\nWhat is neuropathy?\tglutamine\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (glutamine, can minimize the severity of, neuropathy) -> glutamine (4412ms)\nWhat is neuropathy?\twhole grains\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (whole grains, can also help with, neuropathy) -> whole grains (4344ms)\nWhat is neuropathy?\tnumbness or combinations\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (numbness or combinations, is called, diabetic neuropathy) -> numbness or combinations (4368ms)\nWhat is neuropathy?\tC-peptide\t-0.222222222223\tWhat is neuropathy? -> $x: ($x, can, neuropathy) -> (C-peptide, can improve, neuropathy) -> C-peptide (4372ms)\nWhat is neuropathy?\tdiagnosis\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (diagnosis, developed, peripheral neuropathy) -> diagnosis (4429ms)\nWhat is neuropathy?\tDrug\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Drug, induced, neuropathy) -> Drug (4424ms)\nWhat is neuropathy?\tSCLC\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (SCLC, developed, neuropathies) -> SCLC (4430ms)\nWhat is neuropathy?\tCIPN ? chemotherapy\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (CIPN ? chemotherapy, induced, peripheral neuropathy) -> CIPN ? chemotherapy (4429ms)\nWhat is neuropathy?\tChronic inorganic mercury\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chronic inorganic mercury, induced, peripheral neuropathy) -> Chronic inorganic mercury (4425ms)\nWhat is neuropathy?\topiate ULTRAM\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (opiate ULTRAM, could develop, neuropathy) -> opiate ULTRAM (4432ms)\nWhat is neuropathy?\theavy drinkers\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (heavy drinkers, develop, peripheral neuropathy) -> heavy drinkers (4425ms)\nWhat is neuropathy?\tArsenic\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Arsenic, induced, neuropathy) -> Arsenic (4425ms)\nWhat is neuropathy?\ta diabetic patient\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (a diabetic patient, may develop, peripheral neuropathy) -> a diabetic patient (4432ms)\nWhat is neuropathy?\tHispanics\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (Hispanics, doubled the risk of developing, diabetic neuropathy) -> Hispanics (4432ms)\nWhat is neuropathy?\tA few diabetic patients\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (A few diabetic patients, develop, diabetic neuropathy) -> A few diabetic patients (4427ms)\nWhat is neuropathy?\tmore than 12 months\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (more than 12 months, develop, peripheral neuropathy) -> more than 12 months (4431ms)\nWhat is neuropathy?\tnausea\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (nausea, developed, neuropathy) -> nausea (4427ms)\nWhat is neuropathy?\tRadiation\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Radiation, induced, optic neuropathy) -> Radiation (4427ms)\nWhat is neuropathy?\tThe drug\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, side, neuropathy) -> (The drug, has some bothersome side effects such as, neuropathy) -> The drug (4433ms)\nWhat is neuropathy?\t18 patients\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (18 patients, had developed, neuropathy symptoms) -> 18 patients (4427ms)\nWhat is neuropathy?\tamputation Diabetics\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (amputation Diabetics, often develop, sensory neuropathy) -> amputation Diabetics (4429ms)\nWhat is neuropathy?\tprolonged periods\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (prolonged periods, developed, severe peripheral neuropathies) -> prolonged periods (4433ms)\nWhat is neuropathy?\tan 8th grade science teacher\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (an 8th grade science teacher, developed, diabetic neuropathy) -> an 8th grade science teacher (4433ms)\nWhat is neuropathy?\tMitchell\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (Mitchell, develop, neuropathies) -> Mitchell (4427ms)\nWhat is neuropathy?\tprogressive nerve disease\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (progressive nerve disease, had developed, autonomic neuropathy) -> progressive nerve disease (4424ms)\nWhat is neuropathy?\tendothelin-1\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (endothelin-1, Induced, chronic optic neuropathy) -> endothelin-1 (4427ms)\nWhat is neuropathy?\tChemo-therapy\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chemo-therapy, induced, peripheral neuropathy) -> Chemo-therapy (4429ms)\nWhat is neuropathy?\ta taxane\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (a taxane, develop, neuropathy) -> a taxane (4433ms)\nWhat is neuropathy?\tdiabetic patients\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (diabetic patients, develop, peripheral neuropathy) -> diabetic patients (4432ms)\nWhat is neuropathy?\t47 years\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (47 years, developed, a demyelinating neuropathy) -> 47 years (4430ms)\nWhat is neuropathy?\tBicycling\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Bicycling, induced, pudendal nerve pressure neuropathy) -> Bicycling (4430ms)\nWhat is neuropathy?\tThree patients\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (Three patients, developed, grade 2 neuropathy) -> Three patients (4425ms)\nWhat is neuropathy?\tnon-deployed ones\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (non-deployed ones, develop, poly-neuropathy) -> non-deployed ones (4424ms)\nWhat is neuropathy?\tindividuals\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (individuals, developed, sensory neuropathies) -> individuals (4429ms)\nWhat is neuropathy?\tLindane\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Lindane, induced, neuropathy) -> Lindane (4427ms)\nWhat is neuropathy?\tlong-standing diabetes\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (long-standing diabetes, may develop, diabetic neuropathy) -> long-standing diabetes (4430ms)\nWhat is neuropathy?\tchemo\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (chemo, induced, neuropathy) -> chemo (4432ms)\nWhat is neuropathy?\tCertain chemotherapies\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Certain chemotherapies, can induce, severe , painful neuropathy) -> Certain chemotherapies (4432ms)\nWhat is neuropathy?\tAbout half of people with diabetes\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (About half of people with diabetes, develop, diabetic neuropathy) -> About half of people with diabetes (4427ms)\nWhat is neuropathy?\tHIV\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (HIV, may increase the risk of developing, peripheral neuropathy) -> HIV (4430ms)\nWhat is neuropathy?\tChronic inorganic\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chronic inorganic, induced, peripheral neuropathy) -> Chronic inorganic (4433ms)\nWhat is neuropathy?\tthe course\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, comprise, neuropathy) -> (the course, comprise, a relapsing and asymmetrical neuropathy) -> the course (4430ms)\nWhat is neuropathy?\tAlcohol\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Alcohol, induced, neuropathy) -> Alcohol (4429ms)\nWhat is neuropathy?\tenough regular sleep\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (enough regular sleep, can develop, ischemic optic neuropathy) -> enough regular sleep (4433ms)\nWhat is neuropathy?\t78\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (78, has developed, neuropathy) -> 78 (4432ms)\nWhat is neuropathy?\tAcute Pyridoxine\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, induce, neuropathy) -> (Acute Pyridoxine, induced, Sensory Neuropathy and Recovery) -> Acute Pyridoxine (4431ms)\nWhat is neuropathy?\tOccasionally people\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (Occasionally people, also develop this type of, neuropathy) -> Occasionally people (4430ms)\nWhat is neuropathy?\tsubjects\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (subjects, developed, peripheral neuropathy) -> subjects (4432ms)\nWhat is neuropathy?\tmore people\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (more people, are developing, peripheral neuropathy) -> more people (4430ms)\nWhat is neuropathy?\thepatitis C patients\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (hepatitis C patients, will develop, peripheral neuropathy) -> hepatitis C patients (4430ms)\nWhat is neuropathy?\tdifferent health and medical conditions\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (different health and medical conditions, develop, neuropathy) -> different health and medical conditions (4430ms)\nWhat is neuropathy?\tthe male patient\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (the male patient, developed, a partial neuropathy) -> the male patient (4425ms)\nWhat is neuropathy?\ta patient\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (a patient, then developed, median neuropathy) -> a patient (4432ms)\nWhat is neuropathy?\thealth and medical ailments\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (health and medical ailments, develop, neuropathy) -> health and medical ailments (4424ms)\nWhat is neuropathy?\tHIV patients\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (HIV patients, developed, peripheral neuropathy) -> HIV patients (4432ms)\nWhat is neuropathy?\tMyers\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (Myers, developed, neuropathy) -> Myers (4424ms)\nWhat is neuropathy?\tenvironmental toxins\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (environmental toxins, frequently develop, neuropathy) -> environmental toxins (4424ms)\nWhat is neuropathy?\tJackson\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (Jackson, developed, peripheral neuropathy) -> Jackson (4425ms)\nWhat is neuropathy?\tlupus\t-0.333333333333\tWhat is neuropathy? -> $x: ($x, develop, neuropathy) -> (lupus, develop, steroid-induced neuropathies) -> lupus (4432ms)\nWhat is the age of our solar system?\t500 billion weeks\t0.555555555555\tWhat is the age of our solar system? -> $x: ($x, be age of, solar system) -> (500 billion weeks, is almost double the age of, the solar system) -> 500 billion weeks (699ms)\nWhat is the age of our solar system?\t4.55 billion years\t0.555555555555\tWhat is the age of our solar system? -> $x: ($x, be age of, solar system) -> (4.55 billion years, is the approximate age of, the Solar System) -> 4.55 billion years (699ms)\nWhat is the age of our solar system?\tmore than 4.5 billion years\t0.555555555555\tWhat is the age of our solar system? -> $x: ($x, be age of, solar system) -> (more than 4.5 billion years, is the age of, the Solar System) -> more than 4.5 billion years (699ms)\nWhat is the age of our solar system?\ta brand\t-0.333333333331\tWhat is the age of our solar system? -> $x: ($x, be range of, solar system) -> (a brand, is exhibiting its ranges of, solar PV systems) -> a brand (699ms)\nWhat is the age of our solar system?\tTileform UK\t-0.333333333331\tWhat is the age of our solar system? -> $x: ($x, be range of, solar system) -> (Tileform UK, are now able to offer a range of, PV solar systems) -> Tileform UK (699ms)\nWhat is the age of our solar system?\tPluto\t-0.444444444443\tWhat is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Pluto, was considered, the Solar System) -> Pluto (921ms)\nWhat is the age of our solar system?\tThe district\t-0.444444444443\tWhat is the age of our solar system? -> $x: ($x, be consider, solar system) -> (The district, is considering installing, solar systems) -> The district (921ms)\nWhat is the age of our solar system?\tSolar technology\t-0.444444444443\tWhat is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Solar technology, is now considered as, a solar thermal systems) -> Solar technology (921ms)\nWhat is the age of our solar system?\tthe Moon\t-0.444444444443\tWhat is the age of our solar system? -> $x: ($x, be consider, solar system) -> (the Moon, are considered to be, Inner Solar System Missions) -> the Moon (921ms)\nWhat is the age of our solar system?\tthe Earth\t-0.444444444443\tWhat is the age of our solar system? -> $x: ($x, be consider, solar system) -> (the Earth, was considered the center of, the Solar System) -> the Earth (921ms)\nWhat is the age of our solar system?\tMars\t-0.444444444443\tWhat is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Mars, are also considered, Inner Solar System Missions) -> Mars (921ms)\nWhat is the age of our solar system?\tJapan\t-0.444444444443\tWhat is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Japan, is still considering, a giant solar energy system) -> Japan (921ms)\nWhat is the age of our solar system?\t?These space balls\t-0.6666666666650001\tWhat is the age of our solar system? -> $x: ($x, look like, meteorite) -> (?These space balls, look like, small meteorites) -> ?These space balls (1661ms)\nWhat is the age of our solar system?\tFurnace and smelter slag\t-0.6666666666650001\tWhat is the age of our solar system? -> $x: ($x, look like, meteorite) -> (Furnace and smelter slag, often look like, meteorites) -> Furnace and smelter slag (1661ms)\nWhat is the age of our solar system?\tterrestrial rocks\t-0.6666666666650001\tWhat is the age of our solar system? -> $x: ($x, look like, meteorite) -> (terrestrial rocks, look like, lunar meteorites) -> terrestrial rocks (1661ms)\nWhat is the age of our solar system?\tthe ship\t-0.6666666666650001\tWhat is the age of our solar system? -> $x: ($x, look like, meteorite) -> (the ship, looked like, a meteorite) -> the ship (1661ms)\nWhat is the age of our solar system?\tGotenks\t-0.6666666666650001\tWhat is the age of our solar system? -> $x: ($x, look like, meteorite) -> (Gotenks, looks like, a huge meteorite crater) -> Gotenks (1661ms)\nWhat is the age of our solar system?\t13-year-olds\t-0.6666666666650001\tWhat is the age of our solar system? -> $x: ($x, look like, meteorite) -> (13-year-olds, looked like, a meteorite streak) -> 13-year-olds (1661ms)\nWhat is the age of our solar system?\tthe piece\t-0.6666666666650001\tWhat is the age of our solar system? -> $x: ($x, look like, meteorite) -> (the piece, looks a little bit like, a meteorite) -> the piece (1661ms)\nWhat is the age of our solar system?\tPaul ? April 10 , 2012 @ 1:49 pm Pluto\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Paul ? April 10 , 2012 @ 1:49 pm Pluto, IS considered, a planet) -> Paul ? April 10 , 2012 @ 1:49 pm Pluto (2090ms)\nWhat is the age of our solar system?\tThe largest asteroids\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (The largest asteroids, were considered, planets) -> The largest asteroids (2091ms)\nWhat is the age of our solar system?\tthe subject\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the subject, should be considered, a planet) -> the subject (2091ms)\nWhat is the age of our solar system?\tlarge enough\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (large enough, was once also considered, a ?planet ?) -> large enough (2083ms)\nWhat is the age of our solar system?\tthe continuing debate\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the continuing debate, should be considered, a planet) -> the continuing debate (2090ms)\nWhat is the age of our solar system?\tthe moon\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the moon, are often considered, planets) -> the moon (2086ms)\nWhat is the age of our solar system?\tJupiter and Chiron\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Jupiter and Chiron, also are considered, masculine planets) -> Jupiter and Chiron (1661ms)\nWhat is the age of our solar system?\tthe city\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the city, is considered to be, the planet) -> the city (2088ms)\nWhat is the age of our solar system?\tuniverses Pluto\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (universes Pluto, is still considered, a planet) -> universes Pluto (2088ms)\nWhat is the age of our solar system?\tthe sun\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the sun, is considered, a planet) -> the sun (2088ms)\nWhat is the age of our solar system?\tMars and Saturn\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Mars and Saturn, were considered, malevolent planets) -> Mars and Saturn (2090ms)\nWhat is the age of our solar system?\ta protosolar disc\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (a protosolar disc, are considered to be, planets) -> a protosolar disc (2093ms)\nWhat is the age of our solar system?\tVenus and Jupiter\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Venus and Jupiter, are considered, auspicious planets) -> Venus and Jupiter (2080ms)\nWhat is the age of our solar system?\tThe Arctic\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (The Arctic, is considered to be, the planet) -> The Arctic (2083ms)\nWhat is the age of our solar system?\tNeptune\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Neptune, is considered, the planet) -> Neptune (2083ms)\nWhat is the age of our solar system?\tlarger then mercury\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (larger then mercury, is considered as, a planet) -> larger then mercury (2080ms)\nWhat is the age of our solar system?\teven these largest asteroids\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (even these largest asteroids, are considered, minor planets) -> even these largest asteroids (2083ms)\nWhat is the age of our solar system?\tUranus\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Uranus, is considered, the planet) -> Uranus (2090ms)\nWhat is the age of our solar system?\tPluto , Ceres and Eris\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Pluto , Ceres and Eris, are considered, dwarf planets) -> Pluto , Ceres and Eris (2088ms)\nWhat is the age of our solar system?\tthe main-belt asteroids\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the main-belt asteroids, were considered to be, planets) -> the main-belt asteroids (2090ms)\nWhat is the age of our solar system?\tThe two luminaries\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (The two luminaries, are considered, the personal planets) -> The two luminaries (2080ms)\nWhat is the age of our solar system?\tthe Sun\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the Sun, are too small to be considered, planets) -> the Sun (2083ms)\nWhat is the age of our solar system?\tBrown dwarfs\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Brown dwarfs, are too massive to be considered, planets) -> Brown dwarfs (2091ms)\nWhat is the age of our solar system?\tCloud Computing\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Cloud Computing, be considered consequential on, a planet) -> Cloud Computing (2088ms)\nWhat is the age of our solar system?\tthe tropical forests\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the tropical forests, are often considered, the planet?s lungs) -> the tropical forests (2090ms)\nWhat is the age of our solar system?\tRay Ozzie\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ray Ozzie, is considered one of, the planet) -> Ray Ozzie (2080ms)\nWhat is the age of our solar system?\tthe asteroid Ceres\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the asteroid Ceres, was considered, a planet) -> the asteroid Ceres (2083ms)\nWhat is the age of our solar system?\tXena\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Xena, might be considered, a planet) -> Xena (2088ms)\nWhat is the age of our solar system?\tVenus\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Venus, is considered to be, the planet) -> Venus (2093ms)\nWhat is the age of our solar system?\tThe sun and moon\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (The sun and moon, are considered as, planets) -> The sun and moon (2092ms)\nWhat is the age of our solar system?\tRahu Ketu\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Rahu Ketu, are considered, shadow planets) -> Rahu Ketu (2086ms)\nWhat is the age of our solar system?\ta debate\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (a debate, should be considered, a planet) -> a debate (2080ms)\nWhat is the age of our solar system?\tThe TPO tile\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (The TPO tile, is considered to be, a planet) -> The TPO tile (2083ms)\nWhat is the age of our solar system?\tSaturn\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Saturn, was considered, the planet) -> Saturn (2086ms)\nWhat is the age of our solar system?\tthe solar system\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the solar system, was considered to have, eight planets) -> the solar system (2088ms)\nWhat is the age of our solar system?\tCristal Mountain National Park\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Cristal Mountain National Park, is considered one of, the planet) -> Cristal Mountain National Park (2086ms)\nWhat is the age of our solar system?\tCeres , Pluto and Eris\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ceres , Pluto and Eris, are considered, dwarf planets) -> Ceres , Pluto and Eris (2086ms)\nWhat is the age of our solar system?\tIreland\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ireland, is considered to have, this Planet?s) -> Ireland (2086ms)\nWhat is the age of our solar system?\tCeres\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ceres, is considered, a dwarf planet) -> Ceres (2088ms)\nWhat is the age of our solar system?\tthe ideal compensation\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the ideal compensation, be sure to consider, our planet) -> the ideal compensation (2083ms)\nWhat is the age of our solar system?\tCeres and Vesta\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ceres and Vesta, were considered, planets) -> Ceres and Vesta (2083ms)\nWhat is the age of our solar system?\tthe Sun and Moon\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the Sun and Moon, are considered, planets) -> the Sun and Moon (2088ms)\nWhat is the age of our solar system?\tNike\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Nike, is considered, the planet leading supplier) -> Nike (2091ms)\nWhat is the age of our solar system?\tJupiter\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Jupiter, is considered, a transpersonal , societal planet) -> Jupiter (2091ms)\nWhat is the age of our solar system?\tMars and Ketu\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Mars and Ketu, are considered, malefic planets) -> Mars and Ketu (1661ms)\nWhat is the age of our solar system?\tthree\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (three, are considered, dwarf planets) -> three (2090ms)\nWhat is the age of our solar system?\tmercury\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (mercury, is considered, an inauspicious planet) -> mercury (2088ms)\nWhat is the age of our solar system?\ta few days\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (a few days, was considered, a planet) -> a few days (2080ms)\nWhat is the age of our solar system?\tSun-like stars\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Sun-like stars, are considered good candidates for, planets) -> Sun-like stars (2083ms)\nWhat is the age of our solar system?\tEarth\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Earth, is considered, a young planet) -> Earth (2080ms)\nWhat is the age of our solar system?\tEris\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Eris, is considered, a dwarf planet) -> Eris (2086ms)\nWhat is the age of our solar system?\tthe 18th and 19th centuries Chiron\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the 18th and 19th centuries Chiron, was considered, a planet) -> the 18th and 19th centuries Chiron (2093ms)\nWhat is the age of our solar system?\tthe King\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (the King, was considered to be, the planet) -> the King (2080ms)\nWhat is the age of our solar system?\tMoon\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (Moon, is considered, the quickest relocating planet) -> Moon (2093ms)\nWhat is the age of our solar system?\tThe Congo Basin Forest\t-0.7777777777770001\tWhat is the age of our solar system? -> $x: ($x, be consider, planet) -> (The Congo Basin Forest, is considered, the planet?s) -> The Congo Basin Forest (2083ms)\nWhat is the age of our solar system?\tthe atom\t-0.888888888886\tWhat is the age of our solar system? -> $x: ($x, look like, solar system) -> (the atom, looked like, a solar system) -> the atom (2094ms)\nWhat is the age of our solar system?\tthe device\t-0.888888888886\tWhat is the age of our solar system? -> $x: ($x, look like, solar system) -> (the device, looks like, a solar system) -> the device (2093ms)\nWhat is the age of our solar system?\tatoms\t-0.888888888886\tWhat is the age of our solar system? -> $x: ($x, look like, solar system) -> (atoms, look a lot like, our solar system) -> atoms (2093ms)\nWhat is the age of our solar system?\tThe map\t-0.888888888886\tWhat is the age of our solar system? -> $x: ($x, look like, solar system) -> (The map, looks like, a solar system) -> The map (2093ms)\nWhat is the age of our solar system?\tThe atom\t-0.888888888886\tWhat is the age of our solar system? -> $x: ($x, look like, solar system) -> (The atom, looks like, a miniature solar system) -> The atom (2093ms)\nWhat is the age of our solar system?\tOrion\t-0.888888888886\tWhat is the age of our solar system? -> $x: ($x, look like, solar system) -> (Orion, will look nothing like, our own solar system) -> Orion (2093ms)\nWhat is the age of our solar system?\tan atom\t-0.888888888886\tWhat is the age of our solar system? -> $x: ($x, look like, solar system) -> (an atom, looks a bit like, our solar system) -> an atom (2094ms)\nWhat is the age of our solar system?\texistence\t-0.888888888886\tWhat is the age of our solar system? -> $x: ($x, look like, solar system) -> (existence, look like in, the Solar System) -> existence (2093ms)\nWhat is the age of our solar system?\t50 %\t-0.888888888888\tWhat is the age of our solar system? -> $x: ($x, die from, planet) -> (50 %, die from, glaciation 545 Planets) -> 50 % (2094ms)\nWhat is the age of our solar system?\tthe discs\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the discs, looked like, the outer planets Uranus and Neptune) -> the discs (2094ms)\nWhat is the age of our solar system?\tthe wake\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the wake, looked like, a planet-size jellyfish) -> the wake (2099ms)\nWhat is the age of our solar system?\tthe symbol\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the symbol, looked like, a planet) -> the symbol (2094ms)\nWhat is the age of our solar system?\ta little green alien\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (a little green alien, looks like, the planet) -> a little green alien (2094ms)\nWhat is the age of our solar system?\tEnceladus\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (Enceladus, looks like, a planet) -> Enceladus (2096ms)\nWhat is the age of our solar system?\tThe pictures\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (The pictures, look like, another planet) -> The pictures (2098ms)\nWhat is the age of our solar system?\teach planet\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (each planet, looks like, the planet) -> each planet (2094ms)\nWhat is the age of our solar system?\tdeviantART Nebula and gas/dust\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (deviantART Nebula and gas/dust, look like, planet eclipse) -> deviantART Nebula and gas/dust (2094ms)\nWhat is the age of our solar system?\tthe night sky\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the night sky, look like from, a planet) -> the night sky (2097ms)\nWhat is the age of our solar system?\tthe center\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the center, looked like, a planet) -> the center (2096ms)\nWhat is the age of our solar system?\tthe picture\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the picture, looked like, a frozen alien planet) -> the picture (2098ms)\nWhat is the age of our solar system?\tthe Jupiter\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the Jupiter, looks exactly like, the Planet) -> the Jupiter (2094ms)\nWhat is the age of our solar system?\tthe light\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the light, looked like, a planet) -> the light (2098ms)\nWhat is the age of our solar system?\tthe fella\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the fella, looks like, a planet-side 50) -> the fella (2098ms)\nWhat is the age of our solar system?\tWales\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (Wales, look enough like, alien planets) -> Wales (2099ms)\nWhat is the age of our solar system?\timages\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (images, looks like, a planet) -> images (2099ms)\nWhat is the age of our solar system?\tamazing good job\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (amazing good job, Looks like, a rather new planet) -> amazing good job (2097ms)\nWhat is the age of our solar system?\ttimes Earth\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (times Earth, looks like, a completely alien planet) -> times Earth (2097ms)\nWhat is the age of our solar system?\tUnited States\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (United States, Looks like, another planet) -> United States (2096ms)\nWhat is the age of our solar system?\tthe model of each planet\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the model of each planet, looks like, the planet) -> the model of each planet (2097ms)\nWhat is the age of our solar system?\ta dull nebula\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (a dull nebula, looks like, a fading planet) -> a dull nebula (2096ms)\nWhat is the age of our solar system?\ta mural\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (a mural, looked like, a very florid alien planet) -> a mural (2096ms)\nWhat is the age of our solar system?\tlandscapes\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (landscapes, look like, our planet) -> landscapes (2096ms)\nWhat is the age of our solar system?\tGod\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (God, looks like on, planet earth) -> God (2096ms)\nWhat is the age of our solar system?\tthe bigger coloured circles\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the bigger coloured circles, look like, planets) -> the bigger coloured circles (2097ms)\nWhat is the age of our solar system?\tbright shades\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (bright shades, looks a bit like, the planet) -> bright shades (2098ms)\nWhat is the age of our solar system?\tA framework\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (A framework, seems to look like, a planet) -> A framework (2099ms)\nWhat is the age of our solar system?\tthe UFO\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the UFO, looks like, a planet) -> the UFO (2097ms)\nWhat is the age of our solar system?\tastronomers\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (astronomers, looks like, a planet) -> astronomers (2096ms)\nWhat is the age of our solar system?\tplants\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (plants, may look like on, different planets) -> plants (2099ms)\nWhat is the age of our solar system?\tthe crater\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the crater, looks like, another planet) -> the crater (2099ms)\nWhat is the age of our solar system?\tPandora\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (Pandora, looks like, a supergiant planet) -> Pandora (2098ms)\nWhat is the age of our solar system?\tthe landscape\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the landscape, looked like, another planet) -> the landscape (2099ms)\nWhat is the age of our solar system?\tLoading comments\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (Loading comments, looks like, a whole different planet) -> Loading comments (2097ms)\nWhat is the age of our solar system?\ta stock image\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (a stock image, look like, a moon or planet) -> a stock image (2094ms)\nWhat is the age of our solar system?\t20 May 2011\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (20 May 2011, Just looks like, another planet) -> 20 May 2011 (2099ms)\nWhat is the age of our solar system?\ta dark ring\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (a dark ring, looked like, the planet) -> a dark ring (2098ms)\nWhat is the age of our solar system?\tsemi-stereographic projection\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (semi-stereographic projection, looks like, a small planet) -> semi-stereographic projection (2098ms)\nWhat is the age of our solar system?\tThe city\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (The city, looks like, the Ice Planet Hoth) -> The city (2099ms)\nWhat is the age of our solar system?\tThe rocks and cliffs\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (The rocks and cliffs, look like, an alien planet) -> The rocks and cliffs (2097ms)\nWhat is the age of our solar system?\t12 semi-precious gemstones\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (12 semi-precious gemstones, look like, the planets) -> 12 semi-precious gemstones (2094ms)\nWhat is the age of our solar system?\tthe tundra\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the tundra, looked like, the planet) -> the tundra (2099ms)\nWhat is the age of our solar system?\ta red circle\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (a red circle, looks like, a red planet) -> a red circle (2099ms)\nWhat is the age of our solar system?\ta place\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (a place, looked like, another planet) -> a place (2098ms)\nWhat is the age of our solar system?\tcomments\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (comments, looks like, home planet chunter) -> comments (2099ms)\nWhat is the age of our solar system?\tThe semiprecious gemstones\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (The semiprecious gemstones, look like, the planets) -> The semiprecious gemstones (2099ms)\nWhat is the age of our solar system?\tthe pomelo\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the pomelo, looks like, a planet) -> the pomelo (2096ms)\nWhat is the age of our solar system?\tlittle more\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (little more, looked like, another planet) -> little more (2098ms)\nWhat is the age of our solar system?\tthe middle\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the middle, looked like, a star or planet) -> the middle (2099ms)\nWhat is the age of our solar system?\tan idea\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (an idea, has looked like on, the planet) -> an idea (2094ms)\nWhat is the age of our solar system?\torange jasper rounds\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (orange jasper rounds, looks like, the planet Jupiter) -> orange jasper rounds (2098ms)\nWhat is the age of our solar system?\tat least a place\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (at least a place, looks like, another planet) -> at least a place (2094ms)\nWhat is the age of our solar system?\tthe periods\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the periods, looked like, little ringed planets) -> the periods (2099ms)\nWhat is the age of our solar system?\tthe unique valleys\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the unique valleys, look like, another planet) -> the unique valleys (2099ms)\nWhat is the age of our solar system?\tthe land\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the land, looks like, another planet) -> the land (2099ms)\nWhat is the age of our solar system?\tHelen Bonham Carter\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (Helen Bonham Carter, look like in, Planet) -> Helen Bonham Carter (2097ms)\nWhat is the age of our solar system?\tCydonia\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (Cydonia, looks like, a Planet) -> Cydonia (2096ms)\nWhat is the age of our solar system?\tSteven Tyler\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (Steven Tyler, looks like, he is from another planet) -> Steven Tyler (2098ms)\nWhat is the age of our solar system?\tdeviantART Details Submitted\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (deviantART Details Submitted, Looks like, a planet) -> deviantART Details Submitted (2096ms)\nWhat is the age of our solar system?\tone boy\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (one boy, look like on, another planet) -> one boy (2099ms)\nWhat is the age of our solar system?\tsky\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (sky, looked like, white planets) -> sky (2099ms)\nWhat is the age of our solar system?\tthe coconut\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the coconut, looked like, a planet) -> the coconut (2097ms)\nWhat is the age of our solar system?\tthe horizon\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the horizon, look like, a planet) -> the horizon (2099ms)\nWhat is the age of our solar system?\tThe place\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (The place, looks like, a different planet) -> The place (2099ms)\nWhat is the age of our solar system?\ta lovely picture\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (a lovely picture, might look like on, that planet) -> a lovely picture (2097ms)\nWhat is the age of our solar system?\tthe eyes\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the eyes, look like, Planets) -> the eyes (2096ms)\nWhat is the age of our solar system?\tthe word\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the word, looks like, another planet) -> the word (2097ms)\nWhat is the age of our solar system?\tthe mouse\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the mouse, looks like, a cratered planet) -> the mouse (2096ms)\nWhat is the age of our solar system?\tthe goal\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the goal, might look like on, another planet) -> the goal (2098ms)\nWhat is the age of our solar system?\tdeviantART\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (deviantART, kinda looks like, planets) -> deviantART (2097ms)\nWhat is the age of our solar system?\tEleven more gemstone beads\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (Eleven more gemstone beads, actually look like, the Planets) -> Eleven more gemstone beads (2099ms)\nWhat is the age of our solar system?\tjohn\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (john, looks like, LittleBigPlanet) -> john (2097ms)\nWhat is the age of our solar system?\tthe symptoms and life situations\t-1.22222222222\tWhat is the age of our solar system? -> $x: ($x, look like, planet) -> (the symptoms and life situations, look like on, Planet Bipolar) -> the symptoms and life situations (2096ms)\nWhen was CNN's first broadcast?\tThe interview\t-1.333333333329\tWhen was CNN's first broadcast? -> $x: ($x, first broadcast, cnn) -> (The interview, was first broadcast on, CNN) -> The interview (511ms)\nWhen was CNN's first broadcast?\tSelma\t-1.333333333329\tWhen was CNN's first broadcast? -> $x: ($x, first broadcast, cnn) -> (Selma, was first broadcast globally on, CNN) -> Selma (511ms)\nWhat movies did Judi Dench play in?\tRodgers and Hart?s\t1.0000056338554941E-12\tWhat movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (Judi Dench, directed a production of, Rodgers and Hart?s) -> Rodgers and Hart?s (948ms)\nWhat movies did Judi Dench play in?\tLook Back in Anger\t1.0000056338554941E-12\tWhat movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (Judi Dench, Films directed, Look Back in Anger) -> Look Back in Anger (948ms)\nWhat movies did Judi Dench play in?\tThe Boys\t1.0000056338554941E-12\tWhat movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (1990 Judi Dench, directs, The Boys) -> The Boys (948ms)\nWhat movies did Judi Dench play in?\tCary Fukunaga\t1.0000056338554941E-12\tWhat movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (Judi Dench, is directed by, Cary Fukunaga) -> Cary Fukunaga (948ms)\nWhat movies did Judi Dench play in?\t2010-05-09\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Original air date, 2010-05-09) -> 2010-05-09 (1079ms)\nWhat movies did Judi Dench play in?\t2003-11-15\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Peter Kay, Charlotte Uhlenbroek, Will Young, Original air date, 2003-11-15) -> 2003-11-15 (948ms)\nWhat movies did Judi Dench play in?\tonly eight minutes\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, win oscar for, $x) -> (Dame Judi Dench, won an Oscar for, only eight minutes) -> only eight minutes (1079ms)\nWhat movies did Judi Dench play in?\t2005\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench : scenes from my life, Publication date, 2005) -> 2005 (949ms)\nWhat movies did Judi Dench play in?\t1934-12-09\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Date of birth, 1934-12-09) -> 1934-12-09 (948ms)\nWhat movies did Judi Dench play in?\t2012-10-26\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Daniel Craig, Judi Dench and Javier Bardem, Original air date, 2012-10-26) -> 2012-10-26 (1079ms)\nWhat movies did Judi Dench play in?\t1998-11-26\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Original air date, 1998-11-26) -> 1998-11-26 (1079ms)\nWhat movies did Judi Dench play in?\t1998\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench : with a crack in her voice : the biography, Publication date, 1998) -> 1998 (1079ms)\nWhat movies did Judi Dench play in?\t2009-12-18\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Michelle Rodriguez, Original air date, 2009-12-18) -> 2009-12-18 (949ms)\nWhat movies did Judi Dench play in?\t2002-03-09\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Rory Bremner, Judi Dench, Kevin Spacey, The Lighthouse Family, Original air date, 2002-03-09) -> 2002-03-09 (1091ms)\nWhat movies did Judi Dench play in?\t2012-02-10\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Dame Judi Dench, Dev Patel and Will Young, Original air date, 2012-02-10) -> 2012-02-10 (1079ms)\nWhat movies did Judi Dench play in?\t1995-10-29\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Dame Judi Dench, Original air date, 1995-10-29) -> 1995-10-29 (1079ms)\nWhat movies did Judi Dench play in?\t2013-03-01\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (James Franco, Mila Kunis, Jude Law, Judi Dench, Olly Murs, Original air date, 2013-03-01) -> 2013-03-01 (1091ms)\nWhat movies did Judi Dench play in?\t1978-10-18\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Special with Judi Dench, Leonard Sachs, Donald Sinden, Original air date, 1978-10-18) -> 1978-10-18 (1079ms)\nWhat movies did Judi Dench play in?\t2009-12-16\t-0.11111111111\tWhat movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Hugh Grant, Judi Dench, guest co-host Anderson Cooper, Original air date, 2009-12-16) -> 2009-12-16 (1079ms)\nWhat movies did Judi Dench play in?\tthe movie\t-0.222222222221\tWhat movies did Judi Dench play in? -> $x: (judi dench, play in, $x) -> (( Judi Dench, played her so tenderly in, the movie) -> the movie (1091ms)\nWhat is the oldest sports trophy?\tthe next best\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the next best, will play for, third place plate trophy) -> the next best (2116ms)\nWhat is the oldest sports trophy?\tCote d'Ivoire\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Cote d'Ivoire, will be playing for, the trophies and awards) -> Cote d'Ivoire (2116ms)\nWhat is the oldest sports trophy?\tThe victor\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The victor, plays for, the trophy) -> The victor (2115ms)\nWhat is the oldest sports trophy?\tthe young musician\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the young musician, started to play for, trophies) -> the young musician (2115ms)\nWhat is the oldest sports trophy?\tSlow Club 0\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Slow Club 0, plays, Trophy Room) -> Slow Club 0 (2117ms)\nWhat is the oldest sports trophy?\tThe remaining teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The remaining teams, play off for, the Amateur League Trophy) -> The remaining teams (2111ms)\nWhat is the oldest sports trophy?\tthe two teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two teams, played for, the KA Auty trophy) -> the two teams (2117ms)\nWhat is the oldest sports trophy?\tNewport\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Newport, play in, the FA Trophy final) -> Newport (2113ms)\nWhat is the oldest sports trophy?\tGoblin Spelunkers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Goblin Spelunkers, opted to play, Trophy Hunter) -> Goblin Spelunkers (2111ms)\nWhat is the oldest sports trophy?\tSand Grain Studios\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Sand Grain Studios, Game Versions Developed, Cabela's North American Trophy Bucks) -> Sand Grain Studios (2111ms)\nWhat is the oldest sports trophy?\tGanguly\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Ganguly, has played, two Ranji Trophy finals) -> Ganguly (2111ms)\nWhat is the oldest sports trophy?\tThe teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The teams, are playing for, the trophy) -> The teams (2117ms)\nWhat is the oldest sports trophy?\tJuniors\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Juniors, will play for, trophies) -> Juniors (2113ms)\nWhat is the oldest sports trophy?\tthe Steelers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Steelers, will play for, the NFL trophy) -> the Steelers (2110ms)\nWhat is the oldest sports trophy?\t3 players\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (3 players, had played, Ranji Trophy cricket) -> 3 players (2110ms)\nWhat is the oldest sports trophy?\tPujara\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Pujara, played, four Ranji Trophy) -> Pujara (2115ms)\nWhat is the oldest sports trophy?\tBadgers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Badgers, play, two trophy games) -> Badgers (2115ms)\nWhat is the oldest sports trophy?\tthe regular season\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the regular season, will play for, the final trophy) -> the regular season (2116ms)\nWhat is the oldest sports trophy?\tThe two teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The two teams, play for, the Wilford Moore Trophy) -> The two teams (2117ms)\nWhat is the oldest sports trophy?\tThe children\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The children, will play for, trophies) -> The children (2113ms)\nWhat is the oldest sports trophy?\t? Fort Peck\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (? Fort Peck, has developed into, a trophy walleye fishery) -> ? Fort Peck (2115ms)\nWhat is the oldest sports trophy?\tMuhammad Rizwan\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Muhammad Rizwan, played well in, Qaid e Azam trophy) -> Muhammad Rizwan (2117ms)\nWhat is the oldest sports trophy?\tthe best Jose\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the best Jose, has played since, his Hart Trophy) -> the best Jose (2114ms)\nWhat is the oldest sports trophy?\tIsrael\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Israel, began developing, the Trophy) -> Israel (2114ms)\nWhat is the oldest sports trophy?\t1946\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (1946, was played for, the Barclay Trophy) -> 1946 (2114ms)\nWhat is the oldest sports trophy?\tAn LXR affiliate\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (An LXR affiliate, developed, the trophy building) -> An LXR affiliate (2110ms)\nWhat is the oldest sports trophy?\tthe Sox and Cubs\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Sox and Cubs, are playing for, a trophy) -> the Sox and Cubs (1803ms)\nWhat is the oldest sports trophy?\tTerrelle Pryor\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Terrelle Pryor, played like, a Heisman Trophy candidate) -> Terrelle Pryor (2117ms)\nWhat is the oldest sports trophy?\tfour games\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (four games, play for, a trophy) -> four games (2116ms)\nWhat is the oldest sports trophy?\tVfL Gummersbach\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (VfL Gummersbach, will play for, the CL trophy) -> VfL Gummersbach (2110ms)\nWhat is the oldest sports trophy?\tEvery player\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Every player, plays for, trophies) -> Every player (2114ms)\nWhat is the oldest sports trophy?\tthe team\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the team, played in, the Berlusconi Trophy) -> the team (2110ms)\nWhat is the oldest sports trophy?\tthe boss\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the boss, play, their much-delayed FA Trophy clash) -> the boss (1836ms)\nWhat is the oldest sports trophy?\ta cricketer\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a cricketer, played, Ranji Trophy) -> a cricketer (1803ms)\nWhat is the oldest sports trophy?\tGodfrey Poku\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Godfrey Poku, played in, the Trophy) -> Godfrey Poku (2069ms)\nWhat is the oldest sports trophy?\tJoe Maddon\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Joe Maddon, play chess for, the trophy) -> Joe Maddon (2115ms)\nWhat is the oldest sports trophy?\tMurray\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Murray, might play his way into, a Heisman Trophy) -> Murray (2113ms)\nWhat is the oldest sports trophy?\tMilford Haven Golf Club\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Milford Haven Golf Club, are allowed to play for, the trophy) -> Milford Haven Golf Club (2069ms)\nWhat is the oldest sports trophy?\tActivision\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Activision, Game Versions Developed, Cabela's GrandSlam Hunting: 2004 Trophies) -> Activision (2110ms)\nWhat is the oldest sports trophy?\tMaple Leaf Gardens\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Maple Leaf Gardens, played host to, both trophy presentations) -> Maple Leaf Gardens (2110ms)\nWhat is the oldest sports trophy?\tCommunist officials\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Communist officials, developed their own case of, ?trophy mania) -> Communist officials (2114ms)\nWhat is the oldest sports trophy?\tPlayers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Players, will be playing with, trophies) -> Players (2111ms)\nWhat is the oldest sports trophy?\ta pro-style offense\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, heisman trophy) -> (a pro-style offense, helped develop, four Heisman Trophy winners) -> a pro-style offense (2116ms)\nWhat is the oldest sports trophy?\tNot everyone\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Not everyone, to play for, the big trophy) -> Not everyone (2069ms)\nWhat is the oldest sports trophy?\tQB Russell Wilson\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, heisman) -> (QB Russell Wilson, can make a play for, the Heisman) -> QB Russell Wilson (2111ms)\nWhat is the oldest sports trophy?\tLennie Moore\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Lennie Moore, Game Versions Developed, Rocky Mountain Trophy Hunter) -> Lennie Moore (2069ms)\nWhat is the oldest sports trophy?\tSingapore\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Singapore, played in, the first ACC Trophy) -> Singapore (2111ms)\nWhat is the oldest sports trophy?\tSunstorm Interactive\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Sunstorm Interactive, Games Developed, Rocky Mountain Trophy Hunter) -> Sunstorm Interactive (2117ms)\nWhat is the oldest sports trophy?\tmore details\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (more details, played further roles beyond, trophies) -> more details (2110ms)\nWhat is the oldest sports trophy?\tthe teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the teams, play tonsil hockey with, the trophy) -> the teams (2117ms)\nWhat is the oldest sports trophy?\tKyle Orton\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Kyle Orton, made a strong play for, the Heisman) -> Kyle Orton (1836ms)\nWhat is the oldest sports trophy?\tPolyphony Digital\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Polyphony Digital, Game Versions Developed, Tourist Trophy) -> Polyphony Digital (2115ms)\nWhat is the oldest sports trophy?\tBugbear Entertainment\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Bugbear Entertainment, Game Versions Developed, Rally Trophy) -> Bugbear Entertainment (2116ms)\nWhat is the oldest sports trophy?\tKeith\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Keith, played like, a Norris Trophy winner) -> Keith (2113ms)\nWhat is the oldest sports trophy?\tNeko Entertainment\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Neko Entertainment, Game Versions Developed, Mouse Trophy) -> Neko Entertainment (2114ms)\nWhat is the oldest sports trophy?\tmore than 250 golfers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (more than 250 golfers, play for, the Eden Trophy) -> more than 250 golfers (2116ms)\nWhat is the oldest sports trophy?\t20\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (20, played outstandingly at, the Samsung Champions Trophy) -> 20 (2117ms)\nWhat is the oldest sports trophy?\tMcCoy\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, heisman) -> (McCoy, play well?, Heisman voters) -> McCoy (2110ms)\nWhat is the oldest sports trophy?\tthe Earth\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Earth, play, a major trophy) -> the Earth (2113ms)\nWhat is the oldest sports trophy?\tEverybody\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Everybody, plays football to, win medals and trophies) -> Everybody (2114ms)\nWhat is the oldest sports trophy?\tMilan , Inter and Juve\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Milan , Inter and Juve, are playing, the TIM Trophy) -> Milan , Inter and Juve (2116ms)\nWhat is the oldest sports trophy?\tJanuary Zagrab\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (January Zagrab, plays host to, the Snow queen trophy) -> January Zagrab (2116ms)\nWhat is the oldest sports trophy?\tSimon\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Simon, played for, a trophy) -> Simon (1803ms)\nWhat is the oldest sports trophy?\tthe field\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the field, will be playing for, the ?Dave Sievwright Trophy?) -> the field (1836ms)\nWhat is the oldest sports trophy?\tTJ\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, heisman) -> (TJ, was playing on, Heisman level) -> TJ (2113ms)\nWhat is the oldest sports trophy?\ta high school team\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, heisman trophy) -> (a high school team, plays like, a Heisman Trophy winner) -> a high school team (2117ms)\nWhat is the oldest sports trophy?\tWilkinson Blades\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Wilkinson Blades, also play at, Trophy?s 3pm) -> Wilkinson Blades (2115ms)\nWhat is the oldest sports trophy?\tthe two\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two, have played each other for, the trophy) -> the two (2110ms)\nWhat is the oldest sports trophy?\tHenson\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Henson, plays, Heisman Trophy winner Jim Brown) -> Henson (2113ms)\nWhat is the oldest sports trophy?\tThe top four players\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The top four players, played for, a tournament trophy) -> The top four players (2117ms)\nWhat is the oldest sports trophy?\tThe Idol Toss\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The Idol Toss, plays a bit like, the Trophy Lottery) -> The Idol Toss (2117ms)\nWhat is the oldest sports trophy?\tthe advice\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the advice, play this game with, the more challenging trophies) -> the advice (2069ms)\nWhat is the oldest sports trophy?\tThe actress\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The actress, plays, a trophy wife) -> The actress (2110ms)\nWhat is the oldest sports trophy?\tbowlers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (bowlers, play for, trophies) -> bowlers (2114ms)\nWhat is the oldest sports trophy?\tcricketers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (cricketers, first played, Ranji Trophy) -> cricketers (1837ms)\nWhat is the oldest sports trophy?\tthe two top teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two top teams, play off for, the trophy) -> the two top teams (2116ms)\nWhat is the oldest sports trophy?\tteams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (teams, play each other for, the Championship trophy) -> teams (2114ms)\nWhat is the oldest sports trophy?\tthe Council\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Council, played for, this prestigious trophy) -> the Council (2110ms)\nWhat is the oldest sports trophy?\t250 golfers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (250 golfers, play for, the Eden trophy) -> 250 golfers (2111ms)\nWhat is the oldest sports trophy?\t1.5 Determine the teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (1.5 Determine the teams, shall play on, trophy weekends) -> 1.5 Determine the teams (2114ms)\nWhat is the oldest sports trophy?\tthe Rafael\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (the Rafael, developed, Trophy APS.) -> the Rafael (2069ms)\nWhat is the oldest sports trophy?\tKrisalis Software\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Krisalis Software, Game Versions Developed, World Trophy Soccer) -> Krisalis Software (2111ms)\nWhat is the oldest sports trophy?\tChippenham\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Chippenham, are now playing in, the Trophy) -> Chippenham (1803ms)\nWhat is the oldest sports trophy?\t2 players\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (2 players, to play, Trophy) -> 2 players (2111ms)\nWhat is the oldest sports trophy?\tMagic Wand Productions\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Magic Wand Productions, Games Developed, Cabela's Big Game Hunter 2006 Trophy Season) -> Magic Wand Productions (2117ms)\nWhat is the oldest sports trophy?\tAppaloosa Interactive\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Appaloosa Interactive, Game Versions Developed, Rick Davis's World Trophy Soccer) -> Appaloosa Interactive (2116ms)\nWhat is the oldest sports trophy?\tthe last salsa\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the last salsa, was played to win, the much coveted trophy) -> the last salsa (1837ms)\nWhat is the oldest sports trophy?\ta break\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a break, played in, the Deodhar Trophy) -> a break (1803ms)\nWhat is the oldest sports trophy?\tXV\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (XV, played for, four trophies) -> XV (2110ms)\nWhat is the oldest sports trophy?\ta few high-profile athletes\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a few high-profile athletes, play for, our trophies) -> a few high-profile athletes (2069ms)\nWhat is the oldest sports trophy?\tSydney and Essendon\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Sydney and Essendon, will play for, the Marn Grook trophy) -> Sydney and Essendon (2117ms)\nWhat is the oldest sports trophy?\tdivision 1 teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (division 1 teams, would play for, a trophy) -> division 1 teams (1802ms)\nWhat is the oldest sports trophy?\t2008\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (2008, will be play for, the Lombardi Trophy) -> 2008 (2113ms)\nWhat is the oldest sports trophy?\tthe two NFL conferences\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two NFL conferences, play for, the Vince Lombardi Trophy) -> the two NFL conferences (2115ms)\nWhat is the oldest sports trophy?\tGray\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Gray, played, his trophy wife) -> Gray (2116ms)\nWhat is the oldest sports trophy?\ta club\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a club, should be playing for, trophies) -> a club (2114ms)\nWhat is the oldest sports trophy?\ta game\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a game, played for, a trophy) -> a game (2116ms)\nWhat is the oldest sports trophy?\tKylotonn\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Kylotonn, Game Versions Developed, Hunter's Trophy) -> Kylotonn (2115ms)\nWhat is the oldest sports trophy?\tMcEntire\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (McEntire, will play host at, the annual trophy show) -> McEntire (1803ms)\nWhat is the oldest sports trophy?\tBASC\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (BASC, played a limited role in, trophy measurement) -> BASC (2115ms)\nWhat is the oldest sports trophy?\tCoolidge\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Coolidge, plays, a gold-digging trophy wife) -> Coolidge (2111ms)\nWhat is the oldest sports trophy?\tLake Fork\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Lake Fork, has developed into, the Premier Trophy Bass Lake) -> Lake Fork (2110ms)\nWhat is the oldest sports trophy?\tlures\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (lures, have been developed for, Hunting Trophy Deer) -> lures (2117ms)\nWhat is the oldest sports trophy?\tMachineWorks Northwest\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (MachineWorks Northwest, Game Versions Developed, 3D Hunting Trophy Whitetail Championship 2009) -> MachineWorks Northwest (2110ms)\nWhat is the oldest sports trophy?\tMr. Wirth\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Mr. Wirth, developed, numerous trophy properties) -> Mr. Wirth (2114ms)\nWhat is the oldest sports trophy?\tFUN Labs\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (FUN Labs, Game Versions Developed, Cabela's Trophy Bucks) -> FUN Labs (2115ms)\nWhat is the oldest sports trophy?\tRailways\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Railways, have played, their Ranji Trophy) -> Railways (1803ms)\nWhat is the oldest sports trophy?\tthe Big 10 feature\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Big 10 feature, are played for, trophies) -> the Big 10 feature (2113ms)\nWhat is the oldest sports trophy?\tThe golfers\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The golfers, can play for, trophies) -> The golfers (2116ms)\nWhat is the oldest sports trophy?\teight teams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (eight teams, will play for, the trophy) -> eight teams (2116ms)\nWhat is the oldest sports trophy?\tBergkamp?s input\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Bergkamp?s input, played a strong part in winning, trophies) -> Bergkamp?s input (2114ms)\nWhat is the oldest sports trophy?\tfootball and Bangladesh\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (football and Bangladesh, were only playing, ICC Trophy) -> football and Bangladesh (2113ms)\nWhat is the oldest sports trophy?\tRobert Griffin\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Robert Griffin, is still playing for, the Heisman) -> Robert Griffin (2116ms)\nWhat is the oldest sports trophy?\tTeams\t-0.555555555564\tWhat is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Teams, play for, trophies) -> Teams (2113ms)\nWho are professional female boxers?\tTropical Storm Risk\t-0.11111111112399996\tWho are professional female boxers? -> $x: ($x, outlook, hurricane) -> (Tropical Storm Risk, raised its outlook for, hurricane activity) -> Tropical Storm Risk (666ms)\nWho are professional female boxers?\tRasmussen\t-0.11111111112600003\tWho are professional female boxers? -> $x: ($x, outlook, boxer) -> (Rasmussen, had a pessimistic outlook for, Boxer) -> Rasmussen (666ms)\nWho are professional female boxers?\tthe Duluth\t-0.7777777777720001\tWho are professional female boxers? -> $x: ($x, boxer, professional) -> (the Duluth, boxer, his first professional loss) -> the Duluth (666ms)\nWho are professional female boxers?\tLightweight\t-0.7777777777720001\tWho are professional female boxers? -> $x: ($x, boxer, singer) -> (Lightweight, Boxers rated at this weight, Al Singer) -> Lightweight (666ms)\nWho are professional female boxers?\tIran Barkley\t-1.111111111105\tWho are professional female boxers? -> $x: (professional, boxer, $x) -> (American Professional, boxer, Iran Barkley) -> Iran Barkley (974ms)\nWhat are geckos?\tstandards\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (standards, support in, Gecko) -> standards (2949ms)\nWhat are geckos?\tScientists\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Scientists, are also interested in, the gecko) -> Scientists (1805ms)\nWhat are geckos?\tscientists\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (scientists, was n?t just interested in, geckos? feet) -> scientists (1609ms)\nWhat are geckos?\t2238 Harold\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (2238 Harold, arrives in, Gecko) -> 2238 Harold (3915ms)\nWhat are geckos?\tCSS ] Content\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (CSS ] Content, differs in, Netscape Gecko browsers) -> CSS ] Content (2911ms)\nWhat are geckos?\tthe sine-scroller\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the sine-scroller, is so slow in, Gecko) -> the sine-scroller (1967ms)\nWhat are geckos?\tDOMContentLoaded event\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (DOMContentLoaded event, is in, Gecko) -> DOMContentLoaded event (1609ms)\nWhat are geckos?\tthe audience\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the audience, is settling in to watch, Gordon Gecko) -> the audience (4040ms)\nWhat are geckos?\tthe build strategy\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the build strategy, has changed in, gecko 1.9) -> the build strategy (1609ms)\nWhat are geckos?\tHarold\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Harold, arrives in, Gecko) -> Harold (3916ms)\nWhat are geckos?\tSVG images\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (SVG images, is extremely restricted in, Gecko) -> SVG images (3045ms)\nWhat are geckos?\trunny feces\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (runny feces, is very common in, crested geckos) -> runny feces (2911ms)\nWhat are geckos?\tWind and Ground\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Wind and Ground, are characters in, Gecko?s landscape) -> Wind and Ground (1609ms)\nWhat are geckos?\tLAYER\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (LAYER, can be replaced in, Mozilla Gecko browsers) -> LAYER (3916ms)\nWhat are geckos?\tThe secret\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The secret, lies in, the gecko) -> The secret (3916ms)\nWhat are geckos?\tamber\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (amber, found in, many modern geckos) -> amber (3815ms)\nWhat are geckos?\tResearchers\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Researchers, have long been interested in, geckos) -> Researchers (1968ms)\nWhat are geckos?\tWikiwyg\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Wikiwyg, only works in, Gecko browsers) -> Wikiwyg (1968ms)\nWhat are geckos?\tserveral problems\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (serveral problems, found in, Gecko rendering engine rv) -> serveral problems (4039ms)\nWhat are geckos?\tSpeculative fiction\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Speculative fiction, Books In This Genre, Geckos) -> Speculative fiction (1608ms)\nWhat are geckos?\tthe doctype name\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the doctype name, is an interned string in, Gecko) -> the doctype name (1967ms)\nWhat are geckos?\tWorks\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Works, presented in, the Gecko) -> Works (4100ms)\nWhat are geckos?\tbugs\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (bugs, were fixed in, Gecko 1.8) -> bugs (3816ms)\nWhat are geckos?\tLuke\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Luke, got lost in, Gecko Cavern) -> Luke (4040ms)\nWhat are geckos?\tLayne and Heather\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Layne and Heather, brought in, their gargoyle geckos) -> Layne and Heather (1968ms)\nWhat are geckos?\tnanosized setae\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (nanosized setae, found in, gecko?s feet) -> nanosized setae (1806ms)\nWhat are geckos?\timage indicators\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (image indicators, are slightly sketchy in, Mozilla Gecko) -> image indicators (2949ms)\nWhat are geckos?\tComputer hardware\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Computer hardware, Organizations in this industry, Gecko Gear) -> Computer hardware (3045ms)\nWhat are geckos?\tMathML\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (MathML, works fine in, Gecko) -> MathML (4100ms)\nWhat are geckos?\tthe existing android\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the existing android, added in, the Gecko specific drivers) -> the existing android (2949ms)\nWhat are geckos?\tthe part\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the part, installed back in, Gecko) -> the part (3045ms)\nWhat are geckos?\tblocks\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (blocks, does work in, Gecko) -> blocks (3045ms)\nWhat are geckos?\tfeatures\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (features, were introduced in, Gecko 1.7) -> features (4039ms)\nWhat are geckos?\tFiction\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Fiction, Books In This Genre, Meet The Gecko) -> Fiction (2949ms)\nWhat are geckos?\tI?ve\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (I?ve, also spotted this problem in, old Gecko) -> I?ve (4040ms)\nWhat are geckos?\tthe rendering code\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the rendering code, is injected in to, the Gecko application) -> the rendering code (3045ms)\nWhat are geckos?\tnumerous hairlike setae\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (numerous hairlike setae, found in, many modern geckos) -> numerous hairlike setae (3815ms)\nWhat are geckos?\tThe personal bar\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The personal bar, is only found in, Gecko browsers) -> The personal bar (1806ms)\nWhat are geckos?\tan dom exception\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (an dom exception, would be thrown in, Gecko) -> an dom exception (2911ms)\nWhat are geckos?\tMidrange\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Midrange, Accommodation in this range, Green Gecko) -> Midrange (3916ms)\nWhat are geckos?\tan SVG image\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (an SVG image, scale properly in, Gecko browsers) -> an SVG image (1968ms)\nWhat are geckos?\tJavaScript 1.8.2\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (JavaScript 1.8.2, is now in, Gecko) -> JavaScript 1.8.2 (3045ms)\nWhat are geckos?\tThe widest CSS3-implementations\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The widest CSS3-implementations, are in, Mozilla Gecko browsers) -> The widest CSS3-implementations (1806ms)\nWhat are geckos?\tAdrian\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Adrian, is taken in by, the Gecko family) -> Adrian (4101ms)\nWhat are geckos?\tFor Dummies\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (For Dummies, Works in this series, Leopard Geckos For Dummies) -> For Dummies (4100ms)\nWhat are geckos?\tthe Chosen One\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the Chosen One, arrives in, Gecko) -> the Chosen One (2949ms)\nWhat are geckos?\tthe DOM\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the DOM, implemented in, Gecko-based browsers) -> the DOM (3816ms)\nWhat are geckos?\tthe top two runners-up\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the top two runners-up, will be showcased in, GuideGecko) -> the top two runners-up (1806ms)\nWhat are geckos?\tmore bugs\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (more bugs, got fixed?in shared, Gecko components) -> more bugs (1805ms)\nWhat are geckos?\tLim\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Lim, takes second place in, Guide Gecko contest 2010) -> Lim (3916ms)\nWhat are geckos?\tan element\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (an element, could fail in, Gecko) -> an element (2949ms)\nWhat are geckos?\tBugs\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Bugs, found only in, Gecko based browsers) -> Bugs (2911ms)\nWhat are geckos?\tThe Breakfast\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The Breakfast, were sitting in with, Mondo Gecko) -> The Breakfast (4100ms)\nWhat are geckos?\tbackspace\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (backspace, was used in, Gecko) -> backspace (2911ms)\nWhat are geckos?\tOPTGROUP\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (OPTGROUP, is supported only in, Mozilla Gecko browsers) -> OPTGROUP (3815ms)\nWhat are geckos?\ta ContextMenu instance\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (a ContextMenu instance, is made visible In, Gecko) -> a ContextMenu instance (3915ms)\nWhat are geckos?\tthe actual bug\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the actual bug, is in, Gecko) -> the actual bug (1805ms)\nWhat are geckos?\tthe Pokemon\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the Pokemon, put in, the GEICO Gecko) -> the Pokemon (4040ms)\nWhat are geckos?\tthe thermoregulartory behavior\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the thermoregulartory behavior, observed in, field-active geckos) -> the thermoregulartory behavior (4040ms)\nWhat are geckos?\tThe incident\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The incident, occurred in between, Gecko Road) -> The incident (2911ms)\nWhat are geckos?\tThe forum topic code\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The forum topic code, works in, Gecko) -> The forum topic code (3045ms)\nWhat are geckos?\tSVG support\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (SVG support, is still nascent in, Gecko) -> SVG support (1608ms)\nWhat are geckos?\tThe hotels and accommodations\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The hotels and accommodations, cited in, GeckoGo) -> The hotels and accommodations (3815ms)\nWhat are geckos?\tGex\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Gex, Games In Series, Gex: Enter the Gecko) -> Gex (2911ms)\nWhat are geckos?\tLenny\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Lenny, is a Ghoul living in, Gecko city) -> Lenny (4039ms)\nWhat are geckos?\tChildren's literature\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Children's literature, Books In This Genre, Meet The Gecko) -> Children's literature (3916ms)\nWhat are geckos?\tGowan\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Gowan, are partners in, five Gecko?s Grill & Pub restaurants) -> Gowan (1968ms)\nWhat are geckos?\tthe mouse\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the mouse, co-ordinates in, Gecko) -> the mouse (3816ms)\nWhat are geckos?\tcorrect comments\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (correct comments, is crucial in, Gecko) -> correct comments (1968ms)\nWhat are geckos?\tthe yellow pass key\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the yellow pass key, opens the doors in, the Gecko Power Plant) -> the yellow pass key (2949ms)\nWhat are geckos?\ta component\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (a component, can be used in, Gecko) -> a component (4101ms)\nWhat are geckos?\tThe caret\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The caret, sometimes gets stuck in, Gecko) -> The caret (4100ms)\nWhat are geckos?\tthe leucistic\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (the leucistic, are all included in, leopard gecko variations) -> the leucistic (2911ms)\nWhat are geckos?\tThe PNG Drop Shadow method\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (The PNG Drop Shadow method, works in, Gecko browsers) -> The PNG Drop Shadow method (1608ms)\nWhat are geckos?\t10 %\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (10 %, are paid in, Golden Gecko Bonus Bucks) -> 10 % (1608ms)\nWhat are geckos?\tResponsible Tourism\t0.888888888899\tWhat are geckos? -> $x: ($x, in, gecko) -> (Responsible Tourism, is a key philosophy in, all Gecko) -> Responsible Tourism (3045ms)\nWhat are geckos?\tAdobe Rent\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko Trail Adventures, does work very closely with, Adobe Rent) -> Adobe Rent (4141ms)\nWhat are geckos?\tGeico\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the Gecko, do for, Geico) -> Geico (4187ms)\nWhat are geckos?\tplace\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Groovy Gecko, did, place) -> place (4187ms)\nWhat are geckos?\tthe last few months\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (WebKit and Gecko, have both done this in, the last few months) -> the last few months (4141ms)\nWhat are geckos?\tthe inline-block display property\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t handle, the inline-block display property) -> the inline-block display property (4167ms)\nWhat are geckos?\tGex 3\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Deep Cover Gecko, do, Gex 3) -> Gex 3 (4167ms)\nWhat are geckos?\tUV light\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need, UV light) -> UV light (4141ms)\nWhat are geckos?\tteeth\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do have, teeth) -> teeth (4141ms)\nWhat are geckos?\t10 gallon\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, also do reasonably well contained by, 10 gallon) -> 10 gallon (4167ms)\nWhat are geckos?\talready\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko, does, already) -> already (4177ms)\nWhat are geckos?\ta lot\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko, does, a lot) -> a lot (4177ms)\nWhat are geckos?\ta solitary pet\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (The Pictus Gecko, also does well as, a solitary pet) -> a solitary pet (4177ms)\nWhat are geckos?\tn?t support counters\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko, did, n?t support counters) -> n?t support counters (4141ms)\nWhat are geckos?\tXML\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Netscape Gecko, do support, XML) -> XML (4177ms)\nWhat are geckos?\ta day-night light cycle\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the Crested Gecko, does need, a day-night light cycle) -> a day-night light cycle (4177ms)\nWhat are geckos?\tThe Happy Face 091\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Geck-o, Do, The Happy Face 091) -> The Happy Face 091 (4187ms)\nWhat are geckos?\ta gecko climb\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko glue, does, a gecko climb) -> a gecko climb (4177ms)\nWhat are geckos?\tthe temperature\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (The gecko can?t, do much to control, the temperature) -> the temperature (4187ms)\nWhat are geckos?\tan app store\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Boot 2 Gecko, does have, an app store) -> an app store (4167ms)\nWhat are geckos?\tfine\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the gecko, doing, fine) -> fine (4167ms)\nWhat are geckos?\ta great job\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko Adventures, did, a great job) -> a great job (4177ms)\nWhat are geckos?\ta variety\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Flying Geckos, do well with, a variety) -> a variety (4167ms)\nWhat are geckos?\thelping firefighters save lives\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (a gecko, to do with, helping firefighters save lives) -> helping firefighters save lives (4177ms)\nWhat are geckos?\tLiz-ard Minnelli\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (A cheeky gecko, does an impression of, Liz-ard Minnelli) -> Liz-ard Minnelli (4177ms)\nWhat are geckos?\tthe ADD show\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Topo and Gecko, do, the ADD show) -> the ADD show (4167ms)\nWhat are geckos?\ta greater risk\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (a leopard gecko, does is taking, a greater risk) -> a greater risk (4177ms)\nWhat are geckos?\tTurvy\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (A funny little cute gecko 5, Does, Turvy) -> Turvy (4166ms)\nWhat are geckos?\tTexas\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the Gecko, doing the two-step in, Texas) -> Texas (4141ms)\nWhat are geckos?\tawesome pets\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Geckos, do make, awesome pets) -> awesome pets (4177ms)\nWhat are geckos?\tthe robot\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the gecko, do, the robot) -> the robot (4177ms)\nWhat are geckos?\tMary Richardson\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (The gecko piece, was done by, Mary Richardson) -> Mary Richardson (4177ms)\nWhat are geckos?\tavoid calcium deficiency\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need UV light to, avoid calcium deficiency) -> avoid calcium deficiency (4167ms)\nWhat are geckos?\tfirefighters save lives\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (a gecko, to do with helping, firefighters save lives) -> firefighters save lives (4177ms)\nWhat are geckos?\tremote administration and management\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Blue Gecko, does, remote administration and management) -> remote administration and management (4177ms)\nWhat are geckos?\tchildren\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the Crested Gecko, do well around, children) -> children (4141ms)\nWhat are geckos?\tmultiple\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (> Gecko, does support, multiple) -> multiple (4141ms)\nWhat are geckos?\tbark\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (geckos, really do, bark) -> bark (4187ms)\nWhat are geckos?\twater\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (gecko adhesion, does n?t work well in, water) -> water (4167ms)\nWhat are geckos?\tmuch sophistication and support\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t hold as, much sophistication and support) -> much sophistication and support (4167ms)\nWhat are geckos?\teyelids\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do have, eyelids) -> eyelids (4177ms)\nWhat are geckos?\tthe two-step\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the Gecko, doing, the two-step) -> the two-step (4167ms)\nWhat are geckos?\twonders\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (The new Gecko rendering engine, is doing, wonders) -> wonders (4141ms)\nWhat are geckos?\tmore than 8? reveals\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t work with, more than 8? reveals) -> more than 8? reveals (4141ms)\nWhat are geckos?\ttraditional 3-D games\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the Gecko, does, traditional 3-D games) -> traditional 3-D games (4167ms)\nWhat are geckos?\tan impression\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (A cheeky gecko, does, an impression) -> an impression (4187ms)\nWhat are geckos?\tthe hyphens\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t treat, the hyphens) -> the hyphens (4167ms)\nWhat are geckos?\tboys\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Chet Gecko books, do really well (especially with, boys) -> boys (4167ms)\nWhat are geckos?\tprime time\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t seem quite ready for, prime time) -> prime time (4187ms)\nWhat are geckos?\tcalcium deficiency\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need UV light to avoid, calcium deficiency) -> calcium deficiency (4167ms)\nWhat are geckos?\tawesome\t0.777777777788\tWhat are geckos? -> $x: (gecko, do, $x) -> (the geckos, are doing, awesome) -> awesome (4141ms)\nWhat are geckos?\tApple\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (Apple, does n?t need, Gecko?s multi-platform support) -> Apple (4244ms)\nWhat are geckos?\texcellence\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (excellence, produces, high quality leopard geckos) -> excellence (4197ms)\nWhat are geckos?\tNVDA\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (NVDA, far does have support for, Gecko) -> NVDA (4187ms)\nWhat are geckos?\tmplayerplug-in\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (gecko-mediaplayer, is a replacement for, mplayerplug-in) -> mplayerplug-in (4244ms)\nWhat are geckos?\tprinting and print preview\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, was for, printing and print preview) -> printing and print preview (4235ms)\nWhat are geckos?\ta 7-year kid\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (a gecko, be a suitable pet for, a 7-year kid) -> a 7-year kid (4225ms)\nWhat are geckos?\ta Tremper Enigma\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (a Tremper Enigma, produced by, A&M Geckos) -> a Tremper Enigma (4235ms)\nWhat are geckos?\tNS5\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (NS5, does indeed represent, Gecko/Moz) -> NS5 (4206ms)\nWhat are geckos?\tpickles\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (pickles, have to do with, Gecko Hospitality) -> pickles (4197ms)\nWhat are geckos?\tbeginners\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is good for, beginners) -> beginners (4235ms)\nWhat are geckos?\tthe day\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (GeckoSystems, is well prepared for, the day) -> the day (4225ms)\nWhat are geckos?\tthe thousand other kids\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (your Gecko, is also used for, the thousand other kids) -> the thousand other kids (4216ms)\nWhat are geckos?\tsecurity reasons\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, must be excluded for, security reasons) -> security reasons (4216ms)\nWhat are geckos?\tWindows\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Tool, is for, Windows) -> Windows (4252ms)\nWhat are geckos?\tShiva Chandra\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (Shiva Chandra, Tracks produced, Gecko) -> Shiva Chandra (4206ms)\nWhat are geckos?\tthe story\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (the story, did the idea for, the gecko private eye) -> the story (4197ms)\nWhat are geckos?\tgeneral development\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (the gecko rendering engine, is useful for, general development) -> general development (4216ms)\nWhat are geckos?\tthread work\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Dex, is also excellent for, thread work) -> thread work (4244ms)\nWhat are geckos?\tthe Miocene\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (the Miocene, did, the geckos) -> the Miocene (4225ms)\nWhat are geckos?\tbasic and\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (giant geckos, is a tough encounter for, basic and) -> basic and (4206ms)\nWhat are geckos?\tCarbon allotropes\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (Carbon allotropes, are used to produce, gecko tape) -> Carbon allotropes (4225ms)\nWhat are geckos?\tMobile devices\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, might be more appropriate for, Mobile devices) -> Mobile devices (4197ms)\nWhat are geckos?\tthe next time\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (the next time, do a search for, ?SAS Geckos?) -> the next time (4244ms)\nWhat are geckos?\tthe first time\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Maps, is publishing this information for, the first time) -> the first time (4225ms)\nWhat are geckos?\ta while\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (The geckos, had been out for, a while) -> a while (4253ms)\nWhat are geckos?\tsmartphones\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is built for, smartphones) -> smartphones (4235ms)\nWhat are geckos?\tthe viewport\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Mozilla Gecko browsers borders, can be set for, the viewport) -> the viewport (4225ms)\nWhat are geckos?\teach guest\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Villa, are tailored for, each guest) -> each guest (4216ms)\nWhat are geckos?\tthe browser\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is optimized for, the browser) -> the browser (4187ms)\nWhat are geckos?\tFirefox\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (Firefox, does this with, its gecko engine) -> Firefox (4225ms)\nWhat are geckos?\tan experienced , high energy\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, is looking for, an experienced , high energy) -> an experienced , high energy (4206ms)\nWhat are geckos?\tTRY IT TOOOOOO\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (TRY IT TOOOOOO, does, Gecko) -> TRY IT TOOOOOO (4225ms)\nWhat are geckos?\tspeed\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (this gecko, is built for, speed) -> speed (4235ms)\nWhat are geckos?\tThe basement\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (The basement, does contain, some golden geckos) -> The basement (4225ms)\nWhat are geckos?\ta toe hold\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (a toe hold, does, the Duvaucel?s gecko) -> a toe hold (4235ms)\nWhat are geckos?\tInfinitely Virtual\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Lisa Gecko, is a staff writer for, Infinitely Virtual) -> Infinitely Virtual (4244ms)\nWhat are geckos?\tjust\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (just, as has been done for, Gecko 1.8.0) -> just (4253ms)\nWhat are geckos?\tThe hard work\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (The hard work, here is actually done by, Gecko) -> The hard work (4244ms)\nWhat are geckos?\tnew building materials\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Synthetic Gecko, could also be used for, new building materials) -> new building materials (4253ms)\nWhat are geckos?\tmulticolumn layout\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko 1.8, is support for, multicolumn layout) -> multicolumn layout (4216ms)\nWhat are geckos?\tthe grid\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (the grid, are now doing well in, the Gecko grid) -> the grid (4225ms)\nWhat are geckos?\tstays\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Green Gecko, may be booked for, stays) -> stays (4226ms)\nWhat are geckos?\tthe alternative medicine trade\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (geckos, are collected for, the alternative medicine trade) -> the alternative medicine trade (4187ms)\nWhat are geckos?\tthe Champions launcher\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (gecko, are required for, the Champions launcher) -> the Champions launcher (4206ms)\nWhat are geckos?\tdesigner excellence\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Our geckos, are specially bred for, designer excellence) -> designer excellence (4216ms)\nWhat are geckos?\ta Tremper Albino Enigma\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (a Tremper Albino Enigma, produced by, A&M Geckos) -> a Tremper Albino Enigma (4244ms)\nWhat are geckos?\tThomas P. Heckmann\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (Thomas P. Heckmann, Tracks produced, Amphetamine (Gecko remix)) -> Thomas P. Heckmann (4225ms)\nWhat are geckos?\tMAC , Linux and Windows\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Tool, will be for, MAC , Linux and Windows) -> MAC , Linux and Windows (4206ms)\nWhat are geckos?\tthe web\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is a very powerful tool for making, the web) -> the web (4244ms)\nWhat are geckos?\tthe electronics\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (the electronics, are produced by, Gecko) -> the electronics (4216ms)\nWhat are geckos?\tadventure\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko?s, is the way to go for, adventure) -> adventure (4197ms)\nWhat are geckos?\ta healthy lifestyle\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Tokay gecko, is a very good herb for, a healthy lifestyle) -> a healthy lifestyle (4197ms)\nWhat are geckos?\tthe same price\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko devices, will be sold for, the same price) -> the same price (4225ms)\nWhat are geckos?\tme? ? Nobody\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (me? ? Nobody, does, geckos and cavemen) -> me? ? Nobody (4235ms)\nWhat are geckos?\tthe best reviews\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (the best reviews, has ever been done for, Gecko Trail Adventures) -> the best reviews (4206ms)\nWhat are geckos?\tbrown Treesnakes\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (House geckos, are frequent prey for, brown Treesnakes) -> brown Treesnakes (4253ms)\nWhat are geckos?\tmobile devices\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko?s performance, was deemed good enough for, mobile devices) -> mobile devices (4244ms)\nWhat are geckos?\tthe garage\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (the garage, DO about, a bathroom gecko) -> the garage (4225ms)\nWhat are geckos?\ta new style\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Fur, is our inaccurate definition for, a new style) -> a new style (4225ms)\nWhat are geckos?\tthe images\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (the images, does, Gecko) -> the images (4206ms)\nWhat are geckos?\trelease\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is scheduled for, release) -> release (4253ms)\nWhat are geckos?\tdinner\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, were out for, dinner) -> dinner (4216ms)\nWhat are geckos?\tevolution\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (evolution, produced, a gecko) -> evolution (4216ms)\nWhat are geckos?\tBeta testing\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Systems, is preparing for, Beta testing) -> Beta testing (4216ms)\nWhat are geckos?\tMozilla\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (Mozilla, did with, Gecko) -> Mozilla (4244ms)\nWhat are geckos?\tweb developers\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (the Gecko date stamp, is meaningful for, web developers) -> web developers (4206ms)\nWhat are geckos?\t162\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (The Geckos, were now 5 for, 162) -> 162 (4187ms)\nWhat are geckos?\tphysical science classrooms\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, is designed for, physical science classrooms) -> physical science classrooms (4206ms)\nWhat are geckos?\tEspiritu Santo\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (Espiritu Santo, has produced a new species of, gecko) -> Espiritu Santo (4244ms)\nWhat are geckos?\tPC CD-ROM\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, will also be available for, PC CD-ROM) -> PC CD-ROM (4253ms)\nWhat are geckos?\tadoption\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Geckos, are available for, adoption) -> adoption (4244ms)\nWhat are geckos?\tpublishing\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, was picked up for, publishing) -> publishing (4235ms)\nWhat are geckos?\tjust a shot\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (just a shot, i did of, a house gecko) -> just a shot (4187ms)\nWhat are geckos?\tnew options\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Trail Adventures, is always looking for, new options) -> new options (4216ms)\nWhat are geckos?\tthe decades\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Few geckos, have been observed for, the decades) -> the decades (4235ms)\nWhat are geckos?\t19 years\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Software, has been in business for, 19 years) -> 19 years (4216ms)\nWhat are geckos?\tbeat @\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (beat @, did, the Gecko job) -> beat @ (4235ms)\nWhat are geckos?\tmultithreading , many components\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is n?t built for, multithreading , many components) -> multithreading , many components (4197ms)\nWhat are geckos?\tDaniel\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (Daniel, has been able to do with, a customized gecko) -> Daniel (4244ms)\nWhat are geckos?\tan MSAA tree\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (an MSAA tree, produced from, a Mozilla Gecko window) -> an MSAA tree (4216ms)\nWhat are geckos?\tover one hundred years\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Crested geckos, to be extinct for, over one hundred years) -> over one hundred years (4216ms)\nWhat are geckos?\tFranchise Partners\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, is currently looking for, Franchise Partners) -> Franchise Partners (4206ms)\nWhat are geckos?\tQuestion\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (Question, does, the Gecko/Lizard) -> Question (4235ms)\nWhat are geckos?\tcoughs\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is also used for, coughs) -> coughs (4187ms)\nWhat are geckos?\tThe question\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (The question, does, the gecko use) -> The question (4244ms)\nWhat are geckos?\tJan D'Silva\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (Jan D'Silva, is doing wonderful stuff with, Go Go Gecko) -> Jan D'Silva (4187ms)\nWhat are geckos?\tparents\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (GECKO Productions, is looking for, parents) -> parents (4197ms)\nWhat are geckos?\ta feed\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (?The gecko, could have been looking for, a feed) -> a feed (4206ms)\nWhat are geckos?\tstepper motors\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (The Gecko Powered controllers, are either for, stepper motors) -> stepper motors (4244ms)\nWhat are geckos?\thours\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (pictus geckos, can be held for, hours) -> hours (4197ms)\nWhat are geckos?\tGecko glue\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (Gecko glue, does, a gecko climb) -> Gecko glue (4235ms)\nWhat are geckos?\ta number\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is also been picked for, a number) -> a number (4206ms)\nWhat are geckos?\tinteraction\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (GeckoChat?, is responsible for, interaction) -> interaction (4235ms)\nWhat are geckos?\tnew homes\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (our leopard gecko babies, are ready for, new homes) -> new homes (4216ms)\nWhat are geckos?\tsafari\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (safari, did n?t want to use, the gecko engine) -> safari (4216ms)\nWhat are geckos?\tblood\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, would be out for, blood) -> blood (4253ms)\nWhat are geckos?\tthe research campus\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is a first for, the research campus) -> the research campus (4197ms)\nWhat are geckos?\tJulia Marshall\t0.777777777787\tWhat are geckos? -> $x: ($x, do, gecko) -> (Julia Marshall, is doing with, Gecko Press) -> Julia Marshall (4206ms)\nWhat are geckos?\tNS4.x LAYERS\t0.777777777787\tWhat are geckos? -> $x: ($x, define, gecko) -> (NS4.x LAYERS, is defined for, MSIE/Gecko) -> NS4.x LAYERS (4197ms)\nWhat are geckos?\tprotection\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, is suitable for, protection) -> protection (4235ms)\nWhat are geckos?\tThe firm\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (The firm, produced, the Gecko ads) -> The firm (4244ms)\nWhat are geckos?\tGoogle Chrome\t0.777777777787\tWhat are geckos? -> $x: ($x, produce, gecko) -> (Google Chrome, produced, Gecko 2010-02-03T13 :50:19 phasefx) -> Google Chrome (4235ms)\nWhat are geckos?\ta relaxing holiday\t0.777777777787\tWhat are geckos? -> $x: (gecko, be for, $x) -> (Gecko Villa, is the perfect hideaway for, a relaxing holiday) -> a relaxing holiday (4187ms)\nWhat are geckos?\tnorthland green gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (northland green gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Northland%20green%20gecko) -> northland green gecko (4270ms)\nWhat are geckos?\tmarlborough green gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (marlborough green gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Marlborough%20green%20gecko) -> marlborough green gecko (4261ms)\nWhat are geckos?\tmorning\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (morning, have found, a gecko) -> morning (4270ms)\nWhat are geckos?\tThe Martin Agency\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (The Martin Agency, created, the Geico Insurance gecko) -> The Martin Agency (4270ms)\nWhat are geckos?\tthe grounds\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (the grounds, found, more geckos) -> the grounds (4261ms)\nWhat are geckos?\tthe peer-reviewed references\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (the peer-reviewed references, found via, Gecko) -> the peer-reviewed references (4278ms)\nWhat are geckos?\tthe U.S.\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (the U.S., found, geckos) -> the U.S. (4270ms)\nWhat are geckos?\tSeychelles giant day gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Seychelles giant day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Seychelles%20giant%20day%20gecko) -> Seychelles giant day gecko (4278ms)\nWhat are geckos?\ttiny little hairs\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (tiny little hairs, found on, geckos) -> tiny little hairs (4261ms)\nWhat are geckos?\tYellow-throated day gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Yellow-throated day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Yellow%2Dthroated%20day%20gecko) -> Yellow-throated day gecko (4261ms)\nWhat are geckos?\tGhouls\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Ghouls, can be found in, the town Gecko) -> Ghouls (4278ms)\nWhat are geckos?\tAldabra Island day gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Aldabra Island day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Aldabra%20Island%20day%20gecko) -> Aldabra Island day gecko (4278ms)\nWhat are geckos?\tatlas day gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (atlas day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Atlas%20Day%20Gecko) -> atlas day gecko (4253ms)\nWhat are geckos?\tOcelot Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Ocelot Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ocelot%20Gecko) -> Ocelot Gecko (4261ms)\nWhat are geckos?\tthe fine hairs\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (the fine hairs, found on, each gecko foot) -> the fine hairs (4270ms)\nWhat are geckos?\tEuropean Leaf-toed Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (European Leaf-toed Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/European%20Leaf%2Dtoed%20Gecko) -> European Leaf-toed Gecko (4287ms)\nWhat are geckos?\tFossils\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Fossils, have been found containing, geckos) -> Fossils (4279ms)\nWhat are geckos?\tYaval region\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Yaval region, has found species of, giant tree gecko) -> Yaval region (4278ms)\nWhat are geckos?\tStephen's Island Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Stephen's Island Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Stephen's%20Island%20gecko) -> Stephen's Island Gecko (4261ms)\nWhat are geckos?\tRough gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Rough gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rough%20gecko) -> Rough gecko (4287ms)\nWhat are geckos?\tauthor\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (author, created, Gordon Gecko?s wardrobe) -> author (4279ms)\nWhat are geckos?\tGod\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (God, created, the gecko) -> God (4270ms)\nWhat are geckos?\tKuroiwa's Ground Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Kuroiwa's Ground Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kuroiwa's%20Ground%20Gecko) -> Kuroiwa's Ground Gecko (4261ms)\nWhat are geckos?\tresearchers\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (researchers, have created a new family of, geckos) -> researchers (4261ms)\nWhat are geckos?\tJOHN HOCKENBERRY\t0.666666666677\tWhat are geckos? -> $x: ($x, happen to, gecko) -> (JOHN HOCKENBERRY, happened to, your little leaf-tailed gecko pal) -> JOHN HOCKENBERRY (4261ms)\nWhat are geckos?\tthe ad shop\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (the ad shop, has created, the Geico gecko) -> the ad shop (4278ms)\nWhat are geckos?\tBarking Gecko Theatre Company\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Barking Gecko Theatre Company, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Barking%20Gecko%20Theatre%20Company) -> Barking Gecko Theatre Company (4270ms)\nWhat are geckos?\tYou?d\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (You?d, rather find, two geckos fighting) -> You?d (4253ms)\nWhat are geckos?\tAfrican Fat-Tailed Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (African Fat-Tailed Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/African%20fat%2Dtailed%20gecko) -> African Fat-Tailed Gecko (4287ms)\nWhat are geckos?\teggs\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (eggs, found, a dead gecko) -> eggs (4253ms)\nWhat are geckos?\tBanded Toed Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Banded Toed Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Banded%20Toed%20Gecko) -> Banded Toed Gecko (4253ms)\nWhat are geckos?\tStupid Videos and pictures\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Stupid Videos and pictures, can be found at, Gecko Tales) -> Stupid Videos and pictures (4279ms)\nWhat are geckos?\tGEICO\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (GEICO, Find, the Gecko Sweepstakes Search) -> GEICO (4270ms)\nWhat are geckos?\tTokay gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Tokay gecko, found, a flying gecko) -> Tokay gecko (4278ms)\nWhat are geckos?\tthe answer\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (the answer, can be found at, Gecko?s) -> the answer (4270ms)\nWhat are geckos?\tThe World Wildlife Fund\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (The World Wildlife Fund, found, a previously unknown gecko) -> The World Wildlife Fund (4261ms)\nWhat are geckos?\tthe Linux plugin\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (the Linux plugin, is basically created to work with, Gecko...) -> the Linux plugin (4270ms)\nWhat are geckos?\tGiant Bronze Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Giant Bronze Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Giant%20Bronze%20Gecko) -> Giant Bronze Gecko (4253ms)\nWhat are geckos?\tSimon Fraser University\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (Simon Fraser University, created, this gecko-inspired tank) -> Simon Fraser University (4270ms)\nWhat are geckos?\tBlue-tailed Day Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Blue-tailed Day Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blue%2Dtailed%20day%20gecko) -> Blue-tailed Day Gecko (4261ms)\nWhat are geckos?\tgolden gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (golden gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Golden%20Gecko) -> golden gecko (4287ms)\nWhat are geckos?\tSouth Africa\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (South Africa, created by, Cape Geckos Username) -> South Africa (4278ms)\nWhat are geckos?\tGecko\t0.666666666677\tWhat are geckos? -> $x: ($x, create, gecko) -> (Gecko, was created by, Gecko Design) -> Gecko (4270ms)\nWhat are geckos?\t?Momma\t0.666666666677\tWhat are geckos? -> $x: ($x, happen to, gecko) -> (?Momma, happens to, Geckos) -> ?Momma (4278ms)\nWhat are geckos?\tFisher\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Fisher, found two of, the bumblebee geckos) -> Fisher (4253ms)\nWhat are geckos?\tAuckland green gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (Auckland green gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Auckland%20green%20gecko) -> Auckland green gecko (4279ms)\nWhat are geckos?\tthe same EVA\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (the same EVA, found on, the rubberised Gecko) -> the same EVA (4287ms)\nWhat are geckos?\tEast Canary Gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (East Canary Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/East%20Canary%20Gecko) -> East Canary Gecko (4287ms)\nWhat are geckos?\tthe cave\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (the cave, found, a gecko high) -> the cave (4270ms)\nWhat are geckos?\trobert merten's day gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (robert merten's day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Robert%20Mertens'%20day%20gecko) -> robert merten's day gecko (4253ms)\nWhat are geckos?\tgold striped gecko\t0.666666666677\tWhat are geckos? -> $x: ($x, found, gecko) -> (gold striped gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Gold%2Dstriped%20gecko) -> gold striped gecko (4253ms)\nWhat are geckos?\tcoloring\t0.666666666677\tWhat are geckos? -> $x: (gecko, have use of, $x) -> (* ObsidianGecko, has a beautiful use of, coloring) -> coloring (4270ms)\nWhat are geckos?\tTelcos\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (Telcos, can package, the Geckos) -> Telcos (4310ms)\nWhat are geckos?\tthe 'other creatures\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the 'other creatures, are, geckos) -> the 'other creatures (4376ms)\nWhat are geckos?\tThe display problem\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (The display problem, is due to, a Mozilla/Gecko) -> The display problem (4402ms)\nWhat are geckos?\tWebKit\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (WebKit, is further along than, Gecko) -> WebKit (4349ms)\nWhat are geckos?\tlength\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (The house gecko, is about three to five inches in, length) -> length (4349ms)\nWhat are geckos?\tthe car\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the car, is, Gecko) -> the car (4361ms)\nWhat are geckos?\ta few people\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a few people, appeared to be, gecko feet) -> a few people (4310ms)\nWhat are geckos?\tThe Gecko engine\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (The Gecko engine, has been updated to, Gecko rv) -> The Gecko engine (4371ms)\nWhat are geckos?\tone snail shell\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (one snail shell, appeared to be, gecko egg remnants) -> one snail shell (4394ms)\nWhat are geckos?\tAliya Sternstein\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (GeckoSystems, are excited about, Aliya Sternstein) -> Aliya Sternstein (4294ms)\nWhat are geckos?\tThe MIT2 chip\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The MIT2 chip, can only be used with, Gecko) -> The MIT2 chip (4385ms)\nWhat are geckos?\tHide boxes\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Hide boxes, are vital to, your gecko) -> Hide boxes (4366ms)\nWhat are geckos?\tthe tails\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (the tails, are a little long to be, a gecko) -> the tails (4385ms)\nWhat are geckos?\tThe plan\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (The plan, was to make like, this Gecko) -> The plan (4376ms)\nWhat are geckos?\tLysol\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (Lysol, can kill, a fragile gecko.) -> Lysol (4371ms)\nWhat are geckos?\tthe site\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (the site, is looking in, another Gecko-based browser e.g) -> the site (4333ms)\nWhat are geckos?\tthe rendering engine\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the rendering engine, is, Gecko) -> the rendering engine (4326ms)\nWhat are geckos?\tThe idea\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The idea, is to run, Gecko) -> The idea (4381ms)\nWhat are geckos?\tThe rather wriggly chest hair wig\t0.6666666666759999\tWhat are geckos? -> $x: ($x, consist of, gecko) -> (The rather wriggly chest hair wig, consisted of, 2 geckos) -> The rather wriggly chest hair wig (4349ms)\nWhat are geckos?\tattendants\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (attendants, can see, gecko night vision) -> attendants (4390ms)\nWhat are geckos?\tversion 8.0.3.3\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (version 8.0.3.3, is based to, Gecko version) -> version 8.0.3.3 (4381ms)\nWhat are geckos?\tsniffers\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (sniffers, should be looking for, Gecko) -> sniffers (4371ms)\nWhat are geckos?\tdesigners\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (designers, can directly access, the Gecko MCU?s LCD) -> designers (4294ms)\nWhat are geckos?\t8 inches\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (Crested Geckos, only get to be about, 8 inches) -> 8 inches (4349ms)\nWhat are geckos?\tCSS3 and HTML5\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (CSS3 and HTML5, will be added to, Gecko) -> CSS3 and HTML5 (4376ms)\nWhat are geckos?\tSupported browsers\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Supported browsers, are, Gecko) -> Supported browsers (4302ms)\nWhat are geckos?\tJan\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Jan, am hoping, gecko) -> Jan (4361ms)\nWhat are geckos?\tmining\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (mining, are home to, the Golden Gecko) -> mining (4340ms)\nWhat are geckos?\tGecko browsers\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Gecko browsers, are supposed to include, the ' Gecko ') -> Gecko browsers (4333ms)\nWhat are geckos?\tthe DOM Element object\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (the DOM Element object, was introduced in, Gecko 1.9.1) -> the DOM Element object (4385ms)\nWhat are geckos?\tthe swarmers\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the swarmers, are eaten by, geckos) -> the swarmers (4381ms)\nWhat are geckos?\ta new HTML 5 File API\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a new HTML 5 File API, has been added to, Gecko) -> a new HTML 5 File API (4376ms)\nWhat are geckos?\tModerate Charts\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Moderate Charts, are all courtesy of, Gecko) -> Moderate Charts (4385ms)\nWhat are geckos?\ta vendor\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a vendor, appeared to be freshly, dead geckos) -> a vendor (4356ms)\nWhat are geckos?\tNvu\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Nvu, is based on, Gecko) -> Nvu (4366ms)\nWhat are geckos?\tFirefox 2.0\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Firefox 2.0, will be basing on, Gecko) -> Firefox 2.0 (4385ms)\nWhat are geckos?\tthe Kiwi House visitors\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (the Kiwi House visitors, can see, bush geckoes) -> the Kiwi House visitors (4390ms)\nWhat are geckos?\tThe standard browser\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The standard browser, is based on, Gecko) -> The standard browser (4371ms)\nWhat are geckos?\tKonqueror\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Konqueror, is similar to, the Gecko rendering engine) -> Konqueror (4340ms)\nWhat are geckos?\ta 20-gallon plastic tank\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a 20-gallon plastic tank, is enough to keep, the leopard gecko) -> a 20-gallon plastic tank (4302ms)\nWhat are geckos?\tnavigator.productSub\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (navigator.productSub, is specific to, Gecko browsers) -> navigator.productSub (4333ms)\nWhat are geckos?\ttwenty gallons\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (twenty gallons, is better for up to, three geckos) -> twenty gallons (4390ms)\nWhat are geckos?\tLeopard geckos\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Leopard geckos, are connected to, various geckos) -> Leopard geckos (4406ms)\nWhat are geckos?\tThe most popular one\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The most popular one, is, Gecko) -> The most popular one (4406ms)\nWhat are geckos?\tCSS gradient syntax\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (CSS gradient syntax, is different in, Webkit and Gecko) -> CSS gradient syntax (4398ms)\nWhat are geckos?\tOpera\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Opera, seems to be a bit more popular than, Gecko-based browsers) -> Opera (4394ms)\nWhat are geckos?\tNeptune\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Neptune, would be better suited to, Gecko) -> Neptune (4318ms)\nWhat are geckos?\tdeleted mail\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (deleted mail, is either sent to, the gecko-trash folder) -> deleted mail (4356ms)\nWhat are geckos?\tWorms\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Worms, are fed to, a Tokay Gecko) -> Worms (4326ms)\nWhat are geckos?\tHuman beings\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (Human beings, can play, the piano and geckos) -> Human beings (4294ms)\nWhat are geckos?\tthinking Safari\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (thinking Safari, was actually, Gecko) -> thinking Safari (4340ms)\nWhat are geckos?\tAOL\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (AOL, is going to use, the Gecko rendering engine) -> AOL (4385ms)\nWhat are geckos?\tMultipart upload\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (Multipart upload, is only supported in, Gecko and WebKit) -> Multipart upload (4371ms)\nWhat are geckos?\tThe best option\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (The best option, was to befriend, my gecko) -> The best option (4349ms)\nWhat are geckos?\tItaewon\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Itaewon, is, Gecko) -> Itaewon (4366ms)\nWhat are geckos?\tsand\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (sand, can be harmful for, leopard gecko) -> sand (4385ms)\nWhat are geckos?\tlizards\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (lizards, can range from, the tiny Geckos of a couple inches) -> lizards (4326ms)\nWhat are geckos?\tmales\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (males, will need to be separated from, all other geckos) -> males (4381ms)\nWhat are geckos?\tthe decision\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (the decision, was made to develop, a Gecko Career Website) -> the decision (4361ms)\nWhat are geckos?\t6 inches\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (The gecko, was about, 6 inches) -> 6 inches (4398ms)\nWhat are geckos?\tthe crowd\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the crowd, be like, gecko) -> the crowd (4326ms)\nWhat are geckos?\tKompoZer\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (KompoZer, is based on, Gecko) -> KompoZer (4406ms)\nWhat are geckos?\tclaws\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (claws, appeared to be, a giant gecko) -> claws (4361ms)\nWhat are geckos?\treal eyelids\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (real eyelids, is extremely uncommon to, most gecko species) -> real eyelids (4326ms)\nWhat are geckos?\tEven my 3yr old\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Even my 3yr old, is n?t drawn to, the gecko) -> Even my 3yr old (4394ms)\nWhat are geckos?\tThe completely open-source OS\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (The completely open-source OS, is to be called, Boot 2 Gecko) -> The completely open-source OS (4326ms)\nWhat are geckos?\ttables\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (tables, is now working on, Gecko) -> tables (4402ms)\nWhat are geckos?\tthe live plants\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (the live plants, are important to, a Day Gecko) -> the live plants (4366ms)\nWhat are geckos?\tEpiphany\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Epiphany, is switching to Webkit from, Gecko) -> Epiphany (4385ms)\nWhat are geckos?\tthe Java side\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (the Java side, can be seen in, GeckoSurfaceView .java) -> the Java side (4402ms)\nWhat are geckos?\tFinally the above implementation\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Finally the above implementation, is for, Gecko) -> Finally the above implementation (4402ms)\nWhat are geckos?\tflies\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (flies, were concentrated precariously close to, the gecko) -> flies (4318ms)\nWhat are geckos?\tThe nights\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (The nights, can be stressful due to, the geckos) -> The nights (4398ms)\nWhat are geckos?\ta water bowl\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a water bowl, is enough to keep, your gecko hydrated) -> a water bowl (4356ms)\nWhat are geckos?\tthe moment\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the moment, is, Gecko) -> the moment (4356ms)\nWhat are geckos?\tThe rendering engine\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The rendering engine, is called, Gecko) -> The rendering engine (4333ms)\nWhat are geckos?\teach code engine release\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (each code engine release, was named, Gecko) -> each code engine release (4349ms)\nWhat are geckos?\trats\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (rats, are nearly as addicting as, geckos) -> rats (4376ms)\nWhat are geckos?\tA good case\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (A good case, can be made for, gecko setae) -> A good case (4356ms)\nWhat are geckos?\tthe Lunar Eclipse\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (the Lunar Eclipse, can be played with, the GeckoOS app) -> the Lunar Eclipse (4394ms)\nWhat are geckos?\tthe electronics industries\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the electronics industries, are built by, Gecko) -> the electronics industries (4376ms)\nWhat are geckos?\tview\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (view, matters is, Gecko) -> view (4287ms)\nWhat are geckos?\tImprovements\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Improvements, have been made to, the Gecko layout engine) -> Improvements (4376ms)\nWhat are geckos?\tthe new browser\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the new browser, will be based on, Gecko) -> the new browser (4356ms)\nWhat are geckos?\tGinseng\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Ginseng, is used with, Gecko) -> Ginseng (4376ms)\nWhat are geckos?\tCurrent code\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Current code, is tied to, Gecko 1.x) -> Current code (4381ms)\nWhat are geckos?\tOverflow :auto\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Overflow :auto, is still applied to for, Gecko/MacOS) -> Overflow :auto (4381ms)\nWhat are geckos?\tAmit Lahav\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Amit Lahav, are, Gecko) -> Amit Lahav (4398ms)\nWhat are geckos?\tVisitors\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (Visitors, can experience, gecko night vision) -> Visitors (4361ms)\nWhat are geckos?\tNPAPI support\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (NPAPI support, is already in, the Gecko web rendering engine) -> NPAPI support (4390ms)\nWhat are geckos?\t10 Newtons\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (gecko foot, is about, 10 Newtons) -> 10 Newtons (4287ms)\nWhat are geckos?\tKHTML\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (KHTML, pretended to be, Gecko) -> KHTML (4310ms)\nWhat are geckos?\tthe browsers\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the browsers, are based on, Gecko) -> the browsers (4376ms)\nWhat are geckos?\tThe error\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (The error, has been fixed in, Gecko 1.9) -> The error (4294ms)\nWhat are geckos?\tFlock\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Flock, is based on, Gecko) -> Flock (4366ms)\nWhat are geckos?\tSpiderMonkey\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (SpiderMonkey, is, Gecko) -> SpiderMonkey (4349ms)\nWhat are geckos?\tgreed\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (September 14 , 2010 Gordon Gecko, was right about, greed) -> greed (4294ms)\nWhat are geckos?\t20 gallons\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (20 gallons, is sufficient to house, one or two geckos) -> 20 gallons (4310ms)\nWhat are geckos?\tinsects\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (insects, were eaten by, geckoes) -> insects (4385ms)\nWhat are geckos?\tChinese tiger gecko diet\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Chinese tiger gecko diet, is similar to, the leopard gecko) -> Chinese tiger gecko diet (4318ms)\nWhat are geckos?\tOsteodystrophy\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (Osteodystrophy, can also stop the growth of, a gecko) -> Osteodystrophy (4349ms)\nWhat are geckos?\t12\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (12, can learn about, geckos) -> 12 (4294ms)\nWhat are geckos?\tenough the insects\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (enough the insects, were consumed by, geckoes) -> enough the insects (4390ms)\nWhat are geckos?\tthe snake\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (the snake, was trying to eat, the gecko) -> the snake (4318ms)\nWhat are geckos?\theavy duty\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (Gecko, is about being, heavy duty) -> heavy duty (4361ms)\nWhat are geckos?\tdevelopers\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (developers, will be able to simply tell, Gecko) -> developers (4406ms)\nWhat are geckos?\ta patching method\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (a patching method, can be used with, the Gecko OS code handler) -> a patching method (4302ms)\nWhat are geckos?\tThe change\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (The change, has been checked in on, the Gecko trunk) -> The change (4326ms)\nWhat are geckos?\tChromium\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Chromium, was also, Gecko) -> Chromium (4371ms)\nWhat are geckos?\tthe week\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the week, was, Gecko) -> the week (4406ms)\nWhat are geckos?\tWebkit\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Webkit, so is, Gecko) -> Webkit (4394ms)\nWhat are geckos?\tblack lights\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (black lights, are fine to use with, leopard geckos) -> black lights (4366ms)\nWhat are geckos?\toverseas\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (overseas, were, geckos) -> overseas (4361ms)\nWhat are geckos?\tGREED\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (GREED, IS GOOD in, his best Gecko impression) -> GREED (4287ms)\nWhat are geckos?\ta GNOME Web browser\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (a GNOME Web browser, is based on, Gecko) -> a GNOME Web browser (4310ms)\nWhat are geckos?\t20kms southeast\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (Gecko Villa, is located about, 20kms southeast) -> 20kms southeast (4302ms)\nWhat are geckos?\tCSS position\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (CSS position, is too unstable to apply for, Mozilla Gecko) -> CSS position (4333ms)\nWhat are geckos?\tthe best option\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the best option, is, Gecko) -> the best option (4310ms)\nWhat are geckos?\tAtlanta\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Atlanta, is very excited to welcome, the GEICO Gecko exhibit) -> Atlanta (4402ms)\nWhat are geckos?\tWeb authors\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Web authors, need there to be, ?one gecko?) -> Web authors (4394ms)\nWhat are geckos?\tchains\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (chains, are put together to make, geckos) -> chains (4361ms)\nWhat are geckos?\theat\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (heat, is much more important to, your gecko) -> heat (4406ms)\nWhat are geckos?\tthe Mozilla redering engine\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the Mozilla redering engine, IS, Gecko) -> the Mozilla redering engine (4398ms)\nWhat are geckos?\tThe exception\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The exception, is, Gecko) -> The exception (4366ms)\nWhat are geckos?\tArtist\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Artist, is, Gecko) -> Artist (4287ms)\nWhat are geckos?\tNetscape 8.1\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Netscape 8.1, could be set to use, either Gecko or Trident) -> Netscape 8.1 (4385ms)\nWhat are geckos?\tsite\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (site, is, Gecko) -> site (4381ms)\nWhat are geckos?\tThe U.S. public\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (The U.S. public, can readily identify, the GEICO gecko) -> The U.S. public (4342ms)\nWhat are geckos?\tthe Maximum ie\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (Gecko, is talking about is, the Maximum ie) -> the Maximum ie (4406ms)\nWhat are geckos?\tgemal .dk\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (gemal .dk, is now available to, all Gecko based browsers) -> gemal .dk (4402ms)\nWhat are geckos?\tThe Gecko Extreme\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (The Gecko Extreme, is designed to work WITH, your original Gecko) -> The Gecko Extreme (4381ms)\nWhat are geckos?\tthe size\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (a leopard gecko, is about, the size) -> the size (4381ms)\nWhat are geckos?\tclient-side storage\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (client-side storage, is in, WebKit and Gecko?) -> client-side storage (4371ms)\nWhat are geckos?\tthe wall\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (the wall, are strong enough to hold up, the gecko) -> the wall (4394ms)\nWhat are geckos?\tW3C\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (W3C, is Boot to, Gecko) -> W3C (4340ms)\nWhat are geckos?\tThe experiment\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (The experiment, was repeated in, the geckos? natural habitat) -> The experiment (4333ms)\nWhat are geckos?\tThe first two stages\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The first two stages, are based on, geckos) -> The first two stages (4398ms)\nWhat are geckos?\tBabies\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (Babies, can be started on, house geckos) -> Babies (4340ms)\nWhat are geckos?\t2001\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (Gecko-like dry adhesives, have been around since about, 2001) -> 2001 (4390ms)\nWhat are geckos?\tHeat mat\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Heat mat, is another hazard to, your crested geckos) -> Heat mat (4349ms)\nWhat are geckos?\tanole\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (anole, is preferred to, gecko) -> anole (4366ms)\nWhat are geckos?\tSubiaco Arts Centre\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Subiaco Arts Centre, is home to, Barking Gecko Theatre Company) -> Subiaco Arts Centre (4376ms)\nWhat are geckos?\tXPCOM Components\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (XPCOM Components, is about, Gecko) -> XPCOM Components (4356ms)\nWhat are geckos?\tEntries\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (Entries, can be sent to, Project Gecko) -> Entries (4390ms)\nWhat are geckos?\tthree to five inches\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (The house gecko, is about, three to five inches) -> three to five inches (4398ms)\nWhat are geckos?\tIan Oeschger\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Ian Oeschger, is about, Gecko) -> Ian Oeschger (4394ms)\nWhat are geckos?\tFirst\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (First, is to set, these Gecko settings) -> First (4356ms)\nWhat are geckos?\tthe house\t0.6666666666759999\tWhat are geckos? -> $x: (gecko, be about, $x) -> (The gecko babies, are running about, the house) -> the house (4333ms)\nWhat are geckos?\tSafari\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Safari, has historically been superior to, Gecko) -> Safari (4287ms)\nWhat are geckos?\tleopard geckos\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (leopard geckos, are descendants of, geckos) -> leopard geckos (4302ms)\nWhat are geckos?\tMPAPI\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (MPAPI, is currently internal to, Gecko) -> MPAPI (4333ms)\nWhat are geckos?\tvisitors\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (visitors, can experience, gecko night vision) -> visitors (4371ms)\nWhat are geckos?\tThe photo gallery\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The photo gallery, is a list of, geckos) -> The photo gallery (4287ms)\nWhat are geckos?\tRussian scientists\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (Russian scientists, are training, geckos) -> Russian scientists (4402ms)\nWhat are geckos?\ta page\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a page, is loaded in to, the GeckoBrowser) -> a page (4398ms)\nWhat are geckos?\ta shame\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a shame, is to lose, both Mark and Gecko) -> a shame (4385ms)\nWhat are geckos?\tStrength Builder\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Strength Builder, is very similar to, Gecko Rockclimber) -> Strength Builder (4381ms)\nWhat are geckos?\ta few months\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a few months, be closer to, main stream Gecko) -> a few months (4390ms)\nWhat are geckos?\tThe vines\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (The vines, are drenched in, peridot and geckoes dart) -> The vines (4340ms)\nWhat are geckos?\tthe better choice\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the better choice, was, Gecko) -> the better choice (4371ms)\nWhat are geckos?\tJSCSSP\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (JSCSSP, are also adapted from, Gecko) -> JSCSSP (4366ms)\nWhat are geckos?\tthe native UI\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (the native UI, is to move, Gecko and XUL) -> the native UI (4333ms)\nWhat are geckos?\tFirefox Nightly\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Firefox Nightly, is very similar to, the Gecko version) -> Firefox Nightly (4385ms)\nWhat are geckos?\tChatZilla\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (ChatZilla, are using, Gecko) -> ChatZilla (4310ms)\nWhat are geckos?\ta beta1 freeze\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a beta1 freeze, is probably to get, a Gecko version) -> a beta1 freeze (4318ms)\nWhat are geckos?\tDeutsche Telekom\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (Deutsche Telekom, has been contributing code to, Boot2Gecko) -> Deutsche Telekom (4310ms)\nWhat are geckos?\tthe DDT-poisoned bugs\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the DDT-poisoned bugs, were eaten by, geckoes) -> the DDT-poisoned bugs (4402ms)\nWhat are geckos?\tthe canvas element\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be in, gecko) -> (the canvas element, has recently been implemented in, Gecko 1.8) -> the canvas element (4340ms)\nWhat are geckos?\tThe second approach\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (The second approach, is to serve, Gecko) -> The second approach (4366ms)\nWhat are geckos?\tOne box\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (One box, is to help, geckos) -> One box (4390ms)\nWhat are geckos?\tthe bracket\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (the bracket, is attached to, the Fat Gecko Mount) -> the bracket (4356ms)\nWhat are geckos?\tA soft cloth\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (A soft cloth, may be used to catch, the delicate skinned geckos) -> A soft cloth (4333ms)\nWhat are geckos?\ta new female Tokay gecko\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (a new female Tokay gecko, be introduced to, a male Tokay gecko) -> a new female Tokay gecko (4361ms)\nWhat are geckos?\tSeaMonkey 1.0.7\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (SeaMonkey 1.0.7, is still, Gecko) -> SeaMonkey 1.0.7 (4318ms)\nWhat are geckos?\tlandscaping\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (landscaping, is to offer, the gecko) -> landscaping (4381ms)\nWhat are geckos?\tChildren\t0.6666666666759999\tWhat are geckos? -> $x: ($x, can, gecko) -> (Children, over can sign up for, Geckos) -> Children (4302ms)\nWhat are geckos?\tnobody\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be to, gecko) -> (nobody, is going to make, a gecko) -> nobody (4294ms)\nWhat are geckos?\tthe morning\t0.6666666666759999\tWhat are geckos? -> $x: ($x, be be, gecko) -> (the morning, was from, geckos) -> the morning (4366ms)\nWhat are geckos?\tthe latter\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (the latter, develops, Bookt2Gecko) -> the latter (4409ms)\nWhat are geckos?\tthe United States\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (the United States, have developed, the modern leopard gecko) -> the United States (4409ms)\nWhat are geckos?\txpcom component\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (xpcom component, so develop with only, the gecko sdk) -> xpcom component (4406ms)\nWhat are geckos?\tCrystal Dynamics\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (Crystal Dynamics, Games Developed, Gex: Enter the Gecko) -> Crystal Dynamics (4412ms)\nWhat are geckos?\tMozilla Phones in 2012\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (Mozilla Phones in 2012, is developing, a version of Gecko) -> Mozilla Phones in 2012 (4409ms)\nWhat are geckos?\tRealtime Associates\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (Realtime Associates, Games Developed, Gex: Enter the Gecko) -> Realtime Associates (4409ms)\nWhat are geckos?\tMorgan\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (Morgan, developed, GECKO) -> Morgan (4409ms)\nWhat are geckos?\ta lower temperature\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (a lower temperature, develops into, female leopard geckos) -> a lower temperature (4409ms)\nWhat are geckos?\tsoftware\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (software, developed by, Gecko Software) -> software (4409ms)\nWhat are geckos?\tUC Berkeley\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (UC Berkeley, are developing an uber-adhesive based on, a gecko) -> UC Berkeley (4406ms)\nWhat are geckos?\tGratuitous Games\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (Gratuitous Games, Games Developed, Gex 3: Deep Cover Gecko) -> Gratuitous Games (4406ms)\nWhat are geckos?\tDavid A. Palmer Productions\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (David A. Palmer Productions, Game Versions Developed, Gex: Enter the Gecko) -> David A. Palmer Productions (4409ms)\nWhat are geckos?\tfour months\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (four months, later developed, Gecko Hospitality) -> four months (4409ms)\nWhat are geckos?\tThunderbird\t0.5555555555659999\tWhat are geckos? -> $x: ($x, be use of, gecko) -> (Thunderbird, is using a new version of, the Gecko layout engine) -> Thunderbird (4412ms)\nWhat are geckos?\tThe Mozilla project\t0.5555555555659999\tWhat are geckos? -> $x: ($x, develop, gecko) -> (The Mozilla project, developed, the Gecko engine) -> The Mozilla project (4409ms)\nWhat are geckos?\tDr. Aaron Bauer\t0.555555555565\tWhat are geckos? -> $x: ($x, discover, gecko) -> (Dr. Aaron Bauer, discovered a species of, gecko) -> Dr. Aaron Bauer (4415ms)\nWhat are geckos?\tthe family\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are now considered to be in, the family) -> the family (4424ms)\nWhat are geckos?\tsize\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, range in, size) -> size (4426ms)\nWhat are geckos?\tpatients\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is contraindicated in, patients) -> patients (4422ms)\nWhat are geckos?\ttropical rainforests\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, live in, tropical rainforests) -> tropical rainforests (4426ms)\nWhat are geckos?\tAuthorities Concept Scheme\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4426ms)\nWhat are geckos?\tthe teacher\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (the teacher, get rid of, the Gecko) -> the teacher (4420ms)\nWhat are geckos?\tSurfair Resort\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s, located in, Surfair Resort) -> Surfair Resort (4424ms)\nWhat are geckos?\tevery home\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in, every home) -> every home (4430ms)\nWhat are geckos?\tHawaii\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, are everywhere in, Hawaii) -> Hawaii (4430ms)\nWhat are geckos?\tprimary , undisturbed forests\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, is found only in, primary , undisturbed forests) -> primary , undisturbed forests (4426ms)\nWhat are geckos?\ta milder climate\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are typically found in, a milder climate) -> a milder climate (4424ms)\nWhat are geckos?\tthe dorsal area\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, have a light colored pattern in, the dorsal area) -> the dorsal area (4431ms)\nWhat are geckos?\tthe inside\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, got skin in, the inside) -> the inside (4430ms)\nWhat are geckos?\tzero gravity\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, behave in, zero gravity) -> zero gravity (4422ms)\nWhat are geckos?\tdevelopment\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, had already been in, development) -> development (4427ms)\nWhat are geckos?\tJune 2011\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, was unveiled in, June 2011) -> June 2011 (4426ms)\nWhat are geckos?\ta nearby area\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, found in, a nearby area) -> a nearby area (4426ms)\nWhat are geckos?\tpopular imagery\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are ubiquitous both in, popular imagery) -> popular imagery (4431ms)\nWhat are geckos?\tthe quotation marks\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, puts in, the quotation marks) -> the quotation marks (4422ms)\nWhat are geckos?\tMelbourne\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s Adventures, has its head office in, Melbourne) -> Melbourne (4420ms)\nWhat are geckos?\tno idea\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (no idea, get, geckos tommorrow) -> no idea (4427ms)\nWhat are geckos?\tthousands\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s feet, are covered in, thousands) -> thousands (4430ms)\nWhat are geckos?\tfront\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are still way out in, front) -> front (4430ms)\nWhat are geckos?\tfact\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, are in, fact) -> fact (4424ms)\nWhat are geckos?\tnature\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (gecko, is slightly warm in, nature) -> nature (4430ms)\nWhat are geckos?\t?Yep\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (?Yep, got, Geckos) -> ?Yep (4422ms)\nWhat are geckos?\tPapua New Guinea\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (gecko, has been discovered in, Papua New Guinea) -> Papua New Guinea (4430ms)\nWhat are geckos?\ta creamy tan colour\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, looks great in, a creamy tan colour) -> a creamy tan colour (4427ms)\nWhat are geckos?\tstandards-based rendering\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is the leader in, standards-based rendering) -> standards-based rendering (4424ms)\nWhat are geckos?\t60,000sqm\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is set in over, 60,000sqm) -> 60,000sqm (4430ms)\nWhat are geckos?\ta long aquarium\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, should be housed in, a long aquarium) -> a long aquarium (4430ms)\nWhat are geckos?\twarm climates\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in, warm climates) -> warm climates (4424ms)\nWhat are geckos?\thome\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (home, Got, my two new Crested Geckos) -> home (4420ms)\nWhat are geckos?\ta booth\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, sat in, a booth) -> a booth (4420ms)\nWhat are geckos?\tthe default font\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, are rendered in, the default font) -> the default font (4426ms)\nWhat are geckos?\tCSS definitions\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (CSS definitions, got lost by, Gecko) -> CSS definitions (4420ms)\nWhat are geckos?\t100 million years ago\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, were definitely in Asia, 100 million years ago) -> 100 million years ago (4430ms)\nWhat are geckos?\tBrazil\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, will be rolled out in, Brazil) -> Brazil (4420ms)\nWhat are geckos?\tpairs---one male\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are always sold in, pairs---one male) -> pairs---one male (4424ms)\nWhat are geckos?\tJess\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (Jess, get, a gecko) -> Jess (4429ms)\nWhat are geckos?\they yall\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (hey yall, just got, 2 crested geckos) -> hey yall (4427ms)\nWhat are geckos?\ta print Btw\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (a print Btw, get, many gecko 's) -> a print Btw (4427ms)\nWhat are geckos?\tevery situation\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, behave the same way in, every situation) -> every situation (4431ms)\nWhat are geckos?\tlittle hairs\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (The Gecko Gecko feet, are covered in, little hairs) -> little hairs (4420ms)\nWhat are geckos?\toh &\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (oh &, got, another gecko) -> oh & (4430ms)\nWhat are geckos?\tStep 5\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (Step 5, Get, a gecko) -> Step 5 (4417ms)\nWhat are geckos?\tCamino 1.0.x\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, used in, Camino 1.0.x) -> Camino 1.0.x (4426ms)\nWhat are geckos?\tthe development cycle\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is somewhat late in, the development cycle) -> the development cycle (4430ms)\nWhat are geckos?\tthe fight\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, could aid in, the fight) -> the fight (4431ms)\nWhat are geckos?\tmen\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is very commonly used in, men) -> men (4427ms)\nWhat are geckos?\tpet shops\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are a popular choice in, pet shops) -> pet shops (4430ms)\nWhat are geckos?\twe?ll\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (we?ll, get, Gecko goodness) -> we?ll (4427ms)\nWhat are geckos?\t60,000sqm of private grounds\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is set in over, 60,000sqm of private grounds) -> 60,000sqm of private grounds (4427ms)\nWhat are geckos?\tterms\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, has made a very significant progress in, terms) -> terms (4424ms)\nWhat are geckos?\tthe USC business incubator\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, will start out in, the USC business incubator) -> the USC business incubator (4426ms)\nWhat are geckos?\tTopical Terms Concept Scheme\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4431ms)\nWhat are geckos?\tsoutheastern Asia\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are most numerous in, southeastern Asia) -> southeastern Asia (4431ms)\nWhat are geckos?\tpairs\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, lay eggs in, pairs) -> pairs (4431ms)\nWhat are geckos?\tthe market\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, was in, the market) -> the market (4430ms)\nWhat are geckos?\tmap development\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, also is working in, map development) -> map development (4422ms)\nWhat are geckos?\tthe 2005 version\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, can be used in, the 2005 version) -> the 2005 version (4424ms)\nWhat are geckos?\tthe air\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, still lingers in, the air) -> the air (4426ms)\nWhat are geckos?\tTussock 8 ply\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are show in, Tussock 8 ply) -> Tussock 8 ply (4420ms)\nWhat are geckos?\tNew App | WebProNews\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (New App | WebProNews, Get, Your Gecko) -> New App | WebProNews (4431ms)\nWhat are geckos?\ta children?s literacy resource Who?s\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (a children?s literacy resource Who?s, got, the ?Gecko) -> a children?s literacy resource Who?s (4424ms)\nWhat are geckos?\tabundance\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are in, abundance) -> abundance (4424ms)\nWhat are geckos?\ta released mobile device\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, already runs in, a released mobile device) -> a released mobile device (4417ms)\nWhat are geckos?\tthe string\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is also mentioned in, the string) -> the string (4430ms)\nWhat are geckos?\ta ' Firefox OS'\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, could result in, a ' Firefox OS') -> a ' Firefox OS' (4422ms)\nWhat are geckos?\tJukjeon\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (No Gecko?s, opened a new restaurant in, Jukjeon) -> Jukjeon (4426ms)\nWhat are geckos?\tthe ocean\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, swam in, the ocean) -> the ocean (4424ms)\nWhat are geckos?\tAsia\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, were definitely in, Asia) -> Asia (4426ms)\nWhat are geckos?\tNZ\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are the largest in, NZ) -> NZ (4426ms)\nWhat are geckos?\tMozilla?s Firefox\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is used in, Mozilla?s Firefox) -> Mozilla?s Firefox (4422ms)\nWhat are geckos?\tFirefox 3.6\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, used in, Firefox 3.6) -> Firefox 3.6 (4422ms)\nWhat are geckos?\ta cave\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (gecko, has adapted to living in, a cave) -> a cave (4420ms)\nWhat are geckos?\ta separate thread\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is running in, a separate thread) -> a separate thread (4422ms)\nWhat are geckos?\tGotta\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (Gotta, Get, a Gecko) -> Gotta (4427ms)\nWhat are geckos?\tthe southern mountains\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (gecko, had been discovered in, the southern mountains) -> the southern mountains (4422ms)\nWhat are geckos?\tUTF-8.\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, usually stores URLs internally in, UTF-8.) -> UTF-8. (4422ms)\nWhat are geckos?\tquirks mode\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is OK in, quirks mode) -> quirks mode (4427ms)\nWhat are geckos?\tFL...\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are inevitanle in, FL...) -> FL... (4430ms)\nWhat are geckos?\tthe wild\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, \"lived in, the wild) -> the wild (4420ms)\nWhat are geckos?\tdeviantART\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (deviantART, Got, some crested geckos) -> deviantART (4427ms)\nWhat are geckos?\tI?ll\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (I?ll, have to get, my little gecko) -> I?ll (4422ms)\nWhat are geckos?\tTigermond\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (Tigermond, needs some help to get, his geckos) -> Tigermond (4422ms)\nWhat are geckos?\tCambodia?s Cardamoms\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, found only in, Cambodia?s Cardamoms) -> Cambodia?s Cardamoms (4431ms)\nWhat are geckos?\tdifferent varieties\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (geckos, come in, different varieties) -> different varieties (4426ms)\nWhat are geckos?\tSubmitted\t0.444444444455\tWhat are geckos? -> $x: ($x, get, gecko) -> (Submitted, Finally got another picture of, my gecko Mallory up) -> Submitted (4426ms)\nWhat are geckos?\tevery part\t0.444444444455\tWhat are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in almost, every part) -> every part (4427ms)\nWhat are geckos?\tOkinawa?the\t0.444444444454\tWhat are geckos? -> $x: ($x, involve, gecko) -> (Okinawa?the, first involves, a gecko) -> Okinawa?the (4431ms)\nWhat are geckos?\tthe steppers\t0.33333333334299997\tWhat are geckos? -> $x: ($x, be use as, gecko) -> (the steppers, would be the same as using, gecko) -> the steppers (4431ms)\nWhat are geckos?\tno loot\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (no loot, may contain, a fire gecko) -> no loot (4432ms)\nWhat are geckos?\tLouisiana\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (Louisiana, Contains, Gecko) -> Louisiana (4432ms)\nWhat are geckos?\tThe atrium\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (The atrium, contains, more fire geckos) -> The atrium (4432ms)\nWhat are geckos?\tAlbuquerque\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (Albuquerque, Contains, Gecko's Bar and Tapas) -> Albuquerque (4431ms)\nWhat are geckos?\tUnited States of America\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (United States of America, Contains, Gecko) -> United States of America (4432ms)\nWhat are geckos?\tThe latter\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (The latter, currently contains, Gecko 1.9 alpha) -> The latter (4431ms)\nWhat are geckos?\tSt. Martin Parish\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (St. Martin Parish, Contains, Gecko) -> St. Martin Parish (4431ms)\nWhat are geckos?\tthe tea\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (the tea, contained, dried gecko lizard parts) -> the tea (4432ms)\nWhat are geckos?\tSimplicity Studio\t0.22222222223199994\tWhat are geckos? -> $x: ($x, contain, gecko) -> (Simplicity Studio, also contains, EFM32 Gecko code examples) -> Simplicity Studio (4432ms)\nWhat are geckos?\ttropical lizards\t0.222222222219\tWhat are geckos? -> $x: ($x, in, leopard gecko) -> (tropical lizards, would die in, a leopard gecko environment) -> tropical lizards (4432ms)\nWhat are geckos?\tA testcase\t0.11111111112299998\tWhat are geckos? -> $x: ($x, demonstrate, gecko) -> (A testcase, demonstrates, Gecko?s correct behaviour) -> A testcase (4432ms)\nWhat are geckos?\tThe conference\t0.11111111112299998\tWhat are geckos? -> $x: ($x, demonstrate, gecko) -> (The conference, will demonstrate, GeckoSystems) -> The conference (4432ms)\nWhat are geckos?\tI?m gonna\t0.11111111112100003\tWhat are geckos? -> $x: ($x, race be, gecko) -> (I?m gonna, be racing, the Gecko) -> I?m gonna (4432ms)\nWhom did he marry?\tcare\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (care, marries, whom) -> care (534ms)\nWhom did he marry?\tsix children\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (six children, married, all of whom) -> six children (534ms)\nWhom did he marry?\ta damn\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (a damn, marries, whom) -> a damn (534ms)\nWhom did he marry?\tDavidman\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (Davidman, married William Gresham by, whom) -> Davidman (534ms)\nWhom did he marry?\tfive daughters\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (five daughters, married, all of whom) -> five daughters (535ms)\nWhom did he marry?\tWickham\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (Wickham, should marry, a girl whom it was impossible) -> Wickham (534ms)\nWhom did he marry?\tJerry\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (Jerry, [is] the married man with, whom) -> Jerry (535ms)\nWhom did he marry?\ttwelve children\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (twelve children, married, all of whom) -> twelve children (535ms)\nWhom did he marry?\t16 known children\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (16 known children, married, most of whom) -> 16 known children (535ms)\nWhom did he marry?\tLindsay\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (Lindsay, [is] a married woman with, whom) -> Lindsay (535ms)\nWhom did he marry?\ta rip\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (a rip, marries, whom) -> a rip (534ms)\nWhom did he marry?\ta young lady\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (a young lady, to marry, the man whom her father has selected) -> a young lady (535ms)\nWhom did he marry?\tSweden\t-0.0\tWhom did he marry? -> $x: ($x, marry, stockholm) -> (Sweden, married in, Stockholm) -> Sweden (534ms)\nWhom did he marry?\ttwo brothers\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (two brothers, was married, one of whom) -> two brothers (535ms)\nWhom did he marry?\tA seducer\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (A seducer, must marry, an unengaged virgin whom he seduces) -> A seducer (535ms)\nWhom did he marry?\tthirteen children\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (thirteen children, married, most of whom) -> thirteen children (535ms)\nWhom did he marry?\tJames Mayfield\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (James Mayfield, [is] a married man with, whom) -> James Mayfield (534ms)\nWhom did he marry?\tten children\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (ten children, married, all of whom) -> ten children (535ms)\nWhom did he marry?\tan adulteress\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (an adulteress, to marry, a man with whom she committed adultery) -> an adulteress (535ms)\nWhom did he marry?\tfair opportunities\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (fair opportunities, may marry, WHOM SHE LIKES.) -> fair opportunities (535ms)\nWhom did he marry?\tbusiness\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (business, marries, whom) -> business (535ms)\nWhom did he marry?\tfour children\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (four children, married, all of whom) -> four children (535ms)\nWhom did he marry?\teight children\t-0.0\tWhom did he marry? -> $x: ($x, marry, whom) -> (eight children, married, all of whom) -> eight children (535ms)\nWhere was Rachel Carson home?\tWells\t-1.0\tWhere was Rachel Carson home? -> $x: ($x, be home, rachel carson) -> (Wells, is home to, the Rachel Carson National Wildlife Refuge) -> Wells (1036ms)\nWhere was Rachel Carson home?\tSelf-anchored suspension bridge\t-1.111111111109\tWhere was Rachel Carson home? -> $x: ($x, type, rachel carson) -> (Self-anchored suspension bridge, Bridges of this type, Rachel Carson Bridge) -> Self-anchored suspension bridge (1036ms)\nWhere was Rachel Carson home?\tthe years\t-1.3333333333330002\tWhere was Rachel Carson home? -> $x: ($x, be the home of, carson) -> (the years, was the home of, Johnny Carson) -> the years (1147ms)\nWhere was Rachel Carson home?\tthe starting point\t-1.3333333333330002\tWhere was Rachel Carson home? -> $x: ($x, be the home of, carson) -> (the starting point, was the boyhood home of, Kit Carson) -> the starting point (1147ms)\nWhere was Rachel Carson home?\ta captivating herd\t-1.5555555555499998\tWhere was Rachel Carson home? -> $x: (rachel carson, be home, $x) -> (the Rachel Carson Reserve, is home to, a captivating herd) -> a captivating herd (1917ms)\nWhere was Rachel Carson home?\tscores\t-1.5555555555499998\tWhere was Rachel Carson home? -> $x: (rachel carson, be home, $x) -> (The Rachel Carson Reserve, is home to, scores) -> scores (1917ms)\nWhere was Rachel Carson home?\tOrganization\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Organization) -> Organization (3484ms)\nWhere was Rachel Carson home?\tInfluence Node\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Influence Node) -> Influence Node (3464ms)\nWhere was Rachel Carson home?\tCanonical Version\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Canonical Version) -> Canonical Version (3476ms)\nWhere was Rachel Carson home?\tBuilding\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Notable types, Building) -> Building (3476ms)\nWhere was Rachel Carson home?\tword\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Louise Carson, Type, word) -> word (3481ms)\nWhere was Rachel Carson home?\tBody Of Water\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Type, Body Of Water) -> Body Of Water (3476ms)\nWhere was Rachel Carson home?\tNRIS Listing\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson House, Type, NRIS Listing) -> NRIS Listing (2152ms)\nWhere was Rachel Carson home?\tProject focus\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Project focus) -> Project focus (3476ms)\nWhere was Rachel Carson home?\tAward Winner\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Award Winner) -> Award Winner (3168ms)\nWhere was Rachel Carson home?\tTrail\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Trail, Notable types, Trail) -> Trail (3168ms)\nWhere was Rachel Carson home?\tCataloged instance\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Cataloged instance) -> Cataloged instance (3480ms)\nWhere was Rachel Carson home?\tRiver\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Notable types, River) -> River (3464ms)\nWhere was Rachel Carson home?\tStructure\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Bridge, Type, Structure) -> Structure (3481ms)\nWhere was Rachel Carson home?\tKWTopic\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, KWTopic) -> KWTopic (3484ms)\nWhere was Rachel Carson home?\tMuseum\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Museum) -> Museum (3464ms)\nWhere was Rachel Carson home?\tBook\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Book) -> Book (3476ms)\nWhere was Rachel Carson home?\tNNDB Person\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, NNDB Person) -> NNDB Person (1944ms)\nWhere was Rachel Carson home?\tDeceased Person\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Deceased Person) -> Deceased Person (3484ms)\nWhere was Rachel Carson home?\tMusical Recording\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Musical Recording) -> Musical Recording (3484ms)\nWhere was Rachel Carson home?\tBook Edition\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson: a biography, Type, Book Edition) -> Book Edition (3481ms)\nWhere was Rachel Carson home?\tPerson\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Person) -> Person (2015ms)\nWhere was Rachel Carson home?\tName source\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Name source) -> Name source (3476ms)\nWhere was Rachel Carson home?\tBridge\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Bridge, Type, Bridge) -> Bridge (3476ms)\nWhere was Rachel Carson home?\tElevation Range\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Trail, Type, Elevation Range) -> Elevation Range (1917ms)\nWhere was Rachel Carson home?\tTV Episode\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson's Silent Spring, Notable types, TV Episode) -> TV Episode (3464ms)\nWhere was Rachel Carson home?\tAward Nominee\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Award Nominee) -> Award Nominee (3484ms)\nWhere was Rachel Carson home?\tOrganization committee\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Awards Council, Type, Organization committee) -> Organization committee (3484ms)\nWhere was Rachel Carson home?\tNamesake\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Namesake) -> Namesake (3481ms)\nWhere was Rachel Carson home?\tImage\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (RachelCarsonHomestead, Type, Image) -> Image (3484ms)\nWhere was Rachel Carson home?\tGeographical Feature\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Type, Geographical Feature) -> Geographical Feature (3464ms)\nWhere was Rachel Carson home?\tAward\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Award) -> Award (3481ms)\nWhere was Rachel Carson home?\tContent\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel carson house md, Type, Content) -> Content (3488ms)\nWhere was Rachel Carson home?\tListed Site\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Listed Site) -> Listed Site (3484ms)\nWhere was Rachel Carson home?\tHall of fame inductee\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Hall of fame inductee) -> Hall of fame inductee (3480ms)\nWhere was Rachel Carson home?\tRelease track\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Release track) -> Release track (3168ms)\nWhere was Rachel Carson home?\tLocation\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson House, Type, Location) -> Location (3480ms)\nWhere was Rachel Carson home?\tEmployer\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Employer) -> Employer (3464ms)\nWhere was Rachel Carson home?\tWritten Work\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Written Work) -> Written Work (3484ms)\nWhere was Rachel Carson home?\tAward category\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Award category) -> Award category (2152ms)\nWhere was Rachel Carson home?\tTourist attraction\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Tourist attraction) -> Tourist attraction (3484ms)\nWhere was Rachel Carson home?\tEducational Institution\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Educational Institution) -> Educational Institution (3484ms)\nWhere was Rachel Carson home?\tSchool\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, School) -> School (3485ms)\nWhere was Rachel Carson home?\tBuilding Occupant\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Building Occupant) -> Building Occupant (3484ms)\nWhere was Rachel Carson home?\tAuthor\t-1.6666666666589998\tWhere was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Author) -> Author (3476ms)\nWhere was Rachel Carson home?\tThe base\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (The base, is also home to, the Charles C. Carson Center) -> The base (3488ms)\nWhere was Rachel Carson home?\tColorado Springs\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (Colorado Springs, is home to, Fort Carson Army base) -> Colorado Springs (3488ms)\nWhere was Rachel Carson home?\tBurlington\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (Burlington, is home to, the Kit Carson County Carousel) -> Burlington (3488ms)\nWhere was Rachel Carson home?\tHugo\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (Hugo, is the winter home to, the Carson & Barnes Circus) -> Hugo (3488ms)\nWhere was Rachel Carson home?\tColorado\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (Colorado, is home to, Ft . Carson) -> Colorado (3488ms)\nWhere was Rachel Carson home?\tthe Regiment\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (the Regiment, are now returning home to, Ft Carson) -> the Regiment (3488ms)\nWhere was Rachel Carson home?\tDavid Carson Design\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (David Carson Design, is still home to, Carson) -> David Carson Design (3488ms)\nWhere was Rachel Carson home?\tMiddagh Street\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (Middagh Street, was home to, Carson McCullers) -> Middagh Street (3488ms)\nWhere was Rachel Carson home?\tNC\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (NC, was home to, the Carson family) -> NC (3488ms)\nWhere was Rachel Carson home?\tTaos\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (Taos, was home to, Kit Carson) -> Taos (3488ms)\nWhere was Rachel Carson home?\tThe Carson River Watershed\t-1.6666666666660002\tWhere was Rachel Carson home? -> $x: ($x, be home, carson) -> (The Carson River Watershed, is home to, the Carson River) -> The Carson River Watershed (3488ms)\nWhere was Rachel Carson home?\tCommon stock\t-1.7777777777750001\tWhere was Rachel Carson home? -> $x: ($x, type, carson) -> (Common stock, Issues of this type, CARSON CUMBERBATCH & CO PLC Common Stock) -> Common stock (3492ms)\nWhere was Rachel Carson home?\tFloribunda\t-1.7777777777750001\tWhere was Rachel Carson home? -> $x: ($x, type, carson) -> (Floribunda, Roses of this type, Rosa 'Violet Carson') -> Floribunda (3492ms)\nWhere was Rachel Carson home?\tthe regiment\t-1.888888888883\tWhere was Rachel Carson home? -> $x: (carson, be the home of, $x) -> (Camp Carson, was the new home of, the regiment) -> the regiment (3495ms)\nWhere was Rachel Carson home?\ta writer\t-2.111111111103\tWhere was Rachel Carson home? -> $x: (carson, be example of, $x) -> (Carson McCullers, is the quintessential example of, a writer) -> a writer (3495ms)\nWhere was Rachel Carson home?\ta victorian home\t-2.111111111103\tWhere was Rachel Carson home? -> $x: (carson, be example of, $x) -> (The carson mansion, is an example of, a victorian home) -> a victorian home (3495ms)\nWhere was Rachel Carson home?\tmeat\t-2.222222222214\tWhere was Rachel Carson home? -> $x: (carson, be type of, $x) -> (Bowl of the wife of Kit Carson, is a type of, meat) -> meat (3495ms)\nWhere was Rachel Carson home?\tcompany\t-2.222222222214\tWhere was Rachel Carson home? -> $x: (carson, be type of, $x) -> (Matt Carson Profusion Customs, is the type of, company) -> company (3495ms)\nWhere was Rachel Carson home?\tbuildings\t-2.222222222215\tWhere was Rachel Carson home? -> $x: (carson, be house in, $x) -> (The old Carson-Tahoe Hospital, was housed in, buildings) -> buildings (3495ms)\nWhere was Rachel Carson home?\ta large assortment\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, is home to, a large assortment) -> a large assortment (3495ms)\nWhere was Rachel Carson home?\tnine divisions\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (its history Fort Carson, has been home to, nine divisions) -> nine divisions (3495ms)\nWhere was Rachel Carson home?\t9,000 Axis prisoners\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Camp Carson, was also home to nearly, 9,000 Axis prisoners) -> 9,000 Axis prisoners (3495ms)\nWhere was Rachel Carson home?\tCarson\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (David Carson Design, is still home to, Carson) -> Carson (3499ms)\nWhere was Rachel Carson home?\tthe Home Depot Center\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, is also home to, the Home Depot Center) -> the Home Depot Center (3499ms)\nWhere was Rachel Carson home?\tthe first Nevada settlement\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson Valley, is home of, the first Nevada settlement) -> the first Nevada settlement (3499ms)\nWhere was Rachel Carson home?\tfurlough\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (John Carson, is home on, furlough) -> furlough (3499ms)\nWhere was Rachel Carson home?\t15 officers\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson City, is home to, 15 officers) -> 15 officers (3499ms)\nWhere was Rachel Carson home?\tprom\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Jake and Carson, were heading home from, prom) -> prom (3495ms)\nWhere was Rachel Carson home?\tthe brand\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, would be a perfect home for, the brand) -> the brand (3499ms)\nWhere was Rachel Carson home?\tWheeler Peak\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson National Forest, is home to, Wheeler Peak) -> Wheeler Peak (3499ms)\nWhere was Rachel Carson home?\tStickman\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, used to be home to, Stickman) -> Stickman (3499ms)\nWhere was Rachel Carson home?\tthe Carson River\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (The Carson River Watershed, is home to, the Carson River) -> the Carson River (3499ms)\nWhere was Rachel Carson home?\tthe rare Lahontan trout\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (the Carson River, is home to, the rare Lahontan trout) -> the rare Lahontan trout (3499ms)\nWhere was Rachel Carson home?\tthe families\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Fort Carson, is home to, the families) -> the families (3495ms)\nWhere was Rachel Carson home?\tthe largest collection\t-2.2222222222159997\tWhere was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson City, is home to, the largest collection) -> the largest collection (3495ms)\nWhere was Rachel Carson home?\tStatistical region\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Statistical region) -> Statistical region (3515ms)\nWhere was Rachel Carson home?\tBusiness Operation\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson's, Type, Business Operation) -> Business Operation (3513ms)\nWhere was Rachel Carson home?\tNoble person\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Noble person) -> Noble person (3515ms)\nWhere was Rachel Carson home?\tTransit Stop\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Transit Stop) -> Transit Stop (3511ms)\nWhere was Rachel Carson home?\tMusical Album\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson?, Notable types, Musical Album) -> Musical Album (3515ms)\nWhere was Rachel Carson home?\tTop Architectural City\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Top Architectural City) -> Top Architectural City (3509ms)\nWhere was Rachel Carson home?\tTV Actor\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Mindy Carson, Type, TV Actor) -> TV Actor (3513ms)\nWhere was Rachel Carson home?\ttopic\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, topic) -> topic (3513ms)\nWhere was Rachel Carson home?\tCity/Town/Village\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, City/Town/Village) -> City/Town/Village (3511ms)\nWhere was Rachel Carson home?\tPolitician\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Politician) -> Politician (3513ms)\nWhere was Rachel Carson home?\tGovernmental Jurisdiction\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Governmental Jurisdiction) -> Governmental Jurisdiction (3511ms)\nWhere was Rachel Carson home?\tDated location\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, Dated location) -> Dated location (3515ms)\nWhere was Rachel Carson home?\tKWSentence\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson^?, Type, KWSentence) -> KWSentence (3509ms)\nWhere was Rachel Carson home?\tFilm actor\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Towa Carson, Type, Film actor) -> Film actor (3511ms)\nWhere was Rachel Carson home?\tChivalric Order Member\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Chivalric Order Member) -> Chivalric Order Member (3515ms)\nWhere was Rachel Carson home?\tCapital of administrative division\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Capital of administrative division) -> Capital of administrative division (3513ms)\nWhere was Rachel Carson home?\tHUD County Place\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, HUD County Place) -> HUD County Place (3513ms)\nWhere was Rachel Carson home?\tFictional Character\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Larry Carson, Type, Fictional Character) -> Fictional Character (3515ms)\nWhere was Rachel Carson home?\tdbpedia_import\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, dbpedia_import) -> dbpedia_import (3509ms)\nWhere was Rachel Carson home?\tSchool mascot\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, School mascot) -> School mascot (3513ms)\nWhere was Rachel Carson home?\tHUD Foreclosure Area\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, HUD Foreclosure Area) -> HUD Foreclosure Area (3515ms)\nWhere was Rachel Carson home?\tEP\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson?, Release type, EP) -> EP (3511ms)\nWhere was Rachel Carson home?\tTheater Character\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Theater Character) -> Theater Character (3509ms)\nWhere was Rachel Carson home?\tTV Character\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, TV Character) -> TV Character (3511ms)\nWhere was Rachel Carson home?\tFilm character\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Notable types, Film character) -> Film character (3513ms)\nWhere was Rachel Carson home?\tOrganization extra\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson's, Notable types, Organization extra) -> Organization extra (3515ms)\nWhere was Rachel Carson home?\tGiven Name\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, Given Name) -> Given Name (3507ms)\nWhere was Rachel Carson home?\tMusician\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Mindy Carson, Type, Musician) -> Musician (3502ms)\nWhere was Rachel Carson home?\tMusical Artist\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Kendel Carson, Type, Musical Artist) -> Musical Artist (3513ms)\nWhere was Rachel Carson home?\tBook Character\t-2.333333333325\tWhere was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Book Character) -> Book Character (3513ms)\nWhere was Rachel Carson home?\tFilm\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Film) -> Film (3520ms)\nWhere was Rachel Carson home?\tOrganization leader\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Notable types, Organization leader) -> Organization leader (3519ms)\nWhere was Rachel Carson home?\tTV Program\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Gifted Hands: The Ben Carson Story, Notable types, TV Program) -> TV Program (3519ms)\nWhere was Rachel Carson home?\tPerson or entity appearing in film\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Person or entity appearing in film) -> Person or entity appearing in film (3519ms)\nWhere was Rachel Carson home?\tFilm music contributor\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Notable types, Film music contributor) -> Film music contributor (3519ms)\nWhere was Rachel Carson home?\tProcessed with Review Queue\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Processed with Review Queue) -> Processed with Review Queue (3520ms)\nWhere was Rachel Carson home?\tConcept\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Concept) -> Concept (3519ms)\nWhere was Rachel Carson home?\tResource\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Resource) -> Resource (3517ms)\nWhere was Rachel Carson home?\tPhysician\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Notable types, Physician) -> Physician (3520ms)\nWhere was Rachel Carson home?\tAward-Nominated Work\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Gifted Hands: The Ben Carson Story, Type, Award-Nominated Work) -> Award-Nominated Work (3519ms)\nWhere was Rachel Carson home?\tFilm subject\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Film subject) -> Film subject (3520ms)\nWhere was Rachel Carson home?\tAcademic\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Notable types, Academic) -> Academic (3520ms)\nWhere was Rachel Carson home?\tNetflix Title\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Gifted Hands: The Ben Carson Story, Notable types, Netflix Title) -> Netflix Title (3520ms)\nWhere was Rachel Carson home?\tSchool district\t-2.77777777777\tWhere was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Clay Community Schools Of Columbus-Ben Carson Academy, Notable types, School district) -> School district (3519ms)\nWhere is the Holland Tunnel?\tThe second I\t0.333333333333\tWhere is the Holland Tunnel? -> $x: ($x, get, holland tunnel) -> (The second I, got through, the Holland Tunnel) -> The second I (844ms)\nWhere is the Holland Tunnel?\tHudson River\t0.333333333333\tWhere is the Holland Tunnel? -> $x: ($x, contain, holland tunnel) -> (Hudson River, Contains, Holland Tunnel) -> Hudson River (986ms)\nWhere is the Holland Tunnel?\tgot rides\t0.333333333333\tWhere is the Holland Tunnel? -> $x: ($x, first make, holland tunnel) -> (got rides, also made my first trip through, the Holland Tunnel) -> got rides (1081ms)\nWhere is the Holland Tunnel?\tTwo cars\t0.333333333333\tWhere is the Holland Tunnel? -> $x: ($x, go, holland tunnel) -> (Two cars, are going through, the Holland Tunnel) -> Two cars (1081ms)\nWhere is the Holland Tunnel?\tHolland Tunnel\t0.333333333333\tWhere is the Holland Tunnel? -> $x: ($x, event, holland tunnel) -> (Holland Tunnel, Events, Holland Tunnel fire) -> Holland Tunnel (986ms)\nWhere is the Holland Tunnel?\tOle Singstad\t0.333333333333\tWhere is the Holland Tunnel? -> $x: ($x, design, holland tunnel) -> (Ole Singstad, Structures Designed, Holland Tunnel) -> Ole Singstad (987ms)\nWhere is the Holland Tunnel?\tClifford Milburn Holland\t0.333333333333\tWhere is the Holland Tunnel? -> $x: ($x, design, holland tunnel) -> (Clifford Milburn Holland, Structures Designed, Holland Tunnel) -> Clifford Milburn Holland (986ms)\nWhere is the Holland Tunnel?\tmovies\t0.22222222222100002\tWhere is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (The Holland Tunnel, has been featured in, movies) -> movies (1143ms)\nWhere is the Holland Tunnel?\t1927\t0.22222222222100002\tWhere is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (The Holland Tunnel, was completed in, 1927) -> 1927 (1143ms)\nWhere is the Holland Tunnel?\tthe exact change lane\t0.22222222222100002\tWhere is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (the Holland Tunnel, is stuck in, the exact change lane) -> the exact change lane (1143ms)\nWhere is the Holland Tunnel?\tOld Town\t0.22222222222100002\tWhere is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (Holland Tunnel Gallery, are in, Old Town) -> Old Town (1143ms)\nWhere is the Holland Tunnel?\tthe 1920 's\t0.22222222222100002\tWhere is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (the Holland Tunnel, was built in, the 1920 's) -> the 1920 's (1143ms)\nWhere is the Holland Tunnel?\tHoboken\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Hoboken, is located between, the Holland and Lincoln Tunnels) -> Hoboken (1226ms)\nWhere is the Holland Tunnel?\tCanal Street\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Canal Street, will still be able to enter, the Holland Tunnel) -> Canal Street (1226ms)\nWhere is the Holland Tunnel?\tMuslims\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Muslims, should be detoured through, Holland Tunnel ,than) -> Muslims (1211ms)\nWhere is the Holland Tunnel?\ta bar\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (a bar, is worse than, the Holland Tunnel) -> a bar (1211ms)\nWhere is the Holland Tunnel?\tThe theatre\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The theatre, is just minutes from, the Holland/Lincoln Tunnels) -> The theatre (1211ms)\nWhere is the Holland Tunnel?\tRory\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Rory, is driving home through, the Holland Tunnel) -> Rory (1226ms)\nWhere is the Holland Tunnel?\tThe other lanes\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The other lanes, are for, Holland Tunnel) -> The other lanes (1226ms)\nWhere is the Holland Tunnel?\tSheraton New York\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Sheraton New York, is a half mile from, the Holland Tunnel) -> Sheraton New York (1226ms)\nWhere is the Holland Tunnel?\tsix-axle trucks\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (six-axle trucks, are prohibited from using, the Holland Tunnel) -> six-axle trucks (1226ms)\nWhere is the Holland Tunnel?\tpresident\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (president, was planning to extend, New York?s Holland Tunnel) -> president (1226ms)\nWhere is the Holland Tunnel?\tNewport area\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Newport area, is right next to, Holland Tunnel) -> Newport area (1226ms)\nWhere is the Holland Tunnel?\tThe billboard\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The billboard, is near, the Holland Tunnel) -> The billboard (1226ms)\nWhere is the Holland Tunnel?\tonly cars and buses\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (only cars and buses, were permitted to use, the Holland Tunnel) -> only cars and buses (1226ms)\nWhere is the Holland Tunnel?\tThe store\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The store, is near, the Holland Tunnel) -> The store (1211ms)\nWhere is the Holland Tunnel?\tsuch tunnels\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (such tunnels, were ?as big as, the Holland and Lincoln tunnels) -> such tunnels (1211ms)\nWhere is the Holland Tunnel?\ta bomb\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (a bomb, were headed for, the Holland Tunnel) -> a bomb (1211ms)\nWhere is the Holland Tunnel?\tItems\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Items, may be picked up from, the Holland Tunnel Police Command) -> Items (1211ms)\nWhere is the Holland Tunnel?\tNew York City\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (New York City, here is to take, the Holland Tunnel) -> New York City (1211ms)\nWhere is the Holland Tunnel?\tthe left\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (the left, is, Holland Tunnel) -> the left (1226ms)\nWhere is the Holland Tunnel?\tNude Anna Nicole\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Nude Anna Nicole, was, the Holland Tunnel) -> Nude Anna Nicole (1211ms)\nWhere is the Holland Tunnel?\tThe basic trajectory\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The basic trajectory, was from, the Holland Tunnel) -> The basic trajectory (1211ms)\nWhere is the Holland Tunnel?\tSlated for destruction\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Slated for destruction, were, the Holland and Lincoln Tunnels) -> Slated for destruction (1226ms)\nWhere is the Holland Tunnel?\tthe Village\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (the Village, is only, five Holland Tunnel minutes) -> the Village (1211ms)\nWhere is the Holland Tunnel?\tOfficer Donald Foreman\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Officer Donald Foreman, was assigned to, the Holland Tunnel) -> Officer Donald Foreman (1211ms)\nWhere is the Holland Tunnel?\tthe canine\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (the canine, was spotted down near, the Holland Tunnel) -> the canine (1226ms)\nWhere is the Holland Tunnel?\tthe wait\t-0.0\tWhere is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (the wait, is much shorter at, the Holland Tunnel) -> the wait (1211ms)\nWhere is the Holland Tunnel?\tlike\t-0.333333333333\tWhere is the Holland Tunnel? -> $x: ($x, happen at, holland tunnel) -> (like, happens at, the Holland Tunnel) -> like (1226ms)\nWhen was Queen Victoria born?\tthe Palace\t1.33333333333\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, the Palace) -> the Palace (1754ms)\nWhen was Queen Victoria born?\t1857.\t1.33333333333\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, 1857.) -> 1857. (1674ms)\nWhen was Queen Victoria born?\tEngland\t1.33333333333\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, England) -> England (1674ms)\nWhen was Queen Victoria born?\tLondon\t1.33333333333\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, London) -> London (1674ms)\nWhen was Queen Victoria born?\tKensington Palace\t1.33333333333\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, Kensington Palace) -> Kensington Palace (1674ms)\nWhen was Queen Victoria born?\tKensington\t1.33333333333\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, Kensington) -> Kensington (1523ms)\nWhen was Queen Victoria born?\t1819\t1.33333333333\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, 1819) -> 1819 (1754ms)\nWhen was Queen Victoria born?\tcelebrity status\t1.0\tWhen was Queen Victoria born? -> $x: (queen victoria, live in, $x) -> (Queen Victoria, truly lived her life in, celebrity status) -> celebrity status (1781ms)\nWhen was Queen Victoria born?\tthe 24 May\t1.0\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear on, $x) -> (Queen Victoria, was born on, the 24 May) -> the 24 May (1811ms)\nWhen was Queen Victoria born?\tMay 24 , 1819\t1.0\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear on, $x) -> (Queen Victoria, was born on, May 24 , 1819) -> May 24 , 1819 (1831ms)\nWhen was Queen Victoria born?\t24 May 1819\t1.0\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear on, $x) -> (Queen Victoria, was born on, 24 May 1819) -> 24 May 1819 (1811ms)\nWhen was Queen Victoria born?\tScotland\t1.0\tWhen was Queen Victoria born? -> $x: (queen victoria, live in, $x) -> (Queen Victoria, lived in, Scotland) -> Scotland (1811ms)\nWhen was Queen Victoria born?\tthe 21st January\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, the 21st January) -> the 21st January (2767ms)\nWhen was Queen Victoria born?\tp.300\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, dies on, p.300) -> p.300 (2305ms)\nWhen was Queen Victoria born?\t14th\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria?s beloved husband Albert, died on, 14th) -> 14th (2305ms)\nWhen was Queen Victoria born?\tJanuary 22 , 1901\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (( Queen Victoria, died on, January 22 , 1901) -> January 22 , 1901 (2684ms)\nWhen was Queen Victoria born?\tthe 22nd\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (its namesake Queen Victoria, died on, the 22nd) -> the 22nd (2304ms)\nWhen was Queen Victoria born?\tJanuary 22nd , 1901\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (the Empress-Queen Victoria, died on, January 22nd , 1901) -> January 22nd , 1901 (2684ms)\nWhen was Queen Victoria born?\tMay 24th\t0.888888888889\tWhen was Queen Victoria born? -> $x: ($x, be birthday of, queen victoria) -> (May 24th, was the birthday of, Queen Victoria) -> May 24th (2304ms)\nWhen was Queen Victoria born?\t22 January 1901\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, 22 January 1901) -> 22 January 1901 (2061ms)\nWhen was Queen Victoria born?\t22nd January 1901\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, 22nd January 1901) -> 22nd January 1901 (2767ms)\nWhen was Queen Victoria born?\ttyphoid\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die of, $x) -> (Queen Victoria?s husband, died of, typhoid) -> typhoid (1873ms)\nWhen was Queen Victoria born?\t22 January\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, 22 January) -> 22 January (1873ms)\nWhen was Queen Victoria born?\t22nd January\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, 22nd January) -> 22nd January (2767ms)\nWhen was Queen Victoria born?\told age\t0.888888888889\tWhen was Queen Victoria born? -> $x: (queen victoria, die of, $x) -> (Queen Victoria, died of, old age) -> old age (1873ms)\nWhen was Queen Victoria born?\t1884\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria?s son Leopold, died in, 1884) -> 1884 (2778ms)\nWhen was Queen Victoria born?\tthe Halifax harbour\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, will do a tour of, the Halifax harbour) -> the Halifax harbour (2787ms)\nWhen was Queen Victoria born?\tKing Edward VII\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, as did, King Edward VII) -> King Edward VII (2787ms)\nWhen was Queen Victoria born?\tthe same\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did, the same) -> the same (2778ms)\nWhen was Queen Victoria born?\tSt . Edward?s Crown\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did wear, St . Edward?s Crown) -> St . Edward?s Crown (2778ms)\nWhen was Queen Victoria born?\twomen\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did n?t think, women) -> women (2778ms)\nWhen was Queen Victoria born?\tJanuary , 1901\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, January , 1901) -> January , 1901 (2782ms)\nWhen was Queen Victoria born?\tSir Thomas Brock\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, was done by, Sir Thomas Brock) -> Sir Thomas Brock (2782ms)\nWhen was Queen Victoria born?\tthe age\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did so up until, the age) -> the age (2778ms)\nWhen was Queen Victoria born?\tthe Villa Svezia\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, the Villa Svezia) -> the Villa Svezia (2787ms)\nWhen was Queen Victoria born?\ta great deal\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did, a great deal) -> a great deal (2787ms)\nWhen was Queen Victoria born?\t1861\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria 's husband, died in, 1861) -> 1861 (2787ms)\nWhen was Queen Victoria born?\tEngland 22.1.1901\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria Alexandrina, died in, England 22.1.1901) -> England 22.1.1901 (2772ms)\nWhen was Queen Victoria born?\tQueen Mary\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria?s small crown, did, Queen Mary) -> Queen Mary (2782ms)\nWhen was Queen Victoria born?\tJanuary and Churchill\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, January and Churchill) -> January and Churchill (2778ms)\nWhen was Queen Victoria born?\tthe mid-Victorian\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, was known to have died in, the mid-Victorian) -> the mid-Victorian (2772ms)\nWhen was Queen Victoria born?\tthe unfounded bad press\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did much to reverse, the unfounded bad press) -> the unfounded bad press (2782ms)\nWhen was Queen Victoria born?\tthe luxury\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did n?t even get, the luxury) -> the luxury (2778ms)\nWhen was Queen Victoria born?\ta Harbour Tour\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, will do, a Harbour Tour) -> a Harbour Tour (2787ms)\nWhen was Queen Victoria born?\tJanuary 1901\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, had died in, January 1901) -> January 1901 (2782ms)\nWhen was Queen Victoria born?\tJanuary of 1901\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, January of 1901) -> January of 1901 (2772ms)\nWhen was Queen Victoria born?\tformer residences\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, as do, former residences) -> former residences (2782ms)\nWhen was Queen Victoria born?\t19th Century America\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, got to do with, 19th Century America) -> 19th Century America (2782ms)\nWhen was Queen Victoria born?\tso\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did, so) -> so (2787ms)\nWhen was Queen Victoria born?\tJanuary\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, January) -> January (2786ms)\nWhen was Queen Victoria born?\tthe early development\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did much to promote, the early development) -> the early development (2782ms)\nWhen was Queen Victoria born?\t1901\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, 1901) -> 1901 (2787ms)\nWhen was Queen Victoria born?\ta mutation\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, actually did suffer, a mutation) -> a mutation (2778ms)\nWhen was Queen Victoria born?\tgrant\t0.777777777778\tWhen was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did, grant) -> grant (2782ms)\nWhen was Queen Victoria born?\tJuanita\t0.666666666667\tWhen was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (Juanita, did, Queen Victoria) -> Juanita (2787ms)\nWhen was Queen Victoria born?\tJohnson\t0.666666666667\tWhen was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (Johnson, So did, Queen Victoria) -> Johnson (2787ms)\nWhen was Queen Victoria born?\tthe prophecy\t0.666666666667\tWhen was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (the prophecy, did, her great , great grandmother Queen Victoria) -> the prophecy (2787ms)\nWhen was Queen Victoria born?\ttoothbrush\t0.666666666667\tWhen was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (toothbrush, did, Queen Victoria use) -> toothbrush (2787ms)\nWhen was Queen Victoria born?\thilarious audience participation\t0.666666666667\tWhen was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (hilarious audience participation, did, Queen Victoria Empress) -> hilarious audience participation (2787ms)\nWhen was Queen Victoria born?\tthe century\t0.666666666667\tWhen was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (the century, does the life of, the great Queen Victoria) -> the century (2787ms)\nWhen was Queen Victoria born?\tthe palace\t0.555555555556\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born at, the palace) -> the palace (2791ms)\nWhen was Queen Victoria born?\tPrincess Alexandria Victoria\t0.555555555556\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born as, Princess Alexandria Victoria) -> Princess Alexandria Victoria (2795ms)\nWhen was Queen Victoria born?\tthe royal residence\t0.555555555556\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born at, the royal residence) -> the royal residence (2795ms)\nWhen was Queen Victoria born?\tMay\t0.555555555556\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (\" Queen Victoria, was born the 24th of, May) -> May (2802ms)\nWhen was Queen Victoria born?\tthe royal home\t0.555555555556\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born at, the royal home) -> the royal home (2799ms)\nWhen was Queen Victoria born?\tAlexandrina Victoria\t0.555555555556\tWhen was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born, Alexandrina Victoria) -> Alexandrina Victoria (2791ms)\nWhen was Queen Victoria born?\ttyphoid fever\t-0.9999999999920001\tWhen was Queen Victoria born? -> $x: (queen victoria, die from, $x) -> (Queen Victoria, dies from, typhoid fever) -> typhoid fever (2810ms)\nWhen was Queen Victoria born?\tEpworth Hospital\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria Hospital, has died at, Epworth Hospital) -> Epworth Hospital (2817ms)\nWhen was Queen Victoria born?\tthe age of 81\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dies at, the age of 81) -> the age of 81 (2818ms)\nWhen was Queen Victoria born?\tthe day\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, the day) -> the day (2817ms)\nWhen was Queen Victoria born?\tthe age 82\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dies at, the age 82) -> the age 82 (2815ms)\nWhen was Queen Victoria born?\tThe event\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: ($x, invent, queen victoria) -> (The event, was invented by, Queen Victoria) -> The event (2810ms)\nWhen was Queen Victoria born?\trecently\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, had died, recently) -> recently (2815ms)\nWhen was Queen Victoria born?\tOsborne\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, Osborne) -> Osborne (2815ms)\nWhen was Queen Victoria born?\ttwenty years\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, twenty years) -> twenty years (2817ms)\nWhen was Queen Victoria born?\tthe same year\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, the same year) -> the same year (2818ms)\nWhen was Queen Victoria born?\tthe year\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, the year) -> the year (2817ms)\nWhen was Queen Victoria born?\tRichard Trevithick\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: ($x, invent, queen victoria) -> (Richard Trevithick, invented, the locomotive and Queen Victoria) -> Richard Trevithick (2813ms)\nWhen was Queen Victoria born?\t22nd January Half\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Our Queen Victoria, Died, 22nd January Half) -> 22nd January Half (2817ms)\nWhen was Queen Victoria born?\tthe time\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, the time) -> the time (2818ms)\nWhen was Queen Victoria born?\tCerebral hemorrhage\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: ($x, die, queen victoria) -> (Cerebral hemorrhage, People Who Died This Way, Queen Victoria) -> Cerebral hemorrhage (2813ms)\nWhen was Queen Victoria born?\ta martyr\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dies, a martyr) -> a martyr (2810ms)\nWhen was Queen Victoria born?\t80\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died aged, 80) -> 80 (2813ms)\nWhen was Queen Victoria born?\tage 81\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, age 81) -> age 81 (2817ms)\nWhen was Queen Victoria born?\tfinally\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dying, finally) -> finally (2815ms)\nWhen was Queen Victoria born?\tthe British throne\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: ($x, die, queen victoria) -> (the British throne, died, ? Queen Victoria Edward) -> the British throne (2818ms)\nWhen was Queen Victoria born?\tthe first days\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (The British Queen Victoria, died during, the first days) -> the first days (2813ms)\nWhen was Queen Victoria born?\tOsborne House\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, Osborne House) -> Osborne House (2815ms)\nWhen was Queen Victoria born?\tthe ripe old age\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, the ripe old age) -> the ripe old age (2815ms)\nWhen was Queen Victoria born?\tage 82\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Britain 's Queen Victoria, died at, age 82) -> age 82 (2818ms)\nWhen was Queen Victoria born?\t10.50 pm\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, 10.50 pm) -> 10.50 pm (2815ms)\nWhen was Queen Victoria born?\t10 years\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, 10 years) -> 10 years (2818ms)\nWhen was Queen Victoria born?\t81\t-0.9999999999940001\tWhen was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dies aged, 81) -> 81 (2815ms)\nWhen was Queen Victoria born?\tEmily\t-1.000000000003\tWhen was Queen Victoria born? -> $x: ($x, queen, victoria) -> (Emily, played a queen in, The Young Victoria) -> Emily (2818ms)\nWhen was Queen Victoria born?\tJustice Harper\t-1.000000000003\tWhen was Queen Victoria born? -> $x: ($x, queen, victoria) -> (Justice Harper, was appointed a Queen 's Counsel in, Victoria) -> Justice Harper (2818ms)\nWhen was Queen Victoria born?\tUna\t-1.111111111103\tWhen was Queen Victoria born? -> $x: ($x, look like, queen victoria) -> (Una, looks like, Queen Victoria) -> Una (2820ms)\nWhen was Queen Victoria born?\ta ?wesbian?\t-1.111111111103\tWhen was Queen Victoria born? -> $x: (queen victoria, look like, $x) -> (Queen Victoria, looked like, a ?wesbian?) -> a ?wesbian? (2820ms)\nWhen was Queen Victoria born?\tthe hag\t-1.111111111103\tWhen was Queen Victoria born? -> $x: ($x, look like, queen victoria) -> (the hag, look like, Queen Victoria) -> the hag (2820ms)\nWhen was Queen Victoria born?\ta hoodoo\t-1.111111111103\tWhen was Queen Victoria born? -> $x: ($x, look like, queen victoria) -> (a hoodoo, said to look like, Queen Victoria) -> a hoodoo (2820ms)\nWhen was Queen Victoria born?\ta love match\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, also married in, a love match) -> a love match (2822ms)\nWhen was Queen Victoria born?\tPrince Louis\t-1.111111111104\tWhen was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Prince Louis, married one of, Queen Victoria) -> Prince Louis (2822ms)\nWhen was Queen Victoria born?\t1840\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, was married in, 1840) -> 1840 (2822ms)\nWhen was Queen Victoria born?\tthe white , opulent gown\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married in, the white , opulent gown) -> the white , opulent gown (2822ms)\nWhen was Queen Victoria born?\tDracula\t-1.111111111104\tWhen was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Dracula, went on to marry, Queen Victoria) -> Dracula (2822ms)\nWhen was Queen Victoria born?\tFrederick\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, Frederick) -> Frederick (2821ms)\nWhen was Queen Victoria born?\tSachsen-Coburg and Gotha\t-1.111111111104\tWhen was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Sachsen-Coburg and Gotha, married, Queen Victoria) -> Sachsen-Coburg and Gotha (2820ms)\nWhen was Queen Victoria born?\tthe German Prince Albert\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, the German Prince Albert) -> the German Prince Albert (2822ms)\nWhen was Queen Victoria born?\tAlbert of Saxe\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, Albert of Saxe) -> Albert of Saxe (2820ms)\nWhen was Queen Victoria born?\tNorton\t-1.111111111104\tWhen was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Norton, was planning to marry, Queen Victoria) -> Norton (2821ms)\nWhen was Queen Victoria born?\tthe German prince\t-1.111111111104\tWhen was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (the German prince, married, Queen Victoria) -> the German prince (2822ms)\nWhen was Queen Victoria born?\tSaxe-Coburg and Gotha\t-1.111111111104\tWhen was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Saxe-Coburg and Gotha, married, England?s Queen Victoria) -> Saxe-Coburg and Gotha (2821ms)\nWhen was Queen Victoria born?\tthe German Prince\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> ('s Queen Victoria, married, the German Prince) -> the German Prince (2821ms)\nWhen was Queen Victoria born?\tthe events\t-1.111111111104\tWhen was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (the events, goes on to marry, Queen Victoria) -> the events (2822ms)\nWhen was Queen Victoria born?\tAlbert\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, Albert) -> Albert (2821ms)\nWhen was Queen Victoria born?\tPrince Ferdinand\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, Prince Ferdinand) -> Prince Ferdinand (2822ms)\nWhen was Queen Victoria born?\ta white wedding gown\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, was married in, a white wedding gown) -> a white wedding gown (2821ms)\nWhen was Queen Victoria born?\tthe love\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, marries, the love) -> the love (2821ms)\nWhen was Queen Victoria born?\twhite\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, by marrying in, white) -> white (2821ms)\nWhen was Queen Victoria born?\tthe German-born Prince Albert\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, the German-born Prince Albert) -> the German-born Prince Albert (2822ms)\nWhen was Queen Victoria born?\tPrince Albert\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> ('s Queen Victoria, married, Prince Albert) -> Prince Albert (2822ms)\nWhen was Queen Victoria born?\ta white dress\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (the 1840?s Queen Victoria, got married in, a white dress) -> a white dress (2822ms)\nWhen was Queen Victoria born?\ta German Duke\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, a German Duke) -> a German Duke (2822ms)\nWhen was Queen Victoria born?\t12 October 1888\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria Lollar, married on, 12 October 1888) -> 12 October 1888 (2822ms)\nWhen was Queen Victoria born?\ta white gown\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, was married in, a white gown) -> a white gown (2822ms)\nWhen was Queen Victoria born?\twhite dress\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, got married in, white dress) -> white dress (2822ms)\nWhen was Queen Victoria born?\ta Hohen\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (queen Victoria, married, a Hohen) -> a Hohen (2821ms)\nWhen was Queen Victoria born?\tGermany\t-1.111111111104\tWhen was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Germany, married, Queen Victoria) -> Germany (2820ms)\nWhen was Queen Victoria born?\tthe Crown Prince\t-1.111111111104\tWhen was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, the Crown Prince) -> the Crown Prince (2822ms)\nWhen was Queen Victoria born?\tthe mission\t-1.111111111114\tWhen was Queen Victoria born? -> $x: ($x, function, victoria) -> (the mission, functioned in, victoria county) -> the mission (2822ms)\nWhen was Queen Victoria born?\tthe region\t-1.111111111114\tWhen was Queen Victoria born? -> $x: ($x, be size of, victoria) -> (the region, is twice the size of, Victoria) -> the region (2822ms)\nWhen was Queen Victoria born?\texample\t-1.111111111114\tWhen was Queen Victoria born? -> $x: ($x, be size of, victoria) -> (example, is many times the size of, Victoria) -> example (2822ms)\nWhat is Jay-Z's real name?\tShawn Carter\t2.222222222212\tWhat is Jay-Z's real name? -> $x: ($x, be name of, jay z) -> (Shawn Carter, is also the real name of, rap artist Jay-Z) -> Shawn Carter (742ms)\nWhat is Jay-Z's real name?\tDef Jam\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (this article Jay-Z, was named CEO of, Def Jam) -> Def Jam (857ms)\nWhat is Jay-Z's real name?\tany part\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z and Oprah, are pretty much household names in, any part) -> any part (857ms)\nWhat is Jay-Z's real name?\tthe top 50 most hated New Yorker\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z & Nas, were named two of, the top 50 most hated New Yorker) -> the top 50 most hated New Yorker (742ms)\nWhat is Jay-Z's real name?\tpresident\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named, president) -> president (742ms)\nWhat is Jay-Z's real name?\tthe wireless power industry\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, is adding big-name juice to, the wireless power industry) -> the wireless power industry (742ms)\nWhat is Jay-Z's real name?\tbest rap performance\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named, best rap performance) -> best rap performance (742ms)\nWhat is Jay-Z's real name?\tan elite group\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named amongst, an elite group) -> an elite group (742ms)\nWhat is Jay-Z's real name?\tthe second highest earning musician\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named, the second highest earning musician) -> the second highest earning musician (742ms)\nWhat is Jay-Z's real name?\tDef Jam Records\t0.9999999999959999\tWhat is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named president of, Def Jam Records) -> Def Jam Records (858ms)\nWhat is Jay-Z's real name?\tSong Cry\t0.6666666666649999\tWhat is Jay-Z's real name? -> $x: ($x, be real, jay z) -> (Song Cry, was a real song about, Jay-Z) -> Song Cry (858ms)\nWhat is Jay-Z's real name?\tthe HELL\t0.5555555555559999\tWhat is Jay-Z's real name? -> $x: ($x, happen to, jay z) -> (the HELL, happen to, JayZ) -> the HELL (857ms)\nWhat is Jay-Z's real name?\tfull name\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (full name, is officially married to, Shaun ?Jay-Z? Carter) -> full name (997ms)\nWhat is Jay-Z's real name?\tThe singer\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The singer, secretly married, rapper Jay-Z) -> The singer (904ms)\nWhat is Jay-Z's real name?\tBeyonce?s\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Beyonce?s, married to, Jay Z) -> Beyonce?s (997ms)\nWhat is Jay-Z's real name?\tThe ' Halo ' singer\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The ' Halo ' singer, is married to, hip-hop superstar Jay-Z) -> The ' Halo ' singer (904ms)\nWhat is Jay-Z's real name?\tBeyonc?\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Beyonc?, is married to, rapper Jay-Z) -> Beyonc? (904ms)\nWhat is Jay-Z's real name?\tthe song\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (the song, will marry, fiance Jay-Z) -> the song (997ms)\nWhat is Jay-Z's real name?\tCommon\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, live with, jay z) -> (Common, played live with, Jay-Z.) -> Common (858ms)\nWhat is Jay-Z's real name?\t27-02-2009 2\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (27-02-2009 2, will marry, fiance Jay-Z) -> 27-02-2009 2 (997ms)\nWhat is Jay-Z's real name?\tUncategorized Beyonce\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Uncategorized Beyonce, may be married to, Jay-Z) -> Uncategorized Beyonce (998ms)\nWhat is Jay-Z's real name?\tThe R&B superstar\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The R&B superstar, is married to, rapper Jay-Z) -> The R&B superstar (904ms)\nWhat is Jay-Z's real name?\tsinger\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (singer, is married to, rapper Jay Z) -> singer (904ms)\nWhat is Jay-Z's real name?\tThe former Destiny?s Child singer\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The former Destiny?s Child singer, married, Jay-Z) -> The former Destiny?s Child singer (997ms)\nWhat is Jay-Z's real name?\tBeyonce\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Beyonce, married, Jay-Z) -> Beyonce (997ms)\nWhat is Jay-Z's real name?\tKnowles\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Knowles, has been married to, rapper Jay-Z) -> Knowles (904ms)\nWhat is Jay-Z's real name?\tThe 29-year-old singer\t0.444444444445\tWhat is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The 29-year-old singer, is married to, Jay-Z.) -> The 29-year-old singer (904ms)\nWhat is Jay-Z's real name?\tBlue Ivy Carter\t0.11111111110400007\tWhat is Jay-Z's real name? -> $x: ($x, be name of, beyonce) -> (Blue Ivy Carter, is the name of, Beyonce) -> Blue Ivy Carter (1015ms)\nWhat is Jay-Z's real name?\tthe care\t-0.5555555555539999\tWhat is Jay-Z's real name? -> $x: (beyonce, life in, $x) -> (Tiny Beyonce, lives happily in, the care) -> the care (1015ms)\nWhat is Jay-Z's real name?\tan award-winning journalist\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, is named, an award-winning journalist) -> an award-winning journalist (1226ms)\nWhat is Jay-Z's real name?\tWorld\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, World) -> World (1226ms)\nWhat is Jay-Z's real name?\tWorld ?s Most Beautiful Woman\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, World ?s Most Beautiful Woman) -> World ?s Most Beautiful Woman (1210ms)\nWhat is Jay-Z's real name?\tthe most Read More\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, the most Read More) -> the most Read More (1210ms)\nWhat is Jay-Z's real name?\tthe Most Beautiful Woman\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, has been named, the Most Beautiful Woman) -> the Most Beautiful Woman (1210ms)\nWhat is Jay-Z's real name?\tthe highest paid couple\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (his wife Beyonce, were also named, the highest paid couple) -> the highest paid couple (1226ms)\nWhat is Jay-Z's real name?\tPeople magazine\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, People magazine) -> People magazine (1209ms)\nWhat is Jay-Z's real name?\tThe World ?s Most Beautiful Person\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, is named, The World ?s Most Beautiful Person) -> The World ?s Most Beautiful Person (1209ms)\nWhat is Jay-Z's real name?\tthe world?s\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (new mother Beyonce, was named, the world?s) -> the world?s (1210ms)\nWhat is Jay-Z's real name?\tthe most beautiful woman in the world\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, the most beautiful woman in the world) -> the most beautiful woman in the world (1210ms)\nWhat is Jay-Z's real name?\tthe most successful musician\t-1.111111111112\tWhat is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (2010 Beyonce, has been named, the most successful musician) -> the most successful musician (1226ms)\nWhat is Jay-Z's real name?\tgood music\t-1.555555555552\tWhat is Jay-Z's real name? -> $x: ($x, happen to, beyonce) -> (good music, happened to, the Beyonce and Alicia Keys video) -> good music (1226ms)\nWhat is Jay-Z's real name?\tAfrican Movies ?\t-1.555555555552\tWhat is Jay-Z's real name? -> $x: ($x, happen to, beyonce) -> (African Movies ?, really happened to, Beyonce) -> African Movies ? (1226ms)\nWhat is Jay-Z's real name?\tthe rapper\t-1.6666666666630001\tWhat is Jay-Z's real name? -> $x: ($x, marry, beyonce) -> (the rapper, is married to, Beyonce) -> the rapper (1226ms)\nWhat is Jay-Z's real name?\tThe Shire\t-1.6666666666630001\tWhat is Jay-Z's real name? -> $x: ($x, marry, beyonce) -> (The Shire, married to, Beyonce) -> The Shire (1226ms)\nWhat is Jay-Z's real name?\tJay\t-1.6666666666630001\tWhat is Jay-Z's real name? -> $x: ($x, live with, beyonce) -> (Jay, met with Live Nation to, discuss a tour for Beyonce) -> Jay (1226ms)\nWhat is Jay-Z's real name?\tJay-Z\t-1.6666666666630001\tWhat is Jay-Z's real name? -> $x: ($x, marry, beyonce) -> (Jay-Z, is married to, singer Beyonce) -> Jay-Z (1226ms)\nWhy is a ladybug helpful?\tlight fixtures\t-0.555555555555\tWhy is a ladybug helpful? -> $x: ($x, help, ladybug) -> (light fixtures, helps to keep, ladybugs) -> light fixtures (700ms)\nWhy is a ladybug helpful?\tPre-conditioning\t-0.555555555555\tWhy is a ladybug helpful? -> $x: ($x, help, ladybug) -> (Pre-conditioning, helps satisfy, the ladybug) -> Pre-conditioning (700ms)\nWhy is a ladybug helpful?\tfennel\t-0.555555555555\tWhy is a ladybug helpful? -> $x: ($x, help, ladybug) -> (fennel, help attract, ladybugs and lacewings) -> fennel (700ms)\nWhy is a ladybug helpful?\tthe garden\t-0.555555555555\tWhy is a ladybug helpful? -> $x: ($x, help, ladybug) -> (the garden, helps draw, ladybugs) -> the garden (700ms)\nWhy is a ladybug helpful?\tthe player\t-0.555555555555\tWhy is a ladybug helpful? -> $x: ($x, help, ladybug) -> (the player, has to help, the ladybugs find their houses) -> the player (700ms)\nWhy is a ladybug helpful?\tthe park\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (LADYBUG Gardeners welcomes, help at, the park) -> the park (700ms)\nWhy is a ladybug helpful?\tPaw-Paw\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Ladybug, helped, Paw-Paw) -> Paw-Paw (701ms)\nWhy is a ladybug helpful?\taphid populations\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (ladybugs, will help control, aphid populations) -> aphid populations (701ms)\nWhy is a ladybug helpful?\tgarden pests\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Beautiful ladybugs, help control, garden pests) -> garden pests (700ms)\nWhy is a ladybug helpful?\tfarmers\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (ladybugs, help, farmers) -> farmers (700ms)\nWhy is a ladybug helpful?\tcontrol harmful bugs\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Ladybugs and praying mantises, will help, control harmful bugs) -> control harmful bugs (702ms)\nWhy is a ladybug helpful?\ta little\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (the ladybug.This, helped, a little) -> a little (700ms)\nWhy is a ladybug helpful?\ta severe problem\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (purchasing ladybugs, can help to control, a severe problem) -> a severe problem (701ms)\nWhy is a ladybug helpful?\tease childrens fear\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Twilight Ladybug, helps, ease childrens fear) -> ease childrens fear (701ms)\nWhy is a ladybug helpful?\teach child\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (LUCKY LADYBUGS, Help, each child) -> each child (702ms)\nWhy is a ladybug helpful?\tharmful bugs\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Ladybugs and praying mantises, will help control, harmful bugs) -> harmful bugs (701ms)\nWhy is a ladybug helpful?\tchildren\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (This lovely red ladybug, helps ease, children) -> children (701ms)\nWhy is a ladybug helpful?\tsmaller insects\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (some ladybugs, can help kill, smaller insects) -> smaller insects (701ms)\nWhy is a ladybug helpful?\tan early age\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Ladybug, helps trigger that good habit at, an early age) -> an early age (700ms)\nWhy is a ladybug helpful?\tscales\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Vedalia ladybugs, now help control, scales) -> scales (702ms)\nWhy is a ladybug helpful?\tpesky garden pests\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (ladybugs, help eliminate, pesky garden pests) -> pesky garden pests (700ms)\nWhy is a ladybug helpful?\tease children?s fear\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (The Twilight Ladybug, helps, ease children?s fear) -> ease children?s fear (702ms)\nWhy is a ladybug helpful?\tease children?s fear\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Twilight Ladybug, helps, ease children?s fear) -> ease children?s fear (700ms)\nWhy is a ladybug helpful?\tease children???s fear\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Twilight Ladybug, helps, ease children???s fear) -> ease children???s fear (700ms)\nWhy is a ladybug helpful?\tcontrol pests\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (ladybugs, helps, control pests) -> control pests (700ms)\nWhy is a ladybug helpful?\tthe homeless\t-1.555555555561\tWhy is a ladybug helpful? -> $x: (ladybug, help, $x) -> (the Ladybug Foundation, to help, the homeless) -> the homeless (700ms)\nHow many official languages does Switzerland have?\tGerman and French\t1.66666666666\tHow many official languages does Switzerland have? -> $x: ($x, be official language of, switzerland) -> (German and French, are the official languages of, Switzerland) -> German and French (1167ms)\nHow many official languages does Switzerland have?\tGerman\t1.66666666666\tHow many official languages does Switzerland have? -> $x: ($x, be official language of, switzerland) -> (German, is the only official language of, Germany Switzerland) -> German (1166ms)\nHow many official languages does Switzerland have?\tItaly\t1.66666666666\tHow many official languages does Switzerland have? -> $x: ($x, be official language of, switzerland) -> (Italy, is an official language of, Switzerland) -> Italy (1166ms)\nHow many official languages does Switzerland have?\tItalian\t1.66666666666\tHow many official languages does Switzerland have? -> $x: ($x, be official language of, switzerland) -> (Italian, is an official language of, Switzerland) -> Italian (1166ms)\nHow many official languages does Switzerland have?\tThe Swiss Franc\t1.333333333325\tHow many official languages does Switzerland have? -> $x: ($x, be official of, switzerland) -> (The Swiss Franc, is the official currency of, Switzerland) -> The Swiss Franc (1166ms)\nHow many official languages does Switzerland have?\tThe Swiss franc\t1.333333333325\tHow many official languages does Switzerland have? -> $x: ($x, be official of, switzerland) -> (The Swiss franc, is the official currency of, Switzerland) -> The Swiss franc (1430ms)\nHow many official languages does Switzerland have?\tChristianity\t1.222222222216\tHow many official languages does Switzerland have? -> $x: ($x, be religion of, switzerland) -> (Christianity, is the predominant religion of, Switzerland) -> Christianity (1430ms)\nHow many official languages does Switzerland have?\tFrench\t1.222222222215\tHow many official languages does Switzerland have? -> $x: ($x, be official in, switzerland) -> (French, is a co-official language in, Switzerland) -> French (1495ms)\nHow many official languages does Switzerland have?\tthe east\t1.222222222215\tHow many official languages does Switzerland have? -> $x: ($x, be official in, switzerland) -> (the east, is the only official National Park in, Switzerland) -> the east (1495ms)\nHow many official languages does Switzerland have?\tSwitzerland French\t1.222222222215\tHow many official languages does Switzerland have? -> $x: ($x, be official in, switzerland) -> (Switzerland French, is an official language in, Switzerland) -> Switzerland French (1495ms)\nHow many official languages does Switzerland have?\tThe zone\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The zone, is the size of, Switzerland) -> The zone (1668ms)\nHow many official languages does Switzerland have?\tan island\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (an island, is the size of, Switzerland) -> an island (1555ms)\nHow many official languages does Switzerland have?\tColorado\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Colorado, is six times the size of, Switzerland) -> Colorado (1635ms)\nHow many official languages does Switzerland have?\tthe Aksai Chin plateau\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (the Aksai Chin plateau, is almost the size of, Switzerland) -> the Aksai Chin plateau (1635ms)\nHow many official languages does Switzerland have?\tThe Kimberley\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The Kimberley, is the size of, Switzerland) -> The Kimberley (1635ms)\nHow many official languages does Switzerland have?\tBern Switzerland Temple\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (Bern Switzerland Temple, Official website, <http://www.lds.org/church/temples/bern-switzerland>) -> Bern Switzerland Temple (1635ms)\nHow many official languages does Switzerland have?\tRetoromansh\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Retoromansh, is spoken in, Switzerland) -> Retoromansh (1635ms)\nHow many official languages does Switzerland have?\tThe total area\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The total area, is approximately the size of, Switzerland) -> The total area (1647ms)\nHow many official languages does Switzerland have?\tThe liberated territory\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The liberated territory, was almost the size of, Switzerland) -> The liberated territory (1582ms)\nHow many official languages does Switzerland have?\tThe Kruger National Park\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The Kruger National Park, is the size of, Switzerland) -> The Kruger National Park (1582ms)\nHow many official languages does Switzerland have?\tFour million hectares\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Four million hectares, is roughly the size of, Switzerland) -> Four million hectares (1685ms)\nHow many official languages does Switzerland have?\tThree main languages\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Three main languages, are spoken in, Switzerland) -> Three main languages (1667ms)\nHow many official languages does Switzerland have?\tThe last European Celtic tongue\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (The last European Celtic tongue, was spoken in, Switzerland) -> The last European Celtic tongue (1647ms)\nHow many official languages does Switzerland have?\tThe Pans\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The Pans, are the size of, Switzerland) -> The Pans (1582ms)\nHow many official languages does Switzerland have?\tMarajo Island\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Marajo Island, is roughly the size of, Switzerland) -> Marajo Island (1647ms)\nHow many official languages does Switzerland have?\tBrazil\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Brazil, is twice the size of, Switzerland) -> Brazil (1668ms)\nHow many official languages does Switzerland have?\tMapQuest\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (MapQuest, has now open.MapQuest-websites for, Switzerland) -> MapQuest (1647ms)\nHow many official languages does Switzerland have?\tEnglish\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (English, is widely spoken in, Switzerland) -> English (1685ms)\nHow many official languages does Switzerland have?\tSouthland\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Southland, covers an area the size of, Switzerland) -> Southland (1569ms)\nHow many official languages does Switzerland have?\tJobsinZurich.com\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (JobsinZurich.com, is the only website in, Switzerland) -> JobsinZurich.com (1668ms)\nHow many official languages does Switzerland have?\tSwitzerland\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (Switzerland, Official website, <http://www.eff.org/testyourisp/switzerland/>) -> Switzerland (1668ms)\nHow many official languages does Switzerland have?\ta total land area\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (a total land area, is the same size as, Switzerland) -> a total land area (1635ms)\nHow many official languages does Switzerland have?\tthe world-Marajo Island\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (the world-Marajo Island, is roughly the size of, Switzerland) -> the world-Marajo Island (1685ms)\nHow many official languages does Switzerland have?\tBhutan\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Bhutan, is roughly the size of, Switzerland) -> Bhutan (1647ms)\nHow many official languages does Switzerland have?\tMakgadikgadi\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Makgadikgadi, are the size of, Switzerland) -> Makgadikgadi (1647ms)\nHow many official languages does Switzerland have?\tlects\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (lects, are spoken primarily in, Switzerland) -> lects (1555ms)\nHow many official languages does Switzerland have?\tAndrew\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Andrew, had been speaking in, Switzerland) -> Andrew (1582ms)\nHow many official languages does Switzerland have?\tlanguages\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (languages, are spoken in, Switzerland) -> languages (1635ms)\nHow many official languages does Switzerland have?\tAngloINFO\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (AngloINFO, launched its first website in, Switzerland) -> AngloINFO (1685ms)\nHow many official languages does Switzerland have?\tWhich languages\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Which languages, are spoken in, Switzerland) -> Which languages (1667ms)\nHow many official languages does Switzerland have?\tRomansch\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Romansch, is a language spoken mostly in, Switzerland) -> Romansch (1685ms)\nHow many official languages does Switzerland have?\tthe Thunder Dragon\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (the Thunder Dragon, is the size of, Switzerland) -> the Thunder Dragon (1569ms)\nHow many official languages does Switzerland have?\tThe Rufiji River Basin\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The Rufiji River Basin, is six times the size of, Switzerland) -> The Rufiji River Basin (1569ms)\nHow many official languages does Switzerland have?\tthe south-west coast\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (the south-west coast, will be twice the size of, Switzerland) -> the south-west coast (1635ms)\nHow many official languages does Switzerland have?\tJobsinGeneva.com\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (JobsinGeneva.com, is the only website in, Switzerland) -> JobsinGeneva.com (1582ms)\nHow many official languages does Switzerland have?\t?My\t1.111111111105\tHow many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (?My, is pretty much the size of, Switzerland) -> ?My (1647ms)\nHow many official languages does Switzerland have?\t11:35pm German\t-0.222222222222\tHow many official languages does Switzerland have? -> $x: ($x, be official language of, berne) -> (11:35pm German, is the official language of, Berne) -> 11:35pm German (1685ms)\nHow tall is the Washington Monument?\tExamples\t0.888888888878\tHow tall is the Washington Monument? -> $x: ($x, be height of, washington monument) -> (Examples, is the height of, the Washington Monument) -> Examples (605ms)\nHow tall is the Washington Monument?\tPel?e\t0.888888888878\tHow tall is the Washington Monument? -> $x: ($x, be height of, washington monument) -> (Pel?e, was twice the height of, the Washington Monument) -> Pel?e (605ms)\nHow tall is the Washington Monument?\tWashington\t-0.1111111111130001\tHow tall is the Washington Monument? -> $x: (washington monument, be tallest building in, $x) -> (the Washington Monument, is the tallest building in, Washington) -> Washington (605ms)\nHow old is Harriet Miers?\tPJV\t-1.11111111109\tHow old is Harriet Miers? -> $x: ($x, happen to, harriet miers) -> (PJV, happened to, Harriet Miers clear example) -> PJV (692ms)\nHow old is Harriet Miers?\tthe Senate\t-1.11111111109\tHow old is Harriet Miers? -> $x: ($x, happen to, harriet miers) -> (the Senate, happened last week to, Harriet Miers) -> the Senate (684ms)\nHow old is Harriet Miers?\t2005-10-05\t-1.22222222222\tHow old is Harriet Miers? -> $x: (harriet miers, date, $x) -> (Harriet Miers & anti-Christian Bias, Original air date, 2005-10-05) -> 2005-10-05 (729ms)\nHow old is Harriet Miers?\t1945-08-10\t-1.22222222222\tHow old is Harriet Miers? -> $x: (harriet miers, date, $x) -> (Harriet Miers, Date of birth, 1945-08-10) -> 1945-08-10 (729ms)\nHow old is Harriet Miers?\t2005-10-27\t-1.22222222222\tHow old is Harriet Miers? -> $x: (harriet miers, date, $x) -> (Harriet Miers Withdraws Nomination, Original air date, 2005-10-27) -> 2005-10-27 (729ms)\nWhen was King Louis XIV born?\tthe site\t-0.0\tWhen was King Louis XIV born? -> $x: (king louis xiv, live on, $x) -> (King Louis XIV, used to live on, the site) -> the site (885ms)\nWhen was King Louis XIV born?\t1638\t-0.0\tWhen was King Louis XIV born? -> $x: (louis xiv, be bear in, $x) -> (Louis XIV, was born in, 1638) -> 1638 (885ms)\nWhen was King Louis XIV born?\tthe royal ch?teau\t-0.0\tWhen was King Louis XIV born? -> $x: (king louis xiv, live in, $x) -> (King Louis XIV, lived in, the royal ch?teau) -> the royal ch?teau (885ms)\nWhen was King Louis XIV born?\tthe Chateau-Neuf\t-0.0\tWhen was King Louis XIV born? -> $x: (louis xiv, be bear in, $x) -> (Louis XIV, was born in, the Chateau-Neuf) -> the Chateau-Neuf (885ms)\nWhen was King Louis XIV born?\tthe land\t-0.0\tWhen was King Louis XIV born? -> $x: (king louis xiv, live on, $x) -> (King Louis XIV, had earlier lived on, the land) -> the land (885ms)\nWhen was King Louis XIV born?\tSeptember 1638\t-0.0\tWhen was King Louis XIV born? -> $x: (louis xiv, be bear in, $x) -> (Louis XIV, was born in, September 1638) -> September 1638 (885ms)\nWhen was King Louis XIV born?\tSeptember 1 , 1715\t-0.111111111111\tWhen was King Louis XIV born? -> $x: (king louis xiv, die on, $x) -> (King Louis XIV, died on, September 1 , 1715) -> September 1 , 1715 (885ms)\nWhen was King Louis XIV born?\t1715\t-0.222222222222\tWhen was King Louis XIV born? -> $x: (king louis xiv, die in, $x) -> (King Louis XIV, died in, 1715) -> 1715 (942ms)\nWhen was King Louis XIV born?\tFrance\t-0.333333333333\tWhen was King Louis XIV born? -> $x: ($x, do, king louis xiv) -> (France, did, King Louis XIV help) -> France (942ms)\nWhen was King Louis XIV born?\tRadio Frequency Coordination\t-1.5555555555540002\tWhen was King Louis XIV born? -> $x: ($x, establish, xiv) -> (Radio Frequency Coordination, was re-established at, CBS XIV) -> Radio Frequency Coordination (989ms)\nWhen was King Louis XIV born?\tthe Assessor\t-1.5555555555540002\tWhen was King Louis XIV born? -> $x: ($x, establish, xiv) -> (the Assessor, is established under, Section 8 Article XIV) -> the Assessor (1005ms)\nWhen was King Louis XIV born?\tParis\t-1.5555555555540002\tWhen was King Louis XIV born? -> $x: ($x, establish, louis xiv) -> (Paris, was established by, Louis XIV) -> Paris (989ms)\nWhen was King Louis XIV born?\tMajor General Vandegrift\t-1.5555555555540002\tWhen was King Louis XIV born? -> $x: ($x, establish, xiv) -> (Major General Vandegrift, established, the US XIV Corps) -> Major General Vandegrift (989ms)\nWhen was King Louis XIV born?\tthe National Stud\t-1.5555555555540002\tWhen was King Louis XIV born? -> $x: ($x, establish, louis xiv) -> (the National Stud, was established in, France . Louis XIV) -> the National Stud (1006ms)\nWhen was King Louis XIV born?\tcompliance\t-1.5555555555540002\tWhen was King Louis XIV born? -> $x: ($x, establish, xiv) -> (compliance, thus failed to establish, its Article XIV defence) -> compliance (989ms)\nWhen was King Louis XIV born?\tVan Robais\t-1.5555555555540002\tWhen was King Louis XIV born? -> $x: ($x, establish, xiv) -> (Van Robais, was established by, Lewis XIV.) -> Van Robais (989ms)\nWhen was King Louis XIV born?\tThe EMP Commission\t-1.5555555555540002\tWhen was King Louis XIV born? -> $x: ($x, establish, xiv) -> (The EMP Commission, was established pursuant to, title XIV) -> The EMP Commission (989ms)\nWhen was King Louis XIV born?\t1746\t-1.9999999999940001\tWhen was King Louis XIV born? -> $x: (king louis xiv, die, $x) -> (French King Louis XIV, dies, 1746) -> 1746 (1073ms)\nWhen was King Louis XIV born?\t1712\t-1.9999999999940001\tWhen was King Louis XIV born? -> $x: (king louis xiv, die, $x) -> (French king Louis XIV, dies, 1712) -> 1712 (1073ms)\nWhen was King Louis XIV born?\tfigure\t-1.9999999999940001\tWhen was King Louis XIV born? -> $x: (king louis xiv, invent, $x) -> (French king Louis xiv, invented, figure) -> figure (1073ms)\nWhen was King Louis XIV born?\tMaria-Teresa\t-2.111111111104\tWhen was King Louis XIV born? -> $x: (king louis xiv, marry, $x) -> (King Louis XIV, married, Maria-Teresa) -> Maria-Teresa (1073ms)\nWhere is the Salton Sea?\tCoachella Valley residents\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, cause, salton sea) -> (Coachella Valley residents, are caused by, a decaying Salton Sea) -> Coachella Valley residents (1286ms)\nWhere is the Salton Sea?\tRiverside County\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, contain, salton sea) -> (Riverside County, Contains, Salton Sea State Recreation Area) -> Riverside County (1544ms)\nWhere is the Salton Sea?\t92275\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, contain, salton sea) -> (92275, Contains, Salton Sea Airport) -> 92275 (1544ms)\nWhere is the Salton Sea?\tThe bill\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, establish, salton sea) -> (The bill, would establish, the Salton Sea Restoration Fund) -> The bill (1514ms)\nWhere is the Salton Sea?\tOreochromis mossambicus\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, found, salton sea) -> (Oreochromis mossambicus, Found in, Salton Sea) -> Oreochromis mossambicus (1569ms)\nWhere is the Salton Sea?\tSonny Bono Salton Sea National Wildlife Refuge\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, found, salton sea) -> (Sonny Bono Salton Sea National Wildlife Refuge, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sonny%20Bono%20Salton%20Sea%20National%20Wildlife%20Refuge) -> Sonny Bono Salton Sea National Wildlife Refuge (1544ms)\nWhere is the Salton Sea?\tsick and deceased pelicans\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, find, salton sea) -> (sick and deceased pelicans, found at, Salton Sea) -> sick and deceased pelicans (1286ms)\nWhere is the Salton Sea?\tdidnt\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, go, salton sea) -> (didnt, go to, Salton Sea) -> didnt (1326ms)\nWhere is the Salton Sea?\tfile\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, contain, salton sea) -> (file, contains, Salton Sea) -> file (1286ms)\nWhere is the Salton Sea?\ttwo years\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, create, salton sea) -> (two years, created, the Salton Sea) -> two years (1544ms)\nWhere is the Salton Sea?\tThomas Newman\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, produce, salton sea) -> (Thomas Newman, Releases produced, The Salton Sea) -> Thomas Newman (1386ms)\nWhere is the Salton Sea?\tissues\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, surround, salton sea) -> (issues, surrounding, the Salton Sea) -> issues (1128ms)\nWhere is the Salton Sea?\tthe rock formations\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, found, salton sea) -> (the rock formations, found just north of, the Salton Sea) -> the rock formations (1514ms)\nWhere is the Salton Sea?\tthe Colorado River\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, create, salton sea) -> (the Colorado River, created, the Salton Sea) -> the Colorado River (1286ms)\nWhere is the Salton Sea?\tthe pollutants\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, found, salton sea) -> (the pollutants, found in, the Salton Sea) -> the pollutants (1544ms)\nWhere is the Salton Sea?\tsolar\t0.555555555555\tWhere is the Salton Sea? -> $x: (salton sea, be for, $x) -> (the Salton Sea, are actually suited for, solar) -> solar (1326ms)\nWhere is the Salton Sea?\tSalton Sea State Recreation Area\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, found, salton sea) -> (Salton Sea State Recreation Area, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Salton%20Sea%20State%20Recreation%20Area) -> Salton Sea State Recreation Area (1544ms)\nWhere is the Salton Sea?\t1960 1960 Tonopah Test Range\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, replace, salton sea) -> (1960 1960 Tonopah Test Range, replaced, the Salton Sea Test Base) -> 1960 1960 Tonopah Test Range (1326ms)\nWhere is the Salton Sea?\tsalton sea airport\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, find, salton sea) -> (salton sea airport, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Salton%20Sea%20Airport) -> salton sea airport (1286ms)\nWhere is the Salton Sea?\tUnited States of America\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, contain, salton sea) -> (United States of America, Contains, Salton Sea Beach) -> United States of America (1286ms)\nWhere is the Salton Sea?\tdusty flatlands\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, replace, salton sea) -> (dusty flatlands, have replaced parts of, the Salton Sea) -> dusty flatlands (1544ms)\nWhere is the Salton Sea?\tthe survey\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, found, salton sea) -> (the survey, can be found under, # 4074A Salton Sea South '81) -> the survey (1514ms)\nWhere is the Salton Sea?\tyou?ll\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, find, salton sea) -> (you?ll, find, Salton Sea State Park) -> you?ll (1387ms)\nWhere is the Salton Sea?\tfolks\t0.555555555555\tWhere is the Salton Sea? -> $x: (salton sea, be for, $x) -> (the Salton Sea, was the premiere vacation destination for, folks) -> folks (1326ms)\nWhere is the Salton Sea?\tpost\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, go, salton sea) -> (post, Went to, the Salton Sea) -> post (1286ms)\nWhere is the Salton Sea?\tthe land\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, surround, salton sea) -> (the land, surrounding, the Salton Sea) -> the land (1326ms)\nWhere is the Salton Sea?\tCalifornia\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, contain, salton sea) -> (California, Contains, Salton Sea Beach) -> California (1247ms)\nWhere is the Salton Sea?\ta road\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, go, salton sea) -> (a road, went by, the Salton Sea) -> a road (1247ms)\nWhere is the Salton Sea?\tthe ?green path ?\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, go, salton sea) -> (the ?green path ?, will go ? to, the Salton Sea) -> the ?green path ? (1387ms)\nWhere is the Salton Sea?\tColorado Desert\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, contain, salton sea) -> (Colorado Desert, Contains, Salton Sea) -> Colorado Desert (1514ms)\nWhere is the Salton Sea?\t1905\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, create, salton sea) -> (1905, created, the Salton Sea) -> 1905 (1128ms)\nWhere is the Salton Sea?\tthe headwaters\t0.555555555555\tWhere is the Salton Sea? -> $x: (salton sea, be for, $x) -> (the Salton Sea, could be mistaken for, the headwaters) -> the headwaters (1326ms)\nWhere is the Salton Sea?\tSouthern California\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, contain, salton sea) -> (Southern California, Contains, Salton Sea) -> Southern California (1247ms)\nWhere is the Salton Sea?\tImperial County\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, contain, salton sea) -> (Imperial County, Contains, Salton Sea Airport) -> Imperial County (1514ms)\nWhere is the Salton Sea?\tThe flood\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, create, salton sea) -> (The flood, created, the Salton Sea) -> The flood (1326ms)\nWhere is the Salton Sea?\tA somewhat unique population\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, found, salton sea) -> (A somewhat unique population, is found in, the Salton Sea) -> A somewhat unique population (1387ms)\nWhere is the Salton Sea?\tthe revision\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, create, salton sea) -> (the revision, helped create, the Salton Sea Coalition) -> the revision (1387ms)\nWhere is the Salton Sea?\tBill Bernstein\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, produce, salton sea) -> (Bill Bernstein, Releases produced, The Salton Sea) -> Bill Bernstein (1386ms)\nWhere is the Salton Sea?\t3 million birds\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, find, salton sea) -> (3 million birds, can be found at, the Salton Sea) -> 3 million birds (1247ms)\nWhere is the Salton Sea?\thuman enjoyment\t0.555555555555\tWhere is the Salton Sea? -> $x: (salton sea, be for, $x) -> (the Salton Sea, was now unfit for, human enjoyment) -> human enjoyment (1128ms)\nWhere is the Salton Sea?\tKen Aguado\t0.555555555555\tWhere is the Salton Sea? -> $x: ($x, produce, salton sea) -> (Ken Aguado, Films Produced, The Salton Sea) -> Ken Aguado (1386ms)\nWhere is the Salton Sea?\tevery movie\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (every movie, is shot near, the Salton Sea) -> every movie (1736ms)\nWhere is the Salton Sea?\tNo nests\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (No nests, have been noted at, the Salton Sea) -> No nests (1704ms)\nWhere is the Salton Sea?\tFloods and crop damage\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Floods and crop damage, was incurred at, the Salton Sea) -> Floods and crop damage (1739ms)\nWhere is the Salton Sea?\ta director\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (a director, was, The Salton Sea) -> a director (1721ms)\nWhere is the Salton Sea?\ta motor home and Jeep\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (a motor home and Jeep, are stored near, the Salton Sea) -> a motor home and Jeep (1739ms)\nWhere is the Salton Sea?\tChristopher\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Christopher, is living near, the Salton Sea and training) -> Christopher (1722ms)\nWhere is the Salton Sea?\tThe park\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The park, was dedicated to, Salton Sea advocate Sonny Bono) -> The park (1738ms)\nWhere is the Salton Sea?\tthe data\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the data, has been gathered on, the Salton Sea) -> the data (1704ms)\nWhere is the Salton Sea?\tthe Gulf\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Gulf, has been recorded at, the Salton Sea) -> the Gulf (1722ms)\nWhere is the Salton Sea?\tthe bulk\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the bulk, is occupied by, the Salton Sea) -> the bulk (1636ms)\nWhere is the Salton Sea?\tthe valley\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the valley, had been filled by, the Salton Sea) -> the valley (1722ms)\nWhere is the Salton Sea?\tthe largest geothermal plant\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the largest geothermal plant, is called, the Salton Sea 6) -> the largest geothermal plant (1739ms)\nWhere is the Salton Sea?\tLake Cahuilla\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Lake Cahuilla, was the original name for, the Salton Sea) -> Lake Cahuilla (1736ms)\nWhere is the Salton Sea?\tmore than one hundred different species\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (more than one hundred different species, are at, the Salton Sea) -> more than one hundred different species (1738ms)\nWhere is the Salton Sea?\tRandy\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Randy, was more familiar with, the Salton Sea) -> Randy (1738ms)\nWhere is the Salton Sea?\tPalm Springs\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Palm Springs, is, the Salton Sea) -> Palm Springs (1736ms)\nWhere is the Salton Sea?\tBombay Beach\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Bombay Beach, is, the Salton Sea) -> Bombay Beach (1739ms)\nWhere is the Salton Sea?\thigh phosphate water\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (high phosphate water, is, the Salton sea) -> high phosphate water (1736ms)\nWhere is the Salton Sea?\tThe money\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The money, shall be paid into, the Salton Sea Restoration Fund) -> The money (1569ms)\nWhere is the Salton Sea?\tThe next step\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The next step, is available to fix, the Salton Sea) -> The next step (1738ms)\nWhere is the Salton Sea?\t70,000 shorebirds\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (70,000 shorebirds, were counted in, Salton Sea) -> 70,000 shorebirds (1569ms)\nWhere is the Salton Sea?\tthe Center\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Center, will be, the Salton Sea) -> the Center (1636ms)\nWhere is the Salton Sea?\tDesert Shores\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Desert Shores, is in, the Salton Sea area) -> Desert Shores (1636ms)\nWhere is the Salton Sea?\tThe location\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The location, is, the Salton Sea) -> The location (1739ms)\nWhere is the Salton Sea?\t400 species of birds\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (400 species of birds, are attracted to, the Salton Sea) -> 400 species of birds (1722ms)\nWhere is the Salton Sea?\tThe plant\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The plant, is located over, the Salton Sea Geothermal Field) -> The plant (1739ms)\nWhere is the Salton Sea?\t4 Salton Sea Q\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (4 Salton Sea Q, is the deal with, the Salton Sea) -> 4 Salton Sea Q (1736ms)\nWhere is the Salton Sea?\tDDT\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (DDT, has both been detected in, the Salton Sea) -> DDT (1736ms)\nWhere is the Salton Sea?\tYucca\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Yucca, is somewhere near, the Salton Sea) -> Yucca (1738ms)\nWhere is the Salton Sea?\tThe project\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The project, was designated as, Salton Sea Unit) -> The project (1738ms)\nWhere is the Salton Sea?\t420 bird species\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (420 bird species, have been recorded at, the Salton Sea) -> 420 bird species (1736ms)\nWhere is the Salton Sea?\tThe large lake\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The large lake, is, the Salton Sea) -> The large lake (1736ms)\nWhere is the Salton Sea?\tWestmorland\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Westmorland, is 12 miles south of, the Salton Sea) -> Westmorland (1739ms)\nWhere is the Salton Sea?\tscreenshot\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (screenshot, is taken from, Philip Bloom?s piece Salton Sea Beach) -> screenshot (1636ms)\nWhere is the Salton Sea?\tThe refuge\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The refuge, is bordered by, the Salton Sea) -> The refuge (1569ms)\nWhere is the Salton Sea?\tThe Glamis Sand Dunes\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The Glamis Sand Dunes, are located southeast of, the Salton Sea) -> The Glamis Sand Dunes (1569ms)\nWhere is the Salton Sea?\tthe meeting\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the meeting, was centered around, the Salton Sea 6 project) -> the meeting (1739ms)\nWhere is the Salton Sea?\tbirds\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (birds, have been counted at, the Salton Sea--almost half) -> birds (1722ms)\nWhere is the Salton Sea?\t01/09/01\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (01/09/01, 1AM, Salton Sea Optional Link URL) -> 01/09/01 (1736ms)\nWhere is the Salton Sea?\tthe east\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the east, is, the Salton Sea) -> the east (1739ms)\nWhere is the Salton Sea?\tThe following photos\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The following photos, are from, the Salton Sea) -> The following photos (1738ms)\nWhere is the Salton Sea?\tThe site\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The site, is located on, the Salton Sea) -> The site (1739ms)\nWhere is the Salton Sea?\ta lake\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (a lake, was dubbed, the Salton Sea) -> a lake (1704ms)\nWhere is the Salton Sea?\tApril 24\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (April 24, will be the fate of, the Salton Sea ? Panel Discussion) -> April 24 (1738ms)\nWhere is the Salton Sea?\tthe desert\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the desert, is, the Salton Sea) -> the desert (1739ms)\nWhere is the Salton Sea?\tthe approach\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the approach, being taken to, restore the Salton Sea) -> the approach (1636ms)\nWhere is the Salton Sea?\tAn obvious issue\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (An obvious issue, is the distance from, the Salton Sea) -> An obvious issue (1736ms)\nWhere is the Salton Sea?\tboating enthusiasts\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (boating enthusiasts, are lured to, buoyant Salton Sea) -> boating enthusiasts (1569ms)\nWhere is the Salton Sea?\tthe Los Angeles basin\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Los Angeles basin, are near, the Salton Sea) -> the Los Angeles basin (1636ms)\nWhere is the Salton Sea?\tTodd\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Todd, is highly knowledgeable of, the Salton Sea) -> Todd (1704ms)\nWhere is the Salton Sea?\twater\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (water, would have been sent to, the Salton Sea) -> water (1738ms)\nWhere is the Salton Sea?\tthe nation?s eyes\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the nation?s eyes, were finally turned toward, the Salton Sea) -> the nation?s eyes (1704ms)\nWhere is the Salton Sea?\tthe Coachella and Imperial valleys\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Coachella and Imperial valleys, is, the Salton Sea) -> the Coachella and Imperial valleys (1739ms)\nWhere is the Salton Sea?\tThe next outing\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The next outing, was out down to, the Salton Sea) -> The next outing (1636ms)\nWhere is the Salton Sea?\tBob\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Bob, was raised in, the Salton Sea area) -> Bob (1738ms)\nWhere is the Salton Sea?\tAlabama\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Alabama, is like, the Salton Sea) -> Alabama (1704ms)\nWhere is the Salton Sea?\tThe real issue\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The real issue, is the liability of, the Salton Sea) -> The real issue (1738ms)\nWhere is the Salton Sea?\tsea level\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (sea level, would be enough for, the Salton Sea) -> sea level (1736ms)\nWhere is the Salton Sea?\tIndio\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Indio, is, the Salton Sea) -> Indio (1738ms)\nWhere is the Salton Sea?\tSonny Bono Sonny\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Sonny Bono Sonny, was determined to save, the Salton Sea) -> Sonny Bono Sonny (1736ms)\nWhere is the Salton Sea?\tWheat Chex\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Wheat Chex, must be made in, the Salton Sea) -> Wheat Chex (1704ms)\nWhere is the Salton Sea?\tI?ll\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (I?ll, be speaking about, the Salton Sea) -> I?ll (1739ms)\nWhere is the Salton Sea?\tThe next stop\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The next stop, was, the Salton Sea) -> The next stop (1736ms)\nWhere is the Salton Sea?\tthe Pacific Institute\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Pacific Institute, are members of, the Salton Sea Coalition) -> the Pacific Institute (1722ms)\nWhere is the Salton Sea?\tThe band\t0.444444444444\tWhere is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The band, is from, the Salton Sea) -> The band (1569ms)\nWhere is the Salton Sea?\tthe sea\t-9.999778782798785E-13\tWhere is the Salton Sea? -> $x: (salton sea, do, $x) -> (the Salton Sea Authority, is trying to do with, the sea) -> the sea (1741ms)\nWhere is the Salton Sea?\tLinda\t-9.999778782798785E-13\tWhere is the Salton Sea? -> $x: (salton sea, do, $x) -> (the Salton Sea, so does, Linda) -> Linda (1741ms)\nWhere is the Salton Sea?\ta closed desert basin\t-1.999955756559757E-12\tWhere is the Salton Sea? -> $x: (salton sea, be locate in, $x) -> (The Salton Sea, is located in, a closed desert basin) -> a closed desert basin (1741ms)\nWhere is the Salton Sea?\tthe southeastern corner\t-1.999955756559757E-12\tWhere is the Salton Sea? -> $x: (salton sea, be locate in, $x) -> (The Salton Sea, is located in, the southeastern corner) -> the southeastern corner (1741ms)\nWhere is the Salton Sea?\tthe Sonoran Desert\t-1.999955756559757E-12\tWhere is the Salton Sea? -> $x: (salton sea, be locate in, $x) -> (The Salton Sea, is located in, the Sonoran Desert) -> the Sonoran Desert (1741ms)\nWhere is the Salton Sea?\t1955\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea State Park, was established in, 1955) -> 1955 (1742ms)\nWhere is the Salton Sea?\tserious trouble\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is in, serious trouble) -> serious trouble (1741ms)\nWhere is the Salton Sea?\tblack\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the present day Salton Sea, is shown in, black) -> black (1742ms)\nWhere is the Salton Sea?\tEcotopia\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, was featured in, Ecotopia) -> Ecotopia (1742ms)\nWhere is the Salton Sea?\tthe dust\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, was left in, the dust) -> the dust (1742ms)\nWhere is the Salton Sea?\ta poor state\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is still there in, a poor state) -> a poor state (1742ms)\nWhere is the Salton Sea?\tfact\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, was in, fact) -> fact (1742ms)\nWhere is the Salton Sea?\tnature\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, are often cyclical in, nature) -> nature (1742ms)\nWhere is the Salton Sea?\tthe hostile desert\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> ('s Salton Sea, is a fertile oasis in, the hostile desert) -> the hostile desert (1742ms)\nWhere is the Salton Sea?\tthe early part\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, was formed in, the early part) -> the early part (1742ms)\nWhere is the Salton Sea?\tMay\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (Salton Sea', will be out in, May) -> May (1742ms)\nWhere is the Salton Sea?\tan effort\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea Authority, was formed in, an effort) -> an effort (1742ms)\nWhere is the Salton Sea?\tthe Imperial Valley\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, is in, the Imperial Valley) -> the Imperial Valley (1742ms)\nWhere is the Salton Sea?\tthe middle\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is an ocean in, the middle) -> the middle (1742ms)\nWhere is the Salton Sea?\t2010\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, was ruled invalid in, 2010) -> 2010 (1742ms)\nWhere is the Salton Sea?\tthe top picks\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, is staying yet another week in, the top picks) -> the top picks (1742ms)\nWhere is the Salton Sea?\tSB 153\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, be included in, SB 153) -> SB 153 (1742ms)\nWhere is the Salton Sea?\ta former volcanic area\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is in, a former volcanic area) -> a former volcanic area (1742ms)\nWhere is the Salton Sea?\tmanagement\t-0.22222222222299992\tWhere is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is an experiment in, management) -> management (1741ms)\nWhere is the Salton Sea?\tPortal So Cal\t-0.555555555555\tWhere is the Salton Sea? -> $x: ($x, get, salton sea) -> (Portal So Cal, get together also down by, the Salton Sea) -> Portal So Cal (1743ms)\nWhere is the Salton Sea?\t1964 ? Tilapia\t-0.555555555555\tWhere is the Salton Sea? -> $x: ($x, get, salton sea) -> (1964 ? Tilapia, get into, Salton Sea) -> 1964 ? Tilapia (1742ms)\nWhat was the final score?\tan interception runback\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final Raider points, were scored on, an interception runback) -> an interception runback (2861ms)\nWhat was the final score?\tgritty high sheens\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final moments, are scored by, gritty high sheens) -> gritty high sheens (2861ms)\nWhat was the final score?\tAugust 25\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (His final two victyories, were scored on, August 25) -> August 25 (2327ms)\nWhat was the final score?\toof a lovely ball\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final Johnson goal, was scored, oof a lovely ball) -> oof a lovely ball (2327ms)\nWhat was the final score?\tKayla Grimsley\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final two goals, were scored by, Kayla Grimsley) -> Kayla Grimsley (2009ms)\nWhat was the final score?\tMag Farrell\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final try, was fittingly scored by, Mag Farrell) -> Mag Farrell (3593ms)\nWhat was the final score?\tevery possible way\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final result, was a total score in, every possible way) -> every possible way (3498ms)\nWhat was the final score?\t27.9 seconds\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (FA Cup final, was scored in, 27.9 seconds) -> 27.9 seconds (2649ms)\nWhat was the final score?\tdefenseman Curtis Leschyshyn\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> ('s final goal, was scored by, defenseman Curtis Leschyshyn) -> defenseman Curtis Leschyshyn (2009ms)\nWhat was the final score?\tSamper\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The fifth and final goal, was scored by, Samper) -> Samper (2009ms)\nWhat was the final score?\tLogan Ferrell\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final two goals, were scored by, Logan Ferrell) -> Logan Ferrell (2009ms)\nWhat was the final score?\tthe 72nd minute\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored in, the 72nd minute) -> the 72nd minute (1739ms)\nWhat was the final score?\tChelsea Russell\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Chelsea Russell) -> Chelsea Russell (2527ms)\nWhat was the final score?\tAlex Leavitt\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final two goals, were scored by, Alex Leavitt) -> Alex Leavitt (2526ms)\nWhat was the final score?\ta 30 ?\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (His final performance, was scored, a 30 ?) -> a 30 ? (3824ms)\nWhat was the final score?\tthe full test dataset\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final results, are scored on, the full test dataset) -> the full test dataset (2649ms)\nWhat was the final score?\tJack Henry\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Jack Henry) -> Jack Henry (2009ms)\nWhat was the final score?\tevery year\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final touchdown, is scored, every year) -> every year (3497ms)\nWhat was the final score?\tjunior Emily Cline\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, junior Emily Cline) -> junior Emily Cline (2649ms)\nWhat was the final score?\tDirk Graham\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final regular season goal, was scored by, Dirk Graham) -> Dirk Graham (3498ms)\nWhat was the final score?\tthe home team\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (One final run, would be scored by, the home team) -> the home team (3824ms)\nWhat was the final score?\t100 %\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (This final audit, was scored, 100 %) -> 100 % (2527ms)\nWhat was the final score?\tthe matches\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the quarter finals, were scored in, the matches) -> the matches (2830ms)\nWhat was the final score?\tNobuo Uematsu\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (Final Fantasy II, was originally scored by, Nobuo Uematsu) -> Nobuo Uematsu (3824ms)\nWhat was the final score?\tJak Cox\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final Stones try, was scored by, Jak Cox) -> Jak Cox (3593ms)\nWhat was the final score?\tRipson Fox\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final, was scored by, Ripson Fox) -> Ripson Fox (2830ms)\nWhat was the final score?\tthe shootout round\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final score, are scored during, the shootout round) -> the shootout round (3824ms)\nWhat was the final score?\tfold\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (final point, has been scored, fold) -> fold (3824ms)\nWhat was the final score?\tfar-reaching changes\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final result, was a score of, far-reaching changes) -> far-reaching changes (2649ms)\nWhat was the final score?\ttenths\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final, is scored in, tenths) -> tenths (3896ms)\nWhat was the final score?\tVincent Damphousse\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final regular season goal, was scored by, Vincent Damphousse) -> Vincent Damphousse (1739ms)\nWhat was the final score?\tthe other Silvertips newbie\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, the other Silvertips newbie) -> the other Silvertips newbie (1739ms)\nWhat was the final score?\tCoaching Systems\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (*Final participant tests, are scored at, Coaching Systems) -> Coaching Systems (3593ms)\nWhat was the final score?\t80mins\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final goal, was scored after, 80mins) -> 80mins (2009ms)\nWhat was the final score?\tBatum\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final 18, were scored by, Batum) -> Batum (2861ms)\nWhat was the final score?\tchamber orchestra\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (final Symphony, is scored for, chamber orchestra) -> chamber orchestra (3593ms)\nWhat was the final score?\ta la Balderdash\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final papers, are scored, a la Balderdash) -> a la Balderdash (2260ms)\nWhat was the final score?\tthe 17 :04 mark\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored at, the 17 :04 mark) -> the 17 :04 mark (2260ms)\nWhat was the final score?\tNathan Ahrens\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final Hanover goal, was scored by, Nathan Ahrens) -> Nathan Ahrens (3593ms)\nWhat was the final score?\tsurvival\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (his final examination, would be scored based on, survival) -> survival (2861ms)\nWhat was the final score?\ttwo days\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final score, is your total score from, two days) -> two days (1739ms)\nWhat was the final score?\ta corner\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final goal, was scored from, a corner) -> a corner (1739ms)\nWhat was the final score?\ta draw\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final verdict, was scored, a draw) -> a draw (2327ms)\nWhat was the final score?\tthe Faculty\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (a final goal, was scored by, the Faculty) -> the Faculty (2260ms)\nWhat was the final score?\tsecond-year\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final Bengals touchdown, was scored by, second-year) -> second-year (2861ms)\nWhat was the final score?\tItaly\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the quarter finals, were the scores from, Italy) -> Italy (3593ms)\nWhat was the final score?\tpoints\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (your final, will be scored objectively by, points) -> points (2527ms)\nWhat was the final score?\tIniesta\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final goal, was scored by, Iniesta) -> Iniesta (2830ms)\nWhat was the final score?\t1 , 2 , 3\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final bibliography, will be given a score of, 1 , 2 , 3) -> 1 , 2 , 3 (3498ms)\nWhat was the final score?\tthe scoring rubric\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final product, will be scored using, the scoring rubric) -> the scoring rubric (3824ms)\nWhat was the final score?\tthe following three parts\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (Final assessment, will be scored in, the following three parts) -> the following three parts (3824ms)\nWhat was the final score?\ta full orchestra\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final touches, include being scored by, a full orchestra) -> a full orchestra (3824ms)\nWhat was the final score?\tthe five ringside judges\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final round, was scored by, the five ringside judges) -> the five ringside judges (3824ms)\nWhat was the final score?\tNathan Zita\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (' final touchdown, was scored by, Nathan Zita) -> Nathan Zita (2526ms)\nWhat was the final score?\tthe trip\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final total, is your score for, the trip) -> the trip (2649ms)\nWhat was the final score?\ta scale\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final exams, are scored on, a scale) -> a scale (2009ms)\nWhat was the final score?\tthe ninth\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> ('s third and final run, was scored in, the ninth) -> the ninth (2861ms)\nWhat was the final score?\tfreshman Payton DeHart\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, freshman Payton DeHart) -> freshman Payton DeHart (2327ms)\nWhat was the final score?\tan empty net\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored on, an empty net) -> an empty net (3825ms)\nWhat was the final score?\ta force field method\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final result, was then scored using, a force field method) -> a force field method (3498ms)\nWhat was the final score?\t4.5\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final round, will be scored as, 4.5) -> 4.5 (1739ms)\nWhat was the final score?\tLam Jones\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final Jets touchdown, was scored by, Lam Jones) -> Lam Jones (2327ms)\nWhat was the final score?\tThomas Schreiber\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final first quarter goal, was scored by, Thomas Schreiber) -> Thomas Schreiber (2526ms)\nWhat was the final score?\ta header\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final goal, was scored by, a header) -> a header (3824ms)\nWhat was the final score?\tYankee pinch-runner Brett Gardner\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final run, was scored by, Yankee pinch-runner Brett Gardner) -> Yankee pinch-runner Brett Gardner (3593ms)\nWhat was the final score?\tteams\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final and, have been putting some good scores on, teams) -> teams (2830ms)\nWhat was the final score?\tthe merest hint\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final piece, was an electronic score with, the merest hint) -> the merest hint (3896ms)\nWhat was the final score?\tBSBA officials\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (final score total All targets, will be scored by, BSBA officials) -> BSBA officials (3824ms)\nWhat was the final score?\ta battling\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final three tries, were scored first by, a battling) -> a battling (2260ms)\nWhat was the final score?\tJunior\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Junior) -> Junior (3497ms)\nWhat was the final score?\tthe final 15 minutes\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final frame, was the only score of, the final 15 minutes) -> the final 15 minutes (2260ms)\nWhat was the final score?\tthe same criteria\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (Final Round Structure Sets, will be scored on, the same criteria) -> the same criteria (2861ms)\nWhat was the final score?\tSullinger and Lighty\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final 20 points, were scored by, Sullinger and Lighty) -> Sullinger and Lighty (2649ms)\nWhat was the final score?\tthe favorite\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final margin, is the final score of, the favorite) -> the favorite (3593ms)\nWhat was the final score?\twinger Gennadiy Likhachev\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the 1969 final, was scored by, winger Gennadiy Likhachev) -> winger Gennadiy Likhachev (2830ms)\nWhat was the final score?\tovertime\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, would be scored in, overtime) -> overtime (2009ms)\nWhat was the final score?\tthe penalty spot\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored from, the penalty spot) -> the penalty spot (2526ms)\nWhat was the final score?\tCanada?s #8\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Canada?s #8) -> Canada?s #8 (2527ms)\nWhat was the final score?\tthe 66th minute\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored in, the 66th minute) -> the 66th minute (3896ms)\nWhat was the final score?\tBlackpool?s Stan Mortensen\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final, was scored by, Blackpool?s Stan Mortensen) -> Blackpool?s Stan Mortensen (2830ms)\nWhat was the final score?\tstupid baserunning\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final run, was scored on, stupid baserunning) -> stupid baserunning (2260ms)\nWhat was the final score?\ta straight one-time pass\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (final goal, was scored off, a straight one-time pass) -> a straight one-time pass (2861ms)\nWhat was the final score?\tSaddington\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final try, was scored by, Saddington) -> Saddington (2327ms)\nWhat was the final score?\tOcean Bay\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final touchdown, was scored by, Ocean Bay) -> Ocean Bay (2830ms)\nWhat was the final score?\tBurks Falls\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (His final victory, was scored at, Burks Falls) -> Burks Falls (2260ms)\nWhat was the final score?\tHoneycutt\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Honeycutt) -> Honeycutt (2649ms)\nWhat was the final score?\tMorton Betts\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The first Cup Final goal, was scored by, Morton Betts) -> Morton Betts (3498ms)\nWhat was the final score?\tan open net\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored on, an open net) -> an open net (1739ms)\nWhat was the final score?\tEarl Cherniak Q.C.\t-0.0\tWhat was the final score? -> $x: (final, be score, $x) -> (the final rounds, were also scored by, Earl Cherniak Q.C.) -> Earl Cherniak Q.C. (2327ms)\nWhat was the final score?\thandicaps\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (handicaps, were applied to, the finals scores) -> handicaps (3919ms)\nWhat was the final score?\ta bonus point\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a bonus point, is added to, the final score) -> a bonus point (3904ms)\nWhat was the final score?\tmore points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (more points, are added to, the final score) -> more points (3896ms)\nWhat was the final score?\tTwelve metrics\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Twelve metrics, are used to calculate, the final score) -> Twelve metrics (3920ms)\nWhat was the final score?\tthe players\t-0.111111111111\tWhat was the final score? -> $x: ($x, re, final score) -> (the players, re-opened, the final score) -> the players (3912ms)\nWhat was the final score?\tFu and Han\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Fu and Han, are multiplied to get, the final score) -> Fu and Han (3927ms)\nWhat was the final score?\ttwo\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (two, would prove to be, the final score) -> two (3934ms)\nWhat was the final score?\tthe handicap\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the handicap, is applied to, the final score) -> the handicap (3904ms)\nWhat was the final score?\tthe day\t-0.111111111111\tWhat was the final score? -> $x: ($x, be t, final score) -> (the day, was n?t just about, the final score) -> the day (3896ms)\nWhat was the final score?\trespondents\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (respondents, were averaged to determine, the final score) -> respondents (3912ms)\nWhat was the final score?\ta factor\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a factor, is relevant to, the final score) -> a factor (3920ms)\nWhat was the final score?\ta pitch\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a pitch, proved to be, the final score) -> a pitch (3934ms)\nWhat was the final score?\tPatrick?s goal\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Patrick?s goal, proved to be, the final Islander score) -> Patrick?s goal (3934ms)\nWhat was the final score?\tDeSaverio?s goal\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (DeSaverio?s goal, would prove to be, the final CU score) -> DeSaverio?s goal (3904ms)\nWhat was the final score?\tthe winner\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the winner, is to use, the final score) -> the winner (3912ms)\nWhat was the final score?\tThe scores\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (The scores, are summed to produce, a final score) -> The scores (3904ms)\nWhat was the final score?\tKillian Canavan\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Killian Canavan, proved to be, the final score) -> Killian Canavan (3919ms)\nWhat was the final score?\tThe top two scores\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (The top two scores, are added to form, the final score) -> The top two scores (3904ms)\nWhat was the final score?\tthe purpose\t-0.111111111111\tWhat was the final score? -> $x: ($x, be t, final score) -> (the purpose, is n?t just to determine, the final score) -> the purpose (3904ms)\nWhat was the final score?\tThree points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Three points, are added to, the final score) -> Three points (3919ms)\nWhat was the final score?\tthe scores\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the scores, are averaged to, derive the final score) -> the scores (3927ms)\nWhat was the final score?\tthe tie-breaker game\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the tie-breaker game, was closest to, the actual final score) -> the tie-breaker game (3919ms)\nWhat was the final score?\tthe showcase\t-0.111111111111\tWhat was the final score? -> $x: ($x, constitute, final score) -> (the showcase, will constitute 10 % of, your final score) -> the showcase (3904ms)\nWhat was the final score?\tBonus points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Bonus points, are then added to, final scores) -> Bonus points (3912ms)\nWhat was the final score?\tVeterans ? preference credit\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Veterans ? preference credit, will be added to, the final score) -> Veterans ? preference credit (3904ms)\nWhat was the final score?\tTwo factors\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Two factors, are used to determine, the final score) -> Two factors (3912ms)\nWhat was the final score?\tVeterans ? preference points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Veterans ? preference points, are added to, the final score) -> Veterans ? preference points (3927ms)\nWhat was the final score?\tFan votes\t-0.111111111111\tWhat was the final score? -> $x: ($x, constitute, final score) -> (Fan votes, constitute, 20 percent of a coach 's final score) -> Fan votes (3919ms)\nWhat was the final score?\tthe opening hole scores\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the opening hole scores, are related to, the final total score) -> the opening hole scores (3934ms)\nWhat was the final score?\ta candidate\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a candidate, were averaged to determine, the final score) -> a candidate (3927ms)\nWhat was the final score?\tlucky gamers\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (lucky gamers, were able to, score Final Fantasy XIII) -> lucky gamers (3896ms)\nWhat was the final score?\tthe emotions\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the emotions, are varied accordingly to, the final cricket score) -> the emotions (3919ms)\nWhat was the final score?\tseven seniority points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (seven seniority points, are added to, the final score) -> seven seniority points (3934ms)\nWhat was the final score?\tThe points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (The points, are added to, the final score) -> The points (3912ms)\nWhat was the final score?\tthe media ?\t-0.111111111111\tWhat was the final score? -> $x: ($x, influence, final score) -> (the media ?, also influenced, the final score) -> the media ? (3896ms)\nWhat was the final score?\tevents\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (events, turned out to be, the final score) -> events (3904ms)\nWhat was the final score?\tself-worth scores\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (self-worth scores, are added to, your final score) -> self-worth scores (3904ms)\nWhat was the final score?\tVeterans preference credit\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Veterans preference credit, will be added to, the final score) -> Veterans preference credit (3912ms)\nWhat was the final score?\tMulti-player\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Multi-player, now has to be added to, the final score) -> Multi-player (3927ms)\nWhat was the final score?\te-mail results\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (e-mail results, be sure to include, the final score) -> e-mail results (3927ms)\nWhat was the final score?\tthe three trials\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the three trials, were summed to obtain, the final score) -> the three trials (3927ms)\nWhat was the final score?\tCriterion scores\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Criterion scores, were averaged to, determine the final score) -> Criterion scores (3934ms)\nWhat was the final score?\tthe total\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the total, are added to, the final score) -> the total (3920ms)\nWhat was the final score?\tThe last portion\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (The last portion, is attributable to, the final score) -> The last portion (3896ms)\nWhat was the final score?\ta difficult angle\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a difficult angle, proved to be, the final score) -> a difficult angle (3912ms)\nWhat was the final score?\ta Matador\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a Matador, turned out to be, the final score) -> a Matador (3934ms)\nWhat was the final score?\tThe goal\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (The goal, is to guess, the final combined score) -> The goal (3896ms)\nWhat was the final score?\tthe calculations\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the calculations, there had to be, a final score) -> the calculations (3912ms)\nWhat was the final score?\tThe game\t-0.111111111111\tWhat was the final score? -> $x: ($x, be t, final score) -> (The game, was n?t as close as, the 68-59 final score) -> The game (3934ms)\nWhat was the final score?\tthe limit\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the limit, is applied to, the final score) -> the limit (3896ms)\nWhat was the final score?\teach dollar\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (each dollar, was added to, their final score) -> each dollar (3904ms)\nWhat was the final score?\t5-2...which\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (5-2...which, turned out to be, the final score) -> 5-2...which (3934ms)\nWhat was the final score?\tNoebels ?\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Noebels ?, would prove to be, the final score) -> Noebels ? (3927ms)\nWhat was the final score?\ta specific settling table\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a specific settling table, is used to determine, the final score) -> a specific settling table (3927ms)\nWhat was the final score?\tT-Square and 20 points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (T-Square and 20 points, were added to, the final exam score) -> T-Square and 20 points (3904ms)\nWhat was the final score?\tthe evaluation process\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the evaluation process, was to share, the final scoring) -> the evaluation process (3912ms)\nWhat was the final score?\tthe score 2-1\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the score 2-1, proved to be, the final score) -> the score 2-1 (3934ms)\nWhat was the final score?\tA point spread\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (A point spread, is an adjustment to, the final score) -> A point spread (3904ms)\nWhat was the final score?\tEmployees\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Employees, are allowed to obtain, the final score) -> Employees (3896ms)\nWhat was the final score?\teach test\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (each test, is used to determine, the final score) -> each test (3912ms)\nWhat was the final score?\tthe game\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the game, is to get, a final better score) -> the game (3904ms)\nWhat was the final score?\tA general impression mark\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (A general impression mark, is also added to, the final score) -> A general impression mark (3912ms)\nWhat was the final score?\tthe two best flying rounds\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the two best flying rounds, are added to make, the final score) -> the two best flying rounds (3927ms)\nWhat was the final score?\tEach product\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Each product, will be added to, determine their final score) -> Each product (3927ms)\nWhat was the final score?\tdivision\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (division, are added to, the final score) -> division (3927ms)\nWhat was the final score?\tThe following categories\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (The following categories, are used to determine, the final score) -> The following categories (3896ms)\nWhat was the final score?\tthe puzzle\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the puzzle, will be added to, your final score) -> the puzzle (3927ms)\nWhat was the final score?\teach ball\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (each ball, will be added to, your final score) -> each ball (3904ms)\nWhat was the final score?\tno chance\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (no chance, proved to be, the final score) -> no chance (3896ms)\nWhat was the final score?\ta three-point lead\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a three-point lead, was reduced to, the final score) -> a three-point lead (3927ms)\nWhat was the final score?\tTie-breaker\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Tie-breaker, will be closest to, the final score) -> Tie-breaker (3920ms)\nWhat was the final score?\ta raw figure\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (a raw figure, was converted to, a final score) -> a raw figure (3934ms)\nWhat was the final score?\teach test run\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (each test run, are added to give, your final score) -> each test run (3896ms)\nWhat was the final score?\teach squad\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (each squad, are used to calculate, the final team score) -> each squad (3920ms)\nWhat was the final score?\tdouble skunks\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (double skunks, are then added to, your final score) -> double skunks (3912ms)\nWhat was the final score?\ta statistical model\t-0.111111111111\tWhat was the final score? -> $x: ($x, influence, final score) -> (a statistical model, influenced, the final JOA score) -> a statistical model (3919ms)\nWhat was the final score?\tthe remaining 3 scores\t-0.111111111111\tWhat was the final score? -> $x: ($x, constitute, final score) -> (the remaining 3 scores, will constitute, the final score) -> the remaining 3 scores (3912ms)\nWhat was the final score?\t5 points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (5 points, are added to, this final score) -> 5 points (3919ms)\nWhat was the final score?\tLetter grades\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Letter grades, will be assigned to, final adjusted scores) -> Letter grades (3927ms)\nWhat was the final score?\tattributes\t-0.111111111111\tWhat was the final score? -> $x: ($x, develop, final score) -> (attributes, develops, the final score and ranking) -> attributes (3912ms)\nWhat was the final score?\tthe first Celtic Ranch Cup\t-0.111111111111\tWhat was the final score? -> $x: ($x, be t, final score) -> (the first Celtic Ranch Cup, was n?t about, the final score) -> the first Celtic Ranch Cup (3934ms)\nWhat was the final score?\tVeterans Points\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (Veterans Points, are added to, the final score) -> Veterans Points (3904ms)\nWhat was the final score?\tthe homerun blast\t-0.111111111111\tWhat was the final score? -> $x: ($x, be to, final score) -> (the homerun blast, proved to be, Sassy Sisters final scoring) -> the homerun blast (3919ms)\nWhat was the final score?\tthe overtime period\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (the overtime period, did n?t provide, a final score) -> the overtime period (3940ms)\nWhat was the final score?\tThe runs\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (The runs, do count toward, the final score) -> The runs (3940ms)\nWhat was the final score?\ta Brahms symphony\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (a Brahms symphony, does n?t end with, a final score) -> a Brahms symphony (3934ms)\nWhat was the final score?\tproposition bets\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (proposition bets, have nothing to do with, the final score) -> proposition bets (3941ms)\nWhat was the final score?\tCliff Martinez\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (Cliff Martinez, was brought in to do, the final score) -> Cliff Martinez (3934ms)\nWhat was the final score?\tThe new line-up\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (The new line-up, did n?t play as badly as, the final score) -> The new line-up (3940ms)\nWhat was the final score?\t1997\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (1997, did, score one final victory) -> 1997 (3940ms)\nWhat was the final score?\tThe numbers\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (The numbers, really did n?t translate into, the final score) -> The numbers (3940ms)\nWhat was the final score?\tNJ?It\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (NJ?It, did n?t show up in, the final score) -> NJ?It (3940ms)\nWhat was the final score?\tLinear Appraisal Award\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (Linear Appraisal Award, Does with, a Final Score) -> Linear Appraisal Award (3934ms)\nWhat was the final score?\twinning game 4\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (winning game 4, did so by, a final score) -> winning game 4 (3940ms)\nWhat was the final score?\tThe defense\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (The defense, did its job until, the final UW scoring drive) -> The defense (3940ms)\nWhat was the final score?\thalftime\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (halftime, has very little to do with, the final score) -> halftime (3941ms)\nWhat was the final score?\tThe goaltend\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (The goaltend, also has nothing to do with, the final score) -> The goaltend (3934ms)\nWhat was the final score?\tCastres\t-0.111111111114\tWhat was the final score? -> $x: ($x, do, final score) -> (Castres, did manage, one final score) -> Castres (3940ms)\nWhat was the final score?\tn?t matter\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final score, did, n?t matter) -> n?t matter (3940ms)\nWhat was the final score?\tcourse\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final score, does n?t paint the complete picture of, course) -> course (3948ms)\nWhat was the final score?\ta group\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (the final score, did n?t matter for, a group) -> a group (3948ms)\nWhat was the final score?\ta good effort\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final score, failed to do justice to, a good effort) -> a good effort (3941ms)\nWhat was the final score?\tthe reality\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (Final score, did n?t reflect, the reality) -> the reality (3948ms)\nWhat was the final score?\tthe closeness\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final score, did n?t reflect, the closeness) -> the closeness (3948ms)\nWhat was the final score?\tthe true story about a game\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final score line, does nt tell, the true story about a game) -> the true story about a game (3948ms)\nWhat was the final score?\tmuch success\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (the final score, did n?t reflect too, much success) -> much success (3948ms)\nWhat was the final score?\tmatter\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (the final score, does, matter) -> matter (3948ms)\nWhat was the final score?\tthe match\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final score, did n?t reflect, the match) -> the match (3948ms)\nWhat was the final score?\tGood Strokes\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final score, does n?t reflect the quality of, Good Strokes) -> Good Strokes (3948ms)\nWhat was the final score?\tthe Bears justice\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final score, does n?t do, the Bears justice) -> the Bears justice (3948ms)\nWhat was the final score?\tthe ten positive items\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (the final total score, did, the ten positive items) -> the ten positive items (3948ms)\nWhat was the final score?\tthe Blazers\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (The final box score, did n?t look so bad for, the Blazers) -> the Blazers (3941ms)\nWhat was the final score?\tjustice\t-0.111111111117\tWhat was the final score? -> $x: (final score, do, $x) -> (the final score, to do, justice) -> justice (3948ms)\nWhat was the final score?\t2 Fans\t-0.222222222222\tWhat was the final score? -> $x: ($x, find, final score) -> (2 Fans, Find, final score) -> 2 Fans (3953ms)\nWhat was the final score?\tbird tickets\t-0.222222222222\tWhat was the final score? -> $x: ($x, find, final score) -> (bird tickets, now Find, the final scores) -> bird tickets (3953ms)\nWhat was the final score?\tdetail\t-0.222222222222\tWhat was the final score? -> $x: ($x, can be, final score) -> (detail, can be provided on, the final score reports) -> detail (3948ms)\nWhat was the final score?\tsections\t-0.222222222222\tWhat was the final score? -> $x: ($x, comprise, final score) -> (sections, comprise 40 % each of, the final score) -> sections (3953ms)\nWhat was the final score?\tthe three components\t-0.222222222222\tWhat was the final score? -> $x: ($x, comprise, final score) -> (the three components, comprises, the final SPPB score) -> the three components (3948ms)\nWhat was the final score?\tdifficulty level\t-0.222222222222\tWhat was the final score? -> $x: ($x, find, final score) -> (difficulty level, 2. Find, the final score) -> difficulty level (3953ms)\nWhat was the final score?\tstruggling Maryland\t-0.222222222222\tWhat was the final score? -> $x: ($x, find, final score) -> (struggling Maryland, find a way to keep, the final score) -> struggling Maryland (3953ms)\nWhat was the final score?\t3 Fans\t-0.222222222222\tWhat was the final score? -> $x: ($x, find, final score) -> (3 Fans, Find, final score) -> 3 Fans (3953ms)\nWhat was the final score?\t?Sounds Orchestral\t-0.222222222222\tWhat was the final score? -> $x: ($x, can be, final score) -> (?Sounds Orchestral, can be found here, Final score) -> ?Sounds Orchestral (3953ms)\nWhat was the final score?\tModeration results\t-0.222222222222\tWhat was the final score? -> $x: ($x, can be, final score) -> (Moderation results, can be used to assign, a final score) -> Moderation results (3953ms)\nWhat was the final score?\tthe English part\t-0.222222222222\tWhat was the final score? -> $x: ($x, comprise, final score) -> (the English part, comprises 20 % of, the final score) -> the English part (3953ms)\nWhat was the final score?\tThe shortcomings\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (The shortcomings, are evident in, the report 's final scores) -> The shortcomings (3964ms)\nWhat was the final score?\tThe 1-chips\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (The 1-chips, are only needed in, the final scoring) -> The 1-chips (3968ms)\nWhat was the final score?\tduplicates\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (duplicates, may be noted in, the final report or score) -> duplicates (3959ms)\nWhat was the final score?\tthe medal round\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the medal round, is counted twice in, the final scoring) -> the medal round (3958ms)\nWhat was the final score?\tthe three finalists\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the three finalists, were very close in, the final scores) -> the three finalists (3958ms)\nWhat was the final score?\tno modifications\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (no modifications, were presented in, the final Bishop score) -> no modifications (3964ms)\nWhat was the final score?\tLindell\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (Lindell, were the difference in, the final score) -> Lindell (3953ms)\nWhat was the final score?\tthe three centers\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the three centers, were comparable in, final scores) -> the three centers (3959ms)\nWhat was the final score?\tthe chosen model\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the chosen model, is considered in deciding, the final score) -> the chosen model (3953ms)\nWhat was the final score?\tBombings\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (Bombings, are counted in, the final score) -> Bombings (3964ms)\nWhat was the final score?\tNine\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (Nine, will be counted in, final scoring) -> Nine (3959ms)\nWhat was the final score?\tNo differences\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (No differences, were seen in, the final PSS score) -> No differences (3964ms)\nWhat was the final score?\tWebster?s games\t-0.222222222223\tWhat was the final score? -> $x: ($x, be all, final score) -> (Webster?s games, were all cancelled from, the final scoring) -> Webster?s games (3964ms)\nWhat was the final score?\tFarmers\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (Farmers, are only scored in, the final scoring) -> Farmers (3964ms)\nWhat was the final score?\tsock style\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (sock style, will be a factor in, the final score) -> sock style (3968ms)\nWhat was the final score?\tthe IIMs\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the IIMs, will be in receiving, final scores) -> the IIMs (3958ms)\nWhat was the final score?\tfield goal shooting\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (field goal shooting, was the difference in, the final score) -> field goal shooting (3964ms)\nWhat was the final score?\t10 points\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (10 points, is added already in, the final score) -> 10 points (3964ms)\nWhat was the final score?\tthe Jaguar Cup Regatta\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the Jaguar Cup Regatta, must be included in, the final scores) -> the Jaguar Cup Regatta (3959ms)\nWhat was the final score?\tL, O Overtime periods\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (L, O Overtime periods, are counted in, the final score) -> L, O Overtime periods (3968ms)\nWhat was the final score?\ta separate ribbon\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (a separate ribbon, is given double weight in, the final scores) -> a separate ribbon (3964ms)\nWhat was the final score?\tgeneral showmanship\t-0.222222222223\tWhat was the final score? -> $x: ($x, be all, final score) -> (general showmanship, are all reflected in, the final score) -> general showmanship (3964ms)\nWhat was the final score?\tthe USSR\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the USSR, is usually disadvantaged in, Final Scoring) -> the USSR (3964ms)\nWhat was the final score?\tthe two sides\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the two sides, was reflected in, the final score) -> the two sides (3959ms)\nWhat was the final score?\tThe most points\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (The most points, are earned in, the final scoring) -> The most points (3959ms)\nWhat was the final score?\tthe horse\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (the horse, is a factor in, his final score) -> the horse (3964ms)\nWhat was the final score?\tover-time periods\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (over-time periods, are included in, the final score) -> over-time periods (3953ms)\nWhat was the final score?\teach team?s answers\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (each team?s answers, will be included in, the final score) -> each team?s answers (3958ms)\nWhat was the final score?\tinformation\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (information, is cited in, Beyond The Final Score) -> information (3959ms)\nWhat was the final score?\tHits\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (Hits, are counted in, the final score) -> Hits (3959ms)\nWhat was the final score?\tAsia\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (Asia, is worth more in, Final Scoring) -> Asia (3964ms)\nWhat was the final score?\tsuccesses\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (successes, are added resulting in, their final health score) -> successes (3953ms)\nWhat was the final score?\tTim Ferguson\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (Tim Ferguson, proved to be the difference in, the final score) -> Tim Ferguson (3964ms)\nWhat was the final score?\tThe overall outcome\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (The overall outcome, was very one-sided ending in, a final score) -> The overall outcome (3959ms)\nWhat was the final score?\tKyle Arbuckle\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (Kyle Arbuckle, was inspirational in, the final term scoring) -> Kyle Arbuckle (3968ms)\nWhat was the final score?\tday 1\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (day 1, was included in, event final scores) -> day 1 (3964ms)\nWhat was the final score?\tboats\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (boats, were tied in, the final scoring) -> boats (3968ms)\nWhat was the final score?\textra innings\t-0.222222222223\tWhat was the final score? -> $x: ($x, be in, final score) -> (extra innings, are counted in, the final score) -> extra innings (3953ms)\nWhat was the final score?\tRemission\t-0.333333333333\tWhat was the final score? -> $x: ($x, define, final score) -> (Remission, was defined as, a final HRSD-17 score) -> Remission (3968ms)\nWhat was the final score?\tSTI\t-0.333333333333\tWhat was the final score? -> $x: ($x, include, final score) -> (STI, will include, a Final Assessment Score) -> STI (3973ms)\nWhat was the final score?\tFour variables\t-0.333333333333\tWhat was the final score? -> $x: ($x, be consider, final score) -> (Four variables, were considered for, the final score) -> Four variables (3973ms)\nWhat was the final score?\tSimilar Jedi\t-0.333333333333\tWhat was the final score? -> $x: ($x, include, final score) -> (Similar Jedi, include, FINAL SCORE) -> Similar Jedi (3973ms)\nWhat was the final score?\tthe address\t-0.333333333333\tWhat was the final score? -> $x: ($x, include, final score) -> (the address, will include, a Final Score Report) -> the address (3969ms)\nWhat was the final score?\tRadio\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (the final score, was something like, Radio) -> Radio (3978ms)\nWhat was the final score?\t2-12\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (Final score, was something like, 2-12) -> 2-12 (3978ms)\nWhat was the final score?\t9-4\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (the final score, was something like, 9-4) -> 9-4 (3973ms)\nWhat was the final score?\t15-10\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 15-10) -> 15-10 (3978ms)\nWhat was the final score?\t261\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (Final score, was something like, 261) -> 261 (3973ms)\nWhat was the final score?\t53-6\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 53-6) -> 53-6 (3978ms)\nWhat was the final score?\t6-1\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 6-1) -> 6-1 (3978ms)\nWhat was the final score?\t19-16\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (the final score, will be something like, 19-16) -> 19-16 (3978ms)\nWhat was the final score?\t14\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 14) -> 14 (3978ms)\nWhat was the final score?\t7-6\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (the final score, could be something like, 7-6) -> 7-6 (3978ms)\nWhat was the final score?\t84 ? 40\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (the final score, was like, 84 ? 40) -> 84 ? 40 (3978ms)\nWhat was the final score?\t162-158\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 162-158) -> 162-158 (3973ms)\nWhat was the final score?\t28-22\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (the final score, was something like, 28-22) -> 28-22 (3978ms)\nWhat was the final score?\tFFXII\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (the final score, would be like for, FFXII) -> FFXII (3973ms)\nWhat was the final score?\t8-6\t-0.333333333334\tWhat was the final score? -> $x: (final score, be like, $x) -> (the final score, was something like, 8-6) -> 8-6 (3978ms)\nWhat was the final score?\tthe nation\t-0.444444444445\tWhat was the final score? -> $x: ($x, be th, final score) -> (the nation, is 26th nationally for, final round scoring average) -> the nation (3978ms)\nWhat was the final score?\tNo account\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (No account, has been taken of, final scores) -> No account (4001ms)\nWhat was the final score?\tWisconsin\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Wisconsin, came in with, a final score) -> Wisconsin (4013ms)\nWhat was the final score?\t14-1\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (14-1, was, the final score) -> 14-1 (4001ms)\nWhat was the final score?\tHOA\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (the final scores, are for, HOA) -> HOA (3982ms)\nWhat was the final score?\tthe first round\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (the first round, will get an extra point in, the final score) -> the first round (4019ms)\nWhat was the final score?\t2 GP\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (Final scores, must be cumulative points for, 2 GP) -> 2 GP (3994ms)\nWhat was the final score?\tstrategic thinking\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (strategic thinking, make a big difference in, your final score) -> strategic thinking (4010ms)\nWhat was the final score?\tCoach Mike\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The 81-77 final score, was surely spit-worthy for, Coach Mike) -> Coach Mike (4013ms)\nWhat was the final score?\tHard-rep\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Hard-rep, is used for, final scoring) -> Hard-rep (3986ms)\nWhat was the final score?\teach individual\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (A final multiple score, is computed for, each individual) -> each individual (4023ms)\nWhat was the final score?\tAtl?tico\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 4-3 for, Atl?tico) -> Atl?tico (4019ms)\nWhat was the final score?\tJim Kelly\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Jim Kelly, came in with, a final score) -> Jim Kelly (4020ms)\nWhat was the final score?\tthe hard drive\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (the hard drive, only plays a small role in, the final score) -> the hard drive (4004ms)\nWhat was the final score?\tthe final results\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (final score, is totalled for, the final results) -> the final results (4019ms)\nWhat was the final score?\tthe 9th my heart\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the 9th my heart, was pounding, ...FINAL SCORE) -> the 9th my heart (3997ms)\nWhat was the final score?\tThe following distribution\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The following distribution, is based on, final scores) -> The following distribution (3998ms)\nWhat was the final score?\tfield goals\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (field goals, reflects the difference in, the final score) -> field goals (4023ms)\nWhat was the final score?\tNorth Wilkes\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was n?t so good for, North Wilkes) -> North Wilkes (4015ms)\nWhat was the final score?\tmuch mutual respect\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (much mutual respect, reflected in, the final score) -> much mutual respect (4019ms)\nWhat was the final score?\tlowest score\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (lowest score, goes first in, final scoring round) -> lowest score (4019ms)\nWhat was the final score?\tBrenner\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (Brenner, would get credit for, the Tigers 4th and final score) -> Brenner (4004ms)\nWhat was the final score?\t34\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (34, was, the final score) -> 34 (4010ms)\nWhat was the final score?\tthe situation\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (the situation, maintain alive in, the final score) -> the situation (4022ms)\nWhat was the final score?\t6-3\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (6-3, was, the final score) -> 6-3 (4004ms)\nWhat was the final score?\tlack\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (final score versus language, cannot be uncovered for, lack) -> lack (4020ms)\nWhat was the final score?\tthe outcome\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the outcome, was, the final score) -> the outcome (4004ms)\nWhat was the final score?\tthe Eagles\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the Eagles, is, your predicted final score) -> the Eagles (3997ms)\nWhat was the final score?\t1-1\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (1-1, is, your final score) -> 1-1 (4004ms)\nWhat was the final score?\tMontreal\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (Final score, was 5-3 for, Montreal) -> Montreal (3994ms)\nWhat was the final score?\tHannah Leatherman\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Hannah Leatherman, came in with, a final score) -> Hannah Leatherman (4004ms)\nWhat was the final score?\t3-3\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (3-3, was, the final score) -> 3-3 (4001ms)\nWhat was the final score?\tThe Award committee\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The Award committee, is taken into, final scoring) -> The Award committee (4008ms)\nWhat was the final score?\tthe 3 points\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the 3 points, were taken, Final score) -> the 3 points (4013ms)\nWhat was the final score?\tWindsor Caboto\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 5-1 for, Windsor Caboto) -> Windsor Caboto (3990ms)\nWhat was the final score?\tplayers\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (players, Please call in, your final scores) -> players (3982ms)\nWhat was the final score?\teach grid cell\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (a final normal score, was calculated for, each grid cell) -> each grid cell (3997ms)\nWhat was the final score?\tgrades 4-12\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final scoring guides, are validated for, grades 4-12) -> grades 4-12 (3990ms)\nWhat was the final score?\t1 field\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (1 field, is, the official final score) -> 1 field (3986ms)\nWhat was the final score?\tKansas City\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 1-nil for, Kansas City) -> Kansas City (4022ms)\nWhat was the final score?\tthe pitcher ?\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the pitcher ?, will be a low scoring affair with, final scores) -> the pitcher ? (3982ms)\nWhat was the final score?\t13\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (13, was, the final score) -> 13 (3997ms)\nWhat was the final score?\tBoston\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 5-3 for, Boston) -> Boston (4015ms)\nWhat was the final score?\teach contestant\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (each contestant, is, their final score) -> each contestant (4020ms)\nWhat was the final score?\t42-31\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (42-31, was, the final score) -> 42-31 (3998ms)\nWhat was the final score?\tlol\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (lol, is, my final score) -> lol (4013ms)\nWhat was the final score?\teach weakness\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (each weakness, are added together to get, a final score) -> each weakness (3982ms)\nWhat was the final score?\tany\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (No final score report, is provided for, any) -> any (4015ms)\nWhat was the final score?\tthe Tide\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (the final score and victory, should be there for, the Tide) -> the Tide (4015ms)\nWhat was the final score?\ta ResultSet\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (a ResultSet, has methods to get, the final total score) -> a ResultSet (3990ms)\nWhat was the final score?\tSky Sports\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (the BBC?s Final Score, are excellent news for, Sky Sports) -> Sky Sports (4024ms)\nWhat was the final score?\tobvious reasons\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (No final scores, will be given for, obvious reasons) -> obvious reasons (4019ms)\nWhat was the final score?\t75 Diggs4-3\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (75 Diggs4-3, was, the final score) -> 75 Diggs4-3 (4010ms)\nWhat was the final score?\tHeerenveen\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Heerenveen, resulted in, the final score) -> Heerenveen (4017ms)\nWhat was the final score?\ta cross\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (a cross, slotted in, the final score) -> a cross (3994ms)\nWhat was the final score?\teach Level\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final minimum Pass Score, is 50 % for, each Level) -> each Level (4023ms)\nWhat was the final score?\tthe first quarter match\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, is complete for, the first quarter match) -> the first quarter match (3982ms)\nWhat was the final score?\tthe second half\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the second half, was, the final score) -> the second half (4004ms)\nWhat was the final score?\tTudi\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Tudi, turned in, a final round score) -> Tudi (4022ms)\nWhat was the final score?\tthe browser\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (the final score, is a real indicator for, the browser) -> the browser (3994ms)\nWhat was the final score?\tfile\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (the final score, is two for, file) -> file (3986ms)\nWhat was the final score?\tTory Nelson\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (Final score, was 1-0 for, Tory Nelson) -> Tory Nelson (4015ms)\nWhat was the final score?\tThe Crusaders\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (The Crusaders, got their second win with, the final score) -> The Crusaders (4001ms)\nWhat was the final score?\tthe Lions\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was actually flattering for, the Lions) -> the Lions (4023ms)\nWhat was the final score?\tthe Bruins\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (Final score, was 4-2 for, the Bruins) -> the Bruins (3990ms)\nWhat was the final score?\tBroughton\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Broughton, resulted in, a final score) -> Broughton (4004ms)\nWhat was the final score?\tDebbie Hockley\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Debbie Hockley, has the highest score in, a final scoring 141) -> Debbie Hockley (4020ms)\nWhat was the final score?\tYeah\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Yeah, was, the final score) -> Yeah (4001ms)\nWhat was the final score?\ttotal weight\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (total weight, is, the final score) -> total weight (4024ms)\nWhat was the final score?\taward ranking\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final point score, is the basis for, award ranking) -> award ranking (4023ms)\nWhat was the final score?\tthe present score\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the present score, is, the final score) -> the present score (4010ms)\nWhat was the final score?\trelatively low Difficulty marks\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (relatively low Difficulty marks, resulted in, a final score) -> relatively low Difficulty marks (4017ms)\nWhat was the final score?\tinterview\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, is invited for, interview) -> interview (4019ms)\nWhat was the final score?\tMacnab\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 51-43 for, Macnab) -> Macnab (3986ms)\nWhat was the final score?\tmanuscripts\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (final scoring, will be made for, manuscripts) -> manuscripts (4024ms)\nWhat was the final score?\tNathan Anderson\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Nathan Anderson, would drive in, the final score) -> Nathan Anderson (4010ms)\nWhat was the final score?\tScholarships\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Scholarships, are awarded based on, final scores) -> Scholarships (4022ms)\nWhat was the final score?\twinners\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, is for, winners) -> winners (4010ms)\nWhat was the final score?\t21 to 7\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (21 to 7, was, the final score) -> 21 to 7 (4013ms)\nWhat was the final score?\tThe ?line ?\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The ?line ?, is, the total final score) -> The ?line ? (4008ms)\nWhat was the final score?\tS?o Paulo\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (S?o Paulo, was, the final score) -> S?o Paulo (4001ms)\nWhat was the final score?\tSophomore quarterback Clay Allen\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Sophomore quarterback Clay Allen, put in, the final score) -> Sophomore quarterback Clay Allen (4004ms)\nWhat was the final score?\t4-2\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (4-2, was, the final score) -> 4-2 (4024ms)\nWhat was the final score?\tCornwall\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (behind.The final score, was 4-2 for, Cornwall) -> Cornwall (3997ms)\nWhat was the final score?\tThe only down side\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The only down side, was, the final score) -> The only down side (4022ms)\nWhat was the final score?\ttwo percentage points\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (two percentage points, will be deducted from, final score) -> two percentage points (4013ms)\nWhat was the final score?\tthe only question\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the only question, is, the final score) -> the only question (4024ms)\nWhat was the final score?\tCleveland Junior Jacks\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 4-3 for, Cleveland Junior Jacks) -> Cleveland Junior Jacks (4017ms)\nWhat was the final score?\tLast years contest info\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Last years contest info, was here with, final scoring) -> Last years contest info (4008ms)\nWhat was the final score?\tcount\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (count, is, the final score) -> count (4020ms)\nWhat was the final score?\tmore than three goal difference\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (final score, will be for, more than three goal difference) -> more than three goal difference (4013ms)\nWhat was the final score?\tsenior Jack Reeder\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (senior Jack Reeder, were, the final scoring Spartans) -> senior Jack Reeder (4007ms)\nWhat was the final score?\tUkraine\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 1-0 for, Ukraine) -> Ukraine (3997ms)\nWhat was the final score?\t37-21\t-0.555555555556\tWhat was the final score? -> $x: ($x, could be, final score) -> (37-21, could be, the most deceiving final score) -> 37-21 (4001ms)\nWhat was the final score?\tTeam USA\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (Team USA, got its first victory with, a final score) -> Team USA (3990ms)\nWhat was the final score?\teither side\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was hardly ideal for, either side) -> either side (4015ms)\nWhat was the final score?\tfull story\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 2-1 Click here for, full story) -> full story (3998ms)\nWhat was the final score?\teach game\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (each game, will be determined by, final score) -> each game (4013ms)\nWhat was the final score?\tpossession\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (possession, are inconsistent with, final score) -> possession (4008ms)\nWhat was the final score?\teach strategy\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (Final scores, were calculated for, each strategy) -> each strategy (4023ms)\nWhat was the final score?\t86-54\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (86-54, was, the final score) -> 86-54 (3990ms)\nWhat was the final score?\tthe Russian player\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 1-3 for, the Russian player) -> the Russian player (4001ms)\nWhat was the final score?\tthe red discussion\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (the red discussion, gets, a higher final score) -> the red discussion (4020ms)\nWhat was the final score?\tup to 30 credits\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (up to 30 credits, may be granted for, final scores) -> up to 30 credits (4013ms)\nWhat was the final score?\tComposite scores\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Composite scores, are turned into, final scores) -> Composite scores (4001ms)\nWhat was the final score?\tthe rallymaster\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (the rallymaster, plays a much bigger role in, final scores) -> the rallymaster (4004ms)\nWhat was the final score?\t3-2\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (3-2, was, the final winning score) -> 3-2 (4004ms)\nWhat was the final score?\tArmstrong-Smith\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (Final score, was 7-1 for, Armstrong-Smith) -> Armstrong-Smith (4023ms)\nWhat was the final score?\tFebruary 14\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (February 14, was, the final score) -> February 14 (3986ms)\nWhat was the final score?\tTen points\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Ten points, are deducted from, final score) -> Ten points (4017ms)\nWhat was the final score?\tThe only question\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The only question, is, the final score) -> The only question (4015ms)\nWhat was the final score?\tManchester United\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (the final score, was status quo for, Manchester United) -> Manchester United (4023ms)\nWhat was the final score?\tChristine O'Donnell\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, is 4-0 for, Christine O'Donnell) -> Christine O'Donnell (3986ms)\nWhat was the final score?\t3-0\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (3-0, was, the final score) -> 3-0 (3998ms)\nWhat was the final score?\tevent 1\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (Final scores and ranks, are available for, event 1) -> event 1 (4010ms)\nWhat was the final score?\tthe 2012 Eagles\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The 74-57 final score, is an average win for, the 2012 Eagles) -> the 2012 Eagles (4008ms)\nWhat was the final score?\tany games\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (any games, was, the final scores) -> any games (3982ms)\nWhat was the final score?\tMan\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 2-1-1 for, Man) -> Man (4001ms)\nWhat was the final score?\t19-23\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (19-23, was, the final score) -> 19-23 (4015ms)\nWhat was the final score?\t45 seconds\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (45 seconds, resulted in, the final score) -> 45 seconds (3994ms)\nWhat was the final score?\teach municipality\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (the final SES score, was calculated for, each municipality) -> each municipality (4010ms)\nWhat was the final score?\tthe House\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The 30-28 final score, was good for, the House) -> the House (3994ms)\nWhat was the final score?\t56 guests 3\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (56 guests 3, got, the final score correct) -> 56 guests 3 (4008ms)\nWhat was the final score?\tthe final round\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (the final round, eventually lost in, final scoring) -> the final round (4022ms)\nWhat was the final score?\tthe Victoria game\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (the Victoria game, reflected in, the final score) -> the Victoria game (4023ms)\nWhat was the final score?\tBrad Evans\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Brad Evans, put in, the final score) -> Brad Evans (4013ms)\nWhat was the final score?\tthe correct answers\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (my final score, was 4 for, the correct answers) -> the correct answers (3997ms)\nWhat was the final score?\tthe CHL\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the CHL, has been getting, final scores) -> the CHL (4008ms)\nWhat was the final score?\tthe quarterfinals\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (final score 1:0 Cameroon, are qualified for, the quarterfinals) -> the quarterfinals (4024ms)\nWhat was the final score?\tWeve\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (Weve, got, the finals scores) -> Weve (4022ms)\nWhat was the final score?\t3 GP\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (Final scores, must be cumulative points for, 3 GP) -> 3 GP (3982ms)\nWhat was the final score?\twalk-off wins\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (walk-off wins, have been by, final scores) -> walk-off wins (4001ms)\nWhat was the final score?\ta 4-2 lead\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (a 4-2 lead, was, the final score) -> a 4-2 lead (4004ms)\nWhat was the final score?\tspace reasons\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (only the final scores, are shown here for, space reasons) -> space reasons (3998ms)\nWhat was the final score?\tCalifornia\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (California, came in with, a final score) -> California (4020ms)\nWhat was the final score?\tStudents\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Students, write in, their final score) -> Students (4010ms)\nWhat was the final score?\tthe clock\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the clock, was ticking, ? Final score) -> the clock (4010ms)\nWhat was the final score?\tWhite Sox\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (White Sox, got an early jump in, the final scoring) -> White Sox (4019ms)\nWhat was the final score?\tTiger Woods\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (Tiger Woods, gets to, the final scoring hole) -> Tiger Woods (4015ms)\nWhat was the final score?\tThe real success\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The real success, is, the final score) -> The real success (4015ms)\nWhat was the final score?\tthe other two sections\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the other two sections, are each worth 25 % of, final score) -> the other two sections (4007ms)\nWhat was the final score?\twrong ? 89\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (wrong ? 89, was, the final score) -> wrong ? 89 (4015ms)\nWhat was the final score?\tthe Crusaders\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (the Crusaders, get the victory with, the final score) -> the Crusaders (4022ms)\nWhat was the final score?\tMarlyn\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (Marlyn, got, her final LA score) -> Marlyn (4020ms)\nWhat was the final score?\tWatson\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (a final score, was $ 77,147 for, Watson) -> Watson (4001ms)\nWhat was the final score?\tsports\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (sports, is, the final score) -> sports (4010ms)\nWhat was the final score?\tgame\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (game, was, the final score) -> game (4022ms)\nWhat was the final score?\tProjo.com\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Projo.com, will be posting, final scores) -> Projo.com (4017ms)\nWhat was the final score?\t4-0\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (4-0, was, the final score) -> 4-0 (3994ms)\nWhat was the final score?\tThe third element\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The third element, is, the final exam scores) -> The third element (4004ms)\nWhat was the final score?\tThe Knights\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (The Knights, got, their final score) -> The Knights (3990ms)\nWhat was the final score?\t5-1\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (5-1, was, the final score) -> 5-1 (4015ms)\nWhat was the final score?\timportant\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (important, is, the final game score) -> important (3990ms)\nWhat was the final score?\tattention\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (attention, is drawn towards, final score) -> attention (3986ms)\nWhat was the final score?\tBiography\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Biography, Books In This Genre, The Final Score) -> Biography (4017ms)\nWhat was the final score?\tBHS.\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (BHS., Posted in, Final Score) -> BHS. (4017ms)\nWhat was the final score?\tComments\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Comments, are closed, Final Score) -> Comments (3997ms)\nWhat was the final score?\tThe 2 -1\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The 2 -1, was, the final score) -> The 2 -1 (3998ms)\nWhat was the final score?\tPortsmouth\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, is 2-1 for, Portsmouth) -> Portsmouth (4015ms)\nWhat was the final score?\teach match\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (each match, will be decided on, final score) -> each match (3994ms)\nWhat was the final score?\tThe Jackets\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (The Jackets, turned in, a final score) -> The Jackets (3986ms)\nWhat was the final score?\tlast year\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (His final score, was for, last year) -> last year (3990ms)\nWhat was the final score?\ta specific question\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (a specific question, may be omitted from, final scoring) -> a specific question (4023ms)\nWhat was the final score?\tEddie Stobart drivers\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Eddie Stobart drivers, was, the final score) -> Eddie Stobart drivers (4020ms)\nWhat was the final score?\ta single-trait animal model\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (a single-trait animal model, was applied for, final score) -> a single-trait animal model (4023ms)\nWhat was the final score?\tplayoff basketball\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (playoff basketball, is, the final score) -> playoff basketball (3994ms)\nWhat was the final score?\tFeb. 1\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Feb. 1, resulted in, a final score) -> Feb. 1 (4022ms)\nWhat was the final score?\tupcoming 2003 objectives\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (upcoming 2003 objectives, count in, your final score) -> upcoming 2003 objectives (3986ms)\nWhat was the final score?\tsure they?ve\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (sure they?ve, already got, the final score) -> sure they?ve (4017ms)\nWhat was the final score?\tBellevue\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Bellevue, turned in, a final round score) -> Bellevue (4013ms)\nWhat was the final score?\tGermany\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was a 4?1 win for, Germany) -> Germany (3994ms)\nWhat was the final score?\tThe Bulldogs ? biggest lead\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (The Bulldogs ? biggest lead, was, the final score) -> The Bulldogs ? biggest lead (4001ms)\nWhat was the final score?\tThe Saints\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (The Saints, would get, the final two scores) -> The Saints (4024ms)\nWhat was the final score?\tBallard\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 25 for, Ballard) -> Ballard (4013ms)\nWhat was the final score?\tpitching\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (pitching, reflected in, the final score) -> pitching (3986ms)\nWhat was the final score?\tthe only important number\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the only important number, is, the final score) -> the only important number (4008ms)\nWhat was the final score?\t12-9\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (12-9, was, the final score) -> 12-9 (4008ms)\nWhat was the final score?\tTeam East\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 2-1 for, Team East) -> Team East (4017ms)\nWhat was the final score?\tMisdee Wrigley Miller\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Misdee Wrigley Miller, turned in, a final score) -> Misdee Wrigley Miller (4024ms)\nWhat was the final score?\tEngland?s Luke Donald\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (England?s Luke Donald, put in, a final score card) -> England?s Luke Donald (3986ms)\nWhat was the final score?\tFinal places\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (Final places, are determined based upon, final scores) -> Final places (4010ms)\nWhat was the final score?\tOpera singer Katherine Jenkins\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (Opera singer Katherine Jenkins, ended up getting, a final score) -> Opera singer Katherine Jenkins (3986ms)\nWhat was the final score?\tTiger\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Tiger, leads the group in, final round scoring) -> Tiger (3994ms)\nWhat was the final score?\tDonaggio\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (Donaggio, turned in, his final score) -> Donaggio (4008ms)\nWhat was the final score?\tI?ll\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (I?ll, lose in, Final Scoring) -> I?ll (3982ms)\nWhat was the final score?\tKyle\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (Kyle, got, the highest final score) -> Kyle (4013ms)\nWhat was the final score?\tTipp\t-0.555555555556\tWhat was the final score? -> $x: ($x, get, final score) -> (Tipp, got, the final three scores) -> Tipp (3982ms)\nWhat was the final score?\tout\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (out, was, our final score) -> out (4013ms)\nWhat was the final score?\tfriends\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> ('s final scores, were for, friends) -> friends (4022ms)\nWhat was the final score?\t2-0\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (2-0, was, the final score) -> 2-0 (3990ms)\nWhat was the final score?\t7-4\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (7-4, was, the final score) -> 7-4 (3994ms)\nWhat was the final score?\tLang\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (the final score, was 4-0 for, Lang) -> Lang (4023ms)\nWhat was the final score?\tFGCU\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (The final score, was 4-1 for, FGCU) -> FGCU (4015ms)\nWhat was the final score?\teach patient\t-0.555555555556\tWhat was the final score? -> $x: (final score, be for, $x) -> (A final score, is calculated for, each patient) -> each patient (4022ms)\nWhat was the final score?\tnt\t-0.555555555556\tWhat was the final score? -> $x: ($x, in, final score) -> (nt, reflected in, the final score) -> nt (4024ms)\nWhat was the final score?\tthe uninsured rate\t-0.555555555556\tWhat was the final score? -> $x: ($x, be be, final score) -> (the uninsured rate, is, the final score) -> the uninsured rate (4022ms)\nWhat was the final score?\tuse\t-0.666666666667\tWhat was the final score? -> $x: ($x, establish, final score) -> (use, was quite simple to establish, the final rating score) -> use (4024ms)\nWhat was the final score?\tthe Range\t-0.7777777777770001\tWhat was the final score? -> $x: ($x, be product of, score) -> (the Range, is the product of, exhaustive research and scores) -> the Range (4024ms)\nWhat was the final score?\tThe point total\t-0.7777777777770001\tWhat was the final score? -> $x: ($x, be product of, score) -> (The point total, is the product of, your average score) -> The point total (4024ms)\nWhat was the final score?\treliability\t-0.7777777777770001\tWhat was the final score? -> $x: ($x, be product of, score) -> (reliability, are the product of, group scores) -> reliability (4024ms)\nWhat was the final score?\tPn\t-0.7777777777770001\tWhat was the final score? -> $x: ($x, be product of, score) -> (Pn, is the product of, n distribution scores) -> Pn (4024ms)\nWhat was the final score?\tan auto loan\t-0.7777777777770001\tWhat was the final score? -> $x: ($x, be product of, score) -> (an auto loan, is a product of, your credit score) -> an auto loan (4024ms)\nWhat was the final score?\tthe correlation\t-0.7777777777770001\tWhat was the final score? -> $x: ($x, be product of, score) -> (the correlation, is the average product of, the standard scores) -> the correlation (4024ms)\nWhat was the final score?\teach window-position score\t-0.7777777777770001\tWhat was the final score? -> $x: ($x, be product of, score) -> (each window-position score, is the product of, the scores) -> each window-position score (4024ms)\nWhat was the final score?\tThe overall score\t-0.7777777777770001\tWhat was the final score? -> $x: ($x, be product of, score) -> (The overall score, is the product of, the coverage score) -> The overall score (4024ms)\nWhat was the final score?\tThe printed score report\t-0.777777777778\tWhat was the final score? -> $x: ($x, contain, final score) -> (The printed score report, will contain, the final section scores) -> The printed score report (4024ms)\nWhat was the final score?\tthe stories\t-0.777777777778\tWhat was the final score? -> $x: ($x, contain, final score) -> (the stories, contained little more than, the final score) -> the stories (4024ms)\nWhat was the final score?\tGame cards\t-0.777777777778\tWhat was the final score? -> $x: ($x, contain, final score) -> (Game cards, will contain, the final scores) -> Game cards (4024ms)\nWhat was the final score?\tMonaleen\t-0.888888888883\tWhat was the final score? -> $x: ($x, be score of, final) -> (Monaleen, was the only score of, the final ten minute period) -> Monaleen (4024ms)\nWhat was the final score?\tMahmoud\t-0.888888888883\tWhat was the final score? -> $x: ($x, be score of, final) -> (Mahmoud, was scoring the only goal of, the final) -> Mahmoud (4024ms)\nWhat was the final score?\tthe final frame\t-0.888888888883\tWhat was the final score? -> $x: ($x, be score of, final) -> (the final frame, was the only score of, the final 15 minutes) -> the final frame (4024ms)\nWhat is the esophagus used for?\tpatients\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, should be reserved for, patients) -> patients (1594ms)\nWhat is the esophagus used for?\tacid reflux\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is the culprit for, acid reflux) -> acid reflux (1612ms)\nWhat is the esophagus used for?\tthe function\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, are responsible for, the function) -> the function (1612ms)\nWhat is the esophagus used for?\tuse\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (SIZE Application Esophagus membrane protein lysate, is for, use) -> use (2367ms)\nWhat is the esophagus used for?\t2 ? weeks\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (his esophagus, had to be hospitalized for, 2 ? weeks) -> 2 ? weeks (1374ms)\nWhat is the esophagus used for?\tthe first time\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (a columnar-lined esophagus, is detected for, the first time) -> the first time (2367ms)\nWhat is the esophagus used for?\tanalysis\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, can be captured for, analysis) -> analysis (2459ms)\nWhat is the esophagus used for?\tresection\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus and stomach, are often candidates for, resection) -> resection (1374ms)\nWhat is the esophagus used for?\ta neutral pH\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (The esophagus, is designed for, a neutral pH) -> a neutral pH (2459ms)\nWhat is the esophagus used for?\ta year\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, had been growing for, a year) -> a year (1612ms)\nWhat is the esophagus used for?\ta wide range\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (Esophagus, can be useful for, a wide range) -> a wide range (1595ms)\nWhat is the esophagus used for?\tGERD symptoms\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (Barrett?s esophagus, are treated for, GERD symptoms) -> GERD symptoms (1595ms)\nWhat is the esophagus used for?\trelaxation\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus and sedatives, can be administered for, relaxation) -> relaxation (2459ms)\nWhat is the esophagus used for?\tthe most part\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is for, the most part) -> the most part (1375ms)\nWhat is the esophagus used for?\tplacement\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (esophagus, is exposed for, placement) -> placement (2459ms)\nWhat is the esophagus used for?\tthe proverbial needle\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, is like looking for, the proverbial needle) -> the proverbial needle (1374ms)\nWhat is the esophagus used for?\tcancers\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is the most common region for, cancers) -> cancers (1612ms)\nWhat is the esophagus used for?\telective esophgectomy\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (carcinoma esophagus, were planned for, elective esophgectomy) -> elective esophgectomy (1594ms)\nWhat is the esophagus used for?\theartburn\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (esophagus, will be the scientific reason for, heartburn) -> heartburn (2367ms)\nWhat is the esophagus used for?\tthe presence\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is monitored for, the presence) -> the presence (2367ms)\nWhat is the esophagus used for?\tesophageal cancer\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, is a risk factor for, esophageal cancer) -> esophageal cancer (2459ms)\nWhat is the esophagus used for?\tthe antral pump\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (The esophagus, is a conduit for, the antral pump) -> the antral pump (1612ms)\nWhat is the esophagus used for?\ta few seconds\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the lower esophagus sphincter, is to open for, a few seconds) -> a few seconds (1612ms)\nWhat is the esophagus used for?\tthe development\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is the strongest risk factor for, the development) -> the development (2459ms)\nWhat is the esophagus used for?\tseveral years\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, may be present for, several years) -> several years (1594ms)\nWhat is the esophagus used for?\tconfirmation\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus or endoscopy, is carried out for, confirmation) -> confirmation (1375ms)\nWhat is the esophagus used for?\tflow\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is removed to allow for, flow) -> flow (2459ms)\nWhat is the esophagus used for?\tcancer\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, is a risk factor for, cancer) -> cancer (2459ms)\nWhat is the esophagus used for?\tsevere side effects\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is a common site for, severe side effects) -> severe side effects (1374ms)\nWhat is the esophagus used for?\tadenocarcinoma\t0.333333333331\tWhat is the esophagus used for? -> $x: (esophagus, be for, $x) -> (Barrett esophagus, are predisposing factors for, adenocarcinoma) -> adenocarcinoma (2367ms)\nWhat is the esophagus used for?\tconjuction\t0.33333333333000004\tWhat is the esophagus used for? -> $x: (esophagus, be use in, $x) -> (Esophagus, can be used in, conjuction) -> conjuction (2535ms)\nWhat is the esophagus used for?\tmore than 60,000 cases\t0.33333333333000004\tWhat is the esophagus used for? -> $x: (esophagus, be use in, $x) -> ('s esophagus, has been used in, more than 60,000 cases) -> more than 60,000 cases (2535ms)\nWhat is the esophagus used for?\tThe oil\t0.22222222222100002\tWhat is the esophagus used for? -> $x: ($x, be use for, esophagus) -> (The oil, is used internally for, thrush and esophagus) -> The oil (2535ms)\nWhat is the esophagus used for?\tCoughing\t0.222222222218\tWhat is the esophagus used for? -> $x: ($x, be function of, respiratory system) -> (Coughing, is a function of, the respiratory system) -> Coughing (2535ms)\nWhat is the esophagus used for?\tmovie films\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, be use, $x) -> (your family esophagus, is used to see, movie films) -> movie films (3626ms)\nWhat is the esophagus used for?\tthe infant\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, is done quickly after, the infant) -> the infant (3625ms)\nWhat is the esophagus used for?\tVaranoid aggressor@phytosis\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, do, $x) -> (esophagus, quadrilaterally does, Varanoid aggressor@phytosis) -> Varanoid aggressor@phytosis (2582ms)\nWhat is the esophagus used for?\tendoscopy\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, be use, $x) -> (your esophagus, is by using, endoscopy) -> endoscopy (3625ms)\nWhat is the esophagus used for?\tlower esophagus tumors\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, do, $x) -> (Upper esophagus tumors, do better than, lower esophagus tumors) -> lower esophagus tumors (2582ms)\nWhat is the esophagus used for?\tsurgery\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, be use, $x) -> (the esophagus and radiation therapy, is used instead of, surgery) -> surgery (2535ms)\nWhat is the esophagus used for?\ta reference\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, be use, $x) -> ('s esophagus map, can be used as, a reference) -> a reference (2535ms)\nWhat is the esophagus used for?\tthe palliative care team\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, be use, $x) -> (the esophagus, can be used by, the palliative care team) -> the palliative care team (2582ms)\nWhat is the esophagus used for?\ta variety\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus Therapy, may consist of doing, a variety) -> a variety (2582ms)\nWhat is the esophagus used for?\tthe stomach\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, does n?t attach to, the stomach) -> the stomach (3625ms)\nWhat is the esophagus used for?\tspecific muscles\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, be use, $x) -> (The esophagus, is protected using, specific muscles) -> specific muscles (2582ms)\nWhat is the esophagus used for?\tthe same protective lining\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, does n?t have, the same protective lining) -> the same protective lining (3626ms)\nWhat is the esophagus used for?\tthe primary sound generator\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, be use, $x) -> (the esophagus, is used as, the primary sound generator) -> the primary sound generator (2582ms)\nWhat is the esophagus used for?\tthe work\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, do, the work) -> the work (3626ms)\nWhat is the esophagus used for?\tthe protective lining\t0.111111111112\tWhat is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, does n?t have, the protective lining) -> the protective lining (3626ms)\nWhat is the esophagus used for?\tAmazaPet\t0.111111111109\tWhat is the esophagus used for? -> $x: ($x, be use for, respiratory system) -> (AmazaPet, may be used as needed for, respiratory system support) -> AmazaPet (3655ms)\nWhat is the esophagus used for?\tpine oil\t0.111111111109\tWhat is the esophagus used for? -> $x: ($x, be use for, respiratory system) -> (pine oil, has been used for, the respiratory system) -> pine oil (3656ms)\nWhat is the esophagus used for?\tone that kicked\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (one that kicked, caused, esophagus-melting heartburn) -> one that kicked (3793ms)\nWhat is the esophagus used for?\tthe damage\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the damage, caused to, the esophagus) -> the damage (3793ms)\nWhat is the esophagus used for?\tacid\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (acid, causes the narrowing of, esophagus) -> acid (3778ms)\nWhat is the esophagus used for?\tthe posterior tracheal wall\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the posterior tracheal wall, can cause injury to, the esophagus) -> the posterior tracheal wall (3762ms)\nWhat is the esophagus used for?\tfoods\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (foods, cause cancers in, the stomach and esophagus) -> foods (3762ms)\nWhat is the esophagus used for?\tUntreated heartburn\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Untreated heartburn, can cause scarring of, the esophagus) -> Untreated heartburn (3782ms)\nWhat is the esophagus used for?\tFrequent vomiting\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Frequent vomiting, can cause the rupture of, the esophagus) -> Frequent vomiting (3790ms)\nWhat is the esophagus used for?\tstrictures\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (strictures, cause the narrowing of, the esophagus) -> strictures (3778ms)\nWhat is the esophagus used for?\tgastro acid reflux\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (gastro acid reflux, can cause inflammation in, your esophagus) -> gastro acid reflux (3742ms)\nWhat is the esophagus used for?\tthe Esophagus GERD\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the Esophagus GERD, can cause irritation in, the esophagus) -> the Esophagus GERD (3790ms)\nWhat is the esophagus used for?\tbile reflux alone\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (bile reflux alone, to cause, cancer of the esophagus) -> bile reflux alone (3778ms)\nWhat is the esophagus used for?\tSteam Therapy work\t-0.0\tWhat is the esophagus used for? -> $x: (respiratory system, do, $x) -> (the respiratory system, does, Steam Therapy work) -> Steam Therapy work (3782ms)\nWhat is the esophagus used for?\tVomiting\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Vomiting, will cause further damage to, the esophagus) -> Vomiting (3777ms)\nWhat is the esophagus used for?\tAcid reflux\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Acid reflux, can often cause damage to, your esophagus) -> Acid reflux (3778ms)\nWhat is the esophagus used for?\tFosamax\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Fosamax, can cause ulcers in, the esophagus) -> Fosamax (3790ms)\nWhat is the esophagus used for?\tThe fluid\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The fluid, can cause major damage to, the esophagus) -> The fluid (3790ms)\nWhat is the esophagus used for?\tPotassium pills\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Potassium pills, can cause injury to, the esophagus) -> Potassium pills (3786ms)\nWhat is the esophagus used for?\tpersistent GERD symptoms\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (persistent GERD symptoms, cause damage to, the esophagus) -> persistent GERD symptoms (3762ms)\nWhat is the esophagus used for?\tReflux\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Reflux, causes damage to, the esophagus or symptoms) -> Reflux (3786ms)\nWhat is the esophagus used for?\tThe acidic contents\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The acidic contents, causes irritation in, the esophagus) -> The acidic contents (3782ms)\nWhat is the esophagus used for?\tguar gum\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (guar gum, may cause obstruction of, the esophagus) -> guar gum (3790ms)\nWhat is the esophagus used for?\tSever heart burn\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Sever heart burn, can cause cancer of, the esophagus) -> Sever heart burn (3656ms)\nWhat is the esophagus used for?\ttime\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (time, causes changes in, the esophagus) -> time (3786ms)\nWhat is the esophagus used for?\tGERD\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (GERD, can cause scarring of, the esophagus) -> GERD (3786ms)\nWhat is the esophagus used for?\tacid or acid regurgitation\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (acid or acid regurgitation, causes, the esophagus) -> acid or acid regurgitation (3762ms)\nWhat is the esophagus used for?\tSjogren?s syndrome\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Sjogren?s syndrome, causes problems with, the esophagus) -> Sjogren?s syndrome (3793ms)\nWhat is the esophagus used for?\tThe eosinophils\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The eosinophils, cause, damage to the tissue of the esophagus) -> The eosinophils (3782ms)\nWhat is the esophagus used for?\tAllergies\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Allergies, can cause irritation in, the esophagus) -> Allergies (3786ms)\nWhat is the esophagus used for?\tpowder\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (powder, can cause burning of, the esophagus) -> powder (3790ms)\nWhat is the esophagus used for?\tthe pills\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the pills, can cause inflammation in, the esophagus) -> the pills (3786ms)\nWhat is the esophagus used for?\tthe chest\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the chest, may cause infection in, the esophagus) -> the chest (3790ms)\nWhat is the esophagus used for?\tsleep\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (sleep, also causes more damage to, the esophagus) -> sleep (3782ms)\nWhat is the esophagus used for?\tgastric reflux\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (gastric reflux, may cause injury of, the esophagus) -> gastric reflux (3742ms)\nWhat is the esophagus used for?\tthe esophagus\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the esophagus, cause, Barrett esophagus) -> the esophagus (3790ms)\nWhat is the esophagus used for?\tContinued irritation\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Continued irritation, may cause narrowing of, the esophagus) -> Continued irritation (3762ms)\nWhat is the esophagus used for?\tthe hiatal hernia\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the hiatal hernia, causes an irritation of, the esophagus) -> the hiatal hernia (3762ms)\nWhat is the esophagus used for?\tthe relief\t-0.0\tWhat is the esophagus used for? -> $x: (respiratory system, be useful for, $x) -> (the respiratory system, is useful for, the relief) -> the relief (3655ms)\nWhat is the esophagus used for?\tlooked-for\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (looked-for, can cause ulcer in, the esophagus and stomach) -> looked-for (3782ms)\nWhat is the esophagus used for?\talcohol\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (alcohol, can also cause inflammation of, the esophagus) -> alcohol (3782ms)\nWhat is the esophagus used for?\tone gulp\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (one gulp, can cause, your esophagus) -> one gulp (3786ms)\nWhat is the esophagus used for?\ta digestive disorder\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (a digestive disorder, causes injury to, the esophagus) -> a digestive disorder (3782ms)\nWhat is the esophagus used for?\tChronic acid reflux disease\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Chronic acid reflux disease, may cause damage to, the esophagus) -> Chronic acid reflux disease (3790ms)\nWhat is the esophagus used for?\tStomach acid\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Stomach acid, could be causing damage to, your esophagus) -> Stomach acid (3793ms)\nWhat is the esophagus used for?\tHumans Breathe\t-0.0\tWhat is the esophagus used for? -> $x: (respiratory system, do, $x) -> (The Respiratory System, Do, Humans Breathe) -> Humans Breathe (3778ms)\nWhat is the esophagus used for?\talendronate\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (alendronate, can cause severe damage to, the esophagus) -> alendronate (3782ms)\nWhat is the esophagus used for?\tthe lungs work\t-0.0\tWhat is the esophagus used for? -> $x: (respiratory system, do, $x) -> (The respiratory system, do, the lungs work) -> the lungs work (3790ms)\nWhat is the esophagus used for?\tjuice\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (juice, will cause irritation to, the esophagus) -> juice (3778ms)\nWhat is the esophagus used for?\tGerd\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Gerd, may cause a significant damage on, your esophagus) -> Gerd (3762ms)\nWhat is the esophagus used for?\tacidic vomit\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (acidic vomit, can cause erosion in, the esophagus) -> acidic vomit (3655ms)\nWhat is the esophagus used for?\ttoo many raw onions\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (too many raw onions, can cause, stomach and esophagus problems) -> too many raw onions (3777ms)\nWhat is the esophagus used for?\tacid reflux symptoms\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (acid reflux symptoms, cause, severe damage to the esophagus) -> acid reflux symptoms (3790ms)\nWhat is the esophagus used for?\tscales\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (scales, cause internal burns in, the esophagus and throat) -> scales (3793ms)\nWhat is the esophagus used for?\texactly what\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (exactly what, causes, Barrett?s esophagus) -> exactly what (3786ms)\nWhat is the esophagus used for?\treflux\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (reflux, is typically caused by, a damaged esophagus) -> reflux (3762ms)\nWhat is the esophagus used for?\tcigarettes\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (cigarettes, can cause, the esophagus) -> cigarettes (3786ms)\nWhat is the esophagus used for?\tthe stomach acid\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the stomach acid, could be causing, damage to your esophagus) -> the stomach acid (3655ms)\nWhat is the esophagus used for?\tThe disease\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The disease, causes swelling of, the esophagus) -> The disease (3782ms)\nWhat is the esophagus used for?\tcolds\t-0.0\tWhat is the esophagus used for? -> $x: (respiratory system, be use, $x) -> (the respiratory system, is traditionally used to treat, colds) -> colds (3790ms)\nWhat is the esophagus used for?\tIngestion\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Ingestion, may cause burns to, the mouth and esophagus) -> Ingestion (3786ms)\nWhat is the esophagus used for?\ttobacco juice\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (tobacco juice, causes cancer of, the esophagus) -> tobacco juice (3786ms)\nWhat is the esophagus used for?\tthe acid\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the acid, causes the burning sensation in, the esophagus) -> the acid (3782ms)\nWhat is the esophagus used for?\tthe reflux\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the reflux, can cause severe damage to, the esophagus) -> the reflux (3790ms)\nWhat is the esophagus used for?\tstomach acid\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (stomach acid, can eventually cause scarring of, the esophagus) -> stomach acid (3786ms)\nWhat is the esophagus used for?\tthe baby\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the baby, causes, acid to enter the esophagus) -> the baby (3742ms)\nWhat is the esophagus used for?\tusually more acidic\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (usually more acidic, causes serious pain in, the esophagus) -> usually more acidic (3786ms)\nWhat is the esophagus used for?\tthe belly acid level\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the belly acid level, causes irritation to, the esophagus) -> the belly acid level (3786ms)\nWhat is the esophagus used for?\torange and lemon\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (orange and lemon, will cause irritation to, the esophagus) -> orange and lemon (3790ms)\nWhat is the esophagus used for?\tBulimia\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Bulimia, often causes injury to, the esophagus) -> Bulimia (3655ms)\nWhat is the esophagus used for?\tDoxorubicin\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Doxorubicin, causes, esophagus inflammation) -> Doxorubicin (3778ms)\nWhat is the esophagus used for?\tRepeated vomiting\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Repeated vomiting, can cause inflammation of, the esophagus) -> Repeated vomiting (3790ms)\nWhat is the esophagus used for?\tday\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (day, can cause the irritation of, the esophagus) -> day (3782ms)\nWhat is the esophagus used for?\tthe increase\t-0.0\tWhat is the esophagus used for? -> $x: (respiratory system, be use, $x) -> (your respiratory system, is n?t usually used to, the increase) -> the increase (3655ms)\nWhat is the esophagus used for?\tReflux disease\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Reflux disease, can cause erosion of, the esophagus) -> Reflux disease (3762ms)\nWhat is the esophagus used for?\ta punctured battery\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (a punctured battery, can cause burns to, the mouth and esophagus) -> a punctured battery (3742ms)\nWhat is the esophagus used for?\tThe acid\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The acid, causes, damage to the lining of the esophagus) -> The acid (3786ms)\nWhat is the esophagus used for?\tDoxycycline\t-0.0\tWhat is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Doxycycline, may cause inflammation of, the esophagus) -> Doxycycline (3782ms)\nWhat is the esophagus used for?\tthe esophageal feeder tube\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the esophageal feeder tube, is in, the esophagus) -> the esophageal feeder tube (3815ms)\nWhat is the esophagus used for?\tthe small amount of acid\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the small amount of acid, is left in, the esophagus) -> the small amount of acid (3808ms)\nWhat is the esophagus used for?\tlength\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is approximately 3 feet in, length) -> length (3811ms)\nWhat is the esophagus used for?\tthe literature\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, was first reported in, the literature) -> the literature (3813ms)\nWhat is the esophagus used for?\tthe Combitube\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the Combitube, is located in, the esophagus) -> the Combitube (3808ms)\nWhat is the esophagus used for?\tdiameter\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (The esophagus, is large in, diameter) -> diameter (3802ms)\nWhat is the esophagus used for?\tthe middle portion\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is most common in, the middle portion) -> the middle portion (3810ms)\nWhat is the esophagus used for?\tthe echo transducer\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the echo transducer, is placed in, the esophagus) -> the echo transducer (3806ms)\nWhat is the esophagus used for?\tthe U.S.\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, are diagnosed in, the U.S.) -> the U.S. (3813ms)\nWhat is the esophagus used for?\tthe battery\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the battery, is in, the esophagus) -> the battery (3814ms)\nWhat is the esophagus used for?\tEGC and EC\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (EGC and EC, were found in, the esophagus) -> EGC and EC (3814ms)\nWhat is the esophagus used for?\tthe center\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Your esophagus, is located in, the center) -> the center (3799ms)\nWhat is the esophagus used for?\twhites\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (esophagus, is most prevalent in, whites) -> whites (3813ms)\nWhat is the esophagus used for?\tthe tubes\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the tubes, are lodged in, your esophagus) -> the tubes (3810ms)\nWhat is the esophagus used for?\tthe distal balloon\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the distal balloon, will be placed in, the esophagus) -> the distal balloon (3802ms)\nWhat is the esophagus used for?\tThe probe\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The probe, is in, the esophagus) -> The probe (3813ms)\nWhat is the esophagus used for?\tThe sensor\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The sensor, is positioned in, the esophagus) -> The sensor (3815ms)\nWhat is the esophagus used for?\thalf five years\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (esophagus risks, are cut in, half five years) -> half five years (3799ms)\nWhat is the esophagus used for?\tthe other night ACID REFLUX\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the other night ACID REFLUX, was in, my esophagus) -> the other night ACID REFLUX (3808ms)\nWhat is the esophagus used for?\tSpecial balloons\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Special balloons, can be inserted in, the esophagus) -> Special balloons (3799ms)\nWhat is the esophagus used for?\tforeign bodies\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (foreign bodies, can be located in, the esophagus) -> foreign bodies (3814ms)\nWhat is the esophagus used for?\tfelines\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, are normal in, felines) -> felines (3814ms)\nWhat is the esophagus used for?\tsmooth muscle\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is wrapped in, smooth muscle) -> smooth muscle (3814ms)\nWhat is the esophagus used for?\tthe doctor\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, discover, esophagus) -> (the doctor, discovered a cancerous tumor in, my esophagus) -> the doctor (3804ms)\nWhat is the esophagus used for?\tAn object\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (An object, is stuck in, the esophagus) -> An object (3810ms)\nWhat is the esophagus used for?\twomen\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, was more than doubled in, women) -> women (3806ms)\nWhat is the esophagus used for?\tinfection\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (infection, are common in, the esophagus) -> infection (3802ms)\nWhat is the esophagus used for?\ta fetus\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (The esophagus, is usually present in, a fetus) -> a fetus (3804ms)\nWhat is the esophagus used for?\tabout three days\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, can be healed in, about three days) -> about three days (3813ms)\nWhat is the esophagus used for?\twill additional\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (will additional, be processed in, the esophagus) -> will additional (3804ms)\nWhat is the esophagus used for?\t21 %\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Barrett esophagus, was found in, 21 %) -> 21 % (3804ms)\nWhat is the esophagus used for?\tthe end\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the end, is in, the esophagus) -> the end (3810ms)\nWhat is the esophagus used for?\tan environment\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (an esophagus, would be able to flourish in, an environment) -> an environment (3806ms)\nWhat is the esophagus used for?\tAsia and China\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is more common in, Asia and China) -> Asia and China (3796ms)\nWhat is the esophagus used for?\tthe hook\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the hook, is down in, the esophagus) -> the hook (3811ms)\nWhat is the esophagus used for?\trefluxed acid\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is bathed in, refluxed acid) -> refluxed acid (3806ms)\nWhat is the esophagus used for?\tfront\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (his esophagus, is in, front) -> front (3796ms)\nWhat is the esophagus used for?\tgranular cell tumor\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (granular cell tumor, was detected in, distal esophagus) -> granular cell tumor (3796ms)\nWhat is the esophagus used for?\tnature\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, are squamous cell carcinoma in, nature) -> nature (3796ms)\nWhat is the esophagus used for?\tthe stool\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is ultimately passed in, the stool) -> the stool (3811ms)\nWhat is the esophagus used for?\tthe probe\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the probe, is in, your esophagus) -> the probe (3810ms)\nWhat is the esophagus used for?\tmale juveniles\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Esophagus, is degenerate in, male juveniles) -> male juveniles (3804ms)\nWhat is the esophagus used for?\tthe distal end\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the distal end, is located in, the esophagus) -> the distal end (3814ms)\nWhat is the esophagus used for?\ta flat strip\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be make from, $x) -> (Esophagus Spring Rolls, are made from, a flat strip) -> a flat strip (3815ms)\nWhat is the esophagus used for?\tThe thyroid gland\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The thyroid gland, is located in, the esophagus) -> The thyroid gland (3804ms)\nWhat is the esophagus used for?\ttwo segments\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is in, two segments) -> two segments (3813ms)\nWhat is the esophagus used for?\thow much stomach acid\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (how much stomach acid, is in, your esophagus) -> how much stomach acid (3811ms)\nWhat is the esophagus used for?\tadults\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is about 10 inches long In, adults) -> adults (3804ms)\nWhat is the esophagus used for?\t20 %\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Barrett esophagus, was noted in, 20 %) -> 20 % (3808ms)\nWhat is the esophagus used for?\tthe food\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the food, is stuck in, the esophagus) -> the food (3814ms)\nWhat is the esophagus used for?\teosinophils\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (eosinophils, are in, the esophagus) -> eosinophils (3813ms)\nWhat is the esophagus used for?\ta fundamental biomechanical mechanism\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (a fundamental biomechanical mechanism, is used in, the esophagus) -> a fundamental biomechanical mechanism (3799ms)\nWhat is the esophagus used for?\t10 % neutral buffered formalin\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, was fixed in, 10 % neutral buffered formalin) -> 10 % neutral buffered formalin (3793ms)\nWhat is the esophagus used for?\tlymphoid nodular hyperplasia\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, discover, esophagus) -> (lymphoid nodular hyperplasia, was discovered in, 2/68 esophagus) -> lymphoid nodular hyperplasia (3802ms)\nWhat is the esophagus used for?\tA probe\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (A probe, is placed in, the esophagus) -> A probe (3810ms)\nWhat is the esophagus used for?\tlocating infection\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is important in, locating infection) -> locating infection (3808ms)\nWhat is the esophagus used for?\tscleroderma\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, can be affected in, scleroderma) -> scleroderma (3799ms)\nWhat is the esophagus used for?\tdifferent sections\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (your esophagus, will be measured in, different sections) -> different sections (3806ms)\nWhat is the esophagus used for?\tEsophageal cancer\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Esophageal cancer, is characterized in, the esophagus) -> Esophageal cancer (3810ms)\nWhat is the esophagus used for?\tthe varices\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the varices, are located in, the esophagus) -> the varices (3814ms)\nWhat is the esophagus used for?\tthe Digestive Tract Recognized\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Esophagus, Is Bleeding in, the Digestive Tract Recognized) -> the Digestive Tract Recognized (3804ms)\nWhat is the esophagus used for?\tturn\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (turn, is left in, the esophagus) -> turn (3815ms)\nWhat is the esophagus used for?\tan object\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (an object, is stuck in, your esophagus) -> an object (3802ms)\nWhat is the esophagus used for?\tfrequency\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is increasing rapidly in, frequency) -> frequency (3808ms)\nWhat is the esophagus used for?\tindividuals\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is typically larger in, individuals) -> individuals (3810ms)\nWhat is the esophagus used for?\tpart\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (part, was in, his esophagus) -> part (3802ms)\nWhat is the esophagus used for?\tprevious surgery\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, have history of, $x) -> (a short esophagus, have a history of, previous surgery) -> previous surgery (3796ms)\nWhat is the esophagus used for?\tmen\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is more common in, men) -> men (3813ms)\nWhat is the esophagus used for?\tadults and children\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is pretty much the same in, adults and children) -> adults and children (3815ms)\nWhat is the esophagus used for?\ta bad shape\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is in, a bad shape) -> a bad shape (3799ms)\nWhat is the esophagus used for?\tthe central chest region\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (our esophagus, is in, the central chest region) -> the central chest region (3796ms)\nWhat is the esophagus used for?\tThe transducer\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The transducer, is carefully placed in, your esophagus) -> The transducer (3808ms)\nWhat is the esophagus used for?\tprevalence\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, has been increasing in, prevalence) -> prevalence (3810ms)\nWhat is the esophagus used for?\tthe chest cavity\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is located in, the chest cavity) -> the chest cavity (3799ms)\nWhat is the esophagus used for?\tchildren\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is uncommon in, children) -> children (3813ms)\nWhat is the esophagus used for?\tthe western world\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, has been declining in, the western world) -> the western world (3811ms)\nWhat is the esophagus used for?\tThe food\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The food, is lodged in, the esophagus) -> The food (3811ms)\nWhat is the esophagus used for?\tthe middle\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is in, the middle) -> the middle (3811ms)\nWhat is the esophagus used for?\tquestion\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the lungs or esophagus, are in, question) -> question (3802ms)\nWhat is the esophagus used for?\tbutton batteries\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (button batteries, can be wedged in, the esophagus) -> button batteries (3806ms)\nWhat is the esophagus used for?\tthe cells\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is a change in, the cells) -> the cells (3806ms)\nWhat is the esophagus used for?\tWashington\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, had been receiving treatment in, Washington) -> Washington (3814ms)\nWhat is the esophagus used for?\tvertebrates\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (The esophagus, is an organ in, vertebrates) -> vertebrates (3813ms)\nWhat is the esophagus used for?\t1929\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Theatrical esophagus, was further accustomed in, 1929) -> 1929 (3806ms)\nWhat is the esophagus used for?\tAn esophageal pH test\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (An esophageal pH test, is in, the esophagus) -> An esophageal pH test (3814ms)\nWhat is the esophagus used for?\tfood storage\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, use for, $x) -> ('s esophagus, used for, food storage) -> food storage (3796ms)\nWhat is the esophagus used for?\tthe fundus\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is absent in, the fundus) -> the fundus (3811ms)\nWhat is the esophagus used for?\tAn ultrasound technique\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (An ultrasound technique, is placed in, the esophagus) -> An ultrasound technique (3796ms)\nWhat is the esophagus used for?\tThe ultrasound generator\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The ultrasound generator, can be positioned in, the esophagus) -> The ultrasound generator (3796ms)\nWhat is the esophagus used for?\tthe digestive tract\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Esophagus, is bleeding in, the digestive tract) -> the digestive tract (3814ms)\nWhat is the esophagus used for?\textremely hot solid food\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (extremely hot solid food, can be seen in, esophagus) -> extremely hot solid food (3793ms)\nWhat is the esophagus used for?\tcertain parts\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is especially prevalent in, certain parts) -> certain parts (3810ms)\nWhat is the esophagus used for?\tHiccoughs\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Hiccoughs, are a standing wave in, the esophagus) -> Hiccoughs (3804ms)\nWhat is the esophagus used for?\thysteria and chorea\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is seen in, hysteria and chorea) -> hysteria and chorea (3793ms)\nWhat is the esophagus used for?\tBalloons\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Balloons, can be inserted in, the esophagus) -> Balloons (3814ms)\nWhat is the esophagus used for?\tcandida\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (candida, would be down in, his esophagus) -> candida (3796ms)\nWhat is the esophagus used for?\tstratified squamous epithelium\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (stratified squamous epithelium, is observed in, the esophagus) -> stratified squamous epithelium (3799ms)\nWhat is the esophagus used for?\tesophogeal varices\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (esophogeal varices, are swollen veins in, the esophagus) -> esophogeal varices (3802ms)\nWhat is the esophagus used for?\tblacks\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is more common in, blacks) -> blacks (3814ms)\nWhat is the esophagus used for?\tA small mucosal lesion\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (A small mucosal lesion, was seen in, mid esophagus) -> A small mucosal lesion (3806ms)\nWhat is the esophagus used for?\tseveral types\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is indicated in, several types) -> several types (3793ms)\nWhat is the esophagus used for?\ta laser beam light\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (a laser beam light, is shined in, your esophagus) -> a laser beam light (3814ms)\nWhat is the esophagus used for?\tthe GI tract\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the GI tract, are especially distinct in, the esophagus) -> the GI tract (3813ms)\nWhat is the esophagus used for?\tPrimary tumors\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Primary tumors, were located in, the esophagus) -> Primary tumors (3814ms)\nWhat is the esophagus used for?\tthe lining\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is a change in, the lining) -> the lining (3813ms)\nWhat is the esophagus used for?\tthe risks\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the risks, are The tube in, the esophagus) -> the risks (3810ms)\nWhat is the esophagus used for?\tthe transducer\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the transducer, is placed in, the esophagus) -> the transducer (3811ms)\nWhat is the esophagus used for?\tpain\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (his esophagus, was still moaning in, pain) -> pain (3806ms)\nWhat is the esophagus used for?\tolder adults\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is more common in, older adults) -> older adults (3808ms)\nWhat is the esophagus used for?\ta blunt foreign body\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (a blunt foreign body, is stuck in, the esophagus) -> a blunt foreign body (3813ms)\nWhat is the esophagus used for?\tthe batteries\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the batteries, were lodged in, his esophagus) -> the batteries (3804ms)\nWhat is the esophagus used for?\tboys\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (boys, are being dressed in, esophagus footwear) -> boys (3796ms)\nWhat is the esophagus used for?\tThrush lesions\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Thrush lesions, may also be seen in, the esophagus) -> Thrush lesions (3804ms)\nWhat is the esophagus used for?\tThe rest\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The rest, are found in, the esophagus) -> The rest (3814ms)\nWhat is the esophagus used for?\tleast 10 %\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s Esophagus, is precancerous in at, least 10 %) -> least 10 % (3802ms)\nWhat is the esophagus used for?\tthe brain stem whilst\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is controlled in, the brain stem whilst) -> the brain stem whilst (3808ms)\nWhat is the esophagus used for?\ta temperature probe\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (a temperature probe, was placed in, the esophagus) -> a temperature probe (3814ms)\nWhat is the esophagus used for?\tA foreign object\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (A foreign object, is seen in, the esophagus) -> A foreign object (3799ms)\nWhat is the esophagus used for?\tA thin , pressure-sensitive tube\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (A thin , pressure-sensitive tube, is placed in, your esophagus) -> A thin , pressure-sensitive tube (3796ms)\nWhat is the esophagus used for?\tas small\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (as small, is placed in, the esophagus) -> as small (3813ms)\nWhat is the esophagus used for?\tthe tube\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the tube, is in, your esophagus) -> the tube (3811ms)\nWhat is the esophagus used for?\ttablets\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (tablets, are still sitting in, the esophagus) -> tablets (3793ms)\nWhat is the esophagus used for?\tThe object\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The object, may be stuck in, the esophagus) -> The object (3804ms)\nWhat is the esophagus used for?\tfood\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (food, is perceived in, the esophagus) -> food (3808ms)\nWhat is the esophagus used for?\tpositive the esophageal feeder tube\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (positive the esophageal feeder tube, is in, the esophagus) -> positive the esophageal feeder tube (3811ms)\nWhat is the esophagus used for?\tthe endoscope\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the endoscope, is in, your esophagus) -> the endoscope (3799ms)\nWhat is the esophagus used for?\tthe US.\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (esophagus, is the fastest growing cancer in, the US.) -> the US. (3815ms)\nWhat is the esophagus used for?\t10 %\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is found in only, 10 %) -> 10 % (3811ms)\nWhat is the esophagus used for?\tbouts\t-0.111111111111\tWhat is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is implicated in nightly, bouts) -> bouts (3808ms)\nWhat is the esophagus used for?\tmore acid\t-0.111111111111\tWhat is the esophagus used for? -> $x: ($x, be in, esophagus) -> (more acid, is stuck in, the esophagus) -> more acid (3814ms)\nWhat is the esophagus used for?\tmuscle\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made of, muscle) -> muscle (3815ms)\nWhat is the esophagus used for?\ta tissue called epithelium\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, a tissue called epithelium) -> a tissue called epithelium (3815ms)\nWhat is the esophagus used for?\tstriated muscle\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (upper esophagus, are made of, striated muscle) -> striated muscle (3815ms)\nWhat is the esophagus used for?\tseveral layers\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (The esophagus, is made of, several layers) -> several layers (3815ms)\nWhat is the esophagus used for?\tindividual cells\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (The esophagus, is made up of, individual cells) -> individual cells (3815ms)\nWhat is the esophagus used for?\ttwo types\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, two types) -> two types (3815ms)\nWhat is the esophagus used for?\ttender tissue\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made of very, tender tissue) -> tender tissue (3815ms)\nWhat is the esophagus used for?\ttwo layers\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, two layers) -> two layers (3815ms)\nWhat is the esophagus used for?\tsquamous cells\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, squamous cells) -> squamous cells (3815ms)\nWhat is the esophagus used for?\tthree layers\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (The esophagus, is made of, three layers) -> three layers (3815ms)\nWhat is the esophagus used for?\tseveral distinct layers\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, are made up of, several distinct layers) -> several distinct layers (3815ms)\nWhat is the esophagus used for?\tseveral layers and cancers\t-0.222222222223\tWhat is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, several layers and cancers) -> several layers and cancers (3815ms)\nWhat is leukemia?\twork\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (work, may cause, leukemia) -> work (2453ms)\nWhat is leukemia?\tVitamin D\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Vitamin D, actually cause, leukemia) -> Vitamin D (6813ms)\nWhat is leukemia?\texposure\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (exposure, could cause, Leukemia) -> exposure (5176ms)\nWhat is leukemia?\ttoxins\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (toxins, have caused, leukemia) -> toxins (3434ms)\nWhat is leukemia?\ta second mouse\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a second mouse, caused, leukemia) -> a second mouse (4386ms)\nWhat is leukemia?\tviruses\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (viruses, can cause, leukemia) -> viruses (3434ms)\nWhat is leukemia?\tHealth Tools Experts\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Health Tools Experts, causes, leukemia) -> Health Tools Experts (6745ms)\nWhat is leukemia?\ta drug\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a drug, causes, leukemia) -> a drug (3434ms)\nWhat is leukemia?\tcomplications\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (complications, caused by, leukemia) -> complications (6813ms)\nWhat is leukemia?\tthe blood-forming cells\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the blood-forming cells, cause, leukemia) -> the blood-forming cells (2453ms)\nWhat is leukemia?\tcesium\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (cesium, causes, leukemia) -> cesium (7049ms)\nWhat is leukemia?\ta carcinogen\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a carcinogen, causes, leukemia) -> a carcinogen (4385ms)\nWhat is leukemia?\ta chemical\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a chemical, to cause, leukemia) -> a chemical (7050ms)\nWhat is leukemia?\tthe stem cells\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the stem cells, cause, leukemia) -> the stem cells (6813ms)\nWhat is leukemia?\tfallout\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (fallout, can cause, leukemia) -> fallout (6572ms)\nWhat is leukemia?\tformaldehyde\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (formaldehyde, may cause, leukemia) -> formaldehyde (5498ms)\nWhat is leukemia?\tthe question\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the question, causes, leukemia) -> the question (7049ms)\nWhat is leukemia?\tDU weapons\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (DU weapons, had caused, leukemia) -> DU weapons (2211ms)\nWhat is leukemia?\tBenzene\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Benzene, can cause, leukemia) -> Benzene (6678ms)\nWhat is leukemia?\tFatigue\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Fatigue, Causes, Leukemia) -> Fatigue (6745ms)\nWhat is leukemia?\tgenetic mutations\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (genetic mutations, cause, leukemia) -> genetic mutations (2453ms)\nWhat is leukemia?\ta known carcinogen\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a known carcinogen, causes, Leukemia) -> a known carcinogen (2210ms)\nWhat is leukemia?\tAspartame\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Aspartame, also caused, leukemia) -> Aspartame (5176ms)\nWhat is leukemia?\tExperts\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Experts, causes, leukemia) -> Experts (5176ms)\nWhat is leukemia?\tDU ammunition\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (DU ammunition, would cause, leukemia) -> DU ammunition (5498ms)\nWhat is leukemia?\tthe environment and food\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the environment and food, cause, leukemia) -> the environment and food (5176ms)\nWhat is leukemia?\tthe microwavess\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the microwavess, could cause, leukemia) -> the microwavess (7050ms)\nWhat is leukemia?\tjet fuel and plastic\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (jet fuel and plastic, causes, leukemia) -> jet fuel and plastic (6572ms)\nWhat is leukemia?\tthe marriage\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the marriage, causes, leukemia) -> the marriage (6744ms)\nWhat is leukemia?\tburning garbage\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (burning garbage, can cause, leukemia) -> burning garbage (6572ms)\nWhat is leukemia?\tmagnetic fields\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (magnetic fields, cause, leukemia) -> magnetic fields (4385ms)\nWhat is leukemia?\twhite cell count\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (white cell count, even cause, leukemia) -> white cell count (4385ms)\nWhat is leukemia?\tinsomnia\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (insomnia, can cause, leukemia) -> insomnia (6744ms)\nWhat is leukemia?\tthe workplace\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the workplace, can cause, leukemia) -> the workplace (5176ms)\nWhat is leukemia?\trogue stem cells\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (rogue stem cells, can cause, Leukemia) -> rogue stem cells (6572ms)\nWhat is leukemia?\tExposure to benzene\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Exposure to benzene, to cause, leukemia) -> Exposure to benzene (3434ms)\nWhat is leukemia?\tchemicals\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (chemicals, causing, leukemia) -> chemicals (2453ms)\nWhat is leukemia?\tTungsten\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Tungsten, to cause, leukemia) -> Tungsten (6572ms)\nWhat is leukemia?\tvitamin\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (vitamin, may cause, leukemia) -> vitamin (6813ms)\nWhat is leukemia?\telectric power lines\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (electric power lines, cause, leukemia) -> electric power lines (6744ms)\nWhat is leukemia?\tdeath\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (death, caused by, Leukemia) -> death (6813ms)\nWhat is leukemia?\ta toxic product\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a toxic product, caused, Leukemia) -> a toxic product (3434ms)\nWhat is leukemia?\tthe microwaves\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the microwaves, could cause, leukemia) -> the microwaves (2210ms)\nWhat is leukemia?\ta retrovirus\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a retrovirus, causes, leukemia) -> a retrovirus (2452ms)\nWhat is leukemia?\tProlonged exposure\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Prolonged exposure, will cause, Leukemia) -> Prolonged exposure (2210ms)\nWhat is leukemia?\tchemical compounds and radiation\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (chemical compounds and radiation, may cause, leukemia) -> chemical compounds and radiation (6813ms)\nWhat is leukemia?\tthe dude\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the dude, caused by, leukemia) -> the dude (6572ms)\nWhat is leukemia?\tthe cells\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the cells, cause, leukemia) -> the cells (5498ms)\nWhat is leukemia?\tThe mechanism\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (The mechanism, cause, leukemia) -> The mechanism (6813ms)\nWhat is leukemia?\tpower lines\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (power lines, might cause, leukemia) -> power lines (5176ms)\nWhat is leukemia?\tthe misplaced MLL\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the misplaced MLL, causes, leukemia) -> the misplaced MLL (5498ms)\nWhat is leukemia?\tchronic exposure\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (chronic exposure, can cause, leukemia) -> chronic exposure (2210ms)\nWhat is leukemia?\tthe air\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the air, can cause, leukemia) -> the air (6744ms)\nWhat is leukemia?\tthe smallest RNAs\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the smallest RNAs, apparently causes, leukemia) -> the smallest RNAs (7049ms)\nWhat is leukemia?\tEllence\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Ellence, can cause, leukemia) -> Ellence (6678ms)\nWhat is leukemia?\turanium shells\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (uranium shells, cause, leukemia) -> uranium shells (4385ms)\nWhat is leukemia?\tagents\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (agents, may cause, leukemia) -> agents (5498ms)\nWhat is leukemia?\tCesium 137\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Cesium 137, causes, leukemia) -> Cesium 137 (3434ms)\nWhat is leukemia?\tStrontium-90\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Strontium-90, causes, leukemia) -> Strontium-90 (7049ms)\nWhat is leukemia?\tANNOUNCER\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (ANNOUNCER, causes, leukemia) -> ANNOUNCER (2452ms)\nWhat is leukemia?\tAZT\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (AZT, causes, leukemia) -> AZT (6678ms)\nWhat is leukemia?\tThe radiation\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (The radiation, causes, leukemia) -> The radiation (2453ms)\nWhat is leukemia?\ta gene\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a gene, causes, leukemia) -> a gene (6744ms)\nWhat is leukemia?\tnearby refineries\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (nearby refineries, have caused, leukemia) -> nearby refineries (7049ms)\nWhat is leukemia?\tmutated KIT protein\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (mutated KIT protein, causes, leukemia) -> mutated KIT protein (6572ms)\nWhat is leukemia?\tblood cells\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (blood cells, cause, leukemia) -> blood cells (7050ms)\nWhat is leukemia?\tfew reasons\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (few reasons, might cause, Leukemia) -> few reasons (5498ms)\nWhat is leukemia?\tHydrea\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (Hydrea, causes, leukemia) -> Hydrea (6813ms)\nWhat is leukemia?\tDU\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (DU, can cause, leukemia) -> DU (3434ms)\nWhat is leukemia?\tpain\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (pain, caused by, leukemia) -> pain (4385ms)\nWhat is leukemia?\tMtBE\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (MtBE, caused, leukemia) -> MtBE (5176ms)\nWhat is leukemia?\ta retroviral vector\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a retroviral vector, caused, leukemia) -> a retroviral vector (2453ms)\nWhat is leukemia?\tthe bone marrow\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the bone marrow, causes, leukemia) -> the bone marrow (4385ms)\nWhat is leukemia?\ta virus\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (a virus, causes, Leukemia) -> a virus (6678ms)\nWhat is leukemia?\tradiation\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (radiation, can cause, leukemia) -> radiation (7049ms)\nWhat is leukemia?\tkidneys\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (kidneys, even cause, leukemia) -> kidneys (5176ms)\nWhat is leukemia?\tthe air , ground and food\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (the air , ground and food, can cause, leukemia) -> the air , ground and food (6572ms)\nWhat is leukemia?\tsomatic PTPN11 mutations\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (somatic PTPN11 mutations, cause, leukemias) -> somatic PTPN11 mutations (5498ms)\nWhat is leukemia?\tgene therapy\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (gene therapy, can cause, leukemia) -> gene therapy (7050ms)\nWhat is leukemia?\tdifferent types\t2.111111111101\tWhat is leukemia? -> $x: ($x, cause, leukemia) -> (different types, causes of, Leukemia) -> different types (6744ms)\nWhat is leukemia?\ta doctor\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (a doctor, specializing in, leukemia) -> a doctor (7501ms)\nWhat is leukemia?\tenough platelets\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (enough platelets, happens in, leukemia) -> enough platelets (7597ms)\nWhat is leukemia?\ttranslocations\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (translocations, found in, human leukemias) -> translocations (7526ms)\nWhat is leukemia?\thigh frequency currents\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (high frequency currents, were contra-indicated in, leukemia) -> high frequency currents (7574ms)\nWhat is leukemia?\tWoburn\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Woburn, observed a horrifying increase in, leukemia) -> Woburn (7550ms)\nWhat is leukemia?\tthe gene\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the gene, was also expressed in, leukemia) -> the gene (7550ms)\nWhat is leukemia?\tthe concepts\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the concepts, goes wrong in, leukemia) -> the concepts (7476ms)\nWhat is leukemia?\tcomplex p73\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (complex p73, isoforms in, myeloid leukemia) -> complex p73 (7597ms)\nWhat is leukemia?\tThe first bone marrow transplants\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (The first bone marrow transplants, were performed in, leukemia) -> The first bone marrow transplants (7501ms)\nWhat is leukemia?\tVEGF\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (VEGF, supports growth in, leukemia) -> VEGF (7597ms)\nWhat is leukemia?\ta continued strain\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (a continued strain, is an aggravating factor in, leukemia) -> a continued strain (7501ms)\nWhat is leukemia?\tthe mutation\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the mutation, found in, leukemia) -> the mutation (7550ms)\nWhat is leukemia?\tAn infectious agent\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (An infectious agent, is implicated in, leukemia) -> An infectious agent (7597ms)\nWhat is leukemia?\tBP1\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (BP1, is active in, leukemia) -> BP1 (7574ms)\nWhat is leukemia?\tGATA-2 mutations\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (GATA-2 mutations, occur in, leukemia) -> GATA-2 mutations (7525ms)\nWhat is leukemia?\tgenes\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (genes, involved in, myeloid leukemia) -> genes (7550ms)\nWhat is leukemia?\ta Japanese Haematologist\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (a Japanese Haematologist, discovered the increase in, leukemia) -> a Japanese Haematologist (7476ms)\nWhat is leukemia?\trust inhibitors\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (rust inhibitors, have been implicated in, leukemia) -> rust inhibitors (7526ms)\nWhat is leukemia?\tthe United States\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the United States, declined in, leukemia mortality) -> the United States (7574ms)\nWhat is leukemia?\tAbl\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Abl, has been extensively studied in, leukemia) -> Abl (7597ms)\nWhat is leukemia?\tBoswellia\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Boswellia, may even be useful in treating, leukemia) -> Boswellia (7526ms)\nWhat is leukemia?\tResearchers\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Researchers, found a 38-fold increase in, leukemia) -> Researchers (7476ms)\nWhat is leukemia?\tCSCs\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (CSCs, was first documented in, leukemia) -> CSCs (7525ms)\nWhat is leukemia?\tdaily aloe\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (daily aloe, showed a remarkable reduction in, leukemia) -> daily aloe (7573ms)\nWhat is leukemia?\tEvidence\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Evidence, is strongest in, leukemia) -> Evidence (7550ms)\nWhat is leukemia?\tthe activated form\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the activated form, found in, leukemia) -> the activated form (7501ms)\nWhat is leukemia?\tDr. El-Shemy\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Dr. El-Shemy, did his postdoctoral fellowship in, leukemia) -> Dr. El-Shemy (7573ms)\nWhat is leukemia?\ttwo small molecules\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (two small molecules, are lost in, chronic leukemia) -> two small molecules (7501ms)\nWhat is leukemia?\tThe increases\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (The increases, occurred in, leukemia) -> The increases (7476ms)\nWhat is leukemia?\tKRAS , BRAF and EGFR ?\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (KRAS , BRAF and EGFR ?, have also been implicated in, leukemia) -> KRAS , BRAF and EGFR ? (7573ms)\nWhat is leukemia?\tprevious studies\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (previous studies, have shown benefit in treating, leukemia) -> previous studies (7476ms)\nWhat is leukemia?\tTal1 and Lyl1\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Tal1 and Lyl1, are aberrantly over-expressed in, leukemia) -> Tal1 and Lyl1 (7501ms)\nWhat is leukemia?\tDr. Druker\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Dr. Druker, specializes in, childhood Leukemia) -> Dr. Druker (7526ms)\nWhat is leukemia?\tleptin receptor\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (leptin receptor, isoforms in, myeloid leukemia) -> leptin receptor (7476ms)\nWhat is leukemia?\tItaly\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Italy, revealed significant increases in, leukemia) -> Italy (7501ms)\nWhat is leukemia?\tan important molecule\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (an important molecule, is mutated in, leukemia) -> an important molecule (7597ms)\nWhat is leukemia?\ta cancer-causing gene\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (a cancer-causing gene, found in, childhood leukemias) -> a cancer-causing gene (7574ms)\nWhat is leukemia?\tdecitabine\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (decitabine, was found to be active in, leukemia) -> decitabine (7501ms)\nWhat is leukemia?\ttumour maintenance\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (tumour maintenance, was originally demonstrated in, leukemia) -> tumour maintenance (7501ms)\nWhat is leukemia?\tKava Kava\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Kava Kava, has also shown promise in treating, leukemia) -> Kava Kava (7501ms)\nWhat is leukemia?\tFrance\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (France, was very active in treating, leukemia) -> France (7476ms)\nWhat is leukemia?\tprogrammed cell death\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (programmed cell death, goes awry in, leukemias) -> programmed cell death (7526ms)\nWhat is leukemia?\tLong-term exposure\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Long-term exposure, can result in, leukemia) -> Long-term exposure (7597ms)\nWhat is leukemia?\tthe moment few republics\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the moment few republics, are reporting a rise in, leukemia) -> the moment few republics (7525ms)\nWhat is leukemia?\tthe events\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the events, occur in, every leukemia) -> the events (7550ms)\nWhat is leukemia?\tThe first targeted therapies\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (The first targeted therapies, were developed in, leukemia) -> The first targeted therapies (7050ms)\nWhat is leukemia?\tNOTCH1 ?\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (NOTCH1 ?, were implicated in, leukemia) -> NOTCH1 ? (7476ms)\nWhat is leukemia?\tThe count\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (The count, can otherwise be altered in, leukemia) -> The count (7526ms)\nWhat is leukemia?\tvincristine\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (vincristine, are used in, leukemia) -> vincristine (7476ms)\nWhat is leukemia?\tT cells\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (T cells, stain positive in, leukemia) -> T cells (7574ms)\nWhat is leukemia?\timportant discoveries\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (important discoveries, will be done in, leukemias) -> important discoveries (7574ms)\nWhat is leukemia?\tarsenic\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (arsenic, was proven helpful in treating, leukemia) -> arsenic (7550ms)\nWhat is leukemia?\ttranscription factors\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (transcription factors, involved in, leukemia) -> transcription factors (7501ms)\nWhat is leukemia?\tthe malady\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the malady, had been documented in, leukemia) -> the malady (7501ms)\nWhat is leukemia?\tHope\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Hope, happened in, leukemia) -> Hope (7526ms)\nWhat is leukemia?\tSet1\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Set1, are involved in, leukemia) -> Set1 (7550ms)\nWhat is leukemia?\tnovel partner\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (novel partner, chromosomes in, myeloid leukemias) -> novel partner (7525ms)\nWhat is leukemia?\tColloidal Silver IV\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Colloidal Silver IV, has been successful in, Leukemia) -> Colloidal Silver IV (7476ms)\nWhat is leukemia?\tRegistered Nurses\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Registered Nurses, are experienced in, leukemia) -> Registered Nurses (7550ms)\nWhat is leukemia?\tMCL1\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (MCL1, is prevalent in, leukemia) -> MCL1 (7476ms)\nWhat is leukemia?\t90 %\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (90 %, are in, leukemias) -> 90 % (7526ms)\nWhat is leukemia?\tresponse\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (response, relapse in, human leukemia) -> response (7526ms)\nWhat is leukemia?\tarticles\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (articles, published to your present article in, Leukemia) -> articles (7573ms)\nWhat is leukemia?\thematopoietic failure\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (hematopoietic failure, is an invariable feature in, leukemia) -> hematopoietic failure (7574ms)\nWhat is leukemia?\tCancer stem cells\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Cancer stem cells, were identified in, leukemia) -> Cancer stem cells (7550ms)\nWhat is leukemia?\tSeptember ?\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (September ?, cites unusual rises in, leukemia) -> September ? (7550ms)\nWhat is leukemia?\tregulation\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (regulation, may be modified in, leukemia) -> regulation (7574ms)\nWhat is leukemia?\tmelatonin\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (melatonin, are in, leukemia) -> melatonin (7550ms)\nWhat is leukemia?\tOphthalmic disorders\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Ophthalmic disorders, occur in, leukemias) -> Ophthalmic disorders (7525ms)\nWhat is leukemia?\tparticular antigens\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (particular antigens, were studied in, leukemia) -> particular antigens (7526ms)\nWhat is leukemia?\tthe kinetochore complex\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the kinetochore complex, have been implicated in, leukemia) -> the kinetochore complex (7574ms)\nWhat is leukemia?\tnormal and leukemic stem cells\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (normal and leukemic stem cells, are rarely mutated in, leukemia) -> normal and leukemic stem cells (7476ms)\nWhat is leukemia?\tsuch viruses\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (such viruses, can have a role in causing, leukemia) -> such viruses (7550ms)\nWhat is leukemia?\tcause DNA and chromosomal damage\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (cause DNA and chromosomal damage, found in, leukemia) -> cause DNA and chromosomal damage (7597ms)\nWhat is leukemia?\tIraq\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Iraq, have documented an increase in, leukemia) -> Iraq (7501ms)\nWhat is leukemia?\tthe rise\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the rise, is in, leukemias) -> the rise (7476ms)\nWhat is leukemia?\tlast year\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (last year, identified in, leukemia) -> last year (7597ms)\nWhat is leukemia?\tClofarabine\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Clofarabine, has shown clinical activity in, leukemias) -> Clofarabine (7501ms)\nWhat is leukemia?\tLead\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Lead, is implicated in causing, leukemia) -> Lead (7476ms)\nWhat is leukemia?\tMYH Tyr382Asp\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (MYH Tyr382Asp, variants in, childhood leukemias) -> MYH Tyr382Asp (7525ms)\nWhat is leukemia?\tdoctors\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (doctors, have experience in treating, leukemia) -> doctors (7597ms)\nWhat is leukemia?\tHiroshima survivors\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (Hiroshima survivors, showed a 17-fold increase in, leukemia) -> Hiroshima survivors (7550ms)\nWhat is leukemia?\tindirubin\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (indirubin, is widely used in, leukemia) -> indirubin (7550ms)\nWhat is leukemia?\tgreat strides\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (great strides, have been made in treating, leukemia) -> great strides (7050ms)\nWhat is leukemia?\tthe process\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (the process, can result in, leukemia) -> the process (7501ms)\nWhat is leukemia?\tself-renew\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (self-renew, are exploited in, leukemias) -> self-renew (7501ms)\nWhat is leukemia?\talkylglycerols\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (alkylglycerols, is being used in treating, leukemia) -> alkylglycerols (7476ms)\nWhat is leukemia?\tcaspase activation pathways\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (caspase activation pathways, are common in, leukemia) -> caspase activation pathways (7550ms)\nWhat is leukemia?\ttelomerase activity\t1.99999999999\tWhat is leukemia? -> $x: ($x, in, leukemia) -> (telomerase activity, may be an early step in, leukemia) -> telomerase activity (7574ms)\nWhat is leukemia?\tpatients\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (the Leukemia and Lymphoma Society, are doing for, patients) -> patients (7666ms)\nWhat is leukemia?\ta simple blood examination\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (the leukemia, can be done ding, a simple blood examination) -> a simple blood examination (7621ms)\nWhat is leukemia?\tthe day\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia necklace, did arrive on, the day) -> the day (7643ms)\nWhat is leukemia?\tscientists\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia cells, was done by, scientists) -> scientists (7597ms)\nWhat is leukemia?\thumans\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do, humans) -> humans (7643ms)\nWhat is leukemia?\tparental ES cells\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia inhibitory factor, did, parental ES cells) -> parental ES cells (7621ms)\nWhat is leukemia?\tthe shipyard?s non-nuclear workers\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (less leukemia mortality, did, the shipyard?s non-nuclear workers) -> the shipyard?s non-nuclear workers (7621ms)\nWhat is leukemia?\ttranscriptase\t1.888888888879\tWhat is leukemia? -> $x: ($x, describe, leukemia) -> (transcriptase, have been described in, acute myelocytic leukemia) -> transcriptase (7621ms)\nWhat is leukemia?\tmuch knowledge\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (mouse leukemia, were done without, much knowledge) -> much knowledge (7621ms)\nWhat is leukemia?\tLETBI\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (The chronic leukemia patients, did go into, LETBI) -> LETBI (7643ms)\nWhat is leukemia?\tSL\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (The Leukemia & Lymphoma Society, is doing in, SL) -> SL (7643ms)\nWhat is leukemia?\tany form\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, better start doing, any form) -> any form (7643ms)\nWhat is leukemia?\tPCI\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia treatment, do have a component of, PCI) -> PCI (7621ms)\nWhat is leukemia?\tPhytochemicals Triumph\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (Leukemia Cells, Do, Phytochemicals Triumph) -> Phytochemicals Triumph (7597ms)\nWhat is leukemia?\tSalkowski 102\t1.888888888879\tWhat is leukemia? -> $x: ($x, describe, leukemia) -> (Salkowski 102, described a patient with, ?splenic leukemia?) -> Salkowski 102 (7621ms)\nWhat is leukemia?\t1000\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, started doing, 1000) -> 1000 (7597ms)\nWhat is leukemia?\tage\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (Leukemia, does increase with, age) -> age (7643ms)\nWhat is leukemia?\tadults\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do, adults) -> adults (7643ms)\nWhat is leukemia?\ta career school scoring record\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, only did Collier set, a career school scoring record) -> a career school scoring record (7621ms)\nWhat is leukemia?\tside\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (the Leukemia, did, side) -> side (7597ms)\nWhat is leukemia?\tFIV\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, did test positive for, FIV) -> FIV (7621ms)\nWhat is leukemia?\tpassing away\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (a girl dying of leukemia, to do before, passing away) -> passing away (7643ms)\nWhat is leukemia?\ta cure\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (the Leukemia and Lymphoma Society, are doing to find, a cure) -> a cure (7621ms)\nWhat is leukemia?\tmatter\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (chronic phase chronic myeloid leukemia, does, matter) -> matter (7666ms)\nWhat is leukemia?\tchildren\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do, children) -> children (7621ms)\nWhat is leukemia?\ta single\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, are typically done by, a single) -> a single (7643ms)\nWhat is leukemia?\tcranial spinal radiation\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, have done, cranial spinal radiation) -> cranial spinal radiation (7643ms)\nWhat is leukemia?\tgreat attitudes\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (his leukemia, have done so faithfully with, great attitudes) -> great attitudes (7644ms)\nWhat is leukemia?\tMeniere\t1.888888888879\tWhat is leukemia? -> $x: ($x, describe, leukemia) -> (Meniere, described the effects of, leukemia) -> Meniere (7643ms)\nWhat is leukemia?\ta lymph node biopsy\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (lymphoma/leukemia, is to do, a lymph node biopsy) -> a lymph node biopsy (7621ms)\nWhat is leukemia?\tbrain cancer\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do suggest a link to, brain cancer) -> brain cancer (7597ms)\nWhat is leukemia?\tyears\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (Leukemia, does n?t hang all around for, years) -> years (7597ms)\nWhat is leukemia?\tsmoking\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemias, have nothing to do with, smoking) -> smoking (7621ms)\nWhat is leukemia?\tcancer patients\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (The Leukemia & Lymphoma Society, does for, cancer patients) -> cancer patients (7666ms)\nWhat is leukemia?\tthe work\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (the leukemia cells, can still do some of, the work) -> the work (7621ms)\nWhat is leukemia?\tnormal blood cells\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (Leukemia cells, cannot do the job of, normal blood cells) -> normal blood cells (7621ms)\nWhat is leukemia?\ta number\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (DIagnosing leukemia, is done by, a number) -> a number (7621ms)\nWhat is leukemia?\ttreatment\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (Hairy cell leukemia, does n?t usually respond well to, treatment) -> treatment (7644ms)\nWhat is leukemia?\tphases\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (acute leukemia, is done in, phases) -> phases (7643ms)\nWhat is leukemia?\tan amazing job\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (the Leukemia & Lymphoma Society?s Woman, did, an amazing job) -> an amazing job (7666ms)\nWhat is leukemia?\tthe associations\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (childhood leukemia, as do, the associations) -> the associations (7644ms)\nWhat is leukemia?\ta form\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (some chronic leukemias, do progress to, a form) -> a form (7666ms)\nWhat is leukemia?\tstaging systems\t1.888888888879\tWhat is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do have, staging systems) -> staging systems (7643ms)\nWhat is leukemia?\tfuneral directors\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is creating unnecessary risks for, funeral directors) -> funeral directors (7688ms)\nWhat is leukemia?\tmolecular genetics\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (molecular genetics, did, some leukemia research) -> molecular genetics (7752ms)\nWhat is leukemia?\tCancers\t1.888888888878\tWhat is leukemia? -> $x: ($x, produce, leukemia) -> (Cancers, produced included, leukemia , lymphoma , kidney) -> Cancers (7688ms)\nWhat is leukemia?\tuse\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is being tested for, use) -> use (7710ms)\nWhat is leukemia?\tThe 9 year bride\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (The 9 year bride, does have, leukemia) -> The 9 year bride (7688ms)\nWhat is leukemia?\thomes\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (our FIV+ and feline leukemia cats, are looking for, homes) -> homes (7710ms)\nWhat is leukemia?\thuman leukemia\t1.888888888878\tWhat is leukemia? -> $x: ($x, produce, leukemia) -> (human leukemia, had produced, a leukemia) -> human leukemia (7688ms)\nWhat is leukemia?\tat least 6 months\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, has been achieved for, at least 6 months) -> at least 6 months (7688ms)\nWhat is leukemia?\ta day\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, was Batman for, a day) -> a day (7793ms)\nWhat is leukemia?\tways\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (The Leukemia & Lymphoma Society, am looking for, ways) -> ways (7688ms)\nWhat is leukemia?\ta bone marrow match\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, has been searching for, a bone marrow match) -> a bone marrow match (7752ms)\nWhat is leukemia?\t5q syndrome\t1.888888888878\tWhat is leukemia? -> $x: ($x, characterize, leukemia) -> (5q syndrome, is characterized to, overt leukemia) -> 5q syndrome (7710ms)\nWhat is leukemia?\tdogs\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is very rare for, dogs) -> dogs (7710ms)\nWhat is leukemia?\tpossible causes\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, were investigated for, possible causes) -> possible causes (7793ms)\nWhat is leukemia?\tthe study\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia, is a classic area for, the study) -> the study (7710ms)\nWhat is leukemia?\tDax\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (Dax, did lose his battle with, Leukemia) -> Dax (7752ms)\nWhat is leukemia?\tthemselves\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia patients, were then left to fend for, themselves) -> themselves (7773ms)\nWhat is leukemia?\tthe boats\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (the boats, decided to do, a leukemia fund-raising event) -> the boats (7773ms)\nWhat is leukemia?\tThe NCI\t1.888888888878\tWhat is leukemia? -> $x: ($x, define, leukemia) -> (The NCI, defines, leukemia) -> The NCI (7710ms)\nWhat is leukemia?\tthe first time\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia and sarcomas, has been found for, the first time) -> the first time (7710ms)\nWhat is leukemia?\tcat owners\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (The cat leukemia virus, is very worrisome for, cat owners) -> cat owners (7812ms)\nWhat is leukemia?\tminority patients\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia survival rates, are lower for, minority patients) -> minority patients (7666ms)\nWhat is leukemia?\tthe kids\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (the kids, does develop, leukemia) -> the kids (7773ms)\nWhat is leukemia?\tpro-active care\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Understanding leukemia, is basic for, pro-active care) -> pro-active care (7710ms)\nWhat is leukemia?\tprognostic factors\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemias, has been useful for identifying, prognostic factors) -> prognostic factors (7732ms)\nWhat is leukemia?\tTheodore?s bone marrow\t1.888888888878\tWhat is leukemia? -> $x: ($x, produce, leukemia) -> (Theodore?s bone marrow, produced, the leukemia) -> Theodore?s bone marrow (7793ms)\nWhat is leukemia?\tWomen\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (Women, Can Do Now, Bovine Leukemia Virus Infection) -> Women (7793ms)\nWhat is leukemia?\tmodern medicine\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (modern medicine, does n?t hold the cure for, childhood leukemia) -> modern medicine (7773ms)\nWhat is leukemia?\tThe shelter\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (The shelter, does feline, leukemia tests) -> The shelter (7688ms)\nWhat is leukemia?\tinfected cattle\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (infected cattle, do develop, leukemia or lymphoma) -> infected cattle (7812ms)\nWhat is leukemia?\tTKI therapy\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (these leukemias, may also be candidates for, TKI therapy) -> TKI therapy (7752ms)\nWhat is leukemia?\tfresh peaches\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, was for, fresh peaches) -> fresh peaches (7732ms)\nWhat is leukemia?\thome\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, was cared for at, home) -> home (7710ms)\nWhat is leukemia?\tPCBs\t1.888888888878\tWhat is leukemia? -> $x: ($x, produce, leukemia) -> (PCBs, also produced, lymphomas and leukemias) -> PCBs (7666ms)\nWhat is leukemia?\tMetal\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (Metal, does n?t get, leukemia) -> Metal (7666ms)\nWhat is leukemia?\tspinal tap\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (spinal tap, may be done to diagnose, leukemia) -> spinal tap (7773ms)\nWhat is leukemia?\tthe transplant\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (the transplant, did cure, his leukemia) -> the transplant (7812ms)\nWhat is leukemia?\tsuccessful treatment\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is critical for, successful treatment) -> successful treatment (7752ms)\nWhat is leukemia?\twhite children\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia rates, are substantially higher for, white children) -> white children (7793ms)\nWhat is leukemia?\tbone marrow transplants\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (bone marrow transplants, are done for, leukemia) -> bone marrow transplants (7773ms)\nWhat is leukemia?\tfive years\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is reinstated now for, five years) -> five years (7793ms)\nWhat is leukemia?\tOne bright spot\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (One bright spot, did arise from, his leukemia diagnosis) -> One bright spot (7752ms)\nWhat is leukemia?\tthe rest\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (feline leukemia, is infected for, the rest) -> the rest (7752ms)\nWhat is leukemia?\ta bone-marrow transplant\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, are waiting for, a bone-marrow transplant) -> a bone-marrow transplant (7732ms)\nWhat is leukemia?\tmdr-phenotype\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is a good marker for, mdr-phenotype) -> mdr-phenotype (7752ms)\nWhat is leukemia?\tcats\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (feline leukemia, is recommended for, cats) -> cats (7812ms)\nWhat is leukemia?\tResearch\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (Research, was done on, three leukemia patients) -> Research (7773ms)\nWhat is leukemia?\ttreatment planning\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (your leukemia, can be important for, treatment planning) -> treatment planning (7773ms)\nWhat is leukemia?\tHodgkin?s survivors\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (a future leukemia, is a possibility for, Hodgkin?s survivors) -> Hodgkin?s survivors (7752ms)\nWhat is leukemia?\tthe hotdogs\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (the hotdogs, do cause, higher rates of childhood leukemia) -> the hotdogs (7752ms)\nWhat is leukemia?\tover 20 years\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (hairy cell leukemia, apparently was told for, over 20 years) -> over 20 years (7773ms)\nWhat is leukemia?\t30 days\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia cures, were for about, 30 days) -> 30 days (7666ms)\nWhat is leukemia?\tcoaches\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (The Leukemia & Lymphoma Society, is looking for, coaches) -> coaches (7688ms)\nWhat is leukemia?\teach major type\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (treating leukemia, is different for, each major type) -> each major type (7732ms)\nWhat is leukemia?\tan invalid husband\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia and bad arthritis, is caring for, an invalid husband) -> an invalid husband (7793ms)\nWhat is leukemia?\tfamilies\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (The Leukemia & Lymphoma Society, is for, families) -> families (7773ms)\nWhat is leukemia?\tthe non-Adriamycin arm\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (the non-Adriamycin arm, did develop, an acute leukemia) -> the non-Adriamycin arm (7812ms)\nWhat is leukemia?\ta bone marrow donor\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, are searching for, a bone marrow donor) -> a bone marrow donor (7793ms)\nWhat is leukemia?\tthe Match\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (the Match, does a really good thing for, leukemia patients) -> the Match (7793ms)\nWhat is leukemia?\tCuddles\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (Cuddles, did test positive for, feline leukemia) -> Cuddles (7710ms)\nWhat is leukemia?\tthe decline\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (the possibility salmon leukemia, was to blame for, the decline) -> the decline (7688ms)\nWhat is leukemia?\tFeLV.\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, should be tested for, FeLV.) -> FeLV. (7812ms)\nWhat is leukemia?\tThe US and UK Studies\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (The US and UK Studies, Do Point to, an EMF Leukemia Risk) -> The US and UK Studies (7732ms)\nWhat is leukemia?\t35 years\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Human Leukemia, are now for, 35 years) -> 35 years (7773ms)\nWhat is leukemia?\ta transplant\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, may be considered for, a transplant) -> a transplant (7688ms)\nWhat is leukemia?\tfleas\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (feline leukemia, has been treated for, fleas) -> fleas (7752ms)\nWhat is leukemia?\tbaby Noah\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (baby Noah, did n?t have, leukemia , lymphoma or liver failure) -> baby Noah (7710ms)\nWhat is leukemia?\tdonations\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (donations, be done to, the Leukemia Lymphoma Society) -> donations (7688ms)\nWhat is leukemia?\tB?chau et al\t1.888888888878\tWhat is leukemia? -> $x: ($x, characterize, leukemia) -> (B?chau et al, characterize, B-cell leukemia-3) -> B?chau et al (7688ms)\nWhat is leukemia?\tthe Medal\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, was nominated for, the Medal) -> the Medal (7793ms)\nWhat is leukemia?\tthe appropriate management\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemias, are the bases for, the appropriate management) -> the appropriate management (7688ms)\nWhat is leukemia?\tthe last 20 years\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, has been studied for, the last 20 years) -> the last 20 years (7666ms)\nWhat is leukemia?\ta physician\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (a physician, does suspect, leukemia) -> a physician (7812ms)\nWhat is leukemia?\tthe variety\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (lymphoma and leukemia research, is well known for, the variety) -> the variety (7752ms)\nWhat is leukemia?\ta third time\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (The Leukemia, was back for, a third time) -> a third time (7710ms)\nWhat is leukemia?\tany cat\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia vaccine, is appropriate for, any cat) -> any cat (7732ms)\nWhat is leukemia?\tA DONOR\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (LEUKEMIA AND LYMPHOMA, ARE WAITING FOR, A DONOR) -> A DONOR (7688ms)\nWhat is leukemia?\tVaccines\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (Vaccines, do predispose to, cancer and leukemia) -> Vaccines (7732ms)\nWhat is leukemia?\tthe public\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is asking for, the public) -> the public (7710ms)\nWhat is leukemia?\tthe establishment\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (stem cell leukemia, is also calling for, the establishment) -> the establishment (7666ms)\nWhat is leukemia?\tseveral types\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia, is a general term for, several types) -> several types (7793ms)\nWhat is leukemia?\tleukemogenesis\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (feline leukemia virus, are responsible for, leukemogenesis) -> leukemogenesis (7666ms)\nWhat is leukemia?\tclues\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (juvenile leukemia Kaustubh Supekar, is looking for, clues) -> clues (7752ms)\nWhat is leukemia?\ta child\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (a Childhood Leukemia Foundation, is appropriate for, a child) -> a child (7793ms)\nWhat is leukemia?\tpower frequency fields\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (childhood leukemia, is suggested for, power frequency fields) -> power frequency fields (7688ms)\nWhat is leukemia?\tthe anti-tumor activity\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (the anti-tumor activity, were done against, L1210 leukemia) -> the anti-tumor activity (7710ms)\nWhat is leukemia?\tthe treatment\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is important for, the treatment) -> the treatment (7773ms)\nWhat is leukemia?\tleukemia\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia stem cells, are responsible for initiating, leukemia) -> leukemia (7793ms)\nWhat is leukemia?\tDonald Pinkel\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (Donald Pinkel, has done so much for, leukemia) -> Donald Pinkel (7710ms)\nWhat is leukemia?\tmore than 10 years\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, had been HIV-positive for, more than 10 years) -> more than 10 years (7752ms)\nWhat is leukemia?\tan early stem cell\t1.888888888878\tWhat is leukemia? -> $x: ($x, produce, leukemia) -> (an early stem cell, produce, acute leukemia) -> an early stem cell (7666ms)\nWhat is leukemia?\tdays or weeks\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (acute leukemia present, have been ill only for, days or weeks) -> days or weeks (7732ms)\nWhat is leukemia?\tfour different types\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia, is the general name for, four different types) -> four different types (7793ms)\nWhat is leukemia?\tionizing radiation\t1.888888888878\tWhat is leukemia? -> $x: ($x, do, leukemia) -> (ionizing radiation, do get, Leukemia) -> ionizing radiation (7688ms)\nWhat is leukemia?\ttransplant\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemias, are the major cancer-related reason for, transplant) -> transplant (7812ms)\nWhat is leukemia?\tseven years\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, has now been cancer free for, seven years) -> seven years (7732ms)\nWhat is leukemia?\tthe protein survivin\t1.888888888878\tWhat is leukemia? -> $x: ($x, produce, leukemia) -> (the protein survivin, is heavily produced in, NK-leukemia cells) -> the protein survivin (7732ms)\nWhat is leukemia?\tmajor heart surgery\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia , tinnitus, am schedule for, major heart surgery) -> major heart surgery (7732ms)\nWhat is leukemia?\tinterested residents\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (Acute Leukemia, are available for, interested residents) -> interested residents (7732ms)\nWhat is leukemia?\tprofits\t1.888888888878\tWhat is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is good for, profits) -> profits (7752ms)\nWhat is leukemia?\t2. Several retroviruses\t1.888888888878\tWhat is leukemia? -> $x: ($x, produce, leukemia) -> (2. Several retroviruses, can produce, leukemia) -> 2. Several retroviruses (7732ms)\nWhat is leukemia?\tthe vet\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the vet, found, two leukemia tumors) -> the vet (7870ms)\nWhat is leukemia?\tthe antibody\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the antibody, finds, a leukemia cell) -> the antibody (7871ms)\nWhat is leukemia?\tPaola Michelozzi\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Paola Michelozzi, found higher rates of, childhood leukemia) -> Paola Michelozzi (7928ms)\nWhat is leukemia?\tBoston University\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Boston University, found, high leukemia rates) -> Boston University (7928ms)\nWhat is leukemia?\tThe idea\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (The idea, is to find, residual leukemia) -> The idea (7812ms)\nWhat is leukemia?\tthe amounts\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the amounts, found helpful for, leukemia treatment) -> the amounts (7812ms)\nWhat is leukemia?\ta chemical compound refined\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (a chemical compound refined, was found to cause, leukemia) -> a chemical compound refined (7889ms)\nWhat is leukemia?\tmission\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (mission, is to find cures for, leukemia) -> mission (7909ms)\nWhat is leukemia?\tresearch\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (research, will help find cures for, leukemia) -> research (7909ms)\nWhat is leukemia?\tthe MLL and AF4 genes\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the MLL and AF4 genes, is found in, Acute lymphoblastic leukemia) -> the MLL and AF4 genes (7812ms)\nWhat is leukemia?\thome use\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (home use, found an increased risk of, childhood leukemia) -> home use (7832ms)\nWhat is leukemia?\tKennedi\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Kennedi, was found to suffer from, acute lymphoblastic leukemia) -> Kennedi (7832ms)\nWhat is leukemia?\ta $ 7 donation\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (a $ 7 donation, help find a cure for, Pediatric Leukemia) -> a $ 7 donation (7851ms)\nWhat is leukemia?\thealth\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (health, found higher incidences of, leukemia) -> health (7928ms)\nWhat is leukemia?\tthe society\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the society, is to find cures for, leukemia) -> the society (7928ms)\nWhat is leukemia?\tDecember 1998\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (December 1998, found higher rates of, childhood leukemia) -> December 1998 (7851ms)\nWhat is leukemia?\tleucocytes\t1.777777777768\tWhat is leukemia? -> $x: ($x, create, leukemia) -> (leucocytes, can create, Leukemia) -> leucocytes (7928ms)\nWhat is leukemia?\tHarry\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Harry, was found to be with, leukemia) -> Harry (7909ms)\nWhat is leukemia?\tthe doctor\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the doctor, finds, chronic leukemia) -> the doctor (7909ms)\nWhat is leukemia?\tXMRV\t1.777777777768\tWhat is leukemia? -> $x: ($x, refer, leukemia) -> (XMRV, refers to, xenotropic murine leukemia virus-related virus) -> XMRV (7909ms)\nWhat is leukemia?\ta recent German study\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (a recent German study, found, childhood leukemia clusters) -> a recent German study (7909ms)\nWhat is leukemia?\tresearchers\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (researchers, have found elevated rates of, childhood leukemia) -> researchers (7851ms)\nWhat is leukemia?\tchromosomal translocations\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (chromosomal translocations, found in, Acute Myelogenous Leukemia) -> chromosomal translocations (7871ms)\nWhat is leukemia?\tDoctors\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Doctors, often find, chronic leukemia) -> Doctors (7909ms)\nWhat is leukemia?\tlymphnodes\t1.777777777768\tWhat is leukemia? -> $x: ($x, refer, leukemia) -> (lymphnodes, is referred to as, Leukemia) -> lymphnodes (7889ms)\nWhat is leukemia?\ta temporary condition\t1.777777777768\tWhat is leukemia? -> $x: ($x, refer, leukemia) -> (a temporary condition, referred to as, ?leukemia?) -> a temporary condition (7832ms)\nWhat is leukemia?\tDr. Helmuth Ulrich\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Dr. Helmuth Ulrich, found, the leukemia rate) -> Dr. Helmuth Ulrich (7909ms)\nWhat is leukemia?\tChimi\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Chimi, was found to have, Feline Leukemia) -> Chimi (7928ms)\nWhat is leukemia?\tL3\t1.777777777768\tWhat is leukemia? -> $x: ($x, refer, leukemia) -> (L3, is now referred to as, Burkitt cell leukemia) -> L3 (7851ms)\nWhat is leukemia?\ttimes\t1.777777777768\tWhat is leukemia? -> $x: ($x, refer, leukemia) -> (times, referred to as, chronic granulocytic leukemia) -> times (7832ms)\nWhat is leukemia?\tThe Leukemia & Lymphoma Society\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (The Leukemia & Lymphoma Society, is to find cures for, leukemia) -> The Leukemia & Lymphoma Society (7928ms)\nWhat is leukemia?\tthe pathologist\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the pathologist, finds, leukemia cells) -> the pathologist (7871ms)\nWhat is leukemia?\thousehold appliances\t1.777777777768\tWhat is leukemia? -> $x: ($x, create, leukemia) -> (household appliances, create risks of, childhood leukemia) -> household appliances (7832ms)\nWhat is leukemia?\tThe ROR1 antigen\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (The ROR1 antigen, is found on, all the leukemia cells) -> The ROR1 antigen (7851ms)\nWhat is leukemia?\tmRNA\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (mRNA, have been found in, hairy cell leukemia) -> mRNA (7851ms)\nWhat is leukemia?\tstyrene\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (styrene, have found increased risks of, leukemia and lymphoma) -> styrene (7889ms)\nWhat is leukemia?\tnone\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (none, was found active in, mouse leukemia systems) -> none (7889ms)\nWhat is leukemia?\tutero\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (utero, found to be associated with, childhood leukemia) -> utero (7928ms)\nWhat is leukemia?\tSerenity\t1.777777777768\tWhat is leukemia? -> $x: ($x, deal with, leukemia) -> (Serenity, has been dealing with, Leukemia) -> Serenity (7928ms)\nWhat is leukemia?\tHB 2373\t1.777777777768\tWhat is leukemia? -> $x: ($x, create, leukemia) -> (HB 2373, would create, the Oklahoma Leukemia) -> HB 2373 (7871ms)\nWhat is leukemia?\t1991 Aloe\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (1991 Aloe, was found to be effective against, feline leukemia) -> 1991 Aloe (7871ms)\nWhat is leukemia?\ttreatments\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (treatments, have been found for, childhood leukemia) -> treatments (7871ms)\nWhat is leukemia?\tBailey\t1.777777777768\tWhat is leukemia? -> $x: ($x, deal with, leukemia) -> (Bailey, has been dealing with, leukemia) -> Bailey (7889ms)\nWhat is leukemia?\tthree more farm families\t1.777777777768\tWhat is leukemia? -> $x: ($x, deal with, leukemia) -> (three more farm families, are dealing with, leukemia) -> three more farm families (7812ms)\nWhat is leukemia?\tAberrant Rel/NF-kB activity\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Aberrant Rel/NF-kB activity, is found in, many human leukemias) -> Aberrant Rel/NF-kB activity (7851ms)\nWhat is leukemia?\tradiation therapy\t1.777777777768\tWhat is leukemia? -> $x: (leukemia, have use of, $x) -> (adult leukemia, have abandoned the use of, radiation therapy) -> radiation therapy (7891ms)\nWhat is leukemia?\t1973 ]\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (1973 ], was found to have, a chronic Leukemia) -> 1973 ] (7871ms)\nWhat is leukemia?\ta visiting professor\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (a visiting professor, is found to be lacking in, human leukemia) -> a visiting professor (7871ms)\nWhat is leukemia?\tthe problem\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the problem, was found for, chronic lymphatic leukemia) -> the problem (7871ms)\nWhat is leukemia?\tNew Hampshire\t1.777777777768\tWhat is leukemia? -> $x: ($x, deal with, leukemia) -> (New Hampshire, are dealing with, leukemia) -> New Hampshire (7928ms)\nWhat is leukemia?\tThe authors\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (The authors, found increased rates of, leukemia) -> The authors (7832ms)\nWhat is leukemia?\tthe doctors\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the doctors, found, the leukemia) -> the doctors (7889ms)\nWhat is leukemia?\tpurine analogues\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (purine analogues, has been found active against, human leukemias) -> purine analogues (7928ms)\nWhat is leukemia?\tnew chemotherapy agents\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (new chemotherapy agents, were found effective against, leukemia) -> new chemotherapy agents (7871ms)\nWhat is leukemia?\tmaitake\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (maitake, was found effective against, leukemia) -> maitake (7851ms)\nWhat is leukemia?\tmethotrexate\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (methotrexate, were found to be effective in, leukemia patients) -> methotrexate (7851ms)\nWhat is leukemia?\ta family\t1.777777777768\tWhat is leukemia? -> $x: ($x, deal with, leukemia) -> (a family, dealing with, childhood Leukemia) -> a family (7851ms)\nWhat is leukemia?\tCancer , Causes & Control\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Cancer , Causes & Control, finds a higher risk for, leukemia) -> Cancer , Causes & Control (7909ms)\nWhat is leukemia?\tSimilar associations\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Similar associations, have been found with, leukemia) -> Similar associations (7851ms)\nWhat is leukemia?\tLLS\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (LLS, find cures for, leukemia) -> LLS (7851ms)\nWhat is leukemia?\tLeukemia research\t1.777777777768\tWhat is leukemia? -> $x: ($x, create, leukemia) -> (Leukemia research, as create awareness about, Leukemia) -> Leukemia research (7832ms)\nWhat is leukemia?\tStudies\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Studies, worldwide have found, excess child leukemia) -> Studies (7832ms)\nWhat is leukemia?\tMOZ gene\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (MOZ gene, has been found in, acute myeloid leukemia) -> MOZ gene (7928ms)\nWhat is leukemia?\tMr. Beaumont\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Mr. Beaumont, was found to have, leukemia) -> Mr. Beaumont (7928ms)\nWhat is leukemia?\tNo association\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (No association, has been found in, acute myeloblastic leukemia) -> No association (7832ms)\nWhat is leukemia?\tTexas study\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Texas study, found a possible link between, childhood leukemia) -> Texas study (7889ms)\nWhat is leukemia?\tIDH mutations\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (IDH mutations, are also found in, some forms of leukemia) -> IDH mutations (7851ms)\nWhat is leukemia?\ta cellular component\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (a cellular component, found in, hairy cell leukemia) -> a cellular component (7928ms)\nWhat is leukemia?\tAF9 genes\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (AF9 genes, is mainly found in, acute myeloid leukemia) -> AF9 genes (7832ms)\nWhat is leukemia?\tbenzene\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (benzene, have found an increased risk of, both leukemia) -> benzene (7832ms)\nWhat is leukemia?\ta local family\t1.777777777768\tWhat is leukemia? -> $x: ($x, deal with, leukemia) -> (a local family, is dealing with, Leukemia) -> a local family (7889ms)\nWhat is leukemia?\tA team approach\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (A team approach, is necessary to find a cure for, leukemia) -> A team approach (7889ms)\nWhat is leukemia?\ta molecule\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (a molecule, found on, some B-cell leukemias) -> a molecule (7946ms)\nWhat is leukemia?\t30 to 100 %\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (30 to 100 %, were found for, leukemia and cancers) -> 30 to 100 % (7909ms)\nWhat is leukemia?\tmercury\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (mercury, are found to cause, leukemia) -> mercury (7909ms)\nWhat is leukemia?\tYou?ll\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (You?ll, find various symptoms of, leukemia) -> You?ll (7832ms)\nWhat is leukemia?\tRUNX1\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (RUNX1, are frequently found in, human leukemias) -> RUNX1 (7909ms)\nWhat is leukemia?\tthe flt3 gene\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the flt3 gene, found in, acute myeloid leukemia) -> the flt3 gene (7812ms)\nWhat is leukemia?\tthe Abl gene\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the Abl gene, can be found in, chronic myeloid leukemia patients) -> the Abl gene (7871ms)\nWhat is leukemia?\ta study\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (a study, found a higher incidence of, leukemia and liver tumors) -> a study (7889ms)\nWhat is leukemia?\tMedicine study\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Medicine study, found, acute leukemia) -> Medicine study (7889ms)\nWhat is leukemia?\tBC V6J\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (BC V6J, Find out about, The Leukemia & Lymphoma Society) -> BC V6J (7889ms)\nWhat is leukemia?\tseveral studies\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (several studies, have found a higher incidence of, leukemia) -> several studies (7928ms)\nWhat is leukemia?\tKinlen\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Kinlen, found a cluster of, leukemias) -> Kinlen (7889ms)\nWhat is leukemia?\tSavitz\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Savitz, found, leukemia , lymphoma and brain tumors) -> Savitz (7909ms)\nWhat is leukemia?\tOne study\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (One study, found rates of, childhood leukemia) -> One study (7928ms)\nWhat is leukemia?\tCohen\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (Cohen, was found to have, hairy cell leukemia) -> Cohen (7871ms)\nWhat is leukemia?\tthe hopes\t1.777777777768\tWhat is leukemia? -> $x: ($x, found, leukemia) -> (the hopes, we?ll find a cure for, Feline Leukemia) -> the hopes (7909ms)\nWhat is leukemia?\tAstragalus species\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Astragalus species, are used to treat, leukemia) -> Astragalus species (8208ms)\nWhat is leukemia?\tbone marrow cancer\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (bone marrow cancer, is similar to, leukemia) -> bone marrow cancer (8147ms)\nWhat is leukemia?\tPediatric brain tumors\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Pediatric brain tumors, are second only to, leukemia) -> Pediatric brain tumors (8049ms)\nWhat is leukemia?\tthe human system\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (the human system, is known to cause, leukemia) -> the human system (8066ms)\nWhat is leukemia?\tneutrophils\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (neutrophils, can be caused by, leukemia) -> neutrophils (8341ms)\nWhat is leukemia?\tDiseases\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Diseases, are related to, leukemia) -> Diseases (8033ms)\nWhat is leukemia?\ta similar viral etiology\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (a similar viral etiology, has been sought in, human leukemias) -> a similar viral etiology (8082ms)\nWhat is leukemia?\tthe diseases\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the diseases, are, leukemia) -> the diseases (8265ms)\nWhat is leukemia?\tinterference\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (interference, can be used for, leukemia) -> interference (8306ms)\nWhat is leukemia?\tUnmatched bone marrow\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Unmatched bone marrow, can treat, leukemia) -> Unmatched bone marrow (8147ms)\nWhat is leukemia?\tthe condition\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (the condition, can be caused by, leukemia) -> the condition (8251ms)\nWhat is leukemia?\tRadioactive thorium\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Radioactive thorium, is known to cause, leukemia) -> Radioactive thorium (8330ms)\nWhat is leukemia?\teffective chemotherapy\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (effective chemotherapy, was first employed in, acute leukemia) -> effective chemotherapy (8340ms)\nWhat is leukemia?\tsuch radiation\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (such radiation, has been linked to, leukemia) -> such radiation (8341ms)\nWhat is leukemia?\tThe earliest\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The earliest, are, leukemia) -> The earliest (8353ms)\nWhat is leukemia?\tThe seminal calicium channel hypercapnia PERIACTIN\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The seminal calicium channel hypercapnia PERIACTIN, is, leukemia) -> The seminal calicium channel hypercapnia PERIACTIN (8082ms)\nWhat is leukemia?\tincreased lymphocytes\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (increased lymphocytes, is, leukemia) -> increased lymphocytes (8279ms)\nWhat is leukemia?\tdownwind areas\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (downwind areas, were beginning to develop, leukemia) -> downwind areas (8293ms)\nWhat is leukemia?\ttissues\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (tissues, are, leukemias) -> tissues (8208ms)\nWhat is leukemia?\ta factor\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (a factor, can get, leukemia) -> a factor (8293ms)\nWhat is leukemia?\tChantel Johnson\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Chantel Johnson, was discovered to have, leukemia) -> Chantel Johnson (8237ms)\nWhat is leukemia?\tKevin McGuire\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Kevin McGuire, is battling, leukemia) -> Kevin McGuire (8341ms)\nWhat is leukemia?\tLeukemic ophthalmopathy\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (Leukemic ophthalmopathy, was more prevalent in, chronic leukemia) -> Leukemic ophthalmopathy (8049ms)\nWhat is leukemia?\tSeattle WA 98105\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Seattle WA 98105, Is, Leukemia) -> Seattle WA 98105 (8279ms)\nWhat is leukemia?\tcell therapies\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (cell therapies, are used to treat, leukemia) -> cell therapies (8178ms)\nWhat is leukemia?\ta mother\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (a mother, was determined to beat, leukemia) -> a mother (8237ms)\nWhat is leukemia?\t2005\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (2005, were, leukemias) -> 2005 (7981ms)\nWhat is leukemia?\tGCSF receptor\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (GCSF receptor, are implicated in, a leukemia) -> GCSF receptor (8222ms)\nWhat is leukemia?\tCats\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Cats, are, leukemia) -> Cats (8208ms)\nWhat is leukemia?\tFindings\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (Findings, are published online in, Leukemia Research) -> Findings (8306ms)\nWhat is leukemia?\taplastic anemia\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (aplastic anemia, can lead to, leukemia) -> aplastic anemia (8033ms)\nWhat is leukemia?\ta complete blood cell count\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (a complete blood cell count, can be associated with, leukemia) -> a complete blood cell count (8330ms)\nWhat is leukemia?\tthe first hit\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the first hit, was, leukemia) -> the first hit (8319ms)\nWhat is leukemia?\tthe story\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the story, is, leukemia) -> the story (7946ms)\nWhat is leukemia?\tStem cell transplant therapy\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Stem cell transplant therapy, is used to treat, leukemias) -> Stem cell transplant therapy (8131ms)\nWhat is leukemia?\tImmediate treatment\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (Immediate treatment, is required in, acute leukemia) -> Immediate treatment (8293ms)\nWhat is leukemia?\tchemotherapy\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (chemotherapy, is particularly important in, pediatric leukemia) -> chemotherapy (8319ms)\nWhat is leukemia?\tNeutrophils\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (Neutrophils, are also increased in, granulocytic leukemia) -> Neutrophils (8330ms)\nWhat is leukemia?\tred blood cells\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (red blood cells, eventually can cause, leukemia) -> red blood cells (8115ms)\nWhat is leukemia?\tthe red blood cells\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (the red blood cells, are abnormally low in, leukemia patients) -> the red blood cells (8293ms)\nWhat is leukemia?\tRadiation\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Radiation, can induce, leukemias) -> Radiation (8265ms)\nWhat is leukemia?\tThe best example\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The best example, is, leukemia) -> The best example (8131ms)\nWhat is leukemia?\tThe other 44,000 cases\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The other 44,000 cases, are, leukemia) -> The other 44,000 cases (8279ms)\nWhat is leukemia?\tthe Leukemia and Lymphoma Society\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (the Leukemia and Lymphoma Society, is to cure, leukemia) -> the Leukemia and Lymphoma Society (8098ms)\nWhat is leukemia?\tinteractions\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is brought about by, interactions) -> interactions (8237ms)\nWhat is leukemia?\tCauses & Treatment Search\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Causes & Treatment Search, Is, Leukemia) -> Causes & Treatment Search (8147ms)\nWhat is leukemia?\tthe organism\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (the organism, can also be affected by, leukemia) -> the organism (8251ms)\nWhat is leukemia?\tallergic-type reactions\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (allergic-type reactions, can possibly lead to, leukemia) -> allergic-type reactions (8330ms)\nWhat is leukemia?\tNormal and leukemic hematopoiesis\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Normal and leukemic hematopoiesis, Are, leukemias) -> Normal and leukemic hematopoiesis (8340ms)\nWhat is leukemia?\ta lot\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (a lot, is, leukemia) -> a lot (8193ms)\nWhat is leukemia?\t0 to 14 years\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (0 to 14 years, are, leukemia) -> 0 to 14 years (8178ms)\nWhat is leukemia?\tthe antioxidant power\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (the antioxidant power, can defeat, leukemia) -> the antioxidant power (8237ms)\nWhat is leukemia?\ttetrachloroethylene\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (tetrachloroethylene, is, leukemia) -> tetrachloroethylene (8330ms)\nWhat is leukemia?\tunderlying disease\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (underlying disease, is, leukemia) -> underlying disease (8049ms)\nWhat is leukemia?\tChronic Lymphocytic Leukemia\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Chronic Lymphocytic Leukemia, is, leukemia) -> Chronic Lymphocytic Leukemia (8098ms)\nWhat is leukemia?\tblood cancer\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (blood cancer, is, Leukemia) -> blood cancer (8265ms)\nWhat is leukemia?\tthe illnesses\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the illnesses, are, leukemia) -> the illnesses (8016ms)\nWhat is leukemia?\tseven cases\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is about, seven cases) -> seven cases (7981ms)\nWhat is leukemia?\tOthers general types\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Others general types, are, leukemia) -> Others general types (8049ms)\nWhat is leukemia?\tdiscussion/written assessment\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (discussion/written assessment, is, leukemia) -> discussion/written assessment (7999ms)\nWhat is leukemia?\tregular social interaction\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (regular social interaction, can reduce the risk of, leukemia) -> regular social interaction (8098ms)\nWhat is leukemia?\tCord blood stem cells\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Cord blood stem cells, can be used to treat, leukemia) -> Cord blood stem cells (8279ms)\nWhat is leukemia?\tDonations\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Donations, may be made to, Leukemia) -> Donations (8330ms)\nWhat is leukemia?\tC/EBP-alpha expression\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (C/EBP-alpha expression, is low in, leukemia cells) -> C/EBP-alpha expression (8049ms)\nWhat is leukemia?\t?Anyone\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (?Anyone, can be affected by, leukemia) -> ?Anyone (8082ms)\nWhat is leukemia?\tthe N -ras\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (the N -ras, was strictly expressed in, acute leukemia) -> the N -ras (8341ms)\nWhat is leukemia?\tchromosome 22\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (chromosome 22, are implicated in, certain leukemias) -> chromosome 22 (8222ms)\nWhat is leukemia?\tinhaled DU\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (inhaled DU, can ultimately be responsible for, leukemia) -> inhaled DU (8341ms)\nWhat is leukemia?\tLeukemias\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Leukemias, is, leukemia) -> Leukemias (8306ms)\nWhat is leukemia?\tthe pursuit\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (the pursuit, can help fight, leukemia) -> the pursuit (8237ms)\nWhat is leukemia?\ta young boy\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (a young boy, is fighting, leukemia) -> a young boy (8341ms)\nWhat is leukemia?\tthe patient\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (the patient, can report a history of, leukemia) -> the patient (8251ms)\nWhat is leukemia?\tThe possibilities\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The possibilities, are, leukemia) -> The possibilities (8162ms)\nWhat is leukemia?\tThe most common cancer in children\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The most common cancer in children, is, leukemia) -> The most common cancer in children (8319ms)\nWhat is leukemia?\tCanada?s mission\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Canada?s mission, is to cure, leukemia) -> Canada?s mission (8049ms)\nWhat is leukemia?\tEMF radiation\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (EMF radiation, can increase your risk of, leukemia) -> EMF radiation (8306ms)\nWhat is leukemia?\tChronic Myelogenous Leukemia\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Chronic Myelogenous Leukemia, is, leukemia) -> Chronic Myelogenous Leukemia (8222ms)\nWhat is leukemia?\t5 , 700 Americans\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (lymphocytic leukemia, is diagnosed in about, 5 , 700 Americans) -> 5 , 700 Americans (8033ms)\nWhat is leukemia?\tmice\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (mice, is an animal that can develop, Leukemia) -> mice (8319ms)\nWhat is leukemia?\tBone pain\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (Bone pain, is common in, acute leukemia) -> Bone pain (8065ms)\nWhat is leukemia?\tcord blood\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (cord blood, can be used to treat, leukemia) -> cord blood (8193ms)\nWhat is leukemia?\tDonated cord blood\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Donated cord blood, can be used to treat, leukemia) -> Donated cord blood (7981ms)\nWhat is leukemia?\tBone marrow biopsy\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Bone marrow biopsy, is used to diagnose, leukemia) -> Bone marrow biopsy (8353ms)\nWhat is leukemia?\tTumor cells\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (Tumor cells, are positive in, monocytic leukemia) -> Tumor cells (7981ms)\nWhat is leukemia?\tFeLV\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (FeLV, is involved in, these leukemias) -> FeLV (8033ms)\nWhat is leukemia?\tThe Leukemia Lymphoma Society?s mission\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (The Leukemia Lymphoma Society?s mission, is to cure, leukemia) -> The Leukemia Lymphoma Society?s mission (8131ms)\nWhat is leukemia?\ta toxic chemical\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (a toxic chemical, has been linked to, leukemia) -> a toxic chemical (8066ms)\nWhat is leukemia?\tThe cause\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The cause, was, leukemia) -> The cause (8066ms)\nWhat is leukemia?\tthe diagnosis\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the diagnosis, was, leukemia) -> the diagnosis (8306ms)\nWhat is leukemia?\tPathologists\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Pathologists, can distinguish various types of, leukemia) -> Pathologists (7999ms)\nWhat is leukemia?\tThe first chemotherapy\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (The first chemotherapy, was developed in, leukemia patients) -> The first chemotherapy (8066ms)\nWhat is leukemia?\tthiarabine\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (thiarabine, is widely used in treating, leukemia patients) -> thiarabine (8115ms)\nWhat is leukemia?\tNOTCH1\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (NOTCH1, can eradicate, leukemia) -> NOTCH1 (8178ms)\nWhat is leukemia?\tthe bones and lungs?and\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (the bones and lungs?and, can cause cancer of, leukemia) -> the bones and lungs?and (8279ms)\nWhat is leukemia?\tbone cancer\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (bone cancer, is, leukemia) -> bone cancer (8082ms)\nWhat is leukemia?\tpesticides\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (pesticides, have been linked to, leukemia) -> pesticides (7981ms)\nWhat is leukemia?\tWilson\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Wilson, was being treated for, leukemia) -> Wilson (8340ms)\nWhat is leukemia?\tDaunorubicin\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Daunorubicin, is used to treat, leukemia) -> Daunorubicin (7946ms)\nWhat is leukemia?\tMemorial contributions\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Memorial contributions, may be made to, Leukemia) -> Memorial contributions (8208ms)\nWhat is leukemia?\tRA\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (RA, can help treat, leukemia) -> RA (7964ms)\nWhat is leukemia?\tthe LRF\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (the LRF, is to conquer, leukemia) -> the LRF (7964ms)\nWhat is leukemia?\tHERG\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (HERG, is upregulated in, leukemia cells) -> HERG (8193ms)\nWhat is leukemia?\tpolyploids\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (polyploids, are linked to, leukemia) -> polyploids (8330ms)\nWhat is leukemia?\t2. What\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (2. What, is, leukemia) -> 2. What (8033ms)\nWhat is leukemia?\tpetichiae\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (petichiae, can be caused by, leukemia) -> petichiae (8354ms)\nWhat is leukemia?\tsimilar cells\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (similar cells, have been identified in, human leukemia) -> similar cells (8066ms)\nWhat is leukemia?\tcytopenia\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (cytopenia, is related to, leukemia) -> cytopenia (8115ms)\nWhat is leukemia?\tChemotherapy\t1.777777777767\tWhat is leukemia? -> $x: ($x, influence, leukemia) -> (Chemotherapy, may influence, leukemia relapse Investigators) -> Chemotherapy (8162ms)\nWhat is leukemia?\tprivate\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (private, is, Leukemia) -> private (8193ms)\nWhat is leukemia?\tsmall chemical exposures\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (small chemical exposures, are linked to, leukemia) -> small chemical exposures (8251ms)\nWhat is leukemia?\tLLS?s mission\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (LLS?s mission, is to cure, leukemia) -> LLS?s mission (8354ms)\nWhat is leukemia?\tutero oncogene rearrangements\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (utero oncogene rearrangements, are reported in, infant leukemias) -> utero oncogene rearrangements (8208ms)\nWhat is leukemia?\tThe therapy\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (The therapy, is designed to treat, leukemia) -> The therapy (8279ms)\nWhat is leukemia?\tone such compound\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (one such compound, is used to treat, leukemia) -> one such compound (8098ms)\nWhat is leukemia?\t29,000 adults\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is diagnosed in about, 29,000 adults) -> 29,000 adults (8193ms)\nWhat is leukemia?\tProject ELF\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Project ELF, have been linked to, leukemia) -> Project ELF (8330ms)\nWhat is leukemia?\tAcute Lymphocytic Leukemia\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Acute Lymphocytic Leukemia, is, leukemia) -> Acute Lymphocytic Leukemia (8082ms)\nWhat is leukemia?\tPCP\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (PCP, were, leukemia) -> PCP (8131ms)\nWhat is leukemia?\tACUTE LEUKEMIA TREATMENT INFORMATION\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (ACUTE LEUKEMIA TREATMENT INFORMATION, is, Leukemia) -> ACUTE LEUKEMIA TREATMENT INFORMATION (7981ms)\nWhat is leukemia?\tThe Leukemia & Lymphoma Society?s mission\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (The Leukemia & Lymphoma Society?s mission, is to cure, leukemia) -> The Leukemia & Lymphoma Society?s mission (8178ms)\nWhat is leukemia?\tLymphoma\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Lymphoma, is closely related to, leukemia) -> Lymphoma (8131ms)\nWhat is leukemia?\tinterested Rosenberg\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (interested Rosenberg, was, leukemia) -> interested Rosenberg (8115ms)\nWhat is leukemia?\tthe blood\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (the blood, were higher in, leukemia patients) -> the blood (8208ms)\nWhat is leukemia?\tThe latest findings\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (The latest findings, are published online in, Leukemia Research) -> The latest findings (8292ms)\nWhat is leukemia?\tThe most common childhood cancers\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The most common childhood cancers, are, leukemia) -> The most common childhood cancers (8208ms)\nWhat is leukemia?\tulcers\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (ulcers, is said to cure, leukemia) -> ulcers (8115ms)\nWhat is leukemia?\tThe cause of death\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The cause of death, was, Leukemia) -> The cause of death (8065ms)\nWhat is leukemia?\tAn unexplained bruise\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (An unexplained bruise, can be symptom of, leukemia) -> An unexplained bruise (7946ms)\nWhat is leukemia?\tcancer causing chemical\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (cancer causing chemical, is linked to, leukemia) -> cancer causing chemical (8016ms)\nWhat is leukemia?\tPlatelets\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Platelets, can help patients with, leukemia) -> Platelets (8033ms)\nWhat is leukemia?\t99 % sure\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (99 % sure, is, leukemia) -> 99 % sure (8293ms)\nWhat is leukemia?\tlight bulbs\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (light bulbs, has been connected to, leukemia) -> light bulbs (8147ms)\nWhat is leukemia?\t38000\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (38000, can be used for, leukemia) -> 38000 (8293ms)\nWhat is leukemia?\t?Steroids\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (?Steroids, are used to treat, leukemia) -> ?Steroids (8237ms)\nWhat is leukemia?\t15 days\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is about, 15 days) -> 15 days (8098ms)\nWhat is leukemia?\tRF\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (RF, can lead to, leukemia) -> RF (8193ms)\nWhat is leukemia?\tfree radicals\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (free radicals, can lead to, leukemia) -> free radicals (7964ms)\nWhat is leukemia?\t30 %\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (cancers and leukemias, were about, 30 %) -> 30 % (7999ms)\nWhat is leukemia?\tOverview Our mission\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Overview Our mission, is to cure, leukemia) -> Overview Our mission (7946ms)\nWhat is leukemia?\tThe rosy periwinkle plant\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (The rosy periwinkle plant, is used to cure, leukemia) -> The rosy periwinkle plant (8066ms)\nWhat is leukemia?\tChicago\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Chicago, is, leukemia) -> Chicago (8193ms)\nWhat is leukemia?\tacute cases\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (acute cases, is used in, chronic leukemia) -> acute cases (8066ms)\nWhat is leukemia?\tflipping burgers\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (flipping burgers, can cure, leukemia) -> flipping burgers (8049ms)\nWhat is leukemia?\tchildhood cancers\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (childhood cancers, are, leukemias) -> childhood cancers (8162ms)\nWhat is leukemia?\tthe rosy periwinkle\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (the rosy periwinkle, is used to cure, leukemia) -> the rosy periwinkle (8193ms)\nWhat is leukemia?\tPaddington DC ? Love\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Paddington DC ? Love, is, Leukemia) -> Paddington DC ? Love (8049ms)\nWhat is leukemia?\tBenzene exposure\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Benzene exposure, has been linked to, leukemia) -> Benzene exposure (8293ms)\nWhat is leukemia?\tThe anemia\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The anemia, was, leukemia) -> The anemia (8251ms)\nWhat is leukemia?\tKey evidence-based links\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Key evidence-based links, is, leukemia) -> Key evidence-based links (7999ms)\nWhat is leukemia?\tSeveral tests\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Several tests, can be performed to detect, Leukemia) -> Several tests (8065ms)\nWhat is leukemia?\t700 Americans\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (Hairy cell leukemia, is diagnosed in about, 700 Americans) -> 700 Americans (8279ms)\nWhat is leukemia?\tKevin\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Kevin, is battling, leukemia) -> Kevin (8353ms)\nWhat is leukemia?\tinformation\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (information, is, leukemia) -> information (8306ms)\nWhat is leukemia?\tThe Leukemia Research Foundation\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (The Leukemia Research Foundation, is to conquer, leukemia) -> The Leukemia Research Foundation (7964ms)\nWhat is leukemia?\ta disorder\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (a disorder, can lead to, leukemia) -> a disorder (7964ms)\nWhat is leukemia?\tthe circulation or bone marrow\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the circulation or bone marrow, is, Leukemia) -> the circulation or bone marrow (8330ms)\nWhat is leukemia?\tThe most common uses\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The most common uses, are, leukemia) -> The most common uses (8147ms)\nWhat is leukemia?\tthe new kitty\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the new kitty, is, leukemia) -> the new kitty (8340ms)\nWhat is leukemia?\tCyclophosphamide\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Cyclophosphamide, is used to treat, leukemias) -> Cyclophosphamide (8082ms)\nWhat is leukemia?\t527\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (527, were, leukemias) -> 527 (8193ms)\nWhat is leukemia?\tHox products\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Hox products, can induce, leukemia) -> Hox products (8033ms)\nWhat is leukemia?\t90 percent\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (most other childhood leukemias, is about, 90 percent) -> 90 percent (8222ms)\nWhat is leukemia?\tany age\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (any age, can get, leukemia) -> any age (8082ms)\nWhat is leukemia?\tChemotherapy and radiation\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Chemotherapy and radiation, can hold this form of, leukemia) -> Chemotherapy and radiation (8265ms)\nWhat is leukemia?\tIL-2\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (IL-2, is overexpressed in, leukemia cells) -> IL-2 (8265ms)\nWhat is leukemia?\t5 , 300 Americans\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (lymphocytic leukemia, is diagnosed in about, 5 , 300 Americans) -> 5 , 300 Americans (8098ms)\nWhat is leukemia?\tCertain genetic conditions\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Certain genetic conditions, can increase the risk for, leukemia) -> Certain genetic conditions (8131ms)\nWhat is leukemia?\t? Formaldehyde\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (? Formaldehyde, has been linked to, leukemia) -> ? Formaldehyde (8131ms)\nWhat is leukemia?\tCertain mutations\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Certain mutations, can trigger, leukemia) -> Certain mutations (8049ms)\nWhat is leukemia?\tsolvent exposure\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (solvent exposure, are, leukemia) -> solvent exposure (8306ms)\nWhat is leukemia?\tMalaysia | Beacon Hospital\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Malaysia | Beacon Hospital, Is, Leukemia) -> Malaysia | Beacon Hospital (8178ms)\nWhat is leukemia?\tWT1\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (WT1, is expressed in, most leukemias) -> WT1 (8115ms)\nWhat is leukemia?\tMemorials\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Memorials, may be made to, Leukemia) -> Memorials (8098ms)\nWhat is leukemia?\tcertain chemicals\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (certain chemicals, can also cause, leukemia) -> certain chemicals (8293ms)\nWhat is leukemia?\tEthoxyquin\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Ethoxyquin, has been linked to, leukemia) -> Ethoxyquin (8178ms)\nWhat is leukemia?\tblood tumor\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (blood tumor, is, Leukemia) -> blood tumor (8016ms)\nWhat is leukemia?\tCD22 antigen\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (CD22 antigen, is weakly expressed in, myeloid leukemias) -> CD22 antigen (8016ms)\nWhat is leukemia?\tAsim\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Asim, turned out to be, leukemia) -> Asim (7964ms)\nWhat is leukemia?\tAbout one-third of childhood cancers\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (About one-third of childhood cancers, are, leukemias) -> About one-third of childhood cancers (7999ms)\nWhat is leukemia?\tmyelodysplastic syndrome\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (myelodysplastic syndrome, can be a precursor to, leukemia) -> myelodysplastic syndrome (8330ms)\nWhat is leukemia?\tViagra\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Viagra, are, leukemia) -> Viagra (8293ms)\nWhat is leukemia?\tpediatric cancer\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (pediatric cancer, are, leukemia) -> pediatric cancer (8082ms)\nWhat is leukemia?\t3-4\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (the childhood leukemia risk, appears to be about, 3-4) -> 3-4 (7981ms)\nWhat is leukemia?\t4 %\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (acute lymphoblastic leukemia, was about, 4 %) -> 4 % (8066ms)\nWhat is leukemia?\tlittle Jaya Jhabbar\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (little Jaya Jhabbar, was battling, leukemia) -> little Jaya Jhabbar (8178ms)\nWhat is leukemia?\tA carcinogenic chemical\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (A carcinogenic chemical, was traced to, leukemia) -> A carcinogenic chemical (8353ms)\nWhat is leukemia?\tThe Word\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The Word, is, Leukemia) -> The Word (8163ms)\nWhat is leukemia?\tmore than 25 % marrow blasts\t1.777777777767\tWhat is leukemia? -> $x: ($x, classify as, leukemia) -> (more than 25 % marrow blasts, are classified as having, leukemia) -> more than 25 % marrow blasts (8163ms)\nWhat is leukemia?\tgrowth factors\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (growth factors, are deleted in, myeloid leukemias) -> growth factors (8251ms)\nWhat is leukemia?\tthe cancer\t1.777777777767\tWhat is leukemia? -> $x: ($x, classify as, leukemia) -> (the cancer, then is classified as, acute leukemia) -> the cancer (8178ms)\nWhat is leukemia?\tLimited activity\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (Limited activity, has been noted in, acute leukemias) -> Limited activity (8306ms)\nWhat is leukemia?\tMethotrexate\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Methotrexate, is needed to fight, leukemia) -> Methotrexate (7946ms)\nWhat is leukemia?\tpregnancy\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (pregnancy, can lower the risk of, leukemia) -> pregnancy (8279ms)\nWhat is leukemia?\tA blood test\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (A blood test, can suggest, leukemia) -> A blood test (8251ms)\nWhat is leukemia?\tThe new differential\t1.777777777767\tWhat is leukemia? -> $x: ($x, consist of, leukemia) -> (The new differential, consists of, leukemia) -> The new differential (8115ms)\nWhat is leukemia?\tthe principal neoplasms\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the principal neoplasms, were, leukemia) -> the principal neoplasms (8193ms)\nWhat is leukemia?\taberrant transcriptional activity\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (aberrant transcriptional activity, are common in, acute leukemia) -> aberrant transcriptional activity (8115ms)\nWhat is leukemia?\tthe young girl\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the young girl, was battling, leukemia) -> the young girl (8098ms)\nWhat is leukemia?\tDr. Berman\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (Dr. Berman, is primarily interested in, Pediatric Leukemia) -> Dr. Berman (8016ms)\nWhat is leukemia?\t16689\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (16689, is, Leukemia) -> 16689 (8147ms)\nWhat is leukemia?\tLeukemia Children\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Leukemia Children, can have other kinds of, leukemia) -> Leukemia Children (8016ms)\nWhat is leukemia?\tthe most common cancers\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (the most common cancers, are, leukemias) -> the most common cancers (8082ms)\nWhat is leukemia?\tJames\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (James, was lost to, leukemia) -> James (7946ms)\nWhat is leukemia?\taffected individuals\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (affected individuals, can develop, leukemia) -> affected individuals (8115ms)\nWhat is leukemia?\tAcute Myelogenous Leukemia\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Acute Myelogenous Leukemia, is, leukemia) -> Acute Myelogenous Leukemia (8306ms)\nWhat is leukemia?\televated levels\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (elevated levels, can increase the risk of, leukemia) -> elevated levels (8293ms)\nWhat is leukemia?\tan organization\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (an organization, is to cure, leukemia) -> an organization (8082ms)\nWhat is leukemia?\tcells\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (cells, are, leukemia) -> cells (8306ms)\nWhat is leukemia?\tminor or unnoticed injuries\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (minor or unnoticed injuries, can be a sign of, leukemia) -> minor or unnoticed injuries (7946ms)\nWhat is leukemia?\tHydroxyurea\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Hydroxyurea, is used to treat, leukemia) -> Hydroxyurea (8222ms)\nWhat is leukemia?\tThe Foundation?s mission\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (The Foundation?s mission, is to conquer, leukemia) -> The Foundation?s mission (7946ms)\nWhat is leukemia?\ta rare bone marrow disorder\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (a rare bone marrow disorder, can lead to, leukemia) -> a rare bone marrow disorder (8049ms)\nWhat is leukemia?\tMcGuire\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (McGuire, is battling, Leukemia) -> McGuire (8147ms)\nWhat is leukemia?\tNorthbrook\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Northbrook, was lost to, leukemia) -> Northbrook (8222ms)\nWhat is leukemia?\tThe c-myc expression level\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (The c-myc expression level, is higher in, acute leukemia) -> The c-myc expression level (8319ms)\nWhat is leukemia?\ta donor\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (a donor, are used to treat, leukemia) -> a donor (8131ms)\nWhat is leukemia?\tlong-term exposure\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (long-term exposure, has been linked to, leukemia) -> long-term exposure (8147ms)\nWhat is leukemia?\tStem cells\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Stem cells, are used to treat, leukemia) -> Stem cells (8251ms)\nWhat is leukemia?\tparticular\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (particular, is, leukemia) -> particular (8033ms)\nWhat is leukemia?\tMath\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Math, can help cure, leukemia) -> Math (7946ms)\nWhat is leukemia?\tpesticide exposure\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (pesticide exposure, are, leukemia) -> pesticide exposure (7999ms)\nWhat is leukemia?\tsideroblastic anemia\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (sideroblastic anemia, can even progress to, leukemia) -> sideroblastic anemia (7946ms)\nWhat is leukemia?\tthe AHS\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (the AHS, have been linked to, leukemia) -> the AHS (8016ms)\nWhat is leukemia?\ta pathologist\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (a pathologist, can diagnose, leukemia) -> a pathologist (8098ms)\nWhat is leukemia?\tcancer\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (cancer, are, Leukemia) -> cancer (8222ms)\nWhat is leukemia?\thuman and bovine retroviruses\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (human and bovine retroviruses, were believed to cause, leukemia) -> human and bovine retroviruses (8293ms)\nWhat is leukemia?\tBenzene-induced Leukemia Benzene\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Benzene-induced Leukemia Benzene, is known to cause, leukemia) -> Benzene-induced Leukemia Benzene (7946ms)\nWhat is leukemia?\ta patient\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (a patient, can be born susceptible to, Leukemia) -> a patient (8033ms)\nWhat is leukemia?\tacute leukemia\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (acute leukemia, was most common in, promyelocytic leukemia) -> acute leukemia (8193ms)\nWhat is leukemia?\tMore About\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (More About, Is, Leukemia ?) -> More About (7999ms)\nWhat is leukemia?\ta blood disorder\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (a blood disorder, can lead to, leukemia) -> a blood disorder (8237ms)\nWhat is leukemia?\tarsenic trioxide\t1.777777777767\tWhat is leukemia? -> $x: ($x, be in, leukemia) -> (arsenic trioxide, was being used in, myelocytic leukemia) -> arsenic trioxide (8208ms)\nWhat is leukemia?\ta friend\t1.777777777767\tWhat is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is this about, a friend) -> a friend (8131ms)\nWhat is leukemia?\tGeneric Purinethol 50 mg Purinethol\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (Generic Purinethol 50 mg Purinethol, is used to treat, leukemia) -> Generic Purinethol 50 mg Purinethol (8341ms)\nWhat is leukemia?\tNHL\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (NHL, is considered similar to, leukemia) -> NHL (8330ms)\nWhat is leukemia?\tDr. Mauro?s clinical focus\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (Dr. Mauro?s clinical focus, is, leukemia) -> Dr. Mauro?s clinical focus (8251ms)\nWhat is leukemia?\tThe preliminary diagnosis\t1.777777777767\tWhat is leukemia? -> $x: ($x, be be, leukemia) -> (The preliminary diagnosis, was, leukemia) -> The preliminary diagnosis (8251ms)\nWhat is leukemia?\tbone marrow stem cells\t1.777777777767\tWhat is leukemia? -> $x: ($x, be to, leukemia) -> (bone marrow stem cells, are used to treat, leukemia) -> bone marrow stem cells (8193ms)\nWhat is leukemia?\tRadiation therapy\t1.777777777767\tWhat is leukemia? -> $x: ($x, can, leukemia) -> (Radiation therapy, can increase the risk of, leukemia) -> Radiation therapy (8293ms)\nWhat is leukemia?\tWu L Retinoic acid\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Wu L Retinoic acid, induces, leukemia cell) -> Wu L Retinoic acid (8402ms)\nWhat is leukemia?\tImatinib\t1.666666666657\tWhat is leukemia? -> $x: ($x, be use of, leukemia) -> (Imatinib, is commonly used to treat certain types of, leukemia) -> Imatinib (8438ms)\nWhat is leukemia?\tThree patients on chronic lithium therapy\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Three patients on chronic lithium therapy, developed, leukemia) -> Three patients on chronic lithium therapy (8412ms)\nWhat is leukemia?\tWestbrook\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Westbrook, developed, Leukemia) -> Westbrook (8364ms)\nWhat is leukemia?\tfive children\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (five children, developed, leukemia) -> five children (8373ms)\nWhat is leukemia?\ttransforms\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (transforms, induces, leukemia) -> transforms (8353ms)\nWhat is leukemia?\tIncreased Trib1 and Trib2\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Increased Trib1 and Trib2, induces, acute myeloid leukemia) -> Increased Trib1 and Trib2 (8373ms)\nWhat is leukemia?\ta French study\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a French study, develops, leukemia) -> a French study (8429ms)\nWhat is leukemia?\tfour patients\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (four patients, developed, leukemia) -> four patients (8412ms)\nWhat is leukemia?\tdegradation\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (degradation, induce, acute myelogenous leukemia) -> degradation (8393ms)\nWhat is leukemia?\tthe suburbs\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the suburbs, developed, leukemia) -> the suburbs (8402ms)\nWhat is leukemia?\tVitamin K2\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Vitamin K2, induces simultaneously in, leukemia cells) -> Vitamin K2 (8383ms)\nWhat is leukemia?\tA little lad named Kenny\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (A little lad named Kenny, developed, leukemia) -> A little lad named Kenny (8373ms)\nWhat is leukemia?\tthe French boy\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the French boy, developing, leukemia) -> the French boy (8438ms)\nWhat is leukemia?\tan individual\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (an individual, develops, leukemia) -> an individual (8412ms)\nWhat is leukemia?\tSeveral chronic leukemia viruses\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Several chronic leukemia viruses, are known to induce, leukemia) -> Several chronic leukemia viruses (8383ms)\nWhat is leukemia?\tmurine bone marrow\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (murine bone marrow, induces, myeloid leukemia) -> murine bone marrow (8430ms)\nWhat is leukemia?\tthe Abelson virus\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (the Abelson virus, induced, leukemia system) -> the Abelson virus (8438ms)\nWhat is leukemia?\tlow EMF levels\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (low EMF levels, develop, leukemias) -> low EMF levels (8373ms)\nWhat is leukemia?\tthe monkeys\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the monkeys, developed, leukemia) -> the monkeys (8364ms)\nWhat is leukemia?\tPatti Durante\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Patti Durante, developed, leukemia) -> Patti Durante (8429ms)\nWhat is leukemia?\tC-Myc\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (C-Myc, rapidly induces, acute myeloid leukemia) -> C-Myc (8393ms)\nWhat is leukemia?\tnearly one third\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (nearly one third, develop, leukemia) -> nearly one third (8429ms)\nWhat is leukemia?\t15259066 Honokiol\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (15259066 Honokiol, induces apoptosis in, human lymphoid leukemia) -> 15259066 Honokiol (8393ms)\nWhat is leukemia?\t40 donors\t1.666666666657\tWhat is leukemia? -> $x: ($x, represent, leukemia) -> (40 donors, represents the needs of, five leukemia patients) -> 40 donors (8412ms)\nWhat is leukemia?\tthe American ambassador\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the American ambassador, developed, leukemia) -> the American ambassador (8412ms)\nWhat is leukemia?\ta young Japanese girl\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a young Japanese girl, developed, leukemia) -> a young Japanese girl (8421ms)\nWhat is leukemia?\tSadako Sasaki\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Sadako Sasaki, developed, leukemia) -> Sadako Sasaki (8402ms)\nWhat is leukemia?\tSydney\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Sydney, develops, leukemia) -> Sydney (8364ms)\nWhat is leukemia?\tseveral of the children\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (several of the children, developed, leukemia) -> several of the children (8364ms)\nWhat is leukemia?\tHirobe T ATP\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Hirobe T ATP, induces, leukemia inhibitory factor mRNA) -> Hirobe T ATP (8364ms)\nWhat is leukemia?\ta Japanese girl\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a Japanese girl, developed, leukemia) -> a Japanese girl (8421ms)\nWhat is leukemia?\tGLI\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (GLI, induces apoptosis in, chronic lymphocytic leukemia cells) -> GLI (8421ms)\nWhat is leukemia?\tSuch viremic mice\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Such viremic mice, develop, leukemias) -> Such viremic mice (8402ms)\nWhat is leukemia?\tboswellic acid acetate\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (boswellic acid acetate, failed to induce, erythroid leukemia) -> boswellic acid acetate (8373ms)\nWhat is leukemia?\ta loved one\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a loved one, developed, leukemia) -> a loved one (8421ms)\nWhat is leukemia?\tJulia Kendall\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Julia Kendall, developed, leukemia) -> Julia Kendall (8429ms)\nWhat is leukemia?\tSecurinine\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Securinine, induced apoptosis in, human leukemia HL-60 cells) -> Securinine (8393ms)\nWhat is leukemia?\tFriend virus\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Friend virus, induced, mouse leukemia) -> Friend virus (8430ms)\nWhat is leukemia?\tconcordant twins\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (concordant twins, developed, leukemia) -> concordant twins (8364ms)\nWhat is leukemia?\tEuropean soldiers\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (European soldiers, developed, leukemia) -> European soldiers (8402ms)\nWhat is leukemia?\tthe elution profile\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (the elution profile, induces apoptosis in, the leukemia cells) -> the elution profile (8430ms)\nWhat is leukemia?\tthe Tu-4 bomber\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the Tu-4 bomber, developed, leukemia) -> the Tu-4 bomber (8364ms)\nWhat is leukemia?\tFlavonoids\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Flavonoids, induce apoptosis in, human leukemia) -> Flavonoids (8402ms)\nWhat is leukemia?\ta young girl\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a young girl, developed, leukemia) -> a young girl (8383ms)\nWhat is leukemia?\tan aberrant MYB-GATA1 fusion\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (an aberrant MYB-GATA1 fusion, induces, leukemia) -> an aberrant MYB-GATA1 fusion (8412ms)\nWhat is leukemia?\tMichael\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Michael, developed, leukemia) -> Michael (8421ms)\nWhat is leukemia?\tEtoposide\t1.666666666657\tWhat is leukemia? -> $x: ($x, side, leukemia) -> (Etoposide, can have a side effect of, leukemia) -> Etoposide (8393ms)\nWhat is leukemia?\tArthur Watson\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Arthur Watson, developed, leukemia) -> Arthur Watson (8430ms)\nWhat is leukemia?\tthe Lmo2 oncogene\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (the Lmo2 oncogene, induced, mice leukemia) -> the Lmo2 oncogene (8438ms)\nWhat is leukemia?\tthe Golan\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the Golan, developed, Leukemia) -> the Golan (8383ms)\nWhat is leukemia?\tThe boy\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (The boy, develops, leukemia) -> The boy (8393ms)\nWhat is leukemia?\tthe viremic cats\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the viremic cats, develop, leukemias) -> the viremic cats (8421ms)\nWhat is leukemia?\tEWS/FLI-1\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (EWS/FLI-1, induces rapid onset of, myeloid/erythroid leukemia) -> EWS/FLI-1 (8364ms)\nWhat is leukemia?\tX-ray\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (X-ray, induced, leukemias) -> X-ray (8402ms)\nWhat is leukemia?\t50.000 adults and children\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (50.000 adults and children, develop, leukemia) -> 50.000 adults and children (8402ms)\nWhat is leukemia?\ta third child\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a third child, developed, leukemia) -> a third child (8412ms)\nWhat is leukemia?\tSadako\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Sadako, developed, Leukemia) -> Sadako (8447ms)\nWhat is leukemia?\tB cells\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (B cells, induces, pre-B cell acute lymphoblastic leukemia) -> B cells (8402ms)\nWhat is leukemia?\ta professional person\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a professional person, developed, leukemia) -> a professional person (8412ms)\nWhat is leukemia?\tCD95 and TRAIL\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (CD95 and TRAIL, induced apoptosis in, leukemia cell lines) -> CD95 and TRAIL (8373ms)\nWhat is leukemia?\t2002 Kainic acid\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (2002 Kainic acid, induces, leukemia inhibitory factor) -> 2002 Kainic acid (8421ms)\nWhat is leukemia?\tBA\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (BA, potently induces apoptosis in, leukemia cells) -> BA (8393ms)\nWhat is leukemia?\ttwo of these children\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (two of these children, developed, leukemia) -> two of these children (8402ms)\nWhat is leukemia?\tclioquinol\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (clioquinol, induce apoptotic cell death in, leukemia and myeloma) -> clioquinol (8430ms)\nWhat is leukemia?\tMYST3-CREBBP\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (MYST3-CREBBP, may induce, leukemia) -> MYST3-CREBBP (8430ms)\nWhat is leukemia?\t21 people\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (21 people, developed, leukemia) -> 21 people (8438ms)\nWhat is leukemia?\tthe first 11 patients\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the first 11 patients, developed, leukemia) -> the first 11 patients (8438ms)\nWhat is leukemia?\tthe mice\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the mice, developed, leukemia) -> the mice (8430ms)\nWhat is leukemia?\tRay\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Ray, developed, leukemia) -> Ray (8402ms)\nWhat is leukemia?\tmiR-141\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (miR-141, is induced by, leukemia inhibitory factor) -> miR-141 (8354ms)\nWhat is leukemia?\tdiabetes and chemo\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (diabetes and chemo, can induce, leukemia several years) -> diabetes and chemo (8438ms)\nWhat is leukemia?\tmale infants\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (male infants, has induced, childhood leukemia) -> male infants (8402ms)\nWhat is leukemia?\ttwo of the patients\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (two of the patients, developed, leukemia) -> two of the patients (8412ms)\nWhat is leukemia?\tFPD/AML patients\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (FPD/AML patients, developed, leukemia) -> FPD/AML patients (8373ms)\nWhat is leukemia?\timmune deficiency\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (immune deficiency, is induced by, LP-BM5 murine leukemia virus) -> immune deficiency (8383ms)\nWhat is leukemia?\tmetabolites\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (metabolites, induce, leukemia) -> metabolites (8383ms)\nWhat is leukemia?\ttanshinone IIA\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (tanshinone IIA, induced cellular apoptosis in, leukemia cells) -> tanshinone IIA (8363ms)\nWhat is leukemia?\theme biosynthesis\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (heme biosynthesis, induces apoptosis in, leukemia cells) -> heme biosynthesis (8373ms)\nWhat is leukemia?\tTEL-JAK2\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (TEL-JAK2, induce, T-cell leukemia) -> TEL-JAK2 (8383ms)\nWhat is leukemia?\tNUP98-PMX1\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (NUP98-PMX1, induced, typical leukemia syndrome) -> NUP98-PMX1 (8438ms)\nWhat is leukemia?\tchronic pain\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (chronic pain, developed, Leukemia) -> chronic pain (8364ms)\nWhat is leukemia?\t95\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (95, developed, leukemia) -> 95 (8430ms)\nWhat is leukemia?\tcolumns\t1.666666666657\tWhat is leukemia? -> $x: ($x, represent, leukemia) -> (columns, represent patients with, mixed lineage leukemia) -> columns (8421ms)\nWhat is leukemia?\torange\t1.666666666657\tWhat is leukemia? -> $x: ($x, represent, leukemia) -> (orange, represents, leukemia awareness) -> orange (8383ms)\nWhat is leukemia?\taspartame\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (aspartame, is capable of inducing, lymphomas and leukemias) -> aspartame (8374ms)\nWhat is leukemia?\tcompounds\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (compounds, induce, differentiation of murine leukemia cells) -> compounds (8412ms)\nWhat is leukemia?\tthe researchers\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the researchers, develops, leukemia) -> the researchers (8421ms)\nWhat is leukemia?\tadolescence\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (adolescence, developed, leukemia) -> adolescence (8412ms)\nWhat is leukemia?\tCytarabine\t1.666666666657\tWhat is leukemia? -> $x: ($x, be use of, leukemia) -> (Cytarabine, is used to treat different forms of, leukemia) -> Cytarabine (8412ms)\nWhat is leukemia?\tAbelson virus\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Abelson virus, induced, leukemias) -> Abelson virus (8353ms)\nWhat is leukemia?\ttwo patients\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (two patients, developed, Leukemia) -> two patients (8393ms)\nWhat is leukemia?\tthe girl\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the girl, developed, leukemia) -> the girl (8383ms)\nWhat is leukemia?\tATO\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (ATO, induces apoptosis in, HL-60 promyelocytic leukemia cells) -> ATO (8402ms)\nWhat is leukemia?\tPlutonium\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Plutonium, can induce, bone cancer or leukemia) -> Plutonium (8430ms)\nWhat is leukemia?\tMLL-ELL\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (MLL-ELL, induced, leukemia) -> MLL-ELL (8429ms)\nWhat is leukemia?\tthe mutant human JAK1 gene\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the mutant human JAK1 gene, developed, leukemia) -> the mutant human JAK1 gene (8421ms)\nWhat is leukemia?\tthe Friend virus\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (the Friend virus, induced, leukemia) -> the Friend virus (8393ms)\nWhat is leukemia?\tGranes\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Granes, developed, leukemia) -> Granes (8438ms)\nWhat is leukemia?\tHPCs\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (HPCs, induces, leukemia) -> HPCs (8447ms)\nWhat is leukemia?\tRL V\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (RL V, induced, leukemia) -> RL V (8374ms)\nWhat is leukemia?\tArsenite\t1.666666666657\tWhat is leukemia? -> $x: ($x, be use of, leukemia) -> (Arsenite, has been used to treat some types of, leukemias) -> Arsenite (8383ms)\nWhat is leukemia?\tHiroshima\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Hiroshima, developed, Leukemia) -> Hiroshima (8402ms)\nWhat is leukemia?\tactivates\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (activates, induces, acute megakaryoblastic leukemia) -> activates (8412ms)\nWhat is leukemia?\tBortezomib\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Bortezomib, induces apoptosis in, leukemia cells) -> Bortezomib (8412ms)\nWhat is leukemia?\tleukemia virus\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (leukemia virus, develop, leukemia) -> leukemia virus (8373ms)\nWhat is leukemia?\ta leukemic cell population\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (a leukemic cell population, induced, leukemia) -> a leukemic cell population (8393ms)\nWhat is leukemia?\tzyvox\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (zyvox, induced, leukemia) -> zyvox (8438ms)\nWhat is leukemia?\tmurine leukemia virus\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (murine leukemia virus, induced, acute myeloid leukemia) -> murine leukemia virus (8383ms)\nWhat is leukemia?\tthe exposed workers\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the exposed workers, developed, leukemia) -> the exposed workers (8373ms)\nWhat is leukemia?\tThe chemical\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (The chemical, also induced, mononuclear cell leukemia) -> The chemical (8438ms)\nWhat is leukemia?\tdrugs\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (drugs, induces DNA damage in, human myeloid leukemia cells) -> drugs (8364ms)\nWhat is leukemia?\ta young survivor\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a young survivor, developed, leukemia) -> a young survivor (8438ms)\nWhat is leukemia?\tSpain\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Spain, developed, leukemia) -> Spain (8393ms)\nWhat is leukemia?\ta new friend\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (a new friend, developed, leukemia) -> a new friend (8421ms)\nWhat is leukemia?\tJapan\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Japan, developed, leukemia) -> Japan (8421ms)\nWhat is leukemia?\ttwo children\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (two children, developed, leukemia) -> two children (8421ms)\nWhat is leukemia?\tSorafenib\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Sorafenib, induces cell death in, chronic lymphocytic leukemia) -> Sorafenib (8438ms)\nWhat is leukemia?\tone adult\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (one adult, developed, leukemia) -> one adult (8402ms)\nWhat is leukemia?\tbovine leukemia virus\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (bovine leukemia virus, developed, leukemia) -> bovine leukemia virus (8364ms)\nWhat is leukemia?\tthe immune-deficient children\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the immune-deficient children, developed, leukemia) -> the immune-deficient children (8421ms)\nWhat is leukemia?\tthe husband\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the husband, developed, leukemia) -> the husband (8364ms)\nWhat is leukemia?\tRunx2\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Runx2, induces, acute myeloid leukemia) -> Runx2 (8373ms)\nWhat is leukemia?\tp53\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (p53, induces, myeloid leukemias) -> p53 (8383ms)\nWhat is leukemia?\t700 people\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (700 people, develop, leukemia) -> 700 people (8393ms)\nWhat is leukemia?\tSasaki\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (Sasaki, developed, leukemia) -> Sasaki (8429ms)\nWhat is leukemia?\tFucoxanthin\t1.666666666657\tWhat is leukemia? -> $x: ($x, induce, leukemia) -> (Fucoxanthin, induces apoptosis in, human leukemia) -> Fucoxanthin (8364ms)\nWhat is leukemia?\tthe hormone deprivation-only group\t1.666666666657\tWhat is leukemia? -> $x: ($x, develop, leukemia) -> (the hormone deprivation-only group, developed, leukemia) -> the hormone deprivation-only group (8383ms)\nWhat is leukemia?\tChronic myelomonocytic leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Chronic myelomonocytic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chronic%20myelomonocytic%20leukemia) -> Chronic myelomonocytic leukemia (8463ms)\nWhat is leukemia?\tSecondary causes\t1.666666666656\tWhat is leukemia? -> $x: ($x, could be, leukemia) -> (Secondary causes, could be, leukemia) -> Secondary causes (8455ms)\nWhat is leukemia?\tthe occurrence\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (the occurrence, therefore can be considered, a leukemia cause) -> the occurrence (8472ms)\nWhat is leukemia?\tmono\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (mono, can also be a symptom of, leukemia) -> mono (8447ms)\nWhat is leukemia?\tcat\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (cat, is an animal that can develop, feline leukemia) -> cat (8479ms)\nWhat is leukemia?\tgroin\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (groin, can be an early sign of, leukemia) -> groin (8455ms)\nWhat is leukemia?\tacute megakaryoblastic leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (acute megakaryoblastic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20megakaryoblastic%20leukemia) -> acute megakaryoblastic leukemia (8464ms)\nWhat is leukemia?\tContributions\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Contributions, can be made to, the Leukemia & Lymphoma Society) -> Contributions (8480ms)\nWhat is leukemia?\tGfi1 deficiency\t1.666666666656\tWhat is leukemia? -> $x: ($x, could be, leukemia) -> (Gfi1 deficiency, could be linked to, myeloid leukemia) -> Gfi1 deficiency (8472ms)\nWhat is leukemia?\tHeadache\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Headache, can be, symptoms of CNS leukemia) -> Headache (8472ms)\nWhat is leukemia?\tchemical shampoo\t1.666666666656\tWhat is leukemia? -> $x: ($x, could be, leukemia) -> (chemical shampoo, could be risk of developing, leukemia) -> chemical shampoo (8455ms)\nWhat is leukemia?\tthe viral particles\t1.666666666656\tWhat is leukemia? -> $x: ($x, could be, leukemia) -> (the viral particles, could be seen within, the leukemia cells) -> the viral particles (8447ms)\nWhat is leukemia?\tthe disease\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (the disease, can either be, acute leukemia) -> the disease (8480ms)\nWhat is leukemia?\tT-cell prolymphocytic leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (T-cell prolymphocytic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/T%2Dcell%20prolymphocytic%20leukemia) -> T-cell prolymphocytic leukemia (8455ms)\nWhat is leukemia?\tprolymphocytic leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (prolymphocytic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Prolymphocytic%20leukemia) -> prolymphocytic leukemia (8480ms)\nWhat is leukemia?\tChronic eosinophilic leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Chronic eosinophilic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chronic%20eosinophilic%20leukemia) -> Chronic eosinophilic leukemia (8472ms)\nWhat is leukemia?\tcovalent conjugates\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (covalent conjugates, can be used to target, leukemia blast cells) -> covalent conjugates (8472ms)\nWhat is leukemia?\tAggressive NK cell leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Aggressive NK cell leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Aggressive%20NK%2Dcell%20leukemia) -> Aggressive NK cell leukemia (8479ms)\nWhat is leukemia?\tchronic neutrophilic leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (chronic neutrophilic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chronic%20neutrophilic%20leukemia) -> chronic neutrophilic leukemia (8472ms)\nWhat is leukemia?\tsame\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (same, can about is, leukemia Report child) -> same (8472ms)\nWhat is leukemia?\tCards\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Cards, can be ordered online at, www.leukemia-research) -> Cards (8447ms)\nWhat is leukemia?\tA high MCV\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (A high MCV, can be, a ?Pre-Leukemia? warning sign) -> A high MCV (8480ms)\nWhat is leukemia?\tblurred vision\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (blurred vision, can be symptoms of, CNS leukemia) -> blurred vision (8464ms)\nWhat is leukemia?\tbreath\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (breath, can be symptoms of, pre-leukemia) -> breath (8472ms)\nWhat is leukemia?\tSample cards\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Sample cards, can be viewed at, www.leukemia-research) -> Sample cards (8480ms)\nWhat is leukemia?\tsyndrome\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (syndrome, can be cured of, their leukemia) -> syndrome (8464ms)\nWhat is leukemia?\tAcute myeloblastic leukemia with maturation\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Acute myeloblastic leukemia with maturation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20myeloblastic%20leukemia%20with%20maturation) -> Acute myeloblastic leukemia with maturation (8464ms)\nWhat is leukemia?\tThe same drug\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (The same drug, can be, leukemia reticulosarcoma) -> The same drug (8455ms)\nWhat is leukemia?\tThe next one\t1.666666666656\tWhat is leukemia? -> $x: ($x, discover, leukemia) -> (The next one, discovered, the feline leukemia) -> The next one (8464ms)\nWhat is leukemia?\tAcute erythroid leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Acute erythroid leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20erythroid%20leukemia) -> Acute erythroid leukemia (8472ms)\nWhat is leukemia?\t8 weeks\t1.666666666656\tWhat is leukemia? -> $x: ($x, could be, leukemia) -> (8 weeks, could be tested for, feline leukemia) -> 8 weeks (8455ms)\nWhat is leukemia?\tBone marrow donors\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Bone marrow donors, can only be performed while, the leukemia) -> Bone marrow donors (8447ms)\nWhat is leukemia?\tAbelson murine leukemia virus\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Abelson murine leukemia virus, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Abelson%20murine%20leukemia%20virus) -> Abelson murine leukemia virus (8455ms)\nWhat is leukemia?\tplasma cell leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (plasma cell leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Plasma%20cell%20leukemia) -> plasma cell leukemia (8455ms)\nWhat is leukemia?\tSuch transplants\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Such transplants, can be used to treat, acute myeloid leukemia) -> Such transplants (8480ms)\nWhat is leukemia?\tAcute myeloblastic leukemia without maturation\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (Acute myeloblastic leukemia without maturation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20myeloblastic%20leukemia%20without%20maturation) -> Acute myeloblastic leukemia without maturation (8472ms)\nWhat is leukemia?\tacute_myelomonocytic_leukemia\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (acute_myelomonocytic_leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20myelomonocytic%20leukemia) -> acute_myelomonocytic_leukemia (8447ms)\nWhat is leukemia?\tleukemia inhibitory factor receptor\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (leukemia inhibitory factor receptor, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Leukemia%20inhibitory%20factor%20receptor) -> leukemia inhibitory factor receptor (8447ms)\nWhat is leukemia?\tbleeding gums\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (bleeding gums, can be an early symptom of, leukemia) -> bleeding gums (8455ms)\nWhat is leukemia?\tThe cancer cells\t1.666666666656\tWhat is leukemia? -> $x: ($x, can be, leukemia) -> (The cancer cells, can be, leukemia cells) -> The cancer cells (8464ms)\nWhat is leukemia?\tcommon\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, have in, common) -> common (8487ms)\nWhat is leukemia?\tforest fires\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is found in, forest fires) -> forest fires (8517ms)\nWhat is leukemia?\t2009\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, 2009) -> 2009 (8541ms)\nWhat is leukemia?\tthe wake\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, the wake) -> the wake (8517ms)\nWhat is leukemia?\ta little girl\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (a little girl, got, Leukemia) -> a little girl (8480ms)\nWhat is leukemia?\tbreast cancer\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (breast cancer, then got, leukemia) -> breast cancer (8536ms)\nWhat is leukemia?\ta few people\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (a few people, get, leukemia) -> a few people (8524ms)\nWhat is leukemia?\ttwo sorts\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, comes in, two sorts) -> two sorts (8495ms)\nWhat is leukemia?\ta few patients\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, has been reported in, a few patients) -> a few patients (8547ms)\nWhat is leukemia?\ta particular family\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is found in, a particular family) -> a particular family (8510ms)\nWhat is leukemia?\t10,0000 people\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is 1 in, 10,0000 people) -> 10,0000 people (8531ms)\nWhat is leukemia?\tthe Chinese cohort\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, diagnosed in, the Chinese cohort) -> the Chinese cohort (8517ms)\nWhat is leukemia?\tthe U.S.\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, causes more deaths in, the U.S.) -> the U.S. (8517ms)\nWhat is leukemia?\tAuthorities Concept Scheme\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (8536ms)\nWhat is leukemia?\teach species\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (each species, got, leukemia) -> each species (8524ms)\nWhat is leukemia?\ta nursing home\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, spent her time in, a nursing home) -> a nursing home (8547ms)\nWhat is leukemia?\tNobody\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Nobody, plans on getting, leukemia) -> Nobody (8524ms)\nWhat is leukemia?\tRick\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Rick, got, leukemia) -> Rick (8502ms)\nWhat is leukemia?\tAdam?s central nervous system\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, appeared in, Adam?s central nervous system) -> Adam?s central nervous system (8541ms)\nWhat is leukemia?\t?-catenin\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (?-catenin, might just get rid of, leukemia) -> ?-catenin (8502ms)\nWhat is leukemia?\tthe Post\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, writes in, the Post) -> the Post (8531ms)\nWhat is leukemia?\tthe course of her work\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, contracted in, the course of her work) -> the course of her work (8547ms)\nWhat is leukemia?\ta healthy , young guy\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (a healthy , young guy, get, leukemia) -> a healthy , young guy (8541ms)\nWhat is leukemia?\tdetail\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, describes in, detail) -> detail (8541ms)\nWhat is leukemia?\tSusie\t1.555555555546\tWhat is leukemia? -> $x: ($x, raise be, leukemia) -> (Susie, is raising money for, the Leukemia & Lymphoma Society) -> Susie (8517ms)\nWhat is leukemia?\tthe hospital\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in, the hospital) -> the hospital (8536ms)\nWhat is leukemia?\tHitchhiking Garfield\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Hitchhiking Garfield, Gets, Feline Leukemia) -> Hitchhiking Garfield (8536ms)\nWhat is leukemia?\tleukemic cows\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (leukemic cows, got, leukemia) -> leukemic cows (8495ms)\nWhat is leukemia?\tBobby\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Bobby, got, leukemia) -> Bobby (8480ms)\nWhat is leukemia?\t2004\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, 2004) -> 2004 (8510ms)\nWhat is leukemia?\tthe babies\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (the babies, get, leukemia) -> the babies (8536ms)\nWhat is leukemia?\tFunds\t1.555555555546\tWhat is leukemia? -> $x: ($x, raise be, leukemia) -> (Funds, raised were donated to, the Leukemia Foundation) -> Funds (8510ms)\nWhat is leukemia?\tThe team\t1.555555555546\tWhat is leukemia? -> $x: ($x, raise be, leukemia) -> (The team, is raising money for, The Leukemia & Lymphoma Society) -> The team (8531ms)\nWhat is leukemia?\tconjunction\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, emerged in, conjunction) -> conjunction (8503ms)\nWhat is leukemia?\tkids\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (kids, get, leukemia) -> kids (8524ms)\nWhat is leukemia?\tworkers\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (workers, get, leukemia) -> workers (8510ms)\nWhat is leukemia?\thigh-energy radiation\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (high-energy radiation, increases the risk of getting, leukemia) -> high-energy radiation (8510ms)\nWhat is leukemia?\tmales\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, occurs in, males) -> males (8502ms)\nWhat is leukemia?\ta whirl\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, have gone by in, a whirl) -> a whirl (8495ms)\nWhat is leukemia?\tthe planning stages\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, are in, the planning stages) -> the planning stages (8495ms)\nWhat is leukemia?\tJennifer\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Jennifer, get, leukemia) -> Jennifer (8517ms)\nWhat is leukemia?\tnature\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is highly proliferative in, nature) -> nature (8524ms)\nWhat is leukemia?\tone cell\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, begins in, one cell) -> one cell (8531ms)\nWhat is leukemia?\tan African American\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (an African American, gets, leukemia) -> an African American (8502ms)\nWhat is leukemia?\tthe kid\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (the kid, gets, leukemia) -> the kid (8495ms)\nWhat is leukemia?\tbeta-catenin\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (beta-catenin, might just get rid of, leukemia) -> beta-catenin (8517ms)\nWhat is leukemia?\tblood-forming tissue\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, starts in, blood-forming tissue) -> blood-forming tissue (8541ms)\nWhat is leukemia?\tseven\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, found in, seven) -> seven (8547ms)\nWhat is leukemia?\twestern countries\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, found in, western countries) -> western countries (8487ms)\nWhat is leukemia?\tthe first year\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, diagnosed in, the first year) -> the first year (8536ms)\nWhat is leukemia?\tagreement\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in, agreement) -> agreement (8517ms)\nWhat is leukemia?\ta small number of children\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, has been reported in, a small number of children) -> a small number of children (8524ms)\nWhat is leukemia?\teach person\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, differ in, each person) -> each person (8547ms)\nWhat is leukemia?\tshes\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (shes, got, Leukemia) -> shes (8524ms)\nWhat is leukemia?\tNovember 2008\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, relapsed in, November 2008) -> November 2008 (8541ms)\nWhat is leukemia?\tnow\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in remission, now) -> now (8531ms)\nWhat is leukemia?\tradiation-exposed persons\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, appears in, radiation-exposed persons) -> radiation-exposed persons (8502ms)\nWhat is leukemia?\tmemory\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, is in, memory) -> memory (8495ms)\nWhat is leukemia?\tThe poor children\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (The poor children, get, leukemias) -> The poor children (8517ms)\nWhat is leukemia?\tthe blood or bone marrow\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, develop in, the blood or bone marrow) -> the blood or bone marrow (8517ms)\nWhat is leukemia?\tthe affected counties\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (the affected counties, got, leukemia) -> the affected counties (8524ms)\nWhat is leukemia?\tthe late 1940\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, began in, the late 1940) -> the late 1940 (8487ms)\nWhat is leukemia?\tthe marrow\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, arises in, the marrow) -> the marrow (8524ms)\nWhat is leukemia?\tthe household\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (the household, could get, Leukemia) -> the household (8536ms)\nWhat is leukemia?\tTopical Terms Concept Scheme\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (8495ms)\nWhat is leukemia?\tShawn\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Shawn, gets, leukemia) -> Shawn (8542ms)\nWhat is leukemia?\tthe normal process\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, interferes in, the normal process) -> the normal process (8510ms)\nWhat is leukemia?\tnewborns\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is also seen in, newborns) -> newborns (8502ms)\nWhat is leukemia?\tso many teachers and nurses aids\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (so many teachers and nurses aids, get, leukemia) -> so many teachers and nurses aids (8510ms)\nWhat is leukemia?\ta long term study\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, found in, a long term study) -> a long term study (8531ms)\nWhat is leukemia?\tteenagers\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, diagnosed in, teenagers) -> teenagers (8502ms)\nWhat is leukemia?\ta human being\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (a human being, gets, leukemia) -> a human being (8547ms)\nWhat is leukemia?\ta particular school\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (a particular school, got, leukemia) -> a particular school (8524ms)\nWhat is leukemia?\ta type\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, begins in, a type) -> a type (8536ms)\nWhat is leukemia?\tJuly 2011\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, began in, July 2011) -> July 2011 (8517ms)\nWhat is leukemia?\tRachel\t1.555555555546\tWhat is leukemia? -> $x: ($x, raise be, leukemia) -> (Rachel, is raising money for, the Leukemia and Lymphoma Society-) -> Rachel (8510ms)\nWhat is leukemia?\tReamer\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Reamer, got, leukemia) -> Reamer (8495ms)\nWhat is leukemia?\t1953\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, 1953) -> 1953 (8495ms)\nWhat is leukemia?\tone particular person\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (one particular person, gets, acute leukemia) -> one particular person (8524ms)\nWhat is leukemia?\tmultiple side\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, find might in, multiple side) -> multiple side (8547ms)\nWhat is leukemia?\tThe trip\t1.555555555546\tWhat is leukemia? -> $x: ($x, raise be, leukemia) -> (The trip, was designed to raise money for, a leukemia charity) -> The trip (8541ms)\nWhat is leukemia?\teight\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, recurred in, eight) -> eight (8536ms)\nWhat is leukemia?\tdesperate short supply\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in, desperate short supply) -> desperate short supply (8487ms)\nWhat is leukemia?\tMont\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, Mont) -> Mont (8495ms)\nWhat is leukemia?\tson\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (son, got, leukemia) -> son (8531ms)\nWhat is leukemia?\ta warehouse\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, are being kept in, a warehouse) -> a warehouse (8531ms)\nWhat is leukemia?\tinfants\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, diagnosed in, infants) -> infants (8510ms)\nWhat is leukemia?\tKennedy\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Kennedy, got, Leukemia) -> Kennedy (8495ms)\nWhat is leukemia?\tTraining\t1.555555555546\tWhat is leukemia? -> $x: ($x, raise be, leukemia) -> (Training, are raising funds to help, STOP leukemia) -> Training (8541ms)\nWhat is leukemia?\tvegetarian\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (vegetarian, got, leukemia) -> vegetarian (8495ms)\nWhat is leukemia?\tevery five caucasians\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (every five caucasians, get, Leukemia) -> every five caucasians (8510ms)\nWhat is leukemia?\tremission\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in, remission) -> remission (8536ms)\nWhat is leukemia?\tthe bone marrow and wrecks havoc\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (( Leukemia, starts in, the bone marrow and wrecks havoc) -> the bone marrow and wrecks havoc (8495ms)\nWhat is leukemia?\tKenny\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Kenny, got, leukemia) -> Kenny (8510ms)\nWhat is leukemia?\tthe factory\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (the factory, will get, leukemia) -> the factory (8487ms)\nWhat is leukemia?\tthe ecology\t1.555555555546\tWhat is leukemia? -> $x: ($x, leave, leukemia) -> (the ecology, left an ongoing legacy of, childhood leukemia) -> the ecology (8487ms)\nWhat is leukemia?\tolder adults\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, occur in, older adults) -> older adults (8531ms)\nWhat is leukemia?\ta small number\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, has been reported in, a small number) -> a small number (8541ms)\nWhat is leukemia?\tDown syndrome\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Down syndrome, get, Leukemia) -> Down syndrome (8541ms)\nWhat is leukemia?\tthe person\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (the person, will get, leukemia) -> the person (8536ms)\nWhat is leukemia?\tAlexa\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Alexa, got, Leukemia) -> Alexa (8502ms)\nWhat is leukemia?\tspecific drugs\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (specific drugs, may get, leukemia) -> specific drugs (8517ms)\nWhat is leukemia?\ta woman\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (a woman, got, leukemia) -> a woman (8536ms)\nWhat is leukemia?\tthe researcher\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (the researcher, got, leukemia) -> the researcher (8487ms)\nWhat is leukemia?\ttwo ways\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, may be given in, two ways) -> two ways (8510ms)\nWhat is leukemia?\tsixteen children\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (sixteen children, got, leukemia) -> sixteen children (8517ms)\nWhat is leukemia?\ta person\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (a person, will get, leukemia) -> a person (8542ms)\nWhat is leukemia?\tthe calendar\t1.555555555546\tWhat is leukemia? -> $x: ($x, raise be, leukemia) -> (the calendar, was to raise money for, leukemia) -> the calendar (8524ms)\nWhat is leukemia?\tone person\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (one person, gets, leukemia) -> one person (8531ms)\nWhat is leukemia?\tthe WARNER , DARLING , MILLS plot\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is buried in, the WARNER , DARLING , MILLS plot) -> the WARNER , DARLING , MILLS plot (8524ms)\nWhat is leukemia?\tkathya\t1.555555555546\tWhat is leukemia? -> $x: ($x, raise be, leukemia) -> (kathya, is raising funds for, the leukemia and lymphoma society) -> kathya (8495ms)\nWhat is leukemia?\tDom\t1.555555555546\tWhat is leukemia? -> $x: ($x, get, leukemia) -> (Dom, got, leukemia) -> Dom (8503ms)\nWhat is leukemia?\tvarious forms\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, occurs in, various forms) -> various forms (8547ms)\nWhat is leukemia?\tthe white blood cells\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, starts in, the white blood cells) -> the white blood cells (8547ms)\nWhat is leukemia?\tthe higher dairy\t1.555555555546\tWhat is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is more common in, the higher dairy) -> the higher dairy (8536ms)\nWhat is leukemia?\tMoore\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (Moore, is involved with, the Leukemia and Lymphoma Society) -> Moore (8552ms)\nWhat is leukemia?\tthe SYK kinase\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (the SYK kinase, is involved in, leukemia and breast cancers) -> the SYK kinase (8552ms)\nWhat is leukemia?\tStephanie\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (Stephanie, is involved with, the Leukemia and Lymphoma Society) -> Stephanie (8551ms)\nWhat is leukemia?\tthe ALL1 and AF4\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (the ALL1 and AF4, proteins involved in, acute leukemia) -> the ALL1 and AF4 (8551ms)\nWhat is leukemia?\ta human proto-oncogene\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (a human proto-oncogene, involved in, acute myeloid leukemias) -> a human proto-oncogene (8552ms)\nWhat is leukemia?\tthe research\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (the research, involved, leukemia) -> the research (8551ms)\nWhat is leukemia?\tasparagus and cancer\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (asparagus and cancer, involves, leukemia) -> asparagus and cancer (8552ms)\nWhat is leukemia?\tGary\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (Gary, has long been involved with, the Leukemia Cup Regattas) -> Gary (8551ms)\nWhat is leukemia?\tThe study\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (The study, involved a type of, leukemia) -> The study (8552ms)\nWhat is leukemia?\tThe different age effect\t1.555555555545\tWhat is leukemia? -> $x: ($x, involve, leukemia) -> (The different age effect, involves different types of, leukemias) -> The different age effect (8551ms)\nWhat is leukemia?\tstem cells\t1.444444444434\tWhat is leukemia? -> $x: ($x, be use as, leukemia) -> (stem cells, are being used to treat diseases such as, leukemia) -> stem cells (8556ms)\nWhat is leukemia?\tMDS\t1.444444444434\tWhat is leukemia? -> $x: ($x, precede, leukemia) -> (MDS, precedes the development of, acute Leukemia) -> MDS (8556ms)\nWhat is leukemia?\t?Sometimes\t1.444444444434\tWhat is leukemia? -> $x: ($x, precede, leukemia) -> (?Sometimes, preceded by, myelogenous leukemia) -> ?Sometimes (8556ms)\nWhat is leukemia?\tviremia\t1.444444444434\tWhat is leukemia? -> $x: ($x, precede, leukemia) -> (viremia, preceded, leukemia) -> viremia (8556ms)\nWhat is leukemia?\tthe cords\t1.444444444434\tWhat is leukemia? -> $x: ($x, be use as, leukemia) -> (the cords, would be used to treat diseases such as, leukemia) -> the cords (8556ms)\nWhat is leukemia?\tmilk\t1.333333333323\tWhat is leukemia? -> $x: ($x, contain, leukemia) -> (milk, might also have contained, live leukemia virus) -> milk (8556ms)\nWhat is leukemia?\tcow products\t1.333333333323\tWhat is leukemia? -> $x: ($x, contain, leukemia) -> (cow products, contain, live lymphoma and leukemia viruses) -> cow products (8556ms)\nWhat is leukemia?\tthe yellow fever vaccine\t1.333333333323\tWhat is leukemia? -> $x: ($x, contain, leukemia) -> (the yellow fever vaccine, contained, a leukemia virus) -> the yellow fever vaccine (8556ms)\nWhat is leukemia?\tblood\t1.333333333323\tWhat is leukemia? -> $x: ($x, contain, leukemia) -> (blood, also contains, the leukemia) -> blood (8556ms)\nWhat is leukemia?\tCoriolus\t1.222222222214\tWhat is leukemia? -> $x: ($x, demonstrate, leukemia) -> (Coriolus, have demonstrated an inhibitory effect on, leukemia) -> Coriolus (8556ms)\nWhat is leukemia?\tVietnam veterans\t1.222222222213\tWhat is leukemia? -> $x: ($x, concerned, leukemia) -> (Vietnam veterans, concerned about, chronic lymphocytic leukemia) -> Vietnam veterans (8561ms)\nWhat is leukemia?\tHouse\t1.222222222213\tWhat is leukemia? -> $x: ($x, concerned, leukemia) -> (House, is now concerned about, leukemia) -> House (8556ms)\nWhat is leukemia?\tlymph nodes\t1.222222222213\tWhat is leukemia? -> $x: ($x, concerned, leukemia) -> (lymph nodes, raise the concern for, leukemia) -> lymph nodes (8556ms)\nWhat is leukemia?\tphysical challenge\t1.1111111111010001\tWhat is leukemia? -> $x: ($x, bring about, leukemia) -> (physical challenge, brought about by, acute leukemia) -> physical challenge (8561ms)\nWhat is leukemia?\tleukemia stem cells\t0.99999999999\tWhat is leukemia? -> $x: ($x, initiate, leukemia) -> (leukemia stem cells, are responsible for initiating, leukemia) -> leukemia stem cells (8585ms)\nWhat is leukemia?\ttwo particular classrooms\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, had been in, two particular classrooms) -> two particular classrooms (8581ms)\nWhat is leukemia?\tgreen tea\t0.99999999999\tWhat is leukemia? -> $x: ($x, number of, leukemia) -> (green tea, may reduce the number of, leukemia cells) -> green tea (8587ms)\nWhat is leukemia?\tThe Lmo2 oncogene\t0.99999999999\tWhat is leukemia? -> $x: ($x, initiate, leukemia) -> (The Lmo2 oncogene, initiates, leukemia) -> The Lmo2 oncogene (8565ms)\nWhat is leukemia?\texcessive exposure\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been linked to, excessive exposure) -> excessive exposure (8581ms)\nWhat is leukemia?\tHIV infection\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been cured of, HIV infection) -> HIV infection (8587ms)\nWhat is leukemia?\tparts\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, is well documented in, parts) -> parts (8587ms)\nWhat is leukemia?\tneoplastic lines\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemias, have been carried out on, neoplastic lines) -> neoplastic lines (8565ms)\nWhat is leukemia?\tthe hematopoietic system\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (Leukemia, is always disseminated in, the hematopoietic system) -> the hematopoietic system (8573ms)\nWhat is leukemia?\tprevious gene therapy trials\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been a problem with, previous gene therapy trials) -> previous gene therapy trials (8587ms)\nWhat is leukemia?\torigin\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (Leukemia, is evidently psychosomatic in, origin) -> origin (8573ms)\nWhat is leukemia?\tFlax Oil\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (Leukemia, has been using, Flax Oil) -> Flax Oil (8561ms)\nWhat is leukemia?\ttwo classrooms\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, had been located in, two classrooms) -> two classrooms (8581ms)\nWhat is leukemia?\tthe past\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia cases, have been increasing over, the past) -> the past (8565ms)\nWhat is leukemia?\t5 decades\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been increasing over, 5 decades) -> 5 decades (8584ms)\nWhat is leukemia?\tseveral countries\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, were found in, several countries) -> several countries (8561ms)\nWhat is leukemia?\tgreen tea?helps\t0.99999999999\tWhat is leukemia? -> $x: ($x, number of, leukemia) -> (green tea?helps, reduce the number of, leukemia cells) -> green tea?helps (8573ms)\nWhat is leukemia?\tGod\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (Childhood leukemia, may have been in, God) -> God (8587ms)\nWhat is leukemia?\ta higher expression level\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, were found to have, a higher expression level) -> a higher expression level (8581ms)\nWhat is leukemia?\t20 people\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (Leukemia, was found in, 20 people) -> 20 people (8573ms)\nWhat is leukemia?\tthe group\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, were the youngest in, the group) -> the group (8581ms)\nWhat is leukemia?\tthe Center\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, are treated in, the Center) -> the Center (8585ms)\nWhat is leukemia?\tXj\t0.99999999999\tWhat is leukemia? -> $x: ($x, number of, leukemia) -> (Xj, is the number of, leukemia deaths) -> Xj (8587ms)\nWhat is leukemia?\tthe Glivec clinical trials\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, were included in, the Glivec clinical trials) -> the Glivec clinical trials (8573ms)\nWhat is leukemia?\tM. D. Anderson since\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been made at, M. D. Anderson since) -> M. D. Anderson since (8581ms)\nWhat is leukemia?\ta concern\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (pediatric leukemia, has been, a concern) -> a concern (8585ms)\nWhat is leukemia?\tgang rape\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, claims to have been a victim of, gang rape) -> gang rape (8577ms)\nWhat is leukemia?\tAs71 and As74\t0.99999999999\tWhat is leukemia? -> $x: ($x, administer, leukemia) -> (As71 and As74, were administered to, four leukemia patients) -> As71 and As74 (8569ms)\nWhat is leukemia?\ttotal remission\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (the leukemia, had been driven into, total remission) -> total remission (8569ms)\nWhat is leukemia?\tthe years\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was observed in, the years) -> the years (8587ms)\nWhat is leukemia?\tdairy farmers\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been found among, dairy farmers) -> dairy farmers (8587ms)\nWhat is leukemia?\tinduction therapy\t0.99999999999\tWhat is leukemia? -> $x: ($x, number of, leukemia) -> (induction therapy, is to reduce the number of, leukemia cells) -> induction therapy (8569ms)\nWhat is leukemia?\ta translocation\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been associated with, a translocation) -> a translocation (8581ms)\nWhat is leukemia?\tShelton\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was buried in, Shelton) -> Shelton (8569ms)\nWhat is leukemia?\tTable 1\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, are shown in, Table 1) -> Table 1 (8577ms)\nWhat is leukemia?\tradium recipients\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, were documented in, radium recipients) -> radium recipients (8561ms)\nWhat is leukemia?\tthe year 2007\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (Leukemia, were diagnosed in, the year 2007) -> the year 2007 (8585ms)\nWhat is leukemia?\ta high rate\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (Leukemia, is considered to have, a high rate) -> a high rate (8569ms)\nWhat is leukemia?\tPortland\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, is very high in, Portland) -> Portland (8569ms)\nWhat is leukemia?\tthe bone marrow registry\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, had been placed on, the bone marrow registry) -> the bone marrow registry (8561ms)\nWhat is leukemia?\tthe UF College\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been named the new chair of, the UF College) -> the UF College (8577ms)\nWhat is leukemia?\tthe media\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was widely promoted in, the media) -> the media (8581ms)\nWhat is leukemia?\tLa Hague reprocessing plant\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (Leukemia, has been reported around, La Hague reprocessing plant) -> La Hague reprocessing plant (8577ms)\nWhat is leukemia?\tJAMA.\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was published in, JAMA.) -> JAMA. (8577ms)\nWhat is leukemia?\t2000\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, are expected in, 2000) -> 2000 (8561ms)\nWhat is leukemia?\tnine percent\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was found in, nine percent) -> nine percent (8581ms)\nWhat is leukemia?\tobesity\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, have been linked to, obesity) -> obesity (8573ms)\nWhat is leukemia?\ta Batman movie\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was to star in, a Batman movie) -> a Batman movie (8587ms)\nWhat is leukemia?\tgenetic disorders\t0.99999999999\tWhat is leukemia? -> $x: ($x, initiate, leukemia) -> (genetic disorders, initiate, leukemias) -> genetic disorders (8587ms)\nWhat is leukemia?\ta complication\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been observed as, a complication) -> a complication (8585ms)\nWhat is leukemia?\t40-50 %\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (Leukemia, has been reduced by, 40-50 %) -> 40-50 % (8587ms)\nWhat is leukemia?\tinfections\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (Childhood leukemia, has been linked to, infections) -> infections (8565ms)\nWhat is leukemia?\tthe development\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (Feline leukemia, has been linked to, the development) -> the development (8565ms)\nWhat is leukemia?\t1876\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was first suggested in, 1876) -> 1876 (8569ms)\nWhat is leukemia?\tDown syndrome patients\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, is only seen in, Down syndrome patients) -> Down syndrome patients (8577ms)\nWhat is leukemia?\tMelothria\t0.99999999999\tWhat is leukemia? -> $x: ($x, administer, leukemia) -> (Melothria, was administered to, leukemia cells) -> Melothria (8561ms)\nWhat is leukemia?\tHiroshima females\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was significantly high in, Hiroshima females) -> Hiroshima females (8577ms)\nWhat is leukemia?\trates\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been diagnosed at, rates) -> rates (8587ms)\nWhat is leukemia?\tan accident\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, is disabled in, an accident) -> an accident (8565ms)\nWhat is leukemia?\tstudies\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, have been found to be higher in, studies) -> studies (8585ms)\nWhat is leukemia?\tthe bloodstream\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, are present in, the bloodstream) -> the bloodstream (8585ms)\nWhat is leukemia?\t1948\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been documented since, 1948) -> 1948 (8585ms)\nWhat is leukemia?\tELF radiation\t0.99999999999\tWhat is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been heavily exposed to, ELF radiation) -> ELF radiation (8587ms)\nWhat is an eclipse?\tYeager\t0.44444444444200004\tWhat is an eclipse? -> $x: ($x, be example of, eclipse) -> (Yeager, are handy examples of, such eclipsed glory) -> Yeager (2810ms)\nWhat is an eclipse?\tIBM\t0.333333333332\tWhat is an eclipse? -> $x: ($x, be th, eclipse) -> (IBM, is celebrating its 10th anniversary at, EclipseCon) -> IBM (2810ms)\nWhat is an eclipse?\ttomorrow\t0.333333333332\tWhat is an eclipse? -> $x: ($x, be th, eclipse) -> (tomorrow, is the the 90th anniversary of, the 1919 solar eclipse) -> tomorrow (2810ms)\nWhat is an eclipse?\tTrolleys\t0.222222222219\tWhat is an eclipse? -> $x: ($x, be example of, solar power) -> (Trolleys, are also an example of, a solar powered vehicle) -> Trolleys (2810ms)\nWhat is an eclipse?\tSun rooms\t0.222222222219\tWhat is an eclipse? -> $x: ($x, be example of, solar power) -> (Sun rooms, are another example of, passive solar power) -> Sun rooms (2810ms)\nWhat is an eclipse?\tJava coding and debugging\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Java coding and debugging, is done in, Eclipse) -> Java coding and debugging (10454ms)\nWhat is an eclipse?\tJRebel\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (JRebel, can be found in, the Eclipse Marketplace) -> JRebel (10398ms)\nWhat is an eclipse?\ta RCP based file browser\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (a RCP based file browser, create, a new Eclipse RCP project) -> a RCP based file browser (10490ms)\nWhat is an eclipse?\twork\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (work, is, Eclipse) -> work (10748ms)\nWhat is an eclipse?\tTwilight\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Twilight, will do the same for, Eclipse) -> Twilight (10641ms)\nWhat is an eclipse?\tthe Keeneland publicist\t0.111111111111\tWhat is an eclipse? -> $x: ($x, invent, eclipse) -> (the Keeneland publicist, invented, the Eclipse Award program) -> the Keeneland publicist (10672ms)\nWhat is an eclipse?\tMarch 29\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (March 29, produces, a total solar eclipse) -> March 29 (10398ms)\nWhat is an eclipse?\tLavi\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Lavi, found a picture of, her Eclipse) -> Lavi (10777ms)\nWhat is an eclipse?\tThe demo\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (The demo, was done in, Eclipse) -> The demo (3497ms)\nWhat is an eclipse?\tAptana\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Aptana, has done a good job at using, Eclipse) -> Aptana (10625ms)\nWhat is an eclipse?\t? I?ve\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (? I?ve, even found the benefit in, Eclipse?s new task tab) -> ? I?ve (10703ms)\nWhat is an eclipse?\tAuto classifieds\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Auto classifieds, find, a 2007 Mitsubishi Eclipse Spyder) -> Auto classifieds (10576ms)\nWhat is an eclipse?\tPHP files\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (PHP files, can be done with, Eclipse) -> PHP files (10791ms)\nWhat is an eclipse?\tA binary star system\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (A binary star system, can also produce, eclipses) -> A binary star system (10472ms)\nWhat is an eclipse?\tCicero\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Cicero, found, the eclipse) -> Cicero (10688ms)\nWhat is an eclipse?\tCain\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (Cain, has described, Eclipse) -> Cain (10703ms)\nWhat is an eclipse?\tA coronagraph\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (A coronagraph, produces, an artificial eclipse) -> A coronagraph (10367ms)\nWhat is an eclipse?\tMarty Bowen\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Marty Bowen, Films Executive Produced, Eclipse) -> Marty Bowen (10417ms)\nWhat is an eclipse?\toverthrow\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (overthrow, were represented by, eclipses and extinction) -> overthrow (10576ms)\nWhat is an eclipse?\tThe main problem\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The main problem, is, Eclipse) -> The main problem (10592ms)\nWhat is an eclipse?\tEclipse Our winner\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (Eclipse Our winner, is, Eclipse) -> Eclipse Our winner (10508ms)\nWhat is an eclipse?\t63\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (63, did, more than eclipse) -> 63 (9745ms)\nWhat is an eclipse?\tDAVID letter\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (DAVID letter, was found on, the solar eclipse) -> DAVID letter (9240ms)\nWhat is an eclipse?\tthe ECLIPSE partnership\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the ECLIPSE partnership, can be found at, www.eclipse .org) -> the ECLIPSE partnership (10472ms)\nWhat is an eclipse?\tThe problem\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The problem, is, Eclipse) -> The problem (10436ms)\nWhat is an eclipse?\t1999\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen at, eclipse) -> (1999, also happened at, the ?Nostradamus ? solar eclipse) -> 1999 (10592ms)\nWhat is an eclipse?\tcourse\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (course, also do this all from within, Eclipse) -> course (10436ms)\nWhat is an eclipse?\tThe track\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The track, was, ?eclipse?.) -> The track (10656ms)\nWhat is an eclipse?\tWyck Godfrey\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Wyck Godfrey, Films Produced, Eclipse) -> Wyck Godfrey (10525ms)\nWhat is an eclipse?\tAlan Parsons\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Alan Parsons, Tracks produced, Total Eclipse) -> Alan Parsons (10748ms)\nWhat is an eclipse?\tlow frequency propagation\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (low frequency propagation, did change during, the eclipse) -> low frequency propagation (10777ms)\nWhat is an eclipse?\tKetu\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Ketu, creates, the eclipse) -> Ketu (10717ms)\nWhat is an eclipse?\ta little reflection\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen at, eclipse) -> (a little reflection, happened last week at, EclipseCon) -> a little reflection (10454ms)\nWhat is an eclipse?\tJeremy Podeswa\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Jeremy Podeswa, Films Produced, Eclipse) -> Jeremy Podeswa (10791ms)\nWhat is an eclipse?\tthe winter months\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the winter months, finds, an almost eclipse) -> the winter months (10490ms)\nWhat is an eclipse?\tthe snippet text\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the snippet text, create folders in, eclipse snippet directory 4) -> the snippet text (10490ms)\nWhat is an eclipse?\tTop Firms\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Top Firms, Find, 2006 Mitsubishi Eclipse GS coupe) -> Top Firms (10559ms)\nWhat is an eclipse?\tan astronomy dictionary\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (an astronomy dictionary, find out about, solar eclipses) -> an astronomy dictionary (10559ms)\nWhat is an eclipse?\tNormal\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Normal, produces, the Eclipse) -> Normal (10436ms)\nWhat is an eclipse?\tThe element helium\t0.111111111111\tWhat is an eclipse? -> $x: ($x, discover, eclipse) -> (The element helium, was also discovered at, this eclipse) -> The element helium (10398ms)\nWhat is an eclipse?\tBarry Jamieson\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Barry Jamieson, Tracks produced, Eclipse (original mix)) -> Barry Jamieson (10508ms)\nWhat is an eclipse?\tThe IDE\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The IDE, is, eclipse) -> The IDE (10508ms)\nWhat is an eclipse?\tlarge crowd\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (large crowd, are doing with, Eclipse) -> large crowd (10672ms)\nWhat is an eclipse?\tfairly no changes\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (fairly no changes, is found in, the Eclipse-CVS-Repository) -> fairly no changes (2810ms)\nWhat is an eclipse?\tonly a few hours\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (only a few hours, then did go back to, Eclipse) -> only a few hours (10490ms)\nWhat is an eclipse?\tcannot\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (cannot, be, eclipses) -> cannot (10525ms)\nWhat is an eclipse?\tspectral variations\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be characteristic of, eclipse) -> (spectral variations, are characteristic of, the eclipses) -> spectral variations (10542ms)\nWhat is an eclipse?\tData\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Data, can be found on, the NASA Lunar Eclipse Page) -> Data (7886ms)\nWhat is an eclipse?\tJune 1 , 2011\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (June 1 , 2011, produces, a Partial Solar Eclipse) -> June 1 , 2011 (10791ms)\nWhat is an eclipse?\ta discussion\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen at, eclipse) -> (a discussion, actually happened last year at, EclipseCon 2007) -> a discussion (9240ms)\nWhat is an eclipse?\tRahu and Ketu\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Rahu and Ketu, create, eclipses) -> Rahu and Ketu (10718ms)\nWhat is an eclipse?\tcommittee members\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (committee members, can be found at, www.eclipse-copd.com) -> committee members (10398ms)\nWhat is an eclipse?\tthe entire disc\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the entire disc, creates, a total solar eclipse) -> the entire disc (6038ms)\nWhat is an eclipse?\tan essence\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (an essence, was created during, an eclipse) -> an essence (10703ms)\nWhat is an eclipse?\twas\t0.111111111111\tWhat is an eclipse? -> $x: ($x, re, eclipse) -> (was, re-install, Eclipse) -> was (10641ms)\nWhat is an eclipse?\tTable 3\t0.111111111111\tWhat is an eclipse? -> $x: ($x, define, eclipse) -> (Table 3, define a line of, maximum eclipse) -> Table 3 (10717ms)\nWhat is an eclipse?\tDonald Smith?s ?\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (Donald Smith?s ?, is, Eclipse) -> Donald Smith?s ? (10367ms)\nWhat is an eclipse?\tThe court\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (The court, found for, Eclipse) -> The court (10542ms)\nWhat is an eclipse?\tthe opportunity\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the opportunity, are doing with, Eclipse) -> the opportunity (7886ms)\nWhat is an eclipse?\tThe EPL license\t0.111111111111\tWhat is an eclipse? -> $x: ($x, define, eclipse) -> (The EPL license, was defined by, the Eclipse foundation) -> The EPL license (10454ms)\nWhat is an eclipse?\tthe reddish component\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the reddish component, was found to be, an eclipsing binary) -> the reddish component (10525ms)\nWhat is an eclipse?\ta role\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (a role, did, Eclipse play) -> a role (10688ms)\nWhat is an eclipse?\tthe moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the moon, produces, lunar eclipses) -> the moon (10777ms)\nWhat is an eclipse?\tThe following steps\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (The following steps, are described for, Eclipse) -> The following steps (10656ms)\nWhat is an eclipse?\tThe Moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (The Moon, produces, a Solar eclipse) -> The Moon (10656ms)\nWhat is an eclipse?\tthe How\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the How, create, an Eclipse update site) -> the How (10417ms)\nWhat is an eclipse?\tSubversion\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Subversion, does have a plugin for, Eclipse) -> Subversion (10763ms)\nWhat is an eclipse?\tnot every new Moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (not every new Moon, produces, a solar eclipse) -> not every new Moon (10472ms)\nWhat is an eclipse?\tBIRT 2.3\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (BIRT 2.3, can be found on, the Eclipse Foundation Web site) -> BIRT 2.3 (10672ms)\nWhat is an eclipse?\tDesert Edge\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (Desert Edge, thankfully represents, Eclipse) -> Desert Edge (10542ms)\nWhat is an eclipse?\tThanks\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Thanks, do, Eclipse PDE) -> Thanks (10542ms)\nWhat is an eclipse?\tDa Beatminerz\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Da Beatminerz, Releases produced, Total Eclipse) -> Da Beatminerz (10748ms)\nWhat is an eclipse?\tYorkIT\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (YorkIT, found, Eclipse profiler/eclipsecolorer) -> YorkIT (10559ms)\nWhat is an eclipse?\tprob lems\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (prob lems, is, #eclipse) -> prob lems (10718ms)\nWhat is an eclipse?\tthe technology\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the technology, can be found on, www.Eclipse20.com) -> the technology (10748ms)\nWhat is an eclipse?\tButch\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Butch, Tracks produced, Eclipse (Butch remix)) -> Butch (10417ms)\nWhat is an eclipse?\tFilip Remunda\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Filip Remunda, Films Produced, Solar Eclipse) -> Filip Remunda (10333ms)\nWhat is an eclipse?\tOne such example\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (One such example, is, Eclipse) -> One such example (10559ms)\nWhat is an eclipse?\tKaren Rosenfelt\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Karen Rosenfelt, Films Produced, Eclipse) -> Karen Rosenfelt (10508ms)\nWhat is an eclipse?\tonly scattered clouds\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (only scattered clouds, can be found at, eclipse time) -> only scattered clouds (10609ms)\nWhat is an eclipse?\tThe GWT presentation\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (The GWT presentation, was done completely in, Eclipse) -> The GWT presentation (10398ms)\nWhat is an eclipse?\tThe Mexicans\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (The Mexicans, represent, an eclipse) -> The Mexicans (10417ms)\nWhat is an eclipse?\tsacred light\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (sacred light, is, eclipse) -> sacred light (10656ms)\nWhat is an eclipse?\tthe unit\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the unit, have created so far from, Eclipse) -> the unit (10508ms)\nWhat is an eclipse?\tSunfury , Arcane and Netherweave\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Sunfury , Arcane and Netherweave, are found in, Eclipse Point) -> Sunfury , Arcane and Netherweave (10703ms)\nWhat is an eclipse?\tA total eclipse\t0.111111111111\tWhat is an eclipse? -> $x: ($x, define, eclipse) -> (A total eclipse, can be defined as, an eclipse) -> A total eclipse (5989ms)\nWhat is an eclipse?\tsecond culprit\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (second culprit, is, eclipse) -> second culprit (10641ms)\nWhat is an eclipse?\tThe driver\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (The driver, can be found on, the Northern Eclipse CD) -> The driver (10559ms)\nWhat is an eclipse?\tBeni ? Tue Sep 29 , 2009 2:09 pm\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Beni ? Tue Sep 29 , 2009 2:09 pm, does, Eclipse crash) -> Beni ? Tue Sep 29 , 2009 2:09 pm (9745ms)\nWhat is an eclipse?\tto Indians\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (to Indians, did, such eclipse respond) -> to Indians (10641ms)\nWhat is an eclipse?\ta far more complex application\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (a far more complex application, was created with, Eclipse) -> a far more complex application (10472ms)\nWhat is an eclipse?\tEl Tit?\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (El Tit?, Tracks produced, Eclipse) -> El Tit? (10576ms)\nWhat is an eclipse?\tthe sun\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the sun, does shine its like, an eclipse) -> the sun (10454ms)\nWhat is an eclipse?\tthe upcoming solar eclipse\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the upcoming solar eclipse, can be found at, MrEclipse) -> the upcoming solar eclipse (10748ms)\nWhat is an eclipse?\tname\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (name, is, Eclipse) -> name (10525ms)\nWhat is an eclipse?\tthe icon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the icon, find, the Eclipse .ini) -> the icon (10656ms)\nWhat is an eclipse?\tThe guidance\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (The guidance, below are described based on, Eclipse-3.2) -> The guidance (10641ms)\nWhat is an eclipse?\t33 different countries\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (33 different countries, will be represented at, EclipseCon 2012) -> 33 different countries (10398ms)\nWhat is an eclipse?\tthe broken pieces\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the broken pieces, was, Eclipse) -> the broken pieces (10625ms)\nWhat is an eclipse?\tThe company\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (The company, produced, Eclipse 1) -> The company (10732ms)\nWhat is an eclipse?\tThe best example\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The best example, is, Eclipse) -> The best example (10625ms)\nWhat is an eclipse?\tsample New File Wizard\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (sample New File Wizard, created by, Eclipse) -> sample New File Wizard (10559ms)\nWhat is an eclipse?\tthe Header Colors\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the Header Colors, Create a new workspace for, Eclipse) -> the Header Colors (10472ms)\nWhat is an eclipse?\tshift and change\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (shift and change, does, a lunar eclipse) -> shift and change (9240ms)\nWhat is an eclipse?\tTasktop\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Tasktop, created, the popular Eclipse Mylyn project) -> Tasktop (10732ms)\nWhat is an eclipse?\tthe well\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the well, also found in, the EVOs , Talons , Eclipse , ect.) -> the well (10525ms)\nWhat is an eclipse?\tCherry Bomb\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Cherry Bomb, Tracks produced, Eclipse) -> Cherry Bomb (10542ms)\nWhat is an eclipse?\tthe computer process\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the computer process, can be found at, 1999 Composite Eclipse) -> the computer process (10559ms)\nWhat is an eclipse?\ta coronagraph\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (a coronagraph, produces, an artificial solar eclipse) -> a coronagraph (10417ms)\nWhat is an eclipse?\tcowthen\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (cowthen, do, the Mone eclipse) -> cowthen (10472ms)\nWhat is an eclipse?\tthe software\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the software, is done using, eclipse) -> the software (10732ms)\nWhat is an eclipse?\ta look\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (a look, find, the eclipse) -> a look (10641ms)\nWhat is an eclipse?\thorse Light-Infantry\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (horse Light-Infantry, was, Eclipse) -> horse Light-Infantry (10703ms)\nWhat is an eclipse?\tPHP Architect\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (PHP Architect, find, an Eclipse cover story) -> PHP Architect (10559ms)\nWhat is an eclipse?\ta 45 year mystery\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (a 45 year mystery, Does, a solar eclipse) -> a 45 year mystery (10508ms)\nWhat is an eclipse?\tuse Eclipse\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (use Eclipse, do use, Eclipse) -> use Eclipse (10367ms)\nWhat is an eclipse?\tThe environment\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The environment, is, Eclipse) -> The environment (10672ms)\nWhat is an eclipse?\tGod\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (God, is, eclipsed?) -> God (10609ms)\nWhat is an eclipse?\tThe labs\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (The labs, are done using, Eclipse WTP) -> The labs (10333ms)\nWhat is an eclipse?\ta test class\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (a test class, does beat, Eclipse) -> a test class (10763ms)\nWhat is an eclipse?\tsolar eclipses\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (solar eclipses, can be found on, the Eclipse Page) -> solar eclipses (10763ms)\nWhat is an eclipse?\tJSP together\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (JSP together, did n?t do anything in, Eclipse) -> JSP together (10625ms)\nWhat is an eclipse?\tfurther deatails\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (further deatails, can be found at, www.eclipse .com .ec) -> further deatails (10398ms)\nWhat is an eclipse?\tThe series\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (The series, will continue to produce, partial eclipses) -> The series (10717ms)\nWhat is an eclipse?\ta new Test Project\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (a new Test Project, Create, a new Eclipse project) -> a new Test Project (10717ms)\nWhat is an eclipse?\ta magazine\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (a magazine, does a cover story on, Eclipse) -> a magazine (10490ms)\nWhat is an eclipse?\tDost?pna jest r?wnie?\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Dost?pna jest r?wnie?, do, Eclipse) -> Dost?pna jest r?wnie? (10525ms)\nWhat is an eclipse?\tCurve IntelliJ\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Curve IntelliJ, does some things differently to, Eclipse) -> Curve IntelliJ (10625ms)\nWhat is an eclipse?\tThe hiccup\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The hiccup, was, Eclipse) -> The hiccup (10576ms)\nWhat is an eclipse?\t2. It\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (2. It, does n?t have, Eclipse IDE) -> 2. It (10791ms)\nWhat is an eclipse?\t4 Lol Balrogan\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (4 Lol Balrogan, did, an eclipse) -> 4 Lol Balrogan (10367ms)\nWhat is an eclipse?\trthentic RTNC\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (rthentic RTNC, Tracks produced, Eclipsed) -> rthentic RTNC (9240ms)\nWhat is an eclipse?\touch # firefox #security #\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (ouch # firefox #security #, Finally found, the eclipse) -> ouch # firefox #security # (10398ms)\nWhat is an eclipse?\tThe Full Moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (The Full Moon, produces, a Total Lunar Eclipse) -> The Full Moon (10508ms)\nWhat is an eclipse?\tTommy Victor\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Tommy Victor, Tracks produced, Entrance of the Eclipse) -> Tommy Victor (10763ms)\nWhat is an eclipse?\tTereza Horska\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Tereza Horska, Films Produced, Solar Eclipse) -> Tereza Horska (10417ms)\nWhat is an eclipse?\ttime\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (time, create, an eclipse) -> time (10672ms)\nWhat is an eclipse?\tthe Sun\t0.111111111111\tWhat is an eclipse? -> $x: (eclipse, have part of, $x) -> (Most eclipses, have only part of, the Sun) -> the Sun (10641ms)\nWhat is an eclipse?\tVoid\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Void, did, I. Eclipse) -> Void (6038ms)\nWhat is an eclipse?\tObservers\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Observers, may find, the Eclipsing Binary Ephemerides) -> Observers (10454ms)\nWhat is an eclipse?\tOctober 3\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (October 3, produces, an annular solar eclipse) -> October 3 (10703ms)\nWhat is an eclipse?\tkeyboardist Jonathan Cain\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (keyboardist Jonathan Cain, recently described, Eclipse) -> keyboardist Jonathan Cain (10672ms)\nWhat is an eclipse?\tMore details\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (More details, can be found at, the Luna Eclipse information page) -> More details (10717ms)\nWhat is an eclipse?\tA TCP connection\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (A TCP connection, is created between, Eclipse IDE) -> A TCP connection (10748ms)\nWhat is an eclipse?\tthe complete archive\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the complete archive, can be found at, the Eclipse website) -> the complete archive (10732ms)\nWhat is an eclipse?\tAnne Keefe\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Anne Keefe, created, EclipseSpa) -> Anne Keefe (10472ms)\nWhat is an eclipse?\tThe pounding sun\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (The pounding sun, creates, an eclipse) -> The pounding sun (4010ms)\nWhat is an eclipse?\tthe server entry\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the server entry, has been created in, the Eclipse Servers view) -> the server entry (5989ms)\nWhat is an eclipse?\tRebecca O'Flanagan\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Rebecca O'Flanagan, Films Executive Produced, The Eclipse) -> Rebecca O'Flanagan (10367ms)\nWhat is an eclipse?\tthe Moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the Moon, produces, an annular eclipse) -> the Moon (10559ms)\nWhat is an eclipse?\tA good example of how I like to see\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (A good example of how I like to see, is, Eclipse) -> A good example of how I like to see (10490ms)\nWhat is an eclipse?\tprediction\t0.111111111111\tWhat is an eclipse? -> $x: (eclipse, have part of, $x) -> (Eclipses, have been a part of, prediction) -> prediction (4010ms)\nWhat is an eclipse?\tthe front runners\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the front runners, is, Eclipse) -> the front runners (10525ms)\nWhat is an eclipse?\tmitsubishi\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (mitsubishi, is an agent that has something to do with the item, Eclipse) -> mitsubishi (10417ms)\nWhat is an eclipse?\tHolmes\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (Holmes, represents, the eclipse) -> Holmes (10656ms)\nWhat is an eclipse?\tthe movies\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the movies, was, Eclipse) -> the movies (10472ms)\nWhat is an eclipse?\ta physical OpenFlow switch\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (a physical OpenFlow switch, Creating the project in, Eclipse) -> a physical OpenFlow switch (10763ms)\nWhat is an eclipse?\ta developer\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (a developer, does n?t like, Eclipse) -> a developer (9240ms)\nWhat is an eclipse?\tthe character\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the character, can create, a limited eclipse) -> the character (10454ms)\nWhat is an eclipse?\tthe Museo\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the Museo, do, Eclipse) -> the Museo (10625ms)\nWhat is an eclipse?\teclipse expeditions\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (eclipse expeditions, can create, custom eclipse maps) -> eclipse expeditions (10592ms)\nWhat is an eclipse?\tpastry chef Clair Robberson\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (pastry chef Clair Robberson, does at, Eclipse) -> pastry chef Clair Robberson (10454ms)\nWhat is an eclipse?\tthe Full Moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the Full Moon, produced, a Partial Lunar Eclipse) -> the Full Moon (10592ms)\nWhat is an eclipse?\t?Open Declaration ?\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (?Open Declaration ?, are found in, Eclipse) -> ?Open Declaration ? (10508ms)\nWhat is an eclipse?\tnot every full moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (not every full moon, produces, an eclipse) -> not every full moon (10703ms)\nWhat is an eclipse?\tthe CDT\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the CDT, can be found at, www.eclipse) -> the CDT (10732ms)\nWhat is an eclipse?\tthe reader\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the reader, will find the key texts of, these long-eclipsed) -> the reader (10436ms)\nWhat is an eclipse?\tthe passage\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (the passage, describe the phases of, the Moon and Eclipses) -> the passage (10717ms)\nWhat is an eclipse?\tFREE\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (FREE, Find out more at, Eclipse) -> FREE (10436ms)\nWhat is an eclipse?\tApproval\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Approval, can be found on, all new Eclipse products) -> Approval (10576ms)\nWhat is an eclipse?\tuseful features\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (useful features, are described on, an Eclipse) -> useful features (10688ms)\nWhat is an eclipse?\tjust\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen to, eclipse) -> (just, so happens to also coincide with, November?s solar eclipse) -> just (10791ms)\nWhat is an eclipse?\tsounds Windfall\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (sounds Windfall, is, Eclipse) -> sounds Windfall (10672ms)\nWhat is an eclipse?\ta project\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (a project, Create a general project in, Eclipse) -> a project (10625ms)\nWhat is an eclipse?\tseveral convenient ways\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (several convenient ways, create, new Eclipse project source code) -> several convenient ways (10777ms)\nWhat is an eclipse?\tthe Saros eclipse interval\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the Saros eclipse interval, produces, similar eclipses) -> the Saros eclipse interval (10417ms)\nWhat is an eclipse?\ta lunation\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (a lunation, creates, eclipses) -> a lunation (10417ms)\nWhat is an eclipse?\tgraphics\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (graphics, are found on, our eclipse logos page) -> graphics (10609ms)\nWhat is an eclipse?\tKrystyna Doktorowicz\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Krystyna Doktorowicz, Films Produced, Eclipse) -> Krystyna Doktorowicz (6038ms)\nWhat is an eclipse?\tMore information\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (More information, can be found at, www.eclipse) -> More information (2811ms)\nWhat is an eclipse?\tGottfried Koch\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Gottfried Koch, Tracks produced, The Fall Into Eclipse) -> Gottfried Koch (10525ms)\nWhat is an eclipse?\tThe new moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (The new moon, produces, a total solar eclipse) -> The new moon (10732ms)\nWhat is an eclipse?\tBeloit College\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (Beloit College, described his school?s usage of, Eclipse) -> Beloit College (7886ms)\nWhat is an eclipse?\tNorth America\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (North America, will find, the eclipse) -> North America (7086ms)\nWhat is an eclipse?\tThe resulting film\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The resulting film, was, ?ECLIPSE) -> The resulting film (10367ms)\nWhat is an eclipse?\tMinagen X3\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Minagen X3, can be found in, the Eclipse base) -> Minagen X3 (10472ms)\nWhat is an eclipse?\tNov 11 2009 Technorati Tags\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Nov 11 2009 Technorati Tags, create, project , eclipse) -> Nov 11 2009 Technorati Tags (10717ms)\nWhat is an eclipse?\tthe Southern Hemisphere\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the Southern Hemisphere, produces, an eclipse) -> the Southern Hemisphere (3497ms)\nWhat is an eclipse?\tSWT\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (SWT, does n?t integrate naturally with, Eclipse) -> SWT (10687ms)\nWhat is an eclipse?\ta more difficult question\t0.111111111111\tWhat is an eclipse? -> $x: ($x, exactly be, eclipse) -> (a more difficult question, exactly is, Eclipse) -> a more difficult question (3497ms)\nWhat is an eclipse?\tCannot\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Cannot, Find, Eclipse Weapon) -> Cannot (5989ms)\nWhat is an eclipse?\tDIS\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (DIS, IS, ECLIPSE) -> DIS (10490ms)\nWhat is an eclipse?\tJul 22\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (Jul 22, is, Eclipse) -> Jul 22 (10576ms)\nWhat is an eclipse?\tGMF\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (GMF, are rarely found on, Eclipse 3.1 installation) -> GMF (7886ms)\nWhat is an eclipse?\tsunspot 1402\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (sunspot 1402, produced, a partially-eclipsed flare) -> sunspot 1402 (10609ms)\nWhat is an eclipse?\tthe same Saros family\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the same Saros family, produced, the great lunar eclipse) -> the same Saros family (10525ms)\nWhat is an eclipse?\tThe following text\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (The following text, describes, the Total Lunar Eclipse) -> The following text (10656ms)\nWhat is an eclipse?\tthe Eclipse community\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the Eclipse community, will do the same for, Eclipse) -> the Eclipse community (10777ms)\nWhat is an eclipse?\ta question\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (a question, find a discussion about, your Eclipse) -> a question (10748ms)\nWhat is an eclipse?\tHudson\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Hudson, works well for doing, Eclipse) -> Hudson (10672ms)\nWhat is an eclipse?\ta true code-editor\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (a true code-editor, is, Eclipse) -> a true code-editor (4010ms)\nWhat is an eclipse?\teclipse -type d`\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (eclipse -type d`, Then create, an eclipse executable) -> eclipse -type d` (10525ms)\nWhat is an eclipse?\tAmber\t0.111111111111\tWhat is an eclipse? -> $x: ($x, discover, eclipse) -> (Amber, discovered a mysterious letter in, Eclipse) -> Amber (10398ms)\nWhat is an eclipse?\tVenus\t0.111111111111\tWhat is an eclipse? -> $x: ($x, exactly be, eclipse) -> (Venus, was also exactly on, the August 11 eclipse-point) -> Venus (10641ms)\nWhat is an eclipse?\tthe library\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the library, can be found in, the org .eclipse .equinox) -> the library (10703ms)\nWhat is an eclipse?\tRakesh Chaudhary\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Rakesh Chaudhary, Films Produced, The Eclipse of Taregna) -> Rakesh Chaudhary (10609ms)\nWhat is an eclipse?\tJan Krause\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Jan Krause, Tracks produced, Eclipse) -> Jan Krause (7086ms)\nWhat is an eclipse?\ta new system\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (a new system, is, Eclipse) -> a new system (10592ms)\nWhat is an eclipse?\tScreen\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Screen, Saver created using, Active Media Eclipse) -> Screen (10333ms)\nWhat is an eclipse?\tinnovation\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen to, eclipse) -> (innovation, continues to happen in, the Eclipse ecosystem) -> innovation (10688ms)\nWhat is an eclipse?\tPulsar\t0.111111111111\tWhat is an eclipse? -> $x: ($x, define, eclipse) -> (Pulsar, will define a common set of, Eclipse-based tools) -> Pulsar (10417ms)\nWhat is an eclipse?\tEmmett\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Emmett, will continue to do so in, Eclipse) -> Emmett (10559ms)\nWhat is an eclipse?\tJon Kelly\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Jon Kelly, Tracks produced, Masculine Eclipse) -> Jon Kelly (10641ms)\nWhat is an eclipse?\tBarbara Buchholz\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Barbara Buchholz, Tracks produced, Eclipse) -> Barbara Buchholz (10717ms)\nWhat is an eclipse?\tThe Bush speech\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (The Bush speech, represents neither, the eclipse) -> The Bush speech (10703ms)\nWhat is an eclipse?\tthe IDE\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the IDE, is, Eclipse) -> the IDE (10656ms)\nWhat is an eclipse?\tIDE integration\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (IDE integration, Create, an IDEA or Eclipse project files) -> IDE integration (4010ms)\nWhat is an eclipse?\tMullaney\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Mullaney, produced at, Eclipse Comics) -> Mullaney (10641ms)\nWhat is an eclipse?\ta reasonably large figure\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (a reasonably large figure, produced, a dark eclipse) -> a reasonably large figure (3497ms)\nWhat is an eclipse?\tMark\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Mark, also found, two solar eclipses) -> Mark (10791ms)\nWhat is an eclipse?\tSecond\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (Second, is, Eclipse) -> Second (10592ms)\nWhat is an eclipse?\tAn Eclipse project\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (An Eclipse project, is created within, the Eclipse workspace) -> An Eclipse project (10367ms)\nWhat is an eclipse?\ta side note\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (a side note, does, the eclipsed moon look) -> a side note (10656ms)\nWhat is an eclipse?\tGreg Mooradian\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Greg Mooradian, Films Produced, Eclipse) -> Greg Mooradian (10656ms)\nWhat is an eclipse?\tthe program\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (the program, was described as, the best-attended Eclipse Day) -> the program (10454ms)\nWhat is an eclipse?\tA quick check\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (A quick check, finds, Mercurial Eclipse) -> A quick check (10333ms)\nWhat is an eclipse?\tCoolChaser\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (CoolChaser, Create, your own 1995 Mitsubishi Eclipse layouts) -> CoolChaser (10748ms)\nWhat is an eclipse?\tStalin\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (Stalin, represents, the eclipse) -> Stalin (10609ms)\nWhat is an eclipse?\tThe Quick Access menu\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (The Quick Access menu, find anything in, Eclipse) -> The Quick Access menu (10748ms)\nWhat is an eclipse?\tthe first Israeli\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (the first Israeli, represent, the eclipse) -> the first Israeli (10576ms)\nWhat is an eclipse?\tbirds\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen to, eclipse) -> (birds, just happens to coincide with, a Total Solar Eclipse) -> birds (10454ms)\nWhat is an eclipse?\tPlanning\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Planning, was done in, Eclipse) -> Planning (10641ms)\nWhat is an eclipse?\tthe Earth\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the Earth, produces, a Solar eclipse) -> the Earth (10791ms)\nWhat is an eclipse?\tNASA\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (NASA, has conveniently created, the lunar eclipse) -> NASA (10508ms)\nWhat is an eclipse?\tA good , free , open source option\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (A good , free , open source option, is, Eclipse) -> A good , free , open source option (10508ms)\nWhat is an eclipse?\tSteve Mattson\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Steve Mattson, had done some work for, Eclipse Comics) -> Steve Mattson (10417ms)\nWhat is an eclipse?\tMaven Eclipse-Plugin Plugin\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Maven Eclipse-Plugin Plugin, creates, Eclipse plugins) -> Maven Eclipse-Plugin Plugin (10672ms)\nWhat is an eclipse?\tthe CRC file\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the CRC file, is done according to, Eclipse standard) -> the CRC file (10472ms)\nWhat is an eclipse?\ta historian/essayist\t0.111111111111\tWhat is an eclipse? -> $x: ($x, invent, eclipse) -> (a historian/essayist, invented, an eclipse) -> a historian/essayist (10490ms)\nWhat is an eclipse?\ta New Moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (a New Moon, creates, a solar eclipse) -> a New Moon (10436ms)\nWhat is an eclipse?\tstephanie meyer\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (stephanie meyer, created, Eclipse) -> stephanie meyer (10454ms)\nWhat is an eclipse?\tDave\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Dave, do for, free eclipses) -> Dave (10625ms)\nWhat is an eclipse?\tWe?d\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (We?d, do, the Eclipse festival) -> We?d (10542ms)\nWhat is an eclipse?\tStep\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Step, create, the Eclipse Project files) -> Step (4010ms)\nWhat is an eclipse?\tfeatures\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (features, find their way into, Eclipse) -> features (10436ms)\nWhat is an eclipse?\tSummit\t0.111111111111\tWhat is an eclipse? -> $x: ($x, re, eclipse) -> (Summit, is re-releasing, Eclipse) -> Summit (10672ms)\nWhat is an eclipse?\tSaros 130\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Saros 130, continues to produce, total eclipses) -> Saros 130 (10592ms)\nWhat is an eclipse?\tThe integrated environment\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The integrated environment, is, Eclipse) -> The integrated environment (10417ms)\nWhat is an eclipse?\tHand\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (Hand, described in, doc/coding/eclipse) -> Hand (9745ms)\nWhat is an eclipse?\tmobile platforms\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (mobile platforms, represents, the eclipse) -> mobile platforms (10576ms)\nWhat is an eclipse?\tThe image\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (The image, was created from, an eclipse image) -> The image (10763ms)\nWhat is an eclipse?\tjava and\t0.111111111111\tWhat is an eclipse? -> $x: ($x, discover, eclipse) -> (java and, recently discovered, eclipse) -> java and (10608ms)\nWhat is an eclipse?\ta Java developer\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (a Java developer, was involved in creating, an Eclipse Plugin) -> a Java developer (10777ms)\nWhat is an eclipse?\tSally H. Moritz\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Sally H. Moritz, has created a version of, Eclipse) -> Sally H. Moritz (10703ms)\nWhat is an eclipse?\ta racer\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (a racer, was, Eclipse) -> a racer (10559ms)\nWhat is an eclipse?\tthe big ones\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the big ones, were, Eclipse) -> the big ones (9745ms)\nWhat is an eclipse?\tProp\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Prop, created for, Eclipse) -> Prop (10417ms)\nWhat is an eclipse?\tWychwood Brewery\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Wychwood Brewery, Beers Produced, Wychwood Solar Eclipse) -> Wychwood Brewery (10748ms)\nWhat is an eclipse?\tthe 8.5hp kohler\t0.111111111111\tWhat is an eclipse? -> $x: ($x, equal, eclipse) -> (the 8.5hp kohler, was about equal with, my eclipse) -> the 8.5hp kohler (10763ms)\nWhat is an eclipse?\tsuch an architecture\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (such an architecture, is, Eclipse) -> such an architecture (10525ms)\nWhat is an eclipse?\tThe picture\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (The picture, represents, an eclipse) -> The picture (10687ms)\nWhat is an eclipse?\tthe Linux IDE\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the Linux IDE, is, Eclipse) -> the Linux IDE (4010ms)\nWhat is an eclipse?\tmen\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (men, had nothing to do with, eclipses) -> men (10592ms)\nWhat is an eclipse?\tusers\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (users, can find, m2eclipse) -> users (10472ms)\nWhat is an eclipse?\tEmperor\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Emperor, Releases produced, In the Nightside Eclipse) -> Emperor (10703ms)\nWhat is an eclipse?\tdevelopers\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen to, eclipse) -> (developers, happen to, use eclipse) -> developers (10763ms)\nWhat is an eclipse?\tmidnight\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (midnight, is, Eclipse) -> midnight (10490ms)\nWhat is an eclipse?\tthe solar system\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the solar system, produces, perfect solar eclipses) -> the solar system (10542ms)\nWhat is an eclipse?\tthe seller\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the seller, find, other Mitsubishi Eclipse vehicles) -> the seller (10609ms)\nWhat is an eclipse?\tOnce the project\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Once the project, is created in, your Eclipse workspace) -> Once the project (10777ms)\nWhat is an eclipse?\tP4\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (P4, represent each phase of, the eclipse) -> P4 (10791ms)\nWhat is an eclipse?\tMay 4\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (May 4, produces, a Total Lunar Eclipse) -> May 4 (9745ms)\nWhat is an eclipse?\tPink Floyd\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Pink Floyd, Tracks produced, Eclipse) -> Pink Floyd (10777ms)\nWhat is an eclipse?\tI?ve\t0.111111111111\tWhat is an eclipse? -> $x: ($x, re, eclipse) -> (I?ve, also re-read, Eclipse) -> I?ve (10688ms)\nWhat is an eclipse?\tthe structure IBM\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the structure IBM, created for, Eclipse .org) -> the structure IBM (10508ms)\nWhat is an eclipse?\tThe second complaint\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (The second complaint, has to do with, Eclipse) -> The second complaint (10559ms)\nWhat is an eclipse?\tthe project\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the project, created in, Eclipse) -> the project (10687ms)\nWhat is an eclipse?\tIDEs\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (IDEs, are, Eclipse) -> IDEs (10436ms)\nWhat is an eclipse?\tWolfram Tichy\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Wolfram Tichy, Films Executive Produced, Eclipse) -> Wolfram Tichy (10436ms)\nWhat is an eclipse?\tgroovy\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (groovy, does, Groovy-Eclipse use) -> groovy (10703ms)\nWhat is an eclipse?\tthe local dogs\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the local dogs, did during, the eclipse) -> the local dogs (10525ms)\nWhat is an eclipse?\tThe goal\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (The goal, are doing with, Eclipse) -> The goal (10672ms)\nWhat is an eclipse?\tThe magnolia blooms\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (The magnolia blooms, have nothing to do with, eclipses) -> The magnolia blooms (10609ms)\nWhat is an eclipse?\tthe next book\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the next book, is, Eclipse) -> the next book (10672ms)\nWhat is an eclipse?\tJava developers\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Java developers, would do with, Eclipse) -> Java developers (10777ms)\nWhat is an eclipse?\tthe New & Noteworthy stuff\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the New & Noteworthy stuff, found on, the Eclipse site) -> the New & Noteworthy stuff (7086ms)\nWhat is an eclipse?\tthe tools\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the tools, are, Eclipse) -> the tools (10625ms)\nWhat is an eclipse?\tthe standard environment\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the standard environment, is, eclipse) -> the standard environment (10398ms)\nWhat is an eclipse?\tthe same people\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the same people, created, MyEclipse) -> the same people (10490ms)\nWhat is an eclipse?\tVMWare\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (VMWare, can be found at, RTEMS Eclipse Plug-in) -> VMWare (7886ms)\nWhat is an eclipse?\tJuly 7\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (July 7, produces, a penumbral lunar eclipse) -> July 7 (3497ms)\nWhat is an eclipse?\tDerby\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Derby, does, the eclipse plugin) -> Derby (10333ms)\nWhat is an eclipse?\tEMF\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (EMF, is a powerful framework for creating, Eclipse plugins) -> EMF (10490ms)\nWhat is an eclipse?\tI'M ALMOST\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (I'M ALMOST, DONE WITH, ECLIPSE !) -> I'M ALMOST (10791ms)\nWhat is an eclipse?\tJeff Wood\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (Jeff Wood, described watching, the December 2010 lunar eclipse) -> Jeff Wood (7086ms)\nWhat is an eclipse?\trare autographs\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (rare autographs, can only be found in, Press Pass Eclipse 2004) -> rare autographs (10592ms)\nWhat is an eclipse?\tChristofer Johnsson\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Christofer Johnsson, Tracks produced, The Fall Into Eclipse) -> Christofer Johnsson (10717ms)\nWhat is an eclipse?\ta 40 cm aperture\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (a 40 cm aperture, will produce large images of, the eclipse) -> a 40 cm aperture (10398ms)\nWhat is an eclipse?\tstephenie meyer\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (stephenie meyer, created, Eclipse) -> stephenie meyer (10367ms)\nWhat is an eclipse?\tFeb 6-7\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Feb 6-7, produces, an Annular Solar Eclipse) -> Feb 6-7 (10592ms)\nWhat is an eclipse?\tEclipse\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Eclipse, did, Veryant customize Eclipse) -> Eclipse (10609ms)\nWhat is an eclipse?\tPaul Heaton\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Paul Heaton, Tracks produced, Masculine Eclipse) -> Paul Heaton (10525ms)\nWhat is an eclipse?\tthe station\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen to, eclipse) -> (the station, happens so very close to, the Lunar Eclipse) -> the station (10763ms)\nWhat is an eclipse?\tCassini\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Cassini, created, a second eclipse map) -> Cassini (10454ms)\nWhat is an eclipse?\tThe one on the left\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The one on the left, is, Eclipse) -> The one on the left (10559ms)\nWhat is an eclipse?\t427\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (427, Tracks produced, Frustration (feat. Eclipse 427)) -> 427 (7886ms)\nWhat is an eclipse?\tToday?s highest scoring word\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (Today?s highest scoring word, is, ECLIPSE) -> Today?s highest scoring word (5989ms)\nWhat is an eclipse?\tthe shadow of the Earth\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the shadow of the Earth, produces, the lunar eclipse) -> the shadow of the Earth (3497ms)\nWhat is an eclipse?\tthe head\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the head, find, Eclipse .project) -> the head (10656ms)\nWhat is an eclipse?\tTim Summerhayes\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Tim Summerhayes, Tracks produced, Total Eclipse) -> Tim Summerhayes (10592ms)\nWhat is an eclipse?\tPoil\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (Poil, was, Eclipses) -> Poil (10472ms)\nWhat is an eclipse?\tthe Linux version\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the Linux version, found at, Eclipse) -> the Linux version (10609ms)\nWhat is an eclipse?\tlunar eclipses\t0.111111111111\tWhat is an eclipse? -> $x: ($x, exactly be, eclipse) -> (lunar eclipses, are exactly the same as, solar eclipses) -> lunar eclipses (7086ms)\nWhat is an eclipse?\tmerges\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (merges, can be done from within, Eclipse) -> merges (9745ms)\nWhat is an eclipse?\tthe following settings\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the following settings, can be found in, Eclipse) -> the following settings (10398ms)\nWhat is an eclipse?\tLuna\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Luna, can create, an eclipse) -> Luna (10559ms)\nWhat is an eclipse?\teclipses\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (eclipses, can be found on, the NASA Eclipse Home Page) -> eclipses (10734ms)\nWhat is an eclipse?\tRobert Hakim\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Robert Hakim, Films Produced, Eclipse) -> Robert Hakim (10609ms)\nWhat is an eclipse?\tMark Morgan\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Mark Morgan, Films Executive Produced, Eclipse) -> Mark Morgan (10732ms)\nWhat is an eclipse?\tThe throne\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (The throne, would describe, an eclipse) -> The throne (10656ms)\nWhat is an eclipse?\tpoor food\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (poor food, is, Eclipse) -> poor food (10592ms)\nWhat is an eclipse?\tthe tutorials\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the tutorials, is, Eclipse) -> the tutorials (10777ms)\nWhat is an eclipse?\tPaddy McDonald\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Paddy McDonald, Films Executive Produced, The Eclipse) -> Paddy McDonald (10732ms)\nWhat is an eclipse?\tDuncan Forbes\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Duncan Forbes, Tracks produced, Eclipse (Butch remix)) -> Duncan Forbes (10592ms)\nWhat is an eclipse?\tDecember 10\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (December 10, produces, a Total Lunar Eclipse) -> December 10 (10472ms)\nWhat is an eclipse?\tThe tale\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (The tale, is thought also to describe, a solar eclipse) -> The tale (10763ms)\nWhat is an eclipse?\ttwo Java projects\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (two Java projects, were created in, Eclipse) -> two Java projects (10732ms)\nWhat is an eclipse?\tthe ECJ\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (the ECJ, represents, Eclipse) -> the ECJ (6038ms)\nWhat is an eclipse?\tMorgan Stanley\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Morgan Stanley, are doing with, Eclipse) -> Morgan Stanley (10748ms)\nWhat is an eclipse?\tback 50 years\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (back 50 years, found this list of, Total Solar Eclipses) -> back 50 years (10542ms)\nWhat is an eclipse?\tadditional packages\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (additional packages, described on, the Eclipse Classic page) -> additional packages (10672ms)\nWhat is an eclipse?\tMore and more vendors\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (More and more vendors, are creating, Eclipse plugins) -> More and more vendors (10490ms)\nWhat is an eclipse?\tthe government\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the government, found out about, Eclipse) -> the government (10732ms)\nWhat is an eclipse?\tDavid\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (David, is created by, the eclipse) -> David (10656ms)\nWhat is an eclipse?\tApril 19\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (April 19, produces, a Partial Solar Eclipse) -> April 19 (10508ms)\nWhat is an eclipse?\tthe Evolvis Webservice\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the Evolvis Webservice, were created with, the Eclipse Web tools) -> the Evolvis Webservice (10436ms)\nWhat is an eclipse?\tDo\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen to, eclipse) -> (Do, is going to happen with, Eclipse project) -> Do (10490ms)\nWhat is an eclipse?\tnight\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (night, produces the effect of, an eclipse) -> night (10333ms)\nWhat is an eclipse?\tpoint\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (point, is, Eclipse) -> point (7086ms)\nWhat is an eclipse?\tEirik Hundvin\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Eirik Hundvin, Releases produced, In the Nightside Eclipse) -> Eirik Hundvin (10542ms)\nWhat is an eclipse?\tTasktop Technologies\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Tasktop Technologies, created, the Eclipse Mylyn integrations) -> Tasktop Technologies (10525ms)\nWhat is an eclipse?\tfaces-config .xml\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (faces-config .xml, is created by, Eclipse JSF tools) -> faces-config .xml (10592ms)\nWhat is an eclipse?\tCalifornia\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (California, did see, the eclipse) -> California (10609ms)\nWhat is an eclipse?\tJupiter\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Jupiter, produce, total eclipses) -> Jupiter (10777ms)\nWhat is an eclipse?\tthe institutions\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the institutions, are doing similar things with, Eclipse) -> the institutions (10542ms)\nWhat is an eclipse?\tThe Moon?s penumbral shadow\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (The Moon?s penumbral shadow, produces, a partial eclipse visible) -> The Moon?s penumbral shadow (10688ms)\nWhat is an eclipse?\tThe IDE I?ll use\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The IDE I?ll use, is, Eclipse) -> The IDE I?ll use (10542ms)\nWhat is an eclipse?\tFirst\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (First, is, Eclipse) -> First (4010ms)\nWhat is an eclipse?\tintegrated support\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (integrated support, does, MyEclipse) -> integrated support (10732ms)\nWhat is an eclipse?\tWilliam\t0.111111111111\tWhat is an eclipse? -> $x: ($x, exactly be, eclipse) -> (William, is born exactly on, an eclipse) -> William (10454ms)\nWhat is an eclipse?\tlast month?s full moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (last month?s full moon, produced, a total lunar eclipse visible) -> last month?s full moon (10732ms)\nWhat is an eclipse?\tThe bent strip\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (The bent strip, possibly represents, a solar eclipse) -> The bent strip (10656ms)\nWhat is an eclipse?\tKlas ?hlund\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Klas ?hlund, Tracks produced, Eclipse) -> Klas ?hlund (10732ms)\nWhat is an eclipse?\tten articles\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (ten articles, describes a wide variety of, historical eclipses) -> ten articles (10472ms)\nWhat is an eclipse?\tSourceForge ?\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (SourceForge ?, do a search for, ?Eclipse Plugin?) -> SourceForge ? (10398ms)\nWhat is an eclipse?\tBrasil\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Brasil, will create, a lunar eclipse) -> Brasil (10718ms)\nWhat is an eclipse?\ta prominent dark eyeline\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (a prominent dark eyeline, does, the eclipse male) -> a prominent dark eyeline (10763ms)\nWhat is an eclipse?\tRaymond Hakim\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Raymond Hakim, Films Produced, Eclipse) -> Raymond Hakim (3497ms)\nWhat is an eclipse?\tDiana Wilson\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Diana Wilson, Films Produced, Eclipse Predictions) -> Diana Wilson (10703ms)\nWhat is an eclipse?\tCTRL-SHIFT-F\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (CTRL-SHIFT-F, does the same in, Eclipse) -> CTRL-SHIFT-F (10609ms)\nWhat is an eclipse?\tthe work\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the work, to do at, Eclipse) -> the work (10576ms)\nWhat is an eclipse?\tfiles\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (files, found in, the eclipse subfolder) -> files (10490ms)\nWhat is an eclipse?\tRobert Walpole\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Robert Walpole, Films Produced, The Eclipse) -> Robert Walpole (10436ms)\nWhat is an eclipse?\tthe dark Moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the dark Moon, created, a partial eclipse) -> the dark Moon (10672ms)\nWhat is an eclipse?\tthe Eclipse Public License\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the Eclipse Public License, does, the Eclipse Foundation use) -> the Eclipse Public License (10717ms)\nWhat is an eclipse?\tthe not-for-profit category\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the not-for-profit category, is, Eclipse) -> the not-for-profit category (10576ms)\nWhat is an eclipse?\tthe most stunning success stories\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the most stunning success stories, is, Eclipse) -> the most stunning success stories (10748ms)\nWhat is an eclipse?\tthe many capabilities\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the many capabilities, found in, MyEclipse) -> the many capabilities (10592ms)\nWhat is an eclipse?\tthe third one\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the third one, is, EClipse) -> the third one (10688ms)\nWhat is an eclipse?\tPart 2 2.\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Part 2 2., Create, an Eclipse project) -> Part 2 2. (10748ms)\nWhat is an eclipse?\ta handy feature\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (a handy feature, found in, Eclipse) -> a handy feature (10508ms)\nWhat is an eclipse?\tthe translations\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the translations, can be found in, the book Historical Eclipses) -> the translations (10641ms)\nWhat is an eclipse?\tSaros 124\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Saros 124, will continue to produce, partial eclipses) -> Saros 124 (10436ms)\nWhat is an eclipse?\tThe drawing\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (The drawing, represents, a solar eclipse) -> The drawing (7886ms)\nWhat is an eclipse?\tJava programming\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Java programming, has been done in, Eclipse) -> Java programming (10777ms)\nWhat is an eclipse?\tjmc excel\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (jmc excel, failed to create, java virtual machine eclipse) -> jmc excel (10454ms)\nWhat is an eclipse?\tQuestion\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Question, does, a solar eclipse move) -> Question (10791ms)\nWhat is an eclipse?\tEclipse PDE\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (Eclipse PDE, can be found in, the Eclipse cvs) -> Eclipse PDE (10436ms)\nWhat is an eclipse?\tequinox\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (equinox, does bring a season of, eclipses) -> equinox (10559ms)\nWhat is an eclipse?\tThe first picture\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (The first picture, represents, solar eclipse) -> The first picture (10748ms)\nWhat is an eclipse?\tThe lower back\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (The lower back, represents, an eclipse) -> The lower back (10763ms)\nWhat is an eclipse?\tthe series\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the series, to produce, total eclipses) -> the series (10703ms)\nWhat is an eclipse?\tthe possibilities\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the possibilities, create, an eclipse plug-in) -> the possibilities (9745ms)\nWhat is an eclipse?\tAn other Subversion aware IDE\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (An other Subversion aware IDE, is, Eclipse) -> An other Subversion aware IDE (10777ms)\nWhat is an eclipse?\tInstalling Postgres\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Installing Postgres, did n?t go nearly as smoothly as, Eclipse) -> Installing Postgres (10672ms)\nWhat is an eclipse?\tA damn good score\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (A damn good score, will be doing the musical score for, Eclipse) -> A damn good score (10525ms)\nWhat is an eclipse?\tJohn Weigand\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (John Weigand, created, the Eclipse Series) -> John Weigand (10703ms)\nWhat is an eclipse?\tlarger wheels\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (larger wheels, creates, Eclipse GS) -> larger wheels (10576ms)\nWhat is an eclipse?\tThe two shades\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (The two shades, create, an eclipse-like effect) -> The two shades (10717ms)\nWhat is an eclipse?\tan Update Site\t0.111111111111\tWhat is an eclipse? -> $x: ($x, define, eclipse) -> (an Update Site, defined in, the EasyEclipse distros) -> an Update Site (10641ms)\nWhat is an eclipse?\tCamelia Frieberg\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Camelia Frieberg, Films Produced, Eclipse) -> Camelia Frieberg (10688ms)\nWhat is an eclipse?\tapplications development\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (applications development, is done in, eclipse) -> applications development (10576ms)\nWhat is an eclipse?\tIndia\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (India, found, the eclipsed Sun) -> India (10687ms)\nWhat is an eclipse?\tNujabes\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Nujabes, Tracks produced, Eclipse) -> Nujabes (10625ms)\nWhat is an eclipse?\tthe Miracleman name\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the Miracleman name, was created by, Eclipse Comics) -> the Miracleman name (10609ms)\nWhat is an eclipse?\tthe term eclipse\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (the term eclipse, is used for describing, the solar eclipse) -> the term eclipse (10542ms)\nWhat is an eclipse?\tthe new solutions people\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the new solutions people, are finding on, Eclipse Marketplace) -> the new solutions people (7086ms)\nWhat is an eclipse?\tthe eclipse\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the eclipse, can be found at, the NASA Solar Eclipses page) -> the eclipse (10525ms)\nWhat is an eclipse?\tPolarsys\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Polarsys, was created at, the Eclipse Foundation) -> Polarsys (5989ms)\nWhat is an eclipse?\tremote debugging\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (remote debugging, can be found at, RTEMS Eclipse Plug-in) -> remote debugging (10763ms)\nWhat is an eclipse?\tP. Bencze\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (P. Bencze, Did, the solar eclipse) -> P. Bencze (10454ms)\nWhat is an eclipse?\tan old series\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (an old series, produced, its last central eclipse) -> an old series (10748ms)\nWhat is an eclipse?\tthe Eclipse and OSGi news\t0.111111111111\tWhat is an eclipse? -> $x: ($x, happen at, eclipse) -> (the Eclipse and OSGi news, is happening at, EclipseCon) -> the Eclipse and OSGi news (7886ms)\nWhat is an eclipse?\tMicrosoft\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Microsoft, is creating, Eclipse plug-ins) -> Microsoft (10417ms)\nWhat is an eclipse?\tthe Northern Hemisphere\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the Northern Hemisphere, produces, an eclipse) -> the Northern Hemisphere (10641ms)\nWhat is an eclipse?\ta good free tool\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (a good free tool, is, Eclipse) -> a good free tool (10777ms)\nWhat is an eclipse?\tconst double*\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (const double*, creates, an ECLiPSe array) -> const double* (10472ms)\nWhat is an eclipse?\tnew developers\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (new developers, continue to find, Eclipse) -> new developers (10367ms)\nWhat is an eclipse?\tRed Flag\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Red Flag, Tracks produced, Electric Eclipse (Tranqua remix)) -> Red Flag (10732ms)\nWhat is an eclipse?\tInstaller\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Installer, creates, Eclipse project files) -> Installer (10688ms)\nWhat is an eclipse?\tthe sister class\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the sister class, Create, a branded Eclipse IDE) -> the sister class (10576ms)\nWhat is an eclipse?\tStep 2\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Step 2, create, Eclipse project) -> Step 2 (10656ms)\nWhat is an eclipse?\tprofiteering\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (profiteering, did lead to, the eclipse) -> profiteering (10608ms)\nWhat is an eclipse?\tthe groups\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (the groups, represent, the next two total eclipses) -> the groups (10625ms)\nWhat is an eclipse?\tV?t Klus?k\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (V?t Klus?k, Films Produced, Solar Eclipse) -> V?t Klus?k (10576ms)\nWhat is an eclipse?\tThe learner\t0.111111111111\tWhat is an eclipse? -> $x: ($x, describe, eclipse) -> (The learner, will be able to describe, solar and lunar eclipses) -> The learner (10398ms)\nWhat is an eclipse?\texperienced Spring users\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (experienced Spring users, will find, MyEclipse) -> experienced Spring users (4010ms)\nWhat is an eclipse?\tthe do\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (the do, do n'ts on, eclipse day) -> the do (10454ms)\nWhat is an eclipse?\tdbPort project developer\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (dbPort project developer, can find, Eclipse launch file) -> dbPort project developer (10732ms)\nWhat is an eclipse?\tfantastic what people\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (fantastic what people, can do with, Eclipse technology) -> fantastic what people (6038ms)\nWhat is an eclipse?\tthe large heart\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the large heart, found in, Eclipse) -> the large heart (10508ms)\nWhat is an eclipse?\tbrightness maps\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (brightness maps, created from, close observations of eclipses) -> brightness maps (10777ms)\nWhat is an eclipse?\tNew Moon\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (New Moon, was, Eclipse) -> New Moon (10472ms)\nWhat is an eclipse?\tXtext\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Xtext, will create customized, Eclipse editors) -> Xtext (10592ms)\nWhat is an eclipse?\tBartlett?s Childers\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (Bartlett?s Childers, was, Eclipse) -> Bartlett?s Childers (10718ms)\nWhat is an eclipse?\tthe most popular\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the most popular, is, Eclipse) -> the most popular (10508ms)\nWhat is an eclipse?\tthe sky\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the sky, will create, a solar eclipse) -> the sky (10687ms)\nWhat is an eclipse?\tan EJB project\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (an EJB project, would have to be created in, Eclipse) -> an EJB project (10333ms)\nWhat is an eclipse?\tthe only alternative\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (the only alternative, is, Eclipse) -> the only alternative (10576ms)\nWhat is an eclipse?\tDevelopment\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Development, can be done with, Eclipse) -> Development (10398ms)\nWhat is an eclipse?\tThe brackets\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (The brackets, represent the positions of, the two eclipse points) -> The brackets (10436ms)\nWhat is an eclipse?\tthe Update Manager\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the Update Manager, works can be found in, Eclipse) -> the Update Manager (10688ms)\nWhat is an eclipse?\tI?ll\t0.111111111111\tWhat is an eclipse? -> $x: ($x, re, eclipse) -> (I?ll, be re-reading, Eclipse) -> I?ll (5989ms)\nWhat is an eclipse?\tthe akhet sign\t0.111111111111\tWhat is an eclipse? -> $x: ($x, represent, eclipse) -> (the akhet sign, represented, a solar eclipse) -> the akhet sign (10763ms)\nWhat is an eclipse?\tproducts\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (products, has been created around, the Eclipse technology) -> products (10542ms)\nWhat is an eclipse?\tThe next stop\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The next stop, was, eclipse) -> The next stop (10542ms)\nWhat is an eclipse?\tthe fainter component\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the fainter component, was found to be, an eclipsing binary) -> the fainter component (10791ms)\nWhat is an eclipse?\tKyle\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (Kyle, did the presentation in, Eclipse) -> Kyle (10367ms)\nWhat is an eclipse?\tthe Lunar South Node\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (the Lunar South Node, produces, a Total Lunar Eclipse--visible) -> the Lunar South Node (10777ms)\nWhat is an eclipse?\tthe JVM settings\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the JVM settings, Find, Eclipse) -> the JVM settings (10625ms)\nWhat is an eclipse?\tthe crankwalk problem\t0.111111111111\tWhat is an eclipse? -> $x: ($x, found, eclipse) -> (the crankwalk problem, found in, the first gen Eclipse) -> the crankwalk problem (10672ms)\nWhat is an eclipse?\tThe character\t0.111111111111\tWhat is an eclipse? -> $x: ($x, be be, eclipse) -> (The character, is, Eclipse) -> The character (10703ms)\nWhat is an eclipse?\tthe easiest way\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the easiest way, is probably to create, Eclipse make targets) -> the easiest way (10656ms)\nWhat is an eclipse?\tFunctional Prototype\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Functional Prototype, created with, MyEclipse) -> Functional Prototype (10791ms)\nWhat is an eclipse?\tthe Modfactor\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (the Modfactor, can be created in, the Eclipse) -> the Modfactor (6038ms)\nWhat is an eclipse?\treconstruction periods\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (reconstruction periods, produced, an eclipse) -> reconstruction periods (10763ms)\nWhat is an eclipse?\tSasha\t0.111111111111\tWhat is an eclipse? -> $x: ($x, produce, eclipse) -> (Sasha, Tracks produced, Eclipse (Butch remix)) -> Sasha (10791ms)\nWhat is an eclipse?\tThe Eclipse Comet\t0.111111111111\tWhat is an eclipse? -> $x: ($x, discover, eclipse) -> (The Eclipse Comet, is discovered during, a total solar eclipse) -> The Eclipse Comet (10625ms)\nWhat is an eclipse?\tLepido newsgroup\t0.111111111111\tWhat is an eclipse? -> $x: ($x, create, eclipse) -> (Lepido newsgroup, has been created at, Eclipse) -> Lepido newsgroup (10417ms)\nWhat is an eclipse?\tI?m sure he?ll\t0.111111111111\tWhat is an eclipse? -> $x: ($x, do, eclipse) -> (I?m sure he?ll, do a great job with, Eclipse) -> I?m sure he?ll (10625ms)\nWhat is an eclipse?\tthe content type specified here\t0.111111111111\tWhat is an eclipse? -> $x: ($x, define, eclipse) -> (the content type specified here, is defined by, Eclipse) -> the content type specified here (10417ms)\nWhat is an eclipse?\tSun\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Sun, can be an open contributor to, Eclipse) -> Sun (10885ms)\nWhat is an eclipse?\ttests\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (tests, can be run from, Eclipse) -> tests (10865ms)\nWhat is an eclipse?\tages\t-0.0\tWhat is an eclipse? -> $x: ($x, be consider, eclipse) -> (ages, have been considering, eclipses) -> ages (10875ms)\nWhat is an eclipse?\tRahu the Darkener\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Rahu the Darkener, causes, eclipse) -> Rahu the Darkener (10875ms)\nWhat is an eclipse?\tthe build files\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the build files, can be run from within, Eclipse) -> the build files (10875ms)\nWhat is an eclipse?\tLinux\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, can be downloaded for, Linux) -> Linux (10885ms)\nWhat is an eclipse?\tpre-order\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (?Eclipse?, is finally available for, pre-order) -> pre-order (10924ms)\nWhat is an eclipse?\tA package\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (A package, can be generated from, Eclipse) -> A package (10885ms)\nWhat is an eclipse?\tplant structure and maturity\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is uniform for, plant structure and maturity) -> plant structure and maturity (10905ms)\nWhat is an eclipse?\tuse\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is now ready for, use) -> use (10791ms)\nWhat is an eclipse?\tJava but PDT\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is for, Java but PDT) -> Java but PDT (10895ms)\nWhat is an eclipse?\ta major spread\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, have been photographed for, a major spread) -> a major spread (10895ms)\nWhat is an eclipse?\tdarkness\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (darkness, are caused by, the sun?s eclipse) -> darkness (10950ms)\nWhat is an eclipse?\ta stand alone application\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (a stand alone application, can be run within, Eclipse) -> a stand alone application (10885ms)\nWhat is an eclipse?\tGoogle\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Google, can improve, Eclipse) -> Google (10804ms)\nWhat is an eclipse?\tDescribe\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Describe, causes, solar and lunar eclipses) -> Describe (10865ms)\nWhat is an eclipse?\timportant new beginnings\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipses, should be avoided for, important new beginnings) -> important new beginnings (10875ms)\nWhat is an eclipse?\tmajor change\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are the catalyst for, major change) -> major change (10895ms)\nWhat is an eclipse?\ta generated project\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (a generated project, can be opened in, Eclipse) -> a generated project (10914ms)\nWhat is an eclipse?\tchange\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are potent catalysts for, change) -> change (10844ms)\nWhat is an eclipse?\tThe tests\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The tests, can be run via, Eclipse) -> The tests (10933ms)\nWhat is an eclipse?\ttool integration\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is an open platform for, tool integration) -> tool integration (10844ms)\nWhat is an eclipse?\tno IDEs support\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (no IDEs support, can be developed within, Eclipse) -> no IDEs support (10950ms)\nWhat is an eclipse?\tWindows\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is now available for, Windows) -> Windows (10818ms)\nWhat is an eclipse?\tAn image editor\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (An image editor, can be installed separately in, Eclipse) -> An image editor (10942ms)\nWhat is an eclipse?\tThe plug-in\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The plug-in, can also be installed in, Eclipse) -> The plug-in (10942ms)\nWhat is an eclipse?\tFlex Builder\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is the basis for, Flex Builder) -> Flex Builder (10855ms)\nWhat is an eclipse?\tViolet\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Violet, can reside in, Eclipse) -> Violet (10942ms)\nWhat is an eclipse?\tthe clues\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the clues, was causing, these eclipses) -> the clues (10895ms)\nWhat is an eclipse?\tmind\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (mind, can be performed during, eclipse) -> mind (10818ms)\nWhat is an eclipse?\tModels\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Models, can readily be loaded into, Eclipse) -> Models (10831ms)\nWhat is an eclipse?\tprofound change\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are catalysts for, profound change) -> profound change (10950ms)\nWhat is an eclipse?\tWorkbench\t-0.0\tWhat is an eclipse? -> $x: ($x, be term for, eclipse) -> (Workbench, is the term used for, the generic Eclipse) -> Workbench (10895ms)\nWhat is an eclipse?\tScala and Android\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is OK for learning, Scala and Android) -> Scala and Android (10914ms)\nWhat is an eclipse?\ta double system\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (a double system, was causing, an eclipse or occultation) -> a double system (10959ms)\nWhat is an eclipse?\tfree download and works\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, free download and works) -> free download and works (10905ms)\nWhat is an eclipse?\tthe Eclipse IDE\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is a plugin for, the Eclipse IDE) -> the Eclipse IDE (10895ms)\nWhat is an eclipse?\tthe implementation\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was chosen for, the implementation) -> the implementation (10844ms)\nWhat is an eclipse?\tadult programming\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (adult programming, can easily get access to, ECLIPSE) -> adult programming (10924ms)\nWhat is an eclipse?\tShareMedia\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (ShareMedia, can now be installed in, Eclipse) -> ShareMedia (10914ms)\nWhat is an eclipse?\tthe users\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the users, can work on, Eclipse) -> the users (10855ms)\nWhat is an eclipse?\tC++ programming\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is now ready for, C++ programming) -> C++ programming (10933ms)\nWhat is an eclipse?\ta short period\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is for, a short period) -> a short period (10950ms)\nWhat is an eclipse?\tfresh fish\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is known for, fresh fish) -> fresh fish (10855ms)\nWhat is an eclipse?\tthe 2008 Teens\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is a nominee for, the 2008 Teens) -> the 2008 Teens (10875ms)\nWhat is an eclipse?\tbuying stocks\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipses, are bad days for, buying stocks) -> buying stocks (10791ms)\nWhat is an eclipse?\tMS SQL Server\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (MS SQL Server, caused by, Eclipse limitations) -> MS SQL Server (10831ms)\nWhat is an eclipse?\ta lot\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is a host for, a lot) -> a lot (10865ms)\nWhat is an eclipse?\teight tubs\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse?, is up for, eight tubs) -> eight tubs (10905ms)\nWhat is an eclipse?\tsurprises\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are known for, surprises) -> surprises (10942ms)\nWhat is an eclipse?\tStonehenge\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Stonehenge, can be used to predict, eclipses) -> Stonehenge (10895ms)\nWhat is an eclipse?\tthe first time\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is run for, the first time) -> the first time (10914ms)\nWhat is an eclipse?\tCreate Patch Patch files\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Create Patch Patch files, can be easily generated from, Eclipse) -> Create Patch Patch files (10804ms)\nWhat is an eclipse?\tKrishna\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Krishna, causes, a momentary eclipse) -> Krishna (10933ms)\nWhat is an eclipse?\tthe emulator\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the emulator, can be integrated very easily into, Eclipse) -> the emulator (10885ms)\nWhat is an eclipse?\tseven Razzies\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, has been nominated for, seven Razzies) -> seven Razzies (10855ms)\nWhat is an eclipse?\tlong periods\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, had been running for, long periods) -> long periods (10905ms)\nWhat is an eclipse?\tAFL 4\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is back for, AFL 4) -> AFL 4 (10818ms)\nWhat is an eclipse?\treliability\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was its reputation for, reliability) -> reliability (10855ms)\nWhat is an eclipse?\tdevelopment\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, can be used for, development) -> development (10831ms)\nWhat is an eclipse?\tthe bitch\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the bitch, caused, an eclipse) -> the bitch (10895ms)\nWhat is an eclipse?\tThe dimming\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (The dimming, is caused by, an eclipse) -> The dimming (10855ms)\nWhat is an eclipse?\tthe application\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the application, can be debugged in, Eclipse) -> the application (10875ms)\nWhat is an eclipse?\tthe same nature\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the same nature, appear to have caused, the eclipse) -> the same nature (10941ms)\nWhat is an eclipse?\tA Eclipse RCP application\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (A Eclipse RCP application, can run as is also in, Eclipse) -> A Eclipse RCP application (10818ms)\nWhat is an eclipse?\tcode editing\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is used for, code editing) -> code editing (10942ms)\nWhat is an eclipse?\tThe sources\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The sources, can be checked out using, eclipse) -> The sources (10804ms)\nWhat is an eclipse?\tPHP\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is for working in, PHP) -> PHP (10914ms)\nWhat is an eclipse?\texperienced architects and programmers\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is intended for, experienced architects and programmers) -> experienced architects and programmers (10959ms)\nWhat is an eclipse?\tA Eclipse RAP application\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (A Eclipse RAP application, can run as is also in, Eclipse) -> A Eclipse RAP application (10865ms)\nWhat is an eclipse?\ta shadow\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (a shadow, caused by, an eclipse) -> a shadow (10942ms)\nWhat is an eclipse?\truddy hues\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (ruddy hues, caused by, a solar eclipse) -> ruddy hues (10875ms)\nWhat is an eclipse?\tthe five trilithons\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the five trilithons, can also be used to predict, eclipses) -> the five trilithons (10865ms)\nWhat is an eclipse?\tthe corona\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the corona, can be seen only during, eclipses) -> the corona (10885ms)\nWhat is an eclipse?\tThe minima\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (The minima, were probably caused by, the eclipses) -> The minima (10865ms)\nWhat is an eclipse?\ta long time\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was leading for, a long time) -> a long time (10950ms)\nWhat is an eclipse?\tE.g\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (E.g, is the cause of, eclipse) -> E.g (10865ms)\nWhat is an eclipse?\tsale\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was already available for, sale) -> sale (10914ms)\nWhat is an eclipse?\tthe exposure\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipses, are equally known for, the exposure) -> the exposure (10818ms)\nWhat is an eclipse?\tthe conical mountain\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the conical mountain, causes, nights and eclipses) -> the conical mountain (10895ms)\nWhat is an eclipse?\tcode\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (code, automatically can really slow down, Eclipse) -> code (10924ms)\nWhat is an eclipse?\ta little\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, has been around for, a little) -> a little (10950ms)\nWhat is an eclipse?\tmulti-language development\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is really good for, multi-language development) -> multi-language development (10914ms)\nWhat is an eclipse?\tThe -showLocation parameter\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (The -showLocation parameter, causes, Eclipse) -> The -showLocation parameter (10818ms)\nWhat is an eclipse?\tthe moment\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is completely unstable for, the moment) -> the moment (10804ms)\nWhat is an eclipse?\tJava development\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was used for, Java development) -> Java development (10831ms)\nWhat is an eclipse?\tnone\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (none, is large enough to cause, an eclipse) -> none (10885ms)\nWhat is an eclipse?\tJUnit unit tests\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (JUnit unit tests, can be run in, Eclipse) -> JUnit unit tests (10905ms)\nWhat is an eclipse?\tthe DOS operating system\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, the DOS operating system) -> the DOS operating system (10942ms)\nWhat is an eclipse?\tthe building tasks\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the building tasks, can be accomplished also from, Eclipse) -> the building tasks (10942ms)\nWhat is an eclipse?\tevents\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (events, can be linked directly to, eclipses) -> events (10905ms)\nWhat is an eclipse?\tThe gleeful cackling\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (The gleeful cackling, alone would cause, a solar eclipse) -> The gleeful cackling (10804ms)\nWhat is an eclipse?\ta Maven archetype\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (a Maven archetype, can be directly imported in, Eclipse) -> a Maven archetype (10818ms)\nWhat is an eclipse?\ta longer period\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipses, can be felt for, a longer period) -> a longer period (10804ms)\nWhat is an eclipse?\tThe movie\t-0.0\tWhat is an eclipse? -> $x: ($x, be market, eclipse) -> (The movie, is also marketed as, ?Twilight Eclipse?) -> The movie (10831ms)\nWhat is an eclipse?\ttoo many plug-ins\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (too many plug-ins, can slow down, Eclipse) -> too many plug-ins (10933ms)\nWhat is an eclipse?\t?Europe\t-0.0\tWhat is an eclipse? -> $x: ($x, be market, eclipse) -> (?Europe, is such a great market for, the Eclipse 500) -> ?Europe (10923ms)\nWhat is an eclipse?\tExplain\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Explain, causes, solar and lunar eclipses) -> Explain (10933ms)\nWhat is an eclipse?\tMac , Windows or Unix\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, Mac , Windows or Unix) -> Mac , Windows or Unix (10865ms)\nWhat is an eclipse?\tradiotherapy treatment planning\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, has been adopted for, radiotherapy treatment planning) -> radiotherapy treatment planning (10924ms)\nWhat is an eclipse?\tGenerator workflows\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Generator workflows, can be easily run from, Eclipse) -> Generator workflows (10924ms)\nWhat is an eclipse?\tArtemis\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Artemis, cause, another solar eclipse Artemist) -> Artemis (10831ms)\nWhat is an eclipse?\tone week FIT departures\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, one week FIT departures) -> one week FIT departures (10895ms)\nWhat is an eclipse?\tirregular celestial motion\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (irregular celestial motion, causes, an eclipse) -> irregular celestial motion (10924ms)\nWhat is an eclipse?\tworst picture and worst screen ensemble\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is up for, worst picture and worst screen ensemble) -> worst picture and worst screen ensemble (10914ms)\nWhat is an eclipse?\tJ2ME midlets\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (J2ME midlets, can now be developed in, Eclipse) -> J2ME midlets (10933ms)\nWhat is an eclipse?\tJava source\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is great for editing, Java source) -> Java source (10804ms)\nWhat is an eclipse?\ta lunar event\t-0.0\tWhat is an eclipse? -> $x: ($x, be consider, eclipse) -> (a lunar event, is considered, an eclipse) -> a lunar event (10831ms)\nWhat is an eclipse?\tdragons\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (dragons, caused, eclipses) -> dragons (10804ms)\nWhat is an eclipse?\tThe astronomers\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The astronomers, can foretell, eclipses) -> The astronomers (10875ms)\nWhat is an eclipse?\tthe community\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is only goodness for, the community) -> the community (10905ms)\nWhat is an eclipse?\tThe test\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The test, can be executed with, Eclipse) -> The test (10950ms)\nWhat is an eclipse?\tMylyn?s frameworks\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Mylyn?s frameworks, can run outside of, Eclipse) -> Mylyn?s frameworks (10844ms)\nWhat is an eclipse?\tJava files\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is good for, Java files) -> Java files (10933ms)\nWhat is an eclipse?\tfurther study\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, are provided for, further study) -> further study (10855ms)\nWhat is an eclipse?\tBeau\t-0.0\tWhat is an eclipse? -> $x: ($x, be market, eclipse) -> (Beau, was Marketing Director for, Dean?s Eclipse) -> Beau (10959ms)\nWhat is an eclipse?\tflares\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (flares, could have been caused by, an eclipsing companion) -> flares (10855ms)\nWhat is an eclipse?\tSeveral JProfiler-related settings\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Several JProfiler-related settings, can be adjusted in, eclipse) -> Several JProfiler-related settings (10950ms)\nWhat is an eclipse?\ta new Android Virtual Device\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (a new Android Virtual Device, can use in, Eclipse) -> a new Android Virtual Device (10804ms)\nWhat is an eclipse?\tthe slickness\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the slickness, can be attributed to, Eclipse) -> the slickness (10914ms)\nWhat is an eclipse?\tEven supposing Thales\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Even supposing Thales, had known the cause of, eclipses) -> Even supposing Thales (10831ms)\nWhat is an eclipse?\ta build management tool\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (a build management tool, can be driven from, Eclipse) -> a build management tool (10895ms)\nWhat is an eclipse?\tsatisfied ?\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (satisfied ?, is caused by, Helios eclipse u) -> satisfied ? (10959ms)\nWhat is an eclipse?\tdemonstrations\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is used for coding, demonstrations) -> demonstrations (10855ms)\nWhat is an eclipse?\trelease\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is scheduled for, release) -> release (10914ms)\nWhat is an eclipse?\tThe latest source code\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The latest source code, can be imported into, eclipse) -> The latest source code (10905ms)\nWhat is an eclipse?\tthe alignment\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the alignment, to cause, an eclipse) -> the alignment (10875ms)\nWhat is an eclipse?\tfree\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, free) -> free (10959ms)\nWhat is an eclipse?\t? Organize Imports ?\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is support for, ? Organize Imports ?) -> ? Organize Imports ? (10818ms)\nWhat is an eclipse?\tediting\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, would be used for, editing) -> editing (10950ms)\nWhat is an eclipse?\tJava peeps\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was only for, Java peeps) -> Java peeps (10818ms)\nWhat is an eclipse?\tpermanent change\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are catalysts for, permanent change) -> permanent change (10875ms)\nWhat is an eclipse?\tthe error\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the error, was caused by, Eclipse) -> the error (10885ms)\nWhat is an eclipse?\tMars\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Mars, so caused a great number of, solar eclipses) -> Mars (10804ms)\nWhat is an eclipse?\tthe 400D\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the 400D, can be damaged by, Eclipse) -> the 400D (10804ms)\nWhat is an eclipse?\tThe code\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The code, can be imported into, Eclipse) -> The code (10844ms)\nWhat is an eclipse?\tthe earth\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the earth, causes, an eclipse of the moon) -> the earth (10950ms)\nWhat is an eclipse?\tplug-ins\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (plug-ins, can be installed in, Eclipse) -> plug-ins (10905ms)\nWhat is an eclipse?\tSOLAR & LUNAR ECLIPSES\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (SOLAR & LUNAR ECLIPSES, causes, eclipses) -> SOLAR & LUNAR ECLIPSES (10959ms)\nWhat is an eclipse?\ta quality experience\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, are needed for, a quality experience) -> a quality experience (10855ms)\nWhat is an eclipse?\tthe dragon\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the dragon, to cause, eclipses) -> the dragon (10865ms)\nWhat is an eclipse?\tthe movement\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the movement, is the cause of, eclipses) -> the movement (10885ms)\nWhat is an eclipse?\tAn earth\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (An earth, caused, eclipse) -> An earth (10905ms)\nWhat is an eclipse?\tDeimos\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Deimos, causes, a solar eclipse) -> Deimos (10875ms)\nWhat is an eclipse?\tthe darkness\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the darkness, was caused by, a solar eclipse) -> the darkness (10942ms)\nWhat is an eclipse?\tEnterprise development\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is used for, Enterprise development) -> Enterprise development (10959ms)\nWhat is an eclipse?\ta summer release\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is set for, a summer release) -> a summer release (10942ms)\nWhat is an eclipse?\tthe resulting script\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the resulting script, can then be used in, eclipse) -> the resulting script (10855ms)\nWhat is an eclipse?\ttwo mouse clicks\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipse, is for, two mouse clicks) -> two mouse clicks (10933ms)\nWhat is an eclipse?\tThe patch\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (The patch, causes, the Eclipse classpath) -> The patch (10942ms)\nWhat is an eclipse?\tthe Eclipse platform and IDE\t-0.0\tWhat is an eclipse? -> $x: ($x, be consider, eclipse) -> (the Eclipse platform and IDE, can be considered part of, Eclipse) -> the Eclipse platform and IDE (10924ms)\nWhat is an eclipse?\tDownloads Mylyn WikiText\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Downloads Mylyn WikiText, can be installed into, Eclipse) -> Downloads Mylyn WikiText (10831ms)\nWhat is an eclipse?\tthe Bugdel pointcuts\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the Bugdel pointcuts, can only be used from within, Eclipse) -> the Bugdel pointcuts (10924ms)\nWhat is an eclipse?\tthe monster\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the monster, is supposed to cause, eclipses) -> the monster (10959ms)\nWhat is an eclipse?\tan ?exeligmos?\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (an ?exeligmos?, will cause, the next solar eclipse) -> an ?exeligmos? (10959ms)\nWhat is an eclipse?\ta June 2010 release\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is slated for, a June 2010 release) -> a June 2010 release (10791ms)\nWhat is an eclipse?\tthe demon\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the demon, causes, the eclipse) -> the demon (10959ms)\nWhat is an eclipse?\t1st century CE\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (1st century CE, caused, the eclipse) -> 1st century CE (10818ms)\nWhat is an eclipse?\tThe Eclipse\t-0.0\tWhat is an eclipse? -> $x: ($x, be consider, eclipse) -> (The Eclipse, is considered, a Solar Eclipse) -> The Eclipse (10885ms)\nWhat is an eclipse?\tEclipse project\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Eclipse project, can be opened in, Eclipse) -> Eclipse project (10942ms)\nWhat is an eclipse?\tExplore\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Explore, causes, eclipses) -> Explore (10844ms)\nWhat is an eclipse?\tthe studio\t-0.0\tWhat is an eclipse? -> $x: ($x, be consider, eclipse) -> (the studio, is considering making, third book Eclipse) -> the studio (10875ms)\nWhat is an eclipse?\tthe Groovy and Java work\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is great for, the Groovy and Java work) -> the Groovy and Java work (10844ms)\nWhat is an eclipse?\tpreferences page\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (preferences page, caused exception in, Eclipse 3.1.1) -> preferences page (10855ms)\nWhat is an eclipse?\tJava\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is an IDE for, Java) -> Java (10950ms)\nWhat is an eclipse?\tthe exit\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was heading for, the exit) -> the exit (10875ms)\nWhat is an eclipse?\tplatforms\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (platforms, can be developed in, eclipse) -> platforms (10875ms)\nWhat is an eclipse?\tJava programmers\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is providing for, Java programmers) -> Java programmers (10905ms)\nWhat is an eclipse?\tEclipse Client-side Web UI code\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Eclipse Client-side Web UI code, can be debugged in, Eclipse) -> Eclipse Client-side Web UI code (10905ms)\nWhat is an eclipse?\tChemistry experiment\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Chemistry experiment, causes, eclipse) -> Chemistry experiment (10933ms)\nWhat is an eclipse?\ta new Mac\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (a new Mac, can actually run things like, Eclipse) -> a new Mac (10818ms)\nWhat is an eclipse?\tService development APIs\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Service development APIs, can be used in, Eclipse) -> Service development APIs (10831ms)\nWhat is an eclipse?\tThe variations\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The variations, can be caused by, eclipses) -> The variations (10914ms)\nWhat is an eclipse?\tHealth problems\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Health problems, can manifest with, eclipses) -> Health problems (10855ms)\nWhat is an eclipse?\ta small RCP ?application ?\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (a small RCP ?application ?, can started from, eclipse) -> a small RCP ?application ? (10905ms)\nWhat is an eclipse?\tsimple editing projects\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, could be used for, simple editing projects) -> simple editing projects (10844ms)\nWhat is an eclipse?\tsuch a phenomenon\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (such a phenomenon, was caused by, an eclipse) -> such a phenomenon (10885ms)\nWhat is an eclipse?\tEIGHT awards\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is nominated for, EIGHT awards) -> EIGHT awards (10914ms)\nWhat is an eclipse?\tMylyn WikiText\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Mylyn WikiText, can be installed into, Eclipse) -> Mylyn WikiText (10950ms)\nWhat is an eclipse?\tthe Java 7\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, will be voting for, the Java 7) -> the Java 7 (10905ms)\nWhat is an eclipse?\ta mom\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is sucktastic for, a mom) -> a mom (10914ms)\nWhat is an eclipse?\tmeditation\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are excellent times for, meditation) -> meditation (10831ms)\nWhat is an eclipse?\tthe dead ,\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the dead ,, cause, eclipses) -> the dead , (10933ms)\nWhat is an eclipse?\ta dragon\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (a dragon, was supposed to cause, eclipses) -> a dragon (10885ms)\nWhat is an eclipse?\tunison\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (unison, caused, an eclipse) -> unison (10865ms)\nWhat is an eclipse?\tthe god\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the god, could cause, eclipses) -> the god (10885ms)\nWhat is an eclipse?\tany platform\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (any platform, can be used to build, Eclipse) -> any platform (10875ms)\nWhat is an eclipse?\tRSKRX62T boards\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (RSKRX62T boards, can only be debugged in, Eclipse) -> RSKRX62T boards (10804ms)\nWhat is an eclipse?\tdownload\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was made available for, download) -> download (10959ms)\nWhat is an eclipse?\tthe build folder\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (the build folder, can be imported to, Eclipse) -> the build folder (10959ms)\nWhat is an eclipse?\tthe shadow\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the shadow, causes, a lunar eclipse) -> the shadow (10895ms)\nWhat is an eclipse?\t10 years\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, has been around for, 10 years) -> 10 years (10959ms)\nWhat is an eclipse?\tMoon\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Moon, caused, eclipse) -> Moon (10804ms)\nWhat is an eclipse?\tIngres Icebreaker\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is a perfect match for, Ingres Icebreaker) -> Ingres Icebreaker (10818ms)\nWhat is an eclipse?\teven new programmers\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (even new programmers, can make effective use of, Eclipse) -> even new programmers (10804ms)\nWhat is an eclipse?\tthe Rahu planet\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the Rahu planet, causes, an eclipse) -> the Rahu planet (10885ms)\nWhat is an eclipse?\tChinese astrologers\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Chinese astrologers, caused, eclipses) -> Chinese astrologers (10855ms)\nWhat is an eclipse?\tPython\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is used for, Python) -> Python (10831ms)\nWhat is an eclipse?\tthe beam\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the beam, causes, an eclipse) -> the beam (10923ms)\nWhat is an eclipse?\tRahu\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (Rahu, said to be the cause of, eclipses) -> Rahu (10933ms)\nWhat is an eclipse?\tfixed license\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is suitable for, fixed license) -> fixed license (10905ms)\nWhat is an eclipse?\ta demon\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (a demon, causes, eclipses) -> a demon (10905ms)\nWhat is an eclipse?\tthe Kapeet\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (the Kapeet, caused, eclipses) -> the Kapeet (10818ms)\nWhat is an eclipse?\texample how Maven goals\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (example how Maven goals, can be executed from within, Eclipse) -> example how Maven goals (10895ms)\nWhat is an eclipse?\tBest Business Email\t-0.0\tWhat is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, are also up for, Best Business Email) -> Best Business Email (10895ms)\nWhat is an eclipse?\tout\t-0.0\tWhat is an eclipse? -> $x: ($x, cause, eclipse) -> (out, causes, an eclipse) -> out (10865ms)\nWhat is an eclipse?\tJava code\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (Java code, can be extended in, Eclipse) -> Java code (10950ms)\nWhat is an eclipse?\tThe EA model\t-0.0\tWhat is an eclipse? -> $x: ($x, can, eclipse) -> (The EA model, can be used outside of, Eclipse) -> The EA model (10818ms)\nWhat is an eclipse?\tMoonWatcher guide\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (MoonWatcher guide, contains articles related to, eclipses) -> MoonWatcher guide (10999ms)\nWhat is an eclipse?\tOOME\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (OOME, is probably some other part of, Eclipse) -> OOME (11046ms)\nWhat is an eclipse?\tLynn\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Lynn, has been a fantastic part of, the Eclipse Foundation) -> Lynn (10976ms)\nWhat is an eclipse?\tIo\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Io, is in, eclipse) -> Io (11053ms)\nWhat is an eclipse?\tthe engagement wing\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the engagement wing, is in, eclipse) -> the engagement wing (11053ms)\nWhat is an eclipse?\tthe three planets\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the three planets, are in, eclipse) -> the three planets (10984ms)\nWhat is an eclipse?\tYork\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (York, was in, eclipse) -> York (10976ms)\nWhat is an eclipse?\tEach category\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Each category, contains a list of, Eclipse) -> Each category (11007ms)\nWhat is an eclipse?\tMissouri\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Missouri, Contains, Eclipse School of Cosmetology and Barbering) -> Missouri (11053ms)\nWhat is an eclipse?\tthe avant-garde\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the avant-garde, was in, eclipse) -> the avant-garde (11046ms)\nWhat is an eclipse?\t31\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (31, contain information on, eclipses) -> 31 (11014ms)\nWhat is an eclipse?\tEnceladus\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Enceladus, is in, eclipse) -> Enceladus (11039ms)\nWhat is an eclipse?\tThe Church\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (The Church, will be in, Eclipse) -> The Church (11059ms)\nWhat is an eclipse?\tCanada\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Canada, contained, several eclipse reports) -> Canada (11007ms)\nWhat is an eclipse?\tthe features\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the features, are in, Eclipse) -> the features (10992ms)\nWhat is an eclipse?\ta reasonably self\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (a reasonably self, contained, excerpt from Eclipse Court) -> a reasonably self (11022ms)\nWhat is an eclipse?\tthe arts\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the arts, is in, eclipse) -> the arts (10984ms)\nWhat is an eclipse?\tPecos County\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Pecos County, Contains, Canon Ranch Railroad Eclipse Windmill) -> Pecos County (11053ms)\nWhat is an eclipse?\tversion 10\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (version 10, contains, MyEclipse-related fixes and improvements) -> version 10 (11022ms)\nWhat is an eclipse?\tEach bulletin\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Each bulletin, contains, detailed eclipse predictions) -> Each bulletin (11022ms)\nWhat is an eclipse?\tsocialism\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (socialism, is in, eclipse) -> socialism (11007ms)\nWhat is an eclipse?\t9:00 ?\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (9:00 ?, was the most challenging part of, Eclipse) -> 9:00 ? (10967ms)\nWhat is an eclipse?\tJim\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Jim, is heavily involved in, the Eclipse project) -> Jim (11053ms)\nWhat is an eclipse?\tDDMS\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (DDMS, is part of, the ADT Eclipse plug-in) -> DDMS (11046ms)\nWhat is an eclipse?\tthe Sun or Moon\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the Sun or Moon, is in, eclipse) -> the Sun or Moon (10992ms)\nWhat is an eclipse?\tCVS support\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (CVS support, is already part of, the standard Eclipse platform) -> CVS support (10992ms)\nWhat is an eclipse?\tEpicurus\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Epicurus, was in, eclipse) -> Epicurus (11032ms)\nWhat is an eclipse?\tpublic realm\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (public realm, is in, eclipse) -> public realm (10992ms)\nWhat is an eclipse?\tBen\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Ben, has been deeply involved in, the Eclipse community) -> Ben (10967ms)\nWhat is an eclipse?\ta self\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (a self, contained, eclipse maven project) -> a self (10976ms)\nWhat is an eclipse?\tPeyer\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Peyer, was in, eclipse) -> Peyer (10967ms)\nWhat is an eclipse?\ta zip file\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (a zip file, containing, an Eclipse project) -> a zip file (10999ms)\nWhat is an eclipse?\tEclipseLink\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (EclipseLink, is part of, the Eclipse ecosystem) -> EclipseLink (11022ms)\nWhat is an eclipse?\tan Inex series\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (an Inex series, contains about, 780 eclipses) -> an Inex series (10976ms)\nWhat is an eclipse?\tAn Inex family\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (An Inex family, contains much, more eclipses) -> An Inex family (10999ms)\nWhat is an eclipse?\tKasich\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Kasich, is in, eclipse) -> Kasich (11014ms)\nWhat is an eclipse?\tHoly Mother Church\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Holy Mother Church, is in, eclipse) -> Holy Mother Church (11053ms)\nWhat is an eclipse?\tSuffolk\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Suffolk, Contains, Eclipse) -> Suffolk (10984ms)\nWhat is an eclipse?\tCardus\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Cardus, is in, eclipse) -> Cardus (10976ms)\nWhat is an eclipse?\tThe  Church\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (The  Church, will be in, Eclipse) -> The  Church (11053ms)\nWhat is an eclipse?\ta persoanl planet\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (a persoanl planet, is involved in, an eclipse) -> a persoanl planet (11039ms)\nWhat is an eclipse?\tthe spacecraft\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the spacecraft, is in, eclipse) -> the spacecraft (11032ms)\nWhat is an eclipse?\tless than 60 seconds\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (less than 60 seconds, are all a part of, the Eclipse service) -> less than 60 seconds (10984ms)\nWhat is an eclipse?\tEach series\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Each series, contains, 70 or more eclipses) -> Each series (11053ms)\nWhat is an eclipse?\tthe end\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (the end, will be part of, the Eclipse Galileo annual release) -> the end (11046ms)\nWhat is an eclipse?\tThomism\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Thomism, is in, eclipse) -> Thomism (11039ms)\nWhat is an eclipse?\tthe campus\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the campus, was in, eclipse) -> the campus (11014ms)\nWhat is an eclipse?\teclipseme .org\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (eclipseme .org, is now part of, PlanetEclipse) -> eclipseme .org (10976ms)\nWhat is an eclipse?\tThe eclipse-egit package\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (The eclipse-egit package, contains, Eclipse plugins) -> The eclipse-egit package (11039ms)\nWhat is an eclipse?\tsure the selected directory\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (sure the selected directory, contains, the Eclipse executable) -> sure the selected directory (10976ms)\nWhat is an eclipse?\tJewish fortunes\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Jewish fortunes, were in, eclipse) -> Jewish fortunes (10984ms)\nWhat is an eclipse?\tJNode\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (JNode, contains, several Eclipse projects) -> JNode (10967ms)\nWhat is an eclipse?\tp2\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (p2, is part of, Eclipse) -> p2 (10984ms)\nWhat is an eclipse?\tAugust\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (August, contains, the Solar and Lunar Eclipse) -> August (11007ms)\nWhat is an eclipse?\tThe database\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (The database, contains, 24085 eclipses) -> The database (11032ms)\nWhat is an eclipse?\tthe directory\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (the directory, contains, Eclipse) -> the directory (11025ms)\nWhat is an eclipse?\tthe JUnit support\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (the JUnit support, has been a standard part of, Eclipse) -> the JUnit support (11053ms)\nWhat is an eclipse?\tthe sun and moon\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the sun and moon, are in, eclipse) -> the sun and moon (11007ms)\nWhat is an eclipse?\tal Qaeda\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (al Qaeda, is in, eclipse) -> al Qaeda (11007ms)\nWhat is an eclipse?\tThe engineers\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (The engineers, are ] in, Eclipse) -> The engineers (11032ms)\nWhat is an eclipse?\tthe Monitor\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the Monitor, was in, eclipse) -> the Monitor (11053ms)\nWhat is an eclipse?\tthe ?Tent Scene ?\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (the ?Tent Scene ?, was his favourite part of, Eclipse) -> the ?Tent Scene ? (10967ms)\nWhat is an eclipse?\tjoy\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (joy, is in, eclipse) -> joy (11046ms)\nWhat is an eclipse?\tthe Eclipse Foundation Board\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (the Eclipse Foundation Board, has been involved in, Eclipse) -> the Eclipse Foundation Board (11039ms)\nWhat is an eclipse?\tthe West\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the West, are in, eclipse) -> the West (11032ms)\nWhat is an eclipse?\tGreen\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Green, is deeply involved in, the Eclipse community) -> Green (11014ms)\nWhat is an eclipse?\tThe project\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (The project, contains, all necessary Eclipse project files) -> The project (11032ms)\nWhat is an eclipse?\tGutheinz\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Gutheinz, was part of, Operation Lunar Eclipse) -> Gutheinz (11046ms)\nWhat is an eclipse?\tthe time\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the time, was in, eclipse) -> the time (11022ms)\nWhat is an eclipse?\tUnited States of America\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (United States of America, Contains, Eclipse School of Cosmetology and Barbering) -> United States of America (10992ms)\nWhat is an eclipse?\tthe house in your birthchart\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (the house in your birthchart, contains, the eclipse degree) -> the house in your birthchart (10984ms)\nWhat is an eclipse?\tthe Church\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the Church, would be in, eclipse) -> the Church (11022ms)\nWhat is an eclipse?\tCape Girardeau\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Cape Girardeau, Contains, Eclipse School of Cosmetology and Barbering) -> Cape Girardeau (11032ms)\nWhat is an eclipse?\tMSE\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (MSE, is part of, the Magillem Eclipse) -> MSE (11046ms)\nWhat is an eclipse?\t11:58\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (11:58, AM in, Eclipse) -> 11:58 (10967ms)\nWhat is an eclipse?\tthe Armstrong spirit\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the Armstrong spirit, was in, eclipse) -> the Armstrong spirit (10984ms)\nWhat is an eclipse?\tsweetener\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (sweetener, is in, Eclipse) -> sweetener (10976ms)\nWhat is an eclipse?\tX10DT 2.1.1\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (X10DT 2.1.1, contain, Eclipse) -> X10DT 2.1.1 (11007ms)\nWhat is an eclipse?\tFDT\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (FDT, is part of, the Eclipse community) -> FDT (10959ms)\nWhat is an eclipse?\tThe sun\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (The sun, was in, eclipse) -> The sun (10992ms)\nWhat is an eclipse?\tthe right-wing anti-Semitism\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the right-wing anti-Semitism, is in, eclipse) -> the right-wing anti-Semitism (11039ms)\nWhat is an eclipse?\tIDE weirdness\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be n, eclipse) -> (IDE weirdness, is n?t unique to, Eclipse) -> IDE weirdness (10999ms)\nWhat is an eclipse?\tChina\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (China, was in, eclipse) -> China (11015ms)\nWhat is an eclipse?\tSecret Government\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Secret Government, was in, eclipse) -> Secret Government (11046ms)\nWhat is an eclipse?\tHoward?s daughter\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Howard?s daughter, is in, Eclipse) -> Howard?s daughter (11053ms)\nWhat is an eclipse?\tTexas\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Texas, Contains, Eclipse) -> Texas (10984ms)\nWhat is an eclipse?\tA Capitol Hill empire\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (A Capitol Hill empire, is in, eclipse) -> A Capitol Hill empire (11032ms)\nWhat is an eclipse?\tmultiple people\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (multiple people, are involved In, Eclipse) -> multiple people (10984ms)\nWhat is an eclipse?\tthe luminaries\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the luminaries, are in, eclipse) -> the luminaries (11007ms)\nWhat is an eclipse?\tThe various editors\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (The various editors, are part of, the Eclipse platform) -> The various editors (10992ms)\nWhat is an eclipse?\tthe above sentence\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (the above sentence, contains, the words simple and Eclipse) -> the above sentence (11015ms)\nWhat is an eclipse?\tThe Gallery page\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (The Gallery page, contains albums of, new eclipse maps) -> The Gallery page (11046ms)\nWhat is an eclipse?\tthe ?project-android ? folder\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (the ?project-android ? folder, will contain, the Eclipse project) -> the ?project-android ? folder (10999ms)\nWhat is an eclipse?\tthe photography club scene\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the photography club scene, was in, eclipse) -> the photography club scene (11022ms)\nWhat is an eclipse?\tthe SWT toolkit\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (the SWT toolkit, is part of, Eclipse) -> the SWT toolkit (11007ms)\nWhat is an eclipse?\tNew Mexico\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (New Mexico, Contains, Moriarty Eclipse Windmill) -> New Mexico (11046ms)\nWhat is an eclipse?\tuser-friendly consumer sex\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (user-friendly consumer sex, were in, eclipse) -> user-friendly consumer sex (11015ms)\nWhat is an eclipse?\tthe accompanying boxes\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (the accompanying boxes, contain the time of, mid-eclipse) -> the accompanying boxes (11039ms)\nWhat is an eclipse?\tnew APIs\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (new APIs, were part of, the Eclipse Galileo release) -> new APIs (11014ms)\nWhat is an eclipse?\tSubversive\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Subversive, is now part of, the Eclipse project) -> Subversive (11039ms)\nWhat is an eclipse?\tAl-Qaeda\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Al-Qaeda, was in, eclipse) -> Al-Qaeda (11039ms)\nWhat is an eclipse?\tCVS\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (CVS, is a native part of, Eclipse) -> CVS (10992ms)\nWhat is an eclipse?\tRiena\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Riena, is also part of, the EclipseRT top level project) -> Riena (10992ms)\nWhat is an eclipse?\tTorrance County\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Torrance County, Contains, Moriarty Eclipse Windmill) -> Torrance County (11007ms)\nWhat is an eclipse?\tJohn\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (John, has been a part of, Eclipse) -> John (10967ms)\nWhat is an eclipse?\tthe IMF\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the IMF, is in, eclipse) -> the IMF (11022ms)\nWhat is an eclipse?\tThe good times\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (The good times, are in, eclipse) -> The good times (11039ms)\nWhat is an eclipse?\tnice people\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (nice people, are all involved in, Eclipse) -> nice people (11053ms)\nWhat is an eclipse?\tGreg\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Greg, has been involved in, Eclipse tools development) -> Greg (11046ms)\nWhat is an eclipse?\teach album\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (each album, contains, significant eclipse maps) -> each album (11022ms)\nWhat is an eclipse?\tAtlanta\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Atlanta, Contains, Eclipse di Luna - Miami Circle) -> Atlanta (11046ms)\nWhat is an eclipse?\tEclipse RCP\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Eclipse RCP, is the part of, Eclipse) -> Eclipse RCP (11046ms)\nWhat is an eclipse?\tThe moon\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (The moon, was in, eclipse) -> The moon (11039ms)\nWhat is an eclipse?\tEdward and Jacob\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Edward and Jacob, is a crucial part of, Eclipse) -> Edward and Jacob (11032ms)\nWhat is an eclipse?\tJubula\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Jubula, is a part of, the new Eclipse) -> Jubula (11046ms)\nWhat is an eclipse?\tthe faith\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the faith, is in, eclipse) -> the faith (11053ms)\nWhat is an eclipse?\tThe brunch event\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (The brunch event, was part of, Eclipse Week) -> The brunch event (11058ms)\nWhat is an eclipse?\tJasper County\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Jasper County, Contains, Eclipse) -> Jasper County (10999ms)\nWhat is an eclipse?\tMercury\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Mercury, was involved in, the eclipse patterns) -> Mercury (11032ms)\nWhat is an eclipse?\tThe Tories\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (The Tories, were in, eclipse) -> The Tories (11053ms)\nWhat is an eclipse?\tjust-announced\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (just-announced, will be part of, the Eclipse Paho M2M project) -> just-announced (11032ms)\nWhat is an eclipse?\tthe firm\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (the firm, has been an instrumental part of, the Eclipse team) -> the firm (11022ms)\nWhat is an eclipse?\tthe planet\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (the planet, will be involved in, the lunar and solar eclipses) -> the planet (10967ms)\nWhat is an eclipse?\t2200\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (2200, contains Besselian elements for, the 570 solar eclipses) -> 2200 (10976ms)\nWhat is an eclipse?\tPerspectives and Views\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Perspectives and Views, as is most every part of, Eclipse) -> Perspectives and Views (10967ms)\nWhat is an eclipse?\tthe Georgian style\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the Georgian style, was in, eclipse) -> the Georgian style (11032ms)\nWhat is an eclipse?\torganizations\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (organizations, are part of, the Eclipse community) -> organizations (11022ms)\nWhat is an eclipse?\tThe first event\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (The first event, is part of, EclipseCon 2008) -> The first event (11007ms)\nWhat is an eclipse?\tcommands\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (commands, are part of, eclipse) -> commands (11039ms)\nWhat is an eclipse?\tthe North Node Uranus\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (the North Node Uranus, is involved in, this eclipse) -> the North Node Uranus (10992ms)\nWhat is an eclipse?\tJoyful energy\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Joyful energy, is part of, this eclipse) -> Joyful energy (10992ms)\nWhat is an eclipse?\tBIRT\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (BIRT, is part of, the Eclipse project) -> BIRT (10984ms)\nWhat is an eclipse?\tanti-Semitism\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (anti-Semitism, is in, eclipse) -> anti-Semitism (10967ms)\nWhat is an eclipse?\tVirginia\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Virginia, Contains, Eclipse) -> Virginia (11015ms)\nWhat is an eclipse?\tsankranti or surya\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (sankranti or surya, is in, eclipse) -> sankranti or surya (10976ms)\nWhat is an eclipse?\ta page\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (a page, containing, 10 years of eclipses) -> a page (10992ms)\nWhat is an eclipse?\t? needs\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (? needs, were in, eclipse) -> ? needs (11014ms)\nWhat is an eclipse?\tcareful memory\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (careful memory, is in, eclipse) -> careful memory (11015ms)\nWhat is an eclipse?\tthe system\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the system, is in, eclipse) -> the system (11039ms)\nWhat is an eclipse?\tThe planet Mercury\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (The planet Mercury, will also be part of, this eclipse pattern) -> The planet Mercury (11007ms)\nWhat is an eclipse?\tthe Wealth\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (the Wealth, is part of, ?the casual eclipse) -> the Wealth (10959ms)\nWhat is an eclipse?\tTweet\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Tweet, must contain, the ?#SpectreEclipse? hashtag) -> Tweet (10999ms)\nWhat is an eclipse?\tSamuel Schmucker\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Samuel Schmucker, was in, eclipse) -> Samuel Schmucker (10999ms)\nWhat is an eclipse?\tThe DORII project\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be involve in, eclipse) -> (The DORII project, is involved in, the g-Eclipse project) -> The DORII project (10984ms)\nWhat is an eclipse?\tPerseus\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Perseus, contains, the famed eclipsing binary star Algol) -> Perseus (10967ms)\nWhat is an eclipse?\topen source BIRT\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (open source BIRT, is part of, Eclipse) -> open source BIRT (11039ms)\nWhat is an eclipse?\tChartism\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Chartism, was in, eclipse) -> Chartism (10984ms)\nWhat is an eclipse?\tWestern Australia\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Western Australia, Contains, Eclipse Island) -> Western Australia (11022ms)\nWhat is an eclipse?\tthe satellite\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (the satellite, is in, eclipse) -> the satellite (11007ms)\nWhat is an eclipse?\tbeauty\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (beauty, is in, eclipse) -> beauty (11039ms)\nWhat is an eclipse?\ta Russian juggler\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (a Russian juggler, was in, ?Eclipse?) -> a Russian juggler (10999ms)\nWhat is an eclipse?\tThe E2I\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (The E2I, is part of, the Nikon Eclipse E800 Microscope system) -> The E2I (11015ms)\nWhat is an eclipse?\tEGit EGit\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (EGit EGit, is part of, the Eclipse project) -> EGit EGit (11007ms)\nWhat is an eclipse?\tThe sun and the moon\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (The sun and the moon, were in, eclipse) -> The sun and the moon (11053ms)\nWhat is an eclipse?\tthe Manabi Straight OVA\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be n, eclipse) -> (the Manabi Straight OVA, was n?t subbed by, Eclipse) -> the Manabi Straight OVA (11022ms)\nWhat is an eclipse?\tPlug-in Test\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Plug-in Test, is a part of, Eclipse) -> Plug-in Test (11046ms)\nWhat is an eclipse?\tpunishment\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (punishment, is in, eclipse) -> punishment (10992ms)\nWhat is an eclipse?\textensions\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (extensions, are part of, MyEclipse) -> extensions (11059ms)\nWhat is an eclipse?\tEach project\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (Each project, also contains, Eclipse .project) -> Each project (10999ms)\nWhat is an eclipse?\tMozart?s career\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (Mozart?s career, was in, eclipse) -> Mozart?s career (10999ms)\nWhat is an eclipse?\tan 82-year-old man\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (an 82-year-old man, is in, eclipse) -> an 82-year-old man (11046ms)\nWhat is an eclipse?\tThe accompanying CD-ROM\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (The accompanying CD-ROM, contains, Eclipse 3.0,) -> The accompanying CD-ROM (10992ms)\nWhat is an eclipse?\tThe Eclipse Pro rugby boot\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (The Eclipse Pro rugby boot, is a part of, the new ECLIPSE range) -> The Eclipse Pro rugby boot (11022ms)\nWhat is an eclipse?\tthe TCP/IP Monitor\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (the TCP/IP Monitor, is part of, Eclipse 3.5) -> the TCP/IP Monitor (11015ms)\nWhat is an eclipse?\tGEF\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be n, eclipse) -> (GEF, is n?t in, the Eclipse SDK) -> GEF (10999ms)\nWhat is an eclipse?\tA Saros family\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, contain, eclipse) -> (A Saros family, contains from, 69 to 86 eclipses) -> A Saros family (10967ms)\nWhat is an eclipse?\tVirgo\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be part of, eclipse) -> (Virgo, is part of, Eclipse) -> Virgo (11007ms)\nWhat is an eclipse?\tan art\t-0.111111111111\tWhat is an eclipse? -> $x: ($x, be in, eclipse) -> (an art, is in, eclipse) -> an art (11032ms)\nWhat is an eclipse?\tOne inventor\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, invent, solar power) -> (One inventor, invent, a solar powered robot) -> One inventor (11087ms)\nWhat is an eclipse?\tThe residence\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (The residence, does n?t run solely on, solar power) -> The residence (11083ms)\nWhat is an eclipse?\tReliable\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Reliable, Is, Solar Power) -> Reliable (11083ms)\nWhat is an eclipse?\tPhotovoltaics\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (Photovoltaics, produce electricity from, solar power) -> Photovoltaics (11064ms)\nWhat is an eclipse?\tThe house\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The house, is, Solar powered) -> The house (11078ms)\nWhat is an eclipse?\tCoal power\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Coal power, is, solar power) -> Coal power (11103ms)\nWhat is an eclipse?\torganic fabrics\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (organic fabrics, is produced in, a solar-powered factory) -> organic fabrics (11069ms)\nWhat is an eclipse?\tA New York-based designer\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, invent, solar power) -> (A New York-based designer, has invented, a solar-powered bikini) -> A New York-based designer (11103ms)\nWhat is an eclipse?\tThe Lodge\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The Lodge, is, solar powered) -> The Lodge (11092ms)\nWhat is an eclipse?\tpower\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, describe, solar power) -> (power, can be best described as, ?Liquid Solar Power) -> power (11107ms)\nWhat is an eclipse?\tA very good answer\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (A very good answer, is, solar power) -> A very good answer (11103ms)\nWhat is an eclipse?\tThe integrated sensor suite\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The integrated sensor suite, is, solar powered) -> The integrated sensor suite (11096ms)\nWhat is an eclipse?\tAnderson Valley Brewing Company\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Anderson Valley Brewing Company, is, solar powered) -> Anderson Valley Brewing Company (11096ms)\nWhat is an eclipse?\tCitizenRe\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (CitizenRe, is doing something very interesting with, solar power) -> CitizenRe (11069ms)\nWhat is an eclipse?\ta preview\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (a preview, Does, Solar Power Work) -> a preview (11074ms)\nWhat is an eclipse?\tthe Squirrel Boss Bird Feeder\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the Squirrel Boss Bird Feeder, is, solar powered) -> the Squirrel Boss Bird Feeder (11064ms)\nWhat is an eclipse?\tOlli Wisdom\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (Olli Wisdom, Tracks produced, Solar Power) -> Olli Wisdom (11078ms)\nWhat is an eclipse?\tthe heck\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the heck, is, solar power) -> the heck (11100ms)\nWhat is an eclipse?\tthe energy\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the energy, produced by, solar power plants) -> the energy (11107ms)\nWhat is an eclipse?\tcontact\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (contact, so creates, solar power) -> contact (11064ms)\nWhat is an eclipse?\tThe most promising technology in the long term\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The most promising technology in the long term, is, solar power) -> The most promising technology in the long term (11064ms)\nWhat is an eclipse?\ta team\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (a team, produced, a high-efficiency solar-powered LED lamp) -> a team (11100ms)\nWhat is an eclipse?\tthe pump\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the pump, was, solar powered) -> the pump (11064ms)\nWhat is an eclipse?\tFacts Coal power\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Facts Coal power, is, solar power) -> Facts Coal power (11092ms)\nWhat is an eclipse?\tCats\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Cats, are, Solar Powered) -> Cats (11103ms)\nWhat is an eclipse?\tsolar panels\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (solar panels, have different methods of creating, solar power ?) -> solar panels (11103ms)\nWhat is an eclipse?\tAnderson Valley Brewing\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (Anderson Valley Brewing, are doing with, Solar Power) -> Anderson Valley Brewing (11103ms)\nWhat is an eclipse?\tThe winery\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The winery, is, solar powered) -> The winery (11074ms)\nWhat is an eclipse?\tMorningstar\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (Morningstar, seems to do this with, their solar power equipment) -> Morningstar (11096ms)\nWhat is an eclipse?\tan inverter\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (an inverter, are found on, all home solar powered systems) -> an inverter (11100ms)\nWhat is an eclipse?\tways\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (ways, found, a solar powered ice-maker) -> ways (11083ms)\nWhat is an eclipse?\tthe question\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the question, does, solar power work) -> the question (11096ms)\nWhat is an eclipse?\tOrdinary homeowners\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (Ordinary homeowners, still find, solar power) -> Ordinary homeowners (11107ms)\nWhat is an eclipse?\tQUESTION\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (QUESTION, Do, Solar Powered Fans Work) -> QUESTION (11107ms)\nWhat is an eclipse?\ta manufacturer\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (a manufacturer, had created, a solar-powered tv) -> a manufacturer (11064ms)\nWhat is an eclipse?\ta multi-purpose machine\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (a multi-purpose machine, is, solar powered) -> a multi-purpose machine (11087ms)\nWhat is an eclipse?\tthe state\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the state, produced 95 percent of, the world?s solar power) -> the state (11096ms)\nWhat is an eclipse?\tthe team\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (the team, created, a safe , affordable solar-powered lantern) -> the team (11074ms)\nWhat is an eclipse?\tOne of these\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (One of these, is, solar power) -> One of these (11103ms)\nWhat is an eclipse?\tan audio Bible\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (an audio Bible, is, solar powered) -> an audio Bible (11083ms)\nWhat is an eclipse?\tthe principle\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the principle, produces, solar power) -> the principle (11078ms)\nWhat is an eclipse?\tPhoenix\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Phoenix, is, solar powered) -> Phoenix (11083ms)\nWhat is an eclipse?\tenergy problems\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (energy problems, will be found in, solar power) -> energy problems (11096ms)\nWhat is an eclipse?\telectricity\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (electricity, produced by, concentrated solar power) -> electricity (11087ms)\nWhat is an eclipse?\tConergy USA Conergy\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Conergy USA Conergy, contributes to creating, solar power plants) -> Conergy USA Conergy (11100ms)\nWhat is an eclipse?\t2012\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (2012, Find the best product for, Gable Mount Solar Power Vent) -> 2012 (11083ms)\nWhat is an eclipse?\tGera\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (Gera, has been producing electricity from, solar power) -> Gera (11059ms)\nWhat is an eclipse?\tconcentrated solar power\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (concentrated solar power, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Concentrated%20solar%20power) -> concentrated solar power (11092ms)\nWhat is an eclipse?\tfindings\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, represent, solar power) -> (findings, represent, Solar Power) -> findings (11059ms)\nWhat is an eclipse?\tthe OP\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the OP, has nothing to do with, solar thermal power) -> the OP (11103ms)\nWhat is an eclipse?\teach student\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (each student, creates a design for, a solar-powered house) -> each student (11087ms)\nWhat is an eclipse?\tOne Be Lo\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (One Be Lo, Tracks produced, Solar Powered) -> One Be Lo (11069ms)\nWhat is an eclipse?\tthe PV manufacturing process\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (the PV manufacturing process, creates, solar power) -> the PV manufacturing process (11100ms)\nWhat is an eclipse?\t?Kids\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (?Kids, are, solar powered ?) -> ?Kids (11100ms)\nWhat is an eclipse?\tgreen technology\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (green technology, has produced advances in, solar and wind power) -> green technology (11092ms)\nWhat is an eclipse?\tthe industry\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the industry, does n?t feel constrained to, solar power) -> the industry (11107ms)\nWhat is an eclipse?\tMagic Hot Springs\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (Magic Hot Springs, does n?t have enough sun for, solar power) -> Magic Hot Springs (11069ms)\nWhat is an eclipse?\tthe home\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the home, does make extensive use of, solar power) -> the home (11064ms)\nWhat is an eclipse?\tA kit fox\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (A kit fox, found dead near, the Genesis solar power project site) -> A kit fox (11096ms)\nWhat is an eclipse?\ta robot\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (a robot, create, a windmill or solar-powered car) -> a robot (11092ms)\nWhat is an eclipse?\tThe hydrogen\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (The hydrogen, could be produced by, solar power) -> The hydrogen (11074ms)\nWhat is an eclipse?\tThe 30,000 gallon-a-day system\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The 30,000 gallon-a-day system, is, solar powered) -> The 30,000 gallon-a-day system (11087ms)\nWhat is an eclipse?\tthe cradle\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the cradle, does so via, solar power) -> the cradle (11107ms)\nWhat is an eclipse?\tAmerica?s electricity\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (America?s electricity, would be produced by, solar power) -> America?s electricity (11087ms)\nWhat is an eclipse?\tGrimes\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, represent, solar power) -> (Grimes, represents, solar-power companies) -> Grimes (11074ms)\nWhat is an eclipse?\tEnergy\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Energy, created by, the solar power generation system) -> Energy (11087ms)\nWhat is an eclipse?\tBees\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Bees, are, solar powered) -> Bees (11100ms)\nWhat is an eclipse?\tSunrun\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, invent, solar power) -> (Sunrun, invented, solar power service) -> Sunrun (11100ms)\nWhat is an eclipse?\tdollars\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (dollars, should be used to create, solar power plants) -> dollars (11087ms)\nWhat is an eclipse?\tAussie Vans\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Aussie Vans, are, Solar Powered) -> Aussie Vans (11096ms)\nWhat is an eclipse?\tSunrun Sunrun\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, invent, solar power) -> (Sunrun Sunrun, invented, solar power service) -> Sunrun Sunrun (11087ms)\nWhat is an eclipse?\tH Hope Alternative energy\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (H Hope Alternative energy, does n?t, just mean solar power) -> H Hope Alternative energy (11107ms)\nWhat is an eclipse?\tSm solar , solar system\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (Sm solar , solar system, produced, solar power) -> Sm solar , solar system (11059ms)\nWhat is an eclipse?\tAn exciting alternative energy\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (An exciting alternative energy, is, solar power) -> An exciting alternative energy (11100ms)\nWhat is an eclipse?\tSpencer Bockus\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Spencer Bockus, created, solar-powered fans) -> Spencer Bockus (11092ms)\nWhat is an eclipse?\tthe waterfall\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the waterfall, is, solar powered) -> the waterfall (11078ms)\nWhat is an eclipse?\tThe Pathfinder\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The Pathfinder, is, solar powered) -> The Pathfinder (11107ms)\nWhat is an eclipse?\tThe light\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The light, is, solar powered) -> The light (11100ms)\nWhat is an eclipse?\tIqua\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Iqua, has created, the first Solar powered Bluetooth Headset) -> Iqua (11096ms)\nWhat is an eclipse?\torganic herbs and spices\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (organic herbs and spices, is, solar powered) -> organic herbs and spices (11092ms)\nWhat is an eclipse?\tThe hottest new technology\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (The hottest new technology, is, solar power) -> The hottest new technology (11074ms)\nWhat is an eclipse?\tthe website\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (the website, Find, Portable Solar Power) -> the website (11087ms)\nWhat is an eclipse?\tAuguste Mouchout\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Auguste Mouchout, created, a solar powered steam engine) -> Auguste Mouchout (11092ms)\nWhat is an eclipse?\t?How\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (?How, does, solar power work) -> ?How (11074ms)\nWhat is an eclipse?\teBay\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (eBay, Find, SOLAR POWER POND WATER PUMP) -> eBay (11059ms)\nWhat is an eclipse?\tthe fountain\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the fountain, is, solar powered) -> the fountain (11083ms)\nWhat is an eclipse?\tThe MiniChlor\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (The MiniChlor, does n?t have, a solar panel power supply) -> The MiniChlor (11087ms)\nWhat is an eclipse?\tthe answer\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the answer, does?not lie in, solar power) -> the answer (11058ms)\nWhat is an eclipse?\tlivestock\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (livestock, is done with, solar power) -> livestock (11069ms)\nWhat is an eclipse?\tthe company\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (the company, has created, a new solar power option) -> the company (11074ms)\nWhat is an eclipse?\ta house heating system\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (a house heating system, is, solar powered) -> a house heating system (11087ms)\nWhat is an eclipse?\tA thin film of plastic\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (A thin film of plastic, produces, solar power) -> A thin film of plastic (11096ms)\nWhat is an eclipse?\tElectricity\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Electricity, is, solar powered) -> Electricity (11103ms)\nWhat is an eclipse?\tadvantages/challenges\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (advantages/challenges, does, solar power collection present) -> advantages/challenges (11103ms)\nWhat is an eclipse?\tEarthFix\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (EarthFix, is, solar power) -> EarthFix (11100ms)\nWhat is an eclipse?\tthe lawn\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the lawn, does so using, solar power) -> the lawn (11103ms)\nWhat is an eclipse?\ta spacecraft\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (a spacecraft, is, solar powered) -> a spacecraft (11078ms)\nWhat is an eclipse?\tteams\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (teams, compete to create, energy efficient solar powered houses) -> teams (11064ms)\nWhat is an eclipse?\tNuclear fission\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Nuclear fission, is, solar power) -> Nuclear fission (11083ms)\nWhat is an eclipse?\tClick\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (Click, here find, special price 2 Watt Solar Powered Water Pump) -> Click (11069ms)\nWhat is an eclipse?\tEnergy Cache\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Energy Cache, wants to create, a solar-powered pump) -> Energy Cache (11064ms)\nWhat is an eclipse?\ta car\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (a car, is, solar powered) -> a car (11092ms)\nWhat is an eclipse?\tKlimek\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Klimek, creates, tiny solar-powered miniatures) -> Klimek (11074ms)\nWhat is an eclipse?\tcustomers\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (customers, find, the Solar Power Kits) -> customers (11069ms)\nWhat is an eclipse?\tThe electricity\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (The electricity, produced by, the solar power system) -> The electricity (11107ms)\nWhat is an eclipse?\tthe idea\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (the idea, Creating, your own solar power plant) -> the idea (11078ms)\nWhat is an eclipse?\tSDA\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, define, solar power) -> (SDA, defined, solar-powered charge ports) -> SDA (11074ms)\nWhat is an eclipse?\tLighting\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Lighting, is, solar powered) -> Lighting (11103ms)\nWhat is an eclipse?\tquantity\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (quantity, produce, solar power systems) -> quantity (11078ms)\nWhat is an eclipse?\tan androgynous deity\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, represent, solar power) -> (an androgynous deity, represented, the solar power) -> an androgynous deity (11107ms)\nWhat is an eclipse?\tIntel\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (Intel, does n?t aim to build, solar-powered CPUs) -> Intel (11064ms)\nWhat is an eclipse?\twind power\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (wind power, now seeks to do the same with, solar power) -> wind power (11078ms)\nWhat is an eclipse?\tNotes\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (Notes, Had little to do with, Solar Power) -> Notes (11083ms)\nWhat is an eclipse?\tSolar cells\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Solar cells, create, solar power) -> Solar cells (11078ms)\nWhat is an eclipse?\tthe utility grid\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the utility grid, so does, the solar power system) -> the utility grid (11092ms)\nWhat is an eclipse?\tclass\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (class, were doing a project on, ?Solar Power Plants?and) -> class (11074ms)\nWhat is an eclipse?\tthe world?s\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the world?s, commercially produced, solar power) -> the world?s (11092ms)\nWhat is an eclipse?\tNo comments\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (No comments, were found for, Solar panels power) -> No comments (11069ms)\nWhat is an eclipse?\tDesk Fan products\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (Desk Fan products, find, discount White Solar Powered Room) -> Desk Fan products (11074ms)\nWhat is an eclipse?\thomes , schools and businesses\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (homes , schools and businesses, is, solar power) -> homes , schools and businesses (11083ms)\nWhat is an eclipse?\ta lantern\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (a lantern, is, solar powered) -> a lantern (11100ms)\nWhat is an eclipse?\tsmaller remote lodges\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (smaller remote lodges, often make do with, solar power) -> smaller remote lodges (11069ms)\nWhat is an eclipse?\trenewable energy sources\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (renewable energy sources, are, solar power) -> renewable energy sources (11092ms)\nWhat is an eclipse?\tSolarDrive\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (SolarDrive, produces, effective solar power solutions) -> SolarDrive (11078ms)\nWhat is an eclipse?\ta mollusc and algal plastids\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (a mollusc and algal plastids, produces, solar-powered sea slugs) -> a mollusc and algal plastids (11096ms)\nWhat is an eclipse?\tThe robot\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (The robot, does this by, solar powered sensors) -> The robot (11087ms)\nWhat is an eclipse?\tthe public\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the public, is, solar power) -> the public (11078ms)\nWhat is an eclipse?\tYou?ll\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (You?ll, find, solar power-run wall chargers) -> You?ll (11059ms)\nWhat is an eclipse?\tplastic\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (plastic, produces, solar power) -> plastic (11103ms)\nWhat is an eclipse?\tthe System\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the System, is, Solar Powered) -> the System (11059ms)\nWhat is an eclipse?\tthe roof\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the roof, produce, solar power) -> the roof (11107ms)\nWhat is an eclipse?\tThe energy\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (The energy, produced by, the PV solar power system) -> The energy (11074ms)\nWhat is an eclipse?\tEIPV\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (EIPV, are specifically produced for, integrating solar power) -> EIPV (11107ms)\nWhat is an eclipse?\tincreased energy efficient heating and cooling\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (increased energy efficient heating and cooling, is, solar power) -> increased energy efficient heating and cooling (11092ms)\nWhat is an eclipse?\tthe China Academy\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, describe, solar power) -> (the China Academy, described a study on, space solar power) -> the China Academy (11069ms)\nWhat is an eclipse?\tMIDC\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, initiate, solar power) -> (MIDC, initiates, Solar power generation projects) -> MIDC (11092ms)\nWhat is an eclipse?\tearth\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (earth, does, solar power work) -> earth (11096ms)\nWhat is an eclipse?\ta very popular alternative energy source\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (a very popular alternative energy source, is, solar power) -> a very popular alternative energy source (11103ms)\nWhat is an eclipse?\tComments\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (Comments, exactly does, solar power work) -> Comments (11107ms)\nWhat is an eclipse?\telectricity humans\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (electricity humans, find to use, solar power) -> electricity humans (11064ms)\nWhat is an eclipse?\tSolar Learn\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (Solar Learn, Does, Solar Power Function) -> Solar Learn (11064ms)\nWhat is an eclipse?\tthe un-possible ?\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, invent, solar power) -> (the un-possible ?, invented, a solar powered bra) -> the un-possible ? (11064ms)\nWhat is an eclipse?\tthe fan\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the fan, is, solar powered) -> the fan (11107ms)\nWhat is an eclipse?\tavailable solar energy\t-0.111111111112\tWhat is an eclipse? -> $x: (solar power, have use of, $x) -> (the solar power-plant, have used 30 % of, available solar energy) -> available solar energy (11058ms)\nWhat is an eclipse?\tThe systems\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, represent, solar power) -> (The systems, represent, the largest solar power deployment) -> The systems (11100ms)\nWhat is an eclipse?\tstudents\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (students, created, some impressive , solar-powered robots) -> students (11107ms)\nWhat is an eclipse?\tthe power\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the power, produced by, the solar power system) -> the power (11074ms)\nWhat is an eclipse?\tHyderabad\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be role of, solar power) -> (Hyderabad, are now fulfilling the role of, solar power engineers) -> Hyderabad (11092ms)\nWhat is an eclipse?\tJapan\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (Japan, is planning to create, a space solar power system) -> Japan (11087ms)\nWhat is an eclipse?\tthe electricity\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the electricity, produced by, solar power plants) -> the electricity (11069ms)\nWhat is an eclipse?\tJohn Suppes\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, create, solar power) -> (John Suppes, are creating, entire solar-powered subdivisions) -> John Suppes (11058ms)\nWhat is an eclipse?\t?&# 1072n b?\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (?&# 1072n b?, found, &# 1110n solar powered calculators) -> ?&# 1072n b? (11096ms)\nWhat is an eclipse?\teither hydrogen or electricity\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (either hydrogen or electricity, produced from, solar power) -> either hydrogen or electricity (11078ms)\nWhat is an eclipse?\tthe Earth Defense Force\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the Earth Defense Force, are, solar power) -> the Earth Defense Force (11100ms)\nWhat is an eclipse?\tMuch Maintenance\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (Much Maintenance, Does, a Solar Power System Require) -> Much Maintenance (11064ms)\nWhat is an eclipse?\tResearchers and scientists\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, discover, solar power) -> (Researchers and scientists, have already discovered, solar power) -> Researchers and scientists (11092ms)\nWhat is an eclipse?\tGermany\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (Germany, produces, more solar power) -> Germany (11078ms)\nWhat is an eclipse?\tthe south side\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the south side, produces, limitless solar power) -> the south side (11078ms)\nWhat is an eclipse?\tfood\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (food, was, solar power) -> food (11096ms)\nWhat is an eclipse?\tmass\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (mass, produce, a low-cost solar power converter) -> mass (11103ms)\nWhat is an eclipse?\tthe analysis\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, do, solar power) -> (the analysis, can be done for, solar power) -> the analysis (11103ms)\nWhat is an eclipse?\tGreen Savvy ?\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Green Savvy ?, Is, Solar Power) -> Green Savvy ? (11078ms)\nWhat is an eclipse?\tthe camp\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (the camp, is, solar powered) -> the camp (11069ms)\nWhat is an eclipse?\tGeorgia\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, found, solar power) -> (Georgia, have found a way to generate, solar power) -> Georgia (11069ms)\nWhat is an eclipse?\tSolar Power One option for clean technology\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (Solar Power One option for clean technology, is, solar power) -> Solar Power One option for clean technology (11087ms)\nWhat is an eclipse?\tthe country\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, produce, solar power) -> (the country, produces, more solar power) -> the country (11100ms)\nWhat is an eclipse?\tconvenience trumping cents\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, be be, solar power) -> (convenience trumping cents, is, solar power) -> convenience trumping cents (11107ms)\nWhat is an eclipse?\tthe bloke\t-0.111111111112\tWhat is an eclipse? -> $x: ($x, invent, solar power) -> (the bloke, invented, the solar-powered torch) -> the bloke (11083ms)\nHow many moons does Neptune have?\tPluto\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Pluto, was once a moon of, Neptune) -> Pluto (1250ms)\nHow many moons does Neptune have?\tTriton\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Triton, is a moon of, Neptune) -> Triton (1250ms)\nHow many moons does Neptune have?\tthe planet\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (the planet, are the moons of, Neptune) -> the planet (1221ms)\nHow many moons does Neptune have?\tNaiad\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Naiad, are moons of, Neptune) -> Naiad (1251ms)\nHow many moons does Neptune have?\tLarissa\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Larissa, is a moon of, Neptune) -> Larissa (1221ms)\nHow many moons does Neptune have?\tGalatea\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Galatea, is a moon of, Neptune) -> Galatea (1250ms)\nHow many moons does Neptune have?\tTritan\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Tritan, is a moon of, Neptune) -> Tritan (1221ms)\nHow many moons does Neptune have?\t1:31\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (1:31, am Great Moons of, Neptune) -> 1:31 (1250ms)\nHow many moons does Neptune have?\tProteus\t0.11111111112000005\tHow many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Proteus, is the second largest moon of, Neptune) -> Proteus (1250ms)\nHow many moons does Neptune have?\tThe P2V-7\t9.000133971426294E-12\tHow many moons does Neptune have? -> $x: ($x, be last, neptune) -> (The P2V-7, is the last version of, the Neptune) -> The P2V-7 (1270ms)\nHow many moons does Neptune have?\tthe various conjunctions\t9.000133971426294E-12\tHow many moons does Neptune have? -> $x: ($x, moon, neptune) -> (the various conjunctions, is her Moon to, my Neptune) -> the various conjunctions (1311ms)\nHow many moons does Neptune have?\tthe folks\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (the folks, here see, this Mars/Neptune) -> the folks (1315ms)\nHow many moons does Neptune have?\tAulnay , Llangwm , Suton Benger\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Aulnay , Llangwm , Suton Benger, See, Neptune Item Code) -> Aulnay , Llangwm , Suton Benger (1319ms)\nHow many moons does Neptune have?\tNEPTUNE\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (NEPTUNE, see, OPERATION NEPTUNE) -> NEPTUNE (1311ms)\nHow many moons does Neptune have?\tan overview\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (an overview, see, the Neptune Feb 23 Hello , everyone) -> an overview (1319ms)\nHow many moons does Neptune have?\tLeander\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Leander, saw, Neptune) -> Leander (1315ms)\nHow many moons does Neptune have?\tdetails\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (details, see, OPERATION NEPTUNE) -> details (1319ms)\nHow many moons does Neptune have?\tMars and Neptune\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Mars and Neptune, see, Neptune and Mars Mars) -> Mars and Neptune (1315ms)\nHow many moons does Neptune have?\tsimilar storms\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (similar storms, have been seen on, Saturn and Neptune) -> similar storms (1315ms)\nHow many moons does Neptune have?\tGlen Island Park\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Glen Island Park, can be seen from, Neptune Park) -> Glen Island Park (1311ms)\nHow many moons does Neptune have?\tWilliam Lassell\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (William Lassell, had been first to see, a moon orbiting Neptune) -> William Lassell (1315ms)\nHow many moons does Neptune have?\tVisitors\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Visitors, see, King Neptune) -> Visitors (1315ms)\nHow many moons does Neptune have?\tGalle and d'Arrest\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Galle and d'Arrest, first saw, Neptune) -> Galle and d'Arrest (1311ms)\nHow many moons does Neptune have?\tThe boys\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (The boys, see, the King Neptune) -> The boys (1319ms)\nHow many moons does Neptune have?\tthe landings\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (the landings, see, OPERATION NEPTUNE) -> the landings (1315ms)\nHow many moons does Neptune have?\tRobin\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Robin, goes to see, Neptune) -> Robin (1315ms)\nHow many moons does Neptune have?\tGalileo\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Galileo, may have seen, Neptune) -> Galileo (1319ms)\nHow many moons does Neptune have?\ta dramatic late twist\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (a dramatic late twist, saw, Neptune) -> a dramatic late twist (1315ms)\nHow many moons does Neptune have?\tI?ve\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (I?ve, seen, Uranus and Neptune) -> I?ve (1315ms)\nHow many moons does Neptune have?\tthe Piazza della Signoria\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (the Piazza della Signoria, see, the famous Neptune Fountain) -> the Piazza della Signoria (1315ms)\nHow many moons does Neptune have?\tSimilar structures\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Similar structures, have been seen on, Saturn and Neptune) -> Similar structures (1311ms)\nHow many moons does Neptune have?\tmore info\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (more info, see, Neptune Introduction) -> more info (1315ms)\nHow many moons does Neptune have?\tBologna\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Bologna, See, Neptune) -> Bologna (1311ms)\nHow many moons does Neptune have?\tWindsor\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Windsor, See, the Neptune Fountain) -> Windsor (1315ms)\nHow many moons does Neptune have?\tthe Pyramid\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, be see of, neptune) -> (the Pyramid, can be seen of, Neptune) -> the Pyramid (1319ms)\nHow many moons does Neptune have?\tA telescope\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (A telescope, will be required to see, Neptune) -> A telescope (1319ms)\nHow many moons does Neptune have?\tPaul\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (Paul, saw the image of, Neptune) -> Paul (1315ms)\nHow many moons does Neptune have?\tThe Sun person\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (The Sun person, to want to see the best in, the Neptune person) -> The Sun person (1311ms)\nHow many moons does Neptune have?\tcirrus clouds\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (cirrus clouds, were seen high in, Neptune) -> cirrus clouds (1311ms)\nHow many moons does Neptune have?\tA good sized telescope\t-0.1111111111019999\tHow many moons does Neptune have? -> $x: ($x, see, neptune) -> (A good sized telescope, will be required to see, Neptune) -> A good sized telescope (1319ms)\nHow many moons does Neptune have?\tTaurus\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last in, Taurus) -> Taurus (1322ms)\nHow many moons does Neptune have?\tthe fourth giant gas planet\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, is last of, the fourth giant gas planet) -> the fourth giant gas planet (1322ms)\nHow many moons does Neptune have?\tAquarius\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last in, Aquarius) -> Aquarius (1322ms)\nHow many moons does Neptune have?\tthe top...\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, moon, $x) -> (neptunes transformation pen, has a moon on, the top...) -> the top... (1322ms)\nHow many moons does Neptune have?\tPisces\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last in, Pisces) -> Pisces (1319ms)\nHow many moons does Neptune have?\tfive movie houses\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (The Neptune, is the last of, five movie houses) -> five movie houses (1319ms)\nHow many moons does Neptune have?\tthe solar system\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, is the last planet in, the solar system) -> the solar system (1319ms)\nHow many moons does Neptune have?\t1847-1861\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last from, 1847-1861) -> 1847-1861 (1319ms)\nHow many moons does Neptune have?\tPisces starting\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last in, Pisces starting) -> Pisces starting (1319ms)\nHow many moons does Neptune have?\ta grand and glorious period\t-0.4444444444529998\tHow many moons does Neptune have? -> $x: (neptune, be last, $x) -> (This Neptune, is our last link to, a grand and glorious period) -> a grand and glorious period (1319ms)\nHow many moons does Neptune have?\tfirst\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, was seen, first) -> first (1325ms)\nHow many moons does Neptune have?\tspiritual\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune transits, may be seen as overtly, spiritual) -> spiritual (1328ms)\nHow many moons does Neptune have?\ta small telescope\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, can be seen in, a small telescope) -> a small telescope (1322ms)\nHow many moons does Neptune have?\tESO PR\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptunes, see, ESO PR) -> ESO PR (1328ms)\nHow many moons does Neptune have?\tthe zest\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, could see, the zest) -> the zest (1331ms)\nHow many moons does Neptune have?\tShiva and Ahriman\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, is seen as, Shiva and Ahriman) -> Shiva and Ahriman (1331ms)\nHow many moons does Neptune have?\tthe whole picture\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, always sees, the whole picture) -> the whole picture (1331ms)\nHow many moons does Neptune have?\tLANDINGS\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (NEPTUNE, see, LANDINGS) -> LANDINGS (1325ms)\nHow many moons does Neptune have?\tphoto right\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (the Neptune Network, see, photo right) -> photo right (1331ms)\nHow many moons does Neptune have?\tthe September Sky & Telescope\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, see, the September Sky & Telescope) -> the September Sky & Telescope (1328ms)\nHow many moons does Neptune have?\ta telescope\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus , Neptune and Pluto, can only be seen with, a telescope) -> a telescope (1331ms)\nHow many moons does Neptune have?\tthe foreground\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (The Neptune-like planet, can be seen in, the foreground) -> the foreground (1322ms)\nHow many moons does Neptune have?\ta whole\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, sees the universe as, a whole) -> a whole (1322ms)\nHow many moons does Neptune have?\tthe goddess playing\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, saw, the goddess playing) -> the goddess playing (1325ms)\nHow many moons does Neptune have?\tthe first time\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, was seen for, the first time) -> the first time (1328ms)\nHow many moons does Neptune have?\tUranus\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune Neptune, is often seen as, Uranus) -> Uranus (1322ms)\nHow many moons does Neptune have?\ttime\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, looks to see, time) -> time (1322ms)\nHow many moons does Neptune have?\tthe Sun\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (The Vesta-Neptune synod, is seen looking from, the Sun) -> the Sun (1328ms)\nHow many moons does Neptune have?\tan ebb'n'flow\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, sees, an ebb'n'flow) -> an ebb'n'flow (1328ms)\nHow many moons does Neptune have?\t2 and 3\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, are best seen between, 2 and 3) -> 2 and 3 (1325ms)\nHow many moons does Neptune have?\ta large blue spot\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (C. Neptune, was once seen to have, a large blue spot) -> a large blue spot (1325ms)\nHow many moons does Neptune have?\ta variety\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (his strong Neptune, can be seen in, a variety) -> a variety (1331ms)\nHow many moons does Neptune have?\tbinoculars\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, can be seen with, binoculars) -> binoculars (1328ms)\nHow many moons does Neptune have?\t1989\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (the planet Neptune, seen in, 1989) -> 1989 (1325ms)\nHow many moons does Neptune have?\tthe Soul Teacher\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, is seen as, the Soul Teacher) -> the Soul Teacher (1325ms)\nHow many moons does Neptune have?\tAn injury\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (ne 'er hath Neptune, seen, An injury) -> An injury (1325ms)\nHow many moons does Neptune have?\tmidnight\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, can be seen after, midnight) -> midnight (1325ms)\nHow many moons does Neptune have?\ta judge\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Mr. Neptune, has yet to see, a judge) -> a judge (1328ms)\nHow many moons does Neptune have?\twireless communications\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune and Pluto, saw the first use of, wireless communications) -> wireless communications (1325ms)\nHow many moons does Neptune have?\ta long , scaly , green tail\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (King Neptune, is seen with, a long , scaly , green tail) -> a long , scaly , green tail (1326ms)\nHow many moons does Neptune have?\tmore comments\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune June 25, Please see, more comments) -> more comments (1322ms)\nHow many moons does Neptune have?\tNeptune and Mars Mars\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Mars and Neptune, see, Neptune and Mars Mars) -> Neptune and Mars Mars (1322ms)\nHow many moons does Neptune have?\tthe glass half empty\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, may see, the glass half empty) -> the glass half empty (1328ms)\nHow many moons does Neptune have?\tthe island\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, saw her dancing on, the island) -> the island (1325ms)\nHow many moons does Neptune have?\tthe distance\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, can be seen in, the distance) -> the distance (1328ms)\nHow many moons does Neptune have?\tthe concrete blocks\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (King Neptune, can be seen in, the concrete blocks) -> the concrete blocks (1331ms)\nHow many moons does Neptune have?\tgenerational planets\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, are seen as, generational planets) -> generational planets (1331ms)\nHow many moons does Neptune have?\tthe Skywatches\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (The Neptune/Chiron/Jupiter conjunction, see, the Skywatches) -> the Skywatches (1328ms)\nHow many moons does Neptune have?\tthe Greeks\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, seeing, the Greeks) -> the Greeks (1325ms)\nHow many moons does Neptune have?\tHex Wheels Today\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, see, Hex Wheels Today) -> Hex Wheels Today (1331ms)\nHow many moons does Neptune have?\tfear\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (The U.S. Mars-Neptune square, can be seen as, fear) -> fear (1325ms)\nHow many moons does Neptune have?\tthe timing\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (the Mars-Neptune signature, can be seen through, the timing) -> the timing (1328ms)\nHow many moons does Neptune have?\tthe drawing\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Haruka/Uranus AND Michiru/Neptune, must be seen on, the drawing) -> the drawing (1328ms)\nHow many moons does Neptune have?\tthe evening twilight\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, will be difficult to see in, the evening twilight) -> the evening twilight (1331ms)\nHow many moons does Neptune have?\tOPERATION NEPTUNE\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (NEPTUNE, see, OPERATION NEPTUNE) -> OPERATION NEPTUNE (1322ms)\nHow many moons does Neptune have?\tda Vinci\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, sees, da Vinci) -> da Vinci (1331ms)\nHow many moons does Neptune have?\tthe main\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, is seen in, the main) -> the main (1328ms)\nHow many moons does Neptune have?\tspace exploration\t-0.5555555555639998\tHow many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, will see a resurgent interest in, space exploration) -> space exploration (1322ms)\nWhat is relative humidity?\twood\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (wood, is directly related to, the humidity and temperature) -> wood (965ms)\nWhat is relative humidity?\tenergy\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (energy, is entirely related to, humidity) -> energy (965ms)\nWhat is relative humidity?\tnasal congestion\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (nasal congestion, is related to, the temperature and humidity) -> nasal congestion (965ms)\nWhat is relative humidity?\tWater vapor\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (Water vapor, is also related to, sea surface humidity) -> Water vapor (965ms)\nWhat is relative humidity?\tnasal obstruction\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (nasal obstruction, is related to, the temperature and humidity) -> nasal obstruction (965ms)\nWhat is relative humidity?\tthe smell\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (the smell, is related to, the humidity) -> the smell (1131ms)\nWhat is relative humidity?\tNMF\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (NMF, is directly related to, external humidity) -> NMF (965ms)\nWhat is relative humidity?\tminimum temperatures\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (minimum temperatures, could be related to, the relative humidity) -> minimum temperatures (1131ms)\nWhat is relative humidity?\tPlant transpiration\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (Plant transpiration, is directly related to, humidity) -> Plant transpiration (965ms)\nWhat is relative humidity?\tnarrow buffers\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (narrow buffers, are related to decreased, humidity levels) -> narrow buffers (1131ms)\nWhat is relative humidity?\ta given room\t0.555555555556\tWhat is relative humidity? -> $x: ($x, be related to, humidity) -> (a given room, is directly related to, humidity) -> a given room (965ms)\nWhat is relative humidity?\tmachinery heat\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (machinery heat, causes, a serious drop in relative humidity) -> machinery heat (1131ms)\nWhat is relative humidity?\tthe cloud scheme\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (the cloud scheme, causes, drier relative humidity forecasts) -> the cloud scheme (1131ms)\nWhat is relative humidity?\ttemperature\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (temperature, can cause wide fluctuations in, relative humidity) -> temperature (1177ms)\nWhat is relative humidity?\tNosebleed\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (Nosebleed, Causes, Relative humidity) -> Nosebleed (1131ms)\nWhat is relative humidity?\tthe air\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (the air, causes a drop in, the relative humidity) -> the air (1177ms)\nWhat is relative humidity?\tThe lake\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (The lake, causes, relative humidity) -> The lake (1177ms)\nWhat is relative humidity?\ta condition\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (a condition, believed to be caused by, low relative humidity) -> a condition (1131ms)\nWhat is relative humidity?\tthe dew-point\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (the dew-point, always cause a change in, the relative humidity) -> the dew-point (1177ms)\nWhat is relative humidity?\tunoccupied times\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (unoccupied times, can cause, high relative humidity and result) -> unoccupied times (1177ms)\nWhat is relative humidity?\tRegularly people\t0.555555555555\tWhat is relative humidity? -> $x: ($x, cause, relative humidity) -> (Regularly people, will cause, great relative humidity) -> Regularly people (1131ms)\nWhat is relative humidity?\tlow 60s\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (low 60s, will result in, relative humidity values) -> low 60s (1938ms)\nWhat is relative humidity?\tCLOUDS\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (CLOUDS, IS FAVORED IN, RELATIVE HUMIDITY FIELDS ACROSS) -> CLOUDS (1178ms)\nWhat is relative humidity?\tevaporation\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (evaporation, may be due to change in, relative humidity levels) -> evaporation (1808ms)\nWhat is relative humidity?\tmolds\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (molds, thrive in, relative humidity conditions) -> molds (1938ms)\nWhat is relative humidity?\thigh relative humidity\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (high relative humidity, shrink in, low relative humidity) -> high relative humidity (1900ms)\nWhat is relative humidity?\tthe most startling contrast\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (the most startling contrast, is in, relative humidity) -> the most startling contrast (1808ms)\nWhat is relative humidity?\tPianos\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (Pianos, are happiest in, a relative humidity level) -> Pianos (1938ms)\nWhat is relative humidity?\tthe job site\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (the job site, is quite low in, relative humidity) -> the job site (1808ms)\nWhat is relative humidity?\tCoreci\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (Coreci, has been a major force in, the relative humidity market) -> Coreci (1177ms)\nWhat is relative humidity?\tlevel\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (level, drops approximately 7 % in, relative humidity) -> level (1900ms)\nWhat is relative humidity?\tAFTERNOON VERTICAL MIXING\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (AFTERNOON VERTICAL MIXING, WILL RESULT IN, RELATIVE HUMIDITIES) -> AFTERNOON VERTICAL MIXING (1900ms)\nWhat is relative humidity?\tan F\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (an F, is in measuring, the temperatures and relative humidities) -> an F (2269ms)\nWhat is relative humidity?\tan airborne fungus\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (an airborne fungus, is found in, areas of high relative humidity) -> an airborne fungus (2269ms)\nWhat is relative humidity?\tthe wood\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (the wood, is kept in, a relative humidity) -> the wood (1808ms)\nWhat is relative humidity?\tOptional\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (Optional, plug in, relative humidity probe) -> Optional (1938ms)\nWhat is relative humidity?\tfurniture\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (furniture, is great changes in, relative humidity) -> furniture (2269ms)\nWhat is relative humidity?\tthe air of\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (the air of, measured in, relative humidity) -> the air of (2269ms)\nWhat is relative humidity?\tThe answer\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (The answer, lies in, the relative humidity) -> The answer (2269ms)\nWhat is relative humidity?\tthe ABB range\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (the ABB range, can also work in, 100 % relative humidity) -> the ABB range (1938ms)\nWhat is relative humidity?\tcrates\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (crates, monitor change in, temperature and relative humidity) -> crates (1938ms)\nWhat is relative humidity?\tNearly all plants\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (Nearly all plants, thrive in, 80 % relative humidity) -> Nearly all plants (1900ms)\nWhat is relative humidity?\tThe product\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (The product, should store in, the relative humidity) -> The product (1808ms)\nWhat is relative humidity?\tThe air\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (The air, will slowly rise in, temperature and relative humidity) -> The air (1808ms)\nWhat is relative humidity?\tlow dewpoints\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (low dewpoints, will result in, relative humidity values) -> low dewpoints (1900ms)\nWhat is relative humidity?\t70?F\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (70?F, will result in, a relative humidity) -> 70?F (1177ms)\nWhat is relative humidity?\t72?F\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (72?F, will result in, 55 % relative humidity) -> 72?F (1900ms)\nWhat is relative humidity?\tGCRs\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (GCRs, include increases in, relative humidities) -> GCRs (1808ms)\nWhat is relative humidity?\tthe increased temperatures\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (the increased temperatures, result in, lower relative humidity) -> the increased temperatures (1938ms)\nWhat is relative humidity?\tMold\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (Mold, can bloom again in, elevated relative humidity) -> Mold (2269ms)\nWhat is relative humidity?\t50 F\t0.444444444444\tWhat is relative humidity? -> $x: ($x, in, relative humidity) -> (50 F, resulted in, low relative humidities) -> 50 F (1900ms)\nWhat is relative humidity?\tthe outside air\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (the outside air, is low in, humidity) -> the outside air (2302ms)\nWhat is relative humidity?\twinter air\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (winter air, is so low in, humidity) -> winter air (2302ms)\nWhat is relative humidity?\tThe environment\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (The environment, can be low in, humidity) -> The environment (2337ms)\nWhat is relative humidity?\tThe temperature\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (The temperature, is low because, of the humidity) -> The temperature (2337ms)\nWhat is relative humidity?\tthe temperature\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (the temperature, is always low with extremely, high humidity) -> the temperature (2337ms)\nWhat is relative humidity?\tGuanacaste\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (Guanacaste, is low in, humidity) -> Guanacaste (2302ms)\nWhat is relative humidity?\tTemperature-controlled rooms\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (Temperature-controlled rooms, are often very low in, humidity) -> Temperature-controlled rooms (2302ms)\nWhat is relative humidity?\tthe annual rainfall\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (the annual rainfall, is low as well as, low humidity) -> the annual rainfall (2302ms)\nWhat is relative humidity?\tthe water content\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (the water content, is expected to be low at, relative humidities) -> the water content (2337ms)\nWhat is relative humidity?\tthe payload container\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (the payload container, is low in, humidity) -> the payload container (2338ms)\nWhat is relative humidity?\tperfectly timed rain events\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (perfectly timed rain events, was otherwise low in, humidity) -> perfectly timed rain events (2302ms)\nWhat is relative humidity?\tA summer\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (A summer, was otherwise low in, humidity) -> A summer (2269ms)\nWhat is relative humidity?\tAirline cabin air\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (Airline cabin air, is extremely low in, humidity) -> Airline cabin air (2302ms)\nWhat is relative humidity?\tThe storage room\t0.333333333334\tWhat is relative humidity? -> $x: ($x, be low, humidity) -> (The storage room, should be low in, humidity and cool) -> The storage room (2337ms)\nWhat is relative humidity?\tadolescents\t0.33333333333299997\tWhat is relative humidity? -> $x: (relative humidity, do, $x) -> (17 % relative humidity, did, adolescents) -> adolescents (2376ms)\nWhat is relative humidity?\tthe moisture\t0.33333333333299997\tWhat is relative humidity? -> $x: (relative humidity, do, $x) -> (relative humidity, does give an overview of, the moisture) -> the moisture (2376ms)\nWhat is relative humidity?\tUTH\t0.33333333333299997\tWhat is relative humidity? -> $x: ($x, be meaning of, relative humidity) -> (UTH, is a weighted mean of, fractional relative humidity) -> UTH (2337ms)\nWhat is relative humidity?\tthe duration\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, were recorded for, the duration) -> the duration (2413ms)\nWhat is relative humidity?\t55 degree F. Q\t0.333333333332\tWhat is relative humidity? -> $x: ($x, do, relative humidity) -> (55 degree F. Q, does, high relative humidity) -> 55 degree F. Q (2413ms)\nWhat is relative humidity?\tthe press room\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (60 % relative humidity, is recommended for, the press room) -> the press room (2438ms)\nWhat is relative humidity?\tlumber\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, is used for drying, lumber) -> lumber (2376ms)\nWhat is relative humidity?\tofficials\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity values, were factors for, officials) -> officials (2413ms)\nWhat is relative humidity?\tmicrobes\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (a 45 % relative humidity, is best for killing, microbes) -> microbes (2437ms)\nWhat is relative humidity?\tinfection\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (high relative humidity, is required for, infection) -> infection (2438ms)\nWhat is relative humidity?\tanalysis\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (temperature and relative humidity data, be used for, analysis) -> analysis (2413ms)\nWhat is relative humidity?\tsystems\t0.333333333332\tWhat is relative humidity? -> $x: ($x, produce, relative humidity) -> (systems, produce low levels of, relative humidity) -> systems (2438ms)\nWhat is relative humidity?\ta user\t0.333333333332\tWhat is relative humidity? -> $x: ($x, define, relative humidity) -> (a user, defined, relative humidity) -> a user (2437ms)\nWhat is relative humidity?\tspores\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (high relative humidities, are required for, spores) -> spores (2413ms)\nWhat is relative humidity?\t7 am\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (The Morning relative humidity percentages, are for, 7 am) -> 7 am (2376ms)\nWhat is relative humidity?\ttextiles\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (Relative humidity levels, must be mid-range for, textiles) -> textiles (2377ms)\nWhat is relative humidity?\treduction\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (high relative humidity, is essential for, reduction) -> reduction (2438ms)\nWhat is relative humidity?\ta saturated NaCl solution\t0.333333333332\tWhat is relative humidity? -> $x: ($x, produce, relative humidity) -> (a saturated NaCl solution, produces, 76 % relative humidity) -> a saturated NaCl solution (2413ms)\nWhat is relative humidity?\tmold growth\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (50 % relative humidity, is ideal for, mold growth) -> mold growth (2437ms)\nWhat is relative humidity?\tconsistent results\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, is a critical factor for, consistent results) -> consistent results (2376ms)\nWhat is relative humidity?\tleast 24 hours\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (high relative humidity, are required for at, least 24 hours) -> least 24 hours (2376ms)\nWhat is relative humidity?\tmonth\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (45 Relative Humidity as low as 31 %, is low for, month) -> month (2413ms)\nWhat is relative humidity?\tthe house\t0.333333333332\tWhat is relative humidity? -> $x: ($x, produce, relative humidity) -> (the house, produces, high relative humidity) -> the house (2438ms)\nWhat is relative humidity?\ta few days\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (the relative humidity, was low for, a few days) -> a few days (2438ms)\nWhat is relative humidity?\tUnheated areas\t0.333333333332\tWhat is relative humidity? -> $x: ($x, produce, relative humidity) -> (Unheated areas, can sometimes produce, relative humidities) -> Unheated areas (2437ms)\nWhat is relative humidity?\tgood health ?? ?\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, is vital for, good health ?? ?) -> good health ?? ? (2438ms)\nWhat is relative humidity?\tExperiments\t0.333333333332\tWhat is relative humidity? -> $x: ($x, do, relative humidity) -> (Experiments, were done at, constant relative humidity) -> Experiments (2438ms)\nWhat is relative humidity?\twet-\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (daily relative humidity, is adjusted to account for, wet-) -> wet- (2437ms)\nWhat is relative humidity?\tselected cities\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, is displayed for, selected cities) -> selected cities (2437ms)\nWhat is relative humidity?\tconservation\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity and handling, is essential for, conservation) -> conservation (2413ms)\nWhat is relative humidity?\tseveral reasons\t0.333333333332\tWhat is relative humidity? -> $x: (relative humidity, be for, $x) -> (low relative humidity, is inadequate for, several reasons) -> several reasons (2413ms)\nWhat is relative humidity?\tsusceptibility\t0.333333333332\tWhat is relative humidity? -> $x: ($x, do, relative humidity) -> (susceptibility, does, 100 % relative humidity) -> susceptibility (2413ms)\nWhat is relative humidity?\tvapor barriers\t0.333333333332\tWhat is relative humidity? -> $x: ($x, do, relative humidity) -> (vapor barriers, do, effect indoor relative humidity) -> vapor barriers (2438ms)\nWhat is relative humidity?\ta given condition\t0.333333333332\tWhat is relative humidity? -> $x: ($x, define, relative humidity) -> (a given condition, is defined as, the RELATIVE HUMIDITY) -> a given condition (2413ms)\nWhat is relative humidity?\tthe calculator\t0.222222222222\tWhat is relative humidity? -> $x: ($x, found, relative humidity) -> (the calculator, find, the relative humidity) -> the calculator (2444ms)\nWhat is relative humidity?\tWeather reports\t0.222222222222\tWhat is relative humidity? -> $x: ($x, refer, relative humidity) -> (Weather reports, commonly refer to, relative humidity) -> Weather reports (2444ms)\nWhat is relative humidity?\tThe dense plant population\t0.222222222222\tWhat is relative humidity? -> $x: ($x, create, relative humidity) -> (The dense plant population, creates, high relative humidity) -> The dense plant population (2444ms)\nWhat is relative humidity?\tGet details\t0.222222222222\tWhat is relative humidity? -> $x: ($x, found, relative humidity) -> (Get details, Find, the Relative Humidity) -> Get details (2444ms)\nWhat is relative humidity?\tmold\t0.222222222222\tWhat is relative humidity? -> $x: ($x, refer, relative humidity) -> (mold, can also refer to, high relative humidity) -> mold (2444ms)\nWhat is relative humidity?\tthe hot air\t0.222222222222\tWhat is relative humidity? -> $x: ($x, create, relative humidity) -> (the hot air, creates, a low relative humidity) -> the hot air (2444ms)\nWhat is relative humidity?\ta table\t0.222222222222\tWhat is relative humidity? -> $x: ($x, found, relative humidity) -> (a table, to find, the relative humidity) -> a table (2444ms)\nWhat is relative humidity?\tthe atmosphere\t0.222222222222\tWhat is relative humidity? -> $x: ($x, refer, relative humidity) -> (the atmosphere, is referred to as, Relative Humidity) -> the atmosphere (2444ms)\nWhat is relative humidity?\tQuestions\t0.222222222222\tWhat is relative humidity? -> $x: ($x, happen to, relative humidity) -> (Questions, happens to, the relative humidity) -> Questions (2444ms)\nWhat is relative humidity?\ta feral hive\t0.222222222222\tWhat is relative humidity? -> $x: ($x, found, relative humidity) -> (a feral hive, has been found with, a relative humidity) -> a feral hive (2438ms)\nWhat is relative humidity?\tA calculator\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (A calculator, will be used to convert to, relative humidity) -> A calculator (2496ms)\nWhat is relative humidity?\ttests\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (tests, will be conducted to measure, relative humidity) -> tests (2500ms)\nWhat is relative humidity?\tWater requirement\t0.222222222221\tWhat is relative humidity? -> $x: ($x, influence, relative humidity) -> (Water requirement, is strongly influenced by, relative humidity) -> Water requirement (2465ms)\nWhat is relative humidity?\tover-watering\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (over-watering, is to install, a relative humidity sensor) -> over-watering (2484ms)\nWhat is relative humidity?\tthe attic\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (the attic, can increase, the relative humidity in the attic) -> the attic (2480ms)\nWhat is relative humidity?\tProblem fire behavior\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Problem fire behavior, will be offset by, relative humidity) -> Problem fire behavior (2455ms)\nWhat is relative humidity?\tDisease development\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Disease development, is favored by, relative humidity) -> Disease development (2480ms)\nWhat is relative humidity?\tthe average heated home\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (the average heated home, can have, a relative humidity) -> the average heated home (2455ms)\nWhat is relative humidity?\ta desiccant\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (a desiccant, is to actively reduce, the relative humidity) -> a desiccant (2500ms)\nWhat is relative humidity?\tthe key\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the key, is to regulate, the relative humidity level) -> the key (2496ms)\nWhat is relative humidity?\tthe device\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the device, could have been affected by, relative humidity) -> the device (2508ms)\nWhat is relative humidity?\tfoxing\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (foxing, is, relative humidity) -> foxing (2484ms)\nWhat is relative humidity?\tCloud fraction\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Cloud fraction, is based upon, relative humidity) -> Cloud fraction (2460ms)\nWhat is relative humidity?\tbuildings\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (buildings, can have a high level of, relative humidity) -> buildings (2465ms)\nWhat is relative humidity?\t10-15 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is only about, 10-15 %) -> 10-15 % (2492ms)\nWhat is relative humidity?\tthe MODEL\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the MODEL, is indeed very sensitive to, relative humidity) -> the MODEL (2465ms)\nWhat is relative humidity?\tA well soaked sponge\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (A well soaked sponge, can easily raise, the relative humidity) -> A well soaked sponge (2484ms)\nWhat is relative humidity?\tclosets\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (closets, can have, a higher relative humidity) -> closets (2480ms)\nWhat is relative humidity?\tan air parcel\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (an air parcel, is saturated, ( relative humidity) -> an air parcel (2489ms)\nWhat is relative humidity?\tThe following steps\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (The following steps, can be taken to control, relative humidity) -> The following steps (2484ms)\nWhat is relative humidity?\tmoney\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (money, is correlated to, the relative humidity) -> money (2503ms)\nWhat is relative humidity?\t70 to 80 percent\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is generally about, 70 to 80 percent) -> 70 to 80 percent (2508ms)\nWhat is relative humidity?\tthe Ski*go wax line\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the Ski*go wax line, is tuned to, different relative humidities) -> the Ski*go wax line (2484ms)\nWhat is relative humidity?\t100 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (The relative humidity, is maintained at about, 100 %) -> 100 % (2492ms)\nWhat is relative humidity?\tthe material\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the material, be exposed to, normal relative humidity) -> the material (2450ms)\nWhat is relative humidity?\tthe unit\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the unit, is off 10 points of, relative humidity) -> the unit (2500ms)\nWhat is relative humidity?\tdeserts\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (deserts, is, relative humidity) -> deserts (2489ms)\nWhat is relative humidity?\t60 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is about, 60 %) -> 60 % (2508ms)\nWhat is relative humidity?\texplaining humidity\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (explaining humidity, are, relative humidity) -> explaining humidity (2484ms)\nWhat is relative humidity?\t0o and 40\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (0o and 40, can tolerate up to, 90 % relative humidity) -> 0o and 40 (2500ms)\nWhat is relative humidity?\tsnow\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (snow, is affected by, relative humidity) -> snow (2476ms)\nWhat is relative humidity?\tConidia\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (Conidia, can germinate at, relative humidity) -> Conidia (2465ms)\nWhat is relative humidity?\t85 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (The relative humidity, is about, 85 %) -> 85 % (2506ms)\nWhat is relative humidity?\t68 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the average relative humidity, is about, 68 %) -> 68 % (2455ms)\nWhat is relative humidity?\tthe 8912\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the 8912, is capable of measuring, relative humidity) -> the 8912 (2506ms)\nWhat is relative humidity?\tplastifier\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (plastifier, had been exposed to, low relative humidity) -> plastifier (2488ms)\nWhat is relative humidity?\tthe mites\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the mites, were very sensitive to, relative humidity) -> the mites (2492ms)\nWhat is relative humidity?\t55 % or less\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is always about, 55 % or less) -> 55 % or less (2484ms)\nWhat is relative humidity?\tTransmission Efficiency\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Transmission Efficiency, Is Dependent on, Relative Humidity) -> Transmission Efficiency (2470ms)\nWhat is relative humidity?\tF. Spores\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (F. Spores, can form after, 15 hours of high relative humidity) -> F. Spores (2455ms)\nWhat is relative humidity?\tEfficacy\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Efficacy, will be variable depending upon, relative humidity) -> Efficacy (2496ms)\nWhat is relative humidity?\tevery effort\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (every effort, should be made to maintain, the relative humidity) -> every effort (2488ms)\nWhat is relative humidity?\tthe row and column intersect\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the row and column intersect, is, the relative humidity) -> the row and column intersect (2450ms)\nWhat is relative humidity?\twater absorption\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (water absorption, is a function of, relative humidity) -> water absorption (2480ms)\nWhat is relative humidity?\ttranspiration\t0.222222222221\tWhat is relative humidity? -> $x: ($x, influence, relative humidity) -> (transpiration, is influenced by, the relative humidity) -> transpiration (2508ms)\nWhat is relative humidity?\t70 percent\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (The average relative humidity, is about, 70 percent) -> 70 percent (2444ms)\nWhat is relative humidity?\t75 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, was about, 75 %) -> 75 % (2503ms)\nWhat is relative humidity?\t60 percent\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (The average noonday relative humidity, is about, 60 percent) -> 60 percent (2450ms)\nWhat is relative humidity?\ta small CO2 warming\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (a small CO2 warming, is predicted to increase, relative humidity) -> a small CO2 warming (2480ms)\nWhat is relative humidity?\tdry\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (dry, can be dependent on, the relative humidity) -> dry (2506ms)\nWhat is relative humidity?\t65 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (Relative humidity, is about, 65 %) -> 65 % (2503ms)\nWhat is relative humidity?\tThe display\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (The display, can also show, the room?s relative humidity) -> The display (2455ms)\nWhat is relative humidity?\tSilica gel packets\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (Silica gel packets, can drop, the relative humidity) -> Silica gel packets (2508ms)\nWhat is relative humidity?\tthe production\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the production, is, relative humidity) -> the production (2500ms)\nWhat is relative humidity?\tissues\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (issues, were once again taken up with, relative humidity) -> issues (2496ms)\nWhat is relative humidity?\tBufkit\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (Bufkit, can now display, Relative Humidity) -> Bufkit (2460ms)\nWhat is relative humidity?\tthe humidity\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the humidity, is increased to, 65 % relative humidity or more) -> the humidity (2476ms)\nWhat is relative humidity?\tTrimView\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (TrimView, is able to determine, the current relative humidity) -> TrimView (2460ms)\nWhat is relative humidity?\tcombination\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (combination, can be used to measure, the relative humidity) -> combination (2500ms)\nWhat is relative humidity?\tthe disease severity\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the disease severity, are very dependent on, relative humidity) -> the disease severity (2444ms)\nWhat is relative humidity?\tnone\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (none, can achieve, 50 percent relative humidity) -> none (2492ms)\nWhat is relative humidity?\tthe maximum\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (50 % relative humidity, is about, the maximum) -> the maximum (2496ms)\nWhat is relative humidity?\t2.0. 5\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (2.0. 5, is, Relative Humidity) -> 2.0. 5 (2470ms)\nWhat is relative humidity?\tdisease development\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (disease development, are moderate to, low relative humidity) -> disease development (2492ms)\nWhat is relative humidity?\tthe cell\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (the cell, can depend on, the relative humidity) -> the cell (2508ms)\nWhat is relative humidity?\tA humidifier\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (A humidifier, is recommended to keep, the relative humidity) -> A humidifier (2492ms)\nWhat is relative humidity?\tair\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (air, is also commonly reported as, relative humidity) -> air (2500ms)\nWhat is relative humidity?\tthe disease\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the disease, are, relative humidity) -> the disease (2444ms)\nWhat is relative humidity?\thuman hair\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (human hair, is used to measure, relative humidity) -> human hair (2460ms)\nWhat is relative humidity?\tthe mirror\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the mirror, was exposed to, ~40 % relative humidity) -> the mirror (2506ms)\nWhat is relative humidity?\tAttention\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (Attention, must be paid to, relative humidity and dew points) -> Attention (2492ms)\nWhat is relative humidity?\tclimate shape ecosystems\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (climate shape ecosystems, is, relative humidity) -> climate shape ecosystems (2492ms)\nWhat is relative humidity?\tproduction\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (production, have been reported to increase, relative humidity) -> production (2492ms)\nWhat is relative humidity?\tnail keratin\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (nail keratin, is proportional to, the relative humidity) -> nail keratin (2496ms)\nWhat is relative humidity?\tcigars\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (cigars, is to achieve, a stable and ideal relative humidity) -> cigars (2455ms)\nWhat is relative humidity?\t40 percent\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (relative humidities, were about 35 to, 40 percent) -> 40 percent (2465ms)\nWhat is relative humidity?\tThe first one\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (The first one, is to identify, the relative humidity) -> The first one (2450ms)\nWhat is relative humidity?\t70\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (Relative humidities, are about, 70) -> 70 (2503ms)\nWhat is relative humidity?\tdehumidifiers\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (dehumidifiers, can effectively bring down, the Relative Humidity) -> dehumidifiers (2503ms)\nWhat is relative humidity?\tOperating range\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (Operating range, is 0 % to, 100 % relative humidity) -> Operating range (2455ms)\nWhat is relative humidity?\tconidiophores and conidia\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (conidiophores and conidia, is affected by, relative humidity) -> conidiophores and conidia (2460ms)\nWhat is relative humidity?\tturn\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (turn, are used to determine, Relative Humidity and Dew Point) -> turn (2503ms)\nWhat is relative humidity?\tGermination\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (Germination, can occur at, relative humidities) -> Germination (2465ms)\nWhat is relative humidity?\tcloud\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (cloud, is dependent on, relative humidity) -> cloud (2506ms)\nWhat is relative humidity?\t22?\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, was about 80 % at, 22?) -> 22? (2450ms)\nWhat is relative humidity?\tCondensation\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Condensation, is a function of, relative humidity) -> Condensation (2470ms)\nWhat is relative humidity?\tThe most commonly used parameter\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (The most commonly used parameter, is, relative humidity) -> The most commonly used parameter (2476ms)\nWhat is relative humidity?\tFinishes\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Finishes, are affected by, relative humidity) -> Finishes (2506ms)\nWhat is relative humidity?\twood or drywall\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (wood or drywall, is exposed to, a relative humidity) -> wood or drywall (2506ms)\nWhat is relative humidity?\t70 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (The relative humidity, was about, 70 %) -> 70 % (2460ms)\nWhat is relative humidity?\t50 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (relative humidity, can be kept at about, 50 %) -> 50 % (2500ms)\nWhat is relative humidity?\tthe Cigar Oasis Ultra\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the Cigar Oasis Ultra, is factory set to, 70 % relative humidity) -> the Cigar Oasis Ultra (2506ms)\nWhat is relative humidity?\teven ventilation systems\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (even ventilation systems, can raise, relative humidity) -> even ventilation systems (2480ms)\nWhat is relative humidity?\tBasements Basements\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (Basements Basements, are prone to, elevated relative humidity) -> Basements Basements (2460ms)\nWhat is relative humidity?\tpaper\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (paper, can stay closer to, an ideal 55 % relative humidity) -> paper (2496ms)\nWhat is relative humidity?\tThe same method\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (The same method, is used to calculate, relative humidity) -> The same method (2508ms)\nWhat is relative humidity?\tCuring times\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Curing times, will be affected by, relative humidity) -> Curing times (2475ms)\nWhat is relative humidity?\tmaterials\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (materials, is almost solely dependant on, relative humidity) -> materials (2450ms)\nWhat is relative humidity?\tRH\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (RH, is, relative humidity) -> RH (2476ms)\nWhat is relative humidity?\ta broad range\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (a broad range, can provide low levels of, relative humidity) -> a broad range (2508ms)\nWhat is relative humidity?\tthe pesky little critters\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the pesky little critters, is to lower, the relative humidity) -> the pesky little critters (2470ms)\nWhat is relative humidity?\tice\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (ice, was used to get, relative humidity) -> ice (2484ms)\nWhat is relative humidity?\tHumidity\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Humidity, was previously measured by, relative humidity) -> Humidity (2506ms)\nWhat is relative humidity?\tA table\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (A table, can be used to determine, the relative humidity) -> A table (2465ms)\nWhat is relative humidity?\tFeatures\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (Features, Can withstand up to, 90 % relative humidity) -> Features (2488ms)\nWhat is relative humidity?\t30 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (relative humidity, was about, 30 %) -> 30 % (2488ms)\nWhat is relative humidity?\tthe sensor\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the sensor, is a measure for, relative humidity) -> the sensor (2506ms)\nWhat is relative humidity?\tSO2\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (SO2, was investigated under, relative humidity) -> SO2 (2503ms)\nWhat is relative humidity?\twater\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (water, is compared to, a relative humidity) -> water (2492ms)\nWhat is relative humidity?\tTrehalose dihydrate\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (Trehalose dihydrate, is stable up to, 94 % relative humidity) -> Trehalose dihydrate (2506ms)\nWhat is relative humidity?\tThe DampGuard\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (The DampGuard, is designed to monitor, relative humidity) -> The DampGuard (2508ms)\nWhat is relative humidity?\theat\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (heat, is used to lower, the relative humidity) -> heat (2470ms)\nWhat is relative humidity?\tthe heating season\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (the heating season, can result from, low relative humidity) -> the heating season (2465ms)\nWhat is relative humidity?\twater vapor\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (water vapor, is measured as, Relative Humidity) -> water vapor (2476ms)\nWhat is relative humidity?\t90 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, was about, 90 %) -> 90 % (2492ms)\nWhat is relative humidity?\tdashed lines\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (dashed lines, are, relative humidity) -> dashed lines (2476ms)\nWhat is relative humidity?\tsulfur dioxide and nitrogen oxides\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (sulfur dioxide and nitrogen oxides, is, relative humidity) -> sulfur dioxide and nitrogen oxides (2455ms)\nWhat is relative humidity?\theating climates\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (heating climates, is to keep, the indoor relative humidity) -> heating climates (2484ms)\nWhat is relative humidity?\tAntiques\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Antiques, should be at, relative humidity) -> Antiques (2508ms)\nWhat is relative humidity?\tthe table leaves\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the table leaves, are adjusting to, the same relative humidity) -> the table leaves (2503ms)\nWhat is relative humidity?\tthe left\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (the left, can increase, relative humidity) -> the left (2492ms)\nWhat is relative humidity?\twet\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (wet, can increase, the relative humidity) -> wet (2480ms)\nWhat is relative humidity?\tunits\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (units, are designed to maintain, relative humidity) -> units (2506ms)\nWhat is relative humidity?\tthe steam\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the steam, is saturated, ( relative humidity) -> the steam (2508ms)\nWhat is relative humidity?\tfuel-burning appliances\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (fuel-burning appliances, can raise, the relative humidity) -> fuel-burning appliances (2475ms)\nWhat is relative humidity?\tan affinity\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (an affinity, are sensitive to, high relative humidity) -> an affinity (2508ms)\nWhat is relative humidity?\tThe wines\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (The wines, are stored at, relative humidity) -> The wines (2460ms)\nWhat is relative humidity?\tThe second map\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (The second map, is a forecast for, relative humidity) -> The second map (2470ms)\nWhat is relative humidity?\tThe most effective solution\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (The most effective solution, is to raise, the relative humidity) -> The most effective solution (2503ms)\nWhat is relative humidity?\t55 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is about, 55 %) -> 55 % (2506ms)\nWhat is relative humidity?\tA hygrometer\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (A hygrometer, can be used to measure, relative humidity) -> A hygrometer (2503ms)\nWhat is relative humidity?\thumidity\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (humidity, is expressed as, relative humidity) -> humidity (2506ms)\nWhat is relative humidity?\tcloud fraction\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (cloud fraction, is computed from, relative humidity) -> cloud fraction (2488ms)\nWhat is relative humidity?\tThe key\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (The key, is to prevent, relative humidities) -> The key (2496ms)\nWhat is relative humidity?\t3 degrees\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (The relative humidity swing, is about 2 to, 3 degrees) -> 3 degrees (2503ms)\nWhat is relative humidity?\t50 percent\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is above about, 50 percent) -> 50 percent (2480ms)\nWhat is relative humidity?\taltitude\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (altitude, as is, relative humidity) -> altitude (2496ms)\nWhat is relative humidity?\tsaturation\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (saturation, is called, relative humidity) -> saturation (2480ms)\nWhat is relative humidity?\tSaturated air\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (Saturated air, is reduced to about, 60 % relative humidity) -> Saturated air (2460ms)\nWhat is relative humidity?\tThe climate\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (The climate, is tropical monsoonal with, relative humidity) -> The climate (2444ms)\nWhat is relative humidity?\tA few degrees\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (A few degrees, is enough to lower, the relative humidity) -> A few degrees (2508ms)\nWhat is relative humidity?\t80 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, was about, 80 %) -> 80 % (2488ms)\nWhat is relative humidity?\tCaCl2\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (CaCl2, was used to maintain, the relative humidity) -> CaCl2 (2455ms)\nWhat is relative humidity?\tThe set points\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (The set points, are labeled as, relative humidity) -> The set points (2488ms)\nWhat is relative humidity?\tAn inexpensive hygrometer\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (An inexpensive hygrometer, can indicate, the relative humidity) -> An inexpensive hygrometer (2484ms)\nWhat is relative humidity?\tthe plants\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the plants, are often exposed to, relative humidity levels) -> the plants (2460ms)\nWhat is relative humidity?\tmoisture content\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (moisture content, is a function of, relative humidity) -> moisture content (2475ms)\nWhat is relative humidity?\tDevelopmental time\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Developmental time, can also be affected by, relative humidity) -> Developmental time (2506ms)\nWhat is relative humidity?\tThe spray air\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (The spray air, needs to be less than, 5 % relative humidity) -> The spray air (2450ms)\nWhat is relative humidity?\tAnswer\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (Answer, is the difference between, relative humidity) -> Answer (2455ms)\nWhat is relative humidity?\tthe humidity threshold\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (the humidity threshold, is reduced to, 80 % relative humidity) -> the humidity threshold (2489ms)\nWhat is relative humidity?\tThe cooling unit\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (The cooling unit, is designed to maintain, relative humidity) -> The cooling unit (2470ms)\nWhat is relative humidity?\ta convective environment\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (a convective environment, is the use of, relative humidity) -> a convective environment (2489ms)\nWhat is relative humidity?\t20 percent\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is greater than about, 20 percent) -> 20 percent (2470ms)\nWhat is relative humidity?\tnewspapers\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (newspapers, are usually, relative humidity) -> newspapers (2503ms)\nWhat is relative humidity?\tThe annual high temperature\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (The annual high temperature, is 30-45?C with, relative humidity) -> The annual high temperature (2450ms)\nWhat is relative humidity?\t?humidity ?\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (?humidity ?, is actually, ?relative humidity ?) -> ?humidity ? (2455ms)\nWhat is relative humidity?\tA low cost hygrometer\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (A low cost hygrometer, can be used to measure, relative humidity) -> A low cost hygrometer (2492ms)\nWhat is relative humidity?\ttree\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (tree, are sensitive to, relative humidity) -> tree (2460ms)\nWhat is relative humidity?\tThe dew point\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (The dew point, is associated with, relative humidity) -> The dew point (2460ms)\nWhat is relative humidity?\tThe two key components\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (The two key components, are, temperature and relative humidity) -> The two key components (2450ms)\nWhat is relative humidity?\toverwatering\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (overwatering, is to install, a relative humidity sensor) -> overwatering (2470ms)\nWhat is relative humidity?\tDevelopment\t0.222222222221\tWhat is relative humidity? -> $x: ($x, can, relative humidity) -> (Development, can occur at, a relative humidity) -> Development (2500ms)\nWhat is relative humidity?\tthe focus\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be be, relative humidity) -> (the focus, has been on, relative humidity) -> the focus (2484ms)\nWhat is relative humidity?\t40 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is about, 40 %) -> 40 % (2500ms)\nWhat is relative humidity?\t10 %\t0.222222222221\tWhat is relative humidity? -> $x: (relative humidity, be about, $x) -> (Relative humidity, was about, 10 %) -> 10 % (2500ms)\nWhat is relative humidity?\tInstruments\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (Instruments, are available to measure, relative humidity) -> Instruments (2496ms)\nWhat is relative humidity?\ta common form\t0.222222222221\tWhat is relative humidity? -> $x: ($x, be to, relative humidity) -> (a common form, were exposed to, different relative humidities) -> a common form (2470ms)\nWhat is relative humidity?\tThe second philosophy\t0.22222222222000002\tWhat is relative humidity? -> $x: ($x, exactly be, relative) -> (The second philosophy, exactly is, relative economic equality) -> The second philosophy (2510ms)\nWhat is relative humidity?\ta house\t0.22222222222000002\tWhat is relative humidity? -> $x: ($x, exactly be, relative) -> (a house, will be at exactly, the same relative location) -> a house (2508ms)\nWhat is relative humidity?\tSmart Fog\t0.11111111111099997\tWhat is relative humidity? -> $x: ($x, develop, relative humidity) -> (Smart Fog, has developed, a relative humidity control system) -> Smart Fog (2510ms)\nWhat is relative humidity?\t2 numbers\t0.11111111111099997\tWhat is relative humidity? -> $x: ($x, represent, relative humidity) -> (2 numbers, represents, the relative humidity) -> 2 numbers (2510ms)\nWhat is relative humidity?\tThe gray scale\t0.11111111111099997\tWhat is relative humidity? -> $x: ($x, represent, relative humidity) -> (The gray scale, represents, the relative humidity) -> The gray scale (2511ms)\nWhat is relative humidity?\tbrood\t0.11111111111099997\tWhat is relative humidity? -> $x: ($x, develop, relative humidity) -> (brood, develops best at, 40 % relative humidity) -> brood (2511ms)\nWhat is relative humidity?\tThe displayed values\t0.11111111111099997\tWhat is relative humidity? -> $x: ($x, represent, relative humidity) -> (The displayed values, represent, the current relative humidity) -> The displayed values (2510ms)\nWhat is relative humidity?\tThick , solid lines\t0.11111111111099997\tWhat is relative humidity? -> $x: ($x, represent, relative humidity) -> (Thick , solid lines, represent, boundary layer relative humidity) -> Thick , solid lines (2511ms)\nWhat is relative humidity?\tfire suppression\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (higher relative humidity, will aid in, fire suppression) -> fire suppression (2521ms)\nWhat is relative humidity?\tEffectFrom\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Low Relative Humidity, Is In, EffectFrom) -> EffectFrom (2519ms)\nWhat is relative humidity?\teach room\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, were measured in, each room) -> each room (2521ms)\nWhat is relative humidity?\tthe teens\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity, is in, the teens) -> the teens (2521ms)\nWhat is relative humidity?\tattics and basements\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (( Relative humidity, can be high in, attics and basements) -> attics and basements (2519ms)\nWhat is relative humidity?\twildfires\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, will likely result in, wildfires) -> wildfires (2522ms)\nWhat is relative humidity?\tthe range 45-65 %\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, must be in, the range 45-65 %) -> the range 45-65 % (2519ms)\nWhat is relative humidity?\tthe representation\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, can be seen in, the representation) -> the representation (2514ms)\nWhat is relative humidity?\tcorrosion failures\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (increased relative humidity, can result in, corrosion failures) -> corrosion failures (2522ms)\nWhat is relative humidity?\tFigure 4\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidities, are presented in, Figure 4) -> Figure 4 (2516ms)\nWhat is relative humidity?\tcritical fire weather\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, will result in, critical fire weather) -> critical fire weather (2513ms)\nWhat is relative humidity?\thand\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Temperature and relative humidity, often go hand in, hand) -> hand (2513ms)\nWhat is relative humidity?\tthe VFD room\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, was slightly higher in, the VFD room) -> the VFD room (2518ms)\nWhat is relative humidity?\tclear air\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (high relative humidities, were measured in, clear air) -> clear air (2516ms)\nWhat is relative humidity?\tthe 4 % to 5 % range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> ('s low relative humidity, is often in, the 4 % to 5 % range) -> the 4 % to 5 % range (2519ms)\nWhat is relative humidity?\tthe upper atmosphere\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, pressure in, the upper atmosphere) -> the upper atmosphere (2519ms)\nWhat is relative humidity?\twinter\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is much lower in, winter) -> winter (2518ms)\nWhat is relative humidity?\tweather analysis\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is a crucial factor in, weather analysis) -> weather analysis (2516ms)\nWhat is relative humidity?\thospitals\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity level, is always high in, hospitals) -> hospitals (2519ms)\nWhat is relative humidity?\tMelbourne\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, were set in, Melbourne) -> Melbourne (2522ms)\nWhat is relative humidity?\tthe 70 % range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, was in, the 70 % range) -> the 70 % range (2521ms)\nWhat is relative humidity?\tweather maps\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is expressed in, weather maps) -> weather maps (2519ms)\nWhat is relative humidity?\tthe 60 percent range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, was in, the 60 percent range) -> the 60 percent range (2519ms)\nWhat is relative humidity?\tsingle digits\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidities, will be in, single digits) -> single digits (2513ms)\nWhat is relative humidity?\tthe two cases\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, was markedly different in, the two cases) -> the two cases (2518ms)\nWhat is relative humidity?\tlow relative humidity\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (high relative humidity, shrink in, low relative humidity) -> low relative humidity (2513ms)\nWhat is relative humidity?\tthe 10-20 % range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is expected in, the 10-20 % range) -> the 10-20 % range (2513ms)\nWhat is relative humidity?\tan increasing range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Inlet relative humidity, was controlled in, an increasing range) -> an increasing range (2521ms)\nWhat is relative humidity?\ttree rings\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, recorded in, tree rings) -> tree rings (2522ms)\nWhat is relative humidity?\tthe comfort range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidities, are in, the comfort range) -> the comfort range (2513ms)\nWhat is relative humidity?\ta variety\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, can be computed in, a variety) -> a variety (2516ms)\nWhat is relative humidity?\tthe type\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, also plays a role in, the type) -> the type (2522ms)\nWhat is relative humidity?\tthe region\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, varies widely in, the region) -> the region (2518ms)\nWhat is relative humidity?\toxygen and negative ions\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (a relative humidity, is high in, oxygen and negative ions) -> oxygen and negative ions (2518ms)\nWhat is relative humidity?\tSeeds\t-0.0\tWhat is relative humidity? -> $x: ($x, leave, relative humidity) -> (Seeds, left at, ambient temperature and relative humidity) -> Seeds (2516ms)\nWhat is relative humidity?\tmore than 60 percent\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, has resulted in, more than 60 percent) -> more than 60 percent (2522ms)\nWhat is relative humidity?\tthe temperature range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity sensor, can work in, the temperature range) -> the temperature range (2516ms)\nWhat is relative humidity?\tthe humidistat\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (the desired relative humidity, will be set in, the humidistat) -> the humidistat (2513ms)\nWhat is relative humidity?\tthe afternoon\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is lowest in, the afternoon) -> the afternoon (2519ms)\nWhat is relative humidity?\tthe Saddle\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, was significantly lower in, the Saddle) -> the Saddle (2522ms)\nWhat is relative humidity?\tthe mountains\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity, is much lower in, the mountains) -> the mountains (2516ms)\nWhat is relative humidity?\tthe range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is in, the range) -> the range (2522ms)\nWhat is relative humidity?\tthe 25 to 30 percent range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Low relative humidities, will be in, the 25 to 30 percent range) -> the 25 to 30 percent range (2516ms)\nWhat is relative humidity?\tthe environment\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity, is lower in, the environment) -> the environment (2521ms)\nWhat is relative humidity?\tterms\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is generally understood in, terms) -> terms (2522ms)\nWhat is relative humidity?\tthe western part\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, had slight drop in, the western part) -> the western part (2521ms)\nWhat is relative humidity?\tpercentage\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is measured in, percentage) -> percentage (2518ms)\nWhat is relative humidity?\tthe daytime , 95 %\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is typically 70 % in, the daytime , 95 %) -> the daytime , 95 % (2516ms)\nWhat is relative humidity?\tthe daytime\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The lowest relative humidity, is found generally in, the daytime) -> the daytime (2513ms)\nWhat is relative humidity?\textensive drying craquelure\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, had resulted in, extensive drying craquelure) -> extensive drying craquelure (2519ms)\nWhat is relative humidity?\tJuly\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is the highest in, July) -> July (2522ms)\nWhat is relative humidity?\ta home environment\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, goes down in, a home environment) -> a home environment (2518ms)\nWhat is relative humidity?\tthe coastal region\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is highest in, the coastal region) -> the coastal region (2516ms)\nWhat is relative humidity?\texcess\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is in, excess) -> excess (2518ms)\nWhat is relative humidity?\tthe low 30 % range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is in, the low 30 % range) -> the low 30 % range (2522ms)\nWhat is relative humidity?\tthe arid environment\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is low in, the arid environment) -> the arid environment (2521ms)\nWhat is relative humidity?\tthe table below\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidities, shown in, the table below) -> the table below (2522ms)\nWhat is relative humidity?\tconnection\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, were recorded hourly in, connection) -> connection (2519ms)\nWhat is relative humidity?\tBioko\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is higher than in, Bioko) -> Bioko (2521ms)\nWhat is relative humidity?\ta range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, should be kept in, a range) -> a range (2521ms)\nWhat is relative humidity?\tspring\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The average relative humidity, was 70 % in, spring) -> spring (2521ms)\nWhat is relative humidity?\tthe high 90s\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, has a diurnal range in, the high 90s) -> the high 90s (2521ms)\nWhat is relative humidity?\tthe fuel\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is in, the fuel) -> the fuel (2522ms)\nWhat is relative humidity?\tthe guitar\t-0.0\tWhat is relative humidity? -> $x: ($x, get, relative humidity) -> (the guitar, gets below, 30 % relative humidity) -> the guitar (2521ms)\nWhat is relative humidity?\teffect\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, is in, effect) -> effect (2518ms)\nWhat is relative humidity?\tan acceptable manner\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, are maintained in, an acceptable manner) -> an acceptable manner (2522ms)\nWhat is relative humidity?\tthe 15 to 30 % RH range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, should be in, the 15 to 30 % RH range) -> the 15 to 30 % RH range (2522ms)\nWhat is relative humidity?\tthe calculation\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity values, are used in, the calculation) -> the calculation (2516ms)\nWhat is relative humidity?\texcellent condition\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (90 % relative humidity, were in, excellent condition) -> excellent condition (2520ms)\nWhat is relative humidity?\tApril\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Average relative humidity, is 60 % in, April) -> April (2522ms)\nWhat is relative humidity?\ta forest\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is usually greater in, a forest) -> a forest (2513ms)\nWhat is relative humidity?\tthe INDOOR\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, are displayed in, the INDOOR) -> the INDOOR (2521ms)\nWhat is relative humidity?\tpercent\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is expressed in, percent) -> percent (2522ms)\nWhat is relative humidity?\tthe morning\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity, is highest in, the morning) -> the morning (2522ms)\nWhat is relative humidity?\tthe 10 % to 20 % range\t-0.0\tWhat is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is often in, the 10 % to 20 % range) -> the 10 % to 20 % range (2518ms)\nWhat is relative humidity?\ths0\t-0.111111111112\tWhat is relative humidity? -> $x: ($x, be use as, relative humidity) -> (hs0, is used as, the relative humidity) -> hs0 (2522ms)\nWhat is relative humidity?\tThe Humidity class\t-0.33333333333299997\tWhat is relative humidity? -> $x: ($x, implement, relative humidity) -> (The Humidity class, implements a concept of, a relative humidity) -> The Humidity class (2522ms)\nWhat is relative humidity?\tunderstanding students\t-0.33333333333299997\tWhat is relative humidity? -> $x: ($x, concerned, relative humidity) -> (understanding students, may have concerning, relative humidity) -> understanding students (2522ms)\nWhat is relative humidity?\ta free travel\t-0.555555555554\tWhat is relative humidity? -> $x: ($x, size, humidity) -> (a free travel, sized, humidity-repellent hairspray) -> a free travel (2523ms)\nWho founded the Church of Jesus Christ of Latter-day Saints?\tStrangites\t1.111111111106\tWho founded the Church of Jesus Christ of Latter-day Saints? -> $x: ($x, found, jesus christ of latter day saints) -> (Strangites, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Church%20of%20Jesus%20Christ%20of%20Latter%20Day%20Saints%20(Strangite)) -> Strangites (1409ms)\nWhat was the nickname for the French team?\tLes Bleus\t1.6666666666530001\tWhat was the nickname for the French team? -> $x: ($x, be nickname of, french) -> (Les Bleus, is the nickname of, the French football team) -> Les Bleus (745ms)\nWhat was the nickname for the French team?\tFrankie\t1.444444444433\tWhat was the nickname for the French team? -> $x: ($x, be nickname for, france) -> (Frankie, was a common nickname for, Frances) -> Frankie (745ms)\nWhat was the nickname for the French team?\tFrank\t1.444444444433\tWhat was the nickname for the French team? -> $x: ($x, be nickname for, france) -> (Frank, was a common nickname for, Frances) -> Frank (746ms)\nWhat was the nickname for the French team?\tSpiderman\t1.1111111110979999\tWhat was the nickname for the French team? -> $x: ($x, be nickname give to, french) -> (Spiderman, is the nickname given to, French climber Alain Robert) -> Spiderman (746ms)\nWhat was the nickname for the French team?\tRed zone\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be nickname for, team) -> (Red zone, is a nickname for, the defensive team) -> Red zone (978ms)\nWhat was the nickname for the French team?\tKatie Martin VOID\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be word for, team) -> (Katie Martin VOID, is an unmentionable word for, the expert team) -> Katie Martin VOID (978ms)\nWhat was the nickname for the French team?\tTigers\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be word for, team) -> (Tigers, is just too strong a word for, this team) -> Tigers (978ms)\nWhat was the nickname for the French team?\tOMADA\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be word for, team) -> (OMADA, IS THE GREEK WORD FOR, TEAM.) -> OMADA (978ms)\nWhat was the nickname for the French team?\tService and friendliness\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be word for, team) -> (Service and friendliness, are key words for, our management team) -> Service and friendliness (1089ms)\nWhat was the nickname for the French team?\ta last place team Pesky\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be word for, team) -> (a last place team Pesky, is the word for, this team) -> a last place team Pesky (978ms)\nWhat was the nickname for the French team?\t?Triplets ?\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be word for, team) -> (?Triplets ?, is basically the buzz word for, a teams) -> ?Triplets ? (978ms)\nWhat was the nickname for the French team?\t?All ya?ll ?\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be word for, team) -> (?All ya?ll ?, is just another word for, team) -> ?All ya?ll ? (978ms)\nWhat was the nickname for the French team?\tImmersion\t0.333333333332\tWhat was the nickname for the French team? -> $x: ($x, be word for, team) -> (Immersion, is an important word for, the team) -> Immersion (978ms)\nWhat was the nickname for the French team?\tThe Azkals\t0.333333333331\tWhat was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (The Azkals, is the nickname of, our football team ..yes) -> The Azkals (1090ms)\nWhat was the nickname for the French team?\tThe second box\t0.333333333331\tWhat was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (The second box, is the nickname of, your team) -> The second box (1133ms)\nWhat was the nickname for the French team?\t? Tammy\t0.333333333331\tWhat was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (? Tammy, was the nickname of, their team) -> ? Tammy (1133ms)\nWhat was the nickname for the French team?\tthe Go-Go Sox\t0.333333333331\tWhat was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (the Go-Go Sox, are also nickname of, Chicago White Sox team) -> the Go-Go Sox (1090ms)\nWhat was the nickname for the French team?\tStanford Cardinal\t0.333333333331\tWhat was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (Stanford Cardinal, is the nickname of, the athletic teams) -> Stanford Cardinal (1089ms)\nWhat was the nickname for the French team?\tChivas\t0.333333333331\tWhat was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (Chivas, is the nickname of, the soccer team) -> Chivas (1090ms)\nWhat is the oldest university in the US?\tWilliam and Mary\t1.111111111105\tWhat is the oldest university in the US? -> $x: ($x, be oldest university in, us) -> (William and Mary, is the second oldest university in, the US.) -> William and Mary (641ms)\nWhat is the oldest university in the US?\tRensselaer\t1.111111111105\tWhat is the oldest university in the US? -> $x: ($x, be oldest university in, us) -> (Rensselaer, is the oldest technological university in, the U.S.) -> Rensselaer (642ms)\nWhat is the oldest university in the US?\tChapel Hill\t1.111111111105\tWhat is the oldest university in the US? -> $x: ($x, be oldest university in, us) -> (Chapel Hill, is the oldest public university in, the U.S.) -> Chapel Hill (642ms)\nWhat is the oldest university in the US?\tThe Quadrangle\t0.777777777774\tWhat is the oldest university in the US? -> $x: ($x, be oldest part of, university) -> (The Quadrangle, is the oldest part of, the University campus) -> The Quadrangle (1024ms)\nWhat is the oldest university in the US?\tHarvard Yard\t0.777777777774\tWhat is the oldest university in the US? -> $x: ($x, be oldest part of, university) -> (Harvard Yard, is the oldest part of, the Harvard University) -> Harvard Yard (1024ms)\nHow many sonnets did Shakespeare write?\twardrobe\t-0.555555555555\tHow many sonnets did Shakespeare write? -> $x: (william, be importance of, $x) -> (William, had been discussing the importance of, wardrobe) -> wardrobe (593ms)\nHow many sonnets did Shakespeare write?\tthe bat community\t-0.555555555555\tHow many sonnets did Shakespeare write? -> $x: (william, be know about, $x) -> (William E. Rainey, little was known about, the bat community) -> the bat community (593ms)\nHow many sonnets did Shakespeare write?\tCol\t-0.555555555555\tHow many sonnets did Shakespeare write? -> $x: (william, be know about, $x) -> (Colonel William Thrush Little, is known about, Col) -> Col (593ms)\nHow many sonnets did Shakespeare write?\tatmosphere safeguard\t-0.6666666666659999\tHow many sonnets did Shakespeare write? -> $x: (globe, be importance of, $x) -> (the globe, are knowing the importance of, atmosphere safeguard) -> atmosphere safeguard (593ms)\nHow many sonnets did Shakespeare write?\tthe overall results\t-0.6666666666659999\tHow many sonnets did Shakespeare write? -> $x: (globe, be know about, $x) -> (the globe, is known about, the overall results) -> the overall results (593ms)\nHow did Eva Peron die?\tcancer\t0.555555555554\tHow did Eva Peron die? -> $x: (eva peron, die of, $x) -> (Eva Peron, died of, cancer) -> cancer (1197ms)\nHow did Eva Peron die?\tMay 7 , 1919\t0.111111111111\tHow did Eva Peron die? -> $x: (eva peron, be bear on, $x) -> (Eva Peron Maria Eva Duarte, was born on, May 7 , 1919) -> May 7 , 1919 (1197ms)\nHow did Eva Peron die?\tArgentina\t0.111111111109\tHow did Eva Peron die? -> $x: (eva peron, die in, $x) -> (Eva Peron, died in, Argentina) -> Argentina (1197ms)\nHow did Eva Peron die?\tJuly 26 , 1952\t-0.0\tHow did Eva Peron die? -> $x: (eva peron, die, $x) -> (Eva Peron, died on, July 26 , 1952) -> July 26 , 1952 (1440ms)\nHow did Eva Peron die?\ta year later\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died, a year later) -> a year later (1440ms)\nHow did Eva Peron die?\tJuly 1 , 1974\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died on, July 1 , 1974) -> July 1 , 1974 (1440ms)\nHow did Eva Peron die?\t1952\t-0.0\tHow did Eva Peron die? -> $x: (peron, die in, $x) -> (Ms. Peron, died in, 1952) -> 1952 (1274ms)\nHow did Eva Peron die?\t1974\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died in, 1974) -> 1974 (1440ms)\nHow did Eva Peron die?\tJuly\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, dies in, July) -> July (1326ms)\nHow did Eva Peron die?\toffice\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (President Juan Peron, died in, office) -> office (1405ms)\nHow did Eva Peron die?\tJuly 26 , 1952 and Argentina\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died on, July 26 , 1952 and Argentina) -> July 26 , 1952 and Argentina (1326ms)\nHow did Eva Peron die?\t1810\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died in, 1810) -> 1810 (1440ms)\nHow did Eva Peron die?\tlast year\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (Peron-Wildes and Stephanie Lee, died, last year) -> last year (1405ms)\nHow did Eva Peron die?\tage 33\t-0.0\tHow did Eva Peron die? -> $x: (peron, die, $x) -> (Evita Peron, died at, age 33) -> age 33 (1405ms)\nHow did Eva Peron die?\tthe musical?s premiere performance\t-0.111111111112\tHow did Eva Peron die? -> $x: (eva peron, do, $x) -> (Eva Peron, did so in, the musical?s premiere performance) -> the musical?s premiere performance (1440ms)\nHow did Eva Peron die?\tBuenos Aires\t-0.222222222222\tHow did Eva Peron die? -> $x: (eva peron, be bury in, $x) -> (Eva Peron, is buried in, Buenos Aires) -> Buenos Aires (1440ms)\nHow did Eva Peron die?\t1922\t-0.333333333334\tHow did Eva Peron die? -> $x: (eva peron, be bear in, $x) -> (3557 EVA PERON BIOGRAPHY Eva Peron, was born in, 1922) -> 1922 (1448ms)\nHow did Eva Peron die?\tOctober 21 , 1945\t-0.333333333334\tHow did Eva Peron die? -> $x: (peron, marry, $x) -> (Juan Peron and Eva, were married on, October 21 , 1945) -> October 21 , 1945 (1448ms)\nHow did Eva Peron die?\tthe former actress Eva Duarte\t-0.333333333334\tHow did Eva Peron die? -> $x: (peron, marry, $x) -> (Peron, married, the former actress Eva Duarte) -> the former actress Eva Duarte (1448ms)\nWhat was Thailand's original name?\ta unique collection\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (a unique collection, sourced entirely from, Thailand) -> a unique collection (838ms)\nWhat was Thailand's original name?\tgem\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (gem, sourced from, Thailand) -> gem (839ms)\nWhat was Thailand's original name?\thand\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (hand, sourced from, Thailand) -> hand (882ms)\nWhat was Thailand's original name?\tTripAdvisor\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (TripAdvisor, is the source for, Thailand information) -> TripAdvisor (838ms)\nWhat was Thailand's original name?\tthe trucks\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (the trucks, will be sourced from, Thailand) -> the trucks (838ms)\nWhat was Thailand's original name?\tThe paste\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (The paste, is sourced from, Thailand) -> The paste (838ms)\nWhat was Thailand's original name?\t13-15 %\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (13-15 %, is being sourced from, Thailand) -> 13-15 % (838ms)\nWhat was Thailand's original name?\tcritical parts\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (critical parts, sourced from, Thailand) -> critical parts (882ms)\nWhat was Thailand's original name?\tA few critical electronic parts\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (A few critical electronic parts, are sourced from, Thailand) -> A few critical electronic parts (839ms)\nWhat was Thailand's original name?\tincome\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (income, sourced in, Thailand) -> income (882ms)\nWhat was Thailand's original name?\tthe equation\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (the equation, are sourced from, Thailand) -> the equation (882ms)\nWhat was Thailand's original name?\tservice product\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (service product, sourcing, company in Thailand) -> service product (838ms)\nWhat was Thailand's original name?\tLansinoh?s core products\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (Lansinoh?s core products, are sourced in, Thailand) -> Lansinoh?s core products (882ms)\nWhat was Thailand's original name?\trims\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (rims, sourced from, Thailand) -> rims (933ms)\nWhat was Thailand's original name?\tindigenous ingredients\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (indigenous ingredients, sourced from, Thailand) -> indigenous ingredients (882ms)\nWhat was Thailand's original name?\tthe desserts\t0.9999999999959999\tWhat was Thailand's original name? -> $x: ($x, source, thailand) -> (the desserts, are sourced from, Thailand) -> the desserts (882ms)\nWhat was Thailand's original name?\tliterally ?first time ?\t-0.666666666666\tWhat was Thailand's original name? -> $x: ($x, be origin of, french) -> (literally ?first time ?, is the origin of, the French word) -> literally ?first time ? (934ms)\nWhat was Thailand's original name?\tThe word roe\t-0.666666666666\tWhat was Thailand's original name? -> $x: ($x, be origin of, french) -> (The word roe, is the origin of, the French word roi) -> The word roe (934ms)\nWhat was Thailand's original name?\tLyon\t-0.666666666666\tWhat was Thailand's original name? -> $x: ($x, be origin of, french) -> (Lyon, is the origin of, French Bistro) -> Lyon (934ms)\nWhat was Thailand's original name?\tBeauty, unaccompanied by virtue, is as a flower without perfume.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Beauty, unaccompanied by virtue, is as a flower without perfume., Source, French Proverb) -> Beauty, unaccompanied by virtue, is as a flower without perfume. (1691ms)\nWhat was Thailand's original name?\tThe Latin vagus means\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (The Latin vagus means, is the source of, the French and) -> The Latin vagus means (2088ms)\nWhat was Thailand's original name?\tIn love, there is always one who kisses and one who offers the cheek.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (In love, there is always one who kisses and one who offers the cheek., Source, French Proverb) -> In love, there is always one who kisses and one who offers the cheek. (2088ms)\nWhat was Thailand's original name?\tHe that is born to be hanged shall never be drowned.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (He that is born to be hanged shall never be drowned., Source, French Proverb) -> He that is born to be hanged shall never be drowned. (2091ms)\nWhat was Thailand's original name?\tIf youth but had the knowledge and old age the strength.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (If youth but had the knowledge and old age the strength., Source, French Proverb) -> If youth but had the knowledge and old age the strength. (1691ms)\nWhat was Thailand's original name?\tFrench Garden House\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (French Garden House, is a great source for, French linens) -> French Garden House (2088ms)\nWhat was Thailand's original name?\tAFP\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (AFP, cite sources from, the French club) -> AFP (1952ms)\nWhat was Thailand's original name?\tThe man who has nothing to do is always the busiest.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (The man who has nothing to do is always the busiest., Source, French Proverb) -> The man who has nothing to do is always the busiest. (2088ms)\nWhat was Thailand's original name?\tThere is nothing new, but what has become antiquated.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (There is nothing new, but what has become antiquated., Source, French Proverb) -> There is nothing new, but what has become antiquated. (1732ms)\nWhat was Thailand's original name?\tThe third form\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (The third form, has its source in, the French Revolution) -> The third form (2029ms)\nWhat was Thailand's original name?\tWe know the true worth of a thing when we have lost it.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (We know the true worth of a thing when we have lost it., Source, French Proverb) -> We know the true worth of a thing when we have lost it. (2088ms)\nWhat was Thailand's original name?\tthe unit\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, singapore) -> (the unit, is sourced from, ( Singapore/Malaysia/other) -> the unit (979ms)\nWhat was Thailand's original name?\tA good meal ought to begin with hunger.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (A good meal ought to begin with hunger., Source, French Proverb) -> A good meal ought to begin with hunger. (2088ms)\nWhat was Thailand's original name?\tNothing is more elegant than ready money!\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Nothing is more elegant than ready money!, Source, French Proverb) -> Nothing is more elegant than ready money! (2091ms)\nWhat was Thailand's original name?\tWhy kill time when one can employ it.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Why kill time when one can employ it., Source, French Proverb) -> Why kill time when one can employ it. (2089ms)\nWhat was Thailand's original name?\tLife is an onion and one cries while peeling it.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Life is an onion and one cries while peeling it., Source, French Proverb) -> Life is an onion and one cries while peeling it. (2030ms)\nWhat was Thailand's original name?\tWhen we don't have what we like, we must like what we have.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (When we don't have what we like, we must like what we have., Source, French Proverb) -> When we don't have what we like, we must like what we have. (2074ms)\nWhat was Thailand's original name?\tNever speak of a rope in the family of one who has been hanged.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Never speak of a rope in the family of one who has been hanged., Source, French Proverb) -> Never speak of a rope in the family of one who has been hanged. (2074ms)\nWhat was Thailand's original name?\tBordeaux\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, be source of, french) -> (Bordeaux, is also the source of, the famous French sweet wines) -> Bordeaux (1076ms)\nWhat was Thailand's original name?\tFear is a great inventor.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Fear is a great inventor., Source, French Proverb) -> Fear is a great inventor. (2089ms)\nWhat was Thailand's original name?\tFort Loudoun Lake\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Fort Loudoun Lake, Inflow source(s), French Broad River) -> Fort Loudoun Lake (2074ms)\nWhat was Thailand's original name?\tThe French work to live, but the Swiss live to work.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (The French work to live, but the Swiss live to work., Source, French Proverb) -> The French work to live, but the Swiss live to work. (1952ms)\nWhat was Thailand's original name?\tWho loves well, chastises well.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Who loves well, chastises well., Source, French Proverb) -> Who loves well, chastises well. (1732ms)\nWhat was Thailand's original name?\tNone are more haughty than a common place person raised to power.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (None are more haughty than a common place person raised to power., Source, French Proverb) -> None are more haughty than a common place person raised to power. (2030ms)\nWhat was Thailand's original name?\tFew people rise to our esteem upon closer scrutiny.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Few people rise to our esteem upon closer scrutiny., Source, French Proverb) -> Few people rise to our esteem upon closer scrutiny. (2089ms)\nWhat was Thailand's original name?\tHe who comes from afar may lie without fear of contradiction as he is sure to be listened to with the utmost attention.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (He who comes from afar may lie without fear of contradiction as he is sure to be listened to with the utmost attention., Source, French Proverb) -> He who comes from afar may lie without fear of contradiction as he is sure to be listened to with the utmost attention. (1732ms)\nWhat was Thailand's original name?\tPenny wise is often pound foolish.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Penny wise is often pound foolish., Source, French Proverb) -> Penny wise is often pound foolish. (2091ms)\nWhat was Thailand's original name?\tEveryone according to their talent and every talent according to its work.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Everyone according to their talent and every talent according to its work., Source, French Proverb) -> Everyone according to their talent and every talent according to its work. (1691ms)\nWhat was Thailand's original name?\tDuck rillette\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Duck rillette, sourced from, free-range French farms) -> Duck rillette (2074ms)\nWhat was Thailand's original name?\tNo wind is of service to him that is bound for nowhere.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (No wind is of service to him that is bound for nowhere., Source, French Proverb) -> No wind is of service to him that is bound for nowhere. (2091ms)\nWhat was Thailand's original name?\tSave a thief from the gallows and he will cut your throat.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Save a thief from the gallows and he will cut your throat., Source, French Proverb) -> Save a thief from the gallows and he will cut your throat. (2091ms)\nWhat was Thailand's original name?\tIt's good to be clever, but not to show it.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (It's good to be clever, but not to show it., Source, French Proverb) -> It's good to be clever, but not to show it. (1691ms)\nWhat was Thailand's original name?\tThere are two great pleasures in gambling: that of winning and that of losing.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (There are two great pleasures in gambling: that of winning and that of losing., Source, French Proverb) -> There are two great pleasures in gambling: that of winning and that of losing. (2091ms)\nWhat was Thailand's original name?\tLaughing is not always the proof of a mind at ease.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Laughing is not always the proof of a mind at ease., Source, French Proverb) -> Laughing is not always the proof of a mind at ease. (2091ms)\nWhat was Thailand's original name?\tHope is the dream of a soul awake.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Hope is the dream of a soul awake., Source, French Proverb) -> Hope is the dream of a soul awake. (2088ms)\nWhat was Thailand's original name?\tLCS Stamps\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (LCS Stamps, is a good source for, older French area stamps) -> LCS Stamps (2074ms)\nWhat was Thailand's original name?\tNothing resembles an honest man more than a cheat.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Nothing resembles an honest man more than a cheat., Source, French Proverb) -> Nothing resembles an honest man more than a cheat. (2088ms)\nWhat was Thailand's original name?\tLove makes time pass away and time makes love pass away.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Love makes time pass away and time makes love pass away., Source, French Proverb) -> Love makes time pass away and time makes love pass away. (2091ms)\nWhat was Thailand's original name?\tLiberty has no crueler enemy than license.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Liberty has no crueler enemy than license., Source, French Proverb) -> Liberty has no crueler enemy than license. (1952ms)\nWhat was Thailand's original name?\tIt is a wise man who lives with money in the bank, it is a fool who dies that way.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (It is a wise man who lives with money in the bank, it is a fool who dies that way., Source, French Proverb) -> It is a wise man who lives with money in the bank, it is a fool who dies that way. (1691ms)\nWhat was Thailand's original name?\tWhat makes us discontented with our condition is the absurdly exaggerated idea we have of the happiness of others.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (What makes us discontented with our condition is the absurdly exaggerated idea we have of the happiness of others., Source, French Proverb) -> What makes us discontented with our condition is the absurdly exaggerated idea we have of the happiness of others. (2088ms)\nWhat was Thailand's original name?\tGreat talker, great liar.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Great talker, great liar., Source, French Proverb) -> Great talker, great liar. (2089ms)\nWhat was Thailand's original name?\tThere is something in the misfortune of our best friends which does not displease us.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (There is something in the misfortune of our best friends which does not displease us., Source, French Proverb) -> There is something in the misfortune of our best friends which does not displease us. (2088ms)\nWhat was Thailand's original name?\tA good lawyer is a bad neighbor.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (A good lawyer is a bad neighbor., Source, French Proverb) -> A good lawyer is a bad neighbor. (1952ms)\nWhat was Thailand's original name?\tA good swordsman is not given to quarrel.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (A good swordsman is not given to quarrel., Source, French Proverb) -> A good swordsman is not given to quarrel. (2088ms)\nWhat was Thailand's original name?\tHe who is near the Church is often far from God.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (He who is near the Church is often far from God., Source, French Proverb) -> He who is near the Church is often far from God. (1952ms)\nWhat was Thailand's original name?\tpart\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (part, sourced from, a French vineyard) -> part (2089ms)\nWhat was Thailand's original name?\tAgainst change of fortune set a brave heart.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Against change of fortune set a brave heart., Source, French Proverb) -> Against change of fortune set a brave heart. (1952ms)\nWhat was Thailand's original name?\tGlutton: one who digs his grave with his teeth.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Glutton: one who digs his grave with his teeth., Source, French Proverb) -> Glutton: one who digs his grave with his teeth. (2089ms)\nWhat was Thailand's original name?\tduck fat\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (duck fat, sourced from, free-frange French duck farms) -> duck fat (2091ms)\nWhat was Thailand's original name?\tOne is rated by others as he rates himself.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (One is rated by others as he rates himself., Source, French Proverb) -> One is rated by others as he rates himself. (1732ms)\nWhat was Thailand's original name?\tDesperate maladies require desperate remedies.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Desperate maladies require desperate remedies., Source, French Proverb) -> Desperate maladies require desperate remedies. (2074ms)\nWhat was Thailand's original name?\tthe great target\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (the great target, is also the great source of, French alterity) -> the great target (2074ms)\nWhat was Thailand's original name?\tDuck\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Duck, sourced from, free-range french farms) -> Duck (2030ms)\nWhat was Thailand's original name?\tthe author\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, singapore) -> (the author, identifies the source of, the Singapore) -> the author (980ms)\nWhat was Thailand's original name?\tOne meets his destiny often in the road he takes to avoid it.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (One meets his destiny often in the road he takes to avoid it., Source, French Proverb) -> One meets his destiny often in the road he takes to avoid it. (2074ms)\nWhat was Thailand's original name?\tLife is half spent before one knows what it is.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Life is half spent before one knows what it is., Source, French Proverb) -> Life is half spent before one knows what it is. (2088ms)\nWhat was Thailand's original name?\tHe that parts with his property before his death prepares himself for much suffering.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (He that parts with his property before his death prepares himself for much suffering., Source, French Proverb) -> He that parts with his property before his death prepares himself for much suffering. (1952ms)\nWhat was Thailand's original name?\ta mineral water\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (a mineral water, sourced from, the French Alps) -> a mineral water (2090ms)\nWhat was Thailand's original name?\tDouglas Lake\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Douglas Lake, Inflow source(s), French Broad River) -> Douglas Lake (1691ms)\nWhat was Thailand's original name?\tA sin confessed is half forgiven.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (A sin confessed is half forgiven., Source, French Proverb) -> A sin confessed is half forgiven. (2089ms)\nWhat was Thailand's original name?\tQuebec\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, be source of, french) -> (Quebec, had been the top source of, B.C.?s French teachers) -> Quebec (1076ms)\nWhat was Thailand's original name?\tEverything passes, everything perishes, everything palls.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Everything passes, everything perishes, everything palls., Source, French Proverb) -> Everything passes, everything perishes, everything palls. (2089ms)\nWhat was Thailand's original name?\tThe bank\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, singapore) -> (The bank, is the only source in, Singapore) -> The bank (979ms)\nWhat was Thailand's original name?\tSet a thief to catch a thief.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Set a thief to catch a thief., Source, French Proverb) -> Set a thief to catch a thief. (2091ms)\nWhat was Thailand's original name?\tDon't dance on a volcano.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Don't dance on a volcano., Source, French Proverb) -> Don't dance on a volcano. (2074ms)\nWhat was Thailand's original name?\tDivorce is the sacrament of adultery.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Divorce is the sacrament of adultery., Source, French Proverb) -> Divorce is the sacrament of adultery. (2091ms)\nWhat was Thailand's original name?\tPeople will ignore their misfortunes and their interests when they are in competition with their pleasures.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (People will ignore their misfortunes and their interests when they are in competition with their pleasures., Source, French Proverb) -> People will ignore their misfortunes and their interests when they are in competition with their pleasures. (2089ms)\nWhat was Thailand's original name?\tIt is better to be the hammer than the anvil.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (It is better to be the hammer than the anvil., Source, French Proverb) -> It is better to be the hammer than the anvil. (2030ms)\nWhat was Thailand's original name?\tMore flies are caught with honey than with vinegar.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (More flies are caught with honey than with vinegar., Source, French Proverb) -> More flies are caught with honey than with vinegar. (2029ms)\nWhat was Thailand's original name?\tGratitude is the heart's memory.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Gratitude is the heart's memory., Source, French Proverb) -> Gratitude is the heart's memory. (2091ms)\nWhat was Thailand's original name?\tFashion is a tyrant from which there is no deliverance; all must conform to its whimsical.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Fashion is a tyrant from which there is no deliverance; all must conform to its whimsical., Source, French Proverb) -> Fashion is a tyrant from which there is no deliverance; all must conform to its whimsical. (2089ms)\nWhat was Thailand's original name?\tthe port and sea trading\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, be source of, singapore) -> (the port and sea trading, are the source of, Singapore) -> the port and sea trading (1077ms)\nWhat was Thailand's original name?\tWork relieves us from three great evils, boredom, vice, and want.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Work relieves us from three great evils, boredom, vice, and want., Source, French Proverb) -> Work relieves us from three great evils, boredom, vice, and want. (2090ms)\nWhat was Thailand's original name?\tThere are no miracles for those that have no faith in them.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (There are no miracles for those that have no faith in them., Source, French Proverb) -> There are no miracles for those that have no faith in them. (2088ms)\nWhat was Thailand's original name?\tBy continually scolding someone, they in time become accustomed to it and despise your reproof.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (By continually scolding someone, they in time become accustomed to it and despise your reproof., Source, French Proverb) -> By continually scolding someone, they in time become accustomed to it and despise your reproof. (2091ms)\nWhat was Thailand's original name?\tSkeptics are never deceived.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Skeptics are never deceived., Source, French Proverb) -> Skeptics are never deceived. (1732ms)\nWhat was Thailand's original name?\tA surgeon should be young a physician old.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (A surgeon should be young a physician old., Source, French Proverb) -> A surgeon should be young a physician old. (2089ms)\nWhat was Thailand's original name?\tPeople count the faults of those who keep them waiting.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (People count the faults of those who keep them waiting., Source, French Proverb) -> People count the faults of those who keep them waiting. (2088ms)\nWhat was Thailand's original name?\tHe that waits for a dead man's shoes may long go barefoot.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (He that waits for a dead man's shoes may long go barefoot., Source, French Proverb) -> He that waits for a dead man's shoes may long go barefoot. (2089ms)\nWhat was Thailand's original name?\tWithout grace beauty is an unabated hook.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Without grace beauty is an unabated hook., Source, French Proverb) -> Without grace beauty is an unabated hook. (1732ms)\nWhat was Thailand's original name?\tIndia\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, singapore) -> (India, sourced locally here in, Singapore}) -> India (980ms)\nWhat was Thailand's original name?\tGambling is the son of avarice and the father of despair.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Gambling is the son of avarice and the father of despair., Source, French Proverb) -> Gambling is the son of avarice and the father of despair. (1952ms)\nWhat was Thailand's original name?\tI know by my own pot how the others boil.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (I know by my own pot how the others boil., Source, French Proverb) -> I know by my own pot how the others boil. (2088ms)\nWhat was Thailand's original name?\tPeople always make the wolf more formidable than he is.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (People always make the wolf more formidable than he is., Source, French Proverb) -> People always make the wolf more formidable than he is. (2074ms)\nWhat was Thailand's original name?\tA closed mouth catches no flies.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (A closed mouth catches no flies., Source, French Proverb) -> A closed mouth catches no flies. (1732ms)\nWhat was Thailand's original name?\tPartir, c'est mourir un peu. (To leave is to die a little.)\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Partir, c'est mourir un peu. (To leave is to die a little.), Source, French Proverb) -> Partir, c'est mourir un peu. (To leave is to die a little.) (2091ms)\nWhat was Thailand's original name?\tThere are more fools among buyers than among sellers.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (There are more fools among buyers than among sellers., Source, French Proverb) -> There are more fools among buyers than among sellers. (2089ms)\nWhat was Thailand's original name?\tWhen a blind man bears the standard, pity those who follow.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (When a blind man bears the standard, pity those who follow., Source, French Proverb) -> When a blind man bears the standard, pity those who follow. (2091ms)\nWhat was Thailand's original name?\tIn the councils of a state, the question is not so much, what ought to be done? As, what can be done?\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (In the councils of a state, the question is not so much, what ought to be done? As, what can be done?, Source, French Proverb) -> In the councils of a state, the question is not so much, what ought to be done? As, what can be done? (2074ms)\nWhat was Thailand's original name?\tAppetite comes with eating; the more one has, the more one would have.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Appetite comes with eating; the more one has, the more one would have., Source, French Proverb) -> Appetite comes with eating; the more one has, the more one would have. (2029ms)\nWhat was Thailand's original name?\tA father is a banker provided by nature.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (A father is a banker provided by nature., Source, French Proverb) -> A father is a banker provided by nature. (2091ms)\nWhat was Thailand's original name?\tCrispus\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Crispus, is also the source of, French cr?pe) -> Crispus (2089ms)\nWhat was Thailand's original name?\tYouth lives on hope, old age on memories.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Youth lives on hope, old age on memories., Source, French Proverb) -> Youth lives on hope, old age on memories. (1691ms)\nWhat was Thailand's original name?\tTo believe a thing is impossible is to make it so.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (To believe a thing is impossible is to make it so., Source, French Proverb) -> To believe a thing is impossible is to make it so. (2074ms)\nWhat was Thailand's original name?\tproducts\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (products, sourced from, artisan UK and French Producers) -> products (2074ms)\nWhat was Thailand's original name?\tThe while we keep a man waiting, he reflects on our shortcomings.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (The while we keep a man waiting, he reflects on our shortcomings., Source, French Proverb) -> The while we keep a man waiting, he reflects on our shortcomings. (1732ms)\nWhat was Thailand's original name?\tOne may go a long way after one is tired.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (One may go a long way after one is tired., Source, French Proverb) -> One may go a long way after one is tired. (2089ms)\nWhat was Thailand's original name?\tMarriage is the sunset of love.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Marriage is the sunset of love., Source, French Proverb) -> Marriage is the sunset of love. (1691ms)\nWhat was Thailand's original name?\ta plant\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (a plant, has its source in, the French Polynesian islands) -> a plant (2091ms)\nWhat was Thailand's original name?\tSpeak little and well if you wish to be esteemed a person of merit.\t-0.777777777774\tWhat was Thailand's original name? -> $x: ($x, source, french) -> (Speak little and well if you wish to be esteemed a person of merit., Source, French Proverb) -> Speak little and well if you wish to be esteemed a person of merit. (2088ms)\nWhat was Thailand's original name?\tRattanakosin Island\t-0.7777777777770001\tWhat was Thailand's original name? -> $x: ($x, be origin of, bangkok) -> (Rattanakosin Island, is the origin of, Bangkok history) -> Rattanakosin Island (2091ms)\nWhat was Thailand's original name?\tthe historical center\t-0.7777777777770001\tWhat was Thailand's original name? -> $x: ($x, be origin of, bangkok) -> (the historical center, is the origin of, modern Bangkok) -> the historical center (2091ms)\nWhat was Thailand's original name?\tSpreadsheet Upload about the 2012 World Film Festival of Bangkok\t-0.8888888888850001\tWhat was Thailand's original name? -> $x: ($x, source, bangkok) -> (Spreadsheet Upload about the 2012 World Film Festival of Bangkok, Information Source, World Film Festival of Bangkok) -> Spreadsheet Upload about the 2012 World Film Festival of Bangkok (2091ms)\nWhat was Thailand's original name?\tjon\t-0.8888888888850001\tWhat was Thailand's original name? -> $x: ($x, source, bangkok) -> (jon, Source, World Film Festival of Bangkok) -> jon (2091ms)\nWhat was Thailand's original name?\tan organisation\t-0.8888888888850001\tWhat was Thailand's original name? -> $x: ($x, be meaning of, french) -> (an organisation, meant to be representative of, French Muslims) -> an organisation (2091ms)\nWhat was Thailand's original name?\tan endeavor?\t-0.8888888888850001\tWhat was Thailand's original name? -> $x: ($x, be meaning of, french) -> (an endeavor?, is the meaning of, the French word entrepreneur) -> an endeavor? (2091ms)\nWhat was Thailand's original name?\tdirect export\t-0.888888888886\tWhat was Thailand's original name? -> $x: ($x, be purpose of, french) -> (direct export, was the chief purpose of, all French investments) -> direct export (2091ms)\nWhat was Thailand's original name?\tBahamas Home Rentals\t-1.111111111107\tWhat was Thailand's original name? -> $x: ($x, source, bahama) -> (Bahamas Home Rentals, is your source for, Bahama) -> Bahamas Home Rentals (2091ms)\nHow big is a keg?\tThe engine\t1.4444444444409998\tHow big is a keg? -> $x: ($x, be size of, keg) -> (The engine, is roughly the size of, a half keg) -> The engine (860ms)\nHow big is a keg?\tthe bulb\t1.0\tHow big is a keg? -> $x: ($x, size be, keg) -> (the bulb, is the right size for, your keg) -> the bulb (860ms)\nHow big is a keg?\tThe rod\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (The rod, is going to stay in, my keg) -> The rod (1099ms)\nHow big is a keg?\tswimmers\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (swimmers, would usually go to get, our kegs) -> swimmers (1099ms)\nHow big is a keg?\tYo\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (Yo, Go back to, your keg) -> Yo (860ms)\nHow big is a keg?\tsixteen-year-old Mario Rocha\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (sixteen-year-old Mario Rocha, went to, a keg party) -> sixteen-year-old Mario Rocha (860ms)\nHow big is a keg?\tBonehead\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (Bonehead, went out to, a teenage keg party) -> Bonehead (1099ms)\nHow big is a keg?\teggs or cheese\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (eggs or cheese, go to, The Keg) -> eggs or cheese (860ms)\nHow big is a keg?\tMs. Sheriff\t0.888888888888\tHow big is a keg? -> $x: ($x, eat, keg) -> (Ms. Sheriff, likes to eat at, the Keg) -> Ms. Sheriff (860ms)\nHow big is a keg?\tthe typical export size\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (the typical export size, may go down to, 380,500 kegs) -> the typical export size (1099ms)\nHow big is a keg?\tMoose\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (Moose, went to join, Keg and Jazz) -> Moose (860ms)\nHow big is a keg?\ta beer\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (a beer, then went to, The Keg) -> a beer (1099ms)\nHow big is a keg?\tSixty percent\t0.888888888888\tHow big is a keg? -> $x: ($x, go to, keg) -> (Sixty percent, goes to, the keg lines) -> Sixty percent (1099ms)\nHow big is a keg?\tBudweiser\t0.777777777778\tHow big is a keg? -> $x: ($x, need, keg) -> (Budweiser, needs to make, kegs) -> Budweiser (1615ms)\nHow big is a keg?\tJockey boxes\t0.777777777778\tHow big is a keg? -> $x: ($x, need, keg) -> (Jockey boxes, eliminate the need to keep, the entire keg cold) -> Jockey boxes (1615ms)\nHow big is a keg?\tIsland Potato Stout\t0.777777777778\tHow big is a keg? -> $x: ($x, need, keg) -> (Island Potato Stout, need to clean, more kegs) -> Island Potato Stout (1099ms)\nHow big is a keg?\tthe event\t0.777777777778\tHow big is a keg? -> $x: ($x, need, keg) -> (the event, needs more than just, one keg) -> the event (1099ms)\nHow big is a keg?\tthe Royal Navy\t0.777777777778\tHow big is a keg? -> $x: ($x, need, keg) -> (the Royal Navy, found its need for, barrels and kegs) -> the Royal Navy (1615ms)\nHow big is a keg?\tMultiple\t0.777777777778\tHow big is a keg? -> $x: ($x, need, keg) -> (Multiple, Needed, 4 D System Keg Coupler) -> Multiple (1615ms)\nHow big is a keg?\t2,857 pounds\t0.777777777778\tHow big is a keg? -> $x: (keg, have weight of, $x) -> (15 smaller kegs, had a total weight of, 2,857 pounds) -> 2,857 pounds (1099ms)\nHow big is a keg?\ta half dozen large nail mills\t0.777777777778\tHow big is a keg? -> $x: ($x, need, keg) -> (a half dozen large nail mills, needed a constant supply of, kegs) -> a half dozen large nail mills (1615ms)\nHow big is a keg?\ta kit\t0.777777777778\tHow big is a keg? -> $x: ($x, need, keg) -> (a kit, will need, a keg tap) -> a kit (1099ms)\nHow big is a keg?\ta those bar\t0.555555555554\tHow big is a keg? -> $x: ($x, size, keg) -> (a those bar, sized, kegs) -> a those bar (1615ms)\nHow big is a keg?\ta pint\t0.555555555554\tHow big is a keg? -> $x: ($x, size, keg) -> (a pint, sized, pony keg) -> a pint (1617ms)\nHow big is a keg?\tStrategic\t0.555555555554\tHow big is a keg? -> $x: ($x, size of, keg) -> (Strategic, has increased the size of, the Keg) -> Strategic (1615ms)\nHow big is a keg?\tfull or pony\t0.555555555554\tHow big is a keg? -> $x: ($x, size, keg) -> (full or pony, sized, kegs) -> full or pony (1615ms)\nHow big is a keg?\tBlack/Stainless Feature Accommodates full or pony\t0.555555555554\tHow big is a keg? -> $x: ($x, size, keg) -> (Black/Stainless Feature Accommodates full or pony, sized, kegs) -> Black/Stainless Feature Accommodates full or pony (1615ms)\nHow big is a keg?\ta pony\t0.555555555554\tHow big is a keg? -> $x: ($x, size, keg) -> (a pony, sized, keg) -> a pony (1615ms)\nHow big is a keg?\tThe Summit Freestanding Kegerator\t0.555555555554\tHow big is a keg? -> $x: ($x, size, keg) -> (The Summit Freestanding Kegerator, holds various sizes of, kegs) -> The Summit Freestanding Kegerator (1615ms)\nHow big is a keg?\tMore Images ? Accommodates full or pony\t0.555555555554\tHow big is a keg? -> $x: ($x, size, keg) -> (More Images ? Accommodates full or pony, sized, kegs) -> More Images ? Accommodates full or pony (1615ms)\nHow big is a keg?\ta wide boulevard\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (a water keg, did n?t need, a wide boulevard) -> a wide boulevard (1623ms)\nHow big is a keg?\tThe fuse\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (The fuse, is in, the powder keg) -> The fuse (1619ms)\nHow big is a keg?\tbeer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (beer, are in, a beer keg) -> beer (1621ms)\nHow big is a keg?\tWine\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Wine, is increasingly coming in, kegs) -> Wine (1619ms)\nHow big is a keg?\tMestan\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Mestan, is placed in, kegs) -> Mestan (1617ms)\nHow big is a keg?\tScotch Ale\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Scotch Ale, is in, the keg) -> Scotch Ale (1621ms)\nHow big is a keg?\tmuch beer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (much beer, is in, a keg) -> much beer (1617ms)\nHow big is a keg?\tOnce the beer and priming sugar\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Once the beer and priming sugar, are in, the keg) -> Once the beer and priming sugar (1623ms)\nHow big is a keg?\tThe wine\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (The wine, is then refined in, kegs) -> The wine (1621ms)\nHow big is a keg?\tgenmai miso\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (genmai miso, is fully aged in, cedarwood kegs) -> genmai miso (1617ms)\nHow big is a keg?\tthe majority\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the majority, was packaged in, wood kegs) -> the majority (1617ms)\nHow big is a keg?\ta fan\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (a fan, was in, a keg) -> a fan (1625ms)\nHow big is a keg?\treal ale\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (keg beer, does with, real ale) -> real ale (1623ms)\nHow big is a keg?\tKatalyst Kombucha?s accounts\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Katalyst Kombucha?s accounts, are delivered in, kegs) -> Katalyst Kombucha?s accounts (1626ms)\nHow big is a keg?\tThe beer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (The beer, is available in, keg) -> The beer (1626ms)\nHow big is a keg?\tthe above recipe\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the above recipe, has been in, the keg) -> the above recipe (1625ms)\nHow big is a keg?\tseveral hours\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (The tailgate keg taps, did n?t close for, several hours) -> several hours (1621ms)\nHow big is a keg?\tBeer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Beer, is available in, Kegs) -> Beer (1623ms)\nHow big is a keg?\tThe spoiled batch\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (The spoiled batch, had been in, the keg) -> The spoiled batch (1621ms)\nHow big is a keg?\tThe whole junction\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (The whole junction, was just covered in, beer kegs) -> The whole junction (1626ms)\nHow big is a keg?\tonly about 12 percent of the nation 's beer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (only about 12 percent of the nation 's beer, is sold in, kegs) -> only about 12 percent of the nation 's beer (1625ms)\nHow big is a keg?\ta night\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (a night, was in, the keg) -> a night (1619ms)\nHow big is a keg?\tbitters\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (bitters, were in, casks or kegs) -> bitters (1617ms)\nHow big is a keg?\tHow many cases\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (How many cases, are in, a keg) -> How many cases (1626ms)\nHow big is a keg?\tthe piece de resistance\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the piece de resistance, was in, a beer keg) -> the piece de resistance (1619ms)\nHow big is a keg?\tmid February 2012\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (kegs, will be able to do so by, mid February 2012) -> mid February 2012 (1621ms)\nHow big is a keg?\tmuch people\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (much people, much is left in, the keg) -> much people (1625ms)\nHow big is a keg?\tdraft\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (draft, is available in, kegs) -> draft (1625ms)\nHow big is a keg?\tbeer and wine and beer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (beer and wine and beer, may be served in, kegs) -> beer and wine and beer (1621ms)\nHow big is a keg?\tAntonino\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Antonino, was in, the keg cooler) -> Antonino (1626ms)\nHow big is a keg?\tHow many beers\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (How many beers, are in, a keg) -> How many beers (1625ms)\nHow big is a keg?\tMaster\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (KEGS, DOS, Master) -> Master (1621ms)\nHow big is a keg?\tblow\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (the powder keg, does, blow) -> blow (1625ms)\nHow big is a keg?\tdry hopping\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (dry hopping, is in, the keg) -> dry hopping (1621ms)\nHow big is a keg?\tthe need\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (keg beer dispensers, does away with, the need) -> the need (1623ms)\nHow big is a keg?\tThe beer , ale and stout\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (The beer , ale and stout, is packaged in, kegs) -> The beer , ale and stout (1617ms)\nHow big is a keg?\tsmoke powder\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (smoke powder, is often sold in, kegs) -> smoke powder (1617ms)\nHow big is a keg?\tHow much beer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (How much beer, is in, a keg) -> How much beer (1619ms)\nHow big is a keg?\tthe beer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the beer, is in, the keg) -> the beer (1623ms)\nHow big is a keg?\tHellsmoke Porter\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Hellsmoke Porter, will be heading out in, kegs) -> Hellsmoke Porter (1623ms)\nHow big is a keg?\tThe resulting ale\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (The resulting ale, was stored in, kegs) -> The resulting ale (1617ms)\nHow big is a keg?\tthe primary\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the primary, now is in, kegs) -> the primary (1623ms)\nHow big is a keg?\ta premium price\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (These converted kegs, do come at, a premium price) -> a premium price (1623ms)\nHow big is a keg?\tWhoop Pass\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Whoop Pass, is extra dry-hopped in, the keg) -> Whoop Pass (1621ms)\nHow big is a keg?\thome brew\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (home brew, can be in, the keg) -> home brew (1617ms)\nHow big is a keg?\tIodophor\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Iodophor, should be mixed in, the keg) -> Iodophor (1626ms)\nHow big is a keg?\tice\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (ice, is put in, the keg) -> ice (1619ms)\nHow big is a keg?\tnormal air\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (normal air, should be used in, kegs) -> normal air (1626ms)\nHow big is a keg?\tthe wines\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the wines, are being placed in, Keg www.) -> the wines (1619ms)\nHow big is a keg?\tthe cameras and lights\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the cameras and lights, was left in, the keg) -> the cameras and lights (1621ms)\nHow big is a keg?\tPM Re\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (PM Re, are in, a keg) -> PM Re (1617ms)\nHow big is a keg?\tthe trick\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (the keg, seemed to do, the trick) -> the trick (1625ms)\nHow big is a keg?\tthe money\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the money, has been brought in by, the keg) -> the money (1626ms)\nHow big is a keg?\tNebraska\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (a keg, did attend the University of, Nebraska) -> Nebraska (1619ms)\nHow big is a keg?\t10 gallon batches\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (a 1/2 barrel keg, will be doing, 10 gallon batches) -> 10 gallon batches (1619ms)\nHow big is a keg?\tsimilar tastes\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (similar tastes, are placed in, kegs) -> similar tastes (1625ms)\nHow big is a keg?\tBeers\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Beers, will be packaged in, both keg) -> Beers (1617ms)\nHow big is a keg?\tpressure\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (pressure, was equal in, both kegs) -> pressure (1621ms)\nHow big is a keg?\tJoseph Schlitz\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Joseph Schlitz, were busy rolling in, some kegs) -> Joseph Schlitz (1617ms)\nHow big is a keg?\tthe move\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (The keg-aerator, did n?t make, the move) -> the move (1623ms)\nHow big is a keg?\tbeer and pizza\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (Kegs and Kitchens, does, beer and pizza) -> beer and pizza (1617ms)\nHow big is a keg?\thow much beer\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (how much beer, was left in, the keg) -> how much beer (1623ms)\nHow big is a keg?\tAlberta projects\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Alberta projects, were in, Keg River) -> Alberta projects (1623ms)\nHow big is a keg?\ta enough plus sides\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (Corny kegs, just does n?t seem to have, a enough plus sides) -> a enough plus sides (1623ms)\nHow big is a keg?\tthe first Sylvers LP\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (Keg Johnson, did a good job on, the first Sylvers LP) -> the first Sylvers LP (1619ms)\nHow big is a keg?\tKids\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Kids, are useful in, keg preparation) -> Kids (1621ms)\nHow big is a keg?\tBlueberry Wheat\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Blueberry Wheat, is generally available only in, kegs) -> Blueberry Wheat (1624ms)\nHow big is a keg?\tthe early days wine\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the early days wine, was stored in, wooden kegs) -> the early days wine (1624ms)\nHow big is a keg?\ta number\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (a number, are available in, mini kegs) -> a number (1625ms)\nHow big is a keg?\tHB 1324\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (kegs, neither does, HB 1324) -> HB 1324 (1625ms)\nHow big is a keg?\tWachusett Ales\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Wachusett Ales, have been available in, kegs) -> Wachusett Ales (1623ms)\nHow big is a keg?\tthe period shipboard rum\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the period shipboard rum, was in, small kegs) -> the period shipboard rum (1617ms)\nHow big is a keg?\tthe camp\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (the camp, were packed in, kegs) -> the camp (1621ms)\nHow big is a keg?\tthe cover illustration\t0.444444444444\tHow big is a keg? -> $x: (keg, do, $x) -> (the birthday cheer keg, also did, the cover illustration) -> the cover illustration (1624ms)\nHow big is a keg?\ttrack\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (track, is left in, the keg) -> track (1625ms)\nHow big is a keg?\tGally and Mince\t0.444444444444\tHow big is a keg? -> $x: ($x, be in, keg) -> (Gally and Mince, are in, that keg) -> Gally and Mince (1625ms)\nHow big is a keg?\tHoda\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Hoda, was originally supposed to do, the keg stand) -> Hoda (1627ms)\nHow big is a keg?\tStar Barrels and DK Barrels return\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Star Barrels and DK Barrels return, so do, Steel Kegs) -> Star Barrels and DK Barrels return (1626ms)\nHow big is a keg?\ta frat boy\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (a frat boy, doing, a keg stand) -> a frat boy (1628ms)\nHow big is a keg?\tRob Orlando\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Rob Orlando, do, kegs) -> Rob Orlando (1627ms)\nHow big is a keg?\tseventeen-year-olds\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (seventeen-year-olds, do, keg stands) -> seventeen-year-olds (1628ms)\nHow big is a keg?\tPictures of you\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Pictures of you, doing, keg stands) -> Pictures of you (1627ms)\nHow big is a keg?\t6.8\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (6.8, long do, Mini Kegs) -> 6.8 (1628ms)\nHow big is a keg?\tthe guy\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (the guy, did used to destroy, a keg) -> the guy (1628ms)\nHow big is a keg?\tPBR\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (PBR, did n?t even come in, the table keg variety) -> PBR (1627ms)\nHow big is a keg?\tshots\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (shots, do, keg stands) -> shots (1627ms)\nHow big is a keg?\tGert\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Gert, does indeed examine, the keg) -> Gert (1627ms)\nHow big is a keg?\tMohr\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Mohr, also does only, kegs--no time) -> Mohr (1626ms)\nHow big is a keg?\tThe stupid human tricks\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (The stupid human tricks, as did, the 5 kegs) -> The stupid human tricks (1628ms)\nHow big is a keg?\tWar\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (War, did, his first keg stand) -> War (1628ms)\nHow big is a keg?\tWould Jesus\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Would Jesus, do, a keg stand) -> Would Jesus (1626ms)\nHow big is a keg?\tRaffi\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Raffi, did a couple of, keg stands) -> Raffi (1627ms)\nHow big is a keg?\tthe performers\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (the performers, do, a balancing keg stand) -> the performers (1626ms)\nHow big is a keg?\tRoger\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Roger, does, an impressive keg stand) -> Roger (1627ms)\nHow big is a keg?\tCraig\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Craig, do, keg stands) -> Craig (1628ms)\nHow big is a keg?\tan online school\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (an online school, exactly does, the online keg party work) -> an online school (1628ms)\nHow big is a keg?\tadult responsibilities\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (adult responsibilities, do, keg stands) -> adult responsibilities (1627ms)\nHow big is a keg?\tGrandma\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Grandma, does, a keg-stand) -> Grandma (1628ms)\nHow big is a keg?\tBritain\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Britain, really does become, a powder-keg) -> Britain (1627ms)\nHow big is a keg?\tteasing\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (teasing, be forced to do, a keg stand) -> teasing (1629ms)\nHow big is a keg?\ta bottle\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (a bottle, do so in, a keg) -> a bottle (1628ms)\nHow big is a keg?\ta single one\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (a single one, does, a keg stand) -> a single one (1628ms)\nHow big is a keg?\tan D\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (an D, did, some keg stands) -> an D (1628ms)\nHow big is a keg?\tthe Cathedral front balcony and people\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (the Cathedral front balcony and people, were doing, keg stands) -> the Cathedral front balcony and people (1628ms)\nHow big is a keg?\tQ BBQ & Tequila\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Q BBQ & Tequila, is doing something special at, Keg & Kitchen) -> Q BBQ & Tequila (1628ms)\nHow big is a keg?\tStep 4\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Step 4, Do, your first Keg Stand) -> Step 4 (1627ms)\nHow big is a keg?\tthe Orcs and Tauren\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (the Orcs and Tauren, are doing, keg stands) -> the Orcs and Tauren (1626ms)\nHow big is a keg?\tmore attention\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (more attention, do, Sankey kegs) -> more attention (1629ms)\nHow big is a keg?\tnight\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (night, did at, least one keg stand) -> night (1628ms)\nHow big is a keg?\tthe staff\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (the staff, did, keg one) -> the staff (1628ms)\nHow big is a keg?\tThe mousy librarian\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (The mousy librarian, doing, drunken keg) -> The mousy librarian (1627ms)\nHow big is a keg?\tRosie\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Rosie, is doing, a keg stand) -> Rosie (1627ms)\nHow big is a keg?\tPark + Vine\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Park + Vine, does n?t yet have, a kombucha keg) -> Park + Vine (1628ms)\nHow big is a keg?\tLets\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Lets, go do, keg stands) -> Lets (1628ms)\nHow big is a keg?\tMaryland\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Maryland, do, keg stands) -> Maryland (1626ms)\nHow big is a keg?\t3pm and\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (3pm and, so does, the keg) -> 3pm and (1628ms)\nHow big is a keg?\tPat\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Pat, also did, a keg stand) -> Pat (1627ms)\nHow big is a keg?\tJimmy Fallon\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Jimmy Fallon, did, a keg stand) -> Jimmy Fallon (1628ms)\nHow big is a keg?\tI?ll\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (I?ll, even get around to doing, the keg sprints) -> I?ll (1627ms)\nHow big is a keg?\tGosling\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (Gosling, is doing, keg stands) -> Gosling (1628ms)\nHow big is a keg?\tthe bride and groom\t0.333333333333\tHow big is a keg? -> $x: ($x, do, keg) -> (the bride and groom, did, keg-stands) -> the bride and groom (1626ms)\nHow big is a keg?\tone plant\t-0.0\tHow big is a keg? -> $x: (keg, be size, $x) -> (That old keg, was the perfect size for, one plant) -> one plant (1629ms)\nWhere is Santa Lucia?\tthe centre\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Santa Lucia Hotel, is located in, the centre) -> the centre (1035ms)\nWhere is Santa Lucia?\tthe historic centre\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Santa Lucia, is located in, the historic centre) -> the historic centre (1035ms)\nWhere is Santa Lucia?\tfront\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (the Santa Lucia Church, is located right in, front) -> front (999ms)\nWhere is Santa Lucia?\tMonterey County\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (The Santa Lucia Highlands, are located in, Monterey County) -> Monterey County (1035ms)\nWhere is Santa Lucia?\tMinori\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (map Hotel Santa Lucia, is located in, Minori) -> Minori (999ms)\nWhere is Santa Lucia?\tNaples\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Grand Hotel Santa Lucia, is located in, Naples) -> Naples (998ms)\nWhere is Santa Lucia?\tsouthern Sonora State\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Santa Lucia, is located in, southern Sonora State) -> southern Sonora State (998ms)\nWhere is Santa Lucia?\tCalifornia\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Santa Lucia Preserve, is located in, California) -> California (1035ms)\nWhere is Santa Lucia?\tDOWNTOWN ZACATECAS\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (THE CASA SANTA LUCIA HOTEL, IS LOCATED IN, DOWNTOWN ZACATECAS) -> DOWNTOWN ZACATECAS (998ms)\nWhere is Santa Lucia?\tTesistan Jalisco\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (the Santa Lucia Distillery, is located in, Tesistan Jalisco) -> Tesistan Jalisco (999ms)\nWhere is Santa Lucia?\tthe city center\t0.111111111109\tWhere is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (the Santa Lucia Hill, is located in, the city center) -> the city center (998ms)\nWhere is Santa Lucia?\tFrancesco Borromini\t-0.0\tWhere is Santa Lucia? -> $x: ($x, design, santa lucia) -> (Francesco Borromini, Structures Designed, Santa Lucia in Selci) -> Francesco Borromini (1103ms)\nWhere is Santa Lucia?\tProvince of L'Aquila\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of L'Aquila, Contains, Villa Santa Lucia degli Abruzzi) -> Province of L'Aquila (1280ms)\nWhere is Santa Lucia?\tKingdom of Lombardy?Venetia\t-0.0\tWhere is Santa Lucia? -> $x: ($x, event, santa lucia) -> (Kingdom of Lombardy?Venetia, Events, Battle of Santa Lucia) -> Kingdom of Lombardy?Venetia (1280ms)\nWhere is Santa Lucia?\tSicily\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Sicily, Contains, Santa Lucia del Mela) -> Sicily (1151ms)\nWhere is Santa Lucia?\tCalabria\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Calabria, Contains, Motta Santa Lucia) -> Calabria (1234ms)\nWhere is Santa Lucia?\tCannaregio\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Cannaregio, contains, the Santa Lucia Railway Station) -> Cannaregio (1103ms)\nWhere is Santa Lucia?\tFirst Italian War of Independence\t-0.0\tWhere is Santa Lucia? -> $x: ($x, event, santa lucia) -> (First Italian War of Independence, Includes event, Battle of Santa Lucia) -> First Italian War of Independence (1234ms)\nWhere is Santa Lucia?\tSan Antonio\t-0.0\tWhere is Santa Lucia? -> $x: ($x, surround, santa lucia) -> (San Antonio, is surrounded by, the Santa Lucia Wilderness) -> San Antonio (1151ms)\nWhere is Santa Lucia?\tIlocos Sur\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Ilocos Sur, Contains, Santa Lucia, Ilocos Sur) -> Ilocos Sur (1367ms)\nWhere is Santa Lucia?\tProvince of Messina\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Messina, Contains, Santa Lucia del Mela) -> Province of Messina (1280ms)\nWhere is Santa Lucia?\tProvince of Avellino\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Avellino, Contains, Santa Lucia di Serino) -> Province of Avellino (1235ms)\nWhere is Santa Lucia?\ta boatman\t-0.0\tWhere is Santa Lucia? -> $x: ($x, describe, santa lucia) -> (a boatman, describing, the view from Santa Lucia) -> a boatman (1059ms)\nWhere is Santa Lucia?\tHaute-Corse\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Haute-Corse, Contains, Santa-Lucia-di-Moriani) -> Haute-Corse (1103ms)\nWhere is Santa Lucia?\tVenice\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Venice, Contains, Venezia Santa Lucia railway station) -> Venice (1235ms)\nWhere is Santa Lucia?\tItaly\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Italy, Contains, Santa Lucia del Mela) -> Italy (1280ms)\nWhere is Santa Lucia?\tcoal\t-0.0\tWhere is Santa Lucia? -> $x: ($x, discover, santa lucia) -> (coal, has been discovered in, Santa Lucia) -> coal (1198ms)\nWhere is Santa Lucia?\tLittle help\t-0.0\tWhere is Santa Lucia? -> $x: ($x, found, santa lucia) -> (Little help, to be found in, the modern concept of Santa Lucia) -> Little help (1234ms)\nWhere is Santa Lucia?\tPima County\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Pima County, Contains, Santa Lucia) -> Pima County (1151ms)\nWhere is Santa Lucia?\tPerfect\t-0.0\tWhere is Santa Lucia? -> $x: ($x, design, santa lucia) -> (Perfect, Costume design by, Lucia Santa Maria) -> Perfect (1281ms)\nWhere is Santa Lucia?\tpalazzo murat\t-0.0\tWhere is Santa Lucia? -> $x: ($x, create, santa lucia) -> (palazzo murat, creates the need for, santa lucia) -> palazzo murat (1235ms)\nWhere is Santa Lucia?\tArizona\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Arizona, Contains, Santa Lucia) -> Arizona (1198ms)\nWhere is Santa Lucia?\tJulio and Maria\t-0.0\tWhere is Santa Lucia? -> $x: ($x, do, santa lucia) -> (Julio and Maria, have done at, their Meson Santa Lucia) -> Julio and Maria (1368ms)\nWhere is Santa Lucia?\tCorsica\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Corsica, Contains, Santa-Lucia-di-Mercurio) -> Corsica (1198ms)\nWhere is Santa Lucia?\tAbruzzo\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Abruzzo, Contains, Villa Santa Lucia degli Abruzzi) -> Abruzzo (1280ms)\nWhere is Santa Lucia?\tchaparral and grasslands\t-0.0\tWhere is Santa Lucia? -> $x: ($x, find, santa lucia) -> (chaparral and grasslands, found in, the Santa Lucia Mountains) -> chaparral and grasslands (1198ms)\nWhere is Santa Lucia?\tYesterday\t-0.0\tWhere is Santa Lucia? -> $x: ($x, go, santa lucia) -> (Yesterday, finally went to, Cerro Santa Lucia) -> Yesterday (1103ms)\nWhere is Santa Lucia?\tProvince of Belluno\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Belluno, Contains, Colle Santa Lucia) -> Province of Belluno (1235ms)\nWhere is Santa Lucia?\tLaura\t-0.0\tWhere is Santa Lucia? -> $x: ($x, go, santa lucia) -> (Laura, went to, Santa Lucia) -> Laura (1103ms)\nWhere is Santa Lucia?\tCarlo Maderno\t-0.0\tWhere is Santa Lucia? -> $x: ($x, design, santa lucia) -> (Carlo Maderno, Structures Designed, Santa Lucia in Selci) -> Carlo Maderno (1198ms)\nWhere is Santa Lucia?\tVeneto\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Veneto, Contains, Colle Santa Lucia) -> Veneto (1198ms)\nWhere is Santa Lucia?\tthe train\t-0.0\tWhere is Santa Lucia? -> $x: ($x, go, santa lucia) -> (the train, goes on to, Santa Lucia station) -> the train (1059ms)\nWhere is Santa Lucia?\ttwo friends\t-0.0\tWhere is Santa Lucia? -> $x: ($x, go, santa lucia) -> (two friends, had gone to, Santa Lucia) -> two friends (1035ms)\nWhere is Santa Lucia?\tharvest 2000\t-0.0\tWhere is Santa Lucia? -> $x: ($x, establish, santa lucia) -> (harvest 2000, will establish, the Santa Lucia Highlands) -> harvest 2000 (1059ms)\nWhere is Santa Lucia?\tProvince of Catanzaro\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Catanzaro, Contains, Motta Santa Lucia) -> Province of Catanzaro (1234ms)\nWhere is Santa Lucia?\tCampania\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Campania, Contains, Santa Lucia di Serino) -> Campania (1059ms)\nWhere is Santa Lucia?\tLazio\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Lazio, Contains, Villa Santa Lucia) -> Lazio (1151ms)\nWhere is Santa Lucia?\tSanta Lucia\t-0.0\tWhere is Santa Lucia? -> $x: ($x, event, santa lucia) -> (Santa Lucia, Events, Battle of Santa Lucia) -> Santa Lucia (1198ms)\nWhere is Santa Lucia?\tProvince of Frosinone\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Frosinone, Contains, Villa Santa Lucia) -> Province of Frosinone (1151ms)\nWhere is Santa Lucia?\tProvince of Treviso\t-0.0\tWhere is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Treviso, Contains, Santa Lucia di Piave) -> Province of Treviso (1059ms)\nWhere is Santa Lucia?\ta half bath home\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be located in, santa lucia) -> (a half bath home, is located in, Santa Lucia Preserve) -> a half bath home (1480ms)\nWhere is Santa Lucia?\tHotel Hotel Club Amigo Caracol\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (Hotel Hotel Club Amigo Caracol, is located in, Santa Lucia Beach) -> Hotel Hotel Club Amigo Caracol (1480ms)\nWhere is Santa Lucia?\tThe heat\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The heat, has n?t been too bad in, the Santa Lucia Highlands) -> The heat (1368ms)\nWhere is Santa Lucia?\tBrad\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (Brad, was born in, Santa Lucia del Camino) -> Brad (1508ms)\nWhere is Santa Lucia?\tThe function\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The function, was organised in, Santa Lucia hall) -> The function (1367ms)\nWhere is Santa Lucia?\tHidden Valley Inn\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (Hidden Valley Inn, is nestled in, the Sunny Santa Lucia) -> Hidden Valley Inn (1368ms)\nWhere is Santa Lucia?\tThe City Hall\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The City Hall, is located in, Via Santa Lucia 10) -> The City Hall (1508ms)\nWhere is Santa Lucia?\tPaso Robles\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (Paso Robles, is in, the Santa Lucia mountains) -> Paso Robles (1480ms)\nWhere is Santa Lucia?\tThe 3 star hotel\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The 3 star hotel, is located in, Santa Lucia) -> The 3 star hotel (1508ms)\nWhere is Santa Lucia?\tThe meeting\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The meeting, will be held in, the Santa Lucia Room) -> The meeting (1480ms)\nWhere is Santa Lucia?\ta 3 stars\t-0.111111111111\tWhere is Santa Lucia? -> $x: ($x, be located in, santa lucia) -> (a 3 stars, is located in, the Santa Lucia beach) -> a 3 stars (1508ms)\nWhere is Santa Lucia?\t1991\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Santa Lucia Highlands, was approved in, 1991) -> 1991 (1508ms)\nWhere is Santa Lucia?\t1875\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Cerro Santa Lucia, was established in, 1875) -> 1875 (1554ms)\nWhere is Santa Lucia?\ta very strategic position\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Hotel Santa Lucia, is situated in, a very strategic position) -> a very strategic position (1508ms)\nWhere is Santa Lucia?\ta lot\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia Day, is celebrated in, a lot) -> a lot (1554ms)\nWhere is Santa Lucia?\tthe heart\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia Santa Luc?a eco-lodge and cabanas, are in, the heart) -> the heart (1554ms)\nWhere is Santa Lucia?\tNorway and Sweden\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Santa Lucia holiday, is celebrated in, Norway and Sweden) -> Norway and Sweden (1554ms)\nWhere is Santa Lucia?\tthe historical district\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Plaza Santa Lucia, is in, the historical district) -> the historical district (1554ms)\nWhere is Santa Lucia?\ta quiet residential area\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is situated in, a quiet residential area) -> a quiet residential area (1554ms)\nWhere is Santa Lucia?\tneed\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is in, need) -> need (1556ms)\nWhere is Santa Lucia?\tlayers\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (the Santa Lucia mountain range, were rich in, layers) -> layers (1554ms)\nWhere is Santa Lucia?\tSweden\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is celebrated in, Sweden) -> Sweden (1554ms)\nWhere is Santa Lucia?\tCosta Rica\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (SANTA LUCIA ApartHotel, is a modern lodging way in, Costa Rica) -> Costa Rica (1554ms)\nWhere is Santa Lucia?\t1937\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (the Santa Lucia mountain range, was set aside in, 1937) -> 1937 (1556ms)\nWhere is Santa Lucia?\tCuenca\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Santa Lucia hotel, is a gem in, Cuenca) -> Cuenca (1554ms)\nWhere is Santa Lucia?\tpoor shape\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (the Cerro Santa Lucia, had been in very, poor shape) -> poor shape (1508ms)\nWhere is Santa Lucia?\tSweden as well as\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is observed in, Sweden as well as) -> Sweden as well as (1556ms)\nWhere is Santa Lucia?\tthe Amalfitan Coast\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (the Santa Lucia Hotel, is in, the Amalfitan Coast) -> the Amalfitan Coast (1554ms)\nWhere is Santa Lucia?\tScandinavia\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is celebrated in, Scandinavia) -> Scandinavia (1556ms)\nWhere is Santa Lucia?\tcamera trapping\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, was to assist in, camera trapping) -> camera trapping (1556ms)\nWhere is Santa Lucia?\ta 7000 sm garden area\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (SANTA LUCIA ApartHotel, is immersed in, a 7000 sm garden area) -> a 7000 sm garden area (1508ms)\nWhere is Santa Lucia?\tthe historic center\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Venice Santa Lucia station, is in, the historic center) -> the historic center (1508ms)\nWhere is Santa Lucia?\tthe Cannaregio district\t-0.111111111112\tWhere is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Santa Lucia Railway Station, is in, the Cannaregio district) -> the Cannaregio district (1508ms)\nWhere is Santa Lucia?\tPinot Gris\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (the Santa Lucia Highlands, is perfectly suited for, Pinot Gris) -> Pinot Gris (1559ms)\nWhere is Santa Lucia?\tsporty people\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Campsite Santa Lucia, is especially suiteble for, sporty people) -> sporty people (1559ms)\nWhere is Santa Lucia?\tthe more adventurous vacationer\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia, is a good spot for, the more adventurous vacationer) -> the more adventurous vacationer (1556ms)\nWhere is Santa Lucia?\trent\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia, are available for, rent) -> rent (1559ms)\nWhere is Santa Lucia?\tscuba diving\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia, is an excellent place for, scuba diving) -> scuba diving (1559ms)\nWhere is Santa Lucia?\ta different reason\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (The phrase ?Santa Lucia?, is famous for, a different reason) -> a different reason (1558ms)\nWhere is Santa Lucia?\tlovers\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia Beach, is a paradise for, lovers) -> lovers (1559ms)\nWhere is Santa Lucia?\tcamping and fishing\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (The Santa Lucia Lagoon, is great for, camping and fishing) -> camping and fishing (1559ms)\nWhere is Santa Lucia?\tPinot Noir\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (the Santa Lucia Highlands Appellation, is for, Pinot Noir) -> Pinot Noir (1558ms)\nWhere is Santa Lucia?\tromance\t-0.222222222222\tWhere is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia, was an ideal setting for, romance) -> romance (1558ms)\nWhere is Santa Lucia?\tItaly Hotel Moderno\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Italy Hotel Moderno, is close to, Santa Lucia Train Station) -> Italy Hotel Moderno (1564ms)\nWhere is Santa Lucia?\tCandon City\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Candon City, is the town of, Santa Lucia) -> Candon City (1565ms)\nWhere is Santa Lucia?\tThe hot region\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The hot region, now is, the Santa Lucia Highlands) -> The hot region (1560ms)\nWhere is Santa Lucia?\tthe Swedish yuletide\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the Swedish yuletide, is the visit of, Santa Lucia) -> the Swedish yuletide (1562ms)\nWhere is Santa Lucia?\tAnswers\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Answers, is the state of, Santa Lucia) -> Answers (1562ms)\nWhere is Santa Lucia?\ttourists\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (tourists, are the towns of, Santa Lucia) -> tourists (1564ms)\nWhere is Santa Lucia?\tMastic and Mahleb\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Mastic and Mahleb, is extracted from, Santa Lucia cherry pits) -> Mastic and Mahleb (1560ms)\nWhere is Santa Lucia?\toff\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (off, are now, the Santa Lucia Highlands) -> off (1562ms)\nWhere is Santa Lucia?\tThe vineyards\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The vineyards, are spread throughout, the Santa Lucia Highlands) -> The vineyards (1560ms)\nWhere is Santa Lucia?\ttwinkle lights\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (twinkle lights, was, Santa Lucia) -> twinkle lights (1564ms)\nWhere is Santa Lucia?\tthe Salinas Valley\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the Salinas Valley, is called, the Santa Lucia Highlands) -> the Salinas Valley (1559ms)\nWhere is Santa Lucia?\t13th December\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (13th December, is the time of, Santa Lucia) -> 13th December (1563ms)\nWhere is Santa Lucia?\ta rig\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (a rig, is currently drilling, the Santa Lucia-4) -> a rig (1565ms)\nWhere is Santa Lucia?\tWill\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Will, was shot at, the Santa Lucia Barricade) -> Will (1560ms)\nWhere is Santa Lucia?\tthe 38th floor\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the 38th floor, is, Santa Lucia ? Comments) -> the 38th floor (1565ms)\nWhere is Santa Lucia?\tCape Vidal\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Cape Vidal, is next to, Santa Lucia) -> Cape Vidal (1564ms)\nWhere is Santa Lucia?\tthe nearest railway station\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the nearest railway station, is, Venice Santa Lucia) -> the nearest railway station (1564ms)\nWhere is Santa Lucia?\t3 stars category\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (3 stars category, is located at, Santa Lucia) -> 3 stars category (1564ms)\nWhere is Santa Lucia?\tLuigi Gordigiani\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Luigi Gordigiani, is usually credited with, ?Santa Lucia) -> Luigi Gordigiani (1562ms)\nWhere is Santa Lucia?\tprice/quality equity\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (price/quality equity, was, the $ 33 Santa Lucia) -> price/quality equity (1564ms)\nWhere is Santa Lucia?\tthe most\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the most, was the tradition of, Santa Lucia Day) -> the most (1565ms)\nWhere is Santa Lucia?\tping pong\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (ping pong, are available at, the Santa Lucia Masseria) -> ping pong (1560ms)\nWhere is Santa Lucia?\tThe apartment\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The apartment, is situated close to, Santa Lucia Hill) -> The apartment (1565ms)\nWhere is Santa Lucia?\tDecember 13th\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (December 13th, is, Santa Lucia Day) -> December 13th (1563ms)\nWhere is Santa Lucia?\tDe La Salle\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (De La Salle, are graduates of, Santa Lucia Grade School) -> De La Salle (1564ms)\nWhere is Santa Lucia?\t3 Blocks\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (3 Blocks, away is, metro Santa Lucia) -> 3 Blocks (1564ms)\nWhere is Santa Lucia?\tNovember 23 , 2009 December 13th\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (November 23 , 2009 December 13th, is the Feast of, Santa Lucia) -> November 23 , 2009 December 13th (1564ms)\nWhere is Santa Lucia?\tHotel\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Hotel, Be, Live Brisas Santa Lucia) -> Hotel (1560ms)\nWhere is Santa Lucia?\tannealing temperatures\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (annealing temperatures, are from, SantaLucia & Hicks) -> annealing temperatures (1560ms)\nWhere is Santa Lucia?\tThe railway station\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The railway station, is named after, Santa Lucia) -> The railway station (1562ms)\nWhere is Santa Lucia?\tmozzarella cheese\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (mozzarella cheese, is, Santa Lucia) -> mozzarella cheese (1559ms)\nWhere is Santa Lucia?\tthe main drill targets\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the main drill targets, were, Santa Lucia) -> the main drill targets (1560ms)\nWhere is Santa Lucia?\tThe city\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The city, is also famous for, the Santa Lucia Riverwalk) -> The city (1563ms)\nWhere is Santa Lucia?\tHotel Principe\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Hotel Principe, is 200 metres from, Santa Lucia Train Station) -> Hotel Principe (1562ms)\nWhere is Santa Lucia?\tthe journey\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the journey, is, Venice Santa Lucia station) -> the journey (1564ms)\nWhere is Santa Lucia?\tthe league\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the league, are, the Santa Lucia Realtors) -> the league (1563ms)\nWhere is Santa Lucia?\tthe museum\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the museum, is, Paseo Santa Lucia) -> the museum (1563ms)\nWhere is Santa Lucia?\tHotel Ca' Lucrezia\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Hotel Ca' Lucrezia, is 50 metres from, Santa Lucia Train Station) -> Hotel Ca' Lucrezia (1563ms)\nWhere is Santa Lucia?\tThe hotels\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The hotels, far is, Santa Lucia train station) -> The hotels (1562ms)\nWhere is Santa Lucia?\tvision\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (vision, is, Santa Lucia) -> vision (1562ms)\nWhere is Santa Lucia?\tTomorrow\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Tomorrow, is, Santa Lucia Day) -> Tomorrow (1563ms)\nWhere is Santa Lucia?\tthe south-west\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the south-west, are the more fashionable area of, Santa Lucia) -> the south-west (1563ms)\nWhere is Santa Lucia?\tVenice train station\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Venice train station, is named, Santa Lucia) -> Venice train station (1559ms)\nWhere is Santa Lucia?\tPetroLatina\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (PetroLatina, is the operator of, the Santa Lucia field) -> PetroLatina (1559ms)\nWhere is Santa Lucia?\tBetania\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Betania, is, Santa Lucia school) -> Betania (1564ms)\nWhere is Santa Lucia?\tExecutive Chef Mattos\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Executive Chef Mattos, is from, Santa Lucia) -> Executive Chef Mattos (1563ms)\nWhere is Santa Lucia?\tThe first stop\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The first stop, was, Santa Lucia Memorial Park) -> The first stop (1560ms)\nWhere is Santa Lucia?\tA good one\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (A good one, is located on, Alameda Santa Lucia #4) -> A good one (1560ms)\nWhere is Santa Lucia?\tDecember\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (December, is, Santa Lucia Day) -> December (1562ms)\nWhere is Santa Lucia?\tthe town\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the town, is the tower of, Santa Lucia) -> the town (1563ms)\nWhere is Santa Lucia?\tThe parish\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The parish, is called, Santa Lucia) -> The parish (1562ms)\nWhere is Santa Lucia?\tthe finish\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the finish, was, the amazing Santa Lucia) -> the finish (1562ms)\nWhere is Santa Lucia?\tweek 4\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (week 4, is, Santa Lucia buns) -> week 4 (1564ms)\nWhere is Santa Lucia?\tFurther drilling\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Further drilling, is planned for, Santa Lucia) -> Further drilling (1562ms)\nWhere is Santa Lucia?\tthe peak\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the peak, was known as, Santa Lucia) -> the peak (1565ms)\nWhere is Santa Lucia?\tspecial buns\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (special buns, are served on, Santa Lucia Day) -> special buns (1560ms)\nWhere is Santa Lucia?\tOne option\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (One option, is, the Santa Lucia Hill) -> One option (1564ms)\nWhere is Santa Lucia?\tHighlights\t-0.333333333333\tWhere is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Highlights, are, Santa Lucia Luntana) -> Highlights (1563ms)\nWhere is Santa Lucia?\t2 km\t-0.666666666667\tWhere is Santa Lucia? -> $x: (santa lucia, be about, $x) -> (Santa Lucia railway station, is about, 2 km) -> 2 km (1566ms)\nWhere is Santa Lucia?\t90 minutes\t-0.666666666667\tWhere is Santa Lucia? -> $x: (santa lucia, be about, $x) -> (Santa Lucia, is about, 90 minutes) -> 90 minutes (1566ms)\nWhat hockey team did Wayne Gretzky play for?\tfun\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (your own street-hockey team, play for, fun) -> fun (580ms)\nWhat hockey team did Wayne Gretzky play for?\tthe second Olympic gold medal\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> ('s hockey team, will play for, the second Olympic gold medal) -> the second Olympic gold medal (580ms)\nWhat hockey team did Wayne Gretzky play for?\tfor 4 seasons\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (the Highschool hockey team, played for, for 4 seasons) -> for 4 seasons (580ms)\nWhat hockey team did Wayne Gretzky play for?\tthe Boston Bruins\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (the Michigan hockey team, now plays for, the Boston Bruins) -> the Boston Bruins (580ms)\nWhat hockey team did Wayne Gretzky play for?\tthe high school city championship\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> ('s hockey team, will play for, the high school city championship) -> the high school city championship (580ms)\nWhat hockey team did Wayne Gretzky play for?\tGold\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> ('s hockey team, will end up playing for, Gold) -> Gold (580ms)\nWhat hockey team did Wayne Gretzky play for?\tfive years\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (The Providence Reds hockey team, played there for, five years) -> five years (580ms)\nWhat hockey team did Wayne Gretzky play for?\tthe Keller Division championship\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (' hockey team, will play for, the Keller Division championship) -> the Keller Division championship (580ms)\nWhat hockey team did Wayne Gretzky play for?\ta spot\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (Findlay High School?s hockey team, will play for, a spot) -> a spot (580ms)\nWhat hockey team did Wayne Gretzky play for?\tthree seasons\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> ('s hockey team, played there for, three seasons) -> three seasons (580ms)\nWhat hockey team did Wayne Gretzky play for?\tFavorite pro player\t-0.444444444444\tWhat hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (hockey team, play for, Favorite pro player) -> Favorite pro player (580ms)\nHow many crew members were aboard?\tLimited seating\t-0.33333333333799997\tHow many crew members were aboard? -> $x: ($x, be aboard, challenger) -> (Limited seating, is available aboard, the R/V CHALLENGER) -> Limited seating (776ms)\nHow many crew members were aboard?\tspace\t-0.33333333333799997\tHow many crew members were aboard? -> $x: ($x, be aboard, challenger) -> (space, was also aboard, the Challenger) -> space (776ms)\nHow many crew members were aboard?\tThe count\t-0.33333333333799997\tHow many crew members were aboard? -> $x: ($x, be aboard, challenger) -> (The count, will be held aboard, UNH R.V. Gulf Challenger) -> The count (776ms)\nHow many crew members were aboard?\tArraf\t-0.33333333333799997\tHow many crew members were aboard? -> $x: ($x, be aboard, challenger) -> (Arraf, was aboard, the Challenger 1) -> Arraf (776ms)\nHow many crew members were aboard?\tIsla Mujeres\t-0.666666666667\tHow many crew members were aboard? -> $x: ($x, crew, aboard) -> (Isla Mujeres, join the crew of, Aboard one) -> Isla Mujeres (776ms)\nHow many crew members were aboard?\tThe ship\t-0.666666666667\tHow many crew members were aboard? -> $x: ($x, crew, aboard) -> (The ship, had a crew of, 31 aboard) -> The ship (776ms)\nHow many crew members were aboard?\tthe plane\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (20 crew members, were aboard, the plane) -> the plane (777ms)\nHow many crew members were aboard?\tthe privately-owned boat\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Two crew members, were aboard, the privately-owned boat) -> the privately-owned boat (777ms)\nHow many crew members were aboard?\tthe Santa Maria\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (a crew member, was aboard, the Santa Maria) -> the Santa Maria (777ms)\nHow many crew members were aboard?\talready\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard the ISS, already) -> already (777ms)\nHow many crew members were aboard?\tFlight # 11\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Crew members, were aboard, Flight # 11) -> Flight # 11 (777ms)\nHow many crew members were aboard?\tthe California Zephyr\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (14 crew members, were aboard, the California Zephyr) -> the California Zephyr (777ms)\nHow many crew members were aboard?\ta few weeks\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (those crew members, have only been aboard, a few weeks) -> a few weeks (776ms)\nHow many crew members were aboard?\tlonger than expected\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (six crew members, were aboard for, longer than expected) -> longer than expected (777ms)\nHow many crew members were aboard?\tRMS Titanic\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard, RMS Titanic) -> RMS Titanic (777ms)\nHow many crew members were aboard?\tthe Discovery\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Seven crew members, were aboard, the Discovery) -> the Discovery (777ms)\nHow many crew members were aboard?\tthe Titanic\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (passengers and crew members, were aboard, the Titanic) -> the Titanic (777ms)\nHow many crew members were aboard?\tthe aircraft\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Nine crew members, were aboard, the aircraft) -> the aircraft (777ms)\nHow many crew members were aboard?\tthe vessel\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard, the vessel) -> the vessel (776ms)\nHow many crew members were aboard?\tthe ship\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Twenty-seven crew members, were aboard, the ship) -> the ship (777ms)\nHow many crew members were aboard?\tthe Costa Concordia\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (1,000 crew members, were aboard, the Costa Concordia) -> the Costa Concordia (776ms)\nHow many crew members were aboard?\tFlight # 77\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Crew members, were aboard, Flight # 77) -> Flight # 77 (777ms)\nHow many crew members were aboard?\tthe ISS\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard, the ISS) -> the ISS (777ms)\nHow many crew members were aboard?\tM/V Costa Concordia\t-1.333333333331\tHow many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard, M/V Costa Concordia) -> M/V Costa Concordia (777ms)\nHow many seats are in the Lebanese Parliament?\tThe capital Beirut\t-0.11111111110800001\tHow many seats are in the Lebanese Parliament? -> $x: ($x, be seat of, lebanese parliament) -> (The capital Beirut, is the seat of, the Lebanese Parliament) -> The capital Beirut (721ms)\nHow many seats are in the Lebanese Parliament?\tHezbollah\t-0.999999999988\tHow many seats are in the Lebanese Parliament? -> $x: ($x, seat, lebanese parliament) -> (Hezbollah, won more seats in, the Lebanese parliament) -> Hezbollah (721ms)\nHow many seats are in the Lebanese Parliament?\t2000 Hezbollah\t-0.999999999988\tHow many seats are in the Lebanese Parliament? -> $x: ($x, seat, lebanese parliament) -> (2000 Hezbollah, has won seats in, the Lebanese parliament) -> 2000 Hezbollah (721ms)\nHow many seats are in the Lebanese Parliament?\tthe party\t-0.999999999988\tHow many seats are in the Lebanese Parliament? -> $x: ($x, seat, lebanese parliament) -> (the party, does hold seats in, the Lebanese parliament) -> the party (721ms)\nHow many seats are in the Lebanese Parliament?\tHizballah members\t-0.999999999988\tHow many seats are in the Lebanese Parliament? -> $x: ($x, seat, lebanese parliament) -> (Hizballah members, hold seats in, the Lebanese parliament) -> Hizballah members (721ms)\nWhat is his primary career?\tthe numbers\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (the numbers, is the core function of, a budget analyst career) -> the numbers (1113ms)\nWhat is his primary career?\temployment website\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (employment website, functions much like, Seek or MyCareer) -> employment website (1113ms)\nWhat is his primary career?\tNo matter\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (No matter, is our specific function in, our career) -> No matter (1177ms)\nWhat is his primary career?\ttrue cohesion\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be symptom of, career) -> (true cohesion, is obviously a symptom of, Bay?s career) -> true cohesion (931ms)\nWhat is his primary career?\tjobs\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (jobs, are the most popular types of, careers) -> jobs (931ms)\nWhat is his primary career?\tFreelance writing\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (Freelance writing, has long been a special type of, career) -> Freelance writing (1113ms)\nWhat is his primary career?\taddition\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (addition, perform an important function in, the career) -> addition (1204ms)\nWhat is his primary career?\tApplication creator\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (Application creator, will be other type of, career) -> Application creator (1177ms)\nWhat is his primary career?\tThe show\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (The show, will function as, a mid-career retrospective) -> The show (931ms)\nWhat is his primary career?\tThe person\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (The person, is considering this type of, alternative career move) -> The person (1154ms)\nWhat is his primary career?\tMembers\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (Members, are taught the different types of, nursing careers) -> Members (1177ms)\nWhat is his primary career?\tA personality test\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (A personality test, is another type of, career assessment tests) -> A personality test (1177ms)\nWhat is his primary career?\tthe internet\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (the internet, is an ideal type of, a career path) -> the internet (1154ms)\nWhat is his primary career?\tCareer CollegesThere\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (Career CollegesThere, are many types of, career colleges) -> Career CollegesThere (931ms)\nWhat is his primary career?\tFighter\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (Fighter, is a close-fight type of, career) -> Fighter (1113ms)\nWhat is his primary career?\tindividuals\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (individuals, to function in, professional service careers) -> individuals (1177ms)\nWhat is his primary career?\tfive\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (five, were a curvilinear function of, career age) -> five (1178ms)\nWhat is his primary career?\tnursing\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (nursing, was a very interactive type of, career) -> nursing (931ms)\nWhat is his primary career?\temployers\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (employers, determine the functions for, each career) -> employers (1177ms)\nWhat is his primary career?\tan international sector\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (an international sector, is a different type of, career choice) -> an international sector (1154ms)\nWhat is his primary career?\tFiduciary accounting\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (Fiduciary accounting, is another type of, accountancy careers) -> Fiduciary accounting (1154ms)\nWhat is his primary career?\tNext\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (Next, is the type of, career) -> Next (1113ms)\nWhat is his primary career?\tnon-sales\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (non-sales, functions very early in, their career) -> non-sales (1154ms)\nWhat is his primary career?\tsuch movements\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (such movements, is a function of, career security) -> such movements (1154ms)\nWhat is his primary career?\tcapable citizens\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (capable citizens, were able to function within, a career field) -> capable citizens (1154ms)\nWhat is his primary career?\teconomics\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (economics, There are basically two types of, career) -> economics (931ms)\nWhat is his primary career?\tthe learning and education\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (the learning and education, function, a core career step) -> the learning and education (1154ms)\nWhat is his primary career?\tcollege\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (college, was exactly the type of, career) -> college (1177ms)\nWhat is his primary career?\tAn internship\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (An internship, is one type of, career preparatory experience) -> An internship (1113ms)\nWhat is his primary career?\tThe generalized age curve\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, function, career) -> (The generalized age curve, is a function of, career) -> The generalized age curve (1113ms)\nWhat is his primary career?\tWe?ll\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (We?ll, be covering three types of, career break activities) -> We?ll (931ms)\nWhat is his primary career?\tA career aptitude test\t-0.22222222221299998\tWhat is his primary career? -> $x: ($x, be type of, career) -> (A career aptitude test, is a type of, career quiz) -> A career aptitude test (931ms)\nWhat nationality is Sean Connery?\tbig money\t-2.333333333344\tWhat nationality is Sean Connery? -> $x: (sean connery, play for, $x) -> (even Sean Connery, played roulette for, big money) -> big money (584ms)\nWhat nationality is Sean Connery?\tJames Bond\t-2.333333333344\tWhat nationality is Sean Connery? -> $x: (sean connery, play for, $x) -> (Sean Connery, for playing, James Bond) -> James Bond (584ms)\nWhat songs did Al Jolson Sing?\t?Sonny Boy\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang, ?Sonny Boy) -> ?Sonny Boy (789ms)\nWhat songs did Al Jolson Sing?\tthe song\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang, the song) -> the song (789ms)\nWhat songs did Al Jolson Sing?\tMammy\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang, Mammy) -> Mammy (789ms)\nWhat songs did Al Jolson Sing?\tthe October\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (the first song Al Jolson, sang on, the October) -> the October (801ms)\nWhat songs did Al Jolson Sing?\t?Mammy ?\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sings, ?Mammy ?) -> ?Mammy ? (789ms)\nWhat songs did Al Jolson Sing?\ta few songs\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sings, a few songs) -> a few songs (789ms)\nWhat songs did Al Jolson Sing?\tthe most popular tongue twister\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang, the most popular tongue twister) -> the most popular tongue twister (789ms)\nWhat songs did Al Jolson Sing?\tmore soldiers\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (S. J. Woolf Al Jolson, has sung to, more soldiers) -> more soldiers (801ms)\nWhat songs did Al Jolson Sing?\ttwo hours\t0.555555555552\tWhat songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang for, two hours) -> two hours (789ms)\nWhat songs did Al Jolson Sing?\tCalifornia, Here I Come\t-0.666666666667\tWhat songs did Al Jolson Sing? -> $x: (al jolson, compose, $x) -> (Al Jolson, Works Composed, California, Here I Come) -> California, Here I Come (801ms)\nIn what country is the mouth of the Amazon River?\tNevado Mismi\t1.333333333325\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon river) -> (Nevado Mismi, is the ultimate source of, the Amazon River) -> Nevado Mismi (687ms)\nIn what country is the mouth of the Amazon River?\tPeruvian Amazonia\t1.333333333325\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon river) -> (Peruvian Amazonia, is the source of, the Amazon River) -> Peruvian Amazonia (687ms)\nIn what country is the mouth of the Amazon River?\tPurus River\t1.222222222218\tIn what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Purus River, Mouth, Amazon River) -> Purus River (688ms)\nIn what country is the mouth of the Amazon River?\tXingu River\t1.222222222218\tIn what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Xingu River, Mouth, Amazon River) -> Xingu River (688ms)\nIn what country is the mouth of the Amazon River?\tMadeira River\t1.222222222218\tIn what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Madeira River, Mouth, Amazon River) -> Madeira River (687ms)\nIn what country is the mouth of the Amazon River?\tRio Negro\t1.222222222218\tIn what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Rio Negro, Mouth, Amazon River) -> Rio Negro (688ms)\nIn what country is the mouth of the Amazon River?\tNapo River\t1.222222222218\tIn what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Napo River, Mouth, Amazon River) -> Napo River (687ms)\nIn what country is the mouth of the Amazon River?\tThe Amazing Amazon Peru\t0.666666666663\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon river) -> (The Amazing Amazon Peru, has the source of, the Amazon River) -> The Amazing Amazon Peru (687ms)\nIn what country is the mouth of the Amazon River?\tdown-river\t-1.0000056338554941E-12\tIn what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon) -> (down-river, eventually reached the mouth of, the Amazon) -> down-river (688ms)\nIn what country is the mouth of the Amazon River?\tThe group\t-1.0000056338554941E-12\tIn what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon) -> (The group, reached the mouth of, the Amazon) -> The group (688ms)\nIn what country is the mouth of the Amazon River?\tTHE AMAZON BASIN Peru\t-0.111111111111\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (THE AMAZON BASIN Peru, is the source of, the Amazon Basin) -> THE AMAZON BASIN Peru (689ms)\nIn what country is the mouth of the Amazon River?\tTechnological Technology\t-0.111111111111\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (Technological Technology, is a key source of, Amazon) -> Technological Technology (689ms)\nIn what country is the mouth of the Amazon River?\tHumedales\t-0.111111111111\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (Humedales, are the source of, the Amazon tributaries) -> Humedales (689ms)\nIn what country is the mouth of the Amazon River?\tsouthern Peru\t-0.111111111111\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (southern Peru, were the source of, the Amazon) -> southern Peru (689ms)\nIn what country is the mouth of the Amazon River?\tJava Hydra Cache\t-0.111111111111\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (Java Hydra Cache, is an open source implementation of, Amazon) -> Java Hydra Cache (689ms)\nIn what country is the mouth of the Amazon River?\tThe Apurimac River\t-0.111111111111\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (The Apurimac River, is the true source of, the Amazon) -> The Apurimac River (689ms)\nIn what country is the mouth of the Amazon River?\tmountains\t-0.111111111111\tIn what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (mountains, is the source of, the Amazon) -> mountains (689ms)\nIn what country is the mouth of the Amazon River?\tdecent second-hand copies\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (decent second-hand copies, can be sourced from, Amazon) -> decent second-hand copies (689ms)\nIn what country is the mouth of the Amazon River?\tConversations with James Baldwin\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Conversations with James Baldwin, Source, Amazon.com) -> Conversations with James Baldwin (689ms)\nIn what country is the mouth of the Amazon River?\tnatural rubber\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (natural rubber, sourced from, the Amazon rainforest) -> natural rubber (690ms)\nIn what country is the mouth of the Amazon River?\tthe Amazon UK price\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (the Amazon UK price, sourced from, Amazon) -> the Amazon UK price (690ms)\nIn what country is the mouth of the Amazon River?\tReview of The Famished Road\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Review of The Famished Road, source, Amazon.com) -> Review of The Famished Road (690ms)\nIn what country is the mouth of the Amazon River?\tthe ingredients\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (the ingredients, are sustainably sourced in, the Amazon) -> the ingredients (690ms)\nIn what country is the mouth of the Amazon River?\tcontent\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (content, sourced from, Amazon) -> content (690ms)\nIn what country is the mouth of the Amazon River?\tthe chart\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (the chart, is sourced from, Amazon) -> the chart (690ms)\nIn what country is the mouth of the Amazon River?\thome\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (home, ethically sourced, Amazon.com) -> home (690ms)\nIn what country is the mouth of the Amazon River?\tMarten Gallagher ? Web Editor\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Marten Gallagher ? Web Editor, sourced from, Amazon blurb) -> Marten Gallagher ? Web Editor (690ms)\nIn what country is the mouth of the Amazon River?\tleather\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (leather, sourced in, the Amazon basin) -> leather (690ms)\nIn what country is the mouth of the Amazon River?\tThe field\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (The field, is the source for, a $ 20 billion Amazon pipeline) -> The field (690ms)\nIn what country is the mouth of the Amazon River?\tPicture\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Picture, sourced from, Amazon.co.uk) -> Picture (690ms)\nIn what country is the mouth of the Amazon River?\tPromo Jones\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Promo Jones, is a one-stop source for, Amazon promotional codes) -> Promo Jones (689ms)\nIn what country is the mouth of the Amazon River?\tShelfari\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Shelfari, is a crowd-sourced service from, Amazon) -> Shelfari (690ms)\nIn what country is the mouth of the Amazon River?\tphoto\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (photo, sourced from, amazon Read-Aloud Rhymes) -> photo (690ms)\nIn what country is the mouth of the Amazon River?\tideas\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (ideas, will be primarily sourced through, Amazon Studios) -> ideas (689ms)\nIn what country is the mouth of the Amazon River?\t?Aberjhani's voice should be heard around the world. He is an extraordinarily gifted writer whose words are more than inspirational, intriguing, and eloquent ... they are poetry in motion.?\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (?Aberjhani's voice should be heard around the world. He is an extraordinarily gifted writer whose words are more than inspirational, intriguing, and eloquent ... they are poetry in motion.?, Source, Amazon Review) -> ?Aberjhani's voice should be heard around the world. He is an extraordinarily gifted writer whose words are more than inspirational, intriguing, and eloquent ... they are poetry in motion.? (690ms)\nIn what country is the mouth of the Amazon River?\tsubject matter\t-0.555555555556\tIn what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (subject matter, sourced from, Amazon) -> subject matter (690ms)\nWhen did the Johnstown flood occur?\tPennsylvania\t-0.222222222229\tWhen did the Johnstown flood occur? -> $x: (johnstown flood, occur in, $x) -> (The Johnstown Flood, occurred in, Pennsylvania) -> Pennsylvania (692ms)\nWhen did the Johnstown flood occur?\tHarrison\t-0.666666666671\tWhen did the Johnstown flood occur? -> $x: (johnstown flood, occur during, $x) -> (The famous Johnstown flood, occurred during, Harrison) -> Harrison (692ms)\nWhen did the Johnstown flood occur?\tMay 31 , 1889\t-0.7777777777830001\tWhen did the Johnstown flood occur? -> $x: (johnstown flood, occur, $x) -> (The Johnstown Flood, occurred on, May 31 , 1889) -> May 31 , 1889 (692ms)\nHow many members does it have?\tMiss D?Addario\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (Miss D?Addario, began providing, Congress members) -> Miss D?Addario (1083ms)\nHow many members does it have?\tthe health care\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (the health care, provided to, members of Congress) -> the health care (1142ms)\nHow many members does it have?\tThe event\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (The event, provides, members of Congress and their staffers) -> The event (1083ms)\nHow many members does it have?\tDr. Bailey\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (Dr. Bailey, provides, the Congress members) -> Dr. Bailey (1083ms)\nHow many members does it have?\tthe telephone numbers\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (the telephone numbers, were provided for, Congress members) -> the telephone numbers (1083ms)\nHow many members does it have?\tthe health care plans\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (the health care plans, provided to, the members of Congress) -> the health care plans (1083ms)\nHow many members does it have?\tthe Constitution\t0.11111111111400002\tHow many members does it have? -> $x: ($x, protect, congress member) -> (the Constitution, protects, members of Congress) -> the Constitution (1083ms)\nHow many members does it have?\texpenses\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (expenses, even provide a stipend for, congress members) -> expenses (1083ms)\nHow many members does it have?\ta think  tank\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (a think  tank, provides reports to, members of Congress) -> a think  tank (1142ms)\nHow many members does it have?\tThe 25-page report\t0.11111111111400002\tHow many members does it have? -> $x: ($x, provide, congress member) -> (The 25-page report, provided to, members of Congress) -> The 25-page report (1083ms)\nHow many members does it have?\tDavid\t-0.222222222215\tHow many members does it have? -> $x: ($x, be member of, titanium) -> (David, is an Honorary Member of, the Titanium Information Group) -> David (3149ms)\nHow many members does it have?\tEbola\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Ebola, readily spreads to, family members) -> Ebola (7086ms)\nHow many members does it have?\tKlement\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Klement, also talked about, Senate-passage) -> Klement (7030ms)\nHow many members does it have?\tsurveying\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (surveying, started as, members) -> surveying (7091ms)\nHow many members does it have?\tthe flame\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the flame, were studied by, members) -> the flame (6191ms)\nHow many members does it have?\tneutron stars\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (neutron stars, is studied by, members) -> neutron stars (6948ms)\nHow many members does it have?\tThe commentators\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (The commentators, are talking about, the Supreme Court members) -> The commentators (7090ms)\nHow many members does it have?\tMDRC\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (MDRC, is studying, the members) -> MDRC (7040ms)\nHow many members does it have?\tthe local community ALL students\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the local community ALL students, study privately with, members) -> the local community ALL students (7080ms)\nHow many members does it have?\tlet?s\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (let?s, even talk about, the sad-sack Senate Democrats) -> let?s (7040ms)\nHow many members does it have?\tthe most surprising and\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the most surprising and, talked about, members) -> the most surprising and (7008ms)\nHow many members does it have?\tWaters\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, pink floyd) -> (Waters, is talking about, Pink Floyd) -> Waters (7044ms)\nHow many members does it have?\ta different vendor\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (a different vendor, provides this service in, the Senate) -> a different vendor (6979ms)\nHow many members does it have?\tthe Fellow\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the Fellow, has opportunities to study with, members) -> the Fellow (7049ms)\nHow many members does it have?\ta ?telescope corner ?\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (a ?telescope corner ?, began to take shape as, one EAS member) -> a ?telescope corner ? (6986ms)\nHow many members does it have?\tthe pipeline\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (the pipeline, provides, state legislatures) -> the pipeline (3456ms)\nHow many members does it have?\tmusic\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (music, started as, a member) -> music (7015ms)\nHow many members does it have?\twarm stories\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (warm stories, talk about, the family members) -> warm stories (7025ms)\nHow many members does it have?\tsix children\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (six children, spread among, family members) -> six children (7084ms)\nHow many members does it have?\tLandry?s coalition\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Landry?s coalition, will provide, the Senate) -> Landry?s coalition (7065ms)\nHow many members does it have?\todors\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (odors, can spread to, family members) -> odors (7049ms)\nHow many members does it have?\tRumours\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Rumours, are being vigorously spread among, members) -> Rumours (6851ms)\nHow many members does it have?\tInstitutions\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Institutions, shape, their members) -> Institutions (7035ms)\nHow many members does it have?\tThe Copyright Office\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The Copyright Office, provided, the Senate Judiciary Committee) -> The Copyright Office (7015ms)\nHow many members does it have?\tan associate professor\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (an associate professor, has provided, Senate testimony) -> an associate professor (7049ms)\nHow many members does it have?\tThe celebration\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The celebration, spread through, every team member) -> The celebration (7068ms)\nHow many members does it have?\tZander\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Zander, started off as, a member) -> Zander (7030ms)\nHow many members does it have?\tinsurers\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (insurers, provides testimony before, state legislatures) -> insurers (6994ms)\nHow many members does it have?\ta small idea\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (a small idea, took shape for, one member) -> a small idea (7061ms)\nHow many members does it have?\tthe con?di?tion\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the con?di?tion, spreads to, wild mem?bers) -> the con?di?tion (6940ms)\nHow many members does it have?\tfunds\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (funds, provided by, the Minnesota State Legislature) -> funds (7084ms)\nHow many members does it have?\tLouisiana\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Louisiana, spread awareness among, members) -> Louisiana (7090ms)\nHow many members does it have?\ta group\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (a group, shape the behavior of, individual members) -> a group (6948ms)\nHow many members does it have?\tAlan Parsons\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, pink floyd) -> (Alan Parsons, were here to talk about, recording Pink Floyd) -> Alan Parsons (7044ms)\nHow many members does it have?\tThe two\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (The two, talk about, Weier O  Members) -> The two (7001ms)\nHow many members does it have?\ta few Bond characters\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (a few Bond characters, were shaped from, real SOE members) -> a few Bond characters (7049ms)\nHow many members does it have?\tThe agreement\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The agreement, also provided for, a senate) -> The agreement (7008ms)\nHow many members does it have?\tlearning\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (learning, was shaped by, faculty members) -> learning (7084ms)\nHow many members does it have?\tSifu Ken Gullette\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Sifu Ken Gullette, has studied with, members) -> Sifu Ken Gullette (7073ms)\nHow many members does it have?\tthe strike\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the strike, spread to, members) -> the strike (7080ms)\nHow many members does it have?\tRandy Coutts\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Randy Coutts, talked about, their 13-member team) -> Randy Coutts (4169ms)\nHow many members does it have?\tmore operating funds\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (more operating funds, spread across, community members) -> more operating funds (6948ms)\nHow many members does it have?\tfull time ventures\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (full time ventures, started as, a founding team member) -> full time ventures (7087ms)\nHow many members does it have?\tSusan\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Susan, studied with, members) -> Susan (7057ms)\nHow many members does it have?\tthe best\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the best, provide, the ASUC Senate) -> the best (5494ms)\nHow many members does it have?\tThe club\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The club, started as, 8 members) -> The club (7001ms)\nHow many members does it have?\tKazuhisa Ishii\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Kazuhisa Ishii, started as, a member) -> Kazuhisa Ishii (6964ms)\nHow many members does it have?\tthe virus\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the virus, spread among, the family members) -> the virus (7090ms)\nHow many members does it have?\tCosts\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Costs, are spread among, member libraries) -> Costs (7040ms)\nHow many members does it have?\tThe new website\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (The new website, is taking shape with, many members) -> The new website (6994ms)\nHow many members does it have?\tThe Office\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The Office, started her career as, a member) -> The Office (6940ms)\nHow many members does it have?\tDecember 16\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (December 16, provided, the Senate) -> December 16 (7090ms)\nHow many members does it have?\tno strangers\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (no strangers, talked about, the famous members) -> no strangers (7080ms)\nHow many members does it have?\tBach\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Bach, studied with, various family members) -> Bach (7035ms)\nHow many members does it have?\tthe Tribal Council\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the Tribal Council, started as, a Member) -> the Tribal Council (6972ms)\nHow many members does it have?\tthe Protect IP Act\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (the Protect IP Act, is being talked about in, the Senate) -> the Protect IP Act (6994ms)\nHow many members does it have?\tmedia outlets\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, opec) -> (media outlets, talk about, OPEC) -> media outlets (7078ms)\nHow many members does it have?\tlaw\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (law, provides a sense of, the Senate?s opposition) -> law (5494ms)\nHow many members does it have?\tquite a few volunteers\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (quite a few volunteers, started as, a steering committee members) -> quite a few volunteers (7044ms)\nHow many members does it have?\tthe Scrophulariaceae\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the Scrophulariaceae, suggested the study of, members) -> the Scrophulariaceae (6948ms)\nHow many members does it have?\tthe amounts\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (the amounts, initially talked about in, the Senate committee) -> the amounts (7061ms)\nHow many members does it have?\tpropagations\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (propagations, are actively spread by, the members) -> propagations (7090ms)\nHow many members does it have?\tThe New Jersey letter carrier\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The New Jersey letter carrier, started out as, a member) -> The New Jersey letter carrier (6964ms)\nHow many members does it have?\tsuch bias\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (such bias, spread to, new members) -> such bias (7065ms)\nHow many members does it have?\tminor changes\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (minor changes, provide, the Senate) -> minor changes (6796ms)\nHow many members does it have?\tNADCP\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (NADCP, provided early guidance to, state legislatures) -> NADCP (7001ms)\nHow many members does it have?\tthe opportunity\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the opportunity, study with, faculty members) -> the opportunity (7057ms)\nHow many members does it have?\tOrganizations\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Organizations, regularly spread the word to, members) -> Organizations (7008ms)\nHow many members does it have?\ttwo women\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (two women, started talking about, family members) -> two women (7053ms)\nHow many members does it have?\t1pm\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, senate) -> (1pm, started late as, the Senate Democrats) -> 1pm (3456ms)\nHow many members does it have?\tThe Constitution\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The Constitution, provided for, a Senate) -> The Constitution (7040ms)\nHow many members does it have?\ta primary influence\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (a primary influence, was shaped by, members) -> a primary influence (6956ms)\nHow many members does it have?\tBodine\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Bodine, started as, a junior crew member) -> Bodine (7086ms)\nHow many members does it have?\tresearch\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (research, involved studying, 400 members) -> research (6956ms)\nHow many members does it have?\tAdams\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Adams, talked about, other alleged members) -> Adams (7089ms)\nHow many members does it have?\tThe students\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (The students, will begin their studies as, members) -> The students (7091ms)\nHow many members does it have?\tAct\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Act, provide full public financing for, Senate candidates) -> Act (6979ms)\nHow many members does it have?\tCAMEO members\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (CAMEO members, talked to about, 60 members) -> CAMEO members (4045ms)\nHow many members does it have?\tJailers\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Jailers, talk about, ?wannabe? gang members) -> Jailers (7075ms)\nHow many members does it have?\tMullahs\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Mullahs, can talk smack about, a member) -> Mullahs (7025ms)\nHow many members does it have?\tthe Holy Spirit\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the Holy Spirit, spread amongst, the members) -> the Holy Spirit (7084ms)\nHow many members does it have?\tKermit\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Kermit, has talked occasionally about, other members) -> Kermit (7086ms)\nHow many members does it have?\tnotes\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (notes, study, team member Jeffrey McClintock) -> notes (7015ms)\nHow many members does it have?\tThe awakening\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The awakening, spread rapidly among, members) -> The awakening (7025ms)\nHow many members does it have?\tthe democratic process\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (the democratic process, provided by, the State Legislature) -> the democratic process (7061ms)\nHow many members does it have?\tSiskind\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Siskind, started as, a social documentarian and member) -> Siskind (7080ms)\nHow many members does it have?\tNobles\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Nobles, start off as, members) -> Nobles (6972ms)\nHow many members does it have?\tthe scholarship agreement\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the scholarship agreement, will also be provided to, the Senate) -> the scholarship agreement (7025ms)\nHow many members does it have?\tthe current one\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (the current one, was recently studied by, a Senate committee) -> the current one (7053ms)\nHow many members does it have?\tthe forum\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the forum, starts as, a junior member) -> the forum (7057ms)\nHow many members does it have?\tcourses/seminars/talks/workshops\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (courses/seminars/talks/workshops, will be shaped by, the members) -> courses/seminars/talks/workshops (7078ms)\nHow many members does it have?\tTopics\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Topics, are shaped by, members) -> Topics (7025ms)\nHow many members does it have?\tknowledge\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (knowledge, is spread by, members) -> knowledge (7080ms)\nHow many members does it have?\tProvost Gerry Selter\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Provost Gerry Selter, provided, the Senate) -> Provost Gerry Selter (7080ms)\nHow many members does it have?\tthe Senate Office\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the Senate Office, provide excellent support to, the Senate) -> the Senate Office (6940ms)\nHow many members does it have?\tthe lack\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (the lack, shapes, the Senate race) -> the lack (4169ms)\nHow many members does it have?\tstatistics\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (statistics, provided to, the Senate) -> statistics (6948ms)\nHow many members does it have?\tThe Faculty Council\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The Faculty Council, provides, Academic Senate consultation) -> The Faculty Council (7087ms)\nHow many members does it have?\texisting undergraduate courses and programs\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (existing undergraduate courses and programs, provide, Senate) -> existing undergraduate courses and programs (7084ms)\nHow many members does it have?\tthe Annual Meeting\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the Annual Meeting, is shaped by, CEF members) -> the Annual Meeting (7082ms)\nHow many members does it have?\tThe synod\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (The synod, is studying whether, members) -> The synod (6851ms)\nHow many members does it have?\ta great way\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (a great way, spread the word through, members) -> a great way (7065ms)\nHow many members does it have?\tlets\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (lets, talk about, the Senate) -> lets (7001ms)\nHow many members does it have?\tthe trouble\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the trouble, started as, a member) -> the trouble (7087ms)\nHow many members does it have?\tThe leadership\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The leadership, was provided by, the Senate) -> The leadership (7030ms)\nHow many members does it have?\tFrudakis\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Frudakis, studied, members) -> Frudakis (6986ms)\nHow many members does it have?\tDr. Fontana\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Dr. Fontana, has done studies on, members) -> Dr. Fontana (7068ms)\nHow many members does it have?\ta cup\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (a cup, shaped, annular disc or bowl member) -> a cup (7035ms)\nHow many members does it have?\tThe bill\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (The bill, is currently being shaped in, the Senate) -> The bill (6940ms)\nHow many members does it have?\tCongress\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Congress, started out as, members) -> Congress (7025ms)\nHow many members does it have?\tAssign roles\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Assign roles, to study, group members) -> Assign roles (7084ms)\nHow many members does it have?\tThe company\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The company, started as, a multipurpose coop... Member) -> The company (7068ms)\nHow many members does it have?\tBingaman\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Bingaman, also talks about, the expected Senate confirmation) -> Bingaman (7073ms)\nHow many members does it have?\tholds\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (holds, also is being studied by, a bipartisan Senate task force) -> holds (7044ms)\nHow many members does it have?\tthe comparative effectiveness\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the comparative effectiveness, studied, 26,000 members) -> the comparative effectiveness (6956ms)\nHow many members does it have?\tRogers\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Rogers, started as, a board member) -> Rogers (7057ms)\nHow many members does it have?\tT?m?r\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (T?m?r, started out as, a member) -> T?m?r (7068ms)\nHow many members does it have?\tyawns\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (yawns, spread through, the guild members) -> yawns (6972ms)\nHow many members does it have?\tsurvivors\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (survivors, talk about lost, family members) -> survivors (6964ms)\nHow many members does it have?\tGeorge Lake\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (George Lake, started as, a member) -> George Lake (6851ms)\nHow many members does it have?\tLieberman\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Lieberman, have provided, the Senate) -> Lieberman (7061ms)\nHow many members does it have?\tThe UCSA\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (The UCSA, provided, state legislatures) -> The UCSA (7086ms)\nHow many members does it have?\tGodinez\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Godinez, talked about being, a member) -> Godinez (6986ms)\nHow many members does it have?\tGreen Dot\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Green Dot, spread to, the 15 member states) -> Green Dot (6979ms)\nHow many members does it have?\tCapsule\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Capsule, Drugs with this shape, Members Mark Acetaminophen 500 tablet) -> Capsule (7090ms)\nHow many members does it have?\tCope\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Cope, shape the end of, a molded wood member) -> Cope (7065ms)\nHow many members does it have?\t1992\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (1992, studied, members) -> 1992 (6940ms)\nHow many members does it have?\tlegislation\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, senate) -> (legislation, passed as its starting point by, the Senate) -> legislation (3456ms)\nHow many members does it have?\tthe State Department\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the State Department, has yet to provide to, the Senate) -> the State Department (6994ms)\nHow many members does it have?\tinfection\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (infection, has spread beyond, members) -> infection (6994ms)\nHow many members does it have?\tConvex Cope\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Convex Cope, shape the end of, a moulded wood member) -> Convex Cope (7087ms)\nHow many members does it have?\ta decision\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (a decision, is spread across, members) -> a decision (7075ms)\nHow many members does it have?\tFront Row USA\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, rat pack) -> (Front Row USA, provides information on, Rat Pack) -> Front Row USA (7053ms)\nHow many members does it have?\tGaute Barlindhaug\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Gaute Barlindhaug, started out as, member) -> Gaute Barlindhaug (7086ms)\nHow many members does it have?\ta two page\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (a two page, spread to, each family member) -> a two page (7084ms)\nHow many members does it have?\tthe way Nixon\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the way Nixon, talked about, members) -> the way Nixon (7025ms)\nHow many members does it have?\tthe interviewees\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the interviewees, are talking about, band members) -> the interviewees (6940ms)\nHow many members does it have?\tsocialist states\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (socialist states, increasingly spreads among, members) -> socialist states (6940ms)\nHow many members does it have?\ta commencement ceremony Dr. Rose\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (a commencement ceremony Dr. Rose, talked about, a member) -> a commencement ceremony Dr. Rose (7044ms)\nHow many members does it have?\tamendments\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (amendments, provide recommendations to, the Senate) -> amendments (6972ms)\nHow many members does it have?\tthread\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (thread, talk about, members gardens) -> thread (7001ms)\nHow many members does it have?\tyear\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (year, was a study of, the United States Senate) -> year (7015ms)\nHow many members does it have?\tthe United States\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the United States, talk about, numerous members) -> the United States (7044ms)\nHow many members does it have?\tFurther holiday cheer\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Further holiday cheer, is being spread by, member) -> Further holiday cheer (6851ms)\nHow many members does it have?\tFunds\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (Funds, are provided by, the State Legislature) -> Funds (7057ms)\nHow many members does it have?\tPostscript Michael\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Postscript Michael, started as, a Powerful Practices member) -> Postscript Michael (7057ms)\nHow many members does it have?\tself-incompatibility\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (self-incompatibility, has been studied intensively in, members) -> self-incompatibility (6964ms)\nHow many members does it have?\tThe experiences\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The experiences, spread to, other family members) -> The experiences (6964ms)\nHow many members does it have?\tbiological viruses\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (biological viruses, spread within, individual ...members) -> biological viruses (7087ms)\nHow many members does it have?\tThe Committee\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The Committee, provided a report to, the Senate) -> The Committee (6972ms)\nHow many members does it have?\tthe FTC\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the FTC, provided, the Senate Special Committee) -> the FTC (6956ms)\nHow many members does it have?\tthe WELL\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the WELL, spread among, the more adventurous members) -> the WELL (6986ms)\nHow many members does it have?\tthe worship leaders\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the worship leaders, spread to, the class members) -> the worship leaders (7082ms)\nHow many members does it have?\tthe premium\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the premium, is spread among, members) -> the premium (7025ms)\nHow many members does it have?\tthe House version\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the House version, provided, the Senate bill) -> the House version (7086ms)\nHow many members does it have?\tBoomen\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Boomen, partially shape the identities of, their members) -> Boomen (7057ms)\nHow many members does it have?\tthe Malawian constitution\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the Malawian constitution, provides for, a Senate) -> the Malawian constitution (7082ms)\nHow many members does it have?\txTDSxSCARFACE i\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (xTDSxSCARFACE i, was talking about, ps3 members) -> xTDSxSCARFACE i (7078ms)\nHow many members does it have?\tThe infection\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The infection, spreads to, key team members) -> The infection (7061ms)\nHow many members does it have?\tScott\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Scott, started her career as, a member) -> Scott (7065ms)\nHow many members does it have?\tThe Cavern\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The Cavern, started as, a members club) -> The Cavern (7015ms)\nHow many members does it have?\tMike Mansfield\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (Mike Mansfield, shaped the character of, the modern Senate) -> Mike Mansfield (7078ms)\nHow many members does it have?\tA sideline discussion\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (A sideline discussion, quickly spreads between, members) -> A sideline discussion (7040ms)\nHow many members does it have?\tRESEARCH\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (RESEARCH, STUDIED, ABOUT 300-THOUSAND MILITARY SERVICE MEMBERS) -> RESEARCH (7080ms)\nHow many members does it have?\tthe funding\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (the funding, provided by, the state legislature) -> the funding (7040ms)\nHow many members does it have?\tthe regulations\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the regulations, were provided to, the Senate) -> the regulations (7087ms)\nHow many members does it have?\tThe stone\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (The stone, is rough-cut then shaped by, Tamokcub co-op members) -> The stone (7020ms)\nHow many members does it have?\tJud King\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Jud King, started as, a faculty member) -> Jud King (7090ms)\nHow many members does it have?\tThe previous FAQ\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (The previous FAQ, were talking about, MEMBER OBJECTS) -> The previous FAQ (7090ms)\nHow many members does it have?\tMr. Biden\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Mr. Biden, talked about, individual members) -> Mr. Biden (7090ms)\nHow many members does it have?\tThe Australian Constitution\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The Australian Constitution, provides, the Senate) -> The Australian Constitution (6956ms)\nHow many members does it have?\tquotes\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (quotes, study, team member Dietmar Glindemann) -> quotes (6191ms)\nHow many members does it have?\tfat taxes\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, state legislature) -> (fat taxes, are spreading through, state legislatures) -> fat taxes (7053ms)\nHow many members does it have?\tThe Department\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The Department, was asked to provide, the Senate) -> The Department (7061ms)\nHow many members does it have?\tthe 75 disorders\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (the 75 disorders, studied by, a Senate subcommittee) -> the 75 disorders (3149ms)\nHow many members does it have?\tDave Snow\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Dave Snow, present the study to, members) -> Dave Snow (7053ms)\nHow many members does it have?\tthe Rules violation\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, senate) -> (the Rules violation, spread to, the Senate Rehabilitation) -> the Rules violation (7068ms)\nHow many members does it have?\tAugust\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (August, could provide momentum for, the Senate) -> August (7020ms)\nHow many members does it have?\tRectangle\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Rectangle, Drugs with this shape, Members Mark Nicotine 2 chewing gum) -> Rectangle (7075ms)\nHow many members does it have?\tlizards\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (lizards, has been extensively studied in, members) -> lizards (7078ms)\nHow many members does it have?\tWitt\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Witt, talked about, his fellow members) -> Witt (7082ms)\nHow many members does it have?\tCircle\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Circle, Drugs with this shape, Members Mark Fexofenadine 180 film coated tablet) -> Circle (7078ms)\nHow many members does it have?\tMentors\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, rat pack) -> (Mentors, should be provided, Pack-ratting) -> Mentors (6972ms)\nHow many members does it have?\tscholarship winners\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (scholarship winners, study in, a caucus member?s district) -> scholarship winners (6994ms)\nHow many members does it have?\tMathis\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Mathis, talked about, ending gridlock in the Senate) -> Mathis (4045ms)\nHow many members does it have?\tThe law\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The law, started as, a private member) -> The law (7087ms)\nHow many members does it have?\tthe Mizo youth\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the Mizo youth, was shaped into, a responsibility adult member) -> the Mizo youth (7073ms)\nHow many members does it have?\tspaced apart ring\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (spaced apart ring, shaped, members) -> spaced apart ring (7091ms)\nHow many members does it have?\tKulick\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Kulick, studied, every member) -> Kulick (6994ms)\nHow many members does it have?\tMike Gravel\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Mike Gravel, talks about, the senate?s latest vote) -> Mike Gravel (6979ms)\nHow many members does it have?\tNicky\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Nicky, studied, members) -> Nicky (7075ms)\nHow many members does it have?\tpresident\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (president, spread among, Soka Gakkai members) -> president (6851ms)\nHow many members does it have?\tHarris\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (Harris, shaped, the modern Senate chaplaincy) -> Harris (6987ms)\nHow many members does it have?\tEdwin R. A. Seligman\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Edwin R. A. Seligman, had all studied with, members) -> Edwin R. A. Seligman (7044ms)\nHow many members does it have?\tThe tutors\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (The tutors, studied were, members) -> The tutors (6964ms)\nHow many members does it have?\tFlamin\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Flamin, started off as, a member) -> Flamin (7020ms)\nHow many members does it have?\teach team member\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (each team member, could study, one member) -> each team member (6994ms)\nHow many members does it have?\tThe cup\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (The cup, shaped, member 17) -> The cup (7035ms)\nHow many members does it have?\tX Watch Brian\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (X Watch Brian, talk about being, a former Hair Club member) -> X Watch Brian (7065ms)\nHow many members does it have?\tFifty-Five\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Fifty-Five, is shaped by, its members) -> Fifty-Five (7053ms)\nHow many members does it have?\tcolleagues\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (colleagues, studied, 1,037 members) -> colleagues (7057ms)\nHow many members does it have?\tthe Harveys\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the Harveys, had started out as, members) -> the Harveys (6851ms)\nHow many members does it have?\tNeal\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Neal, has studied with, members) -> Neal (6979ms)\nHow many members does it have?\tthe highly contagious disease\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the highly contagious disease, spreads to, family members) -> the highly contagious disease (7057ms)\nHow many members does it have?\tA channel\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (A channel, shaped, member having an upwardly open face) -> A channel (7001ms)\nHow many members does it have?\tthe other two\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the other two, may be shaped by, any member) -> the other two (7080ms)\nHow many members does it have?\tAllison\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Allison, is talking about, the Senate) -> Allison (7075ms)\nHow many members does it have?\tthe aisle\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (the aisle, are talking about, the U.S. Senate race) -> the aisle (7035ms)\nHow many members does it have?\tthe agreement\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the agreement, provides, the Senate) -> the agreement (7057ms)\nHow many members does it have?\tPlayers\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Players, start as, a Gold member) -> Players (6797ms)\nHow many members does it have?\t50 active laboratories\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (50 active laboratories, spread over, all member states) -> 50 active laboratories (7087ms)\nHow many members does it have?\tHugh\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Hugh, will also be providing, Senate updates) -> Hugh (7089ms)\nHow many members does it have?\tyou/your trainers\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (you/your trainers, talk about, the members) -> you/your trainers (7008ms)\nHow many members does it have?\tan interface\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (an interface, specifies only the shape of, members) -> an interface (7061ms)\nHow many members does it have?\tan identity\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (an identity, thus shapes the identities of, its members) -> an identity (7035ms)\nHow many members does it have?\t1760\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (1760, provided, the colonial Connecticut State Legislature) -> 1760 (7089ms)\nHow many members does it have?\tAqat\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Aqat, said talking about, the other member) -> Aqat (7089ms)\nHow many members does it have?\tRationalMan\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (RationalMan, was talking about, BNP members) -> RationalMan (7080ms)\nHow many members does it have?\tClinton\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Clinton, provided from, the senate) -> Clinton (7082ms)\nHow many members does it have?\tthe session\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (the session, shaped up as, the Senate) -> the session (4169ms)\nHow many members does it have?\tThe Senate\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The Senate, provides public access to, Senate proceedings) -> The Senate (7084ms)\nHow many members does it have?\tthe conference agreement\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the conference agreement, provides, the Senate) -> the conference agreement (7020ms)\nHow many members does it have?\tJeremy\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Jeremy, studied with, members) -> Jeremy (7080ms)\nHow many members does it have?\tthe katana\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the katana, have spread with, the members) -> the katana (7030ms)\nHow many members does it have?\tMailing labels\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Mailing labels, will be provided to, the Senate) -> Mailing labels (7057ms)\nHow many members does it have?\tThe VPRI\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The VPRI, provides internal reports to, Senate) -> The VPRI (7049ms)\nHow many members does it have?\tThe paper\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The paper, provides recommended actions for, local senates) -> The paper (7001ms)\nHow many members does it have?\tthe most\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the most, talked about, member) -> the most (7090ms)\nHow many members does it have?\tT.I.\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (T.I., also talked about, the newest Hustle Gang members) -> T.I. (7035ms)\nHow many members does it have?\trelated policies\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (related policies, are shaped to fit, member priorities) -> related policies (7086ms)\nHow many members does it have?\tDr. Kim\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Dr. Kim, started as, a member) -> Dr. Kim (6956ms)\nHow many members does it have?\tdemarcation and succession\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (demarcation and succession, will be provided to, the Senate) -> demarcation and succession (7090ms)\nHow many members does it have?\tSarah\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Sarah, studied under, members) -> Sarah (7072ms)\nHow many members does it have?\tGlenn Branca\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Glenn Branca, started out as, a member) -> Glenn Branca (7049ms)\nHow many members does it have?\tstaff writers and photographers\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (staff writers and photographers, talk about, military members) -> staff writers and photographers (7065ms)\nHow many members does it have?\tAbu Sukkar\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Abu Sukkar, talked about, members) -> Abu Sukkar (6948ms)\nHow many members does it have?\tThe President\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The President, provided, the Senate) -> The President (6986ms)\nHow many members does it have?\tmeat\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (meat, study, the pack members) -> meat (7084ms)\nHow many members does it have?\tthe landscape\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (the landscape, took shape for, 2008 Senate races) -> the landscape (7080ms)\nHow many members does it have?\tCulkin\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Culkin, is also shaping up as, the most gifted member) -> Culkin (7053ms)\nHow many members does it have?\tsection\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (section, provides secretarial services to, Senate) -> section (7049ms)\nHow many members does it have?\tthe reviewers\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the reviewers, always talk about, other audience members) -> the reviewers (7061ms)\nHow many members does it have?\tresidents\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (residents, talked about, their friends and family members) -> residents (7086ms)\nHow many members does it have?\tthe Wireless RERC\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the Wireless RERC, conducted a study among, members) -> the Wireless RERC (6972ms)\nHow many members does it have?\tthe LCC ?\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (the LCC ?, provides legal advice to, the state legislature) -> the LCC ? (7089ms)\nHow many members does it have?\tVince\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, motley crue) -> (Vince, is talking about, Motley Crue) -> Vince (7090ms)\nHow many members does it have?\tThe quartet\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (The quartet, studied with, members) -> The quartet (6986ms)\nHow many members does it have?\tSecretary Norton\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Secretary Norton, provided, the Senate Committee) -> Secretary Norton (7068ms)\nHow many members does it have?\tChris Christie\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Chris Christie, provided, confidential Senate questionnaires) -> Chris Christie (6964ms)\nHow many members does it have?\tan attempt\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (an attempt, reflect the spread of, members) -> an attempt (7068ms)\nHow many members does it have?\tThe passion and nurturing\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The passion and nurturing, started as, a member) -> The passion and nurturing (6940ms)\nHow many members does it have?\tcreative ideas\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (creative ideas, spread amongst, its members) -> creative ideas (7078ms)\nHow many members does it have?\tfalse teaching\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (false teaching, spread among, the members) -> false teaching (7068ms)\nHow many members does it have?\tthe period\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the period, studied since, members) -> the period (6986ms)\nHow many members does it have?\tThe Mommies Network\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The Mommies Network, started as, a member) -> The Mommies Network (7008ms)\nHow many members does it have?\ta speech\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (a speech, talk about, other cast members) -> a speech (4045ms)\nHow many members does it have?\tFlorida Atlantic University\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Florida Atlantic University, has studied, its members) -> Florida Atlantic University (6191ms)\nHow many members does it have?\tNokelainen\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Nokelainen, started the season as, a member) -> Nokelainen (7090ms)\nHow many members does it have?\tThe core group\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The core group, started as, the members) -> The core group (6964ms)\nHow many members does it have?\tOil speculation bill\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Oil speculation bill, provides, Senate forum) -> Oil speculation bill (7072ms)\nHow many members does it have?\tSinger\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Singer, has studied, members) -> Singer (6191ms)\nHow many members does it have?\tlittle formal training\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (little formal training, started as, members) -> little formal training (7008ms)\nHow many members does it have?\tThe Hoasca Project\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (The Hoasca Project, studied, 15 long-time members) -> The Hoasca Project (7053ms)\nHow many members does it have?\tSteve Jacob\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Steve Jacob, is talking about, the Senate immigration bill) -> Steve Jacob (7090ms)\nHow many members does it have?\tChristians\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Christians, talked often about being, members) -> Christians (7044ms)\nHow many members does it have?\tthe online service\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the online service, provided to visitors to, Senate websites) -> the online service (5494ms)\nHow many members does it have?\tThe deference\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The deference, provided to, the Senate) -> The deference (6972ms)\nHow many members does it have?\tOregon\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (Oregon, was provided through, the State Legislature) -> Oregon (7049ms)\nHow many members does it have?\tTraffic Syndicate\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Traffic Syndicate, Start as, a silver member) -> Traffic Syndicate (7025ms)\nHow many members does it have?\tNelson\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Nelson, started as, a LIFE board member) -> Nelson (7008ms)\nHow many members does it have?\tWiborg\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Wiborg, started as, a Burger King crew member) -> Wiborg (6986ms)\nHow many members does it have?\tWBro Peter Hewitt\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (WBro Peter Hewitt, spread amongst, the members) -> WBro Peter Hewitt (7065ms)\nHow many members does it have?\tAUSA\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (AUSA, Provides Testimony for, Senate VA) -> AUSA (6979ms)\nHow many members does it have?\tthe news outlets\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the news outlets, stop talking about, TEA Party members) -> the news outlets (7084ms)\nHow many members does it have?\tthe martial arts\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the martial arts, has studied with, members) -> the martial arts (7089ms)\nHow many members does it have?\tApplicants\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Applicants, will start as, members) -> Applicants (7075ms)\nHow many members does it have?\tan infected worker\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (an infected worker, spread the disease to, family members) -> an infected worker (6956ms)\nHow many members does it have?\tthe meeting\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the meeting, is shaped by, the 13 members) -> the meeting (7086ms)\nHow many members does it have?\tInstead new rights\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Instead new rights, spread among, the member nations) -> Instead new rights (7065ms)\nHow many members does it have?\tChan\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Chan, talked about, a gang member) -> Chan (7072ms)\nHow many members does it have?\tthe Naxalite?movement\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the Naxalite?movement, took shape after, some members) -> the Naxalite?movement (7025ms)\nHow many members does it have?\tCass\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Cass, will talk about, the unsung members) -> Cass (7053ms)\nHow many members does it have?\tDoubront and Bard\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Doubront and Bard, will get their first starts as, members) -> Doubront and Bard (7090ms)\nHow many members does it have?\tsuch interested parties\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (such interested parties, as will provide, the Senate) -> such interested parties (7072ms)\nHow many members does it have?\tZwaggle\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Zwaggle, is shaped by, our community members) -> Zwaggle (7049ms)\nHow many members does it have?\tEverybody\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Everybody, automatically starts off as, a member) -> Everybody (7030ms)\nHow many members does it have?\tDIAN researchers\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (DIAN researchers, are studying, members) -> DIAN researchers (6979ms)\nHow many members does it have?\tBabesiosis\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Babesiosis, is spread by, members) -> Babesiosis (5494ms)\nHow many members does it have?\tthe GSEs\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the GSEs, has been provided to, the Senate) -> the GSEs (7035ms)\nHow many members does it have?\tThe Vancouver native\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The Vancouver native, started as, a young member) -> The Vancouver native (7089ms)\nHow many members does it have?\tRobin\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Robin, started as, a member) -> Robin (7049ms)\nHow many members does it have?\tproject managers\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (project managers, start out as, members) -> project managers (6956ms)\nHow many members does it have?\tSteve Boris\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Steve Boris, started as, members) -> Steve Boris (7090ms)\nHow many members does it have?\tTVW\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (TVW, provides televised coverage of, the state Legislature) -> TVW (7008ms)\nHow many members does it have?\tWe?d\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (We?d, rather talk about, our 100 member Falls Rump Church) -> We?d (7082ms)\nHow many members does it have?\tSenate\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Senate, Provides links to, Senate Committees) -> Senate (7030ms)\nHow many members does it have?\tPFI\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (PFI, provides information to, Congress and state legislatures) -> PFI (3456ms)\nHow many members does it have?\tVampire characters\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Vampire characters, start as, members) -> Vampire characters (7068ms)\nHow many members does it have?\tThe news\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The news, spread after, a few members) -> The news (7061ms)\nHow many members does it have?\tThe House\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The House, shall provide, the Senate) -> The House (6987ms)\nHow many members does it have?\tFunding\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (Funding, is provided by, the Illinois State Legislature) -> Funding (7090ms)\nHow many members does it have?\tsuch Churches and fellowships\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (such Churches and fellowships, spread among, members) -> such Churches and fellowships (7075ms)\nHow many members does it have?\tPresident Clinton\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (President Clinton, was talked about by, the Klan members) -> President Clinton (4169ms)\nHow many members does it have?\tFL\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (FL, started their careers as, members) -> FL (6948ms)\nHow many members does it have?\tPUBLIC MOOD\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (PUBLIC MOOD, WILL SHAPE, SENATE) -> PUBLIC MOOD (7057ms)\nHow many members does it have?\tPinworm infection\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Pinworm infection, spreads easily to, family members) -> Pinworm infection (7044ms)\nHow many members does it have?\tthe amazing enthusiasm\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the amazing enthusiasm, spread throughout, the audience members) -> the amazing enthusiasm (7001ms)\nHow many members does it have?\tAmerica\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (America, has studied with, members) -> America (7090ms)\nHow many members does it have?\tdespair\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (despair, spread over, the members) -> despair (7040ms)\nHow many members does it have?\tthe ABR list\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the ABR list, provides, his Senate Leadership number) -> the ABR list (7044ms)\nHow many members does it have?\t555-555-5555 Everyone\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (555-555-5555 Everyone, starts as, a Blue Status Member) -> 555-555-5555 Everyone (6979ms)\nHow many members does it have?\tthe ring\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the ring, shaped, support member) -> the ring (6972ms)\nHow many members does it have?\tDahlia Lithwick\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Dahlia Lithwick, provides, Senate Democrats) -> Dahlia Lithwick (7015ms)\nHow many members does it have?\temployees\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (employees, started to talk about, the family members) -> employees (7030ms)\nHow many members does it have?\tMilanovich\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Milanovich, started as, a member) -> Milanovich (7053ms)\nHow many members does it have?\twere\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (were, talking about, the Senate) -> were (7087ms)\nHow many members does it have?\twritten records\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (written records, show the wide spread of, members) -> written records (6940ms)\nHow many members does it have?\tSpeakers and family members\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Speakers and family members, will talk about, members) -> Speakers and family members (6994ms)\nHow many members does it have?\ta moderator\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (a moderator, talked about, the court members) -> a moderator (7075ms)\nHow many members does it have?\tLotteries\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (Lotteries, provide, state legislatures) -> Lotteries (7068ms)\nHow many members does it have?\tthe potentially controversial plan\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (the potentially controversial plan, taking shape in, the Senate) -> the potentially controversial plan (7086ms)\nHow many members does it have?\tthe anchor\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the anchor, talked about, gang members) -> the anchor (7057ms)\nHow many members does it have?\tthe full negotiating records\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the full negotiating records, have been provided to, the Senate) -> the full negotiating records (7044ms)\nHow many members does it have?\tthe Rohrabacher bill\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the Rohrabacher bill, provides, Senate representation) -> the Rohrabacher bill (6851ms)\nHow many members does it have?\tOctober Tristan Koch\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (October Tristan Koch, started as, a new core team member) -> October Tristan Koch (7090ms)\nHow many members does it have?\tHillary Clinton\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Hillary Clinton, was talked about by, the Klan members) -> Hillary Clinton (6986ms)\nHow many members does it have?\ta Passage\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (a Passage, is an informal bible study for, members) -> a Passage (6948ms)\nHow many members does it have?\tthe attack\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the attack, can spread to, other members) -> the attack (7065ms)\nHow many members does it have?\tSimon\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Simon, talks about, ways NAVCA members) -> Simon (7040ms)\nHow many members does it have?\tHealth Freedom\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Health Freedom, will talk about, California Senate Bill SB 2100) -> Health Freedom (7089ms)\nHow many members does it have?\tOval\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Oval, Drugs with this shape, Members Mark Loratadine 10 tablet) -> Oval (7084ms)\nHow many members does it have?\tHome\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Home, spreads lies about, members) -> Home (7008ms)\nHow many members does it have?\tthe regions\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the regions, studied by, core List members) -> the regions (6956ms)\nHow many members does it have?\tBig O and Blag-o\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Big O and Blag-o, met to talk about, the Senate seat vacancy) -> Big O and Blag-o (7025ms)\nHow many members does it have?\tPrometheus\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Prometheus, had been separately shaping, those natural members) -> Prometheus (7015ms)\nHow many members does it have?\tPhil Gramm\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Phil Gramm, was talking about leaving, the Senate) -> Phil Gramm (7040ms)\nHow many members does it have?\tGlobals Inc\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Globals Inc, took shape initially with only, four members) -> Globals Inc (7053ms)\nHow many members does it have?\tthe great justices\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the great justices, started out as, a member) -> the great justices (7089ms)\nHow many members does it have?\tSenator Duffy\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Senator Duffy, talked about, the Senate Retreat) -> Senator Duffy (7084ms)\nHow many members does it have?\ta report\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (a report, will be provided to, the Senate) -> a report (7068ms)\nHow many members does it have?\tLouv\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Louv, talked about being, a member) -> Louv (6948ms)\nHow many members does it have?\tthe Burger King Carl\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the Burger King Carl, started as, a student crew member) -> the Burger King Carl (7040ms)\nHow many members does it have?\tthe final plan\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (the final plan, will be provided to, the state Legislature) -> the final plan (7090ms)\nHow many members does it have?\tJoe\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Joe, studied with, members) -> Joe (7080ms)\nHow many members does it have?\tVSLA groups\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (VSLA groups, spread valuable financial knowledge to, members) -> VSLA groups (7035ms)\nHow many members does it have?\tthe workplan\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the workplan, will be shaped by, the members) -> the workplan (7089ms)\nHow many members does it have?\ta small group\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (a small group, then spread, member ship) -> a small group (6956ms)\nHow many members does it have?\tthe interviews\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the interviews, talk about, other family members) -> the interviews (7086ms)\nHow many members does it have?\tInternet Addiction\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Internet Addiction, Study, | ValueWalk Member Login Username) -> Internet Addiction (7089ms)\nHow many members does it have?\tthe poison\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the poison, has spread to, every member) -> the poison (7090ms)\nHow many members does it have?\told suggestion 's\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (old suggestion 's, talked about with, some members) -> old suggestion 's (7008ms)\nHow many members does it have?\tGarret Hobart\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (Garret Hobart, studied, the Senate) -> Garret Hobart (7087ms)\nHow many members does it have?\tRoger Overton\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Roger Overton, started his career as, a member) -> Roger Overton (7008ms)\nHow many members does it have?\tthe scene\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the scene, began spreading, online , several members) -> the scene (7089ms)\nHow many members does it have?\tBloggers\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Bloggers, are also talking about, a Senate race) -> Bloggers (4045ms)\nHow many members does it have?\t2011\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (2011, is shaping up for, AAMA members) -> 2011 (7086ms)\nHow many members does it have?\tDefender Association\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, state legislature) -> (Defender Association, did the study for, the state Legislature) -> Defender Association (7075ms)\nHow many members does it have?\twww .safc-fans.com\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (www .safc-fans.com, Spread, the word 0 members) -> www .safc-fans.com (6851ms)\nHow many members does it have?\tJohn\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (John, has studied with, members) -> John (7035ms)\nHow many members does it have?\tthe tag\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the tag, has been spread around, CR members) -> the tag (7090ms)\nHow many members does it have?\tThe Associated Press\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (The Associated Press, studied, his entire Senate career) -> The Associated Press (3149ms)\nHow many members does it have?\tNeville Hobson\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Neville Hobson, is talking about, a UK jury member) -> Neville Hobson (6948ms)\nHow many members does it have?\tSheryl Underwood\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Sheryl Underwood, talked about, the member organizations) -> Sheryl Underwood (7035ms)\nHow many members does it have?\tthe same people\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the same people, provided the answers at, Senate estimates) -> the same people (7068ms)\nHow many members does it have?\tRumbel\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Rumbel, studied with, members) -> Rumbel (6986ms)\nHow many members does it have?\tthe funds\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (the funds, provided by, the New York State Legislature) -> the funds (7068ms)\nHow many members does it have?\tAlberta?we\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Alberta?we, were talking about, family members) -> Alberta?we (6986ms)\nHow many members does it have?\tMusic\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, rat pack) -> (Music, was provided by, The Irish Rat Pack) -> Music (7025ms)\nHow many members does it have?\tIreland\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Ireland, could spread to, core members) -> Ireland (7086ms)\nHow many members does it have?\tIllinois\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Illinois, provided, senate bill sb3668) -> Illinois (7078ms)\nHow many members does it have?\ta parliamentary committee\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (a parliamentary committee, studying, her private members  bill) -> a parliamentary committee (7015ms)\nHow many members does it have?\tGeorgetown University\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, state legislature) -> (Georgetown University, has studied, a dozen state legislatures) -> Georgetown University (7073ms)\nHow many members does it have?\tMaggots\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Maggots, are the worm-shaped larva of, various members) -> Maggots (7044ms)\nHow many members does it have?\tFeisty\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Feisty, was talking about, the Senate) -> Feisty (7089ms)\nHow many members does it have?\tJennifer Long\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Jennifer Long, even provided testimony to, the Senate) -> Jennifer Long (6956ms)\nHow many members does it have?\tsubcontracting opportunities\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (subcontracting opportunities, will be provided by, the Senate) -> subcontracting opportunities (7072ms)\nHow many members does it have?\tWiley\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Wiley, provided, a Senate committee) -> Wiley (7075ms)\nHow many members does it have?\tJCC\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (JCC, provides, a Student Senate) -> JCC (6191ms)\nHow many members does it have?\tYang\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Yang, studied with, members) -> Yang (7091ms)\nHow many members does it have?\tCounsel\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Counsel, should study, the member) -> Counsel (7086ms)\nHow many members does it have?\tSenator Kerry\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, senate) -> (Senator Kerry, needs to talk about, his Senate record) -> Senator Kerry (6979ms)\nHow many members does it have?\tMcDonald?s\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (McDonald?s, started as, crew members) -> McDonald?s (6956ms)\nHow many members does it have?\tRISCA\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (RISCA, are provided by, the Rhode Island State Legislature) -> RISCA (7053ms)\nHow many members does it have?\tRumors\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Rumors, were quickly spreading among, the members) -> Rumors (7057ms)\nHow many members does it have?\tAmelia\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, rat pack) -> (Amelia, provided all the information to, the RAT pack) -> Amelia (6948ms)\nHow many members does it have?\tWashington\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (Washington, must provide, the state legislature) -> Washington (7020ms)\nHow many members does it have?\t59\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, senate) -> (59, started as, Senate Constitutional Amendment 1) -> 59 (7049ms)\nHow many members does it have?\tthe talus\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the talus, is shaped like, that members) -> the talus (7061ms)\nHow many members does it have?\tthe hemispherically\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the hemispherically, shaped, housing member 62) -> the hemispherically (7001ms)\nHow many members does it have?\tGenetic Profiles Genes\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Genetic Profiles Genes, studied, CFS & FM Family members) -> Genetic Profiles Genes (7089ms)\nHow many members does it have?\tColorado Mr. Franklin\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Colorado Mr. Franklin, started as, a member) -> Colorado Mr. Franklin (7025ms)\nHow many members does it have?\teach case\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (each case, study, a senior member) -> each case (7065ms)\nHow many members does it have?\tarms\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (arms, provide security for, the state legislature) -> arms (7035ms)\nHow many members does it have?\tRob\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Rob, started as, a member) -> Rob (7072ms)\nHow many members does it have?\tFamilies\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Families, talk about, their missing members) -> Families (7080ms)\nHow many members does it have?\tEgypt and Tunisia\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, opec) -> (Egypt and Tunisia, might spread to, other OPEC nations) -> Egypt and Tunisia (7065ms)\nHow many members does it have?\tUnity\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Unity, shapes, its members) -> Unity (6972ms)\nHow many members does it have?\tthe value\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the value, talk about, one member) -> the value (6979ms)\nHow many members does it have?\tinformation\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (information, provide this information to, state legislatures) -> information (7020ms)\nHow many members does it have?\tthe funding level\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the funding level, provided by, the Senate) -> the funding level (7089ms)\nHow many members does it have?\tAustin\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Austin, started as, a company member) -> Austin (7015ms)\nHow many members does it have?\tthe wonks\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (the wonks, study, the Senate) -> the wonks (7090ms)\nHow many members does it have?\tJustice\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Justice, provided to, Senate offices) -> Justice (5494ms)\nHow many members does it have?\tPaquin\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Paquin, is talking about, actual family members or made-up) -> Paquin (7015ms)\nHow many members does it have?\tNepal\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Nepal, started as, two Nepalese members) -> Nepal (7072ms)\nHow many members does it have?\tThiel and colleagues\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Thiel and colleagues, studied, members) -> Thiel and colleagues (6986ms)\nHow many members does it have?\t1971\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, opec) -> (1971, eventually spread to, all OPEC countries) -> 1971 (6948ms)\nHow many members does it have?\tNorthwestern researcher Albaugh\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Northwestern researcher Albaugh, studied were, members) -> Northwestern researcher Albaugh (7044ms)\nHow many members does it have?\t73 regions\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (73 regions, spread across, 8 EU Member States) -> 73 regions (6979ms)\nHow many members does it have?\tThe Liberals\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (The Liberals, had planned to study the budget in, the Senate) -> The Liberals (7049ms)\nHow many members does it have?\tthe downturn\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the downturn, spread to, core members France) -> the downturn (7001ms)\nHow many members does it have?\tThe researchers\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (The researchers, studied, 13,128 members) -> The researchers (7082ms)\nHow many members does it have?\tthe House\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, senate) -> (the House, is spreading to, the Senate) -> the House (7090ms)\nHow many members does it have?\tpillows\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (pillows, spread to, every family member) -> pillows (5494ms)\nHow many members does it have?\tsomebody\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (somebody, talks about, a member) -> somebody (7015ms)\nHow many members does it have?\tFairway Drive\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Fairway Drive, quickly spread as, members) -> Fairway Drive (7020ms)\nHow many members does it have?\tgroup health insurance coverage\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (group health insurance coverage, is spread out among, members) -> group health insurance coverage (7084ms)\nHow many members does it have?\tcompanies\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (companies, are being studied by, members) -> companies (7078ms)\nHow many members does it have?\tliability\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (liability, is spread among, members) -> liability (7065ms)\nHow many members does it have?\ta neighbor\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (a neighbor, spread out, my family members) -> a neighbor (7084ms)\nHow many members does it have?\tRomanyshyn\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Romanyshyn, started as, a member) -> Romanyshyn (7087ms)\nHow many members does it have?\tBusta\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Busta, started his career as, a member) -> Busta (6948ms)\nHow many members does it have?\tUniversities Australia\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Universities Australia, provided, the Senate Committee) -> Universities Australia (5494ms)\nHow many members does it have?\tthe sites\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the sites, spread among, Intelligence Community members) -> the sites (7084ms)\nHow many members does it have?\tSen. Stevens\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Sen. Stevens, provided invaluable leadership of, the Senate) -> Sen. Stevens (6994ms)\nHow many members does it have?\tCisco\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Cisco, studied, 2,000 members) -> Cisco (6956ms)\nHow many members does it have?\tquantity\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (quantity, talked about, members) -> quantity (4045ms)\nHow many members does it have?\tthe Committee\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the Committee, provide, the Academic Senate Executive Committee) -> the Committee (7087ms)\nHow many members does it have?\tthe bill\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (the bill, shaping up in, the Senate) -> the bill (7065ms)\nHow many members does it have?\tnetizens\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (netizens, talked about, a senior member) -> netizens (7075ms)\nHow many members does it have?\tWyant\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Wyant, provided, policy expertise for the Senate Majority Office) -> Wyant (7091ms)\nHow many members does it have?\tProfessional Service\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Professional Service, Study, section member) -> Professional Service (7020ms)\nHow many members does it have?\tPaddy O'Fyrnyture\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Paddy O'Fyrnyture, started as, New members) -> Paddy O'Fyrnyture (7040ms)\nHow many members does it have?\tthe Nature report\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (the Nature report, studied, 205 members) -> the Nature report (7020ms)\nHow many members does it have?\tyears\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (years, took shape after, committee member Bob Getz) -> years (6994ms)\nHow many members does it have?\tcontent identifiers\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (content identifiers, are spread throughout, the members) -> content identifiers (7049ms)\nHow many members does it have?\tArms Office\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Arms Office, provides security for, the Senate) -> Arms Office (7078ms)\nHow many members does it have?\tActing\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Acting, has studied abroad with, members) -> Acting (6191ms)\nHow many members does it have?\tthe shares\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the shares, spread among, 175 other member governments) -> the shares (7020ms)\nHow many members does it have?\ta disease\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (a disease, is studied among, members) -> a disease (7025ms)\nHow many members does it have?\tfoul\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (foul, would benefit from studying, Senate history) -> foul (3150ms)\nHow many members does it have?\tStudents\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Students, may also study with, members) -> Students (7080ms)\nHow many members does it have?\tThe crisis\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The crisis, can spread to, family members) -> The crisis (7075ms)\nHow many members does it have?\tMccain\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Mccain, has been provided one of, the senate) -> Mccain (6986ms)\nHow many members does it have?\tthe triangular\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the triangular, shaped, support member) -> the triangular (7078ms)\nHow many members does it have?\telectrochemistry\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (electrochemistry, are currently being studied by, members) -> electrochemistry (7072ms)\nHow many members does it have?\tJewish organizations\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Jewish organizations, talking about, members of their faith) -> Jewish organizations (7065ms)\nHow many members does it have?\tCarl Schaefer\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Carl Schaefer, first studied under, members) -> Carl Schaefer (7075ms)\nHow many members does it have?\tArmstrong\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Armstrong, talked about, each of the Guns members) -> Armstrong (7087ms)\nHow many members does it have?\tThe Old Ways\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The Old Ways, spread to, members) -> The Old Ways (6940ms)\nHow many members does it have?\tThe document\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The document, had been provided to, the Senate) -> The document (6972ms)\nHow many members does it have?\tAchievement Everyone\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Achievement Everyone, starts as, a member) -> Achievement Everyone (6940ms)\nHow many members does it have?\tAn unlikely phenomenon\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (An unlikely phenomenon, is shaping up, a great Senate race) -> An unlikely phenomenon (4169ms)\nHow many members does it have?\tthe new Authorization Act\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the new Authorization Act, is shaped by, Members) -> the new Authorization Act (7080ms)\nHow many members does it have?\tvisitors\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (visitors, provided testimony before, the state legislature) -> visitors (7091ms)\nHow many members does it have?\ta showdown\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (a showdown, is shaping up between, the House and Senate) -> a showdown (7044ms)\nHow many members does it have?\tJensen\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Jensen, talked about, the vulnerable members) -> Jensen (6956ms)\nHow many members does it have?\tInstead people\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Instead people, should try to talk about, the family members) -> Instead people (7065ms)\nHow many members does it have?\tthe Western Hemisphere\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the Western Hemisphere, was shaped by, members) -> the Western Hemisphere (6979ms)\nHow many members does it have?\tinfections\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (infections, usually spread between, family members) -> infections (6964ms)\nHow many members does it have?\tThe illness\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The illness, is spread to, household members) -> The illness (6994ms)\nHow many members does it have?\tEni Mustafaraj\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (Eni Mustafaraj, studied, the local senate race) -> Eni Mustafaraj (3150ms)\nHow many members does it have?\tThe SEC\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (The SEC, will still conduct the study in, the Senate bill) -> The SEC (7053ms)\nHow many members does it have?\tA strategy\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (A strategy, be shaped by, the members/owners) -> A strategy (7082ms)\nHow many members does it have?\tgreater power\t-0.222222222219\tHow many members does it have? -> $x: ($x, value, senate) -> (greater power, effectively reduce the value of, the Senate) -> greater power (4045ms)\nHow many members does it have?\tThe player\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The player, starts as, a low ranking members) -> The player (7015ms)\nHow many members does it have?\tthe positive\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the positive, avoid negative talk about, any team members) -> the positive (7090ms)\nHow many members does it have?\tthe CIAA\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (the CIAA, is given full shape with, skilled members) -> the CIAA (7035ms)\nHow many members does it have?\tOne woman\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (One woman, was talking about, a staff member) -> One woman (7040ms)\nHow many members does it have?\tLola\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Lola, will talk about, integrating members) -> Lola (7090ms)\nHow many members does it have?\tA party\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (A party, shapes, its members ideologies) -> A party (7053ms)\nHow many members does it have?\tthe administration\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the administration, to provide, Senate) -> the administration (6940ms)\nHow many members does it have?\tASAP\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (ASAP, spread across, 44 member companies) -> ASAP (6972ms)\nHow many members does it have?\tAn epic battle\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (An epic battle, is shaping up in, the Michigan Senate) -> An epic battle (6940ms)\nHow many members does it have?\tH.R. 5898\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (H.R. 5898, would provide, state legislatures) -> H.R. 5898 (7030ms)\nHow many members does it have?\tKennedy\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Kennedy, provided, the senate) -> Kennedy (7035ms)\nHow many members does it have?\tthe least\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (the least, talked about, but most effective member) -> the least (7087ms)\nHow many members does it have?\tMike fasano\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Mike fasano, provided in, the senate) -> Mike fasano (6796ms)\nHow many members does it have?\tinstrumental talent\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (instrumental talent, spread across, all five members) -> instrumental talent (7001ms)\nHow many members does it have?\tTVA volunteer Nimisha Raja\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (TVA volunteer Nimisha Raja, also spread the word to, members) -> TVA volunteer Nimisha Raja (6979ms)\nHow many members does it have?\tthe cost\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the cost, is spread out among, club members) -> the cost (7040ms)\nHow many members does it have?\tHageland Aviation\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Hageland Aviation, started as, the youngest member) -> Hageland Aviation (7087ms)\nHow many members does it have?\tPaul\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Paul, is talking about, members) -> Paul (7090ms)\nHow many members does it have?\tfear\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (fear, had been talked about by, a member) -> fear (4045ms)\nHow many members does it have?\tZiobrowski\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Ziobrowski, 's more recent study of, members) -> Ziobrowski (6940ms)\nHow many members does it have?\tquality\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (quality, are intensively studied by, members) -> quality (7089ms)\nHow many members does it have?\tDelta Sigma Theta\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Delta Sigma Theta, has been shaped by, its members) -> Delta Sigma Theta (7061ms)\nHow many members does it have?\tthe fire\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the fire, started as, members) -> the fire (6972ms)\nHow many members does it have?\tthe termicides\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the termicides, spread to, all the members) -> the termicides (7049ms)\nHow many members does it have?\tOberstar\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (Oberstar, is studying, the Senate) -> Oberstar (3150ms)\nHow many members does it have?\treports\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (reports, are provided to, the California State Legislature) -> reports (3456ms)\nHow many members does it have?\tthe revitalisation\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (the revitalisation, spread, some members) -> the revitalisation (7020ms)\nHow many members does it have?\tstudents\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (students, study under, highly qualified faculty members) -> students (6972ms)\nHow many members does it have?\tThe committee\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (The committee, provides, the Senate) -> The committee (7073ms)\nHow many members does it have?\tThe fever\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (The fever, spread among, our members) -> The fever (7090ms)\nHow many members does it have?\tRob Wallace\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Rob Wallace, provided, an update on Faculty Senate discussions) -> Rob Wallace (7049ms)\nHow many members does it have?\tAmy\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Amy, spread gossip about, various members) -> Amy (7084ms)\nHow many members does it have?\tMickey Moon\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, rat pack) -> (Mickey Moon, can also provide, a Rat Pack Tribute Show) -> Mickey Moon (7082ms)\nHow many members does it have?\tKara\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Kara, started as, a four-member group) -> Kara (7078ms)\nHow many members does it have?\texperienced member outreach agents\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (experienced member outreach agents, is shaping, your members) -> experienced member outreach agents (6979ms)\nHow many members does it have?\tseven campuses\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (seven campuses, studied with, faculty members) -> seven campuses (7087ms)\nHow many members does it have?\tRules Regarding Banned Members 1\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Rules Regarding Banned Members 1, to talk about, banned members) -> Rules Regarding Banned Members 1 (7035ms)\nHow many members does it have?\teconomic crisis\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (economic crisis, spreads across, member states) -> economic crisis (7053ms)\nHow many members does it have?\tOctober\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (October, started as, a registration staff member) -> October (7072ms)\nHow many members does it have?\tAlexander\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, senate) -> (Alexander, started working as, a Senate aide) -> Alexander (7072ms)\nHow many members does it have?\ta UC Davis expert\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (a UC Davis expert, has studied, members) -> a UC Davis expert (7001ms)\nHow many members does it have?\tA few years\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (A few years, Study, member) -> A few years (7082ms)\nHow many members does it have?\tbills\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (bills, are being shaped in, the House and Senate) -> bills (7015ms)\nHow many members does it have?\ta playboy\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (a playboy, started the war as, a member) -> a playboy (7075ms)\nHow many members does it have?\taudiences\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (audiences, got their start as, members) -> audiences (7078ms)\nHow many members does it have?\t1957\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (1957, studied the behavior of, members) -> 1957 (7082ms)\nHow many members does it have?\tKenny W.\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Kenny W., has studied with, members) -> Kenny W. (7075ms)\nHow many members does it have?\tThe guys\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, pink floyd) -> (The guys, talk about, Pink Floyd) -> The guys (7061ms)\nHow many members does it have?\tThe state supreme court\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (The state supreme court, will provide, the state legislature) -> The state supreme court (7061ms)\nHow many members does it have?\tMarion Rice\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Marion Rice, studied with, members) -> Marion Rice (7044ms)\nHow many members does it have?\tMcCarthy\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (McCarthy, talked about, two members) -> McCarthy (7091ms)\nHow many members does it have?\tthe player\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the player, starts as, one member) -> the player (7020ms)\nHow many members does it have?\tLinks\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (Links, are provided to, each state legislature site) -> Links (7061ms)\nHow many members does it have?\tMeetings\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Meetings, include study of, member) -> Meetings (7035ms)\nHow many members does it have?\tBritish and Russian scientists\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (British and Russian scientists, study, the members) -> British and Russian scientists (7030ms)\nHow many members does it have?\tJamie\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Jamie, started as, a core member) -> Jamie (6797ms)\nHow many members does it have?\tMac\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Mac, studied, the team members) -> Mac (7044ms)\nHow many members does it have?\tideas\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (ideas, spread amongst, its members) -> ideas (7070ms)\nHow many members does it have?\tSearcher audiences\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Searcher audiences, start as, members) -> Searcher audiences (6994ms)\nHow many members does it have?\tApril\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, senate) -> (April, has now spread to, the Senate) -> April (7008ms)\nHow many members does it have?\tthe 108th Congress\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, senate) -> (the 108th Congress, will be shaped by, the new Senate leadership) -> the 108th Congress (7015ms)\nHow many members does it have?\tLondon Brent\t-0.222222222219\tHow many members does it have? -> $x: ($x, value, opec) -> (London Brent, already was valuing, an OPEC crude basket) -> London Brent (6797ms)\nHow many members does it have?\tNowak-Gottl\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Nowak-Gottl, studied, 1,002 household members) -> Nowak-Gottl (7008ms)\nHow many members does it have?\tThe Church?s task\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (The Church?s task, shape, its members) -> The Church?s task (7061ms)\nHow many members does it have?\tGayle\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Gayle, started as, a member worker) -> Gayle (7030ms)\nHow many members does it have?\tPresident Paul Davenport\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (President Paul Davenport, provided, Senate) -> President Paul Davenport (7008ms)\nHow many members does it have?\tNaval Health Research Center\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Naval Health Research Center, studied, U.S. service members) -> Naval Health Research Center (6956ms)\nHow many members does it have?\tPentagon officials\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (Pentagon officials, also provided, Senate investigators) -> Pentagon officials (7049ms)\nHow many members does it have?\teven those\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (even those, started as, members) -> even those (6797ms)\nHow many members does it have?\tTim\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Tim, started as, a member) -> Tim (6796ms)\nHow many members does it have?\ta nine-month head\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (a nine-month head, start as, board member) -> a nine-month head (7082ms)\nHow many members does it have?\tIndiana\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Indiana, started as, an associate member) -> Indiana (7015ms)\nHow many members does it have?\tLEGISLATIVE SOURCE BOOK\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (LEGISLATIVE SOURCE BOOK, provides links to, state legislatures) -> LEGISLATIVE SOURCE BOOK (3456ms)\nHow many members does it have?\tI?ll\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (I?ll, be talking about, the members section) -> I?ll (6956ms)\nHow many members does it have?\tHook\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (Hook, shaped, members) -> Hook (7091ms)\nHow many members does it have?\tcancer\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, senate) -> (cancer, was actually studied by, the U.S. senate) -> cancer (7030ms)\nHow many members does it have?\tJudith\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (Judith, studied with, members) -> Judith (6797ms)\nHow many members does it have?\tstate positions\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (state positions, were studied by, members) -> state positions (6851ms)\nHow many members does it have?\tthe information\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the information, provided to, the Senate) -> the information (6964ms)\nHow many members does it have?\tBenefits\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (Benefits, spread across, all Member States) -> Benefits (7001ms)\nHow many members does it have?\tThe Act\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (The Act, started as, a Private Members Bill) -> The Act (6964ms)\nHow many members does it have?\ta workplace\t-0.222222222219\tHow many members does it have? -> $x: ($x, shape, member) -> (a workplace, is shaped by, team member feedback) -> a workplace (6964ms)\nHow many members does it have?\tThe farmers group\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (The farmers group, studied were, members) -> The farmers group (7078ms)\nHow many members does it have?\tThe lab\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (The lab, is studying, members) -> The lab (7020ms)\nHow many members does it have?\tthe new service\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (the new service, started as, a member) -> the new service (7078ms)\nHow many members does it have?\tJan Sasse\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Jan Sasse, started as, new members) -> Jan Sasse (7025ms)\nHow many members does it have?\tfascinating sites\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (fascinating sites, talk about with, your family members) -> fascinating sites (6940ms)\nHow many members does it have?\ttrack\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, state legislature) -> (track, provide a report to, the State Legislature) -> track (7030ms)\nHow many members does it have?\tBeirne\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Beirne, talked about, the new staff members) -> Beirne (4169ms)\nHow many members does it have?\tschool bands and orchestras\t-0.222222222219\tHow many members does it have? -> $x: ($x, study, member) -> (school bands and orchestras, studied with, members) -> school bands and orchestras (7040ms)\nHow many members does it have?\tCity employees\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (City employees, spread, the holiday spirit Members) -> City employees (6979ms)\nHow many members does it have?\tthe estimate\t-0.222222222219\tHow many members does it have? -> $x: ($x, provide, senate) -> (the estimate, provided to, the Senate) -> the estimate (7072ms)\nHow many members does it have?\tSmith\t-0.222222222219\tHow many members does it have? -> $x: ($x, start as, member) -> (Smith, started as, an unknown member) -> Smith (7086ms)\nHow many members does it have?\tOkay\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Okay, lets talk about, the members) -> Okay (7008ms)\nHow many members does it have?\tShadowfax\t-0.222222222219\tHow many members does it have? -> $x: ($x, talk about, member) -> (Shadowfax, is talking about, members) -> Shadowfax (7053ms)\nHow many members does it have?\tconsumption\t-0.222222222219\tHow many members does it have? -> $x: ($x, spread, member) -> (consumption, spread from, one member) -> consumption (7082ms)\nHow old was the dam?\tkarnataka\t1.111111111103\tHow old was the dam? -> $x: ($x, be example of, dam) -> (karnataka, is an example of, new dam collapse) -> karnataka (1048ms)\nHow old was the dam?\tThe Hoover Dam\t1.111111111103\tHow old was the dam? -> $x: ($x, be example of, dam) -> (The Hoover Dam, is an example of, an arch-gravity dam) -> The Hoover Dam (1048ms)\nHow old was the dam?\tA beaver dam\t1.111111111103\tHow old was the dam? -> $x: ($x, be example of, dam) -> (A beaver dam, is an example of, a small dam) -> A beaver dam (1048ms)\nHow old was the dam?\tHoover Dam\t1.111111111103\tHow old was the dam? -> $x: ($x, be example of, dam) -> (Hoover Dam, is an example of, an arch-gravity dam) -> Hoover Dam (1048ms)\nHow old was the dam?\tA worker\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (A worker, has died at, the Sunrise Dam gold mine) -> A worker (1127ms)\nHow old was the dam?\tfour manatees\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (four manatees, have already died at, the Nawel River dam) -> four manatees (1127ms)\nHow old was the dam?\tWV\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (WV, died at, Riverton Dam) -> WV (1127ms)\nHow old was the dam?\ta hippo calf\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (a hippo calf, had died in, Sunset Dam) -> a hippo calf (1246ms)\nHow old was the dam?\t998 people\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (998 people, will die should, the dam break) -> 998 people (1246ms)\nHow old was the dam?\tthe Om\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (the Om, die, Dam 50 km) -> the Om (1128ms)\nHow old was the dam?\tthe litter\t0.999999999992\tHow old was the dam? -> $x: ($x, happen to, dam) -> (the litter, happen to, the dam) -> the litter (1127ms)\nHow old was the dam?\t250,000 people\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (250,000 people, died in, the 1975 Banqiao dam disaster) -> 250,000 people (1127ms)\nHow old was the dam?\tcontrol\t0.999999999992\tHow old was the dam? -> $x: ($x, happen to, dam) -> (control, happens to, the Snake River dams) -> control (1246ms)\nHow old was the dam?\tuittuur\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (uittuur, die, dam) -> uittuur (1246ms)\nHow old was the dam?\tfish\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (fish, are dying off in, dammed streams) -> fish (1246ms)\nHow old was the dam?\tQuestion 8\t0.999999999992\tHow old was the dam? -> $x: ($x, happen to, dam) -> (Question 8, will happen to, the dam) -> Question 8 (1293ms)\nHow old was the dam?\t84\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (84, died the previous Sunday in, the Coulee Dam hospital) -> 84 (1246ms)\nHow old was the dam?\tMajor John Davidson\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (Major John Davidson, died at, Beaver Dam) -> Major John Davidson (1127ms)\nHow old was the dam?\t45\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (45, died at, Beaver Dam Community Hospital) -> 45 (1048ms)\nHow old was the dam?\tBrown\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (Brown, died at, the Coulee Dam Community hospital) -> Brown (1246ms)\nHow old was the dam?\tmore dear ?\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (more dear ?, died building, the dam) -> more dear ? (1048ms)\nHow old was the dam?\tflame markings\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (flame markings, die, Sire/Dam) -> flame markings (1048ms)\nHow old was the dam?\tthe 96 workers\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (the 96 workers, died during, the dam?s construction) -> the 96 workers (1128ms)\nHow old was the dam?\ten daar bars\t0.999999999992\tHow old was the dam? -> $x: ($x, die, dam) -> (en daar bars, die, dam.) -> en daar bars (1246ms)\nHow old was the dam?\tout\t0.999999999992\tHow old was the dam? -> $x: ($x, happen to, dam) -> (out, happened to, the dam) -> out (1293ms)\nWhat are antacids?\tVitamin B12 deficiency anemia\t0.7777777777780001\tWhat are antacids? -> $x: ($x, cause, antacid) -> (Vitamin B12 deficiency anemia, Causes, Antacid) -> Vitamin B12 deficiency anemia (1395ms)\nWhat are antacids?\tBelching\t0.7777777777780001\tWhat are antacids? -> $x: ($x, cause, antacid) -> (Belching, may also be caused by, carbonated drinks or antacids) -> Belching (1395ms)\nWhat are antacids?\ttwo vacancies\t0.7777777777780001\tWhat are antacids? -> $x: ($x, cause, antacid) -> (two vacancies, may cause, an antacid supply shortage) -> two vacancies (1396ms)\nWhat are antacids?\ta nation\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (a nation, nearly consumes its weight in, antacid pills) -> a nation (1606ms)\nWhat are antacids?\tDrug\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Drug, Drug formulations in this category, Antacid and pain reliever 500/1.948/2.485 powder) -> Drug (1606ms)\nWhat are antacids?\tPCC\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (PCC, is often used in, calcium-based antacid tablets and liquids) -> PCC (2590ms)\nWhat are antacids?\tCalcium carbonate\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Calcium carbonate, is used in, several antacids and overuse) -> Calcium carbonate (2534ms)\nWhat are antacids?\ta naturally occurring mineral\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (a naturally occurring mineral, used in, antacids) -> a naturally occurring mineral (1396ms)\nWhat are antacids?\tthe chemicals\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (the chemicals, found in, antacids) -> the chemicals (1770ms)\nWhat are antacids?\tthe magnesium\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (the magnesium, found in, antacids) -> the magnesium (2535ms)\nWhat are antacids?\tthe corn dog\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (the corn dog, do in, that antacid commercial) -> the corn dog (2534ms)\nWhat are antacids?\ttrademarks\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (trademarks, are found in, the antacid section) -> trademarks (1770ms)\nWhat are antacids?\tPowder for solution\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Powder for solution, Formulations available in this form, Antacid 1.948/2.485 powder for solution) -> Powder for solution (1606ms)\nWhat are antacids?\tEndoscopic examination\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Endoscopic examination, showed all ulcers in, the antacid group) -> Endoscopic examination (2535ms)\nWhat are antacids?\tcalcium carbonate\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (calcium carbonate, is its use in, antacids) -> calcium carbonate (2590ms)\nWhat are antacids?\tAntacids\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Antacids, reduce acid in, the stomach and antacid products) -> Antacids (1606ms)\nWhat are antacids?\tAluminum\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Aluminum, is present in, many antacids) -> Aluminum (2626ms)\nWhat are antacids?\tcooking\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (cooking, is often included in, antacids) -> cooking (1770ms)\nWhat are antacids?\taluminum\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (aluminum, are present in, antacids) -> aluminum (1396ms)\nWhat are antacids?\tcalcium carbonate and magnesium\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (calcium carbonate and magnesium, is commonly found in, antacids) -> calcium carbonate and magnesium (1770ms)\nWhat are antacids?\tPrelief\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Prelief, is available in, the antacid section) -> Prelief (1770ms)\nWhat are antacids?\tMagnesium oxide\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Magnesium oxide, is used in, some antacids) -> Magnesium oxide (1606ms)\nWhat are antacids?\tPowder\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Powder, Formulations available in this form, Antacid and pain reliever 500/1.948/2.485 powder) -> Powder (2590ms)\nWhat are antacids?\tThe antacid composition\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (The antacid composition, is improved in, antacid properties) -> The antacid composition (2535ms)\nWhat are antacids?\tMagnesium\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Magnesium, is often found in, antacids) -> Magnesium (2590ms)\nWhat are antacids?\tDwight\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Dwight, engaged in, antacid abuse) -> Dwight (2590ms)\nWhat are antacids?\tMgtrisilicate\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Mgtrisilicate, is found in, some antacids) -> Mgtrisilicate (1606ms)\nWhat are antacids?\tthe vicious circle ions\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (the vicious circle ions, are contained in, antacid) -> the vicious circle ions (1770ms)\nWhat are antacids?\tCalcium Carbonate\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (Calcium Carbonate, is also found in, popular antacids) -> Calcium Carbonate (1396ms)\nWhat are antacids?\taluminum hydroxide\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (aluminum hydroxide, is used in, antacids) -> aluminum hydroxide (2590ms)\nWhat are antacids?\tthe bile acid\t0.666666666667\tWhat are antacids? -> $x: ($x, in, antacid) -> (the bile acid, is used in, numerous commercial gastric antacids) -> the bile acid (1606ms)\nWhat are antacids?\tprescription\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (Antacids, do have the potential to react with, prescription) -> prescription (2626ms)\nWhat are antacids?\tthe condition\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (Antacids, did n?t always cure, the condition) -> the condition (3041ms)\nWhat are antacids?\tthe and el\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (Antacids, do medically significantly recall, the and el) -> the and el (2626ms)\nWhat are antacids?\tthe job\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (the counter antacids, don?t do, the job) -> the job (3041ms)\nWhat are antacids?\tthe elderly\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (an antacid product, does severe harm to, the elderly) -> the elderly (2626ms)\nWhat are antacids?\tn?t work\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (over-the-counter antacids, did, n?t work) -> n?t work (3041ms)\nWhat are antacids?\tthe and page\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (Antacids, do very significantly find, the and page) -> the and page (2626ms)\nWhat are antacids?\tthe trick\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (over-the-counter antacids, will do, the trick) -> the trick (3042ms)\nWhat are antacids?\tthe and reference\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (Antacids, do frequently significantly go, the and reference) -> the and reference (2626ms)\nWhat are antacids?\tphentermine work\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (information nexium and antacids, does, phentermine work) -> phentermine work (3041ms)\nWhat are antacids?\tesophageal\t0.555555555556\tWhat are antacids? -> $x: (antacid, do, $x) -> (other antacids, do by reducing, esophageal) -> esophageal (3042ms)\nWhat are antacids?\tAcid Influx\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacid qualities, is the best cure for, Acid Influx) -> Acid Influx (3414ms)\nWhat are antacids?\tgas and bloating\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are useless for, gas and bloating) -> gas and bloating (3468ms)\nWhat are antacids?\tPROVIGIL today and PROVIGIL\t0.555555555555\tWhat are antacids? -> $x: ($x, do, antacid) -> (PROVIGIL today and PROVIGIL, was doing a lot of, antacids) -> PROVIGIL today and PROVIGIL (3414ms)\nWhat are antacids?\tacid reflux\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (an antacid, here are some home remedies for, acid reflux) -> acid reflux (3451ms)\nWhat are antacids?\tabout\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, must usually be avoided for, about) -> about (3451ms)\nWhat are antacids?\tanemia treatment\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (ingesting antacids, is crucial for, anemia treatment) -> anemia treatment (3351ms)\nWhat are antacids?\theartburn symptoms\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are safe to use for, heartburn symptoms) -> heartburn symptoms (3459ms)\nWhat are antacids?\thealth\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (in pills and antacids, are quite detrimental for, health) -> health (3308ms)\nWhat are antacids?\tan acute episode\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, really are the best treatment for, an acute episode) -> an acute episode (3451ms)\nWhat are antacids?\tconcern\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacids, is therefore a reason for, concern) -> concern (3467ms)\nWhat are antacids?\tacid neutralization\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacid therapy, is usually recommended for, acid neutralization) -> acid neutralization (3207ms)\nWhat are antacids?\tthe question\t0.555555555555\tWhat are antacids? -> $x: ($x, do, antacid) -> (the question, does, our Antacid query) -> the question (3451ms)\nWhat are antacids?\ta positive test\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacids, is also a requisite for, a positive test) -> a positive test (3451ms)\nWhat are antacids?\tIBS.\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacids and laxatives, can also be triggers for, IBS.) -> IBS. (3308ms)\nWhat are antacids?\tchronic heartburn\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, may be recommended for, chronic heartburn) -> chronic heartburn (3351ms)\nWhat are antacids?\tprescription medicines\t0.555555555555\tWhat are antacids? -> $x: ($x, produce, antacid) -> (prescription medicines, produce is expensive as, the antacid) -> prescription medicines (3351ms)\nWhat are antacids?\tthe drug industry\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacid drugs, were very profitable for, the drug industry) -> the drug industry (3451ms)\nWhat are antacids?\ttherapy\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (the antacids, even be a consideration for, therapy) -> therapy (3207ms)\nWhat are antacids?\tMark Pritchard\t0.555555555555\tWhat are antacids? -> $x: ($x, produce, antacid) -> (Mark Pritchard, Tracks produced, Antacid (Jedi Knights remix)) -> Mark Pritchard (3351ms)\nWhat are antacids?\tTom Middleton\t0.555555555555\tWhat are antacids? -> $x: ($x, produce, antacid) -> (Tom Middleton, Tracks produced, Antacid (Jedi Knights remix)) -> Tom Middleton (3459ms)\nWhat are antacids?\tdifferent physical extremes\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, Be prepared for, different physical extremes) -> different physical extremes (3451ms)\nWhat are antacids?\tminor acid reflux cases\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacids, are just for, minor acid reflux cases) -> minor acid reflux cases (3206ms)\nWhat are antacids?\tmild symptoms\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Acid Reflux Antacids, are the primary drugs for, mild symptoms) -> mild symptoms (3459ms)\nWhat are antacids?\tmultiple daily doses\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacid use, are the requirements for, multiple daily doses) -> multiple daily doses (3414ms)\nWhat are antacids?\tshort-term relief\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are typically more for, short-term relief) -> short-term relief (3414ms)\nWhat are antacids?\toccasional indigestion\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, may be used for, occasional indigestion) -> occasional indigestion (3414ms)\nWhat are antacids?\ta heavy\t0.555555555555\tWhat are antacids? -> $x: ($x, do, antacid) -> (a heavy, does of, antacids) -> a heavy (3451ms)\nWhat are antacids?\tmild disease\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (the counter antacids, are usually instituted for, mild disease) -> mild disease (3451ms)\nWhat are antacids?\tnutrients\t0.555555555555\tWhat are antacids? -> $x: ($x, do, antacid) -> (nutrients, does, antacids) -> nutrients (3207ms)\nWhat are antacids?\tthe relief\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Axia3? ProDigestive? Antacid, is for, the relief) -> the relief (3459ms)\nWhat are antacids?\tGERD.\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are most commonly used for, GERD.) -> GERD. (3467ms)\nWhat are antacids?\ta longer period\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, may sometimes be used for, a longer period) -> a longer period (3207ms)\nWhat are antacids?\tHeartburn\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacids, are Natural Remedies For, Heartburn) -> Heartburn (3414ms)\nWhat are antacids?\tOTC use\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacid preparations, are licensed for, OTC use) -> OTC use (3459ms)\nWhat are antacids?\tSeveral drugs\t0.555555555555\tWhat are antacids? -> $x: ($x, do, antacid) -> (Several drugs, do a much better job than, antacids) -> Several drugs (3451ms)\nWhat are antacids?\trelaxation\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (a natural antacid and magnesium, is essential for, relaxation) -> relaxation (3459ms)\nWhat are antacids?\toverall health\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacid pills, cannot be good for, overall health) -> overall health (3459ms)\nWhat are antacids?\tmore than 3 weeks\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacids, are needed for, more than 3 weeks) -> more than 3 weeks (3451ms)\nWhat are antacids?\tthe temporary relief\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are useful for, the temporary relief) -> the temporary relief (3414ms)\nWhat are antacids?\tchildren\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> ('s Pepto Antacid, is for, children) -> children (3207ms)\nWhat are antacids?\ta higher\t0.555555555555\tWhat are antacids? -> $x: ($x, do, antacid) -> (a higher, does of, antacids) -> a higher (3414ms)\nWhat are antacids?\theartburn\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are used primarily for, heartburn) -> heartburn (3459ms)\nWhat are antacids?\tminor episodes\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacids, are effective for, minor episodes) -> minor episodes (3451ms)\nWhat are antacids?\tinflammation\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, can be used for, inflammation) -> inflammation (3308ms)\nWhat are antacids?\tmild conditions\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are available for treating, mild conditions) -> mild conditions (3468ms)\nWhat are antacids?\thealthy people\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacid, is a suitable treatment for, healthy people) -> healthy people (3308ms)\nWhat are antacids?\tyears\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacid tablets and liquids, have been around for, years) -> years (3459ms)\nWhat are antacids?\tconsumers\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (generic brand antacids, are better for, consumers) -> consumers (3308ms)\nWhat are antacids?\ta period\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacid medications, are required for, a period) -> a period (3308ms)\nWhat are antacids?\tdietary iron absorption\t0.555555555555\tWhat are antacids? -> $x: ($x, do, antacid) -> (dietary iron absorption, does the regular use of, antacids) -> dietary iron absorption (3459ms)\nWhat are antacids?\timmediate relief\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Liquid antacids, are helpful for, immediate relief) -> immediate relief (3459ms)\nWhat are antacids?\tOklahoma Health Science Center\t0.555555555555\tWhat are antacids? -> $x: ($x, do, antacid) -> (Oklahoma Health Science Center, do, antacids) -> Oklahoma Health Science Center (3459ms)\nWhat are antacids?\tdigestive problems\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (D. a and c Antacids, often are taken for, digestive problems) -> digestive problems (3451ms)\nWhat are antacids?\tBananas\t0.555555555555\tWhat are antacids? -> $x: ($x, produce, antacid) -> (Bananas, produces, high natural antacids) -> Bananas (3468ms)\nWhat are antacids?\toccasional relief\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, should be used only for, occasional relief) -> occasional relief (3459ms)\nWhat are antacids?\tquick symptom relief\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are intended for, quick symptom relief) -> quick symptom relief (3451ms)\nWhat are antacids?\ttreatment\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Many antacids, are widely used for, treatment) -> treatment (3459ms)\nWhat are antacids?\ttemporary relief\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (antacids, have long been the choices for, temporary relief) -> temporary relief (3414ms)\nWhat are antacids?\t25-30 %\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (Antacids, is effective for, 25-30 %) -> 25-30 % (3467ms)\nWhat are antacids?\tseveral reasons\t0.555555555555\tWhat are antacids? -> $x: (antacid, be for, $x) -> (your antacid, is important for, several reasons) -> several reasons (3414ms)\nWhat are antacids?\tthe ?safe-zone?\t0.44444444444500003\tWhat are antacids? -> $x: ($x, create, antacid) -> (the ?safe-zone?, creates a dependence on, the antacid) -> the ?safe-zone? (3468ms)\nWhat are antacids?\tresearch\t0.44444444444500003\tWhat are antacids? -> $x: ($x, found, antacid) -> (research, has found, antacids) -> research (3475ms)\nWhat are antacids?\tthe patient\t0.44444444444500003\tWhat are antacids? -> $x: ($x, found, antacid) -> (the patient, finds relief after taking, antacids) -> the patient (3468ms)\nWhat are antacids?\tGeneric for Doryx\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Generic for Doryx, can interact with, antacids) -> Generic for Doryx (3513ms)\nWhat are antacids?\thip new joints\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (hip new joints, now are into, antacids) -> hip new joints (3520ms)\nWhat are antacids?\tpainful heartburn\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (painful heartburn, can be relieved with, antacid medications) -> painful heartburn (3483ms)\nWhat are antacids?\tpatients\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (patients, can take, antacids) -> patients (3536ms)\nWhat are antacids?\tMaalox Advanced Maximum Strength\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Maalox Advanced Maximum Strength, are, antacids) -> Maalox Advanced Maximum Strength (3550ms)\nWhat are antacids?\tSIBO\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (SIBO, is, antacids) -> SIBO (3531ms)\nWhat are antacids?\tgastric acid jumps\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (gastric acid jumps, can be relieved with, antacids) -> gastric acid jumps (3525ms)\nWhat are antacids?\tThe baking soda\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (The baking soda, can be, an excellent antacid) -> The baking soda (3506ms)\nWhat are antacids?\taluminium-containing medicines\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (aluminium-containing medicines, are, antacids) -> aluminium-containing medicines (3531ms)\nWhat are antacids?\theartburn or acid reflux\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (heartburn or acid reflux, is, antacids) -> heartburn or acid reflux (3531ms)\nWhat are antacids?\tstress\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (stress, can be effectively treated with, antacids) -> stress (3541ms)\nWhat are antacids?\tThe heartburn\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (The heartburn, can be relieved promptly by, antacids) -> The heartburn (3483ms)\nWhat are antacids?\tBaking soda\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (Baking soda, is known to be, a natural antacid) -> Baking soda (3545ms)\nWhat are antacids?\tThe saliva flow\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (The saliva flow, can lead to, an antacid effect) -> The saliva flow (3550ms)\nWhat are antacids?\tMeadowsweet\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Meadowsweet, can replace over, the counter antacids) -> Meadowsweet (3545ms)\nWhat are antacids?\tMagnesium Hydroxide\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Magnesium Hydroxide, are used as, antacids) -> Magnesium Hydroxide (3483ms)\nWhat are antacids?\tburn\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (burn, can be treated by, antacids) -> burn (3525ms)\nWhat are antacids?\ta chemical\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (a chemical, is often added to, antacids) -> a chemical (3491ms)\nWhat are antacids?\tamprenavir\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (amprenavir, is coadministered with, antacids) -> amprenavir (3525ms)\nWhat are antacids?\tDad\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Dad, was popping, antacids) -> Dad (3550ms)\nWhat are antacids?\tthe Obama 2012 reelection campaign\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the Obama 2012 reelection campaign, be stocking up on, antacids) -> the Obama 2012 reelection campaign (3490ms)\nWhat are antacids?\tA foam barrier\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (A foam barrier, also can be used with, the antacid) -> A foam barrier (3545ms)\nWhat are antacids?\tSPRYCEL plasma concentrations\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (SPRYCEL plasma concentrations, should be avoided, Antacids) -> SPRYCEL plasma concentrations (3520ms)\nWhat are antacids?\tthe occasional patient\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (the occasional patient, is allergic to, antacid components) -> the occasional patient (3513ms)\nWhat are antacids?\tThe consistency\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (The consistency, is similar to, Tums antacid tablets) -> The consistency (3491ms)\nWhat are antacids?\tulcer patients\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (ulcer patients, are prescribed, antacids) -> ulcer patients (3525ms)\nWhat are antacids?\tAcid reflux\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Acid reflux, is often treated with, antacid) -> Acid reflux (3498ms)\nWhat are antacids?\tAmerican families\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (American families, are popping, antacids) -> American families (3513ms)\nWhat are antacids?\tUlcers Pepcid and Zantac\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Ulcers Pepcid and Zantac, are commonly used, antacids) -> Ulcers Pepcid and Zantac (3531ms)\nWhat are antacids?\tketoconazole\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (ketoconazole, is taken with, antacids) -> ketoconazole (3530ms)\nWhat are antacids?\tCola drinks\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Cola drinks, can interact adversely with, antacids) -> Cola drinks (3541ms)\nWhat are antacids?\tthe quickest relievers\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the quickest relievers, are usually, antacids) -> the quickest relievers (3491ms)\nWhat are antacids?\ttreating gastritis\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (treating gastritis, are, antacids) -> treating gastritis (3525ms)\nWhat are antacids?\teffective\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (effective, are, antacids) -> effective (3513ms)\nWhat are antacids?\tDoctors\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Doctors, are prescribing, antacids) -> Doctors (3530ms)\nWhat are antacids?\tPRILOSEC\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (PRILOSEC, can take, antacids) -> PRILOSEC (3491ms)\nWhat are antacids?\tmeals\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (meals, can be, a helpful antacid) -> meals (3491ms)\nWhat are antacids?\tthe most common OTC drugs\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the most common OTC drugs, are, antacids) -> the most common OTC drugs (3541ms)\nWhat are antacids?\tultimate absorption\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (ultimate absorption, can be neutralized by, the antacids) -> ultimate absorption (3483ms)\nWhat are antacids?\tOccasional mild cases\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Occasional mild cases, can usually be settled with, an antacid) -> Occasional mild cases (3525ms)\nWhat are antacids?\tNexium\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Nexium, may be taken with, antacids) -> Nexium (3550ms)\nWhat are antacids?\tthe symptoms\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the symptoms, have been treated with, antacids) -> the symptoms (3475ms)\nWhat are antacids?\tthe health sodium bicarbonate\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (the health sodium bicarbonate, can be used as, an antacid) -> the health sodium bicarbonate (3545ms)\nWhat are antacids?\tMedical supplies\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (Medical supplies, were limited to, eye drops and antacids) -> Medical supplies (3520ms)\nWhat are antacids?\tThe next cheapest and safest GERD therapy\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (The next cheapest and safest GERD therapy, is to take, antacids) -> The next cheapest and safest GERD therapy (3545ms)\nWhat are antacids?\tdismissible and\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (dismissible and, can easily be remedied by, antacids) -> dismissible and (3520ms)\nWhat are antacids?\tsymptoms\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (symptoms, have been using, antacids) -> symptoms (3525ms)\nWhat are antacids?\tcombat\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (combat, is to use to, antacids) -> combat (3550ms)\nWhat are antacids?\tCalcium carbonate or calcium citrate\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Calcium carbonate or calcium citrate, can be used as, antacids) -> Calcium carbonate or calcium citrate (3483ms)\nWhat are antacids?\tdrinking water\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (drinking water, can turn into, an antacid) -> drinking water (3513ms)\nWhat are antacids?\tjust one sore\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (just one sore, can put, an antacid tablet) -> just one sore (3550ms)\nWhat are antacids?\tone hour\t0.444444444444\tWhat are antacids? -> $x: (antacid, be about, $x) -> (antacids, is about, one hour) -> one hour (3506ms)\nWhat are antacids?\ta regular basis\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (a regular basis, are taking, antacids) -> a regular basis (3531ms)\nWhat are antacids?\tThe medical ?acid cure reflux ?\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (The medical ?acid cure reflux ?, is usually, antacids) -> The medical ?acid cure reflux ? (3513ms)\nWhat are antacids?\tAcid suppression\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Acid suppression, can be achieved by taking, antacids) -> Acid suppression (3541ms)\nWhat are antacids?\tImmediate pain\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Immediate pain, can be relieved with, antacids) -> Immediate pain (3541ms)\nWhat are antacids?\tthe other side\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (the other side, can be used for, antacids) -> the other side (3531ms)\nWhat are antacids?\theartburn acid reflux\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (heartburn acid reflux, will be, antacids) -> heartburn acid reflux (3531ms)\nWhat are antacids?\tthe foods\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the foods, are taking, antacids) -> the foods (3498ms)\nWhat are antacids?\tupset stomachs\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (upset stomachs, can be treated with, an antacid) -> upset stomachs (3506ms)\nWhat are antacids?\tgastric reflux\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (gastric reflux, would be to take, antacids) -> gastric reflux (3545ms)\nWhat are antacids?\tFluoroquinolone absorption\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Fluoroquinolone absorption, is decreased by, antacids) -> Fluoroquinolone absorption (3475ms)\nWhat are antacids?\tthe advertising industry\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the advertising industry, is forcing, antacids) -> the advertising industry (3520ms)\nWhat are antacids?\tThe virtually general management\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (The virtually general management, is to involve, antacids) -> The virtually general management (3520ms)\nWhat are antacids?\tthe natural reaction\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (the natural reaction, is to take, an antacid) -> the natural reaction (3483ms)\nWhat are antacids?\tMedications\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Medications, can be through, over-the-counter antacids) -> Medications (3535ms)\nWhat are antacids?\tprognosis\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (prognosis, will be, antacids) -> prognosis (3506ms)\nWhat are antacids?\tfrequent indigestion\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (frequent indigestion, are taking, antacids) -> frequent indigestion (3525ms)\nWhat are antacids?\tacid reflux disorder disorder\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (acid reflux disorder disorder, is undoubtedly, antacids) -> acid reflux disorder disorder (3520ms)\nWhat are antacids?\tDLPA\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (DLPA, is the precursor to, tyrosine Antacids) -> DLPA (3541ms)\nWhat are antacids?\tSecond\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Second, is the use of, antacids) -> Second (3476ms)\nWhat are antacids?\tThe pain\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (The pain, may be relieved by, antacids) -> The pain (3545ms)\nWhat are antacids?\tCommon indigestion\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Common indigestion, is repeatedly treated with, antacids) -> Common indigestion (3483ms)\nWhat are antacids?\tthe Pharmacist :Antacids\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the Pharmacist :Antacids, are, antacids) -> the Pharmacist :Antacids (3498ms)\nWhat are antacids?\tSufferers\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Sufferers, used to be on, antacids) -> Sufferers (3531ms)\nWhat are antacids?\tDiets\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Diets, Are Like, Antacids) -> Diets (3541ms)\nWhat are antacids?\thyperacidity\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (hyperacidity, can continue to take, antacids) -> hyperacidity (3483ms)\nWhat are antacids?\tRunners\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Runners, can benefit from taking, antacids) -> Runners (3540ms)\nWhat are antacids?\tacidity\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (acidity, can be completely cured even, homoeopathic antacids) -> acidity (3536ms)\nWhat are antacids?\tthe causes\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (the causes, are there safe alternatives to, antacids) -> the causes (3545ms)\nWhat are antacids?\tconventional medicine\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (conventional medicine, has been to prescribe, an antacid) -> conventional medicine (3541ms)\nWhat are antacids?\tminerals\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (minerals, are used as, antacids) -> minerals (3498ms)\nWhat are antacids?\tAn example\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (An example, is, antacids) -> An example (3520ms)\nWhat are antacids?\tdiarrhea\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (diarrhea, are, antacids) -> diarrhea (3536ms)\nWhat are antacids?\theartburn or acid indigestion medicines\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (heartburn or acid indigestion medicines, can dealt, antacids) -> heartburn or acid indigestion medicines (3491ms)\nWhat are antacids?\tthe problem\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (the problem, can virtually always be corrected without, antacids) -> the problem (3545ms)\nWhat are antacids?\tendoscopy.Treatment\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (endoscopy.Treatment, is, antacids) -> endoscopy.Treatment (3491ms)\nWhat are antacids?\taluminum ingestion\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (aluminum ingestion, is, antacids) -> aluminum ingestion (3483ms)\nWhat are antacids?\tThe next cheapest and safest GERD FOSAMAX\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (The next cheapest and safest GERD FOSAMAX, is to take, antacids) -> The next cheapest and safest GERD FOSAMAX (3531ms)\nWhat are antacids?\tulcers\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (ulcers, is, antacids) -> ulcers (3498ms)\nWhat are antacids?\tPrilosec\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Prilosec, can also be used along with, antacids) -> Prilosec (3506ms)\nWhat are antacids?\tacid reflux disease\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (acid reflux disease, is to reach for, an antacid) -> acid reflux disease (3536ms)\nWhat are antacids?\tThe cure for acid reflux\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (The cure for acid reflux, is, antacids) -> The cure for acid reflux (3550ms)\nWhat are antacids?\tweek\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (week, take is, antacids) -> week (3550ms)\nWhat are antacids?\tThe medication effect\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (The medication effect, can be altered by, milk or antacids) -> The medication effect (3506ms)\nWhat are antacids?\tthe jaundice\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the jaundice, were, antacids) -> the jaundice (3490ms)\nWhat are antacids?\tacid problems\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (acid problems, are generally superior to, antacids) -> acid problems (3550ms)\nWhat are antacids?\tThe correct answer\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (The correct answer, is, Antacids) -> The correct answer (3506ms)\nWhat are antacids?\tmedicine\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (medicine, may be the addition to, antacids and laxatives) -> medicine (3550ms)\nWhat are antacids?\tBaking Soda\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Baking Soda, can be termed, a natural antacid) -> Baking Soda (3536ms)\nWhat are antacids?\tthe counter medications\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the counter medications, are, antacids) -> the counter medications (3536ms)\nWhat are antacids?\tLemon\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Lemon, can work as, a natural antacid) -> Lemon (3499ms)\nWhat are antacids?\tBlockers\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (Blockers, are superior to, antacids) -> Blockers (3483ms)\nWhat are antacids?\thigh-fat snacks\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (high-fat snacks, can reduce your need for, antacid medication) -> high-fat snacks (3545ms)\nWhat are antacids?\tBet CVS\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Bet CVS, was plumb out of, antacids) -> Bet CVS (3491ms)\nWhat are antacids?\t3-6 hours\t0.444444444444\tWhat are antacids? -> $x: (antacid, be about, $x) -> (the antacid, be most effective after about, 3-6 hours) -> 3-6 hours (3550ms)\nWhat are antacids?\tPREVACID\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (PREVACID, was taking, antacids) -> PREVACID (3525ms)\nWhat are antacids?\tagents\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (agents, must be admixed with, antacids) -> agents (3520ms)\nWhat are antacids?\tSaliva\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Saliva, can act as, a natural antacid) -> Saliva (3550ms)\nWhat are antacids?\tabsorption\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (absorption, is affected by, antacids) -> absorption (3536ms)\nWhat are antacids?\tbacteria\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (bacteria, can survive longer with, the antacids) -> bacteria (3506ms)\nWhat are antacids?\tthe biggest villains\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the biggest villains, is, antacids) -> the biggest villains (3541ms)\nWhat are antacids?\tthe other hand\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (the other hand, can be cured by, simple antacids) -> the other hand (3525ms)\nWhat are antacids?\thigh purity magnesium carbonate\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (high purity magnesium carbonate, is used as, antacid) -> high purity magnesium carbonate (3506ms)\nWhat are antacids?\ta week take\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (a week take, is, antacids) -> a week take (3506ms)\nWhat are antacids?\ta previously tested therapy\t0.444444444444\tWhat are antacids? -> $x: ($x, consist of, antacid) -> (a previously tested therapy, consisted of, one antacid) -> a previously tested therapy (3483ms)\nWhat are antacids?\tthe pain\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (the pain, can be relieved by, antacids) -> the pain (3541ms)\nWhat are antacids?\tChronic heartburn\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Chronic heartburn, can be treated with, antacids) -> Chronic heartburn (3476ms)\nWhat are antacids?\tBanana\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Banana, can be, a organic antacid) -> Banana (3483ms)\nWhat are antacids?\tsoda\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (soda, can be used as, Antacid) -> soda (3545ms)\nWhat are antacids?\tthe user\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (the user, is also taking, antacid) -> the user (3541ms)\nWhat are antacids?\tOlder child\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Older child, can use, 1 teaspoon   5 ml   of a liquid antacid) -> Older child (3536ms)\nWhat are antacids?\tregular baking soda\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (regular baking soda, can act as, a wonderful antacid) -> regular baking soda (3475ms)\nWhat are antacids?\tThanksgiving dinner Dad\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Thanksgiving dinner Dad, was popping, antacids) -> Thanksgiving dinner Dad (3498ms)\nWhat are antacids?\tremedy\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (remedy, can include over, the counter antacids) -> remedy (3506ms)\nWhat are antacids?\tConventional treatment\t0.444444444444\tWhat are antacids? -> $x: ($x, consist of, antacid) -> (Conventional treatment, consists of, antacids) -> Conventional treatment (3541ms)\nWhat are antacids?\tsure the region?s tourism authorities\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (sure the region?s tourism authorities, are chewing, antacids) -> sure the region?s tourism authorities (3513ms)\nWhat are antacids?\theartburn symptoms treatments\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (heartburn symptoms treatments, would be, antacids) -> heartburn symptoms treatments (3531ms)\nWhat are antacids?\tindigestion\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (indigestion, is to use, a antacid) -> indigestion (3498ms)\nWhat are antacids?\tradiotelemetry\t0.444444444444\tWhat are antacids? -> $x: ($x, be to, antacid) -> (radiotelemetry, was used to study, the antacid properties) -> radiotelemetry (3536ms)\nWhat are antacids?\tThe remedy for\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (The remedy for, to be, antacids) -> The remedy for (3550ms)\nWhat are antacids?\tmagnesium hydroxide\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (magnesium hydroxide, are also, antacids) -> magnesium hydroxide (3513ms)\nWhat are antacids?\tAcceptable alternatives\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Acceptable alternatives, are, antacids) -> Acceptable alternatives (3475ms)\nWhat are antacids?\tCommon examples\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (Common examples, are, antacids) -> Common examples (3498ms)\nWhat are antacids?\tcalcium use or retention\t0.444444444444\tWhat are antacids? -> $x: ($x, be be, antacid) -> (calcium use or retention, are, antacids) -> calcium use or retention (3545ms)\nWhat are antacids?\tMineral imbalances\t0.444444444444\tWhat are antacids? -> $x: ($x, can, antacid) -> (Mineral imbalances, can occur from, over-the-counter antacids) -> Mineral imbalances (3483ms)\nWhat are antacids?\tThe most common methods\t0.333333333334\tWhat are antacids? -> $x: ($x, be use of, antacid) -> (The most common methods, are use of, antacids) -> The most common methods (3554ms)\nWhat are antacids?\ta core\t0.333333333334\tWhat are antacids? -> $x: ($x, comprise, antacid) -> (a core, comprises, an antacid) -> a core (3554ms)\nWhat are antacids?\thome remedies\t0.333333333333\tWhat are antacids? -> $x: ($x, could be, antacid) -> (home remedies, could be better than, antacids) -> home remedies (3554ms)\nWhat are antacids?\tplace\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, should be considered in, place) -> place (3567ms)\nWhat are antacids?\tAuthorities Concept Scheme\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (3576ms)\nWhat are antacids?\tassorted fruit flavors\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacid tablets, come in, assorted fruit flavors) -> assorted fruit flavors (3581ms)\nWhat are antacids?\tliquid formulations\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (These antacids, are more effective in, liquid formulations) -> liquid formulations (3578ms)\nWhat are antacids?\tgreat relief\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, usually results in, great relief) -> great relief (3581ms)\nWhat are antacids?\teither liquid or tablet form\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Medicines Antacids, are taken in, either liquid or tablet form) -> either liquid or tablet form (3574ms)\nWhat are antacids?\tthe amounts\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, differ in, the amounts) -> the amounts (3567ms)\nWhat are antacids?\trelieving symptoms\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, are effective in, relieving symptoms) -> relieving symptoms (3567ms)\nWhat are antacids?\tthe alkalinity\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, may cause an increase in, the alkalinity) -> the alkalinity (3581ms)\nWhat are antacids?\tstomach acid reflux\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can help in reducing, stomach acid reflux) -> stomach acid reflux (3581ms)\nWhat are antacids?\tthe stomach cavity\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Non-absorbable antacids, act in, the stomach cavity) -> the stomach cavity (3578ms)\nWhat are antacids?\t4 rolls\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Rolaids Original Antacid Tablets, comes in, 4 rolls) -> 4 rolls (3567ms)\nWhat are antacids?\tthe interim period\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (an antacid, may used in, the interim period) -> the interim period (3583ms)\nWhat are antacids?\tbuffered aspirin\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (an antacid, can be used in, buffered aspirin) -> buffered aspirin (3584ms)\nWhat are antacids?\tthe stomach and antacid products\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, reduce acid in, the stomach and antacid products) -> the stomach and antacid products (3570ms)\nWhat are antacids?\tthe past\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, were a daily thing in, the past) -> the past (3574ms)\nWhat are antacids?\t1954 valacyclovir dosing\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, can be used in, 1954 valacyclovir dosing) -> 1954 valacyclovir dosing (3567ms)\nWhat are antacids?\tthe stomach and esophagus\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (The antacids, neutralize acid in, the stomach and esophagus) -> the stomach and esophagus (3563ms)\nWhat are antacids?\tthe United States\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Rolaids antacid, were recalled in, the United States) -> the United States (3574ms)\nWhat are antacids?\tLet?s\t0.22222222222300003\tWhat are antacids? -> $x: ($x, get, antacid) -> (Let?s, get kids hooked on, antacids) -> Let?s (3570ms)\nWhat are antacids?\tconjunction\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, can usually be taken safely in, conjunction) -> conjunction (3567ms)\nWhat are antacids?\tthe sole agent\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, may result in, the sole agent) -> the sole agent (3583ms)\nWhat are antacids?\tthe healing\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (an antacid, assist in, the healing) -> the healing (3570ms)\nWhat are antacids?\tthe small intestine\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, neutralize the acid in, the small intestine) -> the small intestine (3581ms)\nWhat are antacids?\taddition\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (An antacid, may be taken in, addition) -> addition (3567ms)\nWhat are antacids?\ttablet form\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, mostly comes in, tablet form) -> tablet form (3570ms)\nWhat are antacids?\tRiteTrac\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (The antacids, contained in, RiteTrac) -> RiteTrac (3567ms)\nWhat are antacids?\tan 18 % decrease\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, resulted in, an 18 % decrease) -> an 18 % decrease (3570ms)\nWhat are antacids?\ta reduction\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (magnesium-containing antacid, resulted in, a reduction) -> a reduction (3567ms)\nWhat are antacids?\tneutralizing stomach acid\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can help in, neutralizing stomach acid) -> neutralizing stomach acid (3584ms)\nWhat are antacids?\tthe West\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (The antacid drug ranitinide, can be found in, the West) -> the West (3567ms)\nWhat are antacids?\tacid rebound\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, may result in, acid rebound) -> acid rebound (3581ms)\nWhat are antacids?\tUnited States of America\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacid 750 tablet, Available in, United States of America) -> United States of America (3583ms)\nWhat are antacids?\tthe stomach\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, neutralize the acid in, the stomach) -> the stomach (3578ms)\nWhat are antacids?\tthe body\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, work by neutralizing the stomach acid in, the body) -> the body (3570ms)\nWhat are antacids?\tthe coating\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (the antacid, is contained in, the coating) -> the coating (3578ms)\nWhat are antacids?\tshort-term cases\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are usually helpful in, short-term cases) -> short-term cases (3563ms)\nWhat are antacids?\tcoating\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids ?, are also helpful in, coating) -> coating (3581ms)\nWhat are antacids?\tunpleasant side effects\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, can result in, unpleasant side effects) -> unpleasant side effects (3574ms)\nWhat are antacids?\tAmerica\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are the most used drugs in, America) -> America (3578ms)\nWhat are antacids?\tthe prescribed dose\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (# Antacids, should be taken in, the prescribed dose) -> the prescribed dose (3583ms)\nWhat are antacids?\tI?ve\t0.22222222222300003\tWhat are antacids? -> $x: ($x, get, antacid) -> (I?ve, also got, a stronger antacid) -> I?ve (3578ms)\nWhat are antacids?\tpill\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, come in, pill) -> pill (3581ms)\nWhat are antacids?\tthe treatment plan\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (an antacid, could be added in to, the treatment plan) -> the treatment plan (3574ms)\nWhat are antacids?\tTopical Terms Concept Scheme\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (3578ms)\nWhat are antacids?\tthe middle\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (An antacid, can also be a lifesaver in, the middle) -> the middle (3570ms)\nWhat are antacids?\twater\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (an antacid tablet, plopped in, water) -> water (3574ms)\nWhat are antacids?\tsodium\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can be high in, sodium) -> sodium (3567ms)\nWhat are antacids?\tthe market\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are available in, the market) -> the market (3563ms)\nWhat are antacids?\tWe?ve\t0.22222222222300003\tWhat are antacids? -> $x: ($x, get, antacid) -> (We?ve, got a supply of, antacids) -> We?ve (3583ms)\nWhat are antacids?\tan acid rebound effect\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (All antacids, can result in, an acid rebound effect) -> an acid rebound effect (3576ms)\nWhat are antacids?\tchewable tablets\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Some antacids, are sold in, chewable tablets) -> chewable tablets (3570ms)\nWhat are antacids?\tConnecticut\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are exempt in, Connecticut) -> Connecticut (3581ms)\nWhat are antacids?\tTums\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Another common antacid ingredient, found in, Tums) -> Tums (3578ms)\nWhat are antacids?\tliquid form and coat\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Many antacids, come in, liquid form and coat) -> liquid form and coat (3583ms)\nWhat are antacids?\tdose\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, can be prescribed in, dose) -> dose (3578ms)\nWhat are antacids?\the?s\t0.22222222222300003\tWhat are antacids? -> $x: ($x, get, antacid) -> (he?s, got, antacids) -> he?s (3578ms)\nWhat are antacids?\ttablet\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are available in, tablet) -> tablet (3574ms)\nWhat are antacids?\tinstances\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, must only be utilized in, instances) -> instances (3581ms)\nWhat are antacids?\tliquid form\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, also come in, liquid form) -> liquid form (3578ms)\nWhat are antacids?\tthe acid\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, help in neutralizing, the acid) -> the acid (3570ms)\nWhat are antacids?\tthe treatment\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are useful in, the treatment) -> the treatment (3567ms)\nWhat are antacids?\thandy\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacid medicines, could come in, handy) -> handy (3581ms)\nWhat are antacids?\tpregnancy\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are safe in, pregnancy) -> pregnancy (3581ms)\nWhat are antacids?\tlemon and orange flavors\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (other antacids, get made in, lemon and orange flavors) -> lemon and orange flavors (3570ms)\nWhat are antacids?\tIndia\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (a popular antacid, made in, India) -> India (3581ms)\nWhat are antacids?\tliquids\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (well different antacids, work in, liquids) -> liquids (3574ms)\nWhat are antacids?\tunwanted effects\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacid components, result in, unwanted effects) -> unwanted effects (3570ms)\nWhat are antacids?\tthe short term\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, can be helpful in, the short term) -> the short term (3574ms)\nWhat are antacids?\ttwo ways\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can work in, two ways) -> two ways (3581ms)\nWhat are antacids?\tthe absorption\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, may affect the product in, the absorption) -> the absorption (3574ms)\nWhat are antacids?\ttouch\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, should get in, touch) -> touch (3563ms)\nWhat are antacids?\tside effects\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (antacids, can outcome in, side effects) -> side effects (3581ms)\nWhat are antacids?\temergencies\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (mind antacids, should only be used in, emergencies) -> emergencies (3563ms)\nWhat are antacids?\tblood\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (an antacid and buffer, found in, blood) -> blood (3563ms)\nWhat are antacids?\tany drugstore\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can be found in, any drugstore) -> any drugstore (3574ms)\nWhat are antacids?\tDGL\t0.22222222222300003\tWhat are antacids? -> $x: ($x, compare to, antacid) -> (DGL, compare to, antacids) -> DGL (3581ms)\nWhat are antacids?\tthe gastrointestinal system\t0.22222222222300003\tWhat are antacids? -> $x: (antacid, in in, $x) -> (Antacids, neutralize acids in, the gastrointestinal system) -> the gastrointestinal system (3567ms)\nWhat are antacids?\tinteractions\t0.22222222222200005\tWhat are antacids? -> $x: ($x, involve, antacid) -> (interactions, involving, a specific Antacid/Acid Blocker) -> interactions (3583ms)\nWhat are antacids?\tOesophagitis\t0.22222222222200005\tWhat are antacids? -> $x: ($x, involve, antacid) -> (Oesophagitis, involves the use of, antacids) -> Oesophagitis (3586ms)\nWhat are antacids?\tgastritis\t0.22222222222200005\tWhat are antacids? -> $x: ($x, involve, antacid) -> (gastritis, involves, antacids) -> gastritis (3586ms)\nWhat are antacids?\tTreatment\t0.22222222222200005\tWhat are antacids? -> $x: ($x, involve, antacid) -> (Treatment, usually involves taking, antacids) -> Treatment (3583ms)\nWhat are antacids?\tthe Chitosan based products\t0.22222222222200005\tWhat are antacids? -> $x: ($x, involve, antacid) -> (the Chitosan based products, may involve, its antacid properties) -> the Chitosan based products (3583ms)\nWhat are antacids?\tsodium bicarbonate\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (sodium bicarbonate, is used as, an antacid) -> sodium bicarbonate (3588ms)\nWhat are antacids?\tmilk\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (milk, is commonly used as, an antacid) -> milk (3588ms)\nWhat are antacids?\tThe root\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (The root, is used as, an antacid) -> The root (3586ms)\nWhat are antacids?\tlicorice root\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (licorice root, is used as, an antacid) -> licorice root (3586ms)\nWhat are antacids?\tMilk of Magnesia\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (Milk of Magnesia, is commonly used as, an antacid) -> Milk of Magnesia (3586ms)\nWhat are antacids?\tmagnesia\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (magnesia, is a commonly used as, an antacid) -> magnesia (3586ms)\nWhat are antacids?\tSodium Bicarbonate\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (Sodium Bicarbonate, is used as, an antacid) -> Sodium Bicarbonate (3588ms)\nWhat are antacids?\tHydrated magnesium oxide\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (Hydrated magnesium oxide, is often used as, an antacid) -> Hydrated magnesium oxide (3588ms)\nWhat are antacids?\tglycine\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (glycine, is used as, a gastric antacid) -> glycine (3588ms)\nWhat are antacids?\tMagnesium Oxide\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (Magnesium Oxide, is sometimes used as, an antacid) -> Magnesium Oxide (3586ms)\nWhat are antacids?\tmagnesium hydroxide crystals\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (magnesium hydroxide crystals, are widely used as, an antacid) -> magnesium hydroxide crystals (3588ms)\nWhat are antacids?\tcalcium lactate\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (calcium lactate, is most commonly used as, an antacid) -> calcium lactate (3586ms)\nWhat are antacids?\thydroxide\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (hydroxide, is used as, a digestive antacid) -> hydroxide (3586ms)\nWhat are antacids?\ta synthesized salt of glycine\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (a synthesized salt of glycine, is used as, a gastric antacid) -> a synthesized salt of glycine (3590ms)\nWhat are antacids?\ta vitamin supplement\t0.11111111111100003\tWhat are antacids? -> $x: ($x, be use as, antacid) -> (a vitamin supplement, is used as, an antacid) -> a vitamin supplement (3586ms)\nWhat are antacids?\tcalcium\t-0.0\tWhat are antacids? -> $x: ($x, contain, antacid) -> (calcium, containing, antacids) -> calcium (3590ms)\nWhat are antacids?\tAluminium\t-0.0\tWhat are antacids? -> $x: ($x, contain, antacid) -> (Aluminium, containing, antacids) -> Aluminium (3590ms)\nWhat are antacids?\tan aluminum or magnesium\t-0.0\tWhat are antacids? -> $x: ($x, contain, antacid) -> (an aluminum or magnesium, containing, antacid) -> an aluminum or magnesium (3590ms)\nWhat are antacids?\tLight weight\t-0.0\tWhat are antacids? -> $x: ($x, contain, antacid) -> (Light weight, contains, antacids) -> Light weight (3592ms)\nWhat are antacids?\tthe drug\t-0.0\tWhat are antacids? -> $x: ($x, contain, antacid) -> (the drug, further contains, an antacid) -> the drug (3590ms)\nWhat are antacids?\tmagnesium\t-0.0\tWhat are antacids? -> $x: ($x, contain, antacid) -> (magnesium, trisilicate-containing, antacids) -> magnesium (3592ms)\nWhat are antacids?\tddI\t-0.0\tWhat are antacids? -> $x: ($x, contain, antacid) -> (ddI, contained, an antacid buffering agent) -> ddI (3590ms)\nWhat are antacids?\tCombination products\t-0.0\tWhat are antacids? -> $x: ($x, contain, antacid) -> (Combination products, containing, antacids) -> Combination products (3590ms)\nWhat are antacids?\trelief\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be have, $x) -> (antacids, has been developed specifically to help, relief) -> relief (3597ms)\nWhat are antacids?\tcases\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be in, $x) -> (the great antacid, is useful in, cases) -> cases (3594ms)\nWhat are antacids?\tdevelopment\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be in, $x) -> (the antacids aluminium and magnesium, are in, development) -> development (3592ms)\nWhat are antacids?\tthe form\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be in, $x) -> (Names Antacid medicines, are available in, the form) -> the form (3592ms)\nWhat are antacids?\tantacid properties\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be in, $x) -> (The antacid composition, is improved in, antacid properties) -> antacid properties (3594ms)\nWhat are antacids?\tthe moment\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be have, $x) -> (an antacid, would have been heavenly at, the moment) -> the moment (3595ms)\nWhat are antacids?\tthe non prescription drugs\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be have, $x) -> (Antacids, have long been, the non prescription drugs) -> the non prescription drugs (3597ms)\nWhat are antacids?\ta batch\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be in, $x) -> (a common antacid tablet, would be present in, a batch) -> a batch (3596ms)\nWhat are antacids?\thigher risk\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be have, $x) -> (regular antacid takers, have been shown to be at, higher risk) -> higher risk (3595ms)\nWhat are antacids?\ta potential increase\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be have, $x) -> (antacids, has been associated with, a potential increase) -> a potential increase (3596ms)\nWhat are antacids?\tthe 1850s\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be in, $x) -> (an antacid and reliever, was invented in, the 1850s) -> the 1850s (3595ms)\nWhat are antacids?\texcess\t-0.33333333333299997\tWhat are antacids? -> $x: (antacid, be in, $x) -> (Aluminum containing antacids, should be avoided in, excess) -> excess (3596ms)\nIn what state is Dulles located?\tHerndon\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Crowne Plaza Hotel Dulles Airport, is located in, Herndon) -> Herndon (757ms)\nIn what state is Dulles located?\tthe heart\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Holiday Inn Dulles Airport, is located in, the heart) -> the heart (771ms)\nIn what state is Dulles located?\tFairfax\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles, is located in, Fairfax) -> Fairfax (771ms)\nIn what state is Dulles located?\tthe nation\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (the Dulles International Airport, is located in, the nation) -> the nation (757ms)\nIn what state is Dulles located?\tLoudoun County\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Aloft Dulles Airport North, is located in, Loudoun County) -> Loudoun County (757ms)\nIn what state is Dulles located?\tthe new urban face\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles, is located in, the new urban face) -> the new urban face (757ms)\nIn what state is Dulles located?\tDulles\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Homewood Suites Dulles North/Loudoun, is located in, Dulles) -> Dulles (771ms)\nIn what state is Dulles located?\tdc\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Washington-Dulles, is a building located in the city, dc) -> dc (771ms)\nIn what state is Dulles located?\tthe Dulles Corner Office Park\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Hyatt Dulles, is located in, the Dulles Corner Office Park) -> the Dulles Corner Office Park (771ms)\nIn what state is Dulles located?\tChantilly\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles International Airport, is located in, Chantilly) -> Chantilly (771ms)\nIn what state is Dulles located?\tSterling\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The SpringHill Suites Dulles Airport, is located in, Sterling) -> Sterling (757ms)\nIn what state is Dulles located?\tWashington\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles International Airport, is located in, Washington) -> Washington (771ms)\nIn what state is Dulles located?\tVirginia\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles International Airport, is located in, Virginia) -> Virginia (771ms)\nIn what state is Dulles located?\tNorthern Virginia\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles International airports, are located in, Northern Virginia) -> Northern Virginia (771ms)\nIn what state is Dulles located?\tHerndon Virginia\t0.888888888888\tIn what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Crowne Plaza Dulles Airport, is located in, Herndon Virginia) -> Herndon Virginia (771ms)\nIn what state is Dulles located?\tthe fall\t-0.888888888889\tIn what state is Dulles located? -> $x: ($x, be know as, dulles) -> (the fall, will be known as, the Residence Inn-Dulles Airport) -> the fall (773ms)\nIn what state is Dulles located?\tthe proposed drilling area\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, size be, dulles) -> (the proposed drilling area, would be the size of, Dulles Airport) -> the proposed drilling area (774ms)\nIn what state is Dulles located?\tthe car\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, find, dulles) -> (the car, was found at, Dulles International Airport) -> the car (774ms)\nIn what state is Dulles located?\tSrodes\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, found, dulles) -> (Srodes, found these among, Dulles) -> Srodes (773ms)\nIn what state is Dulles located?\tthe plane\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, head, dulles) -> (the plane, headed back towards, Dulles) -> the plane (774ms)\nIn what state is Dulles located?\tThe security and armaments group\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, head, dulles) -> (The security and armaments group, was headed by, Allen Dulles) -> The security and armaments group (774ms)\nIn what state is Dulles located?\tEleanor Lansing Dulles\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, find, dulles) -> (Eleanor Lansing Dulles, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Eleanor%20Lansing%20Dulles) -> Eleanor Lansing Dulles (774ms)\nIn what state is Dulles located?\t10\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, head, dulles) -> (10, am before heading out to, Dulles) -> 10 (773ms)\nIn what state is Dulles located?\tThe jet\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, head, dulles) -> (The jet, then headed back to, Dulles Airport) -> The jet (774ms)\nIn what state is Dulles located?\tAlhazmi\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, find, dulles) -> (Alhazmi, was found at, Dulles International Airport) -> Alhazmi (773ms)\nIn what state is Dulles located?\tthe letter\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, found, dulles) -> (the letter, was also found at, Dulles Airport) -> the letter (774ms)\nIn what state is Dulles located?\tDulles Town Center\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, found, dulles) -> (Dulles Town Center, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dulles%20Town%20Center) -> Dulles Town Center (773ms)\nIn what state is Dulles located?\ta flight\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, head, dulles) -> (a flight, headed from, Dulles Airport) -> a flight (773ms)\nIn what state is Dulles located?\tMarylanders\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, found, dulles) -> (Marylanders, find, Dulles inconvenient) -> Marylanders (774ms)\nIn what state is Dulles located?\tthe CIA\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, head, dulles) -> (the CIA, headed by, Allen Dulles) -> the CIA (773ms)\nIn what state is Dulles located?\ta Wall Street lawyer\t-1.22222222222\tIn what state is Dulles located? -> $x: ($x, head, dulles) -> (a Wall Street lawyer, became head of, Dulles) -> a Wall Street lawyer (774ms)\nWho was Abraham Lincoln?\tRon Thorson\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (Ron Thorson, also happens to own, Lincoln?s Neon Signs business) -> Ron Thorson (3075ms)\nWho was Abraham Lincoln?\tThe Democrats\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (The Democrats, happened to, Blanche Lincoln) -> The Democrats (3074ms)\nWho was Abraham Lincoln?\ta Wikipedia look\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (a Wikipedia look, happened to, Abraham Lincoln) -> a Wikipedia look (3075ms)\nWho was Abraham Lincoln?\tthe better question\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (the better question, happened to, Lincoln) -> the better question (3074ms)\nWho was Abraham Lincoln?\tThe true story\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (The true story, happened to, Abraham Lincoln) -> The true story (3904ms)\nWho was Abraham Lincoln?\tWm . H. Seward??who\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (Wm . H. Seward??who, happened to be, Lincoln?s Secretary) -> Wm . H. Seward??who (3904ms)\nWho was Abraham Lincoln?\tAutoExtremist\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (AutoExtremist, has happened to, Lincoln) -> AutoExtremist (3904ms)\nWho was Abraham Lincoln?\ta car\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (a car, happened to be, a 1961 Lincoln continental) -> a car (3904ms)\nWho was Abraham Lincoln?\tSwanson\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (Swanson, happened to, Lincoln) -> Swanson (3075ms)\nWho was Abraham Lincoln?\tthere own take\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (there own take, happen to, President Lincoln) -> there own take (3075ms)\nWho was Abraham Lincoln?\tThe portrait\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (The portrait, happened to be one of, Abraham Lincoln) -> The portrait (3075ms)\nWho was Abraham Lincoln?\tan old-timer\t0.777777777774\tWho was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (an old-timer, happened to, Lincoln Road Mall) -> an old-timer (3074ms)\nWho was Abraham Lincoln?\tthe greenback\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did with, the greenback) -> the greenback (3904ms)\nWho was Abraham Lincoln?\tfun\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did for, fun) -> fun (6871ms)\nWho was Abraham Lincoln?\tn?t\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, n?t) -> n?t (10641ms)\nWho was Abraham Lincoln?\tpaper work\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, paper work) -> paper work (6592ms)\nWho was Abraham Lincoln?\tchange\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, change) -> change (8611ms)\nWho was Abraham Lincoln?\ta wonderful exhibition\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, just did, a wonderful exhibition) -> a wonderful exhibition (10641ms)\nWho was Abraham Lincoln?\tthe Emancipation Proclamation\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did issue, the Emancipation Proclamation) -> the Emancipation Proclamation (12322ms)\nWho was Abraham Lincoln?\tthe same\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do, the same) -> the same (12424ms)\nWho was Abraham Lincoln?\twhat he thought was right\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, what he thought was right) -> what he thought was right (8114ms)\nWho was Abraham Lincoln?\tabortions\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, is doing, abortions) -> abortions (6592ms)\nWho was Abraham Lincoln?\tNicholas\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, Nicholas) -> Nicholas (8114ms)\nWho was Abraham Lincoln?\tWoodrow Wilson?s\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, Woodrow Wilson?s) -> Woodrow Wilson?s (10641ms)\nWho was Abraham Lincoln?\ta modification\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, a modification) -> a modification (3904ms)\nWho was Abraham Lincoln?\tMcClellan\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, McClellan) -> McClellan (12322ms)\nWho was Abraham Lincoln?\tthe illinois staats-anzeiger\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, the illinois staats-anzeiger) -> the illinois staats-anzeiger (10641ms)\nWho was Abraham Lincoln?\twhat he did\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, what he did) -> what he did (12423ms)\nWho was Abraham Lincoln?\tpaper work for Logan & Lincoln\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, paper work for Logan & Lincoln) -> paper work for Logan & Lincoln (8611ms)\nWho was Abraham Lincoln?\tslavery\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did end, slavery) -> slavery (12423ms)\nWho was Abraham Lincoln?\t522 abortions\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, 522 abortions) -> 522 abortions (12322ms)\nWho was Abraham Lincoln?\tthe general election\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did win, the general election) -> the general election (3904ms)\nWho was Abraham Lincoln?\tn?t plate\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, n?t plate) -> n?t plate (12200ms)\nWho was Abraham Lincoln?\tthe election\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did win, the election) -> the election (4707ms)\nWho was Abraham Lincoln?\ta great job\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, a great job) -> a great job (12423ms)\nWho was Abraham Lincoln?\tlodge\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do, lodge) -> lodge (6592ms)\nWho was Abraham Lincoln?\tinsane tone\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does get, insane tone) -> insane tone (12424ms)\nWho was Abraham Lincoln?\tthe Civil War\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did in, the Civil War) -> the Civil War (10641ms)\nWho was Abraham Lincoln?\tcoin\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, coin) -> coin (6871ms)\nWho was Abraham Lincoln?\tend slavery\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, end slavery) -> end slavery (10641ms)\nWho was Abraham Lincoln?\t1861\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did in, 1861) -> 1861 (6871ms)\nWho was Abraham Lincoln?\tMartin Luther King Jr.\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, as did, Martin Luther King Jr.) -> Martin Luther King Jr. (6592ms)\nWho was Abraham Lincoln?\tthe Corwin Amendment\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did support, the Corwin Amendment) -> the Corwin Amendment (12322ms)\nWho was Abraham Lincoln?\ta less successful job\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, a less successful job) -> a less successful job (8611ms)\nWho was Abraham Lincoln?\thabeas\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did restrict, habeas) -> habeas (12423ms)\nWho was Abraham Lincoln?\tover and over again\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, over and over again) -> over and over again (12200ms)\nWho was Abraham Lincoln?\tquote Jesus Christ\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, quote Jesus Christ) -> quote Jesus Christ (12200ms)\nWho was Abraham Lincoln?\tas much\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, as much) -> as much (4707ms)\nWho was Abraham Lincoln?\tattempt consensus-building\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, attempt consensus-building) -> attempt consensus-building (6872ms)\nWho was Abraham Lincoln?\tpreliminary paper work\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, preliminary paper work) -> preliminary paper work (8114ms)\nWho was Abraham Lincoln?\tthe slavery issue\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did grab, the slavery issue) -> the slavery issue (8611ms)\nWho was Abraham Lincoln?\tGettysburg\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did at, Gettysburg) -> Gettysburg (8611ms)\nWho was Abraham Lincoln?\tRock Canyon?s Eric Williams\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, Rock Canyon?s Eric Williams) -> Rock Canyon?s Eric Williams (12322ms)\nWho was Abraham Lincoln?\tvis a\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, vis a) -> vis a (12200ms)\nWho was Abraham Lincoln?\ta 180\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, suddenly did, a 180) -> a 180 (12322ms)\nWho was Abraham Lincoln?\tthe gold standard money system\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did establish, the gold standard money system) -> the gold standard money system (8114ms)\nWho was Abraham Lincoln?\tsplit rails\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, split rails) -> split rails (12322ms)\nWho was Abraham Lincoln?\tso\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, so) -> so (10641ms)\nWho was Abraham Lincoln?\tthe train\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did on, the train) -> the train (12423ms)\nWho was Abraham Lincoln?\t1858\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did in, 1858) -> 1858 (8611ms)\nWho was Abraham Lincoln?\the can\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, he can) -> he can (4707ms)\nWho was Abraham Lincoln?\tLincoln?s actions\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do, Lincoln?s actions) -> Lincoln?s actions (8114ms)\nWho was Abraham Lincoln?\tdecades\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, decades) -> decades (12200ms)\nWho was Abraham Lincoln?\tThomas Jefferson\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, Thomas Jefferson) -> Thomas Jefferson (6592ms)\nWho was Abraham Lincoln?\ta much better job\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, a much better job) -> a much better job (4707ms)\nWho was Abraham Lincoln?\tGreenbacks\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did with, Greenbacks) -> Greenbacks (4707ms)\nWho was Abraham Lincoln?\tDIAZEPAM\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, DIAZEPAM) -> DIAZEPAM (12322ms)\nWho was Abraham Lincoln?\twhat he had to do\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, what he had to do) -> what he had to do (12200ms)\nWho was Abraham Lincoln?\tthe administration\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, the administration) -> the administration (6871ms)\nWho was Abraham Lincoln?\tHistory Ever Matter\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, Does, History Ever Matter) -> History Ever Matter (6871ms)\nWho was Abraham Lincoln?\tthe Union\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did save, the Union) -> the Union (6592ms)\nWho was Abraham Lincoln?\tDarwin\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did read, Darwin) -> Darwin (8114ms)\nWho was Abraham Lincoln?\ta certain degree\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do, a certain degree) -> a certain degree (12200ms)\nWho was Abraham Lincoln?\tonce\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, once) -> once (10641ms)\nWho was Abraham Lincoln?\tregard Blacks\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, regard Blacks) -> regard Blacks (6592ms)\nWho was Abraham Lincoln?\tnt\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, nt) -> nt (8611ms)\nWho was Abraham Lincoln?\tthe slaves\t0.666666666662\tWho was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do for, the slaves) -> the slaves (12200ms)\nWho was Abraham Lincoln?\tbuilding coalitions\t0.333333333332\tWho was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Obama and Lincoln, are known for, building coalitions) -> building coalitions (12423ms)\nWho was Abraham Lincoln?\tthe University`\t0.333333333332\tWho was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln, is best known for, the University`) -> the University` (12423ms)\nWho was Abraham Lincoln?\twarehouses\t0.333333333332\tWho was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln Park, was previously known for, warehouses) -> warehouses (12472ms)\nWho was Abraham Lincoln?\tinnovation\t0.333333333332\tWho was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln Financial Group, are known for, innovation) -> innovation (12423ms)\nWho was Abraham Lincoln?\titsmulticultural feel\t0.333333333332\tWho was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln Square, is known for, itsmulticultural feel) -> itsmulticultural feel (12423ms)\nWho was Abraham Lincoln?\thonesty\t0.333333333332\tWho was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Abraham Lincoln, is probably best known for is, honesty) -> honesty (12472ms)\nWho was Abraham Lincoln?\twhale watching\t0.333333333332\tWho was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln City, is also well known for, whale watching) -> whale watching (12472ms)\nWho was Abraham Lincoln?\tThanksgiving\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Thanksgiving, was created during, the Lincoln administration) -> Thanksgiving (13553ms)\nWho was Abraham Lincoln?\tthe Readings\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the Readings, Does, Lincoln) -> the Readings (13431ms)\nWho was Abraham Lincoln?\t20 minutes\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Center, was only about, 20 minutes) -> 20 minutes (13688ms)\nWho was Abraham Lincoln?\tPaine\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Paine, had a strong influence on, Lincoln) -> Paine (13464ms)\nWho was Abraham Lincoln?\t2009\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (2009, is the 200th Anniversary of, Lincoln) -> 2009 (12885ms)\nWho was Abraham Lincoln?\t1235-53 Robert Grosseteste\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (1235-53 Robert Grosseteste, was bishop of, Lincoln) -> 1235-53 Robert Grosseteste (13505ms)\nWho was Abraham Lincoln?\ta nation\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (a nation, describes the impact of, Lincoln) -> a nation (13212ms)\nWho was Abraham Lincoln?\tBecker\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Becker, was an admirer of, Lincoln) -> Becker (13630ms)\nWho was Abraham Lincoln?\tSeen\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Seen, here is, Lincoln Ellsworth) -> Seen (12820ms)\nWho was Abraham Lincoln?\tFairbanks\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Fairbanks, People born here, Lincoln Brewster) -> Fairbanks (12707ms)\nWho was Abraham Lincoln?\ta key ring\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (a key ring, was found in, Lincoln) -> a key ring (13431ms)\nWho was Abraham Lincoln?\tThe MKZ and MKX\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The MKZ and MKX, helped, Lincoln post) -> The MKZ and MKX (13212ms)\nWho was Abraham Lincoln?\tReal stakes\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Real stakes, play better in, Lincoln) -> Real stakes (13656ms)\nWho was Abraham Lincoln?\tvastly more power\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (vastly more power, did, Lincoln) -> vastly more power (13030ms)\nWho was Abraham Lincoln?\tThe state volleyball finals\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be past, lincoln) -> (The state volleyball finals, were this past weekend in, Lincoln) -> The state volleyball finals (13262ms)\nWho was Abraham Lincoln?\tWar Edwin Stanton\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (War Edwin Stanton, was most likely involved in, Lincoln) -> War Edwin Stanton (13612ms)\nWho was Abraham Lincoln?\tthe hostile motion\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the hostile motion, was the subject of, Lincoln) -> the hostile motion (13245ms)\nWho was Abraham Lincoln?\tfive months\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was spending about, five months) -> five months (13228ms)\nWho was Abraham Lincoln?\tMansfield\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Mansfield, was a member of, Lincolns Inn) -> Mansfield (13612ms)\nWho was Abraham Lincoln?\tgraduate\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Mr. Lincoln, is about to, graduate) -> graduate (13505ms)\nWho was Abraham Lincoln?\tthe weed\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the weed, killed, Abraham Lincolns  mother) -> the weed (12864ms)\nWho was Abraham Lincoln?\tacademics\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (academics, discover more about, Lincoln) -> academics (13229ms)\nWho was Abraham Lincoln?\ta father and son\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (a father and son, created a giant portrait of, Abe Lincoln) -> a father and son (13068ms)\nWho was Abraham Lincoln?\tSeth Gilliam\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Seth Gilliam, played, Lincoln) -> Seth Gilliam (13593ms)\nWho was Abraham Lincoln?\tthe American contingent\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the American contingent, were forming, the Abraham Lincoln) -> the American contingent (12970ms)\nWho was Abraham Lincoln?\tBill\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Bill, was elected, Lincoln County Commissioner) -> Bill (13194ms)\nWho was Abraham Lincoln?\t11PM\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (11PM, KILLED, ABRAHAM LINCOLN) -> 11PM (13295ms)\nWho was Abraham Lincoln?\tTruth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Truth, was a fan of, Lincoln) -> Truth (12970ms)\nWho was Abraham Lincoln?\tYork\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (York, then were done by, Lincoln) -> York (13357ms)\nWho was Abraham Lincoln?\tBenjamin Walker\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Benjamin Walker, plays, Abraham Lincoln) -> Benjamin Walker (13656ms)\nWho was Abraham Lincoln?\tMail\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Mail, completed form to, 246 S 14th St Lincoln) -> Mail (13141ms)\nWho was Abraham Lincoln?\tWalt Whitman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Walt Whitman, Influenced By, Abraham Lincoln) -> Walt Whitman (13245ms)\nWho was Abraham Lincoln?\tSinocence\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Sinocence, are coming to play in, Lincoln) -> Sinocence (12798ms)\nWho was Abraham Lincoln?\tSciences\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Sciences, was created by, President Abraham Lincoln) -> Sciences (12753ms)\nWho was Abraham Lincoln?\tFacebook\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Facebook, Find, the Lincoln Heritage Museum) -> Facebook (13245ms)\nWho was Abraham Lincoln?\tHodgenville\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Hodgenville, People born here, Abraham Lincoln) -> Hodgenville (13049ms)\nWho was Abraham Lincoln?\tAway G. William Beardslee\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Away G. William Beardslee, killed, Abraham Lincoln ?) -> Away G. William Beardslee (13030ms)\nWho was Abraham Lincoln?\tThe photos\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (The photos, form a collective portrait of, Lincoln) -> The photos (13688ms)\nWho was Abraham Lincoln?\t20 km\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln College, is about, 20 km) -> 20 km (13553ms)\nWho was Abraham Lincoln?\ttales\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is skeptic about, tales) -> tales (13638ms)\nWho was Abraham Lincoln?\tFrecklington\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Frecklington, play a key role in, Lincoln) -> Frecklington (13228ms)\nWho was Abraham Lincoln?\tAn interesting situation\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (An interesting situation, is developing in, southeast Lincoln) -> An interesting situation (13431ms)\nWho was Abraham Lincoln?\tThe Big 12 Huskers\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (The Big 12 Huskers, play their home games in, Lincoln) -> The Big 12 Huskers (13311ms)\nWho was Abraham Lincoln?\tLogan Co.\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Logan Co., was formed from, Lincoln Co.) -> Logan Co. (13464ms)\nWho was Abraham Lincoln?\tLincoln Navigator\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Lincoln Navigator, also helped spur, Lincoln?s momentum) -> Lincoln Navigator (12947ms)\nWho was Abraham Lincoln?\tDouglass\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Douglass, described, Lincoln) -> Douglass (13387ms)\nWho was Abraham Lincoln?\tthe safety\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, are concerned about, the safety) -> the safety (13639ms)\nWho was Abraham Lincoln?\tsignals\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (signals, were very good here in, Lincoln) -> signals (12906ms)\nWho was Abraham Lincoln?\tPasadena\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Pasadena, People born here, Lincoln Holdzkom) -> Pasadena (13011ms)\nWho was Abraham Lincoln?\tpolitical right\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (political right, inspired, Lincoln) -> political right (13647ms)\nWho was Abraham Lincoln?\tRepublicans\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Republicans, are the party of, Lincoln) -> Republicans (13664ms)\nWho was Abraham Lincoln?\ta month\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Center, is about, a month) -> a month (13553ms)\nWho was Abraham Lincoln?\tSullivan\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Sullivan, has been a member of, Lincoln High School) -> Sullivan (12504ms)\nWho was Abraham Lincoln?\tLevi\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (Levi, inspired one of, Lincoln) -> Levi (13105ms)\nWho was Abraham Lincoln?\ta PDP 8\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (a PDP 8, developed initially at, the Lincoln Labs) -> a PDP 8 (13543ms)\nWho was Abraham Lincoln?\tthe subject\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was evidently well informed about, the subject) -> the subject (12629ms)\nWho was Abraham Lincoln?\tthe LS\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the LS, did little to change, Lincoln) -> the LS (13011ms)\nWho was Abraham Lincoln?\tCarter\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Carter, had been a member of, the Abraham Lincoln Brigade) -> Carter (13688ms)\nWho was Abraham Lincoln?\tCabinet officials\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Cabinet officials, were created in, the Lincoln Bedroom) -> Cabinet officials (12472ms)\nWho was Abraham Lincoln?\tthreats\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was continually warned about, threats) -> threats (13387ms)\nWho was Abraham Lincoln?\ta doctor and land owner\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a doctor and land owner, helps, Lincoln?s character) -> a doctor and land owner (12970ms)\nWho was Abraham Lincoln?\tthe luncheon menu\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (the luncheon menu, was inspired by, Lincoln?s alleged love) -> the luncheon menu (13573ms)\nWho was Abraham Lincoln?\tNevada\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Nevada, claimed to have found, Lincoln) -> Nevada (13295ms)\nWho was Abraham Lincoln?\tthe annexation\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, had been indifferent about, the annexation) -> the annexation (13402ms)\nWho was Abraham Lincoln?\tAn earthquake\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (An earthquake, caused structural damage to, Lincoln Cathedral) -> An earthquake (13087ms)\nWho was Abraham Lincoln?\tJack Hunter\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (Jack Hunter, hates, Lincoln) -> Jack Hunter (13105ms)\nWho was Abraham Lincoln?\tthe Republican Party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Republican Party, elected, Abraham Lincoln) -> the Republican Party (13664ms)\nWho was Abraham Lincoln?\t1629\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was built about, 1629) -> 1629 (13229ms)\nWho was Abraham Lincoln?\tTrustees\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Trustees, is a Board Member of, the Lincoln Junior Achievement) -> Trustees (13688ms)\nWho was Abraham Lincoln?\tMichigan 's vote\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Michigan 's vote, helped put, Lincoln) -> Michigan 's vote (13372ms)\nWho was Abraham Lincoln?\tWestport\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Westport, People born here, Lincoln Child) -> Westport (13446ms)\nWho was Abraham Lincoln?\tsix years\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Abraham Lincoln, was probably about, six years) -> six years (12820ms)\nWho was Abraham Lincoln?\tthe stage name\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (the stage name, has been described as, Abraham Lincoln) -> the stage name (12906ms)\nWho was Abraham Lincoln?\tApple Hill Center\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Apple Hill Center, was a member of, Lincoln Center) -> Apple Hill Center (13593ms)\nWho was Abraham Lincoln?\tThomas\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be past, lincoln) -> (Thomas, is a past recipient of, the Lincoln Prize) -> Thomas (12659ms)\nWho was Abraham Lincoln?\tyearly parades\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (yearly parades, draws the local people here in, Lincoln) -> yearly parades (12970ms)\nWho was Abraham Lincoln?\tJohnson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Johnson, did, lincoln) -> Johnson (13621ms)\nWho was Abraham Lincoln?\tCatholic\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (Catholic, was involved in, the Lincoln assassination) -> Catholic (13703ms)\nWho was Abraham Lincoln?\tJyotirao Phule\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Jyotirao Phule, Influenced By, Abraham Lincoln) -> Jyotirao Phule (12775ms)\nWho was Abraham Lincoln?\tThe famous actor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The famous actor, killed, Lincoln) -> The famous actor (12730ms)\nWho was Abraham Lincoln?\tYoung Carpenter\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Young Carpenter, described, Lincoln?s arrival) -> Young Carpenter (13311ms)\nWho was Abraham Lincoln?\tthe patron\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the patron, is the dean of, Lincoln) -> the patron (13327ms)\nWho was Abraham Lincoln?\tthe Democratic party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Democratic party, was elected to, the Lincoln) -> the Democratic party (13603ms)\nWho was Abraham Lincoln?\tDiLorenzo points\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (DiLorenzo points, created, the mythic Abe Lincoln) -> DiLorenzo points (12730ms)\nWho was Abraham Lincoln?\tTobago\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Tobago, People born here, Lincoln Roberts) -> Tobago (13417ms)\nWho was Abraham Lincoln?\tthe number one best selling luxury brand spot\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the number one best selling luxury brand spot, helped, Lincoln) -> the number one best selling luxury brand spot (12798ms)\nWho was Abraham Lincoln?\ta Democrat , nominated vice president\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a Democrat , nominated vice president, elected with, Lincoln) -> a Democrat , nominated vice president (13295ms)\nWho was Abraham Lincoln?\tplanned , Johnson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (planned , Johnson, would have been killed along with, Lincoln) -> planned , Johnson (13656ms)\nWho was Abraham Lincoln?\tthe debates\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the debates, helped boost, Lincoln) -> the debates (12927ms)\nWho was Abraham Lincoln?\tthe opportunity\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the opportunity, create, Lincoln Hats) -> the opportunity (13602ms)\nWho was Abraham Lincoln?\tLeland\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Leland, formed, the Lincoln Motor Company) -> Leland (13492ms)\nWho was Abraham Lincoln?\tthe quaint downtown most people\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the quaint downtown most people, would find, Lincoln) -> the quaint downtown most people (13673ms)\nWho was Abraham Lincoln?\tThe North\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The North, wanted to kill, Lincoln) -> The North (13402ms)\nWho was Abraham Lincoln?\ta huge basketball fan\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (a huge basketball fan, played for, Lincoln) -> a huge basketball fan (13417ms)\nWho was Abraham Lincoln?\tThe ex-priest Charles Chiniquy\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The ex-priest Charles Chiniquy, was contemporary of, Lincoln) -> The ex-priest Charles Chiniquy (13630ms)\nWho was Abraham Lincoln?\tFederal power\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was all about, Federal power) -> Federal power (12659ms)\nWho was Abraham Lincoln?\tEngland\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (England, elected a fellow of, Lincoln College) -> England (13688ms)\nWho was Abraham Lincoln?\tdesigners\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (designers, developed, the Lincoln C concept) -> designers (13417ms)\nWho was Abraham Lincoln?\tDoreen Rappaport Discussion questions\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Doreen Rappaport Discussion questions, did, Lincoln) -> Doreen Rappaport Discussion questions (12970ms)\nWho was Abraham Lincoln?\tthe bigger issue\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the bigger issue, Did, Lincoln) -> the bigger issue (13194ms)\nWho was Abraham Lincoln?\tSales\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Sales, helped make, Lincoln) -> Sales (13638ms)\nWho was Abraham Lincoln?\tThe community\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The community, was developed by, Lincoln and Sons) -> The community (13681ms)\nWho was Abraham Lincoln?\tpreparedness\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (preparedness, found, Lincoln unresponsive) -> preparedness (13573ms)\nWho was Abraham Lincoln?\tThe mainstream media\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (The mainstream media, are discovering that, Lincoln was right) -> The mainstream media (13612ms)\nWho was Abraham Lincoln?\tthe Blind and Visually\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the Blind and Visually, Impaired here in, Lincoln) -> the Blind and Visually (13049ms)\nWho was Abraham Lincoln?\tJohannesburg\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Johannesburg, People born here, Bobby Lincoln) -> Johannesburg (13583ms)\nWho was Abraham Lincoln?\tCoach Galicinao\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Coach Galicinao, played her high school ball at, Lincoln) -> Coach Galicinao (12629ms)\nWho was Abraham Lincoln?\tclose\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (close, Find, Lincoln dealer invoice prices) -> close (13688ms)\nWho was Abraham Lincoln?\tJohn Wesley\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (John Wesley, was a Fellow of, Lincoln) -> John Wesley (12864ms)\nWho was Abraham Lincoln?\tthe Disney folks\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the Disney folks, did to, Lincoln) -> the Disney folks (13621ms)\nWho was Abraham Lincoln?\tNew Orleans & LA\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (New Orleans & LA, Find, the perfect New Lincoln) -> New Orleans & LA (13656ms)\nWho was Abraham Lincoln?\t1862\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (1862, did, Lincoln) -> 1862 (12906ms)\nWho was Abraham Lincoln?\tthe majority\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the majority, had elected, Lincoln) -> the majority (13011ms)\nWho was Abraham Lincoln?\tBarack Obama\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Barack Obama, is the fulfillment of, Lincoln) -> Barack Obama (12906ms)\nWho was Abraham Lincoln?\tLake Jackson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Lake Jackson, People born here, Brad Lincoln) -> Lake Jackson (12798ms)\nWho was Abraham Lincoln?\tfull character\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (full character, plays, Mary Lincoln) -> full character (12707ms)\nWho was Abraham Lincoln?\tChris Damon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Chris Damon, is a native of, Lincoln) -> Chris Damon (13532ms)\nWho was Abraham Lincoln?\tthe Holy Spirit\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the Holy Spirit, did something in, Lincoln) -> the Holy Spirit (12885ms)\nWho was Abraham Lincoln?\tWilliam H. Seward\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (William H. Seward, did with, Lincoln) -> William H. Seward (13681ms)\nWho was Abraham Lincoln?\t23+ Aquarius\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, exactly be, lincoln) -> (23+ Aquarius, is exactly, conjunct President Lincoln) -> 23+ Aquarius (13696ms)\nWho was Abraham Lincoln?\tthe Jackson portrait\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the Jackson portrait, found, Mr. Lincoln) -> the Jackson portrait (13673ms)\nWho was Abraham Lincoln?\tI?m\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (I?m, happened last year in, Lincoln) -> I?m (13553ms)\nWho was Abraham Lincoln?\tRECENTLY\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (RECENTLY, DISCOVERED, ABRAHAM AND MARY TODD LINCOLN DINNER PLATE) -> RECENTLY (12842ms)\nWho was Abraham Lincoln?\tthe Republican party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Republican party, elected, Abraham Lincoln president) -> the Republican party (13664ms)\nWho was Abraham Lincoln?\tOne black woman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (One black woman, was a member of, Mary Lincoln?s church) -> One black woman (13141ms)\nWho was Abraham Lincoln?\tthe stand\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the stand, begins here in, Lincoln County) -> the stand (12566ms)\nWho was Abraham Lincoln?\tanybody?s\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (anybody?s, will happen in, Lincoln) -> anybody?s (12798ms)\nWho was Abraham Lincoln?\tHarare\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Harare, People born here, Lincoln Zvasiya) -> Harare (13068ms)\nWho was Abraham Lincoln?\tKline\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Kline, plays, Lincoln?s War Secretary Edwin Stanton) -> Kline (13228ms)\nWho was Abraham Lincoln?\tArkansas\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Arkansas, re-elected, Senator Lincoln) -> Arkansas (13664ms)\nWho was Abraham Lincoln?\tHeim Avenue\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Heim Avenue, is South of, Lincoln) -> Heim Avenue (13621ms)\nWho was Abraham Lincoln?\t1994\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (1994, was named director of, Lincoln Center) -> 1994 (13279ms)\nWho was Abraham Lincoln?\t1864\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (1864, did, Lincoln) -> 1864 (13583ms)\nWho was Abraham Lincoln?\tsoftball\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (softball, helped keep, Lincoln , Nebraska , native Shannon Moore) -> softball (13311ms)\nWho was Abraham Lincoln?\tde Valera\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (de Valera, helped escape from, Lincoln prison) -> de Valera (13245ms)\nWho was Abraham Lincoln?\tthe opportunities\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the opportunities, are available right here in, Lincoln) -> the opportunities (12535ms)\nWho was Abraham Lincoln?\tDred Scott\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Dred Scott, elected, Abraham Lincoln) -> Dred Scott (13159ms)\nWho was Abraham Lincoln?\tThe Lehrman Institute\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The Lehrman Institute, created, The Lincoln Institute) -> The Lehrman Institute (13543ms)\nWho was Abraham Lincoln?\tHughes\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Hughes, had influence in, the Lincoln Administration) -> Hughes (12970ms)\nWho was Abraham Lincoln?\tthe first Lincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the first Lincoln, created in, its new Lincoln Design Studio) -> the first Lincoln (13357ms)\nWho was Abraham Lincoln?\tSan Antonio\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (San Antonio, People born here, Rosalie Lincoln) -> San Antonio (12990ms)\nWho was Abraham Lincoln?\tthe city\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the city, play, Lincoln Center) -> the city (13141ms)\nWho was Abraham Lincoln?\tTrevor Nunn?s production\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Trevor Nunn?s production, played, Lincoln Center) -> Trevor Nunn?s production (12707ms)\nWho was Abraham Lincoln?\tBooth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Booth, did kill, Lincoln) -> Booth (13688ms)\nWho was Abraham Lincoln?\tthe unit\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the unit, was created by, President Abraham Lincoln) -> the unit (12597ms)\nWho was Abraham Lincoln?\tthe guy\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the guy, playing, Lincoln) -> the guy (13464ms)\nWho was Abraham Lincoln?\tRudy Cervantes\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Rudy Cervantes, formed, the Lincoln Club) -> Rudy Cervantes (13417ms)\nWho was Abraham Lincoln?\tthe Oklahoma-Nebraska game\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the Oklahoma-Nebraska game, was played in, Lincoln) -> the Oklahoma-Nebraska game (13245ms)\nWho was Abraham Lincoln?\ttoxic asbestos dust\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (toxic asbestos dust, caused, Lincoln) -> toxic asbestos dust (12947ms)\nWho was Abraham Lincoln?\tThe Democrat party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (The Democrat party, hated, Lincoln) -> The Democrat party (13372ms)\nWho was Abraham Lincoln?\tteller machines\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (teller machines, was developed in, Lincoln) -> teller machines (13327ms)\nWho was Abraham Lincoln?\tsteps\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (steps, away form, Lincoln Center) -> steps (12885ms)\nWho was Abraham Lincoln?\tAmazing best\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Amazing best, describes, this 2007 Lincoln MKX A more ... Type) -> Amazing best (13141ms)\nWho was Abraham Lincoln?\tGeorge\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (George, inspired, Lincoln Institute founder John C) -> George (13372ms)\nWho was Abraham Lincoln?\tPresident Abraham Lincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (President Abraham Lincoln, is a composite of, Lincoln) -> President Abraham Lincoln (13262ms)\nWho was Abraham Lincoln?\tThe deceased\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (The deceased, was a member of, Macy Lincoln lodge) -> The deceased (13446ms)\nWho was Abraham Lincoln?\tMartin Luther King, Jr.\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Martin Luther King, Jr., Influenced By, Abraham Lincoln) -> Martin Luther King, Jr. (13583ms)\nWho was Abraham Lincoln?\tDallas\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Dallas, People born here, Lincoln Coleman) -> Dallas (13327ms)\nWho was Abraham Lincoln?\tJohn Rawls\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (John Rawls, Influenced By, Abraham Lincoln) -> John Rawls (13664ms)\nWho was Abraham Lincoln?\tRobert\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Robert, [is] bishop of, Lincoln) -> Robert (13030ms)\nWho was Abraham Lincoln?\tToronto\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Toronto, People born here, Lincoln Alexander) -> Toronto (13445ms)\nWho was Abraham Lincoln?\tproduct\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln?s arguments, were about, product) -> product (13431ms)\nWho was Abraham Lincoln?\tthe sidewalk\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the sidewalk, did show, Lincoln) -> the sidewalk (13505ms)\nWho was Abraham Lincoln?\tLincoln Search Jobs\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Lincoln Search Jobs, find, Lincoln employers) -> Lincoln Search Jobs (13532ms)\nWho was Abraham Lincoln?\tthe renovation\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the renovation, created, Lincoln Center) -> the renovation (13688ms)\nWho was Abraham Lincoln?\tMaxey\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Maxey, also was the first black elected to, the Lincoln Board) -> Maxey (13638ms)\nWho was Abraham Lincoln?\tThe bill\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The bill, created, the Lincoln Memorial Commission) -> The bill (12990ms)\nWho was Abraham Lincoln?\tBerks County\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Berks County, People born here, Abraham Lincoln) -> Berks County (13387ms)\nWho was Abraham Lincoln?\tCongress\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Congress, formed, the Lincoln Monument Association) -> Congress (13177ms)\nWho was Abraham Lincoln?\tduh\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (duh, live here in, Lincoln) -> duh (13532ms)\nWho was Abraham Lincoln?\tSandlin\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Sandlin, describes, Abraham Lincoln) -> Sandlin (13279ms)\nWho was Abraham Lincoln?\ta lack\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, have story of, $x) -> (Abraham Lincoln, had similar stories of, a lack) -> a lack (13311ms)\nWho was Abraham Lincoln?\tthe actors\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the actors, have played, Lincoln) -> the actors (13402ms)\nWho was Abraham Lincoln?\tThe company\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The company, also developed mixed-use projects on, Lincoln Road) -> The company (12659ms)\nWho was Abraham Lincoln?\t?Presidential?\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (?Presidential?, was initiated by, Republican presidents Lincoln) -> ?Presidential? (12798ms)\nWho was Abraham Lincoln?\tTilghman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Tilghman, was elected sheriff of, Lincoln County) -> Tilghman (13417ms)\nWho was Abraham Lincoln?\tKansas City\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Kansas City, People born here, Lincoln Roblee) -> Kansas City (13159ms)\nWho was Abraham Lincoln?\tthe Duke family\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Duke family, helped, open North Carolina ?s Lincoln Hospital) -> the Duke family (13229ms)\nWho was Abraham Lincoln?\tthe question\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the question, Did, Lincoln) -> the question (13357ms)\nWho was Abraham Lincoln?\tPresident\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (President, elect, Abraham Lincoln) -> President (13564ms)\nWho was Abraham Lincoln?\tSchultz\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be past, lincoln) -> (Schultz, is a past recipient of, a Lincoln County Women) -> Schultz (13492ms)\nWho was Abraham Lincoln?\tThailand\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Thailand, is the first port call of, Lincoln) -> Thailand (13177ms)\nWho was Abraham Lincoln?\tAnthony\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Anthony, is a member of, the Lincoln Center Director) -> Anthony (13279ms)\nWho was Abraham Lincoln?\tThe poets\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (The poets, undoubtedly had their influence on, Lincoln) -> The poets (13311ms)\nWho was Abraham Lincoln?\tLincoln Technical Institute\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Lincoln Technical Institute, is a member of, the Lincoln Group) -> Lincoln Technical Institute (13141ms)\nWho was Abraham Lincoln?\tvery little inferencing--questions\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (very little inferencing--questions, do, Lincoln) -> very little inferencing--questions (13593ms)\nWho was Abraham Lincoln?\tVirginia Tech\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Virginia Tech, will play in, Lincoln) -> Virginia Tech (13229ms)\nWho was Abraham Lincoln?\ta couple\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a couple, had helped, Mary Todd Lincoln bust) -> a couple (13673ms)\nWho was Abraham Lincoln?\tGoober\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Goober, killed, Abraham Lincoln) -> Goober (13681ms)\nWho was Abraham Lincoln?\tthe tradition\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, date, lincoln) -> (the tradition, dates, back to Abraham Lincoln) -> the tradition (12775ms)\nWho was Abraham Lincoln?\t?a visitor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (?a visitor, found, Lincoln) -> ?a visitor (13519ms)\nWho was Abraham Lincoln?\tthe first half\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the first half, helped keep, Lincoln) -> the first half (13638ms)\nWho was Abraham Lincoln?\tthe First Inaugural Address\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the First Inaugural Address, does, Lincoln) -> the First Inaugural Address (13612ms)\nWho was Abraham Lincoln?\thand\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (hand, inspire the young people of, Port Lincoln) -> hand (13478ms)\nWho was Abraham Lincoln?\tLuigi\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Luigi, killed, Abraham Lincoln) -> Luigi (13464ms)\nWho was Abraham Lincoln?\tMr. Berge\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Mr. Berge, was a native of, Lincoln) -> Mr. Berge (12659ms)\nWho was Abraham Lincoln?\tsculptor Daniel French\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (sculptor Daniel French, created, the Lincoln Memorial) -> sculptor Daniel French (13446ms)\nWho was Abraham Lincoln?\tlarge percentages\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (large percentages, finds, Lincoln ahead) -> large percentages (13357ms)\nWho was Abraham Lincoln?\tthe effect\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was exceedingly nervous about, the effect) -> the effect (13446ms)\nWho was Abraham Lincoln?\tstinkin' Booth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (stinkin' Booth, did to, Lincoln) -> stinkin' Booth (13681ms)\nWho was Abraham Lincoln?\tFour conference schools\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Four conference schools, will play in, Lincoln) -> Four conference schools (12842ms)\nWho was Abraham Lincoln?\tHuntsville\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Huntsville, was discovered in, Lincoln County) -> Huntsville (12597ms)\nWho was Abraham Lincoln?\tConfederates\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (Confederates, hated, Abraham Lincoln) -> Confederates (13464ms)\nWho was Abraham Lincoln?\t7.5 inches\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was about, 7.5 inches) -> 7.5 inches (13030ms)\nWho was Abraham Lincoln?\tRaynham\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Raynham, People born here, Ezra Lincoln) -> Raynham (12927ms)\nWho was Abraham Lincoln?\tHelp students\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Help students, create a timeline of, Abraham Lincoln?s life) -> Help students (12842ms)\nWho was Abraham Lincoln?\tthe Jesuits\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the Jesuits, killed, Abe Lincoln) -> the Jesuits (13505ms)\nWho was Abraham Lincoln?\tspouse\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (spouse, is an associate member of, the Lincoln MCR.) -> spouse (13664ms)\nWho was Abraham Lincoln?\tKentucky and Kentuckians\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Kentucky and Kentuckians, influenced, Lincoln?s childhood) -> Kentucky and Kentuckians (13262ms)\nWho was Abraham Lincoln?\tBobby\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Bobby, was a member of, the Lincoln University Mennonite Church) -> Bobby (13279ms)\nWho was Abraham Lincoln?\tSolarBlue\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (SolarBlue, developed plans to, power Lincoln Financial Field) -> SolarBlue (12990ms)\nWho was Abraham Lincoln?\tthe first time we?ve\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the first time we?ve, played in, Lincoln) -> the first time we?ve (13696ms)\nWho was Abraham Lincoln?\tChihuahua\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Chihuahua, had played at, Lincoln) -> Chihuahua (13417ms)\nWho was Abraham Lincoln?\ta Fulbright\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (a Fulbright, is a member of, the Lincoln Center Directors ? Lab) -> a Fulbright (13229ms)\nWho was Abraham Lincoln?\tthe students\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the students, created, Lincoln) -> the students (13573ms)\nWho was Abraham Lincoln?\tthe cards\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the cards, have helped, Abraham Lincoln) -> the cards (13688ms)\nWho was Abraham Lincoln?\tNew Jersey\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (New Jersey, Find, the perfect Used Lincoln) -> New Jersey (13492ms)\nWho was Abraham Lincoln?\ta household name\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a household name, helped ensure, Lincoln) -> a household name (13177ms)\nWho was Abraham Lincoln?\ta working hub\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (a working hub, was created for, the Lincoln cent reverse) -> a working hub (13068ms)\nWho was Abraham Lincoln?\tThe Polar Plunge\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (The Polar Plunge, is happening in, Lincoln February 25) -> The Polar Plunge (13573ms)\nWho was Abraham Lincoln?\tClay\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (Clay, inspired, smooth talking railroad lawyer Abraham Lincoln) -> Clay (13532ms)\nWho was Abraham Lincoln?\tMount Rushmore\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Mount Rushmore, created, Lincoln Park) -> Mount Rushmore (13295ms)\nWho was Abraham Lincoln?\tthe run\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the run, was elected sheriff of, Lincoln County) -> the run (12535ms)\nWho was Abraham Lincoln?\tactors\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (actors, found among, Lincoln) -> actors (13673ms)\nWho was Abraham Lincoln?\tGod\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (God, is doing here in, Lincoln) -> God (13342ms)\nWho was Abraham Lincoln?\tInformation from online users\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Information from online users, helps, us keep the Lincoln) -> Information from online users (12597ms)\nWho was Abraham Lincoln?\tdoctor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (doctor, helped, Lincoln assassin John Wilkes Booth) -> doctor (13532ms)\nWho was Abraham Lincoln?\tGarrett\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Garrett, was elected as, sheriff of Lincoln County) -> Garrett (13087ms)\nWho was Abraham Lincoln?\tThe money\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The money, will be used to help with, Lincoln?s celebration) -> The money (12730ms)\nWho was Abraham Lincoln?\tthe United States\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the United States, found, President Abraham Lincoln offering) -> the United States (13278ms)\nWho was Abraham Lincoln?\tJoshua\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Joshua, helped to maintain, Lincoln?s legacy) -> Joshua (13049ms)\nWho was Abraham Lincoln?\tthe state\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (the state, is a member of, the Lincoln Board) -> the state (13011ms)\nWho was Abraham Lincoln?\tWorse\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Worse, does, Lincoln) -> Worse (13372ms)\nWho was Abraham Lincoln?\tthe end\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the end, triumphantly elected, Lincoln and Johnson) -> the end (13087ms)\nWho was Abraham Lincoln?\tMs. Kovner\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Ms. Kovner, is a member of, the Lincoln Center ?s Director Lab) -> Ms. Kovner (12864ms)\nWho was Abraham Lincoln?\tthe Capitol\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the Capitol, are the bust of, Lincoln) -> the Capitol (12535ms)\nWho was Abraham Lincoln?\tchild development & geriatrics\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (child development & geriatrics, are also part of, Lincoln) -> child development & geriatrics (12659ms)\nWho was Abraham Lincoln?\tthe Turners\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the Turners, formed, Lincoln) -> the Turners (13696ms)\nWho was Abraham Lincoln?\tDenise\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, date be, lincoln) -> (Denise, is now dating, 39-year-old Lincoln Townley) -> Denise (13553ms)\nWho was Abraham Lincoln?\tstriking achievements\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (striking achievements, did, Lincoln) -> striking achievements (12927ms)\nWho was Abraham Lincoln?\tmusical Bloody Bloody Andrew Jackson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (musical Bloody Bloody Andrew Jackson, is playing, Lincoln) -> musical Bloody Bloody Andrew Jackson (13087ms)\nWho was Abraham Lincoln?\tLondon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (London, People born here, Andrew Lincoln) -> London (13704ms)\nWho was Abraham Lincoln?\tthe mark\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the mark, found, Lincoln) -> the mark (13049ms)\nWho was Abraham Lincoln?\t10 miles\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was about, 10 miles) -> 10 miles (12798ms)\nWho was Abraham Lincoln?\tThe lecture\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (The lecture, also describes, Lincoln) -> The lecture (13228ms)\nWho was Abraham Lincoln?\tComments Section 106\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Comments Section 106, is there to help, Blanche Lincoln) -> Comments Section 106 (13245ms)\nWho was Abraham Lincoln?\tthe show\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the show, has still found time for, Lincoln) -> the show (13612ms)\nWho was Abraham Lincoln?\tthe Mid-West\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Mid-West, helped elect, Lincoln) -> the Mid-West (12969ms)\nWho was Abraham Lincoln?\tPortland & Oregon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Portland & Oregon, Find, the perfect Used Lincoln) -> Portland & Oregon (13342ms)\nWho was Abraham Lincoln?\tMiverel\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Miverel, will play, Lincoln) -> Miverel (13564ms)\nWho was Abraham Lincoln?\tSelf Driven City Tour Tour departs\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Self Driven City Tour Tour departs, form, Lincoln Road) -> Self Driven City Tour Tour departs (12504ms)\nWho was Abraham Lincoln?\tLeigh\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Leigh, offered to help, Lincoln) -> Leigh (12535ms)\nWho was Abraham Lincoln?\tTortoise\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Tortoise, plays, Lincoln Hall) -> Tortoise (13402ms)\nWho was Abraham Lincoln?\tSelby\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Selby, has played, Lincoln) -> Selby (13087ms)\nWho was Abraham Lincoln?\tpassword\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (password, Here 's a site about, Lincoln) -> password (12820ms)\nWho was Abraham Lincoln?\tthe myths Americans\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the myths Americans, have created about, Abraham Lincoln) -> the myths Americans (12659ms)\nWho was Abraham Lincoln?\tAdena\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Adena, is a member of, the Lincoln Center Director?s Lab) -> Adena (13431ms)\nWho was Abraham Lincoln?\tA good example\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (A good example, would be the story of, Abraham Lincoln) -> A good example (13603ms)\nWho was Abraham Lincoln?\tJohanns\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Johanns, was mayor of, Lincoln) -> Johanns (13262ms)\nWho was Abraham Lincoln?\tthe Cats\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the Cats, played in, Lincoln) -> the Cats (12885ms)\nWho was Abraham Lincoln?\tEU 2-EQ 2\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (EU 2-EQ 2, did, Lincoln) -> EU 2-EQ 2 (13030ms)\nWho was Abraham Lincoln?\tRep. Stevens\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (Rep. Stevens, hated, the pre-Lincoln Constitution) -> Rep. Stevens (13543ms)\nWho was Abraham Lincoln?\twinter\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is serious about, winter) -> winter (12504ms)\nWho was Abraham Lincoln?\tYankee bankers\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Yankee bankers, discovered during, Lincoln?s War) -> Yankee bankers (13638ms)\nWho was Abraham Lincoln?\tThe Library\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (The Library, is a member of, the Lincoln Trail Libraries System) -> The Library (12504ms)\nWho was Abraham Lincoln?\ta home\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a home, helped elect, Abraham Lincoln) -> a home (13564ms)\nWho was Abraham Lincoln?\topalized wood\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (opalized wood, can be found in, Lincoln) -> opalized wood (13311ms)\nWho was Abraham Lincoln?\t1535\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (+ Christian LINCOLN, was born about, 1535) -> 1535 (12566ms)\nWho was Abraham Lincoln?\tVolk\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Volk, would create, many fine Lincoln sculptures) -> Volk (13159ms)\nWho was Abraham Lincoln?\tDams Lincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Dams Lincoln, Find, Dams Lincoln huge selection) -> Dams Lincoln (13703ms)\nWho was Abraham Lincoln?\tthe Better Business Bureau\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (the Better Business Bureau, is a member of, the Lincoln Chamber) -> the Better Business Bureau (13194ms)\nWho was Abraham Lincoln?\tMusicians\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Musicians, was a member of, Lincoln Center) -> Musicians (13553ms)\nWho was Abraham Lincoln?\tWesley\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Wesley, was elected, Fellow of Lincoln) -> Wesley (12864ms)\nWho was Abraham Lincoln?\tDingman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Dingman, formed, the Lincoln rock quartet) -> Dingman (13703ms)\nWho was Abraham Lincoln?\ta Peace Democrat\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a Peace Democrat, is elected in, 1864 ! *Lincoln) -> a Peace Democrat (13212ms)\nWho was Abraham Lincoln?\tthe group\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the group, is the party of, Lincoln) -> the group (13417ms)\nWho was Abraham Lincoln?\tchrome accessories\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (chrome accessories, is right here for, your Lincoln) -> chrome accessories (13621ms)\nWho was Abraham Lincoln?\tno trabalho inicial\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (no trabalho inicial, do, Lincoln) -> no trabalho inicial (12775ms)\nWho was Abraham Lincoln?\tview facilities\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (view facilities, discover the city of, Lincoln) -> view facilities (13630ms)\nWho was Abraham Lincoln?\tthe weapon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the weapon, killed, Lincoln) -> the weapon (12798ms)\nWho was Abraham Lincoln?\tSoutherners\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (Southerners, hated, Lincoln) -> Southerners (13673ms)\nWho was Abraham Lincoln?\tThe military personnel\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (The military personnel, found, the Lincoln Town Car) -> The military personnel (13372ms)\nWho was Abraham Lincoln?\tTHINK\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (THINK, did, Lincoln) -> THINK (13673ms)\nWho was Abraham Lincoln?\tNorwich\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Norwich, People born here, Fred Lincoln) -> Norwich (13105ms)\nWho was Abraham Lincoln?\tpatrons\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (patrons, are the bishop of, Lincoln) -> patrons (13573ms)\nWho was Abraham Lincoln?\tcross\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (cross, is getting popular here in, lincoln) -> cross (12990ms)\nWho was Abraham Lincoln?\tthe bullet\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the bullet, killed, Lincoln) -> the bullet (13449ms)\nWho was Abraham Lincoln?\tthe three quotations\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the three quotations, was part of, Lincoln) -> the three quotations (12504ms)\nWho was Abraham Lincoln?\tPresident Bush?s Administration\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (President Bush?s Administration, is reminiscent of, Lincoln) -> President Bush?s Administration (13279ms)\nWho was Abraham Lincoln?\tRoom d?cor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (Room d?cor, is inspired by, the Lincoln Center) -> Room d?cor (13573ms)\nWho was Abraham Lincoln?\tThe scheme\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The scheme, is being developed by, US developer AIG/Lincoln) -> The scheme (12753ms)\nWho was Abraham Lincoln?\tHarlem River Blues Justin Townes Earle\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Harlem River Blues Justin Townes Earle, plays, Lincoln Hall) -> Harlem River Blues Justin Townes Earle (13123ms)\nWho was Abraham Lincoln?\t1970\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (1970, formed, Lincoln Square Synagogue) -> 1970 (13212ms)\nWho was Abraham Lincoln?\tMcCord\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (McCord, finds, Lincoln) -> McCord (13262ms)\nWho was Abraham Lincoln?\tpresident\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (president, elect, abraham lincoln) -> president (13532ms)\nWho was Abraham Lincoln?\tHolmes\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be vice president for, lincoln) -> (Holmes, was a Vice President for, Lincoln National Corporation) -> Holmes (13445ms)\nWho was Abraham Lincoln?\tthe War\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the War, created for, President Lincoln) -> the War (13245ms)\nWho was Abraham Lincoln?\tWorcester\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Worcester, People born here, Enoch Lincoln) -> Worcester (12842ms)\nWho was Abraham Lincoln?\tfact\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (fact, kill, Lincoln) -> fact (12864ms)\nWho was Abraham Lincoln?\tMod_perl\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Mod_perl, was described by, Lincoln Stein) -> Mod_perl (13141ms)\nWho was Abraham Lincoln?\ta developer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (a developer, find a five-acre property in, Lincoln) -> a developer (13664ms)\nWho was Abraham Lincoln?\tthe different branches\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the different branches, may be found in, Lincoln) -> the different branches (13228ms)\nWho was Abraham Lincoln?\tWar\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (War, So did, Lincoln) -> War (13664ms)\nWho was Abraham Lincoln?\tJennifer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Jennifer, is a native of, Lincoln) -> Jennifer (13621ms)\nWho was Abraham Lincoln?\ta year\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (a year, also had a profound influence upon, President Lincoln) -> a year (12504ms)\nWho was Abraham Lincoln?\tDavid Herbert Donald\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (David Herbert Donald, described in, his Lincoln biography) -> David Herbert Donald (13177ms)\nWho was Abraham Lincoln?\tLAST WE FLEW\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (LAST WE FLEW, was developed at, Lincoln Center) -> LAST WE FLEW (12990ms)\nWho was Abraham Lincoln?\tMr. Baldwin\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Mr. Baldwin, was here to see, Mr. Lincoln) -> Mr. Baldwin (12535ms)\nWho was Abraham Lincoln?\ta committee\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (a committee, was formed at, Lincoln) -> a committee (13030ms)\nWho was Abraham Lincoln?\ta counter-factual one\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (a counter-factual one, would have happened in, Lincoln) -> a counter-factual one (13696ms)\nWho was Abraham Lincoln?\tLuitink\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Luitink, described to, the Lincoln Welding representatives) -> Luitink (13673ms)\nWho was Abraham Lincoln?\tmichael connelly\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (michael connelly, created, The Lincoln lawyer) -> michael connelly (12906ms)\nWho was Abraham Lincoln?\tLincoln Lincoln Jobs\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Lincoln Lincoln Jobs, Find jobs in, Lincoln) -> Lincoln Lincoln Jobs (12842ms)\nWho was Abraham Lincoln?\t15 inches\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Sir Lincoln, is about, 15 inches) -> 15 inches (12730ms)\nWho was Abraham Lincoln?\tan event\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (an event, find an image of, Lincoln) -> an event (13704ms)\nWho was Abraham Lincoln?\tfashion fabrics\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Andrea Lincoln, is crazy about, fashion fabrics) -> fashion fabrics (12535ms)\nWho was Abraham Lincoln?\tthe design\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the design, is emblemaic of, Lincoln) -> the design (13357ms)\nWho was Abraham Lincoln?\tTripp\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Tripp, credibly describes, Lincoln?s) -> Tripp (13159ms)\nWho was Abraham Lincoln?\tRobert H.\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Robert H., Did, Lincoln) -> Robert H. (13696ms)\nWho was Abraham Lincoln?\tFreeman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Freeman, was a member of, Lincoln?s Board) -> Freeman (13327ms)\nWho was Abraham Lincoln?\tRhode Island Rhode Island\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Rhode Island Rhode Island, elected, Independent Lincoln Chafee) -> Rhode Island Rhode Island (13123ms)\nWho was Abraham Lincoln?\tJacobs\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Jacobs, was discovered in, her green four-door Lincoln) -> Jacobs (13068ms)\nWho was Abraham Lincoln?\tsale\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (sale, find, Lincoln real estate) -> sale (13583ms)\nWho was Abraham Lincoln?\tAshford\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Ashford, People born here, James Lincoln) -> Ashford (13573ms)\nWho was Abraham Lincoln?\tthe faithful citizens\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the faithful citizens, elected, Mr. Lincoln) -> the faithful citizens (13478ms)\nWho was Abraham Lincoln?\tan American\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (an American, to play, Lincoln) -> an American (13704ms)\nWho was Abraham Lincoln?\tThe arbitration panel\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (The arbitration panel, found, Lincoln Financial liable) -> The arbitration panel (13431ms)\nWho was Abraham Lincoln?\tLP\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (LP, Did, Lincoln) -> LP (13030ms)\nWho was Abraham Lincoln?\tan architect?s son\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, invent, lincoln) -> (an architect?s son, invented, Lincoln Logs) -> an architect?s son (13262ms)\nWho was Abraham Lincoln?\ta planning authority\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (a planning authority, has been created for, Lincoln County) -> a planning authority (13311ms)\nWho was Abraham Lincoln?\tthe aisle\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (the aisle, have been inspired by, Lincoln?s words and ideas) -> the aisle (13087ms)\nWho was Abraham Lincoln?\tthe only person\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the only person, wanted to kill, Lincoln) -> the only person (13564ms)\nWho was Abraham Lincoln?\tBusiness\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, Business) -> Business (13372ms)\nWho was Abraham Lincoln?\tsuspiciously similar , event\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (suspiciously similar , event, will be happening in, Lincoln Park) -> suspiciously similar , event (13159ms)\nWho was Abraham Lincoln?\tLincoln Nebraska\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Lincoln Nebraska, Find a dentist in, Lincoln) -> Lincoln Nebraska (13478ms)\nWho was Abraham Lincoln?\tHugh\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Hugh, [is] bishop of, Lincoln) -> Hugh (13177ms)\nWho was Abraham Lincoln?\tRussia\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Russia, really helped, Abraham Lincoln) -> Russia (13357ms)\nWho was Abraham Lincoln?\t2 year old sister\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (2 year old sister, were killed in, Lincoln) -> 2 year old sister (13688ms)\nWho was Abraham Lincoln?\tHistoric Preservation\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Historic Preservation, develop, President Lincoln) -> Historic Preservation (13372ms)\nWho was Abraham Lincoln?\tChris Fields\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Chris Fields, do any of, Lincoln) -> Chris Fields (13602ms)\nWho was Abraham Lincoln?\tTVC\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (TVC, helps, the Lincoln MKS drive) -> TVC (13402ms)\nWho was Abraham Lincoln?\tThe person\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The person, had killed, Lincoln) -> The person (12659ms)\nWho was Abraham Lincoln?\tresidencies\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (residencies, play, Lincoln Center) -> residencies (13656ms)\nWho was Abraham Lincoln?\tMary Elizabeth Winstead\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Mary Elizabeth Winstead, plays, Lincolns  wife) -> Mary Elizabeth Winstead (12885ms)\nWho was Abraham Lincoln?\tan interest\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (an interest, now helps organize, the Lincoln Air Show) -> an interest (13262ms)\nWho was Abraham Lincoln?\tFord?s Theatre\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Ford?s Theatre, have created, The Lincoln Legacy Project) -> Ford?s Theatre (13478ms)\nWho was Abraham Lincoln?\tIowa\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Iowa, People born here, Lincoln Fitzell) -> Iowa (12798ms)\nWho was Abraham Lincoln?\ta mile\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is a lake-bed about, a mile) -> a mile (12707ms)\nWho was Abraham Lincoln?\tClinton\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Clinton, helped, Lincoln) -> Clinton (13478ms)\nWho was Abraham Lincoln?\tthe plate\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the plate, was developed the spirit of, Abraham Lincoln) -> the plate (13372ms)\nWho was Abraham Lincoln?\tGI Campus Textbooks\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (GI Campus Textbooks, Please click here for, Lincoln) -> GI Campus Textbooks (13647ms)\nWho was Abraham Lincoln?\tSpring\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (Spring, is happening in, Lincoln Park) -> Spring (13228ms)\nWho was Abraham Lincoln?\tseven\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Kansas ? Lincoln, was about, seven) -> seven (13431ms)\nWho was Abraham Lincoln?\t200 new jobs\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (200 new jobs, will be created in, Lincoln) -> 200 new jobs (13011ms)\nWho was Abraham Lincoln?\tNew Zealand\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (New Zealand, People born here, Lincoln Doull) -> New Zealand (13532ms)\nWho was Abraham Lincoln?\thalf\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Center, is about, half) -> half (13621ms)\nWho was Abraham Lincoln?\tthe founders\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the founders, formed, the Lincoln Motor Company) -> the founders (13593ms)\nWho was Abraham Lincoln?\tan undated fragment\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (an undated fragment, found among, Lincoln) -> an undated fragment (13532ms)\nWho was Abraham Lincoln?\tThe county town\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The county town, is the city of, Lincoln) -> The county town (13068ms)\nWho was Abraham Lincoln?\tnew radar technology\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (new radar technology, developed at, MIT?s Lincoln Laboratory) -> new radar technology (13621ms)\nWho was Abraham Lincoln?\tDavid Selby\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (David Selby, returns to play, Lincoln) -> David Selby (13519ms)\nWho was Abraham Lincoln?\tKenneth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Kenneth, is currently a staff member of, the Lincoln Laboratory) -> Kenneth (12753ms)\nWho was Abraham Lincoln?\tElection Day\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Election Day, helped, vindicate Lincoln?s war strategy) -> Election Day (13603ms)\nWho was Abraham Lincoln?\tnebraska wesleyan prairie wolves\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (nebraska wesleyan prairie wolves, is the home city of the sports team, lincoln) -> nebraska wesleyan prairie wolves (13573ms)\nWho was Abraham Lincoln?\tthe National Park Service\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (the National Park Service, describes the highlights of, Lincoln) -> the National Park Service (12842ms)\nWho was Abraham Lincoln?\tProzac\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Prozac, could have helped, Lincoln) -> Prozac (13068ms)\nWho was Abraham Lincoln?\tThe lincoln mark lt\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The lincoln mark lt, is a key part of, lincoln) -> The lincoln mark lt (13681ms)\nWho was Abraham Lincoln?\tThe gun\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The gun, killed, Lincoln) -> The gun (13673ms)\nWho was Abraham Lincoln?\tHenry Carey\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Henry Carey, was the advisor of, Lincoln) -> Henry Carey (13245ms)\nWho was Abraham Lincoln?\tthe civil rights movement\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (the civil rights movement, inspired, Lincoln) -> the civil rights movement (13602ms)\nWho was Abraham Lincoln?\trace\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (race, develops between, Lincoln) -> race (13621ms)\nWho was Abraham Lincoln?\tarchitect John Lloyd Wright\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (architect John Lloyd Wright, created, the first Lincoln Logs) -> architect John Lloyd Wright (13564ms)\nWho was Abraham Lincoln?\tthe veteran character actor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the veteran character actor, played, Lincoln) -> the veteran character actor (13387ms)\nWho was Abraham Lincoln?\tpassengers\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (passengers, has been described by, Lincoln Steffens) -> passengers (12798ms)\nWho was Abraham Lincoln?\tThe new design\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The new design, will be emblematic of, Lincoln) -> The new design (12947ms)\nWho was Abraham Lincoln?\tThe war\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The war, did enable, Lincoln) -> The war (13696ms)\nWho was Abraham Lincoln?\tThe TV show\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The TV show, is based out of, Lincoln) -> The TV show (13295ms)\nWho was Abraham Lincoln?\tthe voice-talent actor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the voice-talent actor, plays, Abraham Lincoln) -> the voice-talent actor (12776ms)\nWho was Abraham Lincoln?\tfunding\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Senator Lincoln, was hopeful about, funding) -> funding (13123ms)\nWho was Abraham Lincoln?\tthe Illuminati\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the Illuminati, kill, American President Abraham Lincoln) -> the Illuminati (12730ms)\nWho was Abraham Lincoln?\tAbraham Lincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Abraham Lincoln, finds, Lincoln) -> Abraham Lincoln (13696ms)\nWho was Abraham Lincoln?\tlincoln performance parts\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, have history of, $x) -> (lincoln, has a proud history of, lincoln performance parts) -> lincoln performance parts (13492ms)\nWho was Abraham Lincoln?\tfive women\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (five women, helped, shape Abraham Lincoln?s life) -> five women (13593ms)\nWho was Abraham Lincoln?\tThursday Coronado\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Thursday Coronado, plays at, Lincoln) -> Thursday Coronado (13159ms)\nWho was Abraham Lincoln?\tSelect Smith Names William Smyth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Select Smith Names William Smyth, was Bishop of, Lincoln) -> Select Smith Names William Smyth (13505ms)\nWho was Abraham Lincoln?\tslavery and secession\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (slavery and secession, was described by, Lincoln) -> slavery and secession (12730ms)\nWho was Abraham Lincoln?\tmilitary necessity\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (military necessity, influenced, Lincoln) -> military necessity (12707ms)\nWho was Abraham Lincoln?\t170 lbs\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (President Lincoln, was about, 170 lbs) -> 170 lbs (13574ms)\nWho was Abraham Lincoln?\tthe Chicago Times\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (the Chicago Times, described one of, Lincoln) -> the Chicago Times (13638ms)\nWho was Abraham Lincoln?\tThe Biblical language\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Biblical language, is typical of, Lincoln) -> The Biblical language (12906ms)\nWho was Abraham Lincoln?\tWilson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Wilson, finds the body of, Lincoln) -> Wilson (13603ms)\nWho was Abraham Lincoln?\tNew Lincoln Price Quotes\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (New Lincoln Price Quotes, Find, a Used Lincoln Search) -> New Lincoln Price Quotes (13357ms)\nWho was Abraham Lincoln?\tBenson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (Benson, was named head of, the Lincoln-Mercury Division) -> Benson (13177ms)\nWho was Abraham Lincoln?\t5 miles\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, 5 miles) -> 5 miles (13612ms)\nWho was Abraham Lincoln?\tgames\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (games, played in, Lincoln) -> games (13194ms)\nWho was Abraham Lincoln?\tdepression\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (depression, is making strides right here in, Lincoln) -> depression (12927ms)\nWho was Abraham Lincoln?\ta truck\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln avenue, was brought about by, a truck) -> a truck (12753ms)\nWho was Abraham Lincoln?\tPlots\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Plots, To Kill, Lincoln) -> Plots (13049ms)\nWho was Abraham Lincoln?\tThomas Paine\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Thomas Paine, Influenced, Abraham Lincoln) -> Thomas Paine (13417ms)\nWho was Abraham Lincoln?\tthe first Bass club\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the first Bass club, formed in, Lincoln) -> the first Bass club (13212ms)\nWho was Abraham Lincoln?\tdrawings\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (drawings, have been created in, Lincoln?s image) -> drawings (13532ms)\nWho was Abraham Lincoln?\tevents\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (events, helped, Lincoln) -> events (13573ms)\nWho was Abraham Lincoln?\tmore communication\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Center, was about, more communication) -> more communication (12472ms)\nWho was Abraham Lincoln?\ta jury\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (a jury, finds, Lincoln) -> a jury (12753ms)\nWho was Abraham Lincoln?\tColston\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Colston, also helped, Lincoln) -> Colston (12775ms)\nWho was Abraham Lincoln?\ta Euro-American innovator\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a Euro-American innovator, helped set, the Lincolns ? first son) -> a Euro-American innovator (13621ms)\nWho was Abraham Lincoln?\tUnited States of America\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (United States of America, People born here, Evelyn Lincoln) -> United States of America (13583ms)\nWho was Abraham Lincoln?\tBill T. Jones\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Bill T. Jones, describes his relationship to, Lincoln) -> Bill T. Jones (13703ms)\nWho was Abraham Lincoln?\tBaker ?s departure\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (Baker ?s departure, has caused controversy in, Lincoln) -> Baker ?s departure (13431ms)\nWho was Abraham Lincoln?\tmodern Keel Avenue\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (modern Keel Avenue, was given the name of, the county?Lincoln) -> modern Keel Avenue (13630ms)\nWho was Abraham Lincoln?\tChristopher Maloney\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Christopher Maloney, play, Lincoln) -> Christopher Maloney (12753ms)\nWho was Abraham Lincoln?\tMr. Chase\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (Mr. Chase, caused, Mr. Lincoln considerable embarrassment) -> Mr. Chase (13194ms)\nWho was Abraham Lincoln?\tTom Warburton\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Tom Warburton, Fictional Characters Created, Cree Lincoln) -> Tom Warburton (13519ms)\nWho was Abraham Lincoln?\tthe dam\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the dam, was developed by, Lincoln County) -> the dam (12707ms)\nWho was Abraham Lincoln?\tthe Outer Banks\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Outer Banks, helped accomplish, President Lincoln) -> the Outer Banks (13639ms)\nWho was Abraham Lincoln?\troutines\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (routines, Help, others Lincoln) -> routines (12730ms)\nWho was Abraham Lincoln?\tThe Pixies\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (The Pixies, played in, Lincoln) -> The Pixies (13177ms)\nWho was Abraham Lincoln?\tOne word\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (One word, clearly defines, Abraham Lincoln) -> One word (13327ms)\nWho was Abraham Lincoln?\tRome\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Rome, was the instigator of, Lincoln) -> Rome (13311ms)\nWho was Abraham Lincoln?\tThe MKT\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The MKT, really does put, Lincoln) -> The MKT (13417ms)\nWho was Abraham Lincoln?\tSzilva\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Szilva, went on to create, a Big Lincoln Cent) -> Szilva (13141ms)\nWho was Abraham Lincoln?\tGriffith\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Griffith, describes, Lincoln) -> Griffith (12969ms)\nWho was Abraham Lincoln?\tWinston-Salem\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Winston-Salem, People born here, Lincoln Broyhill) -> Winston-Salem (13068ms)\nWho was Abraham Lincoln?\tThe victories\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The victories, helped, Lincoln) -> The victories (13141ms)\nWho was Abraham Lincoln?\tTubman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Tubman, seeks to influence, President Abraham Lincoln) -> Tubman (13583ms)\nWho was Abraham Lincoln?\t11 people\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (11 people, were killed in, Lincoln) -> 11 people (13621ms)\nWho was Abraham Lincoln?\tSandel\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Sandel, finds in, Lincoln) -> Sandel (13656ms)\nWho was Abraham Lincoln?\tThe first one\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The first one, is of, Lincoln) -> The first one (13105ms)\nWho was Abraham Lincoln?\tLehmann\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, date, lincoln) -> (Lehmann, got a date with, Lincoln Continental brass) -> Lehmann (12776ms)\nWho was Abraham Lincoln?\tRockingham County\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Rockingham County, People born here, Thomas Lincoln) -> Rockingham County (13402ms)\nWho was Abraham Lincoln?\tTexas A&M\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Texas A&M, will play in, Lincoln) -> Texas A&M (13673ms)\nWho was Abraham Lincoln?\tCARY ? Brett Malmstrom\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (CARY ? Brett Malmstrom, helped, North Lincoln) -> CARY ? Brett Malmstrom (13519ms)\nWho was Abraham Lincoln?\tThe urinals\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, size be, lincoln) -> (The urinals, are the size of, Abraham Lincoln) -> The urinals (13703ms)\nWho was Abraham Lincoln?\tthe coming year\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (the coming year, should show the influence of, Mr. Lincoln) -> the coming year (12775ms)\nWho was Abraham Lincoln?\t1860\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (1860, elected, Abraham Lincoln president) -> 1860 (13543ms)\nWho was Abraham Lincoln?\talmost a third currency\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (almost a third currency, was created by, Abe Lincoln) -> almost a third currency (13564ms)\nWho was Abraham Lincoln?\ta beating\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (a beating, killed, President Lincoln) -> a beating (13612ms)\nWho was Abraham Lincoln?\tthe collection plate\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the collection plate, finds, the Lincoln) -> the collection plate (13602ms)\nWho was Abraham Lincoln?\tsame formats\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (same formats, did, Lincoln) -> same formats (13612ms)\nWho was Abraham Lincoln?\tbest\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (best, describes, Lincoln Park) -> best (13574ms)\nWho was Abraham Lincoln?\thate\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (hate, did, Lincoln) -> hate (13245ms)\nWho was Abraham Lincoln?\tthe frequency\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the frequency, did, Lincoln) -> the frequency (13602ms)\nWho was Abraham Lincoln?\tA fair parallel\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (A fair parallel, would be the influence of, Abraham Lincoln) -> A fair parallel (12947ms)\nWho was Abraham Lincoln?\tEmmet\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Emmet, influenced, Lincoln) -> Emmet (13593ms)\nWho was Abraham Lincoln?\tMassachusetts\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Massachusetts, Find, the perfect Used Lincoln) -> Massachusetts (13402ms)\nWho was Abraham Lincoln?\tNovember 1880 Garrett\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (November 1880 Garrett, was elected, Lincoln County Sheriff) -> November 1880 Garrett (12864ms)\nWho was Abraham Lincoln?\tWashington DC\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Washington DC, find, the Lincoln Memorial) -> Washington DC (13647ms)\nWho was Abraham Lincoln?\tLA\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (LA, Find, the perfect New Lincoln) -> LA (13553ms)\nWho was Abraham Lincoln?\tThe automaker\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The automaker, created, a separate Lincoln team) -> The automaker (13602ms)\nWho was Abraham Lincoln?\tJohn Wilkes Booth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (John Wilkes Booth, killed, Abraham Lincoln) -> John Wilkes Booth (13621ms)\nWho was Abraham Lincoln?\thelp\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, certainly have n?t been shy about asking for, help) -> help (12906ms)\nWho was Abraham Lincoln?\tlead\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (lead, was discovered at, the Lincoln Mine) -> lead (12885ms)\nWho was Abraham Lincoln?\tNorthern Democrats\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was also concerned about, Northern Democrats) -> Northern Democrats (13505ms)\nWho was Abraham Lincoln?\tCharlie Hien\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Charlie Hien, found pictures of, Lincoln) -> Charlie Hien (13564ms)\nWho was Abraham Lincoln?\tUnion Plaza\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Union Plaza, create, more opportunities for growth in Lincoln) -> Union Plaza (13621ms)\nWho was Abraham Lincoln?\tJr.\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Jr., is the author of, Lincoln) -> Jr. (13593ms)\nWho was Abraham Lincoln?\tChrist Church\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Christ Church, elected a fellow of, Lincoln College) -> Christ Church (12970ms)\nWho was Abraham Lincoln?\tNathan Hale\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Nathan Hale, did, Lincoln) -> Nathan Hale (13505ms)\nWho was Abraham Lincoln?\tstrong women\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (strong women, helped form, Lincoln) -> strong women (13638ms)\nWho was Abraham Lincoln?\tNewt\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Newt, did read, Lincoln) -> Newt (13011ms)\nWho was Abraham Lincoln?\tthe civil war\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the civil war, did, Lincoln) -> the civil war (13177ms)\nWho was Abraham Lincoln?\tHospitals and care homes\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Hospitals and care homes, find, the Lincoln ideal) -> Hospitals and care homes (13553ms)\nWho was Abraham Lincoln?\tAmerican Presidents Blog\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (American Presidents Blog, Did, Lincoln) -> American Presidents Blog (13492ms)\nWho was Abraham Lincoln?\tthe occasion\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, have idea of, $x) -> (Lincoln, had better grasped ?the central idea of, the occasion) -> the occasion (13647ms)\nWho was Abraham Lincoln?\tLewis Lehrman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Lewis Lehrman, created, The Lincoln Institute) -> Lewis Lehrman (13656ms)\nWho was Abraham Lincoln?\tThorp\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Thorp, created the only artist?s portrait of, Lincoln) -> Thorp (12776ms)\nWho was Abraham Lincoln?\tthe town ?s sentiments\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the town ?s sentiments, may have helped, Lincoln) -> the town ?s sentiments (13647ms)\nWho was Abraham Lincoln?\tsaline wetlands\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (saline wetlands, played a key role in, Lincoln) -> saline wetlands (12504ms)\nWho was Abraham Lincoln?\tBlessings\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, date be, lincoln) -> (Blessings, was the date on, the first Lincoln cent) -> Blessings (13673ms)\nWho was Abraham Lincoln?\tFrank Lloyd Wright?s son John\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, invent, lincoln) -> (Frank Lloyd Wright?s son John, invented, Lincoln Logs) -> Frank Lloyd Wright?s son John (12472ms)\nWho was Abraham Lincoln?\tThe president\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The president, re-created, Lincoln) -> The president (12683ms)\nWho was Abraham Lincoln?\tLincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Lincoln, is a member of, numerous Lincoln) -> Lincoln (13123ms)\nWho was Abraham Lincoln?\tNot one cheap joke or anecdote\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Not one cheap joke or anecdote, did, Lincoln) -> Not one cheap joke or anecdote (13228ms)\nWho was Abraham Lincoln?\tthe wisdom\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (the wisdom, hated, Lincoln) -> the wisdom (13030ms)\nWho was Abraham Lincoln?\ta major Formula SAE competition\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (a major Formula SAE competition, will happen in, Lincoln) -> a major Formula SAE competition (12842ms)\nWho was Abraham Lincoln?\tTranscontinental Railroad\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (Transcontinental Railroad, initiated by, Abraham Lincoln) -> Transcontinental Railroad (13068ms)\nWho was Abraham Lincoln?\tTom\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Tom, is a member of, the Lincoln Center Directors Lab) -> Tom (13583ms)\nWho was Abraham Lincoln?\tExpansion move\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Expansion move, creates new jobs at, Gateway Park Lincoln) -> Expansion move (13357ms)\nWho was Abraham Lincoln?\tThe political party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (The political party, had elected, Lincoln) -> The political party (13372ms)\nWho was Abraham Lincoln?\tTreasurer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Treasurer, is a member of, the Lincoln Forum) -> Treasurer (12798ms)\nWho was Abraham Lincoln?\tthe German American Turners\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the German American Turners, formed, Lincoln) -> the German American Turners (13011ms)\nWho was Abraham Lincoln?\tthe reactionary part\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was particularly concerned about, the reactionary part) -> the reactionary part (13464ms)\nWho was Abraham Lincoln?\tDenzel Washington\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Denzel Washington, plays, Lincoln) -> Denzel Washington (13593ms)\nWho was Abraham Lincoln?\tAn actor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (An actor, apparently influenced, Lincoln) -> An actor (12990ms)\nWho was Abraham Lincoln?\t15 miles\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, 15 miles) -> 15 miles (12885ms)\nWho was Abraham Lincoln?\tthe speed\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, date, lincoln) -> (the speed, dating, lincoln) -> the speed (13505ms)\nWho was Abraham Lincoln?\t100 years\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Hall, is just about, 100 years) -> 100 years (13519ms)\nWho was Abraham Lincoln?\tThe pic\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (The pic, is the fictionalized story of, Abraham Lincoln) -> The pic (12906ms)\nWho was Abraham Lincoln?\tVampire Hunter\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (Vampire Hunter, is the unique story of, Abraham Lincoln?s life) -> Vampire Hunter (13688ms)\nWho was Abraham Lincoln?\tSan Francisco\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (San Francisco, People born here, Lincoln Steffens) -> San Francisco (13656ms)\nWho was Abraham Lincoln?\tthe role photography\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the role photography, played in, Lincoln) -> the role photography (13123ms)\nWho was Abraham Lincoln?\tRemi\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Remi, [is] bishop of, Lincoln) -> Remi (13311ms)\nWho was Abraham Lincoln?\tPresident Obama\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (President Obama, is so inspired by, Lincoln) -> President Obama (13492ms)\nWho was Abraham Lincoln?\tHolbeach\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Holbeach, is the University of, Lincoln) -> Holbeach (13387ms)\nWho was Abraham Lincoln?\tBrian Kaiser\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Brian Kaiser, started here in, Lincoln) -> Brian Kaiser (12597ms)\nWho was Abraham Lincoln?\tOnly\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Only, then does, Lincoln) -> Only (12885ms)\nWho was Abraham Lincoln?\ta campaign\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a campaign, re-elected, Abraham Lincoln) -> a campaign (13583ms)\nWho was Abraham Lincoln?\tthe gun\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the gun, killed, Lincoln) -> the gun (12947ms)\nWho was Abraham Lincoln?\ta block\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is only about, a block) -> a block (13630ms)\nWho was Abraham Lincoln?\tKlaxons\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Klaxons, play, Lincoln Hall) -> Klaxons (12949ms)\nWho was Abraham Lincoln?\tThe raid\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (The raid, also helped elect, Abraham Lincoln) -> The raid (13478ms)\nWho was Abraham Lincoln?\tGever\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (Gever, is inspired to try, a new Lincoln-Log style notch+lash) -> Gever (13630ms)\nWho was Abraham Lincoln?\tmen\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (men, do, ( Lincoln) -> men (13704ms)\nWho was Abraham Lincoln?\tearly tragedy\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (early tragedy, helped prepare, Lincoln) -> early tragedy (13402ms)\nWho was Abraham Lincoln?\tScissors\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Scissors, have been developed at, Lincoln Center Theatre) -> Scissors (13688ms)\nWho was Abraham Lincoln?\tIra\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Ira, was a member of, Lincoln Park United Methodist Church) -> Ira (13593ms)\nWho was Abraham Lincoln?\tSt. Louis\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (St. Louis, People born here, Lincoln Kilpatrick) -> St. Louis (13583ms)\nWho was Abraham Lincoln?\tTheodore Parker\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Theodore Parker, Influenced, Abraham Lincoln) -> Theodore Parker (13519ms)\nWho was Abraham Lincoln?\ta family acting troupe\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (a family acting troupe, played, Lincoln regularly) -> a family acting troupe (12683ms)\nWho was Abraham Lincoln?\tBrisbane\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Brisbane, People born here, Lincoln Lewis) -> Brisbane (13553ms)\nWho was Abraham Lincoln?\tAbe Lincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (Abe Lincoln, is the story of, Lincoln) -> Abe Lincoln (12683ms)\nWho was Abraham Lincoln?\tCentral Falls\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Central Falls, People born here, Lincoln Almond) -> Central Falls (13593ms)\nWho was Abraham Lincoln?\tthe lavishly funded challenge\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the lavishly funded challenge, did force, Lincoln) -> the lavishly funded challenge (13159ms)\nWho was Abraham Lincoln?\tThe War\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The War, as did confidence in, Lincoln) -> The War (13492ms)\nWho was Abraham Lincoln?\tThe Clientele\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (The Clientele, played, Lincoln Hall) -> The Clientele (13141ms)\nWho was Abraham Lincoln?\tlaw partner William Herndon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (law partner William Herndon, influenced, Lincoln) -> law partner William Herndon (13681ms)\nWho was Abraham Lincoln?\tsecessionists\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (secessionists, would kill, Lincoln) -> secessionists (13532ms)\nWho was Abraham Lincoln?\tGuiding Questions\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Guiding Questions, did, Lincoln) -> Guiding Questions (13630ms)\nWho was Abraham Lincoln?\tHow many slaves\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (How many slaves, did own, Lincoln) -> How many slaves (13553ms)\nWho was Abraham Lincoln?\t3 miles\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (the Lincoln, is about, 3 miles) -> 3 miles (13212ms)\nWho was Abraham Lincoln?\tfirst game\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (first game, was n?t played in, Lincoln) -> first game (13519ms)\nWho was Abraham Lincoln?\tthe British soldiers\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the British soldiers, were killed in, Lincoln) -> the British soldiers (13519ms)\nWho was Abraham Lincoln?\tiATN Member Directory\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (iATN Member Directory, Find, a Repair Shop Lincoln) -> iATN Member Directory (13583ms)\nWho was Abraham Lincoln?\tefficiency\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (?Lincoln C, is about, efficiency) -> efficiency (12906ms)\nWho was Abraham Lincoln?\tLAMB\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (LAMB, Did, Lincoln) -> LAMB (13212ms)\nWho was Abraham Lincoln?\tThe museum\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The museum, will create a DVD of, Lincoln) -> The museum (13049ms)\nWho was Abraham Lincoln?\tmachinist Henry Leland\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (machinist Henry Leland, created, Cadillac and Lincoln) -> machinist Henry Leland (13105ms)\nWho was Abraham Lincoln?\tmedieval philosophy\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (medieval philosophy, so did, Lincoln) -> medieval philosophy (13228ms)\nWho was Abraham Lincoln?\tJapanese sushi chefs\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Japanese sushi chefs, discovered, Port Lincoln) -> Japanese sushi chefs (13492ms)\nWho was Abraham Lincoln?\tBe part\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Be part, help make, Lincoln) -> Be part (13621ms)\nWho was Abraham Lincoln?\tRepublican pollster OnMessage\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Republican pollster OnMessage, finds, Rep. Lincoln Davis) -> Republican pollster OnMessage (13464ms)\nWho was Abraham Lincoln?\tTerry Thompson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Terry Thompson, was elected, Lincoln County Commissioner) -> Terry Thompson (13583ms)\nWho was Abraham Lincoln?\tRoom d?cor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (Room d?cor, is inspired by, the Lincoln Center) -> Room d?cor (13327ms)\nWho was Abraham Lincoln?\tSeth Grahame Smith\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Seth Grahame Smith, created, Abraham Lincoln: Vampire Hunter) -> Seth Grahame Smith (13194ms)\nWho was Abraham Lincoln?\tthe Executive Mansion\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Executive Mansion, helped, Mary Lincoln cover) -> the Executive Mansion (12659ms)\nWho was Abraham Lincoln?\tNew York City ?s\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (New York City ?s, newly created, Lincoln Center Theater) -> New York City ?s (13505ms)\nWho was Abraham Lincoln?\tSPSS\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (SPSS, will help, Lincoln Financial Distributors) -> SPSS (13011ms)\nWho was Abraham Lincoln?\tSergeant Fedon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Sergeant Fedon, is a native of, Lincoln) -> Sergeant Fedon (13593ms)\nWho was Abraham Lincoln?\tU.S. President Abraham Lincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (U.S. President Abraham Lincoln, is a composite of, Lincoln) -> U.S. President Abraham Lincoln (13159ms)\nWho was Abraham Lincoln?\tIdustries\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Idustries, has been a long time member of, the Lincoln Chamber) -> Idustries (12629ms)\nWho was Abraham Lincoln?\tthe president\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the president, sought here is, Lincoln) -> the president (13194ms)\nWho was Abraham Lincoln?\tFiske\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Fiske, was a member of, the Park Liberty Lincoln County) -> Fiske (12842ms)\nWho was Abraham Lincoln?\tany other President\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Abraham Lincoln, there are about, any other President) -> any other President (12927ms)\nWho was Abraham Lincoln?\tthe God\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (the God, described by, Abraham Lincoln) -> the God (12566ms)\nWho was Abraham Lincoln?\tEdgar Lee Masters\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Edgar Lee Masters, Influenced By, Abraham Lincoln) -> Edgar Lee Masters (13357ms)\nWho was Abraham Lincoln?\tA Man\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (A Man, ? create, your own Lincoln hat) -> A Man (13262ms)\nWho was Abraham Lincoln?\tthe actor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the actor, playing, Lincoln) -> the actor (13673ms)\nWho was Abraham Lincoln?\t30 %\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Dollars, were also about, 30 %) -> 30 % (13612ms)\nWho was Abraham Lincoln?\tJohn\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (John, found, Lincoln sitting) -> John (13696ms)\nWho was Abraham Lincoln?\tDDL\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (DDL, is playing, Lincoln) -> DDL (13417ms)\nWho was Abraham Lincoln?\t25 miles\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is situated about, 25 miles) -> 25 miles (13177ms)\nWho was Abraham Lincoln?\tEnfield\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Enfield, People born here, Lincoln Steen) -> Enfield (12597ms)\nWho was Abraham Lincoln?\tThe Weed\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The Weed, killed, Lincoln?s mother) -> The Weed (12947ms)\nWho was Abraham Lincoln?\tMary Todd\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Mary Todd, Killed, Lincoln) -> Mary Todd (12820ms)\nWho was Abraham Lincoln?\tWilbur\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Wilbur, killed, Abraham Lincoln) -> Wilbur (13105ms)\nWho was Abraham Lincoln?\tNAPT staff\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (NAPT staff, create for, Lincoln?s community radio station) -> NAPT staff (13553ms)\nWho was Abraham Lincoln?\tNorth Platte\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (North Platte, is a member of, the Lincoln County Farm Bureau) -> North Platte (13688ms)\nWho was Abraham Lincoln?\tthe MKT crossover\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the MKT crossover, will find its way to, Lincoln) -> the MKT crossover (12842ms)\nWho was Abraham Lincoln?\tChicago\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Chicago, People born here, Lincoln Schatz) -> Chicago (13630ms)\nWho was Abraham Lincoln?\t35 years\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was about, 35 years) -> 35 years (13212ms)\nWho was Abraham Lincoln?\tan ordinary guy\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (an ordinary guy, found, the Lincoln Fry) -> an ordinary guy (13194ms)\nWho was Abraham Lincoln?\tdesigner Lela Rose\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (designer Lela Rose, created, a stunning Lincoln Center portfolio) -> designer Lela Rose (13372ms)\nWho was Abraham Lincoln?\t?The Futurity\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (?The Futurity, really helped, the Lincoln show entries) -> ?The Futurity (12775ms)\nWho was Abraham Lincoln?\tIllinois\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Illinois, is the Land of, Lincoln) -> Illinois (13464ms)\nWho was Abraham Lincoln?\tAnderson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Anderson, found out about, Lincoln) -> Anderson (13357ms)\nWho was Abraham Lincoln?\tUsed Lincoln Cars\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Used Lincoln Cars, Find, Lincoln parts and accessories Lincoln) -> Used Lincoln Cars (13311ms)\nWho was Abraham Lincoln?\tWranglers\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Wranglers, are impossible to find in, Lincoln) -> Wranglers (13564ms)\nWho was Abraham Lincoln?\tthe artistic center\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the artistic center, was developed around, Lincoln Center) -> the artistic center (13478ms)\nWho was Abraham Lincoln?\tAtlanta\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Atlanta, helped guarantee, Lincoln) -> Atlanta (13704ms)\nWho was Abraham Lincoln?\tOrtho-Bionomy\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Ortho-Bionomy, was developed by, Dr. Arthur Lincoln Pauls) -> Ortho-Bionomy (13664ms)\nWho was Abraham Lincoln?\ton\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (on, otherwise develop property in, Lincoln County) -> on (13295ms)\nWho was Abraham Lincoln?\tthe presses\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (the presses, is the story of, the Lincoln Inaugural Train) -> the presses (13295ms)\nWho was Abraham Lincoln?\tThe game\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (The game, was played at, Lincoln) -> The game (13357ms)\nWho was Abraham Lincoln?\twaste\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (waste, are disposed of in, Lincoln) -> waste (12798ms)\nWho was Abraham Lincoln?\tALO\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (ALO, Did, Lincoln) -> ALO (13402ms)\nWho was Abraham Lincoln?\tthe lush campus\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the lush campus, find, Lincoln Hall) -> the lush campus (13464ms)\nWho was Abraham Lincoln?\tCarmichael\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Carmichael, People born here, Mike Lincoln) -> Carmichael (12798ms)\nWho was Abraham Lincoln?\tThe street pastors scheme\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The street pastors scheme, has helped, Lincoln) -> The street pastors scheme (12472ms)\nWho was Abraham Lincoln?\ta possible site\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (a possible site, was found in, Lincoln) -> a possible site (13105ms)\nWho was Abraham Lincoln?\tA girl\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (A girl, discovers many things about, Abraham Lincoln) -> A girl (13229ms)\nWho was Abraham Lincoln?\tthe Christian agenda\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was skeptical about, the Christian agenda) -> the Christian agenda (13123ms)\nWho was Abraham Lincoln?\tthe national legend\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the national legend, has been created about, Lincoln) -> the national legend (13696ms)\nWho was Abraham Lincoln?\teverybody\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (everybody, has to find, Lincoln) -> everybody (13478ms)\nWho was Abraham Lincoln?\tthe maps\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the maps, form the basis for, several Lincoln Institute) -> the maps (12864ms)\nWho was Abraham Lincoln?\ta sponsor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (a sponsor, held here in, Lincoln) -> a sponsor (13446ms)\nWho was Abraham Lincoln?\tNew York City\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (New York City, People born here, Lincoln Gordon) -> New York City (13583ms)\nWho was Abraham Lincoln?\tByzantine documents\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Byzantine documents, was the character of, Lincoln) -> Byzantine documents (13445ms)\nWho was Abraham Lincoln?\tThe Nebraska State Penitentiary\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Nebraska State Penitentiary, was then south of, Lincoln) -> The Nebraska State Penitentiary (13543ms)\nWho was Abraham Lincoln?\t?growth ?\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (?growth ?, really describe, Lincoln) -> ?growth ? (13639ms)\nWho was Abraham Lincoln?\tWashington\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Washington, discover, the Lincoln and Howard theatres) -> Washington (13656ms)\nWho was Abraham Lincoln?\tLeon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, race be, lincoln) -> (Leon, is racing for, Lincoln-based team AP Kawasaki) -> Leon (12472ms)\nWho was Abraham Lincoln?\tMarch\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (March, found, Lincoln leading Griffin) -> March (13431ms)\nWho was Abraham Lincoln?\tthe U.S. Mint\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the U.S. Mint, has developed a new arsenal of, Lincoln pennies) -> the U.S. Mint (13656ms)\nWho was Abraham Lincoln?\taction\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was about, action) -> action (13505ms)\nWho was Abraham Lincoln?\tmore Trustee David McMahon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (more Trustee David McMahon, was elected to, the Lincoln Board) -> more Trustee David McMahon (13681ms)\nWho was Abraham Lincoln?\tthe conflicts\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (the conflicts, defined, Lincolns  time) -> the conflicts (13681ms)\nWho was Abraham Lincoln?\tthe 6th day\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the 6th day, elected, Abraham Lincoln) -> the 6th day (13696ms)\nWho was Abraham Lincoln?\tdrama students\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (drama students, form the University of, Lincoln) -> drama students (13704ms)\nWho was Abraham Lincoln?\tthe GOP\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the GOP, was the party of, Lincoln) -> the GOP (13553ms)\nWho was Abraham Lincoln?\tSeitzer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Seitzer, was a member of, Lincoln Community High School) -> Seitzer (13105ms)\nWho was Abraham Lincoln?\tBOCES\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (BOCES, helped decorate, Lincoln Park) -> BOCES (13630ms)\nWho was Abraham Lincoln?\tRichard?s first successful bronze\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Richard?s first successful bronze, was of, ?Lincoln?) -> Richard?s first successful bronze (13583ms)\nWho was Abraham Lincoln?\tFebruary 19 , 2012\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (February 19 , 2012, Killing, Lincoln) -> February 19 , 2012 (13342ms)\nWho was Abraham Lincoln?\tnearby Cranwell and Caroline\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (nearby Cranwell and Caroline, found a job in, Lincoln) -> nearby Cranwell and Caroline (13342ms)\nWho was Abraham Lincoln?\tmore than one occasion\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (more than one occasion, found, Lincoln poring) -> more than one occasion (13583ms)\nWho was Abraham Lincoln?\tCanberra\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Canberra, People born here, Lincoln Withers) -> Canberra (13123ms)\nWho was Abraham Lincoln?\tSharon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (Sharon, is actively involved in, Lincoln Rotary Club 14) -> Sharon (13431ms)\nWho was Abraham Lincoln?\t74 Moulton College Moulton College\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (74 Moulton College Moulton College, played, Lincoln College) -> 74 Moulton College Moulton College (13327ms)\nWho was Abraham Lincoln?\ta glass ceiling\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a glass ceiling, will help, Lincoln break through) -> a glass ceiling (13673ms)\nWho was Abraham Lincoln?\tNebraska\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Nebraska, has been a member of, the Lincoln business community) -> Nebraska (13372ms)\nWho was Abraham Lincoln?\tHingham\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Hingham, People born here, Samuel Lincoln) -> Hingham (13011ms)\nWho was Abraham Lincoln?\tSally\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (Sally, was involved in, Lincoln Center Program) -> Sally (12730ms)\nWho was Abraham Lincoln?\tMatthew Brumlow\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Matthew Brumlow, will play, Lincoln) -> Matthew Brumlow (12566ms)\nWho was Abraham Lincoln?\tIf  Booth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (If  Booth, killed, Lincoln) -> If  Booth (13647ms)\nWho was Abraham Lincoln?\tThe victory\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The victory, greatly helps, President Lincoln) -> The victory (13372ms)\nWho was Abraham Lincoln?\tNo news\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (No news, found for, Lincoln) -> No news (13543ms)\nWho was Abraham Lincoln?\tgun\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (gun, was used to kill, Lincoln) -> gun (13647ms)\nWho was Abraham Lincoln?\tthe guests\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the guests, did, Lincoln Lincoln Lincoln) -> the guests (13327ms)\nWho was Abraham Lincoln?\tLarson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Larson, was a member of, Lincoln Christian) -> Larson (13295ms)\nWho was Abraham Lincoln?\tLincolnshire food\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Lincolnshire food, has helped turn, Lincoln) -> Lincolnshire food (12683ms)\nWho was Abraham Lincoln?\tStephen King\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Stephen King, plays, Lincoln) -> Stephen King (13647ms)\nWho was Abraham Lincoln?\tRT @ CityOfLincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (RT @ CityOfLincoln, Help Keep, Lincoln & Lancaster County Clean) -> RT @ CityOfLincoln (12842ms)\nWho was Abraham Lincoln?\tThe DOA\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The DOA, was created under, President Lincoln) -> The DOA (13177ms)\nWho was Abraham Lincoln?\tLincoln Real Estate\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Lincoln Real Estate, Find, Lincoln Homes) -> Lincoln Real Estate (13612ms)\nWho was Abraham Lincoln?\tthe vampire\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the vampire, kills, Lincolns) -> the vampire (13417ms)\nWho was Abraham Lincoln?\tRiis\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (Riis, inspired, Lincoln Steffens) -> Riis (13574ms)\nWho was Abraham Lincoln?\tthe same two men\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the same two men, created, the Lincoln Memorial) -> the same two men (13087ms)\nWho was Abraham Lincoln?\tthe side\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the side, thus helped, Lincoln) -> the side (13681ms)\nWho was Abraham Lincoln?\tagriculture\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was unsentimental about, agriculture) -> agriculture (13612ms)\nWho was Abraham Lincoln?\tDavis\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Davis, helped, Abraham Lincoln) -> Davis (13543ms)\nWho was Abraham Lincoln?\tThe Philadelphi derringer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The Philadelphi derringer, killed, President Lincoln) -> The Philadelphi derringer (13464ms)\nWho was Abraham Lincoln?\tArtScene visitors\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (ArtScene visitors, 's happening in, Lincoln) -> ArtScene visitors (13342ms)\nWho was Abraham Lincoln?\tmulti-disciplined attorneys\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (multi-disciplined attorneys, is a member of, the Lincoln Chamber) -> multi-disciplined attorneys (13505ms)\nWho was Abraham Lincoln?\tProfile Christa\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Profile Christa, is a member of, Lincoln) -> Profile Christa (13194ms)\nWho was Abraham Lincoln?\ta certain John Wilkes Booth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (a certain John Wilkes Booth, killed, Abraham Lincoln) -> a certain John Wilkes Booth (13194ms)\nWho was Abraham Lincoln?\tFormer Pennsylvania Governor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (Former Pennsylvania Governor, caused, Mr. Lincoln much anxiety) -> Former Pennsylvania Governor (13492ms)\nWho was Abraham Lincoln?\tAmerican luxury\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (? Lincoln, is about, American luxury) -> American luxury (13681ms)\nWho was Abraham Lincoln?\ta pizza sauce\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (a pizza sauce, made right here in, Lincoln) -> a pizza sauce (13446ms)\nWho was Abraham Lincoln?\tan attorney\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (an attorney, had developed a relationship with, Mr. Lincoln) -> an attorney (13141ms)\nWho was Abraham Lincoln?\tthe social scene\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the social scene, is found around, Lincoln) -> the social scene (13327ms)\nWho was Abraham Lincoln?\tKatia\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Katia, played, Robert Lincoln) -> Katia (13696ms)\nWho was Abraham Lincoln?\tNo results\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (No results, found University of, Lincoln) -> No results (13553ms)\nWho was Abraham Lincoln?\tstinkin? Booth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (stinkin? Booth, did to, Lincoln) -> stinkin? Booth (13704ms)\nWho was Abraham Lincoln?\tthe party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the party, was the party of, Lincoln) -> the party (13402ms)\nWho was Abraham Lincoln?\tPenn Mullin\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (Penn Mullin, happened in, Lincolns bedroom) -> Penn Mullin (13030ms)\nWho was Abraham Lincoln?\tSaint-Gaudens\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Saint-Gaudens, created for, Lincoln Park) -> Saint-Gaudens (13519ms)\nWho was Abraham Lincoln?\tTulsa\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Tulsa, People born here, Todd Lincoln) -> Tulsa (12707ms)\nWho was Abraham Lincoln?\tChurchill\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Churchill, did, Lincoln) -> Churchill (13612ms)\nWho was Abraham Lincoln?\tthe wall\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the wall, was a picture of, Lincoln) -> the wall (12798ms)\nWho was Abraham Lincoln?\tthe Committee\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the Committee, was a summary of, Lincoln) -> the Committee (13464ms)\nWho was Abraham Lincoln?\tthe bill\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the bill, created, Lincoln county) -> the bill (13532ms)\nWho was Abraham Lincoln?\tone such speech\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (one such speech, helped turn, Lincoln) -> one such speech (13602ms)\nWho was Abraham Lincoln?\tthe small suburb\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Park, are talking about, the small suburb) -> the small suburb (12566ms)\nWho was Abraham Lincoln?\tthe extreme Republicans\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the extreme Republicans, did vote for, Lincoln) -> the extreme Republicans (12820ms)\nWho was Abraham Lincoln?\tThe MC5\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (The MC5, formed in, Lincoln Park) -> The MC5 (12753ms)\nWho was Abraham Lincoln?\tDavid\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (David, was a member of, the Lincoln Center Directors) -> David (13123ms)\nWho was Abraham Lincoln?\tthe Republicans\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Republicans, elected, Lincoln) -> the Republicans (13431ms)\nWho was Abraham Lincoln?\tFido\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (Fido, was the name of, Abraham Lincoln?s dog) -> Fido (13478ms)\nWho was Abraham Lincoln?\tThe comments\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (The comments, here are similar to, Lincoln) -> The comments (13505ms)\nWho was Abraham Lincoln?\tWarren\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Warren, was elected, Lincoln County Superior Court judge) -> Warren (12629ms)\nWho was Abraham Lincoln?\tPylon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Pylon, is developed by, Richard Lincoln) -> Pylon (13245ms)\nWho was Abraham Lincoln?\tdeacon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (deacon, elected fellow of, Lincoln College) -> deacon (13177ms)\nWho was Abraham Lincoln?\tthe second campaign\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the second campaign, was formed at, Lincoln) -> the second campaign (12597ms)\nWho was Abraham Lincoln?\tRobert Moses\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Robert Moses, created for, Lincoln Center) -> Robert Moses (12683ms)\nWho was Abraham Lincoln?\tFriedrich Schiller\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Friedrich Schiller, helped elect, Abraham Lincoln) -> Friedrich Schiller (13431ms)\nWho was Abraham Lincoln?\ta potential Dred Scott II decision\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was worried about, a potential Dred Scott II decision) -> a potential Dred Scott II decision (12927ms)\nWho was Abraham Lincoln?\tCalifornia\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (California, helped elect, Abraham Lincoln) -> California (12629ms)\nWho was Abraham Lincoln?\tStudents\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Students, did, Lincoln) -> Students (13564ms)\nWho was Abraham Lincoln?\tawareness\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (awareness, did, Lincoln) -> awareness (12864ms)\nWho was Abraham Lincoln?\tThe 4.4 L engine\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (The 4.4 L engine, will likely find its way to, Lincoln) -> The 4.4 L engine (13342ms)\nWho was Abraham Lincoln?\tYoung Lord Carlos Flores\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Young Lord Carlos Flores, described life in, Lincoln Park) -> Young Lord Carlos Flores (13279ms)\nWho was Abraham Lincoln?\tThe jury\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (The jury, found, Lincolns) -> The jury (13245ms)\nWho was Abraham Lincoln?\tpatriotic basis Political losers\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (patriotic basis Political losers, elected, Lincoln 1860) -> patriotic basis Political losers (12990ms)\nWho was Abraham Lincoln?\tthe Black Hawk War form\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Black Hawk War form, elect, Lincoln captain) -> the Black Hawk War form (13030ms)\nWho was Abraham Lincoln?\tPennsylvania\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Pennsylvania, should re-elect, President Abraham Lincoln) -> Pennsylvania (13327ms)\nWho was Abraham Lincoln?\tKievman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Kievman, is a member of, the Lincoln Center Directors Lab) -> Kievman (12990ms)\nWho was Abraham Lincoln?\tthe National Archives\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the National Archives, had found, Lincoln) -> the National Archives (13602ms)\nWho was Abraham Lincoln?\tNAS\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (NAS, was created by, President Lincoln) -> NAS (13664ms)\nWho was Abraham Lincoln?\toffice\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (office, did, Lincoln) -> office (12597ms)\nWho was Abraham Lincoln?\tThe Berry Farm\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Berry Farm, is located south of, Lincoln) -> The Berry Farm (13553ms)\nWho was Abraham Lincoln?\tOXYCONTIN\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (OXYCONTIN, may cause, immunocompromised lincoln) -> OXYCONTIN (13357ms)\nWho was Abraham Lincoln?\tdesperation one final question\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (desperation one final question, killed, Abraham Lincoln) -> desperation one final question (13327ms)\nWho was Abraham Lincoln?\t150 yards\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, 150 yards) -> 150 yards (12707ms)\nWho was Abraham Lincoln?\tNew York Police Superintendent\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (New York Police Superintendent, played a role in, LINCOLN) -> New York Police Superintendent (12927ms)\nWho was Abraham Lincoln?\tNotre Dame\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Notre Dame, played in, Lincoln) -> Notre Dame (13087ms)\nWho was Abraham Lincoln?\tNEBRASKA\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (NEBRASKA, is the capital city of the state or province, lincoln) -> NEBRASKA (13279ms)\nWho was Abraham Lincoln?\tcentral Kentucky\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (central Kentucky, was formed from, Lincoln) -> central Kentucky (13574ms)\nWho was Abraham Lincoln?\tNye\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Nye, was formed into, Lincoln County) -> Nye (13532ms)\nWho was Abraham Lincoln?\tan unstable egotist\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (an unstable egotist, hated, Lincoln) -> an unstable egotist (13573ms)\nWho was Abraham Lincoln?\tCheshunt\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Cheshunt, People born here, Greg Lincoln) -> Cheshunt (13564ms)\nWho was Abraham Lincoln?\tLincoln SUV\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Lincoln SUV, Find, Lincoln parts and accessories Lincoln) -> Lincoln SUV (13387ms)\nWho was Abraham Lincoln?\tethics\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Abraham Lincoln, was once asked about, ethics) -> ethics (13123ms)\nWho was Abraham Lincoln?\tGuelph\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Guelph, People born here, Lincoln Goldie) -> Guelph (13492ms)\nWho was Abraham Lincoln?\tEddy County\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Eddy County, was created from, Lincoln County) -> Eddy County (13630ms)\nWho was Abraham Lincoln?\tLithonia\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Lithonia, People born here, Charley Lincoln) -> Lithonia (13177ms)\nWho was Abraham Lincoln?\texactly\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (exactly, is happening in, Lincoln) -> exactly (13639ms)\nWho was Abraham Lincoln?\tBoeteng\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Boeteng, also played basketball for, Lincoln) -> Boeteng (13402ms)\nWho was Abraham Lincoln?\tthe derringer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the derringer, killed, Lincoln) -> the derringer (13696ms)\nWho was Abraham Lincoln?\tLincoln Grange\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Lincoln Grange, was elected secretary of, Lincoln Pomona Grange) -> Lincoln Grange (13630ms)\nWho was Abraham Lincoln?\tFrank Lloyd Wright?s son\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, invent, lincoln) -> (Frank Lloyd Wright?s son, invented, Lincoln Logs) -> Frank Lloyd Wright?s son (12566ms)\nWho was Abraham Lincoln?\the?s\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (he?s, formed, The Lincoln Club) -> he?s (12864ms)\nWho was Abraham Lincoln?\tthe Missouri Compromise\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Missouri Compromise, helped draw, Lincoln) -> the Missouri Compromise (13049ms)\nWho was Abraham Lincoln?\ta few women\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a few women, helped determine, Mr. Lincoln) -> a few women (13387ms)\nWho was Abraham Lincoln?\tWilliam\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (William, [is] bishop of, Lincoln) -> William (13532ms)\nWho was Abraham Lincoln?\tvisitors\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (visitors, to form, a nuanced view of Lincoln) -> visitors (13212ms)\nWho was Abraham Lincoln?\t3,000 people\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is a small town with about, 3,000 people) -> 3,000 people (13543ms)\nWho was Abraham Lincoln?\tHenry Clay\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Henry Clay, Influenced, Abraham Lincoln) -> Henry Clay (12659ms)\nWho was Abraham Lincoln?\tThe conspirators\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The conspirators, intended to kill, Lincoln) -> The conspirators (12597ms)\nWho was Abraham Lincoln?\tthe audio dart master\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the audio dart master, help out, the Lincoln Chapter) -> the audio dart master (13445ms)\nWho was Abraham Lincoln?\tsurvey\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (survey, finds, > Lincoln Institute) -> survey (13630ms)\nWho was Abraham Lincoln?\tBeverly Brown\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Beverly Brown, is a resident of, Lincoln) -> Beverly Brown (12683ms)\nWho was Abraham Lincoln?\tthe game\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the game, being played in, Lincoln) -> the game (13087ms)\nWho was Abraham Lincoln?\tThe Pla-Mor Ballroom\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Pla-Mor Ballroom, is a staple of, Lincoln`) -> The Pla-Mor Ballroom (12472ms)\nWho was Abraham Lincoln?\tan actor\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (an actor, playing, Abraham Lincoln) -> an actor (13279ms)\nWho was Abraham Lincoln?\tIllinois voters\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Illinois voters, elected, Lincoln) -> Illinois voters (12990ms)\nWho was Abraham Lincoln?\tThe Republicans\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Republicans, are the party of, Lincoln) -> The Republicans (13505ms)\nWho was Abraham Lincoln?\teconomics\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (economics, was a long-time member of, the Lincoln Institute) -> economics (13464ms)\nWho was Abraham Lincoln?\tElihu\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Elihu, played a critical role in, Lincoln) -> Elihu (13505ms)\nWho was Abraham Lincoln?\tthe elite\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the elite, killed, Lincoln) -> the elite (13681ms)\nWho was Abraham Lincoln?\tFreedom\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (Freedom, was inspired by, Lincoln) -> Freedom (12906ms)\nWho was Abraham Lincoln?\tone year\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (young Lincoln?s schooling, was about, one year) -> one year (13087ms)\nWho was Abraham Lincoln?\tMr. Kimrey\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Mr. Kimrey, is a member of, the Lincoln Circle) -> Mr. Kimrey (12535ms)\nWho was Abraham Lincoln?\tTHE WOUND THAT\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (THE WOUND THAT, KILLED, LINCOLN) -> THE WOUND THAT (12597ms)\nWho was Abraham Lincoln?\tThe media\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (The media, had described, Lincoln) -> The media (13417ms)\nWho was Abraham Lincoln?\tMr. Rush\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Mr. Rush, has been a member of, the Lincoln Symphony) -> Mr. Rush (13464ms)\nWho was Abraham Lincoln?\tcourageous poetry\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (courageous poetry, is as much influenced by, Abbey Lincoln) -> courageous poetry (13681ms)\nWho was Abraham Lincoln?\twhats\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (whats, happening in, Lincoln) -> whats (13342ms)\nWho was Abraham Lincoln?\tthe Fall\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Fall, re-elect, Lincoln) -> the Fall (13673ms)\nWho was Abraham Lincoln?\tYou?ll\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (You?ll, find, the impressive Lincoln Center) -> You?ll (13049ms)\nWho was Abraham Lincoln?\t1865\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be from in, $x) -> (Lincoln, from being assassinated in, 1865) -> 1865 (12947ms)\nWho was Abraham Lincoln?\ta great engine\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (a great engine, was developed at, the MIT Lincoln Labs) -> a great engine (12683ms)\nWho was Abraham Lincoln?\tRobinson\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Robinson, is a member of, the Lincoln Chapparal Poets) -> Robinson (13446ms)\nWho was Abraham Lincoln?\tthe 3.7-liter V-6\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the 3.7-liter V-6, found in, Lincolns) -> the 3.7-liter V-6 (13543ms)\nWho was Abraham Lincoln?\tan assassin\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (an assassin, to kill, Lincoln) -> an assassin (12753ms)\nWho was Abraham Lincoln?\tThe 18th\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (The 18th, was formed after, President Lincoln) -> The 18th (12842ms)\nWho was Abraham Lincoln?\tAbolitionists\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Abolitionists, elect, Lincoln) -> Abolitionists (13087ms)\nWho was Abraham Lincoln?\tRape\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Rape, is a member of, the Lincoln County Child Abuse Council) -> Rape (12683ms)\nWho was Abraham Lincoln?\tFisher\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Fisher, helped, develop the Lincoln Highway) -> Fisher (13664ms)\nWho was Abraham Lincoln?\talmost as much anxiety\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (almost as much anxiety, did, Lincoln) -> almost as much anxiety (13639ms)\nWho was Abraham Lincoln?\tStory\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Story, so did, Lincoln) -> Story (12707ms)\nWho was Abraham Lincoln?\tBerber tribes\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Berber tribes, was one of, Lincoln) -> Berber tribes (12970ms)\nWho was Abraham Lincoln?\tarea citizens\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (area citizens, help, Pike-Lincoln Tech Center ? A.) -> area citizens (13011ms)\nWho was Abraham Lincoln?\t?somebody\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (?somebody, else killed, Lincoln?) -> ?somebody (12990ms)\nWho was Abraham Lincoln?\tJames Chimombes daughter\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (James Chimombes daughter, has also described, Lincoln) -> James Chimombes daughter (13647ms)\nWho was Abraham Lincoln?\tArlington National Cemetery\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Arlington National Cemetery, People interred here, Evelyn Lincoln) -> Arlington National Cemetery (13656ms)\nWho was Abraham Lincoln?\tMr. Obama\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Mr. Obama, did mention, Lincoln) -> Mr. Obama (13068ms)\nWho was Abraham Lincoln?\ta vampire\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (a vampire, kills, Abraham Lincoln 's mother) -> a vampire (13295ms)\nWho was Abraham Lincoln?\tthe war\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the war, re-elected, Lincoln) -> the war (12927ms)\nWho was Abraham Lincoln?\tthe Trojans\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the Trojans, have played a game in, Lincoln) -> the Trojans (13593ms)\nWho was Abraham Lincoln?\tApril 14\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (April 14, was the name of, Abraham Lincoln) -> April 14 (12659ms)\nWho was Abraham Lincoln?\t2009 David\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (2009 David, is helping celebrate, Lincoln?s 200th birthday) -> 2009 David (12970ms)\nWho was Abraham Lincoln?\tthe source\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (the source, had influenced, Lincoln) -> the source (12885ms)\nWho was Abraham Lincoln?\tFielderview\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Fielderview, has been developed by, Lincoln Ventures Ltd) -> Fielderview (13564ms)\nWho was Abraham Lincoln?\tS?o Br?s do Sua?u?\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (S?o Br?s do Sua?u?, People born here, Lincoln) -> S?o Br?s do Sua?u? (12990ms)\nWho was Abraham Lincoln?\tLaRouche\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (LaRouche, defines, Lincoln) -> LaRouche (13194ms)\nWho was Abraham Lincoln?\tThe Republican Party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (The Republican Party, elected, Lincoln) -> The Republican Party (12885ms)\nWho was Abraham Lincoln?\tA weed\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (A weed, killed, Abraham Lincoln 's mother) -> A weed (12990ms)\nWho was Abraham Lincoln?\tGoldsmith\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Goldsmith, is the antithesis of, Lincoln) -> Goldsmith (13387ms)\nWho was Abraham Lincoln?\tSt . Raphael\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (St . Raphael, will play, Lincoln) -> St . Raphael (13543ms)\nWho was Abraham Lincoln?\tMeridian\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Meridian, People born here, Alex Lincoln) -> Meridian (13492ms)\nWho was Abraham Lincoln?\tThe debates\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The debates, help make, Lincoln) -> The debates (12947ms)\nWho was Abraham Lincoln?\tSalt Creek\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (Salt Creek, has caused frequent damage in, Lincoln) -> Salt Creek (13647ms)\nWho was Abraham Lincoln?\tlast May\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (last May, caused a stir at, 23rd and Lincoln) -> last May (13564ms)\nWho was Abraham Lincoln?\tthe United Way\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (the United Way, am a Board Member of, the Lincoln Children) -> the United Way (13212ms)\nWho was Abraham Lincoln?\ttwo hours\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is located about, two hours) -> two hours (13519ms)\nWho was Abraham Lincoln?\tAnthony Mackie\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Anthony Mackie, plays, Lincoln) -> Anthony Mackie (13703ms)\nWho was Abraham Lincoln?\temancipation\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Abraham Lincoln, had been cautious about, emancipation) -> emancipation (13573ms)\nWho was Abraham Lincoln?\tThe question\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The question, did, Lincoln) -> The question (13478ms)\nWho was Abraham Lincoln?\tDaniel Chester French\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Daniel Chester French, created, the Lincoln Memorial sculpture) -> Daniel Chester French (12970ms)\nWho was Abraham Lincoln?\t?If Booth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (?If Booth, killed, Lincoln) -> ?If Booth (12683ms)\nWho was Abraham Lincoln?\ta poor EE student\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (a poor EE student, find parts in, Lincoln) -> a poor EE student (13141ms)\nWho was Abraham Lincoln?\tThe block\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (The block, was likely quarried right here in, Lincoln) -> The block (13417ms)\nWho was Abraham Lincoln?\tOK\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (OK, killed, Abraham Lincoln) -> OK (13387ms)\nWho was Abraham Lincoln?\tCheltenham\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Cheltenham, plays hosts to, Lincoln) -> Cheltenham (13519ms)\nWho was Abraham Lincoln?\tTriMet\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (TriMet, hate, Lincoln Street) -> TriMet (12535ms)\nWho was Abraham Lincoln?\tDirectory\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Directory, find a dentist in, Lincoln) -> Directory (13543ms)\nWho was Abraham Lincoln?\tthe breast\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the breast, was found in, Lincoln) -> the breast (13311ms)\nWho was Abraham Lincoln?\tEnloe\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Enloe, found, Tom Lincoln) -> Enloe (13593ms)\nWho was Abraham Lincoln?\tThe system\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (The system, was initiated by, President Abraham Lincoln) -> The system (13245ms)\nWho was Abraham Lincoln?\tMaryland\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Maryland, People born here, Lincoln Plumer) -> Maryland (13030ms)\nWho was Abraham Lincoln?\tTelltale Games\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Telltale Games, Games Developed, Sam & Max: Abe Lincoln Must Die!) -> Telltale Games (13583ms)\nWho was Abraham Lincoln?\tIron Consulting Lincoln\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Iron Consulting Lincoln, Find, the lowest cost Lincoln) -> Iron Consulting Lincoln (13630ms)\nWho was Abraham Lincoln?\tAnswer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Answer, does the use of, Lincoln) -> Answer (13647ms)\nWho was Abraham Lincoln?\tpolice officers\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (police officers, discovered the body of, Mrs. Lincoln) -> police officers (12535ms)\nWho was Abraham Lincoln?\tInteresting features\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (Interesting features, are some stories of, Abraham Lincoln) -> Interesting features (12707ms)\nWho was Abraham Lincoln?\tConan O?Brien\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Conan O?Brien, plays, a Lincoln?s son) -> Conan O?Brien (13212ms)\nWho was Abraham Lincoln?\tstudents\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (students, create, mini Lincoln books) -> students (13387ms)\nWho was Abraham Lincoln?\tgoing-away-from-home ?\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (going-away-from-home ?, could find, Lincoln) -> going-away-from-home ? (13445ms)\nWho was Abraham Lincoln?\tChief Justice Williams\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Chief Justice Williams, examines the influence of, Lincoln) -> Chief Justice Williams (12629ms)\nWho was Abraham Lincoln?\tDC\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (DC, so did, Lincoln) -> DC (13068ms)\nWho was Abraham Lincoln?\tArt Deco hotels\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Art Deco hotels, helped transform, Lincoln Road) -> Art Deco hotels (12659ms)\nWho was Abraham Lincoln?\tFrancis\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Francis, are elected with, Lincoln) -> Francis (13372ms)\nWho was Abraham Lincoln?\tPolitico\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Politico, describes as, a Lincoln-Douglas style debate) -> Politico (13445ms)\nWho was Abraham Lincoln?\tSAGE\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (SAGE, had been developed by, the Lincoln Laboratory) -> SAGE (13519ms)\nWho was Abraham Lincoln?\tthe U.S. Abolition Movement\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (the U.S. Abolition Movement, initiated by, President Lincoln) -> the U.S. Abolition Movement (13011ms)\nWho was Abraham Lincoln?\tCompromise proponents\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Compromise proponents, Does, Lincoln) -> Compromise proponents (13123ms)\nWho was Abraham Lincoln?\ta new party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a new party, was able to elect, Abraham Lincoln) -> a new party (13638ms)\nWho was Abraham Lincoln?\tOakland\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Oakland, People born here, Howard Lincoln) -> Oakland (13647ms)\nWho was Abraham Lincoln?\t30 miles\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (the Lincoln, was only about, 30 miles) -> 30 miles (12885ms)\nWho was Abraham Lincoln?\tKentucky\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Kentucky, was formed from, Green and Lincoln Counties) -> Kentucky (13647ms)\nWho was Abraham Lincoln?\tThe guilty party\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The guilty party, is the Party of, Lincoln) -> The guilty party (13357ms)\nWho was Abraham Lincoln?\tthe same distance\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, the same distance) -> the same distance (13681ms)\nWho was Abraham Lincoln?\ta local school teacher\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a local school teacher, had helped, Lincoln) -> a local school teacher (13688ms)\nWho was Abraham Lincoln?\tcharges\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was passionately defensive about, charges) -> charges (13664ms)\nWho was Abraham Lincoln?\tChase\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Chase, helped, Lincoln) -> Chase (13492ms)\nWho was Abraham Lincoln?\tAlexander\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Alexander, [is] bishop of, Lincoln) -> Alexander (12864ms)\nWho was Abraham Lincoln?\tSimmons\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Simmons, develop, Lincoln Area Development Partnership) -> Simmons (13639ms)\nWho was Abraham Lincoln?\tthe Evening Post\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (the Evening Post, influenced, Lincoln) -> the Evening Post (12683ms)\nWho was Abraham Lincoln?\tReading\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Reading, People born here, Keith Lincoln) -> Reading (12504ms)\nWho was Abraham Lincoln?\tCenter Hall\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Center Hall, was the site of, Lincoln) -> Center Hall (12775ms)\nWho was Abraham Lincoln?\ta Legend Pat Garrett\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a Legend Pat Garrett, was elected Sheriff of, Lincoln County) -> a Legend Pat Garrett (13464ms)\nWho was Abraham Lincoln?\tThe rest\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The rest, were created by, Bryan Lincoln) -> The rest (13704ms)\nWho was Abraham Lincoln?\tThe New Deity\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (The New Deity, was inspired by, local Lincoln events) -> The New Deity (13621ms)\nWho was Abraham Lincoln?\tORG\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (ORG, will be playing their first away game in, Lincoln) -> ORG (13431ms)\nWho was Abraham Lincoln?\tIndian\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Indian, go over well here in, Lincoln) -> Indian (12776ms)\nWho was Abraham Lincoln?\tan illicit cloning company\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (an illicit cloning company, needs the help of, Abraham Lincoln) -> an illicit cloning company (13492ms)\nWho was Abraham Lincoln?\tseveral new vehicles\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (several new vehicles, are being developed for, Lincoln) -> several new vehicles (13543ms)\nWho was Abraham Lincoln?\tMonday afternoon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Monday afternoon, \"found, Lincoln desperately homesick) -> Monday afternoon (13279ms)\nWho was Abraham Lincoln?\tSchoonover\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Schoonover, created many studies of, Lincoln) -> Schoonover (13141ms)\nWho was Abraham Lincoln?\tstyle\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Park, is about, style) -> style (13478ms)\nWho was Abraham Lincoln?\tMs. Field\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Ms. Field, was a member of, the original Lincoln Center Company) -> Ms. Field (12753ms)\nWho was Abraham Lincoln?\ta cousin\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is all about, a cousin) -> a cousin (12820ms)\nWho was Abraham Lincoln?\tTarts\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Tarts, also helped establish, Lincolns) -> Tarts (13011ms)\nWho was Abraham Lincoln?\tthe photo\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the photo, was created after, Lincoln?s assassination) -> the photo (13603ms)\nWho was Abraham Lincoln?\tOak Ridge Cemetery\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Oak Ridge Cemetery, People interred here, Abraham Lincoln) -> Oak Ridge Cemetery (12820ms)\nWho was Abraham Lincoln?\ta person\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (a person, here comes, Abraham Lincoln) -> a person (12566ms)\nWho was Abraham Lincoln?\tthe 1864 Presidential campaign\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, the 1864 Presidential campaign) -> the 1864 Presidential campaign (12566ms)\nWho was Abraham Lincoln?\tThe IRS\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The IRS, was created by, President Abraham Lincoln) -> The IRS (13105ms)\nWho was Abraham Lincoln?\tthe law\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the law, is here articulated by, Lincoln) -> the law (13696ms)\nWho was Abraham Lincoln?\tThe Washington officials\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The Washington officials, did arrive at, Lincoln) -> The Washington officials (13123ms)\nWho was Abraham Lincoln?\tHenry\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Henry, [is] earl of, Lincoln) -> Henry (12927ms)\nWho was Abraham Lincoln?\tLane\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Lane, helped to secure, Abraham Lincoln) -> Lane (13688ms)\nWho was Abraham Lincoln?\t16,000 books\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is the subject of about, 16,000 books) -> 16,000 books (13030ms)\nWho was Abraham Lincoln?\tThe USDA\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The USDA, was created by, Abraham Lincoln) -> The USDA (13311ms)\nWho was Abraham Lincoln?\tany pride\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (any pride, was one of, Lincoln) -> any pride (12990ms)\nWho was Abraham Lincoln?\tThe Engineering School\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The Engineering School, will help ensure, Lincoln) -> The Engineering School (13177ms)\nWho was Abraham Lincoln?\tSpringfield\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Springfield, People born here, Tad Lincoln) -> Springfield (12820ms)\nWho was Abraham Lincoln?\tmuch more\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (much more, was happening in, Lincoln?s life) -> much more (13387ms)\nWho was Abraham Lincoln?\tAvalon\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Avalon, [is] bishop of, Lincoln) -> Avalon (12753ms)\nWho was Abraham Lincoln?\tBrian A. Skiff\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Brian A. Skiff, Astronomical objects discovered, 3153 Lincoln) -> Brian A. Skiff (13639ms)\nWho was Abraham Lincoln?\tThanksgiving holiday\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (Thanksgiving holiday, was initiated by, Abraham Lincoln) -> Thanksgiving holiday (13563ms)\nWho was Abraham Lincoln?\ta concept\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (a concept, influenced, Abraham Lincoln) -> a concept (12629ms)\nWho was Abraham Lincoln?\tway\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (way, here is one from, Abraham Lincoln) -> way (13696ms)\nWho was Abraham Lincoln?\tcattle\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln County, is about, cattle) -> cattle (12597ms)\nWho was Abraham Lincoln?\tOctober 10 , 2010\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (October 10 , 2010, discovered, the damaged Lincoln Navigator) -> October 10 , 2010 (12906ms)\nWho was Abraham Lincoln?\tblue card ref\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (blue card ref, was defined by, lincoln labs) -> blue card ref (13696ms)\nWho was Abraham Lincoln?\ta new winter home\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (a new winter home, created, the Lincoln Road shopping area) -> a new winter home (13656ms)\nWho was Abraham Lincoln?\tSpencer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Spencer, plays with, Lincoln) -> Spencer (13543ms)\nWho was Abraham Lincoln?\tLongland\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Longland, [is] bishop of, Lincoln) -> Longland (13049ms)\nWho was Abraham Lincoln?\tConan O'Brien\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Conan O'Brien, Influenced By, Abraham Lincoln) -> Conan O'Brien (13387ms)\nWho was Abraham Lincoln?\t438-446 Page\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (438-446 Page, created, February 2012 Ataxia UK, Lincoln House) -> 438-446 Page (13159ms)\nWho was Abraham Lincoln?\tthe Jefferson Davis wing\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (the Jefferson Davis wing, also hate, Lincoln) -> the Jefferson Davis wing (13647ms)\nWho was Abraham Lincoln?\tLee?s Flower & Card Shop\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Lee?s Flower & Card Shop, helped decorate, the Lincoln Room) -> Lee?s Flower & Card Shop (13519ms)\nWho was Abraham Lincoln?\tthe sky\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the sky, found a video from, Lincoln) -> the sky (13612ms)\nWho was Abraham Lincoln?\tThe regiment\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (The regiment, was formed after, President Lincoln) -> The regiment (13245ms)\nWho was Abraham Lincoln?\tthe process\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the process, continues to develop, the Lincoln Park Master Plan) -> the process (13492ms)\nWho was Abraham Lincoln?\twords\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (words, did, Lincoln) -> words (13593ms)\nWho was Abraham Lincoln?\tRochester\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Rochester, People born here, Elmo Lincoln) -> Rochester (13262ms)\nWho was Abraham Lincoln?\tmountaineering\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (mountaineering, is such an integral part of, Lincoln) -> mountaineering (13279ms)\nWho was Abraham Lincoln?\tPall Mall\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Pall Mall, People born here, Lincoln Davis) -> Pall Mall (13664ms)\nWho was Abraham Lincoln?\tThe new bishop\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The new bishop, was St Hugh of, Lincoln) -> The new bishop (12535ms)\nWho was Abraham Lincoln?\tentrepreneur\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (entrepreneur, helped develop, the Lincoln Highway) -> entrepreneur (12927ms)\nWho was Abraham Lincoln?\tthe fleeing Communists\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the fleeing Communists, found so attractive in, Lincoln) -> the fleeing Communists (13664ms)\nWho was Abraham Lincoln?\tProvidence\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Providence, People born here, Lincoln Chafee) -> Providence (12842ms)\nWho was Abraham Lincoln?\tThe bullet\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The bullet, killed, Lincoln) -> The bullet (12927ms)\nWho was Abraham Lincoln?\tthe top\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the top, is a portrait of, Lincoln) -> the top (13372ms)\nWho was Abraham Lincoln?\tthe same opinion\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Mr. Lincoln, was about of, the same opinion) -> the same opinion (13704ms)\nWho was Abraham Lincoln?\tProfessor Merrell Gage\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Professor Merrell Gage, describes the life of, Abraham Lincoln) -> Professor Merrell Gage (12927ms)\nWho was Abraham Lincoln?\t1913 Fisher\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (1913 Fisher, helped develop, the Lincoln Highway) -> 1913 Fisher (13543ms)\nWho was Abraham Lincoln?\tAuthentic Polish food\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Authentic Polish food, can be found on, Lincoln) -> Authentic Polish food (13519ms)\nWho was Abraham Lincoln?\tE & O\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (E & O, has been involved in, the Lincoln) -> E & O (13011ms)\nWho was Abraham Lincoln?\tRobert Sherwood?s\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Robert Sherwood?s, play, Abe Lincoln) -> Robert Sherwood?s (13656ms)\nWho was Abraham Lincoln?\tfrench fries\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (french fries, formed like, Abraham Lincoln) -> french fries (12683ms)\nWho was Abraham Lincoln?\tthe Caroverine molecule\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the Caroverine molecule, was developed by, Lincoln Pharma) -> the Caroverine molecule (13402ms)\nWho was Abraham Lincoln?\tMcCorkle\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (McCorkle, played, Lincoln Center) -> McCorkle (13478ms)\nWho was Abraham Lincoln?\tPost-war reconciliation\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Post-war reconciliation, was the defeat of, Lincoln) -> Post-war reconciliation (12927ms)\nWho was Abraham Lincoln?\tThe Civil War\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (The Civil War, had already defined, Abraham Lincoln?s presidency) -> The Civil War (13602ms)\nWho was Abraham Lincoln?\t150 miles\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is located about, 150 miles) -> 150 miles (12566ms)\nWho was Abraham Lincoln?\tPrimer 0.5\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Primer 0.5, had been originally developed by, Lincoln ,S.E.) -> Primer 0.5 (12775ms)\nWho was Abraham Lincoln?\tThe kidney-in-a-cartridge\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The kidney-in-a-cartridge, is being developed by, Lincoln) -> The kidney-in-a-cartridge (12798ms)\nWho was Abraham Lincoln?\tcancer\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (cancer, would have killed, Lincoln) -> cancer (13664ms)\nWho was Abraham Lincoln?\tevent\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (event, will be happening in, Lincoln Park) -> event (12566ms)\nWho was Abraham Lincoln?\tthe presidency\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (the presidency, was the defining moment of, Lincoln?s life) -> the presidency (13262ms)\nWho was Abraham Lincoln?\tChildren\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Children, can also create, their own Abraham Lincoln) -> Children (12683ms)\nWho was Abraham Lincoln?\tShelley\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Shelley, is a member of, The Lincoln Center Director) -> Shelley (13431ms)\nWho was Abraham Lincoln?\tConfederate sympathizer Booth\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Confederate sympathizer Booth, killed, Lincoln) -> Confederate sympathizer Booth (13402ms)\nWho was Abraham Lincoln?\tCasey County\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Casey County, was formed from, Lincoln Co.) -> Casey County (13068ms)\nWho was Abraham Lincoln?\tStokes ? coffee\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Stokes ? coffee, is roasted here in, Lincoln) -> Stokes ? coffee (12947ms)\nWho was Abraham Lincoln?\t35 min west\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is a small town about, 35 min west) -> 35 min west (13141ms)\nWho was Abraham Lincoln?\tthe exhibit\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the exhibit, also will find a photograph of, Lincoln) -> the exhibit (13673ms)\nWho was Abraham Lincoln?\tMosley\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Mosley, plays at, Lincoln) -> Mosley (12990ms)\nWho was Abraham Lincoln?\tMike Reiss\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Mike Reiss, TV programs Created, Hard Drinkin' Lincoln) -> Mike Reiss (13681ms)\nWho was Abraham Lincoln?\ta big fan\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (a big fan, has described, Lincoln?s life) -> a big fan (13656ms)\nWho was Abraham Lincoln?\tThe Daily Standard\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (The Daily Standard, described, Lincoln) -> The Daily Standard (13087ms)\nWho was Abraham Lincoln?\tStraus\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (Straus, was named principal of, Lincoln Middle School) -> Straus (13342ms)\nWho was Abraham Lincoln?\tthe role music\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the role music, played in, Lincoln?s life) -> the role music (13177ms)\nWho was Abraham Lincoln?\tFord\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Ford, is doing with, Lincoln) -> Ford (13638ms)\nWho was Abraham Lincoln?\tLPED\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (LPED, formed, the Lincoln Area Development Partnership) -> LPED (13295ms)\nWho was Abraham Lincoln?\t?Robert Parsons\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (?Robert Parsons, does play, Lincoln) -> ?Robert Parsons (13681ms)\nWho was Abraham Lincoln?\tPeter Horbury\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Peter Horbury, created, Lincoln?s new design language) -> Peter Horbury (13311ms)\nWho was Abraham Lincoln?\tThe firm\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The firm, develop commercial properties in, Lincoln) -> The firm (13505ms)\nWho was Abraham Lincoln?\tThe design\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The design, was created by, Lincoln Cushing) -> The design (13602ms)\nWho was Abraham Lincoln?\tthe country\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was adamant about keeping, the country) -> the country (13704ms)\nWho was Abraham Lincoln?\tGavin Hoyte\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Gavin Hoyte, helped, his Lincoln side) -> Gavin Hoyte (13673ms)\nWho was Abraham Lincoln?\tDaniel Day-Lewis\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Daniel Day-Lewis, will play, Lincoln) -> Daniel Day-Lewis (13105ms)\nWho was Abraham Lincoln?\tthe debate\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the debate, indirectly helped put, Abraham Lincoln) -> the debate (13656ms)\nWho was Abraham Lincoln?\tBadly Drawn Boy\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Badly Drawn Boy, play, Lincoln Hall) -> Badly Drawn Boy (12864ms)\nWho was Abraham Lincoln?\tThe three wins\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The three wins, helped, Lincoln move) -> The three wins (12707ms)\nWho was Abraham Lincoln?\tGriessman\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Griessman, has done for, Lincoln) -> Griessman (13177ms)\nWho was Abraham Lincoln?\tthe American people\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the American people, re-elected, Lincoln) -> the American people (13681ms)\nWho was Abraham Lincoln?\tSouth Carolinian militia units\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (South Carolinian militia units, did join, Lincoln) -> South Carolinian militia units (13647ms)\nWho was Abraham Lincoln?\tthe Stacks\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (the Stacks, is the story of, Lincoln Cabinee) -> the Stacks (13630ms)\nWho was Abraham Lincoln?\tleadership\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (leadership, did, Lincoln) -> leadership (12864ms)\nWho was Abraham Lincoln?\tStanton\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Stanton, later described, Lincoln) -> Stanton (13478ms)\nWho was Abraham Lincoln?\tMartin\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Martin, is a board member of, the Lincoln Society) -> Martin (13630ms)\nWho was Abraham Lincoln?\t20 miles\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (( Lincoln, is about, 20 miles) -> 20 miles (13279ms)\nWho was Abraham Lincoln?\tSeth Gabel\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Seth Gabel, plays, Lincoln Lee) -> Seth Gabel (12947ms)\nWho was Abraham Lincoln?\tSaint James, Trinidad and Tobago\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Saint James, Trinidad and Tobago, People born here, Lincoln Phillips) -> Saint James, Trinidad and Tobago (12566ms)\nWho was Abraham Lincoln?\tLos Angeles\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Los Angeles, People born here, Lincoln Stalmaster) -> Los Angeles (13630ms)\nWho was Abraham Lincoln?\tthe restaurants\t0.222222222222\tWho was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the restaurants, you?ll only find those things in, Lincoln) -> the restaurants (13564ms)\nWho was Abraham Lincoln?\tnatural rights\t0.222222222222\tWho was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was right about, natural rights) -> natural rights (12927ms)\nWhen was Algeria colonized?\tthe 19th century\t-0.11111111111099997\tWhen was Algeria colonized? -> $x: (algeria, be colonize in, $x) -> (Algeria, was colonized in, the 19th century) -> the 19th century (556ms)\nWhen was Algeria colonized?\tthe French\t-0.999999999995\tWhen was Algeria colonized? -> $x: (algeria, be colonize by, $x) -> (Algeria, has been colonized by, the French) -> the French (557ms)\nWhen was Algeria colonized?\tThe French\t-1.333333333327\tWhen was Algeria colonized? -> $x: ($x, colonize, algeria) -> (The French, began colonizing, Algeria) -> The French (557ms)\nWhen was Algeria colonized?\tFrance\t-1.333333333327\tWhen was Algeria colonized? -> $x: ($x, colonize, algeria) -> (France, began to colonize, Algeria) -> France (557ms)\nWhen was Algeria colonized?\t1832 France\t-1.333333333327\tWhen was Algeria colonized? -> $x: ($x, colonize, algeria) -> (1832 France, colonized, Algeria) -> 1832 France (557ms)\nWhat is Dick Clark's date of birth?\tClark\t-0.555555555557\tWhat is Dick Clark's date of birth? -> $x: ($x, start, dick clark) -> (Clark, started, Dick Clark Productions) -> Clark (821ms)\nWhat is Dick Clark's date of birth?\tthe scene\t-0.555555555557\tWhat is Dick Clark's date of birth? -> $x: ($x, start, dick clark) -> (the scene, started, Dick Clark) -> the scene (821ms)\nWhat is Dick Clark's date of birth?\tThe Twist\t-0.555555555557\tWhat is Dick Clark's date of birth? -> $x: ($x, found, dick clark) -> (The Twist, found a fan in, American Bandstand host Dick Clark) -> The Twist (820ms)\nWho did the Prince Edward marry?\tThe couple\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (The couple, were married in, Prince Edward County) -> The couple (934ms)\nWho did the Prince Edward marry?\tthe Countess\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (the Countess, is married to, Prince Edward) -> the Countess (907ms)\nWho did the Prince Edward marry?\tSophie Rhys\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Sophie Rhys, married, Prince Edward) -> Sophie Rhys (908ms)\nWho did the Prince Edward marry?\tDenmark\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Denmark, married, Prince Albert Edward) -> Denmark (908ms)\nWho did the Prince Edward marry?\tSophie Rhys-Jones\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Sophie Rhys-Jones, married, Prince Edward) -> Sophie Rhys-Jones (908ms)\nWho did the Prince Edward marry?\tPrincess Alexandra\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Princess Alexandra, marries, Prince Edward) -> Princess Alexandra (907ms)\nWho did the Prince Edward marry?\tthe American\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (the American, married, Prince Edward) -> the American (934ms)\nWho did the Prince Edward marry?\tCan gays and lesbians\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Can gays and lesbians, get married on, Prince Edward Island) -> Can gays and lesbians (934ms)\nWho did the Prince Edward marry?\tGiselle\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Giselle, wants to marry, Prince Edward) -> Giselle (934ms)\nWho did the Prince Edward marry?\tSophie\t-0.555555555561\tWho did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Sophie, married, Prince Edward) -> Sophie (934ms)\nWho did the Prince Edward marry?\tJoan\t-0.999999999999\tWho did the Prince Edward marry? -> $x: (prince edward, marry, $x) -> (Prince Edward, eventually married, Joan) -> Joan (962ms)\nWho did the Prince Edward marry?\ta German princess\t-0.999999999999\tWho did the Prince Edward marry? -> $x: (prince edward, marry, $x) -> (the English Prince Edward, had married, a German princess) -> a German princess (962ms)\nWhen was the White House built?\tthe capital\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (The White House, is the oldest federal building in, the capital) -> the capital (1482ms)\nWhen was the White House built?\tsteps\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (beautiful white gray stone houses, are built in, steps) -> steps (1241ms)\nWhen was the White House built?\t1902\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (the White House, was originally built in, 1902) -> 1902 (1482ms)\nWhen was the White House built?\t1890\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (The Little White House, was built in, 1890) -> 1890 (1932ms)\nWhen was the White House built?\tthe same year\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (The William White House, was apparently built in, the same year) -> the same year (1241ms)\nWhen was the White House built?\tWWII\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (the White House East Wing, was built in, WWII) -> WWII (1482ms)\nWhen was the White House built?\t1822\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (white house, were built in, 1822) -> 1822 (1482ms)\nWhen was the White House built?\ta grid system\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (It?s white houses, are built in, a grid system) -> a grid system (1369ms)\nWhen was the White House built?\tdc\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (White house, is a building located in the city, dc) -> dc (1369ms)\nWhen was the White House built?\t1943\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (?The White House ?, was built in, 1943) -> 1943 (1369ms)\nWhen was the White House built?\t1904\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (The white clapboard house, was built in, 1904) -> 1904 (1241ms)\nWhen was the White House built?\t1868\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (The White County Court House, was built in, 1868) -> 1868 (1369ms)\nWhen was the White House built?\tWashington\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (the White House, was built in, Washington) -> Washington (1241ms)\nWhen was the White House built?\tlarge part\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (the White House, were built in, large part) -> large part (1241ms)\nWhen was the White House built?\tthe District\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (The White House, is the oldest public building in, the District) -> the District (1482ms)\nWhen was the White House built?\tDecember\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (The White House, was built in, December) -> December (1369ms)\nWhen was the White House built?\t1936\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (the white house, was built in, 1936) -> 1936 (1369ms)\nWhen was the White House built?\tthe 1700s\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (his big , white farm house, was built in, the 1700s) -> the 1700s (1240ms)\nWhen was the White House built?\t1792\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (The White House, was built in, 1792) -> 1792 (1482ms)\nWhen was the White House built?\t1845-46\t1.888888888887\tWhen was the White House built? -> $x: (white house, be build in, $x) -> (a Georgian style white clapboard house, was built in, 1845-46) -> 1845-46 (1482ms)\nWhen was the White House built?\tthree themes\t1.333333333335\tWhen was the White House built? -> $x: (white house, be build on, $x) -> (White House and Department, is built on, three themes) -> three themes (1932ms)\nWhen was the White House built?\ta hill\t1.333333333335\tWhen was the White House built? -> $x: (white house, be build on, $x) -> (The typical little white houses, are built on, a hill) -> a hill (1932ms)\nWhen was the White House built?\tthe hillside\t1.333333333335\tWhen was the White House built? -> $x: (white house, be build on, $x) -> (A dozen white-washed houses, are built on, the hillside) -> the hillside (1932ms)\nWhen was the White House built?\tCollege Drive\t1.333333333335\tWhen was the White House built? -> $x: (white house, be build on, $x) -> ('the white house, was built on, College Drive) -> College Drive (1932ms)\nWhen was the White House built?\tthe back\t1.333333333335\tWhen was the White House built? -> $x: (white house, be build on, $x) -> (Their White House, was built on, the back) -> the back (1932ms)\nWhen was the White House built?\tFt\t0.777777777779\tWhen was the White House built? -> $x: (white house, be discover in, $x) -> (Deputy White House Counsel Vince Foster, was discovered in, Ft) -> Ft (2018ms)\nWhen was the White House built?\tthe cellar\t0.777777777779\tWhen was the White House built? -> $x: (white house, be discover in, $x) -> (red and white house wine, were discovered in, the cellar) -> the cellar (1932ms)\nWhen was the White House built?\tthe foundation\t0.777777777778\tWhen was the White House built? -> $x: (vice president, be build on, $x) -> (Executive Vice President, are building on, the foundation) -> the foundation (2018ms)\nWhen was the White House built?\tthe Globe?s concrete roof\t0.6666666666669999\tWhen was the White House built? -> $x: (staffer, be build on, $x) -> (staffers, would be built on, the Globe?s concrete roof) -> the Globe?s concrete roof (2018ms)\nWhen was the White House built?\ta long series\t0.6666666666669999\tWhen was the White House built? -> $x: (staffer, be build on, $x) -> (a key Council staffer, was built on, a long series) -> a long series (2018ms)\nWhen was the White House built?\tbehalf of human dignity\t0.555555555557\tWhen was the White House built? -> $x: (white house, build on, $x) -> (the White House, will build on, behalf of human dignity) -> behalf of human dignity (2900ms)\nWhen was the White House built?\trocks\t0.555555555557\tWhen was the White House built? -> $x: (white house, build on, $x) -> (tall white houses, built on, rocks) -> rocks (2888ms)\nWhen was the White House built?\tthe d?tente policy\t0.555555555557\tWhen was the White House built? -> $x: (white house, build on, $x) -> (the White House, determined to build on, the d?tente policy) -> the d?tente policy (2896ms)\nWhen was the White House built?\tthe rectorate car park\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (the Black & White House, was located in, the rectorate car park) -> the rectorate car park (2888ms)\nWhen was the White House built?\tdowntown Keystone\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (White House Resort, is located in, downtown Keystone) -> downtown Keystone (2892ms)\nWhen was the White House built?\tFort Worth\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> ($ 161 Texas White House, is located in, Fort Worth) -> Fort Worth (2903ms)\nWhen was the White House built?\tthe shape\t0.555555555557\tWhen was the White House built? -> $x: (white house, be construct in, $x) -> (the White House, is constructed in, the shape) -> the shape (2128ms)\nWhen was the White House built?\tthe past ? e.g.\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make in, $x) -> (the White House, might have been made in, the past ? e.g.) -> the past ? e.g. (2896ms)\nWhen was the White House built?\tadvance\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make in, $x) -> (the White House, should be made as far in, advance) -> advance (2745ms)\nWhen was the White House built?\tthe city\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (The White House, is located in, the city) -> the city (2903ms)\nWhen was the White House built?\tpreparations\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make in, $x) -> (the White House, was actively involved in making, preparations) -> preparations (2903ms)\nWhen was the White House built?\tthe West End\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (The White House, is located in, the West End) -> the West End (2630ms)\nWhen was the White House built?\tSumner County\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (White House, is located partially in, Sumner County) -> Sumner County (2888ms)\nWhen was the White House built?\tJuneau\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (the Northern White House, will be located in, Juneau) -> Juneau (2330ms)\nWhen was the White House built?\tHeritage Society\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (This white house, is located in, Heritage Society) -> Heritage Society (2903ms)\nWhen was the White House built?\tthe past\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make in, $x) -> (the White House, might have been made in, the past) -> the past (2018ms)\nWhen was the White House built?\tZIP code\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (the White House, is located in, ZIP code) -> ZIP code (2630ms)\nWhen was the White House built?\tGate Street\t0.555555555557\tWhen was the White House built? -> $x: (white house, build on, $x) -> (the white frame house Elijah Walker, built on, Gate Street) -> Gate Street (2900ms)\nWhen was the White House built?\tthe core district\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (The White House, is ideally located in, the core district) -> the core district (2888ms)\nWhen was the White House built?\tthe heart\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (The White House Accommodation, is located in, the heart) -> the heart (2900ms)\nWhen was the White House built?\tthe centre\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (The White House Hotel Bowness, is located in, the centre) -> the centre (2892ms)\nWhen was the White House built?\tthe petition\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make on, $x) -> (an official White House statement, will be made on, the petition) -> the petition (2896ms)\nWhen was the White House built?\tconjunction\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make in, $x) -> (The White House announcement, was made in, conjunction) -> conjunction (2824ms)\nWhen was the White House built?\tWednesday\t0.555555555557\tWhen was the White House built? -> $x: (white house, be finish on, $x) -> (the White House Situation Room, was just finishing on, Wednesday) -> Wednesday (2903ms)\nWhen was the White House built?\tsuite 225\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (White House | Black Market, is located in, suite 225) -> suite 225 (2824ms)\nWhen was the White House built?\tPilar\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (This modern white house, is located in, Pilar) -> Pilar (2896ms)\nWhen was the White House built?\tPine Mountain\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> ('s Little White House, are located in, Pine Mountain) -> Pine Mountain (2900ms)\nWhen was the White House built?\tthe 1970s\t0.555555555557\tWhen was the White House built? -> $x: (white house, start in, $x) -> (the White House lawn, started back in, the 1970s) -> the 1970s (2330ms)\nWhen was the White House built?\tBangor\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (Best Western White House Inn, is located in, Bangor) -> Bangor (2892ms)\nWhen was the White House built?\tJackson Hole\t0.555555555557\tWhen was the White House built? -> $x: (white house, build in, $x) -> (a white-painted ranch house, built in, Jackson Hole) -> Jackson Hole (2363ms)\nWhen was the White House built?\tOak Park\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (the White House, is n?t located in, Oak Park) -> Oak Park (2896ms)\nWhen was the White House built?\tthe Blackwatch Building\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (the White House, are now located in, the Blackwatch Building) -> the Blackwatch Building (2745ms)\nWhen was the White House built?\tthe home\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (temporary White House, was located in, the home) -> the home (2903ms)\nWhen was the White House built?\tIran\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make on, $x) -> (the White House, is making false statements on, Iran) -> Iran (2888ms)\nWhen was the White House built?\tWashington DC\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (the White House, are located in, Washington DC) -> Washington DC (2128ms)\nWhen was the White House built?\trules\t0.555555555557\tWhen was the White House built? -> $x: (white house, build on, $x) -> (the White House?s Office, build on, rules) -> rules (2900ms)\nWhen was the White House built?\tChina\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make in, $x) -> (the White House china, is actually being made in, China) -> China (2892ms)\nWhen was the White House built?\tthe karol bagh\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (The Hotel White House, is ideally located in, the karol bagh) -> the karol bagh (2900ms)\nWhen was the White House built?\t1824\t0.555555555557\tWhen was the White House built? -> $x: (white house, be construct in, $x) -> (the White House, was constructed in, 1824) -> 1824 (2900ms)\nWhen was the White House built?\t1998\t0.555555555557\tWhen was the White House built? -> $x: (white house, start in, $x) -> (The nationwide White House Project, got its start in, 1998) -> 1998 (2896ms)\nWhen was the White House built?\t1952\t0.555555555557\tWhen was the White House built? -> $x: (white house, start in, $x) -> (the White House, started back in, 1952) -> 1952 (2330ms)\nWhen was the White House built?\ta privileged area\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (Melia White House, is located in, a privileged area) -> a privileged area (2363ms)\nWhen was the White House built?\timportance\t0.555555555557\tWhen was the White House built? -> $x: (white house, build in, $x) -> (the White House, had systematically built up in, importance) -> importance (2896ms)\nWhen was the White House built?\tthe Federal Reformatory\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make in, $x) -> (his White House office, was made in, the Federal Reformatory) -> the Federal Reformatory (2900ms)\nWhen was the White House built?\treforms\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make on, $x) -> (the White House, was making its announcement on, reforms) -> reforms (2903ms)\nWhen was the White House built?\t1953\t0.555555555557\tWhen was the White House built? -> $x: (white house, start in, $x) -> (The official White House holiday card, was started in, 1953) -> 1953 (2900ms)\nWhen was the White House built?\tthe Department\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (The White House Visitor Center, is located in, the Department) -> the Department (2824ms)\nWhen was the White House built?\ta room\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (the White House telephone system, was located in, a room) -> a room (2363ms)\nWhen was the White House built?\tthe work\t0.555555555557\tWhen was the White House built? -> $x: (white house, build on, $x) -> (the White House, builds on, the work) -> the work (2903ms)\nWhen was the White House built?\ttax issues\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make on, $x) -> (the White House, are making major pushes on, tax issues) -> tax issues (2128ms)\nWhen was the White House built?\tclean technology\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make on, $x) -> (the White House, is making progress on, clean technology) -> clean technology (2630ms)\nWhen was the White House built?\t1876\t0.555555555557\tWhen was the White House built? -> $x: (white house, build in, $x) -> ('s Home Page White County Heritage House, built in, 1876) -> 1876 (2888ms)\nWhen was the White House built?\ta cave\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (White House ruin, is located in, a cave) -> a cave (2330ms)\nWhen was the White House built?\t1906\t0.555555555557\tWhen was the White House built? -> $x: (white house, build in, $x) -> (the White House, built in, 1906) -> 1906 (2892ms)\nWhen was the White House built?\ta small open area\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (an older white farm house, is located in, a small open area) -> a small open area (2903ms)\nWhen was the White House built?\tApril\t0.555555555557\tWhen was the White House built? -> $x: (white house, start in, $x) -> (White HouseBlack Market, will start construction in, April) -> April (2824ms)\nWhen was the White House built?\tHorley\t0.555555555557\tWhen was the White House built? -> $x: (white house, be locate in, $x) -> (The Gatwick White House Hotel, is located in, Horley) -> Horley (2892ms)\nWhen was the White House built?\teffort\t0.555555555557\tWhen was the White House built? -> $x: (white house, start in, $x) -> (The White House Project, got started in, effort) -> effort (2018ms)\nWhen was the White House built?\t1965\t0.555555555557\tWhen was the White House built? -> $x: (white house, start in, $x) -> (The White House Fellows Program, started in, 1965) -> 1965 (2824ms)\nWhen was the White House built?\tconcert\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make in, $x) -> (The White House announcement, was made in, concert) -> concert (2363ms)\nWhen was the White House built?\tJune 22 , 2004\t0.555555555557\tWhen was the White House built? -> $x: (white house, be make on, $x) -> (some White House documents, were made public on, June 22 , 2004) -> June 22 , 2004 (2824ms)\nWhen was the White House built?\tthe post\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the post, should be established outside, the White House) -> the post (2914ms)\nWhen was the White House built?\t?13\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (?13, had established contacts with, the White House) -> ?13 (2908ms)\nWhen was the White House built?\tPresident Barack Obama\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (President Barack Obama, established, a White House Council) -> President Barack Obama (2906ms)\nWhen was the White House built?\tMillard Fillmore?s wife\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Millard Fillmore?s wife, established, the White House library) -> Millard Fillmore?s wife (2906ms)\nWhen was the White House built?\tThe JPSS program\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (The JPSS program, was established after, the White House) -> The JPSS program (2906ms)\nWhen was the White House built?\tA Homeland Security Office\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (A Homeland Security Office, is established in, The White House) -> A Homeland Security Office (2908ms)\nWhen was the White House built?\tExecutive Order 13592\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Executive Order 13592, established, a White House Initiative) -> Executive Order 13592 (2914ms)\nWhen was the White House built?\ta restoration\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (a restoration, established, a White House Historical Association) -> a restoration (2906ms)\nWhen was the White House built?\ta deficit commission\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (a deficit commission, established by, the White House) -> a deficit commission (2906ms)\nWhen was the White House built?\tthe Bush Administration\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the Bush Administration, established, the White House Office) -> the Bush Administration (2914ms)\nWhen was the White House built?\tCongress\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Congress, establish, the White House Police Force) -> Congress (2914ms)\nWhen was the White House built?\tthe United States\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the United States, should establish in, the White House) -> the United States (2914ms)\nWhen was the White House built?\tan executive order\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (an executive order, established, the White House Commission) -> an executive order (2912ms)\nWhen was the White House built?\t8 Direct relations\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (8 Direct relations, were established between, the White House) -> 8 Direct relations (2908ms)\nWhen was the White House built?\tpresident\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (president, was to establish, a White House office) -> president (2914ms)\nWhen was the White House built?\tan Executive Order\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (an Executive Order, established, the White House Rural Council) -> an Executive Order (2914ms)\nWhen was the White House built?\tMillard Fillmore\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Millard Fillmore, established, the White House library) -> Millard Fillmore (2911ms)\nWhen was the White House built?\tAbigail\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Abigail, established, the first White House library) -> Abigail (2916ms)\nWhen was the White House built?\tan Executive order\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (an Executive order, establishing, the White House Commission) -> an Executive order (2906ms)\nWhen was the White House built?\tPresident Bush\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (President Bush, established, the White House Office) -> President Bush (2916ms)\nWhen was the White House built?\tForensic Science\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Forensic Science, was established by, the White House Office) -> Forensic Science (2908ms)\nWhen was the White House built?\tthe White House\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the White House, formally establish, a White House arts adviser) -> the White House (2906ms)\nWhen was the White House built?\tThe President\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (The President, established, the White House Office) -> The President (2906ms)\nWhen was the White House built?\tHudson\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Hudson, established, a White House Catholic Working Group) -> Hudson (2912ms)\nWhen was the White House built?\tthe aid\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the aid, established, a White House Fine Arts Committee) -> the aid (2906ms)\nWhen was the White House built?\tEmergency Preparedness\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Emergency Preparedness, had been established in, the White House) -> Emergency Preparedness (2914ms)\nWhen was the White House built?\tthe current Bush\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the current Bush, was established in, the White House) -> the current Bush (2912ms)\nWhen was the White House built?\tTotal Page Views Site\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Total Page Views Site, established, September 2000 White House) -> Total Page Views Site (2914ms)\nWhen was the White House built?\tThe White House\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (The White House, established, the Rural White House Council) -> The White House (2908ms)\nWhen was the White House built?\ta covert group\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (a covert group, established to investigate, White House leaks) -> a covert group (2912ms)\nWhen was the White House built?\tthe President\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the President, could establish the office in, the White House) -> the President (2914ms)\nWhen was the White House built?\tThe president\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (The president, established, the White House Council) -> The president (2908ms)\nWhen was the White House built?\tPresident Clinton\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (President Clinton, establishes, the White House Office) -> President Clinton (2914ms)\nWhen was the White House built?\tPresident Obama\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (President Obama, established, the first White House Office) -> President Obama (2912ms)\nWhen was the White House built?\tThe order\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (The order, establishes, a White House Initiative) -> The order (2908ms)\nWhen was the White House built?\tHerbert Hoover\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Herbert Hoover, established, a Summer White House) -> Herbert Hoover (2912ms)\nWhen was the White House built?\tBush\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Bush, established, a new White House office) -> Bush (2908ms)\nWhen was the White House built?\tPhone service\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Phone service, was established at, the White House one year) -> Phone service (2908ms)\nWhen was the White House built?\tsupplies\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (supplies, was established at, the White House) -> supplies (2912ms)\nWhen was the White House built?\tPresident Reagan\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (President Reagan, established, the White House Initiative) -> President Reagan (2908ms)\nWhen was the White House built?\tPresident Grover Cleveland\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (President Grover Cleveland, established, his summer White House) -> President Grover Cleveland (2914ms)\nWhen was the White House built?\tthe Administration\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the Administration, established, the first White House Advisor) -> the Administration (2908ms)\nWhen was the White House built?\tintelligence unit\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (intelligence unit, was established by, the White House) -> intelligence unit (2906ms)\nWhen was the White House built?\tthe government\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the government, established centers in, the White House) -> the government (2908ms)\nWhen was the White House built?\toffice\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (office, was to establish, the White House Office) -> office (2911ms)\nWhen was the White House built?\tPresident George W. Bush\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (President George W. Bush, established, the White House Office) -> President George W. Bush (2903ms)\nWhen was the White House built?\tThursday\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Thursday, established, a White House office) -> Thursday (2914ms)\nWhen was the White House built?\tDanny Freeman 13\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Danny Freeman 13, had established, contacts with the White House) -> Danny Freeman 13 (2912ms)\nWhen was the White House built?\tObama\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (Obama, established, the White House Council) -> Obama (2914ms)\nWhen was the White House built?\thomeland security adviser\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (homeland security adviser, was established in, the White House) -> homeland security adviser (2914ms)\nWhen was the White House built?\tNational Youth Policy\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (National Youth Policy, would be established at, the White House) -> National Youth Policy (2912ms)\nWhen was the White House built?\tGeorge W. Bush\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (George W. Bush, established, the White House Office) -> George W. Bush (2911ms)\nWhen was the White House built?\tThe administration\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (The administration, established, a White House Office) -> The administration (2906ms)\nWhen was the White House built?\tthe executive order\t0.555555555555\tWhen was the White House built? -> $x: ($x, establish, white house) -> (the executive order, establishing, the White House Rural Council) -> the executive order (2906ms)\nWhen was the White House built?\tnew buildings\t0.4444444444449999\tWhen was the White House built? -> $x: (new president, be build on, $x) -> (its new president, was focusing on building, new buildings) -> new buildings (2916ms)\nWhen was the White House built?\t1964\t0.333333333335\tWhen was the White House built? -> $x: (white house, be create in, $x) -> (The White House Fellows Program, was created in, 1964) -> 1964 (2916ms)\nWhen was the White House built?\tThe missing emails\t0.333333333335\tWhen was the White House built? -> $x: ($x, discover, white house) -> (The missing emails, were discovered by, the White House) -> The missing emails (2916ms)\nWhen was the White House built?\tAdobe Illustrator\t0.333333333335\tWhen was the White House built? -> $x: (white house, be open in, $x) -> (the White House PDF file, is opened in, Adobe Illustrator) -> Adobe Illustrator (2916ms)\nWhen was the White House built?\tjobs\t0.333333333335\tWhen was the White House built? -> $x: (white house, be create on, $x) -> (the White House, is focusing on creating, jobs) -> jobs (2918ms)\nWhen was the White House built?\tthe DNC\t0.333333333335\tWhen was the White House built? -> $x: ($x, invent, white house) -> (the DNC, invented, White House ?culture) -> the DNC (2916ms)\nWhen was the White House built?\tMay\t0.333333333335\tWhen was the White House built? -> $x: (white house, be create in, $x) -> (The White House Situation Room, was created in, May) -> May (2916ms)\nWhen was the White House built?\tcertain key elements\t0.333333333335\tWhen was the White House built? -> $x: (white house, be open on, $x) -> (The White House, is open to compromise on, certain key elements) -> certain key elements (2918ms)\nWhen was the White House built?\tAmerica\t0.333333333335\tWhen was the White House built? -> $x: (white house, be create in, $x) -> (the White House business leaders, are creating jobs in, America) -> America (2916ms)\nWhen was the White House built?\tfull public view\t0.333333333335\tWhen was the White House built? -> $x: (white house, be open in, $x) -> (the Bush White House, is now open in, full public view) -> full public view (2916ms)\nWhen was the White House built?\tminiature\t0.333333333335\tWhen was the White House built? -> $x: (white house, be create in, $x) -> (the White House, were created in, miniature) -> miniature (2916ms)\nWhen was the White House built?\twhite lie or laughable excuse\t0.333333333335\tWhen was the White House built? -> $x: ($x, invent, white house) -> (white lie or laughable excuse, is invented by, the White House) -> white lie or laughable excuse (2916ms)\nWhen was the White House built?\tan invitation\t0.333333333335\tWhen was the White House built? -> $x: (white house, be open in, $x) -> (The White House, is opening its doors in, an invitation) -> an invitation (2918ms)\nWhen was the White House built?\tJanuary\t0.333333333335\tWhen was the White House built? -> $x: (white house, be create in, $x) -> (The White House, were created in, January) -> January (2916ms)\nWhen was the White House built?\t1950\t0.333333333335\tWhen was the White House built? -> $x: (white house, be create in, $x) -> (The White House Science Advisor position, was created in, 1950) -> 1950 (2916ms)\nWhen was the White House built?\tKeynes\t0.333333333335\tWhen was the White House built? -> $x: ($x, discover, white house) -> (Keynes, discovered, the white house) -> Keynes (2916ms)\nWhen was the White House built?\tBlack slaves\t0.22222222222399998\tWhen was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was built by, Black slaves) -> Black slaves (2919ms)\nWhen was the White House built?\tBlack Slaves\t0.22222222222399998\tWhen was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was built by, Black Slaves) -> Black Slaves (2918ms)\nWhen was the White House built?\tblack slaves\t0.22222222222399998\tWhen was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was built by, black slaves) -> black slaves (2918ms)\nWhen was the White House built?\tenslaved Africans\t0.22222222222399998\tWhen was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was built by, enslaved Africans) -> enslaved Africans (2918ms)\nWhen was the White House built?\tJames Hoban\t0.22222222222399998\tWhen was the White House built? -> $x: (white house, be build by, $x) -> (White House, was built by, James Hoban) -> James Hoban (2919ms)\nWhen was the White House built?\tslaves\t0.22222222222399998\tWhen was the White House built? -> $x: (white house, be build by, $x) -> (a White House, was once built by, slaves) -> slaves (2919ms)\nWhen was the White House built?\tslave labor\t0.22222222222399998\tWhen was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was originally built by, slave labor) -> slave labor (2918ms)\nWhen was the White House built?\tthe Israelis\t0.22222222222399998\tWhen was the White House built? -> $x: (white house, be build by, $x) -> (white Jerusalem stone houses, are being built by, the Israelis) -> the Israelis (2918ms)\nWhen was the White House built?\ta deal\t0.222222222221\tWhen was the White House built? -> $x: (vice president, be make on, $x) -> (Vice President Joe Biden, had been made on, a deal) -> a deal (2921ms)\nWhen was the White House built?\tthe ballot\t0.222222222221\tWhen was the White House built? -> $x: (vice president, be make on, $x) -> (vice president, was made on, the ballot) -> the ballot (2921ms)\nWhen was the White House built?\tcontesting\t0.222222222221\tWhen was the White House built? -> $x: (vice president, be make on, $x) -> (the Vice President?s mind, is definitely made up on, contesting) -> contesting (2921ms)\nWhen was the White House built?\tsuch examinations\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (such examinations, will be established by, the Vice-President) -> such examinations (2923ms)\nWhen was the White House built?\tthe activities/events office\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, press office) -> (the activities/events office, established, their press office) -> the activities/events office (2922ms)\nWhen was the White House built?\t1916 Steiner\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, press office) -> (1916 Steiner, sought to establish, a press office) -> 1916 Steiner (2922ms)\nWhen was the White House built?\tThe Prize\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (The Prize, was established by, UAE Vice President) -> The Prize (2924ms)\nWhen was the White House built?\tThe Constitution\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (The Constitution, established the office of, vice president) -> The Constitution (2923ms)\nWhen was the White House built?\tClear definitions\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (Clear definitions, were established with, the Vice President) -> Clear definitions (2922ms)\nWhen was the White House built?\tThe U.S. Constitution\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (The U.S. Constitution, established the office of, vice president) -> The U.S. Constitution (2923ms)\nWhen was the White House built?\tPresident Gates\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (President Gates, establishes, Vice President) -> President Gates (2923ms)\nWhen was the White House built?\tactivities\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (activities, will be established by, the Vice President) -> activities (2923ms)\nWhen was the White House built?\tno hierarchy\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (no hierarchy, is established between, the two Vice-Presidents) -> no hierarchy (2923ms)\nWhen was the White House built?\ta committee\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (a committee, shall be established by, the Vice President) -> a committee (2922ms)\nWhen was the White House built?\ta reorganization\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (a reorganization, established the Office of, the Vice President) -> a reorganization (2922ms)\nWhen was the White House built?\tThe 25th amendment\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (The 25th amendment, establishes, the Vice President) -> The 25th amendment (2923ms)\nWhen was the White House built?\tthe British government\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, press office) -> (the British government, established, the War Office Press Bureau) -> the British government (2922ms)\nWhen was the White House built?\tfringe benefits\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (fringe benefits, are established annually by, the Vice President) -> fringe benefits (2922ms)\nWhen was the White House built?\tpriorities\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (priorities, are established by, the Vice President) -> priorities (2923ms)\nWhen was the White House built?\tan officer-level position\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (an officer-level position, established, a vice president) -> an officer-level position (2922ms)\nWhen was the White House built?\ta unicameral\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (a unicameral, establishes the office of, vice-president) -> a unicameral (2923ms)\nWhen was the White House built?\tWalter Mondale\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (Walter Mondale, established, the permanent vice president) -> Walter Mondale (2922ms)\nWhen was the White House built?\tapproved gifts\t0.22222222222\tWhen was the White House built? -> $x: ($x, establish, vice president) -> (approved gifts, shall be established by, the Vice President) -> approved gifts (2923ms)\nWhen was the White House built?\tThe term\t-0.0\tWhen was the White House built? -> $x: ($x, invent, vice president) -> (The term, was apparently invented by, Vice President Al Gore) -> The term (2924ms)\nWhen was the White House built?\tSeptember 6\t-0.0\tWhen was the White House built? -> $x: (vice president, be open on, $x) -> (NSU Vice President Baepler, were opened on, September 6) -> September 6 (2924ms)\nWhen was the White House built?\tJune\t-0.0\tWhen was the White House built? -> $x: (vice president, start in, $x) -> (vice president, officially starts in, June) -> June (2924ms)\nWhen was the White House built?\t1898\t-0.0\tWhen was the White House built? -> $x: (vice president, build in, $x) -> (Vice President, had this house built in, 1898) -> 1898 (2924ms)\nWhen was the White House built?\t1986\t-0.0\tWhen was the White House built? -> $x: (vice president, start in, $x) -> (The new vice president, started his automotive career in, 1986) -> 1986 (2924ms)\nWhen was the White House built?\tOctober 22\t-0.0\tWhen was the White House built? -> $x: (vice president, be open on, $x) -> (NSU Vice President Baepler, were opened on, October 22) -> October 22 (2924ms)\nWhen was the White House built?\ta small way\t-0.0\tWhen was the White House built? -> $x: (vice president, start in, $x) -> (vice president, started in, a small way) -> a small way (2924ms)\nWhat was the name of Patsy Cline's producer?\tChet Atkins\t0.22222222221799998\tWhat was the name of Patsy Cline's producer? -> $x: ($x, produce, patsy cline) -> (Chet Atkins, Releases produced, Remembering Patsy Cline & Jim Reeves) -> Chet Atkins (914ms)\nWhat was the name of Patsy Cline's producer?\tChris Kennedy\t0.22222222221799998\tWhat was the name of Patsy Cline's producer? -> $x: ($x, produce, patsy cline) -> (Chris Kennedy, Films Produced, Doing Time for Patsy Cline) -> Chris Kennedy (914ms)\nWhat was the name of Patsy Cline's producer?\tOwen Bradley\t0.22222222221799998\tWhat was the name of Patsy Cline's producer? -> $x: ($x, produce, patsy cline) -> (Owen Bradley, Releases produced, Songs by Patsy Cline) -> Owen Bradley (914ms)\nWhere is Mesa Verde National park?\tLong House\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Long House, Contained by, Mesa Verde National Park) -> Long House (1330ms)\nWhere is Mesa Verde National park?\tColorado\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Colorado, Contains, Mesa Verde National Park) -> Colorado (1312ms)\nWhere is Mesa Verde National park?\tCongress\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, establish, mesa verde national park) -> (Congress, established, Mesa Verde National Park) -> Congress (1165ms)\nWhere is Mesa Verde National park?\tChapin Mesa Archeological Museum\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Chapin Mesa Archeological Museum, Contained by, Mesa Verde National Park) -> Chapin Mesa Archeological Museum (1312ms)\nWhere is Mesa Verde National park?\tthe broad area\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, surround, mesa verde national park) -> (the broad area, surrounding, Mesa Verde National Park) -> the broad area (1165ms)\nWhere is Mesa Verde National park?\ta bill\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, create, mesa verde national park) -> (a bill, creating, Mesa Verde National Park) -> a bill (1133ms)\nWhere is Mesa Verde National park?\tUnited States of America\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (United States of America, Contains, Mesa Verde National Park) -> United States of America (1312ms)\nWhere is Mesa Verde National park?\tBalcony House\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Balcony House, Contained by, Mesa Verde National Park) -> Balcony House (1330ms)\nWhere is Mesa Verde National park?\tCliff Palace\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Cliff Palace, Contained by, Mesa Verde National Park) -> Cliff Palace (1312ms)\nWhere is Mesa Verde National park?\tCedar Tree Tower\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Cedar Tree Tower, Contained by, Mesa Verde National Park) -> Cedar Tree Tower (1312ms)\nWhere is Mesa Verde National park?\tStep House\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Step House, Contained by, Mesa Verde National Park) -> Step House (1312ms)\nWhere is Mesa Verde National park?\tMesa Verde Administrative District\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Mesa Verde Administrative District, Contained by, Mesa Verde National Park) -> Mesa Verde Administrative District (1312ms)\nWhere is Mesa Verde National park?\tSpruce Tree House\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Spruce Tree House, Contained by, Mesa Verde National Park) -> Spruce Tree House (1331ms)\nWhere is Mesa Verde National park?\tBadger House Trail\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Badger House Trail, Contained by, Mesa Verde National Park) -> Badger House Trail (1312ms)\nWhere is Mesa Verde National park?\tSquare Tower House\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Square Tower House, Contained by, Mesa Verde National Park) -> Square Tower House (1330ms)\nWhere is Mesa Verde National park?\tMontezuma County\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Montezuma County, Contains, Mesa Verde National Park) -> Montezuma County (1330ms)\nWhere is Mesa Verde National park?\tFar View Sites Complex\t-0.0\tWhere is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Far View Sites Complex, Contained by, Mesa Verde National Park) -> Far View Sites Complex (1331ms)\nWhere is Mesa Verde National park?\tthe southwest corner\t-0.111111111112\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, is in, the southwest corner) -> the southwest corner (1580ms)\nWhere is Mesa Verde National park?\tSouthwest Colorado\t-0.111111111112\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, is perched high in, Southwest Colorado) -> Southwest Colorado (1803ms)\nWhere is Mesa Verde National park?\ttreasures\t-0.111111111112\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> ($ 15.99 $ 15.99 Mesa Verde National Park, is rich in, treasures) -> treasures (1580ms)\nWhere is Mesa Verde National park?\tthe New York Times\t-0.111111111112\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, are featured in, the New York Times) -> the New York Times (1580ms)\nWhere is Mesa Verde National park?\tthe 59th Congress\t-0.111111111112\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (\" Mesa Verde National Park, was introduced in, the 59th Congress) -> the 59th Congress (1580ms)\nWhere is Mesa Verde National park?\tCOLORADO\t-0.111111111112\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (mesa verde national park, is a mountain in the state or province, COLORADO) -> COLORADO (1803ms)\nWhere is Mesa Verde National park?\t1906\t-0.111111111112\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, was established in, 1906) -> 1906 (1803ms)\nWhere is Mesa Verde National park?\tSouthwestern Colorado\t-0.111111111112\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, is in, Southwestern Colorado) -> Southwestern Colorado (1580ms)\nWhere is Mesa Verde National park?\t2,000 feet\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (2,000 feet, is, Mesa Verde National Park) -> 2,000 feet (1854ms)\nWhere is Mesa Verde National park?\tthe Ancients Byway\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the Ancients Byway, is, Mesa Verde National Park) -> the Ancients Byway (1803ms)\nWhere is Mesa Verde National park?\ta situation\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (a situation, is reversed at, nearby Mesa Verde National Park) -> a situation (1854ms)\nWhere is Mesa Verde National park?\t160\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (160, is, Mesa Verde National Park) -> 160 (1900ms)\nWhere is Mesa Verde National park?\tGrand Junction\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Grand Junction, is the gateway to, Mesa Verde National Park) -> Grand Junction (1854ms)\nWhere is Mesa Verde National park?\tthe south\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the south, is, the Mesa Verde National Park) -> the south (1803ms)\nWhere is Mesa Verde National park?\tHovenweep\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Hovenweep, is administered by, Mesa Verde National Park) -> Hovenweep (1900ms)\nWhere is Mesa Verde National park?\tnone\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (none, is more extensive than, Mesa Verde National Park) -> none (1854ms)\nWhere is Mesa Verde National park?\tthe archaeological center\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the archaeological center, is home to, Mesa Verde National Park) -> the archaeological center (1900ms)\nWhere is Mesa Verde National park?\tSoil samples\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Soil samples, are being taken at, Mesa Verde National Park) -> Soil samples (1854ms)\nWhere is Mesa Verde National park?\twet deposition\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (wet deposition, has been monitored at, Mesa Verde National Park) -> wet deposition (1900ms)\nWhere is Mesa Verde National park?\tearly research\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (early research, is now, Mesa Verde National Park) -> early research (1854ms)\nWhere is Mesa Verde National park?\tMancos and Cortez\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Mancos and Cortez, is, Mesa Verde National Park) -> Mancos and Cortez (1854ms)\nWhere is Mesa Verde National park?\t11:00\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (11:00, AM to 3:00, PM Mesa Verde National Park) -> 11:00 (1900ms)\nWhere is Mesa Verde National park?\thistory\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (history, are displayed at, Mesa Verde National Park) -> history (1854ms)\nWhere is Mesa Verde National park?\tthe next morning\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the next morning, would be, Mesa Verde National Park) -> the next morning (1900ms)\nWhere is Mesa Verde National park?\tNext\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Next, up is, Mesa Verde National Park) -> Next (1803ms)\nWhere is Mesa Verde National park?\tWeber Mountain\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Weber Mountain, is now, Mesa Verde National Park) -> Weber Mountain (1803ms)\nWhere is Mesa Verde National park?\tDurango\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Durango, is the gateway to, Mesa Verde National Park) -> Durango (1900ms)\nWhere is Mesa Verde National park?\tthe centerpiece\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the centerpiece, is now, Mesa Verde National Park) -> the centerpiece (1803ms)\nWhere is Mesa Verde National park?\tthe mesa\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the mesa, are protected by, Mesa Verde National Park) -> the mesa (1900ms)\nWhere is Mesa Verde National park?\tCountry West Motel\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Country West Motel, is 8 miles from, Mesa Verde National Park) -> Country West Motel (1900ms)\nWhere is Mesa Verde National park?\tCliff Palace ruins\t-0.333333333333\tWhere is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Cliff Palace ruins, is now, Mesa Verde National Park) -> Cliff Palace ruins (1854ms)\nWhere is Mesa Verde National park?\t40 miles\t-0.666666666667\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be about, $x) -> (Mesa Verde National Park, is about, 40 miles) -> 40 miles (1900ms)\nWhere is Mesa Verde National park?\t150 miles\t-0.666666666667\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be about, $x) -> (Mesa Verde National Park, is just about, 150 miles) -> 150 miles (1900ms)\nWhere is Mesa Verde National park?\tan hour\t-0.666666666667\tWhere is Mesa Verde National park? -> $x: (mesa verde national park, be about, $x) -> (Mesa Verde National Park, is about, an hour) -> an hour (1900ms)\nWhat is the location of Lake Champlain?\tSun\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (Sun, was the location of, Clear Lake) -> Sun (1079ms)\nWhat is the location of Lake Champlain?\tthe basin\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (the basin, has been the location of, huge lakes and shallow seas) -> the basin (1078ms)\nWhat is the location of Lake Champlain?\tThe lost ranch\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (The lost ranch, is also the location of, lake arrowhead airport) -> The lost ranch (1078ms)\nWhat is the location of Lake Champlain?\tthe south\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (the south, is also the location of, a beautiful lake) -> the south (1079ms)\nWhat is the location of Lake Champlain?\tthe Midwestern prairie\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (the Midwestern prairie, is the location of, the Great Lakes) -> the Midwestern prairie (1078ms)\nWhat is the location of Lake Champlain?\tThe isthmus\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (The isthmus, is the location of, the two largest lakes) -> The isthmus (1243ms)\nWhat is the location of Lake Champlain?\tNanchang\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (Nanchang, is the location of, the Poyang Lake) -> Nanchang (1079ms)\nWhat is the location of Lake Champlain?\tNakuru\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (Nakuru, is the location of, Lake Nakuru) -> Nakuru (1078ms)\nWhat is the location of Lake Champlain?\tsouthern Oregon\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (southern Oregon, is the location of, the deepest lake) -> southern Oregon (1243ms)\nWhat is the location of Lake Champlain?\tthe Midwest\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (the Midwest, are the location of, the Great Lakes) -> the Midwest (1243ms)\nWhat is the location of Lake Champlain?\tThe region\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (The region, is also the location of, the biggest manmade lake) -> The region (1079ms)\nWhat is the location of Lake Champlain?\tKakaban\t0.777777777776\tWhat is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (Kakaban, is the location of, Jellyfish Lake) -> Kakaban (1243ms)\nWhat is the location of Lake Champlain?\tThe shop\t0.555555555552\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (The shop, is located in, the Champlain Professional Building) -> The shop (1316ms)\nWhat is the location of Lake Champlain?\t1895\t0.555555555552\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (1895, was located in, Lake Champlain) -> 1895 (1316ms)\nWhat is the location of Lake Champlain?\tPlattsburgh\t0.555555555552\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Plattsburgh, is centrally located in, the Lake Champlain Basin) -> Plattsburgh (1243ms)\nWhat is the location of Lake Champlain?\tKnight Island\t0.555555555552\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Knight Island, is located in, northern Lake Champlain) -> Knight Island (1316ms)\nWhat is the location of Lake Champlain?\tAlbans\t0.555555555552\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Albans, is located in, the Champlain Valley region) -> Albans (1243ms)\nWhat is the location of Lake Champlain?\tWallace Realty\t0.555555555552\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Wallace Realty, is located in, the Champlain Valley) -> Wallace Realty (1316ms)\nWhat is the location of Lake Champlain?\tClient Services\t0.555555555552\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Client Services, is also located in, the Champlain Building) -> Client Services (1243ms)\nWhat is the location of Lake Champlain?\tRU12\t0.555555555552\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (RU12, is located in, the Champlain Mill) -> RU12 (1316ms)\nWhat is the location of Lake Champlain?\tGuillaume Allene\t0.11111111110700006\tWhat is the location of Lake Champlain? -> $x: ($x, be relative of, champlain) -> (Guillaume Allene, is one relative of, Champlain?s) -> Guillaume Allene (1316ms)\nWhat is the location of Lake Champlain?\tThe project\t-0.222222222222\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, qubec) -> (The project, is located in, the Abitibi region of central Qubec) -> The project (1420ms)\nWhat is the location of Lake Champlain?\tIle d'Orl?ans\t-0.222222222222\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, qubec) -> (Ile d'Orl?ans, is located in, Qu?bec) -> Ile d'Orl?ans (1420ms)\nWhat is the location of Lake Champlain?\tcent\t-0.222222222222\tWhat is the location of Lake Champlain? -> $x: ($x, be located in, qubec) -> (cent, are located in, Ontario and Qu?bec) -> cent (1420ms)\nWhat are semiconductors?\tengineers\t1.11111111111\tWhat are semiconductors? -> $x: ($x, invent, semiconductor) -> (engineers, invented, the semiconductor chips) -> engineers (2379ms)\nWhat are semiconductors?\t1962 Hall\t1.11111111111\tWhat are semiconductors? -> $x: ($x, invent, semiconductor) -> (1962 Hall, invented, the semiconductor injection laser) -> 1962 Hall (2379ms)\nWhat are semiconductors?\tany metallic surface\t1.11111111111\tWhat are semiconductors? -> $x: ($x, cause, semiconductor) -> (any metallic surface, may easily cause, semiconductors damage) -> any metallic surface (1785ms)\nWhat are semiconductors?\ta p-n junction\t1.11111111111\tWhat are semiconductors? -> $x: ($x, cause, semiconductor) -> (a p-n junction, causes a forward bias in, the semiconductor) -> a p-n junction (1786ms)\nWhat are semiconductors?\tMore rumblings\t1.11111111111\tWhat are semiconductors? -> $x: ($x, cause, semiconductor) -> (More rumblings, were caused by, the semiconductor industry) -> More rumblings (1785ms)\nWhat are semiconductors?\tboron impurities\t1.11111111111\tWhat are semiconductors? -> $x: ($x, cause, semiconductor) -> (boron impurities, cause, p-type semiconductor behavior) -> boron impurities (2379ms)\nWhat are semiconductors?\tTJ\t1.11111111111\tWhat are semiconductors? -> $x: ($x, cause, semiconductor) -> (TJ, can cause a 50 % reduction in, a semiconductor device) -> TJ (1785ms)\nWhat are semiconductors?\tShockley and associates\t1.11111111111\tWhat are semiconductors? -> $x: ($x, invent, semiconductor) -> (Shockley and associates, invented, the semiconductors) -> Shockley and associates (2379ms)\nWhat are semiconductors?\tthe rising voltage\t1.11111111111\tWhat are semiconductors? -> $x: ($x, cause, semiconductor) -> (the rising voltage, causes, semi-conductor components) -> the rising voltage (1785ms)\nWhat are semiconductors?\ta proton\t1.11111111111\tWhat are semiconductors? -> $x: ($x, cause, semiconductor) -> (a proton, causes a forward bias in, the semiconductor) -> a proton (1785ms)\nWhat are semiconductors?\tGermany\t1.11111111111\tWhat are semiconductors? -> $x: ($x, invent, semiconductor) -> (Germany, Invented, nano semiconductor materials) -> Germany (1786ms)\nWhat are semiconductors?\tdiamond\t1.11111111111\tWhat are semiconductors? -> $x: ($x, cause, semiconductor) -> (diamond, is now believed to cause, the semi-conductor properties) -> diamond (2379ms)\nWhat are semiconductors?\tJoyce Hall\t1.11111111111\tWhat are semiconductors? -> $x: ($x, invent, semiconductor) -> (Joyce Hall, invented, the semiconductor injection laser) -> Joyce Hall (1785ms)\nWhat are semiconductors?\tThe Device Solution Network\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (The Device Solution Network, specializes in, semiconductor) -> The Device Solution Network (7644ms)\nWhat are semiconductors?\tMEMC MEMC\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (MEMC MEMC, is a global leader in, semiconductor) -> MEMC MEMC (5616ms)\nWhat are semiconductors?\tAlcom\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Alcom, offers solutions in, semiconductors) -> Alcom (8880ms)\nWhat are semiconductors?\torganic materials\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (organic materials, are very rare in, semiconductor) -> organic materials (4341ms)\nWhat are semiconductors?\tthe parent Company\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (the parent Company, is a global leader in, semiconductor) -> the parent Company (4341ms)\nWhat are semiconductors?\tSony\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Sony, will also trim spending in, semiconductors) -> Sony (7644ms)\nWhat are semiconductors?\tdemand\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (demand, weakened in, semiconductors) -> demand (5068ms)\nWhat are semiconductors?\tBroadcom Corporation\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Broadcom Corporation, is a global leader in, semiconductors) -> Broadcom Corporation (7644ms)\nWhat are semiconductors?\tsilane gas\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (silane gas, is used in, semiconductor) -> silane gas (7644ms)\nWhat are semiconductors?\tCurrent customers\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Current customers, include worldwide leaders in, semiconductors) -> Current customers (5068ms)\nWhat are semiconductors?\tparticles\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (particles, can be created in, semiconductors) -> particles (9114ms)\nWhat are semiconductors?\tlight\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (light, is absorbed in, semiconductors) -> light (5616ms)\nWhat are semiconductors?\tDS2 DS2\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (DS2 DS2, is a global leader in, semiconductors) -> DS2 DS2 (5283ms)\nWhat are semiconductors?\tpower management\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (power management, are implemented in, semiconductors) -> power management (3088ms)\nWhat are semiconductors?\tTopics\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Topics, include basic optical processes in, semiconductors) -> Topics (4247ms)\nWhat are semiconductors?\tSamsung Electronics Co Ltd\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Samsung Electronics Co Ltd, is a global leader in, semiconductor) -> Samsung Electronics Co Ltd (5068ms)\nWhat are semiconductors?\tAmd\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Amd, is a company in the economic sector of, semiconductors) -> Amd (5068ms)\nWhat are semiconductors?\tThe same\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (The same, will happen in, semiconductors) -> The same (7644ms)\nWhat are semiconductors?\tSimilar effects\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Similar effects, can occur in, semiconductors) -> Similar effects (4247ms)\nWhat are semiconductors?\tST-Ericsson\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (ST-Ericsson, is a global leader in, semiconductors) -> ST-Ericsson (3921ms)\nWhat are semiconductors?\ttechnologies\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (technologies, tends to specialize in, semiconductors) -> technologies (7644ms)\nWhat are semiconductors?\tThe gas\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (The gas, is used in manufacturing, semiconductors) -> The gas (3921ms)\nWhat are semiconductors?\tAtmel\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Atmel, is a major powerhouse in, semiconductors) -> Atmel (3921ms)\nWhat are semiconductors?\telectrical engineering\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (electrical engineering, might be a specialist in, semiconductors) -> electrical engineering (5282ms)\nWhat are semiconductors?\tdefect engineering\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (defect engineering, operate in, semiconductors) -> defect engineering (5282ms)\nWhat are semiconductors?\tSilicium\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Silicium, is widely used in, semiconductors) -> Silicium (8880ms)\nWhat are semiconductors?\tMichael\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Michael, specializes in, semiconductors) -> Michael (3088ms)\nWhat are semiconductors?\tChapter 7\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Chapter 7, brings in, semiconductors) -> Chapter 7 (7644ms)\nWhat are semiconductors?\ta pan-European distributor\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (a pan-European distributor, specializing in, semiconductors) -> a pan-European distributor (5068ms)\nWhat are semiconductors?\tSamsung\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Samsung, is a global leader in, semiconductor) -> Samsung (8880ms)\nWhat are semiconductors?\tShot noise\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Shot noise, happens in, semiconductors) -> Shot noise (5283ms)\nWhat are semiconductors?\tPalladium paste\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Palladium paste, is used in, semiconductors) -> Palladium paste (5616ms)\nWhat are semiconductors?\tparts binning\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (parts binning, is a common process in, semiconductors) -> parts binning (4341ms)\nWhat are semiconductors?\tGold\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Gold, is used in, semiconductors) -> Gold (5616ms)\nWhat are semiconductors?\tThe Device\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (The Device, specializes in, semiconductor) -> The Device (5068ms)\nWhat are semiconductors?\tGordon\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Gordon, is a senior statesman in, semiconductors) -> Gordon (8880ms)\nWhat are semiconductors?\tIII-V compounds\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (III-V compounds, used in, semiconductors) -> III-V compounds (5616ms)\nWhat are semiconductors?\tOptically induced excitation density\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Optically induced excitation density, flops in, semiconductors) -> Optically induced excitation density (8880ms)\nWhat are semiconductors?\telectrons\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (electrons, do in, semiconductors) -> electrons (8880ms)\nWhat are semiconductors?\tthe silicon wafers\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (the silicon wafers, used in, semiconductors) -> the silicon wafers (9114ms)\nWhat are semiconductors?\tthe memory\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (the memory, is stored in, semiconductors) -> the memory (8880ms)\nWhat are semiconductors?\ttechnology startups\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (technology startups, specialize in, semiconductors) -> technology startups (5068ms)\nWhat are semiconductors?\tIndium\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Indium, is used in, semiconductors) -> Indium (4341ms)\nWhat are semiconductors?\tGermanium\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Germanium, is an important element in, semiconductors) -> Germanium (5283ms)\nWhat are semiconductors?\tSilicon\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Silicon, is widely used in, semiconductors) -> Silicon (5283ms)\nWhat are semiconductors?\tAptina Imaging\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Aptina Imaging, has has been working in, semiconductors) -> Aptina Imaging (4247ms)\nWhat are semiconductors?\tan electron\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (an electron, practically exist only in, semiconductors) -> an electron (8880ms)\nWhat are semiconductors?\tthe real opportunity\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (the real opportunity, was in, semiconductors) -> the real opportunity (3921ms)\nWhat are semiconductors?\tExtreme\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Extreme, mid-infrared nonlinear optics in, semiconductors) -> Extreme (3088ms)\nWhat are semiconductors?\tsolar applications\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (solar applications, as have utility in, semiconductors) -> solar applications (7644ms)\nWhat are semiconductors?\tthe operator\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (the operator, obtains optimum results in, semiconductor) -> the operator (4342ms)\nWhat are semiconductors?\tMEMC\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (MEMC, is a global leader in, semiconductor) -> MEMC (5616ms)\nWhat are semiconductors?\tMotorola\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Motorola, became a world leader in, semiconductor) -> Motorola (3088ms)\nWhat are semiconductors?\tParts binning\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Parts binning, is a common process in, semiconductors) -> Parts binning (2379ms)\nWhat are semiconductors?\tcharge\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (charge, flows in, semiconductors) -> charge (8880ms)\nWhat are semiconductors?\tOne possible area\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (One possible area, would be in, semiconductors) -> One possible area (8880ms)\nWhat are semiconductors?\tSamsung Electronics\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Samsung Electronics, is a global leader in, semiconductor) -> Samsung Electronics (3921ms)\nWhat are semiconductors?\tThe effect\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (The effect, is most pronounced in, semiconductors) -> The effect (9114ms)\nWhat are semiconductors?\tsilicon\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (silicon, is an important element in, semiconductors) -> silicon (3921ms)\nWhat are semiconductors?\ta materials scientist\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (a materials scientist, worked in, semiconductors) -> a materials scientist (8880ms)\nWhat are semiconductors?\tchalcogenides\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (chalcogenides, are used in, semiconductors) -> chalcogenides (3921ms)\nWhat are semiconductors?\tthe wafers\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (the wafers, used in, semiconductors) -> the wafers (5283ms)\nWhat are semiconductors?\tJapan\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Japan, enjoys in, semiconductors) -> Japan (4248ms)\nWhat are semiconductors?\tthe elements\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (the elements, found in, semiconductors) -> the elements (8880ms)\nWhat are semiconductors?\ta process\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (a process, occurs in, semiconductors) -> a process (3088ms)\nWhat are semiconductors?\ta Japanese company\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (a Japanese company, specializing in, semiconductors) -> a Japanese company (4341ms)\nWhat are semiconductors?\tSamsung Electronics Co.\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Samsung Electronics Co., is a global leader in, semiconductor) -> Samsung Electronics Co. (4247ms)\nWhat are semiconductors?\tbusiness\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (business, was in, semiconductors) -> business (3088ms)\nWhat are semiconductors?\tFujitsu\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (Fujitsu, is a minor player in, semiconductors) -> Fujitsu (2379ms)\nWhat are semiconductors?\tpiezo actuators\t0.999999999999\tWhat are semiconductors? -> $x: ($x, in, semiconductor) -> (piezo actuators, are common in, semiconductor) -> piezo actuators (5283ms)\nWhat are semiconductors?\tthe transforms\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (a semiconductor, did, the transforms) -> the transforms (9114ms)\nWhat are semiconductors?\tFuller\t0.888888888888\tWhat are semiconductors? -> $x: ($x, describe, semiconductor) -> (Fuller, describes his work on, semiconductors) -> Fuller (9135ms)\nWhat are semiconductors?\ta wonderful job\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (The semiconductor vendors, do, a wonderful job) -> a wonderful job (9156ms)\nWhat are semiconductors?\tthe same\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Cypress Semiconductor, did, the same) -> the same (9135ms)\nWhat are semiconductors?\ta vector multiplication\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (The Hall Effect Semiconductor, does, a vector multiplication) -> a vector multiplication (9156ms)\nWhat are semiconductors?\ta body good click\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductors, do, a body good click) -> a body good click (9114ms)\nWhat are semiconductors?\tA CCD\t0.888888888888\tWhat are semiconductors? -> $x: ($x, describe, semiconductor) -> (A CCD, is best described as, a semiconductor chip) -> A CCD (9114ms)\nWhat are semiconductors?\tNing\t0.888888888888\tWhat are semiconductors? -> $x: ($x, describe, semiconductor) -> (Ning, described progress on, metal-semiconductor nanolasers) -> Ning (9156ms)\nWhat are semiconductors?\tthe transistor block\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Organic Semiconductor, does, the transistor block) -> the transistor block (9156ms)\nWhat are semiconductors?\tthe heavy power regulation\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductors, do, the heavy power regulation) -> the heavy power regulation (9114ms)\nWhat are semiconductors?\twindows\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Lattice Semiconductor, does only work on, windows) -> windows (9156ms)\nWhat are semiconductors?\tthe conventional wisdom hold\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (III-V semiconductors, well does, the conventional wisdom hold) -> the conventional wisdom hold (9135ms)\nWhat are semiconductors?\tthe article\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (National Semiconductor, done since, the article) -> the article (9114ms)\nWhat are semiconductors?\tthe job\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (inexpensive semiconductors, will do, the job) -> the job (9135ms)\nWhat are semiconductors?\tfine\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, is doing just, fine) -> fine (9114ms)\nWhat are semiconductors?\tthe 1980s\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, did in, the 1980s) -> the 1980s (9135ms)\nWhat are semiconductors?\tThe titanium dioxide\t0.888888888888\tWhat are semiconductors? -> $x: ($x, describe, semiconductor) -> (The titanium dioxide, is described as, a semiconductor) -> The titanium dioxide (9135ms)\nWhat are semiconductors?\tsuch soul searching\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor company Intel, had to do, such soul searching) -> such soul searching (9135ms)\nWhat are semiconductors?\tBrazil\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor manufacturing, can be done in, Brazil) -> Brazil (9114ms)\nWhat are semiconductors?\tChina\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor companies, can do in, China) -> China (9135ms)\nWhat are semiconductors?\tthe part\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductors, then did, the part) -> the part (9114ms)\nWhat are semiconductors?\tone shot\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (The semiconductor layer, is all done in, one shot) -> one shot (9156ms)\nWhat are semiconductors?\ttelecoms spending\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductors, did, telecoms spending) -> telecoms spending (9114ms)\nWhat are semiconductors?\tany marketing\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, does, any marketing) -> any marketing (9114ms)\nWhat are semiconductors?\t2? or 3? wafers\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (compound semiconductor work, is done on, 2? or 3? wafers) -> 2? or 3? wafers (9135ms)\nWhat are semiconductors?\tEDA\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor companies, does, EDA) -> EDA (9114ms)\nWhat are semiconductors?\toffer roadmaps\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductor and component suppliers, do, offer roadmaps) -> offer roadmaps (9156ms)\nWhat are semiconductors?\ttwo people\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Micrel Semiconductor, was essentially done by, two people) -> two people (9114ms)\nWhat are semiconductors?\tso\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Photonics technicians who work with semiconductor lasers, do, so) -> so (9135ms)\nWhat are semiconductors?\tfantastic results\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, has done with, fantastic results) -> fantastic results (9156ms)\nWhat are semiconductors?\tawareness\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductor, does n?t have the same type of, awareness) -> awareness (9135ms)\nWhat are semiconductors?\tthe 1980?s\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (the Japanese semiconductor makers, did in, the 1980?s) -> the 1980?s (9156ms)\nWhat are semiconductors?\tthree\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor stocks, did very well in, three) -> three (9175ms)\nWhat are semiconductors?\tyaaron amber\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (general semiconductor ltd industry index gaane, do, yaaron amber) -> yaaron amber (9156ms)\nWhat are semiconductors?\ta break\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductor Insights, does, a break) -> a break (9156ms)\nWhat are semiconductors?\tthe University\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (National Semiconductor Pratt & Whitney, does, the University) -> the University (9135ms)\nWhat are semiconductors?\tlast year\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductors, did n?t stop until, last year) -> last year (9156ms)\nWhat are semiconductors?\ta unique way\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (Dialog Semiconductor, has done this in, a unique way) -> a unique way (9135ms)\nWhat are semiconductors?\tSematech\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, did so successfully with, Sematech) -> Sematech (9114ms)\nWhat are semiconductors?\tSemico\t0.888888888888\tWhat are semiconductors? -> $x: ($x, describe, semiconductor) -> (Semico, has described, the semiconductor inventory reduction) -> Semico (9135ms)\nWhat are semiconductors?\tthe absorption\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor material, so does, the absorption) -> the absorption (9135ms)\nWhat are semiconductors?\ta toothpaste\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (titanium semiconductor, does n?t need, a toothpaste) -> a toothpaste (9156ms)\nWhat are semiconductors?\tmeans\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor, have been done by, means) -> means (9156ms)\nWhat are semiconductors?\ta phone brief\t0.888888888888\tWhat are semiconductors? -> $x: (semiconductor, do, $x) -> (The semiconductor press, did receive, a phone brief) -> a phone brief (9135ms)\nWhat are semiconductors?\t2009\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, is for, 2009) -> 2009 (9288ms)\nWhat are semiconductors?\tHudgins\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Hudgins, has done research on, semiconductor materials) -> Hudgins (9324ms)\nWhat are semiconductors?\tthe future\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, were a problem for, the future) -> the future (9306ms)\nWhat are semiconductors?\ta rebound\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (?The semiconductor industry, is poised for, a rebound) -> a rebound (9233ms)\nWhat are semiconductors?\tthe plane\t0.888888888887\tWhat are semiconductors? -> $x: ($x, define, semiconductor) -> (the plane, defined by, the semiconductor junction 15) -> the plane (9288ms)\nWhat are semiconductors?\thigh-speed operation\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (compound semiconductors, are suitable for, high-speed operation) -> high-speed operation (9233ms)\nWhat are semiconductors?\tMobile\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Mobile, has very little to do with, semiconductor technology) -> Mobile (9194ms)\nWhat are semiconductors?\tuse\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor device, is designed for, use) -> use (9213ms)\nWhat are semiconductors?\tno pulsation\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (no pulsation, were done in, some semiconductor applications) -> no pulsation (9288ms)\nWhat are semiconductors?\tThe students design\t0.888888888887\tWhat are semiconductors? -> $x: ($x, characterize, semiconductor) -> (The students design, characterize, simple semiconductor circuits) -> The students design (9233ms)\nWhat are semiconductors?\tmore than two years\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, has been established for, more than two years) -> more than two years (9175ms)\nWhat are semiconductors?\tscience and technology\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (science and technology, produced, the semi-conductor industry) -> science and technology (9306ms)\nWhat are semiconductors?\tthe transport\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Organic semiconductors, are more feasible for, the transport) -> the transport (9324ms)\nWhat are semiconductors?\tresearch\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (research, has to do with, the semiconductor/conductor dichotomy) -> research (9233ms)\nWhat are semiconductors?\tmass production\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor lasers, are ideally suited for, mass production) -> mass production (9306ms)\nWhat are semiconductors?\tmicroscopic devices\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (microscopic devices, are produced on, semiconductor chips) -> microscopic devices (9213ms)\nWhat are semiconductors?\tthe cascaded H bridge\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, is the same as for, the cascaded H bridge) -> the cascaded H bridge (9233ms)\nWhat are semiconductors?\tOkmetic\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (power semiconductors, are important for, Okmetic) -> Okmetic (9324ms)\nWhat are semiconductors?\tThe sensor\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (The sensor, was originally produced by, DALLAS Semiconductor) -> The sensor (9233ms)\nWhat are semiconductors?\tWideSail\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (WideSail, does, semiconductor intellectual property) -> WideSail (9270ms)\nWhat are semiconductors?\tSeiko Instruments\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (Seiko Instruments, also produces, semiconductor products) -> Seiko Instruments (9194ms)\nWhat are semiconductors?\tthe few that\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (the few that, do are, Fairchild Semiconductor) -> the few that (9360ms)\nWhat are semiconductors?\tthe currency\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Dialog Semiconductor, be liable for, the currency) -> the currency (9195ms)\nWhat are semiconductors?\tcharge transport\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (the semiconductor, is used solely for, charge transport) -> charge transport (9233ms)\nWhat are semiconductors?\tmicromanufacturing\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (micromanufacturing, had been done in, the semiconductor industry) -> micromanufacturing (9288ms)\nWhat are semiconductors?\tthe commercial market\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor, is now headed for, the commercial market) -> the commercial market (9195ms)\nWhat are semiconductors?\tthe utility\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (the utility, is also done by, semiconductors) -> the utility (9306ms)\nWhat are semiconductors?\tThe company\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (The company, produces, semiconductors) -> The company (9342ms)\nWhat are semiconductors?\tAmino acids\t0.888888888887\tWhat are semiconductors? -> $x: ($x, characterize, semiconductor) -> (Amino acids, have been characterized as being, semi-conductor) -> Amino acids (9324ms)\nWhat are semiconductors?\tpartner companies\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (partner companies, produce, the semiconductors) -> partner companies (9270ms)\nWhat are semiconductors?\tthe integrated circuits\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (the integrated circuits, produced by, the semiconductor industry) -> the integrated circuits (9233ms)\nWhat are semiconductors?\tdelicate contact\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (delicate contact, produced, the best semiconductor effect) -> delicate contact (9342ms)\nWhat are semiconductors?\tVC++\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor Company, Is Looking For, VC++) -> VC++ (9306ms)\nWhat are semiconductors?\tcomplete System\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor technology, are the enabler for, complete System) -> complete System (9233ms)\nWhat are semiconductors?\ta lot\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Crystal Semiconductor, was responsible for, a lot) -> a lot (9251ms)\nWhat are semiconductors?\thuman sensation\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (human sensation, often do, damage semiconductor devices) -> human sensation (9213ms)\nWhat are semiconductors?\tthe first time\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, was observed directly for, the first time) -> the first time (9360ms)\nWhat are semiconductors?\tThe Laser Group\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (The Laser Group, produces, CW semiconductor lasers) -> The Laser Group (9288ms)\nWhat are semiconductors?\tsmartphones\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> ('semiconductor firms, are feeding the demand for, smartphones) -> smartphones (9306ms)\nWhat are semiconductors?\tlaser applications\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, are investigated for, laser applications) -> laser applications (9288ms)\nWhat are semiconductors?\tentire range\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, are being used for, entire range) -> entire range (9324ms)\nWhat are semiconductors?\tthe conversion\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (This semiconductor, is responsible for, the conversion) -> the conversion (9288ms)\nWhat are semiconductors?\tarchitecture\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (architecture, were produced by, Freescale Semiconductor) -> architecture (9175ms)\nWhat are semiconductors?\tthe FDC\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (the FDC, produces stacks of, semiconductor materials and metals) -> the FDC (9213ms)\nWhat are semiconductors?\tCircuit design and layout\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Circuit design and layout, were done by, Harris Semiconductor) -> Circuit design and layout (9233ms)\nWhat are semiconductors?\tLocal workers\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (Local workers, produce goods for, On Semiconductor customers) -> Local workers (9342ms)\nWhat are semiconductors?\tEDN Magazine\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (1993 Dallas Semiconductor, was nominated for, EDN Magazine) -> EDN Magazine (9213ms)\nWhat are semiconductors?\tthe heat\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (the heat, produced by, semiconductors) -> the heat (9324ms)\nWhat are semiconductors?\ta year\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (the semiconductor industry, is set for, a year) -> a year (9324ms)\nWhat are semiconductors?\tvarious functions\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> ('s semiconductor components, are used for, various functions) -> various functions (9251ms)\nWhat are semiconductors?\tIon Torrent\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (Ion Torrent, produces, its proprietary semiconductor chips) -> Ion Torrent (9306ms)\nWhat are semiconductors?\tconstructing\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, are used for, constructing) -> constructing (9324ms)\nWhat are semiconductors?\tthe year\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, are now positive for, the year) -> the year (9251ms)\nWhat are semiconductors?\ta mineral\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (a mineral, produced, the best semiconductor effect) -> a mineral (9251ms)\nWhat are semiconductors?\tStream Machine\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (Stream Machine, produces, semiconductor chips) -> Stream Machine (9233ms)\nWhat are semiconductors?\tEpson\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (Epson, produces components for, semi-conductors) -> Epson (9342ms)\nWhat are semiconductors?\tpublication\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (organic semiconductors, has been accepted for, publication) -> publication (9342ms)\nWhat are semiconductors?\tthe final slot\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (ROHM Semiconductor, is competing for, the final slot) -> the final slot (9288ms)\nWhat are semiconductors?\tlow leakage inductance\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (these semiconductors, are designed for, low leakage inductance) -> low leakage inductance (9324ms)\nWhat are semiconductors?\ta variety\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (These semiconductors, are well suited for, a variety) -> a variety (9251ms)\nWhat are semiconductors?\tRaytheon\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor materials, are critical for, Raytheon) -> Raytheon (9175ms)\nWhat are semiconductors?\tvarious purposes and devices\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, are used for, various purposes and devices) -> various purposes and devices (9270ms)\nWhat are semiconductors?\tSchottky\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Schottky, did, a lot of the work on semiconductors) -> Schottky (9288ms)\nWhat are semiconductors?\tthe rest\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, are ones to watch for, the rest) -> the rest (9306ms)\nWhat are semiconductors?\tTI\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (analog semiconductors, is the breadwinner for, TI) -> TI (9195ms)\nWhat are semiconductors?\tthe gate\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (the gate, does in, a semiconductor) -> the gate (9251ms)\nWhat are semiconductors?\tpolishing purposes\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor wafer, are also used for, polishing purposes) -> polishing purposes (9360ms)\nWhat are semiconductors?\tMaxtor\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Maxtor, did, semiconductors) -> Maxtor (9175ms)\nWhat are semiconductors?\tthe water\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (the water, won?t produce, more semiconductor jobs) -> the water (9251ms)\nWhat are semiconductors?\tCyrix\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (National Semiconductor, was an unmitigated disaster for, Cyrix) -> Cyrix (9251ms)\nWhat are semiconductors?\twearable logic\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Polymer semiconductors, are candidates for, wearable logic) -> wearable logic (9324ms)\nWhat are semiconductors?\tPurdue\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Purdue, has done for, the semiconductor industry) -> Purdue (9213ms)\nWhat are semiconductors?\tVerse Group\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Verse Group, had done work for, Philips Semiconductor) -> Verse Group (9213ms)\nWhat are semiconductors?\tNAND flash\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (NAND flash, is produced with, semiconductor processes) -> NAND flash (9324ms)\nWhat are semiconductors?\tthe new chips\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Chartered Semiconductor, will be responsible for, the new chips) -> the new chips (9233ms)\nWhat are semiconductors?\tA voltage\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (A voltage, is produced on, a semiconductor material) -> A voltage (9233ms)\nWhat are semiconductors?\tnext-generation classical-\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, is promising for, next-generation classical-) -> next-generation classical- (9233ms)\nWhat are semiconductors?\ta Product Marketing person\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor client, is looking for, a Product Marketing person) -> a Product Marketing person (9213ms)\nWhat are semiconductors?\tworking students\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (working students, do at, OSRAM Opto Semiconductors) -> working students (9270ms)\nWhat are semiconductors?\tcolloidal methods\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (colloidal methods, to produce, many different semiconductors) -> colloidal methods (9195ms)\nWhat are semiconductors?\tNVIDIA\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (NVIDIA, did announce a partnership with, GCT Semiconductor) -> NVIDIA (9214ms)\nWhat are semiconductors?\tAPS\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (APS, produced at, commercial semiconductor foundries) -> APS (9288ms)\nWhat are semiconductors?\ta firm\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (a firm, does, semiconductor-related market research) -> a firm (9360ms)\nWhat are semiconductors?\tAttitude\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (ON Semiconductor, is designed for, Attitude) -> Attitude (9342ms)\nWhat are semiconductors?\t3 valence electrons\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (3 valence electrons, produce, p-type semiconductors) -> 3 valence electrons (9324ms)\nWhat are semiconductors?\tBroadLight\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (BroadLight, produced, semiconductors and software) -> BroadLight (9195ms)\nWhat are semiconductors?\ta joint venture\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (a joint venture, produce, high-performance semiconductors) -> a joint venture (9306ms)\nWhat are semiconductors?\tThe DEPFETs\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (The DEPFETs, are produced in, the semiconductor laboratory) -> The DEPFETs (9360ms)\nWhat are semiconductors?\tthe project\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (National Semiconductor, is making the chipsets for, the project) -> the project (9288ms)\nWhat are semiconductors?\tshipments and inventories\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor data, are available for, shipments and inventories) -> shipments and inventories (9306ms)\nWhat are semiconductors?\tthe theoretical understanding\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, is crucial for, the theoretical understanding) -> the theoretical understanding (9195ms)\nWhat are semiconductors?\telectronic devices\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor lasers, are very useful for, electronic devices) -> electronic devices (9251ms)\nWhat are semiconductors?\tthe company\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor business, was a smart move for, the company) -> the company (9324ms)\nWhat are semiconductors?\tIBM systems\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor technology, is critical for, IBM systems) -> IBM systems (9214ms)\nWhat are semiconductors?\tbody wearables\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, are the way to go for, body wearables) -> body wearables (9360ms)\nWhat are semiconductors?\tCortex-A15\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Cortex-A15, do In, semiconductor design) -> Cortex-A15 (9270ms)\nWhat are semiconductors?\tthe thermal noise\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (the thermal noise, produced inside, the semiconductor) -> the thermal noise (9306ms)\nWhat are semiconductors?\tthe month\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, were strongest for, the month) -> the month (9175ms)\nWhat are semiconductors?\tquantum computing\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (a semiconductor, is a step forward for, quantum computing) -> quantum computing (9342ms)\nWhat are semiconductors?\tComplete program storage\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Complete program storage, is done on, semiconductor memories) -> Complete program storage (9175ms)\nWhat are semiconductors?\tInfineon Austria\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (Infineon Austria, produces, semiconductors and system solutions) -> Infineon Austria (9251ms)\nWhat are semiconductors?\tan impressive 5000 hours\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (The semiconductor, is rated for, an impressive 5000 hours) -> an impressive 5000 hours (9175ms)\nWhat are semiconductors?\tthe Chemistry Department\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (the Chemistry Department, are doing with, organic semiconductors) -> the Chemistry Department (9360ms)\nWhat are semiconductors?\tconvergence\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (automotive semiconductors, are key applications for, convergence) -> convergence (9175ms)\nWhat are semiconductors?\tcompanies\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (companies, produce, Semiconductor Switches Analog Mixed Signal) -> companies (9342ms)\nWhat are semiconductors?\tceramics\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (ceramics, is now being done in, the semiconductors world) -> ceramics (9195ms)\nWhat are semiconductors?\tIntel\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (Intel, is the only company to produces, semiconductor chips) -> Intel (9270ms)\nWhat are semiconductors?\tindicator lights\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor chips, initially was used for, indicator lights) -> indicator lights (9342ms)\nWhat are semiconductors?\tMichigan\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Michigan, could do for, organic semiconductors) -> Michigan (9360ms)\nWhat are semiconductors?\tyears\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor lasers, have been around for, years) -> years (9306ms)\nWhat are semiconductors?\tnuances\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (The semiconductor business, is legendary for, nuances) -> nuances (9288ms)\nWhat are semiconductors?\tthe light generation\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor crystal, are responsible for, the light generation) -> the light generation (9213ms)\nWhat are semiconductors?\t5 valence electrons\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (5 valence electrons, produce, n-type semiconductors) -> 5 valence electrons (9342ms)\nWhat are semiconductors?\tinvestigation\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, were a fertile field for, investigation) -> investigation (9306ms)\nWhat are semiconductors?\tAnswer Question\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Answer Question, does, OSRAM Opto Semiconductors offer positions) -> Answer Question (9288ms)\nWhat are semiconductors?\ta CEO\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (The semiconductor maker, is looking for, a CEO) -> a CEO (9360ms)\nWhat are semiconductors?\tpersonnel use\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor scanner, is mainly for, personnel use) -> personnel use (9175ms)\nWhat are semiconductors?\tIQE\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (IQE, is producing, compound semiconductor epiwafers) -> IQE (9324ms)\nWhat are semiconductors?\tBerlin\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Berlin, recently did in, a semiconductor material and report) -> Berlin (9342ms)\nWhat are semiconductors?\tlaser\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (laser, produces its output from, semiconductor materials) -> laser (9175ms)\nWhat are semiconductors?\thigh-speed trains\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (high-speed trains, is more akin to producing, semiconductors) -> high-speed trains (9342ms)\nWhat are semiconductors?\tLEDs\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (compound semiconductors, are used for, LEDs) -> LEDs (9270ms)\nWhat are semiconductors?\tfurther expansion\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Seoul Semiconductor, is positioned for, further expansion) -> further expansion (9270ms)\nWhat are semiconductors?\tapplication\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (molecular semiconductors, are showing promise for, application) -> application (9306ms)\nWhat are semiconductors?\tADVANTEST CORPORATION\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (ADVANTEST CORPORATION, produces, semiconductor testing devices) -> ADVANTEST CORPORATION (9195ms)\nWhat are semiconductors?\tseveral years\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor fabricators, were the highest for, several years) -> several years (9233ms)\nWhat are semiconductors?\tsimulation\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor technology, is forcing the need for, simulation) -> simulation (9195ms)\nWhat are semiconductors?\ttablet PCs\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (power semiconductors, are used for, tablet PCs) -> tablet PCs (9360ms)\nWhat are semiconductors?\ta rock band\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (a rock band, do, semiconductor work) -> a rock band (9175ms)\nWhat are semiconductors?\tany way\t0.888888888887\tWhat are semiconductors? -> $x: ($x, exactly be, semiconductor) -> (any way, exactly is, a semiconductor) -> any way (9342ms)\nWhat are semiconductors?\tWind power\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Wind power, does n?t require, a semiconductor fab lab) -> Wind power (9251ms)\nWhat are semiconductors?\tthe training\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor Physics, was important for, the training) -> the training (9213ms)\nWhat are semiconductors?\tbusinesses\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor demand, is increasing for, businesses) -> businesses (9251ms)\nWhat are semiconductors?\ta number\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, are presented for, a number) -> a number (9175ms)\nWhat are semiconductors?\ta liquid bridge\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (a liquid bridge, is one way to produce, semiconductor crystals) -> a liquid bridge (9342ms)\nWhat are semiconductors?\tcreation\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor substrate, are optimum for, creation) -> creation (9175ms)\nWhat are semiconductors?\tsmaller charges\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (smaller charges, do, damage semiconductor devices) -> smaller charges (9195ms)\nWhat are semiconductors?\tNasdaq\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Nasdaq, did n?t help, the Semiconductor index) -> Nasdaq (9251ms)\nWhat are semiconductors?\tdownload\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, is free for, download) -> download (9251ms)\nWhat are semiconductors?\tthe antenna elements\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor devices, are chosen for, the antenna elements) -> the antenna elements (9288ms)\nWhat are semiconductors?\tQuantum dots\t0.888888888887\tWhat are semiconductors? -> $x: ($x, produce, semiconductor) -> (Quantum dots, are specially produced, semiconductors) -> Quantum dots (9213ms)\nWhat are semiconductors?\tUSA\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (USA, does, semiconductors) -> USA (9306ms)\nWhat are semiconductors?\tBell\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (Bell, had all done work in, semiconductors) -> Bell (9270ms)\nWhat are semiconductors?\ta decline\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor makers, are bracing for, a decline) -> a decline (9324ms)\nWhat are semiconductors?\ta similar fate\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor stocks, is now headed for, a similar fate) -> a similar fate (9233ms)\nWhat are semiconductors?\ta Corporation\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor Manufacturer, is used herbelow for, a Corporation) -> a Corporation (9270ms)\nWhat are semiconductors?\tthe Tech averages\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (the semiconductor index, be a proxy for, the Tech averages) -> the Tech averages (9288ms)\nWhat are semiconductors?\tlow power\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (NXP Semiconductors, is designed for, low power) -> low power (9175ms)\nWhat are semiconductors?\tsolar energy\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (solar energy, has been done using, inorganic semiconductors) -> solar energy (9194ms)\nWhat are semiconductors?\tthe entire structure\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor material, is used for, the entire structure) -> the entire structure (9288ms)\nWhat are semiconductors?\tchips\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (a scrappy semiconductor company, to be known for, chips) -> chips (9270ms)\nWhat are semiconductors?\tthe Idaho-connected patents\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (the Idaho-connected patents, had to do with, semiconductors) -> the Idaho-connected patents (9270ms)\nWhat are semiconductors?\tno bandgap\t0.888888888887\tWhat are semiconductors? -> $x: ($x, do, semiconductor) -> (no bandgap, does n?t work well as, a semiconductor) -> no bandgap (9213ms)\nWhat are semiconductors?\tthe Company\t0.888888888887\tWhat are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor, is a developing market for, the Company) -> the Company (9270ms)\nWhat are semiconductors?\tthe challenge\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (the challenge, had been to create, a computer semiconductor) -> the challenge (9394ms)\nWhat are semiconductors?\tthick-SOI\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (thick-SOI, refers to, a semiconductor substrate) -> thick-SOI (9377ms)\nWhat are semiconductors?\tFabless Semiconductor Association\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Fabless Semiconductor Association, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Global%20Semiconductor%20Alliance) -> Fabless Semiconductor Association (9445ms)\nWhat are semiconductors?\tsolid state\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (solid state, is commonly used to refer to, semiconductor devices) -> solid state (9445ms)\nWhat are semiconductors?\tWide bandgap semiconductors\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Wide bandgap semiconductors, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Wide%20bandgap%20semiconductors) -> Wide bandgap semiconductors (9411ms)\nWhat are semiconductors?\tGordon Moore\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Gordon Moore, helped found, the semiconductor industry) -> Gordon Moore (9411ms)\nWhat are semiconductors?\tmarket growth\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (market growth, was being created by, semiconductors) -> market growth (9377ms)\nWhat are semiconductors?\tSemiconductor International\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Semiconductor International, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Semiconductor%20International) -> Semiconductor International (9394ms)\nWhat are semiconductors?\tthe Cypress tree\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (the Cypress tree, is found on, all Cypress Semiconductor chips) -> the Cypress tree (9377ms)\nWhat are semiconductors?\topportunities\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (opportunities, create, a strong semiconductor industry) -> opportunities (9428ms)\nWhat are semiconductors?\tno correlation\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (no correlation, is found between, semiconductors) -> no correlation (9411ms)\nWhat are semiconductors?\tThe story\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (The story, refers to, semiconductor fabrication) -> The story (9360ms)\nWhat are semiconductors?\tthe pair\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (the pair, had jointly created, a semiconductor superlattice) -> the pair (9445ms)\nWhat are semiconductors?\tGeorge\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (George, found a list of, semiconductor companies) -> George (9428ms)\nWhat are semiconductors?\tatoms\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (atoms, found in, semiconductor material) -> atoms (9377ms)\nWhat are semiconductors?\tAMD\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (AMD, would create, a fab-less semi-conductor) -> AMD (9394ms)\nWhat are semiconductors?\tnon-linear resistance\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (non-linear resistance, is also found in, semiconductor diodes) -> non-linear resistance (9394ms)\nWhat are semiconductors?\tThe term\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (The term, usually refers to, a semiconductor diode) -> The term (9377ms)\nWhat are semiconductors?\tBarr\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Barr, went on to found, Spin Semiconductor) -> Barr (9377ms)\nWhat are semiconductors?\tFurther information\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Further information, can be found at, OSRAM Opto Semiconductors) -> Further information (9428ms)\nWhat are semiconductors?\textreme operating conditions\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (extreme operating conditions, found in, semiconductor processing) -> extreme operating conditions (9411ms)\nWhat are semiconductors?\tSchockley\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Schockley, went on to found, Shockley Semiconductor Laboratory) -> Schockley (9377ms)\nWhat are semiconductors?\tphysicists\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (physicists, has created, the first semiconductor material) -> physicists (9428ms)\nWhat are semiconductors?\tfile\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (file, is created by, Realtek Semiconductor Corporation) -> file (9411ms)\nWhat are semiconductors?\tUndoYou\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (UndoYou, have found the List of, semiconductor materials) -> UndoYou (9445ms)\nWhat are semiconductors?\tsemiconductor devices\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (semiconductor devices, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Semiconductor%20device) -> semiconductor devices (9360ms)\nWhat are semiconductors?\tquantum backgrounds\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (quantum backgrounds, find a place in, the semiconductor industry) -> quantum backgrounds (9394ms)\nWhat are semiconductors?\tCadmium\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Cadmium, can be found in, semiconductors and resistors) -> Cadmium (9411ms)\nWhat are semiconductors?\tthe materials scientist\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (the materials scientist, creates, the semiconductors and figures) -> the materials scientist (9377ms)\nWhat are semiconductors?\tMore information\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (More information, can be found on, Varian Semiconductor) -> More information (9445ms)\nWhat are semiconductors?\tmuch higher mobilities\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (much higher mobilities, is found in, organic semiconductors) -> much higher mobilities (9428ms)\nWhat are semiconductors?\tthe 9100\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (the 9100, has found in, semiconductor processes) -> the 9100 (9445ms)\nWhat are semiconductors?\tTechnology\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (Technology, have created, a semiconductor) -> Technology (9428ms)\nWhat are semiconductors?\tUses Antimony\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Uses Antimony, is finding use in, semiconductor technology) -> Uses Antimony (9377ms)\nWhat are semiconductors?\tThe material\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (The material, finds use in, the semiconductor industry) -> The material (9428ms)\nWhat are semiconductors?\tCMOS\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (CMOS, refers to, the complimentary metal oxide semiconductor) -> CMOS (9445ms)\nWhat are semiconductors?\tOne next step\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (One next step, is to find, the right semiconductor) -> One next step (9445ms)\nWhat are semiconductors?\tMore evidence\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (More evidence, can be found at, Semiconductor?s Vimeo page) -> More evidence (9360ms)\nWhat are semiconductors?\ttechniques\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (techniques, found in, semiconductor manufacturing) -> techniques (9377ms)\nWhat are semiconductors?\tThe processor design\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (The processor design, was created by, Meridian Semiconductor) -> The processor design (9377ms)\nWhat are semiconductors?\tpart\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (part, has created, the first semiconductor) -> part (9394ms)\nWhat are semiconductors?\tPV\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (PV, refers to, the semiconductor) -> PV (9411ms)\nWhat are semiconductors?\tparticipation fee\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (participation fee, please refer to, ?Semiconductor Seminar ?) -> participation fee (9428ms)\nWhat are semiconductors?\tusers\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (users, are also finding, semiconductor-based lighting) -> users (9360ms)\nWhat are semiconductors?\tON SEMICONDUCTOR CORP\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (ON SEMICONDUCTOR CORP, can be found on Wikipedia at, http://en.wikipedia.org/wiki/ON%20Semiconductor) -> ON SEMICONDUCTOR CORP (9377ms)\nWhat are semiconductors?\tthe success Kalrez ? 9100\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (the success Kalrez ? 9100, has found in, semiconductor processes) -> the success Kalrez ? 9100 (9411ms)\nWhat are semiconductors?\tthe approach\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (the approach, used to create, semiconductor chips) -> the approach (9428ms)\nWhat are semiconductors?\tp-n-p?which\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (p-n-p?which, are created by, sandwiching semiconductor) -> p-n-p?which (9411ms)\nWhat are semiconductors?\tMemory\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (Memory, refers to, semiconductor devices) -> Memory (9428ms)\nWhat are semiconductors?\tThe silicide\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (The silicide, was found to be, a direct semiconductor) -> The silicide (9411ms)\nWhat are semiconductors?\telectron-hole pairs\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (electron-hole pairs, created in, a semiconductor) -> electron-hole pairs (9360ms)\nWhat are semiconductors?\tWireless TI\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (Wireless TI, creates, innovative wireless semiconductors) -> Wireless TI (9377ms)\nWhat are semiconductors?\tcustomers\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (customers, to find, ROHM semiconductors) -> customers (9394ms)\nWhat are semiconductors?\tthe demanding applications\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (the demanding applications, found in, the semiconductor industry) -> the demanding applications (9428ms)\nWhat are semiconductors?\ta name\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (a name, specializes in creating, semiconductor devices) -> a name (9428ms)\nWhat are semiconductors?\teight\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (eight, went on to found, Fairchild Semiconductor) -> eight (9394ms)\nWhat are semiconductors?\tthe polycide structures\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (the polycide structures, found in, advanced semiconductors) -> the polycide structures (9411ms)\nWhat are semiconductors?\tFairchild\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (Fairchild, had agreed to create, the semiconductor division) -> Fairchild (9445ms)\nWhat are semiconductors?\tSiC\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (SiC, is used to create, semiconductor devices) -> SiC (9394ms)\nWhat are semiconductors?\thazardous energy\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (hazardous energy, typically found in, semiconductor facilities) -> hazardous energy (9411ms)\nWhat are semiconductors?\tpowerchip\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (powerchip, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Powerchip%20Semiconductor) -> powerchip (9428ms)\nWhat are semiconductors?\tthe complexities\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (the complexities, found in, semiconductor manufacturing) -> the complexities (9394ms)\nWhat are semiconductors?\tboundary scan\t0.7777777777770001\tWhat are semiconductors? -> $x: (semiconductor, have use of, $x) -> (Lattice Semiconductor, has pioneered the use of, boundary scan) -> boundary scan (9428ms)\nWhat are semiconductors?\tconferences\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (conferences, can be found on, semiconductors-direct) -> conferences (9445ms)\nWhat are semiconductors?\ttransfer methods\t0.7777777777770001\tWhat are semiconductors? -> $x: (semiconductor, have use of, $x) -> (The semiconductor industry, has used a mix of, transfer methods) -> transfer methods (9377ms)\nWhat are semiconductors?\tboron\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (boron, creates, a p-type semiconductor) -> boron (9377ms)\nWhat are semiconductors?\tAntimony\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Antimony, is finding use in, semiconductor technology) -> Antimony (9411ms)\nWhat are semiconductors?\tproblems\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (problems, created by, semiconductor technology) -> problems (9445ms)\nWhat are semiconductors?\tFlexCAN modules\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (FlexCAN modules, found in, Freescale Semiconductor) -> FlexCAN modules (9394ms)\nWhat are semiconductors?\t1957 Noyce\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (1957 Noyce, helped found, Fairchild Semiconductor) -> 1957 Noyce (9377ms)\nWhat are semiconductors?\ta computer context\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, refer, semiconductor) -> (a computer context, refers to, semiconductor devices) -> a computer context (9394ms)\nWhat are semiconductors?\tNXP\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (NXP, creates, semiconductors) -> NXP (9445ms)\nWhat are semiconductors?\tFluorographene\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (Fluorographene, is found to be, a wide gap semiconductor) -> Fluorographene (9445ms)\nWhat are semiconductors?\ton-chip CAN controllers\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, found, semiconductor) -> (on-chip CAN controllers, found in, Philips Semiconductors) -> on-chip CAN controllers (9394ms)\nWhat are semiconductors?\tQuantum theory\t0.7777777777770001\tWhat are semiconductors? -> $x: ($x, create, semiconductor) -> (Quantum theory, also was later used to create, semiconductors) -> Quantum theory (9445ms)\nWhat are semiconductors?\tThe gas medium\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (The gas medium, also can be called, semiconductor laser medium) -> The gas medium (9618ms)\nWhat are semiconductors?\tthe most competitive\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (the most competitive, is, semiconductors) -> the most competitive (9797ms)\nWhat are semiconductors?\tcopyright protection\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (copyright protection, was extended to, semiconductor chips) -> copyright protection (9704ms)\nWhat are semiconductors?\tLED?s\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (LED?s, are comparable to, semiconductors) -> LED?s (9557ms)\nWhat are semiconductors?\tthe laser medium\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the laser medium, consists of, semiconductor quantum wells) -> the laser medium (9647ms)\nWhat are semiconductors?\tthe Semicondutor business\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the Semicondutor business, was sold to, Dynex Semiconductor) -> the Semicondutor business (9718ms)\nWhat are semiconductors?\tmetallic conductivity\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (metallic conductivity, can be, semiconductors) -> metallic conductivity (9745ms)\nWhat are semiconductors?\teven extremely small particles\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (even extremely small particles, can damage, a semiconductor) -> even extremely small particles (9603ms)\nWhat are semiconductors?\tIR detectors\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (IR detectors, consist of, a semiconductor) -> IR detectors (9704ms)\nWhat are semiconductors?\tthe USA\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (the USA, was very strong in, semiconductor manufacturing) -> the USA (9662ms)\nWhat are semiconductors?\tpower\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (power, is applied to, semiconductors) -> power (9731ms)\nWhat are semiconductors?\ttransistor\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (transistor, consists of, three semiconductor layers) -> transistor (9494ms)\nWhat are semiconductors?\ta voltage\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (a voltage, is applied to, a semiconductor) -> a voltage (9573ms)\nWhat are semiconductors?\tThe theory\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (The theory, has also been applied to, semiconductors) -> The theory (9771ms)\nWhat are semiconductors?\tthe Components and Devices category\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (the Components and Devices category, are, semiconductors) -> the Components and Devices category (9662ms)\nWhat are semiconductors?\tmain export products\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (main export products, are, semiconductors) -> main export products (9731ms)\nWhat are semiconductors?\ta heatsink\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (a heatsink, can damage, a semiconductor) -> a heatsink (9542ms)\nWhat are semiconductors?\tUsers\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Users, can select among, semiconductor) -> Users (9478ms)\nWhat are semiconductors?\tthe pores\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (the pores, can also form very, uniform doped semiconductor homo) -> the pores (9573ms)\nWhat are semiconductors?\tThe LED light\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The LED light, consists of, P-type semiconductors) -> The LED light (9461ms)\nWhat are semiconductors?\tthe living matrix\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (the living matrix, are, semiconductors) -> the living matrix (9731ms)\nWhat are semiconductors?\tThe idea\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (The idea, is to protect, semiconductors) -> The idea (9797ms)\nWhat are semiconductors?\tCertain carbon-based nanotubules\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Certain carbon-based nanotubules, can behave as, semiconductors) -> Certain carbon-based nanotubules (9494ms)\nWhat are semiconductors?\tDatum Telegraphic\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Datum Telegraphic, [is] a designer of, semiconductors) -> Datum Telegraphic (9731ms)\nWhat are semiconductors?\tthe forward direction\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (the forward direction, can melt, the semiconductor junction) -> the forward direction (9588ms)\nWhat are semiconductors?\tConexant\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Conexant, is a worldwide leader in, semiconductor solutions) -> Conexant (9526ms)\nWhat are semiconductors?\tnote\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (note, is, semiconductors) -> note (9704ms)\nWhat are semiconductors?\tarmchairs\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (armchairs, are, semiconductors) -> armchairs (9823ms)\nWhat are semiconductors?\t1.0\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (1.0, was, semiconductors) -> 1.0 (9461ms)\nWhat are semiconductors?\tKorea?s major export item\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Korea?s major export item, is, semiconductors) -> Korea?s major export item (9647ms)\nWhat are semiconductors?\tthe cost one\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (the cost one, can use, an electronic semiconductor sensor) -> the cost one (9718ms)\nWhat are semiconductors?\tvoltage\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (voltage, is applied to negatively charged, semiconductors) -> voltage (9662ms)\nWhat are semiconductors?\tComputers\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Computers, can be built from, semiconductors) -> Computers (9784ms)\nWhat are semiconductors?\tcurrent\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (current, can turn, the semiconductor) -> current (9731ms)\nWhat are semiconductors?\t1H06\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (1H06, were, Semiconductors) -> 1H06 (9810ms)\nWhat are semiconductors?\tDark current\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Dark current, is intrinsic to, semiconductors) -> Dark current (9784ms)\nWhat are semiconductors?\tdiamonds\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (diamonds, are going to be used as, semiconductors) -> diamonds (9810ms)\nWhat are semiconductors?\tprocessors\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (processors, can improve, semiconductor seal performance) -> processors (9797ms)\nWhat are semiconductors?\tMs Spears\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Ms Spears, is an expert in, semiconductor physics) -> Ms Spears (9662ms)\nWhat are semiconductors?\tsufficient purity\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (sufficient purity, can behave either like, semiconductors) -> sufficient purity (9603ms)\nWhat are semiconductors?\ta topological state\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (a topological state, can be induced in, a semiconductor quantum) -> a topological state (9542ms)\nWhat are semiconductors?\ta conductor\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (a conductor, can be used as, a semiconductor) -> a conductor (9662ms)\nWhat are semiconductors?\tA U.S. startup\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (A U.S. startup, was to globally distribute, semiconductors) -> A U.S. startup (9718ms)\nWhat are semiconductors?\tSEMs\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (SEMs, are, semiconductors) -> SEMs (9494ms)\nWhat are semiconductors?\t02-Sep-2008 E2V Technologies\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (02-Sep-2008 E2V Technologies, is to acquire, QP Semiconductor) -> 02-Sep-2008 E2V Technologies (9784ms)\nWhat are semiconductors?\tpumps\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (pumps, can be used on, all semiconductor processes) -> pumps (9557ms)\nWhat are semiconductors?\ta thin triple-layer coating\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (a thin triple-layer coating, consists of, a semiconductor) -> a thin triple-layer coating (9633ms)\nWhat are semiconductors?\tcarbon conduct electricity\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (carbon conduct electricity, are, semiconductors) -> carbon conduct electricity (9461ms)\nWhat are semiconductors?\tthe conductivity\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (the conductivity, is, semiconductor) -> the conductivity (9603ms)\nWhat are semiconductors?\tJoe Gerhardt\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Joe Gerhardt, are, Semiconductor) -> Joe Gerhardt (9690ms)\nWhat are semiconductors?\telectricity highly\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (electricity highly, can be, a semiconductor) -> electricity highly (9618ms)\nWhat are semiconductors?\ta byproduct\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (a byproduct, is used in, electronic semiconductors) -> a byproduct (9557ms)\nWhat are semiconductors?\tthe periodic table\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the periodic table, can be used to make, semiconductors) -> the periodic table (9618ms)\nWhat are semiconductors?\tCircuits Students\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Circuits Students, are introduced to, semiconductors) -> Circuits Students (9745ms)\nWhat are semiconductors?\tthe latter\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (the latter, can be accomplished without, semiconductors) -> the latter (9588ms)\nWhat are semiconductors?\tthe PCB\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the PCB, is to interconnect, semiconductor devices) -> the PCB (9510ms)\nWhat are semiconductors?\ta new mechanism\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (a new mechanism, can take place in, semiconductor thin-films) -> a new mechanism (9526ms)\nWhat are semiconductors?\tsmall amount of impurities\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (small amount of impurities, are added to, pure semiconductors) -> small amount of impurities (9557ms)\nWhat are semiconductors?\tspintronics\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (spintronics, is meant to combine, traditional semiconductors) -> spintronics (9573ms)\nWhat are semiconductors?\tA basic PV module\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (A basic PV module, consists of, two semiconductor layers) -> A basic PV module (9478ms)\nWhat are semiconductors?\tmolecules\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (molecules, can be used for, better semiconductors) -> molecules (9810ms)\nWhat are semiconductors?\tThe product unit price\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (The product unit price, will be subject to, nxp semiconductors) -> The product unit price (9603ms)\nWhat are semiconductors?\tThe first venture-backed startup\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (The first venture-backed startup, to be, Fairchild Semiconductor) -> The first venture-backed startup (9704ms)\nWhat are semiconductors?\ta manufacturer\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (a manufacturer, is, semiconductors) -> a manufacturer (9704ms)\nWhat are semiconductors?\tRFMD\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (RFMD, is a pioneer in, compound semiconductor) -> RFMD (9542ms)\nWhat are semiconductors?\tEngineers\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Engineers, can also see, the latest semiconductor devices) -> Engineers (9647ms)\nWhat are semiconductors?\tdetectors\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (detectors, can be used in, the semiconductor industry) -> detectors (9771ms)\nWhat are semiconductors?\tIndro\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Indro, was invited to join, Philips Semiconductors) -> Indro (9784ms)\nWhat are semiconductors?\tTWO COOL?\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (TWO COOL?, is used in, the semiconductor) -> TWO COOL? (9718ms)\nWhat are semiconductors?\tAn epoxy resin\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (An epoxy resin, is used to encapsulate, the semiconductor) -> An epoxy resin (9771ms)\nWhat are semiconductors?\tsilicon nanowires\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (silicon nanowires, are always, semiconductor) -> silicon nanowires (9823ms)\nWhat are semiconductors?\tgraphene\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (graphene, can be used in, semiconductor technology) -> graphene (9647ms)\nWhat are semiconductors?\tThe semimetals\t0.777777777776\tWhat are semiconductors? -> $x: ($x, classify as, semiconductor) -> (The semimetals, are classified as, semiconductors) -> The semimetals (9676ms)\nWhat are semiconductors?\tA RFID transponder\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (A RFID transponder, consists of, a semiconductor chip) -> A RFID transponder (9588ms)\nWhat are semiconductors?\tSV Version 1.0\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (SV Version 1.0, was, semiconductors) -> SV Version 1.0 (9718ms)\nWhat are semiconductors?\tThe lasers\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (The lasers, are used to make, semiconductors) -> The lasers (9662ms)\nWhat are semiconductors?\tmatching networks\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (matching networks, simply consist of, the semiconductor die) -> matching networks (9731ms)\nWhat are semiconductors?\tany non-dopant contamination\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (any non-dopant contamination, can ruin, the semiconductor) -> any non-dopant contamination (9542ms)\nWhat are semiconductors?\ta Hall effect\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (a Hall effect, is rarely observed in, organic semiconductors) -> a Hall effect (9690ms)\nWhat are semiconductors?\tLattice\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Lattice, can be obtained directly from, Lattice Semiconductor) -> Lattice (9823ms)\nWhat are semiconductors?\ta current\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (a current, is applied to, a semiconductor) -> a current (9690ms)\nWhat are semiconductors?\t157 nm\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (157 nm, are interesting to, semiconductor manufacturers) -> 157 nm (9704ms)\nWhat are semiconductors?\tpart layers\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (part layers, is usually confined to, semiconductor applications) -> part layers (9731ms)\nWhat are semiconductors?\telectronic chemicals and materials\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (electronic chemicals and materials, are, semiconductors) -> electronic chemicals and materials (9557ms)\nWhat are semiconductors?\tstructural strength\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (structural strength, are used in, semiconductor devices) -> structural strength (9510ms)\nWhat are semiconductors?\tan electrical charge\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (an electrical charge, is applied to, the semiconductor) -> an electrical charge (9690ms)\nWhat are semiconductors?\tsilicon wafers\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (silicon wafers, are essential to manufacturing, semiconductors) -> silicon wafers (9718ms)\nWhat are semiconductors?\tAn impurity\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (An impurity, can make, a semiconductor N-type) -> An impurity (9676ms)\nWhat are semiconductors?\tquartz\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (quartz, is highly beneficial to, semiconductor fabricators) -> quartz (9690ms)\nWhat are semiconductors?\tthe most significant\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the most significant, has to be, semiconductors) -> the most significant (9731ms)\nWhat are semiconductors?\tlaser diode or laser light source\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (laser diode or laser light source, is integrated, semiconductor) -> laser diode or laser light source (9784ms)\nWhat are semiconductors?\ta lab\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (a lab, can generate, high-volume semiconductor sequencing data) -> a lab (9526ms)\nWhat are semiconductors?\telectricity\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (electricity, can be used to built, organic semiconductors) -> electricity (9542ms)\nWhat are semiconductors?\tthe other four\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the other four, are pertinent to, semiconductor industry) -> the other four (9731ms)\nWhat are semiconductors?\tBlank\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Blank, was asked to join, Shockley Semiconductor) -> Blank (9588ms)\nWhat are semiconductors?\tphotonic band gap material ?\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (photonic band gap material ?, are similar to, semiconductors) -> photonic band gap material ? (9478ms)\nWhat are semiconductors?\tClean manufacture\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Clean manufacture, is required in, the semiconductor) -> Clean manufacture (9745ms)\nWhat are semiconductors?\tthe absorbed light\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the absorbed light, is transferred to, Semiconductor) -> the absorbed light (9810ms)\nWhat are semiconductors?\tcost reductions\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (cost reductions, are, semiconductors) -> cost reductions (9588ms)\nWhat are semiconductors?\tESD\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (ESD, can easily destroy, semiconductor products) -> ESD (9704ms)\nWhat are semiconductors?\tManufacturers\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Manufacturers, are competing to make, semiconductors) -> Manufacturers (9494ms)\nWhat are semiconductors?\tthe PS instruments\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the PS instruments, consist of, Si semiconductor detectors) -> the PS instruments (9618ms)\nWhat are semiconductors?\tsimilar properties\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (similar properties, can also be used in, semiconductor devices) -> similar properties (9810ms)\nWhat are semiconductors?\tChlorine trifluoride\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Chlorine trifluoride, is used in, semiconductor manufacturing) -> Chlorine trifluoride (9478ms)\nWhat are semiconductors?\tPV cells\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (PV cells, are, semiconductors) -> PV cells (9797ms)\nWhat are semiconductors?\tCleanrooms\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Cleanrooms, are used extensively in, semiconductor manufacturing) -> Cleanrooms (9647ms)\nWhat are semiconductors?\tpatenting\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (patenting, is pursued aggressively is, semiconductors) -> patenting (9526ms)\nWhat are semiconductors?\tThe bonded layers\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (The bonded layers, can contain embedded, semiconductors) -> The bonded layers (9603ms)\nWhat are semiconductors?\tThermoelectrics\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Thermoelectrics, are, semiconductors) -> Thermoelectrics (9461ms)\nWhat are semiconductors?\tLight emitting diodes\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (Light emitting diodes, consist of, semiconductor crystals) -> Light emitting diodes (9618ms)\nWhat are semiconductors?\tConstruction Commercially available diodes\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Construction Commercially available diodes, are, semiconductors) -> Construction Commercially available diodes (9704ms)\nWhat are semiconductors?\tpolysilicon\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (polysilicon, is used to manufacture, semiconductor chips) -> polysilicon (9662ms)\nWhat are semiconductors?\tthe strongest acting group\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (the strongest acting group, was, Semiconductors) -> the strongest acting group (9633ms)\nWhat are semiconductors?\tnarrower ones\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (narrower ones, should be, semiconductors) -> narrower ones (9771ms)\nWhat are semiconductors?\tSuch materials\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Such materials, need to be, ?good ? semiconductors) -> Such materials (9823ms)\nWhat are semiconductors?\tpyrites\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (pyrites, can show, semiconductor properties) -> pyrites (9542ms)\nWhat are semiconductors?\talways\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (The semiconductor industry, has been about having it, always) -> always (9542ms)\nWhat are semiconductors?\tArsine\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Arsine, is exclusively used in, semiconductor manufacturing) -> Arsine (9478ms)\nWhat are semiconductors?\tsolar cells\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (solar cells, can be made with, organic semiconductors) -> solar cells (9745ms)\nWhat are semiconductors?\tdevices\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (devices, can be made from, semiconductors) -> devices (9542ms)\nWhat are semiconductors?\tThe batteries\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (The batteries, are constructed from, semiconductors) -> The batteries (9494ms)\nWhat are semiconductors?\tselenium and tellurium\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (selenium and tellurium, are, semiconductors) -> selenium and tellurium (9494ms)\nWhat are semiconductors?\tgermanium and others\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (germanium and others, are, semiconductors) -> germanium and others (9745ms)\nWhat are semiconductors?\tthe plant\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the plant, was sold to, ON Semiconductor) -> the plant (9758ms)\nWhat are semiconductors?\thot electrons\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (hot electrons, can be slowed down in, semiconductor nanocrystals) -> hot electrons (9758ms)\nWhat are semiconductors?\tslowing demand\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (slowing demand, are expected to hit, semiconductor sales) -> slowing demand (9810ms)\nWhat are semiconductors?\tMembership\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Membership, is still open to, Semiconductors) -> Membership (9771ms)\nWhat are semiconductors?\tPhotodetectors\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Photodetectors, are, Semiconductors) -> Photodetectors (9771ms)\nWhat are semiconductors?\tOrganic films\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Organic films, can be used in, backend semiconductor processing) -> Organic films (9573ms)\nWhat are semiconductors?\t12 weeks\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (semiconductor wafers, is typically about 10 to, 12 weeks) -> 12 weeks (9526ms)\nWhat are semiconductors?\tnanotubes\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (nanotubes, can behave as, metals or semiconductors) -> nanotubes (9718ms)\nWhat are semiconductors?\tmaterials\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (materials, are used in, semiconductor manufacturing) -> materials (9758ms)\nWhat are semiconductors?\tExcessive heat\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Excessive heat, can damage, the semiconductor material) -> Excessive heat (9784ms)\nWhat are semiconductors?\tthe range\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the range, consisted of, semiconductor sensors) -> the range (9718ms)\nWhat are semiconductors?\tThe beads\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (The beads, are made of, semiconductors) -> The beads (9633ms)\nWhat are semiconductors?\tinterests\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (interests, are, semiconductors) -> interests (9633ms)\nWhat are semiconductors?\t1950s Germanium\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (1950s Germanium, is used to make, semiconductors) -> 1950s Germanium (9758ms)\nWhat are semiconductors?\tA solar cell\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (A solar cell, consists of, semiconductor materials) -> A solar cell (9478ms)\nWhat are semiconductors?\tthe nanoscale\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the nanoscale, is central to advancing, semiconductor technology) -> the nanoscale (9704ms)\nWhat are semiconductors?\ta new chip\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (The semiconductor engineer, was about to launch, a new chip) -> a new chip (9588ms)\nWhat are semiconductors?\tHuawei\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Huawei, has been in, semiconductor industry) -> Huawei (9784ms)\nWhat are semiconductors?\tQDs\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (QDs, consist of, a semiconductor core) -> QDs (9797ms)\nWhat are semiconductors?\tchief\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (chief, are, semiconductors) -> chief (9771ms)\nWhat are semiconductors?\thaving  it\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (The semiconductor industry, has been about, having  it) -> having  it (9676ms)\nWhat are semiconductors?\tthe top ring 7\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (the top ring 7, can press, the semiconductor wafer 6) -> the top ring 7 (9526ms)\nWhat are semiconductors?\tthe decline\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (the decline, is being led by, semiconductors) -> the decline (9797ms)\nWhat are semiconductors?\tPhotovoltaic cells\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Photovoltaic cells, can be made from, a semiconductor material) -> Photovoltaic cells (9603ms)\nWhat are semiconductors?\tElectrical properties\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Electrical properties, are, semiconductors) -> Electrical properties (9810ms)\nWhat are semiconductors?\tgovernments/authorities\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (governments/authorities, should be related to, semiconductors) -> governments/authorities (9690ms)\nWhat are semiconductors?\ta semiconductor device\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (a semiconductor device, consists of, two semiconductor layers) -> a semiconductor device (9731ms)\nWhat are semiconductors?\tan integrated circuit\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (an integrated circuit, consists of, a semiconductor wafer) -> an integrated circuit (9573ms)\nWhat are semiconductors?\tThe overmold\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (The overmold, can be grown using, semiconductor processes) -> The overmold (9758ms)\nWhat are semiconductors?\tContact EFM\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Contact EFM, can be applied to, semiconductor structures) -> Contact EFM (9771ms)\nWhat are semiconductors?\tThe most promising subsector\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (The most promising subsector, is, semiconductors) -> The most promising subsector (9745ms)\nWhat are semiconductors?\tthe SwitchBox-SSR\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the SwitchBox-SSR, consists of, a semiconductor relays) -> the SwitchBox-SSR (9510ms)\nWhat are semiconductors?\tSuch crystals\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Such crystals, can yield, better semi-conductors) -> Such crystals (9494ms)\nWhat are semiconductors?\tPhotoelectrochemical cells or PECs\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (Photoelectrochemical cells or PECs, consist of, a semiconductor) -> Photoelectrochemical cells or PECs (9797ms)\nWhat are semiconductors?\tA designer\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (A designer, can use, an onboard semiconductor device) -> A designer (9510ms)\nWhat are semiconductors?\tInc. SEA\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Inc. SEA, is a global leader in, semiconductor) -> Inc. SEA (9690ms)\nWhat are semiconductors?\tphase engineering\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (phase engineering, can be used to push, semiconductor materials) -> phase engineering (9633ms)\nWhat are semiconductors?\tThe fastest growing technology areas\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (The fastest growing technology areas, are, semiconductors) -> The fastest growing technology areas (9633ms)\nWhat are semiconductors?\tsolar cell\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (solar cell, is used to hold, semiconductors) -> solar cell (9758ms)\nWhat are semiconductors?\thermetic lids\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (hermetic lids, can be made for, the semiconductor) -> hermetic lids (9588ms)\nWhat are semiconductors?\tThe triacs\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (The triacs, are, semiconductors) -> The triacs (9618ms)\nWhat are semiconductors?\tPart-time musicians\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Part-time musicians, are, semiconductors) -> Part-time musicians (9771ms)\nWhat are semiconductors?\tThe QDR consortium\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The QDR consortium, consists of, Cypress Semiconductor) -> The QDR consortium (9690ms)\nWhat are semiconductors?\tSilk\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Silk, is being coupled with, semiconductors) -> Silk (9662ms)\nWhat are semiconductors?\tExported electronic products\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Exported electronic products, were primarily, semiconductors) -> Exported electronic products (9745ms)\nWhat are semiconductors?\tPhotovoltaic power cells\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Photovoltaic power cells, are, semiconductors) -> Photovoltaic power cells (9618ms)\nWhat are semiconductors?\tA: No. LEDs\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (A: No. LEDs, are, semiconductors) -> A: No. LEDs (9510ms)\nWhat are semiconductors?\tAn SRAM cell\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (An SRAM cell, consists of, a small semiconductor circuit) -> An SRAM cell (9510ms)\nWhat are semiconductors?\tSuch atomtronic diodes\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Such atomtronic diodes, are analogous to, semiconductor diodes) -> Such atomtronic diodes (9771ms)\nWhat are semiconductors?\tThe basic idea\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (The basic idea, is to use, semiconductor lasers) -> The basic idea (9745ms)\nWhat are semiconductors?\ta common electronic component\t0.777777777776\tWhat are semiconductors? -> $x: ($x, classify as, semiconductor) -> (a common electronic component, classified as, a semiconductor) -> a common electronic component (9588ms)\nWhat are semiconductors?\tthe size\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (The entire semiconductor chip, is about, the size) -> the size (9758ms)\nWhat are semiconductors?\ta laser\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (a laser, can process, these semiconductors) -> a laser (9494ms)\nWhat are semiconductors?\tThe buck regulator\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The buck regulator, consists of, two power semiconductors) -> The buck regulator (9718ms)\nWhat are semiconductors?\tthe idea\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the idea, is to stack, semiconductors) -> the idea (9588ms)\nWhat are semiconductors?\tPeriscope section\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Periscope section, is used to cover, semiconductor startups) -> Periscope section (9542ms)\nWhat are semiconductors?\tGE-132\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (GE-132, can be made into, an extremely pure semiconductor) -> GE-132 (9758ms)\nWhat are semiconductors?\tThe stock\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (The stock, is in, the semiconductor) -> The stock (9557ms)\nWhat are semiconductors?\ta pulse\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (a pulse, can destroy, semiconductors) -> a pulse (9647ms)\nWhat are semiconductors?\tThe solution\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The solution, consists of, Storm Semiconductor) -> The solution (9557ms)\nWhat are semiconductors?\tSolar cells\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Solar cells, are, semiconductors) -> Solar cells (9784ms)\nWhat are semiconductors?\tLaggards\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Laggards, were, Semiconductors) -> Laggards (9758ms)\nWhat are semiconductors?\tN-terminated vacancies\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (N-terminated vacancies, can be, a small-gap semiconductor) -> N-terminated vacancies (9810ms)\nWhat are semiconductors?\tDielectric materials\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Dielectric materials, is in, Semiconductor Chips) -> Dielectric materials (9676ms)\nWhat are semiconductors?\tTypical applications\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Typical applications, are in, the semiconductor) -> Typical applications (9510ms)\nWhat are semiconductors?\tSolar power cells\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Solar power cells, are, semiconductors) -> Solar power cells (9771ms)\nWhat are semiconductors?\tthe Korea top five\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (the Korea top five, were, semiconductors) -> the Korea top five (9573ms)\nWhat are semiconductors?\tthe topic\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (the topic, is the trend in, semiconductor prices) -> the topic (9618ms)\nWhat are semiconductors?\tThe instrument\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The instrument, consisted of, two semiconductor detectors) -> The instrument (9526ms)\nWhat are semiconductors?\tFSI\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (FSI, is designed to clean, semiconductor materials) -> FSI (9676ms)\nWhat are semiconductors?\t80 %\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (a leading semiconductor company, are used in about, 80 %) -> 80 % (9478ms)\nWhat are semiconductors?\tBroadcom\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Broadcom, [is] a global leader in, semiconductor solutions) -> Broadcom (9461ms)\nWhat are semiconductors?\tSolar panels\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Solar panels, are, semiconductors) -> Solar panels (9494ms)\nWhat are semiconductors?\tso finer detail\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (so finer detail, can be etched into, raw semiconductor materials) -> so finer detail (9633ms)\nWhat are semiconductors?\tLED lights\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (LED lights, are, semiconductors) -> LED lights (9797ms)\nWhat are semiconductors?\tThe optically active materials\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (The optically active materials, are, semiconductors) -> The optically active materials (9478ms)\nWhat are semiconductors?\tparallel Photovoltaic panels\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (parallel Photovoltaic panels, consist of, semiconductor wafers) -> parallel Photovoltaic panels (9573ms)\nWhat are semiconductors?\t17 %\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (17 %, is applied to, all semiconductors) -> 17 % (9784ms)\nWhat are semiconductors?\tA user\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (A user, can substitute, on-board semiconductor devices) -> A user (9690ms)\nWhat are semiconductors?\tThe chemical\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (The chemical, is used to build, semiconductor wafers) -> The chemical (9704ms)\nWhat are semiconductors?\thalf of which\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (half of which, will be, semiconductors) -> half of which (9573ms)\nWhat are semiconductors?\ttremendous effort\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (tremendous effort, has been devoted to, organic semiconductors) -> tremendous effort (9603ms)\nWhat are semiconductors?\tthe losing side\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (the losing side, were, semiconductors) -> the losing side (9662ms)\nWhat are semiconductors?\tMEMS apparatus\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (MEMS apparatus, can be built onto, a semiconductor wafer) -> MEMS apparatus (9823ms)\nWhat are semiconductors?\tthe array\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the array, consists of, actual semiconductor devices) -> the array (9526ms)\nWhat are semiconductors?\t7 %\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (semiconductor industry, is about, 7 %) -> 7 % (9690ms)\nWhat are semiconductors?\t8 %\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (semiconductors, are the key to producing only about, 8 %) -> 8 % (9771ms)\nWhat are semiconductors?\tmining stocks\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (mining stocks, were, semiconductors) -> mining stocks (9797ms)\nWhat are semiconductors?\tA derivative\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (A derivative, was eventually sold to, Harris Semiconductor) -> A derivative (9588ms)\nWhat are semiconductors?\tcheap stocks\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (cheap stocks, were, semiconductors) -> cheap stocks (9542ms)\nWhat are semiconductors?\tFab PowerOps\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Fab PowerOps, is specific to, semiconductor manufacturers) -> Fab PowerOps (9573ms)\nWhat are semiconductors?\tDie Attach Systems\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Die Attach Systems, are used to attach, semiconductor dice) -> Die Attach Systems (9603ms)\nWhat are semiconductors?\tA typical LED source\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (A typical LED source, consists of, a semiconductor crystal) -> A typical LED source (9704ms)\nWhat are semiconductors?\temployment\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (employment, was in, semiconductor manufacturing) -> employment (9758ms)\nWhat are semiconductors?\tservices\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (services, are provided to, the semiconductor) -> services (9718ms)\nWhat are semiconductors?\tAgere Systems\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (Agere Systems, is a global leader in, semiconductors) -> Agere Systems (9478ms)\nWhat are semiconductors?\ta wire\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (a wire, can also be through, semiconductors) -> a wire (9603ms)\nWhat are semiconductors?\tcost\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (cost, effectively were, semiconductors) -> cost (9618ms)\nWhat are semiconductors?\tindustry\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be in, semiconductor) -> (industry, has been interested in, semiconductor technology) -> industry (9797ms)\nWhat are semiconductors?\trare diamonds\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (rare diamonds, are, semiconductors) -> rare diamonds (9717ms)\nWhat are semiconductors?\tNantWorks mission\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (NantWorks mission, is to converge, semiconductor technology) -> NantWorks mission (9797ms)\nWhat are semiconductors?\t?MIPS? new processor\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (?MIPS? new processor, is licensable to, semiconductor companies) -> ?MIPS? new processor (9588ms)\nWhat are semiconductors?\tSpecial attention\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Special attention, is given to, semiconductors) -> Special attention (9647ms)\nWhat are semiconductors?\tled lights\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (led lights, are, semiconductors) -> led lights (9810ms)\nWhat are semiconductors?\tCarbon\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Carbon, is hardly considered to be, a semiconductor) -> Carbon (9478ms)\nWhat are semiconductors?\tan LED\t0.777777777776\tWhat are semiconductors? -> $x: ($x, influence, semiconductor) -> (an LED, has is influenced by, the semiconductor material) -> an LED (9676ms)\nWhat are semiconductors?\tBiochips\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Biochips, are similar to, semiconductors) -> Biochips (9676ms)\nWhat are semiconductors?\tMark Zack\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Mark Zack, [is] vice president of, semiconductors) -> Mark Zack (9618ms)\nWhat are semiconductors?\tthe semiconductor atom\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (the semiconductor atom, are added to, the semiconductor) -> the semiconductor atom (9745ms)\nWhat are semiconductors?\tInnocomm Wireless\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Innocomm Wireless, was sold to, National Semiconductor) -> Innocomm Wireless (9633ms)\nWhat are semiconductors?\tthe best indicator\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (semiconductor sales, are just about, the best indicator) -> the best indicator (9526ms)\nWhat are semiconductors?\tTeradyne products\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (Teradyne products, are used to test, semiconductors) -> Teradyne products (9494ms)\nWhat are semiconductors?\t15 %\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> (the semiconductor device industry, is expected to be about, 15 %) -> 15 % (9542ms)\nWhat are semiconductors?\tMajor exports\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Major exports, are, semiconductors) -> Major exports (9676ms)\nWhat are semiconductors?\tthe higher currents\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (the higher currents, destroy can, semiconductors) -> the higher currents (9526ms)\nWhat are semiconductors?\tThe memory\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (The memory, was changed to, semiconductor) -> The memory (9647ms)\nWhat are semiconductors?\telectronics\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (electronics, can be transmitted through, semiconductors) -> electronics (9526ms)\nWhat are semiconductors?\telectric field\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (electric field, are specific to, ferromagnetic semiconductors) -> electric field (9603ms)\nWhat are semiconductors?\tCarbon nanotubes\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (Carbon nanotubes, can behave, like metals or semiconductors) -> Carbon nanotubes (9784ms)\nWhat are semiconductors?\tEr staat daarom\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Er staat daarom, BE, Semiconductor) -> Er staat daarom (9573ms)\nWhat are semiconductors?\tA:Fine ceramics\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (A:Fine ceramics, are applied to, semiconductor device) -> A:Fine ceramics (9784ms)\nWhat are semiconductors?\ttool reconfigurations\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (tool reconfigurations, can misalign, semiconductor equipment) -> tool reconfigurations (9810ms)\nWhat are semiconductors?\tdiodes\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (diodes, are, semiconductors) -> diodes (9784ms)\nWhat are semiconductors?\t?12m\t0.777777777776\tWhat are semiconductors? -> $x: (semiconductor, be about, $x) -> ('s Newton Aycliffe semiconductor plant, is valued at about, ?12m) -> ?12m (9494ms)\nWhat are semiconductors?\tLED or light-emitting diode\t0.777777777776\tWhat are semiconductors? -> $x: ($x, can, semiconductor) -> (LED or light-emitting diode, can be a type of, semiconductor) -> LED or light-emitting diode (9718ms)\nWhat are semiconductors?\tmore than 250 Heusler compounds\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (more than 250 Heusler compounds, are, semiconductors) -> more than 250 Heusler compounds (9771ms)\nWhat are semiconductors?\ta typical LED\t0.777777777776\tWhat are semiconductors? -> $x: ($x, consist of, semiconductor) -> (a typical LED, consists of, the semiconductor material) -> a typical LED (9797ms)\nWhat are semiconductors?\texternal radiation\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (external radiation, is applied to, a semiconductor) -> external radiation (9633ms)\nWhat are semiconductors?\tLeading sectors\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be be, semiconductor) -> (Leading sectors, were, Semiconductors) -> Leading sectors (9461ms)\nWhat are semiconductors?\tan arrow\t0.777777777776\tWhat are semiconductors? -> $x: ($x, be to, semiconductor) -> (an arrow, are reflected back to, the semiconductor) -> an arrow (9526ms)\nWhat are semiconductors?\tFuture applications\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (Future applications, comprise, semiconductor manufacturing) -> Future applications (9880ms)\nWhat are semiconductors?\tthe laboratory\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (the laboratory, is developing, the new semiconductor devices) -> the laboratory (9860ms)\nWhat are semiconductors?\tstudied semiconductors\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (studied semiconductors, developed, new semiconductor processes) -> studied semiconductors (9890ms)\nWhat are semiconductors?\tthe device\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the device, may comprise, a SEMiconductor) -> the device (9890ms)\nWhat are semiconductors?\tthe INS8250\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (the INS8250, was originally developed by, National Semiconductor) -> the INS8250 (9880ms)\nWhat are semiconductors?\ta technology\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, induce, semiconductor) -> (a technology, induces vapor, growth of GaN-based semiconductor) -> a technology (9823ms)\nWhat are semiconductors?\t2007\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (2007, was to develop, semiconductor-use chemicals) -> 2007 (9850ms)\nWhat are semiconductors?\t31 offices\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (31 offices, represents, major semiconductor franchises) -> 31 offices (9850ms)\nWhat are semiconductors?\tA PIN photodiode\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (A PIN photodiode, comprises, a P-type semiconductor) -> A PIN photodiode (9870ms)\nWhat are semiconductors?\tthe technology\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (the technology, developed by, the semiconductor industry) -> the technology (9835ms)\nWhat are semiconductors?\tthe unit\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (the unit, uses newly developed, semiconductor memory) -> the unit (9850ms)\nWhat are semiconductors?\tSarda\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Sarda, to quickly develop, a power semiconductor product line) -> Sarda (9890ms)\nWhat are semiconductors?\tToronto\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Toronto, are developing, a semiconductor) -> Toronto (9880ms)\nWhat are semiconductors?\tcheap solar cells\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, be use of, semiconductor) -> (cheap solar cells, is the use of, semiconductor nanoparticles) -> cheap solar cells (9880ms)\nWhat are semiconductors?\tThe method\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (The method, comprises, providing a semiconductor body) -> The method (9890ms)\nWhat are semiconductors?\tIndia and China\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (India and China, developed, semiconductor patents) -> India and China (9823ms)\nWhat are semiconductors?\tMOSAID\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (MOSAID, develops, semiconductor memory technology) -> MOSAID (9880ms)\nWhat are semiconductors?\tresearchers\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (researchers, are developing, organic semiconductors) -> researchers (9823ms)\nWhat are semiconductors?\tTSIA\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (TSIA, has been representing, the semiconductor industry) -> TSIA (9870ms)\nWhat are semiconductors?\tthe sort\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (the sort, represented in, the semiconductor agreement) -> the sort (9880ms)\nWhat are semiconductors?\tthe method\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the method, further comprises patterning, the semiconductor body) -> the method (9835ms)\nWhat are semiconductors?\ttags\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (tags, comprise, a semi-conductor chip) -> tags (9870ms)\nWhat are semiconductors?\tThe research\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (The research, focused on developing, new semiconductors) -> The research (9899ms)\nWhat are semiconductors?\tExcelpoint\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (Excelpoint, will represent the products of, Seoul Semiconductor) -> Excelpoint (9835ms)\nWhat are semiconductors?\tbooths\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (booths, were developed by, OSRAM Opto Semiconductors) -> booths (9890ms)\nWhat are semiconductors?\tMerck\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Merck, is developing, organic semiconductors) -> Merck (9890ms)\nWhat are semiconductors?\tGernot\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Gernot, developed, semiconductor device simulators and models) -> Gernot (9880ms)\nWhat are semiconductors?\tthe second substrate\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the second substrate, comprises, a semiconductor chip) -> the second substrate (9850ms)\nWhat are semiconductors?\t2012\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (2012, represents the bottom of, the current semiconductor cycle) -> 2012 (9850ms)\nWhat are semiconductors?\tMr. Serpa\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (Mr. Serpa, also represented, various semiconductor companies) -> Mr. Serpa (9880ms)\nWhat are semiconductors?\tKobayashi\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Kobayashi, is developing, semiconductor materials) -> Kobayashi (9823ms)\nWhat are semiconductors?\tMembers\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (Members, represent a worldwide cross-section of, semiconductor) -> Members (9860ms)\nWhat are semiconductors?\tThe project\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (The project, was co-developed with, Harris Semiconductor) -> The project (9850ms)\nWhat are semiconductors?\tGeneSiC\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (GeneSiC, is developing, its SiC-based semiconductor) -> GeneSiC (9835ms)\nWhat are semiconductors?\tArrow Altech Distribution\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (Arrow Altech Distribution, represents, Cypress Semiconductor) -> Arrow Altech Distribution (9880ms)\nWhat are semiconductors?\tphotovoltaic cells\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (photovoltaic cells, are comprised of, semiconductor materials) -> photovoltaic cells (9860ms)\nWhat are semiconductors?\tInphi\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Inphi, develops, high speed semiconductors) -> Inphi (9880ms)\nWhat are semiconductors?\tThe IBIS community\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (The IBIS community, comprises of, Semiconductor vendors) -> The IBIS community (9890ms)\nWhat are semiconductors?\tthe trade association\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (the trade association, representing, the semiconductor industry) -> the trade association (9823ms)\nWhat are semiconductors?\tsensors\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (sensors, comprise, semiconductor chips) -> sensors (9890ms)\nWhat are semiconductors?\tNitres\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Nitres, developed, nitride-based semiconductors) -> Nitres (9890ms)\nWhat are semiconductors?\t1976 Mitel\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (1976 Mitel, begins developing, internal semiconductor capability) -> 1976 Mitel (9899ms)\nWhat are semiconductors?\tInfineon\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Infineon, develops, semiconductors) -> Infineon (9850ms)\nWhat are semiconductors?\tgeneral\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (general, represented the 35th largest market for, semiconductors) -> general (9880ms)\nWhat are semiconductors?\ta substrate\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (a substrate, comprises providing, a semiconductor material) -> a substrate (9890ms)\nWhat are semiconductors?\tprocessor\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (processor, was developed by, ?Haisi Semiconductors?) -> processor (9890ms)\nWhat are semiconductors?\tthe first company\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (the first company, to actively develop, semiconductor products) -> the first company (9899ms)\nWhat are semiconductors?\tIPHI\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (IPHI, continues to develop, its 100G semiconductor solutions) -> IPHI (9870ms)\nWhat are semiconductors?\tthe leading voice\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (the leading voice, has represented, U.S. semiconductor companies) -> the leading voice (9860ms)\nWhat are semiconductors?\t2011\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (2011, develops, semiconductor system solutions) -> 2011 (9860ms)\nWhat are semiconductors?\tFaggin\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Faggin, had to develop, new semiconductor design technologies) -> Faggin (9870ms)\nWhat are semiconductors?\tAustin\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Austin, developed a base of, semiconductor manufacturers) -> Austin (9823ms)\nWhat are semiconductors?\tShin & Kim\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (Shin & Kim, has recently represented, Seoul Semiconductor) -> Shin & Kim (9850ms)\nWhat are semiconductors?\tThe green line\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (The green line, represents, the total semiconductor revenue) -> The green line (9860ms)\nWhat are semiconductors?\tThe PV panel\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (The PV panel, is comprised of, wafers and semiconductors) -> The PV panel (9823ms)\nWhat are semiconductors?\tAstroWatt\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (AstroWatt, has developed, a semiconductor-on-metal technology) -> AstroWatt (9870ms)\nWhat are semiconductors?\tI2C\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (I2C, was developed by, Philips Semiconductors) -> I2C (9890ms)\nWhat are semiconductors?\tThe chip\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (The chip, has been developed by, Dialog Semiconductor) -> The chip (9850ms)\nWhat are semiconductors?\tHitachi\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Hitachi, has developed, a new semiconductor biosensor device) -> Hitachi (9850ms)\nWhat are semiconductors?\tsoftware\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (software, develop, semiconductors) -> software (9870ms)\nWhat are semiconductors?\tthe substrate\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the substrate, comprises, a semiconductor material) -> the substrate (9860ms)\nWhat are semiconductors?\tH-Stream Wireless\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (H-Stream Wireless, develops, wireless semiconductor solutions) -> H-Stream Wireless (9860ms)\nWhat are semiconductors?\tRomania\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Romania, develops, power semiconductors) -> Romania (9899ms)\nWhat are semiconductors?\t?Broadcom Corporation\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (?Broadcom Corporation, develops, semiconductors) -> ?Broadcom Corporation (9835ms)\nWhat are semiconductors?\tIC\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (IC, was developed by, National Semiconductor) -> IC (9860ms)\nWhat are semiconductors?\tThe TINI\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (The TINI, was developed by, Dallas Semiconductor) -> The TINI (9835ms)\nWhat are semiconductors?\tElecon\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Elecon, has developed, an organic semiconductor) -> Elecon (9860ms)\nWhat are semiconductors?\tDr. Vlasov\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Dr. Vlasov, developed, semiconductor photonic crystals) -> Dr. Vlasov (9835ms)\nWhat are semiconductors?\tsensor\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (sensor, comprises, a respective semiconductor chip) -> sensor (9835ms)\nWhat are semiconductors?\tthe substrate 19\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the substrate 19, may comprise, a semiconductor material) -> the substrate 19 (9899ms)\nWhat are semiconductors?\tMaterials scientists\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Materials scientists, develop, semi-conductors) -> Materials scientists (9899ms)\nWhat are semiconductors?\tEMD\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (EMD, is developing, organic semiconductors) -> EMD (9860ms)\nWhat are semiconductors?\tJEIS\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (JEIS, has represented, the semiconductor and LCD industries) -> JEIS (9880ms)\nWhat are semiconductors?\tTechnologies\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Technologies, developed for, the semiconductor industry) -> Technologies (9880ms)\nWhat are semiconductors?\tthe technology sector\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the technology sector, comprises, semiconductor) -> the technology sector (9860ms)\nWhat are semiconductors?\tSilicon Valley\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Silicon Valley, was still developing, semiconductors) -> Silicon Valley (9870ms)\nWhat are semiconductors?\tMr. Burger\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (Mr. Burger, has represented, individual semiconductor companies) -> Mr. Burger (9835ms)\nWhat are semiconductors?\tY-Corp\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Y-Corp, has developed, a new semiconductor device) -> Y-Corp (9823ms)\nWhat are semiconductors?\tLight\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, induce, semiconductor) -> (Light, induced, semiconductor cooling) -> Light (9835ms)\nWhat are semiconductors?\tAvago\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Avago, develops, analog semiconductor devices) -> Avago (9870ms)\nWhat are semiconductors?\tDiagram D\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (Diagram D, represents, a P-type semiconductor crystal) -> Diagram D (9870ms)\nWhat are semiconductors?\tsemiconductors\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (semiconductors, developed, new semiconductor processes) -> semiconductors (9880ms)\nWhat are semiconductors?\t?Silicon Valley\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (?Silicon Valley, developed, semiconductor technology) -> ?Silicon Valley (9890ms)\nWhat are semiconductors?\tA Schottky diode\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (A Schottky diode, comprises, a semiconductor substrate) -> A Schottky diode (9880ms)\nWhat are semiconductors?\tA third project\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (A third project, will develop, semiconductor nanocrystals) -> A third project (9838ms)\nWhat are semiconductors?\tThe red rectangle\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (The red rectangle, represents, a p-type semiconductor) -> The red rectangle (9870ms)\nWhat are semiconductors?\tAn LED\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (An LED, comprises, an n-type semiconductor) -> An LED (9890ms)\nWhat are semiconductors?\tSumitomo Electric\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (Sumitomo Electric, developed, green semiconductor lasers) -> Sumitomo Electric (9870ms)\nWhat are semiconductors?\tThe lab\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, develop, semiconductor) -> (The lab, has developed, novel semiconductor) -> The lab (9835ms)\nWhat are semiconductors?\tsubset B\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, comprise, semiconductor) -> (subset B, comprises only, semiconductors) -> subset B (9835ms)\nWhat are semiconductors?\tcorporate members\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, represent, semiconductor) -> (corporate members, represent, semiconductor manufacturers) -> corporate members (9899ms)\nWhat are semiconductors?\tscience\t0.6666666666659999\tWhat are semiconductors? -> $x: ($x, be use of, semiconductor) -> (science, is the explosive use of, semiconductors) -> science (9890ms)\nWhat are semiconductors?\tIsrael\t0.6666666666650001\tWhat are semiconductors? -> $x: ($x, constitute, semiconductor) -> (Israel, is now constituted as, Tower Semiconductor) -> Israel (9908ms)\nWhat are semiconductors?\tthe low energies\t0.6666666666650001\tWhat are semiconductors? -> $x: ($x, could be, semiconductor) -> (the low energies, could be a speciality of, III-V semiconductors) -> the low energies (9926ms)\nWhat are semiconductors?\tadvantages\t0.6666666666650001\tWhat are semiconductors? -> $x: ($x, could be, semiconductor) -> (advantages, could be gained in, various semiconductor devices) -> advantages (9926ms)\nWhat are semiconductors?\tThe technique\t0.6666666666650001\tWhat are semiconductors? -> $x: ($x, could be, semiconductor) -> (The technique, could be applied to, other II I?V semiconductors) -> The technique (9917ms)\nWhat are semiconductors?\tphysics\t0.6666666666650001\tWhat are semiconductors? -> $x: ($x, discover, semiconductor) -> (physics, have discovered a new class of, complex semiconductors) -> physics (9899ms)\nWhat are semiconductors?\tvarious applications\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are used in, various applications) -> various applications (9944ms)\nWhat are semiconductors?\tthe tech space\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are showing weakness in, the tech space) -> the tech space (9977ms)\nWhat are semiconductors?\tplace\t0.555555555555\tWhat are semiconductors? -> $x: ($x, compare to, semiconductor) -> (place, here may be compared to, a semiconductor) -> place (9944ms)\nWhat are semiconductors?\tGX Vocabulary\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, In Scheme, GX Vocabulary) -> GX Vocabulary (9992ms)\nWhat are semiconductors?\tthe Photovoltaic cells\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are used in, the Photovoltaic cells) -> the Photovoltaic cells (9985ms)\nWhat are semiconductors?\tAuthorities Concept Scheme\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (9935ms)\nWhat are semiconductors?\t?cleanrooms\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, takes place in, ?cleanrooms) -> ?cleanrooms (9969ms)\nWhat are semiconductors?\tsolar PV systems\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are used in, solar PV systems) -> solar PV systems (9992ms)\nWhat are semiconductors?\tthe center\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are in, the center) -> the center (9952ms)\nWhat are semiconductors?\tinterns\t0.555555555555\tWhat are semiconductors? -> $x: ($x, get, semiconductor) -> (interns, get paid at, OSRAM Opto Semiconductors) -> interns (9985ms)\nWhat are semiconductors?\tcontact\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, come in, contact) -> contact (9944ms)\nWhat are semiconductors?\tUzhgorod\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, will take place in, Uzhgorod) -> Uzhgorod (9952ms)\nWhat are semiconductors?\trecent years\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, have proliferated in, recent years) -> recent years (9985ms)\nWhat are semiconductors?\tJim\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (Jim, left to start, Tundra Semiconductor Corporation) -> Jim (9977ms)\nWhat are semiconductors?\tmedical equipment\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are growing in, medical equipment) -> medical equipment (9968ms)\nWhat are semiconductors?\tthe above theoretical computations\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, were made in, the above theoretical computations) -> the above theoretical computations (9977ms)\nWhat are semiconductors?\tsensor systems\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are commonly used in, sensor systems) -> sensor systems (9935ms)\nWhat are semiconductors?\tlow power applications\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, found widespread use in, low power applications) -> low power applications (9977ms)\nWhat are semiconductors?\tline\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are trading in, line) -> line (9960ms)\nWhat are semiconductors?\tPhotovoltaic Conversion\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, used in, Photovoltaic Conversion) -> Photovoltaic Conversion (9960ms)\nWhat are semiconductors?\tElectrode\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (Electrode, leave, the semiconductor) -> Electrode (9944ms)\nWhat are semiconductors?\tGordon Moore and Robert Noyce\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (Gordon Moore and Robert Noyce, left, Fairchild Semiconductor) -> Gordon Moore and Robert Noyce (9969ms)\nWhat are semiconductors?\tdesign flexibility\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductor, represent the ultimate in, design flexibility) -> design flexibility (9969ms)\nWhat are semiconductors?\tthe electronics industry\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, used in, the electronics industry) -> the electronics industry (9985ms)\nWhat are semiconductors?\tthe international market\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, came down in, the international market) -> the international market (9935ms)\nWhat are semiconductors?\ttwo varieties\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, come in, two varieties) -> two varieties (9944ms)\nWhat are semiconductors?\tthe engineering\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, has been introduced in, the engineering) -> the engineering (9968ms)\nWhat are semiconductors?\thousehold appliances\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are increasingly found in, household appliances) -> household appliances (9944ms)\nWhat are semiconductors?\tthe late 1940s\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, began in, the late 1940s) -> the late 1940s (9968ms)\nWhat are semiconductors?\tsmall pieces\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are constructed in, small pieces) -> small pieces (9935ms)\nWhat are semiconductors?\tSingapore\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductor, previously operated in, Singapore) -> Singapore (9935ms)\nWhat are semiconductors?\tJune\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, declined slightly in, June) -> June (9960ms)\nWhat are semiconductors?\tInformation Appliance AMD\t0.555555555555\tWhat are semiconductors? -> $x: ($x, get, semiconductor) -> (Information Appliance AMD, got, such National Semiconductor) -> Information Appliance AMD (9968ms)\nWhat are semiconductors?\tcollaboration\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, has resulted in, collaboration) -> collaboration (9935ms)\nWhat are semiconductors?\tthe solid state\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, generate electricity in, the solid state) -> the solid state (9985ms)\nWhat are semiconductors?\tEast Greenwich\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductor, operates a plant in, East Greenwich) -> East Greenwich (9943ms)\nWhat are semiconductors?\tautomobiles\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are increasingly pervasive in, automobiles) -> automobiles (9944ms)\nWhat are semiconductors?\tMay\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, rebounded slightly in, May) -> May (9952ms)\nWhat are semiconductors?\tthe industry\t0.555555555555\tWhat are semiconductors? -> $x: ($x, get, semiconductor) -> (the industry, got into, semiconductor technology and molding) -> the industry (9952ms)\nWhat are semiconductors?\tthe late 1980s\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, operated in, the late 1980s) -> the late 1980s (9985ms)\nWhat are semiconductors?\ta wide range\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are used in, a wide range) -> a wide range (9977ms)\nWhat are semiconductors?\tthe region\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are found in, the region) -> the region (9960ms)\nWhat are semiconductors?\ttechnology\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, can be found in, technology) -> technology (9985ms)\nWhat are semiconductors?\tsuch equipment\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are prevalent in, such equipment) -> such equipment (9944ms)\nWhat are semiconductors?\tthe computer\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are found in, the computer) -> the computer (9952ms)\nWhat are semiconductors?\tAmerica\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are still made in, America) -> America (9960ms)\nWhat are semiconductors?\tKen\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (Ken, has recently left, the Semiconductor Industry) -> Ken (9960ms)\nWhat are semiconductors?\tlevel1\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, was introduced in, level1) -> level1 (9968ms)\nWhat are semiconductors?\tfocus\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, were in, focus) -> focus (9969ms)\nWhat are semiconductors?\tmedical devices\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, used in, medical devices) -> medical devices (9935ms)\nWhat are semiconductors?\tRambus\t0.555555555555\tWhat are semiconductors? -> $x: ($x, get, semiconductor) -> (Rambus, to get about $ 349 million from, Hynix Semiconductor) -> Rambus (9952ms)\nWhat are semiconductors?\tFogal\t0.555555555555\tWhat are semiconductors? -> $x: ($x, get, semiconductor) -> (Fogal, get, his semiconductor) -> Fogal (9977ms)\nWhat are semiconductors?\ttransistors\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are used in, transistors) -> transistors (9935ms)\nWhat are semiconductors?\tcounterfeiting\t0.555555555555\tWhat are semiconductors? -> $x: ($x, get, semiconductor) -> (counterfeiting, is getting worse in, the semiconductor space) -> counterfeiting (9985ms)\nWhat are semiconductors?\tTopical Terms Concept Scheme\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (9952ms)\nWhat are semiconductors?\tthe Traitorous Eight\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (the Traitorous Eight, left, Shockley Semiconductor Laboratory) -> the Traitorous Eight (9985ms)\nWhat are semiconductors?\tAndy Grove\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (Andy Grove, left, Fairchild Semiconductor) -> Andy Grove (9985ms)\nWhat are semiconductors?\tplastics\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, is sometimes present in, plastics) -> plastics (9977ms)\nWhat are semiconductors?\tFigure 1\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are presented in, Figure 1) -> Figure 1 (9960ms)\nWhat are semiconductors?\t2010\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, launched in, 2010) -> 2010 (9952ms)\nWhat are semiconductors?\t2000\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, were taken public in, 2000) -> 2000 (9977ms)\nWhat are semiconductors?\tsales\t0.555555555555\tWhat are semiconductors? -> $x: ($x, compare to, semiconductor) -> (sales, are still small compared to, the semiconductor industry) -> sales (9952ms)\nWhat are semiconductors?\tacceleration\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, resulted in, acceleration) -> acceleration (9952ms)\nWhat are semiconductors?\tSeries A funding\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, raised $ 24 million in, Series A funding) -> Series A funding (9969ms)\nWhat are semiconductors?\topposite directions\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, move in, opposite directions) -> opposite directions (9935ms)\nWhat are semiconductors?\tdie area\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, can shrink in, die area) -> die area (9985ms)\nWhat are semiconductors?\tthe electrons\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (the electrons, leave, the semiconductor) -> the electrons (9968ms)\nWhat are semiconductors?\tthe link\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are given in, the link) -> the link (9985ms)\nWhat are semiconductors?\tclean rooms\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, takes place in, clean rooms) -> clean rooms (9952ms)\nWhat are semiconductors?\tprogrammable logic devices\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, has been in, programmable logic devices) -> programmable logic devices (9977ms)\nWhat are semiconductors?\tcomputers\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are good in, computers) -> computers (9977ms)\nWhat are semiconductors?\tNoyce and Moore\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (Noyce and Moore, left, Fairchild Semiconductor) -> Noyce and Moore (9944ms)\nWhat are semiconductors?\tmicroelectronics\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are used in, microelectronics) -> microelectronics (9985ms)\nWhat are semiconductors?\ttwo others\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, is placed in between, two others) -> two others (9968ms)\nWhat are semiconductors?\tconnection\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are being studied in, connection) -> connection (9944ms)\nWhat are semiconductors?\tSeptember\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, rose sharply in, September) -> September (9952ms)\nWhat are semiconductors?\tEuropean countries\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, made in, European countries) -> European countries (9926ms)\nWhat are semiconductors?\tthe eight men\t0.555555555555\tWhat are semiconductors? -> $x: ($x, leave, semiconductor) -> (the eight men, left, Shockley Semiconductor) -> the eight men (9977ms)\nWhat are semiconductors?\tthe global transition\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, is losing in, the global transition) -> the global transition (9992ms)\nWhat are semiconductors?\t230 offerings\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, has participated in approximately, 230 offerings) -> 230 offerings (9960ms)\nWhat are semiconductors?\tmultimedia computers\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, produced sound in, multimedia computers) -> multimedia computers (9960ms)\nWhat are semiconductors?\ttablets\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, used in, tablets) -> tablets (9944ms)\nWhat are semiconductors?\tIQ\t0.555555555555\tWhat are semiconductors? -> $x: ($x, get, semiconductor) -> (IQ, get the overall rank for, the semiconductor group) -> IQ (9952ms)\nWhat are semiconductors?\tRochester\t0.555555555555\tWhat are semiconductors? -> $x: ($x, get, semiconductor) -> (Rochester, got moved to, the Semiconductor Div) -> Rochester (9969ms)\nWhat are semiconductors?\ttwo subbands\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, is divided in, two subbands) -> two subbands (9935ms)\nWhat are semiconductors?\tquantum mechanics\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are based in, quantum mechanics) -> quantum mechanics (9977ms)\nWhat are semiconductors?\tBrighton\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductor, are based in, Brighton) -> Brighton (9968ms)\nWhat are semiconductors?\tKorea\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, LED technology in, Korea) -> Korea (9985ms)\nWhat are semiconductors?\tprice\t0.555555555555\tWhat are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, rapidly reduce in, price) -> price (9960ms)\nWhat are semiconductors?\t1996\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (1996, has been involved in, the semiconductor industry) -> 1996 (9992ms)\nWhat are semiconductors?\tan EMS provider principal\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (an EMS provider principal, involved in, semiconductor packaging) -> an EMS provider principal (10000ms)\nWhat are semiconductors?\tITC investigation\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (ITC investigation, involving, semi-conductor packages) -> ITC investigation (9992ms)\nWhat are semiconductors?\tsuch maneuver\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (such maneuver, involved, its troubled semiconductor business) -> such maneuver (9992ms)\nWhat are semiconductors?\tthe new materials\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (the new materials, often involve, heavy metal semiconductors) -> the new materials (9992ms)\nWhat are semiconductors?\tsystems\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (systems, involving, electrical and/or semiconductor devices) -> systems (9992ms)\nWhat are semiconductors?\tBangor\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (Bangor, will involve the development of, semiconductor lasers) -> Bangor (9992ms)\nWhat are semiconductors?\tElectronics\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (Electronics, involves, semiconductors) -> Electronics (9992ms)\nWhat are semiconductors?\tThe position\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (The position, will involve work with, semiconductor materials) -> The position (9992ms)\nWhat are semiconductors?\tThe structures\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (The structures, involve, semiconductor layers) -> The structures (9992ms)\nWhat are semiconductors?\tCOB\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (COB, involves mounting, a DRAM or Flash semiconductor) -> COB (9992ms)\nWhat are semiconductors?\tlasers\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (lasers, involve, semiconductor diodes) -> lasers (9992ms)\nWhat are semiconductors?\tThe challenge\t0.555555555554\tWhat are semiconductors? -> $x: ($x, involve, semiconductor) -> (The challenge, involves the physical movement of, semiconductors) -> The challenge (9992ms)\nWhat are semiconductors?\ta layer\t0.444444444443\tWhat are semiconductors? -> $x: ($x, be use as, semiconductor) -> (a layer, as is commonly used in, semiconductor devices) -> a layer (10000ms)\nWhat are semiconductors?\tThe nylon\t0.444444444443\tWhat are semiconductors? -> $x: ($x, be use as, semiconductor) -> (The nylon, is used as, a semi-conductor) -> The nylon (10000ms)\nWhat are semiconductors?\tgermanium\t0.444444444443\tWhat are semiconductors? -> $x: ($x, be use as, semiconductor) -> (germanium, was first used as, a semi-conductor) -> germanium (10000ms)\nWhat are semiconductors?\tgallium arsenide\t0.444444444443\tWhat are semiconductors? -> $x: ($x, be use as, semiconductor) -> (gallium arsenide, is used as, a compound semiconductor) -> gallium arsenide (10000ms)\nWhat are semiconductors?\tInGaAs\t0.444444444443\tWhat are semiconductors? -> $x: ($x, be use as, semiconductor) -> (InGaAs, is used as, semiconductor material) -> InGaAs (10000ms)\nWhat are semiconductors?\tsilicone\t0.444444444443\tWhat are semiconductors? -> $x: ($x, be use as, semiconductor) -> (silicone, is used as, a semiconductor) -> silicone (10000ms)\nWhat are semiconductors?\ttitanium dioxide\t0.444444444443\tWhat are semiconductors? -> $x: ($x, be use as, semiconductor) -> (titanium dioxide, is used as, the semiconductor) -> titanium dioxide (10000ms)\nWhat are semiconductors?\tThe library\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (The library, contains, common residuals and semiconductor gases) -> The library (10007ms)\nWhat are semiconductors?\ta small electronic device\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (a small electronic device, containing, a semiconductor) -> a small electronic device (10015ms)\nWhat are semiconductors?\tthe package\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (the package, contains, an emptychip-less semi-conductor) -> the package (10000ms)\nWhat are semiconductors?\ta waste water\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (a waste water, contains, a compound semiconductor) -> a waste water (10015ms)\nWhat are semiconductors?\ta package\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (a package, containing, semiconductor devices and desiccant) -> a package (10014ms)\nWhat are semiconductors?\tmobile device\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (mobile device, contains, a much higher compound semiconductor) -> mobile device (10000ms)\nWhat are semiconductors?\ta small internal tube\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (a small internal tube, containing, a semi-conductor sensor) -> a small internal tube (10007ms)\nWhat are semiconductors?\tEach section\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (Each section, contains, a semiconductor 5-year revenue forecast) -> Each section (10007ms)\nWhat are semiconductors?\tThe light\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (The light, contains, the impressive Seoul Semiconductor P7) -> The light (10007ms)\nWhat are semiconductors?\tEvery compact disc player\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (Every compact disc player, contains, a semiconductor laser) -> Every compact disc player (10007ms)\nWhat are semiconductors?\tA tag\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (A tag, contains, a printed circuit board and/or semiconductors) -> A tag (10007ms)\nWhat are semiconductors?\tthe wrap\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (the wrap, contains, the semiconductor material) -> the wrap (10007ms)\nWhat are semiconductors?\tvery tiny mirrors\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (very tiny mirrors, are contained on, a semiconductor chip) -> very tiny mirrors (10014ms)\nWhat are semiconductors?\tThe Jiffy converter\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (The Jiffy converter, contains, a 25amp triac semiconductor) -> The Jiffy converter (10007ms)\nWhat are semiconductors?\tstephen\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (stephen, contains some wonderful work by, semiconductor) -> stephen (10000ms)\nWhat are semiconductors?\tetc\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (etc, contain, semiconductors) -> etc (10014ms)\nWhat are semiconductors?\tdiode technology\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (diode technology, contains, semi-conductors) -> diode technology (10007ms)\nWhat are semiconductors?\tThe Thermator\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (The Thermator, contains, a semi-conductor crystal ?Varmaraf) -> The Thermator (10007ms)\nWhat are semiconductors?\tHDX drives\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (HDX drives, contain, Oxford Semiconductor chipsets) -> HDX drives (10014ms)\nWhat are semiconductors?\tThe panels\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (The panels, contain a layer of, semiconductor) -> The panels (10007ms)\nWhat are semiconductors?\tA Solid State Drive\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (A Solid State Drive, contains, semiconductor microchips) -> A Solid State Drive (10007ms)\nWhat are semiconductors?\tEach module\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (Each module, contains, a semiconductor) -> Each module (10007ms)\nWhat are semiconductors?\tproducts\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (products, containing, semiconductors) -> products (10007ms)\nWhat are semiconductors?\tEach diode\t0.333333333332\tWhat are semiconductors? -> $x: ($x, contain, semiconductor) -> (Each diode, contains, a semiconductor chip) -> Each diode (10007ms)\nWhat are semiconductors?\tFleming\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (Fleming, invented, the vacuum diode) -> Fleming (10022ms)\nWhat are semiconductors?\tthe coil\t0.333333333331\tWhat are semiconductors? -> $x: ($x, cause, diode) -> (the coil, causes a current to flow through, the freewheel diode) -> the coil (10014ms)\nWhat are semiconductors?\tWoodall\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (Woodall, invented, the high-efficiency red light-emitting diodes) -> Woodall (10022ms)\nWhat are semiconductors?\tsuggestion.The problem\t0.333333333331\tWhat are semiconductors? -> $x: ($x, cause, diode) -> (suggestion.The problem, was caused by, two damaged diodes) -> suggestion.The problem (10015ms)\nWhat are semiconductors?\tAT&T\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (AT&T, invented, the diode transistor) -> AT&T (10022ms)\nWhat are semiconductors?\tJr.\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (Jr., invented, the first practical light emitting diode) -> Jr. (10022ms)\nWhat are semiconductors?\tThe 82-year-old\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (The 82-year-old, invented, the LED , or light-emitting diode) -> The 82-year-old (10022ms)\nWhat are semiconductors?\tPhysics\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (Physics, also invented, the first practical light emitting diode) -> Physics (10014ms)\nWhat are semiconductors?\t1904\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (1904, invented, the valve diode) -> 1904 (10022ms)\nWhat are semiconductors?\tsolder voids\t0.333333333331\tWhat are semiconductors? -> $x: ($x, cause, diode) -> (solder voids, cause, diode failure) -> solder voids (10014ms)\nWhat are semiconductors?\tShuji Nakamura\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (Shuji Nakamura, invented, practical blue laser diodes) -> Shuji Nakamura (10022ms)\nWhat are semiconductors?\tMisha Gravenor GE\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (Misha Gravenor GE, invented, the light-emitting diode) -> Misha Gravenor GE (10014ms)\nWhat are semiconductors?\tEastman Kodak\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (Eastman Kodak, with inventing, the first diode device) -> Eastman Kodak (10022ms)\nWhat are semiconductors?\tAmbrose Fleming\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (Ambrose Fleming, invents, the diode tube) -> Ambrose Fleming (10022ms)\nWhat are semiconductors?\t1904 Fleming\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (1904 Fleming, invented, the diode thermionic valve and) -> 1904 Fleming (10022ms)\nWhat are semiconductors?\tan employee\t0.333333333331\tWhat are semiconductors? -> $x: ($x, invent, diode) -> (an employee, invented, the blue light-emitting diode) -> an employee (10022ms)\nWhat are semiconductors?\tthe sine wave peaks\t0.333333333331\tWhat are semiconductors? -> $x: ($x, cause, diode) -> (the sine wave peaks, is caused by, the diodes) -> the sine wave peaks (10021ms)\nWhat are semiconductors?\tthe voltage drop\t0.333333333331\tWhat are semiconductors? -> $x: ($x, cause, diode) -> (the voltage drop, caused by, the diodes) -> the voltage drop (10015ms)\nWhat are semiconductors?\tany voltage drop\t0.333333333331\tWhat are semiconductors? -> $x: ($x, cause, diode) -> (any voltage drop, caused by, the diode splitter and cabling) -> any voltage drop (10022ms)\nWhat are semiconductors?\tthe Walkway.They\t0.33333333333\tWhat are semiconductors? -> $x: ($x, re, diode) -> (the Walkway.They, 're, LEDs , light-emitting diodes) -> the Walkway.They (10022ms)\nWhat are semiconductors?\tlet?s\t0.22222222222300003\tWhat are semiconductors? -> $x: ($x, demonstrate, semiconductor) -> (let?s, demonstrate our technique with, one semiconductor) -> let?s (10029ms)\nWhat are semiconductors?\ta proven model\t0.22222222222300003\tWhat are semiconductors? -> $x: ($x, demonstrate, semiconductor) -> (a proven model, demonstrated in, the semiconductor industry) -> a proven model (10029ms)\nWhat are semiconductors?\tThe fundamental architecture\t0.22222222222200005\tWhat are semiconductors? -> $x: ($x, implement, semiconductor) -> (The fundamental architecture, implemented on, Jazz Semiconductor) -> The fundamental architecture (10029ms)\nWhat are semiconductors?\tvarious Technical Committees\t0.22222222222200005\tWhat are semiconductors? -> $x: ($x, concerned, semiconductor) -> (various Technical Committees, concerned with, Semiconductors) -> various Technical Committees (10029ms)\nWhat are semiconductors?\tpatents\t0.22222222222200005\tWhat are semiconductors? -> $x: ($x, concerned, semiconductor) -> (patents, concerning, semiconductor and optical technology) -> patents (10029ms)\nWhat are semiconductors?\tgallium nitride\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (gallium nitride, is used in, light-emitting diodes) -> gallium nitride (10069ms)\nWhat are semiconductors?\tLaser light\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Laser light, is generated in, a laser diode) -> Laser light (10054ms)\nWhat are semiconductors?\tMichael J. Owens\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Michael J. Owens, invented, the modern glass industry) -> Michael J. Owens (10064ms)\nWhat are semiconductors?\ta term\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a term, invented by, the security industry) -> a term (10078ms)\nWhat are semiconductors?\tQR Codes\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (QR Codes, were invented by, the auto industry) -> QR Codes (10054ms)\nWhat are semiconductors?\tthe details\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the details, can be found in, the non-diode laser sales) -> the details (10073ms)\nWhat are semiconductors?\tthe current flow\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the current flow, is always in, the diode) -> the current flow (10049ms)\nWhat are semiconductors?\tThe reverse voltage\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The reverse voltage, occurs in, a Zener Diode) -> The reverse voltage (10073ms)\nWhat are semiconductors?\tAmericans\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Americans, invented, the oil industry) -> Americans (10064ms)\nWhat are semiconductors?\tNobody\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Nobody, has invented, the perfect affiliate industry place) -> Nobody (10073ms)\nWhat are semiconductors?\tThe transistor sensor\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The transistor sensor, is used in, diode mode) -> The transistor sensor (10078ms)\nWhat are semiconductors?\tproject management\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (project management, was invented fresh for, this industry) -> project management (10082ms)\nWhat are semiconductors?\tKey Hub FedEx\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Key Hub FedEx, invented, an industry) -> Key Hub FedEx (10082ms)\nWhat are semiconductors?\tDrivingSales\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (DrivingSales, invented, the industry) -> DrivingSales (10069ms)\nWhat are semiconductors?\tthree samples\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (three samples, is plotted in, Single Mode Diodes Data) -> three samples (10064ms)\nWhat are semiconductors?\tZenith\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Zenith, has invented, countless industry-leading developments) -> Zenith (10082ms)\nWhat are semiconductors?\tNokia\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Nokia, had invented, this industry) -> Nokia (10035ms)\nWhat are semiconductors?\tEnron\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Enron, invented, the global warming industry) -> Enron (10042ms)\nWhat are semiconductors?\tthe signal\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the signal, then used in, a balanced diode ring mixer) -> the signal (10078ms)\nWhat are semiconductors?\tthe city\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the city, invented, the advertising industry) -> the city (10048ms)\nWhat are semiconductors?\ta few short years Swanson and Boyer\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a few short years Swanson and Boyer, invented, a new industry) -> a few short years Swanson and Boyer (10049ms)\nWhat are semiconductors?\tFirst Research\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (First Research, invented, its Industry Profiles) -> First Research (10073ms)\nWhat are semiconductors?\tforward drop\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (forward drop, can make current in, each diode) -> forward drop (10069ms)\nWhat are semiconductors?\tWhat current\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (What current, is a forward bias current in, a diode) -> What current (10082ms)\nWhat are semiconductors?\tsurvivors\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (survivors, invent, a new entertainment industry) -> survivors (10064ms)\nWhat are semiconductors?\tstorm\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (storm, invented, the now ubiquitous industry term) -> storm (10059ms)\nWhat are semiconductors?\tIBM and Motorola\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (IBM and Motorola, invented, their successor industries decades) -> IBM and Motorola (10029ms)\nWhat are semiconductors?\tEmily Kendal Frey\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Emily Kendal Frey, are in, diode) -> Emily Kendal Frey (10078ms)\nWhat are semiconductors?\tGod\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (God, invent, the paper industry) -> God (10042ms)\nWhat are semiconductors?\tJakob?s poems\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Jakob?s poems, have appeared in, diode) -> Jakob?s poems (10042ms)\nWhat are semiconductors?\tThe GaAlAs diodes\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The GaAlAs diodes, are used both in, diode lasers) -> The GaAlAs diodes (10042ms)\nWhat are semiconductors?\ttrifilar 1:1 transformers\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (trifilar 1:1 transformers, are used in, diode ring mixers) -> trifilar 1:1 transformers (10064ms)\nWhat are semiconductors?\tthe DSR6U600P5\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the DSR6U600P5, are housed in, Diodes) -> the DSR6U600P5 (10082ms)\nWhat are semiconductors?\tthe laser effect\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the laser effect, works In, a laser diode) -> the laser effect (10069ms)\nWhat are semiconductors?\tthe Visionary\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the Visionary, Invented, the Cell Phone Industry) -> the Visionary (10064ms)\nWhat are semiconductors?\tDale Carnegie\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Dale Carnegie, invented, the self-help workshop industry) -> Dale Carnegie (10059ms)\nWhat are semiconductors?\tRaymond\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Raymond, invented, the industry ?s) -> Raymond (10073ms)\nWhat are semiconductors?\ta company\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a company, actually invents, an industry) -> a company (10054ms)\nWhat are semiconductors?\tKey-switches\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Key-switches, wired in, an 8x8 array   with diodes) -> Key-switches (10054ms)\nWhat are semiconductors?\tVoltage-balance\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Voltage-balance, limits in, four-level diode-clamped converters) -> Voltage-balance (10073ms)\nWhat are semiconductors?\tThe biggest jump\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The biggest jump, will be the increase in, light emitting diode) -> The biggest jump (10029ms)\nWhat are semiconductors?\tfaster testing\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (faster testing, enable developments in, laser diode drivers) -> faster testing (10073ms)\nWhat are semiconductors?\tan open ethos\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (an open ethos, can re-invent, an industry) -> an open ethos (10059ms)\nWhat are semiconductors?\tThe MOSFET\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The MOSFET, has a built in, shunt diode) -> The MOSFET (10059ms)\nWhat are semiconductors?\tPino\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Pino, virtually invented, the romance novel industry) -> Pino (10054ms)\nWhat are semiconductors?\tFigure 24\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Figure 24, is typically used in, smaller diodes) -> Figure 24 (10073ms)\nWhat are semiconductors?\tLaser technology\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Laser technology, has a built in, laser diode) -> Laser technology (10073ms)\nWhat are semiconductors?\tThe failure\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The failure, might be in, the LED diode) -> The failure (10078ms)\nWhat are semiconductors?\tThe power\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The power, lost in, the diode) -> The power (10029ms)\nWhat are semiconductors?\tRich Santulli\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Rich Santulli, invented, the fractional-ownership industry) -> Rich Santulli (10035ms)\nWhat are semiconductors?\tColonel Sanders\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Colonel Sanders, invented, the fast-food industry) -> Colonel Sanders (10064ms)\nWhat are semiconductors?\tthe federally registered name\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the federally registered name, invented, this industry) -> the federally registered name (10082ms)\nWhat are semiconductors?\tthe Internet\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the Internet, was invented specifically for, the AEC industry) -> the Internet (10069ms)\nWhat are semiconductors?\tGaAs\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (GaAs, is used in, light-emitting diodes) -> GaAs (10035ms)\nWhat are semiconductors?\ttemperature\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (temperature, is a factor in, the diode equation) -> temperature (10042ms)\nWhat are semiconductors?\tEdison\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Edison, invented, the modern electric utility industry) -> Edison (10082ms)\nWhat are semiconductors?\ta water-proof paint\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a water-proof paint, was invented for, the movie industry) -> a water-proof paint (10035ms)\nWhat are semiconductors?\tTerman?s Radio Research lab\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Terman?s Radio Research lab, invented, an industry) -> Terman?s Radio Research lab (10082ms)\nWhat are semiconductors?\tTaher\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Taher, invented, several industry) -> Taher (10059ms)\nWhat are semiconductors?\tItaly\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Italy, practically invented, this cottage industry) -> Italy (10078ms)\nWhat are semiconductors?\tJust the opposite\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Just the opposite, occurs in, optical diodes) -> Just the opposite (10078ms)\nWhat are semiconductors?\tSiC?s speed\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (SiC?s speed, has been exploited in, Schottky diodes) -> SiC?s speed (10042ms)\nWhat are semiconductors?\tSemiconductors\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Semiconductors, are used in, diodes) -> Semiconductors (10064ms)\nWhat are semiconductors?\tThe 10 digit hex code\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The 10 digit hex code, is stored in, a diode matrix) -> The 10 digit hex code (10042ms)\nWhat are semiconductors?\tthe first one\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the first one, invented, a new fashion industry) -> the first one (10082ms)\nWhat are semiconductors?\tTIA members\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (TIA members, invented, the freight brokering industry) -> TIA members (10082ms)\nWhat are semiconductors?\tThe GIA\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (The GIA, invented, the industry) -> The GIA (10029ms)\nWhat are semiconductors?\tthe substances\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the substances, included in, the diode) -> the substances (10069ms)\nWhat are semiconductors?\tElizabeth Arden\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Elizabeth Arden, invented, the American beauty industry) -> Elizabeth Arden (10054ms)\nWhat are semiconductors?\tNd:YLF\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Nd:YLF, are common in, diode-pumped lasers) -> Nd:YLF (10073ms)\nWhat are semiconductors?\tthe cheaper ones\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the cheaper ones, are in, the LED diode) -> the cheaper ones (10054ms)\nWhat are semiconductors?\tthe detectors\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the detectors, working in, the event of a diode fault) -> the detectors (10078ms)\nWhat are semiconductors?\tcommunications\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (communications, were invented by, industry) -> communications (10054ms)\nWhat are semiconductors?\tLatest News LCC\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Latest News LCC, helped invent, the wireless industry) -> Latest News LCC (10042ms)\nWhat are semiconductors?\t1 Question\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (1 Question, is a forward bias current in, a diode) -> 1 Question (10054ms)\nWhat are semiconductors?\tThe X-rays\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The X-rays, are photoelectrically absorbed in, the PIN diodes) -> The X-rays (10035ms)\nWhat are semiconductors?\tEnglish\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (English, has recently published poems in, Diode) -> English (10069ms)\nWhat are semiconductors?\tnow this substrate\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (now this substrate, stayed in, the diode) -> now this substrate (10054ms)\nWhat are semiconductors?\ta transcontinental railroad\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a transcontinental railroad, invented, the automobile industry) -> a transcontinental railroad (10082ms)\nWhat are semiconductors?\tTexas\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Texas, practically invented, the industry) -> Texas (10049ms)\nWhat are semiconductors?\tthe globe\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the globe, are re-inventing, their industries) -> the globe (10059ms)\nWhat are semiconductors?\tMosfets\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Mosfets, have a built in, diode) -> Mosfets (10082ms)\nWhat are semiconductors?\telectron movement\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (electron movement, takes place in, many diodes) -> electron movement (10069ms)\nWhat are semiconductors?\tmodern humans\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (modern humans, invented, a new industry) -> modern humans (10082ms)\nWhat are semiconductors?\ta legal concept\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a legal concept, invented by, the biotech industry) -> a legal concept (10054ms)\nWhat are semiconductors?\tIndirect clamping\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Indirect clamping, is also a problem in, the diode structures) -> Indirect clamping (10049ms)\nWhat are semiconductors?\tprice Increased brightness\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (price Increased brightness, has allowed a reduction in, diodes) -> price Increased brightness (10049ms)\nWhat are semiconductors?\ta funny word\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a funny word, was invented purely for, the wine industry) -> a funny word (10073ms)\nWhat are semiconductors?\tenergy levels\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (energy levels, change in, the semiconductor diode) -> energy levels (10042ms)\nWhat are semiconductors?\tThe devil\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The devil, 's in, the diodes) -> The devil (10073ms)\nWhat are semiconductors?\tthe MD-2010/2015\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the MD-2010/2015, is a breakthrough in, diode array technology) -> the MD-2010/2015 (10029ms)\nWhat are semiconductors?\tLEDs/SLDs\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (LEDs/SLDs, are frequently arranged in, multiple-diode clusters) -> LEDs/SLDs (10054ms)\nWhat are semiconductors?\tA resistor\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (A resistor, placed in, series with the commutating diode) -> A resistor (10078ms)\nWhat are semiconductors?\ta barrier potential\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (a barrier potential, is formed in, a p-n junction diode) -> a barrier potential (10059ms)\nWhat are semiconductors?\teBay\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (eBay, invented, a new industry) -> eBay (10078ms)\nWhat are semiconductors?\tIBM Fellows\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (IBM Fellows, have invented some of, the industry) -> IBM Fellows (10035ms)\nWhat are semiconductors?\tthe SPDT switch\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the SPDT switch, is used in, the dual diode matrix) -> the SPDT switch (10069ms)\nWhat are semiconductors?\tAutomated Food Systems\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Automated Food Systems, invented, an industry) -> Automated Food Systems (10042ms)\nWhat are semiconductors?\tRecent work\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Recent work, has appeared in, diode) -> Recent work (10082ms)\nWhat are semiconductors?\tJobs\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Jobs, did n?t invent, the industry) -> Jobs (10035ms)\nWhat are semiconductors?\tCree\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Cree, is a leader in, light-emitting diode technology) -> Cree (10073ms)\nWhat are semiconductors?\tthe diode voltage\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the diode voltage, drops in, the transistor and diode) -> the diode voltage (10035ms)\nWhat are semiconductors?\tthe researchers\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the researchers, happens in, a silicon diode) -> the researchers (10069ms)\nWhat are semiconductors?\tthe 2 coils\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the 2 coils, are in parallel with, a diode) -> the 2 coils (10059ms)\nWhat are semiconductors?\ta country\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a country, invented, industry) -> a country (10078ms)\nWhat are semiconductors?\tComes\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Comes, invented for, the food service industry) -> Comes (10054ms)\nWhat are semiconductors?\tthe LED devices\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the LED devices, are in, a p-i-n diode configuration) -> the LED devices (10042ms)\nWhat are semiconductors?\tNews LCC\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (News LCC, helped invent, the wireless industry) -> News LCC (10064ms)\nWhat are semiconductors?\tT2 basically\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (T2 basically, just stands in for, a zener diode) -> T2 basically (10073ms)\nWhat are semiconductors?\tAstroTurf ?\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (AstroTurf ?, invented, the synthetic turf industry) -> AstroTurf ? (10064ms)\nWhat are semiconductors?\treliability problems\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (reliability problems, will be discussed in, diode type devices) -> reliability problems (10064ms)\nWhat are semiconductors?\tnight\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (night, are showing interest in, light emitting diodes) -> night (10029ms)\nWhat are semiconductors?\tVR curves\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (VR curves, are found in, the diode datasheet) -> VR curves (10073ms)\nWhat are semiconductors?\tDiamond Peel\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Diamond Peel, was thrown in with, my underarm diode session) -> Diamond Peel (10059ms)\nWhat are semiconductors?\ta specific wavelength\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (a specific wavelength, generated in, the diode) -> a specific wavelength (10049ms)\nWhat are semiconductors?\t1953\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (1953, singlehandedly invented, the industry) -> 1953 (10059ms)\nWhat are semiconductors?\tdynamic programming\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (dynamic programming, is invented in, industries) -> dynamic programming (10073ms)\nWhat are semiconductors?\tthe speculators\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the speculators, invent, new industries) -> the speculators (10035ms)\nWhat are semiconductors?\tNetflix\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Netflix, practically invented, this industry) -> Netflix (10029ms)\nWhat are semiconductors?\tthe nation?s ability\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the nation?s ability, invent, new industries) -> the nation?s ability (10049ms)\nWhat are semiconductors?\tthe electron tunneling effect\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the electron tunneling effect, used in, these diodes) -> the electron tunneling effect (10042ms)\nWhat are semiconductors?\tA typed version\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (A typed version, is in, the Diode Characteristics note) -> A typed version (10069ms)\nWhat are semiconductors?\ta way Lee Iacocca\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (a way Lee Iacocca, invented, the modern carseat industry) -> a way Lee Iacocca (10054ms)\nWhat are semiconductors?\tDr. Elgamal\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Dr. Elgamal, invented, several industry) -> Dr. Elgamal (10064ms)\nWhat are semiconductors?\tQuestion\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Question, is a forward bias current in, a diode) -> Question (10029ms)\nWhat are semiconductors?\tgallium\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (gallium, are used in, light-emitting diodes) -> gallium (10064ms)\nWhat are semiconductors?\tthe real hackers\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (the real hackers, invented, the modern computer industry) -> the real hackers (10042ms)\nWhat are semiconductors?\tBunchball\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Bunchball, invented, the gamification industry) -> Bunchball (10059ms)\nWhat are semiconductors?\tThe diode-pumped laser source\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The diode-pumped laser source, excels in, high diode life) -> The diode-pumped laser source (10059ms)\nWhat are semiconductors?\thandily\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (handily, invented, the American wine industry) -> handily (10049ms)\nWhat are semiconductors?\tSamuel Colt\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Samuel Colt, invented, the modern firearm industry) -> Samuel Colt (10035ms)\nWhat are semiconductors?\tcompany\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (company, invented, the industry) -> company (10049ms)\nWhat are semiconductors?\tthe power\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the power, may increase resulting in, laser diode destruction) -> the power (10049ms)\nWhat are semiconductors?\tA chimera\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (A chimera, invented by, an industry) -> A chimera (10059ms)\nWhat are semiconductors?\tThe largest opportunity\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The largest opportunity, is in, the light-emitting diodes) -> The largest opportunity (10078ms)\nWhat are semiconductors?\tThe reason\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The reason, is in taking, real diodes) -> The reason (10069ms)\nWhat are semiconductors?\ttwo different effects\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (two different effects, are used in, Zener diodes) -> two different effects (10082ms)\nWhat are semiconductors?\tideas\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (ideas, invent, whole new industries) -> ideas (10078ms)\nWhat are semiconductors?\tISG\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (ISG, essentially re-invented, the American steel industry) -> ISG (10078ms)\nWhat are semiconductors?\tan umbrella term\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (an umbrella term, invented for, industry convenience) -> an umbrella term (10069ms)\nWhat are semiconductors?\tMuch higher power\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Much higher power, is available in, diode lasers) -> Much higher power (10035ms)\nWhat are semiconductors?\tthe 100000 ohm load\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (the 100000 ohm load, is lost in, the PIN diode) -> the 100000 ohm load (10059ms)\nWhat are semiconductors?\tThe IR module\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (The IR module, contains a built in, photo diode) -> The IR module (10035ms)\nWhat are semiconductors?\tnonstandard standards\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (nonstandard standards, were invented by, the computer industry) -> nonstandard standards (10042ms)\nWhat are semiconductors?\tSemiconductor Manufacture\t0.22222222222\tWhat are semiconductors? -> $x: ($x, in, diode) -> (Semiconductor Manufacture, Organizations in this industry, Diodes Incorporated) -> Semiconductor Manufacture (10078ms)\nWhat are semiconductors?\tBob Circosta\t0.22222222222\tWhat are semiconductors? -> $x: ($x, invent, industry) -> (Bob Circosta, helped invent, an entirely new industry) -> Bob Circosta (10069ms)\nWhat is sodium chloride?\tfurther evaporation\t0.111111111111\tWhat is sodium chloride? -> $x: ($x, cause, sodium chloride) -> (further evaporation, causes, pure Sodium Chloride) -> further evaporation (1271ms)\nWhat is sodium chloride?\tSpray\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Spray, Formulations available in this form, Sodium chloride 26 spray) -> Spray (1271ms)\nWhat is sodium chloride?\tcommon\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (common, found in, Sodium chloride) -> common (2492ms)\nWhat is sodium chloride?\tDrug\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Drug, Drug formulations in this category, Sodium chloride 0.9 injection) -> Drug (7021ms)\nWhat is sodium chloride?\tPregnancy Category C (FDA)\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Pregnancy Category C (FDA), Drugs in this category, Sodium chloride/Potassium chloride/Magnesium chloride/Sodium acetate/Sodium lactate/Calcium chloride) -> Pregnancy Category C (FDA) (7021ms)\nWhat is sodium chloride?\tthe sample\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the sample, might be immersed in, a sodium chloride solution) -> the sample (1271ms)\nWhat is sodium chloride?\tPellet\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Pellet, Formulations available in this form, Sodium chloride 30 pellet) -> Pellet (6507ms)\nWhat is sodium chloride?\tTable salt\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Table salt, is rich in, sodium chloride) -> Table salt (6949ms)\nWhat is sodium chloride?\ta brine\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (a brine, saturated in, sodium chloride) -> a brine (2492ms)\nWhat is sodium chloride?\ttetanus toxoids\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (tetanus toxoids, suspended in, isotonic sodium chloride solution) -> tetanus toxoids (1832ms)\nWhat is sodium chloride?\tThe springs\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (The springs, are rich in, sodium chloride) -> The springs (2492ms)\nWhat is sodium chloride?\tThe sample\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (The sample, is dissolved in, acetone/aqueous sodium chloride) -> The sample (4243ms)\nWhat is sodium chloride?\tBOTOX\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (BOTOX, is suspended in, sodium chloride) -> BOTOX (4243ms)\nWhat is sodium chloride?\tThe complex\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (The complex, is dissolved in, sterile sodium chloride solution) -> The complex (4192ms)\nWhat is sodium chloride?\tSolution\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Solution, Formulations available in this form, Sodium chloride 50 solution) -> Solution (6176ms)\nWhat is sodium chloride?\tthe probes\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the probes, are placed in, a solution containing sodium chloride) -> the probes (3629ms)\nWhat is sodium chloride?\tplastic containers\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (plastic containers, are available in, both sodium chloride) -> plastic containers (6507ms)\nWhat is sodium chloride?\tthe skin surface\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the skin surface, is usually low in, sodium and chloride) -> the skin surface (1832ms)\nWhat is sodium chloride?\telectrodes\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (electrodes, are in, a sodium chloride) -> electrodes (3629ms)\nWhat is sodium chloride?\tBUSULFEX\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (BUSULFEX, diluted in, 0.9 % Sodium Chloride Injection) -> BUSULFEX (6949ms)\nWhat is sodium chloride?\trats\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (rats, are deficient in, sodium chloride) -> rats (4243ms)\nWhat is sodium chloride?\t200 mg/kg\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (200 mg/kg, suspended in, 0.9 % sodium chloride solution) -> 200 mg/kg (6949ms)\nWhat is sodium chloride?\tneurons\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (neurons, are bathed in, a sodium chloride solution) -> neurons (2367ms)\nWhat is sodium chloride?\tChlorides Saline hot springs\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Chlorides Saline hot springs, are rich in, sodium chloride) -> Chlorides Saline hot springs (6949ms)\nWhat is sodium chloride?\t20 mg\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (20 mg, formulated in, 17.4 mg sodium chloride) -> 20 mg (1832ms)\nWhat is sodium chloride?\tNabi-HB?\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Nabi-HB?, is formulated in, 0.075 M sodium chloride) -> Nabi-HB? (6949ms)\nWhat is sodium chloride?\tthe water\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the water, is rich in, sodium chloride) -> the water (4192ms)\nWhat is sodium chloride?\t38 % water\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (38 % water, immersed in, 0.9 % sodium chloride solution) -> 38 % water (1468ms)\nWhat is sodium chloride?\tHomeopathic\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Homeopathic, Drug formulations in this category, Sodium chloride 30 pellet) -> Homeopathic (4243ms)\nWhat is sodium chloride?\tthe chloride\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the chloride, found in, sodium chloride) -> the chloride (4243ms)\nWhat is sodium chloride?\tSolution/drops\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Solution/drops, Formulations available in this form, Sodium chloride 50 solution/drops) -> Solution/drops (6507ms)\nWhat is sodium chloride?\tinsects\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (insects, dissected in, cold 0.25 M sodium chloride) -> insects (6507ms)\nWhat is sodium chloride?\tInjectable\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Injectable, Formulations available in this form, Heparin sodium in sodium chloride 2 injection) -> Injectable (6949ms)\nWhat is sodium chloride?\tInjection\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Injection, is reconstituted in, 0.9 % sodium chloride) -> Injection (4243ms)\nWhat is sodium chloride?\tSweat losses\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Sweat losses, generate large losses in, sodium and chloride) -> Sweat losses (1832ms)\nWhat is sodium chloride?\thuman serum\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (human serum, diluted in, a sodium chloride solution) -> human serum (3629ms)\nWhat is sodium chloride?\tLe Tresor\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Le Tresor, is also lower in, sodium chloride content) -> Le Tresor (1271ms)\nWhat is sodium chloride?\t10 mg\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (10 mg, formulated in, 17.4 mg sodium chloride) -> 10 mg (6507ms)\nWhat is sodium chloride?\tA lead anode\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (A lead anode, placed in, a sodium chloride solution) -> A lead anode (1832ms)\nWhat is sodium chloride?\tsodium\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (sodium, (usually found in, sodium chloride form) -> sodium (1468ms)\nWhat is sodium chloride?\tample other minerals\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (ample other minerals, are insufficient in, sodium chloride) -> ample other minerals (6949ms)\nWhat is sodium chloride?\tLotion\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Lotion, Formulations available in this form, Sodium chloride 0.0065 lotion) -> Lotion (7021ms)\nWhat is sodium chloride?\tDead Sea Bath Salts\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Dead Sea Bath Salts, are low in, Sodium Chloride) -> Dead Sea Bath Salts (2492ms)\nWhat is sodium chloride?\tIrrigant\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Irrigant, Formulations available in this form, Sodium chloride 4.5 irrigant) -> Irrigant (3629ms)\nWhat is sodium chloride?\tThe product\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (The product, is formulated in, 9 mg/mL sodium chloride) -> The product (6176ms)\nWhat is sodium chloride?\tUSP\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (USP, diluted in, Sodium Chloride Injection) -> USP (4192ms)\nWhat is sodium chloride?\tOintment\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Ointment, Formulations available in this form, Sodium chloride 50 ointment) -> Ointment (4192ms)\nWhat is sodium chloride?\tInjectable concentrate solution\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Injectable concentrate solution, Formulations available in this form, Sodium chloride 146 injectable concentrate solution) -> Injectable concentrate solution (1832ms)\nWhat is sodium chloride?\tSolid\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Solid, Compounds in this phase at STP, Sodium chloride) -> Solid (1271ms)\nWhat is sodium chloride?\tTAXOL\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (TAXOL, should be diluted in, 0.9 % Sodium Chloride Injection) -> TAXOL (6507ms)\nWhat is sodium chloride?\tCeltic Sea Salt\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Celtic Sea Salt, is lower in, sodium and chloride) -> Celtic Sea Salt (2492ms)\nWhat is sodium chloride?\tHuman skin\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Human skin, preserved in, anhydric sodium chloride) -> Human skin (4243ms)\nWhat is sodium chloride?\tInjectable solution\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Injectable solution, Formulations available in this form, Sodium chloride 30 injectable solution) -> Injectable solution (7021ms)\nWhat is sodium chloride?\tAldurazyme\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Aldurazyme, was diluted in, 0.9 % sodium chloride) -> Aldurazyme (1468ms)\nWhat is sodium chloride?\tPregnancy Category X (FDA)\t-0.0\tWhat is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Pregnancy Category X (FDA), Drugs in this category, Follitropin/Sodium chloride) -> Pregnancy Category X (FDA) (6949ms)\nWhat is sodium chloride?\tthe job\t-0.111111111111\tWhat is sodium chloride? -> $x: (sodium chloride, do, $x) -> (a food crisis sodium chloride, can also do, the job) -> the job (7021ms)\nWhat is sodium chloride?\tthe normal individual\t-0.111111111111\tWhat is sodium chloride? -> $x: (sodium chloride, do, $x) -> (cent more sodium and chloride, did, the normal individual) -> the normal individual (7021ms)\nWhat is sodium chloride?\tmaintenance\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is required for, maintenance) -> maintenance (7038ms)\nWhat is sodium chloride?\tfactories\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is fine for, factories) -> factories (7021ms)\nWhat is sodium chloride?\tKeratin\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is bad for, Keratin) -> Keratin (7038ms)\nWhat is sodium chloride?\tsalt\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is the chemical name for, salt) -> salt (7038ms)\nWhat is sodium chloride?\tdogs and cats\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium and chloride, are important minerals for, dogs and cats) -> dogs and cats (7055ms)\nWhat is sodium chloride?\trelief\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (potassium sorbate and sodium chloride Lotion, is for, relief) -> relief (7039ms)\nWhat is sodium chloride?\tuse\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (0.9 % Sodium Chloride Injection USP, is also indicated for, use) -> use (7072ms)\nWhat is sodium chloride?\tanimal life\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is essential for, animal life) -> animal life (7021ms)\nWhat is sodium chloride?\tvarious purposes\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride or carbonate, are marketed for, various purposes) -> various purposes (7055ms)\nWhat is sodium chloride?\tcalcium absorption\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, do, sodium chloride) -> (calcium absorption, do, sodium and chloride) -> calcium absorption (7021ms)\nWhat is sodium chloride?\thealth\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Salt ? sodium chloride ?, is an element essential for, health) -> health (7055ms)\nWhat is sodium chloride?\tthe vinegar\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (the vinegar, produces, sodium acetate and hydrogen chloride) -> the vinegar (7055ms)\nWhat is sodium chloride?\tstability\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Calcium chloride and sodium chloride, are added for, stability) -> stability (7055ms)\nWhat is sodium chloride?\tMineral water\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, characterize, sodium chloride) -> (Mineral water, is characterized by, chloride sodium composition) -> Mineral water (7072ms)\nWhat is sodium chloride?\tan equal benefit\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, do, sodium chloride) -> (an equal benefit, does, isotonic sodium chloride) -> an equal benefit (7072ms)\nWhat is sodium chloride?\tparenteral maintenance\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, are suited for, parenteral maintenance) -> parenteral maintenance (7038ms)\nWhat is sodium chloride?\t2/3\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is present for, 2/3) -> 2/3 (7038ms)\nWhat is sodium chloride?\tthe application\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (99 % sodium chloride rejection, is adequate for, the application) -> the application (7055ms)\nWhat is sodium chloride?\tdry\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (This sodium chloride free formula, is recommended for, dry) -> dry (7055ms)\nWhat is sodium chloride?\t35 days\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (0.9 % sodium chloride, were stable for, 35 days) -> 35 days (7038ms)\nWhat is sodium chloride?\tosmosis\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium and chloride, are necessary for maintaining, osmosis) -> osmosis (7021ms)\nWhat is sodium chloride?\trefrigeration purposes\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride brine, is used for, refrigeration purposes) -> refrigeration purposes (7038ms)\nWhat is sodium chloride?\tLithium chloride destroys hydrogen bonds\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, do, sodium chloride) -> (Lithium chloride destroys hydrogen bonds, does, sodium chloride) -> Lithium chloride destroys hydrogen bonds (7038ms)\nWhat is sodium chloride?\tlife\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is necessary for, life) -> life (7039ms)\nWhat is sodium chloride?\thigher refraction indices\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, do, sodium chloride) -> (higher refraction indices, does, sodium chloride) -> higher refraction indices (7072ms)\nWhat is sodium chloride?\tmedicinal purposes\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is often used for, medicinal purposes) -> medicinal purposes (7055ms)\nWhat is sodium chloride?\tthe body\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (The sodium chloride content, is quite useful for, the body) -> the body (7055ms)\nWhat is sodium chloride?\tparenteral replacement\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, are suitable for, parenteral replacement) -> parenteral replacement (7038ms)\nWhat is sodium chloride?\tchemicals\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (chemicals, produces, sodium chloride) -> chemicals (7055ms)\nWhat is sodium chloride?\tsalty conditions\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (salty conditions, produce a high amount of, sodium chloride) -> salty conditions (7055ms)\nWhat is sodium chloride?\tthe meat\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, do, sodium chloride) -> (the meat, did, the sodium chloride) -> the meat (7038ms)\nWhat is sodium chloride?\tLiving cells\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, do, sodium chloride) -> (Living cells, do depend on, sodium chloride) -> Living cells (7072ms)\nWhat is sodium chloride?\twinter road deicing\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is traditionally used for, winter road deicing) -> winter road deicing (7021ms)\nWhat is sodium chloride?\tThe purest salty taste\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (The purest salty taste, is produced by, sodium chloride) -> The purest salty taste (7038ms)\nWhat is sodium chloride?\tbuffers\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is preferred particularly for, buffers) -> buffers (7021ms)\nWhat is sodium chloride?\thuman consumption\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is obtained for, human consumption) -> human consumption (7038ms)\nWhat is sodium chloride?\tyears\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium and potassium and chloride, can be stable for, years) -> years (7021ms)\nWhat is sodium chloride?\tprescriptions\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, do, sodium chloride) -> (prescriptions, did, chloride sodium guanosine organic) -> prescriptions (7038ms)\nWhat is sodium chloride?\tindustry\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is already being produced for, industry) -> industry (7055ms)\nWhat is sodium chloride?\taddictions\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, was an effective treatment for, addictions) -> addictions (7072ms)\nWhat is sodium chloride?\ttreatment\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is used more for, treatment) -> treatment (7072ms)\nWhat is sodium chloride?\tany length\t-0.111111111112\tWhat is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride can?t, be stored for, any length) -> any length (7072ms)\nWhat is sodium chloride?\tthe TEMPO\t-0.111111111112\tWhat is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (the TEMPO, produces, sodium chloride) -> the TEMPO (7055ms)\nWhat is sodium chloride?\tThe Merck Index\t-0.222222222222\tWhat is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (The Merck Index, refers to, sodium chloride) -> The Merck Index (7072ms)\nWhat is sodium chloride?\tcasual English usage\t-0.222222222222\tWhat is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (casual English usage, refers to, sodium chloride) -> casual English usage (7072ms)\nWhat is sodium chloride?\tthe oceans\t-0.222222222222\tWhat is sodium chloride? -> $x: ($x, create, sodium chloride) -> (the oceans, were created with, sodium chloride) -> the oceans (7072ms)\nWhat is sodium chloride?\tlayman\t-0.222222222222\tWhat is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (layman, refers to, sodium chloride) -> layman (7072ms)\nWhat is sodium chloride?\tSodium\t-0.222222222222\tWhat is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (Sodium, is primarily referred to as, compound sodium chloride) -> Sodium (7072ms)\nWhat is sodium chloride?\tthe word\t-0.222222222222\tWhat is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (the word, refers to, sodium chloride) -> the word (7088ms)\nWhat is sodium chloride?\tthe xenon arc\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the xenon arc, causes, the sodium and mercury) -> the xenon arc (7168ms)\nWhat is sodium chloride?\tample dietary potassium\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (ample dietary potassium, causes, sodium pump stimulation) -> ample dietary potassium (7137ms)\nWhat is sodium chloride?\tExcessive aldosterone\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Excessive aldosterone, causes your body to retain, sodium) -> Excessive aldosterone (7167ms)\nWhat is sodium chloride?\tfluid gain\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (fluid gain, caused by, excess sodium) -> fluid gain (7104ms)\nWhat is sodium chloride?\tthe Gerson diet\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the Gerson diet, causes, the sodium level) -> the Gerson diet (7088ms)\nWhat is sodium chloride?\tovernight shipping\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (overnight shipping, may cause, sodium andwater) -> overnight shipping (7137ms)\nWhat is sodium chloride?\ta drug\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (a drug, causes, sodium retention) -> a drug (7121ms)\nWhat is sodium chloride?\tACTH\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (ACTH, caused, sodium retention) -> ACTH (7121ms)\nWhat is sodium chloride?\tthe reduced voltage\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the reduced voltage, causes hundreds of, sodium gates) -> the reduced voltage (7088ms)\nWhat is sodium chloride?\tthe gene\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the gene, initially cause a loss of, sodium) -> the gene (7137ms)\nWhat is sodium chloride?\tany disorder\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (any disorder, causes, low blood sodium) -> any disorder (7137ms)\nWhat is sodium chloride?\tNephritis\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Nephritis, Causes, Low sodium diet) -> Nephritis (7088ms)\nWhat is sodium chloride?\tdrowsiness and dizziness\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (drowsiness and dizziness, caused by, sodium oxybate) -> drowsiness and dizziness (7121ms)\nWhat is sodium chloride?\tthe electrolytes\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the electrolytes, cause, low blood-sodium levels) -> the electrolytes (7152ms)\nWhat is sodium chloride?\tlicorice root\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (licorice root, may cause, sodium retention) -> licorice root (7088ms)\nWhat is sodium chloride?\tCorticosteroids\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Corticosteroids, cause the body to retain, more sodium) -> Corticosteroids (7088ms)\nWhat is sodium chloride?\tantihypertensive medications\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (antihypertensive medications, may cause elevated, sodium levels) -> antihypertensive medications (7121ms)\nWhat is sodium chloride?\tThe hormone aldosterone\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (The hormone aldosterone, causes, sodium and water retention) -> The hormone aldosterone (7137ms)\nWhat is sodium chloride?\tdiuretics\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (diuretics, cause, sodium and water loss) -> diuretics (7152ms)\nWhat is sodium chloride?\tDehydration\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Dehydration, can cause your body to retain, sodium) -> Dehydration (7104ms)\nWhat is sodium chloride?\thigh blood pressure\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (high blood pressure, can cause, sodium deficiency) -> high blood pressure (7137ms)\nWhat is sodium chloride?\tHeart failure\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Heart failure, causes the body to retain, sodium) -> Heart failure (7137ms)\nWhat is sodium chloride?\textreme cases heart failure\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (extreme cases heart failure, are caused by too, much sodium) -> extreme cases heart failure (7104ms)\nWhat is sodium chloride?\tendurance sports\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (endurance sports, causes, the sodium) -> endurance sports (7152ms)\nWhat is sodium chloride?\textreme moisture exposure\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (extreme moisture exposure, will cause, sodium migration) -> extreme moisture exposure (7121ms)\nWhat is sodium chloride?\theart failure\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (heart failure, causes, the body to hold on to extra sodium) -> heart failure (7167ms)\nWhat is sodium chloride?\tAnabolics\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Anabolics, can cause, nitrogen , sodium , potassium) -> Anabolics (7104ms)\nWhat is sodium chloride?\tEstrogens\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Estrogens, may cause, sodium retention) -> Estrogens (7137ms)\nWhat is sodium chloride?\tMedrol\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Medrol, causes, less water and sodium retention) -> Medrol (7088ms)\nWhat is sodium chloride?\tprednisone\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (prednisone, can cause, sodium retention) -> prednisone (7105ms)\nWhat is sodium chloride?\tHIGH BLOOD PRESSURE\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (HIGH BLOOD PRESSURE, May be caused by too, much sodium) -> HIGH BLOOD PRESSURE (7152ms)\nWhat is sodium chloride?\tWhole licorice\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Whole licorice, can cause, sodium retention) -> Whole licorice (7167ms)\nWhat is sodium chloride?\tfurosemide diuretics\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (furosemide diuretics, can cause, sodium) -> furosemide diuretics (7152ms)\nWhat is sodium chloride?\tInsulin\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Insulin, also causes the retention of, sodium) -> Insulin (7152ms)\nWhat is sodium chloride?\tthe Charles River\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the Charles River, appear to have been caused by, sodium) -> the Charles River (7121ms)\nWhat is sodium chloride?\tDrugs\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Drugs, causing, elevated sodium) -> Drugs (7137ms)\nWhat is sodium chloride?\tthe Idaho National Lab\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the Idaho National Lab, caused, a sodium fire) -> the Idaho National Lab (7104ms)\nWhat is sodium chloride?\tProgesterone\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Progesterone, causes a loss of, excess sodium) -> Progesterone (7137ms)\nWhat is sodium chloride?\tfurosemide\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (furosemide, can cause depletion of, sodium) -> furosemide (7121ms)\nWhat is sodium chloride?\tplain water\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (plain water, causes a low concentration of, sodium) -> plain water (7121ms)\nWhat is sodium chloride?\tthirst\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (thirst, causing, sodium) -> thirst (7167ms)\nWhat is sodium chloride?\ttoo much water\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (too much water, can cause your body to lose, sodium) -> too much water (7168ms)\nWhat is sodium chloride?\tNSAID use\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (NSAID use, can cause, sodium retention) -> NSAID use (7104ms)\nWhat is sodium chloride?\tBloating\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Bloating, is caused usually by, excess sodium) -> Bloating (7121ms)\nWhat is sodium chloride?\tSSRI drugs\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (SSRI drugs, have been reported to cause, sodium depletion) -> SSRI drugs (7121ms)\nWhat is sodium chloride?\tturn\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (turn, causes, the sodium/potassium component) -> turn (7088ms)\nWhat is sodium chloride?\tlaxatives\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (laxatives, can cause, water , sodium) -> laxatives (7104ms)\nWhat is sodium chloride?\tKidney Estrogens\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Kidney Estrogens, cause the body to retain, sodium) -> Kidney Estrogens (7167ms)\nWhat is sodium chloride?\tSodium Cisplatin\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Sodium Cisplatin, may cause depletion of, sodium) -> Sodium Cisplatin (7152ms)\nWhat is sodium chloride?\tthe diuretics\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the diuretics, caused a major decrease in, sodium levels) -> the diuretics (7105ms)\nWhat is sodium chloride?\twater\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (water, can cause a low concentration of, sodium) -> water (7121ms)\nWhat is sodium chloride?\tchemical burning\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (chemical burning, caused by, sodium hydroxide) -> chemical burning (7168ms)\nWhat is sodium chloride?\tthe payloads\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the payloads, apparently caused a reaction with, sodium) -> the payloads (7167ms)\nWhat is sodium chloride?\tDiuretics\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Diuretics, cause, the body to excrete more sodium via urine) -> Diuretics (7104ms)\nWhat is sodium chloride?\thigh amounts\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (high amounts, cause the amount of, sodium) -> high amounts (7121ms)\nWhat is sodium chloride?\tAntidepressants\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Antidepressants, may cause the amount of, sodium) -> Antidepressants (7121ms)\nWhat is sodium chloride?\ta stimulus\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (a stimulus, causes, sodium channels to open) -> a stimulus (7137ms)\nWhat is sodium chloride?\tTrileptal\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Trileptal, can cause low levels of, sodium) -> Trileptal (7121ms)\nWhat is sodium chloride?\texcessive ADH\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (excessive ADH, causes, low blood sodium and osmolality) -> excessive ADH (7104ms)\nWhat is sodium chloride?\ta disease\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (a disease, was caused by, high sodium) -> a disease (7168ms)\nWhat is sodium chloride?\tHypernatremia\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Hypernatremia, is rarely caused by, excessive sodium) -> Hypernatremia (7167ms)\nWhat is sodium chloride?\ttimulus\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (timulus, causes, the sodium gates) -> timulus (7137ms)\nWhat is sodium chloride?\tAndrew\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Andrew, to cause, the toxic sodium levels) -> Andrew (7137ms)\nWhat is sodium chloride?\tAldosterone\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Aldosterone, causes, sodium absorption) -> Aldosterone (7152ms)\nWhat is sodium chloride?\tPrednisone\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Prednisone, causes, sodium retention and potassium loss) -> Prednisone (7088ms)\nWhat is sodium chloride?\tKidney stone\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Kidney stone, Causes, High sodium diet) -> Kidney stone (7121ms)\nWhat is sodium chloride?\tmagnesium\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (magnesium, causes retention of, sodium) -> magnesium (7168ms)\nWhat is sodium chloride?\toral contraceptives\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (oral contraceptives, may cause increased levels of, sodium) -> oral contraceptives (7152ms)\nWhat is sodium chloride?\texcessive sweating\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (excessive sweating, may cause a low level of, sodium) -> excessive sweating (7152ms)\nWhat is sodium chloride?\tthe uterus\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (the uterus, causes an abnormal drop in, sodium levels) -> the uterus (7137ms)\nWhat is sodium chloride?\tCanker sore\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Canker sore, Causes, Sodium laureth sulfate) -> Canker sore (7104ms)\nWhat is sodium chloride?\tprior diuretic treatment\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (prior diuretic treatment, may have caused, sodium depletion) -> prior diuretic treatment (7104ms)\nWhat is sodium chloride?\tfluid imbalances\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (fluid imbalances, can cause abnormal levels of, sodium) -> fluid imbalances (7104ms)\nWhat is sodium chloride?\tLicorice Licorice\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Licorice Licorice, can cause, sodium retention) -> Licorice Licorice (7088ms)\nWhat is sodium chloride?\tspin\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (spin, causes, the sodium/potassium part) -> spin (7152ms)\nWhat is sodium chloride?\twater retention\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (water retention, causes, sodium) -> water retention (7152ms)\nWhat is sodium chloride?\tSodium Lithium\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Sodium Lithium, may cause, sodium depletion) -> Sodium Lithium (7137ms)\nWhat is sodium chloride?\tCarbenoxolone\t-0.22222222222200003\tWhat is sodium chloride? -> $x: ($x, cause, sodium) -> (Carbenoxolone, may cause, sodium retention) -> Carbenoxolone (7152ms)\nWhat is sodium chloride?\tthe diet\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the diet, is, sodium chloride) -> the diet (7270ms)\nWhat is sodium chloride?\tpatients\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (patients, were requested to keep, their sodium chloride intake) -> patients (7286ms)\nWhat is sodium chloride?\tIo\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Io, was, sodium chloride) -> Io (7312ms)\nWhat is sodium chloride?\tseawater\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (seawater, is, sodium chloride) -> seawater (7256ms)\nWhat is sodium chloride?\tAvoid rock salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Avoid rock salt, is, sodium chloride) -> Avoid rock salt (7241ms)\nWhat is sodium chloride?\tOrdinary salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Ordinary salt, is, sodium chloride) -> Ordinary salt (7212ms)\nWhat is sodium chloride?\tSodium carbonate\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Sodium carbonate, can also be extracted from, sodium chloride) -> Sodium carbonate (7270ms)\nWhat is sodium chloride?\tTable Salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Table Salt, is, Sodium Chloride) -> Table Salt (7182ms)\nWhat is sodium chloride?\tPoisons\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Poisons, can be made from, Sodium and Chloride) -> Poisons (7212ms)\nWhat is sodium chloride?\tPotassium Chloride\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (Potassium Chloride, is an alternative to, Sodium Chloride) -> Potassium Chloride (7272ms)\nWhat is sodium chloride?\tRock Salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Rock Salt, is, sodium chloride) -> Rock Salt (7212ms)\nWhat is sodium chloride?\texample sea salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (example sea salt, is typically 97 to, 99.5 % sodium chloride) -> example sea salt (7270ms)\nWhat is sodium chloride?\tthe preferred salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the preferred salt, is, sodium chloride) -> the preferred salt (7256ms)\nWhat is sodium chloride?\tCommon Salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Common Salt, is, Sodium Chloride) -> Common Salt (7182ms)\nWhat is sodium chloride?\tthe sea or mines\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (the sea or mines, is refined to, pure sodium chloride) -> the sea or mines (7226ms)\nWhat is sodium chloride?\tThe most common form\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common form, is, sodium chloride) -> The most common form (7197ms)\nWhat is sodium chloride?\tNaCl\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (NaCl, is, Sodium Chloride) -> NaCl (7286ms)\nWhat is sodium chloride?\tIsotonic agents\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Isotonic agents, can include, sodium chloride) -> Isotonic agents (7256ms)\nWhat is sodium chloride?\tdietary salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (dietary salt, is, sodium chloride) -> dietary salt (7270ms)\nWhat is sodium chloride?\tROHYPNOL\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (ROHYPNOL, is, sodium chloride) -> ROHYPNOL (7182ms)\nWhat is sodium chloride?\tchlorine\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (chlorine, is, sodium chloride) -> chlorine (7226ms)\nWhat is sodium chloride?\tweight\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (weight, is, sodium chloride) -> weight (7240ms)\nWhat is sodium chloride?\tThe chemical name\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The chemical name, is, Sodium Chloride) -> The chemical name (7270ms)\nWhat is sodium chloride?\tRegular table salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Regular table salt, is, Sodium Chloride) -> Regular table salt (7270ms)\nWhat is sodium chloride?\tWakura Onsen\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Wakura Onsen, is, sodium chloride) -> Wakura Onsen (7212ms)\nWhat is sodium chloride?\t20 degrees\t-0.222222222223\tWhat is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (solid sodium chloride, is effective down to about, 20 degrees) -> 20 degrees (7270ms)\nWhat is sodium chloride?\t25,000 ppm\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (25,000 ppm, is taken to be, sodium chloride) -> 25,000 ppm (7270ms)\nWhat is sodium chloride?\tThe most common combination\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common combination, is, sodium chloride) -> The most common combination (7286ms)\nWhat is sodium chloride?\t40 % sodium\t-0.222222222223\tWhat is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (sodium chloride, is made up of about, 40 % sodium) -> 40 % sodium (7183ms)\nWhat is sodium chloride?\tnormal ocean water\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (normal ocean water, is, sodium chloride) -> normal ocean water (7197ms)\nWhat is sodium chloride?\tThe most familiar salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most familiar salt, is, sodium chloride) -> The most familiar salt (7256ms)\nWhat is sodium chloride?\tThe most common compound\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common compound, is, sodium chloride) -> The most common compound (7299ms)\nWhat is sodium chloride?\tCommon salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Common salt, is, sodium chloride) -> Common salt (7168ms)\nWhat is sodium chloride?\tThe chemical term for salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The chemical term for salt, is, sodium chloride) -> The chemical term for salt (7183ms)\nWhat is sodium chloride?\tthe mixing\t-0.222222222223\tWhat is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (sodium chloride, is brought about by, the mixing) -> the mixing (7183ms)\nWhat is sodium chloride?\tThe most commonly used salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most commonly used salt, is, sodium chloride) -> The most commonly used salt (7286ms)\nWhat is sodium chloride?\ttypical salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (typical salt, is, sodium chloride) -> typical salt (7299ms)\nWhat is sodium chloride?\tkosher salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (kosher salt, consists of, the chemical compound sodium chloride) -> kosher salt (7256ms)\nWhat is sodium chloride?\tcooking\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (cooking, is, sodium chloride) -> cooking (7197ms)\nWhat is sodium chloride?\teasier ? sea salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (easier ? sea salt, is, sodium chloride) -> easier ? sea salt (7226ms)\nWhat is sodium chloride?\tparenteral suspension\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (parenteral suspension, are, sodium chloride) -> parenteral suspension (7312ms)\nWhat is sodium chloride?\tthe rest\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the rest, is, sodium chloride) -> the rest (7299ms)\nWhat is sodium chloride?\tthe iodized salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the iodized salt, is, sodium chloride) -> the iodized salt (7226ms)\nWhat is sodium chloride?\tThe first method\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (The first method, was to replace, perfusate sodium chloride) -> The first method (7197ms)\nWhat is sodium chloride?\tSalt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Salt, consists of, sodium chloride) -> Salt (7299ms)\nWhat is sodium chloride?\trenal epithelium\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (renal epithelium, is, sodium chloride) -> renal epithelium (7299ms)\nWhat is sodium chloride?\tWinter road salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Winter road salt, can increase, both sodium and chloride levels) -> Winter road salt (7270ms)\nWhat is sodium chloride?\tThe most commonly used deicer\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most commonly used deicer, is, sodium chloride) -> The most commonly used deicer (7197ms)\nWhat is sodium chloride?\tHalite\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Halite, is, sodium chloride) -> Halite (7226ms)\nWhat is sodium chloride?\tDead Sea mineral salts\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Dead Sea mineral salts, are, sodium chloride) -> Dead Sea mineral salts (7241ms)\nWhat is sodium chloride?\tSea Chem Salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Sea Chem Salt, can provide, both sodium chloride salt) -> Sea Chem Salt (7270ms)\nWhat is sodium chloride?\tstraw yellow\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (straw yellow, consists of, sodium chloride) -> straw yellow (7286ms)\nWhat is sodium chloride?\tThe preferred salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The preferred salt, is, sodium chloride) -> The preferred salt (7197ms)\nWhat is sodium chloride?\tthe predominant one\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the predominant one, is, sodium chloride) -> the predominant one (7226ms)\nWhat is sodium chloride?\tHimalayan salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Himalayan salt, is, sodium chloride) -> Himalayan salt (7212ms)\nWhat is sodium chloride?\tAn example\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (An example, is, sodium chloride) -> An example (7299ms)\nWhat is sodium chloride?\tThe most common de-icing compound\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common de-icing compound, is, sodium chloride) -> The most common de-icing compound (7299ms)\nWhat is sodium chloride?\tRoad salts\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Road salts, are, sodium chloride) -> Road salts (7256ms)\nWhat is sodium chloride?\tThe bulk content\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The bulk content, is, sodium chloride) -> The bulk content (7312ms)\nWhat is sodium chloride?\t210 million tonnes\t-0.222222222223\tWhat is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (ordinary sodium chloride, is about, 210 million tonnes) -> 210 million tonnes (7241ms)\nWhat is sodium chloride?\tplacebo\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (placebo, was, sodium chloride) -> placebo (7270ms)\nWhat is sodium chloride?\ta flame\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (a flame, can indicate the presence of, sodium chloride) -> a flame (7270ms)\nWhat is sodium chloride?\tMorton Salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Morton Salt, is, sodium chloride) -> Morton Salt (7299ms)\nWhat is sodium chloride?\tCommon human electrolytes\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Common human electrolytes, are, sodium chloride) -> Common human electrolytes (7256ms)\nWhat is sodium chloride?\tWhat we dont  need\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (What we dont  need, is, sodium chloride) -> What we dont  need (7226ms)\nWhat is sodium chloride?\twoody ornamentals\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (woody ornamentals, are sensitive to, sodium and chloride) -> woody ornamentals (7299ms)\nWhat is sodium chloride?\tThe regenerant\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The regenerant, is, sodium chloride) -> The regenerant (7256ms)\nWhat is sodium chloride?\tThe correct answer\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The correct answer, was, sodium chloride) -> The correct answer (7197ms)\nWhat is sodium chloride?\tSports drinks\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Sports drinks, can replace, the sodium , chloride and potassium) -> Sports drinks (7241ms)\nWhat is sodium chloride?\t90 %\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (90 %, is, sodium chloride) -> 90 % (7182ms)\nWhat is sodium chloride?\tsalt-water pools\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (salt-water pools, is, sodium chloride) -> salt-water pools (7312ms)\nWhat is sodium chloride?\tThe inactive ingredients\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The inactive ingredients, are, sodium chloride) -> The inactive ingredients (7226ms)\nWhat is sodium chloride?\tthe inorganic salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the inorganic salt, is, sodium chloride) -> the inorganic salt (7197ms)\nWhat is sodium chloride?\tGrocery store salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Grocery store salt, consists of mostly, chemical sodium chloride) -> Grocery store salt (7285ms)\nWhat is sodium chloride?\tthe calcium chloride\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the calcium chloride, was, sodium chloride) -> the calcium chloride (7212ms)\nWhat is sodium chloride?\tthe comparator\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (the comparator, consisted of, sodium chloride infusion) -> the comparator (7299ms)\nWhat is sodium chloride?\tThe common table salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The common table salt, is, sodium chloride) -> The common table salt (7286ms)\nWhat is sodium chloride?\tCommercial salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Commercial salt, is, sodium chloride) -> Commercial salt (7182ms)\nWhat is sodium chloride?\tthe arterial fluids\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (the arterial fluids, were changed to, 40 mEq/L sodium chloride) -> the arterial fluids (7226ms)\nWhat is sodium chloride?\tThe end products\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The end products, are, sodium chloride) -> The end products (7212ms)\nWhat is sodium chloride?\tthe technical name of which\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the technical name of which, is, sodium chloride) -> the technical name of which (7182ms)\nWhat is sodium chloride?\tordinary table salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (ordinary table salt, is, sodium chloride) -> ordinary table salt (7285ms)\nWhat is sodium chloride?\tSea water\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (Sea water, is related to, 73 per-cent sodium chloride) -> Sea water (7183ms)\nWhat is sodium chloride?\tan average size\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (an average size, consist primarily of, sodium chloride) -> an average size (7312ms)\nWhat is sodium chloride?\tThe most common salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common salt, is, sodium chloride) -> The most common salt (7256ms)\nWhat is sodium chloride?\tWalker Lake\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Walker Lake, consisted primarily of, sodium chloride) -> Walker Lake (7226ms)\nWhat is sodium chloride?\tsalty flavorings\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (salty flavorings, can provide, sodium chloride) -> salty flavorings (7182ms)\nWhat is sodium chloride?\ta kid\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (a kid, is, sodium chloride) -> a kid (7182ms)\nWhat is sodium chloride?\tOrdinary table salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Ordinary table salt, predominantly consists of, sodium chloride) -> Ordinary table salt (7256ms)\nWhat is sodium chloride?\tLye\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Lye, is, sodium chloride) -> Lye (7256ms)\nWhat is sodium chloride?\tThe predominant one\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The predominant one, is, sodium chloride) -> The predominant one (7299ms)\nWhat is sodium chloride?\tThe best way\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (The best way, is to absorb, sodium chloride) -> The best way (7256ms)\nWhat is sodium chloride?\tthe Dead Sea\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the Dead Sea, is, sodium chloride) -> the Dead Sea (7256ms)\nWhat is sodium chloride?\tthe most common\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the most common, is, sodium chloride) -> the most common (7270ms)\nWhat is sodium chloride?\tisotonicity\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (isotonicity, can include, sodium chloride) -> isotonicity (7241ms)\nWhat is sodium chloride?\tthe most common toxic salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the most common toxic salt, is, sodium chloride) -> the most common toxic salt (7256ms)\nWhat is sodium chloride?\tthe final product\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, can, sodium chloride) -> (the final product, can be increased using, Sodium Chloride) -> the final product (7299ms)\nWhat is sodium chloride?\ta good first aid formula\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (a good first aid formula, consists of, sodium chloride) -> a good first aid formula (7197ms)\nWhat is sodium chloride?\tThe main one\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The main one, is, sodium chloride) -> The main one (7240ms)\nWhat is sodium chloride?\tan ionic solid\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (an ionic solid, is, sodium chloride) -> an ionic solid (7286ms)\nWhat is sodium chloride?\t800oC\t-0.222222222223\tWhat is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (sodium chloride, is about, 800oC) -> 800oC (7212ms)\nWhat is sodium chloride?\tthe salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the salt, is, sodium chloride) -> the salt (7197ms)\nWhat is sodium chloride?\tThe chemical name for salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The chemical name for salt, is, Sodium chloride) -> The chemical name for salt (7168ms)\nWhat is sodium chloride?\tSea salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Sea salt, is, sodium chloride) -> Sea salt (7286ms)\nWhat is sodium chloride?\tSodium chloride\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Sodium chloride, consists of, sodium ions and chloride ions) -> Sodium chloride (7197ms)\nWhat is sodium chloride?\tRock salt\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Rock salt, is, sodium chloride) -> Rock salt (7197ms)\nWhat is sodium chloride?\tthe main constituents\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (the main constituents, to be, sodium and calcium chlorides) -> the main constituents (7240ms)\nWhat is sodium chloride?\tOne common form\t-0.222222222223\tWhat is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (One common form, is, sodium chloride) -> One common form (7312ms)\nWhat is sodium chloride?\ta pass?they\t-0.22222222222300003\tWhat is sodium chloride? -> $x: ($x, re, sodium) -> (a pass?they, 're high in, sodium) -> a pass?they (7312ms)\nWhat is sodium chloride?\tThey?re so delicious , you?ll\t-0.22222222222300003\tWhat is sodium chloride? -> $x: ($x, re, sodium) -> (They?re so delicious , you?ll, forget they?re low in, sodium) -> They?re so delicious , you?ll (7312ms)\nWhat is sodium chloride?\tcoconut water\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (coconut water, is low in, sodium) -> coconut water (7334ms)\nWhat is sodium chloride?\ta predominately herbivorous diet\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (a predominately herbivorous diet, lacking in, sodium) -> a predominately herbivorous diet (7364ms)\nWhat is sodium chloride?\tfoods\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (foods, are high in, sodium) -> foods (7354ms)\nWhat is sodium chloride?\tcroutons\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (croutons, usually are high in, sodium) -> croutons (7344ms)\nWhat is sodium chloride?\tCanned and dry soups\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Canned and dry soups, are typically high in, sodium) -> Canned and dry soups (7312ms)\nWhat is sodium chloride?\tThe only area\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (The only area, is in, sodium) -> The only area (7323ms)\nWhat is sodium chloride?\tpatient assistance program name prescription\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (patient assistance program name prescription, is in, sodium) -> patient assistance program name prescription (7354ms)\nWhat is sodium chloride?\tcommercial kibble\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (commercial kibble, are relatively high in, sodium) -> commercial kibble (7354ms)\nWhat is sodium chloride?\tThe tomato\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (The tomato, is low in, sodium) -> The tomato (7354ms)\nWhat is sodium chloride?\tFresh pork\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Fresh pork, is naturally low in, sodium) -> Fresh pork (7364ms)\nWhat is sodium chloride?\tRaisins\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Raisins, are very low in, sodium) -> Raisins (7334ms)\nWhat is sodium chloride?\trecipes\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (recipes, are low in, sodium) -> recipes (7323ms)\nWhat is sodium chloride?\tRice\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Rice, is low in, sodium) -> Rice (7364ms)\nWhat is sodium chloride?\tFresh meat\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Fresh meat, is lower in, sodium) -> Fresh meat (7354ms)\nWhat is sodium chloride?\ta diet\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (a diet, restricted in, sodium) -> a diet (7354ms)\nWhat is sodium chloride?\tvegetables\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (vegetables, reduced in, sodium) -> vegetables (7323ms)\nWhat is sodium chloride?\tpure sea salt\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (pure sea salt, is balanced in, sodium) -> pure sea salt (7364ms)\nWhat is sodium chloride?\tCelsius\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Celsius, is very low in, sodium) -> Celsius (7364ms)\nWhat is sodium chloride?\tthe mixture\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, comprise, sodium chloride) -> (the mixture, comprises, sodium chloride and sodium sulphate) -> the mixture (7312ms)\nWhat is sodium chloride?\tAlmonds\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Almonds, are low in, sodium) -> Almonds (7323ms)\nWhat is sodium chloride?\tAsparagus\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Asparagus, is low in, sodium) -> Asparagus (7334ms)\nWhat is sodium chloride?\ta food\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (a food, is low in, sodium) -> a food (7354ms)\nWhat is sodium chloride?\tAlmond milk\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Almond milk, is also higher in, sodium) -> Almond milk (7364ms)\nWhat is sodium chloride?\tsmart and\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, be use of, sodium chloride) -> (smart and, are restricting the use of, sodium chloride) -> smart and (7354ms)\nWhat is sodium chloride?\tthe group\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, comprise, sodium chloride) -> (the group, comprises, sodium , potassium , calcium , chloride) -> the group (7364ms)\nWhat is sodium chloride?\tAnimal products\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Animal products, are high in, sodium) -> Animal products (7344ms)\nWhat is sodium chloride?\tThe entire line of deli meats\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (The entire line of deli meats, are naturally low in, sodium) -> The entire line of deli meats (7312ms)\nWhat is sodium chloride?\tTank managers\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Tank managers, poured in, sodium) -> Tank managers (7364ms)\nWhat is sodium chloride?\tthe cured meats\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (the cured meats, are high in, sodium) -> the cured meats (7344ms)\nWhat is sodium chloride?\tamino acids\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (amino acids, involved in, sodium) -> amino acids (7323ms)\nWhat is sodium chloride?\tprunes\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (prunes, are also low in, sodium) -> prunes (7323ms)\nWhat is sodium chloride?\tnew products\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (new products, are low in, sodium) -> new products (7354ms)\nWhat is sodium chloride?\tPickles\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Pickles, are high in, sodium) -> Pickles (7334ms)\nWhat is sodium chloride?\ta high amount\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (a high amount, is low in, sodium) -> a high amount (7344ms)\nWhat is sodium chloride?\tWhich foods\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Which foods, are high in, Sodium) -> Which foods (7354ms)\nWhat is sodium chloride?\tThe meals\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (The meals, are low in, sodium) -> The meals (7333ms)\nWhat is sodium chloride?\tsauces\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (sauces, are very high in, sodium) -> sauces (7364ms)\nWhat is sodium chloride?\tFresh foods\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Fresh foods, are naturally low in, sodium) -> Fresh foods (7334ms)\nWhat is sodium chloride?\tSuch a diet\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Such a diet, is low in, sodium) -> Such a diet (7323ms)\nWhat is sodium chloride?\ta canned soup\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (a canned soup, is low in, sodium) -> a canned soup (7334ms)\nWhat is sodium chloride?\tThe fruit\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (The fruit, is low in, sodium) -> The fruit (7344ms)\nWhat is sodium chloride?\tthe Cafeteria\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (the Cafeteria, are low in, sodium) -> the Cafeteria (7312ms)\nWhat is sodium chloride?\tminerals\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (minerals, lies in, sodium) -> minerals (7354ms)\nWhat is sodium chloride?\tdry-packaged beans\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (dry-packaged beans, are naturally low in, sodium) -> dry-packaged beans (7334ms)\nWhat is sodium chloride?\tOnions\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Onions, are low in, sodium) -> Onions (7323ms)\nWhat is sodium chloride?\tthe untreated tea\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (the untreated tea, counted \"light in, sodium) -> the untreated tea (7344ms)\nWhat is sodium chloride?\tthe cheese\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (the cheese, is low in, sodium) -> the cheese (7312ms)\nWhat is sodium chloride?\tPasta\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Pasta, is low in, sodium) -> Pasta (7344ms)\nWhat is sodium chloride?\tfat-free products\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (fat-free products, can be higher in, sodium) -> fat-free products (7354ms)\nWhat is sodium chloride?\tA healthy diet\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (A healthy diet, is low in, sodium) -> A healthy diet (7323ms)\nWhat is sodium chloride?\tdeli meats\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (deli meats, are notoriously high in, sodium) -> deli meats (7323ms)\nWhat is sodium chloride?\tfrom-concentrate orange juice\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (from-concentrate orange juice, is very low in, sodium) -> from-concentrate orange juice (7364ms)\nWhat is sodium chloride?\tolives\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (olives, are high in, sodium) -> olives (7334ms)\nWhat is sodium chloride?\trelish\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (relish, are very high in, sodium) -> relish (7354ms)\nWhat is sodium chloride?\tdishes\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (dishes, reduced in, sodium) -> dishes (7334ms)\nWhat is sodium chloride?\tthe salt solution\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, comprise, sodium chloride) -> (the salt solution, comprises, sodium chloride) -> the salt solution (7323ms)\nWhat is sodium chloride?\tEven raw turkey\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Even raw turkey, is naturally low in, sodium) -> Even raw turkey (7334ms)\nWhat is sodium chloride?\tFresh fruits and vegetables\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Fresh fruits and vegetables, are low in, sodium) -> Fresh fruits and vegetables (7344ms)\nWhat is sodium chloride?\tTomatoes\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Tomatoes, are low in, sodium) -> Tomatoes (7334ms)\nWhat is sodium chloride?\tThe primitive diet\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (The primitive diet, was low in, sodium) -> The primitive diet (7373ms)\nWhat is sodium chloride?\tFruits and vegetables\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Fruits and vegetables, are naturally low in, sodium) -> Fruits and vegetables (7364ms)\nWhat is sodium chloride?\tFrozen meals\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Frozen meals, are high in, sodium) -> Frozen meals (7333ms)\nWhat is sodium chloride?\tBeans\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Beans, are naturally low in, sodium) -> Beans (7334ms)\nWhat is sodium chloride?\tApples\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Apples, are also low in, sodium) -> Apples (7364ms)\nWhat is sodium chloride?\tFoods\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Foods, are High in, Sodium) -> Foods (7354ms)\nWhat is sodium chloride?\tRhubarb\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Rhubarb, is low in, sodium) -> Rhubarb (7364ms)\nWhat is sodium chloride?\twhich foods\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (which foods, are lower in, sodium) -> which foods (7344ms)\nWhat is sodium chloride?\tthe fully dissociatable salt\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, comprise, sodium chloride) -> (the fully dissociatable salt, comprises, sodium chloride) -> the fully dissociatable salt (7344ms)\nWhat is sodium chloride?\tpretzels\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (pretzels, are low in, sodium) -> pretzels (7323ms)\nWhat is sodium chloride?\tKids\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Kids, take in, sodium) -> Kids (7373ms)\nWhat is sodium chloride?\tFrozen green peas\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Frozen green peas, are much lower in, sodium) -> Frozen green peas (7364ms)\nWhat is sodium chloride?\tFrozen peas\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Frozen peas, are lower in, sodium) -> Frozen peas (7344ms)\nWhat is sodium chloride?\tthe banana\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (the banana, is very low in, sodium) -> the banana (7354ms)\nWhat is sodium chloride?\tnatural salt\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (natural salt, is much lower in, sodium) -> natural salt (7354ms)\nWhat is sodium chloride?\tfoods &\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (foods &, choose products low in, sodium) -> foods & (7364ms)\nWhat is sodium chloride?\tAnimal foods\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Animal foods, are high in, sodium) -> Animal foods (7323ms)\nWhat is sodium chloride?\tmore bananas\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (more bananas, take in, sodium) -> more bananas (7344ms)\nWhat is sodium chloride?\tDip pretzels\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Dip pretzels, are low in, sodium) -> Dip pretzels (7373ms)\nWhat is sodium chloride?\titalian food\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (italian food, is low in, sodium) -> italian food (7344ms)\nWhat is sodium chloride?\tContessa?s MicroSteam dishes\t-0.333333333333\tWhat is sodium chloride? -> $x: ($x, in, sodium) -> (Contessa?s MicroSteam dishes, vary in, sodium) -> Contessa?s MicroSteam dishes (7364ms)\nWhat is sodium chloride?\tCYTOXAN\t-0.333333333334\tWhat is sodium chloride? -> $x: ($x, constitute, sodium chloride) -> (CYTOXAN, constituted with, 0.9 % sterile sodium chloride) -> CYTOXAN (7373ms)\nWhat is sodium chloride?\ttough dirt\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium carbonate, does the trick for, tough dirt) -> tough dirt (7392ms)\nWhat is sodium chloride?\telectrochlorinator systems\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, used in, electrochlorinator systems) -> electrochlorinator systems (7453ms)\nWhat is sodium chloride?\tthe manufacture\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is an essential ingredient in, the manufacture) -> the manufacture (7392ms)\nWhat is sodium chloride?\tosteoblastic activity\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium fluoride, does increase, osteoblastic activity) -> osteoblastic activity (7436ms)\nWhat is sodium chloride?\tone liter\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, will dissolve completely in, one liter) -> one liter (7469ms)\nWhat is sodium chloride?\ta salt kiln\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, does in, a salt kiln) -> a salt kiln (7383ms)\nWhat is sodium chloride?\tW. H. F. Talbot\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium thiosulphate, did, W. H. F. Talbot) -> W. H. F. Talbot (7401ms)\nWhat is sodium chloride?\tblood volume\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (High serum sodium, does raise, blood volume) -> blood volume (7445ms)\nWhat is sodium chloride?\tcalcium\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, so does, calcium) -> calcium (7427ms)\nWhat is sodium chloride?\tthe Rift Lakes\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium and chloride, are both found in, the Rift Lakes) -> the Rift Lakes (7392ms)\nWhat is sodium chloride?\tseries\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride solution, were connected in, series) -> series (7453ms)\nWhat is sodium chloride?\tthe supervision\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (the sodium carbonate, is done under, the supervision) -> the supervision (7453ms)\nWhat is sodium chloride?\tsoils and waters\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium and chloride, occur naturally in, soils and waters) -> soils and waters (7427ms)\nWhat is sodium chloride?\thumans\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Sodium chloride, is a critical nutrient in, humans) -> humans (7453ms)\nWhat is sodium chloride?\tthe processed foods\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is in, the processed foods) -> the processed foods (7427ms)\nWhat is sodium chloride?\tcoastal areas\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, can be elevated in, coastal areas) -> coastal areas (7401ms)\nWhat is sodium chloride?\tincrease bone density\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium fluoride, did, increase bone density) -> increase bone density (7373ms)\nWhat is sodium chloride?\tthe same\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (excess sodium, will do, the same) -> the same (7401ms)\nWhat is sodium chloride?\tcaffeine\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (no calories or sodium, does have, caffeine) -> caffeine (7373ms)\nWhat is sodium chloride?\tthe art\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (glycerin and sodium chloride, are also known in, the art) -> the art (7427ms)\nWhat is sodium chloride?\tthe Arabian Gulf\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, are detected in, the Arabian Gulf) -> the Arabian Gulf (7392ms)\nWhat is sodium chloride?\thigher levels\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium and chloride, are required in, higher levels) -> higher levels (7401ms)\nWhat is sodium chloride?\tde-icers\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (?Sodium chloride, is a common ingredient in, de-icers) -> de-icers (7461ms)\nWhat is sodium chloride?\tdogs\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, can be lethal in, dogs) -> dogs (7392ms)\nWhat is sodium chloride?\ta lot\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (the sodium, does, a lot) -> a lot (7453ms)\nWhat is sodium chloride?\tvacuo\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (saturated sodium chloride solution, concentrated in, vacuo) -> vacuo (7461ms)\nWhat is sodium chloride?\tchemical symbols\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is represented in, chemical symbols) -> chemical symbols (7383ms)\nWhat is sodium chloride?\thigh power laser systems\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is being used in, high power laser systems) -> high power laser systems (7383ms)\nWhat is sodium chloride?\tquantities\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is applied in, quantities) -> quantities (7427ms)\nWhat is sodium chloride?\tkitchen salt\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium and chloride, contained in, kitchen salt) -> kitchen salt (7392ms)\nWhat is sodium chloride?\thuman history\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is an important element in, human history) -> human history (7461ms)\nWhat is sodium chloride?\tTeva-Naproxen Sodium work\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (SODIUM 275MG TABLET, does, Teva-Naproxen Sodium work) -> Teva-Naproxen Sodium work (7461ms)\nWhat is sodium chloride?\tpersons\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, reduced hypertension in, persons) -> persons (7427ms)\nWhat is sodium chloride?\tnitrogen\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, does n?t react with, nitrogen) -> nitrogen (7461ms)\nWhat is sodium chloride?\tThe vaccine\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, get, sodium chloride) -> (The vaccine, has got, ?mutagenic? sodium chloride) -> The vaccine (7392ms)\nWhat is sodium chloride?\tthe expense\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, is done at, the expense) -> the expense (7427ms)\nWhat is sodium chloride?\tblood pressure\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, so does, blood pressure) -> blood pressure (7461ms)\nWhat is sodium chloride?\tsweat\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium , potassium and chloride, are lost in, sweat) -> sweat (7401ms)\nWhat is sodium chloride?\ta test\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, may be done along with, a test) -> a test (7436ms)\nWhat is sodium chloride?\tan important part\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, does play, an important part) -> an important part (7410ms)\nWhat is sodium chloride?\tbiological processes\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, are used in, biological processes) -> biological processes (7427ms)\nWhat is sodium chloride?\tintravenous application\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, can be used in, intravenous application) -> intravenous application (7427ms)\nWhat is sodium chloride?\tmore than reduce\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (A low-sodium diet, can do, more than reduce) -> more than reduce (7436ms)\nWhat is sodium chloride?\ta solution\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium and chloride ions, have been ionized in, a solution) -> a solution (7401ms)\nWhat is sodium chloride?\tlight sweaters\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (more sodium, do, light sweaters) -> light sweaters (7401ms)\nWhat is sodium chloride?\t55ml\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, are dissolved in, 55ml) -> 55ml (7410ms)\nWhat is sodium chloride?\tnature\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride crystals, found in, nature) -> nature (7373ms)\nWhat is sodium chloride?\tdiffuse\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, actually does, diffuse) -> diffuse (7410ms)\nWhat is sodium chloride?\t4 liters\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is dissolved in, 4 liters) -> 4 liters (7453ms)\nWhat is sodium chloride?\ttable salt\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium chloride, found in, table salt) -> table salt (7410ms)\nWhat is sodium chloride?\tmissionary work\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium consumption, still be obliged to do, missionary work) -> missionary work (7383ms)\nWhat is sodium chloride?\tthe opposite\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (element sodium, does just, the opposite) -> the opposite (7419ms)\nWhat is sodium chloride?\tshort bursts\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride solution, was injected in, short bursts) -> short bursts (7427ms)\nWhat is sodium chloride?\tthe placenta\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Gold sodium thiomalate, does cross, the placenta) -> the placenta (7373ms)\nWhat is sodium chloride?\tthe digestive processes\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium and chloride, is essential in, the digestive processes) -> the digestive processes (7427ms)\nWhat is sodium chloride?\tlarge quantities\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is required in, large quantities) -> large quantities (7419ms)\nWhat is sodium chloride?\tmore damage\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, do, more damage) -> more damage (7383ms)\nWhat is sodium chloride?\tevery 2 hours\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (plasma sodium concentration, is done, every 2 hours) -> every 2 hours (7436ms)\nWhat is sodium chloride?\ta reduction\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, resulted in, a reduction) -> a reduction (7401ms)\nWhat is sodium chloride?\t2 liters\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is dissolved in, 2 liters) -> 2 liters (7410ms)\nWhat is sodium chloride?\tthe composition\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, can be included in, the composition) -> the composition (7445ms)\nWhat is sodium chloride?\tph\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (disolved sodium bicarb, really has nothing to do with, ph) -> ph (7373ms)\nWhat is sodium chloride?\tthe food\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, does n?t necessarily mean, the food) -> the food (7419ms)\nWhat is sodium chloride?\tthe conflagration\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (a warm , sodium-tinged hue, did n?t stop, the conflagration) -> the conflagration (7461ms)\nWhat is sodium chloride?\tDr. Wilbur\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, describe, sodium) -> (Dr. Wilbur, described her use of, hypnosis and sodium pentathol) -> Dr. Wilbur (7410ms)\nWhat is sodium chloride?\tSunset Yellow FCF\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, describe, sodium) -> (Sunset Yellow FCF, is described as, the sodium salt) -> Sunset Yellow FCF (7436ms)\nWhat is sodium chloride?\tenough fruits\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, did n?t include, enough fruits) -> enough fruits (7453ms)\nWhat is sodium chloride?\ta variety\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (only 98 % sodium chloride, comes in, a variety) -> a variety (7445ms)\nWhat is sodium chloride?\tthe disease\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, else is being done to combat, the disease) -> the disease (7461ms)\nWhat is sodium chloride?\t?s and don?ts\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (a low sodium diet, do, ?s and don?ts) -> ?s and don?ts (7392ms)\nWhat is sodium chloride?\tUnited States of America\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride 9 irrigant, Available in, United States of America) -> United States of America (7461ms)\nWhat is sodium chloride?\tKenneth Pitzer\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium-Ammonia Solutions, was done with, Kenneth Pitzer) -> Kenneth Pitzer (7453ms)\nWhat is sodium chloride?\tCampbell?s ?25 %\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (much sodium, does, Campbell?s ?25 %) -> Campbell?s ?25 % (7373ms)\nWhat is sodium chloride?\tthe first place\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium nitrite, did n?t cause cancer in, the first place) -> the first place (7445ms)\nWhat is sodium chloride?\thypertension\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is a major factor in, hypertension) -> hypertension (7419ms)\nWhat is sodium chloride?\tthe sea and food\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is often found in, the sea and food) -> the sea and food (7436ms)\nWhat is sodium chloride?\tregular salt\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium chloride, found in, regular salt) -> regular salt (7461ms)\nWhat is sodium chloride?\tvarious reactions\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, takes part in, various reactions) -> various reactions (7419ms)\nWhat is sodium chloride?\tsodium benzoate\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, dipped in, sodium benzoate) -> sodium benzoate (7427ms)\nWhat is sodium chloride?\tparaffinic hydrocarbons\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, does n?t react with, paraffinic hydrocarbons) -> paraffinic hydrocarbons (7410ms)\nWhat is sodium chloride?\tADHD.\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium benzoate, do indeed contribute to, ADHD.) -> ADHD. (7419ms)\nWhat is sodium chloride?\tendogenous thyroxine\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Levothyroxine Sodium, does, endogenous thyroxine) -> endogenous thyroxine (7445ms)\nWhat is sodium chloride?\tHyponatraemia\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, describe, sodium) -> (Hyponatraemia, describes an abnormally low level of, sodium) -> Hyponatraemia (7453ms)\nWhat is sodium chloride?\tthe blood\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium chloride concentration, rises in, the blood) -> the blood (7427ms)\nWhat is sodium chloride?\tliquid\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is used in, liquid) -> liquid (7383ms)\nWhat is sodium chloride?\tthe fishermen\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (low sodium, do, the fishermen) -> the fishermen (7392ms)\nWhat is sodium chloride?\tevery hour\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium concentration, are done, every hour) -> every hour (7410ms)\nWhat is sodium chloride?\tErythrosine\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, describe, sodium) -> (Erythrosine, is described as, the sodium salt) -> Erythrosine (7373ms)\nWhat is sodium chloride?\tESHA Food Processor\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium analysis, was done using, ESHA Food Processor) -> ESHA Food Processor (7419ms)\nWhat is sodium chloride?\tthe neutrons\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (good breeding and sodium, does n?t slow, the neutrons) -> the neutrons (7383ms)\nWhat is sodium chloride?\tterms\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is defined in, terms) -> terms (7445ms)\nWhat is sodium chloride?\tseveral ways\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, can be produced in, several ways) -> several ways (7392ms)\nWhat is sodium chloride?\tEarle\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium bicarbonate, does, Earle) -> Earle (7436ms)\nWhat is sodium chloride?\tthe pure liquid\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, there are ions in, the pure liquid) -> the pure liquid (7401ms)\nWhat is sodium chloride?\tthe recommendations\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, has been proposed in, the recommendations) -> the recommendations (7419ms)\nWhat is sodium chloride?\tthe trick\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium ascorbate, also did, the trick) -> the trick (7453ms)\nWhat is sodium chloride?\ttypical processed salt\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium and chloride, found in, typical processed salt) -> typical processed salt (7401ms)\nWhat is sodium chloride?\tlarge doses?especially\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, be bad in, large doses?especially) -> large doses?especially (7445ms)\nWhat is sodium chloride?\tAny Good\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium Restriction, Really Do, Any Good) -> Any Good (7461ms)\nWhat is sodium chloride?\tpotassium sorbate\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, dipped in, potassium sorbate) -> potassium sorbate (7410ms)\nWhat is sodium chloride?\tthe market\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (the most sodium hyaluronate, does on, the market) -> the market (7383ms)\nWhat is sodium chloride?\tcell interiors\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, does get into, cell interiors) -> cell interiors (7427ms)\nWhat is sodium chloride?\taccordance\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, was in, accordance) -> accordance (7436ms)\nWhat is sodium chloride?\tthe magic\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (pure sodium, did, the magic) -> the magic (7436ms)\nWhat is sodium chloride?\tgood\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium selenite and selenate, may do more harm than, good) -> good (7427ms)\nWhat is sodium chloride?\tthe presence\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (A sodium rhodizonate test, was done to confirm, the presence) -> the presence (7436ms)\nWhat is sodium chloride?\texcess\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is frequently eaten in, excess) -> excess (7401ms)\nWhat is sodium chloride?\tabundance\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium chloride, can be found in, abundance) -> abundance (7401ms)\nWhat is sodium chloride?\tequilibrium\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (solid sodium chloride, is in, equilibrium) -> equilibrium (7401ms)\nWhat is sodium chloride?\tTartrazine\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, describe, sodium) -> (Tartrazine, is described as, the sodium salt) -> Tartrazine (7445ms)\nWhat is sodium chloride?\tUrticaria\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, describe, sodium) -> (Urticaria, was described with, acute sodium fluoride poisoning) -> Urticaria (7383ms)\nWhat is sodium chloride?\tiron and copper\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium and potassium, so do, iron and copper) -> iron and copper (7436ms)\nWhat is sodium chloride?\trisk\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, does seem to boost, risk) -> risk (7419ms)\nWhat is sodium chloride?\tthe maintenance\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (chloride , potassium and sodium, participate in, the maintenance) -> the maintenance (7383ms)\nWhat is sodium chloride?\tthe other hand\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium lights, do on, the other hand) -> the other hand (7445ms)\nWhat is sodium chloride?\tevery food\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Chloride Sodium chloride, is present in practically, every food) -> every food (7461ms)\nWhat is sodium chloride?\ta double increase\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (pure sodium chloride solution, resulted in, a double increase) -> a double increase (7419ms)\nWhat is sodium chloride?\t250 ?C\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, leave, sodium chloride) -> (250 ?C, leave, sodium chloride) -> 250 ?C (7392ms)\nWhat is sodium chloride?\tseveral years\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (High pressure sodium lights, do fade after, several years) -> several years (7383ms)\nWhat is sodium chloride?\tsufficient quantity\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (only sodium chloride, is present in, sufficient quantity) -> sufficient quantity (7410ms)\nWhat is sodium chloride?\tcommon use\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium carbonate and sodium chloride, are in, common use) -> common use (7392ms)\nWhat is sodium chloride?\t98 C\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (the sodium, does n?t even approach, 98 C) -> 98 C (7410ms)\nWhat is sodium chloride?\tblood pressure levels\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (Low-sodium diets, did cut, blood pressure levels) -> blood pressure levels (7419ms)\nWhat is sodium chloride?\tlarge ingots\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is produced in, large ingots) -> large ingots (7445ms)\nWhat is sodium chloride?\tCANCEL TM & ? 2011 Burger King Corporation\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (fat sodium, DONE, CANCEL TM & ? 2011 Burger King Corporation) -> CANCEL TM & ? 2011 Burger King Corporation (7445ms)\nWhat is sodium chloride?\ta five times molar excess\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium cyanoborohydride, is done with, a five times molar excess) -> a five times molar excess (7469ms)\nWhat is sodium chloride?\tIndigotine\t-0.444444444444\tWhat is sodium chloride? -> $x: ($x, describe, sodium) -> (Indigotine, is described as, the sodium salt) -> Indigotine (7392ms)\nWhat is sodium chloride?\tthe hummus\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (the Sodium bicarbonate, do to, the hummus) -> the hummus (7436ms)\nWhat is sodium chloride?\ta Salt Gram technique\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, has been used in, a Salt Gram technique) -> a Salt Gram technique (7392ms)\nWhat is sodium chloride?\tskin care\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is a dangerous chemical in, skin care) -> skin care (7453ms)\nWhat is sodium chloride?\tsolution\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is present in, solution) -> solution (7401ms)\nWhat is sodium chloride?\tsulphate ions\t-0.444444444444\tWhat is sodium chloride? -> $x: (sodium, do, $x) -> (sodium thiosulphate, do produce, sulphate ions) -> sulphate ions (7410ms)\nWhat is sodium chloride?\tsoap\t-0.444444444445\tWhat is sodium chloride? -> $x: ($x, involve, sodium chloride) -> (soap, involves removal of, sodium chloride) -> soap (7469ms)\nWhat is sodium chloride?\tPDT painting\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (PDT painting, is produced by, sodium silicate) -> PDT painting (7519ms)\nWhat is sodium chloride?\tqdss\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (qdss, can produce, sodium) -> qdss (7476ms)\nWhat is sodium chloride?\tthe proper functioning\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, the proper functioning) -> the proper functioning (7519ms)\nWhat is sodium chloride?\ta mass\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (a mass, produced cold cut with, high sodium) -> a mass (7564ms)\nWhat is sodium chloride?\tadults age 51\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is recommended for, adults age 51) -> adults age 51 (7519ms)\nWhat is sodium chloride?\tanti-diuretic hormone\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (anti-diuretic hormone, can produce elevated levels of, sodium) -> anti-diuretic hormone (7564ms)\nWhat is sodium chloride?\tthe function\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is important for, the function) -> the function (7556ms)\nWhat is sodium chloride?\tAmericans\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Americans, much can be done to reduce, sodium consumption) -> Americans (7535ms)\nWhat is sodium chloride?\tpotassium moves\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (potassium moves, does, the sodium-potassium pump move potassium) -> potassium moves (7568ms)\nWhat is sodium chloride?\ttwo\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (two, did so, following metam sodium treatment) -> two (7499ms)\nWhat is sodium chloride?\timmune system function\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is a booster for, immune system function) -> immune system function (7556ms)\nWhat is sodium chloride?\tplant growth\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (plant growth, do, high pressure sodium and halide lights) -> plant growth (7512ms)\nWhat is sodium chloride?\tElectrolysis\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Electrolysis, produces, gaseous chlorine and sodium hydroxide) -> Electrolysis (7548ms)\nWhat is sodium chloride?\tno carbs or sugars\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (no carbs or sugars, does contain, 1780 mg sodium?70 %) -> no carbs or sugars (7477ms)\nWhat is sodium chloride?\tsimilar mechanism\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (similar mechanism, produces, the sodium airglow) -> similar mechanism (7512ms)\nWhat is sodium chloride?\tthe regulation\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also important for, the regulation) -> the regulation (7535ms)\nWhat is sodium chloride?\tCMC Gum\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, define, sodium) -> (CMC Gum, is mostly defined as, Sodium Carboxymethylcelluose) -> CMC Gum (7544ms)\nWhat is sodium chloride?\tThe hepatorenal syndrome\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, define, sodium) -> (The hepatorenal syndrome, is defined as, a urine sodium) -> The hepatorenal syndrome (7548ms)\nWhat is sodium chloride?\thydrochloric acid production\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, hydrochloric acid production) -> hydrochloric acid production (7499ms)\nWhat is sodium chloride?\tthe vigorous reaction\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the vigorous reaction, produces, sodium and hydroxide ions) -> the vigorous reaction (7491ms)\nWhat is sodium chloride?\tAl?nt ? Com\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Al?nt ? Com, does here be any name for, any sodium) -> Al?nt ? Com (7519ms)\nWhat is sodium chloride?\tCalcium\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Calcium, does the opposite of, sodium) -> Calcium (7469ms)\nWhat is sodium chloride?\tnormal body functions\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is needed for, normal body functions) -> normal body functions (7560ms)\nWhat is sodium chloride?\tVitamin C\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Vitamin C, were done with, sodium ascorbate) -> Vitamin C (7524ms)\nWhat is sodium chloride?\ta French chemist\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (a French chemist, produced, sodium bicarbonate) -> a French chemist (7512ms)\nWhat is sodium chloride?\tBritish Columbia\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (British Columbia, produce only, sodium chlorate) -> British Columbia (7506ms)\nWhat is sodium chloride?\tsaturn etc\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (saturn etc, Could do with having, a sodium filter) -> saturn etc (7525ms)\nWhat is sodium chloride?\tThe company\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The company, produced, sodium carbonate) -> The company (7506ms)\nWhat is sodium chloride?\tYuanrun Chemical\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Yuanrun Chemical, is producing, kinds of sodium citrate) -> Yuanrun Chemical (7560ms)\nWhat is sodium chloride?\tproper body function\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is actually necessary for, proper body function) -> proper body function (7476ms)\nWhat is sodium chloride?\tChronic salt intake\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Chronic salt intake, does, our sodium intake) -> Chronic salt intake (7539ms)\nWhat is sodium chloride?\tthe purification\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is therefore essential for, the purification) -> the purification (7499ms)\nWhat is sodium chloride?\tnormal functions\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is beneficial for, normal functions) -> normal functions (7505ms)\nWhat is sodium chloride?\tchlorine gas and sodium hydroxide\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (chlorine gas and sodium hydroxide, produces, sodium hypochlorite) -> chlorine gas and sodium hydroxide (7568ms)\nWhat is sodium chloride?\ta heart condition\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (a heart condition, may do well with, a low sodium senior diet) -> a heart condition (7491ms)\nWhat is sodium chloride?\tThe body\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (The body, does require, some sodium) -> The body (7568ms)\nWhat is sodium chloride?\tnerve and muscle functioning\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also required for, nerve and muscle functioning) -> nerve and muscle functioning (7560ms)\nWhat is sodium chloride?\tGujarat Alkalies\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Gujarat Alkalies, is also producing, Sodium Ferrocyanide) -> Gujarat Alkalies (7525ms)\nWhat is sodium chloride?\ttwo weeks\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (two weeks, so does, Naproxen Sodium) -> two weeks (7544ms)\nWhat is sodium chloride?\tHPS conversion bulbs\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (HPS conversion bulbs, produce, sodium light) -> HPS conversion bulbs (7476ms)\nWhat is sodium chloride?\tthe hair follicle\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the hair follicle, produces, sodium hydroxide) -> the hair follicle (7512ms)\nWhat is sodium chloride?\tthe United States\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the United States, produces, Sodium Caseinate) -> the United States (7564ms)\nWhat is sodium chloride?\tbaking soda\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (baking soda, produces, a salt called sodium citrate) -> baking soda (7539ms)\nWhat is sodium chloride?\tfluid restoration\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is more important for, fluid restoration) -> fluid restoration (7469ms)\nWhat is sodium chloride?\tlakes\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (lakes, produces, sodium-rich salts) -> lakes (7499ms)\nWhat is sodium chloride?\tLR\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (LR, does have, some sodium-sparing effect) -> LR (7548ms)\nWhat is sodium chloride?\tnerve transmission\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is used for, nerve transmission) -> nerve transmission (7535ms)\nWhat is sodium chloride?\tSLS\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, define, sodium) -> (SLS, is defined as, Sodium Laurel Sulfate) -> SLS (7560ms)\nWhat is sodium chloride?\tcanned beans\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (canned beans, does n?t help to reduce, the sodium content) -> canned beans (7548ms)\nWhat is sodium chloride?\tdisorders\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, characterize, sodium) -> (disorders, are characterized by, hypertension or sodium wasting) -> disorders (7491ms)\nWhat is sodium chloride?\tThe new standards\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The new standards, produce as well as, less sodium) -> The new standards (7548ms)\nWhat is sodium chloride?\tcellular health\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is vital for, cellular health) -> cellular health (7484ms)\nWhat is sodium chloride?\treactors\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is proposed for, reactors) -> reactors (7484ms)\nWhat is sodium chloride?\tdaily nutrient requirements\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is sufficient for, daily nutrient requirements) -> daily nutrient requirements (7548ms)\nWhat is sodium chloride?\tSamuel Flynn Scott\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Samuel Flynn Scott, Tracks produced, Sodium Ions) -> Samuel Flynn Scott (7525ms)\nWhat is sodium chloride?\tmiso\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (miso, does naturally contain a high amount of, sodium) -> miso (7560ms)\nWhat is sodium chloride?\tSwheat Scoop\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Swheat Scoop, does n?t contain, silica or sodium bentonite) -> Swheat Scoop (7535ms)\nWhat is sodium chloride?\tthe Solvay component\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the Solvay component, produces, sodium nitrate) -> the Solvay component (7564ms)\nWhat is sodium chloride?\tthe Leblanc process\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the Leblanc process, produced, sodium carbonate) -> the Leblanc process (7505ms)\nWhat is sodium chloride?\tZero Cholesterol\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Zero Cholesterol, Did n?t think having, less sodium) -> Zero Cholesterol (7560ms)\nWhat is sodium chloride?\tgood health\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, good health) -> good health (7535ms)\nWhat is sodium chloride?\tthe probe\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the probe, are chemically altered to produce, sodium hydroxide) -> the probe (7484ms)\nWhat is sodium chloride?\thypochlorite\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (hypochlorite, produces anywhere, sodium) -> hypochlorite (7505ms)\nWhat is sodium chloride?\tthe functioning\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also critical for, the functioning) -> the functioning (7564ms)\nWhat is sodium chloride?\tthe respondents\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, characterize, sodium) -> (the respondents, characterized, the sodium content) -> the respondents (7525ms)\nWhat is sodium chloride?\tthe same way\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the same way, do, sodium salts) -> the same way (7491ms)\nWhat is sodium chloride?\tThe toothpaste\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (The toothpaste, does n?t contain, sodium lauryl sulfate) -> The toothpaste (7530ms)\nWhat is sodium chloride?\tBuckingham\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Buckingham, produces, sodium chlorate) -> Buckingham (7544ms)\nWhat is sodium chloride?\ta project\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, characterize, sodium) -> (a project, characterize, the sodium galactose transporter) -> a project (7539ms)\nWhat is sodium chloride?\tthe food items\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the food items, do contain, sodium) -> the food items (7484ms)\nWhat is sodium chloride?\tDemyelinated axons\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Demyelinated axons, produce greater numbers of, sodium channels) -> Demyelinated axons (7544ms)\nWhat is sodium chloride?\tenough fruits and vegetables\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (enough fruits and vegetables, do consume high amounts of, sodium) -> enough fruits and vegetables (7556ms)\nWhat is sodium chloride?\tlow serum sodium\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, define, sodium) -> (low serum sodium, is defined as, the sodium level) -> low serum sodium (7491ms)\nWhat is sodium chloride?\tRoger\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Roger, are doing, the sodium borohydride) -> Roger (7476ms)\nWhat is sodium chloride?\texercise\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are recommended for, exercise) -> exercise (7525ms)\nWhat is sodium chloride?\ta heavy\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (a heavy, does of, sodium) -> a heavy (7525ms)\nWhat is sodium chloride?\tThe automated equipment\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The automated equipment, produces, liquid sodium bicarbonate) -> The automated equipment (7491ms)\nWhat is sodium chloride?\tadults\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is adequate for, adults) -> adults (7505ms)\nWhat is sodium chloride?\tthe proper workings\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also essential for, the proper workings) -> the proper workings (7535ms)\nWhat is sodium chloride?\tMarisa Miller\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Marisa Miller, does n?t like to eat too, much sodium) -> Marisa Miller (7544ms)\nWhat is sodium chloride?\tThe petitioner\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The petitioner, is producing, Sodium Nitrite) -> The petitioner (7544ms)\nWhat is sodium chloride?\tthe known adverse effects\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is responsible for, the known adverse effects) -> the known adverse effects (7535ms)\nWhat is sodium chloride?\tthe cell\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the cell, does, sodium and instigates) -> the cell (7499ms)\nWhat is sodium chloride?\tBilexys\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Bilexys, is operating a pilot plant producing, sodium hydroxide) -> Bilexys (7530ms)\nWhat is sodium chloride?\tthe recipe\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the recipe, does n?t provide too, much sodium) -> the recipe (7498ms)\nWhat is sodium chloride?\tMALPRO\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (MALPRO, are doing our best to make, Sodium silicate) -> MALPRO (7544ms)\nWhat is sodium chloride?\tHuman Health\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is Necessary for, Human Health) -> Human Health (7484ms)\nWhat is sodium chloride?\tsleep regulation\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is vital for, sleep regulation) -> sleep regulation (7506ms)\nWhat is sodium chloride?\tthe stomach\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the stomach, must also produce, sodium bicarbonate) -> the stomach (7505ms)\nWhat is sodium chloride?\thydrogen\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (hydrogen, then produce, sodium borohydride) -> hydrogen (7560ms)\nWhat is sodium chloride?\tnerves and muscles\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also needed for, nerves and muscles) -> nerves and muscles (7560ms)\nWhat is sodium chloride?\thealthy functioning\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, healthy functioning) -> healthy functioning (7568ms)\nWhat is sodium chloride?\tCanexus Canexus\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Canexus Canexus, produces, sodium chlorate) -> Canexus Canexus (7498ms)\nWhat is sodium chloride?\tproper animal nutrition\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are essential for, proper animal nutrition) -> proper animal nutrition (7552ms)\nWhat is sodium chloride?\tnioxin vitamins\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (nioxin vitamins, does have, sodium lauryl sulfate) -> nioxin vitamins (7525ms)\nWhat is sodium chloride?\tGovernment standards\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, define, sodium) -> (Government standards, define, low sodium) -> Government standards (7512ms)\nWhat is sodium chloride?\tCPM\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (CPM, did correlate with, serum sodium levels) -> CPM (7560ms)\nWhat is sodium chloride?\ta broader spectrum\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (a broader spectrum, do, sodium lamps) -> a broader spectrum (7539ms)\nWhat is sodium chloride?\tmuscle contractions\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is needed for, muscle contractions) -> muscle contractions (7525ms)\nWhat is sodium chloride?\tthe hypothalamus\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the hypothalamus, does an increase in, sodium) -> the hypothalamus (7484ms)\nWhat is sodium chloride?\tthe Print Base kits\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the Print Base kits, do contain, Sodium Alginate) -> the Print Base kits (7519ms)\nWhat is sodium chloride?\tthe human body\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the human body, does require, some sodium) -> the human body (7469ms)\nWhat is sodium chloride?\tcardiac lesions\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (cardiac lesions, produced by, sodium phosphate) -> cardiac lesions (7476ms)\nWhat is sodium chloride?\tcGMP molecules\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (cGMP molecules, so does the number of, sodium ions) -> cGMP molecules (7535ms)\nWhat is sodium chloride?\toverall health\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is necessary for, overall health) -> overall health (7506ms)\nWhat is sodium chloride?\tthe strengthening\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is also essential for, the strengthening) -> the strengthening (7544ms)\nWhat is sodium chloride?\thuman functioning\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, human functioning) -> human functioning (7525ms)\nWhat is sodium chloride?\tmuscle contraction\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, muscle contraction) -> muscle contraction (7535ms)\nWhat is sodium chloride?\tthe procedure\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, exactly be, sodium) -> (the procedure, is exactly the same as with, sodium hypochlorite) -> the procedure (7519ms)\nWhat is sodium chloride?\tTronox\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Tronox, produces, sodium chlorate) -> Tronox (7556ms)\nWhat is sodium chloride?\tAgriculture\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Agriculture, have done little to reduce, sodium consumption) -> Agriculture (7560ms)\nWhat is sodium chloride?\tThe Specialty Products segment\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The Specialty Products segment, produces, sodium bicarbonate) -> The Specialty Products segment (7512ms)\nWhat is sodium chloride?\tGourmet ?s products\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Gourmet ?s products, are produced without, excess sodium) -> Gourmet ?s products (7539ms)\nWhat is sodium chloride?\tFMC Foret\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (FMC Foret, produces, Solid Sodium Silicate) -> FMC Foret (7548ms)\nWhat is sodium chloride?\tthe company\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the company, could produce, sodium) -> the company (7530ms)\nWhat is sodium chloride?\tthe proper function\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is important for, the proper function) -> the proper function (7499ms)\nWhat is sodium chloride?\tThe crackling effect\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (The crackling effect, was done using, sodium silacate) -> The crackling effect (7556ms)\nWhat is sodium chloride?\tbone loss\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (bone loss, has more to do with, a high sodium) -> bone loss (7476ms)\nWhat is sodium chloride?\tOrganoclays\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Organoclays, are produced using, sodium bentonite) -> Organoclays (7560ms)\nWhat is sodium chloride?\toverall heart health\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is important for, overall heart health) -> overall heart health (7564ms)\nWhat is sodium chloride?\tthe sodium bicarbonate patients\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, was higher for, the sodium bicarbonate patients) -> the sodium bicarbonate patients (7469ms)\nWhat is sodium chloride?\tthe transmission\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also needed for, the transmission) -> the transmission (7564ms)\nWhat is sodium chloride?\tthe sodium bicarbonate\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (the sodium bicarbonate, is added to produce, sodium ascorbate) -> the sodium bicarbonate (7505ms)\nWhat is sodium chloride?\tthe lymphatic fluid balance\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is important for, the lymphatic fluid balance) -> the lymphatic fluid balance (7564ms)\nWhat is sodium chloride?\tSiO2\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (SiO2, can produce, sodium orthosilicate) -> SiO2 (7539ms)\nWhat is sodium chloride?\tan arrangement\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (an arrangement, can be made to produce, sodium hypochlorite) -> an arrangement (7499ms)\nWhat is sodium chloride?\tLee Prebble\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Lee Prebble, Tracks produced, Sodium Ions) -> Lee Prebble (7544ms)\nWhat is sodium chloride?\tThe cell\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The cell, produces, 100 % pure Sodium Hypochlorite) -> The cell (7556ms)\nWhat is sodium chloride?\tnitrous oxide\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (nitrous oxide, is produced from, sodium nitrite) -> nitrous oxide (7544ms)\nWhat is sodium chloride?\tsoy sauce\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (soy sauce, does contain, sodium) -> soy sauce (7564ms)\nWhat is sodium chloride?\tdrinking\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is ideal for, drinking) -> drinking (7560ms)\nWhat is sodium chloride?\tstrong muscles and nerves\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is very imperative for, strong muscles and nerves) -> strong muscles and nerves (7476ms)\nWhat is sodium chloride?\tfludrocortisone acetate\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (fludrocortisone acetate, produces marked, sodium retention) -> fludrocortisone acetate (7539ms)\nWhat is sodium chloride?\tqlass\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (qlass, can produce, sodium) -> qlass (7530ms)\nWhat is sodium chloride?\tNitrate\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Nitrate, produces kinds of, Sodium Nitrite) -> Nitrate (7499ms)\nWhat is sodium chloride?\trestaurants\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (restaurants, can produce foods with, less sodium) -> restaurants (7556ms)\nWhat is sodium chloride?\tthe recipes\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the recipes, do have, high sodium content) -> the recipes (7469ms)\nWhat is sodium chloride?\tthe operation\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, the operation) -> the operation (7525ms)\nWhat is sodium chloride?\thydration\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, hydration) -> hydration (7484ms)\nWhat is sodium chloride?\tSODIUM 275MG TABLET\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (SODIUM 275MG TABLET, does, Teva-Naproxen Sodium work) -> SODIUM 275MG TABLET (7564ms)\nWhat is sodium chloride?\tPfanstiehl\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Pfanstiehl, begins producing, sodium lactate solutions) -> Pfanstiehl (7556ms)\nWhat is sodium chloride?\tHenan Hongye Chemical Company Ltd.can\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Henan Hongye Chemical Company Ltd.can, produce, 40000MT Sodium) -> Henan Hongye Chemical Company Ltd.can (7544ms)\nWhat is sodium chloride?\tHyponatremia\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, define, sodium) -> (Hyponatremia, was defined as, more than one serum sodium) -> Hyponatremia (7568ms)\nWhat is sodium chloride?\tbrain and heart functions\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is additionally vital for, brain and heart functions) -> brain and heart functions (7484ms)\nWhat is sodium chloride?\ta high-sodium food\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, could be mistaken for, a high-sodium food) -> a high-sodium food (7539ms)\nWhat is sodium chloride?\tfemale rats providers\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (female rats providers, may do, peripheral warfarin sodium) -> female rats providers (7556ms)\nWhat is sodium chloride?\tColumbus\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Columbus, does use, sodium nitrates) -> Columbus (7519ms)\nWhat is sodium chloride?\tthe food industry\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the food industry, has done little to, lower sodium levels) -> the food industry (7530ms)\nWhat is sodium chloride?\trecovery\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also important for, recovery) -> recovery (7564ms)\nWhat is sodium chloride?\tabsorption\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is ultimately responsible for, absorption) -> absorption (7530ms)\nWhat is sodium chloride?\tanufactures\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (anufactures, produces kinds of, Sodium Nitrite) -> anufactures (7484ms)\nWhat is sodium chloride?\tproper transmission\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, proper transmission) -> proper transmission (7556ms)\nWhat is sodium chloride?\taspiring surgeon\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (aspiring surgeon, exactly DOES, high glucose cause high sodium) -> aspiring surgeon (7560ms)\nWhat is sodium chloride?\tvine roots\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (vine roots, do absorb, ? sodium) -> vine roots (7476ms)\nWhat is sodium chloride?\tprolonged photosensitivity\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (prolonged photosensitivity, does, porfimer sodium) -> prolonged photosensitivity (7512ms)\nWhat is sodium chloride?\tcrack\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (crack, might generally be produced using, sodium bicarbonate) -> crack (7519ms)\nWhat is sodium chloride?\tnerve cells\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are required for, nerve cells) -> nerve cells (7519ms)\nWhat is sodium chloride?\torganizations\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (organizations, can do right now to reduce, sodium) -> organizations (7556ms)\nWhat is sodium chloride?\tregulation\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, regulation) -> regulation (7530ms)\nWhat is sodium chloride?\tAfrica\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Africa, produce, their own sodium hypochlorite) -> Africa (7530ms)\nWhat is sodium chloride?\tnormal metabolic function\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is necessary for, normal metabolic function) -> normal metabolic function (7544ms)\nWhat is sodium chloride?\tthe work\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the work, has already been done on, sodium reduction) -> the work (7530ms)\nWhat is sodium chloride?\tfactory\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (factory, produced, sodium bicarbonate) -> factory (7564ms)\nWhat is sodium chloride?\tThe digestion process\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The digestion process, produces, a sodium aluminate solution) -> The digestion process (7560ms)\nWhat is sodium chloride?\tThe electrolysis\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The electrolysis, produces, sodium hypochlorite) -> The electrolysis (7535ms)\nWhat is sodium chloride?\thuman metabolism\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are essential for, human metabolism) -> human metabolism (7535ms)\nWhat is sodium chloride?\tmuscle and nerve tissue\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is vital for, muscle and nerve tissue) -> muscle and nerve tissue (7530ms)\nWhat is sodium chloride?\tMalaysia\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Malaysia, does n?t have, the sodium content) -> Malaysia (7530ms)\nWhat is sodium chloride?\treduced sodium\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (*Sodium, is figured for, reduced sodium) -> reduced sodium (7484ms)\nWhat is sodium chloride?\tkidney problems\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is a precursor for, kidney problems) -> kidney problems (7512ms)\nWhat is sodium chloride?\tthe treatment\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is beneficial for, the treatment) -> the treatment (7548ms)\nWhat is sodium chloride?\tA salty diet\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (A salty diet, can do, harm?sodium pulls water) -> A salty diet (7505ms)\nWhat is sodium chloride?\tComments\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Comments, does adding, sodium bisulifite) -> Comments (7544ms)\nWhat is sodium chloride?\tsalts\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (salts, produce commercial grades of, sodium bicarbonate) -> salts (7512ms)\nWhat is sodium chloride?\tCanexus LP\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Canexus LP, produces, sodium chlorate) -> Canexus LP (7535ms)\nWhat is sodium chloride?\tthe hydrogen\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is exchanged for, the hydrogen) -> the hydrogen (7539ms)\nWhat is sodium chloride?\ttumor growth\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, tumor growth) -> tumor growth (7512ms)\nWhat is sodium chloride?\tIndia\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (India, produces a technical grade of, Sodium Bicarbonate) -> India (7519ms)\nWhat is sodium chloride?\tthe muscle contraction\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, the muscle contraction) -> the muscle contraction (7506ms)\nWhat is sodium chloride?\thealthy functioning cells\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, healthy functioning cells) -> healthy functioning cells (7564ms)\nWhat is sodium chloride?\tFMC\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (FMC, also produces, sodium bicarbonate) -> FMC (7512ms)\nWhat is sodium chloride?\tosteoporosis\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is a risk factor for, osteoporosis) -> osteoporosis (7469ms)\nWhat is sodium chloride?\tChemistry CSBP Limited CSBP\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Chemistry CSBP Limited CSBP, produces, Sodium Cyanide) -> Chemistry CSBP Limited CSBP (7535ms)\nWhat is sodium chloride?\tA Saskatoon , Saskatchewan Plant\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (A Saskatoon , Saskatchewan Plant, produces, sodium chlorate) -> A Saskatoon , Saskatchewan Plant (7556ms)\nWhat is sodium chloride?\tThe reaction\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The reaction, produces, sodium ions and hydrogen gas) -> The reaction (7476ms)\nWhat is sodium chloride?\tlocal salt resource and soduim salt\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (local salt resource and soduim salt, is to produce, sodium metal) -> local salt resource and soduim salt (7548ms)\nWhat is sodium chloride?\tshelf life\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (shelf life, does, sodium) -> shelf life (7535ms)\nWhat is sodium chloride?\ta simple acid base reaction\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (a simple acid base reaction, produces, sodium acetate) -> a simple acid base reaction (7548ms)\nWhat is sodium chloride?\tcelery\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (celery, does contain, natural sodium) -> celery (7506ms)\nWhat is sodium chloride?\tthe alanine-enhanced dynamics\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, was essential for, the alanine-enhanced dynamics) -> the alanine-enhanced dynamics (7556ms)\nWhat is sodium chloride?\tradiation\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (radiation, is produced from, sodium vapor) -> radiation (7505ms)\nWhat is sodium chloride?\tthe correct fluid\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is critical for maintaining, the correct fluid) -> the correct fluid (7469ms)\nWhat is sodium chloride?\tIL1?-induced CRP expression\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (IL1?-induced CRP expression, did, sodium salicylate) -> IL1?-induced CRP expression (7519ms)\nWhat is sodium chloride?\tBread\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Bread, really does n?t contain a ginormous amount of, sodium) -> Bread (7484ms)\nWhat is sodium chloride?\tClostridium acetobutylicum\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Clostridium acetobutylicum, naturally produce, sodium butyrate) -> Clostridium acetobutylicum (7525ms)\nWhat is sodium chloride?\tcreatine uptake\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is needed for, creatine uptake) -> creatine uptake (7539ms)\nWhat is sodium chloride?\ttransport\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is needed for, transport) -> transport (7484ms)\nWhat is sodium chloride?\tthe general population\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are largely irrelevant for, the general population) -> the general population (7498ms)\nWhat is sodium chloride?\t40mmol/l\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (40mmol/l, produces, a sodium loss) -> 40mmol/l (7476ms)\nWhat is sodium chloride?\thealth--but certainly\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is best for, health--but certainly) -> health--but certainly (7564ms)\nWhat is sodium chloride?\tThe process\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The process, produces, sodium hydroxide) -> The process (7539ms)\nWhat is sodium chloride?\tdata\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, define, sodium) -> (data, have defined the same range of, sodium intake) -> data (7519ms)\nWhat is sodium chloride?\tfunctioning\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is required for, functioning) -> functioning (7498ms)\nWhat is sodium chloride?\tfood\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (food, is pretty easy to do, low sodium) -> food (7548ms)\nWhat is sodium chloride?\tSevere hyponatraemia\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, define, sodium) -> (Severe hyponatraemia, is usually defined as, serum sodium) -> Severe hyponatraemia (7512ms)\nWhat is sodium chloride?\tDr. Wall\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Dr. Wall, produced, the sodium salt) -> Dr. Wall (7491ms)\nWhat is sodium chloride?\tThe cherry flavors plant\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (The cherry flavors plant, would also produce, sodium cyanide) -> The cherry flavors plant (7530ms)\nWhat is sodium chloride?\ttreatment perioperative\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is for, treatment perioperative) -> treatment perioperative (7560ms)\nWhat is sodium chloride?\tsweat rates\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (sweat rates, so does, the sodium) -> sweat rates (7539ms)\nWhat is sodium chloride?\tCom\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (Com, does also be any effort for, any sodium) -> Com (7534ms)\nWhat is sodium chloride?\tthe Leonid meteors\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, was so unusual for, the Leonid meteors) -> the Leonid meteors (7491ms)\nWhat is sodium chloride?\tThai Rayon\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Thai Rayon, also produces, Anhydrous Sodium Sulphate) -> Thai Rayon (7491ms)\nWhat is sodium chloride?\tTestosterone\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Testosterone, can produce increased, sodium reabsorption) -> Testosterone (7519ms)\nWhat is sodium chloride?\tthe average active person\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (the average active person, does n?t need, the added sodium) -> the average active person (7548ms)\nWhat is sodium chloride?\t2 million\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are responsible for about, 2 million) -> 2 million (7491ms)\nWhat is sodium chloride?\twater fluoridation\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (water fluoridation, were done with, sodium fluoride) -> water fluoridation (7491ms)\nWhat is sodium chloride?\tThe scrubbing\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (The scrubbing, is done by, sodium sulfite or sodium hydroxide) -> The scrubbing (7469ms)\nWhat is sodium chloride?\tbodily function\t-0.44444444444500003\tWhat is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is critical for, bodily function) -> bodily function (7499ms)\nWhat is sodium chloride?\tWatercare\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Watercare, produces, its own sodium hypochlorite) -> Watercare (7491ms)\nWhat is sodium chloride?\tfrozen food\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (frozen food, does tend to be high in, sodium) -> frozen food (7548ms)\nWhat is sodium chloride?\tWilliams ,G.M. Hypertension\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, produce, sodium) -> (Williams ,G.M. Hypertension, produced by, sodium depletion) -> Williams ,G.M. Hypertension (7491ms)\nWhat is sodium chloride?\tan ?evolution diet ?\t-0.44444444444500003\tWhat is sodium chloride? -> $x: ($x, do, sodium) -> (an ?evolution diet ?, do to, your cholesterol and sodium levels) -> an ?evolution diet ? (7544ms)\nWhat is sodium chloride?\tsodium hexametaphosphate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium hexametaphosphate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20hexametaphosphate) -> sodium hexametaphosphate (7585ms)\nWhat is sodium chloride?\tSODIUM PHENYLBUTYRATE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM PHENYLBUTYRATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20phenylbutyrate) -> SODIUM PHENYLBUTYRATE (7587ms)\nWhat is sodium chloride?\tScience and Technology\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Science and Technology, found, sodium acetate) -> Science and Technology (7575ms)\nWhat is sodium chloride?\tSodium Orthovanadate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Orthovanadate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20orthovanadate) -> Sodium Orthovanadate (7575ms)\nWhat is sodium chloride?\tgoat?s\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, refer, sodium) -> (goat?s, are referred to as, bioorganic sodium animals) -> goat?s (7577ms)\nWhat is sodium chloride?\tthe same elements\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the same elements, found in, seawater ? sodium) -> the same elements (7589ms)\nWhat is sodium chloride?\tA recent study\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (A recent study, found, sodium concentrations) -> A recent study (7587ms)\nWhat is sodium chloride?\tThe bubbles\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (The bubbles, are created from, Sodium Coco Sulphate) -> The bubbles (7580ms)\nWhat is sodium chloride?\tCSPI\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (CSPI, found wide variances in, sodium content) -> CSPI (7583ms)\nWhat is sodium chloride?\tofficials\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (officials, were scrambling to find, enough sodium) -> officials (7587ms)\nWhat is sodium chloride?\tthe lemon\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (the lemon, creates, a sodium citrate solution) -> the lemon (7571ms)\nWhat is sodium chloride?\tSodium tellurite\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium tellurite, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20tellurite) -> Sodium tellurite (7580ms)\nWhat is sodium chloride?\tSodium-Chlorite\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium-Chlorite, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20chlorite) -> Sodium-Chlorite (7583ms)\nWhat is sodium chloride?\twhite light\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, hate, sodium) -> (white light, hated, the sodium yellow colored light) -> white light (7571ms)\nWhat is sodium chloride?\tproteins\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (proteins, is found in, sodium .otassium) -> proteins (7580ms)\nWhat is sodium chloride?\tHong Kong\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Hong Kong, found, sodium levels) -> Hong Kong (7587ms)\nWhat is sodium chloride?\tthe main forms people\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the main forms people, find, sodium) -> the main forms people (7575ms)\nWhat is sodium chloride?\tpostmenopausal women\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (postmenopausal women, found increased, urinary sodium excretion) -> postmenopausal women (7585ms)\nWhat is sodium chloride?\ta little bit\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (a little bit, find, non-sodium alternatives) -> a little bit (7583ms)\nWhat is sodium chloride?\tSODIUM DIETHYLDITHIOCARBAMATE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM DIETHYLDITHIOCARBAMATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20diethyldithiocarbamate) -> SODIUM DIETHYLDITHIOCARBAMATE (7580ms)\nWhat is sodium chloride?\tthe study\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the study, also found ill effects from, high sodium) -> the study (7583ms)\nWhat is sodium chloride?\tsodium ferulate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium ferulate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20ferulate) -> sodium ferulate (7568ms)\nWhat is sodium chloride?\ta much higher amount\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (a much higher amount, is found in, intracellular sodium) -> a much higher amount (7587ms)\nWhat is sodium chloride?\tSodium uranate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium uranate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20uranate) -> Sodium uranate (7587ms)\nWhat is sodium chloride?\tResearchers\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Researchers, found, that including serum sodium concentration) -> Researchers (7580ms)\nWhat is sodium chloride?\tresearchers\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (researchers, found, an unusual persistent sodium current) -> researchers (7575ms)\nWhat is sodium chloride?\tSODIUM SORBATE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM SORBATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20sorbate) -> SODIUM SORBATE (7577ms)\nWhat is sodium chloride?\tthe kids\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the kids, find, sodium and potassium) -> the kids (7578ms)\nWhat is sodium chloride?\tBrazil nut\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Brazil nut, was found to be just as powerful as, sodium selenite) -> Brazil nut (7571ms)\nWhat is sodium chloride?\tArm & Hammer Super Washing Soda\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Arm & Hammer Super Washing Soda, find, sodium carbonate) -> Arm & Hammer Super Washing Soda (7585ms)\nWhat is sodium chloride?\tOklahoma\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Oklahoma, finally found, enough sodium) -> Oklahoma (7585ms)\nWhat is sodium chloride?\tAmy 's chefs\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (Amy 's chefs, have created a line of Light in, Sodium) -> Amy 's chefs (7587ms)\nWhat is sodium chloride?\tCalx-beta domains\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Calx-beta domains, are found, sodium-calcium exchangers) -> Calx-beta domains (7578ms)\nWhat is sodium chloride?\tThe effects\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (The effects, are created from, sodium vapors) -> The effects (7571ms)\nWhat is sodium chloride?\ttimes\t-0.555555555555\tWhat is sodium chloride? -> $x: (sodium, have use of, $x) -> (?Sodium, has been used millions of, times) -> times (7583ms)\nWhat is sodium chloride?\tconvenience foods\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (convenience foods, find, lower sodium options) -> convenience foods (7568ms)\nWhat is sodium chloride?\thyper/hyponatremia\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, refer, sodium) -> (hyper/hyponatremia, refers to, high/low sodium) -> hyper/hyponatremia (7583ms)\nWhat is sodium chloride?\tTerlipressin\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Terlipressin, has been found to reduce, serum sodium levels) -> Terlipressin (7587ms)\nWhat is sodium chloride?\tauthorities\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (authorities, found nearly a pound of, sodium cyanide) -> authorities (7571ms)\nWhat is sodium chloride?\tsodium butyrate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium butyrate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20butyrate) -> sodium butyrate (7587ms)\nWhat is sodium chloride?\tsodium selenide\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium selenide, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20selenide) -> sodium selenide (7589ms)\nWhat is sodium chloride?\tSodium Hypophosphite\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Hypophosphite, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20hypophosphite) -> Sodium Hypophosphite (7571ms)\nWhat is sodium chloride?\tSodium pyrosulfate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium pyrosulfate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20pyrosulfate) -> Sodium pyrosulfate (7571ms)\nWhat is sodium chloride?\tcarbamazepine and indapamide\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (carbamazepine and indapamide, was found to have, serum sodium) -> carbamazepine and indapamide (7587ms)\nWhat is sodium chloride?\tbar soap\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (bar soap, is created using, sodium hydroxide) -> bar soap (7568ms)\nWhat is sodium chloride?\tSodium-Hydrosulfide\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium-Hydrosulfide, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20hydrosulfide) -> Sodium-Hydrosulfide (7589ms)\nWhat is sodium chloride?\tsodium amalgam\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium amalgam, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20amalgam) -> sodium amalgam (7587ms)\nWhat is sodium chloride?\tiodine\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (iodine, can also be found in, a nearly sodium-free source) -> iodine (7585ms)\nWhat is sodium chloride?\tspecial dietary concerns\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (special dietary concerns, will find, tasty low sodium) -> special dietary concerns (7585ms)\nWhat is sodium chloride?\tglymidine\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (glymidine, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Glymidine%20sodium) -> glymidine (7568ms)\nWhat is sodium chloride?\tSodium decavanadate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium decavanadate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20decavanadate) -> Sodium decavanadate (7583ms)\nWhat is sodium chloride?\tMexican Officials\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Mexican Officials, Find Truck with, Deadly Sodium Cyanide) -> Mexican Officials (7583ms)\nWhat is sodium chloride?\tthe terms\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, refer, sodium) -> (the terms, refer to, sodium) -> the terms (7575ms)\nWhat is sodium chloride?\tSodium Girl?s super readers\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Girl?s super readers, found, a very low sodium brand) -> Sodium Girl?s super readers (7583ms)\nWhat is sodium chloride?\tsodium cobaltinitrite\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium cobaltinitrite, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20cobaltinitrite) -> sodium cobaltinitrite (7568ms)\nWhat is sodium chloride?\tUrban Effects Filters\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (Urban Effects Filters, Create the look of, Sodium street) -> Urban Effects Filters (7575ms)\nWhat is sodium chloride?\tsodium and oxygen form sodium oxides\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (sodium and oxygen form sodium oxides, create, sodium hydroxide) -> sodium and oxygen form sodium oxides (7568ms)\nWhat is sodium chloride?\tThe word ?sodium ?\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, refer, sodium) -> (The word ?sodium ?, refers to, sodium hydroxide) -> The word ?sodium ? (7575ms)\nWhat is sodium chloride?\tSODIUM ETHOXIDE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM ETHOXIDE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20ethoxide) -> SODIUM ETHOXIDE (7577ms)\nWhat is sodium chloride?\tsodium sesquicarbonate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium sesquicarbonate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20sesquicarbonate) -> sodium sesquicarbonate (7580ms)\nWhat is sodium chloride?\tI?ve\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (I?ve, found, lower-sodium alternatives) -> I?ve (7571ms)\nWhat is sodium chloride?\tresearcher Henry Bieler\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (researcher Henry Bieler, found signs of, sodium starvation) -> researcher Henry Bieler (7580ms)\nWhat is sodium chloride?\tSODIUM FLUOROSILICATE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM FLUOROSILICATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20fluorosilicate) -> SODIUM FLUOROSILICATE (7580ms)\nWhat is sodium chloride?\tSodium Borohydride\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Borohydride, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20borohydride) -> Sodium Borohydride (7580ms)\nWhat is sodium chloride?\tyou?ll\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (you?ll, find, the ingredient sodium selenite) -> you?ll (7577ms)\nWhat is sodium chloride?\tMovie star Travel\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (Movie star Travel, were being created from, sodium shakers) -> Movie star Travel (7577ms)\nWhat is sodium chloride?\tWalnuts\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, happen to, sodium) -> (Walnuts, just happen to be, sodium and cholesterol free) -> Walnuts (7571ms)\nWhat is sodium chloride?\ta cell\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, refer, sodium) -> (a cell, is commonly referred to as, a sodium pump) -> a cell (7580ms)\nWhat is sodium chloride?\tthe world soda water\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (the world soda water, is created by using, sodium bicarbonate) -> the world soda water (7585ms)\nWhat is sodium chloride?\tSodium Dichloroisocyanurate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Dichloroisocyanurate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20dichloroisocyanurate) -> Sodium Dichloroisocyanurate (7580ms)\nWhat is sodium chloride?\tthe 90 wells\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the 90 wells, were found to have naturally, high sodium levels) -> the 90 wells (7580ms)\nWhat is sodium chloride?\tGHB\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (GHB, may be found as, the sodium or potassium salt) -> GHB (7575ms)\nWhat is sodium chloride?\tsouth China\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (south China, was found to be using, industrial sodium nitrate) -> south China (7571ms)\nWhat is sodium chloride?\tinvestigators\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (investigators, found, a sodium-cyanide bomb) -> investigators (7571ms)\nWhat is sodium chloride?\tcent\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (cent, were found to have, high sodium levels) -> cent (7589ms)\nWhat is sodium chloride?\tMetham sodium\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Metham sodium, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Metham%20sodium) -> Metham sodium (7585ms)\nWhat is sodium chloride?\tSODIUM IODATE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM IODATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20iodate) -> SODIUM IODATE (7575ms)\nWhat is sodium chloride?\tsodium ascorbate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium ascorbate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20ascorbate) -> sodium ascorbate (7587ms)\nWhat is sodium chloride?\tMeniere\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Meniere, have been struggling to find, no-sodium products) -> Meniere (7583ms)\nWhat is sodium chloride?\tParnaparin\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Parnaparin, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Parnaparin%20sodium) -> Parnaparin (7568ms)\nWhat is sodium chloride?\tSodium Perrhenate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Perrhenate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20perrhenate) -> Sodium Perrhenate (7585ms)\nWhat is sodium chloride?\tthe clay\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, refer, sodium) -> (the clay, is referred to as, sodium) -> the clay (7575ms)\nWhat is sodium chloride?\tDifferences\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Differences, were found in, total sodium space) -> Differences (7587ms)\nWhat is sodium chloride?\tThe conditions\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (The conditions, are thereby created for, sodium) -> The conditions (7583ms)\nWhat is sodium chloride?\tSODIUM MOLYBDATE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM MOLYBDATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20molybdate) -> SODIUM MOLYBDATE (7583ms)\nWhat is sodium chloride?\tthe hardest part\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the hardest part, was finding a supplier for, sodium hydroxide) -> the hardest part (7575ms)\nWhat is sodium chloride?\tblood pH\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (blood pH, creates, magnesium , potassium , sodium) -> blood pH (7577ms)\nWhat is sodium chloride?\tthe planet\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the planet, has been found to contain, less sodium) -> the planet (7568ms)\nWhat is sodium chloride?\tThe key\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (The key, here is to find, lower sodium options) -> The key (7577ms)\nWhat is sodium chloride?\tSodium Polyacrylate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Polyacrylate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20polyacrylate) -> Sodium Polyacrylate (7575ms)\nWhat is sodium chloride?\t?Light ?\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, refer, sodium) -> (?Light ?, can refer to, fat , calories or sodium) -> ?Light ? (7578ms)\nWhat is sodium chloride?\tSODIUM ALUMINATE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM ALUMINATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20aluminate) -> SODIUM ALUMINATE (7587ms)\nWhat is sodium chloride?\tSodium apolate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium apolate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20apolate) -> Sodium apolate (7583ms)\nWhat is sodium chloride?\t80 %\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (80 %, Find her away from, oily , high sodium) -> 80 % (7577ms)\nWhat is sodium chloride?\tSODIUM TRIPOLYPHOSPHATE\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM TRIPOLYPHOSPHATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20triphosphate) -> SODIUM TRIPOLYPHOSPHATE (7577ms)\nWhat is sodium chloride?\tchlorine dioxide\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (chlorine dioxide, is created by mixing, sodium chlorite) -> chlorine dioxide (7585ms)\nWhat is sodium chloride?\tSodium fluoride\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium fluoride, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20fluoride) -> Sodium fluoride (7587ms)\nWhat is sodium chloride?\tThe bacon\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, happen to, sodium) -> (The bacon, happened to be, low sodium) -> The bacon (7571ms)\nWhat is sodium chloride?\tthe DASH-sodium study\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the DASH-sodium study, have found reduced, sodium) -> the DASH-sodium study (7571ms)\nWhat is sodium chloride?\tSodium cocoate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium cocoate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20cocoate) -> Sodium cocoate (7585ms)\nWhat is sodium chloride?\tdoctors\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (doctors, found traces of, sodium) -> doctors (7580ms)\nWhat is sodium chloride?\tthe standard\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the standard, is found in, sodium-carbonate-bearing brines) -> the standard (7568ms)\nWhat is sodium chloride?\tSodium Telluride\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Telluride, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20telluride) -> Sodium Telluride (7583ms)\nWhat is sodium chloride?\tPerchlorate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Perchlorate, has been found in, sodium hypochlorite) -> Perchlorate (7585ms)\nWhat is sodium chloride?\tmanufacturers\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, create, sodium) -> (manufacturers, have created, low-sodium products) -> manufacturers (7575ms)\nWhat is sodium chloride?\tSodium Selenate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Selenate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20selenate) -> Sodium Selenate (7587ms)\nWhat is sodium chloride?\tsodium gluconate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (sodium gluconate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20gluconate) -> sodium gluconate (7585ms)\nWhat is sodium chloride?\tSodium-Metavanadate\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium-Metavanadate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20metavanadate) -> Sodium-Metavanadate (7577ms)\nWhat is sodium chloride?\tthe initiative\t-0.555555555555\tWhat is sodium chloride? -> $x: ($x, found, sodium) -> (the initiative, find, ways to... 2 comments salt sodium) -> the initiative (7578ms)\nWhat is sodium chloride?\tan adrenal tumor\t-0.555555555556\tWhat is sodium chloride? -> $x: ($x, influence, sodium) -> (an adrenal tumor, influences, sodium retention) -> an adrenal tumor (7594ms)\nWhat is sodium chloride?\tShampoo\t-0.555555555556\tWhat is sodium chloride? -> $x: ($x, formulate, sodium chloride) -> (Shampoo, is formulated, Sodium-Chloride FREE and Sulfate FREE) -> Shampoo (7594ms)\nWhat is sodium chloride?\tsodium chloride\t-0.555555555556\tWhat is sodium chloride? -> $x: ($x, influence, sodium) -> (sodium chloride, influences the amount of, sodium ions) -> sodium chloride (7593ms)\nWhat is sodium chloride?\tMagnetized water\t-0.555555555556\tWhat is sodium chloride? -> $x: ($x, influence, sodium) -> (Magnetized water, increases the influence of, sub-caloric sodium) -> Magnetized water (7594ms)\nWhat is sodium chloride?\tcanada Blood loss\t-0.555555555556\tWhat is sodium chloride? -> $x: ($x, influence, sodium) -> (canada Blood loss, influences, sodium) -> canada Blood loss (7589ms)\nWhat is sodium chloride?\tendothelial function\t-0.555555555556\tWhat is sodium chloride? -> $x: ($x, influence, sodium) -> (endothelial function, influences, the sodium-potassium balance) -> endothelial function (7595ms)\nWhat is sodium chloride?\tNaproxen\t-0.555555555556\tWhat is sodium chloride? -> $x: ($x, formulate, sodium chloride) -> (Naproxen, formulated, contains sodium chloride) -> Naproxen (7595ms)\nWhat continent is Bolivia on?\tSubmit Answer\t-0.8888888888840001\tWhat continent is Bolivia on? -> $x: ($x, be population of, bolivium) -> (Submit Answer, is the population of, Bolivia) -> Submit Answer (894ms)\nWhat continent is Bolivia on?\tArgentina\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivium) -> (Argentina, is bordered by, Bolivia) -> Argentina (1244ms)\nWhat continent is Bolivia on?\tRondonia\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivia) -> (Rondonia, borders, Bolivia) -> Rondonia (1249ms)\nWhat continent is Bolivia on?\tSan Pedro de Atacama\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivia) -> (San Pedro de Atacama, cross the border into, Bolivia) -> San Pedro de Atacama (1205ms)\nWhat continent is Bolivia on?\tLake Titicaca\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivia) -> (Lake Titicaca, straddles the border between, Bolivia and Peru) -> Lake Titicaca (1244ms)\nWhat continent is Bolivia on?\tParaguay\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivia) -> (Paraguay, is bordered by, Bolivia) -> Paraguay (1244ms)\nWhat continent is Bolivia on?\tMadre de Dios\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivia) -> (Madre de Dios, borders, Brazil and Bolivia) -> Madre de Dios (1244ms)\nWhat continent is Bolivia on?\t20-21 La Paz Travel\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivium) -> (20-21 La Paz Travel, cross the border into, Bolivia) -> 20-21 La Paz Travel (1204ms)\nWhat continent is Bolivia on?\tthe Madeira River\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivium) -> (the Madeira River, will have cross-border effects in, Bolivia) -> the Madeira River (1244ms)\nWhat continent is Bolivia on?\tThe lake\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivia) -> (The lake, is bordered by, each Bolivia and Peru) -> The lake (1244ms)\nWhat continent is Bolivia on?\tthe Yungas\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivium) -> (the Yungas, are bordered by, Bolivia and Catamarca province) -> the Yungas (1244ms)\nWhat continent is Bolivia on?\tthe Madre\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivium) -> (the Madre, is the natural border between, Peru and Bolivia) -> the Madre (1244ms)\nWhat continent is Bolivia on?\ta coastline\t-0.999999999994\tWhat continent is Bolivia on? -> $x: ($x, border, bolivium) -> (a coastline, is bordered by, Bolivia) -> a coastline (1249ms)\nWhat continent is Bolivia on?\tthe blue-throats\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the blue-throats, are found only in, north-central Bolivia) -> the blue-throats (1274ms)\nWhat continent is Bolivia on?\tCeramic artifacts\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Ceramic artifacts, found during, a dig in Bolivia) -> Ceramic artifacts (1268ms)\nWhat continent is Bolivia on?\tMs Higgins\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Ms Higgins, has already found support from, Bolivia) -> Ms Higgins (1253ms)\nWhat continent is Bolivia on?\tNational Drug Control Policy\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (National Drug Control Policy, found, Bolivia) -> National Drug Control Policy (1253ms)\nWhat continent is Bolivia on?\tPresident of Bolivia\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (President of Bolivia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/President%20of%20Bolivia) -> President of Bolivia (1268ms)\nWhat continent is Bolivia on?\tvuelta a bolivia\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (vuelta a bolivia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Vuelta%20a%20Bolivia) -> vuelta a bolivia (1261ms)\nWhat continent is Bolivia on?\tecuadorica\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (ecuadorica, also found in, Bolivia & Argentina) -> ecuadorica (1271ms)\nWhat continent is Bolivia on?\tGermond?s research\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Germond?s research, finds similar projects in, Bolivia) -> Germond?s research (1274ms)\nWhat continent is Bolivia on?\tthe only known pathogenic arenavirus\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the only known pathogenic arenavirus, found in, Bolivia) -> the only known pathogenic arenavirus (1261ms)\nWhat continent is Bolivia on?\tSamaipata\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Samaipata, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Samaipata,%20Bolivia) -> Samaipata (1268ms)\nWhat continent is Bolivia on?\tan internet search\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (an internet search, found, Sustainable Bolivia) -> an internet search (1274ms)\nWhat continent is Bolivia on?\tLarger populations\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Larger populations, are found in, Bolivia) -> Larger populations (1274ms)\nWhat continent is Bolivia on?\tthe genera\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the genera, found in, Bolivia) -> the genera (1268ms)\nWhat continent is Bolivia on?\tKansas\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Kansas, finds a kindred spirit in, Bolivia) -> Kansas (1271ms)\nWhat continent is Bolivia on?\tthe handpumps\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the handpumps, Find, Bolivia) -> the handpumps (1268ms)\nWhat continent is Bolivia on?\tinfant formulae\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (infant formulae, were found in, Bolivia) -> infant formulae (1257ms)\nWhat continent is Bolivia on?\tRevolutionary Left Movement - New Majority\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Revolutionary Left Movement - New Majority, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Revolutionary%20Left%20Movement%20(Bolivia)) -> Revolutionary Left Movement - New Majority (1271ms)\nWhat continent is Bolivia on?\tAmy Stillman\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Amy Stillman, finds out from, Bolivia) -> Amy Stillman (1257ms)\nWhat continent is Bolivia on?\ttwo-toned quartz crystal\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (two-toned quartz crystal, is only found in, Bolivia) -> two-toned quartz crystal (1268ms)\nWhat continent is Bolivia on?\tSin Nombre\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Sin Nombre, have also been found in, Bolivia) -> Sin Nombre (1265ms)\nWhat continent is Bolivia on?\tjaguar scat\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (jaguar scat, found in, Bolivia) -> jaguar scat (1265ms)\nWhat continent is Bolivia on?\tmonkey\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (monkey, found in, Bolivia) -> monkey (1274ms)\nWhat continent is Bolivia on?\tBrazil\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Brazil, also found in, Bolivia) -> Brazil (1271ms)\nWhat continent is Bolivia on?\tLlamas\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Llamas, found mainly in, Bolivia) -> Llamas (1268ms)\nWhat continent is Bolivia on?\tThe neighborhood\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (The neighborhood, found on, Bolivia Drive) -> The neighborhood (1268ms)\nWhat continent is Bolivia on?\tthe local Quechua homebrew\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the local Quechua homebrew, found all over, Peru and Bolivia) -> the local Quechua homebrew (1271ms)\nWhat continent is Bolivia on?\t70 %\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (70 %, are found in, Bolivia) -> 70 % (1271ms)\nWhat continent is Bolivia on?\tC. brunneus\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (C. brunneus, is also found in, Bolivia) -> C. brunneus (1274ms)\nWhat continent is Bolivia on?\tThe species\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (The species, found in, Bolivia , Brazil and Peru) -> The species (1271ms)\nWhat continent is Bolivia on?\tPacha Mama\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Pacha Mama, can be found all over, Bolivia) -> Pacha Mama (1253ms)\nWhat continent is Bolivia on?\tChrist Palm\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Christ Palm, is found in, Argentina and Bolivia) -> Christ Palm (1265ms)\nWhat continent is Bolivia on?\tthe most brutal examples\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the most brutal examples, could be found in, Bolivia ?) -> the most brutal examples (1261ms)\nWhat continent is Bolivia on?\tyou?ll\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (you?ll, find, the Bolivia) -> you?ll (1261ms)\nWhat continent is Bolivia on?\thummingbird\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (hummingbird, found in, Bolivia) -> hummingbird (1265ms)\nWhat continent is Bolivia on?\tRANGE Titi monkeys\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (RANGE Titi monkeys, found in, Bolivia) -> RANGE Titi monkeys (1265ms)\nWhat continent is Bolivia on?\t?Call\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (?Call, Find cheap flights to, Bolivia) -> ?Call (1268ms)\nWhat continent is Bolivia on?\tBolivia national football team\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Bolivia national football team, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bolivia%20national%20football%20team) -> Bolivia national football team (1268ms)\nWhat continent is Bolivia on?\tFreire\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Freire, found political asylum in, Bolivia) -> Freire (1257ms)\nWhat continent is Bolivia on?\tthe Amazonian rainforest\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the Amazonian rainforest, found in, northern Bolivia) -> the Amazonian rainforest (1268ms)\nWhat continent is Bolivia on?\tThe Christ Palm\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (The Christ Palm, is found in, Argentina or Bolivia) -> The Christ Palm (1261ms)\nWhat continent is Bolivia on?\tloans\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (loans, finds, Bolivia?s Aymara Indian president) -> loans (1261ms)\nWhat continent is Bolivia on?\tthe Military\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the Military, can be found in, Bolivia) -> the Military (1253ms)\nWhat continent is Bolivia on?\tAymara speakers\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Aymara speakers, are found in, Bolivia) -> Aymara speakers (1257ms)\nWhat continent is Bolivia on?\tvivianite\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (vivianite, are also found in, Bolivia) -> vivianite (1261ms)\nWhat continent is Bolivia on?\tJournalist siblings\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Journalist siblings, found slain in, Bolivia JamaicanTimes.com) -> Journalist siblings (1265ms)\nWhat continent is Bolivia on?\tA Chicco magazine\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (A Chicco magazine, found in, Bolivia and Argentina) -> A Chicco magazine (1261ms)\nWhat continent is Bolivia on?\tthe biggest cocaine factory\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the biggest cocaine factory, ever found in, Bolivia?the) -> the biggest cocaine factory (1274ms)\nWhat continent is Bolivia on?\tdecent work\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (decent work, is still so difficult to find in, Bolivia) -> decent work (1271ms)\nWhat continent is Bolivia on?\tCitrine\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Citrine, has been found in, areas of Bolivia) -> Citrine (1274ms)\nWhat continent is Bolivia on?\tbismuth\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (bismuth, are found in, Bolivia) -> bismuth (1268ms)\nWhat continent is Bolivia on?\tThe Bolivian gray titi monkey\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (The Bolivian gray titi monkey, is found in, Bolivia and Brazil) -> The Bolivian gray titi monkey (1265ms)\nWhat continent is Bolivia on?\tOil and gas deposits\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Oil and gas deposits, are found nearby in, Bolivia as well as) -> Oil and gas deposits (1261ms)\nWhat continent is Bolivia on?\tthe Katrina cars\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the Katrina cars, found a new home in, Bolivia) -> the Katrina cars (1271ms)\nWhat continent is Bolivia on?\tSpectacular dinosaur tracks\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Spectacular dinosaur tracks, are found in, Bolivia) -> Spectacular dinosaur tracks (1271ms)\nWhat continent is Bolivia on?\tSimilar breads\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Similar breads, are also found in, Bolivia) -> Similar breads (1271ms)\nWhat continent is Bolivia on?\tWild rice species\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Wild rice species, found in, Trinidad Bolivia) -> Wild rice species (1257ms)\nWhat continent is Bolivia on?\taraca\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (araca, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Araca%20(Bolivia)) -> araca (1271ms)\nWhat continent is Bolivia on?\tThe largest deposits of Bismuth\t-0.999999999995\tWhat continent is Bolivia on? -> $x: ($x, find, bolivia) -> (The largest deposits of Bismuth, are found in, Bolivia) -> The largest deposits of Bismuth (1257ms)\nWhat continent is Bolivia on?\tResponsibilities\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivia) -> (Responsibilities, was to become an integral part of, Bolivia) -> Responsibilities (1276ms)\nWhat continent is Bolivia on?\tIquique\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (Iquique, was a part of, Bolivia) -> Iquique (1276ms)\nWhat continent is Bolivia on?\tthe Atacama Desert\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivia) -> (the Atacama Desert, was formally part of, Bolivia) -> the Atacama Desert (1276ms)\nWhat continent is Bolivia on?\tExports\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (Exports, are a major part of, the Bolivia?s economy) -> Exports (1276ms)\nWhat continent is Bolivia on?\tThe Chacaltaya\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (The Chacaltaya, is part of, Bolivia) -> The Chacaltaya (1274ms)\nWhat continent is Bolivia on?\tThe Apolo area\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (The Apolo area, is a fantastic part of, Bolivia) -> The Apolo area (1276ms)\nWhat continent is Bolivia on?\tthe town\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (the town, was a part of, Bolivia) -> the town (1276ms)\nWhat continent is Bolivia on?\tCoca\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivia) -> (Coca, is part of, Bolivia) -> Coca (1276ms)\nWhat continent is Bolivia on?\tCities\t-1.1111111111060001\tWhat continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (Cities, were an integral part of, colonial Bolivia) -> Cities (1276ms)\nWhat continent is Bolivia on?\tany team\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (any team, include, the Bolivia football team) -> any team (1285ms)\nWhat continent is Bolivia on?\tBiodiversity\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Biodiversity, included, Bolivia) -> Biodiversity (1283ms)\nWhat continent is Bolivia on?\tindigenous people\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (indigenous people, includes, Bolivia) -> indigenous people (1286ms)\nWhat continent is Bolivia on?\tthe Inca Empire\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (the Inca Empire, included, Peru and Bolivia) -> the Inca Empire (1289ms)\nWhat continent is Bolivia on?\tGood general references\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Good general references, include, Wikipedia > Bolivia) -> Good general references (1288ms)\nWhat continent is Bolivia on?\tCoverage\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Coverage, includes the whole of, Bolivia and Paraguay) -> Coverage (1288ms)\nWhat continent is Bolivia on?\tno formal agenda\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (no formal agenda, included, Bolivia) -> no formal agenda (1288ms)\nWhat continent is Bolivia on?\tThe countries\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (The countries, included, Bolivia) -> The countries (1289ms)\nWhat continent is Bolivia on?\ta geographic zone\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (a geographic zone, includes territories of, Peru and Bolivia) -> a geographic zone (1289ms)\nWhat continent is Bolivia on?\tMay 11\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (May 11, include, Argentina , Aruba , Bolivia ,) -> May 11 (1289ms)\nWhat continent is Bolivia on?\torigin\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (origin, include, Brazil , Argentina , Bolivia and Paraguay) -> origin (1288ms)\nWhat continent is Bolivia on?\t174 votes\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (174 votes, also included, Bolivia) -> 174 votes (1288ms)\nWhat continent is Bolivia on?\tU.S. influence\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (U.S. influence, now includes, Bolivia , Ecuador , Nicaragua) -> U.S. influence (1285ms)\nWhat continent is Bolivia on?\tExamples\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Examples, include, Bolivia?s decision) -> Examples (1289ms)\nWhat continent is Bolivia on?\tthe high Andes\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (the high Andes, includes, Peru , Colombia , Ecuador and Bolivia) -> the high Andes (1283ms)\nWhat continent is Bolivia on?\tU.S. drug report\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (U.S. drug report, includes, Bolivia La Prensa) -> U.S. drug report (1286ms)\nWhat continent is Bolivia on?\tCentral America\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Central America, also included, Bolivia) -> Central America (1285ms)\nWhat continent is Bolivia on?\tMembers\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Members, include, Bolivia) -> Members (1286ms)\nWhat continent is Bolivia on?\tAttractive markets\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Attractive markets, include, Mexico and Bolivia) -> Attractive markets (1289ms)\nWhat continent is Bolivia on?\tthe four-day fixture\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (the four-day fixture, included, Bolivia) -> the four-day fixture (1283ms)\nWhat continent is Bolivia on?\tGroup A\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Group A, includes, Bolivia , Peru and Uruguay) -> Group A (1289ms)\nWhat continent is Bolivia on?\t30 countries\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (30 countries, includes, Bolivia , Ghana , Mali , and Mozambique) -> 30 countries (1286ms)\nWhat continent is Bolivia on?\ta career diplomat\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (a career diplomat, included, Guatemala and Bolivia) -> a career diplomat (1285ms)\nWhat continent is Bolivia on?\tEarly responders\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Early responders, included, Bolivia) -> Early responders (1289ms)\nWhat continent is Bolivia on?\trecent expeditions\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (recent expeditions, include trips to, Bolivia) -> recent expeditions (1288ms)\nWhat continent is Bolivia on?\ta tour\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (a tour, also includes visits to, Bolivia and Venezuela) -> a tour (1285ms)\nWhat continent is Bolivia on?\tan agenda\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (an agenda, includes dialogue on, Bolivia?s demand) -> an agenda (1289ms)\nWhat continent is Bolivia on?\tVenezuela and Cuba\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Venezuela and Cuba, now includes, Bolivia , Ecuador , Nicaragua) -> Venezuela and Cuba (1288ms)\nWhat continent is Bolivia on?\tSmaller but important economies\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Smaller but important economies, include, Bolivia) -> Smaller but important economies (1281ms)\nWhat continent is Bolivia on?\tBuenos Aires\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Buenos Aires, includes, Colombia , Ecuador , Bolivia and Peru) -> Buenos Aires (1281ms)\nWhat continent is Bolivia on?\tThird World countries\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Third World countries, includes, Bolivia) -> Third World countries (1286ms)\nWhat continent is Bolivia on?\tThe eastern lowlands\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The eastern lowlands, include all of, Bolivia) -> The eastern lowlands (1285ms)\nWhat continent is Bolivia on?\ta ten day conference\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (a ten day conference, included representatives from, Bolivia) -> a ten day conference (1285ms)\nWhat continent is Bolivia on?\tLocations\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Locations, include, Burma , Ethiopia , Bolivia and Guatemala) -> Locations (1288ms)\nWhat continent is Bolivia on?\tWashington\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Washington, also continued to include, Burma and Bolivia) -> Washington (1289ms)\nWhat continent is Bolivia on?\tSouth America\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (South America, had ever included, Bolivia) -> South America (1288ms)\nWhat continent is Bolivia on?\tthe global Anglican Communion\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (the global Anglican Communion, includes, Bolivia) -> the global Anglican Communion (1288ms)\nWhat continent is Bolivia on?\tpast projects\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (past projects, include, Bolivia?s water privatization debacle) -> past projects (1289ms)\nWhat continent is Bolivia on?\tThe western Amazon\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The western Amazon, includes parts of, Bolivia) -> The western Amazon (1289ms)\nWhat continent is Bolivia on?\t244 countries and regions\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (244 countries and regions, include, Bolivia) -> 244 countries and regions (1288ms)\nWhat continent is Bolivia on?\tguerrilla warfare\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (guerrilla warfare, include, Malaysia , Bolivia , Argentina ,) -> guerrilla warfare (1283ms)\nWhat continent is Bolivia on?\tThe study\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The study, includes the countries of, Bolivia) -> The study (1285ms)\nWhat continent is Bolivia on?\tthe destinations\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (the destinations, can include, Bolivia and Ecuador) -> the destinations (1289ms)\nWhat continent is Bolivia on?\tAn unofficial working group\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (An unofficial working group, included a critique of, Bolivia) -> An unofficial working group (1283ms)\nWhat continent is Bolivia on?\tThe Gaian League\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The Gaian League, might include such countries as, Bolivia) -> The Gaian League (1285ms)\nWhat continent is Bolivia on?\tAdventure & Atacama Marathon\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Adventure & Atacama Marathon, includes, Chile , Bolivia and Peru) -> Adventure & Atacama Marathon (1285ms)\nWhat continent is Bolivia on?\tgrants\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (grants, include nations such as, Bolivia) -> grants (1288ms)\nWhat continent is Bolivia on?\taid cuts\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (aid cuts, include, Bolivia) -> aid cuts (1288ms)\nWhat continent is Bolivia on?\tNeighboring countries\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Neighboring countries, include, Bolivia) -> Neighboring countries (1288ms)\nWhat continent is Bolivia on?\texperience\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (experience, includes very influential work in, Bolivia) -> experience (1283ms)\nWhat continent is Bolivia on?\tTahuantinsuyu\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Tahuantinsuyu, included, Peru and Bolivia) -> Tahuantinsuyu (1289ms)\nWhat continent is Bolivia on?\tMonday\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Monday, included, Bolivia) -> Monday (1283ms)\nWhat continent is Bolivia on?\tThe fertile eastern lowlands\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The fertile eastern lowlands, include all of, Bolivia) -> The fertile eastern lowlands (1287ms)\nWhat continent is Bolivia on?\tCollasuyu\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Collasuyu, included, present day Bolivia) -> Collasuyu (1286ms)\nWhat continent is Bolivia on?\tthe initiative\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivium) -> (the initiative, include, Bolivia and Uruguay) -> the initiative (1289ms)\nWhat continent is Bolivia on?\tThe mission\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The mission, included, Bolivia) -> The mission (1289ms)\nWhat continent is Bolivia on?\tregion\t-1.222222222218\tWhat continent is Bolivia on? -> $x: ($x, include, bolivia) -> (region, includes parts of, Bolivia , Colombia and Peru) -> region (1285ms)\nWhat movie won the Academy Award for best picture in 1989?\tDriving Miss Daisy\t0.33333333333299997\tWhat movie won the Academy Award for best picture in 1989? -> $x: ($x, win best picture in, 1989) -> (Driving Miss Daisy, win best picture in, 1989) -> Driving Miss Daisy (600ms)\nWhat are brake pads made of?\ttough material\t0.444444444441\tWhat are brake pads made of? -> $x: (brake pad, be make out of, $x) -> (Brake pads and shoes, are made out of very, tough material) -> tough material (1251ms)\nWhat are brake pads made of?\tThe brake\t0.222222222221\tWhat are brake pads made of? -> $x: ($x, make of, brake pad) -> (The brake, is made of, brake pads) -> The brake (1462ms)\nWhat are brake pads made of?\tfibers\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Non-asbestos organic brake pads, are made from, fibers) -> fibers (1251ms)\nWhat are brake pads made of?\tcarbon-fibre\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (The brake pads, are made from, carbon-fibre) -> carbon-fibre (1462ms)\nWhat are brake pads made of?\tBaer\t0.222222222221\tWhat are brake pads made of? -> $x: ($x, make of, brake pad) -> (Baer, makes a wide range of, ceramic brake pads) -> Baer (1252ms)\nWhat are brake pads made of?\tsmall pieces\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (motorcycle brake pads, are made from, small pieces) -> small pieces (1462ms)\nWhat are brake pads made of?\ta combination\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (The best brake pads, are made from, a combination) -> a combination (1251ms)\nWhat are brake pads made of?\ta variety\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Brake pads, are made from, a variety) -> a variety (1251ms)\nWhat are brake pads made of?\tnow\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (The brake pads, are made from carbon-fibre, now) -> now (1252ms)\nWhat are brake pads made of?\tthe same material\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (The brake pads, are made from, the same material) -> the same material (1462ms)\nWhat are brake pads made of?\tBrake dust\t0.222222222221\tWhat are brake pads made of? -> $x: ($x, make of, brake pad) -> (Brake dust, is made of, brake pad dust) -> Brake dust (1251ms)\nWhat are brake pads made of?\tsoft Ferro Carbon material\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Hawk brake pads, are made from, soft Ferro Carbon material) -> soft Ferro Carbon material (1462ms)\nWhat are brake pads made of?\tceramic fibers\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Ceramic Brake Pads, Are made from, ceramic fibers) -> ceramic fibers (1462ms)\nWhat are brake pads made of?\tseveral components\t0.222222222221\tWhat are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Brake pads, are made from, several components) -> several components (1462ms)\nWhat are brake pads made of?\tANNAT\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (ANNAT, is specialized in, auto brake pad) -> ANNAT (1502ms)\nWhat are brake pads made of?\tAsbestos fibers\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (Asbestos fibers, were once used in, automobile brake pads) -> Asbestos fibers (1833ms)\nWhat are brake pads made of?\tchoices\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (choices, is in, the brake pads) -> choices (1747ms)\nWhat are brake pads made of?\tmuch life\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (much life, is left in, your brake pads) -> much life (1541ms)\nWhat are brake pads made of?\tthermocouples\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (thermocouples, were installed in, the front brake pads) -> thermocouples (1541ms)\nWhat are brake pads made of?\tdrivers\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (drivers, is truly a milestone in, brake pad material development) -> drivers (1747ms)\nWhat are brake pads made of?\tasbestos\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (asbestos, was used in, brake and clutch pads) -> asbestos (1747ms)\nWhat are brake pads made of?\tsoil or grit\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (soil or grit, is trapped in, the brake pad) -> soil or grit (1747ms)\nWhat are brake pads made of?\tthe product\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (the product, is found in, brake pads) -> the product (1541ms)\nWhat are brake pads made of?\tNon-building uses\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (Non-building uses, were in, brake pads) -> Non-building uses (1747ms)\nWhat are brake pads made of?\ta set\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (a set, was used almost exclusively in, brake pads) -> a set (1747ms)\nWhat are brake pads made of?\tcopper\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (copper, is its use in, brake linings/pads) -> copper (1502ms)\nWhat are brake pads made of?\tfunction\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (function, is left in, your brake pads) -> function (1747ms)\nWhat are brake pads made of?\tOES specifications\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (OES specifications, are also included in, most Remsa Brake pads) -> OES specifications (1502ms)\nWhat are brake pads made of?\tHong Kong SAR] ANNAT\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (Hong Kong SAR] ANNAT, is specialized in, auto brake pad) -> Hong Kong SAR] ANNAT (1541ms)\nWhat are brake pads made of?\theat\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (heat, is generated in, the brake pads) -> heat (1541ms)\nWhat are brake pads made of?\tWhite fibres\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (White fibres, were used in, brake pads) -> White fibres (1747ms)\nWhat are brake pads made of?\tmaterial\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (material, can be caught in, the brake pads) -> material (1502ms)\nWhat are brake pads made of?\tfriction materials\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (friction materials, are used in, brake pads today) -> friction materials (1502ms)\nWhat are brake pads made of?\tcertain emissions\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (certain emissions, are also found in, brake pads) -> certain emissions (1502ms)\nWhat are brake pads made of?\tAsbestos\t0.222222222218\tWhat are brake pads made of? -> $x: ($x, be in, brake pad) -> (Asbestos, was once commonly used in, automotive brake pads) -> Asbestos (1541ms)\nWhat are brake pads made of?\torganic materials\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (brake pads, are those made of, organic materials) -> organic materials (1885ms)\nWhat are brake pads made of?\ta relatively soft resinous composite\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Brake pads, are made of, a relatively soft resinous composite) -> a relatively soft resinous composite (1885ms)\nWhat are brake pads made of?\ta metal backing plate\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Brake pads, are made of, a metal backing plate) -> a metal backing plate (1885ms)\nWhat are brake pads made of?\ta compound\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Brembo front brake pads, are made of, a compound) -> a compound (1885ms)\nWhat are brake pads made of?\thazardous materials\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (brake pads, are made of very, hazardous materials) -> hazardous materials (1834ms)\nWhat are brake pads made of?\texact fit\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (These long lasting brake pads, are made to be of, exact fit) -> exact fit (1885ms)\nWhat are brake pads made of?\ta hard material\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (The brake pads, appear to be made of, a hard material) -> a hard material (1885ms)\nWhat are brake pads made of?\tmetal shavings\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (the brake pads, are made of, metal shavings) -> metal shavings (1834ms)\nWhat are brake pads made of?\ta material\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (the brake pads, to be made of, a material) -> a material (1885ms)\nWhat are brake pads made of?\ta sinter mixture\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (The braking pads, are made of, a sinter mixture) -> a sinter mixture (1885ms)\nWhat are brake pads made of?\tcrystal :eek\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (your brake pads, are made of, crystal :eek) -> crystal :eek (1885ms)\nWhat are brake pads made of?\tdifferent materials\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Truck disc brake pads, are made of, different materials) -> different materials (1833ms)\nWhat are brake pads made of?\thard , semi-metallic materials\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Most brake pads, now are made of, hard , semi-metallic materials) -> hard , semi-metallic materials (1885ms)\nWhat are brake pads made of?\tfriction lining\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Types Brake pads, are made of, friction lining) -> friction lining (1885ms)\nWhat are brake pads made of?\tnon-asbestos material\t0.111111111111\tWhat are brake pads made of? -> $x: (brake pad, be make of, $x) -> (The AutoExe Sports Brake Pad, is made of, non-asbestos material) -> non-asbestos material (1834ms)\nWhat are brake pads made of?\tthe integral components\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (The brake pad, is one of, the integral components) -> the integral components (1911ms)\nWhat are brake pads made of?\tracing materials\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be make, $x) -> (The yellow stuff brake pad, is made with, racing materials) -> racing materials (1916ms)\nWhat are brake pads made of?\tthe potential outcomes\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are only some of, the potential outcomes) -> the potential outcomes (1920ms)\nWhat are brake pads made of?\tthe best\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (ultra-efficient steel brake pads, are one of, the best) -> the best (1920ms)\nWhat are brake pads made of?\tvalue and interest\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, are definitely something of, value and interest) -> value and interest (1918ms)\nWhat are brake pads made of?\tlast a long time\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, do, last a long time) -> last a long time (1920ms)\nWhat are brake pads made of?\tthe wheel area\t-0.0\tWhat are brake pads made of? -> $x: ($x, cause, brake pad) -> (the wheel area, can be caused by, worn brake pads) -> the wheel area (1923ms)\nWhat are brake pads made of?\t14 percent\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be make, $x) -> (The brake pads, were made, 14 percent) -> 14 percent (1924ms)\nWhat are brake pads made of?\tresearch\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, did lots of, research) -> research (1911ms)\nWhat are brake pads made of?\tany carbon brake track wheel\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be make, $x) -> (cork brake pads, are made to give, any carbon brake track wheel) -> any carbon brake track wheel (1916ms)\nWhat are brake pads made of?\tmore work\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (a brake pad, called upon to do, more work) -> more work (1923ms)\nWhat are brake pads made of?\towners\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (the brake pads and fluids, can be done quickly by, owners) -> owners (1920ms)\nWhat are brake pads made of?\tdust\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be make, $x) -> ('s brake pad, was making, dust) -> dust (1921ms)\nWhat are brake pads made of?\tregular maintenance\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, should be considered a part of, regular maintenance) -> regular maintenance (1916ms)\nWhat are brake pads made of?\tthe most common brake repair issues\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, is one of, the most common brake repair issues) -> the most common brake repair issues (1906ms)\nWhat are brake pads made of?\tthe past\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, is a thing of, the past) -> the past (1921ms)\nWhat are brake pads made of?\twhen they are applied\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (All brake pads, do produce vibrations, when they are applied) -> when they are applied (1923ms)\nWhat are brake pads made of?\tthe customer\t-0.0\tWhat are brake pads made of? -> $x: ($x, be make, brake pad) -> (the customer, is free to make, their own brake pad selection) -> the customer (1909ms)\nWhat are brake pads made of?\ta allen key\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (the brake pads, is done by, a allen key) -> a allen key (1918ms)\nWhat are brake pads made of?\ta black art\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pad selection, is a bit of, a black art) -> a black art (1918ms)\nWhat are brake pads made of?\trust and corrosion\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (worn rear brake pads, was bits of, rust and corrosion) -> rust and corrosion (1906ms)\nWhat are brake pads made of?\tsteel or copper\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are containing tiny amounts of, steel or copper) -> steel or copper (1920ms)\nWhat are brake pads made of?\tcompound\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Ceramic brake pads, are composed of, compound) -> compound (1923ms)\nWhat are brake pads made of?\tcomposite ceramic fibers\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be make with, $x) -> (brake pads, are made with, composite ceramic fibers) -> composite ceramic fibers (1924ms)\nWhat are brake pads made of?\tthe brake\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (The brake pad, is the part of, the brake) -> the brake (1922ms)\nWhat are brake pads made of?\tthe disc braking system\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are a part of, the disc braking system) -> the disc braking system (1920ms)\nWhat are brake pads made of?\tpollution\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (worn-down tires and brake pads, are a major source of, pollution) -> pollution (1916ms)\nWhat are brake pads made of?\ta brake system\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are only 1/4 of, a brake system) -> a brake system (1918ms)\nWhat are brake pads made of?\tfire trucks\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be use for, $x) -> (the same brake pad technology, is widely used for, fire trucks) -> fire trucks (1914ms)\nWhat are brake pads made of?\tthe many examples\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are just a few of, the many examples) -> the many examples (1914ms)\nWhat are brake pads made of?\tthe common reason?s\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pad and rotor, is another of, the common reason?s) -> the common reason?s (1921ms)\nWhat are brake pads made of?\ta normal foot size\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pad, is almost of, a normal foot size) -> a normal foot size (1906ms)\nWhat are brake pads made of?\toil\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads and disc, must be free of, oil) -> oil (1914ms)\nWhat are brake pads made of?\tceramic and copper\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Ceramic brakes and pads, are a mixture of, ceramic and copper) -> ceramic and copper (1921ms)\nWhat are brake pads made of?\tproper maintenance\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, do require, proper maintenance) -> proper maintenance (1920ms)\nWhat are brake pads made of?\tthe most important components\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (The brake pad, is one of, the most important components) -> the most important components (1911ms)\nWhat are brake pads made of?\tthe screws\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, is an indication of, the screws) -> the screws (1909ms)\nWhat are brake pads made of?\tthe most important upgrades\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are one of, the most important upgrades) -> the most important upgrades (1906ms)\nWhat are brake pads made of?\tthe first part\t-0.0\tWhat are brake pads made of? -> $x: ($x, cause, brake pad) -> (the first part, is caused by, overheated brake pads) -> the first part (1911ms)\nWhat are brake pads made of?\tthe most critical regions\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the rotors and brake pads, are one of, the most critical regions) -> the most critical regions (1909ms)\nWhat are brake pads made of?\tthe whole brake system\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, are just a part of, the whole brake system) -> the whole brake system (1918ms)\nWhat are brake pads made of?\tExcessive heat\t-0.0\tWhat are brake pads made of? -> $x: ($x, cause, brake pad) -> (Excessive heat, can cause resins in, your brake pad) -> Excessive heat (1914ms)\nWhat are brake pads made of?\tfocus\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads and discs, continue to be a key area of, focus) -> focus (1918ms)\nWhat are brake pads made of?\tthe highest-volume parts\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Larry Carley Brake pads, are one of, the highest-volume parts) -> the highest-volume parts (1913ms)\nWhat are brake pads made of?\tthe great reasons\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, can be fashionable too One of, the great reasons) -> the great reasons (1923ms)\nWhat are brake pads made of?\tthe most common types\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are one of, the most common types) -> the most common types (1916ms)\nWhat are brake pads made of?\tGrinding sounds\t-0.0\tWhat are brake pads made of? -> $x: ($x, cause, brake pad) -> (Grinding sounds, may be caused by completely worn, brake pads) -> Grinding sounds (1916ms)\nWhat are brake pads made of?\torganic ingredients\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be make, $x) -> (Brake pads, were originally made with, organic ingredients) -> organic ingredients (1923ms)\nWhat are brake pads made of?\t4ETS\t-0.0\tWhat are brake pads made of? -> $x: ($x, cause, brake pad) -> (4ETS, cause, premature brake pad wear) -> 4ETS (1921ms)\nWhat are brake pads made of?\ttop-rated performance\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Rotex brake pads, are a combination of, top-rated performance) -> top-rated performance (1921ms)\nWhat are brake pads made of?\tthe brakes and cables class\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, is part of, the brakes and cables class) -> the brakes and cables class (1911ms)\nWhat are brake pads made of?\tthe most crucial aspects\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (the rotors and brake pads, are one of, the most crucial aspects) -> the most crucial aspects (1916ms)\nWhat are brake pads made of?\tthe key components\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are one of, the key components) -> the key components (1920ms)\nWhat are brake pads made of?\teach piston\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be use for, $x) -> (A separate brake pad, is used for, each piston) -> each piston (1914ms)\nWhat are brake pads made of?\tvibrations\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (All brake pads, do produce, vibrations) -> vibrations (1914ms)\nWhat are brake pads made of?\tthe USA NOTES\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, make in, $x) -> (Brake pads, included Made in, the USA NOTES) -> the USA NOTES (1916ms)\nWhat are brake pads made of?\tthe braking system\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are an integral element of, the braking system) -> the braking system (1923ms)\nWhat are brake pads made of?\tthe disc rotors\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, usually do wear out, the disc rotors) -> the disc rotors (1921ms)\nWhat are brake pads made of?\tsteel and copper\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Low-metallic brake pads, are a mixed of, steel and copper) -> steel and copper (1923ms)\nWhat are brake pads made of?\tsintered copper\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (These brake pads, are composed of, sintered copper) -> sintered copper (1924ms)\nWhat are brake pads made of?\tthe rotors\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, will do damage to, the rotors) -> the rotors (1918ms)\nWhat are brake pads made of?\tthe components\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are one of, the components) -> the components (1918ms)\nWhat are brake pads made of?\thigh temperature use\t-0.0\tWhat are brake pads made of? -> $x: (brake pad, be of, $x) -> (The yellow stuff brake pad, is capable of, high temperature use) -> high temperature use (1909ms)\nWhat are brake pads made of?\tnew parking brake\t-0.666666666667\tWhat are brake pads made of? -> $x: ($x, pad, brake) -> (new parking brake, pads, the parking brakes) -> new parking brake (1924ms)\nWhat are brake pads made of?\t4 comments car brake\t-0.666666666667\tWhat are brake pads made of? -> $x: ($x, pad, brake) -> (4 comments car brake, pads, brake rotors) -> 4 comments car brake (1924ms)\nWhat are brake pads made of?\tSchwinn\t-0.666666666667\tWhat are brake pads made of? -> $x: ($x, pad, brake) -> (Schwinn, padded, saddle and alloy linear pull brakes) -> Schwinn (1924ms)\nWhat are brake pads made of?\tBrake\t-0.666666666667\tWhat are brake pads made of? -> $x: ($x, pad, brake) -> (Brake, pads, Brake shoes Shock absorbers and struts) -> Brake (1925ms)\nWhat are brake pads made of?\tthe brake caliper\t-0.666666666667\tWhat are brake pads made of? -> $x: ($x, pad, brake) -> (the brake caliper, forcing the pads against, the brake rotor) -> the brake caliper (1924ms)\nWhat are brake pads made of?\ta kit\t-0.666666666667\tWhat are brake pads made of? -> $x: ($x, pad, brake) -> (a kit, refreshes the brakes pad surface under, braking) -> a kit (1924ms)\nHow did Adolf Hitler die?\tthe theories\t0.7777777777730001\tHow did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (HOW HITLER, DIED Some of, the theories) -> the theories (1643ms)\nHow did Adolf Hitler die?\tbreast cancer\t0.7777777777730001\tHow did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler 's mother, died of, breast cancer) -> breast cancer (1643ms)\nHow did Adolf Hitler die?\ta self-inflicted gunshot wound\t0.7777777777730001\tHow did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Adolph Hitler, would die of, a self-inflicted gunshot wound) -> a self-inflicted gunshot wound (1642ms)\nHow did Adolf Hitler die?\ta lung hemorrhage\t0.7777777777730001\tHow did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler 's father, died suddenly of, a lung hemorrhage) -> a lung hemorrhage (1643ms)\nHow did Adolf Hitler die?\ta stroke\t0.7777777777730001\tHow did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler, had died of, a stroke) -> a stroke (1642ms)\nHow did Adolf Hitler die?\told age\t0.7777777777730001\tHow did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler, died of, old age) -> old age (1642ms)\nHow did Adolf Hitler die?\tmeasles\t0.7777777777730001\tHow did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler?s younger brother Edmund, died of, measles) -> measles (1643ms)\nHow did Adolf Hitler die?\tnatural causes\t0.7777777777730001\tHow did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (. Hitler, may die of, natural causes) -> natural causes (1841ms)\nHow did Adolf Hitler die?\tthe blade\t0.555555555555\tHow did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Hitler?s enemies, had died on, the blade) -> the blade (2093ms)\nHow did Adolf Hitler die?\tthe same day\t0.555555555555\tHow did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Adolph Hitler, apparently died on, the same day) -> the same day (1841ms)\nHow did Adolf Hitler die?\tApril 30 , 1945\t0.555555555555\tHow did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Adolf Hitler, died on, April 30 , 1945) -> April 30 , 1945 (1841ms)\nHow did Adolf Hitler die?\tMay 1st\t0.555555555555\tHow did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Adolf Hitler, died on, May 1st) -> May 1st (1841ms)\nHow did Adolf Hitler die?\tApril 30th 1945\t0.555555555555\tHow did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Adolf Hitler, died on, April 30th 1945) -> April 30th 1945 (1841ms)\nHow did Adolf Hitler die?\tApril 30th\t0.555555555555\tHow did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Hitler, died on, April 30th) -> April 30th (1841ms)\nHow did Adolf Hitler die?\tJune 1 , 1960\t0.555555555555\tHow did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Paula Hitler, died on, June 1 , 1960) -> June 1 , 1960 (2093ms)\nHow did Adolf Hitler die?\t20 April 1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, 20 April 1889) -> 20 April 1889 (2559ms)\nHow did Adolf Hitler die?\tApril 20th\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, April 20th) -> April 20th (3194ms)\nHow did Adolf Hitler die?\tApril 20 , 1954\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, April 20 , 1954) -> April 20 , 1954 (2093ms)\nHow did Adolf Hitler die?\tApril 20,1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (2251 Adolf Hitler Adolf Hitler, was born on, April 20,1889) -> April 20,1889 (3194ms)\nHow did Adolf Hitler die?\tthe 20th ,\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, the 20th ,) -> the 20th , (3012ms)\nHow did Adolf Hitler die?\t20th April 1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, 20th April 1889) -> 20th April 1889 (2559ms)\nHow did Adolf Hitler die?\tthe 20th April 1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (2011 Adolf Hitler, was born on, the 20th April 1889) -> the 20th April 1889 (2559ms)\nHow did Adolf Hitler die?\tApril 20th , 1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, April 20th , 1889) -> April 20th , 1889 (2601ms)\nHow did Adolf Hitler die?\tAustrian soil\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, had been born on, Austrian soil) -> Austrian soil (2601ms)\nHow did Adolf Hitler die?\tApril 20th 1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> ('s Birthplace Adolf Hitler, was born on, April 20th 1889) -> April 20th 1889 (3012ms)\nHow did Adolf Hitler die?\t1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, is a person born on the date, 1889) -> 1889 (2559ms)\nHow did Adolf Hitler die?\t20th April\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, 20th April) -> 20th April (2093ms)\nHow did Adolf Hitler die?\t20th April , 1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, 20th April , 1889) -> 20th April , 1889 (2601ms)\nHow did Adolf Hitler die?\tApril 20 , 1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Contents Childhood Adolf Hitler, was born on, April 20 , 1889) -> April 20 , 1889 (3194ms)\nHow did Adolf Hitler die?\tApril 20\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, April 20) -> April 20 (2601ms)\nHow did Adolf Hitler die?\tApril 20 1889\t0.555555555554\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (youth Adolf Hitler, was born on, April 20 1889) -> April 20 1889 (2093ms)\nHow did Adolf Hitler die?\t1960\t0.555555555552\tHow did Adolf Hitler die? -> $x: (adolf hitler, die in, $x) -> (Adolf Hitler, died in, 1960) -> 1960 (3194ms)\nHow did Adolf Hitler die?\taction\t0.555555555552\tHow did Adolf Hitler die? -> $x: (adolf hitler, die in, $x) -> (April 30 Adolf Hitler, died in, action) -> action (3194ms)\nHow did Adolf Hitler die?\tBerlin\t0.555555555552\tHow did Adolf Hitler die? -> $x: (adolf hitler, die in, $x) -> (Adolf Hitler, died in, Berlin) -> Berlin (3194ms)\nHow did Adolf Hitler die?\tVolkswagen Beetle\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, invent, adolf hitler) -> (Volkswagen Beetle, was invented by, Adolf Hitler) -> Volkswagen Beetle (5036ms)\nHow did Adolf Hitler die?\tAES affiliates\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (AES affiliates, influenced, Adolf Hitler) -> AES affiliates (3194ms)\nHow did Adolf Hitler die?\tMiami Beach\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler, living in, Miami Beach) -> Miami Beach (5037ms)\nHow did Adolf Hitler die?\tthe Thule Society\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (the Thule Society, influenced, Adolf Hitler) -> the Thule Society (5036ms)\nHow did Adolf Hitler die?\tLueger\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Lueger, was a major influence on, the young Adolf Hitler) -> Lueger (4968ms)\nHow did Adolf Hitler die?\tLeonding\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler?s parents, had lived in, Leonding) -> Leonding (4051ms)\nHow did Adolf Hitler die?\tVienna\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (the Events and Experiences Adolf Hitler, lived in, Vienna) -> Vienna (4968ms)\nHow did Adolf Hitler die?\tNot least\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Not least, was their influence on, Adolf Hitler) -> Not least (5149ms)\nHow did Adolf Hitler die?\ta french teenager\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, have affair with, $x) -> (Adolf Hitler, had an affair with, a french teenager) -> a french teenager (4967ms)\nHow did Adolf Hitler die?\tSch?nerer?s ideas\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Sch?nerer?s ideas, had a major influence on, Adolf Hitler) -> Sch?nerer?s ideas (4967ms)\nHow did Adolf Hitler die?\ta ripe old age\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, live on, $x) -> (Adolf Hitler, lived on to, a ripe old age) -> a ripe old age (4967ms)\nHow did Adolf Hitler die?\tseclusion\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler, lived in, seclusion) -> seclusion (5036ms)\nHow did Adolf Hitler die?\ta vocal anti-Semite\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (a vocal anti-Semite, later influenced, Adolf Hitler) -> a vocal anti-Semite (4051ms)\nHow did Adolf Hitler die?\tDenis Fahey\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Denis Fahey, Influenced, Adolf Hitler) -> Denis Fahey (4968ms)\nHow did Adolf Hitler die?\tBinding?s and Hoche?s study\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Binding?s and Hoche?s study, influenced, Adolf Hitler) -> Binding?s and Hoche?s study (3194ms)\nHow did Adolf Hitler die?\tArthur de Gobineau\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Arthur de Gobineau, Influenced, Adolf Hitler) -> Arthur de Gobineau (5036ms)\nHow did Adolf Hitler die?\tbunker number\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler, lived in, bunker number) -> bunker number (4051ms)\nHow did Adolf Hitler die?\tLiverpool\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler, lived in, Liverpool) -> Liverpool (4968ms)\nHow did Adolf Hitler die?\tthe Nova Beetle\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, invent, adolf hitler) -> (the Nova Beetle, may be invented by, Adolf Adolf hitler) -> the Nova Beetle (4051ms)\nHow did Adolf Hitler die?\tUpper Stanhope Street\t0.444444444443\tHow did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler?s half-brother, lived in, Upper Stanhope Street) -> Upper Stanhope Street (5037ms)\nHow did Adolf Hitler die?\tanti-Semitism\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (anti-Semitism, influenced, Adolf Hitler) -> anti-Semitism (5036ms)\nHow did Adolf Hitler die?\tPre-emptive war\t0.444444444443\tHow did Adolf Hitler die? -> $x: ($x, invent, adolf hitler) -> (Pre-emptive war, was invented by, Adolf Hitler) -> Pre-emptive war (5036ms)\nHow did Adolf Hitler die?\tcancer\t0.444444444443\tHow did Adolf Hitler die? -> $x: (hitler, die from, $x) -> (Klara Hitler, died from, cancer) -> cancer (4968ms)\nHow did Adolf Hitler die?\t1964\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, Died in, 1964) -> 1964 (5149ms)\nHow did Adolf Hitler die?\tArgentina\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, Died in, Argentina) -> Argentina (5149ms)\nHow did Adolf Hitler die?\t1938\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, had died in, 1938) -> 1938 (5251ms)\nHow did Adolf Hitler die?\tthe capital\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, to die in, the capital) -> the capital (5251ms)\nHow did Adolf Hitler die?\targentina\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (*** Hitler, died an old man in, argentina) -> argentina (5240ms)\nHow did Adolf Hitler die?\tMunich\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, died in, Munich) -> Munich (5240ms)\nHow did Adolf Hitler die?\ta concentration camp\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler?s personal astrologer, would die in, a concentration camp) -> a concentration camp (5251ms)\nHow did Adolf Hitler die?\tthe bunker\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, died in, the bunker) -> the bunker (5251ms)\nHow did Adolf Hitler die?\tthe bombing\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, dies in, the bombing) -> the bombing (5240ms)\nHow did Adolf Hitler die?\tthe 60?s?\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Proof Hitler, Died in, the 60?s?) -> the 60?s? (5251ms)\nHow did Adolf Hitler die?\t1945\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Adolph Hitler, died in, 1945) -> 1945 (5261ms)\nHow did Adolf Hitler die?\ta Paris movie theater\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> ('s fantasia Hitler, dies in, a Paris movie theater) -> a Paris movie theater (5240ms)\nHow did Adolf Hitler die?\ta bunker\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, really die in, a bunker) -> a bunker (5251ms)\nHow did Adolf Hitler die?\tSouth America\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, died an old man in, South America) -> South America (5251ms)\nHow did Adolf Hitler die?\tthe final battle\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler Youth, died in, the final battle) -> the final battle (5240ms)\nHow did Adolf Hitler die?\tthe 60s\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, died in, the 60s) -> the 60s (5251ms)\nHow did Adolf Hitler die?\tthe struggle\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler , millions more, died in, the struggle) -> the struggle (5251ms)\nHow did Adolf Hitler die?\t1903\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Alois Hitler, died in, 1903) -> 1903 (5261ms)\nHow did Adolf Hitler die?\tbattle\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, had died in, battle) -> battle (5240ms)\nHow did Adolf Hitler die?\tthe war\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, might have died in, the war) -> the war (5261ms)\nHow did Adolf Hitler die?\t1907\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler?s mother, died in, 1907) -> 1907 (5251ms)\nHow did Adolf Hitler die?\taccident\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (taht Hitler, died in, accident) -> accident (5251ms)\nHow did Adolf Hitler die?\t1944\t0.444444444442\tHow did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, would have died in, 1944) -> 1944 (5251ms)\nHow did Adolf Hitler die?\tthe real story\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the real story, happened to, Hitler?s Holy Lance) -> the real story (5261ms)\nHow did Adolf Hitler die?\tthe 1936 Olympics\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the 1936 Olympics, happened to, the British Hitler Oaks) -> the 1936 Olympics (5271ms)\nHow did Adolf Hitler die?\tthe Middle East\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the Middle East, happened to, Hitler) -> the Middle East (5261ms)\nHow did Adolf Hitler die?\tthe Americans and Russians LIED\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the Americans and Russians LIED, happened to, Hitler) -> the Americans and Russians LIED (5261ms)\nHow did Adolf Hitler die?\tRiver\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (River, happened to, the real Hitler) -> River (5271ms)\nHow did Adolf Hitler die?\tthe thought\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the thought, happened to, Mussolini and Hitler) -> the thought (5261ms)\nHow did Adolf Hitler die?\tYep\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (Yep, happened to, Hitler) -> Yep (5261ms)\nHow did Adolf Hitler die?\tthe Second World War\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the Second World War, happened to, the English Hitler) -> the Second World War (5271ms)\nHow did Adolf Hitler die?\tA recent TV program\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (A recent TV program, Really Happened to, Adolph Hitler) -> A recent TV program (5261ms)\nHow did Adolf Hitler die?\tlittle knowledge\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (little knowledge, happened to, Hitler) -> little knowledge (5261ms)\nHow did Adolf Hitler die?\tIsraeli jews kill Palestinians\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (Israeli jews kill Palestinians, happened to, Hitler) -> Israeli jews kill Palestinians (5271ms)\nHow did Adolf Hitler die?\tthe answer\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the answer, so happened to be, Hitler) -> the answer (5261ms)\nHow did Adolf Hitler die?\tthe questions\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the questions, happened to, Hitler) -> the questions (5271ms)\nHow did Adolf Hitler die?\tAssef\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (Assef, happens to be, the Hitler-enamored bully) -> Assef (5261ms)\nHow did Adolf Hitler die?\tA gunman\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (A gunman, happens to Look like, a Cambodian Hitler) -> A gunman (5261ms)\nHow did Adolf Hitler die?\tconflicting reports\t0.44444444444\tHow did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (conflicting reports, happened to, Hitler) -> conflicting reports (5261ms)\nHow did Adolf Hitler die?\tAP Mel Brooks\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (AP Mel Brooks, does an impression of, Adolf Hitler) -> AP Mel Brooks (5291ms)\nHow did Adolf Hitler die?\tSee eg\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (See eg, Did, Adolf Hitler) -> See eg (5291ms)\nHow did Adolf Hitler die?\tAmericans\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Americans, did n?t act against, Adolf Hitler) -> Americans (5280ms)\nHow did Adolf Hitler die?\tChamberlain\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Chamberlain, did with, Adolf Hitler) -> Chamberlain (5291ms)\nHow did Adolf Hitler die?\t1939\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (1939, did, Adolf Hitler call) -> 1939 (5281ms)\nHow did Adolf Hitler die?\tthe same Satanic rituals\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the same Satanic rituals, did, Adolf Hitler) -> the same Satanic rituals (5271ms)\nHow did Adolf Hitler die?\tmillions more Africans and Asians\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (millions more Africans and Asians, did, Adolf Hitler) -> millions more Africans and Asians (5291ms)\nHow did Adolf Hitler die?\tIsrael\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Israel, did, Adolf Hitler) -> Israel (5271ms)\nHow did Adolf Hitler die?\t200-Foot Crash Watch Video\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (200-Foot Crash Watch Video, Did, Adolf Hitler Have) -> 200-Foot Crash Watch Video (5291ms)\nHow did Adolf Hitler die?\ta lot\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (a lot, so did, Adolf Hitler) -> a lot (5271ms)\nHow did Adolf Hitler die?\tHamsun\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Hamsun, did meet with, Adolf Hitler) -> Hamsun (5291ms)\nHow did Adolf Hitler die?\tthe Germans\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the Germans, did during, Adolf Hitler) -> the Germans (5271ms)\nHow did Adolf Hitler die?\tPauline Smith\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Pauline Smith, was doing, the Adolf Hitler Fan Club) -> Pauline Smith (5281ms)\nHow did Adolf Hitler die?\tNeville Chamberlain\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Neville Chamberlain, had done with, Adolf Hitler) -> Neville Chamberlain (5281ms)\nHow did Adolf Hitler die?\tthe Reichstag fire\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the Reichstag fire, did for, Adolf Hitler) -> the Reichstag fire (5271ms)\nHow did Adolf Hitler die?\tAntartica\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Antartica, did manage to bring, Adolf Hitler) -> Antartica (5281ms)\nHow did Adolf Hitler die?\tHow many people\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (How many people, did kill, Adolf Hitler) -> How many people (5281ms)\nHow did Adolf Hitler die?\tApril 29 2010\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (April 29 2010, did, Adolf Hitler) -> April 29 2010 (5281ms)\nHow did Adolf Hitler die?\tThe SS\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (The SS, did take an oath to, Adolf Hitler) -> The SS (5291ms)\nHow did Adolf Hitler die?\tMussolini\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Mussolini, had so much to do with, Adolf Hitler) -> Mussolini (5271ms)\nHow did Adolf Hitler die?\tesiff\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (esiff, do, Adolf Hitler) -> esiff (5281ms)\nHow did Adolf Hitler die?\ta European-wide Empire\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (a European-wide Empire, did, Adolf Hitler) -> a European-wide Empire (5271ms)\nHow did Adolf Hitler die?\tBanned Books\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Banned Books, only did, Adolf Hitler worship Jesus Christ) -> Banned Books (5280ms)\nHow did Adolf Hitler die?\tthe neo-nazi criminals\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the neo-nazi criminals, do their evil deeds for, Adolf Hitler) -> the neo-nazi criminals (5291ms)\nHow did Adolf Hitler die?\tOne is\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (One is, Did, Adolf Hitler order genocide) -> One is (5291ms)\nHow did Adolf Hitler die?\t24 hours\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (24 hours, had nothing to do with, deterring Adolf Hitler) -> 24 hours (5271ms)\nHow did Adolf Hitler die?\tvalues\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (values, so did, Adolf Hitler) -> values (5291ms)\nHow did Adolf Hitler die?\tthe same rituals\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the same rituals, did, Adolf Hitler) -> the same rituals (5271ms)\nHow did Adolf Hitler die?\tstrong religious convictions\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (strong religious convictions, did, Adolf Hitler) -> strong religious convictions (5280ms)\nHow did Adolf Hitler die?\tthe Waffen SS\t0.333333333332\tHow did Adolf Hitler die? -> $x: (adolf hitler, end in, $x) -> (Adolf Hitler?all european pacifists, ended up in, the Waffen SS) -> the Waffen SS (5271ms)\nHow did Adolf Hitler die?\thist\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (hist, did, Adolf Hitler collaborate) -> hist (5281ms)\nHow did Adolf Hitler die?\tnowhere in??? Mein Kampf\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (nowhere in??? Mein Kampf, does, Adolf Hitler call) -> nowhere in??? Mein Kampf (5281ms)\nHow did Adolf Hitler die?\t14 months\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (14 months, did, Adolf Hitler) -> 14 months (5281ms)\nHow did Adolf Hitler die?\tGermany\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Germany, once did, Adolf Hitler) -> Germany (5281ms)\nHow did Adolf Hitler die?\tIndiana Jones\t0.333333333332\tHow did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Indiana Jones, did n?t really meet, Adolf Hitler) -> Indiana Jones (5291ms)\nHow did Adolf Hitler die?\tpower\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did n?t come to, power) -> power (5301ms)\nHow did Adolf Hitler die?\tthe best\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, the best) -> the best (5310ms)\nHow did Adolf Hitler die?\tthe carpet\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did n?t chew, the carpet) -> the carpet (5310ms)\nHow did Adolf Hitler die?\tGod?s love\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did of, God?s love) -> God?s love (5301ms)\nHow did Adolf Hitler die?\tthe implementation\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did have his inputs in, the implementation) -> the implementation (5310ms)\nHow did Adolf Hitler die?\tpost-World War\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, post-World War) -> post-World War (5301ms)\nHow did Adolf Hitler die?\tthe German salute*\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, *does, the German salute*) -> the German salute* (5310ms)\nHow did Adolf Hitler die?\tGERMANY\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (ADOLF HITLER, did the same thing in, GERMANY) -> GERMANY (5301ms)\nHow did Adolf Hitler die?\tMein Kampf\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did in, Mein Kampf) -> Mein Kampf (5291ms)\nHow did Adolf Hitler die?\tSeptember 1938\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did in, September 1938) -> September 1938 (5310ms)\nHow did Adolf Hitler die?\tthe unbelievable\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, the unbelievable) -> the unbelievable (5310ms)\nHow did Adolf Hitler die?\twhat he did\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, to do, what he did) -> what he did (5301ms)\nHow did Adolf Hitler die?\tJoseph Stalin\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, as did, Joseph Stalin) -> Joseph Stalin (5301ms)\nHow did Adolf Hitler die?\ta great job\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, a great job) -> a great job (5301ms)\nHow did Adolf Hitler die?\tthe 1930\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did in, the 1930) -> the 1930 (5310ms)\nHow did Adolf Hitler die?\tLEGAL\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did was, LEGAL) -> LEGAL (5310ms)\nHow did Adolf Hitler die?\tthe cause\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (\" Adolf Hitler, did more for, the cause) -> the cause (5301ms)\nHow did Adolf Hitler die?\tthe German Protestant churches\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, the German Protestant churches) -> the German Protestant churches (5301ms)\nHow did Adolf Hitler die?\tWorld War II\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did during, World War II) -> World War II (5310ms)\nHow did Adolf Hitler die?\tJewish people\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did that to, Jewish people) -> Jewish people (5310ms)\nHow did Adolf Hitler die?\tthe 1930s\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, tried to do in, the 1930s) -> the 1930s (5310ms)\nHow did Adolf Hitler die?\tthe Berlin Olympics\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, tried to do the same with, the Berlin Olympics) -> the Berlin Olympics (5301ms)\nHow did Adolf Hitler die?\thate America\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (the Adolf Hitlers and Osama bin Ladens, do, hate America) -> hate America (5291ms)\nHow did Adolf Hitler die?\tNazi Germany\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did in, Nazi Germany) -> Nazi Germany (5301ms)\nHow did Adolf Hitler die?\tJewish shopkeepers\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, Jewish shopkeepers) -> Jewish shopkeepers (5291ms)\nHow did Adolf Hitler die?\tJews\t0.333333333331\tHow did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, Jews) -> Jews (5291ms)\nHow did Adolf Hitler die?\tJudenvernichtung\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (' ...berichtete Himmler Hitler ?ber, die, Judenvernichtung) -> Judenvernichtung (5319ms)\nHow did Adolf Hitler die?\ta suicide\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, a suicide) -> a suicide (5346ms)\nHow did Adolf Hitler die?\tPolitik und die Reichswehr\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitlers Eintritt, die, Politik und die Reichswehr) -> Politik und die Reichswehr (5328ms)\nHow did Adolf Hitler die?\tthe day\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, the day) -> the day (5346ms)\nHow did Adolf Hitler die?\tthe city\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, the city) -> the city (5319ms)\nHow did Adolf Hitler die?\tJudenausrottung\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Auffassung , da? Hitler weder, die, Judenausrottung) -> Judenausrottung (5337ms)\nHow did Adolf Hitler die?\tF?hrung des Heeres ?bernahm\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, auch die, F?hrung des Heeres ?bernahm) -> F?hrung des Heeres ?bernahm (5319ms)\nHow did Adolf Hitler die?\tEndl?sung\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler und, die, Endl?sung) -> Endl?sung (5346ms)\nHow did Adolf Hitler die?\t18 days\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, 18 days) -> 18 days (5354ms)\nHow did Adolf Hitler die?\ta few years\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler?s private secretaries, died, a few years) -> a few years (5337ms)\nHow did Adolf Hitler die?\tthe sake\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, had to die for, the sake) -> the sake (5346ms)\nHow did Adolf Hitler die?\t1984\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, could have died as late as, 1984) -> 1984 (5346ms)\nHow did Adolf Hitler die?\tage 56\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Adolf Hitler, died, age 56) -> age 56 (5337ms)\nHow did Adolf Hitler die?\ta year\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died little under, a year) -> a year (5337ms)\nHow did Adolf Hitler die?\tWWII\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died during, WWII) -> WWII (5346ms)\nHow did Adolf Hitler die?\tforty years\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died almost, forty years) -> forty years (5337ms)\nHow did Adolf Hitler die?\tsixty years\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died more than, sixty years) -> sixty years (5354ms)\nHow did Adolf Hitler die?\tthe age\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, has died at, the age) -> the age (5354ms)\nHow did Adolf Hitler die?\tSekret?rinnnen nur\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (' Hitler brauchte, die, Sekret?rinnnen nur) -> Sekret?rinnnen nur (5337ms)\nHow did Adolf Hitler die?\tEntlosung\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler und, die, Entlosung) -> Entlosung (5363ms)\nHow did Adolf Hitler die?\tspeech door Goebbels\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (intellectuele capaciteiten van Hitler, die, speech door Goebbels) -> speech door Goebbels (5354ms)\nHow did Adolf Hitler die?\tSonder- und Ehrenh?ftlinge der SS\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitlers Hand, die, Sonder- und Ehrenh?ftlinge der SS) -> Sonder- und Ehrenh?ftlinge der SS (5328ms)\nHow did Adolf Hitler die?\ta poor artist\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, probably would 've died, a poor artist) -> a poor artist (5328ms)\nHow did Adolf Hitler die?\tKenntnis darueber\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, die, Kenntnis darueber) -> Kenntnis darueber (5354ms)\nHow did Adolf Hitler die?\ttwo decades\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, two decades) -> two decades (5346ms)\nHow did Adolf Hitler die?\tohne Warnung oder\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler konfrontierten, die, ohne Warnung oder) -> ohne Warnung oder (5337ms)\nHow did Adolf Hitler die?\tseveral million times over\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, deserved to die horribly, several million times over) -> several million times over (5337ms)\nHow did Adolf Hitler die?\tgedult hat\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, dies, gedult hat) -> gedult hat (5346ms)\nHow did Adolf Hitler die?\tDanzig\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, would die for, Danzig) -> Danzig (5319ms)\nHow did Adolf Hitler die?\t37 years\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Adolf Hitler, died, 37 years) -> 37 years (5337ms)\nHow did Adolf Hitler die?\tIdeen gab\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (der Hitler, die, Ideen gab) -> Ideen gab (5354ms)\nHow did Adolf Hitler die?\tsei der erste brauchbare Entwurf\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, dies, sei der erste brauchbare Entwurf) -> sei der erste brauchbare Entwurf (5328ms)\nHow did Adolf Hitler die?\tdays\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, had died, days) -> days (5328ms)\nHow did Adolf Hitler die?\tsurrender\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, die rather than, surrender) -> surrender (5337ms)\nHow did Adolf Hitler die?\tof it\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died because, of it) -> of it (5346ms)\nHow did Adolf Hitler die?\tdecades\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, decades) -> decades (5354ms)\nHow did Adolf Hitler die?\tan accidental byproduct\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, only died as, an accidental byproduct) -> an accidental byproduct (5354ms)\nHow did Adolf Hitler die?\tTreue hielt\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (der Hitler, die, Treue hielt) -> Treue hielt (5337ms)\nHow did Adolf Hitler die?\tKunst\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, und die, Kunst) -> Kunst (5363ms)\nHow did Adolf Hitler die?\tmore than sixty years ago\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, more than sixty years ago) -> more than sixty years ago (5346ms)\nHow did Adolf Hitler die?\tfrightful deaths\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, frightful deaths) -> frightful deaths (5346ms)\nHow did Adolf Hitler die?\tMacht\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, die, Macht) -> Macht (5346ms)\nHow did Adolf Hitler die?\tJudenausrottung angeordnet noch von ihr\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (dass Hitler weder, die, Judenausrottung angeordnet noch von ihr) -> Judenausrottung angeordnet noch von ihr (5346ms)\nHow did Adolf Hitler die?\tHelmuth Hu?bener Gruppe\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Jugendliche gegen Hitler, die, Helmuth Hu?bener Gruppe) -> Helmuth Hu?bener Gruppe (5319ms)\nHow did Adolf Hitler die?\tchildless\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, childless) -> childless (5328ms)\nHow did Adolf Hitler die?\tan hour\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died just over, an hour) -> an hour (5319ms)\nHow did Adolf Hitler die?\tthe Nazis\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died under, the Nazis) -> the Nazis (5328ms)\nHow did Adolf Hitler die?\tKriegf?hrung\t0.33333333333099996\tHow did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitlers Weisungen, die, Kriegf?hrung) -> Kriegf?hrung (5319ms)\nHow did Adolf Hitler die?\t16.9.1910\t0.33333333333000004\tHow did Adolf Hitler die? -> $x: (hitler, be bear on, $x) -> (Hitler 1, was born on, 16.9.1910) -> 16.9.1910 (5379ms)\nHow did Adolf Hitler die?\t4 20\t0.33333333333000004\tHow did Adolf Hitler die? -> $x: (hitler, be bear on, $x) -> (7 hitler, was born on, 4 20) -> 4 20 (5371ms)\nHow did Adolf Hitler die?\t13 degrees East\t0.33333333333000004\tHow did Adolf Hitler die? -> $x: (hitler, be bear on, $x) -> (42.00 N 44.12 E So Hitler, was born exactly on, 13 degrees East) -> 13 degrees East (5371ms)\nHow did Adolf Hitler die?\tEaster\t0.33333333333000004\tHow did Adolf Hitler die? -> $x: (hitler, be bear on, $x) -> (Hitler, was born on, Easter) -> Easter (5387ms)\nHow did Adolf Hitler die?\tApril 29 , 1945\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Braun and Hitler, were married on, April 29 , 1945) -> April 29 , 1945 (5418ms)\nHow did Adolf Hitler die?\ta good place\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Hitlers  Germany, look like, a good place) -> a good place (5404ms)\nHow did Adolf Hitler die?\ta pretext\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Adolf Hitler, looks more like, a pretext) -> a pretext (5425ms)\nHow did Adolf Hitler die?\ta military genius\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked like, a military genius) -> a military genius (5411ms)\nHow did Adolf Hitler die?\ta piker\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a piker) -> a piker (5418ms)\nHow did Adolf Hitler die?\ta bloody amateur\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a bloody amateur) -> a bloody amateur (5404ms)\nHow did Adolf Hitler die?\ta Prussian military officer\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked very much like, a Prussian military officer) -> a Prussian military officer (5411ms)\nHow did Adolf Hitler die?\ta bleeding heart\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a bleeding heart) -> a bleeding heart (5426ms)\nHow did Adolf Hitler die?\tCharlie Chaplin\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks like, Charlie Chaplin) -> Charlie Chaplin (5425ms)\nHow did Adolf Hitler die?\tsuch a BOSS\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (deviantART Hitler, looks like, such a BOSS) -> such a BOSS (5404ms)\nHow did Adolf Hitler die?\ta rank amateur\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a rank amateur) -> a rank amateur (5425ms)\nHow did Adolf Hitler die?\tMichael Cera\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitlers  mom, looks like, Michael Cera) -> Michael Cera (5418ms)\nHow did Adolf Hitler die?\tJabba\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks like, Jabba) -> Jabba (5411ms)\nHow did Adolf Hitler die?\ta civil ceremony in the bunker\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, married Eva Braun in, a civil ceremony in the bunker) -> a civil ceremony in the bunker (5426ms)\nHow did Adolf Hitler die?\trank amateurs\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Mussolini, look like, rank amateurs) -> rank amateurs (5426ms)\nHow did Adolf Hitler die?\tMother Teresa\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, Mother Teresa) -> Mother Teresa (5404ms)\nHow did Adolf Hitler die?\ta saint?how wicked\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a saint?how wicked) -> a saint?how wicked (5433ms)\nHow did Adolf Hitler die?\ta juvenile delinquent\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a juvenile delinquent) -> a juvenile delinquent (5404ms)\nHow did Adolf Hitler die?\tthe Wagner family\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, married into, the Wagner family) -> the Wagner family (5433ms)\nHow did Adolf Hitler die?\ta Boy Scout\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a Boy Scout) -> a Boy Scout (5411ms)\nHow did Adolf Hitler die?\tthe same year\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Adolf Hitler, got married, the same year) -> the same year (5418ms)\nHow did Adolf Hitler die?\tJesus Christ\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, Jesus Christ) -> Jesus Christ (5425ms)\nHow did Adolf Hitler die?\ta civil ceremony\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler and Braun, finally married in, a civil ceremony) -> a civil ceremony (5411ms)\nHow did Adolf Hitler die?\ta rookie boy scout\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a rookie boy scout) -> a rookie boy scout (5418ms)\nHow did Adolf Hitler die?\ta Jewish woman\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, ,married, a Jewish woman) -> a Jewish woman (5418ms)\nHow did Adolf Hitler die?\ta small time\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a small time) -> a small time (5396ms)\nHow did Adolf Hitler die?\tMiss Lobjoie ? Hitler\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked exactly like, Miss Lobjoie ? Hitler) -> Miss Lobjoie ? Hitler (5433ms)\nHow did Adolf Hitler die?\ta dilettante\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a dilettante) -> a dilettante (5432ms)\nHow did Adolf Hitler die?\tMother Theresa\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, Mother Theresa) -> Mother Theresa (5411ms)\nHow did Adolf Hitler die?\ta teddy bear?s picnic\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (the Hitler gang, look like, a teddy bear?s picnic) -> a teddy bear?s picnic (5411ms)\nHow did Adolf Hitler die?\tLoret\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, \"looked exactly like, Loret) -> Loret (5411ms)\nHow did Adolf Hitler die?\ta Saint\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a Saint) -> a Saint (5404ms)\nHow did Adolf Hitler die?\ta Sunday school teacher\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a Sunday school teacher) -> a Sunday school teacher (5432ms)\nHow did Adolf Hitler die?\ta Sunday School picnic\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, did look like, a Sunday School picnic) -> a Sunday School picnic (5396ms)\nHow did Adolf Hitler die?\tthe third time\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Alois Hitler, had married for, the third time) -> the third time (5404ms)\nHow did Adolf Hitler die?\tPok?mon critters\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler , Stalin and Ted Bundy, look like, Pok?mon critters) -> Pok?mon critters (5396ms)\nHow did Adolf Hitler die?\ta Kitler\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks more like, a Kitler) -> a Kitler (5426ms)\nHow did Adolf Hitler die?\tchoirboys\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler , Stalin and Mao, look like, choirboys) -> choirboys (5432ms)\nHow did Adolf Hitler die?\teasygoing surfer dudes\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Stalin, look like, easygoing surfer dudes) -> easygoing surfer dudes (5404ms)\nHow did Adolf Hitler die?\ta bathrobe\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks like, a bathrobe) -> a bathrobe (5432ms)\nHow did Adolf Hitler die?\tan amateur\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, an amateur) -> an amateur (5387ms)\nHow did Adolf Hitler die?\tfair-minded humanitarians\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Stalin, look like, fair-minded humanitarians) -> fair-minded humanitarians (5418ms)\nHow did Adolf Hitler die?\tI?ve\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Heir Hitler, Looks like, I?ve) -> I?ve (5404ms)\nHow did Adolf Hitler die?\ta punk\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a punk) -> a punk (5432ms)\nHow did Adolf Hitler die?\tBowie\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look a tiiiny bit like, Bowie) -> Bowie (5411ms)\nHow did Adolf Hitler die?\ta good little boy\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, will look like quite, a good little boy) -> a good little boy (5426ms)\nHow did Adolf Hitler die?\tchoir boys\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Stalin, look like, choir boys) -> choir boys (5404ms)\nHow did Adolf Hitler die?\tEva\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, reportedly married, Eva) -> Eva (5411ms)\nHow did Adolf Hitler die?\ta pretty nice fellow\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a pretty nice fellow) -> a pretty nice fellow (5396ms)\nHow did Adolf Hitler die?\ta fool\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a fool) -> a fool (5396ms)\nHow did Adolf Hitler die?\ta second-rater\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a second-rater) -> a second-rater (5425ms)\nHow did Adolf Hitler die?\ta cub scout\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a cub scout) -> a cub scout (5387ms)\nHow did Adolf Hitler die?\tClara Poltzl\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Alois Hitler, married, Clara Poltzl) -> Clara Poltzl (5433ms)\nHow did Adolf Hitler die?\tCharlotte\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked exactly like, Charlotte) -> Charlotte (5404ms)\nHow did Adolf Hitler die?\tBoy Scouts\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler & Stalin, look like, Boy Scouts) -> Boy Scouts (5411ms)\nHow did Adolf Hitler die?\tamateurs\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Stalin, look like, amateurs) -> amateurs (5387ms)\nHow did Adolf Hitler die?\ta civil rights leader\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a civil rights leader) -> a civil rights leader (5396ms)\nHow did Adolf Hitler die?\tthe tooth fairy\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks like, the tooth fairy) -> the tooth fairy (5425ms)\nHow did Adolf Hitler die?\tEva Braun\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, married, Eva Braun) -> Eva Braun (5433ms)\nHow did Adolf Hitler die?\ta amateur\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a amateur) -> a amateur (5387ms)\nHow did Adolf Hitler die?\ta guidance counselor\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a guidance counselor) -> a guidance counselor (5411ms)\nHow did Adolf Hitler die?\the was going to vanquish all of Europe\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked like, he was going to vanquish all of Europe) -> he was going to vanquish all of Europe (5411ms)\nHow did Adolf Hitler die?\ta slacker\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a slacker) -> a slacker (5387ms)\nHow did Adolf Hitler die?\ta humanitarian\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a humanitarian) -> a humanitarian (5426ms)\nHow did Adolf Hitler die?\ta choirboy\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a choirboy) -> a choirboy (5425ms)\nHow did Adolf Hitler die?\tMiss Lobjoie\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked exactly like, Miss Lobjoie) -> Miss Lobjoie (5396ms)\nHow did Adolf Hitler die?\ta fairy tale\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (the fictive Hitler?s death programs, look like, a fairy tale) -> a fairy tale (5433ms)\nHow did Adolf Hitler die?\ta good guy\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a good guy) -> a good guy (5433ms)\nHow did Adolf Hitler die?\tchild\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, child) -> child (5396ms)\nHow did Adolf Hitler die?\ta few hours\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, were belatedly married only, a few hours) -> a few hours (5387ms)\nHow did Adolf Hitler die?\ta chump\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a chump) -> a chump (5433ms)\nHow did Adolf Hitler die?\tKlara Polzl\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (1885 January 7 Alois Hitler, marries, Klara Polzl) -> Klara Polzl (5404ms)\nHow did Adolf Hitler die?\ta choir boy\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (a Hitler, looked like, a choir boy) -> a choir boy (5418ms)\nHow did Adolf Hitler die?\tApril 29\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, were married on, April 29) -> April 29 (5396ms)\nHow did Adolf Hitler die?\tFranziska Matzelsberger\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Alois Hitler, married, Franziska Matzelsberger) -> Franziska Matzelsberger (5418ms)\nHow did Adolf Hitler die?\tMr. Rogers\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, Mr. Rogers) -> Mr. Rogers (5418ms)\nHow did Adolf Hitler die?\ta softy lefty\t0.33333333333\tHow did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a softy lefty) -> a softy lefty (5418ms)\nHow did Adolf Hitler die?\ta hospital\t0.333333333328\tHow did Adolf Hitler die? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, dies at, a hospital) -> a hospital (5439ms)\nHow did Adolf Hitler die?\tdefending Christianity\t0.333333333328\tHow did Adolf Hitler die? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died while, defending Christianity) -> defending Christianity (5439ms)\nHow did Adolf Hitler die?\ta Berlin hospital\t0.333333333328\tHow did Adolf Hitler die? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died at, a Berlin hospital) -> a Berlin hospital (5439ms)\nHow did Adolf Hitler die?\t93\t0.333333333328\tHow did Adolf Hitler die? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, dies aged, 93) -> 93 (5439ms)\nHow did Adolf Hitler die?\tthe generals\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the generals, had considerable influence with, Hitler) -> the generals (5461ms)\nHow did Adolf Hitler die?\tthe Reich Defence Council\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the Reich Defence Council, had any influence on, Hitler) -> the Reich Defence Council (5461ms)\nHow did Adolf Hitler die?\tLong Island\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (his nephew William Patrick ?Willy ? Hitler, live on, Long Island) -> Long Island (5450ms)\nHow did Adolf Hitler die?\tseveral women\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, have affair with, $x) -> (Hitler, had affairs with, several women) -> several women (5466ms)\nHow did Adolf Hitler die?\t1920-1922\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (1920-1922, had an influence on, Hitler) -> 1920-1922 (5450ms)\nHow did Adolf Hitler die?\ta blaze\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, went out in, a blaze) -> a blaze (5470ms)\nHow did Adolf Hitler die?\t??no other factor\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (??no other factor, influenced, Hitler more) -> ??no other factor (5456ms)\nHow did Adolf Hitler die?\tWagner\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Wagner, influenced, Hitler) -> Wagner (5479ms)\nHow did Adolf Hitler die?\twar\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, have cause of, $x) -> (Hitler, would have been a reasonable cause of, war) -> war (5445ms)\nHow did Adolf Hitler die?\tLethal injection\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (Lethal injection, was invented by, Adolph Hitler) -> Lethal injection (5461ms)\nHow did Adolf Hitler die?\tthe U.S.\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler?s blood relatives, are living in, the U.S.) -> the U.S. (5466ms)\nHow did Adolf Hitler die?\t1938 Beck\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (1938 Beck, attempted to influence, Hitler) -> 1938 Beck (5475ms)\nHow did Adolf Hitler die?\tGreece\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (Greece, was invented by, Hitler) -> Greece (5461ms)\nHow did Adolf Hitler die?\tradio\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, live on, radio) -> radio (5466ms)\nHow did Adolf Hitler die?\tParis\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, does n?t go down well in, Paris) -> Paris (5461ms)\nHow did Adolf Hitler die?\tPoland\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Poland, directly influenced, Hitler) -> Poland (5466ms)\nHow did Adolf Hitler die?\tsouth Austria\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Adoph Hitler, lived in, south Austria) -> south Austria (5484ms)\nHow did Adolf Hitler die?\tsocialism\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (socialism, was invented by, Hitler) -> socialism (5484ms)\nHow did Adolf Hitler die?\tstreets\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, started living on, streets) -> streets (5470ms)\nHow did Adolf Hitler die?\tthe Antarctic\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, was living in, the Antarctic) -> the Antarctic (5450ms)\nHow did Adolf Hitler die?\tSEL\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (SEL, had some influence with, Hitler) -> SEL (5455ms)\nHow did Adolf Hitler die?\tthe ideology\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the ideology, so influenced, Hitler) -> the ideology (5445ms)\nHow did Adolf Hitler die?\tRussell Square\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler?s Germany, was also living in, Russell Square) -> Russell Square (5456ms)\nHow did Adolf Hitler die?\tHanover\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, went up in, Hanover) -> Hanover (5450ms)\nHow did Adolf Hitler die?\tsplendor\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Mr. Hitler, lived in, splendor) -> splendor (5445ms)\nHow did Adolf Hitler die?\ta time\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (neither Hitler nor Stalin, lived in, a time) -> a time (5479ms)\nHow did Adolf Hitler die?\tLuther\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Luther, was a huge influence on, Hitler) -> Luther (5466ms)\nHow did Adolf Hitler die?\tantisemitism\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (antisemitism, was a major influence on, Hitler) -> antisemitism (5479ms)\nHow did Adolf Hitler die?\tA Study\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (A Study, influenced, Hitler) -> A Study (5465ms)\nHow did Adolf Hitler die?\tthe breadline\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, was living on, the breadline) -> the breadline (5479ms)\nHow did Adolf Hitler die?\ta world\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (his underground bunker Hitler, lived in, a world) -> a world (5461ms)\nHow did Adolf Hitler die?\tOne writer\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (One writer, influenced, Hitler) -> One writer (5479ms)\nHow did Adolf Hitler die?\ta shelter\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, was forced to live in, a shelter) -> a shelter (5470ms)\nHow did Adolf Hitler die?\tMadame Blavatsky\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Madame Blavatsky, influenced, Hitler) -> Madame Blavatsky (5475ms)\nHow did Adolf Hitler die?\tGhana\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, lived in, Ghana) -> Ghana (5461ms)\nHow did Adolf Hitler die?\tThe Galactic Empire\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (The Galactic Empire, has been also influenced by, Hitler) -> The Galactic Empire (5475ms)\nHow did Adolf Hitler die?\tinfamy in the history books\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, has gone in, infamy in the history books) -> infamy in the history books (5461ms)\nHow did Adolf Hitler die?\timpoverished conditions\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, live in, impoverished conditions) -> impoverished conditions (5470ms)\nHow did Adolf Hitler die?\tthe Olympic torch ceremony\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (the Olympic torch ceremony, was invented by, Hitler) -> the Olympic torch ceremony (5450ms)\nHow did Adolf Hitler die?\tGun control\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (Gun control, was invented by, Adolph Hitler) -> Gun control (5461ms)\nHow did Adolf Hitler die?\tVan den Bruck?s ideas\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Van den Bruck?s ideas, influenced, Hitler) -> Van den Bruck?s ideas (5445ms)\nHow did Adolf Hitler die?\tassociation\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (association, was a major influence on, Hitler) -> association (5450ms)\nHow did Adolf Hitler die?\tturn\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (turn, influenced, Hitler) -> turn (5445ms)\nHow did Adolf Hitler die?\tNietzsche\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Nietzsche, was the main influence in, Adolph Hitler?s life) -> Nietzsche (5470ms)\nHow did Adolf Hitler die?\tLatin America\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, was living in, Latin America) -> Latin America (5461ms)\nHow did Adolf Hitler die?\tSchirach\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Schirach, extended the influence of, the Hitler Youth) -> Schirach (5450ms)\nHow did Adolf Hitler die?\tAmerica\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, will live on in, America) -> America (5479ms)\nHow did Adolf Hitler die?\tAfrikaner Nationalism\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Afrikaner Nationalism, had been deeply influenced by, Hitler) -> Afrikaner Nationalism (5450ms)\nHow did Adolf Hitler die?\tcomparative affluence\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, lived in, comparative affluence) -> comparative affluence (5470ms)\nHow did Adolf Hitler die?\tandy Catholicism\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (andy Catholicism, influenced, Hitler?s views) -> andy Catholicism (5455ms)\nHow did Adolf Hitler die?\tanti-Semitic conspiracy theorists\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (anti-Semitic conspiracy theorists, would later influence, Hitler) -> anti-Semitic conspiracy theorists (5479ms)\nHow did Adolf Hitler die?\thistory\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, went down in, history) -> history (5456ms)\nHow did Adolf Hitler die?\tsmoke\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, had gone up in, smoke) -> smoke (5475ms)\nHow did Adolf Hitler die?\tAntarctica\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, supposedly lived in, Antarctica) -> Antarctica (5470ms)\nHow did Adolf Hitler die?\tThe intention\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (The intention, was to influence, Hitler) -> The intention (5479ms)\nHow did Adolf Hitler die?\tHaeckel?s ideas\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Haeckel?s ideas, were an important influence on, Hitler) -> Haeckel?s ideas (5465ms)\nHow did Adolf Hitler die?\tthe periphery\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, was living a life on, the periphery) -> the periphery (5475ms)\nHow did Adolf Hitler die?\tevolution\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (evolution, played an influence in, Hitler?s Aryan superiority) -> evolution (5479ms)\nHow did Adolf Hitler die?\ta country\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, lived in, a country) -> a country (5465ms)\nHow did Adolf Hitler die?\tmemeburn\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler movie Downfall, is now live on, memeburn) -> memeburn (5445ms)\nHow did Adolf Hitler die?\ta man\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (a man, influenced, HITLER) -> a man (5450ms)\nHow did Adolf Hitler die?\tthe religious rhetoric\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the religious rhetoric, influenced, Hitler) -> the religious rhetoric (5466ms)\nHow did Adolf Hitler die?\tStuck\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Stuck, had a great influence on, Hitler) -> Stuck (5445ms)\nHow did Adolf Hitler die?\tTheosophy\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Theosophy, influenced, Hitler) -> Theosophy (5450ms)\nHow did Adolf Hitler die?\tDarwin\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Darwin, influenced, Hitler) -> Darwin (5461ms)\nHow did Adolf Hitler die?\tthe Goebbels\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the Goebbels, was exercising a baleful influence on, Hitler) -> the Goebbels (5484ms)\nHow did Adolf Hitler die?\tAgartha\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, is currently living in, Agartha) -> Agartha (5470ms)\nHow did Adolf Hitler die?\tthe main factors\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the main factors, influenced, Hitler) -> the main factors (5484ms)\nHow did Adolf Hitler die?\ta hail\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, could have literally gone down in, a hail) -> a hail (5466ms)\nHow did Adolf Hitler die?\tHanfstaengl\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Hanfstaengl, might have also influenced, Hitler) -> Hanfstaengl (5455ms)\nHow did Adolf Hitler die?\ta great European city\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, lived in, a great European city) -> a great European city (5470ms)\nHow did Adolf Hitler die?\tpoverty\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, is living in, poverty) -> poverty (5456ms)\nHow did Adolf Hitler die?\tCrowley\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Crowley, influenced, Hitler) -> Crowley (5461ms)\nHow did Adolf Hitler die?\tinfamy\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, has rightfully gone down in, infamy) -> infamy (5479ms)\nHow did Adolf Hitler die?\ta small farm\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (The Hitler family, lived on, a small farm) -> a small farm (5475ms)\nHow did Adolf Hitler die?\tDieter\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Dieter, has been influenced by, Hitler) -> Dieter (5475ms)\nHow did Adolf Hitler die?\tthe death camps\t0.222222222219\tHow did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, was going on in, the death camps) -> the death camps (5470ms)\nHow did Adolf Hitler die?\tThe racial theories\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (The racial theories, influenced, Hitler) -> The racial theories (5475ms)\nHow did Adolf Hitler die?\tLama priests\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Lama priests, had gained influence over, Hitler) -> Lama priests (5456ms)\nHow did Adolf Hitler die?\tno other forgery\t0.222222222219\tHow did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (no other forgery, had greater influence on, Hitler?s policy) -> no other forgery (5470ms)\nHow did Adolf Hitler die?\tA Jewish doctor\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (A Jewish doctor, killed, Adolf Hitler?s mother) -> A Jewish doctor (5484ms)\nHow did Adolf Hitler die?\tMao Zedong\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (Mao Zedong, probably killed more people than, Adolf Hitler) -> Mao Zedong (5488ms)\nHow did Adolf Hitler die?\tJuly 20th\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (July 20th, Attempt to kill, Adolf Hitler) -> July 20th (5488ms)\nHow did Adolf Hitler die?\tdisabilities\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (disabilities, were killed during, Adolf Hitler) -> disabilities (5488ms)\nHow did Adolf Hitler die?\tRoger Friedman Jerry Maguire\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (Roger Friedman Jerry Maguire, tried to kill, Adolf Hitler) -> Roger Friedman Jerry Maguire (5488ms)\nHow did Adolf Hitler die?\teach year\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (each year, were killed by, Adolf Hitler) -> each year (5484ms)\nHow did Adolf Hitler die?\ta plan\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (a plan, kill, Adolf Hitler) -> a plan (5484ms)\nHow did Adolf Hitler die?\tHuman Torch\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (Human Torch, Characters killed, Adolf Hitler in popular culture) -> Human Torch (5484ms)\nHow did Adolf Hitler die?\ta bomb\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (a bomb, to kill, Adolf Hitler) -> a bomb (5488ms)\nHow did Adolf Hitler die?\tMay 1 , 1945\t0.11111111111\tHow did Adolf Hitler die? -> $x: (adolf hitler, be dead on, $x) -> (Adolf Hitler, was pronounced dead on, May 1 , 1945) -> May 1 , 1945 (5484ms)\nHow did Adolf Hitler die?\tINGRID HENNING\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (INGRID HENNING, had the chance to kill, Adolf Hitler) -> INGRID HENNING (5484ms)\nHow did Adolf Hitler die?\t?to\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (?to, kill, Adolf Hitler) -> ?to (5484ms)\nHow did Adolf Hitler die?\tA man\t0.11111111111\tHow did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (A man, once plotted to kill, Adolf Hitler) -> A man (5484ms)\nHow did Adolf Hitler die?\t1899\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, 1899) -> 1899 (5492ms)\nHow did Adolf Hitler die?\tthe small Austrian village\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, the small Austrian village) -> the small Austrian village (5488ms)\nHow did Adolf Hitler die?\tBraunau\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, Braunau) -> Braunau (5492ms)\nHow did Adolf Hitler die?\tthe small Austrian town\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, the small Austrian town) -> the small Austrian town (5492ms)\nHow did Adolf Hitler die?\tBraunauam Inn\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, Braunauam Inn) -> Braunauam Inn (5492ms)\nHow did Adolf Hitler die?\tAustria\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, Austria) -> Austria (5492ms)\nHow did Adolf Hitler die?\tan Austrian town\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, an Austrian town) -> an Austrian town (5492ms)\nHow did Adolf Hitler die?\tPassau\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, is born in, Passau) -> Passau (5492ms)\nHow did Adolf Hitler die?\tBraunau Am Inn\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, Braunau Am Inn) -> Braunau Am Inn (5492ms)\nHow did Adolf Hitler die?\tthe Austrian town of Braunau\t0.11111111110900002\tHow did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, the Austrian town of Braunau) -> the Austrian town of Braunau (5492ms)\nHow did Adolf Hitler die?\tleadership roles\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Mao , Stalin and Hitler, can end up in, leadership roles) -> leadership roles (5495ms)\nHow did Adolf Hitler die?\tthe same state\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Gandhi and Hitler, end up in, the same state) -> the same state (5511ms)\nHow did Adolf Hitler die?\tHitchens\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Hitchens, did, Hitler) -> Hitchens (5504ms)\nHow did Adolf Hitler die?\tthe extent\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the extent, did, Hitler) -> the extent (5495ms)\nHow did Adolf Hitler die?\tEuropean Jewry\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (European Jewry, did under, Hitler) -> European Jewry (5506ms)\nHow did Adolf Hitler die?\ta Communist revolution ?\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (a Communist revolution ?, did, Hitler) -> a Communist revolution ? (5509ms)\nHow did Adolf Hitler die?\tDarwinism\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, be cause of, hitler) -> (Darwinism, was the sole cause of, Hitler?s barbarism) -> Darwinism (5511ms)\nHow did Adolf Hitler die?\ta kingdom\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (even Hitler, ends up in, a kingdom) -> a kingdom (5501ms)\nHow did Adolf Hitler die?\tuseless\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, be cause of, hitler) -> (useless, was the major cause of, Hitler) -> useless (5498ms)\nHow did Adolf Hitler die?\tApril 30\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, be kill on, $x) -> (The Hitler, double was killed on, April 30) -> April 30 (5492ms)\nHow did Adolf Hitler die?\theaven\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Could Hitler, end up in, heaven) -> heaven (5506ms)\nHow did Adolf Hitler die?\tthe same\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the same, did, Hitler) -> the same (5511ms)\nHow did Adolf Hitler die?\tCause and Effect\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Cause and Effect, did, Hitler) -> Cause and Effect (5492ms)\nHow did Adolf Hitler die?\tthe war years\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the war years, did, Hitler) -> the war years (5504ms)\nHow did Adolf Hitler die?\tZionism\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Zionism, Did, Hitler) -> Zionism (5501ms)\nHow did Adolf Hitler die?\tpolitical duplicity\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (political duplicity, did, Hitler) -> political duplicity (5495ms)\nHow did Adolf Hitler die?\tthe species\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the species, did, Hitler) -> the species (5495ms)\nHow did Adolf Hitler die?\tthe Mein Kampf\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the Mein Kampf, did, Hitler) -> the Mein Kampf (5506ms)\nHow did Adolf Hitler die?\tthe crowd\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the crowd, did, Hitler) -> the crowd (5504ms)\nHow did Adolf Hitler die?\tthe evil\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the evil, did, Hitler) -> the evil (5504ms)\nHow did Adolf Hitler die?\tfrankvmh\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (frankvmh, Did, Hitler) -> frankvmh (5504ms)\nHow did Adolf Hitler die?\tTranscendent Faith\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Transcendent Faith, Did, Hitler) -> Transcendent Faith (5501ms)\nHow did Adolf Hitler die?\tHarvard\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Harvard, did, Hitler) -> Harvard (5498ms)\nHow did Adolf Hitler die?\tBlack Reichswehr\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Black Reichswehr, did, Hitler) -> Black Reichswehr (5509ms)\nHow did Adolf Hitler die?\tSaddam\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Saddam, did, Hitler) -> Saddam (5495ms)\nHow did Adolf Hitler die?\tNews\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (News, Did, Hitler) -> News (5501ms)\nHow did Adolf Hitler die?\tLebanese Journalist\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Lebanese Journalist, does, Hitler) -> Lebanese Journalist (5501ms)\nHow did Adolf Hitler die?\tEurope\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Europe, did with, Hitler) -> Europe (5509ms)\nHow did Adolf Hitler die?\tthe moment\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the moment, does, Hitler) -> the moment (5495ms)\nHow did Adolf Hitler die?\ta Christian\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (a Christian, did, Hitler) -> a Christian (5509ms)\nHow did Adolf Hitler die?\tthe Gestapo\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the Gestapo, did for, Hitler) -> the Gestapo (5498ms)\nHow did Adolf Hitler die?\tover Italy and Germany\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (over Italy and Germany, did, Hitler) -> over Italy and Germany (5511ms)\nHow did Adolf Hitler die?\tFAILas\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (FAILas, did, Hitler) -> FAILas (5511ms)\nHow did Adolf Hitler die?\tMR IRVING\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (MR IRVING, Did, Hitler) -> MR IRVING (5504ms)\nHow did Adolf Hitler die?\tUser\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (User, Did, Hitler) -> User (5504ms)\nHow did Adolf Hitler die?\t150\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (150, did, Hitler) -> 150 (5511ms)\nHow did Adolf Hitler die?\tnext\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (next, do, Hitler) -> next (5498ms)\nHow did Adolf Hitler die?\tthe time\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the time, did, Hitler) -> the time (5495ms)\nHow did Adolf Hitler die?\tGoya\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Goya, so did, Hitler) -> Goya (5509ms)\nHow did Adolf Hitler die?\tChristian\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Christian, Did, Hitler) -> Christian (5506ms)\nHow did Adolf Hitler die?\tdreamgirl542\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (dreamgirl542, did, Hitler) -> dreamgirl542 (5498ms)\nHow did Adolf Hitler die?\tthe 7th Circle\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, ended up in, the 7th Circle) -> the 7th Circle (5504ms)\nHow did Adolf Hitler die?\tquestions\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (questions, Did, Hitler) -> questions (5509ms)\nHow did Adolf Hitler die?\tlabor camps\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (labor camps, did, Hitler) -> labor camps (5501ms)\nHow did Adolf Hitler die?\tSeptember 1 , 1939\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (September 1 , 1939, did, Hitler) -> September 1 , 1939 (5498ms)\nHow did Adolf Hitler die?\thtTweets\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (htTweets, Did, # Hitler) -> htTweets (5509ms)\nHow did Adolf Hitler die?\tGermans\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Germans, did, Hitler) -> Germans (5506ms)\nHow did Adolf Hitler die?\t?How\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (?How, did, Hitler) -> ?How (5506ms)\nHow did Adolf Hitler die?\tthe Maginot line\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the Maginot line, did to, Hitler) -> the Maginot line (5498ms)\nHow did Adolf Hitler die?\tna farda\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (na farda, do, Hitler) -> na farda (5498ms)\nHow did Adolf Hitler die?\tclones\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (clones, do, hitler) -> clones (5501ms)\nHow did Adolf Hitler die?\tevil\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (evil, did, Hitler) -> evil (5495ms)\nHow did Adolf Hitler die?\tFranklin Roosevelt\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Franklin Roosevelt, did, Hitler) -> Franklin Roosevelt (5492ms)\nHow did Adolf Hitler die?\tOne asks\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (One asks, then did, Hitler) -> One asks (5506ms)\nHow did Adolf Hitler die?\telections\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (elections, did, Hitler) -> elections (5495ms)\nHow did Adolf Hitler die?\tthe new Israel\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the new Israel, did, Hitler) -> the new Israel (5506ms)\nHow did Adolf Hitler die?\tHitler?s Eyes\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Hitler?s Eyes, did, Hitler) -> Hitler?s Eyes (5501ms)\nHow did Adolf Hitler die?\tChurchill\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Churchill, did, Hitler) -> Churchill (5498ms)\nHow did Adolf Hitler die?\tthe same reasons\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the same reasons, did, Hitler) -> the same reasons (5498ms)\nHow did Adolf Hitler die?\tOprah Winfrey Germany\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, be cause of, hitler) -> (Oprah Winfrey Germany, was the cause of, Hitler) -> Oprah Winfrey Germany (5504ms)\nHow did Adolf Hitler die?\t1940\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, wanted to end the war in, 1940) -> 1940 (5511ms)\nHow did Adolf Hitler die?\ta detention camp\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (a former Hitler finance minister, ended up in, a detention camp) -> a detention camp (5509ms)\nHow did Adolf Hitler die?\tHeaven\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, end up in, Heaven) -> Heaven (5511ms)\nHow did Adolf Hitler die?\tone militant state\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (one militant state, did, Hitler) -> one militant state (5498ms)\nHow did Adolf Hitler die?\tFerris\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Ferris, did, Hitler) -> Ferris (5495ms)\nHow did Adolf Hitler die?\tpracticing Satanism\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (practicing Satanism, did, Hitler) -> practicing Satanism (5504ms)\nHow did Adolf Hitler die?\tscapegoats\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (scapegoats, did, Hitler) -> scapegoats (5506ms)\nHow did Adolf Hitler die?\tthe western front\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, be kill on, $x) -> (Hitler, had been killed on, the western front) -> the western front (5501ms)\nHow did Adolf Hitler die?\ta ditch\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, ended up in, a ditch) -> a ditch (5511ms)\nHow did Adolf Hitler die?\tTRANSCENDANT FAITH\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (TRANSCENDANT FAITH, Did, Hitler) -> TRANSCENDANT FAITH (5506ms)\nHow did Adolf Hitler die?\tthe bitter end\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the bitter end, did, Hitler) -> the bitter end (5501ms)\nHow did Adolf Hitler die?\tfiction\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (fiction, Did, Hitler) -> fiction (5495ms)\nHow did Adolf Hitler die?\tthe work\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the work, did for, Hitler) -> the work (5506ms)\nHow did Adolf Hitler die?\ttrue Norwegians\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (true Norwegians, so did, Hitler) -> true Norwegians (5504ms)\nHow did Adolf Hitler die?\tno time\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (no time, did, Hitler) -> no time (5501ms)\nHow did Adolf Hitler die?\tsocial thought\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (social thought, did, Hitler) -> social thought (5509ms)\nHow did Adolf Hitler die?\ta two-front war\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, ended in, a two-front war) -> a two-front war (5492ms)\nHow did Adolf Hitler die?\tThe question\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (The question, did, Hitler) -> The question (5504ms)\nHow did Adolf Hitler die?\t1923\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler?s putsch, ended in, 1923) -> 1923 (5498ms)\nHow did Adolf Hitler die?\tthe same ideas\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the same ideas, did, Hitler) -> the same ideas (5509ms)\nHow did Adolf Hitler die?\tAnswer\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Answer, did, Hitler) -> Answer (5506ms)\nHow did Adolf Hitler die?\t5017\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (5017, did, Hitler) -> 5017 (5498ms)\nHow did Adolf Hitler die?\tthe World War II period\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the World War II period, did, Hitler) -> the World War II period (5509ms)\nHow did Adolf Hitler die?\tObama\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Obama, did, Hitler) -> Obama (5509ms)\nHow did Adolf Hitler die?\t420\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (420, did, Hitler) -> 420 (5504ms)\nHow did Adolf Hitler die?\tthe drawing\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the drawing, did, Hitler) -> the drawing (5495ms)\nHow did Adolf Hitler die?\tLoading comments ?\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Loading comments ?, Did, Hitler) -> Loading comments ? (5509ms)\nHow did Adolf Hitler die?\tCommunist Russia\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, ended up in, Communist Russia) -> Communist Russia (5509ms)\nHow did Adolf Hitler die?\tpage 7\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (page 7, does, Hitler) -> page 7 (5509ms)\nHow did Adolf Hitler die?\tnobody\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (nobody, do to, Hitler) -> nobody (5506ms)\nHow did Adolf Hitler die?\tJust how\t0.11111111110800001\tHow did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Just how, did, Hitler) -> Just how (5501ms)\nHow did Adolf Hitler die?\tappeal\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, appeal) -> appeal (5514ms)\nHow did Adolf Hitler die?\tDarwinism Devalue Human Life\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, Does, Darwinism Devalue Human Life) -> Darwinism Devalue Human Life (5513ms)\nHow did Adolf Hitler die?\tnt  care\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, nt  care) -> nt  care (5516ms)\nHow did Adolf Hitler die?\tthe Munich agreement effect Litvinov?s policy\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, the Munich agreement effect Litvinov?s policy) -> the Munich agreement effect Litvinov?s policy (5513ms)\nHow did Adolf Hitler die?\tn?t\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, n?t) -> n?t (5519ms)\nHow did Adolf Hitler die?\tthe dirty work\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, do, the dirty work) -> the dirty work (5513ms)\nHow did Adolf Hitler die?\tfavor\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, favor) -> favor (5516ms)\nHow did Adolf Hitler die?\tbefore\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, before) -> before (5518ms)\nHow did Adolf Hitler die?\tthe devil\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, the devil) -> the devil (5513ms)\nHow did Adolf Hitler die?\tcenturies centuries\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, centuries centuries) -> centuries centuries (5518ms)\nHow did Adolf Hitler die?\tmuch evil\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, much evil) -> much evil (5519ms)\nHow did Adolf Hitler die?\tmuch the same\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, much the same) -> much the same (5513ms)\nHow did Adolf Hitler die?\tuse theosophy\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, use theosophy) -> use theosophy (5516ms)\nHow did Adolf Hitler die?\twhat he did believing in a God  s\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, what he did believing in a God  s) -> what he did believing in a God  s (5519ms)\nHow did Adolf Hitler die?\tsmite\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, smite) -> smite (5511ms)\nHow did Adolf Hitler die?\tthe Jews\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, the Jews) -> the Jews (5519ms)\nHow did Adolf Hitler die?\twhat he wanted\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, do, what he wanted) -> what he wanted (5514ms)\nHow did Adolf Hitler die?\ta little\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, a little) -> a little (5513ms)\nHow did Adolf Hitler die?\twhat he believed was right\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, what he believed was right) -> what he believed was right (5514ms)\nHow did Adolf Hitler die?\tback\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, back) -> back (5513ms)\nHow did Adolf Hitler die?\tendorse Greater Albania\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, endorse Greater Albania) -> endorse Greater Albania (5514ms)\nHow did Adolf Hitler die?\tGoering\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, Goering) -> Goering (5514ms)\nHow did Adolf Hitler die?\treference\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, reference) -> reference (5516ms)\nHow did Adolf Hitler die?\tbrown shirts\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, brown shirts) -> brown shirts (5514ms)\nHow did Adolf Hitler die?\tn?t work\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, n?t work) -> n?t work (5514ms)\nHow did Adolf Hitler die?\tpaper\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, paper) -> paper (5511ms)\nHow did Adolf Hitler die?\tmuch good\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, much good) -> much good (5513ms)\nHow did Adolf Hitler die?\tpromise\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, promise) -> promise (5516ms)\nHow did Adolf Hitler die?\tRonald and Nancy Reagan\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, Ronald and Nancy Reagan) -> Ronald and Nancy Reagan (5511ms)\nHow did Adolf Hitler die?\tGod 's work\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, God 's work) -> God 's work (5514ms)\nHow did Adolf Hitler die?\ta lot of good\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, a lot of good) -> a lot of good (5519ms)\nHow did Adolf Hitler die?\tGod 's will\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, God 's will) -> God 's will (5516ms)\nHow did Adolf Hitler die?\ta 180\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, a 180) -> a 180 (5519ms)\nHow did Adolf Hitler die?\tgood\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, good) -> good (5513ms)\nHow did Adolf Hitler die?\tso\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, so) -> so (5511ms)\nHow did Adolf Hitler die?\tetc\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, etc) -> etc (5516ms)\nHow did Adolf Hitler die?\tGandhi\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, Gandhi) -> Gandhi (5513ms)\nHow did Adolf Hitler die?\tcommit suicide\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, commit suicide) -> commit suicide (5519ms)\nHow did Adolf Hitler die?\twonders\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, wonders) -> wonders (5516ms)\nHow did Adolf Hitler die?\ttoo\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, too) -> too (5513ms)\nHow did Adolf Hitler die?\tindeed\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, indeed) -> indeed (5519ms)\nHow did Adolf Hitler die?\temphasize\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, emphasize) -> emphasize (5519ms)\nHow did Adolf Hitler die?\twhat he had to do\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, what he had to do) -> what he had to do (5511ms)\nHow did Adolf Hitler die?\tmuch good for Germany\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, much good for Germany) -> much good for Germany (5519ms)\nHow did Adolf Hitler die?\thowever\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, however) -> however (5513ms)\nHow did Adolf Hitler die?\ta more entertaining job\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, does, a more entertaining job) -> a more entertaining job (5519ms)\nHow did Adolf Hitler die?\tonce\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, once) -> once (5513ms)\nHow did Adolf Hitler die?\t25 years\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, 25 years) -> 25 years (5516ms)\nHow did Adolf Hitler die?\t70 years ago\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, 70 years ago) -> 70 years ago (5514ms)\nHow did Adolf Hitler die?\tthe same ,\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, the same ,) -> the same , (5519ms)\nHow did Adolf Hitler die?\tthe Nazi salute\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, doing, the Nazi salute) -> the Nazi salute (5513ms)\nHow did Adolf Hitler die?\tescape\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, escape) -> escape (5516ms)\nHow did Adolf Hitler die?\tvery little\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, very little) -> very little (5511ms)\nHow did Adolf Hitler die?\tnt  rise to power\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, nt  rise to power) -> nt  rise to power (5513ms)\nHow did Adolf Hitler die?\tnt\t0.111111111107\tHow did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, nt) -> nt (5519ms)\nHow did Adolf Hitler die?\ta secret Nazi ice bunker\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be bury in, $x) -> (Hitler?s archives, may be buried in, a secret Nazi ice bunker) -> a secret Nazi ice bunker (5520ms)\nHow did Adolf Hitler die?\tMarch 1920\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be from in, $x) -> (Hitler, was discharged from the army in, March 1920) -> March 1920 (5520ms)\nHow did Adolf Hitler die?\t1920\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be from in, $x) -> (Hitler, was discharged from the army in, 1920) -> 1920 (5520ms)\nHow did Adolf Hitler die?\tan assassination attempt\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (Hitler, is killed in, an assassination attempt) -> an assassination attempt (5520ms)\nHow did Adolf Hitler die?\tthe movie hall\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (Hitler, was killed in, the movie hall) -> the movie hall (5520ms)\nHow did Adolf Hitler die?\twars\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be from in, $x) -> (N To Hitler, from being harmed in, wars) -> wars (5520ms)\nHow did Adolf Hitler die?\ta bombing raid\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (Hitler, is killed in, a bombing raid) -> a bombing raid (5520ms)\nHow did Adolf Hitler die?\tWWI\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (Hitler, had been killed in, WWI) -> WWI (5520ms)\nHow did Adolf Hitler die?\tthe garden\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be bury in, $x) -> (Hitler?s bombers, was found buried in, the garden) -> the garden (5520ms)\nHow did Adolf Hitler die?\ta bomb blast\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (June Hitler, is killed in, a bomb blast) -> a bomb blast (5520ms)\nHow did Adolf Hitler die?\tignominy and shame\t-2.9999891459908667E-12\tHow did Adolf Hitler die? -> $x: (hitler, be bury in, $x) -> (Hitler, is buried in, ignominy and shame) -> ignominy and shame (5520ms)\nHow did Adolf Hitler die?\tNew Year\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula, died on, New Year) -> New Year (5521ms)\nHow did Adolf Hitler die?\tApril 28\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Sister Paula, died on, April 28) -> April 28 (5521ms)\nHow did Adolf Hitler die?\ta cold December day\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula, died on, a cold December day) -> a cold December day (5521ms)\nHow did Adolf Hitler die?\tSaturday aged 91\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (a Nazi death camp, died on, Saturday aged 91) -> Saturday aged 91 (5521ms)\nHow did Adolf Hitler die?\ta train\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (Nazi occupation, later died on, a train) -> a train (5521ms)\nHow did Adolf Hitler die?\t24th March 2006\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Dr Paula Greeves, died on, 24th March 2006) -> 24th March 2006 (5521ms)\nHow did Adolf Hitler die?\tthe afternoon\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula Danziger, died on, the afternoon) -> the afternoon (5521ms)\nHow did Adolf Hitler die?\tJune 6th 1944\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (Nazi coastal troops, then died on, June 6th 1944) -> June 6th 1944 (5521ms)\nHow did Adolf Hitler die?\tJan . 4\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (Nazi war criminals, died on, Jan . 4) -> Jan . 4 (5520ms)\nHow did Adolf Hitler die?\tTuesday\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula Lerner Paula Lerner, died on, Tuesday) -> Tuesday (5520ms)\nHow did Adolf Hitler die?\tSaturday\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (a Nazi death camp, died on, Saturday) -> Saturday (5521ms)\nHow did Adolf Hitler die?\tDecember\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula C. Dorner, died on, December) -> December (5521ms)\nHow did Adolf Hitler die?\tDecember 2 , 2000\t-0.111111111109\tHow did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (--Paula Underwood Paula Underwood, died on, December 2 , 2000) -> December 2 , 2000 (5521ms)\nWhat movies did Meg Ryan star in?\tthree movies\t-0.444444444442\tWhat movies did Meg Ryan star in? -> $x: (meg ryan, be star in, $x) -> (actress Meg Ryan, have been co-stars in, three movies) -> three movies (567ms)\nWhat movies did Meg Ryan star in?\tLIFE\t-0.444444444442\tWhat movies did Meg Ryan star in? -> $x: (meg ryan, star in, $x) -> (Meg Ryan, starred in the movie, LIFE) -> LIFE (567ms)\nWhere is the highest point on earth?\tKaba\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Kaba, is the highest point on, earth) -> Kaba (2269ms)\nWhere is the highest point on earth?\tEden\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Eden, is the highest point on, earth) -> Eden (2269ms)\nWhere is the highest point on earth?\tPeak XV\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Peak XV, was actually the highest point on, the earth) -> Peak XV (2487ms)\nWhere is the highest point on earth?\ta whole\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (a whole, is the highest point on, earth') -> a whole (2403ms)\nWhere is the highest point on earth?\tThe mountain?s peak\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (The mountain?s peak, was the highest point on, Earth) -> The mountain?s peak (2487ms)\nWhere is the highest point on earth?\tHighlights Mount Everest\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Highlights Mount Everest, is the highest point on, Earth) -> Highlights Mount Everest (2268ms)\nWhere is the highest point on earth?\ta Himalayan peak\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (a Himalayan peak, is the highest point on, earth) -> a Himalayan peak (2814ms)\nWhere is the highest point on earth?\tTibet ABC\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Tibet ABC, is arguably the highest point on, earth) -> Tibet ABC (2403ms)\nWhere is the highest point on earth?\tpart\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (part, is the highest point on, earth) -> part (2403ms)\nWhere is the highest point on earth?\tThe mountain\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (The mountain, is the highest point on, earth) -> The mountain (2404ms)\nWhere is the highest point on earth?\tthe Sun ? 7\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (the Sun ? 7, is the highest point on, Earth) -> the Sun ? 7 (2487ms)\nWhere is the highest point on earth?\tCayambe\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Cayambe, is the highest point on, earth) -> Cayambe (2487ms)\nWhere is the highest point on earth?\tMt Everest\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Mt Everest, was the highest point on, Earth) -> Mt Everest (2487ms)\nWhere is the highest point on earth?\tsea level\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (sea level, is the highest point on, earth) -> sea level (2403ms)\nWhere is the highest point on earth?\tthe Nepal-Tibet border\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (the Nepal-Tibet border, was the highest point on, earth) -> the Nepal-Tibet border (2269ms)\nWhere is the highest point on earth?\tMount Kilimanjaro\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Mount Kilimanjaro, is the highest point on, earth) -> Mount Kilimanjaro (2487ms)\nWhere is the highest point on earth?\t29 ,035 feet\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (29 ,035 feet, is the highest point on, Earth) -> 29 ,035 feet (2487ms)\nWhere is the highest point on earth?\tPhysical Geography Extremes\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Physical Geography Extremes, is the highest point on, earth) -> Physical Geography Extremes (2403ms)\nWhere is the highest point on earth?\tMount Everest\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Mount Everest, is the highest point on, the Earth) -> Mount Everest (2403ms)\nWhere is the highest point on earth?\tEverest\t1.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Everest, is the highest point on, the Earth) -> Everest (2487ms)\nWhere is the highest point on earth?\tthe planets\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the planets, range from, a few Earth masses) -> the planets (3439ms)\nWhere is the highest point on earth?\tThe Global 200\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (The Global 200, is a science-based global ranking of, the Earth) -> The Global 200 (3898ms)\nWhere is the highest point on earth?\tThe high-gain antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (The high-gain antenna, was pointed to, Earth) -> The high-gain antenna (3906ms)\nWhere is the highest point on earth?\tobjects\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (objects, ranging to, asteroids relatively close to Earth) -> objects (3697ms)\nWhere is the highest point on earth?\tthe compass needle\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the compass needle, point to, Earth) -> the compass needle (3864ms)\nWhere is the highest point on earth?\tlight\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (light, was pointing right at, Earth) -> light (3855ms)\nWhere is the highest point on earth?\tEnlil\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Enlil, Rank, king of heaven and earth) -> Enlil (3846ms)\nWhere is the highest point on earth?\tThe Jacquard patterns\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (The Jacquard patterns, range from, earth tones) -> The Jacquard patterns (3790ms)\nWhere is the highest point on earth?\tthe comparison\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the comparison, pointed towards, Earth) -> the comparison (3731ms)\nWhere is the highest point on earth?\tThe OA rate\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, be highest in, earth) -> (The OA rate, was highest in, the Earth sciences) -> The OA rate (3846ms)\nWhere is the highest point on earth?\tthe High Gain Antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the High Gain Antenna, will be pointed towards, earth) -> the High Gain Antenna (3006ms)\nWhere is the highest point on earth?\theaven\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (heaven, ranks higher than, earth) -> heaven (3461ms)\nWhere is the highest point on earth?\tthe navigation\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the navigation, pointed towards, Earth) -> the navigation (3872ms)\nWhere is the highest point on earth?\tNoah\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (Noah, points to, earth) -> Noah (3889ms)\nWhere is the highest point on earth?\tthe main antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the main antenna, pointed to, Earth) -> the main antenna (3461ms)\nWhere is the highest point on earth?\tScouts\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Scouts, range throughout, the earth and report) -> Scouts (3906ms)\nWhere is the highest point on earth?\tdeclining sunspot activity\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (declining sunspot activity, is pointing, Earth) -> declining sunspot activity (3855ms)\nWhere is the highest point on earth?\tthe story\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the story, ranges across, Middle-earth) -> the story (3698ms)\nWhere is the highest point on earth?\tTopics\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Topics, range from, earth science) -> Topics (3855ms)\nWhere is the highest point on earth?\tfive-member review panel\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (five-member review panel, ranked, the Earth Link-Google package) -> five-member review panel (3461ms)\nWhere is the highest point on earth?\t1992 China\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (1992 China, sent a high ranking delegation to, the Earth Summit) -> 1992 China (3697ms)\nWhere is the highest point on earth?\ttopics\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (topics, ranging to, the earth) -> topics (3855ms)\nWhere is the highest point on earth?\ttop\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (top, pointed toward, Earth) -> top (2814ms)\nWhere is the highest point on earth?\tGEOSCIENCES\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (GEOSCIENCES, examines the entire range of, earth science topics) -> GEOSCIENCES (3439ms)\nWhere is the highest point on earth?\tthe orbit\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the orbit, ranges just beyond, Earth) -> the orbit (3864ms)\nWhere is the highest point on earth?\tthe most beautiful mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the most beautiful mountain, ranges on, earth) -> the most beautiful mountain (3881ms)\nWhere is the highest point on earth?\tthe rule\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (the rule, is the highest-ranking god on, earth) -> the rule (3872ms)\nWhere is the highest point on earth?\tthe Ranger spacecraft\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the Ranger spacecraft, send close-range images back to, Earth) -> the Ranger spacecraft (2814ms)\nWhere is the highest point on earth?\tthe spacecraft\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the spacecraft, points, its antenna toward Earth) -> the spacecraft (3872ms)\nWhere is the highest point on earth?\ta naturally round stone\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (a naturally round stone, ranging in, natural earth tones) -> a naturally round stone (3881ms)\nWhere is the highest point on earth?\tLaser\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Laser, ranging to, a near-Earth satellite) -> Laser (3864ms)\nWhere is the highest point on earth?\tresearchers\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (researchers, range from just above, the earth) -> researchers (3846ms)\nWhere is the highest point on earth?\tthe Classroom\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the Classroom, covers a range of, Earth) -> the Classroom (3889ms)\nWhere is the highest point on earth?\tB rank\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (B rank, close range, earth type ninjutsu) -> B rank (3898ms)\nWhere is the highest point on earth?\tthe jet\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the jet, is pointed toward, Earth) -> the jet (3789ms)\nWhere is the highest point on earth?\tthe high gain antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the high gain antenna, to point to, Earth) -> the high gain antenna (3889ms)\nWhere is the highest point on earth?\tDenmark\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rate, earth) -> (Denmark, rated 43rd in, the UN?s Earth Sightseeing ratings) -> Denmark (3889ms)\nWhere is the highest point on earth?\tthe North\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rate, earth) -> (the North, is the first M-rated game set in, Middle Earth) -> the North (3846ms)\nWhere is the highest point on earth?\thubble\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (hubble, was pointed at, earth) -> hubble (3732ms)\nWhere is the highest point on earth?\tcontributions\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (contributions, range from, earth-shaking capillary growls) -> contributions (3855ms)\nWhere is the highest point on earth?\tThe colors\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (The colors, range from, earth tones) -> The colors (3846ms)\nWhere is the highest point on earth?\tExplanations\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Explanations, have ranged from, Earth) -> Explanations (3881ms)\nWhere is the highest point on earth?\tthe Moon\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the Moon, always points toward, Earth) -> the Moon (3881ms)\nWhere is the highest point on earth?\tTravel + Leisure\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Travel + Leisure, has ranked, the top 500 hotels on earth) -> Travel + Leisure (3872ms)\nWhere is the highest point on earth?\tthe lens\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the lens, pointed toward, earth) -> the lens (3898ms)\nWhere is the highest point on earth?\tthe tallest structural vantage\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the tallest structural vantage, points on, earth) -> the tallest structural vantage (3889ms)\nWhere is the highest point on earth?\tChina ?s solar energy industry\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (China ?s solar energy industry, has ranked 1st in, the earth) -> China ?s solar energy industry (3898ms)\nWhere is the highest point on earth?\tWomen\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Women, must therefore rank with, Mother Earth) -> Women (3898ms)\nWhere is the highest point on earth?\tEnvironmental\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Environmental, ranks, the earth impact) -> Environmental (3898ms)\nWhere is the highest point on earth?\tthe eyes of the Lord\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the eyes of the Lord, range to, and fro throughout the earth) -> the eyes of the Lord (3906ms)\nWhere is the highest point on earth?\tAmerica.ClimateSouth Africa\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (America.ClimateSouth Africa, ranks high on, earth) -> America.ClimateSouth Africa (3855ms)\nWhere is the highest point on earth?\tthe longest mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the longest mountain, ranges on, earth) -> the longest mountain (3898ms)\nWhere is the highest point on earth?\tthe Lord\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the Lord, range throughout, the earth) -> the Lord (3898ms)\nWhere is the highest point on earth?\tthe same side\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the same side, pointed at, Earth) -> the same side (3889ms)\nWhere is the highest point on earth?\tthe beacon\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the beacon, points, the way to Earth) -> the beacon (3057ms)\nWhere is the highest point on earth?\tWaterloo\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Waterloo, provides a range of, Earth science information) -> Waterloo (3855ms)\nWhere is the highest point on earth?\tSubjects\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Subjects, range from, Earth Science) -> Subjects (3006ms)\nWhere is the highest point on earth?\tthe scope\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the scope, pointed toward, Earth) -> the scope (3906ms)\nWhere is the highest point on earth?\tWestpac\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Westpac, launched a new range of, Earth credit cards) -> Westpac (3057ms)\nWhere is the highest point on earth?\tColors\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Colors, range from, neutral and earth tones) -> Colors (3864ms)\nWhere is the highest point on earth?\tlavender street mcmahons\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (lavender street mcmahons, point, google earth) -> lavender street mcmahons (3864ms)\nWhere is the highest point on earth?\tthe longest continuous mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the longest continuous mountain, ranges on, Earth) -> the longest continuous mountain (3855ms)\nWhere is the highest point on earth?\tSpecies\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Species, Classifications at this rank, Earth-colored mouse) -> Species (3789ms)\nWhere is the highest point on earth?\tthe fourth\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (the fourth, ranked website on, Planet Earth) -> the fourth (2815ms)\nWhere is the highest point on earth?\treference\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (reference, is some point on, Earth) -> reference (3439ms)\nWhere is the highest point on earth?\tSouthern Mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Southern Mountain, ranges to, the beautiful earth tones) -> Southern Mountain (3898ms)\nWhere is the highest point on earth?\ta large sunflower\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (a large sunflower, pointed at, Earth) -> a large sunflower (3439ms)\nWhere is the highest point on earth?\tquestions\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (questions, ranging to, Earths) -> questions (3697ms)\nWhere is the highest point on earth?\tThe CD-ROM\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (The CD-ROM, covers a wide range of, Earth science topics) -> The CD-ROM (3855ms)\nWhere is the highest point on earth?\tThe spacecraft\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (The spacecraft, pointed towards, Earth) -> The spacecraft (2814ms)\nWhere is the highest point on earth?\tthe century\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (the century, decimated the ranks of, Earth?s superhero community) -> the century (3906ms)\nWhere is the highest point on earth?\tApollo 's arrow\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (Apollo 's arrow, points, the way to Earth) -> Apollo 's arrow (3881ms)\nWhere is the highest point on earth?\tthe seven eyes of the Lord\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the seven eyes of the Lord, range throughout, the earth) -> the seven eyes of the Lord (3864ms)\nWhere is the highest point on earth?\tcommunications\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (communications, range with, Earth) -> communications (3006ms)\nWhere is the highest point on earth?\tcolors\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (colors, ranging from, natural earth tones) -> colors (3006ms)\nWhere is the highest point on earth?\tNo longer\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (No longer, increases the range of, your Earth Shock) -> No longer (3697ms)\nWhere is the highest point on earth?\tAres\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Ares, joined the ranks of, Earth?s mightiest heroes) -> Ares (3006ms)\nWhere is the highest point on earth?\tthe same face\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the same face, pointed towards, Earth) -> the same face (3898ms)\nWhere is the highest point on earth?\tan axis\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (an axis, pointing to, Earth) -> an axis (3864ms)\nWhere is the highest point on earth?\tthe pulsar\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the pulsar, was pointing at, Earth) -> the pulsar (3789ms)\nWhere is the highest point on earth?\tWeapons\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Weapons, are mixed ranging from, earth style weapons) -> Weapons (3872ms)\nWhere is the highest point on earth?\tthe same attachments\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the same attachments, range from, 2? to 12? auger earth bits) -> the same attachments (3906ms)\nWhere is the highest point on earth?\tmaterials\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (materials, ranging to, straw and earth) -> materials (3872ms)\nWhere is the highest point on earth?\tThe Atacama Desert\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (The Atacama Desert, ranks as, the driest desert on Earth) -> The Atacama Desert (3697ms)\nWhere is the highest point on earth?\tMountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Mountain, ranges on, Earth) -> Mountain (3889ms)\nWhere is the highest point on earth?\tright angles\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (right angles, always point away from, Earth) -> right angles (3872ms)\nWhere is the highest point on earth?\tthe least silent slew\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the least silent slew, ranges on, Earth) -> the least silent slew (3731ms)\nWhere is the highest point on earth?\tSilica\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Silica, ranks as, one of the hardest elements on earth) -> Silica (3697ms)\nWhere is the highest point on earth?\tmotivational events\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (motivational events, ranging from, earth science) -> motivational events (3881ms)\nWhere is the highest point on earth?\tthe mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the mountain, ranges on, earth) -> the mountain (3889ms)\nWhere is the highest point on earth?\tThe contributions\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (The contributions, range from, practical , down-to-earth advice) -> The contributions (3881ms)\nWhere is the highest point on earth?\tModern geodetic datums\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Modern geodetic datums, range from, flat-earth models) -> Modern geodetic datums (3881ms)\nWhere is the highest point on earth?\tPerihelion\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (Perihelion, is the point in, Earth) -> Perihelion (3731ms)\nWhere is the highest point on earth?\ta nine-foot-wide , dish-shaped antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (a nine-foot-wide , dish-shaped antenna, pointed toward, Earth) -> a nine-foot-wide , dish-shaped antenna (3439ms)\nWhere is the highest point on earth?\tRosetta\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (Rosetta, will point to, Earth) -> Rosetta (3898ms)\nWhere is the highest point on earth?\thuman-caused climate change\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (human-caused climate change, has impacted a wide range of, Earth) -> human-caused climate change (3855ms)\nWhere is the highest point on earth?\ta bomb\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (a bomb, is pointed towards, Earth) -> a bomb (3855ms)\nWhere is the highest point on earth?\tthe greatest mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the greatest mountain, ranges on, earth) -> the greatest mountain (3872ms)\nWhere is the highest point on earth?\tcontemporary neutrals\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (contemporary neutrals, ranges from, natural earth tones) -> contemporary neutrals (3906ms)\nWhere is the highest point on earth?\taxial-helical antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (axial-helical antenna, pointed towards, Earth) -> axial-helical antenna (3864ms)\nWhere is the highest point on earth?\tthe same side of the Moon\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the same side of the Moon, points towards, Earth) -> the same side of the Moon (3789ms)\nWhere is the highest point on earth?\tAn alien telescope\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (An alien telescope, pointed at, Earth) -> An alien telescope (3697ms)\nWhere is the highest point on earth?\tOSXPlanet\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (OSXPlanet, ranks right up there with, Google Earth) -> OSXPlanet (3461ms)\nWhere is the highest point on earth?\tThe subjects\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (The subjects, range from, earth education) -> The subjects (3789ms)\nWhere is the highest point on earth?\tModern estimates\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Modern estimates, range from, 1 to 100 Earth masses) -> Modern estimates (3881ms)\nWhere is the highest point on earth?\tThe moon\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (The moon, is officially ranked as, the Earth) -> The moon (3881ms)\nWhere is the highest point on earth?\tthe nine days\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the nine days, pointed toward, Earth) -> the nine days (3898ms)\nWhere is the highest point on earth?\tthe youngest mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the youngest mountain, ranges on, earth ?) -> the youngest mountain (3846ms)\nWhere is the highest point on earth?\tCultural highlights\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Cultural highlights, range from, a down-to-earth local evening) -> Cultural highlights (3057ms)\nWhere is the highest point on earth?\tJuicy Couture handbags\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Juicy Couture handbags, range from, earth colors) -> Juicy Couture handbags (3906ms)\nWhere is the highest point on earth?\tthree receivers\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (three receivers, pointed towards, Earth) -> three receivers (3881ms)\nWhere is the highest point on earth?\tthe Moon Swirls\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the Moon Swirls, are pointing toward, Earth) -> the Moon Swirls (3789ms)\nWhere is the highest point on earth?\tfields\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (fields, ranging from, the earth sciences) -> fields (3006ms)\nWhere is the highest point on earth?\tareas\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (areas, ranging from, earth science) -> areas (3855ms)\nWhere is the highest point on earth?\tHimalayas\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Himalayas, is the highest mountain range on, Earth) -> Himalayas (3846ms)\nWhere is the highest point on earth?\tthe approximate 50 to 60 degree F\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the approximate 50 to 60 degree F, range, deep earth) -> the approximate 50 to 60 degree F (3906ms)\nWhere is the highest point on earth?\tdays\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (days, points to, earth) -> days (3864ms)\nWhere is the highest point on earth?\ta cylinder\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (a cylinder, to be pointed toward, Earth) -> a cylinder (3439ms)\nWhere is the highest point on earth?\tthe camera\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the camera, points toward, Earth) -> the camera (3855ms)\nWhere is the highest point on earth?\tthe most fabled mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the most fabled mountain, ranges on, earth) -> the most fabled mountain (3889ms)\nWhere is the highest point on earth?\ta supermassive black hole 's jet\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (a supermassive black hole 's jet, to point towards, Earth) -> a supermassive black hole 's jet (3906ms)\nWhere is the highest point on earth?\ta renowned garments\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (a renowned garments, range on, earth) -> a renowned garments (3731ms)\nWhere is the highest point on earth?\tThe arrow\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (The arrow, points to, earth) -> The arrow (3906ms)\nWhere is the highest point on earth?\t1995\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (1995, ranked, Earth sciences) -> 1995 (3872ms)\nWhere is the highest point on earth?\torganizations\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (organizations, ranging from, Friends of the Earth) -> organizations (3846ms)\nWhere is the highest point on earth?\ta color palette\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (a color palette, ranging from, muted earth tones) -> a color palette (3846ms)\nWhere is the highest point on earth?\tthe antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the antenna, pointed toward, Earth) -> the antenna (3898ms)\nWhere is the highest point on earth?\tlaser\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (laser, ranging from, Earth) -> laser (3889ms)\nWhere is the highest point on earth?\tSeagrass\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Seagrass, ranks among, Earth) -> Seagrass (3439ms)\nWhere is the highest point on earth?\tColor Modifiers Kakishibu\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Color Modifiers Kakishibu, alone gives a range of, earth tones) -> Color Modifiers Kakishibu (3789ms)\nWhere is the highest point on earth?\tthe antennas\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the antennas, remain pointed toward, Earth) -> the antennas (3864ms)\nWhere is the highest point on earth?\tthe jets\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the jets, are pointed towards, Earth) -> the jets (3461ms)\nWhere is the highest point on earth?\tthe eyes of the LORD\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the eyes of the LORD, range throughout, the earth) -> the eyes of the LORD (3889ms)\nWhere is the highest point on earth?\tthe oldest mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the oldest mountain, ranges on, earth) -> the oldest mountain (3855ms)\nWhere is the highest point on earth?\t3D spatial relationships\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (3D spatial relationships, points on, earth) -> 3D spatial relationships (3846ms)\nWhere is the highest point on earth?\tROW Adventures\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (ROW Adventures, ranked second on, earth) -> ROW Adventures (3881ms)\nWhere is the highest point on earth?\tThe GPS antennas\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (The GPS antennas, are pointed to, Earth) -> The GPS antennas (2814ms)\nWhere is the highest point on earth?\tthe instrument\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the instrument, pointed toward, Earth) -> the instrument (2814ms)\nWhere is the highest point on earth?\twooly mammoths\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (wooly mammoths, ranged, the Earth) -> wooly mammoths (3872ms)\nWhere is the highest point on earth?\tthe highest mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the highest mountain, ranges on, earth) -> the highest mountain (3789ms)\nWhere is the highest point on earth?\tthe oldest and loveliest mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the oldest and loveliest mountain, ranges on, earth) -> the oldest and loveliest mountain (3864ms)\nWhere is the highest point on earth?\tthe views\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the views, range from, Young Earth) -> the views (3872ms)\nWhere is the highest point on earth?\torbits\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (orbits, ranging from, low Earth) -> orbits (3057ms)\nWhere is the highest point on earth?\tthe didgeridoo\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (the didgeridoo, ranks among, the Earth) -> the didgeridoo (3846ms)\nWhere is the highest point on earth?\tTerraCycle\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (TerraCycle, offers a range of, earth-friendly fertilizers) -> TerraCycle (3881ms)\nWhere is the highest point on earth?\tgroups\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (groups, ranging from, Friends of the Earth) -> groups (3889ms)\nWhere is the highest point on earth?\tScientific Information\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Scientific Information, ranks, Earth system science third) -> Scientific Information (3881ms)\nWhere is the highest point on earth?\tthe two jets\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the two jets, pointed, straight to Earth) -> the two jets (3790ms)\nWhere is the highest point on earth?\tThe planets\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (The planets, range from, about 1.5 times the diameter of Earth) -> The planets (3898ms)\nWhere is the highest point on earth?\tLife\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (Life, is ranked above, Earth) -> Life (3864ms)\nWhere is the highest point on earth?\ta geomorphologist\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (a geomorphologist, studies a range of, Earth surface processes) -> a geomorphologist (3906ms)\nWhere is the highest point on earth?\tthe satellite\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the satellite, pointing towards, Earth) -> the satellite (3461ms)\nWhere is the highest point on earth?\tthe table\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (the table, had the same rank in, the Western Earth Army) -> the table (3889ms)\nWhere is the highest point on earth?\tthe > > universe\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the > > universe, are pointed away from, Earth) -> the > > universe (3872ms)\nWhere is the highest point on earth?\tThe University\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (The University, was ranked 34th for, its earth sciences program) -> The University (3881ms)\nWhere is the highest point on earth?\tthe high-gain antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the high-gain antenna, is pointed toward, Earth) -> the high-gain antenna (3846ms)\nWhere is the highest point on earth?\tGeophysics\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Geophysics, covers a broad range of, earth science) -> Geophysics (3898ms)\nWhere is the highest point on earth?\tthe beam\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the beam, is pointing at, Earth) -> the beam (3906ms)\nWhere is the highest point on earth?\tHint\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rate, earth) -> (Hint, Reduce the rate of, the Earth) -> Hint (3846ms)\nWhere is the highest point on earth?\tthe answers\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the answers, range from, \" Mother Earth) -> the answers (3731ms)\nWhere is the highest point on earth?\tthe top\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, rank, earth) -> (the top, ranked, Earth & Planetary Sciences department) -> the top (3864ms)\nWhere is the highest point on earth?\tWR 104\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (WR 104, really is pointed at, Earth) -> WR 104 (3789ms)\nWhere is the highest point on earth?\tThe bulge\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (The bulge, to point toward, Earth) -> The bulge (3789ms)\nWhere is the highest point on earth?\tradio jets\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (radio jets, pointed straight at, Earth) -> radio jets (3881ms)\nWhere is the highest point on earth?\tthe spacecraft?s antenna\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the spacecraft?s antenna, was pointed away from, Earth) -> the spacecraft?s antenna (3889ms)\nWhere is the highest point on earth?\tThe NGSLR laser\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (The NGSLR laser, ranges to, Earth-orbiting satellites) -> The NGSLR laser (3006ms)\nWhere is the highest point on earth?\tthe oldest and most beautiful mountain\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (the oldest and most beautiful mountain, ranges on, earth) -> the oldest and most beautiful mountain (3461ms)\nWhere is the highest point on earth?\tEuropeans\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, range, earth) -> (Europeans, ranged, the earth conquering) -> Europeans (3906ms)\nWhere is the highest point on earth?\tthe wettest\t1.333333333333\tWhere is the highest point on earth? -> $x: ($x, point, earth) -> (the wettest, points on, earth) -> the wettest (3889ms)\nWhere is the highest point on earth?\tAbsolute temperature\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (Absolute temperature, is the temperature of, the earth) -> Absolute temperature (3914ms)\nWhere is the highest point on earth?\tany forum\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (any forum, is the current temperature of, the Earth) -> any forum (3914ms)\nWhere is the highest point on earth?\tatmospheric carbon dioxide\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (atmospheric carbon dioxide, is raising the temperature of, Earth) -> atmospheric carbon dioxide (3906ms)\nWhere is the highest point on earth?\tGlobal warming\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (Global warming, is increasing the temperatures of, the Earth) -> Global warming (3914ms)\nWhere is the highest point on earth?\t29.783 km/s\t1.0\tWhere is the highest point on earth? -> $x: ($x, be speed of, earth) -> (29.783 km/s, is the average orbital speed of, the Earth) -> 29.783 km/s (3914ms)\nWhere is the highest point on earth?\tTEarth\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (TEarth, is the mean surface temperature of, Earth) -> TEarth (3914ms)\nWhere is the highest point on earth?\tGPS\t1.0\tWhere is the highest point on earth? -> $x: ($x, be speed of, earth) -> (GPS, is the speeding up of, the earth) -> GPS (3906ms)\nWhere is the highest point on earth?\ta massive solar flare\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (a massive solar flare, are causing the temperature of, the Earth) -> a massive solar flare (3914ms)\nWhere is the highest point on earth?\theat\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (heat, are essential to maintaining the temperature of, the Earth) -> heat (3914ms)\nWhere is the highest point on earth?\tsatellites\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (satellites, are taking the temperature of, the Earth) -> satellites (3914ms)\nWhere is the highest point on earth?\tindustrialization\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (industrialization, is raising the temperature of, the earth) -> industrialization (3914ms)\nWhere is the highest point on earth?\tgreenhouse gases\t1.0\tWhere is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (greenhouse gases, is raising the temperature of, the earth) -> greenhouse gases (3914ms)\nWhere is the highest point on earth?\tThe Dead Sea\t0.8888888888919999\tWhere is the highest point on earth? -> $x: ($x, be lowest point of, earth) -> (The Dead Sea, is the lowest point of, the Earth) -> The Dead Sea (3914ms)\nWhere is the highest point on earth?\tNostrebluc\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (Nostrebluc, is the whole point of, this plant/earth/fire boost) -> Nostrebluc (3921ms)\nWhere is the highest point on earth?\textra packaging\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (extra packaging, is really the point of, Earth Day) -> extra packaging (3914ms)\nWhere is the highest point on earth?\tthe sun\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (the sun, were just a tiny point of, light and Earth) -> the sun (3921ms)\nWhere is the highest point on earth?\tThe body\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (The body, is a sensitized point of, earth) -> The body (3922ms)\nWhere is the highest point on earth?\tthe 'lord\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be highest peak on, earth) -> (the 'lord, is the fourth highest peak on, earth) -> the 'lord (3922ms)\nWhere is the highest point on earth?\tL2\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (L2, is a Lagrange point of, the Earth-Sun system) -> L2 (3914ms)\nWhere is the highest point on earth?\tThe vernal equinox\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (The vernal equinox, is the point of, the earth?s orbit) -> The vernal equinox (3922ms)\nWhere is the highest point on earth?\tlife\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (life, is the point of, this Earth Experiment game) -> life (3921ms)\nWhere is the highest point on earth?\tImagination\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (Imagination, is the whole point of, Middle-Earth) -> Imagination (3922ms)\nWhere is the highest point on earth?\ta simple question\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be highest peak on, earth) -> (a simple question, is the highest peak on, earth) -> a simple question (3922ms)\nWhere is the highest point on earth?\tHarrison Grey Okay\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (Harrison Grey Okay, exactly is the point of, Earth-2) -> Harrison Grey Okay (3922ms)\nWhere is the highest point on earth?\tCarl 3.\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (Carl 3., was the starting point of, the earth) -> Carl 3. (3922ms)\nWhere is the highest point on earth?\teternal salvation\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (eternal salvation, is the point of, this earth life) -> eternal salvation (3921ms)\nWhere is the highest point on earth?\tMount Qumulangma\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be highest peak of, earth) -> (Mount Qumulangma, is the highest peak of, the Earth) -> Mount Qumulangma (3922ms)\nWhere is the highest point on earth?\tchoice\t0.888888888889\tWhere is the highest point on earth? -> $x: ($x, be point of, earth) -> (choice, is the first point of, Earth grounding) -> choice (3921ms)\nWhere is the highest point on earth?\tThe color\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (The color, is a function of, the Earth?s atmosphere) -> The color (3936ms)\nWhere is the highest point on earth?\tThe current record\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, be width of, earth) -> (The current record, is nearly the width of, the Earth) -> The current record (3949ms)\nWhere is the highest point on earth?\ttruth\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (truth, be functioning on, earth) -> truth (3955ms)\nWhere is the highest point on earth?\tSaturn INT-20\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn INT-20, Rocket Function, Low Earth orbit) -> Saturn INT-20 (3955ms)\nWhere is the highest point on earth?\tApril 17 , 2012\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (April 17 , 2012, themed, ?One Earth) -> April 17 , 2012 (3949ms)\nWhere is the highest point on earth?\t20th August\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (20th August, had the theme of, ' One earth) -> 20th August (3949ms)\nWhere is the highest point on earth?\ta solar condition\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, will freeze, earth) -> (a solar condition, will have a freezing influence on, Earth) -> a solar condition (3955ms)\nWhere is the highest point on earth?\tthe Holy Spirit\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (the Holy Spirit, now function on, earth) -> the Holy Spirit (3955ms)\nWhere is the highest point on earth?\tSaturn I\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn I, Rocket Function, Low Earth orbit) -> Saturn I (3929ms)\nWhere is the highest point on earth?\tMission Humans\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Mission Humans, are a function of, the living planet Earth) -> Mission Humans (3943ms)\nWhere is the highest point on earth?\tRighteousness\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Righteousness, shall be the dominant theme of, earth) -> Righteousness (3929ms)\nWhere is the highest point on earth?\tDirty\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Dirty, is the theme for, the 7th annual Piedmont Earth Day Fair) -> Dirty (3943ms)\nWhere is the highest point on earth?\tGod\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (God, function on, the earth) -> God (3955ms)\nWhere is the highest point on earth?\tPolar Satellite Launch Vehicle\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Polar Satellite Launch Vehicle, Rocket Function, Low Earth orbit) -> Polar Satellite Launch Vehicle (3936ms)\nWhere is the highest point on earth?\tTree-planting\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Tree-planting, seems to be a theme of, this Earth Day) -> Tree-planting (3942ms)\nWhere is the highest point on earth?\teach system\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (each system, functions on, Earth) -> each system (3929ms)\nWhere is the highest point on earth?\tSaturn-Shuttle\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn-Shuttle, Rocket Function, Low Earth orbit) -> Saturn-Shuttle (3949ms)\nWhere is the highest point on earth?\tthe Sun\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (the Sun, boiled, Earth) -> the Sun (3936ms)\nWhere is the highest point on earth?\tJack Vance\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Jack Vance, used an identical theme for, The Dying Earth) -> Jack Vance (3936ms)\nWhere is the highest point on earth?\tthe heat\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (the heat, has boiled away, all the Earth?s water) -> the heat (3929ms)\nWhere is the highest point on earth?\tredemption\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (redemption, is functioning on, this earth) -> redemption (3943ms)\nWhere is the highest point on earth?\tEnergia\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Energia, Rocket Function, Low Earth orbit) -> Energia (3929ms)\nWhere is the highest point on earth?\tSaturn V\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn V, Rocket Function, Low Earth orbit) -> Saturn V (3936ms)\nWhere is the highest point on earth?\tbodies\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (bodies, can function on, earth) -> bodies (3929ms)\nWhere is the highest point on earth?\tJesus Christ\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Jesus Christ, did function on, this earth) -> Jesus Christ (3949ms)\nWhere is the highest point on earth?\tThe voyage\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (The voyage, explored the academic theme of, One Earth) -> The voyage (3936ms)\nWhere is the highest point on earth?\tEarth Day 2012\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Earth Day 2012, will explore the theme of, a healthy Earth) -> Earth Day 2012 (3949ms)\nWhere is the highest point on earth?\tgemstone\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (gemstone, serves an energetic function for, the Earth) -> gemstone (3955ms)\nWhere is the highest point on earth?\tEve\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Eve, represents your function in, this earth) -> Eve (3943ms)\nWhere is the highest point on earth?\tthe best way corporations\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (the best way corporations, function everywhere in, the earth) -> the best way corporations (3936ms)\nWhere is the highest point on earth?\tmore and better ways\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (more and better ways, function on, this earth) -> more and better ways (3943ms)\nWhere is the highest point on earth?\tnatural resources\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (natural resources, was the theme of, the 1992 Earth Summit) -> natural resources (3936ms)\nWhere is the highest point on earth?\tThe latter\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (The latter, boils down to, earth) -> The latter (3955ms)\nWhere is the highest point on earth?\tnetworks\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (networks, will be an essential theme of, EarthCube) -> networks (3936ms)\nWhere is the highest point on earth?\thuge solar flares\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (huge solar flares, boiled, the Earth) -> huge solar flares (3929ms)\nWhere is the highest point on earth?\tthe body\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (the body, normally function on, Earth) -> the body (3955ms)\nWhere is the highest point on earth?\tvarious little ponds\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (various little ponds, were then boiling naturally in, the earth) -> various little ponds (3955ms)\nWhere is the highest point on earth?\tno business\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (no business, being a festering boil on, the earth) -> no business (3943ms)\nWhere is the highest point on earth?\tSAGES - Scottish Alliance for Geoscience, Environment and Society\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (SAGES - Scottish Alliance for Geoscience, Environment and Society, Themes, SAGES Centre for Earth System Dynamics) -> SAGES - Scottish Alliance for Geoscience, Environment and Society (3949ms)\nWhere is the highest point on earth?\tIndus\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Indus, highlighted the theme of, Earth Day 2010) -> Indus (3949ms)\nWhere is the highest point on earth?\tGreen generation\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Green generation, is the global theme for, Earth day) -> Green generation (3936ms)\nWhere is the highest point on earth?\tthe Kingdom\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (the Kingdom, would function upon, earth) -> the Kingdom (3943ms)\nWhere is the highest point on earth?\tVoskhod\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Voskhod, Rocket Function, Low Earth orbit) -> Voskhod (3949ms)\nWhere is the highest point on earth?\twater\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (water, to boil, the Earth 's tides) -> water (3929ms)\nWhere is the highest point on earth?\tGreen? ?\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Green? ?, is the theme for, Earth) -> Green? ? (3955ms)\nWhere is the highest point on earth?\tSpiritual ecology\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Spiritual ecology, is the theme of, the Earth Vision project) -> Spiritual ecology (3943ms)\nWhere is the highest point on earth?\tThe creatures\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (The creatures, could only function on, earth) -> The creatures (3960ms)\nWhere is the highest point on earth?\tInvestment\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Investment, is a central theme in, Earth Day 2000) -> Investment (3929ms)\nWhere is the highest point on earth?\t2001 National Land Cover Data metadata\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (2001 National Land Cover Data metadata, Theme keyword(s), Earth remote sensing) -> 2001 National Land Cover Data metadata (3943ms)\nWhere is the highest point on earth?\tTrams\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Trams, would function as, Earth-friendly public transportation) -> Trams (3949ms)\nWhere is the highest point on earth?\tan Earth analog environment\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (an Earth analog environment, functions here on, Earth) -> an Earth analog environment (3936ms)\nWhere is the highest point on earth?\tEnvisat\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Envisat, functioning properly, earth observation satellite) -> Envisat (3929ms)\nWhere is the highest point on earth?\tthe links\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (the links, functioned properly for, Google Earth integration) -> the links (3929ms)\nWhere is the highest point on earth?\tThe life-support\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (The life-support, functions of, earth) -> The life-support (3929ms)\nWhere is the highest point on earth?\tthe planet\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, be width of, earth) -> (the planet, is the width of, two to three Earths) -> the planet (3943ms)\nWhere is the highest point on earth?\tthe way gravity\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (the way gravity, functions on, Earth) -> the way gravity (3943ms)\nWhere is the highest point on earth?\tthe same attractive force\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (the same attractive force, functioned also on, earth) -> the same attractive force (3943ms)\nWhere is the highest point on earth?\tEarth Day Network\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Earth Day Network, has set the theme for, Earth Day 2012) -> Earth Day Network (3936ms)\nWhere is the highest point on earth?\tThe church\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (The church, function on, earth) -> The church (3955ms)\nWhere is the highest point on earth?\tHuman Means\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Human Means, would be the theme in, todays earth) -> Human Means (3955ms)\nWhere is the highest point on earth?\tFight As One\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Fight As One, Theme Song For, The Avengers: Earth's Mightiest Heroes) -> Fight As One (3929ms)\nWhere is the highest point on earth?\tEgo\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (Ego, is the theme of, A New Earth) -> Ego (3936ms)\nWhere is the highest point on earth?\tthe atmosphere\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (the atmosphere, would boil off, the Earth) -> the atmosphere (3949ms)\nWhere is the highest point on earth?\tspecies extinction\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (species extinction, alter the function of, Earth) -> species extinction (3929ms)\nWhere is the highest point on earth?\ta radar pulse\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (a radar pulse, is primarily a function of, earth conductivity) -> a radar pulse (3949ms)\nWhere is the highest point on earth?\tWorld Culture\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (World Culture, Dolls with this theme, Spirit of the Earth Barbie) -> World Culture (3955ms)\nWhere is the highest point on earth?\tthe shadow\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, be width of, earth) -> (the shadow, was also the width of, the Earth) -> the shadow (3929ms)\nWhere is the highest point on earth?\tideas\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (ideas, echoed Westwood?s political theme of, Earth Mother) -> ideas (3943ms)\nWhere is the highest point on earth?\tsmelling , tasting and touching\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (smelling , tasting and touching, are functions of, Earth) -> smelling , tasting and touching (3936ms)\nWhere is the highest point on earth?\tSaturn IB\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn IB, Rocket Function, Low Earth orbit) -> Saturn IB (3955ms)\nWhere is the highest point on earth?\tBeauty improvements\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (Beauty improvements, improve the function of, Google Earth) -> Beauty improvements (3943ms)\nWhere is the highest point on earth?\tNew\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (New, functions available in, EarthMediaCenter ? WebCam 1.5) -> New (3943ms)\nWhere is the highest point on earth?\tThe 2009 campaign\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, theme, earth) -> (The 2009 campaign, is themed around, ?Vote Earth?) -> The 2009 campaign (3955ms)\nWhere is the highest point on earth?\tEvil\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, boil, earth) -> (Evil, boiled out of, Earth-Spine) -> Evil (3949ms)\nWhere is the highest point on earth?\tthe very way human beings\t0.777777777781\tWhere is the highest point on earth? -> $x: ($x, function, earth) -> (the very way human beings, function on, this earth) -> the very way human beings (3949ms)\nWhere is the highest point on earth?\tthe students\t0.7777777777789999\tWhere is the highest point on earth? -> $x: ($x, be highest point in, world) -> (the students, is the highest point in, the world) -> the students (3960ms)\nWhere is the highest point on earth?\tthe tallest\t0.7777777777789999\tWhere is the highest point on earth? -> $x: ($x, be highest point in, world) -> (the tallest, will be the highest point in, the World) -> the tallest (3960ms)\nWhere is the highest point on earth?\tKilimanjaro\t0.7777777777789999\tWhere is the highest point on earth? -> $x: ($x, be highest point in, world) -> (Kilimanjaro, is also the highest point in, the world) -> Kilimanjaro (3960ms)\nWhere is the highest point on earth?\tThe summit\t0.7777777777789999\tWhere is the highest point on earth? -> $x: ($x, be highest point in, world) -> (The summit, is the highest point in, the world) -> The summit (3960ms)\nWhere is the highest point on earth?\tAconcagua\t0.7777777777789999\tWhere is the highest point on earth? -> $x: ($x, be highest point in, world) -> (Aconcagua, is the highest point in, the world) -> Aconcagua (3960ms)\nWhere is the highest point on earth?\tthe highest peak\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the highest peak, is the eighth highest mountain in, the world) -> the highest peak (3970ms)\nWhere is the highest point on earth?\t4 Mount Everest\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (4 Mount Everest, is the highest mountain in, the world) -> 4 Mount Everest (3984ms)\nWhere is the highest point on earth?\tMissouri\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Missouri, was probably the highest mountain in, the world) -> Missouri (3970ms)\nWhere is the highest point on earth?\tKhangchendzonga\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Khangchendzonga, is the third highest mountain in, the world) -> Khangchendzonga (3984ms)\nWhere is the highest point on earth?\tBroad Peak\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Broad Peak, is the 12th highest mountain in, the world) -> Broad Peak (3985ms)\nWhere is the highest point on earth?\t8,516m\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8,516m, is the fourth highest mountain in, the world) -> 8,516m (3980ms)\nWhere is the highest point on earth?\tLhotse\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Lhotse, is the fourth highest mountain in, the world) -> Lhotse (3970ms)\nWhere is the highest point on earth?\tDhaulagiri\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Dhaulagiri, is the sixth highest mountain in, the world) -> Dhaulagiri (3985ms)\nWhere is the highest point on earth?\t8,201m Cho Oyu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8,201m Cho Oyu, is the sixth highest mountain in, the world) -> 8,201m Cho Oyu (3984ms)\nWhere is the highest point on earth?\tMedeo\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Medeo, is the highest mountain range in, the world) -> Medeo (3960ms)\nWhere is the highest point on earth?\tSikkim\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Sikkim, is the third highest mountain in, the world) -> Sikkim (3970ms)\nWhere is the highest point on earth?\t8,586m Kanchenjunga\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8,586m Kanchenjunga, is the third highest mountain in, the world) -> 8,586m Kanchenjunga (3980ms)\nWhere is the highest point on earth?\tmountain\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (mountain, is the ninth-highest mountain in, the world) -> mountain (3970ms)\nWhere is the highest point on earth?\tsight\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (sight, are the highest mountains in, the world) -> sight (3960ms)\nWhere is the highest point on earth?\tStrenuous Makalu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Strenuous Makalu, is the fifth highest mountain in, the world) -> Strenuous Makalu (3980ms)\nWhere is the highest point on earth?\tCho-Oyu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Cho-Oyu, is the sixth highest mountain in, the world) -> Cho-Oyu (3984ms)\nWhere is the highest point on earth?\t598 mtrs\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (598 mtrs, is third highest mountain in, the world) -> 598 mtrs (3975ms)\nWhere is the highest point on earth?\tManaslu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Manaslu, is the eighth highest mountain in, the world) -> Manaslu (3984ms)\nWhere is the highest point on earth?\t10 days Annapurna\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (10 days Annapurna, is the 10th highest mountain in, the world) -> 10 days Annapurna (3970ms)\nWhere is the highest point on earth?\tthe border\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the border, is the highest mountain in, the world) -> the border (3960ms)\nWhere is the highest point on earth?\tChina\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (China, is the highest mountain in, the world) -> China (3970ms)\nWhere is the highest point on earth?\t8167 meters\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8167 meters, is 7th highest mountain in, the world) -> 8167 meters (3965ms)\nWhere is the highest point on earth?\t26,795 feet\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (26,795 feet, is the sixth highest mountain in, the world) -> 26,795 feet (3965ms)\nWhere is the highest point on earth?\tthe Gorkha massif\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the Gorkha massif, is the eighth highest mountain in, the world) -> the Gorkha massif (3970ms)\nWhere is the highest point on earth?\tKanchenjunga 8586m\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Kanchenjunga 8586m, is the third highest mountain in, the world) -> Kanchenjunga 8586m (3980ms)\nWhere is the highest point on earth?\tKanchanjunga\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Kanchanjunga, is the third highest mountain in, the world) -> Kanchanjunga (3984ms)\nWhere is the highest point on earth?\ttwo countries\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (two countries, is the third-highest mountain in, the world) -> two countries (3965ms)\nWhere is the highest point on earth?\tpeaks\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (peaks, is the highest mountain in, the world) -> peaks (3984ms)\nWhere is the highest point on earth?\tNepal Manaslu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Nepal Manaslu, is the eighth highest mountain in, the world) -> Nepal Manaslu (3960ms)\nWhere is the highest point on earth?\tthe Peak XV\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the Peak XV, is the highest mountain in, the world) -> the Peak XV (3980ms)\nWhere is the highest point on earth?\tTingri County\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Tingri County, is the highest mountain in, the world) -> Tingri County (3965ms)\nWhere is the highest point on earth?\tK2\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (K2, is the second highest mountain in, the world) -> K2 (3975ms)\nWhere is the highest point on earth?\tsnow ?\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (snow ?, is the highest mountain range in, the world) -> snow ? (3965ms)\nWhere is the highest point on earth?\tSanta Marta\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Santa Marta, is the highest coastal mountain range in, the world) -> Santa Marta (3985ms)\nWhere is the highest point on earth?\tNepal\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Nepal, is the seventh highest mountain in, the world) -> Nepal (3990ms)\nWhere is the highest point on earth?\tuser\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (user, is the highest mountain in, the world) -> user (3965ms)\nWhere is the highest point on earth?\tMakalu Makalu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Makalu Makalu, is the fifth highest mountain in, the world) -> Makalu Makalu (3975ms)\nWhere is the highest point on earth?\tNanga Parbat\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Nanga Parbat, is the ninth highest mountain in, the world) -> Nanga Parbat (3975ms)\nWhere is the highest point on earth?\tShishapangma\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Shishapangma, is the 14th highest mountain in, the world) -> Shishapangma (3975ms)\nWhere is the highest point on earth?\tThe Khumbu Valley\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The Khumbu Valley, is the highest mountain in, the world) -> The Khumbu Valley (3970ms)\nWhere is the highest point on earth?\tThe mighty\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The mighty, is the highest mountains in, the world) -> The mighty (3980ms)\nWhere is the highest point on earth?\t?Mountain\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (?Mountain, is the eighth highest mountain in, the world) -> ?Mountain (3970ms)\nWhere is the highest point on earth?\tCho Oyu Cho Oyu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Cho Oyu Cho Oyu, is the sixth highest mountain in, the world) -> Cho Oyu Cho Oyu (3960ms)\nWhere is the highest point on earth?\tThe Himalayas\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The Himalayas, are the highest mountain range in, the world) -> The Himalayas (3984ms)\nWhere is the highest point on earth?\tMakalu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Makalu, is the fifth highest mountain in, the world) -> Makalu (3965ms)\nWhere is the highest point on earth?\tThe Sierra Nevada\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The Sierra Nevada, is the highest coastal mountain in, the world) -> The Sierra Nevada (3975ms)\nWhere is the highest point on earth?\tMauna Kea\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Mauna Kea, is the highest mountain in, the world) -> Mauna Kea (3980ms)\nWhere is the highest point on earth?\tthe Andes\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the Andes, are the highest mountains in, the world) -> the Andes (3990ms)\nWhere is the highest point on earth?\tThe Andes\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The Andes, is the second highest mountain range in, the world) -> The Andes (3970ms)\nWhere is the highest point on earth?\tEverest Mount Everest\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Everest Mount Everest, is the highest mountain in, the world) -> Everest Mount Everest (3984ms)\nWhere is the highest point on earth?\tLamlam\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Lamlam, is arguably the highest mountain in, the world) -> Lamlam (3975ms)\nWhere is the highest point on earth?\tMay Mount Everest\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (May Mount Everest, is the highest mountain in, the world) -> May Mount Everest (3965ms)\nWhere is the highest point on earth?\tKangchenjunga\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Kangchenjunga, is the third highest mountain in, the world) -> Kangchenjunga (3975ms)\nWhere is the highest point on earth?\tCho Oyu\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Cho Oyu, is the sixth highest mountain in, the world) -> Cho Oyu (3980ms)\nWhere is the highest point on earth?\tKanchenjunga\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Kanchenjunga, is the third highest mountain in, the world) -> Kanchenjunga (3980ms)\nWhere is the highest point on earth?\tThe versoplane\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, universe) -> (The versoplane, is the highest mountain in, our unital universe) -> The versoplane (3970ms)\nWhere is the highest point on earth?\tMount Dhaulagiri\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Mount Dhaulagiri, is the seventh highest mountain in, the world) -> Mount Dhaulagiri (3975ms)\nWhere is the highest point on earth?\t8848\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8848, is the highest mountain in, the world) -> 8848 (3975ms)\nWhere is the highest point on earth?\tKarjiang\t0.6666666666650001\tWhere is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Karjiang, is the fourth highest unclimbed mountain in, the world) -> Karjiang (3980ms)\nWhere is the highest point on earth?\t6,960 meters\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (6,960 meters, is the highest peak in, the world) -> 6,960 meters (3996ms)\nWhere is the highest point on earth?\tArgentina\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Argentina, is the highest peak in, the world) -> Argentina (3990ms)\nWhere is the highest point on earth?\t8848 meters\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (8848 meters, is the highest peak in, the world) -> 8848 meters (3996ms)\nWhere is the highest point on earth?\tStraight\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Straight, ahead is the third highest peak in, the world) -> Straight (3996ms)\nWhere is the highest point on earth?\tNamjagbarwa\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Namjagbarwa, is the fifteenth highest peak in, the world) -> Namjagbarwa (3996ms)\nWhere is the highest point on earth?\t8163m\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (8163m, is the 8th highest peak in, the world) -> 8163m (3996ms)\nWhere is the highest point on earth?\tMasherbrum\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Masherbrum, is the 22nd highest peak in, the world) -> Masherbrum (4000ms)\nWhere is the highest point on earth?\t8,611 meters\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (8,611 meters, is the second highest peak in, the world) -> 8,611 meters (4000ms)\nWhere is the highest point on earth?\tGoddess Third\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Goddess Third, is the highest peak in, the world) -> Goddess Third (3990ms)\nWhere is the highest point on earth?\tthe Universe\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (the Universe, is the highest peak in, the world) -> the Universe (4000ms)\nWhere is the highest point on earth?\tthe main peak\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (the main peak, is the highest peak in, the world) -> the main peak (4000ms)\nWhere is the highest point on earth?\t1955 Lhotse\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (1955 Lhotse, was the highest unclimbed peak in, the world) -> 1955 Lhotse (4000ms)\nWhere is the highest point on earth?\t?Mt Everest\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (?Mt Everest, is the highest peak in, the world) -> ?Mt Everest (3996ms)\nWhere is the highest point on earth?\t?Mt Everest\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (?Mt Everest, is the highest peak in, the world) -> ?Mt Everest (3996ms)\nWhere is the highest point on earth?\t8848m Mount Everest\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (8848m Mount Everest, is the highest peak in, the world) -> 8848m Mount Everest (4000ms)\nWhere is the highest point on earth?\tthe mighty Kanchenjunga\t0.555555555555\tWhere is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (the mighty Kanchenjunga, is the third highest peak in, the world) -> the mighty Kanchenjunga (4000ms)\nWhere is the highest point on earth?\tLogan Pass\t0.444444444444\tWhere is the highest point on earth? -> $x: ($x, be highest point on, the sun) -> (Logan Pass, is the highest point on, the Going-to-the Sun Road) -> Logan Pass (4008ms)\nWhen was Hiroshima bombed?\ta less recent one\t0.5555555555530001\tWhen was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (a less recent one, was the bombing of, Hiroshima and Nagasaki) -> a less recent one (1102ms)\nWhen was Hiroshima bombed?\ta Sophie?s choice\t0.5555555555530001\tWhen was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (a Sophie?s choice, is the bombing of, Hiroshima) -> a Sophie?s choice (1102ms)\nWhen was Hiroshima bombed?\thuman DNA fragments\t0.5555555555530001\tWhen was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (human DNA fragments, was the bombing of, Nagasaki and Hiroshima) -> human DNA fragments (1103ms)\nWhen was Hiroshima bombed?\tdegree\t0.5555555555530001\tWhen was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (degree, was the bombing of, Hiroshima) -> degree (1102ms)\nWhen was Hiroshima bombed?\tKyoto\t0.5555555555530001\tWhen was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (Kyoto, would probably have been bombed instead of, Hiroshima) -> Kyoto (1102ms)\nWhen was Hiroshima bombed?\tThe A-bomb\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (The A-bomb, happened to, Hiroshima?) -> The A-bomb (1230ms)\nWhen was Hiroshima bombed?\tinquiry\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (inquiry, happened to, Hiroshima) -> inquiry (1230ms)\nWhen was Hiroshima bombed?\tthe reality\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (the reality, happened to, Hiroshima) -> the reality (1102ms)\nWhen was Hiroshima bombed?\t6 August\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (6 August, happened to be, Hiroshima Day) -> 6 August (1230ms)\nWhen was Hiroshima bombed?\tbasically a museum\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (basically a museum, happened to, Hiroshima city) -> basically a museum (1230ms)\nWhen was Hiroshima bombed?\tYamaguchi\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (Yamaguchi, happened to be in, Hiroshima) -> Yamaguchi (1230ms)\nWhen was Hiroshima bombed?\tthe international community\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (the international community, happened to, Hiroshima and Nagasaki) -> the international community (1230ms)\nWhen was Hiroshima bombed?\tthe first non-Japanese doctor\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (the first non-Japanese doctor, had happened to, Hiroshima) -> the first non-Japanese doctor (1230ms)\nWhen was Hiroshima bombed?\tThe Tokyo bombing\t0.333333333332\tWhen was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (The Tokyo bombing, happened several months prior to, Hiroshima) -> The Tokyo bombing (1102ms)\nWhen was Hiroshima bombed?\tFill\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (Fill, get, Hiroshima) -> Fill (1310ms)\nWhen was Hiroshima bombed?\tLittle Hiroshima I?ve\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (Little Hiroshima I?ve, got, my own little Hiroshima right) -> Little Hiroshima I?ve (1310ms)\nWhen was Hiroshima bombed?\twomen\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (women, got in, Hiroshima and Nagasaki) -> women (1310ms)\nWhen was Hiroshima bombed?\tMadeline\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (Madeline, got a cool set of, Hiroshima-themed colorforms) -> Madeline (1310ms)\nWhen was Hiroshima bombed?\tthe first round Breton\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (the first round Breton, got beaten by, Hiroshima) -> the first round Breton (1230ms)\nWhen was Hiroshima bombed?\ti cant\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (i cant, get hit by, the Hiroshima bomb) -> i cant (1310ms)\nWhen was Hiroshima bombed?\tthe 1st floor\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (the 1st floor, get off at, the Hiroshima Bus Center) -> the 1st floor (1311ms)\nWhen was Hiroshima bombed?\tNomura\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (Nomura, played a key role in getting, Hiroshima) -> Nomura (1310ms)\nWhen was Hiroshima bombed?\tstudents\t0.22222222222\tWhen was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (students, get to visit, Hiroshima) -> students (1311ms)\nWhen was Hiroshima bombed?\tthe Atom Bomb\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (the Atom Bomb, had been dropped on, Hiroshima) -> the Atom Bomb (1866ms)\nWhen was Hiroshima bombed?\tAkitakata\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Akitakata, Contained by, Hiroshima Prefecture) -> Akitakata (2784ms)\nWhen was Hiroshima bombed?\trad\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (rad, are higher in, Hiroshima) -> rad (2908ms)\nWhen was Hiroshima bombed?\tthe connection\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (the connection, is, Hiroshima) -> the connection (1865ms)\nWhen was Hiroshima bombed?\tthe local heroes\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (the local heroes, are in here in, Hiroshima) -> the local heroes (2784ms)\nWhen was Hiroshima bombed?\tNo More Hiroshima\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (No More Hiroshima, can be found on Wikipedia at, http://en.wikipedia.org/wiki/No%20More%20Hiroshima) -> No More Hiroshima (2784ms)\nWhen was Hiroshima bombed?\tThe primary target\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (The primary target, was, Hiroshima) -> The primary target (1865ms)\nWhen was Hiroshima bombed?\tthe Olympics\t0.111111111111\tWhen was Hiroshima bombed? -> $x: (hiroshima, be for, $x) -> (Kieta Hiroshima, is an athlete aiming for, the Olympics) -> the Olympics (2907ms)\nWhen was Hiroshima bombed?\tMazda\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (Mazda, is headquartered in, Hiroshima) -> Mazda (2711ms)\nWhen was Hiroshima bombed?\tHiroshima Institute of Technology\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Hiroshima Institute of Technology, Contained by, Hiroshima) -> Hiroshima Institute of Technology (2367ms)\nWhen was Hiroshima bombed?\tSaeki-ku, Hiroshima\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Saeki-ku, Hiroshima, Contains, Hiroshima Institute of Technology) -> Saeki-ku, Hiroshima (2367ms)\nWhen was Hiroshima bombed?\tCh?goku region\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Ch?goku region, Contains, Hiroshima Prefecture) -> Ch?goku region (2367ms)\nWhen was Hiroshima bombed?\tNishi-ku, Hiroshima\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Nishi-ku, Hiroshima, Contains, Hiroshima Sun Plaza) -> Nishi-ku, Hiroshima (2711ms)\nWhen was Hiroshima bombed?\tJapan vacations\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (Japan vacations, Find, the best Hiroshima hotels) -> Japan vacations (1865ms)\nWhen was Hiroshima bombed?\tThe lively chef-owner\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (The lively chef-owner, is from, Hiroshima) -> The lively chef-owner (2784ms)\nWhen was Hiroshima bombed?\tan Academy Award\t0.111111111111\tWhen was Hiroshima bombed? -> $x: (hiroshima, be for, $x) -> (Hiroshima, was nominated for, an Academy Award) -> an Academy Award (2907ms)\nWhen was Hiroshima bombed?\tnuclear holocaust\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (nuclear holocaust, were, Hiroshima) -> nuclear holocaust (1865ms)\nWhen was Hiroshima bombed?\tHiroshima Jogakuin University\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (Hiroshima Jogakuin University, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Hiroshima%20Jogakuin%20University) -> Hiroshima Jogakuin University (1865ms)\nWhen was Hiroshima bombed?\tteaching\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (teaching, will be done in, Hiroshima) -> teaching (2711ms)\nWhen was Hiroshima bombed?\tthe cumulative effect\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (the cumulative effect, is, Hiroshima) -> the cumulative effect (2908ms)\nWhen was Hiroshima bombed?\tmore than\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, kill, hiroshima) -> (more than, were killed in, Hiroshima) -> more than (2907ms)\nWhen was Hiroshima bombed?\trecent estimates\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, kill, hiroshima) -> (recent estimates, were killed in, Hiroshima) -> recent estimates (2784ms)\nWhen was Hiroshima bombed?\tIngrid van Houten-Groeneveld\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, discover, hiroshima) -> (Ingrid van Houten-Groeneveld, Astronomical objects discovered, 2247 Hiroshima) -> Ingrid van Houten-Groeneveld (2784ms)\nWhen was Hiroshima bombed?\tHiroshima\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Hiroshima, Contains, Hiroshima Jogakuin University) -> Hiroshima (2367ms)\nWhen was Hiroshima bombed?\tThe target\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (The target, was, Hiroshima) -> The target (2907ms)\nWhen was Hiroshima bombed?\tTsutomu Yamaguchi\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (Tsutomu Yamaguchi, was in, Hiroshima) -> Tsutomu Yamaguchi (2907ms)\nWhen was Hiroshima bombed?\tHijiyama University\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Hijiyama University, Contained by, Hiroshima) -> Hijiyama University (2711ms)\nWhen was Hiroshima bombed?\tONOMICHI\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (ONOMICHI, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Onomichi,%20Hiroshima) -> ONOMICHI (2367ms)\nWhen was Hiroshima bombed?\tHydrogen Bombs\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (Hydrogen Bombs, was organized in, Hiroshima) -> Hydrogen Bombs (2784ms)\nWhen was Hiroshima bombed?\tHiroshima Peace Memorial Ceremony\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (Hiroshima Peace Memorial Ceremony, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Hiroshima%20Peace%20Memorial%20Ceremony) -> Hiroshima Peace Memorial Ceremony (1865ms)\nWhen was Hiroshima bombed?\tthe settlement\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (the settlement, was renamed, Hiroshima) -> the settlement (2711ms)\nWhen was Hiroshima bombed?\tthe soul-searching\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, event, hiroshima) -> (the soul-searching, followed the event in, Hiroshima) -> the soul-searching (1866ms)\nWhen was Hiroshima bombed?\tJapan\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Japan, Contains, Hiroshima Peace Memorial Museum) -> Japan (2784ms)\nWhen was Hiroshima bombed?\t28 years\t0.111111111111\tWhen was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (28 years, is very famous in, Hiroshima) -> 28 years (2711ms)\nWhen was Hiroshima bombed?\tone moment\t0.111111111111\tWhen was Hiroshima bombed? -> $x: (hiroshima, be for, $x) -> (Hiroshima, is famous for, one moment) -> one moment (2907ms)\nWhat are pomegranates?\ta dream\t-0.6666666666669999\tWhat are pomegranates? -> $x: ($x, cause, pomegranate) -> (a dream, caused by, the flight of a bee around a pomegranate) -> a dream (1424ms)\nWhat are pomegranates?\tthe superbug MRSA\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the superbug MRSA, could be found in, the pomegranate) -> the superbug MRSA (2425ms)\nWhat are pomegranates?\tGardein\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Gardein, marinated in, Pomegranate Molasses) -> Gardein (2663ms)\nWhat are pomegranates?\tPomegranate Cooler Method\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Pomegranate Cooler Method, throw in, some pomegranate seeds) -> Pomegranate Cooler Method (4188ms)\nWhat are pomegranates?\tthe different themes\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the different themes, explored in, Pomegranates) -> the different themes (1637ms)\nWhat are pomegranates?\tthe bittern\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the bittern, also shall pass the night in, the pomegranates) -> the bittern (4269ms)\nWhat are pomegranates?\tthe many antioxidants\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the many antioxidants, can be found in, pomegranates) -> the many antioxidants (2425ms)\nWhat are pomegranates?\tserving and\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (serving and, stir in, the pomegranates seeds) -> serving and (4269ms)\nWhat are pomegranates?\tThree Views\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Three Views, appeared in, The Pomegranate) -> Three Views (2840ms)\nWhat are pomegranates?\tthe compounds\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the compounds, found in, pomegranates) -> the compounds (3797ms)\nWhat are pomegranates?\ta razor blade\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (a razor blade, dipped in, pomegranate juice) -> a razor blade (2840ms)\nWhat are pomegranates?\t12-ounce\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (12-ounce, come in, Raspberry Pomegranate) -> 12-ounce (1637ms)\nWhat are pomegranates?\tThe phytochemicals\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (The phytochemicals, found in, pomegranates) -> The phytochemicals (3797ms)\nWhat are pomegranates?\tmuch Vitamin K\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (much Vitamin K, is in, pomegranates) -> much Vitamin K (3797ms)\nWhat are pomegranates?\tWorld of Darkness\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (World of Darkness, Works in this series, Pomegranates Full and Fine) -> World of Darkness (3838ms)\nWhat are pomegranates?\thand\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (hand, painted in, a colorful pomegranate motif) -> hand (3838ms)\nWhat are pomegranates?\tellagic acid\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (ellagic acid, found in, pomegranates) -> ellagic acid (4269ms)\nWhat are pomegranates?\tthe sugars\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the sugars, found in, pomegranate juice) -> the sugars (2840ms)\nWhat are pomegranates?\tgolden raisins\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (golden raisins, tossed in, a unique Pomegranate Vinaigrette) -> golden raisins (2840ms)\nWhat are pomegranates?\tThe 2010 holiday collection\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (The 2010 holiday collection, came in, Pomegranate & Cranberries) -> The 2010 holiday collection (4188ms)\nWhat are pomegranates?\tPomegranate fruit\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Pomegranate fruit, is also high in, vitamin C. One pomegranate) -> Pomegranate fruit (1637ms)\nWhat are pomegranates?\tblood flow to the heart\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (blood flow to the heart, improved in, the pomegranate group) -> blood flow to the heart (1637ms)\nWhat are pomegranates?\tthe ingredients\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the ingredients, contained in, pomegranate) -> the ingredients (1636ms)\nWhat are pomegranates?\tEllagic Acid\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Ellagic Acid, found in, raspberries and pomegranates) -> Ellagic Acid (2769ms)\nWhat are pomegranates?\tSpeculative fiction\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Speculative fiction, Books In This Genre, Pomegranates Full and Fine) -> Speculative fiction (3597ms)\nWhat are pomegranates?\tthe heart and blood vessels\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the heart and blood vessels, as do similar ones in, pomegranates) -> the heart and blood vessels (1425ms)\nWhat are pomegranates?\tAn acid\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (An acid, found in, pomegranates) -> An acid (2769ms)\nWhat are pomegranates?\tMethod\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Method, dissolve sugar in, pomegranate juice) -> Method (2425ms)\nWhat are pomegranates?\tthe polyphenols\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the polyphenols, contained in, pomegranate) -> the polyphenols (3797ms)\nWhat are pomegranates?\tOlay Beauty\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Olay Beauty, is available in, Pomegranate Splash) -> Olay Beauty (3797ms)\nWhat are pomegranates?\tRefreshers\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Refreshers, come in, Raspberry Pomegranate) -> Refreshers (3797ms)\nWhat are pomegranates?\tThe Pasta Shop\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (The Pasta Shop, is marinated in, pomegranate molasses) -> The Pasta Shop (2663ms)\nWhat are pomegranates?\tthe hydroxylated polyphenols\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the hydroxylated polyphenols, found in, one fresh pomegranate) -> the hydroxylated polyphenols (2769ms)\nWhat are pomegranates?\tbeverages\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (beverages, are available in, Raspberry Pomegranate) -> beverages (2663ms)\nWhat are pomegranates?\tnutrients\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (nutrients, found in, online organic pomegranate) -> nutrients (2663ms)\nWhat are pomegranates?\tKnow someone else\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Know someone else, might be interested in, the Pomegranates) -> Know someone else (2425ms)\nWhat are pomegranates?\tCook\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Cook, toss in, some pomegranate seeds) -> Cook (4269ms)\nWhat are pomegranates?\tpunicalagins\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (punicalagins, also found in, pomegranate benefit arterial health) -> punicalagins (3838ms)\nWhat are pomegranates?\thealth benefits\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (health benefits, are seeing in, pomegranate juice) -> health benefits (1424ms)\nWhat are pomegranates?\tThe seeds\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (The seeds, contained in, the pomegranate) -> The seeds (2425ms)\nWhat are pomegranates?\tthe many seeds\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the many seeds, found in, pomegranate fruits) -> the many seeds (4188ms)\nWhat are pomegranates?\tthe main free-radical scavengers\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the main free-radical scavengers, found in, pomegranates) -> the main free-radical scavengers (3797ms)\nWhat are pomegranates?\ta compass\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (a compass, rose in, fess two pomegranates) -> a compass (1425ms)\nWhat are pomegranates?\tthe antioxidants\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the antioxidants, really are in, Wonderful pomegranates) -> the antioxidants (3838ms)\nWhat are pomegranates?\tphytochemicals\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (phytochemicals, found in, abundance in pomegranates) -> phytochemicals (1637ms)\nWhat are pomegranates?\treligion\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (religion, has published in, The Pomegranate) -> religion (2840ms)\nWhat are pomegranates?\tMexicans\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Mexicans, take especial pride in, the pomegranates) -> Mexicans (3838ms)\nWhat are pomegranates?\ta day Ellagic acid\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (a day Ellagic acid, is found in, raspberries and pomegranates) -> a day Ellagic acid (1637ms)\nWhat are pomegranates?\ta phytochemical\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (a phytochemical, found in, pomegranate) -> a phytochemical (1424ms)\nWhat are pomegranates?\t1/4 cup lime juice\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (1/4 cup lime juice, then fold in, pomegranate seeds) -> 1/4 cup lime juice (2840ms)\nWhat are pomegranates?\tthe cancer-inhibiting anti-oxidants\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the cancer-inhibiting anti-oxidants, found in, pomegranate seeds) -> the cancer-inhibiting anti-oxidants (3838ms)\nWhat are pomegranates?\tnatural relief\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (natural relief, may lie in, the pomegranate) -> natural relief (4187ms)\nWhat are pomegranates?\tThe antioxidant\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (The antioxidant, found in, Pomegranate) -> The antioxidant (2769ms)\nWhat are pomegranates?\tthe natural pomegranate flavor\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the natural pomegranate flavor, found in, XOOD Pomegranate) -> the natural pomegranate flavor (2663ms)\nWhat are pomegranates?\tpolyphenols\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (polyphenols, found in, Pomegranate) -> polyphenols (2425ms)\nWhat are pomegranates?\tStudies\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Studies, found in, pomegranates and raspberries) -> Studies (1636ms)\nWhat are pomegranates?\tThe researchers\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (The researchers, compounds found in, pomegranate juice) -> The researchers (2769ms)\nWhat are pomegranates?\tcardio-protective antioxidants\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (cardio-protective antioxidants, found in, pomegranate) -> cardio-protective antioxidants (4187ms)\nWhat are pomegranates?\tSalmon\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Salmon, marinated in, pomegranate molasses) -> Salmon (1425ms)\nWhat are pomegranates?\tthe Pork\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the Pork, braised in, Pomegranate Juice) -> the Pork (2840ms)\nWhat are pomegranates?\teating antioxidants\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (eating antioxidants, found in, pomegranates) -> eating antioxidants (4269ms)\nWhat are pomegranates?\tThe short-sleeve shirt\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (The short-sleeve shirt, is available in, pomegranate) -> The short-sleeve shirt (3797ms)\nWhat are pomegranates?\tEllagic acid\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Ellagic acid, is a phenolic compound present in, pomegranates) -> Ellagic acid (3838ms)\nWhat are pomegranates?\tMSRP\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (MSRP, is shown in, the Pomegranate decor) -> MSRP (4188ms)\nWhat are pomegranates?\tthe most important nutrlent\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the most important nutrlent, found in, pomegranates) -> the most important nutrlent (3597ms)\nWhat are pomegranates?\tBO'HEN\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (BO'HEN, must clearly mean \"in, the pomegranates) -> BO'HEN (2840ms)\nWhat are pomegranates?\tresveratrol\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (resveratrol, is also found in, grapes and pomegranates) -> resveratrol (2425ms)\nWhat are pomegranates?\tOne particular substance\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (One particular substance, found in, pomegranates) -> One particular substance (3597ms)\nWhat are pomegranates?\tan image\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (an image, stamped in, Purely Pomegranate) -> an image (3838ms)\nWhat are pomegranates?\tlamb or chicken kebab\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (lamb or chicken kebab, covered in, pomegranate molasses) -> lamb or chicken kebab (2663ms)\nWhat are pomegranates?\tLas Vegas\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Las Vegas, put in, your pomegranate jelly) -> Las Vegas (3597ms)\nWhat are pomegranates?\t3. Remove\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (3. Remove, stir in, 2 tsp pomegranate vinegar) -> 3. Remove (2663ms)\nWhat are pomegranates?\tCathechins\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Cathechins, found in, pomegranates) -> Cathechins (2769ms)\nWhat are pomegranates?\tDr. Reid\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (Dr. Reid, has published in, The Pomegranate) -> Dr. Reid (4188ms)\nWhat are pomegranates?\tthe ellagic acid\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (the ellagic acid, found in, pomegranate) -> the ellagic acid (3597ms)\nWhat are pomegranates?\tchicken thighs\t-0.777777777778\tWhat are pomegranates? -> $x: ($x, in, pomegranate) -> (chicken thighs, braised in, pomegranate molasses) -> chicken thighs (2663ms)\nWhat are pomegranates?\tn?t\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (pomegranate concentrate and vitamin D, does, n?t) -> n?t (4445ms)\nWhat are pomegranates?\tThe report\t-0.888888888889\tWhat are pomegranates? -> $x: ($x, describe, pomegranate) -> (The report, described, the thumb-sized pomegranate) -> The report (4270ms)\nWhat are pomegranates?\tthe happy dance\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (pomegranate juice, *does, the happy dance) -> the happy dance (4445ms)\nWhat are pomegranates?\tIsrael\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (That pomegranate, did come from, Israel) -> Israel (4269ms)\nWhat are pomegranates?\tleisurely\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (the pomegranates, is best done, leisurely) -> leisurely (4269ms)\nWhat are pomegranates?\tthe poorest\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (7-10 Pomegranates, will do well in, the poorest) -> the poorest (4445ms)\nWhat are pomegranates?\tarthritis\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (the pomegranate drinkers, did develop, arthritis) -> arthritis (4269ms)\nWhat are pomegranates?\tthe body\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (The pomegranate ,, does some amazing things for, the body) -> the body (4445ms)\nWhat are pomegranates?\tthe demand\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (pomegranates, so did, the demand) -> the demand (4444ms)\nWhat are pomegranates?\tmidday strippers\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (Berry Pomegranate, so do, midday strippers) -> midday strippers (4269ms)\nWhat are pomegranates?\tconsumer demand\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (pomegranate, so does, consumer demand) -> consumer demand (4445ms)\nWhat are pomegranates?\twell-drained ordinary soil\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (The pomegranate, does best in, well-drained ordinary soil) -> well-drained ordinary soil (4445ms)\nWhat are pomegranates?\tgood work\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (the pomegranate, does, good work) -> good work (4444ms)\nWhat are pomegranates?\tmazes and tests\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (The pomegranate drinkers, also did better in, mazes and tests) -> mazes and tests (4445ms)\nWhat are pomegranates?\ta farting pig man\t-0.888888888889\tWhat are pomegranates? -> $x: (pomegranate, do, $x) -> (Pomegranates, does n?t have, a farting pig man) -> a farting pig man (4269ms)\nWhat are pomegranates?\tthe winery\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (the winery, produces a number of, pomegranate wines) -> the winery (4477ms)\nWhat are pomegranates?\tPomX\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (PomX, does n?t taste like, pomegranate juice) -> PomX (4477ms)\nWhat are pomegranates?\teating\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are just for, eating) -> eating (4456ms)\nWhat are pomegranates?\tcrab-apples\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (crab-apples, do the work of, pomegranates) -> crab-apples (4466ms)\nWhat are pomegranates?\tIsraeli Contemporary Art, New York\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (Israeli Contemporary Art, New York, Exhibitions produced, Pomegranate: A Video by Ori Gersht) -> Israeli Contemporary Art, New York (4487ms)\nWhat are pomegranates?\tthe whole cinematography\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, is a revelation for, the whole cinematography) -> the whole cinematography (4456ms)\nWhat are pomegranates?\thundreds\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, have been used for, hundreds) -> hundreds (4487ms)\nWhat are pomegranates?\thealth\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, is good for, health) -> health (4456ms)\nWhat are pomegranates?\tthe humble and loyal Queen\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (good pomegranates, were for, the humble and loyal Queen) -> the humble and loyal Queen (4487ms)\nWhat are pomegranates?\tLimes\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (Limes, do, pecans and pomegranates) -> Limes (4456ms)\nWhat are pomegranates?\twomen\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are great food too for, women) -> women (4498ms)\nWhat are pomegranates?\t4,000 years\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, have been cultivated for over, 4,000 years) -> 4,000 years (4445ms)\nWhat are pomegranates?\tTurker Korkmaz\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (Turker Korkmaz, Films Produced, The Pomegranate) -> Turker Korkmaz (4487ms)\nWhat are pomegranates?\tthe heart\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are good for, the heart) -> the heart (4488ms)\nWhat are pomegranates?\tloose bowel motions\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, is used for, loose bowel motions) -> loose bowel motions (4456ms)\nWhat are pomegranates?\tMuch more research\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (Much more research, will need to be done before, pomegranates) -> Much more research (4466ms)\nWhat are pomegranates?\tmillennia\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (The pomegranate, has been recognized for, millennia) -> millennia (4477ms)\nWhat are pomegranates?\tthe patient\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, are for, the patient) -> the patient (4498ms)\nWhat are pomegranates?\tartherosclerosis\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, may be beneficial for, artherosclerosis) -> artherosclerosis (4477ms)\nWhat are pomegranates?\tsale\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are displayed for, sale) -> sale (4445ms)\nWhat are pomegranates?\ta dose\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate juice, is touted for, a dose) -> a dose (4498ms)\nWhat are pomegranates?\tsubstance\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (substance, did taste a little like, pomegranate) -> substance (4487ms)\nWhat are pomegranates?\treal\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate juice, is for, real) -> real (4477ms)\nWhat are pomegranates?\ta spiritual way\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (a pomegranate, is a metaphor for, a spiritual way) -> a spiritual way (4466ms)\nWhat are pomegranates?\tfresh fruit\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, can be grown for, fresh fruit) -> fresh fruit (4498ms)\nWhat are pomegranates?\tMolasses\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (Molasses, is produced from, carob , grape , date , pomegranate) -> Molasses (4487ms)\nWhat are pomegranates?\tThe liqueur\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (The liqueur, will do for, the lofty pomegranate) -> The liqueur (4466ms)\nWhat are pomegranates?\tinflammatory conditions\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate, is good for, inflammatory conditions) -> inflammatory conditions (4456ms)\nWhat are pomegranates?\tmedicinal purposes\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (The pomegranate, has been used for, medicinal purposes) -> medicinal purposes (4466ms)\nWhat are pomegranates?\tthe captain\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (the captain, did crack open, the Champaign and pomegranate juice) -> the captain (4466ms)\nWhat are pomegranates?\tlarge hedges\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are also useful for, large hedges) -> large hedges (4456ms)\nWhat are pomegranates?\tnatural dyeing\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate juice, is used for, natural dyeing) -> natural dyeing (4487ms)\nWhat are pomegranates?\thair\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate oil, is wonderful oil for, hair) -> hair (4456ms)\nWhat are pomegranates?\tclub soda\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (club soda, do, a pomegranate-glazed salmon) -> club soda (4487ms)\nWhat are pomegranates?\tloads\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, is providing endless inspiration for, loads) -> loads (4498ms)\nWhat are pomegranates?\texcessive bile\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (A pomegranate, is an antidote for, excessive bile) -> excessive bile (4487ms)\nWhat are pomegranates?\tbreast and skin cancer\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, has been indicated for, breast and skin cancer) -> breast and skin cancer (4456ms)\nWhat are pomegranates?\tfive\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, have been cultivated for, five) -> five (4466ms)\nWhat are pomegranates?\tmen\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, may be especially helpful for, men) -> men (4477ms)\nWhat are pomegranates?\thand grenade\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, also is their word for, hand grenade) -> hand grenade (4456ms)\nWhat are pomegranates?\tthe project\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, were planted for, the project) -> the project (4498ms)\nWhat are pomegranates?\traisins\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (raisins, have done, pomegranate pearls) -> raisins (4456ms)\nWhat are pomegranates?\tLi Rui\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (Li Rui, Films Produced, A Cherry on a Pomegranate Tree) -> Li Rui (4487ms)\nWhat are pomegranates?\tSouthern Mississippi\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate trees, are favorites for, Southern Mississippi) -> Southern Mississippi (4456ms)\nWhat are pomegranates?\tcenturies\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (the pomegranate, has been trusted for, centuries) -> centuries (4498ms)\nWhat are pomegranates?\tHani E. Cort\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (Hani E. Cort, Films Produced, Pomegranates and Myrrh) -> Hani E. Cort (4477ms)\nWhat are pomegranates?\tsnacking\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, are perfect for, snacking) -> snacking (4456ms)\nWhat are pomegranates?\ta whole group\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (one pomegranate, will be sufficient for, a whole group) -> a whole group (4498ms)\nWhat are pomegranates?\tthe heart and penis\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate juice, is good for, the heart and penis) -> the heart and penis (4477ms)\nWhat are pomegranates?\tcalendar\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (calendar, is produced by, Pomegranate) -> calendar (4487ms)\nWhat are pomegranates?\tthe cover\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates ?, was selected for, the cover) -> the cover (4466ms)\nWhat are pomegranates?\tthe hard labour\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (the pomegranate, is renowned for, the hard labour) -> the hard labour (4477ms)\nWhat are pomegranates?\trighteousness\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (the pomegranate, is a symbol for, righteousness) -> righteousness (4456ms)\nWhat are pomegranates?\tme? dreams\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, were showing up everywhere for, me? dreams) -> me? dreams (4487ms)\nWhat are pomegranates?\tSphaerus\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (Sphaerus, did about, the pomegranates) -> Sphaerus (4487ms)\nWhat are pomegranates?\tpart time work\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate Market, is hiring for, part time work) -> part time work (4498ms)\nWhat are pomegranates?\tPom Wonderful funds\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (Pom Wonderful funds, has been done on, Wonderful pomegranates) -> Pom Wonderful funds (4487ms)\nWhat are pomegranates?\tfertility\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, also are use for, fertility) -> fertility (4445ms)\nWhat are pomegranates?\thealth reasons\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (The pomegranate, is popular now for, health reasons) -> health reasons (4477ms)\nWhat are pomegranates?\tKitchen Connaisseur\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (Kitchen Connaisseur, produces, the Pomegranate Chutney) -> Kitchen Connaisseur (4466ms)\nWhat are pomegranates?\tthe Resnicks\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (the Resnicks, did with, pomegranate) -> the Resnicks (4466ms)\nWhat are pomegranates?\tthe cardiovascular system\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are good for, the cardiovascular system) -> the cardiovascular system (4498ms)\nWhat are pomegranates?\tone?s\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate, is both healing for, one?s) -> one?s (4466ms)\nWhat are pomegranates?\tthe same reason\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate seeds, are traditional for, the same reason) -> the same reason (4498ms)\nWhat are pomegranates?\tinsomniacs\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, are also good for, insomniacs) -> insomniacs (4466ms)\nWhat are pomegranates?\t1 bottle\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (1 pomegranate, is fine for, 1 bottle) -> 1 bottle (4445ms)\nWhat are pomegranates?\tthe skin\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate, is the perfect additive for, the skin) -> the skin (4498ms)\nWhat are pomegranates?\teffects\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate seeds, were examined for, effects) -> effects (4498ms)\nWhat are pomegranates?\tvitiligo\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, is a good treatment for, vitiligo) -> vitiligo (4466ms)\nWhat are pomegranates?\tthe salad\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, do, pomegranate) -> (the salad, did, the pomegranate seeds) -> the salad (4477ms)\nWhat are pomegranates?\tthe eyes\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (a pomegranate, is a feast for, the eyes) -> the eyes (4466ms)\nWhat are pomegranates?\tMassoud Bakhshi\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (Massoud Bakhshi, Films Produced, Tehran Has No More Pomegranates!) -> Massoud Bakhshi (4456ms)\nWhat are pomegranates?\tkidney stones\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate, can be a medicine for, kidney stones) -> kidney stones (4487ms)\nWhat are pomegranates?\tday or night\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (the pomegranate, is perfect for, day or night) -> day or night (4498ms)\nWhat are pomegranates?\tFairmont\t-0.88888888889\tWhat are pomegranates? -> $x: ($x, produce, pomegranate) -> (Fairmont, Tracks produced, Pomegranate) -> Fairmont (4466ms)\nWhat are pomegranates?\tconsumption\t-0.88888888889\tWhat are pomegranates? -> $x: (pomegranate, be for, $x) -> (? Fresh pomegranates, are nearly ready for, consumption) -> consumption (4477ms)\nWhat are pomegranates?\toccasion\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (occasion, found, pomegranate juice) -> occasion (4508ms)\nWhat are pomegranates?\t1072l??\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (1072l??, find, Pomegranate plants) -> 1072l?? (4518ms)\nWhat are pomegranates?\tantioxidants\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (antioxidants, also found in, red wine and pomegranates) -> antioxidants (4508ms)\nWhat are pomegranates?\tPomegranate\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (Pomegranate, can be found on, the JPL Pomegranate web page) -> Pomegranate (4528ms)\nWhat are pomegranates?\tnew growth\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (new growth, found on, our baby pomegranate tree) -> new growth (4508ms)\nWhat are pomegranates?\tThe manufacturer\t-1.0\tWhat are pomegranates? -> $x: ($x, create, pomegranate) -> (The manufacturer, has created, a pomegranate pill) -> The manufacturer (4508ms)\nWhat are pomegranates?\ta Prince\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (a Prince, find his voice and a king find, his pomegranates) -> a Prince (4528ms)\nWhat are pomegranates?\tMore information\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (More information, can be found on, Pomegranate) -> More information (4518ms)\nWhat are pomegranates?\tPomegranate juice\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (Pomegranate juice, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Pomegranate%20juice) -> Pomegranate juice (4537ms)\nWhat are pomegranates?\tA house of pomegranates\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (A house of pomegranates, can be found on Wikipedia at, http://en.wikipedia.org/wiki/A%20House%20of%20Pomegranates) -> A house of pomegranates (4508ms)\nWhat are pomegranates?\ta king\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (a king, find, his pomegranates) -> a king (4528ms)\nWhat are pomegranates?\tsummer and winter\t-1.0\tWhat are pomegranates? -> $x: ($x, create, pomegranate) -> (summer and winter, were created with, pomegranates) -> summer and winter (4537ms)\nWhat are pomegranates?\tan Israeli team\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (an Israeli team, found evidence of, pomegranate) -> an Israeli team (4508ms)\nWhat are pomegranates?\ta place\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (a place, found, a magic pomegranate tree) -> a place (4508ms)\nWhat are pomegranates?\tellagitannins\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (ellagitannins, found, only in pomegranate) -> ellagitannins (4508ms)\nWhat are pomegranates?\tThe polyphenolic content\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (The polyphenolic content, found within, pomegranate) -> The polyphenolic content (4508ms)\nWhat are pomegranates?\tCalifornia\t-1.0\tWhat are pomegranates? -> $x: ($x, create, pomegranate) -> (California, created, the refreshing Sonoma Pomegranate Sparkler) -> California (4528ms)\nWhat are pomegranates?\tCertain Biblical passages\t-1.0\tWhat are pomegranates? -> $x: ($x, refer, pomegranate) -> (Certain Biblical passages, refer to, the pomegranate) -> Certain Biblical passages (4518ms)\nWhat are pomegranates?\tJewish symbolism\t-1.0\tWhat are pomegranates? -> $x: ($x, create, pomegranate) -> (Jewish symbolism, Exhibitions created about this subject, Pomegranate: A Video by Ori Gersht) -> Jewish symbolism (4518ms)\nWhat are pomegranates?\trachael ray\t-1.0\tWhat are pomegranates? -> $x: ($x, create, pomegranate) -> (rachael ray, created, this little pomegranate martini concoction) -> rachael ray (4518ms)\nWhat are pomegranates?\tfirst i\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (first i, found this beautiful design of, a stylized pomegranate) -> first i (4518ms)\nWhat are pomegranates?\tThe punicic acid\t-1.0\tWhat are pomegranates? -> $x: ($x, found, pomegranate) -> (The punicic acid, found, pomegranate seed oil) -> The punicic acid (4528ms)\nWhat are pomegranates?\tOri Gersht\t-1.0\tWhat are pomegranates? -> $x: ($x, create, pomegranate) -> (Ori Gersht, Exhibitions created about this subject, Pomegranate: A Video by Ori Gersht) -> Ori Gersht (4518ms)\nWhat are pomegranates?\tancient Mesopotamia\t-1.0\tWhat are pomegranates? -> $x: ($x, refer, pomegranate) -> (ancient Mesopotamia, refer to, pomegranates) -> ancient Mesopotamia (4537ms)\nWhat are pomegranates?\tThe Cups\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The Cups, are, pomegranates) -> The Cups (4555ms)\nWhat are pomegranates?\tGarnet\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Garnet, is related to, the word Pomegranate) -> Garnet (4581ms)\nWhat are pomegranates?\trosh\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (rosh, are, pomegranates) -> rosh (4598ms)\nWhat are pomegranates?\tThe main ingredient in MaleExtra\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The main ingredient in MaleExtra, is, pomegranate) -> The main ingredient in MaleExtra (4581ms)\nWhat are pomegranates?\tWine\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Wine, was made from, pomegranates) -> Wine (4645ms)\nWhat are pomegranates?\tTweak Extreme\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Tweak Extreme, was, Pomegranate) -> Tweak Extreme (4645ms)\nWhat are pomegranates?\tKidd?s newest book\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Kidd?s newest book, is Traveling with, Pomegranates) -> Kidd?s newest book (4613ms)\nWhat are pomegranates?\tGreece\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Greece, is, pomegranates) -> Greece (4613ms)\nWhat are pomegranates?\tMorocco\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Morocco, are, pomegranates) -> Morocco (4613ms)\nWhat are pomegranates?\tShort communication\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Short communication, Be aware of, Pomegranates) -> Short communication (4589ms)\nWhat are pomegranates?\tThe pricey fruits\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The pricey fruits, are, pomegranates) -> The pricey fruits (4652ms)\nWhat are pomegranates?\tThe Phoenicians\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The Phoenicians, were the first to cultivate, the pomegranate) -> The Phoenicians (4573ms)\nWhat are pomegranates?\t13 Your plants\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (13 Your plants, are an orchard of, pomegranates) -> 13 Your plants (4537ms)\nWhat are pomegranates?\tthe winner\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the winner, was, ?..pomegranate) -> the winner (4555ms)\nWhat are pomegranates?\tThe pineapple\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be in, pomegranate) -> (The pineapple, is cold marinated in, the pomegranate juice) -> The pineapple (4606ms)\nWhat are pomegranates?\tThe garnet name\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The garnet name, is believed to have come from, the pomegranate) -> The garnet name (4555ms)\nWhat are pomegranates?\tAdditional study\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Additional study, is needed to confirm, pomegranate) -> Additional study (4628ms)\nWhat are pomegranates?\tThe easiest way\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The easiest way, is to cut, the pomegranate) -> The easiest way (4645ms)\nWhat are pomegranates?\tThe plants\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The plants, are an orchard of, pomegranates) -> The plants (4589ms)\nWhat are pomegranates?\tPOM Wonderful\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (POM Wonderful, is the largest grower of, pomegranates) -> POM Wonderful (4546ms)\nWhat are pomegranates?\tOne of the most important foods\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (One of the most important foods, is, pomegranate) -> One of the most important foods (4581ms)\nWhat are pomegranates?\tweeks\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (weeks, were, pomegranates) -> weeks (4606ms)\nWhat are pomegranates?\tJerusalem\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Jerusalem, were engraved with, pomegranates) -> Jerusalem (4589ms)\nWhat are pomegranates?\tlarge fruits\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (large fruits, were like, pomegranates) -> large fruits (4598ms)\nWhat are pomegranates?\ttwo inches\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (the dwarf pomegranate, is about, two inches) -> two inches (4645ms)\nWhat are pomegranates?\tsoftness\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (Bright Pomegranate Red, is serious about, softness) -> softness (4555ms)\nWhat are pomegranates?\tthe Christ Child\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the Christ Child, are all depicted with, pomegranates) -> the Christ Child (4652ms)\nWhat are pomegranates?\tGenesis 10:10\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Genesis 10:10, is made from, pomegranates) -> Genesis 10:10 (4564ms)\nWhat are pomegranates?\tLove\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Love, so are, pomegranates) -> Love (4606ms)\nWhat are pomegranates?\tThe capitals\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The capitals, were enriched by, pomegranates) -> The capitals (4628ms)\nWhat are pomegranates?\tHera\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Hera, is associated with are, pomegranates) -> Hera (4613ms)\nWhat are pomegranates?\tThe botanical name\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The botanical name, is similar to, the pomegranate?s) -> The botanical name (4598ms)\nWhat are pomegranates?\tPOM\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (POM, is a wonderful way to get the great taste of, pomegranate) -> POM (4606ms)\nWhat are pomegranates?\ta fermented beverage\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (a fermented beverage, was being made of, pomegranate) -> a fermented beverage (4629ms)\nWhat are pomegranates?\tfireworks and crackers\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (fireworks and crackers, are called, ?pomegranates) -> fireworks and crackers (4652ms)\nWhat are pomegranates?\tThe yellow one\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The yellow one, is called, ?pomegranate?) -> The yellow one (4573ms)\nWhat are pomegranates?\tfact\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be in, pomegranate) -> (fact, there are in, pomegranates or blueberries) -> fact (4546ms)\nWhat are pomegranates?\ttwo years\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (pomegranates, were discovered about, two years) -> two years (4546ms)\nWhat are pomegranates?\tno medical claims\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (no medical claims, can be made for, pomegranate) -> no medical claims (4638ms)\nWhat are pomegranates?\tthe perfect drinks\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the perfect drinks, are always made with, pomegranate) -> the perfect drinks (4621ms)\nWhat are pomegranates?\tGood Quality Grenadine\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Good Quality Grenadine, is supposed to be, pomegranate syrup) -> Good Quality Grenadine (4652ms)\nWhat are pomegranates?\tany fruit juice\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (any fruit juice, can sub for, the pomegranate juice) -> any fruit juice (4589ms)\nWhat are pomegranates?\tThe trendiest drinks\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The trendiest drinks, to be, pomegranate and acai) -> The trendiest drinks (4613ms)\nWhat are pomegranates?\tReal Grenadine\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Real Grenadine, is made from, Pomegranates) -> Real Grenadine (4628ms)\nWhat are pomegranates?\tthe _ Frutte_\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, consist of, pomegranate) -> (the _ Frutte_, consisted of, two rather old pomegranates) -> the _ Frutte_ (4645ms)\nWhat are pomegranates?\t12? F.\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (Pomegranate, is hardy to about, 12? F.) -> 12? F. (4573ms)\nWhat are pomegranates?\tThe purpose\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The purpose, is to evaluate, pomegranate potential) -> The purpose (4652ms)\nWhat are pomegranates?\t?Your shoots\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (?Your shoots, are an orchard of, pomegranates) -> ?Your shoots (4555ms)\nWhat are pomegranates?\tthe museum?s floor\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the museum?s floor, were, pomegranates) -> the museum?s floor (4598ms)\nWhat are pomegranates?\tlast night\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be in, pomegranate) -> (last night, were the chicken in, almond-pomegranate sauce) -> last night (4564ms)\nWhat are pomegranates?\tfour times\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (pomegranate juice, were about, four times) -> four times (4589ms)\nWhat are pomegranates?\tthe size of an apple or orange\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (The pomegranate, is about, the size of an apple or orange) -> the size of an apple or orange (4645ms)\nWhat are pomegranates?\tThe ancient Egyptians\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The ancient Egyptians, were buried with, pomegranates) -> The ancient Egyptians (4621ms)\nWhat are pomegranates?\t?Mother Nature\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (?Mother Nature, has been kind to, the pomegranate season) -> ?Mother Nature (4638ms)\nWhat are pomegranates?\tBreakfast\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Breakfast, could be limited to, Pomegranate herbal tea) -> Breakfast (4546ms)\nWhat are pomegranates?\tthe list\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the list, is, pomegranates) -> the list (4598ms)\nWhat are pomegranates?\tSecond choice\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Second choice, was to add, some pomegranate juice) -> Second choice (4546ms)\nWhat are pomegranates?\tMales\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Males, are advised to take, pomegranate juice) -> Males (4564ms)\nWhat are pomegranates?\tThe publisher\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The publisher, is, Pomegranate) -> The publisher (4581ms)\nWhat are pomegranates?\tmouth\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (mouth, is helping to drive, the current Pomegranate trend) -> mouth (4645ms)\nWhat are pomegranates?\tThy shoots\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Thy shoots, are an orchard of, pomegranates) -> Thy shoots (4555ms)\nWhat are pomegranates?\tKimiko\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Kimiko, was surprised to see, the pomegranate tree) -> Kimiko (4613ms)\nWhat are pomegranates?\tGrenadine\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Grenadine, is supposed to be, a pomegranate-flavored syrup) -> Grenadine (4598ms)\nWhat are pomegranates?\tEven expectant women\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (Even expectant women, can safely drink, pomegranate juice) -> Even expectant women (4546ms)\nWhat are pomegranates?\tThe LLAMA\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The LLAMA, is as, POMEGRANATE) -> The LLAMA (4645ms)\nWhat are pomegranates?\tShunyi\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (Shunyi, can get their fix at, the Pomegranate) -> Shunyi (4613ms)\nWhat are pomegranates?\t118 pounds\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (a 24 pomegranate old jezebel i, am about, 118 pounds) -> 118 pounds (4564ms)\nWhat are pomegranates?\tthe size and shape\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (Pomegranates, are usually about, the size and shape) -> the size and shape (4564ms)\nWhat are pomegranates?\tWhat you need\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (What you need, is, pomegranates) -> What you need (4645ms)\nWhat are pomegranates?\tthe sentiment\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be in, pomegranate) -> (the sentiment, were first stamped in, Purely Pomegranate ink) -> the sentiment (4613ms)\nWhat are pomegranates?\t1/2\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (The pomegranate, is about, 1/2) -> 1/2 (4628ms)\nWhat are pomegranates?\tthe best winter fruit\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the best winter fruit, is, POMEGRANATES) -> the best winter fruit (4638ms)\nWhat are pomegranates?\tthe pomegranate fruit\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (Pomegranates, is a book about, the pomegranate fruit) -> the pomegranate fruit (4628ms)\nWhat are pomegranates?\tthe two groups\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the two groups, was too small to, credit pomegranate seed oil) -> the two groups (4613ms)\nWhat are pomegranates?\tthe papers\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the papers, were a perfect match to, Purely Pomegranate) -> the papers (4629ms)\nWhat are pomegranates?\tAnar\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Anar, is the word for, pomegranate) -> Anar (4638ms)\nWhat are pomegranates?\tWeb consensus\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Web consensus, seems to be, that pomegranates) -> Web consensus (4606ms)\nWhat are pomegranates?\tHardee County\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Hardee County, were attracted to, pomegranates) -> Hardee County (4621ms)\nWhat are pomegranates?\tthe largest fruit\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the largest fruit, is similar to, the Wonderful Pomegranate) -> the largest fruit (4555ms)\nWhat are pomegranates?\tthe card\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the card, are Purely, Pomegranate) -> the card (4573ms)\nWhat are pomegranates?\tThe third flowering bonsai\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The third flowering bonsai, is, pomegranate) -> The third flowering bonsai (4589ms)\nWhat are pomegranates?\tAlso one\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (Also one, can soak, pomegranate peels) -> Also one (4645ms)\nWhat are pomegranates?\tAzerbaijan?s trademark\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Azerbaijan?s trademark, is, pomegranates) -> Azerbaijan?s trademark (4564ms)\nWhat are pomegranates?\tMale Excess\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Male Excess, is, Pomegranate) -> Male Excess (4589ms)\nWhat are pomegranates?\tThe market\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The market, is flooded with, pomegranates) -> The market (4621ms)\nWhat are pomegranates?\tthe gems\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the gems, were thought to resemble, pomegranate seeds) -> the gems (4652ms)\nWhat are pomegranates?\tGuys\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Guys, are advised to take, pomegranate juice) -> Guys (4564ms)\nWhat are pomegranates?\ta producer\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (a producer, was, Pomegranate) -> a producer (4573ms)\nWhat are pomegranates?\tThe Virgin Mary\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The Virgin Mary, has also been likened to, a pomegranate tree) -> The Virgin Mary (4589ms)\nWhat are pomegranates?\t13 Your shoots\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (13 Your shoots, are an orchard of, pomegranates) -> 13 Your shoots (4645ms)\nWhat are pomegranates?\tno health claims\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (no health claims, are made regarding, pomegranate) -> no health claims (4638ms)\nWhat are pomegranates?\tThe basic idea\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The basic idea, is to concentrate, the pomegranate juice) -> The basic idea (4573ms)\nWhat are pomegranates?\taction and results\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (action and results, is key to, the Pomegranate formula) -> action and results (4621ms)\nWhat are pomegranates?\tthe size\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (The pomegranate, is about, the size) -> the size (4629ms)\nWhat are pomegranates?\tMexico\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, consist of, pomegranate) -> (Mexico, actually consisted of, pomegranate juice) -> Mexico (4537ms)\nWhat are pomegranates?\tthe testing methods\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (the testing methods, can distinguish, pomegranate juice) -> the testing methods (4652ms)\nWhat are pomegranates?\tthe garden\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the garden, is, pomegranates) -> the garden (4652ms)\nWhat are pomegranates?\tthree\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (three, was supposed to be, pomegranate flavor) -> three (4589ms)\nWhat are pomegranates?\tthe content level\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the content level, is higher compared to, pomegranates) -> the content level (4606ms)\nWhat are pomegranates?\ta name\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (a name, is, Pomegranate) -> a name (4555ms)\nWhat are pomegranates?\tAcai juice\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Acai juice, has been compared to, the pomegranate) -> Acai juice (4613ms)\nWhat are pomegranates?\tthe rind\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the rind, is a very beneficial way to eat, pomegranate) -> the rind (4546ms)\nWhat are pomegranates?\t?Idolatry and Materiality\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (?Idolatry and Materiality, can be perused at, The Pomegranate) -> ?Idolatry and Materiality (4606ms)\nWhat are pomegranates?\tthe color\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the color, is, pomegranate) -> the color (4564ms)\nWhat are pomegranates?\tsuch high ability pills\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (such high ability pills, are being formulated with, pomegranates) -> such high ability pills (4652ms)\nWhat are pomegranates?\tisoflavones\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (isoflavones, is, pomegranates) -> isoflavones (4645ms)\nWhat are pomegranates?\tshorter\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (shorter, are, pomegranates) -> shorter (4606ms)\nWhat are pomegranates?\tThe name garnet\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (The name garnet, is believed to have come from, the pomegranate) -> The name garnet (4546ms)\nWhat are pomegranates?\teggplant\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (eggplant, can get, pomegranates) -> eggplant (4606ms)\nWhat are pomegranates?\tA suitable offering\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (A suitable offering, would be, Pomegranates) -> A suitable offering (4564ms)\nWhat are pomegranates?\tNational\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (National, Be Kind to, Pomegranates Day) -> National (4546ms)\nWhat are pomegranates?\tthe fresco\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the fresco, is decorated with, pomegranates) -> the fresco (4555ms)\nWhat are pomegranates?\tcourse people\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (course people, can be, neither pomegranates nor pigs) -> course people (4598ms)\nWhat are pomegranates?\t13 Thy plants\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (13 Thy plants, are an orchard of, pomegranates) -> 13 Thy plants (4652ms)\nWhat are pomegranates?\tavailable\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (available, are, Pomegranate) -> available (4638ms)\nWhat are pomegranates?\tthe arils\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the arils, is to cut, the pomegranate) -> the arils (4645ms)\nWhat are pomegranates?\tA Ancient Egyptians\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (A Ancient Egyptians, were buried with, pomegranates) -> A Ancient Egyptians (4598ms)\nWhat are pomegranates?\t613 seeds\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (a pomegranate, there are about, 613 seeds) -> 613 seeds (4564ms)\nWhat are pomegranates?\tthe narcotic poppy\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the narcotic poppy, may be transmuted to, a pomegranate) -> the narcotic poppy (4573ms)\nWhat are pomegranates?\tthe seeds\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the seeds, is to slice, the pomegranate) -> the seeds (4605ms)\nWhat are pomegranates?\ta poppy\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (a poppy, may be transmuted to, a pomegranate) -> a poppy (4555ms)\nWhat are pomegranates?\tThe card stock colors\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The card stock colors, are Purely, Pomegranate) -> The card stock colors (4598ms)\nWhat are pomegranates?\tHeckman\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Heckman, is growing, pomegranates) -> Heckman (4581ms)\nWhat are pomegranates?\t700\t-1.0000000000009999\tWhat are pomegranates? -> $x: (pomegranate, be about, $x) -> (Pomegranates, are filled with about, 700) -> 700 (4546ms)\nWhat are pomegranates?\tthe flavors\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the flavors, are oriented around, pomegranate) -> the flavors (4555ms)\nWhat are pomegranates?\tThe well ?Cknown ones\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The well ?Cknown ones, are, pomegranates) -> The well ?Cknown ones (4606ms)\nWhat are pomegranates?\tthe bosom\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the bosom, are compared to, two pomegranates) -> the bosom (4546ms)\nWhat are pomegranates?\tPommy\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (Pommy, to be, short for pomegranate) -> Pommy (4555ms)\nWhat are pomegranates?\tthe sky\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (the sky, was the color of, pomegranates) -> the sky (4638ms)\nWhat are pomegranates?\tNext on the list\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Next on the list, is, pomegranates) -> Next on the list (4573ms)\nWhat are pomegranates?\tvarious languages\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (various languages, can mean, the pomegranate fruit) -> various languages (4606ms)\nWhat are pomegranates?\tEurotart\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, can, pomegranate) -> (Eurotart, can be swirled into, pomegranate raspberry sorbet) -> Eurotart (4581ms)\nWhat are pomegranates?\tThe framed photo\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The framed photo, is of, pomegranates) -> The framed photo (4645ms)\nWhat are pomegranates?\tThe design\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (The design, is often, pomegranates) -> The design (4630ms)\nWhat are pomegranates?\tThy plants\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Thy plants, are a paradise of, pomegranates) -> Thy plants (4645ms)\nWhat are pomegranates?\tPersephone\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be be, pomegranate) -> (Persephone, is associated with, pomegranates) -> Persephone (4546ms)\nWhat are pomegranates?\tthe juice\t-1.0000000000009999\tWhat are pomegranates? -> $x: ($x, be to, pomegranate) -> (the juice, was to attack, the pomegranate) -> the juice (4573ms)\nWhat are pomegranates?\taccord ing\t-1.111111111111\tWhat are pomegranates? -> $x: ($x, represent, pomegranate) -> (accord ing, represent, pomegranates) -> accord ing (4652ms)\nWhat are pomegranates?\tfitness\t-1.111111111111\tWhat are pomegranates? -> $x: ($x, side, pomegranate) -> (fitness, Here are the side effects of, Super Slim Pomegranate) -> fitness (4659ms)\nWhat are pomegranates?\tRed grape juice\t-1.111111111111\tWhat are pomegranates? -> $x: ($x, be use of, pomegranate) -> (Red grape juice, could be used instead of, the pomegranate) -> Red grape juice (4652ms)\nWhat are pomegranates?\tthe middle\t-1.111111111111\tWhat are pomegranates? -> $x: ($x, represent, pomegranate) -> (the middle, represent, the pomegranate?s seeds) -> the middle (4659ms)\nWhat are pomegranates?\tThe logo\t-1.111111111111\tWhat are pomegranates? -> $x: ($x, represent, pomegranate) -> (The logo, represents, a pomegranate) -> The logo (4659ms)\nWhat are pomegranates?\tSea\t-1.111111111111\tWhat are pomegranates? -> $x: ($x, side, pomegranate) -> (Sea, is the side-project of, new Pomegranates member Dan Lyon) -> Sea (4659ms)\nWhat are pomegranates?\tDr. Murad\t-1.111111111111\tWhat are pomegranates? -> $x: ($x, develop, pomegranate) -> (Dr. Murad, develops, the Energizing Pomegranate Complex) -> Dr. Murad (4659ms)\nWhat are pomegranates?\tNASA JPL\t-1.111111111111\tWhat are pomegranates? -> $x: ($x, develop, pomegranate) -> (NASA JPL, has developed, Pomegranate) -> NASA JPL (4659ms)\nWhat are pomegranates?\tJeannette\t-1.111111111112\tWhat are pomegranates? -> $x: ($x, discover, pomegranate) -> (Jeannette, discovered the delights of, pomegranates) -> Jeannette (4659ms)\nWhat are pomegranates?\tTannin\t-1.111111111112\tWhat are pomegranates? -> $x: ($x, could be, pomegranate) -> (Tannin, could have been obtained from, pomegranate rind) -> Tannin (4664ms)\nWhat are pomegranates?\tthe news\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, has been in, the news) -> the news (4689ms)\nWhat are pomegranates?\tphytochemical compounds\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, are also rich in, phytochemical compounds) -> phytochemical compounds (4693ms)\nWhat are pomegranates?\ta group\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, promotes cardiovascular health In, a group) -> a group (4679ms)\nWhat are pomegranates?\tFlorida\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, grow well in, Florida) -> Florida (4684ms)\nWhat are pomegranates?\tAuthorities Concept Scheme\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4674ms)\nWhat are pomegranates?\ta new patent\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are named in, a new patent) -> a new patent (4664ms)\nWhat are pomegranates?\tquercetin\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are high in, quercetin) -> quercetin (4669ms)\nWhat are pomegranates?\tcolor\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, vary in, color) -> color (4679ms)\nWhat are pomegranates?\tparts\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, is now cultivated in, parts) -> parts (4689ms)\nWhat are pomegranates?\tright now\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are in season, right now) -> right now (4693ms)\nWhat are pomegranates?\tbloom?\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (? ?pomegranates, are in, bloom?) -> bloom? (4664ms)\nWhat are pomegranates?\tlate summer\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, make their entrance in, late summer) -> late summer (4664ms)\nWhat are pomegranates?\tGreek and Persian mythology\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are in, Greek and Persian mythology) -> Greek and Persian mythology (4675ms)\nWhat are pomegranates?\tfiber\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are also high in, fiber) -> fiber (4693ms)\nWhat are pomegranates?\tdifferent sizes\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, come in, different sizes) -> different sizes (4674ms)\nWhat are pomegranates?\tmarkets\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are in, markets) -> markets (4684ms)\nWhat are pomegranates?\tright\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is in, right) -> right (4698ms)\nWhat are pomegranates?\tthe Nogada\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (the Nogada, get, a pomegranate) -> the Nogada (4664ms)\nWhat are pomegranates?\tcandles\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, started popping up in, candles) -> candles (4684ms)\nWhat are pomegranates?\tthe Middle East\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are traditionally popular in, the Middle East) -> the Middle East (4689ms)\nWhat are pomegranates?\thospitable climates\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, are now cultivated in, hospitable climates) -> hospitable climates (4674ms)\nWhat are pomegranates?\tthe United States\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are generally available in, the United States) -> the United States (4664ms)\nWhat are pomegranates?\tGreek mythos\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is featured in, Greek mythos) -> Greek mythos (4693ms)\nWhat are pomegranates?\tshady areas\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, grew in, shady areas) -> shady areas (4689ms)\nWhat are pomegranates?\tPorter\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (Porter, got a hold of, some pomegranate molasses) -> Porter (4684ms)\nWhat are pomegranates?\ta salad\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, is in, a salad) -> a salad (4698ms)\nWhat are pomegranates?\tthe Caucasus\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, has been cultivated in, the Caucasus) -> the Caucasus (4664ms)\nWhat are pomegranates?\tthe temple\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, depicted in, the temple) -> the temple (4693ms)\nWhat are pomegranates?\tthe groceries\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, start appearing in, the groceries) -> the groceries (4664ms)\nWhat are pomegranates?\tIslamic art\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are found in, Islamic art) -> Islamic art (4693ms)\nWhat are pomegranates?\t2006\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, began in, 2006) -> 2006 (4689ms)\nWhat are pomegranates?\tNew York\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is headquartered in, New York) -> New York (4698ms)\nWhat are pomegranates?\tRoman mosaics\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, were depicted in, Roman mosaics) -> Roman mosaics (4669ms)\nWhat are pomegranates?\ta glazed pot\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, look best in, a glazed pot) -> a glazed pot (4689ms)\nWhat are pomegranates?\tPunicosides\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is especially high in, Punicosides) -> Punicosides (4689ms)\nWhat are pomegranates?\tthe West\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, have become popular in, the West) -> the West (4684ms)\nWhat are pomegranates?\tsuper slim pomegranate\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (super slim pomegranate, get, super slim pomegranate pills body) -> super slim pomegranate (4693ms)\nWhat are pomegranates?\ta wooden bowl\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, heaped in, a wooden bowl) -> a wooden bowl (4679ms)\nWhat are pomegranates?\tAncient Greece\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, were used in, Ancient Greece) -> Ancient Greece (4669ms)\nWhat are pomegranates?\t10\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (10, got, pomegranate juice) -> 10 (4684ms)\nWhat are pomegranates?\tthe rest\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (the rest, got, a Pomegranate Pick-Me-Up) -> the rest (4679ms)\nWhat are pomegranates?\tvitamin C and potassium\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are high in, vitamin C and potassium) -> vitamin C and potassium (4674ms)\nWhat are pomegranates?\tseason right\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are in, season right) -> season right (4689ms)\nWhat are pomegranates?\tseason &\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, were in, season &) -> season & (4669ms)\nWhat are pomegranates?\tbookstores today\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, arrives in, bookstores today) -> bookstores today (4669ms)\nWhat are pomegranates?\tinsomnia\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, helps in controlling, insomnia) -> insomnia (4684ms)\nWhat are pomegranates?\tnow\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is in season, now) -> now (4698ms)\nWhat are pomegranates?\tbirds\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, leave, pomegranate) -> (birds, is left of, last year?s pomegranates) -> birds (4674ms)\nWhat are pomegranates?\tearly to\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are harvested in, early to) -> early to (4698ms)\nWhat are pomegranates?\tassociation\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, works in, association) -> association (4669ms)\nWhat are pomegranates?\tturn\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, leave, pomegranate) -> (turn, left on, Pomegranate Rd.) -> turn (4684ms)\nWhat are pomegranates?\tPersia\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, originated in, Persia) -> Persia (4698ms)\nWhat are pomegranates?\tThe designer\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (The designer, got, a huge ceramic pomegranate) -> The designer (4698ms)\nWhat are pomegranates?\tpaintings\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, were featured in, paintings) -> paintings (4689ms)\nWhat are pomegranates?\tI?ve\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (I?ve, also got, a couple pomegranates) -> I?ve (4689ms)\nWhat are pomegranates?\tdry , hot climates\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, thrive in, dry , hot climates) -> dry , hot climates (4669ms)\nWhat are pomegranates?\tantioxidant flavonoids\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are even richer in, antioxidant flavonoids) -> antioxidant flavonoids (4679ms)\nWhat are pomegranates?\ttj\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (tj, got a couple of, pomegranates) -> tj (4698ms)\nWhat are pomegranates?\tTopical Terms Concept Scheme\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4669ms)\nWhat are pomegranates?\tthe province\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, grow everywhere in, the province) -> the province (4664ms)\nWhat are pomegranates?\tthe prevention\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, help in, the prevention) -> the prevention (4679ms)\nWhat are pomegranates?\tpotassium\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are high in, potassium) -> potassium (4684ms)\nWhat are pomegranates?\thalf | Design News Search\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, sliced in, half | Design News Search) -> half | Design News Search (4693ms)\nWhat are pomegranates?\tpurple and scarlet\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, worked in, purple and scarlet) -> purple and scarlet (4698ms)\nWhat are pomegranates?\tThe braising liquid\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (The braising liquid, got, some additional pomegranate molasses) -> The braising liquid (4679ms)\nWhat are pomegranates?\ta natural remedy\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, can be used in, a natural remedy) -> a natural remedy (4674ms)\nWhat are pomegranates?\tThe wife\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (The wife, got, the Pomegranate salad) -> The wife (4674ms)\nWhat are pomegranates?\tthe Don?t Pause supplement\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, extract in, the Don?t Pause supplement) -> the Don?t Pause supplement (4675ms)\nWhat are pomegranates?\tthen that Travis\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (then that Travis, almost got hit by, a flying pomegranate) -> then that Travis (4675ms)\nWhat are pomegranates?\tthe garden of Eden\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, grew in, the garden of Eden) -> the garden of Eden (4669ms)\nWhat are pomegranates?\tNo fruit\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, compare to, pomegranate) -> (No fruit, compares to, the pomegranate) -> No fruit (4664ms)\nWhat are pomegranates?\tMr. S\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (Mr. S, got to eat, a pomegranate) -> Mr. S (4664ms)\nWhat are pomegranates?\thealthy antioxidants\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are high in, healthy antioxidants) -> healthy antioxidants (4679ms)\nWhat are pomegranates?\ta series\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is enriched in, a series) -> a series (4669ms)\nWhat are pomegranates?\tthe meantime\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, has been issued in, the meantime) -> the meantime (4669ms)\nWhat are pomegranates?\tseason\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, will soon be in, season) -> season (4693ms)\nWhat are pomegranates?\tthe Torah\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, appear in, the Torah) -> the Torah (4669ms)\nWhat are pomegranates?\tthe fiber\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (the fiber, get from, eating pomegranates) -> the fiber (4674ms)\nWhat are pomegranates?\t2008\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, opened in, 2008) -> 2008 (4684ms)\nWhat are pomegranates?\ti need\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (i need, get, some pomegranate juice) -> i need (4693ms)\nWhat are pomegranates?\ta large range\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, can be used in, a large range) -> a large range (4689ms)\nWhat are pomegranates?\tburial chambers\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, were also placed in, burial chambers) -> burial chambers (4693ms)\nWhat are pomegranates?\tthe bathtub\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, was in, the bathtub) -> the bathtub (4674ms)\nWhat are pomegranates?\truins\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, lie in, ruins) -> ruins (4689ms)\nWhat are pomegranates?\tGreek myths\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, figured prominently in, Greek myths) -> Greek myths (4698ms)\nWhat are pomegranates?\tApril\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, begins in, April) -> April (4674ms)\nWhat are pomegranates?\tpopularity\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are growing in, popularity) -> popularity (4679ms)\nWhat are pomegranates?\tI?ll\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (I?ll, be getting, my pomegranate) -> I?ll (4689ms)\nWhat are pomegranates?\tsize and scope ?\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, grows in, size and scope ?) -> size and scope ? (4674ms)\nWhat are pomegranates?\tthe US.\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, were rarely eaten in, the US.) -> the US. (4684ms)\nWhat are pomegranates?\tthe bloodstream\t-1.2222222222219998\tWhat are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, is absorbed in, the bloodstream) -> the bloodstream (4679ms)\nWhat are pomegranates?\tPom Wonderful\t-1.2222222222219998\tWhat are pomegranates? -> $x: ($x, get, pomegranate) -> (Pom Wonderful, got wind of, our little pomegranate celebration) -> Pom Wonderful (4684ms)\nWhat are pomegranates?\tpublications\t-1.222222222223\tWhat are pomegranates? -> $x: ($x, involve, pomegranate) -> (publications, involving, the pomegranate) -> publications (4698ms)\nWhat are pomegranates?\tThe gloss\t-1.333333333334\tWhat are pomegranates? -> $x: ($x, formulate, pomegranate) -> (The gloss, is formulated with, natural pomegranate) -> The gloss (4698ms)\nWhat are pomegranates?\tHerbasway ?\t-1.333333333334\tWhat are pomegranates? -> $x: ($x, formulate, pomegranate) -> (Herbasway ?, has formulated, Pomegranate) -> Herbasway ? (4698ms)\nWhat are pomegranates?\tThe grape crop\t-1.333333333334\tWhat are pomegranates? -> $x: ($x, precede, pomegranate) -> (The grape crop, preceded, pomegranate cultivation) -> The grape crop (4698ms)\nWhat are pomegranates?\tThe only brand\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (The only brand, to contain, 100 % authentic pomegranate juice) -> The only brand (4706ms)\nWhat are pomegranates?\tThe colourful snacks\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (The colourful snacks, also contain, pomegranate powder) -> The colourful snacks (4702ms)\nWhat are pomegranates?\tThe initial is\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (The initial is, contains, pomegranate extracts) -> The initial is (4706ms)\nWhat are pomegranates?\tNOW? Pomeratrol\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (NOW? Pomeratrol, contains, Pomegranate Extract) -> NOW? Pomeratrol (4702ms)\nWhat are pomegranates?\tVitalVMH\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (VitalVMH, contains natural extracts of, pomegranate , bilberry) -> VitalVMH (4702ms)\nWhat are pomegranates?\teach capsule\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (each capsule, contains, pomegranate powder* 250 mg) -> each capsule (4706ms)\nWhat are pomegranates?\tnatural pills\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (natural pills, contain, Bioperene or Pomegranate 70 % Ellagen) -> natural pills (4702ms)\nWhat are pomegranates?\tI?m\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, fond, pomegranate) -> (I?m, especially fond of, the pomegranates and plums) -> I?m (4709ms)\nWhat are pomegranates?\tThe perfect diet pills\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (The perfect diet pills, contains, slim pomegranate) -> The perfect diet pills (4706ms)\nWhat are pomegranates?\tMale Extra\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (Male Extra, contains, Pomegranate 70 % ellagic) -> Male Extra (4706ms)\nWhat are pomegranates?\tBerri Acai\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (Berri Acai, contain, pomegranate , blueberry , and acai flavors) -> Berri Acai (4702ms)\nWhat are pomegranates?\tPomeratrol\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (Pomeratrol, contains, Pomegranate Extract) -> Pomeratrol (4702ms)\nWhat are pomegranates?\tthe # 1 Health and Wellness Juice\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (the # 1 Health and Wellness Juice, contains, Pomegranate) -> the # 1 Health and Wellness Juice (4706ms)\nWhat are pomegranates?\tEach diet pill capsule\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (Each diet pill capsule, contains, Pomegranate) -> Each diet pill capsule (4702ms)\nWhat are pomegranates?\tEastern Europeans\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, fond, pomegranate) -> (Eastern Europeans, are extremely fond of, salmon and pomegranate) -> Eastern Europeans (4706ms)\nWhat are pomegranates?\tMaleExtra\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (MaleExtra, also contains, Pomegranate 70 % Ellagic Acid) -> MaleExtra (4702ms)\nWhat are pomegranates?\tEnergy Drink\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (Energy Drink, contains, real pomegranate juice) -> Energy Drink (4702ms)\nWhat are pomegranates?\tRed Defence\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (Red Defence, also contains, Pomegranate) -> Red Defence (4706ms)\nWhat are pomegranates?\tthe market\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (the market, will contain, the ingredient Pomegranate) -> the market (4706ms)\nWhat are pomegranates?\tNOW? Pomeratrol\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (NOW? Pomeratrol, contains, Pomegranate Extract) -> NOW? Pomeratrol (4706ms)\nWhat are pomegranates?\tMonaVie\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (MonaVie, contains, pomegranate juice) -> MonaVie (4702ms)\nWhat are pomegranates?\tPerformer5\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (Performer5, also contains, Pomegranate 70 % Ellagic Acid) -> Performer5 (4702ms)\nWhat are pomegranates?\tThe product\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (The product, contains, frozen pomegranate seeds) -> The product (4706ms)\nWhat are pomegranates?\tCherry Crush\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (Cherry Crush, contains, cherry and pomegranate extracts) -> Cherry Crush (4706ms)\nWhat are pomegranates?\tthe Covenant\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (the Covenant, contain, almonds and pomegranates) -> the Covenant (4706ms)\nWhat are pomegranates?\ta juice blend\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (a juice blend, contains, pomegranate , cherry , black currant) -> a juice blend (4702ms)\nWhat are pomegranates?\t1936\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (1936, contains, Pomegranate Seed) -> 1936 (4706ms)\nWhat are pomegranates?\tthe supplements\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (the supplements, contain, the Pomegranate) -> the supplements (4706ms)\nWhat are pomegranates?\tThe ultra-moisturising formula\t-1.444444444445\tWhat are pomegranates? -> $x: ($x, contain, pomegranate) -> (The ultra-moisturising formula, contains, pomegranate oil) -> The ultra-moisturising formula (4702ms)\nWhat are pomegranates?\tthe latter\t-1.5555555555549998\tWhat are pomegranates? -> $x: ($x, concerned, pomegranate) -> (the latter, made concerning, its ?100 % Pomegranate? drink) -> the latter (4709ms)\nWhat are pomegranates?\tlong\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been used, long) -> long (4718ms)\nWhat are pomegranates?\tthe Moorish\t-1.777777777778\tWhat are pomegranates? -> $x: ($x, inspired, pomegranate) -> (the Moorish, inspired, Crescent and the Pomegranate Blossom) -> the Moorish (4723ms)\nWhat are pomegranates?\tMiddle Eastern cultures\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, are staples in, Middle Eastern cultures) -> Middle Eastern cultures (4731ms)\nWhat are pomegranates?\ta product\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been used as, a product) -> a product (4718ms)\nWhat are pomegranates?\tpunicalagin\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are rich in, punicalagin) -> punicalagin (4732ms)\nWhat are pomegranates?\tvitamin C\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, are high in, vitamin C) -> vitamin C (4716ms)\nWhat are pomegranates?\tthe sunniest\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, should be planted in, the sunniest) -> the sunniest (4725ms)\nWhat are pomegranates?\tskin health\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has been shown to promote, skin health) -> skin health (4709ms)\nWhat are pomegranates?\trecently\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (The pomegranate, has been acclaimed, recently) -> recently (4733ms)\nWhat are pomegranates?\tan array\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are already being used in, an array) -> an array (4734ms)\nWhat are pomegranates?\ta celebrity amongst fruits\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (the pomegranate, has been, a celebrity amongst fruits) -> a celebrity amongst fruits (4723ms)\nWhat are pomegranates?\tthe excavated area\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, were found in, the excavated area) -> the excavated area (4732ms)\nWhat are pomegranates?\tVitamin C\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are rich in, Vitamin C) -> Vitamin C (4732ms)\nWhat are pomegranates?\tclear skin\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has traditionally been used to, clear skin) -> clear skin (4713ms)\nWhat are pomegranates?\ta treasure\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been regarded as, a treasure) -> a treasure (4723ms)\nWhat are pomegranates?\tnumerous studies\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown in, numerous studies) -> numerous studies (4725ms)\nWhat are pomegranates?\tlower blood pressure\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate juice, has been shown to, lower blood pressure) -> lower blood pressure (4729ms)\nWhat are pomegranates?\terectile dysfunction\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranate, is effective in combating, erectile dysfunction) -> erectile dysfunction (4721ms)\nWhat are pomegranates?\tfolic acid\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are high in, folic acid) -> folic acid (4734ms)\nWhat are pomegranates?\tMediterranean countries\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, are eaten in, Mediterranean countries) -> Mediterranean countries (4731ms)\nWhat are pomegranates?\tvitamin C , B6 and potassium\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are rich in, vitamin C , B6 and potassium) -> vitamin C , B6 and potassium (4713ms)\nWhat are pomegranates?\thuman diet\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been a part of, human diet) -> human diet (4732ms)\nWhat are pomegranates?\tHistory\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Crimson Pomegranate, Has Been Prized Throughout, History) -> History (4729ms)\nWhat are pomegranates?\tthe mixture\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, has also occasionally been added to, the mixture) -> the mixture (4716ms)\nWhat are pomegranates?\tok\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, would have been, ok) -> ok (4734ms)\nWhat are pomegranates?\tscientific proof\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate juice, has been validated through, scientific proof) -> scientific proof (4725ms)\nWhat are pomegranates?\ttime\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been used since, time) -> time (4733ms)\nWhat are pomegranates?\tthe oxidation\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been found to reduce, the oxidation) -> the oxidation (4734ms)\nWhat are pomegranates?\tgood health\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been found to be important to, good health) -> good health (4729ms)\nWhat are pomegranates?\ta long time\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been around, a long time) -> a long time (4718ms)\nWhat are pomegranates?\tJewish custom\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranate, is significant in, Jewish custom) -> Jewish custom (4733ms)\nWhat are pomegranates?\tmenopausal symptoms\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have also been used to combat, menopausal symptoms) -> menopausal symptoms (4727ms)\nWhat are pomegranates?\tconventional folk remedies\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have long been used in, conventional folk remedies) -> conventional folk remedies (4721ms)\nWhat are pomegranates?\tancient times\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, were so important in, ancient times) -> ancient times (4733ms)\nWhat are pomegranates?\ttraditional Chinese medicine\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been used in, traditional Chinese medicine) -> traditional Chinese medicine (4733ms)\nWhat are pomegranates?\tAfghan agriculture\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have long been the pride of, Afghan agriculture) -> Afghan agriculture (4721ms)\nWhat are pomegranates?\tthe food\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has been known as, the food) -> the food (4723ms)\nWhat are pomegranates?\tfolk-medicine\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been used in, folk-medicine) -> folk-medicine (4731ms)\nWhat are pomegranates?\tEgyptian tombs\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has been found in, Egyptian tombs) -> Egyptian tombs (4733ms)\nWhat are pomegranates?\t?bad ? LDL cholesterol\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to reduce, ?bad ? LDL cholesterol) -> ?bad ? LDL cholesterol (4731ms)\nWhat are pomegranates?\tthe Near East\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, were cultivated in, the Near East) -> the Near East (4732ms)\nWhat are pomegranates?\tcancer cells\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been known to kill, cancer cells) -> cancer cells (4732ms)\nWhat are pomegranates?\tAncient times\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have definitely been around since, Ancient times) -> Ancient times (4733ms)\nWhat are pomegranates?\ta superfruit\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been marketed as, a superfruit) -> a superfruit (4731ms)\nWhat are pomegranates?\tdiarrhea\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been used traditionally to treat, diarrhea) -> diarrhea (4728ms)\nWhat are pomegranates?\tLDL oxidation\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have also been reported to reduce, LDL oxidation) -> LDL oxidation (4732ms)\nWhat are pomegranates?\ta fruit\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has long been recognized as, a fruit) -> a fruit (4728ms)\nWhat are pomegranates?\ta countless variety\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, are used in, a countless variety) -> a countless variety (4716ms)\nWhat are pomegranates?\traw form\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranate, can be consumed in, raw form) -> raw form (4732ms)\nWhat are pomegranates?\tevery region\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been cultivated in almost, every region) -> every region (4733ms)\nWhat are pomegranates?\tthe Mediterranean\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been grown in, the Mediterranean) -> the Mediterranean (4732ms)\nWhat are pomegranates?\tman\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been consumed by, man) -> man (4723ms)\nWhat are pomegranates?\tthe top activity\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, was found to have, the top activity) -> the top activity (4709ms)\nWhat are pomegranates?\tscientific studies\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranate, has been shown in, scientific studies) -> scientific studies (4733ms)\nWhat are pomegranates?\ta jewel\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been thought of as, a jewel) -> a jewel (4733ms)\nWhat are pomegranates?\tthe middle-east\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranate, is widely used in, the middle-east) -> the middle-east (4734ms)\nWhat are pomegranates?\tEurope and Asia\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (the pomegranate, has been grown in, Europe and Asia) -> Europe and Asia (4723ms)\nWhat are pomegranates?\ta holy fruit\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been regarded as, a holy fruit) -> a holy fruit (4727ms)\nWhat are pomegranates?\tchronic dysentery and diarrhea\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranate, is useful in, chronic dysentery and diarrhea) -> chronic dysentery and diarrhea (4729ms)\nWhat are pomegranates?\tPunicalagin\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, would have to be, Punicalagin) -> Punicalagin (4727ms)\nWhat are pomegranates?\tatherosclerosis progression\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to slow, atherosclerosis progression) -> atherosclerosis progression (4709ms)\nWhat are pomegranates?\tmale libido\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been proven to improve, male libido) -> male libido (4734ms)\nWhat are pomegranates?\tdiets\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been a constant mainly in, diets) -> diets (4728ms)\nWhat are pomegranates?\tmore antioxidant properties\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate juice, is said to have, more antioxidant properties) -> more antioxidant properties (4725ms)\nWhat are pomegranates?\tAsia\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been revered in, Asia) -> Asia (4729ms)\nWhat are pomegranates?\tnutritional darlings\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been, nutritional darlings) -> nutritional darlings (4716ms)\nWhat are pomegranates?\tcomparison list\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been added to, comparison list) -> comparison list (4734ms)\nWhat are pomegranates?\tthe hottest flavor\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been, the hottest flavor) -> the hottest flavor (4721ms)\nWhat are pomegranates?\t1866\t-1.777777777778\tWhat are pomegranates? -> $x: ($x, number of, pomegranate) -> (1866, includes an impressive number of, pomegranate hedges) -> 1866 (4716ms)\nWhat are pomegranates?\tproperties\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have also been shown to have, properties) -> properties (4716ms)\nWhat are pomegranates?\tnews\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been making, news) -> news (4733ms)\nWhat are pomegranates?\tprehistoric times\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been cultivated since, prehistoric times) -> prehistoric times (4716ms)\nWhat are pomegranates?\tthe Asian community\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (?( Pomegranates, are big in, the Asian community) -> the Asian community (4723ms)\nWhat are pomegranates?\tsystolic blood pressure\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to reduce, systolic blood pressure) -> systolic blood pressure (4713ms)\nWhat are pomegranates?\ta number\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to contain, a number) -> a number (4734ms)\nWhat are pomegranates?\tthe West Indies\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (The Pomegranate, has been naturalized in, the West Indies) -> the West Indies (4725ms)\nWhat are pomegranates?\tMiddle Eastern food\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have long been a staple in, Middle Eastern food) -> Middle Eastern food (4709ms)\nWhat are pomegranates?\tstudies\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has also been shown in, studies) -> studies (4728ms)\nWhat are pomegranates?\tthe Bikkurim\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, were included in, the Bikkurim) -> the Bikkurim (4733ms)\nWhat are pomegranates?\ta good source\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to be, a good source) -> a good source (4728ms)\nWhat are pomegranates?\tblood flow\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, has is to improve, blood flow) -> blood flow (4713ms)\nWhat are pomegranates?\tIndian cookery\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, is used in, Indian cookery) -> Indian cookery (4726ms)\nWhat are pomegranates?\ta health supplement\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been used as, a health supplement) -> a health supplement (4713ms)\nWhat are pomegranates?\tstories and legend\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been the stuff of, stories and legend) -> stories and legend (4731ms)\nWhat are pomegranates?\tpenile blood flow\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has been shown to increase, penile blood flow) -> penile blood flow (4716ms)\nWhat are pomegranates?\ta natural form\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate juice, has been said to be, a natural form) -> a natural form (4729ms)\nWhat are pomegranates?\tU.S. National Library\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be have, $x) -> (the pomegranate, have been indexed at, U.S. National Library) -> U.S. National Library (4731ms)\nWhat are pomegranates?\tSingapore?s National Museum\t-1.777777777778\tWhat are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranate, was presented in, Singapore?s National Museum) -> Singapore?s National Museum (4718ms)\nWhat year was the program first broadcast?\tRadio-Canada\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Radio-Canada, broadcasts, its programming) -> Radio-Canada (1819ms)\nWhat year was the program first broadcast?\tNayarit\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Nayarit, broadcast, a program) -> Nayarit (1822ms)\nWhat year was the program first broadcast?\tCPB\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (CPB, broadcast, programs) -> CPB (1825ms)\nWhat year was the program first broadcast?\tEducation , Culture and Sport\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Education , Culture and Sport, broadcasts, scholastic programs) -> Education , Culture and Sport (1819ms)\nWhat year was the program first broadcast?\ta radio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (a radio, broadcast, television program) -> a radio (1821ms)\nWhat year was the program first broadcast?\tGFA Radio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (GFA Radio, broadcasts, programs) -> GFA Radio (1822ms)\nWhat year was the program first broadcast?\tthe BBC\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, be broadcast of, program) -> (the BBC, are broadcasting a series of, special programs) -> the BBC (1821ms)\nWhat year was the program first broadcast?\tBBC\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (BBC, broadcast, the program) -> BBC (1825ms)\nWhat year was the program first broadcast?\tAn Iraqi state TV anchor\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (An Iraqi state TV anchor, broadcast, programs) -> An Iraqi state TV anchor (1819ms)\nWhat year was the program first broadcast?\tradio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (radio, broadcast, a program) -> radio (1825ms)\nWhat year was the program first broadcast?\tChannel 3 licence holders\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Channel 3 licence holders, broadcast, Gaelic programming) -> Channel 3 licence holders (1824ms)\nWhat year was the program first broadcast?\tthe channel\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the channel, broadcasts, the program) -> the channel (1824ms)\nWhat year was the program first broadcast?\tthe CBS 60 Minutes\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the CBS 60 Minutes, broadcast, a program) -> the CBS 60 Minutes (1822ms)\nWhat year was the program first broadcast?\topportunities\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (opportunities, broadcast, programming) -> opportunities (1821ms)\nWhat year was the program first broadcast?\tMIT radio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (MIT radio, broadcast, a program) -> MIT radio (1821ms)\nWhat year was the program first broadcast?\tThe company\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The company, broadcasts, poker programming) -> The company (1821ms)\nWhat year was the program first broadcast?\tEducation\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Education, broadcasts, scholastic programs) -> Education (1821ms)\nWhat year was the program first broadcast?\tchildrens\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (childrens, broadcast, programs) -> childrens (1825ms)\nWhat year was the program first broadcast?\tthe United States\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the United States, broadcast, NPR programs) -> the United States (1825ms)\nWhat year was the program first broadcast?\tJPR\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (JPR, broadcast, its programs) -> JPR (1824ms)\nWhat year was the program first broadcast?\t10 short wave transmitters\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (10 short wave transmitters, broadcast, programs) -> 10 short wave transmitters (1821ms)\nWhat year was the program first broadcast?\tThe channel\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The channel, broadcasting, programming) -> The channel (1825ms)\nWhat year was the program first broadcast?\tcompanies Film & TV Connection\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (companies Film & TV Connection, broadcast, educational program) -> companies Film & TV Connection (1822ms)\nWhat year was the program first broadcast?\tMinnesota Public Radio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Minnesota Public Radio, broadcast, a program) -> Minnesota Public Radio (1825ms)\nWhat year was the program first broadcast?\tstations\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (stations, broadcasting, their programming) -> stations (1825ms)\nWhat year was the program first broadcast?\tThe station\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The station, broadcast, a program) -> The station (1825ms)\nWhat year was the program first broadcast?\tfree publicity\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (free publicity, broadcast, news programs) -> free publicity (1824ms)\nWhat year was the program first broadcast?\tRadio Prague\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Radio Prague, broadcasts, programs) -> Radio Prague (1822ms)\nWhat year was the program first broadcast?\tSallie\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Sallie, broadcast, programs) -> Sallie (1819ms)\nWhat year was the program first broadcast?\tTrans World Radio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Trans World Radio, broadcasts, radio programs) -> Trans World Radio (1821ms)\nWhat year was the program first broadcast?\tvote fraud\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (vote fraud, broadcast, news programs) -> vote fraud (1819ms)\nWhat year was the program first broadcast?\tThe CBS and even 60 minutes\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The CBS and even 60 minutes, broadcast, program) -> The CBS and even 60 minutes (1821ms)\nWhat year was the program first broadcast?\ta station\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (a station, broadcasting, religious programming) -> a station (1824ms)\nWhat year was the program first broadcast?\tordinary people\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (ordinary people, broadcast, TV programming) -> ordinary people (1822ms)\nWhat year was the program first broadcast?\tThe French network\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The French network, broadcast, the programs) -> The French network (1824ms)\nWhat year was the program first broadcast?\tcommunities\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (communities, broadcast, television programming) -> communities (1819ms)\nWhat year was the program first broadcast?\tThe project\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The project, broadcast, radio programs) -> The project (1819ms)\nWhat year was the program first broadcast?\toverseas stations\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (overseas stations, broadcast, the program) -> overseas stations (1821ms)\nWhat year was the program first broadcast?\tPublic Broadcasting\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Public Broadcasting, broadcast, programs) -> Public Broadcasting (1824ms)\nWhat year was the program first broadcast?\tA company\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (A company, broadcast, programs) -> A company (1819ms)\nWhat year was the program first broadcast?\tthe network\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the network, broadcast, the program) -> the network (1819ms)\nWhat year was the program first broadcast?\tWKAR\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (WKAR, broadcast, radio programs) -> WKAR (1819ms)\nWhat year was the program first broadcast?\tdivers telegram companies\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (divers telegram companies, broadcast, German programming) -> divers telegram companies (1824ms)\nWhat year was the program first broadcast?\tVOA\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (VOA, broadcasts, programs) -> VOA (1822ms)\nWhat year was the program first broadcast?\tBeijing TV Station\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Beijing TV Station, broadcast, a program) -> Beijing TV Station (1822ms)\nWhat year was the program first broadcast?\tthe Supreme Court\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the Supreme Court, broadcast, the program) -> the Supreme Court (1822ms)\nWhat year was the program first broadcast?\tBBC Radio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (BBC Radio, broadcast, 6 programs) -> BBC Radio (1824ms)\nWhat year was the program first broadcast?\tthe licensee\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the licensee, broadcasts, adult programming) -> the licensee (1825ms)\nWhat year was the program first broadcast?\tFrontline\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Frontline, broadcast, the program) -> Frontline (1824ms)\nWhat year was the program first broadcast?\tshortwave operations\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (shortwave operations, broadcast, programs) -> shortwave operations (1819ms)\nWhat year was the program first broadcast?\tTelevision channels\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Television channels, broadcast, special programs) -> Television channels (1819ms)\nWhat year was the program first broadcast?\tair talent\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (air talent, broadcast, additional programming) -> air talent (1821ms)\nWhat year was the program first broadcast?\tPublic Broadcasting stations\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Public Broadcasting stations, broadcast, programs) -> Public Broadcasting stations (1821ms)\nWhat year was the program first broadcast?\tthe East Coast\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the East Coast, broadcast, the program) -> the East Coast (1822ms)\nWhat year was the program first broadcast?\tDzimwe Community Radio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Dzimwe Community Radio, broadcasts, its programs) -> Dzimwe Community Radio (1821ms)\nWhat year was the program first broadcast?\tKSER\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (KSER, broadcast, programming) -> KSER (1825ms)\nWhat year was the program first broadcast?\tthe station\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the station, broadcast, its programming) -> the station (1826ms)\nWhat year was the program first broadcast?\tThe festival\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The festival, broadcasted, four programs) -> The festival (1819ms)\nWhat year was the program first broadcast?\tThe Arabic network\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The Arabic network, broadcasts, its programs) -> The Arabic network (1822ms)\nWhat year was the program first broadcast?\tThe Foundation\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The Foundation, broadcast, three programs) -> The Foundation (1821ms)\nWhat year was the program first broadcast?\tLightning\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Lightning, broadcast, its programs) -> Lightning (1822ms)\nWhat year was the program first broadcast?\tLocal and public TV stations\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Local and public TV stations, broadcast, programs) -> Local and public TV stations (1825ms)\nWhat year was the program first broadcast?\tthe television networks\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the television networks, broadcast, emergency programming) -> the television networks (1819ms)\nWhat year was the program first broadcast?\tFox\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Fox, broadcast, their programs) -> Fox (1826ms)\nWhat year was the program first broadcast?\tthe times stations\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the times stations, broadcast, the programs) -> the times stations (1819ms)\nWhat year was the program first broadcast?\tThe radio station\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The radio station, broadcasts, programs) -> The radio station (1822ms)\nWhat year was the program first broadcast?\tXbox\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Xbox, broadcast, the program) -> Xbox (1824ms)\nWhat year was the program first broadcast?\tprovincial radio and TV stations\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (provincial radio and TV stations, broadcast, programs) -> provincial radio and TV stations (1824ms)\nWhat year was the program first broadcast?\tthe SAT-7 Pars network\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the SAT-7 Pars network, broadcasts, Christian programming) -> the SAT-7 Pars network (1824ms)\nWhat year was the program first broadcast?\tfacilities\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (facilities, broadcast, multiple programs) -> facilities (1825ms)\nWhat year was the program first broadcast?\tKEXP\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (KEXP, broadcast, programming) -> KEXP (1824ms)\nWhat year was the program first broadcast?\tthe recent show\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, be broadcast of, program) -> (the recent show, was a live broadcast of, the program) -> the recent show (1824ms)\nWhat year was the program first broadcast?\tprograms\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (programs, broadcast, live programs) -> programs (1825ms)\nWhat year was the program first broadcast?\tthe satellite\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the satellite, broadcast, programs) -> the satellite (1819ms)\nWhat year was the program first broadcast?\tDetroit\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Detroit, broadcast, programs) -> Detroit (1826ms)\nWhat year was the program first broadcast?\tBermel radio\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Bermel radio, broadcasts, programs) -> Bermel radio (1822ms)\nWhat year was the program first broadcast?\tNBC\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (NBC, broadcast, a program) -> NBC (1825ms)\nWhat year was the program first broadcast?\tout\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (out, broadcast, his program) -> out (1823ms)\nWhat year was the program first broadcast?\tYamayska\t-0.111111111111\tWhat year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Yamayska, broadcast, radio programs) -> Yamayska (1824ms)\nWhat year was the program first broadcast?\tCrass Matthews\t-0.666666666658\tWhat year was the program first broadcast? -> $x: ($x, first broadcast, program) -> (Crass Matthews, first broadcast the commercial on, his program) -> Crass Matthews (1826ms)\nWhat year was the program first broadcast?\tKXLY 4\t-0.666666666658\tWhat year was the program first broadcast? -> $x: ($x, first broadcast, program) -> (KXLY 4, was also first to broadcast, an HD program) -> KXLY 4 (1826ms)\nWhat year was the program first broadcast?\tUnited States\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The program, was first broadcasted in, United States) -> United States (1826ms)\nWhat year was the program first broadcast?\t1992\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (Irwin?s Crocodile Hunter program, was first broadcast in, 1992) -> 1992 (1827ms)\nWhat year was the program first broadcast?\tOctober 2011\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (This program, was first broadcast in, October 2011) -> October 2011 (1827ms)\nWhat year was the program first broadcast?\tthe Boston area\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The programs, were first broadcast in, the Boston area) -> the Boston area (1826ms)\nWhat year was the program first broadcast?\t1963\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The television program, was first broadcasted in, 1963) -> 1963 (1827ms)\nWhat year was the program first broadcast?\tOctober 27 , 1957\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (this program, was first broadcast on, October 27 , 1957) -> October 27 , 1957 (1827ms)\nWhat year was the program first broadcast?\t1956\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast in, 1956) -> 1956 (1827ms)\nWhat year was the program first broadcast?\t1928\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast in, 1928) -> 1928 (1827ms)\nWhat year was the program first broadcast?\t1983\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast in, 1983) -> 1983 (1826ms)\nWhat year was the program first broadcast?\tMarch\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The program, was first broadcasted in, March) -> March (1826ms)\nWhat year was the program first broadcast?\tUPN\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast on, UPN) -> UPN (1826ms)\nWhat year was the program first broadcast?\tOctober 2001\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (This program, was first broadcast in, October 2001) -> October 2001 (1827ms)\nWhat year was the program first broadcast?\t1986\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The programs, were first broadcast in, 1986) -> 1986 (1827ms)\nWhat year was the program first broadcast?\tSaturday 27 June\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The program, is first broadcast on, Saturday 27 June) -> Saturday 27 June (1826ms)\nWhat year was the program first broadcast?\tAug. 5 , 1957\t-0.777777777779\tWhat year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast nationally on, Aug. 5 , 1957) -> Aug. 5 , 1957 (1826ms)\nWhat birthstone is turquoise?\tthe month\t-1.4444444444559998\tWhat birthstone is turquoise? -> $x: (turquoise, be birthstone of, $x) -> (December Birthstone Turquoise, is the birthstone of, the month) -> the month (502ms)\nWhat birthstone is turquoise?\tDecember\t-1.4444444444559998\tWhat birthstone is turquoise? -> $x: (turquoise, be birthstone of, $x) -> (Turquoise, is the traditional birthstone of, December) -> December (502ms)\nWhat birthstone is turquoise?\tSagittarius\t-1.4444444444559998\tWhat birthstone is turquoise? -> $x: (turquoise, be birthstone of, $x) -> (Turquoise, is the birthstone of, Sagittarius) -> Sagittarius (502ms)\nHow many events are part of the LPGA tour?\tKingsmill Resort\t0.666666666664\tHow many events are part of the LPGA tour? -> $x: ($x, be part of, lpga tour) -> (Kingsmill Resort, is thrilled to be part of, the 2012 LPGA Tour) -> Kingsmill Resort (686ms)\nHow many events are part of the LPGA tour?\tthe length\t-0.0\tHow many events are part of the LPGA tour? -> $x: ($x, find, lpga tour) -> (the length, found on, modern PGA and L.P.G.A Tour courses) -> the length (686ms)\nHow many events are part of the LPGA tour?\tWie\t-0.0\tHow many events are part of the LPGA tour? -> $x: ($x, find, lpga tour) -> (Wie, is nowhere to be found on, the LPGA Tour) -> Wie (686ms)\nHow many events are part of the LPGA tour?\tIowa\t-0.0\tHow many events are part of the LPGA tour? -> $x: ($x, produce, lpga tour) -> (Iowa, produced, an LPGA Tour Player) -> Iowa (686ms)\nWhat was Sammy Sosa's team?\tTodd Hollandsworth\t-0.333333333347\tWhat was Sammy Sosa's team? -> $x: ($x, play for, sammy sosa) -> (Todd Hollandsworth, played for, Sammy Sosa) -> Todd Hollandsworth (741ms)\nWhat was Sammy Sosa's team?\tthe hell\t-0.444444444458\tWhat was Sammy Sosa's team? -> $x: ($x, happen to, sammy sosa) -> (the hell, has happened to, Sammy Sosa) -> the hell (741ms)\nWhat was Sammy Sosa's team?\tthe Texas Rangers\t-1.6666666666780001\tWhat was Sammy Sosa's team? -> $x: (sammy sosa, play for, $x) -> (Slugger Sammy Sosa, plays for, the Texas Rangers) -> the Texas Rangers (741ms)\nWhat was Sammy Sosa's team?\tthe Cubs\t-1.6666666666780001\tWhat was Sammy Sosa's team? -> $x: (sammy sosa, play for, $x) -> (Sammy Sosa, played for, the Cubs) -> the Cubs (741ms)\nWhat was Sammy Sosa's team?\tCubs\t-1.6666666666780001\tWhat was Sammy Sosa's team? -> $x: (sammy sosa, play for, $x) -> (sammy sosa, plays for the team, Cubs) -> Cubs (741ms)\nWhat city is Lake Washington by?\tRainbow trout\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Rainbow trout, Found in, Lake Washington) -> Rainbow trout (728ms)\nWhat city is Lake Washington by?\tlake stevens\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (lake stevens, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Stevens,%20Washington) -> lake stevens (765ms)\nWhat city is Lake Washington by?\tfallen leaf lake\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (fallen leaf lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Fallen%20Leaf%20Lake%20(Washington)) -> fallen leaf lake (765ms)\nWhat city is Lake Washington by?\tCutthroat trout\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Cutthroat trout, Found in, Lake Washington) -> Cutthroat trout (765ms)\nWhat city is Lake Washington by?\tSmallmouth bass\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Smallmouth bass, Found in, Lake Washington) -> Smallmouth bass (765ms)\nWhat city is Lake Washington by?\tLAKE TAPPS\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (LAKE TAPPS, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Tapps%20(Washington)) -> LAKE TAPPS (765ms)\nWhat city is Lake Washington by?\ta Hell Diver\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (a Hell Diver, found in, a Washington State lake) -> a Hell Diver (765ms)\nWhat city is Lake Washington by?\tlake river\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (lake river, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20River%20(Washington)) -> lake river (728ms)\nWhat city is Lake Washington by?\tSockeye salmon\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Sockeye salmon, Found in, Lake Washington) -> Sockeye salmon (765ms)\nWhat city is Lake Washington by?\ta Seattle  bartender\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (a Seattle  bartender, finds a horny merman in, Lake Washington) -> a Seattle  bartender (765ms)\nWhat city is Lake Washington by?\t7 a.m.\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (7 a.m., found, Lake Washington calm) -> 7 a.m. (765ms)\nWhat city is Lake Washington by?\tLake Ketchum\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Lake Ketchum, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Ketchum,%20Washington) -> Lake Ketchum (728ms)\nWhat city is Lake Washington by?\tWelcome Home ! Eden?s acorn\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Welcome Home ! Eden?s acorn, found floating in, Lake Washington) -> Welcome Home ! Eden?s acorn (728ms)\nWhat city is Lake Washington by?\tBanks Lake South\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Banks Lake South, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Banks%20Lake%20South,%20Washington) -> Banks Lake South (765ms)\nWhat city is Lake Washington by?\tLargemouth bass\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Largemouth bass, Found in, Lake Washington) -> Largemouth bass (765ms)\nWhat city is Lake Washington by?\tLake Cavanaugh\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Lake Cavanaugh, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Cavanaugh,%20Washington) -> Lake Cavanaugh (765ms)\nWhat city is Lake Washington by?\tmedical lake\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (medical lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Medical%20Lake,%20Washington) -> medical lake (765ms)\nWhat city is Lake Washington by?\tWashington Lake\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Washington Lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Washington%20Lake%20(Idaho)) -> Washington Lake (728ms)\nWhat city is Lake Washington by?\tLake Forest Park\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Lake Forest Park, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Forest%20Park,%20Washington) -> Lake Forest Park (728ms)\nWhat city is Lake Washington by?\tCoho salmon\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Coho salmon, Found in, Lake Washington) -> Coho salmon (766ms)\nWhat city is Lake Washington by?\ta body\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (a body, was found at, the Lake Washington house) -> a body (765ms)\nWhat city is Lake Washington by?\tCurtis Lake\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Curtis Lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Curtis%20Lake%20(Clark%20County,%20Washington)) -> Curtis Lake (728ms)\nWhat city is Lake Washington by?\tMIA\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (MIA, found a few days later at, his Lake Washington home) -> MIA (728ms)\nWhat city is Lake Washington by?\tChinook salmon\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Chinook salmon, Found in, Lake Washington) -> Chinook salmon (728ms)\nWhat city is Lake Washington by?\ttraction\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (traction, was hard to find on, Lake Washington Boulevard) -> traction (728ms)\nWhat city is Lake Washington by?\tWashington Park Lake\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Washington Park Lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Washington%20Park%20Lake) -> Washington Park Lake (728ms)\nWhat city is Lake Washington by?\tkitsap lake\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (kitsap lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Erlands%20Point%2DKitsap%20Lake,%20Washington) -> kitsap lake (765ms)\nWhat city is Lake Washington by?\tLake Washington Ship Canal\t0.22222222222199994\tWhat city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Lake Washington Ship Canal, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Washington%20Ship%20Canal) -> Lake Washington Ship Canal (765ms)\nWhich film won three awards at the festival?\tthe subject\t0.555555555555\tWhich film won three awards at the festival? -> $x: ($x, win three award at, festival) -> (the subject, won three awards at, the festival) -> the subject (467ms)\nWhich film won three awards at the festival?\tEurope\t0.555555555555\tWhich film won three awards at the festival? -> $x: ($x, win three award at, festival) -> (Europe, has won three awards at, international film festivals) -> Europe (467ms)\nWhich film won three awards at the festival?\t?Paper Dolls ?\t0.555555555555\tWhich film won three awards at the festival? -> $x: ($x, win three award at, festival) -> (?Paper Dolls ?, won three awards at, the Berlin Film Festival) -> ?Paper Dolls ? (467ms)\nWhich film won three awards at the festival?\tThe film\t0.555555555555\tWhich film won three awards at the festival? -> $x: ($x, win three award at, festival) -> (The film, won three awards at, the film festival) -> The film (467ms)\nWhat is the birthstone of October?\tTourmaline\t0.222222222219\tWhat is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (Tourmaline, is the birthstone of, October) -> Tourmaline (679ms)\nWhat is the birthstone of October?\tthe 14th and 18th years\t0.222222222219\tWhat is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (the 14th and 18th years, is the birthstone of, October) -> the 14th and 18th years (679ms)\nWhat is the birthstone of October?\tCoral\t0.222222222219\tWhat is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (Coral, is the birthstone of, October and November) -> Coral (679ms)\nWhat is the birthstone of October?\tOpal\t0.222222222219\tWhat is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (Opal, is one of the birthstones for, October) -> Opal (679ms)\nWhat is the birthstone of October?\tThe opal\t0.222222222219\tWhat is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (The opal, is the birthstone of, October) -> The opal (679ms)\nWhat is the birthstone of October?\tthe 8th year\t0.222222222219\tWhat is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (the 8th year, is the traditional birthstone of, October) -> the 8th year (679ms)\nWhen is the summer solstice?\tDamanhur\t0.666666666667\tWhen is the summer solstice? -> $x: (summer solstice, be celebrate in, $x) -> (the first summer solstice, was celebrated in, Damanhur) -> Damanhur (1306ms)\nWhen is the summer solstice?\tconjunction\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer Festival 2002, was celebrated in, conjunction) -> conjunction (1224ms)\nWhen is the summer solstice?\tthe first or\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer birthdays, will be celebrated in, the first or) -> the first or (1151ms)\nWhen is the summer solstice?\tmodern society\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (the Summer Solstice, is still celebrated in, modern society) -> modern society (1307ms)\nWhen is the summer solstice?\tJune\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer birthdays, will be celebrated in, June) -> June (1151ms)\nWhen is the summer solstice?\ttown\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer Arts Festival, are celebrated in, town) -> town (1224ms)\nWhen is the summer solstice?\tMay\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer birthdays, are celebrated in, May) -> May (1255ms)\nWhen is the summer solstice?\tRome\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer, was celebrated in, Rome) -> Rome (1306ms)\nWhen is the summer solstice?\thill stations\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (The Summer Festival, is celebrated in, hill stations) -> hill stations (1255ms)\nWhen is the summer solstice?\tplaces\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (the summer solstice, is celebrated in, places) -> places (1224ms)\nWhen is the summer solstice?\tagricultural areas\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (summer, is celebrated in, agricultural areas) -> agricultural areas (1255ms)\nWhen is the summer solstice?\tIreland\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (means summers end, was celebrated in, Ireland) -> Ireland (1255ms)\nWhen is the summer solstice?\tMount Abu\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer Festival, is celebrated in, Mount Abu) -> Mount Abu (1255ms)\nWhen is the summer solstice?\tthe month\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (The Summer Festival, is celebrated every year in, the month) -> the month (1306ms)\nWhen is the summer solstice?\tMichigan\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (summer, is celebrated in, Michigan) -> Michigan (1255ms)\nWhen is the summer solstice?\tDorothea Rockburne?s\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (The summer night, is celebrated in, Dorothea Rockburne?s) -> Dorothea Rockburne?s (1255ms)\nWhen is the summer solstice?\tDecember\t0.666666666667\tWhen is the summer solstice? -> $x: (summer solstice, be celebrate in, $x) -> (the Summer Solstice, is celebrated in, December) -> December (1306ms)\nWhen is the summer solstice?\tstyle\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (the Summer Reading Club, was celebrated in, style) -> style (1151ms)\nWhen is the summer solstice?\tthe country\t0.666666666667\tWhen is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer, is highly celebrated in, the country) -> the country (1224ms)\nWhen is the summer solstice?\tLeo\t0.222222222221\tWhen is the summer solstice? -> $x: ($x, be in, summer solstice) -> (Leo, was in, the summer solstice) -> Leo (1843ms)\nWhen is the summer solstice?\tEgyptians\t0.222222222221\tWhen is the summer solstice? -> $x: ($x, be in, summer solstice) -> (Egyptians, were especially interested in, the summer solstice) -> Egyptians (1307ms)\nWhen is the summer solstice?\tThe 9th , or last\t0.222222222221\tWhen is the summer solstice? -> $x: ($x, be in, summer solstice) -> (The 9th , or last, is held in, the summer and winter solstices) -> The 9th , or last (1306ms)\nWhen is the summer solstice?\tWe?ll\t0.222222222221\tWhen is the summer solstice? -> $x: ($x, be in, summer solstice) -> (We?ll, be participating in, the 24 Hour Summer Solstice) -> We?ll (1307ms)\nWhen is the summer solstice?\tMonday\t0.222222222221\tWhen is the summer solstice? -> $x: ($x, be in, summer solstice) -> (Monday, was listed in, my Summer Solstice post) -> Monday (1843ms)\nWhen is the summer solstice?\ta clockwise direction\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, do, summer solstice) -> (a clockwise direction, does, the Summer Solstice Sunrise) -> a clockwise direction (2166ms)\nWhen is the summer solstice?\tfourth\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (fourth, is, Summer Solstice) -> fourth (2166ms)\nWhen is the summer solstice?\tThe winter solstice\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The winter solstice, is the counterpart of, summer solstice) -> The winter solstice (2203ms)\nWhen is the summer solstice?\tthe catastrophe\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the catastrophe, was the 20+ year span from, summer solstice) -> the catastrophe (2205ms)\nWhen is the summer solstice?\tthe leaves\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the leaves, must be gathered before, Summer Solstice) -> the leaves (2085ms)\nWhen is the summer solstice?\t22 June\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (22 June, may be subject to change due to, Summer Solstice) -> 22 June (2133ms)\nWhen is the summer solstice?\tJune 21\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 21, is, Summer Solstice) -> June 21 (2206ms)\nWhen is the summer solstice?\t21 June\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (21 June, is, the summer solstice) -> 21 June (2133ms)\nWhen is the summer solstice?\tJune 20\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 20, was, Summer Solstice) -> June 20 (2181ms)\nWhen is the summer solstice?\tThe celestial event\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The celestial event, was, the summer solstice) -> The celestial event (2205ms)\nWhen is the summer solstice?\tthe sun\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, do, summer solstice) -> (the sun, does a month after, the summer solstice) -> the sun (2203ms)\nWhen is the summer solstice?\tThe same\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The same, is the case at, summer solstice) -> The same (2205ms)\nWhen is the summer solstice?\tLee Welles Today\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Lee Welles Today, is, the Summer Solstice) -> Lee Welles Today (2041ms)\nWhen is the summer solstice?\tThe deadline\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The deadline, is, the Summer Solstice) -> The deadline (2203ms)\nWhen is the summer solstice?\t10-Season Practice Tomorrow\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (10-Season Practice Tomorrow, is, Summer Solstice 2010) -> 10-Season Practice Tomorrow (2205ms)\nWhen is the summer solstice?\tthe south\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the south, is, summer solstice) -> the south (1932ms)\nWhen is the summer solstice?\t21st December\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (21st December, is, Summer Solstice) -> 21st December (2040ms)\nWhen is the summer solstice?\tThe ?slenska ?satr?arf?lagi?\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The ?slenska ?satr?arf?lagi?, was founded on, summer solstice) -> The ?slenska ?satr?arf?lagi? (1932ms)\nWhen is the summer solstice?\teight delicate characters\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, date be, summer solstice) -> (eight delicate characters, is dated to, the summer solstice) -> eight delicate characters (2165ms)\nWhen is the summer solstice?\tthe movie biz\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, do, summer solstice) -> (the movie biz, does n?t wait for, the summer solstice) -> the movie biz (2165ms)\nWhen is the summer solstice?\tDruid Arthur Pendragon\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Druid Arthur Pendragon, was arrested on, Summer Solstice) -> Druid Arthur Pendragon (2166ms)\nWhen is the summer solstice?\t?Ritusamhara? 4 times\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (?Ritusamhara? 4 times, now is the time for, Summer Solstice) -> ?Ritusamhara? 4 times (2133ms)\nWhen is the summer solstice?\tSteven Myhill-Jones Today\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Steven Myhill-Jones Today, is, the summer solstice) -> Steven Myhill-Jones Today (2133ms)\nWhen is the summer solstice?\tthe year\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the year, were, Summer Solstice) -> the year (2205ms)\nWhen is the summer solstice?\tJune 21st\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 21st, was, the Summer Solstice) -> June 21st (2203ms)\nWhen is the summer solstice?\tthe midsummer bondfires\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the midsummer bondfires, are held outdoors on, Summer Solstice) -> the midsummer bondfires (2181ms)\nWhen is the summer solstice?\tthe Winter Solstice\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the Winter Solstice, is, the Summer Solstice) -> the Winter Solstice (2181ms)\nWhen is the summer solstice?\tLast night\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Last night, was, summer solstice) -> Last night (2040ms)\nWhen is the summer solstice?\t270\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (270, is, southern summer solstice) -> 270 (2040ms)\nWhen is the summer solstice?\tThe date\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The date, was, the Summer Solstice time) -> The date (1932ms)\nWhen is the summer solstice?\tEurope\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Europe, is, the summer solstice) -> Europe (2205ms)\nWhen is the summer solstice?\t21 june Today\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (21 june Today, is, Summer Solstice) -> 21 june Today (2203ms)\nWhen is the summer solstice?\tfour times\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (four times, now is the time for, Summer Solstice) -> four times (2203ms)\nWhen is the summer solstice?\teach year\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (each year, is the start of, Summer Solstice) -> each year (2203ms)\nWhen is the summer solstice?\tThe sun\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The sun, has always been the symbol of, summer solstice) -> The sun (2165ms)\nWhen is the summer solstice?\tJune 21 , 2011 Today\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 21 , 2011 Today, is, the Summer Solstice) -> June 21 , 2011 Today (2181ms)\nWhen is the summer solstice?\tLast week\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Last week, was, the summer solstice) -> Last week (2206ms)\nWhen is the summer solstice?\tLitha\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Litha, is, the Summer Solstice) -> Litha (2205ms)\nWhen is the summer solstice?\tSaturn\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Saturn, was close to, summer solstice) -> Saturn (2085ms)\nWhen is the summer solstice?\tThe Southern Hemisphere December 22nd\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The Southern Hemisphere December 22nd, is, the Summer Solstice) -> The Southern Hemisphere December 22nd (2203ms)\nWhen is the summer solstice?\t11-9pm\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (11-9pm, will be celebrating, Summer Solstice) -> 11-9pm (1843ms)\nWhen is the summer solstice?\tthe Dragon Boat Day\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the Dragon Boat Day, usually is close to, summer solstice) -> the Dragon Boat Day (2181ms)\nWhen is the summer solstice?\tthe longest day\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the longest day, is known as, Summer Solstice) -> the longest day (2085ms)\nWhen is the summer solstice?\t?Tuesday\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (?Tuesday, is, the Summer Solstice) -> ?Tuesday (2203ms)\nWhen is the summer solstice?\tGemini and Cancer\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Gemini and Cancer, is, the Summer Solstice) -> Gemini and Cancer (2206ms)\nWhen is the summer solstice?\tASR\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, happen to, summer solstice) -> (ASR, happens to be, the summer solstice) -> ASR (2085ms)\nWhen is the summer solstice?\tSNWMF\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (SNWMF, is, a summer solstice) -> SNWMF (2040ms)\nWhen is the summer solstice?\t2011\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (2011, was the first day of, Summer Solstice) -> 2011 (1843ms)\nWhen is the summer solstice?\tYesterday\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Yesterday, was, the summer solstice) -> Yesterday (2205ms)\nWhen is the summer solstice?\tTomorrow\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Tomorrow, is, the Summer Solstice) -> Tomorrow (2133ms)\nWhen is the summer solstice?\tCancer\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Cancer, is, the Summer solstice sign) -> Cancer (2205ms)\nWhen is the summer solstice?\tthe images\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the images, is, the Summer Solstice) -> the images (2203ms)\nWhen is the summer solstice?\tthe celestial equator\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the celestial equator, is, the Summer Solstice) -> the celestial equator (2181ms)\nWhen is the summer solstice?\tJune 21 , 2011\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 21 , 2011, is, Summer Solstice) -> June 21 , 2011 (1933ms)\nWhen is the summer solstice?\tJune 20th\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 20th, is, Summer Solstice) -> June 20th (2206ms)\nWhen is the summer solstice?\tMead\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Mead, is the traditional drink for, Summer Solstice) -> Mead (2205ms)\nWhen is the summer solstice?\tFather\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Father, was, Summer Solstice) -> Father (2203ms)\nWhen is the summer solstice?\tWren Today\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Wren Today, is, Summer Solstice) -> Wren Today (2166ms)\nWhen is the summer solstice?\tTuesday\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Tuesday, was, the Summer Solstice) -> Tuesday (2204ms)\nWhen is the summer solstice?\tthe midsummer bonfires\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the midsummer bonfires, are held outdoors on, Summer Solstice) -> the midsummer bonfires (2040ms)\nWhen is the summer solstice?\tAshen divining rods\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Ashen divining rods, were cut on, Summer Solstice) -> Ashen divining rods (2040ms)\nWhen is the summer solstice?\t9:28pm Today\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (9:28pm Today, is, the summer solstice) -> 9:28pm Today (2085ms)\nWhen is the summer solstice?\tany sundial\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (any sundial, is really only accurate at, Summer Solstice) -> any sundial (2205ms)\nWhen is the summer solstice?\tSummer Solstice June\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Summer Solstice June, is, the Summer Solstice) -> Summer Solstice June (2203ms)\nWhen is the summer solstice?\tJune 20th or 21st\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 20th or 21st, is, the summer solstice) -> June 20th or 21st (2203ms)\nWhen is the summer solstice?\tgarlic\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (garlic, was due on, Summer Solstice) -> garlic (2203ms)\nWhen is the summer solstice?\tJune 25\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 25, is, the Summer Solstice Party) -> June 25 (2203ms)\nWhen is the summer solstice?\tPagans\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Pagans, elsewhere will be celebrating, Summer Solstice) -> Pagans (2085ms)\nWhen is the summer solstice?\tFrankie Saturday\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Frankie Saturday, was, summer Solstice) -> Frankie Saturday (1932ms)\nWhen is the summer solstice?\tSanta Barbarans\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Santa Barbarans, will be celebrating, Summer Solstice) -> Santa Barbarans (1932ms)\nWhen is the summer solstice?\tThe northernmost point\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The northernmost point, is, the summer solstice) -> The northernmost point (2181ms)\nWhen is the summer solstice?\tJuly 22\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (July 22, was, the summer solstice) -> July 22 (2205ms)\nWhen is the summer solstice?\tDec. 22\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Dec. 22, is, the summer solstice) -> Dec. 22 (2206ms)\nWhen is the summer solstice?\tmeditation\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (meditation, will be on, SUMMER SOLSTICE) -> meditation (1932ms)\nWhen is the summer solstice?\tThe Sun\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The Sun, is, the Summer Solstice) -> The Sun (2040ms)\nWhen is the summer solstice?\tthe climactic scene\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the climactic scene, was based around, Summer Solstice) -> the climactic scene (2133ms)\nWhen is the summer solstice?\t4:57 pm Today\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (4:57 pm Today, is, the summer solstice) -> 4:57 pm Today (2181ms)\nWhen is the summer solstice?\tThe following day\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The following day, was, the summer solstice) -> The following day (2205ms)\nWhen is the summer solstice?\tAlica Yesterday\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Alica Yesterday, was, the summer solstice) -> Alica Yesterday (2085ms)\nWhen is the summer solstice?\t10,000,000 Today\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (10,000,000 Today, is, the summer solstice) -> 10,000,000 Today (2181ms)\nWhen is the summer solstice?\tA fantastic thought\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (A fantastic thought, is news of, summer solstice) -> A fantastic thought (2205ms)\nWhen is the summer solstice?\tmistletoe\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (mistletoe, is sacred at, Summer Solstice) -> mistletoe (1843ms)\nWhen is the summer solstice?\tthe most glitter and confetti\t0.111111111111\tWhen is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the most glitter and confetti, is, Summer Solstice) -> the most glitter and confetti (1843ms)\nWhen is the summer solstice?\tthe herb\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the herb, was gathered at, both mid-summer and winter solstices) -> the herb (2206ms)\nWhen is the summer solstice?\tMistletoe\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (Mistletoe, was gathered at, mid-summer and winter solstices) -> Mistletoe (2208ms)\nWhen is the summer solstice?\twinter\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (winter, are sown at, the Summer Solstice) -> winter (2206ms)\nWhen is the summer solstice?\tthe Sun\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the Sun, was directly overhead at, the summer solstice) -> the Sun (2206ms)\nWhen is the summer solstice?\tThe Holly King\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (The Holly King, is the victor at, the Summer Solstice) -> The Holly King (2207ms)\nWhen is the summer solstice?\tthe Lord\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the Lord, is born at, the Summer Solstice) -> the Lord (2208ms)\nWhen is the summer solstice?\tthe Baptist\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the Baptist, was born at, the summer solstice) -> the Baptist (2206ms)\nWhen is the summer solstice?\tOregon\t-0.0\tWhen is the summer solstice? -> $x: (summer, be this year in, $x) -> (the summer, is so cold this year in, Oregon) -> Oregon (2207ms)\nWhen is the summer solstice?\tthe journey\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the journey, would be at, the summer solstice) -> the journey (2207ms)\nWhen is the summer solstice?\tJohn\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (John, would be born at, the Summer Solstice) -> John (2208ms)\nWhen is the summer solstice?\theightened activity\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (heightened activity, were initiated at, the Summer Solstice) -> heightened activity (2207ms)\nWhen is the summer solstice?\tthe creation\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the creation, was at, the summer solstice) -> the creation (2207ms)\nWhen is the summer solstice?\tThe lucky\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (The lucky, are born at, the Summer Solstice) -> The lucky (2206ms)\nWhen is the summer solstice?\tthe highest point\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the highest point, is at, the Summer Solstice) -> the highest point (2207ms)\nWhen is the summer solstice?\tKrittikas\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (Krittikas, were at, the Summer Solstice) -> Krittikas (2207ms)\nWhen is the summer solstice?\tphoto\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (photo, was taken back at, the Summer Solstice Event) -> photo (2207ms)\nWhen is the summer solstice?\tMoscow\t-0.0\tWhen is the summer solstice? -> $x: (summer, be this year in, $x) -> (The summer and autumn, were very nice this year in, Moscow) -> Moscow (2207ms)\nWhen is the summer solstice?\tmock battles\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (mock battles, are enacted at, the winter and summer solstices) -> mock battles (2206ms)\nWhen is the summer solstice?\tThe start\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (The start, was at, a summer solstice) -> The start (2206ms)\nWhen is the summer solstice?\tthe shadow\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the shadow, is shortest at, the summer solstice) -> the shadow (2207ms)\nWhen is the summer solstice?\tThe hot quality\t-0.0\tWhen is the summer solstice? -> $x: ($x, be at, summer solstice) -> (The hot quality, is maximized at, the summer solstice) -> The hot quality (2206ms)\nWhen is the summer solstice?\tthe days\t-0.888888888891\tWhen is the summer solstice? -> $x: ($x, get, summer solstice) -> (the days, getting shorter after, the summer solstice) -> the days (2208ms)\nWhen is the summer solstice?\tthe Pagan Police Group UK\t-1.0\tWhen is the summer solstice? -> $x: ($x, form, summer solstice) -> (the Pagan Police Group UK, only formed at, the Summer Solstice) -> the Pagan Police Group UK (2208ms)\nWhen is the summer solstice?\tSuchi\t-1.0\tWhen is the summer solstice? -> $x: ($x, form, summer solstice) -> (Suchi, formed, the summer solstice) -> Suchi (2208ms)\nWhen is the summer solstice?\tKupala Night\t-1.0\tWhen is the summer solstice? -> $x: ($x, event, summer solstice) -> (Kupala Night, Related Event, Summer solstice) -> Kupala Night (2208ms)\nWho is Paul Newman married to?\tJoanne Woodward\t1.44444444444\tWho is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, married, Joanne Woodward) -> Joanne Woodward (700ms)\nWho is Paul Newman married to?\tacclaimed actress Joanne Woodward\t1.44444444444\tWho is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, is married to, acclaimed actress Joanne Woodward) -> acclaimed actress Joanne Woodward (701ms)\nWho is Paul Newman married to?\tBritish author Roald Dahl\t1.44444444444\tWho is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, was married to, British author Roald Dahl) -> British author Roald Dahl (700ms)\nWho is Paul Newman married to?\tJanuary 29 , 1958\t1.44444444444\tWho is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, married on, January 29 , 1958) -> January 29 , 1958 (700ms)\nWho is Paul Newman married to?\t50 years\t1.44444444444\tWho is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, was married for, 50 years) -> 50 years (701ms)\nWho is Paul Newman married to?\tWestport\t0.555555555555\tWho is Paul Newman married to? -> $x: (paul newman, live in, $x) -> (Paul Newman, lived his private life in, Westport) -> Westport (700ms)\nWho is Paul Newman married to?\tWoodward\t-0.55555555555\tWho is Paul Newman married to? -> $x: ($x, marry, paul newman) -> (Woodward, is married to, Paul Newman) -> Woodward (729ms)\nWho is Paul Newman married to?\tty murray\t-0.55555555555\tWho is Paul Newman married to? -> $x: ($x, marry, paul newman) -> (ty murray, marry, katie holmes pixie paul newman) -> ty murray (729ms)\nWhere did the Hindenburg disaster occur?\tMay\t-0.0\tWhere did the Hindenburg disaster occur? -> $x: (hindenburg disaster, occur, $x) -> (The Hindenburg Disaster, occurred in, May) -> May (684ms)\nWhen was the telegraph invented?\tWoods\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Woods, also invented, the Multiplex Telegraph) -> Woods (1203ms)\nWhen was the telegraph invented?\tClaud Chappe\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Claud Chappe, invented, the optical telegraph) -> Claud Chappe (1236ms)\nWhen was the telegraph invented?\tCornell University\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Cornell University, is said to have invented, the telegraph pole) -> Cornell University (843ms)\nWhen was the telegraph invented?\tevery new medium\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (every new medium, ever invented from, the telegraph right) -> every new medium (1218ms)\nWhen was the telegraph invented?\tthe art\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the art, invented, the hydraulic telegraph) -> the art (2361ms)\nWhen was the telegraph invented?\tthe guy\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the guy, invented, the telegraph) -> the guy (1203ms)\nWhen was the telegraph invented?\tSamuel Morse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samuel Morse, invented, the telegraph) -> Samuel Morse (2361ms)\nWhen was the telegraph invented?\tThe guy\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (The guy, invented, the telegraph) -> The guy (1236ms)\nWhen was the telegraph invented?\tItalian Guglielmo Marconi\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Italian Guglielmo Marconi, invented, the wireless telegraph) -> Italian Guglielmo Marconi (1045ms)\nWhen was the telegraph invented?\tnature\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (nature, invented, a chemical telegraph) -> nature (1236ms)\nWhen was the telegraph invented?\tSir Charles Wheatstone\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Sir Charles Wheatstone, co-invented, the telegraph) -> Sir Charles Wheatstone (1156ms)\nWhen was the telegraph invented?\tEdison\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Edison, invented, the quadruplex telegraph) -> Edison (1689ms)\nWhen was the telegraph invented?\tthe American\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the American, invented, the telegraph) -> the American (1156ms)\nWhen was the telegraph invented?\tKarl Friedrich Gauss\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Karl Friedrich Gauss, co-invented, the telegraph) -> Karl Friedrich Gauss (1080ms)\nWhen was the telegraph invented?\tJoseph Henry\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Joseph Henry, invented, the telegraph) -> Joseph Henry (2360ms)\nWhen was the telegraph invented?\tThe manager\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (The manager, has invented a new system of, telegraph-signals) -> The manager (1471ms)\nWhen was the telegraph invented?\tGranville T. Woods\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Granville T. Woods, invented, the multiplex telegraph) -> Granville T. Woods (1080ms)\nWhen was the telegraph invented?\tthe artist\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the artist, also invented, the electric telegraph) -> the artist (1218ms)\nWhen was the telegraph invented?\tMorse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Morse, invents, his telegraph) -> Morse (2361ms)\nWhen was the telegraph invented?\tSamuel F.B. Morse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samuel F.B. Morse, invented, the telegraph) -> Samuel F.B. Morse (1080ms)\nWhen was the telegraph invented?\tthe who\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the who, invented, the first telegraph) -> the who (1471ms)\nWhen was the telegraph invented?\ta handy resource\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (a handy resource, was invented during, each decade--telegraph) -> a handy resource (1471ms)\nWhen was the telegraph invented?\tthe speed\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the speed, invented, the telegraph) -> the speed (1203ms)\nWhen was the telegraph invented?\tGeorge Phelps\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (George Phelps, invented, his telegraph instruments) -> George Phelps (1236ms)\nWhen was the telegraph invented?\tMarconi\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Marconi, invented, the telegraph) -> Marconi (1689ms)\nWhen was the telegraph invented?\t1831\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (1831, had invented, a demonstration telegraph) -> 1831 (1156ms)\nWhen was the telegraph invented?\tMr. Woods\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Mr. Woods, invented, the telegraph) -> Mr. Woods (843ms)\nWhen was the telegraph invented?\tnativist\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (nativist, invented, the telegraph) -> nativist (1156ms)\nWhen was the telegraph invented?\tChicago\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Chicago, had also invented, an improved telegraph receiver) -> Chicago (1116ms)\nWhen was the telegraph invented?\tSamuel F. B. Morse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samuel F. B. Morse, invented, the first practical telegraph) -> Samuel F. B. Morse (1689ms)\nWhen was the telegraph invented?\tSteinhill\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Steinhill, had invented, the telegraph) -> Steinhill (1203ms)\nWhen was the telegraph invented?\tthe telegraph\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the telegraph, was invented until, the last telegraph) -> the telegraph (1116ms)\nWhen was the telegraph invented?\ta French engineer\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (a French engineer, invented, the Baudot telegraph code) -> a French engineer (1045ms)\nWhen was the telegraph invented?\tphysicist\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (physicist, invented, the wireless telegraph) -> physicist (1045ms)\nWhen was the telegraph invented?\tthe portrait painter\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the portrait painter, invented, the first telegraph) -> the portrait painter (1079ms)\nWhen was the telegraph invented?\tSamuel Finley Breese Morse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samuel Finley Breese Morse, invented, the telegraph) -> Samuel Finley Breese Morse (1689ms)\nWhen was the telegraph invented?\tElisha Gray\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Elisha Gray, invented, the Musical Telegraph) -> Elisha Gray (2361ms)\nWhen was the telegraph invented?\tGuglielmo Marconi\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Guglielmo Marconi, invented, the wireless telegraph) -> Guglielmo Marconi (1045ms)\nWhen was the telegraph invented?\tJoesph Henry\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Joesph Henry, invented, the telegraph) -> Joesph Henry (1236ms)\nWhen was the telegraph invented?\tWheatstone\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Wheatstone, had invented, the telegraph) -> Wheatstone (1218ms)\nWhen was the telegraph invented?\ta Scottish watchmaker\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (a Scottish watchmaker, invented, the chemical telegraph) -> a Scottish watchmaker (1080ms)\nWhen was the telegraph invented?\tSamual Morse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samual Morse, invented, the telegraph) -> Samual Morse (1045ms)\nWhen was the telegraph invented?\tto\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (to, invented, the telegraph) -> to (1236ms)\nWhen was the telegraph invented?\tHenry\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Henry, had invented, the telegraph) -> Henry (1116ms)\nWhen was the telegraph invented?\tBell\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Bell, was trying to invent, a talking telegraph) -> Bell (1471ms)\nWhen was the telegraph invented?\t1832 Samuel Morse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (1832 Samuel Morse, invented, the telegraph) -> 1832 Samuel Morse (1218ms)\nWhen was the telegraph invented?\tA prominent artist and nativist\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (A prominent artist and nativist, invented, the telegraph) -> A prominent artist and nativist (1471ms)\nWhen was the telegraph invented?\tthe current core curriculum\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the current core curriculum, invented, the telegraph) -> the current core curriculum (1689ms)\nWhen was the telegraph invented?\tthe American painter Morse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the American painter Morse, invented, the electric telegraph) -> the American painter Morse (1156ms)\nWhen was the telegraph invented?\t1837 Samuel Morse\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (1837 Samuel Morse, invented, the electric telegraph) -> 1837 Samuel Morse (1689ms)\nWhen was the telegraph invented?\ta thousand men\t1.8888888888830002\tWhen was the telegraph invented? -> $x: ($x, invent, telegraph) -> (a thousand men, to invent, a telegraph) -> a thousand men (1689ms)\nWhen was the telegraph invented?\tThe Victorian Internet\t1.333333333329\tWhen was the telegraph invented? -> $x: ($x, be history of, telegraph) -> (The Victorian Internet, is a history of, the telegraph) -> The Victorian Internet (2361ms)\nWhen was the telegraph invented?\tthe most important\t1.333333333329\tWhen was the telegraph invented? -> $x: ($x, be history of, telegraph) -> (the most important, is the history of, Federal Telegraph) -> the most important (2360ms)\nWhen was the telegraph invented?\t1793 and 1794\t1.333333333329\tWhen was the telegraph invented? -> $x: ($x, be history of, telegraph) -> (1793 and 1794, is a loving history of, the Chappe telegraph) -> 1793 and 1794 (2361ms)\nWhen was the telegraph invented?\tfirst\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented, first) -> first (2411ms)\nWhen was the telegraph invented?\tthe nineteenth century\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented in, the nineteenth century) -> the nineteenth century (2401ms)\nWhen was the telegraph invented?\tlong\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented, long) -> long (2397ms)\nWhen was the telegraph invented?\tmore human interfaces\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (telegraph machines, were invented with, more human interfaces) -> more human interfaces (2406ms)\nWhen was the telegraph invented?\t1837\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The telegraph, was invented in, 1837) -> 1837 (2401ms)\nWhen was the telegraph invented?\tthe last telegraph\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented until, the last telegraph) -> the last telegraph (2406ms)\nWhen was the telegraph invented?\t15 years\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, had only been invented, 15 years) -> 15 years (2397ms)\nWhen was the telegraph invented?\tEngland\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The electric telegraph, was originally invented in, England) -> England (2411ms)\nWhen was the telegraph invented?\t1861 Gold\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, discover, telegraph) -> (1861 Gold, is discovered at, Telegraph Creek) -> 1861 Gold (2411ms)\nWhen was the telegraph invented?\tHerbalife\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, discover, telegraph) -> (Herbalife, can be discovered on, telegraph poles) -> Herbalife (2401ms)\nWhen was the telegraph invented?\ta couple\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (Samuel Morse?s telegraph system, had been invented, a couple) -> a couple (2397ms)\nWhen was the telegraph invented?\t1844\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The telegraph key, was invented in, 1844) -> 1844 (2406ms)\nWhen was the telegraph invented?\tthe laptop\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, create, telegraph) -> (the laptop, creates blurry clouds of, telegraph-like coding) -> the laptop (2411ms)\nWhen was the telegraph invented?\tthe time\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented, the time) -> the time (2406ms)\nWhen was the telegraph invented?\tFrance\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The optical telegraph, was invented in, France) -> France (2397ms)\nWhen was the telegraph invented?\tthe 1830s\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented in, the 1830s) -> the 1830s (2401ms)\nWhen was the telegraph invented?\tAmerica\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (a telegraph, is invented in, America) -> America (2397ms)\nWhen was the telegraph invented?\tAlfred Vail\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, create, telegraph) -> (Alfred Vail, created, the Morse telegraph key) -> Alfred Vail (2401ms)\nWhen was the telegraph invented?\t1794\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The OG telegraph system, was invented in, 1794) -> 1794 (2401ms)\nWhen was the telegraph invented?\tA simple job\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, create, telegraph) -> (A simple job, create, a telegraph) -> A simple job (2406ms)\nWhen was the telegraph invented?\tsite\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, create, telegraph) -> (site, was created right into, a telegraph) -> site (2397ms)\nWhen was the telegraph invented?\tWilliam Marconi\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The wireless telegraph, was invented by, William Marconi) -> William Marconi (2401ms)\nWhen was the telegraph invented?\tthe eighteen hundreds people\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented in, the eighteen hundreds people) -> the eighteen hundreds people (2401ms)\nWhen was the telegraph invented?\tthirty years\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The telegraph, had been invented, thirty years) -> thirty years (2406ms)\nWhen was the telegraph invented?\tClaude Chappe\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The non-electric telegraph, was invented by, Claude Chappe) -> Claude Chappe (2406ms)\nWhen was the telegraph invented?\tIraqi intelligence documents\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, discover, telegraph) -> (Iraqi intelligence documents, discovered by, The Telegraph) -> Iraqi intelligence documents (2397ms)\nWhen was the telegraph invented?\tstudents\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, create, telegraph) -> (students, can create, their own telegraph system) -> students (2406ms)\nWhen was the telegraph invented?\t1832\t1.22222222222\tWhen was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The first electromagnetic telegraph, was invented in, 1832) -> 1832 (2406ms)\nWhen was the telegraph invented?\tthe four suites\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, create, telegraph) -> (the four suites, are created from, old ironwood telegraph poles) -> the four suites (2401ms)\nWhen was the telegraph invented?\tvon Siemens\t1.22222222222\tWhen was the telegraph invented? -> $x: ($x, create, telegraph) -> (von Siemens, created, the first telegraph) -> von Siemens (2410ms)\nWhen was the telegraph invented?\tParis\t0.888888888886\tWhen was the telegraph invented? -> $x: (telegraph, be make in, $x) -> (Dyna telegraph instruments, were made in, Paris) -> Paris (2419ms)\nWhen was the telegraph invented?\tWilliams\t0.888888888886\tWhen was the telegraph invented? -> $x: (telegraph, be make in, $x) -> (the first fire alarm telegraph equipment, was made in, Williams) -> Williams (2419ms)\nWhen was the telegraph invented?\tIssy\t0.888888888886\tWhen was the telegraph invented? -> $x: (telegraph, be make in, $x) -> (Jardillier telegraph instruments, were made in, Issy) -> Issy (2419ms)\nWhen was the telegraph invented?\ta series\t0.5555555555530001\tWhen was the telegraph invented? -> $x: (telegraph, be create in, $x) -> (Telegraph.co.uk Mr Marsh, will be created in, a series) -> a series (2419ms)\nWhen was the telegraph invented?\tthe Thaindia News report\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, does add to, the Thaindia News report) -> the Thaindia News report (2450ms)\nWhen was the telegraph invented?\tstandards\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Sunday Telegraph, did much to raise, standards) -> standards (2451ms)\nWhen was the telegraph invented?\tCatholic Telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Catholic Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Catholic%20Telegraph) -> Catholic Telegraph (2453ms)\nWhen was the telegraph invented?\tPeterborough Evening Telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Peterborough Evening Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Peterborough%20Evening%20Telegraph) -> Peterborough Evening Telegraph (2449ms)\nWhen was the telegraph invented?\ta major write-up and interview\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, recently did, a major write-up and interview) -> a major write-up and interview (2453ms)\nWhen was the telegraph invented?\ta short telephone interview\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, a short telephone interview) -> a short telephone interview (2449ms)\nWhen was the telegraph invented?\tplace\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (Essences telegraph testing, may be done in, place) -> place (2447ms)\nWhen was the telegraph invented?\tFacebook\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, do differently in, Facebook) -> Facebook (2446ms)\nWhen was the telegraph invented?\tthe depot Ben\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the depot Ben, found, a telegraph operator) -> the depot Ben (2453ms)\nWhen was the telegraph invented?\tSuDoku Assistant\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (SuDoku Assistant, found, The Daily Telegraph) -> SuDoku Assistant (2423ms)\nWhen was the telegraph invented?\tThe article\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (The article, can be found in, The Daily Telegraph) -> The article (2453ms)\nWhen was the telegraph invented?\tThe Independent and others\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, The Independent and others) -> The Independent and others (2451ms)\nWhen was the telegraph invented?\ta month\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, has done this in, a month) -> a month (2441ms)\nWhen was the telegraph invented?\tSheffield Telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Sheffield Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sheffield%20Telegraph) -> Sheffield Telegraph (2427ms)\nWhen was the telegraph invented?\tGranville Woods\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Granville Woods, developed, the railroad telegraph) -> Granville Woods (2434ms)\nWhen was the telegraph invented?\ta little ?extra editing ?\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the St . John Telegraph, did, a little ?extra editing ?) -> a little ?extra editing ? (2427ms)\nWhen was the telegraph invented?\t78-year-old Rich Busa\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Nashua Telegraph, did a profile on, 78-year-old Rich Busa) -> 78-year-old Rich Busa (2427ms)\nWhen was the telegraph invented?\twitches\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (Yorkshire Morning Telegraph, do, witches) -> witches (2454ms)\nWhen was the telegraph invented?\tan amazing competition\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, are doing, an amazing competition) -> an amazing competition (2451ms)\nWhen was the telegraph invented?\tVan Horne\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Van Horne, developed, a telegraph service) -> Van Horne (2436ms)\nWhen was the telegraph invented?\ta full investigative story\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (Telegraph, should do, a full investigative story) -> a full investigative story (2446ms)\nWhen was the telegraph invented?\tthe data\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, did to obtain, the data) -> the data (2427ms)\nWhen was the telegraph invented?\tmore harm than good\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, may do, more harm than good) -> more harm than good (2446ms)\nWhen was the telegraph invented?\tWilliam Cooke\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (William Cooke, developed, the electric telegraph) -> William Cooke (2444ms)\nWhen was the telegraph invented?\tthe story\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the story, can be found in, the UK Telegraph) -> the story (2451ms)\nWhen was the telegraph invented?\tthe Flies\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the Flies, can be found in, the London Telegraph) -> the Flies (2423ms)\nWhen was the telegraph invented?\tthe same\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, do, the same) -> the same (2439ms)\nWhen was the telegraph invented?\ttrial and error\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (early telegraph systems, was done by, trial and error) -> trial and error (2436ms)\nWhen was the telegraph invented?\thorseback\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, start on, $x) -> (the Houston Daily Telegraph &, started out on, horseback) -> horseback (2449ms)\nWhen was the telegraph invented?\tCongress\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Congress, found, the telegraph) -> Congress (2431ms)\nWhen was the telegraph invented?\tthe pyramid\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, invent, $x) -> (telegraph, invented, the pyramid) -> the pyramid (2451ms)\nWhen was the telegraph invented?\tthe Los Angeles Times\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, so did, the Los Angeles Times) -> the Los Angeles Times (2453ms)\nWhen was the telegraph invented?\tthe top two web search spots\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did though take, the top two web search spots) -> the top two web search spots (2451ms)\nWhen was the telegraph invented?\tthe past\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the past, can be found at, the Telegraph Station) -> the past (2450ms)\nWhen was the telegraph invented?\tDurango Telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Durango Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Durango%20Telegraph) -> Durango Telegraph (2427ms)\nWhen was the telegraph invented?\tone important hit\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph article, did get, one important hit) -> one important hit (2423ms)\nWhen was the telegraph invented?\tseveral countries\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (several countries, developed, workable electric telegraphs) -> several countries (2444ms)\nWhen was the telegraph invented?\tBoston\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Boston, developed, the first telegraph based alarm system) -> Boston (2434ms)\nWhen was the telegraph invented?\tJosh Dzieza\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, so does, Josh Dzieza) -> Josh Dzieza (2423ms)\nWhen was the telegraph invented?\tTony Blair\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, Did, Tony Blair) -> Tony Blair (2446ms)\nWhen was the telegraph invented?\tdifferent colours\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (The Daily Telegraph THEY, might come in, different colours) -> different colours (2426ms)\nWhen was the telegraph invented?\tcomparative degrees of atheism\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, invent, $x) -> (Telegraph, invents, comparative degrees of atheism) -> comparative degrees of atheism (2449ms)\nWhen was the telegraph invented?\tline\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (telegraphs, did come back on, line) -> line (2444ms)\nWhen was the telegraph invented?\ta while\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (a while, eventually found, the disused submarine telegraph cable) -> a while (2444ms)\nWhen was the telegraph invented?\tgreenock telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (greenock telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Greenock%20Telegraph) -> greenock telegraph (2446ms)\nWhen was the telegraph invented?\tthe issue\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the issue, can be found in, the Telegraph) -> the issue (2434ms)\nWhen was the telegraph invented?\tLondon\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (London, found coverage in, the Telegraph) -> London (2436ms)\nWhen was the telegraph invented?\ta related story\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, a related story) -> a related story (2451ms)\nWhen was the telegraph invented?\tPorthcurno Telegraph Museum\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Porthcurno Telegraph Museum, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Porthcurno%20Telegraph%20Museum) -> Porthcurno Telegraph Museum (2447ms)\nWhen was the telegraph invented?\tfashion\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (the Telegraph newspaper, were coming back in, fashion) -> fashion (2451ms)\nWhen was the telegraph invented?\tCamellia Camellia\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Camellia Camellia, was jointly developed by, Nippon Telegraph) -> Camellia Camellia (2450ms)\nWhen was the telegraph invented?\tFrenchman Claude Chappe\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Frenchman Claude Chappe, developed, the optical telegraph) -> Frenchman Claude Chappe (2427ms)\nWhen was the telegraph invented?\ta little better\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, does, a little better) -> a little better (2427ms)\nWhen was the telegraph invented?\tMr Holland?s case\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Mr Holland?s case, can be found at, The Daily Telegraph) -> Mr Holland?s case (2436ms)\nWhen was the telegraph invented?\tMore details\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (More details, can be found in, The Telegraph) -> More details (2423ms)\nWhen was the telegraph invented?\tyesterday\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph, did, yesterday) -> yesterday (2434ms)\nWhen was the telegraph invented?\tthe form\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (This telegraph, invariably comes in, the form) -> the form (2441ms)\nWhen was the telegraph invented?\ta evolutionary anthropologist\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (a evolutionary anthropologist, found, Daily Telegraph) -> a evolutionary anthropologist (2450ms)\nWhen was the telegraph invented?\tgood comedy\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph?s article ? Science, does n?t make, good comedy) -> good comedy (2454ms)\nWhen was the telegraph invented?\ta telegram\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (a telegraph-peon, came in with, a telegram) -> a telegram (2431ms)\nWhen was the telegraph invented?\tSeve Ballesteros\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Seve Ballesteros, find, Telegraph Sports European Golfer) -> Seve Ballesteros (2453ms)\nWhen was the telegraph invented?\tthe best obits\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, always does, the best obits) -> the best obits (2423ms)\nWhen was the telegraph invented?\tthe Commission\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the Commission, found for, the Telegraph) -> the Commission (2447ms)\nWhen was the telegraph invented?\tThe Pond\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, surely does so across, The Pond) -> The Pond (2427ms)\nWhen was the telegraph invented?\tGrimsby Evening Telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Grimsby Evening Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Grimsby%20Telegraph) -> Grimsby Evening Telegraph (2431ms)\nWhen was the telegraph invented?\trailroaders\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (a telegraph set, did early, railroaders) -> railroaders (2454ms)\nWhen was the telegraph invented?\ta landscape\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (telegraph poles and wires, do in, a landscape) -> a landscape (2436ms)\nWhen was the telegraph invented?\tPrivacy Policy\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Privacy Policy, can be found at, www.telegraph.co.uk/subscriber) -> Privacy Policy (2434ms)\nWhen was the telegraph invented?\tprospectors\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (prospectors, found gold on, Telegraph Creek) -> prospectors (2450ms)\nWhen was the telegraph invented?\tJewish Telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Jewish Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Jewish%20Telegraph) -> Jewish Telegraph (2441ms)\nWhen was the telegraph invented?\tVC. Officer\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (VC. Officer, found subject staggering along, Telegraph Road) -> VC. Officer (2431ms)\nWhen was the telegraph invented?\taffairs\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, is doing a series on, affairs) -> affairs (2441ms)\nWhen was the telegraph invented?\tthe River Severn\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the River Severn, found their way into, the Telegraph Weekend) -> the River Severn (2436ms)\nWhen was the telegraph invented?\tEurope\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, does little else on, Europe) -> Europe (2439ms)\nWhen was the telegraph invented?\tEdge\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did n?t think much of, Edge) -> Edge (2436ms)\nWhen was the telegraph invented?\tscrew\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (screw, found on, traditional telegraph) -> screw (2439ms)\nWhen was the telegraph invented?\tthe 1830?s Samuel Morse\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (the 1830?s Samuel Morse, developed, the telegraph) -> the 1830?s Samuel Morse (2441ms)\nWhen was the telegraph invented?\ta great job\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph, did, a great job) -> a great job (2431ms)\nWhen was the telegraph invented?\tKen Livingstone\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (Telegraph Hill, Well done to, Ken Livingstone) -> Ken Livingstone (2451ms)\nWhen was the telegraph invented?\tan article Tom\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (an article Tom, found over at, The Telegraph) -> an article Tom (2441ms)\nWhen was the telegraph invented?\tThe interview\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (The interview, can be found on, the Telegraph website) -> The interview (2446ms)\nWhen was the telegraph invented?\tworms and spiders\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (worms and spiders, find on, Telegraph Hill) -> worms and spiders (2431ms)\nWhen was the telegraph invented?\ta guaranteed rental income\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, Does the idea of, a guaranteed rental income) -> a guaranteed rental income (2451ms)\nWhen was the telegraph invented?\ta great article\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, a great article) -> a great article (2427ms)\nWhen was the telegraph invented?\tBarrett\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Barrett, finds his way to, the Telegraph Room) -> Barrett (2441ms)\nWhen was the telegraph invented?\teach morning\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (telegraph reports, came in, each morning) -> each morning (2453ms)\nWhen was the telegraph invented?\tBritain\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (a Telegraph reporter, comes out this week in, Britain) -> Britain (2439ms)\nWhen was the telegraph invented?\t1861\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (the transcontinental telegraph, began operating in, 1861) -> 1861 (2439ms)\nWhen was the telegraph invented?\ttelegraph records\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (telegraph records, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Telegraph%20Records) -> telegraph records (2447ms)\nWhen was the telegraph invented?\tCharles Wheatstone\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Charles Wheatstone, was developing, the telegraph) -> Charles Wheatstone (2447ms)\nWhen was the telegraph invented?\tTelegraph Creek Airport\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Telegraph Creek Airport, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Telegraph%20Creek%20Airport) -> Telegraph Creek Airport (2419ms)\nWhen was the telegraph invented?\tthe plank roads\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The telegraph lines, so did, the plank roads) -> the plank roads (2439ms)\nWhen was the telegraph invented?\tShia\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did an amazing interview with, Shia) -> Shia (2447ms)\nWhen was the telegraph invented?\tConnaught Telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Connaught Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Connaught%20Telegraph) -> Connaught Telegraph (2431ms)\nWhen was the telegraph invented?\tthe nuclear/ET issue\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the nuclear/ET issue, can be found below, the Telegraph article) -> the nuclear/ET issue (2431ms)\nWhen was the telegraph invented?\ta leaflet\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, distribute, telegraph) -> (a leaflet, had been distributed by, the Telegraph Hill Society) -> a leaflet (2449ms)\nWhen was the telegraph invented?\tTelegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Telegraph, Find a job with, Telegraph Jobs) -> Telegraph (2454ms)\nWhen was the telegraph invented?\ta profile\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Nashua Telegraph, did, a profile) -> a profile (2454ms)\nWhen was the telegraph invented?\t1809 Samuel Soemmering\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (1809 Samuel Soemmering, developed, the first telegraph) -> 1809 Samuel Soemmering (2444ms)\nWhen was the telegraph invented?\tthe Triode\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, invent, $x) -> (Federal Telegraph, would invent, the Triode) -> the Triode (2454ms)\nWhen was the telegraph invented?\tmen\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (TELEGRAPH, Do, men) -> men (2423ms)\nWhen was the telegraph invented?\tembarrassing innumeracy\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph article, does so with, embarrassing innumeracy) -> embarrassing innumeracy (2436ms)\nWhen was the telegraph invented?\ta Best Cult Books list\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph?s, done, a Best Cult Books list) -> a Best Cult Books list (2453ms)\nWhen was the telegraph invented?\tSam Morse\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Sam Morse, developed, the electrical telegraph) -> Sam Morse (2434ms)\nWhen was the telegraph invented?\tThe security innovator\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (The security innovator, developed from, a tiny telegraph company) -> The security innovator (2451ms)\nWhen was the telegraph invented?\tderby evening telegraph\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (derby evening telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Derby%20Telegraph) -> derby evening telegraph (2449ms)\nWhen was the telegraph invented?\t16 years\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, invent, $x) -> (the telegraph, invented, 16 years) -> 16 years (2436ms)\nWhen was the telegraph invented?\tI?ve\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (I?ve, found this piece from, the Daily Telegraph) -> I?ve (2434ms)\nWhen was the telegraph invented?\tthe Times\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, does, the Times) -> the Times (2446ms)\nWhen was the telegraph invented?\tLiz Sly\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Liz Sly, was found in, the Sunday Telegraph) -> Liz Sly (2454ms)\nWhen was the telegraph invented?\tthe UK,\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Daily Telegraph, have done in, the UK,) -> the UK, (2447ms)\nWhen was the telegraph invented?\tthe national marketplace\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telephone and telegraph, did for, the national marketplace) -> the national marketplace (2449ms)\nWhen was the telegraph invented?\tSwitzerland\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (The first telegraph network, begins operating in, Switzerland) -> Switzerland (2441ms)\nWhen was the telegraph invented?\tIreland\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (The Belfast Telegraph, began publication in, Ireland) -> Ireland (2431ms)\nWhen was the telegraph invented?\t1868\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (His first telegraph related patent, came in, 1868) -> 1868 (2444ms)\nWhen was the telegraph invented?\tthe story--IPS cells\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, did mention this in, the story--IPS cells) -> the story--IPS cells (2447ms)\nWhen was the telegraph invented?\tan unclassified cable\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (an unclassified cable, found, Colombo Telegraph) -> an unclassified cable (2436ms)\nWhen was the telegraph invented?\tpublic research funds\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, invent, $x) -> (Telegraph, invented with, public research funds) -> public research funds (2439ms)\nWhen was the telegraph invented?\tC. Wheatstone\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (C. Wheatstone, develop, the first electric telegraph) -> C. Wheatstone (2450ms)\nWhen was the telegraph invented?\tThe European\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (The European, is surprised to find, the telegraph) -> The European (2444ms)\nWhen was the telegraph invented?\tadvertising campaigns\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (Telegraph, has done, advertising campaigns) -> advertising campaigns (2431ms)\nWhen was the telegraph invented?\tten\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telegraph, did in, ten) -> ten (2453ms)\nWhen was the telegraph invented?\ta double-take\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph FLEMINGTON racegoers, did, a double-take) -> a double-take (2434ms)\nWhen was the telegraph invented?\tCarr\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telegraph, as did, Carr) -> Carr (2444ms)\nWhen was the telegraph invented?\t4 stores\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (4 stores, find, a telegraph office) -> 4 stores (2427ms)\nWhen was the telegraph invented?\tUnto Others J.\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph 02/13/10, Do, Unto Others J.) -> Unto Others J. (2434ms)\nWhen was the telegraph invented?\tthe Frenchman Claude Chappe\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (the Frenchman Claude Chappe, developed, the optical telegraph) -> the Frenchman Claude Chappe (2449ms)\nWhen was the telegraph invented?\t1974\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (the American Telephone and Telegraph Company, began in, 1974) -> 1974 (2439ms)\nWhen was the telegraph invented?\tthe first wave\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (the telegraph, came in, the first wave) -> the first wave (2451ms)\nWhen was the telegraph invented?\ta nice job\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> ('s Telegraph, has done, a nice job) -> a nice job (2444ms)\nWhen was the telegraph invented?\t1872\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (the Overland Telegraph, began operations in, 1872) -> 1872 (2449ms)\nWhen was the telegraph invented?\tthe SMH\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, start on, $x) -> (The Daily Telegraph, started on, the SMH) -> the SMH (2450ms)\nWhen was the telegraph invented?\tso\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, so) -> so (2454ms)\nWhen was the telegraph invented?\tAlexander Bain\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, invent, $x) -> (the chemical telegraph, invented by, Alexander Bain) -> Alexander Bain (2447ms)\nWhen was the telegraph invented?\tspecial\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, doing, special) -> special (2439ms)\nWhen was the telegraph invented?\tthe newspaper industry\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (?The telegraph, did indeed reshape, the newspaper industry) -> the newspaper industry (2450ms)\nWhen was the telegraph invented?\tthe nicknames\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, has done a survey on, the nicknames) -> the nicknames (2423ms)\nWhen was the telegraph invented?\ta little math\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, does, a little math) -> a little math (2449ms)\nWhen was the telegraph invented?\tcall\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph, did, call) -> call (2423ms)\nWhen was the telegraph invented?\tThe first person\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (The first person, developed, a telegraph) -> The first person (2446ms)\nWhen was the telegraph invented?\tthe work\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, were perfectly capable of doing, the work) -> the work (2423ms)\nWhen was the telegraph invented?\tYou?ll\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (You?ll, find more details on, the Telegraph link) -> You?ll (2451ms)\nWhen was the telegraph invented?\tAlexander Graham Bell\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telephone and telegraph, do, $x) -> (the telegraph and telephone ?, did, Alexander Graham Bell) -> Alexander Graham Bell (2446ms)\nWhen was the telegraph invented?\tSeptember\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (Telegraph Avenue, comes out in, September) -> September (2423ms)\nWhen was the telegraph invented?\tthe Palestine Chronicle\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Palestine Telegraph, as did, the Palestine Chronicle) -> the Palestine Chronicle (2431ms)\nWhen was the telegraph invented?\tradium\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, invent, $x) -> (the telegraph operator, could easily have invented, radium) -> radium (2447ms)\nWhen was the telegraph invented?\ta feature\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, has done, a feature) -> a feature (2423ms)\nWhen was the telegraph invented?\tTelegraph Peak\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Telegraph Peak, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Telegraph%20Peak%20(California)) -> Telegraph Peak (2434ms)\nWhen was the telegraph invented?\ta boat\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (The telegraph-boy, would have to come in, a boat) -> a boat (2439ms)\nWhen was the telegraph invented?\tthe newspaper era\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telegraph, did n?t kill, the newspaper era) -> the newspaper era (2446ms)\nWhen was the telegraph invented?\tOliver Heaviside\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Oliver Heaviside, developed, the Telegraph Equation) -> Oliver Heaviside (2453ms)\nWhen was the telegraph invented?\thandy\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (the fallen telegraph poles, come in, handy) -> handy (2450ms)\nWhen was the telegraph invented?\tan industry study\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Gazette Telegraph, did, an industry study) -> an industry study (2446ms)\nWhen was the telegraph invented?\tDarwin\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Darwin, found gold while, digging holes for telegraph poles) -> Darwin (2449ms)\nWhen was the telegraph invented?\tthe Blanket\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Belfast Telegraph as, did, the Blanket) -> the Blanket (2450ms)\nWhen was the telegraph invented?\t1923\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, begin in, $x) -> ('s first telegraph link, began operation late in, 1923) -> 1923 (2441ms)\nWhen was the telegraph invented?\tthe banksters bidding\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telegraph, does, the banksters bidding) -> the banksters bidding (2454ms)\nWhen was the telegraph invented?\tthe science\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (the science, needed to develop, a telegraph system) -> the science (2450ms)\nWhen was the telegraph invented?\tthe coalition\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, does like, the coalition) -> the coalition (2427ms)\nWhen was the telegraph invented?\tbehaviour\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (behaviour, now found off, Telegraph Cove) -> behaviour (2444ms)\nWhen was the telegraph invented?\tan editorial\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (an editorial, found at, the Telegraph) -> an editorial (2431ms)\nWhen was the telegraph invented?\ta cod machine\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, invent, $x) -> (Daily Telegraph satirist, invented, a cod machine) -> a cod machine (2444ms)\nWhen was the telegraph invented?\tPay phones\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Pay phones, are found at, post offices and telegraphs) -> Pay phones (2427ms)\nWhen was the telegraph invented?\tthe parrots\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the parrots, apparently found, the Telegraph Hill neighborhood) -> the parrots (2453ms)\nWhen was the telegraph invented?\tTwinVQ Audio File\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (TwinVQ Audio File, is developed by, the Nippon Telegraph) -> TwinVQ Audio File (2450ms)\nWhen was the telegraph invented?\texample\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, do for, example) -> example (2453ms)\nWhen was the telegraph invented?\tthe bodies\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the bodies, were found near, 6 Mile and Telegraph) -> the bodies (2441ms)\nWhen was the telegraph invented?\tthe use\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph, did report on, the use) -> the use (2450ms)\nWhen was the telegraph invented?\tthe Belfast press\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the Belfast press, can be found in, the Belfast Telegraph) -> the Belfast press (2447ms)\nWhen was the telegraph invented?\tinventor\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (inventor, developed, an electric telegraph) -> inventor (2447ms)\nWhen was the telegraph invented?\tCivilization\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The telegraph, really did mean The End of, Civilization) -> Civilization (2441ms)\nWhen was the telegraph invented?\tthe components\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (the components, found in, a telegraph circuit) -> the components (2446ms)\nWhen was the telegraph invented?\tstriders\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (Telegraph, did barefoot, striders) -> striders (2436ms)\nWhen was the telegraph invented?\tTerms and Conditions\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (Terms and Conditions, can be found at, telegraph.co.uk/isce2012) -> Terms and Conditions (2451ms)\nWhen was the telegraph invented?\tThe full letter\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (The full letter, may also be found on, the Telegraph) -> The full letter (2423ms)\nWhen was the telegraph invented?\tthe NRL\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (| 13 Mar 2012 Daily Telegraph, Does, the NRL) -> the NRL (2454ms)\nWhen was the telegraph invented?\tIslamorada and Marathon\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (a telegraph station, did, Islamorada and Marathon) -> Islamorada and Marathon (2441ms)\nWhen was the telegraph invented?\teveryting\t-0.444444444444\tWhen was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph companies, did, everyting) -> everyting (2423ms)\nWhen was the telegraph invented?\ttext/html Scientists\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, find, telegraph) -> (text/html Scientists, found, the telegraph) -> text/html Scientists (2441ms)\nWhen was the telegraph invented?\tthe eurozone\t-0.444444444444\tWhen was the telegraph invented? -> $x: ($x, develop, telegraph) -> (the eurozone, needs to develop, this fiscal more Telegraph.co.uk) -> the eurozone (2450ms)\nWhen did he die?\tthe technology\t0.22222222222000002\tWhen did he die? -> $x: ($x, discover, alexander graham bell) -> (the technology, was discovered by, Alexander Graham Bell) -> the technology (1473ms)\nWhen did he die?\tTelephone\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (Telephone, is invented by, Alexander Graham Bell) -> Telephone (1606ms)\nWhen did he die?\tThe soundproof booth\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (The soundproof booth, was invented by, Alexander Graham Bell) -> The soundproof booth (1605ms)\nWhen did he die?\tthe device\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (the device, invented by, Alexander Graham Bell) -> the device (1473ms)\nWhen did he die?\tThe photophone\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (The photophone, is invented by, Alexander Graham Bell) -> The photophone (1493ms)\nWhen did he die?\tThe telephone\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (The telephone, was famously invented by, Alexander Graham Bell) -> The telephone (1472ms)\nWhen did he die?\tThe first telephone\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (The first telephone, was invented by, Alexander Graham Bell) -> The first telephone (1493ms)\nWhen did he die?\tthe telephone\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (the telephone, was invented by, Alexander Bell Graham) -> the telephone (1605ms)\nWhen did he die?\ttelephone technology\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (telephone technology, invented by, Alexander Graham Bell) -> telephone technology (1605ms)\nWhen did he die?\ta metal detector\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (a metal detector, invented by, Alexander Graham Bell) -> a metal detector (1606ms)\nWhen did he die?\tthe first telephone\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (the first telephone, was invented by, Alexander Graham Bell) -> the first telephone (1493ms)\nWhen did he die?\tThe phone\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (The phone, was invented by, Alexander Graham Bell) -> The phone (1493ms)\nWhen did he die?\tThe Telephone\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (The Telephone, was originally invented by, Alexander Graham Bell) -> The Telephone (1472ms)\nWhen did he die?\tTwisted pair cable\t-0.0\tWhen did he die? -> $x: ($x, invent, alexander graham bell) -> (Twisted pair cable, was invented by, Alexander Graham Bell) -> Twisted pair cable (1472ms)\nWhen did he die?\ta tuning fork\t-0.111111111111\tWhen did he die? -> $x: ($x, inspire, alexander graham bell) -> (a tuning fork, inspired, Alexander Graham Bell) -> a tuning fork (1984ms)\nWhen did he die?\tmoney\t-0.111111111111\tWhen did he die? -> $x: (alexander graham bell, be for, $x) -> (a young Alexander Graham Bell, was searching for, money) -> money (1654ms)\nWhen did he die?\tThe Volta Bureau\t-0.111111111111\tWhen did he die? -> $x: ($x, establish, alexander graham bell) -> (The Volta Bureau, was established by, Alexander Graham Bell) -> The Volta Bureau (2156ms)\nWhen did he die?\tsale\t-0.111111111111\tWhen did he die? -> $x: (alexander graham bell, be for, $x) -> (~Alexander Graham Bell My first book, will be out for, sale) -> sale (1893ms)\nWhen did he die?\tthe call\t-0.111111111111\tWhen did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was waiting for, the call) -> the call (1893ms)\nWhen did he die?\tKeith\t-0.111111111111\tWhen did he die? -> $x: ($x, inspired, alexander graham bell) -> (Keith, is inspired directly by, Alexander Graham Bell) -> Keith (1984ms)\nWhen did he die?\tturn\t-0.111111111111\tWhen did he die? -> $x: ($x, inspire, alexander graham bell) -> (turn, inspired, Alexander Graham Bell) -> turn (1984ms)\nWhen did he die?\t20 years\t-0.111111111111\tWhen did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was given credit for nearly, 20 years) -> 20 years (1984ms)\nWhen did he die?\tthe vistas\t-0.111111111111\tWhen did he die? -> $x: ($x, inspire, alexander graham bell) -> (the vistas, inspired, Alexander Graham Bell) -> the vistas (2156ms)\nWhen did he die?\tJobs\t-0.111111111111\tWhen did he die? -> $x: ($x, do, alexander graham bell) -> (Jobs, Did, Alexander Graham Bell) -> Jobs (2156ms)\nWhen did he die?\tThe Photophone\t-0.111111111111\tWhen did he die? -> $x: ($x, develop, alexander graham bell) -> (The Photophone, was developed by, Alexander Graham Bell) -> The Photophone (1892ms)\nWhen did he die?\tfraud\t-0.111111111111\tWhen did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was prosecuted for, fraud) -> fraud (1893ms)\nWhen did he die?\tthe deaf\t-0.111111111111\tWhen did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was a tutor for, the deaf) -> the deaf (2156ms)\nWhen did he die?\tthe telegraph and telephone ?\t-0.111111111111\tWhen did he die? -> $x: ($x, do, alexander graham bell) -> (the telegraph and telephone ?, did, Alexander Graham Bell) -> the telegraph and telephone ? (2156ms)\nWhen did he die?\ttelephones\t-0.111111111111\tWhen did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was arrested for selling, telephones) -> telephones (2156ms)\nWhen did he die?\tthe invention\t-0.111111111111\tWhen did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was granted the patent for, the invention) -> the invention (1892ms)\nWhen did he die?\tthe development\t-0.111111111111\tWhen did he die? -> $x: ($x, introduce, alexander graham bell) -> (the development, are introduced to, Alexander Graham Bell) -> the development (2156ms)\nWhen did he die?\tthe tetra kites\t-0.111111111111\tWhen did he die? -> $x: ($x, develop, alexander graham bell) -> (the tetra kites, developed by, Alexander Graham Bell) -> the tetra kites (1984ms)\nWhen did he die?\tevent\t-0.111111111111\tWhen did he die? -> $x: ($x, do, alexander graham bell) -> (event, did, Alexander Graham Bell patent) -> event (1655ms)\nWhen did he die?\t1633\t-0.333333333333\tWhen did he die? -> $x: (bear and, die in, $x) -> (a Welsh-born English priest and poet, died in, 1633) -> 1633 (3115ms)\nWhen did he die?\t1630\t-0.333333333333\tWhen did he die? -> $x: (johannes kepler, die in, $x) -> (Johannes Kepler, died in, 1630) -> 1630 (2239ms)\nWhen did he die?\tobscurity\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, obscurity) -> obscurity (3115ms)\nWhen did he die?\tBoston\t-0.333333333333\tWhen did he die? -> $x: (bear and, die in, $x) -> (Mom and Dad Anna Hientzen ~ Born, died in, Boston) -> Boston (2238ms)\nWhen did he die?\ta New York hotel room\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, a New York hotel room) -> a New York hotel room (3164ms)\nWhen did he die?\t1601\t-0.333333333333\tWhen did he die? -> $x: (brahe, die in, $x) -> (Tycho Brahe, died in, 1601) -> 1601 (3167ms)\nWhen did he die?\tNY hotel\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (1943 Tesla, dies penniless in, NY hotel) -> NY hotel (3116ms)\nWhen did he die?\tNew York\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (January 7 Tesla, died in, New York) -> New York (3164ms)\nWhen did he die?\trecent weeks\t-0.333333333333\tWhen did he die? -> $x: (bear and, die in, $x) -> (a chimpanzee , bears and pumas, have died in, recent weeks) -> recent weeks (2469ms)\nWhen did he die?\t1924\t-0.333333333333\tWhen did he die? -> $x: (vladimir lenin, die in, $x) -> (Soviet leader Vladimir Ilich Lenin, died in, 1924) -> 1924 (3164ms)\nWhen did he die?\ta hotel suite in New York City\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, a hotel suite in New York City) -> a hotel suite in New York City (2239ms)\nWhen did he die?\tsevere debt and obscurity\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, die in, severe debt and obscurity) -> severe debt and obscurity (3115ms)\nWhen did he die?\ta New York hotel\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died alone in, a New York hotel) -> a New York hotel (3164ms)\nWhen did he die?\tthe hotel New Yorker\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Death and afterwards Tesla, died alone in, the hotel New Yorker) -> the hotel New Yorker (2961ms)\nWhen did he die?\tNova Scotia\t-0.333333333333\tWhen did he die? -> $x: (alexander graham bell, die in, $x) -> (Alexander Graham Bell, died in, Nova Scotia) -> Nova Scotia (2239ms)\nWhen did he die?\tRoom # 3327\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, Room # 3327) -> Room # 3327 (3115ms)\nWhen did he die?\ta hotel room\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died alone in, a hotel room) -> a hotel room (3167ms)\nWhen did he die?\t1968\t-0.333333333333\tWhen did he die? -> $x: (bear and, die in, $x) -> (_and Born, died in, 1968) -> 1968 (2239ms)\nWhen did he die?\t1943\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Nikola Tesla, died in, 1943) -> 1943 (3167ms)\nWhen did he die?\ta hotel in New York\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, a hotel in New York) -> a hotel in New York (2239ms)\nWhen did he die?\t1922\t-0.333333333333\tWhen did he die? -> $x: (alexander graham bell, die in, $x) -> (Alexander Graham Bell, died in, 1922) -> 1922 (2961ms)\nWhen did he die?\tNew York City\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, New York City) -> New York City (3167ms)\nWhen did he die?\tRegensburg\t-0.333333333333\tWhen did he die? -> $x: (johannes kepler, die in, $x) -> (Johannes Kepler, died in, Regensburg) -> Regensburg (3164ms)\nWhen did he die?\tOxford\t-0.333333333333\tWhen did he die? -> $x: (bear and, die in, $x) -> (Polish-born Oxford philosopher and historian, died in, Oxford) -> Oxford (2469ms)\nWhen did he die?\t2001\t-0.333333333333\tWhen did he die? -> $x: (bear and, die in, $x) -> (The Russian-born designer and architect, died in, 2001) -> 2001 (2469ms)\nWhen did he die?\ta hotel\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died penniless in, a hotel) -> a hotel (3167ms)\nWhen did he die?\ta plane crash\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla Motors, died in, a plane crash) -> a plane crash (2961ms)\nWhen did he die?\tPrague\t-0.333333333333\tWhen did he die? -> $x: (brahe, die in, $x) -> (Tycho Brahe, died in, Prague) -> Prague (3115ms)\nWhen did he die?\tthe fire\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Nikola Tesla, died in, the fire) -> the fire (3164ms)\nWhen did he die?\t1942\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, 1942) -> 1942 (3115ms)\nWhen did he die?\tJanuary\t-0.333333333333\tWhen did he die? -> $x: (nikola tesla, die in, $x) -> (Nikola Tesla, died in, January) -> January (3167ms)\nWhen did he die?\tpoverty\t-0.333333333333\tWhen did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, poverty) -> poverty (3167ms)\nWhen did he die?\tBaddek\t-0.333333333333\tWhen did he die? -> $x: (alexander graham bell, die in, $x) -> (Alexander Graham Bell, died in, Baddek) -> Baddek (3164ms)\nWhen did he die?\tJanuary 21,1924\t-0.444444444444\tWhen did he die? -> $x: (vladimir lenin, die on, $x) -> (Vladimir Illyich Lenin, died on, January 21,1924) -> January 21,1924 (3170ms)\nWhen did he die?\tan island\t-0.444444444444\tWhen did he die? -> $x: (bear and, die on, $x) -> (Danish-born explorer and commander, died on, an island) -> an island (3172ms)\nWhen did he die?\tNov. 15 , 1630\t-0.444444444444\tWhen did he die? -> $x: (johannes kepler, die on, $x) -> (annecdotes Johannes Kepler, dies on, Nov. 15 , 1630) -> Nov. 15 , 1630 (3170ms)\nWhen did he die?\tJanuary 21 , 1924\t-0.444444444444\tWhen did he die? -> $x: (vladimir lenin, die on, $x) -> (Vladimir Lenin, died on, January 21 , 1924) -> January 21 , 1924 (3170ms)\nWhen did he die?\tFebruary 29\t-0.444444444444\tWhen did he die? -> $x: (bear and, die on, $x) -> (both been born and, died on, February 29) -> February 29 (3170ms)\nWhen did he die?\tJanuary 7 , 1943\t-0.444444444444\tWhen did he die? -> $x: (teslum, die on, $x) -> (Nikola Tesla, died on, January 7 , 1943) -> January 7 , 1943 (3172ms)\nWhen did he die?\tNovember 15 , 1630\t-0.444444444444\tWhen did he die? -> $x: (johannes kepler, die on, $x) -> (Johannes Kepler, died on, November 15 , 1630) -> November 15 , 1630 (3172ms)\nWhen did he die?\tOctober 24 , 1601\t-0.444444444444\tWhen did he die? -> $x: (tycho brahe, die on, $x) -> (Tycho Brahe, died on, October 24 , 1601) -> October 24 , 1601 (3172ms)\nWhen did he die?\tAugust 2\t-0.444444444444\tWhen did he die? -> $x: (alexander graham bell, die on, $x) -> (Alexander Graham Bell, died on, August 2) -> August 2 (3170ms)\nWhen did he die?\t24 October 1601 11 days\t-0.444444444444\tWhen did he die? -> $x: (brahe, die on, $x) -> (Tycho Brahe, died on, 24 October 1601 11 days) -> 24 October 1601 11 days (3170ms)\nWhen did he die?\tJanuary 21 1924\t-0.444444444444\tWhen did he die? -> $x: (vladimir lenin, die on, $x) -> (Slavoj Zizek Vladimir Ilyich Lenin, died on, January 21 1924) -> January 21 1924 (3172ms)\nWhen did he die?\tthe Titanic\t-0.444444444444\tWhen did he die? -> $x: (teslum, die on, $x) -> (Tesla, died on, the Titanic) -> the Titanic (3170ms)\nWhen did he die?\tAugust 2 , 1922\t-0.444444444444\tWhen did he die? -> $x: (alexander graham bell, die on, $x) -> (Alexander Graham Bell, died on, August 2 , 1922) -> August 2 , 1922 (3170ms)\nWhen did he die?\tAugust 4 , 1922\t-0.444444444444\tWhen did he die? -> $x: (alexander graham bell, die on, $x) -> (Alexander Graham Bell, died on, August 4 , 1922) -> August 4 , 1922 (3167ms)\nWhen did he die?\tJanuary 7th\t-0.444444444444\tWhen did he die? -> $x: (nikola tesla, die on, $x) -> (Nikola Tesla, died on, January 7th) -> January 7th (3172ms)\nWhen did he die?\tthe 8th\t-0.444444444444\tWhen did he die? -> $x: (teslum, die on, $x) -> (Tesla, died on, the 8th) -> the 8th (3167ms)\nWhen did he die?\t7 January 1943\t-0.444444444444\tWhen did he die? -> $x: (teslum, die on, $x) -> (121 Death Tesla, died on, 7 January 1943) -> 7 January 1943 (3172ms)\nWhen did he die?\t8th November\t-0.444444444444\tWhen did he die? -> $x: (bear and, die on, $x) -> (Sandy born and resident Edward Lawson, died on, 8th November) -> 8th November (3172ms)\nWhen did he die?\tAugust 4\t-0.444444444444\tWhen did he die? -> $x: (alexander graham bell, die on, $x) -> (Alexander Graham Bell, died on, August 4) -> August 4 (3170ms)\nWhen did he die?\tMarch 3 , 1847\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (1847 -1922 Alexander Graham Bell, was born on, March 3 , 1847) -> March 3 , 1847 (3176ms)\nWhen did he die?\thearing aids\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was originally working on, hearing aids) -> hearing aids (3174ms)\nWhen did he die?\t1847\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was born in, 1847) -> 1847 (3178ms)\nWhen did he die?\tMarch 3\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was born on, March 3) -> March 3 (3176ms)\nWhen did he die?\textensive use\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, were in, extensive use) -> extensive use (3178ms)\nWhen did he die?\tEngland\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Dr. Alexander Graham Bell, is now in, England) -> England (3172ms)\nWhen did he die?\tthe phonograph\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was also working on, the phonograph) -> the phonograph (3176ms)\nWhen did he die?\t3rd March 1847\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was born on, 3rd March 1847) -> 3rd March 1847 (3176ms)\nWhen did he die?\tBaddeck\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (The Alexander Graham Bell Museum, is dedicated in, Baddeck) -> Baddeck (3172ms)\nWhen did he die?\tEdinburgh\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was born in, Edinburgh) -> Edinburgh (3178ms)\nWhen did he die?\ta little device\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was working on, a little device) -> a little device (3176ms)\nWhen did he die?\t3 March 1847\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was born on, 3 March 1847) -> 3 March 1847 (3176ms)\nWhen did he die?\tthe field\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was in, the field) -> the field (3174ms)\nWhen did he die?\tlight bulbs\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell?s, were working on, light bulbs) -> light bulbs (3176ms)\nWhen did he die?\tthe New York City end\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was on, the New York City end) -> the New York City end (3178ms)\nWhen did he die?\tthe idea\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, had been working on, the idea) -> the idea (3176ms)\nWhen did he die?\tBerlin\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was in, Berlin) -> Berlin (3176ms)\nWhen did he die?\ta device\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was busy working on, a device) -> a device (3174ms)\nWhen did he die?\ta hearing aid\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was working on, a hearing aid) -> a hearing aid (3174ms)\nWhen did he die?\t1886\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was started in, 1886) -> 1886 (3174ms)\nWhen did he die?\tMarch 3rd\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, is Born on, March 3rd) -> March 3rd (3176ms)\nWhen did he die?\tdoctors\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was brought in by, doctors) -> doctors (3174ms)\nWhen did he die?\tGermany\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was in, Germany) -> Germany (3178ms)\nWhen did he die?\tScotland\t-0.666666666667\tWhen did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was born in, Scotland) -> Scotland (3178ms)\nWhen did he die?\tThe Grosvenors\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The Grosvenors, are descendants of, Alexander Graham Bell) -> The Grosvenors (3182ms)\nWhen did he die?\tcasual photographs\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (casual photographs, are, Alexander Graham Bell) -> casual photographs (3181ms)\nWhen did he die?\tthe imagination\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the imagination, is the story of, Alexander Graham Bell) -> the imagination (3178ms)\nWhen did he die?\tthe principal researchers\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the principal researchers, was, Alexander Graham Bell) -> the principal researchers (3181ms)\nWhen did he die?\tthe Cold Crush\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the Cold Crush, are, the Alexander Graham Bells) -> the Cold Crush (3178ms)\nWhen did he die?\tCanada\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Canada, are, Alexander Graham Bell) -> Canada (3183ms)\nWhen did he die?\tMr. Watson\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Mr. Watson, was, Alexander Graham Bell) -> Mr. Watson (3182ms)\nWhen did he die?\tthe cell phone\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the cell phone, is to, Alexander Graham Bell) -> the cell phone (3180ms)\nWhen did he die?\tcopper lines\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (copper lines, were actually installed by, Alexander Graham Bell) -> copper lines (3183ms)\nWhen did he die?\tthe United Kingdom\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the United Kingdom, was demonstrated by, Alexander Graham Bell) -> the United Kingdom (3183ms)\nWhen did he die?\ttelephone service\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (telephone service, is of, Alexander Graham Bell vintage) -> telephone service (3180ms)\nWhen did he die?\tThe journal\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The journal, was financially supported by, Alexander Graham Bell) -> The journal (3181ms)\nWhen did he die?\tBrantford\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Brantford, is linked with, Alexander Graham Bell) -> Brantford (3178ms)\nWhen did he die?\tquality sound reproduction\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (quality sound reproduction, was, Alexander Graham Bell) -> quality sound reproduction (3183ms)\nWhen did he die?\tThe same\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The same, could be said of, Alexander Graham Bell) -> The same (3178ms)\nWhen did he die?\ta household word\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (a household word, was, Alexander Graham Bell) -> a household word (3180ms)\nWhen did he die?\tThe decibel\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The decibel, is named after, Alexander Graham Bell) -> The decibel (3180ms)\nWhen did he die?\tThomas Watson\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Thomas Watson, was, Alexander Graham Bell) -> Thomas Watson (3181ms)\nWhen did he die?\tThe quote\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The quote, was from, Alexander Graham Bell) -> The quote (3178ms)\nWhen did he die?\tthe best-known examples\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the best-known examples, are, Alexander Graham Bell) -> the best-known examples (3184ms)\nWhen did he die?\ta patent for the telephone\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (a patent for the telephone, was issued to, Alexander Graham Bell) -> a patent for the telephone (3179ms)\nWhen did he die?\tthe complex person\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the complex person, was, Alexander Graham Bell) -> the complex person (3182ms)\nWhen did he die?\tAT&T\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (AT&T, was founded by, Alexander Graham Bell) -> AT&T (3184ms)\nWhen did he die?\tAlex\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Alex, was named after, Alexander Graham Bell) -> Alex (3184ms)\nWhen did he die?\teach question\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (each question, is, Alexander Graham Bell) -> each question (3181ms)\nWhen did he die?\tthe key innovators\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the key innovators, were, Alexander Graham Bell) -> the key innovators (3183ms)\nWhen did he die?\tthe list\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the list, was, Alexander Graham Bell) -> the list (3182ms)\nWhen did he die?\tEugenics and the state\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Eugenics and the state, was, Alexander Graham Bell) -> Eugenics and the state (3181ms)\nWhen did he die?\tThe answer\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The answer, is, Alexander Graham Bell) -> The answer (3182ms)\nWhen did he die?\tthe AT&T breakup\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the AT&T breakup, was founded by, Alexander Graham Bell) -> the AT&T breakup (3184ms)\nWhen did he die?\tScience\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Science, was revived by, Alexander Graham Bell) -> Science (3183ms)\nWhen did he die?\tThe bel\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The bel, was named after, Alexander Graham Bell) -> The bel (3180ms)\nWhen did he die?\tthe week\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the week, is from, Alexander Graham Bell) -> the week (3181ms)\nWhen did he die?\ta Bel\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (a Bel, was named after, Alexander Graham Bell) -> a Bel (3181ms)\nWhen did he die?\tthe key people\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the key people, was, Alexander Graham Bell ? Scotsman) -> the key people (3180ms)\nWhen did he die?\tthe displays\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the displays, are replicas of, Alexander Graham Bell) -> the displays (3183ms)\nWhen did he die?\tOne favorite\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (One favorite, is, Alexander Graham Bell) -> One favorite (3182ms)\nWhen did he die?\tdyslexic figures\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (dyslexic figures, are, Alexander Graham Bell) -> dyslexic figures (3182ms)\nWhen did he die?\ttelecommunication\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (telecommunication, are, Alexander Graham Bell) -> telecommunication (3183ms)\nWhen did he die?\tthe left\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the left, is, Alexander Graham Bell) -> the left (3182ms)\nWhen did he die?\tAmong them\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Among them, was, Alexander Graham Bell) -> Among them (3181ms)\nWhen did he die?\tElisha Gray\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Elisha Gray, was, Alexander Graham Bell) -> Elisha Gray (3182ms)\nWhen did he die?\tDeafdigest ?\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Deafdigest ?, Was, Alexander Graham Bell really) -> Deafdigest ? (3180ms)\nWhen did he die?\tcorrupt government officials\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (corrupt government officials, were behind, Alexander Graham Bell) -> corrupt government officials (3182ms)\nWhen did he die?\ta survivor\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (a survivor, is an expert on, Alexander Graham Bell) -> a survivor (3181ms)\nWhen did he die?\tThe teacher\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The teacher, was, Alexander Graham Bell) -> The teacher (3182ms)\nWhen did he die?\tKeller\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Keller, was supported by, Alexander Graham Bell) -> Keller (3183ms)\nWhen did he die?\tuse worldwide\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (use worldwide, was first patented by, Alexander Graham Bell) -> use worldwide (3181ms)\nWhen did he die?\tThe phonautograph\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The phonautograph, was one of, Alexander Graham Bell) -> The phonautograph (3180ms)\nWhen did he die?\tAntonio Meucci\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Antonio Meucci, was to, Alexander Graham Bell) -> Antonio Meucci (3182ms)\nWhen did he die?\tThe focus\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The focus, is on, Alexander Graham Bell) -> The focus (3181ms)\nWhen did he die?\tthe most famous early settler\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (the most famous early settler, was, Alexander Graham Bell) -> the most famous early settler (3183ms)\nWhen did he die?\tBell\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (Bell, is, Dr. Alexander Graham Bell) -> Bell (3180ms)\nWhen did he die?\ta genius\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (a genius, is being, Alexander Graham Bell) -> a genius (3180ms)\nWhen did he die?\tThe inventor of the telephone\t-1.0\tWhen did he die? -> $x: ($x, be be, alexander graham bell) -> (The inventor of the telephone, is, Alexander Graham Bell) -> The inventor of the telephone (3181ms)\nWhen was the Hoover Dam constructed?\t1931\t1.4444444444409998\tWhen was the Hoover Dam constructed? -> $x: (hoover dam, be construct in, $x) -> (The Hoover Dam, was constructed in, 1931) -> 1931 (685ms)\nWhen was the Hoover Dam constructed?\tconcrete\t-0.33333333333000015\tWhen was the Hoover Dam constructed? -> $x: (hoover dam, be construct of, $x) -> (The Hoover Dam, is constructed of, concrete) -> concrete (684ms)\nWhen was the Hoover Dam constructed?\tno structure\t-0.44444444444100006\tWhen was the Hoover Dam constructed? -> $x: ($x, construct, hoover dam) -> (no structure, had ever been constructed like, the Hoover Dam) -> no structure (684ms)\nWhen was the Hoover Dam constructed?\tBechtel\t-0.44444444444100006\tWhen was the Hoover Dam constructed? -> $x: ($x, construct, hoover dam) -> (Bechtel, begins constructing, Hoover Dam) -> Bechtel (685ms)\nWhen was the Hoover Dam constructed?\tharness\t-0.44444444444100006\tWhen was the Hoover Dam constructed? -> $x: (hoover dam, construct, $x) -> (the Hoover Dam, was constructed to, harness) -> harness (684ms)\nWho was Picasso?\tcollage today\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, is able to do with, collage today) -> collage today (1399ms)\nWho was Picasso?\tcollages\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, enjoyed doing, collages) -> collages (1343ms)\nWho was Picasso?\ta Raphael drawing\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (?Pablo Picasso, did this copy of, a Raphael drawing) -> a Raphael drawing (1292ms)\nWho was Picasso?\tthe crazy oven mitt skull man\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (~Pablo Picasso omg i, do see, the crazy oven mitt skull man) -> the crazy oven mitt skull man (1399ms)\nWho was Picasso?\tdyslexia\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, does, dyslexia) -> dyslexia (1399ms)\nWho was Picasso?\tjail time\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (? Pablo Picasso, did, jail time) -> jail time (1399ms)\nWho was Picasso?\tthe ceiling\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, is doing sketches on, the ceiling) -> the ceiling (1292ms)\nWho was Picasso?\talways\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, am doing that, always) -> always (1343ms)\nWho was Picasso?\tpaintings and drawings\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did, paintings and drawings) -> paintings and drawings (1292ms)\nWho was Picasso?\twhat people say you cannot do\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, is doing, what people say you cannot do) -> what people say you cannot do (1292ms)\nWho was Picasso?\tDavid Douglas Duncan\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did for, David Douglas Duncan) -> David Douglas Duncan (1343ms)\nWho was Picasso?\tCHEAP\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (-Pablo Picasso, DONE, CHEAP) -> CHEAP (1292ms)\nWho was Picasso?\ttwo colors\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, do, two colors) -> two colors (1343ms)\nWho was Picasso?\tone peach\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso One, does a whole painting for, one peach) -> one peach (1343ms)\nWho was Picasso?\tmemorial painting Guernica\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Spanish painter Pablo Picasso, does, memorial painting Guernica) -> memorial painting Guernica (1292ms)\nWho was Picasso?\tart color life\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, so does, art color life) -> art color life (1343ms)\nWho was Picasso?\tpreschool\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did n?t go to, preschool) -> preschool (1343ms)\nWho was Picasso?\tpainting\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did in, painting) -> painting (1399ms)\nWho was Picasso?\tpowerful etchings\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did a number of, powerful etchings) -> powerful etchings (1399ms)\nWho was Picasso?\tart trades\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso amazing, do, art trades) -> art trades (1292ms)\nWho was Picasso?\tshe has forgiven\t1.1111111111029999\tWho was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, does know if, she has forgiven) -> she has forgiven (1292ms)\nWho was Picasso?\tKate Winslet\t0.9999999999939999\tWho was Picasso? -> $x: ($x, happen to, picasso) -> (Kate Winslet, happened to own, Picasso) -> Kate Winslet (1399ms)\nWho was Picasso?\tvariations\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did a complete series of, variations) -> variations (1926ms)\nWho was Picasso?\tAndy?s\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso?s landscape challenges, does, Andy?s) -> Andy?s (1620ms)\nWho was Picasso?\tTiffany pendants\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, has done for, Tiffany pendants) -> Tiffany pendants (2722ms)\nWho was Picasso?\ta pencil\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, could do his work with, a pencil) -> a pencil (2722ms)\nWho was Picasso?\tbeforehand\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, had done, beforehand) -> beforehand (2722ms)\nWho was Picasso?\tathletic ability\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, have to do with, athletic ability) -> athletic ability (2354ms)\nWho was Picasso?\timages\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did a series of, images) -> images (2690ms)\nWho was Picasso?\tthe same theme\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, the same theme) -> the same theme (2002ms)\nWho was Picasso?\tassistance\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, assistance) -> assistance (2353ms)\nWho was Picasso?\tan excellent job\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso Fish, did, an excellent job) -> an excellent job (1620ms)\nWho was Picasso?\tthe handkerchief\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, really did, the handkerchief) -> the handkerchief (2547ms)\nWho was Picasso?\tthe end\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, must have done this at, the end) -> the end (1926ms)\nWho was Picasso?\tart\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did for, art) -> art (1926ms)\nWho was Picasso?\ttwo master works\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did to, two master works) -> two master works (2547ms)\nWho was Picasso?\ta > pencil\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, could do his work with, a > pencil) -> a > pencil (1450ms)\nWho was Picasso?\tthe Second World War\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did the same thing during, the Second World War) -> the Second World War (1620ms)\nWho was Picasso?\tGuernica\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did called, Guernica) -> Guernica (2002ms)\nWho was Picasso?\tpaint\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, is doing with, paint) -> paint (1488ms)\nWho was Picasso?\tlithographic prints\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did a series of, lithographic prints) -> lithographic prints (2548ms)\nWho was Picasso?\tvan Gogh and Degas\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, does, van Gogh and Degas) -> van Gogh and Degas (2548ms)\nWho was Picasso?\tthe drawings\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, were doing, the drawings) -> the drawings (2722ms)\nWho was Picasso?\tfine\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, is doing, fine) -> fine (2002ms)\nWho was Picasso?\ta brush\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did with, a brush) -> a brush (1450ms)\nWho was Picasso?\tthe time\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, was doing at, the time) -> the time (2722ms)\nWho was Picasso?\tthe painting\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, the painting) -> the painting (2690ms)\nWho was Picasso?\ta shell\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did n?t crawl in, a shell) -> a shell (1451ms)\nWho was Picasso?\ta Greenish Period\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did n?t have, a Greenish Period) -> a Greenish Period (2690ms)\nWho was Picasso?\tPablo Picasso\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, Do, Pablo Picasso) -> Pablo Picasso (1450ms)\nWho was Picasso?\tcolor printa\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did experiment with, color printa) -> color printa (2002ms)\nWho was Picasso?\tblue paintings or cubism series ?\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, blue paintings or cubism series ?) -> blue paintings or cubism series ? (1488ms)\nWho was Picasso?\ta quick sketch\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, a quick sketch) -> a quick sketch (2548ms)\nWho was Picasso?\ta quick-but-beautiful sketch\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, does, a quick-but-beautiful sketch) -> a quick-but-beautiful sketch (2002ms)\nWho was Picasso?\tfrequent the community bar\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, frequent the community bar) -> frequent the community bar (2690ms)\nWho was Picasso?\tover and over again\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did the same theme, over and over again) -> over and over again (2690ms)\nWho was Picasso?\tthe Bellagio fountains\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did have a nice view of, the Bellagio fountains) -> the Bellagio fountains (2002ms)\nWho was Picasso?\tMonet\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, so did, Monet) -> Monet (2353ms)\nWho was Picasso?\tso much\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, so much) -> so much (2690ms)\nWho was Picasso?\tthe portrait\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, the portrait) -> the portrait (1450ms)\nWho was Picasso?\tFrancois Truffaut\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, Francois Truffaut) -> Francois Truffaut (1488ms)\nWho was Picasso?\ta little sketch\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, does, a little sketch) -> a little sketch (1620ms)\nWho was Picasso?\tCubism-looking\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, wanted to do with, Cubism-looking) -> Cubism-looking (1926ms)\nWho was Picasso?\tpaint? ?\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did for, paint? ?) -> paint? ? (2690ms)\nWho was Picasso?\tlight painting\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, light painting) -> light painting (1620ms)\nWho was Picasso?\t20 studies\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did over, 20 studies) -> 20 studies (1620ms)\nWho was Picasso?\tn?t act\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, n?t act) -> n?t act (2547ms)\nWho was Picasso?\tso\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, so) -> so (1926ms)\nWho was Picasso?\tyears\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, has been doing for, years) -> years (1620ms)\nWho was Picasso?\tBerger\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso*, did, Berger) -> Berger (2002ms)\nWho was Picasso?\tn?t paint\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, n?t paint) -> n?t paint (2002ms)\nWho was Picasso?\tcubist forms\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did n?t just launch into, cubist forms) -> cubist forms (2690ms)\nWho was Picasso?\tbackground\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did away with, background) -> background (2354ms)\nWho was Picasso?\tthe scenery\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, was hired to do, the scenery) -> the scenery (1488ms)\nWho was Picasso?\ta series\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, may have done, a series) -> a series (1620ms)\nWho was Picasso?\tthe officials\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did each of, the officials) -> the officials (1488ms)\nWho was Picasso?\tpreparation\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did in, preparation) -> preparation (1926ms)\nWho was Picasso?\tthe actual production\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, had nothing to do with, the actual production) -> the actual production (2690ms)\nWho was Picasso?\t1907\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, had done, 1907) -> 1907 (2353ms)\nWho was Picasso?\tonce\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, once) -> once (2354ms)\nWho was Picasso?\ttwo paintings and 57 drawings\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, to do, two paintings and 57 drawings) -> two paintings and 57 drawings (1926ms)\nWho was Picasso?\tthe drawing\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, the drawing) -> the drawing (1451ms)\nWho was Picasso?\t1950\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did n?t return until, 1950) -> 1950 (2548ms)\nWho was Picasso?\tworks\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, was doing in, works) -> works (1488ms)\nWho was Picasso?\tTiffany sale\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did regarding, Tiffany sale) -> Tiffany sale (2722ms)\nWho was Picasso?\t40,000\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, 40,000) -> 40,000 (1488ms)\nWho was Picasso?\tevery style\t0.8888888888819999\tWho was Picasso? -> $x: (picasso, do, $x) -> (Picasso, learned to do well in, every style) -> every style (2689ms)\nWho was Picasso?\tcolorful abstract paintings\t0.777777777773\tWho was Picasso? -> $x: (pablo picasso, be know for, $x) -> (Pablo Picasso, is well known for, colorful abstract paintings) -> colorful abstract paintings (2722ms)\nWho was Picasso?\tMalaga city\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (Malaga city, is the birthplace of, Pablo Picasso) -> Malaga city (2722ms)\nWho was Picasso?\tWifredo Lam\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Wifredo Lam, Influenced By, Pablo Picasso) -> Wifredo Lam (2736ms)\nWho was Picasso?\tPollock?s work\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Pollock?s work, reflected the influence of, Pablo Picasso) -> Pollock?s work (2722ms)\nWho was Picasso?\t?douard Manet\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (?douard Manet, Influenced, Pablo Picasso) -> ?douard Manet (2743ms)\nWho was Picasso?\tWallace Stevens\t0.666666666663\tWho was Picasso? -> $x: ($x, inspired, pablo picasso) -> (Wallace Stevens, was inspired by, Pablo Picasso) -> Wallace Stevens (2775ms)\nWho was Picasso?\tthe exhibitions\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (the exhibitions, was of, Pablo Picasso) -> the exhibitions (2761ms)\nWho was Picasso?\tGeorges Braque\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Georges Braque, Influenced By, Pablo Picasso) -> Georges Braque (2750ms)\nWho was Picasso?\tEllsworth Kelly\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Ellsworth Kelly, Influenced By, Pablo Picasso) -> Ellsworth Kelly (2736ms)\nWho was Picasso?\tJean Auguste Dominique Ingres\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jean Auguste Dominique Ingres, Influenced, Pablo Picasso) -> Jean Auguste Dominique Ingres (2722ms)\nWho was Picasso?\tChaplin\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (Chaplin, was visiting the studio of, his friend Pablo Picasso) -> Chaplin (2736ms)\nWho was Picasso?\tAnalytic cubism\t0.666666666663\tWho was Picasso? -> $x: ($x, develop, pablo picasso) -> (Analytic cubism, was jointly developed by, Pablo Picasso) -> Analytic cubism (2750ms)\nWho was Picasso?\tthe Three  Musicians\t0.666666666663\tWho was Picasso? -> $x: ($x, create, pablo picasso) -> (the Three  Musicians, was created by, Pablo Picasso) -> the Three  Musicians (2755ms)\nWho was Picasso?\tDavid Smith\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (David Smith, Influenced By, Pablo Picasso) -> David Smith (2755ms)\nWho was Picasso?\tNorman Ollestad\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Norman Ollestad, Influenced By, Pablo Picasso) -> Norman Ollestad (2755ms)\nWho was Picasso?\tstatge designs\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (statge designs, were some of, the genres Pablo Picasso) -> statge designs (2729ms)\nWho was Picasso?\tJan Matulka\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jan Matulka, Influenced By, Pablo Picasso) -> Jan Matulka (2729ms)\nWho was Picasso?\tWikipedia\t0.666666666663\tWho was Picasso? -> $x: ($x, do, pablo picasso) -> (Wikipedia, do, Pablo Picasso) -> Wikipedia (2755ms)\nWho was Picasso?\tLa Rotonde\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (La Rotonde, were the meeting place of, Pablo Picasso) -> La Rotonde (2736ms)\nWho was Picasso?\tSara Murphy\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Sara Murphy, Influenced, Pablo Picasso) -> Sara Murphy (2729ms)\nWho was Picasso?\tAppel\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Appel, was influenced first by, Pablo Picasso) -> Appel (2761ms)\nWho was Picasso?\tJoan Mir?\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Joan Mir?, Influenced By, Pablo Picasso) -> Joan Mir? (2743ms)\nWho was Picasso?\tAntonia Gerstacker\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Antonia Gerstacker, Influenced By, Pablo Picasso) -> Antonia Gerstacker (2766ms)\nWho was Picasso?\tByron Galvez\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Byron Galvez, Influenced By, Pablo Picasso) -> Byron Galvez (2722ms)\nWho was Picasso?\tPicasso\t0.666666666663\tWho was Picasso? -> $x: ($x, do, pablo picasso) -> (Picasso, Do, Pablo Picasso) -> Picasso (2750ms)\nWho was Picasso?\tthe city\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (the city, is the birthplace of, Pablo Picasso) -> the city (2761ms)\nWho was Picasso?\tArtists Cubism\t0.666666666663\tWho was Picasso? -> $x: ($x, initiate, pablo picasso) -> (Artists Cubism, Was initiated by, Pablo Picasso) -> Artists Cubism (2755ms)\nWho was Picasso?\tThe same\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (The same, can be said of, Pablo Picasso?s) -> The same (2761ms)\nWho was Picasso?\tBeaulieu\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Beaulieu, was certainly influenced by, Pablo Picasso) -> Beaulieu (2743ms)\nWho was Picasso?\tKarel Appel\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Karel Appel, Influenced By, Pablo Picasso) -> Karel Appel (2750ms)\nWho was Picasso?\tDick Bruna\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Dick Bruna, Influenced By, Pablo Picasso) -> Dick Bruna (2736ms)\nWho was Picasso?\tMax Jacob\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Max Jacob, Influenced By, Pablo Picasso) -> Max Jacob (2750ms)\nWho was Picasso?\tAlexandra Nechita\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Alexandra Nechita, Influenced By, Pablo Picasso) -> Alexandra Nechita (2771ms)\nWho was Picasso?\t15 km\t0.666666666663\tWho was Picasso? -> $x: (pablo picasso, be about, $x) -> (Pablo Ruiz Picasso Airport, is about, 15 km) -> 15 km (2766ms)\nWho was Picasso?\tGwyneth Paltrow\t0.666666666663\tWho was Picasso? -> $x: ($x, play, pablo picasso) -> (Gwyneth Paltrow, is slated to play, Pablo Picasso) -> Gwyneth Paltrow (2743ms)\nWho was Picasso?\tA good example\t0.666666666663\tWho was Picasso? -> $x: ($x, find, pablo picasso) -> (A good example, can be found in, Pablo Picasso) -> A good example (2766ms)\nWho was Picasso?\tYves Saint Laurent\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Yves Saint Laurent, Influenced By, Pablo Picasso) -> Yves Saint Laurent (2766ms)\nWho was Picasso?\tGertrude Stein\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Gertrude Stein, Influenced By, Pablo Picasso) -> Gertrude Stein (2736ms)\nWho was Picasso?\tVavenargues\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (Vavenargues, was the last home of, Pablo Picasso) -> Vavenargues (2766ms)\nWho was Picasso?\tPiet Mondrian\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Piet Mondrian, Influenced By, Pablo Picasso) -> Piet Mondrian (2750ms)\nWho was Picasso?\tAndy Warhol\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Andy Warhol, demonstrate the influence of, Pablo Picasso) -> Andy Warhol (2771ms)\nWho was Picasso?\tthe method\t0.666666666663\tWho was Picasso? -> $x: ($x, develop, pablo picasso) -> (the method, was developed by, Pablo Picasso) -> the method (2722ms)\nWho was Picasso?\tNew York\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (New York, is celebrating 100 years of, Pablo Picasso) -> New York (2729ms)\nWho was Picasso?\tLouise Nevelson\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Louise Nevelson, Influenced By, Pablo Picasso) -> Louise Nevelson (2729ms)\nWho was Picasso?\tthe ?Three Musicians ?\t0.666666666663\tWho was Picasso? -> $x: ($x, create, pablo picasso) -> (the ?Three Musicians ?, was created by, Pablo Picasso) -> the ?Three Musicians ? (2771ms)\nWho was Picasso?\t2012\t0.666666666663\tWho was Picasso? -> $x: (pablo picasso, be about, $x) -> (? Pablo Picasso, Much is being written about, 2012) -> 2012 (2775ms)\nWho was Picasso?\tDiego Rivera\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Diego Rivera, Influenced By, Pablo Picasso) -> Diego Rivera (2775ms)\nWho was Picasso?\tM?laga\t0.666666666663\tWho was Picasso? -> $x: ($x, here, pablo picasso) -> (M?laga, People born here, Pablo Picasso) -> M?laga (2736ms)\nWho was Picasso?\tthe thriving popular culture\t0.666666666663\tWho was Picasso? -> $x: ($x, inspire, pablo picasso) -> (the thriving popular culture, inspired, Pablo Picasso) -> the thriving popular culture (2771ms)\nWho was Picasso?\tbarren Keros\t0.666666666663\tWho was Picasso? -> $x: ($x, inspired, pablo picasso) -> (barren Keros, inspired such artists as, Pablo Picasso) -> barren Keros (2743ms)\nWho was Picasso?\tthe rest\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (the rest, was to significantly influence, Pablo Picasso) -> the rest (2771ms)\nWho was Picasso?\tFrancis Picabia\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Francis Picabia, Influenced By, Pablo Picasso) -> Francis Picabia (2761ms)\nWho was Picasso?\tNorman Mailer\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Norman Mailer, Influenced By, Pablo Picasso) -> Norman Mailer (2761ms)\nWho was Picasso?\tvalue\t0.666666666663\tWho was Picasso? -> $x: ($x, do, pablo picasso) -> (value, as did those of, a Pablo Picasso) -> value (2775ms)\nWho was Picasso?\tthe ?Three Musicians ?\t0.666666666663\tWho was Picasso? -> $x: ($x, create, pablo picasso) -> (the ?Three Musicians ?, was created by, Pablo Picasso) -> the ?Three Musicians ? (2771ms)\nWho was Picasso?\tCharles Sheeler\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Charles Sheeler, Influenced By, Pablo Picasso) -> Charles Sheeler (2743ms)\nWho was Picasso?\tJoseph Campbell\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Joseph Campbell, Influenced By, Pablo Picasso) -> Joseph Campbell (2743ms)\nWho was Picasso?\tVincent van Gogh\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Vincent van Gogh, Influenced, Pablo Picasso) -> Vincent van Gogh (2736ms)\nWho was Picasso?\tRonnie Landfield\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Ronnie Landfield, Influenced By, Pablo Picasso) -> Ronnie Landfield (2756ms)\nWho was Picasso?\tAntonio Banderas\t0.666666666663\tWho was Picasso? -> $x: ($x, play, pablo picasso) -> (Antonio Banderas, will play, Pablo Picasso) -> Antonio Banderas (2755ms)\nWho was Picasso?\tThe city\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (The city, was the birthplace of, Pablo Picasso) -> The city (2743ms)\nWho was Picasso?\tEug?ne Delacroix\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Eug?ne Delacroix, Influenced, Pablo Picasso) -> Eug?ne Delacroix (2750ms)\nWho was Picasso?\tUnique Art Course\t0.666666666663\tWho was Picasso? -> $x: ($x, do, pablo picasso) -> (Unique Art Course, do, Pablo Picasso) -> Unique Art Course (2771ms)\nWho was Picasso?\tCh?teau of Vauvenargues\t0.666666666663\tWho was Picasso? -> $x: ($x, here, pablo picasso) -> (Ch?teau of Vauvenargues, People interred here, Pablo Picasso) -> Ch?teau of Vauvenargues (2736ms)\nWho was Picasso?\tThe raid\t0.666666666663\tWho was Picasso? -> $x: ($x, inspired, pablo picasso) -> (The raid, inspired, Pablo Picasso?s) -> The raid (2766ms)\nWho was Picasso?\tJos? de Almada Negreiros\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jos? de Almada Negreiros, Influenced By, Pablo Picasso) -> Jos? de Almada Negreiros (2755ms)\nWho was Picasso?\ta surprising wealth\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (a surprising wealth, was also the birthplace of, Pablo Picasso) -> a surprising wealth (2750ms)\nWho was Picasso?\tI?ve\t0.666666666663\tWho was Picasso? -> $x: ($x, play, pablo picasso) -> (I?ve, played, Pablo Picasso) -> I?ve (2766ms)\nWho was Picasso?\tArticles Cubism Cubism\t0.666666666663\tWho was Picasso? -> $x: ($x, develop, pablo picasso) -> (Articles Cubism Cubism, was developed by, Pablo Picasso) -> Articles Cubism Cubism (2722ms)\nWho was Picasso?\tLasansky\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Lasansky, was markedly influenced by, Pablo Picasso) -> Lasansky (2755ms)\nWho was Picasso?\tJackson Pollock\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jackson Pollock, Influenced By, Pablo Picasso) -> Jackson Pollock (2736ms)\nWho was Picasso?\tpictures\t0.666666666663\tWho was Picasso? -> $x: ($x, do, pablo picasso) -> (pictures, do, ?-Pablo  Picasso) -> pictures (2771ms)\nWho was Picasso?\tJean-Michel Basquiat\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jean-Michel Basquiat, Influenced By, Pablo Picasso) -> Jean-Michel Basquiat (2750ms)\nWho was Picasso?\tE. E. Cummings\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (E. E. Cummings, Influenced By, Pablo Picasso) -> E. E. Cummings (2729ms)\nWho was Picasso?\tRodolfo Nieto\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Rodolfo Nieto, Influenced By, Pablo Picasso) -> Rodolfo Nieto (2761ms)\nWho was Picasso?\tSalvador Dal?\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Salvador Dal?, Influenced By, Pablo Picasso) -> Salvador Dal? (2736ms)\nWho was Picasso?\toutfit post\t0.666666666663\tWho was Picasso? -> $x: ($x, inspired, pablo picasso) -> (outfit post, is inspired by, Pablo Picasso?s Woman) -> outfit post (2750ms)\nWho was Picasso?\tprints and drawings\t0.666666666663\tWho was Picasso? -> $x: ($x, create, pablo picasso) -> (prints and drawings, created by, Pablo Picasso) -> prints and drawings (2736ms)\nWho was Picasso?\tGuillaume Apollinaire\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Guillaume Apollinaire, Influenced By, Pablo Picasso) -> Guillaume Apollinaire (2761ms)\nWho was Picasso?\tthe theft\t0.666666666663\tWho was Picasso? -> $x: (pablo picasso, be about, $x) -> (Pablo Picasso, was questioned about, the theft) -> the theft (2761ms)\nWho was Picasso?\tFrancisco Goya\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Francisco Goya, Influenced, Pablo Picasso) -> Francisco Goya (2771ms)\nWho was Picasso?\tAlfred Jarry\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Alfred Jarry, Influenced, Pablo Picasso) -> Alfred Jarry (2775ms)\nWho was Picasso?\tJohnston\t0.666666666663\tWho was Picasso? -> $x: ($x, inspired, pablo picasso) -> (Johnston, is inspired by, the Pablo Picasso quote) -> Johnston (2761ms)\nWho was Picasso?\tThe painting ?Buste d'Homme?\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (The painting ?Buste d'Homme?, is distinctive of, Pablo Picasso) -> The painting ?Buste d'Homme? (2766ms)\nWho was Picasso?\tsurrealist painter\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (surrealist painter, was influenced by, Pablo Picasso) -> surrealist painter (2755ms)\nWho was Picasso?\ta pictorial device\t0.666666666663\tWho was Picasso? -> $x: ($x, found, pablo picasso) -> (a pictorial device, also found in, Pablo Picasso) -> a pictorial device (2771ms)\nWho was Picasso?\t347 prints\t0.666666666663\tWho was Picasso? -> $x: ($x, create, pablo picasso) -> (347 prints, created by, 87-year-old Pablo Picasso) -> 347 prints (2729ms)\nWho was Picasso?\tRobert Stigers\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Robert Stigers, Influenced By, Pablo Picasso) -> Robert Stigers (2766ms)\nWho was Picasso?\tHenri de Toulouse-Lautrec\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Henri de Toulouse-Lautrec, Influenced, Pablo Picasso) -> Henri de Toulouse-Lautrec (2743ms)\nWho was Picasso?\tKeith Haring\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Keith Haring, Influenced By, Pablo Picasso) -> Keith Haring (2755ms)\nWho was Picasso?\tDeva Puri\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (Deva Puri, is currently hosting an exhibition of, Pablo Picasso) -> Deva Puri (2750ms)\nWho was Picasso?\tFrancisco Santos\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Francisco Santos, Influenced By, Pablo Picasso) -> Francisco Santos (2729ms)\nWho was Picasso?\tMalaga\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (Malaga, was the birthplace of, Pablo Picasso) -> Malaga (2775ms)\nWho was Picasso?\tArtists\t0.666666666663\tWho was Picasso? -> $x: ($x, initiate, pablo picasso) -> (Artists, Was initiated by, Pablo Picasso) -> Artists (2771ms)\nWho was Picasso?\tYou?ll\t0.666666666663\tWho was Picasso? -> $x: ($x, find, pablo picasso) -> (You?ll, find works by, Pablo Picasso) -> You?ll (2775ms)\nWho was Picasso?\tCubism Cubism\t0.666666666663\tWho was Picasso? -> $x: ($x, develop, pablo picasso) -> (Cubism Cubism, was developed by, Pablo Picasso) -> Cubism Cubism (2755ms)\nWho was Picasso?\tBig Bear\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Big Bear, has been greatly influenced by, Pablo Picasso?s Cubism) -> Big Bear (2775ms)\nWho was Picasso?\ta cat\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (a cat, was a gift of, Pablo Picasso) -> a cat (2771ms)\nWho was Picasso?\tSpain\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (Spain, is the home of, the famed Pablo Picasso) -> Spain (2743ms)\nWho was Picasso?\tJoan Glass\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Joan Glass, Influenced By, Pablo Picasso) -> Joan Glass (2761ms)\nWho was Picasso?\tJohn D. Graham\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (John D. Graham, Influenced By, Pablo Picasso) -> John D. Graham (2775ms)\nWho was Picasso?\tGerhard Gruber\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Gerhard Gruber, Influenced By, Pablo Picasso) -> Gerhard Gruber (2736ms)\nWho was Picasso?\tRichard?s work\t0.666666666663\tWho was Picasso? -> $x: ($x, inspire, pablo picasso) -> (Richard?s work, is inspired by, Pablo Picasso ?s visit) -> Richard?s work (2761ms)\nWho was Picasso?\tBertolt Brecht\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Bertolt Brecht, Influenced By, Pablo Picasso) -> Bertolt Brecht (2771ms)\nWho was Picasso?\tClaudio Bravo\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Claudio Bravo, Influenced By, Pablo Picasso) -> Claudio Bravo (2743ms)\nWho was Picasso?\tthe peak\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (the peak, influenced such artists as, Pablo Picasso) -> the peak (2771ms)\nWho was Picasso?\tDiego Vel?zquez\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Diego Vel?zquez, Influenced, Pablo Picasso) -> Diego Vel?zquez (2729ms)\nWho was Picasso?\tcreation\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (creation, is first an act of, Destruction ~Pablo Picasso) -> creation (2736ms)\nWho was Picasso?\tBen Shahn\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Ben Shahn, Influenced By, Pablo Picasso) -> Ben Shahn (2775ms)\nWho was Picasso?\tbeauty\t0.666666666663\tWho was Picasso? -> $x: (pablo picasso, be about, $x) -> (- Pablo Picasso, is about finding, beauty) -> beauty (2743ms)\nWho was Picasso?\tHenri Rousseau\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Henri Rousseau, Influenced, Pablo Picasso) -> Henri Rousseau (2729ms)\nWho was Picasso?\tThe mask\t0.666666666663\tWho was Picasso? -> $x: ($x, inspire, pablo picasso) -> (The mask, is said to have inspired, artist Pablo Picasso) -> The mask (2766ms)\nWho was Picasso?\tCubism\t0.666666666663\tWho was Picasso? -> $x: ($x, develop, pablo picasso) -> (Cubism, was developed by, Pablo Picasso) -> Cubism (2766ms)\nWho was Picasso?\tWassily Kandinsky\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Wassily Kandinsky, Influenced By, Pablo Picasso) -> Wassily Kandinsky (2729ms)\nWho was Picasso?\tthe role\t0.666666666663\tWho was Picasso? -> $x: ($x, play, pablo picasso) -> (the role, played by, Pablo Picasso) -> the role (2736ms)\nWho was Picasso?\tPaul Gauguin\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Paul Gauguin, Influenced, Pablo Picasso) -> Paul Gauguin (2743ms)\nWho was Picasso?\tconceptual art\t0.666666666663\tWho was Picasso? -> $x: ($x, be of, pablo picasso) -> (conceptual art, would be the cubist paintings of, Pablo Picasso) -> conceptual art (2766ms)\nWho was Picasso?\tFederico Cant? Garza\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Federico Cant? Garza, Influenced By, Pablo Picasso) -> Federico Cant? Garza (2771ms)\nWho was Picasso?\tPurvis Young\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Purvis Young, Influenced By, Pablo Picasso) -> Purvis Young (2729ms)\nWho was Picasso?\tRoberto Matta\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Roberto Matta, Influenced By, Pablo Picasso) -> Roberto Matta (2750ms)\nWho was Picasso?\tPaul C?zanne\t0.666666666663\tWho was Picasso? -> $x: ($x, influence, pablo picasso) -> (Paul C?zanne, Influenced, Pablo Picasso) -> Paul C?zanne (2766ms)\nWho was Picasso?\tthe Cone wing\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is now housed in, the Cone wing) -> the Cone wing (2788ms)\nWho was Picasso?\tthe park\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (\" Pablo Picasso, was sketching in, the park) -> the park (2788ms)\nWho was Picasso?\tPisa\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is in, Pisa) -> Pisa (2784ms)\nWho was Picasso?\ta restaurant\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is sitting in, a restaurant) -> a restaurant (2788ms)\nWho was Picasso?\tspain\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, spain) -> spain (2775ms)\nWho was Picasso?\tParis\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was in, Paris) -> Paris (2788ms)\nWho was Picasso?\tthe grandfather\t0.555555555552\tWho was Picasso? -> $x: (picasso, be know for, $x) -> (Picasso, is known for being, the grandfather) -> the grandfather (2784ms)\nWho was Picasso?\t1949\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, 1949) -> 1949 (2784ms)\nWho was Picasso?\tOne Response\t0.555555555552\tWho was Picasso? -> $x: ($x, happen to, pablo) -> (One Response, ever happened to, the gunboat San Pablo) -> One Response (2784ms)\nWho was Picasso?\t1988\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was published in, 1988) -> 1988 (2784ms)\nWho was Picasso?\ta shock ?\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso?, is in for, a shock ?) -> a shock ? (2784ms)\nWho was Picasso?\t02:39:48\t0.555555555552\tWho was Picasso? -> $x: ($x, happen to, pablo) -> (02:39:48, happened to, Pablo Ramos) -> 02:39:48 (2788ms)\nWho was Picasso?\ta lot\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (his creative period Pablo Picasso, was acting in, a lot) -> a lot (2788ms)\nWho was Picasso?\tjail\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was in, jail) -> jail (2796ms)\nWho was Picasso?\tthe centre\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (the M?laga-born Pablo Picasso ?, is bang in, the centre) -> the centre (2788ms)\nWho was Picasso?\tthe domain\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is an inscrutable one in, the domain) -> the domain (2796ms)\nWho was Picasso?\tthe south\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is located in, the south) -> the south (2792ms)\nWho was Picasso?\t1895\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, 1895) -> 1895 (2788ms)\nWho was Picasso?\tthe 1970s\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was similarly honored in, the 1970s) -> the 1970s (2784ms)\nWho was Picasso?\tPhotoShop CS2\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was created in, PhotoShop CS2) -> PhotoShop CS2 (2792ms)\nWho was Picasso?\tMalaga Spain\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, Malaga Spain) -> Malaga Spain (2788ms)\nWho was Picasso?\tMay\t0.555555555552\tWho was Picasso? -> $x: ($x, be in, pablo picasso) -> (May, was later honored in, Pablo Picasso) -> May (2788ms)\nWho was Picasso?\tlife\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso Love, is the greatest refreshment in, life) -> life (2780ms)\nWho was Picasso?\tMougins\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was living in, Mougins) -> Mougins (2784ms)\nWho was Picasso?\tthe range\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso paintings, are trading in, the range) -> the range (2796ms)\nWho was Picasso?\tPRINTS\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, PRINTS) -> PRINTS (2780ms)\nWho was Picasso?\tan ad\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso?s work, was featured in, an ad) -> an ad (2796ms)\nWho was Picasso?\tsouthern Spain\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (The artist Pablo Picasso, was born in, southern Spain) -> southern Spain (2780ms)\nWho was Picasso?\t1881\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, 1881) -> 1881 (2796ms)\nWho was Picasso?\tMlaga\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, Mlaga) -> Mlaga (2796ms)\nWho was Picasso?\tCollection\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, Collection) -> Collection (2792ms)\nWho was Picasso?\tadvertising\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, are resurfacing in, advertising) -> advertising (2792ms)\nWho was Picasso?\tthe movement\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, were foremost in introducing, the movement) -> the movement (2780ms)\nWho was Picasso?\tstinging and brilliant quips\t0.555555555552\tWho was Picasso? -> $x: (picasso, be know for, $x) -> (Picasso, was known for making, stinging and brilliant quips) -> stinging and brilliant quips (2784ms)\nWho was Picasso?\tthe Museum\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso?s prints, was put on in, the Museum) -> the Museum (2792ms)\nWho was Picasso?\tOctober 1881\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Ruiz Picasso, was born in, October 1881) -> October 1881 (2796ms)\nWho was Picasso?\t1982\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (The Spanish school Pablo Picasso, was founded in, 1982) -> 1982 (2792ms)\nWho was Picasso?\tM?laga\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, M?laga) -> M?laga (2792ms)\nWho was Picasso?\trevolt\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (? Pablo Picasso ?The whole world, is in, revolt) -> revolt (2784ms)\nWho was Picasso?\tPAINTING\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, PAINTING) -> PAINTING (2793ms)\nWho was Picasso?\tArt\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, Art) -> Art (2784ms)\nWho was Picasso?\tquestioning\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was brought in for, questioning) -> questioning (2784ms)\nWho was Picasso?\tsculpture\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, sculpture) -> sculpture (2775ms)\nWho was Picasso?\tthe case\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was considered a suspect in, the case) -> the case (2788ms)\nWho was Picasso?\tthe everyday\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is embedded in, the everyday) -> the everyday (2780ms)\nWho was Picasso?\tScott Fitzgerald\t0.555555555552\tWho was Picasso? -> $x: ($x, be in, pablo picasso) -> (Scott Fitzgerald, is standing in, the corner?Pablo Picasso) -> Scott Fitzgerald (2775ms)\nWho was Picasso?\tperiods\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picassos work, is categorized in, periods) -> periods (2788ms)\nWho was Picasso?\tPaintings\t0.555555555552\tWho was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, Paintings) -> Paintings (2792ms)\nWho was Picasso?\tNL West Report\t0.555555555552\tWho was Picasso? -> $x: ($x, happen to, pablo) -> (NL West Report, Happened to, Pablo Sandoval) -> NL West Report (2796ms)\nWho was Picasso?\tThe composer\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (The composer, was inspired by, four Picasso paintings) -> The composer (2824ms)\nWho was Picasso?\tThe mise-en-scene\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (The mise-en-scene, is inspired by, Picasso) -> The mise-en-scene (2825ms)\nWho was Picasso?\tHoffer\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (Hoffer, was greatly influenced by, Rembrandt and Picasso) -> Hoffer (2809ms)\nWho was Picasso?\tHenry Moore\t0.444444444442\tWho was Picasso? -> $x: ($x, inspired, picasso) -> (Henry Moore, was inspired by, Picasso?s neo-classical work) -> Henry Moore (2823ms)\nWho was Picasso?\teyes\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (eyes, show a direct influence from, Picasso?s Guernica) -> eyes (2823ms)\nWho was Picasso?\tthe rough ,\t0.444444444442\tWho was Picasso? -> $x: ($x, help, picasso) -> (the rough ,, help discover, the next Picasso) -> the rough , (2816ms)\nWho was Picasso?\tartists\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (artists, influenced by, Braque and Picasso) -> artists (2825ms)\nWho was Picasso?\t2011 collection\t0.444444444442\tWho was Picasso? -> $x: ($x, inspired, picasso) -> (2011 collection, was inspired by, the famous ship thief Picasso) -> 2011 collection (2825ms)\nWho was Picasso?\tReviewers\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (Reviewers, have noted influences of, Picasso) -> Reviewers (2825ms)\nWho was Picasso?\tcolor\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (color, was influenced by, Picasso and Matisse) -> color (2820ms)\nWho was Picasso?\tthe prints\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (the prints, here show little of, Picasso) -> the prints (2814ms)\nWho was Picasso?\tThe exhibit\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (The exhibit, is here from, the Mus?e National Picasso) -> The exhibit (2816ms)\nWho was Picasso?\tthe Blue Guitar\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (the Blue Guitar, was inspired by, Picasso) -> the Blue Guitar (2825ms)\nWho was Picasso?\tAfrican masks\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (African masks, was an enormous influence on, Picasso) -> African masks (2816ms)\nWho was Picasso?\tThe Manet composition\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (The Manet composition, inspired, Picasso) -> The Manet composition (2821ms)\nWho was Picasso?\tinstance Basquiat\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (instance Basquiat, was influenced by, Matisse and Picasso) -> instance Basquiat (2824ms)\nWho was Picasso?\tLebrun\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (Lebrun, also acknowledged the influence of, Picasso) -> Lebrun (2824ms)\nWho was Picasso?\tthe SPCA\t0.444444444442\tWho was Picasso? -> $x: ($x, kill, picasso) -> (the SPCA, killed, Picasso) -> the SPCA (2820ms)\nWho was Picasso?\tAnthony Hopkins\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Anthony Hopkins, played, Picasso) -> Anthony Hopkins (2820ms)\nWho was Picasso?\tthe most infamous event\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (the most infamous event, inspired, Picasso) -> the most infamous event (2812ms)\nWho was Picasso?\tMarseille\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (Marseille, People born here, Olivier Widmaier Picasso) -> Marseille (2821ms)\nWho was Picasso?\tLiguria\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (Liguria, People born here, Lamberto Picasso) -> Liguria (2809ms)\nWho was Picasso?\tScott\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Scott, played, Picasso) -> Scott (2821ms)\nWho was Picasso?\tPictured\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (Pictured, here is my attempt at, a Picasso-esque self portrait) -> Pictured (2824ms)\nWho was Picasso?\ta touch\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (a touch, here is, Picasso) -> a touch (2814ms)\nWho was Picasso?\tBen Schrager\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Ben Schrager, played, Picasso) -> Ben Schrager (2816ms)\nWho was Picasso?\tBanderas\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Banderas, is the right man to play, Picasso) -> Banderas (2814ms)\nWho was Picasso?\tCasals\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Casals, played, the cello or Picasso) -> Casals (2800ms)\nWho was Picasso?\tAfrican tribal art\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (African tribal art, had so inspired, Picasso) -> African tribal art (2816ms)\nWho was Picasso?\ta bygone period\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (a bygone period, enjoyed here by, Picasso) -> a bygone period (2809ms)\nWho was Picasso?\ta famous artist\t0.444444444442\tWho was Picasso? -> $x: ($x, help, picasso) -> (a famous artist, certainly helped, Picasso) -> a famous artist (2825ms)\nWho was Picasso?\tdrawings\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (drawings, show the influence of, Picasso) -> drawings (2824ms)\nWho was Picasso?\tMarie-Therese Walter\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (Marie-Therese Walter, inspired, Picasso paintings) -> Marie-Therese Walter (2825ms)\nWho was Picasso?\tShaun\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Shaun, was playing Elvis in, the Steve Martin play Picasso) -> Shaun (2800ms)\nWho was Picasso?\tSiguenza\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Siguenza, plays, Picasso) -> Siguenza (2821ms)\nWho was Picasso?\tthe young title character\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (the young title character, plays, Picasso) -> the young title character (2825ms)\nWho was Picasso?\tthe event\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (the event, inspired, Picasso) -> the event (2825ms)\nWho was Picasso?\tthe 20th century\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (the 20th century, was influenced by, Picasso) -> the 20th century (2816ms)\nWho was Picasso?\tMir?\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (Mir?, was influenced by, Picasso) -> Mir? (2809ms)\nWho was Picasso?\tPollock\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (Pollock, was influenced by, Picasso) -> Pollock (2823ms)\nWho was Picasso?\tMontevideo\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (Montevideo, People born here, Francisco Picasso) -> Montevideo (2824ms)\nWho was Picasso?\tthe Cycladic collection\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (the Cycladic collection, inspired such artists as, Picasso) -> the Cycladic collection (2825ms)\nWho was Picasso?\twell-known city\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (well-known city, inspires, Picasso) -> well-known city (2826ms)\nWho was Picasso?\tmac Finder\t0.444444444442\tWho was Picasso? -> $x: ($x, inspired, picasso) -> (mac Finder, was inspired by, Picasso...it) -> mac Finder (2814ms)\nWho was Picasso?\tJon Lovitz\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Jon Lovitz, played, Picasso) -> Jon Lovitz (2816ms)\nWho was Picasso?\tEven more far-fetched\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Even more far-fetched, was playing, Picasso) -> Even more far-fetched (2824ms)\nWho was Picasso?\tyoung children\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (young children, will play, Picasso) -> young children (2809ms)\nWho was Picasso?\tDilema\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (Dilema, is inspired by, Picasso) -> Dilema (2814ms)\nWho was Picasso?\tartwork\t0.444444444442\tWho was Picasso? -> $x: ($x, inspired, picasso) -> (artwork, were inspired by, Picasso?s greatest muse) -> artwork (2824ms)\nWho was Picasso?\tThe most famous painting\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (The most famous painting, here is, Picasso?s Guernica) -> The most famous painting (2825ms)\nWho was Picasso?\tGauguin\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (Gauguin, influenced, Picasso) -> Gauguin (2820ms)\nWho was Picasso?\tEarly works\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (Early works, were influenced by, Picasso) -> Early works (2816ms)\nWho was Picasso?\tPablo Picasso Guernica\t0.444444444442\tWho was Picasso? -> $x: ($x, inspired, picasso) -> (Pablo Picasso Guernica, was inspired by, Picasso) -> Pablo Picasso Guernica (2812ms)\nWho was Picasso?\tHockney\t0.444444444442\tWho was Picasso? -> $x: ($x, inspired, picasso) -> (Hockney, had been inspired by, Picasso?s art) -> Hockney (2809ms)\nWho was Picasso?\tthe land\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (the land, inspired, Picasso) -> the land (2825ms)\nWho was Picasso?\tthe sites\t0.444444444442\tWho was Picasso? -> $x: ($x, inspired, picasso) -> (the sites, inspired artists as diverse as, Renoir and Picasso) -> the sites (2820ms)\nWho was Picasso?\tASCII art\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (ASCII art, here go, my Picasso skills) -> ASCII art (2825ms)\nWho was Picasso?\tAlbert Einstein\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (Albert Einstein, Plays Appears In, Picasso at the Lapin Agile) -> Albert Einstein (2816ms)\nWho was Picasso?\tmajor works\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (major works, influences on, Picasso) -> major works (2812ms)\nWho was Picasso?\tdigital photographs\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (digital photographs, get to play, Picasso) -> digital photographs (2800ms)\nWho was Picasso?\tOkamoto Taro?s\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (Okamoto Taro?s, was inspired by, Picasso) -> Okamoto Taro?s (2800ms)\nWho was Picasso?\tThe original title\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (The original title, is a play on, Picasso) -> The original title (2809ms)\nWho was Picasso?\tAmerican Abstract Expressionists\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (American Abstract Expressionists, was influenced by, Picasso) -> American Abstract Expressionists (2821ms)\nWho was Picasso?\tV?ster?s\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (V?ster?s, People born here, Marie Picasso) -> V?ster?s (2812ms)\nWho was Picasso?\tThe crucial role\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (The crucial role, played by, Picasso) -> The crucial role (2820ms)\nWho was Picasso?\tgregarious social gatherings\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (gregarious social gatherings, played a major part in, Picasso) -> gregarious social gatherings (2804ms)\nWho was Picasso?\tthe Spanish town\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (the Spanish town, inspired, Picasso?s greatest work) -> the Spanish town (2823ms)\nWho was Picasso?\tThe artistic world\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (The artistic world, was widely influenced by, Picasso) -> The artistic world (2812ms)\nWho was Picasso?\tthe UPA artists\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (the UPA artists, were inspired by, Picasso) -> the UPA artists (2824ms)\nWho was Picasso?\tA 5 page paper\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (A 5 page paper, discusses the influence of, Picasso) -> A 5 page paper (2809ms)\nWho was Picasso?\tA great comparison\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (A great comparison, can be seen here in, Picasso) -> A great comparison (2812ms)\nWho was Picasso?\ta famous painter\t0.444444444442\tWho was Picasso? -> $x: ($x, influence, picasso) -> (a famous painter, influenced, Picasso) -> a famous painter (2812ms)\nWho was Picasso?\tThe setup\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (The setup, here looked just as, Picasso) -> The setup (2825ms)\nWho was Picasso?\tFrench painter and artist\t0.444444444442\tWho was Picasso? -> $x: ($x, help, picasso) -> (French painter and artist, help, Picasso and Matisse) -> French painter and artist (2821ms)\nWho was Picasso?\tDesign\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (Design, was inspired by, Picasso) -> Design (2821ms)\nWho was Picasso?\tan example\t0.444444444442\tWho was Picasso? -> $x: ($x, inspired, picasso) -> (an example, is inspired by, Picasso) -> an example (2821ms)\nWho was Picasso?\tthe best tourist destinations\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (the best tourist destinations, here is, the Picasso museum) -> the best tourist destinations (2800ms)\nWho was Picasso?\tThe subject\t0.444444444442\tWho was Picasso? -> $x: ($x, here, picasso) -> (The subject, here is, Picasso Vollard suite) -> The subject (2820ms)\nWho was Picasso?\tBarcelona\t0.444444444442\tWho was Picasso? -> $x: ($x, inspire, picasso) -> (Barcelona, inspired, Picasso) -> Barcelona (2824ms)\nWho was Picasso?\tray bans\t0.444444444442\tWho was Picasso? -> $x: ($x, play, picasso) -> (ray bans, played by, Picassos  blue man) -> ray bans (2823ms)\nHow did John Quincy Adams die?\ta stroke\t0.777777777776\tHow did John Quincy Adams die? -> $x: (john quincy adams, die of, $x) -> (President John Quincy Adams, dies of, a stroke) -> a stroke (1791ms)\nHow did John Quincy Adams die?\t11 Jul 1767\t0.33333333333299997\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (President John Quincy Adams, was born on, 11 Jul 1767) -> 11 Jul 1767 (2362ms)\nHow did John Quincy Adams die?\tthe 4th\t0.33333333333299997\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (President John Quincy Adams, is born on, the 4th) -> the 4th (1791ms)\nHow did John Quincy Adams die?\t1825\t0.33333333333299997\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (john_quincy_adams, is a person born on the date, 1825) -> 1825 (1791ms)\nHow did John Quincy Adams die?\tJuly 11 , 1767\t0.33333333333299997\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (John Quincy Adams, was born on, July 11 , 1767) -> July 11 , 1767 (1791ms)\nHow did John Quincy Adams die?\tJuly 1767\t0.33333333333299997\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (John Quincy Adams, was born on, July 1767) -> July 1767 (1791ms)\nHow did John Quincy Adams die?\tAugust 18\t0.33333333333299997\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (President John Quincy Adams, is born on, August 18) -> August 18 (1791ms)\nHow did John Quincy Adams die?\tdifferent ways\t0.333333333331\tHow did John Quincy Adams die? -> $x: (john quincy adams, die in, $x) -> (John Quincy Adams, died in very, different ways) -> different ways (2362ms)\nHow did John Quincy Adams die?\tthe Speaker?s room\t0.333333333331\tHow did John Quincy Adams die? -> $x: (john quincy adams, die in, $x) -> (John Quincy Adams, died in, the Speaker?s room) -> the Speaker?s room (2362ms)\nHow did John Quincy Adams die?\t1848\t0.333333333331\tHow did John Quincy Adams die? -> $x: (john quincy adams, die in, $x) -> (John Quincy Adams, died in, 1848) -> 1848 (2362ms)\nHow did John Quincy Adams die?\tthe Fourth\t0.222222222224\tHow did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and Thomas Jefferson, died on, the Fourth) -> the Fourth (2493ms)\nHow did John Quincy Adams die?\tthe same day\t0.222222222224\tHow did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (the Thomas Jefferson and John Adams, died on, the same day) -> the same day (2416ms)\nHow did John Quincy Adams die?\tJuly 4 , 1826.\t0.222222222224\tHow did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and and Thomas Jefferson, died on, July 4 , 1826.) -> July 4 , 1826. (2362ms)\nHow did John Quincy Adams die?\tJuly 4th , 1826\t0.222222222224\tHow did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and Thomas Jefferson, died on, July 4th , 1826) -> July 4th , 1826 (2493ms)\nHow did John Quincy Adams die?\tthe same July 4th\t0.222222222224\tHow did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and Thomas Jefferson, died on, the same July 4th) -> the same July 4th (2416ms)\nHow did John Quincy Adams die?\tthe 50th Anniversary\t0.222222222224\tHow did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and Thomas Jefferson, died on, the 50th Anniversary) -> the 50th Anniversary (2493ms)\nHow did John Quincy Adams die?\tFebruary 23\t0.222222222224\tHow did John Quincy Adams die? -> $x: (john quincy adams, die on, $x) -> (John Quincy Adams, died on, February 23) -> February 23 (2416ms)\nHow did John Quincy Adams die?\tJuly 4 , 1826\t0.222222222224\tHow did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (both John Adams and Thomas Jefferson, died on, July 4 , 1826) -> July 4 , 1826 (2493ms)\nHow did John Quincy Adams die?\tOctober 2 , 1803\t0.222222222224\tHow did John Quincy Adams die? -> $x: (samuel adams, die on, $x) -> (Samuel Adams, died on, October 2 , 1803) -> October 2 , 1803 (2362ms)\nHow did John Quincy Adams die?\tRussia\t0.222222222222\tHow did John Quincy Adams die? -> $x: (john quincy adams, live in, $x) -> (John Quincy Adams, lived in, Russia) -> Russia (2493ms)\nHow did John Quincy Adams die?\tOregon\t0.222222222222\tHow did John Quincy Adams die? -> $x: (john quincy adams, live in, $x) -> (John Quincy Adams Tice, lived in, Oregon) -> Oregon (2493ms)\nHow did John Quincy Adams die?\tFrance\t0.222222222222\tHow did John Quincy Adams die? -> $x: (john quincy adams, live in, $x) -> (John Quincy Adams, lived in, France) -> France (2493ms)\nHow did John Quincy Adams die?\tLowell four years\t0.222222222222\tHow did John Quincy Adams die? -> $x: (john quincy adams, live in, $x) -> (John Quincy Adams Thayer, has lived in, Lowell four years) -> Lowell four years (2493ms)\nHow did John Quincy Adams die?\t2 July 1870\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Lawyer, died on, 2 July 1870) -> 2 July 1870 (2609ms)\nHow did John Quincy Adams die?\ta treadmill\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Douglas Adams, died on, a treadmill) -> a treadmill (5182ms)\nHow did John Quincy Adams die?\t8 Nov 1593\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, 8 Nov 1593) -> 8 Nov 1593 (5206ms)\nHow did John Quincy Adams die?\t13 Jan 1890\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (john wesley, die on, $x) -> (John Wesley Slip, died on, 13 Jan 1890) -> 13 Jan 1890 (5223ms)\nHow did John Quincy Adams die?\tthe 50 th anniversary\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, the 50 th anniversary) -> the 50 th anniversary (2609ms)\nHow did John Quincy Adams die?\t22 April 1984\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Ansel Adams, died on, 22 April 1984) -> 22 April 1984 (5215ms)\nHow did John Quincy Adams die?\tthe same days\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, the same days) -> the same days (5215ms)\nHow did John Quincy Adams die?\t18 Jan 1658\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (William Adams, died on, 18 Jan 1658) -> 18 Jan 1658 (5206ms)\nHow did John Quincy Adams die?\tthe day\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, did die on, the day) -> the day (5224ms)\nHow did John Quincy Adams die?\tFriday morning\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Mr Adams, died on, Friday morning) -> Friday morning (5206ms)\nHow did John Quincy Adams die?\t4 July 1826\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, 4 July 1826) -> 4 July 1826 (2608ms)\nHow did John Quincy Adams die?\t3rd October 2011\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Anna Adams, died on, 3rd October 2011) -> 3rd October 2011 (5215ms)\nHow did John Quincy Adams die?\tthe 4th August 2003\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, the 4th August 2003) -> the 4th August 2003 (3744ms)\nHow did John Quincy Adams die?\t1 Mar 1787 in Otis\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Richard Adams, died on, 1 Mar 1787 in Otis) -> 1 Mar 1787 in Otis (5215ms)\nHow did John Quincy Adams die?\tApril 22 , 1984\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, April 22 , 1984) -> April 22 , 1984 (5182ms)\nHow did John Quincy Adams die?\t29-Sep-1831\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Mary Adams, died on, 29-Sep-1831) -> 29-Sep-1831 (4468ms)\nHow did John Quincy Adams die?\t27 March 1918\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, 27 March 1918) -> 27 March 1918 (5224ms)\nHow did John Quincy Adams die?\tthe basketball court\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, was dying on, the basketball court) -> the basketball court (3301ms)\nHow did John Quincy Adams die?\tSeptember 23 , 1999\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, September 23 , 1999) -> September 23 , 1999 (3301ms)\nHow did John Quincy Adams die?\tOctober 29 , 1873\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (George Adams, died on, October 29 , 1873) -> October 29 , 1873 (3744ms)\nHow did John Quincy Adams die?\tApril 4 , 2011\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Dennis Adam Dennis, died on, April 4 , 2011) -> April 4 , 2011 (3484ms)\nHow did John Quincy Adams die?\tFriday\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Yauch, died on, Friday) -> Friday (5206ms)\nHow did John Quincy Adams die?\tJune 4 , 2000\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, June 4 , 2000) -> June 4 , 2000 (4468ms)\nHow did John Quincy Adams die?\tAugust 10\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, August 10) -> August 10 (2609ms)\nHow did John Quincy Adams die?\t1 September 1996\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Brother Adam, died on, 1 September 1996) -> 1 September 1996 (5224ms)\nHow did John Quincy Adams die?\t9/11 31\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam K. Ruhalter, died on, 9/11 31) -> 9/11 31 (5206ms)\nHow did John Quincy Adams die?\tAugust 28th\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died last year on, August 28th) -> August 28th (5206ms)\nHow did John Quincy Adams die?\tMay\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Douglas Adams, died on, May) -> May (5206ms)\nHow did John Quincy Adams die?\tJuly 4 , 1826 , 50 years\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, July 4 , 1826 , 50 years) -> July 4 , 1826 , 50 years (3484ms)\nHow did John Quincy Adams die?\tAugust 25 , 1862\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Lemp, died on, August 25 , 1862) -> August 25 , 1862 (5215ms)\nHow did John Quincy Adams die?\tMarch 1 , 1893\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Goretski, died on, March 1 , 1893) -> March 1 , 1893 (3484ms)\nHow did John Quincy Adams die?\tthe very same day\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, the very same day) -> the very same day (5215ms)\nHow did John Quincy Adams die?\t20 Mar 1947\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Edith Jamison Adams, died on, 20 Mar 1947) -> 20 Mar 1947 (2609ms)\nHow did John Quincy Adams die?\tsame day\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Jefferson and Adams, dying on, same day) -> same day (5182ms)\nHow did John Quincy Adams die?\tMay 11 , 2001\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Douglas Adams, died on, May 11 , 2001) -> May 11 , 2001 (3198ms)\nHow did John Quincy Adams die?\tAugust 17 , 1894\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Mr. J. Adam Lautz, died on, August 17 , 1894) -> August 17 , 1894 (5182ms)\nHow did John Quincy Adams die?\tMay 17 , 1967\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (john wesley, die on, $x) -> (John Wesley Work, died on, May 17 , 1967) -> May 17 , 1967 (4468ms)\nHow did John Quincy Adams die?\tApril 24th , 1984\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, April 24th , 1984) -> April 24th , 1984 (3744ms)\nHow did John Quincy Adams die?\tIndependence Day\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, Independence Day) -> Independence Day (3484ms)\nHow did John Quincy Adams die?\tJuly 17 , 1790\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Smith, died on, July 17 , 1790) -> July 17 , 1790 (5182ms)\nHow did John Quincy Adams die?\tAugust 27 , 1864\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Hannah Adams, died on, August 27 , 1864) -> August 27 , 1864 (3301ms)\nHow did John Quincy Adams die?\tJuly 4\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, July 4) -> July 4 (5206ms)\nHow did John Quincy Adams die?\t11 AUG 1894\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, 11 AUG 1894) -> 11 AUG 1894 (3301ms)\nHow did John Quincy Adams die?\tAugust 30 , 1961\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (john wesley, die on, $x) -> (John Wesley Dobbs, died on, August 30 , 1961) -> August 30 , 1961 (2608ms)\nHow did John Quincy Adams die?\t30 Aug 1885\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Lightner, died on, 30 Aug 1885) -> 30 Aug 1885 (5223ms)\nHow did John Quincy Adams die?\tAugust 15 , 1999\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams County, died on, August 15 , 1999) -> August 15 , 1999 (5215ms)\nHow did John Quincy Adams die?\tThursday\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams county, died on, Thursday) -> Thursday (4468ms)\nHow did John Quincy Adams die?\tSunday 3rd\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Anna Adams, died on, Sunday 3rd) -> Sunday 3rd (3301ms)\nHow did John Quincy Adams die?\t15 Dec 1926\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams Co., died on, 15 Dec 1926) -> 15 Dec 1926 (5215ms)\nHow did John Quincy Adams die?\tthe same day as Thomas Jefferson\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, the same day as Thomas Jefferson) -> the same day as Thomas Jefferson (3484ms)\nHow did John Quincy Adams die?\tthe floor\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, the floor) -> the floor (5223ms)\nHow did John Quincy Adams die?\tOctober 28 , 1818\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, October 28 , 1818) -> October 28 , 1818 (5215ms)\nHow did John Quincy Adams die?\tthe Sultana\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Schneider, died on, the Sultana) -> the Sultana (5206ms)\nHow did John Quincy Adams die?\tthe cross\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, the cross) -> the cross (5215ms)\nHow did John Quincy Adams die?\t10 October 1866\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Darr, died on, 10 October 1866) -> 10 October 1866 (3198ms)\nHow did John Quincy Adams die?\tthe table\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, dies on, the table) -> the table (5182ms)\nHow did John Quincy Adams die?\tSaturday afternoon\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, had died on, Saturday afternoon) -> Saturday afternoon (3484ms)\nHow did John Quincy Adams die?\tNovember 18 , 1830\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Weishaupt, died on, November 18 , 1830) -> November 18 , 1830 (5215ms)\nHow did John Quincy Adams die?\ta Friday\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, a Friday) -> a Friday (4468ms)\nHow did John Quincy Adams die?\tthe 50th anniversary\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, the 50th anniversary) -> the 50th anniversary (3198ms)\nHow did John Quincy Adams die?\tMay 20 , 2009\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Ted Adams, died on, May 20 , 2009) -> May 20 , 2009 (3301ms)\nHow did John Quincy Adams die?\tcrusade and Marjorie\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, crusade and Marjorie) -> crusade and Marjorie (5215ms)\nHow did John Quincy Adams die?\t6 Dec 1908 aged 47\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (john wesley, die on, $x) -> (John Wesley Potter, died on, 6 Dec 1908 aged 47) -> 6 Dec 1908 aged 47 (5206ms)\nHow did John Quincy Adams die?\tJuly 4th\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, July 4th) -> July 4th (5206ms)\nHow did John Quincy Adams die?\tthe Cross\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (the Last Adam, died on, the Cross) -> the Cross (5182ms)\nHow did John Quincy Adams die?\ta midnight\t0.11111111111300004\tHow did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Old Adam, died on, a midnight) -> a midnight (3198ms)\nHow did John Quincy Adams die?\tcardiac arrest\t0.11111111111200003\tHow did John Quincy Adams die? -> $x: (thomas adams, die from, $x) -> (16 High school sophomore Thomas Adams, died from, cardiac arrest) -> cardiac arrest (5223ms)\nHow did John Quincy Adams die?\tAfghanistan\t0.11111111111100003\tHow did John Quincy Adams die? -> $x: (thomas harris, die in, $x) -> (Navy Seal Joshua Thomas Harris, died serving in, Afghanistan) -> Afghanistan (5223ms)\nHow did John Quincy Adams die?\tthe same year\t0.11111111111100003\tHow did John Quincy Adams die? -> $x: (thomas adams, die in, $x) -> (John Adams and Thomas Jefferson, died in, the same year) -> the same year (5224ms)\nHow did John Quincy Adams die?\t1803\t0.11111111111100003\tHow did John Quincy Adams die? -> $x: (samuel adams, die in, $x) -> (Samuel Adams, died in, 1803) -> 1803 (5223ms)\nHow did John Quincy Adams die?\t1832.?Born\t0.11111111111100003\tHow did John Quincy Adams die? -> $x: (thomas adams, die in, $x) -> (Thomas Boylston Adams, died in, 1832.?Born) -> 1832.?Born (5224ms)\nHow did John Quincy Adams die?\t1826\t0.11111111111100003\tHow did John Quincy Adams die? -> $x: (thomas adams, die in, $x) -> (John Adams and Thomas Jefferson, died in, 1826) -> 1826 (5223ms)\nHow did John Quincy Adams die?\tMasked Dispatches\t0.111111111111\tHow did John Quincy Adams die? -> $x: ($x, do, john quincy adams) -> (Masked Dispatches, does, John Quincy Adams) -> Masked Dispatches (5232ms)\nHow did John Quincy Adams die?\tany others\t0.11111111111\tHow did John Quincy Adams die? -> $x: (john quincy adams, do, $x) -> (John Quincy Adams Possibly Related Reading, Do, any others) -> any others (5232ms)\nHow did John Quincy Adams die?\tthe 19th century\t0.11111111111\tHow did John Quincy Adams die? -> $x: (john quincy adams, do, $x) -> (President John Quincy Adams, had done in, the 19th century) -> the 19th century (5232ms)\nHow did John Quincy Adams die?\tthe Barbary States\t0.11111111111\tHow did John Quincy Adams die? -> $x: (john quincy adams, do, $x) -> (John Quincy Adams, did n?t have to deal with, the Barbary States) -> the Barbary States (5232ms)\nHow did John Quincy Adams die?\tan alcohol related death\t0.111111111107\tHow did John Quincy Adams die? -> $x: (john quincy adams, die, $x) -> (President John Quincy Adams, dies, an alcohol related death) -> an alcohol related death (5232ms)\nHow did John Quincy Adams die?\tage 80\t0.111111111107\tHow did John Quincy Adams die? -> $x: (john quincy adams, die, $x) -> (1848 John Quincy Adams, died at, age 80) -> age 80 (5232ms)\nHow did John Quincy Adams die?\ttwo days later\t0.111111111107\tHow did John Quincy Adams die? -> $x: (john quincy adams, die, $x) -> (John Quincy Adams, died, two days later) -> two days later (5232ms)\nHow did John Quincy Adams die?\tcomplications\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam, died from, complications) -> complications (5232ms)\nHow did John Quincy Adams die?\thead-on crashes\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam Petty, died months apart from, head-on crashes) -> head-on crashes (5241ms)\nHow did John Quincy Adams die?\tacute lymphocytic leukemia\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam Jernee, died from, acute lymphocytic leukemia) -> acute lymphocytic leukemia (5241ms)\nHow did John Quincy Adams die?\tan improvised explosive device\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adams, died from, an improvised explosive device) -> an improvised explosive device (5241ms)\nHow did John Quincy Adams die?\ta jump or fall\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (DC 20 April George Washington Adams, dies from, a jump or fall) -> a jump or fall (5241ms)\nHow did John Quincy Adams die?\tmercuric cyanide poisoning\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Mrs. Adams, had died from, mercuric cyanide poisoning) -> mercuric cyanide poisoning (5241ms)\nHow did John Quincy Adams die?\tmassive head injuries\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam, died instantly from, massive head injuries) -> massive head injuries (5241ms)\nHow did John Quincy Adams die?\ta poisonous bite\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam de la Rupe, died from, a poisonous bite) -> a poisonous bite (5241ms)\nHow did John Quincy Adams die?\thead injuries\t1.0000333894311098E-12\tHow did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Essex teenager Adam Gosling, died from, head injuries) -> head injuries (5241ms)\nHow did John Quincy Adams die?\tEnoch?s arms\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Enoch?s arms) -> Enoch?s arms (5274ms)\nHow did John Quincy Adams die?\tevery hypothesis\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, was to die in, every hypothesis) -> every hypothesis (5249ms)\nHow did John Quincy Adams die?\t1840\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam Poe, died in, 1840) -> 1840 (5249ms)\nHow did John Quincy Adams die?\tthe spirit\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the spirit) -> the spirit (5281ms)\nHow did John Quincy Adams die?\t1791\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley, died in, 1791) -> 1791 (5274ms)\nHow did John Quincy Adams die?\t1878\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1878) -> 1878 (5290ms)\nHow did John Quincy Adams die?\tFranklin\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam Carson, died in, Franklin) -> Franklin (5266ms)\nHow did John Quincy Adams die?\ta Los Angeles hospital\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died Wednesday in, a Los Angeles hospital) -> a Los Angeles hospital (5257ms)\nHow did John Quincy Adams die?\ta racing accident\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, a racing accident) -> a racing accident (5257ms)\nHow did John Quincy Adams die?\t1988\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1988) -> 1988 (5290ms)\nHow did John Quincy Adams die?\tthe hospital\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died the next day in, the hospital) -> the hospital (5249ms)\nHow did John Quincy Adams die?\t1883\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley, died in, 1883) -> 1883 (5249ms)\nHow did John Quincy Adams die?\tQuincy\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (John Adams, dies in, Quincy) -> Quincy (5249ms)\nHow did John Quincy Adams die?\tCamp Bucca\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, Camp Bucca) -> Camp Bucca (5241ms)\nHow did John Quincy Adams die?\t1984\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1984) -> 1984 (5274ms)\nHow did John Quincy Adams die?\tMay 2001\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, May 2001) -> May 2001 (5281ms)\nHow did John Quincy Adams die?\tLondon\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, London) -> London (5266ms)\nHow did John Quincy Adams die?\tthe show\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, really die in, the show) -> the show (5274ms)\nHow did John Quincy Adams die?\tAugust\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, August) -> August (5290ms)\nHow did John Quincy Adams die?\tan X-15 accident\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, an X-15 accident) -> an X-15 accident (5266ms)\nHow did John Quincy Adams die?\tearly 2006\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, early 2006) -> early 2006 (5274ms)\nHow did John Quincy Adams die?\ta shootout\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, a shootout) -> a shootout (5241ms)\nHow did John Quincy Adams die?\tthe year\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the year) -> the year (5274ms)\nHow did John Quincy Adams die?\tBraintree\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, Braintree) -> Braintree (5257ms)\nHow did John Quincy Adams die?\tsin\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, sin) -> sin (5266ms)\nHow did John Quincy Adams die?\tthe Town\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the Town) -> the Town (5281ms)\nHow did John Quincy Adams die?\t1963\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1963) -> 1963 (5249ms)\nHow did John Quincy Adams die?\tEve\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Eve) -> Eve (5257ms)\nHow did John Quincy Adams die?\t1972 and 1991 respectively\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1972 and 1991 respectively) -> 1972 and 1991 respectively (5241ms)\nHow did John Quincy Adams die?\tthe jubilee year\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the jubilee year) -> the jubilee year (5257ms)\nHow did John Quincy Adams die?\tmid-October\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, mid-October) -> mid-October (5257ms)\nHow did John Quincy Adams die?\t1860\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1860) -> 1860 (5290ms)\nHow did John Quincy Adams die?\tinfancy\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, infancy) -> infancy (5274ms)\nHow did John Quincy Adams die?\tMassachusetts\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (John Adams, dies in, Massachusetts) -> Massachusetts (5274ms)\nHow did John Quincy Adams die?\t1880\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley Threatt, died in, 1880) -> 1880 (5274ms)\nHow did John Quincy Adams die?\t1790\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1790) -> 1790 (5281ms)\nHow did John Quincy Adams die?\tthe U.S. House\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, the U.S. House) -> the U.S. House (5249ms)\nHow did John Quincy Adams die?\t1748\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Deacon Adams, died in, 1748) -> 1748 (5281ms)\nHow did John Quincy Adams die?\t2000\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 2000) -> 2000 (5290ms)\nHow did John Quincy Adams die?\tprison\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, prison) -> prison (5266ms)\nHow did John Quincy Adams die?\tJuly\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley Barker, died suddenly in, July) -> July (5274ms)\nHow did John Quincy Adams die?\t2001\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 2001) -> 2001 (5281ms)\nHow did John Quincy Adams die?\tMichigan\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Michigan) -> Michigan (5266ms)\nHow did John Quincy Adams die?\tthe garden\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, die there in, the garden) -> the garden (5274ms)\nHow did John Quincy Adams die?\tAl Asad\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, Al Asad) -> Al Asad (5241ms)\nHow did John Quincy Adams die?\t1979\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1979) -> 1979 (5249ms)\nHow did John Quincy Adams die?\tthe Capitol Building\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, the Capitol Building) -> the Capitol Building (5266ms)\nHow did John Quincy Adams die?\toffice\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, office) -> office (5281ms)\nHow did John Quincy Adams die?\t1912\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died here in, 1912) -> 1912 (5281ms)\nHow did John Quincy Adams die?\tseminary\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, seminary) -> seminary (5257ms)\nHow did John Quincy Adams die?\tfive different ways\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, five different ways) -> five different ways (5257ms)\nHow did John Quincy Adams die?\tParadise\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Paradise) -> Paradise (5266ms)\nHow did John Quincy Adams die?\tthe recognition\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the recognition) -> the recognition (5281ms)\nHow did John Quincy Adams die?\tFranklin Co\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam Carson, died in, Franklin Co) -> Franklin Co (5249ms)\nHow did John Quincy Adams die?\ta few days\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, would die in, a few days) -> a few days (5257ms)\nHow did John Quincy Adams die?\t1850\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1850) -> 1850 (5281ms)\nHow did John Quincy Adams die?\t2008\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 2008) -> 2008 (5281ms)\nHow did John Quincy Adams die?\t2003\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam Hendelson, died in, 2003) -> 2003 (5257ms)\nHow did John Quincy Adams die?\tJanuary\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, January) -> January (5274ms)\nHow did John Quincy Adams die?\t1951\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1951) -> 1951 (5290ms)\nHow did John Quincy Adams die?\t1959\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1959) -> 1959 (5257ms)\nHow did John Quincy Adams die?\t1742\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1742) -> 1742 (5266ms)\nHow did John Quincy Adams die?\tChrist\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Christ) -> Christ (5281ms)\nHow did John Quincy Adams die?\tCarmel\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, Carmel) -> Carmel (5249ms)\nHow did John Quincy Adams die?\t1906\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley AULT, died in, 1906) -> 1906 (5281ms)\nHow did John Quincy Adams die?\t1792\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Robert Adam, died in, 1792) -> 1792 (5290ms)\nHow did John Quincy Adams die?\tthe process\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the process) -> the process (5249ms)\nHow did John Quincy Adams die?\tan accident\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, an accident) -> an accident (5266ms)\nHow did John Quincy Adams die?\t1900\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1900) -> 1900 (5281ms)\nHow did John Quincy Adams die?\tthe Garden\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the Garden) -> the Garden (5274ms)\nHow did John Quincy Adams die?\tTopeka\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley, died in, Topeka) -> Topeka (5266ms)\nHow did John Quincy Adams die?\t1562\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1562) -> 1562 (5266ms)\nHow did John Quincy Adams die?\t1829\t5.551115123125783E-17\tHow did John Quincy Adams die? -> $x: (adams, die in, $x) -> (John Adams, died in, 1829) -> 1829 (5290ms)\nHow did John Quincy Adams die?\t57 1823\t-0.0\tHow did John Quincy Adams die? -> $x: (samuel adams, die, $x) -> (Samuel Adams Holyoke, dies at, 57 1823) -> 57 1823 (5297ms)\nHow did John Quincy Adams die?\tfive years\t-0.0\tHow did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (John Adams and Thomas Jefferson, died, five years) -> five years (5290ms)\nHow did John Quincy Adams die?\tthe crypt\t-0.0\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bury in, $x) -> (John Quincy Adams, are buried in, the crypt) -> the crypt (5297ms)\nHow did John Quincy Adams die?\tthe home\t-0.0\tHow did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (cemetery # 44 Thomas J. Adams, died this morning at, the home) -> the home (5304ms)\nHow did John Quincy Adams die?\tthirty-seven years\t-0.0\tHow did John Quincy Adams die? -> $x: (samuel adams, die, $x) -> (Samuel Adams, died at just, thirty-seven years) -> thirty-seven years (5290ms)\nHow did John Quincy Adams die?\tsea\t-0.0\tHow did John Quincy Adams die? -> $x: (samuel adams, die, $x) -> (Captain Samuel Adams, had died at, sea) -> sea (5297ms)\nHow did John Quincy Adams die?\t4 March 1812\t-0.0\tHow did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (Thomas Boylston Adams, dies, 4 March 1812) -> 4 March 1812 (5304ms)\nHow did John Quincy Adams die?\tSat\t-0.0\tHow did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (resident Thomas Adams, died, Sat) -> Sat (5304ms)\nHow did John Quincy Adams die?\thours\t-0.0\tHow did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (John Adams and Thomas Jefferson, died within, hours) -> hours (5304ms)\nHow did John Quincy Adams die?\t184 years\t-0.0\tHow did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (John Adams and Thomas Jefferson, died exactly, 184 years) -> 184 years (5297ms)\nHow did John Quincy Adams die?\t1885\t-0.0\tHow did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (Thomas Adams WEST, died, 1885) -> 1885 (5297ms)\nHow did John Quincy Adams die?\tLouisa Johnson\t-9.999778782798785E-13\tHow did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, marries, Louisa Johnson) -> Louisa Johnson (5310ms)\nHow did John Quincy Adams die?\tEngland\t-9.999778782798785E-13\tHow did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (U.S. President John Quincy Adams, was married in, England) -> England (5310ms)\nHow did John Quincy Adams die?\tLouisa Catherine Johnson\t-9.999778782798785E-13\tHow did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, married, Louisa Catherine Johnson) -> Louisa Catherine Johnson (5304ms)\nHow did John Quincy Adams die?\tAnn Harrod\t-9.999778782798785E-13\tHow did John Quincy Adams die? -> $x: (thomas adams, marry, $x) -> (Thomas Boylston Adams, marries, Ann Harrod) -> Ann Harrod (5310ms)\nHow did John Quincy Adams die?\ta non-relative\t-9.999778782798785E-13\tHow did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, married, a non-relative) -> a non-relative (5310ms)\nHow did John Quincy Adams die?\tLouisa..not John Adams\t-9.999778782798785E-13\tHow did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (2011 5:36 pm John QUINCY Adams, married, Louisa..not John Adams) -> Louisa..not John Adams (5310ms)\nHow did John Quincy Adams die?\tAmbassador\t-9.999778782798785E-13\tHow did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, was married while, Ambassador) -> Ambassador (5304ms)\nHow did John Quincy Adams die?\t1797\t-9.999778782798785E-13\tHow did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, was married in, 1797) -> 1797 (5304ms)\nHow did John Quincy Adams die?\ta sudden cardiac event\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Douglas Adams, died of, a sudden cardiac event) -> a sudden cardiac event (5310ms)\nHow did John Quincy Adams die?\tan apparent heart attack\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (The British-born Adams, died Friday of, an apparent heart attack) -> an apparent heart attack (5327ms)\nHow did John Quincy Adams die?\ta drug overdose\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Nick Adams, died of, a drug overdose) -> a drug overdose (5332ms)\nHow did John Quincy Adams die?\ta cerebral hemorrhage\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, a cerebral hemorrhage) -> a cerebral hemorrhage (5317ms)\nHow did John Quincy Adams die?\tinjuries\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Ryan Adams, died of, injuries) -> injuries (5310ms)\nHow did John Quincy Adams die?\tLeukemia\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (john wesley, die of, $x) -> (John Wesley Pitts, died of, Leukemia) -> Leukemia (5322ms)\nHow did John Quincy Adams die?\ta heart condition\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (old Jesse Adams, died of, a heart condition) -> a heart condition (5317ms)\nHow did John Quincy Adams die?\tmultiple gunshot wounds\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, multiple gunshot wounds) -> multiple gunshot wounds (5322ms)\nHow did John Quincy Adams die?\tpneumonia\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died Monday of, pneumonia) -> pneumonia (5322ms)\nHow did John Quincy Adams die?\ta lung infection\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, a lung infection) -> a lung infection (5322ms)\nHow did John Quincy Adams die?\t3\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (adam, is a person who died at the age of, 3) -> 3 (5327ms)\nHow did John Quincy Adams die?\tyellow fever\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Dr. James Bemis Adams, died of, yellow fever) -> yellow fever (5322ms)\nHow did John Quincy Adams die?\tan apparent drug overdose\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, an apparent drug overdose) -> an apparent drug overdose (5317ms)\nHow did John Quincy Adams die?\tsudden cardiac arrest\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (john wesley, die of, $x) -> (John Wesley Foster, died of, sudden cardiac arrest) -> sudden cardiac arrest (5322ms)\nHow did John Quincy Adams die?\tAIDS\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (17 April 1996 Adam O?Connor, died of, AIDS) -> AIDS (5317ms)\nHow did John Quincy Adams die?\tLou Gehrig?s Disease\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (? Adams, died of, Lou Gehrig?s Disease) -> Lou Gehrig?s Disease (5310ms)\nHow did John Quincy Adams die?\ta brain tumor\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died of, a brain tumor) -> a brain tumor (5317ms)\nHow did John Quincy Adams die?\tnon-combat related injuries\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, non-combat related injuries) -> non-combat related injuries (5310ms)\nHow did John Quincy Adams die?\ta heart attack\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (2001 Douglas Adams, died of, a heart attack) -> a heart attack (5332ms)\nHow did John Quincy Adams die?\tfrontotemporal dementia\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died last year of, frontotemporal dementia) -> frontotemporal dementia (5327ms)\nHow did John Quincy Adams die?\ta brain tumour\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, sadly died of, a brain tumour) -> a brain tumour (5310ms)\nHow did John Quincy Adams die?\ta heart attack at the age of 49\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, a heart attack at the age of 49) -> a heart attack at the age of 49 (5322ms)\nHow did John Quincy Adams die?\tan accidental prescription drug overdose\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, an accidental prescription drug overdose) -> an accidental prescription drug overdose (5327ms)\nHow did John Quincy Adams die?\thyponatraemia\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam Strain, had died of, hyponatraemia) -> hyponatraemia (5317ms)\nHow did John Quincy Adams die?\tfright many times\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, actually died of, fright many times) -> fright many times (5322ms)\nHow did John Quincy Adams die?\tleukaemia\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (his long-time coach Adam Hunter, died of, leukaemia) -> leukaemia (5327ms)\nHow did John Quincy Adams die?\t1000 years\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died short of, 1000 years) -> 1000 years (5317ms)\nHow did John Quincy Adams die?\tcystitis\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died of, cystitis) -> cystitis (5317ms)\nHow did John Quincy Adams die?\told age\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died of, old age) -> old age (5327ms)\nHow did John Quincy Adams die?\topiate toxicity\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Ada Adams, died two days later of, opiate toxicity) -> opiate toxicity (5327ms)\nHow did John Quincy Adams die?\ta rare illness\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, also had died of, a rare illness) -> a rare illness (5327ms)\nHow did John Quincy Adams die?\tsun stroke\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died of, sun stroke) -> sun stroke (5322ms)\nHow did John Quincy Adams die?\tnatural causes\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Easter Sunday 1995 Adam Harrington, died of, natural causes) -> natural causes (5317ms)\nHow did John Quincy Adams die?\tcancer\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (' Adam Yauch, dies of, cancer) -> cancer (5327ms)\nHow did John Quincy Adams die?\tLou Gherig\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, Lou Gherig) -> Lou Gherig (5327ms)\nHow did John Quincy Adams die?\t8br\t-0.11111111111\tHow did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Mr Ebenr Adams, Died the 31st day of, 8br) -> 8br (5322ms)\nHow did John Quincy Adams die?\tfirst\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, dies, first) -> first (5351ms)\nHow did John Quincy Adams die?\tthe age of 81\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died at, the age of 81) -> the age of 81 (5337ms)\nHow did John Quincy Adams die?\tshortly\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, shortly) -> shortly (5341ms)\nHow did John Quincy Adams die?\tOctober 4 , 2003\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (ADAMS, died, October 4 , 2003) -> October 4 , 2003 (5356ms)\nHow did John Quincy Adams die?\tthe day he sinned\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, the day he sinned) -> the day he sinned (5356ms)\nHow did John Quincy Adams die?\ta substance\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a substance) -> a substance (5332ms)\nHow did John Quincy Adams die?\twhen he was 930\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, when he was 930) -> when he was 930 (5359ms)\nHow did John Quincy Adams die?\tage 86\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Slipp, died at, age 86) -> age 86 (5341ms)\nHow did John Quincy Adams die?\t22 Jan 1914\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 22 Jan 1914) -> 22 Jan 1914 (5332ms)\nHow did John Quincy Adams die?\t49\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died at, 49) -> 49 (5364ms)\nHow did John Quincy Adams die?\tSunday morning\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, Sunday morning) -> Sunday morning (5337ms)\nHow did John Quincy Adams die?\tJan\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Jan) -> Jan (5351ms)\nHow did John Quincy Adams die?\t11/10/1933\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, 11/10/1933) -> 11/10/1933 (5332ms)\nHow did John Quincy Adams die?\t19 Jun 1941 , bur\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (ADAMS, died, 19 Jun 1941 , bur) -> 19 Jun 1941 , bur (5364ms)\nHow did John Quincy Adams die?\t10 Jan 1871 Age 1 Yr 16 Da Son\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, Died, 10 Jan 1871 Age 1 Yr 16 Da Son) -> 10 Jan 1871 Age 1 Yr 16 Da Son (5364ms)\nHow did John Quincy Adams die?\tMay 22 , 1986\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, May 22 , 1986) -> May 22 , 1986 (5351ms)\nHow did John Quincy Adams die?\tOctober 21 , 1901 Peotone , IL ,\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, October 21 , 1901 Peotone , IL ,) -> October 21 , 1901 Peotone , IL , (5332ms)\nHow did John Quincy Adams die?\tMarch 25 , 1929 BETTIS\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, March 25 , 1929 BETTIS) -> March 25 , 1929 BETTIS (5356ms)\nHow did John Quincy Adams die?\t1920\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (JOHN WESLEY PHILLIPS, died before, 1920) -> 1920 (5364ms)\nHow did John Quincy Adams die?\tNov 28 , 1840\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley CLARK, died, Nov 28 , 1840) -> Nov 28 , 1840 (5360ms)\nHow did John Quincy Adams die?\tGenesis 5:5\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Genesis 5:5) -> Genesis 5:5 (5346ms)\nHow did John Quincy Adams die?\ta few hours later\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a few hours later) -> a few hours later (5360ms)\nHow did John Quincy Adams die?\tNov 15 , 1953\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Nov 15 , 1953) -> Nov 15 , 1953 (5356ms)\nHow did John Quincy Adams die?\t15 Jun 1852\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 15 Jun 1852) -> 15 Jun 1852 (5337ms)\nHow did John Quincy Adams die?\twhen he was 930 years old\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, when he was 930 years old) -> when he was 930 years old (5364ms)\nHow did John Quincy Adams die?\tJune 29 , 1835\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, June 29 , 1835) -> June 29 , 1835 (5346ms)\nHow did John Quincy Adams die?\tonly about fifty years before the birth of Noah\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, only about fifty years before the birth of Noah) -> only about fifty years before the birth of Noah (5360ms)\nHow did John Quincy Adams die?\tyesterday\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, yesterday) -> yesterday (5346ms)\nHow did John Quincy Adams die?\tOct 1782/8\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Oct 1782/8) -> Oct 1782/8 (5360ms)\nHow did John Quincy Adams die?\tthousands\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, thousands) -> thousands (5346ms)\nHow did John Quincy Adams die?\t2 March 1791\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, 2 March 1791) -> 2 March 1791 (5341ms)\nHow did John Quincy Adams die?\tFebruary 28 , 1855\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, February 28 , 1855) -> February 28 , 1855 (5352ms)\nHow did John Quincy Adams die?\t21 May 1945 , bur\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 21 May 1945 , bur) -> 21 May 1945 , bur (5341ms)\nHow did John Quincy Adams die?\tMay 11th\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Hyatt, dies, May 11th) -> May 11th (5356ms)\nHow did John Quincy Adams die?\t930 years\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 930 years) -> 930 years (5364ms)\nHow did John Quincy Adams die?\ta long time\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a long time) -> a long time (5332ms)\nHow did John Quincy Adams die?\tTwo years later\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Two years later) -> Two years later (5356ms)\nHow did John Quincy Adams die?\tthe age\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died at, the age) -> the age (5364ms)\nHow did John Quincy Adams die?\tMay 18 , 1964 SMITH\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, May 18 , 1964 SMITH) -> May 18 , 1964 SMITH (5360ms)\nHow did John Quincy Adams die?\tJuly 4 , 1930\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Linton, died, July 4 , 1930) -> July 4 , 1930 (5364ms)\nHow did John Quincy Adams die?\tDec. 21 , 1906 DODD , Lloyd Marion\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, Dec. 21 , 1906 DODD , Lloyd Marion) -> Dec. 21 , 1906 DODD , Lloyd Marion (5356ms)\nHow did John Quincy Adams die?\tyoung\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, young) -> young (5351ms)\nHow did John Quincy Adams die?\t3 Mar 1825\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 3 Mar 1825) -> 3 Mar 1825 (5364ms)\nHow did John Quincy Adams die?\tthe day he disobeyed\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, the day he disobeyed) -> the day he disobeyed (5337ms)\nHow did John Quincy Adams die?\tfollowing a heart attack\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, following a heart attack) -> following a heart attack (5356ms)\nHow did John Quincy Adams die?\t29 Sep 1844\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 29 Sep 1844) -> 29 Sep 1844 (5352ms)\nHow did John Quincy Adams die?\tthe time\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, the time) -> the time (5351ms)\nHow did John Quincy Adams die?\tFeb. 4\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, Feb. 4) -> Feb. 4 (5360ms)\nHow did John Quincy Adams die?\t15 Jul 1887\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 15 Jul 1887) -> 15 Jul 1887 (5341ms)\nHow did John Quincy Adams die?\ta long time ago\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a long time ago) -> a long time ago (5332ms)\nHow did John Quincy Adams die?\tNov. 4 , 1861\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Nov. 4 , 1861) -> Nov. 4 , 1861 (5360ms)\nHow did John Quincy Adams die?\tMarch 19 , 1882\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, March 19 , 1882) -> March 19 , 1882 (5351ms)\nHow did John Quincy Adams die?\tnow\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, dying, now) -> now (5356ms)\nHow did John Quincy Adams die?\ta martyr\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a martyr) -> a martyr (5360ms)\nHow did John Quincy Adams die?\t13 Mar 1911\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley PILCHER, died, 13 Mar 1911) -> 13 Mar 1911 (5360ms)\nHow did John Quincy Adams die?\t7 May 1930\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 7 May 1930) -> 7 May 1930 (5337ms)\nHow did John Quincy Adams die?\tSunday\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, Sunday) -> Sunday (5346ms)\nHow did John Quincy Adams die?\tJuly 4th , 1826 , several hours\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, July 4th , 1826 , several hours) -> July 4th , 1826 , several hours (5346ms)\nHow did John Quincy Adams die?\tDecember 1804\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, December 1804) -> December 1804 (5337ms)\nHow did John Quincy Adams die?\t9 Feb 1935\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, 9 Feb 1935) -> 9 Feb 1935 (5346ms)\nHow did John Quincy Adams die?\tMay 1 , 1965 DODD\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley & Rachel Kerns Weaver, died, May 1 , 1965 DODD) -> May 1 , 1965 DODD (5367ms)\nHow did John Quincy Adams die?\tage 65\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Slip, died at, age 65) -> age 65 (5360ms)\nHow did John Quincy Adams die?\t30 Dec 1857\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 30 Dec 1857) -> 30 Dec 1857 (5352ms)\nHow did John Quincy Adams die?\tOct 11 1941\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Oct 11 1941) -> Oct 11 1941 (5364ms)\nHow did John Quincy Adams die?\tSep.\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley & Daisy Elvira King Hendrix, died, Sep.) -> Sep. (5341ms)\nHow did John Quincy Adams die?\t14\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 14) -> 14 (5364ms)\nHow did John Quincy Adams die?\t1/5/1824\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 1/5/1824) -> 1/5/1824 (5346ms)\nHow did John Quincy Adams die?\t930 years old\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 930 years old) -> 930 years old (5332ms)\nHow did John Quincy Adams die?\tfinally\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, finally) -> finally (5346ms)\nHow did John Quincy Adams die?\t12 hours\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, 12 hours) -> 12 hours (5360ms)\nHow did John Quincy Adams die?\tearlier this year\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, earlier this year) -> earlier this year (5360ms)\nHow did John Quincy Adams die?\ta spiritual death\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a spiritual death) -> a spiritual death (5356ms)\nHow did John Quincy Adams die?\tlater\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, later) -> later (5337ms)\nHow did John Quincy Adams die?\tMay 29 , 1755\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, May 29 , 1755) -> May 29 , 1755 (5364ms)\nHow did John Quincy Adams die?\tOct. 11 , 1856\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Wilson, died, Oct. 11 , 1856) -> Oct. 11 , 1856 (5356ms)\nHow did John Quincy Adams die?\t930 years later\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 930 years later) -> 930 years later (5341ms)\nHow did John Quincy Adams die?\tthe first man\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, dies, the first man) -> the first man (5346ms)\nHow did John Quincy Adams die?\tThe day\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, The day) -> The day (5367ms)\nHow did John Quincy Adams die?\teventually\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, eventually) -> eventually (5347ms)\nHow did John Quincy Adams die?\tinstantly\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, instantly) -> instantly (5337ms)\nHow did John Quincy Adams die?\ta young man\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a young man) -> a young man (5364ms)\nHow did John Quincy Adams die?\tthe age of 88\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died at, the age of 88) -> the age of 88 (5347ms)\nHow did John Quincy Adams die?\t17 Oct 1894\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley KNISKERN-68257, died, 17 Oct 1894) -> 17 Oct 1894 (5351ms)\nHow did John Quincy Adams die?\tago\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, ago) -> ago (5364ms)\nHow did John Quincy Adams die?\tFebruary 5 , 1865 Muscatine , IA ,\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, February 5 , 1865 Muscatine , IA ,) -> February 5 , 1865 Muscatine , IA , (5352ms)\nHow did John Quincy Adams die?\tlast year\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, last year) -> last year (5351ms)\nHow did John Quincy Adams die?\t13 Aug.\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley ANDERSON, died, 13 Aug.) -> 13 Aug. (5364ms)\nHow did John Quincy Adams die?\t16 Jul 1943\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 16 Jul 1943) -> 16 Jul 1943 (5351ms)\nHow did John Quincy Adams die?\tJan . 1 , 1942 STRICKLIN\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, Jan . 1 , 1942 STRICKLIN) -> Jan . 1 , 1942 STRICKLIN (5337ms)\nHow did John Quincy Adams die?\t5 Aug 1853\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 5 Aug 1853) -> 5 Aug 1853 (5337ms)\nHow did John Quincy Adams die?\tseven years\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, seven years) -> seven years (5352ms)\nHow did John Quincy Adams die?\t03/18/01\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 03/18/01) -> 03/18/01 (5356ms)\nHow did John Quincy Adams die?\tJune 9 , 1781\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, June 9 , 1781) -> June 9 , 1781 (5364ms)\nHow did John Quincy Adams die?\t15 Jun 1825\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 15 Jun 1825) -> 15 Jun 1825 (5360ms)\nHow did John Quincy Adams die?\t26 Jan 1896\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 26 Jan 1896) -> 26 Jan 1896 (5360ms)\nHow did John Quincy Adams die?\tMar\t-0.11111111111099997\tHow did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, Mar) -> Mar (5356ms)\nHow did John Quincy Adams die?\ta typical business man\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, a typical business man) -> a typical business man (5392ms)\nHow did John Quincy Adams die?\tElvis Presley\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Lambert, totally looks like, Elvis Presley) -> Elvis Presley (5389ms)\nHow did John Quincy Adams die?\tthe ?faces\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Bryan Adams, looks like, the ?faces) -> the ?faces (5389ms)\nHow did John Quincy Adams die?\tthe stereotypical Protestant reasons\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, die for, $x) -> (John Adam, died for, the stereotypical Protestant reasons) -> the stereotypical Protestant reasons (5381ms)\nHow did John Quincy Adams die?\tVirginia Best\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Ansel Adams, married, Virginia Best) -> Virginia Best (5392ms)\nHow did John Quincy Adams die?\t1955\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married in, 1955) -> 1955 (5381ms)\nHow did John Quincy Adams die?\tVan\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (( Adam, Look 's like, Van) -> Van (5371ms)\nHow did John Quincy Adams die?\tRebecca\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Rebecca) -> Rebecca (5391ms)\nHow did John Quincy Adams die?\tthe best\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (the Adam, still looks like, the best) -> the best (5391ms)\nHow did John Quincy Adams die?\tDanny Elfman\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Savage Totally, Looks Like, Danny Elfman) -> Danny Elfman (5384ms)\nHow did John Quincy Adams die?\tSara Hughling/ Huling\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married, Sara Hughling/ Huling) -> Sara Hughling/ Huling (5367ms)\nHow did John Quincy Adams die?\ta deputy headmaster\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Gerry Adams, looks like, a deputy headmaster) -> a deputy headmaster (5374ms)\nHow did John Quincy Adams die?\tNancy Shockey\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Nancy Shockey) -> Nancy Shockey (5387ms)\nHow did John Quincy Adams die?\tAlida Joslin Reynolds\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Alida Joslin Reynolds) -> Alida Joslin Reynolds (5381ms)\nHow did John Quincy Adams die?\trecently\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, got married, recently) -> recently (5374ms)\nHow did John Quincy Adams die?\tPiers Anthony\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Douglas Adams, look like, Piers Anthony) -> Piers Anthony (5390ms)\nHow did John Quincy Adams die?\tMildred Kramer\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Mildred Kramer) -> Mildred Kramer (5387ms)\nHow did John Quincy Adams die?\tthe Queen\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked like, the Queen) -> the Queen (5385ms)\nHow did John Quincy Adams die?\ta monkey\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Dunn, looks like, a monkey) -> a monkey (5383ms)\nHow did John Quincy Adams die?\ta good player\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Charlie Adam, looked like, a good player) -> a good player (5379ms)\nHow did John Quincy Adams die?\tSarah Smith\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Charles Adams, marries, Sarah Smith) -> Sarah Smith (5390ms)\nHow did John Quincy Adams die?\ttotal garbage\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (the newest Adam Sandler vehicle, looks like, total garbage) -> total garbage (5389ms)\nHow did John Quincy Adams die?\tJane Chambers\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam Ross, married, Jane Chambers) -> Jane Chambers (5387ms)\nHow did John Quincy Adams die?\tJerusha Balcom\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam Howe, married, Jerusha Balcom) -> Jerusha Balcom (5390ms)\nHow did John Quincy Adams die?\tLiverpool players\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Charlie Adam, don?t look like, Liverpool players) -> Liverpool players (5376ms)\nHow did John Quincy Adams die?\tangel\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, angel) -> angel (5379ms)\nHow did John Quincy Adams die?\ta surfer\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks oddly like, a surfer) -> a surfer (5389ms)\nHow did John Quincy Adams die?\tan old , balding , half-assed werewolf\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams, look like, an old , balding , half-assed werewolf) -> an old , balding , half-assed werewolf (5379ms)\nHow did John Quincy Adams die?\tthe end times\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, be symptom of, $x) -> (Adam, is a symptom of, the end times) -> the end times (5391ms)\nHow did John Quincy Adams die?\tArab-Iraqi people\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam and Eve, may have looked like, Arab-Iraqi people) -> Arab-Iraqi people (5383ms)\nHow did John Quincy Adams die?\tDog\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, does n?t look like, Dog) -> Dog (5367ms)\nHow did John Quincy Adams die?\ta Japanese girl\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, a Japanese girl) -> a Japanese girl (5389ms)\nHow did John Quincy Adams die?\tAgnes 1562\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Agnes 1562) -> Agnes 1562 (5389ms)\nHow did John Quincy Adams die?\ta man who lives in Canada\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams Heath, married, a man who lives in Canada) -> a man who lives in Canada (5379ms)\nHow did John Quincy Adams die?\ta younger Will Ferrel\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Dunn, looks like, a younger Will Ferrel) -> a younger Will Ferrel (5383ms)\nHow did John Quincy Adams die?\tany\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams, looked nothing like, any) -> any (5389ms)\nHow did John Quincy Adams die?\tAbigail Smith\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Abigail Smith) -> Abigail Smith (5391ms)\nHow did John Quincy Adams die?\tGod\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, God) -> God (5390ms)\nHow did John Quincy Adams die?\ta wee sissy girl\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Black Adam, look like, a wee sissy girl) -> a wee sissy girl (5367ms)\nHow did John Quincy Adams die?\tCatherine COOK\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Catherine COOK) -> Catherine COOK (5371ms)\nHow did John Quincy Adams die?\tAnna Mae Cerar\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Anna Mae Cerar) -> Anna Mae Cerar (5371ms)\nHow did John Quincy Adams die?\tthe same person\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Fisher and Adams, look like, the same person) -> the same person (5379ms)\nHow did John Quincy Adams die?\tMargaret\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Margaret) -> Margaret (5390ms)\nHow did John Quincy Adams die?\t24 March 2007\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married on, 24 March 2007) -> 24 March 2007 (5389ms)\nHow did John Quincy Adams die?\ta cross\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Irksome supporting actor J. Todd Adams, looks like, a cross) -> a cross (5391ms)\nHow did John Quincy Adams die?\tA Bombsy-Tit\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (AdamAndJoe, Looks Like, A Bombsy-Tit) -> A Bombsy-Tit (5371ms)\nHow did John Quincy Adams die?\tthe Big Brother 2011 Part\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, the Big Brother 2011 Part) -> the Big Brother 2011 Part (5386ms)\nHow did John Quincy Adams die?\tTashi\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marries, Tashi) -> Tashi (5381ms)\nHow did John Quincy Adams die?\ta wide variety\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (an Adam, will look like on, a wide variety) -> a wide variety (5379ms)\nHow did John Quincy Adams die?\tCatherine\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Catherine) -> Catherine (5381ms)\nHow did John Quincy Adams die?\tMr. Shaw\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Abigail Adams, married, Mr. Shaw) -> Mr. Shaw (5389ms)\nHow did John Quincy Adams die?\tMichael\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marries, Michael) -> Michael (5391ms)\nHow did John Quincy Adams die?\tpros\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Laura and Adam, looked like, pros) -> pros (5371ms)\nHow did John Quincy Adams die?\the?d been blind-sided\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, still looked like, he?d been blind-sided) -> he?d been blind-sided (5367ms)\nHow did John Quincy Adams die?\ta Sallie Davis\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, had married, a Sallie Davis) -> a Sallie Davis (5371ms)\nHow did John Quincy Adams die?\tSeptember 27 , 1865\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Judge Adams, married, September 27 , 1865) -> September 27 , 1865 (5374ms)\nHow did John Quincy Adams die?\tAbigail\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (John Adams, married, Abigail) -> Abigail (5374ms)\nHow did John Quincy Adams die?\tjenna fischer\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (amy adams, looks like, jenna fischer) -> jenna fischer (5386ms)\nHow did John Quincy Adams die?\ta mirror image\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, was like looking at, a mirror image) -> a mirror image (5379ms)\nHow did John Quincy Adams die?\tMary Dolberry\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Mary Dolberry) -> Mary Dolberry (5379ms)\nHow did John Quincy Adams die?\tthe Serpent\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, the Serpent) -> the Serpent (5376ms)\nHow did John Quincy Adams die?\ta million bucks\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Oleta Adams, looks like, a million bucks) -> a million bucks (5389ms)\nHow did John Quincy Adams die?\tCathy Ames\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marries, Cathy Ames) -> Cathy Ames (5376ms)\nHow did John Quincy Adams die?\tthe Baltic\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Smith, looked like in, the Baltic) -> the Baltic (5387ms)\nHow did John Quincy Adams die?\tMary Ann Anderson William\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married, Mary Ann Anderson William) -> Mary Ann Anderson William (5387ms)\nHow did John Quincy Adams die?\tthe place\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams County, looks like, the place) -> the place (5391ms)\nHow did John Quincy Adams die?\tMary Ann Anderson\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (a John Wesley Chenoweth, married, Mary Ann Anderson) -> Mary Ann Anderson (5371ms)\nHow did John Quincy Adams die?\tSarah\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Sarah) -> Sarah (5392ms)\nHow did John Quincy Adams die?\ta Ruth Mills Walden-born\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley McIntosh, married, a Ruth Mills Walden-born) -> a Ruth Mills Walden-born (5374ms)\nHow did John Quincy Adams die?\tMolly Jane Sugart\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley Parker, married, Molly Jane Sugart) -> Molly Jane Sugart (5390ms)\nHow did John Quincy Adams die?\tSarah Louise Helmer ?daughter\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Sarah Louise Helmer ?daughter) -> Sarah Louise Helmer ?daughter (5385ms)\nHow did John Quincy Adams die?\tan attractive wager\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam?s, looks like, an attractive wager) -> an attractive wager (5389ms)\nHow did John Quincy Adams die?\tMarian Hooper\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Henry Adams, marries, Marian Hooper) -> Marian Hooper (5387ms)\nHow did John Quincy Adams die?\ta certain penalty\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam El-Abd, looked like, a certain penalty) -> a certain penalty (5376ms)\nHow did John Quincy Adams die?\tthe original Adam\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks exactly like, the original Adam) -> the original Adam (5391ms)\nHow did John Quincy Adams die?\ta footloose millennial\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (an oxymoron Adam Hasler, looks like, a footloose millennial) -> a footloose millennial (5386ms)\nHow did John Quincy Adams die?\tHarrirt Mudge\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (the John Wesley, married, Harrirt Mudge) -> Harrirt Mudge (5385ms)\nHow did John Quincy Adams die?\tMark\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks less like, Mark) -> Mark (5371ms)\nHow did John Quincy Adams die?\tMrs. Vazeille\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married, Mrs. Vazeille) -> Mrs. Vazeille (5381ms)\nHow did John Quincy Adams die?\tthe last starting-capable left tackle\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams, looks like, the last starting-capable left tackle) -> the last starting-capable left tackle (5387ms)\nHow did John Quincy Adams die?\ta dancer\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look like, a dancer) -> a dancer (5374ms)\nHow did John Quincy Adams die?\tElizabeth Failing Oct. 4 , 1802\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam Empie, married, Elizabeth Failing Oct. 4 , 1802) -> Elizabeth Failing Oct. 4 , 1802 (5379ms)\nHow did John Quincy Adams die?\tChristianity\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, die for, $x) -> (Adam, is a do-or-die figure for, Christianity) -> Christianity (5386ms)\nHow did John Quincy Adams die?\ta black ops agent\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked around like, a black ops agent) -> a black ops agent (5387ms)\nHow did John Quincy Adams die?\tJohn Hurst Adams\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Link Adams, married, John Hurst Adams) -> John Hurst Adams (5386ms)\nHow did John Quincy Adams die?\ta great climber\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, a great climber) -> a great climber (5379ms)\nHow did John Quincy Adams die?\tSteve\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marries, Steve) -> Steve (5391ms)\nHow did John Quincy Adams die?\ta younger Whitney Houston\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Yolanda Adams, look like, a younger Whitney Houston) -> a younger Whitney Houston (5371ms)\nHow did John Quincy Adams die?\tthe innocent flower\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (-Adam Turla, Look like, the innocent flower) -> the innocent flower (5384ms)\nHow did John Quincy Adams die?\ta doughy accountant\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Brock, looks like, a doughy accountant) -> a doughy accountant (5381ms)\nHow did John Quincy Adams die?\ta nice target\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Dunn, looks like, a nice target) -> a nice target (5381ms)\nHow did John Quincy Adams die?\ta mini-Forsberg\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Deadmarsh, was looking like, a mini-Forsberg) -> a mini-Forsberg (5383ms)\nHow did John Quincy Adams die?\tfive people\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Sandler, looks like, five people) -> five people (5391ms)\nHow did John Quincy Adams die?\thes\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, hes) -> hes (5367ms)\nHow did John Quincy Adams die?\tArlene\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marrying, Arlene) -> Arlene (5383ms)\nHow did John Quincy Adams die?\tFred Brewster\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Azalia Adams, married, Fred Brewster) -> Fred Brewster (5387ms)\nHow did John Quincy Adams die?\tmodels\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked like, models) -> models (5390ms)\nHow did John Quincy Adams die?\ta tree toad\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Ansel Adams, shows the former looking like, a tree toad) -> a tree toad (5381ms)\nHow did John Quincy Adams die?\tAlice Baker\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (William Adams, married, Alice Baker) -> Alice Baker (5371ms)\nHow did John Quincy Adams die?\tthe God\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, the God) -> the God (5371ms)\nHow did John Quincy Adams die?\ta cougar\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (John Adams, married, a cougar) -> a cougar (5386ms)\nHow did John Quincy Adams die?\tnon-cartoon Adam\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (cartoon Adam, looks exactly like, non-cartoon Adam) -> non-cartoon Adam (5379ms)\nHow did John Quincy Adams die?\tthe former Harriett Jane Baker\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, the former Harriett Jane Baker) -> the former Harriett Jane Baker (5387ms)\nHow did John Quincy Adams die?\ta Thompson\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley Smith, married, a Thompson) -> a Thompson (5374ms)\nHow did John Quincy Adams die?\tthe kind\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam J. Morris, looks like, the kind) -> the kind (5390ms)\nHow did John Quincy Adams die?\ta bit of an idiot\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look like, a bit of an idiot) -> a bit of an idiot (5381ms)\nHow did John Quincy Adams die?\ta girl\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, a girl) -> a girl (5374ms)\nHow did John Quincy Adams die?\tMary Flowers\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Mary Flowers) -> Mary Flowers (5381ms)\nHow did John Quincy Adams die?\tLydia Berry Clements\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley II, was married to, Lydia Berry Clements) -> Lydia Berry Clements (5379ms)\nHow did John Quincy Adams die?\ta pandering fool\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look like, a pandering fool) -> a pandering fool (5367ms)\nHow did John Quincy Adams die?\thuman beings\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (adam, only looked like, human beings) -> human beings (5392ms)\nHow did John Quincy Adams die?\tfellow actress Jackie Samantha Titone\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, fellow actress Jackie Samantha Titone) -> fellow actress Jackie Samantha Titone (5367ms)\nHow did John Quincy Adams die?\tthe next Ken Griffey Jr.\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Jones, looked like, the next Ken Griffey Jr.) -> the next Ken Griffey Jr. (5384ms)\nHow did John Quincy Adams die?\tPaul McCartney\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, Looks a little like, Paul McCartney) -> Paul McCartney (5389ms)\nHow did John Quincy Adams die?\ta different player\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Flozell Adams, looked like, a different player) -> a different player (5367ms)\nHow did John Quincy Adams die?\tElizabeth Rausch\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (1899 Adam, married, Elizabeth Rausch) -> Elizabeth Rausch (5374ms)\nHow did John Quincy Adams die?\tFun\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Black, Looks like, Fun) -> Fun (5389ms)\nHow did John Quincy Adams die?\tformer NFL player Tim Crawford\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Yolanda Adams, married, former NFL player Tim Crawford) -> former NFL player Tim Crawford (5381ms)\nHow did John Quincy Adams die?\ta fool\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look like, a fool) -> a fool (5387ms)\nHow did John Quincy Adams die?\t31 Oct 1875\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (ADAM, married, 31 Oct 1875) -> 31 Oct 1875 (5383ms)\nHow did John Quincy Adams die?\tMark Linenthal\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Mark Linenthal) -> Mark Linenthal (5376ms)\nHow did John Quincy Adams die?\tMiss Abigail Smith\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Miss Abigail Smith) -> Miss Abigail Smith (5390ms)\nHow did John Quincy Adams die?\tWT ? Basically\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, is looking at here like, WT ? Basically) -> WT ? Basically (5376ms)\nHow did John Quincy Adams die?\tthe comment\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked a little like, the comment) -> the comment (5381ms)\nHow did John Quincy Adams die?\tJohn Adams\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, John Adams) -> John Adams (5371ms)\nHow did John Quincy Adams die?\tSarah Appleton JENNER\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (GREELEY John Wesley SMITH, married, Sarah Appleton JENNER) -> Sarah Appleton JENNER (5391ms)\nHow did John Quincy Adams die?\tEmma Dean\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley Powell, married, Emma Dean) -> Emma Dean (5386ms)\nHow did John Quincy Adams die?\tJosephine Femc\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Josephine Femc) -> Josephine Femc (5389ms)\nHow did John Quincy Adams die?\tSpokane native\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Spokane native) -> Spokane native (5390ms)\nHow did John Quincy Adams die?\tAlan\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked like, Alan) -> Alan (5391ms)\nHow did John Quincy Adams die?\tJane Belson\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Jane Belson) -> Jane Belson (5391ms)\nHow did John Quincy Adams die?\tChristine Becker February 12 , 1854\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Christine Becker February 12 , 1854) -> Christine Becker February 12 , 1854 (5390ms)\nHow did John Quincy Adams die?\tMartha A. Clark\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Martha A. Clark) -> Martha A. Clark (5367ms)\nHow did John Quincy Adams die?\tSpencer Washington Sterms Wright\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley Beck, married, Spencer Washington Sterms Wright) -> Spencer Washington Sterms Wright (5391ms)\nHow did John Quincy Adams die?\tBridget Krantz\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Bridget Krantz) -> Bridget Krantz (5390ms)\nHow did John Quincy Adams die?\tJohn Lonzo Anderson\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, John Lonzo Anderson) -> John Lonzo Anderson (5387ms)\nHow did John Quincy Adams die?\tLance\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks alike like, Lance) -> Lance (5374ms)\nHow did John Quincy Adams die?\ta child\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look at me like, a child) -> a child (5376ms)\nHow did John Quincy Adams die?\tCorstorphine girl Caroline Bertha Weierter\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Tommy Adams, married, Corstorphine girl Caroline Bertha Weierter) -> Corstorphine girl Caroline Bertha Weierter (5374ms)\nHow did John Quincy Adams die?\tMargaret Pagan\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Margaret Pagan) -> Margaret Pagan (5371ms)\nHow did John Quincy Adams die?\ta tard\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, a tard) -> a tard (5376ms)\nHow did John Quincy Adams die?\tHDR\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Ansel Adams, Looks like, HDR) -> HDR (5367ms)\nHow did John Quincy Adams die?\tElvis\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked like, Elvis) -> Elvis (5387ms)\nHow did John Quincy Adams die?\ta London merchant\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married the widow of, a London merchant) -> a London merchant (5392ms)\nHow did John Quincy Adams die?\ta ninja\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam West, look like, a ninja) -> a ninja (5390ms)\nHow did John Quincy Adams die?\tNancy E. Waterman\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (South Adams, married, Nancy E. Waterman) -> Nancy E. Waterman (5383ms)\nHow did John Quincy Adams die?\tthe sins\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, die for, $x) -> (the second Adam, died for, the sins) -> the sins (5386ms)\nHow did John Quincy Adams die?\ta guy\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams, has always looked more like, a guy) -> a guy (5385ms)\nHow did John Quincy Adams die?\tSpeedy Gonzalez\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (ha-ha...Adam, looked like, Speedy Gonzalez) -> Speedy Gonzalez (5371ms)\nHow did John Quincy Adams die?\tJoanna Jane CHAPMAN\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley WALKER, was married to, Joanna Jane CHAPMAN) -> Joanna Jane CHAPMAN (5387ms)\nHow did John Quincy Adams die?\ta choir boy\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Foote, look like, a choir boy) -> a choir boy (5383ms)\nHow did John Quincy Adams die?\ta pitcher\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Loewen sure, looks like, a pitcher) -> a pitcher (5381ms)\nHow did John Quincy Adams die?\tone tough cookie\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Austin Adams, looks like, one tough cookie) -> one tough cookie (5371ms)\nHow did John Quincy Adams die?\tMaria MAURER\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam H., married, Maria MAURER) -> Maria MAURER (5383ms)\nHow did John Quincy Adams die?\tBarbara Wuest\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Barbara Wuest) -> Barbara Wuest (5391ms)\nHow did John Quincy Adams die?\ta dotted box\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like.There is, a dotted box) -> a dotted box (5376ms)\nHow did John Quincy Adams die?\tJehovah\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, to marry, Jehovah) -> Jehovah (5392ms)\nHow did John Quincy Adams die?\tthe top\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Gomez Adams, looks like, the top) -> the top (5376ms)\nHow did John Quincy Adams die?\tan egg\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (an enormous Adam, looks like, an egg) -> an egg (5392ms)\nHow did John Quincy Adams die?\ta little baby\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Kiernikovski David, look like, a little baby) -> a little baby (5383ms)\nHow did John Quincy Adams die?\tJaclyn Ferrall\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam Kalidonis Adam, married, Jaclyn Ferrall) -> Jaclyn Ferrall (5391ms)\nHow did John Quincy Adams die?\ta kids\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Rose, Looks like, a kids) -> a kids (5381ms)\nHow did John Quincy Adams die?\tTeresa\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Teresa) -> Teresa (5390ms)\nHow did John Quincy Adams die?\tpea soup fog\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams County, is like looking at, pea soup fog) -> pea soup fog (5389ms)\nHow did John Quincy Adams die?\tSep 16 , 1847\t-0.11111111111199995\tHow did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, was married, Sep 16 , 1847) -> Sep 16 , 1847 (5386ms)\nHow did John Quincy Adams die?\t1833\t-0.111111111112\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear in, $x) -> (John Quincy Adams, was born in, 1833) -> 1833 (5392ms)\nHow did John Quincy Adams die?\tthe same house\t-0.111111111112\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear in, $x) -> (his son John Quincy Adams, was born in, the same house) -> the same house (5393ms)\nHow did John Quincy Adams die?\t1767\t-0.111111111112\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear in, $x) -> (John Quincy Adams, was born in, 1767) -> 1767 (5393ms)\nHow did John Quincy Adams die?\t1815\t-0.111111111112\tHow did John Quincy Adams die? -> $x: (john quincy adams, be bear in, $x) -> (John Quincy Adams, was born in, 1815) -> 1815 (5393ms)\nWho invented the game bowling?\tthe U.S.\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (the U.S., is credited with inventing, nine-pin bowling) -> the U.S. (938ms)\nWho invented the game bowling?\tAristarchus\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (Aristarchus, invented, a bowl-shaped sundial) -> Aristarchus (1591ms)\nWho invented the game bowling?\tcolor\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (color, invent, new bowling games) -> color (1591ms)\nWho invented the game bowling?\t1939\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (1939, invented, the Westgate Bowl Production) -> 1939 (1591ms)\nWho invented the game bowling?\tthe ancient Egyptians\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (the ancient Egyptians, invented, bowling) -> the ancient Egyptians (1591ms)\nWho invented the game bowling?\tthe meantime dad\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (the meantime dad, had invented, self service bowling machine) -> the meantime dad (938ms)\nWho invented the game bowling?\tYou?d\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (You?d, have to invent, a couple more bad bowl games) -> You?d (1591ms)\nWho invented the game bowling?\tnnNo matter\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (nnNo matter, invented, bowling) -> nnNo matter (1591ms)\nWho invented the game bowling?\tWhat religious leader\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (What religious leader, with inventing, nine-pin bowling) -> What religious leader (938ms)\nWho invented the game bowling?\tdata\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (data, invented, bowling) -> data (1591ms)\nWho invented the game bowling?\tclever humans\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (clever humans, invented, the Brake-fast bowl) -> clever humans (938ms)\nWho invented the game bowling?\tComfitPro\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (ComfitPro, have re-invented, the bowls bag) -> ComfitPro (938ms)\nWho invented the game bowling?\tthe country\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (the country, invented, the Super Bowl) -> the country (938ms)\nWho invented the game bowling?\tLos Angeles\t1.777777777776\tWho invented the game bowling? -> $x: ($x, invent, bowling) -> (Los Angeles, invented, the Hollywood Bowl) -> Los Angeles (1591ms)\nWho invented the game bowling?\tCanada\t1.333333333332\tWho invented the game bowling? -> $x: (bowling, be invent in, $x) -> (5-pin bowling, apparently was invented in, Canada) -> Canada (3102ms)\nWho invented the game bowling?\t1909\t1.333333333332\tWho invented the game bowling? -> $x: (bowling, be invent in, $x) -> (Five-pin bowling, was invented in, 1909) -> 1909 (3102ms)\nWho invented the game bowling?\tToronto\t1.333333333332\tWho invented the game bowling? -> $x: (bowling, be invent in, $x) -> (Five-pin bowling, was invented in, Toronto) -> Toronto (3102ms)\nWho invented the game bowling?\tWorcester\t1.333333333332\tWho invented the game bowling? -> $x: (bowling, be invent in, $x) -> (Candlepin bowling, was invented in, Worcester) -> Worcester (3102ms)\nWho invented the game bowling?\tSuper?\t0.4444444444430001\tWho invented the game bowling? -> $x: ($x, be create of, bowling) -> (Super?, Is the art of creating, a creative Super Bowl ad) -> Super? (3430ms)\nWho invented the game bowling?\tLive Maine lobster\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Live Maine lobster, can now be part of, Super Bowl celebrations) -> Live Maine lobster (4739ms)\nWho invented the game bowling?\tsweeping anti-terror measures\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (sweeping anti-terror measures, have been part of, the Super Bowl) -> sweeping anti-terror measures (4511ms)\nWho invented the game bowling?\tChristina Aguilera\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Christina Aguilera, had been part of, Super Bowl) -> Christina Aguilera (4727ms)\nWho invented the game bowling?\tThe commercials\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The commercials, is the best part of, the Super Bowl) -> The commercials (4635ms)\nWho invented the game bowling?\tthe Indian states\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the Indian states, are part of, the grain bowl) -> the Indian states (4727ms)\nWho invented the game bowling?\ta month\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (a month, was a part of, four bowl teams) -> a month (4635ms)\nWho invented the game bowling?\tThe park\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The park, is part of, the Rose Bowl complex) -> The park (4733ms)\nWho invented the game bowling?\tMaking decisions\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Making decisions, is such an important part of, bowling) -> Making decisions (4699ms)\nWho invented the game bowling?\tUniversity\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (University, was part of, three Cotton Bowl teams) -> University (4474ms)\nWho invented the game bowling?\tthe competition\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the competition, is part of, Bug Bowl) -> the competition (4733ms)\nWho invented the game bowling?\tGeorge\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (George, was a part of, the Titans ? Super Bowl team) -> George (4699ms)\nWho invented the game bowling?\tprotests\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (protests, will be a part of, the Super Bowl scenery) -> protests (4635ms)\nWho invented the game bowling?\tThe fragments\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The fragments, are parts of, bowls) -> The fragments (4727ms)\nWho invented the game bowling?\tplayers\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (players, have been part of, the fast bowling camps) -> players (4473ms)\nWho invented the game bowling?\t2 Drainboards\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (2 Drainboards, is part of, the Pro Bowl Series) -> 2 Drainboards (4699ms)\nWho invented the game bowling?\tPagac\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Pagac, was part of, 6 Rose Bowls) -> Pagac (4511ms)\nWho invented the game bowling?\tMohawk\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Mohawk, was part of, the Mud Bowl) -> Mohawk (4727ms)\nWho invented the game bowling?\ta non-factor\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (a non-factor, was a major part of, the SuperBowl) -> a non-factor (4564ms)\nWho invented the game bowling?\tHaley\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Haley, was part of, five Super Bowl teams) -> Haley (4733ms)\nWho invented the game bowling?\tinjuries\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (injuries, were part and parcel of, fast bowling) -> injuries (4699ms)\nWho invented the game bowling?\tTHE BOWLS\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (THE BOWLS, Be a part of, The Bowls Project) -> THE BOWLS (4699ms)\nWho invented the game bowling?\tred\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (red, is part of, the bowl) -> red (4474ms)\nWho invented the game bowling?\tthe miss Making adjustments\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the miss Making adjustments, is part of, bowling) -> the miss Making adjustments (4727ms)\nWho invented the game bowling?\tBeautiful women\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Beautiful women, have always been part of, the Super Bowl) -> Beautiful women (4733ms)\nWho invented the game bowling?\tMatthew\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Matthew, was part of, the reading bowl) -> Matthew (4564ms)\nWho invented the game bowling?\tKansas\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Kansas, had been part of, the dust bowl) -> Kansas (4636ms)\nWho invented the game bowling?\tkids\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (kids, be a part of, Super Bowl XLVI) -> kids (4733ms)\nWho invented the game bowling?\tpromotional swag bags\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (promotional swag bags, have been a part of, NCAA bowl games) -> promotional swag bags (4739ms)\nWho invented the game bowling?\tmagic\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (magic, is a big part of, BloodBowl) -> magic (4733ms)\nWho invented the game bowling?\tUNF\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (UNF, was being part of, the Ethics Bowl) -> UNF (4727ms)\nWho invented the game bowling?\tthe NFC\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the NFC, should be a part of, the 2012 Pro Bowl) -> the NFC (4511ms)\nWho invented the game bowling?\ta wide variety\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (a wide variety, was such a part of, the Bowl) -> a wide variety (4564ms)\nWho invented the game bowling?\tBorges\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Borges, was part of, four bowl teams) -> Borges (4727ms)\nWho invented the game bowling?\tMagic\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Magic, is an integral part of, BloodBowl) -> Magic (4606ms)\nWho invented the game bowling?\tRaymond\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Raymond, was part of, two BCS bowl victories) -> Raymond (4733ms)\nWho invented the game bowling?\t14.5\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (14.5, was a crucial part of, the Super Bowl run) -> 14.5 (4733ms)\nWho invented the game bowling?\ttaking photos\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (taking photos, is part of, my rice bowl) -> taking photos (4473ms)\nWho invented the game bowling?\tCelebrity-studded events\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Celebrity-studded events, are part of, Super Bowl week) -> Celebrity-studded events (4727ms)\nWho invented the game bowling?\ta pair\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (a pair, was a part of, four bowl wins) -> a pair (4739ms)\nWho invented the game bowling?\tThe effort\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The effort, is part of, the ?Souper Bowl) -> The effort (4606ms)\nWho invented the game bowling?\tgame jaw 1 or 2 Tempe\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (game jaw 1 or 2 Tempe, is part of, the four bowl rotation) -> game jaw 1 or 2 Tempe (4699ms)\nWho invented the game bowling?\tthe fun\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the fun, are all part of, the Rose Bowl experience) -> the fun (4727ms)\nWho invented the game bowling?\tMadonna\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Madonna, was part of, the Super Bowl story) -> Madonna (4733ms)\nWho invented the game bowling?\tPatterson\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Patterson, was a part of, six Tulsa bowl teams) -> Patterson (4733ms)\nWho invented the game bowling?\tseizures\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (seizures, appears to be part of, another ?Super Bowl Crackdown) -> seizures (4733ms)\nWho invented the game bowling?\tDrainboard\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Drainboard, is part of, the Pro Bowl Series) -> Drainboard (4727ms)\nWho invented the game bowling?\tProtests\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Protests, Should Be a Part of, Super Bowl Sunday) -> Protests (3430ms)\nWho invented the game bowling?\tan NFL wide receiver\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (an NFL wide receiver, was part of, the Super Bowl XXXII) -> an NFL wide receiver (4727ms)\nWho invented the game bowling?\tThe painting\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The painting, was part of, a Super Bowl XLV wager) -> The painting (4699ms)\nWho invented the game bowling?\tPeyton Manning\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Peyton Manning, are also part of, the Gator Bowl Mystique) -> Peyton Manning (4727ms)\nWho invented the game bowling?\tthe commercials\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the commercials, are the best part of, the SuperBowl) -> the commercials (4727ms)\nWho invented the game bowling?\tPioli\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Pioli, was part of, multiple Super Bowls) -> Pioli (4564ms)\nWho invented the game bowling?\tscantily clad women\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (scantily clad women, were a big part of, the Super Bowl) -> scantily clad women (4733ms)\nWho invented the game bowling?\tAkile\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Akile, is a part of, a bowling team) -> Akile (4564ms)\nWho invented the game bowling?\t2010 Social media\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (2010 Social media, has been a part of, the Super Bowl) -> 2010 Social media (4699ms)\nWho invented the game bowling?\tthe protrusions\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the protrusions, are part of, the bowl) -> the protrusions (4733ms)\nWho invented the game bowling?\tThe Four Bowl Utility Sink\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The Four Bowl Utility Sink, is part of, the Pro Bowl Series) -> The Four Bowl Utility Sink (4474ms)\nWho invented the game bowling?\tThe One Bowl Utility Sink\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The One Bowl Utility Sink, is part of, the Pro Bowl Series) -> The One Bowl Utility Sink (4474ms)\nWho invented the game bowling?\t2 days\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (2 days, is part of, a bowling league) -> 2 days (4699ms)\nWho invented the game bowling?\tAlcohol\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Alcohol, is often part of, a super bowl party) -> Alcohol (4511ms)\nWho invented the game bowling?\tcoaching\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (coaching, has been part of, five Super Bowl championships) -> coaching (4606ms)\nWho invented the game bowling?\tthe Cougars\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the Cougars, was a part of, four bowl games) -> the Cougars (4606ms)\nWho invented the game bowling?\tthe coach\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the coach, has been a part of, a Super Bowl winner) -> the coach (4636ms)\nWho invented the game bowling?\tThe Three Bowl Utility Sink\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The Three Bowl Utility Sink, is part of, the Pro Bowl Series) -> The Three Bowl Utility Sink (4511ms)\nWho invented the game bowling?\tethics\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (ethics, is excited to be a part of, Ethics Bowl) -> ethics (4699ms)\nWho invented the game bowling?\tWatson\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Watson, was a part of, two bowl teams) -> Watson (4635ms)\nWho invented the game bowling?\tthe game\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the game, is their favorite part of, the Super Bowl festivities) -> the game (4727ms)\nWho invented the game bowling?\tthe TV commercials\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the TV commercials, are the best part of, the Super Bowl) -> the TV commercials (4511ms)\nWho invented the game bowling?\twire services\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (wire services, are part of, the Super Bowl crowd) -> wire services (4474ms)\nWho invented the game bowling?\twings\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (wings, are a critical part of, the Super Bowl) -> wings (4564ms)\nWho invented the game bowling?\tMatch play\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Match play, is a traditional part of, major bowling tournaments) -> Match play (4636ms)\nWho invented the game bowling?\ta member\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (a member, has been a part of, 6 Super Bowls) -> a member (4635ms)\nWho invented the game bowling?\tthe ads\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the ads, were the best part of, the Super Bowl) -> the ads (4564ms)\nWho invented the game bowling?\tcommunity\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (community, is a part of, the smaller bowl) -> community (4511ms)\nWho invented the game bowling?\tClements\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Clements, has been a part of, 12 bowl games) -> Clements (4699ms)\nWho invented the game bowling?\tKobayashi vs. a bear\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Kobayashi vs. a bear, was part of, The Glutton Bowl) -> Kobayashi vs. a bear (4727ms)\nWho invented the game bowling?\tthe end zone\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (the end zone, is part of, Super Bowl lore) -> the end zone (4699ms)\nWho invented the game bowling?\tThe five BCS games\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The five BCS games, are part of, the overall bowl structure) -> The five BCS games (4606ms)\nWho invented the game bowling?\tChute # 2\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Chute # 2, are part of, the ?Daly Bowl) -> Chute # 2 (4733ms)\nWho invented the game bowling?\tThe Two Bowl Utility Sink\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The Two Bowl Utility Sink, is part of, the Pro Bowl Series) -> The Two Bowl Utility Sink (4606ms)\nWho invented the game bowling?\tconference\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (conference, is a major part of, the major bowls image) -> conference (4733ms)\nWho invented the game bowling?\tMeade Chopper 1\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (Meade Chopper 1, is now part of, the biggest bowl) -> Meade Chopper 1 (4733ms)\nWho invented the game bowling?\tsix seasons\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (six seasons, was a part of, two Holiday Bowl appearances) -> six seasons (4564ms)\nWho invented the game bowling?\tThe Myles family\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (The Myles family, has been a part of, Bowling Green) -> The Myles family (4727ms)\nWho invented the game bowling?\ta senior and\t0.333333333333\tWho invented the game bowling? -> $x: ($x, be part of, bowling) -> (a senior and, was a part of, two bowl teams) -> a senior and (4474ms)\nWho invented the game bowling?\tRabbi Ain\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Rabbi Ain, sported, a blue button-down bowling shirt) -> Rabbi Ain (4761ms)\nWho invented the game bowling?\tPenn State\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Penn State, played for, the Rose Bowl) -> Penn State (4756ms)\nWho invented the game bowling?\tThe Gators\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (The Gators, can still play for, a bowl game invitation) -> The Gators (4765ms)\nWho invented the game bowling?\tHe?ll\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (He?ll, be playing for, a Super Bowl title) -> He?ll (4756ms)\nWho invented the game bowling?\tthree-cocked hats\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (three-cocked hats, were playing, bowls) -> three-cocked hats (4765ms)\nWho invented the game bowling?\tfunny watching people\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (funny watching people, play, bowling) -> funny watching people (4786ms)\nWho invented the game bowling?\tcourse\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (course, played for, their 1985 Super Bowl team) -> course (4786ms)\nWho invented the game bowling?\tMiami Dolphins\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Miami Dolphins, is a sports team that won the, super bowl) -> Miami Dolphins (4793ms)\nWho invented the game bowling?\tPopped\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Popped, played a game of, Bowling) -> Popped (4739ms)\nWho invented the game bowling?\ta ligula\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (a ligula, sported, a pointed oval bowl) -> a ligula (4761ms)\nWho invented the game bowling?\ta general rule consumers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (a general rule consumers, are planning to play, bowling) -> a general rule consumers (4765ms)\nWho invented the game bowling?\tthe villagers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the villagers, were now playing, bowls) -> the villagers (4786ms)\nWho invented the game bowling?\tphiladelphia-eagles\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (philadelphia-eagles, is a sports team that won the, super bowl) -> philadelphia-eagles (4760ms)\nWho invented the game bowling?\tBUFFALO BILLS\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (BUFFALO BILLS, is a sports team that won the, super bowl) -> BUFFALO BILLS (4756ms)\nWho invented the game bowling?\tthe improvising musicians\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the improvising musicians, played with, bowls) -> the improvising musicians (4774ms)\nWho invented the game bowling?\tThe Illini\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (The Illini, were playing for, a bowl berth) -> The Illini (4770ms)\nWho invented the game bowling?\ta chance\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (a chance, are playing for, our bowl life) -> a chance (4765ms)\nWho invented the game bowling?\tCalvin\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Calvin, played, bowls) -> Calvin (4782ms)\nWho invented the game bowling?\tthe Steelers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the Steelers, get ready to play for, a seventh Super Bowl title) -> the Steelers (4739ms)\nWho invented the game bowling?\tRedskins\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Redskins, is a sports team that won the, super bowl) -> Redskins (4770ms)\nWho invented the game bowling?\tThe semi-final losers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (The semi-final losers, would play for, the Rose Bowl) -> The semi-final losers (4745ms)\nWho invented the game bowling?\tThe Motivator\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (The Motivator, plays, bowls) -> The Motivator (4770ms)\nWho invented the game bowling?\tthe Nittany Lions\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the Nittany Lions, were still playing for, the Rose Bowl) -> the Nittany Lions (4790ms)\nWho invented the game bowling?\ta team\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (a team, plays really good in, bowling) -> a team (4793ms)\nWho invented the game bowling?\tJohn Frank\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (John Frank, played tight end for, the Super Bowl champion 49ers) -> John Frank (4765ms)\nWho invented the game bowling?\ta movie\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (a movie, played, bowling) -> a movie (4770ms)\nWho invented the game bowling?\twether young people\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (wether young people, are playing, bowls) -> wether young people (4745ms)\nWho invented the game bowling?\tEli\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Eli, was playing for, a Super Bowl) -> Eli (4778ms)\nWho invented the game bowling?\thouston texans\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (houston texans, is a sports team that won the, super bowl) -> houston texans (4782ms)\nWho invented the game bowling?\tCorder\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Corder, played for, Bowling Green) -> Corder (4790ms)\nWho invented the game bowling?\tDeyn\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Deyn, sported, a black pudding-bowl cut) -> Deyn (4774ms)\nWho invented the game bowling?\tOctodad\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Octodad, plays, bowling) -> Octodad (4774ms)\nWho invented the game bowling?\tCharles I.\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Charles I., played, bowls) -> Charles I. (4778ms)\nWho invented the game bowling?\tmovie\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (movie, play, bowling) -> movie (4782ms)\nWho invented the game bowling?\t5123 times Game description\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (5123 times Game description, Want to play, bowling) -> 5123 times Game description (4756ms)\nWho invented the game bowling?\tthe Online Games forum\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the Online Games forum, enjoy playing, Bowling) -> the Online Games forum (4761ms)\nWho invented the game bowling?\tBILLS\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (BILLS, is a sports team that won the, super bowl) -> BILLS (4774ms)\nWho invented the game bowling?\tlast Sunday\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (last Sunday, earn the right to play for, this year?s Super Bowl) -> last Sunday (4751ms)\nWho invented the game bowling?\tBliss\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Bliss, is a sports bar with, a bowling alley) -> Bliss (4756ms)\nWho invented the game bowling?\tFlorida Intl Golden Panthers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Florida Intl Golden Panthers, is a sports team that won the, super bowl) -> Florida Intl Golden Panthers (4786ms)\nWho invented the game bowling?\tFacebook users\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Facebook users, can play, bowling) -> Facebook users (4765ms)\nWho invented the game bowling?\tthey?ve\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (they?ve, played well in, bowls) -> they?ve (4770ms)\nWho invented the game bowling?\tLouis Rams\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Louis Rams, is a sports team that won the, super bowl) -> Louis Rams (4745ms)\nWho invented the game bowling?\tthe winners\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the winners, play for, the Bowl Championship Series) -> the winners (4761ms)\nWho invented the game bowling?\tthe semifinals\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the semifinals, be played in, bowls) -> the semifinals (4739ms)\nWho invented the game bowling?\tpittsburg steelers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (pittsburg steelers, is a sports team that won the, super bowl) -> pittsburg steelers (4756ms)\nWho invented the game bowling?\tHobbies and interests\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Hobbies and interests, like playing, bowling) -> Hobbies and interests (4761ms)\nWho invented the game bowling?\tthe genuine students\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the genuine students, play, bowling) -> the genuine students (4778ms)\nWho invented the game bowling?\tfact\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (fact, be playing for, bowl eligibility) -> fact (4782ms)\nWho invented the game bowling?\tGuests\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Guests, can also play, bowling) -> Guests (4786ms)\nWho invented the game bowling?\tmembers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (members, enjoy playing, bowls) -> members (4786ms)\nWho invented the game bowling?\t5:49:07\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, be history of, bowling) -> (5:49:07, AM The history of, the super bowl) -> 5:49:07 (4786ms)\nWho invented the game bowling?\tWeis\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Weis, will call the plays for, the Hawaii Bowl) -> Weis (4778ms)\nWho invented the game bowling?\tPortugal Time\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Portugal Time, went to play, bowling) -> Portugal Time (4778ms)\nWho invented the game bowling?\tthe other three\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the other three, played in, bowls) -> the other three (4745ms)\nWho invented the game bowling?\tRichard\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Richard, has played, bowls) -> Richard (4765ms)\nWho invented the game bowling?\t5216 times Game description\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (5216 times Game description, Want to play, bowling) -> 5216 times Game description (4745ms)\nWho invented the game bowling?\tCarlsbad\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Carlsbad, love sports like, bowling and tennis) -> Carlsbad (4761ms)\nWho invented the game bowling?\tthe teams\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the teams, will play for, the Corn Bowl trophy) -> the teams (4793ms)\nWho invented the game bowling?\tMary\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Mary, started playing, bowls) -> Mary (4782ms)\nWho invented the game bowling?\tNY Jets\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (NY Jets, is a sports team that won the, super bowl) -> NY Jets (4770ms)\nWho invented the game bowling?\tSeattle Seahawks\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Seattle Seahawks, is a sports team that won the, Super Bowl XL) -> Seattle Seahawks (4790ms)\nWho invented the game bowling?\tcould?ve\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (could?ve, played an individual sport like, wrestling , bowling) -> could?ve (4782ms)\nWho invented the game bowling?\tatlanta falcons\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (atlanta falcons, is a sports team that won the, super bowl) -> atlanta falcons (4765ms)\nWho invented the game bowling?\tManning\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Manning, reportedly wants to play for, a Super Bowl contender) -> Manning (4782ms)\nWho invented the game bowling?\tone fairly well-known Hollywood star\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (one fairly well-known Hollywood star, sports, a Super Bowl ring) -> one fairly well-known Hollywood star (4765ms)\nWho invented the game bowling?\tDeans and friars\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Deans and friars, played at, bowls) -> Deans and friars (4782ms)\nWho invented the game bowling?\t2 pairs\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (2 pairs, played, bowling) -> 2 pairs (4786ms)\nWho invented the game bowling?\tTime Zone\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Time Zone, played, bowling) -> Time Zone (4761ms)\nWho invented the game bowling?\tDancing\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Dancing, is like playing, bowling) -> Dancing (4751ms)\nWho invented the game bowling?\tEnberg\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Enberg, was the play-by-play announcer for, the Rose Bowl) -> Enberg (4789ms)\nWho invented the game bowling?\t5096 times Game description\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (5096 times Game description, Want to play, bowling) -> 5096 times Game description (4778ms)\nWho invented the game bowling?\tWhich teams\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Which teams, will play for, a BCS bowl game) -> Which teams (4765ms)\nWho invented the game bowling?\tKampe\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Kampe, was a two-sport athlete at, Bowling Green) -> Kampe (4774ms)\nWho invented the game bowling?\tBocce ball\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Bocce ball, is a sport similar to, bowling) -> Bocce ball (4790ms)\nWho invented the game bowling?\tChicago bears\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Chicago bears, is a sports team that won the, super bowl) -> Chicago bears (4782ms)\nWho invented the game bowling?\tGIANTS\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (GIANTS, is a sports team that won the, super bowl) -> GIANTS (4786ms)\nWho invented the game bowling?\tcondition\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (condition, played, bowls) -> condition (4761ms)\nWho invented the game bowling?\tmen\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (men, were playing, bowls) -> men (4786ms)\nWho invented the game bowling?\tthe AFC West\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the AFC West, will be playing for, the Super Bowl) -> the AFC West (4770ms)\nWho invented the game bowling?\tchiefs\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (chiefs, is a sports team that won the, super bowl) -> chiefs (4745ms)\nWho invented the game bowling?\tThe unit\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (The unit, sports, a 6.7 litre stainless steel bowl) -> The unit (4778ms)\nWho invented the game bowling?\tI?ve\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (I?ve, played for, the World Bowl Championship) -> I?ve (4789ms)\nWho invented the game bowling?\tthe field\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, be play of, bowling) -> (the field, is worthy of playing in, Super Bowl 45) -> the field (4745ms)\nWho invented the game bowling?\ta middle school student ,i\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (a middle school student ,i, sometimes played, bowling) -> a middle school student ,i (4745ms)\nWho invented the game bowling?\tBuccaneers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Buccaneers, is a sports team that won the, super bowl) -> Buccaneers (4774ms)\nWho invented the game bowling?\tBEAST\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (BEAST, was happily playing, bowling) -> BEAST (4774ms)\nWho invented the game bowling?\tchildren\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (children, want to play, bowling) -> children (4790ms)\nWho invented the game bowling?\tCincinnati\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Cincinnati, offers the sport for, all ages , bowling) -> Cincinnati (4751ms)\nWho invented the game bowling?\tGreenbay Packers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Greenbay Packers, is a sports team that won the, super bowl) -> Greenbay Packers (4745ms)\nWho invented the game bowling?\tthe spa\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the spa, play a game of, bowling) -> the spa (4778ms)\nWho invented the game bowling?\tMinnesota\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Minnesota, is playing for, a Florida bowl) -> Minnesota (4774ms)\nWho invented the game bowling?\tcountries everyone\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (countries everyone, wants to play, bowls) -> countries everyone (4745ms)\nWho invented the game bowling?\ta glass\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (a glass, play a game of, bowls) -> a glass (4770ms)\nWho invented the game bowling?\tthe all-stars\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the all-stars, play for, the Super Bowl teams) -> the all-stars (4786ms)\nWho invented the game bowling?\tDallas Cowboys\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Dallas Cowboys, is a sports team that won the, super bowl) -> Dallas Cowboys (4765ms)\nWho invented the game bowling?\tSir Francis Drake\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Sir Francis Drake, was playing, bowls) -> Sir Francis Drake (4782ms)\nWho invented the game bowling?\tthe sauna\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the sauna, play a game of, bowling) -> the sauna (4793ms)\nWho invented the game bowling?\tthe girls\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the girls, played, bowling) -> the girls (4778ms)\nWho invented the game bowling?\tthe other sea captains\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the other sea captains, were playing at, bowls) -> the other sea captains (4782ms)\nWho invented the game bowling?\tthe Falcons\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the Falcons, make a play for, Saints Pro Bowl guard Carl Nicks) -> the Falcons (4756ms)\nWho invented the game bowling?\tSt Louis Rams\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (St Louis Rams, is a sports team that won the, super bowl) -> St Louis Rams (4774ms)\nWho invented the game bowling?\tUH\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (UH, would play for, a BCS bowl game) -> UH (4774ms)\nWho invented the game bowling?\tteams\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (teams, played, bowling) -> teams (4756ms)\nWho invented the game bowling?\t4 teams\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (4 teams, are playing for, the Super Bowl) -> 4 teams (4782ms)\nWho invented the game bowling?\tBowling\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Bowling, is a kind of equipment for the sport, Bowling Shoes) -> Bowling (4790ms)\nWho invented the game bowling?\tBaltimore Colts\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Baltimore Colts, is a sports team that won the, super bowl) -> Baltimore Colts (4751ms)\nWho invented the game bowling?\ttennessee titans\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (tennessee titans, is a sports team that won the, super bowl) -> tennessee titans (4745ms)\nWho invented the game bowling?\tthe best teams\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the best teams, play each other for, the NFL Super Bowl) -> the best teams (4790ms)\nWho invented the game bowling?\ta quiet person\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (a quiet person, play some sports like, golf and bowling) -> a quiet person (4751ms)\nWho invented the game bowling?\tminnesota-vikings\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (minnesota-vikings, is a sports team that won the, super bowl) -> minnesota-vikings (4778ms)\nWho invented the game bowling?\tNot everybody\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Not everybody, 's just playing for, a bowl game) -> Not everybody (4751ms)\nWho invented the game bowling?\tDetroit Lions\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Detroit Lions, is a sports team that won the, super bowl) -> Detroit Lions (4756ms)\nWho invented the game bowling?\tBrowns\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Browns, is a sports team that won the, super bowl) -> Browns (4765ms)\nWho invented the game bowling?\tnew-england-patriots\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (new-england-patriots, is a sports team that won the, super bowl) -> new-england-patriots (4770ms)\nWho invented the game bowling?\tFebruary 12 , 2012 | Sunday\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (February 12 , 2012 | Sunday, will play for, a BCS bowl game) -> February 12 , 2012 | Sunday (4782ms)\nWho invented the game bowling?\tCommon hobbies\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Common hobbies, include sports such as, bowling and basketball) -> Common hobbies (4778ms)\nWho invented the game bowling?\tBowling Green State University\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Bowling Green State University, Sports teams, Bowling Green Falcons men's basketball) -> Bowling Green State University (4778ms)\nWho invented the game bowling?\tUTEP\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (UTEP, is playing for, a bowl game) -> UTEP (4751ms)\nWho invented the game bowling?\tA veteran\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (A veteran, played for, a Super Bowl champion) -> A veteran (4790ms)\nWho invented the game bowling?\tA profesional girl\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (A profesional girl, playing, bowling) -> A profesional girl (4751ms)\nWho invented the game bowling?\tthe Wildcats\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the Wildcats, are still playing for, a nice bowl game) -> the Wildcats (4786ms)\nWho invented the game bowling?\tmore people\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (more people, playing, bowls) -> more people (4770ms)\nWho invented the game bowling?\tThe 1970s basketball star\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (The 1970s basketball star, played for, Bowling Green) -> The 1970s basketball star (4774ms)\nWho invented the game bowling?\tthe house\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the house, was playing, bowling) -> the house (4760ms)\nWho invented the game bowling?\tReggie Bush\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Reggie Bush, has played his last game for, the Super Bowl Champs) -> Reggie Bush (4782ms)\nWho invented the game bowling?\tDrake\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Drake, to have played, bowls) -> Drake (4782ms)\nWho invented the game bowling?\tBowling pin\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Bowling pin, Sport used for, Bowling) -> Bowling pin (4790ms)\nWho invented the game bowling?\tState University\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (State University, is a sports team also known as, bowling green state falcons) -> State University (4765ms)\nWho invented the game bowling?\tBoccia\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Boccia, is a sport similar to, indoor bowls) -> Boccia (4790ms)\nWho invented the game bowling?\tBowls Ken Woods\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Bowls Ken Woods, has been playing, bowls) -> Bowls Ken Woods (4778ms)\nWho invented the game bowling?\t5220 times Game description\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (5220 times Game description, Want to play, bowling) -> 5220 times Game description (4790ms)\nWho invented the game bowling?\tthe World League\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the World League, played for, the World Bowl Championship) -> the World League (4739ms)\nWho invented the game bowling?\t15 Oct 2006\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (15 Oct 2006, like playing, Bowling) -> 15 Oct 2006 (4778ms)\nWho invented the game bowling?\tBRUCE\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (BRUCE, likes to play, bowling) -> BRUCE (4770ms)\nWho invented the game bowling?\tPats\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Pats, is a sports team that won the, super bowl) -> Pats (4756ms)\nWho invented the game bowling?\tGeorge Thomas\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (George Thomas, are playing, bowls) -> George Thomas (4751ms)\nWho invented the game bowling?\tHouston Oilers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Houston Oilers, is a sports team that won the, super bowl) -> Houston Oilers (4745ms)\nWho invented the game bowling?\tfingers\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (fingers, start playing, bowling) -> fingers (4751ms)\nWho invented the game bowling?\ta quarterback\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (a quarterback, played for, two Super Bowl-winning squads) -> a quarterback (4770ms)\nWho invented the game bowling?\ttenants\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (tenants, play, bowling) -> tenants (4745ms)\nWho invented the game bowling?\tSaints\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Saints, will play for, Super Bowl) -> Saints (4790ms)\nWho invented the game bowling?\t15 winners\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (15 winners, play for, the Super Bowl) -> 15 winners (4774ms)\nWho invented the game bowling?\tVandy\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Vandy, was playing for, bowl eligibility) -> Vandy (4756ms)\nWho invented the game bowling?\tso many people\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (so many people, are playing, Bowls) -> so many people (4745ms)\nWho invented the game bowling?\tthe Lord Mayor\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the Lord Mayor, was playing, bowls) -> the Lord Mayor (4761ms)\nWho invented the game bowling?\tcincinnati-bengals\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (cincinnati-bengals, is a sports team that won the, super bowl) -> cincinnati-bengals (4778ms)\nWho invented the game bowling?\ta strange company\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (a strange company, was playing at, bowls) -> a strange company (4751ms)\nWho invented the game bowling?\tBowling ball\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Bowling ball, Sport used for, Bowling) -> Bowling ball (4739ms)\nWho invented the game bowling?\tthe old men\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the old men, play, bowls) -> the old men (4765ms)\nWho invented the game bowling?\t2010 Commonwealth Games\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (2010 Commonwealth Games, Sports, Bowls) -> 2010 Commonwealth Games (4786ms)\nWho invented the game bowling?\tjacksonville-jaguars\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (jacksonville-jaguars, is a sports team that won the, super bowl) -> jacksonville-jaguars (4789ms)\nWho invented the game bowling?\tNelson and Queen Elizabeth 1st\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Nelson and Queen Elizabeth 1st, played, bowls) -> Nelson and Queen Elizabeth 1st (4770ms)\nWho invented the game bowling?\tparks\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (parks, play, bowling) -> parks (4745ms)\nWho invented the game bowling?\tRavens\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Ravens, is a sports team that won the, super bowl) -> Ravens (4761ms)\nWho invented the game bowling?\tDenver broncos\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Denver broncos, is a sports team that won the, super bowl) -> Denver broncos (4790ms)\nWho invented the game bowling?\tthe Patriots and Giants\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (the Patriots and Giants, will play for, the Super Bowl) -> the Patriots and Giants (4774ms)\nWho invented the game bowling?\tverandas\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (verandas, sported, a table , mirror , bowl and towel) -> verandas (4774ms)\nWho invented the game bowling?\toakland raiders\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (oakland raiders, is a sports team that won the, super bowl) -> oakland raiders (4782ms)\nWho invented the game bowling?\tthe Wii\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the Wii, can play remarkably like, bowling) -> the Wii (4786ms)\nWho invented the game bowling?\tGeorgia\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play for, bowling) -> (Georgia, is playing for, its bowl life) -> Georgia (4786ms)\nWho invented the game bowling?\tIndianapolis Colts\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Indianapolis Colts, is a sports team that won the, super bowl) -> Indianapolis Colts (4786ms)\nWho invented the game bowling?\tthe last weekend\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the last weekend, played, bowling) -> the last weekend (4774ms)\nWho invented the game bowling?\tfriends\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (friends, ,play, bowling) -> friends (4770ms)\nWho invented the game bowling?\tFrancis Drake\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (Francis Drake, played, bowls) -> Francis Drake (4765ms)\nWho invented the game bowling?\tWKU Hilltoppers basketball\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (WKU Hilltoppers basketball, Sports Team Location, Bowling Green) -> WKU Hilltoppers basketball (4760ms)\nWho invented the game bowling?\tthe Greeks and Romans\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, play, bowling) -> (the Greeks and Romans, played some variation of, bowling) -> the Greeks and Romans (4774ms)\nWho invented the game bowling?\tPittsburgh Steelers Sunday\t0.11111111111100003\tWho invented the game bowling? -> $x: ($x, sport, bowling) -> (Pittsburgh Steelers Sunday, is a sports team that won the, super bowl) -> Pittsburgh Steelers Sunday (4761ms)\nWho invented the game bowling?\tAbbas\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Abbas, was then introduced into, the bowling attack) -> Abbas (4797ms)\nWho invented the game bowling?\t?KFC\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (?KFC, has just introduced, the new Cheesy Bacon Bowl) -> ?KFC (4797ms)\nWho invented the game bowling?\tCadillac\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Cadillac, introduced, its famous 2008 Super Bowl ad) -> Cadillac (4793ms)\nWho invented the game bowling?\tsauce black pepper\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (sauce black pepper, was introduced in, a bowl) -> sauce black pepper (4800ms)\nWho invented the game bowling?\tBrunswick\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Brunswick, introduced, 'Xtreme ' bowling) -> Brunswick (4793ms)\nWho invented the game bowling?\twood\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (wood, have been introduced for, bowls and boards) -> wood (4793ms)\nWho invented the game bowling?\tCapitol Hill\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Capitol Hill, was introduced to In, the Bowl) -> Capitol Hill (4797ms)\nWho invented the game bowling?\tCarter\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Carter, was introduced to, bowling) -> Carter (4800ms)\nWho invented the game bowling?\tfood items\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (food items, should either be introduced in, a smooth-sided bowl) -> food items (4797ms)\nWho invented the game bowling?\tRandy White\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Randy White, is always introduced as, Super Bowl MVP.?) -> Randy White (4800ms)\nWho invented the game bowling?\tA Twenty20 Series\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (A Twenty20 Series, has been introduced to, the Rose Bowl) -> A Twenty20 Series (4797ms)\nWho invented the game bowling?\tBrunswick Bowling\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Brunswick Bowling, introduced, a new line of bowling seating) -> Brunswick Bowling (4797ms)\nWho invented the game bowling?\tThe new model\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (The new model, was introduced during, the Super Bowl) -> The new model (4800ms)\nWho invented the game bowling?\tIGBO\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (IGBO, was proud to introduce, its first ever bowling ball) -> IGBO (4797ms)\nWho invented the game bowling?\tthe Nintendo Wii\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (the Nintendo Wii, introduced, its bowling game) -> the Nintendo Wii (4797ms)\nWho invented the game bowling?\tprogram\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (program, introduced the world to, our Coco Bowls) -> program (4793ms)\nWho invented the game bowling?\tMetLife\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (MetLife, introduced during, Super Bowl XLVI) -> MetLife (4797ms)\nWho invented the game bowling?\tBowls Sweden\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Bowls Sweden, are continuing to introduce, short mat bowling) -> Bowls Sweden (4797ms)\nWho invented the game bowling?\tthe shredded potatoes\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (the shredded potatoes, are introduced to, the bowl) -> the shredded potatoes (4793ms)\nWho invented the game bowling?\ta high level\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (a high level, was introduced to, bowls) -> a high level (4797ms)\nWho invented the game bowling?\tthe sailors\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (the sailors, were introduced to, lawn bowling) -> the sailors (4800ms)\nWho invented the game bowling?\t2011\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (2011, was introduced to, bowl) -> 2011 (4800ms)\nWho invented the game bowling?\tAmerica Forward\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (America Forward, is introducing, Super Bowl Care Packages) -> America Forward (4800ms)\nWho invented the game bowling?\tplayoff\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (playoff, is introduced into, the Football Bowl Subdivision) -> playoff (4793ms)\nWho invented the game bowling?\tElton John\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Elton John, is introduced at, the Hollywood Bowl) -> Elton John (4800ms)\nWho invented the game bowling?\tCaterpillar\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Caterpillar, introduced, an open bowl scraper) -> Caterpillar (4800ms)\nWho invented the game bowling?\tNew Orleans\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (New Orleans, were introduced to, bowl politics) -> New Orleans (4800ms)\nWho invented the game bowling?\tanticoagulated whole blood\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (anticoagulated whole blood, is introduced into, the bowl) -> anticoagulated whole blood (4802ms)\nWho invented the game bowling?\tthe computer mouse\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (the computer mouse, was introduced during, Super Bowl XVIII) -> the computer mouse (4797ms)\nWho invented the game bowling?\tStudents\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Students, are introduced to, segmented bowls) -> Students (4797ms)\nWho invented the game bowling?\ta the Sunsilk campaign\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (a the Sunsilk campaign, will be introduced on, Super Bowl Sunday) -> a the Sunsilk campaign (4800ms)\nWho invented the game bowling?\ta whole new dimension\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (a whole new dimension, was introduced into, Super Bowl ads) -> a whole new dimension (4793ms)\nWho invented the game bowling?\tThe teacher\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (The teacher, introduces, the bowl) -> The teacher (4800ms)\nWho invented the game bowling?\tPocket God\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Pocket God, has also introduced, a new Super Bowl skin pack) -> Pocket God (4797ms)\nWho invented the game bowling?\tA-Basin\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (A-Basin, will introduce, Montezuma Bowl) -> A-Basin (4800ms)\nWho invented the game bowling?\ta judgment\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (a judgment, rather introduces, the seven bowl judgments) -> a judgment (4800ms)\nWho invented the game bowling?\tthe seventh trumpet\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (the seventh trumpet, introduces, the seven bowls) -> the seventh trumpet (4793ms)\nWho invented the game bowling?\tThe meeting\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (The meeting, introduces the participants to, the Lobster Bowl) -> The meeting (4800ms)\nWho invented the game bowling?\tWada Hiroaki\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Wada Hiroaki, proudly introduces, this summer tea ceremony bowl) -> Wada Hiroaki (4793ms)\nWho invented the game bowling?\tFripp\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Fripp, introduced, a penalty-bowl) -> Fripp (4800ms)\nWho invented the game bowling?\tGig Harbor\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Gig Harbor, will be introduced to, The Empty Bowls Project) -> Gig Harbor (4793ms)\nWho invented the game bowling?\tThe new luxury sedan\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (The new luxury sedan, was introduced to, Super Bowl TV viewers) -> The new luxury sedan (4793ms)\nWho invented the game bowling?\tMustafa\t-0.22222222222299992\tWho invented the game bowling? -> $x: ($x, introduce, bowling) -> (Mustafa, was originally introduced at, a Super Bowl commercial) -> Mustafa (4797ms)\nWho invented the game bowling?\tTIP\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (TIP, find, a bowl) -> TIP (4803ms)\nWho invented the game bowling?\tHertfordshire Page 1 | Clubbz\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Hertfordshire Page 1 | Clubbz, Find, Bowling Clubs) -> Hertfordshire Page 1 | Clubbz (4802ms)\nWho invented the game bowling?\tTulip\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Tulip, found, a small bowl) -> Tulip (4805ms)\nWho invented the game bowling?\tthe dog\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the dog, found, the bowl) -> the dog (4808ms)\nWho invented the game bowling?\tSandhurst\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Sandhurst, found, the bowling) -> Sandhurst (4805ms)\nWho invented the game bowling?\tPolice\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Police, found, a cereal bowl) -> Police (4810ms)\nWho invented the game bowling?\tthe bundle\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the bundle, found, a bowl) -> the bundle (4810ms)\nWho invented the game bowling?\teight pigs\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (eight pigs, found, the bowl) -> eight pigs (4805ms)\nWho invented the game bowling?\twalk\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (walk, find, the bowl) -> walk (4812ms)\nWho invented the game bowling?\tDantzler\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Dantzler, found, a small plastic bowl) -> Dantzler (4805ms)\nWho invented the game bowling?\ti ll\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (i ll, found, datura bowl) -> i ll (4808ms)\nWho invented the game bowling?\tthe single mother\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the single mother, found, Bowling Green Technical College) -> the single mother (4813ms)\nWho invented the game bowling?\ttwo certificates\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (two certificates, enjoys finding, bowls) -> two certificates (4808ms)\nWho invented the game bowling?\tWest Sussex Page 1 | Clubbz\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (West Sussex Page 1 | Clubbz, Find, Bowling Clubs) -> West Sussex Page 1 | Clubbz (4805ms)\nWho invented the game bowling?\tVitamin C. History Archaeologists\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Vitamin C. History Archaeologists, have found, bowls) -> Vitamin C. History Archaeologists (4808ms)\nWho invented the game bowling?\theels\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (heels, found, the best bowl) -> heels (4808ms)\nWho invented the game bowling?\tclose\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (close, Find, a bowling center / alley) -> close (4803ms)\nWho invented the game bowling?\tThe archeologists\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (The archeologists, found, ceramic bowls) -> The archeologists (4805ms)\nWho invented the game bowling?\tCrudely inscribed names\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Crudely inscribed names, have been found on, bowls) -> Crudely inscribed names (4813ms)\nWho invented the game bowling?\tMI\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (MI, found, Bowling Green) -> MI (4803ms)\nWho invented the game bowling?\tresearchers\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (researchers, found, a bowl) -> researchers (4808ms)\nWho invented the game bowling?\tThe Fox , you?ll\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (The Fox , you?ll, find, the Bowls Club) -> The Fox , you?ll (4810ms)\nWho invented the game bowling?\tthe team\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the team, found, a red bowl) -> the team (4803ms)\nWho invented the game bowling?\tTV audiences\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (TV audiences, find, Lawn Bowls) -> TV audiences (4810ms)\nWho invented the game bowling?\tback home\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (back home, found, the bowl) -> back home (4805ms)\nWho invented the game bowling?\tflowers\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (flowers, find, a bowl) -> flowers (4813ms)\nWho invented the game bowling?\tBedfordshire Page 1 | Clubbz\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Bedfordshire Page 1 | Clubbz, Find, Bowling Clubs) -> Bedfordshire Page 1 | Clubbz (4803ms)\nWho invented the game bowling?\tworkers\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (workers, were found, bowling) -> workers (4808ms)\nWho invented the game bowling?\tO?Donnell?s home\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (O?Donnell?s home, had been found with, bowls) -> O?Donnell?s home (4803ms)\nWho invented the game bowling?\ta storage room\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (a storage room, manages to find, bowls) -> a storage room (4812ms)\nWho invented the game bowling?\tskiers and riders\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (skiers and riders, find, numerous bowls) -> skiers and riders (4803ms)\nWho invented the game bowling?\tArcheologists\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Archeologists, found, ancient bowling balls) -> Archeologists (4805ms)\nWho invented the game bowling?\tthe kitchen\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the kitchen, found, my bowl) -> the kitchen (4805ms)\nWho invented the game bowling?\tAnjana Devi\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Anjana Devi, found, the bowl and partook) -> Anjana Devi (4808ms)\nWho invented the game bowling?\tWendy\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Wendy, finds time for, bowling) -> Wendy (4803ms)\nWho invented the game bowling?\tthe water\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the water, Find, a suitable bowl) -> the water (4815ms)\nWho invented the game bowling?\tVisitors\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Visitors, will find, bowls) -> Visitors (4810ms)\nWho invented the game bowling?\tthe Archen\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the Archen, found, a bowl) -> the Archen (4803ms)\nWho invented the game bowling?\tTuesday morning\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Tuesday morning, found, a small bowl) -> Tuesday morning (4812ms)\nWho invented the game bowling?\tDavin\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Davin, was pleased to find, bowls) -> Davin (4808ms)\nWho invented the game bowling?\tAustralia\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Australia, will need to find a way to, bowl) -> Australia (4810ms)\nWho invented the game bowling?\tRobyn\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Robyn, found, a large bowl) -> Robyn (4815ms)\nWho invented the game bowling?\tyou?ll\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (you?ll, find, four ?expert only ? bowls) -> you?ll (4808ms)\nWho invented the game bowling?\tfolks\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (folks, are finding, BOWLING) -> folks (4805ms)\nWho invented the game bowling?\tthe middle\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the middle, find, a bowl) -> the middle (4805ms)\nWho invented the game bowling?\tNynaeve and Elayne\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Nynaeve and Elayne, find, the bowl) -> Nynaeve and Elayne (4813ms)\nWho invented the game bowling?\twater\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (water, find, a plastic bowl) -> water (4808ms)\nWho invented the game bowling?\tKrista Hein\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Krista Hein, found, a bowl) -> Krista Hein (4813ms)\nWho invented the game bowling?\tLovi\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Lovi, found, a bowl) -> Lovi (4815ms)\nWho invented the game bowling?\tIll.\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Ill., found, Bowling Green) -> Ill. (4805ms)\nWho invented the game bowling?\tsomebody\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (somebody, found, a bowl) -> somebody (4808ms)\nWho invented the game bowling?\tNed ? ? Hey ! ? Ned\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Ned ? ? Hey ! ? Ned, finds, his empty bowl) -> Ned ? ? Hey ! ? Ned (4813ms)\nWho invented the game bowling?\tephedra\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (ephedra, Find, The Dust Bowl) -> ephedra (4810ms)\nWho invented the game bowling?\tBob\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Bob, found, this bowl) -> Bob (4814ms)\nWho invented the game bowling?\tCops\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Cops, found, a bowl) -> Cops (4803ms)\nWho invented the game bowling?\tDesigns\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Designs, found on, bowls) -> Designs (4810ms)\nWho invented the game bowling?\tThe jury\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (The jury, found, Bowling guilty) -> The jury (4805ms)\nWho invented the game bowling?\tballs\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (balls, find, the right bowling accessory) -> balls (4810ms)\nWho invented the game bowling?\tSTEP 1\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (STEP 1, Find, a bowl) -> STEP 1 (4808ms)\nWho invented the game bowling?\tSpongebob\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Spongebob, found, a bowl) -> Spongebob (4810ms)\nWho invented the game bowling?\tcontinuous barking\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (continuous barking, found, two empty bowls) -> continuous barking (4810ms)\nWho invented the game bowling?\tShazam and IntoNow\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (Shazam and IntoNow, found, the Super Bowl) -> Shazam and IntoNow (4810ms)\nWho invented the game bowling?\tthe University\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the University, found the origins of, bowling) -> the University (4814ms)\nWho invented the game bowling?\tYou?ll\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (You?ll, find, a clear glass bowl) -> You?ll (4810ms)\nWho invented the game bowling?\tthe ants\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the ants, find, the bowl) -> the ants (4806ms)\nWho invented the game bowling?\ta bowling game\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (a bowling game, found, Brunswick Pro Bowling) -> a bowling game (4814ms)\nWho invented the game bowling?\ta quick comfort\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (a quick comfort, found, a bowl) -> a quick comfort (4813ms)\nWho invented the game bowling?\ta few times\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (a few times, find, your mixing bowl) -> a few times (4810ms)\nWho invented the game bowling?\tthe same level\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (the same level, find, the bowling games) -> the same level (4802ms)\nWho invented the game bowling?\tpolice officers\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (police officers, found, Ben Bowling) -> police officers (4803ms)\nWho invented the game bowling?\tstudents\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (students, found, a bowl) -> students (4808ms)\nWho invented the game bowling?\tpeking duck\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (peking duck, have already found their way in, bowls) -> peking duck (4810ms)\nWho invented the game bowling?\tmid-century modern textiles and wallpapers\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (mid-century modern textiles and wallpapers, found on, bowls) -> mid-century modern textiles and wallpapers (4808ms)\nWho invented the game bowling?\tI?ll\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (I?ll, find, a bowl) -> I?ll (4813ms)\nWho invented the game bowling?\tTHE BOWL\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (THE BOWL, find, the largest bowl) -> THE BOWL (4805ms)\nWho invented the game bowling?\tThe rich man\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (The rich man, found, the bowl of gold) -> The rich man (4813ms)\nWho invented the game bowling?\tkway chap and noodles\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (kway chap and noodles, find company with, bowls) -> kway chap and noodles (4805ms)\nWho invented the game bowling?\tskin divers\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (skin divers, found, a stone bowl) -> skin divers (4813ms)\nWho invented the game bowling?\tscience\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (science, has found, bowling) -> science (4803ms)\nWho invented the game bowling?\tThe dog lover\t-0.33333333333399995\tWho invented the game bowling? -> $x: ($x, found, bowling) -> (The dog lover, will find, bowls) -> The dog lover (4803ms)\nWho invented the game bowling?\tMum\t-0.555555555556\tWho invented the game bowling? -> $x: ($x, play, ten pin) -> (Mum, loves to play, ten-pin bowling) -> Mum (4815ms)\nWho invented the game bowling?\tpubs and club\t-0.555555555556\tWho invented the game bowling? -> $x: ($x, play, ten pin) -> (pubs and club, play together with, your friend ten pin bowling) -> pubs and club (4815ms)\nWho invented the game bowling?\tA game resembling ninepins\t-0.555555555556\tWho invented the game bowling? -> $x: ($x, play, ten pin) -> (A game resembling ninepins, played with, ten pins) -> A game resembling ninepins (4815ms)\nWho invented the game bowling?\ta supermarket parking lot\t-0.555555555556\tWho invented the game bowling? -> $x: ($x, play, ten pin) -> (a supermarket parking lot, played, shopping cart ten-pin) -> a supermarket parking lot (4815ms)\nWho invented the game bowling?\tthe supermarket\t-0.555555555556\tWho invented the game bowling? -> $x: ($x, play, ten pin) -> (the supermarket, plays, ten pin bowling) -> the supermarket (4815ms)\nWho invented the game bowling?\tToy Story\t-0.555555555556\tWho invented the game bowling? -> $x: ($x, play, ten pin) -> (Toy Story, has decided to play, ten pin bowling) -> Toy Story (4814ms)\nWho invented the game bowling?\tthe ball.Cores\t-0.555555555556\tWho invented the game bowling? -> $x: ($x, play, ten pin) -> (the ball.Cores, play an important role in, any ten pins game) -> the ball.Cores (4815ms)\nWhat do penguins eat?\tleopard seals\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, may be eaten by, leopard seals) -> leopard seals (4264ms)\nWhat do penguins eat?\tas much as they can\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat, as much as they can) -> as much as they can (3932ms)\nWhat do penguins eat?\tcrustaceans\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Emperor Penguins, mainly eat, crustaceans) -> crustaceans (3932ms)\nWhat do penguins eat?\ta turtle\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin, can eat, a turtle) -> a turtle (3932ms)\nWhat do penguins eat?\tthe local fish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, must eat, the local fish) -> the local fish (4112ms)\nWhat do penguins eat?\tPatrick?s head\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, was eating, Patrick?s head) -> Patrick?s head (4112ms)\nWhat do penguins eat?\tpiranhas\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, ate meat of, piranhas) -> piranhas (4428ms)\nWhat do penguins eat?\tthe same basic foods\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (a less-efficient penguin, probably ate, the same basic foods) -> the same basic foods (4204ms)\nWhat do penguins eat?\tmostly small fish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Galapagos penguins, eat, mostly small fish) -> mostly small fish (4204ms)\nWhat do penguins eat?\tsnow and ice\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the Antarctic penguins, eat, snow and ice) -> snow and ice (4333ms)\nWhat do penguins eat?\tsnow\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, eat, snow) -> snow (4112ms)\nWhat do penguins eat?\tone pound\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (A penguin, may eat up to, one pound) -> one pound (2404ms)\nWhat do penguins eat?\tfishes\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (afrv3 Big penguins, have eaten, fishes) -> fishes (1807ms)\nWhat do penguins eat?\tseven fish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (The penguins, eat five to, seven fish) -> seven fish (4333ms)\nWhat do penguins eat?\ta wider variety\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Chinstrap penguins, will eat, a wider variety) -> a wider variety (1807ms)\nWhat do penguins eat?\tdelicious treats\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (polar bears , seals and penguins, eat, delicious treats) -> delicious treats (3932ms)\nWhat do penguins eat?\tthe wife\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin, eat, the wife) -> the wife (2404ms)\nWhat do penguins eat?\tthe poor halibut\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (The penguins, are gonna eat, the poor halibut) -> the poor halibut (4264ms)\nWhat do penguins eat?\tlunch\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat for, lunch) -> lunch (3932ms)\nWhat do penguins eat?\tsardines\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (These penguins, eat, sardines) -> sardines (4264ms)\nWhat do penguins eat?\tbreakfast\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (a penguin, eat for, breakfast) -> breakfast (3932ms)\nWhat do penguins eat?\tfish and krill\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, eat, fish and krill) -> fish and krill (4333ms)\nWhat do penguins eat?\ta tub\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, ate, a tub) -> a tub (2404ms)\nWhat do penguins eat?\tMr. Popper?s goldfish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin Captain Cook, eats, Mr. Popper?s goldfish) -> Mr. Popper?s goldfish (4428ms)\nWhat do penguins eat?\tfish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, love to eat, fish) -> fish (4428ms)\nWhat do penguins eat?\tsmall fish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (South Georgia Island King penguins, eat, small fish) -> small fish (4204ms)\nWhat do penguins eat?\tusually\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, like a swim after they eat, usually) -> usually (4204ms)\nWhat do penguins eat?\tthe krill\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, eat, the krill) -> the krill (4333ms)\nWhat do penguins eat?\tthe llamas\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (My penguins, are eating, the llamas) -> the llamas (2404ms)\nWhat do penguins eat?\tthe V&A Waterfront\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat along, the V&A Waterfront) -> the V&A Waterfront (4265ms)\nWhat do penguins eat?\ta fish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, ate, a fish) -> a fish (2404ms)\nWhat do penguins eat?\tkrill and surface fish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Most penguins, eat, krill and surface fish) -> krill and surface fish (4264ms)\nWhat do penguins eat?\tthe camera\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, kept trying to eat, the camera) -> the camera (4264ms)\nWhat do penguins eat?\tthe absence\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat in, the absence) -> the absence (4112ms)\nWhat do penguins eat?\tsmall amounts\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (King penguins, mainly eat fish with, small amounts) -> small amounts (4204ms)\nWhat do penguins eat?\tthe ocean\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, only eat in, the ocean) -> the ocean (4333ms)\nWhat do penguins eat?\tany given month\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (How many penguins, will eat in, any given month) -> any given month (1807ms)\nWhat do penguins eat?\tapples\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (A snowboarding penguin, eats, apples) -> apples (4204ms)\nWhat do penguins eat?\tworms\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the little blue penguin, eat, worms) -> worms (3425ms)\nWhat do penguins eat?\tfish and squid\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (a penguin, eats, fish and squid) -> fish and squid (3425ms)\nWhat do penguins eat?\tan ice cream cone\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin, came back eating, an ice cream cone) -> an ice cream cone (3425ms)\nWhat do penguins eat?\tan Orca or other sea mammal\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin, has been eaten by, an Orca or other sea mammal) -> an Orca or other sea mammal (3425ms)\nWhat do penguins eat?\ta banana\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, ate, a banana) -> a banana (4264ms)\nWhat do penguins eat?\ttwenty-five species\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (The penguin, is known to eat, twenty-five species) -> twenty-five species (4112ms)\nWhat do penguins eat?\t9 fish\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Six penguins, can eat, 9 fish) -> 9 fish (3425ms)\nWhat do penguins eat?\tthe leopard seals\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the adult penguins, were eaten by, the leopard seals) -> the leopard seals (3425ms)\nWhat do penguins eat?\tthe Apple\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (The penguin, ate, the Apple) -> the Apple (4204ms)\nWhat do penguins eat?\tfood\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (The penguins, eat, food) -> food (4428ms)\nWhat do penguins eat?\tfish , squid , and krill\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, eat, fish , squid , and krill) -> fish , squid , and krill (3425ms)\nWhat do penguins eat?\tPanda\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (Penguin, eats, Panda) -> Panda (4264ms)\nWhat do penguins eat?\ta shark\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (the Penguin, was eaten by, a shark) -> a shark (1807ms)\nWhat do penguins eat?\tthe snow\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat, the snow) -> the snow (4204ms)\nWhat do penguins eat?\tan Apple ??\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (a penguin, eat, an Apple ??) -> an Apple ?? (3425ms)\nWhat do penguins eat?\tkrill\t0.777777777769\tWhat do penguins eat? -> $x: (penguin, eat, $x) -> (The penguins, eat, krill) -> krill (4333ms)\nWhat do penguins eat?\ta Happy Dance\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (a penguin, do, a Happy Dance) -> a Happy Dance (4632ms)\nWhat do penguins eat?\tcolor pencils\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, are done using, color pencils) -> color pencils (4622ms)\nWhat do penguins eat?\ta phenomenal job\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, a phenomenal job) -> a phenomenal job (4531ms)\nWhat do penguins eat?\teyes\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do have, eyes) -> eyes (4651ms)\nWhat do penguins eat?\tdarkness fall\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (*huggles penguins*, Does, darkness fall) -> darkness fall (4651ms)\nWhat do penguins eat?\tthe day\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, Do Today is, the day) -> the day (4641ms)\nWhat do penguins eat?\tpushups\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (a penguin, did, pushups) -> pushups (4632ms)\nWhat do penguins eat?\tthe classroom\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, was doing in, the classroom) -> the classroom (4531ms)\nWhat do penguins eat?\tthe point\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, just did n?t see, the point) -> the point (4632ms)\nWhat do penguins eat?\tEngland\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, was doing in, England) -> England (4599ms)\nWhat do penguins eat?\tpro wrestling pwn Nascar\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Club Penguin, Does, pro wrestling pwn Nascar) -> pro wrestling pwn Nascar (4622ms)\nWhat do penguins eat?\tyA HEAR THAT ANNA NICOLE DIED\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Club Penguin, did, yA HEAR THAT ANNA NICOLE DIED) -> yA HEAR THAT ANNA NICOLE DIED (4632ms)\nWhat do penguins eat?\tan outstanding job\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, has done, an outstanding job) -> an outstanding job (4599ms)\nWhat do penguins eat?\tParker?s stories\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did publish a collection of, Parker?s stories) -> Parker?s stories (4599ms)\nWhat do penguins eat?\ta climate\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do this in, a climate) -> a climate (4622ms)\nWhat do penguins eat?\tlibraries\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, does this mean for, libraries) -> libraries (4632ms)\nWhat do penguins eat?\tan Amazon or Barnes & Noble\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, does n?t have the reach of, an Amazon or Barnes & Noble) -> an Amazon or Barnes & Noble (4622ms)\nWhat do penguins eat?\tissue\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, issue) -> issue (4651ms)\nWhat do penguins eat?\tgreat\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, here are doing, great) -> great (4642ms)\nWhat do penguins eat?\ta good job\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, have done, a good job) -> a good job (4622ms)\nWhat do penguins eat?\tan Australian Sea World\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do at, an Australian Sea World) -> an Australian Sea World (4622ms)\nWhat do penguins eat?\tthe dishes\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (a penguin, do, the dishes) -> the dishes (4622ms)\nWhat do penguins eat?\tthe slender walk\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, are doing, the slender walk) -> the slender walk (4632ms)\nWhat do penguins eat?\tpecking\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do a lot of, pecking) -> pecking (4622ms)\nWhat do penguins eat?\tthe duties\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (African Penguins, do, the duties) -> the duties (4642ms)\nWhat do penguins eat?\tthe same and ice berg\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (80 penguins, do, the same and ice berg) -> the same and ice berg (4632ms)\nWhat do penguins eat?\tthe packaging\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did an excellent job with, the packaging) -> the packaging (4651ms)\nWhat do penguins eat?\ta hop\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (a penguin, do, a hop) -> a hop (4651ms)\nWhat do penguins eat?\tParker?s stories\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did publish a collection of, Parker?s stories) -> Parker?s stories (4632ms)\nWhat do penguins eat?\ta great job\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Club Penguin, did, a great job) -> a great job (4632ms)\nWhat do penguins eat?\teggs\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do lay, eggs) -> eggs (4651ms)\nWhat do penguins eat?\tan indicator\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, are doing is thought to be, an indicator) -> an indicator (4599ms)\nWhat do penguins eat?\tthe time\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, does at, the time) -> the time (4632ms)\nWhat do penguins eat?\tsuch an aggressive response\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (? Penguin, did n?t expect, such an aggressive response) -> such an aggressive response (4642ms)\nWhat do penguins eat?\tmate\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, mate) -> mate (4651ms)\nWhat do penguins eat?\tbirds\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do have other properties of, birds) -> birds (4651ms)\nWhat do penguins eat?\tthe death and penguins one\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, the death and penguins one) -> the death and penguins one (4651ms)\nWhat do penguins eat?\tRock ! Sanjeev Gangaramany Black tuxes\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do indeed, Rock ! Sanjeev Gangaramany Black tuxes) -> Rock ! Sanjeev Gangaramany Black tuxes (4632ms)\nWhat do penguins eat?\tAntarctica today\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do exist far north of, Antarctica today) -> Antarctica today (4651ms)\nWhat do penguins eat?\tbest ? waddling\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, best ? waddling) -> best ? waddling (4532ms)\nWhat do penguins eat?\tthe obligations\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (African Penguins, do, the obligations) -> the obligations (4599ms)\nWhat do penguins eat?\tany excerpts\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, does n?t have, any excerpts) -> any excerpts (4642ms)\nWhat do penguins eat?\tthe Activity\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do, the Activity) -> the Activity (4642ms)\nWhat do penguins eat?\tlong-term relationships\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguin, do form, long-term relationships) -> long-term relationships (4642ms)\nWhat do penguins eat?\tAntarctica\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, are doing in, Antarctica) -> Antarctica (4599ms)\nWhat do penguins eat?\ta difference\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, can be done to make, a difference) -> a difference (4599ms)\nWhat do penguins eat?\ttricks\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, tricks) -> tricks (4622ms)\nWhat do penguins eat?\ta bound manuscript\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, wanted to do, a bound manuscript) -> a bound manuscript (4642ms)\nWhat do penguins eat?\ta dance\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (The penguin, do, a dance) -> a dance (4651ms)\nWhat do penguins eat?\tthe air\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguin, do take to, the air) -> the air (4632ms)\nWhat do penguins eat?\tTime\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, Are Doing, Time) -> Time (4622ms)\nWhat do penguins eat?\ta really great collab\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin Books, did, a really great collab) -> a really great collab (4532ms)\nWhat do penguins eat?\tso\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (The penguins, did, so) -> so (4599ms)\nWhat do penguins eat?\tthe Hawiian dance\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, can do, the Hawiian dance) -> the Hawiian dance (4622ms)\nWhat do penguins eat?\tknees\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, DO have, knees) -> knees (4651ms)\nWhat do penguins eat?\tone step\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, one step) -> one step (4632ms)\nWhat do penguins eat?\ta thorough evaluation\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (This penguin, did, a thorough evaluation) -> a thorough evaluation (4641ms)\nWhat do penguins eat?\tan awesome job\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, an awesome job) -> an awesome job (4622ms)\nWhat do penguins eat?\tthe anonymity\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (?penguin?, have something to do with, the anonymity) -> the anonymity (4599ms)\nWhat do penguins eat?\tthe Heller option\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did n?t pick up, the Heller option) -> the Heller option (4642ms)\nWhat do penguins eat?\toften\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, often) -> often (4651ms)\nWhat do penguins eat?\texperience\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do have a lot of, experience) -> experience (4642ms)\nWhat do penguins eat?\tthe nasty\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, the nasty) -> the nasty (4632ms)\nWhat do penguins eat?\ta green paperback\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, had done, a green paperback) -> a green paperback (4651ms)\nWhat do penguins eat?\tself-help titles\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, would look at doing, self-help titles) -> self-help titles (4642ms)\nWhat do penguins eat?\tmate for life\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (These penguins, do, mate for life) -> mate for life (4622ms)\nWhat do penguins eat?\tfly\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (*penguins, do, fly) -> fly (4599ms)\nWhat do penguins eat?\ta very dynamic cover\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, a very dynamic cover) -> a very dynamic cover (4641ms)\nWhat do penguins eat?\tleadership\t0.111111111109\tWhat do penguins eat? -> $x: (penguin, do, $x) -> (penguins, have to do with, leadership) -> leadership (4642ms)\nWhat do penguins eat?\tminiature men\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Ad?lie penguins, are like, miniature men) -> miniature men (4802ms)\nWhat do penguins eat?\tPavel Mikoloski\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Pavel Mikoloski, does a French documentary about, penguins) -> Pavel Mikoloski (4807ms)\nWhat do penguins eat?\tEach night tourists\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Each night tourists, can visit, Phillip Island Penguin Parade) -> Each night tourists (4838ms)\nWhat do penguins eat?\ta big egg\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (a penguins, look like, a big egg) -> a big egg (4783ms)\nWhat do penguins eat?\tApple\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Apple, can just ignore, Anonymous Penguin) -> Apple (4720ms)\nWhat do penguins eat?\ta good game\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguin Hunter, Looks like, a good game) -> a good game (4811ms)\nWhat do penguins eat?\tAircraft\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Aircraft, do have an effect on, penguins) -> Aircraft (4820ms)\nWhat do penguins eat?\ta dry suit\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, works like, a dry suit) -> a dry suit (4840ms)\nWhat do penguins eat?\tLong story\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Long story, can talk to, penguins) -> Long story (4736ms)\nWhat do penguins eat?\ta fairly limited area\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, a fairly limited area) -> a fairly limited area (4712ms)\nWhat do penguins eat?\tcare\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (penguins, still need, care) -> care (4816ms)\nWhat do penguins eat?\timportant questions\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (important questions, did, the penguin look) -> important questions (4783ms)\nWhat do penguins eat?\tEnvironmentalists\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Environmentalists, can change, a penguin 's direction) -> Environmentalists (4687ms)\nWhat do penguins eat?\tMORE SCREEN TIME\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (HIS PENGUINS, NEED, MORE SCREEN TIME) -> MORE SCREEN TIME (4798ms)\nWhat do penguins eat?\t?Er\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (?Er, do, penguins order) -> ?Er (4704ms)\nWhat do penguins eat?\tDanny DeVito\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The penguin, looks little like, Danny DeVito) -> Danny DeVito (4798ms)\nWhat do penguins eat?\ta little more luck\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguins ? Sidney Crosby, needs, a little more luck) -> a little more luck (4838ms)\nWhat do penguins eat?\ta playoff berth\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, need a point to clinch, a playoff berth) -> a playoff berth (4720ms)\nWhat do penguins eat?\tthe days\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed in, $x) -> (penguins, be fed in, the days) -> the days (4816ms)\nWhat do penguins eat?\tLinux\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Linux, Kill, The Penguin) -> Linux (4830ms)\nWhat do penguins eat?\tthe registrar\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguin, is like going to, the registrar) -> the registrar (4712ms)\nWhat do penguins eat?\tthe shootout\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the shootout, does work well for, the Penguins) -> the shootout (4750ms)\nWhat do penguins eat?\tCorrespondent\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Correspondent, did, the Penguin misspelling) -> Correspondent (4660ms)\nWhat do penguins eat?\tAdventure World\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, Adventure World) -> Adventure World (4823ms)\nWhat do penguins eat?\ta great idea\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Penguin Olympics, seemed like, a great idea) -> a great idea (4750ms)\nWhat do penguins eat?\tthe stupidity\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (the stupidity, is killing, the Penguins) -> the stupidity (4793ms)\nWhat do penguins eat?\tVideo\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Video, Do, penguins) -> Video (4833ms)\nWhat do penguins eat?\tsharks and hawks\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (sharks and hawks, kill, the penguins) -> sharks and hawks (4772ms)\nWhat do penguins eat?\tpractice\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (practice, does n?t mean, the Penguins) -> practice (4660ms)\nWhat do penguins eat?\tOne which\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (One which, has nothing to do with, penguins) -> One which (4840ms)\nWhat do penguins eat?\tnatural predators\t-0.0\tWhat do penguins eat? -> $x: (penguin, hunt, $x) -> (Little Penguins, are hunted by, natural predators) -> natural predators (4835ms)\nWhat do penguins eat?\tfootballs\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, look like, footballs) -> footballs (4798ms)\nWhat do penguins eat?\tLeopard seals\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Leopard seals, can eat, penguins) -> Leopard seals (4815ms)\nWhat do penguins eat?\tthe picture\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Your penguin, should look like, the picture) -> the picture (4765ms)\nWhat do penguins eat?\tfood sources\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (food sources, can affect, penguin populations) -> food sources (4783ms)\nWhat do penguins eat?\tAlaska\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, Alaska) -> Alaska (4811ms)\nWhat do penguins eat?\tYeti\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Yeti, can redirect, the penguin) -> Yeti (4687ms)\nWhat do penguins eat?\thumans\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, look like, humans) -> humans (4820ms)\nWhat do penguins eat?\tSouth Pole\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, only live in, South Pole) -> South Pole (4660ms)\nWhat do penguins eat?\tsurvive\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, need to, survive) -> survive (4820ms)\nWhat do penguins eat?\tSeabirds\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Seabirds, killed to, save penguins) -> Seabirds (4696ms)\nWhat do penguins eat?\tInvesTech Research\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (InvesTech Research, do, penguins) -> InvesTech Research (4704ms)\nWhat do penguins eat?\tthe fish\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed on, $x) -> (a penguin, was feeding on, the fish) -> the fish (4720ms)\nWhat do penguins eat?\tthe cold water and abundance of fish\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, also like, the cold water and abundance of fish) -> the cold water and abundance of fish (4735ms)\nWhat do penguins eat?\tThe mail\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (The mail, had nothing to do with, penguins) -> The mail (4743ms)\nWhat do penguins eat?\ta team\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, are looking like, a team) -> a team (4820ms)\nWhat do penguins eat?\twhittled Latest York\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need, whittled Latest York) -> whittled Latest York (4807ms)\nWhat do penguins eat?\tsmall pelagic fish\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed on, $x) -> (African penguins, feed mainly on, small pelagic fish) -> small pelagic fish (4712ms)\nWhat do penguins eat?\tThe lion\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (The lion, wants nothing to do with, Penguin) -> The lion (4743ms)\nWhat do penguins eat?\tlove\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, need too, love) -> love (4835ms)\nWhat do penguins eat?\ta well-oiled machine\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (this Penguin team, worked like, a well-oiled machine) -> a well-oiled machine (4827ms)\nWhat do penguins eat?\ta waltz\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, is meant to look like, a waltz) -> a waltz (4802ms)\nWhat do penguins eat?\ttourists\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (tourists, can watch, the penguins) -> tourists (4660ms)\nWhat do penguins eat?\tlines\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (lines, kill, all the penguins) -> lines (4819ms)\nWhat do penguins eat?\ta desert climate\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, a desert climate) -> a desert climate (4679ms)\nWhat do penguins eat?\tOne trailer\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (One trailer, was done by, Penguin Publishing) -> One trailer (4793ms)\nWhat do penguins eat?\tmuch weight\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (much weight, does, the penguin gain) -> much weight (4840ms)\nWhat do penguins eat?\tHerzog\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Herzog, finally does find, penguins) -> Herzog (4838ms)\nWhat do penguins eat?\tthe gameplan\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to stick to, the gameplan) -> the gameplan (4669ms)\nWhat do penguins eat?\tthe Southern hemisphere\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, only live in, the Southern hemisphere) -> the Southern hemisphere (4816ms)\nWhat do penguins eat?\tthe Antarctic\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live only in, the Antarctic) -> the Antarctic (4838ms)\nWhat do penguins eat?\tThe Pittsburgh Penguins\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (The Pittsburgh Penguins, can be, the Kansas City Penguins) -> The Pittsburgh Penguins (4660ms)\nWhat do penguins eat?\tCrosby\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need, Crosby) -> Crosby (4765ms)\nWhat do penguins eat?\ta round robin\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguin, was sort of like, a round robin) -> a round robin (4735ms)\nWhat do penguins eat?\tChet\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, is most like, Chet) -> Chet (4823ms)\nWhat do penguins eat?\tA&W Root beer\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (the little penguin guys, drank, A&W Root beer) -> A&W Root beer (4679ms)\nWhat do penguins eat?\tdoor B\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (door B, can have, the penguin) -> door B (4765ms)\nWhat do penguins eat?\tRiddler\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Penguin 's stats, sucking like, Riddler) -> Riddler (4788ms)\nWhat do penguins eat?\tPenguin Pollan\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (P. The Penguin Book, Drink, Penguin Pollan) -> Penguin Pollan (4788ms)\nWhat do penguins eat?\tThe same\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (The same, can be said of, the penguin) -> The same (4743ms)\nWhat do penguins eat?\tthe question\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the question, did, the penguin) -> the question (4778ms)\nWhat do penguins eat?\tthe offensive\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to remain on, the offensive) -> the offensive (4811ms)\nWhat do penguins eat?\tfish and crustaceans\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed on, $x) -> (Penguins, feed mainly on, fish and crustaceans) -> fish and crustaceans (4735ms)\nWhat do penguins eat?\ta lot of fun\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The penguins, look like, a lot of fun) -> a lot of fun (4819ms)\nWhat do penguins eat?\tthe children\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the children, can have, a Penguin Family) -> the children (4704ms)\nWhat do penguins eat?\ta mural\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (a mural, does, a penguin) -> a mural (4736ms)\nWhat do penguins eat?\ta couple\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (These two penguins, acted like, a couple) -> a couple (4840ms)\nWhat do penguins eat?\tthe nature reserves\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, living in, the nature reserves) -> the nature reserves (4833ms)\nWhat do penguins eat?\tthe hardware requirements\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the hardware requirements, can create, a fluffy stuffed penguin) -> the hardware requirements (4835ms)\nWhat do penguins eat?\tthe idea and escapes\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, does n?t like, the idea and escapes) -> the idea and escapes (4696ms)\nWhat do penguins eat?\tice-cold Coca Cola\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (?penguins ?, are drinking, ice-cold Coca Cola) -> ice-cold Coca Cola (4838ms)\nWhat do penguins eat?\tthe Rangers\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need to beat, the Rangers) -> the Rangers (4827ms)\nWhat do penguins eat?\ta bath\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, need to take, a bath) -> a bath (4827ms)\nWhat do penguins eat?\tA fox\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (A fox, may kill as many as, 30 or 40 penguins) -> A fox (4807ms)\nWhat do penguins eat?\tenergy\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (energy, kills, the penguins) -> energy (4728ms)\nWhat do penguins eat?\tthe southern hemisphere\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, actually live in, the southern hemisphere) -> the southern hemisphere (4838ms)\nWhat do penguins eat?\tAnchovy\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed on, $x) -> (African Penguins, fed mainly on, Anchovy) -> Anchovy (4835ms)\nWhat do penguins eat?\tFFFFFFF\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (her penguin, is like, FFFFFFF) -> FFFFFFF (4669ms)\nWhat do penguins eat?\tthemselves\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The penguins, need to do something to protect, themselves) -> themselves (4840ms)\nWhat do penguins eat?\tcheese\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (cheese, have anything to do with, Penguins) -> cheese (4793ms)\nWhat do penguins eat?\tjabberwacky\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (jabberwacky, does, a penguin talk) -> jabberwacky (4678ms)\nWhat do penguins eat?\ta fine smooth stone\t-0.0\tWhat do penguins eat? -> $x: (penguin, hunt, $x) -> (The penguin, hunts, a fine smooth stone) -> a fine smooth stone (4778ms)\nWhat do penguins eat?\tGod\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (God, kills, a penguin) -> God (4783ms)\nWhat do penguins eat?\thelp Life\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (its penguins, need, help Life) -> help Life (4811ms)\nWhat do penguins eat?\texotic tourists\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, might seem like, exotic tourists) -> exotic tourists (4783ms)\nWhat do penguins eat?\tan environment\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (antarctic penguins, live in, an environment) -> an environment (4757ms)\nWhat do penguins eat?\tLet?s\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Let?s, do our best on, Club Penguin) -> Let?s (4660ms)\nWhat do penguins eat?\tRedmond\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Redmond, can afford to ignore, the penguin) -> Redmond (4679ms)\nWhat do penguins eat?\tperator\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (perator, can considerably reduce the coefficient of, penguin) -> perator (4811ms)\nWhat do penguins eat?\tkids\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (kids, can create, a penguin) -> kids (4720ms)\nWhat do penguins eat?\tMurder\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Murder, is being done for, Penguin Putnam) -> Murder (4736ms)\nWhat do penguins eat?\ta small seal\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The penguins, look very much like, a small seal) -> a small seal (4827ms)\nWhat do penguins eat?\tumbrellas\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (umbrellas, have to do with, penguins) -> umbrellas (4735ms)\nWhat do penguins eat?\tOil\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Oil, kills, penguins) -> Oil (4835ms)\nWhat do penguins eat?\tthe team\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, looked like, the team) -> the team (4743ms)\nWhat do penguins eat?\ta little break\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguin, needed, a little break) -> a little break (4687ms)\nWhat do penguins eat?\tprofessional wrestling Hulk Hogan\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins fan, acted like, professional wrestling Hulk Hogan) -> professional wrestling Hulk Hogan (4750ms)\nWhat do penguins eat?\tcold , polar climate zones\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Some penguins, live in, cold , polar climate zones) -> cold , polar climate zones (4778ms)\nWhat do penguins eat?\tBingham\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Bingham, did, another Penguin Tour) -> Bingham (4827ms)\nWhat do penguins eat?\ta time\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (a time, can enjoy, The Penguins) -> a time (4765ms)\nWhat do penguins eat?\tmonster\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (monster, does n?t like, penguins) -> monster (4743ms)\nWhat do penguins eat?\tInteresting Facts and Information\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Interesting Facts and Information, do, Penguin Tetra) -> Interesting Facts and Information (4783ms)\nWhat do penguins eat?\ta Hummer\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (a Hummer, is tantamount to killing, baby penguins) -> a Hummer (4772ms)\nWhat do penguins eat?\tMaybe this performance\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Maybe this performance, had something to do with, penguins) -> Maybe this performance (4757ms)\nWhat do penguins eat?\tigloos\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live neither in, igloos) -> igloos (4833ms)\nWhat do penguins eat?\tthe Zoo\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the Zoo, is doing to ensure, penguin survival) -> the Zoo (4743ms)\nWhat do penguins eat?\tcharset=UTF-8\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (charset=UTF-8, Does, this penguin look) -> charset=UTF-8 (4696ms)\nWhat do penguins eat?\ta compelling case\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (a compelling case, did leading, the Penguins) -> a compelling case (4728ms)\nWhat do penguins eat?\ta winner\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguin, looks like, a winner) -> a winner (4820ms)\nWhat do penguins eat?\tyoung , skilled players\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the NHL Penguins, need, young , skilled players) -> young , skilled players (4807ms)\nWhat do penguins eat?\ta great cosplayer\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (a great cosplayer, also does, The Penguin) -> a great cosplayer (4833ms)\nWhat do penguins eat?\tthe Revolution\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the Revolution, would have done without, Penguin Books) -> the Revolution (4827ms)\nWhat do penguins eat?\tHBO...\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (HBO..., is doing is essentially following, the Penguins) -> HBO... (4833ms)\nWhat do penguins eat?\tpole\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in south, pole) -> pole (4728ms)\nWhat do penguins eat?\tPolar\t-0.0\tWhat do penguins eat? -> $x: ($x, can eat, penguin) -> (Polar, bears can eat as, many as 86 penguins) -> Polar (4802ms)\nWhat do penguins eat?\tA-listers\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, were treated like, A-listers) -> A-listers (4660ms)\nWhat do penguins eat?\tburrows\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Some penguins, live in, burrows) -> burrows (4765ms)\nWhat do penguins eat?\t186 Reputation 33\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (186 Reputation 33, does, Penguin) -> 186 Reputation 33 (4793ms)\nWhat do penguins eat?\tJim Carrey\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Jim Carrey, does a fine job with, the penguins) -> Jim Carrey (4807ms)\nWhat do penguins eat?\tthe Flyers\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, simply need to keep, the Flyers) -> the Flyers (4830ms)\nWhat do penguins eat?\tA mystery disease\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (A mystery disease, is killing off, yellow-eyed penguin chicks) -> A mystery disease (4778ms)\nWhat do penguins eat?\tclassrooms\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (classrooms, can monitor, a penguin nest) -> classrooms (4765ms)\nWhat do penguins eat?\tworld beaters\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Pittsburgh Penguins, looked like, world beaters) -> world beaters (4811ms)\nWhat do penguins eat?\ta year\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (a year, did, the Pittsburgh Penguins) -> a year (4783ms)\nWhat do penguins eat?\tthe patient\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the patient, can throw snowballs at, penguins) -> the patient (4840ms)\nWhat do penguins eat?\tnature\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguin 4, like, nature) -> nature (4802ms)\nWhat do penguins eat?\tA huge amount\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (A huge amount, is done to protect, penguins) -> A huge amount (4696ms)\nWhat do penguins eat?\tthe red bombs\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (the red bombs, will kill, the penguin) -> the red bombs (4712ms)\nWhat do penguins eat?\ta penguin ?\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Gourds Penguin Gourds, shaped like, a penguin ?) -> a penguin ? (4772ms)\nWhat do penguins eat?\tthe highly entertaining documentary March\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the highly entertaining documentary March) -> the highly entertaining documentary March (4823ms)\nWhat do penguins eat?\tkinderartists\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (kinderartists, can paint, their penguin) -> kinderartists (4750ms)\nWhat do penguins eat?\ta scoring winger\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need, a scoring winger) -> a scoring winger (4736ms)\nWhat do penguins eat?\treal people\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (These penguins, live like, real people) -> real people (4807ms)\nWhat do penguins eat?\tsalt water\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (the penguins, drink, salt water) -> salt water (4815ms)\nWhat do penguins eat?\tDoor A\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Door A, can have, the penguin) -> Door A (4728ms)\nWhat do penguins eat?\tan accountability team\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, seem like, an accountability team) -> an accountability team (4827ms)\nWhat do penguins eat?\tPlayers\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Players, can create, a penguin) -> Players (4838ms)\nWhat do penguins eat?\tcolonies\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Humboldt Penguins, live in, colonies) -> colonies (4778ms)\nWhat do penguins eat?\tthree games\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (three games, can eliminate, the Penguins) -> three games (4798ms)\nWhat do penguins eat?\tWallace\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The penguin, needs to use, Wallace) -> Wallace (4802ms)\nWhat do penguins eat?\tforest\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The penguin, needs, forest) -> forest (4660ms)\nWhat do penguins eat?\twarm climates\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (These penguins, live in, warm climates) -> warm climates (4830ms)\nWhat do penguins eat?\tthe North Pole\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the North Pole) -> the North Pole (4835ms)\nWhat do penguins eat?\tthe whole 10Km\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the whole 10Km, did n?t see, any penguins) -> the whole 10Km (4833ms)\nWhat do penguins eat?\tgift requests\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (gift requests, neither does, the penguin) -> gift requests (4833ms)\nWhat do penguins eat?\tthe Southern Hemisphere\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, the Southern Hemisphere) -> the Southern Hemisphere (4838ms)\nWhat do penguins eat?\tthe Antarctica\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, only live in, the Antarctica) -> the Antarctica (4802ms)\nWhat do penguins eat?\tNew Zealand\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (These penguins, live in, New Zealand) -> New Zealand (4783ms)\nWhat do penguins eat?\tYounger guests\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Younger guests, can enjoy, the Penguin Club) -> Younger guests (4720ms)\nWhat do penguins eat?\ta coat\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (penguins, need, a coat) -> a coat (4679ms)\nWhat do penguins eat?\tTonyTouch\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (TonyTouch, does, Penguin) -> TonyTouch (4712ms)\nWhat do penguins eat?\tthe Senate\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, look like, the Senate) -> the Senate (4827ms)\nWhat do penguins eat?\tAntarctic ocean waters\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed in, $x) -> (emperor penguins, feed in, Antarctic ocean waters) -> Antarctic ocean waters (4815ms)\nWhat do penguins eat?\ta backup goalie\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Pittsburgh Penguins, need, a backup goalie) -> a backup goalie (4811ms)\nWhat do penguins eat?\t255 days\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The penguins, need, 255 days) -> 255 days (4815ms)\nWhat do penguins eat?\tTourists\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Tourists, can view, penguins) -> Tourists (4788ms)\nWhat do penguins eat?\tAlan Wow\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Alan Wow, did, all these Penguin apologists) -> Alan Wow (4793ms)\nWhat do penguins eat?\tStrong players\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Strong players, can win, Penguin nearly) -> Strong players (4687ms)\nWhat do penguins eat?\tsquid\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed on, $x) -> (the Penguins, were mainly feeding on, squid) -> squid (4712ms)\nWhat do penguins eat?\tgames\t-0.0\tWhat do penguins eat? -> $x: (penguin, have type of, $x) -> (Penguin games, have many many types of, games) -> games (4704ms)\nWhat do penguins eat?\tair\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, need, air) -> air (4807ms)\nWhat do penguins eat?\tPenguins\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Penguins, can make a penguin look like, their penguin) -> Penguins (4807ms)\nWhat do penguins eat?\ta yeti\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (a yeti, can hit, a penguin) -> a yeti (4765ms)\nWhat do penguins eat?\ta new bird\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (our little Penguin, looked like, a new bird) -> a new bird (4772ms)\nWhat do penguins eat?\tthe continent\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the continent, can affect, penguins) -> the continent (4798ms)\nWhat do penguins eat?\ta tap-in\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins, seemed like, a tap-in) -> a tap-in (4743ms)\nWhat do penguins eat?\tpop singers\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, sway like, pop singers) -> pop singers (4830ms)\nWhat do penguins eat?\twater and on land\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, water and on land) -> water and on land (4669ms)\nWhat do penguins eat?\tshoaling fish\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed on, $x) -> (The Emperor penguin, feeds primarily on, shoaling fish) -> shoaling fish (4830ms)\nWhat do penguins eat?\tlarge groups\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, large groups) -> large groups (4772ms)\nWhat do penguins eat?\tVisitors\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Visitors, can watch, penguins) -> Visitors (4788ms)\nWhat do penguins eat?\tthe Arctic\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the Arctic) -> the Arctic (4835ms)\nWhat do penguins eat?\tthe rich , satisfying taste\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguin Mini Modern Classics, like, the rich , satisfying taste) -> the rich , satisfying taste (4807ms)\nWhat do penguins eat?\tthe South Pole\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the South Pole) -> the South Pole (4815ms)\nWhat do penguins eat?\tDannay\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Dannay, did, Penguin) -> Dannay (4819ms)\nWhat do penguins eat?\tan ambassador\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (African penguins, need, an ambassador) -> an ambassador (4696ms)\nWhat do penguins eat?\tbutlers and bridegrooms\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, look like, butlers and bridegrooms) -> butlers and bridegrooms (4840ms)\nWhat do penguins eat?\tseal holes\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed in, $x) -> (penguins, will feed in, seal holes) -> seal holes (4802ms)\nWhat do penguins eat?\tlittle kids\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (little kids, can press, penguins) -> little kids (4788ms)\nWhat do penguins eat?\tLayci\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Layci, did get, her penguin) -> Layci (4679ms)\nWhat do penguins eat?\tthe mistakes\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to reduce, the mistakes) -> the mistakes (4798ms)\nWhat do penguins eat?\t? Polar bears\t-0.0\tWhat do penguins eat? -> $x: ($x, can eat, penguin) -> (? Polar bears, can eat as many as, 86 penguins) -> ? Polar bears (4840ms)\nWhat do penguins eat?\tsnorkeling lessons or kids\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (snorkeling lessons or kids, can enjoy, ?Camp Penguin?s ?) -> snorkeling lessons or kids (4793ms)\nWhat do penguins eat?\tAntartica\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (the penguins, live in, Antartica) -> Antartica (4678ms)\nWhat do penguins eat?\thelp\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguin, needed, help) -> help (4783ms)\nWhat do penguins eat?\tcats\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, can purr like, cats) -> cats (4830ms)\nWhat do penguins eat?\tthe New York Islanders\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the New York Islanders, did against, the Penguins) -> the New York Islanders (4827ms)\nWhat do penguins eat?\ta crowded colony\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Adelie Penguins, live in, a crowded colony) -> a crowded colony (4827ms)\nWhat do penguins eat?\tthe wild ponies\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The penguins, are like, the wild ponies) -> the wild ponies (4802ms)\nWhat do penguins eat?\tOcean currents\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Ocean currents, can carry, penguins) -> Ocean currents (4802ms)\nWhat do penguins eat?\tcrap\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (other penguins, look like, crap) -> crap (4669ms)\nWhat do penguins eat?\ta Leopard\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (a Leopard, killed, 50 penguins) -> a Leopard (4735ms)\nWhat do penguins eat?\tbabysat\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, need to be, babysat) -> babysat (4772ms)\nWhat do penguins eat?\tsea creatures\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (sea creatures, does, a penguin count) -> sea creatures (4838ms)\nWhat do penguins eat?\t15 seconds\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, needed a total of, 15 seconds) -> 15 seconds (4712ms)\nWhat do penguins eat?\tparties\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (pet penguins, serve drinks at, parties) -> parties (4833ms)\nWhat do penguins eat?\tthe new kids\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, are like, the new kids) -> the new kids (4720ms)\nWhat do penguins eat?\tfour\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, gets like, four) -> four (4696ms)\nWhat do penguins eat?\tSunday\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Sunday, did, the Penguins) -> Sunday (4823ms)\nWhat do penguins eat?\tthe Melbourne zoo\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, will need to visit, the Melbourne zoo) -> the Melbourne zoo (4728ms)\nWhat do penguins eat?\twarmer climates\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (these penguins, live in, warmer climates) -> warmer climates (4807ms)\nWhat do penguins eat?\tthe ice\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (the ice, kill, all those evil penguins) -> the ice (4788ms)\nWhat do penguins eat?\tbare foot\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (bare foot, did, a penguin tour) -> bare foot (4783ms)\nWhat do penguins eat?\trepresentation\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (That penguin population, north needs, representation) -> representation (4793ms)\nWhat do penguins eat?\tlarge colonies\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, large colonies) -> large colonies (4827ms)\nWhat do penguins eat?\tThe kids\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (The kids, do go back to, Club Penguin) -> The kids (4687ms)\nWhat do penguins eat?\tSecond Life\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Club Penguin, is more like, Second Life) -> Second Life (4830ms)\nWhat do penguins eat?\tthe warmer climates\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Humbolt penguins, live in, the warmer climates) -> the warmer climates (4788ms)\nWhat do penguins eat?\tevery extra inch\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (That penguin, needs, every extra inch) -> every extra inch (4669ms)\nWhat do penguins eat?\tthe tightly packed scrum\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the tightly packed scrum, do, the penguins) -> the tightly packed scrum (4830ms)\nWhat do penguins eat?\tWeapons\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Weapons, Kill, penguins) -> Weapons (4736ms)\nWhat do penguins eat?\teight-14\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (eight-14, can use, penguin avatars) -> eight-14 (4696ms)\nWhat do penguins eat?\tPenguin Musume\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Penguin Musume, has almost nothing to do with, penguins) -> Penguin Musume (4807ms)\nWhat do penguins eat?\tSecondLife\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (ClubPenguin, sounds like, SecondLife) -> SecondLife (4765ms)\nWhat do penguins eat?\tConsumers\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Consumers, can also mail the books to, Penguin USA) -> Consumers (4783ms)\nWhat do penguins eat?\tkeep their season alive\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, needed a win to, keep their season alive) -> keep their season alive (4743ms)\nWhat do penguins eat?\ta win\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need, a win) -> a win (4811ms)\nWhat do penguins eat?\tbidding\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (bidding, is done, a penguin) -> bidding (4720ms)\nWhat do penguins eat?\ta place\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (The penguins, live in, a place) -> a place (4798ms)\nWhat do penguins eat?\tbandits\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins, made out like, bandits) -> bandits (4823ms)\nWhat do penguins eat?\tan animatronic dinosaur\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The baby penguin feet, are like, an animatronic dinosaur) -> an animatronic dinosaur (4830ms)\nWhat do penguins eat?\t14\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (14, can interact with, other ?penguins?) -> 14 (4743ms)\nWhat do penguins eat?\tDisney\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Disney, killed, Club Penguin) -> Disney (4835ms)\nWhat do penguins eat?\tan Apple\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (my Penguin, acted like, an Apple) -> an Apple (4840ms)\nWhat do penguins eat?\tVisitors Guests\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Visitors Guests, can visit, the penguins) -> Visitors Guests (4778ms)\nWhat do penguins eat?\tflipper\t-0.0\tWhat do penguins eat? -> $x: (penguin, have type of, $x) -> (Not all giant penguins, had the same type of, flipper) -> flipper (4833ms)\nWhat do penguins eat?\tchildren\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (children, can make, a penguin craft) -> children (4660ms)\nWhat do penguins eat?\ta disciplined 60 minutes\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, will need to play, a disciplined 60 minutes) -> a disciplined 60 minutes (4835ms)\nWhat do penguins eat?\thell\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, may look like, hell) -> hell (4802ms)\nWhat do penguins eat?\tThe Rangers\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (The Rangers, can stop, the Penguins) -> The Rangers (4823ms)\nWhat do penguins eat?\tice\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Adlie and emperor penguins, need, ice) -> ice (4835ms)\nWhat do penguins eat?\tantartica\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, antartica) -> antartica (4704ms)\nWhat do penguins eat?\tany bookstore\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (any bookstore, can also be purchased online from, Penguin) -> any bookstore (4660ms)\nWhat do penguins eat?\ta definite contender\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins, look like, a definite contender) -> a definite contender (4712ms)\nWhat do penguins eat?\tthe company\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguin, is like having, the company) -> the company (4827ms)\nWhat do penguins eat?\taloof , smart birds\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, seem like, aloof , smart birds) -> aloof , smart birds (4820ms)\nWhat do penguins eat?\tan ideal solution\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguin colonies, seemed like, an ideal solution) -> an ideal solution (4840ms)\nWhat do penguins eat?\tboat accidents\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (boat accidents, kill, Little Penguins) -> boat accidents (4802ms)\nWhat do penguins eat?\tLili\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Lili, can now summon, penguins) -> Lili (4712ms)\nWhat do penguins eat?\tdoor C\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (door C, can have, the penguin) -> door C (4704ms)\nWhat do penguins eat?\tdo\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, like to, do) -> do (4802ms)\nWhat do penguins eat?\tthe whole family\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the whole family, can swim with, the Penguins) -> the whole family (4687ms)\nWhat do penguins eat?\tthe old way\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, liked, the old way) -> the old way (4835ms)\nWhat do penguins eat?\twater\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, water) -> water (4838ms)\nWhat do penguins eat?\ta conventional torch\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguin, be carried like, a conventional torch) -> a conventional torch (4743ms)\nWhat do penguins eat?\tthe kernel\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguin, needs to load, the kernel) -> the kernel (4765ms)\nWhat do penguins eat?\tthe researchers\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the researchers, did, modern penguins) -> the researchers (4811ms)\nWhat do penguins eat?\twolf woods\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (wolf woods, do, the african penguins) -> wolf woods (4704ms)\nWhat do penguins eat?\tJason Statham\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Jason Statham, doing, the voice of Penguin) -> Jason Statham (4778ms)\nWhat do penguins eat?\ta team effort\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, needed, a team effort) -> a team effort (4802ms)\nWhat do penguins eat?\tno single explanation\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (no single explanation, can be given for, penguins) -> no single explanation (4704ms)\nWhat do penguins eat?\tone two days\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, looked like, one two days) -> one two days (4778ms)\nWhat do penguins eat?\tA:You\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (A:You, can get, cheap Pittsburgh Penguins Tickets) -> A:You (4840ms)\nWhat do penguins eat?\tPinky\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, sounds like, Pinky) -> Pinky (4820ms)\nWhat do penguins eat?\talive\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, needed a win to keep their season, alive) -> alive (4704ms)\nWhat do penguins eat?\tthe penguin rookeries and travelers\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the penguin rookeries and travelers, can see, the penguins) -> the penguin rookeries and travelers (4750ms)\nWhat do penguins eat?\tthe Galapagos Islands\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the Galapagos Islands) -> the Galapagos Islands (4798ms)\nWhat do penguins eat?\tsupplies\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, will need a number of, supplies) -> supplies (4823ms)\nWhat do penguins eat?\tthe distance\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Your penguin, needs to go, the distance) -> the distance (4750ms)\nWhat do penguins eat?\tstacks\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (stacks, did, the Penguin Classics) -> stacks (4793ms)\nWhat do penguins eat?\ta new arena\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need, a new arena) -> a new arena (4669ms)\nWhat do penguins eat?\tthe Ross Sea off Antarctica\t-0.0\tWhat do penguins eat? -> $x: (penguin, hunt, $x) -> (Adelie penguins, hunt on, the Ross Sea off Antarctica) -> the Ross Sea off Antarctica (4720ms)\nWhat do penguins eat?\tEach aviary\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Each aviary, can house up to approximately, 25 penguins) -> Each aviary (4838ms)\nWhat do penguins eat?\ta tuxedo\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (a tuxedo, can make one look a little like, a penguin) -> a tuxedo (4678ms)\nWhat do penguins eat?\ta burrow\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Some penguins, live in, a burrow) -> a burrow (4757ms)\nWhat do penguins eat?\ta gold nose\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Emperor Penguin, needs, a gold nose) -> a gold nose (4802ms)\nWhat do penguins eat?\tguests\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (guests, can catch, a special penguin talk) -> guests (4765ms)\nWhat do penguins eat?\tsomebody\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (somebody, can bring, a penguin) -> somebody (4807ms)\nWhat do penguins eat?\tmartinis\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (the penguins, drank, martinis) -> martinis (4783ms)\nWhat do penguins eat?\tthe Humboldt penguins\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (African penguins, look much like, the Humboldt penguins) -> the Humboldt penguins (4823ms)\nWhat do penguins eat?\tairfare\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguin, needs, airfare) -> airfare (4687ms)\nWhat do penguins eat?\tthe ship\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to turn, the ship) -> the ship (4660ms)\nWhat do penguins eat?\tthe the ice berg\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the the ice berg, can only carry, 50 penguins) -> the the ice berg (4772ms)\nWhat do penguins eat?\tHelp yeti\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Help yeti, kill as, many penguins) -> Help yeti (4750ms)\nWhat do penguins eat?\tthe Southern half\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, the Southern half) -> the Southern half (4678ms)\nWhat do penguins eat?\tarias\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (arias, does, that Penguin fit) -> arias (4750ms)\nWhat do penguins eat?\ta glass rinse\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (Kaiser Penguin, has a drink with, a glass rinse) -> a glass rinse (4757ms)\nWhat do penguins eat?\tthe seal\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (the seal, was killing, the penguin) -> the seal (4820ms)\nWhat do penguins eat?\tA polar bear\t-0.0\tWhat do penguins eat? -> $x: ($x, can eat, penguin) -> (A polar bear, can eat up, to 86 penguins) -> A polar bear (4720ms)\nWhat do penguins eat?\tdifferent ocean habitats\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, different ocean habitats) -> different ocean habitats (4838ms)\nWhat do penguins eat?\ta vacation\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (paranoid penguins, needs, a vacation) -> a vacation (4772ms)\nWhat do penguins eat?\tthe garden\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the garden, as do, live penguins) -> the garden (4793ms)\nWhat do penguins eat?\tMatt Cooke\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Matt Cooke, did this season with, the Penguins) -> Matt Cooke (4704ms)\nWhat do penguins eat?\ttravelers\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (travelers, can spot, penguins) -> travelers (4772ms)\nWhat do penguins eat?\tthe world?s\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguin, meets the needs of, the world?s) -> the world?s (4819ms)\nWhat do penguins eat?\tThe youngest\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (The youngest, wanted to do, a penguin) -> The youngest (4728ms)\nWhat do penguins eat?\tan avatar\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (an avatar, can be in, cartoon penguin) -> an avatar (4783ms)\nWhat do penguins eat?\tlittle blobs\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, have bodies like, little blobs) -> little blobs (4788ms)\nWhat do penguins eat?\tAntarctic krill\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed on, $x) -> (the Ad?lie penguin, is known to feed mainly on, Antarctic krill) -> Antarctic krill (4728ms)\nWhat do penguins eat?\tseven games\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, needed, seven games) -> seven games (4687ms)\nWhat do penguins eat?\tthe Wells Fargo Center\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need heading into, the Wells Fargo Center) -> the Wells Fargo Center (4798ms)\nWhat do penguins eat?\ttight-fitting wool sweaters\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (tight-fitting wool sweaters, can keep, the penguins) -> tight-fitting wool sweaters (4823ms)\nWhat do penguins eat?\ta name\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (our bedraggled little Adelie penguin, needed, a name) -> a name (4816ms)\nWhat do penguins eat?\ta duck\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (his penguin, looked more like, a duck) -> a duck (4704ms)\nWhat do penguins eat?\tThe Breakdown\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (The Breakdown, Do, the Funky Penguin) -> The Breakdown (4750ms)\nWhat do penguins eat?\ta sketch i\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (a sketch i, did, baby penguins) -> a sketch i (4772ms)\nWhat do penguins eat?\tthe human fishing industry\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (the human fishing industry, directly kills, the penguins) -> the human fishing industry (4778ms)\nWhat do penguins eat?\tthe care and attention\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Baby penguins, need, the care and attention) -> the care and attention (4757ms)\nWhat do penguins eat?\ta UFC fight\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, was more like, a UFC fight) -> a UFC fight (4838ms)\nWhat do penguins eat?\tlast week\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (last week, did, Penguin) -> last week (4816ms)\nWhat do penguins eat?\tvisitors\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (visitors, can feed, penguins) -> visitors (4840ms)\nWhat do penguins eat?\tmore rocks\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, need, more rocks) -> more rocks (4736ms)\nWhat do penguins eat?\tmonkeys\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (monkeys, kill the rest of, the penguins* Mat) -> monkeys (4765ms)\nWhat do penguins eat?\ta sweater\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (even penguins, need to put on, a sweater) -> a sweater (4788ms)\nWhat do penguins eat?\thim the most\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, needed, him the most) -> him the most (4816ms)\nWhat do penguins eat?\tthe NHL\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the NHL, can match, the Penguins depth) -> the NHL (4669ms)\nWhat do penguins eat?\tAfrica\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, Africa) -> Africa (4743ms)\nWhat do penguins eat?\tThe Flyers\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (The Flyers, got killed by, the Penguins) -> The Flyers (4798ms)\nWhat do penguins eat?\tNorth\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, North) -> North (4835ms)\nWhat do penguins eat?\tovertime\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Flyers and Penguins, needed, overtime) -> overtime (4833ms)\nWhat do penguins eat?\tarctic conditions\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (an arctic penguin, would need, arctic conditions) -> arctic conditions (4802ms)\nWhat do penguins eat?\ta rhyme\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguin Pocket Rhyming Dictionary, Need, a rhyme) -> a rhyme (4793ms)\nWhat do penguins eat?\ta bit\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (this Pocket Penguin, felt like, a bit) -> a bit (4679ms)\nWhat do penguins eat?\tBlue Chicken\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Blue Chicken, can be ordered from, Penguin Young Readers Group) -> Blue Chicken (4670ms)\nWhat do penguins eat?\tCuriosity\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Curiosity, killed, the Penguin) -> Curiosity (4835ms)\nWhat do penguins eat?\tGame 2\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to move on to, Game 2) -> Game 2 (4820ms)\nWhat do penguins eat?\teven 80 %\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (even 80 %, still does more for, the Penguins) -> even 80 % (4743ms)\nWhat do penguins eat?\tThe graphics\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (The graphics, were done using, Penguin) -> The graphics (4823ms)\nWhat do penguins eat?\tTheresa M. Evangelista\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Theresa M. Evangelista, does covers for, Penguin books) -> Theresa M. Evangelista (4735ms)\nWhat do penguins eat?\tparsons\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, look like, parsons) -> parsons (4772ms)\nWhat do penguins eat?\ta semi\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (a penguin egg, looks like, a semi) -> a semi (4833ms)\nWhat do penguins eat?\tthe man-made lake\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Some Adelie penguins, liked, the man-made lake) -> the man-made lake (4743ms)\nWhat do penguins eat?\tany holiday goer\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (any holiday goer, can see, beautiful penguins) -> any holiday goer (4807ms)\nWhat do penguins eat?\ta quarterback\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, need, a quarterback) -> a quarterback (4835ms)\nWhat do penguins eat?\tearth\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (earth, do, the Pittsburgh Penguins) -> earth (4765ms)\nWhat do penguins eat?\ta football\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, are basically shaped like, a football) -> a football (4823ms)\nWhat do penguins eat?\tFleury\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, needed, Fleury) -> Fleury (4750ms)\nWhat do penguins eat?\tplumage\t-0.0\tWhat do penguins eat? -> $x: (penguin, have type of, $x) -> (Penguins, have a different type of, plumage) -> plumage (4757ms)\nWhat do penguins eat?\ta thermostat\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Penguin, really needs, a thermostat) -> a thermostat (4757ms)\nWhat do penguins eat?\ta cute , cuddly penguin\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (a Penguin, does n?t like, a cute , cuddly penguin) -> a cute , cuddly penguin (4696ms)\nWhat do penguins eat?\tDespres\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Despres, has done for, the Penguins) -> Despres (4669ms)\nWhat do penguins eat?\ta walrus\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (a walrus, kills, a dyslexic penguin) -> a walrus (4811ms)\nWhat do penguins eat?\tthe floor\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the floor, ,did, the penguin drink) -> the floor (4687ms)\nWhat do penguins eat?\ta hug\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Mr. Glass Penguin, needs, a hug) -> a hug (4830ms)\nWhat do penguins eat?\tthe door\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the door, can just be, a penguin) -> the door (4728ms)\nWhat do penguins eat?\ta brand leader\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguin, behaves like, a brand leader) -> a brand leader (4728ms)\nWhat do penguins eat?\tfind a way\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need to, find a way) -> find a way (4696ms)\nWhat do penguins eat?\tPasturella\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Pasturella, has killed, penguins) -> Pasturella (4838ms)\nWhat do penguins eat?\tJ.G. Weller\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (J.G. Weller, do, a British penguin) -> J.G. Weller (4669ms)\nWhat do penguins eat?\ta ninja\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The penguin, should now look like, a ninja) -> a ninja (4811ms)\nWhat do penguins eat?\ta tale\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (a tale, do, penguins) -> a tale (4696ms)\nWhat do penguins eat?\tthe parties\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (the parties, did n?t settle ?, Penguin) -> the parties (4679ms)\nWhat do penguins eat?\ta torpedo\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, are shaped like, a torpedo) -> a torpedo (4811ms)\nWhat do penguins eat?\t18-20\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguin-chan, was like, 18-20) -> 18-20 (4679ms)\nWhat do penguins eat?\tOne seagull\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (One seagull, did have a go at, one penguin) -> One seagull (4669ms)\nWhat do penguins eat?\ta Steve MacIntyre\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, longer feel the need to have, a Steve MacIntyre) -> a Steve MacIntyre (4704ms)\nWhat do penguins eat?\tthe Northern Hemisphere\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live naturally in, the Northern Hemisphere) -> the Northern Hemisphere (4840ms)\nWhat do penguins eat?\tKids\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (Kids, can make, a little penguin friend) -> Kids (4833ms)\nWhat do penguins eat?\tgroups\t-0.0\tWhat do penguins eat? -> $x: (penguin, feed in, $x) -> (Penguins, feed in, groups) -> groups (4757ms)\nWhat do penguins eat?\tbird guano\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Adelie penguin guano, smells like, bird guano) -> bird guano (4820ms)\nWhat do penguins eat?\twarm water\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (penguins, to drink, warm water) -> warm water (4669ms)\nWhat do penguins eat?\tThe molt\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (The molt, can give, individual penguins) -> The molt (4793ms)\nWhat do penguins eat?\tto\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (to, does, the ownerPenguin) -> to (4827ms)\nWhat do penguins eat?\tthe rules\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (those penguins, need some education on, the rules) -> the rules (4696ms)\nWhat do penguins eat?\tnaked humans\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (those penguins, look a lot like, naked humans) -> naked humans (4835ms)\nWhat do penguins eat?\ttwo victories\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need, two victories) -> two victories (4807ms)\nWhat do penguins eat?\tan entitled , too cool\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, have acted like, an entitled , too cool) -> an entitled , too cool (4793ms)\nWhat do penguins eat?\ta completely different team\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, looked like, a completely different team) -> a completely different team (4743ms)\nWhat do penguins eat?\thardware\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (?Penguin Mark ?, is needed on, hardware) -> hardware (4823ms)\nWhat do penguins eat?\tFlyers\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (28946 Penguins, Come Apart like, Flyers) -> Flyers (4783ms)\nWhat do penguins eat?\ta beer\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (the penguin, drank, a beer) -> a beer (4720ms)\nWhat do penguins eat?\tcold climates\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in very, cold climates) -> cold climates (4788ms)\nWhat do penguins eat?\ta less-efficient penguin\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (a penguin, swam like, a less-efficient penguin) -> a less-efficient penguin (4833ms)\nWhat do penguins eat?\tmuch more\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (much more, do, the penguins) -> much more (4669ms)\nWhat do penguins eat?\tthe south and polar bears\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the south and polar bears) -> the south and polar bears (4807ms)\nWhat do penguins eat?\tice and snow\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (ice and snow, Do, the penguin shuffle) -> ice and snow (4750ms)\nWhat do penguins eat?\texample\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (example, did Noah find, penguins) -> example (4765ms)\nWhat do penguins eat?\tHogan\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (Hogan, did the same thing for, the Penguins) -> Hogan (4712ms)\nWhat do penguins eat?\tOne to four players\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (One to four players, can play, Penguins & Friends) -> One to four players (4696ms)\nWhat do penguins eat?\tWoW\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (WoW, can even be put together with, Club Penguin) -> WoW (4840ms)\nWhat do penguins eat?\tcold places\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguin, live in, cold places) -> cold places (4720ms)\nWhat do penguins eat?\tTable 52\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Table 52, did n?t even kill, the penguins) -> Table 52 (4758ms)\nWhat do penguins eat?\ta good squad\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins, actually looked like, a good squad) -> a good squad (4750ms)\nWhat do penguins eat?\tnuns\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (those penguins, look like, nuns) -> nuns (4823ms)\nWhat do penguins eat?\tTux\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (That penguin, looks a lot like, Tux) -> Tux (4816ms)\nWhat do penguins eat?\tfries\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (The penguins feet, look like, fries) -> fries (4728ms)\nWhat do penguins eat?\tthe floating ice\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (the floating ice, can hold at, most two penguins) -> the floating ice (4827ms)\nWhat do penguins eat?\tthe largest penguins\t-0.0\tWhat do penguins eat? -> $x: ($x, size be, penguin) -> (the largest penguins, was twice the size of, an Emperor penguin) -> the largest penguins (4712ms)\nWhat do penguins eat?\tpetabytes\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (Growing penguins, need, petabytes) -> petabytes (4704ms)\nWhat do penguins eat?\tthe wild\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the wild) -> the wild (4696ms)\nWhat do penguins eat?\tHuntress\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (Huntress, nearly kills, Penguin) -> Huntress (4712ms)\nWhat do penguins eat?\ta better performance\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, will need, a better performance) -> a better performance (4798ms)\nWhat do penguins eat?\t613 points\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (613 points, was done in, the Penguins) -> 613 points (4765ms)\nWhat do penguins eat?\tthe south pole\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, the south pole) -> the south pole (4811ms)\nWhat do penguins eat?\ta late goal\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, needed, a late goal) -> a late goal (4793ms)\nWhat do penguins eat?\ta swim after they eat\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, like, a swim after they eat) -> a swim after they eat (4823ms)\nWhat do penguins eat?\tcomical little persons\t-0.0\tWhat do penguins eat? -> $x: (penguin, like, $x) -> (penguins, seem more like, comical little persons) -> comical little persons (4820ms)\nWhat do penguins eat?\tmedical attention\t-0.0\tWhat do penguins eat? -> $x: (penguin, need, $x) -> (This penguin, needs, medical attention) -> medical attention (4811ms)\nWhat do penguins eat?\ta seal\t-0.0\tWhat do penguins eat? -> $x: (penguin, hunt, $x) -> (the little penguin, is hunted by, a seal) -> a seal (4811ms)\nWhat do penguins eat?\tPolar bears\t-0.0\tWhat do penguins eat? -> $x: ($x, can eat, penguin) -> (Polar bears, can eat, as many as 86 penguins) -> Polar bears (4840ms)\nWhat do penguins eat?\tconcert\t-0.0\tWhat do penguins eat? -> $x: (penguin, live in, $x) -> (Penguin Prison, live in, concert) -> concert (4816ms)\nWhat do penguins eat?\tCoke\t-0.0\tWhat do penguins eat? -> $x: (penguin, drink, $x) -> (a penguin, drinking, Coke) -> Coke (4788ms)\nWhat do penguins eat?\tfun songs\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (fun songs, do, a few penguin dances) -> fun songs (4833ms)\nWhat do penguins eat?\t67 people\t-0.0\tWhat do penguins eat? -> $x: ($x, kill, penguin) -> (67 people, were killed by, penguins) -> 67 people (4772ms)\nWhat do penguins eat?\tonly krissmonsta\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (only krissmonsta, can give orders to, the penguins) -> only krissmonsta (4712ms)\nWhat do penguins eat?\tThe whale population\t-0.0\tWhat do penguins eat? -> $x: ($x, do, penguin) -> (The whale population, so did, penguins) -> The whale population (4811ms)\nWhat do penguins eat?\tbirders\t-0.0\tWhat do penguins eat? -> $x: ($x, can, penguin) -> (birders, can spot, penguins) -> birders (4823ms)\nWhat do penguins eat?\tthe warmer summer season\t-1.9999973899231804E-12\tWhat do penguins eat? -> $x: (king penguin, do, $x) -> (the King penguins, do this during, the warmer summer season) -> the warmer summer season (4842ms)\nWhat do penguins eat?\tCamera crews\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, discover, penguin) -> (Camera crews, discovered, a colony of Adlie  penguins) -> Camera crews (4844ms)\nWhat do penguins eat?\tFairy Penguins\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, be type of, penguin) -> (Fairy Penguins, are the smallest type of, the penguin family) -> Fairy Penguins (4842ms)\nWhat do penguins eat?\tAdelie\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, be type of, penguin) -> (Adelie, is a type of, penguin) -> Adelie (4842ms)\nWhat do penguins eat?\tpublishing the best books\t-0.111111111111\tWhat do penguins eat? -> $x: (penguin, believe in, $x) -> (Penguin, believes in, publishing the best books) -> publishing the best books (4845ms)\nWhat do penguins eat?\tWasn?t Puffle Handler\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, discover, penguin) -> (Wasn?t Puffle Handler, first discovered in, Club Penguin) -> Wasn?t Puffle Handler (4845ms)\nWhat do penguins eat?\tTerry Jones\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, discover, penguin) -> (Terry Jones, discovered, a colony of penguins) -> Terry Jones (4845ms)\nWhat do penguins eat?\tthe Peninsula region\t-0.111111111111\tWhat do penguins eat? -> $x: (king penguin, live in, $x) -> (King penguins, live in, the Peninsula region) -> the Peninsula region (4844ms)\nWhat do penguins eat?\tFilm maker and writer\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, discover, penguin) -> (Film maker and writer, discovers, a colony of penguins) -> Film maker and writer (4844ms)\nWhat do penguins eat?\ta Bioteam\t-0.111111111111\tWhat do penguins eat? -> $x: (penguin, be example of, $x) -> (penguins, are a great example of, a Bioteam) -> a Bioteam (4844ms)\nWhat do penguins eat?\tA Kororaa\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, be type of, penguin) -> (A Kororaa, is a type of, penguin) -> A Kororaa (4842ms)\nWhat do penguins eat?\ta similar sound\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, be type of, penguin) -> (a similar sound, is a type of, penguin) -> a similar sound (4845ms)\nWhat do penguins eat?\tthe Bay\t-0.111111111111\tWhat do penguins eat? -> $x: (king penguin, live in, $x) -> (King Penguins, live in, the Bay) -> the Bay (4845ms)\nWhat do penguins eat?\tEdinburgh Zoo\t-0.111111111111\tWhat do penguins eat? -> $x: (king penguin, live in, $x) -> (a King Penguin, living in, Edinburgh Zoo) -> Edinburgh Zoo (4842ms)\nWhat do penguins eat?\tthe shores\t-0.111111111111\tWhat do penguins eat? -> $x: (king penguin, live in, $x) -> (King penguins, live in, the shores) -> the shores (4845ms)\nWhat do penguins eat?\tThe King Penguin\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, be type of, penguin) -> (The King Penguin, is the second largest type of, penguin) -> The King Penguin (4844ms)\nWhat do penguins eat?\tBonaire\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, discover, penguin) -> (Bonaire, had come to discover, The Lost Penguin) -> Bonaire (4845ms)\nWhat do penguins eat?\tChinstrap and Emperor\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, be type of, penguin) -> (Chinstrap and Emperor, are types of, penguins) -> Chinstrap and Emperor (4845ms)\nWhat do penguins eat?\tone celebrity couple\t-0.111111111111\tWhat do penguins eat? -> $x: (penguin, be example of, $x) -> (the Pittsburgh Penguins, are an example of, one celebrity couple) -> one celebrity couple (4844ms)\nWhat do penguins eat?\thockey failure\t-0.111111111111\tWhat do penguins eat? -> $x: (penguin, be example of, $x) -> (the Penguins, were a textbook example of, hockey failure) -> hockey failure (4845ms)\nWhat do penguins eat?\tMiss L\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, discover, penguin) -> (Miss L, has discovered the wonders of, Club Penguin) -> Miss L (4842ms)\nWhat do penguins eat?\tthe Emperor penguin\t-0.111111111111\tWhat do penguins eat? -> $x: (king penguin, like, $x) -> (The King penguin, looks somewhat like, the Emperor penguin) -> the Emperor penguin (4844ms)\nWhat do penguins eat?\tcompanies\t-0.111111111111\tWhat do penguins eat? -> $x: (penguin, be example of, $x) -> (Club Penguin, are both examples of, companies) -> companies (4842ms)\nWhat do penguins eat?\tTasmania\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, be habitat of, penguin) -> (Tasmania, is the habitat of, more than a million penguins) -> Tasmania (4842ms)\nWhat do penguins eat?\tmonogamy\t-0.111111111111\tWhat do penguins eat? -> $x: (penguin, be example of, $x) -> (penguins, are the really ideal example of, monogamy) -> monogamy (4845ms)\nWhat do penguins eat?\twriter Terry Jones\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, discover, penguin) -> (writer Terry Jones, discovered a colony of, penguins) -> writer Terry Jones (4842ms)\nWhat do penguins eat?\tthe beaches\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, be type of, penguin) -> (the beaches, as are four types of, penguins) -> the beaches (4845ms)\nWhat do penguins eat?\t1940s\t-0.111111111111\tWhat do penguins eat? -> $x: (penguin, be example of, $x) -> (The Penguin Hotel, is a shining example of, 1940s) -> 1940s (4845ms)\nWhat do penguins eat?\tThe book trade\t-0.111111111111\tWhat do penguins eat? -> $x: ($x, discover, penguin) -> (The book trade, has also discovered, the penguin programs) -> The book trade (4844ms)\nWhat do penguins eat?\tan emperor\t-0.111111111111\tWhat do penguins eat? -> $x: (king penguin, like, $x) -> (a king penguin, looks like, an emperor) -> an emperor (4844ms)\nWhat do penguins eat?\tthe tuna fish\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the tuna fish, ate, my penguin) -> the tuna fish (4845ms)\nWhat do penguins eat?\tthe whale\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the whale, eats, the penguin) -> the whale (4846ms)\nWhat do penguins eat?\ta Leopard seal\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (a Leopard seal, eating, a penguin) -> a Leopard seal (4846ms)\nWhat do penguins eat?\ta leopard seal\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (a leopard seal, eat, fourteen young penguins) -> a leopard seal (4846ms)\nWhat do penguins eat?\tLeopards Panthera\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (Leopards Panthera, pardus have eaten, adult penguins) -> Leopards Panthera (4847ms)\nWhat do penguins eat?\tpolar\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (polar, bears don?t eat, penguins) -> polar (4848ms)\nWhat do penguins eat?\tan army of turtle\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (an army of turtle, eating, Penguin Overlords) -> an army of turtle (4848ms)\nWhat do penguins eat?\tThe polar bears\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (The polar bears, ate, the penguin) -> The polar bears (4848ms)\nWhat do penguins eat?\tFur seals\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (Fur seals, sometimes eat, penguins) -> Fur seals (4847ms)\nWhat do penguins eat?\tfarrets\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (farrets, eat, fairy penguins) -> farrets (4848ms)\nWhat do penguins eat?\tperson\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (person, eat, 4 or 5 penguins) -> person (4848ms)\nWhat do penguins eat?\tThe leopard seals\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (The leopard seals, sometimes eat, penguins) -> The leopard seals (4848ms)\nWhat do penguins eat?\tOrcas\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (Orcas, eat, penguins) -> Orcas (4848ms)\nWhat do penguins eat?\tthe seals\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the seals, eat, the penguins) -> the seals (4847ms)\nWhat do penguins eat?\tthe shark\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the shark, ate, the penguin) -> the shark (4848ms)\nWhat do penguins eat?\tlarger species\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (larger species, eat, penguins) -> larger species (4846ms)\nWhat do penguins eat?\tThe leopard seal\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (The leopard seal, will also eat, penguins) -> The leopard seal (4847ms)\nWhat do penguins eat?\tzombie pigs\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (zombie pigs, attempted to eat, the penguin) -> zombie pigs (4846ms)\nWhat do penguins eat?\tthe leopard seal\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the leopard seal, ate, a mommy penguin) -> the leopard seal (4846ms)\nWhat do penguins eat?\tthe humans\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the humans, had suddenly decided to eat, Penguin) -> the humans (4848ms)\nWhat do penguins eat?\tthe crew\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the crew, were forced to eat, some 14,000 penguins) -> the crew (4847ms)\nWhat do penguins eat?\tthe head\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the head, is the main food eaten by, penguins) -> the head (4847ms)\nWhat do penguins eat?\tdont  Polar Bears\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (dont  Polar Bears, eat, penguins) -> dont  Polar Bears (4847ms)\nWhat do penguins eat?\tdon?t polar bears\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (don?t polar bears, eat, penguins) -> don?t polar bears (4849ms)\nWhat do penguins eat?\tA: Paige\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (A: Paige, eats, penguin meat) -> A: Paige (4846ms)\nWhat do penguins eat?\tpolar bears\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (polar bears, eat, Penguins) -> polar bears (4848ms)\nWhat do penguins eat?\tthe killer whale\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (the killer whale, eats, penguins and seals) -> the killer whale (4847ms)\nWhat do penguins eat?\t? But\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (? But, eat, the penguin) -> ? But (4846ms)\nWhat do penguins eat?\tn't polar bears\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (n't polar bears, eat, penguins) -> n't polar bears (4847ms)\nWhat do penguins eat?\tWylie\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (Wylie, even ate, a dead penguin) -> Wylie (4848ms)\nWhat do penguins eat?\tPikes\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (Pikes, ate at, the Penguin) -> Pikes (4847ms)\nWhat do penguins eat?\tMole Snakes Pseudapsis cana\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (Mole Snakes Pseudapsis cana, eat, penguin eggs) -> Mole Snakes Pseudapsis cana (4847ms)\nWhat do penguins eat?\tTiger\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (Tiger, eats, Penguin) -> Tiger (4846ms)\nWhat do penguins eat?\tskuas\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (skuas, is to eat, penguin chicks) -> skuas (4846ms)\nWhat do penguins eat?\tdont polar bears\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (dont polar bears, eat, penguins) -> dont polar bears (4846ms)\nWhat do penguins eat?\tkiller whales\t-0.111111111112\tWhat do penguins eat? -> $x: ($x, eat, penguin) -> (killer whales, eat, the penguins) -> killer whales (4848ms)\nWhat do penguins eat?\tprevious studies\t-0.111111111114\tWhat do penguins eat? -> $x: (emperor penguin, do, $x) -> (many emperor penguins, did, previous studies) -> previous studies (4849ms)\nWhat do penguins eat?\tthe city\t-0.222222222222\tWhat do penguins eat? -> $x: ($x, can, yellow eyed penguin) -> (the city, can include tours of, Yellow Eyed Penguin Reserve) -> the city (4849ms)\nHow many non-permanent members are in the Security Council?\tTurkey\t0.222222222223\tHow many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Turkey, is a non-permanent member of, the Security Council) -> Turkey (614ms)\nHow many non-permanent members are in the Security Council?\tAustria\t0.222222222223\tHow many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Austria, is a non-permanent member of, the UN Security Council) -> Austria (614ms)\nHow many non-permanent members are in the Security Council?\tItaly\t0.222222222223\tHow many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Italy, is a non-permanent member of, the UN Security Council) -> Italy (614ms)\nHow many non-permanent members are in the Security Council?\tsanctions\t0.222222222223\tHow many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (sanctions, is a non-permanent member of, the UN Security Council) -> sanctions (614ms)\nHow many non-permanent members are in the Security Council?\tTanzania\t0.222222222223\tHow many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Tanzania, was a non-permanent member of, the UN Security Council) -> Tanzania (614ms)\nHow many non-permanent members are in the Security Council?\tColombia\t0.222222222223\tHow many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Colombia, is a non-permanent member of, the UN Security Council) -> Colombia (614ms)\nHow many non-permanent members are in the Security Council?\tIndia\t0.222222222223\tHow many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (India, is a non-permanent member of, the UN Security Council) -> India (614ms)\nWhat is Ursa Major?\tFanzine\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Fanzine, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Magazine) -> Fanzine (1549ms)\nWhat is Ursa Major?\tthe seven stars\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (the seven stars, contained in, Ursa Major) -> the seven stars (1570ms)\nWhat is Ursa Major?\tgalaxy M82\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (galaxy M82, is in, the Great Bear constellation Ursa Major) -> galaxy M82 (1678ms)\nWhat is Ursa Major?\tthe galaxy\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (the galaxy, lies in, the constellation Ursa Major) -> the galaxy (1296ms)\nWhat is Ursa Major?\tM82 These Galaxies\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (M82 These Galaxies, are located in, Ursa Major) -> M82 These Galaxies (1270ms)\nWhat is Ursa Major?\ta spiral galaxy\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (a spiral galaxy, located in, Ursa Major) -> a spiral galaxy (1520ms)\nWhat is Ursa Major?\tShort story\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Short story, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Short Fiction) -> Short story (1490ms)\nWhat is Ursa Major?\tMS 81\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (MS 81, is being positioned in, the Ursa Major constellation) -> MS 81 (1549ms)\nWhat is Ursa Major?\tthe city\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (the city, is the brightest star in, the constellation Ursa Major) -> the city (1570ms)\nWhat is Ursa Major?\tFilm\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Film, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Motion Picture) -> Film (1549ms)\nWhat is Ursa Major?\tThe Big Dipper\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (The Big Dipper, is in, the constellation Ursa Major) -> The Big Dipper (1678ms)\nWhat is Ursa Major?\tLiterature\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Literature, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Other Literary Work) -> Literature (1678ms)\nWhat is Ursa Major?\tExtrasolar Planets\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Extrasolar Planets, discovered in, ursa major) -> Extrasolar Planets (1549ms)\nWhat is Ursa Major?\tNGC4051\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (NGC4051, is a spiral galaxy in, the constellation Ursa Major) -> NGC4051 (1678ms)\nWhat is Ursa Major?\tComic strip\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Comic strip, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Comic Strip) -> Comic strip (1296ms)\nWhat is Ursa Major?\tThe comet\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (The comet, was traveling in, the Ursa Major constellation) -> The comet (1520ms)\nWhat is Ursa Major?\tSpeculative fiction\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Speculative fiction, Books In This Genre, Rockets in Ursa Major) -> Speculative fiction (1520ms)\nWhat is Ursa Major?\tMessier 101\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Messier 101, is located in, the constellation Ursa Major) -> Messier 101 (1490ms)\nWhat is Ursa Major?\tVisual arts\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Visual arts, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Published Illustration) -> Visual arts (1550ms)\nWhat is Ursa Major?\tgalaxies\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (galaxies, located in, Ursa major) -> galaxies (1570ms)\nWhat is Ursa Major?\tM81\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (M81, lies in, the constellation Ursa Major) -> M81 (1271ms)\nWhat is Ursa Major?\tFiction\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Fiction, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Other Literary Work) -> Fiction (1549ms)\nWhat is Ursa Major?\t47 Ursae Majoris\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (47 Ursae Majoris, is in, the constellation Ursa Major) -> 47 Ursae Majoris (1490ms)\nWhat is Ursa Major?\tComic book\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Comic book, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Dramatic Short Work or Series) -> Comic book (1520ms)\nWhat is Ursa Major?\tThe galaxy\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (The galaxy, is located in, the constellation Ursa Major) -> The galaxy (1520ms)\nWhat is Ursa Major?\tIllustration\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Illustration, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Published Illustration) -> Illustration (1678ms)\nWhat is Ursa Major?\ta planetary nebula\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (a planetary nebula, located in, Ursa Major) -> a planetary nebula (1270ms)\nWhat is Ursa Major?\tRob\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Rob, was bouncing around in, Virgo/Ursa Major) -> Rob (1549ms)\nWhat is Ursa Major?\tAnthropomorphic Arts\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Anthropomorphic Arts, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Other Literary Work) -> Anthropomorphic Arts (1570ms)\nWhat is Ursa Major?\tHeaven\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Heaven, lived in, the constellation Ursa Major) -> Heaven (1270ms)\nWhat is Ursa Major?\tPeriodical literature\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Periodical literature, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Magazine) -> Periodical literature (1271ms)\nWhat is Ursa Major?\tThe system\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (The system, is in, the constellation Ursa Major) -> The system (1491ms)\nWhat is Ursa Major?\tan irregular galaxy\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (an irregular galaxy, located in, the constellation of Ursa Major) -> an irregular galaxy (1678ms)\nWhat is Ursa Major?\tM101\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (M101, is found in, the Ursa Major constellation) -> M101 (1570ms)\nWhat is Ursa Major?\tComet NEAT\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Comet NEAT, will be in, URSA MAJOR) -> Comet NEAT (1570ms)\nWhat is Ursa Major?\tNovel\t0.333333333333\tWhat is Ursa Major? -> $x: ($x, in, ursa major) -> (Novel, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Novel) -> Novel (1520ms)\nWhat is Ursa Major?\tthe Cherokee\t0.22222222222200003\tWhat is Ursa Major? -> $x: (ursa major, do, $x) -> (Ursa Major, as do, the Cherokee) -> the Cherokee (1678ms)\nWhat is Ursa Major?\texcellence\t0.22222222222100002\tWhat is Ursa Major? -> $x: (ursa major, be for, $x) -> (the Ursa Major Awards, are presented annually for, excellence) -> excellence (1694ms)\nWhat is Ursa Major?\tone week\t0.22222222222100002\tWhat is Ursa Major? -> $x: ($x, do, ursa major) -> (one week, left to do so on, the Ursa Major Awards website) -> one week (1694ms)\nWhat is Ursa Major?\tvoting\t0.22222222222100002\tWhat is Ursa Major? -> $x: (ursa major, be for, $x) -> (The Ursa Major Awards, are now open for, voting) -> voting (1694ms)\nWhat is Ursa Major?\tFloex\t0.22222222222100002\tWhat is Ursa Major? -> $x: ($x, produce, ursa major) -> (Floex, Tracks produced, Ursa Major) -> Floex (1694ms)\nWhat is Ursa Major?\t20 seconds\t0.22222222222100002\tWhat is Ursa Major? -> $x: (ursa major, be for, $x) -> (URSA Major, was seen for, 20 seconds) -> 20 seconds (1694ms)\nWhat is Ursa Major?\tJohn Little\t0.22222222222100002\tWhat is Ursa Major? -> $x: (ursa major, be for, $x) -> (Ursa Major, is a departure for, John Little) -> John Little (1694ms)\nWhat is Ursa Major?\t2008\t0.22222222222100002\tWhat is Ursa Major? -> $x: (ursa major, be for, $x) -> (the Ursa Major nominations, are open for, 2008) -> 2008 (1694ms)\nWhat is Ursa Major?\tcubs\t0.11111111111100003\tWhat is Ursa Major? -> $x: ($x, refer, ursa major) -> (cubs, refers to, the constellation Ursa Major) -> cubs (1694ms)\nWhat is Ursa Major?\tBill Mantlo\t0.11111111111100003\tWhat is Ursa Major? -> $x: ($x, create, ursa major) -> (Bill Mantlo, Fictional Characters Created, Ursa Major) -> Bill Mantlo (1712ms)\nWhat is Ursa Major?\tSal Buscema\t0.11111111111100003\tWhat is Ursa Major? -> $x: ($x, create, ursa major) -> (Sal Buscema, Fictional Characters Created, Ursa Major) -> Sal Buscema (1712ms)\nWhat is Ursa Major?\ta clear night\t0.11111111111100003\tWhat is Ursa Major? -> $x: ($x, found, ursa major) -> (a clear night, find, the constellation Ursa Major) -> a clear night (1712ms)\nWhat is Ursa Major?\tAmelia\t0.11111111111100003\tWhat is Ursa Major? -> $x: ($x, refer, ursa major) -> (Amelia, also refers to, Ursa Major) -> Amelia (1712ms)\nWhat is Ursa Major?\tIroquois legend\t0.11111111111100003\tWhat is Ursa Major? -> $x: ($x, refer, ursa major) -> (Iroquois legend, also refers to, Ursa Major) -> Iroquois legend (1712ms)\nWhat is Ursa Major?\tCancer ]\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Cancer ], is, Ursa Major) -> Cancer ] (1746ms)\nWhat is Ursa Major?\tone star\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (one star, was a member of, the Ursa Major) -> one star (1746ms)\nWhat is Ursa Major?\tcourse\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (course, are, Ursa Major) -> course (1880ms)\nWhat is Ursa Major?\tthe lion\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the lion, is, Ursa Major) -> the lion (1885ms)\nWhat is Ursa Major?\tVermont ?We\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Vermont ?We, are, Ursa Major) -> Vermont ?We (1746ms)\nWhat is Ursa Major?\tCygnus\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Cygnus, is above, Ursa Major) -> Cygnus (1881ms)\nWhat is Ursa Major?\tthe teddy bear\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the teddy bear, is, Ursa Major) -> the teddy bear (1887ms)\nWhat is Ursa Major?\tThe big dipper\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (The big dipper, is part of, the Ursa Major constellation) -> The big dipper (1883ms)\nWhat is Ursa Major?\tthe naked eye\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the naked eye, were, the bears Ursa Major) -> the naked eye (1885ms)\nWhat is Ursa Major?\tThuban\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Thuban, is Alioth of, Ursa Major) -> Thuban (1883ms)\nWhat is Ursa Major?\tthe ox thigh constellation M?htyw\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the ox thigh constellation M?htyw, was, Ursa Major) -> the ox thigh constellation M?htyw (1746ms)\nWhat is Ursa Major?\tthe brightest stars\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the brightest stars, is somewhat similar to, Ursa Major) -> the brightest stars (1885ms)\nWhat is Ursa Major?\tdancing\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (dancing, was connected with, Ursa Major) -> dancing (1881ms)\nWhat is Ursa Major?\tLeo\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Leo, is, Ursa Major) -> Leo (1887ms)\nWhat is Ursa Major?\tExamples\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Examples, are, Ursa Major) -> Examples (1800ms)\nWhat is Ursa Major?\tthe first cycle\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the first cycle, were, Ursa Major) -> the first cycle (1800ms)\nWhat is Ursa Major?\tconstellations\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (constellations, is depicted, either opposite Ursa Major) -> constellations (1885ms)\nWhat is Ursa Major?\tTruck\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Truck, is operating under, the name Ursa Major) -> Truck (1883ms)\nWhat is Ursa Major?\tUrsa Minor\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be to, ursa major) -> (Ursa Minor, is to, Ursa Major) -> Ursa Minor (1889ms)\nWhat is Ursa Major?\tover\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (over, is, Ursa Major) -> over (1883ms)\nWhat is Ursa Major?\tPSP\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (PSP, are the stars of, Ursa Major) -> PSP (1746ms)\nWhat is Ursa Major?\tthe northern sky\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the northern sky, is, the constellation Ursa Major) -> the northern sky (1887ms)\nWhat is Ursa Major?\tThe radio source\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (The radio source, was, first called Ursa Major) -> The radio source (1889ms)\nWhat is Ursa Major?\tArtemis\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Artemis, was celebrated as, Ursa Major) -> Artemis (1887ms)\nWhat is Ursa Major?\tthe most prominent constellations\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the most prominent constellations, would be, Ursa Major) -> the most prominent constellations (1883ms)\nWhat is Ursa Major?\tthe 2:00 p.m.\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the 2:00 p.m., Are, the Ursa Major Awards) -> the 2:00 p.m. (1886ms)\nWhat is Ursa Major?\tLibra\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Libra, is, Ursa Major) -> Libra (1889ms)\nWhat is Ursa Major?\tthe Big Dipper\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Big Dipper, is a part of, Ursa Major) -> the Big Dipper (1889ms)\nWhat is Ursa Major?\tthe ?Big Dipper\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the ?Big Dipper, is also known as, Ursa Major) -> the ?Big Dipper (1880ms)\nWhat is Ursa Major?\tPolaris\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Polaris, are, Ursa Major) -> Polaris (1885ms)\nWhat is Ursa Major?\tCancer\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Cancer, is, URSA MAJOR) -> Cancer (1886ms)\nWhat is Ursa Major?\tthe two most obvious\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the two most obvious, are probably, Ursa Major) -> the two most obvious (1889ms)\nWhat is Ursa Major?\t41 Lyn\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (41 Lyn, is part of, Ursa Major) -> 41 Lyn (1883ms)\nWhat is Ursa Major?\tthe left\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the left, are the stars of, Ursa Major) -> the left (1889ms)\nWhat is Ursa Major?\t?Kevin & Kell ?\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (?Kevin & Kell ?, was given, the Ursa Major Award) -> ?Kevin & Kell ? (1885ms)\nWhat is Ursa Major?\tthe Most noticeable\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Most noticeable, are the stars of, Ursa Major) -> the Most noticeable (1889ms)\nWhat is Ursa Major?\tThe Big Dip\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (The Big Dip, is actually part of, the constellation Ursa Major) -> The Big Dip (1800ms)\nWhat is Ursa Major?\tthe northern horizon\t0.11111111111000002\tWhat is Ursa Major? -> $x: (ursa major, be about, $x) -> (Ursa Major, can be seen somewhere about, the northern horizon) -> the northern horizon (1885ms)\nWhat is Ursa Major?\tThe full constellation\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (The full constellation, actually is, Ursa Major) -> The full constellation (1883ms)\nWhat is Ursa Major?\tthe masque\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the masque, is, Ursa Major) -> the masque (1883ms)\nWhat is Ursa Major?\tThe constellation containing IC 2574\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (The constellation containing IC 2574, is, Ursa Major) -> The constellation containing IC 2574 (1885ms)\nWhat is Ursa Major?\tHigh above Leo\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (High above Leo, is, the constellation Ursa Major) -> High above Leo (1746ms)\nWhat is Ursa Major?\tTrixie\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Trixie, is, the Ursa Major) -> Trixie (1885ms)\nWhat is Ursa Major?\tthe Bear\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Bear, is the constellation of, Ursa Major) -> the Bear (1883ms)\nWhat is Ursa Major?\tthe Black Thunder mine\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Black Thunder mine, is, ?Ursa Major?) -> the Black Thunder mine (1883ms)\nWhat is Ursa Major?\tbattle\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (battle, was between, Ursa Major and Andromeda) -> battle (1887ms)\nWhat is Ursa Major?\tthe beautiful Goddess Artemis\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the beautiful Goddess Artemis, is, Ursa Major) -> the beautiful Goddess Artemis (1800ms)\nWhat is Ursa Major?\tM?htyw\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (M?htyw, is, Ursa Major) -> M?htyw (1712ms)\nWhat is Ursa Major?\t10 * children\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (10 * children, must be accompanied by, adult Ursa Major-- Star) -> 10 * children (1800ms)\nWhat is Ursa Major?\tThe official name\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (The official name, is, Ursa Major) -> The official name (1881ms)\nWhat is Ursa Major?\tthe stellar constellations\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the stellar constellations, is, Ursa Major) -> the stellar constellations (1889ms)\nWhat is Ursa Major?\tthe constellation\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the constellation, is, Ursa Major) -> the constellation (1883ms)\nWhat is Ursa Major?\tthe horizon\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the horizon, will be, Ursa Major) -> the horizon (1800ms)\nWhat is Ursa Major?\tThe hounds\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (The hounds, are pursuing, Ursa Major) -> The hounds (1881ms)\nWhat is Ursa Major?\tthe photo\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the photo, is named, Ursa Major) -> the photo (1883ms)\nWhat is Ursa Major?\tthe northeast\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the northeast, is, Ursa Major) -> the northeast (1887ms)\nWhat is Ursa Major?\tthe Plough\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Plough, is even more widely known as, Ursa Major) -> the Plough (1887ms)\nWhat is Ursa Major?\tthe zodiac\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the zodiac, is, Ursa Major) -> the zodiac (1889ms)\nWhat is Ursa Major?\tBootes\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (Bootes, is next to, Ursa Major) -> Bootes (1887ms)\nWhat is Ursa Major?\tthe video image\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (the video image, is, Ursa Major) -> the video image (1887ms)\nWhat is Ursa Major?\tFirst Woman\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (First Woman, were, Ursa Major) -> First Woman (1880ms)\nWhat is Ursa Major?\tThe nearest open cluster\t0.11111111111000002\tWhat is Ursa Major? -> $x: ($x, be be, ursa major) -> (The nearest open cluster, is, the Ursa Major cluster) -> The nearest open cluster (1883ms)\nWhat is Ursa Major?\tMarvel Universe\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, Appears In These Fictional Universes, Marvel Universe) -> Marvel Universe (1891ms)\nWhat is Ursa Major?\tAuthorities Concept Scheme\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (1892ms)\nWhat is Ursa Major?\tthe center\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, is rising in, the center) -> the center (1890ms)\nWhat is Ursa Major?\tglorious brightness overhead\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, circled in, glorious brightness overhead) -> glorious brightness overhead (1890ms)\nWhat is Ursa Major?\tGeographic Names Concept Scheme\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (1890ms)\nWhat is Ursa Major?\tRegulus\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, was in, Regulus) -> Regulus (1892ms)\nWhat is Ursa Major?\tliterature and art\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, has featured in, literature and art) -> literature and art (1891ms)\nWhat is Ursa Major?\tthe North\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, is high in, the North) -> the North (1889ms)\nWhat is Ursa Major?\tThe negative attention\t-0.11111111111099997\tWhat is Ursa Major? -> $x: ($x, get, ursa major) -> (The negative attention, had gotten a lot worse after, Ursa Major) -> The negative attention (1891ms)\nWhat is Ursa Major?\tthe fall\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (the constellation Ursa Major, sets in, the fall) -> the fall (1890ms)\nWhat is Ursa Major?\tbinoculars\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, are very possible to see in, binoculars) -> binoculars (1890ms)\nWhat is Ursa Major?\taccordance\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Cygnus and Ursa Major, is quite in, accordance) -> accordance (1892ms)\nWhat is Ursa Major?\t1974\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, was adopted in, 1974) -> 1974 (1890ms)\nWhat is Ursa Major?\tlate degrees\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, were in, late degrees) -> late degrees (1891ms)\nWhat is Ursa Major?\tJanuary\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (the next Ursa Major Awards, open in, January) -> January (1891ms)\nWhat is Ursa Major?\tthe northern hemisphere\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, can be seen in, the northern hemisphere) -> the northern hemisphere (1890ms)\nWhat is Ursa Major?\tthe sky\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, is low in, the sky) -> the sky (1892ms)\nWhat is Ursa Major?\ttwo months\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (the Ursa Major Awards, closes in, two months) -> two months (1890ms)\nWhat is Ursa Major?\tthe north\t-0.11111111111099997\tWhat is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, is almost overhead in, the north) -> the north (1892ms)\nWhat is Ursa Major?\t28 years\t-0.666666666667\tWhat is Ursa Major? -> $x: (ursa major, be have, $x) -> (parents Ursa Major, would have been, 28 years) -> 28 years (1894ms)\nWhat is peyote?\tThe pendant\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The pendant, is done in, peyote stitch) -> The pendant (1056ms)\nWhat is peyote?\tThe beadwork\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The beadwork, is done in Even, Count Tubular Peyote Stitch) -> The beadwork (1056ms)\nWhat is peyote?\tThe flowers and leaves\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The flowers and leaves, are done in, peyote stitch) -> The flowers and leaves (1533ms)\nWhat is peyote?\tThe self-toggle\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The self-toggle, is beaded in, peyote stitch) -> The self-toggle (1373ms)\nWhat is peyote?\tCastaneda\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Castaneda, was specifically interested in, peyote) -> Castaneda (1056ms)\nWhat is peyote?\tfull article Feds\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (full article Feds, may weigh in on, peyote case) -> full article Feds (935ms)\nWhat is peyote?\tbracelets\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (bracelets, are done in, Odd Count Flat Peyote) -> bracelets (1373ms)\nWhat is peyote?\tClasses\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Classes, offered in, peyote) -> Classes (935ms)\nWhat is peyote?\tNative Americans\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Native Americans, are involved in, the peyote cult) -> Native Americans (1056ms)\nWhat is peyote?\tthe Catholic church\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the Catholic church, found in, peyote) -> the Catholic church (996ms)\nWhat is peyote?\tAmulet Bags\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Amulet Bags, are done in, an Even count Tubular Peyote) -> Amulet Bags (1574ms)\nWhat is peyote?\tThe mescaline\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The mescaline, is a substance contained in, peyote) -> The mescaline (935ms)\nWhat is peyote?\tmescaline\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (mescaline, was the active chemical in, the peyote cactus) -> mescaline (995ms)\nWhat is peyote?\tthe hippie\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the hippie, was in, a comatose peyote stare) -> the hippie (1056ms)\nWhat is peyote?\tThe ends\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The ends, have been handbeaded in, peyote stitch) -> The ends (935ms)\nWhat is peyote?\tplants\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (plants, used in, the peyote ceremony) -> plants (1533ms)\nWhat is peyote?\tthe Native Americans\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the Native Americans, believe in using, Peyote) -> the Native Americans (1373ms)\nWhat is peyote?\tThe end caps\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The end caps, are worked in, peyote stitch) -> The end caps (1373ms)\nWhat is peyote?\ta psychedelic phenethylamine\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (a psychedelic phenethylamine, found in, peyote) -> a psychedelic phenethylamine (1574ms)\nWhat is peyote?\tBeauty\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Beauty, is found in, the all-night peyote ceremonies) -> Beauty (1373ms)\nWhat is peyote?\tthe alkaloid\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the alkaloid, found in, peyote) -> the alkaloid (1533ms)\nWhat is peyote?\tPatterns\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Patterns, are worked in Even, Count Tubular Peyote Stitch) -> Patterns (996ms)\nWhat is peyote?\tEaster Egg earrings\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Easter Egg earrings, are weaved in, flat vertical peyote) -> Easter Egg earrings (1574ms)\nWhat is peyote?\tMescaline\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Mescaline, is found in, the Peyote Cacti) -> Mescaline (1056ms)\nWhat is peyote?\tthe hallucinogen\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the hallucinogen, found in, peyote) -> the hallucinogen (935ms)\nWhat is peyote?\tThe pawprint\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The pawprint, was done in, two-drop peyote stitch) -> The pawprint (1373ms)\nWhat is peyote?\tThe beadwork set\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The beadwork set, is done in, Peyote or Comanche beadwork) -> The beadwork set (1534ms)\nWhat is peyote?\tStudents\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (Students, must be proficient in, Peyote stitch) -> Students (1056ms)\nWhat is peyote?\tThe beaded bail\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The beaded bail, was crafted in, peyote) -> The beaded bail (1533ms)\nWhat is peyote?\tthe psychedelic compound\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the psychedelic compound, found in, the peyote cactus) -> the psychedelic compound (1373ms)\nWhat is peyote?\tThe amulet bag\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The amulet bag, is done in, a peyote stitch) -> The amulet bag (1373ms)\nWhat is peyote?\tThe N-acetyl analogue\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The N-acetyl analogue, has been found in, the peyote plant) -> The N-acetyl analogue (1533ms)\nWhat is peyote?\ta psychoactive compound\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (a psychoactive compound, found in, peyote cactus) -> a psychoactive compound (1534ms)\nWhat is peyote?\ta hallucinogen\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (a hallucinogen, found in, peyote) -> a hallucinogen (1574ms)\nWhat is peyote?\tthe mescaline\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the mescaline, found in, peyote) -> the mescaline (996ms)\nWhat is peyote?\tthe Native American Church right\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the Native American Church right, believe in using, Peyote) -> the Native American Church right (996ms)\nWhat is peyote?\tThe strap\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (The strap, is done in, peyote stitch) -> The strap (995ms)\nWhat is peyote?\tthe active chemical\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (the active chemical, found in, the Peyote cactus) -> the active chemical (935ms)\nWhat is peyote?\tan Easter Egg\t-0.0\tWhat is peyote? -> $x: ($x, in, peyote) -> (an Easter Egg, is weaved in, flat vertical peyote) -> an Easter Egg (1533ms)\nWhat is peyote?\ta ritual setting\t-0.111111111111\tWhat is peyote? -> $x: (peyote, do, $x) -> (peyote, is done in, a ritual setting) -> a ritual setting (1574ms)\nWhat is peyote?\tthe manners\t-0.111111111111\tWhat is peyote? -> $x: ($x, describe, peyote) -> (the manners, described for, peyote) -> the manners (1574ms)\nWhat is peyote?\tan outstanding job\t-0.111111111111\tWhat is peyote? -> $x: (peyote, do, $x) -> (Los Peyotes, truly do, an outstanding job) -> an outstanding job (1574ms)\nWhat is peyote?\tvomitting\t-0.111111111111\tWhat is peyote? -> $x: (peyote, do, $x) -> (Peyote, does does cause, vomitting) -> vomitting (1574ms)\nWhat is peyote?\tthe switchplate covers\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (Odd Count Flat Peyote, is used for, the switchplate covers) -> the switchplate covers (2047ms)\nWhat is peyote?\tBeadwork\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (Beadwork, do include, Peyote Beadwork Designs) -> Beadwork (1889ms)\nWhat is peyote?\tDr. Hoffman\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (Dr. Hoffman, was doing a lot of, peyote) -> Dr. Hoffman (2047ms)\nWhat is peyote?\tuse\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (the peyote, is intended for, use) -> use (1934ms)\nWhat is peyote?\ta six bead start\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (My flat round peyote graph, is for, a six bead start) -> a six bead start (1934ms)\nWhat is peyote?\tNancy\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (Nancy, does, peyote) -> Nancy (1889ms)\nWhat is peyote?\tthousands\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (Peyote, has been used for, thousands) -> thousands (2047ms)\nWhat is peyote?\tsocial purposes\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (peyote, may now be used for, social purposes) -> social purposes (1889ms)\nWhat is peyote?\ta long time\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (The peyote cactus, has been used for, a long time) -> a long time (1785ms)\nWhat is peyote?\tNAC\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (peyote, can be legally harvested for, NAC) -> NAC (2047ms)\nWhat is peyote?\tthe Native American Church\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (peyote, is legal for, the Native American Church) -> the Native American Church (1837ms)\nWhat is peyote?\teach person\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (Peyote, is optional for, each person) -> each person (2047ms)\nWhat is peyote?\tOregon\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (Oregon, does prohibit, the religious use of peyote) -> Oregon (1785ms)\nWhat is peyote?\t10,000 years\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (Peyote, has been used for over, 10,000 years) -> 10,000 years (2047ms)\nWhat is peyote?\trel=shortlink\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (rel=shortlink, Keep doing, peyote stitch) -> rel=shortlink (1934ms)\nWhat is peyote?\tmental clarity\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (mental clarity, does n?t come from taking, peyote) -> mental clarity (1785ms)\nWhat is peyote?\tdivination\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (peyote, has been used for, divination) -> divination (1889ms)\nWhat is peyote?\tany time\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (More Peyote, may be called for at, any time) -> any time (1837ms)\nWhat is peyote?\tthe tribal members\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (the tribal members, do, peyote) -> the tribal members (1837ms)\nWhat is peyote?\tcenturies\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (Peyote, has been used for, centuries) -> centuries (1837ms)\nWhat is peyote?\ttrouble?unless\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (peyote stitchers, is asking for, trouble?unless) -> trouble?unless (1889ms)\nWhat is peyote?\tThe Cuff\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (The Cuff, is done with, Flat Peyote Stitch) -> The Cuff (1785ms)\nWhat is peyote?\tMCF7\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (Peyote extracts, were toxic for, MCF7) -> MCF7 (1837ms)\nWhat is peyote?\talcoholism\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (peyote, could be an effective treatment for, alcoholism) -> alcoholism (2047ms)\nWhat is peyote?\tadded height and delight\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (peyote, was consumed for, added height and delight) -> added height and delight (1934ms)\nWhat is peyote?\tan adult\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (the peyote plant, is a normal dose for, an adult) -> an adult (1889ms)\nWhat is peyote?\ta very few kinds\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (Peyote, is allowed for just, a very few kinds) -> a very few kinds (1785ms)\nWhat is peyote?\tOmer\t-0.111111111112\tWhat is peyote? -> $x: ($x, do, peyote) -> (Omer, did, his peyote song) -> Omer (2047ms)\nWhat is peyote?\treligious purposes\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (Peyote buttons, were chewed for, religious purposes) -> religious purposes (1837ms)\nWhat is peyote?\tAmerican Indians\t-0.111111111112\tWhat is peyote? -> $x: (peyote, be for, $x) -> (peyote, should be reserved for, American Indians) -> American Indians (1934ms)\nWhat is peyote?\tThe chain\t-0.222222222222\tWhat is peyote? -> $x: ($x, create, peyote) -> (The chain, is created with, peyote stitch links) -> The chain (2088ms)\nWhat is peyote?\tthe legislature\t-0.222222222222\tWhat is peyote? -> $x: ($x, create, peyote) -> (the legislature, created, the peyote exemption) -> the legislature (2088ms)\nWhat is peyote?\tofficers\t-0.222222222222\tWhat is peyote? -> $x: ($x, found, peyote) -> (officers, found about, 12000 peyote buttons) -> officers (2088ms)\nWhat is peyote?\tThe bag\t-0.222222222222\tWhat is peyote? -> $x: ($x, create, peyote) -> (The bag, was created using, the peyote technique) -> The bag (2088ms)\nWhat is peyote?\tthe legend\t-0.222222222222\tWhat is peyote? -> $x: ($x, found, peyote) -> (the legend, found, the peyote) -> the legend (2088ms)\nWhat is peyote?\ttenure\t-0.222222222222\tWhat is peyote? -> $x: ($x, found, peyote) -> (tenure, is found dead from, a peyote overdose) -> tenure (2088ms)\nWhat is peyote?\tDarcy Horn\t-0.222222222222\tWhat is peyote? -> $x: ($x, create, peyote) -> (Darcy Horn, created, a freeform peyote bracelet) -> Darcy Horn (2088ms)\nWhat is peyote?\tThe shapes\t-0.222222222222\tWhat is peyote? -> $x: ($x, create, peyote) -> (The shapes, are created with, peyote stitch and cylinder beads) -> The shapes (2088ms)\nWhat is peyote?\tThe cuff\t-0.222222222222\tWhat is peyote? -> $x: ($x, create, peyote) -> (The cuff, is created using, flat peyote stiche) -> The cuff (2088ms)\nWhat is peyote?\tThe Cellini spiral\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The Cellini spiral, is a modified version of, tubular peyote) -> The Cellini spiral (2119ms)\nWhat is peyote?\tveterinarian-husband\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (veterinarian-husband, is poisoned with, peyote) -> veterinarian-husband (2128ms)\nWhat is peyote?\tparticularly their religion\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (particularly their religion, was centered around, Peyote) -> particularly their religion (2099ms)\nWhat is peyote?\tthe leaves\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the leaves, are made with, peyote stitch) -> the leaves (2099ms)\nWhat is peyote?\tThe article\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The article, had been about, peyote) -> The article (2114ms)\nWhat is peyote?\twhites\t-0.222222222223\tWhat is peyote? -> $x: ($x, can, peyote) -> (whites, can use, peyote) -> whites (2114ms)\nWhat is peyote?\tOne such example\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (One such example, would be the legal use of, peyote) -> One such example (2104ms)\nWhat is peyote?\tthe story\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (the story, to have been written during, a peyote trip) -> the story (2128ms)\nWhat is peyote?\tloom bead weaving\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (loom bead weaving, is, Peyote Stitch) -> loom bead weaving (2124ms)\nWhat is peyote?\tseers\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (seers, were induced by, peyote) -> seers (2124ms)\nWhat is peyote?\tdifferent patterns\t-0.222222222223\tWhat is peyote? -> $x: ($x, can, peyote) -> (different patterns, can be made out of, peyote stitches) -> different patterns (2099ms)\nWhat is peyote?\tthe bear wrestling competition\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the bear wrestling competition, were, Peyote Pete) -> the bear wrestling competition (2104ms)\nWhat is peyote?\tstitches\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (stitches, were used such as, peyote) -> stitches (2124ms)\nWhat is peyote?\tissue\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (issue, was the ingestion of, peyote) -> issue (2124ms)\nWhat is peyote?\tthe latter\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the latter, is subbing for, peyote) -> the latter (2104ms)\nWhat is peyote?\tThe body\t-0.222222222223\tWhat is peyote? -> $x: ($x, consist of, peyote) -> (The body, consists of, a simple round peyote stitch) -> The body (2094ms)\nWhat is peyote?\tThe drug\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The drug, is known locally as, Peyote) -> The drug (2114ms)\nWhat is peyote?\tgreat importance\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (great importance, is still employed, ....? Peyote) -> great importance (2133ms)\nWhat is peyote?\tLigusticum porteri\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Ligusticum porteri, is called, Peyote) -> Ligusticum porteri (2124ms)\nWhat is peyote?\tthe artists\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the artists, are inspired by, peyote) -> the artists (2124ms)\nWhat is peyote?\tThe large hill\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The large hill, was a hill of, Peyote) -> The large hill (2114ms)\nWhat is peyote?\tExamples\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Examples, are, Basic Peyote) -> Examples (2104ms)\nWhat is peyote?\tPeyotists\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Peyotists, are endearingly called, \" Peyote boys) -> Peyotists (2099ms)\nWhat is peyote?\tthe Bible\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (the Bible, is set next to, the Peyote sacrament and holy altar) -> the Bible (2128ms)\nWhat is peyote?\ta Star Cactus\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (a Star Cactus, is directly related to, the Peyote cactus) -> a Star Cactus (2133ms)\nWhat is peyote?\tthe most\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the most, is, peyote stitch) -> the most (2114ms)\nWhat is peyote?\tPrem Das\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Prem Das, had been an avid student of, peyote) -> Prem Das (2133ms)\nWhat is peyote?\tQuanah\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (Quanah, was introduced to, the peyote rite) -> Quanah (2119ms)\nWhat is peyote?\tthe military\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the military, were barred from using, peyote) -> the military (2124ms)\nWhat is peyote?\tquestions\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (questions, is, Peyote) -> questions (2104ms)\nWhat is peyote?\tC13\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (C13, was tripping on, peyote) -> C13 (2119ms)\nWhat is peyote?\tChristianity\t-0.222222222223\tWhat is peyote? -> $x: ($x, influence, peyote) -> (Christianity, has influenced, the pre-Columbian Peyote religion) -> Christianity (2114ms)\nWhat is peyote?\tdreadlocks\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (dreadlocks, are, peyote satiates) -> dreadlocks (2104ms)\nWhat is peyote?\tIndians\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Indians, should be permitted to use, Peyote) -> Indians (2128ms)\nWhat is peyote?\tHarvard Medical School\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Harvard Medical School, is an expert on, peyote) -> Harvard Medical School (2094ms)\nWhat is peyote?\tBolo cord\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Bolo cord, is white intertwined nylon with, peyote) -> Bolo cord (2109ms)\nWhat is peyote?\tFestival day\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Festival day, were, Peyote Patty) -> Festival day (2128ms)\nWhat is peyote?\tThe outer beadwork\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The outer beadwork, is, peyote stitch) -> The outer beadwork (2119ms)\nWhat is peyote?\tthe first person\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the first person, was given, peyote) -> the first person (2109ms)\nWhat is peyote?\tWhalen\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Whalen, was experimenting with, peyote) -> Whalen (2133ms)\nWhat is peyote?\tThe accent\t-0.222222222223\tWhat is peyote? -> $x: ($x, can, peyote) -> (The accent, can be threaded with, the matching peyote tube) -> The accent (2099ms)\nWhat is peyote?\ta quill\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (a quill, is, peyote stitch) -> a quill (2133ms)\nWhat is peyote?\tMVPs\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (MVPs, were named to, Rat City ?s Wile E. Peyote) -> MVPs (2094ms)\nWhat is peyote?\tThe main stitch\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The main stitch, is, Tubular Peyote) -> The main stitch (2133ms)\nWhat is peyote?\tsquare\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (square, was on, peyote) -> square (2133ms)\nWhat is peyote?\tCitrus candies\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Citrus candies, are loaded with, peyote) -> Citrus candies (2094ms)\nWhat is peyote?\tthe church\t-0.222222222223\tWhat is peyote? -> $x: ($x, can, peyote) -> (the church, can use, peyote) -> the church (2109ms)\nWhat is peyote?\tPrerequisite\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Prerequisite, Must be proficient with, peyote) -> Prerequisite (2109ms)\nWhat is peyote?\tThe hills\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The hills, are covered with, peyote) -> The hills (2104ms)\nWhat is peyote?\tsure i\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (sure i, was on, peyote) -> sure i (2129ms)\nWhat is peyote?\tWilliam\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (William, is on, peyote) -> William (2099ms)\nWhat is peyote?\trituals\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (rituals, was outlawed, peyote) -> rituals (2104ms)\nWhat is peyote?\tthe meetings\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (the meetings, were ascribed to, the peyote) -> the meetings (2093ms)\nWhat is peyote?\tChris Prussing\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (Chris Prussing, was inspired to try, peyote) -> Chris Prussing (2109ms)\nWhat is peyote?\tDelica beads\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Delica beads, are used widely for, peyote stitch) -> Delica beads (2094ms)\nWhat is peyote?\ttonight\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (tonight, is, Peyote Cody) -> tonight (2124ms)\nWhat is peyote?\tthe most common\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the most common, are, the peyote) -> the most common (2109ms)\nWhat is peyote?\tThe Huichol Deer Dance\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (The Huichol Deer Dance, is tied to, the peyote?a vision-inducing) -> The Huichol Deer Dance (2119ms)\nWhat is peyote?\tPsychedelic kinds\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Psychedelic kinds, are, Peyote) -> Psychedelic kinds (2119ms)\nWhat is peyote?\ta person\t-0.222222222223\tWhat is peyote? -> $x: ($x, be to, peyote) -> (a person, is drawn to, the Peyote religion) -> a person (2133ms)\nWhat is peyote?\tChrist\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Christ, is the Goddess of, peyote) -> Christ (2114ms)\nWhat is peyote?\tThe strips\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The strips, are, Peyote) -> The strips (2109ms)\nWhat is peyote?\tDesign\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Design, is stitched using, circular peyote) -> Design (2114ms)\nWhat is peyote?\tthe 1870\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the 1870, have been relying on, peyote) -> the 1870 (2114ms)\nWhat is peyote?\tParker\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (Parker, was given, peyote) -> Parker (2119ms)\nWhat is peyote?\tThe most popular\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The most popular, are, peyote stitch) -> The most popular (2099ms)\nWhat is peyote?\tThe bead work\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (The bead work, is woven using, the peyote) -> The bead work (2133ms)\nWhat is peyote?\tthe more well known ones\t-0.222222222223\tWhat is peyote? -> $x: ($x, be be, peyote) -> (the more well known ones, are, Peyote) -> the more well known ones (2133ms)\nWhat is peyote?\tThe ceremonies\t-0.333333333333\tWhat is peyote? -> $x: ($x, develop, peyote) -> (The ceremonies, have developed around, peyote use) -> The ceremonies (2137ms)\nWhat is peyote?\tpot or cocaine\t-0.333333333334\tWhat is peyote? -> $x: ($x, could be, peyote) -> (pot or cocaine, could actually be on, a month-long Peyote binge) -> pot or cocaine (2137ms)\nWhat is peyote?\tcrevices\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (west Texas peyote, has even been found growing in, crevices) -> crevices (2140ms)\nWhat is peyote?\tthe Plains tribes\t-0.444444444444\tWhat is peyote? -> $x: ($x, get, peyote) -> (the Plains tribes, got, peyote) -> the Plains tribes (2144ms)\nWhat is peyote?\tceremonies\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, was widely used in, ceremonies) -> ceremonies (2153ms)\nWhat is peyote?\twestern Nevada\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (no Peyote meetings, were held in, western Nevada) -> western Nevada (2137ms)\nWhat is peyote?\tplace\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (The peyote exception, has been in, place) -> place (2150ms)\nWhat is peyote?\tthe TransPecos\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote fields, were more abundant there than in, the TransPecos) -> the TransPecos (2144ms)\nWhat is peyote?\tAuthorities Concept Scheme\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2150ms)\nWhat is peyote?\tAztec rituals\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (the Peyote Cacti, were used in, Aztec rituals) -> Aztec rituals (2144ms)\nWhat is peyote?\tNevada\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, may have been important in, Nevada) -> Nevada (2150ms)\nWhat is peyote?\tparts\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is grown in, parts) -> parts (2150ms)\nWhat is peyote?\tfive states\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Non-Indian Peyote use, is protected in, five states) -> five states (2141ms)\nWhat is peyote?\tthe channel\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (The peyote strip, will sit in, the channel) -> the channel (2137ms)\nWhat is peyote?\tthe memo\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, appeared several times in, the memo) -> the memo (2147ms)\nWhat is peyote?\tdetail\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (some flat peyote stitch, are covered in, detail) -> detail (2147ms)\nWhat is peyote?\tnative religions\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, firmly established in, native religions) -> native religions (2137ms)\nWhat is peyote?\tcertain religious ceremonies\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, are used in, certain religious ceremonies) -> certain religious ceremonies (2153ms)\nWhat is peyote?\tRock\t-0.444444444444\tWhat is peyote? -> $x: ($x, get, peyote) -> (Rock, get your money 's worth out of, that peyote) -> Rock (2141ms)\nWhat is peyote?\tthe religion\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote and eagle, are the seminal players in, the religion) -> the religion (2150ms)\nWhat is peyote?\tthe hot , dry climate\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, will only grow in, the hot , dry climate) -> the hot , dry climate (2150ms)\nWhat is peyote?\tjeopardy\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is in, jeopardy) -> jeopardy (2153ms)\nWhat is peyote?\twidespread use\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, was in, widespread use) -> widespread use (2144ms)\nWhat is peyote?\tjail\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> ('s peyote garden, could put her in, jail) -> jail (2153ms)\nWhat is peyote?\tthe United States\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, grows in, the United States) -> the United States (2153ms)\nWhat is peyote?\ta formal , ceremonial way\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, was always used in, a formal , ceremonial way) -> a formal , ceremonial way (2144ms)\nWhat is peyote?\tRedmond\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, was secretly legal in, Redmond) -> Redmond (2137ms)\nWhat is peyote?\tNative American religious rituals\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is common in, Native American religious rituals) -> Native American religious rituals (2137ms)\nWhat is peyote?\tflowers\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, are found in, flowers) -> flowers (2147ms)\nWhat is peyote?\trows\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote cacti, are suspended in, rows) -> rows (2141ms)\nWhat is peyote?\tquest\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, is utilized in, quest) -> quest (2153ms)\nWhat is peyote?\treligious ceremonies\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (drug , peyote, is used in, religious ceremonies) -> religious ceremonies (2153ms)\nWhat is peyote?\tAmerican Indian culture\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, plays a major role in, American Indian culture) -> American Indian culture (2153ms)\nWhat is peyote?\tthe same manner\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (?Two-drop? peyote stitch, is worked in, the same manner) -> the same manner (2153ms)\nWhat is peyote?\ta band\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, stitched in, a band) -> a band (2141ms)\nWhat is peyote?\tSchedule 1\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is also listed in, Schedule 1) -> Schedule 1 (2137ms)\nWhat is peyote?\tthe 1970s\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, was spawned in, the 1970s) -> the 1970s (2150ms)\nWhat is peyote?\tMexico border towns\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is nowhere to be found in, Mexico border towns) -> Mexico border towns (2137ms)\nWhat is peyote?\tthe CSA\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Both peyote and mescaline, are listed in, the CSA) -> the CSA (2153ms)\nWhat is peyote?\tEgyptian artifacts\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (The peyote stitch, can be seen in, Egyptian artifacts) -> Egyptian artifacts (2153ms)\nWhat is peyote?\tthe southwestern U.S. and Mexico\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (The peyote cactus, grows in, the southwestern U.S. and Mexico) -> the southwestern U.S. and Mexico (2144ms)\nWhat is peyote?\tyarn paintings\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote rituals, are recorded in, yarn paintings) -> yarn paintings (2147ms)\nWhat is peyote?\tCarol Wilcox Well?s\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (the twisted peyote spiral, was in, Carol Wilcox Well?s) -> Carol Wilcox Well?s (2141ms)\nWhat is peyote?\tsettings\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (LSD and peyote, are obtained in, settings) -> settings (2141ms)\nWhat is peyote?\tthe wider context\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (The peyote complex, is expertly set in, the wider context) -> the wider context (2150ms)\nWhat is peyote?\tTexas\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, grows naturally in, Texas) -> Texas (2147ms)\nWhat is peyote?\ta pot or crock\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (The ground-up Peyote, is kept in, a pot or crock) -> a pot or crock (2150ms)\nWhat is peyote?\tthe victim\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, are found in, the victim) -> the victim (2144ms)\nWhat is peyote?\twritings\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (his peyote experiences, have been printed in, writings) -> writings (2141ms)\nWhat is peyote?\tSan Francisco\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (the Peyote case, recalled in, San Francisco) -> San Francisco (2144ms)\nWhat is peyote?\tCurtis\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, appeared in, Curtis) -> Curtis (2147ms)\nWhat is peyote?\tan alleged abridgment\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, resulted in, an alleged abridgment) -> an alleged abridgment (2141ms)\nWhat is peyote?\tthe field\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, were collected in, the field) -> the field (2147ms)\nWhat is peyote?\tthe desert\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, hung out in, the desert) -> the desert (2153ms)\nWhat is peyote?\tTopical Terms Concept Scheme\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (2153ms)\nWhat is peyote?\tthe province\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (the Native Indians Peyote, was utilized in, the province) -> the province (2147ms)\nWhat is peyote?\tIndian ceremonies\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, ought be allowed in, Indian ceremonies) -> Indian ceremonies (2150ms)\nWhat is peyote?\ta limited area\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (The peyote cactus, grows in, a limited area) -> a limited area (2150ms)\nWhat is peyote?\tMexico\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, grows in, Mexico) -> Mexico (2141ms)\nWhat is peyote?\tdanger\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (the peyote, is increasingly in, danger) -> danger (2147ms)\nWhat is peyote?\tprescribed ways\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is used in, prescribed ways) -> prescribed ways (2141ms)\nWhat is peyote?\tfabulous Palm Springs\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (their new collection Peyote Poem, shot in, fabulous Palm Springs) -> fabulous Palm Springs (2150ms)\nWhat is peyote?\tTony\t-0.444444444444\tWhat is peyote? -> $x: ($x, get, peyote) -> (Tony, gets high on, Peyote) -> Tony (2144ms)\nWhat is peyote?\tspiritual ceremonies\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is used in, spiritual ceremonies) -> spiritual ceremonies (2147ms)\nWhat is peyote?\tFebruary 1917\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, was outlawed also in, February 1917) -> February 1917 (2147ms)\nWhat is peyote?\ta hundred species\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (the peyote cactus, found in over, a hundred species) -> a hundred species (2147ms)\nWhat is peyote?\tindustrial society\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, became known in, industrial society) -> industrial society (2147ms)\nWhat is peyote?\taperture number\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote pollen, varies greatly in, aperture number) -> aperture number (2147ms)\nWhat is peyote?\tleast five different genera\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote, had been included in at, least five different genera) -> least five different genera (2144ms)\nWhat is peyote?\tthe saloon bar\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (peyote shamen, make an appearance in, the saloon bar) -> the saloon bar (2144ms)\nWhat is peyote?\tthe playlists\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (The Peyote Kings, show up in, the playlists) -> the playlists (2144ms)\nWhat is peyote?\tthe wild\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is mostly harvested in, the wild) -> the wild (2140ms)\nWhat is peyote?\tone area\t-0.444444444444\tWhat is peyote? -> $x: (peyote, in in, $x) -> (Peyote, grows wild in, one area) -> one area (2137ms)\nWhat is peyote?\ta ritual\t-0.444444444445\tWhat is peyote? -> $x: ($x, involve, peyote) -> (a ritual, involving, peyote) -> a ritual (2155ms)\nWhat is peyote?\tOne case\t-0.444444444445\tWhat is peyote? -> $x: ($x, involve, peyote) -> (One case, should involve, peyote bans) -> One case (2155ms)\nWhat is peyote?\tThe 86-page book\t-0.666666666667\tWhat is peyote? -> $x: ($x, contain, peyote) -> (The 86-page book, contains instructions for, flat peyote stitch) -> The 86-page book (2155ms)\nWhat is peyote?\tmedicine\t-0.666666666667\tWhat is peyote? -> $x: ($x, contain, peyote) -> (medicine, contains, peyote alkaloids) -> medicine (2155ms)\nWhat is peyote?\tthe native peoples\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used ceremonially by, the native peoples) -> the native peoples (2161ms)\nWhat is peyote?\ta resounding success\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Our peyote experiments, have been, a resounding success) -> a resounding success (2168ms)\nWhat is peyote?\tthe religious rituals\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (peyote, has been a part of, the religious rituals) -> the religious rituals (2158ms)\nWhat is peyote?\ta spiritual medicine\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used ceremonially as, a spiritual medicine) -> a spiritual medicine (2161ms)\nWhat is peyote?\t500 B.C.\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, have been found dating back to, 500 B.C.) -> 500 B.C. (2167ms)\nWhat is peyote?\ta lifeline\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (The peyote religion, has been, a lifeline) -> a lifeline (2161ms)\nWhat is peyote?\ta source\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used as, a source) -> a source (2157ms)\nWhat is peyote?\tthe Indians\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (The peyote cactus, has long been used by, the Indians) -> the Indians (2163ms)\nWhat is peyote?\ta treatment\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Healing Alcoholism Peyote, has been used as, a treatment) -> a treatment (2160ms)\nWhat is peyote?\tlong as inhabitants\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote Peyote, has been around as, long as inhabitants) -> long as inhabitants (2169ms)\nWhat is peyote?\tmedicine men\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used by, medicine men) -> medicine men (2158ms)\nWhat is peyote?\tthe reservation\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (peyote, have been recently brought into, the reservation) -> the reservation (2163ms)\nWhat is peyote?\tnatives\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used by, natives) -> natives (2160ms)\nWhat is peyote?\tindigenous peoples\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (peyote, has been used by, indigenous peoples) -> indigenous peoples (2165ms)\nWhat is peyote?\tthe effects\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (the peyote group, might have been due to, the effects) -> the effects (2168ms)\nWhat is peyote?\tlaws\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (the Peyote Religion, has been suppressed by, laws) -> laws (2161ms)\nWhat is peyote?\tthe month\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Coyote Peyote, has been the find of, the month) -> the month (2160ms)\nWhat is peyote?\tdream-like\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, have been described as very, dream-like) -> dream-like (2169ms)\nWhat is peyote?\ta part of traditional religious rites\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used as, a part of traditional religious rites) -> a part of traditional religious rites (2161ms)\nWhat is peyote?\tSAI\t-1.0\tWhat is peyote? -> $x: ($x, favor, peyote) -> (SAI, favored, peyote usage) -> SAI (2165ms)\nWhat is peyote?\treligious rights\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Hairstyles and peyote, have been blessed as, religious rights) -> religious rights (2155ms)\nWhat is peyote?\tcommerce\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been an item of, commerce) -> commerce (2169ms)\nWhat is peyote?\ta controversial plant\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been, a controversial plant) -> a controversial plant (2160ms)\nWhat is peyote?\t7000 years\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (dried peyote, has been dated at approximately, 7000 years) -> 7000 years (2160ms)\nWhat is peyote?\tpsychedelics\t-1.0\tWhat is peyote? -> $x: (peyote, be have, $x) -> (Hemp and peyote, have been used as, psychedelics) -> psychedelics (2169ms)\nWhere was the Andersonville Prison?\tIra DeForest WARREN\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Ira DeForest WARREN, was a prisoner in, Andersonville Prison) -> Ira DeForest WARREN (922ms)\nWhere was the Andersonville Prison?\tthe leading horseman\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (the leading horseman, is, the dreaded Andersonville Prison) -> the leading horseman (922ms)\nWhere was the Andersonville Prison?\tthe Union army\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (the Union army, was a prisoner at, Andersonville prison) -> the Union army (940ms)\nWhere was the Andersonville Prison?\tvariety\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (variety, are, Andersonville prison) -> variety (940ms)\nWhere was the Andersonville Prison?\tthe Civil war\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (the Civil war, was confined in, Andersonville prison) -> the Civil war (940ms)\nWhere was the Andersonville Prison?\t45,000 Union soldiers\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (45,000 Union soldiers, were confined at, Andersonville Prison) -> 45,000 Union soldiers (940ms)\nWhere was the Andersonville Prison?\tprisoner\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (prisoner, was imprisoned in, the infamous Andersonville Prison) -> prisoner (922ms)\nWhere was the Andersonville Prison?\talive\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (alive, were taken to, Andersonville Prison) -> alive (940ms)\nWhere was the Andersonville Prison?\tThe carpenter\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (The carpenter, had once been a prisoner in, Andersonville prison) -> The carpenter (922ms)\nWhere was the Andersonville Prison?\tUnion sailors\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Union sailors, were sent to, Andersonville prison) -> Union sailors (922ms)\nWhere was the Andersonville Prison?\tThe above Flag\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (The above Flag, was raised in, Andersonville Prison) -> The above Flag (940ms)\nWhere was the Andersonville Prison?\tthe bright drummer boy\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (the bright drummer boy, was in, Andersonville prison) -> the bright drummer boy (922ms)\nWhere was the Andersonville Prison?\tEarthworks\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Earthworks, were erected about, Andersonville prison) -> Earthworks (940ms)\nWhere was the Andersonville Prison?\tCushman\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Cushman, was sent to, Andersonville Prison) -> Cushman (940ms)\nWhere was the Andersonville Prison?\tKnapp\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Knapp, was also a prisoner at, the Andersonville prison camp) -> Knapp (922ms)\nWhere was the Andersonville Prison?\tGeorgia\t-0.111111111111\tWhere was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Georgia, was also the site of, the infamous Andersonville Prison) -> Georgia (940ms)\nWhere was the Andersonville Prison?\toperation\t-0.777777777778\tWhere was the Andersonville Prison? -> $x: (andersonville prison, be in in, $x) -> (Andersonville Prison, was in, operation) -> operation (971ms)\nWhere was the Andersonville Prison?\tEmigranten\t-0.777777777778\tWhere was the Andersonville Prison? -> $x: (andersonville prison, be in in, $x) -> (the dreaded Andersonville prison, was told in, Emigranten) -> Emigranten (971ms)\nWhen was the company founded?\tthe top search results\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (their company, is found in, the top search results) -> the top search results (5674ms)\nWhen was the company founded?\tthe simple phrase\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (a company, can be found in, the simple phrase) -> the simple phrase (7021ms)\nWhen was the company founded?\tRecess\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (more companies, are finding value in, Recess) -> Recess (5001ms)\nWhen was the company founded?\tany bar\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (company, could be found in, any bar) -> any bar (5674ms)\nWhen was the company founded?\tGoogle\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (your company, to be found in, Google) -> Google (7021ms)\nWhen was the company founded?\t2002\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, 2002) -> 2002 (5470ms)\nWhen was the company founded?\tthe archive\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (H Company, can be found in, the archive) -> the archive (7021ms)\nWhen was the company founded?\ta cosmopolitan spot\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (your company, is found in, a cosmopolitan spot) -> a cosmopolitan spot (11414ms)\nWhen was the company founded?\tviolation\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (the company, is found in, violation) -> violation (8387ms)\nWhen was the company founded?\tGlasgow\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, Glasgow) -> Glasgow (9450ms)\nWhen was the company founded?\tKemptown\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, Kemptown) -> Kemptown (5470ms)\nWhen was the company founded?\t1992\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, 1992) -> 1992 (3905ms)\nWhen was the company founded?\tthe Yellow Pages\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, the Yellow Pages) -> the Yellow Pages (8387ms)\nWhen was the company founded?\tthe yellow pages\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Companies, can be found in, the yellow pages) -> the yellow pages (7021ms)\nWhen was the company founded?\tApril 1990\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Company, was found in, April 1990) -> April 1990 (9450ms)\nWhen was the company founded?\tthe United States\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (company, can be found in, the United States) -> the United States (5001ms)\nWhen was the company founded?\tChinatowns\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (trading companies, are found in, Chinatowns) -> Chinatowns (11414ms)\nWhen was the company founded?\tApr.1999\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (company, was found in, Apr.1999) -> Apr.1999 (3905ms)\nWhen was the company founded?\ta life\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (company, was likely a very good find in, a life) -> a life (3905ms)\nWhen was the company founded?\tsection 172\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (the company, can be found in, section 172) -> section 172 (3777ms)\nWhen was the company founded?\tthe wireless market\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, will be found mostly in, the wireless market) -> the wireless market (6495ms)\nWhen was the company founded?\tthe year 1917\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, the year 1917) -> the year 1917 (7021ms)\nWhen was the company founded?\tthe year\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, the year) -> the year (11414ms)\nWhen was the company founded?\tpotential clients\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (the company, was interested in finding, potential clients) -> potential clients (5674ms)\nWhen was the company founded?\tthe industry\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Companies, are finding gaps in, the industry) -> the industry (5001ms)\nWhen was the company founded?\tthe monopoly\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Companies, are finding holes in, the monopoly) -> the monopoly (12735ms)\nWhen was the company founded?\tthe region\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (company, is found in, the region) -> the region (11414ms)\nWhen was the company founded?\t1990\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, 1990) -> 1990 (9450ms)\nWhen was the company founded?\t1997\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, is found in, 1997) -> 1997 (12735ms)\nWhen was the company founded?\tCroatian tourism official web site\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, Croatian tourism official web site) -> Croatian tourism official web site (5470ms)\nWhen was the company founded?\tBusiness Credit magazine\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, Business Credit magazine) -> Business Credit magazine (5674ms)\nWhen was the company founded?\tcase\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (a company, is found In, case) -> case (3777ms)\nWhen was the company founded?\tChina\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, is found in, China) -> China (3905ms)\nWhen was the company founded?\tShrewsbury\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, Shrewsbury) -> Shrewsbury (12735ms)\nWhen was the company founded?\tnew talent\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are interested in finding, new talent) -> new talent (3905ms)\nWhen was the company founded?\tthe April 5 , 2004 issue\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, the April 5 , 2004 issue) -> the April 5 , 2004 issue (11413ms)\nWhen was the company founded?\tthe ROI.\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Companies, are also finding rising in, the ROI.) -> the ROI. (3777ms)\nWhen was the company founded?\tplaces\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (?Companies, here are finding customers in, places) -> places (5470ms)\nWhen was the company founded?\tthe annual report\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (these companies, are found in, the annual report) -> the annual report (3777ms)\nWhen was the company founded?\tmajor cities\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are simple to find in, major cities) -> major cities (11414ms)\nWhen was the company founded?\tthe Companies Acts\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, is to be found in, the Companies Acts) -> the Companies Acts (7021ms)\nWhen was the company founded?\tthe UK,\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (company, can be found in, the UK,) -> the UK, (12735ms)\nWhen was the company founded?\tthe need of reinvention\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are finding themselves in, the need of reinvention) -> the need of reinvention (3778ms)\nWhen was the company founded?\tthe Jubara checkpoint\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (the company, are found in, the Jubara checkpoint) -> the Jubara checkpoint (5674ms)\nWhen was the company founded?\tthe job postings\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (this company, can be found in, the job postings) -> the job postings (9451ms)\nWhen was the company founded?\tHall 3\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, Hall 3) -> Hall 3 (5001ms)\nWhen was the company founded?\tthe Important Links section\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (these companies, can be found in, the Important Links section) -> the Important Links section (9450ms)\nWhen was the company founded?\trestaurants\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (company, is easy to find in, restaurants) -> restaurants (6495ms)\nWhen was the company founded?\tnew customers\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are interested in finding, new customers) -> new customers (8386ms)\nWhen was the company founded?\tthe attached backgrounder\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (company, is found in, the attached backgrounder) -> the attached backgrounder (5470ms)\nWhen was the company founded?\tYellow Pages\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (the company, can be found in, Yellow Pages) -> Yellow Pages (11414ms)\nWhen was the company founded?\tthe Privacy Notice\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, may be found in, the Privacy Notice) -> the Privacy Notice (8387ms)\nWhen was the company founded?\t2001\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The Company, was found in, 2001) -> 2001 (5470ms)\nWhen was the company founded?\tproperty\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Companies, are also assisted in finding, property) -> property (8387ms)\nWhen was the company founded?\tthe telephone directory\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (these companies, may be found in, the telephone directory) -> the telephone directory (3905ms)\nWhen was the company founded?\tPennsylvania\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (the company, can be found in, Pennsylvania) -> Pennsylvania (7021ms)\nWhen was the company founded?\tthe Newsroom\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, the Newsroom) -> the Newsroom (6495ms)\nWhen was the company founded?\tthe dry winter\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are finding opportunity in, the dry winter) -> the dry winter (6495ms)\nWhen was the company founded?\t1912\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Company, was found in, 1912) -> 1912 (9450ms)\nWhen was the company founded?\t1995\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, 1995) -> 1995 (11413ms)\nWhen was the company founded?\tMadCat\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, MadCat) -> MadCat (5001ms)\nWhen was the company founded?\tthe search engines\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (a company, to be found in, the search engines) -> the search engines (6495ms)\nWhen was the company founded?\tAmway\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are found in, Amway) -> Amway (6495ms)\nWhen was the company founded?\tviolation risk\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, found to be in, violation risk) -> violation risk (3777ms)\nWhen was the company founded?\tspite\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, find outsourcing to be cost-effective in, spite) -> spite (12735ms)\nWhen was the company founded?\tnewspapers\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, newspapers) -> newspapers (6495ms)\nWhen was the company founded?\t935\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (the companies, were found in, 935) -> 935 (5674ms)\nWhen was the company founded?\tthe Board\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Companies, are found in, the Board) -> the Board (8386ms)\nWhen was the company founded?\tthe telephone book\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The companies, can be found in, the telephone book) -> the telephone book (5674ms)\nWhen was the company founded?\tIndia inspite\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Company, is finding its great future in, India inspite) -> India inspite (3777ms)\nWhen was the company founded?\tnationwide retailers\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, nationwide retailers) -> nationwide retailers (3777ms)\nWhen was the company founded?\tthe Amway catalogs\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (the companies, are found in, the Amway catalogs) -> the Amway catalogs (5470ms)\nWhen was the company founded?\tbreach of their licence\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are found in, breach of their licence) -> breach of their licence (9450ms)\nWhen was the company founded?\taustralia\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Many companies, are found in, australia) -> australia (5001ms)\nWhen was the company founded?\tnew partners and clients\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (Our company, is interested in finding, new partners and clients) -> new partners and clients (5470ms)\nWhen was the company founded?\tguidelines\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are different found in, guidelines) -> guidelines (5001ms)\nWhen was the company founded?\ta St . Catharines court\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (The company, was found guilty in, a St . Catharines court) -> a St . Catharines court (7021ms)\nWhen was the company founded?\tbreach\t2.44444444443\tWhen was the company founded? -> $x: (company, be found in, $x) -> (companies, are found in, breach) -> breach (9450ms)\nWhen was the company founded?\tthe second and third floor lounges\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, are found in, the second and third floor lounges) -> the second and third floor lounges (12920ms)\nWhen was the company founded?\tevery setting\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer systems, is found in almost, every setting) -> every setting (12895ms)\nWhen was the company founded?\tbanks\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can also be found in, banks) -> banks (12920ms)\nWhen was the company founded?\troom 16.1.10\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer facilities, can be found in, room 16.1.10) -> room 16.1.10 (12970ms)\nWhen was the company founded?\t90,3 %\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (A computer, is found in, 90,3 %) -> 90,3 % (12970ms)\nWhen was the company founded?\tcommunity colleges\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computer Education, are found in, community colleges) -> community colleges (12895ms)\nWhen was the company founded?\tthe Unofficial Cookie FAQ\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (your computer, can be found in, the Unofficial Cookie FAQ) -> the Unofficial Cookie FAQ (12920ms)\nWhen was the company founded?\tthe majority\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can now be found in, the majority) -> the majority (12920ms)\nWhen was the company founded?\tadvance\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer systems, should be found in, advance) -> advance (12945ms)\nWhen was the company founded?\tthe Farc camp\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (the computers, were indeed found in, the Farc camp) -> the Farc camp (12990ms)\nWhen was the company founded?\tevery aspect\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in almost, every aspect) -> every aspect (12990ms)\nWhen was the company founded?\tlibraries\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are normally found in, libraries) -> libraries (12920ms)\nWhen was the company founded?\tthe first few pages\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer labs, can be found in, the first few pages) -> the first few pages (12945ms)\nWhen was the company founded?\tthe children\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are often found in, the children) -> the children (12945ms)\nWhen was the company founded?\tevery field\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, every field) -> every field (12990ms)\nWhen was the company founded?\tpublic places\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (( Computers, can sometimes be found in, public places) -> public places (12970ms)\nWhen was the company founded?\tthe heart\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in, the heart) -> the heart (12920ms)\nWhen was the company founded?\tany\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (These computers, can be found in, any) -> any (12920ms)\nWhen was the company founded?\teveryday devices\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in, everyday devices) -> everyday devices (12895ms)\nWhen was the company founded?\tmountainous rural communities\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, mountainous rural communities) -> mountainous rural communities (12970ms)\nWhen was the company founded?\tthe domain\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (this computer, has been found in, the domain) -> the domain (12735ms)\nWhen was the company founded?\tevery nook\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, every nook) -> every nook (12970ms)\nWhen was the company founded?\thouseholds\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are more frequently found in, households) -> households (12970ms)\nWhen was the company founded?\tgood working order\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer, was found to be in, good working order) -> good working order (12945ms)\nWhen was the company founded?\tpersonal computers\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer memory, is found in, personal computers) -> personal computers (12735ms)\nWhen was the company founded?\ta typical $ 299 Netbook\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (The computer, is found in, a typical $ 299 Netbook) -> a typical $ 299 Netbook (12990ms)\nWhen was the company founded?\tthe northwest part\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (8 computers, can be found in, the northwest part) -> the northwest part (12920ms)\nWhen was the company founded?\tcell phones\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are also found in, cell phones) -> cell phones (12945ms)\nWhen was the company founded?\tthe User\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (the computer, is found in, the User) -> the User (12920ms)\nWhen was the company founded?\tthe kitchen\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, was found Thursday in, the kitchen) -> the kitchen (12970ms)\nWhen was the company founded?\tsecure labs\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, secure labs) -> secure labs (12895ms)\nWhen was the company founded?\tthe largest\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, were only found in, the largest) -> the largest (12970ms)\nWhen was the company founded?\toffices\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, were really only found in, offices) -> offices (12895ms)\nWhen was the company founded?\tprivate homes\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, can be found in, private homes) -> private homes (12895ms)\nWhen was the company founded?\ta nearby pond\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (the computer, was found in, a nearby pond) -> a nearby pond (12991ms)\nWhen was the company founded?\tevery household\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (The computer, is found in almost, every household) -> every household (12895ms)\nWhen was the company founded?\tthe home\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in, the home) -> the home (12990ms)\nWhen was the company founded?\ta wide range\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer programmers, can be found in, a wide range) -> a wide range (12990ms)\nWhen was the company founded?\tscience labs\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, were found only in, science labs) -> science labs (12990ms)\nWhen was the company founded?\t40 percent\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (a computer, could be found in, 40 percent) -> 40 percent (12945ms)\nWhen was the company founded?\tlocations\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer labs, can be found in, locations) -> locations (12970ms)\nWhen was the company founded?\tnetworks\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, can be found in, networks) -> networks (12990ms)\nWhen was the company founded?\tthe Careers Database\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer scientists, can be found in, the Careers Database) -> the Careers Database (12735ms)\nWhen was the company founded?\t?v?r? home ju?t l?k? televisions\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, c?n be found in, ?v?r? home ju?t l?k? televisions) -> ?v?r? home ju?t l?k? televisions (12945ms)\nWhen was the company founded?\tKirkwood Plaza\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computer Renaissance, can be found in, Kirkwood Plaza) -> Kirkwood Plaza (12970ms)\nWhen was the company founded?\tthe Computer name box\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (your computer, will be found in, the Computer name box) -> the Computer name box (12970ms)\nWhen was the company founded?\tthe Information Centre\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computer facilities, can be found in, the Information Centre) -> the Information Centre (12735ms)\nWhen was the company founded?\tschools\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (These computers, can be found in, schools) -> schools (12990ms)\nWhen was the company founded?\tradios\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (digital computers, is found in, radios) -> radios (12945ms)\nWhen was the company founded?\tairports\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, as may be found in, airports) -> airports (12945ms)\nWhen was the company founded?\tthe market\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer, can be found available in, the market) -> the market (12945ms)\nWhen was the company founded?\tthe system registry\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, can also be found in, the system registry) -> the system registry (12970ms)\nWhen was the company founded?\tabundance\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, abundance) -> abundance (12945ms)\nWhen was the company founded?\toffice\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer, is often found in, office) -> office (12895ms)\nWhen was the company founded?\tevery office\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, may be found in, every office) -> every office (12895ms)\nWhen was the company founded?\tthe registry\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, the registry) -> the registry (12895ms)\nWhen was the company founded?\tthe paper\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer attacks, can be found in, the paper) -> the paper (12920ms)\nWhen was the company founded?\t80 %\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in over, 80 %) -> 80 % (12895ms)\nWhen was the company founded?\tmetropolitan areas and cities\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer forensics, are found in, metropolitan areas and cities) -> metropolitan areas and cities (12970ms)\nWhen was the company founded?\ta range\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computer Engineering, can be found in, a range) -> a range (12920ms)\nWhen was the company founded?\tnet-land\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, can be found in, net-land) -> net-land (12945ms)\nWhen was the company founded?\tbusinesses and homes\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are commonly found in, businesses and homes) -> businesses and homes (12920ms)\nWhen was the company founded?\tsocial history\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are to be found in, social history) -> social history (12895ms)\nWhen was the company founded?\tthe possession\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (laptop computer, are being found in, the possession) -> the possession (12895ms)\nWhen was the company founded?\ttexts\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, can be found in, texts) -> texts (12735ms)\nWhen was the company founded?\teach elementary classroom\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, are found in, each elementary classroom) -> each elementary classroom (12945ms)\nWhen was the company founded?\tJuly 2006\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (The computer, was found in, July 2006) -> July 2006 (12735ms)\nWhen was the company founded?\tthe classroom and research\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in, the classroom and research) -> the classroom and research (12945ms)\nWhen was the company founded?\tSilicon Valley\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer science, are found in, Silicon Valley) -> Silicon Valley (12920ms)\nWhen was the company founded?\tbanks and offices\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, were only found in, banks and offices) -> banks and offices (12990ms)\nWhen was the company founded?\tevery layer\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Computers, are now found in, every layer) -> every layer (12895ms)\nWhen was the company founded?\tthe process\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (a computer, was found in, the process) -> the process (12945ms)\nWhen was the company founded?\tthe wild\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computer viruses, are found \"in, the wild) -> the wild (12920ms)\nWhen was the company founded?\tthe entire houses\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in virtually, the entire houses) -> the entire houses (12970ms)\nWhen was the company founded?\tlibraries and hotels\t1.999999999989\tWhen was the company founded? -> $x: (computer, be found in, $x) -> (Public computers, are found in, libraries and hotels) -> libraries and hotels (12920ms)\nWhen was the company founded?\tRiva FLV encoder\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (windows, can be found in, Riva FLV encoder) -> Riva FLV encoder (13107ms)\nWhen was the company founded?\tthe park\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are commonly found here in, the park) -> the park (13353ms)\nWhen was the company founded?\tYoull\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Youll, find, companies) -> Youll (13417ms)\nWhen was the company founded?\tthe arsenal\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, are ?nowhere to be found in, the arsenal) -> the arsenal (13464ms)\nWhen was the company founded?\ta Dutch study\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (a strategy, found to be effective in, a Dutch study) -> a Dutch study (13510ms)\nWhen was the company founded?\tthe common law\t1.88888888888\tWhen was the company founded? -> $x: (auditor, be found in, $x) -> (auditors, are found in, the common law) -> the common law (12990ms)\nWhen was the company founded?\tFred Meyer?s natural foods fridge\t1.88888888888\tWhen was the company founded? -> $x: (kroger, be found in, $x) -> (Kroger, can be found in, Fred Meyer?s natural foods fridge) -> Fred Meyer?s natural foods fridge (13303ms)\nWhen was the company founded?\tJDeveloper\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (a window, can be found in, JDeveloper) -> JDeveloper (13303ms)\nWhen was the company founded?\tthe Inside Connection product\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (the Inside Connection product, find, companies) -> the Inside Connection product (13479ms)\nWhen was the company founded?\tthe north-east\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (?This butterfly, is found in, the north-east) -> the north-east (13252ms)\nWhen was the company founded?\tCompany\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (True strategy, is only found in, Company) -> Company (13216ms)\nWhen was the company founded?\tthe NAEPP guidelines\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (asthma strategies, are found in, the NAEPP guidelines) -> the NAEPP guidelines (13088ms)\nWhen was the company founded?\tthe downloadable ebook\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategies, can be found in, the downloadable ebook) -> the downloadable ebook (13582ms)\nWhen was the company founded?\ta recent communication\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (their strategy, can be found in, a recent communication) -> a recent communication (13088ms)\nWhen was the company founded?\tan apparent suicide\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (secretary, is found drowned in, an apparent suicide) -> an apparent suicide (13106ms)\nWhen was the company founded?\tthe System Preferences\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (your Windows, is found in, the System Preferences) -> the System Preferences (13539ms)\nWhen was the company founded?\tthe posting on Fri Jul 04\t1.88888888888\tWhen was the company founded? -> $x: (ibm, be found in, $x) -> (IBM, can be found in, the posting on Fri Jul 04) -> the posting on Fri Jul 04 (13303ms)\nWhen was the company founded?\tSection 1\t1.88888888888\tWhen was the company founded? -> $x: (auditor, be found in, $x) -> (the Auditor General, can be found in, Section 1) -> Section 1 (13623ms)\nWhen was the company founded?\tthe matters\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (the employees, were found involved in, the matters) -> the matters (13234ms)\nWhen was the company founded?\tthe recent simulation studies\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (No strategy, can be found in, the recent simulation studies) -> the recent simulation studies (13448ms)\nWhen was the company founded?\tMoving company\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Moving company, finds, company) -> Moving company (13385ms)\nWhen was the company founded?\tan unpublished opinion\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (firm employees, can be found in, an unpublished opinion) -> an unpublished opinion (13662ms)\nWhen was the company founded?\tthe local press\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisements, can also be found in, the local press) -> the local press (13337ms)\nWhen was the company founded?\tthe Manager\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (new employees, can be found in, the Manager) -> the Manager (13649ms)\nWhen was the company founded?\tgg_arguments-->0\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (the window, can be found in, gg_arguments-->0) -> gg_arguments-->0 (13161ms)\nWhen was the company founded?\tSect\t1.88888888888\tWhen was the company founded? -> $x: (auditor, be found in, $x) -> (an independent Public Auditor, are found in, Sect) -> Sect (13125ms)\nWhen was the company founded?\tfederal court\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (its directors, were found liable in, federal court) -> federal court (13234ms)\nWhen was the company founded?\tthe lower part\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (The program directors survey, can be found in, the lower part) -> the lower part (13088ms)\nWhen was the company founded?\tthe U.S.\t1.88888888888\tWhen was the company founded? -> $x: (coca cola, be found in, $x) -> (Mexican-made Coca-Cola, can sometimes be found in, the U.S.) -> the U.S. (13069ms)\nWhen was the company founded?\tevery form\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can be found in nearly, every form) -> every form (13464ms)\nWhen was the company founded?\tthe 1860 and 1870 Henry Co.\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (James McDonald, was found in, the 1860 and 1870 Henry Co.) -> the 1860 and 1870 Henry Co. (13554ms)\nWhen was the company founded?\tthe Funds\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (' Directors and Officers, may be found in, the Funds) -> the Funds (13252ms)\nWhen was the company founded?\tCanada\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (this butterfly, have been found in, Canada) -> Canada (13464ms)\nWhen was the company founded?\tthe free venue\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (the free venue, finding, company) -> the free venue (13143ms)\nWhen was the company founded?\ttwo\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, are found in, two) -> two (13303ms)\nWhen was the company founded?\tmisconduct\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (the employee, was found to have engaged in, misconduct) -> misconduct (13050ms)\nWhen was the company founded?\tthe Downloads section\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the Downloads section) -> the Downloads section (13609ms)\nWhen was the company founded?\tthe download\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Word OpenOffice, can be found in, the download) -> the download (13320ms)\nWhen was the company founded?\tpractice\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (the employees, would be found to work well in, practice) -> practice (13088ms)\nWhen was the company founded?\tSection 3.5\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (window functions, can be found in, Section 3.5) -> Section 3.5 (13568ms)\nWhen was the company founded?\ta whole bunch\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Ex-Microsoft Employee, was found in, a whole bunch) -> a whole bunch (13251ms)\nWhen was the company founded?\tthe Employee Directory\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, can be found in, the Employee Directory) -> the Employee Directory (13385ms)\nWhen was the company founded?\tthe hundreds\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, can be found in, the hundreds) -> the hundreds (13337ms)\nWhen was the company founded?\tlending\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (lending, finding, company) -> lending (13464ms)\nWhen was the company founded?\thigher altitudes\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, higher altitudes) -> higher altitudes (13088ms)\nWhen was the company founded?\tSoHo\t1.88888888888\tWhen was the company founded? -> $x: (adidas, be found in, $x) -> (The Adidas Originals Store, is found in, SoHo) -> SoHo (13479ms)\nWhen was the company founded?\trecycled packaging ?\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike shoes, can be found in, recycled packaging ?) -> recycled packaging ? (13125ms)\nWhen was the company founded?\ttext\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, is found in, text) -> text (13180ms)\nWhen was the company founded?\tvarious places\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (text/html Advertisements, can be found in, various places) -> various places (13688ms)\nWhen was the company founded?\tMeghalaya\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, Meghalaya) -> Meghalaya (13525ms)\nWhen was the company founded?\tthe entrance areas\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, are predominately found in, the entrance areas) -> the entrance areas (13069ms)\nWhen was the company founded?\tsteamy low valleys\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterfly, are found in, steamy low valleys) -> steamy low valleys (13353ms)\nWhen was the company founded?\ta novice\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (a novice, find, companies) -> a novice (13353ms)\nWhen was the company founded?\tthe adaptability\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (survival strategy, can best be found in, the adaptability) -> the adaptability (13216ms)\nWhen was the company founded?\tsuch conduct\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (Any employee, is found to have engaged in, such conduct) -> such conduct (13069ms)\nWhen was the company founded?\tthe CKUA Employee Privacy Statement\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (our employees, is found in, the CKUA Employee Privacy Statement) -> the CKUA Employee Privacy Statement (13286ms)\nWhen was the company founded?\twest Houston\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (a restaurant employee, was found in far, west Houston) -> west Houston (13495ms)\nWhen was the company founded?\tdamp basements\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (window wells, are found in, damp basements) -> damp basements (13623ms)\nWhen was the company founded?\tthe System Documentation\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the System Documentation) -> the System Documentation (13069ms)\nWhen was the company founded?\twoodland\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (These butterflies, can be found in, woodland) -> woodland (13216ms)\nWhen was the company founded?\tgreat numbers\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can often be found in, great numbers) -> great numbers (13269ms)\nWhen was the company founded?\tPoland\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (This wonderful advertisement, was found in, Poland) -> Poland (13554ms)\nWhen was the company founded?\thomes\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Picture windows, are often found in, homes) -> homes (13216ms)\nWhen was the company founded?\tnon-compliance\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, were found to be in, non-compliance) -> non-compliance (13106ms)\nWhen was the company founded?\tthe United Kingdom\t1.88888888888\tWhen was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca-Cola water, was found to be in, the United Kingdom) -> the United Kingdom (13286ms)\nWhen was the company founded?\tJones\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (large windows, are found in, Jones) -> Jones (13582ms)\nWhen was the company founded?\tolder training\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Visual C++, are found packaged in, older training) -> older training (13010ms)\nWhen was the company founded?\tan array\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Replacement windows, can be found in, an array) -> an array (13433ms)\nWhen was the company founded?\tWindows\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Other important Microsoft files, can be found in, Windows) -> Windows (13448ms)\nWhen was the company founded?\ttelephone number\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (telephone number, Find, companies) -> telephone number (13433ms)\nWhen was the company founded?\tsuch notable American edifices\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Zettler windows, can be found in, such notable American edifices) -> such notable American edifices (13433ms)\nWhen was the company founded?\tPrimate Eye\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (the membership secretary, can be found in, Primate Eye) -> Primate Eye (13069ms)\nWhen was the company founded?\tsuede\t1.88888888888\tWhen was the company founded? -> $x: (adidas, be found in, $x) -> (Adidas Mickey Shoes, can be found in, suede) -> suede (13251ms)\nWhen was the company founded?\tthe free conference and venue\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (the free conference and venue, finding, company) -> the free conference and venue (13353ms)\nWhen was the company founded?\tcoastal areas\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (this butterfly, is often found in, coastal areas) -> coastal areas (13417ms)\nWhen was the company founded?\tCentral Park\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (a gallery employee, is found strangled in, Central Park) -> Central Park (13433ms)\nWhen was the company founded?\tthe Film menu\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Word, is found in, the Film menu) -> the Film menu (13554ms)\nWhen was the company founded?\tmore upscale neighborhoods\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (wood windows, is generally found in, more upscale neighborhoods) -> more upscale neighborhoods (13568ms)\nWhen was the company founded?\tthe southern parts\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (the butterfly, is found in, the southern parts) -> the southern parts (13069ms)\nWhen was the company founded?\tnotes\t1.88888888888\tWhen was the company founded? -> $x: (ibm, be found in, $x) -> (IBM BlueGene/L, can also be found in, notes) -> notes (13353ms)\nWhen was the company founded?\tthe official site\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisement videos, can be found in, the official site) -> the official site (13510ms)\nWhen was the company founded?\tany highly organized structure\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, could be found in, any highly organized structure) -> any highly organized structure (13353ms)\nWhen was the company founded?\tthe Indian sub-continent\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, the Indian sub-continent) -> the Indian sub-continent (13464ms)\nWhen was the company founded?\twet thick forests\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, wet thick forests) -> wet thick forests (13675ms)\nWhen was the company founded?\tNew Delhi\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (New Delhi, Find, Company) -> New Delhi (13675ms)\nWhen was the company founded?\tgardens and parks\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (urban butterflies, are found in, gardens and parks) -> gardens and parks (13303ms)\nWhen was the company founded?\tthe structured workflow\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (the employees, can be found in, the structured workflow) -> the structured workflow (13197ms)\nWhen was the company founded?\tthe cities\t1.88888888888\tWhen was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca Cola, can be found everywhere in, the cities) -> the cities (13582ms)\nWhen was the company founded?\twooded areas\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is found in, wooded areas) -> wooded areas (13401ms)\nWhen was the company founded?\tCorel\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Corel, found, companies) -> Corel (13582ms)\nWhen was the company founded?\tthe Corridor Guidance\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, can be found in, the Corridor Guidance) -> the Corridor Guidance (13609ms)\nWhen was the company founded?\tthe city\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, can be found in, the city) -> the city (13286ms)\nWhen was the company founded?\tdust\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (Employees, were found covered in, dust) -> dust (13433ms)\nWhen was the company founded?\tthe Jeepney Journal\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisements, can be found in, the Jeepney Journal) -> the Jeepney Journal (13197ms)\nWhen was the company founded?\tAndrea\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Andrea, found, company) -> Andrea (13197ms)\nWhen was the company founded?\tWord\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (The Microsoft Office Button, is found in, Word) -> Word (13525ms)\nWhen was the company founded?\tthe ponerines\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (Another strategy, is found in, the ponerines) -> the ponerines (13554ms)\nWhen was the company founded?\tnorthern Australia\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is found mainly in, northern Australia) -> northern Australia (13125ms)\nWhen was the company founded?\tMS Office\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft applications, could be found in, MS Office) -> MS Office (13030ms)\nWhen was the company founded?\tlocal newspapers\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Private Advertisements, can be found in, local newspapers) -> local newspapers (13269ms)\nWhen was the company founded?\tDallas\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (This McDonald?s outlet, can be found in, Dallas) -> Dallas (13479ms)\nWhen was the company founded?\tthe following sites\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows 7, can be found in, the following sites) -> the following sites (13050ms)\nWhen was the company founded?\tPage 1 of 23\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Page 1 of 23, found, companies) -> Page 1 of 23 (13448ms)\nWhen was the company founded?\tUnited States\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (United States, Find, Company) -> United States (13088ms)\nWhen was the company founded?\tresearch t?\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (research t?, find, companies) -> research t? (13554ms)\nWhen was the company founded?\ta book\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (a book, finding, company) -> a book (13433ms)\nWhen was the company founded?\tevery European country\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (a McDonalds, can be found in, every European country) -> every European country (13539ms)\nWhen was the company founded?\tnumerous formats\t1.88888888888\tWhen was the company founded? -> $x: (barbie, be found in, $x) -> (Barbie games, can be found in, numerous formats) -> numerous formats (13568ms)\nWhen was the company founded?\tThailand\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald?s, can be found in, Thailand) -> Thailand (13125ms)\nWhen was the company founded?\tthe said Leavitt Act\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (the Secretary, is found in, the said Leavitt Act) -> the said Leavitt Act (13030ms)\nWhen was the company founded?\tselection\t1.88888888888\tWhen was the company founded? -> $x: (adidas, be found in, $x) -> (Adidas Adi Rise Mid Shoes, can be found in, selection) -> selection (13050ms)\nWhen was the company founded?\ta written employment contract\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (an employee, may be found in, a written employment contract) -> a written employment contract (13050ms)\nWhen was the company founded?\tthe store\t1.88888888888\tWhen was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel S Several loose emblems, were found in, the store) -> the store (13011ms)\nWhen was the company founded?\tthe ambulatory\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (this window, is found in, the ambulatory) -> the ambulatory (13385ms)\nWhen was the company founded?\tthe words\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (a good strategy, are found in, the words) -> the words (13011ms)\nWhen was the company founded?\tthe explosion\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, are finding new freedom in, the explosion) -> the explosion (13369ms)\nWhen was the company founded?\tmore detail\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, can be found in, more detail) -> more detail (13479ms)\nWhen was the company founded?\tthe nature reserves\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, can be found occasionally in, the nature reserves) -> the nature reserves (13479ms)\nWhen was the company founded?\twoods\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is found in, woods) -> woods (13568ms)\nWhen was the company founded?\tTunisia\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Tunisia, Find, Company) -> Tunisia (13675ms)\nWhen was the company founded?\t? News\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (NCRR Director, can be found in, ? News) -> ? News (13385ms)\nWhen was the company founded?\tthe U. S.\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Office Accounting 2007, can be found in, the U. S.) -> the U. S. (13401ms)\nWhen was the company founded?\tnumerous sizes and designs\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, numerous sizes and designs) -> numerous sizes and designs (13662ms)\nWhen was the company founded?\tnumber\t1.88888888888\tWhen was the company founded? -> $x: (insurance company, be found in, $x) -> (Car insurance companies, are found in, number) -> number (13495ms)\nWhen was the company founded?\tevery market\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald franchises, can be found in, every market) -> every market (13143ms)\nWhen was the company founded?\tan 1806 newspaper\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (This advertisements, was found in, an 1806 newspaper) -> an 1806 newspaper (13030ms)\nWhen was the company founded?\told houses\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (windows, are usually found in, old houses) -> old houses (13636ms)\nWhen was the company founded?\tcli folder\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows CLI, can be found in, cli folder) -> cli folder (13353ms)\nWhen was the company founded?\ta little bit\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (a little bit, find, companies) -> a little bit (13401ms)\nWhen was the company founded?\tdifferent panel sizes\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Window shades, can be found in, different panel sizes) -> different panel sizes (13401ms)\nWhen was the company founded?\tthe collection Bad Behavior\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (Secretary, is to be found in, the collection Bad Behavior) -> the collection Bad Behavior (13675ms)\nWhen was the company founded?\ta lot\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike air jordan Shoe, can be found in, a lot) -> a lot (13510ms)\nWhen was the company founded?\tMumbai\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Mumbai, Find, Company) -> Mumbai (13216ms)\nWhen was the company founded?\tany good book\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, can be found in, any good book) -> any good book (13433ms)\nWhen was the company founded?\tStaten Island\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can be found in, Staten Island) -> Staten Island (13369ms)\nWhen was the company founded?\tthe edit menu\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Explorer, can be found in, the edit menu) -> the edit menu (13609ms)\nWhen was the company founded?\tsouthern Asia Sun\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is found in, southern Asia Sun) -> southern Asia Sun (13448ms)\nWhen was the company founded?\tWindows Server 2008\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows Vista, are usually found in, Windows Server 2008) -> Windows Server 2008 (13030ms)\nWhen was the company founded?\tThe Chamber Network newsletter\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (Directors, can be found in, The Chamber Network newsletter) -> The Chamber Network newsletter (13675ms)\nWhen was the company founded?\ta paper\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (messaging strategies, can be found in, a paper) -> a paper (13010ms)\nWhen was the company founded?\tthe excellent e-book\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (A complete strategy, is found in, the excellent e-book) -> the excellent e-book (13525ms)\nWhen was the company founded?\tthe centre\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (permanent employees, are more commonly found in, the centre) -> the centre (13337ms)\nWhen was the company founded?\tjungles\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, jungles) -> jungles (13106ms)\nWhen was the company founded?\tBelarus\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (its missing director, has been found dead in, Belarus) -> Belarus (13369ms)\nWhen was the company founded?\tthe same locations\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (zoo director Jim Anderson, will be found in, the same locations) -> the same locations (13197ms)\nWhen was the company founded?\tnumerous sizes and styles\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, numerous sizes and styles) -> numerous sizes and styles (13539ms)\nWhen was the company founded?\ta small business\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, are a rare find in, a small business) -> a small business (13088ms)\nWhen was the company founded?\tnew ways\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Problem Microsoft, was interested in finding, new ways) -> new ways (13675ms)\nWhen was the company founded?\tGoetia\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (the window, can be found in, Goetia) -> Goetia (13479ms)\nWhen was the company founded?\ttime\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (a director, be found in, time) -> time (13649ms)\nWhen was the company founded?\tthe Eligibility and Election\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (new employees, is found in, the Eligibility and Election) -> the Eligibility and Election (13234ms)\nWhen was the company founded?\tnon-migratory populations\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (these butterflies, are also found in, non-migratory populations) -> non-migratory populations (13286ms)\nWhen was the company founded?\tmaria\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, be found in, maria) -> maria (13649ms)\nWhen was the company founded?\tPart II\t1.88888888888\tWhen was the company founded? -> $x: (thomas watson, be found in, $x) -> (Thomas Watson, can be found in, Part II) -> Part II (13303ms)\nWhen was the company founded?\t75 %\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, is found in, 75 %) -> 75 % (13448ms)\nWhen was the company founded?\tthe Reimbursement\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, can be found in, the Reimbursement) -> the Reimbursement (13649ms)\nWhen was the company founded?\tChapter 18\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (Employees, are found in, Chapter 18) -> Chapter 18 (13030ms)\nWhen was the company founded?\tthe file\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (this window, can be found in, the file) -> the file (13595ms)\nWhen was the company founded?\tthe backseat\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (The employee, was found in, the backseat) -> the backseat (13464ms)\nWhen was the company founded?\tevery business\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (virtual employees, can be found in almost, every business) -> every business (13636ms)\nWhen was the company founded?\tsheds and attics\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Peacock butterflies, are often to be found in, sheds and attics) -> sheds and attics (13143ms)\nWhen was the company founded?\t1072n\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (1072n, find, companies) -> 1072n (13143ms)\nWhen was the company founded?\tgood numbers\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can still be found in, good numbers) -> good numbers (13554ms)\nWhen was the company founded?\ta dumpster\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (Hire employees, was found in, a dumpster) -> a dumpster (13286ms)\nWhen was the company founded?\tthe Microsoft Windows Help file\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the Microsoft Windows Help file) -> the Microsoft Windows Help file (13320ms)\nWhen was the company founded?\ttropical rain forests\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> ('s butterflies, are found in, tropical rain forests) -> tropical rain forests (13369ms)\nWhen was the company founded?\tjobs\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, were disproportionately found in, jobs) -> jobs (13525ms)\nWhen was the company founded?\tan irrigation canal\t1.88888888888\tWhen was the company founded? -> $x: (hersheys, be found in, $x) -> (Hershey, was found in, an irrigation canal) -> an irrigation canal (13353ms)\nWhen was the company founded?\tWomen\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Women, found, companies) -> Women (13161ms)\nWhen was the company founded?\tThe research\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (The research, found, companies) -> The research (13030ms)\nWhen was the company founded?\tarea newspapers\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Many advertisements, can be found in, area newspapers) -> area newspapers (13433ms)\nWhen was the company founded?\tfront\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (several windows, can be found in, front) -> front (13088ms)\nWhen was the company founded?\tthe councils section\t1.88888888888\tWhen was the company founded? -> $x: (company member, be found in, $x) -> (member companies, can be found in, the councils section) -> the councils section (13125ms)\nWhen was the company founded?\ta package\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly, was found rather conveniently in, a package) -> a package (13303ms)\nWhen was the company founded?\twet areas\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is typically found in, wet areas) -> wet areas (13568ms)\nWhen was the company founded?\tthe clearings\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, are found in, the clearings) -> the clearings (13161ms)\nWhen was the company founded?\tthe Online Books\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft SQL Server, can be found in, the Online Books) -> the Online Books (13286ms)\nWhen was the company founded?\tthe first command\t1.88888888888\tWhen was the company founded? -> $x: (reliance, be found in, $x) -> (this self-reliance, is found in, the first command) -> the first command (13180ms)\nWhen was the company founded?\tany industry\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (Quality employees, are difficult to find in, any industry) -> any industry (13234ms)\nWhen was the company founded?\tnature\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (allocation strategy, is commonly found in, nature) -> nature (13609ms)\nWhen was the company founded?\tthe street\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (The 'Kony 2012' director, was found naked in, the street) -> the street (13582ms)\nWhen was the company founded?\tDennis Barbour\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (This director, was found in, Dennis Barbour) -> Dennis Barbour (13161ms)\nWhen was the company founded?\tExpression Blend\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows 8, can be found in, Expression Blend) -> Expression Blend (13050ms)\nWhen was the company founded?\tthe database\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (A temporary employee, is then found in, the database) -> the database (13623ms)\nWhen was the company founded?\torinoco-fwutils\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows drivers, can be found in, orinoco-fwutils) -> orinoco-fwutils (13353ms)\nWhen was the company founded?\tthe SWTOR credits guideline\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (The strategies, can be found in, the SWTOR credits guideline) -> the SWTOR credits guideline (13269ms)\nWhen was the company founded?\tthe Toronto Star\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisements, can be found in, the Toronto Star) -> the Toronto Star (13180ms)\nWhen was the company founded?\ta vast number\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Tinted windows, can be found in, a vast number) -> a vast number (13106ms)\nWhen was the company founded?\tConflict\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (Any Director, found to be in, Conflict) -> Conflict (13464ms)\nWhen was the company founded?\tdisabilities\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (disabilities, find, companies) -> disabilities (13417ms)\nWhen was the company founded?\tthe Common Files\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, can be found in, the Common Files) -> the Common Files (13448ms)\nWhen was the company founded?\tHatch Act regulations\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (federal employees, can also be found in, Hatch Act regulations) -> Hatch Act regulations (13252ms)\nWhen was the company founded?\tNew York\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, can also be found in, New York) -> New York (13510ms)\nWhen was the company founded?\tthe docutils\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (My strategy, can be found in, the docutils) -> the docutils (13510ms)\nWhen was the company founded?\tdrier habitats\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, drier habitats) -> drier habitats (13385ms)\nWhen was the company founded?\tany Indian Grocery Store\t1.88888888888\tWhen was the company founded? -> $x: (amul, be found in, $x) -> (Amul ghee, can be found in, any Indian Grocery Store) -> any Indian Grocery Store (13286ms)\nWhen was the company founded?\tthe App Store\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike+ GPS, can be found in, the App Store) -> the App Store (13125ms)\nWhen was the company founded?\tdozens\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft?s music player, is found in, dozens) -> dozens (13050ms)\nWhen was the company founded?\tthe gold\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (the employees, is to be found in, the gold) -> the gold (13385ms)\nWhen was the company founded?\tTurkey\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Turkey, Find, Company) -> Turkey (13369ms)\nWhen was the company founded?\tcontempt\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, is found in, contempt) -> contempt (13596ms)\nWhen was the company founded?\tthe Decision Guides\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (New employees, can be found in, the Decision Guides) -> the Decision Guides (13069ms)\nWhen was the company founded?\tthe publishing archives\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (playwrights and directors, are found in, the publishing archives) -> the publishing archives (13479ms)\nWhen was the company founded?\tthe following cases\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, can be found in, the following cases) -> the following cases (13050ms)\nWhen was the company founded?\tsociety\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, are found everywhere in, society) -> society (13107ms)\nWhen was the company founded?\tNorth America\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Monarch butterflies, are found in, North America) -> North America (13180ms)\nWhen was the company founded?\tfootwear shops\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike Air Jordans, can be found in leading, footwear shops) -> footwear shops (13554ms)\nWhen was the company founded?\tCh\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (deposition strategy, can be found in, Ch) -> Ch (13609ms)\nWhen was the company founded?\tMisery\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Misery, finds, company) -> Misery (13510ms)\nWhen was the company founded?\ta haystack\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be like finding a needle in, a haystack) -> a haystack (13143ms)\nWhen was the company founded?\tthe age\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly, was found in, the age) -> the age (13180ms)\nWhen was the company founded?\tthe Park\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are also found in, the Park) -> the Park (13448ms)\nWhen was the company founded?\tOne of my clients\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (One of my clients, found, companies) -> One of my clients (13197ms)\nWhen was the company founded?\tNicaragua\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, was found in, Nicaragua) -> Nicaragua (13010ms)\nWhen was the company founded?\tSingapore\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Singapore, Find, Company) -> Singapore (13595ms)\nWhen was the company founded?\tcasinos\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, be found in, casinos) -> casinos (13011ms)\nWhen was the company founded?\tEurope\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (These butterflies, are most commonly found in, Europe) -> Europe (13125ms)\nWhen was the company founded?\tItaly\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Italy, Find, Company) -> Italy (13030ms)\nWhen was the company founded?\tthe Media section\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (These advertisements, can be found in, the Media section) -> the Media section (13568ms)\nWhen was the company founded?\tmagazines\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (their advertisements, can be found in, magazines) -> magazines (13180ms)\nWhen was the company founded?\ta new employee retention guide\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employee turnover, are found in, a new employee retention guide) -> a new employee retention guide (13539ms)\nWhen was the company founded?\tFresno\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (The advertisement, can be found in, Fresno) -> Fresno (13385ms)\nWhen was the company founded?\tthe Sudan\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (Secretary Bird, is found in, the Sudan) -> the Sudan (13649ms)\nWhen was the company founded?\tthe Content Catalog\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows Phone, can be found in, the Content Catalog) -> the Content Catalog (13417ms)\nWhen was the company founded?\topen sunny areas\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (These butterflies, are found in, open sunny areas) -> open sunny areas (13337ms)\nWhen was the company founded?\tthe widely known project\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can also be found in, the widely known project) -> the widely known project (13286ms)\nWhen was the company founded?\tthe section\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (Place strategy, are found in, the section) -> the section (13050ms)\nWhen was the company founded?\tany music teacher\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (Wands strategy, can be found in, any music teacher) -> any music teacher (13464ms)\nWhen was the company founded?\tdistinctive colors\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, could possibly be found out in, distinctive colors) -> distinctive colors (13401ms)\nWhen was the company founded?\tthe typical parenting book\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (the strategies, can also be found in, the typical parenting book) -> the typical parenting book (13568ms)\nWhen was the company founded?\tevery country\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonalds and Citigroup, can be found in almost, every country) -> every country (13269ms)\nWhen was the company founded?\tthe NetCOBOL Installation Guide\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows ?, can be found in, the NetCOBOL Installation Guide) -> the NetCOBOL Installation Guide (13320ms)\nWhen was the company founded?\tthe Windows directory\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows 95, is usually found in, the Windows directory) -> the Windows directory (13161ms)\nWhen was the company founded?\tseveral sizes and styles\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, several sizes and styles) -> several sizes and styles (13596ms)\nWhen was the company founded?\tthe caves\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft FS, has been found in, the caves) -> the caves (13596ms)\nWhen was the company founded?\tsub-Saharan Africa\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (Secretary bird, is only found in, sub-Saharan Africa) -> sub-Saharan Africa (13479ms)\nWhen was the company founded?\tthe Arctic regions\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, are even found in, the Arctic regions) -> the Arctic regions (13251ms)\nWhen was the company founded?\tfunding\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (ECSE/Regional Directors, have also been key in finding, funding) -> funding (13050ms)\nWhen was the company founded?\tthe genera oncidium\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly orchids, are found in, the genera oncidium) -> the genera oncidium (13675ms)\nWhen was the company founded?\tthe Resources section\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (legal strategies, can be found in, the Resources section) -> the Resources section (13649ms)\nWhen was the company founded?\ta variety\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, a variety) -> a variety (13554ms)\nWhen was the company founded?\tAppendix B.\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (Directors, can be found in, Appendix B.) -> Appendix B. (13216ms)\nWhen was the company founded?\ta small lobby\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (windows, can be found in, a small lobby) -> a small lobby (13088ms)\nWhen was the company founded?\tthe open grassland areas\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, the open grassland areas) -> the open grassland areas (13433ms)\nWhen was the company founded?\tdifferent parts\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (window glass, has been found in, different parts) -> different parts (13143ms)\nWhen was the company founded?\tchurches\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Rose windows, can be found in, churches) -> churches (13369ms)\nWhen was the company founded?\tMay\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (this same advertisement, is found in, May) -> May (13401ms)\nWhen was the company founded?\taid\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (directors, shall find will be in, aid) -> aid (13234ms)\nWhen was the company founded?\tbrowse menu\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (browse menu, Find, companies) -> browse menu (13180ms)\nWhen was the company founded?\tseveral different colorings\t1.88888888888\tWhen was the company founded? -> $x: (adidas, be found in, $x) -> (Adidas gazelles, can be found in, several different colorings) -> several different colorings (13180ms)\nWhen was the company founded?\tthe Auditor-Controller\t1.88888888888\tWhen was the company founded? -> $x: (auditor, be found in, $x) -> (Accountant-Auditor, is found only in, the Auditor-Controller) -> the Auditor-Controller (13675ms)\nWhen was the company founded?\tsouthern Japan\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, were once found only in, southern Japan) -> southern Japan (13433ms)\nWhen was the company founded?\tLASER BUDDY NEWS SERVICE\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (LASER BUDDY NEWS SERVICE, Find, Companies) -> LASER BUDDY NEWS SERVICE (13448ms)\nWhen was the company founded?\tthe sections\t1.88888888888\tWhen was the company founded? -> $x: (limited company, be found in, $x) -> (Private Limited Companies, can be found in, the sections) -> the sections (13568ms)\nWhen was the company founded?\tnumerous\t1.88888888888\tWhen was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel bags, can be found in, numerous) -> numerous (13161ms)\nWhen was the company founded?\tMoving business CA\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Moving business CA, finds, company) -> Moving business CA (13180ms)\nWhen was the company founded?\tthe Fortune 500\t1.88888888888\tWhen was the company founded? -> $x: (insurance company, be found in, $x) -> (so many insurance companies, can be found in, the Fortune 500) -> the Fortune 500 (13385ms)\nWhen was the company founded?\tthe desert north\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald?s body, was found in, the desert north) -> the desert north (13662ms)\nWhen was the company founded?\tAppendix\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (the strategy, is found in, Appendix) -> Appendix (13554ms)\nWhen was the company founded?\tMicrosoft knowledgebase article 967715\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, Microsoft knowledgebase article 967715) -> Microsoft knowledgebase article 967715 (13337ms)\nWhen was the company founded?\tthe Personalization menu\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows 7, can be found in, the Personalization menu) -> the Personalization menu (13464ms)\nWhen was the company founded?\tSection 25504\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (directors, can be found in, Section 25504) -> Section 25504 (13401ms)\nWhen was the company founded?\tthe Media Center\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> ('s Director, can be found in, the Media Center) -> the Media Center (13448ms)\nWhen was the company founded?\tvarious sizes\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Window coverings, can be found in, various sizes) -> various sizes (13636ms)\nWhen was the company founded?\tdifferent panel measurements\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Window shades, can be found in, different panel measurements) -> different panel measurements (13495ms)\nWhen was the company founded?\tMenegroth\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (this window, was to be found in, Menegroth) -> Menegroth (13088ms)\nWhen was the company founded?\tthe right approach\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, are taking a lead in finding, the right approach) -> the right approach (13540ms)\nWhen was the company founded?\tthe laundry room\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (a 32-year-old legal secretary, is found in, the laundry room) -> the laundry room (13675ms)\nWhen was the company founded?\tan English country garden\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (' butterfly, was found in, an English country garden) -> an English country garden (13540ms)\nWhen was the company founded?\tChristmas Ornaments\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Christmas Ornaments, Find, companies) -> Christmas Ornaments (13269ms)\nWhen was the company founded?\tService List Filter\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Service List Filter, Find, company) -> Service List Filter (13088ms)\nWhen was the company founded?\tthe newspaper\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (sale advertisements, are found in, the newspaper) -> the newspaper (13197ms)\nWhen was the company founded?\tthe water\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, was found floating in, the water) -> the water (13069ms)\nWhen was the company founded?\tthe roadside flowers\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (White Butterflies, were found in, the roadside flowers) -> the roadside flowers (13539ms)\nWhen was the company founded?\tRome\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Rome, Find, Company) -> Rome (13554ms)\nWhen was the company founded?\tSouth Dakota\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (South Dakota, Find, companies) -> South Dakota (13050ms)\nWhen was the company founded?\tthe first place\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (any linking strategy, is being found in, the first place) -> the first place (13510ms)\nWhen was the company founded?\tExclusive B2B opportunities\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Exclusive B2B opportunities, find, companies) -> Exclusive B2B opportunities (13234ms)\nWhen was the company founded?\t100 countries\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald?s restaurants, are found in over, 100 countries) -> 100 countries (13069ms)\nWhen was the company founded?\t2002 Annual Report\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (its strategy, can be found in, 2002 Annual Report) -> 2002 Annual Report (13479ms)\nWhen was the company founded?\tthe event\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (an employee, is found In, the event) -> the event (13337ms)\nWhen was the company founded?\ta Auto motor sport magazine\t1.88888888888\tWhen was the company founded? -> $x: (audi, be found in, $x) -> (Audi A3, is found in, a Auto motor sport magazine) -> a Auto motor sport magazine (13609ms)\nWhen was the company founded?\tbasements\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Hopper windows, are typically found in, basements) -> basements (13649ms)\nWhen was the company founded?\tolder homes\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (window, is often found in, older homes) -> older homes (13269ms)\nWhen was the company founded?\t1 Corinthians\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, is found in, 1 Corinthians) -> 1 Corinthians (13143ms)\nWhen was the company founded?\tthe upper left corner\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (The Microsoft Office Button, is found in, the upper left corner) -> the upper left corner (13030ms)\nWhen was the company founded?\tthe Guardian\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisement More English wit, can be found in, the Guardian) -> the Guardian (13417ms)\nWhen was the company founded?\tDeborah Brake\t1.88888888888\tWhen was the company founded? -> $x: (reliance, be found in, $x) -> (reliance, can be found in, Deborah Brake) -> Deborah Brake (13649ms)\nWhen was the company founded?\tParaguay\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Paraguay, Find, Company) -> Paraguay (13197ms)\nWhen was the company founded?\tassociation\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, association) -> association (13417ms)\nWhen was the company founded?\tYoung 2001 , p\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (a Window ?, can be found in, Young 2001 , p) -> Young 2001 , p (13554ms)\nWhen was the company founded?\tmedical journals\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisements, are found in, medical journals) -> medical journals (13636ms)\nWhen was the company founded?\tthe columns\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (a Spanish advertisement, could be found in, the columns) -> the columns (13161ms)\nWhen was the company founded?\tWhole Foods\t1.88888888888\tWhen was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca-Cola brands, can be found in, Whole Foods) -> Whole Foods (13385ms)\nWhen was the company founded?\tBlack\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald, is found in, Black) -> Black (13622ms)\nWhen was the company founded?\tDirectory Description\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Directory Description, Find, companies) -> Directory Description (13353ms)\nWhen was the company founded?\tinsurance\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (insurance, finding, companies) -> insurance (13125ms)\nWhen was the company founded?\tstores\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike rajon rondo shoes, are found in, stores) -> stores (13216ms)\nWhen was the company founded?\tmanagerial\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> ('s employees, are found in, managerial) -> managerial (13636ms)\nWhen was the company founded?\tthe County Court\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (a former director, has been found guilty in, the County Court) -> the County Court (13143ms)\nWhen was the company founded?\tCompanies\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Companies, find, company) -> Companies (13525ms)\nWhen was the company founded?\tevery last detail\t1.88888888888\tWhen was the company founded? -> $x: (audus, be found in, $x) -> (the Audi A1, is found in, every last detail) -> every last detail (13448ms)\nWhen was the company founded?\twoodlands\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is commonly found in, woodlands) -> woodlands (13180ms)\nWhen was the company founded?\tan area\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Sarasota advertisement real estate, is found in, an area) -> an area (13582ms)\nWhen was the company founded?\tnumerous names\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (the Ancient Greek nike, can be found in, numerous names) -> numerous names (13582ms)\nWhen was the company founded?\tone place\t1.88888888888\tWhen was the company founded? -> $x: (insurance company, be found in, $x) -> (insurance companies, can be found all in, one place) -> one place (13337ms)\nWhen was the company founded?\tthe user-friendly menus\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (a strategy, can be easily found in, the user-friendly menus) -> the user-friendly menus (13369ms)\nWhen was the company founded?\texclusive Genuine Denim jeans\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (the Nike products, are found in, exclusive Genuine Denim jeans) -> exclusive Genuine Denim jeans (13286ms)\nWhen was the company founded?\tthe Centre\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (the same directors, can be found in, the Centre) -> the Centre (13234ms)\nWhen was the company founded?\tAmerica\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (America, found, companies) -> America (13595ms)\nWhen was the company founded?\tAustralia\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (these secretaries, is to find legal jobs in, Australia) -> Australia (13385ms)\nWhen was the company founded?\tspam emails\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (The job advertisements, can be found in, spam emails) -> spam emails (13510ms)\nWhen was the company founded?\tthe licensing aspects\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Window 8, might be found in, the licensing aspects) -> the licensing aspects (13030ms)\nWhen was the company founded?\tCosta Rica\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, Costa Rica) -> Costa Rica (13143ms)\nWhen was the company founded?\tinvestors\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (investors, find, companies) -> investors (13525ms)\nWhen was the company founded?\tusers\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (users, find, companies) -> users (13369ms)\nWhen was the company founded?\tKDE\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (KDE, find, companies) -> KDE (13401ms)\nWhen was the company founded?\tsexual harassment\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employee who, is found to have engaged in, sexual harassment) -> sexual harassment (13525ms)\nWhen was the company founded?\tNew Hampshire\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (New Hampshire, Find, companies) -> New Hampshire (13320ms)\nWhen was the company founded?\tVictorian homes\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (These windows, are often found in, Victorian homes) -> Victorian homes (13525ms)\nWhen was the company founded?\tflagrant violation\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (Any Director, found to be in, flagrant violation) -> flagrant violation (13011ms)\nWhen was the company founded?\ta new job\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (redundant employees, are helped in finding, a new job) -> a new job (13510ms)\nWhen was the company founded?\ta failure\t1.88888888888\tWhen was the company founded? -> $x: (insurance company, be found in, $x) -> (the insurance company, was found in, a failure) -> a failure (13161ms)\nWhen was the company founded?\tconcerted activity\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (an employee, was found to have engaged in, concerted activity) -> concerted activity (13649ms)\nWhen was the company founded?\tsocial networking sites\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisements, are found in, social networking sites) -> social networking sites (13662ms)\nWhen was the company founded?\tthe Senator?s apartment\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (a Senator?s secretary, is found dead in, the Senator?s apartment) -> the Senator?s apartment (13197ms)\nWhen was the company founded?\tthe simplicity\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows Server, can be found in, the simplicity) -> the simplicity (13011ms)\nWhen was the company founded?\twet meadows\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is often found in, wet meadows) -> wet meadows (13125ms)\nWhen was the company founded?\tthe register\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (company directors, can be found in, the register) -> the register (13582ms)\nWhen was the company founded?\tGoogle Maps\t1.88888888888\tWhen was the company founded? -> $x: (local company, be found in, $x) -> (your ?local? based company, is found in, Google Maps) -> Google Maps (13568ms)\nWhen was the company founded?\ta 6-square-mile area\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (the butterfly, has only been found in, a 6-square-mile area) -> a 6-square-mile area (13417ms)\nWhen was the company founded?\tvarious altitudes\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike Soccer Shoes, can be found in, various altitudes) -> various altitudes (13479ms)\nWhen was the company founded?\tpublications\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (many colour advertisements, are found in, publications) -> publications (13495ms)\nWhen was the company founded?\tseveral cases\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, has been found guilty recently in, several cases) -> several cases (13662ms)\nWhen was the company founded?\tBermuda\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (' employees, are to be found in, Bermuda) -> Bermuda (13662ms)\nWhen was the company founded?\tThe Information Toolkit\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, The Information Toolkit) -> The Information Toolkit (13216ms)\nWhen was the company founded?\tpossession\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (an employee/student, is found in, possession) -> possession (13636ms)\nWhen was the company founded?\tthe Copyright section\t1.88888888888\tWhen was the company founded? -> $x: (dell, be found in, $x) -> (Dell , Bryan and T-Duck, can be found in, the Copyright section) -> the Copyright section (13369ms)\nWhen was the company founded?\tan order\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (this Nike SWOOSH, was found in, an order) -> an order (13401ms)\nWhen was the company founded?\ta small conference room\t1.88888888888\tWhen was the company founded? -> $x: (auditor, be found in, $x) -> (the auditor, are found together in, a small conference room) -> a small conference room (13143ms)\nWhen was the company founded?\tabandoned churches and schools\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (glass windows, can be found in, abandoned churches and schools) -> abandoned churches and schools (13596ms)\nWhen was the company founded?\tthe Shop Floor module\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (The employee number, can be found in, the Shop Floor module) -> the Shop Floor module (13622ms)\nWhen was the company founded?\tspecific areas\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, specific areas) -> specific areas (13595ms)\nWhen was the company founded?\tthe interview\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be can be found in, the interview) -> the interview (13495ms)\nWhen was the company founded?\tVictoria\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterfly species, are found in, Victoria) -> Victoria (13050ms)\nWhen was the company founded?\tD102\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (the Biology Department Secretary, can be found in, D102) -> D102 (13417ms)\nWhen was the company founded?\tthe Start Menu\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Sound Recorder, can be found in, the Start Menu) -> the Start Menu (13662ms)\nWhen was the company founded?\tMaya architecture\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (True windows, are rarely found in, Maya architecture) -> Maya architecture (13582ms)\nWhen was the company founded?\tliterate programming\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, are found in, literate programming) -> literate programming (13662ms)\nWhen was the company founded?\tthe 2003 MA Buffer Zone Manual\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (This strategy, can be found in, the 2003 MA Buffer Zone Manual) -> the 2003 MA Buffer Zone Manual (13320ms)\nWhen was the company founded?\tsippy cups\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisement BPA, is found in, sippy cups) -> sippy cups (13662ms)\nWhen was the company founded?\tan A.T. Kearney study\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (an A.T. Kearney study, finds, companies) -> an A.T. Kearney study (13125ms)\nWhen was the company founded?\taggregations\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is sometimes found in, aggregations) -> aggregations (13525ms)\nWhen was the company founded?\tlow\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is found in, low) -> low (13369ms)\nWhen was the company founded?\tthe middle\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (a truck company employee, is found in, the middle) -> the middle (13433ms)\nWhen was the company founded?\tseveral designs and sizes\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, several designs and sizes) -> several designs and sizes (13595ms)\nWhen was the company founded?\tplastics\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisement Phthalates, are found in, plastics) -> plastics (13197ms)\nWhen was the company founded?\t2010\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (2010, finds, companies) -> 2010 (13479ms)\nWhen was the company founded?\tIndianapolis\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Indianapolis, Find, Company) -> Indianapolis (13525ms)\nWhen was the company founded?\tthe S class\t1.88888888888\tWhen was the company founded? -> $x: (audi, be found in, $x) -> (Audi, is found in, the S class) -> the S class (13269ms)\nWhen was the company founded?\tthe chapter\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (teaching strategies, can be found in, the chapter) -> the chapter (13320ms)\nWhen was the company founded?\tSearch Techniques Dialog Search Tip\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Search Techniques Dialog Search Tip, Find, companies) -> Search Techniques Dialog Search Tip (13143ms)\nWhen was the company founded?\tcorruption\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (183 employees, were found involved in, corruption) -> corruption (13337ms)\nWhen was the company founded?\topen areas\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterflies, are normally found in, open areas) -> open areas (13234ms)\nWhen was the company founded?\tthe far north\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies and bees, are found in, the far north) -> the far north (13479ms)\nWhen was the company founded?\tGuillermo Del Toro\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (a director, had been found in, Guillermo Del Toro) -> Guillermo Del Toro (13337ms)\nWhen was the company founded?\tMSKB 246817\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, can be found in, MSKB 246817) -> MSKB 246817 (13234ms)\nWhen was the company founded?\t27 hospitals\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald, is found in, 27 hospitals) -> 27 hospitals (13417ms)\nWhen was the company founded?\tan entire apartment\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (one window, was found in, an entire apartment) -> an entire apartment (13269ms)\nWhen was the company founded?\tthe following May issue\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (technical director, may be found in, the following May issue) -> the following May issue (13675ms)\nWhen was the company founded?\tthe left navigation area\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (Legal Secretary, can be found in, the left navigation area) -> the left navigation area (13636ms)\nWhen was the company founded?\tthe help articles\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (Success strategies, can be found in, the help articles) -> the help articles (13464ms)\nWhen was the company founded?\tSoft Ground\t1.88888888888\tWhen was the company founded? -> $x: (adidas, be found in, $x) -> (The Adidas F10, can be found in, Soft Ground) -> Soft Ground (13252ms)\nWhen was the company founded?\tSection 13\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (asbestos employees, can be found in, Section 13) -> Section 13 (13479ms)\nWhen was the company founded?\tchapter 5\t1.88888888888\tWhen was the company founded? -> $x: (auditor, be found in, $x) -> (the Public Auditor, are found in, chapter 5) -> chapter 5 (13623ms)\nWhen was the company founded?\ta park\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald, was found alone in, a park) -> a park (13649ms)\nWhen was the company founded?\twet\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, wet) -> wet (13011ms)\nWhen was the company founded?\tthe north choir clearstorey\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (such windows, are to be found in, the north choir clearstorey) -> the north choir clearstorey (13688ms)\nWhen was the company founded?\tthe installation guide\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the installation guide) -> the installation guide (13252ms)\nWhen was the company founded?\tcustomers\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisement, is always powerful in finding, customers) -> customers (13286ms)\nWhen was the company founded?\tNepal\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, Nepal) -> Nepal (13622ms)\nWhen was the company founded?\tPart One\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (The strategies, are found in, Part One) -> Part One (13622ms)\nWhen was the company founded?\tthe trunk\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (Store employee Abdel Hamdan, was found safe in, the trunk) -> the trunk (13353ms)\nWhen was the company founded?\tthe document monitor .xml\t1.88888888888\tWhen was the company founded? -> $x: (dell, be found in, $x) -> (Dell, is found in, the document monitor .xml) -> the document monitor .xml (13353ms)\nWhen was the company founded?\tthe opt directory\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (The portal director, can be found in, the opt directory) -> the opt directory (13320ms)\nWhen was the company founded?\ta probe\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (a probe, found, companies) -> a probe (13106ms)\nWhen was the company founded?\tthe collections\t1.88888888888\tWhen was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel, can be found in, the collections) -> the collections (13596ms)\nWhen was the company founded?\tNYC.\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (my brilliant director friend, is normally found in, NYC.) -> NYC. (13320ms)\nWhen was the company founded?\tAppendix I.\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (the Library Director, can be found in, Appendix I.) -> Appendix I. (13353ms)\nWhen was the company founded?\toakwoods\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, oakwoods) -> oakwoods (13554ms)\nWhen was the company founded?\tfree conference venue\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (free conference venue, finding, company) -> free conference venue (13568ms)\nWhen was the company founded?\tBusiness Directory\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Business Directory, Find, companies) -> Business Directory (13636ms)\nWhen was the company founded?\tan incorrect?and\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, were found in, an incorrect?and) -> an incorrect?and (13568ms)\nWhen was the company founded?\tSection 13.3\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (locking strategies, can be found in, Section 13.3) -> Section 13.3 (13675ms)\nWhen was the company founded?\tthe /nt directory\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows NT, can be found in, the /nt directory) -> the /nt directory (13161ms)\nWhen was the company founded?\tthe biggest problems\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (the biggest problems, find, companies) -> the biggest problems (13385ms)\nWhen was the company founded?\tAppendix 1\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employee evaluations, is found in, Appendix 1) -> Appendix 1 (13623ms)\nWhen was the company founded?\tcorporations\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, is typically found in, corporations) -> corporations (13568ms)\nWhen was the company founded?\tvarious types\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike Men Shoes, can be found in, various types) -> various types (13622ms)\nWhen was the company founded?\tJapanese addresses\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, so is often found in, Japanese addresses) -> Japanese addresses (13234ms)\nWhen was the company founded?\tArticle A\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employee, are found in, Article A) -> Article A (13069ms)\nWhen was the company founded?\tConnecticut\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Connecticut, Find, companies) -> Connecticut (13161ms)\nWhen was the company founded?\tevery habitat\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, are to be found in nearly, every habitat) -> every habitat (13088ms)\nWhen was the company founded?\tSection 4.2.8\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (window functions, can be found in, Section 4.2.8) -> Section 4.2.8 (13595ms)\nWhen was the company founded?\tthe File menu\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Word, is found in, the File menu) -> the File menu (13662ms)\nWhen was the company founded?\tMexico\t1.88888888888\tWhen was the company founded? -> $x: (coca cola, be found in, $x) -> (Glass Coca-Cola bottles, are very hard to find in, Mexico) -> Mexico (13369ms)\nWhen was the company founded?\tthe links\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, can be found in, the links) -> the links (13320ms)\nWhen was the company founded?\t90 percent\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, is found in about, 90 percent) -> 90 percent (13337ms)\nWhen was the company founded?\tTulsa\t1.88888888888\tWhen was the company founded? -> $x: (coca cola, be found in, $x) -> (kosher-for-Passover Coca-Cola, can be found in, Tulsa) -> Tulsa (13106ms)\nWhen was the company founded?\tKensington\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (Tim McDonald, is finding the vacant land in, Kensington) -> Kensington (13662ms)\nWhen was the company founded?\tNICHCY\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (helpful strategies, can be found in, NICHCY) -> NICHCY (13286ms)\nWhen was the company founded?\tthe next section\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (school employees, can be found in, the next section) -> the next section (13636ms)\nWhen was the company founded?\tdifferent asset classes\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (Strategy funds, can also be found in, different asset classes) -> different asset classes (13417ms)\nWhen was the company founded?\tGeorgian and Victorian homes\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (window design, is often found in, Georgian and Victorian homes) -> Georgian and Victorian homes (13510ms)\nWhen was the company founded?\tIT and finance\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, can be found in, IT and finance) -> IT and finance (13433ms)\nWhen was the company founded?\tsecs\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (state employees, are found in, secs) -> secs (13286ms)\nWhen was the company founded?\tA lonely little boy\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (A lonely little boy, finds, company) -> A lonely little boy (13595ms)\nWhen was the company founded?\tdeposits\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly fossils, have been found in, deposits) -> deposits (13595ms)\nWhen was the company founded?\tSaint Mary\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (The windows, are found in, Saint Mary) -> Saint Mary (13609ms)\nWhen was the company founded?\tSAM Broadcaster\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (This window, is found in, SAM Broadcaster) -> SAM Broadcaster (13479ms)\nWhen was the company founded?\tthe forest\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can be found in, the forest) -> the forest (13464ms)\nWhen was the company founded?\tconsumers\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (consumers, find, companies) -> consumers (13636ms)\nWhen was the company founded?\tthe planet\t1.88888888888\tWhen was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca Cola, can be found everywhere in, the planet) -> the planet (13353ms)\nWhen was the company founded?\tnumerous dimensions\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, numerous dimensions) -> numerous dimensions (13495ms)\nWhen was the company founded?\t1110ll\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (1110ll, find, companies) -> 1110ll (13286ms)\nWhen was the company founded?\tthe living room area\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (A window, was found damaged in, the living room area) -> the living room area (13636ms)\nWhen was the company founded?\tcopies\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (These advertisements, are found in, copies) -> copies (13369ms)\nWhen was the company founded?\tCalifornia\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is found only in, California) -> California (13216ms)\nWhen was the company founded?\tmore plants\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, is found in, more plants) -> more plants (13539ms)\nWhen was the company founded?\tthe original conference venue\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (the original conference venue, finding, company) -> the original conference venue (13464ms)\nWhen was the company founded?\tthe wealth\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, is found in, the wealth) -> the wealth (13269ms)\nWhen was the company founded?\tabout 90 percent of all computer desktops\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, is found in, about 90 percent of all computer desktops) -> about 90 percent of all computer desktops (13161ms)\nWhen was the company founded?\tthe link\t1.88888888888\tWhen was the company founded? -> $x: (adidas, be found in, $x) -> (the Adidas Barricade IV tennis shoes, can be found in, the link) -> the link (13106ms)\nWhen was the company founded?\tthe rainforests\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Morpho butterflies, are found in, the rainforests) -> the rainforests (13197ms)\nWhen was the company founded?\tdownloads\t1.88888888888\tWhen was the company founded? -> $x: (ibm, be found in, $x) -> (IBM, can be found in, downloads) -> downloads (13088ms)\nWhen was the company founded?\tMichael Tracy\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (company strategy, can be found in, Michael Tracy) -> Michael Tracy (13623ms)\nWhen was the company founded?\tLocation\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Location, Find, companies) -> Location (13180ms)\nWhen was the company founded?\tthe OMRS Journal\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (the Branch Secretary, can be found in, the OMRS Journal) -> the OMRS Journal (13609ms)\nWhen was the company founded?\tthe downloads section\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, can be found in, the downloads section) -> the downloads section (13479ms)\nWhen was the company founded?\tBusiness owners\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Business owners, find, ... Company) -> Business owners (13303ms)\nWhen was the company founded?\tBain\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Bain, found, companies) -> Bain (13030ms)\nWhen was the company founded?\tApril 2000\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, was found guilty in, April 2000) -> April 2000 (13609ms)\nWhen was the company founded?\tthe brushy fields\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterfly species, can be found in, the brushy fields) -> the brushy fields (13197ms)\nWhen was the company founded?\tsection 115\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (Directors, is found in, section 115) -> section 115 (13675ms)\nWhen was the company founded?\tParadise\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Paradise, Found, Company) -> Paradise (13030ms)\nWhen was the company founded?\tthe 04/26/97 Feature\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The first butterfly chart, is found in, the 04/26/97 Feature) -> the 04/26/97 Feature (13417ms)\nWhen was the company founded?\tThe study\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (The study, found, companies) -> The study (13636ms)\nWhen was the company founded?\tStandard 5A3\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (the program director, are found in, Standard 5A3) -> Standard 5A3 (13539ms)\nWhen was the company founded?\tgallbladder\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (the secretary tubules, be found in, gallbladder) -> gallbladder (12990ms)\nWhen was the company founded?\tthe City\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (all employees, are found in, the City) -> the City (13143ms)\nWhen was the company founded?\ta letter\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly, was found in, a letter) -> a letter (13143ms)\nWhen was the company founded?\tmature economies\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (entrepreneurial employees, are found in, mature economies) -> mature economies (13320ms)\nWhen was the company founded?\tLogicIrpDispatcher\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, LogicIrpDispatcher) -> LogicIrpDispatcher (13161ms)\nWhen was the company founded?\tViewers\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Viewers, find, company) -> Viewers (13125ms)\nWhen was the company founded?\tthe same presentation\t1.88888888888\tWhen was the company founded? -> $x: (barbie, be found in, $x) -> (the Barbie 2010, can be found in, the same presentation) -> the same presentation (13385ms)\nWhen was the company founded?\tentrepreneurs\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (entrepreneurs, found, companies) -> entrepreneurs (13582ms)\nWhen was the company founded?\tportions\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, can be found in, portions) -> portions (13662ms)\nWhen was the company founded?\tthe adoption\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (the strategy, may be found in, the adoption) -> the adoption (13125ms)\nWhen was the company founded?\tAfrica\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is found in, Africa) -> Africa (13286ms)\nWhen was the company founded?\tthe concept\t1.88888888888\tWhen was the company founded? -> $x: (company law, be found in, $x) -> (company law, can be found in, the concept) -> the concept (13320ms)\nWhen was the company founded?\tthe back\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisements, were often found in, the back) -> the back (13269ms)\nWhen was the company founded?\tthe Ile de France\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (rose windows, are to be found in, the Ile de France) -> the Ile de France (13216ms)\nWhen was the company founded?\tthe Native American Legend\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can be found in, the Native American Legend) -> the Native American Legend (13448ms)\nWhen was the company founded?\tsubsidiary decisions\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, is found more in, subsidiary decisions) -> subsidiary decisions (13180ms)\nWhen was the company founded?\tAsia\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (this butterfly, can be found only in, Asia) -> Asia (13234ms)\nWhen was the company founded?\tthe resourceful side\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (Alternate strategies, might be found in, the resourceful side) -> the resourceful side (13252ms)\nWhen was the company founded?\tthe work\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, may be found in, the work) -> the work (13675ms)\nWhen was the company founded?\tYou?ll\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (You?ll, find, company) -> You?ll (13479ms)\nWhen was the company founded?\tInsert option\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Word, is found in, Insert option) -> Insert option (13495ms)\nWhen was the company founded?\tbelief\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (The Nike SB dive brands, can be found in, belief) -> belief (13369ms)\nWhen was the company founded?\tmeadows\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Monarch butterflies, are found in, meadows) -> meadows (13030ms)\nWhen was the company founded?\tstores coast\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike basketball kicks, are found in, stores coast) -> stores coast (13050ms)\nWhen was the company founded?\tthe libero extension\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (this window, can be found in, the libero extension) -> the libero extension (13010ms)\nWhen was the company founded?\tEast Perth\t1.88888888888\tWhen was the company founded? -> $x: (audus, be found in, $x) -> (The stolen Audi, was found burning in, East Perth) -> East Perth (13554ms)\nWhen was the company founded?\tthe company accounts\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, can be found in, the company accounts) -> the company accounts (13662ms)\nWhen was the company founded?\tdowntown areas\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (KFC and McDonalds, can be found in, downtown areas) -> downtown areas (13353ms)\nWhen was the company founded?\tEnglish pubs\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (windows, can still sometimes be found in, English pubs) -> English pubs (13011ms)\nWhen was the company founded?\ta position\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (more employees, are finding themselves in, a position) -> a position (13582ms)\nWhen was the company founded?\tAppendices 1 , 2\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (management strategies, can be found in, Appendices 1 , 2) -> Appendices 1 , 2 (13525ms)\nWhen was the company founded?\tthe bag\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Nike Golf equipment, can be found in, the bag) -> the bag (13197ms)\nWhen was the company founded?\tone vault\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (Three employees, were found in, one vault) -> one vault (13030ms)\nWhen was the company founded?\tthe Human Resources Manual\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (SPA employees, are found in, the Human Resources Manual) -> the Human Resources Manual (13106ms)\nWhen was the company founded?\tthe directors\t1.88888888888\tWhen was the company founded? -> $x: (auditor, be found in, $x) -> (its auditors, may be found in, the directors) -> the directors (13609ms)\nWhen was the company founded?\tthe Sunday edition\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Some bid advertisements, may be found in, the Sunday edition) -> the Sunday edition (13269ms)\nWhen was the company founded?\tthe meantime\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, have been found in, the meantime) -> the meantime (13622ms)\nWhen was the company founded?\tbig cities\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (Official Nike stores, are found in, big cities) -> big cities (13401ms)\nWhen was the company founded?\tthe relevant award\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employee, can be found in, the relevant award) -> the relevant award (13495ms)\nWhen was the company founded?\tInsteantGet\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (windows explorer, could be found in, InsteantGet) -> InsteantGet (13662ms)\nWhen was the company founded?\tthe cellar\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald, was found in, the cellar) -> the cellar (13401ms)\nWhen was the company founded?\tthe front pages\t1.88888888888\tWhen was the company founded? -> $x: (local company, be found in, $x) -> (local phone companies, should be found in, the front pages) -> the front pages (13417ms)\nWhen was the company founded?\ta redesigned user interface\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows 7, can be found in, a redesigned user interface) -> a redesigned user interface (13385ms)\nWhen was the company founded?\tthe ANSI Constitution\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (Directors, can be found in, the ANSI Constitution) -> the ANSI Constitution (13417ms)\nWhen was the company founded?\tthe biggest markets\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (news directors, are most commonly found in, the biggest markets) -> the biggest markets (13688ms)\nWhen was the company founded?\tMetro\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft?s Ribbon, can be found nowhere in, Metro) -> Metro (13623ms)\nWhen was the company founded?\tthe vast majority\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows Server, are found in, the vast majority) -> the vast majority (13525ms)\nWhen was the company founded?\talso information\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (also information, found, company) -> also information (13609ms)\nWhen was the company founded?\ta study\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (a study, found, companies) -> a study (13143ms)\nWhen was the company founded?\tthe Windows root directory\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, will be found in, the Windows root directory) -> the Windows root directory (13050ms)\nWhen was the company founded?\t1923\t1.88888888888\tWhen was the company founded? -> $x: (insurance company, be found in, $x) -> (The national health insurance company, was found in, 1923) -> 1923 (13069ms)\nWhen was the company founded?\tArticle VI\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (Directors, can also be found in, Article VI) -> Article VI (13401ms)\nWhen was the company founded?\tErie\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Erie, Find, Company) -> Erie (13649ms)\nWhen was the company founded?\tmetallic silver paint\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald?s, were found covered in, metallic silver paint) -> metallic silver paint (13011ms)\nWhen was the company founded?\tHarvey\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Harvey, found, company) -> Harvey (13011ms)\nWhen was the company founded?\tinterviews\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (interviews, find, companies) -> interviews (13401ms)\nWhen was the company founded?\tcertain scenarios\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (further strategies, is often found in, certain scenarios) -> certain scenarios (13649ms)\nWhen was the company founded?\tNucleus\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Nucleus, found, companies) -> Nucleus (13069ms)\nWhen was the company founded?\tdo-it-yourself books\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (Arbor strategies, can be found in, do-it-yourself books) -> do-it-yourself books (13320ms)\nWhen was the company founded?\tthe management section\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (all the directors, can be found in, the management section) -> the management section (13582ms)\nWhen was the company founded?\tIndia\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (? strategy, can be found in, India) -> India (13234ms)\nWhen was the company founded?\tstudents\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (students, find, company) -> students (13303ms)\nWhen was the company founded?\tChapter 8\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, may be found in, Chapter 8) -> Chapter 8 (13464ms)\nWhen was the company founded?\tthe JAC Internal Web.\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (any employee, can be found in, the JAC Internal Web.) -> the JAC Internal Web. (13675ms)\nWhen was the company founded?\tMuskegon\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (The following advertisement, was found in, Muskegon) -> Muskegon (13448ms)\nWhen was the company founded?\tthe south central region\t1.88888888888\tWhen was the company founded? -> $x: (dell, be found in, $x) -> (The Dells, can be found in, the south central region) -> the south central region (13303ms)\nWhen was the company founded?\tthe document\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (maintenance windows, can be found in, the document) -> the document (12990ms)\nWhen was the company founded?\tA recent report\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (A recent report, finds, companies) -> A recent report (13582ms)\nWhen was the company founded?\tJapan\t1.88888888888\tWhen was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonalds shops, can easily be found in, Japan) -> Japan (13433ms)\nWhen was the company founded?\tImmigrants\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Immigrants, found, companies) -> Immigrants (13464ms)\nWhen was the company founded?\tseveral designs\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Window shades, can be found in, several designs) -> several designs (13010ms)\nWhen was the company founded?\tteeth , bone and plant stems\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategies, are also found in, teeth , bone and plant stems) -> teeth , bone and plant stems (13069ms)\nWhen was the company founded?\teurope\t1.88888888888\tWhen was the company founded? -> $x: (audi, be found in, $x) -> (the audi a3, was found in, europe) -> europe (13636ms)\nWhen was the company founded?\tseveral places\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, several places) -> several places (13197ms)\nWhen was the company founded?\tbathroom\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (WINDOW, is often found in, bathroom) -> bathroom (13337ms)\nWhen was the company founded?\ttough times\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (tough times, find, companies) -> tough times (13609ms)\nWhen was the company founded?\tKids\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Kids, find, company) -> Kids (13269ms)\nWhen was the company founded?\tMoving business California\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Moving business California, finds, company) -> Moving business California (13216ms)\nWhen was the company founded?\tsuch multitudes\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, were found in, such multitudes) -> such multitudes (13286ms)\nWhen was the company founded?\tdiverse likes\t1.88888888888\tWhen was the company founded? -> $x: (chanel, be found in, $x) -> (chanel earrings, can be found in, diverse likes) -> diverse likes (13385ms)\nWhen was the company founded?\tTarantella\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> ('s directors and officers, can be found in, Tarantella) -> Tarantella (13510ms)\nWhen was the company founded?\tthe most remote villages\t1.88888888888\tWhen was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca Cola, could be found even in, the most remote villages) -> the most remote villages (13582ms)\nWhen was the company founded?\tRFC 1519\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, may be found in, RFC 1519) -> RFC 1519 (13622ms)\nWhen was the company founded?\tMarketplace\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows Phone, can be found in, Marketplace) -> Marketplace (13125ms)\nWhen was the company founded?\tconiferous forests\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is most commonly found in, coniferous forests) -> coniferous forests (13303ms)\nWhen was the company founded?\talleged fraud\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (government employees, are found in, alleged fraud) -> alleged fraud (13269ms)\nWhen was the company founded?\ta number\t1.88888888888\tWhen was the company founded? -> $x: (insurance company, be found in, $x) -> (Insurance companies, can be found in, a number) -> a number (13595ms)\nWhen was the company founded?\tMoving company CA\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Moving company CA, finds, company) -> Moving company CA (13143ms)\nWhen was the company founded?\tbulletin boards and walls\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (print advertisements, can be found in, bulletin boards and walls) -> bulletin boards and walls (13675ms)\nWhen was the company founded?\tSeries IX\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, Series IX) -> Series IX (13216ms)\nWhen was the company founded?\ta weird loner\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (a weird loner, finds, company) -> a weird loner (13539ms)\nWhen was the company founded?\tthe Plitvice Lakes area\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are also found in, the Plitvice Lakes area) -> the Plitvice Lakes area (13636ms)\nWhen was the company founded?\tthe original style\t1.88888888888\tWhen was the company founded? -> $x: (nike, be found in, $x) -> (this nike air jordan, can be found in, the original style) -> the original style (13525ms)\nWhen was the company founded?\t6 other districts\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (employees, are also found in, 6 other districts) -> 6 other districts (13088ms)\nWhen was the company founded?\tDebt-Proof Your Marriage\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, Debt-Proof Your Marriage) -> Debt-Proof Your Marriage (13662ms)\nWhen was the company founded?\tnetworking\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, can be found in, networking) -> networking (13582ms)\nWhen was the company founded?\tthe summer issue\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (Executive Director, can be found in, the summer issue) -> the summer issue (13252ms)\nWhen was the company founded?\tcold climates\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (storm windows, are often found in, cold climates) -> cold climates (13495ms)\nWhen was the company founded?\tnew businesses\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (new businesses, find, companies) -> new businesses (13197ms)\nWhen was the company founded?\tone small car\t1.88888888888\tWhen was the company founded? -> $x: (audus, be found in, $x) -> (classic Audi refinement, can now be found in, one small car) -> one small car (13252ms)\nWhen was the company founded?\tthe Reserve\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, the Reserve) -> the Reserve (13510ms)\nWhen was the company founded?\tSystem Tools\t1.88888888888\tWhen was the company founded? -> $x: (microsoft, be found in, $x) -> (The Microsoft Backup utility, can be found in, System Tools) -> System Tools (13180ms)\nWhen was the company founded?\tFinnfirma\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Finnfirma, Find, Companies) -> Finnfirma (13554ms)\nWhen was the company founded?\tan appropriate site\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (office employees, were helpful in finding, an appropriate site) -> an appropriate site (13609ms)\nWhen was the company founded?\tparks\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is found in, parks) -> parks (13303ms)\nWhen was the company founded?\tAmerican newspapers\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (Many print advertisements, can be found in, American newspapers) -> American newspapers (13510ms)\nWhen was the company founded?\twide selection\t1.88888888888\tWhen was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel Bags online, can be found in, wide selection) -> wide selection (13417ms)\nWhen was the company founded?\tAIIM\t1.88888888888\tWhen was the company founded? -> $x: (company member, be found in, $x) -> (All active member companies, can be found in, AIIM) -> AIIM (13088ms)\nWhen was the company founded?\tthe Appendix\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, can be found in, the Appendix) -> the Appendix (13107ms)\nWhen was the company founded?\tSection 12.3\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (locking strategies, can be found in, Section 12.3) -> Section 12.3 (13216ms)\nWhen was the company founded?\tthe Jobs section\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (current job advertisements, can be found in, the Jobs section) -> the Jobs section (13161ms)\nWhen was the company founded?\tthe Club Newsletter\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (Branches Secretaries, can be found in, the Club Newsletter) -> the Club Newsletter (13107ms)\nWhen was the company founded?\tHayley\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (' butterfly, was found in, Hayley) -> Hayley (13495ms)\nWhen was the company founded?\teconomics textbooks\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, cannot be found in, economics textbooks) -> economics textbooks (13337ms)\nWhen was the company founded?\tAdjustors\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Adjustors, find, company) -> Adjustors (13539ms)\nWhen was the company founded?\tmore than 200 countries\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows Mobile, can be found in, more than 200 countries) -> more than 200 countries (13539ms)\nWhen was the company founded?\tthe Program Files directory\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, is typically found in, the Program Files directory) -> the Program Files directory (13303ms)\nWhen was the company founded?\tthe basement\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (windows, is found in, the basement) -> the basement (13385ms)\nWhen was the company founded?\tControl Panel\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows Update, can be found in, Control Panel) -> Control Panel (13540ms)\nWhen was the company founded?\tthe latest\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows 8, will be found in, the latest) -> the latest (13269ms)\nWhen was the company founded?\tThe Open Conspiracy\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (tactical strategy, may be found in, The Open Conspiracy) -> The Open Conspiracy (13675ms)\nWhen was the company founded?\ta forest\t1.88888888888\tWhen was the company founded? -> $x: (secretary, be found in, $x) -> (his secretary Arajaris Campos, are found in, a forest) -> a forest (13495ms)\nWhen was the company founded?\ta multitude\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (glass windows, are still found in, a multitude) -> a multitude (13337ms)\nWhen was the company founded?\tProperty\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Property, finding, company) -> Property (13554ms)\nWhen was the company founded?\tthe same localities\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, can be found in, the same localities) -> the same localities (13106ms)\nWhen was the company founded?\tthe way people\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (the way people, find, companies) -> the way people (13180ms)\nWhen was the company founded?\tIstanbul\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Istanbul, Find, Company) -> Istanbul (13125ms)\nWhen was the company founded?\tthe exhibit\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (the exhibit, found, companies) -> the exhibit (13216ms)\nWhen was the company founded?\tHill et al\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, Hill et al) -> Hill et al (13106ms)\nWhen was the company founded?\tthe finest specialty stores\t1.88888888888\tWhen was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel bags, can be found in, the finest specialty stores) -> the finest specialty stores (13030ms)\nWhen was the company founded?\ta few chapels\t1.88888888888\tWhen was the company founded? -> $x: (microsoft windows, be found in, $x) -> (microsoft windows, are still found in quite, a few chapels) -> a few chapels (13609ms)\nWhen was the company founded?\tOhio\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Ohio, Find, Company) -> Ohio (13649ms)\nWhen was the company founded?\tWilliam Langland?s depiction\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, is found in, William Langland?s depiction) -> William Langland?s depiction (13609ms)\nWhen was the company founded?\tflagstone buildings\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (windows, are often found in, flagstone buildings) -> flagstone buildings (13252ms)\nWhen was the company founded?\tthe file docs\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the file docs) -> the file docs (13106ms)\nWhen was the company founded?\tthe official website\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisement videos, can be found in, the official website) -> the official website (13303ms)\nWhen was the company founded?\tthe same location\t1.88888888888\tWhen was the company founded? -> $x: (employee, be found in, $x) -> (an employee, was found in, the same location) -> the same location (13180ms)\nWhen was the company founded?\tsolutions\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (the Director, is deeply involved in finding, solutions) -> solutions (13495ms)\nWhen was the company founded?\ta form\t1.88888888888\tWhen was the company founded? -> $x: (windows, be found in, $x) -> (Windows Commander, can be found in, a form) -> a form (13595ms)\nWhen was the company founded?\thedge funds\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (strategies, are most typically found in, hedge funds) -> hedge funds (13269ms)\nWhen was the company founded?\tevery part\t1.88888888888\tWhen was the company founded? -> $x: (local company, be found in, $x) -> (both local and offshore companies, are found in, every part) -> every part (13252ms)\nWhen was the company founded?\tthe Annex\t1.88888888888\tWhen was the company founded? -> $x: (advertisement, be found in, $x) -> (an advertisement, can be found in, the Annex) -> the Annex (13568ms)\nWhen was the company founded?\tthe Woodcroft area\t1.88888888888\tWhen was the company founded? -> $x: (kroger, be found in, $x) -> (Another Kroger, can be found in, the Woodcroft area) -> the Woodcroft area (13320ms)\nWhen was the company founded?\tAppendix C\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (The search strategies, can be found in, Appendix C) -> Appendix C (13448ms)\nWhen was the company founded?\tnecessity\t1.88888888888\tWhen was the company founded? -> $x: (director, be found in, $x) -> (many museum directors, are finding virtue in, necessity) -> necessity (13495ms)\nWhen was the company founded?\tdifferent types\t1.88888888888\tWhen was the company founded? -> $x: (strategy, be found in, $x) -> (This strategy, is also found in, different types) -> different types (13582ms)\nWhen was the company founded?\tthe Sertoma Butterfly House\t1.88888888888\tWhen was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, can be found in, the Sertoma Butterfly House) -> the Sertoma Butterfly House (13161ms)\nWhen was the company founded?\tRhode Island\t1.88888888888\tWhen was the company founded? -> $x: ($x, found, company) -> (Rhode Island, Find, companies) -> Rhode Island (13197ms)\nWhen was the company founded?\tChangSha Hunan\t1.555555555546\tWhen was the company founded? -> $x: (parent company, be found in, $x) -> (The parent company, is found in, ChangSha Hunan) -> ChangSha Hunan (13688ms)\nWhen was the company founded?\temails\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (emails, found on, computers) -> emails (13716ms)\nWhen was the company founded?\tPolice\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Police, found, computers) -> Police (13716ms)\nWhen was the company founded?\tIslamabad\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Islamabad, found, computers) -> Islamabad (13728ms)\nWhen was the company founded?\tuse\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (use, Find, Computer) -> use (13688ms)\nWhen was the company founded?\ta plain text editor program\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (a plain text editor program, found on, computers) -> a plain text editor program (13688ms)\nWhen was the company founded?\tpersonal belief\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (personal belief, found on, computers) -> personal belief (13700ms)\nWhen was the company founded?\tCoalition forces\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Coalition forces, also found, computers) -> Coalition forces (13728ms)\nWhen was the company founded?\tLatin and Chemistry\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Latin and Chemistry, found, computers) -> Latin and Chemistry (13728ms)\nWhen was the company founded?\tonline shoppers\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (online shoppers, find, computers) -> online shoppers (13728ms)\nWhen was the company founded?\tindustrial batteries\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (industrial batteries, found in, computers) -> industrial batteries (13728ms)\nWhen was the company founded?\tThe company\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (The company, finds, computers) -> The company (13728ms)\nWhen was the company founded?\tdata-storage mechanism\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (data-storage mechanism, found in, computers) -> data-storage mechanism (13716ms)\nWhen was the company founded?\tNo web sites\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (No web sites, found in, Computers) -> No web sites (13740ms)\nWhen was the company founded?\thazardous materials\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (hazardous materials, found in, computers) -> hazardous materials (13728ms)\nWhen was the company founded?\t? NASA\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (? NASA, found, computers) -> ? NASA (13728ms)\nWhen was the company founded?\tthe students\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the students, find, computers) -> the students (13728ms)\nWhen was the company founded?\tPorn\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Porn, found on, computer) -> Porn (13740ms)\nWhen was the company founded?\tfree sites\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (free sites, find, computer) -> free sites (13716ms)\nWhen was the company founded?\tOld grey bastard\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Old grey bastard, finds, computer) -> Old grey bastard (13728ms)\nWhen was the company founded?\tPython Angel\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Python Angel, Find, computer) -> Python Angel (13703ms)\nWhen was the company founded?\tchild pornography\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (child pornography, found on, computers) -> child pornography (13716ms)\nWhen was the company founded?\tthe newer SATA connections\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the newer SATA connections, found on, computers) -> the newer SATA connections (13740ms)\nWhen was the company founded?\tDialog\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Dialog, find, computers) -> Dialog (13700ms)\nWhen was the company founded?\tDesktop\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Desktop, cannot find, computer) -> Desktop (13740ms)\nWhen was the company founded?\tStart\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Start, Find, -> Computer) -> Start (13716ms)\nWhen was the company founded?\tDecember 2010\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (December 2010, found, computers) -> December 2010 (13716ms)\nWhen was the company founded?\tthe terrorists\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the terrorists, also found, computers) -> the terrorists (13703ms)\nWhen was the company founded?\tmercury and lead\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (mercury and lead, found in, computers) -> mercury and lead (13700ms)\nWhen was the company founded?\tPositive Most people\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Positive Most people, find, computers) -> Positive Most people (13700ms)\nWhen was the company founded?\tauthorities\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (authorities, found, computers) -> authorities (13740ms)\nWhen was the company founded?\tautism\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (autism, find, computers) -> autism (13728ms)\nWhen was the company founded?\tPGN] Bargain Harold\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (PGN] Bargain Harold, finds, computers) -> PGN] Bargain Harold (13728ms)\nWhen was the company founded?\tthe type\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the type, found in, computers) -> the type (13716ms)\nWhen was the company founded?\tthe most common operating systems\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the most common operating systems, found on, computers) -> the most common operating systems (13700ms)\nWhen was the company founded?\tViagra Viagra Edinburgh Search\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Viagra Viagra Edinburgh Search, Find, Computer) -> Viagra Viagra Edinburgh Search (13700ms)\nWhen was the company founded?\tdeputies\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (deputies, found, computers) -> deputies (13688ms)\nWhen was the company founded?\tSunday\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Sunday, found, computers) -> Sunday (13716ms)\nWhen was the company founded?\tthe 1920s or 1930s\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the 1920s or 1930s, often find, computers) -> the 1920s or 1930s (13740ms)\nWhen was the company founded?\tintegrated circuits\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (integrated circuits, found in, computers) -> integrated circuits (13688ms)\nWhen was the company founded?\tthe microchips\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the microchips, found in, computers) -> the microchips (13688ms)\nWhen was the company founded?\tprivate files\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (private files, found on, computers) -> private files (13716ms)\nWhen was the company founded?\tthe techy type\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the techy type, might find, computers) -> the techy type (13716ms)\nWhen was the company founded?\tthe digital code\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the digital code, found in, computers) -> the digital code (13740ms)\nWhen was the company founded?\t9 results\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (9 results, found in, Computers) -> 9 results (13740ms)\nWhen was the company founded?\ta dozen sites\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (a dozen sites, find, computers) -> a dozen sites (13700ms)\nWhen was the company founded?\tthe tiny electronic circuits\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the tiny electronic circuits, found in, computers) -> the tiny electronic circuits (13700ms)\nWhen was the company founded?\tcomputer*\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (computer*, will find, computer) -> computer* (13716ms)\nWhen was the company founded?\tinvestigators\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (investigators, found, computers) -> investigators (13728ms)\nWhen was the company founded?\tThe Lingo\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (The Lingo, Find, computer) -> The Lingo (13688ms)\nWhen was the company founded?\tOfficers\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Officers, found, computers) -> Officers (13740ms)\nWhen was the company founded?\tthe USB ports\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the USB ports, found on, computers) -> the USB ports (13716ms)\nWhen was the company founded?\tprivate Sorry no results\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (private Sorry no results, found for, Computer) -> private Sorry no results (13740ms)\nWhen was the company founded?\tcircuitry\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (circuitry, found in, computer) -> circuitry (13688ms)\nWhen was the company founded?\tsoftware\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (software, finds, computers) -> software (13716ms)\nWhen was the company founded?\tAsperger?s Syndrome\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Asperger?s Syndrome, can find, computers) -> Asperger?s Syndrome (13740ms)\nWhen was the company founded?\tmalware\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (malware, found in, computers) -> malware (13740ms)\nWhen was the company founded?\tp.s\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (p.s, find on, computer) -> p.s (13740ms)\nWhen was the company founded?\tDRAM\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (DRAM, found in, computers) -> DRAM (13728ms)\nWhen was the company founded?\tfiles\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (files, found on, computer) -> files (13728ms)\nWhen was the company founded?\ta utility\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (a utility, to find, computers) -> a utility (13700ms)\nWhen was the company founded?\ta bit\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (a bit, find, computers) -> a bit (13700ms)\nWhen was the company founded?\tInvestigators\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Investigators, found, computers) -> Investigators (13688ms)\nWhen was the company founded?\tdigital equipment\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (digital equipment, find, computers) -> digital equipment (13700ms)\nWhen was the company founded?\tEven kinesthetic learners\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Even kinesthetic learners, find, computers) -> Even kinesthetic learners (13716ms)\nWhen was the company founded?\tmicroprocessors\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (microprocessors, found in, computers) -> microprocessors (13688ms)\nWhen was the company founded?\tan agentless toolkit\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (an agentless toolkit, finds, computers) -> an agentless toolkit (13740ms)\nWhen was the company founded?\tthe standard\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the standard, Find, Computer) -> the standard (13740ms)\nWhen was the company founded?\tthe information\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the information, found on, computers) -> the information (13700ms)\nWhen was the company founded?\tthe submenu\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (the submenu, Find, Computers) -> the submenu (13728ms)\nWhen was the company founded?\tChanged\t1.4444444444389999\tWhen was the company founded? -> $x: ($x, found, computer) -> (Changed, Find, computers) -> Changed (13688ms)\nWhen was the company founded?\tthe default disk copy utility\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the default disk copy utility, found in, Windows) -> the default disk copy utility (13813ms)\nWhen was the company founded?\tthe jury\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (the jury, found out, that McDonald) -> the jury (13796ms)\nWhen was the company founded?\tthe extra signing key\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (the extra signing key, found in, Microsoft) -> the extra signing key (13838ms)\nWhen was the company founded?\tHSI special agents\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reebok) -> (HSI special agents, found, Reebok) -> HSI special agents (13830ms)\nWhen was the company founded?\t01159 665 599\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (01159 665 599, Find, more local companies) -> 01159 665 599 (13796ms)\nWhen was the company founded?\tthe collaborative aspects\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (the collaborative aspects, found, an increased reliance) -> the collaborative aspects (13805ms)\nWhen was the company founded?\tThe boss\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (The boss, found, his manager screwing his secretary) -> The boss (13813ms)\nWhen was the company founded?\tPresident-elect Barack Obama\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (President-elect Barack Obama, finds, a new commerce secretary) -> President-elect Barack Obama (13822ms)\nWhen was the company founded?\tLower Hutt secretary jobs\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (Lower Hutt secretary jobs, Find, secretary jobs) -> Lower Hutt secretary jobs (13759ms)\nWhen was the company founded?\tthe front\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the front, Find, window) -> the front (13813ms)\nWhen was the company founded?\tThe mathematical model\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (The mathematical model, was then used to find out, strategy) -> The mathematical model (13813ms)\nWhen was the company founded?\tUsers\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (Users, find, Microsoft) -> Users (13769ms)\nWhen was the company founded?\tpeer debriefing sessions\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (peer debriefing sessions, will find, strategies) -> peer debriefing sessions (13759ms)\nWhen was the company founded?\tJacs?\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (Jacs?, finds, Windows) -> Jacs? (13750ms)\nWhen was the company founded?\tthe features\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the features, found in, Windows) -> the features (13805ms)\nWhen was the company founded?\tthe 'search '\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the 'search ', 'find, ' windows) -> the 'search ' (13787ms)\nWhen was the company founded?\tCrundwell\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (Crundwell, is also charged with finding, strategies) -> Crundwell (13854ms)\nWhen was the company founded?\tthe amounts\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (the amounts, found necessary by, the Secretary) -> the amounts (13769ms)\nWhen was the company founded?\tnew vulnerabilities\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft windows) -> (new vulnerabilities, found in, Microsoft Windows) -> new vulnerabilities (13805ms)\nWhen was the company founded?\tSQLXML works\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (SQLXML works, can be found in, Microsoft) -> SQLXML works (13796ms)\nWhen was the company founded?\tThe court\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (The court, found, Reliance Standard?s decision) -> The court (13778ms)\nWhen was the company founded?\tFootwear Clearance Refine Your Search\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (Footwear Clearance Refine Your Search, Find, Nike 6.0 Gear) -> Footwear Clearance Refine Your Search (13838ms)\nWhen was the company founded?\tMini\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (Mini, also finds, pedestrian the modern reliance) -> Mini (13787ms)\nWhen was the company founded?\tThe only bluetooth mouse I?ve\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (The only bluetooth mouse I?ve, found from, Microsoft) -> The only bluetooth mouse I?ve (13846ms)\nWhen was the company founded?\tYou?ll\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (You?ll, also find, strategies) -> You?ll (13813ms)\nWhen was the company founded?\tMark R. Warner\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, public company) -> (Mark R. Warner, has helped found, four public companies) -> Mark R. Warner (13830ms)\nWhen was the company founded?\tspecific listings\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (specific listings, find, local companies) -> specific listings (13830ms)\nWhen was the company founded?\tVisit\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (Visit, find out more about, McDonald?s) -> Visit (13778ms)\nWhen was the company founded?\tthe Media Manager\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the Media Manager, Find, window) -> the Media Manager (13830ms)\nWhen was the company founded?\tThe survey\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (The survey, also found, a high reliance) -> The survey (13846ms)\nWhen was the company founded?\tthe POCT testing\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (the POCT testing, is found in, the greater reliance) -> the POCT testing (13822ms)\nWhen was the company founded?\tNew Hardware\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (New Hardware, Found, window) -> New Hardware (13822ms)\nWhen was the company founded?\t2. INTERNET INFO\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (2. INTERNET INFO, find more information about, Microsoft) -> 2. INTERNET INFO (13822ms)\nWhen was the company founded?\thologram companies\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (hologram companies, Find, local hologram companies) -> hologram companies (13759ms)\nWhen was the company founded?\tThe new initiatives\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (The new initiatives, have found a champion in, Secretary) -> The new initiatives (13854ms)\nWhen was the company founded?\tThe judge\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (The judge, found, Microsoft) -> The judge (13813ms)\nWhen was the company founded?\tthe image formats\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (the image formats, found on, Microsoft Windows environments) -> the image formats (13796ms)\nWhen was the company founded?\tthe best file launcher I?ve\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the best file launcher I?ve, found for, Windows) -> the best file launcher I?ve (13769ms)\nWhen was the company founded?\tThe concept\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (The concept, is also found in, Microsoft Windows) -> The concept (13750ms)\nWhen was the company founded?\tEugene\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (Eugene, finds, adventure and self-reliance) -> Eugene (13846ms)\nWhen was the company founded?\tPhil Knight\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (Phil Knight, went on to found, Nike) -> Phil Knight (13830ms)\nWhen was the company founded?\tthe winners\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (the winners, find, an over-reliance) -> the winners (13796ms)\nWhen was the company founded?\tOne roots\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (One roots, finds, a McDonald) -> One roots (13769ms)\nWhen was the company founded?\tThe customers\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (The customers, are able to find a lot of, Nike dunks) -> The customers (13822ms)\nWhen was the company founded?\tPR\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, webkinz) -> (PR, Find, all your favourite Webkinz online) -> PR (13796ms)\nWhen was the company founded?\tMore info? US appeals court\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, tobacco company) -> (More info? US appeals court, finds, tobacco companies) -> More info? US appeals court (13813ms)\nWhen was the company founded?\tcontent\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (content, is found in, total , complete , and utter reliance) -> content (13778ms)\nWhen was the company founded?\tNike Men Shoes\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (Nike Men Shoes, Find, the cheapest hot sale nike shoes) -> Nike Men Shoes (13813ms)\nWhen was the company founded?\tthe soul\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the soul, finds, windows) -> the soul (13759ms)\nWhen was the company founded?\tthe trainees\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (the trainees, are finding work as, secretaries) -> the trainees (13830ms)\nWhen was the company founded?\tLocate Local Companies/Organizations\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (Locate Local Companies/Organizations, Find, local companies) -> Locate Local Companies/Organizations (13838ms)\nWhen was the company founded?\tThe NYSE\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (The NYSE, found, that McDonald) -> The NYSE (13796ms)\nWhen was the company founded?\tThe video\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reebok) -> (The video, was found, when searching for reebok realflex) -> The video (13759ms)\nWhen was the company founded?\tAugust\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (August, found at, Nike chain stores) -> August (13813ms)\nWhen was the company founded?\teven more Webkinz A Ganz Website\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, webkinz) -> (even more Webkinz A Ganz Website, Find, webkinz) -> even more Webkinz A Ganz Website (13838ms)\nWhen was the company founded?\tKayaking\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (Kayaking, find, a local whitewater company) -> Kayaking (13796ms)\nWhen was the company founded?\tRay Kroc\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (Ray Kroc, first found, McDonalds) -> Ray Kroc (13759ms)\nWhen was the company founded?\teven more Ganz Webkinz\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, webkinz) -> (even more Ganz Webkinz, Find, webkinz) -> even more Ganz Webkinz (13822ms)\nWhen was the company founded?\tBaha\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, public company) -> (Baha, found, three public companies) -> Baha (13822ms)\nWhen was the company founded?\tthe TTF?s Tourism Sentiment survey\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (the TTF?s Tourism Sentiment survey, found, Tasmania?s reliance) -> the TTF?s Tourism Sentiment survey (13822ms)\nWhen was the company founded?\tStreakfury\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (Streakfury, found a pair of, Nikes) -> Streakfury (13778ms)\nWhen was the company founded?\tShari?ah\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (Shari?ah, is found in, Reliance O.25) -> Shari?ah (13778ms)\nWhen was the company founded?\tthe reader\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the reader, finds, windows) -> the reader (13768ms)\nWhen was the company founded?\ta financial plan\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (a financial plan, find, strategies) -> a financial plan (13796ms)\nWhen was the company founded?\tthe Advanced\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the Advanced, find, window) -> the Advanced (13759ms)\nWhen was the company founded?\tSeptember 10 , 2009\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (September 10 , 2009, Find, Window) -> September 10 , 2009 (13787ms)\nWhen was the company founded?\tprevious studies\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mnc) -> (previous studies, found single high doses of, MNC) -> previous studies (13830ms)\nWhen was the company founded?\tMore information\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (More information, can be found at, the Secretary) -> More information (13813ms)\nWhen was the company founded?\tSure , you?ll\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (Sure , you?ll, find, the secretary) -> Sure , you?ll (13778ms)\nWhen was the company founded?\tCameronMcintyre i\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (CameronMcintyre i, found, windows) -> CameronMcintyre i (13838ms)\nWhen was the company founded?\t4 October 1957\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (4 October 1957, found, the newly appointed Secretary) -> 4 October 1957 (13778ms)\nWhen was the company founded?\tseveral fonts\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft windows) -> (several fonts, are found in, Microsoft Windows) -> several fonts (13846ms)\nWhen was the company founded?\tNew Zealand\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (New Zealand, Find, local member companies) -> New Zealand (13787ms)\nWhen was the company founded?\tMcHargue\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (McHargue, found, an open Vance McDonald) -> McHargue (13769ms)\nWhen was the company founded?\tGrow\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (Grow, found at, Nike Sportswear chain stores) -> Grow (13846ms)\nWhen was the company founded?\tinnovation\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (innovation, is to find, strategies) -> innovation (13769ms)\nWhen was the company founded?\tclick\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (click, then find, Windows) -> click (13846ms)\nWhen was the company founded?\tBond\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (Bond, finds, that Goldfinger?s secretary) -> Bond (13813ms)\nWhen was the company founded?\ta jury\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (a jury, finds, McDonald guilty) -> a jury (13787ms)\nWhen was the company founded?\tbuilders\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (builders, can be found in, local company directories) -> builders (13769ms)\nWhen was the company founded?\tsmall enterprises\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (small enterprises, found, a reliance) -> small enterprises (13854ms)\nWhen was the company founded?\tThe answers\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (The answers, can be found for, Nike) -> The answers (13805ms)\nWhen was the company founded?\tAllen and Gates\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (Allen and Gates, found, Microsoft) -> Allen and Gates (13846ms)\nWhen was the company founded?\tPresident Andrew Jackson\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (President Andrew Jackson, finally had found, a Secretary) -> President Andrew Jackson (13846ms)\nWhen was the company founded?\ta California jury\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, tobacco company) -> (a California jury, found, the tobacco company) -> a California jury (13822ms)\nWhen was the company founded?\tFiling forms and requirements\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (Filing forms and requirements, can be found at, the Secretary) -> Filing forms and requirements (13846ms)\nWhen was the company founded?\tthe only one\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (the only one, found, Audra McDonald?s Bess jarring) -> the only one (13759ms)\nWhen was the company founded?\tthe student jury\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (the student jury, found, McDonald?s partially negligent) -> the student jury (13787ms)\nWhen was the company founded?\tthe three I\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (the three I, find value in, Reliance Capital) -> the three I (13854ms)\nWhen was the company founded?\tyou?ll\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (you?ll, find, Windows) -> you?ll (13830ms)\nWhen was the company founded?\tPDA Software\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (PDA Software, Find, Microsoft Windows Mobile software) -> PDA Software (13854ms)\nWhen was the company founded?\tThe Ultimate Troubleshooter task\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (The Ultimate Troubleshooter task, found on, Windows) -> The Ultimate Troubleshooter task (13805ms)\nWhen was the company founded?\tThe Wartime Contracting Commission\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (The Wartime Contracting Commission, found, U.S. reliance) -> The Wartime Contracting Commission (13830ms)\nWhen was the company founded?\tinternal reports\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (internal reports, consistently find, McDonald?s) -> internal reports (13787ms)\nWhen was the company founded?\tamicus brief\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (amicus brief, can be found on, the Secretary) -> amicus brief (13838ms)\nWhen was the company founded?\tJust\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (Just, find, strategies) -> Just (13769ms)\nWhen was the company founded?\tinformation technology professionals\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (information technology professionals, found, Microsoft) -> information technology professionals (13813ms)\nWhen was the company founded?\tregional child\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (regional child, find, strategies) -> regional child (13846ms)\nWhen was the company founded?\tSecurity Company Directory\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (Security Company Directory, Find, A Local Security Company) -> Security Company Directory (13822ms)\nWhen was the company founded?\tthe judge\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (the judge, has found, McDonald) -> the judge (13805ms)\nWhen was the company founded?\tDanger\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, public company) -> (Danger, found a job at, a downtown public-relations company) -> Danger (13787ms)\nWhen was the company founded?\ta character\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (a character, midway finds, her confidence and self-reliance) -> a character (13796ms)\nWhen was the company founded?\tthe outcome?ITC issues\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (the outcome?ITC issues, finds, Microsoft) -> the outcome?ITC issues (13846ms)\nWhen was the company founded?\tthe early days\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (the early days, found, the Nike Air Nike Air Max 87 Max) -> the early days (13830ms)\nWhen was the company founded?\t01179 444 121\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (01179 444 121, Find, more local companies) -> 01179 444 121 (13838ms)\nWhen was the company founded?\tthe glass\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the glass, found in, windows) -> the glass (13805ms)\nWhen was the company founded?\tSargent\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (Sargent, found, him secretary of transportation) -> Sargent (13778ms)\nWhen was the company founded?\trefuge\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (refuge, have found, the reliance) -> refuge (13838ms)\nWhen was the company founded?\tBell J\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (Bell J, found for, McDonald?s) -> Bell J (13838ms)\nWhen was the company founded?\tbraille\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (braille, found in, Windows) -> braille (13830ms)\nWhen was the company founded?\tThe goal\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (The goal, is to find, strategies) -> The goal (13838ms)\nWhen was the company founded?\tyou?ll\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (you?ll, find career opportunities in, strategy) -> you?ll (13854ms)\nWhen was the company founded?\t30 %\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, public company) -> (30 %, are found in, public and private companies) -> 30 % (13805ms)\nWhen was the company founded?\ta year or two before\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (a year or two before, found work in, a local company) -> a year or two before (13778ms)\nWhen was the company founded?\tthe ExplorerBar steer\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (the ExplorerBar steer, found in, Microsoft Windows) -> the ExplorerBar steer (13768ms)\nWhen was the company founded?\tOverspark\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (Overspark, found, a pair of Nikes) -> Overspark (13769ms)\nWhen was the company founded?\tHard\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (Hard, find their work in, local companies) -> Hard (13750ms)\nWhen was the company founded?\tThe required form\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (The required form, can be found on, the Secretary) -> The required form (13796ms)\nWhen was the company founded?\tDial-Up Networking\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (Dial-Up Networking, tries to find, a Microsoft Windows Network) -> Dial-Up Networking (13854ms)\nWhen was the company founded?\tCarolina Group\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, tobacco company) -> (Carolina Group, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lorillard%20Tobacco%20Company) -> Carolina Group (13759ms)\nWhen was the company founded?\tJudge\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (Judge, finds, McDonald) -> Judge (13787ms)\nWhen was the company founded?\tthe hackers\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (the hackers, found, Microsoft) -> the hackers (13778ms)\nWhen was the company founded?\ta big believer\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (a big believer, find, the typical American?s reliance) -> a big believer (13778ms)\nWhen was the company founded?\tBishop\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (Bishop, found, speedster Darnell McDonald) -> Bishop (13822ms)\nWhen was the company founded?\tguests\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (guests, will find, McDonald) -> guests (13854ms)\nWhen was the company founded?\tthe underlying messages\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the underlying messages, find, windows) -> the underlying messages (13822ms)\nWhen was the company founded?\tJudge Joao Ghisleni Filho\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (Judge Joao Ghisleni Filho, find, that McDonald) -> Judge Joao Ghisleni Filho (13787ms)\nWhen was the company founded?\tthe IPS tab\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (the IPS tab, find, the Microsoft Windows Win32k) -> the IPS tab (13838ms)\nWhen was the company founded?\tcompanies\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (companies, are scrambling to find, strategies) -> companies (13759ms)\nWhen was the company founded?\tthe counter\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (the counter, you?ll find, Bob McDonald) -> the counter (13805ms)\nWhen was the company founded?\tshare subscription\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, public company) -> (share subscription, may found, a public limited company) -> share subscription (13854ms)\nWhen was the company founded?\tquantitative reconciliations\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (quantitative reconciliations, can also be found at, Nike) -> quantitative reconciliations (13830ms)\nWhen was the company founded?\tThe solution\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (The solution, must be found in, strategies) -> The solution (13796ms)\nWhen was the company founded?\tCA\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (CA, Find, Local Tracy Decks Builders & Fencing Companies) -> CA (13838ms)\nWhen was the company founded?\tthe business center\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (the business center, found, a local computer repair company) -> the business center (13813ms)\nWhen was the company founded?\tWarren\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (Warren, found, a pair of Nikes) -> Warren (13813ms)\nWhen was the company founded?\tR.J. Reynolds Tobacco Company\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, tobacco company) -> (R.J. Reynolds Tobacco Company, can be found on Wikipedia at, http://en.wikipedia.org/wiki/R%2E%20J%2E%20Reynolds%20Tobacco%20Company) -> R.J. Reynolds Tobacco Company (13778ms)\nWhen was the company founded?\tWAVE\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (WAVE, Find, window) -> WAVE (13750ms)\nWhen was the company founded?\tThe jury\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (The jury, found, McDonalds) -> The jury (13822ms)\nWhen was the company founded?\tNike Free 5.0 Sale Items\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (Nike Free 5.0 Sale Items, found in, a Nike Outlet Store) -> Nike Free 5.0 Sale Items (13796ms)\nWhen was the company founded?\tthe Copy\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the Copy, Find, windows) -> the Copy (13759ms)\nWhen was the company founded?\thigh priority\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (high priority, were found in, Microsoft Windows) -> high priority (13805ms)\nWhen was the company founded?\tthe viewer\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (the viewer, find, window) -> the viewer (13838ms)\nWhen was the company founded?\t?where\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (?where, find, the Nike Air Yeezys online) -> ?where (13854ms)\nWhen was the company founded?\tDeputies\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (Deputies, found, McDonald) -> Deputies (13759ms)\nWhen was the company founded?\tBaton Rouge secretary jobs\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (Baton Rouge secretary jobs, Find, secretary jobs) -> Baton Rouge secretary jobs (13787ms)\nWhen was the company founded?\tDescription\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (Description, Find, a cheap local moving company or truck rentals) -> Description (13769ms)\nWhen was the company founded?\tpolice\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (police, found, McDonald and Goris) -> police (13778ms)\nWhen was the company founded?\tthe destinations\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (the destinations, then find, local companies) -> the destinations (13854ms)\nWhen was the company founded?\tAn Iowa woman\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (An Iowa woman, found, a McDonald) -> An Iowa woman (13846ms)\nWhen was the company founded?\tthe functionality\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (the functionality, found in, Microsoft) -> the functionality (13796ms)\nWhen was the company founded?\tJudge Jackson\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (Judge Jackson, found, Microsoft) -> Judge Jackson (13846ms)\nWhen was the company founded?\tdurable operation\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (durable operation, find, Nike Shox R2 Sale turbine) -> durable operation (13769ms)\nWhen was the company founded?\ta user account\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (a user account, typically found on, Microsoft Windows) -> a user account (13750ms)\nWhen was the company founded?\tnetwork\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (network, to find, local Cheap Moving Companies) -> network (13787ms)\nWhen was the company founded?\tthe Court\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (the Court, found, reliance) -> the Court (13778ms)\nWhen was the company founded?\tno results\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (no results, found for, windows) -> no results (13854ms)\nWhen was the company founded?\tWang Jianping\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (Wang Jianping, find, old secretary Yu Deming) -> Wang Jianping (13750ms)\nWhen was the company founded?\tremote code execution flaws\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (remote code execution flaws, found in, Windows) -> remote code execution flaws (13805ms)\nWhen was the company founded?\tthe user interface\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft windows) -> (the user interface, found in, Microsoft Windows) -> the user interface (13838ms)\nWhen was the company founded?\tObama\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (Obama, find, a Secretary) -> Obama (13787ms)\nWhen was the company founded?\tSeveral attempts\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (Several attempts, were made to find, a local company) -> Several attempts (13787ms)\nWhen was the company founded?\tAPIs\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft window) -> (APIs, found in, Microsoft Windows) -> APIs (13787ms)\nWhen was the company founded?\tScientists today\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (Scientists today, find, that reliance) -> Scientists today (13805ms)\nWhen was the company founded?\tThe poll\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (The poll, finds, Secretary) -> The poll (13854ms)\nWhen was the company founded?\tthe app\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (the app, can be found via, NikeID) -> the app (13759ms)\nWhen was the company founded?\tAddress\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (Address, Find, more local companies) -> Address (13796ms)\nWhen was the company founded?\tthe neighboring country-houses\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (the neighboring country-houses, found, the Home Secretary) -> the neighboring country-houses (13805ms)\nWhen was the company founded?\tFanuzzi\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (Fanuzzi, found, junior wide receiver Vance McDonald) -> Fanuzzi (13830ms)\nWhen was the company founded?\tthe INBiz portal\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (the INBiz portal, found on, the Secretary) -> the INBiz portal (13838ms)\nWhen was the company founded?\tYou?ll\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (You?ll, find, Nike golf clubs) -> You?ll (13768ms)\nWhen was the company founded?\tBoxes\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (Boxes, Find, Local Storage Companies) -> Boxes (13830ms)\nWhen was the company founded?\twelcome\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (welcome, find, local debt collection companies) -> welcome (13846ms)\nWhen was the company founded?\tthe mall\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reebok) -> (the mall, find, Reebok Easytones) -> the mall (13854ms)\nWhen was the company founded?\tthe *nix goodies\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft windows) -> (the *nix goodies, found in, Microsoft?s Windows Services) -> the *nix goodies (13822ms)\nWhen was the company founded?\tthe same Terminator 2 trailer clip\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, microsoft) -> (the same Terminator 2 trailer clip, found at, Microsoft) -> the same Terminator 2 trailer clip (13830ms)\nWhen was the company founded?\tanglers\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (anglers, will find products by, local companies) -> anglers (13769ms)\nWhen was the company founded?\tthe report\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, mcdonald) -> (the report, found, McDonald?s 13 websites) -> the report (13846ms)\nWhen was the company founded?\tI?ll\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, secretary) -> (I?ll, find, a secretary) -> I?ll (13778ms)\nWhen was the company founded?\ttypes\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, nike) -> (types, can be found, Nike) -> types (13769ms)\nWhen was the company founded?\tthe NWP\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, strategy) -> (the NWP, found, this strategy) -> the NWP (13759ms)\nWhen was the company founded?\tBenbrook\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, reliance) -> (Benbrook, finds, that ?reliance) -> Benbrook (13796ms)\nWhen was the company founded?\tA Ganz Website\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, webkinz) -> (A Ganz Website, Find, webkinz) -> A Ganz Website (13759ms)\nWhen was the company founded?\ta Need\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, local company) -> (a Need, Find, a local company) -> a Need (13813ms)\nWhen was the company founded?\tWindows Hunter\t1.33333333333\tWhen was the company founded? -> $x: ($x, found, windows) -> (Windows Hunter, allows finding, windows) -> Windows Hunter (13822ms)\nWhat is pastrami made of?\t100 % brisket\t0.222222222221\tWhat is pastrami made of? -> $x: (pastrami, be make from, $x) -> (Our pastrami, is made from, 100 % brisket) -> 100 % brisket (912ms)\nWhat is pastrami made of?\tbeef brisket\t0.222222222221\tWhat is pastrami made of? -> $x: (pastrami, be make from, $x) -> (Pastrami, is made from, beef brisket) -> beef brisket (912ms)\nWhat is pastrami made of?\ta cut\t0.222222222221\tWhat is pastrami made of? -> $x: (pastrami, be make from, $x) -> ('s blog Pastrami, is most commonly made from, a cut) -> a cut (912ms)\nWhat is pastrami made of?\tbrisket or beef navel\t0.222222222221\tWhat is pastrami made of? -> $x: (pastrami, be make from, $x) -> (Traditional pastrami, is made from, brisket or beef navel) -> brisket or beef navel (912ms)\nWhat is pastrami made of?\tgourmet meats\t0.222222222221\tWhat is pastrami made of? -> $x: (pastrami, be make from, $x) -> (The Reuben and Hot Pastrami, are made from, gourmet meats) -> gourmet meats (912ms)\nWhat is pastrami made of?\tthe forequarter\t0.222222222221\tWhat is pastrami made of? -> $x: (pastrami, be make from, $x) -> (Pastrami, is traditionally made from, the forequarter) -> the forequarter (1001ms)\nWhat is pastrami made of?\tbeef\t0.222222222221\tWhat is pastrami made of? -> $x: (pastrami, be make from, $x) -> (pastrami, is made from, beef) -> beef (912ms)\nWhat is pastrami made of?\tthe hot dog\t0.222222222218\tWhat is pastrami made of? -> $x: ($x, be in, pastrami) -> (the hot dog, is wrapped in, pastrami) -> the hot dog (1001ms)\nWhat is pastrami made of?\tpulled pork\t0.222222222218\tWhat is pastrami made of? -> $x: ($x, be in, pastrami) -> (pulled pork, was slow cooked in, pastrami spices) -> pulled pork (1001ms)\nWhat is pastrami made of?\tWe?ll\t0.222222222218\tWhat is pastrami made of? -> $x: ($x, be in, pastrami) -> (We?ll, be specializing in, Hot Smoked Pastrami Sandwiches) -> We?ll (1001ms)\nWhat is pastrami made of?\tBacterial contamination\t0.222222222218\tWhat is pastrami made of? -> $x: ($x, be in, pastrami) -> (Bacterial contamination, is a lot more widespread in, pastrami) -> Bacterial contamination (1001ms)\nWhat is pastrami made of?\tthe Rachel\t-0.0\tWhat is pastrami made of? -> $x: ($x, be make, pastrami) -> (the Rachel, is made with, pastrami) -> the Rachel (1018ms)\nWhat is pastrami made of?\tCarnegie Deli\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, do, $x) -> (the Pastrami, does n?t match up to, Carnegie Deli) -> Carnegie Deli (1051ms)\nWhat is pastrami made of?\tthe same\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, do, $x) -> (pastrami, can do, the same) -> the same (1089ms)\nWhat is pastrami made of?\t6 ounces\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be make, $x) -> (Our standard pastrami sandwich, is made with, 6 ounces) -> 6 ounces (1051ms)\nWhat is pastrami made of?\tthe opposite\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, do, $x) -> (pastrami, does exactly, the opposite) -> the opposite (1088ms)\nWhat is pastrami made of?\tmeat\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (beef pastrami, is a type of, meat) -> meat (1051ms)\nWhat is pastrami made of?\ta raffle\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (The titular pastramis, are part of, a raffle) -> a raffle (1051ms)\nWhat is pastrami made of?\tthe best anywhere\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (their pastrami, is arguably some of, the best anywhere) -> the best anywhere (1089ms)\nWhat is pastrami made of?\tChef Aaron McCargo Jr\t-0.0\tWhat is pastrami made of? -> $x: ($x, be make, pastrami) -> (Chef Aaron McCargo Jr, is making, Pastrami) -> Chef Aaron McCargo Jr (1001ms)\nWhat is pastrami made of?\telectrolytes\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (Turkey pastrami, is a great source of, electrolytes) -> electrolytes (1018ms)\nWhat is pastrami made of?\tman\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (Pastrami, is the very triumph of, man) -> man (1018ms)\nWhat is pastrami made of?\tthe premises\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be make, $x) -> (the corned beef and pastrami, will be made on, the premises) -> the premises (1018ms)\nWhat is pastrami made of?\tthe options\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (succulent pastrami, will be just a few of, the options) -> the options (1089ms)\nWhat is pastrami made of?\tany pastrami I?ve\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, do, $x) -> (their pastrami sandwich, did n?t look like, any pastrami I?ve) -> any pastrami I?ve (1101ms)\nWhat is pastrami made of?\ta brisket\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (The real pastrami, is composed of, a brisket) -> a brisket (1018ms)\nWhat is pastrami made of?\ta pound\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be make with, $x) -> (hot pastrami sandwich, is made with over, a pound) -> a pound (1089ms)\nWhat is pastrami made of?\tthe general ugliness\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (a pastrami, was once again reminded of, the general ugliness) -> the general ugliness (1052ms)\nWhat is pastrami made of?\tchoice\t-0.0\tWhat is pastrami made of? -> $x: (pastrami, be of, $x) -> (Pastrami or Roast Beef, are the meats of, choice) -> choice (1051ms)\nWhere are the National Archives?\tRecord Group 127\t0.222222222222\tWhere are the National Archives? -> $x: (national archives, be find in, $x) -> (the National Archives, are found in, Record Group 127) -> Record Group 127 (1037ms)\nWhere are the National Archives?\tthe database\t0.222222222222\tWhere are the National Archives? -> $x: (national archives, be find in, $x) -> (the National Archives, is found in, the database) -> the database (1037ms)\nWhere are the National Archives?\tthe north-east\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archive, is located in, the north-east) -> the north-east (1229ms)\nWhere are the National Archives?\tParkes\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, is located in, Parkes) -> Parkes (1229ms)\nWhere are the National Archives?\tthe centre\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, are located in, the centre) -> the centre (1229ms)\nWhere are the National Archives?\tRio\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (National Archives, are both located in, Rio) -> Rio (1037ms)\nWhere are the National Archives?\tWashington DC\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, are located in, Washington DC) -> Washington DC (1037ms)\nWhere are the National Archives?\tan area\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, is located in, an area) -> an area (1037ms)\nWhere are the National Archives?\tPune\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (National Film Archives, are also located in, Pune) -> Pune (1229ms)\nWhere are the National Archives?\tDar es Salaam\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (The national archives, are also located in, Dar es Salaam) -> Dar es Salaam (1037ms)\nWhere are the National Archives?\tthe some premises\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives office, is located in, the some premises) -> the some premises (1037ms)\nWhere are the National Archives?\tTripoli\t0.111111111109\tWhere are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, are located in, Tripoli) -> Tripoli (1229ms)\nWhere are the National Archives?\tThe 26th copy\t-0.0\tWhere are the National Archives? -> $x: ($x, discover, national archives) -> (The 26th copy, was discovered in, The National Archives) -> The 26th copy (2680ms)\nWhere are the National Archives?\tTupac Shakur\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (Tupac Shakur, be created at, the National Archives) -> Tupac Shakur (2854ms)\nWhere are the National Archives?\tfive months\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, has been functional for over, five months) -> five months (2854ms)\nWhere are the National Archives?\tBill\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Bill, went to, the National Archives) -> Bill (2867ms)\nWhere are the National Archives?\t?.we\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (?.we, even went to, the national archives) -> ?.we (2834ms)\nWhere are the National Archives?\ta fantastic job\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (The National Archives, are doing, a fantastic job) -> a fantastic job (2867ms)\nWhere are the National Archives?\tany legislative change\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (any legislative change, be done in, the National Archives Act) -> any legislative change (2812ms)\nWhere are the National Archives?\tthe preservation\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, has been a champion for, the preservation) -> the preservation (2790ms)\nWhere are the National Archives?\tThe list\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (The list, may be found in, National Archives) -> The list (2844ms)\nWhere are the National Archives?\tCanada\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Canada, has offered to go to, the National Archives) -> Canada (2790ms)\nWhere are the National Archives?\ttwo\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (two, can be found in, the National Archives) -> two (2819ms)\nWhere are the National Archives?\tMobile\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (Mobile, Contains, National African American Archives and Museum) -> Mobile (2790ms)\nWhere are the National Archives?\tnearby Roubaix\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (nearby Roubaix, are found, the National Archives) -> nearby Roubaix (2834ms)\nWhere are the National Archives?\ta good place\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (a good place, create, this digital national archive) -> a good place (1782ms)\nWhere are the National Archives?\tThe plan\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (The plan, was developed by, the National Archives) -> The plan (2854ms)\nWhere are the National Archives?\tThe Executive Order\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (The Executive Order, establishes within, the National Archives) -> The Executive Order (2844ms)\nWhere are the National Archives?\tcertified copies\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (certified copies, found in, the National Archives) -> certified copies (2858ms)\nWhere are the National Archives?\tThe scholarship\t-0.0\tWhere are the National Archives? -> $x: ($x, fund, national archives) -> (The scholarship, is funded by, the National Archives) -> The scholarship (2844ms)\nWhere are the National Archives?\tthe center\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (the center, has established, a national archive) -> the center (2812ms)\nWhere are the National Archives?\tThe tool\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (The tool, was developed by, the National Archives) -> The tool (2873ms)\nWhere are the National Archives?\tBoulevard 9\t-0.0\tWhere are the National Archives? -> $x: (national archives, be situate in, $x) -> (the National Archives, are situated in, Boulevard 9) -> Boulevard 9 (2812ms)\nWhere are the National Archives?\tUnited Kingdom\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (United Kingdom, Contains, The National Archives) -> United Kingdom (2858ms)\nWhere are the National Archives?\tEngland\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, is also the official archive for, England) -> England (2680ms)\nWhere are the National Archives?\ta wonderful job\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (The Anglican Church National Archives, did, a wonderful job) -> a wonderful job (2849ms)\nWhere are the National Archives?\ta team\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (a team, went to, the National Archive) -> a team (2854ms)\nWhere are the National Archives?\tthe legislation\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (the legislation, creating, the National Archives) -> the legislation (2867ms)\nWhere are the National Archives?\tresearch\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (National Archives, can be used to do, research) -> research (2844ms)\nWhere are the National Archives?\t1812\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (1812, can be found at, the National Archives) -> 1812 (2867ms)\nWhere are the National Archives?\tan original exhibition\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (an original exhibition, developed by, the National Archives) -> an original exhibition (2805ms)\nWhere are the National Archives?\tInstitute graduates\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (Institute graduates, do so at, the National Archives) -> Institute graduates (2834ms)\nWhere are the National Archives?\trecords\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (records, found in, the National Archives) -> records (2839ms)\nWhere are the National Archives?\tFilm\t-0.0\tWhere are the National Archives? -> $x: ($x, fund, national archives) -> (Film, is a jointly funded project by, The National Archives) -> Film (2147ms)\nWhere are the National Archives?\tlighthouse records\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (lighthouse records, found in, the National Archives) -> lighthouse records (2854ms)\nWhere are the National Archives?\tLovell?s daughter\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (Lovell?s daughter, recently found in, the National Archives) -> Lovell?s daughter (2839ms)\nWhere are the National Archives?\tThe index\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (The index, was developed by, the National Archives) -> The index (2827ms)\nWhere are the National Archives?\tFurther research\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (Further research, has yet to be done in, the National Archives) -> Further research (2284ms)\nWhere are the National Archives?\tWorked ?\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (Worked ?, was created by, the National Archives) -> Worked ? (1782ms)\nWhere are the National Archives?\tThe sample\t-0.0\tWhere are the National Archives? -> $x: ($x, comprise, national archives) -> (The sample, comprised, national , regional and local archives) -> The sample (2819ms)\nWhere are the National Archives?\thard copies\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, is still doing so using, hard copies) -> hard copies (2858ms)\nWhere are the National Archives?\tCongress\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (Congress, established, the National Archives) -> Congress (2844ms)\nWhere are the National Archives?\tKevin Sim\t-0.0\tWhere are the National Archives? -> $x: ($x, discover, national archives) -> (Kevin Sim, discovered a letter in, the National Archives) -> Kevin Sim (2863ms)\nWhere are the National Archives?\tthe 5 references\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (the 5 references, can be found at, the national Archives) -> the 5 references (2858ms)\nWhere are the National Archives?\tCW Enterprise\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (CW Enterprise, does research at, the National Archives) -> CW Enterprise (2798ms)\nWhere are the National Archives?\tBroderick\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Broderick, goes to, the National Archives facility) -> Broderick (2844ms)\nWhere are the National Archives?\tImage credits\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Image credits, go to, the National Archives) -> Image credits (2858ms)\nWhere are the National Archives?\tA booklet\t-0.0\tWhere are the National Archives? -> $x: ($x, discover, national archives) -> (A booklet, recently discovered in, the National Archives) -> A booklet (2858ms)\nWhere are the National Archives?\tthe song\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (the song, will now go to, the national folk song archives) -> the song (2805ms)\nWhere are the National Archives?\tfurther info\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, may be a source for, further info) -> further info (2839ms)\nWhere are the National Archives?\tthe express purpose\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, is for, the express purpose) -> the express purpose (2844ms)\nWhere are the National Archives?\tthe study\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, is a center for, the study) -> the study (2774ms)\nWhere are the National Archives?\tSHAMROCK\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (SHAMROCK, had been found in, the National Archives) -> SHAMROCK (2834ms)\nWhere are the National Archives?\tfamily historians\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (family historians, find, these National Archives microfilms) -> family historians (2863ms)\nWhere are the National Archives?\tFurther information\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (Further information, might be found at, the National Archive) -> Further information (2790ms)\nWhere are the National Archives?\t2012 New Lincoln\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (2012 New Lincoln, found in, the National Archives) -> 2012 New Lincoln (2854ms)\nWhere are the National Archives?\tthe United States\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (the United States, established, its National Archives) -> the United States (2774ms)\nWhere are the National Archives?\t? Lisa Hill *These links\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (? Lisa Hill *These links, go to, the National Archives timeline) -> ? Lisa Hill *These links (2681ms)\nWhere are the National Archives?\tPh.D. candidates\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, is looking for, Ph.D. candidates) -> Ph.D. candidates (2790ms)\nWhere are the National Archives?\tresearchers\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, are rich sources for, researchers) -> researchers (2819ms)\nWhere are the National Archives?\tBangladesh\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (Bangladesh, established, National Archives) -> Bangladesh (2844ms)\nWhere are the National Archives?\tPrince George's County\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (Prince George's County, Contains, National Archives at College Park) -> Prince George's County (2849ms)\nWhere are the National Archives?\tThe next step\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (The next step, was to go to, the National Archives) -> The next step (2782ms)\nWhere are the National Archives?\t20740\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (20740, Contains, National Archives at College Park) -> 20740 (2827ms)\nWhere are the National Archives?\tReporter Jonathon Keats\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Reporter Jonathon Keats, went to, the National Archives) -> Reporter Jonathon Keats (2863ms)\nWhere are the National Archives?\tLNWR20\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (LNWR20, found at, The National Archives below) -> LNWR20 (2774ms)\nWhere are the National Archives?\tThe program\t-0.0\tWhere are the National Archives? -> $x: ($x, fund, national archives) -> (The program, is funded jointly by, the National Archives) -> The program (2680ms)\nWhere are the National Archives?\tOffice\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (Office, was created by, the National Archives) -> Office (2798ms)\nWhere are the National Archives?\tDROID\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (DROID, was developed by, The National Archives) -> DROID (2854ms)\nWhere are the National Archives?\t35 mm microfilm\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (35 mm microfilm, See Finding, Aid National Archives) -> 35 mm microfilm (2284ms)\nWhere are the National Archives?\tISO 16175\t-0.0\tWhere are the National Archives? -> $x: ($x, replace, national archives) -> (ISO 16175, replace, National Archives products Specifications) -> ISO 16175 (2854ms)\nWhere are the National Archives?\tA letter\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (A letter, found in, the Washington National Archives) -> A letter (2844ms)\nWhere are the National Archives?\t150 files\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (150 files, will be done accessible during, the National Archive) -> 150 files (2863ms)\nWhere are the National Archives?\ta clever web developer\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (national archives, are looking for, a clever web developer) -> a clever web developer (2854ms)\nWhere are the National Archives?\tfilmmakers\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (filmmakers, have done at, the National Archives) -> filmmakers (2774ms)\nWhere are the National Archives?\tWashington, D.C.\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (Washington, D.C., Contains, National Archives Building) -> Washington, D.C. (2827ms)\nWhere are the National Archives?\tA search\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (A search, was also done at, the National Archives) -> A search (2241ms)\nWhere are the National Archives?\tFreeman\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Freeman, was found in, the National Archives) -> Freeman (2849ms)\nWhere are the National Archives?\tsale\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, was put up for, sale) -> sale (2839ms)\nWhere are the National Archives?\tDetails\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Details, are found in, National Archives) -> Details (2597ms)\nWhere are the National Archives?\tthe records\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, is the repository for, the records) -> the records (2839ms)\nWhere are the National Archives?\tIowa\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Iowa, can now go to, the National Archives rotunda) -> Iowa (2812ms)\nWhere are the National Archives?\tThe letter\t-0.0\tWhere are the National Archives? -> $x: ($x, discover, national archives) -> (The letter, was discovered in, the U.S. National Archives) -> The letter (2241ms)\nWhere are the National Archives?\tthe Land Entry Case Files\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (the Land Entry Case Files, are found at, the National Archives) -> the Land Entry Case Files (2863ms)\nWhere are the National Archives?\tThe response\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (The response, can be found in, the National Archives) -> The response (2284ms)\nWhere are the National Archives?\tGaston County\t-0.0\tWhere are the National Archives? -> $x: ($x, produce, national archives) -> (Gaston County, has been produced by, the The National Archives) -> Gaston County (2849ms)\nWhere are the National Archives?\tinterview\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (BFI National Archive, is available for, interview) -> interview (2790ms)\nWhere are the National Archives?\thalf\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, have been plundered for, half) -> half (2774ms)\nWhere are the National Archives?\tThe only document\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (The only document, found in, the National Archives) -> The only document (2819ms)\nWhere are the National Archives?\tfurther information\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (further information, go to, the National Archives web site) -> further information (1782ms)\nWhere are the National Archives?\tNational Archives at College Park\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (National Archives at College Park, Contains, National Archives Archeological Site) -> National Archives at College Park (2858ms)\nWhere are the National Archives?\tThe following map\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (The following map, found in, the National Archives) -> The following map (2849ms)\nWhere are the National Archives?\tthe policy\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (the policy, has been developed by, The National Archives) -> the policy (2844ms)\nWhere are the National Archives?\tTwain\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Twain, went to, the National Archives) -> Twain (2805ms)\nWhere are the National Archives?\tGeneral\t-0.0\tWhere are the National Archives? -> $x: ($x, help, national archives) -> (General, help with, Scottish research National Archives) -> General (2867ms)\nWhere are the National Archives?\tThe project\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (The project, has developed, Thailand?s national digital archives) -> The project (2812ms)\nWhere are the National Archives?\tFiles\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (Files, found in, the National Archives) -> Files (2827ms)\nWhere are the National Archives?\tthe Congress\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (the Congress, created, the National Archives) -> the Congress (1782ms)\nWhere are the National Archives?\tHindu sacred music\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Hindu sacred music, may be found in, the National Sound Archive) -> Hindu sacred music (2812ms)\nWhere are the National Archives?\tThe Pledge\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (The Pledge, was found at, The National Archives) -> The Pledge (2827ms)\nWhere are the National Archives?\tthe program\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, will be guest speaker for, the program) -> the program (2863ms)\nWhere are the National Archives?\tspecific information\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, is looking for, specific information) -> specific information (2812ms)\nWhere are the National Archives?\tThe encasement\t-0.0\tWhere are the National Archives? -> $x: ($x, design, national archives) -> (The encasement, was designed by, the National Archives) -> The encasement (2863ms)\nWhere are the National Archives?\tJohn Russell Pope\t-0.0\tWhere are the National Archives? -> $x: ($x, design, national archives) -> (John Russell Pope, Structures Designed, National Archives Building) -> John Russell Pope (2782ms)\nWhere are the National Archives?\tthe means\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (the means, established by, the National Archives) -> the means (2854ms)\nWhere are the National Archives?\tindexes\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (indexes, can be found at, the National Archives) -> indexes (2782ms)\nWhere are the National Archives?\tEddie Wong\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Eddie Wong, then went to, the National Archives) -> Eddie Wong (2863ms)\nWhere are the National Archives?\tSunday\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Sunday, Went to, the National Archives) -> Sunday (2827ms)\nWhere are the National Archives?\ta nationwide tour\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (a nationwide tour, went from, the National Archives) -> a nationwide tour (2849ms)\nWhere are the National Archives?\ta conspiracy\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (The U.S. National Archives, Does, a conspiracy) -> a conspiracy (2596ms)\nWhere are the National Archives?\tthe two organisations\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (the two organisations, have established, the National Archives) -> the two organisations (2798ms)\nWhere are the National Archives?\tan original manuscript map\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (an original manuscript map, found in, the National Archives) -> an original manuscript map (2873ms)\nWhere are the National Archives?\tSteve\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (Steve, will be doing research at, the National Archives) -> Steve (2597ms)\nWhere are the National Archives?\tMiami reporter John Buchanan\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Miami reporter John Buchanan, went to, the National Archives) -> Miami reporter John Buchanan (2782ms)\nWhere are the National Archives?\tdatabases\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (databases, created by, the National Archives of Canada) -> databases (2873ms)\nWhere are the National Archives?\tpublic access\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, are available for, public access) -> public access (2798ms)\nWhere are the National Archives?\tThe Archives Act\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (The Archives Act, establishes, the National Archives) -> The Archives Act (2854ms)\nWhere are the National Archives?\ta US government report\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (a US government report, found at, the National Archives) -> a US government report (2812ms)\nWhere are the National Archives?\tthe dinosaurs and mammals\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (the dinosaurs and mammals, then went to, the National Archives) -> the dinosaurs and mammals (2839ms)\nWhere are the National Archives?\tbriefly talk\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (briefly talk, is going on at, the National Archives) -> briefly talk (2782ms)\nWhere are the National Archives?\tThe exhibition\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (The exhibition, was created by, the National Archives) -> The exhibition (2844ms)\nWhere are the National Archives?\tinclusion\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, was chosen for, inclusion) -> inclusion (2819ms)\nWhere are the National Archives?\tNational Archives Archeological Site\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (National Archives Archeological Site, Contained by, National Archives at College Park) -> National Archives Archeological Site (2858ms)\nWhere are the National Archives?\tSeven Stories\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (Seven Stories, is to create, a national archive) -> Seven Stories (2774ms)\nWhere are the National Archives?\ttools\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (tools, developed by, the National Archives) -> tools (2284ms)\nWhere are the National Archives?\tthe inclusion\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, was one major reason for, the inclusion) -> the inclusion (2844ms)\nWhere are the National Archives?\tthe army\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (the army, went to, the National Archives) -> the army (2798ms)\nWhere are the National Archives?\tCan't\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Can't, go to, the National Archives downtown) -> Can't (2839ms)\nWhere are the National Archives?\tAn exhibition\t-0.0\tWhere are the National Archives? -> $x: ($x, produce, national archives) -> (An exhibition, produced for, the 2007 National Archives Campaign) -> An exhibition (2863ms)\nWhere are the National Archives?\tthe perspective\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (the perspective, can be found at, the National Archives) -> the perspective (2844ms)\nWhere are the National Archives?\tDDI\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (DDI, have developed, National Data Archives) -> DDI (2849ms)\nWhere are the National Archives?\tAugust 2003\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (August 2003, has been developed by, the National Archives) -> August 2003 (2827ms)\nWhere are the National Archives?\tthe tiny Selective Service System\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (The National Archives, did, the tiny Selective Service System) -> the tiny Selective Service System (2849ms)\nWhere are the National Archives?\tIreland\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (Ireland, Contains, National Photographic Archive) -> Ireland (2867ms)\nWhere are the National Archives?\tGeorge Bigelow Rogers\t-0.0\tWhere are the National Archives? -> $x: ($x, design, national archives) -> (George Bigelow Rogers, Structures Designed, National African American Archives and Museum) -> George Bigelow Rogers (2819ms)\nWhere are the National Archives?\tan exhibition\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (an exhibition, created by, the National Archives) -> an exhibition (2782ms)\nWhere are the National Archives?\tpictures\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (pictures, has just gone online from, the National Archives) -> pictures (2849ms)\nWhere are the National Archives?\tThe original petitions\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (The original petitions, can be found in, the National Archives) -> The original petitions (2839ms)\nWhere are the National Archives?\twhat it says on the tin\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (The National Archive, does, what it says on the tin) -> what it says on the tin (2858ms)\nWhere are the National Archives?\tWashington\t-0.0\tWhere are the National Archives? -> $x: ($x, establish, national archives) -> (Washington, established, the National Archives) -> Washington (2790ms)\nWhere are the National Archives?\tThe proposal\t-0.0\tWhere are the National Archives? -> $x: ($x, create, national archives) -> (The proposal, would create, a national imaging archive) -> The proposal (1782ms)\nWhere are the National Archives?\tact\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (the Belgian National Archive, did, act) -> act (2790ms)\nWhere are the National Archives?\tthe last three voyages\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (the last three voyages, can be found in, National Archives) -> the last three voyages (2867ms)\nWhere are the National Archives?\t35mm microfilm\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (35mm microfilm, See Finding, Aid National Archives) -> 35mm microfilm (2849ms)\nWhere are the National Archives?\ta George Willingham\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, do have a will for, a George Willingham) -> a George Willingham (2596ms)\nWhere are the National Archives?\tBrianna\t-0.0\tWhere are the National Archives? -> $x: ($x, get, national archives) -> (Brianna, get an internship at, the National Archives) -> Brianna (2014ms)\nWhere are the National Archives?\tfree\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, can be viewed for, free) -> free (2867ms)\nWhere are the National Archives?\tThe 1852 map\t-0.0\tWhere are the National Archives? -> $x: ($x, discover, national archives) -> (The 1852 map, was discovered in, the National Archives) -> The 1852 map (2782ms)\nWhere are the National Archives?\tCanberra\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (Canberra, Contains, National Film and Sound Archive) -> Canberra (2867ms)\nWhere are the National Archives?\tThe films\t-0.0\tWhere are the National Archives? -> $x: ($x, discover, national archives) -> (The films, were discovered in, the National Archives) -> The films (2798ms)\nWhere are the National Archives?\tinformation\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (information, found in, the National Archives) -> information (2849ms)\nWhere are the National Archives?\tthe plans\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (the plans, found its way into, the National Archives) -> the plans (2854ms)\nWhere are the National Archives?\tdocuments\t-0.0\tWhere are the National Archives? -> $x: ($x, discover, national archives) -> (documents, discover some of, the National Archives) -> documents (2863ms)\nWhere are the National Archives?\ta document\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (a document, found in, the National Archives) -> a document (2867ms)\nWhere are the National Archives?\tHarvey Girls\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, does its show on, Harvey Girls) -> Harvey Girls (2858ms)\nWhere are the National Archives?\tthe best photos\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (the best photos, found in, the National Geographic archives) -> the best photos (2863ms)\nWhere are the National Archives?\t1941-1\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (1941-1, go to, the National Archives search) -> 1941-1 (2680ms)\nWhere are the National Archives?\tmassive work\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, have done, massive work) -> massive work (1707ms)\nWhere are the National Archives?\tthe District\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (the District, can be found in, the National Archives) -> the District (2873ms)\nWhere are the National Archives?\tthe Archives\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (the Archives, contain, the National AIDS Archive Collection) -> the Archives (2867ms)\nWhere are the National Archives?\treference purposes\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, are available for, reference purposes) -> reference purposes (2241ms)\nWhere are the National Archives?\tLenient Sentence data\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (Lenient Sentence data, can be found at, The National Archives) -> Lenient Sentence data (2867ms)\nWhere are the National Archives?\tKurlansky\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Kurlansky, found in, the National Archives) -> Kurlansky (2805ms)\nWhere are the National Archives?\tA little tidbit\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (A little tidbit, found at, the National Archives) -> A little tidbit (2858ms)\nWhere are the National Archives?\tthe government\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (the government, is going back through, the National Archives) -> the government (2849ms)\nWhere are the National Archives?\tthe acquisition\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, has been responsible for, the acquisition) -> the acquisition (2805ms)\nWhere are the National Archives?\tprisons\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (prisons, were found in, the National Archives) -> prisons (2819ms)\nWhere are the National Archives?\tNZSG members\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (NZSG members, can go into, the National Archive site and search) -> NZSG members (2819ms)\nWhere are the National Archives?\tthe monitoring\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archive, is responsible for, the monitoring) -> the monitoring (2013ms)\nWhere are the National Archives?\tcopies\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (copies, go to, the National Archives and Records Administration) -> copies (2849ms)\nWhere are the National Archives?\t1940\t-0.0\tWhere are the National Archives? -> $x: ($x, define, national archives) -> (1940, are defined on, the original National Archives) -> 1940 (1229ms)\nWhere are the National Archives?\tcompensation\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (compensation, can be found at, the National Archives) -> compensation (2867ms)\nWhere are the National Archives?\t?Files\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (?Files, found in, the National Archives) -> ?Files (2790ms)\nWhere are the National Archives?\texperts\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (experts, cannot be found in, the National Archives) -> experts (2873ms)\nWhere are the National Archives?\tthe National Archives\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (the National Archives, go to, the National Archives Website) -> the National Archives (1707ms)\nWhere are the National Archives?\ta period\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, will be stored for, a period) -> a period (2819ms)\nWhere are the National Archives?\tThe document\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (The document, was found at, the National Archives) -> The document (2873ms)\nWhere are the National Archives?\tNewsnight\t-0.0\tWhere are the National Archives? -> $x: ($x, produce, national archives) -> (Newsnight, produced documents from, the National Archives) -> Newsnight (1229ms)\nWhere are the National Archives?\tdecades\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (decades, have been able to go to, the National Archives) -> decades (2839ms)\nWhere are the National Archives?\taerial photographs\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (aerial photographs, contained within, the National Archives) -> aerial photographs (2812ms)\nWhere are the National Archives?\ttelephone 1300 886 881\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (telephone 1300 886 881, go to, the National Archives website) -> telephone 1300 886 881 (2774ms)\nWhere are the National Archives?\tan account\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (an account, found in, The National Archives) -> an account (2834ms)\nWhere are the National Archives?\tPassenger lists\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Passenger lists, can be found at, the National Archives) -> Passenger lists (2834ms)\nWhere are the National Archives?\tNext up?Jeff and Benjie\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Next up?Jeff and Benjie, go to, the National Archives) -> Next up?Jeff and Benjie (2819ms)\nWhere are the National Archives?\tthe Museum\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (the Museum, contain WRA photographs from, the National Archives) -> the Museum (2790ms)\nWhere are the National Archives?\ta letter\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (a letter, found in, the National Archives) -> a letter (2284ms)\nWhere are the National Archives?\tguys\t-0.0\tWhere are the National Archives? -> $x: ($x, get, national archives) -> (guys, can get documents in, our national archives) -> guys (2680ms)\nWhere are the National Archives?\tD.C.\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (D.C., do research in, the National Archives) -> D.C. (2839ms)\nWhere are the National Archives?\tvarious genealogical sources\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (various genealogical sources, found in, the National Archives) -> various genealogical sources (2863ms)\nWhere are the National Archives?\tthe Executive Order\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (the Executive Order, goes to, the National Archives) -> the Executive Order (1707ms)\nWhere are the National Archives?\tThe public\t-0.0\tWhere are the National Archives? -> $x: ($x, help, national archives) -> (The public, is invited to help, the National Archives) -> The public (2849ms)\nWhere are the National Archives?\tany violations\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, cannot be responsible for, any violations) -> any violations (2827ms)\nWhere are the National Archives?\tAfrica\t-0.0\tWhere are the National Archives? -> $x: ($x, have create, national archives) -> (Africa, has been able to create, valuable national data archives) -> Africa (2827ms)\nWhere are the National Archives?\told indexes\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (old indexes, found at, The National Archives) -> old indexes (2805ms)\nWhere are the National Archives?\tthe documents\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (the documents, find at, the National Archives) -> the documents (2873ms)\nWhere are the National Archives?\tYou?ll\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (You?ll, also need to go to, the National Archives) -> You?ll (2782ms)\nWhere are the National Archives?\tsouthern Jutland\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (southern Jutland, can be found at, the National Archive) -> southern Jutland (2849ms)\nWhere are the National Archives?\tMr. Pohanka\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (Mr. Pohanka, was doing research at, the National Archives) -> Mr. Pohanka (2798ms)\nWhere are the National Archives?\trisk management\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (risk management, is contained in, the National Archives version) -> risk management (2819ms)\nWhere are the National Archives?\toffice ?\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (office ?, found at, the National Archives) -> office ? (2241ms)\nWhere are the National Archives?\tevery other tourist\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, so did, every other tourist) -> every other tourist (2863ms)\nWhere are the National Archives?\tscrutiny\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives and copies, are available for, scrutiny) -> scrutiny (2241ms)\nWhere are the National Archives?\tThe memorandum\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (The memorandum, was found in, the National Archives) -> The memorandum (2867ms)\nWhere are the National Archives?\tthe trial\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (the trial, found in, the National Archives) -> the trial (2812ms)\nWhere are the National Archives?\tRecord\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Record, found at, National Archives) -> Record (2867ms)\nWhere are the National Archives?\tRomanian Banat\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Romanian Banat, can be found in, the National Archives) -> Romanian Banat (2863ms)\nWhere are the National Archives?\tinterviews\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives expert, will be available for, interviews) -> interviews (2805ms)\nWhere are the National Archives?\tMaryland\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (Maryland, Contains, National Archives Site) -> Maryland (2798ms)\nWhere are the National Archives?\t1942\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (1942, was found in, the National Archives) -> 1942 (2839ms)\nWhere are the National Archives?\tA leaflet\t-0.0\tWhere are the National Archives? -> $x: ($x, produce, national archives) -> (A leaflet, produced by, the The National Archives) -> A leaflet (2774ms)\nWhere are the National Archives?\tThe center?s design\t-0.0\tWhere are the National Archives? -> $x: ($x, contain, national archives) -> (The center?s design, contains, a national archive) -> The center?s design (2863ms)\nWhere are the National Archives?\tdeclassified orders\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (declassified orders, now found in, the National Archives) -> declassified orders (2873ms)\nWhere are the National Archives?\toperations\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, would be responsible for, operations) -> operations (2774ms)\nWhere are the National Archives?\tObama\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (Obama, went to, the National Archives) -> Obama (2867ms)\nWhere are the National Archives?\tthe beginning\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archive fonds, are expected for, the beginning) -> the beginning (2858ms)\nWhere are the National Archives?\t1901\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (1901, can be found on, the National Archives) -> 1901 (2827ms)\nWhere are the National Archives?\tthe contact group\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, does, the contact group) -> the contact group (2241ms)\nWhere are the National Archives?\tmicrofilm\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (microfilm, can be found in, the National Archives) -> microfilm (2147ms)\nWhere are the National Archives?\trenovation\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, has been closed for, renovation) -> renovation (2834ms)\nWhere are the National Archives?\tPapers\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (Papers, found at, the National Archives show) -> Papers (2782ms)\nWhere are the National Archives?\tmilitary records\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (military records, go to, the National Archives extra) -> military records (2596ms)\nWhere are the National Archives?\tthe order\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (the order, can be found in, the National Archives) -> the order (2854ms)\nWhere are the National Archives?\tGrandpa\t-0.0\tWhere are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, did with, Grandpa) -> Grandpa (1526ms)\nWhere are the National Archives?\tThe principles\t-0.0\tWhere are the National Archives? -> $x: ($x, develop, national archives) -> (The principles, were developed by, the National Archives) -> The principles (2834ms)\nWhere are the National Archives?\tlovely art\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (lovely art, tried to go to, the National Archives exhibits) -> lovely art (2819ms)\nWhere are the National Archives?\tThe other goal\t-0.0\tWhere are the National Archives? -> $x: ($x, go, national archives) -> (The other goal, was to go to, the Hungarian National Archives) -> The other goal (2798ms)\nWhere are the National Archives?\tArchives\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Archives, can be found at, The National Library Archive) -> Archives (2854ms)\nWhere are the National Archives?\tKellermans statements\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (Kellermans statements, found in, the National Archives) -> Kellermans statements (2839ms)\nWhere are the National Archives?\tthe gallery\t-0.0\tWhere are the National Archives? -> $x: ($x, get, national archives) -> (the gallery, finally get to, the National Archives) -> the gallery (2873ms)\nWhere are the National Archives?\tbusiness\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, will continue to be open for, business) -> business (2147ms)\nWhere are the National Archives?\tGarsia whose names\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (Garsia whose names, were found in, the National Archives) -> Garsia whose names (2834ms)\nWhere are the National Archives?\tfamily research\t-0.0\tWhere are the National Archives? -> $x: ($x, do, national archives) -> (family research, does, its National Archives collect) -> family research (2834ms)\nWhere are the National Archives?\tThe details\t-0.0\tWhere are the National Archives? -> $x: ($x, discover, national archives) -> (The details, were discovered from, the National Archives) -> The details (2839ms)\nWhere are the National Archives?\tThe film\t-0.0\tWhere are the National Archives? -> $x: ($x, introduce, national archives) -> (The film, introduces a visitor to, the National Archives) -> The film (2798ms)\nWhere are the National Archives?\tThe documents\t-0.0\tWhere are the National Archives? -> $x: ($x, found, national archives) -> (The documents, were found in, the National Archives) -> The documents (2863ms)\nWhere are the National Archives?\tthe 1935 electoral rolls\t-0.0\tWhere are the National Archives? -> $x: ($x, find, national archives) -> (the 1935 electoral rolls, are found in, the National Archives) -> the 1935 electoral rolls (2790ms)\nWhere are the National Archives?\tLincoln County\t-0.0\tWhere are the National Archives? -> $x: ($x, produce, national archives) -> (Lincoln County, has been produced by, the The National Archives) -> Lincoln County (2858ms)\nWhere are the National Archives?\tthe summer\t-0.0\tWhere are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, are planned for, the summer) -> the summer (2147ms)\nWhere are the National Archives?\tAEC headquarters records\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (AEC headquarters records, are divided between, National Archives) -> AEC headquarters records (2892ms)\nWhere are the National Archives?\ta listing\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (a listing, is located in, the National Archives Depository) -> a listing (2902ms)\nWhere are the National Archives?\twar\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (war, are in, the National Archives) -> war (2882ms)\nWhere are the National Archives?\tthe principal research repositories\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the principal research repositories, are, National Archives) -> the principal research repositories (2895ms)\nWhere are the National Archives?\tthe manuscript version\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (the manuscript version, is located in, the US National Archives) -> the manuscript version (2877ms)\nWhere are the National Archives?\tThe Presbyterian Historical Society\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (The Presbyterian Historical Society, is, the National Archives) -> The Presbyterian Historical Society (2902ms)\nWhere are the National Archives?\tData\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Data, can be submitted to, national archives) -> Data (2886ms)\nWhere are the National Archives?\tDiscovery\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Discovery, is, The National Archives) -> Discovery (2877ms)\nWhere are the National Archives?\tSound Archive\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Sound Archive, is, the national audiovisual archive) -> Sound Archive (2892ms)\nWhere are the National Archives?\t2007\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (2007, is filed under, National Archives) -> 2007 (2877ms)\nWhere are the National Archives?\tContents INTRODUCTION\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Contents INTRODUCTION, is, the National Archives) -> Contents INTRODUCTION (2889ms)\nWhere are the National Archives?\tThe report\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The report, is in, the National Archives) -> The report (2877ms)\nWhere are the National Archives?\tThe original document\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The original document, is in, the National Archives) -> The original document (2897ms)\nWhere are the National Archives?\tTemple Bar\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Temple Bar, are, the National Photographic Archive) -> Temple Bar (2886ms)\nWhere are the National Archives?\t34\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (34, will be sent to, National Archives) -> 34 (2873ms)\nWhere are the National Archives?\theaven\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (heaven, was, the National Archives) -> heaven (2900ms)\nWhere are the National Archives?\tThe Archives Shop\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (The Archives Shop, is located in, the National Archives Building) -> The Archives Shop (2900ms)\nWhere are the National Archives?\tThe original manuscript\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The original manuscript, is in, the French national archives) -> The original manuscript (2897ms)\nWhere are the National Archives?\t26 paintings\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (26 paintings, are in, the National Archives) -> 26 paintings (2886ms)\nWhere are the National Archives?\tDr. Deming\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Dr. Deming, are in, the National Archives) -> Dr. Deming (2900ms)\nWhere are the National Archives?\tICPSR\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (ICPSR, can also be accessed from, National Archive) -> ICPSR (2877ms)\nWhere are the National Archives?\tJanuary 1863\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (January 1863, is located in, the National Archives) -> January 1863 (2895ms)\nWhere are the National Archives?\tThe Telegram\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (The Telegram, is in, national archives) -> The Telegram (2902ms)\nWhere are the National Archives?\t610 Reproductions\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (610 Reproductions, may also be available at, National Archives) -> 610 Reproductions (2904ms)\nWhere are the National Archives?\tThe memo\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The memo, is in, the National Archives) -> The memo (2900ms)\nWhere are the National Archives?\tA copy\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (A copy, is in, the National Archives) -> A copy (2902ms)\nWhere are the National Archives?\tEDC\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (EDC, is, a national archive) -> EDC (2895ms)\nWhere are the National Archives?\tThe original letter book\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The original letter book, is in, the National Archives) -> The original letter book (2892ms)\nWhere are the National Archives?\trecorded oral arguments\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (recorded oral arguments, are in, the National Archives) -> recorded oral arguments (2877ms)\nWhere are the National Archives?\tJFK\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (JFK, are in, the National Archives) -> JFK (2892ms)\nWhere are the National Archives?\tFrank Capra\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Frank Capra, are in, the National Archives today) -> Frank Capra (2900ms)\nWhere are the National Archives?\tthe models\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the models, are in, the National Archives) -> the models (2886ms)\nWhere are the National Archives?\tthe originals of which\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the originals of which, are in, the National Archives) -> the originals of which (2895ms)\nWhere are the National Archives?\tThe records or copies\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The records or copies, are in, the National Archives) -> The records or copies (2892ms)\nWhere are the National Archives?\tthe workshops\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the workshops, is, the European National Archives) -> the workshops (2900ms)\nWhere are the National Archives?\tthe tract books\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (the tract books, are located in, the National Archives Building) -> the tract books (2900ms)\nWhere are the National Archives?\ta Pose?with Lee Lin Chin\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (a Pose?with Lee Lin Chin, is, a National Archives) -> a Pose?with Lee Lin Chin (2892ms)\nWhere are the National Archives?\tthe Ballantyne collection\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the Ballantyne collection, is in, the National Archives) -> the Ballantyne collection (2895ms)\nWhere are the National Archives?\tthe next step\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the next step, was, the National Archives) -> the next step (2882ms)\nWhere are the National Archives?\tthe Natural History Museum\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the Natural History Museum, is, the National Archives) -> the Natural History Museum (2904ms)\nWhere are the National Archives?\tArmy Medical Services research\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Army Medical Services research, is, the National Archives) -> Army Medical Services research (2882ms)\nWhere are the National Archives?\tAn official copy\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (An official copy, is in, the National Archives) -> An official copy (2873ms)\nWhere are the National Archives?\tThe original print\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The original print, is in, National Archives) -> The original print (2902ms)\nWhere are the National Archives?\tagency makes\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (agency makes, will be retained as, national archives) -> agency makes (2886ms)\nWhere are the National Archives?\tthe French Army\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the French Army, is in, the National Archives) -> the French Army (2882ms)\nWhere are the National Archives?\tThe only other known copy\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The only other known copy, is in, the National Archives) -> The only other known copy (2886ms)\nWhere are the National Archives?\tNavy Memorial\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Navy Memorial, is right by, National Archives) -> Navy Memorial (2900ms)\nWhere are the National Archives?\tthe Confederate Army\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (the Confederate Army, are located in, the National Archives) -> the Confederate Army (2895ms)\nWhere are the National Archives?\tthe Civil war\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (the Civil war, are located in, the National Archives) -> the Civil war (2900ms)\nWhere are the National Archives?\tfact\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (fact, is in, the National Archives) -> fact (2873ms)\nWhere are the National Archives?\tthe Creek Removal\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (the Creek Removal, are also located in, the National Archives) -> the Creek Removal (2882ms)\nWhere are the National Archives?\tThe bulletins\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The bulletins, are in, the National Archives) -> The bulletins (2889ms)\nWhere are the National Archives?\tNATF Form 84\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (NATF Form 84, is, the National Archives) -> NATF Form 84 (2900ms)\nWhere are the National Archives?\tmilitary service\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (military service, are, the National Archives) -> military service (2902ms)\nWhere are the National Archives?\tThe originals\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (The originals, are located in, the National Archives) -> The originals (2897ms)\nWhere are the National Archives?\tBourdamis\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Bourdamis, is, national archives chair) -> Bourdamis (2886ms)\nWhere are the National Archives?\tLand-entry case files\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (Land-entry case files, are located in, the National Archives) -> Land-entry case files (2902ms)\nWhere are the National Archives?\tNGDC\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (NGDC, is, the National Archive) -> NGDC (2889ms)\nWhere are the National Archives?\tonly 20\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (only 20, are in, the National Archives) -> only 20 (2900ms)\nWhere are the National Archives?\tthe Poor Law Board\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the Poor Law Board, are in, The National Archives) -> the Poor Law Board (2889ms)\nWhere are the National Archives?\tSource\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Source, is, National Archives) -> Source (2892ms)\nWhere are the National Archives?\tthe materials\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the materials, be sent to, National Archives) -> the materials (2882ms)\nWhere are the National Archives?\tMay\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (May, is, National Photo Month Archives) -> May (2877ms)\nWhere are the National Archives?\t13 RecordSearch\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (13 RecordSearch, is, the National Archives) -> 13 RecordSearch (2897ms)\nWhere are the National Archives?\tOrders\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Orders, were obtained from, National Archives) -> Orders (2886ms)\nWhere are the National Archives?\tArchival Training\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Archival Training, was set up in, National Archives) -> Archival Training (2895ms)\nWhere are the National Archives?\tBR?s reply\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (BR?s reply, is in, the National Archives) -> BR?s reply (2897ms)\nWhere are the National Archives?\tforeign policy\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (foreign policy, is, the National Security Archive) -> foreign policy (2902ms)\nWhere are the National Archives?\trequests\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (requests, are also 'retain as, national archives) -> requests (2904ms)\nWhere are the National Archives?\tthe Tokyo Trial\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the Tokyo Trial, are presently stored in, national archives) -> the Tokyo Trial (2902ms)\nWhere are the National Archives?\tthe event\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the event, are, the National Archives) -> the event (2904ms)\nWhere are the National Archives?\tany Roswell files\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (any Roswell files, was, the National Archives) -> any Roswell files (2895ms)\nWhere are the National Archives?\tresearch genealogy\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (research genealogy, are, the National Archives) -> research genealogy (2892ms)\nWhere are the National Archives?\tthe extant records\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the extant records, are in, the National Archives) -> the extant records (2882ms)\nWhere are the National Archives?\timportant digital records\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (important digital records, are preserved as, national archives) -> important digital records (2900ms)\nWhere are the National Archives?\tMetro?s work\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Metro?s work, is in, the national Design Archives) -> Metro?s work (2889ms)\nWhere are the National Archives?\t615 Reproductions\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (615 Reproductions, may also be available at, National Archives) -> 615 Reproductions (2889ms)\nWhere are the National Archives?\tLMA\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be involve in, national archives) -> (LMA, has also been involved in, The National Archives) -> LMA (2904ms)\nWhere are the National Archives?\tThe Emancipation Proclamation\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The Emancipation Proclamation, is in, the National Archives) -> The Emancipation Proclamation (2892ms)\nWhere are the National Archives?\t605 Reproductions\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (605 Reproductions, may also be available at, National Archives) -> 605 Reproductions (2873ms)\nWhere are the National Archives?\tThe Pennsylvania lists\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The Pennsylvania lists, are in, the National Archives) -> The Pennsylvania lists (2877ms)\nWhere are the National Archives?\tThe Swenson Center\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (The Swenson Center, is, a national archives) -> The Swenson Center (2877ms)\nWhere are the National Archives?\tearly drafts\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (early drafts, are in, National Archives) -> early drafts (2895ms)\nWhere are the National Archives?\tthe company\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the company, was given by, National Archives) -> the company (2877ms)\nWhere are the National Archives?\tthe First World War\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the First World War, are held by, National Archives) -> the First World War (2889ms)\nWhere are the National Archives?\tthe original logs\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the original logs, are in, the National Archives) -> the original logs (2900ms)\nWhere are the National Archives?\tmankind\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (mankind, is in, the national archive) -> mankind (2886ms)\nWhere are the National Archives?\tthe images\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the images, have been provided to, NATIONAL ARCHIVES) -> the images (2882ms)\nWhere are the National Archives?\tthe originals\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the originals, are in, The National Archives) -> the originals (2897ms)\nWhere are the National Archives?\tCollection\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Collection, was donated by, National Archives) -> Collection (2892ms)\nWhere are the National Archives?\tthe head\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (the head, are now located in, National Archives II) -> the head (2882ms)\nWhere are the National Archives?\tPaul Rudolph\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Paul Rudolph, is in, the National Archives) -> Paul Rudolph (2902ms)\nWhere are the National Archives?\tThe slowest federal agency\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (The slowest federal agency, is, the National Archives) -> The slowest federal agency (2877ms)\nWhere are the National Archives?\tthe Kirk Session records\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the Kirk Session records, are in, the National Archives) -> the Kirk Session records (2897ms)\nWhere are the National Archives?\tWalter Cronkite\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Walter Cronkite, is in, the National Archives) -> Walter Cronkite (2892ms)\nWhere are the National Archives?\tmaterial\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (material, is, the National Archives collection) -> material (2877ms)\nWhere are the National Archives?\tIrish newspapers\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Irish newspapers, are in, the National Archives) -> Irish newspapers (2895ms)\nWhere are the National Archives?\tgovernment research\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (government research, is, the National Archives) -> government research (2895ms)\nWhere are the National Archives?\t765 Reproductions\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (765 Reproductions, may also be available at, National Archives) -> 765 Reproductions (2897ms)\nWhere are the National Archives?\tthe 1969?1972\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the 1969?1972, are primarily in, National Archives) -> the 1969?1972 (2895ms)\nWhere are the National Archives?\t1982\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (1982, is in, the National Archives) -> 1982 (2897ms)\nWhere are the National Archives?\tThe MS\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The MS, is in, the National Archives) -> The MS (2886ms)\nWhere are the National Archives?\tThe log\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The log, is in, the National Archives) -> The log (2873ms)\nWhere are the National Archives?\tJTF-FA\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be located in, national archives) -> (JTF-FA, have been located in, the National Archives) -> JTF-FA (2902ms)\nWhere are the National Archives?\tthe source\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the source, is, the National Archives) -> the source (2892ms)\nWhere are the National Archives?\tNational\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (National, is, the national audiovisual archive) -> National (2897ms)\nWhere are the National Archives?\tmetadata\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (metadata, is 'retain as, national archives) -> metadata (2873ms)\nWhere are the National Archives?\tcomprehensive Listing\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (comprehensive Listing, are retired to, National Archives) -> comprehensive Listing (2892ms)\nWhere are the National Archives?\tnearby\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (nearby, are, National African American Archives) -> nearby (2897ms)\nWhere are the National Archives?\t620 Reproductions\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (620 Reproductions, may also be available at, National Archives) -> 620 Reproductions (2902ms)\nWhere are the National Archives?\tOswald?s rifle\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Oswald?s rifle, is in, the National Archives) -> Oswald?s rifle (2889ms)\nWhere are the National Archives?\tOctober\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (October, is, National Archives Month) -> October (2892ms)\nWhere are the National Archives?\tpassenger lists\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (passenger lists, were indexed by, National Archives) -> passenger lists (2895ms)\nWhere are the National Archives?\tChalmers\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Chalmers, are in, the National Archives) -> Chalmers (2889ms)\nWhere are the National Archives?\tW.W.II\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (W.W.II, are maintained at, National Archives) -> W.W.II (2882ms)\nWhere are the National Archives?\tthe approval\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the approval, has to be provided to, NATIONAL ARCHIVES) -> the approval (2902ms)\nWhere are the National Archives?\tRecords\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Records, are from, National Archives) -> Records (2902ms)\nWhere are the National Archives?\tthe book stacks and library offices\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the book stacks and library offices, are, the National Archives) -> the book stacks and library offices (2897ms)\nWhere are the National Archives?\tJan . 1 , 1863 ?\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Jan . 1 , 1863 ?, is in, the National Archives) -> Jan . 1 , 1863 ? (2895ms)\nWhere are the National Archives?\tCopies\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Copies, are also in, National Archives) -> Copies (2900ms)\nWhere are the National Archives?\tthe exhibit\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (the exhibit, is in, the National Archives) -> the exhibit (2886ms)\nWhere are the National Archives?\tbullet\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (bullet, is in, the National Archives) -> bullet (2897ms)\nWhere are the National Archives?\tThe next stop\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (The next stop, was, the National Archives) -> The next stop (2900ms)\nWhere are the National Archives?\ta copy\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (a copy, is deposited with, national archives) -> a copy (2873ms)\nWhere are the National Archives?\tthe remaining records\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (the remaining records, is, the National Archives) -> the remaining records (2889ms)\nWhere are the National Archives?\tSelective Service System records\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (Selective Service System records, are in, the National Archives) -> Selective Service System records (2882ms)\nWhere are the National Archives?\tThe Records\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (The Records, are in, the National Archives) -> The Records (2877ms)\nWhere are the National Archives?\tpapers\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be in, national archives) -> (papers, are in, the National Archives) -> papers (2882ms)\nWhere are the National Archives?\tLaboratories\t-0.111111111111\tWhere are the National Archives? -> $x: ($x, be be, national archives) -> (Laboratories, were used by, national archives) -> Laboratories (2902ms)\nWhere are the National Archives?\tthe USA\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are made in, the USA) -> the USA (2908ms)\nWhere are the National Archives?\tthe 2001 Census\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was first introduced in, the 2001 Census) -> the 2001 Census (2910ms)\nWhere are the National Archives?\tFlorida\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives Workshop, was held in, Florida) -> Florida (2909ms)\nWhere are the National Archives?\tcategories\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (National archives, were valued in, categories) -> categories (2909ms)\nWhere are the National Archives?\tabsentia\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Security Archive, was cited in, absentia) -> absentia (2910ms)\nWhere are the National Archives?\tParis\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The French National Archives, are in, Paris) -> Paris (2908ms)\nWhere are the National Archives?\tthe classroom\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, might be useful in, the classroom) -> the classroom (2908ms)\nWhere are the National Archives?\tnegotiations\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, is currently in, negotiations) -> negotiations (2909ms)\nWhere are the National Archives?\t1992\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was established in, 1992) -> 1992 (2910ms)\nWhere are the National Archives?\tjeopardy\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The national archive, was in, jeopardy) -> jeopardy (2907ms)\nWhere are the National Archives?\ttwo different buildings\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, is housed in, two different buildings) -> two different buildings (2910ms)\nWhere are the National Archives?\tPDF.\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The national archives, are particularly interested in, PDF.) -> PDF. (2908ms)\nWhere are the National Archives?\tApril 2003\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, was launched in, April 2003) -> April 2003 (2908ms)\nWhere are the National Archives?\tcooperative projects\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archive, are involved in, cooperative projects) -> cooperative projects (2909ms)\nWhere are the National Archives?\tthe form\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, have been in, the form) -> the form (2906ms)\nWhere are the National Archives?\t1970\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was in, 1970) -> 1970 (2910ms)\nWhere are the National Archives?\ta project\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The Dutch National Archives, are involved in, a project) -> a project (2905ms)\nWhere are the National Archives?\t1934\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was established in, 1934) -> 1934 (2910ms)\nWhere are the National Archives?\tOctober 2000\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Obituary Archive?, was launched in, October 2000) -> October 2000 (2910ms)\nWhere are the National Archives?\tthe article\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, is mentioned in, the article) -> the article (2910ms)\nWhere are the National Archives?\tprogress\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is now in, progress) -> progress (2909ms)\nWhere are the National Archives?\tan accessible style\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is written in, an accessible style) -> an accessible style (2908ms)\nWhere are the National Archives?\tthe same building\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, were in, the same building) -> the same building (2909ms)\nWhere are the National Archives?\t1838\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was created in, 1838) -> 1838 (2908ms)\nWhere are the National Archives?\t1997\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was established in, 1997) -> 1997 (2905ms)\nWhere are the National Archives?\tmemory\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives award, is named in, memory) -> memory (2905ms)\nWhere are the National Archives?\t1882\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, were founded in, 1882) -> 1882 (2908ms)\nWhere are the National Archives?\t1985\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Security Archive, was founded in, 1985) -> 1985 (2908ms)\nWhere are the National Archives?\tKew\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, are based in, Kew) -> Kew (2907ms)\nWhere are the National Archives?\ta constant battle\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is engaged in, a constant battle) -> a constant battle (2910ms)\nWhere are the National Archives?\tR. J. Whitwell\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, has been translated in, R. J. Whitwell) -> R. J. Whitwell (2907ms)\nWhere are the National Archives?\t1998\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, was established in, 1998) -> 1998 (2909ms)\nWhere are the National Archives?\tFact Sheet 1\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are given in, Fact Sheet 1) -> Fact Sheet 1 (2909ms)\nWhere are the National Archives?\tan 18th century mansion\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The national archives, are stored in, an 18th century mansion) -> an 18th century mansion (2910ms)\nWhere are the National Archives?\tthe Regional Archives\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are kept in, the Regional Archives) -> the Regional Archives (2907ms)\nWhere are the National Archives?\tthe middle\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is hidden away in, the middle) -> the middle (2908ms)\nWhere are the National Archives?\t1922\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the Irish national archives, were burnt in, 1922) -> 1922 (2907ms)\nWhere are the National Archives?\tthe Squadron\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (National Archives, else was in, the Squadron) -> the Squadron (2909ms)\nWhere are the National Archives?\tan iconic building\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the national archives, are usually housed in, an iconic building) -> an iconic building (2908ms)\nWhere are the National Archives?\tan extremely poor state\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the national archive, is in, an extremely poor state) -> an extremely poor state (2910ms)\nWhere are the National Archives?\taccordance\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, shall be authenticated in, accordance) -> accordance (2905ms)\nWhere are the National Archives?\tthe 60s\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Film Archive, was created in, the 60s) -> the 60s (2909ms)\nWhere are the National Archives?\tthe theft\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, has been charged in, the theft) -> the theft (2907ms)\nWhere are the National Archives?\tcharge\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Music Archives, was in, charge) -> charge (2910ms)\nWhere are the National Archives?\tRecord Group 59\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are contained in, Record Group 59) -> Record Group 59 (2910ms)\nWhere are the National Archives?\tSucre\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, are in, Sucre) -> Sucre (2907ms)\nWhere are the National Archives?\t1953\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Literary Archives, were opened in, 1953) -> 1953 (2905ms)\nWhere are the National Archives?\tresearch guides\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are described in, research guides) -> research guides (2904ms)\nWhere are the National Archives?\tthe Gelman Library\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Security Archive, is housed in, the Gelman Library) -> the Gelman Library (2910ms)\nWhere are the National Archives?\tPrague\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is in, Prague) -> Prague (2909ms)\nWhere are the National Archives?\tBelmopan\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (Its national archives, are in, Belmopan) -> Belmopan (2907ms)\nWhere are the National Archives?\tthe development\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archive, is currently involved in, the development) -> the development (2904ms)\nWhere are the National Archives?\ta series\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is the latest in, a series) -> a series (2909ms)\nWhere are the National Archives?\tscandal\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, was embroiled in, scandal) -> scandal (2909ms)\nWhere are the National Archives?\tthe cellar\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, are housed in, the cellar) -> the cellar (2910ms)\nWhere are the National Archives?\tthe possession\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was in, the possession) -> the possession (2910ms)\nWhere are the National Archives?\t2003\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, were created in, 2003) -> 2003 (2910ms)\nWhere are the National Archives?\tmuch better condition\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are in, much better condition) -> much better condition (2904ms)\nWhere are the National Archives?\tcourt\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Security Archive, is in, court) -> court (2904ms)\nWhere are the National Archives?\tessence\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives Experience, is in, essence) -> essence (2910ms)\nWhere are the National Archives?\t1936\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives building, was erected in, 1936) -> 1936 (2904ms)\nWhere are the National Archives?\tthe process\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The national archives, are in, the process) -> the process (2907ms)\nWhere are the National Archives?\t1935\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (The BFI National Archive, was founded in, 1935) -> 1935 (2909ms)\nWhere are the National Archives?\tthe business\t-0.111111111112\tWhere are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, be in, the business) -> the business (2907ms)\nWhere are the National Archives?\tfederal records\t-0.222222222222\tWhere are the National Archives? -> $x: ($x, become of, national archives) -> (federal records, become part of, the National Archives holdings) -> federal records (2910ms)\nWhere are the National Archives?\tthe registry\t-0.222222222222\tWhere are the National Archives? -> $x: ($x, become of, national archives) -> (the registry, will become part of, the National Archives) -> the registry (2910ms)\nWhere are the National Archives?\tTimothy\t-0.222222222222\tWhere are the National Archives? -> $x: ($x, become of, national archives) -> (Timothy, Will Become of, The National Sound Archive) -> Timothy (2910ms)\nWhat countries supplied aid?\tthe diet\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the diet, works with, the aid) -> the diet (3321ms)\nWhat countries supplied aid?\tMiriam\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Miriam, worked with, Legal Aid) -> Miriam (2270ms)\nWhat countries supplied aid?\tthe corruption\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the corruption, surrounding, the distribution of aid) -> the corruption (3369ms)\nWhat countries supplied aid?\tfour employees\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (four employees, chose to work with, AIDS agencies) -> four employees (3265ms)\nWhat countries supplied aid?\tOLAF pro bono staff\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (OLAF pro bono staff, works with, legal aid) -> OLAF pro bono staff (3390ms)\nWhat countries supplied aid?\tLess developed countries\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Less developed countries, found new sources of, aid finance) -> Less developed countries (3373ms)\nWhat countries supplied aid?\tCongressional Budget Office\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Congressional Budget Office, rates, aid) -> Congressional Budget Office (3386ms)\nWhat countries supplied aid?\tBangalore\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Bangalore, is working with, AID) -> Bangalore (3264ms)\nWhat countries supplied aid?\tThe Kenyan government\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (The Kenyan government, is working with, aid groups) -> The Kenyan government (3321ms)\nWhat countries supplied aid?\t24\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (24, have the highest rate of, HIV/AIDS infection) -> 24 (3390ms)\nWhat countries supplied aid?\tthe Pastoral Solidarity Fund\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the Pastoral Solidarity Fund, represents, direct aid) -> the Pastoral Solidarity Fund (3185ms)\nWhat countries supplied aid?\tODRAP\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (ODRAP, is a source of, financial aid) -> ODRAP (2270ms)\nWhat countries supplied aid?\tThe Pell grant\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (The Pell grant, is the most important source of, aid) -> The Pell grant (3348ms)\nWhat countries supplied aid?\ttown or city clubs\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (town or city clubs, are some other possible sources of, aid) -> town or city clubs (3321ms)\nWhat countries supplied aid?\tLouisiana\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Louisiana, has the fifth highest rate of, AIDS cases) -> Louisiana (3291ms)\nWhat countries supplied aid?\ta health care career\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (a health care career, find sources of, financial aid) -> a health care career (3386ms)\nWhat countries supplied aid?\tNASTAD\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (NASTAD, represents, the AIDS directors) -> NASTAD (3343ms)\nWhat countries supplied aid?\tFlorida\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rank be, aid) -> (Florida, is ranked second for, total pediatric HIV/AIDS cases) -> Florida (3299ms)\nWhat countries supplied aid?\tthe prosthesis\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the prosthesis, represents, an important aid) -> the prosthesis (3390ms)\nWhat countries supplied aid?\tbanks\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (banks, provide another source of, financial aid) -> banks (3364ms)\nWhat countries supplied aid?\tJack\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Jack, worked with, Legal Aid) -> Jack (3335ms)\nWhat countries supplied aid?\tal Shabab\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (al Shabab, worked with, aid groups) -> al Shabab (3369ms)\nWhat countries supplied aid?\tthe U.S.\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the U.S., were their main source of, aid) -> the U.S. (3382ms)\nWhat countries supplied aid?\tMs Rees\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Ms Rees, worked with, Legal Aid) -> Ms Rees (3291ms)\nWhat countries supplied aid?\tCanada\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Canada, has the highest rate of, AIDS) -> Canada (3348ms)\nWhat countries supplied aid?\tScholarships Scholarships\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Scholarships Scholarships, are a great source of, aid) -> Scholarships Scholarships (3335ms)\nWhat countries supplied aid?\tthe taboo\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the taboo, surrounding, Aids) -> the taboo (3354ms)\nWhat countries supplied aid?\tCastro\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Castro, lost a valuable source of, aid) -> Castro (3328ms)\nWhat countries supplied aid?\tThe technological visionary\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (The technological visionary, work with, the aid) -> The technological visionary (3354ms)\nWhat countries supplied aid?\tMagnum cash advance\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Magnum cash advance, is a source of, financial aid) -> Magnum cash advance (3321ms)\nWhat countries supplied aid?\tthe operating systems\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the operating systems, work with, accessibility aids) -> the operating systems (2270ms)\nWhat countries supplied aid?\tNevada\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Nevada, has a higher rate of, HIV/AIDS) -> Nevada (3378ms)\nWhat countries supplied aid?\tHamas\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Hamas, has tried to find alternative sources of, aid) -> Hamas (2296ms)\nWhat countries supplied aid?\tU.S.\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rule on, aid) -> (U.S., eases rules on, federal aid) -> U.S. (3390ms)\nWhat countries supplied aid?\tThe department\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (The department, works with, financial aid) -> The department (3306ms)\nWhat countries supplied aid?\ttuition\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (tuition, seek alternative sources of, aid) -> tuition (2417ms)\nWhat countries supplied aid?\tThe three colors\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The three colors, represent different levels of, aid) -> The three colors (3062ms)\nWhat countries supplied aid?\tpost secondary schools\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (post secondary schools, are public sources of, aid) -> post secondary schools (3328ms)\nWhat countries supplied aid?\tthe iPhone\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the iPhone, works with, hearing aids) -> the iPhone (2983ms)\nWhat countries supplied aid?\tthe Corps\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the Corps, represents a genuine innovation in, humanitarian aid) -> the Corps (3364ms)\nWhat countries supplied aid?\thigh-risk groups\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (high-risk groups, generally had low rates of, HIV/AIDS awareness) -> high-risk groups (3378ms)\nWhat countries supplied aid?\tUPS\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (UPS, is working with, AID) -> UPS (2329ms)\nWhat countries supplied aid?\tHispanics\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Hispanics, have disproportionately higher rates of, HIV/AIDS) -> Hispanics (3369ms)\nWhat countries supplied aid?\tA hearing loop system\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (A hearing loop system, works with, hearing aids) -> A hearing loop system (3354ms)\nWhat countries supplied aid?\t?Barb Paynter\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (?Barb Paynter, worked with, Legal Aid) -> ?Barb Paynter (3382ms)\nWhat countries supplied aid?\tThe Myconostica product\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The Myconostica product, represents, an important aid) -> The Myconostica product (3369ms)\nWhat countries supplied aid?\tan audiologist\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (an audiologist, worked with, hearing aid) -> an audiologist (3314ms)\nWhat countries supplied aid?\tthe stigma , prejudice and fear\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the stigma , prejudice and fear, surrounded, HIV/AIDS) -> the stigma , prejudice and fear (3343ms)\nWhat countries supplied aid?\ta firebrand\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a firebrand, come to work with, the aid) -> a firebrand (3306ms)\nWhat countries supplied aid?\tdetail\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (detail, also includes sources of, nonfederal aid) -> detail (2983ms)\nWhat countries supplied aid?\tThe guide\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (The guide, also includes sources of, nonfederal aid) -> The guide (3369ms)\nWhat countries supplied aid?\tan air compressor\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (an air compressor, works with, the aid) -> an air compressor (3359ms)\nWhat countries supplied aid?\tthe silence\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the silence, surrounding, the AIDS epidemic) -> the silence (2356ms)\nWhat countries supplied aid?\tUnited States\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (United States, became principal source of, aid) -> United States (3343ms)\nWhat countries supplied aid?\tprejudice\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (prejudice, has surrounded, HIV/AIDS) -> prejudice (3382ms)\nWhat countries supplied aid?\tless reliability\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (less reliability, represents, unfair government aid) -> less reliability (3382ms)\nWhat countries supplied aid?\tthe children\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the children, rated, the study hearing aids) -> the children (2417ms)\nWhat countries supplied aid?\tmedical breakthroughs\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (medical breakthroughs, have decreased the rate of, AIDS deaths) -> medical breakthroughs (3364ms)\nWhat countries supplied aid?\tDharmendar ji\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Dharmendar ji, worked with, AID) -> Dharmendar ji (3135ms)\nWhat countries supplied aid?\twomen\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (women, represented 8 % of, AIDS diagnoses) -> women (3335ms)\nWhat countries supplied aid?\tSite\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Site, should work with, aid) -> Site (3343ms)\nWhat countries supplied aid?\tTurbo Mnemonics\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Turbo Mnemonics, represents just, the memory aids portion) -> Turbo Mnemonics (3359ms)\nWhat countries supplied aid?\tEducation\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Education, is the largest source of, aid) -> Education (3382ms)\nWhat countries supplied aid?\tthe U.N.?s politics and honesty\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the U.N.?s politics and honesty, surround, the AIDS issue) -> the U.N.?s politics and honesty (3328ms)\nWhat countries supplied aid?\tdental caries home remedies\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (dental caries home remedies, represent only, first aid help) -> dental caries home remedies (2296ms)\nWhat countries supplied aid?\tmicronutrients\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (micronutrients, represents a radical change for, food aid) -> micronutrients (3373ms)\nWhat countries supplied aid?\tred\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (red, represents, Aids) -> red (3369ms)\nWhat countries supplied aid?\tPeter\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Peter, currently works actively with, AID Chennai) -> Peter (3335ms)\nWhat countries supplied aid?\tthe story-making activities\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the story-making activities, have surrounded, the AIDS epidemic) -> the story-making activities (3299ms)\nWhat countries supplied aid?\tThe research and teaching environment\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (The research and teaching environment, surrounds, AIDS) -> The research and teaching environment (3348ms)\nWhat countries supplied aid?\tECSI\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (ECSI, is your source for, first aid) -> ECSI (3314ms)\nWhat countries supplied aid?\tGod\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (God, is often represented symbolically through, the aid) -> God (2296ms)\nWhat countries supplied aid?\tyear\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (year, have lower death rates from, AIDS) -> year (3373ms)\nWhat countries supplied aid?\tthe myths\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the myths, surrounding, financial aid) -> the myths (2329ms)\nWhat countries supplied aid?\tthe state\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the state, had the eighth highest rate of, AIDS) -> the state (3373ms)\nWhat countries supplied aid?\tillnesses\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (illnesses, represent, an increasingly important aid) -> illnesses (3306ms)\nWhat countries supplied aid?\ta hold\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (a hold, received an additional source of, aid) -> a hold (3185ms)\nWhat countries supplied aid?\tthe first time\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the first time, sourced through, Farm Aid) -> the first time (3359ms)\nWhat countries supplied aid?\tPublic Health Nurse\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Public Health Nurse, works with, AIDs patients) -> Public Health Nurse (3373ms)\nWhat countries supplied aid?\tInduction loop systems\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Induction loop systems, work with, hearing aids) -> Induction loop systems (2296ms)\nWhat countries supplied aid?\tcar dealers insurance\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (car dealers insurance, can represent, a fantastic aid) -> car dealers insurance (2329ms)\nWhat countries supplied aid?\tThe Fast Payday Loan\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The Fast Payday Loan, represents, a great financial aid) -> The Fast Payday Loan (2356ms)\nWhat countries supplied aid?\tThe Somalia\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (The Somalia, has lowest rate of, HIV AIDS) -> The Somalia (3373ms)\nWhat countries supplied aid?\tthe pantry\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the pantry, find other sources of, aid) -> the pantry (3335ms)\nWhat countries supplied aid?\tthe Student\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the Student, represents, the total unearned aid) -> the Student (3062ms)\nWhat countries supplied aid?\tProstitution and drug use\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Prostitution and drug use, generate high rates of, HIV and AIDS) -> Prostitution and drug use (3348ms)\nWhat countries supplied aid?\ttwo commenters\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (two commenters, representing, financial aid administrators) -> two commenters (3348ms)\nWhat countries supplied aid?\tThe federal government\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (The federal government, is the largest source of, aid) -> The federal government (3343ms)\nWhat countries supplied aid?\tJoseph\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Joseph, has worked with, Irish Aid) -> Joseph (3335ms)\nWhat countries supplied aid?\tscholarships\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (scholarships, are a great source of, aid) -> scholarships (3348ms)\nWhat countries supplied aid?\tthe cordless microphone\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the cordless microphone, works with, the aid) -> the cordless microphone (3390ms)\nWhat countries supplied aid?\tbad credit\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (bad credit, represent, a great financial aid) -> bad credit (2296ms)\nWhat countries supplied aid?\tThe funding\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The funding, represents, the Municipal Aid portion) -> The funding (3306ms)\nWhat countries supplied aid?\tThe BCGEU\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The BCGEU, represents, most legal aid workers) -> The BCGEU (3359ms)\nWhat countries supplied aid?\tOld Normanton\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Old Normanton, worked with, Aids sufferers) -> Old Normanton (3306ms)\nWhat countries supplied aid?\tMCC\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (MCC, is working with, AIDs) -> MCC (3382ms)\nWhat countries supplied aid?\tthe Memorial\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the Memorial, worked with, the aid) -> the Memorial (3314ms)\nWhat countries supplied aid?\tthe Diversity Foundation\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the Diversity Foundation, has been a rare source of, aid) -> the Diversity Foundation (3364ms)\nWhat countries supplied aid?\toatmeal\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (oatmeal, is a wonderful source to, aid) -> oatmeal (3369ms)\nWhat countries supplied aid?\tThe District\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (The District, has the highest rate of, AIDS cases) -> The District (3354ms)\nWhat countries supplied aid?\tFinancial Aid College Aid\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Financial Aid College Aid, is your source for, financial aid) -> Financial Aid College Aid (3354ms)\nWhat countries supplied aid?\tColleges and Universities\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Colleges and Universities, have their own sources of, aid) -> Colleges and Universities (2417ms)\nWhat countries supplied aid?\ta population\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (a population, has a rate of, 128 AIDS cases) -> a population (3386ms)\nWhat countries supplied aid?\tthe Kama Sutra\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, use to be call, aid) -> (the Kama Sutra, used to be called, ?marital aids) -> the Kama Sutra (2417ms)\nWhat countries supplied aid?\tthe financial aid office\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the financial aid office, is there may be other sources of, aid) -> the financial aid office (3369ms)\nWhat countries supplied aid?\teach school\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rank be, aid) -> (each school, was ranked based on, cost and financial aid) -> each school (3378ms)\nWhat countries supplied aid?\tfact\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (fact, demonstrated a higher rate of, AIDS-associated events) -> fact (3291ms)\nWhat countries supplied aid?\tUSAID\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (USAID, has been working closely with, AID) -> USAID (3328ms)\nWhat countries supplied aid?\tthe Instant Payday Loan\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the Instant Payday Loan, represents, a great financial aid) -> the Instant Payday Loan (3359ms)\nWhat countries supplied aid?\tHistorically Black Colleges\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Historically Black Colleges, represented, AID) -> Historically Black Colleges (3314ms)\nWhat countries supplied aid?\tUse\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Use, works with, AIDS) -> Use (3348ms)\nWhat countries supplied aid?\tMankell\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Mankell, works with, AIDS charities) -> Mankell (3359ms)\nWhat countries supplied aid?\tDuvont?\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Duvont?, worked with, AIDS orphans) -> Duvont? (3063ms)\nWhat countries supplied aid?\tThe Migo\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (The Migo, works with, hearing aids) -> The Migo (2563ms)\nWhat countries supplied aid?\ttrade talks\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rule on, aid) -> (trade talks, include new rules on, food aid) -> trade talks (3343ms)\nWhat countries supplied aid?\ta financial plan\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (a financial plan, identify sources of, financial aid) -> a financial plan (3306ms)\nWhat countries supplied aid?\tissues\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (issues, surrounding, Aids) -> issues (3359ms)\nWhat countries supplied aid?\tNew York\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (New York, represent, Texas RioGrande Legal Aid) -> New York (3265ms)\nWhat countries supplied aid?\tAPHCA\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (APHCA, represents, AIDS Action Coalition) -> APHCA (2270ms)\nWhat countries supplied aid?\tMr. Sockabasin\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Mr. Sockabasin, works with, the aid) -> Mr. Sockabasin (3291ms)\nWhat countries supplied aid?\tFond des N?gres\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Fond des N?gres, works with, AIDS orphans) -> Fond des N?gres (3328ms)\nWhat countries supplied aid?\theader\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (header, represents a group of, navigational aids) -> header (3364ms)\nWhat countries supplied aid?\tthe agency\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the agency, represents, Mutual Aid Exchange) -> the agency (3299ms)\nWhat countries supplied aid?\tthe first figure\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the first figure, represents the minimum amount of, gift aid) -> the first figure (2563ms)\nWhat countries supplied aid?\tthe armed forces\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the armed forces, have the highest rate of, HIV/AIDS incidents) -> the armed forces (3348ms)\nWhat countries supplied aid?\tneed\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (need, have exhausted all other sources of, aid) -> need (3369ms)\nWhat countries supplied aid?\tthe practice\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the practice, lowered rates of, hepatitis and AIDS) -> the practice (2983ms)\nWhat countries supplied aid?\tA picket line\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (A picket line, surrounded, the financial aid officer) -> A picket line (3299ms)\nWhat countries supplied aid?\tAIDS Use\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (AIDS Use, works with, AIDS) -> AIDS Use (3348ms)\nWhat countries supplied aid?\tThe Institute\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (The Institute, offers several sources of, aid) -> The Institute (3354ms)\nWhat countries supplied aid?\tworkers states\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (workers states, was a source of, material aid) -> workers states (3386ms)\nWhat countries supplied aid?\tKoan study\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Koan study, represents, a provisional teaching aid) -> Koan study (2563ms)\nWhat countries supplied aid?\tthe other people\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the other people, work with, legal aid) -> the other people (3348ms)\nWhat countries supplied aid?\tScholarships\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Scholarships, are Outstanding Source of, Financial Aid) -> Scholarships (3378ms)\nWhat countries supplied aid?\tAfrican Americans\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (African Americans, have the highest rate of, new HIV/AIDS cases) -> African Americans (3359ms)\nWhat countries supplied aid?\tUganda\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Uganda, had the highest rate of, AIDS) -> Uganda (3306ms)\nWhat countries supplied aid?\tEllis\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Ellis, would represent, another band-aid) -> Ellis (3386ms)\nWhat countries supplied aid?\tAI/AN\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (AI/AN, have the third highest rate of, AIDS diagnosis) -> AI/AN (3343ms)\nWhat countries supplied aid?\tBurke\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Burke, work with, AIDS orphans) -> Burke (3185ms)\nWhat countries supplied aid?\tThe European Commission\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rule on, aid) -> (The European Commission, should relax rules on, state aid) -> The European Commission (3299ms)\nWhat countries supplied aid?\tthe agency help applicants\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the agency help applicants, locate sources of, financial aid) -> the agency help applicants (3373ms)\nWhat countries supplied aid?\tone time\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (one time, had the highest rate of, HIV/AIDS) -> one time (3390ms)\nWhat countries supplied aid?\tMother Theresa\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Mother Theresa, work mostly with, AIDS) -> Mother Theresa (3314ms)\nWhat countries supplied aid?\tthe time\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the time, had the highest cumulative incidence rates of, AIDS) -> the time (3354ms)\nWhat countries supplied aid?\tvalue\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (value, provide a perpetual source of, aid) -> value (3299ms)\nWhat countries supplied aid?\tMark\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Mark, also represents clients in, state aid) -> Mark (3390ms)\nWhat countries supplied aid?\tIV drug users\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (IV drug users, have the same rates of, AIDS cases) -> IV drug users (3343ms)\nWhat countries supplied aid?\tthe region\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the region, also has the highest death rate from, Aids) -> the region (3299ms)\nWhat countries supplied aid?\tDiscovery Health\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Discovery Health, was rated, the top medical aid brand) -> Discovery Health (3321ms)\nWhat countries supplied aid?\ta headset\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a headset, works with, hearing aids) -> a headset (3336ms)\nWhat countries supplied aid?\tNewcastle Chris\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Newcastle Chris, has been working with, Planning Aid) -> Newcastle Chris (3299ms)\nWhat countries supplied aid?\tthe 40th district\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the 40th district, have high rates of, HIV and AIDS) -> the 40th district (3369ms)\nWhat countries supplied aid?\tthe neck area\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the neck area, is a source of, great aid) -> the neck area (3135ms)\nWhat countries supplied aid?\tThika District\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Thika District, has the highest rate of, HIV/AIDS) -> Thika District (3321ms)\nWhat countries supplied aid?\tthe boy\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the boy, worked with, AIDS patients) -> the boy (3359ms)\nWhat countries supplied aid?\texpense support\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (expense support, represents, financial aid) -> expense support (2270ms)\nWhat countries supplied aid?\ta trade group\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (a trade group, representing, financial aid professionals) -> a trade group (3291ms)\nWhat countries supplied aid?\tNradreg\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (Nradreg, has surrounded a group of, humanitarian aid workers) -> Nradreg (3378ms)\nWhat countries supplied aid?\tArekibo\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Arekibo, have been working with, Irish Aid) -> Arekibo (3386ms)\nWhat countries supplied aid?\tthe office\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the office, represents, two Pontifical Mission Aid Societies) -> the office (3321ms)\nWhat countries supplied aid?\tDonors\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Donors, can rate, the aid projects online) -> Donors (3314ms)\nWhat countries supplied aid?\tGays\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Gays, have higher rates of, AIDS infections) -> Gays (2983ms)\nWhat countries supplied aid?\ta burned church\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a burned church, worked with, AIDS patients) -> a burned church (3364ms)\nWhat countries supplied aid?\tChina\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (China, is another source of, unconditional aid) -> China (3321ms)\nWhat countries supplied aid?\tVermont\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Vermont, has the lowest rate of, new AIDS cases) -> Vermont (3369ms)\nWhat countries supplied aid?\tEFTA Surveillance Authority\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rule on, aid) -> (EFTA Surveillance Authority, adopts rules on, aid) -> EFTA Surveillance Authority (2356ms)\nWhat countries supplied aid?\tFrance\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (France, was almost the only source of, aid) -> France (3369ms)\nWhat countries supplied aid?\tthe Crown and Olney\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the Crown and Olney, was represented by, Legal Aid) -> the Crown and Olney (3364ms)\nWhat countries supplied aid?\tSwaziland\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Swaziland, has the highest rate of, HIV/AIDS) -> Swaziland (3382ms)\nWhat countries supplied aid?\tthe Bank\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rank be, aid) -> (the Bank, was ranked number one for, aid transparency) -> the Bank (3321ms)\nWhat countries supplied aid?\tAlgeria\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Algeria, sought an alternative source of, aid) -> Algeria (3306ms)\nWhat countries supplied aid?\tEach tool\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Each tool, represents, a useful production aid) -> Each tool (3062ms)\nWhat countries supplied aid?\tWalgreens\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Walgreens, is also working with, AIDS United) -> Walgreens (3314ms)\nWhat countries supplied aid?\tTexas\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rank be, aid) -> (Texas, was ranked 47th in, state education aid) -> Texas (3390ms)\nWhat countries supplied aid?\tthe x-axis\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the x-axis, represent, aid years) -> the x-axis (3314ms)\nWhat countries supplied aid?\ta nurse\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a nurse, working with, AIDS patients) -> a nurse (3062ms)\nWhat countries supplied aid?\tKnowing\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Knowing, are the sources of, financial aid) -> Knowing (3265ms)\nWhat countries supplied aid?\tA Portuguese national , AM\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (A Portuguese national , AM, has been working with, various aid) -> A Portuguese national , AM (3354ms)\nWhat countries supplied aid?\tZambia?s poverty\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Zambia?s poverty, is the high rate of, HIV and AIDS) -> Zambia?s poverty (3354ms)\nWhat countries supplied aid?\tWard 8\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Ward 8, has the highest rate of, new HIV/AIDS cases) -> Ward 8 (3314ms)\nWhat countries supplied aid?\tAmerica\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (America, has the highest rate of, AIDS) -> America (3359ms)\nWhat countries supplied aid?\tThe adjustment probe\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The adjustment probe, represents, an essential aid) -> The adjustment probe (3369ms)\nWhat countries supplied aid?\tAustralia\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Australia, has very low rates of, HIV/AIDS) -> Australia (2417ms)\nWhat countries supplied aid?\tSenegal\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Senegal, struck the 1st cut-rate deal for, AIDS drugs) -> Senegal (3328ms)\nWhat countries supplied aid?\t0. Zero cards\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (0. Zero cards, represent on, the ground aid) -> 0. Zero cards (3386ms)\nWhat countries supplied aid?\tUkraine\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Ukraine, has the highest rate of, AIDS infection) -> Ukraine (3335ms)\nWhat countries supplied aid?\tgay men\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (gay men, represent a minority of, AIDS cases) -> gay men (3321ms)\nWhat countries supplied aid?\tabstinence education\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (abstinence education, has lowered the rate of, AIDS infection) -> abstinence education (3185ms)\nWhat countries supplied aid?\tmen\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (men, represent the majority of, AIDS diagnoses) -> men (3382ms)\nWhat countries supplied aid?\tthe World Bank\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the World Bank, was the main source of, aid) -> the World Bank (3364ms)\nWhat countries supplied aid?\thomosexuality\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (homosexuality, has the highest rate of, HIV/AIDS) -> homosexuality (3343ms)\nWhat countries supplied aid?\tThe Director\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The Director, represents the university on, financial aid) -> The Director (3382ms)\nWhat countries supplied aid?\tthe range\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the range, represents, the maximum gift aid students) -> the range (3264ms)\nWhat countries supplied aid?\tSmitha\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Smitha, has been working with, AID Chennai) -> Smitha (3373ms)\nWhat countries supplied aid?\t3 Hernandez\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (3 Hernandez, had also worked with, AID.) -> 3 Hernandez (3378ms)\nWhat countries supplied aid?\ta practicing homeopath\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a practicing homeopath, will be working with, AIDS sufferers) -> a practicing homeopath (3364ms)\nWhat countries supplied aid?\torganisation\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (organisation, working with, foreign aid) -> organisation (3135ms)\nWhat countries supplied aid?\temployers\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (employers, can be sources of, financial aid) -> employers (3328ms)\nWhat countries supplied aid?\tAn estimated award\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (An estimated award, represents, your financial aid office) -> An estimated award (3382ms)\nWhat countries supplied aid?\tPresident Mbeki\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (President Mbeki, was the source of, Aids) -> President Mbeki (3314ms)\nWhat countries supplied aid?\tgovernment\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (government, is the source of, charitable aid) -> government (3306ms)\nWhat countries supplied aid?\tshoes\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (shoes, will represent, the daily AIDS deaths) -> shoes (2270ms)\nWhat countries supplied aid?\tnew infections\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (new infections, outpaces the rate of, AIDS-related deaths) -> new infections (3369ms)\nWhat countries supplied aid?\tthe precis parts sources\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the precis parts sources, so work with, aid) -> the precis parts sources (3185ms)\nWhat countries supplied aid?\tuncircumcised men\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (uncircumcised men, have higher rates of, HIV and AIDS) -> uncircumcised men (3185ms)\nWhat countries supplied aid?\tCCE\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (CCE, works with, Financial Aid) -> CCE (3291ms)\nWhat countries supplied aid?\tHIV\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (HIV, represent the true causes of, AIDS) -> HIV (2563ms)\nWhat countries supplied aid?\tDoctors Zyban\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Doctors Zyban, represents, the most recommended stop smoking aid) -> Doctors Zyban (2329ms)\nWhat countries supplied aid?\tThe integer\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The integer, represents, AID) -> The integer (3306ms)\nWhat countries supplied aid?\tan organisation\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (an organisation, works with, AIDS sufferers) -> an organisation (3328ms)\nWhat countries supplied aid?\tNew York City\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (New York City, has the highest rates of, HIV and AIDS infection) -> New York City (3378ms)\nWhat countries supplied aid?\tWashington\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Washington, has the highest rate of, new AIDS cases) -> Washington (3382ms)\nWhat countries supplied aid?\tBhagwati\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Bhagwati, represented, the only international aid) -> Bhagwati (2983ms)\nWhat countries supplied aid?\tMarla\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Marla, worked with, AIDS victims) -> Marla (3062ms)\nWhat countries supplied aid?\ta major aim\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (a major aim, is going to be surrounded by, aid) -> a major aim (3354ms)\nWhat countries supplied aid?\tthe media\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the media, represent, both AIDS and homosexuality) -> the media (3382ms)\nWhat countries supplied aid?\tthe main essay\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the main essay, worked with, the aid) -> the main essay (2563ms)\nWhat countries supplied aid?\twork-study\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (work-study, is a source of, financial aid) -> work-study (2563ms)\nWhat countries supplied aid?\tcivic groups\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (civic groups, are additional sources of, aid) -> civic groups (3359ms)\nWhat countries supplied aid?\tThe farmers\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (The farmers, work with, AID) -> The farmers (3364ms)\nWhat countries supplied aid?\tA material discipline\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (A material discipline, represents, ? and aids) -> A material discipline (2296ms)\nWhat countries supplied aid?\tthe communities\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the communities, work with, aid agencies) -> the communities (3343ms)\nWhat countries supplied aid?\tOregon you?ll\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Oregon you?ll, find several sources of, financial aid) -> Oregon you?ll (3265ms)\nWhat countries supplied aid?\tthe island\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the island, provide the most direct source of, aid) -> the island (3314ms)\nWhat countries supplied aid?\tIV drug abusers\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (IV drug abusers, represent, the largest AIDS patient groups) -> IV drug abusers (3343ms)\nWhat countries supplied aid?\tEach school\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rank be, aid) -> (Each school, was then ranked based on, cost and financial aid) -> Each school (3299ms)\nWhat countries supplied aid?\tsatan\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (satan, is the source of, AIDS) -> satan (3373ms)\nWhat countries supplied aid?\tsufficient experience\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (sufficient experience, can represent, legal aid clients) -> sufficient experience (3364ms)\nWhat countries supplied aid?\tGrit\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Grit, continues her work with, Legal Aid) -> Grit (3364ms)\nWhat countries supplied aid?\tignorant and\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (ignorant and, have a high rate of, contracting Aids) -> ignorant and (3335ms)\nWhat countries supplied aid?\tthe middle-east\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the middle-east, have very low rates of, HIV/AIDS) -> the middle-east (3354ms)\nWhat countries supplied aid?\tlawyers\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (lawyers, representing, legal aid clients) -> lawyers (3321ms)\nWhat countries supplied aid?\tCombination therapies\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Combination therapies, dramatically cut the rate of, AIDS deaths) -> Combination therapies (3354ms)\nWhat countries supplied aid?\tThe Payday Advance\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The Payday Advance, represents only, a short term aid) -> The Payday Advance (3306ms)\nWhat countries supplied aid?\tA long-standing issue\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (A long-standing issue, surrounding, aid) -> A long-standing issue (3373ms)\nWhat countries supplied aid?\tTheraplay therapists\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Theraplay therapists, are working with, Aids orphans) -> Theraplay therapists (3335ms)\nWhat countries supplied aid?\tthe structure\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the structure, represents, the AIDS awareness symbol) -> the structure (2355ms)\nWhat countries supplied aid?\tthe stigma\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the stigma, surrounding, hearing aids) -> the stigma (3373ms)\nWhat countries supplied aid?\tThe EU\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (The EU, is a key source of, aid) -> The EU (3306ms)\nWhat countries supplied aid?\tHIV/AIDS\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (HIV/AIDS, has reduced the rate of, new HIV/AIDS infections) -> HIV/AIDS (3321ms)\nWhat countries supplied aid?\tfederal student aid\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (federal student aid, investigate other sources of, aid) -> federal student aid (3314ms)\nWhat countries supplied aid?\tthe District\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the District, has the highest rate of, AIDS) -> the District (3382ms)\nWhat countries supplied aid?\tNo credit check payday loans\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (No credit check payday loans, are a source of, instant aid) -> No credit check payday loans (3359ms)\nWhat countries supplied aid?\tThe Bronx\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (The Bronx, has the highest death rate from, AIDS) -> The Bronx (3335ms)\nWhat countries supplied aid?\tBaja California\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Baja California, has the second highest rates of, AIDS) -> Baja California (2270ms)\nWhat countries supplied aid?\tBlacks and Hispanics\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Blacks and Hispanics, have higher rates of, AIDS) -> Blacks and Hispanics (3321ms)\nWhat countries supplied aid?\ta white background\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (a white background, has represented, medical aid) -> a white background (3135ms)\nWhat countries supplied aid?\tthe truck\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the truck, actually represents, AIDS) -> the truck (3264ms)\nWhat countries supplied aid?\tThe writer\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The writer, represents, the Women?s Aid Orgnaisation) -> The writer (3328ms)\nWhat countries supplied aid?\ttaboos\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (taboos, still surround, the Aids epidemic) -> taboos (2417ms)\nWhat countries supplied aid?\tOne Namor\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (One Namor, had exhausted other possible sources of, aid) -> One Namor (3348ms)\nWhat countries supplied aid?\tcentral banks\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (central banks, cut rates to, aid world economy) -> central banks (3369ms)\nWhat countries supplied aid?\toutside organizations\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (outside organizations, can provide an additional source of, aid) -> outside organizations (3135ms)\nWhat countries supplied aid?\tHonduras\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Honduras, has the highest rate of, HIV/AIDS infection) -> Honduras (3386ms)\nWhat countries supplied aid?\tDirect Relief\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (Direct Relief, is sourcing, appropriate aid) -> Direct Relief (3378ms)\nWhat countries supplied aid?\tOxfam teams\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Oxfam teams, worked with, aid groups) -> Oxfam teams (3382ms)\nWhat countries supplied aid?\t19 years\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (19 years, .It has an extremely high rate of, HIV/AIDS) -> 19 years (3321ms)\nWhat countries supplied aid?\treading materials\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (reading materials, are a superb source of, aid) -> reading materials (3265ms)\nWhat countries supplied aid?\tThe budget\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (The budget, represents the maximum amount of, financial aid) -> The budget (3291ms)\nWhat countries supplied aid?\tSouth Africa\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (South Africa, has the highest rate of, HIV/AIDS) -> South Africa (3291ms)\nWhat countries supplied aid?\tUCSD\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rank be, aid) -> (UCSD, is ranked among, the top ten AIDS programs) -> UCSD (3386ms)\nWhat countries supplied aid?\tD.C.\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (D.C., has the highest rate of, new AIDS cases) -> D.C. (2329ms)\nWhat countries supplied aid?\tthe public\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the public, may represent the only honest source of, aid) -> the public (3390ms)\nWhat countries supplied aid?\tthe issues\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the issues, surrounding, the AIDs epidemic) -> the issues (3343ms)\nWhat countries supplied aid?\tAfrica\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Africa, suffers high rates of, HIV/AIDS) -> Africa (3364ms)\nWhat countries supplied aid?\tANGLABHARTI\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (ANGLABHARTI, represents, a machine-aided translation methodology) -> ANGLABHARTI (3135ms)\nWhat countries supplied aid?\tLuwero\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Luwero, has the highest rate of, HIV/AIDS) -> Luwero (3343ms)\nWhat countries supplied aid?\tEight Israeli warships\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (Eight Israeli warships, are surrounding, the Libyan aid ship) -> Eight Israeli warships (3364ms)\nWhat countries supplied aid?\tthe resident expert\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the resident expert, has represented, AIDS.gov) -> the resident expert (3299ms)\nWhat countries supplied aid?\tColumbia\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Columbia, has the highest rate of, AIDS) -> Columbia (3354ms)\nWhat countries supplied aid?\tUkraine not\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Ukraine not, only has the highest rate of, AIDS infection) -> Ukraine not (3314ms)\nWhat countries supplied aid?\tsculptors\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (sculptors, have worked with, the aid) -> sculptors (3321ms)\nWhat countries supplied aid?\tthe fuzzy random fields\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the fuzzy random fields, are represented with, the aid) -> the fuzzy random fields (3378ms)\nWhat countries supplied aid?\tComputer simulations\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Computer simulations, represent, an important aid) -> Computer simulations (3306ms)\nWhat countries supplied aid?\tthe administration\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rule on, aid) -> (the administration, changed the rules on, financial aid) -> the administration (2563ms)\nWhat countries supplied aid?\tthe quiet countryside\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, surround, aid) -> (the quiet countryside, surrounding, the birthplace of Kool-Aid) -> the quiet countryside (3314ms)\nWhat countries supplied aid?\tMr/Mrs AIDS\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Mr/Mrs AIDS, represents, HIV/AIDS) -> Mr/Mrs AIDS (3185ms)\nWhat countries supplied aid?\tIMF attention\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (IMF attention, represents the transition of, AIDS) -> IMF attention (2417ms)\nWhat countries supplied aid?\tThe Authority\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rule on, aid) -> (The Authority, adopts temporary rules on, state aid) -> The Authority (2329ms)\nWhat countries supplied aid?\t1.1 million\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (1.1 million, has the highest rate of, HIV/Aids) -> 1.1 million (3306ms)\nWhat countries supplied aid?\tAsians\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Asians, Have the Lowest Rate of, AIDS) -> Asians (3386ms)\nWhat countries supplied aid?\tSouth Carolina\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (South Carolina, worked with, Legal Aid) -> South Carolina (3373ms)\nWhat countries supplied aid?\tSpain\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Spain, has much higher statistical rate of, AIDS) -> Spain (3386ms)\nWhat countries supplied aid?\trice\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (rice, represents the spirit of, mutual aid) -> rice (3299ms)\nWhat countries supplied aid?\tthe second curve\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the second curve, represented the transition to, AIDS) -> the second curve (3343ms)\nWhat countries supplied aid?\tAntoine Douaihy\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Antoine Douaihy, works with, AIDS patients) -> Antoine Douaihy (2296ms)\nWhat countries supplied aid?\thomosexuals\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (homosexuals, have higher rates of, AIDS) -> homosexuals (2296ms)\nWhat countries supplied aid?\tMaryland\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Maryland, represented, AID) -> Maryland (3382ms)\nWhat countries supplied aid?\t2003\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (2003, represent, incompatible state aid) -> 2003 (3335ms)\nWhat countries supplied aid?\tthe Student Aid Summary\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (the Student Aid Summary, lists all the sources of, aid) -> the Student Aid Summary (3386ms)\nWhat countries supplied aid?\tW&J\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (W&J, is the largest source of, aid) -> W&J (3328ms)\nWhat countries supplied aid?\tKwaZulu-Natal\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (KwaZulu-Natal, has the second-highest rate of, Aids infection) -> KwaZulu-Natal (3328ms)\nWhat countries supplied aid?\tthe first number\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (the first number, represents, legal aid lawyers) -> the first number (3299ms)\nWhat countries supplied aid?\tHaiti\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Haiti, has the highest rates of, AIDS) -> Haiti (3348ms)\nWhat countries supplied aid?\tstudents\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (students, find additional sources of, financial aid) -> students (2417ms)\nWhat countries supplied aid?\tA non-rated handset\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (A non-rated handset, may work with, hearing aids) -> A non-rated handset (3348ms)\nWhat countries supplied aid?\tDC\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (DC, has the highest rate of, new AIDS cases) -> DC (3359ms)\nWhat countries supplied aid?\tMoody\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Moody, has rated, unemployment insurance and state aid) -> Moody (3343ms)\nWhat countries supplied aid?\tthe Rapid Review Series-highly\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the Rapid Review Series-highly, rated in, the First Aid) -> the Rapid Review Series-highly (3378ms)\nWhat countries supplied aid?\ta proposal\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a proposal, is required to work with, AID.) -> a proposal (2270ms)\nWhat countries supplied aid?\tThe crew\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (The crew, also works with, the aid) -> The crew (3062ms)\nWhat countries supplied aid?\ta student\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a student, may work with are, Water Aid) -> a student (3265ms)\nWhat countries supplied aid?\tSize 1 & 2\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Size 1 & 2, are rated, body weight/direct aid) -> Size 1 & 2 (3369ms)\nWhat countries supplied aid?\ta woman\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a woman, worked out with, the aid) -> a woman (2563ms)\nWhat countries supplied aid?\ta local organisation\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (a local organisation, works with, AIDS orphans) -> a local organisation (3328ms)\nWhat countries supplied aid?\tChronic\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Chronic, works with, Medical Aid) -> Chronic (3348ms)\nWhat countries supplied aid?\tThe HRT\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (The HRT, works with, the aid) -> The HRT (3386ms)\nWhat countries supplied aid?\ttrade associations\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (trade associations, representing, the recipients of aid) -> trade associations (3373ms)\nWhat countries supplied aid?\tZero\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Zero, rated, disability aids) -> Zero (3378ms)\nWhat countries supplied aid?\ta mixed touch football team\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (a mixed touch football team, represented, Legal Aid Queensland) -> a mixed touch football team (3314ms)\nWhat countries supplied aid?\tAdvocacy Jennifer McCloy\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Advocacy Jennifer McCloy, represented, ChinaAid) -> Advocacy Jennifer McCloy (3386ms)\nWhat countries supplied aid?\t1990 and 2000\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (1990 and 2000, represented 7 % of, bilateral aid) -> 1990 and 2000 (3378ms)\nWhat countries supplied aid?\t4+3+2\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (4+3+2, worked with, the aid) -> 4+3+2 (3328ms)\nWhat countries supplied aid?\tPatrick\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Patrick, works with, aid agencies) -> Patrick (3291ms)\nWhat countries supplied aid?\tCambodia\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Cambodia, has a very high rate of, AIDS) -> Cambodia (3359ms)\nWhat countries supplied aid?\trates\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (rates, put the rate of, new HIV/AIDS infections) -> rates (3291ms)\nWhat countries supplied aid?\tTammy Howze\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Tammy Howze, worked with, Legal Aid) -> Tammy Howze (3135ms)\nWhat countries supplied aid?\tLazaris\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Lazaris, worked with, AIDS patients) -> Lazaris (3299ms)\nWhat countries supplied aid?\tthe lexicographers\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the lexicographers, began their work with, the aid) -> the lexicographers (2356ms)\nWhat countries supplied aid?\twords\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (words, Work with, visual aids) -> words (3364ms)\nWhat countries supplied aid?\t20.3 million ?\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (20.3 million ?, represents, aid) -> 20.3 million ? (3378ms)\nWhat countries supplied aid?\tThe region\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (The region, has the highest rates of, HIV/AIDS infection) -> The region (3386ms)\nWhat countries supplied aid?\tTouriya\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Touriya, began working with, Aid) -> Touriya (3328ms)\nWhat countries supplied aid?\tthe organisation\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the organisation, also works with, AIDS victims) -> the organisation (3335ms)\nWhat countries supplied aid?\ttwo health professionals\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (two health professionals, have worked with, AIDS sufferers) -> two health professionals (3354ms)\nWhat countries supplied aid?\tthe right areas assets\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (the right areas assets, s work with, aid) -> the right areas assets (3378ms)\nWhat countries supplied aid?\tPPPPP 601 Scholarships\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (PPPPP 601 Scholarships, are Excellent Source of, Financial Aid) -> PPPPP 601 Scholarships (3299ms)\nWhat countries supplied aid?\tthe Netherlands\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rank be, aid) -> (the Netherlands, have been ranked as, the top four aid donors) -> the Netherlands (3354ms)\nWhat countries supplied aid?\tA friend\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (A friend, is a fine source of, aid) -> A friend (3185ms)\nWhat countries supplied aid?\tMorrisania\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (Morrisania, have the highest rate of, new AIDS cases) -> Morrisania (3373ms)\nWhat countries supplied aid?\tpublic funding\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, use to be call, aid) -> (public funding, used to be called, legal aid) -> public funding (3378ms)\nWhat countries supplied aid?\tBlack teens\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (Black teens, represented 68 % of, AIDS diagnoses) -> Black teens (3348ms)\nWhat countries supplied aid?\tNigeria\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rank be, aid) -> (Nigeria, is ranked third in, global HIV/AIDS infection) -> Nigeria (3291ms)\nWhat countries supplied aid?\tHatis headsets\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Hatis headsets, work with, hearing aids) -> Hatis headsets (3386ms)\nWhat countries supplied aid?\tpicture\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (picture, represents, aid) -> picture (3291ms)\nWhat countries supplied aid?\tThe World Bank\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (The World Bank, should become the principal source of, aid) -> The World Bank (3291ms)\nWhat countries supplied aid?\tseveral physicians\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (several physicians, work with, AIDS patients) -> several physicians (3335ms)\nWhat countries supplied aid?\tthe country\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (the country, had the highest death rate from, AIDS) -> the country (3359ms)\nWhat countries supplied aid?\trelations and friends\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, source, aid) -> (relations and friends, are potential sources of, aid) -> relations and friends (3373ms)\nWhat countries supplied aid?\tTsunami-hit nations\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, work with, aid) -> (Tsunami-hit nations, have worked with, aid agencies) -> Tsunami-hit nations (3306ms)\nWhat countries supplied aid?\teach shirt\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, represent, aid) -> (each shirt, represents, aid items) -> each shirt (3291ms)\nWhat countries supplied aid?\tgreat concern\t1.4444444444459998\tWhat countries supplied aid? -> $x: ($x, rate, aid) -> (great concern, is the high rate of, HIV/AIDS) -> great concern (3359ms)\nWhat countries supplied aid?\tbrush tool\t1.11111111111\tWhat countries supplied aid? -> $x: ($x, represent, band aid) -> (brush tool, is represented by, a band aid) -> brush tool (3390ms)\nWhat countries supplied aid?\tFinger Cots\t1.11111111111\tWhat countries supplied aid? -> $x: ($x, work with, band aid) -> (Finger Cots, work well with, Finger Blue Band Aids) -> Finger Cots (3390ms)\nWhat countries supplied aid?\tOYO\t1.11111111111\tWhat countries supplied aid? -> $x: ($x, work with, aid awareness) -> (OYO, will continue to work with, AIDS Awareness Clubs) -> OYO (3390ms)\nWhat countries supplied aid?\tDanChurchAid\t1.11111111111\tWhat countries supplied aid? -> $x: ($x, work with, aid awareness) -> (DanChurchAid, works with, HIV/AIDS awareness) -> DanChurchAid (3390ms)\nWhat countries supplied aid?\tGender-based violence\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Gender-based violence, also affects the rate of, HIV infections) -> Gender-based violence (3420ms)\nWhat countries supplied aid?\t?Both cities\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (?Both cities, also have high rates of, HIV infection) -> ?Both cities (3416ms)\nWhat countries supplied aid?\tVolunteers\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Volunteers, can work with, this Kenyan HIV and AIDS charity) -> Volunteers (3416ms)\nWhat countries supplied aid?\ta Dr\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (a Dr, worked with, AIDs and HIV patients) -> a Dr (3407ms)\nWhat countries supplied aid?\tSGR lawyers\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (SGR lawyers, have worked closely with, Atlanta Legal Aid) -> SGR lawyers (3405ms)\nWhat countries supplied aid?\tBotswana\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Botswana, has the second-highest rate of, HIV infection) -> Botswana (3412ms)\nWhat countries supplied aid?\tThe U.S.\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The U.S., has a high rate of, HIV infection) -> The U.S. (3410ms)\nWhat countries supplied aid?\tLegal Services\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Legal Services, has worked with, legal aid advocates) -> Legal Services (3419ms)\nWhat countries supplied aid?\tUNAIDS\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (UNAIDS, recently reported the global rates of, HIV infection) -> UNAIDS (3416ms)\nWhat countries supplied aid?\tpractice\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (practice, are even higher rates of, HIV infection) -> practice (3403ms)\nWhat countries supplied aid?\tLatonya\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Latonya, has also worked with, the Legal Aid Foundation) -> Latonya (3408ms)\nWhat countries supplied aid?\tmarried women\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (married women, have higher rates of, HIV infection) -> married women (3410ms)\nWhat countries supplied aid?\tcolor\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (color, now represent the majority of, new HIV infections) -> color (3419ms)\nWhat countries supplied aid?\teight countries\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (eight countries, found a higher rate of, HIV infection) -> eight countries (3408ms)\nWhat countries supplied aid?\tTrustees\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (Trustees, is represented on, the Legal Aid) -> Trustees (3398ms)\nWhat countries supplied aid?\tminorities\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (minorities, represent 67 % of, new HIV infections) -> minorities (3410ms)\nWhat countries supplied aid?\thumans\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (humans, affected the rate of, HIV infection) -> humans (3419ms)\nWhat countries supplied aid?\tthe medicines\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the medicines, increase the rate of, HIV infections) -> the medicines (3416ms)\nWhat countries supplied aid?\tGeorgia School\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Georgia School, went to work with, the Legal Aid Office) -> Georgia School (3419ms)\nWhat countries supplied aid?\tmethamphetamine\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv infection) -> (methamphetamine, may be a primary source of, new HIV infections) -> methamphetamine (3417ms)\nWhat countries supplied aid?\tSuch young women\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Such young women, have higher rates of, HIV infection) -> Such young women (3407ms)\nWhat countries supplied aid?\ttest results\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (test results, showed a higher rate of, HIV infection) -> test results (3398ms)\nWhat countries supplied aid?\tThe NCBA\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCBA, is represented on, the Legal Aid) -> The NCBA (3412ms)\nWhat countries supplied aid?\tmore injections\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (more injections, had higher rates of, HIV infection) -> more injections (3401ms)\nWhat countries supplied aid?\tJennifer Hardy/CRS Jordan\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv and aid) -> (Jennifer Hardy/CRS Jordan, has a very low rate of, HIV and AIDS) -> Jennifer Hardy/CRS Jordan (3403ms)\nWhat countries supplied aid?\tAlaska Natives\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Alaska Natives, have the third highest rate of, HIV infection) -> Alaska Natives (3418ms)\nWhat countries supplied aid?\tCiudad Juarez\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Ciudad Juarez, have a high rate of, HIV infection) -> Ciudad Juarez (3414ms)\nWhat countries supplied aid?\tmale genital secretions\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv infection) -> (male genital secretions, is the primary source of, HIV infection) -> male genital secretions (3421ms)\nWhat countries supplied aid?\t?Women\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (?Women, represent the majority of, new HIV infections) -> ?Women (3412ms)\nWhat countries supplied aid?\tThe NCAWA\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCAWA, is represented on, the Legal Aid) -> The NCAWA (3414ms)\nWhat countries supplied aid?\ta combination vaccine\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (a combination vaccine, lowered the rate of, HIV infection) -> a combination vaccine (3419ms)\nWhat countries supplied aid?\tKapiri\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Kapiri, has high rates of, HIV infection) -> Kapiri (3398ms)\nWhat countries supplied aid?\taccurate information\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv infection) -> (accurate information, address the sources of, HIV infection) -> accurate information (3410ms)\nWhat countries supplied aid?\tno children\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (no children, were represented under, the Legal Aid Scheme) -> no children (3417ms)\nWhat countries supplied aid?\tPNG\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (PNG, has the highest rates of, HIV infection) -> PNG (3408ms)\nWhat countries supplied aid?\tfemale sex workers\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (female sex workers, have a higher rate of, HIV infection) -> female sex workers (3394ms)\nWhat countries supplied aid?\tthe twin problems\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the twin problems, now has the highest rate of, HIV infection) -> the twin problems (3421ms)\nWhat countries supplied aid?\tPriti Patel\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Priti Patel, works with, the HIV and AIDS programme) -> Priti Patel (3419ms)\nWhat countries supplied aid?\tgiven zidovudine\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (given zidovudine, had a higher cumulative rate of, HIV infection) -> given zidovudine (3414ms)\nWhat countries supplied aid?\tthe students\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, teaching material) -> (the students, worked with, the teaching materials) -> the students (3414ms)\nWhat countries supplied aid?\tage 24\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (age 24, represent a major proportion of, HIV infections) -> age 24 (3422ms)\nWhat countries supplied aid?\tPEP\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (PEP, reduced the rate of, HIV infection) -> PEP (3414ms)\nWhat countries supplied aid?\tCIAO\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, teaching material) -> (CIAO, is also widely-recognized source for, teaching materials) -> CIAO (3422ms)\nWhat countries supplied aid?\tRaye Blair\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Raye Blair, works with, Jacksonville Area Legal Aid) -> Raye Blair (3421ms)\nWhat countries supplied aid?\tThe author\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (The author, was represented by, a different legal aid lawyer) -> The author (3416ms)\nWhat countries supplied aid?\tACTO\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (ACTO, works with, community legal aid clinics) -> ACTO (3401ms)\nWhat countries supplied aid?\tBlack women\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (Black women, represent the majority of, new HIV infections) -> Black women (3422ms)\nWhat countries supplied aid?\ta vaccine\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (a vaccine, has reduced the rate of, HIV infection) -> a vaccine (3412ms)\nWhat countries supplied aid?\tWomen\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (Women, represented just 2 percent of, HIV infections) -> Women (3420ms)\nWhat countries supplied aid?\tprostitution\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv infection) -> (prostitution, was the main source of, HIV infection) -> prostitution (3421ms)\nWhat countries supplied aid?\tminority Americans\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (minority Americans, have higher rates of, HIV infection) -> minority Americans (3421ms)\nWhat countries supplied aid?\tOlder men\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Older men, have higher rates of, HIV infection) -> Older men (3421ms)\nWhat countries supplied aid?\tthe Bronx\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the Bronx, has the highest rate of, HIV infection) -> the Bronx (3394ms)\nWhat countries supplied aid?\tThe transgender community\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The transgender community, has high rates of, HIV infection) -> The transgender community (3421ms)\nWhat countries supplied aid?\tMembers\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (Members, used to represent, Area Legal Aid Committees) -> Members (3401ms)\nWhat countries supplied aid?\tblack MSM\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (black MSM, have twice the rate of, HIV infections) -> black MSM (3401ms)\nWhat countries supplied aid?\tLarry\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Larry, worked with, Legal Aid staff and attorneys) -> Larry (3419ms)\nWhat countries supplied aid?\tLatinos\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (Latinos, represent almost 20 percent of, new HIV infections) -> Latinos (3407ms)\nWhat countries supplied aid?\tZimba-bwe\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Zimba-bwe, will compare rates of, HIV infection) -> Zimba-bwe (3420ms)\nWhat countries supplied aid?\tvolunteers\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (volunteers, could work with, Legal Aid) -> volunteers (3421ms)\nWhat countries supplied aid?\tcommunities\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (communities, also have the highest rate of, HIV infection) -> communities (3401ms)\nWhat countries supplied aid?\tLawyers\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Lawyers, work with, Legal Aid Ontario) -> Lawyers (3420ms)\nWhat countries supplied aid?\tdrug use\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (drug use, have higher rates of, HIV infection) -> drug use (3420ms)\nWhat countries supplied aid?\tThe NCABL\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCABL, is represented on, the Legal Aid) -> The NCABL (3419ms)\nWhat countries supplied aid?\turine and saliva\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv infection) -> (urine and saliva, are very unlikely sources for, HIV infection) -> urine and saliva (3407ms)\nWhat countries supplied aid?\tMakete district\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Makete district, has highest rate of, HIV infection) -> Makete district (3419ms)\nWhat countries supplied aid?\tKeith\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Keith, currently works with, the Jacksonville Area Legal Aid) -> Keith (3417ms)\nWhat countries supplied aid?\tCleveland Marshall College\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Cleveland Marshall College, worked with, the Legal Aid Society) -> Cleveland Marshall College (3410ms)\nWhat countries supplied aid?\tThe United States\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The United States, has the highest rate of, HIV infection) -> The United States (3420ms)\nWhat countries supplied aid?\tBlacks\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (Blacks, represent 44 % of, new HIV infections) -> Blacks (3414ms)\nWhat countries supplied aid?\tAIDS\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (AIDS, represents an advanced stage of, HIV infection) -> AIDS (3401ms)\nWhat countries supplied aid?\twedlock Botswana\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (wedlock Botswana, has the highest rate of, HIV infection) -> wedlock Botswana (3420ms)\nWhat countries supplied aid?\tThe web\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, teaching material) -> (The web, has been a such wonderful source of, teaching materials) -> The web (3417ms)\nWhat countries supplied aid?\timprisonment\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (imprisonment, also have the highest rates of, HIV infection) -> imprisonment (3401ms)\nWhat countries supplied aid?\tdrug users\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (drug users, represent 12 % of, annual new HIV infections) -> drug users (3394ms)\nWhat countries supplied aid?\tTom\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Tom, worked with, Polk County Legal Aid) -> Tom (3412ms)\nWhat countries supplied aid?\tthe highest unmet need\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (the highest unmet need, represents half of, new HIV infections) -> the highest unmet need (3408ms)\nWhat countries supplied aid?\tagitprop\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, visual aid) -> (agitprop, works much better with, visual aids) -> agitprop (3394ms)\nWhat countries supplied aid?\t25\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (25, represented half of, all new HIV infection cases) -> 25 (3401ms)\nWhat countries supplied aid?\tSan Francisco\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (San Francisco, has significantly lower rates of, HIV infection) -> San Francisco (3416ms)\nWhat countries supplied aid?\tAIDSVAX? B/E\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (AIDSVAX? B/E, lowered the rate of, HIV infection) -> AIDSVAX? B/E (3412ms)\nWhat countries supplied aid?\tHope Townes\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Hope Townes, works with, the Virginia Legal Aid Society) -> Hope Townes (3420ms)\nWhat countries supplied aid?\tThe NCAJ\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCAJ, is represented on, the Legal Aid) -> The NCAJ (3403ms)\nWhat countries supplied aid?\tThe NCADA\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCADA, is represented on, the Legal Aid) -> The NCADA (3410ms)\nWhat countries supplied aid?\tThe Caribbean\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The Caribbean, has the highest rates of, HIV infection) -> The Caribbean (3421ms)\nWhat countries supplied aid?\tan unplugged drain\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (an unplugged drain, represents, HIV infection) -> an unplugged drain (3394ms)\nWhat countries supplied aid?\tthe museum\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, teaching material) -> (the museum, is a valuable source for, teaching materials) -> the museum (3412ms)\nWhat countries supplied aid?\t13 to 29\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (13 to 29, represent, more new HIV infections) -> 13 to 29 (3416ms)\nWhat countries supplied aid?\tthe author\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (the author, was represented by, a legal aid lawyer) -> the author (3421ms)\nWhat countries supplied aid?\tB/E\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (B/E, lowered the rate of, HIV infection) -> B/E (3401ms)\nWhat countries supplied aid?\tHIV risk ' Circumcision\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (HIV risk ' Circumcision, can reduce the rate of, HIV infections) -> HIV risk ' Circumcision (3417ms)\nWhat countries supplied aid?\tJohn\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (John, worked with, the Legal Aid Foundation) -> John (3410ms)\nWhat countries supplied aid?\tChicago\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Chicago, have high rates of, HIV infection) -> Chicago (3417ms)\nWhat countries supplied aid?\tthe Sahara\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the Sahara, have the highest rates of, HIV infection) -> the Sahara (3398ms)\nWhat countries supplied aid?\tThe City Council\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (The City Council, was proud to work with, The Legal Aid Society) -> The City Council (3394ms)\nWhat countries supplied aid?\tnevirapine\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (nevirapine, reduces the rate of, HIV infection) -> nevirapine (3418ms)\nWhat countries supplied aid?\tAFP Swaziland\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (AFP Swaziland, has the world 's highest rate of, HIV infection) -> AFP Swaziland (3410ms)\nWhat countries supplied aid?\tKenya\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Kenya, has a high rate of, HIV infection) -> Kenya (3420ms)\nWhat countries supplied aid?\tThe ministry\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (The ministry, work with, Legal Aid Ontario) -> The ministry (3418ms)\nWhat countries supplied aid?\tthe U.S. House\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (the U.S. House, has worked with, the Legal Aid Society) -> the U.S. House (3419ms)\nWhat countries supplied aid?\tMSM\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (MSM, often have much higher rates of, HIV infection) -> MSM (3421ms)\nWhat countries supplied aid?\tMarie Lucie\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Marie Lucie, works with, HIV-positive and AIDS patients) -> Marie Lucie (3421ms)\nWhat countries supplied aid?\tThe Haldane Society\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (The Haldane Society, is working with, Young Legal Aid Lawyers) -> The Haldane Society (3421ms)\nWhat countries supplied aid?\tsex workers\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (sex workers, reduce their rate of, HIV infections) -> sex workers (3412ms)\nWhat countries supplied aid?\tmarried adolescents\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (married adolescents, have higher rates of, HIV infection) -> married adolescents (3407ms)\nWhat countries supplied aid?\tthe UK\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the UK, have higher rates of, HIV infection) -> the UK (3416ms)\nWhat countries supplied aid?\tbear\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (bear, have higher rates of, HIV infection) -> bear (3407ms)\nWhat countries supplied aid?\trecruiting or retention\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (recruiting or retention, increased the rate of, HIV infection) -> recruiting or retention (3398ms)\nWhat countries supplied aid?\tyoung people\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (young people, represent 13 percent of, all new HIV infections) -> young people (3420ms)\nWhat countries supplied aid?\tcondoms\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (condoms, had dramatically reduced the rate of, HIV infection) -> condoms (3416ms)\nWhat countries supplied aid?\tthe population\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (the population, represent nearly half of, new HIV infections) -> the population (3416ms)\nWhat countries supplied aid?\tStudents\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Students, also work with, other legal aid attorneys) -> Students (3403ms)\nWhat countries supplied aid?\tCircumcision\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Circumcision, can cut the rate of, HIV infection) -> Circumcision (3408ms)\nWhat countries supplied aid?\tnHaiti\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (nHaiti, has the highest rate of, HIV infection) -> nHaiti (3410ms)\nWhat countries supplied aid?\tblack men and women\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (black men and women, have higher rates of, HIV infection) -> black men and women (3412ms)\nWhat countries supplied aid?\tthe eastern coast\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the eastern coast, have highest rates of, HIV infection) -> the eastern coast (3401ms)\nWhat countries supplied aid?\tNotre Dame\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Notre Dame, works with, the Notre Dame Legal Aid Clinic) -> Notre Dame (3421ms)\nWhat countries supplied aid?\tThe four homeowners\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (The four homeowners, are represented by, The Legal Aid Society) -> The four homeowners (3410ms)\nWhat countries supplied aid?\tThe study\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The study, found a rate of, HIV infection) -> The study (3421ms)\nWhat countries supplied aid?\t15-24\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (15-24, represent 45 percent of, all new HIV infections) -> 15-24 (3419ms)\nWhat countries supplied aid?\tAfrican-Americans\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (African-Americans, have the highest rates of, HIV infection) -> African-Americans (3416ms)\nWhat countries supplied aid?\tThe petitioners\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (The petitioners, are represented by, Bay Area Legal Aid) -> The petitioners (3412ms)\nWhat countries supplied aid?\tblacks\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (blacks, represented 36 % of, new HIV infections) -> blacks (3394ms)\nWhat countries supplied aid?\tGatlin\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Gatlin, worked extensively with, the Queen?s Legal Aid clinic) -> Gatlin (3420ms)\nWhat countries supplied aid?\tLa Raza Ms. Gallegos\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (La Raza Ms. Gallegos, worked with, the Alameda County Legal Aid) -> La Raza Ms. Gallegos (3401ms)\nWhat countries supplied aid?\tNot people\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Not people, work with, HIV and AIDS) -> Not people (3414ms)\nWhat countries supplied aid?\tDr. Levy?s\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Dr. Levy?s, continued work with, HIV and AIDS) -> Dr. Levy?s (3401ms)\nWhat countries supplied aid?\tsame-sex marriage\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (same-sex marriage, raises the rate of, HIV infection) -> same-sex marriage (3416ms)\nWhat countries supplied aid?\tJanes\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Janes, worked with, different legal aid programs) -> Janes (3410ms)\nWhat countries supplied aid?\t?D.O.?d ?\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (?D.O.?d ?, are represented by, legal aid lawyers) -> ?D.O.?d ? (3421ms)\nWhat countries supplied aid?\tthe mother\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (the mother, was represented by, a Legal Aid lawyer) -> the mother (3417ms)\nWhat countries supplied aid?\tcourt\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (court, is represented by, the Legal Aid Society) -> court (3414ms)\nWhat countries supplied aid?\tBerardelli\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (Berardelli, was represented by, a legal aid attorney) -> Berardelli (3403ms)\nWhat countries supplied aid?\ta needle\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (a needle, had higher rates of, HIV infection) -> a needle (3421ms)\nWhat countries supplied aid?\tassets\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (assets, was represented by, a Legal Aid attorney) -> assets (3408ms)\nWhat countries supplied aid?\tBaltimore\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Baltimore, had the highest rates of, HIV infection) -> Baltimore (3419ms)\nWhat countries supplied aid?\tRehmah\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (Rehmah, has previously worked with, the AGHS Legal Aid Cell) -> Rehmah (3414ms)\nWhat countries supplied aid?\t13 and 29\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (13 and 29, represent 34 % of, new HIV infections) -> 13 and 29 (3407ms)\nWhat countries supplied aid?\tOttawa\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Ottawa, has the highest new rate of, HIV infections) -> Ottawa (3416ms)\nWhat countries supplied aid?\tN-9 gel\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (N-9 gel, had a higher rate of, HIV infection) -> N-9 gel (3401ms)\nWhat countries supplied aid?\tNC. NC GALA\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, legal aid) -> (NC. NC GALA, is represented on, the Legal Aid) -> NC. NC GALA (3419ms)\nWhat countries supplied aid?\tnew AIDS\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, represent, hiv infection) -> (new AIDS, accurately represent trends in, new HIV infections) -> new AIDS (3416ms)\nWhat countries supplied aid?\tneedles\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv infection) -> (needles, remain a major source of, HIV infection) -> needles (3414ms)\nWhat countries supplied aid?\theterosexual sex\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv infection) -> (heterosexual sex, is the source of virtually, all HIV infection) -> heterosexual sex (3401ms)\nWhat countries supplied aid?\teither\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv and aid) -> (either, are potential sources of, STDs and HIV/Aids) -> either (3421ms)\nWhat countries supplied aid?\turban areas\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (urban areas, have high rates of, HIV infection) -> urban areas (3421ms)\nWhat countries supplied aid?\tThe country\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The country, has quite a low rate of, HIV infection) -> The country (3412ms)\nWhat countries supplied aid?\tone half\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, source, hiv infection) -> (one half, was the most frequent source of, new HIV infections) -> one half (3394ms)\nWhat countries supplied aid?\tthe gel\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the gel, actually increased the rate of, HIV infection) -> the gel (3421ms)\nWhat countries supplied aid?\tthe reports key findings\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the reports key findings, include The rate of, HIV infection) -> the reports key findings (3418ms)\nWhat countries supplied aid?\tantibody response\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, rate, hiv infection) -> (antibody response, had the lowest rate of, HIV infection) -> antibody response (3421ms)\nWhat countries supplied aid?\tthe many issues\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, surround, hiv infection) -> (the many issues, surrounding, HIV infection) -> the many issues (3421ms)\nWhat countries supplied aid?\tPILI\t0.777777777778\tWhat countries supplied aid? -> $x: ($x, work with, legal aid) -> (PILI, also works with, legal aid) -> PILI (3403ms)\nWhat companies has BAT owned?\tGrassley\t-0.999999999994\tWhat companies has BAT owned? -> $x: ($x, have bat, general) -> (Grassley, has gone to bat for, the Inspector General) -> Grassley (584ms)\nWhere does chocolate come from?\tthe cold\t0.66666666667\tWhere does chocolate come from? -> $x: (chocolate, come from in, $x) -> ($ 1 Hot Chocolate or Hot Mocha, Come in from, the cold) -> the cold (1262ms)\nWhere does chocolate come from?\tthe Gallery Room\t0.66666666667\tWhere does chocolate come from? -> $x: (chocolate, come from in, $x) -> (chocolate, comes from in, the Gallery Room) -> the Gallery Room (1262ms)\nWhere does chocolate come from?\tmoney\t0.666666666664\tWhere does chocolate come from? -> $x: (chocolate bar, be make of, $x) -> (chocolate bars, is a widespread way of making, money) -> money (1262ms)\nWhere does chocolate come from?\tthe beans\t0.666666666664\tWhere does chocolate come from? -> $x: (chocolate bar, be make of, $x) -> (Each chocolate bar, is made out of, the beans) -> the beans (1262ms)\nWhere does chocolate come from?\tthe surrounding farms\t0.555555555561\tWhere does chocolate come from? -> $x: (milk, come from in, $x) -> (milk, were coming in from, the surrounding farms) -> the surrounding farms (1262ms)\nWhere does chocolate come from?\tEQLive\t0.555555555561\tWhere does chocolate come from? -> $x: (milk, come from in, $x) -> (all the milk, came from in, EQLive) -> EQLive (1262ms)\nWhere does chocolate come from?\tthe parlor\t0.555555555561\tWhere does chocolate come from? -> $x: (milk, come from in, $x) -> (the milk, comes in from, the parlor) -> the parlor (1262ms)\nWhere does chocolate come from?\tthe country-side\t0.555555555561\tWhere does chocolate come from? -> $x: (milk, come from in, $x) -> (milk and legumes, came in from, the country-side) -> the country-side (1475ms)\nWhere does chocolate come from?\tthe town\t0.555555555561\tWhere does chocolate come from? -> $x: (milk, come from in, $x) -> (the milk, came from in, the town) -> the town (1475ms)\nWhere does chocolate come from?\tDaniel Peters\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (Daniel Peters, produced, the first milk chocolate bar) -> Daniel Peters (1541ms)\nWhere does chocolate come from?\tthe pocket\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (the pocket, produced, an enormous chocolate bar) -> the pocket (1475ms)\nWhere does chocolate come from?\tThe company\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (The company, produces a line of, single-origin chocolate bars) -> The company (1541ms)\nWhere does chocolate come from?\ta company\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (a company, be allowed to produce, a Fair Trade chocolate bar) -> a company (1541ms)\nWhere does chocolate come from?\ta dozen firms\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (a dozen firms, are producing, chocolate bars) -> a dozen firms (1541ms)\nWhere does chocolate come from?\tLancaster\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (Lancaster, started producing, chocolate bars) -> Lancaster (1541ms)\nWhere does chocolate come from?\tpany\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (pany, primarily produces, chocolate bars) -> pany (1541ms)\nWhere does chocolate come from?\tconfectionary firms\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (confectionary firms, start producing, mini-chocolate bars) -> confectionary firms (1541ms)\nWhere does chocolate come from?\tthe company\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (the company, once produced, chocolate bars) -> the company (1475ms)\nWhere does chocolate come from?\tMars\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (Mars, also produces, Dove chocolate bars) -> Mars (1475ms)\nWhere does chocolate come from?\tThe trio\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (The trio, were involved in producing, chocolate bars) -> The trio (1475ms)\nWhere does chocolate come from?\tNestl?\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (Nestl?, produced a series of, milk chocolate bars) -> Nestl? (1475ms)\nWhere does chocolate come from?\tfavourite mass\t0.555555555555\tWhere does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (favourite mass, produced, chocolate bars) -> favourite mass (1541ms)\nWho was the captain of the Titanic?\tRosenthal\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Rosenthal, is the captain of, the Titanic) -> Rosenthal (861ms)\nWho was the captain of the Titanic?\tDick Clark\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Dick Clark, was the captain of, the Titanic) -> Dick Clark (861ms)\nWho was the captain of the Titanic?\tThe most famous\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (The most famous, is the captain of, the Titanic) -> The most famous (861ms)\nWho was the captain of the Titanic?\tCaptain Edward John Smith\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Captain Edward John Smith, was the captain of, the Titanic) -> Captain Edward John Smith (861ms)\nWho was the captain of the Titanic?\tChristopher\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Christopher, Is Captain Of, The Titanic Important) -> Christopher (861ms)\nWho was the captain of the Titanic?\tdeviantART More\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (deviantART More, is the captain of, the Titanic richer) -> deviantART More (861ms)\nWho was the captain of the Titanic?\tEdward Smith\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Edward Smith, was the captain of, the Titanic) -> Edward Smith (861ms)\nWho was the captain of the Titanic?\tEdward J. Smith\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Edward J. Smith, was the captain of, the Titanic) -> Edward J. Smith (861ms)\nWho was the captain of the Titanic?\tdeviantART Details\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (deviantART Details, is the captain of, the Titanic richer) -> deviantART Details (861ms)\nWho was the captain of the Titanic?\tugly ;A\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (ugly ;A, is the captain of, the Titanic richer) -> ugly ;A (861ms)\nWho was the captain of the Titanic?\tBush\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Bush, were captain of, the Titanic) -> Bush (861ms)\nWho was the captain of the Titanic?\tObama\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Obama, was the captain of, the Titanic) -> Obama (861ms)\nWho was the captain of the Titanic?\tWoody\t1.9999999999890001\tWho was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Woody, were Captain of, the Titanic) -> Woody (861ms)\nWho was the captain of the Titanic?\tSigrid Elisabeth Andersson\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Sigrid Elisabeth Andersson, Killed in disaster, Sinking of the Titanic) -> Sigrid Elisabeth Andersson (867ms)\nWho was the captain of the Titanic?\tJacques Futrelle\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Jacques Futrelle, Killed in disaster, Sinking of the Titanic) -> Jacques Futrelle (867ms)\nWho was the captain of the Titanic?\tEbba Iris Alfrida Andersson\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ebba Iris Alfrida Andersson, Killed in disaster, Sinking of the Titanic) -> Ebba Iris Alfrida Andersson (866ms)\nWho was the captain of the Titanic?\tIlmari Rudolf Alhom?ki\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ilmari Rudolf Alhom?ki, Killed in disaster, Sinking of the Titanic) -> Ilmari Rudolf Alhom?ki (863ms)\nWho was the captain of the Titanic?\tBenjamin Guggenheim\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Benjamin Guggenheim, Killed in disaster, Sinking of the Titanic) -> Benjamin Guggenheim (867ms)\nWho was the captain of the Titanic?\tGeorge Dunton Widener\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (George Dunton Widener, Killed in disaster, Sinking of the Titanic) -> George Dunton Widener (864ms)\nWho was the captain of the Titanic?\tSamuel Abelson\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Samuel Abelson, Killed in disaster, Sinking of the Titanic) -> Samuel Abelson (867ms)\nWho was the captain of the Titanic?\tSidney Leslie Goodwin\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Sidney Leslie Goodwin, Killed in disaster, Sinking of the Titanic) -> Sidney Leslie Goodwin (867ms)\nWho was the captain of the Titanic?\tPresumption\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Presumption, killed, the Titanic) -> Presumption (867ms)\nWho was the captain of the Titanic?\tOne such example\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, be captain, titanic) -> (One such example, might have been the captain on, the Titanic) -> One such example (867ms)\nWho was the captain of the Titanic?\tBessie Waldo Allison\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Bessie Waldo Allison, Killed in disaster, Sinking of the Titanic) -> Bessie Waldo Allison (863ms)\nWho was the captain of the Titanic?\tWilliam Neal Thomas Ford\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (William Neal Thomas Ford, Killed in disaster, Sinking of the Titanic) -> William Neal Thomas Ford (861ms)\nWho was the captain of the Titanic?\tJack Phillips\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Jack Phillips, Killed in disaster, Sinking of the Titanic) -> Jack Phillips (861ms)\nWho was the captain of the Titanic?\tWalter Donald Douglas\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Walter Donald Douglas, Killed in disaster, Sinking of the Titanic) -> Walter Donald Douglas (864ms)\nWho was the captain of the Titanic?\tJohn James Borebank\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (John James Borebank, Killed in disaster, Sinking of the Titanic) -> John James Borebank (864ms)\nWho was the captain of the Titanic?\tSleiman Attala\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Sleiman Attala, Killed in disaster, Sinking of the Titanic) -> Sleiman Attala (864ms)\nWho was the captain of the Titanic?\tCharles Edward Goodwin\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Charles Edward Goodwin, Killed in disaster, Sinking of the Titanic) -> Charles Edward Goodwin (866ms)\nWho was the captain of the Titanic?\tArchibald Butt\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Archibald Butt, Killed in disaster, Sinking of the Titanic) -> Archibald Butt (863ms)\nWho was the captain of the Titanic?\tIsidor Straus\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Isidor Straus, Killed in disaster, Sinking of the Titanic) -> Isidor Straus (864ms)\nWho was the captain of the Titanic?\tJohn Jacob Astor IV\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (John Jacob Astor IV, Killed in disaster, Sinking of the Titanic) -> John Jacob Astor IV (867ms)\nWho was the captain of the Titanic?\tSigvard Harald Elias Andersson\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Sigvard Harald Elias Andersson, Killed in disaster, Sinking of the Titanic) -> Sigvard Harald Elias Andersson (864ms)\nWho was the captain of the Titanic?\tWashington A Roebling, II\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Washington A Roebling, II, Killed in disaster, Sinking of the Titanic) -> Washington A Roebling, II (864ms)\nWho was the captain of the Titanic?\tMichel Navratil\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Michel Navratil, Killed in disaster, Sinking of the Titanic) -> Michel Navratil (864ms)\nWho was the captain of the Titanic?\tRen? Pernot\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ren? Pernot, Killed in disaster, Sinking of the Titanic) -> Ren? Pernot (864ms)\nWho was the captain of the Titanic?\tCatherine Buckley\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Catherine Buckley, Killed in disaster, Sinking of the Titanic) -> Catherine Buckley (863ms)\nWho was the captain of the Titanic?\tClarence Gustaf Asplund\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Clarence Gustaf Asplund, Killed in disaster, Sinking of the Titanic) -> Clarence Gustaf Asplund (868ms)\nWho was the captain of the Titanic?\tGilbert Sigvard Emanuel Danbom\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Gilbert Sigvard Emanuel Danbom, Killed in disaster, Sinking of the Titanic) -> Gilbert Sigvard Emanuel Danbom (867ms)\nWho was the captain of the Titanic?\tAlbert Karvin Andersen\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Albert Karvin Andersen, Killed in disaster, Sinking of the Titanic) -> Albert Karvin Andersen (863ms)\nWho was the captain of the Titanic?\tThe Postman\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (The Postman, was promptly killed by, both Titanic and attacks) -> The Postman (867ms)\nWho was the captain of the Titanic?\tDownton Abbey\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Downton Abbey, are killed on, the Titanic) -> Downton Abbey (866ms)\nWho was the captain of the Titanic?\tAndersson, Ellis Anna Maria\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Andersson, Ellis Anna Maria, Killed in disaster, Sinking of the Titanic) -> Andersson, Ellis Anna Maria (867ms)\nWho was the captain of the Titanic?\tAkar Boulos\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Akar Boulos, Killed in disaster, Sinking of the Titanic) -> Akar Boulos (867ms)\nWho was the captain of the Titanic?\tWilliam McMaster Murdoch\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (William McMaster Murdoch, Killed in disaster, Sinking of the Titanic) -> William McMaster Murdoch (868ms)\nWho was the captain of the Titanic?\tIda Straus\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ida Straus, Killed in disaster, Sinking of the Titanic) -> Ida Straus (863ms)\nWho was the captain of the Titanic?\tCancer\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Cancer, kills, a Titanic) -> Cancer (867ms)\nWho was the captain of the Titanic?\tWilliam Edward Hipkins\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (William Edward Hipkins, Killed in disaster, Sinking of the Titanic) -> William Edward Hipkins (866ms)\nWho was the captain of the Titanic?\tEugene Joseph Abbott\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Eugene Joseph Abbott, Killed in disaster, Sinking of the Titanic) -> Eugene Joseph Abbott (867ms)\nWho was the captain of the Titanic?\tSeman Bestros\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Seman Bestros, Killed in disaster, Sinking of the Titanic) -> Seman Bestros (867ms)\nWho was the captain of the Titanic?\tEino Viljami Panula\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Eino Viljami Panula, Killed in disaster, Sinking of the Titanic) -> Eino Viljami Panula (867ms)\nWho was the captain of the Titanic?\tWallace Hartley\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Wallace Hartley, Killed in disaster, Sinking of the Titanic) -> Wallace Hartley (867ms)\nWho was the captain of the Titanic?\tHelen Loraine Allison\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Helen Loraine Allison, Killed in disaster, Sinking of the Titanic) -> Helen Loraine Allison (863ms)\nWho was the captain of the Titanic?\tWilliam Thomas Stead\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (William Thomas Stead, Killed in disaster, Sinking of the Titanic) -> William Thomas Stead (867ms)\nWho was the captain of the Titanic?\t?Full\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, captain, titanic) -> (?Full, says the captain of, the Titanic) -> ?Full (866ms)\nWho was the captain of the Titanic?\tNourelain Boulos\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Nourelain Boulos, Killed in disaster, Sinking of the Titanic) -> Nourelain Boulos (866ms)\nWho was the captain of the Titanic?\tFrancis Davis Millet\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Francis Davis Millet, Killed in disaster, Sinking of the Titanic) -> Francis Davis Millet (864ms)\nWho was the captain of the Titanic?\tFilip Oscar Asplund\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Filip Oscar Asplund, Killed in disaster, Sinking of the Titanic) -> Filip Oscar Asplund (864ms)\nWho was the captain of the Titanic?\tthe Stratosphere Tower\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (the Stratosphere Tower, killed, the Titanic) -> the Stratosphere Tower (867ms)\nWho was the captain of the Titanic?\tThomas Byles\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Thomas Byles, Killed in disaster, Sinking of the Titanic) -> Thomas Byles (864ms)\nWho was the captain of the Titanic?\tIngeborg Constantia Andersson\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ingeborg Constantia Andersson, Killed in disaster, Sinking of the Titanic) -> Ingeborg Constantia Andersson (863ms)\nWho was the captain of the Titanic?\tDollina Margaret Ford\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Dollina Margaret Ford, Killed in disaster, Sinking of the Titanic) -> Dollina Margaret Ford (863ms)\nWho was the captain of the Titanic?\tJohn Thayer\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (John Thayer, Killed in disaster, Sinking of the Titanic) -> John Thayer (866ms)\nWho was the captain of the Titanic?\tFelix Rojj Asplund\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Felix Rojj Asplund, Killed in disaster, Sinking of the Titanic) -> Felix Rojj Asplund (866ms)\nWho was the captain of the Titanic?\tCharles Melville Hays\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Charles Melville Hays, Killed in disaster, Sinking of the Titanic) -> Charles Melville Hays (867ms)\nWho was the captain of the Titanic?\tThomas Andrews\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Thomas Andrews, Killed in disaster, Sinking of the Titanic) -> Thomas Andrews (863ms)\nWho was the captain of the Titanic?\tEdward Watson Ford\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Edward Watson Ford, Killed in disaster, Sinking of the Titanic) -> Edward Watson Ford (864ms)\nWho was the captain of the Titanic?\tRobina Maggie Ford\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Robina Maggie Ford, Killed in disaster, Sinking of the Titanic) -> Robina Maggie Ford (866ms)\nWho was the captain of the Titanic?\tBertram Frank Dean\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Bertram Frank Dean, Killed in disaster, Sinking of the Titanic) -> Bertram Frank Dean (867ms)\nWho was the captain of the Titanic?\tAnthony Abbing\t1.55555555555\tWho was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Anthony Abbing, Killed in disaster, Sinking of the Titanic) -> Anthony Abbing (864ms)\nWhat is the tallest statue in the world?\tConfidence\t1.11111111111\tWhat is the tallest statue in the world? -> $x: ($x, be limitation of, world) -> (Confidence, is a limitation of, an egoic world) -> Confidence (960ms)\nWhat is the tallest statue in the world?\texhibits\t1.11111111111\tWhat is the tallest statue in the world? -> $x: ($x, be statue of, world) -> (exhibits, were life-size statues of, the world) -> exhibits (960ms)\nWhat is the tallest statue in the world?\tthe material world\t1.11111111111\tWhat is the tallest statue in the world? -> $x: ($x, be limitation of, world) -> (the material world, is a limitation of, the four-dimension world) -> the material world (960ms)\nWhat is the tallest statue in the world?\tA subject\t1.11111111111\tWhat is the tallest statue in the world? -> $x: ($x, be limitation of, world) -> (A subject, is a limitation of, the world ?) -> A subject (960ms)\nWhat is the tallest statue in the world?\tthe range\t1.11111111111\tWhat is the tallest statue in the world? -> $x: ($x, be limitation of, world) -> (the range, are the limitations of, the plant world) -> the range (960ms)\nWhat is the tallest statue in the world?\t26783 feet\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (26783 feet, is the eighth tallest mountain in, the World) -> 26783 feet (2333ms)\nWhat is the tallest statue in the world?\tHawaii\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Hawaii, is the tallest mountain in, the world) -> Hawaii (2408ms)\nWhat is the tallest statue in the world?\tthe bottom\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the bottom, is the tallest mountain in, the world) -> the bottom (2408ms)\nWhat is the tallest statue in the world?\tthe ocean floor Mauna Kea\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the ocean floor Mauna Kea, is the tallest mountain in, the world) -> the ocean floor Mauna Kea (960ms)\nWhat is the tallest statue in the world?\tthe Himalayas\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the Himalayas, are the tallest mountain range in, the world) -> the Himalayas (2333ms)\nWhat is the tallest statue in the world?\tthe same island\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the same island, is actually the tallest mountain in, the world) -> the same island (1082ms)\nWhat is the tallest statue in the world?\tfactual questions\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (factual questions, is the second tallest mountain in, the world) -> factual questions (2333ms)\nWhat is the tallest statue in the world?\tMount Kinabalu\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mount Kinabalu, is the 20th tallest mountain in, the world) -> Mount Kinabalu (2333ms)\nWhat is the tallest statue in the world?\tKilimanjaro\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Kilimanjaro, is the tallest freestanding mountain in, the world) -> Kilimanjaro (2333ms)\nWhat is the tallest statue in the world?\tMaunakea\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Maunakea, is the tallest mountain in, the world) -> Maunakea (1488ms)\nWhat is the tallest statue in the world?\tK2\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (K2, is the Second Tallest Mountain in, the World) -> K2 (1582ms)\nWhat is the tallest statue in the world?\tnatural language\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (natural language, is the tallest mountain in, the world) -> natural language (1582ms)\nWhat is the tallest statue in the world?\t19,340 feet\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (19,340 feet, is the tallest free-standing mountain in, the world) -> 19,340 feet (2333ms)\nWhat is the tallest statue in the world?\tThe Himalayas\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (The Himalayas, are the tallest mountains in, the world) -> The Himalayas (2333ms)\nWhat is the tallest statue in the world?\tAfrica\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Africa, is the tallest freestanding mountain in, the world) -> Africa (1488ms)\nWhat is the tallest statue in the world?\tMt Everest\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mt Everest, is the tallest mountain in, the world) -> Mt Everest (2408ms)\nWhat is the tallest statue in the world?\tthe Aconcagua\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the Aconcagua, is the second tallest mountain in, the world) -> the Aconcagua (1582ms)\nWhat is the tallest statue in the world?\tMauna Kea\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mauna Kea, is the tallest mountain in, the world) -> Mauna Kea (1582ms)\nWhat is the tallest statue in the world?\tMauna Loa\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mauna Loa, is the tallest mountain in, the world) -> Mauna Loa (2408ms)\nWhat is the tallest statue in the world?\tMount Everest\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mount Everest, was the tallest mountain in, the world) -> Mount Everest (2408ms)\nWhat is the tallest statue in the world?\tKanchenjunga\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Kanchenjunga, is the third-tallest mountain in, the world) -> Kanchenjunga (1582ms)\nWhat is the tallest statue in the world?\tTyre\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Tyre, was the tallest unclimbed mountain in, the world) -> Tyre (2408ms)\nWhat is the tallest statue in the world?\tEverest\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Everest, is the tallest mountain in, the world) -> Everest (2408ms)\nWhat is the tallest statue in the world?\t13,796 foot Mauna Kea\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (13,796 foot Mauna Kea, be the tallest mountains in, the world) -> 13,796 foot Mauna Kea (1082ms)\nWhat is the tallest statue in the world?\tthe Big Island\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the Big Island, is the tallest mountain in, the world) -> the Big Island (1082ms)\nWhat is the tallest statue in the world?\tMcKinley\t0.999999999995\tWhat is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (McKinley, is the tallest mountain in, the world) -> McKinley (1488ms)\nWhat is the tallest statue in the world?\tthe highest peak\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the highest peak, is the eighth highest mountain in, the world) -> the highest peak (2509ms)\nWhat is the tallest statue in the world?\t4 Mount Everest\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (4 Mount Everest, is the highest mountain in, the world) -> 4 Mount Everest (2524ms)\nWhat is the tallest statue in the world?\tMissouri\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Missouri, was probably the highest mountain in, the world) -> Missouri (2509ms)\nWhat is the tallest statue in the world?\tKhangchendzonga\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Khangchendzonga, is the third highest mountain in, the world) -> Khangchendzonga (2524ms)\nWhat is the tallest statue in the world?\tBroad Peak\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Broad Peak, is the 12th highest mountain in, the world) -> Broad Peak (2524ms)\nWhat is the tallest statue in the world?\t8,516m\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8,516m, is the fourth highest mountain in, the world) -> 8,516m (2519ms)\nWhat is the tallest statue in the world?\tLhotse\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Lhotse, is the fourth highest mountain in, the world) -> Lhotse (2509ms)\nWhat is the tallest statue in the world?\tDhaulagiri\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Dhaulagiri, is the sixth highest mountain in, the world) -> Dhaulagiri (2524ms)\nWhat is the tallest statue in the world?\t8,201m Cho Oyu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8,201m Cho Oyu, is the sixth highest mountain in, the world) -> 8,201m Cho Oyu (2524ms)\nWhat is the tallest statue in the world?\tMedeo\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Medeo, is the highest mountain range in, the world) -> Medeo (2437ms)\nWhat is the tallest statue in the world?\tSikkim\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Sikkim, is the third highest mountain in, the world) -> Sikkim (2492ms)\nWhat is the tallest statue in the world?\t8,586m Kanchenjunga\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8,586m Kanchenjunga, is the third highest mountain in, the world) -> 8,586m Kanchenjunga (2514ms)\nWhat is the tallest statue in the world?\tmountain\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (mountain, is the ninth-highest mountain in, the world) -> mountain (2509ms)\nWhat is the tallest statue in the world?\tsight\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (sight, are the highest mountains in, the world) -> sight (2437ms)\nWhat is the tallest statue in the world?\tStrenuous Makalu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Strenuous Makalu, is the fifth highest mountain in, the world) -> Strenuous Makalu (2514ms)\nWhat is the tallest statue in the world?\tCho-Oyu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Cho-Oyu, is the sixth highest mountain in, the world) -> Cho-Oyu (2524ms)\nWhat is the tallest statue in the world?\t598 mtrs\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (598 mtrs, is third highest mountain in, the world) -> 598 mtrs (2514ms)\nWhat is the tallest statue in the world?\tManaslu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Manaslu, is the eighth highest mountain in, the world) -> Manaslu (2524ms)\nWhat is the tallest statue in the world?\t10 days Annapurna\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (10 days Annapurna, is the 10th highest mountain in, the world) -> 10 days Annapurna (2492ms)\nWhat is the tallest statue in the world?\tthe border\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the border, is the highest mountain in, the world) -> the border (2408ms)\nWhat is the tallest statue in the world?\tChina\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (China, is the highest mountain in, the world) -> China (2492ms)\nWhat is the tallest statue in the world?\t8167 meters\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8167 meters, is 7th highest mountain in, the world) -> 8167 meters (2492ms)\nWhat is the tallest statue in the world?\t26,795 feet\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (26,795 feet, is the sixth highest mountain in, the world) -> 26,795 feet (2492ms)\nWhat is the tallest statue in the world?\tthe Gorkha massif\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the Gorkha massif, is the eighth highest mountain in, the world) -> the Gorkha massif (2509ms)\nWhat is the tallest statue in the world?\tKanchenjunga 8586m\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Kanchenjunga 8586m, is the third highest mountain in, the world) -> Kanchenjunga 8586m (2519ms)\nWhat is the tallest statue in the world?\tKanchanjunga\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Kanchanjunga, is the third highest mountain in, the world) -> Kanchanjunga (2524ms)\nWhat is the tallest statue in the world?\ttwo countries\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (two countries, is the third-highest mountain in, the world) -> two countries (2474ms)\nWhat is the tallest statue in the world?\tpeaks\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (peaks, is the highest mountain in, the world) -> peaks (2524ms)\nWhat is the tallest statue in the world?\tNepal Manaslu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Nepal Manaslu, is the eighth highest mountain in, the world) -> Nepal Manaslu (2437ms)\nWhat is the tallest statue in the world?\tthe Peak XV\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the Peak XV, is the highest mountain in, the world) -> the Peak XV (2519ms)\nWhat is the tallest statue in the world?\tTingri County\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Tingri County, is the highest mountain in, the world) -> Tingri County (2492ms)\nWhat is the tallest statue in the world?\tsnow ?\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (snow ?, is the highest mountain range in, the world) -> snow ? (2492ms)\nWhat is the tallest statue in the world?\tSanta Marta\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Santa Marta, is the highest coastal mountain range in, the world) -> Santa Marta (2519ms)\nWhat is the tallest statue in the world?\tNepal\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Nepal, is the seventh highest mountain in, the world) -> Nepal (2524ms)\nWhat is the tallest statue in the world?\tuser\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (user, is the highest mountain in, the world) -> user (2492ms)\nWhat is the tallest statue in the world?\tMakalu Makalu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Makalu Makalu, is the fifth highest mountain in, the world) -> Makalu Makalu (2514ms)\nWhat is the tallest statue in the world?\tNanga Parbat\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Nanga Parbat, is the ninth highest mountain in, the world) -> Nanga Parbat (2509ms)\nWhat is the tallest statue in the world?\tShishapangma\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Shishapangma, is the 14th highest mountain in, the world) -> Shishapangma (2509ms)\nWhat is the tallest statue in the world?\tThe Khumbu Valley\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (The Khumbu Valley, is the highest mountain in, the world) -> The Khumbu Valley (2509ms)\nWhat is the tallest statue in the world?\tThe mighty\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (The mighty, is the highest mountains in, the world) -> The mighty (2519ms)\nWhat is the tallest statue in the world?\tHimalayas\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Himalayas, are the highest mountains in, the world) -> Himalayas (2509ms)\nWhat is the tallest statue in the world?\t?Mountain\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (?Mountain, is the eighth highest mountain in, the world) -> ?Mountain (2509ms)\nWhat is the tallest statue in the world?\tCho Oyu Cho Oyu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Cho Oyu Cho Oyu, is the sixth highest mountain in, the world) -> Cho Oyu Cho Oyu (2437ms)\nWhat is the tallest statue in the world?\tMakalu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Makalu, is the fifth highest mountain in, the world) -> Makalu (2474ms)\nWhat is the tallest statue in the world?\tThe Sierra Nevada\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (The Sierra Nevada, is the highest coastal mountain in, the world) -> The Sierra Nevada (2514ms)\nWhat is the tallest statue in the world?\tAconcagua\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Aconcagua, is the highest mountain in, the world) -> Aconcagua (2514ms)\nWhat is the tallest statue in the world?\tthe Andes\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the Andes, are the highest mountains in, the world) -> the Andes (2524ms)\nWhat is the tallest statue in the world?\tThe Andes\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (The Andes, is the second highest mountain range in, the world) -> The Andes (2509ms)\nWhat is the tallest statue in the world?\tMount Kilimanjaro\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Mount Kilimanjaro, is the fourth highest mountain in, the world) -> Mount Kilimanjaro (2524ms)\nWhat is the tallest statue in the world?\tEverest Mount Everest\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Everest Mount Everest, is the highest mountain in, the world) -> Everest Mount Everest (2519ms)\nWhat is the tallest statue in the world?\tLamlam\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Lamlam, is arguably the highest mountain in, the world) -> Lamlam (2509ms)\nWhat is the tallest statue in the world?\tMay Mount Everest\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (May Mount Everest, is the highest mountain in, the world) -> May Mount Everest (2474ms)\nWhat is the tallest statue in the world?\t29 ,035 feet\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (29 ,035 feet, is the highest mountain in, the world) -> 29 ,035 feet (2519ms)\nWhat is the tallest statue in the world?\tKangchenjunga\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Kangchenjunga, is the third highest mountain in, the world) -> Kangchenjunga (2514ms)\nWhat is the tallest statue in the world?\tCho Oyu\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Cho Oyu, is the sixth highest mountain in, the world) -> Cho Oyu (2519ms)\nWhat is the tallest statue in the world?\tMount Dhaulagiri\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Mount Dhaulagiri, is the seventh highest mountain in, the world) -> Mount Dhaulagiri (2514ms)\nWhat is the tallest statue in the world?\t8848\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8848, is the highest mountain in, the world) -> 8848 (2514ms)\nWhat is the tallest statue in the world?\tKarjiang\t0.666666666663\tWhat is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Karjiang, is the fourth highest unclimbed mountain in, the world) -> Karjiang (2519ms)\nWhat is the tallest statue in the world?\tThe Empire State Building\t0.5555555555530001\tWhat is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (The Empire State Building, was the first building in, the world) -> The Empire State Building (2529ms)\nWhat is the tallest statue in the world?\tthe Ismaili Imamat\t0.5555555555530001\tWhat is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (the Ismaili Imamat, is the first building in, the world) -> the Ismaili Imamat (2529ms)\nWhat is the tallest statue in the world?\tthe Capitol\t0.5555555555530001\tWhat is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (the Capitol, was the first public building in, the New World) -> the Capitol (2529ms)\nWhat is the tallest statue in the world?\tThe Bourse\t0.5555555555530001\tWhat is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (The Bourse, was the first building in, the world) -> The Bourse (2529ms)\nWhat is the tallest statue in the world?\tStrata\t0.5555555555530001\tWhat is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (Strata, is the first building in, the world) -> Strata (2529ms)\nWhat is the tallest statue in the world?\tThe Savoy Theatre\t0.5555555555530001\tWhat is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (The Savoy Theatre, was the first public building in, the world) -> The Savoy Theatre (2529ms)\nWhat is the tallest statue in the world?\tNotre Dame\t0.5555555555530001\tWhat is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (Notre Dame, was the first building in, the world) -> Notre Dame (2529ms)\nWhat is the tallest statue in the world?\tThe Green Business Centre\t0.5555555555530001\tWhat is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (The Green Business Centre, is the first building in, the world) -> The Green Business Centre (2529ms)\nWhat is the tallest statue in the world?\tItaly\t0.44444444444200004\tWhat is the tallest statue in the world? -> $x: ($x, be tallest waterfall in, world) -> (Italy, is the tallest man-made waterfall in, the world) -> Italy (2529ms)\nWhat is the tallest statue in the world?\tVenezuela\t0.44444444444200004\tWhat is the tallest statue in the world? -> $x: ($x, be tallest waterfall in, world) -> (Venezuela, is the tallest waterfall in, the world) -> Venezuela (2529ms)\nWhat is the tallest statue in the world?\tAngel Falls\t0.44444444444200004\tWhat is the tallest statue in the world? -> $x: ($x, be tallest waterfall in, world) -> (Angel Falls, is the tallest waterfall in, the world) -> Angel Falls (2529ms)\nWhat is the tallest statue in the world?\tThe Chrysler Building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Chrysler Building, was the tallest building in, the world) -> The Chrysler Building (2546ms)\nWhat is the tallest statue in the world?\tthe background\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the background, is the tallest building in, the world) -> the background (2551ms)\nWhat is the tallest statue in the world?\tthe World Trade Center\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the World Trade Center, was the tallest building in, the world) -> the World Trade Center (2534ms)\nWhat is the tallest statue in the world?\tthe Singer Building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Singer Building, was the tallest building in, the world) -> the Singer Building (2551ms)\nWhat is the tallest statue in the world?\t?The Burj Khalifa\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (?The Burj Khalifa, is the tallest building in, the world) -> ?The Burj Khalifa (2533ms)\nWhat is the tallest statue in the world?\tParis\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Paris, was the tallest building in, the world) -> Paris (2546ms)\nWhat is the tallest statue in the world?\tthe Burj Dubai Tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Burj Dubai Tower, is the tallest building in, the world) -> the Burj Dubai Tower (2551ms)\nWhat is the tallest statue in the world?\tthe tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the tower, was the tallest building in, the world) -> the tower (2538ms)\nWhat is the tallest statue in the world?\tChicago?s Sears Tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Chicago?s Sears Tower, was the tallest building in, the world) -> Chicago?s Sears Tower (2546ms)\nWhat is the tallest statue in the world?\tTall\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Tall, is the Tallest Building in, the World) -> Tall (2554ms)\nWhat is the tallest statue in the world?\tThe spire tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The spire tower, will be tallest building in, the world) -> The spire tower (2533ms)\nWhat is the tallest statue in the world?\tthe 52-floor skyscraper\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the 52-floor skyscraper, was the tallest building in, the world) -> the 52-floor skyscraper (2542ms)\nWhat is the tallest statue in the world?\tLower Manhattan\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Lower Manhattan, was the tallest building in, the world) -> Lower Manhattan (2542ms)\nWhat is the tallest statue in the world?\tToronto\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Toronto, was the tallest building in, the world) -> Toronto (2554ms)\nWhat is the tallest statue in the world?\tThe Eiffel Tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Eiffel Tower, was the tallest building in, the world) -> The Eiffel Tower (2546ms)\nWhat is the tallest statue in the world?\t102 stories\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (102 stories, was the tallest building in, the world) -> 102 stories (2542ms)\nWhat is the tallest statue in the world?\tthe question\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the question, is the tallest building in, the world) -> the question (2546ms)\nWhat is the tallest statue in the world?\tthe pyramid\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the pyramid, was the tallest building in, the world) -> the pyramid (2546ms)\nWhat is the tallest statue in the world?\tTaiwan\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taiwan, was the tallest building in, the world) -> Taiwan (2551ms)\nWhat is the tallest statue in the world?\tOleviste Kirik\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Oleviste Kirik, was the tallest building in, the world) -> Oleviste Kirik (2538ms)\nWhat is the tallest statue in the world?\t2004\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (2004, is the tallest building in, the world) -> 2004 (2542ms)\nWhat is the tallest statue in the world?\t826 metres\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (826 metres, is the tallest building in, the world) -> 826 metres (2538ms)\nWhat is the tallest statue in the world?\tthe form\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the form, is the tallest building in, the world) -> the form (2554ms)\nWhat is the tallest statue in the world?\tTaipei 101\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taipei 101, was the tallest building in, the world) -> Taipei 101 (2538ms)\nWhat is the tallest statue in the world?\tthe pagoda\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the pagoda, was the tallest building in, the world) -> the pagoda (2538ms)\nWhat is the tallest statue in the world?\tBurj Kalifa\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Burj Kalifa, is the tallest building in, the world) -> Burj Kalifa (2538ms)\nWhat is the tallest statue in the world?\tBurj Khalifa\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Burj Khalifa, is tallest building in, the world) -> Burj Khalifa (2550ms)\nWhat is the tallest statue in the world?\tNew York\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (New York, was the tallest building in, the world) -> New York (2529ms)\nWhat is the tallest statue in the world?\tThe Sears Tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Sears Tower, was the tallest building in, the world) -> The Sears Tower (2533ms)\nWhat is the tallest statue in the world?\tThe Cathedral\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Cathedral, was the tallest building in, the world) -> The Cathedral (2542ms)\nWhat is the tallest statue in the world?\tCity Hall\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (City Hall, was the tallest building in, the world) -> City Hall (2538ms)\nWhat is the tallest statue in the world?\tGiza\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Giza, was the tallest building in, the world) -> Giza (2554ms)\nWhat is the tallest statue in the world?\tThe Burj\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Burj, is the tallest building in, the world) -> The Burj (2547ms)\nWhat is the tallest statue in the world?\tone time\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (one time, was the tallest building in, the world) -> one time (2554ms)\nWhat is the tallest statue in the world?\tthe Great Pyramid\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Great Pyramid, was the tallest building in, the world) -> the Great Pyramid (2551ms)\nWhat is the tallest statue in the world?\tCN Tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (CN Tower, is the tallest building in, the world) -> CN Tower (2534ms)\nWhat is the tallest statue in the world?\tthe Eiffel Tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Eiffel Tower, was the tallest building in, the world) -> the Eiffel Tower (2538ms)\nWhat is the tallest statue in the world?\t2. Lublianka\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (2. Lublianka, is the tallest building in, the world) -> 2. Lublianka (2534ms)\nWhat is the tallest statue in the world?\tThe Washington Monument\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Washington Monument, was the tallest building in, the world) -> The Washington Monument (2550ms)\nWhat is the tallest statue in the world?\tthe Chrysler\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Chrysler, was the tallest building in, the world) -> the Chrysler (2538ms)\nWhat is the tallest statue in the world?\t1931\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (1931, was the tallest building in, the world) -> 1931 (2538ms)\nWhat is the tallest statue in the world?\ta century\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (a century, was the tallest building in, the world) -> a century (2529ms)\nWhat is the tallest statue in the world?\tthe Petronis Towers\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Petronis Towers, were the tallest building in, the world) -> the Petronis Towers (2542ms)\nWhat is the tallest statue in the world?\tthe Chrysler Building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Chrysler Building, was the tallest building in, the world) -> the Chrysler Building (2529ms)\nWhat is the tallest statue in the world?\tthe destruction\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the destruction, was the tallest building in, the world) -> the destruction (2551ms)\nWhat is the tallest statue in the world?\tThe Woolworth Building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Woolworth Building, was the tallest building in, the world) -> The Woolworth Building (2546ms)\nWhat is the tallest statue in the world?\tChicago\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Chicago, is the tallest building in, the world) -> Chicago (2551ms)\nWhat is the tallest statue in the world?\tTaipei\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taipei, was the tallest building in, the world) -> Taipei (2551ms)\nWhat is the tallest statue in the world?\tNew York City\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (New York City, was the tallest building in, the world) -> New York City (2542ms)\nWhat is the tallest statue in the world?\tBurj Dubai\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Burj Dubai, is the tallest building in, the world) -> Burj Dubai (2546ms)\nWhat is the tallest statue in the world?\tthe Sears tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Sears tower, was the tallest building in, the world) -> the Sears tower (2554ms)\nWhat is the tallest statue in the world?\tThe Burj Khalifa\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Burj Khalifa, is the tallest building in, the world) -> The Burj Khalifa (2554ms)\nWhat is the tallest statue in the world?\tworship\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (worship, was the tallest building in, the world) -> worship (2542ms)\nWhat is the tallest statue in the world?\tDubai\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Dubai, is the tallest building in, the world) -> Dubai (2546ms)\nWhat is the tallest statue in the world?\tJeanne Gang\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Jeanne Gang, is the tallest building in, the world) -> Jeanne Gang (2542ms)\nWhat is the tallest statue in the world?\tTaipei 101 Taipei 101\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taipei 101 Taipei 101, is the tallest building in, the world) -> Taipei 101 Taipei 101 (2533ms)\nWhat is the tallest statue in the world?\tThe Burj Khalifa tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Burj Khalifa tower, is the tallest building in, the world) -> The Burj Khalifa tower (2554ms)\nWhat is the tallest statue in the world?\tthe cathedral\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the cathedral, was the tallest building in, the world) -> the cathedral (2538ms)\nWhat is the tallest statue in the world?\tThe Park Row Building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Park Row Building, was the tallest building in, the world) -> The Park Row Building (2546ms)\nWhat is the tallest statue in the world?\t305 meters\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (305 meters, was the tallest building in, the world) -> 305 meters (2554ms)\nWhat is the tallest statue in the world?\tD.C.\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (D.C., was the tallest building in, the world) -> D.C. (2546ms)\nWhat is the tallest statue in the world?\tthe Fuller Building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Fuller Building, was the tallest building in, the world) -> the Fuller Building (2551ms)\nWhat is the tallest statue in the world?\tMalaysia\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Malaysia, is the tallest building in, the world) -> Malaysia (2546ms)\nWhat is the tallest statue in the world?\tThe Burj Dubai\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Burj Dubai, is the tallest building in, the world) -> The Burj Dubai (2542ms)\nWhat is the tallest statue in the world?\tTaipei 101 building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taipei 101 building, was the tallest building in, the world) -> Taipei 101 building (2542ms)\nWhat is the tallest statue in the world?\t1889\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (1889, was the tallest building in, the world) -> 1889 (2538ms)\nWhat is the tallest statue in the world?\tthe building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the building, was the tallest building in, the world) -> the building (2534ms)\nWhat is the tallest statue in the world?\tthe construction\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the construction, was the tallest building in, the world) -> the construction (2534ms)\nWhat is the tallest statue in the world?\tLibrary What\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Library What, is the tallest building in, the world) -> Library What (2550ms)\nWhat is the tallest statue in the world?\tThe Art Deco tower\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Art Deco tower, was the tallest building in, the world) -> The Art Deco tower (2546ms)\nWhat is the tallest statue in the world?\tthe Petronas Twin Towers\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Petronas Twin Towers, was the tallest building in, the world) -> the Petronas Twin Towers (2538ms)\nWhat is the tallest statue in the world?\tEgypt\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Egypt, was the tallest building in, the world) -> Egypt (2542ms)\nWhat is the tallest statue in the world?\tthe early 20th century\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the early 20th century, was the tallest building in, the world) -> the early 20th century (2542ms)\nWhat is the tallest statue in the world?\tthe tallest building\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the tallest building, was the tallest building in, the world) -> the tallest building (2529ms)\nWhat is the tallest statue in the world?\ta close\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (a close, was the tallest building in, the world) -> a close (2546ms)\nWhat is the tallest statue in the world?\tthe XVI century\t0.444444444441\tWhat is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the XVI century, was the tallest building in, the world) -> the XVI century (2533ms)\nWhat is the tallest statue in the world?\tThe American soldiers\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The American soldiers, are the tallest in, the world) -> The American soldiers (2567ms)\nWhat is the tallest statue in the world?\tAqua\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be third tallest building in, world) -> (Aqua, is the third tallest building in, the world) -> Aqua (2565ms)\nWhat is the tallest statue in the world?\tThe Dutch\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The Dutch, are the tallest people in, the world) -> The Dutch (2557ms)\nWhat is the tallest statue in the world?\tthe Washington Monument\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the Washington Monument, was the tallest structure in, the world) -> the Washington Monument (2560ms)\nWhat is the tallest statue in the world?\tAmericans\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Americans, were the tallest people in, the world) -> Americans (2572ms)\nWhat is the tallest statue in the world?\tTokyo Sky Tree\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Tokyo Sky Tree, is the tallest tower in, the world) -> Tokyo Sky Tree (2554ms)\nWhat is the tallest statue in the world?\tthe pyramids\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the pyramids, were the tallest man-made structure in, the world) -> the pyramids (2570ms)\nWhat is the tallest statue in the world?\tLincoln Cathedral\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (Lincoln Cathedral, was the tallest structure in, the world) -> Lincoln Cathedral (2575ms)\nWhat is the tallest statue in the world?\tthe Bicentennial Tree lookout\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Bicentennial Tree lookout, is the tallest in, the world) -> the Bicentennial Tree lookout (2562ms)\nWhat is the tallest statue in the world?\tThe landmark CN Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The landmark CN Tower, is the tallest structure in, the world) -> The landmark CN Tower (2572ms)\nWhat is the tallest statue in the world?\tfuturistic Kuala Lumpur\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (futuristic Kuala Lumpur, are the tallest in, the world) -> futuristic Kuala Lumpur (2557ms)\nWhat is the tallest statue in the world?\tThe left one\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest of, world) -> (The left one, is the tallest of, the world) -> The left one (2574ms)\nWhat is the tallest statue in the world?\tKhufu\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (Khufu, was the tallest structure in, the world) -> Khufu (2570ms)\nWhat is the tallest statue in the world?\tTree\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Tree, is the sixth tallest tree in, the world) -> Tree (2560ms)\nWhat is the tallest statue in the world?\tDutch people\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Dutch people, are the tallest in, the world) -> Dutch people (2575ms)\nWhat is the tallest statue in the world?\t?If Germans\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (?If Germans, were the tallest people in, the world) -> ?If Germans (2570ms)\nWhat is the tallest statue in the world?\tevergreen conifer\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (evergreen conifer, is the tallest tree in, the world) -> evergreen conifer (2574ms)\nWhat is the tallest statue in the world?\t2,717 feet\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (2,717 feet, is the tallest manmade structure in, the world) -> 2,717 feet (2575ms)\nWhat is the tallest statue in the world?\tMontreal\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Montreal, is the tallest inclined tower in, the world) -> Montreal (2565ms)\nWhat is the tallest statue in the world?\ta former Almohad minaret\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (a former Almohad minaret, was the tallest tower in, the world) -> a former Almohad minaret (2567ms)\nWhat is the tallest statue in the world?\tthe 33-story hotel\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the 33-story hotel, was the tallest in, the world) -> the 33-story hotel (2562ms)\nWhat is the tallest statue in the world?\tthe most iconic buildings\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the most iconic buildings, were the tallest in, the world) -> the most iconic buildings (2575ms)\nWhat is the tallest statue in the world?\tthe designs\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the designs, would be the tallest structures in, the world) -> the designs (2575ms)\nWhat is the tallest statue in the world?\tAmerican men\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (American men, were the tallest in, the world) -> American men (2574ms)\nWhat is the tallest statue in the world?\tThe Redwood\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (The Redwood, is the tallest tree in, the world) -> The Redwood (2562ms)\nWhat is the tallest statue in the world?\tthe Empire State Building\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Empire State Building, was the tallest in, the world) -> the Empire State Building (2567ms)\nWhat is the tallest statue in the world?\twhich mountain\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (which mountain, is the tallest in, the world) -> which mountain (2567ms)\nWhat is the tallest statue in the world?\tthe Majagual Forest\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Majagual Forest, are the tallest in, the world) -> the Majagual Forest (2573ms)\nWhat is the tallest statue in the world?\t625 feet\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (625 feet, was the tallest in, the world) -> 625 feet (2567ms)\nWhat is the tallest statue in the world?\tthe Petronas towers\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Petronas towers, were the tallest buildings in, the world) -> the Petronas towers (2575ms)\nWhat is the tallest statue in the world?\ta height\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (a height, was the tallest in, the world) -> a height (2557ms)\nWhat is the tallest statue in the world?\tthe Coast Redwoods\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (the Coast Redwoods, are the tallest trees in, the world) -> the Coast Redwoods (2562ms)\nWhat is the tallest statue in the world?\tKarri\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Karri, is the third tallest tree in, the world) -> Karri (2574ms)\nWhat is the tallest statue in the world?\tonly two years\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (only two years, was the tallest structure in, the world) -> only two years (2562ms)\nWhat is the tallest statue in the world?\tThe Petronas Towers\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (The Petronas Towers, were the tallest skyscrapers in, the world) -> The Petronas Towers (2569ms)\nWhat is the tallest statue in the world?\tThe Jin Mao Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be third tallest building in, world) -> (The Jin Mao Tower, is the third tallest building in, the world) -> The Jin Mao Tower (2572ms)\nWhat is the tallest statue in the world?\tthe temple\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the temple, is the tallest in, the whole world) -> the temple (2575ms)\nWhat is the tallest statue in the world?\tthe Montreal Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the Montreal Tower, is the tallest inclined tower in, the world) -> the Montreal Tower (2573ms)\nWhat is the tallest statue in the world?\tthe Phra Pathom Chedi\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Phra Pathom Chedi, is the tallest in, the world) -> the Phra Pathom Chedi (2573ms)\nWhat is the tallest statue in the world?\tThe temple tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The temple tower, is the tallest in, the world) -> The temple tower (2557ms)\nWhat is the tallest statue in the world?\tCalifornia redwood\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (California redwood, is the tallest tree in, the world) -> California redwood (2572ms)\nWhat is the tallest statue in the world?\tThe monument\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (The monument, was the tallest structure in, the world) -> The monument (2560ms)\nWhat is the tallest statue in the world?\tlarge chunks\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (large chunks, had once been the tallest structures in, the world) -> large chunks (2575ms)\nWhat is the tallest statue in the world?\tthe Burj Khalifa\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the Burj Khalifa, is the tallest tower in, the world) -> the Burj Khalifa (2575ms)\nWhat is the tallest statue in the world?\tGeneva\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Geneva, is the tallest in, the world) -> Geneva (2569ms)\nWhat is the tallest statue in the world?\t? Eucalyptus Tree Sap ?\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (? Eucalyptus Tree Sap ?, Is the tallest tree in, the world) -> ? Eucalyptus Tree Sap ? (2560ms)\nWhat is the tallest statue in the world?\tparking planning\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (parking planning, will be the tallest tower in, the world) -> parking planning (2557ms)\nWhat is the tallest statue in the world?\tthe CN Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the CN Tower, was the tallest in, the world) -> the CN Tower (2572ms)\nWhat is the tallest statue in the world?\tKingdom Centre\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (Kingdom Centre, is the tallest skyscraper in, the world) -> Kingdom Centre (2575ms)\nWhat is the tallest statue in the world?\tJeddah\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (Jeddah, will be the tallest skyscraper in, the world) -> Jeddah (2570ms)\nWhat is the tallest statue in the world?\tthe Sears Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (the Sears Tower, is the ninth tallest skyscraper in, the world) -> the Sears Tower (2560ms)\nWhat is the tallest statue in the world?\tThe giraffe\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The giraffe, is the tallest animal in, the world) -> The giraffe (2557ms)\nWhat is the tallest statue in the world?\tQ1\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Q1, is the tallest residential tower in, the world) -> Q1 (2560ms)\nWhat is the tallest statue in the world?\t350ft Coastal Redwoods\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (350ft Coastal Redwoods, are the tallest trees in, the world) -> 350ft Coastal Redwoods (2570ms)\nWhat is the tallest statue in the world?\tthe new Burj Dubai\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the new Burj Dubai, is now the tallest tower in, the world) -> the new Burj Dubai (2575ms)\nWhat is the tallest statue in the world?\tFrance\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (France, was the tallest in, the world) -> France (2575ms)\nWhat is the tallest statue in the world?\tThe cathedral\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The cathedral, was the tallest structure in, the world) -> The cathedral (2574ms)\nWhat is the tallest statue in the world?\tMilad tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Milad tower, is the fourth tallest tower in, the world) -> Milad tower (2573ms)\nWhat is the tallest statue in the world?\tThe coastal redwoods\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (The coastal redwoods, are the tallest trees in, the world) -> The coastal redwoods (2562ms)\nWhat is the tallest statue in the world?\tThe Coast Redwood\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (The Coast Redwood, is the tallest tree in, the world) -> The Coast Redwood (2574ms)\nWhat is the tallest statue in the world?\tthe Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the Tower, was the tallest man-made structure in, the world) -> the Tower (2573ms)\nWhat is the tallest statue in the world?\tRedwood trees\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Redwood trees, are the tallest trees in, the world) -> Redwood trees (2567ms)\nWhat is the tallest statue in the world?\tFrance travelers\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (France travelers, was the tallest structure in, the world) -> France travelers (2575ms)\nWhat is the tallest statue in the world?\ta short time\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (a short time, was the tallest in, the world) -> a short time (2569ms)\nWhat is the tallest statue in the world?\tthe monument\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the monument, was the tallest structure in, the world) -> the monument (2574ms)\nWhat is the tallest statue in the world?\tthe mountain\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the mountain, was the tallest in, the world) -> the mountain (2562ms)\nWhat is the tallest statue in the world?\tthe Olympic Stadium\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the Olympic Stadium, is the tallest inclined tower in, the world) -> the Olympic Stadium (2574ms)\nWhat is the tallest statue in the world?\tRedwoods\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Redwoods, are the tallest trees in, the world) -> Redwoods (2570ms)\nWhat is the tallest statue in the world?\tthe redwoods\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (the redwoods, are the tallest trees in, the world) -> the redwoods (2569ms)\nWhat is the tallest statue in the world?\t101 metres\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (101 metres, was the tallest in, the world) -> 101 metres (2575ms)\nWhat is the tallest statue in the world?\tthe main square\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the main square, were once the tallest structures in, the world) -> the main square (2574ms)\nWhat is the tallest statue in the world?\tThe CN Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (The CN Tower, is the tallest tower in, the world) -> The CN Tower (2575ms)\nWhat is the tallest statue in the world?\tThe Great Pyramid\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (The Great Pyramid, was the tallest structure in, the world) -> The Great Pyramid (2572ms)\nWhat is the tallest statue in the world?\tWorld One\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (World One, will be the tallest residential tower in, the world) -> World One (2557ms)\nWhat is the tallest statue in the world?\tShanghai\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be third tallest building in, world) -> (Shanghai, is the third tallest building in, the world) -> Shanghai (2560ms)\nWhat is the tallest statue in the world?\tThe tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (The tower, will be the second tallest tower in, the world) -> The tower (2569ms)\nWhat is the tallest statue in the world?\tThe obelisk\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (The obelisk, was the tallest man-made structure in, the world) -> The obelisk (2565ms)\nWhat is the tallest statue in the world?\t450 feet\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (450 feet, is the tallest in, the world) -> 450 feet (2557ms)\nWhat is the tallest statue in the world?\tBamboo\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Bamboo, is the tallest grass in, the World) -> Bamboo (2573ms)\nWhat is the tallest statue in the world?\tEssentials\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Essentials, are the tallest in, the world) -> Essentials (2562ms)\nWhat is the tallest statue in the world?\tthe Petrona towers\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Petrona towers, were the tallest in, the world) -> the Petrona towers (2573ms)\nWhat is the tallest statue in the world?\t4,000-ft sea cliffs\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (4,000-ft sea cliffs, are the tallest in, the world) -> 4,000-ft sea cliffs (2562ms)\nWhat is the tallest statue in the world?\tGilgit-Bultistan\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest of, world) -> (Gilgit-Bultistan, is the 11th tallest mountain of, the world) -> Gilgit-Bultistan (2560ms)\nWhat is the tallest statue in the world?\tNYC\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (NYC, was once the tallest skyscraper in, the world) -> NYC (2575ms)\nWhat is the tallest statue in the world?\t4 Responses\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (4 Responses, is the tallest skyscraper in, the world) -> 4 Responses (2567ms)\nWhat is the tallest statue in the world?\tThe 210-meter minaret\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The 210-meter minaret, is the tallest in, the world) -> The 210-meter minaret (2573ms)\nWhat is the tallest statue in the world?\tWillis Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be third tallest building in, world) -> (Willis Tower, is the third tallest building in, the world) -> Willis Tower (2557ms)\nWhat is the tallest statue in the world?\tthe blue-gum ,\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (the blue-gum ,, is the tallest man-planted tree in, the world) -> the blue-gum , (2574ms)\nWhat is the tallest statue in the world?\tThe skyscraper\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (The skyscraper, will be the tallest skyscraper in, the world) -> The skyscraper (2562ms)\nWhat is the tallest statue in the world?\t?If Germans\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (?If Germans, were the tallest people in, the world) -> ?If Germans (2567ms)\nWhat is the tallest statue in the world?\tMuir Woods\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Muir Woods, are the tallest trees in, the world) -> Muir Woods (2573ms)\nWhat is the tallest statue in the world?\tThe Tokyo Sky Tree\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (The Tokyo Sky Tree, is currently the tallest tower in, the world) -> The Tokyo Sky Tree (2565ms)\nWhat is the tallest statue in the world?\tThe Irish Wolfhound\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The Irish Wolfhound, is the tallest dog in, the world) -> The Irish Wolfhound (2562ms)\nWhat is the tallest statue in the world?\tthe Space Needle\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the Space Needle, once was the tallest tower in, the world) -> the Space Needle (2569ms)\nWhat is the tallest statue in the world?\t212 feet\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (212 feet, is the tallest ancient structure in, the New World) -> 212 feet (2572ms)\nWhat is the tallest statue in the world?\t2008\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (2008, will be the tallest skyscraper in, the world) -> 2008 (2575ms)\nWhat is the tallest statue in the world?\tThe 553-m control tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The 553-m control tower, is the tallest in, the world) -> The 553-m control tower (2567ms)\nWhat is the tallest statue in the world?\tThe minaret\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The minaret, is the tallest in, the world) -> The minaret (2572ms)\nWhat is the tallest statue in the world?\tThe coastal redwood\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (The coastal redwood, is the tallest tree species in, the world) -> The coastal redwood (2570ms)\nWhat is the tallest statue in the world?\tThe towers\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The towers, were the tallest in, the world) -> The towers (2562ms)\nWhat is the tallest statue in the world?\tThe monument rising\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The monument rising, is tallest monument in, the world) -> The monument rising (2572ms)\nWhat is the tallest statue in the world?\tThe new one\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (The new one, will be the tallest tower in, the world) -> The new one (2567ms)\nWhat is the tallest statue in the world?\tThe lighthouse\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (The lighthouse, was the tallest structure in, the ancient world) -> The lighthouse (2554ms)\nWhat is the tallest statue in the world?\tThe Ferris wheel\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The Ferris wheel, is the tallest in, the world) -> The Ferris wheel (2567ms)\nWhat is the tallest statue in the world?\tMerdeka Square\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Merdeka Square, is the tallest in, the world) -> Merdeka Square (2567ms)\nWhat is the tallest statue in the world?\tMilad Tower\t0.333333333331\tWhat is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Milad Tower, is the fiveth tallest tower in, the world) -> Milad Tower (2567ms)\nWhat is a stratocaster?\tThe Facelift\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Facelift, has been developed to fit, Stratocaster ?) -> The Facelift (1229ms)\nWhat is a stratocaster?\tquite small\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (quite small, is carved with, a Stratocaster) -> quite small (1469ms)\nWhat is a stratocaster?\tthe exact same tools\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the exact same tools, can be used to talk about, Stratocasters) -> the exact same tools (1606ms)\nWhat is a stratocaster?\tThe Violater\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Violater, is, an incredibly built Stratocaster) -> The Violater (1808ms)\nWhat is a stratocaster?\tThe internet\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The internet, is, the new Stratocaster) -> The internet (1808ms)\nWhat is a stratocaster?\theadstock\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (headstock, are made from, genuine Stratocaster wooden blanks) -> headstock (1606ms)\nWhat is a stratocaster?\tthe Day One day\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the Day One day, there was, this Fender Stratocaster) -> the Day One day (1622ms)\nWhat is a stratocaster?\tFender\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Fender, is introducing, a Blacktop Stratocaster HSH) -> Fender (1564ms)\nWhat is a stratocaster?\tGuitar\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Guitar, is, a Fender Stratocaster) -> Guitar (1564ms)\nWhat is a stratocaster?\tThe Jimi Hendrix Gibson\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Jimi Hendrix Gibson, Will be, a Stratocaster) -> The Jimi Hendrix Gibson (1469ms)\nWhat is a stratocaster?\tDAN PATLANSKY\t-0.0\tWhat is a stratocaster? -> $x: ($x, do, stratocaster) -> (DAN PATLANSKY, can do with, a six-string Fender Stratocaster) -> DAN PATLANSKY (955ms)\nWhat is a stratocaster?\telectric guitar\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (electric guitar, is, the ubiquitous Fender Stratocaster) -> electric guitar (1521ms)\nWhat is a stratocaster?\tthe most popular guitars\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the most popular guitars, are, the Fender Stratocaster) -> the most popular guitars (1808ms)\nWhat is a stratocaster?\tThe award\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The award, is, an engraved Fender Stratocaster) -> The award (1521ms)\nWhat is a stratocaster?\tan outfit\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (an outfit, is tuning up, his stratocaster) -> an outfit (1564ms)\nWhat is a stratocaster?\tthe end\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the end, is on, a Stratocaster) -> the end (1230ms)\nWhat is a stratocaster?\tthe first Van Halen record\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the first Van Halen record, was, a 1959 Fender Stratocaster) -> the first Van Halen record (1622ms)\nWhat is a stratocaster?\tThe most common guitars\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The most common guitars, are, the Fender Stratocaster coil) -> The most common guitars (1521ms)\nWhat is a stratocaster?\tThe bobbin\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The bobbin, is quite large compared to, Stratocasters) -> The bobbin (1469ms)\nWhat is a stratocaster?\tLeo Fender\t-0.0\tWhat is a stratocaster? -> $x: ($x, create, stratocaster) -> (Leo Fender, create, the Stratocaster) -> Leo Fender (955ms)\nWhat is a stratocaster?\t?One day\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (?One day, there was, this Fender Stratocaster) -> ?One day (1564ms)\nWhat is a stratocaster?\tBarcus-Berry\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Barcus-Berry, is like, the Fender Stratocaster) -> Barcus-Berry (1546ms)\nWhat is a stratocaster?\tthe same 21-fret neck\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the same 21-fret neck, was used by, Fender Stratocaster models) -> the same 21-fret neck (1622ms)\nWhat is a stratocaster?\tJimi Hendrix\t-0.0\tWhat is a stratocaster? -> $x: ($x, do, stratocaster) -> (Jimi Hendrix, used to do this with, his Fender Stratocasters) -> Jimi Hendrix (955ms)\nWhat is a stratocaster?\tDisciple KR\t-0.0\tWhat is a stratocaster? -> $x: ($x, in, stratocaster) -> (Disciple KR, sent in, this righteous Fender Stratocaster) -> Disciple KR (871ms)\nWhat is a stratocaster?\trel=shortlink\t-0.0\tWhat is a stratocaster? -> $x: ($x, do, stratocaster) -> (rel=shortlink, can do with, a six-string Fender Stratocaster) -> rel=shortlink (955ms)\nWhat is a stratocaster?\tguitar pack\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (guitar pack, is ranging from, classic Fender Stratocaster) -> guitar pack (1546ms)\nWhat is a stratocaster?\tFeatured artist\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Featured artist, is, = StratocasterUK) -> Featured artist (1230ms)\nWhat is a stratocaster?\tthe guitar player\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the guitar player, was playing, a Fender Stratocaster) -> the guitar player (1521ms)\nWhat is a stratocaster?\tDweezil\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Dweezil, is holding, a burned Stratocaster) -> Dweezil (1808ms)\nWhat is a stratocaster?\tThe first two guitar solos\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The first two guitar solos, were played on, a Stratocaster) -> The first two guitar solos (1564ms)\nWhat is a stratocaster?\tSlowhand\t-0.0\tWhat is a stratocaster? -> $x: ($x, in, stratocaster) -> (Slowhand, plugs in, his Stratocaster) -> Slowhand (871ms)\nWhat is a stratocaster?\tthe company\t-0.0\tWhat is a stratocaster? -> $x: ($x, create, stratocaster) -> (the company, created, the Telecaster and Stratocaster guitars) -> the company (955ms)\nWhat is a stratocaster?\tevery other electric guitar\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (every other electric guitar, is a footnote to, the Stratocaster) -> every other electric guitar (1546ms)\nWhat is a stratocaster?\tthe rhythm guitars\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the rhythm guitars, were mostly played on, Stratocasters) -> the rhythm guitars (1230ms)\nWhat is a stratocaster?\tthe popularity list\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the popularity list, is, the Fender Stratocaster) -> the popularity list (1564ms)\nWhat is a stratocaster?\tthe late '60s\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the late '60s, were playing, Stratocasters) -> the late '60s (1230ms)\nWhat is a stratocaster?\tthe Number One guitar\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the Number One guitar, was, his most famous Stratocaster) -> the Number One guitar (1521ms)\nWhat is a stratocaster?\t22 frets\t-0.0\tWhat is a stratocaster? -> $x: ($x, in, stratocaster) -> (22 frets, included in, the Stratocaster) -> 22 frets (871ms)\nWhat is a stratocaster?\tFreddie Tavares\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Freddie Tavares, has been manufactured since, The Stratocaster) -> Freddie Tavares (1564ms)\nWhat is a stratocaster?\tThe black guitar\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The black guitar, is definitely, a Fender Stratocaster) -> The black guitar (1521ms)\nWhat is a stratocaster?\tthe top five\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the top five, is, the 1996 Fender Stratocaster) -> the top five (1521ms)\nWhat is a stratocaster?\tDimensions\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Dimensions, Are For, A Fender Stratocaster Guitar) -> Dimensions (1622ms)\nWhat is a stratocaster?\tthe day Bob Dylan\t-0.0\tWhat is a stratocaster? -> $x: ($x, in, stratocaster) -> (the day Bob Dylan, plugged in, his Stratocaster) -> the day Bob Dylan (871ms)\nWhat is a stratocaster?\tthe auction\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the auction, was, a 1957 Fender Stratocaster) -> the auction (1469ms)\nWhat is a stratocaster?\tmass produced and famous\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (mass produced and famous, was, the Fender Stratocaster) -> mass produced and famous (1606ms)\nWhat is a stratocaster?\tthe game\t-0.0\tWhat is a stratocaster? -> $x: ($x, do, stratocaster) -> (the game, does, the Fender Stratocaster) -> the game (955ms)\nWhat is a stratocaster?\tThe pinball machine\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The pinball machine, was, a Fender Stratocaster guitar) -> The pinball machine (1469ms)\nWhat is a stratocaster?\tthe electric guitars\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the electric guitars, is, the Fender Stratocaster) -> the electric guitars (1808ms)\nWhat is a stratocaster?\tthe instrument\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the instrument, is either, a Fender Stratocaster) -> the instrument (1564ms)\nWhat is a stratocaster?\tthe track\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the track, was, a 1972 Fender Stratocaster) -> the track (1546ms)\nWhat is a stratocaster?\tThe guitar\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The guitar, was based on, Fender Stratocaster) -> The guitar (1622ms)\nWhat is a stratocaster?\tSquier Deluxe Hot Rails Stratocaster\t-0.0\tWhat is a stratocaster? -> $x: ($x, found, stratocaster) -> (Squier Deluxe Hot Rails Stratocaster, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Squier%20Deluxe%20Hot%20Rails%20Stratocaster) -> Squier Deluxe Hot Rails Stratocaster (1230ms)\nWhat is a stratocaster?\tStevie Ray\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Stevie Ray, was well-known for playing, Stratocasters) -> Stevie Ray (1622ms)\nWhat is a stratocaster?\tred strat\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (red strat, is, my 1959 Stratocaster) -> red strat (1807ms)\nWhat is a stratocaster?\tThe Musket\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Musket, was tested on, two different Stratocasters) -> The Musket (1622ms)\nWhat is a stratocaster?\texample\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (example, is based on, the Fender Stratocaster) -> example (1606ms)\nWhat is a stratocaster?\tthe word\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the word, was, ?Stratocaster ! ?) -> the word (1606ms)\nWhat is a stratocaster?\tThe Broadcaster\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Broadcaster, was renamed, the Stratocaster) -> The Broadcaster (1808ms)\nWhat is a stratocaster?\tthe most widely known guitar\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the most widely known guitar, would be, the Fender Stratocaster) -> the most widely known guitar (1469ms)\nWhat is a stratocaster?\tdate\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (date, is, the Fender Stratocaster) -> date (1546ms)\nWhat is a stratocaster?\tDick Dale\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Dick Dale, is, a prominent Stratocaster player) -> Dick Dale (1606ms)\nWhat is a stratocaster?\tIke Willis\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Ike Willis, is putting, his Fender Stratocaster) -> Ike Willis (1230ms)\nWhat is a stratocaster?\tchoice\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (choice, has been, a Fender Stratocaster) -> choice (1546ms)\nWhat is a stratocaster?\tThe Fantasy\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Fantasy, is a near perfect combination of, Stratocaster) -> The Fantasy (1622ms)\nWhat is a stratocaster?\tHolly\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Holly, is reputed to be, the first Stratocaster) -> Holly (1606ms)\nWhat is a stratocaster?\tThe pedal\t-0.0\tWhat is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The pedal, was tested on, two different Stratocaster setups) -> The pedal (1546ms)\nWhat is a stratocaster?\tbeginners\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (the Squier Stratocaster, is a great guitar for, beginners) -> beginners (1898ms)\nWhat is a stratocaster?\tgreatness\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (the Stratocaster, was poised for, greatness) -> greatness (1898ms)\nWhat is a stratocaster?\tsale\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (collectible Stratocaster, is for, sale) -> sale (1898ms)\nWhat is a stratocaster?\tthe money\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (the Squier Stratocaster, is great value for, the money) -> the money (1898ms)\nWhat is a stratocaster?\ta Woman\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (Stratocaster68 Stratocaster68, is a guy looking for, a Woman) -> a Woman (1909ms)\nWhat is a stratocaster?\ta jazz guitarist\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (a Stratocaster, seems to be unusual for, a jazz guitarist) -> a jazz guitarist (1898ms)\nWhat is a stratocaster?\tthe Private collection\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (Model Fender Stratocaster, was made for, the Private collection) -> the Private collection (1898ms)\nWhat is a stratocaster?\traffle participants\t-0.111111111111\tWhat is a stratocaster? -> $x: ($x, can, stratocaster) -> (raffle participants, can win, a Fender Stratocaster) -> raffle participants (1898ms)\nWhat is a stratocaster?\tthe most money\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> ('s Fender Stratocaster, was sold for, the most money) -> the most money (1898ms)\nWhat is a stratocaster?\tthe crafty girl\t-0.111111111111\tWhat is a stratocaster? -> $x: ($x, can, stratocaster) -> (the crafty girl, can knit, a stratocaster) -> the crafty girl (1898ms)\nWhat is a stratocaster?\tthe dashboard lights\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, do, $x) -> (the Stratocaster, works as do, the dashboard lights) -> the dashboard lights (1898ms)\nWhat is a stratocaster?\tguitarists\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (The Fender American Deluxe Stratocaster HSS, is for, guitarists) -> guitarists (1898ms)\nWhat is a stratocaster?\tRitchie Blackmore\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, do, $x) -> (a Stratocaster, did, Ritchie Blackmore) -> Ritchie Blackmore (1808ms)\nWhat is a stratocaster?\ta record $ 497,500\t-0.111111111111\tWhat is a stratocaster? -> $x: (stratocaster, be for, $x) -> (His 1956 Fender Stratocaster, was sold for, a record $ 497,500) -> a record $ 497,500 (1898ms)\nWhat is a stratocaster?\tthe pickguards\t-0.222222222222\tWhat is a stratocaster? -> $x: ($x, contain, stratocaster) -> (the pickguards, contained on, the traditional stratocaster) -> the pickguards (1909ms)\nWhat is a stratocaster?\tthe body\t-0.222222222223\tWhat is a stratocaster? -> $x: ($x, be to, stratocaster) -> (the body, tends to be heavy than even, a USA Stratocaster) -> the body (1909ms)\nWhat is a stratocaster?\tYoshihiko Satoh\t-0.222222222223\tWhat is a stratocaster? -> $x: ($x, consist of, stratocaster) -> (Yoshihiko Satoh, consists of, 12 stratocaster necks) -> Yoshihiko Satoh (1909ms)\nWhat is a stratocaster?\tthe transition\t-0.222222222223\tWhat is a stratocaster? -> $x: (stratocaster, be about, $x) -> (Stratocaster history, is about, the transition) -> the transition (1909ms)\nWhat is a stratocaster?\tlegends\t-0.222222222223\tWhat is a stratocaster? -> $x: ($x, be to, stratocaster) -> (legends, could easily be compared to, the Fender Stratocaster) -> legends (1909ms)\nWhat is a stratocaster?\tappearance\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster, is quite similar in, appearance) -> appearance (1912ms)\nWhat is a stratocaster?\tthe U.S.\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Robert Cray Custom Shop Stratocaster, is made in, the U.S.) -> the U.S. (1913ms)\nWhat is a stratocaster?\tAuthorities Concept Scheme\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (1912ms)\nWhat is a stratocaster?\tThe new American Standard\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, leave, stratocaster) -> (The new American Standard, left-handed, Stratocaster guitars) -> The new American Standard (1913ms)\nWhat is a stratocaster?\t2002\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (these Stratocasters, was added in, 2002) -> 2002 (1915ms)\nWhat is a stratocaster?\t2007\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Limited Edition John Mayer Stratocaster, appeared in, 2007) -> 2007 (1913ms)\nWhat is a stratocaster?\tthe making\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (no innocent Stratocasters, were injured in, the making) -> the making (1911ms)\nWhat is a stratocaster?\tlove\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> ('70s Replica American Stratocaster, fell in, love) -> love (1914ms)\nWhat is a stratocaster?\tworn Lake Placid Blue\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a 2009 Fender Stratocaster, finished in, worn Lake Placid Blue) -> worn Lake Placid Blue (1915ms)\nWhat is a stratocaster?\tMarch 2012\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the VG Stratocaster G-5, will be available in, March 2012) -> March 2012 (1915ms)\nWhat is a stratocaster?\t1988\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Eric Clapton Stratocaster, was launched only in, 1988) -> 1988 (1914ms)\nWhat is a stratocaster?\tretail stores\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a blonde ?50s Mary Kaye Stratocaster, arrived in, retail stores) -> retail stores (1913ms)\nWhat is a stratocaster?\tblack\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster, painted in, black) -> black (1912ms)\nWhat is a stratocaster?\tJanuary 1994\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Fender Stratocaster Guitar, went out in, January 1994) -> January 1994 (1911ms)\nWhat is a stratocaster?\t2004\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (?54 Anniversary Custom Fender Stratocaster, was built in, 2004) -> 2004 (1913ms)\nWhat is a stratocaster?\tyesterday\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, get, stratocaster) -> (yesterday, got, a low-end ultra-budget Squier Stratocaster) -> yesterday (1913ms)\nWhat is a stratocaster?\t1954\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Fender Stratocaster, was released in, 1954) -> 1954 (1915ms)\nWhat is a stratocaster?\tspring 1954\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Stratocaster, was first introduced in, spring 1954) -> spring 1954 (1911ms)\nWhat is a stratocaster?\tAmerican Standard\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, leave, stratocaster) -> (American Standard, Left, Handed Stratocaster Electric Guitar) -> American Standard (1913ms)\nWhat is a stratocaster?\tdesign\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Stratocaster, is indeed versatile yet so simple in, design) -> design (1914ms)\nWhat is a stratocaster?\ta classic sunburst finish\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The VG Stratocaster, is available in, a classic sunburst finish) -> a classic sunburst finish (1912ms)\nWhat is a stratocaster?\tcollaboration\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Stratocaster, was largely developed in, collaboration) -> collaboration (1913ms)\nWhat is a stratocaster?\tthe raffle\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a Fender Squire Stratocaster guitar, was won in, the raffle) -> the raffle (1912ms)\nWhat is a stratocaster?\ta Roland GK\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The GK-Ready Stratocaster GC-1, builds in, a Roland GK) -> a Roland GK (1911ms)\nWhat is a stratocaster?\t7 pounds\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (an authentic Fender Stratocaster, weighs in at about, 7 pounds) -> 7 pounds (1915ms)\nWhat is a stratocaster?\thonor\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (This Stratocaster, was made in, honor) -> honor (1914ms)\nWhat is a stratocaster?\tGuitar Hero\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, get, stratocaster) -> (Guitar Hero, got his hands on, a real Stratocaster?and) -> Guitar Hero (1914ms)\nWhat is a stratocaster?\tJapan serial # E774974\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a Fender Stratocaster, made in, Japan serial # E774974) -> Japan serial # E774974 (1914ms)\nWhat is a stratocaster?\tproduction\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Stratocaster, has been in, production) -> production (1915ms)\nWhat is a stratocaster?\t1990\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Fender Stratocaster, Inducted in, 1990) -> 1990 (1913ms)\nWhat is a stratocaster?\t1956\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a Fender Stratocaster, made in, 1956) -> 1956 (1914ms)\nWhat is a stratocaster?\ta local pawnshop\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a used Stratocaster, had caught his eye in, a local pawnshop) -> a local pawnshop (1913ms)\nWhat is a stratocaster?\tthe world cant\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, get, stratocaster) -> (the world cant, get enough of, the Fender Stratocaster) -> the world cant (1914ms)\nWhat is a stratocaster?\tTopical Terms Concept Scheme\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (1911ms)\nWhat is a stratocaster?\tthe middle\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Squier Stratocaster, sits right in, the middle) -> the middle (1915ms)\nWhat is a stratocaster?\tKorea brand new strings\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Fender Stratocaster, made in, Korea brand new strings) -> Korea brand new strings (1914ms)\nWhat is a stratocaster?\t1974\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster* type guitars, was originally developed in, 1974) -> 1974 (1915ms)\nWhat is a stratocaster?\tJuly\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Monterey and Tribute Stratocasters, occurred in, July) -> July (1915ms)\nWhat is a stratocaster?\tMexico\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a Red Fender Stratocaster, was made in, Mexico) -> Mexico (1913ms)\nWhat is a stratocaster?\tthe late 1960s\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Fender Stratocaster models, manufactured in, the late 1960s) -> the late 1960s (1915ms)\nWhat is a stratocaster?\tpartnership\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Jim Root Stratocaster, is designed in, partnership) -> partnership (1913ms)\nWhat is a stratocaster?\tDot Position Inlays\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, get, stratocaster) -> (Dot Position Inlays, Get, Your Squire Standard Stratocaster) -> Dot Position Inlays (1912ms)\nWhat is a stratocaster?\tthe 80s\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the original 12-string Stratocaster model, released in, the 80s) -> the 80s (1912ms)\nWhat is a stratocaster?\ta range\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (This silver Stratocaster ring, is available in, a range) -> a range (1915ms)\nWhat is a stratocaster?\tearly 1980\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (This stratocaster model, was maybe made in, early 1980) -> early 1980 (1913ms)\nWhat is a stratocaster?\tMoscow\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (one Fender Stratocaster, was known to exist in, Moscow) -> Moscow (1913ms)\nWhat is a stratocaster?\tNotice\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, get, stratocaster) -> (Notice, Get, Your Fender Jeff Beck Stratocaster Today) -> Notice (1914ms)\nWhat is a stratocaster?\tDuPont Duco colors\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster guitars, are available in, DuPont Duco colors) -> DuPont Duco colors (1912ms)\nWhat is a stratocaster?\tCase\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, get, stratocaster) -> (Case, Get, Your Fender American Deluxe Stratocaster) -> Case (1911ms)\nWhat is a stratocaster?\tAmerican Vintage 62\t-0.444444444444\tWhat is a stratocaster? -> $x: ($x, leave, stratocaster) -> (American Vintage 62, Left, Handed Stratocaster Electric Guitar) -> American Vintage 62 (1912ms)\nWhat is a stratocaster?\t1962\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (An amazing Pre-L Stratocaster, built in, 1962) -> 1962 (1914ms)\nWhat is a stratocaster?\tthe 1960s\t-0.444444444444\tWhat is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Stratocaster, really came in, the 1960s) -> the 1960s (1913ms)\nWhat is the richest country in the world?\tBarbados\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Barbados, is the 51st richest country in, the world) -> Barbados (958ms)\nWhat is the richest country in the world?\tthe Vatican\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the Vatican, is probably the richest country in, the world) -> the Vatican (958ms)\nWhat is the richest country in the world?\tArgentina\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Argentina, was the richest country in, the world) -> Argentina (1348ms)\nWhat is the richest country in the world?\tGreat Britain\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Great Britain, was the richest country in, the world) -> Great Britain (1338ms)\nWhat is the richest country in the world?\tThe U.S.\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The U.S., is the richest country in, the world) -> The U.S. (1135ms)\nWhat is the richest country in the world?\tthe USA\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the USA, is the richest country in, the world) -> the USA (1153ms)\nWhat is the richest country in the world?\t2000 Ireland\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (2000 Ireland, was the sixth-richest country in, the world) -> 2000 Ireland (1296ms)\nWhat is the richest country in the world?\tThe Scandinavians\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The Scandinavians, are the richest countries in, the world) -> The Scandinavians (818ms)\nWhat is the richest country in the world?\tthe U.S.\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the U.S., is the richest country in, the world) -> the U.S. (1258ms)\nWhat is the richest country in the world?\tCanada\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Canada, is the richest country in, the world) -> Canada (1258ms)\nWhat is the richest country in the world?\tQatar\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Qatar, is the richest country in, the world) -> Qatar (1338ms)\nWhat is the richest country in the world?\tEngland\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (England, was already the richest country in, the world) -> England (1180ms)\nWhat is the richest country in the world?\tKazakhstan\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Kazakhstan, is the second richest country in, the world) -> Kazakhstan (1348ms)\nWhat is the richest country in the world?\tup all\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (up all, probably is the richest country in, the world) -> up all (1045ms)\nWhat is the richest country in the world?\tEconomy Austria\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Economy Austria, is the 12th richest country in, the world) -> Economy Austria (1045ms)\nWhat is the richest country in the world?\tthe question\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the question, is the richest country in, the world) -> the question (1135ms)\nWhat is the richest country in the world?\tKuwait\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Kuwait, is the eleventh richest country in, the world) -> Kuwait (1338ms)\nWhat is the richest country in the world?\tthe United States\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the United States, is still the richest country in, the world) -> the United States (1180ms)\nWhat is the richest country in the world?\tEverQuest\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (EverQuest, is the 77th richest country in, the world) -> EverQuest (1135ms)\nWhat is the richest country in the world?\tthe Soviet Union\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the Soviet Union, is the richest country in, the world) -> the Soviet Union (1180ms)\nWhat is the richest country in the world?\tAustria\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Austria, is the 12th richest country in, the world) -> Austria (1338ms)\nWhat is the richest country in the world?\tThe Dutch Republic\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The Dutch Republic, was the richest country in, the World) -> The Dutch Republic (884ms)\nWhat is the richest country in the world?\t2005 america\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (2005 america, is the richest country in, the world) -> 2005 america (1348ms)\nWhat is the richest country in the world?\tWe?ve\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (We?ve, been the richest country in, the world) -> We?ve (1019ms)\nWhat is the richest country in the world?\tRussia\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Russia, was the richest country in, the world) -> Russia (1259ms)\nWhat is the richest country in the world?\tNew Zealand\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (New Zealand, was the second richest country in, the world) -> New Zealand (1180ms)\nWhat is the richest country in the world?\tSingapore\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Singapore, is the third richest country in, the world) -> Singapore (1180ms)\nWhat is the richest country in the world?\tthe nation\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the nation, was the richest country in, the world) -> the nation (1297ms)\nWhat is the richest country in the world?\tThe United States\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The United States, is probably the richest country in, the world) -> The United States (1338ms)\nWhat is the richest country in the world?\tBritain\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Britain, was the richest country in, the world) -> Britain (1338ms)\nWhat is the richest country in the world?\tBrazil\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Brazil, is probably the richest country in, the world) -> Brazil (958ms)\nWhat is the richest country in the world?\tChina\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (China, is the second richest country in, the world) -> China (1297ms)\nWhat is the richest country in the world?\tamerca\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (amerca, is the richest country in, the world) -> amerca (1348ms)\nWhat is the richest country in the world?\tAmerica\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (America, is the richest country in, the world but people) -> America (1338ms)\nWhat is the richest country in the world?\tAustralia\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Australia, is the richest country in, the world) -> Australia (1259ms)\nWhat is the richest country in the world?\tLuxembourg\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Luxembourg, was the richest country in, the world) -> Luxembourg (1259ms)\nWhat is the richest country in the world?\tCongo\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Congo, is the richest country in, the world) -> Congo (1338ms)\nWhat is the richest country in the world?\tBermuda\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Bermuda, is the richest country in, the world) -> Bermuda (1297ms)\nWhat is the richest country in the world?\tThe UAE\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The UAE, is the second richest country in, the world) -> The UAE (958ms)\nWhat is the richest country in the world?\tThe Vatican\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The Vatican, is the richest country in, the world) -> The Vatican (1153ms)\nWhat is the richest country in the world?\tNepal\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Nepal, is a second richest country in, the world) -> Nepal (1296ms)\nWhat is the richest country in the world?\tthe UK\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the UK, is the fifth richest country in, the world) -> the UK (1348ms)\nWhat is the richest country in the world?\tThe USA\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The USA, IS the richest country in, the world) -> The USA (1180ms)\nWhat is the richest country in the world?\tlux\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (lux, is the richest country in, the world) -> lux (1297ms)\nWhat is the richest country in the world?\tNorway\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Norway, is the third richest country in, the world) -> Norway (1348ms)\nWhat is the richest country in the world?\tthe 20th century America\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the 20th century America, was the richest country in, the world) -> the 20th century America (1338ms)\nWhat is the richest country in the world?\tU.A.E\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (U.A.E, is richest country in, the world) -> U.A.E (819ms)\nWhat is the richest country in the world?\tHaiti\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Haiti, was the richest country in, the world) -> Haiti (1019ms)\nWhat is the richest country in the world?\tIndia\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (India, is the richest country in, the world) -> India (1348ms)\nWhat is the richest country in the world?\tJapan\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Japan, is the third richest country in, the world) -> Japan (1135ms)\nWhat is the richest country in the world?\tthe US today\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the US today, is the richest country in, the world) -> the US today (958ms)\nWhat is the richest country in the world?\tScotland\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Scotland, would be the sixth richest country in, the world) -> Scotland (1153ms)\nWhat is the richest country in the world?\tAmercia\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Amercia, is the richest country in, the world) -> Amercia (1338ms)\nWhat is the richest country in the world?\tIceland\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Iceland, is the 5th richest country in, the world) -> Iceland (1019ms)\nWhat is the richest country in the world?\tBritain today\t2.777777777765\tWhat is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Britain today, may be the fourth richest country in, the world) -> Britain today (1019ms)\nWhat is the richest country in the world?\tBaghdad\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Baghdad, was the richest city in, the world) -> Baghdad (1348ms)\nWhat is the richest country in the world?\tthe city\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (the city, is the 10th richest city in, the world) -> the city (1349ms)\nWhat is the richest country in the world?\tAbu Dhabi\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Abu Dhabi, is the richest city in, the world) -> Abu Dhabi (1349ms)\nWhat is the richest country in the world?\tLondon\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (London, is the sixth richest city in, the world) -> London (1349ms)\nWhat is the richest country in the world?\tNew York city\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (New York city, is the richest city in, the world) -> New York city (1348ms)\nWhat is the richest country in the world?\tMelbourne\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Melbourne, was the richest city in, the world) -> Melbourne (1349ms)\nWhat is the richest country in the world?\tSao Paulo\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Sao Paulo, is the 10th richest city in, the world) -> Sao Paulo (1349ms)\nWhat is the richest country in the world?\tTimbuktu\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Timbuktu, was the richest city in, the world) -> Timbuktu (1348ms)\nWhat is the richest country in the world?\tS?o Paulo\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (S?o Paulo, is the 19th richest city in, the world) -> S?o Paulo (1348ms)\nWhat is the richest country in the world?\tSao Paulo Brazil\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Sao Paulo Brazil, is the 19th richest city in, the world) -> Sao Paulo Brazil (1348ms)\nWhat is the richest country in the world?\tPhiladelphia\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Philadelphia, was the richest city in, the world) -> Philadelphia (1348ms)\nWhat is the richest country in the world?\tTHE BUZZ Abu Dhabi\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (THE BUZZ Abu Dhabi, is the richest city in, the world) -> THE BUZZ Abu Dhabi (1349ms)\nWhat is the richest country in the world?\tAmsterdam\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Amsterdam, was the richest city in, world) -> Amsterdam (1349ms)\nWhat is the richest country in the world?\tEconomy S?o Paulo\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Economy S?o Paulo, is the 10th richest city in, the world) -> Economy S?o Paulo (1349ms)\nWhat is the richest country in the world?\tBabylon\t2.444444444435\tWhat is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Babylon, was the richest city in, the ancient world) -> Babylon (1349ms)\nWhat is the richest country in the world?\t1750\t2.333333333321\tWhat is the richest country in the world? -> $x: ($x, be richest part of, world) -> (1750, was the richest part of, the world) -> 1750 (1349ms)\nWhat is the richest country in the world?\tEnlarge Today East Asia\t2.333333333321\tWhat is the richest country in the world? -> $x: ($x, be richest part of, world) -> (Enlarge Today East Asia, is the richest part of, the world) -> Enlarge Today East Asia (1350ms)\nWhat is the richest country in the world?\t?The tropics\t2.333333333321\tWhat is the richest country in the world? -> $x: ($x, be richest part of, world) -> (?The tropics, are the richest part of, the world) -> ?The tropics (1349ms)\nWhat is the richest country in the world?\tPer?\t2.333333333321\tWhat is the richest country in the world? -> $x: ($x, be richest part of, world) -> (Per?, was the richest part of, the world) -> Per? (1349ms)\nWhat is the richest country in the world?\tChester\t0.666666666659\tWhat is the richest country in the world? -> $x: ($x, be richest city in, britain) -> (Chester, is arguably the richest city in, Britain) -> Chester (1350ms)\nWho is Anubis?\ta roundhouse kick\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did, a roundhouse kick) -> a roundhouse kick (955ms)\nWho is Anubis?\ta four claw combination attack\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did, a four claw combination attack) -> a four claw combination attack (1012ms)\nWho is Anubis?\tcuddles\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did get, cuddles) -> cuddles (955ms)\nWho is Anubis?\ta sketch\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did, a sketch) -> a sketch (955ms)\nWho is Anubis?\tHan Xian\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (? _lunar_anubis, did, Han Xian) -> Han Xian (955ms)\nWho is Anubis?\tOsiris/Andjety/Khentamenthes\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (Horus/Anubis/Wepwawet, does for, Osiris/Andjety/Khentamenthes) -> Osiris/Andjety/Khentamenthes (955ms)\nWho is Anubis?\tvarious moves\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did a bunch of, various moves) -> various moves (955ms)\nWho is Anubis?\tthe lines\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (* FireofAnubis, does, the lines) -> the lines (955ms)\nWho is Anubis?\tOsiris become king\t0.44444444444\tWho is Anubis? -> $x: (anubis, do, $x) -> (the god Anubis, did, Osiris become king) -> Osiris become king (955ms)\nWho is Anubis?\tHouse of Anubis\t-0.0\tWho is Anubis? -> $x: ($x, find, anubis) -> (House of Anubis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/House%20of%20Anubis) -> House of Anubis (1571ms)\nWho is Anubis?\tHet Huis Anubis\t-0.0\tWho is Anubis? -> $x: ($x, found, anubis) -> (Het Huis Anubis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Het%20Huis%20Anubis) -> Het Huis Anubis (3034ms)\nWho is Anubis?\tChristopher\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (Christopher, was a successor of, Anubis , Hermes and Hercules) -> Christopher (1343ms)\nWho is Anubis?\tfilho\t-0.0\tWho is Anubis? -> $x: ($x, do, anubis) -> (filho, do verdadeiro, Anubis com uma mortal) -> filho (3038ms)\nWho is Anubis?\tCornelis Johannes van Houten\t-0.0\tWho is Anubis? -> $x: ($x, discover, anubis) -> (Cornelis Johannes van Houten, Astronomical objects discovered, 1912 Anubis) -> Cornelis Johannes van Houten (3034ms)\nWho is Anubis?\tTom Gehrels\t-0.0\tWho is Anubis? -> $x: ($x, discover, anubis) -> (Tom Gehrels, Astronomical objects discovered, 1912 Anubis) -> Tom Gehrels (1012ms)\nWho is Anubis?\tHeckenheinrich\t-0.0\tWho is Anubis? -> $x: ($x, do, anubis) -> (Heckenheinrich, did, the Anubis guy) -> Heckenheinrich (1571ms)\nWho is Anubis?\t2005\t-0.0\tWho is Anubis? -> $x: ($x, form, anubis) -> (2005, formed, Anubis Associates) -> 2005 (3034ms)\nWho is Anubis?\tthe gravedigger\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (the gravedigger, is also somewhat of, an Anubis character) -> the gravedigger (1308ms)\nWho is Anubis?\tTi\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (Ti, was a result of, the God , Anubis ,) -> Ti (1205ms)\nWho is Anubis?\tThe statue\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (The statue, is of, Anubis) -> The statue (1205ms)\nWho is Anubis?\tLayla\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (Layla, is the daughter of, Anubis) -> Layla (1205ms)\nWho is Anubis?\tblack\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (black, was the color of, death and Anubis) -> black (1571ms)\nWho is Anubis?\tthe other XD\t-0.0\tWho is Anubis? -> $x: (anubis, be about, $x) -> (Anubis, was about to go to, the other XD) -> the other XD (3034ms)\nWho is Anubis?\tData Design Interactive\t-0.0\tWho is Anubis? -> $x: ($x, develop, anubis) -> (Data Design Interactive, Games Developed, Anubis II) -> Data Design Interactive (3034ms)\nWho is Anubis?\tYugi and Tea\t-0.0\tWho is Anubis? -> $x: ($x, find, anubis) -> (Yugi and Tea, find the tomb of, Anubis exhibit) -> Yugi and Tea (3034ms)\nWho is Anubis?\tDas Haus Anubis\t-0.0\tWho is Anubis? -> $x: ($x, find, anubis) -> (Das Haus Anubis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Das%20Haus%20Anubis) -> Das Haus Anubis (1571ms)\nWho is Anubis?\tthe king\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (the king, was a figure of, Anubis) -> the king (1342ms)\nWho is Anubis?\tTim Powers\t-0.0\tWho is Anubis? -> $x: ($x, do, anubis) -> (Tim Powers, were doing with, ?The Anubis Gate?) -> Tim Powers (3034ms)\nWho is Anubis?\tThe Anubis Gates\t-0.0\tWho is Anubis? -> $x: ($x, find, anubis) -> (The Anubis Gates, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Anubis%20Gates) -> The Anubis Gates (1571ms)\nWho is Anubis?\tthe North\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (the North, are the chapel of, Anubis) -> the North (3034ms)\nWho is Anubis?\tthe cat\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (the cat, is proud of, Anubis) -> the cat (1261ms)\nWho is Anubis?\tHans Bourlon\t-0.0\tWho is Anubis? -> $x: ($x, create, anubis) -> (Hans Bourlon, TV programs Created, House of Anubis) -> Hans Bourlon (1261ms)\nWho is Anubis?\tNightmare\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (Nightmare, is a form of, Anubis) -> Nightmare (1342ms)\nWho is Anubis?\tSeth\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (Seth, [is] mother of, Anubis) -> Seth (1205ms)\nWho is Anubis?\tPaulo S. L. M. Barreto\t-0.0\tWho is Anubis? -> $x: ($x, create, anubis) -> (Paulo S. L. M. Barreto, Ciphers created, Anubis) -> Paulo S. L. M. Barreto (3034ms)\nWho is Anubis?\tAnubis II\t-0.0\tWho is Anubis? -> $x: ($x, find, anubis) -> (Anubis II, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Anubis%20II) -> Anubis II (3038ms)\nWho is Anubis?\tMusical theatre\t-0.0\tWho is Anubis? -> $x: ($x, play, anubis) -> (Musical theatre, Plays In This Genre, Anubis Legende van het Spooktheater) -> Musical theatre (1075ms)\nWho is Anubis?\tThe bottom one\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (The bottom one, is of of, Anubis) -> The bottom one (1205ms)\nWho is Anubis?\teach body\t-0.0\tWho is Anubis? -> $x: ($x, find, anubis) -> (each body, is found a little statue of, Anubis) -> each body (3034ms)\nWho is Anubis?\tthe list\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (the list, is The House of, Anubis) -> the list (1308ms)\nWho is Anubis?\tdeviantART Details\t-0.0\tWho is Anubis? -> $x: ($x, here, anubis) -> (deviantART Details, Here is another picture of, Anubis) -> deviantART Details (3034ms)\nWho is Anubis?\tHorus\t-0.0\tWho is Anubis? -> $x: ($x, kill, anubis) -> (Horus, was killed by, Anubis) -> Horus (1342ms)\nWho is Anubis?\tthe development sketches\t-0.0\tWho is Anubis? -> $x: ($x, do, anubis) -> (the development sketches, i did for, the Anubis) -> the development sketches (1308ms)\nWho is Anubis?\tThe Kerux\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (The Kerux, is the principal form of, Anubis) -> The Kerux (1205ms)\nWho is Anubis?\trich woodwork\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (rich woodwork, is the home of, Anubis) -> rich woodwork (1261ms)\nWho is Anubis?\tVincent Rijmen\t-0.0\tWho is Anubis? -> $x: ($x, create, anubis) -> (Vincent Rijmen, Ciphers created, Anubis) -> Vincent Rijmen (1261ms)\nWho is Anubis?\tIsis\t-0.0\tWho is Anubis? -> $x: ($x, find, anubis) -> (Isis, finds, Anubis) -> Isis (1571ms)\nWho is Anubis?\ta pic i\t-0.0\tWho is Anubis? -> $x: ($x, do, anubis) -> (a pic i, did of, mirage and Anubis) -> a pic i (1308ms)\nWho is Anubis?\tcreature\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (creature, is based of, Anubis) -> creature (1261ms)\nWho is Anubis?\tIngrid van Houten-Groeneveld\t-0.0\tWho is Anubis? -> $x: ($x, discover, anubis) -> (Ingrid van Houten-Groeneveld, Astronomical objects discovered, 1912 Anubis) -> Ingrid van Houten-Groeneveld (3034ms)\nWho is Anubis?\tThe job\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (The job, is of, Anubis) -> The job (3038ms)\nWho is Anubis?\tdeviantART Sinubians\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (deviantART Sinubians, are some sort of, Anubis-like creatures) -> deviantART Sinubians (1261ms)\nWho is Anubis?\tOsiris and\t-0.0\tWho is Anubis? -> $x: ($x, give birth to, anubis) -> (Osiris and, subsequently gave birth to, Anubis) -> Osiris and (3034ms)\nWho is Anubis?\tSearch\t-0.0\tWho is Anubis? -> $x: ($x, play, anubis) -> (Search, play anything from, Anubis .fm?s catalogue) -> Search (1075ms)\nWho is Anubis?\tDaniel\t-0.0\tWho is Anubis? -> $x: ($x, kill, anubis) -> (Daniel, killed, Anubis) -> Daniel (3034ms)\nWho is Anubis?\tGert Verhulst\t-0.0\tWho is Anubis? -> $x: ($x, create, anubis) -> (Gert Verhulst, TV programs Created, House of Anubis) -> Gert Verhulst (1261ms)\nWho is Anubis?\tThe Arcanum Veritas\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (The Arcanum Veritas, is property of, Anubis Books) -> The Arcanum Veritas (1261ms)\nWho is Anubis?\tthe mask\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (the mask, was reminiscent of, the ancient Egyptian god Anubis) -> the mask (1308ms)\nWho is Anubis?\tThe mask\t-0.0\tWho is Anubis? -> $x: ($x, inspire, anubis) -> (The mask, is inspired by, Anubis) -> The mask (1342ms)\nWho is Anubis?\tThe closing track\t-0.0\tWho is Anubis? -> $x: ($x, here, anubis) -> (The closing track, here shows, Anubis Gate) -> The closing track (1342ms)\nWho is Anubis?\tP. Craig Russell\t-0.0\tWho is Anubis? -> $x: ($x, create, anubis) -> (P. Craig Russell, Fictional Characters Created, Anubis) -> P. Craig Russell (1308ms)\nWho is Anubis?\ta giant rat demon\t-0.0\tWho is Anubis? -> $x: ($x, kill, anubis) -> (a giant rat demon, killed, Anubis?s demons) -> a giant rat demon (1012ms)\nWho is Anubis?\tthe room\t-0.0\tWho is Anubis? -> $x: ($x, be of, anubis) -> (the room, was the protective black figure of, Anubis) -> the room (1205ms)\nWho is Anubis?\tSubmitted\t-0.0\tWho is Anubis? -> $x: ($x, do, anubis) -> (Submitted, Finally got the chance to do, Anubis) -> Submitted (3034ms)\nWho is Anubis?\tthe family\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was given a place in, the family) -> the family (3045ms)\nWho is Anubis?\tthe Pyramid Texts\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is alluded to in, the Pyramid Texts) -> the Pyramid Texts (3045ms)\nWho is Anubis?\tancient Egyptian mythology\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was an important figure in, ancient Egyptian mythology) -> ancient Egyptian mythology (3048ms)\nWho is Anubis?\ta brief absence\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Our Anubis pet urn, is back in stock after, a brief absence) -> a brief absence (3042ms)\nWho is Anubis?\tthe Best Drama category\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is nominated in, the Best Drama category) -> the Best Drama category (3042ms)\nWho is Anubis?\tpower\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (The Goa?uld System lord Anubis, was rising in, power) -> power (3038ms)\nWho is Anubis?\tthe Ankhu series\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is in, the Ankhu series) -> the Ankhu series (3042ms)\nWho is Anubis?\tcolor\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is Blue in, color) -> color (3038ms)\nWho is Anubis?\tthe same style\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, were painted in, the same style) -> the same style (3042ms)\nWho is Anubis?\tthe embalming\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (The God Anubis, is represented here in, the embalming) -> the embalming (3045ms)\nWho is Anubis?\tstatuary\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is often portrayed in, statuary) -> statuary (3045ms)\nWho is Anubis?\tthe Molecular World\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is found in, the Molecular World) -> the Molecular World (3045ms)\nWho is Anubis?\ta duel\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis and Sobak, are in, a duel) -> a duel (3038ms)\nWho is Anubis?\tthe movies\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis Anubis, is featured in, the movies) -> the movies (3038ms)\nWho is Anubis?\tsight\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is nowhere in, sight) -> sight (3042ms)\nWho is Anubis?\ta lab\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was born in, a lab) -> a lab (3042ms)\nWho is Anubis?\tEgyptian\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis ? name, was vocalized in, Egyptian) -> Egyptian (3038ms)\nWho is Anubis?\tresidence\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis and Chrome, are still in, residence) -> residence (3042ms)\nWho is Anubis?\tSouth Korea\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (The Anubis Gates, has recently been released in, South Korea) -> South Korea (3038ms)\nWho is Anubis?\tclassic bronze\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is presented here in, classic bronze) -> classic bronze (3045ms)\nWho is Anubis?\tJanuary 2008\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (The Anubis Gates, is due to be published in, January 2008) -> January 2008 (3042ms)\nWho is Anubis?\tT??b.t\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is in, T??b.t) -> T??b.t (3045ms)\nWho is Anubis?\tRome\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was maintained in, Rome) -> Rome (3042ms)\nWho is Anubis?\tEgyptian tombs\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis images, were placed in, Egyptian tombs) -> Egyptian tombs (3048ms)\nWho is Anubis?\tgold and silver colour\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is hand finished in, gold and silver colour) -> gold and silver colour (3042ms)\nWho is Anubis?\tthe Empire\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was the dominant force in, the Empire) -> the Empire (3045ms)\nWho is Anubis?\tTutankhamen\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was located in, Tutankhamen) -> Tutankhamen (3042ms)\nWho is Anubis?\ta niche\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis Gate, is in, a niche) -> a niche (3038ms)\nWho is Anubis?\tthe act\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is here shown in, the act) -> the act (3038ms)\nWho is Anubis?\tfunerary contexts\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is depicted in, funerary contexts) -> funerary contexts (3042ms)\nWho is Anubis?\ta tree\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Starivile and Anubis, were sleeping in, a tree) -> a tree (3038ms)\nWho is Anubis?\tmyths\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was given an important role in, myths) -> myths (3038ms)\nWho is Anubis?\ttomb paintings\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was a common figure in, tomb paintings) -> tomb paintings (3045ms)\nWho is Anubis?\tthe sand dune pasture\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, had been loose in, the sand dune pasture) -> the sand dune pasture (3042ms)\nWho is Anubis?\tthe samples\t-0.111111111111\tWho is Anubis? -> $x: ($x, be in, anubis) -> (the samples, were executed in, Anubis) -> the samples (3045ms)\nWho is Anubis?\tStephen King\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is a primary character in, Stephen King) -> Stephen King (3042ms)\nWho is Anubis?\tthe UK\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is produced in, the UK) -> the UK (3048ms)\nWho is Anubis?\tcharge\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was in, charge) -> charge (3038ms)\nWho is Anubis?\tstock\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Our Anubis pet urn, is back in, stock) -> stock (3048ms)\nWho is Anubis?\tthe weighing\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was still closely involved in, the weighing) -> the weighing (3045ms)\nWho is Anubis?\tcentral Egypt\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis Asyut, is a site in, central Egypt) -> central Egypt (3045ms)\nWho is Anubis?\thuman form\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was shown in, human form) -> human form (3048ms)\nWho is Anubis?\tthe duel arena\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is wearing outside in, the duel arena) -> the duel arena (3045ms)\nWho is Anubis?\tthe owner\t-0.111111111111\tWho is Anubis? -> $x: ($x, be in, anubis) -> (the owner, was also very slight in, build and Anubis) -> the owner (3045ms)\nWho is Anubis?\tEgypt\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis cartouche pendant, is handmade in, Egypt) -> Egypt (3045ms)\nWho is Anubis?\tcruciform\t-0.111111111111\tWho is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is depicted in, cruciform) -> cruciform (3042ms)\nWho is Anubis?\tcapable of\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, capable of) -> capable of (3055ms)\nWho is Anubis?\tStargate\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Stargate, was destroyed by, Anubis) -> Stargate (3059ms)\nWho is Anubis?\tSet\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, Set) -> Set (3063ms)\nWho is Anubis?\tA strange fetish\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (A strange fetish, was linked to, Anubis) -> A strange fetish (3051ms)\nWho is Anubis?\tthe guardian god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the guardian god) -> the guardian god (3059ms)\nWho is Anubis?\tthe Egyptian God of the dead\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the Egyptian God of the dead) -> the Egyptian God of the dead (3063ms)\nWho is Anubis?\tNetcheh-netcheh\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, were, Netcheh-netcheh) -> Netcheh-netcheh (3064ms)\nWho is Anubis?\tthe best\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the best) -> the best (3051ms)\nWho is Anubis?\tSekhmet\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Sekhmet, is, Anubis) -> Sekhmet (3048ms)\nWho is Anubis?\tthe god of embalming rituals\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the god of embalming rituals) -> the god of embalming rituals (3065ms)\nWho is Anubis?\tthe patron\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the patron) -> the patron (3059ms)\nWho is Anubis?\tthe most important god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the most important god) -> the most important god (3059ms)\nWho is Anubis?\ta jackel\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a jackel) -> a jackel (3053ms)\nWho is Anubis?\tthe TACs and Jackalhound\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the TACs and Jackalhound, was, Anubis) -> the TACs and Jackalhound (3064ms)\nWho is Anubis?\tthe sketch\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the sketch, is, Anubis) -> the sketch (3063ms)\nWho is Anubis?\tthe elder\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the elder, was, Anubis) -> the elder (3059ms)\nWho is Anubis?\tJim\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Jim, is, Anubis) -> Jim (3063ms)\nWho is Anubis?\tThe child\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (The child, was, Anubis) -> The child (3050ms)\nWho is Anubis?\tright\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, right) -> right (3061ms)\nWho is Anubis?\tB. C. Greek\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (B. C. Greek, is usually held to be, Anubis) -> B. C. Greek (3048ms)\nWho is Anubis?\t?the barker\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, ?the barker) -> ?the barker (3048ms)\nWho is Anubis?\tnowhere\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, nowhere) -> nowhere (3061ms)\nWho is Anubis?\tJonas\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Jonas, is captured by, Anubis) -> Jonas (3059ms)\nWho is Anubis?\tNickipedia\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, Nickipedia) -> Nickipedia (3055ms)\nWho is Anubis?\tthe son of Nephthys and Osiris\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the son of Nephthys and Osiris) -> the son of Nephthys and Osiris (3058ms)\nWho is Anubis?\tevery jackal\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (every jackal, was actually, Anubis) -> every jackal (3058ms)\nWho is Anubis?\tthe statue\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the statue, is, Anubis) -> the statue (3064ms)\nWho is Anubis?\tBastet\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Bastet, is taunting, Anubis) -> Bastet (3064ms)\nWho is Anubis?\ta powerful Goa'uld System Lord\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a powerful Goa'uld System Lord) -> a powerful Goa'uld System Lord (3064ms)\nWho is Anubis?\tthe Greek name for a jackal-headed god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the Greek name for a jackal-headed god) -> the Greek name for a jackal-headed god (3063ms)\nWho is Anubis?\ta great Blues\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (ANUBIS, are, a great Blues) -> a great Blues (3061ms)\nWho is Anubis?\tthe most powerful and dangerous Goa'uld\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the most powerful and dangerous Goa'uld) -> the most powerful and dangerous Goa'uld (3055ms)\nWho is Anubis?\ta long-form mystery series\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a long-form mystery series) -> a long-form mystery series (3058ms)\nWho is Anubis?\tthe lord of the dead\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the lord of the dead) -> the lord of the dead (3064ms)\nWho is Anubis?\ta lunar power\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a lunar power) -> a lunar power (3051ms)\nWho is Anubis?\ta rather stern deity\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a rather stern deity) -> a rather stern deity (3064ms)\nWho is Anubis?\tthe deity\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the deity) -> the deity (3056ms)\nWho is Anubis?\ta kind god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a kind god) -> a kind god (3061ms)\nWho is Anubis?\ta psychopomp\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a psychopomp) -> a psychopomp (3048ms)\nWho is Anubis?\tthe Gardevoir\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the Gardevoir, was surprised to see, Anubis) -> the Gardevoir (3051ms)\nWho is Anubis?\tgod of embalming\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, god of embalming) -> god of embalming (3055ms)\nWho is Anubis?\ta Manga\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a Manga) -> a Manga (3048ms)\nWho is Anubis?\tInpu\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, Inpu) -> Inpu (3053ms)\nWho is Anubis?\tthe film\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the film, is called, \" Anubis) -> the film (3064ms)\nWho is Anubis?\tThe jackal-headed god\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (The jackal-headed god, was, Anubis) -> The jackal-headed god (3061ms)\nWho is Anubis?\ta Messenger\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a Messenger) -> a Messenger (3058ms)\nWho is Anubis?\tthe jackal-headed God\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the jackal-headed God) -> the jackal-headed God (3063ms)\nWho is Anubis?\tback\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, back) -> back (3062ms)\nWho is Anubis?\tthe guardian of the dead\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the guardian of the dead) -> the guardian of the dead (3064ms)\nWho is Anubis?\ta very mysterious god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a very mysterious god) -> a very mysterious god (3064ms)\nWho is Anubis?\ta jackal headed god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a jackal headed god) -> a jackal headed god (3059ms)\nWho is Anubis?\tthe feline goddess Bastet\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the feline goddess Bastet, is, Anubis) -> the feline goddess Bastet (3065ms)\nWho is Anubis?\tthe god of death\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the god of death) -> the god of death (3065ms)\nWho is Anubis?\ta dog\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a dog) -> a dog (3064ms)\nWho is Anubis?\tsilent\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, silent) -> silent (3062ms)\nWho is Anubis?\ta jointly American/British/Belgian produced\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a jointly American/British/Belgian produced) -> a jointly American/British/Belgian produced (3053ms)\nWho is Anubis?\tanimal form\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (animal form, are, Anubis) -> animal form (3062ms)\nWho is Anubis?\tan ancient one\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, an ancient one) -> an ancient one (3064ms)\nWho is Anubis?\ta protector\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a protector) -> a protector (3063ms)\nWho is Anubis?\tSirius\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Sirius, is also, Anubis) -> Sirius (3064ms)\nWho is Anubis?\ta Egyptian God\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a Egyptian God) -> a Egyptian God (3058ms)\nWho is Anubis?\tthe God of mummification\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the God of mummification) -> the God of mummification (3055ms)\nWho is Anubis?\t?the deceased\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (?the deceased, is led by, Anubis) -> ?the deceased (3051ms)\nWho is Anubis?\tdetermined to destroy Yugi and take over the world\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, determined to destroy Yugi and take over the world) -> determined to destroy Yugi and take over the world (3056ms)\nWho is Anubis?\tthe son of Nephthys\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the son of Nephthys) -> the son of Nephthys (3061ms)\nWho is Anubis?\tThe answer\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (The answer, is, Anubis) -> The answer (3064ms)\nWho is Anubis?\tan Egyptian god of death and the underworld\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, an Egyptian god of death and the underworld) -> an Egyptian god of death and the underworld (3048ms)\nWho is Anubis?\tthe supreme hierarch\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the supreme hierarch) -> the supreme hierarch (3050ms)\nWho is Anubis?\t?My name\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (?My name, is, Anubis !) -> ?My name (3065ms)\nWho is Anubis?\tthe god of the underworld\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the god of the underworld) -> the god of the underworld (3053ms)\nWho is Anubis?\tthe jackal\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the jackal) -> the jackal (3051ms)\nWho is Anubis?\ta ?dead person\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (a ?dead person, would be recognised by, Anubis) -> a ?dead person (3058ms)\nWho is Anubis?\tamazing\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, amazing) -> amazing (3060ms)\nWho is Anubis?\thappy\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, happy) -> happy (3063ms)\nWho is Anubis?\tthe jackal headed god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the jackal headed god) -> the jackal headed god (3060ms)\nWho is Anubis?\tCRS\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (CRS, is accessible through, ANUBIS) -> CRS (3053ms)\nWho is Anubis?\tTorian\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Torian, is really, Anubis) -> Torian (3059ms)\nWho is Anubis?\tHitch Partner\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Hitch Partner, is, Anubis) -> Hitch Partner (3058ms)\nWho is Anubis?\tOsiris\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, Osiris) -> Osiris (3061ms)\nWho is Anubis?\tthe main god\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the main god, is, Anubis) -> the main god (3064ms)\nWho is Anubis?\ta well respected master builder\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a well respected master builder) -> a well respected master builder (3053ms)\nWho is Anubis?\tthe God\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the God, is, Anubis) -> the God (3063ms)\nWho is Anubis?\tthe jackal-god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the jackal-god) -> the jackal-god (3061ms)\nWho is Anubis?\tquestion\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (question, is, Anubis) -> question (3048ms)\nWho is Anubis?\tevil\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, evil) -> evil (3065ms)\nWho is Anubis?\tthe Dark God\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the Dark God) -> the Dark God (3059ms)\nWho is Anubis?\tDoc\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Doc, is, Anubis) -> Doc (3050ms)\nWho is Anubis?\tthe more quiet and serious kind\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the more quiet and serious kind) -> the more quiet and serious kind (3048ms)\nWho is Anubis?\ta powerful one\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a powerful one) -> a powerful one (3064ms)\nWho is Anubis?\tthe left one\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the left one, is, Anubis) -> the left one (3063ms)\nWho is Anubis?\tan Ancient\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, an Ancient) -> an Ancient (3053ms)\nWho is Anubis?\tmine and my copyright is on the art\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, mine and my copyright is on the art) -> mine and my copyright is on the art (3051ms)\nWho is Anubis?\tthe left\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the left, was, Anubis) -> the left (3057ms)\nWho is Anubis?\tWesterners\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Westerners, were originally, Anubis) -> Westerners (3058ms)\nWho is Anubis?\tthe earth\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the earth, was, Anubis) -> the earth (3055ms)\nWho is Anubis?\tthe god of the dead\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the god of the dead) -> the god of the dead (3062ms)\nWho is Anubis?\tthe jackal-headed god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the jackal-headed god) -> the jackal-headed god (3065ms)\nWho is Anubis?\tthe son of Osiris\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the son of Osiris) -> the son of Osiris (3063ms)\nWho is Anubis?\ta notification service\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a notification service) -> a notification service (3053ms)\nWho is Anubis?\ta jackal god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a jackal god) -> a jackal god (3063ms)\nWho is Anubis?\tan older brother\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (an older brother, is like, Anubis) -> an older brother (3053ms)\nWho is Anubis?\tThe middle\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (The middle, is, Anubis) -> The middle (3063ms)\nWho is Anubis?\tthe Giza Sphinx\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the Giza Sphinx, was originally, Anubis) -> the Giza Sphinx (3053ms)\nWho is Anubis?\tthe ceremony\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the ceremony) -> the ceremony (3051ms)\nWho is Anubis?\tthree\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, three) -> three (3058ms)\nWho is Anubis?\ta nice theme\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a nice theme) -> a nice theme (3053ms)\nWho is Anubis?\tThe next one\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (The next one, is, Anubis) -> The next one (3064ms)\nWho is Anubis?\tsurprised\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, surprised) -> surprised (3061ms)\nWho is Anubis?\tthe game\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the game, is, Anubis) -> the game (3063ms)\nWho is Anubis?\tGoa?uld?d\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Goa?uld?d, was, Anubis) -> Goa?uld?d (3061ms)\nWho is Anubis?\tRed Leader\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Red Leader, was once, Anubis) -> Red Leader (3061ms)\nWho is Anubis?\t?the statue ?\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (?the statue ?, was, Anubis) -> ?the statue ? (3055ms)\nWho is Anubis?\tthe hearts of the dead\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the hearts of the dead, were weighed by, Anubis) -> the hearts of the dead (3058ms)\nWho is Anubis?\tthe shaman priest\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the shaman priest) -> the shaman priest (3063ms)\nWho is Anubis?\tvulnerable\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, vulnerable) -> vulnerable (3051ms)\nWho is Anubis?\tthe Sphinx\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the Sphinx, was, Anubis) -> the Sphinx (3058ms)\nWho is Anubis?\tSirius A\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, Sirius A) -> Sirius A (3063ms)\nWho is Anubis?\ta crouching wild dog\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a crouching wild dog) -> a crouching wild dog (3061ms)\nWho is Anubis?\tone of my favorites\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, one of my favorites) -> one of my favorites (3048ms)\nWho is Anubis?\tthe same reason\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the same reason, was, Anubis) -> the same reason (3056ms)\nWho is Anubis?\tEarth\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Earth, is safe from, Anubis) -> Earth (3059ms)\nWho is Anubis?\tthe peasant\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the peasant, is the recourse to, Anubis) -> the peasant (3063ms)\nWho is Anubis?\ta forbidding place\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a forbidding place) -> a forbidding place (3059ms)\nWho is Anubis?\tan old , very powerful System Lord\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, an old , very powerful System Lord) -> an old , very powerful System Lord (3063ms)\nWho is Anubis?\tthe son of Osiris and Nephthys\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the son of Osiris and Nephthys) -> the son of Osiris and Nephthys (3051ms)\nWho is Anubis?\tthe horizon\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the horizon, is, Anubis) -> the horizon (3059ms)\nWho is Anubis?\tthe god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the god) -> the god (3055ms)\nWho is Anubis?\tThe circle of the horizon\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (The circle of the horizon, is, Anubis) -> The circle of the horizon (3056ms)\nWho is Anubis?\tHunefer\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Hunefer, is held up by, Anubis) -> Hunefer (3064ms)\nWho is Anubis?\ta jackal headed\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a jackal headed) -> a jackal headed (3063ms)\nWho is Anubis?\tprograms\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (programs, are used by, Anubis) -> programs (3057ms)\nWho is Anubis?\tan RPM\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (an RPM, is, anubis) -> an RPM (3055ms)\nWho is Anubis?\tthe Ancient Egyptian god\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the Ancient Egyptian god) -> the Ancient Egyptian god (3061ms)\nWho is Anubis?\tNova\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Nova, was, Anubis) -> Nova (3061ms)\nWho is Anubis?\tAnunnaki\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Anunnaki, is remarkably like, Anubis) -> Anunnaki (3063ms)\nWho is Anubis?\ta veritable scout\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a veritable scout) -> a veritable scout (3059ms)\nWho is Anubis?\tAtete\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Atete, is technically, Anubis) -> Atete (3059ms)\nWho is Anubis?\tsuch a strong fighter\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, such a strong fighter) -> such a strong fighter (3058ms)\nWho is Anubis?\tOmega Psi Phi\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (Omega Psi Phi, is associated with, Anubis) -> Omega Psi Phi (3063ms)\nWho is Anubis?\tan extremely ancient deity\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, an extremely ancient deity) -> an extremely ancient deity (3064ms)\nWho is Anubis?\tthe Baptizer\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the Baptizer, is, Anubis) -> the Baptizer (3063ms)\nWho is Anubis?\ta bit severe\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a bit severe) -> a bit severe (3053ms)\nWho is Anubis?\tthe Mesqet\t-0.222222222222\tWho is Anubis? -> $x: ($x, be be, anubis) -> (the Mesqet, is, Anubis) -> the Mesqet (3053ms)\nWho is Anubis?\ta lovely little book\t-0.222222222222\tWho is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a lovely little book) -> a lovely little book (3064ms)\nWhen did Hawaii become a state?\tthe USA\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the 50th state in, the USA) -> the USA (2559ms)\nWhen did Hawaii become a state?\tthe U.S.\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, has become the first state in, the U.S.) -> the U.S. (2833ms)\nWhen did Hawaii become a state?\tU.S.\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawai'i, became the 50th state in, U.S.) -> U.S. (2559ms)\nWhen did Hawaii become a state?\tthe United States\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the first state in, the United States) -> the United States (2394ms)\nWhen did Hawaii become a state?\tAugust\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the 50th state in, August) -> August (2833ms)\nWhen did Hawaii become a state?\tcountry\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the fiftieth state in, country) -> country (1484ms)\nWhen did Hawaii become a state?\tthe nation\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the first state in, the nation) -> the nation (2833ms)\nWhen did Hawaii become a state?\t1963\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a state in, 1963) -> 1963 (2721ms)\nWhen did Hawaii become a state?\t1898\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a territory of the United States in, 1898) -> 1898 (2394ms)\nWhen did Hawaii become a state?\tAugust of 1959\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a state in, August of 1959) -> August of 1959 (2722ms)\nWhen did Hawaii become a state?\tAugust 1959\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a state in, August 1959) -> August 1959 (2559ms)\nWhen did Hawaii become a state?\tAmerica\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawai?i, became the first state in, America) -> America (2768ms)\nWhen did Hawaii become a state?\t16 years\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the first state in, 16 years) -> 16 years (2768ms)\nWhen did Hawaii become a state?\tthe Union\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (1959 Hawaii, becomes the 50th state in, the Union) -> the Union (2768ms)\nWhen did Hawaii become a state?\t1959\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became officially known as the \" Aloha State in, 1959) -> 1959 (2833ms)\nWhen did Hawaii become a state?\t1900\t1.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a territory of the United States in, 1900) -> 1900 (1484ms)\nWhen did Hawaii become a state?\tAugust 21\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (Hawaii, became the 50th state on, August 21) -> August 21 (3423ms)\nWhen did Hawaii become a state?\ta vacation rental\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, a vacation rental) -> a vacation rental (3328ms)\nWhen did Hawaii become a state?\t67 percent\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found almost, 67 percent) -> 67 percent (3271ms)\nWhen did Hawaii become a state?\t200 places\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found approximately, 200 places) -> 200 places (3486ms)\nWhen did Hawaii become a state?\tKailua Kona\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (text/html Kailua Kona Hawaii Hotels, Find hotels in, Kailua Kona) -> Kailua Kona (3370ms)\nWhen did Hawaii become a state?\tthe Society Islands\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, is found in, the Society Islands) -> the Society Islands (3410ms)\nWhen did Hawaii become a state?\tMaui\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed for, Maui) -> Maui (3328ms)\nWhen did Hawaii become a state?\tHakalau\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (The Akepa and Hawaii Creeper, are found in, Hakalau) -> Hakalau (3356ms)\nWhen did Hawaii become a state?\tMarcos guilty\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found, Marcos guilty) -> Marcos guilty (3474ms)\nWhen did Hawaii become a state?\tthe island paradise\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, the island paradise) -> the island paradise (3397ms)\nWhen did Hawaii become a state?\tHIV.\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, live with, $x) -> (Hawai'i, is also living with, HIV.) -> HIV. (3423ms)\nWhen did Hawaii become a state?\tthe other islands\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawaii, is twice the size of, the other islands) -> the other islands (3397ms)\nWhen did Hawaii become a state?\tshore Friday\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii Marine Center research trip, headed back to, shore Friday) -> shore Friday (3449ms)\nWhen did Hawaii become a state?\tthe EasyGreen\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found, the EasyGreen) -> the EasyGreen (3498ms)\nWhen did Hawaii become a state?\tFlorida\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, was first found in, Florida) -> Florida (3486ms)\nWhen did Hawaii become a state?\ta national public TV airing\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (two Hawaii shows, headed for, a national public TV airing) -> a national public TV airing (3436ms)\nWhen did Hawaii become a state?\tUOP Friday\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, heads up to, UOP Friday) -> UOP Friday (3423ms)\nWhen did Hawaii become a state?\tmortgage refinancing resources\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (hawaii, find, mortgage refinancing resources) -> mortgage refinancing resources (3449ms)\nWhen did Hawaii become a state?\tHana\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (the old , real Hawaii, can still be found in heavenly, Hana) -> Hana (3256ms)\nWhen did Hawaii become a state?\tScott Sheppard Ananke Daughter\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Ananke Daughter) -> Scott Sheppard Ananke Daughter (3314ms)\nWhen did Hawaii become a state?\tfavor\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (the Hawaii state court, found in, favor) -> favor (3356ms)\nWhen did Hawaii become a state?\tdancers\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, find, dancers) -> dancers (3383ms)\nWhen did Hawaii become a state?\ta star\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, have found, a star) -> a star (3423ms)\nWhen did Hawaii become a state?\tlove\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, have found, love) -> love (3486ms)\nWhen did Hawaii become a state?\tHawaii\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii Jobs, Find Jobs in, Hawaii) -> Hawaii (3384ms)\nWhen did Hawaii become a state?\ta practice and game schedule\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, a practice and game schedule) -> a practice and game schedule (3300ms)\nWhen did Hawaii become a state?\tGoogle Scholar\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, found significant gaps in, Google Scholar) -> Google Scholar (3474ms)\nWhen did Hawaii become a state?\thundreds\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (our Hawaii State Chairman, has been heading up, hundreds) -> hundreds (3370ms)\nWhen did Hawaii become a state?\tthe Aloha state physicians\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found, the Aloha state physicians) -> the Aloha state physicians (3436ms)\nWhen did Hawaii become a state?\tNorthern Ireland\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawaii, is the size of, Northern Ireland) -> Northern Ireland (3474ms)\nWhen did Hawaii become a state?\tChapter 667 et\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii non-judicial foreclosures, are found in, Chapter 667 et) -> Chapter 667 et (3410ms)\nWhen did Hawaii become a state?\tScott Sheppard Named\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Named) -> Scott Sheppard Named (3449ms)\nWhen did Hawaii become a state?\tsea glass\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find out all about, sea glass) -> sea glass (3370ms)\nWhen did Hawaii become a state?\tKaanapali\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii Kaanapali Hotels, Find hotels in, Kaanapali) -> Kaanapali (3410ms)\nWhen did Hawaii become a state?\tthe Hawaii Charging Station Database\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found on, the Hawaii Charging Station Database) -> the Hawaii Charging Station Database (3449ms)\nWhen did Hawaii become a state?\tcheap vibrox\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, find, cheap vibrox) -> cheap vibrox (3384ms)\nWhen did Hawaii become a state?\tthe true beauty\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, finds, the true beauty) -> the true beauty (3474ms)\nWhen did Hawaii become a state?\tenergy\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, price, $x) -> (?Hawai?i Island residents, pay high prices for, energy) -> energy (3410ms)\nWhen did Hawaii become a state?\treviews\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, | Find, reviews) -> reviews (3449ms)\nWhen did Hawaii become a state?\tCNA Schools\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, CNA Schools) -> CNA Schools (3423ms)\nWhen did Hawaii become a state?\ta Christmas tree and winter events\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, a Christmas tree and winter events) -> a Christmas tree and winter events (3486ms)\nWhen did Hawaii become a state?\tScott Sheppard Daughter\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Daughter) -> Scott Sheppard Daughter (3342ms)\nWhen did Hawaii become a state?\tone study\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, were found in, one study) -> one study (3449ms)\nWhen did Hawaii become a state?\tEugene\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, are both headed to, Eugene) -> Eugene (3449ms)\nWhen did Hawaii become a state?\tMars and Venus\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, are found on, Mars and Venus) -> Mars and Venus (3498ms)\nWhen did Hawaii become a state?\ta zoomorphic figurine\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found, a zoomorphic figurine) -> a zoomorphic figurine (3342ms)\nWhen did Hawaii become a state?\tforeclosure properties houses\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, find in, foreclosure properties houses) -> foreclosure properties houses (3423ms)\nWhen did Hawaii become a state?\tthe centre\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (the 2-star Hawaii Apartments, can be found in, the centre) -> the centre (3370ms)\nWhen did Hawaii become a state?\tungrazed , wet mixed forests\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (The Hawaii Creeper, is found in, ungrazed , wet mixed forests) -> ungrazed , wet mixed forests (3328ms)\nWhen did Hawaii become a state?\texclusive Hawaii travel deals\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, exclusive Hawaii travel deals) -> exclusive Hawaii travel deals (3436ms)\nWhen did Hawaii become a state?\ta Chapter Christian Motorcyclists Association\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, a Chapter Christian Motorcyclists Association) -> a Chapter Christian Motorcyclists Association (3449ms)\nWhen did Hawaii become a state?\tthe central Pacific Ocean\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Canada and Hawaii, is found in, the central Pacific Ocean) -> the central Pacific Ocean (3498ms)\nWhen did Hawaii become a state?\tHakalau Forest\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (The Akepa and Hawaii Creeper, are found in, Hakalau Forest) -> Hakalau Forest (3271ms)\nWhen did Hawaii become a state?\tre-election\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (the Hawaii Legislature, appear headed to, re-election) -> re-election (3286ms)\nWhen did Hawaii become a state?\tfirst Europeans\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found by, first Europeans) -> first Europeans (3370ms)\nWhen did Hawaii become a state?\tnegligent\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, was found, negligent) -> negligent (3410ms)\nWhen did Hawaii become a state?\tflight and cheap flight cyprus\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, fast find, flight and cheap flight cyprus) -> flight and cheap flight cyprus (3498ms)\nWhen did Hawaii become a state?\tthe colorful waters\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found in, the colorful waters) -> the colorful waters (3474ms)\nWhen did Hawaii become a state?\tan illustration\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawaii, has a postage-sized stamp with, an illustration) -> an illustration (3397ms)\nWhen did Hawaii become a state?\tthe same day\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, Find cash in, the same day) -> the same day (3356ms)\nWhen did Hawaii become a state?\tNew York\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, try to find work in, New York) -> New York (3356ms)\nWhen did Hawaii become a state?\tflight\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, fast find, flight) -> flight (3474ms)\nWhen did Hawaii become a state?\tsuccess\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, has found, success) -> success (3498ms)\nWhen did Hawaii become a state?\toffices\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, can be found in, offices) -> offices (3436ms)\nWhen did Hawaii become a state?\tOahu Maui Hawaii and Kauai\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found on, Oahu Maui Hawaii and Kauai) -> Oahu Maui Hawaii and Kauai (3328ms)\nWhen did Hawaii become a state?\tItaly\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, is heading to, Italy) -> Italy (3461ms)\nWhen did Hawaii become a state?\tthe chilly Atlantic shores\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found its way to, the chilly Atlantic shores) -> the chilly Atlantic shores (3449ms)\nWhen did Hawaii become a state?\tAugust 21 , 1959\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (Hawaii, formally became a state on, August 21 , 1959) -> August 21 , 1959 (3436ms)\nWhen did Hawaii become a state?\tthe beautiful island\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Kaanapali Hawaii, can be found in, the beautiful island) -> the beautiful island (3486ms)\nWhen did Hawaii become a state?\tthe internet\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found on, the internet) -> the internet (3357ms)\nWhen did Hawaii become a state?\tGolf Magazine?s list\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (eight Hawaii courses, can be found in, Golf Magazine?s list) -> Golf Magazine?s list (3474ms)\nWhen did Hawaii become a state?\tScott Sheppard Mother\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Mother) -> Scott Sheppard Mother (3449ms)\nWhen did Hawaii become a state?\ttown\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii and I?m, headed out of, town) -> town (3449ms)\nWhen did Hawaii become a state?\thigh surf\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii 's North Shore, had to head, high surf) -> high surf (3328ms)\nWhen did Hawaii become a state?\tthe North Shore\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, are found on, the North Shore) -> the North Shore (3449ms)\nWhen did Hawaii become a state?\tchildhood leukaemia\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found a cluster of, childhood leukaemia) -> childhood leukaemia (3498ms)\nWhen did Hawaii become a state?\tScott Sheppard Lover\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Lover) -> Scott Sheppard Lover (3342ms)\nWhen did Hawaii become a state?\tthe Monthly Precipitation Summaries\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, can be found in, the Monthly Precipitation Summaries) -> the Monthly Precipitation Summaries (3474ms)\nWhen did Hawaii become a state?\tthe cover story\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai?i Space Grant, can be found in, the cover story) -> the cover story (3300ms)\nWhen did Hawaii become a state?\tflight etc\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, fast find, flight etc) -> flight etc (3300ms)\nWhen did Hawaii become a state?\tsenior care options\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, senior care options) -> senior care options (3256ms)\nWhen did Hawaii become a state?\tScott Sheppard Carme\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Carme) -> Scott Sheppard Carme (3271ms)\nWhen did Hawaii become a state?\tthe yearly average\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found an increase in, the yearly average) -> the yearly average (3461ms)\nWhen did Hawaii become a state?\tassociation\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, find details of, association) -> association (3449ms)\nWhen did Hawaii become a state?\tHonolulu\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, Find doctors in, Honolulu) -> Honolulu (3410ms)\nWhen did Hawaii become a state?\tChapter 12\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai'i, are found in, Chapter 12) -> Chapter 12 (3461ms)\nWhen did Hawaii become a state?\tpodcasts\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, can be found on, podcasts) -> podcasts (3410ms)\nWhen did Hawaii become a state?\tthe green east coast\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found concerning, the green east coast) -> the green east coast (3410ms)\nWhen did Hawaii become a state?\tAustralia\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, was also headed to, Australia) -> Australia (3410ms)\nWhen did Hawaii become a state?\tadverse event rates\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found, adverse event rates) -> adverse event rates (3356ms)\nWhen did Hawaii become a state?\tNew Cars Hawaii | New\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, New Cars Hawaii | New) -> New Cars Hawaii | New (3486ms)\nWhen did Hawaii become a state?\tAug. 21 , 1959\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (Hawaii, became the 50th state on, Aug. 21 , 1959) -> Aug. 21 , 1959 (3436ms)\nWhen did Hawaii become a state?\tthe top resorts\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, is found at, the top resorts) -> the top resorts (3423ms)\nWhen did Hawaii become a state?\tthe attack\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, might have headed off, the attack) -> the attack (3397ms)\nWhen did Hawaii become a state?\tScott Sheppard One\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard One) -> Scott Sheppard One (3383ms)\nWhen did Hawaii become a state?\tthe NWHI\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, is found in, the NWHI) -> the NWHI (3486ms)\nWhen did Hawaii become a state?\tHonolulu HI\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, are found in, Honolulu HI) -> Honolulu HI (3474ms)\nWhen did Hawaii become a state?\tbeautiful beaches\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, will find, beautiful beaches) -> beautiful beaches (3342ms)\nWhen did Hawaii become a state?\tflight or cheap flight cyprus etc\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (hawaii, fast find, flight or cheap flight cyprus etc) -> flight or cheap flight cyprus etc (3498ms)\nWhen did Hawaii become a state?\tDelaware\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawai?i Island, is twice the size of, Delaware) -> Delaware (3486ms)\nWhen did Hawaii become a state?\tKihei Vacation Rentals\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, Kihei Vacation Rentals) -> Kihei Vacation Rentals (3410ms)\nWhen did Hawaii become a state?\tseveral ways\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found, several ways) -> several ways (3397ms)\nWhen did Hawaii become a state?\tNorm Chow\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii Warriors football, Current head coach, Norm Chow) -> Norm Chow (3397ms)\nWhen did Hawaii become a state?\tthe Japanese attack\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, price, $x) -> (Hawaii, paid a high price for, the Japanese attack) -> the Japanese attack (3474ms)\nWhen did Hawaii become a state?\ta special issue\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, can be found in, a special issue) -> a special issue (3461ms)\nWhen did Hawaii become a state?\tAddress and Phone number\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, Address and Phone number) -> Address and Phone number (3486ms)\nWhen did Hawaii become a state?\tAug. 21 ,\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (( Hawaii, became a state on, Aug. 21 ,) -> Aug. 21 , (3357ms)\nWhen did Hawaii become a state?\ta major roadblock\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, could be headed toward, a major roadblock) -> a major roadblock (3271ms)\nWhen did Hawaii become a state?\tawards\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, invent, $x) -> (Hawaii And GSA, invented, awards) -> awards (3286ms)\nWhen did Hawaii become a state?\tthe island\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, is found on, the island) -> the island (3423ms)\nWhen did Hawaii become a state?\tKauai\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, are found in, Kauai) -> Kauai (3449ms)\nWhen did Hawaii become a state?\tSteve McGarrett\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (the Hawaii State Police, headed by, Steve McGarrett) -> Steve McGarrett (3328ms)\nWhen did Hawaii become a state?\ta physician\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, a physician) -> a physician (3498ms)\nWhen did Hawaii become a state?\tthe next largest island\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, size be, $x) -> (Hawaii, is five times the size of, the next largest island) -> the next largest island (3449ms)\nWhen did Hawaii become a state?\tSimilar Art\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, Similar Art) -> Similar Art (3436ms)\nWhen did Hawaii become a state?\tamazement\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (hawaii, just shook my head in, amazement) -> amazement (3397ms)\nWhen did Hawaii become a state?\tFort\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Bankruptcy Hawaii American Home Guides, find new homes in, Fort) -> Fort (3271ms)\nWhen did Hawaii become a state?\tConnecticut\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawaii, is about the size of, Connecticut) -> Connecticut (3356ms)\nWhen did Hawaii become a state?\tHI.\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (HI , Hawaii people search, find people in, HI.) -> HI. (3328ms)\nWhen did Hawaii become a state?\tScott Sheppard Pasipha? One\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Pasipha? One) -> Scott Sheppard Pasipha? One (3300ms)\nWhen did Hawaii become a state?\tthe Annie Armstrong\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (1980 Hawaii Baptists, headed, the Annie Armstrong) -> the Annie Armstrong (3314ms)\nWhen did Hawaii become a state?\tthe wet forests\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (The Hawaii plant, is found only in, the wet forests) -> the wet forests (3383ms)\nWhen did Hawaii become a state?\tthe northeastern slopes\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found the bird on, the northeastern slopes) -> the northeastern slopes (3461ms)\nWhen did Hawaii become a state?\ta vacation\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, is a great place to head to for, a vacation) -> a vacation (3300ms)\nWhen did Hawaii become a state?\tthe Hawaii Revised Statutes\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii Firearm laws, are found in, the Hawaii Revised Statutes) -> the Hawaii Revised Statutes (3449ms)\nWhen did Hawaii become a state?\trunners\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found, runners) -> runners (3342ms)\nWhen did Hawaii become a state?\tCalifornia\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, was found in, California) -> California (3286ms)\nWhen did Hawaii become a state?\tthe validity\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, finds against, the validity) -> the validity (3397ms)\nWhen did Hawaii become a state?\tDentistry Jobs\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, Dentistry Jobs) -> Dentistry Jobs (3314ms)\nWhen did Hawaii become a state?\tScott Sheppard\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard) -> Scott Sheppard (3271ms)\nWhen did Hawaii become a state?\tevery available habitat\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai'i, can be found in, every available habitat) -> every available habitat (3461ms)\nWhen did Hawaii become a state?\tthe Hawaiian islands\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai'i, are found only in, the Hawaiian islands) -> the Hawaiian islands (3384ms)\nWhen did Hawaii become a state?\tthe Hawaiian Islands\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai?i, are found only in, the Hawaiian Islands) -> the Hawaiian Islands (3356ms)\nWhen did Hawaii become a state?\tflight or cheap flight cyprus\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, fast find, flight or cheap flight cyprus) -> flight or cheap flight cyprus (3383ms)\nWhen did Hawaii become a state?\tthe islands\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, are found all over, the islands) -> the islands (3342ms)\nWhen did Hawaii become a state?\tlocal honolulu gas prices & gas stations\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, find, local honolulu gas prices & gas stations) -> local honolulu gas prices & gas stations (3384ms)\nWhen did Hawaii become a state?\tMaui vacation information\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, Maui vacation information) -> Maui vacation information (3474ms)\nWhen did Hawaii become a state?\tongoing degradation\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, price, $x) -> (Hawai'i, pays the price with, ongoing degradation) -> ongoing degradation (3256ms)\nWhen did Hawaii become a state?\tvarious boutiques\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Tiare Hawaii, can be found in, various boutiques) -> various boutiques (3486ms)\nWhen did Hawaii become a state?\tcertain other states\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, is found in, certain other states) -> certain other states (3474ms)\nWhen did Hawaii become a state?\tHolistic Health Services\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, Holistic Health Services) -> Holistic Health Services (3356ms)\nWhen did Hawaii become a state?\tan archipelago\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, is found in, an archipelago) -> an archipelago (3370ms)\nWhen did Hawaii become a state?\tWilliam Cutler\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Integral?s Hawaii office, is headed by, William Cutler) -> William Cutler (3498ms)\nWhen did Hawaii become a state?\tretirement\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (West Hawai?i, is headed for, retirement) -> retirement (3436ms)\nWhen did Hawaii become a state?\thotels\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, hotels) -> hotels (3436ms)\nWhen did Hawaii become a state?\tHawaii?s mountain\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii colleague, found in, Hawaii?s mountain) -> Hawaii?s mountain (3328ms)\nWhen did Hawaii become a state?\twww\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found at, www) -> www (3486ms)\nWhen did Hawaii become a state?\t1957\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, invent, $x) -> (The Blue Hawai?i drink, was invented in, 1957) -> 1957 (3256ms)\nWhen did Hawaii become a state?\ttoo low\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, price, $x) -> (Hawaii Kai house, priced, too low) -> too low (3328ms)\nWhen did Hawaii become a state?\tthe Hana district\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, are found in, the Hana district) -> the Hana district (3300ms)\nWhen did Hawaii become a state?\tthe basis\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, reported these finding on, the basis) -> the basis (3486ms)\nWhen did Hawaii become a state?\trelationships\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, have found, relationships) -> relationships (3423ms)\nWhen did Hawaii become a state?\ta Louisiana serial killer\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, helps find, a Louisiana serial killer) -> a Louisiana serial killer (3423ms)\nWhen did Hawaii become a state?\tTHANE JOSEF MESSINGER\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, can be found in, THANE JOSEF MESSINGER) -> THANE JOSEF MESSINGER (3474ms)\nWhen did Hawaii become a state?\tAugust 21st 1959\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (Hawaii, became the 50th state on, August 21st 1959) -> August 21st 1959 (3436ms)\nWhen did Hawaii become a state?\tthe federal shortfall\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, might have a head start on, the federal shortfall) -> the federal shortfall (3314ms)\nWhen did Hawaii become a state?\tthe Pacific\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii Queen Elizabeth, headed south west across, the Pacific) -> the Pacific (3423ms)\nWhen did Hawaii become a state?\tApril\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, can be found in, April) -> April (3328ms)\nWhen did Hawaii become a state?\tthe gallery\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found in, the gallery) -> the gallery (3461ms)\nWhen did Hawaii become a state?\tonline\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found, online) -> online (3423ms)\nWhen did Hawaii become a state?\tScott Sheppard Carme One\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Carme One) -> Scott Sheppard Carme One (3300ms)\nWhen did Hawaii become a state?\tBariatric Surgeons\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, Bariatric Surgeons) -> Bariatric Surgeons (3410ms)\nWhen did Hawaii become a state?\tsurf cam\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, live with, $x) -> (Hawaii, live with, surf cam) -> surf cam (3486ms)\nWhen did Hawaii become a state?\tgasoline\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, price, $x) -> (I. Hawaii, already has imposed price controls on, gasoline) -> gasoline (3397ms)\nWhen did Hawaii become a state?\tperformance venues\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, is important in finding, performance venues) -> performance venues (3436ms)\nWhen did Hawaii become a state?\tthe Big Island\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, is found on, the Big Island) -> the Big Island (3410ms)\nWhen did Hawaii become a state?\tLos Angeles\t0.999999999998\tWhen did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, was found in, Los Angeles) -> Los Angeles (3370ms)\nWhen did Hawaii become a state?\tplanes\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (planes, headed back to, Hawaii) -> planes (3606ms)\nWhen did Hawaii become a state?\tfruit trees\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (fruit trees, found in, Hawaii) -> fruit trees (3666ms)\nWhen did Hawaii become a state?\tEurasian pine adelgid\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Eurasian pine adelgid, found in, Hawaii) -> Eurasian pine adelgid (3666ms)\nWhen did Hawaii become a state?\tlucky folks\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (lucky folks, headed to, Hawaii) -> lucky folks (3598ms)\nWhen did Hawaii become a state?\tmusic\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (music, found in, Hawaii) -> music (3652ms)\nWhen did Hawaii become a state?\tSlack Key guitar\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (Slack Key guitar, was invented in, Hawaii) -> Slack Key guitar (3637ms)\nWhen did Hawaii become a state?\tthe marine life\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the marine life, found in, Hawaii) -> the marine life (3686ms)\nWhen did Hawaii become a state?\tVancouver Island\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size be, hawaii) -> (Vancouver Island, is twice the size of, Hawaii) -> Vancouver Island (3606ms)\nWhen did Hawaii become a state?\tthe strike force\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the strike force, headed for, Hawaii) -> the strike force (3630ms)\nWhen did Hawaii become a state?\tHistorically\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Historically, found in, Hawaii) -> Historically (3581ms)\nWhen did Hawaii become a state?\tThe original lamps\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The original lamps, were found in, Hawaii) -> The original lamps (3659ms)\nWhen did Hawaii become a state?\tJack\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Jack, heads for, Hawaii) -> Jack (3659ms)\nWhen did Hawaii become a state?\tThe highest resort room prices\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The highest resort room prices, were found in, Hawaii) -> The highest resort room prices (3537ms)\nWhen did Hawaii become a state?\thistoric ship\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (historic ship, found in, hawaii) -> historic ship (3680ms)\nWhen did Hawaii become a state?\tAsian companies\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Asian companies, find, Hawaii) -> Asian companies (3680ms)\nWhen did Hawaii become a state?\tA UCLA professor\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size, hawaii) -> (A UCLA professor, sizes up, Hawaii?s best art) -> A UCLA professor (3590ms)\nWhen did Hawaii become a state?\tplant\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (plant, found in, Hawaii) -> plant (3673ms)\nWhen did Hawaii become a state?\tthe Lincoln\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the Lincoln, is heading to, Hawaii) -> the Lincoln (3622ms)\nWhen did Hawaii become a state?\tAlaska\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Alaska, headed toward, Hawaii) -> Alaska (3528ms)\nWhen did Hawaii become a state?\tan airplane\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (an airplane, headed to, Hawaii) -> an airplane (3614ms)\nWhen did Hawaii become a state?\theliconia diseases\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (heliconia diseases, found in, Hawaii) -> heliconia diseases (3537ms)\nWhen did Hawaii become a state?\tAkule\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (Akule, found near, Hawaii) -> Akule (3637ms)\nWhen did Hawaii become a state?\tArlington\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Arlington, headed for, Hawaii) -> Arlington (3581ms)\nWhen did Hawaii become a state?\tintellect stand\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (intellect stand, find, Hawaii) -> intellect stand (3666ms)\nWhen did Hawaii become a state?\tthe fish\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the fish, found in, Hawaii) -> the fish (3666ms)\nWhen did Hawaii become a state?\tsharks\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (sharks, found around, Hawaii) -> sharks (3555ms)\nWhen did Hawaii become a state?\tI?m\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (I?m, headed for, Hawaii) -> I?m (3680ms)\nWhen did Hawaii become a state?\tcuisine\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (cuisine, can be found in, Hawaii) -> cuisine (3517ms)\nWhen did Hawaii become a state?\tthe affected area\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size be, hawaii) -> (the affected area, may be twice the size of, Hawaii) -> the affected area (3606ms)\nWhen did Hawaii become a state?\tthe largest petroglyph field\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the largest petroglyph field, found in, Hawaii) -> the largest petroglyph field (3652ms)\nWhen did Hawaii become a state?\tMormons\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Mormons, found within, hawaii) -> Mormons (3693ms)\nWhen did Hawaii become a state?\tThe salad bar\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (The salad bar, was invented in, Hawaii) -> The salad bar (3508ms)\nWhen did Hawaii become a state?\tThe gang\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The gang, heads to, Hawaii) -> The gang (3673ms)\nWhen did Hawaii become a state?\tYorktown\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Yorktown, headed for, Hawaii) -> Yorktown (3614ms)\nWhen did Hawaii become a state?\tthe stinker\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the stinker, headed to, Hawaii) -> the stinker (3673ms)\nWhen did Hawaii become a state?\tevery variety imaginable\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (every variety imaginable, can be found in, Hawaii) -> every variety imaginable (3686ms)\nWhen did Hawaii become a state?\tthe coral\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the coral, found in, Hawaii) -> the coral (3666ms)\nWhen did Hawaii become a state?\ta few years\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a few years, are headed back to, Hawaii) -> a few years (3630ms)\nWhen did Hawaii become a state?\tthe healthy , active lifestyle\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the healthy , active lifestyle, found in, Hawaii) -> the healthy , active lifestyle (3686ms)\nWhen did Hawaii become a state?\tPuerto Vallarta\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Puerto Vallarta, headed for, Hawaii) -> Puerto Vallarta (3622ms)\nWhen did Hawaii become a state?\tPeter\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Peter, heads off to, Hawaii) -> Peter (3637ms)\nWhen did Hawaii become a state?\tthe species\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the species, found in, Hawaii) -> the species (3680ms)\nWhen did Hawaii become a state?\ta teapot ?\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a teapot ?, headed to, hawaii) -> a teapot ? (3527ms)\nWhen did Hawaii become a state?\tyoure\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (youre, headed to, Hawaii) -> youre (3680ms)\nWhen did Hawaii become a state?\tAcropora corals\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Acropora corals, found in, Hawaii) -> Acropora corals (3659ms)\nWhen did Hawaii become a state?\tflowers\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (flowers, found in, Hawaii) -> flowers (3652ms)\nWhen did Hawaii become a state?\tNancy\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Nancy, is heading to, Hawaii) -> Nancy (3498ms)\nWhen did Hawaii become a state?\tAustin?s best athletes\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Austin?s best athletes, are headed to, Hawaii) -> Austin?s best athletes (3637ms)\nWhen did Hawaii become a state?\tSurfboards\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (Surfboards, were invented in, Hawaii) -> Surfboards (3666ms)\nWhen did Hawaii become a state?\tShannon Calloway\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Shannon Calloway, is heading to, Hawaii) -> Shannon Calloway (3598ms)\nWhen did Hawaii become a state?\tnumerous Acropora corals\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (numerous Acropora corals, found in, Hawaii) -> numerous Acropora corals (3666ms)\nWhen did Hawaii become a state?\tcritters and fish\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (critters and fish, found on, Hawaii) -> critters and fish (3686ms)\nWhen did Hawaii become a state?\tWednesday\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, price, hawaii) -> (Wednesday, has the highest average price in, Hawaii) -> Wednesday (3528ms)\nWhen did Hawaii become a state?\tthe tsunami\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the tsunami, headed for, Hawaii) -> the tsunami (3564ms)\nWhen did Hawaii become a state?\tthe first ship\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the first ship, headed for, Hawaii) -> the first ship (3546ms)\nWhen did Hawaii become a state?\tthe nivosus Monarch\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the nivosus Monarch, found in, Hawaii) -> the nivosus Monarch (3637ms)\nWhen did Hawaii become a state?\tTHE STEEL GUITAR\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (THE STEEL GUITAR, was invented in, Hawaii) -> THE STEEL GUITAR (3546ms)\nWhen did Hawaii become a state?\tthe airline industry\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the airline industry, found in, Hawaii) -> the airline industry (3680ms)\nWhen did Hawaii become a state?\tThe Jameses\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The Jameses, headed for, Hawaii) -> The Jameses (3598ms)\nWhen did Hawaii become a state?\tThe Burritos\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The Burritos, headed to, Hawaii) -> The Burritos (3555ms)\nWhen did Hawaii become a state?\tClinton\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Clinton, headed to, Hawaii) -> Clinton (3622ms)\nWhen did Hawaii become a state?\tseveral Acropora corals\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (several Acropora corals, found in, Hawaii) -> several Acropora corals (3686ms)\nWhen did Hawaii become a state?\tnatural phenomena\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (natural phenomena, found in, Hawaii) -> natural phenomena (3686ms)\nWhen did Hawaii become a state?\tStarchy cooking bananas\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Starchy cooking bananas, are also found in, Hawaii) -> Starchy cooking bananas (3537ms)\nWhen did Hawaii become a state?\tthe rich diverse cultures\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the rich diverse cultures, found in, Hawaii) -> the rich diverse cultures (3673ms)\nWhen did Hawaii become a state?\tOne dead turtle\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (One dead turtle, found off, Hawaii) -> One dead turtle (3573ms)\nWhen did Hawaii become a state?\tPier 6\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Pier 6, headed for, Hawaii) -> Pier 6 (3564ms)\nWhen did Hawaii become a state?\tf lowers\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (f lowers, found in, Hawaii) -> f lowers (3645ms)\nWhen did Hawaii become a state?\tthe native plants\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the native plants, found in, Hawaii) -> the native plants (3666ms)\nWhen did Hawaii become a state?\tthe only land mammal\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the only land mammal, is found exclusively in, Hawaii) -> the only land mammal (3537ms)\nWhen did Hawaii become a state?\ta common Garden Spider\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (a common Garden Spider, found in, Hawaii) -> a common Garden Spider (3686ms)\nWhen did Hawaii become a state?\tthe FBI\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, price, hawaii) -> (the FBI, simply took a lower-priced flight to, Hawaii Werksman) -> the FBI (3686ms)\nWhen did Hawaii become a state?\tThe Japanese naval fleet\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The Japanese naval fleet, heads to, Hawaii) -> The Japanese naval fleet (3546ms)\nWhen did Hawaii become a state?\t1.5 times larger\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size, hawaii) -> (1.5 times larger, 1/4 the size of, Hawaii) -> 1.5 times larger (3659ms)\nWhen did Hawaii become a state?\tMaui Activity Center\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, price, hawaii) -> (Maui Activity Center, offers great pricing on, Hawaii) -> Maui Activity Center (3645ms)\nWhen did Hawaii become a state?\tthe beautiful plant life\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the beautiful plant life, found in, Hawaii) -> the beautiful plant life (3680ms)\nWhen did Hawaii become a state?\tthe type\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the type, found in, Hawaii) -> the type (3637ms)\nWhen did Hawaii become a state?\tthe culture and values\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the culture and values, found in, Hawaii) -> the culture and values (3614ms)\nWhen did Hawaii become a state?\tthe sea turtles\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the sea turtles, found in, Hawaii) -> the sea turtles (3659ms)\nWhen did Hawaii become a state?\tNov 1 , 2011 | Pesky ants\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Nov 1 , 2011 | Pesky ants, found in, Hawaii) -> Nov 1 , 2011 | Pesky ants (3673ms)\nWhen did Hawaii become a state?\ta Tsunami\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a Tsunami, was heading to, Hawaii) -> a Tsunami (3659ms)\nWhen did Hawaii become a state?\tThe other two-thirds\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The other two-thirds, will head toward, Hawaii) -> The other two-thirds (3555ms)\nWhen did Hawaii become a state?\tTimberline\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Timberline, is headed to, Hawaii) -> Timberline (3652ms)\nWhen did Hawaii become a state?\t1997\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size, hawaii) -> (1997, covered an area the size of, Hawaii) -> 1997 (3606ms)\nWhen did Hawaii become a state?\tThe CDC\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (The CDC, also found, Hawaii) -> The CDC (3590ms)\nWhen did Hawaii become a state?\tordinary seedling carambolas\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (ordinary seedling carambolas, found in, Hawaii) -> ordinary seedling carambolas (3622ms)\nWhen did Hawaii become a state?\tThe sport\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The sport, finds its origins in, Hawaii) -> The sport (3573ms)\nWhen did Hawaii become a state?\tthe loveliest flowers\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the loveliest flowers, found in, Hawaii) -> the loveliest flowers (3622ms)\nWhen did Hawaii become a state?\tA rich fatty nut\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (A rich fatty nut, found in, Hawaii) -> A rich fatty nut (3606ms)\nWhen did Hawaii become a state?\tThe Colorado Rapids\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The Colorado Rapids, are heading to, Hawaii) -> The Colorado Rapids (3686ms)\nWhen did Hawaii become a state?\tthe beautiful flower\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the beautiful flower, found in, Hawaii) -> the beautiful flower (3645ms)\nWhen did Hawaii become a state?\tthe largest limestone cave\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the largest limestone cave, found in, Hawaii) -> the largest limestone cave (3598ms)\nWhen did Hawaii become a state?\tRent\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Rent, Find Apartments in, Hawaii) -> Rent (3537ms)\nWhen did Hawaii become a state?\tPresident Obama\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (President Obama, heads to, Hawaii) -> President Obama (3686ms)\nWhen did Hawaii become a state?\tMarcos\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Marcos, headed for, Hawaii) -> Marcos (3537ms)\nWhen did Hawaii become a state?\tCopic Certification Classes\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Copic Certification Classes, are headed to, Hawaii) -> Copic Certification Classes (3581ms)\nWhen did Hawaii become a state?\tSharp Seniors\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Sharp Seniors, found 541 Communities in, Hawaii) -> Sharp Seniors (3508ms)\nWhen did Hawaii become a state?\tOffice Communications Server2007R2\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Office Communications Server2007R2, can find, hawaii) -> Office Communications Server2007R2 (3692ms)\nWhen did Hawaii become a state?\tThe beaches\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The beaches, found in, Hawaii) -> The beaches (3680ms)\nWhen did Hawaii become a state?\tHolly ? Finding Jesus\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Holly ? Finding Jesus, headed off to, Hawaii) -> Holly ? Finding Jesus (3573ms)\nWhen did Hawaii become a state?\tDisney\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Disney, is heading to, Hawaii) -> Disney (3581ms)\nWhen did Hawaii become a state?\t8,800 native species\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (8,800 native species, found only in, Hawaii) -> 8,800 native species (3644ms)\nWhen did Hawaii become a state?\tthe president\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the president, headed to, Hawaii) -> the president (3564ms)\nWhen did Hawaii become a state?\tvarious beautify flowers\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (various beautify flowers, found in, Hawaii) -> various beautify flowers (3666ms)\nWhen did Hawaii become a state?\tThe main Game fish\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The main Game fish, found in, Hawaii) -> The main Game fish (3673ms)\nWhen did Hawaii become a state?\tHes\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Hes, headed to, Hawaii) -> Hes (3537ms)\nWhen did Hawaii become a state?\tthe beauty\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the beauty, found in, Hawaii) -> the beauty (3673ms)\nWhen did Hawaii become a state?\tthe stunning natural beauty\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the stunning natural beauty, found in, Hawaii) -> the stunning natural beauty (3680ms)\nWhen did Hawaii become a state?\tA related species\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (A related species, is found in, Hawaii) -> A related species (3590ms)\nWhen did Hawaii become a state?\tthe whole family\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the whole family, headed to, Hawaii) -> the whole family (3645ms)\nWhen did Hawaii become a state?\tthe spiritual traditions\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the spiritual traditions, found in, Hawaii) -> the spiritual traditions (3652ms)\nWhen did Hawaii become a state?\tthe Japanese carriers\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the Japanese carriers, were heading toward, Hawaii) -> the Japanese carriers (3546ms)\nWhen did Hawaii become a state?\tthe plants and animals\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the plants and animals, found in, Hawaii) -> the plants and animals (3680ms)\nWhen did Hawaii become a state?\tcoral species\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (coral species, found in, Hawaii) -> coral species (3573ms)\nWhen did Hawaii become a state?\tthe Happy Talk Lounge\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, price, hawaii) -> (the Happy Talk Lounge, had decent prices for, Hawaii) -> the Happy Talk Lounge (3629ms)\nWhen did Hawaii become a state?\tWere\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Were, headed to, Hawaii) -> Were (3645ms)\nWhen did Hawaii become a state?\tthe breathtaking beauty\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the breathtaking beauty, found in, Hawaii) -> the breathtaking beauty (3686ms)\nWhen did Hawaii become a state?\tthe size\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size, hawaii) -> (the size, 1/4 the size of, Hawaii) -> the size (3666ms)\nWhen did Hawaii become a state?\tairfare\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, price, hawaii) -> (airfare, is priced to, Hawaii) -> airfare (3528ms)\nWhen did Hawaii become a state?\tthe ethnic influences\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the ethnic influences, found in, Hawaii) -> the ethnic influences (3673ms)\nWhen did Hawaii become a state?\tKalil\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Kalil, is headed to, Hawaii) -> Kalil (3686ms)\nWhen did Hawaii become a state?\tgrasses\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (grasses, found in, Hawaii) -> grasses (3537ms)\nWhen did Hawaii become a state?\tMexico\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Mexico, headed for, Hawaii) -> Mexico (3498ms)\nWhen did Hawaii become a state?\t4 properties\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (4 properties, found, Hawaii) -> 4 properties (3680ms)\nWhen did Hawaii become a state?\tSan Diego\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (San Diego, then headed for, Hawaii) -> San Diego (3693ms)\nWhen did Hawaii become a state?\tSurfing\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (Surfing, was invented in, Hawaii) -> Surfing (3686ms)\nWhen did Hawaii become a state?\tan animal\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (an animal, found in, Hawaii) -> an animal (3686ms)\nWhen did Hawaii become a state?\tFinal 3 teams\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Final 3 teams, head to, Hawaii) -> Final 3 teams (3590ms)\nWhen did Hawaii become a state?\tthe trees\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the trees, found in, Hawaii) -> the trees (3622ms)\nWhen did Hawaii become a state?\tThe contestants\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The contestants, head to, Hawaii) -> The contestants (3666ms)\nWhen did Hawaii become a state?\tMore Aussies\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (More Aussies, are heading to, Hawaii) -> More Aussies (3564ms)\nWhen did Hawaii become a state?\tthe 2011 I\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the 2011 I, headed to, Hawaii) -> the 2011 I (3630ms)\nWhen did Hawaii become a state?\tthe only bats\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the only bats, found in, Hawaii) -> the only bats (3629ms)\nWhen did Hawaii become a state?\tIll\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Ill, be heading to, Hawaii) -> Ill (3564ms)\nWhen did Hawaii become a state?\ttravelers\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (travelers, heading to, Hawaii) -> travelers (3598ms)\nWhen did Hawaii become a state?\tthe Endangered Species Act?26 percent?are\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the Endangered Species Act?26 percent?are, found in, Hawaii) -> the Endangered Species Act?26 percent?are (3693ms)\nWhen did Hawaii become a state?\tCam Newton\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Cam Newton, is headed to, Hawaii) -> Cam Newton (3637ms)\nWhen did Hawaii become a state?\tthe only bat\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the only bat, found in, Hawaii) -> the only bat (3630ms)\nWhen did Hawaii become a state?\ttwo and one\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (two and one, is heading for, Hawaii) -> two and one (3546ms)\nWhen did Hawaii become a state?\tyoud\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (youd, find in, Hawaii) -> youd (3666ms)\nWhen did Hawaii become a state?\tVance\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Vance, headed for, Hawaii) -> Vance (3630ms)\nWhen did Hawaii become a state?\ta map\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (a map, find, Hawaii) -> a map (3652ms)\nWhen did Hawaii become a state?\tthe couple\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the couple, is headed for, Hawaii) -> the couple (3606ms)\nWhen did Hawaii become a state?\ta tropical plant\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (a tropical plant, found in, Hawaii) -> a tropical plant (3652ms)\nWhen did Hawaii become a state?\tthe scenic beauty\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the scenic beauty, found in, Hawaii) -> the scenic beauty (3622ms)\nWhen did Hawaii become a state?\tthe finest quality\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the finest quality, found in, Hawaii) -> the finest quality (3666ms)\nWhen did Hawaii become a state?\tthe pukas\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the pukas, were found here in, Hawaii) -> the pukas (3517ms)\nWhen did Hawaii become a state?\tPresident Hu Jintao\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (President Hu Jintao, heads to, Hawaii) -> President Hu Jintao (3659ms)\nWhen did Hawaii become a state?\ta boat\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a boat, heading to, Hawaii) -> a boat (3673ms)\nWhen did Hawaii become a state?\tthe volcanoes\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the volcanoes, found in, Hawaii) -> the volcanoes (3680ms)\nWhen did Hawaii become a state?\tThe ship\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The ship, headed for, Hawaii) -> The ship (3590ms)\nWhen did Hawaii become a state?\tElvis\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Elvis, headed to, Hawaii) -> Elvis (3606ms)\nWhen did Hawaii become a state?\tthe beaked whales\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the beaked whales, found in, Hawaii) -> the beaked whales (3622ms)\nWhen did Hawaii become a state?\tthe largest lizards\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the largest lizards, found in, Hawaii) -> the largest lizards (3630ms)\nWhen did Hawaii become a state?\tRoy Yamaguchi\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (Roy Yamaguchi, invented, Hawaii) -> Roy Yamaguchi (3573ms)\nWhen did Hawaii become a state?\tRent listings\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Rent listings, found in, Hawaii) -> Rent listings (3686ms)\nWhen did Hawaii become a state?\ta debate plant\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (a debate plant, found in, hawaii) -> a debate plant (3652ms)\nWhen did Hawaii become a state?\tThuringia\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size be, hawaii) -> (Thuringia, is a similar size to, Hawaii) -> Thuringia (3564ms)\nWhen did Hawaii become a state?\tthe largest Nudibranch\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the largest Nudibranch, found in, Hawaii) -> the largest Nudibranch (3546ms)\nWhen did Hawaii become a state?\tObama\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Obama, heading to, Hawaii) -> Obama (3659ms)\nWhen did Hawaii become a state?\tHawaii?s schools\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (Hawaii?s schools, found, Hawaii) -> Hawaii?s schools (3622ms)\nWhen did Hawaii become a state?\tthe best flower place I?ve\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the best flower place I?ve, found in, Hawaii) -> the best flower place I?ve (3673ms)\nWhen did Hawaii become a state?\tRalisia\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Ralisia, found in, Hawaii) -> Ralisia (3590ms)\nWhen did Hawaii become a state?\tJerry and Soozi Pate\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Jerry and Soozi Pate, were headed to, Hawaii) -> Jerry and Soozi Pate (3555ms)\nWhen did Hawaii become a state?\thula\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found, hawaii) -> (hula, found in, Hawaii) -> hula (3598ms)\nWhen did Hawaii become a state?\tAmerican Samoa Togiola Tulafono\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (American Samoa Togiola Tulafono, has headed to, Hawaii) -> American Samoa Togiola Tulafono (3645ms)\nWhen did Hawaii become a state?\tThe Serengeti National park\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size, hawaii) -> (The Serengeti National park, is almost the size of, Hawaii) -> The Serengeti National park (3692ms)\nWhen did Hawaii become a state?\tfood\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (food, is headed in, Hawaii) -> food (3659ms)\nWhen did Hawaii become a state?\tthe ice form\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the ice form, is primarily found in, Hawaii) -> the ice form (3598ms)\nWhen did Hawaii become a state?\tThe proposed island\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, size, hawaii) -> (The proposed island, would be the size of, Hawaii) -> The proposed island (3673ms)\nWhen did Hawaii become a state?\tsad devastation\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (sad devastation, is headed towards, Hawaii) -> sad devastation (3546ms)\nWhen did Hawaii become a state?\ta tsunami\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a tsunami, is heading for, Hawaii) -> a tsunami (3573ms)\nWhen did Hawaii become a state?\tout\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (out, is headed to, Hawaii) -> out (3555ms)\nWhen did Hawaii become a state?\tThe two species\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The two species, found in, Hawaii) -> The two species (3680ms)\nWhen did Hawaii become a state?\ta plane\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a plane, heading to, Hawaii) -> a plane (3590ms)\nWhen did Hawaii become a state?\ta plant\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, find, hawaii) -> (a plant, found in, Hawaii) -> a plant (3637ms)\nWhen did Hawaii become a state?\tthe other flowers\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the other flowers, found in, Hawaii) -> the other flowers (3686ms)\nWhen did Hawaii become a state?\tBoner\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Boner, headed to, Hawaii) -> Boner (3680ms)\nWhen did Hawaii become a state?\tStanford\t0.666666666666\tWhen did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Stanford, headed for, Hawaii) -> Stanford (3528ms)\nWhen did Hawaii become a state?\tU.S.A.\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the 50th state of, U.S.A.) -> U.S.A. (3693ms)\nWhen did Hawaii become a state?\tThe Union\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (' Hawaii, Is A State Of, The Union) -> The Union (3698ms)\nWhen did Hawaii become a state?\tHawaii Dept\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (all green coffee leaving Hawaii, must be State of, Hawaii Dept) -> Hawaii Dept (3693ms)\nWhen did Hawaii become a state?\tmind\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (your Hawaii beach vacation, is all a state of, mind) -> mind (3703ms)\nWhen did Hawaii become a state?\tthe art\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (these Hawaii Helicopter Tours, are state of, the art) -> the art (3698ms)\nWhen did Hawaii become a state?\tUnited States\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the only state of, United States) -> United States (3707ms)\nWhen did Hawaii become a state?\tthe usa\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, being the 50th State of, the usa) -> the usa (3693ms)\nWhen did Hawaii become a state?\tkaneohe\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (HAWAII, is the capital city of the state or province, kaneohe) -> kaneohe (3707ms)\nWhen did Hawaii become a state?\tnow\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is part of the United States, now) -> now (3703ms)\nWhen did Hawaii become a state?\tthe union\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the 50th state of, the union) -> the union (3703ms)\nWhen did Hawaii become a state?\tislands\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is a state comprised of, islands) -> islands (3703ms)\nWhen did Hawaii become a state?\tfresh produce\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is a state full of, fresh produce) -> fresh produce (3703ms)\nWhen did Hawaii become a state?\tthe USA , right\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the 50th state of, the USA , right) -> the USA , right (3693ms)\nWhen did Hawaii become a state?\tthe 50 United States\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the last state of, the 50 United States) -> the 50 United States (3703ms)\nWhen did Hawaii become a state?\tUSA\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii USA, is the state of, USA) -> USA (3698ms)\nWhen did Hawaii become a state?\trugged slopes\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is a state of, rugged slopes) -> rugged slopes (3698ms)\nWhen did Hawaii become a state?\tthe US.\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the 50th state of, the US.) -> the US. (3707ms)\nWhen did Hawaii become a state?\tchoice\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, has been the state of, choice) -> choice (3707ms)\nWhen did Hawaii become a state?\tThe united states\t0.44444444445199993\tWhen did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (THAT HAWAII, IS A STATE OF, The united states) -> The united states (3698ms)\nWhen did Hawaii become a state?\tRoger B. Evans\t0.22222222222099997\tWhen did Hawaii become a state? -> $x: ($x, found, state of hawaii) -> (Roger B. Evans, can be found on Wikipedia at, http://en.wikipedia.org/wiki/United%20States%20House%20of%20Representatives%20elections%20in%20Hawaii,%202008) -> Roger B. Evans (3707ms)\nWhen did Hawaii become a state?\tthe best beaches\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Water Safety Task Force, Find, the best beaches) -> the best beaches (3766ms)\nWhen did Hawaii become a state?\thttp://en.wikipedia.org/wiki/Spelaeorchestia\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Cave Amphipod, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Spelaeorchestia) -> http://en.wikipedia.org/wiki/Spelaeorchestia (3766ms)\nWhen did Hawaii become a state?\tViator Links &\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (More Kauai Resources, Find Things to Do, Viator Links &) -> Viator Links & (3767ms)\nWhen did Hawaii become a state?\thttp://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BBAkialoa\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai 'Akialoa, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BBAkialoa) -> http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BBAkialoa (3767ms)\nWhen did Hawaii become a state?\tpattern\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (more Kauai, found, pattern) -> pattern (3766ms)\nWhen did Hawaii become a state?\tan underwater paradise\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, find, an underwater paradise) -> an underwater paradise (3766ms)\nWhen did Hawaii become a state?\tHoloholoku\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kaua'i, can be found at, Holoholoku) -> Holoholoku (3767ms)\nWhen did Hawaii become a state?\tcheap car rental rates\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai car rental discounts, find, cheap car rental rates) -> cheap car rental rates (3767ms)\nWhen did Hawaii become a state?\tresidential homes\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai real estate listings, find, residential homes) -> residential homes (3766ms)\nWhen did Hawaii become a state?\tthe beaten path\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Our Kauai rentals, are found off, the beaten path) -> the beaten path (3767ms)\nWhen did Hawaii become a state?\thttp://en.wikipedia.org/wiki/Kauai%20County,%20Hawaii\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (kauai county, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kauai%20County,%20Hawaii) -> http://en.wikipedia.org/wiki/Kauai%20County,%20Hawaii (3767ms)\nWhen did Hawaii become a state?\tKapaa Kauai\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found in, $x) -> (text/html Kapaa Kauai Hotels, Find hotels in, Kapaa Kauai) -> Kapaa Kauai (3767ms)\nWhen did Hawaii become a state?\tvacation rentals & condos\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Island, find special deals on, vacation rentals & condos) -> vacation rentals & condos (3767ms)\nWhen did Hawaii become a state?\thttp://en.wikipedia.org/wiki/Kauai%20County%20Police%20Department\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai County Police Department, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kauai%20County%20Police%20Department) -> http://en.wikipedia.org/wiki/Kauai%20County%20Police%20Department (3767ms)\nWhen did Hawaii become a state?\tpatrolling\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, was found, patrolling) -> patrolling (3766ms)\nWhen did Hawaii become a state?\tthe booking letters\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, will be found on, the booking letters) -> the booking letters (3766ms)\nWhen did Hawaii become a state?\ttrout\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai visitors, find, trout) -> trout (3766ms)\nWhen did Hawaii become a state?\thttp://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BB%C5%8C%CA%BB%C5%8D\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Oo, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BB%C5%8C%CA%BB%C5%8D) -> http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BB%C5%8C%CA%BB%C5%8D (3767ms)\nWhen did Hawaii become a state?\tRentalo.com\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai lodgings, can be found on, Rentalo.com) -> Rentalo.com (3767ms)\nWhen did Hawaii become a state?\tthe midst\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, found in, the midst) -> the midst (3767ms)\nWhen did Hawaii become a state?\tresorts\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found in, $x) -> (Kauai, can be found in, resorts) -> resorts (3766ms)\nWhen did Hawaii become a state?\thttp://en.wikipedia.org/wiki/Kaua%CA%BBi%20cave%20wolf%20spider\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai cave wolf spider, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kaua%CA%BBi%20cave%20wolf%20spider) -> http://en.wikipedia.org/wiki/Kaua%CA%BBi%20cave%20wolf%20spider (3766ms)\nWhen did Hawaii become a state?\tOahu\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, can also be found on, Oahu) -> Oahu (3767ms)\nWhen did Hawaii become a state?\tthe beaches\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai shells, can also be found on, the beaches) -> the beaches (3766ms)\nWhen did Hawaii become a state?\tNOAA biologists\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai pup, was found by, NOAA biologists) -> NOAA biologists (3767ms)\nWhen did Hawaii become a state?\tkayaking\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai you?ll, find, kayaking) -> kayaking (3767ms)\nWhen did Hawaii become a state?\thttp://en.wikipedia.org/wiki/Kaua%CA%BBi%20Nukupu%CA%BBu\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Nukupu'u, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kaua%CA%BBi%20Nukupu%CA%BBu) -> http://en.wikipedia.org/wiki/Kaua%CA%BBi%20Nukupu%CA%BBu (3766ms)\nWhen did Hawaii become a state?\tthe southern shore\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, is found along, the southern shore) -> the southern shore (3767ms)\nWhen did Hawaii become a state?\tCheap UK Flights\t-0.0\tWhen did Hawaii become a state? -> $x: (kauai, found, $x) -> (even more Kauai adventur, Find, Cheap UK Flights) -> Cheap UK Flights (3766ms)\nWhy is the sun yellow?\tevery society\t-0.888888888889\tWhy is the sun yellow? -> $x: (yellow, be sun in, $x) -> (Yellow, is associated with the sun In, every society) -> every society (766ms)\nWhy is the sun yellow?\ta planet\t-1.1111111111110001\tWhy is the sun yellow? -> $x: ($x, orbit, yellow) -> (a planet, orbiting, a yellow star) -> a planet (915ms)\nWhy is the sun yellow?\ta faraway blue planet\t-1.1111111111110001\tWhy is the sun yellow? -> $x: ($x, orbit, yellow) -> (a faraway blue planet, discovered orbiting, a yellow sun) -> a faraway blue planet (916ms)\nWhy is the sun yellow?\ta small planet\t-1.1111111111110001\tWhy is the sun yellow? -> $x: ($x, orbit, yellow) -> (a small planet, orbiting, a yellow star) -> a small planet (916ms)\nWhy is the sun yellow?\ta Jupiter-sized gaseous planet\t-1.1111111111110001\tWhy is the sun yellow? -> $x: ($x, orbit, yellow) -> (a Jupiter-sized gaseous planet, orbiting, a yellow dwarf) -> a Jupiter-sized gaseous planet (915ms)\nWhy is the sun yellow?\tthe moving stars\t-1.1111111111110001\tWhy is the sun yellow? -> $x: ($x, orbit, yellow) -> (the moving stars, are actually orbiting around, the yellow cross) -> the moving stars (916ms)\nWhy is the sun yellow?\tan Earth-like planet\t-1.1111111111110001\tWhy is the sun yellow? -> $x: ($x, orbit, yellow) -> (an Earth-like planet, orbiting, a yellow star) -> an Earth-like planet (916ms)\nWhy is the sun yellow?\tTalasea\t-1.1111111111110001\tWhy is the sun yellow? -> $x: ($x, orbit, yellow) -> (Talasea, orbits, the yellow primary star) -> Talasea (916ms)\nWhy is the sun yellow?\tthe moon Phoebe\t-1.333333333334\tWhy is the sun yellow? -> $x: (yellow, orbit, $x) -> (The yellow line, shows the orbit of, the moon Phoebe) -> the moon Phoebe (1145ms)\nWhat is the population of Venezuela?\tChile\t1.6666666666640002\tWhat is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, were growing like, Chile) -> Chile (1984ms)\nWhat is the population of Venezuela?\tRussia\t1.6666666666640002\tWhat is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, is like, Russia) -> Russia (1984ms)\nWhat is the population of Venezuela?\tthe Paris Commune\t1.6666666666640002\tWhat is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, was very much like, the Paris Commune) -> the Paris Commune (1984ms)\nWhat is the population of Venezuela?\tBrazil\t1.6666666666640002\tWhat is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Colombia and Venezuela, are much like, Brazil) -> Brazil (1984ms)\nWhat is the population of Venezuela?\tTexas\t1.6666666666640002\tWhat is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (( Venezuela, is a bit like, Texas) -> Texas (1984ms)\nWhat is the population of Venezuela?\tZimbabwe\t1.6666666666640002\tWhat is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, will turn out to be more like, Zimbabwe) -> Zimbabwe (1984ms)\nWhat is the population of Venezuela?\tCuba\t1.6666666666640002\tWhat is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, is nothing like, Cuba) -> Cuba (1984ms)\nWhat is the population of Venezuela?\ta message\t1.6666666666640002\tWhat is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, was like sending, a message) -> a message (1984ms)\nWhat is the population of Venezuela?\tEmerald Toucanets\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Emerald Toucanets, are found in, Venezuela) -> Emerald Toucanets (3347ms)\nWhat is the population of Venezuela?\tthe Roraima formation\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the Roraima formation, are found in, Venezuela or Guyana) -> the Roraima formation (3077ms)\nWhat is the population of Venezuela?\tthe highest mobile penetration rates\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the highest mobile penetration rates, can be found in, Venezuela) -> the highest mobile penetration rates (2431ms)\nWhat is the population of Venezuela?\tvenezuela national football team\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (venezuela national football team, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Venezuela%20national%20football%20team) -> venezuela national football team (2998ms)\nWhat is the population of Venezuela?\tcommodity quality cacao beans\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (commodity quality cacao beans, found in, Venezuela) -> commodity quality cacao beans (3077ms)\nWhat is the population of Venezuela?\tmiss venezuela\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (miss venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Miss%20Venezuela) -> miss venezuela (3347ms)\nWhat is the population of Venezuela?\tabout 200 different wild types\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (about 200 different wild types, found from, Venezuela) -> about 200 different wild types (2054ms)\nWhat is the population of Venezuela?\tStupendemys\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Stupendemys, have been found in, Venezuela) -> Stupendemys (2998ms)\nWhat is the population of Venezuela?\tthe 1,300 bird species\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the 1,300 bird species, found in, Venezuela) -> the 1,300 bird species (3400ms)\nWhat is the population of Venezuela?\tsuch songs\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (such songs, are also found in, southern Venezuela) -> such songs (3400ms)\nWhat is the population of Venezuela?\tThe other leaders\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (The other leaders, allegedly found refuge in, Venezuela) -> The other leaders (2054ms)\nWhat is the population of Venezuela?\tthe species\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the species, found in, Venezuela) -> the species (2998ms)\nWhat is the population of Venezuela?\tvuelta_a_venezuela\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (vuelta_a_venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Vuelta%20a%20Venezuela) -> vuelta_a_venezuela (3077ms)\nWhat is the population of Venezuela?\tOil sands\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Oil sands, are found in, Canada and Venezuela) -> Oil sands (3347ms)\nWhat is the population of Venezuela?\tthe highest dropping waterfalls\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the highest dropping waterfalls, is found in, Venezuela) -> the highest dropping waterfalls (2054ms)\nWhat is the population of Venezuela?\tcommunist party of venezuela\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (communist party of venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Communist%20Party%20of%20Venezuela) -> communist party of venezuela (3023ms)\nWhat is the population of Venezuela?\tleaders\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (leaders, found in, Venezuela) -> leaders (2298ms)\nWhat is the population of Venezuela?\tthe same natives\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the same natives, found today in, Guyana and Venezuela) -> the same natives (2431ms)\nWhat is the population of Venezuela?\ta law one\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (a law one, would expect to find in, Hugo Chavez?s Venezuela) -> a law one (2431ms)\nWhat is the population of Venezuela?\tHuman Rights\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Human Rights, have repeatedly found, Venezuela responsible) -> Human Rights (3077ms)\nWhat is the population of Venezuela?\tInfo Venezuela\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Info Venezuela, Find out more about, Venezuela) -> Info Venezuela (2297ms)\nWhat is the population of Venezuela?\tthe northern coast\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the northern coast, was used to found, Venezuela) -> the northern coast (2998ms)\nWhat is the population of Venezuela?\tLand Cruisers\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Land Cruisers, quickly found their way to, Venezuela) -> Land Cruisers (3023ms)\nWhat is the population of Venezuela?\tthe capability\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the capability, found in, Venezuela) -> the capability (3023ms)\nWhat is the population of Venezuela?\tWilson Ramos\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Wilson Ramos, found safe in, Venezuela) -> Wilson Ramos (3023ms)\nWhat is the population of Venezuela?\tIran\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Iran, has actually found in, Venezuela) -> Iran (2431ms)\nWhat is the population of Venezuela?\tvarious animals\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (various animals, found, quick-frozen Venezuela) -> various animals (2298ms)\nWhat is the population of Venezuela?\tL & L International\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (L & L International, find, VenezuelaUsed Aircraft) -> L & L International (3077ms)\nWhat is the population of Venezuela?\tconcerned Colombian rebels\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (concerned Colombian rebels, are finding refuge in, Venezuela) -> concerned Colombian rebels (2298ms)\nWhat is the population of Venezuela?\tThe Andean Condor\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (The Andean Condor, can be found in, Venezuela) -> The Andean Condor (3347ms)\nWhat is the population of Venezuela?\tThe vast majority\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (The vast majority, is found in, Canada and Venezuela) -> The vast majority (3347ms)\nWhat is the population of Venezuela?\tamethystinus\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (amethystinus, is found in, Venezuela) -> amethystinus (3399ms)\nWhat is the population of Venezuela?\tRoman coins\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Roman coins, have been found in, Venezuela and Maine) -> Roman coins (2431ms)\nWhat is the population of Venezuela?\tthe bodies of the three victims\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the bodies of the three victims, were found in, Venezuela) -> the bodies of the three victims (2999ms)\nWhat is the population of Venezuela?\tuniversity professor\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (university professor, can find a counterpart in, Venezuela) -> university professor (2999ms)\nWhat is the population of Venezuela?\tLichen genus\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Lichen genus, found in, Venezuela) -> Lichen genus (2054ms)\nWhat is the population of Venezuela?\tThe species\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (The species, is found in, Venezuela) -> The species (2054ms)\nWhat is the population of Venezuela?\tBermuda\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Bermuda, have been found overseas in, Venezuela) -> Bermuda (2053ms)\nWhat is the population of Venezuela?\tReformed Catholic Church\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Reformed Catholic Church, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Reformed%20Catholic%20Church%20(Venezuela)) -> Reformed Catholic Church (3023ms)\nWhat is the population of Venezuela?\tOjeda\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Ojeda, finds, the Guinanas and Venezuela) -> Ojeda (3399ms)\nWhat is the population of Venezuela?\tseveral species\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (several species, found in, Venezuela) -> several species (2298ms)\nWhat is the population of Venezuela?\tyou?ll\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (you?ll, find valuable advices about, venezuela travel) -> you?ll (3023ms)\nWhat is the population of Venezuela?\tUnited Socialist Party of Venezuela\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (United Socialist Party of Venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/United%20Socialist%20Party%20of%20Venezuela) -> United Socialist Party of Venezuela (2298ms)\nWhat is the population of Venezuela?\tthe Cuban Government\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the Cuban Government, found in, Hugo Chavez?s Venezuela) -> the Cuban Government (3399ms)\nWhat is the population of Venezuela?\tthe three victims\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the three victims, were found in, Venezuela) -> the three victims (3347ms)\nWhat is the population of Venezuela?\tFast\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Fast, Find by using, Drop-down Box Venezuela) -> Fast (2998ms)\nWhat is the population of Venezuela?\tthe commission\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the commission, found against, Venezuela) -> the commission (3399ms)\nWhat is the population of Venezuela?\tAn arm\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (An arm, found off the coast of, Venezuela) -> An arm (2054ms)\nWhat is the population of Venezuela?\tan Atlantic island\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (an Atlantic island, found north of, Venezuela) -> an Atlantic island (2998ms)\nWhat is the population of Venezuela?\theavy bituminous oil\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (heavy bituminous oil, found chiefly in, Canada and Venezuela) -> heavy bituminous oil (3347ms)\nWhat is the population of Venezuela?\tPhoberomys\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Phoberomys, was found in, Venezuela) -> Phoberomys (3077ms)\nWhat is the population of Venezuela?\tFidel Castro\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Fidel Castro, has found a new economic sponsor in, Venezuela) -> Fidel Castro (3023ms)\nWhat is the population of Venezuela?\tlobbying government\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (lobbying government, can be found in, Venezuela) -> lobbying government (2431ms)\nWhat is the population of Venezuela?\tDependencias Federales\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Dependencias Federales, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Federal%20Dependencies%20of%20Venezuela) -> Dependencias Federales (2054ms)\nWhat is the population of Venezuela?\tSmart phones\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Smart phones, have found wide acceptance in, Venezuela) -> Smart phones (3347ms)\nWhat is the population of Venezuela?\tAnti-Semitism\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Anti-Semitism, is routinely found in, Venezuela) -> Anti-Semitism (3399ms)\nWhat is the population of Venezuela?\tmilk , meat and toilet paper\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (milk , meat and toilet paper, are hard to find in, Venezuela) -> milk , meat and toilet paper (3399ms)\nWhat is the population of Venezuela?\tD. biflora\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (D. biflora, found in, Venezuela) -> D. biflora (2431ms)\nWhat is the population of Venezuela?\tPunto\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Punto, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Punto%20(Venezuela)) -> Punto (3077ms)\nWhat is the population of Venezuela?\tBanco de Venezuela\t1.555555555553\tWhat is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Banco de Venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Banco%20de%20Venezuela) -> Banco de Venezuela (3076ms)\nWhat is the population of Venezuela?\tthe units\t1.444444444443\tWhat is the population of Venezuela? -> $x: (venezuelum, be size, $x) -> (Venezuela, is the size of, the units) -> the units (3423ms)\nWhat is the population of Venezuela?\tCalifornia\t1.444444444443\tWhat is the population of Venezuela? -> $x: (venezuelum, be size, $x) -> (Venezuela, is about twice the size of, California) -> California (3423ms)\nWhat is the population of Venezuela?\tthe Middle East\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (the Middle East, were discovered in, Venezuela) -> the Middle East (3423ms)\nWhat is the population of Venezuela?\tOil\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Oil, was discovered in, Venezuela) -> Oil (3692ms)\nWhat is the population of Venezuela?\tOrlando A. Naranjo\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Orlando A. Naranjo, Astronomical objects discovered, 9357 Venezuela) -> Orlando A. Naranjo (3692ms)\nWhat is the population of Venezuela?\tthe continent\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (the continent, were also discovered in, Venezuela and Peru) -> the continent (3692ms)\nWhat is the population of Venezuela?\t24 March television\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (24 March television, suddenly discovered, a Venezuela) -> 24 March television (3423ms)\nWhat is the population of Venezuela?\toil\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (oil, was discovered in, nearby Venezuela) -> oil (3692ms)\nWhat is the population of Venezuela?\tMAN Oil\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (MAN Oil, was first discovered in, northwestern Venezuela) -> MAN Oil (3423ms)\nWhat is the population of Venezuela?\tColumbus\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Columbus, discovered the area of, Venezuela) -> Columbus (3692ms)\nWhat is the population of Venezuela?\tThirty years earlier oil\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Thirty years earlier oil, had been discovered in, Venezuela) -> Thirty years earlier oil (3423ms)\nWhat is the population of Venezuela?\tJapan\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Japan, discovered the beautiful side of, an often ugly Venezuela) -> Japan (3692ms)\nWhat is the population of Venezuela?\tBIRDWATCHING Birders\t1.444444444442\tWhat is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (BIRDWATCHING Birders, have long discovered, Venezuela) -> BIRDWATCHING Birders (3423ms)\nWhat is the population of Venezuela?\tthe family\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the family, is in, Venezuela) -> the family (3765ms)\nWhat is the population of Venezuela?\tMaracay\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Maracay, is a city located in the country, venezuela) -> Maracay (3765ms)\nWhat is the population of Venezuela?\tDavid Smilde\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (David Smilde, were in, Venezuela) -> David Smilde (3742ms)\nWhat is the population of Venezuela?\tthe rainy season\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the rainy season, is in, Venezuela) -> the rainy season (3776ms)\nWhat is the population of Venezuela?\tIrish filmmakers\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Irish filmmakers, were in, Venezuela) -> Irish filmmakers (3742ms)\nWhat is the population of Venezuela?\tCastro\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Castro, is in, venezuela) -> Castro (3765ms)\nWhat is the population of Venezuela?\t1973 Father Aguirre\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (1973 Father Aguirre, was in, Venezuela) -> 1973 Father Aguirre (3754ms)\nWhat is the population of Venezuela?\tthe Moras\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the Moras, are in, Venezuela) -> the Moras (3776ms)\nWhat is the population of Venezuela?\tIranian?s president\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Iranian?s president, is in, Venezuela) -> Iranian?s president (3754ms)\nWhat is the population of Venezuela?\tPuerto La Cruz\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Puerto La Cruz, is a city located in the country, venezuela) -> Puerto La Cruz (3742ms)\nWhat is the population of Venezuela?\tthe FARC\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the FARC, are in, Venezuela) -> the FARC (3692ms)\nWhat is the population of Venezuela?\tthe situation\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the situation, is in, Venezuela) -> the situation (3731ms)\nWhat is the population of Venezuela?\tGaddafi\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Gaddafi, was in, Venezuela) -> Gaddafi (3765ms)\nWhat is the population of Venezuela?\tChavez\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Chavez, is in, Venezuela) -> Chavez (3765ms)\nWhat is the population of Venezuela?\tLula\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Lula, was in, Venezuela) -> Lula (3743ms)\nWhat is the population of Venezuela?\tIranian President Mahmoud Ahmadinejad\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Iranian President Mahmoud Ahmadinejad, is in, Venezuela) -> Iranian President Mahmoud Ahmadinejad (3731ms)\nWhat is the population of Venezuela?\tthe world gas proved reserve\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the world gas proved reserve, are in, Venezuela) -> the world gas proved reserve (3765ms)\nWhat is the population of Venezuela?\tyesterday\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (yesterday, was in, Venezuela) -> yesterday (3731ms)\nWhat is the population of Venezuela?\tRamos\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Ramos, was in, Venezuela) -> Ramos (3776ms)\nWhat is the population of Venezuela?\tthe wife\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the wife, is in, Venezuela) -> the wife (3776ms)\nWhat is the population of Venezuela?\tStandard\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Standard, was in, Venezuela) -> Standard (3731ms)\nWhat is the population of Venezuela?\t1997 and 1998 Economides\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (1997 and 1998 Economides, was in, Venezuela) -> 1997 and 1998 Economides (3754ms)\nWhat is the population of Venezuela?\tthe other two\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the other two, are in, Venezuela) -> the other two (3776ms)\nWhat is the population of Venezuela?\tHugo Chavez\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Hugo Chavez, is in, Venezuela) -> Hugo Chavez (3765ms)\nWhat is the population of Venezuela?\tThe order 's first house outside India\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The order 's first house outside India, was in, Venezuela) -> The order 's first house outside India (3753ms)\nWhat is the population of Venezuela?\tAssad\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Assad, is in, Venezuela) -> Assad (3754ms)\nWhat is the population of Venezuela?\tAhmadinejad\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Ahmadinejad, was in, Venezuela) -> Ahmadinejad (3776ms)\nWhat is the population of Venezuela?\tRabbani\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Rabbani, was in, Venezuela) -> Rabbani (3776ms)\nWhat is the population of Venezuela?\tThe projects\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The projects, are in, Venezuela) -> The projects (3776ms)\nWhat is the population of Venezuela?\tGeneral\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (General, is a specific automobile maker dealer in, venezuela) -> General (3742ms)\nWhat is the population of Venezuela?\tThe CRP\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The CRP, is in, Venezuela) -> The CRP (3731ms)\nWhat is the population of Venezuela?\tformer KGB operative Vladimir Putin\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (former KGB operative Vladimir Putin, was in, Venezuela) -> former KGB operative Vladimir Putin (3765ms)\nWhat is the population of Venezuela?\tAhmadi-Nejad\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Ahmadi-Nejad, was in, Venezuela) -> Ahmadi-Nejad (3692ms)\nWhat is the population of Venezuela?\tCarl Tranter MSC\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Carl Tranter MSC, were in, Venezuela) -> Carl Tranter MSC (3731ms)\nWhat is the population of Venezuela?\tthe Hoff\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the Hoff, is in down in, Venezuela) -> the Hoff (3754ms)\nWhat is the population of Venezuela?\tFARC members\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (FARC members, are in, Venezuela) -> FARC members (3731ms)\nWhat is the population of Venezuela?\tDyer\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Dyer, was in, Venezuela) -> Dyer (3731ms)\nWhat is the population of Venezuela?\tfour\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (four, were in, Venezuela) -> four (3742ms)\nWhat is the population of Venezuela?\tLatin America\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Latin America, was in, Venezuela) -> Latin America (3765ms)\nWhat is the population of Venezuela?\tthe victim\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the victim, was in, Venezuela) -> the victim (3765ms)\nWhat is the population of Venezuela?\tAn example\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (An example, is in, Venezuela) -> An example (3731ms)\nWhat is the population of Venezuela?\t42,000 Cuban collaborators\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (42,000 Cuban collaborators, are in, Venezuela) -> 42,000 Cuban collaborators (3765ms)\nWhat is the population of Venezuela?\tthe delegation\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the delegation, was in, Venezuela) -> the delegation (3731ms)\nWhat is the population of Venezuela?\tJay\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Jay, was in, Venezuela) -> Jay (3776ms)\nWhat is the population of Venezuela?\tChris?s first job\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Chris?s first job, was in, Venezuela) -> Chris?s first job (3692ms)\nWhat is the population of Venezuela?\tTwo Russian Tu-160 strategic bombers\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Two Russian Tu-160 strategic bombers, were in, Venezuela) -> Two Russian Tu-160 strategic bombers (3742ms)\nWhat is the population of Venezuela?\tCeren\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Ceren, was in, Venezuela) -> Ceren (3742ms)\nWhat is the population of Venezuela?\tMorales\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Morales, is in, Venezuela) -> Morales (3731ms)\nWhat is the population of Venezuela?\towner Walter Stipa\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (owner Walter Stipa, was in, Venezuela) -> owner Walter Stipa (3754ms)\nWhat is the population of Venezuela?\tMerida\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Merida, is a city located in the country, venezuela) -> Merida (3731ms)\nWhat is the population of Venezuela?\tHome Run Derby Ozzie\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Home Run Derby Ozzie, is in, Venezuela) -> Home Run Derby Ozzie (3743ms)\nWhat is the population of Venezuela?\tCuyagua\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Cuyagua, is in, Venezuela) -> Cuyagua (3743ms)\nWhat is the population of Venezuela?\thuman rights\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (human rights, are in, Venezuela) -> human rights (3743ms)\nWhat is the population of Venezuela?\t?The dam\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (?The dam, is in, Venezuela) -> ?The dam (3754ms)\nWhat is the population of Venezuela?\tRobinson\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Robinson, was in, Venezuela) -> Robinson (3765ms)\nWhat is the population of Venezuela?\tThe cheapest petrol\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The cheapest petrol, was in, Venezuela) -> The cheapest petrol (3742ms)\nWhat is the population of Venezuela?\tAsprilla\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Asprilla, was in, Venezuela) -> Asprilla (3753ms)\nWhat is the population of Venezuela?\tan oil company\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (an oil company, are in, Venezuela) -> an oil company (3742ms)\nWhat is the population of Venezuela?\t2008\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (2008, is in, Venezuela) -> 2008 (3743ms)\nWhat is the population of Venezuela?\tIndia\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (India, was in, Venezuela) -> India (3753ms)\nWhat is the population of Venezuela?\tHunton\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Hunton, was in, Venezuela) -> Hunton (3731ms)\nWhat is the population of Venezuela?\tthe month Darby\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the month Darby, was in, Venezuela) -> the month Darby (3753ms)\nWhat is the population of Venezuela?\tSTATES\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (STATES, is a state or province located in the geopolitical location, venezuela) -> STATES (3731ms)\nWhat is the population of Venezuela?\tProducts\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Products, is a product produced in, venezuela) -> Products (3753ms)\nWhat is the population of Venezuela?\ta guy\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (a guy, was in, Venezuela) -> a guy (3754ms)\nWhat is the population of Venezuela?\tColonel Gaddafi\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Colonel Gaddafi, is in, Venezuela) -> Colonel Gaddafi (3754ms)\nWhat is the population of Venezuela?\tSheehan\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Sheehan, was in, Venezuela) -> Sheehan (3776ms)\nWhat is the population of Venezuela?\teither shortwave\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (either shortwave, AM in, Venezuela) -> either shortwave (3765ms)\nWhat is the population of Venezuela?\tthe development effort\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the development effort, is in, Venezuela) -> the development effort (3765ms)\nWhat is the population of Venezuela?\tCaracas\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Caracas, is in, Venezuela) -> Caracas (3776ms)\nWhat is the population of Venezuela?\tThe family\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The family, was in, Venezuela) -> The family (3743ms)\nWhat is the population of Venezuela?\tThe Caribbean Islands\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The Caribbean Islands, are in, Venezuela) -> The Caribbean Islands (3731ms)\nWhat is the population of Venezuela?\tSuriname\t1.2222222222210002\tWhat is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Suriname, are in, Venezuela) -> Suriname (3743ms)\nWhat is the population of Venezuela?\tthe ?Bolivarian Republic\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now called, the ?Bolivarian Republic) -> the ?Bolivarian Republic (3887ms)\nWhat is the population of Venezuela?\t513 billion barrels\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now thought to contain, 513 billion barrels) -> 513 billion barrels (3904ms)\nWhat is the population of Venezuela?\tThe U.S.\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (The U.S., is attempting to do in, Venezuela) -> The U.S. (3912ms)\nWhat is the population of Venezuela?\tthe United Staes\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (venezuela, are now a threat to, the United Staes) -> the United Staes (3920ms)\nWhat is the population of Venezuela?\tHave students\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (Have students, find, Lake Maracaibo) -> Have students (3927ms)\nWhat is the population of Venezuela?\tonce-abundant coffee and sugar\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now short of, once-abundant coffee and sugar) -> once-abundant coffee and sugar (3879ms)\nWhat is the population of Venezuela?\tan observer member\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, an observer member) -> an observer member (3879ms)\nWhat is the population of Venezuela?\tbranding\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, are now being subjected to, branding) -> branding (3927ms)\nWhat is the population of Venezuela?\tMARACAIBO\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (MARACAIBO, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Maracaibo) -> MARACAIBO (3897ms)\nWhat is the population of Venezuela?\tHD\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (HD, has also been found in, the Lake Maracaibo region) -> HD (3887ms)\nWhat is the population of Venezuela?\ta more vulnerable position\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, a more vulnerable position) -> a more vulnerable position (3920ms)\nWhat is the population of Venezuela?\tinterest\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (interest, can be found outside, Maracaibo) -> interest (3927ms)\nWhat is the population of Venezuela?\tjust look\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (just look, is doing in, Venezuela) -> just look (3879ms)\nWhat is the population of Venezuela?\tsocialism\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, now is the debate about, socialism) -> socialism (3879ms)\nWhat is the population of Venezuela?\tcritical condition\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, critical condition) -> critical condition (3879ms)\nWhat is the population of Venezuela?\tArkansas\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (Arkansas, has been doing business in, Venezuela) -> Arkansas (3927ms)\nWhat is the population of Venezuela?\t26 million\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have population of, $x) -> (Venezuela, has a population of over, 26 million) -> 26 million (3912ms)\nWhat is the population of Venezuela?\ta dictatorship\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, a dictatorship) -> a dictatorship (3904ms)\nWhat is the population of Venezuela?\tcomment\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now available for, comment) -> comment (3895ms)\nWhat is the population of Venezuela?\tbigger oil reserves\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now considered to have, bigger oil reserves) -> bigger oil reserves (3912ms)\nWhat is the population of Venezuela?\ta few years\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (a few years, is being done intensively in, Venezuela) -> a few years (3887ms)\nWhat is the population of Venezuela?\tthe Entry Portal\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, the Entry Portal) -> the Entry Portal (3887ms)\nWhat is the population of Venezuela?\tthe Netherlands Antilles\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now part of, the Netherlands Antilles) -> the Netherlands Antilles (3920ms)\nWhat is the population of Venezuela?\tjail\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, jail) -> jail (3912ms)\nWhat is the population of Venezuela?\tSpanish rule\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, was now free of, Spanish rule) -> Spanish rule (3920ms)\nWhat is the population of Venezuela?\tnew elections\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now nearing, new elections) -> new elections (3895ms)\nWhat is the population of Venezuela?\tUruguay\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now essentially tied with, Uruguay) -> Uruguay (3887ms)\nWhat is the population of Venezuela?\t92\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now at nearly, 92) -> 92 (3920ms)\nWhat is the population of Venezuela?\tThe surgeries\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (The surgeries, are done in, Caracas Venezuela) -> The surgeries (3904ms)\nWhat is the population of Venezuela?\tgrabs\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now up for, grabs) -> grabs (3904ms)\nWhat is the population of Venezuela?\ta pipeline\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (China competition Venezuela, is now studying, a pipeline) -> a pipeline (3920ms)\nWhat is the population of Venezuela?\ta very good position\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, a very good position) -> a very good position (3920ms)\nWhat is the population of Venezuela?\tlake maracaibo\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (lake maracaibo, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Maracaibo) -> lake maracaibo (3912ms)\nWhat is the population of Venezuela?\tRoger\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (Roger, was doing volunteer work in, Venezuela) -> Roger (3920ms)\nWhat is the population of Venezuela?\t23916810\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have population of, $x) -> (Venezuela, has an approximate population of, 23916810) -> 23916810 (3887ms)\nWhat is the population of Venezuela?\thalf\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (the east , Venezuela ,, is now the departure point for, half) -> half (3920ms)\nWhat is the population of Venezuela?\t67\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela?s murder rate, is now, 67) -> 67 (3904ms)\nWhat is the population of Venezuela?\t29 million people\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have population of, $x) -> (Venezuela, has a population of about, 29 million people) -> 29 million people (3904ms)\nWhat is the population of Venezuela?\tthe Political Administrative Chamber\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now before, the Political Administrative Chamber) -> the Political Administrative Chamber (3879ms)\nWhat is the population of Venezuela?\tthe world leader\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, the world leader) -> the world leader (3895ms)\nWhat is the population of Venezuela?\tone million people\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have population of, $x) -> (Venezuela, has a population of approximately, one million people) -> one million people (3912ms)\nWhat is the population of Venezuela?\tactive users\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (?Venezuela, has increased its number of, active users) -> active users (3887ms)\nWhat is the population of Venezuela?\tthe second round\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now 3-3 in, the second round) -> the second round (3887ms)\nWhat is the population of Venezuela?\tvictims\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (Venezuela, has been three times the number of, victims) -> victims (3919ms)\nWhat is the population of Venezuela?\tChina\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now exporting to, China) -> China (3920ms)\nWhat is the population of Venezuela?\tthe Iberian Peninsula\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now either part of, the Iberian Peninsula) -> the Iberian Peninsula (3927ms)\nWhat is the population of Venezuela?\tthe hands\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (?Venezuela?s gold, is now in, the hands) -> the hands (3904ms)\nWhat is the population of Venezuela?\tEnglish\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, now am reading in, English) -> English (3887ms)\nWhat is the population of Venezuela?\ttwenty federal states\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now composed of, twenty federal states) -> twenty federal states (3887ms)\nWhat is the population of Venezuela?\tthe Americas\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now the Palestinian State of, the Americas) -> the Americas (3927ms)\nWhat is the population of Venezuela?\tincome\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have distribution of, $x) -> (2008 Venezuela, had the most equal distribution of, income) -> income (3904ms)\nWhat is the population of Venezuela?\tcontroversial reforms\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (Venezuela, has undertaken a number of, controversial reforms) -> controversial reforms (3895ms)\nWhat is the population of Venezuela?\tthe ashes\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now rising out of, the ashes) -> the ashes (3887ms)\nWhat is the population of Venezuela?\tAmerican hegemony\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now a target of, American hegemony) -> American hegemony (3912ms)\nWhat is the population of Venezuela?\ttrade\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (OPEC-member Venezuela, are now the three pillars of, trade) -> trade (3895ms)\nWhat is the population of Venezuela?\tland reform\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now instituting, land reform) -> land reform (3927ms)\nWhat is the population of Venezuela?\tuniversities\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (Venezuela, has a number of, universities) -> universities (3895ms)\nWhat is the population of Venezuela?\tmore than 30 countries\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela campaign, is now active in, more than 30 countries) -> more than 30 countries (3879ms)\nWhat is the population of Venezuela?\tparticipation\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is more active now with, participation) -> participation (3895ms)\nWhat is the population of Venezuela?\tcomputer\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, have now been linked together by, computer) -> computer (3920ms)\nWhat is the population of Venezuela?\tthe side\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now a major thorn in, the side) -> the side (3879ms)\nWhat is the population of Venezuela?\tan arms depot\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now openly evolving into, an arms depot) -> an arms depot (3912ms)\nWhat is the population of Venezuela?\tsuch a complex situation\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now passing through, such a complex situation) -> such a complex situation (3879ms)\nWhat is the population of Venezuela?\tThe EU\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, size be, venezuelum) -> (The EU, is only a medium-sized trading partner for, Venezuela) -> The EU (3904ms)\nWhat is the population of Venezuela?\tGlobal Brand Leader responsible globally\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, Global Brand Leader responsible globally) -> Global Brand Leader responsible globally (3895ms)\nWhat is the population of Venezuela?\tBolivar\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now the state of, Bolivar) -> Bolivar (3904ms)\nWhat is the population of Venezuela?\tGazprom\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (Gazprom, has been doing in, Venezuela) -> Gazprom (3920ms)\nWhat is the population of Venezuela?\tthe most important developments\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now one of, the most important developments) -> the most important developments (3912ms)\nWhat is the population of Venezuela?\tDecember\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now confirmed for, December) -> December (3879ms)\nWhat is the population of Venezuela?\tAlluvial soils\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (Alluvial soils, are found in, the southern Maracaibo Lowlands) -> Alluvial soils (3920ms)\nWhat is the population of Venezuela?\ta fat version\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now run by, a fat version) -> a fat version (3887ms)\nWhat is the population of Venezuela?\tcivil war\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now edging closer to, civil war) -> civil war (3927ms)\nWhat is the population of Venezuela?\tthe development\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela and Iran, are now collaborating on, the development) -> the development (3927ms)\nWhat is the population of Venezuela?\ta failed state\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, a failed state) -> a failed state (3904ms)\nWhat is the population of Venezuela?\tSpain\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, now is trying to work out a deal with, Spain) -> Spain (3895ms)\nWhat is the population of Venezuela?\ta claim\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now seeking to exercise, a claim) -> a claim (3912ms)\nWhat is the population of Venezuela?\tthe riches man\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, now may be, the riches man) -> the riches man (3912ms)\nWhat is the population of Venezuela?\t120,000 and 200,000\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now estimated at between, 120,000 and 200,000) -> 120,000 and 200,000 (3895ms)\nWhat is the population of Venezuela?\tColombia\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, are now, Colombia) -> Colombia (3879ms)\nWhat is the population of Venezuela?\ta painful economic crisis\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now mired in, a painful economic crisis) -> a painful economic crisis (3904ms)\nWhat is the population of Venezuela?\tdownload\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela podcast, is available now to, download) -> download (3912ms)\nWhat is the population of Venezuela?\tan unseemly tug-of-war\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, are now engaged in, an unseemly tug-of-war) -> an unseemly tug-of-war (3920ms)\nWhat is the population of Venezuela?\tthe process\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, the process) -> the process (3904ms)\nWhat is the population of Venezuela?\tthe Pacific\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela and Cuba, are now coming into, the Pacific) -> the Pacific (3895ms)\nWhat is the population of Venezuela?\tbusiness\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now open for, business) -> business (3927ms)\nWhat is the population of Venezuela?\tsanctuary\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now serving as, sanctuary) -> sanctuary (3912ms)\nWhat is the population of Venezuela?\t92 Russian T-72 tanks\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, was now buying, 92 Russian T-72 tanks) -> 92 Russian T-72 tanks (3879ms)\nWhat is the population of Venezuela?\tCuban military advisers\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (Venezuela, has an unknown number of, Cuban military advisers) -> Cuban military advisers (3927ms)\nWhat is the population of Venezuela?\tthe US.\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now much closer to, the US.) -> the US. (3927ms)\nWhat is the population of Venezuela?\tcertain counties\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now selling oil to, certain counties) -> certain counties (3895ms)\nWhat is the population of Venezuela?\tthe country\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela?s gold reserves, are now held in, the country) -> the country (3927ms)\nWhat is the population of Venezuela?\tTruthdig.com\t0.555555555554\tWhat is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela?s Hugo Chavez, is now posted on, Truthdig.com) -> Truthdig.com (3879ms)\nWhat is the population of Venezuela?\tgasoline\t0.555555555554\tWhat is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (gasoline, as is done in, Venezuela) -> gasoline (3912ms)\nWhat is the population of Venezuela?\t1914 oil\t0.444444444443\tWhat is the population of Venezuela? -> $x: ($x, discover, maracaibo) -> (1914 oil, was discovered in, the Maracaibo Basin town) -> 1914 oil (3934ms)\nWhat is the population of Venezuela?\tPrevious international projects\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Previous international projects, were in, Maracaibo Basin) -> Previous international projects (3934ms)\nWhat is the population of Venezuela?\tFree Knowledge\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Free Knowledge, was recently held in, Maracaibo) -> Free Knowledge (3934ms)\nWhat is the population of Venezuela?\tSatan\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Satan, is frozen in, oil-rich Lake Maracaibo) -> Satan (3941ms)\nWhat is the population of Venezuela?\toso\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (oso, were detected in, Lake Maracaibo) -> oso (3934ms)\nWhat is the population of Venezuela?\teach profile\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (each profile, is listed in, Maracaibo hairdresser directory) -> each profile (3941ms)\nWhat is the population of Venezuela?\tDarnott\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Darnott, was arrested in, Maracaibo) -> Darnott (3934ms)\nWhat is the population of Venezuela?\tFernando Berendique\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Fernando Berendique, is the Chilean consul in, Maracaibo) -> Fernando Berendique (3941ms)\nWhat is the population of Venezuela?\tVenezuela\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Venezuela, is in, Maracaibo) -> Venezuela (3934ms)\nWhat is the population of Venezuela?\t1979\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (1979, was in, Maracaibo) -> 1979 (3941ms)\nWhat is the population of Venezuela?\tThe I Infantry Division\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (The I Infantry Division, is based in, Maracaibo) -> The I Infantry Division (3941ms)\nWhat is the population of Venezuela?\tThe I Air Zone\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (The I Air Zone, is headquartered in, Maracaibo) -> The I Air Zone (3934ms)\nWhat is the population of Venezuela?\tUrdaneta\t0.22222222222200005\tWhat is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Urdaneta, had been born in, Maracaibo) -> Urdaneta (3934ms)\nWhat is the population of Venezuela?\tthe win\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the win, was, Venezuela) -> the win (3958ms)\nWhat is the population of Venezuela?\tlist\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (list, are, Venezuela) -> list (3958ms)\nWhat is the population of Venezuela?\tthe future\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the future, is, Venezuela) -> the future (3964ms)\nWhat is the population of Venezuela?\tthe same patron\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the same patron, is, Venezuela ?) -> the same patron (3964ms)\nWhat is the population of Venezuela?\tThe type locality\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The type locality, is, Venezuela) -> The type locality (3948ms)\nWhat is the population of Venezuela?\tthe dike\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the dike, is, Venezuela) -> the dike (3958ms)\nWhat is the population of Venezuela?\tthe main creditors\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the main creditors, is, Venezuela) -> the main creditors (3941ms)\nWhat is the population of Venezuela?\tThe other big factor\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The other big factor, is, Venezuela) -> The other big factor (3953ms)\nWhat is the population of Venezuela?\tThe countries\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The countries, are, Venezuela) -> The countries (3953ms)\nWhat is the population of Venezuela?\tMakled\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Makled, was, Venezuela) -> Makled (3941ms)\nWhat is the population of Venezuela?\tAvensa\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Avensa, was, Venezuela) -> Avensa (3964ms)\nWhat is the population of Venezuela?\tthe Baker Institute report\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the Baker Institute report, was, Venezuela) -> the Baker Institute report (3958ms)\nWhat is the population of Venezuela?\tLast countries where we delivered our goods\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we delivered our goods, are, Venezuela) -> Last countries where we delivered our goods (3958ms)\nWhat is the population of Venezuela?\tthe major prize\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the major prize, is, Venezuela) -> the major prize (3958ms)\nWhat is the population of Venezuela?\tone of which\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (one of which, was, Venezuela) -> one of which (3953ms)\nWhat is the population of Venezuela?\tone member\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (one member, is, Venezuela) -> one member (3953ms)\nWhat is the population of Venezuela?\tA current exception\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (A current exception, is, Venezuela) -> A current exception (3958ms)\nWhat is the population of Venezuela?\tPDVSA\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (PDVSA, is, Venezuela) -> PDVSA (3953ms)\nWhat is the population of Venezuela?\tPuerto la Cruz\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Puerto la Cruz, is, Venezuela) -> Puerto la Cruz (3953ms)\nWhat is the population of Venezuela?\tLast countries where we exported our goods\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we exported our goods, are, Venezuela) -> Last countries where we exported our goods (3964ms)\nWhat is the population of Venezuela?\tThe Orinoco Belt\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The Orinoco Belt, is, Venezuela) -> The Orinoco Belt (3953ms)\nWhat is the population of Venezuela?\tThe most problematic place\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The most problematic place, is, Venezuela) -> The most problematic place (3953ms)\nWhat is the population of Venezuela?\tThe United States\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The United States, is, Venezuela) -> The United States (3941ms)\nWhat is the population of Venezuela?\tOne of them\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (One of them, is, Venezuela) -> One of them (3948ms)\nWhat is the population of Venezuela?\tthe two main candidates\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the two main candidates, are, Venezuela) -> the two main candidates (3958ms)\nWhat is the population of Venezuela?\tforeign policy\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (foreign policy, is, Venezuela) -> foreign policy (3964ms)\nWhat is the population of Venezuela?\tSecond\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Second, was, Venezuela) -> Second (3958ms)\nWhat is the population of Venezuela?\tthe region\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the region, is, Venezuela) -> the region (3964ms)\nWhat is the population of Venezuela?\tEnergy\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Energy, is, Venezuela) -> Energy (3958ms)\nWhat is the population of Venezuela?\tSPanish\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (SPanish, is the language of the country, venezuela) -> SPanish (3964ms)\nWhat is the population of Venezuela?\t2907 Offline Lincs\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (2907 Offline Lincs, is, Venezuela) -> 2907 Offline Lincs (3948ms)\nWhat is the population of Venezuela?\tLatin American\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Latin American, is, Venezuela) -> Latin American (3964ms)\nWhat is the population of Venezuela?\tThe setting\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The setting, is, Venezuela) -> The setting (3958ms)\nWhat is the population of Venezuela?\tstory\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (story, Is, Venezuela) -> story (3964ms)\nWhat is the population of Venezuela?\tLast countries where we delivered our items\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we delivered our items, are, Venezuela) -> Last countries where we delivered our items (3964ms)\nWhat is the population of Venezuela?\tone of the countries\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (one of the countries, is, Venezuela) -> one of the countries (3948ms)\nWhat is the population of Venezuela?\tLast countries where we sold our items\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we sold our items, are, Venezuela) -> Last countries where we sold our items (3958ms)\nWhat is the population of Venezuela?\t75 years\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (75 years, are, Venezuela) -> 75 years (3948ms)\nWhat is the population of Venezuela?\tquestion\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (question, is, Venezuela) -> question (3948ms)\nWhat is the population of Venezuela?\tLast countries where we sold our goods\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we sold our goods, are, Venezuela) -> Last countries where we sold our goods (3941ms)\nWhat is the population of Venezuela?\tBernardo Alvarez Herrera\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Bernardo Alvarez Herrera, is, Venezuela) -> Bernardo Alvarez Herrera (3948ms)\nWhat is the population of Venezuela?\tThe exception\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The exception, is, Venezuela) -> The exception (3958ms)\nWhat is the population of Venezuela?\tthe most immediate example\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the most immediate example, is, Venezuela) -> the most immediate example (3941ms)\nWhat is the population of Venezuela?\tThe archipelago\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The archipelago, is, Venezuela) -> The archipelago (3941ms)\nWhat is the population of Venezuela?\tthe month\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the month, was, Venezuela) -> the month (3948ms)\nWhat is the population of Venezuela?\tfourteen months\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (fourteen months, was, Venezuela) -> fourteen months (3964ms)\nWhat is the population of Venezuela?\tstake\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (stake, is, Venezuela) -> stake (3953ms)\nWhat is the population of Venezuela?\tOne example\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (One example, is, Venezuela) -> One example (3953ms)\nWhat is the population of Venezuela?\tENglish\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (ENglish, is the language of the country, venezuela) -> ENglish (3941ms)\nWhat is the population of Venezuela?\tThe Mexican-owned Cemex\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The Mexican-owned Cemex, is, Venezuela) -> The Mexican-owned Cemex (3948ms)\nWhat is the population of Venezuela?\tthe other border\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the other border, is, Venezuela) -> the other border (3953ms)\nWhat is the population of Venezuela?\tAngel Falls\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Angel Falls, is, Venezuela) -> Angel Falls (3958ms)\nWhat is the population of Venezuela?\ttrouble\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (trouble, is, Venezuela) -> trouble (3968ms)\nWhat is the population of Venezuela?\t2003\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (2003, were, Venezuela) -> 2003 (3958ms)\nWhat is the population of Venezuela?\tthe euro\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the euro, is, Venezuela) -> the euro (3941ms)\nWhat is the population of Venezuela?\tThe only exception\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The only exception, is, Venezuela) -> The only exception (3948ms)\nWhat is the population of Venezuela?\tclose 6th November 2011 Miss World 2011\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (close 6th November 2011 Miss World 2011, is, Venezuela) -> close 6th November 2011 Miss World 2011 (3964ms)\nWhat is the population of Venezuela?\tdemocracy\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (democracy, was, Venezuela) -> democracy (3969ms)\nWhat is the population of Venezuela?\tthe compounding state of insanity\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the compounding state of insanity, is, Venezuela) -> the compounding state of insanity (3964ms)\nWhat is the population of Venezuela?\tThe next stop\t0.22222222222100002\tWhat is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The next stop, is, Venezuela) -> The next stop (3953ms)\nWhat is the population of Venezuela?\tCell phones\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Cell phones, are very popular in, Venezuela) -> Cell phones (3999ms)\nWhat is the population of Venezuela?\tBaseball\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Baseball, is a tremendously popular sport in, Venezuela) -> Baseball (3999ms)\nWhat is the population of Venezuela?\tthe refinery\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the refinery, is imported from, Venezuela) -> the refinery (4003ms)\nWhat is the population of Venezuela?\tthe U.S.\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the U.S., currently imports from, the Middle East or Venezuela) -> the U.S. (4003ms)\nWhat is the population of Venezuela?\tdelicious dark chocolate\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (delicious dark chocolate, imported from, Venezuela) -> delicious dark chocolate (4005ms)\nWhat is the population of Venezuela?\tthe Caribbean countries\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the Caribbean countries, import oil from, Mexico and Venezuela) -> the Caribbean countries (4003ms)\nWhat is the population of Venezuela?\tfree speech RCTV\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (free speech RCTV, is the most popular station in, Venezuela) -> free speech RCTV (3995ms)\nWhat is the population of Venezuela?\tthe oil\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the oil, imported from, Venezuela) -> the oil (3999ms)\nWhat is the population of Venezuela?\tvegetables\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (vegetables, are imported from, venezuela) -> vegetables (4003ms)\nWhat is the population of Venezuela?\tVisual arts and handicrafts\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Visual arts and handicrafts, are popular in, Venezuela) -> Visual arts and handicrafts (3995ms)\nWhat is the population of Venezuela?\tbaseball\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (baseball, is widely popular in, Venezuela and Cuba) -> baseball (4003ms)\nWhat is the population of Venezuela?\tcrude oil\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (crude oil, imported from, Venezuela) -> crude oil (4005ms)\nWhat is the population of Venezuela?\tSantana\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Santana, is a popular spokesman in, his native Venezuela) -> Santana (3999ms)\nWhat is the population of Venezuela?\tthe rest\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the rest, is imported from, Venezuela) -> the rest (3999ms)\nWhat is the population of Venezuela?\tThe other 50 percent\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (The other 50 percent, is usually imported from, Venezuela) -> The other 50 percent (3995ms)\nWhat is the population of Venezuela?\tCastroite practice\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (Castroite practice, has been imported to, Venezuela) -> Castroite practice (3999ms)\nWhat is the population of Venezuela?\tU.S. oil\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (U.S. oil, is imported from, Venezuela) -> U.S. oil (4003ms)\nWhat is the population of Venezuela?\tAmerica\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (America, currently imports from, the Middle East and Venezuela) -> America (4003ms)\nWhat is the population of Venezuela?\ta box of the best\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (a box of the best, imported from, Belgium , France or Venezuela) -> a box of the best (3995ms)\nWhat is the population of Venezuela?\tBonaire\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (Bonaire, are imported from, Venezuela) -> Bonaire (4003ms)\nWhat is the population of Venezuela?\tM?rida\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (M?rida, is the most popular tourist destination in, Venezuela) -> M?rida (4003ms)\nWhat is the population of Venezuela?\tthree-holed razor blades\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (three-holed razor blades, imported from, Venezuela) -> three-holed razor blades (3995ms)\nWhat is the population of Venezuela?\tthree females\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (three females, were imported from, Venezuela) -> three females (4003ms)\nWhat is the population of Venezuela?\tground corn dough\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (ground corn dough, is very popular in, Venezuela) -> ground corn dough (3999ms)\nWhat is the population of Venezuela?\tPlastic surgery\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Plastic surgery, is extremely popular in, Venezuela) -> Plastic surgery (4005ms)\nWhat is the population of Venezuela?\tthe vehicle\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the vehicle, is imported into, Venezuela) -> the vehicle (4003ms)\nWhat is the population of Venezuela?\tA new price control law\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, effect, venezuelum) -> (A new price control law, takes effect in, Venezuela) -> A new price control law (4003ms)\nWhat is the population of Venezuela?\tthe amount\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the amount, imported from, the Middle East and Venezuela) -> the amount (4003ms)\nWhat is the population of Venezuela?\tRFG\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (RFG, imported from, Venezuela) -> RFG (3995ms)\nWhat is the population of Venezuela?\tThe group\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (The group, was particularly popular in, Venezuela) -> The group (4003ms)\nWhat is the population of Venezuela?\tpetroleum\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (petroleum, imported from, Venezuela) -> petroleum (3995ms)\nWhat is the population of Venezuela?\tfuel\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (fuel, imported from, Venezuela) -> fuel (4003ms)\nWhat is the population of Venezuela?\tthe amount of oil\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the amount of oil, import from, Venezuela) -> the amount of oil (3999ms)\nWhat is the population of Venezuela?\tCITGO oil\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (CITGO oil, is imported from, Venezuela) -> CITGO oil (4005ms)\nWhat is the population of Venezuela?\tbarrels CITGO oil\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (barrels CITGO oil, is imported from, Venezuela) -> barrels CITGO oil (3999ms)\nWhat is the population of Venezuela?\tthe Rio Caribe Superior bar\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the Rio Caribe Superior bar, are imported from, Venezuela) -> the Rio Caribe Superior bar (3999ms)\nWhat is the population of Venezuela?\tThe following items\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (The following items, may be imported into, Venezuela) -> The following items (4003ms)\nWhat is the population of Venezuela?\tMuch smaller amounts\t-0.11111111111499994\tWhat is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (Much smaller amounts, were imported from, Venezuela) -> Much smaller amounts (3995ms)\nWhat is the population of Venezuela?\tPDVSA rolls\t-0.444444444445\tWhat is the population of Venezuela? -> $x: (maracaibo, be now, $x) -> (Lake Maracaibo, is now underway as, PDVSA rolls) -> PDVSA rolls (4015ms)\nWhat is the population of Venezuela?\tCarnival\t-0.6666666666879999\tWhat is the population of Venezuela? -> $x: ($x, be holiday in, venezuelum) -> (Carnival, is the major holiday in, Venezuela) -> Carnival (4020ms)\nWhat is the population of Venezuela?\tMonday 6 January\t-0.6666666666879999\tWhat is the population of Venezuela? -> $x: ($x, be holiday in, venezuelum) -> (Monday 6 January, was a public holiday in, Venezuela) -> Monday 6 January (4020ms)\nWhat is the population of Venezuela?\tMaracaibo\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Maracaibo, hence is classed among, the Maracaibo types) -> Maracaibo (4024ms)\nWhat is the population of Venezuela?\ttrue Cru\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (true Cru, is, the Maracaibo) -> true Cru (4023ms)\nWhat is the population of Venezuela?\tCoffee\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Coffee, is also carried to, Maracaibo) -> Coffee (4022ms)\nWhat is the population of Venezuela?\tThe present producing area\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The present producing area, is, the Lake Maracaibo basin) -> The present producing area (4024ms)\nWhat is the population of Venezuela?\tthe eclipse track\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the eclipse track, is, Maracaibo) -> the eclipse track (4023ms)\nWhat is the population of Venezuela?\ttanja\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (tanja, was, the maracaibo) -> tanja (4022ms)\nWhat is the population of Venezuela?\tthe first dive\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the first dive, was made at, Maracaibo Bricks) -> the first dive (4023ms)\nWhat is the population of Venezuela?\tThe phenomenon\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The phenomenon, has also been called, the Maracaibo Beacon) -> The phenomenon (4022ms)\nWhat is the population of Venezuela?\tthe west\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the west, are located, Maracaibo) -> the west (4023ms)\nWhat is the population of Venezuela?\tthe storm\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the storm, is also known as, the Maracaibo Beacon) -> the storm (4023ms)\nWhat is the population of Venezuela?\tThe Makaren family\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The Makaren family, is from, Maracaibo) -> The Makaren family (4022ms)\nWhat is the population of Venezuela?\tEl Tablazo Bay\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (El Tablazo Bay, is now considered part of, Lake Maracaibo) -> El Tablazo Bay (4023ms)\nWhat is the population of Venezuela?\tLama-1 and Lama Lago\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Lama-1 and Lama Lago, are situated at, Lake Maracaibo) -> Lama-1 and Lama Lago (4022ms)\nWhat is the population of Venezuela?\tBracho\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Bracho, is originally from, Maracaibo) -> Bracho (4022ms)\nWhat is the population of Venezuela?\tthe northwest coast\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the northwest coast, is, the Depresi?n de Maracaibo) -> the northwest coast (4023ms)\nWhat is the population of Venezuela?\tCatatumbo\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Catatumbo, is an area around, Lago Maracaibo famous) -> Catatumbo (4024ms)\nWhat is the population of Venezuela?\tThe well\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The well, will be drilled at, Lake Maracaibo) -> The well (4024ms)\nWhat is the population of Venezuela?\tPatricia\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Patricia, was from, Maracaibo) -> Patricia (4022ms)\nWhat is the population of Venezuela?\tThe International Airports\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The International Airports, are, Caracas , Cabello and Maracaibo) -> The International Airports (4022ms)\nWhat is the population of Venezuela?\tCucuta\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Cucuta, was united to, Maracaibo) -> Cucuta (4022ms)\nWhat is the population of Venezuela?\tThe 19-year-old beauty\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The 19-year-old beauty, is a native of, Maracaibo) -> The 19-year-old beauty (4023ms)\nWhat is the population of Venezuela?\tCucuta coffees\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Cucuta coffees, are generally classified among, the Maracaibos) -> Cucuta coffees (4022ms)\nWhat is the population of Venezuela?\tEl Colombiano\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (El Colombiano, was certainly equal to, Maracaibo) -> El Colombiano (4024ms)\nWhat is the population of Venezuela?\tJulia\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Julia, was born, Maracaibo) -> Julia (4024ms)\nWhat is the population of Venezuela?\tthe high Andean ranges\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the high Andean ranges, are, Lake Maracaibo) -> the high Andean ranges (4022ms)\nWhat is the population of Venezuela?\tThe five-foot-nine , 216-pounder\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The five-foot-nine , 216-pounder, is originally from, Maracaibo) -> The five-foot-nine , 216-pounder (4024ms)\nWhat is the population of Venezuela?\tThe second largest city\t-0.777777777778\tWhat is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The second largest city, is, Maracaibo) -> The second largest city (4023ms)\nWhat is the population of Venezuela?\tthe shoes\t-0.8888888888890001\tWhat is the population of Venezuela? -> $x: ($x, be history of, venezuelum) -> (the shoes, has been the history of, Venezuela) -> the shoes (4024ms)\nWhat's the abbreviation for limited partnership?\tClimate\t0.22222222221999996\tWhat's the abbreviation for limited partnership? -> $x: ($x, be initial of, partnership) -> (Climate, is the initial project of, a new partnership) -> Climate (603ms)\nWhat's the abbreviation for limited partnership?\tLEL\t-0.555555555555\tWhat's the abbreviation for limited partnership? -> $x: ($x, be abbreviation for, limited) -> (LEL, is an abbreviation for, Lower Explosive Limit) -> LEL (667ms)\nWhat's the abbreviation for limited partnership?\tLS\t-0.555555555555\tWhat's the abbreviation for limited partnership? -> $x: ($x, be abbreviation for, limited) -> (LS, is the abbreviation for, \" Limited Series) -> LS (667ms)\nWhat's the abbreviation for limited partnership?\tLLC\t-0.555555555555\tWhat's the abbreviation for limited partnership? -> $x: ($x, be abbreviation for, limited) -> (LLC, is an abbreviation for, Limited Liability Company) -> LLC (667ms)\nWho is the airport named after?\tthe first Kenyan prime minister\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, the first Kenyan prime minister) -> the first Kenyan prime minister (1005ms)\nWho is the airport named after?\tan MP\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, an MP) -> an MP (1005ms)\nWho is the airport named after?\tLouis Armstrong\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (This airport, was named after, Louis Armstrong) -> Louis Armstrong (850ms)\nWho is the airport named after?\tthe village\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, the village) -> the village (1005ms)\nWho is the airport named after?\tIsrael\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, Israel) -> Israel (850ms)\nWho is the airport named after?\tMother Teresa\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, was named after, Mother Teresa) -> Mother Teresa (851ms)\nWho is the airport named after?\tBauerfield\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, Bauerfield) -> Bauerfield (851ms)\nWho is the airport named after?\tpolitician\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, politician) -> politician (851ms)\nWho is the airport named after?\tEnrique Olaya Herrera\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, Enrique Olaya Herrera) -> Enrique Olaya Herrera (1005ms)\nWho is the airport named after?\tthe first Tanzanian President\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, the first Tanzanian President) -> the first Tanzanian President (851ms)\nWho is the airport named after?\tthe President\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (This airport, is named after, the President) -> the President (1005ms)\nWho is the airport named after?\tthe hamlet Heath Row\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, was named after, the hamlet Heath Row) -> the hamlet Heath Row (1005ms)\nWho is the airport named after?\tJohn Foster Dulles\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, John Foster Dulles) -> John Foster Dulles (1005ms)\nWho is the airport named after?\tthe small village\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, the small village) -> the small village (850ms)\nWho is the airport named after?\tthe hamlet\t0.777777777778\tWho is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, was named after, the hamlet) -> the hamlet (1005ms)\nWhen was PBGC established?\tPBGC?s Web site\t0.333333333334\tWhen was PBGC established? -> $x: (pbgc, be found on, $x) -> (PBGC?s strategic plan, may be found on, PBGC?s Web site) -> PBGC?s Web site (933ms)\nWhen was PBGC established?\tpension insurance\t0.333333333333\tWhen was PBGC established? -> $x: ($x, find, pbgc) -> (pension insurance, also may be found on, PBGC) -> pension insurance (933ms)\nWhen was PBGC established?\tFurther information\t0.333333333333\tWhen was PBGC established? -> $x: ($x, find, pbgc) -> (Further information, may be found on, the PBGC Web site) -> Further information (933ms)\nWhen was PBGC established?\tPBGC?s Inspector General\t0.333333333333\tWhen was PBGC established? -> $x: ($x, find, pbgc) -> (PBGC?s Inspector General, found, improper PBGC management) -> PBGC?s Inspector General (933ms)\nWhen was PBGC established?\tPBGC?s strategic plan\t0.333333333333\tWhen was PBGC established? -> $x: ($x, find, pbgc) -> (PBGC?s strategic plan, may be found on, PBGC?s Web site) -> PBGC?s strategic plan (933ms)\nWhen was PBGC established?\t1974\t0.111111111111\tWhen was PBGC established? -> $x: (pbgc, be form in, $x) -> (The PBGC, was formed in, 1974) -> 1974 (933ms)\nWhen was PBGC established?\tCongress\t-0.0\tWhen was PBGC established? -> $x: (pbgc, establish, $x) -> (The PBGC, was established by, Congress) -> Congress (964ms)\nWhen was PBGC established?\tAn allowance\t-0.0\tWhen was PBGC established? -> $x: ($x, establish, pbgc) -> (An allowance, has been established on, PBGC) -> An allowance (964ms)\nWhen was PBGC established?\tthe Employee Retirement Income Security Act\t-0.0\tWhen was PBGC established? -> $x: ($x, establish, pbgc) -> (the Employee Retirement Income Security Act, established, PBGC) -> the Employee Retirement Income Security Act (1035ms)\nWhen was PBGC established?\ta Web page\t-0.0\tWhen was PBGC established? -> $x: (pbgc, establish, $x) -> (the PBGC, established, a Web page) -> a Web page (964ms)\nWhen was PBGC established?\tThe risk-based premium rate\t-0.0\tWhen was PBGC established? -> $x: ($x, establish, pbgc) -> (The risk-based premium rate, would be established by, the PBGC) -> The risk-based premium rate (1035ms)\nWhen was PBGC established?\tinformation\t-0.0\tWhen was PBGC established? -> $x: ($x, do, pbgc) -> (information, does, the PBGC request) -> information (963ms)\nWhen was PBGC established?\tERISA\t-0.0\tWhen was PBGC established? -> $x: (pbgc, establish, $x) -> (The PBGC, was established by, ERISA) -> ERISA (964ms)\nWhen was PBGC established?\timproper PBGC management\t-1.66666666666\tWhen was PBGC established? -> $x: (pbgc, found, $x) -> (PBGC?s Inspector General, found, improper PBGC management) -> improper PBGC management (1071ms)\nWhen was PBGC established?\tthe average pilot\t-1.66666666666\tWhen was PBGC established? -> $x: (pbgc, found, $x) -> (the PBGC, found for, the average pilot) -> the average pilot (1035ms)\nWhen was PBGC established?\tthe clearinghouse\t-1.66666666666\tWhen was PBGC established? -> $x: (pbgc, found, $x) -> (PBGC, was unable to find through, the clearinghouse) -> the clearinghouse (1071ms)\nWhere is the Kalahari desert?\tthe southwest\t0.111111111109\tWhere is the Kalahari desert? -> $x: (kalahari desert, be locate in, $x) -> (The Kalahari Desert, is located in, the southwest) -> the southwest (731ms)\nWhere is the Kalahari desert?\tSouthern Africa\t0.111111111109\tWhere is the Kalahari desert? -> $x: (kalahari desert, be locate in, $x) -> (the Kalahari desert, is located in, Southern Africa) -> Southern Africa (731ms)\nWhere is the Kalahari desert?\teastern Namibia\t0.111111111109\tWhere is the Kalahari desert? -> $x: (kalahari desert, be locate in, $x) -> (the Kalahari Desert, is located in, eastern Namibia) -> eastern Namibia (731ms)\nWhere is the Kalahari desert?\tAfrica\t0.111111111109\tWhere is the Kalahari desert? -> $x: (kalahari desert, be locate in, $x) -> (The Kalahari Desert, is located in, Africa) -> Africa (731ms)\nWhere is the Kalahari desert?\tthe original species\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (the original species, were found in, the Kalahari deserts) -> the original species (1249ms)\nWhere is the Kalahari desert?\tthe San\t-0.0\tWhere is the Kalahari desert? -> $x: (kalahari desert, be for, $x) -> (the Kalahari Desert, is the native place for, the San) -> the San (832ms)\nWhere is the Kalahari desert?\tassociate DHEA\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (associate DHEA, is found in, the Kalahari Desert) -> associate DHEA (1640ms)\nWhere is the Kalahari desert?\tplant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (plant, is found in, the kalahari desert of africa) -> plant (1646ms)\nWhere is the Kalahari desert?\tthe best effects\t-0.0\tWhere is the Kalahari desert? -> $x: (kalahari desert, be for, $x) -> (the Kalahari Desert, is used for, the best effects) -> the best effects (832ms)\nWhere is the Kalahari desert?\ta normal plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a normal plant, can be found in, Kalahari Desert) -> a normal plant (1646ms)\nWhere is the Kalahari desert?\tthe browns and tans\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, comprise, kalahari desert) -> (the browns and tans, comprise, the Kalahari Desert) -> the browns and tans (731ms)\nWhere is the Kalahari desert?\tHoodia Gordonii\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (Hoodia Gordonii, can only be found in, Kalahari desert) -> Hoodia Gordonii (1649ms)\nWhere is the Kalahari desert?\ta cactus-like , succulent plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a cactus-like , succulent plant, found in, the Kalahari Desert) -> a cactus-like , succulent plant (1643ms)\nWhere is the Kalahari desert?\tjuicy cactus\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (juicy cactus, found in, Kalahari Desert) -> juicy cactus (1646ms)\nWhere is the Kalahari desert?\ta succulent\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (a succulent, found in, the Kalahari Desert of South Africa) -> a succulent (1643ms)\nWhere is the Kalahari desert?\tMeerkats\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (Meerkats, can be found in, the Kalahari Desert) -> Meerkats (1626ms)\nWhere is the Kalahari desert?\tpoor or damaged women\t-0.0\tWhere is the Kalahari desert? -> $x: (kalahari desert, be for, $x) -> (the Kalahari desert, is a refuge for, poor or damaged women) -> poor or damaged women (832ms)\nWhere is the Kalahari desert?\tthousands\t-0.0\tWhere is the Kalahari desert? -> $x: (kalahari desert, do, $x) -> (the Kalahari desert, has done for, thousands) -> thousands (1646ms)\nWhere is the Kalahari desert?\tthe hoodia cactus\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (the hoodia cactus, found in, the Kalahari desert) -> the hoodia cactus (1643ms)\nWhere is the Kalahari desert?\ta cactus plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a cactus plant, is found in, the Kalahari Desert) -> a cactus plant (1646ms)\nWhere is the Kalahari desert?\tan organic powder\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (an organic powder, is only found in, the Kalahari Desert) -> an organic powder (1640ms)\nWhere is the Kalahari desert?\ta cactus-like plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (a cactus-like plant, found in, the Kalahari Desert) -> a cactus-like plant (1643ms)\nWhere is the Kalahari desert?\tAn appetite suppressant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (An appetite suppressant, found in, the African Kalahari desert) -> An appetite suppressant (1626ms)\nWhere is the Kalahari desert?\tthe plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (the plant, found in, the Kalahari desert) -> the plant (1646ms)\nWhere is the Kalahari desert?\ta succulent plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a succulent plant, can be found in, Kalahari Desert) -> a succulent plant (1646ms)\nWhere is the Kalahari desert?\tluscious plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (luscious plant, is found profoundly within, the Kalahari Desert) -> luscious plant (1649ms)\nWhere is the Kalahari desert?\tAn anthropologist\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, do, kalahari desert) -> (An anthropologist, did a study in, the Kalahari desert) -> An anthropologist (1640ms)\nWhere is the Kalahari desert?\tcenturies\t-0.0\tWhere is the Kalahari desert? -> $x: (kalahari desert, be for, $x) -> (the Kalahari Desert, has actually been used for, centuries) -> centuries (832ms)\nWhere is the Kalahari desert?\tthe cactus plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (the cactus plant, found in, the Kalahari Desert in South Africa) -> the cactus plant (1626ms)\nWhere is the Kalahari desert?\ta cactus\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (a cactus, found in, the Kalahari Desert) -> a cactus (1649ms)\nWhere is the Kalahari desert?\tcamels\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, introduce, kalahari desert) -> (camels, were also introduced into, the Kalahari desert region) -> camels (832ms)\nWhere is the Kalahari desert?\ta slender column cactus\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (a slender column cactus, is found in, the Kalahari Desert) -> a slender column cactus (1646ms)\nWhere is the Kalahari desert?\tDevil?s Claw\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (Devil?s Claw, is found in, the harsh Kalahari Desert) -> Devil?s Claw (1646ms)\nWhere is the Kalahari desert?\tSalt Pan Salt pans\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (Salt Pan Salt pans, can be found throughout, the Kalahari Desert) -> Salt Pan Salt pans (1640ms)\nWhere is the Kalahari desert?\tNatural hoodia\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (Natural hoodia, is found in, the Kalahari Desert) -> Natural hoodia (1649ms)\nWhere is the Kalahari desert?\tthe San Bushmen\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (the San Bushmen, found in, the Kalahari Desert) -> the San Bushmen (1646ms)\nWhere is the Kalahari desert?\tSouth Africa\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (South Africa, found in, the Kalahari Desert) -> South Africa (1643ms)\nWhere is the Kalahari desert?\tmore than 12.000 years\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (more than 12.000 years, was found in, the Kalahari Desert) -> more than 12.000 years (1643ms)\nWhere is the Kalahari desert?\tfood\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (food, can be found in, the Kalahari desert) -> food (1640ms)\nWhere is the Kalahari desert?\tHoodia gordonii\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (Hoodia gordonii, is a succulent found in, the Kalahari Desert) -> Hoodia gordonii (1643ms)\nWhere is the Kalahari desert?\ta plant\t-0.0\tWhere is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a plant, found in, Kalahari Desert of South Africa) -> a plant (1648ms)\nWhere is the Kalahari desert?\tHoodia\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (Hoodia, has been revered in, the Kalahari Desert) -> Hoodia (1663ms)\nWhere is the Kalahari desert?\tWatermelons\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Watermelons, are native to, the Kalahari desert) -> Watermelons (1659ms)\nWhere is the Kalahari desert?\tBotswana\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Botswana, is taken up by, the Kalahari Desert) -> Botswana (1663ms)\nWhere is the Kalahari desert?\tup to 70 % of Botswana\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (up to 70 % of Botswana, is covered by, the Kalahari Desert) -> up to 70 % of Botswana (1656ms)\nWhere is the Kalahari desert?\tthe plateau proper\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the plateau proper, is known as, the Kalahari Desert) -> the plateau proper (1660ms)\nWhere is the Kalahari desert?\tHawaii\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Hawaii, is antipodal to, the Kalahari Desert) -> Hawaii (1659ms)\nWhere is the Kalahari desert?\tthe ostrich egg\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the ostrich egg, is now, the Kalahari Desert) -> the ostrich egg (1659ms)\nWhere is the Kalahari desert?\teastern and southern Namibia\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (eastern and southern Namibia, is covered by, the Kalahari Desert) -> eastern and southern Namibia (1660ms)\nWhere is the Kalahari desert?\tTsodilo\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Tsodilo, is situated in, the Kalahari Desert) -> Tsodilo (1662ms)\nWhere is the Kalahari desert?\tJack?s Camp\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (Jack?s Camp, is located deep in, the Kalahari Desert) -> Jack?s Camp (1663ms)\nWhere is the Kalahari desert?\tLida\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (Lida, would be a cactus-like plant grown in, the Kalahari Desert) -> Lida (1649ms)\nWhere is the Kalahari desert?\tDq?e Qare Game Reserve\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be located in, kalahari desert) -> (Dq?e Qare Game Reserve, is located in, the Kalahari Desert) -> Dq?e Qare Game Reserve (1663ms)\nWhere is the Kalahari desert?\tHoodia plant\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Hoodia plant, is seen in, the great Kalahari Desert) -> Hoodia plant (1660ms)\nWhere is the Kalahari desert?\tSan Camp\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be located in, kalahari desert) -> (San Camp, is located deep in, the Kalahari Desert) -> San Camp (1663ms)\nWhere is the Kalahari desert?\thoodia\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (hoodia, is in, the Kalahari Desert) -> hoodia (1663ms)\nWhere is the Kalahari desert?\tthe MM show\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (the MM show, was shot in, the Kalahari semi-desert) -> the MM show (1663ms)\nWhere is the Kalahari desert?\tThe plant\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The plant, is native to, the Kalahari Desert) -> The plant (1662ms)\nWhere is the Kalahari desert?\tthe easternmost area\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the easternmost area, is part of, the Kalahari Desert) -> the easternmost area (1660ms)\nWhere is the Kalahari desert?\tnearly 70 percent\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (nearly 70 percent, is covered by, the Kalahari Desert) -> nearly 70 percent (1659ms)\nWhere is the Kalahari desert?\tFood\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (Food, is available in, the Kalahari desert) -> Food (1651ms)\nWhere is the Kalahari desert?\tNamibia\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Namibia, is home to, the Kalahari Desert) -> Namibia (1656ms)\nWhere is the Kalahari desert?\tthe Okavango Delta\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (the Okavango Delta, is situated in, the Kalahari Desert) -> the Okavango Delta (1656ms)\nWhere is the Kalahari desert?\tmuch of Botswana\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (much of Botswana, is covered by, Kalahari Desert) -> much of Botswana (1653ms)\nWhere is the Kalahari desert?\tup to 70 %\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (up to 70 %, is covered by, the Kalahari Desert) -> up to 70 % (1660ms)\nWhere is the Kalahari desert?\tmillions\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (millions, are displaced as, the Kalahari desert expands) -> millions (1662ms)\nWhere is the Kalahari desert?\tThe north\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The north, is primarily, Kalahari Desert) -> The north (1657ms)\nWhere is the Kalahari desert?\tthe banks\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the banks, is the gateway to, the Kalahari Desert) -> the banks (1662ms)\nWhere is the Kalahari desert?\t70 %\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (70 %, is covered by, the Kalahari Desert) -> 70 % (1662ms)\nWhere is the Kalahari desert?\tthe Bushveld\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the Bushveld, is the southern basin of, the Kalahari Desert) -> the Bushveld (1662ms)\nWhere is the Kalahari desert?\tthe province\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the province, are primarily, Kalahari Desert) -> the province (1653ms)\nWhere is the Kalahari desert?\ta country\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (a country, is covered in large part by, the Kalahari desert) -> a country (1663ms)\nWhere is the Kalahari desert?\tcourse Upington\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (course Upington, is your gateway to, the Kalahari desert) -> course Upington (1653ms)\nWhere is the Kalahari desert?\tsatan\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (satan, were located in, the Kalahari Desert) -> satan (1660ms)\nWhere is the Kalahari desert?\tthe land\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the land, is, Kalahari Desert land) -> the land (1659ms)\nWhere is the Kalahari desert?\tThe Bukakhwe San people\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The Bukakhwe San people, are indigenous to, the Kalahari Desert) -> The Bukakhwe San people (1653ms)\nWhere is the Kalahari desert?\tAn exception\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (An exception, is, the the Kalahari Desert) -> An exception (1663ms)\nWhere is the Kalahari desert?\tjust less than 70 percent\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (just less than 70 percent, is covered by, the Kalahari Desert) -> just less than 70 percent (1660ms)\nWhere is the Kalahari desert?\tMillions\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Millions, are displaced as, the Kalahari desert) -> Millions (1663ms)\nWhere is the Kalahari desert?\ta year-out\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (a year-out, was traveling in, the Kalahari Desert) -> a year-out (1660ms)\nWhere is the Kalahari desert?\tDevil?s Claw\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Devil?s Claw, is indigenous to, the Kalahari Desert) -> Devil?s Claw (1663ms)\nWhere is the Kalahari desert?\tThe music video\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (The music video, was shot in, the Kalahari desert) -> The music video (1662ms)\nWhere is the Kalahari desert?\tostrich eggshells\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (ostrich eggshells, are common around, the Kalahari Desert) -> ostrich eggshells (1657ms)\nWhere is the Kalahari desert?\tThe country\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The country, is dominated by, the Kalahari desert) -> The country (1657ms)\nWhere is the Kalahari desert?\tThe six foot plant\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The six foot plant, is native to, the Kalahari Desert) -> The six foot plant (1662ms)\nWhere is the Kalahari desert?\t84 % of Botswana\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (84 % of Botswana, is covered by, the Kalahari Desert) -> 84 % of Botswana (1656ms)\nWhere is the Kalahari desert?\tThe easternmost area\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The easternmost area, is part of, the Kalahari desert) -> The easternmost area (1657ms)\nWhere is the Kalahari desert?\tthe country\t-0.111111111111\tWhere is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the country, is covered by, the magnificent Kalahari Desert) -> the country (1661ms)\nWhere is the Kalahari desert?\tsouthern Africa\t-0.111111111112\tWhere is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari Desert, is in, southern Africa) -> southern Africa (1663ms)\nWhere is the Kalahari desert?\tthe rough ,\t-0.111111111112\tWhere is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari Desert, was a diamond in, the rough ,) -> the rough , (1663ms)\nWhere is the Kalahari desert?\tpopularity and usage\t-0.111111111112\tWhere is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari Desert, are growing in, popularity and usage) -> popularity and usage (1663ms)\nWhere is the Kalahari desert?\ta class\t-0.111111111112\tWhere is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari Desert, is in, a class) -> a class (1663ms)\nWhere is the Kalahari desert?\tthe same place\t-0.111111111112\tWhere is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari desert, have been living in exactly, the same place) -> the same place (1663ms)\nWhat year was the phonograph invented?\tthe 18th century\t2.44444444445\tWhat year was the phonograph invented? -> $x: (phonograph, be invent in, $x) -> (The phonograph, was invented in, the 18th century) -> the 18th century (777ms)\nWhat year was the phonograph invented?\tthe 1820s\t2.44444444445\tWhat year was the phonograph invented? -> $x: (phonograph, be invent in, $x) -> (the phonograph, actually had been invented in, the 1820s) -> the 1820s (777ms)\nWhat year was the phonograph invented?\t1877\t2.44444444445\tWhat year was the phonograph invented? -> $x: (phonograph, be invent in, $x) -> (The phonograph, was invented in, 1877) -> 1877 (777ms)\nWhat year was the phonograph invented?\tthe printing press\t1.9999999999979998\tWhat year was the phonograph invented? -> $x: ($x, be invent, phonograph) -> (the printing press, was invented before, the phonograph) -> the printing press (777ms)\nWhat year was the phonograph invented?\tBell\t1.9999999999979998\tWhat year was the phonograph invented? -> $x: ($x, be invent, phonograph) -> (Bell, was to inventing, the phonograph) -> Bell (777ms)\nWhat year was the phonograph invented?\tManhattan\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: (phonograph, be make in, $x) -> (The very first jazz phonograph record, was made in, Manhattan) -> Manhattan (1291ms)\nWhat year was the phonograph invented?\tthe inventor Thomas Alva Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the inventor Thomas Alva Edison, invented, the Phonograph) -> the inventor Thomas Alva Edison (1294ms)\nWhat year was the phonograph invented?\t294565691 In 1877 Thomas Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (294565691 In 1877 Thomas Edison, invented, the phonograph) -> 294565691 In 1877 Thomas Edison (1291ms)\nWhat year was the phonograph invented?\tThomas\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas, invented, the phonograph) -> Thomas (1291ms)\nWhat year was the phonograph invented?\tsignificant inventions\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (significant inventions, invented, the phonograph record disc) -> significant inventions (1069ms)\nWhat year was the phonograph invented?\tCharles Cros\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Charles Cros, invented, the phonograph) -> Charles Cros (1294ms)\nWhat year was the phonograph invented?\tMr. Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Mr. Edison, invented, the phonograph) -> Mr. Edison (956ms)\nWhat year was the phonograph invented?\tLeon Scott\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Leon Scott, invented, the phonograph) -> Leon Scott (1295ms)\nWhat year was the phonograph invented?\tthe First Pirates Thomas Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the First Pirates Thomas Edison, invented, the first phonograph) -> the First Pirates Thomas Edison (1138ms)\nWhat year was the phonograph invented?\ta thousand patents\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (a thousand patents, invented, the phonograph) -> a thousand patents (1252ms)\nWhat year was the phonograph invented?\tThomas A. Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas A. Edison, invented, the phonograph) -> Thomas A. Edison (1294ms)\nWhat year was the phonograph invented?\t? Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (? Edison, also invented, the phonograph) -> ? Edison (956ms)\nWhat year was the phonograph invented?\tThomas Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas Edison, invented, the ?tinfoil phonograph?) -> Thomas Edison (1295ms)\nWhat year was the phonograph invented?\tThomas Alva Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas Alva Edison, invented, Phonograph) -> Thomas Alva Edison (1295ms)\nWhat year was the phonograph invented?\tEdison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Edison, had invented, the phonograph) -> Edison (1294ms)\nWhat year was the phonograph invented?\t1878 Thomas Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (1878 Thomas Edison, invented, the phonograph) -> 1878 Thomas Edison (1252ms)\nWhat year was the phonograph invented?\t130 years\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (130 years, invented, the phonograph) -> 130 years (1252ms)\nWhat year was the phonograph invented?\tthe Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the Edison, invented, the phonograph) -> the Edison (1294ms)\nWhat year was the phonograph invented?\tThomas Edison?s\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas Edison?s, invented, the phonograph) -> Thomas Edison?s (1291ms)\nWhat year was the phonograph invented?\tthe day Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the day Edison, invented, the phonograph) -> the day Edison (1252ms)\nWhat year was the phonograph invented?\ta man\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (a man, invented, the phonograph) -> a man (1069ms)\nWhat year was the phonograph invented?\tan art?\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (an art?, Invented, the phonograph) -> an art? (956ms)\nWhat year was the phonograph invented?\tAlexander Graham Bell\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Alexander Graham Bell, invented, the phonograph) -> Alexander Graham Bell (1294ms)\nWhat year was the phonograph invented?\tthe Opera House\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: (phonograph, be make in, $x) -> (the phonograph, was made in, the Opera House) -> the Opera House (1295ms)\nWhat year was the phonograph invented?\tWhenEdison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (WhenEdison, invented, the phonograph) -> WhenEdison (1069ms)\nWhat year was the phonograph invented?\tBenjamin Franklin\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Benjamin Franklin, invented, the phonograph) -> Benjamin Franklin (1069ms)\nWhat year was the phonograph invented?\tthe greatest inventors\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the greatest inventors, invented, the phonograph) -> the greatest inventors (956ms)\nWhat year was the phonograph invented?\tfortunes\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (fortunes, invented, the phonograph) -> fortunes (956ms)\nWhat year was the phonograph invented?\tRestoration Photos Thomas Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Restoration Photos Thomas Edison, invented, the phonograph) -> Restoration Photos Thomas Edison (1138ms)\nWhat year was the phonograph invented?\tMenlo Park\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Menlo Park, Invented, the phonograph) -> Menlo Park (1291ms)\nWhat year was the phonograph invented?\t1877 Thomas Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (1877 Thomas Edison, invented, the phonograph) -> 1877 Thomas Edison (1291ms)\nWhat year was the phonograph invented?\tCamden\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: (phonograph, be make in, $x) -> (The first phonograph records, were made in, Camden) -> Camden (1294ms)\nWhat year was the phonograph invented?\tEdison Invents\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Edison Invents, invented, the phonograph) -> Edison Invents (1291ms)\nWhat year was the phonograph invented?\t1877 Edison\t1.8888888888839999\tWhat year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (1877 Edison, invented, the phonograph) -> 1877 Edison (1294ms)\nWhat year was the phonograph invented?\ttin foil\t1.44444444444\tWhat year was the phonograph invented? -> $x: (phonograph, be make on, $x) -> (phonograph cylinders, were made on, tin foil) -> tin foil (1295ms)\nWhat year was the phonograph invented?\tschedule\t1.44444444444\tWhat year was the phonograph invented? -> $x: (phonograph, be make on, $x) -> (Phonograph records, are made on, schedule) -> schedule (1295ms)\nWhat year was the phonograph invented?\t1959\t1.44444444444\tWhat year was the phonograph invented? -> $x: (phonograph, start in, $x) -> (Phonographs and records, started circulating in, 1959) -> 1959 (1295ms)\nWhat year was the phonograph invented?\t1938\t0.22222222222599997\tWhat year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (1938, introduced, a phonograph slot machine) -> 1938 (1297ms)\nWhat year was the phonograph invented?\tThe company\t0.22222222222599997\tWhat year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (The company, introduced a line of, phonograph cartridges) -> The company (1295ms)\nWhat year was the phonograph invented?\tme and Henry Horsecollar\t0.22222222222599997\tWhat year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (me and Henry Horsecollar, introduced, the phonograph) -> me and Henry Horsecollar (1295ms)\nWhat year was the phonograph invented?\tMariar\t0.22222222222599997\tWhat year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (Mariar, introduces to, the Phonograph public) -> Mariar (1297ms)\nWhat year was the phonograph invented?\t1925\t0.22222222222599997\tWhat year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (1925, had introduced its own line of, phonographs) -> 1925 (1297ms)\nWhat year was the phonograph invented?\tRCA Victor\t0.22222222222599997\tWhat year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (RCA Victor, introduced, the first 45 rpm phonographs) -> RCA Victor (1295ms)\nWhat year was the phonograph invented?\t1898 ad Edison\t0.22222222222599997\tWhat year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (1898 ad Edison, introduced, a new Business Phonograph) -> 1898 ad Edison (1295ms)\nWhat year was the phonograph invented?\tthe children\t0.11111111111499994\tWhat year was the phonograph invented? -> $x: ($x, found, phonograph) -> (the children, had found was, a 45 RPM phonograph record) -> the children (1297ms)\nWhat year was the phonograph invented?\tInspiration\t0.11111111111499994\tWhat year was the phonograph invented? -> $x: ($x, found, phonograph) -> (Inspiration, has been found in, photographs and phonographs) -> Inspiration (1297ms)\nWhat year was the phonograph invented?\tExamples\t0.11111111111499994\tWhat year was the phonograph invented? -> $x: ($x, found, phonograph) -> (Examples, have also been found of, a wicker phonograph) -> Examples (1297ms)\nWhat year was the phonograph invented?\tgirls\t0.11111111111499994\tWhat year was the phonograph invented? -> $x: ($x, found, phonograph) -> (girls, find, their old phonograph) -> girls (1297ms)\nWhat year was the phonograph invented?\tbuyers\t0.11111111111499994\tWhat year was the phonograph invented? -> $x: ($x, found, phonograph) -> (buyers, found, vintage phonographs) -> buyers (1297ms)\nWhat year was the phonograph invented?\tc. 1930\t0.11111111110499994\tWhat year was the phonograph invented? -> $x: (phonograph, introduce, $x) -> (Electrically-powered phonographs, were introduced, c. 1930) -> c. 1930 (1298ms)\nWhat year was the phonograph invented?\t1905\t0.11111111110499994\tWhat year was the phonograph invented? -> $x: (phonograph, introduce, $x) -> (A new business phonograph, was introduced in, 1905) -> 1905 (1298ms)\nWhat year was the phonograph invented?\tan all gum unit\t0.11111111110499994\tWhat year was the phonograph invented? -> $x: (phonograph, introduce, $x) -> (The Edison Phonograph company, introduced, an all gum unit) -> an all gum unit (1297ms)\nWhat year was the phonograph invented?\tthe year\t-2.0000667788622195E-12\tWhat year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (the phonograph, was invented, the year) -> the year (1300ms)\nWhat year was the phonograph invented?\t40 years\t-2.0000667788622195E-12\tWhat year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (Phonograph, had been invented more than, 40 years) -> 40 years (1298ms)\nWhat year was the phonograph invented?\tthe photograph\t-2.0000667788622195E-12\tWhat year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (the phonograph and daguerre and niepce, invented, the photograph) -> the photograph (1300ms)\nWhat year was the phonograph invented?\t1944\t-2.0000667788622195E-12\tWhat year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (Phonograph technology, had already been invented by, 1944) -> 1944 (1300ms)\nWhat year was the phonograph invented?\tLouis T. Glass\t-2.0000667788622195E-12\tWhat year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (This jukebox -like phonograph, was invented by, Louis T. Glass) -> Louis T. Glass (1300ms)\nWhat year was the phonograph invented?\ta gramophone shop\t-3.000044657142098E-12\tWhat year was the phonograph invented? -> $x: ($x, establish, phonograph) -> (a gramophone shop, then established, a phonograph factory) -> a gramophone shop (1300ms)\nWhat year was the phonograph invented?\tthousands of American homes\t-6.000089314284196E-12\tWhat year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, could be found in, thousands of American homes) -> thousands of American homes (1300ms)\nWhat year was the phonograph invented?\tthousands\t-6.000089314284196E-12\tWhat year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, could soon be found in, thousands) -> thousands (1300ms)\nWhat year was the phonograph invented?\tthe scrap-heap\t-6.000089314284196E-12\tWhat year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, will find its way to, the scrap-heap) -> the scrap-heap (1300ms)\nWhat year was the phonograph invented?\tan area\t-6.000089314284196E-12\tWhat year was the phonograph invented? -> $x: (phonograph, found, $x) -> (phonograph records, have been found in, an area) -> an area (1300ms)\nWhat year was the phonograph invented?\tsoon\t-6.000089314284196E-12\tWhat year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, could be found, soon) -> soon (1300ms)\nWhat year was the phonograph invented?\tcommon use\t-6.000089314284196E-12\tWhat year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, have found their way into, common use) -> common use (1300ms)\nWhat year was the phonograph invented?\tthe mid 1800s Thomas Edison\t-0.1111111111130001\tWhat year was the phonograph invented? -> $x: ($x, create, phonograph) -> (the mid 1800s Thomas Edison, created, the first phonograph) -> the mid 1800s Thomas Edison (1300ms)\nWhat year was the phonograph invented?\tSmetzer\t-0.1111111111130001\tWhat year was the phonograph invented? -> $x: ($x, create, phonograph) -> (Smetzer, created, a phonograph) -> Smetzer (1300ms)\nWhat year was the phonograph invented?\tan album\t-0.1111111111130001\tWhat year was the phonograph invented? -> $x: ($x, create, phonograph) -> (an album, creates a sepia toned mood of, old phonographs) -> an album (1300ms)\nWhat year was the phonograph invented?\tPaper Airplane Competitions\t-0.1111111111130001\tWhat year was the phonograph invented? -> $x: ($x, create, phonograph) -> (Paper Airplane Competitions, Create, a phonograph) -> Paper Airplane Competitions (1300ms)\nWhat team drafted Brett Favre?\tGB\t0.888888888886\tWhat team drafted Brett Favre? -> $x: ($x, draft, favre) -> (GB, had drafted, Favre) -> GB (738ms)\nWhat team drafted Brett Favre?\tthe Falcons\t0.888888888886\tWhat team drafted Brett Favre? -> $x: ($x, draft, favre) -> (the Falcons, drafted, Brett Favre) -> the Falcons (738ms)\nWhat team drafted Brett Favre?\tThe Atlanta Falcons\t0.888888888886\tWhat team drafted Brett Favre? -> $x: ($x, draft, favre) -> (The Atlanta Falcons, drafted, QB Brett Favre) -> The Atlanta Falcons (738ms)\nWhat team drafted Brett Favre?\tNew Packers general manager Ron Wolf\t0.888888888886\tWhat team drafted Brett Favre? -> $x: ($x, draft, favre) -> (New Packers general manager Ron Wolf, had wanted to draft, Favre) -> New Packers general manager Ron Wolf (738ms)\nWhat team drafted Brett Favre?\tThe CS\t0.5555555555539999\tWhat team drafted Brett Favre? -> $x: ($x, manage, brett farve) -> (The CS, managed to transform, Brett Farve) -> The CS (765ms)\nWhat team drafted Brett Favre?\tStuckey\t-0.11111111111200003\tWhat team drafted Brett Favre? -> $x: ($x, happen to, favre) -> (Stuckey, just happened to catch, a Favre heave) -> Stuckey (833ms)\nWhat team drafted Brett Favre?\tNo 1 month\t-0.11111111111200003\tWhat team drafted Brett Favre? -> $x: ($x, happen to, favre) -> (No 1 month, is going to happen with, Brett Favre) -> No 1 month (833ms)\nWhat team drafted Brett Favre?\t1 touchdown\t-0.11111111111200003\tWhat team drafted Brett Favre? -> $x: ($x, happen to, favre) -> (1 touchdown, happened to be, Favre?s 500th touchdown pass) -> 1 touchdown (833ms)\nWhat team drafted Brett Favre?\tthe hell\t-0.11111111111200003\tWhat team drafted Brett Favre? -> $x: ($x, happen to, favre) -> (the hell, happened to, Favre) -> the hell (833ms)\nWhat team drafted Brett Favre?\tno doubt\t-0.22222222222300003\tWhat team drafted Brett Favre? -> $x: ($x, be team, favre) -> (no doubt, be a better team with, Favre) -> no doubt (833ms)\nWhat team drafted Brett Favre?\tthe Packers\t-0.22222222222300003\tWhat team drafted Brett Favre? -> $x: ($x, be team, favre) -> (the Packers, are a better team with, Brett Favre) -> the Packers (833ms)\nWhat team drafted Brett Favre?\tthe Vikings\t-0.22222222222300003\tWhat team drafted Brett Favre? -> $x: ($x, be team, favre) -> (the Vikings, are a better football team with, Favre) -> the Vikings (833ms)\nWhat team drafted Brett Favre?\tChateau d'Angles\t-0.333333333333\tWhat team drafted Brett Favre? -> $x: ($x, manage, favre) -> (Chateau d'Angles, managed by, Mr. and Mrs. Favre) -> Chateau d'Angles (850ms)\nWhat team drafted Brett Favre?\tThe Saints ? Defense\t-0.333333333333\tWhat team drafted Brett Favre? -> $x: ($x, manage, favre) -> (The Saints ? Defense, managed to eliminate, Brett Favre) -> The Saints ? Defense (850ms)\nWhere does Curveball now live?\ta corset\t-1.22222222222\tWhere does Curveball now live? -> $x: (curveball, wear, $x) -> (his sinker and curveball, wore, a corset) -> a corset (821ms)\nWhere does Curveball now live?\t1994-11-28\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Date of first publication, 1994-11-28) -> 1994-11-28 (875ms)\nWhere does Curveball now live?\t1999-11-05\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Original air date, 1999-11-05) -> 1999-11-05 (875ms)\nWhere does Curveball now live?\t1999\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Castro's Curveball: A Novel, Publication date, 1999) -> 1999 (875ms)\nWhere does Curveball now live?\t2011-11-09\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Dead Man's Curveball, Original air date, 2011-11-09) -> 2011-11-09 (876ms)\nWhere does Curveball now live?\t2007\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Publication date, 2007) -> 2007 (875ms)\nWhere does Curveball now live?\t2005\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Guys, Dolls, and Curveballs: Damon Runyon on Baseball, Date of first publication, 2005) -> 2005 (875ms)\nWhere does Curveball now live?\t2001-10-23\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball / Haiku, Release Date, 2001-10-23) -> 2001-10-23 (875ms)\nWhere does Curveball now live?\t2010-02-13\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveballs, Original air date, 2010-02-13) -> 2010-02-13 (876ms)\nWhere does Curveball now live?\t1988\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (The crooked pitch: the curveball in American baseball history, Publication date, 1988) -> 1988 (875ms)\nWhere does Curveball now live?\t1984\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (The crooked pitch: the curveball in American baseball history, Publication date, 1984) -> 1984 (875ms)\nWhere does Curveball now live?\t2011-12-13\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Original air date, 2011-12-13) -> 2011-12-13 (875ms)\nWhere does Curveball now live?\t2006\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Hitting for Excellence: Power Hitting & Conquering the Curveball, Initial release date, 2006) -> 2006 (875ms)\nWhere does Curveball now live?\t2006-05\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball EP, Release Date, 2006-05) -> 2006-05 (821ms)\nWhere does Curveball now live?\t1983-10-22\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Voiceprints; Curveball; Goosebumps Chat; Hawk, Original air date, 1983-10-22) -> 1983-10-22 (875ms)\nWhere does Curveball now live?\t2009-05-21\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Original air date, 2009-05-21) -> 2009-05-21 (875ms)\nWhere does Curveball now live?\t1990\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveballs: wacky facts to bat around, Publication date, 1990) -> 1990 (821ms)\nWhere does Curveball now live?\t1968\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Date of birth, 1968) -> 1968 (821ms)\nWhere does Curveball now live?\t2007-10\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball: Spies, Lies, and the Con Man Who Caused a War, Publication date, 2007-10) -> 2007-10 (821ms)\nWhere does Curveball now live?\t2000-09-13\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Original air date, 2000-09-13) -> 2000-09-13 (875ms)\nWhere does Curveball now live?\t2007-09-10\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Release Date, 2007-09-10) -> 2007-09-10 (876ms)\nWhere does Curveball now live?\t2008-04-27\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (The $30,000 Curveball, Original air date, 2008-04-27) -> 2008-04-27 (875ms)\nWhere does Curveball now live?\t2005-02\t-1.333333333331\tWhere does Curveball now live? -> $x: (curveball, date, $x) -> (Guys, Dolls, and Curveballs: Damon Runyon on Baseball, Publication date, 2005-02) -> 2005-02 (875ms)\nWhere is Rider College located?\tFall 1993 , 2-3\t-0.6666666666659999\tWhere is Rider College located? -> $x: ($x, rider, college) -> (Fall 1993 , 2-3, Rider, College) -> Fall 1993 , 2-3 (964ms)\nWhere is Rider College located?\tintramural basketball\t-0.6666666666659999\tWhere is Rider College located? -> $x: ($x, rider, college) -> (intramural basketball, then Rider, College) -> intramural basketball (964ms)\nWhere is Rider College located?\tthe Rider College Chapter\t-0.6666666666659999\tWhere is Rider College located? -> $x: ($x, rider, college) -> (the Rider College Chapter, Rider, College AAUP Newsletter) -> the Rider College Chapter (963ms)\nWhere is Rider College located?\tAblett\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Ablett, played for, the Rough Riders) -> Ablett (1207ms)\nWhere is Rider College located?\tGanguly\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Ganguly, played for, Kolkata Knight Riders) -> Ganguly (1207ms)\nWhere is Rider College located?\tCustis\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Custis, played for, the Ticats and Ottawa Rough Riders) -> Custis (1272ms)\nWhere is Rider College located?\tBrendon McCullum\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Brendon McCullum, will play for, Kolkata Knight Riders) -> Brendon McCullum (1207ms)\nWhere is Rider College located?\tThompson\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Thompson, played for, Rider University) -> Thompson (1157ms)\nWhere is Rider College located?\tJoseph Harris\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Joseph Harris, plays for, the Leicester Riders) -> Joseph Harris (1157ms)\nWhere is Rider College located?\tthe music\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (the music, played different songs for, each rider) -> the music (1157ms)\nWhere is Rider College located?\tKallis , 36\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Kallis , 36, is playing for, Kolkata Knight Riders) -> Kallis , 36 (1207ms)\nWhere is Rider College located?\tKallis\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Kallis, is currently playing for, Kolkata Knight Riders) -> Kallis (1272ms)\nWhere is Rider College located?\tDinda\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Dinda, played the first three seasons for, Kolkata Knight Riders) -> Dinda (1157ms)\nWhere is Rider College located?\tMeola\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Meola, played for, the Long Island Rough Riders) -> Meola (1157ms)\nWhere is Rider College located?\tKelly\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Kelly, plays field hockey for, Rider University) -> Kelly (1207ms)\nWhere is Rider College located?\tElectric motorcycles\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Electric motorcycles, make play for, new riders) -> Electric motorcycles (1207ms)\nWhere is Rider College located?\tcost\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (cost, plays a role for, many riders) -> cost (1157ms)\nWhere is Rider College located?\tPathan\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Pathan, is playing for, Kolkata Knight Riders) -> Pathan (1157ms)\nWhere is Rider College located?\ta CFL all-star\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (a CFL all-star, played for, the Ottawa Rough Riders) -> a CFL all-star (1207ms)\nWhere is Rider College located?\tDerrick Etienne\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Derrick Etienne, plays for, the Long Island Rough Riders) -> Derrick Etienne (1157ms)\nWhere is Rider College located?\tMike Kelley\t-1.555555555552\tWhere is Rider College located? -> $x: ($x, play for, rider) -> (Mike Kelley, played for, the riders) -> Mike Kelley (1207ms)\nWhere is Rider College located?\tFX\t-1.777777777773\tWhere is Rider College located? -> $x: ($x, study, rider) -> (FX, studied the needs of, riders) -> FX (1272ms)\nWhere is Rider College located?\tthe markers\t-1.777777777773\tWhere is Rider College located? -> $x: ($x, study, rider) -> (the markers, study, your maps and rider instructions) -> the markers (1272ms)\nWhere is Rider College located?\tRitter\t-1.777777777773\tWhere is Rider College located? -> $x: ($x, study, rider) -> (Ritter, will study secondary education at, Rider) -> Ritter (1272ms)\nWhere is Rider College located?\tUSA Cycling\t-1.777777777773\tWhere is Rider College located? -> $x: ($x, study, rider) -> (USA Cycling, studied, cross-country riders) -> USA Cycling (1272ms)\nWhat is the capital of Italy?\tRome Colosseum Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome Colosseum Rome, is the capital city of, Italy) -> Rome Colosseum Rome (1734ms)\nWhat is the capital of Italy?\tclose Turin ?\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (close Turin ?, was the original capital of, Italy) -> close Turin ? (1974ms)\nWhat is the capital of Italy?\tworld history Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (world history Rome, is the capital city of, Italy) -> world history Rome (2373ms)\nWhat is the capital of Italy?\tthe capital\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (the capital, is the economic capital of, Italy) -> the capital (2374ms)\nWhat is the capital of Italy?\tthe city\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (the city, is the capital of, Italy) -> the city (1868ms)\nWhat is the capital of Italy?\tAvailability Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Availability Rome, is the capital of, Italy) -> Availability Rome (1399ms)\nWhat is the capital of Italy?\tFlorence Florence\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Florence Florence, is the artistic capital of, Italy) -> Florence Florence (2008ms)\nWhat is the capital of Italy?\tNational Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (National Rome, is the national capital of, Italy) -> National Rome (1734ms)\nWhat is the capital of Italy?\tan extremely beautiful country\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (an extremely beautiful country, is the capital of, Italy) -> an extremely beautiful country (2352ms)\nWhat is the capital of Italy?\tthe 2006 winter Olympics\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (the 2006 winter Olympics, is the capital of, Italy) -> the 2006 winter Olympics (1868ms)\nWhat is the capital of Italy?\t1861 Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (1861 Rome, was declared the capital of, Italy) -> 1861 Rome (2009ms)\nWhat is the capital of Italy?\tFlorence Italy\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Florence Italy, was actually the capital of, Italy) -> Florence Italy (1515ms)\nWhat is the capital of Italy?\tneighbouring Riccione\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (neighbouring Riccione, is the clubbing capital of, Italy) -> neighbouring Riccione (1868ms)\nWhat is the capital of Italy?\tSalerno\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Salerno, was the capital city of, Italy) -> Salerno (2373ms)\nWhat is the capital of Italy?\tLocal Information Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Local Information Rome, is the capital of, Italy) -> Local Information Rome (2241ms)\nWhat is the capital of Italy?\tRome Hotel Guide Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome Hotel Guide Rome, is the current capital of, Italy) -> Rome Hotel Guide Rome (2334ms)\nWhat is the capital of Italy?\tRome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome, is the capital and largest city of, Italy) -> Rome (2374ms)\nWhat is the capital of Italy?\tNational government Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (National government Rome, is the national capital of, Italy) -> National government Rome (1868ms)\nWhat is the capital of Italy?\ta . Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (a . Rome, is the capital of, Italy) -> a . Rome (1868ms)\nWhat is the capital of Italy?\tDiscussion Forum Rome Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Discussion Forum Rome Rome, is the capital of, Italy) -> Discussion Forum Rome Rome (2374ms)\nWhat is the capital of Italy?\tTurin\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Turin, was the first capital city of, Italy) -> Turin (2373ms)\nWhat is the capital of Italy?\tThe city\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (The city, was the Capital of, Italy) -> The city (2241ms)\nWhat is the capital of Italy?\tEmilia-Romagna\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Emilia-Romagna, is the gastronomic capital of, Italy) -> Emilia-Romagna (1974ms)\nWhat is the capital of Italy?\ta Roman Rome Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (a Roman Rome Rome, is the capital of, Italy) -> a Roman Rome Rome (2009ms)\nWhat is the capital of Italy?\tThe 'Eternal City\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (The 'Eternal City, is the capital of, Italy) -> The 'Eternal City (2373ms)\nWhat is the capital of Italy?\t4 June Rome Rome Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (4 June Rome Rome Rome, is the capital of, Italy) -> 4 June Rome Rome Rome (2374ms)\nWhat is the capital of Italy?\tclose Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (close Rome, is the capital of, Italy) -> close Rome (1733ms)\nWhat is the capital of Italy?\tMilan Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Milan Rome, may be the administrative capital of, Italy) -> Milan Rome (1734ms)\nWhat is the capital of Italy?\tAsk\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Ask, is the capital of, Italy) -> Ask (2334ms)\nWhat is the capital of Italy?\tUSA and Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (USA and Rome, is a capital city of, Italy) -> USA and Rome (1399ms)\nWhat is the capital of Italy?\tRome Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome Rome, is the capital of, Italy) -> Rome Rome (2374ms)\nWhat is the capital of Italy?\tMajor Cities\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Major Cities, is the capital of, Italy) -> Major Cities (2241ms)\nWhat is the capital of Italy?\tBologna\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Bologna, is a culinary capital of, Italy) -> Bologna (2334ms)\nWhat is the capital of Italy?\tItaly Florence\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Italy Florence, is the artistic capital of, Italy) -> Italy Florence (2061ms)\nWhat is the capital of Italy?\tan extremely attractive city\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (an extremely attractive city, is the capital of, Italy) -> an extremely attractive city (1974ms)\nWhat is the capital of Italy?\tRavenna\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Ravenna, was then the Roman capital of, Italy) -> Ravenna (2009ms)\nWhat is the capital of Italy?\tRome Rome Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome Rome Rome, is the capital of, Italy) -> Rome Rome Rome (2334ms)\nWhat is the capital of Italy?\tItaly Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Italy Rome, is the national capital of, Italy) -> Italy Rome (2352ms)\nWhat is the capital of Italy?\tFirenze\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Firenze, was the capital of, Italy) -> Firenze (2334ms)\nWhat is the capital of Italy?\tFlorence\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Florence, is actually the capital of, Italy) -> Florence (2374ms)\nWhat is the capital of Italy?\tRome 2313 60.05 % Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome 2313 60.05 % Rome, is the capital city of, Italy) -> Rome 2313 60.05 % Rome (1399ms)\nWhat is the capital of Italy?\tPerugia\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Perugia, is the capital city of, Italy) -> Perugia (2373ms)\nWhat is the capital of Italy?\tE Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (E Rome, is the capital of, Italy) -> E Rome (2334ms)\nWhat is the capital of Italy?\tRomans Rome Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Romans Rome Rome, is the capital of, Italy) -> Romans Rome Rome (1399ms)\nWhat is the capital of Italy?\tFebruary 8-10 Milan\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (February 8-10 Milan, is the economic capital of, Italy) -> February 8-10 Milan (2008ms)\nWhat is the capital of Italy?\tLatin Roma\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Latin Roma, is the capital city of, Italy) -> Latin Roma (1515ms)\nWhat is the capital of Italy?\t1871\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (1871, was capital of, Italy) -> 1871 (1734ms)\nWhat is the capital of Italy?\tRome and Vatican City Rome\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome and Vatican City Rome, is the capital of, Italy) -> Rome and Vatican City Rome (1515ms)\nWhat is the capital of Italy?\tSociety Rome ?\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Society Rome ?, is the capital city of, Italy) -> Society Rome ? (2352ms)\nWhat is the capital of Italy?\tJohnny\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Johnny, is the capital of, Italy) -> Johnny (2061ms)\nWhat is the capital of Italy?\tStudent Blogger Florence\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Student Blogger Florence, has been the capital of, Italy) -> Student Blogger Florence (1868ms)\nWhat is the capital of Italy?\tMilan\t2.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Milan, could easily have been the capital of, Italy) -> Milan (2352ms)\nWhat is the capital of Italy?\tItaly\t2.0\tWhat is the capital of Italy? -> $x: ($x, be first capital of, italy) -> (Italy, was the first capital of, unified Italy) -> Italy (2389ms)\nWhat is the capital of Italy?\tTorino\t2.0\tWhat is the capital of Italy? -> $x: ($x, be first capital of, italy) -> (Torino, was the first capital of, unified Italy) -> Torino (2389ms)\nWhat is the capital of Italy?\tMole Antonelliana Turin\t2.0\tWhat is the capital of Italy? -> $x: ($x, be first capital of, italy) -> (Mole Antonelliana Turin, was the first capital of, modern Italy) -> Mole Antonelliana Turin (2392ms)\nWhat is the capital of Italy?\tVenice\t1.777777777775\tWhat is the capital of Italy? -> $x: ($x, be main city in, italy) -> (Venice, is the main city in, the Veneto and north-eastern Italy) -> Venice (2392ms)\nWhat is the capital of Italy?\t2008 Venice\t1.777777777775\tWhat is the capital of Italy? -> $x: ($x, be small city in, italy) -> (2008 Venice, is a small city in, northern Italy) -> 2008 Venice (2392ms)\nWhat is the capital of Italy?\tCrete\t1.1111111110910001\tWhat is the capital of Italy? -> $x: ($x, become capital of, italy) -> (Crete, eventually became the capital of, Italy) -> Crete (2396ms)\nWhat is the capital of Italy?\t1870 Rome\t1.1111111110910001\tWhat is the capital of Italy? -> $x: ($x, become capital of, italy) -> (1870 Rome, becomes the capital of, Italy) -> 1870 Rome (2394ms)\nWhat is the capital of Italy?\t1865 Florence\t1.1111111110910001\tWhat is the capital of Italy? -> $x: ($x, become capital of, italy) -> (1865 Florence, became the capital of, Italy) -> 1865 Florence (2396ms)\nWhat is the capital of Italy?\tMarch 1861 Turin\t1.1111111110910001\tWhat is the capital of Italy? -> $x: ($x, become capital of, italy) -> (March 1861 Turin, became the first capital of, Italy) -> March 1861 Turin (2396ms)\nWhat is the capital of Italy?\tTurin briefly\t1.1111111110910001\tWhat is the capital of Italy? -> $x: ($x, become capital of, italy) -> (Turin briefly, became the capital of, Italy) -> Turin briefly (2392ms)\nWhat is the capital of Italy?\tthe Kingdom\t1.1111111110910001\tWhat is the capital of Italy? -> $x: ($x, become capital of, italy) -> (the Kingdom, became the capital of, unified Italy) -> the Kingdom (2394ms)\nWhat is the capital of Italy?\tthe 19th century Naples\t1.1111111110910001\tWhat is the capital of Italy? -> $x: ($x, become capital of, italy) -> (the 19th century Naples, became the capital of, southern Italy) -> the 19th century Naples (2394ms)\nWhat is the capital of Italy?\tRoman Catholicism\t0.99999999999\tWhat is the capital of Italy? -> $x: ($x, be religion of, italy) -> (Roman Catholicism, was made the official religion of, Italy) -> Roman Catholicism (2396ms)\nWhat is the capital of Italy?\tthe south\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (the south, is the culturally alive capital city of, Santiago) -> the south (2398ms)\nWhat is the capital of Italy?\tCidade Velha\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Cidade Velha, was the old capital of, Santiago) -> Cidade Velha (2398ms)\nWhat is the capital of Italy?\tMacas\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Macas, is the capital of, Morona Santiago province) -> Macas (2400ms)\nWhat is the capital of Italy?\tSan Marino\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, san marino) -> (San Marino, is the capital of, San Marino San Marino) -> San Marino (2398ms)\nWhat is the capital of Italy?\tthe Siracusa\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (the Siracusa, was the capital of, Sicily) -> the Siracusa (2398ms)\nWhat is the capital of Italy?\tPalermo Italy Palermo\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (Palermo Italy Palermo, is the capital city of, Sicily) -> Palermo Italy Palermo (2398ms)\nWhat is the capital of Italy?\tPalermo Palermo\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (Palermo Palermo, is the capital of, Sicily) -> Palermo Palermo (2398ms)\nWhat is the capital of Italy?\tCuba\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Cuba, is the capital city of, Santiago) -> Cuba (2400ms)\nWhat is the capital of Italy?\tPalermo Travel Guide Palermo\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (Palermo Travel Guide Palermo, is the capital of, Sicily) -> Palermo Travel Guide Palermo (2396ms)\nWhat is the capital of Italy?\tSantiago de Cuba\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Santiago de Cuba, is the capital city of, Santiago) -> Santiago de Cuba (2400ms)\nWhat is the capital of Italy?\tPalermo\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (Palermo, is the capital city of, Sicily) -> Palermo (2400ms)\nWhat is the capital of Italy?\tSantiago de Chile\t0.888888888891\tWhat is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Santiago de Chile, is the capital of, Chile Santiago) -> Santiago de Chile (2400ms)\nWhat is the capital of Italy?\tLe?n\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Le?n, was the colonial capital of, Nicaragua) -> Le?n (2403ms)\nWhat is the capital of Italy?\tParis\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, rome) -> (Paris, is the capital of, Rome) -> Paris (2403ms)\nWhat is the capital of Italy?\tThailand\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, pasta) -> (Thailand, is n?t exactly the capital of, pastas) -> Thailand (2402ms)\nWhat is the capital of Italy?\ta population\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (a population, is the capital of, Nicaragua and largest city) -> a population (2403ms)\nWhat is the capital of Italy?\tone time\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (one time, was the first capital of, Nicaragua) -> one time (2400ms)\nWhat is the capital of Italy?\tle?n\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (le?n, is the capital city of the country, nicaragua) -> le?n (2402ms)\nWhat is the capital of Italy?\tLeon\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Leon, was the capital of, Nicaragua) -> Leon (2403ms)\nWhat is the capital of Italy?\tNicaraguan / Nicaraguans Managua\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Nicaraguan / Nicaraguans Managua, is the capital of, Nicaragua) -> Nicaraguan / Nicaraguans Managua (2402ms)\nWhat is the capital of Italy?\tManagua\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Managua, is the capital of, Nicaragua Managua) -> Managua (2403ms)\nWhat is the capital of Italy?\tManagua Managua\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Managua Managua, is the capital city of, Nicaragua as well as) -> Managua Managua (2403ms)\nWhat is the capital of Italy?\tGranada\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Granada, was the economic capital of, Nicaragua) -> Granada (2403ms)\nWhat is the capital of Italy?\tConstantinopolis\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, rome) -> (Constantinopolis, was named the new capital of, Eastern Rome) -> Constantinopolis (2402ms)\nWhat is the capital of Italy?\tIstanbul\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, rome) -> (Istanbul, had been the capital of, Rome ,Byzantium) -> Istanbul (2402ms)\nWhat is the capital of Italy?\tLe?n\t0.77777777778\tWhat is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Le?n, was the capital city of, Nicaragua) -> Le?n (2401ms)\nWhat is the capital of Italy?\tOffice space\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (Office space, is the productive capital of, an office economy) -> Office space (2404ms)\nWhat is the capital of Italy?\tCreativity\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (Creativity, is the capital of, the new economy) -> Creativity (2404ms)\nWhat is the capital of Italy?\ta supply town\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (a supply town, is the capital of fifth, largest economy) -> a supply town (2404ms)\nWhat is the capital of Italy?\tNew York City\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (New York City, is the new capital of, the digital economy) -> New York City (2404ms)\nWhat is the capital of Italy?\tCanberra\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (Canberra, is the capital city of, the 14th biggest economy) -> Canberra (2404ms)\nWhat is the capital of Italy?\t?knowledge ?\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (?knowledge ?, is the new capital of, the globalised economy) -> ?knowledge ? (2404ms)\nWhat is the capital of Italy?\tthe mind\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (the mind, is the capital plant of, the modern economy) -> the mind (2404ms)\nWhat is the capital of Italy?\tdata\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (data, is the capital of, the new economy) -> data (2404ms)\nWhat is the capital of Italy?\t2. Berlin\t0.5555555555580001\tWhat is the capital of Italy? -> $x: ($x, be capital of, economy) -> (2. Berlin, is the capital of, Europe?s largest economy) -> 2. Berlin (2404ms)\nWhat is the capital of Italy?\tthe kingdom\t0.111111111111\tWhat is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, had been made the capital of, the kingdom) -> the kingdom (2405ms)\nWhat is the capital of Italy?\tthe state\t0.111111111111\tWhat is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, had been the capital of, the state) -> the state (2405ms)\nWhat is the capital of Italy?\ta vast empire\t0.111111111111\tWhat is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, has become the capital of, a vast empire) -> a vast empire (2405ms)\nWhat is the capital of Italy?\tthe Western empire\t0.111111111111\tWhat is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, had n?t been the capital of, the Western empire) -> the Western empire (2405ms)\nWhat is the capital of Italy?\tworld culture\t0.111111111111\tWhat is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, has been a capital of, world culture) -> world culture (2405ms)\nWhat is the capital of Italy?\tGap\t2.0000667788622195E-12\tWhat is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Gap, is the capital of, the southern Alps Ile) -> Gap (2405ms)\nWhat is the capital of Italy?\tBolzano\t2.0000667788622195E-12\tWhat is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Bolzano, is officially the capital of, the Alps) -> Bolzano (2405ms)\nWhat is the capital of Italy?\tCimiez\t2.0000667788622195E-12\tWhat is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Cimiez, was the capital of, the Maritime Alps province) -> Cimiez (2405ms)\nWhat is the capital of Italy?\tInnsbruck\t2.0000667788622195E-12\tWhat is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Innsbruck, is the unofficial capital of, the Alps) -> Innsbruck (2405ms)\nWhat is the capital of Italy?\tGrenoble\t2.0000667788622195E-12\tWhat is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Grenoble, is the capital of, the French Alps) -> Grenoble (2405ms)\nWhen was Julius Caesar born?\t100 BC\t0.888888888888\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Famous Romans Julius Caesar Julius Caesar, was born in, 100 BC) -> 100 BC (1282ms)\nWhen was Julius Caesar born?\t100 B.C.\t0.888888888888\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Julius Caesar, was born in, 100 B.C.) -> 100 B.C. (1282ms)\nWhen was Julius Caesar born?\tRome\t0.888888888888\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Julius Caesar, was born in, Rome) -> Rome (1282ms)\nWhen was Julius Caesar born?\tthe Subura\t0.888888888888\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Julius Caesar, was born in, the Subura) -> the Subura (1283ms)\nWhen was Julius Caesar born?\t100\t0.888888888888\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Julius Caesar, was born in, 100) -> 100 (1282ms)\nWhen was Julius Caesar born?\tJuly 12 , 100 BC\t0.555555555558\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Julius Caesar, was born on, July 12 , 100 BC) -> July 12 , 100 BC (1661ms)\nWhen was Julius Caesar born?\tthe twelfth\t0.555555555558\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (C. Julius Caesar, was born on, the twelfth) -> the twelfth (1360ms)\nWhen was Julius Caesar born?\tJuly 13 , 100 BC\t0.555555555558\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Gaius Julius Caesar, was born on, July 13 , 100 BC) -> July 13 , 100 BC (1661ms)\nWhen was Julius Caesar born?\tjuly 12\t0.555555555558\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Julius Caesar, was born on, july 12) -> july 12 (1661ms)\nWhen was Julius Caesar born?\tPortland\t0.555555555558\tWhen was Julius Caesar born? -> $x: (julius caesar, live now in, $x) -> (Julius Caesar, is now living in, Portland) -> Portland (1360ms)\nWhen was Julius Caesar born?\teither July 12th\t0.555555555558\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Julius Caesar, was born on, either July 12th) -> either July 12th (1661ms)\nWhen was Julius Caesar born?\tJuly\t0.555555555558\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (the Roman emperor Julius Caesar, was born on, July) -> July (1661ms)\nWhen was Julius Caesar born?\tJuly 13\t0.555555555558\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Gaius Julius Caesar, was born on, July 13) -> July 13 (1661ms)\nWhen was Julius Caesar born?\tthe Ides of March\t0.44444444444699993\tWhen was Julius Caesar born? -> $x: (julius caesar, die on, $x) -> (Julius Caesar, died on, the Ides of March) -> the Ides of March (1907ms)\nWhen was Julius Caesar born?\tMarch 15\t0.44444444444699993\tWhen was Julius Caesar born? -> $x: (julius caesar, die on, $x) -> (Julius Caesar, died on, March 15) -> March 15 (1754ms)\nWhen was Julius Caesar born?\tthe Bard\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (his play Julius Caesar, did any of, the Bard) -> the Bard (2357ms)\nWhen was Julius Caesar born?\tthe diadem\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, did, the diadem) -> the diadem (2504ms)\nWhen was Julius Caesar born?\ta mere two thousand years\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, certainly did, a mere two thousand years) -> a mere two thousand years (2357ms)\nWhen was Julius Caesar born?\tthe same\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, did, the same) -> the same (2504ms)\nWhen was Julius Caesar born?\tBooth\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar Whose execution, did, Booth) -> Booth (2357ms)\nWhen was Julius Caesar born?\tmind William Shakespeare\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, does bring to, mind William Shakespeare) -> mind William Shakespeare (2322ms)\nWhen was Julius Caesar born?\tHannibal\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, did, Hannibal) -> Hannibal (2358ms)\nWhen was Julius Caesar born?\tthe Spartacus War\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, had nothing to do with, the Spartacus War) -> the Spartacus War (2322ms)\nWhen was Julius Caesar born?\thistory\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (exactly what Julius Caesar, did in, history) -> history (2505ms)\nWhen was Julius Caesar born?\tthe company\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (his great- grandfather Julius Caesar, had done in, the company) -> the company (2357ms)\nWhen was Julius Caesar born?\tcenturies\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, did, centuries) -> centuries (2504ms)\nWhen was Julius Caesar born?\t44 BCE\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, die in, $x) -> (Julius Caesar, died in, 44 BCE) -> 44 BCE (2357ms)\nWhen was Julius Caesar born?\t44\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, die in, $x) -> (Julius Caesar, died in, 44) -> 44 (2357ms)\nWhen was Julius Caesar born?\tcampy style\t0.33333333333599996\tWhen was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, is done in, campy style) -> campy style (2505ms)\nWhen was Julius Caesar born?\tAugust 31\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be bear on, $x) -> (Gaius Caesar Caligula, was born on, August 31) -> August 31 (2710ms)\nWhen was Julius Caesar born?\tJuly 12 , 100 B.C.\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born on, $x) -> (Caesar, was born on, July 12 , 100 B.C.) -> July 12 , 100 B.C. (2710ms)\nWhen was Julius Caesar born?\tFredericksburg\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Caesar Allen Alsop, was born in, Fredericksburg) -> Fredericksburg (2710ms)\nWhen was Julius Caesar born?\tthe day\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born on, $x) -> (Caius Caesar, was born on, the day) -> the day (2724ms)\nWhen was Julius Caesar born?\tthe consulship of his father\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Gaius Caesar, was born in, the consulship of his father) -> the consulship of his father (2710ms)\nWhen was Julius Caesar born?\tJuly 17 , 100 BC\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be bear on, $x) -> (Caesar, was born on, July 17 , 100 BC) -> July 17 , 100 BC (2637ms)\nWhen was Julius Caesar born?\tDurham\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (Caesar, was born in, Durham) -> Durham (2682ms)\nWhen was Julius Caesar born?\tYonkers\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (The Sid Caesar Show, was born in, Yonkers) -> Yonkers (2710ms)\nWhen was Julius Caesar born?\tIndian Territory\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Caesar Bruner, was born in, Indian Territory) -> Indian Territory (2696ms)\nWhen was Julius Caesar born?\t1943\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Mrs. Caesar, was born in, 1943) -> 1943 (2682ms)\nWhen was Julius Caesar born?\tDover\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Attorney General Caesar Augustus Rodney, was born in, Dover) -> Dover (2696ms)\nWhen was Julius Caesar born?\tMexico\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (?If Caesar, had been born in, Mexico) -> Mexico (2637ms)\nWhen was Julius Caesar born?\twhose time\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (Augustus Caesar, was born in, whose time) -> whose time (2724ms)\nWhen was Julius Caesar born?\tJuly 12\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born on, $x) -> (Caesar, was born on, July 12) -> July 12 (2710ms)\nWhen was Julius Caesar born?\tQuintilis 13\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be bear on, $x) -> (Caesar, was born on, Quintilis 13) -> Quintilis 13 (2682ms)\nWhen was Julius Caesar born?\tthe 12th\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born on, $x) -> (J. Caesar, had been born on, the 12th) -> the 12th (2696ms)\nWhen was Julius Caesar born?\tthe Mexican border city\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (Caesar salad, was born in, the Mexican border city) -> the Mexican border city (2724ms)\nWhen was Julius Caesar born?\tSt Kitts\t0.333333333331\tWhen was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Burt Caesar, was born in, St Kitts) -> St Kitts (2710ms)\nWhen was Julius Caesar born?\tShakespeare\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Shakespeare, did for, Julius Caesar) -> Shakespeare (2724ms)\nWhen was Julius Caesar born?\tJared Miller\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Jared Miller, does, Julius Caesar) -> Jared Miller (2737ms)\nWhen was Julius Caesar born?\tEngland\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (England, did, Julius Caesar and Thomas) -> England (2737ms)\nWhen was Julius Caesar born?\tthe Ides\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the Ides, did, Julius Caesar) -> the Ides (2738ms)\nWhen was Julius Caesar born?\tthe Ancient / Classical History site\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the Ancient / Classical History site, Did, Julius Caesar) -> the Ancient / Classical History site (2737ms)\nWhen was Julius Caesar born?\tthe proud bird\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the proud bird, so did, Julius Caesar) -> the proud bird (2737ms)\nWhen was Julius Caesar born?\tProof\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Proof, Did, Julius Caesar) -> Proof (2737ms)\nWhen was Julius Caesar born?\tthe group\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the group, does, Julius Caesar) -> the group (2724ms)\nWhen was Julius Caesar born?\tthe Roman senate\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the Roman senate, did something similar to, Julius Caesar) -> the Roman senate (2724ms)\nWhen was Julius Caesar born?\tthe Rubicon River\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the Rubicon River, did, Julius Caesar) -> the Rubicon River (2737ms)\nWhen was Julius Caesar born?\tOne of. . Read More Pop Quiz\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (One of. . Read More Pop Quiz, did, Julius Caesar) -> One of. . Read More Pop Quiz (2724ms)\nWhen was Julius Caesar born?\tBrutus\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Brutus, did to, Julius Caesar) -> Brutus (2749ms)\nWhen was Julius Caesar born?\tpolitical strength\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (political strength, does, Gaius Julius Caesar) -> political strength (2737ms)\nWhen was Julius Caesar born?\ttwo actors\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (two actors, do, Julius Caesar) -> two actors (2737ms)\nWhen was Julius Caesar born?\tcount\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (count, so does n?t quite jive with, the count Julius Caesar) -> count (2724ms)\nWhen was Julius Caesar born?\tAristotle\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Aristotle, as did, Julius Caesar and Thomas Jefferson) -> Aristotle (2737ms)\nWhen was Julius Caesar born?\tKing Tut\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (King Tut, so did, Julius Caesar) -> King Tut (2737ms)\nWhen was Julius Caesar born?\tCleopatra\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Cleopatra, did capture the hearts of, Julius Caesar) -> Cleopatra (2724ms)\nWhen was Julius Caesar born?\tchallenges\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (challenges, did, Julius Caesar face) -> challenges (2737ms)\nWhen was Julius Caesar born?\t10:31 PM | Permalink Comments\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (10:31 PM | Permalink Comments, Did, Julius Caesar trip) -> 10:31 PM | Permalink Comments (2737ms)\nWhen was Julius Caesar born?\t6 Revision\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (6 Revision, did, Julius Caesar claim) -> 6 Revision (2737ms)\nWhen was Julius Caesar born?\tThe Caesarean\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (The Caesarean, had nothing to do with, Julius Caesar) -> The Caesarean (2724ms)\nWhen was Julius Caesar born?\tMark Antony\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Mark Antony, did in, William Shakespeare?s Julius Caesar) -> Mark Antony (2724ms)\nWhen was Julius Caesar born?\tLatin\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Latin, did, Julius Caesar) -> Latin (2737ms)\nWhen was Julius Caesar born?\tMar 12\t0.22222222222499993\tWhen was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Mar 12, does, Julius Caesars conquest) -> Mar 12 (2749ms)\nWhen was Julius Caesar born?\t1830\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Knopf, was born in, 1830) -> 1830 (2780ms)\nWhen was Julius Caesar born?\tVicksburg\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Historian and poet Julius Eric Thompson, was born in, Vicksburg) -> Vicksburg (2780ms)\nWhen was Julius Caesar born?\t63\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (octavian, be bear in, $x) -> (Octavian, was born in, 63) -> 63 (2790ms)\nWhen was Julius Caesar born?\tearly 1950\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, early 1950) -> early 1950 (2769ms)\nWhen was Julius Caesar born?\tHempstead\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Erving, was born in, Hempstead) -> Hempstead (2749ms)\nWhen was Julius Caesar born?\tSulzburg\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Dukas, was born in, Sulzburg) -> Sulzburg (2770ms)\nWhen was Julius Caesar born?\t63 BC\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (octavian, be bear in, $x) -> (Octavian, was born in, 63 BC) -> 63 BC (2749ms)\nWhen was Julius Caesar born?\t1834\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, 1834) -> 1834 (2770ms)\nWhen was Julius Caesar born?\tSabine\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (the Julii, was born in, Sabine) -> Sabine (2790ms)\nWhen was Julius Caesar born?\tPressburg\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Karl Julius Schr?er, was born in, Pressburg) -> Pressburg (2770ms)\nWhen was Julius Caesar born?\tBellerica\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Sumner Miller, is born in, Bellerica) -> Bellerica (2749ms)\nWhen was Julius Caesar born?\t1855\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, 1855) -> 1855 (2759ms)\nWhen was Julius Caesar born?\tthe village\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Streicher, was born in, the village) -> the village (2790ms)\nWhen was Julius Caesar born?\tAuburn\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (History Architect Julius A. Schweinfurth, was born in, Auburn) -> Auburn (2769ms)\nWhen was Julius Caesar born?\tVienna\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Rudel, was born in, Vienna) -> Vienna (2749ms)\nWhen was Julius Caesar born?\tTula\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Algirdas Julius Greimas, was born in, Tula) -> Tula (2790ms)\nWhen was Julius Caesar born?\tBoston\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (1874-75 Julius Walker Adams, was born in, Boston) -> Boston (2770ms)\nWhen was Julius Caesar born?\tLondon\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, London) -> London (2799ms)\nWhen was Julius Caesar born?\t1961\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Deutschbauer, was born in, 1961) -> 1961 (2790ms)\nWhen was Julius Caesar born?\tStuttgart Germany\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Benedict, was born in, Stuttgart Germany) -> Stuttgart Germany (2790ms)\nWhen was Julius Caesar born?\tSeshego\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Sello Malema, is born in, Seshego) -> Seshego (2780ms)\nWhen was Julius Caesar born?\tBrooklyn\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, Brooklyn) -> Brooklyn (2759ms)\nWhen was Julius Caesar born?\tNorwich\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (George Alfred Julius, was born in, Norwich) -> Norwich (2790ms)\nWhen was Julius Caesar born?\tOshkosh\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Mand, was born in, Oshkosh) -> Oshkosh (2759ms)\nWhen was Julius Caesar born?\t1893\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Earl Schaefer, was born in, 1893) -> 1893 (2790ms)\nWhen was Julius Caesar born?\tNorth Lyme\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Deming, was born in, North Lyme) -> North Lyme (2759ms)\nWhen was Julius Caesar born?\tRussia\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, were born in, Russia) -> Russia (2780ms)\nWhen was Julius Caesar born?\tRoosevelt\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (22.0Julius Erving, was born in, Roosevelt) -> Roosevelt (2759ms)\nWhen was Julius Caesar born?\tGermany 1854\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Charles Julius Herman Riese, was born in, Germany 1854) -> Germany 1854 (2799ms)\nWhen was Julius Caesar born?\t100 B.C. July 13\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius C?sar, is born in, 100 B.C. July 13) -> 100 B.C. July 13 (2780ms)\nWhen was Julius Caesar born?\tTowanda\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Wilmot Mason, was born in, Towanda) -> Towanda (2790ms)\nWhen was Julius Caesar born?\tBrazil\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Wiedemann, was born in, Brazil) -> Brazil (2790ms)\nWhen was Julius Caesar born?\tthe German Jewish ghetto\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Ferdinand Julius Cohn, was born in, the German Jewish ghetto) -> the German Jewish ghetto (2769ms)\nWhen was Julius Caesar born?\tBrasov\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (octavian, be bear in, $x) -> (Octavian Florescu Ph.D. 2010, was born in, Brasov) -> Brasov (2770ms)\nWhen was Julius Caesar born?\tWurzburg\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Friedrich Julius George Dury, was born in, Wurzburg) -> Wurzburg (2780ms)\nWhen was Julius Caesar born?\tLangenlonshime\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Neumann, was born in, Langenlonshime) -> Langenlonshime (2799ms)\nWhen was Julius Caesar born?\tAuckland\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Baby Julius Robert Bay Tapert, was born in, Auckland) -> Auckland (2780ms)\nWhen was Julius Caesar born?\tG?ttingen\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Lax Julius Lax, was born in, G?ttingen) -> G?ttingen (2770ms)\nWhen was Julius Caesar born?\tOrange County\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, Orange County) -> Orange County (2759ms)\nWhen was Julius Caesar born?\t1841\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (the famous Arctic explorer Julius Payer, was born in, 1841) -> 1841 (2769ms)\nWhen was Julius Caesar born?\t1922\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Nyerere, was born in, 1922) -> 1922 (2749ms)\nWhen was Julius Caesar born?\tPhiladelphia\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (? Emanuel Julius, was born in, Philadelphia) -> Philadelphia (2759ms)\nWhen was Julius Caesar born?\tH?meenlinna\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Johan Julius Christian Sibelius, was born in, H?meenlinna) -> H?meenlinna (2780ms)\nWhen was Julius Caesar born?\tBavaria\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Osterreicher, had been born in, Bavaria) -> Bavaria (2780ms)\nWhen was Julius Caesar born?\tHeilbronn\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Robert Mayer, was born in, Heilbronn) -> Heilbronn (2780ms)\nWhen was Julius Caesar born?\t1974\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Senior Accountant Julius, was born in, 1974) -> 1974 (2790ms)\nWhen was Julius Caesar born?\tHamburg\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Hintz, was born in, Hamburg) -> Hamburg (2759ms)\nWhen was Julius Caesar born?\tAlabama\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Hobson, was born in, Alabama) -> Alabama (2780ms)\nWhen was Julius Caesar born?\t1982\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius and Felix, were born in, 1982) -> 1982 (2790ms)\nWhen was Julius Caesar born?\ta small town\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (My father Julius, was born in, a small town) -> a small town (2799ms)\nWhen was Julius Caesar born?\t1874\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Meier, was born in, 1874) -> 1874 (2749ms)\nWhen was Julius Caesar born?\tLatvia\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, Latvia) -> Latvia (2799ms)\nWhen was Julius Caesar born?\tCuba\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Peter Garesch, was born in, Cuba) -> Cuba (2780ms)\nWhen was Julius Caesar born?\tGermany\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Emil Julius Klaus Fuchs, was born in, Germany) -> Germany (2790ms)\nWhen was Julius Caesar born?\tMay 1869\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Schmidt Julius Schmidt, was born in, May 1869) -> May 1869 (2770ms)\nWhen was Julius Caesar born?\tSchuyler\t0.22222222221899998\tWhen was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius C Michaelsen, was born in, Schuyler) -> Schuyler (2759ms)\nWhen was Julius Caesar born?\ta virgin\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, to have been born of, a virgin) -> a virgin (2809ms)\nWhen was Julius Caesar born?\tGoogle and Wikipedia\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born thanks to, Google and Wikipedia) -> Google and Wikipedia (2799ms)\nWhen was Julius Caesar born?\t12 July\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Gaius Julius Caesar, was born, 12 July) -> 12 July (2799ms)\nWhen was Julius Caesar born?\tnatal teeth\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, were born with, natal teeth) -> natal teeth (2799ms)\nWhen was Julius Caesar born?\ta long time\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (?Julius Caesar, was born, a long time) -> a long time (2799ms)\nWhen was Julius Caesar born?\ta long time ago\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius  Caesar, was born, a long time ago) -> a long time ago (2809ms)\nWhen was Julius Caesar born?\tCaesarean section\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born by, Caesarean section) -> Caesarean section (2809ms)\nWhen was Julius Caesar born?\tthe year 164\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar Tiberius Gracchus, was born about, the year 164) -> the year 164 (2809ms)\nWhen was Julius Caesar born?\tJuly 12 , 100\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born, July 12 , 100) -> July 12 , 100 (2799ms)\nWhen was Julius Caesar born?\tc-section\t0.11111111111399996\tWhen was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born through, c-section) -> c-section (2799ms)\nWhen was Julius Caesar born?\t2007\t0.11111111110799998\tWhen was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius, was born in, 2007) -> 2007 (2837ms)\nWhen was Julius Caesar born?\tupstate New York\t0.11111111110799998\tWhen was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius Marcellus Coolidge, was born in, upstate New York) -> upstate New York (2837ms)\nWhen was Julius Caesar born?\tLouisville Kentucky\t0.11111111110799998\tWhen was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius Clay, was born in, Louisville Kentucky) -> Louisville Kentucky (2828ms)\nWhen was Julius Caesar born?\tConestoga Township\t0.11111111110799998\tWhen was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (1863-1939 Cassius Emlen Urban, was born in, Conestoga Township) -> Conestoga Township (2828ms)\nWhen was Julius Caesar born?\tLouisville\t0.11111111110799998\tWhen was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius Clay, was born in, Louisville) -> Louisville (2837ms)\nWhen was Julius Caesar born?\t1942\t0.11111111110799998\tWhen was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius Clay, was born in, 1942) -> 1942 (2819ms)\nWhen was Julius Caesar born?\tBedford\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (President William Augustus Stearns, was born in, Bedford) -> Bedford (2948ms)\nWhen was Julius Caesar born?\t19 Nov 1871\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (FREDERICK AUGUSTUS HATCH, was born on, 19 Nov 1871) -> 19 Nov 1871 (2905ms)\nWhen was Julius Caesar born?\t2 Mar 1842\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus, was born on, 2 Mar 1842) -> 2 Mar 1842 (2984ms)\nWhen was Julius Caesar born?\tSeptember 8 , 1841\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Charles Julius Guiteau, was born on, September 8 , 1841) -> September 8 , 1841 (2984ms)\nWhen was Julius Caesar born?\tPrussia\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus , Doroden and Maria, were born in, Prussia) -> Prussia (3000ms)\nWhen was Julius Caesar born?\tMadurai\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus De Morgan, was born in, Madurai) -> Madurai (3010ms)\nWhen was Julius Caesar born?\ta small farm near Yuma\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (Cesar Chavez, was born on, a small farm near Yuma) -> a small farm near Yuma (2863ms)\nWhen was Julius Caesar born?\tCork\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Young, was born in, Cork) -> Cork (3000ms)\nWhen was Julius Caesar born?\tMissouri\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Tolton, was born in, Missouri) -> Missouri (3017ms)\nWhen was Julius Caesar born?\tSeptember 8\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Samuel Augustus Nunn, was born on, September 8) -> September 8 (2970ms)\nWhen was Julius Caesar born?\tthe Curiae Veteres area\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus, was born in, the Curiae Veteres area) -> the Curiae Veteres area (2988ms)\nWhen was Julius Caesar born?\tFebruary 12 , 1885\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Streicher, was born on, February 12 , 1885) -> February 12 , 1885 (3010ms)\nWhen was Julius Caesar born?\tLos Chaves\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, Los Chaves) -> Los Chaves (3017ms)\nWhen was Julius Caesar born?\t6 Oct 1791\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (741 M xi Augustus Green Jr.-10069 1, was born on, 6 Oct 1791) -> 6 Oct 1791 (2935ms)\nWhen was Julius Caesar born?\tParis\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (1922 Augustus Desir? Waller, was born in, Paris) -> Paris (3012ms)\nWhen was Julius Caesar born?\t23 Mar 1845\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Henry Augustus Winslow, was born on, 23 Mar 1845) -> 23 Mar 1845 (2928ms)\nWhen was Julius Caesar born?\tApril 18 , 1793\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (James Augustus Clare, were born on, April 18 , 1793) -> April 18 , 1793 (3010ms)\nWhen was Julius Caesar born?\t1812\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Welby Pugin, was born in, 1812) -> 1812 (3004ms)\nWhen was Julius Caesar born?\t1833\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (0.4 linear feet Augustus Beard, was born in, 1833) -> 1833 (2979ms)\nWhen was Julius Caesar born?\tApril 13 , 1922\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (16 :45 Julius Kambarage Nyerere, was born on, April 13 , 1922) -> April 13 , 1922 (3017ms)\nWhen was Julius Caesar born?\tthe city\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Hare, was born in, the city) -> the city (3017ms)\nWhen was Julius Caesar born?\tRussian\t-0.0\tWhen was Julius Caesar born? -> $x: (salad, be born in, $x) -> (the salad, was born in, Russian) -> Russian (3000ms)\nWhen was Julius Caesar born?\tJune 1 , 1983\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (junior featherweight Jackie Chavez, was born on, June 1 , 1983) -> June 1 , 1983 (2942ms)\nWhen was Julius Caesar born?\tSept. 23\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus, was born on, Sept. 23) -> Sept. 23 (2949ms)\nWhen was Julius Caesar born?\tSheffield\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Frederick Augustus Herman Frank Mitchell, was born in, Sheffield) -> Sheffield (2996ms)\nWhen was Julius Caesar born?\tJuly 28 , 1954\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (Chavez, was born on, July 28 , 1954) -> July 28 , 1954 (2996ms)\nWhen was Julius Caesar born?\tSeptember 8 , 1938\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Samuel Augustus Nunn, was born on, September 8 , 1938) -> September 8 , 1938 (2975ms)\nWhen was Julius Caesar born?\t5 Nov 1834\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius, was born on, 5 Nov 1834) -> 5 Nov 1834 (3010ms)\nWhen was Julius Caesar born?\tCobleskill\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus L. OTTMAN-9623, was born 1845 in, Cobleskill) -> Cobleskill (2913ms)\nWhen was Julius Caesar born?\tfront\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus, were to be borne in, front) -> front (3012ms)\nWhen was Julius Caesar born?\t1954\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, 1954) -> 1954 (3004ms)\nWhen was Julius Caesar born?\tslavery\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (such was Father Augustus Tolton, was born in, slavery) -> slavery (2996ms)\nWhen was Julius Caesar born?\tWebster Co.\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Homer Callaway, was born in, Webster Co.) -> Webster Co. (2935ms)\nWhen was Julius Caesar born?\tmay_12\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus II, is a person born on the date, may_12) -> may_12 (2913ms)\nWhen was Julius Caesar born?\tDublin\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus, was born in, Dublin) -> Dublin (3020ms)\nWhen was Julius Caesar born?\t3 July 1837\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (a Charles Augustus Benson, was born on, 3 July 1837) -> 3 July 1837 (2979ms)\nWhen was Julius Caesar born?\tTijuana\t-0.0\tWhen was Julius Caesar born? -> $x: (salad, be bear in, $x) -> (the Cesar Salad, was born in, Tijuana) -> Tijuana (2959ms)\nWhen was Julius Caesar born?\tSabaneta\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Chavez, was born in, Sabaneta) -> Sabaneta (2965ms)\nWhen was Julius Caesar born?\tGerman\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Heck, was born in, German) -> German (3012ms)\nWhen was Julius Caesar born?\tChillanes\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Researcher Karina Mabell Gomez Chavez, was born in, Chillanes) -> Chillanes (2872ms)\nWhen was Julius Caesar born?\tFeb. 4 , 1902\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Detroit Charles Augustus Lindbergh, was born on, Feb. 4 , 1902) -> Feb. 4 , 1902 (2954ms)\nWhen was Julius Caesar born?\t1924\t-0.0\tWhen was Julius Caesar born? -> $x: (salad, be bear in, $x) -> (this popular salad, was born in, 1924) -> 1924 (3015ms)\nWhen was Julius Caesar born?\t1927\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, 1927) -> 1927 (3022ms)\nWhen was Julius Caesar born?\tMarch 25\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Mand, was born on, March 25) -> March 25 (2988ms)\nWhen was Julius Caesar born?\t16 Dec 1865\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Augustus Edward Bayol Jr., was born on, 16 Dec 1865) -> 16 Dec 1865 (2988ms)\nWhen was Julius Caesar born?\tSan Antonio Texas\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Gloria Chavez Gloria Chavez, was born in, San Antonio Texas) -> San Antonio Texas (2975ms)\nWhen was Julius Caesar born?\tFebruary\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Frederick Augustus Bailey, was born in, February) -> February (2959ms)\nWhen was Julius Caesar born?\ta farm\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Charles Julius Umlauf, was born on, a farm) -> a farm (2988ms)\nWhen was Julius Caesar born?\tAlbuquerque\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Chavez, was born in, Albuquerque) -> Albuquerque (3020ms)\nWhen was Julius Caesar born?\tGreenwood township\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (271 Augustus Person, was born in, Greenwood township) -> Greenwood township (2970ms)\nWhen was Julius Caesar born?\tMay 12 , 1918\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Rosenberg, was born on, May 12 , 1918) -> May 12 , 1918 (3010ms)\nWhen was Julius Caesar born?\tWrightsville\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (AUGUSTUS R WRIGHT, was born in, Wrightsville) -> Wrightsville (2988ms)\nWhen was Julius Caesar born?\t1877\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Garrett Augustus Morgan, was born in, 1877) -> 1877 (3012ms)\nWhen was Julius Caesar born?\t17 January 1942\t-0.0\tWhen was Julius Caesar born? -> $x: (cassius, be born on, $x) -> (Cassius Marcellus Clay, was born on, 17 January 1942) -> 17 January 1942 (2954ms)\nWhen was Julius Caesar born?\tthe 11th\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Tim Flock Julius Timothy Flock, was born on, the 11th) -> the 11th (3020ms)\nWhen was Julius Caesar born?\tMandura\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (De Morgan Augustus De Morgan, was born in, Mandura) -> Mandura (3015ms)\nWhen was Julius Caesar born?\tGuadalajara\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Lydia Chavez, was born in, Guadalajara) -> Guadalajara (3022ms)\nWhen was Julius Caesar born?\tFebruary 4th\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Charles Augustus Lindbergh, was born on, February 4th) -> February 4th (3000ms)\nWhen was Julius Caesar born?\tArizona\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, Arizona) -> Arizona (3015ms)\nWhen was Julius Caesar born?\tApril 8 , 1888\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear on, $x) -> (Chavez, was born on, April 8 , 1888) -> April 8 , 1888 (3004ms)\nWhen was Julius Caesar born?\tAmerica\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Chavez, was born in, America) -> America (2942ms)\nWhen was Julius Caesar born?\tthe hill\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Augustus, was born on, the hill) -> the hill (2979ms)\nWhen was Julius Caesar born?\t7 September 1872\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Julius, was born on, 7 September 1872) -> 7 September 1872 (2942ms)\nWhen was Julius Caesar born?\t29 Aug 1886\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (AUGUSTUS BRADFORD MERRY, was born on, 29 Aug 1886) -> 29 Aug 1886 (2959ms)\nWhen was Julius Caesar born?\tDecember 1 , 1842\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Sylvester Walsh, was born on, December 1 , 1842) -> December 1 , 1842 (2935ms)\nWhen was Julius Caesar born?\tNew Mexico\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, New Mexico) -> New Mexico (3022ms)\nWhen was Julius Caesar born?\t11 Oct 1866\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus, was born on, 11 Oct 1866) -> 11 Oct 1866 (2975ms)\nWhen was Julius Caesar born?\tArequipa\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Alberto Joaquin Vargas Y Chavez, was born in, Arequipa) -> Arequipa (3020ms)\nWhen was Julius Caesar born?\tJanuary 27th\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Lester, was born on, January 27th) -> January 27th (3015ms)\nWhen was Julius Caesar born?\tVictoria\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Robert Augustus Masters, was born in, Victoria) -> Victoria (2928ms)\nWhen was Julius Caesar born?\tMarch 31 , 1927\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear on, $x) -> (Cesar Chavez, was born on, March 31 , 1927) -> March 31 , 1927 (3020ms)\nWhen was Julius Caesar born?\tMayag?ez\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Hugo Chavez ? Serrano, was born in, Mayag?ez) -> Mayag?ez (2905ms)\nWhen was Julius Caesar born?\t23 Apr 1878\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus, was born on, 23 Apr 1878) -> 23 Apr 1878 (2965ms)\nWhen was Julius Caesar born?\tPuente Llaguno\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Chavez, were bearing arms in, Puente Llaguno) -> Puente Llaguno (3020ms)\nWhen was Julius Caesar born?\tAtarque\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Pauline Chavez Bent, was born in, Atarque) -> Atarque (2979ms)\nWhen was Julius Caesar born?\t1929\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Richard Chavez, was born in, 1929) -> 1929 (2913ms)\nWhen was Julius Caesar born?\tMay 30th\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (close Biography Julius Axelrod, was born on, May 30th) -> May 30th (3017ms)\nWhen was Julius Caesar born?\tChicago?s South Side\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Claybron, was born on, Chicago?s South Side) -> Chicago?s South Side (2942ms)\nWhen was Julius Caesar born?\tthe 29th\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Sir Julius, was born on, the 29th) -> the 29th (3015ms)\nWhen was Julius Caesar born?\tSanta Clara County\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus A. Schoenheit, was born in, Santa Clara County) -> Santa Clara County (2942ms)\nWhen was Julius Caesar born?\t10 Apr 1950\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (Consuelo CHAVEZ, was born on, 10 Apr 1950) -> 10 Apr 1950 (2988ms)\nWhen was Julius Caesar born?\tJefferson County\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus A., was also born in, Jefferson County) -> Jefferson County (2988ms)\nWhen was Julius Caesar born?\tLebanon County\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Cassell, was born in, Lebanon County) -> Lebanon County (2996ms)\nWhen was Julius Caesar born?\tUxbridge\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (This Charles Augustus, was born in, Uxbridge) -> Uxbridge (3015ms)\nWhen was Julius Caesar born?\tBedford county\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Sellers, was born in, Bedford county) -> Bedford county (3000ms)\nWhen was Julius Caesar born?\tJanuary 17 , 1942\t-0.0\tWhen was Julius Caesar born? -> $x: (cassius, be bear on, $x) -> (Cassius Clay, was born on, January 17 , 1942) -> January 17 , 1942 (3004ms)\nWhen was Julius Caesar born?\tKandern\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Johann Augustus Sutter, is born in, Kandern) -> Kandern (2975ms)\nWhen was Julius Caesar born?\t10 Apr 1852\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (George Augustus Merry, was born on, 10 Apr 1852) -> 10 Apr 1852 (2988ms)\nWhen was Julius Caesar born?\t23 September 63 BC\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (the emperor Augustus, was born on, 23 September 63 BC) -> 23 September 63 BC (2942ms)\nWhen was Julius Caesar born?\t30 Mar 1831\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (1225 M i Augustus Jones Hammett-9247 1, was born on, 30 Mar 1831) -> 30 Mar 1831 (2984ms)\nWhen was Julius Caesar born?\t18 JUN\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Rienzie Julius HULETT, was born on, 18 JUN) -> 18 JUN (3010ms)\nWhen was Julius Caesar born?\t25 Nov 1823\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (William Augustus Behie, was born on, 25 Nov 1823) -> 25 Nov 1823 (2970ms)\nWhen was Julius Caesar born?\tJune 25 , 1894\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Hermann Julius Oberth, was born on, June 25 , 1894) -> June 25 , 1894 (3022ms)\nWhen was Julius Caesar born?\tearth\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (the Roman Emperor Augustus, was born on, earth) -> earth (2979ms)\nWhen was Julius Caesar born?\t11 May 1844\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius, was born on, 11 May 1844) -> 11 May 1844 (2920ms)\nWhen was Julius Caesar born?\tSwansonville\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Claude Augustus Swanson, was born in, Swansonville) -> Swansonville (2988ms)\nWhen was Julius Caesar born?\t63 B.C.\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (C?sar Augustus, is born in, 63 B.C.) -> 63 B.C. (2992ms)\nWhen was Julius Caesar born?\tApr 22nd\t-0.0\tWhen was Julius Caesar born? -> $x: (cassius, be bear on, $x) -> (his son Cassius, was born on, Apr 22nd) -> Apr 22nd (3020ms)\nWhen was Julius Caesar born?\tFebruary 2 , 1882\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (James Augustus Aloysius Joyce, was born on, February 2 , 1882) -> February 2 , 1882 (3015ms)\nWhen was Julius Caesar born?\tMontgomery county\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus G. SINKS, was born in, Montgomery county) -> Montgomery county (3000ms)\nWhen was Julius Caesar born?\tIndia\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus De Morgan, was born in, India) -> India (3015ms)\nWhen was Julius Caesar born?\tFebruary 27\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Julius, was born on, February 27) -> February 27 (3015ms)\nWhen was Julius Caesar born?\tFebruary 20th\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Dr. Julius Menn Dr. Julius Menn, was born on, February 20th) -> February 20th (3012ms)\nWhen was Julius Caesar born?\t8 May 1882\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus Bush JACKSON-70, was born on, 8 May 1882) -> 8 May 1882 (3020ms)\nWhen was Julius Caesar born?\tFebruary 2 , 1902\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Charles Augustus Lindbergh, was born on, February 2 , 1902) -> February 2 , 1902 (3004ms)\nWhen was Julius Caesar born?\tYuma\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Cesar Chavez, was born in, Yuma) -> Yuma (3022ms)\nWhen was Julius Caesar born?\tBaltimore\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (J. Augustus Jones J. Augustus Jones, was born in, Baltimore) -> Baltimore (2905ms)\nWhen was Julius Caesar born?\tSouthern California\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Jeff Chavez, was born in, Southern California) -> Southern California (2897ms)\nWhen was Julius Caesar born?\tTrinidad\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Wintley Augustus Phipps, was born in, Trinidad) -> Trinidad (2979ms)\nWhen was Julius Caesar born?\tMarch 31\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear on, $x) -> (Cesar Chavez, was born on, March 31) -> March 31 (3010ms)\nWhen was Julius Caesar born?\tScotland\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Sawers, was born in, Scotland) -> Scotland (3012ms)\nWhen was Julius Caesar born?\t12 April 1894\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius, was born on, 12 April 1894) -> 12 April 1894 (3017ms)\nWhen was Julius Caesar born?\tNov. 3 , 1987\t-0.0\tWhen was Julius Caesar born? -> $x: (cassius, be born on, $x) -> (Cassius Vaughn, was born on, Nov. 3 , 1987) -> Nov. 3 , 1987 (3017ms)\nWhen was Julius Caesar born?\tMuehlhausen\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Johann Augustus Roebling, was born in, Muehlhausen) -> Muehlhausen (2959ms)\nWhen was Julius Caesar born?\tNazaret\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Ceasar Augustus, would 've been born in, Nazaret) -> Nazaret (3012ms)\nWhen was Julius Caesar born?\tNC\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Benjamin Augustus Cook, was born in, NC) -> NC (2949ms)\nWhen was Julius Caesar born?\t13 April 1922\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Nyerere, was born on, 13 April 1922) -> 13 April 1922 (2942ms)\nWhen was Julius Caesar born?\tDetroit\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Charles Augustus Lindbergh, was born in, Detroit) -> Detroit (3017ms)\nWhen was Julius Caesar born?\tMiddleburgh\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Peter Augustus SWART-4089, was born 1830 in, Middleburgh) -> Middleburgh (3015ms)\nWhen was Julius Caesar born?\tApril 12 , 1851\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Samuel Augustus Weller, was born on, April 12 , 1851) -> April 12 , 1851 (2992ms)\nWhen was Julius Caesar born?\tthe small farm\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (March 31--Cesario Estrada Chavez, is born on, the small farm) -> the small farm (3012ms)\nWhen was Julius Caesar born?\tFebruary 22 , 1950\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Winfield Erving II, was born on, February 22 , 1950) -> February 22 , 1950 (2935ms)\nWhen was Julius Caesar born?\ta small farm\t-0.0\tWhen was Julius Caesar born? -> $x: (chavez, be bear on, $x) -> (Cesar Chavez, was born on, a small farm) -> a small farm (3000ms)\nWhen was Julius Caesar born?\tJanuary 18 , 1854\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Thomas Augustus Watson, was born on, January 18 , 1854) -> January 18 , 1854 (2964ms)\nWhen was Julius Caesar born?\t1819\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus SENTELL, was born in, 1819) -> 1819 (3022ms)\nWhen was Julius Caesar born?\t1839\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus Edward Bayol Sr, was born in, 1839) -> 1839 (3010ms)\nWhen was Julius Caesar born?\t2 Jun 1886\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Elmer Augustus Rice, was born on, 2 Jun 1886) -> 2 Jun 1886 (2954ms)\nWhen was Julius Caesar born?\tOhio\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (a brother Augustus, was born in, Ohio) -> Ohio (2897ms)\nWhen was Julius Caesar born?\t1856\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Mining baron Augustus Van Wickle, was born in, 1856) -> 1856 (3012ms)\nWhen was Julius Caesar born?\tHalloween\t-0.0\tWhen was Julius Caesar born? -> $x: (salad, be born on, $x) -> (This salad, was born on, Halloween) -> Halloween (3017ms)\nWhen was Julius Caesar born?\t16 Apr 1843\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Walter Augustus JACKSON-40, was born on, 16 Apr 1843) -> 16 Apr 1843 (2954ms)\nWhen was Julius Caesar born?\t23 Nov 1921\t-0.0\tWhen was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Julius Vasquez, was born on, 23 Nov 1921) -> 23 Nov 1921 (2975ms)\nWhen was Julius Caesar born?\t7 Sep 1823\t-0.0\tWhen was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Charles Augustus Balcom, was born on, 7 Sep 1823) -> 7 Sep 1823 (2959ms)\nWhen was Julius Caesar born?\tRocky Mount\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Prussian merchant Julius Joel, lived in, Rocky Mount) -> Rocky Mount (3024ms)\nWhen was Julius Caesar born?\tthe Minnesota Lake area\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius and Emilie, lived in, the Minnesota Lake area) -> the Minnesota Lake area (3025ms)\nWhen was Julius Caesar born?\tlagos\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Am Julius ,i, live in, lagos) -> lagos (3026ms)\nWhen was Julius Caesar born?\tDallas\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, be from in, $x) -> (Julius Jones, was shipped in from, Dallas) -> Dallas (3028ms)\nWhen was Julius Caesar born?\texile\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (octavian, live in, $x) -> (Octavian, live in, exile) -> exile (3024ms)\nWhen was Julius Caesar born?\tLambertsville\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Bror Julius Nordfeldt, lived his last years in, Lambertsville) -> Lambertsville (3025ms)\nWhen was Julius Caesar born?\ta decision\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, be from in, $x) -> (Julius Malema, was expelled from the party in, a decision) -> a decision (3026ms)\nWhen was Julius Caesar born?\tthe nineteenth-century\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius Wellhausen, lived in, the nineteenth-century) -> the nineteenth-century (3024ms)\nWhen was Julius Caesar born?\tWahee\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius, is also living in, Wahee) -> Wahee (3025ms)\nWhen was Julius Caesar born?\tCividale\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius Ceaser, lived in, Cividale) -> Cividale (3024ms)\nWhen was Julius Caesar born?\tSommerville\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius C Sturgis, lived in, Sommerville) -> Sommerville (3026ms)\nWhen was Julius Caesar born?\ta socialization cage\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live now in, $x) -> (Julius, is now living in, a socialization cage) -> a socialization cage (3028ms)\nWhen was Julius Caesar born?\tthe FOY farm\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live on, $x) -> (Julius HEIDER, lived on, the FOY farm) -> the FOY farm (3025ms)\nWhen was Julius Caesar born?\ta happier age\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius, lived in, a happier age) -> a happier age (3027ms)\nWhen was Julius Caesar born?\tShanghai\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius, lived in, Shanghai) -> Shanghai (3027ms)\nWhen was Julius Caesar born?\tBerlin\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius Moser, lived in, Berlin) -> Berlin (3026ms)\nWhen was Julius Caesar born?\tDickinson\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius & Joyce, lived in, Dickinson) -> Dickinson (3024ms)\nWhen was Julius Caesar born?\tBrandon\t-0.111111111111\tWhen was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius C. Lynch, then lived in, Brandon) -> Brandon (3029ms)\nHow many NFL teams are there?\tSan Francisco\t1.444444444455\tHow many NFL teams are there? -> $x: (nfl, be team in, $x) -> (his first NFL job, was coaching special teams in, San Francisco) -> San Francisco (1163ms)\nHow many NFL teams are there?\tthe league\t1.444444444455\tHow many NFL teams are there? -> $x: (nfl, be team in, $x) -> (NFL Power Rankings, are the best teams in, the league) -> the league (1162ms)\nHow many NFL teams are there?\tNFL\t1.444444444455\tHow many NFL teams are there? -> $x: (nfl, be team in, $x) -> (NFL Jerseys, is a sports team that plays in the league, NFL) -> NFL (1162ms)\nHow many NFL teams are there?\tEngland\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (Heart Football, really are the biggest team in, England) -> England (1796ms)\nHow many NFL teams are there?\tncaa\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (providence friars football, is a sports team that plays in the league, ncaa) -> ncaa (1797ms)\nHow many NFL teams are there?\tthe NFL\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (the New York Football Giants, are the best team in, the NFL) -> the NFL (1162ms)\nHow many NFL teams are there?\t1994\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (his college football, was the team captain in, 1994) -> 1994 (1162ms)\nHow many NFL teams are there?\tQom\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (Saba Battery Football Club, is a football team based in, Qom) -> Qom (1162ms)\nHow many NFL teams are there?\tthe first half\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (football United, were clearly the better team in, the first half) -> the first half (1162ms)\nHow many NFL teams are there?\tfootball\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (the two local football stories, are the best team in, football) -> football (1796ms)\nHow many NFL teams are there?\tACC\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (wake-forest-deacons-football, is a sports team that plays in the league, ACC) -> ACC (1797ms)\nHow many NFL teams are there?\t2003\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (the Bulldog football squad, was a team captain in, 2003) -> 2003 (1162ms)\nHow many NFL teams are there?\tCyprus\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (football team, was the first team in, Cyprus) -> Cyprus (1796ms)\nHow many NFL teams are there?\tthe country\t0.888888888889\tHow many NFL teams are there? -> $x: (football, be team in, $x) -> (Football, is the most popular team sport in, the country) -> the country (1796ms)\nHow many NFL teams are there?\tJosh McCown\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Josh McCown, played quarterback for, several NFL teams) -> Josh McCown (3984ms)\nHow many NFL teams are there?\ta retired American football halfback\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (a retired American football halfback, played for, the NFL) -> a retired American football halfback (2485ms)\nHow many NFL teams are there?\tBill\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Bill, played for, 16 NFL seasons) -> Bill (2536ms)\nHow many NFL teams are there?\tTebow\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Tebow, wants to play for, an average NFL team) -> Tebow (3984ms)\nHow many NFL teams are there?\tthe Pats\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the Pats, will be playing for, the NFL title) -> the Pats (3586ms)\nHow many NFL teams are there?\tOne recent Wildcat\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (One recent Wildcat, even plays for, my favorite NFL team) -> One recent Wildcat (1931ms)\nHow many NFL teams are there?\tGrant\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Grant, is playing for, the NFL minimum wage) -> Grant (2485ms)\nHow many NFL teams are there?\tNBA or NHL\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (NBA or NHL, played for, the draft nfl football jerseys) -> NBA or NHL (2595ms)\nHow many NFL teams are there?\tthe Steelers\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the Steelers, will play for, the NFL trophy) -> the Steelers (2230ms)\nHow many NFL teams are there?\ta star\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (a star, now plays center for, the NFL?s New York Jets) -> a star (2536ms)\nHow many NFL teams are there?\tThe Decision ?\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (The Decision ?, play for, the NFL) -> The Decision ? (3148ms)\nHow many NFL teams are there?\tAdams\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Adams, played for, five different NFL teams) -> Adams (2536ms)\nHow many NFL teams are there?\tHomer Simpson\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Homer Simpson, plays for, the NFL) -> Homer Simpson (3984ms)\nHow many NFL teams are there?\tMr. Johnson\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Mr. Johnson, played football for, the NFL) -> Mr. Johnson (3984ms)\nHow many NFL teams are there?\tKonz\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Konz, will play for, first-year NFL Head Coach Pete Carrol) -> Konz (1931ms)\nHow many NFL teams are there?\tDeion Sanders\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Deion Sanders, played for, five NFL teams) -> Deion Sanders (2536ms)\nHow many NFL teams are there?\tMay 14 , 2008 Whitley\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (May 14 , 2008 Whitley, played for, 3 NFL teams) -> May 14 , 2008 Whitley (3631ms)\nHow many NFL teams are there?\tDaryl Sanders\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Daryl Sanders, played for, the NFL) -> Daryl Sanders (3984ms)\nHow many NFL teams are there?\tDeon Sanders\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Deon Sanders, played for, several NFL teams) -> Deon Sanders (1931ms)\nHow many NFL teams are there?\tsophomore safety Terrance Bullitt\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (sophomore safety Terrance Bullitt, plays for, the NFL) -> sophomore safety Terrance Bullitt (3984ms)\nHow many NFL teams are there?\tAttorney Charles Johnson\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Attorney Charles Johnson, played football for, the NFL) -> Attorney Charles Johnson (3148ms)\nHow many NFL teams are there?\tan average football player\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (an average football player, got playing for, the NFL) -> an average football player (3586ms)\nHow many NFL teams are there?\tthe Pittsburgh Steelers\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the Pittsburgh Steelers, will play for, the NFL Championship) -> the Pittsburgh Steelers (3925ms)\nHow many NFL teams are there?\tLawrence Lamont Phillips\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Lawrence Lamont Phillips, used to play for, the NFL) -> Lawrence Lamont Phillips (3984ms)\nHow many NFL teams are there?\tLathrop\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Lathrop, played for, the NFL?s Denver Broncos) -> Lathrop (1931ms)\nHow many NFL teams are there?\tevery semester\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (every semester, currently plays for, the NFL team) -> every semester (3925ms)\nHow many NFL teams are there?\tnot one\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (not one, is playing for, the NFL) -> not one (2595ms)\nHow many NFL teams are there?\tSeveral athletes\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Several athletes, formerly played for, the NFL) -> Several athletes (1931ms)\nHow many NFL teams are there?\tthe second player\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the second player, played quarterback for, 13 NFL seasons) -> the second player (3148ms)\nHow many NFL teams are there?\tHarris\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Harris, played for, three NFL teams) -> Harris (3631ms)\nHow many NFL teams are there?\ta single game\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (a single game, played each year for, the NFL Championship) -> a single game (3984ms)\nHow many NFL teams are there?\tRison\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Rison, played for, seven NFL teams) -> Rison (3147ms)\nHow many NFL teams are there?\tJames Lofton ? Lofton\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (James Lofton ? Lofton, played for, five NFL franchises) -> James Lofton ? Lofton (3148ms)\nHow many NFL teams are there?\tthe year\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the year, play for, their favorite NFL team) -> the year (3631ms)\nHow many NFL teams are there?\tlast\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (last, played for, the NFL title) -> last (3632ms)\nHow many NFL teams are there?\tYou?ve\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (You?ve, played for, several NFL teams) -> You?ve (2485ms)\nHow many NFL teams are there?\tThe Denver Broncos\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, be team of, nfl) -> (The Denver Broncos, are a football team of, the NFL) -> The Denver Broncos (3148ms)\nHow many NFL teams are there?\tTony Parrish Tony Parrish\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Tony Parrish Tony Parrish, played for, three NFL teams) -> Tony Parrish Tony Parrish (3925ms)\nHow many NFL teams are there?\ta former all-American\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (a former all-American, played for, the NFL?s Texans and Titans) -> a former all-American (1931ms)\nHow many NFL teams are there?\tGreen\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Green, plays for, the NFL?s Bengals) -> Green (2231ms)\nHow many NFL teams are there?\tthe minor cowboy hero\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the minor cowboy hero, played for, 2 NFL teams) -> the minor cowboy hero (3925ms)\nHow many NFL teams are there?\tevery athlete\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (every athlete, has ever dreamed of playing for, the NFL) -> every athlete (3925ms)\nHow many NFL teams are there?\tMcCoy\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (McCoy, was playing for, his fourth NFL team) -> McCoy (3631ms)\nHow many NFL teams are there?\tMoss last\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Moss last, played for, three NFL teams) -> Moss last (3925ms)\nHow many NFL teams are there?\tAaron Brown\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Aaron Brown, will be playing for, another NFL team) -> Aaron Brown (2536ms)\nHow many NFL teams are there?\tSt . Louis Rams\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, be team of, nfl) -> (St . Louis Rams, is a famous team of, NFL) -> St . Louis Rams (2230ms)\nHow many NFL teams are there?\tGesser\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Gesser, played for, the NFL) -> Gesser (3984ms)\nHow many NFL teams are there?\tJeep\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Jeep, also played for, the NFL) -> Jeep (3631ms)\nHow many NFL teams are there?\tAoga\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Aoga, played for, NFL Europe?s Barcelona Dragons) -> Aoga (3984ms)\nHow many NFL teams are there?\ta lineman\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (a lineman, played for, three NFL teams) -> a lineman (3586ms)\nHow many NFL teams are there?\ta tremendous football player\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (a tremendous football player, played for, the NFL) -> a tremendous football player (2485ms)\nHow many NFL teams are there?\tAaron Morehead\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Aaron Morehead, is playing for, his NFL career) -> Aaron Morehead (2485ms)\nHow many NFL teams are there?\tthe Redskins\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the Redskins, have played for, eleven NFL Championships) -> the Redskins (2485ms)\nHow many NFL teams are there?\tMiami?s Leon Williams\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Miami?s Leon Williams, played for, the NFL?s Cleveland Browns) -> Miami?s Leon Williams (2595ms)\nHow many NFL teams are there?\tthe best teams\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the best teams, play each other for, the NFL Super Bowl) -> the best teams (1931ms)\nHow many NFL teams are there?\tthe luxury\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the luxury, playing for, a former NFL guy in college) -> the luxury (2595ms)\nHow many NFL teams are there?\tMistler\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Mistler, played for, the NFL) -> Mistler (3148ms)\nHow many NFL teams are there?\tNext\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, be team of, nfl) -> (Next, up is the Teams of, the NFL Exhibit) -> Next (3984ms)\nHow many NFL teams are there?\tpartner Tony Romo\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (partner Tony Romo, plays quarterback for, the NFL) -> partner Tony Romo (3925ms)\nHow many NFL teams are there?\tDetmer\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Detmer, played for, six different NFL teams) -> Detmer (2536ms)\nHow many NFL teams are there?\tBaskett\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Baskett, has played for, three NFL teams) -> Baskett (2485ms)\nHow many NFL teams are there?\tSanders\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Sanders, played for, five NFL teams) -> Sanders (3632ms)\nHow many NFL teams are there?\tan All-American career\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (an All-American career, now plays for, the NFL) -> an All-American career (3984ms)\nHow many NFL teams are there?\tCarolina Panthers\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, be team of, nfl) -> (Carolina Panthers, are the 29th team of, the NFL) -> Carolina Panthers (3984ms)\nHow many NFL teams are there?\tConrad Dobler\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Conrad Dobler, played professional football for, three NFL teams) -> Conrad Dobler (2536ms)\nHow many NFL teams are there?\tthe undrafted free agent\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the undrafted free agent, is playing for, his NFL career) -> the undrafted free agent (2231ms)\nHow many NFL teams are there?\tPat Tillman\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Pat Tillman, played four seasons for, the NFL) -> Pat Tillman (3984ms)\nHow many NFL teams are there?\the?s\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (he?s, played for, three NFL teams) -> he?s (3586ms)\nHow many NFL teams are there?\tTillman\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Tillman, played safety for, the NFL?s Arizona Cardinals) -> Tillman (3925ms)\nHow many NFL teams are there?\tcousin\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (cousin, played for, the NFL) -> cousin (3984ms)\nHow many NFL teams are there?\tC.J. Spiller\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (C.J. Spiller, now plays for, the NFL) -> C.J. Spiller (3631ms)\nHow many NFL teams are there?\ta signing bonus\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (a signing bonus, will play for, the NFL minimum) -> a signing bonus (2231ms)\nHow many NFL teams are there?\tBo Jackson Sullivan\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Bo Jackson Sullivan, played for, the NFL?s Atlanta Falcons) -> Bo Jackson Sullivan (3586ms)\nHow many NFL teams are there?\tthe University\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (the University, currently plays for, the NFL) -> the University (3925ms)\nHow many NFL teams are there?\tThe 2008 Cardinals\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (The 2008 Cardinals, also played for, the NFL title) -> The 2008 Cardinals (3925ms)\nHow many NFL teams are there?\tMeggett?s father\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Meggett?s father, played for, three NFL teams) -> Meggett?s father (3147ms)\nHow many NFL teams are there?\tJohn Avery\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (John Avery, has played for, several NFL and CFL teams) -> John Avery (2536ms)\nHow many NFL teams are there?\ttackle\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (tackle, is playing for, his third NFL team) -> tackle (2230ms)\nHow many NFL teams are there?\tcollege\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (college, make a commitment to play for, an NFL team) -> college (2485ms)\nHow many NFL teams are there?\tSherrard\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Sherrard, played for, four NFL teams) -> Sherrard (2230ms)\nHow many NFL teams are there?\tCouch\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Couch, played for, the NFL?s Cleveland Browns) -> Couch (3925ms)\nHow many NFL teams are there?\tFontenot\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Fontenot, played center for, 16 NFL seasons) -> Fontenot (3586ms)\nHow many NFL teams are there?\tBrian\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Brian, played strong safety for, the NFL) -> Brian (2595ms)\nHow many NFL teams are there?\tThe 34-year-old Graham\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (The 34-year-old Graham, has played for, a dozen NFL teams) -> The 34-year-old Graham (2595ms)\nHow many NFL teams are there?\tSayers\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (Sayers, signed a contract to play for, the NFL) -> Sayers (3586ms)\nHow many NFL teams are there?\tan All-Pro career\t0.6666666666759999\tHow many NFL teams are there? -> $x: ($x, play for, nfl) -> (an All-Pro career, played for, three NFL teams) -> an All-Pro career (2595ms)\nHow many NFL teams are there?\tthe Bills\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Bills, are the worst team in, the NFL) -> the Bills (4060ms)\nHow many NFL teams are there?\tMiami Dolphins\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Miami Dolphins, is a sports team that plays in the league, NFL) -> Miami Dolphins (4070ms)\nHow many NFL teams are there?\tlos angeles raiders\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (los angeles raiders, is a sports team that plays in the league, NFL) -> los angeles raiders (4037ms)\nHow many NFL teams are there?\tphiladelphia-eagles\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (philadelphia-eagles, is a sports team that plays in the league, NFL) -> philadelphia-eagles (4060ms)\nHow many NFL teams are there?\tBUFFALO BILLS\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (BUFFALO BILLS, is a sports team that plays in the league, NFL) -> BUFFALO BILLS (4037ms)\nHow many NFL teams are there?\tRedskins\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Redskins, is a sports team that plays in the league, NFL) -> Redskins (4049ms)\nHow many NFL teams are there?\tBucs\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Bucs, is a sports team that plays in the league, NFL) -> Bucs (4024ms)\nHow many NFL teams are there?\thouston texans\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (houston texans, is a sports team that plays in the league, NFL) -> houston texans (4059ms)\nHow many NFL teams are there?\tBILLS\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (BILLS, is a sports team that plays in the league, NFL) -> BILLS (4037ms)\nHow many NFL teams are there?\tFlorida Intl Golden Panthers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Florida Intl Golden Panthers, is a sports team that plays in the league, NFL) -> Florida Intl Golden Panthers (4024ms)\nHow many NFL teams are there?\tthe Bears\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Bears, are the best team in, the NFL) -> the Bears (4049ms)\nHow many NFL teams are there?\tTexans\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Texans, are only team in, NFL) -> Texans (4037ms)\nHow many NFL teams are there?\tLouis Rams\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Louis Rams, is a sports team that plays in the league, NFL) -> Louis Rams (4049ms)\nHow many NFL teams are there?\tthe team\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the team, is the only non-profit team in, NFL) -> the team (4024ms)\nHow many NFL teams are there?\tthe Giants\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Giants, being the best team in, the NFL) -> the Giants (4049ms)\nHow many NFL teams are there?\tSaint Louis Rams\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Saint Louis Rams, is a sports team that plays in the league, NFL) -> Saint Louis Rams (4049ms)\nHow many NFL teams are there?\tchicago cardinals\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (chicago cardinals, is a sports team that plays in the league, NFL) -> chicago cardinals (4049ms)\nHow many NFL teams are there?\tNY Jets\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (NY Jets, is a sports team that plays in the league, NFL) -> NY Jets (4059ms)\nHow many NFL teams are there?\tSeattle Seahawks\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Seattle Seahawks, is a sports team that plays in the league, NFL) -> Seattle Seahawks (4060ms)\nHow many NFL teams are there?\tnew york titans\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (new york titans, is a sports team that plays in the league, NFL) -> new york titans (4024ms)\nHow many NFL teams are there?\tthe Chargers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Chargers, are only team in, the NFL) -> the Chargers (4049ms)\nHow many NFL teams are there?\tatlanta falcons\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (atlanta falcons, is a sports team that plays in the league, NFL) -> atlanta falcons (4070ms)\nHow many NFL teams are there?\tJags\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Jags, is a sports team that plays in the league, NFL) -> Jags (4037ms)\nHow many NFL teams are there?\t2012 Super Bowl\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (2012 Super Bowl, is a sports team that plays in the league, NFL) -> 2012 Super Bowl (4024ms)\nHow many NFL teams are there?\tthe 49ers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the 49ers, are the best team in, the NFL) -> the 49ers (4037ms)\nHow many NFL teams are there?\tArizona\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Arizona, is the only team in, the NFL) -> Arizona (4037ms)\nHow many NFL teams are there?\tthe Patriots\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Patriots, are the best team in, the NFL) -> the Patriots (4049ms)\nHow many NFL teams are there?\t2009 pro bowl\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (2009 pro bowl, is a sports team that plays in the league, NFL) -> 2009 pro bowl (4049ms)\nHow many NFL teams are there?\tChicago bears\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Chicago bears, is a sports team that plays in the league, NFL) -> Chicago bears (4037ms)\nHow many NFL teams are there?\tGIANTS\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (GIANTS, is a sports team that plays in the league, NFL) -> GIANTS (4037ms)\nHow many NFL teams are there?\tchiefs\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (chiefs, is a sports team that plays in the league, NFL) -> chiefs (4024ms)\nHow many NFL teams are there?\tNFL Jerseys\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (NFL Jerseys, is a sports team that plays in the league, NFL) -> NFL Jerseys (4060ms)\nHow many NFL teams are there?\tBuccaneers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Buccaneers, is a sports team that plays in the league, NFL) -> Buccaneers (4037ms)\nHow many NFL teams are there?\tthe Texans\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Texans, are the only team in, the NFL) -> the Texans (4037ms)\nHow many NFL teams are there?\tGreenbay Packers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Greenbay Packers, is a sports team that plays in the league, NFL) -> Greenbay Packers (4060ms)\nHow many NFL teams are there?\t2011 Pro Bowl\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (2011 Pro Bowl, is a sports team that plays in the league, NFL) -> 2011 Pro Bowl (4070ms)\nHow many NFL teams are there?\tDallas Cowboys\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Dallas Cowboys, is a sports team that plays in the league, NFL) -> Dallas Cowboys (4037ms)\nHow many NFL teams are there?\ttennessee oilers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (tennessee oilers, is a sports team that plays in the league, NFL) -> tennessee oilers (4049ms)\nHow many NFL teams are there?\tSt Louis Rams\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (St Louis Rams, is a sports team that plays in the league, NFL) -> St Louis Rams (4037ms)\nHow many NFL teams are there?\tsd chargers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (sd chargers, is a sports team that plays in the league, NFL) -> sd chargers (4024ms)\nHow many NFL teams are there?\ttennessee titans\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (tennessee titans, is a sports team that plays in the league, NFL) -> tennessee titans (4037ms)\nHow many NFL teams are there?\tBaltimore Colts\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Baltimore Colts, is a sports team that plays in the league, NFL) -> Baltimore Colts (4024ms)\nHow many NFL teams are there?\tminnesota-vikings\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (minnesota-vikings, is a sports team that plays in the league, NFL) -> minnesota-vikings (4060ms)\nHow many NFL teams are there?\tDetroit Lions\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Detroit Lions, is a sports team that plays in the league, NFL) -> Detroit Lions (4024ms)\nHow many NFL teams are there?\tBrowns\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Browns, is a sports team that plays in the league, NFL) -> Browns (4060ms)\nHow many NFL teams are there?\tnew-england-patriots\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (new-england-patriots, is a sports team that plays in the league, NFL) -> new-england-patriots (4070ms)\nHow many NFL teams are there?\tthe Baltimore Ravens\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Baltimore Ravens, is a great team in, nfl) -> the Baltimore Ravens (4024ms)\nHow many NFL teams are there?\tthe Saints\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Saints, were the only team in, the NFL) -> the Saints (4049ms)\nHow many NFL teams are there?\tthe Packers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Packers, are their favorite team in, the NFL) -> the Packers (4060ms)\nHow many NFL teams are there?\tSan Francisco 49ers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (San Francisco 49ers, is a sports team that plays in the league, NFL) -> San Francisco 49ers (4049ms)\nHow many NFL teams are there?\tthe Colts\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Colts, are the best team in, the NFL) -> the Colts (4049ms)\nHow many NFL teams are there?\tthe quarterback position\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the quarterback position, is exactly teams in, the NFL) -> the quarterback position (4036ms)\nHow many NFL teams are there?\tPats\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Pats, is a sports team that plays in the league, NFL) -> Pats (4070ms)\nHow many NFL teams are there?\tHouston Oilers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Houston Oilers, is a sports team that plays in the league, NFL) -> Houston Oilers (4060ms)\nHow many NFL teams are there?\tL.A. Rams\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (L.A. Rams, is a sports team that plays in the league, NFL) -> L.A. Rams (4059ms)\nHow many NFL teams are there?\tNew Orleans Hornets\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (New Orleans Hornets, is a sports team that plays in the league, NFL) -> New Orleans Hornets (4011ms)\nHow many NFL teams are there?\tcincinnati-bengals\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (cincinnati-bengals, is a sports team that plays in the league, NFL) -> cincinnati-bengals (4070ms)\nHow many NFL teams are there?\tjacksonville-jaguars\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (jacksonville-jaguars, is a sports team that plays in the league, NFL) -> jacksonville-jaguars (4049ms)\nHow many NFL teams are there?\ttampa bay bucs\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (tampa bay bucs, is a sports team that plays in the league, NFL) -> tampa bay bucs (4036ms)\nHow many NFL teams are there?\tRavens\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Ravens, is a sports team that plays in the league, NFL) -> Ravens (4060ms)\nHow many NFL teams are there?\tDenver broncos\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Denver broncos, is a sports team that plays in the league, NFL) -> Denver broncos (4024ms)\nHow many NFL teams are there?\tthe Ravens\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Ravens, are the only team in, the NFL) -> the Ravens (4024ms)\nHow many NFL teams are there?\toakland raiders\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (oakland raiders, is a sports team that plays in the league, NFL) -> oakland raiders (4060ms)\nHow many NFL teams are there?\tThe Carolina Panthers\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (The Carolina Panthers, are one team in, the NFL) -> The Carolina Panthers (4024ms)\nHow many NFL teams are there?\tIndianapolis Colts\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Indianapolis Colts, is a sports team that plays in the league, NFL) -> Indianapolis Colts (4060ms)\nHow many NFL teams are there?\tPittsburgh Steelers Sunday\t0.5555555555659999\tHow many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Pittsburgh Steelers Sunday, is a sports team that plays in the league, NFL) -> Pittsburgh Steelers Sunday (4049ms)\nHow many NFL teams are there?\ta big time media mogul\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a big time media mogul, happens to belong to, the NFL) -> a big time media mogul (4080ms)\nHow many NFL teams are there?\tthe big upsets\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the big upsets, tend to happen in, the NFL Playoffs) -> the big upsets (4070ms)\nHow many NFL teams are there?\ta lot\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a lot, has happened to, the NFL) -> a lot (4070ms)\nHow many NFL teams are there?\tintended\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (intended, happened to run, his NFL-leading complete) -> intended (4080ms)\nHow many NFL teams are there?\tInjuries\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Injuries, happen to, every NFL team) -> Injuries (4070ms)\nHow many NFL teams are there?\tPete area\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Pete area, had happened to, 4 NFL football players) -> Pete area (4080ms)\nHow many NFL teams are there?\tno signing\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (no signing, will happen prior to, the NFL Draft) -> no signing (4070ms)\nHow many NFL teams are there?\tThursday night\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Thursday night, happens to be, the NBC NFL Kick-off) -> Thursday night (4080ms)\nHow many NFL teams are there?\tthe trapezoid\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the trapezoid, would happen to, NFL punt returners) -> the trapezoid (4080ms)\nHow many NFL teams are there?\ta major boating accident\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a major boating accident, so happen to have, 2 NFL Players) -> a major boating accident (4080ms)\nHow many NFL teams are there?\tWant\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Want, 's going to happen, this NFL season) -> Want (4080ms)\nHow many NFL teams are there?\ta couple years\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a couple years, ago happen to, the NFL) -> a couple years (4080ms)\nHow many NFL teams are there?\tprofessional sports\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (professional sports, is happening to, the NBA and NFL) -> professional sports (4070ms)\nHow many NFL teams are there?\tthe theme\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the theme, happens to be, the NFL) -> the theme (4090ms)\nHow many NFL teams are there?\tthe name Wonderlich\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the name Wonderlich, has happened to, the NFL) -> the name Wonderlich (4080ms)\nHow many NFL teams are there?\twhats\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (whats, to happen in, the NFL) -> whats (4080ms)\nHow many NFL teams are there?\tjust a simple analysis\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (just a simple analysis, happened to work on, one NFL weekend) -> just a simple analysis (4070ms)\nHow many NFL teams are there?\tQuestion\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Question, has happened to, your nfl coverage) -> Question (4080ms)\nHow many NFL teams are there?\tavailable\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (available, happen to be, Little league nfl jerseys) -> available (4080ms)\nHow many NFL teams are there?\t2008\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (2008, was happened to, the NFL) -> 2008 (4090ms)\nHow many NFL teams are there?\ta guy\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a guy, happens to play, NFL football) -> a guy (4080ms)\nHow many NFL teams are there?\tthe Denver Broncos\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the Denver Broncos, happens to be, my favorite NFL team) -> the Denver Broncos (4080ms)\nHow many NFL teams are there?\tthe 2010 Packers\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the 2010 Packers, also happen to be, the only two NFL teams) -> the 2010 Packers (4070ms)\nHow many NFL teams are there?\tLiveFooty Site\t0.555555555565\tHow many NFL teams are there? -> $x: ($x, happen to, nfl) -> (LiveFooty Site, has happened to, your nfl coverage) -> LiveFooty Site (4070ms)\nHow many NFL teams are there?\tGreen Bay Packers\t0.44444444445399994\tHow many NFL teams are there? -> $x: ($x, be team, nfl) -> (Green Bay Packers, is a good team throughout, nfl) -> Green Bay Packers (4118ms)\nHow many NFL teams are there?\ta call\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (a call, there is for, NFL football) -> a call (4162ms)\nHow many NFL teams are there?\tWard Jersey\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Ward Jersey, There are several different sorts of, NFL jerseys) -> Ward Jersey (4154ms)\nHow many NFL teams are there?\tBrett Favre?s Brain\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Brett Favre?s Brain, There is good news of, the NFL Lockout) -> Brett Favre?s Brain (4145ms)\nHow many NFL teams are there?\tthe upside\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the upside, is there for, a potential NFL starter) -> the upside (4145ms)\nHow many NFL teams are there?\tname brand\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (name brand, there is in, the NFL) -> name brand (4136ms)\nHow many NFL teams are there?\ta team\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (a team, there is in, the NFL) -> a team (4136ms)\nHow many NFL teams are there?\t4 OFF games\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (4 OFF games, there will be an update again to, the NFL picks) -> 4 OFF games (4162ms)\nHow many NFL teams are there?\tThe shop\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (The shop, is there to promote, the N.F.L.?s new partnership) -> The shop (4154ms)\nHow many NFL teams are there?\tan NFL JERSEYS\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (an NFL JERSEYS, there?ll be, a new 12-15 NFL JERSEYS) -> an NFL JERSEYS (4162ms)\nHow many NFL teams are there?\tthe 2011 season cycle\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the 2011 season cycle, there may be 70 in, the NFL) -> the 2011 season cycle (4145ms)\nHow many NFL teams are there?\tthe NFL playoffs\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the NFL playoffs, are there, any NFL players) -> the NFL playoffs (4154ms)\nHow many NFL teams are there?\twinter\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (winter, there was another group of, NFL athletes) -> winter (4145ms)\nHow many NFL teams are there?\tUFC\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (UFC, was right up there with, the NFL and Major League Baseball) -> UFC (4145ms)\nHow many NFL teams are there?\tThe audience\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (The audience, could be there for, live NFL games) -> The audience (4162ms)\nHow many NFL teams are there?\tRon Hogan\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Ron Hogan, There are two big events in, the NFL calendar) -> Ron Hogan (4136ms)\nHow many NFL teams are there?\tas safe a bet\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (as safe a bet, there is in, the 2012 NFL draft) -> as safe a bet (4162ms)\nHow many NFL teams are there?\taddition\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (addition, there are quite, a few nfl jerseys) -> addition (4145ms)\nHow many NFL teams are there?\tthe Lord\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the Lord, there is, the NFL and NBA) -> the Lord (4136ms)\nHow many NFL teams are there?\tthe most talented perennial loser\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the most talented perennial loser, there is in, the NFL) -> the most talented perennial loser (4136ms)\nHow many NFL teams are there?\tNot everyone\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Not everyone, theres been, a widespread perception in the NFL) -> Not everyone (4145ms)\nHow many NFL teams are there?\t2012\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (2012, would be there to welcome, the NFL) -> 2012 (4136ms)\nHow many NFL teams are there?\tbookends\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (bookends, there are in, the NFL) -> bookends (4145ms)\nHow many NFL teams are there?\tChris Johnson\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Chris Johnson, there is in, the NFL right) -> Chris Johnson (4145ms)\nHow many NFL teams are there?\tthe MLB\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the MLB, there is in, the NFL) -> the MLB (4136ms)\nHow many NFL teams are there?\tas deep a receiving corps\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (as deep a receiving corps, there is in, the NFL) -> as deep a receiving corps (4145ms)\nHow many NFL teams are there?\tadvantage\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (advantage, could be used there in, the NFL) -> advantage (4145ms)\nHow many NFL teams are there?\tJared Allen Jersey\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Jared Allen Jersey, There are many forms of, cheap NFL jerseys) -> Jared Allen Jersey (4154ms)\nHow many NFL teams are there?\tdollars\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (dollars, there are, former NFL players begging) -> dollars (4154ms)\nHow many NFL teams are there?\tSingletary Jersey\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Singletary Jersey, there is several tactics to get, nfl jerseys) -> Singletary Jersey (4162ms)\nHow many NFL teams are there?\tScout\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Scout, Are there, any NFL) -> Scout (4154ms)\nHow many NFL teams are there?\tPre-Pro Bowl\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Pre-Pro Bowl, there was much discussion of, the NFL) -> Pre-Pro Bowl (4136ms)\nHow many NFL teams are there?\tGen . George S. Patton\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Gen . George S. Patton, There will obviously be, some NFL games) -> Gen . George S. Patton (4154ms)\nHow many NFL teams are there?\tthe media\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the media, there is in, the NFL) -> the media (4154ms)\nHow many NFL teams are there?\ta wandering eye\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (a wandering eye, there are in, the NFL) -> a wandering eye (4145ms)\nHow many NFL teams are there?\ta defensive player\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (a defensive player, there is in, the NFL) -> a defensive player (4162ms)\nHow many NFL teams are there?\tTotal Access\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Total Access, there have been this season in, the NFL) -> Total Access (4136ms)\nHow many NFL teams are there?\tMichigan\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Michigan, there are at, NFL games) -> Michigan (4162ms)\nHow many NFL teams are there?\tthe back\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the back, There is a flat-knit collar with, NFL Equipment patch) -> the back (4145ms)\nHow many NFL teams are there?\tthe best wildcat offence\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the best wildcat offence, there is in, the NFL) -> the best wildcat offence (4145ms)\nHow many NFL teams are there?\tThats how much parity\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Thats how much parity, there is in, the NFL) -> Thats how much parity (4136ms)\nHow many NFL teams are there?\ta defensive mind\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (a defensive mind, there is in, the NFL) -> a defensive mind (4162ms)\nHow many NFL teams are there?\tan offense\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (an offense, there is in, the NFL) -> an offense (4136ms)\nHow many NFL teams are there?\ta duo\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (a duo, there is in, the NFL) -> a duo (4154ms)\nHow many NFL teams are there?\tthe potential\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the potential, is there for, a very good NFL career) -> the potential (4154ms)\nHow many NFL teams are there?\treceivers\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (receivers, are there in, the NFL) -> receivers (4162ms)\nHow many NFL teams are there?\t17 :48 very true\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (17 :48 very true, there are, some very good and fat NFL lineman) -> 17 :48 very true (4136ms)\nHow many NFL teams are there?\tgain\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (gain, will be there through, the NFL draft) -> gain (4154ms)\nHow many NFL teams are there?\treferees\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (referees, are there in, an NFL match) -> referees (4145ms)\nHow many NFL teams are there?\tsleeves\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (sleeves, There is a flat-knit collar with, NFL Equipment patch) -> sleeves (4154ms)\nHow many NFL teams are there?\tthe old franchise\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the old franchise, was there at, the NFL) -> the old franchise (4162ms)\nHow many NFL teams are there?\tEric Dickerson\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Eric Dickerson, were there as well as, current NFL standouts) -> Eric Dickerson (4162ms)\nHow many NFL teams are there?\tthe ranks\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the ranks, there is, a few NFL Superstars) -> the ranks (4145ms)\nHow many NFL teams are there?\tThe talent\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (The talent, is there to make an impact in, the NFL) -> The talent (4154ms)\nHow many NFL teams are there?\tRobert Griffin III\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (Robert Griffin III, won?t be there in, the NFL) -> Robert Griffin III (4154ms)\nHow many NFL teams are there?\tFirst Maurice Jones Drew\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (First Maurice Jones Drew, was there for, the NFL network) -> First Maurice Jones Drew (4136ms)\nHow many NFL teams are there?\tApril\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (April, there will be, the 2009 NFL draft) -> April (4154ms)\nHow many NFL teams are there?\tany backup\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (any backup, there is in, the NFL) -> any backup (4162ms)\nHow many NFL teams are there?\tserious an offense\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (serious an offense, there is in, the NFL) -> serious an offense (4136ms)\nHow many NFL teams are there?\tthe New 12 months\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (the New 12 months, there tend to be so, many cheap nfl jerseys) -> the New 12 months (4136ms)\nHow many NFL teams are there?\t190 wide outs\t0.44444444444799996\tHow many NFL teams are there? -> $x: ($x, be there, nfl) -> (190 wide outs, are there in, the NFL ? TempelTUFF 01-17-2012 07) -> 190 wide outs (4154ms)\nHow many NFL teams are there?\tCharlie Browning\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Charlie Browning, was drafted by, the NFL) -> Charlie Browning (4196ms)\nHow many NFL teams are there?\ta zebra\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (a zebra, gets drafted into, the NFL) -> a zebra (4211ms)\nHow many NFL teams are there?\tthe Panthers\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the Panthers, drafted in, the 2009 NFL Draft) -> the Panthers (4179ms)\nHow many NFL teams are there?\tMore than 200 Grambling players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (More than 200 Grambling players, were drafted to, NFL teams) -> More than 200 Grambling players (4219ms)\nHow many NFL teams are there?\tFlorida\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Florida, were drafted by, the NFL) -> Florida (4171ms)\nHow many NFL teams are there?\tthe players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the players, drafted into, the NFL) -> the players (4179ms)\nHow many NFL teams are there?\tgamers\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (gamers, manage every aspect of, an NFL franchise) -> gamers (4179ms)\nHow many NFL teams are there?\ta graduate\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (a graduate, was drafted by, the NFL) -> a graduate (4219ms)\nHow many NFL teams are there?\tRey Maualuga\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Rey Maualuga, Draft year, 2009 NFL Draft) -> Rey Maualuga (4179ms)\nHow many NFL teams are there?\tJohnson\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Johnson, was drafted by, the NFL) -> Johnson (4179ms)\nHow many NFL teams are there?\ta chance\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (a chance, to be drafted by, NFL teams) -> a chance (4171ms)\nHow many NFL teams are there?\tKenny Britt- both\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Kenny Britt- both, were drafted highly into, the NFL) -> Kenny Britt- both (4187ms)\nHow many NFL teams are there?\tThe Packers\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, be most popular team in, nfl) -> (The Packers, are the most popular team in, the NFL) -> The Packers (4171ms)\nHow many NFL teams are there?\tthe third quarterback\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the third quarterback, drafted in, the 1983 NFL Draft) -> the third quarterback (4204ms)\nHow many NFL teams are there?\tthe Host Committee\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (the Host Committee, manage, the NFL) -> the Host Committee (4218ms)\nHow many NFL teams are there?\tthe Oakland Raiders\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the Oakland Raiders, drafted in, the 2009 NFL Draft) -> the Oakland Raiders (4204ms)\nHow many NFL teams are there?\tDenver\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Denver, drafted in, the 2009 NFL Draft) -> Denver (4196ms)\nHow many NFL teams are there?\tAuburn\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Auburn, was drafted by, the NFL) -> Auburn (4171ms)\nHow many NFL teams are there?\tplayers\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (players, drafted by, NFL teams) -> players (4204ms)\nHow many NFL teams are there?\t100 FSU players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (100 FSU players, were drafted by, NFL teams) -> 100 FSU players (4171ms)\nHow many NFL teams are there?\tKiffin\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, coach for, nfl) -> (Kiffin, was the defensive quality control coach for, the NFL) -> Kiffin (4196ms)\nHow many NFL teams are there?\t32 players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (32 players, get drafted to, the NFL) -> 32 players (4179ms)\nHow many NFL teams are there?\ta player\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (a player, drafted in, the NFL) -> a player (4211ms)\nHow many NFL teams are there?\tthe main character\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the main character, is drafted into, the NFL) -> the main character (4196ms)\nHow many NFL teams are there?\t16 Scarlet Knights\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (16 Scarlet Knights, were drafted by, NFL teams) -> 16 Scarlet Knights (4171ms)\nHow many NFL teams are there?\tThe Cowboys\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (The Cowboys, drafted, the NFL offensive rookie) -> The Cowboys (4196ms)\nHow many NFL teams are there?\tMr. Garmon\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Mr. Garmon, was drafted into, the NFL) -> Mr. Garmon (4162ms)\nHow many NFL teams are there?\tthe past eight seasons\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, coach for, nfl) -> (the past eight seasons, has coached for, six NFL teams) -> the past eight seasons (4196ms)\nHow many NFL teams are there?\tJoe?s athletes\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Joe?s athletes, have been drafted by, the NFL) -> Joe?s athletes (4187ms)\nHow many NFL teams are there?\ta year\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (a year, were drafted to, the NFL) -> a year (4196ms)\nHow many NFL teams are there?\tathletes\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (athletes, have been drafted to, the NFL) -> athletes (4171ms)\nHow many NFL teams are there?\tLuck\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Luck, draft, NFL.com Liked) -> Luck (4218ms)\nHow many NFL teams are there?\tWhite\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (White, was first drafted into, the NFL) -> White (4204ms)\nHow many NFL teams are there?\tUW,\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (UW,, have been drafted into, the NFL) -> UW, (4187ms)\nHow many NFL teams are there?\tthe 29-year-old ,\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the 29-year-old ,, was also drafted by, the NFL) -> the 29-year-old , (4196ms)\nHow many NFL teams are there?\tSonny Werblin\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (Sonny Werblin, managed one of, the NFL team New York Jets) -> Sonny Werblin (4204ms)\nHow many NFL teams are there?\tKirk Ferentz\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Kirk Ferentz, has been drafted in, the NFL) -> Kirk Ferentz (4196ms)\nHow many NFL teams are there?\tCody Spano\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Cody Spano, got drafted by, the NFL) -> Cody Spano (4171ms)\nHow many NFL teams are there?\tthe most\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the most, have been drafted into, the NFL) -> the most (4204ms)\nHow many NFL teams are there?\t22 offensive players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (22 offensive players, were drafted into, the NFL) -> 22 offensive players (4187ms)\nHow many NFL teams are there?\tthe offensive lineman\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the offensive lineman, was drafted into, the NFL) -> the offensive lineman (4179ms)\nHow many NFL teams are there?\ttwo three-stars\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (two three-stars, just got drafted in, the NFL) -> two three-stars (4171ms)\nHow many NFL teams are there?\tHawes\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (Hawes, is the Managing Editor of, NFL content) -> Hawes (4187ms)\nHow many NFL teams are there?\tPhillips\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, coach for, nfl) -> (Phillips, has been a head coach for, five NFL teams) -> Phillips (4211ms)\nHow many NFL teams are there?\tthe Jets\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the Jets, drafted in, the 2009 NFL Draft) -> the Jets (4187ms)\nHow many NFL teams are there?\tMarshal Yanda\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Marshal Yanda, was drafted by, the NFL) -> Marshal Yanda (4196ms)\nHow many NFL teams are there?\tcollege football players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (college football players, were drafted into, the NFL) -> college football players (4211ms)\nHow many NFL teams are there?\tBosco\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Bosco, was drafted into, the NFL) -> Bosco (4219ms)\nHow many NFL teams are there?\ta Rose Bowl victory\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (a Rose Bowl victory, was drafted into, the NFL) -> a Rose Bowl victory (4211ms)\nHow many NFL teams are there?\till intent\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (ill intent, managed to set, an NFL record) -> ill intent (4204ms)\nHow many NFL teams are there?\t17 Red Raiders\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (17 Red Raiders, were drafted by, NFL teams) -> 17 Red Raiders (4211ms)\nHow many NFL teams are there?\tJason Boltus\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Jason Boltus, Draft year, 2009 NFL Draft) -> Jason Boltus (4219ms)\nHow many NFL teams are there?\tschool\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (school, was just drafted by, the NFL) -> school (4171ms)\nHow many NFL teams are there?\tPage\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Page, was drafted into, the NFL) -> Page (4211ms)\nHow many NFL teams are there?\tDave\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Dave, was drafted into, the NFL) -> Dave (4226ms)\nHow many NFL teams are there?\tsmall school prospects\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (small school prospects, get drafted in, the NFL) -> small school prospects (4219ms)\nHow many NFL teams are there?\tthe youngest player\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the youngest player, drafted since, the NFL) -> the youngest player (4179ms)\nHow many NFL teams are there?\tgeneral\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (general, managed, an NFL team) -> general (4211ms)\nHow many NFL teams are there?\t150 former FSU players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (150 former FSU players, have been drafted by, the NFL) -> 150 former FSU players (4211ms)\nHow many NFL teams are there?\tFresno State\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Fresno State, was drafted into, the NFL) -> Fresno State (4187ms)\nHow many NFL teams are there?\tCNN Junior Seau\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (CNN Junior Seau, was drafted into, the NFL) -> CNN Junior Seau (4211ms)\nHow many NFL teams are there?\tsix buffs\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (six buffs, were drafted to, the NFL) -> six buffs (4204ms)\nHow many NFL teams are there?\tan opportunity\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (an opportunity, manage, your own NFL pool) -> an opportunity (4211ms)\nHow many NFL teams are there?\tthe lawsuit\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (the lawsuit, has managed to put, the NFL) -> the lawsuit (4179ms)\nHow many NFL teams are there?\tJake Long\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Jake Long, Draft, 2008 NFL Draft) -> Jake Long (4196ms)\nHow many NFL teams are there?\tChris Long\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Chris Long, Draft, 2008 NFL Draft) -> Chris Long (4219ms)\nHow many NFL teams are there?\tRussell\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (Russell, manages to offend, former NFL great) -> Russell (4171ms)\nHow many NFL teams are there?\tGabe Miller\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Gabe Miller, were drafted to, the NFL) -> Gabe Miller (4204ms)\nHow many NFL teams are there?\t323 Longhorns\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (323 Longhorns, have been drafted by, the NFL) -> 323 Longhorns (4218ms)\nHow many NFL teams are there?\t42 players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (42 players, were drafted by, the NFL) -> 42 players (4187ms)\nHow many NFL teams are there?\tMerlin Olsen\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Merlin Olsen, Draft, 1962 NFL Draft) -> Merlin Olsen (4171ms)\nHow many NFL teams are there?\tthe most anyone\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (the most anyone, has managed so far at, this year?s NFL Combine) -> the most anyone (4226ms)\nHow many NFL teams are there?\tWilliams\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, coach for, nfl) -> (Williams, has also coached for, NFL teams) -> Williams (4204ms)\nHow many NFL teams are there?\tTABLE Players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (TABLE Players, managed to keep, the N.F.L.) -> TABLE Players (4171ms)\nHow many NFL teams are there?\tA gifted player\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (A gifted player, is drafted by, the NFL) -> A gifted player (4187ms)\nHow many NFL teams are there?\t21 players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (21 players, get drafted by, NFL teams) -> 21 players (4196ms)\nHow many NFL teams are there?\tsix FSU quarterbacks\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (six FSU quarterbacks, were drafted into, the NFL) -> six FSU quarterbacks (4187ms)\nHow many NFL teams are there?\tNotre Dame\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Notre Dame, got drafted by, the NFL) -> Notre Dame (4204ms)\nHow many NFL teams are there?\tPlummer\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (Plummer, managed to lead, the NFL) -> Plummer (4219ms)\nHow many NFL teams are there?\tdefense\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (defense, were all drafted by, NFL teams) -> defense (4218ms)\nHow many NFL teams are there?\tthe NFC South\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the NFC South, drafted in, the 2009 NFL Draft) -> the NFC South (4187ms)\nHow many NFL teams are there?\tThe Chiefs\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (The Chiefs, drafted, the NFL defensive rookie) -> The Chiefs (4179ms)\nHow many NFL teams are there?\tnine players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (nine players, were drafted by, NFL teams) -> nine players (4204ms)\nHow many NFL teams are there?\tthe efforts\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (the efforts, are managed by, the NFL) -> the efforts (4219ms)\nHow many NFL teams are there?\tmore players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (more players, drafted by, the NFL) -> more players (4211ms)\nHow many NFL teams are there?\tMike Nolan\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, team of, nfl) -> (Mike Nolan, will lead teams of, top NFL draft prospects) -> Mike Nolan (4171ms)\nHow many NFL teams are there?\tNewton\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, team of, nfl) -> (Newton, joins the growing team of, offensive NFL stars) -> Newton (4211ms)\nHow many NFL teams are there?\tthe next Army player\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the next Army player, is drafted by, the NFL) -> the next Army player (4187ms)\nHow many NFL teams are there?\tMark Brunell-Brunell\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (Mark Brunell-Brunell, still manages to stay in, the NFL) -> Mark Brunell-Brunell (4179ms)\nHow many NFL teams are there?\ta good friend\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (a good friend, was drafted into, the NFL) -> a good friend (4211ms)\nHow many NFL teams are there?\tthe Titans\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the Titans, drafted in, the 2009 NFL Draft) -> the Titans (4162ms)\nHow many NFL teams are there?\tTurk\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Turk, was drafted into, the NFL) -> Turk (4187ms)\nHow many NFL teams are there?\tcommunication\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (communication, has made managing, NFL crowds) -> communication (4204ms)\nHow many NFL teams are there?\t329 Buckeyes\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (329 Buckeyes, have been drafted into, the NFL) -> 329 Buckeyes (4171ms)\nHow many NFL teams are there?\t2 more Spartan wide receivers\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (2 more Spartan wide receivers, will be drafted by, the NFL) -> 2 more Spartan wide receivers (4204ms)\nHow many NFL teams are there?\tfantasy players\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, manage, nfl) -> (fantasy players, can manage, their NFL.com) -> fantasy players (4179ms)\nHow many NFL teams are there?\tMcMackin\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (McMackin, were drafted in, the NFL) -> McMackin (4211ms)\nHow many NFL teams are there?\tthe player\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the player, was drafted by, the NFL) -> the player (4179ms)\nHow many NFL teams are there?\tDunn\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Dunn, drafted into, the NFL) -> Dunn (4211ms)\nHow many NFL teams are there?\tspecial teams\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (special teams, was drafted into, the NFL) -> special teams (4219ms)\nHow many NFL teams are there?\tBrandon\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (Brandon, would be drafted into, the NFL) -> Brandon (4219ms)\nHow many NFL teams are there?\tthe first player\t0.333333333344\tHow many NFL teams are there? -> $x: ($x, draft, nfl) -> (the first player, be drafted to, the NFL) -> the first player (4219ms)\nHow many NFL teams are there?\texactly LeBron\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (exactly LeBron, would look like in, the NFL) -> exactly LeBron (4247ms)\nHow many NFL teams are there?\tDefenses\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, consist of, nfl) -> (Defenses, consist of, entire NFL teams) -> Defenses (4233ms)\nHow many NFL teams are there?\ta fellow\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (a fellow, looked like, an NFL football player in plain dress) -> a fellow (4226ms)\nHow many NFL teams are there?\tThe late signing JUCO guys\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (The late signing JUCO guys, look like, future NFL players) -> The late signing JUCO guys (4233ms)\nHow many NFL teams are there?\tthe 3rd or 4th round\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, major in, nfl) -> (the 3rd or 4th round, have seen major success in, the NFL) -> the 3rd or 4th round (4240ms)\nHow many NFL teams are there?\tWhich one\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Which one, looks like, an NFL player) -> Which one (4226ms)\nHow many NFL teams are there?\tthe Desert\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (the Desert, look like, an NFL Football Game) -> the Desert (4247ms)\nHow many NFL teams are there?\tnow prime-time television\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, consist of, nfl) -> (now prime-time television, will consist entirely of, NFL games) -> now prime-time television (4247ms)\nHow many NFL teams are there?\tthe new Nike uniforms\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (the new Nike uniforms, will look like in, \" Madden NFL 13) -> the new Nike uniforms (4233ms)\nHow many NFL teams are there?\tJenkins\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Jenkins, looks like, an NFL) -> Jenkins (4247ms)\nHow many NFL teams are there?\tSee\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (See, looks like in, some other NFL uniforms) -> See (4247ms)\nHow many NFL teams are there?\tZeitler\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Zeitler, looks like, an NFL starter) -> Zeitler (4240ms)\nHow many NFL teams are there?\tSamardzija\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Samardzija, looked like, a lucrative NFL career) -> Samardzija (4233ms)\nHow many NFL teams are there?\tTrent Edwards\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Trent Edwards, barely looked like, an NFL quarterback) -> Trent Edwards (4226ms)\nHow many NFL teams are there?\tplay\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (play, looks like, a solid contributing NFL) -> play (4240ms)\nHow many NFL teams are there?\tPositives\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Positives, Looks like, an NFL tackle) -> Positives (4226ms)\nHow many NFL teams are there?\tNFL SUNDAY TICKET To-Go\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, consist of, nfl) -> (NFL SUNDAY TICKET To-Go, consist of, all out-of market NFL games) -> NFL SUNDAY TICKET To-Go (4226ms)\nHow many NFL teams are there?\ttimes\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (times, looked like, a good NFL QB) -> times (4240ms)\nHow many NFL teams are there?\tChad Henne\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Chad Henne, actually looked like, a NFL QB week) -> Chad Henne (4247ms)\nHow many NFL teams are there?\tOakland quarterback Rich Gannon\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Oakland quarterback Rich Gannon, hardly looked like, the NFL) -> Oakland quarterback Rich Gannon (4226ms)\nHow many NFL teams are there?\tMadden\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Madden, looked like, a legitimate NFL product) -> Madden (4233ms)\nHow many NFL teams are there?\tCam\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Cam, looks like, a legit NFL QB) -> Cam (4233ms)\nHow many NFL teams are there?\tattire\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, consist of, nfl) -> (attire, consist of, NFL jerseys) -> attire (4226ms)\nHow many NFL teams are there?\tJosh Freeman\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Josh Freeman, looked like, an NFL caliber quarterback) -> Josh Freeman (4226ms)\nHow many NFL teams are there?\tEd Reed\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Ed Reed, looks like, NFLs greatest ballhawker) -> Ed Reed (4240ms)\nHow many NFL teams are there?\tEach team\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, consist of, nfl) -> (Each team, will consist of, 14 NFL players) -> Each team (4240ms)\nHow many NFL teams are there?\tTrent Dilfer\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Trent Dilfer, look like, an NFL quarterback) -> Trent Dilfer (4247ms)\nHow many NFL teams are there?\tCarson Palmer\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Carson Palmer, looked like, an NFL quarterback) -> Carson Palmer (4240ms)\nHow many NFL teams are there?\tThe Panthers\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (The Panthers, looked like, an NFL offense) -> The Panthers (4253ms)\nHow many NFL teams are there?\twholesale NFL jerseys\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (wholesale NFL jerseys, look like, a genuine nfl hat) -> wholesale NFL jerseys (4240ms)\nHow many NFL teams are there?\tAJ Feeley\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (AJ Feeley, looked like, NFL quarterbacks) -> AJ Feeley (4253ms)\nHow many NFL teams are there?\tThe regular ones\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (The regular ones, look like, an NFL football player) -> The regular ones (4240ms)\nHow many NFL teams are there?\tMLB\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (MLB, begins to look much more like, the NFL) -> MLB (4240ms)\nHow many NFL teams are there?\tthe run game\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (the run game, looks like, an NFL starter) -> the run game (4226ms)\nHow many NFL teams are there?\tthe past month he?s\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (the past month he?s, look every bit like, an NFL neophyte) -> the past month he?s (4253ms)\nHow many NFL teams are there?\tWest\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (West, looks like, an NFL player) -> West (4240ms)\nHow many NFL teams are there?\tTHEM It\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (THEM It, looks more like, an NFL roster) -> THEM It (4247ms)\nHow many NFL teams are there?\tKalil\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Kalil, certainly looks like, an NFL tackle) -> Kalil (4240ms)\nHow many NFL teams are there?\ta college football playoff\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (a college football playoff, look like, an NFL playoff) -> a college football playoff (4233ms)\nHow many NFL teams are there?\tMoore and Carriker\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Moore and Carriker, look like, NFL players) -> Moore and Carriker (4247ms)\nHow many NFL teams are there?\tMcNabb\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (McNabb, looked like, a below-average NFL starter) -> McNabb (4240ms)\nHow many NFL teams are there?\tthe move\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (the move, looks like, an NFL starter) -> the move (4233ms)\nHow many NFL teams are there?\tFame weekend\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Fame weekend, will look like in, the NFL) -> Fame weekend (4253ms)\nHow many NFL teams are there?\tPitt\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Pitt, looks like, a future NFL 1st-round pick) -> Pitt (4226ms)\nHow many NFL teams are there?\tthe receiver\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (the receiver, already looks like, an NFL prototype) -> the receiver (4247ms)\nHow many NFL teams are there?\tgreen uniforms\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (green uniforms, looked like, NFL football linebackers) -> green uniforms (4233ms)\nHow many NFL teams are there?\tThe beast\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (The beast, looks like, ....an NFL linebacker) -> The beast (4240ms)\nHow many NFL teams are there?\tsnapback hats and throwback hats\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, consist of, nfl) -> (snapback hats and throwback hats, consist of, NFL) -> snapback hats and throwback hats (4247ms)\nHow many NFL teams are there?\tNBA contracts\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (NBA contracts, would look more like, NFL deals) -> NBA contracts (4253ms)\nHow many NFL teams are there?\tJoe Webb\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Joe Webb, looked like, an actual NFL quarterback) -> Joe Webb (4253ms)\nHow many NFL teams are there?\tThe New England Patriots\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (The New England Patriots, looked like, the NFL?s best team) -> The New England Patriots (4226ms)\nHow many NFL teams are there?\tDraft Rookies Rookies\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Draft Rookies Rookies, now look just like, the real NFL players) -> Draft Rookies Rookies (4247ms)\nHow many NFL teams are there?\ta 24-year-old\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (a 24-year-old, absolutely looks like, a legitimate NFL feature) -> a 24-year-old (4247ms)\nHow many NFL teams are there?\tSubmissions\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, consist of, nfl) -> (Submissions, consist of, weekly NFL player projections) -> Submissions (4233ms)\nHow many NFL teams are there?\tPoe\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Poe, looked like, a future NFL superstar) -> Poe (4233ms)\nHow many NFL teams are there?\tMallett\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Mallett, looked like, a number one NFL draft pick) -> Mallett (4253ms)\nHow many NFL teams are there?\tShaun Hill\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Shaun Hill, looks like, an NFL quarterback) -> Shaun Hill (4233ms)\nHow many NFL teams are there?\tA coworker\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (A coworker, looked like, a hardy NFL linebacker) -> A coworker (4253ms)\nHow many NFL teams are there?\tQuinn\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Quinn, looks like, an NFL QB) -> Quinn (4247ms)\nHow many NFL teams are there?\ta solid blocker\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (a solid blocker, looks like, a future starting caliber NFL TE.) -> a solid blocker (4233ms)\nHow many NFL teams are there?\tthe Broncos\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, major in, nfl) -> (the Broncos, has a major ripple effect in, the NFL) -> the Broncos (4247ms)\nHow many NFL teams are there?\tthe mid-grade officers\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (the mid-grade officers, look like, NFL halfbacks) -> the mid-grade officers (4253ms)\nHow many NFL teams are there?\tDarius Fleming\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Darius Fleming, looks like, a future NFL player) -> Darius Fleming (4226ms)\nHow many NFL teams are there?\tFelix Jones\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (Felix Jones, is looking like, a quality NFL) -> Felix Jones (4233ms)\nHow many NFL teams are there?\tThe busy streets\t0.333333333339\tHow many NFL teams are there? -> $x: ($x, look like, nfl) -> (The busy streets, look more like, an NFL game) -> The busy streets (4226ms)\nHow many NFL teams are there?\t7. Tim Tebow\t0.333333333334\tHow many NFL teams are there? -> $x: ($x, draft, nfl team) -> (7. Tim Tebow, will be drafted by, an NFL team) -> 7. Tim Tebow (4259ms)\nHow many NFL teams are there?\tNCAA football players\t0.333333333334\tHow many NFL teams are there? -> $x: ($x, draft, nfl team) -> (NCAA football players, are drafted by, NBA or NFL teams) -> NCAA football players (4259ms)\nHow many NFL teams are there?\tthe Indianapolis Combine\t0.333333333334\tHow many NFL teams are there? -> $x: ($x, draft, nfl team) -> (the Indianapolis Combine, were drafted by, N.F.L. teams) -> the Indianapolis Combine (4259ms)\nHow many NFL teams are there?\tfootball seniors\t0.333333333334\tHow many NFL teams are there? -> $x: ($x, draft, nfl team) -> (football seniors, get drafted by, an NFL team) -> football seniors (4259ms)\nHow many NFL teams are there?\tWes nor Victor\t0.333333333334\tHow many NFL teams are there? -> $x: ($x, draft, nfl team) -> (Wes nor Victor, was even drafted by, an NFL team) -> Wes nor Victor (4253ms)\nHow many NFL teams are there?\tNCAA college football seniors\t0.333333333334\tHow many NFL teams are there? -> $x: ($x, draft, nfl team) -> (NCAA college football seniors, even get drafted by, an NFL team) -> NCAA college football seniors (4253ms)\nHow many NFL teams are there?\tone player\t0.333333333334\tHow many NFL teams are there? -> $x: ($x, draft, nfl team) -> (one player, was the only draft pick of, an NFL team) -> one player (4264ms)\nHow many NFL teams are there?\ta team or rookie players\t0.333333333334\tHow many NFL teams are there? -> $x: ($x, draft, nfl team) -> (a team or rookie players, were drafted to, an NFL team) -> a team or rookie players (4259ms)\nHow many NFL teams are there?\tsocial media\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (the NFL Teams, are doing on, social media) -> social media (4264ms)\nHow many NFL teams are there?\tthe National Hockey League\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, as do several teams in, the National Hockey League) -> the National Hockey League (4269ms)\nHow many NFL teams are there?\tTerrell Owens\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (most NFL teams, did with, Terrell Owens) -> Terrell Owens (4269ms)\nHow many NFL teams are there?\tthe same\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (more NFL teams, announced plans to do, the same) -> the same (4273ms)\nHow many NFL teams are there?\tthe city\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (an NFL team, has done more good for, the city) -> the city (4269ms)\nHow many NFL teams are there?\tthe past\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL and CFL teams, did play each other in, the past) -> the past (4269ms)\nHow many NFL teams are there?\tdynasty owners\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, could do the same to, dynasty owners) -> dynasty owners (4264ms)\nHow many NFL teams are there?\trecent weeks\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (Other NFL teams, have been doing similar deals in, recent weeks) -> recent weeks (4264ms)\nHow many NFL teams are there?\tNFL Killzones\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, do in, NFL Killzones) -> NFL Killzones (4273ms)\nHow many NFL teams are there?\tthe spread\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, do against, the spread) -> the spread (4269ms)\nHow many NFL teams are there?\tSunday\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (Your favorite NFL team, does n?t just show up on, Sunday) -> Sunday (4269ms)\nHow many NFL teams are there?\tthe playoffs\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (your favorite NFL team, did nt make, the playoffs) -> the playoffs (4264ms)\nHow many NFL teams are there?\tthe field\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (all NFL teams, do on, the field) -> the field (4269ms)\nHow many NFL teams are there?\tso\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (the first NFL team, to do, so) -> so (4269ms)\nHow many NFL teams are there?\tnext year\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (all 32 NFL teams, will do, next year) -> next year (4269ms)\nHow many NFL teams are there?\tthe President would\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, do with, the President would) -> the President would (4264ms)\nHow many NFL teams are there?\tbig a makeover\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (the NFL teams, did n?t get as, big a makeover) -> big a makeover (4264ms)\nHow many NFL teams are there?\tpreparation\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (the NFL?s Super Bowl team, is doing in, preparation) -> preparation (4269ms)\nHow many NFL teams are there?\tprospects\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, are doing due diligence on, prospects) -> prospects (4269ms)\nHow many NFL teams are there?\tthe last six seasons\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (all NFL teams, have done each year for, the last six seasons) -> the last six seasons (4269ms)\nHow many NFL teams are there?\tn?t sign Owens\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, did, n?t sign Owens) -> n?t sign Owens (4264ms)\nHow many NFL teams are there?\tthe draft\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (everyone?s NFL team, do in, the draft) -> the draft (4269ms)\nHow many NFL teams are there?\tchance\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, barely do better than, chance) -> chance (4269ms)\nHow many NFL teams are there?\tbusiness\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, do, business) -> business (4273ms)\nHow many NFL teams are there?\tany limit\t0.333333333331\tHow many NFL teams are there? -> $x: (nfl team, do, $x) -> (every NFL team, there does n?t appear to be, any limit) -> any limit (4264ms)\nHow many NFL teams are there?\tThe Green Bay Packers\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Green Bay Packers, are now only the 6th team in, NFL history) -> The Green Bay Packers (4283ms)\nHow many NFL teams are there?\tMiami\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (Miami, is only the fifth team in, NFL history) -> Miami (4274ms)\nHow many NFL teams are there?\tThe Indianapolis Colts\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Indianapolis Colts, are the first team in, NFL history) -> The Indianapolis Colts (4283ms)\nHow many NFL teams are there?\tThe Eagles\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Eagles, are the first team in, NFL history) -> The Eagles (4278ms)\nHow many NFL teams are there?\tThe Giants\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Giants, are the second team in, NFL history) -> The Giants (4278ms)\nHow many NFL teams are there?\tPackers\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (Packers, are 1st team in, NFL history) -> Packers (4278ms)\nHow many NFL teams are there?\tThe Lions\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Lions, were the first team in, NFL history) -> The Lions (4274ms)\nHow many NFL teams are there?\tThe Bills\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Bills, are the first team in, NFL history) -> The Bills (4283ms)\nHow many NFL teams are there?\tThe 2005 team\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 2005 team, is the only sixth-seeded team in, NFL history) -> The 2005 team (4283ms)\nHow many NFL teams are there?\tThe 1998 Vikings\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 1998 Vikings, were the highest scoring team in, NFL history) -> The 1998 Vikings (4283ms)\nHow many NFL teams are there?\ta six-game winning streak\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (a six-game winning streak, is the fifth team in, NFL history) -> a six-game winning streak (4274ms)\nHow many NFL teams are there?\tThe Seahawks\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Seahawks, are the worst team in, NFL history) -> The Seahawks (4278ms)\nHow many NFL teams are there?\tthe 1972 Miami Dolphins\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (the 1972 Miami Dolphins, were the greatest team in, NFL history) -> the 1972 Miami Dolphins (4278ms)\nHow many NFL teams are there?\t13 consecutive games &\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (13 consecutive games &, are 3rd team in, NFL history) -> 13 consecutive games & (4278ms)\nHow many NFL teams are there?\tthe Falcons\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (the Falcons, were the first team in, NFL history) -> the Falcons (4278ms)\nHow many NFL teams are there?\tThe Detroit Lions\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Detroit Lions, are the first team in, NFL History) -> The Detroit Lions (4278ms)\nHow many NFL teams are there?\tThe 49ers\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 49ers, are the first team in, NFL history) -> The 49ers (4278ms)\nHow many NFL teams are there?\tThe 1972 Dolphins\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 1972 Dolphins, were the first team in, NFL history) -> The 1972 Dolphins (4278ms)\nHow many NFL teams are there?\t? The Chargers\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (? The Chargers, are the first team in, NFL history) -> ? The Chargers (4278ms)\nHow many NFL teams are there?\tthe Rams\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (the Rams, were the highest-scoring team in, NFL history) -> the Rams (4278ms)\nHow many NFL teams are there?\tThe 2011 Giants\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 2011 Giants, are the first team in, NFL history) -> The 2011 Giants (4283ms)\nHow many NFL teams are there?\tThe Patriots\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Patriots, are also the seventh team in, NFL history) -> The Patriots (4283ms)\nHow many NFL teams are there?\tDetroit\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (Detroit, is the only team in, NFL history) -> Detroit (4273ms)\nHow many NFL teams are there?\tBuffalo\t0.22222222222\tHow many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (Buffalo, is the first team in, NFL history) -> Buffalo (4278ms)\nHow many NFL teams are there?\tMarch 17th John Jackson\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (March 17th John Jackson, played for, the Football League) -> March 17th John Jackson (4302ms)\nHow many NFL teams are there?\tSuzi Cresswell Toby\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Suzi Cresswell Toby, plays for, a successful football team) -> Suzi Cresswell Toby (4291ms)\nHow many NFL teams are there?\ta Portuguese soccer star\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a Portuguese soccer star, plays for, Spanish football club) -> a Portuguese soccer star (4295ms)\nHow many NFL teams are there?\tpreviews\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, newest) -> (previews, began playing for, his newest film ?Sucker Punch?) -> previews (4302ms)\nHow many NFL teams are there?\tYork\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (York, played for, York City Football Club) -> York (4299ms)\nHow many NFL teams are there?\tAllen\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Allen, played for, the Nittany Lion football team) -> Allen (4287ms)\nHow many NFL teams are there?\tThe Band\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (The Band, played for, the football team) -> The Band (4295ms)\nHow many NFL teams are there?\tEnglish teams\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (English teams, played for, the first Football Association Cup) -> English teams (4291ms)\nHow many NFL teams are there?\tJeff Teague\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Jeff Teague, plays for the team, wake-forest-deacons-football) -> Jeff Teague (4295ms)\nHow many NFL teams are there?\tBarnes and Gaitor\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Barnes and Gaitor, played for, the FIU football team) -> Barnes and Gaitor (4291ms)\nHow many NFL teams are there?\tBill Reilly\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Bill Reilly, does the play-by-play for, Utah football) -> Bill Reilly (4291ms)\nHow many NFL teams are there?\tone very good wing\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (one very good wing, played for, the Macau Army Football team) -> one very good wing (4287ms)\nHow many NFL teams are there?\tDad\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Dad, played for, the RAAF football team) -> Dad (4291ms)\nHow many NFL teams are there?\twinger Arthur Goddard\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (winger Arthur Goddard, played for, the Football League) -> winger Arthur Goddard (4302ms)\nHow many NFL teams are there?\tEast End\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (East End, played for, their school football team) -> East End (4299ms)\nHow many NFL teams are there?\tthe Florida Gators\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (the Florida Gators, will play for, college football) -> the Florida Gators (4283ms)\nHow many NFL teams are there?\tMuhammad Azeem Ashraf\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, be team of, football) -> (Muhammad Azeem Ashraf, There are so many teams of, football) -> Muhammad Azeem Ashraf (4299ms)\nHow many NFL teams are there?\tnative\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, be team of, football) -> (native, was the team captain of, the football team) -> native (4291ms)\nHow many NFL teams are there?\tThe team\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (The team, plays for, the National Football League) -> The team (4302ms)\nHow many NFL teams are there?\tthe two schools\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (the two schools, played for, the football national championship) -> the two schools (4283ms)\nHow many NFL teams are there?\t?Space\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, newest) -> (?Space, is Playing Field for, Newest War Game) -> ?Space (4291ms)\nHow many NFL teams are there?\tSanford Stadium\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Sanford Stadium, is the on-campus playing venue for, football) -> Sanford Stadium (4287ms)\nHow many NFL teams are there?\tMichael\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Michael, plays for, the England blind football team) -> Michael (4302ms)\nHow many NFL teams are there?\tWorcester\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Worcester, played for, the England Blind Football team) -> Worcester (4287ms)\nHow many NFL teams are there?\tPeyton\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Peyton, played for, my college football team) -> Peyton (4287ms)\nHow many NFL teams are there?\tDusan\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Dusan, played for, the local Hungarian football club) -> Dusan (4295ms)\nHow many NFL teams are there?\ta band\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a band, played for, football games) -> a band (4291ms)\nHow many NFL teams are there?\tFanny Williams\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Fanny Williams, played for, Swindon Town ladies football team) -> Fanny Williams (4295ms)\nHow many NFL teams are there?\tRolls\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Rolls, played for, the Football Ferns) -> Rolls (4306ms)\nHow many NFL teams are there?\tRichard\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Richard, played for, United Traders football club) -> Richard (4295ms)\nHow many NFL teams are there?\tinstruments\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (instruments, play for, the Monday Night Football song) -> instruments (4302ms)\nHow many NFL teams are there?\tBill Noble\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Bill Noble, played three seasons for, Army football) -> Bill Noble (4291ms)\nHow many NFL teams are there?\tTolley\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Tolley, played for, the JMU football team) -> Tolley (4283ms)\nHow many NFL teams are there?\tPrice\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Price, for playing, football) -> Price (4287ms)\nHow many NFL teams are there?\tGene Stallings\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Gene Stallings, played for, College Football Hall) -> Gene Stallings (4299ms)\nHow many NFL teams are there?\tJustin Fashanu\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Justin Fashanu, played for, Norwich City Football Club) -> Justin Fashanu (4283ms)\nHow many NFL teams are there?\tSpace\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, newest) -> (Space, is playing field for, newest war game) -> Space (4287ms)\nHow many NFL teams are there?\tMiro Klaic\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Miro Klaic, plays for, BH football national team) -> Miro Klaic (4302ms)\nHow many NFL teams are there?\tMark\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Mark, played for, the Roseville Bobcats Football Association) -> Mark (4295ms)\nHow many NFL teams are there?\tOnly time\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Only time, plays for, pro football?s championship) -> Only time (4299ms)\nHow many NFL teams are there?\tan Imperial kid\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (an Imperial kid, played for, a great football program) -> an Imperial kid (4302ms)\nHow many NFL teams are there?\ta great opportunity\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a great opportunity, play for, a fantastic football club) -> a great opportunity (4287ms)\nHow many NFL teams are there?\tSEAFOOD BOIL PARTY Summer\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (SEAFOOD BOIL PARTY Summer, is for playing, tag football) -> SEAFOOD BOIL PARTY Summer (4295ms)\nHow many NFL teams are there?\tBrock\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Brock, played for, the 1999 Huskie Football Team) -> Brock (4306ms)\nHow many NFL teams are there?\tEnglish\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (English, played for, head football coach Greg Koenig) -> English (4291ms)\nHow many NFL teams are there?\tTexas\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Texas, played for, the national football championship) -> Texas (4283ms)\nHow many NFL teams are there?\ta well known Australian\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a well known Australian, played for, Melbourne Football Club) -> a well known Australian (4299ms)\nHow many NFL teams are there?\tfront that\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (front that, was perfect for playing, touch football) -> front that (4295ms)\nHow many NFL teams are there?\tFerguson?s input\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Ferguson?s input, plays for, Liverpool Football Club) -> Ferguson?s input (4299ms)\nHow many NFL teams are there?\tchildren\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (children, for playing, football) -> children (4299ms)\nHow many NFL teams are there?\tCharles\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Charles, played for, the Rover football team) -> Charles (4299ms)\nHow many NFL teams are there?\tMatthews\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Matthews, played for, the USC Trojans football team) -> Matthews (4283ms)\nHow many NFL teams are there?\tDagunduro\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Dagunduro, played for, the Husker football team) -> Dagunduro (4291ms)\nHow many NFL teams are there?\ttim tebow\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (tim tebow, plays for the team, Florida Gators football) -> tim tebow (4291ms)\nHow many NFL teams are there?\tA great guy\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (A great guy, played for, their national football team) -> A great guy (4283ms)\nHow many NFL teams are there?\tMourinho\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Mourinho, for playing, negative football) -> Mourinho (4302ms)\nHow many NFL teams are there?\tS?crates\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (S?crates, played for, Shelbourne Football Club) -> S?crates (4287ms)\nHow many NFL teams are there?\tgood\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (good, played as well for, AFL football) -> good (4291ms)\nHow many NFL teams are there?\ta UK-born Indian\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a UK-born Indian, plays for, a Southall football club) -> a UK-born Indian (4287ms)\nHow many NFL teams are there?\tThe Miami Dolphins\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, be team of, football) -> (The Miami Dolphins, are a team of, professional football) -> The Miami Dolphins (4287ms)\nHow many NFL teams are there?\tGary\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Gary, played for, the Mountaineer football team) -> Gary (4287ms)\nHow many NFL teams are there?\tSanchez\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Sanchez, played for, Texas Football Club) -> Sanchez (4302ms)\nHow many NFL teams are there?\tThe AFCA\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, be team of, football) -> (The AFCA, is the team of, the football coaching profession) -> The AFCA (4295ms)\nHow many NFL teams are there?\ttwo can?t miss\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (two can?t miss, plays for, Thursday ?s college football action) -> two can?t miss (4283ms)\nHow many NFL teams are there?\tLast\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Last, played for, the Arena Football League) -> Last (4287ms)\nHow many NFL teams are there?\tcrisp overhead conditions\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (crisp overhead conditions, were perfect for playing, football) -> crisp overhead conditions (4299ms)\nHow many NFL teams are there?\tLeddige\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Leddige, played for, head football coach Brad Mastrud) -> Leddige (4302ms)\nHow many NFL teams are there?\tNavy\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Navy, begins play for, football beginning) -> Navy (4295ms)\nHow many NFL teams are there?\ta brick layer\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a brick layer, played for, Droitwich United football team) -> a brick layer (4295ms)\nHow many NFL teams are there?\ta youth\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a youth, played for, Gymnasium Association Football Club) -> a youth (4306ms)\nHow many NFL teams are there?\trealizing Horn\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (realizing Horn, played for, the football team) -> realizing Horn (4299ms)\nHow many NFL teams are there?\tJinky Johnstone\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Jinky Johnstone, played for, Celtic Football club) -> Jinky Johnstone (4295ms)\nHow many NFL teams are there?\tSimpson\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Simpson, played for, the school football team) -> Simpson (4299ms)\nHow many NFL teams are there?\tLJ\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (LJ, played for, Rutgers football) -> LJ (4302ms)\nHow many NFL teams are there?\ta person\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a person, plays for, the New Orleans football team) -> a person (4299ms)\nHow many NFL teams are there?\tthe candidate\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (the candidate, played for, the same college football team) -> the candidate (4302ms)\nHow many NFL teams are there?\tPresident John F. Kennedy\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (President John F. Kennedy, was also known for playing, football) -> President John F. Kennedy (4299ms)\nHow many NFL teams are there?\ta rover\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (a rover, plays for, Carlton Football Club) -> a rover (4295ms)\nHow many NFL teams are there?\tEl Hadji Diouf\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (El Hadji Diouf, plays for, Blackburn Rovers Football Club) -> El Hadji Diouf (4295ms)\nHow many NFL teams are there?\tthe Pacific Coast Conference\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (the Pacific Coast Conference, began play for, football) -> the Pacific Coast Conference (4291ms)\nHow many NFL teams are there?\tNajeeb\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Najeeb, played for, the Sharjah Football Club) -> Najeeb (4287ms)\nHow many NFL teams are there?\tJack Jones\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Jack Jones, played for, Everton Football Club) -> Jack Jones (4302ms)\nHow many NFL teams are there?\tSmith\t0.11111111111\tHow many NFL teams are there? -> $x: ($x, play for, football) -> (Smith, plays for, the football team) -> Smith (4299ms)\nHow many NFL teams are there?\ta good 14 years\t1.0999978705683588E-11\tHow many NFL teams are there? -> $x: ($x, be oldest team in, nfl) -> (a good 14 years, are still the 5th oldest team in, the NFL) -> a good 14 years (4311ms)\nHow many NFL teams are there?\tGreen Bay\t1.0999978705683588E-11\tHow many NFL teams are there? -> $x: ($x, be oldest team in, nfl) -> (Green Bay, are the third oldest team in, the NFL) -> Green Bay (4311ms)\nHow many NFL teams are there?\tHouston\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Houston, is the best team in, football) -> Houston (4321ms)\nHow many NFL teams are there?\ta month\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (a month, was the most free-scoring team in, football) -> a month (4311ms)\nHow many NFL teams are there?\tThe 1997 Colts\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The 1997 Colts, were the worst team in, football) -> The 1997 Colts (4320ms)\nHow many NFL teams are there?\tColts\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Colts, are the worst team in, football) -> Colts (4318ms)\nHow many NFL teams are there?\tHawaii\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Hawaii, is the best team in, college football) -> Hawaii (4318ms)\nHow many NFL teams are there?\tThe Steelers\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Steelers, were the best team in, football) -> The Steelers (4318ms)\nHow many NFL teams are there?\tThe Bears\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Bears, are the most discounted team in, football) -> The Bears (4321ms)\nHow many NFL teams are there?\tfirst team\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (first team, was a second team all-state selection in, football) -> first team (4321ms)\nHow many NFL teams are there?\tthe Raiders\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the Raiders, are the worst team in, football) -> the Raiders (4320ms)\nHow many NFL teams are there?\tthe Big East\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the Big East, will be a 13-team league in, football) -> the Big East (4323ms)\nHow many NFL teams are there?\tThe Rams\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Rams, are the worst team in, football) -> The Rams (4321ms)\nHow many NFL teams are there?\tThe Chargers\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Chargers, were probably the worst team in, football) -> The Chargers (4318ms)\nHow many NFL teams are there?\tthe lions\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the lions, may be the best team in, football) -> the lions (4318ms)\nHow many NFL teams are there?\tthe Lions\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the Lions, have been the worst team in, football) -> the Lions (4320ms)\nHow many NFL teams are there?\tUD\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (UD, was the only team in, FCS football) -> UD (4311ms)\nHow many NFL teams are there?\tHave fun\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Have fun, could very well be the worst team in, football) -> Have fun (4318ms)\nHow many NFL teams are there?\tThe Arizona Cardinals\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Arizona Cardinals, are the best team in, football) -> The Arizona Cardinals (4320ms)\nHow many NFL teams are there?\tThe Redskins\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Redskins, are the best 6-7 team in, football) -> The Redskins (4316ms)\nHow many NFL teams are there?\tthe Texas Longhorns\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the Texas Longhorns, are the best team in, college football) -> the Texas Longhorns (4320ms)\nHow many NFL teams are there?\tThe Ravens\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Ravens, are the best team in, football) -> The Ravens (4321ms)\nHow many NFL teams are there?\tIndianapolis\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Indianapolis, is still the most explosive team in, football) -> Indianapolis (4320ms)\nHow many NFL teams are there?\tManchester United\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Manchester United, are the luckiest team in, football) -> Manchester United (4311ms)\nHow many NFL teams are there?\tCleveland\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Cleveland, is the worst team in, football) -> Cleveland (4321ms)\nHow many NFL teams are there?\tThe Titans\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Titans, are the 2nd dirtiest team in, football) -> The Titans (4316ms)\nHow many NFL teams are there?\tthe last four years\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the last four years, is the worst team in, football) -> the last four years (4321ms)\nHow many NFL teams are there?\tthe pats\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the pats, were the best teams in, football) -> the pats (4313ms)\nHow many NFL teams are there?\tthe New England Patriots\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the New England Patriots, have been the best team in, football) -> the New England Patriots (4311ms)\nHow many NFL teams are there?\tAlabama\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Alabama, is the best team in, college football) -> Alabama (4321ms)\nHow many NFL teams are there?\teach other\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (each other, is the best team in, football) -> each other (4316ms)\nHow many NFL teams are there?\tThe undefeated Bears\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The undefeated Bears, are the best team in, football right) -> The undefeated Bears (4313ms)\nHow many NFL teams are there?\tThe Colts\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Colts, are the only defeated team in, football) -> The Colts (4321ms)\nHow many NFL teams are there?\tThe Pats\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Pats, are the best team in, Football) -> The Pats (4321ms)\nHow many NFL teams are there?\tLSU LSU\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (LSU LSU, is the best team in, college football) -> LSU LSU (4318ms)\nHow many NFL teams are there?\tthe Vikings\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the Vikings, were the best team in, football) -> the Vikings (4320ms)\nHow many NFL teams are there?\tThe Browns\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Browns, were the dominant team in, pro football) -> The Browns (4311ms)\nHow many NFL teams are there?\tthe two local football stories\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the two local football stories, are the best team in, football) -> the two local football stories (4311ms)\nHow many NFL teams are there?\tThe Raiders\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Raiders, are the worst team in, football) -> The Raiders (4325ms)\nHow many NFL teams are there?\t16 games\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (16 games, are the better teams in, football) -> 16 games (4318ms)\nHow many NFL teams are there?\tThe Cardinals\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Cardinals, are the worst team in, football) -> The Cardinals (4316ms)\nHow many NFL teams are there?\tThe Saints\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (The Saints, are the most exciting team in, football) -> The Saints (4320ms)\nHow many NFL teams are there?\tthe Patriots and Giants\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (the Patriots and Giants, were the best teams in, football) -> the Patriots and Giants (4321ms)\nHow many NFL teams are there?\tFinishing third\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Finishing third, were teams in, football) -> Finishing third (4316ms)\nHow many NFL teams are there?\tArsenal\t-0.0\tHow many NFL teams are there? -> $x: ($x, be team in, football) -> (Arsenal, are my second team in, football) -> Arsenal (4321ms)\nHow many NFL teams are there?\tInstant replay\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Instant replay, is the worst thing to happen to, football) -> Instant replay (4328ms)\nHow many NFL teams are there?\tno telling\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (no telling, might happen to, the UNC football program) -> no telling (4328ms)\nHow many NFL teams are there?\tthe heck\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (the heck, has happened to, our football team) -> the heck (4323ms)\nHow many NFL teams are there?\tLee\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (Lee, would ?just happen ? to bring, his newest song) -> Lee (4327ms)\nHow many NFL teams are there?\tDeb Amlen\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (Deb Amlen, also happens to be one of, HO?s newest writers) -> Deb Amlen (4328ms)\nHow many NFL teams are there?\ta sense\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (a sense, happens to, a football player) -> a sense (4328ms)\nHow many NFL teams are there?\t?NFL RedZone\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (?NFL RedZone, is the most exciting thing to happen to, football) -> ?NFL RedZone (4323ms)\nHow many NFL teams are there?\tthe change\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (the change, happened to, South Africa Football Association) -> the change (4328ms)\nHow many NFL teams are there?\tRanger\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Ranger, happened to be, the first football game) -> Ranger (4328ms)\nHow many NFL teams are there?\tthe story\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (the story, happened to, a prominent Big Ten football coach) -> the story (4329ms)\nHow many NFL teams are there?\tMarch 2012\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (March 2012, has happened to, Brazilian football) -> March 2012 (4328ms)\nHow many NFL teams are there?\tSeni Saraki\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Seni Saraki, happened to, Nigerian football) -> Seni Saraki (4327ms)\nHow many NFL teams are there?\tMoony\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (Moony, happens to be, my newest convert) -> Moony (4328ms)\nHow many NFL teams are there?\tpenalties\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (penalties, may have been best thing to happen to, #UNC football) -> penalties (4327ms)\nHow many NFL teams are there?\tThe Grove\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (The Grove, happens to be, the newest outdoor shopping center) -> The Grove (4327ms)\nHow many NFL teams are there?\tFriday\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Friday, happened to, flag football) -> Friday (4328ms)\nHow many NFL teams are there?\ta summer\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (a summer, happened to be at, football practice) -> a summer (4327ms)\nHow many NFL teams are there?\tScott\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Scott, also happens to be, a former football star) -> Scott (4327ms)\nHow many NFL teams are there?\toff\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (off, happened to, good ole ?Tennessee football) -> off (4328ms)\nHow many NFL teams are there?\tregards\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (regards, happened to, the old football club) -> regards (4323ms)\nHow many NFL teams are there?\ttrading card game\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (trading card game, happens to be, my newest addiction) -> trading card game (4327ms)\nHow many NFL teams are there?\tThe Rock\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (The Rock, just happened to play, football) -> The Rock (4328ms)\nHow many NFL teams are there?\tNot sure\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Not sure, will happen to, his football career) -> Not sure (4328ms)\nHow many NFL teams are there?\tsense\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (sense, happened to, our football game) -> sense (4327ms)\nHow many NFL teams are there?\tGhana\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Ghana, was happening to, Nigerian football) -> Ghana (4325ms)\nHow many NFL teams are there?\tnext season\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (next season, happens to, this football club) -> next season (4328ms)\nHow many NFL teams are there?\ta great man\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (a great man, happened to be, a tremendous football player) -> a great man (4327ms)\nHow many NFL teams are there?\tludicrously baggy soccer outfits\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (ludicrously baggy soccer outfits, happened to, football) -> ludicrously baggy soccer outfits (4328ms)\nHow many NFL teams are there?\tMARTY CESARIO\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (MARTY CESARIO, happened to, the Horizon football squad) -> MARTY CESARIO (4328ms)\nHow many NFL teams are there?\tquestions\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (questions, will happen to, the South African football arena) -> questions (4328ms)\nHow many NFL teams are there?\tJust\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Just, happened to, 1974 Holland total football) -> Just (4328ms)\nHow many NFL teams are there?\tKeepNIt2Real\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (KeepNIt2Real, happens to, football players) -> KeepNIt2Real (4328ms)\nHow many NFL teams are there?\tCommonly reverse\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Commonly reverse, happens to be, ineffective Football New Jersey) -> Commonly reverse (4328ms)\nHow many NFL teams are there?\tThe Vikings\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, be team, football field) -> (The Vikings, were the better team on, the football field) -> The Vikings (4328ms)\nHow many NFL teams are there?\tsports drinks\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (sports drinks, happen to be, the newest one) -> sports drinks (4327ms)\nHow many NFL teams are there?\tChelsea D\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Chelsea D, happened to, football) -> Chelsea D (4325ms)\nHow many NFL teams are there?\tPankaj Advani\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (Pankaj Advani, happens to be, the newest star) -> Pankaj Advani (4329ms)\nHow many NFL teams are there?\tLucy Hale\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (Lucy Hale, also happens to be, the newest Bench girl) -> Lucy Hale (4328ms)\nHow many NFL teams are there?\tE-governance\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (E-governance, happens to be, the newest expression) -> E-governance (4328ms)\nHow many NFL teams are there?\tan interesting look\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (an interesting look, is happening to, football attendances) -> an interesting look (4328ms)\nHow many NFL teams are there?\t365 Media Group\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (365 Media Group, happened to, football) -> 365 Media Group (4325ms)\nHow many NFL teams are there?\tthe radar\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (the radar, happened to play, their club football) -> the radar (4329ms)\nHow many NFL teams are there?\ta little lesson\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (a little lesson, happened to, football) -> a little lesson (4327ms)\nHow many NFL teams are there?\tcoast\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (coast, has happened to, pro football) -> coast (4328ms)\nHow many NFL teams are there?\texactly\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (exactly, is going to happen with, Ohio State?s football program) -> exactly (4328ms)\nHow many NFL teams are there?\tDisney Parks\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (Disney Parks, also happens to be, the newest) -> Disney Parks (4323ms)\nHow many NFL teams are there?\trachel\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (rachel, just happens to be, the newest client) -> rachel (4327ms)\nHow many NFL teams are there?\tSocial media\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (Social media, just happens to be, the newest) -> Social media (4323ms)\nHow many NFL teams are there?\tdrugs\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (drugs, happened to be, the newest , most expensive drugs) -> drugs (4328ms)\nHow many NFL teams are there?\tBazi\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (Bazi, just happens to be, the newest drink) -> Bazi (4328ms)\nHow many NFL teams are there?\tSir\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Sir, happen to catch, the professional football contest) -> Sir (4323ms)\nHow many NFL teams are there?\tabout-who\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, newest) -> (about-who, happens also to be, her newest listening customer) -> about-who (4323ms)\nHow many NFL teams are there?\tMICHIGAN\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (MICHIGAN, happens to be one of, the biggest football entities) -> MICHIGAN (4327ms)\nHow many NFL teams are there?\tQuestions\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Questions, will happen to, Nebraska football coach Bill Callahan) -> Questions (4327ms)\nHow many NFL teams are there?\tPittsburgh\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (Pittsburgh, happens to be the home of, professional football) -> Pittsburgh (4323ms)\nHow many NFL teams are there?\tthe new pitch\t-1.0000056338554941E-12\tHow many NFL teams are there? -> $x: ($x, happen to, football) -> (the new pitch, would be the biggest thing to happen to, football) -> the new pitch (4327ms)\nHow many NFL teams are there?\tThe 1936 Draft\t-2.0000112677109882E-12\tHow many NFL teams are there? -> $x: ($x, draft, nfl history) -> (The 1936 Draft, was the only 9-round draft in, NFL history) -> The 1936 Draft (4329ms)\nWhat do manatees eat?\tplankton\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, ever eat, plankton) -> plankton (1624ms)\nWhat do manatees eat?\t100 pounds\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (An adult manatee, eats over, 100 pounds) -> 100 pounds (1414ms)\nWhat do manatees eat?\t10-15 %\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, can eat, 10-15 %) -> 10-15 % (1837ms)\nWhat do manatees eat?\tlettuce\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat heads of, lettuce) -> lettuce (1414ms)\nWhat do manatees eat?\tdaily\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, can eat 10-15 % of their body weight, daily) -> daily (1837ms)\nWhat do manatees eat?\ta tiny Mexican place\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatee and I, ate at, a tiny Mexican place) -> a tiny Mexican place (1837ms)\nWhat do manatees eat?\tRecreation Area\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Lake Manatee St, ate, Recreation Area) -> Recreation Area (1755ms)\nWhat do manatees eat?\t100 to 150 pounds\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, 100 to 150 pounds) -> 100 to 150 pounds (1837ms)\nWhat do manatees eat?\thydrilla\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat, hydrilla) -> hydrilla (1414ms)\nWhat do manatees eat?\tthe lettuce\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (The manatees, eat, the lettuce) -> the lettuce (1414ms)\nWhat do manatees eat?\t50 different types\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat over, 50 different types) -> 50 different types (1837ms)\nWhat do manatees eat?\twater plants\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (The manatee, eats mostly a variety of, water plants) -> water plants (1624ms)\nWhat do manatees eat?\t9 %\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (an adult manatee, can eat nearly, 9 %) -> 9 % (1755ms)\nWhat do manatees eat?\t150 pounds\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat over, 150 pounds) -> 150 pounds (1837ms)\nWhat do manatees eat?\t10\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, can eat, 10) -> 10 (1414ms)\nWhat do manatees eat?\tthe vegetation right\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, will come eat, the vegetation right) -> the vegetation right (1414ms)\nWhat do manatees eat?\tfish\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Antillean manatees, have been known to eat, fish) -> fish (2170ms)\nWhat do manatees eat?\t10 % to 20 %\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, 10 % to 20 %) -> 10 % to 20 % (1414ms)\nWhat do manatees eat?\telephants\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat grass like, elephants) -> elephants (1755ms)\nWhat do manatees eat?\t4 to 9 percent\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, must eat, 4 to 9 percent) -> 4 to 9 percent (2171ms)\nWhat do manatees eat?\tmarine and freshwater plant\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Shelter Manatees, eat, marine and freshwater plant) -> marine and freshwater plant (1837ms)\nWhat do manatees eat?\t60 different plant species\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat over, 60 different plant species) -> 60 different plant species (1755ms)\nWhat do manatees eat?\t72 heads\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (the two manatees, eat about, 72 heads) -> 72 heads (1837ms)\nWhat do manatees eat?\tthe abundant sea grasses\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, the abundant sea grasses) -> the abundant sea grasses (1414ms)\nWhat do manatees eat?\teight heads\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (The young manatee, is eating, eight heads) -> eight heads (1624ms)\nWhat do manatees eat?\tmarine and freshwater plants\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, marine and freshwater plants) -> marine and freshwater plants (1624ms)\nWhat do manatees eat?\t10-15 percent\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat anywhere from, 10-15 percent) -> 10-15 percent (1624ms)\nWhat do manatees eat?\t10-15 % of their body weight\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, can eat, 10-15 % of their body weight) -> 10-15 % of their body weight (1624ms)\nWhat do manatees eat?\t60 different species\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat over, 60 different species) -> 60 different species (2170ms)\nWhat do manatees eat?\tclams\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (West African manatees, have been known to eat, clams) -> clams (1624ms)\nWhat do manatees eat?\tdifferent kinds\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat lots of, different kinds) -> different kinds (1755ms)\nWhat do manatees eat?\tthe vegetation\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat, the vegetation) -> the vegetation (1755ms)\nWhat do manatees eat?\t60 to 100 pounds\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (An adult manatee, eats as much as, 60 to 100 pounds) -> 60 to 100 pounds (1755ms)\nWhat do manatees eat?\t10 %\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Food Manatees, can eat up to, 10 %) -> 10 % (1624ms)\nWhat do manatees eat?\t22 pounds\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (The manatee, eats, 22 pounds) -> 22 pounds (2170ms)\nWhat do manatees eat?\texotic plants\t2.111111111099\tWhat do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, exotic plants) -> exotic plants (1755ms)\nWhat do manatees eat?\tsalt\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (Manatees, do well in, salt) -> salt (2210ms)\nWhat do manatees eat?\textra duty\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (Manatee County, does, extra duty) -> extra duty (2210ms)\nWhat do manatees eat?\ta chance\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (That Manatee, does n?t stand, a chance) -> a chance (2210ms)\nWhat do manatees eat?\tthe same\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (Manatee, will do, the same) -> the same (2508ms)\nWhat do manatees eat?\tteeth\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (A. Manatees, do indeed have, teeth) -> teeth (2210ms)\nWhat do manatees eat?\ta lot\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (Manatees, really do fart, a lot) -> a lot (2364ms)\nWhat do manatees eat?\tthe exact same bremen\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the manatee, does, the exact same bremen) -> the exact same bremen (2508ms)\nWhat do manatees eat?\tthe rounds\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (my manatee photographs, have been doing, the rounds) -> the rounds (2508ms)\nWhat do manatees eat?\tthe manatees\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee Club, does for, the manatees) -> the manatees (2364ms)\nWhat do manatees eat?\ta great job\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (Manatee Scientists, did, a great job) -> a great job (2170ms)\nWhat do manatees eat?\ta holiday\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (a dead manatee, does n?t turn up right after, a holiday) -> a holiday (2364ms)\nWhat do manatees eat?\tmore face-outs\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (Blue Manatee, is doing, more face-outs) -> more face-outs (2170ms)\nWhat do manatees eat?\tKamran\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the flying manatee, was done by, Kamran) -> Kamran (2210ms)\nWhat do manatees eat?\ta penis\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (That manatee, does look like, a penis) -> a penis (2364ms)\nWhat do manatees eat?\ta better job\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (D-rated Manatee, was arguably doing, a better job) -> a better job (2170ms)\nWhat do manatees eat?\tVictor\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee Club, do even more to help, Victor) -> Victor (2170ms)\nWhat do manatees eat?\tkayak tours\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee club, is doing, kayak tours) -> kayak tours (2364ms)\nWhat do manatees eat?\tgood\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the manatees, can do a lot of, good) -> good (2364ms)\nWhat do manatees eat?\ta field sobriety test\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee County Sheriff?s Office, did, a field sobriety test) -> a field sobriety test (2210ms)\nWhat do manatees eat?\tthe public\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee Club, does a great job of educating, the public) -> the public (2364ms)\nWhat do manatees eat?\ta few other tour operators\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee reserve, as do, a few other tour operators) -> a few other tour operators (2210ms)\nWhat do manatees eat?\tSarteneja\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (The rescued manatee, is doing well in, Sarteneja) -> Sarteneja (2364ms)\nWhat do manatees eat?\tpower plants\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (manatees, have to do with, power plants) -> power plants (2509ms)\nWhat do manatees eat?\tmorph\t1.4444444444389999\tWhat do manatees eat? -> $x: (manatee, do, $x) -> (the manatees, really do, morph) -> morph (2210ms)\nWhat do manatees eat?\tlate\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (late, does, another manatee) -> late (2836ms)\nWhat do manatees eat?\tmusic\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (manatees, liked, music) -> music (2871ms)\nWhat do manatees eat?\tcool creatures\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (Manatees, seem like pretty, cool creatures) -> cool creatures (2863ms)\nWhat do manatees eat?\tWildlife Conservation Commission\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Wildlife Conservation Commission, can save, a manatee?s life) -> Wildlife Conservation Commission (2712ms)\nWhat do manatees eat?\tplace\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (effective manatee protection measures, need to be in, place) -> place (2845ms)\nWhat do manatees eat?\tvegetation\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, feed on, $x) -> (The West African manatee, feeds primarily on, vegetation) -> vegetation (2827ms)\nWhat do manatees eat?\tFlorida\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (Florida, prohibited the killing of, manatees) -> Florida (2845ms)\nWhat do manatees eat?\tthe Manatee Club\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (the Manatee Club, does for, the manatees) -> the Manatee Club (2845ms)\nWhat do manatees eat?\t21/2 pounds\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (a manatee, would need just, 21/2 pounds) -> 21/2 pounds (2827ms)\nWhat do manatees eat?\treality\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (reality, can barely get, my manatee-sized butt) -> reality (2854ms)\nWhat do manatees eat?\tthe lagoon side\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (the lagoon side, can watch, dolphins and manatees) -> the lagoon side (2896ms)\nWhat do manatees eat?\tthe state?s waters\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Modern Florida manatees, have lived in, the state?s waters) -> the state?s waters (2863ms)\nWhat do manatees eat?\tscientists\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (scientists, killed so, many manatees) -> scientists (2880ms)\nWhat do manatees eat?\teveryone?s help and protection\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (?Endangered manatees, need, everyone?s help and protection) -> everyone?s help and protection (2888ms)\nWhat do manatees eat?\tclub members\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (club members, can see, manatees) -> club members (2904ms)\nWhat do manatees eat?\thumans\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (humans, can legally swim alongside, the manatee) -> humans (2888ms)\nWhat do manatees eat?\tthe flesh\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, hunt, $x) -> (manatees, were hunted for, the flesh) -> the flesh (2911ms)\nWhat do manatees eat?\tsurvive\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need warm water to, survive) -> survive (2911ms)\nWhat do manatees eat?\tthe water today\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, the water today) -> the water today (2783ms)\nWhat do manatees eat?\tsharks\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (sharks, occasionally kill, manatees) -> sharks (2836ms)\nWhat do manatees eat?\ta role\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (a role, does, Manatee County play) -> a role (2836ms)\nWhat do manatees eat?\tmuch air\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (much air, does, a manatee take) -> much air (2880ms)\nWhat do manatees eat?\tresearch\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (research, has been done on, the Florida manatee) -> research (2827ms)\nWhat do manatees eat?\tboaters\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (boaters, can help protect, manatees and seagrasses) -> boaters (2918ms)\nWhat do manatees eat?\tcanal locks\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (canal locks, have accidentally killed, manatees) -> canal locks (2863ms)\nWhat do manatees eat?\tJohn Reynolds\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (John Reynolds, does an aerial count of, manatees) -> John Reynolds (2911ms)\nWhat do manatees eat?\tNaked Came The Manatee\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Naked Came The Manatee, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Naked%20Came%20the%20Manatee) -> Naked Came The Manatee (2880ms)\nWhat do manatees eat?\tfresh water\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, drink, $x) -> (Manatees, have been seen drinking, fresh water) -> fresh water (2918ms)\nWhat do manatees eat?\twarm coastal tropical waters\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, warm coastal tropical waters) -> warm coastal tropical waters (2911ms)\nWhat do manatees eat?\tFlorida?s waters\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Florida?s waters, can click here to get, manatee protection tips) -> Florida?s waters (2904ms)\nWhat do manatees eat?\tCold weather\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Cold weather, can weaken, manatees) -> Cold weather (2880ms)\nWhat do manatees eat?\tuncooked spaghetti\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (Manatee grass, looks like, uncooked spaghetti) -> uncooked spaghetti (2896ms)\nWhat do manatees eat?\tan honorary nomination\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (an honorary nomination, as do, Manatees) -> an honorary nomination (2862ms)\nWhat do manatees eat?\tdiseases and parasites\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (diseases and parasites, can be responsible for, manatee deaths) -> diseases and parasites (2545ms)\nWhat do manatees eat?\ttrainer Christophe Clement\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (trainer Christophe Clement, did win, the Manatee) -> trainer Christophe Clement (2880ms)\nWhat do manatees eat?\twarm , shallow rivers\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, warm , shallow rivers) -> warm , shallow rivers (2783ms)\nWhat do manatees eat?\ta local\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, drink, $x) -> (a manatee, just drink a beer with, a local) -> a local (2836ms)\nWhat do manatees eat?\tsuch changes\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, will need to adapt to, such changes) -> such changes (2904ms)\nWhat do manatees eat?\tfresh or salt water\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, can live in, fresh or salt water) -> fresh or salt water (2871ms)\nWhat do manatees eat?\tManatee\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, drink, $x) -> (Lake Manatee, supplies drinking water to, Manatee) -> Manatee (2845ms)\nWhat do manatees eat?\tboat hulls or propellers\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (boat hulls or propellers, kill, a manatee) -> boat hulls or propellers (2545ms)\nWhat do manatees eat?\tyear\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (year, do, manatees) -> year (2880ms)\nWhat do manatees eat?\tthe canals\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees , caiman and crocodiles, live in, the canals) -> the canals (2888ms)\nWhat do manatees eat?\tstill\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, hunt, $x) -> (the manatee, is hunted, still) -> still (2896ms)\nWhat do manatees eat?\tkids\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (kids, can swim with, dolphins and manatees) -> kids (2845ms)\nWhat do manatees eat?\ta cross\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (all the manatee species, look a little like, a cross) -> a cross (2896ms)\nWhat do manatees eat?\ttime\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (time, can be expected as, the manatee population expands) -> time (2896ms)\nWhat do manatees eat?\ta warm water refuge\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (the manatee, needed, a warm water refuge) -> a warm water refuge (2783ms)\nWhat do manatees eat?\tVehicle owners\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Vehicle owners, can support, manatees) -> Vehicle owners (2836ms)\nWhat do manatees eat?\ta wide variety\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, feed on, $x) -> (The American manatee, feeds opportunistically on, a wide variety) -> a wide variety (2880ms)\nWhat do manatees eat?\tLake Manatee State Park\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Lake Manatee State Park, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Manatee%20State%20Park) -> Lake Manatee State Park (2713ms)\nWhat do manatees eat?\tthe bottom grass\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, feed on, $x) -> (Manatees, was feeding on, the bottom grass) -> the bottom grass (2904ms)\nWhat do manatees eat?\t08/04/09\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (08/04/09, do, manatees) -> 08/04/09 (2871ms)\nWhat do manatees eat?\tpatrons\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (patrons, can watch, 800-pound manatees) -> patrons (2783ms)\nWhat do manatees eat?\tcapture\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (capture, kill, any marine mammal including manatees) -> capture (2911ms)\nWhat do manatees eat?\tjobs\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (jobs, did, Manatee) -> jobs (2896ms)\nWhat do manatees eat?\tthe river\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (The manatees, have lived in, the river) -> the river (2783ms)\nWhat do manatees eat?\tCapitalists\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Capitalists, can farm, manatee) -> Capitalists (2863ms)\nWhat do manatees eat?\tthe surface\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (manatees, need to come to, the surface) -> the surface (2862ms)\nWhat do manatees eat?\tSCUBA gear\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (SCUBA gear, can frighten, the manatees) -> SCUBA gear (2872ms)\nWhat do manatees eat?\tthree areas\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (the manatees, only live in, three areas) -> three areas (2871ms)\nWhat do manatees eat?\tlower than 68 degrees\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (lower than 68 degrees, can be fatal to, manatees) -> lower than 68 degrees (2713ms)\nWhat do manatees eat?\tsalt water\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, have the ability to live in, salt water) -> salt water (2918ms)\nWhat do manatees eat?\tthe year\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (the year, killed more than, 100 endangered manatees) -> the year (2880ms)\nWhat do manatees eat?\tpoor conditions\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, were living in very, poor conditions) -> poor conditions (2836ms)\nWhat do manatees eat?\tsmooth cordgrass\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, feed on, $x) -> (manatees, feed on, smooth cordgrass) -> smooth cordgrass (2904ms)\nWhat do manatees eat?\tadults\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (adults, can see, the manatees) -> adults (2888ms)\nWhat do manatees eat?\tBows and arrows\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (Bows and arrows, were used to kill, manatees and crocodiles) -> Bows and arrows (2888ms)\nWhat do manatees eat?\tany fast-moving boat\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (any fast-moving boat, kill, a manatee) -> any fast-moving boat (2854ms)\nWhat do manatees eat?\tEco-adventures\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Eco-adventures, can be arranged by, Manatee Inn) -> Eco-adventures (2712ms)\nWhat do manatees eat?\tpork\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (Manatee, tastes like, pork) -> pork (2854ms)\nWhat do manatees eat?\tBoaters\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Boaters, can be active participants in, manatee protection) -> Boaters (2880ms)\nWhat do manatees eat?\tmaim\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (maim, even kill, manatees) -> maim (2904ms)\nWhat do manatees eat?\t?hair?\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, have type of, $x) -> (Manatees, also have a type of, ?hair?) -> ?hair? (2845ms)\nWhat do manatees eat?\tNovember and March kids\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (November and March kids, can swim with, the manatees) -> November and March kids (2863ms)\nWhat do manatees eat?\tWATER\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, WATER) -> WATER (2871ms)\nWhat do manatees eat?\tthe water\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (the manatees, living in, the water) -> the water (2888ms)\nWhat do manatees eat?\tVisitors\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Visitors, can see, West Indian manatees) -> Visitors (2911ms)\nWhat do manatees eat?\tlocal natives\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, hunt, $x) -> (Historically Antillean manatees, were hunted by, local natives) -> local natives (2863ms)\nWhat do manatees eat?\tbirds\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (birds, can be seen as well as, turtles and manatees) -> birds (2911ms)\nWhat do manatees eat?\tSuch events\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Such events, can be, fatal to large numbers of manatees) -> Such events (2836ms)\nWhat do manatees eat?\tmore protections\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, more protections) -> more protections (2827ms)\nWhat do manatees eat?\tthe FWC\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (the FWC, recommends doing, your manatee observations) -> the FWC (2911ms)\nWhat do manatees eat?\twaterways\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (waterways, can help, manatees) -> waterways (2911ms)\nWhat do manatees eat?\twater temperatures\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need to be in, water temperatures) -> water temperatures (2827ms)\nWhat do manatees eat?\ta boat survey\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (a boat survey, did reveal a couple of, manatees) -> a boat survey (2871ms)\nWhat do manatees eat?\tSound or shock waves\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Sound or shock waves, can easily deafen, dolphins and manatees) -> Sound or shock waves (2783ms)\nWhat do manatees eat?\tcertain areas\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, certain areas) -> certain areas (2871ms)\nWhat do manatees eat?\testrus\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (estrus, can include as many as, 20 manatees) -> estrus (2783ms)\nWhat do manatees eat?\tthe wild and winter\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Nineteen manatees, live in, the wild and winter) -> the wild and winter (2888ms)\nWhat do manatees eat?\tfamilies\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (families, can see, manatees) -> families (2862ms)\nWhat do manatees eat?\tthe Southwestern Chapter\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (Sarasota/Manatee, would like to thank, the Southwestern Chapter) -> the Southwestern Chapter (2845ms)\nWhat do manatees eat?\ta Wuzzle\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (Manatee Seal, sounds like, a Wuzzle) -> a Wuzzle (2911ms)\nWhat do manatees eat?\ta hippo swim\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (modern manatees, walk like, a hippo swim) -> a hippo swim (2854ms)\nWhat do manatees eat?\tthe Americas\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, the Americas) -> the Americas (2783ms)\nWhat do manatees eat?\tthe docks and fishing piers one\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (the docks and fishing piers one, can spot, manatees) -> the docks and fishing piers one (2896ms)\nWhat do manatees eat?\tan extension\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (?The Manatee EDC, is almost like, an extension) -> an extension (2854ms)\nWhat do manatees eat?\tminutes\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (the manatees, seem like, minutes) -> minutes (2904ms)\nWhat do manatees eat?\tmore information\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (more information, can be found at, MyFWC.com/Manatee) -> more information (2854ms)\nWhat do manatees eat?\twatercraft activities\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (watercraft activities, kill, manatees) -> watercraft activities (2827ms)\nWhat do manatees eat?\tseagrasses\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, feed on, $x) -> (the manatee, feeds on, seagrasses) -> seagrasses (2918ms)\nWhat do manatees eat?\twinter survival\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (manatees, need for, winter survival) -> winter survival (2845ms)\nWhat do manatees eat?\tround-the-clock care\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (The manatee calf, needs, round-the-clock care) -> round-the-clock care (2863ms)\nWhat do manatees eat?\tpre-Columbian societies\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, hunt, $x) -> (evidence shows manatees, were hunted by, pre-Columbian societies) -> pre-Columbian societies (2911ms)\nWhat do manatees eat?\tManatee Palms Youth Services\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Manatee Palms Youth Services, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Manatee%20Palms%20Youth%20Services) -> Manatee Palms Youth Services (2904ms)\nWhat do manatees eat?\tfilm\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (film, can be ordered through, the Manatee Central Library) -> film (2871ms)\nWhat do manatees eat?\tCitrus County visitors\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Citrus County visitors, can swim with, manatees) -> Citrus County visitors (2854ms)\nWhat do manatees eat?\tboat strikes\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (boat strikes, continue to kill, manatees) -> boat strikes (2888ms)\nWhat do manatees eat?\twater\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, water) -> water (2903ms)\nWhat do manatees eat?\tCanoes and kayaks\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Canoes and kayaks, can be rented at, Manatee Springs State Park) -> Canoes and kayaks (2845ms)\nWhat do manatees eat?\tWhose heartburn Disorder\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (Whose heartburn Disorder, Does, manatee Treat) -> Whose heartburn Disorder (2871ms)\nWhat do manatees eat?\tshallow\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, shallow) -> shallow (2854ms)\nWhat do manatees eat?\tcaptivity\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (the oldest Manatee, living happily in, captivity) -> captivity (2904ms)\nWhat do manatees eat?\tpristine habitats\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, pristine habitats) -> pristine habitats (2880ms)\nWhat do manatees eat?\tbroad leafy plants\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (Manatees, seem to like, broad leafy plants) -> broad leafy plants (2854ms)\nWhat do manatees eat?\tNature lovers\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Nature lovers, can swim with, the manatees) -> Nature lovers (2836ms)\nWhat do manatees eat?\tresponse\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (manatee behavior, is needed to assess, response) -> response (2888ms)\nWhat do manatees eat?\tguests\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (guests, can see, manatees and dolphins) -> guests (2827ms)\nWhat do manatees eat?\ta short trunk\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (a manatee?s big nose, is like, a short trunk) -> a short trunk (2918ms)\nWhat do manatees eat?\tmore than 60 varieties\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, feed on, $x) -> (The Florida manatee, feeds on, more than 60 varieties) -> more than 60 varieties (2845ms)\nWhat do manatees eat?\tareas\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, areas) -> areas (2836ms)\nWhat do manatees eat?\ttravelers\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (travelers, can swim with, manatees) -> travelers (2854ms)\nWhat do manatees eat?\trivers\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (West African manatees, live in, rivers) -> rivers (2896ms)\nWhat do manatees eat?\tmore food\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatee, needed, more food) -> more food (2836ms)\nWhat do manatees eat?\texclamation marks\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (manatees, shaped like, exclamation marks) -> exclamation marks (2863ms)\nWhat do manatees eat?\tFlagler?s waterways\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (manatee speed zones, are needed in, Flagler?s waterways) -> Flagler?s waterways (2827ms)\nWhat do manatees eat?\tMarine toxins\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Marine toxins, also can harm, manatees) -> Marine toxins (2888ms)\nWhat do manatees eat?\tvisitors\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (visitors, can see, the endangered West Indian manatee) -> visitors (2918ms)\nWhat do manatees eat?\tCareful boaters\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Careful boaters, can prevent, manatee injuries) -> Careful boaters (2545ms)\nWhat do manatees eat?\titems\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (items, can be used for, manatee research) -> items (2827ms)\nWhat do manatees eat?\tlittle manatee river\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (little manatee river, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Little%20Manatee%20River) -> little manatee river (2713ms)\nWhat do manatees eat?\tViewers\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Viewers, can learn about, manatees) -> Viewers (2545ms)\nWhat do manatees eat?\tthe wild and migrate\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Nineteen manatees, live in, the wild and migrate) -> the wild and migrate (2871ms)\nWhat do manatees eat?\tFlorida residents\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Florida residents, can help, manatees) -> Florida residents (2896ms)\nWhat do manatees eat?\tregulations\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (regulations, can be designed to provide, manatee protection) -> regulations (2836ms)\nWhat do manatees eat?\tIngestion\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (Ingestion, could kill the organisms in, manatees) -> Ingestion (2880ms)\nWhat do manatees eat?\thunt\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (hunt, kill, a manatee) -> hunt (2911ms)\nWhat do manatees eat?\tSchool groups or classes\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (School groups or classes, can adopt, an endangered manatee) -> School groups or classes (2509ms)\nWhat do manatees eat?\tattention\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (attention, can easily hit, the manatee) -> attention (2904ms)\nWhat do manatees eat?\tHigh speed boat propellers\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (High speed boat propellers, kill, manatees) -> High speed boat propellers (2904ms)\nWhat do manatees eat?\tManatee County anglers\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Manatee County anglers, can thank, the Manatee Co. Dept) -> Manatee County anglers (2545ms)\nWhat do manatees eat?\ta boat\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (a boat, kills, a manatee) -> a boat (2911ms)\nWhat do manatees eat?\tboat collisions\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (boat collisions, are killing, more manatees) -> boat collisions (2862ms)\nWhat do manatees eat?\tmore manatees\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (more manatees, are being killed because, there are more manatees) -> more manatees (2918ms)\nWhat do manatees eat?\twarm water\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (manatees, need, warm water) -> warm water (2904ms)\nWhat do manatees eat?\ta number\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, feed on, $x) -> (The African manatee, feeds on, a number) -> a number (2888ms)\nWhat do manatees eat?\tcaptivity year\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, captivity year) -> captivity year (2880ms)\nWhat do manatees eat?\t68 degrees\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (68 degrees, can be dangerous for, manatees) -> 68 degrees (2871ms)\nWhat do manatees eat?\tManatee County Area Transit\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Manatee County Area Transit, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Manatee%20County%20Area%20Transit) -> Manatee County Area Transit (2896ms)\nWhat do manatees eat?\tsmall family groups\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, small family groups) -> small family groups (2896ms)\nWhat do manatees eat?\tManatee county\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Manatee county, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Manatee%20County,%20Florida) -> Manatee county (2836ms)\nWhat do manatees eat?\teither salt water\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Florida manatees, are capable of living in, either salt water) -> either salt water (2845ms)\nWhat do manatees eat?\tundisturbed habitat\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, undisturbed habitat) -> undisturbed habitat (2827ms)\nWhat do manatees eat?\tthe red tide\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (the red tide, killed, more than 150 manatees) -> the red tide (2827ms)\nWhat do manatees eat?\tbrackish or salt water\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, brackish or salt water) -> brackish or salt water (2918ms)\nWhat do manatees eat?\taccidents\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (accidents, even kill, a manatee) -> accidents (2888ms)\nWhat do manatees eat?\tfood\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, hunt, $x) -> (manatees, are hunted for, food) -> food (2904ms)\nWhat do manatees eat?\tFL Visitors\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (FL Visitors, can watch, the 2,000-pound manatees) -> FL Visitors (2836ms)\nWhat do manatees eat?\tthe wild\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, to live in, the wild) -> the wild (2911ms)\nWhat do manatees eat?\tvegetation Q\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (vegetation Q, Do, manatees) -> vegetation Q (2845ms)\nWhat do manatees eat?\tboats\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (boats, killed, 66 manatees) -> boats (2845ms)\nWhat do manatees eat?\tCapt?n Harry\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (Capt?n Harry, wanted to do more for, manatees) -> Capt?n Harry (2545ms)\nWhat do manatees eat?\ttemperatures\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need to be in, temperatures) -> temperatures (2904ms)\nWhat do manatees eat?\tManatee Civic Center\t1.33333333333\tWhat do manatees eat? -> $x: ($x, can, manatee) -> (Manatee Civic Center, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Manatee%20Civic%20Center) -> Manatee Civic Center (2854ms)\nWhat do manatees eat?\tprime habitat\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (prime habitat, killed a lot of, Manatees) -> prime habitat (2880ms)\nWhat do manatees eat?\tprotection\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (manatees, need, protection) -> protection (2871ms)\nWhat do manatees eat?\tmotor boats\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (motor boats, often kill, young manatees) -> motor boats (2545ms)\nWhat do manatees eat?\tred tide\t1.33333333333\tWhat do manatees eat? -> $x: ($x, kill, manatee) -> (red tide, killed, 30 endangered manatees) -> red tide (2836ms)\nWhat do manatees eat?\tfreshwater\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, freshwater) -> freshwater (2911ms)\nWhat do manatees eat?\tA Bradenton police officer\t1.33333333333\tWhat do manatees eat? -> $x: ($x, do, manatee) -> (A Bradenton police officer, did, Manatee County staff members) -> A Bradenton police officer (2880ms)\nWhat do manatees eat?\tfilet mignon\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, like, $x) -> (Manatee, tastes just like, filet mignon) -> filet mignon (2904ms)\nWhat do manatees eat?\tthe winter\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, the winter) -> the winter (2845ms)\nWhat do manatees eat?\tquiet coastal areas\t1.33333333333\tWhat do manatees eat? -> $x: (manatee, live in, $x) -> (West African manatees, live in, quiet coastal areas) -> quiet coastal areas (2871ms)\nWhat do manatees eat?\tCanker\t1.222222222219\tWhat do manatees eat? -> $x: ($x, discover, manatee) -> (Canker, is discovered again in, Manatee County) -> Canker (2918ms)\nWhat do manatees eat?\tNational builders\t1.222222222219\tWhat do manatees eat? -> $x: ($x, discover, manatee) -> (National builders, have discovered, Sarasota and Manatee) -> National builders (2926ms)\nWhat do manatees eat?\tthe Gulf\t1.222222222219\tWhat do manatees eat? -> $x: ($x, be habitat of, manatee) -> (the Gulf, are a favorite habitat of, manatees) -> the Gulf (2918ms)\nWhat do manatees eat?\tthe need\t1.222222222219\tWhat do manatees eat? -> $x: (manatee, be example of, $x) -> ('s manatee, is a good example of, the need) -> the need (2925ms)\nWhat do manatees eat?\tpassive observation\t1.222222222219\tWhat do manatees eat? -> $x: (manatee, believe in, $x) -> (the Manatee Club, believes in, passive observation) -> passive observation (2918ms)\nWhat do manatees eat?\tCitrus canker\t1.222222222219\tWhat do manatees eat? -> $x: ($x, discover, manatee) -> (Citrus canker, was discovered again in, Manatee County) -> Citrus canker (2918ms)\nWhat do manatees eat?\tThe dolphin\t1.222222222218\tWhat do manatees eat? -> $x: ($x, eat, manatee) -> (The dolphin, ate, the manatee) -> The dolphin (2926ms)\nWhat do manatees eat?\tflour\t1.222222222218\tWhat do manatees eat? -> $x: ($x, eat, manatee) -> (flour, also ate, manatee , turtle , lobster and other fish) -> flour (2926ms)\nWhat do manatees eat?\tlamp oil\t0.7777777777739999\tWhat do manatees eat? -> $x: (manatee, be use for, $x) -> (Manatee fat, was used for, lamp oil) -> lamp oil (2925ms)\nWhat do manatees eat?\tinsect pests\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The mantis, will eat a variety of, insect pests) -> insect pests (2946ms)\nWhat do manatees eat?\tthe bad bugs\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The praying mantis, will eat, the bad bugs) -> the bad bugs (2951ms)\nWhat do manatees eat?\tthe living grasshopper\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (the mantis, ate away at, the living grasshopper) -> the living grasshopper (2946ms)\nWhat do manatees eat?\t07 crickets\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Any wishing mantis, could try to eat, 07 crickets) -> 07 crickets (2939ms)\nWhat do manatees eat?\taphids\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (the praying mantis, will eat, aphids) -> aphids (2932ms)\nWhat do manatees eat?\tlarger pest insects\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The adult mantis, will eat, larger pest insects) -> larger pest insects (2939ms)\nWhat do manatees eat?\ta couple\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (?My pet mantis, had n?t eaten in, a couple) -> a couple (2939ms)\nWhat do manatees eat?\tHydei fruit flies\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (the mantis, will eat, Hydei fruit flies) -> Hydei fruit flies (2956ms)\nWhat do manatees eat?\ta leaf\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (A praying mantis, eats through, a leaf) -> a leaf (2946ms)\nWhat do manatees eat?\tfour rover ants\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (this praying mantis, ate, four rover ants) -> four rover ants (2939ms)\nWhat do manatees eat?\tlizards\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (mantis, will eat, lizards) -> lizards (2933ms)\nWhat do manatees eat?\tthe poisonous bugs\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (the mantises, ate, the poisonous bugs) -> the poisonous bugs (2939ms)\nWhat do manatees eat?\tthe bee\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (the mantis, eating, the bee) -> the bee (2951ms)\nWhat do manatees eat?\tflies\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The praying mantis, will eat, flies) -> flies (2946ms)\nWhat do manatees eat?\tthe caterpillars\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The praying mantises, eat, the caterpillars) -> the caterpillars (2939ms)\nWhat do manatees eat?\ta variety of insect pests\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The mantis, will eat, a variety of insect pests) -> a variety of insect pests (2946ms)\nWhat do manatees eat?\t7 flies\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (a mantis, can eat as many as, 7 flies) -> 7 flies (2946ms)\nWhat do manatees eat?\tinsects\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (the mantises, eat, insects) -> insects (2956ms)\nWhat do manatees eat?\tone another\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Mantises, will also eat, one another) -> one another (2956ms)\nWhat do manatees eat?\tthe spider\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The mantis, ate the the entire body of, the spider) -> the spider (2933ms)\nWhat do manatees eat?\tthe male mantis\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (February 10 female mantis, eats, the male mantis) -> the male mantis (2932ms)\nWhat do manatees eat?\tthe males head\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (the female praying mantis, eats, the males head) -> the males head (2933ms)\nWhat do manatees eat?\thouse flies\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (mantis, will eat, house flies) -> house flies (2956ms)\nWhat do manatees eat?\tthe bait\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (the mantis, comes to eat, the bait) -> the bait (2946ms)\nWhat do manatees eat?\ta wasp\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Praying Mantis, eating, a wasp) -> a wasp (2933ms)\nWhat do manatees eat?\tHummingbird\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Mantis, eats, Hummingbird) -> Hummingbird (2933ms)\nWhat do manatees eat?\ta siriss Thanks\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Eye4Photo Mantis, eats, a siriss Thanks) -> a siriss Thanks (2957ms)\nWhat do manatees eat?\tslow-moving insects\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The praying mantis, eats, slow-moving insects) -> slow-moving insects (2951ms)\nWhat do manatees eat?\tcrickets\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (mantises, eat, crickets) -> crickets (2933ms)\nWhat do manatees eat?\tthe male\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The female praying mantis, eats, the male) -> the male (2951ms)\nWhat do manatees eat?\tCarpenter ants\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Mantis, eat, Carpenter ants) -> Carpenter ants (2951ms)\nWhat do manatees eat?\ta mouse\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (a praying mantis, eat, a mouse) -> a mouse (2939ms)\nWhat do manatees eat?\tthe ants\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Praying Mantis?s, will eat, the ants) -> the ants (2957ms)\nWhat do manatees eat?\ta grasshopper\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (A mantis, was eating, a grasshopper) -> a grasshopper (2939ms)\nWhat do manatees eat?\tthe heads of their mates\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Female praying mantises, eat, the heads of their mates) -> the heads of their mates (2939ms)\nWhat do manatees eat?\tbees\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (sure mantises, eat, bees) -> bees (2951ms)\nWhat do manatees eat?\ta wind scorpion\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (a preying mantis, was being eaten by, a wind scorpion) -> a wind scorpion (2939ms)\nWhat do manatees eat?\tthe insect\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (The mantis, always starts eating, the insect) -> the insect (2957ms)\nWhat do manatees eat?\t25 flies\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (? One adult mantis, can eat up to, 25 flies) -> 25 flies (2933ms)\nWhat do manatees eat?\ta siriss\t0.555555555547\tWhat do manatees eat? -> $x: (mantis, eat, $x) -> (Mantis, eats, a siriss) -> a siriss (2951ms)\nWhat do manatees eat?\tThe upgrades\t-2.000177801164682E-12\tWhat do manatees eat? -> $x: ($x, be part of, manatee) -> (The upgrades, are a part of, Port Manatee?s) -> The upgrades (2961ms)\nWhat do manatees eat?\tBradenton and Palmetto\t-2.000177801164682E-12\tWhat do manatees eat? -> $x: ($x, be part of, manatee) -> (Bradenton and Palmetto, are part of, Manatee County) -> Bradenton and Palmetto (2957ms)\nWhat do manatees eat?\tthe MPS\t-2.000177801164682E-12\tWhat do manatees eat? -> $x: ($x, be part of, manatee) -> (the MPS, is part of, the Manatee Pass Gates project) -> the MPS (2961ms)\nWhat do manatees eat?\tan 18' X 10' garden\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (The Mantis, does just fine for, an 18' X 10' garden) -> an 18' X 10' garden (2971ms)\nWhat do manatees eat?\t8-10\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (The Mantis, does require, 8-10) -> 8-10 (2961ms)\nWhat do manatees eat?\tany gigs\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, did n?t play, any gigs) -> any gigs (2962ms)\nWhat do manatees eat?\tGooder\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, Do, Gooder) -> Gooder (2971ms)\nWhat do manatees eat?\tany trouble\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Little mantis, did n?t want, any trouble) -> any trouble (2971ms)\nWhat do manatees eat?\tthe job\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, did, the job) -> the job (2977ms)\nWhat do manatees eat?\tacupuncture\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, is doing, acupuncture) -> acupuncture (2962ms)\nWhat do manatees eat?\ta variety\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (the Mantis Electric Tiller, was made to do, a variety) -> a variety (2966ms)\nWhat do manatees eat?\tthe rest\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (praying mantises, do, the rest) -> the rest (2971ms)\nWhat do manatees eat?\ta grappler\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (mantis, do some training with, a grappler) -> a grappler (2962ms)\nWhat do manatees eat?\tMetal Gear Solid\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Psycho Mantis, did, Metal Gear Solid) -> Metal Gear Solid (2966ms)\nWhat do manatees eat?\tbetter\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (many class mantes, hope to do even, better) -> better (2961ms)\nWhat do manatees eat?\tCVS\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, does n?t have the ability to connect with, CVS) -> CVS (2966ms)\nWhat do manatees eat?\tthe readers polls\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, have done well in, the readers polls) -> the readers polls (2977ms)\nWhat do manatees eat?\twonders\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (Psycho Mantis, did, wonders) -> wonders (2966ms)\nWhat do manatees eat?\tthe insect housing containers\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (mantis insects, do very well in, the insect housing containers) -> the insect housing containers (2966ms)\nWhat do manatees eat?\t8-10 pulls\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (The Mantis, does require, 8-10 pulls) -> 8-10 pulls (2966ms)\nWhat do manatees eat?\tthe insect control\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (praying mantis, do, the insect control) -> the insect control (2966ms)\nWhat do manatees eat?\tan engine\t-0.111111111113\tWhat do manatees eat? -> $x: (mantis, do, $x) -> (the Mantis Swift Split, does n?t even have, an engine) -> an engine (2966ms)\nWhat do manatees eat?\ta sea lion\t-0.1111111111130001\tWhat do manatees eat? -> $x: ($x, look like, manatee) -> (a sea lion, looks a lot more like, a manatee) -> a sea lion (2977ms)\nWhat do manatees eat?\tSea lions\t-0.1111111111130001\tWhat do manatees eat? -> $x: ($x, look like, manatee) -> (Sea lions, look like, large manatees) -> Sea lions (2977ms)\nWhat do manatees eat?\tthe bushes\t-0.1111111111130001\tWhat do manatees eat? -> $x: ($x, look like, manatee) -> (the bushes, look less like, manatees) -> the bushes (2977ms)\nWhat do manatees eat?\tDead Leaf Mantis\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (Dead Leaf Mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dead%20leaf%20mantis) -> Dead Leaf Mantis (2977ms)\nWhat do manatees eat?\tnew notifications\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (new notifications, can be used by, the Mantis core) -> new notifications (3008ms)\nWhat do manatees eat?\tthe leaves\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (the leaves, so did, this full grown praying mantis) -> the leaves (3015ms)\nWhat do manatees eat?\tGlad my aquarium\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (Glad my aquarium, does n?t have, any stowaway mantis shrimp) -> Glad my aquarium (3008ms)\nWhat do manatees eat?\tMichel\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (Michel, does, his mantis-in-the-bushes stakeout Chaz exclaims) -> Michel (3020ms)\nWhat do manatees eat?\tMantisConnect\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (MantisConnect, can be downloaded from, the MantisConnect site) -> MantisConnect (2981ms)\nWhat do manatees eat?\tSquilla mantis\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (Squilla mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Squilla%20mantis) -> Squilla mantis (3019ms)\nWhat do manatees eat?\tThe activity\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (The activity, does n?t require, a mantis) -> The activity (3020ms)\nWhat do manatees eat?\tA cleaner shrimp\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (A cleaner shrimp, done by, a mantis) -> A cleaner shrimp (2989ms)\nWhat do manatees eat?\ta stick\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (the praying mantis, looks like, a stick) -> a stick (3006ms)\nWhat do manatees eat?\ta hack\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (MantisZero ? Fri Jun 24 , 2011 10:36, am Looks like, a hack) -> a hack (2985ms)\nWhat do manatees eat?\ta flower\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (The flower mantis, looks more like, a flower) -> a flower (3018ms)\nWhat do manatees eat?\tsmaller food\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, need, $x) -> (smaller mantis, need, smaller food) -> smaller food (3019ms)\nWhat do manatees eat?\tmontauk mantis\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (montauk mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Montauk%20Mantis) -> montauk mantis (3021ms)\nWhat do manatees eat?\tthe locust\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, hunt, $x) -> (the mantis, hunts, the locust) -> the locust (3021ms)\nWhat do manatees eat?\tthe other bosses\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (trigger reveling Mantises, face just like, the other bosses) -> the other bosses (3011ms)\nWhat do manatees eat?\ta few around\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (a few around, did n?t support, my CVS?>Mantis combination) -> a few around (3003ms)\nWhat do manatees eat?\tcaterpillars and pollinators\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, feed on, $x) -> (the praying mantis, feeds on, caterpillars and pollinators) -> caterpillars and pollinators (3006ms)\nWhat do manatees eat?\tNorthern Praying Mantis\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (Northern Praying Mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Northern%20Praying%20Mantis%20(martial%20art)) -> Northern Praying Mantis (3017ms)\nWhat do manatees eat?\tpraise\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, hunt, $x) -> (Mantises, hunt only to, praise) -> praise (3003ms)\nWhat do manatees eat?\tmonsters\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (The mantis prawns, may look like, monsters) -> monsters (3020ms)\nWhat do manatees eat?\ta solid list\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (MantisZero ? Wed Jun 01 , 2011 2:08 pm, Looks like, a solid list) -> a solid list (3018ms)\nWhat do manatees eat?\ta mess\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (a mess, Am seriously done now, ALBINO PRAYING MANTIS) -> a mess (3006ms)\nWhat do manatees eat?\tAphids\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, feed on, $x) -> (MANTIS, feeds on, Aphids) -> Aphids (3018ms)\nWhat do manatees eat?\tThe clicking noise\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (The clicking noise, can indicate, a pistol or mantis shrimp) -> The clicking noise (3021ms)\nWhat do manatees eat?\ta heart\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (The praying mantis, may have a head shaped like, a heart) -> a heart (3020ms)\nWhat do manatees eat?\tsmall thin arms\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (small thin arms, does, a praying mantis) -> small thin arms (2993ms)\nWhat do manatees eat?\tthe Mantis Tiller\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (the Mantis Tiller, can represent up to, 10 deep.So Mantis digger) -> the Mantis Tiller (3018ms)\nWhat do manatees eat?\ta new one\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (My mantis, looks like, a new one) -> a new one (3006ms)\nWhat do manatees eat?\tpokemon\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (a praying mantis and i, started liking, pokemon) -> pokemon (3015ms)\nWhat do manatees eat?\ta pirate\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (a Mantis Samurai, looked more like, a pirate) -> a pirate (2989ms)\nWhat do manatees eat?\tI?ve\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, kill, mantis) -> (I?ve, killed, the giant Mantis Ant) -> I?ve (3017ms)\nWhat do manatees eat?\tlive insects\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, feed on, $x) -> (The mantis, feeds on, live insects) -> live insects (3016ms)\nWhat do manatees eat?\tMANTES LA JOLIE\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (MANTES LA JOLIE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Mantes%2Dla%2DJolie) -> MANTES LA JOLIE (3013ms)\nWhat do manatees eat?\tthe band\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (the band, as did, a stray praying mantis) -> the band (3018ms)\nWhat do manatees eat?\tmonkey hand\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (Mantis hook, is a lot like, monkey hand) -> monkey hand (2989ms)\nWhat do manatees eat?\tchildren\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (children, can take a spin on, a shiny green mantis) -> children (3019ms)\nWhat do manatees eat?\tThe 3rd combo\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (The 3rd combo, can only be done on, the Mantis style) -> The 3rd combo (3021ms)\nWhat do manatees eat?\tMore info\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (More info, can be found in, Mantis report) -> More info (2989ms)\nWhat do manatees eat?\tthe CBS\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, kill, mantis) -> (the CBS, kill, the Mantis) -> the CBS (3013ms)\nWhat do manatees eat?\thigh level Tai Qi players\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (high level Tai Qi players, can take up, mantis) -> high level Tai Qi players (2985ms)\nWhat do manatees eat?\ttoo much trouble\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (too much trouble, did, Screaming Mantis) -> too much trouble (3019ms)\nWhat do manatees eat?\tCure\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (Cure, Do, Shaolin Praying Mantis movement) -> Cure (2997ms)\nWhat do manatees eat?\tfixes\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (fixes, can see in, the Mantis) -> fixes (3021ms)\nWhat do manatees eat?\tthe lady i\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (the lady i, did, the praying mantis) -> the lady i (3017ms)\nWhat do manatees eat?\tBeetle\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, feed on, $x) -> (MANTIS, feeds on, Beetle) -> Beetle (3008ms)\nWhat do manatees eat?\tthe KODAN Claws\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (the KODAN Claws, can be posed in, a rather mantis-like way) -> the KODAN Claws (3011ms)\nWhat do manatees eat?\tsmall insects\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, feed on, $x) -> (mantis, begin feeding on, small insects) -> small insects (3019ms)\nWhat do manatees eat?\tthe chain\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (the chain, did, Screaming Mantis) -> the chain (3006ms)\nWhat do manatees eat?\tnight\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (night, does, the Praying mantis) -> night (2997ms)\nWhat do manatees eat?\tGrasshopper\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, feed on, $x) -> (MANTIS, feeds on, Grasshopper) -> Grasshopper (2993ms)\nWhat do manatees eat?\ta toy\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (the little red Mantis Tiller/Cultivator, looked like, a toy) -> a toy (3019ms)\nWhat do manatees eat?\tstorybook friends\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (Frog and mantis, look like, storybook friends) -> storybook friends (3013ms)\nWhat do manatees eat?\tcover art\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, do, mantis) -> (cover art, will be done by, Melanie Laetitia Mantis) -> cover art (2977ms)\nWhat do manatees eat?\tTRAILER compilation\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, need, $x) -> (The Mantis Topic, Need help with, TRAILER compilation) -> TRAILER compilation (3008ms)\nWhat do manatees eat?\tthe coastal regions\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, live in, $x) -> (Special Mantis shrimp, mainly live in, the coastal regions) -> the coastal regions (3020ms)\nWhat do manatees eat?\tthe user\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (the user, can be interacting with, MantisBT user interface) -> the user (3015ms)\nWhat do manatees eat?\tthe smallest\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, feed on, $x) -> (the baby Mantis, should be fed on, the smallest) -> the smallest (3008ms)\nWhat do manatees eat?\texisting CICS screens\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (existing CICS screens, can be modified using, MANTIS) -> existing CICS screens (3000ms)\nWhat do manatees eat?\ta really handy guy\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (MANTIS, sounds like, a really handy guy) -> a really handy guy (3006ms)\nWhat do manatees eat?\twithered leaves\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (The mantises, looked like, withered leaves) -> withered leaves (3017ms)\nWhat do manatees eat?\tthe King\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (the Mantis, is like, the King) -> the King (2981ms)\nWhat do manatees eat?\tShrimp\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (Shrimp, can be easily confused with, Mantis Shrimp) -> Shrimp (3013ms)\nWhat do manatees eat?\ta thistle\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, like, $x) -> (this mantis, looks like, a thistle) -> a thistle (3018ms)\nWhat do manatees eat?\tChinese mantis\t-0.222222222222\tWhat do manatees eat? -> $x: ($x, can, mantis) -> (Chinese mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chinese%20mantis) -> Chinese mantis (2989ms)\nWhat do manatees eat?\ta good vocalist\t-0.222222222222\tWhat do manatees eat? -> $x: (mantis, need, $x) -> (Mantis, need right now is, a good vocalist) -> a good vocalist (3011ms)\nWhat is cribbage?\tSir John Suckling\t0.111111111111\tWhat is cribbage? -> $x: ($x, invent, cribbage) -> (Sir John Suckling, invented, cribbage) -> Sir John Suckling (1089ms)\nWhat is cribbage?\tpolar bears\t0.111111111111\tWhat is cribbage? -> $x: ($x, invent, cribbage) -> (polar bears, invented, cribbage) -> polar bears (1090ms)\nWhat is cribbage?\tthe 15\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (the 15, is in, standard Cribbage) -> the 15 (1125ms)\nWhat is cribbage?\tJanet\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Janet, placed fifth in, the Alaska State Cribbage Tournament) -> Janet (1126ms)\nWhat is cribbage?\tPlayers\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Players, score as in, two handed cribbage) -> Players (1125ms)\nWhat is cribbage?\tto score\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (to score, runs in, cribbage) -> to score (1125ms)\nWhat is cribbage?\teach row and column\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (each row and column, is done as in, normal cribbage) -> each row and column (1089ms)\nWhat is cribbage?\tDustin Pedroia\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Dustin Pedroia, engage in, cribbage) -> Dustin Pedroia (1125ms)\nWhat is cribbage?\tCards\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Cards, are used in, Cribbage) -> Cards (1090ms)\nWhat is cribbage?\tMr. Evans\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Mr. Evans, spent the evening in, reading and playing cribbage) -> Mr. Evans (1089ms)\nWhat is cribbage?\tAces\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Aces, are always low in, cribbage) -> Aces (1090ms)\nWhat is cribbage?\tScoring aces\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Scoring aces, Is the ace high in, cribbage) -> Scoring aces (1090ms)\nWhat is cribbage?\tJan . Don Rinn\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Jan . Don Rinn, placed second in, the Zone Cribbage-singles) -> Jan . Don Rinn (1125ms)\nWhat is cribbage?\tSivir\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Sivir, has little interest in, the ''cribbage sheets) -> Sivir (1125ms)\nWhat is cribbage?\tBook publishing\t-0.0\tWhat is cribbage? -> $x: ($x, in, cribbage) -> (Book publishing, is an industry in, a cribbage game?and) -> Book publishing (1126ms)\nWhat is cribbage?\tsolitaire\t-0.111111111111\tWhat is cribbage? -> $x: ($x, describe, cribbage) -> (solitaire, describe this version of, Cribbage Squares) -> solitaire (1162ms)\nWhat is cribbage?\tCard Game Heaven\t-0.111111111111\tWhat is cribbage? -> $x: ($x, describe, cribbage) -> (Card Game Heaven, also describes, Five-Card Cribbage) -> Card Game Heaven (1163ms)\nWhat is cribbage?\tthree players\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (triple-tracked all-wood cribbage set, is for, three players) -> three players (1391ms)\nWhat is cribbage?\tfree or\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (cribbage, can be played for, free or) -> free or (1330ms)\nWhat is cribbage?\tbeginners\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Five-card cribbage, is a good starting point for, beginners) -> beginners (1365ms)\nWhat is cribbage?\ttrade purposes\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (this Cribbage Board, were produced primarily for, trade purposes) -> trade purposes (1517ms)\nWhat is cribbage?\t2 decks of cards\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Simple Cribbage Box, is hinged to a box for, 2 decks of cards) -> 2 decks of cards (1162ms)\nWhat is cribbage?\tWindows\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Battlefield Cribbage, is available for, Windows) -> Windows (1516ms)\nWhat is cribbage?\thundreds of years\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage boards, have been used for, hundreds of years) -> hundreds of years (1330ms)\nWhat is cribbage?\tart lovers\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Snake shape cribbage board, is an ideal choice for, art lovers) -> art lovers (1365ms)\nWhat is cribbage?\thundreds\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (User login Cribbage boards, have been used for, hundreds) -> hundreds (1391ms)\nWhat is cribbage?\tkeeping score\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (The cribbage board, is simply a device for, keeping score) -> keeping score (1330ms)\nWhat is cribbage?\ttwo players\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Six Card Cribbage, is basically a game for, two players) -> two players (1391ms)\nWhat is cribbage?\tscoring\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (A cribbage board, is useful for, scoring) -> scoring (1391ms)\nWhat is cribbage?\ttwo to four players\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage Games Cribbage, is a card game for, two to four players) -> two to four players (1516ms)\nWhat is cribbage?\tthe first time\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (unique cribbage board, is being offered for, the first time) -> the first time (1330ms)\nWhat is cribbage?\tthe gamer\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage Boards, are perfect for, the gamer) -> the gamer (1391ms)\nWhat is cribbage?\tsale\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (All Cribbage boards, are for, sale) -> sale (1365ms)\nWhat is cribbage?\tfive years\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (cribbage boards, has been open seven days a week for, five years) -> five years (1365ms)\nWhat is cribbage?\tadults and children\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage, is good for, adults and children) -> adults and children (1162ms)\nWhat is cribbage?\tthe pre-iPhone era\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (admin Cribbage, was the perfect game for, the pre-iPhone era) -> the pre-iPhone era (1162ms)\nWhat is cribbage?\tthe older set\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (cribbage, can be fun for, the older set) -> the older set (1391ms)\nWhat is cribbage?\tMac OS X and Windows\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Battlefield Cribbage, is available for, Mac OS X and Windows) -> Mac OS X and Windows (1162ms)\nWhat is cribbage?\ta study\t-0.111111111112\tWhat is cribbage? -> $x: ($x, do, cribbage) -> (a study, had been done regarding, cribbage hands) -> a study (1517ms)\nWhat is cribbage?\t400 years\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage, has been played for over, 400 years) -> 400 years (1365ms)\nWhat is cribbage?\t10 years\t-0.111111111112\tWhat is cribbage? -> $x: (cribbage, be for, $x) -> (the biggest cribbage sites, has been around for over, 10 years) -> 10 years (1391ms)\nWhat is cribbage?\tUSA\t-0.111111111112\tWhat is cribbage? -> $x: ($x, produce, cribbage) -> (USA, produce, high quality inlaid cribbage boards) -> USA (1330ms)\nWhat is cribbage?\tpagat.com\t-0.222222222222\tWhat is cribbage? -> $x: ($x, found, cribbage) -> (pagat.com, can be found on, the Cribbage Variations page) -> pagat.com (1516ms)\nWhat is cribbage?\tGreen Bay Press Gazette Helped\t-0.222222222222\tWhat is cribbage? -> $x: ($x, found, cribbage) -> (Green Bay Press Gazette Helped, found, MGM Cribbage Tournament) -> Green Bay Press Gazette Helped (1516ms)\nWhat is cribbage?\tthe '29'\t-0.222222222222\tWhat is cribbage? -> $x: ($x, refer, cribbage) -> (the '29', refers to, the perfect cribbage hand) -> the '29' (1516ms)\nWhat is cribbage?\tDouble Cribbage\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Double Cribbage, is, four player cribbage) -> Double Cribbage (1780ms)\nWhat is cribbage?\ttwo men\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (two men, were playing at, cribbage) -> two men (1782ms)\nWhat is cribbage?\tlearning\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (learning, is, our cribbage books) -> learning (1782ms)\nWhat is cribbage?\ttwo\t-0.222222222223\tWhat is cribbage? -> $x: ($x, can, cribbage) -> (two, can use, a normal cribbage board) -> two (1782ms)\nWhat is cribbage?\tthe 15-ball\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the 15-ball, is, a cribbage) -> the 15-ball (1776ms)\nWhat is cribbage?\tDeLynn\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (DeLynn, was hosting, his cribbage tournament) -> DeLynn (1779ms)\nWhat is cribbage?\tEngland\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (England, is the birthplace of, cribbage) -> England (1782ms)\nWhat is cribbage?\tthe questioner\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the questioner, is already playing, cribbage) -> the questioner (1777ms)\nWhat is cribbage?\tthe Red Sox record\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be to, cribbage) -> (the Red Sox record, be attributed to, Pedroia?s cribbage games) -> the Red Sox record (1776ms)\nWhat is cribbage?\tZach and Jonathan\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Zach and Jonathan, were essentially, cribbage machines) -> Zach and Jonathan (1773ms)\nWhat is cribbage?\tThe iPhone\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The iPhone, is well served with, free cribbage games) -> The iPhone (1777ms)\nWhat is cribbage?\tCribbage\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Cribbage, is, a new cribbage game) -> Cribbage (1782ms)\nWhat is cribbage?\tAmend Games\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Amend Games, was introduced after, a cribbage game) -> Amend Games (1716ms)\nWhat is cribbage?\tno hard evidence\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (no hard evidence, was the inventor of, Cribbage) -> no hard evidence (1773ms)\nWhat is cribbage?\tshoeboxes\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (shoeboxes, here are, the cribbage boards) -> shoeboxes (1545ms)\nWhat is cribbage?\tHal Mueller\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Hal Mueller, is, a strong Cribbage program) -> Hal Mueller (1773ms)\nWhat is cribbage?\tthe scores\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the scores, are counted on, a cribbage board) -> the scores (1773ms)\nWhat is cribbage?\tInterStellar MacCribbage\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (InterStellar MacCribbage, is, a shareware Cribbage program) -> InterStellar MacCribbage (1747ms)\nWhat is cribbage?\tEvery Saturday\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Every Saturday, is, Cribbage) -> Every Saturday (1782ms)\nWhat is cribbage?\tcountry\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (country, was, cribbage player) -> country (1782ms)\nWhat is cribbage?\tJennifer\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Jennifer, was playing, cribbage) -> Jennifer (1747ms)\nWhat is cribbage?\tThe Past Playing Cards\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The Past Playing Cards, are included with, this Cribbage set) -> The Past Playing Cards (1579ms)\nWhat is cribbage?\tThe Captain\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The Captain, was playing, cribbage) -> The Captain (1782ms)\nWhat is cribbage?\tThe Cribbage Tournament\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be to, cribbage) -> (The Cribbage Tournament, is open to, all area cribbage players) -> The Cribbage Tournament (1747ms)\nWhat is cribbage?\tCribbage Corner\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Cribbage Corner, is one of, the biggest cribbage sites) -> Cribbage Corner (1773ms)\nWhat is cribbage?\tThe building\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The building, is characterised by, cribbage walls) -> The building (1773ms)\nWhat is cribbage?\tnew\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (new, is, Cribbage Vox) -> new (1773ms)\nWhat is cribbage?\tMorneau\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Morneau, is a whiz at, cribbage and solitaire) -> Morneau (1579ms)\nWhat is cribbage?\tParson?s poke\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Parson?s poke, is, another cribbage term) -> Parson?s poke (1747ms)\nWhat is cribbage?\tthe time\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the time, was spent playing, cribbage) -> the time (1782ms)\nWhat is cribbage?\tthe eBook version\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the eBook version, is, Cribbage Reinvented) -> the eBook version (1780ms)\nWhat is cribbage?\tOne game I?d\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (One game I?d, ever played was, cribbage) -> One game I?d (1779ms)\nWhat is cribbage?\tSister Sue\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Sister Sue, is at, her cribbage tournament) -> Sister Sue (1579ms)\nWhat is cribbage?\tThe 15 ball\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The 15 ball, is, a cribbage) -> The 15 ball (1779ms)\nWhat is cribbage?\tHALSCRIB\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (HALSCRIB, is certainly, THE killer cribbage program) -> HALSCRIB (1579ms)\nWhat is cribbage?\tThe play\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The play, is the same as, traditional cribbage) -> The play (1780ms)\nWhat is cribbage?\tThe paperback version\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The paperback version, is titled, Cribbage Simplified) -> The paperback version (1773ms)\nWhat is cribbage?\tStar Wars fame\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Star Wars fame, may be playing a game of, cribbage) -> Star Wars fame (1780ms)\nWhat is cribbage?\tOver-pegging your score\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Over-pegging your score, is another form of, cribbage cheating) -> Over-pegging your score (1544ms)\nWhat is cribbage?\tDamage\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Damage, is recorded with, brass cribbage markers) -> Damage (1773ms)\nWhat is cribbage?\tthe either reserve\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be to, cribbage) -> (the either reserve, may be played to, the Cribbage Square) -> the either reserve (1544ms)\nWhat is cribbage?\tcaptivates\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (captivates, be curbing, cribbage) -> captivates (1747ms)\nWhat is cribbage?\tAugust Cribbage\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (August Cribbage, is, the perfect cribbage hand) -> August Cribbage (1773ms)\nWhat is cribbage?\tThe most popular activity\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The most popular activity, was, cribbage) -> The most popular activity (1777ms)\nWhat is cribbage?\tThe next game viewer\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The next game viewer, will be for, cribbage) -> The next game viewer (1773ms)\nWhat is cribbage?\ta family\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (a family, is, Cribbage Death Match) -> a family (1716ms)\nWhat is cribbage?\tMarch 2001\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be to, cribbage) -> (March 2001, has been applied to, original CRIBBAGE.EXE) -> March 2001 (1545ms)\nWhat is cribbage?\tThe game\t-0.222222222223\tWhat is cribbage? -> $x: ($x, can, cribbage) -> (The game, can then be scored on, a Cribbage board) -> The game (1747ms)\nWhat is cribbage?\tThe ACC\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (The ACC, is the home of, great cribbage) -> The ACC (1780ms)\nWhat is cribbage?\tScoring\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Scoring, is virtually the same as, Cribbage) -> Scoring (1773ms)\nWhat is cribbage?\tfree accessories\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (free accessories, are provided with, the cribbage board) -> free accessories (1782ms)\nWhat is cribbage?\tRoyal Cribbage\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Royal Cribbage, is, a freeware Cribbage program) -> Royal Cribbage (1780ms)\nWhat is cribbage?\tguests\t-0.222222222223\tWhat is cribbage? -> $x: ($x, can, cribbage) -> (guests, can play, chess or cribbage) -> guests (1780ms)\nWhat is cribbage?\tthe club rooms ?someone\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the club rooms ?someone, was always at, the cribbage boards) -> the club rooms ?someone (1782ms)\nWhat is cribbage?\ta charter member\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (a charter member, has been playing, cribbage) -> a charter member (1747ms)\nWhat is cribbage?\tthe game\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the game, is to earn, 5 cribbages) -> the game (1777ms)\nWhat is cribbage?\tthe Oxford English Dictionary\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the Oxford English Dictionary, may be a reference to, cribbage) -> the Oxford English Dictionary (1776ms)\nWhat is cribbage?\tan elderly couple\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (an elderly couple, were playing, cribbage) -> an elderly couple (1782ms)\nWhat is cribbage?\tEach point\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Each point, is called, a cribbage) -> Each point (1544ms)\nWhat is cribbage?\tThursday\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Thursday, was, table bowling and cribbage) -> Thursday (1544ms)\nWhat is cribbage?\tSubject property\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Subject property, is located at, 3965 Cribbage Lane) -> Subject property (1776ms)\nWhat is cribbage?\tBill@PlayCribbage .com Website\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Bill@PlayCribbage .com Website, is, PlayCribbage) -> Bill@PlayCribbage .com Website (1780ms)\nWhat is cribbage?\tForum\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Forum, Is, cribbage dying) -> Forum (1780ms)\nWhat is cribbage?\tthe 4th Earl\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the 4th Earl, was busy playing a game of, cribbage) -> the 4th Earl (1782ms)\nWhat is cribbage?\tI?ll\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (I?ll, be up, all night playing cribbage) -> I?ll (1777ms)\nWhat is cribbage?\tUser login\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (User login, is, Five Hundred Cribbage) -> User login (1776ms)\nWhat is cribbage?\tSt . Mark\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (St . Mark, was also, a avid cribbage player) -> St . Mark (1776ms)\nWhat is cribbage?\tCarte Primus\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Carte Primus, is, a cool cribbage game) -> Carte Primus (1780ms)\nWhat is cribbage?\tAdam\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be to, cribbage) -> (Adam, is dying to play, cribbage) -> Adam (1716ms)\nWhat is cribbage?\tScores\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (Scores, are as, standard Cribbage) -> Scores (1782ms)\nWhat is cribbage?\tthe restaurant area\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be be, cribbage) -> (the restaurant area, is also available to, our cribbage players) -> the restaurant area (1777ms)\nWhat is cribbage?\tClub director Tracy Yott\t-0.222222222223\tWhat is cribbage? -> $x: ($x, be to, cribbage) -> (Club director Tracy Yott, was introduced to, cribbage) -> Club director Tracy Yott (1777ms)\nWhat is cribbage?\tPocahontas\t-0.333333333333\tWhat is cribbage? -> $x: ($x, develop, cribbage) -> (Pocahontas, develops a fondness for, English horses and cribbage) -> Pocahontas (1785ms)\nWhat is cribbage?\tHayden Book Company, Inc.\t-0.333333333333\tWhat is cribbage? -> $x: ($x, develop, cribbage) -> (Hayden Book Company, Inc., Games Developed, King Cribbage) -> Hayden Book Company, Inc. (1782ms)\nWhat is cribbage?\tdiameter\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (This impressive cribbage board, is 15 inches in, diameter) -> diameter (1789ms)\nWhat is cribbage?\tthe USA\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (All our cribbage boards, are handmade in, the USA) -> the USA (1791ms)\nWhat is cribbage?\tthe early 17th Century\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, to have been invented in, the early 17th Century) -> the early 17th Century (1787ms)\nWhat is cribbage?\tAuthorities Concept Scheme\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage boards, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (1789ms)\nWhat is cribbage?\tthe pyramids\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (a modern cribbage board, has even been found in, the pyramids) -> the pyramids (1789ms)\nWhat is cribbage?\tthe Pacific Northwest\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (the way cribbage, will be played in, the Pacific Northwest) -> the Pacific Northwest (1785ms)\nWhat is cribbage?\tClojure\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage points, counter in, Clojure) -> Clojure (1789ms)\nWhat is cribbage?\tfull swing\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (The world championship cribbage tounament, is in, full swing) -> full swing (1789ms)\nWhat is cribbage?\tthe nine-to-five crowd\t-0.444444444444\tWhat is cribbage? -> $x: ($x, get, cribbage) -> (the nine-to-five crowd, gets points for having, Cribbage) -> the nine-to-five crowd (1791ms)\nWhat is cribbage?\ta private collection\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (this Cribbage Board, was in, a private collection) -> a private collection (1787ms)\nWhat is cribbage?\tthe shape\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (This cribbage board, is in, the shape) -> the shape (1789ms)\nWhat is cribbage?\ttwo phases\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, is played in, two phases) -> two phases (1787ms)\nWhat is cribbage?\ttwo kinds of wood\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (The 29 cribbage board, has been inlaid in, two kinds of wood) -> two kinds of wood (1787ms)\nWhat is cribbage?\tthe 1600\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, were codified in, the 1600) -> the 1600 (1787ms)\nWhat is cribbage?\tthe state\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, is illegal in, the state) -> the state (1787ms)\nWhat is cribbage?\tFebruary 2000\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (The Abbotsford Cribbage Club, was started in, February 2000) -> February 2000 (1791ms)\nWhat is cribbage?\tOklahoma\t-0.444444444444\tWhat is cribbage? -> $x: ($x, get, cribbage) -> (Oklahoma, got caught up on, our cribbage and Mancala) -> Oklahoma (1785ms)\nWhat is cribbage?\t216,580\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (this highest possible 29 Cribbage hand, are 1 in, 216,580) -> 216,580 (1791ms)\nWhat is cribbage?\tinternet\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (cribbage tournaments, online in, internet) -> internet (1785ms)\nWhat is cribbage?\ttwo kinds\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (The Heart shape cribbage board, has been inlaid in, two kinds) -> two kinds (1791ms)\nWhat is cribbage?\tfunctional simplicity\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (A standard Cribbage board, is a lesson in, functional simplicity) -> functional simplicity (1785ms)\nWhat is cribbage?\tMaple\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (The Snake shape cribbage board, has been inlaid in, Maple) -> Maple (1785ms)\nWhat is cribbage?\tthe pockets\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (legal cribbages, remain in, the pockets) -> the pockets (1785ms)\nWhat is cribbage?\tRockville\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (The Germantown Peggers Cribbage Club, now meets in, Rockville) -> Rockville (1787ms)\nWhat is cribbage?\tTopical Terms Concept Scheme\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (1791ms)\nWhat is cribbage?\tthe ASUPS office\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, matches in, the ASUPS office) -> the ASUPS office (1787ms)\nWhat is cribbage?\tprice depending\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage boards, vary greatly in, price depending) -> price depending (1787ms)\nWhat is cribbage?\tCreston\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (pinochle and cribbage, met wonderful friends in, Creston) -> Creston (1789ms)\nWhat is cribbage?\tthe house\t-0.444444444444\tWhat is cribbage? -> $x: ($x, get, cribbage) -> (the house, got out, the cribbage board) -> the house (1785ms)\nWhat is cribbage?\tBlood Wood / Maple\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Continuous Cribbage Board / Box, inlaid in, Blood Wood / Maple) -> Blood Wood / Maple (1787ms)\nWhat is cribbage?\t15,028\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (a 28 Cribbage hand, are 1 in, 15,028) -> 15,028 (1787ms)\nWhat is cribbage?\tshape\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Fame Products 3 Track natural wood cribbage, formed in, shape) -> shape (1789ms)\nWhat is cribbage?\ttouch\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage World, keeps members in, touch) -> touch (1787ms)\nWhat is cribbage?\tCribbage World\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (His cribbage strategy articles, appeared in, Cribbage World) -> Cribbage World (1785ms)\nWhat is cribbage?\tpopularity\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, continues to grow in, popularity) -> popularity (1789ms)\nWhat is cribbage?\tthe BCA Official Rules and Records Book\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, are in, the BCA Official Rules and Records Book) -> the BCA Official Rules and Records Book (1789ms)\nWhat is cribbage?\ta box\t-0.444444444444\tWhat is cribbage? -> $x: (cribbage, in in, $x) -> (The cribbage board, is stored away in, a box) -> a box (1787ms)\nWhat is cribbage?\tKnob and Heel Cribbage\t-0.666666666667\tWhat is cribbage? -> $x: ($x, contain, cribbage) -> (Knob and Heel Cribbage, contains, traditional Cribbage rules) -> Knob and Heel Cribbage (1791ms)\nWhat is cribbage?\tEbony\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (The White Maple cribbage board, has been inlaid with, Ebony) -> Ebony (1793ms)\nWhat is cribbage?\trosewood\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (The maple cribbage board, has been inlaid with, rosewood) -> rosewood (1797ms)\nWhat is cribbage?\tWhite Maple\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (The Rosewood cribbage board, has been inlaid with, White Maple) -> White Maple (1797ms)\nWhat is cribbage?\tthe ACC\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (cribbage, has been a member of, the ACC) -> the ACC (1791ms)\nWhat is cribbage?\tKeith Masters\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage Championships, has been organised by, Keith Masters) -> Keith Masters (1794ms)\nWhat is cribbage?\tcraftsmen\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage Supply, has been employing hundreds of, craftsmen) -> craftsmen (1795ms)\nWhat is cribbage?\tthe six-card game\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage, has been superceded by, the six-card game) -> the six-card game (1796ms)\nWhat is cribbage?\tthe Cadillac\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (Our cribbage boards, have been described as, the Cadillac) -> the Cadillac (1795ms)\nWhat is cribbage?\tBrass\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (The Rosewood cribbage board, has been inlaid with, Brass) -> Brass (1797ms)\nWhat is cribbage?\tCanadian Military people\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage, has been played by, Canadian Military people) -> Canadian Military people (1797ms)\nWhat is cribbage?\tRosewood\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (The White Maple cribbage board, has been inlaid with, Rosewood) -> Rosewood (1796ms)\nWhat is cribbage?\tcomparison list\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (The product Cribbage Board, has been added to, comparison list) -> comparison list (1793ms)\nWhat is cribbage?\ta sign\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage whiz Harold Butts, may have been tacking up, a sign) -> a sign (1796ms)\nWhat is cribbage?\tthe table\t-1.0\tWhat is cribbage? -> $x: (cribbage, be have, $x) -> (The cribbage board, had been long ago formed on, the table) -> the table (1796ms)\nIn what year was the Guinness Brewery founded?\tArthur Guinness\t-0.666666666666\tIn what year was the Guinness Brewery founded? -> $x: ($x, establish, guinness brewery) -> (Arthur Guinness, established, the Guinness brewery) -> Arthur Guinness (635ms)\nWho founded the House of Chanel?\tChanel |\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Chanel |, Find the Latest News on, Chanel) -> Chanel | (1054ms)\nWho founded the House of Chanel?\t500 bodies\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (500 bodies, were found in, the Coco River) -> 500 bodies (1093ms)\nWho founded the House of Chanel?\tThe expedition team\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (The expedition team, found, Cocos National Park) -> The expedition team (1039ms)\nWho founded the House of Chanel?\tJuanita\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Juanita, found, Coco dead) -> Juanita (1093ms)\nWho founded the House of Chanel?\ta specialized production rule\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (a specialized production rule, is found in, all Chanel baggage) -> a specialized production rule (1399ms)\nWho founded the House of Chanel?\tbattle of cocos\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (battle of cocos, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Battle%20of%20Cocos) -> battle of cocos (1039ms)\nWho founded the House of Chanel?\tThe rosy lipped batfish\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (The rosy lipped batfish, can be found near, Cocos Island) -> The rosy lipped batfish (1399ms)\nWho founded the House of Chanel?\tMarc Jacobs Perfume\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Marc Jacobs Perfume, find wide range of, Chanel Perfume online) -> Marc Jacobs Perfume (1333ms)\nWho founded the House of Chanel?\tPolo Ralph Lauren Polo Ralph Lauren\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Polo Ralph Lauren Polo Ralph Lauren, find, Coco Chanel) -> Polo Ralph Lauren Polo Ralph Lauren (1399ms)\nWho founded the House of Chanel?\tcaffeine\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (caffeine, is found in, tea , coffee , coco and , yes , chocolate) -> caffeine (1054ms)\nWho founded the House of Chanel?\tturkey Amazing\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (turkey Amazing, find, ( History Chanel docum) -> turkey Amazing (1333ms)\nWho founded the House of Chanel?\torder\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (order, find, the CoCo cat) -> order (1298ms)\nWho founded the House of Chanel?\tChristian Louboutin shoes\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Christian Louboutin shoes, may be found at, Playas del Coco) -> Christian Louboutin shoes (1298ms)\nWho founded the House of Chanel?\tline\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (line, will find, the replica chanel handbags) -> line (1363ms)\nWho founded the House of Chanel?\tCoco Fusco\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Coco Fusco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Fusco) -> Coco Fusco (993ms)\nWho founded the House of Chanel?\tboots\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (boots, try to find, the particular traditional Chanel emblem) -> boots (1298ms)\nWho founded the House of Chanel?\tthe big fashion names\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (the big fashion names, can be found like, Chanel) -> the big fashion names (1399ms)\nWho founded the House of Chanel?\tAnswer all 4 questions\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Answer all 4 questions, find, CoCo cat) -> Answer all 4 questions (1399ms)\nWho founded the House of Chanel?\tA case\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (A case, can find, Chanel authenticity stamp) -> A case (1399ms)\nWho founded the House of Chanel?\tthe bitch\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (the bitch, found, the brand new chanel pea-coat) -> the bitch (932ms)\nWho founded the House of Chanel?\ta home\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (a home, was found for, Cookie and Coco) -> a home (1399ms)\nWho founded the House of Chanel?\tDuckett\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Duckett, searches extensively to find, the best Chanel pieces) -> Duckett (1402ms)\nWho founded the House of Chanel?\tAny e-commerce place\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Any e-commerce place, is found with, replica chanel handbags) -> Any e-commerce place (931ms)\nWho founded the House of Chanel?\tCoco Rocha\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Coco Rocha, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Rocha) -> Coco Rocha (1039ms)\nWho founded the House of Chanel?\tcoco laboy\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (coco laboy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Laboy) -> coco laboy (1402ms)\nWho founded the House of Chanel?\tthe boys\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (the boys, were so very upset to find, that CoCo) -> the boys (1363ms)\nWho founded the House of Chanel?\tImitation Rolex\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Imitation Rolex, Find, all the latest designed Chanel Knock) -> Imitation Rolex (1333ms)\nWho founded the House of Chanel?\t2012\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (2012, Find the best product for, Chanel Women?s) -> 2012 (1399ms)\nWho founded the House of Chanel?\tThe reissue bags\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (The reissue bags, can be found in, chanel) -> The reissue bags (1093ms)\nWho founded the House of Chanel?\ta pair\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (a pair, found a great pair at, the Chanel) -> a pair (1333ms)\nWho founded the House of Chanel?\tDeputy State Coroner Carmel Forbes\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Deputy State Coroner Carmel Forbes, found, Chanel) -> Deputy State Coroner Carmel Forbes (1054ms)\nWho founded the House of Chanel?\tchris mellor\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (chris mellor, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chris%20Coco) -> chris mellor (1399ms)\nWho founded the House of Chanel?\tCook\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Cook, found, his pet Coco) -> Cook (993ms)\nWho founded the House of Chanel?\tParks Australia\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Parks Australia, has found, the Cocos Keeling reef) -> Parks Australia (1039ms)\nWho founded the House of Chanel?\tI?d\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (I?d, arrive to find, Coco) -> I?d (1039ms)\nWho founded the House of Chanel?\tcan\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (can, find, a REAL chanel bag) -> can (1298ms)\nWho founded the House of Chanel?\ta window\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (a window, found, Coco , wet and shivering) -> a window (1399ms)\nWho founded the House of Chanel?\tCoco Martin\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Coco Martin, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Martin) -> Coco Martin (1093ms)\nWho founded the House of Chanel?\tIce Loves Coco\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Ice Loves Coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ice%20Loves%20Coco) -> Ice Loves Coco (1363ms)\nWho founded the House of Chanel?\tseveral hundred birds\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (several hundred birds, can still be found on, Cocos Island) -> several hundred birds (1363ms)\nWho founded the House of Chanel?\tEnglishduckgrl\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Englishduckgrl, is the best place to find, chanel sunglasses) -> Englishduckgrl (1399ms)\nWho founded the House of Chanel?\tAmerica\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (America, only found, coco palms) -> America (1054ms)\nWho founded the House of Chanel?\ttinning i\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (tinning i, find, inexpensive real chanel jewellery) -> tinning i (1399ms)\nWho founded the House of Chanel?\tthe website\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (the website, are really found in, the Chanel factory) -> the website (1399ms)\nWho founded the House of Chanel?\tthe color symbols\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (the color symbols, is found in, Chanel Noirs Obscurs Collection) -> the color symbols (932ms)\nWho founded the House of Chanel?\tharder\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (harder, you?ll find perhaps, the Chanel legend) -> harder (1298ms)\nWho founded the House of Chanel?\tThe CC logo\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (The CC logo, is found, onChanel designer handbags) -> The CC logo (1402ms)\nWho founded the House of Chanel?\ttools\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (tools, found, CocoBase Enterprise O/R) -> tools (1333ms)\nWho founded the House of Chanel?\t15th\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (15th, Find, LuLu , CoCo and JoJo) -> 15th (1333ms)\nWho founded the House of Chanel?\tThe goal\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (The goal, is to find, a pre-owned black Chanel 2.55 flap bag) -> The goal (1363ms)\nWho founded the House of Chanel?\tCoc? Park\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Coc? Park, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Park) -> Coc? Park (1298ms)\nWho founded the House of Chanel?\tdress\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (dress, Find the largest selection of, chanel dress) -> dress (1093ms)\nWho founded the House of Chanel?\tThe bittern\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (The bittern, is also found on, Cocos) -> The bittern (1054ms)\nWho founded the House of Chanel?\tpasqual coco\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (pasqual coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Pasqual%20Coco) -> pasqual coco (1363ms)\nWho founded the House of Chanel?\tshader programs\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (shader programs, can be found in, libs\\cocos2D\\CCGLProgram .h) -> shader programs (1298ms)\nWho founded the House of Chanel?\tNo results\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (No results, found, Buy Chanel handbags) -> No results (932ms)\nWho founded the House of Chanel?\tI Blame Coco\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (I Blame Coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/I%20Blame%20Coco) -> I Blame Coco (1039ms)\nWho founded the House of Chanel?\tHelene Chanel\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Helene Chanel, can be found on Wikipedia at, http://en.wikipedia.org/wiki/H%C3%A9l%C3%A8ne%20Chanel) -> Helene Chanel (1402ms)\nWho founded the House of Chanel?\tWarren\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Warren, found a niche with, Chanel) -> Warren (993ms)\nWho founded the House of Chanel?\tDiamonds\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Diamonds, are very common to find in, a Chanel ceramic watch) -> Diamonds (992ms)\nWho founded the House of Chanel?\tSearch local stores\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Search local stores, to find, the lowest price on Chanel) -> Search local stores (1402ms)\nWho founded the House of Chanel?\tten women\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (ten women, are found carrying, Chanel Outlet) -> ten women (1399ms)\nWho founded the House of Chanel?\tAn autopsy\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (An autopsy, found, Chanel) -> An autopsy (1399ms)\nWho founded the House of Chanel?\tSalvatore Coco\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Salvatore Coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Salvatore%20Coco) -> Salvatore Coco (1093ms)\nWho founded the House of Chanel?\tEttore Coco\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Ettore Coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ettore%20Coco) -> Ettore Coco (1363ms)\nWho founded the House of Chanel?\tYou?ll\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (You?ll, also find, vintage Chanel , Gucci , and Balenciaga) -> You?ll (1402ms)\nWho founded the House of Chanel?\tFontaine\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Fontaine, found, Chanel) -> Fontaine (1363ms)\nWho founded the House of Chanel?\tChanel Iman\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Chanel Iman, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chanel%20Iman) -> Chanel Iman (931ms)\nWho founded the House of Chanel?\tmustaches\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (mustaches, Find out more at, CocoRosie Land) -> mustaches (1363ms)\nWho founded the House of Chanel?\tChanel St. James\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Chanel St. James, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chanel%20St%2E%20James) -> Chanel St. James (993ms)\nWho founded the House of Chanel?\tBeatrice\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Beatrice, found, some Chanel swimsuit) -> Beatrice (1333ms)\nWho founded the House of Chanel?\tthe celebrities\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (the celebrities, found, rocking Chanel) -> the celebrities (1363ms)\nWho founded the House of Chanel?\tsecond there?s 55 container\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (second there?s 55 container, can be found only during, Chanel?s) -> second there?s 55 container (1054ms)\nWho founded the House of Chanel?\tAttached\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (Attached, please find, our cowgrain Chanel wallet) -> Attached (1093ms)\nWho founded the House of Chanel?\tmarine species\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (marine species, found near, Cocos Island) -> marine species (1039ms)\nWho founded the House of Chanel?\tinvestment pieces\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, chanel) -> (investment pieces, can find, a couture Chanel suit) -> investment pieces (1054ms)\nWho founded the House of Chanel?\ttwo animals\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (two animals, are found on, Costa Rica?s Isla del Coco) -> two animals (932ms)\nWho founded the House of Chanel?\tThree endemic species\t0.22222222221799992\tWho founded the House of Chanel? -> $x: ($x, found, coco) -> (Three endemic species, are found on, Coco Island) -> Three endemic species (1399ms)\nWho founded the House of Chanel?\t10 round diamonds\t0.111111111111\tWho founded the House of Chanel? -> $x: ($x, be house in, chanel) -> (10 round diamonds, are housed in, chanel setting) -> 10 round diamonds (1402ms)\nWho founded the House of Chanel?\tCoco Chanel\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, chanel) -> (Coco Chanel, first established the house of, Chanel) -> Coco Chanel (1402ms)\nWho founded the House of Chanel?\tThe submarine\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, coco) -> (The submarine, is housed on, the MV Argo Cocos liveaboard) -> The submarine (1402ms)\nWho founded the House of Chanel?\tVall?e de Mai\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, coco) -> (Vall?e de Mai, houses, the endemic Coco de Mer palms) -> Vall?e de Mai (1402ms)\nWho founded the House of Chanel?\tThe building\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, chanel) -> (The building, houses, the Chanel store) -> The building (1402ms)\nWho founded the House of Chanel?\therself?and\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, chanel) -> (herself?and, has become the iconic House of, Chanel) -> herself?and (1402ms)\nWho founded the House of Chanel?\tthe first two floors\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, chanel) -> (the first two floors, will house, a Chanel boutiuque) -> the first two floors (1402ms)\nWho founded the House of Chanel?\tJacques Wetheimer\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, chanel) -> (Jacques Wetheimer, bought the entire House of, Chanel) -> Jacques Wetheimer (1404ms)\nWho founded the House of Chanel?\tJacques Wertheimer\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, chanel) -> (Jacques Wertheimer, bought the entire House of, Chanel) -> Jacques Wertheimer (1402ms)\nWho founded the House of Chanel?\tKarl Lagerfeld\t0.111111111109\tWho founded the House of Chanel? -> $x: ($x, house, chanel) -> (Karl Lagerfeld, took over the House of, Chanel) -> Karl Lagerfeld (1402ms)\nWho founded the House of Chanel?\tA giant Bratz doll\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, chanel) -> (A giant Bratz doll, made to look like, Chanel) -> A giant Bratz doll (1404ms)\nWho founded the House of Chanel?\tbronzers\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, coco) -> (bronzers, would end up looking like, Coco) -> bronzers (1404ms)\nWho founded the House of Chanel?\ta fabulous Swatch\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, chanel) -> (a fabulous Swatch, looks exactly like, the Chanel J12) -> a fabulous Swatch (1404ms)\nWho founded the House of Chanel?\t01:08 PM\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, coco) -> (01:08 PM, Looks like, a bad load from coco) -> 01:08 PM (1406ms)\nWho founded the House of Chanel?\tMarch 23 , 1999\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, coco) -> (March 23 , 1999, Looks like, Lassie and CoCo) -> March 23 , 1999 (1406ms)\nWho founded the House of Chanel?\tthe setting\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, chanel) -> (the setting, looked exactly like, Chanel) -> the setting (1406ms)\nWho founded the House of Chanel?\tthe beige\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, chanel) -> (the beige, looks very much like, the Chanel and Delman flats) -> the beige (1404ms)\nWho founded the House of Chanel?\tthe clowns\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, coco) -> (the clowns, look less like, Coco and more) -> the clowns (1404ms)\nWho founded the House of Chanel?\tBill Maher\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, coco) -> (Bill Maher, looks like, \" Playboy Cyber Girl Coco Johnson) -> Bill Maher (1406ms)\nWho founded the House of Chanel?\tstockings?Miss Dirty Martini\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, chanel) -> (stockings?Miss Dirty Martini, looks like, Coco Chanel) -> stockings?Miss Dirty Martini (1404ms)\nWho founded the House of Chanel?\tthe black and white cat\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, coco) -> (the black and white cat, looks like, Coco) -> the black and white cat (1404ms)\nWho founded the House of Chanel?\tpatchwork tote purse\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, chanel) -> (patchwork tote purse, looks like, chanel) -> patchwork tote purse (1404ms)\nWho founded the House of Chanel?\tJordan\t-0.333333333333\tWho founded the House of Chanel? -> $x: ($x, look like, chanel) -> (Jordan, look like, Coco Chanel) -> Jordan (1404ms)\nWho founded Wal-Mart?\t10.00 and\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (10.00 and, can be found at, walmart) -> 10.00 and (2277ms)\nWho founded Wal-Mart?\tthe counter diet pills\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the counter diet pills, found at, walmart) -> the counter diet pills (1671ms)\nWho founded Wal-Mart?\tbrazil nuts\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (brazil nuts, finally found some at, Walmart) -> brazil nuts (1350ms)\nWho founded Wal-Mart?\tthe following figures\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the following figures, have been found in, Walmart) -> the following figures (2277ms)\nWho founded Wal-Mart?\ta product\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (a product, found at, Walmart) -> a product (1671ms)\nWho founded Wal-Mart?\tShoppers\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Shoppers, can find more information about, Walmart) -> Shoppers (1350ms)\nWho founded Wal-Mart?\ta few vendors\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (a few vendors, can be found at, Walmart) -> a few vendors (1638ms)\nWho founded Wal-Mart?\tan inexpensive green plastic hook\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (an inexpensive green plastic hook, found at, Walmart) -> an inexpensive green plastic hook (2421ms)\nWho founded Wal-Mart?\tbuisness\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (buisness, find the heart of, Walmart) -> buisness (1572ms)\nWho founded Wal-Mart?\tthe 4.00 plans\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the 4.00 plans, found at, Walmart) -> the 4.00 plans (1847ms)\nWho founded Wal-Mart?\tthe biotech giant\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the biotech giant, just might find true love with, Walmart) -> the biotech giant (1572ms)\nWho founded Wal-Mart?\ta long lost military friend\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (a long lost military friend, found in, Walmart) -> a long lost military friend (1776ms)\nWho founded Wal-Mart?\ttop\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (top, was found at, walmart) -> top (2277ms)\nWho founded Wal-Mart?\tthe deals\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the deals, will be found at, Walmart) -> the deals (1422ms)\nWho founded Wal-Mart?\tPharmacists\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Pharmacists, can be found at, Walmart) -> Pharmacists (1639ms)\nWho founded Wal-Mart?\tno phone number\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (no phone number, can be found anywhere on, Walmart) -> no phone number (1638ms)\nWho founded Wal-Mart?\tHopefully i\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Hopefully i, will find some this year in, walmart) -> Hopefully i (1422ms)\nWho founded Wal-Mart?\told mix boxes\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (old mix boxes, found behind, Walmart) -> old mix boxes (1572ms)\nWho founded Wal-Mart?\tthe various people and cars\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the various people and cars, found at, Walmart) -> the various people and cars (1776ms)\nWho founded Wal-Mart?\tAir Popped Popcorn\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Air Popped Popcorn, Can be found in, Walmart) -> Air Popped Popcorn (2366ms)\nWho founded Wal-Mart?\tthe ingredients\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the ingredients, can be found at, Walmart) -> the ingredients (1671ms)\nWho founded Wal-Mart?\ta adorable little tortie kitty\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (a adorable little tortie kitty, was found at, Walmart) -> a adorable little tortie kitty (1847ms)\nWho founded Wal-Mart?\ta free , safe and easy place\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (a free , safe and easy place, find, a Walmart) -> a free , safe and easy place (1350ms)\nWho founded Wal-Mart?\tMcQueen\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (McQueen, was first found at, Walmart) -> McQueen (1847ms)\nWho founded Wal-Mart?\tcan Hydroxycut\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (can Hydroxycut, still be found at, Walmart) -> can Hydroxycut (1350ms)\nWho founded Wal-Mart?\tNo solid red footie jammies\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (No solid red footie jammies, were to be found at, Walmart) -> No solid red footie jammies (1572ms)\nWho founded Wal-Mart?\ta disco ball\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (a disco ball, find these cheap at, Walmart) -> a disco ball (1775ms)\nWho founded Wal-Mart?\tthe evil soldiers\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the evil soldiers, can be found at, Walmart) -> the evil soldiers (2277ms)\nWho founded Wal-Mart?\tthe new Star Wars posters\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the new Star Wars posters, found at, Walmart) -> the new Star Wars posters (1847ms)\nWho founded Wal-Mart?\tany popular product\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (any popular product, can be found on, Walmart) -> any popular product (2366ms)\nWho founded Wal-Mart?\tCrest White strips\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Crest White strips, can be found at, Walmart) -> Crest White strips (2366ms)\nWho founded Wal-Mart?\tSPAM spread\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (SPAM spread, could be found at, Walmart) -> SPAM spread (1671ms)\nWho founded Wal-Mart?\tUse liners\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Use liners, found at, Walmart) -> Use liners (1638ms)\nWho founded Wal-Mart?\tthe products\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the products, found in, Walmart) -> the products (1671ms)\nWho founded Wal-Mart?\tcherry company customers\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (cherry company customers, find, loveseat walmart) -> cherry company customers (1422ms)\nWho founded Wal-Mart?\tbelly-up\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (belly-up, ,just find a job at, walmart) -> belly-up (1422ms)\nWho founded Wal-Mart?\tNext Style creative products\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Next Style creative products, can be found at, Walmart) -> Next Style creative products (1847ms)\nWho founded Wal-Mart?\tGift Card* Shoppers\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Gift Card* Shoppers, can find more information about, Walmart) -> Gift Card* Shoppers (1639ms)\nWho founded Wal-Mart?\ta Quebec arbitrator\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (a Quebec arbitrator, found, Walmart guilty) -> a Quebec arbitrator (2277ms)\nWho founded Wal-Mart?\tI?ve\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (I?ve, found dye-free versions at, Walmart) -> I?ve (1422ms)\nWho founded Wal-Mart?\tEaster candies\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Easter candies, found at, Walmart) -> Easter candies (1671ms)\nWho founded Wal-Mart?\tLEGO wrapping paper\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (LEGO wrapping paper, found at, Walmart) -> LEGO wrapping paper (1847ms)\nWho founded Wal-Mart?\tThe actual ZONE bars\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (The actual ZONE bars, found at, Walmart) -> The actual ZONE bars (1671ms)\nWho founded Wal-Mart?\tcandy\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (candy, can be found at, Walmart) -> candy (1638ms)\nWho founded Wal-Mart?\tCan't\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Can't, find this value at, walmart) -> Can't (2366ms)\nWho founded Wal-Mart?\tMoney saving tips and recipes\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Money saving tips and recipes, can be found on, Walmart) -> Money saving tips and recipes (1422ms)\nWho founded Wal-Mart?\tthe kind\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the kind, found at, Walmart) -> the kind (1776ms)\nWho founded Wal-Mart?\tFebruary 14 , 2012 , 03 :19:42\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (February 14 , 2012 , 03 :19:42, found at, Walmart) -> February 14 , 2012 , 03 :19:42 (1847ms)\nWho founded Wal-Mart?\tPedigree\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Pedigree, found at, Walmart) -> Pedigree (2277ms)\nWho founded Wal-Mart?\tthe hotel\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the hotel, find, a Walmart) -> the hotel (1639ms)\nWho founded Wal-Mart?\tFabulous results\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Fabulous results, found this at, walmart) -> Fabulous results (1351ms)\nWho founded Wal-Mart?\tNo bomb\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (No bomb, found at, Walmart) -> No bomb (1775ms)\nWho founded Wal-Mart?\tjust a average diaper bag\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (just a average diaper bag, can be found at, Walmart) -> just a average diaper bag (1776ms)\nWho founded Wal-Mart?\tthe Raw\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the Raw, found in, Walmart) -> the Raw (1422ms)\nWho founded Wal-Mart?\tthe typical customers\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the typical customers, found in, walmart) -> the typical customers (1775ms)\nWho founded Wal-Mart?\ttransfer paper\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (transfer paper, can be found at, Walmart) -> transfer paper (2277ms)\nWho founded Wal-Mart?\tCosco Scenera Convertible Car Seat\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Cosco Scenera Convertible Car Seat, Find Top Deals At, Walmart) -> Cosco Scenera Convertible Car Seat (1671ms)\nWho founded Wal-Mart?\tRimmel\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Rimmel, can be found at, Walmart) -> Rimmel (1572ms)\nWho founded Wal-Mart?\tseveral insecticides\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (several insecticides, found at, Walmart) -> several insecticides (1422ms)\nWho founded Wal-Mart?\tYou?ll\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (You?ll, find, Walmart) -> You?ll (1572ms)\nWho founded Wal-Mart?\tMister fans\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Mister fans, can be found at, Walmart) -> Mister fans (1847ms)\nWho founded Wal-Mart?\tthe cheapest replacements\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the cheapest replacements, can be found at, Walmart) -> the cheapest replacements (2366ms)\nWho founded Wal-Mart?\tone i\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (one i, found at, walmart) -> one i (1573ms)\nWho founded Wal-Mart?\tthe Berry Event\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the Berry Event, find some great deals at, Walmart) -> the Berry Event (1638ms)\nWho founded Wal-Mart?\tshown\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (shown, be found at, walmart) -> shown (2277ms)\nWho founded Wal-Mart?\tOvation\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Ovation, found mostly at, Walmarts) -> Ovation (1350ms)\nWho founded Wal-Mart?\tTwo economists\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Two economists, find, that Walmart) -> Two economists (2366ms)\nWho founded Wal-Mart?\tchance\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (chance, found the second at, Walmart) -> chance (1350ms)\nWho founded Wal-Mart?\tthe cheap light weight chairs\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (the cheap light weight chairs, found at, Walmarts) -> the cheap light weight chairs (1350ms)\nWho founded Wal-Mart?\tgloves\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (gloves, found at, Walmart) -> gloves (2421ms)\nWho founded Wal-Mart?\tenhancement drink ?\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (enhancement drink ?, Can be found at, Walmart) -> enhancement drink ? (2366ms)\nWho founded Wal-Mart?\tThe gloves\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (The gloves, were a great find at, Walmart) -> The gloves (2421ms)\nWho founded Wal-Mart?\tThe new Knorr Homestyle Stock\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (The new Knorr Homestyle Stock, can be found at, Walmart) -> The new Knorr Homestyle Stock (2366ms)\nWho founded Wal-Mart?\tDrawer dividers\t0.6666666666609999\tWho founded Wal-Mart? -> $x: ($x, find, walmart) -> (Drawer dividers, can be easily found at, Walmart) -> Drawer dividers (1572ms)\nWho founded Wal-Mart?\tallowable levels\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (allowable levels, was found in, Walmart products) -> allowable levels (2626ms)\nWho founded Wal-Mart?\tStar Wars items\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Star Wars items, recently found in, the Wal-Mart data base) -> Star Wars items (2626ms)\nWho founded Wal-Mart?\tthe jury\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the jury, found in, favor of Wal-Mart) -> the jury (2626ms)\nWho founded Wal-Mart?\tcompressed wood\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (compressed wood, found in, Walmart and Target furntiure) -> compressed wood (2626ms)\nWho founded Wal-Mart?\tPolice\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Police, found the 3-year-old in, a Wal-Mart parking lot) -> Police (2469ms)\nWho founded Wal-Mart?\tone such brand\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (one such brand, can be found in, Wal-Mart and Reliance) -> one such brand (2611ms)\nWho founded Wal-Mart?\tThe car\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (The car, was found abandoned in, a Walmart parking lot) -> The car (2611ms)\nWho founded Wal-Mart?\tJones\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (Jones, had been found in, the Walmart parking lot) -> Jones (2469ms)\nWho founded Wal-Mart?\tvehicle\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (vehicle, was found in, a Walmart parking lot) -> vehicle (2625ms)\nWho founded Wal-Mart?\ta Nazi symbol\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (a Nazi symbol, found in, a Wal-Mart store) -> a Nazi symbol (2640ms)\nWho founded Wal-Mart?\tEquate\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Equate, found in, Wal-Mart) -> Equate (2597ms)\nWho founded Wal-Mart?\ta fundraising device\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (a fundraising device, found in, Wal-Marts and McDonalds) -> a fundraising device (2596ms)\nWho founded Wal-Mart?\tTop left\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Top left, was found only in, Wal-Mart) -> Top left (2640ms)\nWho founded Wal-Mart?\tTarg?t\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (Targ?t, ever would be found in, Wal-Mart) -> Targ?t (2469ms)\nWho founded Wal-Mart?\tthe teal colored bag ?\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (the teal colored bag ?, can be found in, Wegman?s and Wal-Mart) -> the teal colored bag ? (2611ms)\nWho founded Wal-Mart?\tmuch that\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (much that, is found in, Wal-mart) -> much that (2654ms)\nWho founded Wal-Mart?\tan elderly lady\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (an elderly lady, find her car in, a Walmart parking lot) -> an elderly lady (2640ms)\nWho founded Wal-Mart?\ta famous store brand\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (a famous store brand, can be found in, all Wal-Mart stores) -> a famous store brand (2626ms)\nWho founded Wal-Mart?\tmore than $ 200 million\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (more than $ 200 million, is found in, many Wal-Mart) -> more than $ 200 million (2611ms)\nWho founded Wal-Mart?\tJason products\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Jason products, are found in, Wal-Mart) -> Jason products (2640ms)\nWho founded Wal-Mart?\tThe Spring line\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (The Spring line, can be found in, Walmart stores) -> The Spring line (2626ms)\nWho founded Wal-Mart?\ttravel kits and accessories\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (travel kits and accessories, can be found in, Wal-Mart) -> travel kits and accessories (2596ms)\nWho founded Wal-Mart?\tgroceries and consumables\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (groceries and consumables, found in, a Walmart store) -> groceries and consumables (2421ms)\nWho founded Wal-Mart?\tThe Brinkmann Q Beam\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (The Brinkmann Q Beam, can be found in, most WalMarts) -> The Brinkmann Q Beam (2640ms)\nWho founded Wal-Mart?\tfolks\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (folks, are still finding the shirts in, Wal-Mart stores) -> folks (2654ms)\nWho founded Wal-Mart?\tthe New York Times\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the New York Times, is still found in, many Wal-Marts) -> the New York Times (2625ms)\nWho founded Wal-Mart?\tgeneral merchandise\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (general merchandise, found in, traditional Wal-Mart stores) -> general merchandise (2596ms)\nWho founded Wal-Mart?\tnatural and organic foods sections\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (natural and organic foods sections, are found in, Wal-Mart) -> natural and organic foods sections (2640ms)\nWho founded Wal-Mart?\t11/20/2009 USU32361 Lost laptop\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (11/20/2009 USU32361 Lost laptop, found in, a Walmart parking lot) -> 11/20/2009 USU32361 Lost laptop (2611ms)\nWho founded Wal-Mart?\tthe staples\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the staples, found in, all Wal-mart sites) -> the staples (2625ms)\nWho founded Wal-Mart?\tthe best ones\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the best ones, are found in, Walmart bathrooms) -> the best ones (2640ms)\nWho founded Wal-Mart?\tUdi?s Gluten Free Foods\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Udi?s Gluten Free Foods, can be found in, 150 Wal-Mart stores) -> Udi?s Gluten Free Foods (2611ms)\nWho founded Wal-Mart?\tthe produce packaging\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the produce packaging, found in, Wal-Mart stores) -> the produce packaging (2640ms)\nWho founded Wal-Mart?\tThe following list\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (The following list, was found in, Wal-Marts computers) -> The following list (2640ms)\nWho founded Wal-Mart?\tThe study\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found of, walmart) -> (The study, found the number of, Walmart stores) -> The study (2640ms)\nWho founded Wal-Mart?\tgrocery items\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (grocery items, are found in, regular Walmart stores) -> grocery items (2640ms)\nWho founded Wal-Mart?\tcommonality\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (commonality, found in, Wal-Mart) -> commonality (2640ms)\nWho founded Wal-Mart?\tPREMARIN\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (PREMARIN, will find in, KMart or WalMart) -> PREMARIN (2611ms)\nWho founded Wal-Mart?\tPerdomo 's rental car\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (Perdomo 's rental car, was found in, a Walmart parking lot) -> Perdomo 's rental car (2626ms)\nWho founded Wal-Mart?\tthe Luanna brand\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the Luanna brand, found in, Wal-Mart) -> the Luanna brand (2597ms)\nWho founded Wal-Mart?\ta woman\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (a woman, was found in, a Wal-Mart retention pond) -> a woman (2640ms)\nWho founded Wal-Mart?\tinspirational selections\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, found in, walmart) -> (inspirational selections, found in, Target or Wal-Mart) -> inspirational selections (2469ms)\nWho founded Wal-Mart?\tproducts\t0.44444444444199993\tWho founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (products, cannot be found in, Wal-mart or Target) -> products (2640ms)\nWho founded Wal-Mart?\tElaine\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Elaine, found this item at, Wal-Mart) -> Elaine (2668ms)\nWho founded Wal-Mart?\tCalifornia-Berkeley study\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (California-Berkeley study, found, Wal-Mart?s wages) -> California-Berkeley study (2668ms)\nWho founded Wal-Mart?\tthe USA\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the USA, found, a Wal-Mart) -> the USA (2708ms)\nWho founded Wal-Mart?\t12/20/2004 AMR Research\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (12/20/2004 AMR Research, finds, Wal-Mart suppliers) -> 12/20/2004 AMR Research (2681ms)\nWho founded Wal-Mart?\tHome materials\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Home materials, can be found at, Wal Mart) -> Home materials (2708ms)\nWho founded Wal-Mart?\tthe lowest price\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the lowest price, can be found at, Wal-Mart) -> the lowest price (2681ms)\nWho founded Wal-Mart?\tThe probe\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, discover, walmart) -> (The probe, discovered, Wal-Mart) -> The probe (2695ms)\nWho founded Wal-Mart?\ta clear COLORPLACE Spray Paint\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a clear COLORPLACE Spray Paint, found at, WalMart) -> a clear COLORPLACE Spray Paint (2708ms)\nWho founded Wal-Mart?\thundreds\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (hundreds, find, the Wal-Mart wilderness) -> hundreds (2668ms)\nWho founded Wal-Mart?\ta Clone Trooper Power Quad\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a Clone Trooper Power Quad, found at, a Wal-Mart) -> a Clone Trooper Power Quad (2654ms)\nWho founded Wal-Mart?\tcoffees\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (coffees, found at, Wal-Mart) -> coffees (2695ms)\nWho founded Wal-Mart?\tobscure brands\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (obscure brands, found at, Wal-Mart work) -> obscure brands (2654ms)\nWho founded Wal-Mart?\tthe $ 100 models\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the $ 100 models, found at, Wal Mart) -> the $ 100 models (2654ms)\nWho founded Wal-Mart?\tthe greatest gender gaps\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the greatest gender gaps, found at, Wal-Mart stores) -> the greatest gender gaps (2668ms)\nWho founded Wal-Mart?\tthe lower-priced models\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the lower-priced models, found at, Wal-Mart) -> the lower-priced models (2721ms)\nWho founded Wal-Mart?\tsuppose\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (suppose, find, a Wal-Mart) -> suppose (2668ms)\nWho founded Wal-Mart?\tProcter & Gamble\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Procter & Gamble, has found, Wal-Mart) -> Procter & Gamble (2668ms)\nWho founded Wal-Mart?\tthe the one\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the the one, found at, Wal-Mart) -> the the one (2654ms)\nWho founded Wal-Mart?\ta hat\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a hat, find at, WalMart) -> a hat (2708ms)\nWho founded Wal-Mart?\ta federal jury\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a federal jury, found, Wal-Mart Stores guilty) -> a federal jury (2695ms)\nWho founded Wal-Mart?\tBandanas\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Bandanas, can be found at, WalMart) -> Bandanas (2681ms)\nWho founded Wal-Mart?\tGerman shoppers\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (German shoppers, found, Wal-Mart) -> German shoppers (2695ms)\nWho founded Wal-Mart?\tan explosive device\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (an explosive device, found at, Wal-Mart) -> an explosive device (2694ms)\nWho founded Wal-Mart?\ta local tire company\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a local tire company, suddenly finds, Wal-Mart) -> a local tire company (2695ms)\nWho founded Wal-Mart?\ta search\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a search, found, Wal-Mart) -> a search (2681ms)\nWho founded Wal-Mart?\tThe shirts\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, discover, walmart) -> (The shirts, were discovered in, Walmart) -> The shirts (2668ms)\nWho founded Wal-Mart?\tthe agency\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the agency, has found, Wal-Mart) -> the agency (2654ms)\nWho founded Wal-Mart?\tthe US judges\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the US judges, have found, Wal-Mart guilty) -> the US judges (2681ms)\nWho founded Wal-Mart?\tthe product\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the product, found at, Wal-Mart) -> the product (2681ms)\nWho founded Wal-Mart?\tSandwich containers\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Sandwich containers, can be found at, Wal-Mart) -> Sandwich containers (2695ms)\nWho founded Wal-Mart?\tthe states\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the states, find, a Wal-Mart) -> the states (2654ms)\nWho founded Wal-Mart?\tKantar\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Kantar, found, Wal-Mart) -> Kantar (2668ms)\nWho founded Wal-Mart?\ta clothes line and can?t\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a clothes line and can?t, find one at, Wal Mart) -> a clothes line and can?t (2721ms)\nWho founded Wal-Mart?\talcohol\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (alcohol, even find, a Wal-Mart) -> alcohol (2654ms)\nWho founded Wal-Mart?\tthe type\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the type, found at, Wal-Mart) -> the type (2721ms)\nWho founded Wal-Mart?\tMrs. H\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, discover, walmart) -> (Mrs. H, discovered, Walmart) -> Mrs. H (2668ms)\nWho founded Wal-Mart?\tOregon\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Oregon, found, Wal-Mart guilty) -> Oregon (2654ms)\nWho founded Wal-Mart?\tBasker and Noel\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Basker and Noel, find, that Wal-Mart) -> Basker and Noel (2708ms)\nWho founded Wal-Mart?\t3-D Paint\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (3-D Paint, found at, Wal-Mart) -> 3-D Paint (2681ms)\nWho founded Wal-Mart?\ta tool box\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a tool box, found at, Wal-Mart) -> a tool box (2654ms)\nWho founded Wal-Mart?\tthe inexpensive needles\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the inexpensive needles, found at, Wal-Mart) -> the inexpensive needles (2654ms)\nWho founded Wal-Mart?\tJanuary Lee County zoning staff\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (January Lee County zoning staff, found, Wal-Mart) -> January Lee County zoning staff (2654ms)\nWho founded Wal-Mart?\tCimarron\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Cimarron, then found, the Wal-Mart) -> Cimarron (2708ms)\nWho founded Wal-Mart?\tSimilar items\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Similar items, can be found at, Wal-Mart) -> Similar items (2694ms)\nWho founded Wal-Mart?\ta Wal-Mart Supercenter\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a Wal-Mart Supercenter, found, Wal-Mart) -> a Wal-Mart Supercenter (2695ms)\nWho founded Wal-Mart?\tFrankfort\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Frankfort, finally found, freggin Wal Mart) -> Frankfort (2668ms)\nWho founded Wal-Mart?\tthe union\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the union, has found, Wal-Mart nearly) -> the union (2681ms)\nWho founded Wal-Mart?\tthe stuff\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the stuff, find at, WalMart) -> the stuff (2695ms)\nWho founded Wal-Mart?\tSeveral states\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Several states, have found, Wal-Mart workers) -> Several states (2708ms)\nWho founded Wal-Mart?\ta plastic trading card sleeve\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a plastic trading card sleeve, found at, WalMart) -> a plastic trading card sleeve (2708ms)\nWho founded Wal-Mart?\tCLW\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (CLW, has found, that Wal-Mart) -> CLW (2708ms)\nWho founded Wal-Mart?\ta 3$ scarf i\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a 3$ scarf i, found at, Wal-mart) -> a 3$ scarf i (2668ms)\nWho founded Wal-Mart?\tcustomers\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (customers, find great value at, Wal-Mart) -> customers (2708ms)\nWho founded Wal-Mart?\tthe bargains\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the bargains, find at, Wal-Mart) -> the bargains (2681ms)\nWho founded Wal-Mart?\tThe Ranch Style Beans\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (The Ranch Style Beans, can be found at, Wal Mart) -> The Ranch Style Beans (2668ms)\nWho founded Wal-Mart?\tBaja California\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Baja California, can find, a Wal-Mart) -> Baja California (2708ms)\nWho founded Wal-Mart?\tKelly\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Kelly, found, a Wal-Mart) -> Kelly (2681ms)\nWho founded Wal-Mart?\tnew electronic gifts\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (new electronic gifts, found at, Wal-Mart) -> new electronic gifts (2668ms)\nWho founded Wal-Mart?\tCR2032\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (CR2032, are commonly found at, Wal-Mart) -> CR2032 (2721ms)\nWho founded Wal-Mart?\tweights and measures\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (weights and measures, found, 164 Wal-Marts) -> weights and measures (2681ms)\nWho founded Wal-Mart?\tthe Pure Ice brand\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the Pure Ice brand, is found mostly at, Wal-Mart) -> the Pure Ice brand (2695ms)\nWho founded Wal-Mart?\twhite sculpy clay\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (white sculpy clay, can be found at, Wal-Mart) -> white sculpy clay (2708ms)\nWho founded Wal-Mart?\tThe kind\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (The kind, can find at, Wal-Mart) -> The kind (2654ms)\nWho founded Wal-Mart?\tHearing officer\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Hearing officer, found, Wal-Mart Stores) -> Hearing officer (2708ms)\nWho founded Wal-Mart?\tprivate labels\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (private labels, find, Wal-Mart) -> private labels (2695ms)\nWho founded Wal-Mart?\tthe photo\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the photo, found this set at, a Wal-Mart) -> the photo (2708ms)\nWho founded Wal-Mart?\tA Florida jury\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (A Florida jury, finds, Wal-Mart liable) -> A Florida jury (2668ms)\nWho founded Wal-Mart?\tpet food\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (pet food, found at, Wal*Mart) -> pet food (2654ms)\nWho founded Wal-Mart?\tGil\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Gil, found a job at, Wal-Mart) -> Gil (2681ms)\nWho founded Wal-Mart?\tBell\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Bell, found at, Wal-Mart) -> Bell (2681ms)\nWho founded Wal-Mart?\tMissing special-needs teen\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Missing special-needs teen, found at, Wal-Mart) -> Missing special-needs teen (2668ms)\nWho founded Wal-Mart?\tscrapbooking supplies\t0.44444444444\tWho founded Wal-Mart? -> $x: ($x, find, wal mart) -> (scrapbooking supplies, found at, Wal-Mart) -> scrapbooking supplies (2681ms)\nWho founded Wal-Mart?\tAmericans\t0.44444444443899994\tWho founded Wal-Mart? -> $x: ($x, invent, walmart) -> (Americans, invented, Walmart and people) -> Americans (2721ms)\nWho founded Wal-Mart?\tmoney selling hamburgers\t0.44444444443899994\tWho founded Wal-Mart? -> $x: ($x, invent, walmart) -> (money selling hamburgers, invent, Wal-Mart) -> money selling hamburgers (2722ms)\nWho founded Wal-Mart?\tRocky Mountain Recycling\t0.44444444443899994\tWho founded Wal-Mart? -> $x: ($x, invent, walmart) -> (Rocky Mountain Recycling, invented the process for, Wal-Mart) -> Rocky Mountain Recycling (2722ms)\nWho founded Wal-Mart?\tAmerican?s\t0.44444444443899994\tWho founded Wal-Mart? -> $x: ($x, invent, walmart) -> (American?s, invented, Walmart and people) -> American?s (2722ms)\nWho founded Wal-Mart?\twww.walmart.ca\t0.33333333333099996\tWho founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Walmart Canada, can be found by visiting, www.walmart.ca) -> www.walmart.ca (2735ms)\nWho founded Wal-Mart?\twww.walmartstores.com/\t0.33333333333099996\tWho founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Walmart, can be found by visiting, www.walmartstores.com/) -> www.walmartstores.com/ (2722ms)\nWho founded Wal-Mart?\twalmartstores.com\t0.33333333333099996\tWho founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Walmart, can be found by visiting, walmartstores.com) -> walmartstores.com (2722ms)\nWho founded Wal-Mart?\thttp://en.wikipedia.org/wiki/Walmart%20Canada\t0.33333333333099996\tWho founded Wal-Mart? -> $x: (walmart, be find on, $x) -> (walmart canada, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Walmart%20Canada) -> http://en.wikipedia.org/wiki/Walmart%20Canada (2722ms)\nWho founded Wal-Mart?\twww.WalMart.com\t0.33333333333099996\tWho founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Wal-Mart, can be found by visiting, www.WalMart.com) -> www.WalMart.com (2722ms)\nWho founded Wal-Mart?\twww.walmartstores.com\t0.33333333333099996\tWho founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Walmart, can be found by visiting, www.walmartstores.com) -> www.walmartstores.com (2735ms)\nWho founded Wal-Mart?\tWarren Buffett\t0.22222222221999993\tWho founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Warren Buffett, had established trust with, Wal-Mart) -> Warren Buffett (2773ms)\nWho founded Wal-Mart?\tWal-Mart\t0.22222222221999993\tWho founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Wal-Mart, will establish, a Wal-Mart Business Development Team) -> Wal-Mart (2773ms)\nWho founded Wal-Mart?\tSam Walton\t0.22222222221999993\tWho founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Sam Walton, established, Wal-Mart) -> Sam Walton (2773ms)\nWho founded Wal-Mart?\tWalton family\t0.22222222221999993\tWho founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Walton family, established, Wal-Mart Stores) -> Walton family (2773ms)\nWho founded Wal-Mart?\tevidence\t0.22222222221999993\tWho founded Wal-Mart? -> $x: ($x, establish, walmart) -> (evidence, convincingly establishes is, Wal-Mart?s ?policy ?) -> evidence (2773ms)\nWho founded Wal-Mart?\tbusiness\t0.22222222221999993\tWho founded Wal-Mart? -> $x: ($x, establish, walmart) -> (business, established, the worldwide Wal-Mart chain) -> business (2773ms)\nWho founded Wal-Mart?\tStores\t0.22222222221999993\tWho founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Stores, establish near, Walmart) -> Stores (2773ms)\nWho founded Wal-Mart?\tfederal court\t0.22222222221899995\tWho founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart, was found guilty in, federal court) -> federal court (2773ms)\nWho founded Wal-Mart?\t35 states\t0.22222222221899995\tWho founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart subsidy deals, were found in, 35 states) -> 35 states (2786ms)\nWho founded Wal-Mart?\ta good number\t0.22222222221899995\tWho founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Walmart wedding cakes, can be found in, a good number) -> a good number (2786ms)\nWho founded Wal-Mart?\t10\t0.22222222221899995\tWho founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart, has been found guilty in, 10) -> 10 (2773ms)\nWho founded Wal-Mart?\ta February 2004 report\t0.22222222221899995\tWho founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart, is to be found in, a February 2004 report) -> a February 2004 report (2773ms)\nWho founded Wal-Mart?\tpublic restrooms\t0.22222222221899995\tWho founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart customers, can be found in, public restrooms) -> public restrooms (2773ms)\nWho founded Wal-Mart?\tdisposable pastry bags\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (disposable pastry bags, can be found at, Michaels and Walmart) -> disposable pastry bags (2798ms)\nWho founded Wal-Mart?\tthe logo\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (the logo, can be found on, Walmart?s site) -> the logo (2810ms)\nWho founded Wal-Mart?\teight weeks\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (eight weeks, can be found at, Wal-Mart) -> eight weeks (2834ms)\nWho founded Wal-Mart?\tBelgium\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (Belgium, can be found on, the Walmart) -> Belgium (2810ms)\nWho founded Wal-Mart?\tThe full list\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The full list, can be found on, Walmarts website) -> The full list (2798ms)\nWho founded Wal-Mart?\tThe spudtrooper\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The spudtrooper, was found today at, Wal-Mart) -> The spudtrooper (2822ms)\nWho founded Wal-Mart?\tproduct\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (product, can be found on, Walmart store shelves) -> product (2822ms)\nWho founded Wal-Mart?\tInexpensive inflatable owls\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (Inexpensive inflatable owls, can be found at, your local Walmart) -> Inexpensive inflatable owls (2798ms)\nWho founded Wal-Mart?\ta Rachel\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (a Rachel, can be found at, any local Walmart) -> a Rachel (2847ms)\nWho founded Wal-Mart?\tnine-year-old Jasmine Bishara\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (nine-year-old Jasmine Bishara, was found safe at, a Walmart) -> nine-year-old Jasmine Bishara (2810ms)\nWho founded Wal-Mart?\tJasmine Bishara\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (Jasmine Bishara, was found safe at, a Walmart) -> Jasmine Bishara (2822ms)\nWho founded Wal-Mart?\tfigures\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (figures, are being found at, Wal-Mart stores) -> figures (2822ms)\nWho founded Wal-Mart?\tmeth\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (meth, can be found at, WalMart) -> meth (2786ms)\nWho founded Wal-Mart?\tThe new Star Wars sticker books\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The new Star Wars sticker books, have been found at, Wal-Mart) -> The new Star Wars sticker books (2834ms)\nWho founded Wal-Mart?\tTwo more syringes\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (Two more syringes, were found at, a Cartersville Walmart store) -> Two more syringes (2798ms)\nWho founded Wal-Mart?\tThe woman?s vehicle\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The woman?s vehicle, was later found at, a nearby Walmart) -> The woman?s vehicle (2834ms)\nWho founded Wal-Mart?\tThe suspect\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The suspect, was found at, a nearby Walmart) -> The suspect (2834ms)\nWho founded Wal-Mart?\t? variety\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (? variety, would be found at, Wal-Mart) -> ? variety (2810ms)\nWho founded Wal-Mart?\ta certain grand confection\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (a certain grand confection, Was found at, Wal-Mart) -> a certain grand confection (2834ms)\nWho founded Wal-Mart?\tclear coat\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (clear coat, be found at, Wal-Mart) -> clear coat (2798ms)\nWho founded Wal-Mart?\twhite cardstock paper\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (white cardstock paper, can be found at, Wal-Mart) -> white cardstock paper (2786ms)\nWho founded Wal-Mart?\tsmall vehicles\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (small vehicles, can be found at, Wal-Mart) -> small vehicles (2834ms)\nWho founded Wal-Mart?\t09:23 AM CST C & D Visionary products\t0.11111111110899996\tWho founded Wal-Mart? -> $x: ($x, be found, walmart) -> (09:23 AM CST C & D Visionary products, can be found at, Wal-Mart) -> 09:23 AM CST C & D Visionary products (2834ms)\nWho founded Wal-Mart?\tthe figures\t0.111111111108\tWho founded Wal-Mart? -> $x: ($x, find, walmart store) -> (the figures, are being found at, both Target and Wal-Mart stores) -> the figures (2857ms)\nWho founded Wal-Mart?\ta green foam\t0.111111111108\tWho founded Wal-Mart? -> $x: ($x, find, walmart store) -> (a green foam, can be found at, your Walmart or hobby store) -> a green foam (2847ms)\nWho founded Wal-Mart?\tThe same price\t0.111111111108\tWho founded Wal-Mart? -> $x: ($x, find, walmart store) -> (The same price, can be found on, the Walmart online store) -> The same price (2847ms)\nWho founded Wal-Mart?\ta brand\t0.111111111108\tWho founded Wal-Mart? -> $x: ($x, find, walmart store) -> (a brand, found at, both Wal-marts and department stores) -> a brand (2847ms)\nWho founded Wal-Mart?\ta man\t0.111111111108\tWho founded Wal-Mart? -> $x: ($x, find, walmart store) -> (a man, was found dead behind, a Walmart store) -> a man (2847ms)\nWho founded Wal-Mart?\tMONEYGRAM\t0.111111111108\tWho founded Wal-Mart? -> $x: ($x, find, walmart store) -> (MONEYGRAM, found at, every WALMART store) -> MONEYGRAM (2857ms)\nWho founded Wal-Mart?\tThe white pickup\t0.111111111108\tWho founded Wal-Mart? -> $x: ($x, find, walmart store) -> (The white pickup, was found later at, a Wal-Mart store) -> The white pickup (2847ms)\nWho founded Wal-Mart?\ttrays and carts\t0.111111111108\tWho founded Wal-Mart? -> $x: ($x, find, walmart store) -> (trays and carts, find at, stores like Target or Wal-Mart) -> trays and carts (2857ms)\nWho founded Wal-Mart?\twork\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (work, can be found at, Wal-Mart) -> work (2894ms)\nWho founded Wal-Mart?\tSilk Fruit&Protein\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Silk Fruit&Protein, is easily found at, your local Wal-mart) -> Silk Fruit&Protein (2894ms)\nWho founded Wal-Mart?\tNatural brushes\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Natural brushes, can be found at, Target , Wal-Mart or K-Mart) -> Natural brushes (2902ms)\nWho founded Wal-Mart?\tThe one above\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The one above, was recently found at, a Wal-Mart) -> The one above (2902ms)\nWho founded Wal-Mart?\tthe chemical\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the chemical, have been found at, Target , Wal-Mart and Babies) -> the chemical (2885ms)\nWho founded Wal-Mart?\tColeman\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Coleman, can also be found at, Wal-Mart) -> Coleman (2885ms)\nWho founded Wal-Mart?\tA good GPSr\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (A good GPSr, can be found at, a Super Wal-mart) -> A good GPSr (2876ms)\nWho founded Wal-Mart?\tthe Cushing crime scene\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the Cushing crime scene, was also found at, that Wal-Mart) -> the Cushing crime scene (2911ms)\nWho founded Wal-Mart?\tthe Striking Z Fighters\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the Striking Z Fighters, have been found at, Wal-Mart) -> the Striking Z Fighters (2885ms)\nWho founded Wal-Mart?\tOxiClean Versatile Stain Remover\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (OxiClean Versatile Stain Remover, can be found at, Wal-Mart) -> OxiClean Versatile Stain Remover (2876ms)\nWho founded Wal-Mart?\treaders\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (readers, can be found at, Wal-Mart) -> readers (2911ms)\nWho founded Wal-Mart?\tCarolina Pad arts and crafts items\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Carolina Pad arts and crafts items, can be found at, Wal-Mart) -> Carolina Pad arts and crafts items (2902ms)\nWho founded Wal-Mart?\tClinton\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Clinton, is finding her past ties to, Wal-Mart too) -> Clinton (2911ms)\nWho founded Wal-Mart?\tUltimate Game Cards\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Ultimate Game Cards, currently can be found at, select Wal-Marts) -> Ultimate Game Cards (2885ms)\nWho founded Wal-Mart?\tthe HALO ? Sleep Sack\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the HALO ? Sleep Sack, can be found at, Wal-Mart) -> the HALO ? Sleep Sack (2876ms)\nWho founded Wal-Mart?\tThe spray paint\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The spray paint, can also be found at, Wal-Mart) -> The spray paint (2902ms)\nWho founded Wal-Mart?\tviolations\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (violations, were found throughout, the Wal-Mart system) -> violations (2894ms)\nWho founded Wal-Mart?\tUtapau\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Utapau, has been found at, Wal-Mart) -> Utapau (2885ms)\nWho founded Wal-Mart?\tThe lists\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The lists, below can also be found at, Wal-mart and Target) -> The lists (2893ms)\nWho founded Wal-Mart?\tThe clothes\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The clothes, can be found from, WalMart) -> The clothes (2902ms)\nWho founded Wal-Mart?\tthe environment\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the environment, can be found at, www.VermontWalMartWatch .org) -> the environment (2885ms)\nWho founded Wal-Mart?\tbasketball team\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (basketball team, could be found outside, the local Wal-Mart) -> basketball team (2902ms)\nWho founded Wal-Mart?\tso few American made items\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (so few American made items, can be found at, Wal-Mart) -> so few American made items (2911ms)\nWho founded Wal-Mart?\ta flavoring oil & yes\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (a flavoring oil & yes, can usually be found at, Wal-Mart) -> a flavoring oil & yes (2894ms)\nWho founded Wal-Mart?\tthe above photo\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the above photo, were found these at, the Wal-Mart) -> the above photo (2894ms)\nWho founded Wal-Mart?\tThe white prison truck\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The white prison truck, was found near, a Wal-Mart) -> The white prison truck (2894ms)\nWho founded Wal-Mart?\tThe real challenge\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The real challenge, is n?t finding, the Wal-Marts) -> The real challenge (2894ms)\nWho founded Wal-Mart?\tAloe Vera\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Aloe Vera, can now be found at, your local Wal-Mart) -> Aloe Vera (2885ms)\nWho founded Wal-Mart?\tCombat? Ant Baits and Gels\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Combat? Ant Baits and Gels, can be found at, your local Wal-Mart) -> Combat? Ant Baits and Gels (2911ms)\nWho founded Wal-Mart?\tthe bag\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the bag, could easily be found at, WalMart) -> the bag (2902ms)\nWho founded Wal-Mart?\tBeautiful blank books\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Beautiful blank books, can be found at, Wal-Mart) -> Beautiful blank books (2902ms)\nWho founded Wal-Mart?\tInexpensive ones\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Inexpensive ones, can be found at, Wal-Mart) -> Inexpensive ones (2911ms)\nWho founded Wal-Mart?\titem\t-0.111111111112\tWho founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (item, was still being found on, Wal-Mart shelves) -> item (2876ms)\nWho founded Wal-Mart?\tthe most venerated managers\t-0.222222222225\tWho founded Wal-Mart? -> $x: ($x, be founder of, walmart) -> (the most venerated managers, is the founder of, Wal-Mart) -> the most venerated managers (2919ms)\nWho founded Wal-Mart?\tcentral Florida\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (central Florida, have formed, the Wal-Mart Workers Association) -> central Florida (2952ms)\nWho founded Wal-Mart?\ta group\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (a group, formed to fight, the Wal-Mart project) -> a group (2975ms)\nWho founded Wal-Mart?\ta city-wide coalition\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (a city-wide coalition, formed to oppose, two proposed Wal-Marts) -> a city-wide coalition (2960ms)\nWho founded Wal-Mart?\tMassmart\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (Massmart, will merge to form, Wal-Mart South Africa) -> Massmart (2936ms)\nWho founded Wal-Mart?\tjob applications\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (job applications, form for, walmart picts) -> job applications (2952ms)\nWho founded Wal-Mart?\tStarbucks\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (Starbucks, form, the Wal-Marts) -> Starbucks (2952ms)\nWho founded Wal-Mart?\tportable toilets\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (portable toilets, form, Wal-Mart) -> portable toilets (2944ms)\nWho founded Wal-Mart?\tdishes\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (dishes, form, WAL-mart) -> dishes (2960ms)\nWho founded Wal-Mart?\tthe toy market\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (the toy market, only form, Wal-Mart) -> the toy market (2975ms)\nWho founded Wal-Mart?\ta copy\t-0.44444444444700004\tWho founded Wal-Mart? -> $x: ($x, form, walmart) -> (a copy, form, his local Walmart) -> a copy (2975ms)\nWho founded Wal-Mart?\tForce Unleashed figures\t-0.888888888888\tWho founded Wal-Mart? -> $x: ($x, have find, walmart) -> (Force Unleashed figures, have found their way to, Wal-Mart) -> Force Unleashed figures (3018ms)\nWho founded Wal-Mart?\tthe teenager\t-0.888888888888\tWho founded Wal-Mart? -> $x: ($x, have find, walmart) -> (the teenager, had been found safe at, a Panhandle Walmart) -> the teenager (3018ms)\nWho founded Wal-Mart?\tthe international union\t-0.888888888888\tWho founded Wal-Mart? -> $x: ($x, have find, walmart) -> (the international union, has found more success with, Wal-Mart) -> the international union (3018ms)\nWho founded Wal-Mart?\tR4-P17\t-0.888888888888\tWho founded Wal-Mart? -> $x: ($x, have find, walmart) -> (R4-P17, has been found at, a Louisville area Wal-Mart) -> R4-P17 (3018ms)\nWho founded Wal-Mart?\tmore workers\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (?Wal-Mart, was found to have, more workers) -> more workers (3042ms)\nWho founded Wal-Mart?\thouse advertising\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has found, house advertising) -> house advertising (3042ms)\nWho founded Wal-Mart?\tworkers\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has found an unlimited pool of, workers) -> workers (3042ms)\nWho founded Wal-Mart?\tthousands\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has been found to have, thousands) -> thousands (3037ms)\nWho founded Wal-Mart?\tsocial media success time and time\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Walmart, have failed to find, social media success time and time) -> social media success time and time (3042ms)\nWho founded Wal-Mart?\ttwo other units\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart investigators, have found, two other units) -> two other units (3042ms)\nWho founded Wal-Mart?\tsuccess\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has found, success) -> success (3042ms)\nWho founded Wal-Mart?\temployment gains\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, were found to have, employment gains) -> employment gains (3037ms)\nWho founded Wal-Mart?\tthe girl\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, have yet to find, the girl) -> the girl (3037ms)\nWho founded Wal-Mart?\tzero people\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart stores, have so far found exactly, zero people) -> zero people (3037ms)\nWho founded Wal-Mart?\tgreater liability\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal*Mart, has been found to have much, greater liability) -> greater liability (3037ms)\nWho founded Wal-Mart?\tsolid footing online\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has struggled to find, solid footing online) -> solid footing online (3042ms)\nWho founded Wal-Mart?\ta new groove\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Walmart, seems to have found, a new groove) -> a new groove (3037ms)\nWho founded Wal-Mart?\ta successful tactic\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Walmart, has found, a successful tactic) -> a successful tactic (3042ms)\nWho founded Wal-Mart?\tsolutions\t-1.111111111118\tWho founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Walmart, has also found plenty of, solutions) -> solutions (3042ms)\nWho founded Wal-Mart?\tgreat deals\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, is the best place to find, great deals) -> great deals (3061ms)\nWho founded Wal-Mart?\tBrad?s Mom\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart &, found, Brad?s Mom) -> Brad?s Mom (3065ms)\nWho founded Wal-Mart?\ta Dumpster\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, a Dumpster) -> a Dumpster (3047ms)\nWho founded Wal-Mart?\temployee conversations\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, finds, employee conversations) -> employee conversations (3057ms)\nWho founded Wal-Mart?\tonline specials\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (100 % Success FEATURED DEAL Shop Walmart, find, online specials) -> online specials (3065ms)\nWho founded Wal-Mart?\tGrapette\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (the new Wal-Mart, found, Grapette) -> Grapette (3065ms)\nWho founded Wal-Mart?\tthe 5th\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (walmart but i cant, find, the 5th) -> the 5th (3061ms)\nWho founded Wal-Mart?\thounds\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (a Walmart, found a box full of, hounds) -> hounds (3065ms)\nWho founded Wal-Mart?\tan item\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (a Walmart, find, an item) -> an item (3065ms)\nWho founded Wal-Mart?\tthe NAACP\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the NAACP) -> the NAACP (3057ms)\nWho founded Wal-Mart?\tcosts\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, could find other ways to cut, costs) -> costs (3057ms)\nWho founded Wal-Mart?\toptimal price points\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (leverage Wal-Mart, find, optimal price points) -> optimal price points (3052ms)\nWho founded Wal-Mart?\tthe suppliers\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the suppliers) -> the suppliers (3052ms)\nWho founded Wal-Mart?\taverage gross margins\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart?s retail generic prices, found, average gross margins) -> average gross margins (3047ms)\nWho founded Wal-Mart?\tan attacker\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, finds, an attacker) -> an attacker (3057ms)\nWho founded Wal-Mart?\tthe latest laptop and desktop computers\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart.com, Find, the latest laptop and desktop computers) -> the latest laptop and desktop computers (3061ms)\nWho founded Wal-Mart?\tthe companies\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-mart, found, the companies) -> the companies (3052ms)\nWho founded Wal-Mart?\t3 packs\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-mart, found, 3 packs) -> 3 packs (3052ms)\nWho founded Wal-Mart?\tHewlett-Packard products\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart stores, find, Hewlett-Packard products) -> Hewlett-Packard products (3061ms)\nWho founded Wal-Mart?\texpert advice\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, expert advice) -> expert advice (3052ms)\nWho founded Wal-Mart?\ttwo loopholes\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, two loopholes) -> two loopholes (3061ms)\nWho founded Wal-Mart?\tquality kitchen and home appliances\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, Find, quality kitchen and home appliances) -> quality kitchen and home appliances (3061ms)\nWho founded Wal-Mart?\t10 human teeth\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (a Wal-Mart, found, 10 human teeth) -> 10 human teeth (3061ms)\nWho founded Wal-Mart?\tthe Flavor-it kit\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (WalMart, found, the Flavor-it kit) -> the Flavor-it kit (3042ms)\nWho founded Wal-Mart?\tevidence of widespread bribery\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, evidence of widespread bribery) -> evidence of widespread bribery (3047ms)\nWho founded Wal-Mart?\tsmaller towels\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, was meant to find, smaller towels) -> smaller towels (3052ms)\nWho founded Wal-Mart?\tthe job\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, the job) -> the job (3052ms)\nWho founded Wal-Mart?\ta similar product\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (walmart, find, a similar product) -> a similar product (3057ms)\nWho founded Wal-Mart?\tmore foodz\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, find, more foodz) -> more foodz (3061ms)\nWho founded Wal-Mart?\teach child\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, was able to find, each child) -> each child (3065ms)\nWho founded Wal-Mart?\tMiss H\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (any Wal-Mart or Target, find, Miss H) -> Miss H (3065ms)\nWho founded Wal-Mart?\tleast five SD cards\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart ?, found at, least five SD cards) -> least five SD cards (3057ms)\nWho founded Wal-Mart?\tstuff for an affordable price\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, for finding, stuff for an affordable price) -> stuff for an affordable price (3061ms)\nWho founded Wal-Mart?\tcompetitive advantage\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, competitive advantage) -> competitive advantage (3047ms)\nWho founded Wal-Mart?\tprom dress fabric\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, found, prom dress fabric) -> prom dress fabric (3047ms)\nWho founded Wal-Mart?\tthe negotiating leverage\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the negotiating leverage) -> the negotiating leverage (3057ms)\nWho founded Wal-Mart?\tArpan\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart store security, found, Arpan) -> Arpan (3057ms)\nWho founded Wal-Mart?\tsingle white onesies\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, found, single white onesies) -> single white onesies (3042ms)\nWho founded Wal-Mart?\t13 entries\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, 13 entries) -> 13 entries (3057ms)\nWho founded Wal-Mart?\texclusive deals and discounts\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart etc, find, exclusive deals and discounts) -> exclusive deals and discounts (3052ms)\nWho founded Wal-Mart?\tan ?Angel Tree\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, find, an ?Angel Tree) -> an ?Angel Tree (3047ms)\nWho founded Wal-Mart?\toverwhelming evidence\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (?walmart, find, overwhelming evidence) -> overwhelming evidence (3057ms)\nWho founded Wal-Mart?\tthe M&M?s\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the M&M?s) -> the M&M?s (3047ms)\nWho founded Wal-Mart?\tthe message\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, found out, the message) -> the message (3047ms)\nWho founded Wal-Mart?\tseveral full suspension mountain bikes\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, several full suspension mountain bikes) -> several full suspension mountain bikes (3057ms)\nWho founded Wal-Mart?\tthe perfect present\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (WalMart, Find, the perfect present) -> the perfect present (3042ms)\nWho founded Wal-Mart?\tjewelry\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (wal-mart, find, jewelry) -> jewelry (3061ms)\nWho founded Wal-Mart?\tthe latest changes\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart consumers, will find out, the latest changes) -> the latest changes (3052ms)\nWho founded Wal-Mart?\tthe quote\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the quote) -> the quote (3052ms)\nWho founded Wal-Mart?\tWestern or household items\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, is a good place to find, Western or household items) -> Western or household items (3065ms)\nWho founded Wal-Mart?\ta kid\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, a kid) -> a kid (3065ms)\nWho founded Wal-Mart?\tthe supplier section\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart National Program 1, find, the supplier section) -> the supplier section (3047ms)\nWho founded Wal-Mart?\tan easier job\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, find, an easier job) -> an easier job (3065ms)\nWho founded Wal-Mart?\tthe mockingjay pin\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, the mockingjay pin) -> the mockingjay pin (3047ms)\nWho founded Wal-Mart?\tcondos\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, condos) -> condos (3065ms)\nWho founded Wal-Mart?\tthe Top 200 Books\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart.com, Find, the Top 200 Books) -> the Top 200 Books (3061ms)\nWho founded Wal-Mart?\ta recycling bin\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (the Oakland Wal-Mart, find, a recycling bin) -> a recycling bin (3052ms)\nWho founded Wal-Mart?\tgreat prices\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, Find, great prices) -> great prices (3047ms)\nWho founded Wal-Mart?\ta paper trail of hundreds of suspect payments\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, a paper trail of hundreds of suspect payments) -> a paper trail of hundreds of suspect payments (3042ms)\nWho founded Wal-Mart?\tGermany\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, would find, Germany) -> Germany (3047ms)\nWho founded Wal-Mart?\tminimum-wage workers\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, find, minimum-wage workers) -> minimum-wage workers (3061ms)\nWho founded Wal-Mart?\tDelaney playing games\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, Delaney playing games) -> Delaney playing games (3057ms)\nWho founded Wal-Mart?\tbittersweet stems\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, bittersweet stems) -> bittersweet stems (3061ms)\nWho founded Wal-Mart?\tthe right air conditioners\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, Find, the right air conditioners) -> the right air conditioners (3057ms)\nWho founded Wal-Mart?\tthe information\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find the rest of, the information) -> the information (3042ms)\nWho founded Wal-Mart?\tonline\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, were found, online) -> online (3052ms)\nWho founded Wal-Mart?\tnew business opportunities\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart?s suppliers, find, new business opportunities) -> new business opportunities (3047ms)\nWho founded Wal-Mart?\tthe most useful lawn and garden equipment\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, Find, the most useful lawn and garden equipment) -> the most useful lawn and garden equipment (3047ms)\nWho founded Wal-Mart?\tguilty\t-1.111111111119\tWho founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, was found, guilty) -> guilty (3065ms)\nWho founded Wal-Mart?\tShenzhen\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, Shenzhen) -> Shenzhen (3070ms)\nWho founded Wal-Mart?\ta monopoly\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, had established, a monopoly) -> a monopoly (3081ms)\nWho founded Wal-Mart?\ta price\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (?Walmart, establishes, a price) -> a price (3078ms)\nWho founded Wal-Mart?\tany item\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Coupons Wal-Mart, is the place to go to find, any item) -> any item (3078ms)\nWho founded Wal-Mart?\tCanada\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, was established in, Canada) -> Canada (3078ms)\nWho founded Wal-Mart?\tunions\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, agreed to establish, unions) -> unions (3074ms)\nWho founded Wal-Mart?\tWikipedia\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart brands, can be found at, Wikipedia) -> Wikipedia (3085ms)\nWho founded Wal-Mart?\t1994\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart Canada, was established in, 1994) -> 1994 (3074ms)\nWho founded Wal-Mart?\tcompetent Friday\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (a Wal-Mart parking lot, was found, competent Friday) -> competent Friday (3069ms)\nWho founded Wal-Mart?\ta rigorous price inspection system\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (WalMart, agreed to establish, a rigorous price inspection system) -> a rigorous price inspection system (3082ms)\nWho founded Wal-Mart?\tenergy-efficiency requirements\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart brass, will establish, energy-efficiency requirements) -> energy-efficiency requirements (3070ms)\nWho founded Wal-Mart?\tChile\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Carrefour or Wal-mart, have been established in, Chile) -> Chile (3070ms)\nWho founded Wal-Mart?\tthe line\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, established, the line) -> the line (3085ms)\nWho founded Wal-Mart?\tthemselves\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (a Wal-Mart, established, themselves) -> themselves (3085ms)\nWho founded Wal-Mart?\tnorms\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has established as, norms) -> norms (3070ms)\nWho founded Wal-Mart?\ta reputation\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has established, a reputation) -> a reputation (3078ms)\nWho founded Wal-Mart?\tfact\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Jostle Your current Paradigm Wal-Mart, established, fact) -> fact (3085ms)\nWho founded Wal-Mart?\tinexpensive silica-Gel\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, is one place to find, inexpensive silica-Gel) -> inexpensive silica-Gel (3078ms)\nWho founded Wal-Mart?\tNovember 2005\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (the Wal-Mart outlet, was established in, November 2005) -> November 2005 (3078ms)\nWho founded Wal-Mart?\tretail earnings\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (a new Wal-Mart, is found to reduce, retail earnings) -> retail earnings (3074ms)\nWho founded Wal-Mart?\tthe place\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has successfully established its brand as, the place) -> the place (3085ms)\nWho founded Wal-Mart?\texperiment\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (walmart and tesco, are finding a need to, experiment) -> experiment (3082ms)\nWho founded Wal-Mart?\twww.walmartfoundation .org\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart Stores, can be found at, www.walmartfoundation .org) -> www.walmartfoundation .org (3082ms)\nWho founded Wal-Mart?\tsocial , human rights\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, establish a set of, social , human rights) -> social , human rights (3089ms)\nWho founded Wal-Mart?\tfarmed shrimp\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has established standards for, farmed shrimp) -> farmed shrimp (3078ms)\nWho founded Wal-Mart?\tthe Sam Walton Business Leader Award\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, the Sam Walton Business Leader Award) -> the Sam Walton Business Leader Award (3081ms)\nWho founded Wal-Mart?\tbetter shopping\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (The Walmart Shopper, is finding, better shopping) -> better shopping (3081ms)\nWho founded Wal-Mart?\tstores\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, stores) -> stores (3074ms)\nWho founded Wal-Mart?\ta profile\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, should 've established, a profile) -> a profile (3081ms)\nWho founded Wal-Mart?\tdeath\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (a Wal-Mart, was found shot to, death) -> death (3085ms)\nWho founded Wal-Mart?\tthe ?office\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, the ?office) -> the ?office (3070ms)\nWho founded Wal-Mart?\twalmart.com/schoolyourway\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (The Wal-Mart site, can be found at, walmart.com/schoolyourway) -> walmart.com/schoolyourway (3074ms)\nWho founded Wal-Mart?\ttrade unions\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, to establish, trade unions) -> trade unions (3070ms)\nWho founded Wal-Mart?\tWashington\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established a presence in, Washington) -> Washington (3078ms)\nWho founded Wal-Mart?\t2000 stores\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, has established, 2000 stores) -> 2000 stores (3085ms)\nWho founded Wal-Mart?\tfootprints\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart , Carrefour and Casino, established, footprints) -> footprints (3078ms)\nWho founded Wal-Mart?\ta Wal-Mart Business Development Team\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, will establish, a Wal-Mart Business Development Team) -> a Wal-Mart Business Development Team (3074ms)\nWho founded Wal-Mart?\tthe real people\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has worked to establish, the real people) -> the real people (3082ms)\nWho founded Wal-Mart?\tmissing children\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart associates, are determined to find, missing children) -> missing children (3074ms)\nWho founded Wal-Mart?\tsimple\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (2011 Walmart, established a list of, simple) -> simple (3074ms)\nWho founded Wal-Mart?\tthe distribution\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, will quickly be established as, the distribution) -> the distribution (3078ms)\nWho founded Wal-Mart?\tSouth Africa\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, may establish its African beachhead in, South Africa) -> South Africa (3085ms)\nWho founded Wal-Mart?\thigh levels\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, was found to be toxic with, high levels) -> high levels (3078ms)\nWho founded Wal-Mart?\tthe harmful chemical\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart stores, were found to be free of, the harmful chemical) -> the harmful chemical (3085ms)\nWho founded Wal-Mart?\tintimidation\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, was found guilty of, intimidation) -> intimidation (3074ms)\nWho founded Wal-Mart?\ta presence\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, establish, a presence) -> a presence (3074ms)\nWho founded Wal-Mart?\ta store-within-a-store display\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, a store-within-a-store display) -> a store-within-a-store display (3085ms)\nWho founded Wal-Mart?\tZone Manager\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established the position of, Zone Manager) -> Zone Manager (3085ms)\nWho founded Wal-Mart?\ta 2nd Tier program\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, a 2nd Tier program) -> a 2nd Tier program (3070ms)\nWho founded Wal-Mart?\tdiscrimination\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, was found innocent of, discrimination) -> discrimination (3082ms)\nWho founded Wal-Mart?\tHowell\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, was established under, Howell) -> Howell (3070ms)\nWho founded Wal-Mart?\tthe charges\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, was found to be guilty of, the charges) -> the charges (3081ms)\nWho founded Wal-Mart?\tliable\t-1.222222222229\tWho founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, is found, liable) -> liable (3082ms)\nWho founded Wal-Mart?\tthe breach\t-1.22222222223\tWho founded Wal-Mart? -> $x: (walmart, discover, $x) -> (Wal-Mart, discovered, the breach) -> the breach (3089ms)\nWho founded Wal-Mart?\tcard\t-1.22222222223\tWho founded Wal-Mart? -> $x: (walmart, discover, $x) -> (The walmart, discover, card) -> card (3089ms)\nWho founded Wal-Mart?\tThe Councils\t-1.22222222223\tWho founded Wal-Mart? -> $x: (walmart, be founder of, $x) -> (' Walmart ' Phil Terry, is the founder of, The Councils) -> The Councils (3089ms)\nWho founded Wal-Mart?\tthe payments\t-1.22222222223\tWho founded Wal-Mart? -> $x: (walmart, discover, $x) -> (Wal-Mart, discovered of, the payments) -> the payments (3089ms)\nWho founded Wal-Mart?\tchoices\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (walmart, found of, $x) -> (the nearest Wal-Mart, find hundreds of, choices) -> choices (3104ms)\nWho founded Wal-Mart?\tquality sites\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal Mart Employment Application sites, Find, quality sites) -> quality sites (3097ms)\nWho founded Wal-Mart?\tsuspect payments\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (walmart, found of, $x) -> (Wal-Mart investigators, found hundreds of, suspect payments) -> suspect payments (3097ms)\nWho founded Wal-Mart?\tthe retailing market\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, also found a back door into, the retailing market) -> the retailing market (3099ms)\nWho founded Wal-Mart?\telkhart indiana\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (wal mart isp, find details of, elkhart indiana) -> elkhart indiana (3099ms)\nWho founded Wal-Mart?\tstorage products\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (walmart, found of, $x) -> (Wal-Mart, Find a large selection of, storage products) -> storage products (3102ms)\nWho founded Wal-Mart?\tthe girls\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (walmart, found of, $x) -> (a Walmart employee, found partially nude pictures of, the girls) -> the girls (3104ms)\nWho founded Wal-Mart?\tthe sales\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found a link between, the sales) -> the sales (3102ms)\nWho founded Wal-Mart?\tthe hard way\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found this out, the hard way) -> the hard way (3094ms)\nWho founded Wal-Mart?\tan appropriately big way\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found trouble in, an appropriately big way) -> an appropriately big way (3099ms)\nWho founded Wal-Mart?\ta work-around\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, can always find, a work-around) -> a work-around (3097ms)\nWho founded Wal-Mart?\tthe XBox 360\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal Mart, find, the XBox 360) -> the XBox 360 (3102ms)\nWho founded Wal-Mart?\ttroublemakers\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (walmart, found of, $x) -> (Wal-Mart, will find a way to get rid of, troublemakers) -> troublemakers (3099ms)\nWho founded Wal-Mart?\tJuly Draggon Wagon\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found the 4th of, July Draggon Wagon) -> July Draggon Wagon (3102ms)\nWho founded Wal-Mart?\tLife Story magazine\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (walmart, found of, $x) -> (WalMart, found an issue of, Life Story magazine) -> Life Story magazine (3106ms)\nWho founded Wal-Mart?\tthe crappy plastic ones\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, only found, the crappy plastic ones) -> the crappy plastic ones (3092ms)\nWho founded Wal-Mart?\tthe accident\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (walmart, found of, $x) -> (A Wal-Mart employee, found the remains of, the accident) -> the accident (3097ms)\nWho founded Wal-Mart?\ta toddlers\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (WalMart products, found high lead levels in, a toddlers) -> a toddlers (3102ms)\nWho founded Wal-Mart?\tthe writings\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, suddenly finds, the writings) -> the writings (3102ms)\nWho founded Wal-Mart?\tlow prices\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found their?s in, low prices) -> low prices (3099ms)\nWho founded Wal-Mart?\tthe manager\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (WalMart, took the time to find, the manager) -> the manager (3104ms)\nWho founded Wal-Mart?\tsmaller fabric stores\t-1.3333333333400001\tWho founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart?s, could find their way back to, smaller fabric stores) -> smaller fabric stores (3097ms)\nWho founded Wal-Mart?\tthe cheapest land\t-1.666666666672\tWho founded Wal-Mart? -> $x: (walmart store, found, $x) -> (a store Wal-Mart, will find, the cheapest land) -> the cheapest land (3111ms)\nWho founded Wal-Mart?\t127\t-1.666666666672\tWho founded Wal-Mart? -> $x: (walmart store, found, $x) -> (July 2000 internal audit of 128 wal-mart stores, found, 127) -> 127 (3111ms)\nWhat is Susan B. Anthony's birthday?\tAdams\t0.555555555556\tWhat is Susan B. Anthony's birthday? -> $x: (susan b. anthony, be bear in, $x) -> (Suffragist Susan B. Anthony, is born in, Adams) -> Adams (510ms)\nWhat is Susan B. Anthony's birthday?\t1820\t0.555555555556\tWhat is Susan B. Anthony's birthday? -> $x: (susan b. anthony, be bear in, $x) -> (NY Susan B. Anthony, was born in, 1820) -> 1820 (510ms)\nWhat day did Pearl Harbor occur?\tDecember 7 , 1941\t1.111111111109\tWhat day did Pearl Harbor occur? -> $x: ($x, date be, pearl harbor) -> (December 7 , 1941, was the date of, the Pearl Harbor attack) -> December 7 , 1941 (874ms)\nWhat day did Pearl Harbor occur?\tterms\t1.111111111106\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, pearl harbor) -> (terms, happened in, Pearl Harbor) -> terms (874ms)\nWhat day did Pearl Harbor occur?\tJoe Strummer\t0.999999999999\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl harbor) -> (Joe Strummer, wore during, the 1979 Pearl Harbor tour) -> Joe Strummer (874ms)\nWhat day did Pearl Harbor occur?\tany\t0.88888888888\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, might have occurred in, any) -> any (874ms)\nWhat day did Pearl Harbor occur?\tDecember 1941\t0.88888888888\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, December 1941) -> December 1941 (874ms)\nWhat day did Pearl Harbor occur?\ta world\t0.88888888888\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, a world) -> a world (874ms)\nWhat day did Pearl Harbor occur?\tthe final episode\t0.88888888888\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (A global Pearl Harbor event, to occur in, the final episode) -> the final episode (874ms)\nWhat day did Pearl Harbor occur?\tDecember\t0.88888888888\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, December) -> December (917ms)\nWhat day did Pearl Harbor occur?\t1941\t0.88888888888\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (the Pearl Harbor attack, occurred in, 1941) -> 1941 (917ms)\nWhat day did Pearl Harbor occur?\tthe financial world\t0.5555555555489999\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, happen in, $x) -> (an economic Pearl Harbor, was happening in, the financial world) -> the financial world (917ms)\nWhat day did Pearl Harbor occur?\torder\t0.5555555555489999\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, happen in, $x) -> (Pearl Harbor, to happen in, order) -> order (917ms)\nWhat day did Pearl Harbor occur?\tDecember of 1941\t0.5555555555489999\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, happen in, $x) -> (Pearl Harbor, happened in, December of 1941) -> December of 1941 (917ms)\nWhat day did Pearl Harbor occur?\tNew York City\t0.5555555555489999\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, happen in, $x) -> (Pearl Harbor, happened in, New York City) -> New York City (970ms)\nWhat day did Pearl Harbor occur?\tjust\t0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, pearl harbor) -> (just, happened to, Pearl Harbor Day) -> just (970ms)\nWhat day did Pearl Harbor occur?\tnumerous viewers\t0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, pearl harbor) -> (numerous viewers, happened to, Pearl Harbor) -> numerous viewers (970ms)\nWhat day did Pearl Harbor occur?\tthe very highest level\t0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, pearl harbor) -> (the very highest level, was going to happen at, Pearl Harbor) -> the very highest level (970ms)\nWhat day did Pearl Harbor occur?\tthe United States Navy\t0.444444444436\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, be cause of, $x) -> (Pearl Harbor, was a major cause of, the United States Navy) -> the United States Navy (970ms)\nWhat day did Pearl Harbor occur?\tthe second world war\t0.444444444436\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, be cause of, $x) -> (Pearl Harbor, was the cause of, the second world war) -> the second world war (970ms)\nWhat day did Pearl Harbor occur?\tthe very next week\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, the very next week) -> the very next week (1840ms)\nWhat day did Pearl Harbor occur?\tten days\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred only, ten days) -> ten days (2040ms)\nWhat day did Pearl Harbor occur?\tthe foreknowledge\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred with, the foreknowledge) -> the foreknowledge (1840ms)\nWhat day did Pearl Harbor occur?\ttwo years\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred almost, two years) -> two years (1841ms)\nWhat day did Pearl Harbor occur?\tthe naval battleship USS Arizona\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred on, the naval battleship USS Arizona) -> the naval battleship USS Arizona (2040ms)\nWhat day did Pearl Harbor occur?\ta variety\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred for, a variety) -> a variety (1841ms)\nWhat day did Pearl Harbor occur?\tthe time\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, the time) -> the time (1840ms)\nWhat day did Pearl Harbor occur?\t4 years\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, 4 years) -> 4 years (2040ms)\nWhat day did Pearl Harbor occur?\t70 years\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, 70 years) -> 70 years (1869ms)\nWhat day did Pearl Harbor occur?\tDarwin\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurs against, Darwin) -> Darwin (2040ms)\nWhat day did Pearl Harbor occur?\t11 years\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, 11 years) -> 11 years (1841ms)\nWhat day did Pearl Harbor occur?\tfour months\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred less than, four months) -> four months (1870ms)\nWhat day did Pearl Harbor occur?\ta Sunday\t0.33333333332599996\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred on, a Sunday) -> a Sunday (2040ms)\nWhat day did Pearl Harbor occur?\tMay 11th\t0.11111111111\tWhat day did Pearl Harbor occur? -> $x: ($x, date be, pearl) -> (May 11th, was the date of, The Arlington Pearl) -> May 11th (2385ms)\nWhat day did Pearl Harbor occur?\texactly\t0.111111111107\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, pearl) -> (exactly, is happening in, Pearl River County) -> exactly (2386ms)\nWhat day did Pearl Harbor occur?\tthe most difficult time\t0.111111111105\tWhat day did Pearl Harbor occur? -> $x: (pearl harbor, happen during, $x) -> (Pearl Harbor, happened during perhaps, the most difficult time) -> the most difficult time (2385ms)\nWhat day did Pearl Harbor occur?\tHiram\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Hiram, married, Martha Pearl Johnston) -> Hiram (2563ms)\nWhat day did Pearl Harbor occur?\tthe June Cleaver type\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the June Cleaver type, wore, pearls) -> the June Cleaver type (2620ms)\nWhat day did Pearl Harbor occur?\tLouie\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Louie, married, Pearl Bailey) -> Louie (2785ms)\nWhat day did Pearl Harbor occur?\tRoman women\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Roman women, wore, pearls) -> Roman women (2620ms)\nWhat day did Pearl Harbor occur?\tJack\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Jack, was married to, his Black Pearl) -> Jack (2772ms)\nWhat day did Pearl Harbor occur?\tGrandmothers\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Grandmothers, wore, pearls) -> Grandmothers (2772ms)\nWhat day did Pearl Harbor occur?\tmore and more women\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (more and more women, are wearing, pearls) -> more and more women (2421ms)\nWhat day did Pearl Harbor occur?\tthe late Mr. Henry\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (the late Mr. Henry, was married to, Mrs. Pearl Braxton Wyatt) -> the late Mr. Henry (2471ms)\nWhat day did Pearl Harbor occur?\tnew CEO\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (new CEO, wears, pearls) -> new CEO (2780ms)\nWhat day did Pearl Harbor occur?\tnative Americans\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (native Americans, wearing, pearls) -> native Americans (2783ms)\nWhat day did Pearl Harbor occur?\tancient princesses\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (ancient princesses, have worn, pearls) -> ancient princesses (2778ms)\nWhat day did Pearl Harbor occur?\tthe bride\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the bride, is wearing, pearls) -> the bride (2785ms)\nWhat day did Pearl Harbor occur?\tRoscoe\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Roscoe, married, Ruby Pearl Postlewait-23003 1 daughter) -> Roscoe (2778ms)\nWhat day did Pearl Harbor occur?\tcookie cutter wives\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (cookie cutter wives, wore, pearls) -> cookie cutter wives (2780ms)\nWhat day did Pearl Harbor occur?\tThe bride\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (The bride, wears, pearls) -> The bride (2772ms)\nWhat day did Pearl Harbor occur?\tCurtiss\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Curtiss, married, Lena Pearl Neff) -> Curtiss (2783ms)\nWhat day did Pearl Harbor occur?\tTanzi?s mom\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Tanzi?s mom, wears, pearls) -> Tanzi?s mom (2385ms)\nWhat day did Pearl Harbor occur?\taprons\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (aprons, wear, pearls) -> aprons (2783ms)\nWhat day did Pearl Harbor occur?\tA soft-spoken classical pianist\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (A soft-spoken classical pianist, wore, pearls) -> A soft-spoken classical pianist (2775ms)\nWhat day did Pearl Harbor occur?\tthe Middle Ages\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the Middle Ages, wore, pearls) -> the Middle Ages (2780ms)\nWhat day did Pearl Harbor occur?\tpumps\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (pumps, wear, pearls) -> pumps (2783ms)\nWhat day did Pearl Harbor occur?\tRFN:Melvin\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (RFN:Melvin, was married to, Pearl Bailey) -> RFN:Melvin (2421ms)\nWhat day did Pearl Harbor occur?\tBen 's sister\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Ben 's sister, married, Pearl 's brother) -> Ben 's sister (2563ms)\nWhat day did Pearl Harbor occur?\tbridal party\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (bridal party, wear, pearls) -> bridal party (2772ms)\nWhat day did Pearl Harbor occur?\tDonald M.\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Donald M., married, Pearl Murphy) -> Donald M. (2775ms)\nWhat day did Pearl Harbor occur?\tWeddings Brides\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Weddings Brides, have worn, pearls) -> Weddings Brides (2785ms)\nWhat day did Pearl Harbor occur?\tSydney\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Sydney, was wearing, pearls) -> Sydney (2778ms)\nWhat day did Pearl Harbor occur?\tGordon Wiley Merrifield\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Gordon Wiley Merrifield, married, Pearl) -> Gordon Wiley Merrifield (2563ms)\nWhat day did Pearl Harbor occur?\tEdwin\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Edwin, was married to, Lillian Pearl Snowden) -> Edwin (2772ms)\nWhat day did Pearl Harbor occur?\tpearl necklaces and knights\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (pearl necklaces and knights, wore, pearls) -> pearl necklaces and knights (2775ms)\nWhat day did Pearl Harbor occur?\tline\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (line, were wearing, pearls) -> line (2783ms)\nWhat day did Pearl Harbor occur?\tyoure\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (youre, wearing, pearls) -> youre (2785ms)\nWhat day did Pearl Harbor occur?\tHigh Havoc ? Kitty\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (High Havoc ? Kitty, wore, pearls) -> High Havoc ? Kitty (2772ms)\nWhat day did Pearl Harbor occur?\tBellson\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Bellson, married, the singer and entertainer Pearl Bailey) -> Bellson (2772ms)\nWhat day did Pearl Harbor occur?\tJulia and Julie\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Julia and Julie, wore, pearls) -> Julia and Julie (2562ms)\nWhat day did Pearl Harbor occur?\tBarbara\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Barbara, wore, pearls) -> Barbara (2620ms)\nWhat day did Pearl Harbor occur?\t1892 Dr. Burritt\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (1892 Dr. Burritt, married, Pearl Budd) -> 1892 Dr. Burritt (2780ms)\nWhat day did Pearl Harbor occur?\tJenkins\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Jenkins, married, Pearl Decker) -> Jenkins (2785ms)\nWhat day did Pearl Harbor occur?\tthe wife\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the wife, wore, pearls) -> the wife (2778ms)\nWhat day did Pearl Harbor occur?\tWomen\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Women, can wear, pearls) -> Women (2780ms)\nWhat day did Pearl Harbor occur?\tGirls\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Girls, Wear, Pearls) -> Girls (2780ms)\nWhat day did Pearl Harbor occur?\tLadies\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Ladies, wore, pearls) -> Ladies (2775ms)\nWhat day did Pearl Harbor occur?\tan energetic woman\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (an energetic woman, wore, pearls) -> an energetic woman (2421ms)\nWhat day did Pearl Harbor occur?\tMay 1870\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (May 1870, was married to, Eunice Pearl Adkins) -> May 1870 (2783ms)\nWhat day did Pearl Harbor occur?\tMeghnad?s wife\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Meghnad?s wife, wore, pearls) -> Meghnad?s wife (2772ms)\nWhat day did Pearl Harbor occur?\tDivers\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Divers, wear, pearls) -> Divers (2775ms)\nWhat day did Pearl Harbor occur?\ta pig\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a pig, wearing, pearls) -> a pig (2785ms)\nWhat day did Pearl Harbor occur?\tGeorge W\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (George W, married, Leona Pearl Patterson) -> George W (2620ms)\nWhat day did Pearl Harbor occur?\tperson\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (person, should wear, pearl) -> person (2783ms)\nWhat day did Pearl Harbor occur?\tGladys\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Gladys, married, Pearl Cowden) -> Gladys (2785ms)\nWhat day did Pearl Harbor occur?\ta bride\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a bride, wears, pearls) -> a bride (2785ms)\nWhat day did Pearl Harbor occur?\tJune Cleaver\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (June Cleaver, wears, pearls) -> June Cleaver (2775ms)\nWhat day did Pearl Harbor occur?\tan old lady\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (an old lady, wearing, pearls) -> an old lady (2386ms)\nWhat day did Pearl Harbor occur?\tMary\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Mary, wears, pearls) -> Mary (2785ms)\nWhat day did Pearl Harbor occur?\tthe little girl\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the little girl, wearing, pearls) -> the little girl (2772ms)\nWhat day did Pearl Harbor occur?\tGail Shank\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Gail Shank, married, Pearl Snyder) -> Gail Shank (2783ms)\nWhat day did Pearl Harbor occur?\tBreakfast\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Breakfast, wear, pearls) -> Breakfast (2772ms)\nWhat day did Pearl Harbor occur?\ttrimmings\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (trimmings, wore, pearls) -> trimmings (2785ms)\nWhat day did Pearl Harbor occur?\tMalabar\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Malabar, wear, pearls) -> Malabar (2775ms)\nWhat day did Pearl Harbor occur?\tLov\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Lov, is married to, Ellie May?s younger sister Pearl) -> Lov (2778ms)\nWhat day did Pearl Harbor occur?\tMatt\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Matt, wears, pearls) -> Matt (2775ms)\nWhat day did Pearl Harbor occur?\tthe Upper Mississippi River Valley\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the Upper Mississippi River Valley, were wearing, pearls) -> the Upper Mississippi River Valley (2620ms)\nWhat day did Pearl Harbor occur?\taccessories women\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (accessories women, wore, pearls) -> accessories women (2778ms)\nWhat day did Pearl Harbor occur?\tno man\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (no man, to wear, pearls) -> no man (2421ms)\nWhat day did Pearl Harbor occur?\tmore women\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (more women, are wearing, pearls) -> more women (2775ms)\nWhat day did Pearl Harbor occur?\ta cartoon siamese cat\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a cartoon siamese cat, wearing, pearls) -> a cartoon siamese cat (2620ms)\nWhat day did Pearl Harbor occur?\tthe earliest people\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the earliest people, to wear, pearls) -> the earliest people (2471ms)\nWhat day did Pearl Harbor occur?\tFather Alexander\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Father Alexander, married, Presbytera Pearl Veronis) -> Father Alexander (2775ms)\nWhat day did Pearl Harbor occur?\tKen\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Ken, married, Norma Pearl Stewart October 4 , 1952) -> Ken (2778ms)\nWhat day did Pearl Harbor occur?\tAnthrax\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Anthrax, is married to, Pearl Aday) -> Anthrax (2785ms)\nWhat day did Pearl Harbor occur?\tDont\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Dont, wear, pearls) -> Dont (2778ms)\nWhat day did Pearl Harbor occur?\tJack Roark Tingle\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Jack Roark Tingle, married, Ladyne Pearl Sullivan) -> Jack Roark Tingle (2775ms)\nWhat day did Pearl Harbor occur?\tBrigitte\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Brigitte, was wearing, pearls) -> Brigitte (2785ms)\nWhat day did Pearl Harbor occur?\tevery woman\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (every woman, wears, pearl) -> every woman (2785ms)\nWhat day did Pearl Harbor occur?\tThe Priestesses\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (The Priestesses, are wearing, pearls) -> The Priestesses (2778ms)\nWhat day did Pearl Harbor occur?\tthe president\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the president, wore, pearls) -> the president (2780ms)\nWhat day did Pearl Harbor occur?\tMurphy\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Murphy, married, Pearl Harriett Adams) -> Murphy (2772ms)\nWhat day did Pearl Harbor occur?\tJohn\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (John, married, Maude Pearl Wheeler December 23 , 1941) -> John (2620ms)\nWhat day did Pearl Harbor occur?\tthe U. S. Army\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (the U. S. Army, is married to, Pearl Cushing) -> the U. S. Army (2775ms)\nWhat day did Pearl Harbor occur?\ta girl\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a girl, wearing, pearls) -> a girl (2471ms)\nWhat day did Pearl Harbor occur?\tDon?t\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Don?t, wear, pearls) -> Don?t (2422ms)\nWhat day did Pearl Harbor occur?\teverybody\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (everybody, wears, pearls) -> everybody (2780ms)\nWhat day did Pearl Harbor occur?\tElizabeth\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Elizabeth, married, Jesse Pearl Thomas) -> Elizabeth (2783ms)\nWhat day did Pearl Harbor occur?\tAmzira\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Amzira, would marry, Pearl Dimple Johnson) -> Amzira (2780ms)\nWhat day did Pearl Harbor occur?\tWalter and Frank KINGSLEY\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Walter and Frank KINGSLEY, married, Hazel and Pearl) -> Walter and Frank KINGSLEY (2775ms)\nWhat day did Pearl Harbor occur?\tAncient Greeks\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Ancient Greeks, believed wearing, pearls) -> Ancient Greeks (2780ms)\nWhat day did Pearl Harbor occur?\tJuanita Preudhomme\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Juanita Preudhomme, wearing, pearls) -> Juanita Preudhomme (2471ms)\nWhat day did Pearl Harbor occur?\tMargaret White\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Margaret White, was to be married to, Thomas Pearl) -> Margaret White (2775ms)\nWhat day did Pearl Harbor occur?\tthe girl\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the girl, wears, pearls) -> the girl (2471ms)\nWhat day did Pearl Harbor occur?\tthe oldest Rankin child\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (the oldest Rankin child, had married, Wilmer Pearl Flegal) -> the oldest Rankin child (2778ms)\nWhat day did Pearl Harbor occur?\ta man\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a man, wearing, pearls) -> a man (2772ms)\nWhat day did Pearl Harbor occur?\tBe fashion\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Be fashion, wear, pearls) -> Be fashion (2772ms)\nWhat day did Pearl Harbor occur?\t1858\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (1858, was married to, Margaret Pearl) -> 1858 (2783ms)\nWhat day did Pearl Harbor occur?\tCleopatra\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Cleopatra, wore, pearls) -> Cleopatra (2778ms)\nWhat day did Pearl Harbor occur?\tClifford\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Clifford, married, Pearl Contant) -> Clifford (2780ms)\nWhat day did Pearl Harbor occur?\tBarbara bush\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Barbara bush, wore, pearls) -> Barbara bush (2778ms)\nWhat day did Pearl Harbor occur?\tShes\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Shes, wearing, pearls) -> Shes (2421ms)\nWhat day did Pearl Harbor occur?\tDr. Azevedo\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Dr. Azevedo, married, Pearl S. Schell) -> Dr. Azevedo (2778ms)\nWhat day did Pearl Harbor occur?\tAny woman\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Any woman, can wear, pearls) -> Any woman (2775ms)\nWhat day did Pearl Harbor occur?\tViola\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Viola, married, Calvin Pearl LEE) -> Viola (2783ms)\nWhat day did Pearl Harbor occur?\tFletch\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Fletch, married, Pearl Howard) -> Fletch (2778ms)\nWhat day did Pearl Harbor occur?\tancient and modern times\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (ancient and modern times, have worn, pearls) -> ancient and modern times (2783ms)\nWhat day did Pearl Harbor occur?\tRuth Etting\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Ruth Etting, wore, pearls) -> Ruth Etting (2783ms)\nWhat day did Pearl Harbor occur?\tWilliam A. Stockwell\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (William A. Stockwell, married, Pearl Leone Morrison) -> William A. Stockwell (2563ms)\nWhat day did Pearl Harbor occur?\thats and women\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (hats and women, wore, pearls) -> hats and women (2620ms)\nWhat day did Pearl Harbor occur?\tMrs. Cleaver\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Mrs. Cleaver, wore, pearls) -> Mrs. Cleaver (2421ms)\nWhat day did Pearl Harbor occur?\tThe next child\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (The next child, was married to, Pearl Marlin) -> The next child (2562ms)\nWhat day did Pearl Harbor occur?\tthe late Queen Mother\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the late Queen Mother, wore, pearls) -> the late Queen Mother (2785ms)\nWhat day did Pearl Harbor occur?\tqueen alexandra\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (queen alexandra, wore, pearls) -> queen alexandra (2775ms)\nWhat day did Pearl Harbor occur?\tRuby\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Ruby, married, Pearl Purdin) -> Ruby (2783ms)\nWhat day did Pearl Harbor occur?\tLouis Bower\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Louis Bower, married, Pearl Fennell) -> Louis Bower (2780ms)\nWhat day did Pearl Harbor occur?\tThe ancient Greeks\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (The ancient Greeks, wore, pearls) -> The ancient Greeks (2778ms)\nWhat day did Pearl Harbor occur?\tWalter\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Walter, married, Pearl Cebular) -> Walter (2772ms)\nWhat day did Pearl Harbor occur?\t1911\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (1911, was married to, Pearl Gardner) -> 1911 (2772ms)\nWhat day did Pearl Harbor occur?\ta frilly apron\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a frilly apron, wear, pearls) -> a frilly apron (2471ms)\nWhat day did Pearl Harbor occur?\ta woman\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a woman, wearing, pearls) -> a woman (2785ms)\nWhat day did Pearl Harbor occur?\ta person\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a person, wears, pearls) -> a person (2620ms)\nWhat day did Pearl Harbor occur?\tMr. Pence\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Mr. Pence, was married to, Miss Pearl Outland) -> Mr. Pence (2620ms)\nWhat day did Pearl Harbor occur?\t?? ? ??RAYMOND LEWIS HUDSON\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (?? ? ??RAYMOND LEWIS HUDSON, married, MONA PEARL CONDON) -> ?? ? ??RAYMOND LEWIS HUDSON (2471ms)\nWhat day did Pearl Harbor occur?\tFirst Lady Jackie O\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (First Lady Jackie O, wore faux, pearls) -> First Lady Jackie O (2783ms)\nWhat day did Pearl Harbor occur?\tMichelle\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Michelle, wears, pearls) -> Michelle (2783ms)\nWhat day did Pearl Harbor occur?\tevery lady\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (every lady, can wear, pearls) -> every lady (2563ms)\nWhat day did Pearl Harbor occur?\tGallant knights\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Gallant knights, wore, pearls) -> Gallant knights (2778ms)\nWhat day did Pearl Harbor occur?\tMr Grening\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Mr Grening, was married to, Pearl Fink) -> Mr Grening (2780ms)\nWhat day did Pearl Harbor occur?\tRalph D. Sweet\t-0.0\tWhat day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Ralph D. Sweet, married, Hessie Pearl Raper) -> Ralph D. Sweet (2780ms)\nWhat day did Pearl Harbor occur?\tCrush\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (Crush, also happens to be, my initial reaction) -> Crush (2787ms)\nWhat day did Pearl Harbor occur?\tThe crater\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, sulfur) -> (The crater, happens to be, a sulfur mine) -> The crater (2787ms)\nWhat day did Pearl Harbor occur?\tthe story\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (the story, happened to, the three , subsequent public reactions) -> the story (2787ms)\nWhat day did Pearl Harbor occur?\tnotice\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (notice, happens prior to, his verbal reaction) -> notice (2787ms)\nWhat day did Pearl Harbor occur?\tThe same\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, tsunami) -> (The same, happened to, the Tsunami funds) -> The same (2787ms)\nWhat day did Pearl Harbor occur?\ta smile\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (a smile, happens to be, the same reaction) -> a smile (2787ms)\nWhat day did Pearl Harbor occur?\tresearchers\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, tornado) -> (researchers, has happened to, the tornadoes) -> researchers (2788ms)\nWhat day did Pearl Harbor occur?\tKarstens\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, tornado) -> (Karstens, happens to, a tornado) -> Karstens (2785ms)\nWhat day did Pearl Harbor occur?\tthe tongue\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (the tongue, can happen due to, an allergic reaction) -> the tongue (2787ms)\nWhat day did Pearl Harbor occur?\ta ?how\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (a ?how, allow this to happen, ? reaction) -> a ?how (2787ms)\nWhat day did Pearl Harbor occur?\ta summer camp\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, tornado) -> (a summer camp, happens to be located in, Tornado Alley) -> a summer camp (2789ms)\nWhat day did Pearl Harbor occur?\tbirds\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, solar eclipse) -> (birds, just happens to coincide with, a Total Solar Eclipse) -> birds (2788ms)\nWhat day did Pearl Harbor occur?\tvisual miscues\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (visual miscues, often happen due to, natural physical reactions) -> visual miscues (2787ms)\nWhat day did Pearl Harbor occur?\tCoach\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (Coach, happened to strike, the same reaction) -> Coach (2789ms)\nWhat day did Pearl Harbor occur?\tCopper\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (Copper, happens to be, the most abundant post-reaction element) -> Copper (2787ms)\nWhat day did Pearl Harbor occur?\tRatfink\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, tsunami) -> (Ratfink, just happens to get, the Tsunami program) -> Ratfink (2787ms)\nWhat day did Pearl Harbor occur?\tExercise\t-0.11111111111200003\tWhat day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (Exercise, will happen to, the following reactions) -> Exercise (2787ms)\nWhat day did Pearl Harbor occur?\tLubbock\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (retaliation, occur in, $x) -> (the retaliation, occurred in, Lubbock) -> Lubbock (2791ms)\nWhat day did Pearl Harbor occur?\t100 users/year\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (The Pearl Index, occur in, 100 users/year) -> 100 users/year (2793ms)\nWhat day did Pearl Harbor occur?\tCeylon\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (little pearl fishing, now occurs in, Ceylon) -> Ceylon (2791ms)\nWhat day did Pearl Harbor occur?\tcolours\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Freshwater pearls, occur in, colours) -> colours (2791ms)\nWhat day did Pearl Harbor occur?\tevery color\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Chinese freshwater pearls, occurs in, every color) -> every color (2791ms)\nWhat day did Pearl Harbor occur?\tdifferent ways\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearl formation, occurs in, different ways) -> different ways (2791ms)\nWhat day did Pearl Harbor occur?\tDarwin and Bynoe Harbours\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearl cultivation, also occurs in, Darwin and Bynoe Harbours) -> Darwin and Bynoe Harbours (2792ms)\nWhat day did Pearl Harbor occur?\tthe rivers\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Freshwater pearls, occur in, the rivers) -> the rivers (2791ms)\nWhat day did Pearl Harbor occur?\tnature\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (pearls, occur in, nature) -> nature (2794ms)\nWhat day did Pearl Harbor occur?\ttemples\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearl, occurred in, temples) -> temples (2793ms)\nWhat day did Pearl Harbor occur?\t100 user years\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (The Pearl Index, occur in, 100 user years) -> 100 user years (2790ms)\nWhat day did Pearl Harbor occur?\tdesign\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (azure and fruit pearls, occur this way in, design) -> design (2793ms)\nWhat day did Pearl Harbor occur?\tNorth America\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Nine ground pearl species, are known to occur in, North America) -> North America (2790ms)\nWhat day did Pearl Harbor occur?\tspherical form\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Conch pearls, frequently occur in, spherical form) -> spherical form (2794ms)\nWhat day did Pearl Harbor occur?\toysters\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Natural pearls, occur accidentally in, oysters) -> oysters (2794ms)\nWhat day did Pearl Harbor occur?\ta wide range\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearls, occur in, a wide range) -> a wide range (2793ms)\nWhat day did Pearl Harbor occur?\tmolluscs\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearls, occur naturally in, molluscs) -> molluscs (2793ms)\nWhat day did Pearl Harbor occur?\tChina\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (today?s freshwater pearl production, occurs in, China) -> China (2790ms)\nWhat day did Pearl Harbor occur?\tnatrure\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (The very rarest pearls, occurs in, natrure) -> natrure (2794ms)\nWhat day did Pearl Harbor occur?\tinteresting shapes\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Cultured freshwater pearls, also occur in, interesting shapes) -> interesting shapes (2793ms)\nWhat day did Pearl Harbor occur?\tmussels\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Natural freshwater pearls, occur in, mussels) -> mussels (2792ms)\nWhat day did Pearl Harbor occur?\ta spherical shape\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (a natural pearl, occur in, a spherical shape) -> a spherical shape (2791ms)\nWhat day did Pearl Harbor occur?\tone oyster\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Several pearls, may occur in, one oyster) -> one oyster (2790ms)\nWhat day did Pearl Harbor occur?\tthe newborn\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Epstein pearls, occur only in, the newborn) -> the newborn (2793ms)\nWhat day did Pearl Harbor occur?\tthe wild\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (The very rarest pearls, occurs in, the wild) -> the wild (2794ms)\nWhat day did Pearl Harbor occur?\tconcert\t-0.11111111111899999\tWhat day did Pearl Harbor occur? -> $x: (retaliation, occur in, $x) -> (the retaliation, occurred in, concert) -> concert (2792ms)\nWhat day did Pearl Harbor occur?\tlast year\t-0.333333333333\tWhat day did Pearl Harbor occur? -> $x: ($x, date be, tsunami) -> (last year, was the date for, the huge pacific Tsunami) -> last year (2793ms)\nWhat day did Pearl Harbor occur?\tBada\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (Bada, discovered that, the reactions were producing chemicals) -> Bada (2794ms)\nWhat day did Pearl Harbor occur?\tscientists\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (scientists, has discovered, a new chemical reaction) -> scientists (2794ms)\nWhat day did Pearl Harbor occur?\tJeffery\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, sulfur) -> (Jeffery, has discovered, sulfur compounds) -> Jeffery (2795ms)\nWhat day did Pearl Harbor occur?\tA scientist\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (A scientist, might discover, a new chemical reaction) -> A scientist (2794ms)\nWhat day did Pearl Harbor occur?\tthe true economic picture\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (the true economic picture, is discovered, the reaction) -> the true economic picture (2794ms)\nWhat day did Pearl Harbor occur?\tthe Russians\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (the Russians, discover the joys of, an uncontrolled reaction) -> the Russians (2794ms)\nWhat day did Pearl Harbor occur?\tLinda\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, tornado) -> (Linda, discovered, SpinningTornado) -> Linda (2795ms)\nWhat day did Pearl Harbor occur?\tResearch\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (Research, has yet to discover, this same reaction) -> Research (2795ms)\nWhat day did Pearl Harbor occur?\tThe telescope\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, tsunami) -> (The telescope, has also discovered, solar tsunamis) -> The telescope (2794ms)\nWhat day did Pearl Harbor occur?\trusting\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (rusting, has been discovered to be, the reaction) -> rusting (2795ms)\nWhat day did Pearl Harbor occur?\tStudents\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (Students, wanted to discover, every possible audience reaction) -> Students (2795ms)\nWhat day did Pearl Harbor occur?\tthe food companies\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (the food companies, discovered to induce, Maillard reactions) -> the food companies (2794ms)\nWhat day did Pearl Harbor occur?\tDr. Schwabe\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, sulfur) -> (Dr. Schwabe, discovered a species of, purple sulfur bacteria) -> Dr. Schwabe (2794ms)\nWhat day did Pearl Harbor occur?\tThe Eclipse Comet\t-0.444444444444\tWhat day did Pearl Harbor occur? -> $x: ($x, discover, solar eclipse) -> (The Eclipse Comet, is discovered during, a total solar eclipse) -> The Eclipse Comet (2794ms)\nWhat day did Pearl Harbor occur?\tthe 2010 class\t-0.444444444449\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (the 2010 class, is happening in, Chicago harbors) -> the 2010 class (2795ms)\nWhat day did Pearl Harbor occur?\ta truck collision\t-0.444444444449\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (a truck collision, happened in, the Baltimore Harbor Tunnel) -> a truck collision (2794ms)\nWhat day did Pearl Harbor occur?\tthe particulars\t-0.444444444449\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (the particulars, is happening in, Benton Harbor Michigan) -> the particulars (2795ms)\nWhat day did Pearl Harbor occur?\tsuch logistic attacks\t-0.444444444449\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (such logistic attacks, happen in, Karachi harbor) -> such logistic attacks (2795ms)\nWhat day did Pearl Harbor occur?\tSan Juan Island Update\t-0.444444444449\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (San Juan Island Update, 's happening in, Friday Harbor) -> San Juan Island Update (2794ms)\nWhat day did Pearl Harbor occur?\ta Spanish or Italian sailor\t-0.444444444449\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (a Spanish or Italian sailor, happened in, the harbor) -> a Spanish or Italian sailor (2795ms)\nWhat day did Pearl Harbor occur?\tthe mystery\t-0.444444444449\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (the mystery, happened in, that harbor) -> the mystery (2795ms)\nWhat day did Pearl Harbor occur?\tdisruption\t-0.444444444449\tWhat day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (disruption, happen in, Gig Harbor) -> disruption (2795ms)\nWhat day did Pearl Harbor occur?\tthe past\t-0.44444444445\tWhat day did Pearl Harbor occur? -> $x: (retaliation, happen in, $x) -> (retaliation, has happened in, the past) -> the past (2795ms)\nWhat day did Pearl Harbor occur?\ta practical way\t-0.44444444445\tWhat day did Pearl Harbor occur? -> $x: (retaliation, happen in, $x) -> (retaliation, happens in, a practical way) -> a practical way (2795ms)\nWhat day did Pearl Harbor occur?\tsecret\t-0.44444444445\tWhat day did Pearl Harbor occur? -> $x: (pearl, happen in, $x) -> (the pearl, is happening in, secret) -> secret (2795ms)\nWhat day did Pearl Harbor occur?\tPittsburgh\t-0.44444444445\tWhat day did Pearl Harbor occur? -> $x: (pearl, happen in, $x) -> (Pearl and Ahmed, happened in, Pittsburgh) -> Pittsburgh (2795ms)\nHow large is it?\tMuslims\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (Muslims, is the Muslim population of, the World) -> Muslims (1225ms)\nHow large is it?\tWomen\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (Women, are half the population of, the world) -> Women (1307ms)\nHow large is it?\tScripture\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (Scripture, is the Gentile population of, the world) -> Scripture (1307ms)\nHow large is it?\t3.08 108and 6.8 109\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (3.08 108and 6.8 109, is the population of, the world) -> 3.08 108and 6.8 109 (1307ms)\nHow large is it?\t1977\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (1977, are a global population of, more than 2 billion world) -> 1977 (1307ms)\nHow large is it?\tDear Earth Talk\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (Dear Earth Talk, are populations of, the world?s orca whales) -> Dear Earth Talk (1226ms)\nHow large is it?\tGRUMP\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (GRUMP, is a Gridded Population of, the World) -> GRUMP (1307ms)\nHow large is it?\tRidgecrest\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (Ridgecrest, is nearly the entire population of, the world) -> Ridgecrest (1226ms)\nHow large is it?\tAntarctica\t0.333333333332\tHow large is it? -> $x: ($x, be population of, penguin) -> (Antarctica, are threatening populations of, penguins) -> Antarctica (1225ms)\nHow large is it?\tthe environmentalists\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (the environmentalists, is the entire population of, the world) -> the environmentalists (1307ms)\nHow large is it?\tOne problem\t0.333333333332\tHow large is it? -> $x: ($x, be population of, object) -> (One problem, is a vast population of, objects) -> One problem (1050ms)\nHow large is it?\troughly 4.29 billion\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (roughly 4.29 billion, is roughly the population of, the world) -> roughly 4.29 billion (1307ms)\nHow large is it?\ta disease\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (a disease, is eating much of the population, the world over) -> a disease (1226ms)\nHow large is it?\tMuslims . 5\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (Muslims . 5, is the Muslim population of, the World) -> Muslims . 5 (1929ms)\nHow large is it?\tCoal Population\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (Coal Population, is the population of, the world) -> Coal Population (1226ms)\nHow large is it?\tthe US 4\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (the US 4, is the Muslim population of, the World) -> the US 4 (1307ms)\nHow large is it?\tChrist\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (Christ, is the population of, the world) -> Christ (1226ms)\nHow large is it?\ttype\t0.333333333332\tHow large is it? -> $x: ($x, be population of, world) -> (type, is the population of, the world) -> type (1226ms)\nHow large is it?\tThe same\t0.333333333331\tHow large is it? -> $x: ($x, be true about, size) -> (The same, is true about, the size) -> The same (1929ms)\nHow large is it?\tApple\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Apple, could spread, the screen size) -> Apple (4613ms)\nHow large is it?\tsize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (size, protected, int size) -> size (4686ms)\nHow large is it?\tlaminate poplar\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (laminate poplar, then shape to, popular sizes) -> laminate poplar (4704ms)\nHow large is it?\tlesions\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (lesions, provide accurate measurements of, size) -> lesions (4660ms)\nHow large is it?\tbasic instance methods\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (basic instance methods, shape, { ^sizes) -> basic instance methods (4711ms)\nHow large is it?\tthe farm operation or residence\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the farm operation or residence, are valued based on, their size) -> the farm operation or residence (4646ms)\nHow large is it?\tcans\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (cans, shaped in, every conceivable size) -> cans (4697ms)\nHow large is it?\tthe API\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the API, will check this value against, the size) -> the API (4575ms)\nHow large is it?\tlet?s\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (let?s, talk about, effect sizes) -> let?s (4702ms)\nHow large is it?\tDouble\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Double, spread, trim size) -> Double (4651ms)\nHow large is it?\tquality zips\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (quality zips, protect, your iPad Specifications Size) -> quality zips (4694ms)\nHow large is it?\tU-Pack rates\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (U-Pack rates, talk about, equipment size) -> U-Pack rates (4713ms)\nHow large is it?\tHasheem Thabeet\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Hasheem Thabeet, would provide, size) -> Hasheem Thabeet (4712ms)\nHow large is it?\tInternal Medicine\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Internal Medicine, published a study about, plate size) -> Internal Medicine (4704ms)\nHow large is it?\tThe pharmaceutical industry\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The pharmaceutical industry, values, the sizing) -> The pharmaceutical industry (4712ms)\nHow large is it?\tImplementation\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Implementation, may return hardcoded values for, object size) -> Implementation (3555ms)\nHow large is it?\tWhite color\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (White color, are provided, Size) -> White color (3555ms)\nHow large is it?\twhite tiles\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (white tiles, shaped, the size) -> white tiles (4620ms)\nHow large is it?\tPrey\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Prey, provide a wide range of, sizes) -> Prey (4627ms)\nHow large is it?\tScientists\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Scientists, study, the sizes) -> Scientists (4708ms)\nHow large is it?\tmOutputBuffer\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (mOutputBuffer, protected, final int mSmallWriteSize) -> mOutputBuffer (4714ms)\nHow large is it?\tCornell University\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Cornell University, studied the diversity of, eye size) -> Cornell University (4598ms)\nHow large is it?\tBuilders\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Builders, also protect, medium-sized buildings) -> Builders (4685ms)\nHow large is it?\tJesus\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Jesus, was talking about, the size) -> Jesus (4550ms)\nHow large is it?\tNormally one dispenser\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Normally one dispenser, will protect, an average sized room) -> Normally one dispenser (4620ms)\nHow large is it?\tThe offer\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (The offer, also would protect, school days class sizes) -> The offer (4714ms)\nHow large is it?\tPresentities\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Presentities, SHOULD provide images of, sizes) -> Presentities (4598ms)\nHow large is it?\tD?Anjou pears\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (D?Anjou pears, are evenly spread across, the size spectrum) -> D?Anjou pears (4702ms)\nHow large is it?\tthe nominal patent\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (the nominal patent, protected, market sizes) -> the nominal patent (4710ms)\nHow large is it?\tTree growth\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Tree growth, is spreading to, medium size) -> Tree growth (4674ms)\nHow large is it?\tNew resources\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (New resources, inform study of, genome size) -> New resources (4708ms)\nHow large is it?\ta piece\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a piece, spread, the tiny nano-sized pieces) -> a piece (4702ms)\nHow large is it?\tHaleya Priest Amherst MA\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Haleya Priest Amherst MA, talk about, hole size research) -> Haleya Priest Amherst MA (4702ms)\nHow large is it?\tThe new valve\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (The new valve, spread, accommodates valves sizes) -> The new valve (4678ms)\nHow large is it?\tToday nobody\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Today nobody, is talking about, the size) -> Today nobody (4706ms)\nHow large is it?\tthe Okavango\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the Okavango, spread to, its full size) -> the Okavango (4634ms)\nHow large is it?\tKitty\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Kitty, shaped like, a cupcake Tin size) -> Kitty (4641ms)\nHow large is it?\tFireHost\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (FireHost, protect, companies of all sizes) -> FireHost (4706ms)\nHow large is it?\tInsight\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Insight, did detailed studies on, the sizes) -> Insight (4702ms)\nHow large is it?\tnevertheless other individuals\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (nevertheless other individuals, merely provide, sizes) -> nevertheless other individuals (4714ms)\nHow large is it?\tLafayette\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Lafayette, has studied, body size) -> Lafayette (4702ms)\nHow large is it?\tdifferent vase\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (different vase, shaped, sizes) -> different vase (4550ms)\nHow large is it?\tA July Quatsino Sound closure\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (A July Quatsino Sound closure, protects, leviathan-sized chinook) -> A July Quatsino Sound closure (4567ms)\nHow large is it?\tsize 8-12 and gloves\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (size 8-12 and gloves, will be provided by, size) -> size 8-12 and gloves (4689ms)\nHow large is it?\tGritty Travis Moen\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Gritty Travis Moen, would provide, size) -> Gritty Travis Moen (4651ms)\nHow large is it?\tno dimensions\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (no dimensions, provided as to, size) -> no dimensions (4710ms)\nHow large is it?\tFoxwoods Casino\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Foxwoods Casino, offers a great value for, any size) -> Foxwoods Casino (4620ms)\nHow large is it?\tCloud Computing definitions\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Cloud Computing definitions, talk about, size) -> Cloud Computing definitions (4641ms)\nHow large is it?\tnevertheless other manufacturers\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (nevertheless other manufacturers, merely provide, sizes) -> nevertheless other manufacturers (4686ms)\nHow large is it?\tletter forms\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (letter forms, are shaped differently at, each size) -> letter forms (4660ms)\nHow large is it?\tthe slum clusters\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the slum clusters, are spread out in, size) -> the slum clusters (4713ms)\nHow large is it?\t1 1/2 cup\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (1 1/2 cup, spread, Serving Size Related Recipes) -> 1 1/2 cup (4656ms)\nHow large is it?\tthe airplane\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the airplane, shaped, the right size) -> the airplane (4674ms)\nHow large is it?\tJohnson\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Johnson, provides, size) -> Johnson (4712ms)\nHow large is it?\tThe very largest printers\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The very largest printers, apparently see value in, size) -> The very largest printers (4686ms)\nHow large is it?\tThe Rig\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (The Rig, out started life as, a pocket sized book) -> The Rig (4714ms)\nHow large is it?\twindow size\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (window size, values less than, the default size) -> window size (4713ms)\nHow large is it?\tThe Vol.2\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (The Vol.2, studies, the market size) -> The Vol.2 (4559ms)\nHow large is it?\ti-95\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (i-95, provides easy access to, the washington dc area) -> i-95 (4674ms)\nHow large is it?\ttwo methods\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (two methods, are provided to, size) -> two methods (4634ms)\nHow large is it?\tWolf\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Wolf, studied, the pupa size) -> Wolf (4704ms)\nHow large is it?\tDiaphragm filter plates\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Diaphragm filter plates, can be provided in, sizes) -> Diaphragm filter plates (4712ms)\nHow large is it?\tresearch\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (research, is the study of, portion sizes) -> research (4651ms)\nHow large is it?\tPlasma\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Plasma, delivered great value in, large sizes) -> Plasma (4694ms)\nHow large is it?\tDifferent birds\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Different birds, may protect, different size territories) -> Different birds (4708ms)\nHow large is it?\tassembly\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (assembly, is provided in, Virginia DC area) -> assembly (4710ms)\nHow large is it?\tclass size\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (class size, talked about, class size and overcrowding) -> class size (4575ms)\nHow large is it?\tThe larger\t0.222222222221\tHow large is it? -> $x: ($x, be population of, earth) -> (The larger, is the population of, the earth) -> The larger (4627ms)\nHow large is it?\tA canine femoral stem system\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (A canine femoral stem system, provides a set of, sizes) -> A canine femoral stem system (4714ms)\nHow large is it?\tThe Post\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (The Post, also provides a guide to, all the DC area bookstores) -> The Post (4708ms)\nHow large is it?\tthe USGS\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the USGS, studied, apparent field size increases) -> the USGS (4694ms)\nHow large is it?\t100 %\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (100 %, spread, = 0, size =5) -> 100 % (4605ms)\nHow large is it?\tthe material\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the material, enter the known values of, cutter size) -> the material (4682ms)\nHow large is it?\tthe only population\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the only population, has been studied for, population size) -> the only population (4682ms)\nHow large is it?\tIdentifying captions\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Identifying captions, provide information on, size) -> Identifying captions (4627ms)\nHow large is it?\tMix\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Mix, shape into, walnut-size balls) -> Mix (4656ms)\nHow large is it?\tlicensees\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (licensees, are provided based upon, size) -> licensees (4591ms)\nHow large is it?\ta small discolored white/pale or brown spot\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a small discolored white/pale or brown spot, spreads in, size) -> a small discolored white/pale or brown spot (4711ms)\nHow large is it?\ttop\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (top, provides a scale for, size) -> top (4620ms)\nHow large is it?\tlights\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (lights, provide information about, size) -> lights (4646ms)\nHow large is it?\t3.0 - Calculates weight\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (3.0 - Calculates weight, shapes, sizes cuts) -> 3.0 - Calculates weight (4591ms)\nHow large is it?\tDrobo\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Drobo, also provides detailed instructions for, sizing) -> Drobo (4712ms)\nHow large is it?\twalking at least six miles per week\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (walking at least six miles per week, may protect, brain size) -> walking at least six miles per week (4634ms)\nHow large is it?\twhite beard\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (white beard, spread to twice, its size) -> white beard (4665ms)\nHow large is it?\tSchool reformers\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (School reformers, talk about reducing, class size) -> School reformers (4613ms)\nHow large is it?\tany further\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (any further, talk about, image sizing) -> any further (4697ms)\nHow large is it?\tCongress\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Congress, talked about reducing, the size) -> Congress (4613ms)\nHow large is it?\ta double page\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a double page, spread in, size) -> a double page (4706ms)\nHow large is it?\tA six-story museum\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (A six-story museum, shaped like, a full-sized ocean liner) -> A six-story museum (4704ms)\nHow large is it?\tWell-managed gift planning\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Well-managed gift planning, can protect, the size) -> Well-managed gift planning (4613ms)\nHow large is it?\tthe buffer\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (the buffer, must provide an area of, size) -> the buffer (4706ms)\nHow large is it?\tThe company\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (The company, started as, a half size printer) -> The company (4646ms)\nHow large is it?\tKev\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Kev, studied, the size) -> Kev (4559ms)\nHow large is it?\tImplementations\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Implementations, may return hardcoded values for, object size) -> Implementations (4708ms)\nHow large is it?\tSkaters\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Skaters, talk about, the size) -> Skaters (4598ms)\nHow large is it?\tJanus\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Janus, has an irregular shape with, a size) -> Janus (4682ms)\nHow large is it?\tThe wart attack\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (The wart attack, started off as, a chewing gum size) -> The wart attack (4656ms)\nHow large is it?\tnever before\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (never before, only study, the size) -> never before (4591ms)\nHow large is it?\tovarian cancer\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (ovarian cancer, can spread to, a considerable size) -> ovarian cancer (1929ms)\nHow large is it?\tWelsh\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Welsh, studied, the size) -> Welsh (4575ms)\nHow large is it?\tSestak\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Sestak, talked about getting, the size) -> Sestak (4605ms)\nHow large is it?\tObject\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Object, protected, boolean canSetSourceRenderSize) -> Object (4713ms)\nHow large is it?\tThe sides , crown and front\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (The sides , crown and front, are shaped to fit, the size) -> The sides , crown and front (4646ms)\nHow large is it?\thoop stress\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (hoop stress, values, any size tank) -> hoop stress (4689ms)\nHow large is it?\tThe radiologist\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (The radiologist, will study, the size and shape) -> The radiologist (4669ms)\nHow large is it?\tSite\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (Site, provides, information Washington D.C. area real estate) -> Site (4702ms)\nHow large is it?\twomen\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (women, get in shape without adding, size) -> women (4656ms)\nHow large is it?\torder\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (order, protect, your LifeSize product investment) -> order (4711ms)\nHow large is it?\t13\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (13, is uniquely shaped, size Plaque Style clock) -> 13 (4575ms)\nHow large is it?\tBerbers\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Berbers, valued, less the size) -> Berbers (4708ms)\nHow large is it?\tthe moor\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the moor, shapes, their size) -> the moor (4678ms)\nHow large is it?\tstocks\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (stocks, were valued at twice, the size) -> stocks (3555ms)\nHow large is it?\tmSize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (mSize, protected, int mSize Number) -> mSize (4598ms)\nHow large is it?\tonly a round sleeve\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (only a round sleeve, shaped with, a size) -> only a round sleeve (4694ms)\nHow large is it?\tCanvas\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Canvas, protected with, acid free sizing) -> Canvas (4575ms)\nHow large is it?\tQueens Park\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Queens Park, spread out, seven white queen-sized sheets) -> Queens Park (4674ms)\nHow large is it?\tExpressive eyes\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Expressive eyes, are shaped, well sized) -> Expressive eyes (4678ms)\nHow large is it?\tDiamond\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Diamond, shaped over, sized lot) -> Diamond (4627ms)\nHow large is it?\tTeardrop\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Teardrop, shaped, stone size) -> Teardrop (4542ms)\nHow large is it?\tadjustable styrofoam inserts\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (adjustable styrofoam inserts, protect, any size TV) -> adjustable styrofoam inserts (4559ms)\nHow large is it?\tEntrants\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Entrants, must provide Sponsor with, size) -> Entrants (4682ms)\nHow large is it?\tthe wound\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the wound, spreads in, size) -> the wound (4646ms)\nHow large is it?\tTexans\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Texans, are always talking about, size) -> Texans (4583ms)\nHow large is it?\tThe scale bars\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The scale bars, provide an indication of, size) -> The scale bars (4598ms)\nHow large is it?\tcacheSize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (cacheSize, protected, int cacheSize Number) -> cacheSize (4708ms)\nHow large is it?\tthe Canadian province\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the Canadian province, spreads over, the size) -> the Canadian province (4641ms)\nHow large is it?\tyear\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (year, is great value to, a medium sized business) -> year (4583ms)\nHow large is it?\ta film\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a film, spread, the size) -> a film (4674ms)\nHow large is it?\tPizzas\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Pizzas, can easily be different shapes as well as, sizes) -> Pizzas (4613ms)\nHow large is it?\tThe South Sea pearl\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The South Sea pearl, is valued for, its size) -> The South Sea pearl (4598ms)\nHow large is it?\ta geodesist\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (a geodesist, studies, the size) -> a geodesist (4706ms)\nHow large is it?\tLet?s\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Let?s, just talk about, size) -> Let?s (4598ms)\nHow large is it?\tart\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (art, is valued by, its size) -> art (3555ms)\nHow large is it?\t0, colour shade\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (0, colour shade, spread as, 4 and size) -> 0, colour shade (4689ms)\nHow large is it?\tthe 2 tons\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the 2 tons, spread out over, the size) -> the 2 tons (4605ms)\nHow large is it?\ta food\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a food, spread, the size) -> a food (4706ms)\nHow large is it?\tyoure\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (youre, talking about, class sizes) -> youre (4713ms)\nHow large is it?\told saw blades\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (old saw blades, could be shaped into, suitable-size scrapers) -> old saw blades (4710ms)\nHow large is it?\tThe initiative\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (The initiative, is the first study of, its size) -> The initiative (4621ms)\nHow large is it?\tResearchers\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Researchers, will study, different sizes and densities) -> Researchers (4678ms)\nHow large is it?\telectrical cord suction cup support\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (electrical cord suction cup support, provided, Size) -> electrical cord suction cup support (4674ms)\nHow large is it?\tThe 11-gallon trunk\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (The 11-gallon trunk, protects, a medium-sized bag) -> The 11-gallon trunk (4441ms)\nHow large is it?\tSpanish Majors\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Spanish Majors, Study, Abroad Font Size Study Abroad) -> Spanish Majors (4710ms)\nHow large is it?\tMcQuire and Visser\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (McQuire and Visser, provide, size) -> McQuire and Visser (4613ms)\nHow large is it?\ta partition\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (a partition, accept the default value for, the size) -> a partition (4583ms)\nHow large is it?\tchart\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (chart, provided, size) -> chart (4641ms)\nHow large is it?\tArianespace\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Arianespace, studied, the size) -> Arianespace (4694ms)\nHow large is it?\tSuch junctions\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Such junctions, could provide electronic elements with, sizes) -> Such junctions (4682ms)\nHow large is it?\tSample\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Sample, spread, Sample size) -> Sample (4685ms)\nHow large is it?\tThe scales\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (The scales, were shaped a little over, size) -> The scales (4711ms)\nHow large is it?\tThe weapons\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (The weapons, studied for, their size) -> The weapons (4710ms)\nHow large is it?\tdetailed species accounts\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (detailed species accounts, provide information about, size) -> detailed species accounts (4542ms)\nHow large is it?\tthe group\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the group, must have values for, color and size) -> the group (4713ms)\nHow large is it?\tRubber feet\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Rubber feet, protect against, surface damage Size) -> Rubber feet (4713ms)\nHow large is it?\ttocs system\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (tocs system, provides a variety of, sizes) -> tocs system (4567ms)\nHow large is it?\tEach franchise\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Each franchise, is protected with, a generous size territory) -> Each franchise (4708ms)\nHow large is it?\tmetal microstructures\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (metal microstructures, enabled the study of, size effects) -> metal microstructures (4550ms)\nHow large is it?\tthe AIX smit program\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the AIX smit program, change the value of, the tape block size) -> the AIX smit program (4620ms)\nHow large is it?\tSQL Pass\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (SQL Pass, talked about, sizing and performance) -> SQL Pass (4697ms)\nHow large is it?\t200003 Bath-mat\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (200003 Bath-mat, shaped as, a big foot big size) -> 200003 Bath-mat (4620ms)\nHow large is it?\tanimals\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (animals, are shaped by, their size) -> animals (4694ms)\nHow large is it?\tastronomers\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (astronomers, talk about, the size) -> astronomers (4708ms)\nHow large is it?\tMichael\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Michael, talked about, the optimal size) -> Michael (4697ms)\nHow large is it?\tThe snap-in easel\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The snap-in easel, is provided through, sizes) -> The snap-in easel (4689ms)\nHow large is it?\t1970\t0.222222222221\tHow large is it? -> $x: ($x, spread, dc area) -> (1970, has been spread throughout, the Washington D.C. area) -> 1970 (4714ms)\nHow large is it?\tSuch data\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Such data, can provide an indication of, sizes) -> Such data (4708ms)\nHow large is it?\tMcAfee\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (McAfee, protects, consumers and businesses of all sizes) -> McAfee (4697ms)\nHow large is it?\tpolished brass studs\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (polished brass studs, protect bottom of, bag Size) -> polished brass studs (4583ms)\nHow large is it?\ta standard triangle\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (a standard triangle, shaped, size) -> a standard triangle (4711ms)\nHow large is it?\tHugon\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Hugon, has studied, the size distribution) -> Hugon (4651ms)\nHow large is it?\tNumero Uno\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Numero Uno, values, the size) -> Numero Uno (4656ms)\nHow large is it?\tBYU\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (BYU, will be studying, the size) -> BYU (4706ms)\nHow large is it?\tUse\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Use, protect, important A5-sized documents , photos and cards) -> Use (4620ms)\nHow large is it?\tvoid blockSize_\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (void blockSize_, protected, int blockSize_) -> void blockSize_ (4620ms)\nHow large is it?\tNorth Carolina\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (North Carolina, studied the changes in, portion sizes) -> North Carolina (4699ms)\nHow large is it?\tthe desire\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the desire, is to spread, large particle size material) -> the desire (4669ms)\nHow large is it?\tthe respondents\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the respondents, were pretty evenly spread across, all sizes) -> the respondents (4641ms)\nHow large is it?\ta concern\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (a concern, involves a monetary value of, any size) -> a concern (4575ms)\nHow large is it?\tthe soap film\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (the soap film, starts off as, micron-sized or slightly larger) -> the soap film (4697ms)\nHow large is it?\tThe dynamic area\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (The dynamic area, starts out as, size zero) -> The dynamic area (4567ms)\nHow large is it?\tThe whole disc\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (The whole disc, will slowly spread in, size) -> The whole disc (4660ms)\nHow large is it?\tan extinction-level asteroid impact\t0.222222222221\tHow large is it? -> $x: ($x, be population of, earth) -> (an extinction-level asteroid impact, is the population of, Earth) -> an extinction-level asteroid impact (4714ms)\nHow large is it?\tWorm\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Worm, shaped, SIZE) -> Worm (4660ms)\nHow large is it?\tKay\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Kay, might include studying, nipple sizes) -> Kay (4591ms)\nHow large is it?\tFarmers\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Farmers, spread, the rice-size urea granules) -> Farmers (4627ms)\nHow large is it?\tthe Flash\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the Flash, shapes to match, the new size) -> the Flash (4627ms)\nHow large is it?\tMegan\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Megan, talked about, the huge size) -> Megan (4697ms)\nHow large is it?\tCasa Mauricio\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (Casa Mauricio, Providing, the DC Metro area) -> Casa Mauricio (4656ms)\nHow large is it?\tMorphology analysis\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Morphology analysis, is the study of, the size) -> Morphology analysis (4713ms)\nHow large is it?\trelay racks\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (relay racks, spread around, a good sized room) -> relay racks (4713ms)\nHow large is it?\tthe red hard tissue\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the red hard tissue, has spread to, the size) -> the red hard tissue (4613ms)\nHow large is it?\tPlayers\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Players, have talked about, my size) -> Players (4699ms)\nHow large is it?\tWe?ve\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (We?ve, talked about, the size) -> We?ve (4669ms)\nHow large is it?\tThe seller\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The seller, must provide detailed, size) -> The seller (4441ms)\nHow large is it?\tcity leaders\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (city leaders, understand the value of, all shapes and sizes) -> city leaders (4550ms)\nHow large is it?\ta blood pattern\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (a blood pattern, involves studying, the size and shape) -> a blood pattern (4651ms)\nHow large is it?\t20-count boxes\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (20-count boxes, spread across, 5 traditional sizes) -> 20-count boxes (4682ms)\nHow large is it?\tWindow\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Window, contains the value of, the receive window size) -> Window (4697ms)\nHow large is it?\tnevertheless other businesses\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (nevertheless other businesses, merely provide, sizes) -> nevertheless other businesses (4689ms)\nHow large is it?\t2,711 stone slabs\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (2,711 stone slabs, spread over, the size) -> 2,711 stone slabs (4702ms)\nHow large is it?\tthe game engine\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (the game engine, should start such as, screen size etc) -> the game engine (4550ms)\nHow large is it?\tThe new y\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The new y, coordinate value for, the page size) -> The new y (4714ms)\nHow large is it?\tLa Fraisonn?e Raspberry Min?avi\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (La Fraisonn?e Raspberry Min?avi, spread, Size) -> La Fraisonn?e Raspberry Min?avi (4550ms)\nHow large is it?\tworse health situations\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (worse health situations, Study, 15/04/2012 02:30:00 Font size) -> worse health situations (4694ms)\nHow large is it?\tThe Chairman\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (The Chairman, talk about, the size) -> The Chairman (4674ms)\nHow large is it?\ta mainstream religion\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a mainstream religion, has spread to, its current size today) -> a mainstream religion (4682ms)\nHow large is it?\tOogie\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (Oogie, started out as, the size) -> Oogie (4613ms)\nHow large is it?\tint getSize\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (int getSize, Return the value of, the size property) -> int getSize (4714ms)\nHow large is it?\tthe place\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (the place, to protect, class size) -> the place (4591ms)\nHow large is it?\ttools life cleans\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (tools life cleans, protects, A046073 Drive Size) -> tools life cleans (4713ms)\nHow large is it?\tThe model\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The model, can be used to value, any size) -> The model (4646ms)\nHow large is it?\ta connection\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (a connection, set the value of, the page size) -> a connection (4710ms)\nHow large is it?\tH1N1\t0.222222222221\tHow large is it? -> $x: ($x, spread, dc area) -> (H1N1, spread in, the DC metropolitan area) -> H1N1 (4678ms)\nHow large is it?\tthe bones\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the bones, spread in, size) -> the bones (1929ms)\nHow large is it?\topacity 50\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (opacity 50, spread, 0, size 13) -> opacity 50 (4699ms)\nHow large is it?\tVertical\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Vertical, shaped with, a size-adjusting flap) -> Vertical (4583ms)\nHow large is it?\tBack of mirror\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Back of mirror, shall be protected by, full size) -> Back of mirror (4678ms)\nHow large is it?\tthe presenters\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (the presenters, started talking about, penis size) -> the presenters (4598ms)\nHow large is it?\tPhillips\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Phillips, studied, the shape and sizes) -> Phillips (4575ms)\nHow large is it?\tExplorer and photographer Lowell Baker\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Explorer and photographer Lowell Baker, provides scale for, size) -> Explorer and photographer Lowell Baker (4665ms)\nHow large is it?\tthe maximum\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the maximum, supported value for, INITIAL_SIZE) -> the maximum (4559ms)\nHow large is it?\tFabricators\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Fabricators, shape, the size and cost drivers) -> Fabricators (4700ms)\nHow large is it?\tdecals\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (decals, provides a variety of, sizes) -> decals (4559ms)\nHow large is it?\tpurpose automobile\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (purpose automobile, started off as, a small ? size car) -> purpose automobile (4704ms)\nHow large is it?\t?PF-AR:MBS and BBS?\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (?PF-AR:MBS and BBS?, Check the value of, slit size) -> ?PF-AR:MBS and BBS? (4583ms)\nHow large is it?\tthe universe\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (the universe, started as small as, the size) -> the universe (4710ms)\nHow large is it?\tPercentage box scaling\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Percentage box scaling, values, the box size) -> Percentage box scaling (3555ms)\nHow large is it?\tthe disease\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the disease, has spread, ( size) -> the disease (4656ms)\nHow large is it?\tFly\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Fly, talk about, the mid-size trend) -> Fly (4661ms)\nHow large is it?\tthe recipe\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (the recipe, talk about, size) -> the recipe (4591ms)\nHow large is it?\tlast year?Farmers\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (last year?Farmers, spread, the rice-size urea granules) -> last year?Farmers (4620ms)\nHow large is it?\tmountain lakes\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (mountain lakes, have long been protected by, size limits) -> mountain lakes (4669ms)\nHow large is it?\tmorphometrics\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (morphometrics, is the study of, size) -> morphometrics (4661ms)\nHow large is it?\t32,000 people\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (32,000 people, are spread, the size of Western Europe) -> 32,000 people (4583ms)\nHow large is it?\tThe eyes\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (The eyes, should be oval shaped of, medium size) -> The eyes (4634ms)\nHow large is it?\tArmhole\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Armhole, shaping for, all sizes) -> Armhole (4665ms)\nHow large is it?\tempty conduit products\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (empty conduit products, provide a variety of, sizes) -> empty conduit products (4711ms)\nHow large is it?\tsilver\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (silver, are valued by, their size) -> silver (4697ms)\nHow large is it?\tPublic Instruction\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Public Instruction, is talking about increasing, class size) -> Public Instruction (4711ms)\nHow large is it?\ta routine cleanser\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a routine cleanser, spread, a quarter size amount) -> a routine cleanser (4651ms)\nHow large is it?\tCrescent\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Crescent, shaped, object approx size) -> Crescent (4674ms)\nHow large is it?\tThe pattern\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The pattern, provides lots of, sizes) -> The pattern (4656ms)\nHow large is it?\tDeep water\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Deep water, protected access for, all size) -> Deep water (4606ms)\nHow large is it?\tgroup size\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (group size, has shaped, the size) -> group size (4711ms)\nHow large is it?\tMark\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Mark, also talks about, sensor size) -> Mark (4550ms)\nHow large is it?\tthe asteroid\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the asteroid, would spread out to, a size considerable bigger) -> the asteroid (4706ms)\nHow large is it?\tLogs\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Logs, can be provided in, sizes) -> Logs (4700ms)\nHow large is it?\tGeodesists\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Geodesists, study, the size) -> Geodesists (4661ms)\nHow large is it?\tlocations\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (locations, provide a range of, sizes) -> locations (4613ms)\nHow large is it?\t2011 People\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (2011 People, talk about, list size) -> 2011 People (4441ms)\nHow large is it?\tCornell MS2 Project\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Cornell MS2 Project, Studying, the size and characteristics) -> Cornell MS2 Project (4697ms)\nHow large is it?\tDeAngelis\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (DeAngelis, was studying, size bimodality) -> DeAngelis (4665ms)\nHow large is it?\tAssorted\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Assorted, shapes, the right size) -> Assorted (4711ms)\nHow large is it?\tWhat factors\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (What factors, shape, sexual size dimorphism) -> What factors (4686ms)\nHow large is it?\tThe output\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (The output, is shaped according to, size) -> The output (4567ms)\nHow large is it?\tThe BASEFONT element\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The BASEFONT element, overrides the value of, the base font size) -> The BASEFONT element (4682ms)\nHow large is it?\tthe next few years\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the next few years, will shape, the size) -> the next few years (4699ms)\nHow large is it?\tPatterns\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Patterns, are provided in, sizes) -> Patterns (4708ms)\nHow large is it?\tgirl\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (girl, spread to, large size) -> girl (4559ms)\nHow large is it?\torbs\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (orbs, is the value of, the position and size) -> orbs (4567ms)\nHow large is it?\tSolar panel kits\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Solar panel kits, have a large spread of, sizes) -> Solar panel kits (4646ms)\nHow large is it?\tElucia?s reputation\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Elucia?s reputation, spread to, the size) -> Elucia?s reputation (4678ms)\nHow large is it?\tthe Hubble telescope\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the Hubble telescope, have studied, a mid-sized black hole) -> the Hubble telescope (4712ms)\nHow large is it?\tRooms\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Rooms, are valued, size standard) -> Rooms (4613ms)\nHow large is it?\tHandleMessage\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (HandleMessage, protected, sizet  size) -> HandleMessage (4689ms)\nHow large is it?\tthe Earth\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the Earth, to shape, the size and location of cities) -> the Earth (4646ms)\nHow large is it?\tOutbuildings\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Outbuildings, are valued based on, their size) -> Outbuildings (4627ms)\nHow large is it?\ttours\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (tours, were provided around, the Washington D.C. area) -> tours (4665ms)\nHow large is it?\tThe play\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (The play, can be shaped to, the size) -> The play (4646ms)\nHow large is it?\tawe and surprise\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (awe and surprise, talk about, my huge size) -> awe and surprise (4591ms)\nHow large is it?\tPiper Fire\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Piper Fire, protect, any industrial size building) -> Piper Fire (4598ms)\nHow large is it?\tFixed\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Fixed, spread, Pneumatic size) -> Fixed (4598ms)\nHow large is it?\tsocial structure\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (social structure, have shaped, the size) -> social structure (4550ms)\nHow large is it?\tOne guy\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (One guy, talks about, penis sizes) -> One guy (4713ms)\nHow large is it?\te-first aid Supplies\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (e-first aid Supplies, provides a variety of, sizes) -> e-first aid Supplies (4575ms)\nHow large is it?\tI?d\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (I?d, changed my shape to, their size) -> I?d (4678ms)\nHow large is it?\tDurham University\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Durham University, studied, the size) -> Durham University (4689ms)\nHow large is it?\tCluster Size Oracle\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Cluster Size Oracle, uses the value of, the SIZE parameter) -> Cluster Size Oracle (4682ms)\nHow large is it?\tcolors\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (colors, talk about, their size and shape) -> colors (4708ms)\nHow large is it?\tmore Jag Titles JAG\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (more Jag Titles JAG, started out as, a giant TOPPER-sized comic) -> more Jag Titles JAG (4686ms)\nHow large is it?\tPhotoshop\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Photoshop, talk about, image sizes and resolution) -> Photoshop (4708ms)\nHow large is it?\tthe same material\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the same material, can be shaped to, any size) -> the same material (4591ms)\nHow large is it?\tthe part\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the part, is shaped to, size) -> the part (4575ms)\nHow large is it?\tdisplay case\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (display case, protects, a regulation size hardball) -> display case (4689ms)\nHow large is it?\tAtlantic City\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Atlantic City, has studied, every large and medium-sized airport) -> Atlantic City (4656ms)\nHow large is it?\tPhoto books\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Photo books, provide plenty of, sizes) -> Photo books (4634ms)\nHow large is it?\tthe primary extension\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the primary extension, study, the bill size and shape) -> the primary extension (4620ms)\nHow large is it?\tarXiv\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (arXiv, is a statistical study of, program sizes) -> arXiv (4665ms)\nHow large is it?\tchanges\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (changes, is to study, the size and shape) -> changes (4583ms)\nHow large is it?\tan area\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (an area, spread, nearly the size of South Carolina) -> an area (4542ms)\nHow large is it?\tthe ideal way\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (the ideal way, protect, your medium-sized collectibles) -> the ideal way (4550ms)\nHow large is it?\tsufficient space\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (sufficient space, spread to, its mature size) -> sufficient space (4700ms)\nHow large is it?\tsize=integer\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (size=integer, Use this value as, the initial size) -> size=integer (4694ms)\nHow large is it?\toptionList\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (optionList, protected, int size) -> optionList (4646ms)\nHow large is it?\tThe image\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (The image, started out as big as, the original size) -> The image (4674ms)\nHow large is it?\tenough power\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (enough power, shape, a good-size yard) -> enough power (4691ms)\nHow large is it?\tAndrei Broder\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Andrei Broder, published a study of, the size) -> Andrei Broder (4702ms)\nHow large is it?\tContent sub-elements\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Content sub-elements, provide, size) -> Content sub-elements (4651ms)\nHow large is it?\t? Let\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (? Let, talk about, the size) -> ? Let (4702ms)\nHow large is it?\ttax policies\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (tax policies, shape, the size) -> tax policies (4621ms)\nHow large is it?\tThe NodeFormProcessor\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The NodeFormProcessor, may add values for, the content size) -> The NodeFormProcessor (4685ms)\nHow large is it?\tOnly\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Only, protects, Standard size gaming cards) -> Only (3555ms)\nHow large is it?\tthe secretary\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (the secretary, talked about, the size) -> the secretary (4641ms)\nHow large is it?\tSEMI PV4\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (SEMI PV4, provides a range of, sizes) -> SEMI PV4 (4682ms)\nHow large is it?\tNebula ?h\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Nebula ?h, is spreading out with, a size) -> Nebula ?h (4714ms)\nHow large is it?\twere\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (were, talking about, the screen size) -> were (4694ms)\nHow large is it?\tmen\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (men, talking about, the size of their manhood) -> men (4627ms)\nHow large is it?\tThe strongest witness\t0.222222222221\tHow large is it? -> $x: ($x, be population of, earth) -> (The strongest witness, is the vast population of, the Earth) -> The strongest witness (4665ms)\nHow large is it?\teach slice\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (each slice, are spread out over, the size) -> each slice (4575ms)\nHow large is it?\tAccept-Encoding Loading\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Accept-Encoding Loading, shape, , shade and size) -> Accept-Encoding Loading (4441ms)\nHow large is it?\ttable-cut diamonds\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (table-cut diamonds, were valued for, their clarity and size) -> table-cut diamonds (4665ms)\nHow large is it?\tJuvenile bass\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Juvenile bass, are protected by, a minimum landing size) -> Juvenile bass (4699ms)\nHow large is it?\tthe container\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the container, spread, one pearl-sized bead) -> the container (4605ms)\nHow large is it?\tThe specification\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The specification, provides dimensional tolerances for, size) -> The specification (4567ms)\nHow large is it?\tArnold\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Arnold, provided an estimate of, size) -> Arnold (4641ms)\nHow large is it?\tthe items\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (the items, then provide an estimate of, size) -> the items (4665ms)\nHow large is it?\tLa Fraisonn?e Blueberry\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (La Fraisonn?e Blueberry, spread, Min?avi Size) -> La Fraisonn?e Blueberry (4694ms)\nHow large is it?\tgreen moss\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (green moss, shaped into, soccer-ball size topiary) -> green moss (4620ms)\nHow large is it?\tan important case\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (an important case, study both for, its size) -> an important case (4699ms)\nHow large is it?\t1943 Adrian\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (1943 Adrian, also studied, the relative sizes) -> 1943 Adrian (4542ms)\nHow large is it?\tgood nobody\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (good nobody, ever talked about, the size) -> good nobody (4656ms)\nHow large is it?\tMarketers and agency leaders\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Marketers and agency leaders, placed high value on, size) -> Marketers and agency leaders (4700ms)\nHow large is it?\tVector\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Vector, clipart shapes for, any size of work) -> Vector (4550ms)\nHow large is it?\tThe authors\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (The authors, then studied, the size-distribution) -> The authors (4697ms)\nHow large is it?\tPC Defender installs\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (PC Defender installs, protects, any size disk) -> PC Defender installs (4558ms)\nHow large is it?\toverload\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (overload, protected, Sturdy construction Size) -> overload (4678ms)\nHow large is it?\tRETRIEVED_SET_SIZE\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (RETRIEVED_SET_SIZE, protected, static int RETRIEVED_SET_SIZE) -> RETRIEVED_SET_SIZE (4583ms)\nHow large is it?\tOpTier BTM?\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (OpTier BTM?, brings value to, any size environment) -> OpTier BTM? (4669ms)\nHow large is it?\tCrocker Liu\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Crocker Liu, studied the link between, the size) -> Crocker Liu (4665ms)\nHow large is it?\tMr. Davis\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Mr. Davis, valued, size) -> Mr. Davis (4704ms)\nHow large is it?\tI?ve\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (I?ve, talked about, the unimaginable size) -> I?ve (4641ms)\nHow large is it?\ta bottom-heavy statue\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (a bottom-heavy statue, wants to protect, the main size) -> a bottom-heavy statue (4710ms)\nHow large is it?\tapical third\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (apical third, was shaped to, size 40) -> apical third (4583ms)\nHow large is it?\tEffects\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Effects, enter a value for, Size) -> Effects (4656ms)\nHow large is it?\tpoliticians and others\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (politicians and others, talk about, the size) -> politicians and others (4634ms)\nHow large is it?\ta snowball\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (a snowball, starts as, the size) -> a snowball (1929ms)\nHow large is it?\tany businesses\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (any businesses, are provided based upon, size) -> any businesses (4559ms)\nHow large is it?\tParameters Return\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Parameters Return, Values, The data size) -> Parameters Return (4567ms)\nHow large is it?\tSizeMax\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (SizeMax, is the value of, Size) -> SizeMax (4674ms)\nHow large is it?\thome-based learning\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (home-based learning, emphasize the value of, small class size) -> home-based learning (4713ms)\nHow large is it?\tterms\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (terms, study, the size) -> terms (4712ms)\nHow large is it?\tlicensure\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (licensure, are provided based upon, size) -> licensure (4651ms)\nHow large is it?\t12 feet\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (12 feet, are valued both for, their size) -> 12 feet (4558ms)\nHow large is it?\tOS/2 v2.0: window\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (OS/2 v2.0: window, provides information on, size) -> OS/2 v2.0: window (4712ms)\nHow large is it?\tan order\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (an order, talk about, different styles and sizes) -> an order (4689ms)\nHow large is it?\tposture and attitude\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (posture and attitude, shape, the body size) -> posture and attitude (4627ms)\nHow large is it?\tmaxSavePostSize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (maxSavePostSize, protected, int maxSavePostSize Maximum size) -> maxSavePostSize (4689ms)\nHow large is it?\tthe other study characteristics\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the other study characteristics, study, period and study size) -> the other study characteristics (4605ms)\nHow large is it?\tFold\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Fold, spread in, a medium-sized frying pan) -> Fold (4542ms)\nHow large is it?\tweek\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (week, may protect, your brain size) -> week (4713ms)\nHow large is it?\tTransportation\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (Transportation, is provided from, DC-metro area) -> Transportation (4711ms)\nHow large is it?\tA full-range selection\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (A full-range selection, is provided in, sizes) -> A full-range selection (4583ms)\nHow large is it?\t? Farmers\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (? Farmers, spread, the rice-size urea granules) -> ? Farmers (1929ms)\nHow large is it?\tmaxPostSize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (maxPostSize, protected, int maxPostSize Maximum size) -> maxPostSize (4669ms)\nHow large is it?\tLLC\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (LLC, provides services in, the Washington DC metropolitan area) -> LLC (4620ms)\nHow large is it?\timage quality\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (image quality, is valued above, file size) -> image quality (4605ms)\nHow large is it?\tshrunk\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (shrunk, can often be shaped back to, size) -> shrunk (4665ms)\nHow large is it?\ta Federally mandated law\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (a Federally mandated law, protects people of, size) -> a Federally mandated law (4689ms)\nHow large is it?\t800 calories\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (800 calories, spread into, 4 snack-sized meals) -> 800 calories (4441ms)\nHow large is it?\tthe elephants\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (the elephants, must be protected as, a manageable herd size) -> the elephants (4550ms)\nHow large is it?\tthe minister\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (the minister, was talking about, class sizes) -> the minister (4665ms)\nHow large is it?\tThe blinding value r\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The blinding value r, is a random value with, the size) -> The blinding value r (4605ms)\nHow large is it?\tthe middle\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the middle, spread across, a good-sized space) -> the middle (4714ms)\nHow large is it?\tbufferSize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (bufferSize, protected, int bufferSize size) -> bufferSize (4583ms)\nHow large is it?\tdelicate cut glass decoration and cone\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (delicate cut glass decoration and cone, shaped, opal glass Size) -> delicate cut glass decoration and cone (4606ms)\nHow large is it?\tMeg magazine\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (Meg magazine, started out as, a digest sized magazine) -> Meg magazine (4674ms)\nHow large is it?\tAttributes\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Attributes, protected, The next size value) -> Attributes (4706ms)\nHow large is it?\tCoverage & Shelf Life One kit\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Coverage & Shelf Life One kit, protect, an average size handbag) -> Coverage & Shelf Life One kit (4682ms)\nHow large is it?\tevery marketing plan\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (every marketing plan, talks about, the size) -> every marketing plan (4712ms)\nHow large is it?\tOne logo\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (One logo, should be provided of, size) -> One logo (4704ms)\nHow large is it?\tThe Armory Show\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (The Armory Show, spreads over, two hangar-size piers) -> The Armory Show (4714ms)\nHow large is it?\tFigure 1\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Figure 1, shows the values for, paper size and resolution) -> Figure 1 (4686ms)\nHow large is it?\tMayfield College\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Mayfield College, values, small class sizes) -> Mayfield College (4714ms)\nHow large is it?\tBrowsers\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (Browsers, started using 16px as, the default size years) -> Browsers (4567ms)\nHow large is it?\tZestimates\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Zestimates, are only ballpark values based mostly on, size) -> Zestimates (4714ms)\nHow large is it?\tearlier this year\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (earlier this year, talks about, Enron-sized flaws) -> earlier this year (4598ms)\nHow large is it?\tDon?t\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Don?t, forget to talk about, the size) -> Don?t (4697ms)\nHow large is it?\tthe cranial landscape\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the cranial landscape, was shaped by, the size) -> the cranial landscape (4699ms)\nHow large is it?\tSEER Estimate\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (SEER Estimate, provides estimates for, size) -> SEER Estimate (3555ms)\nHow large is it?\tFloor plans\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Floor plans, provide varying, sizes) -> Floor plans (4542ms)\nHow large is it?\tBush\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Bush, also talked about increasing, the size) -> Bush (4567ms)\nHow large is it?\tPREFERRED_SIZE\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (PREFERRED_SIZE, indicates the value from, getPreferredSize) -> PREFERRED_SIZE (4441ms)\nHow large is it?\t1991 Hsieh & Trichopoulos\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (1991 Hsieh & Trichopoulos, studied, breast size) -> 1991 Hsieh & Trichopoulos (4646ms)\nHow large is it?\tABS plastic pan\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (ABS plastic pan, protect, floors Multiple size options) -> ABS plastic pan (4575ms)\nHow large is it?\tHeight & Habit\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Height & Habit, spreading, Size) -> Height & Habit (4575ms)\nHow large is it?\tthe value\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the value, increase the value for, SHARED_POOL_SIZE) -> the value (4704ms)\nHow large is it?\tinformation\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (information, is provided on, size) -> information (4665ms)\nHow large is it?\tpageSize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (pageSize, protected, int pageSize) -> pageSize (4591ms)\nHow large is it?\twatching.Aereo\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (watching.Aereo, has shaped, a dime-sized small screen projection) -> watching.Aereo (4714ms)\nHow large is it?\tThe format\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (The format, started as, a digest size) -> The format (4689ms)\nHow large is it?\tBought\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Bought, protects, Standard size gaming cards) -> Bought (4674ms)\nHow large is it?\tany bag\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (any bag, shaped with, or without a handle of various sizes) -> any bag (4697ms)\nHow large is it?\tmandate\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (mandate, spread, sizes) -> mandate (4598ms)\nHow large is it?\tthe body styling\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the body styling, shaped, the TSA full-size 7200 class truck) -> the body styling (4706ms)\nHow large is it?\tthe application needs\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (the application needs, provide multiple options in, sizes) -> the application needs (4685ms)\nHow large is it?\tformulations\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (formulations, were studied for, particle size) -> formulations (4641ms)\nHow large is it?\tBeautiful ornamental motifs\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Beautiful ornamental motifs, spread all over in, different sizes) -> Beautiful ornamental motifs (4697ms)\nHow large is it?\tThe researchers\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (The researchers, also studied, body size) -> The researchers (4559ms)\nHow large is it?\tdrummers\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (drummers, shape, individual drum size and depth) -> drummers (4627ms)\nHow large is it?\tagribusiness\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (agribusiness, still protect, the medium-sized farmer) -> agribusiness (4591ms)\nHow large is it?\tThe sail\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The sail, is provided cut to, size) -> The sail (4713ms)\nHow large is it?\tupload data\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (upload data, reduce the value of, upload_data_size) -> upload data (4567ms)\nHow large is it?\tthe highest resistance\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the highest resistance, values relative to, their sizes) -> the highest resistance (4583ms)\nHow large is it?\t110 micron nets side\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (110 micron nets side, was used to study, all sizes) -> 110 micron nets side (4656ms)\nHow large is it?\tEach booklet\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (Each booklet, starts out as, a regular-sized piece) -> Each booklet (4651ms)\nHow large is it?\tclumps\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (clumps, slowly spread in, size) -> clumps (4704ms)\nHow large is it?\tthe counter\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (the counter, started talking about, boom size) -> the counter (4598ms)\nHow large is it?\tAstronomers\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Astronomers, often talk about, the size) -> Astronomers (4689ms)\nHow large is it?\tthe output\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the output, is then studied to determine, the size) -> the output (4542ms)\nHow large is it?\tthe five different buttermilk\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the five different buttermilk, shaped, pitcher sizes) -> the five different buttermilk (4700ms)\nHow large is it?\ta couple years\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (a couple years, started as, a half dollar size spot) -> a couple years (4591ms)\nHow large is it?\tthe F-16s\t0.222222222221\tHow large is it? -> $x: ($x, protect, dc area) -> (the F-16s, were up protecting, the DC area) -> the F-16s (4686ms)\nHow large is it?\tCOLOR\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (COLOR, affects the value of, an emerald Size) -> COLOR (4605ms)\nHow large is it?\tLeni\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Leni, studied, the size and serial positioning) -> Leni (4704ms)\nHow large is it?\ta one page or two page\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a one page or two page, spread in, any size) -> a one page or two page (4605ms)\nHow large is it?\tDefinition Classes Attributes\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Definition Classes Attributes, protected, def maximumSize) -> Definition Classes Attributes (4678ms)\nHow large is it?\tclasses\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (classes, provide support for, sizes) -> classes (4646ms)\nHow large is it?\tMINSIZE and MAXSIZE\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (MINSIZE and MAXSIZE, provide a range of, sizes) -> MINSIZE and MAXSIZE (4711ms)\nHow large is it?\tReturn\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Return, Values, The size) -> Return (4694ms)\nHow large is it?\tthe Republicans\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (the Republicans, are again talking about, the size) -> the Republicans (4634ms)\nHow large is it?\ta cylinder\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (a cylinder, shaped, container sized) -> a cylinder (4665ms)\nHow large is it?\tGeodesy\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Geodesy, is the study of, the size and shape) -> Geodesy (4702ms)\nHow large is it?\tthe new growth\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the new growth, shape to, your desired shape and size) -> the new growth (4706ms)\nHow large is it?\tthe doll?s nostrils\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the doll?s nostrils, shaped, the same size) -> the doll?s nostrils (4441ms)\nHow large is it?\tPassword\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Password, Protect, Software Size) -> Password (4634ms)\nHow large is it?\tconsumers\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (consumers, talk about, Vanity Sizing) -> consumers (4646ms)\nHow large is it?\tthe 232 dogs\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the 232 dogs, studied into, 3 size categories) -> the 232 dogs (4641ms)\nHow large is it?\tEbbw Vale\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Ebbw Vale, has studied, several bite-sized courses) -> Ebbw Vale (1929ms)\nHow large is it?\ta Sell order\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (a Sell order, has the value for, the Lot Size) -> a Sell order (4669ms)\nHow large is it?\tEastman\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Eastman, was studying, nanometer-sized crystals) -> Eastman (4704ms)\nHow large is it?\tSizes\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Sizes, Shapes, The sizes of bookshelves and wardrobes) -> Sizes (4575ms)\nHow large is it?\tThe lesions\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (The lesions, start as, pin-sized lesions) -> The lesions (4699ms)\nHow large is it?\tThe application\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The application, may use this value as, the size) -> The application (4661ms)\nHow large is it?\tArab Advisors\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Arab Advisors, values, the total size) -> Arab Advisors (4694ms)\nHow large is it?\tcomputer-aided image analysis\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (computer-aided image analysis, are used to study, cell size) -> computer-aided image analysis (4620ms)\nHow large is it?\tsolars\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (solars, can provide, ( size) -> solars (4702ms)\nHow large is it?\tThe patch\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The patch, validates the value of, vblk_size) -> The patch (4567ms)\nHow large is it?\tthe truths\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (the truths, even talked about, my size) -> the truths (4613ms)\nHow large is it?\tground tackle\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (ground tackle, spread between, two good sized anchors) -> ground tackle (4660ms)\nHow large is it?\tGraceville?s Tiara Sorey\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Graceville?s Tiara Sorey, provides, size) -> Graceville?s Tiara Sorey (4669ms)\nHow large is it?\tThe plot\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (The plot, spreads on, the total size) -> The plot (4634ms)\nHow large is it?\tcomputers\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (computers, start as, room-sized behemoths) -> computers (4651ms)\nHow large is it?\tthe wireframe layouts\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (the wireframe layouts, provide a general sense of, size) -> the wireframe layouts (4441ms)\nHow large is it?\tHard contacts\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Hard contacts, are mainly provided under, sizes) -> Hard contacts (4660ms)\nHow large is it?\tthe surrounding red area\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the surrounding red area, had spread out to, silver dollar size) -> the surrounding red area (4598ms)\nHow large is it?\tcracks and folds\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (cracks and folds, are protected by, their small size) -> cracks and folds (4669ms)\nHow large is it?\tThe unique design\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The unique design, provides significant reduction in, size) -> The unique design (4613ms)\nHow large is it?\tthe Cyclops area\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the Cyclops area, spread to, its current size) -> the Cyclops area (4550ms)\nHow large is it?\tThe templates\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The templates, provide a variety of, sizes) -> The templates (4591ms)\nHow large is it?\tnevertheless many businesses\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (nevertheless many businesses, merely provide, sizes) -> nevertheless many businesses (4542ms)\nHow large is it?\tSupports\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Supports, password protected, sizes) -> Supports (4702ms)\nHow large is it?\tScheduled number\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Scheduled number, study, period Planned sample size) -> Scheduled number (4613ms)\nHow large is it?\tDimensioned Stone\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Dimensioned Stone, shaped to, specified sizes) -> Dimensioned Stone (4605ms)\nHow large is it?\tdivision\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (division, can provide, sizes) -> division (4605ms)\nHow large is it?\tdaylily people\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (daylily people, talk about, size) -> daylily people (4634ms)\nHow large is it?\tIndustry norm report\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Industry norm report, will provide, size) -> Industry norm report (4713ms)\nHow large is it?\tthe Winkel Map Projection\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (the Winkel Map Projection, provides the best balance of, size) -> the Winkel Map Projection (4627ms)\nHow large is it?\ta receiver\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (a receiver, SHOULD use these values to, size) -> a receiver (4567ms)\nHow large is it?\tvisiting\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (visiting, study, the life-size replica) -> visiting (4669ms)\nHow large is it?\tSelf-adhesive clear plastic\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Self-adhesive clear plastic, protects, business card size) -> Self-adhesive clear plastic (4682ms)\nHow large is it?\tPillsbury Crescent Rolls\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Pillsbury Crescent Rolls, shaped to, the right size) -> Pillsbury Crescent Rolls (4710ms)\nHow large is it?\t13 weeks\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (13 weeks, still protected, the size and insulin content) -> 13 weeks (4704ms)\nHow large is it?\tIcon images\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Icon images, are provided in, sizes) -> Icon images (4706ms)\nHow large is it?\tLifestyle Directer\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Lifestyle Directer, talked about, the great size) -> Lifestyle Directer (4559ms)\nHow large is it?\tthe Dodge Dart\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (the Dodge Dart, started out as, a full size model passenger car) -> the Dodge Dart (4704ms)\nHow large is it?\tNew macro $ {msg_size\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (New macro $ {msg_size, holds the value of, the SIZE= parameter) -> New macro $ {msg_size (4711ms)\nHow large is it?\ta series\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (a series, shaped, the size and structure) -> a series (4704ms)\nHow large is it?\tthe double bed spread\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the double bed spread, is spread on, the queen sized bed) -> the double bed spread (4699ms)\nHow large is it?\tonly a cylindrical sleeve\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (only a cylindrical sleeve, shaped with, a size) -> only a cylindrical sleeve (4694ms)\nHow large is it?\tvehicles\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (vehicles, protect, different size occupants) -> vehicles (4708ms)\nHow large is it?\t100 total tees\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (100 total tees, spread across, all sizes) -> 100 total tees (4689ms)\nHow large is it?\tthe pump irrigation system\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (the pump irrigation system, provides a variety of, sizes) -> the pump irrigation system (4651ms)\nHow large is it?\tLovely eyes\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Lovely eyes, shaped, good colour and size) -> Lovely eyes (4712ms)\nHow large is it?\tno point\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (no point, talk about, the size) -> no point (4710ms)\nHow large is it?\tsampleSizeInBits\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (sampleSizeInBits, protected, int sampleSizeInBits) -> sampleSizeInBits (4558ms)\nHow large is it?\tgeneological data\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (geneological data, studied the effects of, family size) -> geneological data (4660ms)\nHow large is it?\tCEO David Sacks\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (CEO David Sacks, talks about, a ' Facebook-sized opportunity ') -> CEO David Sacks (4711ms)\nHow large is it?\tThe Vol.1\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (The Vol.1, studies, the market size shift) -> The Vol.1 (4661ms)\nHow large is it?\tThe disposal\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (The disposal, is protected for properly, size septic dive bombs) -> The disposal (4669ms)\nHow large is it?\tBEST\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (BEST, VALUES FOR, SIZE) -> BEST (4567ms)\nHow large is it?\tMicro filter medium\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Micro filter medium, protects against, micron-size particles) -> Micro filter medium (4702ms)\nHow large is it?\tCalf implants\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Calf implants, can shape, the profile and size) -> Calf implants (4712ms)\nHow large is it?\tDr. Chang\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Dr. Chang, studied the association of, sibship size) -> Dr. Chang (4641ms)\nHow large is it?\tproject cork\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (project cork, shape, ( thin sizes) -> project cork (4634ms)\nHow large is it?\tSpain\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Spain, has launched a study into, the size) -> Spain (4651ms)\nHow large is it?\tpreparation\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (preparation, had studied, the market size and trends) -> preparation (4627ms)\nHow large is it?\tRCN\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (RCN, is dedicated to providing, the DC Metro area) -> RCN (4651ms)\nHow large is it?\tLets\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Lets, talk about, size) -> Lets (4699ms)\nHow large is it?\tThe Space Gamer\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (The Space Gamer, started as, a 16-page digest sized publication) -> The Space Gamer (4634ms)\nHow large is it?\tthe tempo\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (the tempo, protect, the size) -> the tempo (4641ms)\nHow large is it?\tDemography\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Demography, is the study of, the size) -> Demography (4542ms)\nHow large is it?\tEach entity\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Each entity, is valued based upon, its size) -> Each entity (4697ms)\nHow large is it?\tmAttrHashSize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (mAttrHashSize, protected, int mAttrHashSize Size) -> mAttrHashSize (4641ms)\nHow large is it?\tbones\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (bones, can change shape as well as, size) -> bones (4669ms)\nHow large is it?\tstudents\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (students, study the effects of, class size) -> students (4591ms)\nHow large is it?\tthe scientists\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the scientists, study things like, the size) -> the scientists (4598ms)\nHow large is it?\tthe facility\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the facility, spread out on, a large sized lot) -> the facility (4714ms)\nHow large is it?\tthe problems Hurst\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (the problems Hurst, studied was, the size) -> the problems Hurst (4646ms)\nHow large is it?\ttwo places\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (two places, will shape to, the size) -> two places (4583ms)\nHow large is it?\tmore female bones\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (more female bones, were studied for, the smaller sizes) -> more female bones (4678ms)\nHow large is it?\tfinal Attributes\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (final Attributes, protected, The next size value) -> final Attributes (4704ms)\nHow large is it?\ttiny mouse-like guardians\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (tiny mouse-like guardians, protect, normal-size folk) -> tiny mouse-like guardians (4542ms)\nHow large is it?\tWater-proof and UV\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Water-proof and UV, protect, Size) -> Water-proof and UV (4665ms)\nHow large is it?\tThe blank piece\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (The blank piece, shaped to, the required size) -> The blank piece (4686ms)\nHow large is it?\tOfficials\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (Officials, are talking about increasing, the size) -> Officials (4686ms)\nHow large is it?\tthree dust collectors\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (three dust collectors, provide the ideal balance for, size) -> three dust collectors (4550ms)\nHow large is it?\tCase\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Case, Study, A medium-sized manufacturing company) -> Case (4713ms)\nHow large is it?\ta student\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (a student, protect very, good size) -> a student (4591ms)\nHow large is it?\tthe factors\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the factors, shaping, the size spectra) -> the factors (4712ms)\nHow large is it?\tcalculateCategorySize\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (calculateCategorySize, protected, double calculateCategorySize) -> calculateCategorySize (4605ms)\nHow large is it?\tthe airlines\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (the airlines, provide service to, Washington DC area) -> the airlines (4669ms)\nHow large is it?\toptionList selectedValues\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (optionList selectedValues, protected, int size) -> optionList selectedValues (4710ms)\nHow large is it?\t8 teardrop\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (8 teardrop, shaped coral in, 2 sizes) -> 8 teardrop (4706ms)\nHow large is it?\tA man\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (A man, talks about, the size) -> A man (4656ms)\nHow large is it?\thair styles\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (hair styles, are usually valued for, size and wonder) -> hair styles (4558ms)\nHow large is it?\tSouthern California\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Southern California, have been studying, the size) -> Southern California (4710ms)\nHow large is it?\trugged , comfortable footwear\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (rugged , comfortable footwear, protect, your size) -> rugged , comfortable footwear (4656ms)\nHow large is it?\tthe stones\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (the stones, were shaped up to, different sizes) -> the stones (4627ms)\nHow large is it?\tproblems\t0.222222222221\tHow large is it? -> $x: ($x, be population of, earth) -> (problems, was the population of, the earth) -> problems (4583ms)\nHow large is it?\tthe table\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the table, spreads out, the size) -> the table (4711ms)\nHow large is it?\tObject tlh cacheChannel mayFilter size\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Object tlh cacheChannel mayFilter size, protected, long size) -> Object tlh cacheChannel mayFilter size (4605ms)\nHow large is it?\tPE\t0.222222222221\tHow large is it? -> $x: ($x, be population of, earth) -> (PE, is the population of, Earth) -> PE (4674ms)\nHow large is it?\tmessage\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (message, returns the same value as, size) -> message (4702ms)\nHow large is it?\tTheo Jefferson\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Theo Jefferson, provide a lot of, size) -> Theo Jefferson (4651ms)\nHow large is it?\tone order\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (one order, is low value with, reasonable weight and size) -> one order (4682ms)\nHow large is it?\tthe CM420ES\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (the CM420ES, offers true value in, the perfect size) -> the CM420ES (4634ms)\nHow large is it?\t?The world\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (?The world, is talking about, the size) -> ?The world (4714ms)\nHow large is it?\tYS\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (YS, talk about, the size) -> YS (4714ms)\nHow large is it?\tthe word\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the word, spreads about, my size) -> the word (4706ms)\nHow large is it?\tshoe pocket\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (shoe pocket, protects up to, size) -> shoe pocket (4714ms)\nHow large is it?\t3 feet\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (3 feet, can be shaped to, any size) -> 3 feet (4712ms)\nHow large is it?\tBlock\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Block, shape to, size) -> Block (4702ms)\nHow large is it?\tfeelings\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (feelings, protect its wearer from, harm.Approximate size) -> feelings (4686ms)\nHow large is it?\tThe LID system\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (The LID system, is experimentally studied using, different sizes) -> The LID system (4613ms)\nHow large is it?\tShapes\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Shapes, have the same shape in, different sizes) -> Shapes (4646ms)\nHow large is it?\ta knife\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a knife, spread, a good size knob) -> a knife (4660ms)\nHow large is it?\tflower\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (flower, shaped pieces of, different sizes) -> flower (4694ms)\nHow large is it?\tServices\t0.222222222221\tHow large is it? -> $x: ($x, provide, dc area) -> (Services, are provided to, the Washington D.C. metropolitan area) -> Services (4711ms)\nHow large is it?\tStar\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Star, shaped, smaller size bead cap) -> Star (4678ms)\nHow large is it?\tthe topper\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the topper, spread over, the full size bed) -> the topper (4708ms)\nHow large is it?\tDirections\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Directions, Spread, an hazelnut-sized amount) -> Directions (4613ms)\nHow large is it?\tthe scar\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the scar, spreads beyond, the size) -> the scar (4669ms)\nHow large is it?\tthe gold leaves\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the gold leaves, had spread out to, the size) -> the gold leaves (4712ms)\nHow large is it?\tDee\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Dee, can also provide information about, sizes) -> Dee (4699ms)\nHow large is it?\tlinks\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (links, shape, the size and scope) -> links (4583ms)\nHow large is it?\tWAN optimization\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (WAN optimization, can deliver value to, businesses of all sizes) -> WAN optimization (4567ms)\nHow large is it?\tThe icons\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (The icons, are provided in, sizes) -> The icons (4712ms)\nHow large is it?\tThe softball-sized unit\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (The softball-sized unit, protects, a patio-sized area) -> The softball-sized unit (4674ms)\nHow large is it?\tMF Global\t0.222222222221\tHow large is it? -> $x: ($x, start as, size) -> (MF Global, started as, a medium-sized derivatives broker) -> MF Global (4697ms)\nHow large is it?\tI?ll\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (I?ll, talk about, position sizing) -> I?ll (4575ms)\nHow large is it?\t?No one\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (?No one, is talking about reducing, the size) -> ?No one (4710ms)\nHow large is it?\ta more detailed look\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (a more detailed look, spread, sizes) -> a more detailed look (4542ms)\nHow large is it?\t5 sheet shredder\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (5 sheet shredder, provides the perfect blend of, size) -> 5 sheet shredder (4665ms)\nHow large is it?\tJanuary 2 , 2009\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (January 2 , 2009, spread, sizes) -> January 2 , 2009 (4686ms)\nHow large is it?\tproducts\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (products, provide a variety of, sizes) -> products (3555ms)\nHow large is it?\tEvolutionary Anthropology\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Evolutionary Anthropology, studied, the size) -> Evolutionary Anthropology (4694ms)\nHow large is it?\tthe RTY Workwear range\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (the RTY Workwear range, is the spread of, sizes) -> the RTY Workwear range (4674ms)\nHow large is it?\tChanel\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Chanel, has always provided customers with, sizes) -> Chanel (4627ms)\nHow large is it?\tCapsules Beta Glucan\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (Capsules Beta Glucan, Protect, the Immune System Serving Size) -> Capsules Beta Glucan (4704ms)\nHow large is it?\tprotection\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (protection, provides, sizes) -> protection (4686ms)\nHow large is it?\tCohen\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (Cohen, sees the value of, a nimble size) -> Cohen (4441ms)\nHow large is it?\tHouses\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Houses, provide, size) -> Houses (4712ms)\nHow large is it?\tBlue Key Champions help\t0.222222222221\tHow large is it? -> $x: ($x, spread, size) -> (Blue Key Champions help, spread, the word View Full Size) -> Blue Key Champions help (4641ms)\nHow large is it?\tunion concessions\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (union concessions, protect, class size) -> union concessions (4706ms)\nHow large is it?\tPublic Health\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Public Health, published a study about, the current sizes) -> Public Health (4682ms)\nHow large is it?\tThe FortiGate product line\t0.222222222221\tHow large is it? -> $x: ($x, protect, size) -> (The FortiGate product line, protects, any size network) -> The FortiGate product line (4678ms)\nHow large is it?\t250 ml Classic\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (250 ml Classic, shaped, medium size water bong) -> 250 ml Classic (4714ms)\nHow large is it?\tBy*\t0.222222222221\tHow large is it? -> $x: ($x, be population of, earth) -> (By*, is the entire population of, planet Earth) -> By* (4656ms)\nHow large is it?\tMelitta\t0.222222222221\tHow large is it? -> $x: ($x, provide, size) -> (Melitta, provide a whole series of, sizes) -> Melitta (4710ms)\nHow large is it?\tMartin\t0.222222222221\tHow large is it? -> $x: ($x, study, size) -> (Martin, studied, the size) -> Martin (4694ms)\nHow large is it?\tThe Site Supervisor\t0.222222222221\tHow large is it? -> $x: ($x, talk about, size) -> (The Site Supervisor, also talked about, the size) -> The Site Supervisor (4682ms)\nHow large is it?\ta separate filled circle\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (a separate filled circle, shape, the same size) -> a separate filled circle (4711ms)\nHow large is it?\tThe functions\t0.222222222221\tHow large is it? -> $x: ($x, value, size) -> (The functions, write values of, the appropriate // size) -> The functions (4613ms)\nHow large is it?\tKnead\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Knead, shape into, medium-sized balls) -> Knead (4634ms)\nHow large is it?\tShape\t0.222222222221\tHow large is it? -> $x: ($x, shape, size) -> (Shape, heart-shaped, Size) -> Shape (4605ms)\nWho is Aaron Copland?\t?Appalachian Spring\t0.22222222221799998\tWho is Aaron Copland? -> $x: (aaron copland, do, $x) -> (Aaron Copland?s music, does n?t sound like, ?Appalachian Spring) -> ?Appalachian Spring (789ms)\nWho is Aaron Copland?\tPopulist and Modernist\t0.22222222221799998\tWho is Aaron Copland? -> $x: (aaron copland, do, $x) -> (Aaron Copland, did between, Populist and Modernist) -> Populist and Modernist (789ms)\nWho is Aaron Copland?\tfilm\t0.22222222221799998\tWho is Aaron Copland? -> $x: (aaron copland, do, $x) -> (Aaron Copland, does n?t jibe well given the type of, film) -> film (789ms)\nWho is Aaron Copland?\tthe music\t-0.111111111112\tWho is Aaron Copland? -> $x: (aaron copland, be know for, $x) -> (Aaron Copland, is probably best known for, the music) -> the music (789ms)\nWho is Aaron Copland?\tthe winner\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (the winner, is a recipient of, the 2010 Aaron Copland Award) -> the winner (1161ms)\nWho is Aaron Copland?\tRead my previous Rick Perry\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, do, aaron copland) -> (Read my previous Rick Perry, does, Aaron Copland) -> Read my previous Rick Perry (821ms)\nWho is Aaron Copland?\tFromm\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (Fromm, was then free to seek advice of, Aaron Copland) -> Fromm (1161ms)\nWho is Aaron Copland?\tThe MCO\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, play, aaron copland) -> (The MCO, played, Aaron Copland?s Concerto) -> The MCO (789ms)\nWho is Aaron Copland?\tBrooklyn\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, here, aaron copland) -> (Brooklyn, People born here, Aaron Copland) -> Brooklyn (942ms)\nWho is Aaron Copland?\tthe Symphonic Band\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, play, aaron copland) -> (the Symphonic Band, will play, Aaron Copland) -> the Symphonic Band (789ms)\nWho is Aaron Copland?\tRoam Lisa Bielawa\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (Roam Lisa Bielawa, is recipient of, the Aaron Copland Award) -> Roam Lisa Bielawa (1161ms)\nWho is Aaron Copland?\tinfluences\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, do, aaron copland) -> (influences, does, Aaron Copland) -> influences (821ms)\nWho is Aaron Copland?\tLisa Bielawa\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (Lisa Bielawa, is a recent recipient of, the Aaron Copland Award) -> Lisa Bielawa (1161ms)\nWho is Aaron Copland?\tMIDI\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, here, aaron copland) -> (MIDI, here 's a theme from, Aaron Copland) -> MIDI (942ms)\nWho is Aaron Copland?\tGiya Kancheli\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, influence, aaron copland) -> (Giya Kancheli, Influenced By, Aaron Copland) -> Giya Kancheli (821ms)\nWho is Aaron Copland?\t2000\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (2000, is both the centennial of, Aaron Copland) -> 2000 (1161ms)\nWho is Aaron Copland?\tjazz piano\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (jazz piano, is a graduate of, the Aaron Copland School) -> jazz piano (1161ms)\nWho is Aaron Copland?\ta writing style\t-0.222222222222\tWho is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (a writing style, is a mix of, Aaron Copland) -> a writing style (1161ms)\nWho is Aaron Copland?\t1938.\t-0.33333333333299997\tWho is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland, was written in, 1938.) -> 1938. (1435ms)\nWho is Aaron Copland?\tsociety\t-0.33333333333299997\tWho is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland Solitude One, can be instructed in, society) -> society (1435ms)\nWho is Aaron Copland?\tprint\t-0.33333333333299997\tWho is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland, was described in, print) -> print (1435ms)\nWho is Aaron Copland?\tthe concert hall\t-0.33333333333299997\tWho is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (the composer Aaron Copland, is rarer in, the concert hall) -> the concert hall (1435ms)\nWho is Aaron Copland?\t20th century music\t-0.33333333333299997\tWho is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland, are both major figures in, 20th century music) -> 20th century music (1435ms)\nWho is Aaron Copland?\t1900\t-0.33333333333299997\tWho is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland, was born in, 1900) -> 1900 (1435ms)\nWho is Aaron Copland?\tthe park\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the park, is very, Aaron Copland-like) -> the park (1451ms)\nWho is Aaron Copland?\tthe only other American composer\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is, the only other American composer) -> the only other American composer (1450ms)\nWho is Aaron Copland?\tNovember 14\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (?Aaron Copland Aaron Copland, was born on, November 14) -> November 14 (1455ms)\nWho is Aaron Copland?\tCopland Wednesday\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Copland Wednesday, is, Aaron Copland Day) -> Copland Wednesday (1454ms)\nWho is Aaron Copland?\tthrilling\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> ('s Aaron Copland-influenced music, is little short of, thrilling) -> thrilling (1454ms)\nWho is Aaron Copland?\tNov 14 , 1900\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was born, Nov 14 , 1900) -> Nov 14 , 1900 (1446ms)\nWho is Aaron Copland?\tAdler\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Adler, was awarded, the Aaron Copland Award) -> Adler (1454ms)\nWho is Aaron Copland?\tThomas\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Thomas, was awarded a grant from, the Aaron Copland Fund) -> Thomas (1453ms)\nWho is Aaron Copland?\t2007\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (2007, was just awarded, a 2010-11 Aaron Copland Fund) -> 2007 (1450ms)\nWho is Aaron Copland?\tThe music\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The music, was written by, Aaron Copland) -> The music (1453ms)\nWho is Aaron Copland?\tAmerica?s best-beloved composer\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is probably, America?s best-beloved composer) -> America?s best-beloved composer (1450ms)\nWho is Aaron Copland?\tThe curtain raiser\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The curtain raiser, was, Aaron Copland) -> The curtain raiser (1446ms)\nWho is Aaron Copland?\tThe original score\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The original score, was by, Aaron Copland) -> The original score (1450ms)\nWho is Aaron Copland?\tSunny\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Sunny, was commissioned by, the Aaron Copland Fund) -> Sunny (1451ms)\nWho is Aaron Copland?\tRick Perry?s video\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Rick Perry?s video, was from, the gay composer Aaron Copland) -> Rick Perry?s video (1451ms)\nWho is Aaron Copland?\tany\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> ('s Aaron Copland opus, is larger than, any) -> any (1452ms)\nWho is Aaron Copland?\ta spirit\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (a spirit, has been compared to, Aaron Copland) -> a spirit (1451ms)\nWho is Aaron Copland?\tThe concerto\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The concerto, was authored by, Aaron Copland) -> The concerto (1450ms)\nWho is Aaron Copland?\tan Eisenhower inauguration event\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was pulled from, an Eisenhower inauguration event) -> an Eisenhower inauguration event (1450ms)\nWho is Aaron Copland?\tthe White Crane\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland Dan Vera, is, the White Crane) -> the White Crane (1450ms)\nWho is Aaron Copland?\tpublic Monday\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (public Monday, are, composer Aaron Copland) -> public Monday (1455ms)\nWho is Aaron Copland?\tthe role models\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the role models, have always been, musicians-Aaron Copland) -> the role models (1450ms)\nWho is Aaron Copland?\tthe best-loved American composers\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is one of, the best-loved American composers) -> the best-loved American composers (1454ms)\nWho is Aaron Copland?\tAdditional funds\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Additional funds, are provided by, the Aaron Copland Fund) -> Additional funds (1446ms)\nWho is Aaron Copland?\tsynonymous with American music\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland 's name, is, synonymous with American music) -> synonymous with American music (1452ms)\nWho is Aaron Copland?\tThe show music\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The show music, was by, Aaron Copland) -> The show music (1454ms)\nWho is Aaron Copland?\tSingPost\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (an Aaron Copland piano score, was dispatched via, SingPost) -> SingPost (1454ms)\nWho is Aaron Copland?\tthe dean\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is regarded as, the dean) -> the dean (1454ms)\nWho is Aaron Copland?\ta taut , precise performance\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was given, a taut , precise performance) -> a taut , precise performance (1451ms)\nWho is Aaron Copland?\tone of our most famous contemporary composers\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is, one of our most famous contemporary composers) -> one of our most famous contemporary composers (1435ms)\nWho is Aaron Copland?\tpiano\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is a musician who plays the, piano) -> piano (1454ms)\nWho is Aaron Copland?\tthe Eiffel Tower\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the Eiffel Tower, is, Aaron Copland) -> the Eiffel Tower (1446ms)\nWho is Aaron Copland?\tthe program\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the program, are, Aaron Copland?s ?Fanfare) -> the program (1454ms)\nWho is Aaron Copland?\tthe event\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, were interspersed throughout, the event) -> the event (1455ms)\nWho is Aaron Copland?\ta slew\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (a slew, was friendly with, Aaron Copland) -> a slew (1446ms)\nWho is Aaron Copland?\tmusician\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Leonard Bernstein and Aaron Copland, is a, musician) -> musician (1454ms)\nWho is Aaron Copland?\tMay 2003\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (May 2003, was awarded, the Aaron Copland Prize) -> May 2003 (1446ms)\nWho is Aaron Copland?\tAmerica\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (September 18 , 2010 Aaron Copland, is one of, America) -> America (1453ms)\nWho is Aaron Copland?\tthe simplicity\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (American musician Aaron Copland, was inspired by, the simplicity) -> the simplicity (1453ms)\nWho is Aaron Copland?\tRick Perry?s new anti-gay ad\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Rick Perry?s new anti-gay ad, is by, Aaron Copland) -> Rick Perry?s new anti-gay ad (1453ms)\nWho is Aaron Copland?\tBoulanger?s other students\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Boulanger?s other students, were, Aaron Copland) -> Boulanger?s other students (1452ms)\nWho is Aaron Copland?\tartistic quality\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (The Aaron Copland Awards, is, artistic quality) -> artistic quality (1451ms)\nWho is Aaron Copland?\tcomposer\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was to be, composer) -> composer (1448ms)\nWho is Aaron Copland?\tNovember 14 , 1900\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was born on, November 14 , 1900) -> November 14 , 1900 (1453ms)\nWho is Aaron Copland?\ta city slicker\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Composer Aaron Copland, was, a city slicker) -> a city slicker (1451ms)\nWho is Aaron Copland?\tteo new CDs\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (the 1996-7 Aaron Copland Award, is featured on, teo new CDs) -> teo new CDs (1451ms)\nWho is Aaron Copland?\tthe rediscovery\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, were inspired by, the rediscovery) -> the rediscovery (1448ms)\nWho is Aaron Copland?\tthe concert\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the concert, was, Aaron Copland) -> the concert (1451ms)\nWho is Aaron Copland?\tWorld War II\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland?s Sonata, was written during, World War II) -> World War II (1451ms)\nWho is Aaron Copland?\tthe American standard\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is, the American standard) -> the American standard (1452ms)\nWho is Aaron Copland?\tBernstein\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Bernstein, was, Aaron Copland) -> Bernstein (1452ms)\nWho is Aaron Copland?\tLanners\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Lanners, was granted major funding from, the Aaron Copland Fund) -> Lanners (1446ms)\nWho is Aaron Copland?\ta rotating jury process\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (The Aaron Copland Awards, are based on, a rotating jury process) -> a rotating jury process (1454ms)\nWho is Aaron Copland?\tBest Score\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was nominated for, Best Score) -> Best Score (1448ms)\nWho is Aaron Copland?\tFontainebleu\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Fontainebleu, was, Aaron Copland) -> Fontainebleu (1450ms)\nWho is Aaron Copland?\tKapland\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was changed from, Kapland) -> Kapland (1448ms)\nWho is Aaron Copland?\ta lifetime\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (~Aaron Copland ? Music, is enough for, a lifetime) -> a lifetime (1454ms)\nWho is Aaron Copland?\tthe other hand\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the other hand, has been characterized by, Aaron Copland) -> the other hand (1453ms)\nWho is Aaron Copland?\tthe few whose pianism\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, were among, the few whose pianism) -> the few whose pianism (1448ms)\nWho is Aaron Copland?\ta neglected masterpiece\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was revealed as, a neglected masterpiece) -> a neglected masterpiece (1451ms)\nWho is Aaron Copland?\tcent inspiration\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland Comer Cotrell Genius, is one per, cent inspiration) -> cent inspiration (1454ms)\nWho is Aaron Copland?\tthe footage\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (The Aaron Copland music, is set perfectly with, the footage) -> the footage (1455ms)\nWho is Aaron Copland?\tthe ad\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the ad, was lifted from, gay composer Aaron Copland) -> the ad (1454ms)\nWho is Aaron Copland?\tHarold Shapero\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Harold Shapero, was singled out by, Aaron Copland) -> Harold Shapero (1451ms)\nWho is Aaron Copland?\tlifelong friend\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (lifelong friend, was, the American composer Aaron Copland) -> lifelong friend (1454ms)\nWho is Aaron Copland?\tCopland\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is better than, Copland) -> Copland (1446ms)\nWho is Aaron Copland?\ta world-renowned composer\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was, a world-renowned composer) -> a world-renowned composer (1453ms)\nWho is Aaron Copland?\ta humorous piece\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was, a humorous piece) -> a humorous piece (1448ms)\nWho is Aaron Copland?\tthe most honored cultural figures\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was one of, the most honored cultural figures) -> the most honored cultural figures (1451ms)\nWho is Aaron Copland?\tthe original founder and first President\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was, the original founder and first President) -> the original founder and first President (1450ms)\nWho is Aaron Copland?\tthe American Music Center\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (\" Aaron Copland, was among, the American Music Center) -> the American Music Center (1450ms)\nWho is Aaron Copland?\ta composer\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, has there been, a composer) -> a composer (1448ms)\nWho is Aaron Copland?\tIgor Stravinsky\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Igor Stravinsky, was, Aaron Copland) -> Igor Stravinsky (1446ms)\nWho is Aaron Copland?\tAdditional support\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Additional support, was provided by, The Aaron Copland Fund) -> Additional support (1448ms)\nWho is Aaron Copland?\tcomposers\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is the most American of, composers) -> composers (1448ms)\nWho is Aaron Copland?\tAdditional funding\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Additional funding, was provided by, The Aaron Copland Fund) -> Additional funding (1454ms)\nWho is Aaron Copland?\tGeorge Benson\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (- Aaron Copland JakeJew, think is, George Benson) -> George Benson (1450ms)\nWho is Aaron Copland?\tthe Music\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the Music, was honored with, the ASCAP Aaron Copland Award) -> the Music (1454ms)\nWho is Aaron Copland?\tAmerican folk songs\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, have been without, American folk songs) -> American folk songs (1454ms)\nWho is Aaron Copland?\twords\t-0.444444444444\tWho is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (~ Aaron Copland ?Music expresses, cannot be put into, words) -> words (1454ms)\nWho is Aaron Copland?\tEdward R. Murrow\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Edward R. Murrow, was, Aaron Copland) -> Edward R. Murrow (1454ms)\nWho is Aaron Copland?\tRoach\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Roach, is, the Aaron Copland) -> Roach (1446ms)\nWho is Aaron Copland?\ttrack\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (track, was, Aaron Copland) -> track (1454ms)\nWho is Aaron Copland?\tThe film\t-0.444444444444\tWho is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The film, was scored by, Aaron Copland) -> The film (1453ms)\nWhen was Microsoft established?\tIreland\t1.111111111106\tWhen was Microsoft established? -> $x: (microsoft, be first establish in, $x) -> (Microsoft Ireland Microsoft, was first established in, Ireland) -> Ireland (796ms)\nWhen was Microsoft established?\t1999\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft Latvia, was established in, 1999) -> 1999 (795ms)\nWhen was Microsoft established?\t1992\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (MicrosoftOfficeWebServer, was established in, 1992) -> 1992 (874ms)\nWhen was Microsoft established?\t1975\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft, was established in, 1975) -> 1975 (874ms)\nWhen was Microsoft established?\t1981\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (MicrosoftOfficeWebServer, was established in, 1981) -> 1981 (795ms)\nWhen was Microsoft established?\tChina\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft, is establishing a center in, China) -> China (874ms)\nWhen was Microsoft established?\tBeijing\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft Asian research institute, was established in, Beijing) -> Beijing (795ms)\nWhen was Microsoft established?\t1980\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft, was established in, 1980) -> 1980 (795ms)\nWhen was Microsoft established?\t1979\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (MicrosoftOfficeWebServer, was established in, 1979) -> 1979 (795ms)\nWhen was Microsoft established?\t1986\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (MicrosoftOfficeWebServer, was established in, 1986) -> 1986 (795ms)\nWhen was Microsoft established?\tJapan\t0.9999999999989999\tWhen was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (ASCII Microsoft company, is formally established in, Japan) -> Japan (874ms)\nWhen was Microsoft established?\tthe download\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Word OpenOffice, can be found in, the download) -> the download (963ms)\nWhen was Microsoft established?\ta whole bunch\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Ex-Microsoft Employee, was found in, a whole bunch) -> a whole bunch (874ms)\nWhen was Microsoft established?\tolder training\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Visual C++, are found packaged in, older training) -> older training (1326ms)\nWhen was Microsoft established?\tWindows\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Other important Microsoft files, can be found in, Windows) -> Windows (963ms)\nWhen was Microsoft established?\tthe Film menu\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Word, is found in, the Film menu) -> the Film menu (963ms)\nWhen was Microsoft established?\tthe city\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, can be found in, the city) -> the city (994ms)\nWhen was Microsoft established?\tWord\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (The Microsoft Office Button, is found in, Word) -> Word (994ms)\nWhen was Microsoft established?\tMS Office\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft applications, could be found in, MS Office) -> MS Office (994ms)\nWhen was Microsoft established?\tviolation\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (1999 Microsoft, was found in, violation) -> violation (963ms)\nWhen was Microsoft established?\tthe U. S.\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Office Accounting 2007, can be found in, the U. S.) -> the U. S. (1179ms)\nWhen was Microsoft established?\ta lot\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft and Adobe computer software, are found in, a lot) -> a lot (963ms)\nWhen was Microsoft established?\tthe edit menu\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Explorer, can be found in, the edit menu) -> the edit menu (874ms)\nWhen was Microsoft established?\tnew ways\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Problem Microsoft, was interested in finding, new ways) -> new ways (1326ms)\nWhen was Microsoft established?\t75 %\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, is found in, 75 %) -> 75 % (994ms)\nWhen was Microsoft established?\tthe Online Books\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft SQL Server, can be found in, the Online Books) -> the Online Books (874ms)\nWhen was Microsoft established?\tthe Common Files\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, can be found in, the Common Files) -> the Common Files (963ms)\nWhen was Microsoft established?\tdozens\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft?s music player, is found in, dozens) -> dozens (1179ms)\nWhen was Microsoft established?\tcontempt\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, is found in, contempt) -> contempt (1179ms)\nWhen was Microsoft established?\tthe caves\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft FS, has been found in, the caves) -> the caves (994ms)\nWhen was Microsoft established?\tthe right approach\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, are taking a lead in finding, the right approach) -> the right approach (1179ms)\nWhen was Microsoft established?\tthe upper left corner\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (The Microsoft Office Button, is found in, the upper left corner) -> the upper left corner (1325ms)\nWhen was Microsoft established?\tseveral cases\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, has been found guilty recently in, several cases) -> several cases (1326ms)\nWhen was Microsoft established?\tthe Start Menu\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Sound Recorder, can be found in, the Start Menu) -> the Start Menu (1179ms)\nWhen was Microsoft established?\tMSKB 246817\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, can be found in, MSKB 246817) -> MSKB 246817 (963ms)\nWhen was Microsoft established?\tcorporations\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, is typically found in, corporations) -> corporations (1325ms)\nWhen was Microsoft established?\tthe File menu\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Word, is found in, the File menu) -> the File menu (874ms)\nWhen was Microsoft established?\tApril 2000\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, was found guilty in, April 2000) -> April 2000 (994ms)\nWhen was Microsoft established?\tInsert option\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Word, is found in, Insert option) -> Insert option (994ms)\nWhen was Microsoft established?\ta position\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, is finding itself in, a position) -> a position (963ms)\nWhen was Microsoft established?\tthe possession\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft software, were found in, the possession) -> the possession (1325ms)\nWhen was Microsoft established?\tMetro\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft?s Ribbon, can be found nowhere in, Metro) -> Metro (994ms)\nWhen was Microsoft established?\tSystem Tools\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (The Microsoft Backup utility, can be found in, System Tools) -> System Tools (1179ms)\nWhen was Microsoft established?\ta few chapels\t0.999999999998\tWhen was Microsoft established? -> $x: (microsoft, be find in, $x) -> (microsoft windows, are still found in quite, a few chapels) -> a few chapels (1179ms)\nWhen was Microsoft established?\tSrinagar and Muzaffarabad\t0.777777777777\tWhen was Microsoft established? -> $x: (windows, be establish in, $x) -> (Visa windows, can be established in, Srinagar and Muzaffarabad) -> Srinagar and Muzaffarabad (1660ms)\nWhen was Microsoft established?\tthe PC community\t0.777777777777\tWhen was Microsoft established? -> $x: (windows, be establish in, $x) -> (the Windows name, is established in, the PC community) -> the PC community (1659ms)\nWhen was Microsoft established?\t1998\t0.777777777777\tWhen was Microsoft established? -> $x: (operate system, be establish in, $x) -> (the operating system software, was established in, 1998) -> 1998 (1727ms)\nWhen was Microsoft established?\t1960\t0.777777777777\tWhen was Microsoft established? -> $x: (windows, be establish in, $x) -> (?Soft Loan Window ?, was established in, 1960) -> 1960 (1659ms)\nWhen was Microsoft established?\t2001\t0.777777777777\tWhen was Microsoft established? -> $x: (windows, be establish in, $x) -> (Tallaght TSL Windows, was established in, 2001) -> 2001 (1659ms)\nWhen was Microsoft established?\tpre-historic times\t0.777777777777\tWhen was Microsoft established? -> $x: (windows, be establish in, $x) -> (Windows API, was established in, pre-historic times) -> pre-historic times (1660ms)\nWhen was Microsoft established?\t2003\t0.777777777777\tWhen was Microsoft established? -> $x: (windows, be establish in, $x) -> (Windows Ciansoft, was established in, 2003) -> 2003 (1659ms)\nWhen was Microsoft established?\tJanuary\t0.777777777777\tWhen was Microsoft established? -> $x: (windows, be establish in, $x) -> (A transfer window, is established in, January) -> January (1659ms)\nWhen was Microsoft established?\tthe beginning\t0.777777777777\tWhen was Microsoft established? -> $x: (windows, be establish in, $x) -> (the Windows clipboard, was established in, the beginning) -> the beginning (1727ms)\nWhen was Microsoft established?\tRiva FLV encoder\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, can be found in, Riva FLV encoder) -> Riva FLV encoder (3079ms)\nWhen was Microsoft established?\tJDeveloper\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (a window, can be found in, JDeveloper) -> JDeveloper (3103ms)\nWhen was Microsoft established?\tlaptops\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (Linux operating systems, can be found in, laptops) -> laptops (3070ms)\nWhen was Microsoft established?\tthe System Preferences\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (your Windows, is found in, the System Preferences) -> the System Preferences (3070ms)\nWhen was Microsoft established?\tthe README file\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (various operating systems, can be found in, the README file) -> the README file (3087ms)\nWhen was Microsoft established?\tthe rootdsks/color.gz\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (the minimum operating system, is found in, the rootdsks/color.gz) -> the rootdsks/color.gz (3111ms)\nWhen was Microsoft established?\tgg_arguments-->0\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, can be found in, gg_arguments-->0) -> gg_arguments-->0 (1727ms)\nWhen was Microsoft established?\tthe Downloads section\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the Downloads section) -> the Downloads section (3111ms)\nWhen was Microsoft established?\tSection 3.5\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (window functions, can be found in, Section 3.5) -> Section 3.5 (3070ms)\nWhen was Microsoft established?\tthe MPS Software\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (its specific operating system, can be found in, the MPS Software) -> the MPS Software (3095ms)\nWhen was Microsoft established?\ttext\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, is found in, text) -> text (2967ms)\nWhen was Microsoft established?\tthe entrance areas\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, are predominately found in, the entrance areas) -> the entrance areas (2967ms)\nWhen was Microsoft established?\tdamp basements\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (window wells, are found in, damp basements) -> damp basements (3111ms)\nWhen was Microsoft established?\tthe System Documentation\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the System Documentation) -> the System Documentation (3111ms)\nWhen was Microsoft established?\thomes\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Picture windows, are often found in, homes) -> homes (3111ms)\nWhen was Microsoft established?\tJones\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (large windows, are found in, Jones) -> Jones (3087ms)\nWhen was Microsoft established?\tMac OS X\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (the same Darwin operating system core, is found in, Mac OS X) -> Mac OS X (2967ms)\nWhen was Microsoft established?\tan array\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Replacement windows, can be found in, an array) -> an array (3087ms)\nWhen was Microsoft established?\tsuch notable American edifices\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Zettler windows, can be found in, such notable American edifices) -> such notable American edifices (3087ms)\nWhen was Microsoft established?\tmore upscale neighborhoods\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (wood windows, is generally found in, more upscale neighborhoods) -> more upscale neighborhoods (3079ms)\nWhen was Microsoft established?\ta folder\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (the Windows operating system, might be found in, a folder) -> a folder (2967ms)\nWhen was Microsoft established?\tAppendix H\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (an operating system basis, can be found in, Appendix H) -> Appendix H (3087ms)\nWhen was Microsoft established?\tthe following sites\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 7, can be found in, the following sites) -> the following sites (3079ms)\nWhen was Microsoft established?\ta book\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, can be found in, a book) -> a book (3078ms)\nWhen was Microsoft established?\tthe ambulatory\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (this window, is found in, the ambulatory) -> the ambulatory (3103ms)\nWhen was Microsoft established?\tpartners\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (Google?s operating systems, can be found in, partners) -> partners (3103ms)\nWhen was Microsoft established?\tcli folder\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows CLI, can be found in, cli folder) -> cli folder (3111ms)\nWhen was Microsoft established?\told houses\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, are usually found in, old houses) -> old houses (1727ms)\nWhen was Microsoft established?\tdifferent panel sizes\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Window shades, can be found in, different panel sizes) -> different panel sizes (3087ms)\nWhen was Microsoft established?\tthe heart\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, can be found in, the heart) -> the heart (3070ms)\nWhen was Microsoft established?\tWindows Server 2008\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Vista, are usually found in, Windows Server 2008) -> Windows Server 2008 (3079ms)\nWhen was Microsoft established?\tGoetia\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, can be found in, Goetia) -> Goetia (3095ms)\nWhen was Microsoft established?\tthe file\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (this window, can be found in, the file) -> the file (3070ms)\nWhen was Microsoft established?\tthe following link\t0.777777777776\tWhen was Microsoft established? -> $x: (ms word, be find in, $x) -> (MS-Word users, can be found in, the following link) -> the following link (3070ms)\nWhen was Microsoft established?\tthe Microsoft Windows Help file\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the Microsoft Windows Help file) -> the Microsoft Windows Help file (3103ms)\nWhen was Microsoft established?\tfront\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (several windows, can be found in, front) -> front (3103ms)\nWhen was Microsoft established?\ta dictionary\t0.777777777776\tWhen was Microsoft established? -> $x: (ms word, be find in, $x) -> (M words, would probably be found in, a dictionary) -> a dictionary (3095ms)\nWhen was Microsoft established?\tthe street\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, were found in, the street) -> the street (3095ms)\nWhen was Microsoft established?\tExpression Blend\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 8, can be found in, Expression Blend) -> Expression Blend (3070ms)\nWhen was Microsoft established?\torinoco-fwutils\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows drivers, can be found in, orinoco-fwutils) -> orinoco-fwutils (3087ms)\nWhen was Microsoft established?\ta vast number\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Tinted windows, can be found in, a vast number) -> a vast number (1727ms)\nWhen was Microsoft established?\tthe abstraction\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (an operating system, is to be found in, the abstraction) -> the abstraction (3087ms)\nWhen was Microsoft established?\ta haystack\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be like finding a needle in, a haystack) -> a haystack (2967ms)\nWhen was Microsoft established?\tthe Content Catalog\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Phone, can be found in, the Content Catalog) -> the Content Catalog (3070ms)\nWhen was Microsoft established?\tthe widely known project\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can also be found in, the widely known project) -> the widely known project (3079ms)\nWhen was Microsoft established?\tthe v6 Forum\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (different operating systems, can be found here in, the v6 Forum) -> the v6 Forum (3079ms)\nWhen was Microsoft established?\tthe NetCOBOL Installation Guide\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows ?, can be found in, the NetCOBOL Installation Guide) -> the NetCOBOL Installation Guide (3087ms)\nWhen was Microsoft established?\tthe Windows directory\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 95, is usually found in, the Windows directory) -> the Windows directory (3095ms)\nWhen was Microsoft established?\ta variety\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (Linux operating systems, can be found in, a variety) -> a variety (3070ms)\nWhen was Microsoft established?\ta small lobby\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, can be found in, a small lobby) -> a small lobby (3111ms)\nWhen was Microsoft established?\tdifferent parts\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (window glass, has been found in, different parts) -> different parts (3079ms)\nWhen was Microsoft established?\tchurches\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Rose windows, can be found in, churches) -> churches (2159ms)\nWhen was Microsoft established?\tMicrosoft knowledgebase article 967715\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, Microsoft knowledgebase article 967715) -> Microsoft knowledgebase article 967715 (3087ms)\nWhen was Microsoft established?\tthe Personalization menu\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 7, can be found in, the Personalization menu) -> the Personalization menu (3079ms)\nWhen was Microsoft established?\tQ22\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (supported operating systems, can be found in, Q22) -> Q22 (3095ms)\nWhen was Microsoft established?\tvarious sizes\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Window coverings, can be found in, various sizes) -> various sizes (3095ms)\nWhen was Microsoft established?\tdifferent panel measurements\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Window shades, can be found in, different panel measurements) -> different panel measurements (3111ms)\nWhen was Microsoft established?\tMenegroth\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (this window, was to be found in, Menegroth) -> Menegroth (3111ms)\nWhen was Microsoft established?\tthe program\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (X operating system, can be found in, the program) -> the program (1727ms)\nWhen was Microsoft established?\tbasements\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Hopper windows, are typically found in, basements) -> basements (3111ms)\nWhen was Microsoft established?\tolder homes\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (window, is often found in, older homes) -> older homes (3087ms)\nWhen was Microsoft established?\tYoung 2001 , p\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (a Window ?, can be found in, Young 2001 , p) -> Young 2001 , p (3111ms)\nWhen was Microsoft established?\tArticle 19\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (other operating systems, are found in, Article 19) -> Article 19 (3103ms)\nWhen was Microsoft established?\tdisk drives\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (other operating systems, are found in, disk drives) -> disk drives (3103ms)\nWhen was Microsoft established?\tthe $ 300 range\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (up-to-date operating systems, can be found in, the $ 300 range) -> the $ 300 range (3095ms)\nWhen was Microsoft established?\tthe licensing aspects\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Window 8, might be found in, the licensing aspects) -> the licensing aspects (3070ms)\nWhen was Microsoft established?\tusers\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (Unix-like operating systems, are most commonly found in, users) -> users (2967ms)\nWhen was Microsoft established?\tVictorian homes\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (These windows, are often found in, Victorian homes) -> Victorian homes (3070ms)\nWhen was Microsoft established?\tthe simplicity\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Server, can be found in, the simplicity) -> the simplicity (3095ms)\nWhen was Microsoft established?\tpossession\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, was found to be in, possession) -> possession (2159ms)\nWhen was Microsoft established?\tabandoned churches and schools\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (glass windows, can be found in, abandoned churches and schools) -> abandoned churches and schools (3103ms)\nWhen was Microsoft established?\tMaya architecture\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (True windows, are rarely found in, Maya architecture) -> Maya architecture (3103ms)\nWhen was Microsoft established?\tthe FSF\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (fully free operating systems, can be found in, the FSF) -> the FSF (3087ms)\nWhen was Microsoft established?\tan entire apartment\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (one window, was found in, an entire apartment) -> an entire apartment (2159ms)\nWhen was Microsoft established?\tthe north choir clearstorey\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (such windows, are to be found in, the north choir clearstorey) -> the north choir clearstorey (3070ms)\nWhen was Microsoft established?\tthe installation guide\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the installation guide) -> the installation guide (3111ms)\nWhen was Microsoft established?\tthe /nt directory\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows NT, can be found in, the /nt directory) -> the /nt directory (3103ms)\nWhen was Microsoft established?\tJapanese addresses\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, so is often found in, Japanese addresses) -> Japanese addresses (3103ms)\nWhen was Microsoft established?\tSection 4.2.8\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (window functions, can be found in, Section 4.2.8) -> Section 4.2.8 (3111ms)\nWhen was Microsoft established?\tthe links\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (your operating system, can be found in, the links) -> the links (3103ms)\nWhen was Microsoft established?\t90 percent\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, is found in about, 90 percent) -> 90 percent (2967ms)\nWhen was Microsoft established?\tGeorgian and Victorian homes\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (window design, is often found in, Georgian and Victorian homes) -> Georgian and Victorian homes (3103ms)\nWhen was Microsoft established?\tSaint Mary\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (The windows, are found in, Saint Mary) -> Saint Mary (3111ms)\nWhen was Microsoft established?\tSAM Broadcaster\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (This window, is found in, SAM Broadcaster) -> SAM Broadcaster (2159ms)\nWhen was Microsoft established?\tthe living room area\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (A window, was found damaged in, the living room area) -> the living room area (3095ms)\nWhen was Microsoft established?\tabout 90 percent of all computer desktops\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, is found in, about 90 percent of all computer desktops) -> about 90 percent of all computer desktops (3079ms)\nWhen was Microsoft established?\tthe registry\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 8, can be found in, the registry) -> the registry (3103ms)\nWhen was Microsoft established?\tLogicIrpDispatcher\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, LogicIrpDispatcher) -> LogicIrpDispatcher (2967ms)\nWhen was Microsoft established?\tthe Ile de France\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (rose windows, are to be found in, the Ile de France) -> the Ile de France (3079ms)\nWhen was Microsoft established?\tthe libero extension\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (this window, can be found in, the libero extension) -> the libero extension (3079ms)\nWhen was Microsoft established?\tEnglish pubs\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, can still sometimes be found in, English pubs) -> English pubs (2159ms)\nWhen was Microsoft established?\tInsteantGet\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (windows explorer, could be found in, InsteantGet) -> InsteantGet (3079ms)\nWhen was Microsoft established?\ta redesigned user interface\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 7, can be found in, a redesigned user interface) -> a redesigned user interface (3103ms)\nWhen was Microsoft established?\tthe vast majority\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Server, are found in, the vast majority) -> the vast majority (3095ms)\nWhen was Microsoft established?\tthe Windows root directory\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, will be found in, the Windows root directory) -> the Windows root directory (3111ms)\nWhen was Microsoft established?\tthe WinSxS folder ?\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (the operating system, are found in, the WinSxS folder ?) -> the WinSxS folder ? (3078ms)\nWhen was Microsoft established?\tthe document\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (maintenance windows, can be found in, the document) -> the document (3070ms)\nWhen was Microsoft established?\tseveral designs\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Window shades, can be found in, several designs) -> several designs (3095ms)\nWhen was Microsoft established?\tbathroom\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (WINDOW, is often found in, bathroom) -> bathroom (3103ms)\nWhen was Microsoft established?\tMarketplace\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Phone, can be found in, Marketplace) -> Marketplace (3070ms)\nWhen was Microsoft established?\ta number\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (window blinds, are found in, a number) -> a number (3095ms)\nWhen was Microsoft established?\tcold climates\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (storm windows, are often found in, cold climates) -> cold climates (3095ms)\nWhen was Microsoft established?\tmore than 200 countries\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Mobile, can be found in, more than 200 countries) -> more than 200 countries (3087ms)\nWhen was Microsoft established?\tthe Program Files directory\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, is typically found in, the Program Files directory) -> the Program Files directory (2967ms)\nWhen was Microsoft established?\tthe basement\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, is found in, the basement) -> the basement (3087ms)\nWhen was Microsoft established?\tthe latest\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 8, will be found in, the latest) -> the latest (2967ms)\nWhen was Microsoft established?\tControl Panel\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Update, can be found in, Control Panel) -> Control Panel (3070ms)\nWhen was Microsoft established?\tthe WinSxS folder\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (the operating system, are found in, the WinSxS folder) -> the WinSxS folder (3087ms)\nWhen was Microsoft established?\tthe PUB group\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (the MPE operating system, can be found in, the PUB group) -> the PUB group (1727ms)\nWhen was Microsoft established?\ta multitude\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (glass windows, are still found in, a multitude) -> a multitude (3095ms)\nWhen was Microsoft established?\tflagstone buildings\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, are often found in, flagstone buildings) -> flagstone buildings (2967ms)\nWhen was Microsoft established?\tthe file docs\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the file docs) -> the file docs (3079ms)\nWhen was Microsoft established?\t95 %\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (Windows operating system, could be found in, 95 %) -> 95 % (2967ms)\nWhen was Microsoft established?\ta form\t0.777777777776\tWhen was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Commander, can be found in, a form) -> a form (2159ms)\nWhen was Microsoft established?\tthe stand slice\t0.777777777776\tWhen was Microsoft established? -> $x: (operate system, be find in, $x) -> (The bootable operating system unix, is found in, the stand slice) -> the stand slice (3079ms)\nWhen was Microsoft established?\ta vulnerability\t0.6666666666650001\tWhen was Microsoft established? -> $x: ($x, find, microsoft excel) -> (a vulnerability, found in, Excel of Microsoft Office) -> a vulnerability (3119ms)\nWhen was Microsoft established?\tCannot\t0.6666666666650001\tWhen was Microsoft established? -> $x: ($x, find, microsoft excel) -> (Cannot, find, Microsoft Excel) -> Cannot (3119ms)\nWhen was Microsoft established?\tthe IPS tab\t0.6666666666650001\tWhen was Microsoft established? -> $x: ($x, find, microsoft excel) -> (the IPS tab, find, the Microsoft Office Excel SELECTION Record) -> the IPS tab (3119ms)\nWhen was Microsoft established?\tthe deep functionality\t0.6666666666650001\tWhen was Microsoft established? -> $x: ($x, find, microsoft excel) -> (the deep functionality, found in, Microsoft ? Excel?) -> the deep functionality (3119ms)\nWhen was Microsoft established?\tunequal variances\t0.6666666666650001\tWhen was Microsoft established? -> $x: ($x, find, microsoft excel) -> (unequal variances, found in, Microsoft Excel) -> unequal variances (3111ms)\nWhen was Microsoft established?\ta flaw\t0.6666666666650001\tWhen was Microsoft established? -> $x: ($x, find, microsoft excel) -> (a flaw, has been found in, Microsoft Office Excel) -> a flaw (3119ms)\nWhen was Microsoft established?\tthe Springer site\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Word etc, can be found on, the Springer site) -> the Springer site (3127ms)\nWhen was Microsoft established?\tthe Web.\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft, can probably still be found somewhere on, the Web.) -> the Web. (3134ms)\nWhen was Microsoft established?\ta few more lovers\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft, is counting on finding, a few more lovers) -> a few more lovers (3134ms)\nWhen was Microsoft established?\tSourceForge\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (The Microsoft effort, can be found on, SourceForge) -> SourceForge (3134ms)\nWhen was Microsoft established?\tthe Microsoft website\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (the Microsoft Surface, can be found on, the Microsoft website) -> the Microsoft website (3134ms)\nWhen was Microsoft established?\ta hacking website\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft software, has been found on, a hacking website) -> a hacking website (3127ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Pinball Arcade, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade) -> http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade (3127ms)\nWhen was Microsoft established?\t15 percent\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft, can already be found on, 15 percent) -> 15 percent (3127ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20XNA\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (microsoft xna, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20XNA) -> http://en.wikipedia.org/wiki/Microsoft%20XNA (3127ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Flight\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Flight, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Flight) -> http://en.wikipedia.org/wiki/Microsoft%20Flight (3119ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Narrator\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Narrator, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Narrator) -> http://en.wikipedia.org/wiki/Microsoft%20Narrator (3119ms)\nWhen was Microsoft established?\tVersusSport.com\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Tag, can also be found on, VersusSport.com) -> VersusSport.com (3120ms)\nWhen was Microsoft established?\trelease standards\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (The Microsoft reader, is found on, release standards) -> release standards (3127ms)\nWhen was Microsoft established?\twww .sugarexchange\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Outlook, can be found on, www .sugarexchange) -> www .sugarexchange (3119ms)\nWhen was Microsoft established?\tEvolving Solutions\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft?s Toby Velte, may be found on, Evolving Solutions) -> Evolving Solutions (3127ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Baseball%202001\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Baseball 2001, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001) -> http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001 (3127ms)\nWhen was Microsoft established?\tJune 25 , 2003\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Media Player 9 Series, was found on, June 25 , 2003) -> June 25 , 2003 (3134ms)\nWhen was Microsoft established?\tthe web server Microsoft\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft products, can be found on, the web server Microsoft) -> the web server Microsoft (3119ms)\nWhen was Microsoft established?\tmore than 160 mobile phones\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft software, can be found on, more than 160 mobile phones) -> more than 160 mobile phones (3119ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Binary%20Format\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Binary Format, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format) -> http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format (3127ms)\nWhen was Microsoft established?\tthe same site\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Windows, can also be found on, the same site) -> the same site (3127ms)\nWhen was Microsoft established?\tthe MVP website\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (a Microsoft MVP, can be found on, the MVP website) -> the MVP website (3134ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Press\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Press, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Press) -> http://en.wikipedia.org/wiki/Microsoft%20Press (3119ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Tinker\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Tinker, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Tinker) -> http://en.wikipedia.org/wiki/Microsoft%20Tinker (3127ms)\nWhen was Microsoft established?\ttwo handsets\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (The Microsoft Windows Phone OS, was only found on, two handsets) -> two handsets (3134ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Space Simulator, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator) -> http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator (3119ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Bing%20Maps%20Platform\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (microsoft virtual earth, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bing%20Maps%20Platform) -> http://en.wikipedia.org/wiki/Bing%20Maps%20Platform (3119ms)\nWhen was Microsoft established?\tJiew?s laptop\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft?s Outlook application, was found on, Jiew?s laptop) -> Jiew?s laptop (3134ms)\nWhen was Microsoft established?\tMicrosoft\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Visio 2003, can be found on, Microsoft) -> Microsoft (3127ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Research%20Maps\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft TerraServer, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps) -> http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps (3127ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Entertainment Pack, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack) -> http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack (3127ms)\nWhen was Microsoft established?\tthe Microsoft Web site\t0.555555555556\tWhen was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Press, can be found on, the Microsoft Web site) -> the Microsoft Web site (3134ms)\nWhen was Microsoft established?\tthe jury\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the jury, found, Microsoft) -> the jury (3149ms)\nWhen was Microsoft established?\tthe extra signing key\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the extra signing key, found in, Microsoft) -> the extra signing key (3149ms)\nWhen was Microsoft established?\tSecurity New security holes\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Security New security holes, are being found in, Microsoft) -> Security New security holes (3156ms)\nWhen was Microsoft established?\tBill Gates\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Bill Gates, found, Microsoft) -> Bill Gates (3134ms)\nWhen was Microsoft established?\tparticipating retailers\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (participating retailers, found through, Microsoft) -> participating retailers (3169ms)\nWhen was Microsoft established?\tIE7\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (IE7, can be found on, Microsoft) -> IE7 (3156ms)\nWhen was Microsoft established?\tthe full versions\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the full versions, found in, Microsoft) -> the full versions (3142ms)\nWhen was Microsoft established?\tBASIC\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (BASIC, found, Microsoft) -> BASIC (3163ms)\nWhen was Microsoft established?\tFollow descriptions\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Follow descriptions, found at, Microsoft) -> Follow descriptions (3163ms)\nWhen was Microsoft established?\tan early highly-sought programmer\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (an early highly-sought programmer, found, Microsoft) -> an early highly-sought programmer (3163ms)\nWhen was Microsoft established?\tUsers\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Users, find, Microsoft) -> Users (3156ms)\nWhen was Microsoft established?\tThe court\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (The court, also found, Microsoft) -> The court (3169ms)\nWhen was Microsoft established?\tSQLXML works\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (SQLXML works, can be found in, Microsoft) -> SQLXML works (3149ms)\nWhen was Microsoft established?\ttool\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (tool, is increasingly finding, Microsoft) -> tool (3149ms)\nWhen was Microsoft established?\tthe square graphical design\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the square graphical design, found on, Microsoft) -> the square graphical design (3163ms)\nWhen was Microsoft established?\tThe only bluetooth mouse I?ve\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (The only bluetooth mouse I?ve, found from, Microsoft) -> The only bluetooth mouse I?ve (3134ms)\nWhen was Microsoft established?\tA short-sighted court\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (A short-sighted court, found, Microsoft) -> A short-sighted court (3156ms)\nWhen was Microsoft established?\tlesser-known applications\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (lesser-known applications, found on, Microsoft) -> lesser-known applications (3163ms)\nWhen was Microsoft established?\t2. INTERNET INFO\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (2. INTERNET INFO, find more information about, Microsoft) -> 2. INTERNET INFO (3149ms)\nWhen was Microsoft established?\tthe cryptographically-secure RNG system\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the cryptographically-secure RNG system, found in, Microsoft) -> the cryptographically-secure RNG system (3163ms)\nWhen was Microsoft established?\tthe utility\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the utility, can be found at, Microsoft) -> the utility (3134ms)\nWhen was Microsoft established?\tThe judge\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (The judge, found, Microsoft) -> The judge (3142ms)\nWhen was Microsoft established?\ta security problem\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (a security problem, is found, Microsoft) -> a security problem (3156ms)\nWhen was Microsoft established?\t80 people\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (80 people, find any reference to, Microsoft) -> 80 people (3142ms)\nWhen was Microsoft established?\tFurther information\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Further information, can be found in, Microsoft) -> Further information (3163ms)\nWhen was Microsoft established?\ta SAPI 5 installer\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (a SAPI 5 installer, can be found on, Microsoft) -> a SAPI 5 installer (3169ms)\nWhen was Microsoft established?\tthe points-based payment system\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the points-based payment system, found on, Microsoft) -> the points-based payment system (3149ms)\nWhen was Microsoft established?\tMacs Metadata\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Macs Metadata, found on, Microsoft) -> Macs Metadata (3142ms)\nWhen was Microsoft established?\ta multiplication bug\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (a multiplication bug, found in, Microsoft) -> a multiplication bug (3169ms)\nWhen was Microsoft established?\tthe Commission\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the Commission, find, Microsoft) -> the Commission (3163ms)\nWhen was Microsoft established?\tthe district court\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the district court, found against, Microsoft) -> the district court (3163ms)\nWhen was Microsoft established?\tHarvard\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Harvard, found, Microsoft) -> Harvard (3149ms)\nWhen was Microsoft established?\tbugs\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (bugs, have been found throughout, Microsoft) -> bugs (3142ms)\nWhen was Microsoft established?\tSQL\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (SQL, may find, Microsoft) -> SQL (3169ms)\nWhen was Microsoft established?\tthe court\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the court, found for, Microsoft) -> the court (3142ms)\nWhen was Microsoft established?\tCustomers\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Customers, find unique value in, Microsoft) -> Customers (3169ms)\nWhen was Microsoft established?\tUAC\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (UAC, can be found at, Microsoft) -> UAC (3142ms)\nWhen was Microsoft established?\tAllen and Gates\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Allen and Gates, found, Microsoft) -> Allen and Gates (3169ms)\nWhen was Microsoft established?\tthe standard DVD drive\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the standard DVD drive, found in, Microsoft) -> the standard DVD drive (3142ms)\nWhen was Microsoft established?\tthe European Union\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the European Union, found, Microsoft) -> the European Union (3149ms)\nWhen was Microsoft established?\tinformation technology professionals\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (information technology professionals, found, Microsoft) -> information technology professionals (3134ms)\nWhen was Microsoft established?\tThe Panel\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (The Panel, found, Microsoft) -> The Panel (3149ms)\nWhen was Microsoft established?\tTim Paterson\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Tim Paterson, found employment at, Microsoft) -> Tim Paterson (3169ms)\nWhen was Microsoft established?\tPaul Allen\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Paul Allen, officially found, Microsoft) -> Paul Allen (3156ms)\nWhen was Microsoft established?\tthe outcome?ITC issues\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the outcome?ITC issues, finds, Microsoft) -> the outcome?ITC issues (3142ms)\nWhen was Microsoft established?\tthe appellate court\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the appellate court, found, Microsoft) -> the appellate court (3169ms)\nWhen was Microsoft established?\tthus microsoft WILL\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (thus microsoft WILL, find, Microsoft) -> thus microsoft WILL (3142ms)\nWhen was Microsoft established?\tthe resulting list\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the resulting list, find, Microsoft) -> the resulting list (3149ms)\nWhen was Microsoft established?\tThe following open-source tools\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (The following open-source tools, be found on, Microsoft) -> The following open-source tools (3163ms)\nWhen was Microsoft established?\tthe Answer Desks\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the Answer Desks, found in, Microsoft) -> the Answer Desks (3169ms)\nWhen was Microsoft established?\tITC issues\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (ITC issues, finds, Microsoft) -> ITC issues (3156ms)\nWhen was Microsoft established?\tA seven-day trial\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (A seven-day trial, found, Microsoft) -> A seven-day trial (3134ms)\nWhen was Microsoft established?\tinformation\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (information, can be found at, Microsoft) -> information (3149ms)\nWhen was Microsoft established?\tsatan\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (satan, found, Microsoft) -> satan (3156ms)\nWhen was Microsoft established?\tthe term\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the term, found, Microsoft) -> the term (3163ms)\nWhen was Microsoft established?\tthe hackers\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the hackers, found, Microsoft) -> the hackers (3156ms)\nWhen was Microsoft established?\tAdditional information\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Additional information, can be found at, Microsoft) -> Additional information (3142ms)\nWhen was Microsoft established?\tsecurity issues\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (security issues, found to, Microsoft) -> security issues (3169ms)\nWhen was Microsoft established?\ttwo people\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (two people, have found, Microsoft) -> two people (3142ms)\nWhen was Microsoft established?\tthe improvements and enhancements\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the improvements and enhancements, found in, Microsoft) -> the improvements and enhancements (3169ms)\nWhen was Microsoft established?\ttraditional print publishers\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (traditional print publishers, found in, Microsoft) -> traditional print publishers (3156ms)\nWhen was Microsoft established?\tThe study\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (The study, found, Microsoft) -> The study (3156ms)\nWhen was Microsoft established?\thighly publicized security vulnerabilities\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (highly publicized security vulnerabilities, found in, Microsoft) -> highly publicized security vulnerabilities (3163ms)\nWhen was Microsoft established?\tfiles\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (files, found in, Microsoft) -> files (3169ms)\nWhen was Microsoft established?\tPrimeSense?technology\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (PrimeSense?technology, also found in, Microsoft) -> PrimeSense?technology (3134ms)\nWhen was Microsoft established?\tPart\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Part, found, Microsoft) -> Part (3142ms)\nWhen was Microsoft established?\tthe functionality\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the functionality, found in, Microsoft) -> the functionality (3156ms)\nWhen was Microsoft established?\tJudge Jackson\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Judge Jackson, found, Microsoft) -> Judge Jackson (3169ms)\nWhen was Microsoft established?\tthe 1394 Storage Supplement\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the 1394 Storage Supplement, found on, Microsoft) -> the 1394 Storage Supplement (3156ms)\nWhen was Microsoft established?\tThe two most notable examples\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (The two most notable examples, can be found in, Microsoft) -> The two most notable examples (3156ms)\nWhen was Microsoft established?\tthe critical updates packages\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the critical updates packages, found at, Microsoft) -> the critical updates packages (3149ms)\nWhen was Microsoft established?\tthe five activities\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the five activities, found in, Microsoft) -> the five activities (3142ms)\nWhen was Microsoft established?\tmicros*\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (micros*, will find, Microsoft) -> micros* (3134ms)\nWhen was Microsoft established?\ta child dream\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (a child dream, find out, Microsoft) -> a child dream (3169ms)\nWhen was Microsoft established?\tThe EC\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (The EC, found, Microsoft) -> The EC (3176ms)\nWhen was Microsoft established?\tthe same Terminator 2 trailer clip\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the same Terminator 2 trailer clip, found at, Microsoft) -> the same Terminator 2 trailer clip (3163ms)\nWhen was Microsoft established?\ta federal judge\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (a federal judge, found, Microsoft) -> a federal judge (3169ms)\nWhen was Microsoft established?\ta cartoon\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (a cartoon, found on, Microsoft) -> a cartoon (3163ms)\nWhen was Microsoft established?\tproducts\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (products, found using, Microsoft) -> products (3163ms)\nWhen was Microsoft established?\tAlan Pelz-Sharpe\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Alan Pelz-Sharpe, finds, Microsoft) -> Alan Pelz-Sharpe (3156ms)\nWhen was Microsoft established?\tJackson\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (Jackson, found, Microsoft) -> Jackson (3163ms)\nWhen was Microsoft established?\tthe Account Lockout tools\t0.555555555555\tWhen was Microsoft established? -> $x: ($x, find, microsoft) -> (the Account Lockout tools, found out, Microsoft) -> the Account Lockout tools (3142ms)\nWhen was Microsoft established?\t2009\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (MicrosoftOfficeWebServer, was developed in, 2009) -> 2009 (3211ms)\nWhen was Microsoft established?\tacademic circles\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, were already developed in, academic circles) -> academic circles (3200ms)\nWhen was Microsoft established?\tThe reporter\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (The reporter, found in, the interview Microsoft Office 2010) -> The reporter (3195ms)\nWhen was Microsoft established?\tthe hibernate function\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the hibernate function, found in, Microsoft Windows) -> the hibernate function (3189ms)\nWhen was Microsoft established?\tthe File Explorer program\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the File Explorer program, found in, Microsoft Windows) -> the File Explorer program (3182ms)\nWhen was Microsoft established?\tOneNote\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (OneNote, can be found, utilizing MICROSOFT Office 2010) -> OneNote (3189ms)\nWhen was Microsoft established?\ttouch gestures\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (touch gestures, found in, Microsoft Windows 7) -> touch gestures (3195ms)\nWhen was Microsoft established?\tthe features\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the features, found in, Microsoft Office) -> the features (3189ms)\nWhen was Microsoft established?\tthe programs\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the programs, found in, Microsoft Office) -> the programs (3209ms)\nWhen was Microsoft established?\tnew vulnerabilities\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (new vulnerabilities, found in, Microsoft Windows) -> new vulnerabilities (3189ms)\nWhen was Microsoft established?\tOffice Live Workspace\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (Office Live Workspace, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Office%20Live) -> Office Live Workspace (3189ms)\nWhen was Microsoft established?\tthe pages users\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the pages users, will find at, Microsoft Office Online) -> the pages users (3200ms)\nWhen was Microsoft established?\tswitch\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (switch, find, Microsoft Office 11.0 Object Library) -> switch (3189ms)\nWhen was Microsoft established?\tthe next 30 days\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, will be developed in, the next 30 days) -> the next 30 days (3200ms)\nWhen was Microsoft established?\tthe Encryption File System\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the Encryption File System, found in, Microsoft Windows) -> the Encryption File System (3183ms)\nWhen was Microsoft established?\ta fraction\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft .NET solutions, are also developed in, a fraction) -> a fraction (3195ms)\nWhen was Microsoft established?\tthe capabilities\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the capabilities, found in, Microsoft Office) -> the capabilities (3205ms)\nWhen was Microsoft established?\tthe image formats\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the image formats, found on, Microsoft Windows environments) -> the image formats (3210ms)\nWhen was Microsoft established?\torder\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (A Microsoft Visual Studio add-in, was developed in, order) -> order (3209ms)\nWhen was Microsoft established?\tthe Critical Updates\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the Critical Updates, found on, the Microsoft Window) -> the Critical Updates (3176ms)\nWhen was Microsoft established?\tthe single button menus\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the single button menus, found in, Microsoft Office) -> the single button menus (3200ms)\nWhen was Microsoft established?\tThe concept\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (The concept, is also found in, Microsoft Windows) -> The concept (3200ms)\nWhen was Microsoft established?\t1984\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft GWBasic computer programs, were developed in, 1984) -> 1984 (3189ms)\nWhen was Microsoft established?\tthe issue\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the issue, can be found in, your microsoft windows) -> the issue (3189ms)\nWhen was Microsoft established?\tNachi\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (Nachi, were found in, Microsoft Windows) -> Nachi (3200ms)\nWhen was Microsoft established?\tAustria\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft Dynamics, is being developed in, Austria) -> Austria (3209ms)\nWhen was Microsoft established?\tcartoons\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (cartoons, is found at, Microsoft Office Online Clip Art) -> cartoons (3195ms)\nWhen was Microsoft established?\tsmall mental health practices\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (small mental health practices, may find, Microsoft Office) -> small mental health practices (3195ms)\nWhen was Microsoft established?\tcode\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (code, found in, Microsoft Office Professional Edition 2003) -> code (3200ms)\nWhen was Microsoft established?\tthe tutorial\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft FrontPage, was used in developing, the tutorial) -> the tutorial (3189ms)\nWhen was Microsoft established?\tseveral fonts\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (several fonts, are found in, Microsoft Windows) -> several fonts (3182ms)\nWhen was Microsoft established?\tWeb archive file\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (Web archive file, found in, the Microsoft Office 2002 suite) -> Web archive file (3195ms)\nWhen was Microsoft established?\tthe ExplorerBar control\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the ExplorerBar control, found in, Microsoft Windows) -> the ExplorerBar control (3200ms)\nWhen was Microsoft established?\tPros\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (Pros, can find, the current Microsoft Office 2008) -> Pros (3183ms)\nWhen was Microsoft established?\tthe applications\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the applications, found in, Microsoft Office) -> the applications (3189ms)\nWhen was Microsoft established?\t? tab\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (? tab, are found, Microsoft Office documents) -> ? tab (3183ms)\nWhen was Microsoft established?\tA zero-day flaw\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (A zero-day flaw, has been found in, Microsoft Office 2000) -> A zero-day flaw (3205ms)\nWhen was Microsoft established?\tcooperation\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, was developed in, cooperation) -> cooperation (3195ms)\nWhen was Microsoft established?\tThe RSA encryption technology\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (The RSA encryption technology, is found in, Microsoft Windows) -> The RSA encryption technology (3182ms)\nWhen was Microsoft established?\tthe much-maligned assistant\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the much-maligned assistant, found in, Microsoft Office 19972003) -> the much-maligned assistant (3183ms)\nWhen was Microsoft established?\tthe same direction\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, is n?t visibly developing in, the same direction) -> the same direction (3209ms)\nWhen was Microsoft established?\tthe Vivi you?ll\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the Vivi you?ll, find, Microsoft Windows XP) -> the Vivi you?ll (3183ms)\nWhen was Microsoft established?\tdialog boxes\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (dialog boxes, found in, Microsoft Office programs) -> dialog boxes (3189ms)\nWhen was Microsoft established?\tHelp?\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (Help?, is found directly in, the Microsoft Office Ribbon) -> Help? (3200ms)\nWhen was Microsoft established?\tPDA Software\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (PDA Software, Find, Microsoft Windows Mobile software) -> PDA Software (3195ms)\nWhen was Microsoft established?\tthe Viridian\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, is developing in, the Viridian) -> the Viridian (3205ms)\nWhen was Microsoft established?\tchanges\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (changes, found in, Microsoft Office 2010) -> changes (3205ms)\nWhen was Microsoft established?\tslow legacy flash file systems\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (slow legacy flash file systems, found in, Microsoft Windows CE) -> slow legacy flash file systems (3176ms)\nWhen was Microsoft established?\teBay\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (eBay, Find Learn, microsoft PowerPoint MS office Professor video) -> eBay (3205ms)\nWhen was Microsoft established?\tthe Add\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the Add, find, Microsoft Office 2000) -> the Add (3176ms)\nWhen was Microsoft established?\tyou?ll\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (you?ll, find, Microsoft Windows) -> you?ll (3183ms)\nWhen was Microsoft established?\t2010\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (MicrosoftOfficeWebServer, was developed in, 2010) -> 2010 (3183ms)\nWhen was Microsoft established?\tThe majority\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (The majority, can be found under, ?Microsoft Office 2010) -> The majority (3182ms)\nWhen was Microsoft established?\tOffice 97\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (Office 97, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Office%2097) -> Office 97 (3183ms)\nWhen was Microsoft established?\tthe ExplorerBar steer\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the ExplorerBar steer, found in, Microsoft Windows) -> the ExplorerBar steer (3176ms)\nWhen was Microsoft established?\tseveral programs\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (several programs, found within, microsoft office) -> several programs (3205ms)\nWhen was Microsoft established?\tThe question types\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (The question types, found on, the Microsoft Windows Vista exam) -> The question types (3200ms)\nWhen was Microsoft established?\tClick\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (Click, Find updates for, Microsoft Windows operating systems) -> Click (3176ms)\nWhen was Microsoft established?\tDial-Up Networking\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (Dial-Up Networking, tries to find, a Microsoft Windows Network) -> Dial-Up Networking (3195ms)\nWhen was Microsoft established?\tNT.\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (dollars Microsoft, is investing in developing, NT.) -> NT. (3195ms)\nWhen was Microsoft established?\tlarge part\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, instead was developed in, large part) -> large part (3210ms)\nWhen was Microsoft established?\ttwo parallel tracks\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft Windows, has been developed in, two parallel tracks) -> two parallel tracks (3205ms)\nWhen was Microsoft established?\ta system function driver\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (a system function driver, found in, Microsoft Windows 2000) -> a system function driver (3205ms)\nWhen was Microsoft established?\tOLE\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (OLE, is found in, many Microsoft Office applications) -> OLE (3189ms)\nWhen was Microsoft established?\tfile format\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (file format, found in, Microsoft Office 2007 and 2008) -> file format (3176ms)\nWhen was Microsoft established?\tthe vba files\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the vba files, found in, the microsoft office products) -> the vba files (3200ms)\nWhen was Microsoft established?\thigh priority\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (high priority, were found in, Microsoft Windows) -> high priority (3209ms)\nWhen was Microsoft established?\tYou?ll\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (You?ll, find everything from, Microsoft Office) -> You?ll (3189ms)\nWhen was Microsoft established?\tSep 23\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (Sep 23, Find, the Microsoft ?office ?) -> Sep 23 (3176ms)\nWhen was Microsoft established?\tthe feature\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the feature, found in, Microsoft Office) -> the feature (3209ms)\nWhen was Microsoft established?\ta bug\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (a bug, can also be found in, Microsoft Office Access 2007) -> a bug (3205ms)\nWhen was Microsoft established?\tYou?ll\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (You?ll, find everything from, Microsoft Office) -> You?ll (3205ms)\nWhen was Microsoft established?\trichness\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (richness, found in, Microsoft Office applications) -> richness (3176ms)\nWhen was Microsoft established?\tWindows Media Player\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (Windows Media Player, can be found on, Microsoft Windows Media) -> Windows Media Player (3183ms)\nWhen was Microsoft established?\tMicrosoft Office News\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (Microsoft Office News, Find, the latest Microsoft Office news) -> Microsoft Office News (3205ms)\nWhen was Microsoft established?\ta user account\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (a user account, typically found on, Microsoft Windows) -> a user account (3189ms)\nWhen was Microsoft established?\tthe use-ability\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the use-ability, found in, the on-premise Microsoft Office suite) -> the use-ability (3195ms)\nWhen was Microsoft established?\tstandard development applications\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (standard development applications, found in, Microsoft Office) -> standard development applications (3195ms)\nWhen was Microsoft established?\tthe Collapse/Expand feature\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the Collapse/Expand feature, found in, Microsoft ? Office 2007) -> the Collapse/Expand feature (3183ms)\nWhen was Microsoft established?\tribbon interface\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (ribbon interface, found in, Microsoft Office 2007) -> ribbon interface (3205ms)\nWhen was Microsoft established?\ta select number\t0.444444444444\tWhen was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, is busy developing software in, a select number) -> a select number (3195ms)\nWhen was Microsoft established?\tthe user interface\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the user interface, found in, Microsoft Windows) -> the user interface (3189ms)\nWhen was Microsoft established?\tthe patch\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the patch, can be found at, Microsoft Office 2000) -> the patch (3195ms)\nWhen was Microsoft established?\tPreview The\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (Preview The, found, Microsoft Office documents) -> Preview The (3182ms)\nWhen was Microsoft established?\tAPIs\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (APIs, found in, Microsoft Windows) -> APIs (3200ms)\nWhen was Microsoft established?\tthe latest technologies\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the latest technologies, found in, Microsoft Windows) -> the latest technologies (3209ms)\nWhen was Microsoft established?\tdollars cost\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (dollars cost, Find, Microsoft Office product key) -> dollars cost (3176ms)\nWhen was Microsoft established?\tprograms\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (programs, find, Microsoft Office HTML Filter 2.0) -> programs (3210ms)\nWhen was Microsoft established?\tthe *nix goodies\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft window) -> (the *nix goodies, found in, Microsoft?s Windows Services) -> the *nix goodies (3209ms)\nWhen was Microsoft established?\tthe popular software applications\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the popular software applications, found in, Microsoft Office) -> the popular software applications (3200ms)\nWhen was Microsoft established?\twater pumps\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (water pumps, find, ? Microsoft Office) -> water pumps (3176ms)\nWhen was Microsoft established?\tthe file formats\t0.444444444444\tWhen was Microsoft established? -> $x: ($x, find, microsoft office) -> (the file formats, found in, Microsoft Office) -> the file formats (3200ms)\nWhen was Microsoft established?\tBlogrunner\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows 8, can be found on, Blogrunner) -> Blogrunner (3215ms)\nWhen was Microsoft established?\tBoeing?s security system\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows vulnerabilities, are found on, Boeing?s security system) -> Boeing?s security system (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Facing%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Facing Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Facing%20Windows) -> http://en.wikipedia.org/wiki/Facing%20Windows (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Convergent%20Technologies%20Operating%20System\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (Convergent Technologies Operating System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Convergent%20Technologies%20Operating%20System) -> http://en.wikipedia.org/wiki/Convergent%20Technologies%20Operating%20System (3220ms)\nWhen was Microsoft established?\tthe following pages\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows XP, can be found on, the following pages) -> the following pages (3239ms)\nWhen was Microsoft established?\tthe rocks\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (a window, was found unbroken on, the rocks) -> the rocks (3239ms)\nWhen was Microsoft established?\tthe subject\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (replacement windows units, can be found on, the subject) -> the subject (3224ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Window%20of%20the%20World\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Window of the World, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Window%20of%20the%20World) -> http://en.wikipedia.org/wiki/Window%20of%20the%20World (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Active%20window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Active Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Active%20window) -> http://en.wikipedia.org/wiki/Active%20window (3228ms)\nWhen was Microsoft established?\talmost any device\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (The operating system, is found on, almost any device) -> almost any device (3224ms)\nWhen was Microsoft established?\tthe downloads page\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, can be found on, the downloads page) -> the downloads page (3239ms)\nWhen was Microsoft established?\tWikipedia\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows EFS, can be found on, Wikipedia) -> Wikipedia (3215ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windows%20Firewall\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows firewall, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Firewall) -> http://en.wikipedia.org/wiki/Windows%20Firewall (3239ms)\nWhen was Microsoft established?\tthe Wiki\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, can be found on, the Wiki) -> the Wiki (3224ms)\nWhen was Microsoft established?\tbase subcompacts\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (power windows, are rarely found on, base subcompacts) -> base subcompacts (3224ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/World%20Outside%20My%20Window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (World Outside My Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/World%20Outside%20My%20Window) -> http://en.wikipedia.org/wiki/World%20Outside%20My%20Window (3228ms)\nWhen was Microsoft established?\tthe ground\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (a window, was subsequently found dead on, the ground) -> the ground (3239ms)\nWhen was Microsoft established?\tthe towers\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, are only found on, the towers) -> the towers (3228ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windows%20IT%20Pro\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows IT Pro, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20IT%20Pro) -> http://en.wikipedia.org/wiki/Windows%20IT%20Pro (3215ms)\nWhen was Microsoft established?\twebservers\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (These operating systems, are most commonly found on, webservers) -> webservers (3239ms)\nWhen was Microsoft established?\tDell?s site\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (older operating systems, could be found on, Dell?s site) -> Dell?s site (3228ms)\nWhen was Microsoft established?\tmore than half\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (the Android operating system, is now found on, more than half) -> more than half (3232ms)\nWhen was Microsoft established?\tvarious web sites\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, can be found on, various web sites) -> various web sites (3215ms)\nWhen was Microsoft established?\tMicrosoft Windows Media\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Media Player, can be found on, Microsoft Windows Media) -> Microsoft Windows Media (3215ms)\nWhen was Microsoft established?\tthe exterior\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (This window, is found on, the exterior) -> the exterior (3220ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/The%20Magic%20Window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (The Magic Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Magic%20Window) -> http://en.wikipedia.org/wiki/The%20Magic%20Window (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/MARS%20(ticket%20reservation%20system)\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Green Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/MARS%20(ticket%20reservation%20system)) -> http://en.wikipedia.org/wiki/MARS%20(ticket%20reservation%20system) (3239ms)\nWhen was Microsoft established?\tiMac screens\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows interfaces, were easy to find on, iMac screens) -> iMac screens (3236ms)\nWhen was Microsoft established?\twindows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows binaries, can be found on, windows) -> windows (3215ms)\nWhen was Microsoft established?\tsupercomputers\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (operating systems, as is found on, supercomputers) -> supercomputers (3224ms)\nWhen was Microsoft established?\tpavements\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (smashed car windows, are regularly found on, pavements) -> pavements (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Window%20on%20Main%20Street\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Window on Main Street, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Window%20on%20Main%20Street) -> http://en.wikipedia.org/wiki/Window%20on%20Main%20Street (3232ms)\nWhen was Microsoft established?\ta regular basis\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (operating systems, are found on, a regular basis) -> a regular basis (3224ms)\nWhen was Microsoft established?\tthe Internet\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (operating systems, can easily be found on, the Internet) -> the Internet (3232ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Golden%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Golden Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Golden%20Windows) -> http://en.wikipedia.org/wiki/Golden%20Windows (3236ms)\nWhen was Microsoft established?\tthe driver\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (both windows, can be found on, the driver) -> the driver (3243ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Steamy%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Steamy Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Steamy%20Windows) -> http://en.wikipedia.org/wiki/Steamy%20Windows (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Webroot%20Window%20Washer\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Webroot Window Washer, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Webroot%20Window%20Washer) -> http://en.wikipedia.org/wiki/Webroot%20Window%20Washer (3232ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/The%20High%20Window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (The High Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20High%20Window) -> http://en.wikipedia.org/wiki/The%20High%20Window (3228ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Champion%20Window%20Field\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (champion window field, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Champion%20Window%20Field) -> http://en.wikipedia.org/wiki/Champion%20Window%20Field (3224ms)\nWhen was Microsoft established?\tthe Nexus One\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (the Android operating system, is also found on, the Nexus One) -> the Nexus One (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Storm%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Storm Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Storm%20Windows) -> http://en.wikipedia.org/wiki/Storm%20Windows (3239ms)\nWhen was Microsoft established?\tMicrosoft?s website\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows 7, can be found on, Microsoft?s website) -> Microsoft?s website (3219ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Cray%20Operating%20System\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (Cray Operating System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Cray%20Operating%20System) -> http://en.wikipedia.org/wiki/Cray%20Operating%20System (3236ms)\nWhen was Microsoft established?\tlarger laptops\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows laptops, are usually only found on, larger laptops) -> larger laptops (3232ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Aortic%20window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (aortic window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Aortic%20window) -> http://en.wikipedia.org/wiki/Aortic%20window (3224ms)\nWhen was Microsoft established?\thouses\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Sash windows, will commonly be found on, houses) -> houses (3239ms)\nWhen was Microsoft established?\tthe 8daysaweek\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (any Operating System, can now be found on, the 8daysaweek) -> the 8daysaweek (3239ms)\nWhen was Microsoft established?\tthe order form\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows products, can be found on, the order form) -> the order form (3224ms)\nWhen was Microsoft established?\tthe three floors\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (windows, are found on, the three floors) -> the three floors (3215ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Cleaning%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Cleaning Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Cleaning%20Windows) -> http://en.wikipedia.org/wiki/Cleaning%20Windows (3220ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Sylvicola%20fenestralis\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Window Gnat, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sylvicola%20fenestralis) -> http://en.wikipedia.org/wiki/Sylvicola%20fenestralis (3232ms)\nWhen was Microsoft established?\tNVIDIA.com\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows 8, can be found here on, NVIDIA.com) -> NVIDIA.com (3239ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windows%201%2E0\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows 1.0, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%201%2E0) -> http://en.wikipedia.org/wiki/Windows%201%2E0 (3220ms)\nWhen was Microsoft established?\tmore than 90 percent\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> ('s operating system, is found on, more than 90 percent) -> more than 90 percent (3228ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Doors%20and%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (doors and windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Doors%20and%20Windows) -> http://en.wikipedia.org/wiki/Doors%20and%20Windows (3228ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windows%2D1257\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows-1257, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%2D1257) -> http://en.wikipedia.org/wiki/Windows%2D1257 (3232ms)\nWhen was Microsoft established?\tthe AVR Freaks website\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, can be found on, the AVR Freaks website) -> the AVR Freaks website (3232ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/The%20Broken%20Window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (the broken window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Broken%20Window) -> http://en.wikipedia.org/wiki/The%20Broken%20Window (3224ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Window%2Deyes\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Window Eyes, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Window%2Deyes) -> http://en.wikipedia.org/wiki/Window%2Deyes (3220ms)\nWhen was Microsoft established?\tthe Linux Operating System\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (The X Window, can be found on, the Linux Operating System) -> the Linux Operating System (3224ms)\nWhen was Microsoft established?\tthe Johnny Mnemonic VR Player Homepage\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (windows, can be found on, the Johnny Mnemonic VR Player Homepage) -> the Johnny Mnemonic VR Player Homepage (3215ms)\nWhen was Microsoft established?\tthe main Python site\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (even Windows, can be found on, the main Python site) -> the main Python site (3232ms)\nWhen was Microsoft established?\teither side\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (two windows, are found on, either side) -> either side (3224ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Paul%20G%2E%20Allen%20Family%20Foundation\t0.333333333334\tWhen was Microsoft established? -> $x: (paul allen, be found on, $x) -> (Paul G. Allen Family Foundation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Paul%20G%2E%20Allen%20Family%20Foundation) -> http://en.wikipedia.org/wiki/Paul%20G%2E%20Allen%20Family%20Foundation (3232ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windows%20Messenger\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Messenger, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Messenger) -> http://en.wikipedia.org/wiki/Windows%20Messenger (3239ms)\nWhen was Microsoft established?\tBoeing\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows vulnerabilities, are found on, Boeing) -> Boeing (3228ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Stained%20Glass%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (stained glass windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Stained%20Glass%20Windows) -> http://en.wikipedia.org/wiki/Stained%20Glass%20Windows (3243ms)\nWhen was Microsoft established?\tthe top-half section\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (the three windows, are found on, the top-half section) -> the top-half section (3228ms)\nWhen was Microsoft established?\tevery wall and bath\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Large windows, can be found on almost, every wall and bath) -> every wall and bath (3220ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windowing%20system\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windowing%20system) -> http://en.wikipedia.org/wiki/Windowing%20system (3220ms)\nWhen was Microsoft established?\tany device\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (Operating systems, are found on, any device) -> any device (3220ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Casement%20window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Casement windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Casement%20window) -> http://en.wikipedia.org/wiki/Casement%20window (3228ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/100th%20Window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (100th Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/100th%20Window) -> http://en.wikipedia.org/wiki/100th%20Window (3220ms)\nWhen was Microsoft established?\tStylish Interior Window Shutters\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (window shutters, are found on, Stylish Interior Window Shutters) -> Stylish Interior Window Shutters (3215ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windows%20Magazine\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Magazine, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Magazine) -> http://en.wikipedia.org/wiki/Windows%20Magazine (3236ms)\nWhen was Microsoft established?\thatchbacks\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Rear window wipers, are typically found on, hatchbacks) -> hatchbacks (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Therapeutic%20window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Pharmacological window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Therapeutic%20window) -> http://en.wikipedia.org/wiki/Therapeutic%20window (3239ms)\nWhen was Microsoft established?\tthe active partition\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (the known operating systems, are found on, the active partition) -> the active partition (3224ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windows%20Server\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows server, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Server) -> http://en.wikipedia.org/wiki/Windows%20Server (3232ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Come%20to%20My%20Window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Come To My Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Come%20to%20My%20Window) -> http://en.wikipedia.org/wiki/Come%20to%20My%20Window (3243ms)\nWhen was Microsoft established?\tthe download page\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Official Windows binaries, can be found on, the download page) -> the download page (3228ms)\nWhen was Microsoft established?\ta daily basis\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (operating systems, are found practically on, a daily basis) -> a daily basis (3239ms)\nWhen was Microsoft established?\tthe floor\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (the window, was found on, the floor) -> the floor (3232ms)\nWhen was Microsoft established?\tthe system\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Phone, is found on, the system) -> the system (3220ms)\nWhen was Microsoft established?\tthe left side\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (windows, are typically found on, the left side) -> the left side (3228ms)\nWhen was Microsoft established?\tthe Ascension website\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (all the windows, can be found on, the Ascension website) -> the Ascension website (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Divine%20Operating%20System\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (Divine Operating System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Divine%20Operating%20System) -> http://en.wikipedia.org/wiki/Divine%20Operating%20System (3219ms)\nWhen was Microsoft established?\tthe left hand side\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (windows, are usually found on, the left hand side) -> the left hand side (3228ms)\nWhen was Microsoft established?\tthe Accessories menu\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Vista/Windows, can be found on, the Accessories menu) -> the Accessories menu (3219ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Crypto%20Operating%20System\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (Crypto Operating System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crypto%20Operating%20System) -> http://en.wikipedia.org/wiki/Crypto%20Operating%20System (3224ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Pharmacodynamics\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Pharmacy window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Pharmacodynamics) -> http://en.wikipedia.org/wiki/Pharmacodynamics (3215ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Games%20for%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Games for Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Games%20for%20Windows) -> http://en.wikipedia.org/wiki/Games%20for%20Windows (3239ms)\nWhen was Microsoft established?\tthe disk\t0.333333333334\tWhen was Microsoft established? -> $x: (operate system, be found on, $x) -> (a Windows operating system, was found on, the disk) -> the disk (3236ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/100%20Broken%20Windows\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (100 Broken Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/100%20Broken%20Windows) -> http://en.wikipedia.org/wiki/100%20Broken%20Windows (3228ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Johari%20window\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Johari window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Johari%20window) -> http://en.wikipedia.org/wiki/Johari%20window (3232ms)\nWhen was Microsoft established?\thttp://en.wikipedia.org/wiki/Windows%20Defender\t0.333333333334\tWhen was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows AntiSpyware, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Defender) -> http://en.wikipedia.org/wiki/Windows%20Defender (3224ms)\nWhen was Microsoft established?\tthe default disk copy utility\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the default disk copy utility, found in, Windows) -> the default disk copy utility (3254ms)\nWhen was Microsoft established?\tfile name extensions and applications\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (file name extensions and applications, found within, Windows) -> file name extensions and applications (3266ms)\nWhen was Microsoft established?\ta New Hardware\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (a New Hardware, found, window) -> a New Hardware (3254ms)\nWhen was Microsoft established?\tThe foremost and base point\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (The foremost and base point, find is, an operating system) -> The foremost and base point (3251ms)\nWhen was Microsoft established?\tthe mapping software\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the mapping software, Find, window) -> the mapping software (3249ms)\nWhen was Microsoft established?\tTwo more flaws\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Two more flaws, found in, windows) -> Two more flaws (3266ms)\nWhen was Microsoft established?\tCan?t\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (Can?t, quite find, a WordPress theme I?m) -> Can?t (3243ms)\nWhen was Microsoft established?\tUnix\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Unix, can be found in, every major operating system) -> Unix (3256ms)\nWhen was Microsoft established?\tSecurity loophole\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Security loophole, found in, Windows operating system) -> Security loophole (3267ms)\nWhen was Microsoft established?\tthe search\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the search, find, windows) -> the search (3254ms)\nWhen was Microsoft established?\ta memo\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (a memo, Find, window) -> a memo (3258ms)\nWhen was Microsoft established?\tThe TCP/IP protocol\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (The TCP/IP protocol, is found in, major operating systems) -> The TCP/IP protocol (3263ms)\nWhen was Microsoft established?\tthe front\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the front, Find, window) -> the front (3251ms)\nWhen was Microsoft established?\trecent capabilities\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (recent capabilities, found in, Windows) -> recent capabilities (3256ms)\nWhen was Microsoft established?\tJacs?\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Jacs?, finds, Windows) -> Jacs? (3249ms)\nWhen was Microsoft established?\tGoogle\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Google, finds, Windows) -> Google (3254ms)\nWhen was Microsoft established?\tthe 'search '\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the 'search ', 'find, ' windows) -> the 'search ' (3263ms)\nWhen was Microsoft established?\tfile creation operations\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (file creation operations, found in, many operating > systems) -> file creation operations (3266ms)\nWhen was Microsoft established?\tthe calendar app\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the calendar app, found in, Microsoft Outlook) -> the calendar app (3243ms)\nWhen was Microsoft established?\tFebruary 15th\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (February 15th, found, a piece of MS Word macro) -> February 15th (3260ms)\nWhen was Microsoft established?\tports\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (ports, found in, the operating system) -> ports (3262ms)\nWhen was Microsoft established?\tThe report\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (The report, found, Windows) -> The report (3266ms)\nWhen was Microsoft established?\tShakaki not compatible\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Shakaki not compatible, find, new operating system) -> Shakaki not compatible (3266ms)\nWhen was Microsoft established?\tthe drag-and-drop metaphor\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the drag-and-drop metaphor, found in, most operating systems) -> the drag-and-drop metaphor (3254ms)\nWhen was Microsoft established?\tsure ?System Recovery Options ?\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (sure ?System Recovery Options ?, finds, a Operating System) -> sure ?System Recovery Options ? (3266ms)\nWhen was Microsoft established?\tWindows 7\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Windows 7, may find using, this operating system) -> Windows 7 (3249ms)\nWhen was Microsoft established?\tWhite Box\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (White Box, Find, Windows) -> White Box (3249ms)\nWhen was Microsoft established?\tsuch surfaces\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (such surfaces, found, windows) -> such surfaces (3266ms)\nWhen was Microsoft established?\tthe Media Manager\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the Media Manager, Find, window) -> the Media Manager (3262ms)\nWhen was Microsoft established?\tThe survey\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (The survey, found, the Windows operating system) -> The survey (3256ms)\nWhen was Microsoft established?\tSoftodrom\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Softodrom, Find, Windows) -> Softodrom (3258ms)\nWhen was Microsoft established?\ta list\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (a list, found, windows) -> a list (3256ms)\nWhen was Microsoft established?\tNew Hardware\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (New Hardware, Found, window) -> New Hardware (3246ms)\nWhen was Microsoft established?\tcomputer Computer\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (computer Computer, can?t find, the operating system) -> computer Computer (3258ms)\nWhen was Microsoft established?\tThe secret\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (The secret, is finding, an operating-system) -> The secret (3246ms)\nWhen was Microsoft established?\tthe best file launcher I?ve\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the best file launcher I?ve, found for, Windows) -> the best file launcher I?ve (3258ms)\nWhen was Microsoft established?\tthe end\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms excel) -> (the end, can be found in, an MS Excel file) -> the end (3254ms)\nWhen was Microsoft established?\tthe Command Prompt\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the Command Prompt, found in, Windows) -> the Command Prompt (3246ms)\nWhen was Microsoft established?\tFull terms and conditions\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (Full terms and conditions, can be found here, MS Word or pdf) -> Full terms and conditions (3260ms)\nWhen was Microsoft established?\tspecial client software\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (special client software, found in, modern operating systems) -> special client software (3258ms)\nWhen was Microsoft established?\tThe viruses\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (The viruses, are found within, an operating system) -> The viruses (3265ms)\nWhen was Microsoft established?\tthe soul\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the soul, finds, windows) -> the soul (3262ms)\nWhen was Microsoft established?\ta very powerful feature\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (a very powerful feature, found on, the UNIX operating system) -> a very powerful feature (3264ms)\nWhen was Microsoft established?\ta user\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (a user, will have to find, the operating system) -> a user (3262ms)\nWhen was Microsoft established?\tPRINT STEP 2\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (PRINT STEP 2, Find, your operating system) -> PRINT STEP 2 (3263ms)\nWhen was Microsoft established?\tPaul G. Allen Family Foundation\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, paul allen) -> (Paul G. Allen Family Foundation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Paul%20G%2E%20Allen%20Family%20Foundation) -> Paul G. Allen Family Foundation (3262ms)\nWhen was Microsoft established?\tQ = missing article\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (Q = missing article, found in, M. 6th word) -> Q = missing article (3249ms)\nWhen was Microsoft established?\tMore details\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (More details, can be found in, an operating system textbook) -> More details (3251ms)\nWhen was Microsoft established?\tthe instructions\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the instructions, found in, your operating system) -> the instructions (3267ms)\nWhen was Microsoft established?\tfile\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (file, expects to find on, the operating system) -> file (3251ms)\nWhen was Microsoft established?\tprivileged accounts\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (privileged accounts, are found in, every operating system) -> privileged accounts (3246ms)\nWhen was Microsoft established?\tcomputer management\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft management console) -> (computer management, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Management%20Console) -> computer management (3264ms)\nWhen was Microsoft established?\ta normal tool\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (a normal tool, found in, the operating system) -> a normal tool (3258ms)\nWhen was Microsoft established?\tsticky key functionality\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (sticky key functionality, found in, Windows) -> sticky key functionality (3256ms)\nWhen was Microsoft established?\tSoftware Updates\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Software Updates, Find, Windows) -> Software Updates (3260ms)\nWhen was Microsoft established?\tthe registry editors\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the registry editors, found in, Windows) -> the registry editors (3264ms)\nWhen was Microsoft established?\tnot everyone\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (not everyone, will find, the new operating system) -> not everyone (3251ms)\nWhen was Microsoft established?\tOffice 2007\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (Office 2007, found, my way Microsoft outlook) -> Office 2007 (3263ms)\nWhen was Microsoft established?\tthe reader\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the reader, finds, windows) -> the reader (3246ms)\nWhen was Microsoft established?\tthe McDonald \\?s\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the McDonald \\?s, found, windows) -> the McDonald \\?s (3264ms)\nWhen was Microsoft established?\tthe Advanced\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the Advanced, find, window) -> the Advanced (3265ms)\nWhen was Microsoft established?\tSeptember 10 , 2009\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (September 10 , 2009, Find, Window) -> September 10 , 2009 (3260ms)\nWhen was Microsoft established?\tDetails\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Details, can be found in, the operating system) -> Details (3251ms)\nWhen was Microsoft established?\tCompatibility Info\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Compatibility Info, Find out about, our operating system plans) -> Compatibility Info (3266ms)\nWhen was Microsoft established?\tCameronMcintyre i\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (CameronMcintyre i, found, windows) -> CameronMcintyre i (3249ms)\nWhen was Microsoft established?\tthe Recycle Bin\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the Recycle Bin, found in, Windows operating systems) -> the Recycle Bin (3246ms)\nWhen was Microsoft established?\tthe new zero-day bug\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the new zero-day bug, found in, Windows) -> the new zero-day bug (3249ms)\nWhen was Microsoft established?\tcollaboration\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (collaboration, found on, Windows) -> collaboration (3263ms)\nWhen was Microsoft established?\tthe internet\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the internet, you?ll find a huge number of, operating systems) -> the internet (3251ms)\nWhen was Microsoft established?\tidentification\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (identification, found on, this operating system) -> identification (3265ms)\nWhen was Microsoft established?\tthe built-in capabilities\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the built-in capabilities, found in, Windows) -> the built-in capabilities (3266ms)\nWhen was Microsoft established?\tyoull\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (youll, find on, Windows) -> youll (3243ms)\nWhen was Microsoft established?\tclick\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (click, Find, , and then click Using Microsoft Outlook) -> click (3265ms)\nWhen was Microsoft established?\tthe shared libraries\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the shared libraries, are found by, the operating system) -> the shared libraries (3254ms)\nWhen was Microsoft established?\tthe categories\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the categories, found within, Microsoft Outlook) -> the categories (3267ms)\nWhen was Microsoft established?\tmedial yod\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (medial yod, found in, M. 5th word) -> medial yod (3246ms)\nWhen was Microsoft established?\tthe list\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the list, find, Microsoft Outlook Personal Folders Backup) -> the list (3263ms)\nWhen was Microsoft established?\tpowerful pen-based features\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (powerful pen-based features, found in, current operating systems) -> powerful pen-based features (3256ms)\nWhen was Microsoft established?\tyou?ll\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (you?ll, find, Windows) -> you?ll (3260ms)\nWhen was Microsoft established?\tthe security\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the security, found within, the operating system) -> the security (3260ms)\nWhen was Microsoft established?\tthe usual holes\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the usual holes, found in, network operating systems) -> the usual holes (3249ms)\nWhen was Microsoft established?\tThe Ultimate Troubleshooter task\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (The Ultimate Troubleshooter task, found on, Windows) -> The Ultimate Troubleshooter task (3266ms)\nWhen was Microsoft established?\tGrub\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Grub, finds, Windows) -> Grub (3265ms)\nWhen was Microsoft established?\tthe 11,000 Kaspersky\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the 11,000 Kaspersky, found for, Windows) -> the 11,000 Kaspersky (3265ms)\nWhen was Microsoft established?\tFixed\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Fixed, Find Existing, window) -> Fixed (3254ms)\nWhen was Microsoft established?\tThe assessment form\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (The assessment form, can be found as, a MS Word) -> The assessment form (3260ms)\nWhen was Microsoft established?\tthe prep +\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (the prep +, suf found in, M. 1st word) -> the prep + (3256ms)\nWhen was Microsoft established?\tthe most common problems\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the most common problems, found in, a windows operating system) -> the most common problems (3264ms)\nWhen was Microsoft established?\tfeatures\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (features, seldom found even in, larger operating systems) -> features (3258ms)\nWhen was Microsoft established?\tthe plain start menu\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the plain start menu, find in, windows) -> the plain start menu (3263ms)\nWhen was Microsoft established?\tthe temp directory\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the temp directory, found in, all Windows Operating Systems) -> the temp directory (3251ms)\nWhen was Microsoft established?\tSCO\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (SCO, found, their Unix operating system) -> SCO (3260ms)\nWhen was Microsoft established?\tthe trash functionality\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the trash functionality, found in, many operating systems) -> the trash functionality (3263ms)\nWhen was Microsoft established?\tthe walk-through inspection\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the walk-through inspection, found, your HVAC system operating) -> the walk-through inspection (3243ms)\nWhen was Microsoft established?\tthe default CopyDisk utility\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the default CopyDisk utility, found in, Windows) -> the default CopyDisk utility (3260ms)\nWhen was Microsoft established?\tA vulnerability\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft publisher) -> (A vulnerability, has been found in, Microsoft Publisher 2007) -> A vulnerability (3265ms)\nWhen was Microsoft established?\tI?ve\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (I?ve, found, Windows) -> I?ve (3262ms)\nWhen was Microsoft established?\ttext/html Constants\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (text/html Constants, Find, window) -> text/html Constants (3267ms)\nWhen was Microsoft established?\tLive .com ?\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Live .com ?, Find, Windows) -> Live .com ? (3266ms)\nWhen was Microsoft established?\tthe glass\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the glass, found in, windows) -> the glass (3258ms)\nWhen was Microsoft established?\tbraille\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (braille, found in, Windows) -> braille (3263ms)\nWhen was Microsoft established?\tS&T\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (S&T, Find, window) -> S&T (3243ms)\nWhen was Microsoft established?\tconstructs\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (constructs, found in, other multitasking operating systems) -> constructs (3258ms)\nWhen was Microsoft established?\tthe tools\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the tools, are already found with, Microsoft Outlook) -> the tools (3265ms)\nWhen was Microsoft established?\tGuys\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (Guys, found in, Microsoft Outlook 2000) -> Guys (3256ms)\nWhen was Microsoft established?\tthe template\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the template, found at, : Windows) -> the template (3246ms)\nWhen was Microsoft established?\tthe NT4.0 CD\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the NT4.0 CD, fails to find, the operating system) -> the NT4.0 CD (3263ms)\nWhen was Microsoft established?\tscheduling tools\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (scheduling tools, found in, Microsoft Outlook) -> scheduling tools (3265ms)\nWhen was Microsoft established?\tfonts\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (fonts, can be found on, some common operating systems) -> fonts (3246ms)\nWhen was Microsoft established?\tTemplates\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (Templates, can be found below in, MS Word and LaTex) -> Templates (3266ms)\nWhen was Microsoft established?\tthe magnifier\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the magnifier, found under, windows) -> the magnifier (3254ms)\nWhen was Microsoft established?\tThe most common tools\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (The most common tools, found on, most operating systems) -> The most common tools (3256ms)\nWhen was Microsoft established?\tthe new network\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the new network, found, windows) -> the new network (3256ms)\nWhen was Microsoft established?\tthe basic items\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (the basic items, can be found on, the MS Word toolbars) -> the basic items (3246ms)\nWhen was Microsoft established?\tthe same uIP stack\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the same uIP stack, found in, the Contiki operating system) -> the same uIP stack (3262ms)\nWhen was Microsoft established?\tthe vulnerabilities\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the vulnerabilities, found in, Windows) -> the vulnerabilities (3251ms)\nWhen was Microsoft established?\tthe Alt-Tab switcher\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the Alt-Tab switcher, found in, Windows) -> the Alt-Tab switcher (3254ms)\nWhen was Microsoft established?\tfile permissions\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (file permissions, found in, modern operating systems) -> file permissions (3264ms)\nWhen was Microsoft established?\tthe shared library DLL files\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the shared library DLL files, are found by, the operating system) -> the shared library DLL files (3260ms)\nWhen was Microsoft established?\tStunned birds\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Stunned birds, found below, windows) -> Stunned birds (3265ms)\nWhen was Microsoft established?\tthe glitches\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the glitches, found in, Windows) -> the glitches (3243ms)\nWhen was Microsoft established?\tthe underlying messages\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the underlying messages, find, windows) -> the underlying messages (3264ms)\nWhen was Microsoft established?\tprivate Sorry no results\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (private Sorry no results, found for, windows) -> private Sorry no results (3254ms)\nWhen was Microsoft established?\thackers\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (hackers, regularly find holes in, the operating system) -> hackers (3262ms)\nWhen was Microsoft established?\tA second example\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (A second example, can be found in, MS Word macros) -> A second example (3243ms)\nWhen was Microsoft established?\tDelay\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (Delay, found, the Microsoft Outlook PST files) -> Delay (3264ms)\nWhen was Microsoft established?\tAdvertising here & other Viva services\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Advertising here & other Viva services, Find, windows) -> Advertising here & other Viva services (3249ms)\nWhen was Microsoft established?\ta secondary window\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (a secondary window, find, window) -> a secondary window (3262ms)\nWhen was Microsoft established?\tthe addresses\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the addresses, found in, Microsoft Outlook address book) -> the addresses (3260ms)\nWhen was Microsoft established?\tvulnerabilities\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (vulnerabilities, found on, Windows) -> vulnerabilities (3256ms)\nWhen was Microsoft established?\tHanging indent\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (Hanging indent, can be found in, MS Word) -> Hanging indent (3264ms)\nWhen was Microsoft established?\tSuch CMMs\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Such CMMs, are found in, many operating systems) -> Such CMMs (3262ms)\nWhen was Microsoft established?\tWordDiff\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (WordDiff, Find differences in, MS Word documents) -> WordDiff (3249ms)\nWhen was Microsoft established?\tFINALLY\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (FINALLY, found, a solid operating system) -> FINALLY (3243ms)\nWhen was Microsoft established?\tWAVE\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (WAVE, Find, window) -> WAVE (3256ms)\nWhen was Microsoft established?\tmalware\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (malware, has been found in, all popular operating systems) -> malware (3267ms)\nWhen was Microsoft established?\tthe AutoKill\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the AutoKill, Find, Window) -> the AutoKill (3254ms)\nWhen was Microsoft established?\t1 Products\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (1 Products, Find, windows) -> 1 Products (3266ms)\nWhen was Microsoft established?\tdriftwood\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (driftwood, found, windows) -> driftwood (3262ms)\nWhen was Microsoft established?\tconj waw\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (conj waw, found in, M. 5th word) -> conj waw (3260ms)\nWhen was Microsoft established?\tshortcut key combinations\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (shortcut key combinations, found in, many operating systems) -> shortcut key combinations (3249ms)\nWhen was Microsoft established?\tthe Copy\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the Copy, Find, windows) -> the Copy (3265ms)\nWhen was Microsoft established?\tthe viewer\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the viewer, find, window) -> the viewer (3264ms)\nWhen was Microsoft established?\tRemote desktop software\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Remote desktop software, can be found in, most operating systems) -> Remote desktop software (3263ms)\nWhen was Microsoft established?\ttwo critical flaws\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (two critical flaws, found in, the Windows operating system) -> two critical flaws (3262ms)\nWhen was Microsoft established?\tTask\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (Task, Find, the words m?niw and t?yhmi) -> Task (3251ms)\nWhen was Microsoft established?\tthe navigation bar\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the navigation bar, found in, Microsoft Outlook 2003) -> the navigation bar (3249ms)\nWhen was Microsoft established?\tthe editing tools\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (the editing tools, found in, MS Word) -> the editing tools (3258ms)\nWhen was Microsoft established?\tthe Snipping Tool\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the Snipping Tool, found in, Windows) -> the Snipping Tool (3264ms)\nWhen was Microsoft established?\tthe Alt-Tab feature\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the Alt-Tab feature, found in, another operating system) -> the Alt-Tab feature (3260ms)\nWhen was Microsoft established?\tEaster Eggs\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Easter Eggs, found in, the Mac operating system) -> Easter Eggs (3263ms)\nWhen was Microsoft established?\tno parallels\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (no parallels, can find for, building operating systems instances) -> no parallels (3266ms)\nWhen was Microsoft established?\tthe symbolic link feature\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the symbolic link feature, found in, many operating systems) -> the symbolic link feature (3267ms)\nWhen was Microsoft established?\tthe Event Viewer\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the Event Viewer, found in, Windows) -> the Event Viewer (3266ms)\nWhen was Microsoft established?\tPanel\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Panel, Find, Window) -> Panel (3267ms)\nWhen was Microsoft established?\tthe new features\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the new features, found in, Windows) -> the new features (3251ms)\nWhen was Microsoft established?\tno results\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (no results, found for, windows) -> no results (3260ms)\nWhen was Microsoft established?\tSaving Grid Customizations\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Saving Grid Customizations, Find, Windows) -> Saving Grid Customizations (3249ms)\nWhen was Microsoft established?\tthe CPU\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the CPU, has found, the operating system) -> the CPU (3264ms)\nWhen was Microsoft established?\tthe package system\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the package system, found in, many different operating systems) -> the package system (3262ms)\nWhen was Microsoft established?\tsecurity vulnerabilities\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (security vulnerabilities, found in, Microsoft Outlook) -> security vulnerabilities (3251ms)\nWhen was Microsoft established?\tdelete files\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (delete files, may be found in, your operating system) -> delete files (3246ms)\nWhen was Microsoft established?\tthe new conversation view\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the new conversation view, found in, Microsoft Outlook 2010) -> the new conversation view (3243ms)\nWhen was Microsoft established?\tremote code execution flaws\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (remote code execution flaws, found in, Windows) -> remote code execution flaws (3251ms)\nWhen was Microsoft established?\tOMG specifications\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (OMG specifications, can be found on, many operating systems) -> OMG specifications (3263ms)\nWhen was Microsoft established?\tOne variant\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (One variant, finds, windows) -> One variant (3243ms)\nWhen was Microsoft established?\tThe X Window\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (The X Window, can be found on, the Linux Operating System) -> The X Window (3265ms)\nWhen was Microsoft established?\tPrism\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Prism, can be found for, every operating system) -> Prism (3266ms)\nWhen was Microsoft established?\tNetAction\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (NetAction, found, the Windows operating system) -> NetAction (3258ms)\nWhen was Microsoft established?\tthe same desktop experience\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the same desktop experience, found on, other operating systems) -> the same desktop experience (3258ms)\nWhen was Microsoft established?\tthe rich feature\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the rich feature, sets found in, large operating systems) -> the rich feature (3256ms)\nWhen was Microsoft established?\tStep 2\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Step 2, Find, your operating system) -> Step 2 (3265ms)\nWhen was Microsoft established?\tNayim\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, paul allen) -> (Nayim, found, Paul Allen) -> Nayim (3251ms)\nWhen was Microsoft established?\tbasic statistical tools\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms excel) -> (basic statistical tools, found in, MS Excel) -> basic statistical tools (3254ms)\nWhen was Microsoft established?\tthe Track Changes tool\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms word) -> (the Track Changes tool, can be found at, Use MS Word) -> the Track Changes tool (3258ms)\nWhen was Microsoft established?\tthe same VBA IDE\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, ms excel) -> (the same VBA IDE, is found in, MS Excel) -> the same VBA IDE (3256ms)\nWhen was Microsoft established?\tcommunications programs\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (communications programs, found on, other operating systems) -> communications programs (3254ms)\nWhen was Microsoft established?\tboxes\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (boxes, found Notes On, Data Base Operating Systems) -> boxes (3246ms)\nWhen was Microsoft established?\tthe fill patterns\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the fill patterns, found in, Windows) -> the fill patterns (3263ms)\nWhen was Microsoft established?\tthe standard desktop\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the standard desktop, found in, Windows) -> the standard desktop (3243ms)\nWhen was Microsoft established?\tthe timezone setting\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the timezone setting, finds in, the operating system) -> the timezone setting (3264ms)\nWhen was Microsoft established?\tthe focus\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (the focus, to find, window) -> the focus (3267ms)\nWhen was Microsoft established?\topen the '\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (open the ', Find, Window) -> open the ' (3265ms)\nWhen was Microsoft established?\tParker\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (Parker, found, the operating system) -> Parker (3254ms)\nWhen was Microsoft established?\tan application\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (an application, found on, another operating system) -> an application (3258ms)\nWhen was Microsoft established?\tthe command line utils\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, operate system) -> (the command line utils, found under, GNU Operating system) -> the command line utils (3249ms)\nWhen was Microsoft established?\tYoung children\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Young children, find, window) -> Young children (3265ms)\nWhen was Microsoft established?\tWindows Hunter\t0.333333333333\tWhen was Microsoft established? -> $x: ($x, find, windows) -> (Windows Hunter, allows finding, windows) -> Windows Hunter (3263ms)\nWhere was Shakespeare born?\tThe town\t0.999999999995\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (3748ms)\nWhere was Shakespeare born?\tStratford\t0.999999999995\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford, is the birthplace of, William Shakespeare) -> Stratford (3748ms)\nWhere was Shakespeare born?\tStratford-upon-Avon\t0.999999999995\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford-upon-Avon, is the birthplace of, William Shakespeare) -> Stratford-upon-Avon (3747ms)\nWhere was Shakespeare born?\tStratford upon Avon\t0.999999999995\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford upon Avon, is the birthplace of, William Shakespeare) -> Stratford upon Avon (3748ms)\nWhere was Shakespeare born?\tWhat town\t0.999999999995\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (3747ms)\nWhere was Shakespeare born?\tAvon\t0.999999999995\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Avon, is the birthplace of, William Shakespeare) -> Avon (3748ms)\nWhere was Shakespeare born?\tthe same city\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the same city) -> the same city (4167ms)\nWhere was Shakespeare born?\tEngland four hundred years\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, England four hundred years) -> England four hundred years (3922ms)\nWhere was Shakespeare born?\tEngland\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, England) -> England (4378ms)\nWhere was Shakespeare born?\tApril , 1564\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (4312ms)\nWhere was Shakespeare born?\tthe depths\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (3825ms)\nWhere was Shakespeare born?\tLondon\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> ('s Southwark William Shakespeare, lived in, London) -> London (3825ms)\nWhere was Shakespeare born?\ta time\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, also lived in, a time) -> a time (4567ms)\nWhere was Shakespeare born?\tthe year\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, the year) -> the year (4378ms)\nWhere was Shakespeare born?\tthe epoch\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the epoch) -> the epoch (4313ms)\nWhere was Shakespeare born?\tApril 1564\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, April 1564) -> April 1564 (4378ms)\nWhere was Shakespeare born?\tlate April 1564\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (3825ms)\nWhere was Shakespeare born?\tStratford-on-Avon\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (4168ms)\nWhere was Shakespeare born?\tStratford and today\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (4167ms)\nWhere was Shakespeare born?\t1564\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (THE PLAY William Shakespeare, was born in, 1564) -> 1564 (4567ms)\nWhere was Shakespeare born?\tthe town\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, the town) -> the town (4567ms)\nWhere was Shakespeare born?\tthe county of Warwick\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (3922ms)\nWhere was Shakespeare born?\tApril\t0.888888888885\tWhere was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, April) -> April (4167ms)\nWhere was Shakespeare born?\tSt . Austell\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (8723ms)\nWhere was Shakespeare born?\tKingston\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (8667ms)\nWhere was Shakespeare born?\tsuch a nasty 'ouse\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, such a nasty 'ouse) -> such a nasty 'ouse (8583ms)\nWhere was Shakespeare born?\t1529\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (8583ms)\nWhere was Shakespeare born?\t1616\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, 1616) -> 1616 (8639ms)\nWhere was Shakespeare born?\tthe village\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, the village) -> the village (8667ms)\nWhere was Shakespeare born?\tLondon writing\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, London writing) -> London writing (8777ms)\nWhere was Shakespeare born?\tsuch a time\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, did live in, such a time) -> such a time (8750ms)\nWhere was Shakespeare born?\tthe present day\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (shakespeare, lived in, the present day) -> the present day (8777ms)\nWhere was Shakespeare born?\tthe parish\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in, the parish) -> the parish (8804ms)\nWhere was Shakespeare born?\tan era\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an era) -> an era (8583ms)\nWhere was Shakespeare born?\t1564 ! 5 hours ago\t0.666666666664\tWhere was Shakespeare born? -> $x: (william shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (8640ms)\nWhere was Shakespeare born?\ta very turbulent time\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a very turbulent time) -> a very turbulent time (8640ms)\nWhere was Shakespeare born?\tTeaneck\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (8723ms)\nWhere was Shakespeare born?\thigh schools\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, is living today?in, high schools) -> high schools (8667ms)\nWhere was Shakespeare born?\tWorcester\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (8777ms)\nWhere was Shakespeare born?\tthe same year\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (8804ms)\nWhere was Shakespeare born?\t1564 ! 1 hour ago\t0.666666666664\tWhere was Shakespeare born? -> $x: (william shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (8612ms)\nWhere was Shakespeare born?\tHenley Street\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (the Shakespeares, were living in, Henley Street) -> Henley Street (8777ms)\nWhere was Shakespeare born?\ta world\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (?Shakespeare, lived in, a world) -> a world (8583ms)\nWhere was Shakespeare born?\t1554\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (8695ms)\nWhere was Shakespeare born?\tItaly\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, Italy) -> Italy (8695ms)\nWhere was Shakespeare born?\ta theatre\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (10 professionally-produced Shakespeare plays, live in, a theatre) -> a theatre (8639ms)\nWhere was Shakespeare born?\tthe Warwickshire town\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (8612ms)\nWhere was Shakespeare born?\tthe overwhelming fascination\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in was, the overwhelming fascination) -> the overwhelming fascination (8723ms)\nWhere was Shakespeare born?\tBuenos Aires\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Nicholas Shakespeare, lived in, Buenos Aires) -> Buenos Aires (8538ms)\nWhere was Shakespeare born?\tthe countryside\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s day, lived in, the countryside) -> the countryside (8723ms)\nWhere was Shakespeare born?\ttheater\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s Play, live in, theater) -> theater (8804ms)\nWhere was Shakespeare born?\tan absolutist world\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an absolutist world) -> an absolutist world (8777ms)\nWhere was Shakespeare born?\tApril and World book day\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (8723ms)\nWhere was Shakespeare born?\tan age\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an age) -> an age (8804ms)\nWhere was Shakespeare born?\ta tiny house\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a tiny house) -> a tiny house (8667ms)\nWhere was Shakespeare born?\ta small town\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, a small town) -> a small town (8667ms)\nWhere was Shakespeare born?\tLancashire\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, may have lived in, Lancashire) -> Lancashire (8723ms)\nWhere was Shakespeare born?\t1564 ! 2\t0.666666666664\tWhere was Shakespeare born? -> $x: (william shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (8777ms)\nWhere was Shakespeare born?\tTudor England\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, Tudor England) -> Tudor England (8750ms)\nWhere was Shakespeare born?\tretirement\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, retirement) -> retirement (8831ms)\nWhere was Shakespeare born?\tthe latter half\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (8695ms)\nWhere was Shakespeare born?\tthe streets\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (this Shakespeare, lived in, the streets) -> the streets (8695ms)\nWhere was Shakespeare born?\tJackson\t0.666666666664\tWhere was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (8640ms)\nWhere was Shakespeare born?\t1564 ! 3 hours ago\t0.666666666664\tWhere was Shakespeare born? -> $x: (william shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (8639ms)\nWhere was Shakespeare born?\tAprill\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, Aprill) -> Aprill (9011ms)\nWhere was Shakespeare born?\tthe best piece of writing\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the best piece of writing, done by, William Shakespeare , Hamlet) -> the best piece of writing (9011ms)\nWhere was Shakespeare born?\t26 April 1564\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (William Shakespeare, was born on, 26 April 1564) -> 26 April 1564 (9011ms)\nWhere was Shakespeare born?\tApril 23 , 1564\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (His Times William Shakespeare, was born on, April 23 , 1564) -> April 23 , 1564 (9061ms)\nWhere was Shakespeare born?\tthe 5th floor\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the 5th floor, do a search for, \" William Shakespeare) -> the 5th floor (9011ms)\nWhere was Shakespeare born?\tApril 23 , 1616\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, April 23 , 1616) -> April 23 , 1616 (9036ms)\nWhere was Shakespeare born?\tMarkey\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Markey, does, William Shakespeare) -> Markey (9011ms)\nWhere was Shakespeare born?\tOct. 28\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Oct. 28, Did, William Shakespeare) -> Oct. 28 (9011ms)\nWhere was Shakespeare born?\tApril 1616\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, April 1616) -> April 1616 (9036ms)\nWhere was Shakespeare born?\tJulius Caesar\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Julius Caesar, does bring to, mind William Shakespeare) -> Julius Caesar (9061ms)\nWhere was Shakespeare born?\trel=shortlink\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (rel=shortlink, does, the name ?William Shakespeare ?) -> rel=shortlink (9036ms)\nWhere was Shakespeare born?\tplaywrights\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (playwrights, does, the name William Shakespeare ring) -> playwrights (9036ms)\nWhere was Shakespeare born?\t23 April 1616\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, 23 April 1616) -> 23 April 1616 (9061ms)\nWhere was Shakespeare born?\tApril 23\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (( William Shakespeare, was born on, April 23) -> April 23 (9061ms)\nWhere was Shakespeare born?\tFavourite poet or writer\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Favourite poet or writer, Does, William Shakespeare count) -> Favourite poet or writer (9011ms)\nWhere was Shakespeare born?\tvz-nostalgia\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (vz-nostalgia, so did, William Shakespeare) -> vz-nostalgia (9037ms)\nWhere was Shakespeare born?\tthe shocking question\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the shocking question, Did, William Shakespeare) -> the shocking question (8986ms)\nWhere was Shakespeare born?\tthe qoutes\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the qoutes, are done by, William Shakespeare) -> the qoutes (9037ms)\nWhere was Shakespeare born?\tbattle\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, battle) -> battle (8986ms)\nWhere was Shakespeare born?\tErin\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Erin, does, William Shakespeare) -> Erin (9036ms)\nWhere was Shakespeare born?\t23 April 1564\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (William Shakespeare, was born on, 23 April 1564) -> 23 April 1564 (9061ms)\nWhere was Shakespeare born?\tthe 26th\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (William Shakespeare, was born on, the 26th) -> the 26th (8986ms)\nWhere was Shakespeare born?\tMark Antony\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Mark Antony, did in, William Shakespeare?s Julius Caesar) -> Mark Antony (9011ms)\nWhere was Shakespeare born?\ta 23... dead\t0.555555555553\tWhere was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (William Shakespeare, was born on, a 23... dead) -> a 23... dead (8986ms)\nWhere was Shakespeare born?\tthe film ?Miguel & William? Press / EP\t0.555555555553\tWhere was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the film ?Miguel & William? Press / EP, Did, William Shakespeare) -> the film ?Miguel & William? Press / EP (9037ms)\nWhere was Shakespeare born?\tThe house\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (The house, was the birthplace of, Bishop William Morgan) -> The house (9224ms)\nWhere was Shakespeare born?\tThe estate\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (The estate, is also the birthplace of, William Henry Harrison) -> The estate (9243ms)\nWhere was Shakespeare born?\tThe castle\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (The castle, was the birthplace of, Sir William Alexander) -> The castle (9224ms)\nWhere was Shakespeare born?\tHull\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Hull, is the birthplace of, William Wilberforce) -> Hull (9300ms)\nWhere was Shakespeare born?\tthe Norfolk Inn\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (the Norfolk Inn, was the birthplace of, Dr. William H. Welch) -> the Norfolk Inn (9205ms)\nWhere was Shakespeare born?\tMill Place\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Mill Place, was the birthplace of, William Adams) -> Mill Place (9281ms)\nWhere was Shakespeare born?\tT? Mawr\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (T? Mawr, was the birthplace of, Bishop William Morgan) -> T? Mawr (9205ms)\nWhere was Shakespeare born?\tSampson County\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Sampson County, is the birthplace of, William R. King) -> Sampson County (9243ms)\nWhere was Shakespeare born?\thome\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (home, is the birthplace of, William Rainey Harper) -> home (9263ms)\nWhere was Shakespeare born?\tPendeen House\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Pendeen House, was the birthplace of, William Borlase) -> Pendeen House (9262ms)\nWhere was Shakespeare born?\tMuch Wenlock\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Much Wenlock, is the birthplace of, William Penny Brookes) -> Much Wenlock (9243ms)\nWhere was Shakespeare born?\tFalaise\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Falaise, was the birthplace of, William) -> Falaise (9300ms)\nWhere was Shakespeare born?\tBetws-y-Coed\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Betws-y-Coed, was the birthplace of, Bishop William Morgan) -> Betws-y-Coed (9205ms)\nWhere was Shakespeare born?\tCockermouth\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Cockermouth, is the birthplace of, the poet William Wordsworth) -> Cockermouth (9263ms)\nWhere was Shakespeare born?\tCoweta\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Coweta, was the birthplace of, William McIntosh) -> Coweta (9224ms)\nWhere was Shakespeare born?\tEllerslie\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Ellerslie, is a possible birthplace of, William Wallace) -> Ellerslie (9185ms)\nWhere was Shakespeare born?\tT? Mawr Wybrnant\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (T? Mawr Wybrnant, was the birthplace of, Bishop William Morgan) -> T? Mawr Wybrnant (9205ms)\nWhere was Shakespeare born?\ta branch\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (a branch, was the birthplace of, Sir William Alexander) -> a branch (9185ms)\nWhere was Shakespeare born?\tWarren\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Warren, is also the birthplace of, President William McKinley) -> Warren (9300ms)\nWhere was Shakespeare born?\tSalem\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Salem, is the birthplace of, William Jennings Bryan) -> Salem (9281ms)\nWhere was Shakespeare born?\tThe Hall\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (The Hall, is the birthplace of, William Wycherley) -> The Hall (9185ms)\nWhere was Shakespeare born?\tDown Ampney\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Down Ampney, was the birthplace of, Ralph Vaughan Williams) -> Down Ampney (9281ms)\nWhere was Shakespeare born?\tthe western outskirts\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (the western outskirts, was the birthplace of, Sir William Smith) -> the western outskirts (9205ms)\nWhere was Shakespeare born?\tMacedonia\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Macedonia, was the birthplace of, William N. Economou) -> Macedonia (9224ms)\nWhere was Shakespeare born?\tOhio\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Ohio, is the birthplace of, General William Tecumseh Sherman) -> Ohio (9224ms)\nWhere was Shakespeare born?\tthe country\t0.444444444442\tWhere was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (the country, was the birthplace of, theater great Bert Williams) -> the country (9205ms)\nWhere was Shakespeare born?\t1830\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1830) -> 1830 (9705ms)\nWhere was Shakespeare born?\tCharlottesville\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, has lived in, Charlottesville) -> Charlottesville (9427ms)\nWhere was Shakespeare born?\t1789\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1789) -> 1789 (9610ms)\nWhere was Shakespeare born?\t1840\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1840) -> 1840 (9409ms)\nWhere was Shakespeare born?\t1852\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, being born in, 1852) -> 1852 (9337ms)\nWhere was Shakespeare born?\tGeoffrey Boycott\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Geoffrey Boycott, do, Shakespeare) -> Geoffrey Boycott (9355ms)\nWhere was Shakespeare born?\tBlairstown Township\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Blairstown Township) -> Blairstown Township (9644ms)\nWhere was Shakespeare born?\tcourse\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (course, did, Shakespeare) -> course (9720ms)\nWhere was Shakespeare born?\tMissouri\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Missouri) -> Missouri (9705ms)\nWhere was Shakespeare born?\t1765\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1765) -> 1765 (9337ms)\nWhere was Shakespeare born?\tHanslape\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Hanslape) -> Hanslape (9461ms)\nWhere was Shakespeare born?\t1847\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1847) -> 1847 (9391ms)\nWhere was Shakespeare born?\t1585\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1585) -> 1585 (9373ms)\nWhere was Shakespeare born?\tDummer Twp.\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dummer Twp.) -> Dummer Twp. (9546ms)\nWhere was Shakespeare born?\tNobody\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Nobody, does, Shakespeare) -> Nobody (9478ms)\nWhere was Shakespeare born?\tDr. Seuss\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Dr. Seuss, Does, Shakespeare) -> Dr. Seuss (9644ms)\nWhere was Shakespeare born?\t23rd April\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, 23rd April) -> 23rd April (9529ms)\nWhere was Shakespeare born?\t1875\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1875) -> 1875 (9319ms)\nWhere was Shakespeare born?\tGoogle\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Google, Does, Shakespeare Shakespeare) -> Google (9644ms)\nWhere was Shakespeare born?\tPalm Coast\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Palm Coast) -> Palm Coast (9355ms)\nWhere was Shakespeare born?\tParis\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Paris) -> Paris (9578ms)\nWhere was Shakespeare born?\tEagle Township\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Eagle Township) -> Eagle Township (9546ms)\nWhere was Shakespeare born?\tJUST A DREAM\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (JUST A DREAM, do, Shakespeare) -> JUST A DREAM (9512ms)\nWhere was Shakespeare born?\tWales\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Wales) -> Wales (9690ms)\nWhere was Shakespeare born?\tSt George?s day\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, St George?s day) -> St George?s day (9529ms)\nWhere was Shakespeare born?\tIsleworth\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Isleworth) -> Isleworth (9478ms)\nWhere was Shakespeare born?\t1915\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1915) -> 1915 (9545ms)\nWhere was Shakespeare born?\tthe contemporary student\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the contemporary student, did, Shakespeare) -> the contemporary student (9562ms)\nWhere was Shakespeare born?\tThe second puzzle is,--Why\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The second puzzle is,--Why, did, Shakespeare) -> The second puzzle is,--Why (9705ms)\nWhere was Shakespeare born?\tHawaii\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Hawaii) -> Hawaii (9355ms)\nWhere was Shakespeare born?\t1833\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1833) -> 1833 (9690ms)\nWhere was Shakespeare born?\tApril 2003 , four months\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mrs. Shakespeare, died in, April 2003 , four months) -> April 2003 , four months (9705ms)\nWhere was Shakespeare born?\t1864\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1864) -> 1864 (9478ms)\nWhere was Shakespeare born?\tMercer County\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Mercer County) -> Mercer County (9461ms)\nWhere was Shakespeare born?\t1804\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1804) -> 1804 (9578ms)\nWhere was Shakespeare born?\tGreenwood?s legal arguments\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, had a bearing on, Greenwood?s legal arguments) -> Greenwood?s legal arguments (9660ms)\nWhere was Shakespeare born?\tDenver\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Denver) -> Denver (9427ms)\nWhere was Shakespeare born?\tthe Americans\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the Americans, do, Shakespeare) -> the Americans (9373ms)\nWhere was Shakespeare born?\ta flat\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, a flat) -> a flat (9720ms)\nWhere was Shakespeare born?\tIsrael\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Israel) -> Israel (9675ms)\nWhere was Shakespeare born?\t1787\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1787) -> 1787 (9478ms)\nWhere was Shakespeare born?\tthe question\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the question, do, Shakespeare) -> the question (9626ms)\nWhere was Shakespeare born?\tIt?s bad science\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (It?s bad science, did, Shakespeare) -> It?s bad science (9675ms)\nWhere was Shakespeare born?\tKansas City\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Kansas City) -> Kansas City (9720ms)\nWhere was Shakespeare born?\tthe past\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, the past) -> the past (9512ms)\nWhere was Shakespeare born?\t23 April\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, 23 April) -> 23 April (9660ms)\nWhere was Shakespeare born?\tBoston\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Boston) -> Boston (9626ms)\nWhere was Shakespeare born?\tMiss\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (william, was born in, Miss) -> Miss (9461ms)\nWhere was Shakespeare born?\tthe new house\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the new house) -> the new house (9690ms)\nWhere was Shakespeare born?\tNew Jersey\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, New Jersey) -> New Jersey (9512ms)\nWhere was Shakespeare born?\tthe companies\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the companies, do, Shakespeare) -> the companies (9427ms)\nWhere was Shakespeare born?\tany\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (any, did, Shakespeare) -> any (9337ms)\nWhere was Shakespeare born?\tactors\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (actors, could do, Shakespeare) -> actors (9578ms)\nWhere was Shakespeare born?\tMadge\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Madge, Does, Shakespeare) -> Madge (9675ms)\nWhere was Shakespeare born?\tthe reign\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the reign) -> the reign (9610ms)\nWhere was Shakespeare born?\tthe end\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare?s tragedies main characters, die in, the end) -> the end (9529ms)\nWhere was Shakespeare born?\tGoethe\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Goethe, so did, Shakespeare) -> Goethe (9337ms)\nWhere was Shakespeare born?\tBrits\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Brits, do, Shakespeare) -> Brits (9373ms)\nWhere was Shakespeare born?\tyoure\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (youre, doing, Shakespeare) -> youre (9355ms)\nWhere was Shakespeare born?\ta house\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house) -> a house (9373ms)\nWhere was Shakespeare born?\t1601\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (John Shakespeare, died in, 1601) -> 1601 (9705ms)\nWhere was Shakespeare born?\tBelfast City\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Belfast City) -> Belfast City (9444ms)\nWhere was Shakespeare born?\tBrooklyn\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Brooklyn) -> Brooklyn (9461ms)\nWhere was Shakespeare born?\tEngland ? '\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (WIlliam, live in, England ? ') -> England ? ' (9444ms)\nWhere was Shakespeare born?\tScaly Mountain\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Scaly Mountain) -> Scaly Mountain (9444ms)\nWhere was Shakespeare born?\tNorwich\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Norwich) -> Norwich (9705ms)\nWhere was Shakespeare born?\tEd Westwick\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ed Westwick, do, Shakespeare) -> Ed Westwick (9444ms)\nWhere was Shakespeare born?\t1893\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1893) -> 1893 (9545ms)\nWhere was Shakespeare born?\t1728\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1728) -> 1728 (9337ms)\nWhere was Shakespeare born?\tNorth Carolina\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, North Carolina) -> North Carolina (9529ms)\nWhere was Shakespeare born?\t1795\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1795) -> 1795 (9644ms)\nWhere was Shakespeare born?\tthe same day\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same day) -> the same day (9720ms)\nWhere was Shakespeare born?\t1892\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1892) -> 1892 (9337ms)\nWhere was Shakespeare born?\tBranagh\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Branagh, doing, Shakespeare) -> Branagh (9461ms)\nWhere was Shakespeare born?\tDublin\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dublin) -> Dublin (9562ms)\nWhere was Shakespeare born?\tNew York\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, New York) -> New York (9626ms)\nWhere was Shakespeare born?\tPatrick Stewart\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Patrick Stewart, do, Shakespeare) -> Patrick Stewart (9529ms)\nWhere was Shakespeare born?\tFairfield village\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fairfield village) -> Fairfield village (9337ms)\nWhere was Shakespeare born?\tMark Twain\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Mark Twain, did for, Shakespeare) -> Mark Twain (9495ms)\nWhere was Shakespeare born?\tmuch more minute accuracy\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (much more minute accuracy, do, Shakespeare) -> much more minute accuracy (9545ms)\nWhere was Shakespeare born?\t1620\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1620) -> 1620 (9690ms)\nWhere was Shakespeare born?\tthe homestead\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the homestead) -> the homestead (9562ms)\nWhere was Shakespeare born?\tFauquier and Loudon counties\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fauquier and Loudon counties) -> Fauquier and Loudon counties (9578ms)\nWhere was Shakespeare born?\t1896\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1896) -> 1896 (9626ms)\nWhere was Shakespeare born?\tM.S.\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (M.S., did, Shakespeare) -> M.S. (9690ms)\nWhere was Shakespeare born?\tWood Co.\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Wood Co.) -> Wood Co. (9660ms)\nWhere was Shakespeare born?\tGraig Terrace\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William Williams, lived in, Graig Terrace) -> Graig Terrace (9705ms)\nWhere was Shakespeare born?\t1825\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1825) -> 1825 (9626ms)\nWhere was Shakespeare born?\t1822\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1822) -> 1822 (9409ms)\nWhere was Shakespeare born?\tthe Town\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Town) -> the Town (9409ms)\nWhere was Shakespeare born?\t1599\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1599) -> 1599 (9529ms)\nWhere was Shakespeare born?\tEdinburgh\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Edinburgh) -> Edinburgh (9690ms)\nWhere was Shakespeare born?\ttwo very different worlds\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, two very different worlds) -> two very different worlds (9562ms)\nWhere was Shakespeare born?\t1836\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1836) -> 1836 (9562ms)\nWhere was Shakespeare born?\tJefferson\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Jefferson) -> Jefferson (9610ms)\nWhere was Shakespeare born?\tCarland\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Carland) -> Carland (9373ms)\nWhere was Shakespeare born?\tRick Miller\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Rick Miller, does, Shakespeare) -> Rick Miller (9675ms)\nWhere was Shakespeare born?\t1818\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1818) -> 1818 (9720ms)\nWhere was Shakespeare born?\tBacon\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Bacon, did write, Shakespeare) -> Bacon (9355ms)\nWhere was Shakespeare born?\tWake Forest\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Wake Forest) -> Wake Forest (9478ms)\nWhere was Shakespeare born?\tchildhood\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (the Shakespeare household?three, died in, childhood) -> childhood (9690ms)\nWhere was Shakespeare born?\tGer\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ger, does, Shakespeare) -> Ger (9478ms)\nWhere was Shakespeare born?\torleans\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in the city, orleans) -> orleans (9545ms)\nWhere was Shakespeare born?\tthe famous Glastonbury Abbey\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the famous Glastonbury Abbey) -> the famous Glastonbury Abbey (9337ms)\nWhere was Shakespeare born?\tUtah\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Utah) -> Utah (9578ms)\nWhere was Shakespeare born?\tfamous actors\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (famous actors, do, Shakespeare) -> famous actors (9373ms)\nWhere was Shakespeare born?\tthe rest\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the rest, Did, Shakespeare) -> the rest (9675ms)\nWhere was Shakespeare born?\tthe home\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the home) -> the home (9690ms)\nWhere was Shakespeare born?\t1770\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1770) -> 1770 (9355ms)\nWhere was Shakespeare born?\tPrimadonna\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Primadonna, Does, Shakespeare) -> Primadonna (9610ms)\nWhere was Shakespeare born?\tThe first point\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The first point, Did, Shakespeare) -> The first point (9660ms)\nWhere was Shakespeare born?\tNovember 5 , 2011\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (November 5 , 2011, Did, Shakespeare) -> November 5 , 2011 (9720ms)\nWhere was Shakespeare born?\tMitre Lane\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Mitre Lane) -> Mitre Lane (9512ms)\nWhere was Shakespeare born?\t1817\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1817) -> 1817 (9373ms)\nWhere was Shakespeare born?\tSan Jose\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, San Jose) -> San Jose (9594ms)\nWhere was Shakespeare born?\tAla\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Ala) -> Ala (9461ms)\nWhere was Shakespeare born?\tNot until 1845\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Not until 1845, did, Shakespeare) -> Not until 1845 (9675ms)\nWhere was Shakespeare born?\tTouching\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Touching, did, Shakespeare) -> Touching (9495ms)\nWhere was Shakespeare born?\teach year\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (each year, only did, Shakespeare) -> each year (9512ms)\nWhere was Shakespeare born?\t1596\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1596) -> 1596 (9720ms)\nWhere was Shakespeare born?\tinfancy\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare Quiney, died in, infancy) -> infancy (9444ms)\nWhere was Shakespeare born?\tthe Ages\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the Ages, do, Shakespeare) -> the Ages (9675ms)\nWhere was Shakespeare born?\tU City\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, U City) -> U City (9427ms)\nWhere was Shakespeare born?\tElmley Castle\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Elmley Castle) -> Elmley Castle (9578ms)\nWhere was Shakespeare born?\tjust an entertaining play\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (just an entertaining play, did, Shakespeare) -> just an entertaining play (9529ms)\nWhere was Shakespeare born?\t1.2\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (1.2, does, Shakespeare) -> 1.2 (9529ms)\nWhere was Shakespeare born?\tColeridge\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Coleridge, did, Shakespeare) -> Coleridge (9391ms)\nWhere was Shakespeare born?\tThe play\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The play, as do, Shakespeare) -> The play (9578ms)\nWhere was Shakespeare born?\tthe very same day\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the very same day) -> the very same day (9594ms)\nWhere was Shakespeare born?\t1608\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mary Shakespeare, died in, 1608) -> 1608 (9495ms)\nWhere was Shakespeare born?\tSunday\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was indeed born on, Sunday) -> Sunday (9594ms)\nWhere was Shakespeare born?\t1931\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1931) -> 1931 (9594ms)\nWhere was Shakespeare born?\tAlbany\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Albany) -> Albany (9660ms)\nWhere was Shakespeare born?\tTexas\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (WILLIAMS, lived in, Texas) -> Texas (9478ms)\nWhere was Shakespeare born?\t1880\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1880) -> 1880 (9578ms)\nWhere was Shakespeare born?\tA DREAM\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (A DREAM, do, Shakespeare) -> A DREAM (9461ms)\nWhere was Shakespeare born?\tAmerica\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living in, America) -> America (9495ms)\nWhere was Shakespeare born?\tTwo 16 year old girls\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Two 16 year old girls, did, Shakespeare) -> Two 16 year old girls (9690ms)\nWhere was Shakespeare born?\ta more dramatic and poetic form\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a more dramatic and poetic form, did, Shakespeare) -> a more dramatic and poetic form (9391ms)\nWhere was Shakespeare born?\twere\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (were, doing, Shakespeare) -> were (9562ms)\nWhere was Shakespeare born?\t1937\t0.333333333332\tWhere was Shakespeare born? -> $x: (prose, be bear in in, $x) -> (Prose Alain Labrousse, was born in, 1937) -> 1937 (9690ms)\nWhere was Shakespeare born?\t1790\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1790) -> 1790 (9529ms)\nWhere was Shakespeare born?\thes\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (hes, done, Shakespeare) -> hes (9545ms)\nWhere was Shakespeare born?\tHungary\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Hungary) -> Hungary (9644ms)\nWhere was Shakespeare born?\tKaramazov Brothers\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Karamazov Brothers, do, Shakespeare) -> Karamazov Brothers (9319ms)\nWhere was Shakespeare born?\tOrange County\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Orange County) -> Orange County (9644ms)\nWhere was Shakespeare born?\tCambridge\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Cambridge) -> Cambridge (9529ms)\nWhere was Shakespeare born?\t1824\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1824) -> 1824 (9319ms)\nWhere was Shakespeare born?\t1831\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1831) -> 1831 (9626ms)\nWhere was Shakespeare born?\tCincinnati\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Cincinnati) -> Cincinnati (9391ms)\nWhere was Shakespeare born?\tAsk\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ask, does, Shakespeare) -> Ask (9675ms)\nWhere was Shakespeare born?\t1794\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1794) -> 1794 (9675ms)\nWhere was Shakespeare born?\t1841\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1841) -> 1841 (9660ms)\nWhere was Shakespeare born?\tLexington\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lexington) -> Lexington (9461ms)\nWhere was Shakespeare born?\tProfessor Dowden\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Professor Dowden, did, Shakespeare) -> Professor Dowden (9660ms)\nWhere was Shakespeare born?\tChicago\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Chicago) -> Chicago (9705ms)\nWhere was Shakespeare born?\tHes\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Hes, done, Shakespeare) -> Hes (9409ms)\nWhere was Shakespeare born?\tDerby\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Derby) -> Derby (9427ms)\nWhere was Shakespeare born?\tIllinois\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Illinois) -> Illinois (9690ms)\nWhere was Shakespeare born?\tthe months\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the months) -> the months (9594ms)\nWhere was Shakespeare born?\t1842\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1842) -> 1842 (9644ms)\nWhere was Shakespeare born?\tTucson\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Tucson) -> Tucson (9675ms)\nWhere was Shakespeare born?\tImpressionist\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Impressionist, Does, Shakespeare) -> Impressionist (9578ms)\nWhere was Shakespeare born?\tthe province\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the province) -> the province (9705ms)\nWhere was Shakespeare born?\ta balcony\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a balcony, could do, Shakespeare) -> a balcony (9409ms)\nWhere was Shakespeare born?\tNew York City\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, New York City) -> New York City (9478ms)\nWhere was Shakespeare born?\t1881\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living In, 1881) -> 1881 (9529ms)\nWhere was Shakespeare born?\tliterature?s great mysteries ?\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (literature?s great mysteries ?, did, Shakespeare) -> literature?s great mysteries ? (9373ms)\nWhere was Shakespeare born?\tCuba and China\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Cuba and China) -> Cuba and China (9626ms)\nWhere was Shakespeare born?\tTessa\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Tessa, Does, Shakespeare) -> Tessa (9319ms)\nWhere was Shakespeare born?\tLiverpool\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Liverpool) -> Liverpool (9610ms)\nWhere was Shakespeare born?\tGeyserville\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Geyserville) -> Geyserville (9495ms)\nWhere was Shakespeare born?\tMadison\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Madison) -> Madison (9594ms)\nWhere was Shakespeare born?\tUK Company Propeller\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (UK Company Propeller, does, Shakespeare) -> UK Company Propeller (9478ms)\nWhere was Shakespeare born?\tcritics or scholars\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (critics or scholars, did, Shakespeare) -> critics or scholars (9391ms)\nWhere was Shakespeare born?\tLycoming County\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Lycoming County) -> Lycoming County (9409ms)\nWhere was Shakespeare born?\tConnecticut\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Connecticut) -> Connecticut (9478ms)\nWhere was Shakespeare born?\tyoung people\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (young people, to Do, Shakespeare) -> young people (9626ms)\nWhere was Shakespeare born?\tSan Diego\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, San Diego) -> San Diego (9675ms)\nWhere was Shakespeare born?\tHow many plays\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (How many plays, did write, Shakespeare) -> How many plays (9355ms)\nWhere was Shakespeare born?\tOlivier\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Olivier, did, Shakespeare) -> Olivier (9391ms)\nWhere was Shakespeare born?\tColumbus\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Columbus) -> Columbus (9675ms)\nWhere was Shakespeare born?\t1872\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1872) -> 1872 (9427ms)\nWhere was Shakespeare born?\tduty\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (duty, did, Shakespeare) -> duty (9578ms)\nWhere was Shakespeare born?\tMichigan\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living in, Michigan) -> Michigan (9594ms)\nWhere was Shakespeare born?\tAlabama\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Alabama) -> Alabama (9355ms)\nWhere was Shakespeare born?\tApril 26\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, April 26) -> April 26 (9319ms)\nWhere was Shakespeare born?\tCalifornia\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, California) -> California (9461ms)\nWhere was Shakespeare born?\tPennsylvania\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Pennsylvania) -> Pennsylvania (9626ms)\nWhere was Shakespeare born?\tBedford Co.\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Bedford Co.) -> Bedford Co. (9512ms)\nWhere was Shakespeare born?\tAlexandria\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Alexandria) -> Alexandria (9610ms)\nWhere was Shakespeare born?\ta professional company\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a professional company, did, Shakespeare) -> a professional company (9337ms)\nWhere was Shakespeare born?\ta house trailer\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house trailer) -> a house trailer (9594ms)\nWhere was Shakespeare born?\tthe house\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the house) -> the house (9512ms)\nWhere was Shakespeare born?\tCentral\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Central) -> Central (9426ms)\nWhere was Shakespeare born?\tGranville County\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Granville County) -> Granville County (9478ms)\nWhere was Shakespeare born?\tpretty melodies\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (pretty melodies, do, Shakespeare) -> pretty melodies (9512ms)\nWhere was Shakespeare born?\tChepstow\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Chepstow) -> Chepstow (9705ms)\nWhere was Shakespeare born?\tGargoyles\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Gargoyles, do, Shakespeare) -> Gargoyles (9319ms)\nWhere was Shakespeare born?\tan actor\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (an actor, was doing, Shakespeare) -> an actor (9705ms)\nWhere was Shakespeare born?\t1932\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1932) -> 1932 (9626ms)\nWhere was Shakespeare born?\tLancashire ,England\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lancashire ,England) -> Lancashire ,England (9373ms)\nWhere was Shakespeare born?\ta toddler\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a toddler, do, Shakespeare) -> a toddler (9478ms)\nWhere was Shakespeare born?\tDescription\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Description, Did, Shakespeare) -> Description (9529ms)\nWhere was Shakespeare born?\tRehoboth\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Rehoboth) -> Rehoboth (9644ms)\nWhere was Shakespeare born?\tDavenport\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Davenport) -> Davenport (9373ms)\nWhere was Shakespeare born?\t1778\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1778) -> 1778 (9495ms)\nWhere was Shakespeare born?\t1866\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1866) -> 1866 (9391ms)\nWhere was Shakespeare born?\tElizabethton\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, had lived in, Elizabethton) -> Elizabethton (9319ms)\nWhere was Shakespeare born?\tKaren\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Karen, did, Shakespeare) -> Karen (9629ms)\nWhere was Shakespeare born?\tDublin barracks\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Dublin barracks) -> Dublin barracks (9427ms)\nWhere was Shakespeare born?\tWalton County\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Walton County) -> Walton County (9355ms)\nWhere was Shakespeare born?\tGreenwood Township\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Greenwood Township) -> Greenwood Township (9594ms)\nWhere was Shakespeare born?\t1869\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1869) -> 1869 (9562ms)\nWhere was Shakespeare born?\tBelfast\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Belfast) -> Belfast (9705ms)\nWhere was Shakespeare born?\tVirginia\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Virginia) -> Virginia (9594ms)\nWhere was Shakespeare born?\tPlainfield\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Plainfield) -> Plainfield (9512ms)\nWhere was Shakespeare born?\tthe STC\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the STC, do, Shakespeare ?) -> the STC (9660ms)\nWhere was Shakespeare born?\t1826\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1826) -> 1826 (9355ms)\nWhere was Shakespeare born?\tthe Society\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Society) -> the Society (9594ms)\nWhere was Shakespeare born?\t1925\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, 1925) -> 1925 (9478ms)\nWhere was Shakespeare born?\t1027\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1027) -> 1027 (9562ms)\nWhere was Shakespeare born?\tSouth Carolina\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, South Carolina) -> South Carolina (9495ms)\nWhere was Shakespeare born?\tThe question\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The question, is did, Shakespeare) -> The question (9444ms)\nWhere was Shakespeare born?\tthe French Quarter\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the French Quarter) -> the French Quarter (9512ms)\nWhere was Shakespeare born?\tPortsmouth\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Portsmouth) -> Portsmouth (9562ms)\nWhere was Shakespeare born?\tthe green mountains\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the green mountains) -> the green mountains (9529ms)\nWhere was Shakespeare born?\tApril 1885\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, April 1885) -> April 1885 (9409ms)\nWhere was Shakespeare born?\tKentucky\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Kentucky) -> Kentucky (9705ms)\nWhere was Shakespeare born?\tMay 3\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, May 3) -> May 3 (9610ms)\nWhere was Shakespeare born?\tTennessee\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Tennessee) -> Tennessee (9720ms)\nWhere was Shakespeare born?\tJapan\t0.333333333332\tWhere was Shakespeare born? -> $x: (prose, live in, $x) -> (the poetry and prose, lived in, Japan) -> Japan (9610ms)\nWhere was Shakespeare born?\t1911\t0.333333333332\tWhere was Shakespeare born? -> $x: (prose, be bear in in, $x) -> (prose writer and translator, was born in, 1911) -> 1911 (9610ms)\nWhere was Shakespeare born?\t1797\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1797) -> 1797 (9391ms)\nWhere was Shakespeare born?\tfour different residences\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, four different residences) -> four different residences (9391ms)\nWhere was Shakespeare born?\tthe Woodland neighborhood\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the Woodland neighborhood) -> the Woodland neighborhood (9660ms)\nWhere was Shakespeare born?\tAccomack Co.\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Accomack Co.) -> Accomack Co. (9594ms)\nWhere was Shakespeare born?\tApril 26 , 1564\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, April 26 , 1564) -> April 26 , 1564 (9478ms)\nWhere was Shakespeare born?\ta guy\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a guy, did, Shakespeare) -> a guy (9578ms)\nWhere was Shakespeare born?\tDunster\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Dunster, does, Shakespeare) -> Dunster (9319ms)\nWhere was Shakespeare born?\t1901\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living in, 1901) -> 1901 (9409ms)\nWhere was Shakespeare born?\tthe rules\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the rules, did, Shakespeare) -> the rules (9355ms)\nWhere was Shakespeare born?\tone-day\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (one-day, do, Shakespeare) -> one-day (9720ms)\nWhere was Shakespeare born?\t1623\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare 's widow, died in, 1623) -> 1623 (9644ms)\nWhere was Shakespeare born?\t23rd April 1616\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, 23rd April 1616) -> 23rd April 1616 (9461ms)\nWhere was Shakespeare born?\tthe authorship controversy\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the authorship controversy, did, Shakespeare) -> the authorship controversy (9545ms)\nWhere was Shakespeare born?\tSpringfield\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Springfield) -> Springfield (9355ms)\nWhere was Shakespeare born?\tthe play\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the play, done by, Shakespeare) -> the play (9644ms)\nWhere was Shakespeare born?\tApril 23rd\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, April 23rd) -> April 23rd (9690ms)\nWhere was Shakespeare born?\tteam\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (team, Does, Shakespeare) -> team (9705ms)\nWhere was Shakespeare born?\t1906\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living In, 1906) -> 1906 (9660ms)\nWhere was Shakespeare born?\tSimpsons\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Simpsons, do, Shakespeare) -> Simpsons (9675ms)\nWhere was Shakespeare born?\tBelper\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Belper) -> Belper (9355ms)\nWhere was Shakespeare born?\tYORK\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in the location, YORK) -> YORK (9578ms)\nWhere was Shakespeare born?\tthe misogynistic theme\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the misogynistic theme, does, Shakespeare) -> the misogynistic theme (9660ms)\nWhere was Shakespeare born?\tSparta\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sparta) -> Sparta (9373ms)\nWhere was Shakespeare born?\tintent\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (intent, did, Shakespeare) -> intent (9644ms)\nWhere was Shakespeare born?\tthe early twenty-first century\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, will die in, the early twenty-first century) -> the early twenty-first century (9660ms)\nWhere was Shakespeare born?\t1816\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1816) -> 1816 (9610ms)\nWhere was Shakespeare born?\t1873\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1873) -> 1873 (9409ms)\nWhere was Shakespeare born?\tIndiana\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Indiana) -> Indiana (9610ms)\nWhere was Shakespeare born?\tNatchez\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Natchez) -> Natchez (9444ms)\nWhere was Shakespeare born?\tSefton\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sefton) -> Sefton (9626ms)\nWhere was Shakespeare born?\tRutherford\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Rutherford) -> Rutherford (9391ms)\nWhere was Shakespeare born?\t1743\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1743) -> 1743 (9495ms)\nWhere was Shakespeare born?\t1871\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1871) -> 1871 (9644ms)\nWhere was Shakespeare born?\tthe role\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, the role) -> the role (9626ms)\nWhere was Shakespeare born?\t1839\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1839) -> 1839 (9444ms)\nWhere was Shakespeare born?\tGeorgia\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Georgia) -> Georgia (9660ms)\nWhere was Shakespeare born?\tKey West\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Key West) -> Key West (9427ms)\nWhere was Shakespeare born?\tAdam Sandler\t0.333333333332\tWhere was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Adam Sandler, did, Shakespeare) -> Adam Sandler (9337ms)\nWhere was Shakespeare born?\tthe same date\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same date) -> the same date (9720ms)\nWhere was Shakespeare born?\tthe 23rd too\t0.333333333332\tWhere was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, the 23rd too) -> the 23rd too (9427ms)\nWhere was Shakespeare born?\tOakham Rutlandshire\t0.333333333332\tWhere was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Oakham Rutlandshire) -> Oakham Rutlandshire (9626ms)\nWhere was Shakespeare born?\t1849\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1849) -> 1849 (9820ms)\nWhere was Shakespeare born?\t1811\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1811) -> 1811 (9778ms)\nWhere was Shakespeare born?\tToronto\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Toronto) -> Toronto (9764ms)\nWhere was Shakespeare born?\tSydney\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Sydney) -> Sydney (9806ms)\nWhere was Shakespeare born?\tGreene County\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Greene County) -> Greene County (9778ms)\nWhere was Shakespeare born?\t1827\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1827) -> 1827 (9749ms)\nWhere was Shakespeare born?\t1763\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1763) -> 1763 (9820ms)\nWhere was Shakespeare born?\t1803\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1803) -> 1803 (9735ms)\nWhere was Shakespeare born?\t1887\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1887) -> 1887 (9820ms)\nWhere was Shakespeare born?\t1865\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1865) -> 1865 (9806ms)\nWhere was Shakespeare born?\t1876\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1876) -> 1876 (9792ms)\nWhere was Shakespeare born?\tIndia\t0.333333333327\tWhere was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, India) -> India (9792ms)\nWhere was Shakespeare born?\tan island\t0.222222222221\tWhere was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare?s Prospero, lived on, an island) -> an island (9860ms)\nWhere was Shakespeare born?\tthe U.S.\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, the U.S.) -> the U.S. (9834ms)\nWhere was Shakespeare born?\tCanada\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (Golden Globe-nominated New Zealand actress, was born in, Canada) -> Canada (9860ms)\nWhere was Shakespeare born?\tLafayette\t0.222222222221\tWhere was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Lafayette) -> Lafayette (9860ms)\nWhere was Shakespeare born?\tthe curses\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live for ever in, the curses) -> the curses (9860ms)\nWhere was Shakespeare born?\tMontreal\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (-The Globe and Mail Samantha Warwick, was born in, Montreal) -> Montreal (9847ms)\nWhere was Shakespeare born?\timpunity\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (this globe, can live in, impunity) -> impunity (9847ms)\nWhere was Shakespeare born?\tthe most volatile times\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, are living in, the most volatile times) -> the most volatile times (9833ms)\nWhere was Shakespeare born?\ttents or canopies\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, could actually be living in, tents or canopies) -> tents or canopies (9847ms)\nWhere was Shakespeare born?\tpoverty , insecurity , and injustice\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, poverty , insecurity , and injustice) -> poverty , insecurity , and injustice (9834ms)\nWhere was Shakespeare born?\tthe Philippines\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (the globe?he, was born in, the Philippines) -> the Philippines (9860ms)\nWhere was Shakespeare born?\tbondage\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, bondage) -> bondage (9833ms)\nWhere was Shakespeare born?\tfine health\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, have been living in, fine health) -> fine health (9847ms)\nWhere was Shakespeare born?\tclose quarters\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, close quarters) -> close quarters (9834ms)\nWhere was Shakespeare born?\ta new and exciting world\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, are living comfortably in, a new and exciting world) -> a new and exciting world (9847ms)\nWhere was Shakespeare born?\tan emerging NWO\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, has been living in, an emerging NWO) -> an emerging NWO (9834ms)\nWhere was Shakespeare born?\treal forms\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, daily live in, real forms) -> real forms (9873ms)\nWhere was Shakespeare born?\tinternet accessible area?s\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, currently live in, internet accessible area?s) -> internet accessible area?s (9847ms)\nWhere was Shakespeare born?\tMassachusetts\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (Boston Globe Having, lived in, Massachusetts) -> Massachusetts (9860ms)\nWhere was Shakespeare born?\ta virtual environment\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, play live in, a virtual environment) -> a virtual environment (9834ms)\nWhere was Shakespeare born?\tliterature\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the Globe Theater, live in, literature) -> literature (9860ms)\nWhere was Shakespeare born?\tMontreal and London\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (globe, has lived in, Montreal and London) -> Montreal and London (9860ms)\nWhere was Shakespeare born?\tthe regions\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (the globe, were born here in, the regions) -> the regions (9847ms)\nWhere was Shakespeare born?\tthe villa\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (his own globe, live in, the villa) -> the villa (9873ms)\nWhere was Shakespeare born?\tLebanon\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (The globe-trotting brothers, also lived in, Lebanon) -> Lebanon (9833ms)\nWhere was Shakespeare born?\tMars\t0.222222222221\tWhere was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Bierce and Shakespeare, are all living on, Mars) -> Mars (9834ms)\nWhere was Shakespeare born?\ta Paris suburb\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (The globe-trotting musician, was living in, a Paris suburb) -> a Paris suburb (9860ms)\nWhere was Shakespeare born?\tthe developing world\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, the developing world) -> the developing world (9873ms)\nWhere was Shakespeare born?\tcooperative harmony\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (our globe, can live together in mutually, cooperative harmony) -> cooperative harmony (9860ms)\nWhere was Shakespeare born?\tcities\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, cities) -> cities (9833ms)\nWhere was Shakespeare born?\tDarebin\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, have come to live in, Darebin) -> Darebin (9847ms)\nWhere was Shakespeare born?\tLouisville\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (a Golden Globe Award?-winning actor, lived in, Louisville) -> Louisville (9847ms)\nWhere was Shakespeare born?\tfear\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, fear) -> fear (9860ms)\nWhere was Shakespeare born?\tfaraway Arizona\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live now in, faraway Arizona) -> faraway Arizona (9860ms)\nWhere was Shakespeare born?\t1951\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (The Boston Sunday Globe Paul Muldoon, was born in, 1951) -> 1951 (9833ms)\nWhere was Shakespeare born?\tremote areas\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, remote areas) -> remote areas (9834ms)\nWhere was Shakespeare born?\tgroups\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (The globe-shaped flower heads, are borne in, groups) -> groups (9860ms)\nWhere was Shakespeare born?\tMuggleton Street\t0.222222222221\tWhere was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Muggleton Street) -> Muggleton Street (9847ms)\nWhere was Shakespeare born?\tmuch worse conditions\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (this globe, live in, much worse conditions) -> much worse conditions (9860ms)\nWhere was Shakespeare born?\tGermany\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (the globe-trotter, was born in, Germany) -> Germany (9833ms)\nWhere was Shakespeare born?\tpoverty\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, living in, poverty) -> poverty (9847ms)\nWhere was Shakespeare born?\tthe US.\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe?s Catholics, live in, the US.) -> the US. (9847ms)\nWhere was Shakespeare born?\tconcert\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, concert) -> concert (9847ms)\nWhere was Shakespeare born?\tcultures and communities\t0.222222222221\tWhere was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, has lived in, cultures and communities) -> cultures and communities (9847ms)\nWhere was Shakespeare born?\tSummertown\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, Summertown) -> Summertown (9886ms)\nWhere was Shakespeare born?\t1837\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1837) -> 1837 (9958ms)\nWhere was Shakespeare born?\t1756\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1756) -> 1756 (9948ms)\nWhere was Shakespeare born?\t1878\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1878) -> 1878 (9924ms)\nWhere was Shakespeare born?\t1855\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1855) -> 1855 (9936ms)\nWhere was Shakespeare born?\tDeWitt county\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, DeWitt county) -> DeWitt county (9911ms)\nWhere was Shakespeare born?\t1851\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1851) -> 1851 (9899ms)\nWhere was Shakespeare born?\t1731\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1731) -> 1731 (9936ms)\nWhere was Shakespeare born?\t1798\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1798) -> 1798 (9911ms)\nWhere was Shakespeare born?\t1877\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1877) -> 1877 (9948ms)\nWhere was Shakespeare born?\tBristol\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, Bristol) -> Bristol (9924ms)\nWhere was Shakespeare born?\t1859\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1859) -> 1859 (9873ms)\nWhere was Shakespeare born?\t1956\t0.111111111111\tWhere was Shakespeare born? -> $x: (prose, bear in, $x) -> (a poet and prose writer, born in, 1956) -> 1956 (9899ms)\nWhere was Shakespeare born?\t1782\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1782) -> 1782 (9948ms)\nWhere was Shakespeare born?\tIreland\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, Ireland) -> Ireland (9886ms)\nWhere was Shakespeare born?\t1922\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1922) -> 1922 (9886ms)\nWhere was Shakespeare born?\tKristiansand\t0.111111111111\tWhere was Shakespeare born? -> $x: (prose, bear in, $x) -> (a Norwegian poet and prose writer, born in, Kristiansand) -> Kristiansand (9886ms)\nWhere was Shakespeare born?\tSroor\t0.111111111111\tWhere was Shakespeare born? -> $x: (prose, bear in, $x) -> (a poet and prose writer, born in, Sroor) -> Sroor (9936ms)\nWhere was Shakespeare born?\t1886\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1886) -> 1886 (9899ms)\nWhere was Shakespeare born?\t1889\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1889) -> 1889 (9899ms)\nWhere was Shakespeare born?\t1785\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1785) -> 1785 (9911ms)\nWhere was Shakespeare born?\t1870\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1870) -> 1870 (9899ms)\nWhere was Shakespeare born?\t1885\t0.111111111111\tWhere was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1885) -> 1885 (9911ms)\nWhere was Shakespeare born?\t1635\t0.11111111111\tWhere was Shakespeare born? -> $x: (william, be from in, $x) -> (Williams, was banished from the colony in, 1635) -> 1635 (9977ms)\nWhere was Shakespeare born?\tAugust 4 , 1931\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (Williams, Died On, August 4 , 1931) -> August 4 , 1931 (10037ms)\nWhere was Shakespeare born?\ta great athlete\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (a great athlete, could do well next to, Williams) -> a great athlete (10037ms)\nWhere was Shakespeare born?\t10 Jun 1808\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 10 Jun 1808) -> 10 Jun 1808 (10053ms)\nWhere was Shakespeare born?\tSchlesinger\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (Schlesinger, did, Williams) -> Schlesinger (10069ms)\nWhere was Shakespeare born?\t1834\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1834) -> 1834 (10061ms)\nWhere was Shakespeare born?\tThomas\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (Thomas, certainly does n?t fit into, Williams) -> Thomas (10037ms)\nWhere was Shakespeare born?\t1996\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (Williams, died in, 1996) -> 1996 (10053ms)\nWhere was Shakespeare born?\tmind\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (mind, does for, prose) -> mind (10053ms)\nWhere was Shakespeare born?\tthe same\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (the same, be done again with, William) -> the same (10069ms)\nWhere was Shakespeare born?\t1993\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (Williams, died in, 1993) -> 1993 (10053ms)\nWhere was Shakespeare born?\t23\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 23) -> 23 (10045ms)\nWhere was Shakespeare born?\tGod\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (God, does n?t speak, prose) -> God (10061ms)\nWhere was Shakespeare born?\tThe conclusion\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (The conclusion, does n?t have to be, undying prose) -> The conclusion (10053ms)\nWhere was Shakespeare born?\tThe criticism\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (The criticism, does n?t seem to bother, Williams) -> The criticism (10069ms)\nWhere was Shakespeare born?\t1914\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1914) -> 1914 (10053ms)\nWhere was Shakespeare born?\ttherapy\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (therapy, is done sometimes in, prose) -> therapy (10037ms)\nWhere was Shakespeare born?\t6 June 1851.1,2\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 6 June 1851.1,2) -> 6 June 1851.1,2 (10061ms)\nWhere was Shakespeare born?\t18 July 1905\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 18 July 1905) -> 18 July 1905 (10053ms)\nWhere was Shakespeare born?\t1775\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1775) -> 1775 (10037ms)\nWhere was Shakespeare born?\t9th September 1087\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 9th September 1087) -> 9th September 1087 (10037ms)\nWhere was Shakespeare born?\tthe 29th October 1943\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, the 29th October 1943) -> the 29th October 1943 (10061ms)\nWhere was Shakespeare born?\t1835\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1835) -> 1835 (10053ms)\nWhere was Shakespeare born?\tthe ball\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (the ball, did nt hit, Williams) -> the ball (10045ms)\nWhere was Shakespeare born?\tpoetry or fiction\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (poetry or fiction, does, didactic prose count) -> poetry or fiction (10037ms)\nWhere was Shakespeare born?\tFebruary 24 , 1866\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, February 24 , 1866) -> February 24 , 1866 (10037ms)\nWhere was Shakespeare born?\t1700\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1700) -> 1700 (10037ms)\nWhere was Shakespeare born?\tan eclipse\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, an eclipse) -> an eclipse (10046ms)\nWhere was Shakespeare born?\tSeptember 10\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, September 10) -> September 10 (10069ms)\nWhere was Shakespeare born?\tthe farm\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, the farm) -> the farm (10053ms)\nWhere was Shakespeare born?\t11 October 1857.1,4\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 11 October 1857.1,4) -> 11 October 1857.1,4 (10069ms)\nWhere was Shakespeare born?\tLyme\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, Lyme) -> Lyme (10045ms)\nWhere was Shakespeare born?\t1746\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1746) -> 1746 (10061ms)\nWhere was Shakespeare born?\tthe authors\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (the authors, could be doing much more with, their prose) -> the authors (10069ms)\nWhere was Shakespeare born?\t1 July 1882.1\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (? ??William, was born on, 1 July 1882.1) -> 1 July 1882.1 (10037ms)\nWhere was Shakespeare born?\t19 Apr 1848\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (WILLIAM, was born on, 19 Apr 1848) -> 19 Apr 1848 (10069ms)\nWhere was Shakespeare born?\tdeath\t-0.0\tWhere was Shakespeare born? -> $x: (william, have date of, $x) -> (Kathy Burch Williams, has a date of, death) -> death (10029ms)\nWhere was Shakespeare born?\tNew Zealand soil\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, New Zealand soil) -> New Zealand soil (10061ms)\nWhere was Shakespeare born?\t6 Nov 1651\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 6 Nov 1651) -> 6 Nov 1651 (10061ms)\nWhere was Shakespeare born?\t1998\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (1998, did, Williams) -> 1998 (10037ms)\nWhere was Shakespeare born?\t1926\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1926) -> 1926 (10061ms)\nWhere was Shakespeare born?\tApril 3 , 1835 Database #\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, April 3 , 1835 Database #) -> April 3 , 1835 Database # (10053ms)\nWhere was Shakespeare born?\tthe army\t-0.0\tWhere was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, the army) -> the army (10069ms)\nWhere was Shakespeare born?\tChicago Public Art Group\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (Chicago Public Art Group, did, Eugene Victor Debs prose readings) -> Chicago Public Art Group (10069ms)\nWhere was Shakespeare born?\ta polyester bunnet\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (a polyester bunnet, might have done nothing for, Williams) -> a polyester bunnet (10053ms)\nWhere was Shakespeare born?\tMarch 13 , 1909\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, March 13 , 1909) -> March 13 , 1909 (10069ms)\nWhere was Shakespeare born?\tAugust 30\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (Williams, was born on, August 30) -> August 30 (10061ms)\nWhere was Shakespeare born?\tthe commissioner\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (the commissioner, does with, Williams) -> the commissioner (10053ms)\nWhere was Shakespeare born?\tValente\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (Valente, does, prose) -> Valente (10045ms)\nWhere was Shakespeare born?\t23 March 1863\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 23 March 1863) -> 23 March 1863 (10037ms)\nWhere was Shakespeare born?\tetc\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (etc, did use, some prose) -> etc (10046ms)\nWhere was Shakespeare born?\t5.84\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (5.84, did, William) -> 5.84 (10069ms)\nWhere was Shakespeare born?\t19 March 1856\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 19 March 1856) -> 19 March 1856 (10053ms)\nWhere was Shakespeare born?\t10 Aug 1683\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 10 Aug 1683) -> 10 Aug 1683 (10037ms)\nWhere was Shakespeare born?\tso thoroughly\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (so thoroughly, do to, prose) -> so thoroughly (10069ms)\nWhere was Shakespeare born?\tthe work\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, william) -> (the work, has done, William) -> the work (10069ms)\nWhere was Shakespeare born?\tGale\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (Gale, does n?t pay more attention to, his prose) -> Gale (10045ms)\nWhere was Shakespeare born?\ta hug\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (a hug, did, an awesome prose) -> a hug (10069ms)\nWhere was Shakespeare born?\t8 Oct 1895\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 8 Oct 1895) -> 8 Oct 1895 (10045ms)\nWhere was Shakespeare born?\t7 July 1817\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (?William, died on, 7 July 1817) -> 7 July 1817 (10046ms)\nWhere was Shakespeare born?\tOctober\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, October) -> October (10061ms)\nWhere was Shakespeare born?\tMonday afternoon\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (Williams, died on, Monday afternoon) -> Monday afternoon (10069ms)\nWhere was Shakespeare born?\t12 Mar 1581/2\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 12 Mar 1581/2) -> 12 Mar 1581/2 (10061ms)\nWhere was Shakespeare born?\tThursday afternoon\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (Williams, died on, Thursday afternoon) -> Thursday afternoon (10045ms)\nWhere was Shakespeare born?\t26 Oct 1675 in Hingham\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 26 Oct 1675 in Hingham) -> 26 Oct 1675 in Hingham (10037ms)\nWhere was Shakespeare born?\t4 November 1703\t-0.0\tWhere was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 4 November 1703) -> 4 November 1703 (10061ms)\nWhere was Shakespeare born?\t16 Sep 1902\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 16 Sep 1902) -> 16 Sep 1902 (10053ms)\nWhere was Shakespeare born?\tSaul Bellow\t-0.0\tWhere was Shakespeare born? -> $x: ($x, do, prose) -> (Saul Bellow, was to do for, prose) -> Saul Bellow (10045ms)\nWhere was Shakespeare born?\t18 Aug 1918\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 18 Aug 1918) -> 18 Aug 1918 (10045ms)\nWhere was Shakespeare born?\tMarch 8 , 1929\t-0.0\tWhere was Shakespeare born? -> $x: (william, bear on, $x) -> (Williams, was born on, March 8 , 1929) -> March 8 , 1929 (10061ms)\nWhat did Rachel Carson die of?\t1964\t1.666666666663\tWhat did Rachel Carson die of? -> $x: (rachel carson, die in, $x) -> (Rachel Carson, died in, 1964) -> 1964 (1531ms)\nWhat did Rachel Carson die of?\tSilver Spring\t1.666666666663\tWhat did Rachel Carson die of? -> $x: (rachel carson, die in, $x) -> (Rachel Carson, died in, Silver Spring) -> Silver Spring (1440ms)\nWhat did Rachel Carson die of?\tApril 14\t1.666666666663\tWhat did Rachel Carson die of? -> $x: (rachel carson, die in, $x) -> (breast cancer Rachel Carson, died in, April 14) -> April 14 (1440ms)\nWhat did Rachel Carson die of?\t1965\t1.666666666663\tWhat did Rachel Carson die of? -> $x: (rachel carson, die in, $x) -> (Rachel Carson, died in, 1965) -> 1965 (1439ms)\nWhat did Rachel Carson die of?\tbreast cancer\t1.2222222222219998\tWhat did Rachel Carson die of? -> $x: (rachel carson, die of, $x) -> (Rachel Carson, died of, breast cancer) -> breast cancer (1709ms)\nWhat did Rachel Carson die of?\tBreast Cancer\t1.2222222222219998\tWhat did Rachel Carson die of? -> $x: (rachel carson, die of, $x) -> (?Rachel Carson, Died of, Breast Cancer) -> Breast Cancer (1531ms)\nWhat did Rachel Carson die of?\tcancer\t1.2222222222219998\tWhat did Rachel Carson die of? -> $x: (rachel carson, die of, $x) -> (Rachel Carson, was dying of, cancer) -> cancer (1709ms)\nWhat did Rachel Carson die of?\tFountain\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Mary T. Carson Beedle, died in, Fountain) -> Fountain (2830ms)\nWhat did Rachel Carson die of?\tAfghanistan\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Fort Carson, have died in, Afghanistan) -> Afghanistan (2563ms)\nWhat did Rachel Carson die of?\tStargate Atlantis\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson Beckett, died in, Stargate Atlantis) -> Stargate Atlantis (2409ms)\nWhat did Rachel Carson die of?\t2007\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (the Rev. John G. Carson, died in, 2007) -> 2007 (2443ms)\nWhat did Rachel Carson die of?\t2005\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, 2005) -> 2005 (2830ms)\nWhat did Rachel Carson die of?\tFranklin\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Adam Carson, died in, Franklin) -> Franklin (2443ms)\nWhat did Rachel Carson die of?\tan auto accident\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (a Fort Carson soldier, has died in, an auto accident) -> an auto accident (2563ms)\nWhat did Rachel Carson die of?\t1992 aged 100\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Elizabeth Carson, died in, 1992 aged 100) -> 1992 aged 100 (2443ms)\nWhat did Rachel Carson die of?\tApril 14 , 1964\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (rachel carson, die, $x) -> (Resistance Rachel Carson, died on, April 14 , 1964) -> April 14 , 1964 (2750ms)\nWhat did Rachel Carson die of?\tJune\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (County Commissioner Jerry Carson, died in, June) -> June (2609ms)\nWhat did Rachel Carson die of?\t1967\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson McCullers, died in, 1967) -> 1967 (2563ms)\nWhat did Rachel Carson die of?\tFebruary\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Frank Carson, died in, February) -> February (1709ms)\nWhat did Rachel Carson die of?\tHangzhou\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died recently in, Hangzhou) -> Hangzhou (2658ms)\nWhat did Rachel Carson die of?\tthe age of 56\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died at, the age of 56) -> the age of 56 (2830ms)\nWhat did Rachel Carson die of?\t1861\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (rachel carson, die, $x) -> (Rachel Carson Benson, died, 1861) -> 1861 (2030ms)\nWhat did Rachel Carson die of?\t1989\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, 1989) -> 1989 (2830ms)\nWhat did Rachel Carson die of?\t1863\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Matthew B. Carson, died in, 1863) -> 1863 (2750ms)\nWhat did Rachel Carson die of?\tthe daylong battle\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Fort Carson, died in, the daylong battle) -> the daylong battle (2609ms)\nWhat did Rachel Carson die of?\t?Sunday\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, will die in, ?Sunday) -> ?Sunday (2609ms)\nWhat did Rachel Carson die of?\tEncino\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, Encino) -> Encino (2750ms)\nWhat did Rachel Carson die of?\t1868\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, 1868) -> 1868 (2609ms)\nWhat did Rachel Carson die of?\tWashington\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (the same William Carson, died in, Washington) -> Washington (2750ms)\nWhat did Rachel Carson die of?\tNyack\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson McCullers, died in, Nyack) -> Nyack (2364ms)\nWhat did Rachel Carson die of?\tJanuary 2005\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Johnny Carson, died in, January 2005) -> January 2005 (2443ms)\nWhat did Rachel Carson die of?\tthe episode\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (the Dr. Carson Beckett character, died in, the episode) -> the episode (2609ms)\nWhat did Rachel Carson die of?\toffice\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (The last was Democratic Rep. Julia Carson, died in, office) -> office (2750ms)\nWhat did Rachel Carson die of?\ta plane crash\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Emily Carson?s parents, die in, a plane crash) -> a plane crash (2750ms)\nWhat did Rachel Carson die of?\tFranklin Co\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Adam Carson, died in, Franklin Co) -> Franklin Co (2659ms)\nWhat did Rachel Carson die of?\tan auto crash\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (a Fort Carson soldier, has died in, an auto crash) -> an auto crash (2830ms)\nWhat did Rachel Carson die of?\tIraq\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Another two Fort Carson, died in, Iraq) -> Iraq (2830ms)\nWhat did Rachel Carson die of?\t2008\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, 2008) -> 2008 (2563ms)\nWhat did Rachel Carson die of?\tTalledega\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (10 Joseph Carson, died in, Talledega) -> Talledega (2563ms)\nWhat did Rachel Carson die of?\tJanuary\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, January) -> January (2443ms)\nWhat did Rachel Carson die of?\tthe peak\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died at, the peak) -> the peak (2658ms)\nWhat did Rachel Carson die of?\tpoverty\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Kit Carson, die in, poverty) -> poverty (2659ms)\nWhat did Rachel Carson die of?\tMalibu\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Johnny Carson, died in, Malibu) -> Malibu (2658ms)\nWhat did Rachel Carson die of?\tTryon\t0.999999999997\tWhat did Rachel Carson die of? -> $x: (carson, die in, $x) -> (7 Emmie Carson, died in, Tryon) -> Tryon (2443ms)\nWhat did Rachel Carson die of?\twestern Pennsylvania\t0.888888888888\tWhat did Rachel Carson die of? -> $x: (rachel carson, be bear in, $x) -> (Rachel Carson, was born in, western Pennsylvania) -> western Pennsylvania (2834ms)\nWhat did Rachel Carson die of?\t1907\t0.888888888888\tWhat did Rachel Carson die of? -> $x: (rachel carson, be bear in, $x) -> (Rachel Carson, was born in, 1907) -> 1907 (2835ms)\nWhat did Rachel Carson die of?\tSpringdale\t0.888888888888\tWhat did Rachel Carson die of? -> $x: (rachel carson, be bear in, $x) -> (Rachel Carson, was born in, Springdale) -> Springdale (2835ms)\nWhat did Rachel Carson die of?\t79\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Johnny carson, is a person who died at the age of, 79) -> 79 (2844ms)\nWhat did Rachel Carson die of?\tcomplications\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die from, $x) -> (Carson City, died recently from, complications) -> complications (2844ms)\nWhat did Rachel Carson die of?\ta blood clot\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Mr. Carson, died suddenly of, a blood clot) -> a blood clot (2835ms)\nWhat did Rachel Carson die of?\ta massive cerebral hemorrhage\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Carson McCullers, died of, a massive cerebral hemorrhage) -> a massive cerebral hemorrhage (2835ms)\nWhat did Rachel Carson die of?\tlung cancer\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Carson, died of, lung cancer) -> lung cancer (2839ms)\nWhat did Rachel Carson die of?\twounds\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die from, $x) -> (A Fort Carson soldier, has died from, wounds) -> wounds (2839ms)\nWhat did Rachel Carson die of?\trespiratory arrest\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Carson, died of, respiratory arrest) -> respiratory arrest (2835ms)\nWhat did Rachel Carson die of?\tunknown causes\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Sage Carson, died of, unknown causes) -> unknown causes (2839ms)\nWhat did Rachel Carson die of?\temphysema\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Johnny Carson, has died of, emphysema) -> emphysema (2844ms)\nWhat did Rachel Carson die of?\tstomach cancer\t0.5555555555559999\tWhat did Rachel Carson die of? -> $x: (carson, die from, $x) -> (Jack Carson, died from, stomach cancer) -> stomach cancer (2839ms)\nWhat did Rachel Carson die of?\ta broken heart\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel, had died of, a broken heart) -> a broken heart (2844ms)\nWhat did Rachel Carson die of?\theart disease\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel Jackson , beloved wife, died of, heart disease) -> heart disease (2852ms)\nWhat did Rachel Carson die of?\tmesothelioma\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die from, $x) -> (Rachel, died from, mesothelioma) -> mesothelioma (2848ms)\nWhat did Rachel Carson die of?\tasthma\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (resident Rachel Barsky, died of, asthma) -> asthma (2844ms)\nWhat did Rachel Carson die of?\tasbestos cancer\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die from, $x) -> (Dec 21 , 2011 Rachel Lee, died from, asbestos cancer) -> asbestos cancer (2848ms)\nWhat did Rachel Carson die of?\tpneumonia\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel, died of, pneumonia) -> pneumonia (2848ms)\nWhat did Rachel Carson die of?\tSIDS\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (My daughter Rachel Lorraine, died of, SIDS) -> SIDS (2844ms)\nWhat did Rachel Carson die of?\tyellow fever\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Henry and Rachel, died of, yellow fever) -> yellow fever (2852ms)\nWhat did Rachel Carson die of?\ta heart attack\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (troubled artist Rachel Kelly, dies of, a heart attack) -> a heart attack (2852ms)\nWhat did Rachel Carson die of?\ta respiratory problem\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel Jones, dies of, a respiratory problem) -> a respiratory problem (2848ms)\nWhat did Rachel Carson die of?\tleukemia\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (His sister Rachel, died of, leukemia) -> leukemia (2848ms)\nWhat did Rachel Carson die of?\told age\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die from, $x) -> (Rachel, died from, old age) -> old age (2848ms)\nWhat did Rachel Carson die of?\tan unknown cause\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel, died of, an unknown cause) -> an unknown cause (2852ms)\nWhat did Rachel Carson die of?\tan unspecified disease\t0.555555555553\tWhat did Rachel Carson die of? -> $x: (rachel, die from, $x) -> (his mother Rachel, died from, an unspecified disease) -> an unspecified disease (2852ms)\nWhat did Rachel Carson die of?\tJanuary 23\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (98. Johnny Carson, died, January 23) -> January 23 (2870ms)\nWhat did Rachel Carson die of?\t1837\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Robert Carson, died, 1837) -> 1837 (2864ms)\nWhat did Rachel Carson die of?\teighteen months\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, eighteen months) -> eighteen months (2867ms)\nWhat did Rachel Carson die of?\tthe rocks\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson?s men, die among, the rocks) -> the rocks (2864ms)\nWhat did Rachel Carson die of?\t1847\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (John Carson, died, 1847) -> 1847 (2870ms)\nWhat did Rachel Carson die of?\tage 85 Rating\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (comedian Frank Carson, died, age 85 Rating) -> age 85 Rating (2872ms)\nWhat did Rachel Carson die of?\tthe day\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, the day) -> the day (2870ms)\nWhat did Rachel Carson die of?\trecently\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Johnny Carson, died, recently) -> recently (2860ms)\nWhat did Rachel Carson die of?\tMay 8 , 2007\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson Whitsett, died, May 8 , 2007) -> May 8 , 2007 (2867ms)\nWhat did Rachel Carson die of?\tcancer battle\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, dies after, cancer battle) -> cancer battle (2867ms)\nWhat did Rachel Carson die of?\ta few years\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Johnny Carson, died, a few years) -> a few years (2872ms)\nWhat did Rachel Carson die of?\taged 85 at his home in Blackpool\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, aged 85 at his home in Blackpool) -> aged 85 at his home in Blackpool (2864ms)\nWhat did Rachel Carson die of?\tJuly 19\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Jerry Carson, died, July 19) -> July 19 (2872ms)\nWhat did Rachel Carson die of?\tAugust 8 , 2002\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson retired, died, August 8 , 2002) -> August 8 , 2002 (2861ms)\nWhat did Rachel Carson die of?\t1827\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Robert Carson, died, 1827) -> 1827 (2870ms)\nWhat did Rachel Carson die of?\tLos Angeles ' Cedars-Sinai Medical Center\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died at, Los Angeles ' Cedars-Sinai Medical Center) -> Los Angeles ' Cedars-Sinai Medical Center (2872ms)\nWhat did Rachel Carson die of?\ttwo years\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, two years) -> two years (2856ms)\nWhat did Rachel Carson die of?\ttwo days\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Fort Carson, died, two days) -> two days (2872ms)\nWhat did Rachel Carson die of?\tearly Sunday morning\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, early Sunday morning) -> early Sunday morning (2870ms)\nWhat did Rachel Carson die of?\tthe year\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, the year) -> the year (2856ms)\nWhat did Rachel Carson die of?\thome\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died peacefully at, home) -> home (2872ms)\nWhat did Rachel Carson die of?\tMay 23 , 1868\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, May 23 , 1868) -> May 23 , 1868 (2864ms)\nWhat did Rachel Carson die of?\tsurrounded by his family\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, surrounded by his family) -> surrounded by his family (2870ms)\nWhat did Rachel Carson die of?\ttwo years later\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, two years later) -> two years later (2860ms)\nWhat did Rachel Carson die of?\tDec. 15\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, Dec. 15) -> Dec. 15 (2870ms)\nWhat did Rachel Carson die of?\tAugust 3 , 1947\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Estelle Carson, died, August 3 , 1947) -> August 3 , 1947 (2867ms)\nWhat did Rachel Carson die of?\tSunday\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Laura Madelyn Carson, died, Sunday) -> Sunday (2864ms)\nWhat did Rachel Carson die of?\t10 Nov 1932\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (CARSON, died, 10 Nov 1932) -> 10 Nov 1932 (2872ms)\nWhat did Rachel Carson die of?\tthe East Coast\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died on, the East Coast) -> the East Coast (2864ms)\nWhat did Rachel Carson die of?\tFort Lyon\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Kit Carson, died at, Fort Lyon) -> Fort Lyon (2870ms)\nWhat did Rachel Carson die of?\tBronson Methodist Hospital\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died a week later at, Bronson Methodist Hospital) -> Bronson Methodist Hospital (2867ms)\nWhat did Rachel Carson die of?\tthe 3rd\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (? Corporal William D Carson, died, the 3rd) -> the 3rd (2860ms)\nWhat did Rachel Carson die of?\t10 Dec 1940\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (CLAUDE CARSON, died, 10 Dec 1940) -> 10 Dec 1940 (2864ms)\nWhat did Rachel Carson die of?\tthe county hospital\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (CARSON, died at, the county hospital) -> the county hospital (2860ms)\nWhat did Rachel Carson die of?\tOct 5 , 1829\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (William Carson Jr, died, Oct 5 , 1829) -> Oct 5 , 1829 (2867ms)\nWhat did Rachel Carson die of?\tSaturday\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, Saturday) -> Saturday (2870ms)\nWhat did Rachel Carson die of?\tlast week\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (comedian Frank Carson, died, last week) -> last week (2867ms)\nWhat did Rachel Carson die of?\tshortly after the child 's birth\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson 's wife, died, shortly after the child 's birth) -> shortly after the child 's birth (2860ms)\nWhat did Rachel Carson die of?\tlast year\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, last year) -> last year (2867ms)\nWhat did Rachel Carson die of?\tlast month\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, last month) -> last month (2867ms)\nWhat did Rachel Carson die of?\t1816\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Adam Carson, died, 1816) -> 1816 (2856ms)\nWhat did Rachel Carson die of?\tMonday\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Mrs. Carson, died, Monday) -> Monday (2860ms)\nWhat did Rachel Carson die of?\ta pauper\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (Mickey Carson, died, a pauper) -> a pauper (2856ms)\nWhat did Rachel Carson die of?\t1802\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (More clues ...Henry Carson, died, 1802) -> 1802 (2856ms)\nWhat did Rachel Carson die of?\tBlackpool News\t0.33333333333099996\tWhat did Rachel Carson die of? -> $x: (carson, die, $x) -> (great Frank Carson, dies |, Blackpool News) -> Blackpool News (2867ms)\nWhat did Rachel Carson die of?\tOntario\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Ms. Carson, was born in, Ontario) -> Ontario (2881ms)\nWhat did Rachel Carson die of?\t1609\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (. John Aaron CARSON, was born in, 1609) -> 1609 (2879ms)\nWhat did Rachel Carson die of?\tMissouri\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Joseph Carson Cunningham, was born in, Missouri) -> Missouri (2875ms)\nWhat did Rachel Carson die of?\tCanada\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Jack Carson, was born in, Canada) -> Canada (2872ms)\nWhat did Rachel Carson die of?\tNevada\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Mr. Carson, was born in, Nevada) -> Nevada (2881ms)\nWhat did Rachel Carson die of?\tWhitehaven\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> ('s Scott Carson, was born in, Whitehaven) -> Whitehaven (2877ms)\nWhat did Rachel Carson die of?\t1809\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Kit Carson, was born there in, 1809) -> 1809 (2875ms)\nWhat did Rachel Carson die of?\trural Nebraska\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Gery Carson, was born in, rural Nebraska) -> rural Nebraska (2881ms)\nWhat did Rachel Carson die of?\tthe city\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (comedian Frank Carson, was born in, the city) -> the city (2875ms)\nWhat did Rachel Carson die of?\tNorthern Ireland\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (DAVE CARSON, was born in, Northern Ireland) -> Northern Ireland (2882ms)\nWhat did Rachel Carson die of?\tMadison County\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, Madison County) -> Madison County (2881ms)\nWhat did Rachel Carson die of?\tToronto\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Anne Carson, was born in, Toronto) -> Toronto (2882ms)\nWhat did Rachel Carson die of?\tCarman\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (John Elmer Carson, was born in, Carman) -> Carman (2879ms)\nWhat did Rachel Carson die of?\t1917\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Lonely Heart Lula Carson Smith, was born in, 1917) -> 1917 (2882ms)\nWhat did Rachel Carson die of?\t1914\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson Valley, was born in, 1914) -> 1914 (2877ms)\nWhat did Rachel Carson die of?\tBrooklyn\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Meredith Carson, was born in, Brooklyn) -> Brooklyn (2881ms)\nWhat did Rachel Carson die of?\tDanville\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson Davenport, was born in, Danville) -> Danville (2879ms)\nWhat did Rachel Carson die of?\tCorning\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Johnny Carson, was born in, Corning) -> Corning (2882ms)\nWhat did Rachel Carson die of?\t1975\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson Ellis, was born in, 1975) -> 1975 (2882ms)\nWhat did Rachel Carson die of?\tNorth Carolina\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Ben Leeds Carson, was born in, North Carolina) -> North Carolina (2877ms)\nWhat did Rachel Carson die of?\t1867\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Caroline CARSON, was born in, 1867) -> 1867 (2877ms)\nWhat did Rachel Carson die of?\tAcworth\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, Acworth) -> Acworth (2875ms)\nWhat did Rachel Carson die of?\teastern Pennsylvania\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Thomas Carson, was born in, eastern Pennsylvania) -> eastern Pennsylvania (2879ms)\nWhat did Rachel Carson die of?\tVancouver\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, Vancouver) -> Vancouver (2879ms)\nWhat did Rachel Carson die of?\t1747\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (John Linn Carson, was born in, 1747) -> 1747 (2875ms)\nWhat did Rachel Carson die of?\tHernando County\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (JOSEPH WASHINGTON CARSON, was born in, Hernando County) -> Hernando County (2881ms)\nWhat did Rachel Carson die of?\tBallymoney\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Anne Carson, was born in, Ballymoney) -> Ballymoney (2882ms)\nWhat did Rachel Carson die of?\tIreland\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, Ireland) -> Ireland (2882ms)\nWhat did Rachel Carson die of?\tLost Creek\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (James Carson White, was born in, Lost Creek) -> Lost Creek (2875ms)\nWhat did Rachel Carson die of?\tthe city?\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (comedian Frank Carson, was born in, the city?) -> the city? (2875ms)\nWhat did Rachel Carson die of?\ta covered wagon\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (William Harrison Carson, was born in, a covered wagon) -> a covered wagon (2879ms)\nWhat did Rachel Carson die of?\tColumbus\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Lula Carson Smith, was born in, Columbus) -> Columbus (2877ms)\nWhat did Rachel Carson die of?\tCalifornia\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (? Matthew Carson Lewandowski, was born in, California) -> California (2879ms)\nWhat did Rachel Carson die of?\t1858\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Rosella W. CARSON, was born in, 1858) -> 1858 (2875ms)\nWhat did Rachel Carson die of?\tVirginia\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (PA. John A. Carson, may have been born in, Virginia) -> Virginia (2875ms)\nWhat did Rachel Carson die of?\tKearney\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Curtis J. Carson Col . Curtis J. Carson, was born in, Kearney) -> Kearney (2881ms)\nWhat did Rachel Carson die of?\t1925\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, 1925) -> 1925 (2882ms)\nWhat did Rachel Carson die of?\tSupply\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Susie Carson, was born in, Supply) -> Supply (2881ms)\nWhat did Rachel Carson die of?\tthe little town\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, the little town) -> the little town (2877ms)\nWhat did Rachel Carson die of?\tKentucky\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Biography Christopher Houston Carson, was born in, Kentucky) -> Kentucky (2879ms)\nWhat did Rachel Carson die of?\tBirmingham\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Bert Carson, was born in, Birmingham) -> Birmingham (2879ms)\nWhat did Rachel Carson die of?\tOttawa\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson Becke, was born in, Ottawa) -> Ottawa (2879ms)\nWhat did Rachel Carson die of?\tDetroit\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Benjamin Carson, was born in, Detroit) -> Detroit (2877ms)\nWhat did Rachel Carson die of?\tBuffalo\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Dr. Carson, was born in, Buffalo) -> Buffalo (2872ms)\nWhat did Rachel Carson die of?\t1948\t0.222222222222\tWhat did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (text/html Ciaran Carson, was born in, 1948) -> 1948 (2882ms)\nWhat did Rachel Carson die of?\t1840\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Henry and Rebecca Carson, lived in, 1840) -> 1840 (2883ms)\nWhat did Rachel Carson die of?\tWashington Twp\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (1860 Charles Campbell Carson, was living in, Washington Twp) -> Washington Twp (2884ms)\nWhat did Rachel Carson die of?\tColorado\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Kit Carson, lived in, Colorado) -> Colorado (2884ms)\nWhat did Rachel Carson die of?\tJapan Yes\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (> Zach Hill & Carson McWhirter, live in, Japan Yes) -> Japan Yes (2885ms)\nWhat did Rachel Carson die of?\tthe valley\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (the Carson family, lived over in, the valley) -> the valley (2884ms)\nWhat did Rachel Carson die of?\tMontreal\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, lived in, Montreal) -> Montreal (2883ms)\nWhat did Rachel Carson die of?\tNew Jersey\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, has lived in, New Jersey) -> New Jersey (2884ms)\nWhat did Rachel Carson die of?\t1 2 CONC 840\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Henry and Rebecca Carson, lived in, 1 2 CONC 840) -> 1 2 CONC 840 (2883ms)\nWhat did Rachel Carson die of?\tLondon\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, living in, London) -> London (2883ms)\nWhat did Rachel Carson die of?\tthe rural community\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson City, has lived his entire life in, the rural community) -> the rural community (2882ms)\nWhat did Rachel Carson die of?\tthe 2nd District\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, lived in, the 2nd District) -> the 2nd District (2884ms)\nWhat did Rachel Carson die of?\tJune of 2011\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Brad Carson, said to Living in, June of 2011) -> June of 2011 (2883ms)\nWhat did Rachel Carson die of?\tthe Philippines\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (The Carsons, lived in, the Philippines) -> the Philippines (2884ms)\nWhat did Rachel Carson die of?\tSanta Fe\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (the Carson descendant, living in, Santa Fe) -> Santa Fe (2883ms)\nWhat did Rachel Carson die of?\tChina\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (? Carson, spent four years living in, China) -> China (2882ms)\nWhat did Rachel Carson die of?\tMinneapolis\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson and Coleman, live in, Minneapolis) -> Minneapolis (2884ms)\nWhat did Rachel Carson die of?\tLincoln\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson and I, lived in, Lincoln) -> Lincoln (2883ms)\nWhat did Rachel Carson die of?\tPort Credit\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson Shipp, lived in, Port Credit) -> Port Credit (2882ms)\nWhat did Rachel Carson die of?\tthe projects\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Kevin Carson, is a young man living in, the projects) -> the projects (2883ms)\nWhat did Rachel Carson die of?\tIllinois\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (William Lynn Carson, was living in, Illinois) -> Illinois (2884ms)\nWhat did Rachel Carson die of?\tAustin\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (great-nephew Carson, live in, Austin) -> Austin (2882ms)\nWhat did Rachel Carson die of?\tRush\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (1850 Joseph Carson Sr, was living in, Rush) -> Rush (2884ms)\nWhat did Rachel Carson die of?\tNYC\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (my friend Carson, used to live in, NYC) -> NYC (2883ms)\nWhat did Rachel Carson die of?\tWarren\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Rebecca Carson, were found living in, Warren) -> Warren (2884ms)\nWhat did Rachel Carson die of?\tMifflin\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (David Carson, was possibly living in, Mifflin) -> Mifflin (2885ms)\nWhat did Rachel Carson die of?\tPalo Alto\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (The Carsons, live in, Palo Alto) -> Palo Alto (2884ms)\nWhat did Rachel Carson die of?\tthe small house\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Johnny Carson, lived in, the small house) -> the small house (2884ms)\nWhat did Rachel Carson die of?\tClarinda\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, also lived in, Clarinda) -> Clarinda (2885ms)\nWhat did Rachel Carson die of?\tthe rain shadow\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (the Carson Valley, live in, the rain shadow) -> the rain shadow (2883ms)\nWhat did Rachel Carson die of?\tSoutheast Atlanta\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, has lived in, Southeast Atlanta) -> Southeast Atlanta (2883ms)\nWhat did Rachel Carson die of?\tGermany\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, has lived in, Germany) -> Germany (2884ms)\nWhat did Rachel Carson die of?\tCarson City Vella\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson City Inman, lived in, Carson City Vella) -> Carson City Vella (2883ms)\nWhat did Rachel Carson die of?\tTaos\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Kit Carson, had lived in, Taos) -> Taos (2883ms)\nWhat did Rachel Carson die of?\tMyrtle Beach\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (SC Ashlee Carson, has lived in, Myrtle Beach) -> Myrtle Beach (2884ms)\nWhat did Rachel Carson die of?\tLos Angeles\t0.11111111111099997\tWhat did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, was living in, Los Angeles) -> Los Angeles (2883ms)\nWhat did Rachel Carson die of?\thalf dollar\t-0.0\tWhat did Rachel Carson die of? -> $x: ($x, die from, carson) -> (half dollar, die from, the Carson City Mint) -> half dollar (2885ms)\nWhat did Rachel Carson die of?\tthe LAPD\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, kill, carson) -> (the LAPD, killed, Everett Carson reflective) -> the LAPD (2885ms)\nWhat did Rachel Carson die of?\tthe heck\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (the heck, has happened to, Carson Palmer) -> the heck (2885ms)\nWhat did Rachel Carson die of?\tWildlife\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, kill, carson) -> (Wildlife, kills in, Carson Sink) -> Wildlife (2885ms)\nWhat did Rachel Carson die of?\ttimes\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (times, ever happened to, Lisa Nicole Carson) -> times (2885ms)\nWhat did Rachel Carson die of?\tEduardo Sencion\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, kill, carson) -> (Eduardo Sencion, killed five people at, a Carson City restaurant) -> Eduardo Sencion (2885ms)\nWhat did Rachel Carson die of?\tJust\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (Just, happened to, its neighbor Carson?s) -> Just (2885ms)\nWhat did Rachel Carson die of?\tthe general vision\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (the general vision, might happen to, Carson Street) -> the general vision (2885ms)\nWhat did Rachel Carson die of?\tthe Battle-Axis\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, kill, carson) -> (the Battle-Axis, killed, Carson) -> the Battle-Axis (2885ms)\nWhat did Rachel Carson die of?\tout\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, kill, carson) -> (out, had killed, Professor Carson) -> out (2885ms)\nWhat did Rachel Carson die of?\tthe hell\t-0.11111111111100003\tWhat did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (the hell, happened to, Carson Daly) -> the hell (2885ms)\nWhat did Rachel Carson die of?\tDecember 15 , 2007\t-0.22222222222200003\tWhat did Rachel Carson die of? -> $x: (carson, die on, $x) -> (Julia Carson, died on, December 15 , 2007) -> December 15 , 2007 (2886ms)\nWhat did Rachel Carson die of?\tWednesday\t-0.22222222222200003\tWhat did Rachel Carson die of? -> $x: (carson, die on, $x) -> (the comic Frank Carson, died on, Wednesday) -> Wednesday (2886ms)\nWhat did Rachel Carson die of?\tSeptember 29\t-0.22222222222200003\tWhat did Rachel Carson die of? -> $x: (carson, die on, $x) -> (Carson McCullers, died on, September 29) -> September 29 (2886ms)\nWhat did Rachel Carson die of?\t30 December 1876\t-0.22222222222200003\tWhat did Rachel Carson die of? -> $x: (carson, die on, $x) -> (Joseph Carson, died on, 30 December 1876) -> 30 December 1876 (2885ms)\nWhat did Rachel Carson die of?\tSeptember 19 , 2011\t-0.22222222222200003\tWhat did Rachel Carson die of? -> $x: (carson, die on, $x) -> (Jo Carson, died on, September 19 , 2011) -> September 19 , 2011 (2886ms)\nWhat did Rachel Carson die of?\tBreast cancer\t-0.444444444442\tWhat did Rachel Carson die of? -> $x: ($x, die, rachel carson) -> (Breast cancer, People Who Died This Way, Rachel Carson) -> Breast cancer (2886ms)\nWhat did Rachel Carson die of?\tWilliam Benson\t-0.44444444444299996\tWhat did Rachel Carson die of? -> $x: ($x, marry, rachel carson) -> (William Benson, married, Rachel Carson) -> William Benson (2886ms)\nWhat is amitriptyline?\tthe drowsiness\t0.111111111111\tWhat is amitriptyline? -> $x: ($x, cause, amitriptyline) -> (the drowsiness, caused by, Amitriptyline) -> the drowsiness (858ms)\nWhat is amitriptyline?\tDrug\t-0.0\tWhat is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Drug, Drug formulations in this category, Amitriptyline hydrochloride 75 film coated tablet) -> Drug (1302ms)\nWhat is amitriptyline?\tPregnancy Category C (FDA)\t-0.0\tWhat is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Pregnancy Category C (FDA), Drugs in this category, Amitriptyline) -> Pregnancy Category C (FDA) (1107ms)\nWhat is amitriptyline?\tTablet\t-0.0\tWhat is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Tablet, Formulations available in this form, Amitriptyline hydrochloride 25 tablet) -> Tablet (1107ms)\nWhat is amitriptyline?\tDrug Kit\t-0.0\tWhat is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Drug Kit, Formulations available in this form, Amitriptyline hydrochloride, choline 25/250 kit) -> Drug Kit (1047ms)\nWhat is amitriptyline?\tFilm Coated Tablet\t-0.0\tWhat is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Film Coated Tablet, Formulations available in this form, Chlordiazepoxide and amitriptyline hydrochloride 10/25 film coated tablet) -> Film Coated Tablet (1302ms)\nWhat is amitriptyline?\tthe cells\t-0.111111111111\tWhat is amitriptyline? -> $x: (amitriptyline, do, $x) -> (Amitriptyline, did n?t kill, the cells) -> the cells (1302ms)\nWhat is amitriptyline?\tthe nerve pain\t-0.111111111111\tWhat is amitriptyline? -> $x: (amitriptyline, do, $x) -> (Amitriptyline, Does indeed calm, the nerve pain) -> the nerve pain (1303ms)\nWhat is amitriptyline?\tlower fit threshold\t-0.111111111111\tWhat is amitriptyline? -> $x: (amitriptyline, do, $x) -> (amitriptyline, does, lower fit threshold) -> lower fit threshold (1302ms)\nWhat is amitriptyline?\tpatients\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline sedation, is also very useful for, patients) -> patients (1428ms)\nWhat is amitriptyline?\tADHD\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, is prescribed off-label for, ADHD) -> ADHD (1438ms)\nWhat is amitriptyline?\tIC/PBS patients\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, seems to be most effective for, IC/PBS patients) -> IC/PBS patients (1428ms)\nWhat is amitriptyline?\tinjection\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is for, injection) -> injection (1303ms)\nWhat is amitriptyline?\t4 weeks\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, was administered for, 4 weeks) -> 4 weeks (1367ms)\nWhat is amitriptyline?\tolder patients\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline and, are preferred for, older patients) -> older patients (1401ms)\nWhat is amitriptyline?\tThe Contraceptive Pill\t-0.111111111112\tWhat is amitriptyline? -> $x: ($x, do, amitriptyline) -> (The Contraceptive Pill, Does, Amitriptyline Affect) -> The Contraceptive Pill (1367ms)\nWhat is amitriptyline?\tFM\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, are similarly effective treatments for, FM) -> FM (1350ms)\nWhat is amitriptyline?\tNeuropathic Pain\t-0.111111111112\tWhat is amitriptyline? -> $x: ($x, do, amitriptyline) -> (Neuropathic Pain, Does, Amitriptyline Work) -> Neuropathic Pain (1367ms)\nWhat is amitriptyline?\tletter\t-0.111111111112\tWhat is amitriptyline? -> $x: ($x, do, amitriptyline) -> (letter, Does, Amitriptyline Work) -> letter (1438ms)\nWhat is amitriptyline?\tIBS\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Low dose Amitriptyline, is sometimes very effective for, IBS) -> IBS (1350ms)\nWhat is amitriptyline?\tLilly\t-0.111111111112\tWhat is amitriptyline? -> $x: ($x, do, amitriptyline) -> (Lilly, did well on, the amitriptyline) -> Lilly (1401ms)\nWhat is amitriptyline?\tpreventive purposes\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, can also be used for, preventive purposes) -> preventive purposes (1428ms)\nWhat is amitriptyline?\tthe relief\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline hydrochloride, is prescribed for, the relief) -> the relief (1438ms)\nWhat is amitriptyline?\tdepression\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, was once a common treatment for, depression) -> depression (1438ms)\nWhat is amitriptyline?\ta few weeks\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, must be taken regularly for, a few weeks) -> a few weeks (1438ms)\nWhat is amitriptyline?\tthe patients\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is a very good drug for, the patients) -> the patients (1438ms)\nWhat is amitriptyline?\tPHN.\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is a standard therapy for, PHN.) -> PHN. (1438ms)\nWhat is amitriptyline?\tcats\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, has been prescribed for, cats) -> cats (1367ms)\nWhat is amitriptyline?\tfalls\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, may be at increased risk for, falls) -> falls (1428ms)\nWhat is amitriptyline?\ta majority\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is usually the first choice for, a majority) -> a majority (1401ms)\nWhat is amitriptyline?\tusually\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is prescribed for sleep issues, usually) -> usually (1367ms)\nWhat is amitriptyline?\ttreating depression\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is used for, treating depression) -> treating depression (1367ms)\nWhat is amitriptyline?\tdepressive disorders\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, can be usually useful for, depressive disorders) -> depressive disorders (1428ms)\nWhat is amitriptyline?\tmore than 50 years\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, has been prescribed for, more than 50 years) -> more than 50 years (1401ms)\nWhat is amitriptyline?\tFMS\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is an effective medication for, FMS) -> FMS (1428ms)\nWhat is amitriptyline?\tyears\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (trazodone and amitriptyline, have been used for, years) -> years (1367ms)\nWhat is amitriptyline?\tpurposes\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, may also be used for, purposes) -> purposes (1350ms)\nWhat is amitriptyline?\tfibromyalgia\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, has been used for, fibromyalgia) -> fibromyalgia (1438ms)\nWhat is amitriptyline?\tpain relief\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, are required for, pain relief) -> pain relief (1428ms)\nWhat is amitriptyline?\tthe treatment\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is also useful for, the treatment) -> the treatment (1350ms)\nWhat is amitriptyline?\ttreatment\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, have been used for, treatment) -> treatment (1428ms)\nWhat is amitriptyline?\tElavil\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (> > Amitriptyline, is the generic name for, Elavil) -> Elavil (1428ms)\nWhat is amitriptyline?\tsleep issues\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is prescribed for, sleep issues) -> sleep issues (1401ms)\nWhat is amitriptyline?\tfactors\t-0.111111111112\tWhat is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, may additionally be utilised for, factors) -> factors (1350ms)\nWhat is amitriptyline?\tI?ve\t-0.222222222222\tWhat is amitriptyline? -> $x: ($x, found, amitriptyline) -> (I?ve, found, amitriptyline really useful) -> I?ve (1438ms)\nWhat is amitriptyline?\tsertraline\t-0.222222222222\tWhat is amitriptyline? -> $x: ($x, found, amitriptyline) -> (sertraline, was found to be as effective as, amitriptyline) -> sertraline (1438ms)\nWhat is amitriptyline?\tcan i\t-0.222222222222\tWhat is amitriptyline? -> $x: ($x, found, amitriptyline) -> (can i, find, Amitriptyline online) -> can i (1438ms)\nWhat is amitriptyline?\tNortriptyline\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Nortriptyline, is a noradrenergic metabolite of, amitriptyline) -> Nortriptyline (1445ms)\nWhat is amitriptyline?\t79\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (79, are, amitriptyline tablets price) -> 79 (1445ms)\nWhat is amitriptyline?\tThe most widely used TCA\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (The most widely used TCA, is called, amitriptyline) -> The most widely used TCA (1438ms)\nWhat is amitriptyline?\tchildren and adolescents\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (children and adolescents, is available for, amitriptyline) -> children and adolescents (1444ms)\nWhat is amitriptyline?\tspinal manipulation\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (spinal manipulation, was as effective as, Amitriptyline) -> spinal manipulation (1443ms)\nWhat is amitriptyline?\tThe best evidence\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (The best evidence, is for, amitriptyline) -> The best evidence (1442ms)\nWhat is amitriptyline?\tAmytriptyline\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amytriptyline, is an alternate name for, Amitriptyline) -> Amytriptyline (1445ms)\nWhat is amitriptyline?\tLouis PERIACTIN\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Louis PERIACTIN, was put on, Amitriptyline 10 mg) -> Louis PERIACTIN (1443ms)\nWhat is amitriptyline?\tAmitriptilyne\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amitriptilyne, is a common misspelling of, amitriptyline) -> Amitriptilyne (1443ms)\nWhat is amitriptyline?\t7/2/11 10:22\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (7/2/11 10:22, AM Tracked by, Amitriptyline) -> 7/2/11 10:22 (1445ms)\nWhat is amitriptyline?\tAmytriptiline\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amytriptiline, is a common misspelling of, amitriptyline) -> Amytriptiline (1445ms)\nWhat is amitriptyline?\tthe 7 days\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the 7 days, am still taking, the amitriptyline) -> the 7 days (1442ms)\nWhat is amitriptyline?\tbaseline\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (baseline, was 24 % for, amitriptyline) -> baseline (1444ms)\nWhat is amitriptyline?\tExcessive saliva\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Excessive saliva, can be treated with, amitriptyline) -> Excessive saliva (1445ms)\nWhat is amitriptyline?\t30 to 50 %\t-0.222222222223\tWhat is amitriptyline? -> $x: (amitriptyline, be about, $x) -> (amitriptyline, is about, 30 to 50 %) -> 30 to 50 % (1440ms)\nWhat is amitriptyline?\tblood glucose\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, can, amitriptyline) -> (blood glucose, can result from, amitriptyline ?s effect) -> blood glucose (1439ms)\nWhat is amitriptyline?\tchronic tension headaches\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (chronic tension headaches, are, Amitriptyline and Mirtazapine) -> chronic tension headaches (1440ms)\nWhat is amitriptyline?\tcitalopram\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (citalopram, is probably as efficacious as, amitriptyline) -> citalopram (1444ms)\nWhat is amitriptyline?\tthe patient\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the patient, was given a prescription for, amitriptyline 10 mg) -> the patient (1444ms)\nWhat is amitriptyline?\tself-stimulation\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (self-stimulation, was restored with, amitriptyline) -> self-stimulation (1440ms)\nWhat is amitriptyline?\tLennox\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Lennox, was quite rightly put on, Amitriptyline) -> Lennox (1444ms)\nWhat is amitriptyline?\tGeneric Elavil\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Generic Elavil, is, Amitriptyline) -> Generic Elavil (1440ms)\nWhat is amitriptyline?\tExamples\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Examples, are, amitriptyline) -> Examples (1444ms)\nWhat is amitriptyline?\tvgx rats\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (vgx rats, was also attenuated by, gabapentin and amitriptyline) -> vgx rats (1440ms)\nWhat is amitriptyline?\tsleep\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (sleep, was improved by, both amitriptyline and nabilone) -> sleep (1440ms)\nWhat is amitriptyline?\tAmytripyline\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amytripyline, is a common misspelling of, amitriptyline) -> Amytripyline (1443ms)\nWhat is amitriptyline?\tnabilone\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (nabilone, was, superior to amitriptyline) -> nabilone (1443ms)\nWhat is amitriptyline?\tPERIACTIN\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (PERIACTIN, has fully been put on, Amitriptyline 10 mg) -> PERIACTIN (1442ms)\nWhat is amitriptyline?\tthe same period patient\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the same period patient, was treated with, AMITRIPTYLINE HCL) -> the same period patient (1445ms)\nWhat is amitriptyline?\tAcupuncture\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Acupuncture, is comparable with, amitriptyline) -> Acupuncture (1443ms)\nWhat is amitriptyline?\tShowings\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Showings, are, amitriptyline hlc) -> Showings (1440ms)\nWhat is amitriptyline?\tBritain\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Britain, is, that sell amitriptyline) -> Britain (1438ms)\nWhat is amitriptyline?\tNeither drug\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Neither drug, are rediscovering, amitriptyline) -> Neither drug (1445ms)\nWhat is amitriptyline?\tthe survey sites\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be to, amitriptyline) -> (the survey sites, are free to join, ! Amitriptyline) -> the survey sites (1445ms)\nWhat is amitriptyline?\tTRAMADOL\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (TRAMADOL, was on, Amitriptyline) -> TRAMADOL (1443ms)\nWhat is amitriptyline?\tTagament\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, can, amitriptyline) -> (Tagament, can increase blood levels of, amitriptyline) -> Tagament (1444ms)\nWhat is amitriptyline?\tExamples of Tricyclic antidepressants\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Examples of Tricyclic antidepressants, are, amitriptyline) -> Examples of Tricyclic antidepressants (1444ms)\nWhat is amitriptyline?\tClomipramine\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Clomipramine, would be worth a trial instead of, Amitriptyline) -> Clomipramine (1438ms)\nWhat is amitriptyline?\tRiboflavin\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Riboflavin, are also recommended along with, amitriptyline) -> Riboflavin (1442ms)\nWhat is amitriptyline?\t2010\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (2010, is filed under, Amitriptyline Review) -> 2010 (1444ms)\nWhat is amitriptyline?\tThe first drug\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (The first drug, are taking, an overdose of amitriptyline) -> The first drug (1440ms)\nWhat is amitriptyline?\toxycodone\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (oxycodone, were unaffected by, amitriptyline) -> oxycodone (1445ms)\nWhat is amitriptyline?\tsimilar side effects\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (similar side effects, was worse with, amitriptyline) -> similar side effects (1442ms)\nWhat is amitriptyline?\thealthy volunteers\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (healthy volunteers, were incubated with, amitriptyline) -> healthy volunteers (1444ms)\nWhat is amitriptyline?\tsuch medication\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (such medication, is, Amitriptyline Generic Tablets) -> such medication (1442ms)\nWhat is amitriptyline?\ttips\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (tips, were selected for, the Amitriptyline unproblematic) -> tips (1440ms)\nWhat is amitriptyline?\tthe few people\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the few people, was on, Amitriptyline) -> the few people (1445ms)\nWhat is amitriptyline?\tserotonin syndrome\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (serotonin syndrome, have been reported with, amitriptyline) -> serotonin syndrome (1443ms)\nWhat is amitriptyline?\tAmitryptyline\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amitryptyline, is an alternate name for, Amitriptyline) -> Amitryptyline (1445ms)\nWhat is amitriptyline?\tHaloperidol\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Haloperidol, was as effective as, amitriptyline) -> Haloperidol (1442ms)\nWhat is amitriptyline?\ttension-type headaches\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, can, amitriptyline) -> (tension-type headaches, can be treated with, amitriptyline) -> tension-type headaches (1443ms)\nWhat is amitriptyline?\theroin\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (heroin, was taking, amitriptyline) -> heroin (1445ms)\nWhat is amitriptyline?\tStraightforward Guide\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Straightforward Guide, is, Amitriptyline) -> Straightforward Guide (1445ms)\nWhat is amitriptyline?\tA common protocol\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (A common protocol, is to give, amitriptyline) -> A common protocol (1445ms)\nWhat is amitriptyline?\tproblem-solving therapy\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (problem-solving therapy, were as effective as, amitriptyline) -> problem-solving therapy (1445ms)\nWhat is amitriptyline?\tthe past few weeks\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the past few weeks, is a dead-give away as to, the amitriptyline) -> the past few weeks (1442ms)\nWhat is amitriptyline?\tSomebody\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Somebody, else may be best suited by, 10 mg amitriptyline) -> Somebody (1444ms)\nWhat is amitriptyline?\toutpatients\t-0.222222222223\tWhat is amitriptyline? -> $x: ($x, be to, amitriptyline) -> (outpatients, is to begin with, 50 to 100 mg amitriptyline) -> outpatients (1445ms)\nWhat was it originally called?\tIreland\t1.555555555546\tWhat was it originally called? -> $x: ($x, be origin of, young) -> (Ireland, is the origin of, the Young family) -> Ireland (840ms)\nWhat was it originally called?\tSpaten\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Spaten, is the origin of, the world) -> Spaten (957ms)\nWhat was it originally called?\tthe Tao\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (the Tao, is the origin of, the world) -> the Tao (956ms)\nWhat was it originally called?\tmass consumption\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (mass consumption, is the origin of, the world) -> mass consumption (1058ms)\nWhat was it originally called?\tMaheswara\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Maheswara, is the origin of, the world) -> Maheswara (841ms)\nWhat was it originally called?\ta religionist\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (a religionist, is the origin of, the world) -> a religionist (957ms)\nWhat was it originally called?\tBossa Nova\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Bossa Nova, is the origin of, integrated world music?one) -> Bossa Nova (956ms)\nWhat was it originally called?\tthe Word or Logos\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (the Word or Logos, is the origin of, the world) -> the Word or Logos (1012ms)\nWhat was it originally called?\tGod\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (God, is the origin of, the world) -> God (1012ms)\nWhat was it originally called?\tthe saint\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (the saint, has been the spiritual origin of, the world culture) -> the saint (1058ms)\nWhat was it originally called?\tRT # RT @smashingmag\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (RT # RT @smashingmag, are the Origins of, the World) -> RT # RT @smashingmag (1058ms)\nWhat was it originally called?\tthe default\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (the default, is the origin of, world space) -> the default (841ms)\nWhat was it originally called?\tBrahman\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Brahman, is the origin of, all the worlds) -> Brahman (957ms)\nWhat was it originally called?\tthe water\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (the water, is the origin of, worlds) -> the water (957ms)\nWhat was it originally called?\tGOOD\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (GOOD, was the origin of, the now-world-famous Kony video) -> GOOD (1058ms)\nWhat was it originally called?\tore\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (ore, was the origin of, World War II) -> ore (957ms)\nWhat was it originally called?\tmystical spirituality\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (mystical spirituality, is the origin of, all the world religions) -> mystical spirituality (1012ms)\nWhat was it originally called?\ta data based question\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (a data based question, are the origins of, World War II) -> a data based question (840ms)\nWhat was it originally called?\tEthiopia\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Ethiopia, is the origin of, world) -> Ethiopia (1058ms)\nWhat was it originally called?\tNINTH KHANDA 1\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (NINTH KHANDA 1, is the origin of, this world) -> NINTH KHANDA 1 (1012ms)\nWhat was it originally called?\tthe source\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (the source, is the origin of, the world) -> the source (841ms)\nWhat was it originally called?\tAnswer\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Answer, is the origin of, the world) -> Answer (841ms)\nWhat was it originally called?\tno abstract philosophy\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (no abstract philosophy, is the origin of, the human world) -> no abstract philosophy (1012ms)\nWhat was it originally called?\tTao\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Tao, is the origin of, the eternal world) -> Tao (1012ms)\nWhat was it originally called?\tFire\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Fire, is the Origin of, the worlds) -> Fire (841ms)\nWhat was it originally called?\tany world\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (any world, is the origin of, all worlds) -> any world (1012ms)\nWhat was it originally called?\tNavan Fort Navan Fort\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Navan Fort Navan Fort, is the origin of, a world renowned series) -> Navan Fort Navan Fort (957ms)\nWhat was it originally called?\tLincoln County\t1.333333333329\tWhat was it originally called? -> $x: ($x, be origin of, world) -> (Lincoln County, is the origin of, the world) -> Lincoln County (1058ms)\nWhat was it originally called?\tunsolved mysteries\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (unsolved mysteries, is the origin of, Earth) -> unsolved mysteries (1058ms)\nWhat was it originally called?\tThe Nameless\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (The Nameless, is the origin of, Heaven and Earth) -> The Nameless (1126ms)\nWhat was it originally called?\tno name\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (no name, is the origin of, heaven and earth) -> no name (1127ms)\nWhat was it originally called?\tNon-existence\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (Non-existence, is the origin of, Heaven and Earth) -> Non-existence (1058ms)\nWhat was it originally called?\tthe un-named\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (the un-named, is the origin of, heaven and earth) -> the un-named (1127ms)\nWhat was it originally called?\tThe nameless\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (The nameless, is the origin of, Heaven and Earth) -> The nameless (1126ms)\nWhat was it originally called?\tdesire\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (desire, is the origin of, Heaven and Earth) -> desire (1127ms)\nWhat was it originally called?\tVolcanoes\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (Volcanoes, are probably the origin of, the earth?s atmosphere) -> Volcanoes (1127ms)\nWhat was it originally called?\thuman science or reason\t1.111111111107\tWhat was it originally called? -> $x: ($x, be origin of, earth) -> (human science or reason, is the origin of, earth) -> human science or reason (1127ms)\nWhat was it originally called?\ta nuisance\t0.444444444445\tWhat was it originally called? -> $x: ($x, cause, bonfire) -> (a nuisance, being caused by, the bonfire) -> a nuisance (1160ms)\nWhat was it originally called?\toutdoor trampoline beds\t0.444444444445\tWhat was it originally called? -> $x: ($x, cause, bonfire) -> (outdoor trampoline beds, is caused by having, a bonfire right) -> outdoor trampoline beds (1160ms)\nWhat was it originally called?\tsmoke\t0.444444444445\tWhat was it originally called? -> $x: ($x, cause, bonfire) -> (smoke, caused by, a bonfire) -> smoke (1160ms)\nWhat was it originally called?\tdamage\t0.444444444445\tWhat was it originally called? -> $x: ($x, cause, bonfire) -> (damage, caused on, Bonfire Night) -> damage (1160ms)\nWhat was it originally called?\tone lawn\t0.444444444445\tWhat was it originally called? -> $x: ($x, cause, bonfire) -> (one lawn, caused a bit of, a bonfire) -> one lawn (1160ms)\nWhat was it originally called?\tthe burns\t0.444444444445\tWhat was it originally called? -> $x: ($x, cause, bonfire) -> (the burns, were caused at, a bonfire party) -> the burns (1160ms)\nWhat was it originally called?\ta smoke nuisance\t0.444444444445\tWhat was it originally called? -> $x: ($x, cause, bonfire) -> (a smoke nuisance, caused by, a bonfire) -> a smoke nuisance (1160ms)\nWhat was it originally called?\tthe opening door\t0.444444444445\tWhat was it originally called? -> $x: ($x, cause, bonfire) -> (the opening door, had caused the combustion of, a bonfire) -> the opening door (1160ms)\nWhat was it originally called?\tWarnings\t0.444444444444\tWhat was it originally called? -> $x: ($x, be rule of, originally) -> (Warnings, was listed with rules of \" DragonQuest, originally) -> Warnings (1182ms)\nWhat was it originally called?\tthe damage\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (the damage, caused, originally) -> the damage (1181ms)\nWhat was it originally called?\tImbalance\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (Imbalance, Can Cause, Weight Gain Originally Published) -> Imbalance (1244ms)\nWhat was it originally called?\tthe injury\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (the injury, caused, originally) -> the injury (1181ms)\nWhat was it originally called?\tthe words\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (the words, caused, originally) -> the words (1244ms)\nWhat was it originally called?\ttime\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (time, has caused, those originally blue skies and bodies) -> time (1181ms)\nWhat was it originally called?\tthe event\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (the event, caused, originally) -> the event (1181ms)\nWhat was it originally called?\tthe problem\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (the problem, is caused, originally) -> the problem (1181ms)\nWhat was it originally called?\tThe conditions\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (The conditions, caused, originally) -> The conditions (1181ms)\nWhat was it originally called?\tthe problems\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (the problems, caused, originally) -> the problems (1244ms)\nWhat was it originally called?\tthe fire\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (the fire, caused, originally) -> the fire (1181ms)\nWhat was it originally called?\tthe factors\t0.33333333333399995\tWhat was it originally called? -> $x: ($x, cause, originally) -> (the factors, caused, originally) -> the factors (1244ms)\nWhat was it originally called?\tCyber attacks\t0.33333333332799997\tWhat was it originally called? -> $x: ($x, be originally of, young) -> (Cyber attacks, were originally the province of, geeky young guys) -> Cyber attacks (1244ms)\nWhat was it originally called?\tThe Emperor\t0.11111111111100003\tWhat was it originally called? -> $x: ($x, be originally of, world) -> (The Emperor, was originally the emperor of, the whole world) -> The Emperor (1244ms)\nWhat was it originally called?\tProgress\t0.11111111111100003\tWhat was it originally called? -> $x: ($x, be originally of, world) -> (Progress, was originally part of, the 1964 World) -> Progress (1244ms)\nWhat was it originally called?\tOrmazd and Ahriman\t0.11111111111100003\tWhat was it originally called? -> $x: ($x, be originally of, world) -> (Ormazd and Ahriman, were originally part of, a world balance) -> Ormazd and Ahriman (1274ms)\nWhat was it originally called?\tthe flight\t0.11111111111100003\tWhat was it originally called? -> $x: ($x, be originally of, world) -> (the flight, was originally part of, the World Year) -> the flight (1244ms)\nWhat was it originally called?\tThe Wallerfield circuit\t0.11111111111100003\tWhat was it originally called? -> $x: ($x, be originally of, world) -> (The Wallerfield circuit, was originally part of, a World War Two) -> The Wallerfield circuit (1274ms)\nWhat was it originally called?\tlarge amounts\t-0.0\tWhat was it originally called? -> $x: (bonfire, sound, $x) -> (a bonfire, sounds like, large amounts) -> large amounts (1422ms)\nWhat was it originally called?\tBeam Hollow\t-0.0\tWhat was it originally called? -> $x: (world, be originally call, $x) -> (World War II, was originally called, Beam Hollow) -> Beam Hollow (1371ms)\nWhat was it originally called?\tAlpha World\t-0.0\tWhat was it originally called? -> $x: (world, be originally call, $x) -> (ActiveWorlds ActiveWorlds, was originally called, Alpha World) -> Alpha World (1371ms)\nWhat was it originally called?\tWhitehall\t-0.0\tWhat was it originally called? -> $x: (spring, be originally call, $x) -> (Seven Springs, was originally called, Whitehall) -> Whitehall (1274ms)\nWhat was it originally called?\tMIRROR\t-0.0\tWhat was it originally called? -> $x: (world, be originally call, $x) -> (The DomWorld model, was originally called, MIRROR) -> MIRROR (1371ms)\nWhat was it originally called?\tpon farr\t-0.0\tWhat was it originally called? -> $x: (bonfire, sound, $x) -> (the word bonfire, sounds almost exactly the same as, pon farr) -> pon farr (1422ms)\nWhat was it originally called?\tmuch fun\t-0.0\tWhat was it originally called? -> $x: (bonfire, sound, $x) -> (A Bonfire, sounds like so, much fun) -> much fun (1422ms)\nWhat was it originally called?\t?Detox 4 Women?\t-0.0\tWhat was it originally called? -> $x: (world, be originally call, $x) -> (the Modern World *? *, was originally called, ?Detox 4 Women?) -> ?Detox 4 Women? (1371ms)\nWhat was it originally called?\tPolaris\t-0.0\tWhat was it originally called? -> $x: ($x, be originally of, canada) -> (Polaris, was originally based out of, Canada years) -> Polaris (1422ms)\nWhat was it originally called?\tthe Station\t-0.0\tWhat was it originally called? -> $x: (spring, be originally call, $x) -> (Cold Spring Harbor, was originally called, the Station) -> the Station (1274ms)\nWhat was it originally called?\ttrees\t-0.0\tWhat was it originally called? -> $x: (bonfire, worship, $x) -> (bonfires, worshipped, trees) -> trees (1274ms)\nWhat was it originally called?\tThe Lake\t-0.0\tWhat was it originally called? -> $x: (spring, be originally call, $x) -> (the spring, was originally to be called, The Lake) -> The Lake (1274ms)\nWhat was it originally called?\tSuper Mario Bros. 4\t-0.0\tWhat was it originally called? -> $x: (world, be originally call, $x) -> (Super Mario World, was originally called, Super Mario Bros. 4) -> Super Mario Bros. 4 (1371ms)\nWho was the first king of England?\tfirst\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (first, discovered in, England) -> first (3523ms)\nWho was the first king of England?\tcrop circles\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (crop circles, were discovered in, England) -> crop circles (2465ms)\nWho was the first king of England?\tthe States\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the States, have only recently been discovered in, England) -> the States (2465ms)\nWho was the first king of England?\tCrop circles\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Crop circles, were discovered in, England) -> Crop circles (5164ms)\nWho was the first king of England?\tSainey Nyassi\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Sainey Nyassi, were discovered by, the New England Revolution) -> Sainey Nyassi (5202ms)\nWho was the first king of England?\tCharles Edward Banks\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Charles Edward Banks, discovered a document in, England) -> Charles Edward Banks (3523ms)\nWho was the first king of England?\tthe Bartholomew Fair\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the Bartholomew Fair, was discovered in, England) -> the Bartholomew Fair (4994ms)\nWho was the first king of England?\tThe DVD?s\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (The DVD?s, could be discovered from, England) -> The DVD?s (5115ms)\nWho was the first king of England?\tEnglish Countryside Ramble\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (English Countryside Ramble, discover the heart of, England) -> English Countryside Ramble (4953ms)\nWho was the first king of England?\tthe duck\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the duck, was discovered in, England) -> the duck (3523ms)\nWho was the first king of England?\tsilk patchwork\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (silk patchwork, discovered in, England) -> silk patchwork (3473ms)\nWho was the first king of England?\tobjects\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (objects, are discovered in, England) -> objects (3473ms)\nWho was the first king of England?\tthe 5th\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the 5th, discovered in, England and X-rayed) -> the 5th (5037ms)\nWho was the first king of England?\tthe early dinosaurs\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the early dinosaurs, were discovered in, England) -> the early dinosaurs (4952ms)\nWho was the first king of England?\tDacentrus\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Dacentrus, was discovered in, England) -> Dacentrus (5164ms)\nWho was the first king of England?\tclimbing floribunda\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (climbing floribunda, was discovered in, England) -> climbing floribunda (3523ms)\nWho was the first king of England?\tChina clays\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (China clays, were discovered in, England) -> China clays (5164ms)\nWho was the first king of England?\tthe Foxhall peoples\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the Foxhall peoples, were the last to be discovered in, England) -> the Foxhall peoples (5202ms)\nWho was the first king of England?\ta show\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a show, discover the beauty of, traditional New England holidays) -> a show (4952ms)\nWho was the first king of England?\tFinchley\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Finchley, discovers, his England) -> Finchley (2047ms)\nWho was the first king of England?\tthe third comet\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the third comet, discovered in, England) -> the third comet (2465ms)\nWho was the first king of England?\tThe plant\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (The plant, was discovered in, England) -> The plant (2465ms)\nWho was the first king of England?\ta graphite deposit\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a graphite deposit, was discovered in, northern England) -> a graphite deposit (5115ms)\nWho was the first king of England?\tTitanium\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Titanium, was discovered in, England) -> Titanium (5164ms)\nWho was the first king of England?\tRussia\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Russia, discovered, Germany and England) -> Russia (5037ms)\nWho was the first king of England?\tEarly Cretaceous period\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Early Cretaceous period, was first discovered in, England) -> Early Cretaceous period (5115ms)\nWho was the first king of England?\tLiposomes\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Liposomes, were discovered in, England) -> Liposomes (3361ms)\nWho was the first king of England?\tcropcircles\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (cropcircles, were discovered all across, England) -> cropcircles (3361ms)\nWho was the first king of England?\tAltispinax\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Altispinax, have been discovered in, England and Germany) -> Altispinax (3361ms)\nWho was the first king of England?\tGinseng\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Ginseng, was discovered in, western New England) -> Ginseng (5037ms)\nWho was the first king of England?\tan uncomprehending crown\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (an uncomprehending crown, discovered in, England) -> an uncomprehending crown (3523ms)\nWho was the first king of England?\ta set\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a set, was discovered in, England) -> a set (5164ms)\nWho was the first king of England?\tnature trails\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (nature trails, discover some of, England) -> nature trails (4995ms)\nWho was the first king of England?\tFragmentary\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Fragmentary, remains were discovered in, England) -> Fragmentary (2047ms)\nWho was the first king of England?\tFrance\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (France, will discover, New England) -> France (5037ms)\nWho was the first king of England?\tFox News ? Suspicious packages\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Fox News ? Suspicious packages, discovered in, Dubai and England) -> Fox News ? Suspicious packages (3361ms)\nWho was the first king of England?\tFerrari\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Ferrari, has been discovered in, England) -> Ferrari (5037ms)\nWho was the first king of England?\tGlooskap\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Glooskap, discovered, England) -> Glooskap (3523ms)\nWho was the first king of England?\tAmerica\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (America, discovered in, England) -> America (5202ms)\nWho was the first king of England?\ta skeleton\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a skeleton, discovered in, England) -> a skeleton (3523ms)\nWho was the first king of England?\tthe thoroughly perplexed Crown\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the thoroughly perplexed Crown, discovered in, England) -> the thoroughly perplexed Crown (2047ms)\nWho was the first king of England?\tA hidden basement church/speakeasy\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (A hidden basement church/speakeasy, discovered in, England ?) -> A hidden basement church/speakeasy (2047ms)\nWho was the first king of England?\tthe phenomenon\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the phenomenon, was first discovered in, England) -> the phenomenon (4994ms)\nWho was the first king of England?\tHitchcock sketches\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Hitchcock sketches, was recently discovered in, England) -> Hitchcock sketches (5164ms)\nWho was the first king of England?\tMorris\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Morris, was discovered in, New England) -> Morris (4953ms)\nWho was the first king of England?\tthe violations\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the violations, were discovered by, EPA?s New England office) -> the violations (4994ms)\nWho was the first king of England?\tA Templar painting\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (A Templar painting, discovered in, England) -> A Templar painting (4952ms)\nWho was the first king of England?\tThe Bartlett pear\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (The Bartlett pear, was discovered in, England) -> The Bartlett pear (3473ms)\nWho was the first king of England?\ta spinosaur dinosaur\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a spinosaur dinosaur, discovered in, England) -> a spinosaur dinosaur (4953ms)\nWho was the first king of England?\ta sufficiently primitive man\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a sufficiently primitive man, to be discovered in, England) -> a sufficiently primitive man (5115ms)\nWho was the first king of England?\tThe oldest proto-human bones\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (The oldest proto-human bones, discovered in, England date) -> The oldest proto-human bones (3361ms)\nWho was the first king of England?\tsuch creatures\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (such creatures, have been discovered in, England) -> such creatures (5164ms)\nWho was the first king of England?\tChina clay\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (China clay, was first discovered in, England) -> China clay (3473ms)\nWho was the first king of England?\tmore than 5000\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (more than 5000, were discovered in, north-west England) -> more than 5000 (4995ms)\nWho was the first king of England?\ta canal cruise\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a canal cruise, is an ideal way to discover, the real England) -> a canal cruise (2465ms)\nWho was the first king of England?\tFirst\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (First, discovered in, England) -> First (5037ms)\nWho was the first king of England?\tshale gas\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (shale gas, have been discovered in, England) -> shale gas (4994ms)\nWho was the first king of England?\tthe first comet\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the first comet, discovered in, England) -> the first comet (4994ms)\nWho was the first king of England?\tan English yachtsman\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (an English yachtsman, discovered, England) -> an English yachtsman (5202ms)\nWho was the first king of England?\tThe product\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (The product, was discovered in, England) -> The product (4952ms)\nWho was the first king of England?\tViking Treasure\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Viking Treasure, Discovered in, England) -> Viking Treasure (3473ms)\nWho was the first king of England?\ta curious Skunk # 1 phenotype\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a curious Skunk # 1 phenotype, was discovered in, England) -> a curious Skunk # 1 phenotype (5202ms)\nWho was the first king of England?\tthe game soccer\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the game soccer, was discovered in, England) -> the game soccer (5115ms)\nWho was the first king of England?\ta bit\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a bit, discover the Heart of, England) -> a bit (5202ms)\nWho was the first king of England?\tsines\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (sines, was experimentally discovered independently in, England) -> sines (5037ms)\nWho was the first king of England?\tthe second comet\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the second comet, discovered at, England) -> the second comet (5115ms)\nWho was the first king of England?\tTracks\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Tracks, discovered in, England) -> Tracks (3473ms)\nWho was the first king of England?\tyew\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (yew, have been discovered in, England) -> yew (2047ms)\nWho was the first king of England?\tamazing finds\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (amazing finds, discovered throughout, New England) -> amazing finds (2047ms)\nWho was the first king of England?\tLyme disease\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Lyme disease, was discovered in, coastal New England) -> Lyme disease (3361ms)\nWho was the first king of England?\ta bog mummy\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (a bog mummy, discovered in, England) -> a bog mummy (5202ms)\nWho was the first king of England?\tgraphite\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (graphite, was discovered in, England) -> graphite (5202ms)\nWho was the first king of England?\tOberkampf\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Oberkampf, discovered in, England) -> Oberkampf (3361ms)\nWho was the first king of England?\tfossils\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (fossils, discovered on, England) -> fossils (5037ms)\nWho was the first king of England?\tbird flu\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (bird flu, was discovered in, England) -> bird flu (2465ms)\nWho was the first king of England?\tburial grounds\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (burial grounds, have also been discovered in, England) -> burial grounds (5115ms)\nWho was the first king of England?\tapparently ancient hominid\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (apparently ancient hominid, remains discovered in, England) -> apparently ancient hominid (2047ms)\nWho was the first king of England?\tthe largest cave passage\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (the largest cave passage, discovered in, England) -> the largest cave passage (3473ms)\nWho was the first king of England?\tseveral spectacular creatures\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (several spectacular creatures, are discovered across, England) -> several spectacular creatures (5202ms)\nWho was the first king of England?\tRamble\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Ramble, discover the heart of, England) -> Ramble (5202ms)\nWho was the first king of England?\tXenon\t1.666666666671\tWho was the first king of England? -> $x: ($x, discover, england) -> (Xenon, was discovered in, England) -> Xenon (5164ms)\nWho was the first king of England?\tClifton\t1.555555555563\tWho was the first king of England? -> $x: ($x, first think of, england) -> (Clifton, thought first of, England) -> Clifton (5202ms)\nWho was the first king of England?\tnorth London\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (north London, has become the first in, England) -> north London (5333ms)\nWho was the first king of England?\tGamboge\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Gamboge, was first introduced into, England) -> Gamboge (5349ms)\nWho was the first king of England?\tThe billy club\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (The billy club, was first introduced in, England) -> The billy club (5333ms)\nWho was the first king of England?\tSiamese\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Siamese, were first introduced into, England) -> Siamese (5325ms)\nWho was the first king of England?\tGalanthus nivalis\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Galanthus nivalis, was first introduced into, England) -> Galanthus nivalis (5316ms)\nWho was the first king of England?\tBloomer\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Bloomer, had first played for, England) -> Bloomer (5325ms)\nWho was the first king of England?\tABBA\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (ABBA, may have been the first CD in, England) -> ABBA (5357ms)\nWho was the first king of England?\tDec &\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Dec &, have had first t, England) -> Dec & (5316ms)\nWho was the first king of England?\tthe railroad\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (the railroad, was first introduced in, England) -> the railroad (5349ms)\nWho was the first king of England?\tDavid Luiz\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (David Luiz, has enjoyed a rocky first year in, England) -> David Luiz (5357ms)\nWho was the first king of England?\tGarlic mustard\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Garlic mustard, was first introduced into, New England) -> Garlic mustard (5325ms)\nWho was the first king of England?\tpropeller\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (propeller, had first been fitted in, Miss England) -> propeller (5325ms)\nWho was the first king of England?\tGoalkeeper Joe Hart\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (Goalkeeper Joe Hart, made his first start for, England) -> Goalkeeper Joe Hart (5357ms)\nWho was the first king of England?\tthe suburbs\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (the suburbs, were introduced first in, England) -> the suburbs (5316ms)\nWho was the first king of England?\tHereditary surnames\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Hereditary surnames, were first introduced into, England) -> Hereditary surnames (5308ms)\nWho was the first king of England?\ttuition\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (tuition, was first introduced in, England) -> tuition (5357ms)\nWho was the first king of England?\tHaringey Council\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Haringey Council, has become the first authority in, England) -> Haringey Council (5333ms)\nWho was the first king of England?\tDexter cattle\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Dexter cattle, were first introduced into, England) -> Dexter cattle (5325ms)\nWho was the first king of England?\ta coin\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (a coin, had first pick of, England?s games) -> a coin (5357ms)\nWho was the first king of England?\tThe long-case clock\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (The long-case clock, was first introduced into, England) -> The long-case clock (5316ms)\nWho was the first king of England?\tbroadsides\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (broadsides, were first introduced in, England) -> broadsides (5341ms)\nWho was the first king of England?\tDad\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Dad, had brought the first book back from, England) -> Dad (5357ms)\nWho was the first king of England?\tTheo Walcott\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Theo Walcott, may have been taking the first steps into, England) -> Theo Walcott (5316ms)\nWho was the first king of England?\tDe Gea\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (De Gea, has endured a difficult first season in, England) -> De Gea (5316ms)\nWho was the first king of England?\tthe latest big stars\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the latest big stars, have hit first in, England) -> the latest big stars (5357ms)\nWho was the first king of England?\tthe Lamas\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the Lamas, had first gone to, England) -> the Lamas (5357ms)\nWho was the first king of England?\tmince pies\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (mince pies, were first introduced in, England) -> mince pies (5349ms)\nWho was the first king of England?\tVanilla flavour\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Vanilla flavour, was first introduced to, France and England) -> Vanilla flavour (5341ms)\nWho was the first king of England?\tScott Carson\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (Scott Carson, will get his first competitive start for, England) -> Scott Carson (5308ms)\nWho was the first king of England?\tSiamese cats\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Siamese cats, were first introduced into, England) -> Siamese cats (5349ms)\nWho was the first king of England?\tScott\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (Scott, first started, New England Multimedia) -> Scott (5325ms)\nWho was the first king of England?\tIces\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Ices, were first introduced into, England) -> Ices (5349ms)\nWho was the first king of England?\ta practice\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (a practice, first introduced into, England) -> a practice (5333ms)\nWho was the first king of England?\tthe vine\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (the vine, was first introduced to, England) -> the vine (5341ms)\nWho was the first king of England?\tLittle owls\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Little owls, were first introduced into, England) -> Little owls (5325ms)\nWho was the first king of England?\tTyndale\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Tyndale, had first given, England) -> Tyndale (5325ms)\nWho was the first king of England?\tIguanodon\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Iguanodon, remains had first been found in, southern England) -> Iguanodon (5308ms)\nWho was the first king of England?\tLa Traviata\t1.444444444452\tWho was the first king of England? -> $x: ($x, first perform, england) -> (La Traviata, was first performed in, England) -> La Traviata (5316ms)\nWho was the first king of England?\tthe Jews\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the Jews, had first taken over, England) -> the Jews (5357ms)\nWho was the first king of England?\tCoaches\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Coaches, were first introduced into, England) -> Coaches (5316ms)\nWho was the first king of England?\ta nice idea\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (a nice idea, have my first proper look at, England) -> a nice idea (5357ms)\nWho was the first king of England?\tice cream\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (ice cream, was first introduced in, England) -> ice cream (5308ms)\nWho was the first king of England?\tingenious devices\t1.444444444452\tWho was the first king of England? -> $x: ($x, have invent, england) -> (ingenious devices, have been invented in, England) -> ingenious devices (5333ms)\nWho was the first king of England?\tThe North East\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (The North East, has become the first region in, England) -> The North East (5333ms)\nWho was the first king of England?\tThe harbinger\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (The harbinger, first introduced into, England) -> The harbinger (5341ms)\nWho was the first king of England?\tTwenty 20\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Twenty 20, was first introduced in, England) -> Twenty 20 (5325ms)\nWho was the first king of England?\ta shooting party\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (a shooting party, has become the first person in, England) -> a shooting party (5341ms)\nWho was the first king of England?\tHydrastis Canadensis\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Hydrastis Canadensis, was first introduced into, England) -> Hydrastis Canadensis (5308ms)\nWho was the first king of England?\tone year Hops\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (one year Hops, were first introduced into, England) -> one year Hops (5308ms)\nWho was the first king of England?\tSting\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Sting, has recently bought his first home in, England) -> Sting (5357ms)\nWho was the first king of England?\tSparkling champagne\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Sparkling champagne, was first introduced into, England) -> Sparkling champagne (5341ms)\nWho was the first king of England?\tchair seating\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (chair seating, was first introduced into, England) -> chair seating (5349ms)\nWho was the first king of England?\tthe continent\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the continent, may have first entered, England) -> the continent (5357ms)\nWho was the first king of England?\ta ?Drum Head ?\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (a ?Drum Head ?, was first introduced in, England) -> a ?Drum Head ? (5341ms)\nWho was the first king of England?\tEngels\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Engels, had first come to, England) -> Engels (5341ms)\nWho was the first king of England?\tprosecution\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (prosecution, was first introduced in, England) -> prosecution (5325ms)\nWho was the first king of England?\tthe 8th Air Force\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (the 8th Air Force, first got started here in, England) -> the 8th Air Force (5349ms)\nWho was the first king of England?\tThe sport\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (The sport, was first introduced in, New England) -> The sport (5316ms)\nWho was the first king of England?\tThe Industrial Revolution\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (The Industrial Revolution, first started in, England) -> The Industrial Revolution (5341ms)\nWho was the first king of England?\tthe Royal College\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the Royal College, had been the man first in, England) -> the Royal College (5325ms)\nWho was the first king of England?\tthe Bb , G# and short F\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the Bb , G# and short F, had first been used in, England) -> the Bb , G# and short F (5333ms)\nWho was the first king of England?\tconstruction\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (construction, first introduced into, England) -> construction (5349ms)\nWho was the first king of England?\tconfection\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (confection, was first introduced to, England) -> confection (5316ms)\nWho was the first king of England?\tPrentice Mulford\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Prentice Mulford, was first introduced to, England) -> Prentice Mulford (5308ms)\nWho was the first king of England?\tthe American colonies\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the American colonies, had to be shipped first to, England) -> the American colonies (5341ms)\nWho was the first king of England?\tfamilies\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (families, had first been accepted in to, England) -> families (5308ms)\nWho was the first king of England?\tthe brand\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the brand, had first arrived in, England) -> the brand (5308ms)\nWho was the first king of England?\tBrighton and Hove Council\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Brighton and Hove Council, has just become the first in, England) -> Brighton and Hove Council (5357ms)\nWho was the first king of England?\tTamers\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (Tamers, first started airing in, England) -> Tamers (5333ms)\nWho was the first king of England?\tMedical licensure\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Medical licensure, was first introduced in, England) -> Medical licensure (5316ms)\nWho was the first king of England?\tsilver pennies\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (silver pennies, were first introduced into, England) -> silver pennies (5349ms)\nWho was the first king of England?\tJohn\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (John, had become the most popular first name in, England) -> John (5202ms)\nWho was the first king of England?\tDunnes Stores\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Dunnes Stores, had opened its first stores in, England) -> Dunnes Stores (5308ms)\nWho was the first king of England?\tthe Siamese breed\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (the Siamese breed, was first introduced in, England) -> the Siamese breed (5357ms)\nWho was the first king of England?\tKing\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (King, started his first game for, England) -> King (5349ms)\nWho was the first king of England?\tthe breed\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (the breed, was first introduced into, England) -> the breed (5308ms)\nWho was the first king of England?\tGeorge Lowe\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (George Lowe, has taken his first steps to, England stardom) -> George Lowe (5349ms)\nWho was the first king of England?\ttea\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (tea, was first introduced in, England) -> tea (5349ms)\nWho was the first king of England?\tdiving\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (diving, was first started in, England) -> diving (5333ms)\nWho was the first king of England?\tDickson\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (Dickson, are making their first starts for, England) -> Dickson (5316ms)\nWho was the first king of England?\tTannh?user\t1.444444444452\tWho was the first king of England? -> $x: ($x, first perform, england) -> (Tannh?user, was first performed in, England) -> Tannh?user (5333ms)\nWho was the first king of England?\tMasonry\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Masonry, was certainly first introduced into, England) -> Masonry (5333ms)\nWho was the first king of England?\tThe tourists\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (The tourists, have recorded their first win over, England) -> The tourists (5316ms)\nWho was the first king of England?\tScholes\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (Scholes, got his first start for, England) -> Scholes (5333ms)\nWho was the first king of England?\tsmoking\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (smoking, was first introduced in, England) -> smoking (5341ms)\nWho was the first king of England?\tlife insurance\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (life insurance, was first introduced in, England) -> life insurance (5316ms)\nWho was the first king of England?\tGodschalls\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Godschalls, had first come to, southern England) -> Godschalls (5325ms)\nWho was the first king of England?\tWilliam\t1.444444444452\tWho was the first king of England? -> $x: ($x, marry first, england) -> (William, married twice first in, England) -> William (5357ms)\nWho was the first king of England?\tCigarettes\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Cigarettes, were first introduced to, England) -> Cigarettes (5341ms)\nWho was the first king of England?\tthe phrase\t1.444444444452\tWho was the first king of England? -> $x: ($x, have invent, england) -> (the phrase, cannot have been invented in, England) -> the phrase (5316ms)\nWho was the first king of England?\thaggis\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (haggis, may first have been eaten in, England) -> haggis (5333ms)\nWho was the first king of England?\tJune 2003\t1.444444444452\tWho was the first king of England? -> $x: ($x, first start, england) -> (June 2003, started his first game for, England) -> June 2003 (5333ms)\nWho was the first king of England?\tThe Lhasa\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (The Lhasa, was first introduced to, England) -> The Lhasa (5308ms)\nWho was the first king of England?\tDon Giovanni\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Don Giovanni, was first introduced into, England) -> Don Giovanni (5308ms)\nWho was the first king of England?\tThe Little Pea\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (The Little Pea, had a brilliant first season in, England) -> The Little Pea (5349ms)\nWho was the first king of England?\tBenedict\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Benedict, was the first to introduce into, England) -> Benedict (5308ms)\nWho was the first king of England?\tstrikes\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (strikes, was first had in, England and Scotland) -> strikes (5341ms)\nWho was the first king of England?\tHorse chestnut trees\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (Horse chestnut trees, were first introduced to, England) -> Horse chestnut trees (5341ms)\nWho was the first king of England?\tThe Norwich Canary\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (The Norwich Canary, was first introduced into, England) -> The Norwich Canary (5325ms)\nWho was the first king of England?\tthe North East\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the North East, have become the first in, England) -> the North East (5316ms)\nWho was the first king of England?\tlegal insanity\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (legal insanity, was first introduced in, England) -> legal insanity (5365ms)\nWho was the first king of England?\tGerman Palatines\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (German Palatines, had first emigrated to, England) -> German Palatines (5349ms)\nWho was the first king of England?\tthe tree\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (the tree, was first introduced into, England) -> the tree (5349ms)\nWho was the first king of England?\tThe breed\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (The breed, was first introduced to, England) -> The breed (5325ms)\nWho was the first king of England?\tmahogany plantation\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (mahogany plantation, was first introduced into, England) -> mahogany plantation (5341ms)\nWho was the first king of England?\twarm beer\t1.444444444452\tWho was the first king of England? -> $x: ($x, have invent, england) -> (warm beer, had therefore been unable to invent, England) -> warm beer (5325ms)\nWho was the first king of England?\tthe play\t1.444444444452\tWho was the first king of England? -> $x: ($x, first perform, england) -> (the play, was first performed in, England) -> the play (5357ms)\nWho was the first king of England?\tthe word\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (the word, may first have appeared in, England) -> the word (5333ms)\nWho was the first king of England?\tcivil registration\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (civil registration, was first introduced in, England and Wales) -> civil registration (5341ms)\nWho was the first king of England?\tGin\t1.444444444452\tWho was the first king of England? -> $x: ($x, have first, england) -> (Gin, had first emerged in, England) -> Gin (5349ms)\nWho was the first king of England?\tthe monocle\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (the monocle, was first introduced in, England) -> the monocle (5365ms)\nWho was the first king of England?\ta new treatment\t1.444444444452\tWho was the first king of England? -> $x: ($x, have invent, england) -> (a new treatment, had been invented in, England) -> a new treatment (5333ms)\nWho was the first king of England?\ta unique cotton fabric\t1.444444444452\tWho was the first king of England? -> $x: ($x, first introduce, england) -> (a unique cotton fabric, first introduced into, England) -> a unique cotton fabric (5325ms)\nWho was the first king of England?\tLear\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Lear, [is] king of, England) -> Lear (5387ms)\nWho was the first king of England?\tThe Lionheart\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (The Lionheart, is King of, England) -> The Lionheart (5395ms)\nWho was the first king of England?\tthe Eighth\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Eighth, was king of, England) -> the Eighth (5388ms)\nWho was the first king of England?\tthe general public\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the general public, was the King of, England) -> the general public (5365ms)\nWho was the first king of England?\tthe Battle\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Battle, was crowned King of, England) -> the Battle (5395ms)\nWho was the first king of England?\t978 Ethelred\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (978 Ethelred, was crowned king of, England) -> 978 Ethelred (5395ms)\nWho was the first king of England?\tHenry Tudor\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Henry Tudor, was proclaimed King of, England) -> Henry Tudor (5395ms)\nWho was the first king of England?\tthe conquest\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the conquest, was crowned King of, England) -> the conquest (5373ms)\nWho was the first king of England?\tHarold\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Harold, [is] the king of, England) -> Harold (5388ms)\nWho was the first king of England?\tEdward\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Edward, [is] king of, England) -> Edward (5387ms)\nWho was the first king of England?\tThe very next day Harold\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (The very next day Harold, was crowned king of, England) -> The very next day Harold (5373ms)\nWho was the first king of England?\tEdgar\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Edgar, [is] king of, England) -> Edgar (5380ms)\nWho was the first king of England?\tGeorge III\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (George III, is King of, England) -> George III (5402ms)\nWho was the first king of England?\tGeorge VI\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (George VI, was king of, England) -> George VI (5395ms)\nWho was the first king of England?\tEdward V\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Edward V, was king of, England) -> Edward V (5395ms)\nWho was the first king of England?\tGod\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (God, [is] king of, England) -> God (5387ms)\nWho was the first king of England?\tHISTORY 1327 Edward III\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (HISTORY 1327 Edward III, is coronated King of, England) -> HISTORY 1327 Edward III (5387ms)\nWho was the first king of England?\tRichard III\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Richard III, was crowned King of, England) -> Richard III (5402ms)\nWho was the first king of England?\tEdward II\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Edward II, was became king of, England) -> Edward II (5402ms)\nWho was the first king of England?\tWorld history\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (World history, was the kings of, England) -> World history (5365ms)\nWho was the first king of England?\tUther Pendragon\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Uther Pendragon, was king of, England) -> Uther Pendragon (5402ms)\nWho was the first king of England?\twhoever\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (whoever, was King of, England) -> whoever (5373ms)\nWho was the first king of England?\tEdward VII\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Edward VII, was King of, England) -> Edward VII (5387ms)\nWho was the first king of England?\tthe Dane\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Dane, [is] king of, England) -> the Dane (5395ms)\nWho was the first king of England?\tLancaster\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Lancaster, [is] king of, England) -> Lancaster (5373ms)\nWho was the first king of England?\tLackland\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Lackland, [is] king of, England) -> Lackland (5380ms)\nWho was the first king of England?\tGeorge V\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (George V, was crowned King of, England) -> George V (5395ms)\nWho was the first king of England?\tRichard\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Richard, [is] king of, England) -> Richard (5380ms)\nWho was the first king of England?\t19 November 1600 ? 30 January 1649\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (19 November 1600 ? 30 January 1649, was King of, England) -> 19 November 1600 ? 30 January 1649 (5365ms)\nWho was the first king of England?\tCharles II\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Charles II, was King of, England) -> Charles II (5402ms)\nWho was the first king of England?\tPrince William\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Prince William, be King of, England) -> Prince William (5365ms)\nWho was the first king of England?\tEdward IV\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Edward IV, was crowned king of, England) -> Edward IV (5365ms)\nWho was the first king of England?\tEthelred\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Ethelred, was king of, England) -> Ethelred (5380ms)\nWho was the first king of England?\tone day\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (one day, be King of, England) -> one day (5380ms)\nWho was the first king of England?\tthe Confessor\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Confessor, [is] king of, England) -> the Confessor (5387ms)\nWho was the first king of England?\tEadwig\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Eadwig, [is] king of, England) -> Eadwig (5365ms)\nWho was the first king of England?\tStephen\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Stephen, [is] king of, England) -> Stephen (5395ms)\nWho was the first king of England?\tthe Lionhearted\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Lionhearted, [is] king of, England) -> the Lionhearted (5388ms)\nWho was the first king of England?\tEngland Edward IV\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (England Edward IV, was King of, England) -> England Edward IV (5380ms)\nWho was the first king of England?\tthe game players\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the game players, will be king of, England) -> the game players (5395ms)\nWho was the first king of England?\tAthelstan\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Athelstan, [is] the king of, England) -> Athelstan (5380ms)\nWho was the first king of England?\tEgbert\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Egbert, [is] king of, England) -> Egbert (5402ms)\nWho was the first king of England?\tKing Henry II\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (King Henry II, was the king of, England) -> King Henry II (5373ms)\nWho was the first king of England?\tArthur\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Arthur, was King of, England) -> Arthur (5380ms)\nWho was the first king of England?\tHenry III\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Henry III, is crowned King of, England) -> Henry III (5365ms)\nWho was the first king of England?\tCanute\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Canute, [is] king of, England) -> Canute (5402ms)\nWho was the first king of England?\tthe head\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the head, is the king of, England) -> the head (5365ms)\nWho was the first king of England?\tthe Longshanks\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Longshanks, [is] king of, England) -> the Longshanks (5380ms)\nWho was the first king of England?\tWilliam III\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (William III, was the king of, England) -> William III (5380ms)\nWho was the first king of England?\tthe 8th\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the 8th, was King of, England) -> the 8th (5380ms)\nWho was the first king of England?\tNorway\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Norway, then is King of, England) -> Norway (5402ms)\nWho was the first king of England?\tthe Lionheart\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Lionheart, [is] the king of, England) -> the Lionheart (5388ms)\nWho was the first king of England?\tHenry II\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Henry II, was king of, England) -> Henry II (5380ms)\nWho was the first king of England?\tAlfred\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Alfred, [is] king of, England) -> Alfred (5387ms)\nWho was the first king of England?\ta wretched and peevish fellow\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (a wretched and peevish fellow, is this king of, England) -> a wretched and peevish fellow (5395ms)\nWho was the first king of England?\tOne player\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (One player, is the king of, England) -> One player (5395ms)\nWho was the first king of England?\tthe Unready\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Unready, was King of, England) -> the Unready (5373ms)\nWho was the first king of England?\tKing James\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (King James, was the king of, England) -> King James (5395ms)\nWho was the first king of England?\tJames\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (James, [is] king of, England) -> James (5402ms)\nWho was the first king of England?\ta boy\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (a boy, was king of, England) -> a boy (5380ms)\nWho was the first king of England?\tNormandy\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Normandy, is king of, England) -> Normandy (5365ms)\nWho was the first king of England?\tHenry\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Henry, [is] king of, England) -> Henry (5402ms)\nWho was the first king of England?\tIsrael and Jesus\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Israel and Jesus, was king of, England) -> Israel and Jesus (5373ms)\nWho was the first king of England?\tPhilip\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Philip, was king of, England) -> Philip (5373ms)\nWho was the first king of England?\tthe Great\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (the Great, is king of, England) -> the Great (5395ms)\nWho was the first king of England?\tScots\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Scots, [is] became king of, England) -> Scots (5387ms)\nWho was the first king of England?\tOrange\t1.222222222214\tWho was the first king of England? -> $x: ($x, be king of, england) -> (Orange, [is] became king of, England) -> Orange (5373ms)\nWho was the first king of England?\tpolitical affiliation\t1.000000000005\tWho was the first king of England? -> $x: ($x, be found of, england) -> (political affiliation, found to be representative of, England) -> political affiliation (5402ms)\nWho was the first king of England?\tDarlington\t1.000000000005\tWho was the first king of England? -> $x: ($x, be found of, england) -> (Darlington, can be found two of, England) -> Darlington (5402ms)\nWho was the first king of England?\tThe bubbly elixir\t1.000000000005\tWho was the first king of England? -> $x: ($x, be found of, england) -> (The bubbly elixir, is hard to find outside of, New England) -> The bubbly elixir (5402ms)\nWho was the first king of England?\tTim Bresnan\t1.000000000005\tWho was the first king of England? -> $x: ($x, be found of, england) -> (Tim Bresnan, could be the find of, England?s winter) -> Tim Bresnan (5402ms)\nWho was the first king of England?\tfree and open\t1.0000000000040001\tWho was the first king of England? -> $x: ($x, be first kind of, england) -> (free and open, is a first-of-a-kind for, northern New England) -> free and open (5408ms)\nWho was the first king of England?\tfacility\t1.0000000000040001\tWho was the first king of England? -> $x: ($x, be first kind of, england) -> (facility, is the first-of-its-kind in, the New England region) -> facility (5408ms)\nWho was the first king of England?\tratite birds\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (ratite birds, were discovered in, South America) -> ratite birds (5408ms)\nWho was the first king of England?\tPlatinum\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Platinum, was discovered in, South America) -> Platinum (5422ms)\nWho was the first king of England?\tthe path\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (the path, discover the wild heart of, South America) -> the path (5408ms)\nWho was the first king of England?\tdiamonds\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (diamonds, were discovered in, South America) -> diamonds (5408ms)\nWho was the first king of England?\tMilan 1500.4.22 Cabral\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Milan 1500.4.22 Cabral, discovered, South America) -> Milan 1500.4.22 Cabral (5408ms)\nWho was the first king of England?\tthe same\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (the same, had been discovered in, South America) -> the same (5415ms)\nWho was the first king of England?\tlarge snakes\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (large snakes, have been discovered in, South America) -> large snakes (5422ms)\nWho was the first king of England?\tA new small manatee\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (A new small manatee, has been discovered in, South America) -> A new small manatee (5415ms)\nWho was the first king of England?\tSpanish missionaries\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Spanish missionaries, discovered the flower in, South America) -> Spanish missionaries (5408ms)\nWho was the first king of England?\tAmerigo Vespucci\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Amerigo Vespucci, discovered, South America) -> Amerigo Vespucci (5415ms)\nWho was the first king of England?\ta small moth\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (a small moth, was discovered in, South America) -> a small moth (5415ms)\nWho was the first king of England?\tdiesel fuel\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (diesel fuel, has been discovered in, South America) -> diesel fuel (5408ms)\nWho was the first king of England?\tNorth America\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (North America, is now discovering new places in, South America) -> North America (5415ms)\nWho was the first king of England?\tA brightly coloured bird\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (A brightly coloured bird, has been discovered in, South America) -> A brightly coloured bird (5415ms)\nWho was the first king of England?\tBritain\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Britain, had discovered, South Americas gold and silver) -> Britain (5415ms)\nWho was the first king of England?\tOnly the third raptor\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Only the third raptor, to be discovered in, South America) -> Only the third raptor (5408ms)\nWho was the first king of England?\tAnthurium andreanum\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Anthurium andreanum, was actually discovered in, South America) -> Anthurium andreanum (5422ms)\nWho was the first king of England?\tthe largest theropod\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (the largest theropod, to be discovered in, South America) -> the largest theropod (5422ms)\nWho was the first king of England?\thes\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (hes, discovered in, South America) -> hes (5415ms)\nWho was the first king of England?\tChihuahuas\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Chihuahuas, have been discovered in, South America) -> Chihuahuas (5415ms)\nWho was the first king of England?\tThe araucana hen\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (The araucana hen, was first discovered in, south america) -> The araucana hen (5408ms)\nWho was the first king of England?\tCabral\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Cabral, discovered, South America) -> Cabral (5422ms)\nWho was the first king of England?\t15mm short-case pinfires\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (15mm short-case pinfires, were discovered in, South America) -> 15mm short-case pinfires (5408ms)\nWho was the first king of England?\tFather\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Father, discovered something amazing recently in, South America) -> Father (5422ms)\nWho was the first king of England?\tEast Africa 1500 Cabral\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (East Africa 1500 Cabral, discovered, South America) -> East Africa 1500 Cabral (5422ms)\nWho was the first king of England?\tColumbus\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Columbus, discovering, South America) -> Columbus (5422ms)\nWho was the first king of England?\tThe Araucana hen\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (The Araucana hen, was discovered in, South America) -> The Araucana hen (5415ms)\nWho was the first king of England?\tSp platina\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Sp platina, discovered in, south america) -> Sp platina (5422ms)\nWho was the first king of England?\tSpain and Portugal\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Spain and Portugal, first discovered, South America) -> Spain and Portugal (5422ms)\nWho was the first king of England?\tPortugal 1500 Cabral\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Portugal 1500 Cabral, discovered, South America) -> Portugal 1500 Cabral (5415ms)\nWho was the first king of England?\tColumbus 1500 Portuguese Cabral\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Columbus 1500 Portuguese Cabral, discovered, South America) -> Columbus 1500 Portuguese Cabral (5408ms)\nWho was the first king of England?\tthe metal\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (the metal, were discovered in, South America) -> the metal (5415ms)\nWho was the first king of England?\ta person\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (a person, discover inside, South america) -> a person (5415ms)\nWho was the first king of England?\tVespucci\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Vespucci, was the first to discover, South America) -> Vespucci (5408ms)\nWho was the first king of England?\tthe capture and trial\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (the capture and trial, discovered still alive in, South America) -> the capture and trial (5408ms)\nWho was the first king of England?\tHokan\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (Hokan, Discovered in, South America) -> Hokan (5415ms)\nWho was the first king of England?\tcoca\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (coca, had been discovered in, South America) -> coca (5422ms)\nWho was the first king of England?\tThe Portuguese\t0.999999999999\tWho was the first king of England? -> $x: ($x, discover, south america) -> (The Portuguese, discovered, eastern South America) -> The Portuguese (5408ms)\nWho was the first king of England?\tMer\t0.888888888896\tWho was the first king of England? -> $x: ($x, be origin of, england) -> (Mer, is the origin of, the epithet Merry England) -> Mer (5422ms)\nWho was the first king of England?\t942\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (942, is history of, England) -> 942 (5422ms)\nWho was the first king of England?\tYork\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (York, is the history of, England?) -> York (5428ms)\nWho was the first king of England?\tthe bulk\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (the bulk, was called the History of, England) -> the bulk (5428ms)\nWho was the first king of England?\ta thousand persons\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (a thousand persons, is called the history of, England) -> a thousand persons (5428ms)\nWho was the first king of England?\tThe evening?s program\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (The evening?s program, will be A Haunted History of, New England) -> The evening?s program (5422ms)\nWho was the first king of England?\tthe English People\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (the English People, is really a history of, England) -> the English People (5428ms)\nWho was the first king of England?\tlast\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (last, is a history of, England) -> last (5428ms)\nWho was the first king of England?\tHume?s most successful work\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (Hume?s most successful work, was History of, England) -> Hume?s most successful work (5428ms)\nWho was the first king of England?\tPortchester\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (Portchester, can be considered a complete history of, England) -> Portchester (5428ms)\nWho was the first king of England?\thistorians\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (historians, is the financial history of, England) -> historians (5428ms)\nWho was the first king of England?\t28 Ingram\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (28 Ingram, is the classic history of, England) -> 28 Ingram (5428ms)\nWho was the first king of England?\tEnglish place?names\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (English place?names, is the history of, England) -> English place?names (5422ms)\nWho was the first king of England?\tThe best parts\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (The best parts, may be the history of, New England fishing) -> The best parts (5428ms)\nWho was the first king of England?\tTol Eressea\t0.888888888895\tWho was the first king of England? -> $x: ($x, be history of, england) -> (Tol Eressea, was the history of, England) -> Tol Eressea (5428ms)\nWho was the first king of England?\tBruce Springsteen\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first live in, england) -> (Bruce Springsteen, does his first live performance in, England) -> Bruce Springsteen (5434ms)\nWho was the first king of England?\tLaurier\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Laurier, made his first visit to, England) -> Laurier (5440ms)\nWho was the first king of England?\tJohnson\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Johnson, made his first appearance for, England) -> Johnson (5434ms)\nWho was the first king of England?\tthe traditional type\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the traditional type, were first made in, England) -> the traditional type (5445ms)\nWho was the first king of England?\tthe choir\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the choir, made its first international tour of, England) -> the choir (5440ms)\nWho was the first king of England?\tGeorge\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (George, was probably first made well known in, England) -> George (5444ms)\nWho was the first king of England?\tcaptain James Cook\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (captain James Cook, made the first claim for, England) -> captain James Cook (5440ms)\nWho was the first king of England?\tLondon\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first live in, england) -> (London, spent my first five years living in, England and Rome) -> London (5445ms)\nWho was the first king of England?\tEurope blogs\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Europe blogs, are first made in, England) -> Europe blogs (5428ms)\nWho was the first king of England?\tWhite paper\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (White paper, was first made in, England) -> White paper (5428ms)\nWho was the first king of England?\tthe Astaires\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the Astaires, made their first trip to, England) -> the Astaires (5434ms)\nWho was the first king of England?\tRockingham\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Rockingham, was first made in, England and) -> Rockingham (5434ms)\nWho was the first king of England?\tfurniture\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (furniture, was first made popular in, England) -> furniture (5445ms)\nWho was the first king of England?\tRay Parer\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Ray Parer, made the first single-engined flight from, England) -> Ray Parer (5435ms)\nWho was the first king of England?\tAndy\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Andy, made his first trip to, England) -> Andy (5434ms)\nWho was the first king of England?\tMoss\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Moss, will make his first trip back to, New England) -> Moss (5440ms)\nWho was the first king of England?\tGerman warplanes\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (German warplanes, made their first direct attack on, England) -> German warplanes (5428ms)\nWho was the first king of England?\tthe Lorrainers\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the Lorrainers, made their first home in, England) -> the Lorrainers (5440ms)\nWho was the first king of England?\tGURU MAHARAJ\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (GURU MAHARAJ, Ji made his first public appearance in, England) -> GURU MAHARAJ (5444ms)\nWho was the first king of England?\tHolbein\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first travel to, england) -> (Holbein, first travelled to, England) -> Holbein (5444ms)\nWho was the first king of England?\tGinger beer\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Ginger beer, was first made in, England) -> Ginger beer (5439ms)\nWho was the first king of England?\tthe Wysockis\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the Wysockis, made their first trip to, New England) -> the Wysockis (5444ms)\nWho was the first king of England?\tIronstone china\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Ironstone china, was first made in, England) -> Ironstone china (5444ms)\nWho was the first king of England?\tthe European precursor\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the European precursor, made its first appearance in, England) -> the European precursor (5440ms)\nWho was the first king of England?\tSaint George\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Saint George, was probably first made known in, England) -> Saint George (5444ms)\nWho was the first king of England?\tErasmus\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Erasmus, made his first visit to, England) -> Erasmus (5445ms)\nWho was the first king of England?\tchocolate pots\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (chocolate pots, were first made in, England) -> chocolate pots (5435ms)\nWho was the first king of England?\tThe Black Death\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (The Black Death, makes its first appearance in, England) -> The Black Death (5440ms)\nWho was the first king of England?\tWalt\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Walt, made his first postwar trip to, England and Ireland) -> Walt (5444ms)\nWho was the first king of England?\ta terracotta clay teapot\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (a terracotta clay teapot, was first made in, England) -> a terracotta clay teapot (5444ms)\nWho was the first king of England?\ta fizzy or sparkling wine\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (a fizzy or sparkling wine, was first made in, England) -> a fizzy or sparkling wine (5434ms)\nWho was the first king of England?\t?Black ? glass\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (?Black ? glass, was first made in, England) -> ?Black ? glass (5440ms)\nWho was the first king of England?\tSwedenborg\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Swedenborg, made his first visit to, England) -> Swedenborg (5444ms)\nWho was the first king of England?\tmaterial\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (material, first made in, England) -> material (5444ms)\nWho was the first king of England?\tthe entertainment\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the entertainment, were first made in, England) -> the entertainment (5440ms)\nWho was the first king of England?\tthe modern version\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the modern version, was first made popular in, England) -> the modern version (5434ms)\nWho was the first king of England?\tthe Gypsies or Rommany\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the Gypsies or Rommany, made their first appearance in, England) -> the Gypsies or Rommany (5445ms)\nWho was the first king of England?\tMatchbox Cars\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Matchbox Cars, were first made in, England) -> Matchbox Cars (5434ms)\nWho was the first king of England?\tan engine\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (an engine, made the first powered flight in, England) -> an engine (5434ms)\nWho was the first king of England?\tBradley\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Bradley, made his first visit to, England) -> Bradley (5440ms)\nWho was the first king of England?\tthe reformation\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (the reformation, is making his first trip to, England) -> the reformation (5434ms)\nWho was the first king of England?\tChris Bennett\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Chris Bennett, is making his first trip to, England) -> Chris Bennett (5440ms)\nWho was the first king of England?\tJockey Steve Cauthen\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Jockey Steve Cauthen, made his first race in, England) -> Jockey Steve Cauthen (5440ms)\nWho was the first king of England?\ta professor English literature\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (a professor English literature, made his first trip to, England) -> a professor English literature (5440ms)\nWho was the first king of England?\tTibetan dogs\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Tibetan dogs, made their first appearance in, England) -> Tibetan dogs (5440ms)\nWho was the first king of England?\t1887 Deakin\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (1887 Deakin, made his first visit to, England) -> 1887 Deakin (5434ms)\nWho was the first king of England?\tNicholetts\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Nicholetts, made the first non-stop flight from, England) -> Nicholetts (5435ms)\nWho was the first king of England?\tLe Doux\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Le Doux, was making his first appearance in, England) -> Le Doux (5434ms)\nWho was the first king of England?\tCody\t0.8888888888940001\tWho was the first king of England? -> $x: ($x, first make, england) -> (Cody, made the first powered flight in, England) -> Cody (5434ms)\nWho was the first king of England?\tchoices\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (choices, recently discovered species in, Scotland) -> choices (5454ms)\nWho was the first king of England?\tthe possible prehistoric brews\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (the possible prehistoric brews, discovered in, Scotland) -> the possible prehistoric brews (5449ms)\nWho was the first king of England?\tone animal\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (one animal, discovered in, Perthshire Scotland) -> one animal (5449ms)\nWho was the first king of England?\tThe type of ejected deposit\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (The type of ejected deposit, discovered in, North West Scotland) -> The type of ejected deposit (5449ms)\nWho was the first king of England?\tGladys\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (Gladys, discovered, Scotland Health Care System) -> Gladys (5454ms)\nWho was the first king of England?\t1777\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (1777, have been discovered in, Scotland) -> 1777 (5449ms)\nWho was the first king of England?\t0 Golf\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (0 Golf, was discovered in, Scotland) -> 0 Golf (5449ms)\nWho was the first king of England?\tthe perfect spot\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (the perfect spot, to discover, Scotland 's West Coast) -> the perfect spot (5449ms)\nWho was the first king of England?\tthe originals\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (the originals, were discovered off, the West Coast of Scotland) -> the originals (5449ms)\nWho was the first king of England?\tparticipation\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (participation, discover the history of, Scotland) -> participation (5449ms)\nWho was the first king of England?\tthe UK\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (the UK, can discover, Scotland?s magical lochs) -> the UK (5454ms)\nWho was the first king of England?\tthe 1840s when Victoria and Albert\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (the 1840s when Victoria and Albert, also discovered, Scotland) -> the 1840s when Victoria and Albert (5449ms)\nWho was the first king of England?\ta medieval knight\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (a medieval knight, was discovered at, Stirling Castle Scotland) -> a medieval knight (5454ms)\nWho was the first king of England?\tTulip Inn Glasgow\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (Tulip Inn Glasgow, is the ideal base for discovering, Scotland) -> Tulip Inn Glasgow (5449ms)\nWho was the first king of England?\tthe game\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (the game, was discovered in, Scotland) -> the game (5449ms)\nWho was the first king of England?\tISA\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (ISA, was first discovered in, Scotland) -> ISA (5454ms)\nWho was the first king of England?\tstudents\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, henry viii) -> (students, will discover, the real Henry VIII) -> students (5449ms)\nWho was the first king of England?\t5000 years\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (5000 years, was discovered in, Scotland) -> 5000 years (5454ms)\nWho was the first king of England?\tabout fifty examples\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (about fifty examples, have been discovered in, Scotland) -> about fifty examples (5449ms)\nWho was the first king of England?\tKristianna\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (Kristianna, discovers the magic of, Scotland) -> Kristianna (5449ms)\nWho was the first king of England?\tthe Lewis Chessmen\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (the Lewis Chessmen, was discovered in, Scotland) -> the Lewis Chessmen (5449ms)\nWho was the first king of England?\tOasis\t0.888888888888\tWho was the first king of England? -> $x: ($x, discover, scotland) -> (Oasis, were discovered as well as, Scotland?s own Biffy Clyro) -> Oasis (5454ms)\nWho was the first king of England?\tWhite pine lumber\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (White pine lumber, was first exported to, England) -> White pine lumber (5459ms)\nWho was the first king of England?\tpasture Hereford cattle\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (pasture Hereford cattle, were first exported from, England) -> pasture Hereford cattle (5467ms)\nWho was the first king of England?\tA Christmas Carol\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (A Christmas Carol, was first published in, England) -> A Christmas Carol (5475ms)\nWho was the first king of England?\tChristmas Cards\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Christmas Cards, was first seen in, England) -> Christmas Cards (5459ms)\nWho was the first king of England?\tPrejudice\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Prejudice, was first published in, England) -> Prejudice (5467ms)\nWho was the first king of England?\tthought\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (thought, are first manifested in, England) -> thought (5475ms)\nWho was the first king of England?\tgenerations\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (generations, was first published in, England) -> generations (5467ms)\nWho was the first king of England?\tcoffees\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (coffees, was first shipped to, England) -> coffees (5459ms)\nWho was the first king of England?\tThe torpedo style\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (The torpedo style, was first used in, England) -> The torpedo style (5459ms)\nWho was the first king of England?\thard money limits\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (hard money limits, were first established in, England) -> hard money limits (5475ms)\nWho was the first king of England?\t1525 Turkeys\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (1525 Turkeys, are first eaten in, England) -> 1525 Turkeys (5475ms)\nWho was the first king of England?\tDinosaur fossils\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Dinosaur fossils, were first found in, England) -> Dinosaur fossils (5463ms)\nWho was the first king of England?\tAltoids\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Altoids, were first manufactured in, England) -> Altoids (5471ms)\nWho was the first king of England?\tthe squadron\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the squadron, was first organized in, England) -> the squadron (5459ms)\nWho was the first king of England?\tExport IPAs\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Export IPAs, were first brewed in, England) -> Export IPAs (5459ms)\nWho was the first king of England?\tHosta plantaginea\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Hosta plantaginea, was first imported to, England) -> Hosta plantaginea (5471ms)\nWho was the first king of England?\thomeopathic remedies\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (homeopathic remedies, were first identified in, England) -> homeopathic remedies (5471ms)\nWho was the first king of England?\tthe coast\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the coast, was first published in, England) -> the coast (5454ms)\nWho was the first king of England?\tTurkey\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Turkey, was first imported into, England) -> Turkey (5459ms)\nWho was the first king of England?\tthe practice\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the practice, was first spreading in, England) -> the practice (5454ms)\nWho was the first king of England?\tthe script\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the script, was first published in, England) -> the script (5463ms)\nWho was the first king of England?\tBristol\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Bristol, was the first of, England) -> Bristol (5454ms)\nWho was the first king of England?\tmarriage\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (marriage, was first regulated in, England) -> marriage (5471ms)\nWho was the first king of England?\tthe word ?nectarine ?\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the word ?nectarine ?, was first used in, England) -> the word ?nectarine ? (5467ms)\nWho was the first king of England?\tthe Earth\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the Earth, was first published in, England) -> the Earth (5479ms)\nWho was the first king of England?\tPurple Lilac\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Purple Lilac, was first imported from, England) -> Purple Lilac (5463ms)\nWho was the first king of England?\trailways\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (railways, were first constructed in, England) -> railways (5471ms)\nWho was the first king of England?\tICE tadpole trikes\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (ICE tadpole trikes, were first produced in, England) -> ICE tadpole trikes (5467ms)\nWho was the first king of England?\t?sovereigns\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (?sovereigns, were first minted in, England) -> ?sovereigns (5475ms)\nWho was the first king of England?\tserfdom\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (serfdom, was first extinguished in, England) -> serfdom (5467ms)\nWho was the first king of England?\tThe French Basset\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (The French Basset, was first imported to, England) -> The French Basset (5471ms)\nWho was the first king of England?\tThe technique\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (The technique, was first used in, England) -> The technique (5475ms)\nWho was the first king of England?\tthe Cardigan Welsh Corgi\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the Cardigan Welsh Corgi, was first shown in, England) -> the Cardigan Welsh Corgi (5471ms)\nWho was the first king of England?\tpedestrianism ?\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (pedestrianism ?, was a first in, England) -> pedestrianism ? (5463ms)\nWho was the first king of England?\tPugs\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Pugs, were first exhibited in, England) -> Pugs (5454ms)\nWho was the first king of England?\tdemonstrations\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (demonstrations, were given first in, England) -> demonstrations (5463ms)\nWho was the first king of England?\tThe style\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (The style, was first created in, England) -> The style (5454ms)\nWho was the first king of England?\tScreen-printing\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Screen-printing, was first patented in, England) -> Screen-printing (5459ms)\nWho was the first king of England?\tcriminal abortion\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (criminal abortion, was first codified in, England) -> criminal abortion (5459ms)\nWho was the first king of England?\tthe term ?enthusiasm ?\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the term ?enthusiasm ?, was first used in, England) -> the term ?enthusiasm ? (5475ms)\nWho was the first king of England?\tthe Schmallenberg virus\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the Schmallenberg virus, was first detected in, England) -> the Schmallenberg virus (5463ms)\nWho was the first king of England?\tBSE\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (BSE, was first detected in, England) -> BSE (5463ms)\nWho was the first king of England?\tKimberly A. Rinker Hobbles\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Kimberly A. Rinker Hobbles, were first used in, England) -> Kimberly A. Rinker Hobbles (5454ms)\nWho was the first king of England?\tthe greater St . Johns dog\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the greater St . Johns dog, was first imported to, England) -> the greater St . Johns dog (5467ms)\nWho was the first king of England?\ta children?s rhyme\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (a children?s rhyme, was first published in, England) -> a children?s rhyme (5471ms)\nWho was the first king of England?\tthe gospel\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the gospel, was first preached in, England) -> the gospel (5454ms)\nWho was the first king of England?\tthe World ?\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the World ?, was first published in, England) -> the World ? (5463ms)\nWho was the first king of England?\tTransferware design techniques\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Transferware design techniques, were first created in, England) -> Transferware design techniques (5475ms)\nWho was the first king of England?\tTransferware design techiniques\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Transferware design techiniques, were first created in, England) -> Transferware design techiniques (5471ms)\nWho was the first king of England?\tUnitarian churches\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Unitarian churches, were first established in, England) -> Unitarian churches (5463ms)\nWho was the first king of England?\tCheddar Cheese\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Cheddar Cheese, was first produced in, England) -> Cheddar Cheese (5459ms)\nWho was the first king of England?\tThe Schmallenberg virus\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (The Schmallenberg virus, was first identified in, England) -> The Schmallenberg virus (5475ms)\nWho was the first king of England?\tThe feigned issue\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (The feigned issue, was first developed in, England) -> The feigned issue (5479ms)\nWho was the first king of England?\talgae\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (algae, was first publicized in, England) -> algae (5471ms)\nWho was the first king of England?\tEngland Proportionality\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (England Proportionality, was first adopted in, England) -> England Proportionality (5467ms)\nWho was the first king of England?\tDarwin\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Darwin, was felt first in, England) -> Darwin (5454ms)\nWho was the first king of England?\tmetric ones\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (metric ones, were first suggested in, England) -> metric ones (5471ms)\nWho was the first king of England?\tcocoa nuts\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (cocoa nuts, were first imported into, England) -> cocoa nuts (5459ms)\nWho was the first king of England?\tGermany\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Germany, was first shown in, England) -> Germany (5467ms)\nWho was the first king of England?\tthe standard\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the standard, was first published in, England) -> the standard (5471ms)\nWho was the first king of England?\tStephen Churchill\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Stephen Churchill, was the first in, England) -> Stephen Churchill (5467ms)\nWho was the first king of England?\tthe wine\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the wine, was first shipped to, England) -> the wine (5467ms)\nWho was the first king of England?\tthe Savior\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (the Savior, was first known in, England) -> the Savior (5463ms)\nWho was the first king of England?\tviolets\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (violets, were first imported from, England) -> violets (5467ms)\nWho was the first king of England?\tThe Tibetan Spaniel\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (The Tibetan Spaniel, first was brought to, England) -> The Tibetan Spaniel (5463ms)\nWho was the first king of England?\tSatellite communications\t0.7777777777849999\tWho was the first king of England? -> $x: ($x, be first, england) -> (Satellite communications, were first brought to, England) -> Satellite communications (5459ms)\nWho was the first king of England?\tMA\t0.777777777784\tWho was the first king of England? -> $x: ($x, be example of, england) -> (MA, is a perfect example of, a quaint New England town) -> MA (5479ms)\nWho was the first king of England?\tMrs. BURNHAM\t0.777777777784\tWho was the first king of England? -> $x: ($x, be example of, england) -> (Mrs. BURNHAM, was an excellent example of, the New England woman) -> Mrs. BURNHAM (5479ms)\nWho was the first king of England?\tThe homestead\t0.777777777784\tWho was the first king of England? -> $x: ($x, be example of, england) -> (The homestead, is a superb example of, a Colonial New England) -> The homestead (5479ms)\nWho was the first king of England?\tThe Ellithorpe House\t0.777777777784\tWho was the first king of England? -> $x: ($x, be example of, england) -> (The Ellithorpe House, is an excellent example of, New England) -> The Ellithorpe House (5479ms)\nWho was the first king of England?\tThe Kelmscott Manor\t0.777777777784\tWho was the first king of England? -> $x: ($x, be example of, england) -> (The Kelmscott Manor, is a prime example of, England) -> The Kelmscott Manor (5479ms)\nWho was the first king of England?\tchickens\t0.77777777778\tWho was the first king of England? -> $x: ($x, first introduce, south america) -> (chickens, were first introduced into, South America) -> chickens (5479ms)\nWho was the first king of England?\tGripad\t0.77777777778\tWho was the first king of England? -> $x: ($x, have first, south america) -> (Gripad, has established its first branch in, South America) -> Gripad (5479ms)\nWho was the first king of England?\tCoffee\t0.77777777778\tWho was the first king of England? -> $x: ($x, first introduce, south america) -> (Coffee, was first introduced in, South America) -> Coffee (5479ms)\nWho was the first king of England?\ta sacred food\t0.77777777778\tWho was the first king of England? -> $x: ($x, have first, south america) -> (a sacred food, has been first found in, South America) -> a sacred food (5479ms)\nWho was the first king of England?\tcarrots\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (carrots, introduced into, England) -> carrots (5482ms)\nWho was the first king of England?\ta machine\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (a machine, invented in, England) -> a machine (5489ms)\nWho was the first king of England?\tbeer\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (beer, invented in, England) -> beer (5502ms)\nWho was the first king of England?\tA name\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (A name, introduced to, England) -> A name (5486ms)\nWho was the first king of England?\tparliamentary government\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (parliamentary government, invented in, England) -> parliamentary government (5502ms)\nWho was the first king of England?\ta dog biscuit\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a dog biscuit, introduced in, England) -> a dog biscuit (5489ms)\nWho was the first king of England?\tThe language\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The language, was invented in, England) -> The language (5503ms)\nWho was the first king of England?\ta technology\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a technology, introduced from, England) -> a technology (5491ms)\nWho was the first king of England?\tthe A1 Y-chromosome\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the A1 Y-chromosome, introduced into, England) -> the A1 Y-chromosome (5505ms)\nWho was the first king of England?\tGreece\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Greece, introduced into, England) -> Greece (5486ms)\nWho was the first king of England?\tthe old Italian method\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the old Italian method, introduced into, England) -> the old Italian method (5500ms)\nWho was the first king of England?\tsashes\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (sashes, were invented in, England) -> sashes (5503ms)\nWho was the first king of England?\tthe French form\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the French form, introduced into, England) -> the French form (5500ms)\nWho was the first king of England?\tn?t\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (n?t, invented in, England) -> n?t (5502ms)\nWho was the first king of England?\tthe word Soccer\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the word Soccer, invented in, England) -> the word Soccer (5486ms)\nWho was the first king of England?\tthe electric light bulb\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the electric light bulb, invented in, England) -> the electric light bulb (5503ms)\nWho was the first king of England?\tthe sport\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the sport, was invented in, England) -> the sport (5505ms)\nWho was the first king of England?\tmachines--\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (machines--, invented in, England) -> machines-- (5482ms)\nWho was the first king of England?\tthe legislation\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the legislation, introduced in, England) -> the legislation (5498ms)\nWho was the first king of England?\tNHS guidance\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (NHS guidance, introduced in, England) -> NHS guidance (5494ms)\nWho was the first king of England?\tThe first knitting machine\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The first knitting machine, was invented in, England) -> The first knitting machine (5482ms)\nWho was the first king of England?\tFootball\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (Football, was invented in, England) -> Football (5505ms)\nWho was the first king of England?\tThe friction match\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The friction match, was invented in, England) -> The friction match (5491ms)\nWho was the first king of England?\tThe guillotine and champagne\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The guillotine and champagne, were invented in, England) -> The guillotine and champagne (5500ms)\nWho was the first king of England?\tAmerican grey squirrel\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (American grey squirrel, introduced into, England) -> American grey squirrel (5482ms)\nWho was the first king of England?\tThalidomide victims LCD\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (Thalidomide victims LCD, invented in, England) -> Thalidomide victims LCD (5498ms)\nWho was the first king of England?\tthe = tax=20\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the = tax=20, introduced in, England) -> the = tax=20 (5500ms)\nWho was the first king of England?\tCricket\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (Cricket, was invented in, England) -> Cricket (5503ms)\nWho was the first king of England?\tThe sandwich\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The sandwich, was invented in, England) -> The sandwich (5494ms)\nWho was the first king of England?\tAn additional windmill type\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (An additional windmill type, invented in, England) -> An additional windmill type (5494ms)\nWho was the first king of England?\tNorman origin\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Norman origin, introduced into, England) -> Norman origin (5502ms)\nWho was the first king of England?\tThe French\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (The French, introduced into, England) -> The French (5498ms)\nWho was the first king of England?\ta complex poetic form\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a complex poetic form, introduced into, England) -> a complex poetic form (5489ms)\nWho was the first king of England?\tToastaBags\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (ToastaBags, were invented in, England) -> ToastaBags (5494ms)\nWho was the first king of England?\tpublic places\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (public places, introduced in, England) -> public places (5491ms)\nWho was the first king of England?\tA knitting machine\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (A knitting machine, invented in, England) -> A knitting machine (5496ms)\nWho was the first king of England?\tthe Christmas tree\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the Christmas tree, introduced into, England) -> the Christmas tree (5498ms)\nWho was the first king of England?\tRoman Catholicism\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Roman Catholicism, introduced to, England) -> Roman Catholicism (5498ms)\nWho was the first king of England?\tthe Norman French carpentier\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the Norman French carpentier, introduced into, England) -> the Norman French carpentier (5496ms)\nWho was the first king of England?\tthe first time\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the first time, introduced into, England) -> the first time (5489ms)\nWho was the first king of England?\t1271 1269 Toll roads\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (1271 1269 Toll roads, introduced in, England) -> 1271 1269 Toll roads (5503ms)\nWho was the first king of England?\tThe original technology\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The original technology, was invented in, England) -> The original technology (5489ms)\nWho was the first king of England?\tbaseball\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (baseball, invented in, England) -> baseball (5505ms)\nWho was the first king of England?\ta French/Norman surname\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a French/Norman surname, introduced into, England) -> a French/Norman surname (5500ms)\nWho was the first king of England?\tThe tree\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (The tree, introduced to, England) -> The tree (5486ms)\nWho was the first king of England?\tToday @ Noise Pop-Up Shop Ping pong\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (Today @ Noise Pop-Up Shop Ping pong, was invented in, England) -> Today @ Noise Pop-Up Shop Ping pong (5494ms)\nWho was the first king of England?\tThe first turkeys\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (The first turkeys, introduced into, England) -> The first turkeys (5505ms)\nWho was the first king of England?\tA 24-page , full-colour section\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (A 24-page , full-colour section, introduces, England) -> A 24-page , full-colour section (5503ms)\nWho was the first king of England?\tcotton-spinning machinery\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (cotton-spinning machinery, introduced in, England) -> cotton-spinning machinery (5496ms)\nWho was the first king of England?\t1066 Crossbows\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (1066 Crossbows, introduced to, England) -> 1066 Crossbows (5482ms)\nWho was the first king of England?\tOne more windmill type\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (One more windmill type, invented in, England) -> One more windmill type (5500ms)\nWho was the first king of England?\tthe sash\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the sash, was invented in, England) -> the sash (5496ms)\nWho was the first king of England?\tthe stake\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the stake, invented in, England) -> the stake (5486ms)\nWho was the first king of England?\tthe most famous levitation illusion\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the most famous levitation illusion, was invented in, England) -> the most famous levitation illusion (5502ms)\nWho was the first king of England?\tdecorations\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (decorations, introduced into, England) -> decorations (5491ms)\nWho was the first king of England?\ta gold substitute\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (a gold substitute, invented in, England) -> a gold substitute (5494ms)\nWho was the first king of England?\tThe harbinger of the bubonic plague\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (The harbinger of the bubonic plague, introduced into, England) -> The harbinger of the bubonic plague (5498ms)\nWho was the first king of England?\tsmooth pressing and dosage\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (smooth pressing and dosage, invented in, England) -> smooth pressing and dosage (5498ms)\nWho was the first king of England?\tsmallpox inoculation\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (smallpox inoculation, introduced into, England) -> smallpox inoculation (5502ms)\nWho was the first king of England?\tNew York\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (New York, introduced into, England) -> New York (5494ms)\nWho was the first king of England?\troyal miniaturist\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (royal miniaturist, introduced to, England) -> royal miniaturist (5486ms)\nWho was the first king of England?\tPhillips Model 1500\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Phillips Model 1500, Introduced in, England) -> Phillips Model 1500 (5494ms)\nWho was the first king of England?\tmartial arts\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (martial arts, was invented in, England) -> martial arts (5502ms)\nWho was the first king of England?\tOrigins\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Origins, Introduced to, England) -> Origins (5494ms)\nWho was the first king of England?\tLady Mary\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Lady Mary, introduced into, England) -> Lady Mary (5496ms)\nWho was the first king of England?\ta woollen imitation\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a woollen imitation, introduced to, England) -> a woollen imitation (5500ms)\nWho was the first king of England?\tEurope\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Europe, introduced to, England) -> Europe (5500ms)\nWho was the first king of England?\tThe metric system\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The metric system, was invented in, England) -> The metric system (5498ms)\nWho was the first king of England?\tthe assumption\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the assumption, introduced to, England) -> the assumption (5486ms)\nWho was the first king of England?\ta biscuit product\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a biscuit product, introduced in, England) -> a biscuit product (5505ms)\nWho was the first king of England?\t958 Britannia silver\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (958 Britannia silver, introduced in, England) -> 958 Britannia silver (5498ms)\nWho was the first king of England?\tdance\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (dance, introduced in, England) -> dance (5503ms)\nWho was the first king of England?\tThough\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Though, introduced to, England) -> Though (5491ms)\nWho was the first king of England?\t3 Ratings\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (3 Ratings, was invented in, England) -> 3 Ratings (5482ms)\nWho was the first king of England?\tthe Fourdrinier machine\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the Fourdrinier machine, was invented in, England) -> the Fourdrinier machine (5502ms)\nWho was the first king of England?\tThe modern shoestring\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The modern shoestring, was invented in, England) -> The modern shoestring (5503ms)\nWho was the first king of England?\tfirst being\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (first being, introduced into, England) -> first being (5502ms)\nWho was the first king of England?\tthe first carp\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the first carp, introduced into, England) -> the first carp (5479ms)\nWho was the first king of England?\tEarly wallpapers\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Early wallpapers, introduced into, England) -> Early wallpapers (5496ms)\nWho was the first king of England?\ta new machine\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (a new machine, invented in, England) -> a new machine (5496ms)\nWho was the first king of England?\tthe fingerprinting process\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the fingerprinting process, invented in, England) -> the fingerprinting process (5502ms)\nWho was the first king of England?\ttransfer printing\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (transfer printing, was invented in, England) -> transfer printing (5500ms)\nWho was the first king of England?\trugby\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (rugby, was invented in, England) -> rugby (5491ms)\nWho was the first king of England?\tthe oldest recorded vegetable plants\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the oldest recorded vegetable plants, introduced to, England) -> the oldest recorded vegetable plants (5494ms)\nWho was the first king of England?\tA Breton name\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (A Breton name, introduced into, England) -> A Breton name (5505ms)\nWho was the first king of England?\tThe latest historical theory\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (The latest historical theory, introduced into, England) -> The latest historical theory (5496ms)\nWho was the first king of England?\tThe Conqueror\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (The Conqueror, introduced into, England) -> The Conqueror (5502ms)\nWho was the first king of England?\tThe Saxons\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (The Saxons, introduced to, England) -> The Saxons (5482ms)\nWho was the first king of England?\tthe locomotive\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the locomotive, was invented in, England) -> the locomotive (5479ms)\nWho was the first king of England?\tThe CT scan\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The CT scan, was invented in, England) -> The CT scan (5496ms)\nWho was the first king of England?\tA Glance Historical\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (A Glance Historical, Introduced into, England) -> A Glance Historical (5506ms)\nWho was the first king of England?\tRugby\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (Rugby, was invented in, England) -> Rugby (5505ms)\nWho was the first king of England?\ta male name\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a male name, introduced into, England) -> a male name (5500ms)\nWho was the first king of England?\tan order\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (an order, introduced into, England) -> an order (5496ms)\nWho was the first king of England?\tthe electrical desktop calculator\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the electrical desktop calculator, was invented in, England) -> the electrical desktop calculator (5503ms)\nWho was the first king of England?\tan English occupational name\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (an English occupational name, introduced into, England) -> an English occupational name (5506ms)\nWho was the first king of England?\tMachines\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Machines, introduced in, England) -> Machines (5502ms)\nWho was the first king of England?\tcrops\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (crops, introduced from, England) -> crops (5491ms)\nWho was the first king of England?\tthe guillotine\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the guillotine, was actually invented in, England) -> the guillotine (5505ms)\nWho was the first king of England?\ta French ball game\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a French ball game, introduced into, England) -> a French ball game (5496ms)\nWho was the first king of England?\tThe game\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The game, was invented in, England) -> The game (5500ms)\nWho was the first king of England?\tEnglish muffins\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (English muffins, invented in, England) -> English muffins (5496ms)\nWho was the first king of England?\tThe modern circus\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The modern circus, was invented in, England) -> The modern circus (5506ms)\nWho was the first king of England?\tReversi\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (Reversi, was originally invented in, England) -> Reversi (5498ms)\nWho was the first king of England?\ta classic cocktail\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (a classic cocktail, invented in, England) -> a classic cocktail (5503ms)\nWho was the first king of England?\tfootball\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (football, was invented in, England) -> football (5503ms)\nWho was the first king of England?\ttorture\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (torture, introduced from, England) -> torture (5489ms)\nWho was the first king of England?\t1955 Atomic clock\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (1955 Atomic clock, invented in, England) -> 1955 Atomic clock (5494ms)\nWho was the first king of England?\tThe shoe string\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The shoe string, was invented in, England) -> The shoe string (5494ms)\nWho was the first king of England?\tThe Queen Anne style\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The Queen Anne style, was invented in, England) -> The Queen Anne style (5494ms)\nWho was the first king of England?\tThe first carp\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (The first carp, introduced into, England) -> The first carp (5506ms)\nWho was the first king of England?\tThe stroller\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The stroller, was invented in, England) -> The stroller (5498ms)\nWho was the first king of England?\tthe government\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the government, introduced in, England) -> the government (5498ms)\nWho was the first king of England?\tthe iPod\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the iPod, was invented in, England) -> the iPod (5496ms)\nWho was the first king of England?\tfranking letters\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (franking letters, invented in, England) -> franking letters (5489ms)\nWho was the first king of England?\tmachines\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (machines, invented in, England) -> machines (5498ms)\nWho was the first king of England?\tlawn tennis\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (lawn tennis, was invented in, England) -> lawn tennis (5486ms)\nWho was the first king of England?\tthe reforms\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the reforms, introduced in, England) -> the reforms (5503ms)\nWho was the first king of England?\ta transition scheme\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a transition scheme, introduced in, England) -> a transition scheme (5496ms)\nWho was the first king of England?\trubber\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (rubber, was invented in, England) -> rubber (5491ms)\nWho was the first king of England?\tThe shoestring\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The shoestring, was invented in, England) -> The shoestring (5498ms)\nWho was the first king of England?\tA Flemish woman\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (A Flemish woman, introduced to, England) -> A Flemish woman (5486ms)\nWho was the first king of England?\tThe versatility\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The versatility, invented in, England) -> The versatility (5489ms)\nWho was the first king of England?\tThe steam locomotive\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The steam locomotive, was invented in, England) -> The steam locomotive (5482ms)\nWho was the first king of England?\tthe steam engine\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the steam engine, was invented in, England) -> the steam engine (5498ms)\nWho was the first king of England?\ta device\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (a device, was invented in, England) -> a device (5486ms)\nWho was the first king of England?\tSens\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Sens, introduced to, England) -> Sens (5482ms)\nWho was the first king of England?\twas feudalism\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (was feudalism, introduced in, England) -> was feudalism (5482ms)\nWho was the first king of England?\tHoudan\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Houdan, Introduced into, England) -> Houdan (5505ms)\nWho was the first king of England?\tHalma\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (Halma, was invented in, England) -> Halma (5505ms)\nWho was the first king of England?\tA distinction\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (A distinction, introduced in, England) -> A distinction (5505ms)\nWho was the first king of England?\tthe new NHS dental contract\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the new NHS dental contract, introduced in, England) -> the new NHS dental contract (5482ms)\nWho was the first king of England?\tcitizenship lessons\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (citizenship lessons, introduced across, England) -> citizenship lessons (5491ms)\nWho was the first king of England?\tstronger bottles\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (stronger bottles, invented in, England) -> stronger bottles (5491ms)\nWho was the first king of England?\ta gold coin\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a gold coin, introduced in, England) -> a gold coin (5489ms)\nWho was the first king of England?\tthe relatively new policy\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the relatively new policy, introduced into, England) -> the relatively new policy (5489ms)\nWho was the first king of England?\ta native\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a native, introduced into, England) -> a native (5502ms)\nWho was the first king of England?\ta Swan dive\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a Swan dive, Introduced from, England) -> a Swan dive (5505ms)\nWho was the first king of England?\ta classic strategy board game\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (a classic strategy board game, was invented in, England) -> a classic strategy board game (5486ms)\nWho was the first king of England?\tThe process\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The process, was invented in, England) -> The process (5503ms)\nWho was the first king of England?\ta watchman\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (a watchman, introduced into, England) -> a watchman (5505ms)\nWho was the first king of England?\ta system\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (a system, invented in, England) -> a system (5502ms)\nWho was the first king of England?\tthe process\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the process, invented in, England) -> the process (5498ms)\nWho was the first king of England?\tNorman roots\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Norman roots, introduced into, England) -> Norman roots (5491ms)\nWho was the first king of England?\tWithycombe\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Withycombe, introduced to, England) -> Withycombe (5506ms)\nWho was the first king of England?\tA form\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (A form, introduced into, England) -> A form (5500ms)\nWho was the first king of England?\tRobin Hood\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Robin Hood, introduce into, England) -> Robin Hood (5479ms)\nWho was the first king of England?\tthe tin\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the tin, can was invented in, England) -> the tin (5506ms)\nWho was the first king of England?\tShopping Centers\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Shopping Centers, Introduced in, England) -> Shopping Centers (5482ms)\nWho was the first king of England?\tTransfer printing\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (Transfer printing, was invented in, England) -> Transfer printing (5491ms)\nWho was the first king of England?\tthe Shanks typecasting machine\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (the Shanks typecasting machine, was invented in, England) -> the Shanks typecasting machine (5491ms)\nWho was the first king of England?\tThe first pencil\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (The first pencil, was invented in, England) -> The first pencil (5503ms)\nWho was the first king of England?\tcontinental Europe\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (continental Europe, introduced to, England) -> continental Europe (5500ms)\nWho was the first king of England?\tthe brother\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (the brother, introduced in, England) -> the brother (5496ms)\nWho was the first king of England?\t1 Ratings Three Card Poker\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, invent in, england) -> (1 Ratings Three Card Poker, was invented in, England) -> 1 Ratings Three Card Poker (5505ms)\nWho was the first king of England?\tNorman Conquest\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (Norman Conquest, introduced into, England) -> Norman Conquest (5489ms)\nWho was the first king of England?\tduke\t0.6666666666750001\tWho was the first king of England? -> $x: ($x, introduce, england) -> (duke, introduced into, England) -> duke (5489ms)\nWho was the first king of England?\t?thelstan\t0.666666666672\tWho was the first king of England? -> $x: ($x, be first king of, england) -> (?thelstan, was the first real king of, all England) -> ?thelstan (5507ms)\nWho was the first king of England?\tThe Independent\t0.666666666672\tWho was the first king of England? -> $x: ($x, be first king of, england) -> (The Independent, was the first King of, England) -> The Independent (5506ms)\nWho was the first king of England?\tWessex\t0.666666666672\tWho was the first king of England? -> $x: ($x, be first king of, england) -> (Wessex, was the first king of, all England) -> Wessex (5506ms)\nWho was the first king of England?\tMarch 24\t0.666666666672\tWho was the first king of England? -> $x: ($x, be first king of, england) -> (March 24, was the first king of, both England and Scotland) -> March 24 (5507ms)\nWho was the first king of England?\tAquitaine\t0.666666666672\tWho was the first king of England? -> $x: ($x, be first king of, england) -> (Aquitaine, was the first king of, England) -> Aquitaine (5506ms)\nWho was the first king of England?\tSt . Edward\t0.666666666672\tWho was the first king of England? -> $x: ($x, be first king of, england) -> (St . Edward, was the first King of, England) -> St . Edward (5506ms)\nWho was the first king of England?\twheat\t0.666666666669\tWho was the first king of England? -> $x: ($x, have invent, scotland) -> (wheat, has been invented in, Scotland) -> wheat (5507ms)\nWho was the first king of England?\tthe Inimitable Todd\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (the Inimitable Todd, had first traveled to, Scotland) -> the Inimitable Todd (5507ms)\nWho was the first king of England?\tEngland\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (England, first had the measure of, Scotland 3-0) -> England (5507ms)\nWho was the first king of England?\tthe argument\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (the argument, inside has the first minister of, Scotland smiling) -> the argument (5507ms)\nWho was the first king of England?\tLeanne Caldwell\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (Leanne Caldwell, has now become the first charity in, Scotland) -> Leanne Caldwell (5507ms)\nWho was the first king of England?\tGlen Keith\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (Glen Keith, had the first gas-fired still in, Scotland) -> Glen Keith (5507ms)\nWho was the first king of England?\tGolf\t0.666666666669\tWho was the first king of England? -> $x: ($x, have invent, scotland) -> (Golf, may have been invented in, Scotland) -> Golf (5507ms)\nWho was the first king of England?\tEdinburgh\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (Edinburgh, has become the first independent school in, Scotland) -> Edinburgh (5507ms)\nWho was the first king of England?\tbranches\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (branches, have recently opened their first in, Scotland) -> branches (5507ms)\nWho was the first king of England?\tFinance\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (Finance, has been rated joint first in, Scotland) -> Finance (5507ms)\nWho was the first king of England?\ta primary school teacher\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (a primary school teacher, has become the first in, Scotland) -> a primary school teacher (5507ms)\nWho was the first king of England?\tQ-Hotels\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (Q-Hotels, has made its first venture into, Scotland) -> Q-Hotels (5507ms)\nWho was the first king of England?\tan awarded certificated location\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (an awarded certificated location, has been first in, Scotland) -> an awarded certificated location (5507ms)\nWho was the first king of England?\tScotland\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (Scotland, has acted first as, shadow Scotland Office minister) -> Scotland (5507ms)\nWho was the first king of England?\tSupreme Head\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, henry viii) -> (Supreme Head, had first been introduced by, Henry VIII) -> Supreme Head (5507ms)\nWho was the first king of England?\tIrvine Royal Academy\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (Irvine Royal Academy, has become the first in, Scotland) -> Irvine Royal Academy (5507ms)\nWho was the first king of England?\tHogg\t0.666666666669\tWho was the first king of England? -> $x: ($x, have first, scotland) -> (Hogg, should have scored his first try for, Scotland) -> Hogg (5507ms)\nWho was the first king of England?\tfull-back Stuart Hogg\t0.666666666669\tWho was the first king of England? -> $x: ($x, first start, scotland) -> (full-back Stuart Hogg, will make his first start for, Scotland) -> full-back Stuart Hogg (5507ms)\nWho was the first king of England?\tturbot\t0.666666666669\tWho was the first king of England? -> $x: ($x, first start, scotland) -> (turbot, started first in, Scotland) -> turbot (5507ms)\nWho was the first king of England?\tNorman\t0.666666666669\tWho was the first king of England? -> $x: ($x, first start, scotland) -> (Norman, first started touring, Scotland) -> Norman (5507ms)\nWho was the first king of England?\tthrashing wheat\t0.666666666669\tWho was the first king of England? -> $x: ($x, have invent, scotland) -> (thrashing wheat, has been invented in, Scotland) -> thrashing wheat (5507ms)\nWhere is the Orinoco River?\tterms\t0.555555555554\tWhere is the Orinoco River? -> $x: (orinoco, be river in, $x) -> (The Orinoco, is the world?s fourth largest river in, terms) -> terms (812ms)\nWhere is the Orinoco River?\tSouth America\t0.555555555554\tWhere is the Orinoco River? -> $x: (orinoco, be river in, $x) -> (the Orinoco, is the third longest river in, South America) -> South America (812ms)\nWhere is the Orinoco River?\tVenezuela\t0.555555555554\tWhere is the Orinoco River? -> $x: (orinoco, be river in, $x) -> (Orinoco, is a river in, Venezuela) -> Venezuela (811ms)\nWhere is the Orinoco River?\tThe Caron? River\t0.444444444445\tWhere is the Orinoco River? -> $x: ($x, be river of, orinoco) -> (The Caron? River, is a major river of, the Orinoco basin) -> The Caron? River (811ms)\nWhere is the Orinoco River?\tRussian oil companies\t-0.0\tWhere is the Orinoco River? -> $x: ($x, develop, orinoco river) -> (Russian oil companies, to help develop, the Orinoco River basin) -> Russian oil companies (1200ms)\nWhere is the Orinoco River?\tpink dolphin\t-0.0\tWhere is the Orinoco River? -> $x: ($x, found, orinoco river) -> (pink dolphin, found in, the Orinoco and Amazon River basins) -> pink dolphin (1200ms)\nWhere is the Orinoco River?\texclusively freshwater fish\t-0.0\tWhere is the Orinoco River? -> $x: ($x, found, orinoco river) -> (exclusively freshwater fish, found from, the Orinoco River basin) -> exclusively freshwater fish (1200ms)\nWhere is the Orinoco River?\tOrinoco River Crossing\t-0.0\tWhere is the Orinoco River? -> $x: ($x, found, orinoco river) -> (Orinoco River Crossing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Orinoco%20River%20Crossing) -> Orinoco River Crossing (1200ms)\nWhere is the Orinoco River?\tColumbus\t-0.0\tWhere is the Orinoco River? -> $x: ($x, discover, orinoco river) -> (Columbus, discovered, the Orinoco river) -> Columbus (1153ms)\nWhere is the Orinoco River?\t1752\t-0.0\tWhere is the Orinoco River? -> $x: ($x, go, orinoco river) -> (1752, go, the Orinoco river) -> 1752 (978ms)\nWhere is Merrill Lynch headquartered?\tLondon\t-0.333333333333\tWhere is Merrill Lynch headquartered? -> $x: (merrill lynch, be headquarter in, $x) -> (Merrill Lynch HSBC, will be headquartered in, London) -> London (621ms)\nWhere is Merrill Lynch headquartered?\tNew York\t-0.333333333333\tWhere is Merrill Lynch headquartered? -> $x: (merrill lynch, be headquarter in, $x) -> (Merrill Lynch and Morgan Stanley, are headquartered in, New York) -> New York (621ms)\nWhere is Merrill Lynch headquartered?\tNew York City\t-0.333333333333\tWhere is Merrill Lynch headquartered? -> $x: (merrill lynch, be headquarter in, $x) -> (Merrill Lynch, is headquartered in, New York City) -> New York City (621ms)\nWhere is Merrill Lynch headquartered?\tnew york city\t-0.333333333333\tWhere is Merrill Lynch headquartered? -> $x: (merrill lynch, be headquarter in, $x) -> (america merrill lynch, is headquartered in, new york city) -> new york city (621ms)\nWhere is Merrill Lynch headquartered?\tLos Angeles\t-1.5555555555479998\tWhere is Merrill Lynch headquartered? -> $x: (merrill lynch, headquarter, $x) -> (Merrill Lynch, headquartered in, Los Angeles) -> Los Angeles (621ms)\nAspartame is also known as what?\tthe poison everyone\t1.111111111111\tAspartame is also known as what? -> $x: ($x, be call, aspartame) -> (the poison everyone, is drinking called, aspartame) -> the poison everyone (809ms)\nAspartame is also known as what?\tFeingold diet\t1.111111111109\tAspartame is also known as what? -> $x: ($x, type, aspartame) -> (Feingold diet, Avoids food-type, Aspartame) -> Feingold diet (810ms)\nAspartame is also known as what?\tJames M. Schlatter\t0.999999999999\tAspartame is also known as what? -> $x: ($x, discover, aspartame) -> (James M. Schlatter, accidentally discovers, aspartame) -> James M. Schlatter (809ms)\nAspartame is also known as what?\tMonsanto\t0.999999999999\tAspartame is also known as what? -> $x: ($x, discover, aspartame) -> (Monsanto, discovered, Aspartame) -> Monsanto (951ms)\nAspartame is also known as what?\tSchlatter\t0.999999999999\tAspartame is also known as what? -> $x: ($x, discover, aspartame) -> (Schlatter, discovered the sweet taste of, aspartame) -> Schlatter (810ms)\nAspartame is also known as what?\tthe company\t0.999999999999\tAspartame is also known as what? -> $x: ($x, discover, aspartame) -> (the company, discovered, Aspartame) -> the company (810ms)\nAspartame is also known as what?\ta new ulcer drug\t0.999999999999\tAspartame is also known as what? -> $x: ($x, discover, aspartame) -> (a new ulcer drug, discovered the sweet taste of, aspartame) -> a new ulcer drug (810ms)\nAspartame is also known as what?\tthe G. D. Searle Company\t0.999999999999\tAspartame is also known as what? -> $x: ($x, discover, aspartame) -> (the G. D. Searle Company, accidentally discovered, aspartame) -> the G. D. Searle Company (810ms)\nAspartame is also known as what?\tEqual\t0.11111111111\tAspartame is also known as what? -> $x: ($x, be example of, aspartame) -> (Equal, is an example of, an aspartame-based sweetener) -> Equal (951ms)\nAspartame is also known as what?\tFox News Sunday\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (Fox News Sunday, reported the Italian study on, aspartame) -> Fox News Sunday (951ms)\nAspartame is also known as what?\tProfessor Atkin\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (Professor Atkin, is doing a study on, Aspartame) -> Professor Atkin (1212ms)\nAspartame is also known as what?\tG.D. Searle & Company\t-0.0\tAspartame is also known as what? -> $x: ($x, create, aspartame) -> (G.D. Searle & Company, created, aspartame 25 years) -> G.D. Searle & Company (1214ms)\nAspartame is also known as what?\tpanic attacks and disorientation\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (panic attacks and disorientation, could be caused by, Aspartame?) -> panic attacks and disorientation (1211ms)\nAspartame is also known as what?\tworld-renowned researchers\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (world-renowned researchers, have done studies on, aspartame) -> world-renowned researchers (1213ms)\nAspartame is also known as what?\tan incurable case of Grave 's Disease\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (an incurable case of Grave 's Disease, caused by, aspartame) -> an incurable case of Grave 's Disease (1210ms)\nAspartame is also known as what?\tthe diseases\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the diseases, caused by, aspartame) -> the diseases (1211ms)\nAspartame is also known as what?\tfood additives\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (food additives, is caused by, Aspartame) -> food additives (1212ms)\nAspartame is also known as what?\tthe condition\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the condition, is caused by, the aspartame) -> the condition (1212ms)\nAspartame is also known as what?\t92 symptoms\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (92 symptoms, caused by, aspartame) -> 92 symptoms (1213ms)\nAspartame is also known as what?\thypertension and seizures\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (hypertension and seizures, are known to be caused by, aspartame) -> hypertension and seizures (1212ms)\nAspartame is also known as what?\tlittle experience\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (little experience, began studies on, aspartame) -> little experience (1214ms)\nAspartame is also known as what?\tBoston\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (Boston, studied the influence of, aspartame) -> Boston (951ms)\nAspartame is also known as what?\tretinopathy\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (retinopathy, had symptoms caused by, Aspartame) -> retinopathy (1213ms)\nAspartame is also known as what?\tBirth defects\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Birth defects, are a major epidemic caused by, aspartame) -> Birth defects (1211ms)\nAspartame is also known as what?\tDoctors\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (Doctors, have done studies on, aspartame) -> Doctors (1214ms)\nAspartame is also known as what?\tMD\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (MD, has done a study on, aspartame) -> MD (951ms)\nAspartame is also known as what?\tG.D. Searle\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (G.D. Searle, began to study, the artificial sweetener aspartame) -> G.D. Searle (1212ms)\nAspartame is also known as what?\tadverse reactions\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (adverse reactions, caused by, Aspartame) -> adverse reactions (1213ms)\nAspartame is also known as what?\tfact\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (fact, had symptoms caused by, Aspartame) -> fact (1211ms)\nAspartame is also known as what?\tsymptoms\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (symptoms, caused by, Aspartame) -> symptoms (1211ms)\nAspartame is also known as what?\tNCI\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (NCI, currently is studying, aspartame) -> NCI (951ms)\nAspartame is also known as what?\tthe dangers\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the dangers, caused by, aspartame) -> the dangers (1212ms)\nAspartame is also known as what?\tPsychiatrist\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (Psychiatrist, did an independent study on, aspartame) -> Psychiatrist (1213ms)\nAspartame is also known as what?\tthe artificial sweetener\t-0.0\tAspartame is also known as what? -> $x: ($x, know as, aspartame) -> (the artificial sweetener, known as, aspartame) -> the artificial sweetener (951ms)\nAspartame is also known as what?\theadaches\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (headaches, caused by, aspartame) -> headaches (1214ms)\nAspartame is also known as what?\tDamage\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Damage, caused by, aspartame consumption) -> Damage (1212ms)\nAspartame is also known as what?\tan independent researcher\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (an independent researcher, did a study on, aspartame) -> an independent researcher (951ms)\nAspartame is also known as what?\tthe problem\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the problem, is caused by, Aspartame) -> the problem (1212ms)\nAspartame is also known as what?\tPsychiatrist Dr. Ralph Walton\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (Psychiatrist Dr. Ralph Walton, did a study on, aspartame) -> Psychiatrist Dr. Ralph Walton (1213ms)\nAspartame is also known as what?\tthe poison\t-0.0\tAspartame is also known as what? -> $x: ($x, know as, aspartame) -> (the poison, known as, Aspartame) -> the poison (1213ms)\nAspartame is also known as what?\tDr. Ralph Walton\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (Dr. Ralph Walton, has also done a study on, aspartame) -> Dr. Ralph Walton (1213ms)\nAspartame is also known as what?\tDr. Walton\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (Dr. Walton, did a study on, aspartame) -> Dr. Walton (1213ms)\nAspartame is also known as what?\tdamage\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (damage, is caused by, all aspartame consumption) -> damage (1213ms)\nAspartame is also known as what?\tpossible birth defects\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (possible birth defects, caused by, the ingestion of aspartame) -> possible birth defects (1212ms)\nAspartame is also known as what?\tkill\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (kill, can be caused by, drinking or consuming aspartame) -> kill (1211ms)\nAspartame is also known as what?\tFree methanol\t-0.0\tAspartame is also known as what? -> $x: ($x, create, aspartame) -> (Free methanol, is created from, Aspartame) -> Free methanol (1214ms)\nAspartame is also known as what?\tMIT\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (MIT, did studies on, aspartame and seizures) -> MIT (1213ms)\nAspartame is also known as what?\tobesity\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (obesity, is mainly caused by, aspartame) -> obesity (1212ms)\nAspartame is also known as what?\tthe brain damage\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the brain damage, caused by, aspartame) -> the brain damage (1211ms)\nAspartame is also known as what?\tJoint pain\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Joint pain, is caused by, aspartame) -> Joint pain (1210ms)\nAspartame is also known as what?\tgradual damage\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (gradual damage, can be caused by, aspartame breakdown products) -> gradual damage (1211ms)\nAspartame is also known as what?\tthe problems\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the problems, caused by, Aspartame) -> the problems (1212ms)\nAspartame is also known as what?\tthe cancer\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the cancer, caused by, Aspartame) -> the cancer (1212ms)\nAspartame is also known as what?\tone or more problems\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (one or more problems, caused by, aspartame) -> one or more problems (1211ms)\nAspartame is also known as what?\tSymptoms\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Symptoms, caused by, aspartame) -> Symptoms (1213ms)\nAspartame is also known as what?\tM.D.\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (M.D., did a study on, aspartame) -> M.D. (1212ms)\nAspartame is also known as what?\tthe health problems\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the health problems, caused by, Aspartame) -> the health problems (1212ms)\nAspartame is also known as what?\ta laxative effect\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (a laxative effect, cause, diarrhoea and aspartame) -> a laxative effect (1213ms)\nAspartame is also known as what?\tMs. Suddath\t-0.0\tAspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Ms. Suddath, claims caused, all the hysteria about aspartame) -> Ms. Suddath (1214ms)\nAspartame is also known as what?\tnobody\t-0.0\tAspartame is also known as what? -> $x: ($x, study, aspartame) -> (nobody, would do a study on, aspartame and children) -> nobody (951ms)\nAspartame is also known as what?\tNutrasweet and Equal\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is also known as, Nutrasweet and Equal) -> Nutrasweet and Equal (1214ms)\nAspartame is also known as what?\tRumsfeld\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Mexico Aspartame, is known as, Rumsfeld) -> Rumsfeld (1214ms)\nAspartame is also known as what?\t?Rumsfeld?s disease\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (aspartame use, be known as, ?Rumsfeld?s disease) -> ?Rumsfeld?s disease (1214ms)\nAspartame is also known as what?\ta poison\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is so widely known as, a poison) -> a poison (1214ms)\nAspartame is also known as what?\tan 'excitotoxin'\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (aspartame, is known as, an 'excitotoxin') -> an 'excitotoxin' (1214ms)\nAspartame is also known as what?\tE951\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is also known as, E951) -> E951 (1214ms)\nAspartame is also known as what?\tpoison and people\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (aspartame, is known as, poison and people) -> poison and people (1214ms)\nAspartame is also known as what?\tNutraSweet\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is also known as, NutraSweet) -> NutraSweet (1214ms)\nAspartame is also known as what?\tNutrasweet\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is known commercially as, Nutrasweet) -> Nutrasweet (1214ms)\nAspartame is also known as what?\tan artificial sweetener\t-0.7777777777680001\tAspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (7. Aspartame Aspartame, is known as, an artificial sweetener) -> an artificial sweetener (1214ms)\nWhat is Valentine's Day?\tthe celebration\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the celebration) -> the celebration (6399ms)\nWhat is Valentine's Day?\ttrue feeling\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s gift, is about, true feeling) -> true feeling (6399ms)\nWhat is Valentine's Day?\tindulgence ?\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s day, is about, indulgence ?) -> indulgence ? (1881ms)\nWhat is Valentine's Day?\tthe adults\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is typically *all about, the adults) -> the adults (5070ms)\nWhat is Valentine's Day?\ta month\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, a month) -> a month (6495ms)\nWhat is Valentine's Day?\tdarkness\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, darkness) -> darkness (6399ms)\nWhat is Valentine's Day?\tlove\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love) -> love (6495ms)\nWhat is Valentine's Day?\tgifts\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, gifts) -> gifts (6330ms)\nWhat is Valentine's Day?\tfictional dates\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, fictional dates) -> fictional dates (2837ms)\nWhat is Valentine's Day?\tlove and chocolate\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, love and chocolate) -> love and chocolate (5196ms)\nWhat is Valentine's Day?\tlust\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, lust) -> lust (2837ms)\nWhat is Valentine's Day?\tright\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s day, is all about giving, right) -> right (6330ms)\nWhat is Valentine's Day?\tpassion\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is a holiday about, passion) -> passion (5070ms)\nWhat is Valentine's Day?\thearts and flowers\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, hearts and flowers) -> hearts and flowers (6330ms)\nWhat is Valentine's Day?\twomen\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, women) -> women (5069ms)\nWhat is Valentine's Day?\tconsumerism\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, consumerism) -> consumerism (3180ms)\nWhat is Valentine's Day?\tchocolate and chocolate\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, chocolate and chocolate) -> chocolate and chocolate (6399ms)\nWhat is Valentine's Day?\tthe heart\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the heart) -> the heart (3179ms)\nWhat is Valentine's Day?\ttwo weeks\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is just about, two weeks) -> two weeks (4487ms)\nWhat is Valentine's Day?\tLove\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s, is all about, Love) -> Love (4896ms)\nWhat is Valentine's Day?\tthe ladies\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the ladies) -> the ladies (1597ms)\nWhat is Valentine's Day?\tgifts and sharing\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, gifts and sharing) -> gifts and sharing (4896ms)\nWhat is Valentine's Day?\tmiracles\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, was about, miracles) -> miracles (4487ms)\nWhat is Valentine's Day?\tnew love\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about finding, new love) -> new love (5196ms)\nWhat is Valentine's Day?\tsex\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, sex) -> sex (6330ms)\nWhat is Valentine's Day?\tlove and appreciation\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about sharing, love and appreciation) -> love and appreciation (2837ms)\nWhat is Valentine's Day?\tthe ruse\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, was all about, the ruse) -> the ruse (6495ms)\nWhat is Valentine's Day?\tEros\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is really concerned about, Eros) -> Eros (3180ms)\nWhat is Valentine's Day?\tan intimate moment\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is really about sharing, an intimate moment) -> an intimate moment (4487ms)\nWhat is Valentine's Day?\tthe flowers\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, may be about, the flowers) -> the flowers (5196ms)\nWhat is Valentine's Day?\ta week\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, was about, a week) -> a week (1881ms)\nWhat is Valentine's Day?\tLOVE plain\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, LOVE plain) -> LOVE plain (6330ms)\nWhat is Valentine's Day?\tthe sentiment\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the sentiment) -> the sentiment (6495ms)\nWhat is Valentine's Day?\tthe love , right\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the love , right) -> the love , right (6495ms)\nWhat is Valentine's Day?\tchocolate\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, chocolate) -> chocolate (6495ms)\nWhat is Valentine's Day?\tlove and passion\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s flowers, are about, love and passion) -> love and passion (4896ms)\nWhat is Valentine's Day?\tlovers\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, lovers) -> lovers (5070ms)\nWhat is Valentine's Day?\tlove?and\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love?and) -> love?and (5196ms)\nWhat is Valentine's Day?\tcandlelight\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, candlelight) -> candlelight (6495ms)\nWhat is Valentine's Day?\tlove and romance\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love and romance) -> love and romance (6330ms)\nWhat is Valentine's Day?\tlove and loving\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love and loving) -> love and loving (5195ms)\nWhat is Valentine's Day?\tcandy\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, was about, candy) -> candy (2838ms)\nWhat is Valentine's Day?\tromance and sex\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, romance and sex) -> romance and sex (6495ms)\nWhat is Valentine's Day?\tcelebrating love\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, celebrating love) -> celebrating love (4487ms)\nWhat is Valentine's Day?\tromance and love\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, romance and love) -> romance and love (6495ms)\nWhat is Valentine's Day?\tkissing\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about more than, kissing) -> kissing (1881ms)\nWhat is Valentine's Day?\tmartyrdom\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, martyrdom) -> martyrdom (1597ms)\nWhat is Valentine's Day?\tthe love\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about spreading, the love) -> the love (1597ms)\nWhat is Valentine's Day?\tdesire\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, desire) -> desire (4896ms)\nWhat is Valentine's Day?\tlove and more\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is becoming less about, love and more) -> love and more (3180ms)\nWhat is Valentine's Day?\tfriendship\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, friendship) -> friendship (3179ms)\nWhat is Valentine's Day?\tlove , passion and romance\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love , passion and romance) -> love , passion and romance (1597ms)\nWhat is Valentine's Day?\tcards\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s, is about, cards) -> cards (6495ms)\nWhat is Valentine's Day?\tmatches\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, matches) -> matches (4896ms)\nWhat is Valentine's Day?\tspending time\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s day, is about, spending time) -> spending time (5196ms)\nWhat is Valentine's Day?\tthe corner\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is actually just about, the corner) -> the corner (6399ms)\nWhat is Valentine's Day?\troses\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s day, is all about, roses) -> roses (4487ms)\nWhat is Valentine's Day?\tthe loving relationship\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, the loving relationship) -> the loving relationship (6330ms)\nWhat is Valentine's Day?\trelationships\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s, is about, relationships) -> relationships (1597ms)\nWhat is Valentine's Day?\tromance\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, romance) -> romance (5196ms)\nWhat is Valentine's Day?\tromantic love\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, romantic love) -> romantic love (4896ms)\nWhat is Valentine's Day?\tthe love ?\t1.2222222222169998\tWhat is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the love ?) -> the love ? (5069ms)\nWhat is Valentine's Day?\tHallmark\t0.111111111111\tWhat is Valentine's Day? -> $x: ($x, invent, valentine 's day) -> (Hallmark, invented, Valentine?s Day) -> Hallmark (6636ms)\nWhat is Valentine's Day?\tRichard Cadbury\t0.111111111111\tWhat is Valentine's Day? -> $x: ($x, invent, valentine 's day) -> (Richard Cadbury, invented, the first Valentine?s Day candy box) -> Richard Cadbury (6495ms)\nWhat is Valentine's Day?\tjustice\t0.111111111111\tWhat is Valentine's Day? -> $x: ($x, cause, valentine 's day) -> (justice, causes On, Valentine?s Day) -> justice (6495ms)\nWhat is Valentine's Day?\tGeorge\t0.11111111111\tWhat is Valentine's Day? -> $x: ($x, re, valentine 's day) -> (George, re-enacted, their Valentine?s Day wedding) -> George (6636ms)\nWhat is Valentine's Day?\tsale\t0.11111111111\tWhat is Valentine's Day? -> $x: ($x, re, valentine 's day) -> (sale, was re-released on, Valentine?s Day) -> sale (6636ms)\nWhat is Valentine's Day?\tNew Year?s\t0.11111111111\tWhat is Valentine's Day? -> $x: ($x, re, valentine 's day) -> (New Year?s, has passed?you?re waiting for, Valentine?s Day) -> New Year?s (6636ms)\nWhat is Valentine's Day?\tCory Monteith\t3.999911513119514E-12\tWhat is Valentine's Day? -> $x: ($x, date be, valentine 's) -> (Cory Monteith, are dating after, spending Valentine?s Day) -> Cory Monteith (6636ms)\nWhat is Valentine's Day?\tIlford\t9.999778782798785E-13\tWhat is Valentine's Day? -> $x: ($x, happen in, valentine 's) -> (Ilford, is happening in, Valentine?s Park) -> Ilford (6636ms)\nWhat is Valentine's Day?\t2009\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (2009, Take part in, the new Valentine?s Day quest) -> 2009 (6689ms)\nWhat is Valentine's Day?\tgood chocolate\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (good chocolate, is involved in, Valentine?s Day) -> good chocolate (6636ms)\nWhat is Valentine's Day?\tBill\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Bill, stood in, the long Valentine?s Day line) -> Bill (6706ms)\nWhat is Valentine's Day?\tThe stores\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The stores, have been in, full-on Valentine?s Day garb) -> The stores (6689ms)\nWhat is Valentine's Day?\tThe same message\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The same message, is used in, Valentine?s Day cards) -> The same message (6706ms)\nWhat is Valentine's Day?\tBangkok\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Bangkok, played a part in, the Valentine?s Day Bombing) -> Bangkok (6672ms)\nWhat is Valentine's Day?\tthe day\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the day, appear in, Ann Heinrich?s Valentine?s Day) -> the day (6723ms)\nWhat is Valentine's Day?\tThe Love\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The Love, is in, the Air Valentine?s Day Event) -> The Love (6706ms)\nWhat is Valentine's Day?\tHill\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Hill, will star in, a hillarous Valentine?s Day spot set) -> Hill (6706ms)\nWhat is Valentine's Day?\tLautner\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Lautner, can be seen next in, ?Valentine?s Day ?) -> Lautner (6689ms)\nWhat is Valentine's Day?\tUPS\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (UPS, plays a big part in delivering, Valentine?s Day) -> UPS (6706ms)\nWhat is Valentine's Day?\ta professional actor\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a professional actor, will appear in, ?Valentine?s Day) -> a professional actor (6654ms)\nWhat is Valentine's Day?\t28 %\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (28 %, take part in, our Valentine?s Day social experiment) -> 28 % (6723ms)\nWhat is Valentine's Day?\tAnoop Desai\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Anoop Desai, says in, his special Valentine?s Day video) -> Anoop Desai (6672ms)\nWhat is Valentine's Day?\ta special reception\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a special reception, held in, observance of Valentine 's Day) -> a special reception (6654ms)\nWhat is Valentine's Day?\tthe hottest women\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the hottest women, is staring in, the new movie Valentine?s Day) -> the hottest women (6654ms)\nWhat is Valentine's Day?\tcarashultz\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (carashultz, Find out in, his Valentine?s Day IM interview) -> carashultz (6706ms)\nWhat is Valentine's Day?\tEven Basil Thyme\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Even Basil Thyme, is in, the Valentine?s day spirit) -> Even Basil Thyme (6672ms)\nWhat is Valentine's Day?\ta Gamorrean Guard\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a Gamorrean Guard, Get in, the Valentine?s Day spirit) -> a Gamorrean Guard (6654ms)\nWhat is Valentine's Day?\tScott\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Scott, walked in on, Valentine?s day) -> Scott (6636ms)\nWhat is Valentine's Day?\tthe most common gift\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the most common gift, found in, most Valentine?s Day) -> the most common gift (6672ms)\nWhat is Valentine's Day?\tthe kids\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the kids, are coloring in, this Valentine?s Day coloring page) -> the kids (6689ms)\nWhat is Valentine's Day?\tGas Stations\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Gas Stations, are in, the Valentine?s Day Mood) -> Gas Stations (6689ms)\nWhat is Valentine's Day?\tSwift\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Swift, had a small role in, Valentine?s Day) -> Swift (6706ms)\nWhat is Valentine's Day?\t2012\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (2012, fits in nicely for, Valentine?s Day) -> 2012 (6706ms)\nWhat is Valentine's Day?\tNorthern Tool\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Northern Tool, did in, their Valentine?s Day campaign) -> Northern Tool (6706ms)\nWhat is Valentine's Day?\tAn all-star ensemble cast\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (An all-star ensemble cast, comes together in, ?Valentine?s Day) -> An all-star ensemble cast (6636ms)\nWhat is Valentine's Day?\tCharlie Brown\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Charlie Brown, lamented in, the Valentine?s Day cartoon special) -> Charlie Brown (6654ms)\nWhat is Valentine's Day?\tthe apps\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the apps, found in, a ?Valentine?s Day) -> the apps (6689ms)\nWhat is Valentine's Day?\tVIRTUAL LOVE\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (VIRTUAL LOVE, IS IN, THE AIR THIS VALENTINE?S DAY) -> VIRTUAL LOVE (6654ms)\nWhat is Valentine's Day?\tFebruary\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (February, are all tied in to, Valentine?s Day) -> February (6654ms)\nWhat is Valentine's Day?\t? co-founder Alex Mehr\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (? co-founder Alex Mehr, said in, a Valentine?s Day interview) -> ? co-founder Alex Mehr (6706ms)\nWhat is Valentine's Day?\tEpic Fail\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Epic Fail, is participating in, the Valentine?s Day Sex Drive) -> Epic Fail (6706ms)\nWhat is Valentine's Day?\tMiller\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Miller, appeared in, Valentine?s Day) -> Miller (6636ms)\nWhat is Valentine's Day?\ta best-dressed\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a best-dressed, integrate in, Valentine?s Day attire) -> a best-dressed (6636ms)\nWhat is Valentine's Day?\t3. Host\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (3. Host, participate in, a Valentine?s Day event) -> 3. Host (6706ms)\nWhat is Valentine's Day?\ta character\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a character, appeared in, Valentine?s Day) -> a character (6689ms)\nWhat is Valentine's Day?\tcharset=UTF-8 Love\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (charset=UTF-8 Love, Is in, the Air ? Celebrate Valentine?s Day) -> charset=UTF-8 Love (6636ms)\nWhat is Valentine's Day?\tThe best restaurants\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The best restaurants, are booked in, advance of Valentine 's Day) -> The best restaurants (6706ms)\nWhat is Valentine's Day?\t2011?This story\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (2011?This story, is just in for, Valentine?s Day) -> 2011?This story (6689ms)\nWhat is Valentine's Day?\tthe older girls\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the older girls, were knee-deep in, Valentine?s Day celebrations) -> the older girls (6672ms)\nWhat is Valentine's Day?\tthe project\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the project, could result in, a touching Valentine?s Day gesture) -> the project (6636ms)\nWhat is Valentine's Day?\tchildren\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (children, are very much involved in, Valentine?s Day) -> children (6672ms)\nWhat is Valentine's Day?\tGap\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Gap, had a starring role in, ?Glee?s ? Valentine?s Day episode) -> Gap (6689ms)\nWhat is Valentine's Day?\tthe little ones\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the little ones, indulge in, a special Valentine?s Day treat) -> the little ones (6689ms)\nWhat is Valentine's Day?\tDon?t\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Don?t, buy in to, the Valentine?s Day consumerist scam) -> Don?t (6636ms)\nWhat is Valentine's Day?\tthe gift\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the gift, arrives in, time for Valentine 's Day) -> the gift (6706ms)\nWhat is Valentine's Day?\tEach cookie greeting\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Each cookie greeting, is shipped in, a Valentine?s Day box) -> Each cookie greeting (6636ms)\nWhat is Valentine's Day?\tcustomers\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (customers, came in for, Valentine?s Day) -> customers (6654ms)\nWhat is Valentine's Day?\tfans\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (fans, send in, their most cringe-worthy Valentine?s Day stories) -> fans (6689ms)\nWhat is Valentine's Day?\tConsumerism\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Consumerism, is inherent in, the commercial Valentine?s Day) -> Consumerism (6672ms)\nWhat is Valentine's Day?\tholidaymakers\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (holidaymakers, want to indulge in, Valentine 's Day) -> holidaymakers (6636ms)\nWhat is Valentine's Day?\tAmsterdam\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Amsterdam, had unwittingly come in on, Valentine?s Day) -> Amsterdam (6654ms)\nWhat is Valentine's Day?\tBucktown\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Bucktown, puts the heart in, Valentine?s Day) -> Bucktown (6689ms)\nWhat is Valentine's Day?\twineries\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (wineries, are also getting in, the Valentine?s Day spirit) -> wineries (6654ms)\nWhat is Valentine's Day?\treservations\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (reservations, have been quickly coming in for, Valentine?s Day) -> reservations (6706ms)\nWhat is Valentine's Day?\tSingles\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Singles, are even participating in, Valentine?s Day) -> Singles (6654ms)\nWhat is Valentine's Day?\tTOMS Valentine Classic Shoes\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (TOMS Valentine Classic Shoes, Are In, ! Valentine?s Day) -> TOMS Valentine Classic Shoes (6672ms)\nWhat is Valentine's Day?\tthe wedding\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the wedding, is celebrated in, the Valentine?s Day) -> the wedding (6689ms)\nWhat is Valentine's Day?\tCharacters\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Characters, log in on, Valentine?s Day) -> Characters (6672ms)\nWhat is Valentine's Day?\tAmerican households\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (American households, typically participate in, Valentine?s Day) -> American households (6672ms)\nWhat is Valentine's Day?\t? Tarzan?\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (? Tarzan?, can be heard in, the Valentine?s Day edition) -> ? Tarzan? (6672ms)\nWhat is Valentine's Day?\tPatients and staff\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Patients and staff, will move in on, Valentine?s Day) -> Patients and staff (6654ms)\nWhat is Valentine's Day?\tThe place\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The place, was decorated in, red and pink Valentine?s Day colors) -> The place (6689ms)\nWhat is Valentine's Day?\tA love story\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (A love story, released in, time for Valentine 's Day) -> A love story (6672ms)\nWhat is Valentine's Day?\tChildren\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Children, can take part in, Drop-in Valentine?s Day Crafts) -> Children (6672ms)\nWhat is Valentine's Day?\tRobin ?Sex Therapist ? Thicke\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Robin ?Sex Therapist ? Thicke, will be in, town Valentine?s Day) -> Robin ?Sex Therapist ? Thicke (6654ms)\nWhat is Valentine's Day?\tSunday visitors\t-0.0\tWhat is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Sunday visitors, can take part in, Victorine?s Valentine?s Day) -> Sunday visitors (6672ms)\nWhat is Valentine's Day?\t2012 My grandparents\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (2012 My grandparents, were married on, Valentine?s Day) -> 2012 My grandparents (6723ms)\nWhat is Valentine's Day?\tCane and Lily\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (Cane and Lily, will be getting married on, Valentine?s Day) -> Cane and Lily (6723ms)\nWhat is Valentine's Day?\tThe couple\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (The couple, was actually married on, Valentine?s Day) -> The couple (6740ms)\nWhat is Valentine's Day?\ttwo players\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (two players, get married during, Valentine?s event) -> two players (6723ms)\nWhat is Valentine's Day?\tthe newlyweds\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (the newlyweds, were married on, Valentine?s Day) -> the newlyweds (6723ms)\nWhat is Valentine's Day?\ta cute charm\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (a cute charm, can be worn during, Valentine 's Day) -> a cute charm (6740ms)\nWhat is Valentine's Day?\tKellogg and Curry\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (Kellogg and Curry, were married on, Valentine?s Day) -> Kellogg and Curry (6723ms)\nWhat is Valentine's Day?\tthe most\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (the most, wear, Valentine?s-themed prints) -> the most (6740ms)\nWhat is Valentine's Day?\tthe young man\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (the young man, would have been married on, Valentine?s Day) -> the young man (6723ms)\nWhat is Valentine's Day?\tcouples\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (couples, get married on, Valentine?s Day) -> couples (6723ms)\nWhat is Valentine's Day?\tpink\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (pink, can be worn on, Valentine?s Day or weddings) -> pink (6740ms)\nWhat is Valentine's Day?\t?The ultimate memory\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (?The ultimate memory, was getting married on, Valentine?s Day) -> ?The ultimate memory (6723ms)\nWhat is Valentine's Day?\tJoe\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (Joe, are both wearing red ties for, the Valentine?s Day theme) -> Joe (6723ms)\nWhat is Valentine's Day?\tCindy Crawford\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (Cindy Crawford, wears red for, Valentine?s day) -> Cindy Crawford (6723ms)\nWhat is Valentine's Day?\tthe couple\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (the couple, married on, Valentine 's Day) -> the couple (6740ms)\nWhat is Valentine's Day?\tbrides\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (brides, marry at, Valentine?s day) -> brides (6723ms)\nWhat is Valentine's Day?\tFatima Fasihuddin\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (Fatima Fasihuddin, were married on, Valentine?s Day 2003) -> Fatima Fasihuddin (6723ms)\nWhat is Valentine's Day?\tstudents\t-0.11111111110600003\tWhat is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (students, are encouraged to wear, Valentine?s Day colors) -> students (6740ms)\nWhat is Valentine's Day?\tinitiative petitions\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, have to do with, initiative petitions) -> initiative petitions (6757ms)\nWhat is Valentine's Day?\ta bit Ho Hum\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does get, a bit Ho Hum) -> a bit Ho Hum (6757ms)\nWhat is Valentine's Day?\ta trite\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be, a trite) -> a trite (6773ms)\nWhat is Valentine's Day?\teating\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be about, eating) -> eating (6804ms)\nWhat is Valentine's Day?\tCanada\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t actually exist in, Canada) -> Canada (6804ms)\nWhat is Valentine's Day?\tstress\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be another source of, stress) -> stress (6804ms)\nWhat is Valentine's Day?\tCoupons\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, Does n?t Like, Coupons) -> Coupons (6804ms)\nWhat is Valentine's Day?\tchoices\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (this Valentine?s Day, has to do with, choices) -> choices (6773ms)\nWhat is Valentine's Day?\tRoman Emperor Claudius II\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, did, Roman Emperor Claudius II) -> Roman Emperor Claudius II (6804ms)\nWhat is Valentine's Day?\tjewelers and florists\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, so do, jewelers and florists) -> jewelers and florists (6773ms)\nWhat is Valentine's Day?\tmoney\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (A homemade Valentine?s Day, does n?t just save, money) -> money (6789ms)\nWhat is Valentine's Day?\tchocolate and flowers\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t need to be just, chocolate and flowers) -> chocolate and flowers (6757ms)\nWhat is Valentine's Day?\tthe most romantic day\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be, the most romantic day) -> the most romantic day (6804ms)\nWhat is Valentine's Day?\tthe Americans\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (St Valentine?s Day, did, the Americans) -> the Americans (6773ms)\nWhat is Valentine's Day?\tany easier\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t get, any easier) -> any easier (6820ms)\nWhat is Valentine's Day?\ta lot\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (sure your Valentine?s Day, does n?t pass with, a lot) -> a lot (6740ms)\nWhat is Valentine's Day?\tan internet business\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, have to do with, an internet business) -> an internet business (6820ms)\nWhat is Valentine's Day?\ta wing\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day fairy, did, a wing) -> a wing (6773ms)\nWhat is Valentine's Day?\tthe end\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t need to be, the end) -> the end (6788ms)\nWhat is Valentine's Day?\ta fortune\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to cost, a fortune) -> a fortune (6789ms)\nWhat is Valentine's Day?\tflowers\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day decorations, can be done with, flowers) -> flowers (6740ms)\nWhat is Valentine's Day?\tyesterday\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day How?d everyone, do, yesterday) -> yesterday (6789ms)\nWhat is Valentine's Day?\ta little dance\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (?Happy Valentine?s Day, do, a little dance) -> a little dance (6788ms)\nWhat is Valentine's Day?\tA friend-of-a-friend\t-0.111111111111\tWhat is Valentine's Day? -> $x: ($x, describe, valentine 's day) -> (A friend-of-a-friend, described, Valentine?s Day) -> A friend-of-a-friend (6740ms)\nWhat is Valentine's Day?\tChristmas Day\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have a thing on, Christmas Day) -> Christmas Day (6804ms)\nWhat is Valentine's Day?\tthe shirts\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, so did, the shirts) -> the shirts (6740ms)\nWhat is Valentine's Day?\ta variety\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (This perfect Valentine?s Day touch, can be done with, a variety) -> a variety (6773ms)\nWhat is Valentine's Day?\ta holiday\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, still does n?t merit, a holiday) -> a holiday (6773ms)\nWhat is Valentine's Day?\tthe cacao bean\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be all about, the cacao bean) -> the cacao bean (6757ms)\nWhat is Valentine's Day?\tthe time\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, did n?t exist during, the time) -> the time (6773ms)\nWhat is Valentine's Day?\ta valentine\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (valentine?s day, do i have, a valentine) -> a valentine (6740ms)\nWhat is Valentine's Day?\trules\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Happy Valentine?s Day ! February 9 , 2009, Do, rules) -> rules (6757ms)\nWhat is Valentine's Day?\tslaves\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, have to do with, slaves) -> slaves (6820ms)\nWhat is Valentine's Day?\tSunday\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, do something special on, Sunday) -> Sunday (6820ms)\nWhat is Valentine's Day?\ta Christian-dominated society\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does come from, a Christian-dominated society) -> a Christian-dominated society (6757ms)\nWhat is Valentine's Day?\tsuck\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, really does, suck) -> suck (6820ms)\nWhat is Valentine's Day?\tthe flavor\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t hold back on, the flavor) -> the flavor (6789ms)\nWhat is Valentine's Day?\t4 days\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day dinner, was done about, 4 days) -> 4 days (6740ms)\nWhat is Valentine's Day?\tSuper Macro?s\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (my Valentines Day Lilly?s ?, you?ll need to do, Super Macro?s) -> Super Macro?s (6789ms)\nWhat is Valentine's Day?\tgibbons\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, do, gibbons) -> gibbons (6757ms)\nWhat is Valentine's Day?\tsinful pagan practices\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does have its basis in, sinful pagan practices) -> sinful pagan practices (6740ms)\nWhat is Valentine's Day?\tVictoria?s Secret\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (a special Valentine?s Day gifts page, so do, Victoria?s Secret) -> Victoria?s Secret (6773ms)\nWhat is Valentine's Day?\tterms\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (our Valentine?s Day, did n?t even come close in, terms) -> terms (6757ms)\nWhat is Valentine's Day?\tChristmas\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine ?s Day, is only out done by, Christmas) -> Christmas (6804ms)\nWhat is Valentine's Day?\ta date\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s day, does n?t dictate, a date) -> a date (6773ms)\nWhat is Valentine's Day?\toptions\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t leave a lot of, options) -> options (6740ms)\nWhat is Valentine's Day?\tA Tapas Fake\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, Does, A Tapas Fake) -> A Tapas Fake (6820ms)\nWhat is Valentine's Day?\tOphelia\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does, Ophelia) -> Ophelia (6773ms)\nWhat is Valentine's Day?\t5 Second Networking\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s day advice, have to do with, 5 Second Networking) -> 5 Second Networking (6789ms)\nWhat is Valentine's Day?\tpolitics\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, got to do with, politics) -> politics (6773ms)\nWhat is Valentine's Day?\tflowers or chocolate\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, did n?t get, flowers or chocolate) -> flowers or chocolate (6757ms)\nWhat is Valentine's Day?\ta routine\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to follow, a routine) -> a routine (6804ms)\nWhat is Valentine's Day?\tWilliam\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (a Valentine?s Day balloon, did n?t give one to, William) -> William (6804ms)\nWhat is Valentine's Day?\ttestosterone\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, probably has something to do with, testosterone) -> testosterone (6788ms)\nWhat is Valentine's Day?\tthe ACLU\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does, the ACLU) -> the ACLU (6789ms)\nWhat is Valentine's Day?\tValentine?s Day 2011\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day 2010, so did, Valentine?s Day 2011) -> Valentine?s Day 2011 (6757ms)\nWhat is Valentine's Day?\ta whole new level\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, really does take things to, a whole new level) -> a whole new level (6820ms)\nWhat is Valentine's Day?\toverpriced roses\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, Do, overpriced roses) -> overpriced roses (6757ms)\nWhat is Valentine's Day?\tlast year\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, did, last year) -> last year (6804ms)\nWhat is Valentine's Day?\tany particular style\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have, any particular style) -> any particular style (6740ms)\nWhat is Valentine's Day?\tequal flowers\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t, equal flowers) -> equal flowers (6789ms)\nWhat is Valentine's Day?\tJapan\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, is done a little bit differently here in, Japan) -> Japan (6804ms)\nWhat is Valentine's Day?\tCassandra\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (1 Valentine?s Day Box, Does, Cassandra) -> Cassandra (6804ms)\nWhat is Valentine's Day?\ta snowshoe hike\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, were doing, a snowshoe hike) -> a snowshoe hike (6804ms)\nWhat is Valentine's Day?\teither\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (this Valentine?s Day, does n?t put pressure on, either) -> either (6789ms)\nWhat is Valentine's Day?\ta lot of emotions\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine 's Day, does bring, a lot of emotions) -> a lot of emotions (6789ms)\nWhat is Valentine's Day?\texpress love\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (my boyhood Valentine?s Day practice, did, express love) -> express love (6820ms)\nWhat is Valentine's Day?\tout\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine 's Day, does bring a lot of emotions, out) -> out (6773ms)\nWhat is Valentine's Day?\ta good message\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does have, a good message) -> a good message (6788ms)\nWhat is Valentine's Day?\ta box\t-0.111111111111\tWhat is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s day, does n?t come in, a box) -> a box (6804ms)\nWhat is Valentine's Day?\tlet?s\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (let?s, do this for, Valentine?s Day) -> let?s (6937ms)\nWhat is Valentine's Day?\tWyden-Ryan and Lieberman-Coburn\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Wyden-Ryan and Lieberman-Coburn, did on, Valentine?s Day) -> Wyden-Ryan and Lieberman-Coburn (6909ms)\nWhat is Valentine's Day?\tmonths\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is over for, months) -> months (6937ms)\nWhat is Valentine's Day?\tShare\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Share, did, Valentine?s Day) -> Share (6835ms)\nWhat is Valentine's Day?\the?d\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (he?d, do something special for, Valentine?s Day) -> he?d (6923ms)\nWhat is Valentine's Day?\tolder couples\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (older couples, do on, Valentine?s Day) -> older couples (6937ms)\nWhat is Valentine's Day?\ttwo\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is made for, two) -> two (6923ms)\nWhat is Valentine's Day?\ta christian saint and we?re jewish\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (valentine?s day, is for, a christian saint and we?re jewish) -> a christian saint and we?re jewish (6894ms)\nWhat is Valentine's Day?\tlonger-term relationships\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (longer-term relationships, do more for, Valentine?s Day) -> longer-term relationships (6894ms)\nWhat is Valentine's Day?\ta wedding\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s day, is the best day for, a wedding) -> a wedding (6880ms)\nWhat is Valentine's Day?\tFeb?ru?ary\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Feb?ru?ary, so did, Valentine?s Day) -> Feb?ru?ary (6835ms)\nWhat is Valentine's Day?\tnav firm TomTom\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (nav firm TomTom, got to do with, Valentine?s Day) -> nav firm TomTom (6820ms)\nWhat is Valentine's Day?\tthe photographers\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the photographers, do for, Valentine?s Day) -> the photographers (6909ms)\nWhat is Valentine's Day?\tHalf term school holidays\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Half term school holidays, so does, Valentine?s Day) -> Half term school holidays (6952ms)\nWhat is Valentine's Day?\ta new window\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a new window, Did, Valentine?s Day) -> a new window (6880ms)\nWhat is Valentine's Day?\tfitness\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (fitness, have to do with, Valentine?s Day) -> fitness (6952ms)\nWhat is Valentine's Day?\ta day\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, are just happy for, a day) -> a day (6894ms)\nWhat is Valentine's Day?\tLovers\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, Lovers) -> Lovers (6880ms)\nWhat is Valentine's Day?\ta Christian saint\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, a Christian saint) -> a Christian saint (6850ms)\nWhat is Valentine's Day?\tpumps\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is only for, pumps) -> pumps (6952ms)\nWhat is Valentine's Day?\tLoving\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, Is For, Loving) -> Loving (6909ms)\nWhat is Valentine's Day?\tweeks\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a recipe for, weeks) -> weeks (6880ms)\nWhat is Valentine's Day?\tthe question\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the question, do for, Valentine?s Day) -> the question (6850ms)\nWhat is Valentine's Day?\ta special romantic holiday\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s day, is a key for, a special romantic holiday) -> a special romantic holiday (6952ms)\nWhat is Valentine's Day?\tclose friends\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (close friends, are doing for, Valentine?s Day) -> close friends (6880ms)\nWhat is Valentine's Day?\twimps\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (?Valentine?s Day, is for, wimps) -> wimps (7057ms)\nWhat is Valentine's Day?\tAnalytics\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Analytics, do, Valentine?s Day) -> Analytics (6850ms)\nWhat is Valentine's Day?\tCarriage Works\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Carriage Works, did, Valentine?s Day) -> Carriage Works (6835ms)\nWhat is Valentine's Day?\tkids\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is pure fun for, kids) -> kids (6850ms)\nWhat is Valentine's Day?\tthe same folks\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the same folks, did, Valentine?s Day) -> the same folks (6909ms)\nWhat is Valentine's Day?\tthe GIRLS\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is the day for, the GIRLS) -> the GIRLS (6820ms)\nWhat is Valentine's Day?\tGA\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (GA, did on, Valentine?s Day) -> GA (6909ms)\nWhat is Valentine's Day?\twolves\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (wolves, have to do with, Valentine?s Day) -> wolves (6909ms)\nWhat is Valentine's Day?\tSummer Camp Summer Camp\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Summer Camp Summer Camp, did an interview about, Valentine?s Day) -> Summer Camp Summer Camp (7057ms)\nWhat is Valentine's Day?\tTina and Mike\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is particularly meaningful for, Tina and Mike) -> Tina and Mike (6850ms)\nWhat is Valentine's Day?\tany idea\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (any idea, you?ll do for, Valentine?s Day) -> any idea (7058ms)\nWhat is Valentine's Day?\tsuckers\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, suckers) -> suckers (7057ms)\nWhat is Valentine's Day?\tare?PLUSHIES\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is known for, are?PLUSHIES) -> are?PLUSHIES (6835ms)\nWhat is Valentine's Day?\tthe place\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the place, will be nicely done on, Valentine?s Day) -> the place (6850ms)\nWhat is Valentine's Day?\tthe Dead?which\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the Dead?which, has nothing to do with, Valentine?s day) -> the Dead?which (6923ms)\nWhat is Valentine's Day?\tfragrances\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (fragrances, did really well for, Valentine?s Day) -> fragrances (6938ms)\nWhat is Valentine's Day?\tlovers?lovers\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, lovers?lovers) -> lovers?lovers (6835ms)\nWhat is Valentine's Day?\tpastry chefs\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (pastry chefs, do up, Valentine?s Day) -> pastry chefs (6937ms)\nWhat is Valentine's Day?\tthe mature minds\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, the mature minds) -> the mature minds (6923ms)\nWhat is Valentine's Day?\tlovin?\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, lovin?) -> lovin? (6923ms)\nWhat is Valentine's Day?\tUniforme\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Uniforme, do, Hornets Valentine?s Day) -> Uniforme (7057ms)\nWhat is Valentine's Day?\tsingles\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, singles) -> singles (6894ms)\nWhat is Valentine's Day?\tthe hopeless romantics\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, the hopeless romantics) -> the hopeless romantics (6835ms)\nWhat is Valentine's Day?\tone day\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (valentine?s day, is only for, one day) -> one day (6923ms)\nWhat is Valentine's Day?\ta single young woman\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a single young woman, do, this Valentine?s Day) -> a single young woman (6865ms)\nWhat is Valentine's Day?\tmuch my cutie pies\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (much my cutie pies, did ?, Happy Valentine?s Day ?) -> much my cutie pies (6894ms)\nWhat is Valentine's Day?\tFenton\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (Fenton, only produced this basket for, Valentine 's Day) -> Fenton (6880ms)\nWhat is Valentine's Day?\tTOM\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (TOM, have to do with, Valentine?s Day) -> TOM (6835ms)\nWhat is Valentine's Day?\tthe most part\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, the most part) -> the most part (7058ms)\nWhat is Valentine's Day?\tthe National Post\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the National Post, has nothing to do with, Valentine?s Day) -> the National Post (6865ms)\nWhat is Valentine's Day?\tmen\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (men, do for, Valentine?s Day) -> men (7057ms)\nWhat is Valentine's Day?\t? love and romance\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is known for, ? love and romance) -> ? love and romance (6894ms)\nWhat is Valentine's Day?\tThe site\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (The site, does big business around, Valentine?s Day) -> The site (6952ms)\nWhat is Valentine's Day?\tthe ?funny ? cards\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, has been reserved for, the ?funny ? cards) -> the ?funny ? cards (6820ms)\nWhat is Valentine's Day?\t?Um\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (?Um, like to do on, Valentine?s Day) -> ?Um (6952ms)\nWhat is Valentine's Day?\tpersonal relationships\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, personal relationships) -> personal relationships (6909ms)\nWhat is Valentine's Day?\tthe economy\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is great for, the economy) -> the economy (6894ms)\nWhat is Valentine's Day?\tEleanor\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Eleanor, did, this Valentine?s Day) -> Eleanor (6835ms)\nWhat is Valentine's Day?\tMr. Smith\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Mr. Smith, were doing for, Valentine?s Day) -> Mr. Smith (6937ms)\nWhat is Valentine's Day?\tflorists\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, was a big day for, florists) -> florists (6937ms)\nWhat is Valentine's Day?\ta good chance we?ll\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a good chance we?ll, do so again on, Valentine?s Day) -> a good chance we?ll (6850ms)\nWhat is Valentine's Day?\t200 million roses\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (200 million roses, were produced for, Valentine?s Day 2011) -> 200 million roses (6835ms)\nWhat is Valentine's Day?\tany vendor selling flowers\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a great day for, any vendor selling flowers) -> any vendor selling flowers (6894ms)\nWhat is Valentine's Day?\tthe young\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, the young) -> the young (6820ms)\nWhat is Valentine's Day?\ta family\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a family, will do for, Valentine?s Day) -> a family (6835ms)\nWhat is Valentine's Day?\tChicago\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Chicago, does, Valentine?s Day) -> Chicago (6894ms)\nWhat is Valentine's Day?\tNearly 200 million roses\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (Nearly 200 million roses, are produced for, Valentine?s Day) -> Nearly 200 million roses (6909ms)\nWhat is Valentine's Day?\tsingle people\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, single people) -> single people (6865ms)\nWhat is Valentine's Day?\tKaty\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Katy, is doing to, Valentine?s Day) -> Katy (6835ms)\nWhat is Valentine's Day?\tgetaway\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, define, valentine 's day) -> (getaway, together can define, a truly memorable Valentine?s Day) -> getaway (6880ms)\nWhat is Valentine's Day?\tFebruary 14\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (February 14, does, Valentine?s Day mean) -> February 14 (6923ms)\nWhat is Valentine's Day?\teverybody\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, everybody) -> everybody (6894ms)\nWhat is Valentine's Day?\tNew York City\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (New York City, did for, Valentine?s Day) -> New York City (6923ms)\nWhat is Valentine's Day?\tthe girls\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is more for, the girls) -> the girls (6850ms)\nWhat is Valentine's Day?\tprint\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (print, produce, Valentine?s Day cards) -> print (7057ms)\nWhat is Valentine's Day?\tsweethearts\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, sweethearts) -> sweethearts (6937ms)\nWhat is Valentine's Day?\tteenagers\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is an occasion for, teenagers) -> teenagers (6835ms)\nWhat is Valentine's Day?\tsweeties\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, sweeties) -> sweeties (6909ms)\nWhat is Valentine's Day?\tCasino\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Casino, is doing for, Valentine?s Day) -> Casino (6923ms)\nWhat is Valentine's Day?\tthe makeup\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the makeup, is done for, Valentine?s Day) -> the makeup (6923ms)\nWhat is Valentine's Day?\tMrs. HYA\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Mrs. HYA, are doing for, Valentine?s Day) -> Mrs. HYA (6937ms)\nWhat is Valentine's Day?\tgirls\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, girls) -> girls (6923ms)\nWhat is Valentine's Day?\tSpanking\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Spanking, Have to do with, Valentine?s Day) -> Spanking (6937ms)\nWhat is Valentine's Day?\tOnly chocolate\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Only chocolate, will do on, Valentine?s Day) -> Only chocolate (7058ms)\nWhat is Valentine's Day?\ttwo people\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Days, is for, two people) -> two people (6880ms)\nWhat is Valentine's Day?\tDr Sketchy?s\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Dr Sketchy?s, Does, Valentine?s Day) -> Dr Sketchy?s (6952ms)\nWhat is Valentine's Day?\tIndoors\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Indoors, always does something special for, Valentine?s Day) -> Indoors (6850ms)\nWhat is Valentine's Day?\tthe top candle manufacturers\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (the top candle manufacturers, produce, Valentine?s Day scents) -> the top candle manufacturers (6894ms)\nWhat is Valentine's Day?\tan evangelical perspective\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (an evangelical perspective, Did, Valentine?s Day Begin) -> an evangelical perspective (6923ms)\nWhat is Valentine's Day?\ta fun loving couple\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a fun loving couple, does n?t take, Valentine?s Day) -> a fun loving couple (6952ms)\nWhat is Valentine's Day?\tgreen\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (green, have to do with, Valentine?s Day) -> green (6865ms)\nWhat is Valentine's Day?\texchanging\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, exchanging) -> exchanging (6865ms)\nWhat is Valentine's Day?\tpresents\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (presents, do anything special for, Valentine?s Day) -> presents (6865ms)\nWhat is Valentine's Day?\tguys\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (guys, want to do on, Valentine?s Day) -> guys (6909ms)\nWhat is Valentine's Day?\tIce .com\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (Ice .com, produced last year for, Valentine?s Day cost) -> Ice .com (6835ms)\nWhat is Valentine's Day?\ttrouble\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (trouble, do for, Valentine?s Day) -> trouble (6850ms)\nWhat is Valentine's Day?\tRuby?s class\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Ruby?s class, did n?t celebrate, Valentine?s Day) -> Ruby?s class (6880ms)\nWhat is Valentine's Day?\tthe simp\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, was quite succesful for, the simp) -> the simp (6938ms)\nWhat is Valentine's Day?\tbut?you\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (but?you, did get her something on, Valentine?s Day) -> but?you (6952ms)\nWhat is Valentine's Day?\tevery lovers\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is special for, every lovers) -> every lovers (6952ms)\nWhat is Valentine's Day?\ta recipe\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (valentine?s day, is looking for, a recipe) -> a recipe (6820ms)\nWhat is Valentine's Day?\ta few hours\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is usually fun for, a few hours) -> a few hours (6952ms)\nWhat is Valentine's Day?\ta guy\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a guy, did something really stupid on, Valentine?s Day) -> a guy (6865ms)\nWhat is Valentine's Day?\ta single guy\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a single guy, do on, Valentine?s Day) -> a single guy (6835ms)\nWhat is Valentine's Day?\tFebruary 3. Ashley?s birthday\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (February 3. Ashley?s birthday, did, Valentine?s Day) -> February 3. Ashley?s birthday (6938ms)\nWhat is Valentine's Day?\tThe bookmark\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (The bookmark, has nothing to do with, Valentine?s Day) -> The bookmark (6952ms)\nWhat is Valentine's Day?\tfamilies Search\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, families Search) -> families Search (6909ms)\nWhat is Valentine's Day?\tValentines Day\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Valentines Day, did, Valentine?s Day turn) -> Valentines Day (6909ms)\nWhat is Valentine's Day?\tthe business\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is tops for, the business) -> the business (6952ms)\nWhat is Valentine's Day?\tan hour\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (an hour, do your part to make, Valentine?s Day) -> an hour (6937ms)\nWhat is Valentine's Day?\tthe homeless\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the homeless, will be done around, Valentine?s Day) -> the homeless (6850ms)\nWhat is Valentine's Day?\tgulp\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, exactly be, valentine 's day) -> (gulp, exactly is, the best Valentine?s Day gift) -> gulp (6909ms)\nWhat is Valentine's Day?\there and\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (here and, there did on, Valentine?s Day) -> here and (6835ms)\nWhat is Valentine's Day?\tgreeting card companies\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (greeting card companies, did n?t create, Valentine?s Day) -> greeting card companies (6865ms)\nWhat is Valentine's Day?\tcelebration\t-0.111111111112\tWhat is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s day, is a cause for, celebration) -> celebration (6894ms)\nWhat is Valentine's Day?\tthe servers\t-0.111111111112\tWhat is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the servers, do have to work on, Valentine?s Day) -> the servers (6937ms)\nWhat is Valentine's Day?\tthe orang-utan ,\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (the orang-utan ,, find a date for, Valentine?s Day ? Primatology) -> the orang-utan , (7120ms)\nWhat is Valentine's Day?\tInfo\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Info, found IS available for, Valentine?s Day) -> Info (7120ms)\nWhat is Valentine's Day?\ta four-course menu\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (a four-course menu, created just for, Valentine?s Day) -> a four-course menu (7128ms)\nWhat is Valentine's Day?\tOCD kindergarten teacher Johanna\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (OCD kindergarten teacher Johanna, hates, Valentine?s Day) -> OCD kindergarten teacher Johanna (7102ms)\nWhat is Valentine's Day?\tAmericans\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Americans, have a love-hate relationship with, Valentine?s Day) -> Americans (7080ms)\nWhat is Valentine's Day?\tNC Talulla?s\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (NC Talulla?s, has created, a delicious Valentine?s Day menu) -> NC Talulla?s (7120ms)\nWhat is Valentine's Day?\tOrchid Diva\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Orchid Diva, creates giving, Valentine?s Day) -> Orchid Diva (7080ms)\nWhat is Valentine's Day?\tUsers\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Users, can create, magnificent Valentine?s Day cards) -> Users (7111ms)\nWhat is Valentine's Day?\tShoppers\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Shoppers, can find all of, the newest Valentine?s Day cards) -> Shoppers (7069ms)\nWhat is Valentine's Day?\tLindy Greaver\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Lindy Greaver, create floral arrangements for, Valentine?s Day) -> Lindy Greaver (7091ms)\nWhat is Valentine's Day?\tVisit us\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Visit us, find out about, our Valentine?s Day specials) -> Visit us (7128ms)\nWhat is Valentine's Day?\tConnect\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Connect, create, a Valentine?s Day craft) -> Connect (7111ms)\nWhat is Valentine's Day?\tthe second Tuesday\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (the second Tuesday, happens to be, Valentine?s Day) -> the second Tuesday (7128ms)\nWhat is Valentine's Day?\tthe next one\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, deal with, valentine 's day) -> (the next one, deals with, pain & Valentine?s Day) -> the next one (7111ms)\nWhat is Valentine's Day?\tSeems Apple\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Seems Apple, found love on, Valentine?s Day) -> Seems Apple (7111ms)\nWhat is Valentine's Day?\tBristol Toyota Scion\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Bristol Toyota Scion, create, a Valentine?s Day email campaign) -> Bristol Toyota Scion (7080ms)\nWhat is Valentine's Day?\tVirginia innkeepers\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Virginia innkeepers, help create, a special Valentine?s Day) -> Virginia innkeepers (7091ms)\nWhat is Valentine's Day?\ttime\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (time, create, a Valentine?s Day look) -> time (7080ms)\nWhat is Valentine's Day?\ta ?cuddle ? kind\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (a ?cuddle ? kind, hates, Valentine?s day) -> a ?cuddle ? kind (7091ms)\nWhat is Valentine's Day?\tDove\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Dove, creates, Valentine?s Day tweet screen Dove) -> Dove (7069ms)\nWhat is Valentine's Day?\tKate\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Kate, too hates, Valentine?s Day) -> Kate (7069ms)\nWhat is Valentine's Day?\tphoto buffs\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (photo buffs, can create, Valentine 's Day greetings) -> photo buffs (7069ms)\nWhat is Valentine's Day?\tCats Fly Casey\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Cats Fly Casey, hates, Valentine?s Day but Tyler) -> Cats Fly Casey (7069ms)\nWhat is Valentine's Day?\tWomen\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Women, especially find being alone on, Valentine?s Day) -> Women (7111ms)\nWhat is Valentine's Day?\tjust\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (just, so happened to be on, Valentine?s Day) -> just (7111ms)\nWhat is Valentine's Day?\tGuests\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Guests, can find bags full of, Valentine?s Day candy) -> Guests (7091ms)\nWhat is Valentine's Day?\tWe?ve\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (We?ve, created, a new Valentine?s Day section) -> We?ve (7120ms)\nWhat is Valentine's Day?\tHEYLOOK\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (HEYLOOK, created, this quick Valentine?s Day gift packaging) -> HEYLOOK (7080ms)\nWhat is Valentine's Day?\tEach one\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Each one, creates the perfect setting for, Valentine?s Day) -> Each one (7091ms)\nWhat is Valentine's Day?\tChef Peter\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Chef Peter, has created, a special Valentine?s Day menu) -> Chef Peter (7120ms)\nWhat is Valentine's Day?\tEtsy\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Etsy, finds for, Valentine?s Day admin Shannon) -> Etsy (7091ms)\nWhat is Valentine's Day?\tepoch\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (epoch, happened to fall on, Valentine?s day) -> epoch (7058ms)\nWhat is Valentine's Day?\tthe White House\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (the White House, happens to be, Valentine?s Day) -> the White House (7120ms)\nWhat is Valentine's Day?\tcupid-themed cupcakes\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (cupid-themed cupcakes, create, Valentine?s Day cards) -> cupid-themed cupcakes (7080ms)\nWhat is Valentine's Day?\ta nice bouquet\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (a nice bouquet, created, a Valentine?s Day card) -> a nice bouquet (7058ms)\nWhat is Valentine's Day?\tSant?\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Sant?, has created, an unbeatable Valentine?s Day Tasting Menu) -> Sant? (7058ms)\nWhat is Valentine's Day?\ta florist\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (a florist, could create, a special Valentine?s day program) -> a florist (7111ms)\nWhat is Valentine's Day?\thumanists\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (humanists, hate, Valentine?s Day) -> humanists (7080ms)\nWhat is Valentine's Day?\tThe kids\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (The kids, created, Valentine 's Day cards) -> The kids (7102ms)\nWhat is Valentine's Day?\tindividuals\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (individuals, have created, the Anti-Valentine?s Day celebration) -> individuals (7091ms)\nWhat is Valentine's Day?\tNavigation I?ve\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Navigation I?ve, always hated, Valentine?s Day) -> Navigation I?ve (7069ms)\nWhat is Valentine's Day?\tConsumers\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Consumers, can find, the latest Valentine?s Day greetings) -> Consumers (7069ms)\nWhat is Valentine's Day?\tSkin Authority\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Skin Authority, has created, an anti-Valentine?s Day line) -> Skin Authority (7080ms)\nWhat is Valentine's Day?\tRH\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (RH, has also created some amazing jewelry for, Valentine?s Day) -> RH (7091ms)\nWhat is Valentine's Day?\tI?ve\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (I?ve, found the true meaning of, Valentine?s NIGHT Day) -> I?ve (7111ms)\nWhat is Valentine's Day?\tDisney\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Disney, has created, a special Valentine?s Day Fun Pack) -> Disney (7120ms)\nWhat is Valentine's Day?\tsenior Mahsa Ghahri\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (senior Mahsa Ghahri, finds, Valentine?s Day) -> senior Mahsa Ghahri (7069ms)\nWhat is Valentine's Day?\tDan Winne\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Dan Winne, has created, a Valentine?s Day video) -> Dan Winne (7120ms)\nWhat is Valentine's Day?\tJessica Biel\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Jessica Biel, hates, Valentine?s Day) -> Jessica Biel (7102ms)\nWhat is Valentine's Day?\ttoday?s recipe\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (today?s recipe, happens to be perfect for, Valentine?s Day) -> today?s recipe (7091ms)\nWhat is Valentine's Day?\tCulture\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Culture, Find out about, Valentine?s Day) -> Culture (7120ms)\nWhat is Valentine's Day?\tyou?ll\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (you?ll, aready find, Valentine?s Day candy) -> you?ll (7091ms)\nWhat is Valentine's Day?\tSingles Awareness Day\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Singles Awareness Day, hate, Valentine?s Day) -> Singles Awareness Day (7069ms)\nWhat is Valentine's Day?\tKim\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Kim, hates, Valentine?s Day) -> Kim (7128ms)\nWhat is Valentine's Day?\tFinancial relief\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Financial relief, may be hard to find since, Valentine?s Day) -> Financial relief (7128ms)\nWhat is Valentine's Day?\tInsider\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Insider, Find some inspiration for, Valentine?s Day) -> Insider (7111ms)\nWhat is Valentine's Day?\tfootball\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (football, hate, Valentine?s Day) -> football (7120ms)\nWhat is Valentine's Day?\tthe next day?which\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (the next day?which, happens to be, Valentine?s Day?was) -> the next day?which (7102ms)\nWhat is Valentine's Day?\t12 years\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (12 years, are invited to create, a Valentine?s Day craft) -> 12 years (7102ms)\nWhat is Valentine's Day?\tEvelyn Oakley\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Evelyn Oakley, found th?, perfect unique Valentine?s Day gifts) -> Evelyn Oakley (7069ms)\nWhat is Valentine's Day?\tTuesday\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, refer, valentine 's day) -> (Tuesday, referred to, Valentine?s Day) -> Tuesday (7091ms)\nWhat is Valentine's Day?\tValentine?s day?i\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Valentine?s day?i, have a love/hate thing about, Valentine?s Day) -> Valentine?s day?i (7102ms)\nWhat is Valentine's Day?\tFebruary 14th , 2009?which\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (February 14th , 2009?which, also happens to be, Valentine?s Day) -> February 14th , 2009?which (7069ms)\nWhat is Valentine's Day?\tAttendees\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Attendees, created, Valentine?s Day cards) -> Attendees (7091ms)\nWhat is Valentine's Day?\tGlamour readers\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Glamour readers, hate, Valentine?s Day) -> Glamour readers (7111ms)\nWhat is Valentine's Day?\tPeople either love\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (People either love, hate, Valentine?s Day) -> People either love (7111ms)\nWhat is Valentine's Day?\tthe Family Circus animated specials\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, deal with, valentine 's day) -> (the Family Circus animated specials, dealt with, Valentine?s Day) -> the Family Circus animated specials (7069ms)\nWhat is Valentine's Day?\tlast week\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (last week, happened to be, Valentine?s Day) -> last week (7102ms)\nWhat is Valentine's Day?\tHeineken\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Heineken, has created, this Valentine?s Day Facebook App) -> Heineken (7102ms)\nWhat is Valentine's Day?\ta series\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (a series, create, a mini Valentine?s Day once) -> a series (7080ms)\nWhat is Valentine's Day?\ta Saturday\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (a Saturday, also happened to be, Valentine?s Day) -> a Saturday (7120ms)\nWhat is Valentine's Day?\t3:00 pm Children\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (3:00 pm Children, will create, a Valentine?s Day Gift) -> 3:00 pm Children (7128ms)\nWhat is Valentine's Day?\tthe Tiger 2010\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (the Tiger 2010, also happened to be, Valentine?s Day) -> the Tiger 2010 (7102ms)\nWhat is Valentine's Day?\tTrevor Shipp My budget\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Trevor Shipp My budget, hates, Valentine?s Day) -> Trevor Shipp My budget (7111ms)\nWhat is Valentine's Day?\tThe stage\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (The stage, is created for, a romantic Valentine?s Day) -> The stage (7058ms)\nWhat is Valentine's Day?\tany unmarried couples\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (any unmarried couples, found together on, Valentine?s Day) -> any unmarried couples (7080ms)\nWhat is Valentine's Day?\tKara\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Kara, hates, Valentine?s Day) -> Kara (7102ms)\nWhat is Valentine's Day?\tKids\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Kids, create, a unique Valentine?s Day card) -> Kids (7091ms)\nWhat is Valentine's Day?\tFeb 14 2012 I?ve\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Feb 14 2012 I?ve, always found, Valentine?s Day) -> Feb 14 2012 I?ve (7120ms)\nWhat is Valentine's Day?\tto\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (to, create, your own Valentine?s Day ecard) -> to (7091ms)\nWhat is Valentine's Day?\tThe second day\t-0.222222222222\tWhat is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (The second day, also happened to be, Valentine?s Day) -> The second day (7102ms)\nWhat is Valentine's Day?\twork\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (work, is, Valentine?s Day) -> work (7227ms)\nWhat is Valentine's Day?\tthe late winter doldrums\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the late winter doldrums, is to celebrate, Valentine?s Day) -> the late winter doldrums (7161ms)\nWhat is Valentine's Day?\ta post\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a post, was supposed to be about, Valentine?s day) -> a post (7265ms)\nWhat is Valentine's Day?\t?Pink Friday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (?Pink Friday, is set to be released on, Valentine?s Day) -> ?Pink Friday (7176ms)\nWhat is Valentine's Day?\tcase he?s\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (case he?s, should be prepared prior to, Valentine?s day) -> case he?s (7283ms)\nWhat is Valentine's Day?\tJust a little card\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Just a little card, can be used for, Valentine?s day) -> Just a little card (7265ms)\nWhat is Valentine's Day?\tplace\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (place, is, Valentine?s Day) -> place (7169ms)\nWhat is Valentine's Day?\tSingletons\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Singletons, can love, Valentine?s Day) -> Singletons (7292ms)\nWhat is Valentine's Day?\tLight?s more earnest Everyday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Light?s more earnest Everyday, is, Valentine?s Day) -> Light?s more earnest Everyday (7192ms)\nWhat is Valentine's Day?\tCredit card concierge\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Credit card concierge, can save, Valentine?s Day) -> Credit card concierge (7136ms)\nWhat is Valentine's Day?\tEmotions\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Emotions, can be sparked with, Valentine?s Day) -> Emotions (7234ms)\nWhat is Valentine's Day?\tThe last update\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The last update, seems to be for, Valentine?s Day) -> The last update (7234ms)\nWhat is Valentine's Day?\tthe foreseeable future\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the foreseeable future, is, Valentine?s Day) -> the foreseeable future (7184ms)\nWhat is Valentine's Day?\tNobody\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Nobody, likes to be alone on, Valentine?s Day) -> Nobody (7259ms)\nWhat is Valentine's Day?\tProject # 1\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Project # 1, is, Valentine?s Day) -> Project # 1 (7184ms)\nWhat is Valentine's Day?\tFebruary?s New and Full Moons\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February?s New and Full Moons, is, Valentine?s Day) -> February?s New and Full Moons (7234ms)\nWhat is Valentine's Day?\tEvery lover\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Every lover, is, Valentine?s Day) -> Every lover (7247ms)\nWhat is Valentine's Day?\tNorma?s birthday and dying day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Norma?s birthday and dying day, was, Valentine?s Day) -> Norma?s birthday and dying day (7292ms)\nWhat is Valentine's Day?\tThe poems\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (The poems, can also be a great idea on, Valentine?s Day) -> The poems (7241ms)\nWhat is Valentine's Day?\tThe event\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The event, is meant to celebrate, Valentine?s Day) -> The event (7279ms)\nWhat is Valentine's Day?\tred stones\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (red stones, can be a nice touch for, Valentine?s Day) -> red stones (7247ms)\nWhat is Valentine's Day?\t?Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (?Today, is, Valentine?s Day) -> ?Today (7259ms)\nWhat is Valentine's Day?\tMaybe viewers\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Maybe viewers, can enjoy, Valentine?s Day) -> Maybe viewers (7144ms)\nWhat is Valentine's Day?\tSanriotown\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Sanriotown, can join the fun on, Valentine?s Day) -> Sanriotown (7128ms)\nWhat is Valentine's Day?\tI?m\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (I?m, used to being single on, Valentine?s Day) -> I?m (7220ms)\nWhat is Valentine's Day?\tStranger Than Fiction\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Stranger Than Fiction, is paying homage to, Valentine?s Day) -> Stranger Than Fiction (7161ms)\nWhat is Valentine's Day?\teveryone February 14th\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (everyone February 14th, is, Valentine?s Day) -> everyone February 14th (7247ms)\nWhat is Valentine's Day?\tLiberal Democrats\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Liberal Democrats, are particularly positive to, Valentine?s Day) -> Liberal Democrats (7184ms)\nWhat is Valentine's Day?\tRetailers\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Retailers, are now looking ahead to, Valentine?s Day) -> Retailers (7241ms)\nWhat is Valentine's Day?\tFeb 11 , 2011 @ 11:00 PM Monday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Feb 11 , 2011 @ 11:00 PM Monday, is, Valentine?s Day) -> Feb 11 , 2011 @ 11:00 PM Monday (7136ms)\nWhat is Valentine's Day?\tthe best gifts\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the best gifts, can be given away on, Valentine?s Day) -> the best gifts (7206ms)\nWhat is Valentine's Day?\tThe second largest\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The second largest, is, Valentine?s Day) -> The second largest (7136ms)\nWhat is Valentine's Day?\tfancy dinners\t-0.222222222223\tWhat is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, is all about, fancy dinners) -> fancy dinners (7247ms)\nWhat is Valentine's Day?\tMarch 8\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (March 8, is second only to, Valentine?s Day) -> March 8 (7265ms)\nWhat is Valentine's Day?\tA new grill\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (A new grill, can make, a fantastic Valentine?s Day gift) -> A new grill (7288ms)\nWhat is Valentine's Day?\tthe song\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the song, is to be officially released on, Valentine?s Day) -> the song (7288ms)\nWhat is Valentine's Day?\tthe teddy bear\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the teddy bear, is, Valentine?s Day) -> the teddy bear (7253ms)\nWhat is Valentine's Day?\tThe other settings\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The other settings, are, Valentine?s Day) -> The other settings (7220ms)\nWhat is Valentine's Day?\tBlaine and Kurt\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Blaine and Kurt, can?t be together on, Valentine?s Day due) -> Blaine and Kurt (7199ms)\nWhat is Valentine's Day?\tyear\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (year, can be very special for, Valentine?s Day) -> year (7192ms)\nWhat is Valentine's Day?\t?Last night\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (?Last night, was, Valentine?s Day) -> ?Last night (7199ms)\nWhat is Valentine's Day?\tBar Divani\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Bar Divani, is the place to be on, Valentine?s Day) -> Bar Divani (7227ms)\nWhat is Valentine's Day?\ta successful Rio hunt\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a successful Rio hunt, was prior to, Valentine?s Day) -> a successful Rio hunt (7265ms)\nWhat is Valentine's Day?\tTuesday February 14\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Tuesday February 14, is, Valentine?s Day) -> Tuesday February 14 (7213ms)\nWhat is Valentine's Day?\tevery budget\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (every budget, can be, a lovely Valentine?s Day gift) -> every budget (7273ms)\nWhat is Valentine's Day?\tbetter way\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (better way, is there to celebrate, Valentine?s Day) -> better way (7227ms)\nWhat is Valentine's Day?\tlove ? and I?ve\t-0.222222222223\tWhat is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, is all about, love ? and I?ve) -> love ? and I?ve (7284ms)\nWhat is Valentine's Day?\tthe date\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the date, was also close to, Valentine?s Day) -> the date (7176ms)\nWhat is Valentine's Day?\t?Every day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (?Every day, has to be, Valentine?s Day) -> ?Every day (7259ms)\nWhat is Valentine's Day?\tthe sentimental values\t-0.222222222223\tWhat is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, is more about, the sentimental values) -> the sentimental values (7259ms)\nWhat is Valentine's Day?\tSweetest Day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Sweetest Day, is celebrated similarly to, Valentine?s Day) -> Sweetest Day (7152ms)\nWhat is Valentine's Day?\tEvery day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Every day, can be, Valentine?s Day) -> Every day (7259ms)\nWhat is Valentine's Day?\tRocky Mountain Chocolate Factory\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Rocky Mountain Chocolate Factory, is, Valentine?s Day) -> Rocky Mountain Chocolate Factory (7259ms)\nWhat is Valentine's Day?\tPaulova Tuesday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Paulova Tuesday, is, Valentine?s Day) -> Paulova Tuesday (7169ms)\nWhat is Valentine's Day?\tFebruary15 Yesterday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February15 Yesterday, was, Valentine?s Day) -> February15 Yesterday (7213ms)\nWhat is Valentine's Day?\tContinue Reading Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Continue Reading Today, is, Valentine?s Day) -> Continue Reading Today (7241ms)\nWhat is Valentine's Day?\tNational Breast Cancer Awareness Month\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (National Breast Cancer Awareness Month, is to, Valentine?s Day) -> National Breast Cancer Awareness Month (7144ms)\nWhat is Valentine's Day?\tLupercalia\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Lupercalia, was the precursor to, Valentine?s Day) -> Lupercalia (7241ms)\nWhat is Valentine's Day?\t? Yesterday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (? Yesterday, was, Valentine?s Day) -> ? Yesterday (7273ms)\nWhat is Valentine's Day?\tRoses\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Roses, can be very expensive on, Valentine?s Day) -> Roses (7253ms)\nWhat is Valentine's Day?\tHeartsmith\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Heartsmith, is the place to be for, Valentine?s Day) -> Heartsmith (7192ms)\nWhat is Valentine's Day?\tthe friends\t-0.222222222223\tWhat is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, was about celebrating, the friends) -> the friends (7153ms)\nWhat is Valentine's Day?\tColumbus ? actual birth-date\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Columbus ? actual birth-date, is, Valentine?s Day) -> Columbus ? actual birth-date (7184ms)\nWhat is Valentine's Day?\tarbitration\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (arbitration, was fittingly set to being on, Valentine?s Day ?) -> arbitration (7161ms)\nWhat is Valentine's Day?\tfood gift baskets\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (food gift baskets, can go very well for, Valentine?s Day gifts) -> food gift baskets (7176ms)\nWhat is Valentine's Day?\tthe same day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the same day, is, Valentine?s Day) -> the same day (7247ms)\nWhat is Valentine's Day?\tFebruary 13 , 2009 Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 13 , 2009 Tomorrow, is, Valentine?s Day) -> February 13 , 2009 Tomorrow (7292ms)\nWhat is Valentine's Day?\tNew York\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (New York, can be a great place to visit for, Valentine?s Day) -> New York (7206ms)\nWhat is Valentine's Day?\tthe year\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the year, can be even more special on, Valentine?s Day) -> the year (7247ms)\nWhat is Valentine's Day?\tChocolate\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Chocolate, is to, Valentine?s Day) -> Chocolate (7234ms)\nWhat is Valentine's Day?\t?Each Day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (?Each Day, is, Valentine?s Day) -> ?Each Day (7279ms)\nWhat is Valentine's Day?\teye-rolls?that every day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (eye-rolls?that every day, was, Valentine?s Day) -> eye-rolls?that every day (7153ms)\nWhat is Valentine's Day?\tFebruary 14th , ?\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 14th , ?, is, Valentine?s day) -> February 14th , ? (7161ms)\nWhat is Valentine's Day?\tevery single day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (every single day, is, Valentine?s Day) -> every single day (7199ms)\nWhat is Valentine's Day?\tThe Walkers\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The Walkers, are planning to celebrate, Valentine?s Day) -> The Walkers (7199ms)\nWhat is Valentine's Day?\tJohn Rasco Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (John Rasco Today, is, Valentine?s Day) -> John Rasco Today (7153ms)\nWhat is Valentine's Day?\tGemini This\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Gemini This, can be, a lucky Valentine?s Day) -> Gemini This (7128ms)\nWhat is Valentine's Day?\tnameless roaches\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (nameless roaches, can be adopted once again on, Valentine?s Day) -> nameless roaches (7199ms)\nWhat is Valentine's Day?\tMobile Apps\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Mobile Apps, Can Save, Your Valentine?s Day) -> Mobile Apps (7241ms)\nWhat is Valentine's Day?\tHONESDALE ? Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (HONESDALE ? Tomorrow, is, Valentine?s Day) -> HONESDALE ? Tomorrow (7220ms)\nWhat is Valentine's Day?\tromantic gifts\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (romantic gifts, can be given on, Valentine?s Day) -> romantic gifts (7220ms)\nWhat is Valentine's Day?\tlittle heed\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (little heed, was paid to, Valentine?s Day) -> little heed (7227ms)\nWhat is Valentine's Day?\tInstructional Strategist Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Instructional Strategist Today, is, Valentine?s Day ?) -> Instructional Strategist Today (7234ms)\nWhat is Valentine's Day?\tThe only holiday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The only holiday, is, Valentine?s Day) -> The only holiday (7227ms)\nWhat is Valentine's Day?\tthe title\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the title, is, Valentine?s Day) -> the title (7283ms)\nWhat is Valentine's Day?\tany day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (any day, can be, Valentine 's Day) -> any day (7220ms)\nWhat is Valentine's Day?\tthemed ? and today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (themed ? and today, IS, Valentine?s Day) -> themed ? and today (7227ms)\nWhat is Valentine's Day?\tI... February 13 , 2012 Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (I... February 13 , 2012 Tomorrow, is, Valentine?s Day) -> I... February 13 , 2012 Tomorrow (7273ms)\nWhat is Valentine's Day?\tthe list\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the list, is, Valentine?s Day) -> the list (7265ms)\nWhat is Valentine's Day?\tFeb. 14\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Feb. 14, is, Valentine?s Day) -> Feb. 14 (7273ms)\nWhat is Valentine's Day?\tGoogle Doodle\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Google Doodle, was dedicated to, Valentine?s Day) -> Google Doodle (7253ms)\nWhat is Valentine's Day?\ta heart\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a heart, is to, Valentine?s Day) -> a heart (7192ms)\nWhat is Valentine's Day?\tthe upcoming celebration\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the upcoming celebration, is, Valentine?s Day) -> the upcoming celebration (7253ms)\nWhat is Valentine's Day?\theart shaped and\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (heart shaped and, could be very accompanying to, Valentine?s Day) -> heart shaped and (7288ms)\nWhat is Valentine's Day?\tFebruary 14 , 2012 Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 14 , 2012 Today, is, Valentine?s Day) -> February 14 , 2012 Today (7265ms)\nWhat is Valentine's Day?\tNo custom orders\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (No custom orders, can be taken on, Valentine?s Day) -> No custom orders (7206ms)\nWhat is Valentine's Day?\tThe heart\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The heart, is linked to, Valentine?s Day) -> The heart (7199ms)\nWhat is Valentine's Day?\tthe most romantic holidays\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the most romantic holidays, can use, Valentine?s Day) -> the most romantic holidays (7241ms)\nWhat is Valentine's Day?\tBlainers\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Blainers, is back to spend, Valentine?s Day) -> Blainers (7247ms)\nWhat is Valentine's Day?\tAnywayssss this month\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Anywayssss this month, is, Valentine?s day) -> Anywayssss this month (7161ms)\nWhat is Valentine's Day?\tCupid\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Cupid, was chosen to represent, Valentine?s Day) -> Cupid (7284ms)\nWhat is Valentine's Day?\t?Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (?Tomorrow, is, Valentine?s Day) -> ?Tomorrow (7241ms)\nWhat is Valentine's Day?\ta SAF support campaign\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a SAF support campaign, is connected to, Valentine?s Day) -> a SAF support campaign (7259ms)\nWhat is Valentine's Day?\tThe party\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The party, is, Valentine?s day) -> The party (7234ms)\nWhat is Valentine's Day?\tThe picket\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The picket, was dedicated to, Valentine?s Day) -> The picket (7284ms)\nWhat is Valentine's Day?\tLast month\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Last month, was, Valentine?s Day) -> Last month (7234ms)\nWhat is Valentine's Day?\tTommy?s due date\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Tommy?s due date, was, Valentine?s Day) -> Tommy?s due date (7247ms)\nWhat is Valentine's Day?\tthe spa\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the spa, can be, a great Valentine?s Day gift) -> the spa (7176ms)\nWhat is Valentine's Day?\t2011\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (2011, was a day to celebrate, Valentine?s Day) -> 2011 (7161ms)\nWhat is Valentine's Day?\tweek\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (week, can interfere with, Valentine?s Day plans) -> week (7273ms)\nWhat is Valentine's Day?\tPreschoolers\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Preschoolers, can enjoy, a free Valentine?s Day Project) -> Preschoolers (7227ms)\nWhat is Valentine's Day?\tYahoo!\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Yahoo!, is, Valentine?s Day) -> Yahoo! (7220ms)\nWhat is Valentine's Day?\tGuys\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Guys, can complement, their Valentine?s Day date) -> Guys (7153ms)\nWhat is Valentine's Day?\ta girl\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (a girl, can do before, the Valentine?s Day) -> a girl (7136ms)\nWhat is Valentine's Day?\tESPN ?Every day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (ESPN ?Every day, is, Valentine?s Day) -> ESPN ?Every day (7136ms)\nWhat is Valentine's Day?\tthe first poem\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the first poem, was attributed to, Valentine?s Day) -> the first poem (7220ms)\nWhat is Valentine's Day?\teven guys\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (even guys, can use, Valentine?s Day) -> even guys (7206ms)\nWhat is Valentine's Day?\tjulier | 0 Comments Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (julier | 0 Comments Tomorrow, is, Valentine?s Day) -> julier | 0 Comments Tomorrow (7192ms)\nWhat is Valentine's Day?\tthe whole world\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the whole world, are looking forward to, Valentine?s Day) -> the whole world (7284ms)\nWhat is Valentine's Day?\t2009 February 14\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (2009 February 14, is, Valentine?s Day) -> 2009 February 14 (7253ms)\nWhat is Valentine's Day?\tdisappointment\t-0.222222222223\tWhat is Valentine's Day? -> $x: (valentine 's day, have story of, $x) -> (St . Valentine?s Day, has a storied tradition of, disappointment) -> disappointment (7273ms)\nWhat is Valentine's Day?\ta cultural phenomenon\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a cultural phenomenon, is remarkably similar to, Valentine?s Day) -> a cultural phenomenon (7284ms)\nWhat is Valentine's Day?\tsmall heart shapes\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (small heart shapes, can be easily completed by, Valentine?s Day) -> small heart shapes (7191ms)\nWhat is Valentine's Day?\tPillsbury?s\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Pillsbury?s, canned, Valentine?s Day frosting) -> Pillsbury?s (7247ms)\nWhat is Valentine's Day?\tpractical gifts\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (practical gifts, can be meaningful too on, Valentine?s Day) -> practical gifts (7241ms)\nWhat is Valentine's Day?\tAmerican Heart Month\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (American Heart Month, is also host to, Valentine?s Day) -> American Heart Month (7253ms)\nWhat is Valentine's Day?\tThe hop\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The hop, is held to celebrate, Valentine?s Day) -> The hop (7234ms)\nWhat is Valentine's Day?\tContinue ? Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Continue ? Tomorrow, is, Valentine?s Day) -> Continue ? Tomorrow (7176ms)\nWhat is Valentine's Day?\tguests\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (guests, can savor, Valentine?s Day) -> guests (7220ms)\nWhat is Valentine's Day?\tcompanies\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (companies, are starting to roll out, Valentine?s Day) -> companies (7213ms)\nWhat is Valentine's Day?\tpreschoolers\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (preschoolers, can make, a Valentine?s Day card) -> preschoolers (7206ms)\nWhat is Valentine's Day?\ta Gubloid\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a Gubloid, deserves to be alone on, Valentine?s Day) -> a Gubloid (7253ms)\nWhat is Valentine's Day?\t30 items\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (30 items, can help turn, this Valentine?s Day) -> 30 items (7169ms)\nWhat is Valentine's Day?\t2/14/2012\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (2/14/2012, is, Valentine?s Day) -> 2/14/2012 (7213ms)\nWhat is Valentine's Day?\tred roses\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (red roses, are to, Valentine?s Day) -> red roses (7227ms)\nWhat is Valentine's Day?\tMichelle Johnston\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Michelle Johnston, is, Valentine?s Day) -> Michelle Johnston (7220ms)\nWhat is Valentine's Day?\tthe theme\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the theme, is, ?Valentine?s Day?) -> the theme (7176ms)\nWhat is Valentine's Day?\tcouple\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (couple, can decorate their home with, several valentine?s day) -> couple (7169ms)\nWhat is Valentine's Day?\tFebruary 14th\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 14th, is, Valentine?s Day) -> February 14th (7213ms)\nWhat is Valentine's Day?\tsubmit? Her due date\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (submit? Her due date, was, Valentine?s Day) -> submit? Her due date (7206ms)\nWhat is Valentine's Day?\tlove?it\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (love?it, is, Valentine?s Day) -> love?it (7227ms)\nWhat is Valentine's Day?\tphone sex\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (phone sex, can bring on, Valentine?s Day) -> phone sex (7145ms)\nWhat is Valentine's Day?\tthe many crafts\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the many crafts, can be chosen from for, Valentine?s Day) -> the many crafts (7213ms)\nWhat is Valentine's Day?\tthe lyrics\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the lyrics, is, Valentine?s Day) -> the lyrics (7273ms)\nWhat is Valentine's Day?\tCyber Monday Ads\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Cyber Monday Ads, can provide, Valentine?s Day gift ideas) -> Cyber Monday Ads (7292ms)\nWhat is Valentine's Day?\tetc\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (etc, can be directly linked to, Valentine?s Day) -> etc (7145ms)\nWhat is Valentine's Day?\tromance and tradition\t-0.222222222223\tWhat is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, is all about, romance and tradition) -> romance and tradition (7161ms)\nWhat is Valentine's Day?\t2008 Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (2008 Tomorrow, is, Valentine?s Day) -> 2008 Tomorrow (7240ms)\nWhat is Valentine's Day?\tRestaurants\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Restaurants, can be extremely crowded on, Valentine?s Day) -> Restaurants (7273ms)\nWhat is Valentine's Day?\tLast Second Valentine?s Day Ideas Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Last Second Valentine?s Day Ideas Tomorrow, is, Valentine?s Day) -> Last Second Valentine?s Day Ideas Tomorrow (7192ms)\nWhat is Valentine's Day?\tOCF Don?t\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (OCF Don?t, want to be alone on, Valentine?s Day) -> OCF Don?t (7136ms)\nWhat is Valentine's Day?\tno day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (no day, can equally match up with, Valentine?s Day) -> no day (7169ms)\nWhat is Valentine's Day?\tLinks Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Links Today, is, Valentine?s Day) -> Links Today (7161ms)\nWhat is Valentine's Day?\tThe next day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The next day, was, Valentine?s Day) -> The next day (7176ms)\nWhat is Valentine's Day?\tThe restaurant\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The restaurant, was conveniently impervious to, Valentine?s Day) -> The restaurant (7288ms)\nWhat is Valentine's Day?\tthe constant reminders\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the constant reminders, can make, Valentine?s Day difficult) -> the constant reminders (7288ms)\nWhat is Valentine's Day?\tthe long winter months\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the long winter months, was, Valentine?s Day) -> the long winter months (7176ms)\nWhat is Valentine's Day?\tsingle girls\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (single girls, can have a great time on, Valentine?s Day) -> single girls (7136ms)\nWhat is Valentine's Day?\tWednesday Wonder\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Wednesday Wonder, is dedicated to, Valentine?s Day) -> Wednesday Wonder (7292ms)\nWhat is Valentine's Day?\tinfographics and today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (infographics and today, is, Valentine?s Day) -> infographics and today (7161ms)\nWhat is Valentine's Day?\taudiences everywhere\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (audiences everywhere, can celebrate, Valentine 's Day) -> audiences everywhere (7241ms)\nWhat is Valentine's Day?\tFriday Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Friday Tomorrow, is, Valentine?s Day) -> Friday Tomorrow (7206ms)\nWhat is Valentine's Day?\tEcuador\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Ecuador, can now be ordered for, Valentine?s Day delivery) -> Ecuador (7199ms)\nWhat is Valentine's Day?\tTommorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Tommorrow, is, Valentine?s Day) -> Tommorrow (7206ms)\nWhat is Valentine's Day?\tThe promo codes\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (The promo codes, can only be redeemed on, Valentine?s Day) -> The promo codes (7136ms)\nWhat is Valentine's Day?\tFebruary 14 , 2012\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 14 , 2012, is, Valentine?s Day) -> February 14 , 2012 (7136ms)\nWhat is Valentine's Day?\t1986\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (1986, was similar up to, Valentine?s Day) -> 1986 (7213ms)\nWhat is Valentine's Day?\tpresent\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (present, will be boomed thanks to, Valentine?s Day) -> present (7273ms)\nWhat is Valentine's Day?\tFebruary 15 , 2012 Yesterday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 15 , 2012 Yesterday, was, Valentine?s Day) -> February 15 , 2012 Yesterday (7288ms)\nWhat is Valentine's Day?\tTim Moriarty Tomorrow\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Tim Moriarty Tomorrow, is, Valentine?s Day) -> Tim Moriarty Tomorrow (7279ms)\nWhat is Valentine's Day?\tEveryday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Everyday, can be, a Valentine?s Day) -> Everyday (7273ms)\nWhat is Valentine's Day?\tA little creativity\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (A little creativity, can go a long way on, Valentine?s Day) -> A little creativity (7247ms)\nWhat is Valentine's Day?\tFlower Industry Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Flower Industry Today, is, Valentine?s Day) -> Flower Industry Today (7184ms)\nWhat is Valentine's Day?\tValentine?s Day flowers\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Valentine?s Day flowers, is a sure gift to make, Valentine?s Day) -> Valentine?s Day flowers (7220ms)\nWhat is Valentine's Day?\tthe app\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the app, yet can take a free chance on, Valentine?s Day) -> the app (7265ms)\nWhat is Valentine's Day?\tthe horizon\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the horizon, is, Valentine?s Day) -> the horizon (7153ms)\nWhat is Valentine's Day?\tThe theme\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The theme, was, Valentine?s Day) -> The theme (7145ms)\nWhat is Valentine's Day?\t? ? Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (? ? Today, is, Valentine?s Day) -> ? ? Today (7241ms)\nWhat is Valentine's Day?\tThe guys\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The guys, are hoping to have, Valentine?s Day) -> The guys (7265ms)\nWhat is Valentine's Day?\tbad dates\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (bad dates, can taint, this Valentine?s Day) -> bad dates (7145ms)\nWhat is Valentine's Day?\t? everyday\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (? everyday, is, Valentine?s Day) -> ? everyday (7153ms)\nWhat is Valentine's Day?\tlast month\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (last month, was dedicated to, Valentine?s Day) -> last month (7206ms)\nWhat is Valentine's Day?\tPsalm 89:1 Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Psalm 89:1 Today, is, Valentine?s Day) -> Psalm 89:1 Today (7241ms)\nWhat is Valentine's Day?\tevery day\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (every day, can be, Valentine 's Day) -> every day (7288ms)\nWhat is Valentine's Day?\tCouples\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Couples, can join the party on, Valentine?s Day) -> Couples (7279ms)\nWhat is Valentine's Day?\tThe country\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The country, is an ideal place to spend, Valentine?s Day) -> The country (7169ms)\nWhat is Valentine's Day?\tCharles M Schultz Today\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Charles M Schultz Today, is, Valentine?s Day) -> Charles M Schultz Today (7283ms)\nWhat is Valentine's Day?\tOne such event\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (One such event, is, Valentine?s Day) -> One such event (7184ms)\nWhat is Valentine's Day?\tfriends\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (friends, can be delivered on, Valentine?s Day) -> friends (7176ms)\nWhat is Valentine's Day?\ta deer\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a deer, was to be made official on, Valentine?s Day) -> a deer (7136ms)\nWhat is Valentine's Day?\tthe W Hotel Paris Opera\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the W Hotel Paris Opera, is set to open on, Valentine?s Day) -> the W Hotel Paris Opera (7241ms)\nWhat is Valentine's Day?\tTHE WEEK | Social media\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (THE WEEK | Social media, can save, Valentine?s Day) -> THE WEEK | Social media (7191ms)\nWhat is Valentine's Day?\tinnumerable right gifts\t-0.222222222223\tWhat is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (innumerable right gifts, can be purchased for, Valentine?s Day) -> innumerable right gifts (7220ms)\nWhat is Valentine's Day?\tthe Ad Council\t-0.333333333333\tWhat is Valentine's Day? -> $x: ($x, side, valentine 's day) -> (the Ad Council, addressed the serious side of, Valentine?s Day) -> the Ad Council (7292ms)\nWhat is Valentine's Day?\tthe latest offering\t-0.333333333333\tWhat is Valentine's Day? -> $x: ($x, develop, valentine 's day) -> (the latest offering, developed specially for, Valentine?s Day) -> the latest offering (7292ms)\nWhat is Valentine's Day?\tA picture\t-0.333333333333\tWhat is Valentine's Day? -> $x: ($x, represent, valentine 's day) -> (A picture, represented, Valentine 's Day) -> A picture (7292ms)\nWhat is Valentine's Day?\tStaff Writer This\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Staff Writer This, could be, your sweetest Valentine?s Day) -> Staff Writer This (7308ms)\nWhat is Valentine's Day?\tthankfulness\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, can be, valentine 's day) -> (thankfulness, can be expressed with, pink Valentine?s Day roses) -> thankfulness (7297ms)\nWhat is Valentine's Day?\tDougherty\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Dougherty, ?could have been set on, Valentine?s Day) -> Dougherty (7305ms)\nWhat is Valentine's Day?\tGuns\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, can be, valentine 's day) -> (Guns, can be exchanged, the day after Valentine 's Day) -> Guns (7297ms)\nWhat is Valentine's Day?\ta night\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (a night, could be more than enough, this Valentine?s Day) -> a night (7305ms)\nWhat is Valentine's Day?\tdesserts\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (desserts, could be used for, Valentine?s Day) -> desserts (7308ms)\nWhat is Valentine's Day?\tNY\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (NY, could be more romantic than, spending Valentine?s Day) -> NY (7301ms)\nWhat is Valentine's Day?\ta tool kit\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (a tool kit, could be a terrific gift for, Valentine?s Day) -> a tool kit (7301ms)\nWhat is Valentine's Day?\tLeo This\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, can be, valentine 's day) -> (Leo This, can be, an extremely romantic Valentine?s Day) -> Leo This (7312ms)\nWhat is Valentine's Day?\tItaly\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Italy, could be more romantic than, spending Valentine?s Day) -> Italy (7305ms)\nWhat is Valentine's Day?\tA crossword\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (A crossword, could be, the perfect Valentine?s Day gift) -> A crossword (7301ms)\nWhat is Valentine's Day?\tnot sure\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (not sure, could be more appropriate on, Valentine?s Day) -> not sure (7301ms)\nWhat is Valentine's Day?\tfull attention\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (full attention, could be, the Valentine?s Day unique gifts) -> full attention (7305ms)\nWhat is Valentine's Day?\tBlackberry\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Blackberry, could be, your alternative Valentine?s day gift) -> Blackberry (7308ms)\nWhat is Valentine's Day?\thigh-style romance\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, can be, valentine 's day) -> (high-style romance, can be had, this Valentine?s Day weekend) -> high-style romance (7308ms)\nWhat is Valentine's Day?\tIce Skating\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Ice Skating, could be more appropriate for, Valentine?s Day) -> Ice Skating (7305ms)\nWhat is Valentine's Day?\tnorthwest Louisiana\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, discover, valentine 's day) -> (northwest Louisiana, was discovered on, Valentine?s Day) -> northwest Louisiana (7301ms)\nWhat is Valentine's Day?\tCasting lessons\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Casting lessons, could be, an ideal Valentine?s Day gift) -> Casting lessons (7297ms)\nWhat is Valentine's Day?\t1,635 feet\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, discover, valentine 's day) -> (1,635 feet, was discovered on, Valentine?s Day) -> 1,635 feet (7305ms)\nWhat is Valentine's Day?\tthe instance\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (the instance, could be, Valentine?s Day) -> the instance (7308ms)\nWhat is Valentine's Day?\tthe timing\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (the timing, could n?t be better with, Valentine?s Day ?s arrival) -> the timing (7308ms)\nWhat is Valentine's Day?\texample\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (example, could be used for, Valentine?s day) -> example (7308ms)\nWhat is Valentine's Day?\ta kit\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (a kit, could be used for, Valentine?s Day) -> a kit (7301ms)\nWhat is Valentine's Day?\tthe pack\t-0.333333333334\tWhat is Valentine's Day? -> $x: ($x, discover, valentine 's day) -> (the pack, was discovered on, Valentine 's Day) -> the pack (7301ms)\nWhat is Valentine's Day?\tthe Parlement\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, the Parlement) -> the Parlement (7322ms)\nWhat is Valentine's Day?\tChristopher Null |\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Christopher Null |, Leave, a comment Valentine?s Day approaches) -> Christopher Null | (7325ms)\nWhat is Valentine's Day?\tGreat Britain\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was celebrated in, Great Britain) -> Great Britain (7334ms)\nWhat is Valentine's Day?\tCookies and cupcakes\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Cookies and cupcakes, get a nice makeover on, Valentine?s Day) -> Cookies and cupcakes (7341ms)\nWhat is Valentine's Day?\tMelissa Gorga\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Melissa Gorga, Got For, Valentine?s Day) -> Melissa Gorga (7332ms)\nWhat is Valentine's Day?\tMadi Don?t\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Madi Don?t, Leave, Valentine?s day) -> Madi Don?t (7330ms)\nWhat is Valentine's Day?\tMore people\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (More people, get engaged on, Valentine?s Day) -> More people (7340ms)\nWhat is Valentine's Day?\tthe U.S.\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is big business in, the U.S.) -> the U.S. (7330ms)\nWhat is Valentine's Day?\tthe traffic\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the traffic, gets during, Valentine?s Day) -> the traffic (7341ms)\nWhat is Valentine's Day?\tLil Wayne\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Lil Wayne, Get Engaged on, Valentine?s Day) -> Lil Wayne (7328ms)\nWhat is Valentine's Day?\tn?t\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (n?t, got a date for, valentine?s day) -> n?t (7322ms)\nWhat is Valentine's Day?\tthe latest celeb gossip\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the latest celeb gossip, got engaged over, Valentine?s Day) -> the latest celeb gossip (7340ms)\nWhat is Valentine's Day?\tfull swing\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, full swing) -> full swing (7316ms)\nWhat is Valentine's Day?\tthe Share\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (the Share, leave, their own Valentine?s Day story) -> the Share (7319ms)\nWhat is Valentine's Day?\tEngland\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, had become common in, England) -> England (7340ms)\nWhat is Valentine's Day?\ta romance-themed gift basket\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, might work in, a romance-themed gift basket) -> a romance-themed gift basket (7334ms)\nWhat is Valentine's Day?\tA red heart\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (A red heart, left over from, Valentine?s Day) -> A red heart (7319ms)\nWhat is Valentine's Day?\tFederico Hewson Who?s\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Federico Hewson Who?s, got a date for, Valentine?s Day) -> Federico Hewson Who?s (7325ms)\nWhat is Valentine's Day?\tcitizens\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (citizens, get divorced on, Valentine?s Day) -> citizens (7334ms)\nWhat is Valentine's Day?\tOnly two days\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Only two days, left until, Valentine?s Day) -> Only two days (7338ms)\nWhat is Valentine's Day?\tFriday Night Storytime\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Friday Night Storytime, Get ready for, Valentine?s Day) -> Friday Night Storytime (7322ms)\nWhat is Valentine's Day?\tancient Rome\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, lie in, ancient Rome) -> ancient Rome (7340ms)\nWhat is Valentine's Day?\tA young girl\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (A young girl, gets ready for, Valentine?s Day) -> A young girl (7338ms)\nWhat is Valentine's Day?\tthe past\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, are in, the past) -> the past (7338ms)\nWhat is Valentine's Day?\tThe shop\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (The shop, is getting ready for, Valentine?s Day) -> The shop (7338ms)\nWhat is Valentine's Day?\thand\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, can go hand in, hand) -> hand (7338ms)\nWhat is Valentine's Day?\tLukus\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Lukus, had left, little valentine?s day gifts) -> Lukus (7322ms)\nWhat is Valentine's Day?\tIslam\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, approved in, Islam) -> Islam (7334ms)\nWhat is Valentine's Day?\tself pity\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, wallow in, self pity) -> self pity (7330ms)\nWhat is Valentine's Day?\tless than a month\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (less than a month, left for, Valentine?s Day) -> less than a month (7330ms)\nWhat is Valentine's Day?\tlol\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (lol, get anything for, Valentine?s day) -> lol (7341ms)\nWhat is Valentine's Day?\tthe Wiley6\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the Wiley6, has been getting ready for, Valentine?s Day) -> the Wiley6 (7322ms)\nWhat is Valentine's Day?\tdifferent ways\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is celebrated in, different ways) -> different ways (7325ms)\nWhat is Valentine's Day?\t6 days\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (6 days, left to, Valentine?s Day) -> 6 days (7334ms)\nWhat is Valentine's Day?\tCommon\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, Have In, Common) -> Common (7330ms)\nWhat is Valentine's Day?\tLet?s\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Let?s, get something straight about, Valentine?s Day) -> Let?s (7334ms)\nWhat is Valentine's Day?\tthe hubs\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the hubs, will be getting for, Valentine?s day) -> the hubs (7336ms)\nWhat is Valentine's Day?\tFebruary 12th Time\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (February 12th Time, Get set for, Valentine?s Day) -> February 12th Time (7322ms)\nWhat is Valentine's Day?\tfourth grade\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, took place in, fourth grade) -> fourth grade (7322ms)\nWhat is Valentine's Day?\twinter\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is also in, winter) -> winter (7341ms)\nWhat is Valentine's Day?\tthe form\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, the form) -> the form (7341ms)\nWhat is Valentine's Day?\tthe High Middle Ages\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, began in, the High Middle Ages) -> the High Middle Ages (7338ms)\nWhat is Valentine's Day?\tTigers\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Tigers, get frisky on, Valentine?s Day) -> Tigers (7328ms)\nWhat is Valentine's Day?\tSpa Packages\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Spa Packages, would love to get on, Valentine?s Day) -> Spa Packages (7338ms)\nWhat is Valentine's Day?\tKIAH\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (KIAH, get for, Valentine?s Day) -> KIAH (7341ms)\nWhat is Valentine's Day?\tU.S. couples\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (U.S. couples, will get engaged on, Valentine?s Day) -> U.S. couples (7312ms)\nWhat is Valentine's Day?\tnumerous awesome apps\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (numerous awesome apps, get the best out of, Valentine?s Day) -> numerous awesome apps (7340ms)\nWhat is Valentine's Day?\tfact\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, fact) -> fact (7335ms)\nWhat is Valentine's Day?\tVegas\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, Happens in, Vegas) -> Vegas (7332ms)\nWhat is Valentine's Day?\tdecorations\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (decorations, left over from, Valentine?s Day) -> decorations (7319ms)\nWhat is Valentine's Day?\ttwo days\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, two days) -> two days (7325ms)\nWhat is Valentine's Day?\tKindergarten\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, started in, Kindergarten) -> Kindergarten (7312ms)\nWhat is Valentine's Day?\tladies\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (ladies, get, Valentine?s Day flowers) -> ladies (7315ms)\nWhat is Valentine's Day?\tfull bloom\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, full bloom) -> full bloom (7322ms)\nWhat is Valentine's Day?\tthe third century\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, begins in, the third century) -> the third century (7334ms)\nWhat is Valentine's Day?\tCaucer?s Parlement\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, Caucer?s Parlement) -> Caucer?s Parlement (7338ms)\nWhat is Valentine's Day?\tthere?s less than two weeks\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (there?s less than two weeks, left until, Valentine?s Day) -> there?s less than two weeks (7330ms)\nWhat is Valentine's Day?\tdifferent parts\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is celebrated in, different parts) -> different parts (7336ms)\nWhat is Valentine's Day?\tjust one day\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (just one day, left to, Valentine?s Day and I?m sure many of) -> just one day (7315ms)\nWhat is Valentine's Day?\tcandy hearts\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (candy hearts, left over from, Valentine?s Day) -> candy hearts (7325ms)\nWhat is Valentine's Day?\tRome\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, Happened In, Rome) -> Rome (7334ms)\nWhat is Valentine's Day?\t21st-century India\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is controversial in, 21st-century India) -> 21st-century India (7334ms)\nWhat is Valentine's Day?\tno official statistics\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (no official statistics, get engaged on, Valentine?s Day) -> no official statistics (7341ms)\nWhat is Valentine's Day?\tOne week\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (One week, left until, Valentine?s Day) -> One week (7325ms)\nWhat is Valentine's Day?\tfull effect\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, full effect) -> full effect (7316ms)\nWhat is Valentine's Day?\ta blank , heart-shaped card\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (a blank , heart-shaped card, left over from, Valentine?s Day) -> a blank , heart-shaped card (7341ms)\nWhat is Valentine's Day?\tpagan partying\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is rooted in, pagan partying) -> pagan partying (7315ms)\nWhat is Valentine's Day?\tonly a day\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (only a day, left for, Valentine 's Day) -> only a day (7312ms)\nWhat is Valentine's Day?\ta season full\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, falls in, a season full) -> a season full (7336ms)\nWhat is Valentine's Day?\tColombia?deal\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is celebrated in, Colombia?deal) -> Colombia?deal (7312ms)\nWhat is Valentine's Day?\tblaze\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, arrives in, blaze) -> blaze (7334ms)\nWhat is Valentine's Day?\tSanctuary Point\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Sanctuary Point, Get For, Valentine?s Day) -> Sanctuary Point (7312ms)\nWhat is Valentine's Day?\tthe Roman Empire\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, first began in, the Roman Empire) -> the Roman Empire (7328ms)\nWhat is Valentine's Day?\tno\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (no, get anything for, Valentine?s day) -> no (7322ms)\nWhat is Valentine's Day?\tSouthern California all\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, raised in, Southern California all) -> Southern California all (7332ms)\nWhat is Valentine's Day?\tthe dead\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, occurs in, the dead) -> the dead (7336ms)\nWhat is Valentine's Day?\tthe community\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the community, always get depressed about, Valentine?s Day) -> the community (7316ms)\nWhat is Valentine's Day?\tChaucer\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is first mentioned in, Chaucer) -> Chaucer (7341ms)\nWhat is Valentine's Day?\ta month?s time\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, a month?s time) -> a month?s time (7328ms)\nWhat is Valentine's Day?\t15 days\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, 15 days) -> 15 days (7319ms)\nWhat is Valentine's Day?\t2009 Maxwell and Myrtle\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (2009 Maxwell and Myrtle, are getting ready for, Valentine?s Day) -> 2009 Maxwell and Myrtle (7322ms)\nWhat is Valentine's Day?\ta romance\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, would work in, a romance) -> a romance (7332ms)\nWhat is Valentine's Day?\t496 AD\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, began in, 496 AD) -> 496 AD (7319ms)\nWhat is Valentine's Day?\tOnly one week\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Only one week, left till, Valentine?s Day) -> Only one week (7319ms)\nWhat is Valentine's Day?\ta candy heart stamp\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (a candy heart stamp, left over from, Valentine 's day) -> a candy heart stamp (7319ms)\nWhat is Valentine's Day?\tthe middle\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, the middle) -> the middle (7341ms)\nWhat is Valentine's Day?\tLea , 25\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Lea , 25, got cozy on, Valentine?s Day) -> Lea , 25 (7312ms)\nWhat is Valentine's Day?\t2 weeks\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in just, 2 weeks) -> 2 weeks (7328ms)\nWhat is Valentine's Day?\t2 days\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is coming in, 2 days) -> 2 days (7341ms)\nWhat is Valentine's Day?\tthe air\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, the air) -> the air (7336ms)\nWhat is Valentine's Day?\tUPDATES Kempt We?ve\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (UPDATES Kempt We?ve, got some problems with, Valentine?s Day) -> UPDATES Kempt We?ve (7336ms)\nWhat is Valentine's Day?\tlocal crab fishermen\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (local crab fishermen, got new competition for, Valentine?s Day) -> local crab fishermen (7340ms)\nWhat is Valentine's Day?\tthe speech room\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was a hit in, the speech room) -> the speech room (7340ms)\nWhat is Valentine's Day?\tplace months\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, remain in, place months) -> place months (7325ms)\nWhat is Valentine's Day?\twe?ve\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (we?ve, got, Valentine?s Day) -> we?ve (7341ms)\nWhat is Valentine's Day?\tthe clock\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (the clock, left until, Valentine?s Day) -> the clock (7332ms)\nWhat is Valentine's Day?\tStyloko.com\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Styloko.com, Got plans for, Valentine?s day) -> Styloko.com (7336ms)\nWhat is Valentine's Day?\tSerbia\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is really big in, Serbia) -> Serbia (7340ms)\nWhat is Valentine's Day?\tthe house\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is rotting somewhere in, the house) -> the house (7312ms)\nWhat is Valentine's Day?\tholidays makers\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (holidays makers, get excited over, Valentine?s Day) -> holidays makers (7325ms)\nWhat is Valentine's Day?\tcommitment t?\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (commitment t?, gets, Valentine?s Day) -> commitment t? (7322ms)\nWhat is Valentine's Day?\tfood critic Claudia Thomas\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (food critic Claudia Thomas, gets dumped on, Valentine?s Day) -> food critic Claudia Thomas (7332ms)\nWhat is Valentine's Day?\tPaul and I\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Paul and I, got engaged on, Valentine?s Day) -> Paul and I (7332ms)\nWhat is Valentine's Day?\ta few days\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (a few days, left until, Valentine?s Day) -> a few days (7325ms)\nWhat is Valentine's Day?\tchocolates\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (chocolates, left over from, Valentine?s Day) -> chocolates (7341ms)\nWhat is Valentine's Day?\tMerlin\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Merlin, is getting so sick of, Valentine?s Day) -> Merlin (7315ms)\nWhat is Valentine's Day?\tlove?they\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (love?they, recently got engaged on, Valentine?s Day) -> love?they (7312ms)\nWhat is Valentine's Day?\t3 days\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s day, is in, 3 days) -> 3 days (7325ms)\nWhat is Valentine's Day?\tless than 24 hours\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, less than 24 hours) -> less than 24 hours (7340ms)\nWhat is Valentine's Day?\tJunior High\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was handled in, Junior High) -> Junior High (7316ms)\nWhat is Valentine's Day?\tPPC\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (PPC, gets very expensive around, Valentine?s Day) -> PPC (7315ms)\nWhat is Valentine's Day?\tthe mood\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, get in, the mood) -> the mood (7319ms)\nWhat is Valentine's Day?\tGamers and UFC fans\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Gamers and UFC fans, are getting pumped for, Valentine?s Day) -> Gamers and UFC fans (7328ms)\nWhat is Valentine's Day?\tmystery\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is shrouded in, mystery) -> mystery (7336ms)\nWhat is Valentine's Day?\tless than two weeks\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, less than two weeks) -> less than two weeks (7330ms)\nWhat is Valentine's Day?\tTV commercials\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, portrayed in, TV commercials) -> TV commercials (7336ms)\nWhat is Valentine's Day?\tless than a week\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, will be here in, less than a week) -> less than a week (7334ms)\nWhat is Valentine's Day?\tthe GOP hopeful\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the GOP hopeful, got for, Valentine?s Day) -> the GOP hopeful (7338ms)\nWhat is Valentine's Day?\tred sharpie\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (? Valentine?s Day ?, circled in, red sharpie) -> red sharpie (7332ms)\nWhat is Valentine's Day?\tonly two days\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (only two days, left until, Saint Valentine?s Day) -> only two days (7336ms)\nWhat is Valentine's Day?\tthe Baby\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the Baby, got a special treat for, Valentine?s Day) -> the Baby (7312ms)\nWhat is Valentine's Day?\tthe Third Century\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, begins in, the Third Century) -> the Third Century (7340ms)\nWhat is Valentine's Day?\tWellington\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, arrived in, Wellington) -> Wellington (7340ms)\nWhat is Valentine's Day?\tPerfumania\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Perfumania, is getting ready for, Valentine?s Day) -> Perfumania (7312ms)\nWhat is Valentine's Day?\tpopularity\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, grew in, popularity) -> popularity (7340ms)\nWhat is Valentine's Day?\tHilary\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Hilary, left, little Finding Nemo Valentine?s Day cards) -> Hilary (7334ms)\nWhat is Valentine's Day?\ta close second\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, comes in, a close second) -> a close second (7315ms)\nWhat is Valentine's Day?\tJoburg\t-0.444444444444\tWhat is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Joburg, got together on, Valentine?s Day) -> Joburg (7336ms)\nWhat is Valentine's Day?\tcounty jail\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, has been in, county jail) -> county jail (7336ms)\nWhat is Valentine's Day?\teternal love\t-0.444444444444\tWhat is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, eternal love) -> eternal love (7330ms)\nWhat is Valentine's Day?\tromantic comedies\t-0.444444444445\tWhat is Valentine's Day? -> $x: ($x, involve, valentine 's day) -> (romantic comedies, somehow involve, Valentine?s Day) -> romantic comedies (7342ms)\nWhat is Valentine's Day?\tthe weeks\t-0.555555555556\tWhat is Valentine's Day? -> $x: ($x, precede, valentine 's day) -> (the weeks, preceding, Valentine 's Day) -> the weeks (7342ms)\nWhat is Valentine's Day?\tthe month\t-0.666666666667\tWhat is Valentine's Day? -> $x: ($x, contain, valentine 's day) -> (the month, containing, Valentine 's Day) -> the month (7342ms)\nWhat is Valentine's Day?\tThe set\t-0.666666666667\tWhat is Valentine's Day? -> $x: ($x, contain, valentine 's day) -> (The set, contains, 10 Valentine?s Day icons) -> The set (7342ms)\nWhat is Valentine's Day?\tThe week\t-0.666666666667\tWhat is Valentine's Day? -> $x: ($x, contain, valentine 's day) -> (The week, containing, Valentine 's Day) -> The week (7342ms)\nWhat is Valentine's Day?\tGigi\t-0.777777777776\tWhat is Valentine's Day? -> $x: ($x, demonstrate, valentine 's day) -> (Gigi, will then demonstrate, her delicious Valentine?s Day menu) -> Gigi (7342ms)\nWhat is Valentine's Day?\t1415\t-0.777777777778\tWhat is Valentine's Day? -> $x: (valentine 's day, be in write, $x) -> (The oldest Valentine?s Day greeting, was written in, 1415) -> 1415 (7342ms)\nWhat is Valentine's Day?\t0 Rosy\t-0.8888888888840001\tWhat is Valentine's Day? -> $x: ($x, date be, valentine) -> (0 Rosy, is having a date on, Valentine) -> 0 Rosy (7342ms)\nWhat is Valentine's Day?\tThe first one\t-0.888888888885\tWhat is Valentine's Day? -> $x: ($x, be history of, valentine) -> (The first one, is the history of, the Valentines Day) -> The first one (7342ms)\nWhat is Valentine's Day?\tstrangulation\t-0.888888888887\tWhat is Valentine's Day? -> $x: ($x, happen in, valentine) -> (strangulation, is happening in, a Valentine) -> strangulation (7343ms)\nWhat is Valentine's Day?\texactly\t-0.888888888887\tWhat is Valentine's Day? -> $x: ($x, happen in, valentine) -> (exactly, started happening in, Blue Valentine) -> exactly (7342ms)\nWhat is Valentine's Day?\tthe madness and magic\t-0.888888888889\tWhat is Valentine's Day? -> $x: ($x, bring about, valentine 's day) -> (the madness and magic, brought about by, Valentine?s Day) -> the madness and magic (7343ms)\nWhat is Valentine's Day?\tViola Davis Viola Davis\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (Viola Davis Viola Davis, arrives wearing, Valentine) -> Viola Davis Viola Davis (7344ms)\nWhat is Valentine's Day?\tgentlemen\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (gentlemen, wear, Valentine shades) -> gentlemen (7344ms)\nWhat is Valentine's Day?\tthe softest\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (the softest, is wearing, a Red Valentine) -> the softest (7343ms)\nWhat is Valentine's Day?\tJen\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (Jen, wore, her Valentine) -> Jen (7344ms)\nWhat is Valentine's Day?\tstride\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (stride, wore, their special Valentine) -> stride (7343ms)\nWhat is Valentine's Day?\tOne heart\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (One heart, will wear, a valentine) -> One heart (7344ms)\nWhat is Valentine's Day?\tEmen\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (Emen, is wearing, a Valentine) -> Emen (7344ms)\nWhat is Valentine's Day?\tone hot favorite dress women\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (one hot favorite dress women, can wear on, valentine) -> one hot favorite dress women (7344ms)\nWhat is Valentine's Day?\teach man\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (each man, wore, his valentine) -> each man (7343ms)\nWhat is Valentine's Day?\tCornwall\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (Cornwall, wore, an Anna Valentine champagne silk dress) -> Cornwall (7343ms)\nWhat is Valentine's Day?\tthe season\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (the season, to be worn for, Valentines Day) -> the season (7344ms)\nWhat is Valentine's Day?\tsupporters\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (supporters, to wear on, Valentines  Day) -> supporters (7343ms)\nWhat is Valentine's Day?\tDenton\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (Denton, wears, Valentine) -> Denton (7344ms)\nWhat is Valentine's Day?\ta valentine fridge magnet\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (a valentine fridge magnet, wear, a valentine pin-back) -> a valentine fridge magnet (7343ms)\nWhat is Valentine's Day?\tZoe\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (Zoe, were wearing, Valentine) -> Zoe (7344ms)\nWhat is Valentine's Day?\tbetter color\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (better color, is there to wear on, Valentine) -> better color (7344ms)\nWhat is Valentine's Day?\tthe young ladies\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (the young ladies, would wear the name of, their valentine) -> the young ladies (7344ms)\nWhat is Valentine's Day?\ta cobweb\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (a cobweb, wears, a valentine arc) -> a cobweb (7344ms)\nWhat is Valentine's Day?\tA man\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (A man, would wear a woman 's name to, claim her as his valentine) -> A man (7343ms)\nWhat is Valentine's Day?\tthe Marines\t-0.999999999994\tWhat is Valentine's Day? -> $x: ($x, wear, valentine) -> (the Marines, wore, Valentine) -> the Marines (7343ms)\nWho was the first host of Jeopardy?\tArt Fleming\t0.111111111109\tWho was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (Art Fleming, was the host of, Jeopardy) -> Art Fleming (841ms)\nWho was the first host of Jeopardy?\tAlex Trebek\t0.111111111109\tWho was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (Alex Trebek, has been hosting, Jeopardy) -> Alex Trebek (841ms)\nWho was the first host of Jeopardy?\t?AND NOW... HERE\t0.111111111109\tWho was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (?AND NOW... HERE, IS THE HOST OF, JEOPARDY) -> ?AND NOW... HERE (841ms)\nWho was the first host of Jeopardy?\tNickD\t0.111111111109\tWho was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (NickD, will be hosting, Hacker Jeopardy) -> NickD (841ms)\nWho was the first host of Jeopardy?\tTexas Public Health\t0.111111111109\tWho was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (Texas Public Health, will host a game of, Jeopardy) -> Texas Public Health (841ms)\nHow many Great Lakes are there?\ta film\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (a film, be in between, ?great? and ?classic) -> a film (1025ms)\nHow many Great Lakes are there?\tsignature products\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (signature products, are somewhere in between, good and great) -> signature products (1026ms)\nHow many Great Lakes are there?\tcard\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (card, was sandwiched in between, other great events) -> card (1025ms)\nHow many Great Lakes are there?\tThe Pasta Shop\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (The Pasta Shop, is squeezed in between, other great food places) -> The Pasta Shop (1026ms)\nHow many Great Lakes are there?\tCarmona\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (Carmona, was situated in between, the great kingdom) -> Carmona (1025ms)\nHow many Great Lakes are there?\tAjmer\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Ajmer, is the history of, the great and pious messenger) -> Ajmer (1170ms)\nHow many Great Lakes are there?\ta nation\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (a nation, is the history of, its great men) -> a nation (1229ms)\nHow many Great Lakes are there?\tUnited States history\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (United States history, is the history of, a great experiment) -> United States history (1170ms)\nHow many Great Lakes are there?\tart\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (art, is also the history of, great artists) -> art (1083ms)\nHow many Great Lakes are there?\tThe Dukawa\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (The Dukawa, have a history of being, great fighters) -> The Dukawa (1170ms)\nHow many Great Lakes are there?\t?The book\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (?The book, is an oral history of, the great zombie wars) -> ?The book (1170ms)\nHow many Great Lakes are there?\tsurgery\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (surgery, is the history of, great ideas and inventions) -> surgery (1025ms)\nHow many Great Lakes are there?\tthe political arena\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (the political arena, is a history of, great importance) -> the political arena (1083ms)\nHow many Great Lakes are there?\tthe model\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (the model, has a long history of being, a great machine) -> the model (1229ms)\nHow many Great Lakes are there?\tshort\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (short, is the history of, this great man) -> short (1170ms)\nHow many Great Lakes are there?\tAmerica\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (America, is the history of, great male achievements) -> America (1229ms)\nHow many Great Lakes are there?\tmen\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (men, so is this extensive history of, great excellence) -> men (1083ms)\nHow many Great Lakes are there?\tPompano Beach\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Pompano Beach, has a history of being, a great band) -> Pompano Beach (1170ms)\nHow many Great Lakes are there?\tMusic\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Music, has a history of being, a great and noble communicator) -> Music (1170ms)\nHow many Great Lakes are there?\tmankind\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (mankind, is the history of, its great men) -> mankind (1082ms)\nHow many Great Lakes are there?\tfootball\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (football, is the history of, great men) -> football (1229ms)\nHow many Great Lakes are there?\tSaboteurs\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Saboteurs, is the definitive history of, this last great chapter) -> Saboteurs (1083ms)\nHow many Great Lakes are there?\ta great project\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (a great project, is usually the history of, a great client) -> a great project (1083ms)\nHow many Great Lakes are there?\tThe Mahabharata\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (The Mahabharata, is the history of, the Great War) -> The Mahabharata (1229ms)\nHow many Great Lakes are there?\tTwo Centuries\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Two Centuries, is the history of, great entrepreneurs) -> Two Centuries (1229ms)\nHow many Great Lakes are there?\tChrist\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Christ, is the history of, a great passion) -> Christ (1083ms)\nHow many Great Lakes are there?\tfame\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (fame, was revisionist history of, the Great Depression) -> fame (1083ms)\nHow many Great Lakes are there?\ttheatre\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (theatre, is the history of, great drama) -> theatre (1025ms)\nHow many Great Lakes are there?\tscience\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (science, is a history of, great individual thinkers) -> science (1229ms)\nHow many Great Lakes are there?\thorrible damage\t0.44444444444200004\tHow many Great Lakes are there? -> $x: (great lake, do, $x) -> (the Great Lakes, have done, horrible damage) -> horrible damage (1229ms)\nHow many Great Lakes are there?\ta film\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (a film, be in between, ?great? and ?classic) -> a film (549ms)\nHow many Great Lakes are there?\tsignature products\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (signature products, are somewhere in between, good and great) -> signature products (549ms)\nHow many Great Lakes are there?\tcard\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (card, was sandwiched in between, other great events) -> card (549ms)\nHow many Great Lakes are there?\tThe Pasta Shop\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (The Pasta Shop, is squeezed in between, other great food places) -> The Pasta Shop (549ms)\nHow many Great Lakes are there?\tCarmona\t0.7777777777770001\tHow many Great Lakes are there? -> $x: ($x, be in between, great) -> (Carmona, was situated in between, the great kingdom) -> Carmona (549ms)\nHow many Great Lakes are there?\tAjmer\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Ajmer, is the history of, the great and pious messenger) -> Ajmer (558ms)\nHow many Great Lakes are there?\ta nation\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (a nation, is the history of, its great men) -> a nation (561ms)\nHow many Great Lakes are there?\tUnited States history\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (United States history, is the history of, a great experiment) -> United States history (559ms)\nHow many Great Lakes are there?\tart\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (art, is also the history of, great artists) -> art (552ms)\nHow many Great Lakes are there?\tThe Dukawa\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (The Dukawa, have a history of being, great fighters) -> The Dukawa (558ms)\nHow many Great Lakes are there?\t?The book\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (?The book, is an oral history of, the great zombie wars) -> ?The book (558ms)\nHow many Great Lakes are there?\tsurgery\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (surgery, is the history of, great ideas and inventions) -> surgery (549ms)\nHow many Great Lakes are there?\tthe political arena\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (the political arena, is a history of, great importance) -> the political arena (552ms)\nHow many Great Lakes are there?\tthe model\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (the model, has a long history of being, a great machine) -> the model (561ms)\nHow many Great Lakes are there?\tshort\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (short, is the history of, this great man) -> short (558ms)\nHow many Great Lakes are there?\tAmerica\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (America, is the history of, great male achievements) -> America (561ms)\nHow many Great Lakes are there?\tmen\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (men, so is this extensive history of, great excellence) -> men (552ms)\nHow many Great Lakes are there?\tPompano Beach\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Pompano Beach, has a history of being, a great band) -> Pompano Beach (558ms)\nHow many Great Lakes are there?\tMusic\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Music, has a history of being, a great and noble communicator) -> Music (558ms)\nHow many Great Lakes are there?\tmankind\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (mankind, is the history of, its great men) -> mankind (552ms)\nHow many Great Lakes are there?\tfootball\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (football, is the history of, great men) -> football (561ms)\nHow many Great Lakes are there?\tSaboteurs\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Saboteurs, is the definitive history of, this last great chapter) -> Saboteurs (552ms)\nHow many Great Lakes are there?\ta great project\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (a great project, is usually the history of, a great client) -> a great project (552ms)\nHow many Great Lakes are there?\tThe Mahabharata\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (The Mahabharata, is the history of, the Great War) -> The Mahabharata (561ms)\nHow many Great Lakes are there?\tTwo Centuries\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Two Centuries, is the history of, great entrepreneurs) -> Two Centuries (561ms)\nHow many Great Lakes are there?\tChrist\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (Christ, is the history of, a great passion) -> Christ (552ms)\nHow many Great Lakes are there?\tfame\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (fame, was revisionist history of, the Great Depression) -> fame (552ms)\nHow many Great Lakes are there?\ttheatre\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (theatre, is the history of, great drama) -> theatre (549ms)\nHow many Great Lakes are there?\tscience\t0.555555555552\tHow many Great Lakes are there? -> $x: ($x, be history of, great) -> (science, is a history of, great individual thinkers) -> science (561ms)\nHow many Great Lakes are there?\thorrible damage\t0.44444444444200004\tHow many Great Lakes are there? -> $x: (great lake, do, $x) -> (the Great Lakes, have done, horrible damage) -> horrible damage (561ms)\nWho is Terrence Malick?\ttwo films\t0.44444444444\tWho is Terrence Malick? -> $x: (terrence malick, do, $x) -> (Terrence Malick, does, two films) -> two films (792ms)\nWho is Terrence Malick?\tforty\t0.44444444444\tWho is Terrence Malick? -> $x: (terrence malick, do, $x) -> (Terrence Malick, did in over, forty) -> forty (792ms)\nWho is Terrence Malick?\tsexual obsession\t-0.0\tWho is Terrence Malick? -> $x: (terrence malick, be about, $x) -> (Terrence Malick, is making a movie about, sexual obsession) -> sexual obsession (822ms)\nWho is Terrence Malick?\tThe same\t-0.0\tWho is Terrence Malick? -> $x: ($x, be of, terrence malick) -> (The same, is certainly true of, Terrence Malick?s) -> The same (792ms)\nWho is Terrence Malick?\tStanley Cavell\t-0.0\tWho is Terrence Malick? -> $x: ($x, influence, terrence malick) -> (Stanley Cavell, Influenced, Terrence Malick) -> Stanley Cavell (792ms)\nWho is Terrence Malick?\topen-ended take\t-0.0\tWho is Terrence Malick? -> $x: ($x, found, terrence malick) -> (open-ended take, could be found in, Terrence Malick?s ?The Tree) -> open-ended take (991ms)\nWho is Terrence Malick?\tThe video screens\t-0.0\tWho is Terrence Malick? -> $x: ($x, play, terrence malick) -> (The video screens, were playing, Terrence Malick-y footage) -> The video screens (792ms)\nWho is Terrence Malick?\tgrace\t-0.0\tWho is Terrence Malick? -> $x: (terrence malick, be about, $x) -> (Terrence Malick, is all about, grace) -> grace (822ms)\nWho is Terrence Malick?\tnovo filme\t-0.0\tWho is Terrence Malick? -> $x: ($x, do, terrence malick) -> (novo filme, do, Terrence Malick estreia j?) -> novo filme (870ms)\nWho is Terrence Malick?\tDavid Gordon Green\t-0.0\tWho is Terrence Malick? -> $x: ($x, influence, terrence malick) -> (David Gordon Green, Influenced By, Terrence Malick) -> David Gordon Green (792ms)\nWho is Terrence Malick?\tOttawa\t-0.0\tWho is Terrence Malick? -> $x: ($x, here, terrence malick) -> (Ottawa, People born here, Terrence Malick) -> Ottawa (943ms)\nWho is Terrence Malick?\tthe movie\t-0.111111111111\tWho is Terrence Malick? -> $x: ($x, be in, terrence malick) -> (the movie, are brilliant in, a Terrence Malick-inspired way) -> the movie (991ms)\nWho is Terrence Malick?\tthe news\t-0.111111111111\tWho is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick, was back in, the news) -> the news (1179ms)\nWho is Terrence Malick?\tTarkovsky\t-0.111111111111\tWho is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick, are soaked in, Tarkovsky) -> Tarkovsky (991ms)\nWho is Terrence Malick?\tWaco\t-0.111111111111\tWho is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick, was born in, Waco) -> Waco (991ms)\nWho is Terrence Malick?\tthirty minutes\t-0.111111111111\tWho is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick?s ?Badlands ?, was screening in, thirty minutes) -> thirty minutes (1179ms)\nWho is Terrence Malick?\tNatalie Portman\t-0.111111111111\tWho is Terrence Malick? -> $x: ($x, be in, terrence malick) -> (Natalie Portman, is to take roles in, Terrence Malick) -> Natalie Portman (1179ms)\nWho is Terrence Malick?\ta big way\t-0.111111111111\tWho is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick, is making up for lost time in, a big way) -> a big way (991ms)\nWho is Terrence Malick?\tHollywood\t-0.111111111111\tWho is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (director Terrence Malick, is a god in, Hollywood) -> Hollywood (1179ms)\nWho is Terrence Malick?\tthe holy hell\t-0.111111111111\tWho is Terrence Malick? -> $x: ($x, be in, terrence malick) -> (the holy hell, is going on in, Terrence Malick?s) -> the holy hell (1180ms)\nWho is Terrence Malick?\tthe biggest boost\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (the biggest boost, is, Terrence Malick?s Tree) -> the biggest boost (1180ms)\nWho is Terrence Malick?\tvideo compilations\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, has been making, video compilations) -> video compilations (1191ms)\nWho is Terrence Malick?\tThe New World\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The New World, was, Terrence Malick) -> The New World (1197ms)\nWho is Terrence Malick?\ta vision\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (a vision, is equal to, Terrence Malick) -> a vision (1196ms)\nWho is Terrence Malick?\tan interesting director\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, has been, an interesting director) -> an interesting director (1179ms)\nWho is Terrence Malick?\tprayer\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick?s new film, is a form of, prayer) -> prayer (1193ms)\nWho is Terrence Malick?\tcinema\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is a saint of, cinema) -> cinema (1198ms)\nWho is Terrence Malick?\tan extraordinary and unique experience\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, must be, an extraordinary and unique experience) -> an extraordinary and unique experience (1198ms)\nWho is Terrence Malick?\tRooney Mara\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Rooney Mara, were filming, the Terrence Malick film Lawless) -> Rooney Mara (1197ms)\nWho is Terrence Malick?\tlinks and resources\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is full of, links and resources) -> links and resources (1198ms)\nWho is Terrence Malick?\tHazanavicius\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Hazanavicius, was up against, Terrence Malick) -> Hazanavicius (1191ms)\nWho is Terrence Malick?\thand\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (dazza Terrence Malick, was on, hand) -> hand (1180ms)\nWho is Terrence Malick?\tthe Best Director\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was selected, the Best Director) -> the Best Director (1197ms)\nWho is Terrence Malick?\ta kinded spirit\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is just, a kinded spirit) -> a kinded spirit (1193ms)\nWho is Terrence Malick?\tThe Road\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The Road, had been filmed by, Terrence Malick) -> The Road (1195ms)\nWho is Terrence Malick?\ta big event\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (A new Terrence Malick movie, is always, a big event) -> a big event (1180ms)\nWho is Terrence Malick?\t2009 will\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (2009 will, be, Terrence Malick) -> 2009 will (1195ms)\nWho is Terrence Malick?\tBale\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Bale, is shooting, two Terrence Malick films) -> Bale (1199ms)\nWho is Terrence Malick?\ttime\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (time, were, Terrence Malick) -> time (1195ms)\nWho is Terrence Malick?\tBest Picture\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was nominated for, Best Picture) -> Best Picture (1198ms)\nWho is Terrence Malick?\tmoment\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (moment, is from, Terrence Malick 's-The Tree) -> moment (1197ms)\nWho is Terrence Malick?\tFew films\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Few films, were as polarizing as, Terrence Malick) -> Few films (1199ms)\nWho is Terrence Malick?\thard people\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (hard people, have been on, Terrence Malick) -> hard people (1198ms)\nWho is Terrence Malick?\ta project\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was already working on, a project) -> a project (1193ms)\nWho is Terrence Malick?\tthe Philippines\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was going to come to, the Philippines) -> the Philippines (1195ms)\nWho is Terrence Malick?\tCannes\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Cannes, was, Terrence Malick?s Tree) -> Cannes (1195ms)\nWho is Terrence Malick?\tthe year\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (the year, was, Terrence Malick?s) -> the year (1198ms)\nWho is Terrence Malick?\ta filmmaker\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was, a filmmaker) -> a filmmaker (1191ms)\nWho is Terrence Malick?\tthe film\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (the film, are, Terrence Malick) -> the film (1196ms)\nWho is Terrence Malick?\tthe top prize\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (the top prize, is, Terrence Malick?s ?The Tree) -> the top prize (1198ms)\nWho is Terrence Malick?\ta rarity\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick?s fourth film, is, a rarity) -> a rarity (1197ms)\nWho is Terrence Malick?\ta directing award\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (renowned auteur Terrence Malick, is up for, a directing award) -> a directing award (1195ms)\nWho is Terrence Malick?\tGreen\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Green, has been often compared to, Terrence Malick) -> Green (1191ms)\nWho is Terrence Malick?\ta director and screenwriter rare\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, a director and screenwriter rare) -> a director and screenwriter rare (1197ms)\nWho is Terrence Malick?\ttown\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (town, was for, reclusive US director Terrence Malick) -> town (1198ms)\nWho is Terrence Malick?\tnotable absentee\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (notable absentee, was, the director Terrence Malick) -> notable absentee (1198ms)\nWho is Terrence Malick?\ta special filmmaker\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, a special filmmaker) -> a special filmmaker (1191ms)\nWho is Terrence Malick?\tthe reclusive genius\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, has been called, the reclusive genius) -> the reclusive genius (1198ms)\nWho is Terrence Malick?\ta regular workhorse ?\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was, a regular workhorse ?) -> a regular workhorse ? (1196ms)\nWho is Terrence Malick?\tAfrican person\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (terrence malick, is an, African person) -> African person (1193ms)\nWho is Terrence Malick?\tfar this year\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (far this year, is, Terrence Malick?s) -> far this year (1196ms)\nWho is Terrence Malick?\tThe fifth Academy Award nominee\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The fifth Academy Award nominee, is, Terrence Malick) -> The fifth Academy Award nominee (1197ms)\nWho is Terrence Malick?\tDominik\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was supposedly a strong influence for, Dominik) -> Dominik (1199ms)\nWho is Terrence Malick?\tone of the greatest filmmakers of all time\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, one of the greatest filmmakers of all time) -> one of the greatest filmmakers of all time (1199ms)\nWho is Terrence Malick?\tan up-and-comer\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, an up-and-comer) -> an up-and-comer (1193ms)\nWho is Terrence Malick?\tThe best comparison\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The best comparison, would be, Terrence Malick ?) -> The best comparison (1192ms)\nWho is Terrence Malick?\tartistic vision\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is his deep commitment both to, artistic vision) -> artistic vision (1191ms)\nWho is Terrence Malick?\tbest director ?\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (the director Terrence Malick, was nominated for, best director ?) -> best director ? (1197ms)\nWho is Terrence Malick?\tSteven D. Greydanus\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Steven D. Greydanus, Is, Terrence Malick?s) -> Steven D. Greydanus (1196ms)\nWho is Terrence Malick?\tthe same award\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, are up for, the same award) -> the same award (1199ms)\nWho is Terrence Malick?\tthe greatest filmmakers\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is one of, the greatest filmmakers) -> the greatest filmmakers (1198ms)\nWho is Terrence Malick?\tone artist\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (our estimation Terrence Malick, is second only to, one artist) -> one artist (1196ms)\nWho is Terrence Malick?\teach film\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (each film, is released by, Terrence Malick) -> each film (1197ms)\nWho is Terrence Malick?\tthe performances\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is living off of, the performances) -> the performances (1191ms)\nWho is Terrence Malick?\ta bold filmmaker\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (The Sacred Impulse Terrence Malick, is, a bold filmmaker) -> a bold filmmaker (1193ms)\nWho is Terrence Malick?\tTree of Life\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Tree of Life, is directed by, Terrence Malick) -> Tree of Life (1195ms)\nWho is Terrence Malick?\ta country mile\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (a country mile, was, Terrence Malick?s ambitious feast) -> a country mile (1191ms)\nWho is Terrence Malick?\tthe most intuitive\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, the most intuitive) -> the most intuitive (1195ms)\nWho is Terrence Malick?\ta producer\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is credited as, a producer) -> a producer (1191ms)\nWho is Terrence Malick?\tAnderson\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Anderson, has been studying, Terrence Malick) -> Anderson (1193ms)\nWho is Terrence Malick?\tthe first rank\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is a filmmaker of, the first rank) -> the first rank (1191ms)\nWho is Terrence Malick?\tThe more likely nominee\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The more likely nominee, would be, Terrence Malick) -> The more likely nominee (1197ms)\nWho is Terrence Malick?\t06 :04\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (06 :04, AM Been watching, Terrence Malick?s) -> 06 :04 (1196ms)\nWho is Terrence Malick?\ta humanity\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Ford , Huston and Terrence Malick, was, a humanity) -> a humanity (1196ms)\nWho is Terrence Malick?\tSmith?s\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick?s vision, is n?t as narrow as, Smith?s) -> Smith?s (1196ms)\nWho is Terrence Malick?\tnames\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick ?, are, names) -> names (1196ms)\nWho is Terrence Malick?\tgenius\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is a filmmaker of, genius) -> genius (1199ms)\nWho is Terrence Malick?\tofficial competition\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (official competition, were, American directors Terrence Malick) -> official competition (1197ms)\nWho is Terrence Malick?\tthe Austin\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, IS Going to Take On, the Austin) -> the Austin (1195ms)\nWho is Terrence Malick?\tcommedian\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (terrence malick, is a, commedian) -> commedian (1199ms)\nWho is Terrence Malick?\tstar power\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is certainly loading up on, star power) -> star power (1191ms)\nWho is Terrence Malick?\tBest Director\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was nominated for, Best Director) -> Best Director (1195ms)\nWho is Terrence Malick?\tPitt\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Pitt, was directed by, Terrence Malick) -> Pitt (1195ms)\nWho is Terrence Malick?\tlast year\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (last year, was, veteran U.S. film maker Terrence Malick) -> last year (1191ms)\nWho is Terrence Malick?\tGod tier\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, God tier) -> God tier (1195ms)\nWho is Terrence Malick?\tArt\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Art, is having, a Terrence Malick retrospective) -> Art (1198ms)\nWho is Terrence Malick?\tThe BFI\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The BFI, are reissuing, Terrence Malick?s Days) -> The BFI (1199ms)\nWho is Terrence Malick?\tLife\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Life, is, director Terrence Malick?s meditation) -> Life (1198ms)\nWho is Terrence Malick?\tPortman?s next gig\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Portman?s next gig, is, Terrence Malick?s film) -> Portman?s next gig (1191ms)\nWho is Terrence Malick?\texecutive producers\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, are listed as, executive producers) -> executive producers (1196ms)\nWho is Terrence Malick?\tthe JD Salinger\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, the JD Salinger) -> the JD Salinger (1193ms)\nWho is Terrence Malick?\ta really good year\t-0.222222222222\tWho is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (director Terrence Malick, is having, a really good year) -> a really good year (1197ms)\nWho is Terrence Malick?\tThe film\t-0.222222222222\tWho is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The film, was directed by, Terrence Malick) -> The film (1198ms)\nWhen did the Big Dig begin?\tthe post-WWII Interstate Highway boom\t1.1111111111\tWhen did the Big Dig begin? -> $x: (big dig, begin in, $x) -> (the Big Dig, began in, the post-WWII Interstate Highway boom) -> the post-WWII Interstate Highway boom (994ms)\nWhen did the Big Dig begin?\tBoston\t0.888888888884\tWhen did the Big Dig begin? -> $x: (big dig, start in, $x) -> (?The Big Dig, was starting in, Boston) -> Boston (994ms)\nWhen did the Big Dig begin?\tmuch success\t0.111111111111\tWhen did the Big Dig begin? -> $x: (big dig, begin, $x) -> (the big dig, began ? without, much success) -> much success (994ms)\nWhen did the Big Dig begin?\tmillions\t0.111111111111\tWhen did the Big Dig begin? -> $x: (big dig, begin, $x) -> (The big dig, begins today for, millions) -> millions (994ms)\nWhen did the Big Dig begin?\tdawn\t0.111111111111\tWhen did the Big Dig begin? -> $x: (big dig, begin, $x) -> (The ?Big Dig?, began at, dawn) -> dawn (994ms)\nWhen did the Big Dig begin?\tThe idiots\t-0.0\tWhen did the Big Dig begin? -> $x: ($x, do, big dig) -> (The idiots, did, ?The Big Dig? underground highway project) -> The idiots (1037ms)\nWhen did the Big Dig begin?\tinstance\t-0.0\tWhen did the Big Dig begin? -> $x: ($x, do, big dig) -> (instance, did n?t, the Big Dig) -> instance (1037ms)\nWhen did the Big Dig begin?\tBrinckerhoff\t-0.0\tWhen did the Big Dig begin? -> $x: ($x, do, big dig) -> (Brinckerhoff, did with, its Big Dig shenanigans) -> Brinckerhoff (1037ms)\nWhen did the Big Dig begin?\tThe memo\t-0.0\tWhen did the Big Dig begin? -> $x: ($x, do, big dig) -> (The memo, has nothing to do with, the big dig) -> The memo (1037ms)\nWhen did the Big Dig begin?\tthe state\t-0.0\tWhen did the Big Dig begin? -> $x: ($x, do, big dig) -> (the state, did right on, the Big Dig) -> the state (994ms)\nWhen did the Big Dig begin?\tDan Riehl\t-0.0\tWhen did the Big Dig begin? -> $x: ($x, do, big dig) -> (Dan Riehl, does, a big dig) -> Dan Riehl (1037ms)\nWhen did the Big Dig begin?\tTransition Town TTP\t-0.0\tWhen did the Big Dig begin? -> $x: ($x, do, big dig) -> (Transition Town TTP, do, the Big Dig ! youtube) -> Transition Town TTP (1037ms)\nWhen did the Big Dig begin?\tthe pollution\t-0.0\tWhen did the Big Dig begin? -> $x: ($x, cause, big dig) -> (the pollution, caused by, the Big Dig) -> the pollution (1037ms)\nWhen did the Big Dig begin?\tJames Davidson\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (James Davidson, dug deeply into, the Mac) -> James Davidson (1369ms)\nWhen did the Big Dig begin?\tchinchoks\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (chinchoks, dig, Sesshu , Bach , John D. MacDonald) -> chinchoks (1354ms)\nWhen did the Big Dig begin?\tThe crowd\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (The crowd, is digging, Giant big time) -> The crowd (1369ms)\nWhen did the Big Dig begin?\tfamily\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (family, dig, a big hole) -> family (1366ms)\nWhen did the Big Dig begin?\tEmily\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Emily, just dug, big comfortable hole) -> Emily (1367ms)\nWhen did the Big Dig begin?\tThe article\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (The article, digs into, Vince MacMahon) -> The article (1365ms)\nWhen did the Big Dig begin?\tAmericans\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Americans, dig, big cars) -> Americans (1367ms)\nWhen did the Big Dig begin?\tthe villagers\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the villagers, dig out, big stones) -> the villagers (1368ms)\nWhen did the Big Dig begin?\ta backhoe\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (a backhoe, dug, a big hole) -> a backhoe (1147ms)\nWhen did the Big Dig begin?\tDad and son\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Dad and son, dug, a big hole) -> Dad and son (1369ms)\nWhen did the Big Dig begin?\t?We?ve\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (?We?ve, dug, a big hole) -> ?We?ve (1368ms)\nWhen did the Big Dig begin?\textremely powerful back legs rabbits\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (extremely powerful back legs rabbits, dig, big holes) -> extremely powerful back legs rabbits (1369ms)\nWhen did the Big Dig begin?\tWindows 7\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Windows 7, dug out, a MacBook) -> Windows 7 (1147ms)\nWhen did the Big Dig begin?\ta matter\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (a matter, dug, a hole big and deep enough) -> a matter (1368ms)\nWhen did the Big Dig begin?\ta smile\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (a smile, dug back into, his mac'n'cheese) -> a smile (1368ms)\nWhen did the Big Dig begin?\tthe children\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the children, dug, a big pail) -> the children (1354ms)\nWhen did the Big Dig begin?\tNative Americans\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Native Americans, dug, big holes) -> Native Americans (1368ms)\nWhen did the Big Dig begin?\tthey?ve\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (they?ve, dug, a big hole) -> they?ve (1147ms)\nWhen did the Big Dig begin?\tthe flashy advertising\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the flashy advertising, dug, two big pits) -> the flashy advertising (1368ms)\nWhen did the Big Dig begin?\tthe end\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the end, dig, a big deep hole) -> the end (1368ms)\nWhen did the Big Dig begin?\twaste ?\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (waste ?, dig, a big hole) -> waste ? (1147ms)\nWhen did the Big Dig begin?\tthe kids\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the kids, just dug, the big beats) -> the kids (1354ms)\nWhen did the Big Dig begin?\tthe atom bomb\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the atom bomb, dug, a big canal) -> the atom bomb (1367ms)\nWhen did the Big Dig begin?\thospitals\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (hospitals, dig into, Big Data) -> hospitals (1368ms)\nWhen did the Big Dig begin?\tKhan\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Khan, dug, his big fingers) -> Khan (1115ms)\nWhen did the Big Dig begin?\tchicks\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (chicks, dig, big vocabularies) -> chicks (1115ms)\nWhen did the Big Dig begin?\tthe street\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (the street, maybe dig into, some delicious mac ?n cheese) -> the street (1354ms)\nWhen did the Big Dig begin?\tYoure\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Youre, digging yourself, a big hole) -> Youre (1368ms)\nWhen did the Big Dig begin?\t?Chicks\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (?Chicks, dig, big brains) -> ?Chicks (1147ms)\nWhen did the Big Dig begin?\tMike Mulligan and his steam shovel\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Mike Mulligan and his steam shovel, dig, big holes) -> Mike Mulligan and his steam shovel (1368ms)\nWhen did the Big Dig begin?\tBlack Oak Ridge .... Big engines\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Black Oak Ridge .... Big engines, will dig, big ditches) -> Black Oak Ridge .... Big engines (1147ms)\nWhen did the Big Dig begin?\tlocal governments\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (local governments, start digging, big tunnels) -> local governments (1367ms)\nWhen did the Big Dig begin?\tI?d\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (I?d, totally dig, a Mac Shuffle) -> I?d (1366ms)\nWhen did the Big Dig begin?\tAn estimated 30 million U. First\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (An estimated 30 million U. First, dig, a big hole) -> An estimated 30 million U. First (1354ms)\nWhen did the Big Dig begin?\tArie Kamp\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Arie Kamp, has dug up, Pat MacKay) -> Arie Kamp (1368ms)\nWhen did the Big Dig begin?\tCommerce\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Commerce, dug, a big hole) -> Commerce (1368ms)\nWhen did the Big Dig begin?\tthe pigs\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the pigs, dig up, big patches) -> the pigs (1115ms)\nWhen did the Big Dig begin?\tHarrison\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Harrison, dug into, his mac n? cheese & grapes) -> Harrison (1115ms)\nWhen did the Big Dig begin?\tthe Warriors\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the Warriors, dig, another big hole) -> the Warriors (1367ms)\nWhen did the Big Dig begin?\tMr. Sharon\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Mr. Sharon, has dug, a very big hole) -> Mr. Sharon (1369ms)\nWhen did the Big Dig begin?\tWindows users\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Windows users, dig around in, Mac filesystems) -> Windows users (1367ms)\nWhen did the Big Dig begin?\ta place\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (a place, digs, a big hole) -> a place (1354ms)\nWhen did the Big Dig begin?\tSwam\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Swam, dug, a big hole) -> Swam (1368ms)\nWhen did the Big Dig begin?\ta mud puddle\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (a mud puddle, dig, a big dirt pit) -> a mud puddle (1368ms)\nWhen did the Big Dig begin?\t?How\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (?How, dig, such a big hole) -> ?How (1147ms)\nWhen did the Big Dig begin?\tthe Titus Brothers\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the Titus Brothers, dig, the big tunnel) -> the Titus Brothers (1367ms)\nWhen did the Big Dig begin?\tFancy\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Fancy, digs in, a big city) -> Fancy (1368ms)\nWhen did the Big Dig begin?\tThe director\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (The director, dug, a big hole) -> The director (1367ms)\nWhen did the Big Dig begin?\ta girl\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (a girl, digs, a guy with a big dick) -> a girl (1115ms)\nWhen did the Big Dig begin?\tthe new structure\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the new structure, dig, a big hole) -> the new structure (1368ms)\nWhen did the Big Dig begin?\tDon?t\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Don?t, dig, a big deep hole) -> Don?t (1369ms)\nWhen did the Big Dig begin?\tBush\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Bush, dug, a really big hole) -> Bush (1367ms)\nWhen did the Big Dig begin?\tThe Teso\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (The Teso, can dig, a big portion) -> The Teso (1367ms)\nWhen did the Big Dig begin?\tKevin\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Kevin, dug, big holes) -> Kevin (1368ms)\nWhen did the Big Dig begin?\tbricks and rocks\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (bricks and rocks, dug, a big hole) -> bricks and rocks (1369ms)\nWhen did the Big Dig begin?\tthe bulldozer\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the bulldozer, dug, a big hole) -> the bulldozer (1365ms)\nWhen did the Big Dig begin?\tsomebody\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (somebody, to dig, a big hole) -> somebody (1366ms)\nWhen did the Big Dig begin?\thead-on\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (head-on, digs up, big hypocrisies) -> head-on (1365ms)\nWhen did the Big Dig begin?\tTheyve\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Theyve, dug, a big hole) -> Theyve (1368ms)\nWhen did the Big Dig begin?\tChicks\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Chicks, dig, Mac OS X) -> Chicks (1365ms)\nWhen did the Big Dig begin?\tan intense bout\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (an intense bout, digged up, my old Mac Plus) -> an intense bout (1365ms)\nWhen did the Big Dig begin?\tthe soldiers\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the soldiers, dug, a big hole) -> the soldiers (1354ms)\nWhen did the Big Dig begin?\ta man\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (a man, dug up, a big , earthenware cask) -> a man (1354ms)\nWhen did the Big Dig begin?\tThe excavator\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (The excavator, dug, a big hole) -> The excavator (1368ms)\nWhen did the Big Dig begin?\tWeve\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Weve, dug ourselves, a big hole) -> Weve (1366ms)\nWhen did the Big Dig begin?\tgardening\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (gardening, Dig, two big holes) -> gardening (1354ms)\nWhen did the Big Dig begin?\tLord Para?ur?ma\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Lord Para?ur?ma, dug, five big lakes) -> Lord Para?ur?ma (1367ms)\nWhen did the Big Dig begin?\tLocation\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Location, Digging, the big hole) -> Location (1115ms)\nWhen did the Big Dig begin?\tthe guys\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the guys, dig, big holes) -> the guys (1369ms)\nWhen did the Big Dig begin?\tKaren\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Karen, is totally digging, her MacBook Pro) -> Karen (1365ms)\nWhen did the Big Dig begin?\tDon?t fig\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Don?t fig, dig, a big wide hole) -> Don?t fig (1365ms)\nWhen did the Big Dig begin?\tbricks and stones\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (bricks and stones, dug, a big hole) -> bricks and stones (1366ms)\nWhen did the Big Dig begin?\tOld Romney quote\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Old Romney quote, dug up by, @AlecMacGillis) -> Old Romney quote (1367ms)\nWhen did the Big Dig begin?\tCertain critics\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Certain critics, dig, big fat juice) -> Certain critics (1366ms)\nWhen did the Big Dig begin?\tthe contractor\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the contractor, dug, a big hole) -> the contractor (1367ms)\nWhen did the Big Dig begin?\tthe entire socailist democratic party\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the entire socailist democratic party, dig, a big ditch) -> the entire socailist democratic party (1368ms)\nWhen did the Big Dig begin?\tthe table and\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the table and, dug into, big bowls) -> the table and (1368ms)\nWhen did the Big Dig begin?\tthe tree\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the tree, dig, a big hole) -> the tree (1115ms)\nWhen did the Big Dig begin?\tMicrosoft\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Microsoft, have dug, an awfully big hole) -> Microsoft (1365ms)\nWhen did the Big Dig begin?\tthe lawnmower\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the lawnmower, dug, a big hole) -> the lawnmower (1368ms)\nWhen did the Big Dig begin?\tSeason 1\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Season 1, really dug, Kyle MacLachlan?s button-down look) -> Season 1 (1369ms)\nWhen did the Big Dig begin?\tJustis\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (Justis, dug, a big whole) -> Justis (1354ms)\nWhen did the Big Dig begin?\ta smaller plant\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (a smaller plant, just dig, a hole big enough) -> a smaller plant (1367ms)\nWhen did the Big Dig begin?\tthe hole\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the hole, is dug, too big) -> the hole (1369ms)\nWhen did the Big Dig begin?\tthe insulation value\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the insulation value, dig, a big hole) -> the insulation value (1367ms)\nWhen did the Big Dig begin?\ta forest\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (a forest, dig, a big mine) -> a forest (1368ms)\nWhen did the Big Dig begin?\tthe iPad end-user licensing agreement\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (the iPad end-user licensing agreement, dug up by, MacRumors) -> the iPad end-user licensing agreement (1367ms)\nWhen did the Big Dig begin?\tAsh\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, mac) -> (Ash, was digging for, second and Mac) -> Ash (1365ms)\nWhen did the Big Dig begin?\tthe builders\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the builders, dug, a big hole) -> the builders (1368ms)\nWhen did the Big Dig begin?\tthe east face\t-0.444444444441\tWhen did the Big Dig begin? -> $x: ($x, dig, big) -> (the east face, dug, a snow cave big) -> the east face (1368ms)\nWhen did the Big Dig begin?\tFans\t-0.555555555552\tWhen did the Big Dig begin? -> $x: ($x, dig, big bang) -> (Fans, are digging, Big Bang?s strong promotions) -> Fans (1369ms)\nWhen did the Big Dig begin?\tany construction\t-1.666666666673\tWhen did the Big Dig begin? -> $x: ($x, begin, big dig) -> (any construction, began on, the Big Dig) -> any construction (1369ms)\nWhen did the Big Dig begin?\tthe Massachusetts Secretary\t-1.666666666673\tWhen did the Big Dig begin? -> $x: ($x, begin, big dig) -> (the Massachusetts Secretary, begins planning, the Big Dig) -> the Massachusetts Secretary (1369ms)\nWhen did the Big Dig begin?\tThe Times\t-1.7777777777839998\tWhen did the Big Dig begin? -> $x: ($x, start, big dig) -> (The Times, has just started, its own Big Dig program) -> The Times (1369ms)\nWhat is foot and mouth disease?\tthe virus\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (the virus, causes, foot and mouth disease) -> the virus (940ms)\nWhat is foot and mouth disease?\tan act\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (an act, may have caused, the foot-and-mouth disease outbreak) -> an act (940ms)\nWhat is foot and mouth disease?\tthe Enterovirus 71\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (the Enterovirus 71, causes, Hand , Foot and Mouth Disease) -> the Enterovirus 71 (940ms)\nWhat is foot and mouth disease?\tEV71\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (EV71, can cause, hand , foot and mouth disease) -> EV71 (970ms)\nWhat is foot and mouth disease?\tThe virus\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (The virus, causes, hand , foot and mouth disease) -> The virus (970ms)\nWhat is foot and mouth disease?\tEV-71\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (EV-71, causes, hand , foot and mouth disease) -> EV-71 (970ms)\nWhat is foot and mouth disease?\tVirus\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (Virus, causes, foot-and-mouth disease) -> Virus (940ms)\nWhat is foot and mouth disease?\tthe viruses\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (the viruses, cause, hand , foot , and mouth disease) -> the viruses (940ms)\nWhat is foot and mouth disease?\ta virus\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (a virus, causes, hand , foot and mouth disease) -> a virus (940ms)\nWhat is foot and mouth disease?\tthe restrictions\t0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (the restrictions, caused by, Foot and Mouth Disease) -> the restrictions (940ms)\nWhat is foot and mouth disease?\tVP2\t-0.0\tWhat is foot and mouth disease? -> $x: ($x, in, foot and mouth disease) -> (VP2, observed in, foot-and-mouth disease virus) -> VP2 (970ms)\nWhat is foot and mouth disease?\ta research centre\t-0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth) -> (a research centre, would cause, the foot and mouth outbreak) -> a research centre (1446ms)\nWhat is foot and mouth disease?\tThe disease\t-0.111111111111\tWhat is foot and mouth disease? -> $x: ($x, cause, foot and mouth) -> (The disease, causes blisters on, the mouth and feet) -> The disease (1446ms)\nWhat is foot and mouth disease?\tthe U.S.\t-0.111111111112\tWhat is foot and mouth disease? -> $x: ($x, do, foot and mouth disease) -> (the U.S., do to help prevent, foot-and-mouth disease) -> the U.S. (1499ms)\nWhat is foot and mouth disease?\tthe region\t-0.111111111112\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, be for, $x) -> (foot-and-mouth disease, is a priority for, the region) -> the region (1600ms)\nWhat is foot and mouth disease?\tNAIS\t-0.111111111112\tWhat is foot and mouth disease? -> $x: ($x, do, foot and mouth disease) -> (NAIS, does nothing for, foot and mouth disease) -> NAIS (1499ms)\nWhat is foot and mouth disease?\tconsumers\t-0.111111111112\tWhat is foot and mouth disease? -> $x: ($x, do, foot and mouth disease) -> (consumers, do to help prevent, foot-and-mouth disease) -> consumers (1601ms)\nWhat is foot and mouth disease?\tYilma\t-0.111111111112\tWhat is foot and mouth disease? -> $x: ($x, do, foot and mouth disease) -> (Yilma, did extensive work on, foot-and-mouth disease) -> Yilma (1499ms)\nWhat is foot and mouth disease?\tanimal farming\t-0.111111111112\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, be for, $x) -> (Foot-and-mouth disease, is a severe plague for, animal farming) -> animal farming (1499ms)\nWhat is foot and mouth disease?\tEssex\t-0.222222222222\tWhat is foot and mouth disease? -> $x: ($x, found, foot and mouth disease) -> (Essex, was found to have, foot-and-mouth disease) -> Essex (1601ms)\nWhat is foot and mouth disease?\ta sausage\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (a sausage, was infected with, foot-and-mouth disease virus) -> a sausage (2142ms)\nWhat is foot and mouth disease?\tOctober 14 , 2011 2:52 PM\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (October 14 , 2011 2:52 PM, is, hand , foot and mouth disease) -> October 14 , 2011 2:52 PM (2142ms)\nWhat is foot and mouth disease?\tThe cows\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The cows, are all coming down with, foot and mouth disease) -> The cows (1992ms)\nWhat is foot and mouth disease?\tmouth disease\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (mouth disease, is often confused with, foot-and-mouth disease) -> mouth disease (2122ms)\nWhat is foot and mouth disease?\tBotswana\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Botswana, is dotted with, foot-and-mouth-disease control points) -> Botswana (1718ms)\nWhat is foot and mouth disease?\tArgentina\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Argentina, is, free of foot and mouth disease) -> Argentina (2144ms)\nWhat is foot and mouth disease?\tNorth Korea\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (North Korea, has been hit hard with, foot-and-mouth disease) -> North Korea (2142ms)\nWhat is foot and mouth disease?\tCanada\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Canada, has been free of, foot-and-mouth disease) -> Canada (2142ms)\nWhat is foot and mouth disease?\thumans\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be to, foot and mouth disease) -> (humans, are frequently exposed to, foot-and-mouth disease) -> humans (2144ms)\nWhat is foot and mouth disease?\tinterest\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (interest, is, foot-and-mouth disease) -> interest (2142ms)\nWhat is foot and mouth disease?\ta FAD\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (a FAD, is, foot-and-mouth disease) -> a FAD (2122ms)\nWhat is foot and mouth disease?\tthe technology\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the technology, will be on identifying, foot-and-mouth disease) -> the technology (2070ms)\nWhat is foot and mouth disease?\tthe real problem\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the real problem, is the prevalence of, foot and mouth disease) -> the real problem (2139ms)\nWhat is foot and mouth disease?\torigin\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (origin, has been declared free of, foot and mouth disease) -> origin (1718ms)\nWhat is foot and mouth disease?\tCoxsackie A16\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Coxsackie A16, is responsible for, hand foot and mouth disease) -> Coxsackie A16 (2070ms)\nWhat is foot and mouth disease?\tThe full name\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The full name, is, ?hand , foot and mouth disease) -> The full name (2070ms)\nWhat is foot and mouth disease?\tthe livestock sector\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the livestock sector, is the threat of, foot and mouth disease) -> the livestock sector (2142ms)\nWhat is foot and mouth disease?\ta few years\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (a few years, ago were suffering from, foot and mouth disease) -> a few years (2142ms)\nWhat is foot and mouth disease?\tHFMD\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (HFMD, is often confused with, foot-and-mouth disease) -> HFMD (2122ms)\nWhat is foot and mouth disease?\tHerpangina\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Herpangina, is similar to hand, foot and mouth disease) -> Herpangina (2139ms)\nWhat is foot and mouth disease?\tthe United States\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the United States, are, foot-and-mouth disease and Texas fever) -> the United States (1992ms)\nWhat is foot and mouth disease?\tSO WHAT\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (SO WHAT, IS, FOOT AND MOUTH DISEASE) -> SO WHAT (2142ms)\nWhat is foot and mouth disease?\tAn overview\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (An overview, is, foot and mouth disease) -> An overview (2023ms)\nWhat is foot and mouth disease?\tEven dried meat\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, can, foot and mouth disease) -> (Even dried meat, can contain, foot-and-mouth disease) -> Even dried meat (2122ms)\nWhat is foot and mouth disease?\tanimals\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (animals, are susceptible to, foot and mouth disease) -> animals (2142ms)\nWhat is foot and mouth disease?\tyoung animals\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (young animals, are all signs of, foot and mouth disease) -> young animals (1687ms)\nWhat is foot and mouth disease?\tthe calf case\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the calf case, is negative for, Foot-and-Mouth Disease) -> the calf case (2139ms)\nWhat is foot and mouth disease?\tsymptoms\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (symptoms, were diagnosed with, foot-and-mouth disease) -> symptoms (2139ms)\nWhat is foot and mouth disease?\tA serious short-term problem\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (A serious short-term problem, is, foot-and-mouth disease) -> A serious short-term problem (2144ms)\nWhat is foot and mouth disease?\tEdinburgh\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Edinburgh, is famous for, the ?foot and mouth disease) -> Edinburgh (1687ms)\nWhat is foot and mouth disease?\tSouth Korea\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (South Korea, has been devastated by, foot-and-mouth disease) -> South Korea (1687ms)\nWhat is foot and mouth disease?\tFire blight\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Fire blight, is, the foot and mouth disease) -> Fire blight (2122ms)\nWhat is foot and mouth disease?\thealthy animals\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, can, foot and mouth disease) -> (healthy animals, can recover from, foot-and-mouth disease) -> healthy animals (2070ms)\nWhat is foot and mouth disease?\tthe disease\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be to, foot and mouth disease) -> (the disease, are identical to, foot and mouth disease) -> the disease (2139ms)\nWhat is foot and mouth disease?\tthe time\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the time, were streaming with, foot-and mouth disease) -> the time (2023ms)\nWhat is foot and mouth disease?\thelp North Korea\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (help North Korea, has been hit hard with, foot-and-mouth disease) -> help North Korea (2023ms)\nWhat is foot and mouth disease?\tThe United States\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The United States, has been free of, foot and mouth disease) -> The United States (2139ms)\nWhat is foot and mouth disease?\tBritain\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Britain, was gripped by, foot and mouth disease) -> Britain (2122ms)\nWhat is foot and mouth disease?\tBrazil\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Brazil, are affected by, foot and mouth disease) -> Brazil (2139ms)\nWhat is foot and mouth disease?\tthe UK more farms\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the UK more farms, are being tested for, foot-and-mouth disease) -> the UK more farms (1718ms)\nWhat is foot and mouth disease?\tA fever\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (A fever, is often the first sign of, hand-foot-and-mouth disease) -> A fever (2142ms)\nWhat is foot and mouth disease?\t12\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (12, are suffering from, foot and mouth disease) -> 12 (2142ms)\nWhat is foot and mouth disease?\ttwo-thirds\t-0.222222222223\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, be about, $x) -> (Foot-and-mouth disease, is common to about, two-thirds) -> two-thirds (1992ms)\nWhat is foot and mouth disease?\tThe UK\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The UK, was hit by, Foot and Mouth disease) -> The UK (2122ms)\nWhat is foot and mouth disease?\tAn example\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (An example, was the tragedy of, foot-and-mouth disease) -> An example (2070ms)\nWhat is foot and mouth disease?\tThe best known example\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The best known example, is, foot and mouth disease) -> The best known example (2139ms)\nWhat is foot and mouth disease?\tLivestock\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, can, foot and mouth disease) -> (Livestock, can contract, foot-and-mouth disease) -> Livestock (2139ms)\nWhat is foot and mouth disease?\tdiscussion\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (discussion, was the outbreak of, foot-and-mouth disease) -> discussion (1686ms)\nWhat is foot and mouth disease?\tthe countryside\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the countryside, are worried about, foot-and-mouth disease) -> the countryside (2139ms)\nWhat is foot and mouth disease?\tfocus\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be to, foot and mouth disease) -> (focus, has been given to, BSA and Foot and Mouth disease) -> focus (2139ms)\nWhat is foot and mouth disease?\tthe casings\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the casings, is officially free from, foot and mouth disease) -> the casings (1718ms)\nWhat is foot and mouth disease?\tIreland\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Ireland, was hit hard by, foot and mouth disease) -> Ireland (2022ms)\nWhat is foot and mouth disease?\tyoung children\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (young children, is, ?hand-foot-and-mouth disease ?) -> young children (2142ms)\nWhat is foot and mouth disease?\tFootpaths\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Footpaths, is the potential outbreak of, Foot and Mouth disease) -> Footpaths (2139ms)\nWhat is foot and mouth disease?\tThe EU\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The EU, is currently, foot and mouth disease-free) -> The EU (2142ms)\nWhat is foot and mouth disease?\tNo. HFMD\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (No. HFMD, is a different disease than, foot-and-mouth disease) -> No. HFMD (2144ms)\nWhat is foot and mouth disease?\tBrief Version\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Brief Version, is, hand , foot and mouth disease) -> Brief Version (1992ms)\nWhat is foot and mouth disease?\tthe animals\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be to, foot and mouth disease) -> (the animals, had been exposed to, foot-and-mouth disease) -> the animals (2142ms)\nWhat is foot and mouth disease?\tCumbria\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Cumbria, were struck with, foot and mouth disease) -> Cumbria (2139ms)\nWhat is foot and mouth disease?\tTrang\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Trang, is facing an outbreak of, foot and mouth disease) -> Trang (2139ms)\nWhat is foot and mouth disease?\tmuch attention\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (much attention, has been focused on, Foot-and-Mouth Disease) -> much attention (1718ms)\nWhat is foot and mouth disease?\tA PROBLEM\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (A PROBLEM, IS, THE Foot and Mouth DISEASE) -> A PROBLEM (2070ms)\nWhat is foot and mouth disease?\tFMD Humans\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (FMD Humans, can be infected with, foot-and-mouth disease) -> FMD Humans (2139ms)\nWhat is foot and mouth disease?\t50,000 animals\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (50,000 animals, have been infected with, foot-and-mouth disease) -> 50,000 animals (1992ms)\nWhat is foot and mouth disease?\tthe country\t-0.222222222223\tWhat is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the country, is, free of the foot and mouth disease) -> the country (1992ms)\nWhat is foot and mouth disease?\tcertain types\t-0.333333333333\tWhat is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> (Hand , foot and mouth disease, is caused by, certain types) -> certain types (2144ms)\nWhat is foot and mouth disease?\tinfection\t-0.333333333333\tWhat is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> (foot and mouth, is caused by, infection) -> infection (2144ms)\nWhat is foot and mouth disease?\ta similar virus\t-0.333333333333\tWhat is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> (Hand , foot and mouth, is usually caused by, a similar virus) -> a similar virus (2144ms)\nWhat is foot and mouth disease?\tthe South\t-0.333333333333\tWhat is foot and mouth disease? -> $x: ($x, develop, foot and mouth disease) -> (the South, developed some cases of, Foot-and-Mouth disease) -> the South (2144ms)\nWhat is foot and mouth disease?\ta cloud\t-0.333333333333\tWhat is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> ('s foot and mouth epidemic, may have been caused by, a cloud) -> a cloud (2146ms)\nWhat is foot and mouth disease?\ta Picornavirus\t-0.333333333333\tWhat is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> (Foot and mouth disease, is caused by, a Picornavirus) -> a Picornavirus (2144ms)\nWhat is foot and mouth disease?\tthe news\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth Disease, is in, the news) -> the news (2153ms)\nWhat is foot and mouth disease?\tplace\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease prohibitions, were put in, place) -> place (2153ms)\nWhat is foot and mouth disease?\tmilk\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease virus, excreted in, milk) -> milk (2152ms)\nWhat is foot and mouth disease?\tAuthorities Concept Scheme\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease virus, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2150ms)\nWhat is foot and mouth disease?\tJune 2001\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was reported in, June 2001) -> June 2001 (2152ms)\nWhat is foot and mouth disease?\tthe United Kingdom\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, occurred in, the United Kingdom) -> the United Kingdom (2150ms)\nWhat is foot and mouth disease?\tEngland\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, have been detected in, England) -> England (2151ms)\nWhat is foot and mouth disease?\tSurrey\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, breaking out in, Surrey) -> Surrey (2153ms)\nWhat is foot and mouth disease?\tthe U.K.\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, began in, the U.K.) -> the U.K. (2153ms)\nWhat is foot and mouth disease?\tfitness\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease virus, produce a decline in, fitness) -> fitness (2148ms)\nWhat is foot and mouth disease?\tftli\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (rinderpest and foot and mouth disease, will be created in, ftli) -> ftli (2151ms)\nWhat is foot and mouth disease?\tWarwickshire\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, has been discovered in, Warwickshire) -> Warwickshire (2148ms)\nWhat is foot and mouth disease?\tlate April\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth disease, began in, late April) -> late April (2150ms)\nWhat is foot and mouth disease?\tthe headlines\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was back in, the headlines) -> the headlines (2153ms)\nWhat is foot and mouth disease?\tAugust\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, were abolished in, August) -> August (2153ms)\nWhat is foot and mouth disease?\tMongolia\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, still spread easily in, Mongolia) -> Mongolia (2151ms)\nWhat is foot and mouth disease?\t27 pigs\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was found in, 27 pigs) -> 27 pigs (2152ms)\nWhat is foot and mouth disease?\tS.Korea\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, have been reported in, S.Korea) -> S.Korea (2152ms)\nWhat is foot and mouth disease?\tdairy cattle\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, are seen in, dairy cattle) -> dairy cattle (2152ms)\nWhat is foot and mouth disease?\trecent weeks\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth diseases, have been high in, recent weeks) -> recent weeks (2146ms)\nWhat is foot and mouth disease?\tmice\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease virus, induces protection in, mice) -> mice (2149ms)\nWhat is foot and mouth disease?\tEgham\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was found in, Egham) -> Egham (2151ms)\nWhat is foot and mouth disease?\tEurope\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth Disease, is a dreaded disease in, Europe) -> Europe (2152ms)\nWhat is foot and mouth disease?\tthe paralysis\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, has resulted in, the paralysis) -> the paralysis (2150ms)\nWhat is foot and mouth disease?\tCounty Louth\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was confirmed in, County Louth) -> County Louth (2154ms)\nWhat is foot and mouth disease?\tsubsequent results\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, thus reflected in, subsequent results) -> subsequent results (2151ms)\nWhat is foot and mouth disease?\tthe domestic market\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, occurred in, the domestic market) -> the domestic market (2146ms)\nWhat is foot and mouth disease?\tChina\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth disease, are continuing to rise in, China) -> China (2153ms)\nWhat is foot and mouth disease?\tFrance\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was found in, France) -> France (2149ms)\nWhat is foot and mouth disease?\tAustralia\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-And-Mouth Disease, ever become established in, Australia) -> Australia (2151ms)\nWhat is foot and mouth disease?\tlivestock\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, produces immunity in, livestock) -> livestock (2153ms)\nWhat is foot and mouth disease?\tTopical Terms Concept Scheme\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease--Epidemiology, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (2154ms)\nWhat is foot and mouth disease?\tthe middle\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (The Foot and Mouth Disease outbreak, occurred in, the middle) -> the middle (2150ms)\nWhat is foot and mouth disease?\tthe Asian country\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, has broken out in, the Asian country) -> the Asian country (2152ms)\nWhat is foot and mouth disease?\t1929\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease, struck the United States in, 1929) -> 1929 (2154ms)\nWhat is foot and mouth disease?\tthe market\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, is being sold in, the market) -> the market (2153ms)\nWhat is foot and mouth disease?\tthe animal\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, would be in, the animal) -> the animal (2151ms)\nWhat is foot and mouth disease?\tWanborough\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth Disease, has been confirmed in, Wanborough) -> Wanborough (2150ms)\nWhat is foot and mouth disease?\tthe present study\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-Mouth disease, were found in, the present study) -> the present study (2148ms)\nWhat is foot and mouth disease?\tMexico\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth disease, broke out in, Mexico) -> Mexico (2151ms)\nWhat is foot and mouth disease?\t34 countries\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease, has been diagnosed in, 34 countries) -> 34 countries (2146ms)\nWhat is foot and mouth disease?\t2001\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, may have reached England in, 2001) -> 2001 (2152ms)\nWhat is foot and mouth disease?\trural areas\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth disease, is causing in, rural areas) -> rural areas (2152ms)\nWhat is foot and mouth disease?\tstatus\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, was downgraded in, status) -> status (2153ms)\nWhat is foot and mouth disease?\tthe islands\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and mouth disease, is reputedly endemic in, the islands) -> the islands (2151ms)\nWhat is foot and mouth disease?\ta child\t-0.444444444444\tWhat is foot and mouth disease? -> $x: ($x, get, foot and mouth disease) -> (a child, get, hand , foot and mouth disease) -> a child (2153ms)\nWhat is foot and mouth disease?\tJanuary 2006\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, will be stopped in, January 2006) -> January 2006 (2148ms)\nWhat is foot and mouth disease?\tinfants\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth disease, occur in, infants) -> infants (2152ms)\nWhat is foot and mouth disease?\tIndia\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and mouth disease, is endemic in, India) -> India (2151ms)\nWhat is foot and mouth disease?\tcountries\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, was compulsory than in, countries) -> countries (2146ms)\nWhat is foot and mouth disease?\tJapan\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, occurred in, Japan) -> Japan (2153ms)\nWhat is foot and mouth disease?\tthe Communist country\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, had broken out in, the Communist country) -> the Communist country (2150ms)\nWhat is foot and mouth disease?\tEgypt\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease, spreads in, Egypt) -> Egypt (2154ms)\nWhat is foot and mouth disease?\tthe UK.\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (The foot and mouth disease, is back in, the UK.) -> the UK. (2151ms)\nWhat is foot and mouth disease?\tthe U.S including Alabama\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth disease, is in, the U.S including Alabama) -> the U.S including Alabama (2151ms)\nWhat is foot and mouth disease?\tcattle\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth Disease, confirmed in, cattle) -> cattle (2152ms)\nWhat is foot and mouth disease?\tLittle Emme\t-0.444444444444\tWhat is foot and mouth disease? -> $x: ($x, get, foot and mouth disease) -> (Little Emme, got, hand foot and mouth disease) -> Little Emme (2146ms)\nWhat is foot and mouth disease?\tthe latest series\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, broke out in, the latest series) -> the latest series (2153ms)\nWhat is foot and mouth disease?\ta herd\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, was discovered in, a herd) -> a herd (2153ms)\nWhat is foot and mouth disease?\thealthy adults\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Hand , foot and mouth disease, is rare in, healthy adults) -> healthy adults (2148ms)\nWhat is foot and mouth disease?\t2003/2004\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease, was much more widespread in, 2003/2004) -> 2003/2004 (2151ms)\nWhat is foot and mouth disease?\tMozambique\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, has been reported in, Mozambique) -> Mozambique (2146ms)\nWhat is foot and mouth disease?\tLos Angeles\t-0.444444444444\tWhat is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, erupted in, Los Angeles) -> Los Angeles (2151ms)\nWhat is foot and mouth disease?\tthe facility\t-0.444444444445\tWhat is foot and mouth disease? -> $x: ($x, involve, foot and mouth disease) -> (the facility, involves highly, contagious foot-and-mouth disease) -> the facility (2154ms)\nWhat is foot and mouth disease?\tthe Government\t-0.666666666667\tWhat is foot and mouth disease? -> $x: ($x, contain, foot and mouth disease) -> (the Government, contain, the disastrous foot and mouth disease) -> the Government (2154ms)\nWhat is foot and mouth disease?\tToo many people\t-0.777777777778\tWhat is foot and mouth disease? -> $x: ($x, foot, mouth disease) -> (Too many people, have foot in, mouth disease) -> Too many people (2154ms)\nWhat is foot and mouth disease?\tBPD\t-0.777777777778\tWhat is foot and mouth disease? -> $x: ($x, foot, mouth disease) -> (BPD, has foot in, mouth disease) -> BPD (2154ms)\nWhat is foot and mouth disease?\tKnapp\t-0.777777777778\tWhat is foot and mouth disease? -> $x: ($x, foot, mouth disease) -> (Knapp, must have foot in, mouth disease) -> Knapp (2154ms)\nWhat has been found to kill it?\teating\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (eating, have been found to have little effect on, prey killing) -> eating (1292ms)\nWhat has been found to kill it?\ta priest\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (a priest, had just been found guilty of, the killing) -> a priest (1293ms)\nWhat has been found to kill it?\tNine MOVE members\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (Nine MOVE members, had been found guilty for, the killing) -> Nine MOVE members (693ms)\nWhat has been found to kill it?\tno clear evidence\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (no clear evidence, has been found for, a 'mass-killing effect) -> no clear evidence (1238ms)\nWhat has been found to kill it?\tThieves\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find to, kill) -> (Thieves, was found to have, a 99 % kill rate) -> Thieves (1292ms)\nWhat has been found to kill it?\tthe inquest jury\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find to, kill) -> (the inquest jury, found there to have been, unlawful killing) -> the inquest jury (1237ms)\nWhat has been found to kill it?\tNone\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (None, has ever been found for, the Killing Curse) -> None (1292ms)\nWhat has been found to kill it?\tMakubela\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (Makubela, had been found with, an adult impala ram kill) -> Makubela (692ms)\nWhat has been found to kill it?\tThieves oil\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (Thieves oil, was found to have, a 99.96 % percent kill rate) -> Thieves oil (1237ms)\nWhat has been found to kill it?\tThe virus\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (The virus, has been found in, a killed wild duck) -> The virus (1238ms)\nWhat has been found to kill it?\tBlend\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find to, kill) -> (Blend, was found to have, a 99.6 percent kill rate) -> Blend (1292ms)\nWhat has been found to kill it?\tfew Al Qaeda\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (few Al Qaeda, had been found though, the killing) -> few Al Qaeda (693ms)\nWhat has been found to kill it?\t2011 Readers\t0.555555555556\tWhat has been found to kill it? -> $x: ($x, have be find, kill) -> (2011 Readers, may have been surprised to find, that Killing) -> 2011 Readers (1292ms)\nWhat has been found to kill it?\tancient camels\t0.44444444444500003\tWhat has been found to kill it? -> $x: ($x, have be find, camel) -> (ancient camels, have been found in, Camel) -> ancient camels (1292ms)\nWhat has been found to kill it?\tthe family\t0.333333333334\tWhat has been found to kill it? -> $x: ($x, have be find to, lead poisoning) -> (the family, has been found to have, lead poisoning) -> the family (1452ms)\nWhat has been found to kill it?\tnearby villages\t0.333333333334\tWhat has been found to kill it? -> $x: ($x, have be find, lead poisoning) -> (nearby villages, were found to have, lead poisoning) -> nearby villages (1452ms)\nWhat has been found to kill it?\tthe population\t0.333333333334\tWhat has been found to kill it? -> $x: ($x, have be find to, lead poisoning) -> (the population, have been found to have, lead poisoning) -> the population (1452ms)\nWhat has been found to kill it?\ta child\t0.333333333334\tWhat has been found to kill it? -> $x: ($x, have be find, lead poisoning) -> (a child, was found to have, lead poisoning) -> a child (1452ms)\nWhat has been found to kill it?\tStevia\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Stevia, have been found around, the world) -> Stevia (1456ms)\nWhat has been found to kill it?\tsubmerged ruins\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (submerged ruins, have been found all over, the world) -> submerged ruins (1456ms)\nWhat has been found to kill it?\tsimilar ceremonies\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (similar ceremonies, have been found around, the world) -> similar ceremonies (1453ms)\nWhat has been found to kill it?\tNo evidence\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (No evidence, has been found in, the new world) -> No evidence (1455ms)\nWhat has been found to kill it?\tcourse\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (course, has been found throughout, the world) -> course (1452ms)\nWhat has been found to kill it?\tDead Zones\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Dead Zones, are have been found in, the world) -> Dead Zones (1457ms)\nWhat has been found to kill it?\tGants\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Gants, have been found all over, the world) -> Gants (1453ms)\nWhat has been found to kill it?\tLY brand series products\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (LY brand series products, have been found all over, the world) -> LY brand series products (1455ms)\nWhat has been found to kill it?\tA second race of dwarves\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (A second race of dwarves, have been found in, the Hollow World) -> A second race of dwarves (1453ms)\nWhat has been found to kill it?\tLink\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, titanium) -> (Link, had been sent to find, some titanium) -> Link (1452ms)\nWhat has been found to kill it?\tNASA?s Kepler Mission\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (NASA?s Kepler Mission, has been finding, new worlds) -> NASA?s Kepler Mission (1452ms)\nWhat has been found to kill it?\tmineral\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (mineral, could have been found elsewhere on, world) -> mineral (1456ms)\nWhat has been found to kill it?\tthe largest oil well\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (the largest oil well, had ever been found in, the world) -> the largest oil well (1458ms)\nWhat has been found to kill it?\tmummies\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (mummies, have been found all over, the world) -> mummies (1458ms)\nWhat has been found to kill it?\tEven older settlements\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Even older settlements, have been found around, the world) -> Even older settlements (1457ms)\nWhat has been found to kill it?\tFossils\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Fossils, have been found all over, the world) -> Fossils (1455ms)\nWhat has been found to kill it?\tthe burial\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (the burial, has been found all over, the world) -> the burial (1453ms)\nWhat has been found to kill it?\tdryness\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (dryness, have been found all over, the world) -> dryness (1453ms)\nWhat has been found to kill it?\tthe giant fungi\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (the giant fungi, have been found all over, the world) -> the giant fungi (1456ms)\nWhat has been found to kill it?\tDinosaur fossils\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Dinosaur fossils, have been found, all over the world) -> Dinosaur fossils (1457ms)\nWhat has been found to kill it?\tXDR-TB\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (XDR-TB, have been found throughout, the world) -> XDR-TB (1458ms)\nWhat has been found to kill it?\tA London teen\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (A London teen, has been found to have, the world) -> A London teen (1458ms)\nWhat has been found to kill it?\tTattooed mummies\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Tattooed mummies, have been found all over, the world) -> Tattooed mummies (1455ms)\nWhat has been found to kill it?\tAround 35 paintings\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Around 35 paintings, have been found in, the World Heritage area) -> Around 35 paintings (1456ms)\nWhat has been found to kill it?\tearlier sites\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (earlier sites, have been found around, the world) -> earlier sites (1457ms)\nWhat has been found to kill it?\tsystems suppliers\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (systems suppliers, have been finding around, the world) -> systems suppliers (1452ms)\nWhat has been found to kill it?\tRhodolith beds\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Rhodolith beds, have been found throughout, the world) -> Rhodolith beds (1458ms)\nWhat has been found to kill it?\tReserves\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Reserves, have also been found around, the world) -> Reserves (1452ms)\nWhat has been found to kill it?\thealing techniques\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (healing techniques, have been found over, the world) -> healing techniques (1455ms)\nWhat has been found to kill it?\tThe following records\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (The following records, have been found for, world) -> The following records (1457ms)\nWhat has been found to kill it?\tthe internet obsolete parts\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (the internet obsolete parts, have been found all over, the world) -> the internet obsolete parts (1458ms)\nWhat has been found to kill it?\tancient archery\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (ancient archery, has been found throughout, the world) -> ancient archery (1456ms)\nWhat has been found to kill it?\tAutism\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Autism, has been found throughout, the world) -> Autism (1458ms)\nWhat has been found to kill it?\ta new species\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (a new species, has been found in, the world) -> a new species (1455ms)\nWhat has been found to kill it?\tPCBs\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (PCBs, have been found throughout, the world) -> PCBs (1458ms)\nWhat has been found to kill it?\tHomo erectus\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Homo erectus, has been found throughout, the world) -> Homo erectus (1456ms)\nWhat has been found to kill it?\tPaleozoic and Precambrian ages\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Paleozoic and Precambrian ages, have been found in, the world) -> Paleozoic and Precambrian ages (1457ms)\nWhat has been found to kill it?\tfour times\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (four times, has been found throughout, the world) -> four times (1453ms)\nWhat has been found to kill it?\tlife\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (life, has been found on, another world) -> life (1453ms)\nWhat has been found to kill it?\tlabyrinths\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (labyrinths, have been found, all over the world) -> labyrinths (1457ms)\nWhat has been found to kill it?\tlow birth weight\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (low birth weight, have been found around, the world) -> low birth weight (1457ms)\nWhat has been found to kill it?\tThe Urban Dragon\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (The Urban Dragon, has been found all through, the world) -> The Urban Dragon (1453ms)\nWhat has been found to kill it?\tLabyrinths\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Labyrinths, have been found throughout, the world) -> Labyrinths (1457ms)\nWhat has been found to kill it?\tgoods\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (goods, have been found all over, the world) -> goods (1455ms)\nWhat has been found to kill it?\tLindane\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Lindane, has been found throughout, the world) -> Lindane (1456ms)\nWhat has been found to kill it?\texamples\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (examples, have been found all over, the world) -> examples (1458ms)\nWhat has been found to kill it?\tIncense artifacts\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Incense artifacts, have been found throughout, the world) -> Incense artifacts (1455ms)\nWhat has been found to kill it?\tArthropleura\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Arthropleura, have been found around, the world) -> Arthropleura (1456ms)\nWhat has been found to kill it?\tMummies\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Mummies, have been found all over, the world) -> Mummies (1458ms)\nWhat has been found to kill it?\tno true parents\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (no true parents, have been found in, the world) -> no true parents (1458ms)\nWhat has been found to kill it?\tLRPs\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (LRPs, have been found effective around, the world) -> LRPs (1452ms)\nWhat has been found to kill it?\tAniline\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, volatile) -> (Aniline, has also been found as, a volatile component) -> Aniline (1453ms)\nWhat has been found to kill it?\tvarious archaeological sites\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (various archaeological sites, have been found around, the world) -> various archaeological sites (1453ms)\nWhat has been found to kill it?\tdinosaur fossils\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (dinosaur fossils, have been found around, the world) -> dinosaur fossils (1456ms)\nWhat has been found to kill it?\tagriculture\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (agriculture, have been found elsewhere in, the world) -> agriculture (1453ms)\nWhat has been found to kill it?\ta type\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (a type, has been found throughout, the world) -> a type (1458ms)\nWhat has been found to kill it?\tthe dinosaurs\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (the dinosaurs, have been found all over, the world) -> the dinosaurs (1457ms)\nWhat has been found to kill it?\tCave paintings\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Cave paintings, have been found, all over the world) -> Cave paintings (1457ms)\nWhat has been found to kill it?\tOne , called Nephrite\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (One , called Nephrite, has been found throughout, the world) -> One , called Nephrite (1453ms)\nWhat has been found to kill it?\tyears\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (years, has been found throughout, the world) -> years (1453ms)\nWhat has been found to kill it?\ttrees\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (trees, have been found all over, the world) -> trees (1452ms)\nWhat has been found to kill it?\tdinosaurs\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (dinosaurs, had been found everywhere around, the world) -> dinosaurs (1452ms)\nWhat has been found to kill it?\tgroundwater areas\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (groundwater areas, have been found all over, the world) -> groundwater areas (1456ms)\nWhat has been found to kill it?\tsimilar figurines\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (similar figurines, have been found all over, the world) -> similar figurines (1455ms)\nWhat has been found to kill it?\tartifacts\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (artifacts, have been found throughout, the world) -> artifacts (1458ms)\nWhat has been found to kill it?\tthe diamonds\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (the diamonds, have been found in, the world) -> the diamonds (1453ms)\nWhat has been found to kill it?\tsign languages\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (sign languages, have been found around, the world) -> sign languages (1453ms)\nWhat has been found to kill it?\tprofit\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (profit, have been found throughout, the world) -> profit (1458ms)\nWhat has been found to kill it?\tonly four such items\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (only four such items, have been found in, the world) -> only four such items (1456ms)\nWhat has been found to kill it?\tCAH\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (CAH, have been found all over, the world) -> CAH (1458ms)\nWhat has been found to kill it?\tcommunication\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (communication, have been found in, the world) -> communication (1458ms)\nWhat has been found to kill it?\tMegalodon\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Megalodon, have been found all over, the world) -> Megalodon (1455ms)\nWhat has been found to kill it?\ta new virus\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (a new virus, has been found in, the world) -> a new virus (1455ms)\nWhat has been found to kill it?\tpurer deposits\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (purer deposits, have been found in, the world) -> purer deposits (1457ms)\nWhat has been found to kill it?\tfossils\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (fossils, have been found around, the world) -> fossils (1457ms)\nWhat has been found to kill it?\tThe new strain\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (The new strain, has been found throughout, the world) -> The new strain (1458ms)\nWhat has been found to kill it?\tbird flu\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (bird flu, have been found throughout, the world) -> bird flu (1456ms)\nWhat has been found to kill it?\tIguanodon fossils\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Iguanodon fossils, have been found around, the world) -> Iguanodon fossils (1455ms)\nWhat has been found to kill it?\tAtlantis\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Atlantis, has been found all over, the world) -> Atlantis (1455ms)\nWhat has been found to kill it?\tthe assembled tPNA\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (the assembled tPNA, could have been found in, a world) -> the assembled tPNA (1457ms)\nWhat has been found to kill it?\tSamples of the giant fungi\t-0.0\tWhat has been found to kill it? -> $x: ($x, have be find, world) -> (Samples of the giant fungi, have been found, all over the world) -> Samples of the giant fungi (1457ms)\nWhat has been found to kill it?\ta way\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (a way, has also found a way to be, a world class athlete) -> a way (1459ms)\nWhat has been found to kill it?\tthe other guy\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (the other guy, has been hard to find in, the liberal world) -> the other guy (1459ms)\nWhat has been found to kill it?\tfuels\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (fuels, has been found to be, the world?s worst air pollutant) -> fuels (1459ms)\nWhat has been found to kill it?\tthe Black Galaxy\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (the Black Galaxy, has been sent to find, the World Tree) -> the Black Galaxy (1459ms)\nWhat has been found to kill it?\tnone\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (none, have been found to exist in, the New World) -> none (1459ms)\nWhat has been found to kill it?\ta cotton program\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (a cotton program, has been found to violate, world trading rules) -> a cotton program (1459ms)\nWhat has been found to kill it?\thuman beings\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (human beings, have been finding new ways to look at, the world) -> human beings (1459ms)\nWhat has been found to kill it?\tColumbus\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (Columbus, may have been the first to find, the new world) -> Columbus (1459ms)\nWhat has been found to kill it?\ta priori\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (a priori, necessarily will have to be found in, the world) -> a priori (1459ms)\nWhat has been found to kill it?\tthe bricks\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (the bricks, were found to have, Old World inscriptions) -> the bricks (1459ms)\nWhat has been found to kill it?\tQuinn\t-1.33333333333\tWhat has been found to kill it? -> $x: ($x, have be find to, world) -> (Quinn, has still been unable to find, his brother?s world) -> Quinn (1459ms)\nWhere is NATO headquartered?\tSarajevo\t0.77777777778\tWhere is NATO headquartered? -> $x: (nato, be headquarters in, $x) -> (NATO, is also maintaining a military headquarters in, Sarajevo) -> Sarajevo (563ms)\nWhere is NATO headquartered?\tBrussels\t-0.22222222222100002\tWhere is NATO headquartered? -> $x: (nato, be headquarter in, $x) -> (NATO, is headquartered in, Brussels) -> Brussels (563ms)\nWhere is NATO headquartered?\tBelgium\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (Belgium, hosts the headquarters of, NATO) -> Belgium (577ms)\nWhere is NATO headquartered?\tthe city\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (the city, was the headquarters of, NATO) -> the city (563ms)\nWhere is NATO headquartered?\t1971 Lisbon\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (1971 Lisbon, became headquarters for, NATO) -> 1971 Lisbon (563ms)\nWhere is NATO headquartered?\tGAME OVER Belgium\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (GAME OVER Belgium, houses the political headquarters of, NATO) -> GAME OVER Belgium (563ms)\nWhere is NATO headquartered?\tMalta\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (Malta, was the headquarters of, Southern Nato Command) -> Malta (577ms)\nWhere is NATO headquartered?\tThe capital\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (The capital, is the headquarters of, NATO) -> The capital (563ms)\nWhere is NATO headquartered?\tthe war\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (the war, hosts the headquarters of, NATO) -> the war (563ms)\nWhere is NATO headquartered?\tthe lively city\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (the lively city, is headquarters for, both NATO) -> the lively city (563ms)\nWhere is NATO headquartered?\tPortugal\t-1.111111111108\tWhere is NATO headquartered? -> $x: ($x, headquarters, nato) -> (Portugal, is the operational headquarters for, NATO?s work) -> Portugal (563ms)\nWhere is NATO headquartered?\tFrance\t-1.666666666658\tWhere is NATO headquartered? -> $x: (nato, headquarters, $x) -> (Nato, had had its headquarters in, France) -> France (577ms)\nHow long does the Madness last?\tSucker Punch\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (Sucker Punch, is nothing short of, pure visual madness) -> Sucker Punch (823ms)\nHow long does the Madness last?\tscience and technology\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, effect, madness) -> (science and technology, amplify the effect of, the madness) -> science and technology (823ms)\nHow long does the Madness last?\t14 people\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, effect, madness) -> (14 people, were seriously effected by, this madness) -> 14 people (823ms)\nHow long does the Madness last?\tDamian\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, effect, madness) -> (Damian, had a little effect on, the madness) -> Damian (823ms)\nHow long does the Madness last?\tEmployers\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, effect, madness) -> (Employers, have been effected by, the Reafer Madness Movement) -> Employers (823ms)\nHow long does the Madness last?\tthe past week\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (the past week, are nothing short of, total madness) -> the past week (823ms)\nHow long does the Madness last?\tthe Moon\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, effect, madness) -> (the Moon, therefore had some effect on, madness) -> the Moon (823ms)\nHow long does the Madness last?\tproject\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (project, is nothing short of, absolute madness) -> project (823ms)\nHow long does the Madness last?\treal estate transactions\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (real estate transactions, are nothing short of, complete madness) -> real estate transactions (823ms)\nHow long does the Madness last?\tthe Yemen\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (the Yemen, is one step short of, madness) -> the Yemen (823ms)\nHow long does the Madness last?\tthe present age\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (the present age, is nothing short of, suicidal madness) -> the present age (823ms)\nHow long does the Madness last?\tan unhealthy environment\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (an unhealthy environment, is little short of, madness) -> an unhealthy environment (823ms)\nHow long does the Madness last?\tindustrialism\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, effect, madness) -> (industrialism, has multiplied the effects of, the madness) -> industrialism (823ms)\nHow long does the Madness last?\tsuch conditions\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (such conditions, was little short of, madness) -> such conditions (823ms)\nHow long does the Madness last?\ttheories\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (theories, are just short of, madness) -> theories (823ms)\nHow long does the Madness last?\tvaluable lives\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (valuable lives, was nothing short of, madness) -> valuable lives (823ms)\nHow long does the Madness last?\tthe youngsters\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (the youngsters, were cut short during, this madness) -> the youngsters (823ms)\nHow long does the Madness last?\tstake\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (stake, is little short of, madness) -> stake (823ms)\nHow long does the Madness last?\tthe telescopes\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (the telescopes, is nothing short of, madness) -> the telescopes (823ms)\nHow long does the Madness last?\tsubtle phaser type\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, effect, madness) -> (subtle phaser type, effects to, extreme FSU style madness) -> subtle phaser type (823ms)\nHow long does the Madness last?\tLife\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (Life, is just too short for, this madness) -> Life (823ms)\nHow long does the Madness last?\tEast Jerusalem\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (East Jerusalem, is nothing short of, ?madness ?) -> East Jerusalem (823ms)\nHow long does the Madness last?\tmultiple times\t-0.111111111111\tHow long does the Madness last? -> $x: ($x, be short, madness) -> (multiple times, was nothing short of, madness) -> multiple times (823ms)\nWhat university did Thomas Jefferson found?\tlaw\t-0.222222222222\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied, law) -> law (728ms)\nWhat university did Thomas Jefferson found?\tLatin and Greek\t-0.222222222222\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied, Latin and Greek) -> Latin and Greek (767ms)\nWhat university did Thomas Jefferson found?\tthe Koran\t-0.222222222222\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied, the Koran) -> the Koran (728ms)\nWhat university did Thomas Jefferson found?\tPalladio\t-0.222222222222\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied, Palladio) -> Palladio (728ms)\nWhat university did Thomas Jefferson found?\t15 hours\t-0.222222222222\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, frequently studied, 15 hours) -> 15 hours (728ms)\nWhat university did Thomas Jefferson found?\ta tutor\t-0.222222222222\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied Latin and Greek under, a tutor) -> a tutor (728ms)\nWhat university did Thomas Jefferson found?\tPennsylvania\t-0.222222222222\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson McCamant, studied medicine in, Pennsylvania) -> Pennsylvania (728ms)\nWhat university did Thomas Jefferson found?\tfossils\t-0.222222222222\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Benjamin Franklin and Thomas Jefferson, also studied, fossils) -> fossils (728ms)\nWhat university did Thomas Jefferson found?\tseven words\t-0.333333333334\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, best, $x) -> (' Thomas Jefferson, is best remembered for, seven words) -> seven words (767ms)\nWhat university did Thomas Jefferson found?\tthe philosophe ideal\t-0.333333333334\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, best, $x) -> (Thomas Jefferson, may have best embodied, the philosophe ideal) -> the philosophe ideal (767ms)\nWhat university did Thomas Jefferson found?\tHamilton\t-0.333333333334\tWhat university did Thomas Jefferson found? -> $x: (thomas jefferson, best, $x) -> (Former President Thomas Jefferson, had been bested by, Hamilton) -> Hamilton (767ms)\nWhat university did Thomas Jefferson found?\tthe way scholars\t-0.888888888886\tWhat university did Thomas Jefferson found? -> $x: ($x, study, thomas jefferson) -> (the way scholars, study the life of, Thomas Jefferson) -> the way scholars (806ms)\nWhat university did Thomas Jefferson found?\tJames Monroe\t-0.888888888886\tWhat university did Thomas Jefferson found? -> $x: ($x, study, thomas jefferson) -> (James Monroe, studied law under, Thomas Jefferson) -> James Monroe (806ms)\nWhat university did Thomas Jefferson found?\tMonroe\t-0.888888888886\tWhat university did Thomas Jefferson found? -> $x: ($x, study, thomas jefferson) -> (Monroe, studied law under, Thomas Jefferson) -> Monroe (806ms)\nWhat university did Thomas Jefferson found?\tthe same ones\t-0.888888888886\tWhat university did Thomas Jefferson found? -> $x: ($x, study, thomas jefferson) -> (the same ones, studied, Thomas Jefferson and James Madison) -> the same ones (806ms)\nWhere is the LPGA headquartered?\tDaytona Beach\t-0.333333333333\tWhere is the LPGA headquartered? -> $x: (lpga, be headquarter in, $x) -> (The LPGA, is headquartered in, Daytona Beach) -> Daytona Beach (485ms)\nWhere is the LPGA headquartered?\t1989\t-1.44444444445\tWhere is the LPGA headquartered? -> $x: (lpga, headquarters, $x) -> (The LPGA, moved its headquarters here in, 1989) -> 1989 (485ms)\nWhat plays did Shakespeare write?\tRomeo and Juliet\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, Romeo and Juliet) -> Romeo and Juliet (2189ms)\nWhat plays did Shakespeare write?\tWilliam Shakespeare\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare Cymbeline, is a play by, William Shakespeare) -> William Shakespeare (2417ms)\nWhat plays did Shakespeare write?\tMacbeth\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, Macbeth) -> Macbeth (2417ms)\nWhat plays did Shakespeare write?\tEquivocation\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Plays Appears In, Equivocation) -> Equivocation (1339ms)\nWhat plays did Shakespeare write?\tthe painter\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare Sonnet 24 Mine eye hath, played, the painter) -> the painter (2189ms)\nWhat plays did Shakespeare write?\tEngland\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, wrote his plays as, England) -> England (2417ms)\nWhat plays did Shakespeare write?\tHamlet\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, play, Hamlet) -> Hamlet (2460ms)\nWhat plays did Shakespeare write?\tTitus Andronicus\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, Titus Andronicus) -> Titus Andronicus (1339ms)\nWhat plays did Shakespeare write?\tCricket\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, sport, $x) -> (William Shakespeare, Sport, Cricket) -> Cricket (1389ms)\nWhat plays did Shakespeare write?\tThe Taming of the Shrew\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, The Taming of the Shrew) -> The Taming of the Shrew (1339ms)\nWhat plays did Shakespeare write?\tKing Henry IV\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (the William Shakespeare, play, King Henry IV) -> King Henry IV (3377ms)\nWhat plays did Shakespeare write?\t154 sonnets\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, played, 154 sonnets) -> 154 sonnets (2417ms)\nWhat plays did Shakespeare write?\tThe Winter?s Tale\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s classic, plays, The Winter?s Tale) -> The Winter?s Tale (1339ms)\nWhat plays did Shakespeare write?\tDean Lennox Kelly AND\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (] William Shakespeare, played by, Dean Lennox Kelly AND) -> Dean Lennox Kelly AND (2417ms)\nWhat plays did Shakespeare write?\tAntony and Cleopatra\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, Antony and Cleopatra) -> Antony and Cleopatra (2417ms)\nWhat plays did Shakespeare write?\tA Midsummer Night's Dream\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare's A Midsummer Night's Dream, Play, A Midsummer Night's Dream) -> A Midsummer Night's Dream (2460ms)\nWhat plays did Shakespeare write?\trepertory\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, plays in, repertory) -> repertory (1389ms)\nWhat plays did Shakespeare write?\tthe most lines\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeares`, plays has, the most lines) -> the most lines (1389ms)\nWhat plays did Shakespeare write?\tJoseph Fiennes\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, played by, Joseph Fiennes) -> Joseph Fiennes (1389ms)\nWhat plays did Shakespeare write?\t37 different languages\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s, plays in, 37 different languages) -> 37 different languages (2460ms)\nWhat plays did Shakespeare write?\ta stage\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare Introduction, were played on, a stage) -> a stage (2417ms)\nWhat plays did Shakespeare write?\tThe Tempest\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeares, play, The Tempest) -> The Tempest (1339ms)\nWhat plays did Shakespeare write?\tRomeo & Juliet\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s, play, Romeo & Juliet) -> Romeo & Juliet (1389ms)\nWhat plays did Shakespeare write?\tthe ghost\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, did play the role of, the ghost) -> the ghost (2460ms)\nWhat plays did Shakespeare write?\tHalfback\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, position, $x) -> (William Shakespeare, Position(s), Halfback) -> Halfback (2189ms)\nWhat plays did Shakespeare write?\tThe Comedy of Errors\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, The Comedy of Errors) -> The Comedy of Errors (1389ms)\nWhat plays did Shakespeare write?\tthe PILOT library catalog\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (\" William Shakespeare, plays in, the PILOT library catalog) -> the PILOT library catalog (1389ms)\nWhat plays did Shakespeare write?\tKing of Shadows\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Plays Appears In, King of Shadows) -> King of Shadows (1339ms)\nWhat plays did Shakespeare write?\ta Jew\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, wrote a very different play about, a Jew) -> a Jew (3378ms)\nWhat plays did Shakespeare write?\tthe game\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, install to play, the game) -> the game (2460ms)\nWhat plays did Shakespeare write?\ttelevision\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play for, $x) -> (William Shakespeare?s, plays for, television) -> television (2460ms)\nWhat plays did Shakespeare write?\tKing Lear\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s, play, King Lear) -> King Lear (2460ms)\nWhat plays did Shakespeare write?\tGray\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, played in, Gray) -> Gray (2189ms)\nWhat plays did Shakespeare write?\tthe play\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (the William Shakespeare, play, the play) -> the play (2189ms)\nWhat plays did Shakespeare write?\ttranscends\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s, plays, transcends) -> transcends (1339ms)\nWhat plays did Shakespeare write?\tThe Two Gentlemen of Verona\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, The Two Gentlemen of Verona) -> The Two Gentlemen of Verona (2189ms)\nWhat plays did Shakespeare write?\tviolin\t0.999999999997\tWhat plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeares  books, playing, violin) -> violin (2460ms)\nWhat plays did Shakespeare write?\tWilliam T. Spears\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (William T. Spears, was a play on, William Shakespeare) -> William T. Spears (5256ms)\nWhat plays did Shakespeare write?\tBrain Murphy\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Brain Murphy, played, William Shakespeare) -> Brain Murphy (6645ms)\nWhat plays did Shakespeare write?\tJohn Logan\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (John Logan, based on the play by, William Shakespeare) -> John Logan (5199ms)\nWhat plays did Shakespeare write?\tVenice ?\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Venice ?, is a play written by, William Shakespeare) -> Venice ? (5199ms)\nWhat plays did Shakespeare write?\tShakespeare?s\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Shakespeare?s, plays, William Shakespeare) -> Shakespeare?s (3377ms)\nWhat plays did Shakespeare write?\tJuliet\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Juliet, is a famous play by, William Shakespeare) -> Juliet (5256ms)\nWhat plays did Shakespeare write?\tWilliam Shakespeare Cymbeline\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (William Shakespeare Cymbeline, is a play by, William Shakespeare) -> William Shakespeare Cymbeline (6645ms)\nWhat plays did Shakespeare write?\tVenice\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Venice, is a play by, William Shakespeare) -> Venice (6645ms)\nWhat plays did Shakespeare write?\tthe fall\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (the fall, read a play by, William Shakespeare) -> the fall (4513ms)\nWhat plays did Shakespeare write?\tthe music\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (the music, then play on, \" William Shakespeare) -> the music (4513ms)\nWhat plays did Shakespeare write?\t2006 Will\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (2006 Will, played the title role of, William Shakespeare) -> 2006 Will (3650ms)\nWhat plays did Shakespeare write?\ta movie version of which\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (a movie version of which, play, William Shakespeare) -> a movie version of which (4513ms)\nWhat plays did Shakespeare write?\tHugh Laurie\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Hugh Laurie, originally played, William Shakespeare) -> Hugh Laurie (3377ms)\nWhat plays did Shakespeare write?\tGielgud\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Gielgud, first played the title role in, William Shakespeare) -> Gielgud (3650ms)\nWhat plays did Shakespeare write?\tSir Patrick\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, voice, william shakespeare) -> (Sir Patrick, voiced the role of, William Shakespeare) -> Sir Patrick (4513ms)\nWhat plays did Shakespeare write?\tThe Winters Tale\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (The Winters Tale, is a play by, William Shakespeare) -> The Winters Tale (4513ms)\nWhat plays did Shakespeare write?\tRafe Spall\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Rafe Spall, plays the part of, William Shakespeare) -> Rafe Spall (5199ms)\nWhat plays did Shakespeare write?\tThe original source\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (The original source, is the play by, William Shakespeare) -> The original source (5199ms)\nWhat plays did Shakespeare write?\tVenice ?\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Venice ?, is a well-known play written by, William Shakespeare) -> Venice ? (5199ms)\nWhat plays did Shakespeare write?\tthe Shakespeare\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (the Shakespeare, plays with, the William Shakespeare) -> the Shakespeare (5199ms)\nWhat plays did Shakespeare write?\t?The Tempest ?\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (?The Tempest ?, is the last play written by, William Shakespeare) -> ?The Tempest ? (4513ms)\nWhat plays did Shakespeare write?\tCleopatra\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Cleopatra, is a play by, William Shakespeare) -> Cleopatra (5199ms)\nWhat plays did Shakespeare write?\tthe Shrew\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (the Shrew, is an entertaining play by, William Shakespeare) -> the Shrew (3650ms)\nWhat plays did Shakespeare write?\tMeasure\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Measure, is a play by, William Shakespeare) -> Measure (3377ms)\nWhat plays did Shakespeare write?\tKenneth Branagh\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Kenneth Branagh, plays, William Shakespeare) -> Kenneth Branagh (3650ms)\nWhat plays did Shakespeare write?\tThe Tragedy\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (The Tragedy, is a play by, William Shakespeare) -> The Tragedy (3650ms)\nWhat plays did Shakespeare write?\tMacbeth ?\t0.999999999995\tWhat plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Macbeth ?, is a famous play written by, William Shakespeare) -> Macbeth ? (5256ms)\nWhat plays did Shakespeare write?\tfirst\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, first) -> first (6820ms)\nWhat plays did Shakespeare write?\tweird and wonderful name\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (some shakespeare, plays for, weird and wonderful name) -> weird and wonderful name (6865ms)\nWhat plays did Shakespeare write?\tlate\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, late) -> late (6757ms)\nWhat plays did Shakespeare write?\tproverbs\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played with, proverbs) -> proverbs (6820ms)\nWhat plays did Shakespeare write?\tNRS = 0,\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays with, NRS = 0,) -> NRS = 0, (6879ms)\nWhat plays did Shakespeare write?\tperformance\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote his plays for, performance) -> performance (6865ms)\nWhat plays did Shakespeare write?\tfolkloric convention\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, is playing with, folkloric convention) -> folkloric convention (6789ms)\nWhat plays did Shakespeare write?\ta conversation\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, begins the play with, a conversation) -> a conversation (6865ms)\nWhat plays did Shakespeare write?\tfun\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, plays for, fun) -> fun (6850ms)\nWhat plays did Shakespeare write?\tinstance doublets attitude\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays for, instance doublets attitude) -> instance doublets attitude (6865ms)\nWhat plays did Shakespeare write?\tthe time sequence\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, plays with, the time sequence) -> the time sequence (6850ms)\nWhat plays did Shakespeare write?\ttwo audiences\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote a single play for, two audiences) -> two audiences (6850ms)\nWhat plays did Shakespeare write?\tMidfielder\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Craig Shakespeare, Position(s), Midfielder) -> Midfielder (6865ms)\nWhat plays did Shakespeare write?\tthe Old Vic\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays at, the Old Vic) -> the Old Vic (6805ms)\nWhat plays did Shakespeare write?\tHamlet , Romeo & Juliet\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays including, Hamlet , Romeo & Juliet) -> Hamlet , Romeo & Juliet (6865ms)\nWhat plays did Shakespeare write?\t35 cents\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, 35 cents) -> 35 cents (6805ms)\nWhat plays did Shakespeare write?\ta Cain-and-Abel conflict\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, began the play with, a Cain-and-Abel conflict) -> a Cain-and-Abel conflict (6773ms)\nWhat plays did Shakespeare write?\tclassic texts\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays alongside, classic texts) -> classic texts (6805ms)\nWhat plays did Shakespeare write?\ta role\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, a role) -> a role (6879ms)\nWhat plays did Shakespeare write?\tbefore\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, before) -> before (6835ms)\nWhat plays did Shakespeare write?\tevery year\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, every year) -> every year (6835ms)\nWhat plays did Shakespeare write?\ta brief ,\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, opens the other play with, a brief ,) -> a brief , (6805ms)\nWhat plays did Shakespeare write?\t97 minutes\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays in, 97 minutes) -> 97 minutes (6645ms)\nWhat plays did Shakespeare write?\tiambic pentameter\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, wrote his plays in, iambic pentameter) -> iambic pentameter (6850ms)\nWhat plays did Shakespeare write?\tLord Strange\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare and Marlowe, wrote plays for, Lord Strange) -> Lord Strange (6773ms)\nWhat plays did Shakespeare write?\ta public audience\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, a public audience) -> a public audience (6789ms)\nWhat plays did Shakespeare write?\tactors\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote his plays for, actors) -> actors (6757ms)\nWhat plays did Shakespeare write?\tthe Globe Theatre\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays at, the Globe Theatre) -> the Globe Theatre (6757ms)\nWhat plays did Shakespeare write?\tthe end\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (W. Shakespeare Sometimes courage, is the quiet voice at, the end) -> the end (6645ms)\nWhat plays did Shakespeare write?\tcontent , form\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays with, content , form) -> content , form (6879ms)\nWhat plays did Shakespeare write?\tsurprise\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, surprise) -> surprise (6865ms)\nWhat plays did Shakespeare write?\ta prototype\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays with, a prototype) -> a prototype (6805ms)\nWhat plays did Shakespeare write?\ta shout\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, opens the play with, a shout) -> a shout (6865ms)\nWhat plays did Shakespeare write?\tget\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, get) -> get (6757ms)\nWhat plays did Shakespeare write?\tpatrons\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, patrons) -> patrons (6879ms)\nWhat plays did Shakespeare write?\ta year\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, a year) -> a year (6820ms)\nWhat plays did Shakespeare write?\tTwelfth Night\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, play, Twelfth Night) -> Twelfth Night (6851ms)\nWhat plays did Shakespeare write?\tthe minute\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays at, the minute) -> the minute (6773ms)\nWhat plays did Shakespeare write?\t?100\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, ?100) -> ?100 (6851ms)\nWhat plays did Shakespeare write?\tfive or six years\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (?Shakespeare, had been writing plays for, five or six years) -> five or six years (6820ms)\nWhat plays did Shakespeare write?\tthe deepest philosophy\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (Shakespeare, had voiced, the deepest philosophy) -> the deepest philosophy (6893ms)\nWhat plays did Shakespeare write?\ttour\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, tour) -> tour (6773ms)\nWhat plays did Shakespeare write?\tthe graphic medium\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays into, the graphic medium) -> the graphic medium (6850ms)\nWhat plays did Shakespeare write?\tTee Morris\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (Will Shakespeare, was voiced by, Tee Morris) -> Tee Morris (6879ms)\nWhat plays did Shakespeare write?\ta part\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, a part) -> a part (6879ms)\nWhat plays did Shakespeare write?\tthe witches\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, begins the play with, the witches) -> the witches (6865ms)\nWhat plays did Shakespeare write?\tthe most\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, gets played, the most) -> the most (6865ms)\nWhat plays did Shakespeare write?\tTimon\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays including, Timon) -> Timon (6789ms)\nWhat plays did Shakespeare write?\tstage\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, stage) -> stage (6850ms)\nWhat plays did Shakespeare write?\tpuns\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays with, puns) -> puns (6835ms)\nWhat plays did Shakespeare write?\ta growing belief\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays with, a growing belief) -> a growing belief (6757ms)\nWhat plays did Shakespeare write?\tStar Wars characters\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (famous Shakespeare, plays with, Star Wars characters) -> Star Wars characters (6879ms)\nWhat plays did Shakespeare write?\tJulius Caesar\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, play, Julius Caesar) -> Julius Caesar (6865ms)\nWhat plays did Shakespeare write?\tan accessible and colorful form\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays in, an accessible and colorful form) -> an accessible and colorful form (6645ms)\nWhat plays did Shakespeare write?\ta quick plot summary\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, would open his plays with, a quick plot summary) -> a quick plot summary (6820ms)\nWhat plays did Shakespeare write?\tChina\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, occupies an interesting position in, China) -> China (6835ms)\nWhat plays did Shakespeare write?\tOthello\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, play, Othello) -> Othello (6805ms)\nWhat plays did Shakespeare write?\tJohn Lyly\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (the Shakespeare, plays with, John Lyly) -> John Lyly (6773ms)\nWhat plays did Shakespeare write?\tKiswahili\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays into, Kiswahili) -> Kiswahili (6805ms)\nWhat plays did Shakespeare write?\tthe Aggrovators\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, also continued playing with, the Aggrovators) -> the Aggrovators (6835ms)\nWhat plays did Shakespeare write?\tfocus\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (?Shakespeare, plays, focus) -> focus (6757ms)\nWhat plays did Shakespeare write?\tCards\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, Playing, Cards) -> Cards (6865ms)\nWhat plays did Shakespeare write?\tusually\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, usually) -> usually (6865ms)\nWhat plays did Shakespeare write?\tpurchase\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (the Shakespeare, plays with, purchase) -> purchase (6645ms)\nWhat plays did Shakespeare write?\ta very important role\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, a very important role) -> a very important role (6893ms)\nWhat plays did Shakespeare write?\texamples\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (mining Shakespeare?s, plays for, examples) -> examples (6879ms)\nWhat plays did Shakespeare write?\ttheater\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, theater) -> theater (6836ms)\nWhat plays did Shakespeare write?\troles\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, roles) -> roles (6879ms)\nWhat plays did Shakespeare write?\tThe Merchant of Venice\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, play, The Merchant of Venice) -> The Merchant of Venice (6789ms)\nWhat plays did Shakespeare write?\tthe persecuted minority\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (Shakespeare, gives a voice to, the persecuted minority) -> the persecuted minority (6789ms)\nWhat plays did Shakespeare write?\ta relative\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays from, a relative) -> a relative (6820ms)\nWhat plays did Shakespeare write?\tStratford\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays at, Stratford) -> Stratford (6820ms)\nWhat plays did Shakespeare write?\t1653\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, lost play In, 1653) -> 1653 (6820ms)\nWhat plays did Shakespeare write?\tfilm\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played on, film) -> film (6820ms)\nWhat plays did Shakespeare write?\tdo\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, do) -> do (6835ms)\nWhat plays did Shakespeare write?\tNairn Golf club\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, play, Nairn Golf club) -> Nairn Golf club (6865ms)\nWhat plays did Shakespeare write?\tthe province\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays around, the province) -> the province (6820ms)\nWhat plays did Shakespeare write?\tearly\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, early) -> early (6757ms)\nWhat plays did Shakespeare write?\tthe start\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, held a unique position from, the start) -> the start (6805ms)\nWhat plays did Shakespeare write?\tthe left\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, first position your cursor to, the left) -> the left (6757ms)\nWhat plays did Shakespeare write?\ta long development\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, begins the play with, a long development) -> a long development (6805ms)\nWhat plays did Shakespeare write?\tthe outdoor stage\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, the outdoor stage) -> the outdoor stage (6850ms)\nWhat plays did Shakespeare write?\tdaft and deft originality\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, here played with, daft and deft originality) -> daft and deft originality (6836ms)\nWhat plays did Shakespeare write?\tlawyers\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (Shakespeare, once voiced a popular opinion of, lawyers) -> lawyers (6850ms)\nWhat plays did Shakespeare write?\tSetswana\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays into, Setswana) -> Setswana (6835ms)\nWhat plays did Shakespeare write?\tVaughn Kimber\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played by, Vaughn Kimber) -> Vaughn Kimber (6805ms)\nWhat plays did Shakespeare write?\tthe theatre/dvds\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays in, the theatre/dvds) -> the theatre/dvds (6789ms)\nWhat plays did Shakespeare write?\tthe idea\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, the idea) -> the idea (6893ms)\nWhat plays did Shakespeare write?\tyoung people\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, young people) -> young people (6789ms)\nWhat plays did Shakespeare write?\tthe theme\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played out, the theme) -> the theme (6789ms)\nWhat plays did Shakespeare write?\tthe Hudson\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, the Hudson) -> the Hudson (6820ms)\nWhat plays did Shakespeare write?\tthe Queen?s pleasure\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, is writing this play for, the Queen?s pleasure) -> the Queen?s pleasure (6879ms)\nWhat plays did Shakespeare write?\tcards\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, playing, cards) -> cards (6645ms)\nWhat plays did Shakespeare write?\tthe ghost of Hamlet 's father\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, the ghost of Hamlet 's father) -> the ghost of Hamlet 's father (6879ms)\nWhat plays did Shakespeare write?\tdecades\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, decades) -> decades (6789ms)\nWhat plays did Shakespeare write?\tabout 400 years\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote his plays for, about 400 years) -> about 400 years (6835ms)\nWhat plays did Shakespeare write?\tinstances\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays abound with, instances) -> instances (6773ms)\nWhat plays did Shakespeare write?\ttheatres\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays from, theatres) -> theatres (6805ms)\nWhat plays did Shakespeare write?\tenthusiasm\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, wrote plays with, enthusiasm) -> enthusiasm (6865ms)\nWhat plays did Shakespeare write?\tthe first Tuesday\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, the first Tuesday) -> the first Tuesday (6757ms)\nWhat plays did Shakespeare write?\tstudents\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, students) -> students (6789ms)\nWhat plays did Shakespeare write?\tcompany\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, playing, company) -> company (6835ms)\nWhat plays did Shakespeare write?\tPenguin Books\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, Penguin Books) -> Penguin Books (6820ms)\nWhat plays did Shakespeare write?\treferences\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays abound with, references) -> references (6773ms)\nWhat plays did Shakespeare write?\tworld literature\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, occupies a position unique in, world literature) -> world literature (6805ms)\nWhat plays did Shakespeare write?\tthe mass public\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote plays for, the mass public) -> the mass public (6820ms)\nWhat plays did Shakespeare write?\tOlivia\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, also played, Olivia) -> Olivia (6789ms)\nWhat plays did Shakespeare write?\tmodern dress\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played in, modern dress) -> modern dress (6820ms)\nWhat plays did Shakespeare write?\tthe Ghost\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, the Ghost) -> the Ghost (6820ms)\nWhat plays did Shakespeare write?\toperas\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays into, operas) -> operas (6773ms)\nWhat plays did Shakespeare write?\tthe word\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays upon, the word) -> the word (6805ms)\nWhat plays did Shakespeare write?\ta single day\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays in, a single day) -> a single day (6820ms)\nWhat plays did Shakespeare write?\t?The Tempest?\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays including, ?The Tempest?) -> ?The Tempest? (6789ms)\nWhat plays did Shakespeare write?\tthe goal\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays with, the goal) -> the goal (6879ms)\nWhat plays did Shakespeare write?\twords\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, loves to play with, words) -> words (6850ms)\nWhat plays did Shakespeare write?\tFray Lorenzo\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, Fray Lorenzo) -> Fray Lorenzo (6879ms)\nWhat plays did Shakespeare write?\tan autochthonous origin\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, occupies the position of, an autochthonous origin) -> an autochthonous origin (6645ms)\nWhat plays did Shakespeare write?\taround\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, around) -> around (6757ms)\nWhat plays did Shakespeare write?\tplays\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays within, plays) -> plays (6645ms)\nWhat plays did Shakespeare write?\thigh school\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays throughout, high school) -> high school (6789ms)\nWhat plays did Shakespeare write?\tone company\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s history, plays with just, one company) -> one company (6879ms)\nWhat plays did Shakespeare write?\twreaks evil\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, play, wreaks evil) -> wreaks evil (6789ms)\nWhat plays did Shakespeare write?\tthe William Shakespeare\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (the Shakespeare, plays with, the William Shakespeare) -> the William Shakespeare (6805ms)\nWhat plays did Shakespeare write?\tone intermission\t0.777777777776\tWhat plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, plays with only, one intermission) -> one intermission (6865ms)\nWhat plays did Shakespeare write?\tThe audiences\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The audiences, watched the plays of, Shakespeare) -> The audiences (6921ms)\nWhat plays did Shakespeare write?\tChekhov\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Chekhov, there are of playing, Shakespeare) -> Chekhov (6907ms)\nWhat plays did Shakespeare write?\ta Lord\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a Lord, played, Shakespeare) -> a Lord (6961ms)\nWhat plays did Shakespeare write?\tSpall\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Spall, plays, Shakespeare) -> Spall (6961ms)\nWhat plays did Shakespeare write?\tthe opportunity\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the opportunity, perform full-length plays by, Shakespeare) -> the opportunity (6948ms)\nWhat plays did Shakespeare write?\tLeithart 's book\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Leithart 's book, plays, Shakespeare) -> Leithart 's book (6935ms)\nWhat plays did Shakespeare write?\ta lord\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a lord, played, Shakespeare) -> a lord (6893ms)\nWhat plays did Shakespeare write?\tTragic\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Tragic, plays from, Shakespeare) -> Tragic (6893ms)\nWhat plays did Shakespeare write?\ta junior\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a junior, played, Shakespeare) -> a junior (6935ms)\nWhat plays did Shakespeare write?\tToronto\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Toronto, presented plays by, Shakespeare) -> Toronto (6893ms)\nWhat plays did Shakespeare write?\tKean\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Kean, played, Shakespeare) -> Kean (6935ms)\nWhat plays did Shakespeare write?\tIn Acting Shakespeare\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (In Acting Shakespeare, Play, Acting Shakespeare) -> In Acting Shakespeare (6961ms)\nWhat plays did Shakespeare write?\tthe line\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the line, plays, Shakespeares) -> the line (6935ms)\nWhat plays did Shakespeare write?\tProfessional actors\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Professional actors, perform plays by, Shakespeare) -> Professional actors (6961ms)\nWhat plays did Shakespeare write?\tthe space\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the space, can play, Shakespeare) -> the space (6961ms)\nWhat plays did Shakespeare write?\tNeil Toon\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Neil Toon, will play Romeo in, Shakespeare) -> Neil Toon (6921ms)\nWhat plays did Shakespeare write?\tThe guy\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The guy, playing, Shakespeare) -> The guy (6961ms)\nWhat plays did Shakespeare write?\tThe Annenberg Theatre\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The Annenberg Theatre, has played home to, Shakespeare) -> The Annenberg Theatre (6935ms)\nWhat plays did Shakespeare write?\tDame Judith Anderson\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Dame Judith Anderson, played roles from, Shakespeare) -> Dame Judith Anderson (6907ms)\nWhat plays did Shakespeare write?\tKeanu\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Keanu, was trying to play, Shakespeare) -> Keanu (6935ms)\nWhat plays did Shakespeare write?\tteen boys\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (teen boys, play all the roles in, Shakespeare) -> teen boys (6907ms)\nWhat plays did Shakespeare write?\tthe guy Ben Affleck\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the guy Ben Affleck, played in, Shakespeare) -> the guy Ben Affleck (6907ms)\nWhat plays did Shakespeare write?\tHamnett\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Hamnett, also plays all of, Shakespeare) -> Hamnett (6907ms)\nWhat plays did Shakespeare write?\tthe more fun\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the more fun, plays written by, Shakespeare) -> the more fun (6935ms)\nWhat plays did Shakespeare write?\tWestern culture\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Western culture, are the plays of, Shakespeare) -> Western culture (6893ms)\nWhat plays did Shakespeare write?\tSir Kenneth Branagh\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Sir Kenneth Branagh, is to play, Shakespeare) -> Sir Kenneth Branagh (6935ms)\nWhat plays did Shakespeare write?\ta quote\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a quote, play, Shakespeare) -> a quote (6961ms)\nWhat plays did Shakespeare write?\tpoetry\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (poetry, plays of, Shakespeare) -> poetry (6907ms)\nWhat plays did Shakespeare write?\tPatrick Stewart\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Patrick Stewart, plays, Shakespeare) -> Patrick Stewart (6935ms)\nWhat plays did Shakespeare write?\tDean Lennox Kelly\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Dean Lennox Kelly, plays, Shakespeare) -> Dean Lennox Kelly (6921ms)\nWhat plays did Shakespeare write?\tSeattle Rep\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Seattle Rep, plays by, Shakespeare) -> Seattle Rep (6948ms)\nWhat plays did Shakespeare write?\tsociety\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, position, shakespeare) -> (society, as has the position of, Shakespeare) -> society (6948ms)\nWhat plays did Shakespeare write?\tAthena releases\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Athena releases, include Playing, Shakespeare) -> Athena releases (6907ms)\nWhat plays did Shakespeare write?\tthe parts\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the parts, played, Shakespeare) -> the parts (6907ms)\nWhat plays did Shakespeare write?\tpicture books\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (picture books, plays especially of, Shakespeare) -> picture books (6921ms)\nWhat plays did Shakespeare write?\tCiotti\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, voice, shakespeare) -> (Ciotti, has the perfect voice for, Shakespeare) -> Ciotti (6948ms)\nWhat plays did Shakespeare write?\t8 Music\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (8 Music, has always played a special part in, Shakespeare) -> 8 Music (6907ms)\nWhat plays did Shakespeare write?\tcourt tennis\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (court tennis, has been played since, Shakespeare) -> court tennis (6893ms)\nWhat plays did Shakespeare write?\tmodern times\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play with, shakespeare) -> (modern times, have enjoyed playing with, Shakespeare) -> modern times (6935ms)\nWhat plays did Shakespeare write?\tnumber 17\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (number 17, must be a play by, Shakespeare) -> number 17 (6893ms)\nWhat plays did Shakespeare write?\tClaire Danes\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Claire Danes, play, Shakespeare) -> Claire Danes (6893ms)\nWhat plays did Shakespeare write?\tfour\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (four, plays, Shakespeare) -> four (6935ms)\nWhat plays did Shakespeare write?\tHathaway\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Hathaway, played Viola in, Shakespeare) -> Hathaway (6907ms)\nWhat plays did Shakespeare write?\tEnglish\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (English, is a great play by, Shakespeare) -> English (6907ms)\nWhat plays did Shakespeare write?\tAthena?s other debut releases\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Athena?s other debut releases, are Playing, Shakespeare) -> Athena?s other debut releases (6948ms)\nWhat plays did Shakespeare write?\ta character\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a character, play, Shakespeare) -> a character (6961ms)\nWhat plays did Shakespeare write?\tReeves\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Reeves, takes playing, Shakespeare) -> Reeves (6948ms)\nWhat plays did Shakespeare write?\tthe performances\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the performances, were plays by, Shakespeare) -> the performances (6948ms)\nWhat plays did Shakespeare write?\tShakespeare's Queens\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Shakespeare's Queens, Play, Shakespeare's Queens) -> Shakespeare's Queens (6921ms)\nWhat plays did Shakespeare write?\tBroadway\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Broadway, plays to, Shakespeare) -> Broadway (6948ms)\nWhat plays did Shakespeare write?\tthe class\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the class, will read plays by, Shakespeare) -> the class (6948ms)\nWhat plays did Shakespeare write?\tSpenser\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Spenser, plays like, Shakespeare) -> Spenser (6907ms)\nWhat plays did Shakespeare write?\tthe actor\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the actor, played, Shakespeare) -> the actor (6948ms)\nWhat plays did Shakespeare write?\tMusic\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Music, plays an important part in, Shakespeare) -> Music (6935ms)\nWhat plays did Shakespeare write?\tactress Claire Danes\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (actress Claire Danes, has played everything from, Shakespeare) -> actress Claire Danes (6935ms)\nWhat plays did Shakespeare write?\tIan McKellen: Acting Shakespeare\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Ian McKellen: Acting Shakespeare, Play, Acting Shakespeare) -> Ian McKellen: Acting Shakespeare (6921ms)\nWhat plays did Shakespeare write?\tAthena?s releases\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Athena?s releases, include Playing, Shakespeare) -> Athena?s releases (6948ms)\nWhat plays did Shakespeare write?\tFiennes\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Fiennes, plays, Shakespeare) -> Fiennes (6961ms)\nWhat plays did Shakespeare write?\tReadings\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Readings, will include plays by, Shakespeare) -> Readings (6921ms)\nWhat plays did Shakespeare write?\ta great actor\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a great actor, plays, Shakespeare) -> a great actor (6893ms)\nWhat plays did Shakespeare write?\tPart 3\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Part 3, must have been an important play for, Shakespeare) -> Part 3 (6935ms)\nWhat plays did Shakespeare write?\tAthena?s previous releases\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Athena?s previous releases, include Playing, Shakespeare) -> Athena?s previous releases (6921ms)\nWhat plays did Shakespeare write?\tthree\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (three, plays, Shakespeare) -> three (6921ms)\nWhat plays did Shakespeare write?\tany German\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (any German, had ever read a play by, Shakespeare) -> any German (6921ms)\nWhat plays did Shakespeare write?\tThe reading list\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The reading list, will include several plays by, Shakespeare) -> The reading list (6961ms)\nWhat plays did Shakespeare write?\tan actor\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (an actor, is playing, Shakespeare) -> an actor (6893ms)\nWhat plays did Shakespeare write?\tCardenio\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Cardenio, is a previously unknown play by, Shakespeare) -> Cardenio (6921ms)\nWhat plays did Shakespeare write?\tBoys\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Boys, played the female roles in, Shakespeare) -> Boys (6907ms)\nWhat plays did Shakespeare write?\tLady Mortimer\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Lady Mortimer, has played numerous other roles from, Shakespeare) -> Lady Mortimer (6893ms)\nWhat plays did Shakespeare write?\tPast projects\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Past projects, have included plays by, Shakespeare) -> Past projects (6893ms)\nWhat plays did Shakespeare write?\tThe band stand\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The band stand, has played host to, Shakespeare) -> The band stand (6921ms)\nWhat plays did Shakespeare write?\tShakespeare's Cabaret\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Shakespeare's Cabaret, Play, Shakespeare's Cabaret) -> Shakespeare's Cabaret (6961ms)\nWhat plays did Shakespeare write?\ta student\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a student, might read a play by, Shakespeare) -> a student (6893ms)\nWhat plays did Shakespeare write?\tthe role\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the role, played by, Shakespeare) -> the role (6935ms)\nWhat plays did Shakespeare write?\tShe?s 19\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (She?s 19, has read every play by, Shakespeare) -> She?s 19 (6893ms)\nWhat plays did Shakespeare write?\timportant contrasts\t0.777777777774\tWhat plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (important contrasts, play into, Shakespeare) -> important contrasts (6948ms)\nWhat plays did Shakespeare write?\tNEw York\t0.555555555555\tWhat plays did Shakespeare write? -> $x: (william, be sport of, $x) -> (williams baptist college, is the home city of the sports team, NEw York) -> NEw York (6961ms)\nWhat plays did Shakespeare write?\t?if baseball\t0.555555555553\tWhat plays did Shakespeare write? -> $x: ($x, be sport of, prose) -> (?if baseball, is the sport of, elegant prose) -> ?if baseball (6961ms)\nWhat plays did Shakespeare write?\tthe Warwick Beacon\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Geoghegan, is the sports editor at, the Warwick Beacon) -> the Warwick Beacon (7153ms)\nWhat plays did Shakespeare write?\ta high motor\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, a high motor) -> a high motor (7070ms)\nWhat plays did Shakespeare write?\tthe disadvantaged\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Senator Williams, is also a strong voice for, the disadvantaged) -> the disadvantaged (7175ms)\nWhat plays did Shakespeare write?\tPLAYER\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, PLAYER) -> PLAYER (7002ms)\nWhat plays did Shakespeare write?\tGUARD\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, GUARD) -> GUARD (7189ms)\nWhat plays did Shakespeare write?\tEvolver\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> ('s William H. Macy, provides the voice of, Evolver) -> Evolver (7137ms)\nWhat plays did Shakespeare write?\tpreviously\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, previously) -> previously (7202ms)\nWhat plays did Shakespeare write?\t2009\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, earned a starting position in, 2009) -> 2009 (6987ms)\nWhat plays did Shakespeare write?\tHouston\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, was playing for, Houston) -> Houston (7022ms)\nWhat plays did Shakespeare write?\tBesiktas\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, plays for, Besiktas) -> Besiktas (7042ms)\nWhat plays did Shakespeare write?\tBaseball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Charlie Williams, Sport, Baseball) -> Baseball (7060ms)\nWhat plays did Shakespeare write?\tmusic\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, music) -> music (7226ms)\nWhat plays did Shakespeare write?\tadab\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (prose fiction, played a relatively small role in, adab) -> adab (7113ms)\nWhat plays did Shakespeare write?\twell\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, well) -> well (7088ms)\nWhat plays did Shakespeare write?\tan IU East Red Wolves\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (| Venus Williams, sported, an IU East Red Wolves) -> an IU East Red Wolves (7168ms)\nWhat plays did Shakespeare write?\tUM last May\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, decided to play for, UM last May) -> UM last May (7079ms)\nWhat plays did Shakespeare write?\tCoach Rhonda Kendall\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, Coach Rhonda Kendall) -> Coach Rhonda Kendall (7042ms)\nWhat plays did Shakespeare write?\tdeputy\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, held the position of, deputy) -> deputy (6987ms)\nWhat plays did Shakespeare write?\tAlan Hakman\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Alan Hakman) -> Alan Hakman (7168ms)\nWhat plays did Shakespeare write?\tthe likes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, has played with, the likes) -> the likes (7230ms)\nWhat plays did Shakespeare write?\t1955\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, resigned the position in, 1955) -> 1955 (7022ms)\nWhat plays did Shakespeare write?\tMiami\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played sparingly for, Miami) -> Miami (7226ms)\nWhat plays did Shakespeare write?\tthe Coyote men\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played two seasons for, the Coyote men) -> the Coyote men (6974ms)\nWhat plays did Shakespeare write?\tthe Vice President\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, took a position as, the Vice President) -> the Vice President (7137ms)\nWhat plays did Shakespeare write?\tfirst lieutenant\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, earned the position of, first lieutenant) -> first lieutenant (7213ms)\nWhat plays did Shakespeare write?\tItalian Anna Magnani\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, originally wrote the play for, Italian Anna Magnani) -> Italian Anna Magnani (7105ms)\nWhat plays did Shakespeare write?\tan ordinary life\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Caroline Williams, play a married couple with, an ordinary life) -> an ordinary life (7235ms)\nWhat plays did Shakespeare write?\tthe Swift Current Broncos\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, would later play for, the Swift Current Broncos) -> the Swift Current Broncos (7153ms)\nWhat plays did Shakespeare write?\tExecutive Director\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, held the position of, Executive Director) -> Executive Director (7145ms)\nWhat plays did Shakespeare write?\tFender\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, plays the voice of, Fender) -> Fender (7196ms)\nWhat plays did Shakespeare write?\tcornerback\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, cornerback) -> cornerback (7160ms)\nWhat plays did Shakespeare write?\tCanada\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams, has covered every major sporting event in, Canada) -> Canada (7235ms)\nWhat plays did Shakespeare write?\tSmith College\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, accepted a position at, Smith College) -> Smith College (7002ms)\nWhat plays did Shakespeare write?\tvarious musicians\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Harry Williams, played with, various musicians) -> various musicians (7175ms)\nWhat plays did Shakespeare write?\tthe Hunger Action Network\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played benefit concerts for, the Hunger Action Network) -> the Hunger Action Network (7070ms)\nWhat plays did Shakespeare write?\tthe Yahoo!\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Browning, has covered sports for, the Yahoo!) -> the Yahoo! (7145ms)\nWhat plays did Shakespeare write?\tthe Frogs\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played a solid game for, the Frogs) -> the Frogs (7160ms)\nWhat plays did Shakespeare write?\tJazz\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Deron Williams, plays for the team, Jazz) -> Jazz (7167ms)\nWhat plays did Shakespeare write?\tthe Johnson City Press\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Trey Williams, is a sports writer for, the Johnson City Press) -> the Johnson City Press (7189ms)\nWhat plays did Shakespeare write?\tstock car racing\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William HG France, promote the sport of, stock car racing) -> stock car racing (7012ms)\nWhat plays did Shakespeare write?\tBoston Redsox\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (fred williams, plays for the team, Boston Redsox) -> Boston Redsox (7002ms)\nWhat plays did Shakespeare write?\tKraft Mac & Cheese\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, had also become the new voice for, Kraft Mac & Cheese) -> Kraft Mac & Cheese (7230ms)\nWhat plays did Shakespeare write?\tBasketball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William & Mary Tribe men's basketball, Sport, Basketball) -> Basketball (7196ms)\nWhat plays did Shakespeare write?\tKIng\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, held the position of, KIng) -> KIng (7070ms)\nWhat plays did Shakespeare write?\tFirst baseman\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Rip Williams, Position(s), First baseman) -> First baseman (7137ms)\nWhat plays did Shakespeare write?\tthe ideas\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (That Williams, is playing with, the ideas) -> the ideas (6987ms)\nWhat plays did Shakespeare write?\tequal interest and intensity\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Ms Williams, plays all with, equal interest and intensity) -> equal interest and intensity (7202ms)\nWhat plays did Shakespeare write?\tcenter\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, center) -> center (7113ms)\nWhat plays did Shakespeare write?\ta chance\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is also playing for, a chance) -> a chance (7175ms)\nWhat plays did Shakespeare write?\tUnited Kingdom\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams F1, Sports Team Location, United Kingdom) -> United Kingdom (7096ms)\nWhat plays did Shakespeare write?\tRedskins\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Doug Williams, plays for the team, Redskins) -> Redskins (7160ms)\nWhat plays did Shakespeare write?\tPitcher\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Brian Williams, Position(s), Pitcher) -> Pitcher (7202ms)\nWhat plays did Shakespeare write?\tunhappiness\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Mr. William Gettler, voiced, unhappiness) -> unhappiness (7208ms)\nWhat plays did Shakespeare write?\tthe light\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (length William Miller, raised his voice against, the light) -> the light (7088ms)\nWhat plays did Shakespeare write?\tgold\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, has a voice of, gold) -> gold (7113ms)\nWhat plays did Shakespeare write?\ta suspension\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Keller Williams, voiced their opposition to, a suspension) -> a suspension (7196ms)\nWhat plays did Shakespeare write?\tJones\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Leo Williams, played bass with, Jones) -> Jones (7113ms)\nWhat plays did Shakespeare write?\ttampa-bay-devil-rays\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Cadillac Williams, plays for the team, tampa-bay-devil-rays) -> tampa-bay-devil-rays (7235ms)\nWhat plays did Shakespeare write?\tncaa\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (william and mary tribe, is a sports team that plays in the league, ncaa) -> ncaa (7239ms)\nWhat plays did Shakespeare write?\ttwo characters\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, is the voice of, two characters) -> two characters (7070ms)\nWhat plays did Shakespeare write?\tMartz before?..Rumors\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has played for, Martz before?..Rumors) -> Martz before?..Rumors (7226ms)\nWhat plays did Shakespeare write?\tDefensive back\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (James Williams, Position(s), Defensive back) -> Defensive back (7160ms)\nWhat plays did Shakespeare write?\tfive games\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played the stand-up position for, five games) -> five games (7002ms)\nWhat plays did Shakespeare write?\tFootball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Gwynn, Sport, Football) -> Football (7235ms)\nWhat plays did Shakespeare write?\tthe fantastic\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, position, $x) -> (his prose, is positioned precisely in, the fantastic) -> the fantastic (7121ms)\nWhat plays did Shakespeare write?\tHooker\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William Servat, Position, Hooker) -> Hooker (7239ms)\nWhat plays did Shakespeare write?\tthe Herm Edwards-coached White team\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, will play for, the Herm Edwards-coached White team) -> the Herm Edwards-coached White team (7182ms)\nWhat plays did Shakespeare write?\tWide Receiver\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Roydell Williams, Position, Wide Receiver) -> Wide Receiver (7230ms)\nWhat plays did Shakespeare write?\ta fender\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, took the position by, a fender) -> a fender (7175ms)\nWhat plays did Shakespeare write?\tNeil Young\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Hank Williams, played a couple with, Neil Young) -> Neil Young (7182ms)\nWhat plays did Shakespeare write?\tWing\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William McCutcheon, Position, Wing) -> Wing (7160ms)\nWhat plays did Shakespeare write?\tthe Hawks\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, does play a significant defensive role for, the Hawks) -> the Hawks (7022ms)\nWhat plays did Shakespeare write?\tStella\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (the prose poem, plays, Stella) -> Stella (7153ms)\nWhat plays did Shakespeare write?\thigh school football\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, high school football) -> high school football (7175ms)\nWhat plays did Shakespeare write?\tgrave concern\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Canterbury Rowan Williams, voiced, grave concern) -> grave concern (7235ms)\nWhat plays did Shakespeare write?\tpassion and imagination\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Dr. Williams, plays with, passion and imagination) -> passion and imagination (7061ms)\nWhat plays did Shakespeare write?\tthe Cincinnati Reds\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played extended seasons with, the Cincinnati Reds) -> the Cincinnati Reds (7235ms)\nWhat plays did Shakespeare write?\tJakob\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, Jakob) -> Jakob (7105ms)\nWhat plays did Shakespeare write?\tconcern\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (UK Foreign Secretary William Hague, also voiced, concern) -> concern (7079ms)\nWhat plays did Shakespeare write?\tobscurity\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (his prose fiction, plays sunk into, obscurity) -> obscurity (7022ms)\nWhat plays did Shakespeare write?\ta pitching-rich staff\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Archbishop Williams High School, sported, a pitching-rich staff) -> a pitching-rich staff (6987ms)\nWhat plays did Shakespeare write?\tguitar\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, guitar) -> guitar (7070ms)\nWhat plays did Shakespeare write?\ta key role\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, a key role) -> a key role (7160ms)\nWhat plays did Shakespeare write?\tTennis\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (serena williams, plays the sport, Tennis) -> Tennis (7121ms)\nWhat plays did Shakespeare write?\tviolence\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Mr. Williams, has been an effective voice against, violence) -> violence (7160ms)\nWhat plays did Shakespeare write?\ta classy\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Michelle Williams, sported, a classy) -> a classy (7213ms)\nWhat plays did Shakespeare write?\ta new corporate video\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Sally Williams, is the voice of, a new corporate video) -> a new corporate video (7208ms)\nWhat plays did Shakespeare write?\ta young daughter\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Michelle Williams, play a couple with, a young daughter) -> a young daughter (7042ms)\nWhat plays did Shakespeare write?\tonly six minutes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, only six minutes) -> only six minutes (7051ms)\nWhat plays did Shakespeare write?\ttraindespatcher\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, held responsible positions as, traindespatcher) -> traindespatcher (7079ms)\nWhat plays did Shakespeare write?\tthe Chiefs\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, currently plays for, the Chiefs) -> the Chiefs (7182ms)\nWhat plays did Shakespeare write?\tVirginia Tech\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, went on to play for, Virginia Tech) -> Virginia Tech (7113ms)\nWhat plays did Shakespeare write?\ta couple\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played overseas for, a couple) -> a couple (7226ms)\nWhat plays did Shakespeare write?\tLast season\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, Last season) -> Last season (7153ms)\nWhat plays did Shakespeare write?\tthe ?English? church\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, later played the organ for, the ?English? church) -> the ?English? church (7145ms)\nWhat plays did Shakespeare write?\tLeft Center\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, Left Center) -> Left Center (7175ms)\nWhat plays did Shakespeare write?\tDunleavy\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, Dunleavy) -> Dunleavy (7032ms)\nWhat plays did Shakespeare write?\tRonald McDonald\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Patient Jordyn Williams, plays with, Ronald McDonald) -> Ronald McDonald (7175ms)\nWhat plays did Shakespeare write?\tthe 76ers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, converted a three-point play for, the 76ers) -> the 76ers (7070ms)\nWhat plays did Shakespeare write?\tFern Gully\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, used his voice talents in, Fern Gully) -> Fern Gully (7012ms)\nWhat plays did Shakespeare write?\tthe fool\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the fool) -> the fool (7213ms)\nWhat plays did Shakespeare write?\ta hand-held magnifier\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William, now sported, a hand-held magnifier) -> a hand-held magnifier (7160ms)\nWhat plays did Shakespeare write?\ta lot\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, a lot) -> a lot (7022ms)\nWhat plays did Shakespeare write?\tNew Jersey\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, New Jersey) -> New Jersey (7121ms)\nWhat plays did Shakespeare write?\tLovelace\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Comedian Robin Williams, voiced, Lovelace) -> Lovelace (7218ms)\nWhat plays did Shakespeare write?\tthe Mavericks\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played only three games with, the Mavericks) -> the Mavericks (7129ms)\nWhat plays did Shakespeare write?\tGoalkeeper\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William Robb, Position(s), Goalkeeper) -> Goalkeeper (7042ms)\nWhat plays did Shakespeare write?\ta bit part\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, a bit part) -> a bit part (7226ms)\nWhat plays did Shakespeare write?\tline\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Sue Williams, play with, line) -> line (6974ms)\nWhat plays did Shakespeare write?\tthe Bulls\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played well for, the Bulls) -> the Bulls (7196ms)\nWhat plays did Shakespeare write?\tNorman United Church\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, held positions at, Norman United Church) -> Norman United Church (7168ms)\nWhat plays did Shakespeare write?\tMOCPCC director\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, resigned his position as, MOCPCC director) -> MOCPCC director (6974ms)\nWhat plays did Shakespeare write?\tthe first time\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is playing for, the first time) -> the first time (7196ms)\nWhat plays did Shakespeare write?\tthe band Public Image Limited\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also played drums for, the band Public Image Limited) -> the band Public Image Limited (7088ms)\nWhat plays did Shakespeare write?\tthe latest jazz\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Williams, wanted to play, the latest jazz) -> the latest jazz (7182ms)\nWhat plays did Shakespeare write?\tshortstop\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, shortstop) -> shortstop (7189ms)\nWhat plays did Shakespeare write?\tChris Samuelson\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Ken Williams, is playing golf with, Chris Samuelson) -> Chris Samuelson (7195ms)\nWhat plays did Shakespeare write?\tPuerto Rico\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is playing for, Puerto Rico) -> Puerto Rico (7042ms)\nWhat plays did Shakespeare write?\tworship leader\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, accepted the position of, worship leader) -> worship leader (6987ms)\nWhat plays did Shakespeare write?\tdrums\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, drums) -> drums (7145ms)\nWhat plays did Shakespeare write?\tJackie McLean\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, Jackie McLean) -> Jackie McLean (7129ms)\nWhat plays did Shakespeare write?\tbass\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, bass) -> bass (7195ms)\nWhat plays did Shakespeare write?\tFormula One\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams F1, Sport, Formula One) -> Formula One (7002ms)\nWhat plays did Shakespeare write?\tthe Miami Dolphins\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Miami Dolphins) -> the Miami Dolphins (7202ms)\nWhat plays did Shakespeare write?\tthe US Fed Cup team\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the US Fed Cup team) -> the US Fed Cup team (7145ms)\nWhat plays did Shakespeare write?\tPapa Possum\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Shatner, is the voice of, Papa Possum) -> Papa Possum (7226ms)\nWhat plays did Shakespeare write?\t33 minutes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 33 minutes) -> 33 minutes (7189ms)\nWhat plays did Shakespeare write?\ttime\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (prose writers, play with, time) -> time (7207ms)\nWhat plays did Shakespeare write?\tbaseball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Matt Williams, plays the sport, baseball) -> baseball (7213ms)\nWhat plays did Shakespeare write?\tLock\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William Bowen, Position, Lock) -> Lock (7235ms)\nWhat plays did Shakespeare write?\tMatt Dillon\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Conrad, is the voice of, Matt Dillon) -> Matt Dillon (7208ms)\nWhat plays did Shakespeare write?\tdefensive end\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, defensive end) -> defensive end (7022ms)\nWhat plays did Shakespeare write?\t16 seasons\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 16 seasons) -> 16 seasons (7042ms)\nWhat plays did Shakespeare write?\treason\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Juan Williams, was the only voice of, reason) -> reason (6974ms)\nWhat plays did Shakespeare write?\tfire\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, will be playing with, fire) -> fire (7121ms)\nWhat plays did Shakespeare write?\tdirector\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (?Williams, used his position as, director) -> director (7022ms)\nWhat plays did Shakespeare write?\tthe superintendent\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, accepted the position as, the superintendent) -> the superintendent (7032ms)\nWhat plays did Shakespeare write?\tthe Sky\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also played defense for, the Sky) -> the Sky (7153ms)\nWhat plays did Shakespeare write?\ta winner\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Williams, wants to play for, a winner) -> a winner (7226ms)\nWhat plays did Shakespeare write?\tthe Lonesome Pine Fiddlers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Paul Williams, played with, the Lonesome Pine Fiddlers) -> the Lonesome Pine Fiddlers (7051ms)\nWhat plays did Shakespeare write?\tFirestorm\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Tyler James Williams, will voice, Firestorm) -> Firestorm (7105ms)\nWhat plays did Shakespeare write?\tformer Saluqi player Keelon Lawson\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, former Saluqi player Keelon Lawson) -> former Saluqi player Keelon Lawson (7160ms)\nWhat plays did Shakespeare write?\tthe original photograph\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, played with, the original photograph) -> the original photograph (7202ms)\nWhat plays did Shakespeare write?\tJohn Keating\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, John Keating) -> John Keating (7239ms)\nWhat plays did Shakespeare write?\tblack children\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, black children) -> black children (7079ms)\nWhat plays did Shakespeare write?\t13 years\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Dick Williams Dick Williams, played for, 13 years) -> 13 years (7213ms)\nWhat plays did Shakespeare write?\tthe Wesley Jefferson band\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Joe Williams, played drums with, the Wesley Jefferson band) -> the Wesley Jefferson band (7202ms)\nWhat plays did Shakespeare write?\tmarbles\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (King William, was playing with, marbles) -> marbles (7105ms)\nWhat plays did Shakespeare write?\tthe Spurs\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (marcus williams, could still play with, the Spurs) -> the Spurs (7145ms)\nWhat plays did Shakespeare write?\tCentre\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Gavin Williams, Position, Centre) -> Centre (7226ms)\nWhat plays did Shakespeare write?\tDaniels\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Prince Williams County, wanted to play, Daniels) -> Daniels (7230ms)\nWhat plays did Shakespeare write?\tthe last two seasons\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the last two seasons) -> the last two seasons (7189ms)\nWhat plays did Shakespeare write?\ta French company\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, accepted a position with, a French company) -> a French company (6987ms)\nWhat plays did Shakespeare write?\ta classic tuxedo\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Prince William, sports, a classic tuxedo) -> a classic tuxedo (7153ms)\nWhat plays did Shakespeare write?\ttonal depth\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Sir William Collyer?wonderfully, played with, tonal depth) -> tonal depth (7070ms)\nWhat plays did Shakespeare write?\tthe character\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, will voice, the character) -> the character (7230ms)\nWhat plays did Shakespeare write?\tGenie\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (ROBIN WILLIAMS, provides the voice of, Genie) -> Genie (7168ms)\nWhat plays did Shakespeare write?\ta greater sense\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, will need to play with, a greater sense) -> a greater sense (7239ms)\nWhat plays did Shakespeare write?\tFullback\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Rhys Williams, Position, Fullback) -> Fullback (7145ms)\nWhat plays did Shakespeare write?\tATV\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, played bass with, ATV) -> ATV (7022ms)\nWhat plays did Shakespeare write?\tthe ball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the ball) -> the ball (7079ms)\nWhat plays did Shakespeare write?\tNumber 8\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William Cummins, Position, Number 8) -> Number 8 (7175ms)\nWhat plays did Shakespeare write?\theart\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Graves, is playing with, heart) -> heart (7153ms)\nWhat plays did Shakespeare write?\ta long time\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, has played soccer for, a long time) -> a long time (7022ms)\nWhat plays did Shakespeare write?\tLeo\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Leo) -> Leo (7051ms)\nWhat plays did Shakespeare write?\tthe Atlanta\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has actually played pretty well for, the Atlanta) -> the Atlanta (7153ms)\nWhat plays did Shakespeare write?\tAngelina\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Finty Williams, is the voice of, Angelina) -> Angelina (7213ms)\nWhat plays did Shakespeare write?\tlast\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, last) -> last (7153ms)\nWhat plays did Shakespeare write?\tseveral Fortune 500 companies\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, has held positions with, several Fortune 500 companies) -> several Fortune 500 companies (7196ms)\nWhat plays did Shakespeare write?\tthe Cubs\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Even Ted Williams, wanted to play for, the Cubs) -> the Cubs (7208ms)\nWhat plays did Shakespeare write?\tthe Detroit Tigers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the Detroit Tigers) -> the Detroit Tigers (7202ms)\nWhat plays did Shakespeare write?\tminimal dollars\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is n?t playing for, minimal dollars) -> minimal dollars (7105ms)\nWhat plays did Shakespeare write?\tLance Clayton\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Lance Clayton) -> Lance Clayton (7105ms)\nWhat plays did Shakespeare write?\tthe Dolphins and Saints\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also played for, the Dolphins and Saints) -> the Dolphins and Saints (7061ms)\nWhat plays did Shakespeare write?\tcoach Freeman Horton\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played the last two seasons for, coach Freeman Horton) -> coach Freeman Horton (7042ms)\nWhat plays did Shakespeare write?\tSaskatchewan\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played mostly special teams with, Saskatchewan) -> Saskatchewan (7079ms)\nWhat plays did Shakespeare write?\ttrumpet\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, trumpet) -> trumpet (7168ms)\nWhat plays did Shakespeare write?\tthe film\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, will also lend his voice to, the film) -> the film (7051ms)\nWhat plays did Shakespeare write?\tWide receiver\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (David Williams, Position(s), Wide receiver) -> Wide receiver (6987ms)\nWhat plays did Shakespeare write?\ta different set\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, is playing with, a different set) -> a different set (7145ms)\nWhat plays did Shakespeare write?\ta hoodie\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (City Councilman Jumaane Williams, sported, a hoodie) -> a hoodie (7160ms)\nWhat plays did Shakespeare write?\tlast fall\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, last fall) -> last fall (7060ms)\nWhat plays did Shakespeare write?\tRichard\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Murray, went on to play with, Richard) -> Richard (7160ms)\nWhat plays did Shakespeare write?\tthe New Jersey Nets\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, is playing out with, the New Jersey Nets) -> the New Jersey Nets (7012ms)\nWhat plays did Shakespeare write?\thead\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, accepted a position as, head) -> head (7137ms)\nWhat plays did Shakespeare write?\tthe Field Mice\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Harvey Williams, later played with, the Field Mice) -> the Field Mice (7012ms)\nWhat plays did Shakespeare write?\tthe University Gaelic football team\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, has played for, the University Gaelic football team) -> the University Gaelic football team (7042ms)\nWhat plays did Shakespeare write?\tthe College\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William & Mary John Todd, was a four-sport star at, the College) -> the College (7096ms)\nWhat plays did Shakespeare write?\tLatter Day Saints Business College\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Ricky Williams, plays for the team, Latter Day Saints Business College) -> Latter Day Saints Business College (7042ms)\nWhat plays did Shakespeare write?\tScrum half\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Lee Williams, Position, Scrum half) -> Scrum half (7189ms)\nWhat plays did Shakespeare write?\tDefenseman\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William Klooster, Hockey Position(s), Defenseman) -> Defenseman (7137ms)\nWhat plays did Shakespeare write?\tthe residual fear\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Juan Williams, only gave a voice to, the residual fear) -> the residual fear (7032ms)\nWhat plays did Shakespeare write?\tlast night\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, last night) -> last night (7213ms)\nWhat plays did Shakespeare write?\tthe Victorian Football League\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, also played for, the Victorian Football League) -> the Victorian Football League (7221ms)\nWhat plays did Shakespeare write?\ta major role\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, a major role) -> a major role (7145ms)\nWhat plays did Shakespeare write?\ta different manager\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, a different manager) -> a different manager (7032ms)\nWhat plays did Shakespeare write?\tfour or five games\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, would be a very risky play with, four or five games) -> four or five games (7137ms)\nWhat plays did Shakespeare write?\tthe lucky 30\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> ('s poetry and prose, also played for, the lucky 30) -> the lucky 30 (7189ms)\nWhat plays did Shakespeare write?\tBANDS\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Prince William, even sported a pair of, BANDS) -> BANDS (7022ms)\nWhat plays did Shakespeare write?\tNazi propaganda\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Joyce, was the voice of, Nazi propaganda) -> Nazi propaganda (7167ms)\nWhat plays did Shakespeare write?\tthe years\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the years) -> the years (7182ms)\nWhat plays did Shakespeare write?\tpiano\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, piano) -> piano (7002ms)\nWhat plays did Shakespeare write?\tRunning back\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Cadillac Williams, Position, Running back) -> Running back (7235ms)\nWhat plays did Shakespeare write?\tGrove\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams F1, Sports Team Location, Grove) -> Grove (7129ms)\nWhat plays did Shakespeare write?\t30 minutes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 30 minutes) -> 30 minutes (7226ms)\nWhat plays did Shakespeare write?\tsingles\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, play, singles) -> singles (7182ms)\nWhat plays did Shakespeare write?\ta backup role\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, a backup role) -> a backup role (7121ms)\nWhat plays did Shakespeare write?\tthe Maryland Terrapins\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Maryland Terrapins) -> the Maryland Terrapins (7113ms)\nWhat plays did Shakespeare write?\tsafety\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, safety) -> safety (7137ms)\nWhat plays did Shakespeare write?\tNIN\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Saul Williams, played with, NIN) -> NIN (7213ms)\nWhat plays did Shakespeare write?\tthe piano\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, the piano) -> the piano (7202ms)\nWhat plays did Shakespeare write?\tnow\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, is in the position, now) -> now (7218ms)\nWhat plays did Shakespeare write?\tYankees\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Bernie Williams, plays for the team, Yankees) -> Yankees (7182ms)\nWhat plays did Shakespeare write?\tHall\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Hornsby and Williams, are credible voices on, Hall) -> Hall (7182ms)\nWhat plays did Shakespeare write?\tLando Calrissian\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, voiced, Lando Calrissian) -> Lando Calrissian (7060ms)\nWhat plays did Shakespeare write?\tNow\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, Now) -> Now (7168ms)\nWhat plays did Shakespeare write?\tthe Guardian\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Richard Williams, is chief sports writer for, the Guardian) -> the Guardian (7032ms)\nWhat plays did Shakespeare write?\tthe Newark Eagles\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Newark Eagles) -> the Newark Eagles (7096ms)\nWhat plays did Shakespeare write?\twooden legs\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (shakspeare, play, $x) -> (Shakspeare, played entirely by, wooden legs) -> wooden legs (7051ms)\nWhat plays did Shakespeare write?\ta grand-father\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Hank Williams, has the voice of, a grand-father) -> a grand-father (7096ms)\nWhat plays did Shakespeare write?\tmultiple levels\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (the prose, plays on, multiple levels) -> multiple levels (7079ms)\nWhat plays did Shakespeare write?\tharmonica\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, harmonica) -> harmonica (7121ms)\nWhat plays did Shakespeare write?\tCalvert Hall\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, primarily played linebacker for, Calvert Hall) -> Calvert Hall (7202ms)\nWhat plays did Shakespeare write?\tRainbow Randolph\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Rainbow Randolph) -> Rainbow Randolph (7051ms)\nWhat plays did Shakespeare write?\trugby\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Sonny Bill Williams, wants to play, rugby) -> rugby (7012ms)\nWhat plays did Shakespeare write?\tRight Field\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, Right Field) -> Right Field (7137ms)\nWhat plays did Shakespeare write?\tan opinion\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Pat Williams, to voice, an opinion) -> an opinion (7182ms)\nWhat plays did Shakespeare write?\tthe Red Sox\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Ted Williams, played for, the Red Sox) -> the Red Sox (7213ms)\nWhat plays did Shakespeare write?\tfour hours\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, playing for, four hours) -> four hours (7002ms)\nWhat plays did Shakespeare write?\tseveral rock\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, several rock) -> several rock (7002ms)\nWhat plays did Shakespeare write?\tliberalism\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (\" William Cullen Bryant, was the leading voice of, liberalism) -> liberalism (7129ms)\nWhat plays did Shakespeare write?\ta fine moustache\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William, is sporting, a fine moustache) -> a fine moustache (7182ms)\nWhat plays did Shakespeare write?\tonly five games\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, only five games) -> only five games (6987ms)\nWhat plays did Shakespeare write?\tIndians\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Matt Williams, plays for the team, Indians) -> Indians (7113ms)\nWhat plays did Shakespeare write?\tthe Cavaliers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams ?, plays free safety for, the Cavaliers) -> the Cavaliers (7060ms)\nWhat plays did Shakespeare write?\ta CRT\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Rntgen, played with, a CRT) -> a CRT (7230ms)\nWhat plays did Shakespeare write?\tProp\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Brian Williams, Position, Prop) -> Prop (7208ms)\nWhat plays did Shakespeare write?\tthe gun\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Jarmall Williams, was playing with, the gun) -> the gun (7226ms)\nWhat plays did Shakespeare write?\tthe Navy\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played baseball for, the Navy) -> the Navy (7182ms)\nWhat plays did Shakespeare write?\ta large dose\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams ?, plays for, a large dose) -> a large dose (7051ms)\nWhat plays did Shakespeare write?\tbasketball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, basketball) -> basketball (7218ms)\nWhat plays did Shakespeare write?\tThe Bombers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, played for, The Bombers) -> The Bombers (7070ms)\nWhat plays did Shakespeare write?\tmen\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, had spent years playing with, men) -> men (7218ms)\nWhat plays did Shakespeare write?\tassistant art director\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, held the position of, assistant art director) -> assistant art director (7051ms)\nWhat plays did Shakespeare write?\ta story\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Hurt, has the perfect voice for, a story) -> a story (7167ms)\nWhat plays did Shakespeare write?\tthe item\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Coach bags Catherine Zeta Williams, sports, the item) -> the item (7230ms)\nWhat plays did Shakespeare write?\tNew York eye BARRY CRAIG\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Gargan, was the voice of, New York eye BARRY CRAIG) -> New York eye BARRY CRAIG (7121ms)\nWhat plays did Shakespeare write?\tthe Kansas City Kings\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Kansas City Kings) -> the Kansas City Kings (7032ms)\nWhat plays did Shakespeare write?\texecutive director\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, took a position as, executive director) -> executive director (7218ms)\nWhat plays did Shakespeare write?\tHurd in Dallas\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (wide receiver Roy Williams, played with, Hurd in Dallas) -> Hurd in Dallas (7182ms)\nWhat plays did Shakespeare write?\tthe villain\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the villain) -> the villain (6974ms)\nWhat plays did Shakespeare write?\tthe Cowboys\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played mainly special teams for, the Cowboys) -> the Cowboys (7189ms)\nWhat plays did Shakespeare write?\tJustin Byrne\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Ryan Williams, play with, Justin Byrne) -> Justin Byrne (7088ms)\nWhat plays did Shakespeare write?\tSeattle\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (? Williams, played six seasons for, Seattle) -> Seattle (7042ms)\nWhat plays did Shakespeare write?\tJohn de Lancie\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William, is clearly being voiced by, John de Lancie) -> John de Lancie (7051ms)\nWhat plays did Shakespeare write?\tthe band\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Clayton, played with, the band) -> the band (7168ms)\nWhat plays did Shakespeare write?\ta hat and guitar\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (this Story Jett Williams, sported, a hat and guitar) -> a hat and guitar (7218ms)\nWhat plays did Shakespeare write?\tthe project\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Hague, voiced his interest in, the project) -> the project (7208ms)\nWhat plays did Shakespeare write?\tTeam USA\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also played for, Team USA) -> Team USA (7230ms)\nWhat plays did Shakespeare write?\tCindy\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Cindy) -> Cindy (7175ms)\nWhat plays did Shakespeare write?\tthe last game of his career\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the last game of his career) -> the last game of his career (7096ms)\nWhat plays did Shakespeare write?\tterms\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (his later prose, plays in, terms) -> terms (7175ms)\nWhat plays did Shakespeare write?\ta penguin\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, play the voice of, a penguin) -> a penguin (7226ms)\nWhat plays did Shakespeare write?\tThe New York Times\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William C. Rhoden, is a sports columnist for, The New York Times) -> The New York Times (7182ms)\nWhat plays did Shakespeare write?\tthe New England Revolution\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, plays for, the New England Revolution) -> the New England Revolution (7137ms)\nWhat plays did Shakespeare write?\tright tackle\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, right tackle) -> right tackle (7042ms)\nWhat plays did Shakespeare write?\tSidney Bechet\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, also played professionally with, Sidney Bechet) -> Sidney Bechet (7153ms)\nWhat plays did Shakespeare write?\tSecond row\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Tony Williams, Position, Second row) -> Second row (7208ms)\nWhat plays did Shakespeare write?\twings Hanno Dirksen\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Shane Williams, is unlikely to play with, wings Hanno Dirksen) -> wings Hanno Dirksen (7234ms)\nWhat plays did Shakespeare write?\tBartlett\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played a quick one-two with, Bartlett) -> Bartlett (7113ms)\nWhat plays did Shakespeare write?\tthe Herd\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Herd) -> the Herd (7105ms)\nWhat plays did Shakespeare write?\tDallas Cowboys\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (roy williams, plays for the team, Dallas Cowboys) -> Dallas Cowboys (7208ms)\nWhat plays did Shakespeare write?\tskepticism\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Visitors member William M. Lechler, also has voiced, skepticism) -> skepticism (7032ms)\nWhat plays did Shakespeare write?\tthe church halls\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Edward John, found his voice in, the church halls) -> the church halls (7145ms)\nWhat plays did Shakespeare write?\ta setting\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (lusty , vigorous prose, played out against, a setting) -> a setting (7239ms)\nWhat plays did Shakespeare write?\tthe middle\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William, had held position in, the middle) -> the middle (7230ms)\nWhat plays did Shakespeare write?\tright field\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, right field) -> right field (7012ms)\nWhat plays did Shakespeare write?\tthe violin\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, the violin) -> the violin (6974ms)\nWhat plays did Shakespeare write?\trugby and basketball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, rugby and basketball) -> rugby and basketball (7060ms)\nWhat plays did Shakespeare write?\tProfessional wrestling\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Boulware, Jr., Sport, Professional wrestling) -> Professional wrestling (6974ms)\nWhat plays did Shakespeare write?\t14 minutes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 14 minutes) -> 14 minutes (7121ms)\nWhat plays did Shakespeare write?\tthe expectations\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, plays mischievously with, the expectations) -> the expectations (7168ms)\nWhat plays did Shakespeare write?\tASZ\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, may have been playing around with, ASZ) -> ASZ (7235ms)\nWhat plays did Shakespeare write?\tNew Orleans\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played three seasons for, New Orleans) -> New Orleans (7213ms)\nWhat plays did Shakespeare write?\tthe SCLC\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, held several positions within, the SCLC) -> the SCLC (7051ms)\nWhat plays did Shakespeare write?\tthe money\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is playing for, the money) -> the money (7088ms)\nWhat plays did Shakespeare write?\tGOLF\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Billy Williams, plays the sport, GOLF) -> GOLF (7218ms)\nWhat plays did Shakespeare write?\tfootball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, football) -> football (7175ms)\nWhat plays did Shakespeare write?\tlater\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, later) -> later (6987ms)\nWhat plays did Shakespeare write?\tForward\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Billy Williams, Position(s), Forward) -> Forward (7202ms)\nWhat plays did Shakespeare write?\told guys\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Buford, was the kid playing with, old guys) -> old guys (7012ms)\nWhat plays did Shakespeare write?\tsaint-josephs-hawks-basketball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Mario Williams, plays for the team, saint-josephs-hawks-basketball) -> saint-josephs-hawks-basketball (7213ms)\nWhat plays did Shakespeare write?\tquarterback\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, quarterback) -> quarterback (7032ms)\nWhat plays did Shakespeare write?\tcurrently\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, currently) -> currently (7230ms)\nWhat plays did Shakespeare write?\ta 14-3-3 mark\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (13th-seeded William Carey, sports, a 14-3-3 mark) -> a 14-3-3 mark (7226ms)\nWhat plays did Shakespeare write?\tnose tackle\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, nose tackle) -> nose tackle (7079ms)\nWhat plays did Shakespeare write?\tNYC.\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Deron Williams, wants to play in, NYC.) -> NYC. (7153ms)\nWhat plays did Shakespeare write?\tDefender\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Tommy Williams, Position(s), Defender) -> Defender (7230ms)\nWhat plays did Shakespeare write?\ttwo seasons\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, two seasons) -> two seasons (7213ms)\nWhat plays did Shakespeare write?\tDavis\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Buster Williams, played bass with, Davis) -> Davis (7153ms)\nWhat plays did Shakespeare write?\ta benefit concert\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, a benefit concert) -> a benefit concert (7189ms)\nWhat plays did Shakespeare write?\tthe general feeling\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Samuel Johnson, probably voiced, the general feeling) -> the general feeling (7218ms)\nWhat plays did Shakespeare write?\tjust five games\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, just five games) -> just five games (7189ms)\nWhat plays did Shakespeare write?\tthe San Francisco 49ers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has previously played for, the San Francisco 49ers) -> the San Francisco 49ers (7022ms)\nWhat plays did Shakespeare write?\ta poet\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, found his voice as, a poet) -> a poet (7213ms)\nWhat plays did Shakespeare write?\tPoint Guard\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, Point Guard) -> Point Guard (7002ms)\nWhat plays did Shakespeare write?\tAmherst\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Amherst) -> Amherst (7145ms)\nWhat plays did Shakespeare write?\t15 games\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 15 games) -> 15 games (7196ms)\nWhat plays did Shakespeare write?\tsanity\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Juan Williams, is a voice of, sanity) -> sanity (7145ms)\nWhat plays did Shakespeare write?\tpassage\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (my work pro-se, played a substantial role in, passage) -> passage (7060ms)\nWhat plays did Shakespeare write?\tWilliam & Mary Tribe men's basketball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (College of William and Mary, Sports teams, William & Mary Tribe men's basketball) -> William & Mary Tribe men's basketball (7096ms)\nWhat plays did Shakespeare write?\tOxfordshire\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams F1, Sports Team Location, Oxfordshire) -> Oxfordshire (7113ms)\nWhat plays did Shakespeare write?\t10 minutes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 10 minutes) -> 10 minutes (7032ms)\nWhat plays did Shakespeare write?\tthe genie\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, voiced, the genie) -> the genie (7129ms)\nWhat plays did Shakespeare write?\tFirst officer\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (William Riker's posting to the Enterprise D, Position, First officer) -> First officer (7145ms)\nWhat plays did Shakespeare write?\tfour NBA teams\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, four NBA teams) -> four NBA teams (7202ms)\nWhat plays did Shakespeare write?\ta raging\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, has played the game with, a raging) -> a raging (7153ms)\nWhat plays did Shakespeare write?\ttrust\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, enjoyed a position of, trust) -> trust (7230ms)\nWhat plays did Shakespeare write?\tAlbert Einstein\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Robin Williams, wants to play, Albert Einstein) -> Albert Einstein (7196ms)\nWhat plays did Shakespeare write?\tguitar and harmonica\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, guitar and harmonica) -> guitar and harmonica (7088ms)\nWhat plays did Shakespeare write?\tthe camera\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, likes to play with, the camera) -> the camera (7168ms)\nWhat plays did Shakespeare write?\tthe poetry\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, voice, $x) -> (those prose poems, joins voice with, the poetry) -> the poetry (7113ms)\nWhat plays did Shakespeare write?\tthe lead\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, the lead) -> the lead (7213ms)\nWhat plays did Shakespeare write?\tseveral international teams\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played basketball for, several international teams) -> several international teams (7218ms)\nWhat plays did Shakespeare write?\tcartoon\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, voiced, cartoon) -> cartoon (7137ms)\nWhat plays did Shakespeare write?\tfour years\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has been playing basketball for, four years) -> four years (7042ms)\nWhat plays did Shakespeare write?\tthe Charles Grodin role\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Robin Williams, had wanted to play, the Charles Grodin role) -> the Charles Grodin role (7105ms)\nWhat plays did Shakespeare write?\tBell Laboratories\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, accepted a position at, Bell Laboratories) -> Bell Laboratories (7226ms)\nWhat plays did Shakespeare write?\tvice president\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, left his position as, vice president) -> vice president (7239ms)\nWhat plays did Shakespeare write?\tTight end\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Roland Williams, Position(s), Tight end) -> Tight end (7153ms)\nWhat plays did Shakespeare write?\tthe FC Greater Boston Bolts\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the FC Greater Boston Bolts) -> the FC Greater Boston Bolts (7121ms)\nWhat plays did Shakespeare write?\tWilliams Ephs men's basketball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams College, Sports teams, Williams Ephs men's basketball) -> Williams Ephs men's basketball (7060ms)\nWhat plays did Shakespeare write?\tan instrument\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (plain prose, played upon, an instrument) -> an instrument (7230ms)\nWhat plays did Shakespeare write?\ta talking dog\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, provides the voice of, a talking dog) -> a talking dog (7230ms)\nWhat plays did Shakespeare write?\tthe Nets\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, playing for, the Nets) -> the Nets (7208ms)\nWhat plays did Shakespeare write?\tIce Hockey\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Earl Ormshaw, Sport, Ice Hockey) -> Ice Hockey (7105ms)\nWhat plays did Shakespeare write?\tcricket\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, cricket) -> cricket (7105ms)\nWhat plays did Shakespeare write?\tmatches\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, was playing with, matches) -> matches (7182ms)\nWhat plays did Shakespeare write?\tFly-half\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Murray Williams, Position, Fly-half) -> Fly-half (7202ms)\nWhat plays did Shakespeare write?\tmore confidence\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, is playing with, more confidence) -> more confidence (7032ms)\nWhat plays did Shakespeare write?\tthe anti-feudalist struggles\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (prose, played an important role in, the anti-feudalist struggles) -> the anti-feudalist struggles (7168ms)\nWhat plays did Shakespeare write?\tnew head coach Charlie Weis ? Jayhawks\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, play for, new head coach Charlie Weis ? Jayhawks) -> new head coach Charlie Weis ? Jayhawks (7129ms)\nWhat plays did Shakespeare write?\tan honest\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, was just voicing, an honest) -> an honest (7189ms)\nWhat plays did Shakespeare write?\tBaritone\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Walker, Voice Type, Baritone) -> Baritone (7070ms)\nWhat plays did Shakespeare write?\ta whole segment\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Hank Williams, was the voice of, a whole segment) -> a whole segment (7060ms)\nWhat plays did Shakespeare write?\tthe narrow window\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (S. Williams, voiced concern over, the narrow window) -> the narrow window (7202ms)\nWhat plays did Shakespeare write?\tthe R&B/funk outfit\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played keyboards for, the R&B/funk outfit) -> the R&B/funk outfit (7182ms)\nWhat plays did Shakespeare write?\tDwight\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Deron Williams, wants to play with, Dwight) -> Dwight (7088ms)\nWhat plays did Shakespeare write?\tone year\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, one year) -> one year (7153ms)\nWhat plays did Shakespeare write?\tthe Buccaneers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played five successful seasons with, the Buccaneers) -> the Buccaneers (7208ms)\nWhat plays did Shakespeare write?\tthe wit and eccentric charm\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Katt, plays his part with, the wit and eccentric charm) -> the wit and eccentric charm (7088ms)\nWhat plays did Shakespeare write?\tovertime\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, should have played for, overtime) -> overtime (7061ms)\nWhat plays did Shakespeare write?\ta top 35 RPI\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William & Mary, sported, a top 35 RPI) -> a top 35 RPI (7121ms)\nWhat plays did Shakespeare write?\tthe University\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the University) -> the University (7070ms)\nWhat plays did Shakespeare write?\tTampa\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also plays baseball for, Tampa) -> Tampa (7189ms)\nWhat plays did Shakespeare write?\tleft field\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, left field) -> left field (7042ms)\nWhat plays did Shakespeare write?\tlimited minutes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, limited minutes) -> limited minutes (7153ms)\nWhat plays did Shakespeare write?\tThe next season\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, The next season) -> The next season (7137ms)\nWhat plays did Shakespeare write?\tteam athletes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (the William Monroe, sports, team athletes) -> team athletes (7022ms)\nWhat plays did Shakespeare write?\ttwo reasons\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, play more for, two reasons) -> two reasons (6974ms)\nWhat plays did Shakespeare write?\tthe roof\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (the Williams-Kuznetsova match, played with, the roof) -> the roof (7226ms)\nWhat plays did Shakespeare write?\tLance\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Lance) -> Lance (7088ms)\nWhat plays did Shakespeare write?\tthree seasons\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, three seasons) -> three seasons (7202ms)\nWhat plays did Shakespeare write?\tthe Grand Council\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Conrad, played the voice of, the Grand Council) -> the Grand Council (7168ms)\nWhat plays did Shakespeare write?\tthe complexities\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, gives rich voice to, the complexities) -> the complexities (7042ms)\nWhat plays did Shakespeare write?\ta bow\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Michelle Williams, is sporting, a bow) -> a bow (7230ms)\nWhat plays did Shakespeare write?\tright-center\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, right-center) -> right-center (7079ms)\nWhat plays did Shakespeare write?\tthe same arguments\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Easterly, have voiced, the same arguments) -> the same arguments (7189ms)\nWhat plays did Shakespeare write?\tthemes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (dialogue centred prose, plays having, themes) -> themes (7145ms)\nWhat plays did Shakespeare write?\tthe Titans\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the Titans) -> the Titans (7022ms)\nWhat plays did Shakespeare write?\tRuby\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Ruby) -> Ruby (7129ms)\nWhat plays did Shakespeare write?\tseveral Zimbabwe National Teams\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has played for, several Zimbabwe National Teams) -> several Zimbabwe National Teams (7175ms)\nWhat plays did Shakespeare write?\ttennis\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, tennis) -> tennis (7129ms)\nWhat plays did Shakespeare write?\tpain\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, pain) -> pain (7218ms)\nWhat plays did Shakespeare write?\tSy Parrish\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Sy Parrish) -> Sy Parrish (7088ms)\nWhat plays did Shakespeare write?\tmoviegoers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, plays with, moviegoers) -> moviegoers (7129ms)\nWhat plays did Shakespeare write?\tthe Sioux Falls Skyforce\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, plays for, the Sioux Falls Skyforce) -> the Sioux Falls Skyforce (7012ms)\nWhat plays did Shakespeare write?\tSarah Vaughn\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Joe Williams, has played with, Sarah Vaughn) -> Sarah Vaughn (7230ms)\nWhat plays did Shakespeare write?\ta boy\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, a boy) -> a boy (7226ms)\nWhat plays did Shakespeare write?\tthe club\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has played his last game for, the club) -> the club (7208ms)\nWhat plays did Shakespeare write?\toften\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, often) -> often (7088ms)\nWhat plays did Shakespeare write?\tthe Georgia Alliance\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, holds board positions with, the Georgia Alliance) -> the Georgia Alliance (7012ms)\nWhat plays did Shakespeare write?\tthe real issues\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, has any positions on, the real issues) -> the real issues (7213ms)\nWhat plays did Shakespeare write?\tHelena High School\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, Helena High School) -> Helena High School (7137ms)\nWhat plays did Shakespeare write?\tsecond fiddle\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, second fiddle) -> second fiddle (7226ms)\nWhat plays did Shakespeare write?\tnear-perfect pitch\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Meikle, plays this melody with, near-perfect pitch) -> near-perfect pitch (7096ms)\nWhat plays did Shakespeare write?\tUSA Basketball\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, USA Basketball) -> USA Basketball (7022ms)\nWhat plays did Shakespeare write?\ta bunch\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Deron Williams, is playing with, a bunch) -> a bunch (7096ms)\nWhat plays did Shakespeare write?\ta right leg stress fracture\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, will play with, a right leg stress fracture) -> a right leg stress fracture (7121ms)\nWhat plays did Shakespeare write?\tBaltimore\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played one season for, Baltimore) -> Baltimore (7012ms)\nWhat plays did Shakespeare write?\ta number\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Hearn ?, played with, a number) -> a number (7221ms)\nWhat plays did Shakespeare write?\tCarols N.\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Eaton, plays with, Carols N.) -> Carols N. (7235ms)\nWhat plays did Shakespeare write?\tthe Genie\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, voicing, the Genie) -> the Genie (7113ms)\nWhat plays did Shakespeare write?\tBatman\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, play with, Batman) -> Batman (7051ms)\nWhat plays did Shakespeare write?\tthe Clippers\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, had a four-point play for, the Clippers) -> the Clippers (7105ms)\nWhat plays did Shakespeare write?\tthe literary foundations\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, play, $x) -> (prose, played in, the literary foundations) -> the literary foundations (7105ms)\nWhat plays did Shakespeare write?\tthe Phoenix/Arizona Cardinals\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Phoenix/Arizona Cardinals) -> the Phoenix/Arizona Cardinals (7189ms)\nWhat plays did Shakespeare write?\tthe Tampa group\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Mason Williams, is playing with, the Tampa group) -> the Tampa group (7070ms)\nWhat plays did Shakespeare write?\tMiles Davis\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Tony Williams, played with, Miles Davis) -> Miles Davis (7235ms)\nWhat plays did Shakespeare write?\tfield\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, field) -> field (7121ms)\nWhat plays did Shakespeare write?\tthe drums\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the drums) -> the drums (7129ms)\nWhat plays did Shakespeare write?\tthe fiddle\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, the fiddle) -> the fiddle (7012ms)\nWhat plays did Shakespeare write?\tGermany\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, Germany) -> Germany (7129ms)\nWhat plays did Shakespeare write?\tdrums for the band\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, drums for the band) -> drums for the band (7113ms)\nWhat plays did Shakespeare write?\tthe cast metal images\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Hugh, played with, the cast metal images) -> the cast metal images (7079ms)\nWhat plays did Shakespeare write?\tfirst base\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, first base) -> first base (7002ms)\nWhat plays did Shakespeare write?\tthe Tri-City Eagles\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played Legion ball for, the Tri-City Eagles) -> the Tri-City Eagles (7160ms)\nWhat plays did Shakespeare write?\tseven years\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has been playing poker for, seven years) -> seven years (7175ms)\nWhat plays did Shakespeare write?\tthe NT band Swamp Jockies\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Todd Williams, was playing with, the NT band Swamp Jockies) -> the NT band Swamp Jockies (7079ms)\nWhat plays did Shakespeare write?\tlast month\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, last month) -> last month (6974ms)\nWhat plays did Shakespeare write?\tDemocrats\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Juan Williams, is a poor voice for, Democrats) -> Democrats (7113ms)\nWhat plays did Shakespeare write?\tthe Hornets\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the Hornets) -> the Hornets (7105ms)\nWhat plays did Shakespeare write?\ta grin\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Officer Ryan Williams, sported, a grin) -> a grin (7196ms)\nWhat plays did Shakespeare write?\tspirit children\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Bessie Williams, played with, spirit children) -> spirit children (7061ms)\nWhat plays did Shakespeare write?\toakland raiders\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (deangelo williams, plays for the team, oakland raiders) -> oakland raiders (6987ms)\nWhat plays did Shakespeare write?\tDuke Ellington\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Francis Williams, played trumpet with, Duke Ellington) -> Duke Ellington (7096ms)\nWhat plays did Shakespeare write?\tthe Broncos\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, has played his last game with, the Broncos) -> the Broncos (7129ms)\nWhat plays did Shakespeare write?\tcompassion\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Tennessee Williams, is the constant voice of, compassion) -> compassion (7218ms)\nWhat plays did Shakespeare write?\tan autistic boy\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (prose, voice, $x) -> (well-written prose, can make the voice of, an autistic boy) -> an autistic boy (7113ms)\nWhat plays did Shakespeare write?\tAmerican football\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (William L. Allen, Sport, American football) -> American football (7182ms)\nWhat plays did Shakespeare write?\tthe Exton Crossroads Baseball Club\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, played baseball for, the Exton Crossroads Baseball Club) -> the Exton Crossroads Baseball Club (7002ms)\nWhat plays did Shakespeare write?\thockey\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (Mario Williams, plays the sport, hockey) -> hockey (7202ms)\nWhat plays did Shakespeare write?\tcenter field\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, center field) -> center field (7145ms)\nWhat plays did Shakespeare write?\texecutive secretary\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, took the position for, executive secretary) -> executive secretary (7218ms)\nWhat plays did Shakespeare write?\tthe Buckeyes\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, play big minutes for, the Buckeyes) -> the Buckeyes (6989ms)\nWhat plays did Shakespeare write?\ta snappy\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played the hefty horn with, a snappy) -> a snappy (7160ms)\nWhat plays did Shakespeare write?\tthe Fenway Boys\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the Fenway Boys) -> the Fenway Boys (7208ms)\nWhat plays did Shakespeare write?\tKitt WEB LINKS\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (April Curtis William Daniels, is the voice of, Kitt WEB LINKS) -> Kitt WEB LINKS (7235ms)\nWhat plays did Shakespeare write?\ta one-goal handicap\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, plays with, a one-goal handicap) -> a one-goal handicap (7129ms)\nWhat plays did Shakespeare write?\ta leading role\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, a leading role) -> a leading role (7219ms)\nWhat plays did Shakespeare write?\tLast year\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, Last year) -> Last year (7012ms)\nWhat plays did Shakespeare write?\tHurd\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (wide receiver Roy Williams, played with, Hurd) -> Hurd (7202ms)\nWhat plays did Shakespeare write?\tfools\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, play the public for, fools) -> fools (7175ms)\nWhat plays did Shakespeare write?\ta few elite\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Pastor Lindsey Williams, has the Voice of, a few elite) -> a few elite (6974ms)\nWhat plays did Shakespeare write?\ttwo popular animated movies\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, lent his voice to, two popular animated movies) -> two popular animated movies (7105ms)\nWhat plays did Shakespeare write?\tbook\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, sport, $x) -> (the William Hill, sports, book) -> book (7196ms)\nWhat plays did Shakespeare write?\ttwo dancing penguins\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, voices, two dancing penguins) -> two dancing penguins (7105ms)\nWhat plays did Shakespeare write?\tNPR\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, provided a valuable voice on, NPR) -> NPR (7096ms)\nWhat plays did Shakespeare write?\ta focused intensity\t0.444444444444\tWhat plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, plays with, a focused intensity) -> a focused intensity (7121ms)\nWhat plays did Shakespeare write?\tGuard\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Guard, played even with, Williams) -> Guard (7263ms)\nWhat plays did Shakespeare write?\tMatt Bowen\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Matt Bowen, played under, Williams) -> Matt Bowen (7263ms)\nWhat plays did Shakespeare write?\ta fantasy setting\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, prose) -> (a fantasy setting, plays off, the droll prose) -> a fantasy setting (7277ms)\nWhat plays did Shakespeare write?\tThundercat\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Thundercat, played, Williams?) -> Thundercat (7261ms)\nWhat plays did Shakespeare write?\tJarvis\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Jarvis, has made the voices of, William) -> Jarvis (7247ms)\nWhat plays did Shakespeare write?\tJames Daly\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (James Daly, plays, Gart Williams) -> James Daly (7258ms)\nWhat plays did Shakespeare write?\tthe Genie character\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the Genie character, voiced by, Robin Williams) -> the Genie character (7266ms)\nWhat plays did Shakespeare write?\tAlternative WCFM\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Alternative WCFM, is the radio voice of, Williams College) -> Alternative WCFM (7266ms)\nWhat plays did Shakespeare write?\tChancellor Birgeneau\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Chancellor Birgeneau, had discussed the position with, Williams) -> Chancellor Birgeneau (7251ms)\nWhat plays did Shakespeare write?\ta country music singer\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (a country music singer, played with, Wil?liams) -> a country music singer (7277ms)\nWhat plays did Shakespeare write?\tRyan Robertson\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Ryan Robertson, played for, Williams) -> Ryan Robertson (7272ms)\nWhat plays did Shakespeare write?\tGibson\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Gibson, plays, William Wallace) -> Gibson (7274ms)\nWhat plays did Shakespeare write?\tCAROLINE CAVE\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (CAROLINE CAVE, plays, William) -> CAROLINE CAVE (7278ms)\nWhat plays did Shakespeare write?\tMartin Jarvis\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Martin Jarvis, has made the voices of, William) -> Martin Jarvis (7254ms)\nWhat plays did Shakespeare write?\tStosur\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Stosur, could play, Williams) -> Stosur (7243ms)\nWhat plays did Shakespeare write?\ta bat\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (a bat, voiced by, Robin Williams) -> a bat (7278ms)\nWhat plays did Shakespeare write?\tNasser\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Nasser, has positioned, Williams) -> Nasser (7276ms)\nWhat plays did Shakespeare write?\tsuch unspoken horror\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (such unspoken horror, found a powerful voice in, Williams) -> such unspoken horror (7266ms)\nWhat plays did Shakespeare write?\tA veteran keyboardist\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (A veteran keyboardist, played with, Tony Williams) -> A veteran keyboardist (7277ms)\nWhat plays did Shakespeare write?\tcalls\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (calls, voiced by, Spencer Tracy and William Demarest) -> calls (7270ms)\nWhat plays did Shakespeare write?\tGrant\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Grant, played with, Tony Williams) -> Grant (7276ms)\nWhat plays did Shakespeare write?\tAlaska\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Alaska, played pool with, William Gaddis) -> Alaska (7277ms)\nWhat plays did Shakespeare write?\tThomas\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Thomas, has played with, William Parker) -> Thomas (7268ms)\nWhat plays did Shakespeare write?\tFiona Stevenson\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Fiona Stevenson, will fill the position as, William Hill) -> Fiona Stevenson (7270ms)\nWhat plays did Shakespeare write?\tMel Gibson\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Mel Gibson, playing, William Wallace) -> Mel Gibson (7274ms)\nWhat plays did Shakespeare write?\tBilly Crudup\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Billy Crudup, plays, William Bloom) -> Billy Crudup (7272ms)\nWhat plays did Shakespeare write?\tSkiff\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Skiff, voiced by, Seann William Scott) -> Skiff (7268ms)\nWhat plays did Shakespeare write?\tYeo\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Yeo, offered the position to, Captain William Howe Mulcaster) -> Yeo (7270ms)\nWhat plays did Shakespeare write?\tThe deal\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (The deal, will position, Williams Cos.) -> The deal (7275ms)\nWhat plays did Shakespeare write?\tHughes\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, prose) -> (Hughes, use a poetic voice in, his prose) -> Hughes (7243ms)\nWhat plays did Shakespeare write?\tthe story\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the story, is played, William) -> the story (7247ms)\nWhat plays did Shakespeare write?\tSan Antonio\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (San Antonio, played with, Hank Williams) -> San Antonio (7261ms)\nWhat plays did Shakespeare write?\tDr. Creswell\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Dr. Creswell, has studied voice with, William Appel) -> Dr. Creswell (7277ms)\nWhat plays did Shakespeare write?\tNick Lucena\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Nick Lucena, is playing with, Mark Williams) -> Nick Lucena (7247ms)\nWhat plays did Shakespeare write?\tthe guy\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (the guy, plays with, Hank Williams) -> the guy (7258ms)\nWhat plays did Shakespeare write?\tthe younger Gerald Sensabaugh\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the younger Gerald Sensabaugh, played for, Williams) -> the younger Gerald Sensabaugh (7277ms)\nWhat plays did Shakespeare write?\tWHB\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (WHB, indicates the position of, the Sir William Hardy Building) -> WHB (7266ms)\nWhat plays did Shakespeare write?\tDallas\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Dallas, wants to play with, Deron Williams) -> Dallas (7270ms)\nWhat plays did Shakespeare write?\tlocal jazz guitar great Lyle Harris\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (local jazz guitar great Lyle Harris, play with, Claude Williams) -> local jazz guitar great Lyle Harris (7277ms)\nWhat plays did Shakespeare write?\tthe bands\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the bands, played with, Williams) -> the bands (7274ms)\nWhat plays did Shakespeare write?\tFull-back Shaun Dowling\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Full-back Shaun Dowling, played a slick one-two with, Williams) -> Full-back Shaun Dowling (7263ms)\nWhat plays did Shakespeare write?\tLeung Ka-Fai\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Leung Ka-Fai, plays, William) -> Leung Ka-Fai (7239ms)\nWhat plays did Shakespeare write?\tthe kind of book\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, prose) -> (the kind of book, plays down, its finest passages of prose) -> the kind of book (7239ms)\nWhat plays did Shakespeare write?\tWilde\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, prose) -> (Wilde, had finally found his voice in, prose) -> Wilde (7261ms)\nWhat plays did Shakespeare write?\tSparrow\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Sparrow, soon became the voice of, the PNM and Eric Williams) -> Sparrow (7258ms)\nWhat plays did Shakespeare write?\tFern?ndez\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Fern?ndez, first played with, ubiquitous bassist William Parker) -> Fern?ndez (7276ms)\nWhat plays did Shakespeare write?\tTommy\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Tommy, played with, Hank Williams Jr.) -> Tommy (7254ms)\nWhat plays did Shakespeare write?\tLondon\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (London, played, William) -> London (7247ms)\nWhat plays did Shakespeare write?\tRocky Mount?s Tia Hudgins\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Rocky Mount?s Tia Hudgins, played against, Williams) -> Rocky Mount?s Tia Hudgins (7268ms)\nWhat plays did Shakespeare write?\tThe cartoon\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (The cartoon, was voiced by, Kenneth Williams) -> The cartoon (7266ms)\nWhat plays did Shakespeare write?\tthe tennis\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the tennis, playing, Williams sisters) -> the tennis (7275ms)\nWhat plays did Shakespeare write?\tNico H?lkenberg\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Nico H?lkenberg, claimed his maiden pole position for, Williams) -> Nico H?lkenberg (7243ms)\nWhat plays did Shakespeare write?\tJohn Allore\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (John Allore, plays, William) -> John Allore (7263ms)\nWhat plays did Shakespeare write?\tSamantha Stosur\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Samantha Stosur, played, Williams) -> Samantha Stosur (7270ms)\nWhat plays did Shakespeare write?\tAntonio Pierce\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Antonio Pierce, played under, Williams) -> Antonio Pierce (7263ms)\nWhat plays did Shakespeare write?\tline brawls\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (line brawls, played with, Tiger Williams) -> line brawls (7274ms)\nWhat plays did Shakespeare write?\tthe penguin\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the penguin, voiced by, Robin Williams) -> the penguin (7254ms)\nWhat plays did Shakespeare write?\tthe crowd\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the crowd, voiced their displeasure with, the Williams sisters) -> the crowd (7254ms)\nWhat plays did Shakespeare write?\tthe Pope Selection Genie\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the Pope Selection Genie, is voiced by, Robin Williams) -> the Pope Selection Genie (7274ms)\nWhat plays did Shakespeare write?\tRobison\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Robison, also played with, Bears WR Roy Williams) -> Robison (7278ms)\nWhat plays did Shakespeare write?\tJamie Foxx\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Jamie Foxx, played, Williams) -> Jamie Foxx (7268ms)\nWhat plays did Shakespeare write?\tEmma Chambers\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Emma Chambers, plays, William) -> Emma Chambers (7261ms)\nWhat plays did Shakespeare write?\tHugh Grant\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Hugh Grant, plays, William Thacker) -> Hugh Grant (7268ms)\nWhat plays did Shakespeare write?\tthe position\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the position, plays, Williams) -> the position (7263ms)\nWhat plays did Shakespeare write?\tDale Potter\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Dale Potter, played fiddle with, Hank Williams) -> Dale Potter (7270ms)\nWhat plays did Shakespeare write?\tMoon Bloodgood\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Moon Bloodgood, plays, Blair Williams) -> Moon Bloodgood (7266ms)\nWhat plays did Shakespeare write?\tOdom\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Odom, will go play with, Deron Williams) -> Odom (7272ms)\nWhat plays did Shakespeare write?\tWill\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Will, left his position at, the William Reese Company) -> Will (7251ms)\nWhat plays did Shakespeare write?\tDave Hoftra\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Dave Hoftra, have played with, William Parker?s large bands) -> Dave Hoftra (7278ms)\nWhat plays did Shakespeare write?\tveteran big man Chuck Hayes\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (veteran big man Chuck Hayes, played with, Williams) -> veteran big man Chuck Hayes (7266ms)\nWhat plays did Shakespeare write?\tthe help\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the help, play, Williams) -> the help (7272ms)\nWhat plays did Shakespeare write?\tformer cornerback Shawn Springs\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (former cornerback Shawn Springs, played for, Williams) -> former cornerback Shawn Springs (7274ms)\nWhat plays did Shakespeare write?\tWilliams College\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, sport, william) -> (Williams College, Sports teams, Williams Ephs men's basketball) -> Williams College (7274ms)\nWhat plays did Shakespeare write?\tblue\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (blue, has the voice of, robin Williams) -> blue (7263ms)\nWhat plays did Shakespeare write?\tformer-defensive back Cory Wire\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (former-defensive back Cory Wire, played for, Williams) -> former-defensive back Cory Wire (7261ms)\nWhat plays did Shakespeare write?\tformer Bills LB Coy Wire\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (former Bills LB Coy Wire, played under, Williams) -> former Bills LB Coy Wire (7272ms)\nWhat plays did Shakespeare write?\tAidan Quinn\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Aidan Quinn, plays, William Franklin) -> Aidan Quinn (7266ms)\nWhat plays did Shakespeare write?\tthe future Peggy Olsen\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the future Peggy Olsen, played, Williams) -> the future Peggy Olsen (7243ms)\nWhat plays did Shakespeare write?\tA tape\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (A tape, played, Williams) -> A tape (7272ms)\nWhat plays did Shakespeare write?\tthe current Redskins players\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the current Redskins players, played under, Williams) -> the current Redskins players (7268ms)\nWhat plays did Shakespeare write?\tlife\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (life, also finds voice in, Raymond Williams idea) -> life (7258ms)\nWhat plays did Shakespeare write?\tSpace\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Space, has the aboriginal voice of, Grandfather William Commanda) -> Space (7270ms)\nWhat plays did Shakespeare write?\tSinger\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Singer, held positions at, William Hill) -> Singer (7258ms)\nWhat plays did Shakespeare write?\tGordon\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, want to play, william) -> (Gordon, wants to play, WESTWEGO ? Monty Williams) -> Gordon (7261ms)\nWhat plays did Shakespeare write?\tThorson\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Thorson, plays as, ?William?) -> Thorson (7275ms)\nWhat plays did Shakespeare write?\tthe din\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the din, could be heard the voice of, William B. Clark) -> the din (7276ms)\nWhat plays did Shakespeare write?\tZeitlin\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Zeitlin, loved playing with, bassist Buster Williams) -> Zeitlin (7247ms)\nWhat plays did Shakespeare write?\tQueen Latifah\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Queen Latifah, plays dress up with, Wendy Williams) -> Queen Latifah (7272ms)\nWhat plays did Shakespeare write?\tWhite and Bobras\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (White and Bobras, plays, Williams) -> White and Bobras (7239ms)\nWhat plays did Shakespeare write?\tFujita\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Fujita, played under, Williams) -> Fujita (7261ms)\nWhat plays did Shakespeare write?\tMarling\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Marling, plays, Rhoda Williams) -> Marling (7243ms)\nWhat plays did Shakespeare write?\tthe boy\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the boy, playing, William) -> the boy (7266ms)\nWhat plays did Shakespeare write?\tIman\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, sport, william) -> (Iman, sported on, The Wendy Williams Show) -> Iman (7276ms)\nWhat plays did Shakespeare write?\tgarden Katala\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (garden Katala, was playing a word game with, William) -> garden Katala (7247ms)\nWhat plays did Shakespeare write?\tRamon\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Ramon, voiced by, Robin Williams) -> Ramon (7254ms)\nWhat plays did Shakespeare write?\tthe Guru\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the Guru, also voiced by, ROBIN WILLIAMS) -> the Guru (7276ms)\nWhat plays did Shakespeare write?\tGreetings\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Greetings, were voiced by, William R. Kreeb) -> Greetings (7268ms)\nWhat plays did Shakespeare write?\tFour players\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Four players, played for, Williams) -> Four players (7278ms)\nWhat plays did Shakespeare write?\tthe ?golden\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the ?golden, voiced, ? Ted Williams) -> the ?golden (7251ms)\nWhat plays did Shakespeare write?\tHeath Ledger\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Heath Ledger, plays, William Thatcher) -> Heath Ledger (7251ms)\nWhat plays did Shakespeare write?\tfour players\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (four players, played under, Williams) -> four players (7268ms)\nWhat plays did Shakespeare write?\tMcLaughlin\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (McLaughlin, played with, Tony Williams ?s Lifetime) -> McLaughlin (7276ms)\nWhat plays did Shakespeare write?\tThe young actor\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (The young actor, plays, William) -> The young actor (7274ms)\nWhat plays did Shakespeare write?\tSteve\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Steve, was invited to play with, William Jefferson) -> Steve (7278ms)\nWhat plays did Shakespeare write?\ta Director\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (a Director, is a new position for, William) -> a Director (7254ms)\nWhat plays did Shakespeare write?\tdevelopers\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (developers, voiced, developer advocate Abraham Williams) -> developers (7277ms)\nWhat plays did Shakespeare write?\tformer NFL safety Matt Bowen\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (former NFL safety Matt Bowen, played under, Williams) -> former NFL safety Matt Bowen (7247ms)\nWhat plays did Shakespeare write?\tMorgia\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Morgia, has played with, William Parker) -> Morgia (7251ms)\nWhat plays did Shakespeare write?\tthe young actor\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the young actor, plays, William) -> the young actor (7263ms)\nWhat plays did Shakespeare write?\tCantor\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Cantor, played, Williams) -> Cantor (7263ms)\nWhat plays did Shakespeare write?\tThomas Howes\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Thomas Howes, played, William) -> Thomas Howes (7279ms)\nWhat plays did Shakespeare write?\tPatrick Fugit\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Patrick Fugit, plays, William Miller) -> Patrick Fugit (7275ms)\nWhat plays did Shakespeare write?\tMallinger\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Mallinger, has played with, Joe Williams) -> Mallinger (7251ms)\nWhat plays did Shakespeare write?\tLisle Wilkerson\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Lisle Wilkerson, is the voice of, Nina Williams) -> Lisle Wilkerson (7274ms)\nWhat plays did Shakespeare write?\tHouse\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (House, plays with, William?s) -> House (7263ms)\nWhat plays did Shakespeare write?\tthe author\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, prose) -> (the author, is definitely playing with, prose styles) -> the author (7278ms)\nWhat plays did Shakespeare write?\tWhalen\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Whalen, played three seasons with, McWilliams-Franklin) -> Whalen (7276ms)\nWhat plays did Shakespeare write?\tthe horse\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the horse, voiced its protest, nearly unseating William) -> the horse (7272ms)\nWhat plays did Shakespeare write?\tyou?ll\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (you?ll, hear the unmistakable voice of, Michael C. Williams) -> you?ll (7277ms)\nWhat plays did Shakespeare write?\tWCFM\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (WCFM, is the radio voice of, Williams College) -> WCFM (7254ms)\nWhat plays did Shakespeare write?\tsouth-carolina-gamecocks-basketball\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, sport, william) -> (south-carolina-gamecocks-basketball, is the home venue for the sports team, Williams-Brice Stadium) -> south-carolina-gamecocks-basketball (7276ms)\nWhat plays did Shakespeare write?\ta musician and comedian\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (a musician and comedian, played with, Hank Williams) -> a musician and comedian (7243ms)\nWhat plays did Shakespeare write?\tthe Philharmonic\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the Philharmonic, enthusiastically played, Williams) -> the Philharmonic (7251ms)\nWhat plays did Shakespeare write?\tAnderson\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Anderson, played with, Williams) -> Anderson (7278ms)\nWhat plays did Shakespeare write?\tFormer NFL strong safety Matt Bowen\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Former NFL strong safety Matt Bowen, played under, Williams) -> Former NFL strong safety Matt Bowen (7270ms)\nWhat plays did Shakespeare write?\tthe Knight Rider GPS\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the Knight Rider GPS, will feature the voice of, William Daniels) -> the Knight Rider GPS (7278ms)\nWhat plays did Shakespeare write?\tThe game\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (The game, also features the voice of, William S. Burroughs) -> The game (7274ms)\nWhat plays did Shakespeare write?\tDoc\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Doc, played with, Williams) -> Doc (7275ms)\nWhat plays did Shakespeare write?\tMcArthur\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (McArthur, accepted a position with, William F. White Ltd.) -> McArthur (7268ms)\nWhat plays did Shakespeare write?\tWashington\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Washington, offered the position to, William Cushing) -> Washington (7268ms)\nWhat plays did Shakespeare write?\tLord\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Lord, has held positions at, Martin Williams Advertising) -> Lord (7277ms)\nWhat plays did Shakespeare write?\t6 and 16\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (6 and 16, would play basketball with, Williams) -> 6 and 16 (7247ms)\nWhat plays did Shakespeare write?\tCoy Wire\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Coy Wire, played for, Williams) -> Coy Wire (7270ms)\nWhat plays did Shakespeare write?\tClaymation Scooby\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Claymation Scooby, voiced by, William Hurt) -> Claymation Scooby (7258ms)\nWhat plays did Shakespeare write?\tteams\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (teams, can play, Williams) -> teams (7247ms)\nWhat plays did Shakespeare write?\tWashburn\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Washburn, played with, Dick Williams) -> Washburn (7247ms)\nWhat plays did Shakespeare write?\tMichael Knight Kitt\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Michael Knight Kitt, was voiced by, William Daniels) -> Michael Knight Kitt (7278ms)\nWhat plays did Shakespeare write?\tArreguin\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Arreguin, accepted a position in, Williams) -> Arreguin (7277ms)\nWhat plays did Shakespeare write?\tEastwood\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Eastwood, playing, William Munny) -> Eastwood (7263ms)\nWhat plays did Shakespeare write?\t9:53 p.m. Sundiata Gaines\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (9:53 p.m. Sundiata Gaines, is playing well with, Deron Williams) -> 9:53 p.m. Sundiata Gaines (7261ms)\nWhat plays did Shakespeare write?\tthe MBA\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, prose) -> (the MBA, has voiced concern about, pro-se litigants) -> the MBA (7251ms)\nWhat plays did Shakespeare write?\tThe actor\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (The actor, playing, William) -> The actor (7270ms)\nWhat plays did Shakespeare write?\tPierce\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Pierce, played for, Williams) -> Pierce (7278ms)\nWhat plays did Shakespeare write?\ttwo selections Andrew Cyrille\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (two selections Andrew Cyrille, played with, Williams) -> two selections Andrew Cyrille (7277ms)\nWhat plays did Shakespeare write?\tthe defense\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the defense, to play, Williams) -> the defense (7272ms)\nWhat plays did Shakespeare write?\tElkhart Central Jazz Band\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Elkhart Central Jazz Band, got to play with, Skinny Williams) -> Elkhart Central Jazz Band (7239ms)\nWhat plays did Shakespeare write?\tassistant dean\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (assistant dean, held faculty positions at, Williams College) -> assistant dean (7266ms)\nWhat plays did Shakespeare write?\tthe narrative\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, prose) -> (the narrative, play, PROSE DRAMA) -> the narrative (7243ms)\nWhat plays did Shakespeare write?\ta man\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (a man, played a year with, Tony Williams) -> a man (7243ms)\nWhat plays did Shakespeare write?\tMr Q\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Mr Q, also voiced, William Miles) -> Mr Q (7243ms)\nWhat plays did Shakespeare write?\tJimmy Giles\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Jimmy Giles, played with, Doug Williams) -> Jimmy Giles (7261ms)\nWhat plays did Shakespeare write?\tformer Redskin Matt Bowen\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (former Redskin Matt Bowen, played for, Williams) -> former Redskin Matt Bowen (7258ms)\nWhat plays did Shakespeare write?\tBrees\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Brees, played with, Williams) -> Brees (7278ms)\nWhat plays did Shakespeare write?\tRyne Sandberg\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Ryne Sandberg, played with, Billy Williams) -> Ryne Sandberg (7270ms)\nWhat plays did Shakespeare write?\tMackie\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Mackie, plays, William) -> Mackie (7266ms)\nWhat plays did Shakespeare write?\tClaxton\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Claxton, played with, William McGirt) -> Claxton (7278ms)\nWhat plays did Shakespeare write?\tClint Eastwood\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Clint Eastwood, plays, William Munny) -> Clint Eastwood (7258ms)\nWhat plays did Shakespeare write?\tTony\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Tony, would usually play football with, Jason Williams) -> Tony (7239ms)\nWhat plays did Shakespeare write?\tMr. Moiseyev\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Mr. Moiseyev, played a match with, William Docherty) -> Mr. Moiseyev (7258ms)\nWhat plays did Shakespeare write?\tThe horse\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (The horse, voiced its protest nearly unseating, William) -> The horse (7274ms)\nWhat plays did Shakespeare write?\tThe Prince\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (The Prince, often played with, Prince William) -> The Prince (7268ms)\nWhat plays did Shakespeare write?\tTim Robbins\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Tim Robbins, plays, William) -> Tim Robbins (7276ms)\nWhat plays did Shakespeare write?\tJosh Bryant\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (Josh Bryant, is filling the position vacated by, William Howell) -> Josh Bryant (7258ms)\nWhat plays did Shakespeare write?\tState University\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, sport, william) -> (State University, is a sports team also known as, williams baptist college) -> State University (7278ms)\nWhat plays did Shakespeare write?\tKitna\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Kitna, has played with, new # 1 receiver Roy Williams) -> Kitna (7263ms)\nWhat plays did Shakespeare write?\tMacNichol\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (MacNichol, was also writing plays with, Williams) -> MacNichol (7275ms)\nWhat plays did Shakespeare write?\tBirtles\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (Birtles, played with, the Williams-Lawrence-Krstian lineup) -> Birtles (7243ms)\nWhat plays did Shakespeare write?\tEd Harris\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Ed Harris, played, William Walker) -> Ed Harris (7268ms)\nWhat plays did Shakespeare write?\tShanks\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Shanks, was playing, Williams) -> Shanks (7263ms)\nWhat plays did Shakespeare write?\tDeliberate deformations\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, prose) -> (Deliberate deformations, play with, the prose) -> Deliberate deformations (7272ms)\nWhat plays did Shakespeare write?\tcryogenics employees\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (cryogenics employees, play baseball with, Ted Williams) -> cryogenics employees (7272ms)\nWhat plays did Shakespeare write?\t12 Special Olympians\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (12 Special Olympians, will play with, Williams) -> 12 Special Olympians (7276ms)\nWhat plays did Shakespeare write?\tthe Union\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the Union, played, Williams) -> the Union (7261ms)\nWhat plays did Shakespeare write?\tMinorKey\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, prose) -> (MinorKey, left the position of, Prose Gallery Director) -> MinorKey (7258ms)\nWhat plays did Shakespeare write?\tMoebius\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Moebius, plays upon, William) -> Moebius (7272ms)\nWhat plays did Shakespeare write?\tConnery\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Connery, plays, William) -> Connery (7275ms)\nWhat plays did Shakespeare write?\tCollege of William and Mary\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, sport, william) -> (College of William and Mary, Sports teams, William & Mary Tribe men's basketball) -> College of William and Mary (7254ms)\nWhat plays did Shakespeare write?\tthe guitar\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (the guitar, plays, William Eaton) -> the guitar (7274ms)\nWhat plays did Shakespeare write?\ta member\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (a member, has held positions at, William Morrow) -> a member (7268ms)\nWhat plays did Shakespeare write?\tFour Redskins\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Four Redskins, played under, Williams) -> Four Redskins (7258ms)\nWhat plays did Shakespeare write?\tJohnny Depp\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Johnny Depp, plays, William Blake) -> Johnny Depp (7274ms)\nWhat plays did Shakespeare write?\tSean Connery\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Sean Connery, plays, William Forrester) -> Sean Connery (7261ms)\nWhat plays did Shakespeare write?\tHappy Feet\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (Happy Feet, features the voices of, Robin Williams) -> Happy Feet (7254ms)\nWhat plays did Shakespeare write?\tthe story nice and tight , I?ll\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, prose) -> (the story nice and tight , I?ll, play with, the prose) -> the story nice and tight , I?ll (7274ms)\nWhat plays did Shakespeare write?\tWire\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Wire, played under, Williams) -> Wire (7251ms)\nWhat plays did Shakespeare write?\tThe lead wildebeest\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (The lead wildebeest, are voiced by, William Shatner) -> The lead wildebeest (7247ms)\nWhat plays did Shakespeare write?\tMetaphor\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, prose) -> (Metaphor, plays an important role for, prose style) -> Metaphor (7263ms)\nWhat plays did Shakespeare write?\ta backing band\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play with, william) -> (a backing band, have played with, Robbie Williams) -> a backing band (7251ms)\nWhat plays did Shakespeare write?\tMcGrath\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (McGrath, played in, Williams) -> McGrath (7272ms)\nWhat plays did Shakespeare write?\tPhilip\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Philip, played, William Fletcher) -> Philip (7247ms)\nWhat plays did Shakespeare write?\tThe last Game\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (The last Game, played Doherty against, Williams) -> The last Game (7272ms)\nWhat plays did Shakespeare write?\tthe narrator\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, voice, william) -> (the narrator, is the voice of, Tennessee Williams) -> the narrator (7277ms)\nWhat plays did Shakespeare write?\tfriends\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, position, william) -> (friends, have positioned, the William Inge Collection) -> friends (7254ms)\nWhat plays did Shakespeare write?\tSmith\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Smith, played for, Williams) -> Smith (7274ms)\nWhat plays did Shakespeare write?\tPrioleau\t0.444444444442\tWhat plays did Shakespeare write? -> $x: ($x, play, william) -> (Prioleau, played under, Williams) -> Prioleau (7270ms)\nWhat is the chemical formula for sulphur dioxide?\tthe three circles\t0.33333333332899995\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, be symbol for, sulfur) -> (the three circles, is the alchemical symbol for, Sulfur) -> the three circles (664ms)\nWhat is the chemical formula for sulphur dioxide?\ta high sulphur content\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (a high sulphur content, produces, sulfur dioxide) -> a high sulphur content (1187ms)\nWhat is the chemical formula for sulphur dioxide?\tthe total funds\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (the total funds, is aimed at removing, sulfur dioxide) -> the total funds (1298ms)\nWhat is the chemical formula for sulphur dioxide?\tNatural gas\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Natural gas, produces negligible emissions of, sulfur dioxide) -> Natural gas (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tPu`u ` O`o\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Pu`u ` O`o, continued to produce, sulfur dioxide) -> Pu`u ` O`o (1300ms)\nWhat is the chemical formula for sulphur dioxide?\ta technology\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (a technology, to remove, sulfur dioxide) -> a technology (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tSodium sulfite\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Sodium sulfite, decomposes to produce, sulfur dioxide) -> Sodium sulfite (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tA sulfur dust explosion\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (A sulfur dust explosion, will produce, Sulfur Dioxide) -> A sulfur dust explosion (1298ms)\nWhat is the chemical formula for sulphur dioxide?\tThe silicon dioxide\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (The silicon dioxide, can be used to remove, sulfur dioxide) -> The silicon dioxide (1270ms)\nWhat is the chemical formula for sulphur dioxide?\tThe method\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (The method, produces, sulfur dioxide and chlorine) -> The method (1298ms)\nWhat is the chemical formula for sulphur dioxide?\tScrubbers\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (Scrubbers, remove, sulfur dioxide) -> Scrubbers (1298ms)\nWhat is the chemical formula for sulphur dioxide?\tOil\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Oil, produces high levels of, sulfur dioxide and nitrogen oxides) -> Oil (1270ms)\nWhat is the chemical formula for sulphur dioxide?\tBurning sulfur\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Burning sulfur, produces, sulfur dioxide) -> Burning sulfur (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tProcessing plants\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Processing plants, produce, sulfur dioxide) -> Processing plants (1187ms)\nWhat is the chemical formula for sulphur dioxide?\telectricity\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (electricity, produces, sulfur dioxide) -> electricity (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tcoal plants\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (coal plants, produce, sulfur dioxide) -> coal plants (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tLithium processing\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Lithium processing, also produces, sulfur dioxide) -> Lithium processing (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tNorth America\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (North America, produce large amounts of, sulfur dioxide) -> North America (1298ms)\nWhat is the chemical formula for sulphur dioxide?\tCoal\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Coal, produces, sulfur dioxide) -> Coal (1186ms)\nWhat is the chemical formula for sulphur dioxide?\tcoal\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (coal, produces, sulfur dioxide and nitrogen oxides) -> coal (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tthe cherries\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (the cherries, are rinsed to remove, the sulfur dioxide) -> the cherries (1187ms)\nWhat is the chemical formula for sulphur dioxide?\tfruits\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (fruits, are produced without, sulfur dioxide) -> fruits (1298ms)\nWhat is the chemical formula for sulphur dioxide?\tThe scrubbers\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (The scrubbers, are capable of removing, sulfur dioxide) -> The scrubbers (1186ms)\nWhat is the chemical formula for sulphur dioxide?\tSO2 and NOx removal\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (SO2 and NOx removal, remove, sulfur dioxide) -> SO2 and NOx removal (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tChina\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (China, produces twice, the sulfur dioxide) -> China (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tHigh sulfur coal\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (High sulfur coal, produces, sulfur dioxide) -> High sulfur coal (1270ms)\nWhat is the chemical formula for sulphur dioxide?\ttechnology\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (technology, is used to remove, sulfur dioxide) -> technology (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tpaper\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (paper, produce, sulfur dioxide) -> paper (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tsulfur\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (sulfur, is also used to produce, sulfur dioxide gas) -> sulfur (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tnickel\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (nickel, can produce large amounts of, sulfur dioxide) -> nickel (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tenergy consumption\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (energy consumption, produces only a third of, the sulfur dioxide) -> energy consumption (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tsulfites and bisulfites\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (sulfites and bisulfites, will produce, sulfur dioxide gas) -> sulfites and bisulfites (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tequipment\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (equipment, removes, toxic sulfur dioxide) -> equipment (1270ms)\nWhat is the chemical formula for sulphur dioxide?\tPu`u ` ?` ?\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Pu`u ` ?` ?, continues to produce, sulfur dioxide) -> Pu`u ` ?` ? (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tIncineration\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Incineration, may produce, toxic sulfur dioxide gas) -> Incineration (1300ms)\nWhat is the chemical formula for sulphur dioxide?\ta scrubber\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (a scrubber, removes all traces of, sulfur dioxide) -> a scrubber (1296ms)\nWhat is the chemical formula for sulphur dioxide?\twater\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (water, produces, sulfur dioxide gas) -> water (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tYeast\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Yeast, regularly produce, sulfur dioxide gas) -> Yeast (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tsulfide ores\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (sulfide ores, produces, sulfur dioxide) -> sulfide ores (1298ms)\nWhat is the chemical formula for sulphur dioxide?\tBurning syngas\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Burning syngas, produces less than, half the sulfur dioxide) -> Burning syngas (1298ms)\nWhat is the chemical formula for sulphur dioxide?\trefineries\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (refineries, to remove, sulfur dioxide) -> refineries (1187ms)\nWhat is the chemical formula for sulphur dioxide?\tscrubbers\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (scrubbers, remove, sulfur dioxide) -> scrubbers (1296ms)\nWhat is the chemical formula for sulphur dioxide?\ta low sulfur content\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (a low sulfur content, produces very, little sulfur dioxide) -> a low sulfur content (1298ms)\nWhat is the chemical formula for sulphur dioxide?\ta lubricating agent\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (a lubricating agent, produces, sulfur dioxide) -> a lubricating agent (1298ms)\nWhat is the chemical formula for sulphur dioxide?\twine\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (wine, produces, some sulfur dioxide) -> wine (1298ms)\nWhat is the chemical formula for sulphur dioxide?\thot steam\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (hot steam, produced, sulfur dioxide) -> hot steam (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tVolcanic eruptions\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Volcanic eruptions, produce, sulfur dioxide) -> Volcanic eruptions (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tclean coal\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (clean coal, remove, the sulfur dioxide) -> clean coal (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tChicken\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Chicken, litter would produce, less sulfur dioxide) -> Chicken (1270ms)\nWhat is the chemical formula for sulphur dioxide?\tThe chlorine\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (The chlorine, is then removed using, sulfur dioxide) -> The chlorine (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tSodium\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Sodium, sulfite decomposes to produce, sulfur dioxide) -> Sodium (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tfuel\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (fuel, produces, less carbon dioxide and sulfur dioxide) -> fuel (1270ms)\nWhat is the chemical formula for sulphur dioxide?\tWFGD units\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (WFGD units, remove, sulfur dioxide) -> WFGD units (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tsulfuric acid\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (sulfuric acid, produces, oxygen and sulfur dioxide) -> sulfuric acid (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tSulfur\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Sulfur, to produce, sulfur dioxide) -> Sulfur (1270ms)\nWhat is the chemical formula for sulphur dioxide?\tRit Color Remover\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Rit Color Remover, produce, sulfur dioxide) -> Rit Color Remover (1296ms)\nWhat is the chemical formula for sulphur dioxide?\tThe process\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (The process, removes, 98 percent of the sulfur dioxide) -> The process (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tthe process\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (the process, removes, the sulfur dioxide) -> the process (1186ms)\nWhat is the chemical formula for sulphur dioxide?\tBurning coal\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Burning coal, produces, sulfur dioxide) -> Burning coal (1300ms)\nWhat is the chemical formula for sulphur dioxide?\tnatural gas\t-0.444444444444\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (natural gas, produces, less sulfur dioxide) -> natural gas (1186ms)\nWhat is the chemical formula for sulphur dioxide?\tthe Emperor\t-0.555555555557\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, be symbol of, sulphur) -> (the Emperor, is the alchemical symbol of, Sulphur) -> the Emperor (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tsaliva\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (saliva, produced a huge amount of, sulphur) -> saliva (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tThe geysers\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (The geysers, produce steam rich in, sulphur compounds) -> The geysers (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tSulphur\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Sulphur, was burnt to produce, sulphur dioxide) -> Sulphur (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tThe hydrotreater\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (The hydrotreater, removes, sulphur) -> The hydrotreater (1302ms)\nWhat is the chemical formula for sulphur dioxide?\ta product\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (a product, removes, sulphur) -> a product (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tthe battery\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (the battery, also remove, all built-up sulphur) -> the battery (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tthe processes\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the processes, tend to produce, more sulphur gas) -> the processes (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tRenewable wood\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Renewable wood, would produce, less sulphur dioxide) -> Renewable wood (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tBiodynamic wine\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Biodynamic wine, can be produced using, sulphur dioxide) -> Biodynamic wine (1303ms)\nWhat is the chemical formula for sulphur dioxide?\tThe fire\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (The fire, produced a large volume of, sulphur-dioxide gas) -> The fire (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tHeating\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Heating, produces, toxic fumes of sulphur) -> Heating (1303ms)\nWhat is the chemical formula for sulphur dioxide?\tSales service Alfa Laval?s PureSOx\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Sales service Alfa Laval?s PureSOx, removes, sulphur oxides) -> Sales service Alfa Laval?s PureSOx (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tThe smelter\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (The smelter, produced emissions of, sulphur dioxide and fluoride) -> The smelter (1304ms)\nWhat is the chemical formula for sulphur dioxide?\tprince nymphs\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (prince nymphs, have been producing, .Smallish Sulphur Duns) -> prince nymphs (1304ms)\nWhat is the chemical formula for sulphur dioxide?\tsystems\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (systems, are used to remove, sulphur dioxide) -> systems (1303ms)\nWhat is the chemical formula for sulphur dioxide?\tLeighton?s\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Leighton?s, removes, both sulphur and iron) -> Leighton?s (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tthe vines\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (the vines, remove, the sulphur) -> the vines (1303ms)\nWhat is the chemical formula for sulphur dioxide?\tthe resultant gases\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the resultant gases, may be used to produce, marketable sulphur) -> the resultant gases (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tsulfur dioxide\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (sulfur dioxide, remove, sulphur) -> sulfur dioxide (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tair\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (air, remove, sulphur) -> air (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tprocess\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (process, removes most of, the sulphur) -> process (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tPyrometallurgical methods\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Pyrometallurgical methods, produce, sulphur dioxide) -> Pyrometallurgical methods (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tEnergas\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Energas, produced tons of, pure sulphur) -> Energas (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tAlberta oil sands\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Alberta oil sands, produce crude oil rich in, sulphur) -> Alberta oil sands (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tThe sulphurous acid\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (The sulphurous acid, is produced by, dissolving sulphur dioxide) -> The sulphurous acid (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tless sulphur\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (less sulphur, produced, the greenhouse gas sulphur dioxide) -> less sulphur (1303ms)\nWhat is the chemical formula for sulphur dioxide?\tthe filter\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (the filter, will remove, sulphur) -> the filter (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tthe plant\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the plant, will produce, ultra-low-sulphur fuel) -> the plant (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tthe yeast\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the yeast, produce, sulphur) -> the yeast (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tHydrotreaters\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Hydrotreaters, remove, sulphur and nitrogen) -> Hydrotreaters (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tthe sulphur melts\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the sulphur melts, produces, sulphur dioxide) -> the sulphur melts (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tsulphur\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (sulphur, produces, sulphur dioxide) -> sulphur (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tBrewTek CL-450 Kolsch\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (BrewTek CL-450 Kolsch, Produces, mild sulphur) -> BrewTek CL-450 Kolsch (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tMSM\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, be type of, sulphur) -> (MSM, will be a type of, organic sulphur) -> MSM (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tGlutathione\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Glutathione, is produced through, the sulphur oxidation side) -> Glutathione (1303ms)\nWhat is the chemical formula for sulphur dioxide?\tthe world?s largest ships\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the world?s largest ships, produce as, much sulphur oxide) -> the world?s largest ships (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tburned sulphur\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (burned sulphur, produces, sulphur dioxide) -> burned sulphur (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tMagnesium\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Magnesium, also is used to remove, sulphur) -> Magnesium (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tHydrogen\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Hydrogen, to remove, sulphur) -> Hydrogen (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tthe Revushchaya fumarole\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the Revushchaya fumarole, produced a flow of, molten sulphur) -> the Revushchaya fumarole (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tclean nice scrubbers\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (clean nice scrubbers, remove, all the filthy sulphur dioxide) -> clean nice scrubbers (1304ms)\nWhat is the chemical formula for sulphur dioxide?\tthe Gulf Coast\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the Gulf Coast, produces most of, Mexico?s oil and sulphur) -> the Gulf Coast (1303ms)\nWhat is the chemical formula for sulphur dioxide?\tMelchior Boniger\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Melchior Boniger, produced new products such as, sulphur) -> Melchior Boniger (1304ms)\nWhat is the chemical formula for sulphur dioxide?\tmanganese Used\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (manganese Used, remove, sulphur) -> manganese Used (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tdecomposition\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (decomposition, produces, sulphur dioxide) -> decomposition (1304ms)\nWhat is the chemical formula for sulphur dioxide?\tburnt\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (burnt, produces large quantities of, sulphur dioxide) -> burnt (1306ms)\nWhat is the chemical formula for sulphur dioxide?\tthe cheapest\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the cheapest, can be produced from, sulphur , air and water) -> the cheapest (1305ms)\nWhat is the chemical formula for sulphur dioxide?\tBurning sulphur\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Burning sulphur, would produce, sulphur dioxide) -> Burning sulphur (1302ms)\nWhat is the chemical formula for sulphur dioxide?\tpure sulphur\t-0.666666666666\tWhat is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (pure sulphur, produces, sulphur dioxide) -> pure sulphur (1305ms)\nWhere is Venezuela?\tSpanish and English\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, can be found in, Spanish and English) -> Spanish and English (1222ms)\nWhere is Venezuela?\tthe CIA World Factbook\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, are found in, the CIA World Factbook) -> the CIA World Factbook (1299ms)\nWhere is Venezuela?\tany grocery store\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, can be easily found in, any grocery store) -> any grocery store (1299ms)\nWhere is Venezuela?\tthe line\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, is also found in, the line) -> the line (1299ms)\nWhere is Venezuela?\tsmall rocks\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela?s Amazon jungle, is often found in, small rocks) -> small rocks (1222ms)\nWhere is Venezuela?\tcyberspace\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, has been found in, cyberspace) -> cyberspace (1222ms)\nWhere is Venezuela?\ta Farc camp\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, were found in, a Farc camp) -> a Farc camp (1299ms)\nWhere is Venezuela?\tFARC hands\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, was found in, FARC hands) -> FARC hands (1222ms)\nWhere is Venezuela?\tcertain areas\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, are mainly found working in, certain areas) -> certain areas (1222ms)\nWhere is Venezuela?\tvarious parts\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, are found in, various parts) -> various parts (1299ms)\nWhere is Venezuela?\teditorials\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, was often found in, editorials) -> editorials (1222ms)\nWhere is Venezuela?\ta range\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, can be found in, a range) -> a range (1222ms)\nWhere is Venezuela?\tHasbrouck\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, can be found in, Hasbrouck) -> Hasbrouck (1222ms)\nWhere is Venezuela?\tthe issuance\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, has been found to be indiscriminate in, the issuance) -> the issuance (1299ms)\nWhere is Venezuela?\tbusiness\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, have been found to engage in, business) -> business (1299ms)\nWhere is Venezuela?\ta rebel cache\t0.777777777776\tWhere is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, were found in, a rebel cache) -> a rebel cache (1299ms)\nWhere is Venezuela?\tthe northern part\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the northern part) -> the northern part (3027ms)\nWhere is Venezuela?\tCountries\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (venezuela, is a country located in the geopolitical location, Countries) -> Countries (3027ms)\nWhere is Venezuela?\tSouth American Countries\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (venezuela, is a country located in the geopolitical location, South American Countries) -> South American Countries (3027ms)\nWhere is Venezuela?\tthe tropics\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Climate Venezuela, is located entirely in, the tropics) -> the tropics (3027ms)\nWhere is Venezuela?\tthe center\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the center) -> the center (1865ms)\nWhere is Venezuela?\tthe northeastern portion\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the northeastern portion) -> the northeastern portion (1702ms)\nWhere is Venezuela?\tcentral Caracas\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, central Caracas) -> central Caracas (1865ms)\nWhere is Venezuela?\tfront\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, front) -> front (1701ms)\nWhere is Venezuela?\tthe northern coast\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the northern coast) -> the northern coast (3027ms)\nWhere is Venezuela?\tnorthern South America\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, northern South America) -> northern South America (3027ms)\nWhere is Venezuela?\tSouth America\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is a country located in, South America) -> South America (1865ms)\nWhere is Venezuela?\tthe north part\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Introduction Venezuela, is located in, the north part) -> the north part (1865ms)\nWhere is Venezuela?\tthe central-west portion\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela?s Andes, are located in, the central-west portion) -> the central-west portion (1701ms)\nWhere is Venezuela?\tthe north of South America\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the north of South America) -> the north of South America (1865ms)\nWhere is Venezuela?\tCentral Greece\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (? Venezuela Camping, is located in, Central Greece) -> Central Greece (1865ms)\nWhere is Venezuela?\tSTATES\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (venezuela, is a country located in the geopolitical location, STATES) -> STATES (1701ms)\nWhere is Venezuela?\tCaracas\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela?s major cultural institutions, are located in, Caracas) -> Caracas (3027ms)\nWhere is Venezuela?\tthe north\t0.666666666663\tWhere is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the north) -> the north (1865ms)\nWhere is Venezuela?\tThanksgiving\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does n?t celebrate, Thanksgiving) -> Thanksgiving (5101ms)\nWhere is Venezuela?\tretirement allowances\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (retirement allowances, produced outside, Venezuela) -> retirement allowances (3817ms)\nWhere is Venezuela?\tfears\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela?s Hugo Ch?vez, so do, fears) -> fears (5088ms)\nWhere is Venezuela?\ta few of it 's personnel\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (a few of it 's personnel, were killed by, Venezuela) -> a few of it 's personnel (4503ms)\nWhere is Venezuela?\t2009\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (2009, went on to, Venezuela) -> 2009 (5224ms)\nWhere is Venezuela?\tthe damage\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (the damage, done to, Venezuela) -> the damage (4910ms)\nWhere is Venezuela?\tMaracay\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Maracay, Contained by, Venezuela) -> Maracay (4562ms)\nWhere is Venezuela?\tEl Guapo, Miranda State\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (El Guapo, Miranda State, Contained by, Venezuela) -> El Guapo, Miranda State (4987ms)\nWhere is Venezuela?\tlet?s\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (let?s, go back again to, Venezuela) -> let?s (4503ms)\nWhere is Venezuela?\tone recommendation\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (one recommendation, Go to, Venezuela) -> one recommendation (4910ms)\nWhere is Venezuela?\tColegio Internacional de Caracas\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Colegio Internacional de Caracas, Contained by, Venezuela) -> Colegio Internacional de Caracas (3715ms)\nWhere is Venezuela?\tn?t deregulate\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did, n?t deregulate) -> n?t deregulate (4603ms)\nWhere is Venezuela?\tThe U.S.\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (The U.S., is attempting to do in, Venezuela) -> The U.S. (5088ms)\nWhere is Venezuela?\tmusic\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (music, is happening in, Venezuela) -> music (5046ms)\nWhere is Venezuela?\tprice subsidies\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done with, price subsidies) -> price subsidies (4941ms)\nWhere is Venezuela?\tZambrano\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Zambrano, had gone home to, Venezuela) -> Zambrano (5060ms)\nWhere is Venezuela?\tEmerald Toucanets\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (Emerald Toucanets, are found in, Venezuela) -> Emerald Toucanets (5250ms)\nWhere is Venezuela?\tJosefa Camejo Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Josefa Camejo Airport, Contained by, Venezuela) -> Josefa Camejo Airport (4926ms)\nWhere is Venezuela?\tgovernments\t0.555555555554\tWhere is Venezuela? -> $x: ($x, inspired, venezuelum) -> (governments, are inspired by, Venezuela) -> governments (5250ms)\nWhere is Venezuela?\tLinux\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (Linux, developed in, Venezuela) -> Linux (4957ms)\nWhere is Venezuela?\tUniversidad Tecnol?gica del Centro, main campus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Tecnol?gica del Centro, main campus, Contained by, Venezuela) -> Universidad Tecnol?gica del Centro, main campus (5242ms)\nWhere is Venezuela?\tCuquenan Falls\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Cuquenan Falls, Contained by, Venezuela) -> Cuquenan Falls (4842ms)\nWhere is Venezuela?\tSucre, Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Sucre, Venezuela, Contained by, Venezuela) -> Sucre, Venezuela (5224ms)\nWhere is Venezuela?\tThe Wall Street Journal\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (The Wall Street Journal, described, Venezuela and Chavez) -> The Wall Street Journal (4825ms)\nWhere is Venezuela?\tSouth America--Nuevo Toledo--was\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (South America--Nuevo Toledo--was, established in, Venezuela) -> South America--Nuevo Toledo--was (4926ms)\nWhere is Venezuela?\tplace\t0.555555555554\tWhere is Venezuela? -> $x: ($x, inspire, venezuelum) -> (place, is inspired by, Venezuela ?s communal councils) -> place (4719ms)\nWhere is Venezuela?\tdeployable WMDs\t0.555555555554\tWhere is Venezuela? -> $x: ($x, create, venezuelum) -> (deployable WMDs, create the threat of, a nuclear armed Venezuela) -> deployable WMDs (3637ms)\nWhere is Venezuela?\ta group\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (a group, could go to, Venezuela) -> a group (4644ms)\nWhere is Venezuela?\tthe seed\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the seed, is happening today in, Venezuela) -> the seed (4755ms)\nWhere is Venezuela?\tfree-trade agreements\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela ?, did n?t like, free-trade agreements) -> free-trade agreements (5060ms)\nWhere is Venezuela?\tthe nature\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the nature, is happening in, Venezuela) -> the nature (5060ms)\nWhere is Venezuela?\tCitgo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Citgo, goes primarily to, Venezuela) -> Citgo (5017ms)\nWhere is Venezuela?\tthe BBC\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the BBC, happens in, Venezuela) -> the BBC (5147ms)\nWhere is Venezuela?\treality\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has little to do with, reality) -> reality (5197ms)\nWhere is Venezuela?\tthe U.S.\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done to, the U.S.) -> the U.S. (4773ms)\nWhere is Venezuela?\tthe slogan\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the slogan, went in, Venezuela) -> the slogan (4623ms)\nWhere is Venezuela?\tthe Roraima formation\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (the Roraima formation, are found in, Venezuela or Guyana) -> the Roraima formation (5101ms)\nWhere is Venezuela?\tSan Casimiro Municipality\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Casimiro Municipality, Contained by, Venezuela) -> San Casimiro Municipality (5147ms)\nWhere is Venezuela?\tMiss Venezuela 1992\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 1992, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 1992 (5167ms)\nWhere is Venezuela?\tIslamic radicals\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (Islamic radicals, is developing in, Venezuela) -> Islamic radicals (4737ms)\nWhere is Venezuela?\tEfrain Valles\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (Efrain Valles, introduced to, the Venezuela LoCo Team) -> Efrain Valles (5242ms)\nWhere is Venezuela?\tmore than 60 persons\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (more than 60 persons, killed every weekend in, Venezuela) -> more than 60 persons (4541ms)\nWhere is Venezuela?\tany supposed reduction\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has nothing to do with, any supposed reduction) -> any supposed reduction (5250ms)\nWhere is Venezuela?\tFortis\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Fortis, went to, Venezuela) -> Fortis (4972ms)\nWhere is Venezuela?\tcalm and normalcy\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (calm and normalcy, were established in, Venezuela) -> calm and normalcy (4755ms)\nWhere is Venezuela?\tPortuguesa, Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Portuguesa, Venezuela, Contained by, Venezuela) -> Portuguesa, Venezuela (5126ms)\nWhere is Venezuela?\tHugo\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did, Hugo) -> Hugo (4826ms)\nWhere is Venezuela?\tthe countries\t0.555555555554\tWhere is Venezuela? -> $x: ($x, surround, venezuelum) -> (the countries, surrounding, Venezuela) -> the countries (4941ms)\nWhere is Venezuela?\ta democratically elected President\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does have, a democratically elected President) -> a democratically elected President (4562ms)\nWhere is Venezuela?\tfirst hand accounts\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (first hand accounts, happened in, Venezuela) -> first hand accounts (5088ms)\nWhere is Venezuela?\tAmazonas, Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Amazonas, Venezuela, Contained by, Venezuela) -> Amazonas, Venezuela (4910ms)\nWhere is Venezuela?\tPetare\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Petare, Contained by, Venezuela) -> Petare (5233ms)\nWhere is Venezuela?\tThe idea\t0.555555555554\tWhere is Venezuela? -> $x: ($x, fund, venezuelum) -> (The idea, is being largely funded with, Venezuela?s oil money) -> The idea (4623ms)\nWhere is Venezuela?\ttransiting Pluto\t0.555555555554\tWhere is Venezuela? -> $x: ($x, dance, venezuelum) -> (transiting Pluto, begins a dance with, Venezuela) -> transiting Pluto (5224ms)\nWhere is Venezuela?\tmobilizing armed forces\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (mobilizing armed forces, go to to, Venezuela) -> mobilizing armed forces (5250ms)\nWhere is Venezuela?\tthe oil industry\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (the oil industry, did enormous damage to, Venezuela) -> the oil industry (4755ms)\nWhere is Venezuela?\tA missionary recruit\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (A missionary recruit, goes to, Venezuela) -> A missionary recruit (5215ms)\nWhere is Venezuela?\tCaracas Athenaeum\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Caracas Athenaeum, Contained by, Venezuela) -> Caracas Athenaeum (5187ms)\nWhere is Venezuela?\tthe highest mobile penetration rates\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (the highest mobile penetration rates, can be found in, Venezuela) -> the highest mobile penetration rates (5224ms)\nWhere is Venezuela?\tSuch evidence\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Such evidence, will help motivate, Venezuela) -> Such evidence (4541ms)\nWhere is Venezuela?\tlaw\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, are required to do by, law) -> law (5233ms)\nWhere is Venezuela?\tinterest\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (interest, is happening in, Venezuela) -> interest (5197ms)\nWhere is Venezuela?\tnote\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (note, is happening in, Venezuela) -> note (5101ms)\nWhere is Venezuela?\tVe\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Ve, do visas vor, VENEZUELA) -> Ve (4603ms)\nWhere is Venezuela?\tsummon United Nations\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (summon United Nations, is happening in, Venezuela) -> summon United Nations (4701ms)\nWhere is Venezuela?\tthe james\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (venezuela rock and rap confidential, do, the james) -> the james (3715ms)\nWhere is Venezuela?\tjust look\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (just look, is doing in, Venezuela) -> just look (4503ms)\nWhere is Venezuela?\tvenezuela national football team\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (venezuela national football team, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Venezuela%20national%20football%20team) -> venezuela national football team (5017ms)\nWhere is Venezuela?\tgold\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (gold, produced in, Venezuela) -> gold (4541ms)\nWhere is Venezuela?\tcommodity quality cacao beans\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (commodity quality cacao beans, found in, Venezuela) -> commodity quality cacao beans (5167ms)\nWhere is Venezuela?\tthe FARC\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has been doing with, the FARC) -> the FARC (4624ms)\nWhere is Venezuela?\ta sense\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (a sense, is going on in, Venezuela) -> a sense (4876ms)\nWhere is Venezuela?\tthe programmatic choices\t0.555555555554\tWhere is Venezuela? -> $x: ($x, inspired, venezuelum) -> (the programmatic choices, were inspired by, Venezuela) -> the programmatic choices (4957ms)\nWhere is Venezuela?\tEngland\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (England, should help her to, collect debts from Venezuela) -> England (5206ms)\nWhere is Venezuela?\tNasrallah\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Nasrallah, established major terrorist base in, Venezuela) -> Nasrallah (4910ms)\nWhere is Venezuela?\tthe formwork\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (the formwork, produced in, Venezuela) -> the formwork (5177ms)\nWhere is Venezuela?\tbusy gaming\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (busy gaming, happens next in, Venezuela) -> busy gaming (4808ms)\nWhere is Venezuela?\tmiss venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (miss venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Miss%20Venezuela) -> miss venezuela (5197ms)\nWhere is Venezuela?\tthe Free Zone\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the Free Zone, happens in, Venezuela) -> the Free Zone (4892ms)\nWhere is Venezuela?\tMakled\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Makled, goes back to, Venezuela) -> Makled (5187ms)\nWhere is Venezuela?\tresearch\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, claimed to have done, research) -> research (5101ms)\nWhere is Venezuela?\tabout 200 different wild types\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (about 200 different wild types, found from, Venezuela) -> about 200 different wild types (5242ms)\nWhere is Venezuela?\tA closer look\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (A closer look, is happening in, Venezuela) -> A closer look (4701ms)\nWhere is Venezuela?\tCh?vez Abarca\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Ch?vez Abarca, was trying to get into, Venezuela) -> Ch?vez Abarca (4941ms)\nWhere is Venezuela?\tthe situation\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, have to do in, the situation) -> the situation (4755ms)\nWhere is Venezuela?\tGood ! Lets\t0.555555555554\tWhere is Venezuela? -> $x: ($x, replace, venezuelum) -> (Good ! Lets, replace, Venezuela) -> Good ! Lets (4910ms)\nWhere is Venezuela?\tsocialism\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, have meaning of, $x) -> (Venezuela, has meant the return of, socialism) -> socialism (5215ms)\nWhere is Venezuela?\tMoney\t0.555555555554\tWhere is Venezuela? -> $x: ($x, dance, venezuelum) -> (Money, is dancing in, Venezuela) -> Money (4644ms)\nWhere is Venezuela?\tMr Raby\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Mr Raby, is happening in, Venezuela) -> Mr Raby (4719ms)\nWhere is Venezuela?\tStupendemys\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Stupendemys, have been found in, Venezuela) -> Stupendemys (5002ms)\nWhere is Venezuela?\tTrujillo, Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Trujillo, Venezuela, Contained by, Venezuela) -> Trujillo, Venezuela (5177ms)\nWhere is Venezuela?\tthe oil\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (the oil, produced by, Venezuela) -> the oil (4825ms)\nWhere is Venezuela?\tArkansas\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Arkansas, has been doing business in, Venezuela) -> Arkansas (5224ms)\nWhere is Venezuela?\tjust exactly\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (just exactly, happened in, Venezuela) -> just exactly (4562ms)\nWhere is Venezuela?\tU.S. oil workers\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (U.S. oil workers, introduced the sport to, Venezuela) -> U.S. oil workers (5017ms)\nWhere is Venezuela?\tthe same number\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (the same number, were killed in, venezuela) -> the same number (4389ms)\nWhere is Venezuela?\tanti-Chavez demonstrators\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (anti-Chavez demonstrators, were killed in, Venezuela) -> anti-Chavez demonstrators (4737ms)\nWhere is Venezuela?\tPerez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Perez, could have done for, Venezuela) -> Perez (5031ms)\nWhere is Venezuela?\tthe story\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Russia and Venezuela, does n?t change, the story) -> the story (5157ms)\nWhere is Venezuela?\tthe same\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the same, could happen in, Venezuela) -> the same (5224ms)\nWhere is Venezuela?\tdifferent degrees\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (different degrees, is happening in, Venezuela) -> different degrees (5136ms)\nWhere is Venezuela?\tMaroa\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Maroa, Contained by, Venezuela) -> Maroa (4701ms)\nWhere is Venezuela?\tthe same way Ch?vez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (the same way Ch?vez, did in, Venezuela) -> the same way Ch?vez (4957ms)\nWhere is Venezuela?\tMamporal\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Mamporal, Contained by, Venezuela) -> Mamporal (5074ms)\nWhere is Venezuela?\tMonsanto\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Monsanto, does continue to operate within, Venezuela) -> Monsanto (4987ms)\nWhere is Venezuela?\ta spotlight\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a spotlight, was happening in, Venezuela) -> a spotlight (4737ms)\nWhere is Venezuela?\tFalc?n\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Falc?n, Contained by, Venezuela) -> Falc?n (4701ms)\nWhere is Venezuela?\tColegio Santa M?nica, main campus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Colegio Santa M?nica, main campus, Contained by, Venezuela) -> Colegio Santa M?nica, main campus (5046ms)\nWhere is Venezuela?\tThe Bolivarian Circles\t0.555555555554\tWhere is Venezuela? -> $x: ($x, create, venezuelum) -> (The Bolivarian Circles, were created in, Venezuela) -> The Bolivarian Circles (5147ms)\nWhere is Venezuela?\tGaddafi\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Gaddafi, has gone to, Venezuela) -> Gaddafi (4737ms)\nWhere is Venezuela?\tan updated localized version\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, likewise did, an updated localized version) -> an updated localized version (4842ms)\nWhere is Venezuela?\tThe coffee plant\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (The coffee plant, was introduced into, Venezuela) -> The coffee plant (4926ms)\nWhere is Venezuela?\tn't this\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (n't this, does in, Venezuela) -> n't this (4826ms)\nWhere is Venezuela?\tMaracaibo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Maracaibo, Events, Miss Venezuela 2010) -> Maracaibo (3638ms)\nWhere is Venezuela?\tviolence\t0.555555555554\tWhere is Venezuela? -> $x: ($x, influence, venezuelum) -> (violence, influences politics in, Venezuela) -> violence (5046ms)\nWhere is Venezuela?\toil prices\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (oil prices, can get from, its oil-rich ally Venezuela) -> oil prices (4503ms)\nWhere is Venezuela?\tMiss Venezuela 2006\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2006, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2006 (4941ms)\nWhere is Venezuela?\tHarmony\t0.555555555554\tWhere is Venezuela? -> $x: ($x, inspired, venezuelum) -> (Harmony, is inspired by, Venezuela?s El Sistema) -> Harmony (4910ms)\nWhere is Venezuela?\ta proper marxist analysis\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (a proper marxist analysis, 's going on in, Venezuela) -> a proper marxist analysis (5031ms)\nWhere is Venezuela?\tBard\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Bard, then went to, Venezuela) -> Bard (5157ms)\nWhere is Venezuela?\tPosada\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Posada, went from, Venezuela) -> Posada (4623ms)\nWhere is Venezuela?\ta similar way\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (a similar way, did in, Venezuela) -> a similar way (4663ms)\nWhere is Venezuela?\tThe same\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (The same, is happening in, Venezuela) -> The same (5125ms)\nWhere is Venezuela?\tRice\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (Rice, described, Venezuela) -> Rice (5197ms)\nWhere is Venezuela?\tNikolas Kozloff\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Nikolas Kozloff, does, Venezuela) -> Nikolas Kozloff (5250ms)\nWhere is Venezuela?\tthe 1,300 bird species\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (the 1,300 bird species, found in, Venezuela) -> the 1,300 bird species (5242ms)\nWhere is Venezuela?\ta world tour\t0.555555555554\tWhere is Venezuela? -> $x: ($x, fight, venezuelum) -> (a world tour, fight in, Venezuela) -> a world tour (4941ms)\nWhere is Venezuela?\tThe U. S.\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (The U. S., went to, Venezuela) -> The U. S. (5126ms)\nWhere is Venezuela?\tAmerican news reports\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (American news reports, goes wrong in, Venezuela) -> American news reports (5115ms)\nWhere is Venezuela?\tThe communications media\t0.555555555554\tWhere is Venezuela? -> $x: ($x, create, venezuelum) -> (The communications media, created, a fictitious Venezuela) -> The communications media (5136ms)\nWhere is Venezuela?\ta placebo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (a placebo, helped asthmatic children in, Venezuela) -> a placebo (4941ms)\nWhere is Venezuela?\ta few years\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (a few years, is being done intensively in, Venezuela) -> a few years (5101ms)\nWhere is Venezuela?\tJournalistic Pieces\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Journalistic Pieces, To get, a journalistic feel for Venezuela) -> Journalistic Pieces (5187ms)\nWhere is Venezuela?\tthe Middle East\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (the Middle East, were discovered in, Venezuela) -> the Middle East (4773ms)\nWhere is Venezuela?\tan ALBA fund\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (an ALBA fund, has been established by, Venezuela) -> an ALBA fund (4682ms)\nWhere is Venezuela?\tan important debate\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (an important debate, is going on in, Venezuela) -> an important debate (4859ms)\nWhere is Venezuela?\tA good number\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (A good number, went to, Venezuela) -> A good number (4910ms)\nWhere is Venezuela?\tUniversidad Rafael Urdaneta, main campus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Rafael Urdaneta, main campus, Contained by, Venezuela) -> Universidad Rafael Urdaneta, main campus (5250ms)\nWhere is Venezuela?\tThe Reuters report\t0.555555555554\tWhere is Venezuela? -> $x: ($x, create, venezuelum) -> (The Reuters report, created a crisis in, Venezuela) -> The Reuters report (3817ms)\nWhere is Venezuela?\tChile\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Chile, tried to do in, Venezuela) -> Chile (5224ms)\nWhere is Venezuela?\tenergy\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, is capable of doing the same with, energy) -> energy (4987ms)\nWhere is Venezuela?\tthe official line\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the official line, had happened in, Venezuela) -> the official line (5157ms)\nWhere is Venezuela?\tsuch songs\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (such songs, are also found in, southern Venezuela) -> such songs (5233ms)\nWhere is Venezuela?\tseveral large cities\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did take control of, several large cities) -> several large cities (5147ms)\nWhere is Venezuela?\tThe other leaders\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (The other leaders, allegedly found refuge in, Venezuela) -> The other leaders (4825ms)\nWhere is Venezuela?\tJuan Arango\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did pull a goal back through, Juan Arango) -> Juan Arango (5002ms)\nWhere is Venezuela?\tThey?ve\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (They?ve, got, Miss Venezuela) -> They?ve (5002ms)\nWhere is Venezuela?\tChavez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, fund, venezuelum) -> (Chavez, is funded mainly through, Venezuela) -> Chavez (5254ms)\nWhere is Venezuela?\tJames Weldon Johnson\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (James Weldon Johnson, went to, Venezuela) -> James Weldon Johnson (5074ms)\nWhere is Venezuela?\tkillings\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (killings, go unsolved in, Venezuela) -> killings (5177ms)\nWhere is Venezuela?\tCiego de ?vila Province\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Ciego de ?vila Province, Contains, Venezuela) -> Ciego de ?vila Province (4825ms)\nWhere is Venezuela?\tdifferent\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (different, has been happening in, Venezuela) -> different (5233ms)\nWhere is Venezuela?\tthe species\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (the species, found in, Venezuela) -> the species (5177ms)\nWhere is Venezuela?\tany\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, will do as good as, any) -> any (5046ms)\nWhere is Venezuela?\tFrancisco de Miranda\t0.555555555554\tWhere is Venezuela? -> $x: ($x, fight, venezuelum) -> (Francisco de Miranda, were already fighting in, Venezuela) -> Francisco de Miranda (4701ms)\nWhere is Venezuela?\tGod\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (God, has done in, Venezuela) -> God (5215ms)\nWhere is Venezuela?\tthe United States\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the United States, is really happening in, Venezuela) -> the United States (5224ms)\nWhere is Venezuela?\tthe ?Bolivarian Revolution\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (the ?Bolivarian Revolution, has described, Venezuela) -> the ?Bolivarian Revolution (5115ms)\nWhere is Venezuela?\tManuel Ezequiel Bruzual Municipality\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Manuel Ezequiel Bruzual Municipality, Contained by, Venezuela) -> Manuel Ezequiel Bruzual Municipality (5136ms)\nWhere is Venezuela?\tThe Spanish Franciscan Missionaries\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (The Spanish Franciscan Missionaries, went to, Venezuela) -> The Spanish Franciscan Missionaries (4987ms)\nWhere is Venezuela?\tvuelta_a_venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (vuelta_a_venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Vuelta%20a%20Venezuela) -> vuelta_a_venezuela (5177ms)\nWhere is Venezuela?\tHugo Chaves\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Hugo Chaves, did in, Venezuela) -> Hugo Chaves (4808ms)\nWhere is Venezuela?\tPuerto Rico\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Puerto Rico, was establishing a new branch in, Venezuela) -> Puerto Rico (4773ms)\nWhere is Venezuela?\tGuanare\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Guanare, Contained by, Venezuela) -> Guanare (4892ms)\nWhere is Venezuela?\tthe mark\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the mark, has happened in, Venezuela) -> the mark (4562ms)\nWhere is Venezuela?\tBelarus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Belarus, has been able to help, Venezuela) -> Belarus (4755ms)\nWhere is Venezuela?\tnominate macrorhynchos\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (nominate macrorhynchos, is described from, SE Venezuela) -> nominate macrorhynchos (4755ms)\nWhere is Venezuela?\tCoffee\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Coffee, is domestically produced in, Venezuela) -> Coffee (5187ms)\nWhere is Venezuela?\tPresident Hugo Chavez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (President Hugo Chavez, recently did in, Venezuela) -> President Hugo Chavez (4682ms)\nWhere is Venezuela?\tany economic liberalisation\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did n?t see, any economic liberalisation) -> any economic liberalisation (4583ms)\nWhere is Venezuela?\tOil\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (Oil, was discovered in, Venezuela) -> Oil (5250ms)\nWhere is Venezuela?\tPeru\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Peru, has done in, Venezuela) -> Peru (5115ms)\nWhere is Venezuela?\tThe Orinoco\t0.555555555554\tWhere is Venezuela? -> $x: ($x, define, venezuelum) -> (The Orinoco, defines much of, Venezuela) -> The Orinoco (4737ms)\nWhere is Venezuela?\tOil sands\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Oil sands, are found in, Canada and Venezuela) -> Oil sands (5206ms)\nWhere is Venezuela?\tVargas, Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Vargas, Venezuela, Events, Miss Venezuela 1983) -> Vargas, Venezuela (5224ms)\nWhere is Venezuela?\tgreat enthusiasm Martin\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (great enthusiasm Martin, is happening in, Venezuela) -> great enthusiasm Martin (4926ms)\nWhere is Venezuela?\ttime\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (time, did nothing in, Venezuela) -> time (4583ms)\nWhere is Venezuela?\tthe surgery\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, can do half of, the surgery) -> the surgery (4603ms)\nWhere is Venezuela?\tGuiria Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Guiria Airport, Contained by, Venezuela) -> Guiria Airport (5060ms)\nWhere is Venezuela?\tFour\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (Four, were killed in, both Venezuela) -> Four (4972ms)\nWhere is Venezuela?\tclassical music\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (classical music, can help improve the lives of, Venezuela) -> classical music (5167ms)\nWhere is Venezuela?\tJonny\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen to, venezuelum) -> (Jonny, also happens to be from, Venezuela) -> Jonny (4987ms)\nWhere is Venezuela?\tthe highest dropping waterfalls\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (the highest dropping waterfalls, is found in, Venezuela) -> the highest dropping waterfalls (4876ms)\nWhere is Venezuela?\tMr. Belafonte\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Mr. Belafonte, went to, Venezuela) -> Mr. Belafonte (4876ms)\nWhere is Venezuela?\tAssange\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Assange, went to, Venezuela) -> Assange (4957ms)\nWhere is Venezuela?\ta version\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a version, happened in, Venezuela) -> a version (4957ms)\nWhere is Venezuela?\ta democratically elected strongman\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does have, a democratically elected strongman) -> a democratically elected strongman (5101ms)\nWhere is Venezuela?\tSanta Barbara Del Zulia Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Santa Barbara Del Zulia Airport, Contained by, Venezuela) -> Santa Barbara Del Zulia Airport (4791ms)\nWhere is Venezuela?\tcoverage\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did get, coverage) -> coverage (4926ms)\nWhere is Venezuela?\tFederal Pampatar government\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Federal Pampatar government, was established in, Venezuela) -> Federal Pampatar government (5115ms)\nWhere is Venezuela?\tSan Sebasti?n\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Sebasti?n, Contained by, Venezuela) -> San Sebasti?n (4910ms)\nWhere is Venezuela?\tJimmy Carter\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Jimmy Carter, went to, Venezuela) -> Jimmy Carter (5125ms)\nWhere is Venezuela?\tPolar\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Polar, produces many of, Venezuela) -> Polar (4562ms)\nWhere is Venezuela?\tthe menial work\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did most of, the menial work) -> the menial work (4663ms)\nWhere is Venezuela?\theavy crude\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does produce mostly, heavy crude) -> heavy crude (5074ms)\nWhere is Venezuela?\tfamily members\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (family members, was going on in, Venezuela) -> family members (4941ms)\nWhere is Venezuela?\tDefense\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Defense, got from, Venezuela) -> Defense (4892ms)\nWhere is Venezuela?\tMatur?n Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Matur?n Airport, Contained by, Venezuela) -> Matur?n Airport (5115ms)\nWhere is Venezuela?\tMaestro Abreu\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Maestro Abreu, did in, Venezuela?) -> Maestro Abreu (4826ms)\nWhere is Venezuela?\tThe same man\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (The same man, went to, Venezuela) -> The same man (5215ms)\nWhere is Venezuela?\tChuao\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Chuao, Contained by, Venezuela) -> Chuao (4808ms)\nWhere is Venezuela?\tthe opposition leadership\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the opposition leadership, is going on in, Venezuela) -> the opposition leadership (4583ms)\nWhere is Venezuela?\ta touch\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (a touch, started doing funny things to, Venezuela) -> a touch (4701ms)\nWhere is Venezuela?\tresponsibility\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (responsibility, is happening in, Venezuela) -> responsibility (5002ms)\nWhere is Venezuela?\ta communist country\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a communist country, happened in, VENEZUELA) -> a communist country (5242ms)\nWhere is Venezuela?\tCentro Sambil\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Centro Sambil, Events, Miss Earth Venezuela 2007) -> Centro Sambil (5233ms)\nWhere is Venezuela?\ticeberg\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (iceberg, does, Miss Venezuela) -> iceberg (4623ms)\nWhere is Venezuela?\tSan Carlos\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Carlos, Contained by, Venezuela) -> San Carlos (4643ms)\nWhere is Venezuela?\tsuch oil\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (such oil, produced in, Canada and Venezuela) -> such oil (4663ms)\nWhere is Venezuela?\tBrownfield\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Brownfield, had offered to help, Venezuela) -> Brownfield (4737ms)\nWhere is Venezuela?\tJosefa Camejo International Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Josefa Camejo International Airport, Contained by, Venezuela) -> Josefa Camejo International Airport (4285ms)\nWhere is Venezuela?\t2006\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did so in, 2006) -> 2006 (4583ms)\nWhere is Venezuela?\tEl Dorado Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (El Dorado Airport, Contained by, Venezuela) -> El Dorado Airport (4957ms)\nWhere is Venezuela?\tKay\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Kay, could have gone to, Venezuela) -> Kay (4682ms)\nWhere is Venezuela?\tdiscuss\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (discuss, 's happening in, Venezuela) -> discuss (5060ms)\nWhere is Venezuela?\tan exciting\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did a nice job of having, an exciting) -> an exciting (4859ms)\nWhere is Venezuela?\tcommunist party of venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (communist party of venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Communist%20Party%20of%20Venezuela) -> communist party of venezuela (5215ms)\nWhere is Venezuela?\tPuerto la Cruz\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Puerto la Cruz, Contained by, Venezuela) -> Puerto la Cruz (4791ms)\nWhere is Venezuela?\tPalestinian officials\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Palestinian officials, established formal ties with, Venezuela) -> Palestinian officials (4644ms)\nWhere is Venezuela?\tCaricuao\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Caricuao, Contained by, Venezuela) -> Caricuao (5167ms)\nWhere is Venezuela?\tleaders\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (leaders, found in, Venezuela) -> leaders (4808ms)\nWhere is Venezuela?\tOrlando A. Naranjo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (Orlando A. Naranjo, Astronomical objects discovered, 9357 Venezuela) -> Orlando A. Naranjo (5147ms)\nWhere is Venezuela?\tthe opposite\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, do just, the opposite) -> the opposite (5233ms)\nWhere is Venezuela?\tthe perception\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has a bit to do with, the perception) -> the perception (4755ms)\nWhere is Venezuela?\tan up-to-date analysis\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an up-to-date analysis, is happening in, Venezuela) -> an up-to-date analysis (4825ms)\nWhere is Venezuela?\tOil revenue\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Oil revenue, has helped, Venezuela) -> Oil revenue (5187ms)\nWhere is Venezuela?\tthe agreement\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did ratify, the agreement) -> the agreement (5167ms)\nWhere is Venezuela?\tUniversidad Nacional Experimental del T?chira\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Nacional Experimental del T?chira, Contained by, Venezuela) -> Universidad Nacional Experimental del T?chira (5147ms)\nWhere is Venezuela?\tHRW\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (HRW, did a similar hatchet job on, Venezuela) -> HRW (4755ms)\nWhere is Venezuela?\tthe same natives\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (the same natives, found today in, Guyana and Venezuela) -> the same natives (4926ms)\nWhere is Venezuela?\tRussia\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Russia, has agreed to help, Venezuela) -> Russia (4755ms)\nWhere is Venezuela?\tSabaneta\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Sabaneta, Contained by, Venezuela) -> Sabaneta (4957ms)\nWhere is Venezuela?\tpossible\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (possible, is happening in, Venezuela) -> possible (4987ms)\nWhere is Venezuela?\tHugo Chavez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Hugo Chavez, is doing in, Venezuela) -> Hugo Chavez (5262ms)\nWhere is Venezuela?\tThe Citgo sign\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (The Citgo sign, has nothing to do with, Venezuela) -> The Citgo sign (5215ms)\nWhere is Venezuela?\tUniversidad Metropolitana\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Metropolitana, Contained by, Venezuela) -> Universidad Metropolitana (4791ms)\nWhere is Venezuela?\tthe oil companies\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (the oil companies, would get back into, Venezuela) -> the oil companies (5046ms)\nWhere is Venezuela?\ta law one\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (a law one, would expect to find in, Hugo Chavez?s Venezuela) -> a law one (5206ms)\nWhere is Venezuela?\tan interest\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (an interest, is going on in, Venezuela) -> an interest (4623ms)\nWhere is Venezuela?\timport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (import, is n?t produced in, Venezuela) -> import (5031ms)\nWhere is Venezuela?\tThe second cruise\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (The second cruise, went to, Venezuela) -> The second cruise (4987ms)\nWhere is Venezuela?\tthe helmuts\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the helmuts, were going to, Venezuela) -> the helmuts (4682ms)\nWhere is Venezuela?\tthe plate\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did get an out at, the plate) -> the plate (5167ms)\nWhere is Venezuela?\tan exceedingly idealistic idea\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an exceedingly idealistic idea, was happening in, Venezuela) -> an exceedingly idealistic idea (5101ms)\nWhere is Venezuela?\tRoger\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Roger, was doing volunteer work in, Venezuela) -> Roger (4663ms)\nWhere is Venezuela?\tUniversidad Ferm?n Toro, main campus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Ferm?n Toro, main campus, Contained by, Venezuela) -> Universidad Ferm?n Toro, main campus (5060ms)\nWhere is Venezuela?\tHuman Rights\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (Human Rights, have repeatedly found, Venezuela responsible) -> Human Rights (5233ms)\nWhere is Venezuela?\tstreams\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (streams, kill thousands in, Venezuela) -> streams (5125ms)\nWhere is Venezuela?\tBejuma Municipality\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Bejuma Municipality, Contained by, Venezuela) -> Bejuma Municipality (5250ms)\nWhere is Venezuela?\tHezbollah\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Hezbollah, have established bases in, Venezuela) -> Hezbollah (5017ms)\nWhere is Venezuela?\ta full understanding\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a full understanding, is happening in, Venezuela) -> a full understanding (5136ms)\nWhere is Venezuela?\tEurope\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Europe, is really happening in, Venezuela) -> Europe (5157ms)\nWhere is Venezuela?\tthe difficult economic situation\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (the difficult economic situation, has developed in, Venezuela) -> the difficult economic situation (5157ms)\nWhere is Venezuela?\tcaudillismo\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, have history of, $x) -> (Venezuela, has a long history of, caudillismo) -> caudillismo (4682ms)\nWhere is Venezuela?\tInfo Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (Info Venezuela, Find out more about, Venezuela) -> Info Venezuela (5017ms)\nWhere is Venezuela?\tbeautiful work\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, keep doing, beautiful work) -> beautiful work (5215ms)\nWhere is Venezuela?\tDiplomatico rum\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Diplomatico rum, is produced in, Venezuela) -> Diplomatico rum (4808ms)\nWhere is Venezuela?\tUniversidad Arturo Michelena\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Arturo Michelena, Contained by, Venezuela) -> Universidad Arturo Michelena (5088ms)\nWhere is Venezuela?\ta good idea\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did n?t think is would be, a good idea) -> a good idea (4791ms)\nWhere is Venezuela?\tthe missing persons\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the missing persons, eventually went back to, Venezuela) -> the missing persons (3715ms)\nWhere is Venezuela?\tthe Future Bring\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (the question ?Post Election Venezuela, Does, the Future Bring) -> the Future Bring (4773ms)\nWhere is Venezuela?\tMack\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (Mack, introduced another resolution calling for, Venezuela) -> Mack (4562ms)\nWhere is Venezuela?\tpoliticians\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (politicians, do in, Venezuela) -> politicians (4876ms)\nWhere is Venezuela?\tCompare that\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Compare that, is happening in, Venezuela) -> Compare that (4808ms)\nWhere is Venezuela?\tthe Government\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (the Government, introduced into, Venezuela) -> the Government (4876ms)\nWhere is Venezuela?\tBrazil and Chile\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, do better than, Brazil and Chile) -> Brazil and Chile (4285ms)\nWhere is Venezuela?\tToitico Tuyo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Toitico Tuyo, produced in, Venezuela , Colombia and Puerto Rico) -> Toitico Tuyo (4926ms)\nWhere is Venezuela?\tOctober 12 Columbus Day\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, have name of, $x) -> (Venezuela, have changed the name of, October 12 Columbus Day) -> October 12 Columbus Day (4892ms)\nWhere is Venezuela?\tsense\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (sense, is happening in, Venezuela) -> sense (5197ms)\nWhere is Venezuela?\tthe transplant\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, do, the transplant) -> the transplant (5187ms)\nWhere is Venezuela?\tCerro Marahuaca\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Cerro Marahuaca, Contained by, Venezuela) -> Cerro Marahuaca (5046ms)\nWhere is Venezuela?\tair\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, may be done by, air) -> air (4791ms)\nWhere is Venezuela?\tLand Cruisers\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Land Cruisers, quickly found their way to, Venezuela) -> Land Cruisers (5074ms)\nWhere is Venezuela?\tmines\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (mines, went to, Venezuela) -> mines (4859ms)\nWhere is Venezuela?\tthe capability\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (the capability, found in, Venezuela) -> the capability (5242ms)\nWhere is Venezuela?\tBombardment of Fort San Carlos\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Bombardment of Fort San Carlos, Included in event, Venezuela Crisis of 1902?1903) -> Bombardment of Fort San Carlos (4825ms)\nWhere is Venezuela?\tan exploring expedition\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (an exploring expedition, later went to, Venezuela) -> an exploring expedition (4842ms)\nWhere is Venezuela?\tZelaya\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Zelaya, may have had help from, Venezuela) -> Zelaya (5017ms)\nWhere is Venezuela?\tEstadio Agust?n Tovar\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Estadio Agust?n Tovar, Contained by, Venezuela) -> Estadio Agust?n Tovar (5215ms)\nWhere is Venezuela?\tCa?o Central\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Ca?o Central, Contained by, Venezuela) -> Ca?o Central (5250ms)\nWhere is Venezuela?\tevents\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (events, is happening in, Venezuela) -> events (4663ms)\nWhere is Venezuela?\tAmericas\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Americas, Contains, Venezuela) -> Americas (5136ms)\nWhere is Venezuela?\ta speech\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a speech, is happening in, Venezuela) -> a speech (4285ms)\nWhere is Venezuela?\taverage\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done worse than, average) -> average (5206ms)\nWhere is Venezuela?\tthe official story\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the official story, happened in, Venezuela) -> the official story (4562ms)\nWhere is Venezuela?\tan Iowa audience\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (an Iowa audience, is going wrong in, Venezuela) -> an Iowa audience (4643ms)\nWhere is Venezuela?\tthe continent\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (the continent, were also discovered in, Venezuela and Peru) -> the continent (5187ms)\nWhere is Venezuela?\tCharity\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Charity, established in, Venezuela) -> Charity (5136ms)\nWhere is Venezuela?\t2009 Mack\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (2009 Mack, introduced another resolution calling for, Venezuela) -> 2009 Mack (4603ms)\nWhere is Venezuela?\tDengue fever\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (Dengue fever, killed 40 people in, Venezuela) -> Dengue fever (4926ms)\nWhere is Venezuela?\thostile policies\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did surprisingly well despite, hostile policies) -> hostile policies (3027ms)\nWhere is Venezuela?\tGonzalez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Gonzalez, went back to, Venezuela) -> Gonzalez (4644ms)\nWhere is Venezuela?\tWilson Ramos\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Wilson Ramos, found safe in, Venezuela) -> Wilson Ramos (5046ms)\nWhere is Venezuela?\t4000\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (4000, were killed in, Venezuela) -> 4000 (5136ms)\nWhere is Venezuela?\treference\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (reference, is happening in, Venezuela) -> reference (4876ms)\nWhere is Venezuela?\tIran\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Iran, has gotten very cozy with, Venezuela) -> Iran (5115ms)\nWhere is Venezuela?\tTanzanian honey taste\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does, Tanzanian honey taste) -> Tanzanian honey taste (5088ms)\nWhere is Venezuela?\tthe list\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (the list, do require visas to visit, Venezuela) -> the list (5101ms)\nWhere is Venezuela?\treturn Cuba\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (return Cuba, gets vital oil cheaply from, Venezuela) -> return Cuba (5088ms)\nWhere is Venezuela?\tthe WSF\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the WSF, is going on in, Venezuela) -> the WSF (4541ms)\nWhere is Venezuela?\tChristian\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Christian, went to, Venezuela) -> Christian (5136ms)\nWhere is Venezuela?\tMiss Venezuela 2004\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2004, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2004 (5046ms)\nWhere is Venezuela?\tLiterary tradition\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Literary tradition, became established in, Venezuela) -> Literary tradition (4876ms)\nWhere is Venezuela?\tBritain\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Britain, is happening in, Venezuela) -> Britain (4701ms)\nWhere is Venezuela?\t24 March television\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (24 March television, suddenly discovered, a Venezuela) -> 24 March television (4842ms)\nWhere is Venezuela?\tthe truth\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the truth, is happening in, Venezuela?) -> the truth (5060ms)\nWhere is Venezuela?\teach year\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (each year, goes through, Venezuela) -> each year (4825ms)\nWhere is Venezuela?\tBrazil\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did considerably better than, Brazil) -> Brazil (4503ms)\nWhere is Venezuela?\tthe region\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (the region, help, Venezuela) -> the region (5125ms)\nWhere is Venezuela?\teducation\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done so much for, education) -> education (5046ms)\nWhere is Venezuela?\tBorders\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Borders, did issue a new report on, Venezuela) -> Borders (4791ms)\nWhere is Venezuela?\tthe significance and meaning\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the significance and meaning, was happening in, Venezuela) -> the significance and meaning (4957ms)\nWhere is Venezuela?\tMiss Venezuela 2008\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2008, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2008 (4808ms)\nWhere is Venezuela?\ta clear understanding\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (a clear understanding, 's going on in, venezuela) -> a clear understanding (4737ms)\nWhere is Venezuela?\tquestions\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (questions, was going on in, Venezuela) -> questions (5147ms)\nWhere is Venezuela?\tHalliburton\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Halliburton, has done business in, Venezuela) -> Halliburton (4583ms)\nWhere is Venezuela?\toil\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does on, oil) -> oil (5242ms)\nWhere is Venezuela?\tvarious animals\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (various animals, found, quick-frozen Venezuela) -> various animals (5177ms)\nWhere is Venezuela?\tAddenum\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Addenum, Did, Venezuela) -> Addenum (5126ms)\nWhere is Venezuela?\tThe Catholic Church\t0.555555555554\tWhere is Venezuela? -> $x: ($x, influence, venezuelum) -> (The Catholic Church, still wields influence in, Venezuela) -> The Catholic Church (3817ms)\nWhere is Venezuela?\tJudo\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, started doing, Judo) -> Judo (4808ms)\nWhere is Venezuela?\tWorld Cup qualifying\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done well to start, World Cup qualifying) -> World Cup qualifying (4644ms)\nWhere is Venezuela?\tL & L International\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (L & L International, find, VenezuelaUsed Aircraft) -> L & L International (5177ms)\nWhere is Venezuela?\tconcerned Colombian rebels\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (concerned Colombian rebels, are finding refuge in, Venezuela) -> concerned Colombian rebels (5060ms)\nWhere is Venezuela?\tArcacha\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Arcacha, went to, Venezuela) -> Arcacha (4876ms)\nWhere is Venezuela?\tWalter E. Rollins\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Walter E. Rollins, Tracks produced, Venezuela) -> Walter E. Rollins (3817ms)\nWhere is Venezuela?\tChina\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (China, also committed to develop, Venezuela) -> China (5167ms)\nWhere is Venezuela?\ta jeweler\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (a jeweler, goes to, Venezuela) -> a jeweler (5017ms)\nWhere is Venezuela?\tdollars\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has already done billions of, dollars) -> dollars (4957ms)\nWhere is Venezuela?\tthe corollary\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did n?t listen to, the corollary) -> the corollary (5031ms)\nWhere is Venezuela?\tan excellent introduction\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an excellent introduction, is happening today in, Venezuela) -> an excellent introduction (4957ms)\nWhere is Venezuela?\tCarora Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Carora Airport, Contained by, Venezuela) -> Carora Airport (5088ms)\nWhere is Venezuela?\tCalabozo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Calabozo, Contained by, Venezuela) -> Calabozo (4808ms)\nWhere is Venezuela?\tSan Antonio del T?chira\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Antonio del T?chira, Contained by, Venezuela) -> San Antonio del T?chira (4926ms)\nWhere is Venezuela?\tCoca-Cola\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen to, venezuelum) -> (Coca-Cola, just happens to be owner of, Venezuela) -> Coca-Cola (5147ms)\nWhere is Venezuela?\t1796 Hacienda Santa Teresa\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (1796 Hacienda Santa Teresa, began producing, rum in Venezuela) -> 1796 Hacienda Santa Teresa (4941ms)\nWhere is Venezuela?\tthe events\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (the events, have nothing to do with, Venezuela) -> the events (5233ms)\nWhere is Venezuela?\tHarper\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Harper, could go to, Venezuela) -> Harper (4926ms)\nWhere is Venezuela?\tFranklin Barreto\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Franklin Barreto, got, Venezuela) -> Franklin Barreto (5074ms)\nWhere is Venezuela?\tMAN Oil\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (MAN Oil, was first discovered in, northwestern Venezuela) -> MAN Oil (5147ms)\nWhere is Venezuela?\tThe Andean Condor\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (The Andean Condor, can be found in, Venezuela) -> The Andean Condor (5197ms)\nWhere is Venezuela?\tseveral developing nations\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (several developing nations, get cheap oil from, Venezuela) -> several developing nations (5167ms)\nWhere is Venezuela?\tConnie Mack\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (Connie Mack, introduced a resolution calling for, Venezuela) -> Connie Mack (5224ms)\nWhere is Venezuela?\tThe vast majority\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (The vast majority, is found in, Canada and Venezuela) -> The vast majority (5206ms)\nWhere is Venezuela?\tClarines\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Clarines, Contained by, Venezuela) -> Clarines (5157ms)\nWhere is Venezuela?\toil sands\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (oil sands, is produced in, Venezuela) -> oil sands (5115ms)\nWhere is Venezuela?\tamethystinus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (amethystinus, is found in, Venezuela) -> amethystinus (5233ms)\nWhere is Venezuela?\tsimply Vietnam\t0.555555555554\tWhere is Venezuela? -> $x: ($x, replace, venezuelum) -> (simply Vietnam, has been replaced by, Venezuela or Afghanistan) -> simply Vietnam (4562ms)\nWhere is Venezuela?\tCiudad Losada\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Ciudad Losada, Contained by, Venezuela) -> Ciudad Losada (4987ms)\nWhere is Venezuela?\t?The majors\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (?The majors, went to, Venezuela) -> ?The majors (4719ms)\nWhere is Venezuela?\tLatin America\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Latin America, is happening in, Venezuela) -> Latin America (5125ms)\nWhere is Venezuela?\tRoman coins\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (Roman coins, have been found in, Venezuela and Maine) -> Roman coins (5206ms)\nWhere is Venezuela?\ta society\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, can do for, a society) -> a society (3817ms)\nWhere is Venezuela?\tA new climbing catfish\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (A new climbing catfish, has been described from, Venezuela) -> A new climbing catfish (5206ms)\nWhere is Venezuela?\tAmerica\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (America, has done in, Venezuela) -> America (4972ms)\nWhere is Venezuela?\tBuenos Aires\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Buenos Aires, Contains, Venezuela) -> Buenos Aires (5167ms)\nWhere is Venezuela?\tThe coca financing plan\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (The coca financing plan, has helped, Venezuela) -> The coca financing plan (5031ms)\nWhere is Venezuela?\tAustralia\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Australia, does, Haiti , Venezuela) -> Australia (5177ms)\nWhere is Venezuela?\tThe international community\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (The international community, goes on in, Venezuela) -> The international community (5242ms)\nWhere is Venezuela?\t50 %\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (50 %, just happened in, Venezuela) -> 50 % (5101ms)\nWhere is Venezuela?\tCh?vez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Ch?vez, has done in, Venezuela) -> Ch?vez (4562ms)\nWhere is Venezuela?\tMariara\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Mariara, Contained by, Venezuela) -> Mariara (5157ms)\nWhere is Venezuela?\tOscar\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Oscar, produced in, Venezuela , Colombia and Puerto Rico) -> Oscar (4755ms)\nWhere is Venezuela?\tVero and Nate\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Vero and Nate, are getting married in, Venezuela) -> Vero and Nate (4773ms)\nWhere is Venezuela?\twont post\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (wont post, just do a quick google search on, Venezuela) -> wont post (5017ms)\nWhere is Venezuela?\tThe Bush regime\t0.555555555554\tWhere is Venezuela? -> $x: ($x, fight, venezuelum) -> (The Bush regime, fights, Venezuela) -> The Bush regime (4623ms)\nWhere is Venezuela?\t13,985 people\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (13,985 people, were killed in, Venezuela) -> 13,985 people (4737ms)\nWhere is Venezuela?\ta full Mercosur member\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did n?t become, a full Mercosur member) -> a full Mercosur member (4755ms)\nWhere is Venezuela?\tthe bodies of the three victims\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (the bodies of the three victims, were found in, Venezuela) -> the bodies of the three victims (5147ms)\nWhere is Venezuela?\tuniversity professor\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (university professor, can find a counterpart in, Venezuela) -> university professor (4957ms)\nWhere is Venezuela?\t200\t0.555555555554\tWhere is Venezuela? -> $x: ($x, create, venezuelum) -> (200, have been created in, Venezuela) -> 200 (4910ms)\nWhere is Venezuela?\tthe state?\t0.555555555554\tWhere is Venezuela? -> $x: ($x, define, venezuelum) -> (the state?, started to define, Venezuela?s oil policies) -> the state? (5136ms)\nWhere is Venezuela?\tthe economy\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the economy, happened in, Venezuela) -> the economy (4859ms)\nWhere is Venezuela?\tSeattle\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Seattle, then got dumped by, Venezuela 2-0) -> Seattle (4987ms)\nWhere is Venezuela?\t20,000\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (20,000, have gone to, Venezuela) -> 20,000 (4972ms)\nWhere is Venezuela?\tbehalf\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela and Iraq, is all done on, behalf) -> behalf (5147ms)\nWhere is Venezuela?\tTaylor\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done well in, Taylor) -> Taylor (4987ms)\nWhere is Venezuela?\tthe legislative body\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (the legislative body, offers his help to, Venezuela) -> the legislative body (5187ms)\nWhere is Venezuela?\tNueva Cadiz\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Nueva Cadiz, was established in, Venezuela) -> Nueva Cadiz (4892ms)\nWhere is Venezuela?\tGuatire\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Guatire, Contained by, Venezuela) -> Guatire (4737ms)\nWhere is Venezuela?\tan apt metaphor\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an apt metaphor, 's happening in, Venezuela) -> an apt metaphor (5115ms)\nWhere is Venezuela?\tthe community\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the community, is truly happening in, Venezuela) -> the community (4583ms)\nWhere is Venezuela?\tNueva Esparta\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Nueva Esparta, Contained by, Venezuela) -> Nueva Esparta (4876ms)\nWhere is Venezuela?\tLichen genus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (Lichen genus, found in, Venezuela) -> Lichen genus (5206ms)\nWhere is Venezuela?\tBermuda\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (Bermuda, have been found overseas in, Venezuela) -> Bermuda (5242ms)\nWhere is Venezuela?\tPuerto Miranda\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Puerto Miranda, Contained by, Venezuela) -> Puerto Miranda (4892ms)\nWhere is Venezuela?\tThe species\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (The species, is found in, Venezuela) -> The species (5002ms)\nWhere is Venezuela?\tdebate\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (debate, is going on in, Venezuela) -> debate (4859ms)\nWhere is Venezuela?\tcompletely opposite images\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (completely opposite images, was going on in, Venezuela) -> completely opposite images (5250ms)\nWhere is Venezuela?\tReformed Catholic Church\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Reformed Catholic Church, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Reformed%20Catholic%20Church%20(Venezuela)) -> Reformed Catholic Church (5074ms)\nWhere is Venezuela?\toppression\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, have history of, $x) -> (Colombia and Venezuela, have a similar history of, oppression) -> oppression (4808ms)\nWhere is Venezuela?\tA new species\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (A new species, is described from, Venezuela) -> A new species (5125ms)\nWhere is Venezuela?\tOjeda\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Ojeda, finds, the Guinanas and Venezuela) -> Ojeda (5215ms)\nWhere is Venezuela?\tseveral species\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (several species, found in, Venezuela) -> several species (5206ms)\nWhere is Venezuela?\tsides less anti-American feelings\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (sides less anti-American feelings, should develop in, Venezuela) -> sides less anti-American feelings (4773ms)\nWhere is Venezuela?\tBarinas Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Barinas Airport, Contained by, Venezuela) -> Barinas Airport (5074ms)\nWhere is Venezuela?\tyou?ll\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (you?ll, find valuable advices about, venezuela travel) -> you?ll (5031ms)\nWhere is Venezuela?\tOrtega\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Ortega, has agreed to help, Iran and Venezuela finance) -> Ortega (5167ms)\nWhere is Venezuela?\tUnited Socialist Party of Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (United Socialist Party of Venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/United%20Socialist%20Party%20of%20Venezuela) -> United Socialist Party of Venezuela (5002ms)\nWhere is Venezuela?\ta version of Linux\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (a version of Linux, developed in, Venezuela) -> a version of Linux (5206ms)\nWhere is Venezuela?\tThe Spanish islands\t0.555555555554\tWhere is Venezuela? -> $x: ($x, influence, venezuelum) -> (The Spanish islands, influences from, Venezuela) -> The Spanish islands (5215ms)\nWhere is Venezuela?\tDr. Nancy Wexler\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Dr. Nancy Wexler, went to, Venezuela) -> Dr. Nancy Wexler (5060ms)\nWhere is Venezuela?\tSan Antonio de Los Altos\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Antonio de Los Altos, Contained by, Venezuela) -> San Antonio de Los Altos (5262ms)\nWhere is Venezuela?\tOil States\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Oil States, does business in, Venezuela) -> Oil States (5017ms)\nWhere is Venezuela?\tThe accord\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (The accord, established, a Venezuela-Guyana joint commission) -> The accord (4663ms)\nWhere is Venezuela?\tA coup\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (A coup, happened in, Venezuela) -> A coup (4682ms)\nWhere is Venezuela?\tthe Cuban Government\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (the Cuban Government, found in, Hugo Chavez?s Venezuela) -> the Cuban Government (5224ms)\nWhere is Venezuela?\tthe three victims\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (the three victims, were found in, Venezuela) -> the three victims (5177ms)\nWhere is Venezuela?\tFast\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Fast, Find by using, Drop-down Box Venezuela) -> Fast (4972ms)\nWhere is Venezuela?\tthe commission\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (the commission, found against, Venezuela) -> the commission (5242ms)\nWhere is Venezuela?\tthe Belgians\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did, the Belgians) -> the Belgians (4562ms)\nWhere is Venezuela?\tPico Pan de Az?car\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Pico Pan de Az?car, Contained by, Venezuela) -> Pico Pan de Az?car (4791ms)\nWhere is Venezuela?\tAn arm\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (An arm, found off the coast of, Venezuela) -> An arm (5046ms)\nWhere is Venezuela?\tJes?s Soto Museum of Modern Art\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Jes?s Soto Museum of Modern Art, Contained by, Venezuela) -> Jes?s Soto Museum of Modern Art (5233ms)\nWhere is Venezuela?\tUniversidad Experimental Polit?cnica Antonio Jos? de Sucre\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Experimental Polit?cnica Antonio Jos? de Sucre, Contained by, Venezuela) -> Universidad Experimental Polit?cnica Antonio Jos? de Sucre (4719ms)\nWhere is Venezuela?\t2010\t0.555555555554\tWhere is Venezuela? -> $x: ($x, fight, venezuelum) -> (2010, could see a potential fight in, Venezuela) -> 2010 (4503ms)\nWhere is Venezuela?\timperialism\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (imperialism, wants to get its hands on, Venezuela?s oil) -> imperialism (5224ms)\nWhere is Venezuela?\tThe airline\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (The airline, was established by, Aeropostal Alas de Venezuela) -> The airline (5215ms)\nWhere is Venezuela?\tGeneral Harrison\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (General Harrison, did so for, Venezuela) -> General Harrison (4926ms)\nWhere is Venezuela?\tany other Western European country\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does, any other Western European country) -> any other Western European country (4876ms)\nWhere is Venezuela?\tWashington\t0.555555555554\tWhere is Venezuela? -> $x: ($x, surround, venezuelum) -> (Washington, is surrounding, Venezuela) -> Washington (4808ms)\nWhere is Venezuela?\tBol?var\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Bol?var, had got the freedom of, Venezuela) -> Bol?var (5215ms)\nWhere is Venezuela?\tBruzual\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Bruzual, Contained by, Venezuela) -> Bruzual (5101ms)\nWhere is Venezuela?\tBush\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does verbal battle with, Bush) -> Bush (4663ms)\nWhere is Venezuela?\tan Atlantic island\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (an Atlantic island, found north of, Venezuela) -> an Atlantic island (4987ms)\nWhere is Venezuela?\tthe security brief\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (the security brief, presents events in, Venezuela) -> the security brief (4583ms)\nWhere is Venezuela?\tn?t taste\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did, n?t taste) -> n?t taste (5101ms)\nWhere is Venezuela?\tthe comrades\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (the comrades, have done marvellous work in, Venezuela) -> the comrades (4388ms)\nWhere is Venezuela?\tthe media\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the media, is really happening in, Venezuela) -> the media (5060ms)\nWhere is Venezuela?\tApure\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Apure, Contained by, Venezuela) -> Apure (4541ms)\nWhere is Venezuela?\tmore than\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, could do, more than) -> more than (4682ms)\nWhere is Venezuela?\tSanare, Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Sanare, Venezuela, Contained by, Venezuela) -> Sanare, Venezuela (4972ms)\nWhere is Venezuela?\theavy bituminous oil\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (heavy bituminous oil, found chiefly in, Canada and Venezuela) -> heavy bituminous oil (5187ms)\nWhere is Venezuela?\tMuammar Gaddafi\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Muammar Gaddafi, may have gone to, Venezuela) -> Muammar Gaddafi (5074ms)\nWhere is Venezuela?\tthe style\t0.555555555554\tWhere is Venezuela? -> $x: ($x, dance, venezuelum) -> (the style, danced in, Venezuela and Dominicana) -> the style (5187ms)\nWhere is Venezuela?\tmuch curiosity\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (much curiosity, is happening in, Venezuela) -> much curiosity (5088ms)\nWhere is Venezuela?\tIrish film makers\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Irish film makers, happened to be in, Venezuela) -> Irish film makers (4663ms)\nWhere is Venezuela?\tthe left\t0.555555555554\tWhere is Venezuela? -> $x: ($x, fight, venezuelum) -> (the left, had fought in, Venezuela) -> the left (5017ms)\nWhere is Venezuela?\tBasileuterus zimmeri\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (Basileuterus zimmeri, described from, Venezuela) -> Basileuterus zimmeri (5136ms)\nWhere is Venezuela?\tMiss Earth Venezuela 2009\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Earth Venezuela 2009, Instance of recurring event, Miss Earth Venezuela) -> Miss Earth Venezuela 2009 (5197ms)\nWhere is Venezuela?\tMiss Venezuela 2003\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2003, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2003 (4859ms)\nWhere is Venezuela?\tCesar Farias\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Cesar Farias, got, Venezuela) -> Cesar Farias (4859ms)\nWhere is Venezuela?\tPaparo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Paparo, Contained by, Venezuela) -> Paparo (4644ms)\nWhere is Venezuela?\tcommunity portal page\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela i, just did a few changes to, community portal page) -> community portal page (4701ms)\nWhere is Venezuela?\tKidnapped Brothers\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (Kidnapped Brothers, Killed in, Venezuela) -> Kidnapped Brothers (5115ms)\nWhere is Venezuela?\tevery other run\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (every other run, went through, Venezuela) -> every other run (5126ms)\nWhere is Venezuela?\tSan Juan de Payara\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Juan de Payara, Contained by, Venezuela) -> San Juan de Payara (4842ms)\nWhere is Venezuela?\tLa Asunci?n\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (La Asunci?n, Contained by, Venezuela) -> La Asunci?n (5177ms)\nWhere is Venezuela?\tpublic meetings\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, do organise, public meetings) -> public meetings (4791ms)\nWhere is Venezuela?\tsurpluses\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, have history of, $x) -> (Venezuela, has had a history of, surpluses) -> surpluses (4773ms)\nWhere is Venezuela?\tVenezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Venezuela, Events, Venezuela Crisis of 1902?1903) -> Venezuela (4755ms)\nWhere is Venezuela?\tMonagas\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Monagas, Contained by, Venezuela) -> Monagas (4389ms)\nWhere is Venezuela?\tTae Kwon\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Tae Kwon, Do in, Venezuela) -> Tae Kwon (4623ms)\nWhere is Venezuela?\tJeff Cohen\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Jeff Cohen, Go to, Venezuela) -> Jeff Cohen (4892ms)\nWhere is Venezuela?\tthe course\t0.555555555554\tWhere is Venezuela? -> $x: ($x, design, venezuelum) -> (the course, designed by, Leopoldo Palacios of Venezuela) -> the course (5002ms)\nWhere is Venezuela?\tthe awareness\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the awareness, is happening in, Venezuela) -> the awareness (4737ms)\nWhere is Venezuela?\tamazement\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (amazement, is happening in, Venezuela) -> amazement (4719ms)\nWhere is Venezuela?\tcompanies\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (companies, doing business in, Venezuela) -> companies (4737ms)\nWhere is Venezuela?\tPhoberomys\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Phoberomys, was found in, Venezuela) -> Phoberomys (5147ms)\nWhere is Venezuela?\tThe Bolivarian alliance\t0.555555555554\tWhere is Venezuela? -> $x: ($x, comprise, venezuelum) -> (The Bolivarian alliance, is comprised of, Venezuela) -> The Bolivarian alliance (4892ms)\nWhere is Venezuela?\teven Uruguay\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (even Uruguay, get more attention than, Colombia and Venezuela) -> even Uruguay (4644ms)\nWhere is Venezuela?\tQueniquea\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Queniquea, Contained by, Venezuela) -> Queniquea (5136ms)\nWhere is Venezuela?\tthe label corporatism\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the label corporatism, has been happening in, Venezuela) -> the label corporatism (5147ms)\nWhere is Venezuela?\ta coup\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (a coup, is developing in, Venezuela) -> a coup (5167ms)\nWhere is Venezuela?\tFidel Castro\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (Fidel Castro, has found a new economic sponsor in, Venezuela) -> Fidel Castro (5157ms)\nWhere is Venezuela?\tA new missionary recruit\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (A new missionary recruit, went to, Venezuela) -> A new missionary recruit (4719ms)\nWhere is Venezuela?\tdemocracies\t0.555555555554\tWhere is Venezuela? -> $x: ($x, create, venezuelum) -> (democracies, is being created in, Russia and Venezuela) -> democracies (5242ms)\nWhere is Venezuela?\tAriana 0.\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Ariana 0., produced entirely in, Venezuela ISA TKM) -> Ariana 0. (4825ms)\nWhere is Venezuela?\tLa Chinita International Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (La Chinita International Airport, Contained by, Venezuela) -> La Chinita International Airport (4603ms)\nWhere is Venezuela?\tSanta Ana del T?chira\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Santa Ana del T?chira, Contained by, Venezuela) -> Santa Ana del T?chira (4503ms)\nWhere is Venezuela?\tCuba Es Musica\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Cuba Es Musica, went gold in, Venezuela) -> Cuba Es Musica (5167ms)\nWhere is Venezuela?\tColumbus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (Columbus, discovered the area of, Venezuela) -> Columbus (5224ms)\nWhere is Venezuela?\tRussia?s PM Vladimir Putin\t0.555555555554\tWhere is Venezuela? -> $x: ($x, first make, venezuelum) -> (Russia?s PM Vladimir Putin, made his first visit to, Venezuela) -> Russia?s PM Vladimir Putin (5233ms)\nWhere is Venezuela?\tthe government\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (the government, is to get, Venezuela) -> the government (5197ms)\nWhere is Venezuela?\ta keen interest\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a keen interest, is happening in, Venezuela) -> a keen interest (5046ms)\nWhere is Venezuela?\tjust what\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (just what, happened in, Venezuela) -> just what (4682ms)\nWhere is Venezuela?\tthe HoV delegates\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the HoV delegates, went to, Venezuela) -> the HoV delegates (3638ms)\nWhere is Venezuela?\tEstadio Metropolitano de F?tbol de Lara\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Estadio Metropolitano de F?tbol de Lara, Events, Miss Venezuela 2010) -> Estadio Metropolitano de F?tbol de Lara (5206ms)\nWhere is Venezuela?\tThe title\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (The title, is happening in, Venezuela) -> The title (4623ms)\nWhere is Venezuela?\tso\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done, so) -> so (5224ms)\nWhere is Venezuela?\tBob Timmermann Carlos Zambrano\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Bob Timmermann Carlos Zambrano, gets the call for, Venezuela) -> Bob Timmermann Carlos Zambrano (5046ms)\nWhere is Venezuela?\tyears\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, were doing for, years) -> years (4892ms)\nWhere is Venezuela?\tMiss Earth Venezuela 2007\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Earth Venezuela 2007, Instance of recurring event, Miss Earth Venezuela) -> Miss Earth Venezuela 2007 (5147ms)\nWhere is Venezuela?\tUniversidad Nororiental Gran Mariscal de Ayacucho, main campus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Nororiental Gran Mariscal de Ayacucho, main campus, Contained by, Venezuela) -> Universidad Nororiental Gran Mariscal de Ayacucho, main campus (5177ms)\nWhere is Venezuela?\tMachiques\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Machiques, Contained by, Venezuela) -> Machiques (4773ms)\nWhere is Venezuela?\tUniversidad Cat?lica Santa Rosa, main campus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Cat?lica Santa Rosa, main campus, Contained by, Venezuela) -> Universidad Cat?lica Santa Rosa, main campus (4541ms)\nWhere is Venezuela?\tNorway\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does, Norway) -> Norway (5031ms)\nWhere is Venezuela?\tVenezuela campaign\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Venezuela campaign, is happening in, Venezuela) -> Venezuela campaign (4503ms)\nWhere is Venezuela?\tHonduras\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Honduras, happened in, Venezuela) -> Honduras (5197ms)\nWhere is Venezuela?\tT?chira River\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (T?chira River, Contained by, Venezuela) -> T?chira River (4859ms)\nWhere is Venezuela?\tPlans\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Plans, Get, cheap Venezuela phone cards) -> Plans (5177ms)\nWhere is Venezuela?\tMiss Venezuela 2005\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2005, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2005 (4583ms)\nWhere is Venezuela?\tConditions\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (Conditions, are being developed in, Venezuela) -> Conditions (4808ms)\nWhere is Venezuela?\tthe other hand\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the other hand, will happen in, Venezuela) -> the other hand (5233ms)\nWhere is Venezuela?\tHeavy crude oil\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Heavy crude oil, produced from, Venezuela) -> Heavy crude oil (5233ms)\nWhere is Venezuela?\tSame\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Same, goes for, Venezuela) -> Same (4663ms)\nWhere is Venezuela?\tPorlamar\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Porlamar, Contained by, Venezuela) -> Porlamar (5233ms)\nWhere is Venezuela?\telectronica music\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does some kind of, electronica music) -> electronica music (4701ms)\nWhere is Venezuela?\tEscuela Latinoamerica\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Escuela Latinoamerica, did in, Venezuela) -> Escuela Latinoamerica (4541ms)\nWhere is Venezuela?\tA bill\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (A bill, has been introduced in, Venezuela) -> A bill (5187ms)\nWhere is Venezuela?\tGazprom\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Gazprom, has been doing in, Venezuela) -> Gazprom (5074ms)\nWhere is Venezuela?\texactly\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (exactly, is happening in, Venezuela) -> exactly (5177ms)\nWhere is Venezuela?\tthe lights\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the lights, are going out sporadically in, Venezuela) -> the lights (4623ms)\nWhere is Venezuela?\tBill Richardson\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Bill Richardson, went to, Venezuela) -> Bill Richardson (5250ms)\nWhere is Venezuela?\tPuerto Ordaz and San Felix\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Puerto Ordaz and San Felix, Contained by, Venezuela) -> Puerto Ordaz and San Felix (5167ms)\nWhere is Venezuela?\tthree years\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (three years, was introduced first to, Venezuela) -> three years (4972ms)\nWhere is Venezuela?\tan account\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an account, is happening in, Venezuela) -> an account (4987ms)\nWhere is Venezuela?\tthe joropo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, dance, venezuelum) -> (the joropo, is the national dance of, Venezuela) -> the joropo (5187ms)\nWhere is Venezuela?\tRecent graduate\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Recent graduate, goes to, Venezuela) -> Recent graduate (5157ms)\nWhere is Venezuela?\ta textbook map and eating\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does in, a textbook map and eating) -> a textbook map and eating (5136ms)\nWhere is Venezuela?\tIB TIMES\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (IB TIMES, Does, Venezuela) -> IB TIMES (4503ms)\nWhere is Venezuela?\tThirty years earlier oil\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (Thirty years earlier oil, had been discovered in, Venezuela) -> Thirty years earlier oil (4910ms)\nWhere is Venezuela?\tEconomists\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (Economists, describe, Venezuela) -> Economists (5074ms)\nWhere is Venezuela?\tthe Lakers\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the Lakers, will go to, Venezuela) -> the Lakers (5002ms)\nWhere is Venezuela?\tReggie\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Reggie, can go to, Venezuela) -> Reggie (4562ms)\nWhere is Venezuela?\tthe public\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the public, is really happening in, Venezuela) -> the public (5167ms)\nWhere is Venezuela?\tcivil war\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, have state of, $x) -> (Venezuela, has entered a state of, civil war) -> civil war (5060ms)\nWhere is Venezuela?\tlobbying government\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (lobbying government, can be found in, Venezuela) -> lobbying government (4926ms)\nWhere is Venezuela?\tthe ?Bolivarian Revolution\t0.555555555554\tWhere is Venezuela? -> $x: ($x, describe, venezuelum) -> (the ?Bolivarian Revolution, has described, Venezuela) -> the ?Bolivarian Revolution (5088ms)\nWhere is Venezuela?\tHarry Belafonte\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Harry Belafonte, did in, Venezuela) -> Harry Belafonte (5197ms)\nWhere is Venezuela?\twhats\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (whats, going on in, Venezuela) -> whats (5250ms)\nWhere is Venezuela?\tDependencias Federales\t0.555555555554\tWhere is Venezuela? -> $x: ($x, find, venezuelum) -> (Dependencias Federales, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Federal%20Dependencies%20of%20Venezuela) -> Dependencias Federales (5125ms)\nWhere is Venezuela?\tthe work\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (the work, did in, Venezuela) -> the work (4842ms)\nWhere is Venezuela?\tthe University\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the University, went to live in, Venezuela) -> the University (5206ms)\nWhere is Venezuela?\tUniversidad Centroccidental Lisandro Alvarado\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Centroccidental Lisandro Alvarado, Contained by, Venezuela) -> Universidad Centroccidental Lisandro Alvarado (4859ms)\nWhere is Venezuela?\tW4DTA\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (W4DTA, will be going to, Venezuela) -> W4DTA (4701ms)\nWhere is Venezuela?\tColumbia\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Columbia, helps keep, Venezuela and China) -> Columbia (4957ms)\nWhere is Venezuela?\tUniversidad Nacional Experimental de Yaracuy, main campus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Nacional Experimental de Yaracuy, main campus, Contained by, Venezuela) -> Universidad Nacional Experimental de Yaracuy, main campus (4941ms)\nWhere is Venezuela?\tCh?vez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Ch?vez, has done in, Venezuela) -> Ch?vez (5242ms)\nWhere is Venezuela?\tthe revolution\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (the revolution, is developing in, Venezuela) -> the revolution (5206ms)\nWhere is Venezuela?\toil companies\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (oil companies, predicted this event in, Venezuela) -> oil companies (4583ms)\nWhere is Venezuela?\tthe 1999 Constitution\t0.555555555554\tWhere is Venezuela? -> $x: ($x, define, venezuelum) -> (the 1999 Constitution, still defines, Venezuela) -> the 1999 Constitution (5136ms)\nWhere is Venezuela?\tPosada Carriles\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Posada Carriles, did the same in, Venezuela) -> Posada Carriles (5115ms)\nWhere is Venezuela?\tless subsidization\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has to make do with, less subsidization) -> less subsidization (5147ms)\nWhere is Venezuela?\tSmart phones\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Smart phones, have found wide acceptance in, Venezuela) -> Smart phones (5197ms)\nWhere is Venezuela?\tthe slightest impression\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does n?t make, the slightest impression) -> the slightest impression (4892ms)\nWhere is Venezuela?\tSerran?a del Perij?\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Serran?a del Perij?, Contained by, Venezuela) -> Serran?a del Perij? (5187ms)\nWhere is Venezuela?\tAngel Falls\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Angel Falls, Contained by, Venezuela) -> Angel Falls (5206ms)\nWhere is Venezuela?\tAnti-Semitism\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Anti-Semitism, is routinely found in, Venezuela) -> Anti-Semitism (5242ms)\nWhere is Venezuela?\tMaiquet?a\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Maiquet?a, Contained by, Venezuela) -> Maiquet?a (5157ms)\nWhere is Venezuela?\tLuis Sojo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Luis Sojo, should get the gig for, Venezuela) -> Luis Sojo (4957ms)\nWhere is Venezuela?\tCaucagua\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Caucagua, Contained by, Venezuela) -> Caucagua (4926ms)\nWhere is Venezuela?\tDecember 17\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (December 17, did, Venezuela) -> December 17 (5187ms)\nWhere is Venezuela?\tUniversidad Cat?lica Andr?s Bello\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Cat?lica Andr?s Bello, Contained by, Venezuela) -> Universidad Cat?lica Andr?s Bello (4583ms)\nWhere is Venezuela?\tlies\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (lies, is really happening in, Venezuela) -> lies (5031ms)\nWhere is Venezuela?\tJuan Pablo Perez Alfonso Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Juan Pablo Perez Alfonso Airport, Contained by, Venezuela) -> Juan Pablo Perez Alfonso Airport (3817ms)\nWhere is Venezuela?\tUniversidad Valle del Momboy, main campus\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Valle del Momboy, main campus, Contained by, Venezuela) -> Universidad Valle del Momboy, main campus (5215ms)\nWhere is Venezuela?\tHerrera?s company\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Herrera?s company, has produced, Venezuela?s only cocoa beans) -> Herrera?s company (5177ms)\nWhere is Venezuela?\tearth\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (earth, does, Venezuela gain) -> earth (4737ms)\nWhere is Venezuela?\ta first hand report\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (a first hand report, is going on in, Venezuela) -> a first hand report (5136ms)\nWhere is Venezuela?\ta new public health system\t0.555555555554\tWhere is Venezuela? -> $x: ($x, have create, venezuelum) -> (a new public health system, has been created in, Venezuela) -> a new public health system (5060ms)\nWhere is Venezuela?\tCanned soursop concentrate\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Canned soursop concentrate, is produced in, Venezuela) -> Canned soursop concentrate (4755ms)\nWhere is Venezuela?\tOnly four ships\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (Only four ships, will be going to, Venezuela) -> Only four ships (4719ms)\nWhere is Venezuela?\ttwo House Representatives\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (two House Representatives, went to, Venezuela) -> two House Representatives (5060ms)\nWhere is Venezuela?\tthe floor\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (the floor, reflect faithfully the events in, Venezuela) -> the floor (4892ms)\nWhere is Venezuela?\tPico Piedras Blancas\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Pico Piedras Blancas, Contained by, Venezuela) -> Pico Piedras Blancas (3817ms)\nWhere is Venezuela?\tdoubt\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, DO, doubt) -> doubt (4972ms)\nWhere is Venezuela?\tIraq\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Iraq, happens in, Venezuela) -> Iraq (4603ms)\nWhere is Venezuela?\tthe one ZTE\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (the one ZTE, produces in, Venezuela and Vietnam) -> the one ZTE (5115ms)\nWhere is Venezuela?\tGreat interest\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Great interest, is happening in, Venezuela) -> Great interest (5017ms)\nWhere is Venezuela?\tApure River\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Apure River, Contained by, Venezuela) -> Apure River (5017ms)\nWhere is Venezuela?\tALBA\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, is doing with, ALBA) -> ALBA (5046ms)\nWhere is Venezuela?\tTerror\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Terror, has helped, Venezuela) -> Terror (5031ms)\nWhere is Venezuela?\tCuban sugar industry technicians\t0.555555555554\tWhere is Venezuela? -> $x: ($x, help, venezuelum) -> (Cuban sugar industry technicians, have helped, Venezuela restart) -> Cuban sugar industry technicians (4957ms)\nWhere is Venezuela?\tpolitical links\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (political links, developed between, Cuba and Venezuela) -> political links (4825ms)\nWhere is Venezuela?\tan institution\t0.555555555554\tWhere is Venezuela? -> $x: ($x, define, venezuelum) -> (an institution, had almost defined, Venezuela) -> an institution (4643ms)\nWhere is Venezuela?\tColombia\t0.555555555554\tWhere is Venezuela? -> $x: ($x, surround, venezuelum) -> (Colombia, is surrounded by, hostile Venezuela) -> Colombia (5157ms)\nWhere is Venezuela?\tAmy\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Amy, happened in, Venezuela) -> Amy (5125ms)\nWhere is Venezuela?\t16 Comments\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (16 Comments, do, Venezuela) -> 16 Comments (4682ms)\nWhere is Venezuela?\tpolitical uncertainty\t0.555555555554\tWhere is Venezuela? -> $x: ($x, define, venezuelum) -> (political uncertainty, will define, Venezuela) -> political uncertainty (4682ms)\nWhere is Venezuela?\tJapan\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (Japan, discovered the beautiful side of, an often ugly Venezuela) -> Japan (5187ms)\nWhere is Venezuela?\tLake Valencia\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Lake Valencia, Contained by, Venezuela) -> Lake Valencia (4701ms)\nWhere is Venezuela?\tthe last issue\t0.555555555554\tWhere is Venezuela? -> $x: ($x, replace, venezuelum) -> (the last issue, will replace, Venezuela) -> the last issue (5002ms)\nWhere is Venezuela?\ttwo soldiers\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (two soldiers, killed at, Venezuela-Colombia border) -> two soldiers (5046ms)\nWhere is Venezuela?\tso many doctors\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (so many doctors, have gone to, Venezuela) -> so many doctors (4910ms)\nWhere is Venezuela?\tProducts\t0.555555555554\tWhere is Venezuela? -> $x: ($x, produce, venezuelum) -> (Products, is a product produced in, venezuela) -> Products (4825ms)\nWhere is Venezuela?\tthe protesters\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the protesters, is happening in, Venezuela) -> the protesters (4773ms)\nWhere is Venezuela?\tmilk , meat and toilet paper\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (milk , meat and toilet paper, are hard to find in, Venezuela) -> milk , meat and toilet paper (5206ms)\nWhere is Venezuela?\tUS companies\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (US companies, do business with, Venezuela) -> US companies (5002ms)\nWhere is Venezuela?\tCuba\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Cuba, gets cheap oil from, Venezuela) -> Cuba (4876ms)\nWhere is Venezuela?\tBol?var, Yaracuy\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Bol?var, Yaracuy, Contained by, Venezuela) -> Bol?var, Yaracuy (4773ms)\nWhere is Venezuela?\tR?o Caribe\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (R?o Caribe, Contained by, Venezuela) -> R?o Caribe (5197ms)\nWhere is Venezuela?\tthe Security Council\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, could do some real damage to, the Security Council) -> the Security Council (4663ms)\nWhere is Venezuela?\tthe leading edge\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the leading edge, 's going on in, Venezuela) -> the leading edge (5224ms)\nWhere is Venezuela?\tMiss Venezuela 2009\t0.555555555554\tWhere is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2009, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2009 (5136ms)\nWhere is Venezuela?\tAn owner-worker class\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (An owner-worker class, does indeed exist in, Venezuela) -> An owner-worker class (4859ms)\nWhere is Venezuela?\tan eery echo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an eery echo, has happened in, Venezuela) -> an eery echo (4643ms)\nWhere is Venezuela?\tproblems\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, have history of, $x) -> (Venezuela, has a long history of, problems) -> problems (5074ms)\nWhere is Venezuela?\tthe Left\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the Left, was really happening in, Venezuela) -> the Left (4893ms)\nWhere is Venezuela?\tD. biflora\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (D. biflora, found in, Venezuela) -> D. biflora (4892ms)\nWhere is Venezuela?\tMayor Buenaventura Vivas Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Mayor Buenaventura Vivas Airport, Contained by, Venezuela) -> Mayor Buenaventura Vivas Airport (5215ms)\nWhere is Venezuela?\texample\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (example, really happened in, Venezuela) -> example (4910ms)\nWhere is Venezuela?\tshameful poor Americans\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (shameful poor Americans, Get aid from, Venezuela) -> shameful poor Americans (4941ms)\nWhere is Venezuela?\tthe word\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the word, is happening in, Venezuela) -> the word (5233ms)\nWhere is Venezuela?\tfamily and friends\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (family and friends, get together in, Venezuela) -> family and friends (5250ms)\nWhere is Venezuela?\tElorza\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Elorza, Contained by, Venezuela) -> Elorza (5060ms)\nWhere is Venezuela?\ta more balanced and rational debate\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a more balanced and rational debate, is happening in, Venezuela) -> a more balanced and rational debate (3715ms)\nWhere is Venezuela?\tPhilly\t0.555555555554\tWhere is Venezuela? -> $x: ($x, inspire, venezuelum) -> (Philly, was inspired by, Venezuela?s El Sistema) -> Philly (5017ms)\nWhere is Venezuela?\tthe former\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the former, went back to, Venezuela) -> the former (4389ms)\nWhere is Venezuela?\tpersonnel\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (personnel, were killed by, Venezuela) -> personnel (5125ms)\nWhere is Venezuela?\tValera\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Valera, Contained by, Venezuela) -> Valera (5242ms)\nWhere is Venezuela?\t9/11 paid American taxes\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (9/11 paid American taxes, does the government of, Venezuela) -> 9/11 paid American taxes (5115ms)\nWhere is Venezuela?\tthe other issue\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the other issue, would happen in, Venezuela) -> the other issue (4737ms)\nWhere is Venezuela?\tTapipa\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Tapipa, Contained by, Venezuela) -> Tapipa (5242ms)\nWhere is Venezuela?\tthe black market\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, is done in, the black market) -> the black market (5101ms)\nWhere is Venezuela?\tbattle longing\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Brazil and Venezuela, prepared to do, battle longing) -> battle longing (4941ms)\nWhere is Venezuela?\ta system\t0.555555555554\tWhere is Venezuela? -> $x: ($x, develop, venezuelum) -> (a system, developed in, Venezuela) -> a system (4808ms)\nWhere is Venezuela?\tthe process\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the process, happened in, Venezuela) -> the process (4682ms)\nWhere is Venezuela?\tBIRDWATCHING Birders\t0.555555555554\tWhere is Venezuela? -> $x: ($x, discover, venezuelum) -> (BIRDWATCHING Birders, have long discovered, Venezuela) -> BIRDWATCHING Birders (4972ms)\nWhere is Venezuela?\ta social revolution\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a social revolution, is happening in, Venezuela) -> a social revolution (4644ms)\nWhere is Venezuela?\tCarabobo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Carabobo, Contained by, Venezuela) -> Carabobo (5250ms)\nWhere is Venezuela?\tThe Spaniards\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (The Spaniards, introduced cacao to, Trinidad and Venezuela) -> The Spaniards (4389ms)\nWhere is Venezuela?\tShri Jyoti Star\t0.555555555554\tWhere is Venezuela? -> $x: ($x, create, venezuelum) -> (Shri Jyoti Star, will create incorrect charts for, Venezuela) -> Shri Jyoti Star (4842ms)\nWhere is Venezuela?\tSan Fernando De Atabapo Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Fernando De Atabapo Airport, Contained by, Venezuela) -> San Fernando De Atabapo Airport (4719ms)\nWhere is Venezuela?\tthe best term\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the best term, is going on in, Venezuela) -> the best term (4719ms)\nWhere is Venezuela?\tPunto\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Punto, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Punto%20(Venezuela)) -> Punto (5101ms)\nWhere is Venezuela?\tProduction facilities\t0.555555555554\tWhere is Venezuela? -> $x: ($x, establish, venezuelum) -> (Production facilities, are established in, Venezuela) -> Production facilities (4791ms)\nWhere is Venezuela?\tthe Global Women?s Strike\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the Global Women?s Strike, went to, Venezuela) -> the Global Women?s Strike (4842ms)\nWhere is Venezuela?\tworld peak oil production\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (world peak oil production, so does, Venezuela) -> world peak oil production (3638ms)\nWhere is Venezuela?\tBailadores\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Bailadores, Contained by, Venezuela) -> Bailadores (4842ms)\nWhere is Venezuela?\tAndres Miguel Salazar Marcano Airport\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Andres Miguel Salazar Marcano Airport, Contained by, Venezuela) -> Andres Miguel Salazar Marcano Airport (4773ms)\nWhere is Venezuela?\tNigeria\t0.555555555554\tWhere is Venezuela? -> $x: ($x, replace, venezuelum) -> (Nigeria, has replaced, Venezuela) -> Nigeria (4701ms)\nWhere is Venezuela?\tmultiparty elections\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did hold, multiparty elections) -> multiparty elections (4972ms)\nWhere is Venezuela?\tEl Tocuyo\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (El Tocuyo, Contained by, Venezuela) -> El Tocuyo (5002ms)\nWhere is Venezuela?\tChvez\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (Chvez, has done in, Venezuela) -> Chvez (4859ms)\nWhere is Venezuela?\tthe Hollywood bootlicks\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the Hollywood bootlicks, always went to, Venezuela) -> the Hollywood bootlicks (4825ms)\nWhere is Venezuela?\tJos? Antonio P?ez Municipality\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Jos? Antonio P?ez Municipality, Contained by, Venezuela) -> Jos? Antonio P?ez Municipality (5002ms)\nWhere is Venezuela?\ta friend\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (a friend, went to, Venezuela) -> a friend (5002ms)\nWhere is Venezuela?\t14000 people\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (14000 people, were killed in, Venezuela) -> 14000 people (4859ms)\nWhere is Venezuela?\tthe revolutionary struggle\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the revolutionary struggle, is now happening in, Venezuela) -> the revolutionary struggle (4583ms)\nWhere is Venezuela?\tscores\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (scores, does, Venezuela) -> scores (5101ms)\nWhere is Venezuela?\tBanco de Venezuela\t0.555555555554\tWhere is Venezuela? -> $x: ($x, found, venezuelum) -> (Banco de Venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Banco%20de%20Venezuela) -> Banco de Venezuela (5101ms)\nWhere is Venezuela?\tBarcelona\t0.555555555554\tWhere is Venezuela? -> $x: ($x, contain, venezuelum) -> (Barcelona, Contained by, Venezuela) -> Barcelona (5157ms)\nWhere is Venezuela?\tthe country\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done very little for, the country) -> the country (4876ms)\nWhere is Venezuela?\tContrast this\t0.555555555554\tWhere is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Contrast this, happened in, Venezuela) -> Contrast this (4663ms)\nWhere is Venezuela?\tthe hell\t0.555555555554\tWhere is Venezuela? -> $x: ($x, go, venezuelum) -> (the hell, go to, Venezuela) -> the hell (4503ms)\nWhere is Venezuela?\tgasoline\t0.555555555554\tWhere is Venezuela? -> $x: ($x, do, venezuelum) -> (gasoline, as is done in, Venezuela) -> gasoline (5157ms)\nWhere is Venezuela?\tthe oil grab\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (Iraq I. Venezuela, already did, the oil grab) -> the oil grab (5115ms)\nWhere is Venezuela?\t4,500 people\t0.555555555554\tWhere is Venezuela? -> $x: ($x, kill, venezuelum) -> (4,500 people, were killed in, Venezuela) -> 4,500 people (4583ms)\nWhere is Venezuela?\tMs. Kimberly\t0.555555555554\tWhere is Venezuela? -> $x: ($x, get, venezuelum) -> (Ms. Kimberly, got in, Venezuela) -> Ms. Kimberly (3638ms)\nWhere is Venezuela?\t1784?Coffee cultivation\t0.555555555554\tWhere is Venezuela? -> $x: ($x, introduce, venezuelum) -> (1784?Coffee cultivation, is introduced into, Venezuela) -> 1784?Coffee cultivation (4541ms)\nWhere is Venezuela?\ta word for work\t0.555555555554\tWhere is Venezuela? -> $x: (venezuelum, do, $x) -> (the Yequana Indians of Venezuela, did have, a word for work) -> a word for work (4541ms)\nWhere is Venezuela?\tthe family\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the family, is in, Venezuela) -> the family (5295ms)\nWhere is Venezuela?\tAhmad\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Ahmad, was located in, Venezuela) -> Ahmad (5303ms)\nWhere is Venezuela?\tDavid Smilde\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (David Smilde, were in, Venezuela) -> David Smilde (5279ms)\nWhere is Venezuela?\tthe rainy season\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the rainy season, is in, Venezuela) -> the rainy season (5310ms)\nWhere is Venezuela?\tIrish filmmakers\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Irish filmmakers, were in, Venezuela) -> Irish filmmakers (5279ms)\nWhere is Venezuela?\tCastro\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Castro, is in, venezuela) -> Castro (5303ms)\nWhere is Venezuela?\tThe falls\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (The falls, are located in, Venezuela) -> The falls (5287ms)\nWhere is Venezuela?\t1973 Father Aguirre\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (1973 Father Aguirre, was in, Venezuela) -> 1973 Father Aguirre (5287ms)\nWhere is Venezuela?\tthe Moras\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the Moras, are in, Venezuela) -> the Moras (5310ms)\nWhere is Venezuela?\tIranian?s president\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Iranian?s president, is in, Venezuela) -> Iranian?s president (5287ms)\nWhere is Venezuela?\tPuerto La Cruz\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Puerto La Cruz, is a city located in the country, venezuela) -> Puerto La Cruz (5303ms)\nWhere is Venezuela?\tthe capital\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (the capital, is located in, Venezuela) -> the capital (5262ms)\nWhere is Venezuela?\tlongtime trade partners\t0.444444444443\tWhere is Venezuela? -> $x: ($x, cause, venezuelum) -> (longtime trade partners, is causing concern among, Venezuela?s) -> longtime trade partners (5262ms)\nWhere is Venezuela?\tThe easternmost p?ramos\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (The easternmost p?ramos, are located in, north-central Venezuela) -> The easternmost p?ramos (5271ms)\nWhere is Venezuela?\tCorruption\t0.444444444443\tWhere is Venezuela? -> $x: ($x, cause, venezuelum) -> (Corruption, is the main cause of, Venezuela) -> Corruption (5303ms)\nWhere is Venezuela?\tIranian President Mahmoud Ahmadinejad\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Iranian President Mahmoud Ahmadinejad, is in, Venezuela) -> Iranian President Mahmoud Ahmadinejad (5271ms)\nWhere is Venezuela?\tLula\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Lula, was in, Venezuela) -> Lula (5271ms)\nWhere is Venezuela?\tthe world gas proved reserve\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the world gas proved reserve, are in, Venezuela) -> the world gas proved reserve (5303ms)\nWhere is Venezuela?\tyesterday\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (yesterday, was in, Venezuela) -> yesterday (5262ms)\nWhere is Venezuela?\tRamos\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Ramos, was in, Venezuela) -> Ramos (5310ms)\nWhere is Venezuela?\tThe Angel Falls\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (The Angel Falls, is located in, Venezuela) -> The Angel Falls (5310ms)\nWhere is Venezuela?\tthe wife\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the wife, is in, Venezuela) -> the wife (5310ms)\nWhere is Venezuela?\tCuban officials\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be involve in, venezuelum) -> (Cuban officials, are involved in, Venezuela 's armed forces) -> Cuban officials (5279ms)\nWhere is Venezuela?\tStandard\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Standard, was in, Venezuela) -> Standard (5262ms)\nWhere is Venezuela?\t1997 and 1998 Economides\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (1997 and 1998 Economides, was in, Venezuela) -> 1997 and 1998 Economides (5295ms)\nWhere is Venezuela?\tthe other two\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the other two, are in, Venezuela) -> the other two (5310ms)\nWhere is Venezuela?\tThe order 's first house outside India\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (The order 's first house outside India, was in, Venezuela) -> The order 's first house outside India (5287ms)\nWhere is Venezuela?\tAssad\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Assad, is in, Venezuela) -> Assad (5287ms)\nWhere is Venezuela?\tAhmadinejad\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Ahmadinejad, was in, Venezuela) -> Ahmadinejad (5310ms)\nWhere is Venezuela?\tthe Angel Falls\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (the Angel Falls, is located in, Venezuela) -> the Angel Falls (5279ms)\nWhere is Venezuela?\tRabbani\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Rabbani, was in, Venezuela) -> Rabbani (5310ms)\nWhere is Venezuela?\tThe projects\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (The projects, are in, Venezuela) -> The projects (5310ms)\nWhere is Venezuela?\tGeneral\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (General, is a specific automobile maker dealer in, venezuela) -> General (5271ms)\nWhere is Venezuela?\tThe CRP\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (The CRP, is in, Venezuela) -> The CRP (5271ms)\nWhere is Venezuela?\tformer KGB operative Vladimir Putin\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (former KGB operative Vladimir Putin, was in, Venezuela) -> former KGB operative Vladimir Putin (5295ms)\nWhere is Venezuela?\tAhmadi-Nejad\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Ahmadi-Nejad, was in, Venezuela) -> Ahmadi-Nejad (5262ms)\nWhere is Venezuela?\tCarl Tranter MSC\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Carl Tranter MSC, were in, Venezuela) -> Carl Tranter MSC (5271ms)\nWhere is Venezuela?\tthe Hoff\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the Hoff, is in down in, Venezuela) -> the Hoff (5287ms)\nWhere is Venezuela?\tDyer\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Dyer, was in, Venezuela) -> Dyer (5262ms)\nWhere is Venezuela?\tFARC members\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (FARC members, are in, Venezuela) -> FARC members (5271ms)\nWhere is Venezuela?\trevenue\t0.444444444443\tWhere is Venezuela? -> $x: ($x, cause, venezuelum) -> (revenue, are the cause of, Venezuela?s expanding arsenal) -> revenue (5295ms)\nWhere is Venezuela?\toil production\t0.444444444443\tWhere is Venezuela? -> $x: ($x, cause, venezuelum) -> (oil production, would also cause large losses for, Venezuela) -> oil production (5303ms)\nWhere is Venezuela?\tfour\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (four, were in, Venezuela) -> four (5271ms)\nWhere is Venezuela?\tan oil pipeline\t0.444444444443\tWhere is Venezuela? -> $x: ($x, cause, venezuelum) -> (an oil pipeline, caused a fire in, western Venezuela) -> an oil pipeline (5303ms)\nWhere is Venezuela?\tthe victim\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the victim, was in, Venezuela) -> the victim (5295ms)\nWhere is Venezuela?\tAn example\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (An example, is in, Venezuela) -> An example (5271ms)\nWhere is Venezuela?\t42,000 Cuban collaborators\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (42,000 Cuban collaborators, are in, Venezuela) -> 42,000 Cuban collaborators (5302ms)\nWhere is Venezuela?\tThe steel-maker\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (The steel-maker, will be located in, Venezuela) -> The steel-maker (5262ms)\nWhere is Venezuela?\tthe delegation\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the delegation, was in, Venezuela) -> the delegation (5271ms)\nWhere is Venezuela?\tJay\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Jay, was in, Venezuela) -> Jay (5310ms)\nWhere is Venezuela?\textra-heavy oil\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (extra-heavy oil, is located in, Venezuela?s Orinoco Oil Belt) -> extra-heavy oil (5295ms)\nWhere is Venezuela?\tMiranda\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Miranda, is located in, Venezuela?s north-central region) -> Miranda (5310ms)\nWhere is Venezuela?\tChris?s first job\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Chris?s first job, was in, Venezuela) -> Chris?s first job (5262ms)\nWhere is Venezuela?\tTwo Russian Tu-160 strategic bombers\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Two Russian Tu-160 strategic bombers, were in, Venezuela) -> Two Russian Tu-160 strategic bombers (5279ms)\nWhere is Venezuela?\tthe highest waterfalls\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (the highest waterfalls, is exclusively located in, Venezuela) -> the highest waterfalls (5279ms)\nWhere is Venezuela?\tBarinas\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Barinas, is located in, central Venezuela) -> Barinas (5271ms)\nWhere is Venezuela?\tCeren\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Ceren, was in, Venezuela) -> Ceren (5271ms)\nWhere is Venezuela?\tMorales\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Morales, is in, Venezuela) -> Morales (5262ms)\nWhere is Venezuela?\towner Walter Stipa\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (owner Walter Stipa, was in, Venezuela) -> owner Walter Stipa (5287ms)\nWhere is Venezuela?\tMerida\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Merida, is a city located in the country, venezuela) -> Merida (5295ms)\nWhere is Venezuela?\tHome Run Derby Ozzie\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Home Run Derby Ozzie, is in, Venezuela) -> Home Run Derby Ozzie (5279ms)\nWhere is Venezuela?\tCuyagua\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Cuyagua, is in, Venezuela) -> Cuyagua (5279ms)\nWhere is Venezuela?\thuman rights\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (human rights, are in, Venezuela) -> human rights (5279ms)\nWhere is Venezuela?\t?The dam\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (?The dam, is in, Venezuela) -> ?The dam (5287ms)\nWhere is Venezuela?\tRobinson\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Robinson, was in, Venezuela) -> Robinson (5303ms)\nWhere is Venezuela?\tThe cheapest petrol\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (The cheapest petrol, was in, Venezuela) -> The cheapest petrol (5279ms)\nWhere is Venezuela?\tAsprilla\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Asprilla, was in, Venezuela) -> Asprilla (5287ms)\nWhere is Venezuela?\tan oil company\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (an oil company, are in, Venezuela) -> an oil company (5279ms)\nWhere is Venezuela?\t2008\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (2008, is in, Venezuela) -> 2008 (5279ms)\nWhere is Venezuela?\tthe factory\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be located in, venezuelum) -> (the factory, is located in, eastern Venezuela) -> the factory (5287ms)\nWhere is Venezuela?\tIndia\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (India, was in, Venezuela) -> India (5295ms)\nWhere is Venezuela?\tHunton\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Hunton, was in, Venezuela) -> Hunton (5271ms)\nWhere is Venezuela?\tthe month Darby\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the month Darby, was in, Venezuela) -> the month Darby (5287ms)\nWhere is Venezuela?\ta guy\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (a guy, was in, Venezuela) -> a guy (5295ms)\nWhere is Venezuela?\tColonel Gaddafi\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Colonel Gaddafi, is in, Venezuela) -> Colonel Gaddafi (5287ms)\nWhere is Venezuela?\tSheehan\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Sheehan, was in, Venezuela) -> Sheehan (5310ms)\nWhere is Venezuela?\tThe second World War\t0.444444444443\tWhere is Venezuela? -> $x: ($x, cause, venezuelum) -> (The second World War, caused our return to, Venezuela) -> The second World War (5295ms)\nWhere is Venezuela?\teither shortwave\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (either shortwave, AM in, Venezuela) -> either shortwave (5303ms)\nWhere is Venezuela?\tthe development effort\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (the development effort, is in, Venezuela) -> the development effort (5295ms)\nWhere is Venezuela?\tThe family\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (The family, was in, Venezuela) -> The family (5287ms)\nWhere is Venezuela?\tThe Caribbean Islands\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (The Caribbean Islands, are in, Venezuela) -> The Caribbean Islands (5271ms)\nWhere is Venezuela?\tSuriname\t0.444444444443\tWhere is Venezuela? -> $x: ($x, be in, venezuelum) -> (Suriname, are in, Venezuela) -> Suriname (5287ms)\nWhere is Venezuela?\tthe news\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, has been in, the news) -> the news (5342ms)\nWhere is Venezuela?\tsecond place\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, second place) -> second place (5317ms)\nWhere is Venezuela?\tthe provision\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the provision) -> the provision (5325ms)\nWhere is Venezuela?\tthe interests\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is being run in, the interests) -> the interests (5310ms)\nWhere is Venezuela?\tlight\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, light) -> light (5317ms)\nWhere is Venezuela?\tcontact\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, contact) -> contact (5348ms)\nWhere is Venezuela?\trecessions\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, are in, recessions) -> recessions (5337ms)\nWhere is Venezuela?\tdiscussions\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, discussions) -> discussions (5342ms)\nWhere is Venezuela?\tsolidarity\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, solidarity) -> solidarity (5337ms)\nWhere is Venezuela?\tfirst place\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, first place) -> first place (5325ms)\nWhere is Venezuela?\tthe 60 meterband\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, are in, the 60 meterband) -> the 60 meterband (5332ms)\nWhere is Venezuela?\tfourth place\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, fourth place) -> fourth place (5332ms)\nWhere is Venezuela?\tthe crapper\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, the crapper) -> the crapper (5317ms)\nWhere is Venezuela?\tmore than 20 tax treaties\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, more than 20 tax treaties) -> more than 20 tax treaties (5325ms)\nWhere is Venezuela?\t2004\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, 2004) -> 2004 (5348ms)\nWhere is Venezuela?\tthe throes\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, the throes) -> the throes (5332ms)\nWhere is Venezuela?\tshambles\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, shambles) -> shambles (5310ms)\nWhere is Venezuela?\tline\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, were in, line) -> line (5332ms)\nWhere is Venezuela?\tMiraflores\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, Miraflores) -> Miraflores (5332ms)\nWhere is Venezuela?\tthe semifinals\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the semifinals) -> the semifinals (5325ms)\nWhere is Venezuela?\ttalks\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, talks) -> talks (5342ms)\nWhere is Venezuela?\tthe thrall\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the thrall) -> the thrall (5348ms)\nWhere is Venezuela?\ta strategic location\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a strategic location) -> a strategic location (5348ms)\nWhere is Venezuela?\tsingle digits\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, single digits) -> single digits (5332ms)\nWhere is Venezuela?\tthe southern state\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the southern state) -> the southern state (5337ms)\nWhere is Venezuela?\tfact\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, fact) -> fact (5342ms)\nWhere is Venezuela?\tslavery\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, were in, slavery) -> slavery (5337ms)\nWhere is Venezuela?\tthe Perija mountains\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the Perija mountains) -> the Perija mountains (5337ms)\nWhere is Venezuela?\tNorth America\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, North America) -> North America (5325ms)\nWhere is Venezuela?\tneed\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, need) -> need (5332ms)\nWhere is Venezuela?\tfifth place\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, fifth place) -> fifth place (5317ms)\nWhere is Venezuela?\tthe US Congress\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is being prepared in, the US Congress) -> the US Congress (5317ms)\nWhere is Venezuela?\tgood shape\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, good shape) -> good shape (5325ms)\nWhere is Venezuela?\ta mess\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a mess) -> a mess (5348ms)\nWhere is Venezuela?\tprogress\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is a work in, progress) -> progress (5325ms)\nWhere is Venezuela?\tthe government power\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, are in, the government power) -> the government power (5332ms)\nWhere is Venezuela?\ta state of political turmoil\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, a state of political turmoil) -> a state of political turmoil (5337ms)\nWhere is Venezuela?\tcontrol\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, control) -> control (5332ms)\nWhere is Venezuela?\tdesperate need\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, desperate need) -> desperate need (5325ms)\nWhere is Venezuela?\tPool A\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, are in, Pool A) -> Pool A (5332ms)\nWhere is Venezuela?\tTexas\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, have been in, Texas) -> Texas (5317ms)\nWhere is Venezuela?\tthe Yellow Fever zone\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the Yellow Fever zone) -> the Yellow Fever zone (5342ms)\nWhere is Venezuela?\tsouth America\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, south America) -> south America (5337ms)\nWhere is Venezuela?\tthe middle\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the middle) -> the middle (5342ms)\nWhere is Venezuela?\tBolivars\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, Bolivars) -> Bolivars (5337ms)\nWhere is Venezuela?\ta top security prison\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is held in, a top security prison) -> a top security prison (5317ms)\nWhere is Venezuela?\tthe grip\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the grip) -> the grip (5337ms)\nWhere is Venezuela?\tturmoil\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, turmoil) -> turmoil (5348ms)\nWhere is Venezuela?\ta state\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a state) -> a state (5332ms)\nWhere is Venezuela?\tthe midst\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the midst) -> the midst (5317ms)\nWhere is Venezuela?\tNorthern South America\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, Northern South America) -> Northern South America (5332ms)\nWhere is Venezuela?\tJuly\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was formally accepted in, July) -> July (5337ms)\nWhere is Venezuela?\tpolitical and social hatred\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is boiling in, political and social hatred) -> political and social hatred (5332ms)\nWhere is Venezuela?\tdanger\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, danger) -> danger (5332ms)\nWhere is Venezuela?\tpoint\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is a case in, point) -> point (5342ms)\nWhere is Venezuela?\tthe 2010 Great Place\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, has been included in, the 2010 Great Place) -> the 2010 Great Place (5337ms)\nWhere is Venezuela?\tconformity\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, conformity) -> conformity (5348ms)\nWhere is Venezuela?\ta similar suitation\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a similar suitation) -> a similar suitation (5325ms)\nWhere is Venezuela?\ta critical situation\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, a critical situation) -> a critical situation (5348ms)\nWhere is Venezuela?\tMoscow\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, would be signed in, Moscow) -> Moscow (5342ms)\nWhere is Venezuela?\tthe toilet\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, have been in, the toilet) -> the toilet (5342ms)\nWhere is Venezuela?\ttrouble\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, trouble) -> trouble (5337ms)\nWhere is Venezuela?\tthe wings\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the wings) -> the wings (5342ms)\nWhere is Venezuela?\ta better situation\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a better situation) -> a better situation (5317ms)\nWhere is Venezuela?\tpolitical turmoil\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, political turmoil) -> political turmoil (5342ms)\nWhere is Venezuela?\truins\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, ruins) -> ruins (5317ms)\nWhere is Venezuela?\t1965\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was set up in, 1965) -> 1965 (5325ms)\nWhere is Venezuela?\tthe energy sector\t0.44444444444200004\tWhere is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the energy sector) -> the energy sector (5342ms)\nWhere is Venezuela?\tHugo Ch?vez\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (Hugo Ch?vez, became president of, Venezuela) -> Hugo Ch?vez (5375ms)\nWhere is Venezuela?\tmonths\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, have been stranded for, months) -> months (5371ms)\nWhere is Venezuela?\tthe future\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is better for, the future) -> the future (5367ms)\nWhere is Venezuela?\tthe post\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been campaigning for, the post) -> the post (5362ms)\nWhere is Venezuela?\tthe services\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is bartered for, the services) -> the services (5371ms)\nWhere is Venezuela?\tParis\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was headed for, Paris) -> Paris (5375ms)\nWhere is Venezuela?\ta compromise candidate\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are searching for, a compromise candidate) -> a compromise candidate (5375ms)\nWhere is Venezuela?\topportunities\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is looking for, opportunities) -> opportunities (5362ms)\nWhere is Venezuela?\ta Feb. 15 referendum\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is preparing for, a Feb. 15 referendum) -> a Feb. 15 referendum (5348ms)\nWhere is Venezuela?\tSolano\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (Solano, becomes the dictator of, Venezuela) -> Solano (5352ms)\nWhere is Venezuela?\tbooking\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is still available for, booking) -> booking (5367ms)\nWhere is Venezuela?\tthe calendar year 2008\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been gazetted for, the calendar year 2008) -> the calendar year 2008 (5367ms)\nWhere is Venezuela?\tcomment\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is now available for, comment) -> comment (5362ms)\nWhere is Venezuela?\tthe purpose\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was for, the purpose) -> the purpose (5357ms)\nWhere is Venezuela?\tVenezuelans\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is one for, Venezuelans) -> Venezuelans (5352ms)\nWhere is Venezuela?\tGuayana province\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (Guayana province, became part of, Venezuela) -> Guayana province (5362ms)\nWhere is Venezuela?\tviolation\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is responsible for, violation) -> violation (5371ms)\nWhere is Venezuela?\tlong vehicles\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, have been for too, long vehicles) -> long vehicles (5352ms)\nWhere is Venezuela?\tthe 1976 terrorist bombing\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were wanted for, the 1976 terrorist bombing) -> the 1976 terrorist bombing (5367ms)\nWhere is Venezuela?\tjournalism\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (journalism, has become one of, Venezuela) -> journalism (5362ms)\nWhere is Venezuela?\tthe stars\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is reaching for, the stars) -> the stars (5367ms)\nWhere is Venezuela?\tthe picking\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was ripe for, the picking) -> the picking (5375ms)\nWhere is Venezuela?\ta while\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, had been abroad for, a while) -> a while (5353ms)\nWhere is Venezuela?\ta national critic?s award\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was nominated for, a national critic?s award) -> a national critic?s award (5357ms)\nWhere is Venezuela?\tstriking\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were also punished for, striking) -> striking (5357ms)\nWhere is Venezuela?\tbird watching\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are especially popular for, bird watching) -> bird watching (5362ms)\nWhere is Venezuela?\tthe Indians\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was paradise for, the Indians) -> the Indians (5371ms)\nWhere is Venezuela?\t60 days\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is valid for, 60 days) -> 60 days (5371ms)\nWhere is Venezuela?\tthe Imperialists\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are so dangerous for, the Imperialists) -> the Imperialists (5367ms)\nWhere is Venezuela?\ta seat\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is campaigning for, a seat) -> a seat (5375ms)\nWhere is Venezuela?\ta solution\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is searching for, a solution) -> a solution (5362ms)\nWhere is Venezuela?\tsure-handed infielders\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is known for producing, sure-handed infielders) -> sure-handed infielders (5371ms)\nWhere is Venezuela?\tdrastic change\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were eager for, drastic change) -> drastic change (5357ms)\nWhere is Venezuela?\tsuch a body\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been pushing for, such a body) -> such a body (5352ms)\nWhere is Venezuela?\tChinese ?strategic? partnerships\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are key targets for, Chinese ?strategic? partnerships) -> Chinese ?strategic? partnerships (5367ms)\nWhere is Venezuela?\tAfrican support\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is hoping for, African support) -> African support (5348ms)\nWhere is Venezuela?\tTurkey\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (Turkey, has become a firm node of, the Iran-Syria-Venezuela axis) -> Turkey (5357ms)\nWhere is Venezuela?\tthe calendar year 2007\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been gazetted for, the calendar year 2007) -> the calendar year 2007 (5352ms)\nWhere is Venezuela?\tdrug trafficking\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (?Venezuela, is a magnet for, drug trafficking) -> drug trafficking (5371ms)\nWhere is Venezuela?\ta rental\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were looking for, a rental) -> a rental (5375ms)\nWhere is Venezuela?\tthe rest\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was an example for, the rest) -> the rest (5375ms)\nWhere is Venezuela?\tVenezuelan politician\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (Venezuelan politician, became president of, Venezuela) -> Venezuelan politician (5371ms)\nWhere is Venezuela?\ta thug change\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is due for, a thug change) -> a thug change (5357ms)\nWhere is Venezuela?\tmillions\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is an inspiration for, millions) -> millions (5371ms)\nWhere is Venezuela?\tthe Copa American tournament\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is preparing for, the Copa American tournament) -> the Copa American tournament (5362ms)\nWhere is Venezuela?\tsocial and economic justice hand\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are working for, social and economic justice hand) -> social and economic justice hand (5362ms)\nWhere is Venezuela?\tsocial programs\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, will be used for, social programs) -> social programs (5375ms)\nWhere is Venezuela?\ta socialist revolutionary change\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was to work for, a socialist revolutionary change) -> a socialist revolutionary change (5362ms)\nWhere is Venezuela?\tthe Salesians\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was paid for by, the Salesians) -> the Salesians (5371ms)\nWhere is Venezuela?\tthe kind\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is likely headed for, the kind) -> the kind (5353ms)\nWhere is Venezuela?\tresistance\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, may be necessary for, resistance) -> resistance (5371ms)\nWhere is Venezuela?\tPedro Carmona\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (Pedro Carmona, became president of, Venezuela) -> Pedro Carmona (5367ms)\nWhere is Venezuela?\ta referendum\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was gearing up for, a referendum) -> a referendum (5362ms)\nWhere is Venezuela?\tU.S. corporations\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is important for, U.S. corporations) -> U.S. corporations (5357ms)\nWhere is Venezuela?\tP?ez\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (P?ez, became the first president of, Venezuela) -> P?ez (5367ms)\nWhere is Venezuela?\tthe South American championship\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is preparing for, the South American championship) -> the South American championship (5371ms)\nWhere is Venezuela?\tthe world?s underdogs\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is actually fighting for, the world?s underdogs) -> the world?s underdogs (5352ms)\nWhere is Venezuela?\tconventional liquid crude\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is past peak for, conventional liquid crude) -> conventional liquid crude (5353ms)\nWhere is Venezuela?\tthe middle class\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was smaller for, the middle class) -> the middle class (5352ms)\nWhere is Venezuela?\tseveral years\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, have been tense for, several years) -> several years (5357ms)\nWhere is Venezuela?\ttraining flights\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are for, training flights) -> training flights (5367ms)\nWhere is Venezuela?\tthe great territory\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (the great territory, would become the states of, Venezuela) -> the great territory (5357ms)\nWhere is Venezuela?\tone reason\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is front page news for, one reason) -> one reason (5357ms)\nWhere is Venezuela?\t90 days\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is valid for, 90 days) -> 90 days (5371ms)\nWhere is Venezuela?\tOtto Reich\t0.33333333333200005\tWhere is Venezuela? -> $x: ($x, become of, venezuelum) -> (Otto Reich, later became one of, Venezuela?s most bitter) -> Otto Reich (5357ms)\nWhere is Venezuela?\ta controlling ,\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was justification for, a controlling ,) -> a controlling , (5362ms)\nWhere is Venezuela?\tConsular services\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, will be closed for, Consular services) -> Consular services (5352ms)\nWhere is Venezuela?\tseveral reasons\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is very interesting for, several reasons) -> several reasons (5362ms)\nWhere is Venezuela?\tprofessional purposes\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were for, professional purposes) -> professional purposes (5371ms)\nWhere is Venezuela?\tthe prevalence\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is third globally for, the prevalence) -> the prevalence (5371ms)\nWhere is Venezuela?\tLuis Posada Carriles\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been waiting for, Luis Posada Carriles) -> Luis Posada Carriles (5353ms)\nWhere is Venezuela?\tthe Gold Medal Team\t0.33333333333200005\tWhere is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was selected for, the Gold Medal Team) -> the Gold Medal Team (5367ms)\nWhere is Venezuela?\ta more vulnerable position\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now in, a more vulnerable position) -> a more vulnerable position (5375ms)\nWhere is Venezuela?\tcritical condition\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now in, critical condition) -> critical condition (5379ms)\nWhere is Venezuela?\tjail\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now in, jail) -> jail (5375ms)\nWhere is Venezuela?\ta very good position\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now in, a very good position) -> a very good position (5375ms)\nWhere is Venezuela?\tthe second round\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now 3-3 in, the second round) -> the second round (5379ms)\nWhere is Venezuela?\tthe hands\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (?Venezuela?s gold, is now in, the hands) -> the hands (5375ms)\nWhere is Venezuela?\tEnglish\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, now am reading in, English) -> English (5379ms)\nWhere is Venezuela?\tmore than 30 countries\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela campaign, is now active in, more than 30 countries) -> more than 30 countries (5375ms)\nWhere is Venezuela?\tthe side\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now a major thorn in, the side) -> the side (5375ms)\nWhere is Venezuela?\ta painful economic crisis\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now mired in, a painful economic crisis) -> a painful economic crisis (5379ms)\nWhere is Venezuela?\tan unseemly tug-of-war\t0.333333333331\tWhere is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, are now engaged in, an unseemly tug-of-war) -> an unseemly tug-of-war (5375ms)\nWhere is Venezuela?\tthe win\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the win, was, Venezuela) -> the win (5395ms)\nWhere is Venezuela?\tlist\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (list, are, Venezuela) -> list (5392ms)\nWhere is Venezuela?\tstates\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (states, bordering, Venezuela) -> states (5399ms)\nWhere is Venezuela?\tthe same patron\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the same patron, is, Venezuela ?) -> the same patron (5397ms)\nWhere is Venezuela?\tThe type locality\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The type locality, is, Venezuela) -> The type locality (5387ms)\nWhere is Venezuela?\tthe dike\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the dike, is, Venezuela) -> the dike (5395ms)\nWhere is Venezuela?\tthe main creditors\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the main creditors, is, Venezuela) -> the main creditors (5387ms)\nWhere is Venezuela?\tThe other big factor\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The other big factor, is, Venezuela) -> The other big factor (5390ms)\nWhere is Venezuela?\tThe countries\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The countries, are, Venezuela) -> The countries (5392ms)\nWhere is Venezuela?\tAvensa\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Avensa, was, Venezuela) -> Avensa (5395ms)\nWhere is Venezuela?\tthe Baker Institute report\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the Baker Institute report, was, Venezuela) -> the Baker Institute report (5395ms)\nWhere is Venezuela?\tLast countries where we delivered our goods\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we delivered our goods, are, Venezuela) -> Last countries where we delivered our goods (5395ms)\nWhere is Venezuela?\tthe major prize\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the major prize, is, Venezuela) -> the major prize (5395ms)\nWhere is Venezuela?\tone of which\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (one of which, was, Venezuela) -> one of which (5392ms)\nWhere is Venezuela?\tone member\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (one member, is, Venezuela) -> one member (5392ms)\nWhere is Venezuela?\tA current exception\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (A current exception, is, Venezuela) -> A current exception (5392ms)\nWhere is Venezuela?\tArauca\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (Arauca, has a long border with, Venezuela) -> Arauca (5389ms)\nWhere is Venezuela?\tPDVSA\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (PDVSA, is, Venezuela) -> PDVSA (5389ms)\nWhere is Venezuela?\tLast countries where we exported our goods\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we exported our goods, are, Venezuela) -> Last countries where we exported our goods (5397ms)\nWhere is Venezuela?\tThe Orinoco Belt\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The Orinoco Belt, is, Venezuela) -> The Orinoco Belt (5392ms)\nWhere is Venezuela?\tThe most problematic place\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The most problematic place, is, Venezuela) -> The most problematic place (5389ms)\nWhere is Venezuela?\tThe United States\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The United States, is, Venezuela) -> The United States (5383ms)\nWhere is Venezuela?\tOne of them\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (One of them, is, Venezuela) -> One of them (5387ms)\nWhere is Venezuela?\tthe two main candidates\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the two main candidates, are, Venezuela) -> the two main candidates (5395ms)\nWhere is Venezuela?\tforeign policy\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (foreign policy, is, Venezuela) -> foreign policy (5397ms)\nWhere is Venezuela?\tSecond\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Second, was, Venezuela) -> Second (5395ms)\nWhere is Venezuela?\tEnergy\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Energy, is, Venezuela) -> Energy (5395ms)\nWhere is Venezuela?\tSPanish\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (SPanish, is the language of the country, venezuela) -> SPanish (5395ms)\nWhere is Venezuela?\t2907 Offline Lincs\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (2907 Offline Lincs, is, Venezuela) -> 2907 Offline Lincs (5389ms)\nWhere is Venezuela?\tLatin American\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Latin American, is, Venezuela) -> Latin American (5397ms)\nWhere is Venezuela?\tthe east\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (the east, also has land borders with, Venezuela) -> the east (5387ms)\nWhere is Venezuela?\tThe setting\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The setting, is, Venezuela) -> The setting (5395ms)\nWhere is Venezuela?\tstory\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (story, Is, Venezuela) -> story (5397ms)\nWhere is Venezuela?\tLast countries where we delivered our items\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we delivered our items, are, Venezuela) -> Last countries where we delivered our items (5397ms)\nWhere is Venezuela?\tone of the countries\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (one of the countries, is, Venezuela) -> one of the countries (5389ms)\nWhere is Venezuela?\tLast countries where we sold our items\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we sold our items, are, Venezuela) -> Last countries where we sold our items (5395ms)\nWhere is Venezuela?\t75 years\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (75 years, are, Venezuela) -> 75 years (5389ms)\nWhere is Venezuela?\tquestion\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (question, is, Venezuela) -> question (5387ms)\nWhere is Venezuela?\tLast countries where we sold our goods\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we sold our goods, are, Venezuela) -> Last countries where we sold our goods (5383ms)\nWhere is Venezuela?\tThe exception\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The exception, is, Venezuela) -> The exception (5392ms)\nWhere is Venezuela?\tBernardo Alvarez Herrera\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (Bernardo Alvarez Herrera, is, Venezuela) -> Bernardo Alvarez Herrera (5387ms)\nWhere is Venezuela?\tthe most immediate example\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the most immediate example, is, Venezuela) -> the most immediate example (5383ms)\nWhere is Venezuela?\tthe month\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the month, was, Venezuela) -> the month (5390ms)\nWhere is Venezuela?\tThe archipelago\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The archipelago, is, Venezuela) -> The archipelago (5383ms)\nWhere is Venezuela?\tthe River Arauca\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (the River Arauca, forms the border with, Venezuela) -> the River Arauca (5397ms)\nWhere is Venezuela?\tfourteen months\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (fourteen months, was, Venezuela) -> fourteen months (5397ms)\nWhere is Venezuela?\tstake\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (stake, is, Venezuela) -> stake (5392ms)\nWhere is Venezuela?\tOne example\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (One example, is, Venezuela) -> One example (5390ms)\nWhere is Venezuela?\tENglish\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (ENglish, is the language of the country, venezuela) -> ENglish (5383ms)\nWhere is Venezuela?\tthe UK, Guyana\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (the UK, Guyana, is bordered by, Venezuela) -> the UK, Guyana (5387ms)\nWhere is Venezuela?\tThe Mexican-owned Cemex\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The Mexican-owned Cemex, is, Venezuela) -> The Mexican-owned Cemex (5389ms)\nWhere is Venezuela?\tRio Atabapo\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (Rio Atabapo, marks the border between, Colombia and Venezuela) -> Rio Atabapo (5383ms)\nWhere is Venezuela?\tthe other border\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the other border, is, Venezuela) -> the other border (5389ms)\nWhere is Venezuela?\t2003\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (2003, were, Venezuela) -> 2003 (5395ms)\nWhere is Venezuela?\tcountries\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (countries, bordering, Venezuela) -> countries (5392ms)\nWhere is Venezuela?\tthe euro\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the euro, is, Venezuela) -> the euro (5383ms)\nWhere is Venezuela?\tThe only exception\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The only exception, is, Venezuela) -> The only exception (5387ms)\nWhere is Venezuela?\tclose 6th November 2011 Miss World 2011\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (close 6th November 2011 Miss World 2011, is, Venezuela) -> close 6th November 2011 Miss World 2011 (5397ms)\nWhere is Venezuela?\tdemocracy\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (democracy, was, Venezuela) -> democracy (5399ms)\nWhere is Venezuela?\tthe compounding state of insanity\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (the compounding state of insanity, is, Venezuela) -> the compounding state of insanity (5397ms)\nWhere is Venezuela?\tThe country\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (The country, is bordered by, Venezuela) -> The country (5387ms)\nWhere is Venezuela?\tThe next stop\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, be be, venezuelum) -> (The next stop, is, Venezuela) -> The next stop (5392ms)\nWhere is Venezuela?\tColombian soldiers\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (Colombian soldiers, temporarily cross the border with, Venezuela) -> Colombian soldiers (5387ms)\nWhere is Venezuela?\tthe Or?noque\t0.22222222222100002\tWhere is Venezuela? -> $x: ($x, border, venezuelum) -> (the Or?noque, is also the border between, Venezuela and Brazil) -> the Or?noque (5395ms)\nWho developed potlatch?\tTribal communities\t-0.333333333334\tWho developed potlatch? -> $x: (potlatch, develop in, $x) -> (Potlatch Fund, develops leaders in, Tribal communities) -> Tribal communities (608ms)\nWhat are some Bon Jovi hits?\ta familiar song\t0.22222222221800003\tWhat are some Bon Jovi hits? -> $x: ($x, hit, bon jovi) -> (a familiar song, was a huge hit for, Bon Jovi) -> a familiar song (716ms)\nWhat are some Bon Jovi hits?\told rock\t0.22222222221800003\tWhat are some Bon Jovi hits? -> $x: ($x, hit, bon jovi) -> (old rock, hits such as, Bon Jovi?s ?Living) -> old rock (716ms)\nWhat are some Bon Jovi hits?\tsingles\t-0.444444444442\tWhat are some Bon Jovi hits? -> $x: (jon bon jovi, hit, $x) -> (ROBERT PACE March 21 , 2012 Jon Bon Jovi, has had hit, singles) -> singles (716ms)\nWhat are some Bon Jovi hits?\ta half century\t-0.444444444442\tWhat are some Bon Jovi hits? -> $x: (jon bon jovi, hit, $x) -> (Jon Bon Jovi, hits, a half century) -> a half century (716ms)\nWhat are some Bon Jovi hits?\tthe stage\t-0.555555555553\tWhat are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (Bon Jovi, hit, the stage) -> the stage (716ms)\nWhat are some Bon Jovi hits?\t1984\t-0.555555555553\tWhat are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (Bon Jovi, had their first hit in, 1984) -> 1984 (716ms)\nWhat are some Bon Jovi hits?\tUsher\t-0.555555555553\tWhat are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (the Bon Jovi, hit with, Usher) -> Usher (716ms)\nWhat are some Bon Jovi hits?\tsong\t-0.555555555553\tWhat are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (the Bon Jovi, hit, song) -> song (716ms)\nWhat are some Bon Jovi hits?\tthe charts\t-0.555555555553\tWhat are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (Bon Jovi, hit, the charts) -> the charts (716ms)\nHow far does a laser pointer shine?\tThe method\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (The method, is to shine, the laser pointer) -> The method (509ms)\nHow far does a laser pointer shine?\tDo NOT\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (Do NOT, shine, laser pointers) -> Do NOT (509ms)\nHow far does a laser pointer shine?\tThe boy\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (The boy, would have shined, a laser pointer) -> The boy (509ms)\nHow far does a laser pointer shine?\ta prankster\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (a prankster, had shined, a LASER POINTER) -> a prankster (509ms)\nHow far does a laser pointer shine?\tDont\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (Dont, shine, a laser pointer) -> Dont (509ms)\nHow far does a laser pointer shine?\tDon?t\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (Don?t, shine, laser pointers) -> Don?t (509ms)\nHow far does a laser pointer shine?\tthe 16th floor\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (the 16th floor, shined, a tiny laser pointer) -> the 16th floor (509ms)\nHow far does a laser pointer shine?\tA man\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (A man, shined, a laser pointer) -> A man (509ms)\nHow far does a laser pointer shine?\ta Winthrop High School hockey player\t-0.0\tHow far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (a Winthrop High School hockey player, shined, a laser pointer) -> a Winthrop High School hockey player (509ms)\nWhat does ACLU stand for?\tAmerican\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stood for, American) -> American (736ms)\nWhat does ACLU stand for?\tAnti Christian Litigation Union\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stood for, Anti Christian Litigation Union) -> Anti Christian Litigation Union (759ms)\nWhat does ACLU stand for?\tAmerican Civil Liberties Union\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stands for, American Civil Liberties Union) -> American Civil Liberties Union (759ms)\nWhat does ACLU stand for?\tthe Fourth Amendment\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU-NC, has been stood up for, the Fourth Amendment) -> the Fourth Amendment (759ms)\nWhat does ACLU stand for?\tSgt\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU, stood up for, Sgt) -> Sgt (736ms)\nWhat does ACLU stand for?\tthe 2nd Amendment\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, ever stand up for, the 2nd Amendment) -> the 2nd Amendment (759ms)\nWhat does ACLU stand for?\ta basic public right\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, has stood up for, a basic public right) -> a basic public right (759ms)\nWhat does ACLU stand for?\tAnti-Christian Lawyers\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stands for, Anti-Christian Lawyers) -> Anti-Christian Lawyers (736ms)\nWhat does ACLU stand for?\t?American? Civil Liberties Union\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stands for, ?American? Civil Liberties Union) -> ?American? Civil Liberties Union (736ms)\nWhat does ACLU stand for?\tthe whole Bill\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, will now actually stand up for, the whole Bill) -> the whole Bill (736ms)\nWhat does ACLU stand for?\tprinciple\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, stands for, principle) -> principle (736ms)\nWhat does ACLU stand for?\tthe Anti-Christian Liberal Union\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU, might well stand for, the Anti-Christian Liberal Union) -> the Anti-Christian Liberal Union (759ms)\nWhat does ACLU stand for?\texpansion\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU-MN, has always stood for, expansion) -> expansion (759ms)\nWhat does ACLU stand for?\tfree speech\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU, took a controversial stand for, free speech) -> free speech (736ms)\nWhat does ACLU stand for?\thuman rights\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, stand up for, human rights) -> human rights (759ms)\nWhat does ACLU stand for?\tthe rights\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU?s butt, stands for, the rights) -> the rights (759ms)\nWhat does ACLU stand for?\tthe civil rights and liberties\t0.111111111111\tWhat does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU, will stand up for, the civil rights and liberties) -> the civil rights and liberties (759ms)\nWhat does ACLU stand for?\tthe United States\t-0.0\tWhat does ACLU stand for? -> $x: (aclu, stand in, $x) -> (the ACLU, stands on in, the United States) -> the United States (775ms)\nWhat does ACLU stand for?\tliberal causes\t-0.222222222222\tWhat does ACLU stand for? -> $x: (aclu, be know for, $x) -> (The ACLU, is known for supporting, liberal causes) -> liberal causes (775ms)\nWhat does ACLU stand for?\tLouisiana\t-0.333333333332\tWhat does ACLU stand for? -> $x: ($x, stand, aclu) -> (Louisiana, stands up to, the ACLU.) -> Louisiana (775ms)\nWhat does ACLU stand for?\tBORDC\t-0.333333333332\tWhat does ACLU stand for? -> $x: ($x, stand, aclu) -> (BORDC, stands with, the ACLU) -> BORDC (775ms)\nWhat does ACLU stand for?\tcard-carrying ACLU members\t-0.333333333332\tWhat does ACLU stand for? -> $x: ($x, stand, aclu) -> (card-carrying ACLU members, stand behind, the ACLU) -> card-carrying ACLU members (775ms)\nWhat does ACLU stand for?\tRights Defense Committee\t-0.333333333332\tWhat does ACLU stand for? -> $x: ($x, stand, aclu) -> (Rights Defense Committee, stands with, the ACLU) -> Rights Defense Committee (775ms)\nWhat does ACLU stand for?\tprayer\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (The ACLU, has certainly stood against, prayer) -> prayer (777ms)\nWhat does ACLU stand for?\tbrainwashing\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (the ACLU, took a formal stand against, brainwashing) -> brainwashing (776ms)\nWhat does ACLU stand for?\tthe very center\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (ACLU, stands at, the very center) -> the very center (777ms)\nWhat does ACLU stand for?\tthe United States Supreme Court\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (ACLU attorneys, stand before, the United States Supreme Court) -> the United States Supreme Court (776ms)\nWhat does ACLU stand for?\tthe Supreme Court\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (ACLU attorneys, stand before, the Supreme Court) -> the Supreme Court (776ms)\nWhat does ACLU stand for?\tlittle chance\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (the ACLU, stand, little chance) -> little chance (776ms)\nWhat does ACLU stand for?\tthe American Legion\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (The ACLU, stands with, the American Legion) -> the American Legion (777ms)\nWhat does ACLU stand for?\tthe ACLU\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (card-carrying ACLU members, stand behind, the ACLU) -> the ACLU (777ms)\nWhat does ACLU stand for?\tthe war\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (the ACLU, is reluctant to take a stand on, the war) -> the war (777ms)\nWhat does ACLU stand for?\tconservatives\t-0.444444444442\tWhat does ACLU stand for? -> $x: (aclu, stand, $x) -> (The ACLU, has stood shoulder-to-shoulder with, conservatives) -> conservatives (777ms)\nWhen was the festival held?\tthe Natcher Conference Center\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, will be held in, the Natcher Conference Center) -> the Natcher Conference Center (3690ms)\nWhen was the festival held?\tDevizes\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, Devizes) -> Devizes (4776ms)\nWhen was the festival held?\thonor of the gods\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, honor of the gods) -> honor of the gods (3435ms)\nWhen was the festival held?\tthe Samb?dromo\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals Festivals, are usually held in, the Samb?dromo) -> the Samb?dromo (4716ms)\nWhen was the festival held?\tTrieste\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, Trieste) -> Trieste (4854ms)\nWhen was the festival held?\tthe province?s seat\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held only in, the province?s seat) -> the province?s seat (4752ms)\nWhen was the festival held?\tManchester\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, will be held in, Manchester) -> Manchester (4717ms)\nWhen was the festival held?\t1996\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, was held in, 1996) -> 1996 (4776ms)\nWhen was the festival held?\tMarch 2013\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festival, will be held in, March 2013) -> March 2013 (3944ms)\nWhen was the festival held?\tCatalonia\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals Numerous popular festivals, are held in, Catalonia) -> Catalonia (3691ms)\nWhen was the festival held?\tSalida\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are also held in, Salida) -> Salida (4717ms)\nWhen was the festival held?\tthe Adelaide Riverbank Precinct\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, will be held in, the Adelaide Riverbank Precinct) -> the Adelaide Riverbank Precinct (3435ms)\nWhen was the festival held?\tthe business district\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held in, the business district) -> the business district (4854ms)\nWhen was the festival held?\tthe springtime\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, was held in, the springtime) -> the springtime (4000ms)\nWhen was the festival held?\tLondon and Plymouth\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, have been held in, London and Plymouth) -> London and Plymouth (4753ms)\nWhen was the festival held?\tMumbai\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held in, Mumbai) -> Mumbai (3943ms)\nWhen was the festival held?\tOlympia\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held in, Olympia) -> Olympia (4752ms)\nWhen was the festival held?\tIdaho\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, Idaho) -> Idaho (3771ms)\nWhen was the festival held?\tthree stages\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, three stages) -> three stages (4000ms)\nWhen was the festival held?\tthe state\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, the state) -> the state (4716ms)\nWhen was the festival held?\tthe first ten days\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held in, the first ten days) -> the first ten days (4776ms)\nWhen was the festival held?\teach city\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festivals, are held in, each city) -> each city (4717ms)\nWhen was the festival held?\tKatherine\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (' festival, was held in, Katherine) -> Katherine (4854ms)\nWhen was the festival held?\tSanto Domingo\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, Santo Domingo) -> Santo Domingo (3435ms)\nWhen was the festival held?\tAugust\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (the festival, will be held in, August) -> August (4872ms)\nWhen was the festival held?\tKarlovac.\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, Karlovac.) -> Karlovac. (4824ms)\nWhen was the festival held?\tmore than 25 locations\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held each spring in, more than 25 locations) -> more than 25 locations (3435ms)\nWhen was the festival held?\tHelsinki\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held in, Helsinki) -> Helsinki (4717ms)\nWhen was the festival held?\tRaleigh\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, Raleigh) -> Raleigh (4716ms)\nWhen was the festival held?\tlate February\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, were held in, late February) -> late February (4001ms)\nWhen was the festival held?\tOberursel\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, was held in, Oberursel) -> Oberursel (4776ms)\nWhen was the festival held?\tJune\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, June) -> June (3690ms)\nWhen was the festival held?\tNashville\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, Nashville) -> Nashville (3771ms)\nWhen was the festival held?\tFebruary\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Flower Festival Flower Festival, is held in, February) -> February (4752ms)\nWhen was the festival held?\tSan Juan\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, was held in, San Juan) -> San Juan (4825ms)\nWhen was the festival held?\tdifferent parts\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, different parts) -> different parts (4776ms)\nWhen was the festival held?\tNovember\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, to be held in, November) -> November (4752ms)\nWhen was the festival held?\tMay\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (the Festival, is held in, May) -> May (4854ms)\nWhen was the festival held?\tMysore\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals Dasara festival celebrations, are held in, Mysore) -> Mysore (4854ms)\nWhen was the festival held?\tthe Village Park\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival Festival, is held in, the Village Park) -> the Village Park (3584ms)\nWhen was the festival held?\thonor\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, were also held in, honor) -> honor (3943ms)\nWhen was the festival held?\told English\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, old English) -> old English (4000ms)\nWhen was the festival held?\tOslo\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, Oslo) -> Oslo (3435ms)\nWhen was the festival held?\tVancouver\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, Vancouver) -> Vancouver (3583ms)\nWhen was the festival held?\tthe most beautiful venue\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, is held in, the most beautiful venue) -> the most beautiful venue (3771ms)\nWhen was the festival held?\tthe region\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held in, the region) -> the region (3944ms)\nWhen was the festival held?\tthe golden season of autumn\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, the golden season of autumn) -> the golden season of autumn (4752ms)\nWhen was the festival held?\t40 U.S. states\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, have been held in nearly, 40 U.S. states) -> 40 U.S. states (4717ms)\nWhen was the festival held?\tHarbor Park\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, Harbor Park) -> Harbor Park (4854ms)\nWhen was the festival held?\tplaces\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, have been held in, places) -> places (3584ms)\nWhen was the festival held?\tBrisbane\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is being held in, Brisbane) -> Brisbane (4854ms)\nWhen was the festival held?\tthe field\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The Festival, is held in, the field) -> the field (4854ms)\nWhen was the festival held?\tChicago\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, have been held in, Chicago) -> Chicago (4825ms)\nWhen was the festival held?\tvarious locations\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, will be held in, various locations) -> various locations (4825ms)\nWhen was the festival held?\tIreland\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, were held in, Ireland) -> Ireland (4825ms)\nWhen was the festival held?\tthe first week\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held every year in, the first week) -> the first week (3584ms)\nWhen was the festival held?\tHaka\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, is scheduled to be held in, Haka) -> Haka (3584ms)\nWhen was the festival held?\thonor of Gauri\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, honor of Gauri) -> honor of Gauri (3771ms)\nWhen was the festival held?\tGrahamstown\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (a festival, being held in, Grahamstown) -> Grahamstown (4854ms)\nWhen was the festival held?\tVientiane\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held in, Vientiane) -> Vientiane (3584ms)\nWhen was the festival held?\tdowntown Atlanta\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held annually in, downtown Atlanta) -> downtown Atlanta (4000ms)\nWhen was the festival held?\tIsrael and Bulgaria\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, Israel and Bulgaria) -> Israel and Bulgaria (4776ms)\nWhen was the festival held?\treal estate\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are large held in, real estate) -> real estate (4776ms)\nWhen was the festival held?\tthe Plage Verte park\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, the Plage Verte park) -> the Plage Verte park (3435ms)\nWhen was the festival held?\tlate May\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (the festival, is held in, late May) -> late May (3771ms)\nWhen was the festival held?\tcities\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, will be held in, cities) -> cities (3584ms)\nWhen was the festival held?\tSeptember\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held in, September) -> September (4854ms)\nWhen was the festival held?\tmultiple venues\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The Festival, will be held in, multiple venues) -> multiple venues (3944ms)\nWhen was the festival held?\tspring\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, spring) -> spring (4752ms)\nWhen was the festival held?\t2008\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, were held in, 2008) -> 2008 (3690ms)\nWhen was the festival held?\tIndia\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, India) -> India (4000ms)\nWhen was the festival held?\tJanuary\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, January) -> January (4825ms)\nWhen was the festival held?\tSantiago\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festival, is held in, Santiago) -> Santiago (4854ms)\nWhen was the festival held?\tJapan\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (' festival, is held each May in, Japan) -> Japan (3771ms)\nWhen was the festival held?\tthe longhouse\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, the longhouse) -> the longhouse (3691ms)\nWhen was the festival held?\tOctober\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festival, is held the third weekend in, October) -> October (4824ms)\nWhen was the festival held?\tSilver Lake\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festival, might be held in, Silver Lake) -> Silver Lake (3435ms)\nWhen was the festival held?\t1987\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held here in, 1987) -> 1987 (3771ms)\nWhen was the festival held?\tthe Melbourne Town Hall\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, will be held in, the Melbourne Town Hall) -> the Melbourne Town Hall (4824ms)\nWhen was the festival held?\tthe Rakhaing State\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (the festival, is mainly held in, the Rakhaing State) -> the Rakhaing State (4000ms)\nWhen was the festival held?\tChisinau\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, Chisinau) -> Chisinau (3944ms)\nWhen was the festival held?\tthe country\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (! Festivals, are being held everywhere in, the country) -> the country (4854ms)\nWhen was the festival held?\tthe summer\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, the summer) -> the summer (3584ms)\nWhen was the festival held?\tLos Angeles\t0.777777777782\tWhen was the festival held? -> $x: (festival, be hold in, $x) -> (festival, is held in, Los Angeles) -> Los Angeles (3944ms)\nWhen was the festival held?\tAuckland and Wellington\t0.333333333333\tWhen was the festival held? -> $x: (diwalus, be hold in, $x) -> (Annual Diwali festivals, are held in, Auckland and Wellington) -> Auckland and Wellington (4872ms)\nWhen was the festival held?\tevery community\t0.333333333333\tWhen was the festival held? -> $x: (diwalus, be hold in, $x) -> (the Diwali festival, is held in almost, every community) -> every community (4872ms)\nWhen was the festival held?\tArdara\t0.222222222223\tWhen was the festival held? -> $x: (traditional festival, be hold in, $x) -> (This oddly named traditional music festival, is held in, Ardara) -> Ardara (4872ms)\nWhen was the festival held?\tthe Emmental Region once\t0.222222222223\tWhen was the festival held? -> $x: (traditional festival, be hold in, $x) -> (This traditional festival, is held in, the Emmental Region once) -> the Emmental Region once (4872ms)\nWhen was the festival held?\tTinos\t0.222222222223\tWhen was the festival held? -> $x: (traditional festival, be hold in, $x) -> (traditional festivals, are held in, Tinos) -> Tinos (4872ms)\nWhen was the festival held?\tGibraltar\t0.222222222223\tWhen was the festival held? -> $x: (traditional festival, be hold in, $x) -> (the traditional Chess Festival, is being held in, Gibraltar) -> Gibraltar (4872ms)\nWhen was the festival held?\tthe town\t0.222222222223\tWhen was the festival held? -> $x: (traditional festival, be hold in, $x) -> (a traditional folk lore festival, was held in, the town) -> the town (4872ms)\nWhen was the festival held?\tsheep pastures\t0.222222222223\tWhen was the festival held? -> $x: (traditional festival, be hold in, $x) -> (Traditional Beltaine festivals, were held in, sheep pastures) -> sheep pastures (4872ms)\nWhen was the festival held?\tChiang Mai\t0.222222222223\tWhen was the festival held? -> $x: (traditional festival, be hold in, $x) -> (Traditional Thai Kite Festival 2012, will be held in, Chiang Mai) -> Chiang Mai (4872ms)\nWhen was the festival held?\tthe grounds\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (The Aldeburgh food festival, is also held in, the grounds) -> the grounds (4886ms)\nWhen was the festival held?\tMiami\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (The food festivals, are annually held in, Miami) -> Miami (4872ms)\nWhen was the festival held?\tSawankhalok district\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (Food Festival, is being held in, Sawankhalok district) -> Sawankhalok district (4886ms)\nWhen was the festival held?\tthe city\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (an annual Festival of Food and Drink, has been held in, the city) -> the city (4879ms)\nWhen was the festival held?\tBuckhorn\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (a food , wine and beer festival, is held in, Buckhorn) -> Buckhorn (4886ms)\nWhen was the festival held?\tconjunction\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (The Heritage Food Festival, is being held in, conjunction) -> conjunction (4879ms)\nWhen was the festival held?\tMissoula\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (Real Food Film Festival, will be held in, Missoula) -> Missoula (4879ms)\nWhen was the festival held?\tOct 2011\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (The 5th Annual NYC Food Film Festival, was held in, Oct 2011) -> Oct 2011 (4872ms)\nWhen was the festival held?\tHokitika\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (The Wild Food Festival, has been held annually in, Hokitika) -> Hokitika (4879ms)\nWhen was the festival held?\tthe afternoon\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (a food & craft festival, will be held in, the afternoon) -> the afternoon (4879ms)\nWhen was the festival held?\tMarch\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (the famous Wild Foods Festival, is held in, March) -> March (4879ms)\nWhen was the festival held?\tthe month\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (the Singapore Food Festival, is held in, the month) -> the month (4879ms)\nWhen was the festival held?\tThiruvananthapuram\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (The national food festival, is held in, Thiruvananthapuram) -> Thiruvananthapuram (4886ms)\nWhen was the festival held?\tthe 900 block\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (The Food Festival, will be held in, the 900 block) -> the 900 block (4886ms)\nWhen was the festival held?\tLos Cabos\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (a Cabo Food Festival 2011, will be held in, Los Cabos) -> Los Cabos (4886ms)\nWhen was the festival held?\tSawan Khalok district\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (Food Festival, is being held in, Sawan Khalok district) -> Sawan Khalok district (4879ms)\nWhen was the festival held?\tKing George Park\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (the North West food festival, is being held in, King George Park) -> King George Park (4886ms)\nWhen was the festival held?\tPalm Desert\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (The Food and Wine Festival, will be held in, Palm Desert) -> Palm Desert (4879ms)\nWhen was the festival held?\tvarious regions\t0.111111111111\tWhen was the festival held? -> $x: (festival food, be hold in, $x) -> (Food festivals and workshops, are often held in, various regions) -> various regions (4879ms)\nWhen was the festival held?\tAugust 11th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 11th) -> August 11th (4893ms)\nWhen was the festival held?\tthe first weekend\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (the Festival, is held on, the first weekend) -> the first weekend (4898ms)\nWhen was the festival held?\tthe solstices and equinoxes\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festivals, were held on, the solstices and equinoxes) -> the solstices and equinoxes (4924ms)\nWhen was the festival held?\tthe August long weekend\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the August long weekend) -> the August long weekend (4924ms)\nWhen was the festival held?\tAugust 4th , 2012\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 4th , 2012) -> August 4th , 2012 (4928ms)\nWhen was the festival held?\tweekends\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, weekends) -> weekends (4914ms)\nWhen was the festival held?\tthe day\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festivals, are here still held here on, the day) -> the day (4904ms)\nWhen was the festival held?\tMain Street\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The Festival, is held on, Main Street) -> Main Street (4903ms)\nWhen was the festival held?\tdifferent dates\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, different dates) -> different dates (4924ms)\nWhen was the festival held?\tAugust 1969\t-0.0\tWhen was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (the Woodstock Festival, was held in, August 1969) -> August 1969 (4908ms)\nWhen was the festival held?\tJune 9th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 9th) -> June 9th (4904ms)\nWhen was the festival held?\tJune 15\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 15) -> June 15 (4919ms)\nWhen was the festival held?\tNanhao Street\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festival, is held on, Nanhao Street) -> Nanhao Street (4898ms)\nWhen was the festival held?\tan almost daily basis\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, are held on, an almost daily basis) -> an almost daily basis (4893ms)\nWhen was the festival held?\tOctober 6th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, October 6th) -> October 6th (4909ms)\nWhen was the festival held?\tJune 2nd , 2012\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 2nd , 2012) -> June 2nd , 2012 (4919ms)\nWhen was the festival held?\tMarch 10\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (the festival?s, will be held on, March 10) -> March 10 (4919ms)\nWhen was the festival held?\tthe National Mall\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, will be held on, the National Mall) -> the National Mall (4924ms)\nWhen was the festival held?\tcampus\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, was held on, campus) -> campus (4904ms)\nWhen was the festival held?\tJune 2nd\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 2nd) -> June 2nd (4886ms)\nWhen was the festival held?\tApril 21st , 2012\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, April 21st , 2012) -> April 21st , 2012 (4928ms)\nWhen was the festival held?\tJuly 2-29\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, July 2-29) -> July 2-29 (4893ms)\nWhen was the festival held?\tthe ancient Gaelic holiday\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, will be held on, the ancient Gaelic holiday) -> the ancient Gaelic holiday (4904ms)\nWhen was the festival held?\ta grand scale\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festivals, can be held on, a grand scale) -> a grand scale (4928ms)\nWhen was the festival held?\tJune 7\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, will be held on, June 7) -> June 7 (4886ms)\nWhen was the festival held?\tFriday\t-0.0\tWhen was the festival held? -> $x: (diwalus, be hold on, $x) -> (The Diwali Celebration Function, was held on, Friday) -> Friday (4904ms)\nWhen was the festival held?\tZary\t-0.0\tWhen was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (The 5th free Station Woodstock rock festival, was held in, Zary) -> Zary (4924ms)\nWhen was the festival held?\tthe night of the 12th full moon\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the night of the 12th full moon) -> the night of the 12th full moon (4904ms)\nWhen was the festival held?\tMay 15\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (the festival, will be held on, May 15) -> May 15 (4919ms)\nWhen was the festival held?\tupstate New York\t-0.0\tWhen was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (The Woodstock 1999 festival, is held in, upstate New York) -> upstate New York (4919ms)\nWhen was the festival held?\tNovember 9-11 , 2012\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, November 9-11 , 2012) -> November 9-11 , 2012 (4913ms)\nWhen was the festival held?\tthe 15th of February\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The Festival, was held on, the 15th of February) -> the 15th of February (4913ms)\nWhen was the festival held?\t2nd\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, was held on, 2nd) -> 2nd (4928ms)\nWhen was the festival held?\t23 Spring\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, 23 Spring) -> 23 Spring (4913ms)\nWhen was the festival held?\t8 and 9 September\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, 8 and 9 September) -> 8 and 9 September (4924ms)\nWhen was the festival held?\tFeb. 24-25\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, will be held on, Feb. 24-25) -> Feb. 24-25 (4913ms)\nWhen was the festival held?\tSeptember 12- 13\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, were held on, September 12- 13) -> September 12- 13 (4886ms)\nWhen was the festival held?\ttwo days\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, two days) -> two days (4919ms)\nWhen was the festival held?\tJune 23rd\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 23rd) -> June 23rd (4928ms)\nWhen was the festival held?\tthe occasions\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festivals, are held here on, the occasions) -> the occasions (4913ms)\nWhen was the festival held?\tNew York\t-0.0\tWhen was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (The Woodstock 99 festival, is held in, New York) -> New York (4913ms)\nWhen was the festival held?\tDecember 8th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, December 8th) -> December 8th (4893ms)\nWhen was the festival held?\t1934\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (The Harvest Festival, was first held in, 1934) -> 1934 (4924ms)\nWhen was the festival held?\tWolfe Island\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, Wolfe Island) -> Wolfe Island (4886ms)\nWhen was the festival held?\tPenang\t-0.0\tWhen was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (The international dragon boat festival, is held in, Penang) -> Penang (4919ms)\nWhen was the festival held?\t1981\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (? The first Katy Rice Harvest Festival, was held in, 1981) -> 1981 (4924ms)\nWhen was the festival held?\tAugust 17th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 17th) -> August 17th (4909ms)\nWhen was the festival held?\tGran Canaria\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is going to be held on, Gran Canaria) -> Gran Canaria (4898ms)\nWhen was the festival held?\tNew Zealand\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (Similar harvest festivals, are held in, New Zealand) -> New Zealand (4893ms)\nWhen was the festival held?\tthe HUB lawn\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festival, will be held on, the HUB lawn) -> the HUB lawn (4893ms)\nWhen was the festival held?\t40 countries\t-0.0\tWhen was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (Dragon Boat festivals, are held in over, 40 countries) -> 40 countries (4886ms)\nWhen was the festival held?\ta farm\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, a farm) -> a farm (4898ms)\nWhen was the festival held?\tseveral locations\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festival, was held on, several locations) -> several locations (4913ms)\nWhen was the festival held?\tJune 7th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 7th) -> June 7th (4924ms)\nWhen was the festival held?\tAugust 4th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 4th) -> August 4th (4886ms)\nWhen was the festival held?\tthe farm\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (The harvest festival, was held in, the farm) -> the farm (4919ms)\nWhen was the festival held?\tJune 8\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 8) -> June 8 (4909ms)\nWhen was the festival held?\tAugust 9th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 9th) -> August 9th (4908ms)\nWhen was the festival held?\tmemory\t-0.0\tWhen was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (the Dragon Boat Festival, is held in, memory) -> memory (4914ms)\nWhen was the festival held?\tpublic property\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (the festival, to be held on, public property) -> public property (4924ms)\nWhen was the festival held?\tan area\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, an area) -> an area (4898ms)\nWhen was the festival held?\tBethel\t-0.0\tWhen was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (the famous 1969 Woodstock Festival, was actually held in, Bethel) -> Bethel (4903ms)\nWhen was the festival held?\ttwo stages\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, two stages) -> two stages (4913ms)\nWhen was the festival held?\tthe weekend\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the weekend) -> the weekend (4893ms)\nWhen was the festival held?\tsuch events\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, are held on, such events) -> such events (4886ms)\nWhen was the festival held?\tJuly 27th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, July 27th) -> July 27th (4898ms)\nWhen was the festival held?\tthe first Thursday\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, has been held every year on, the first Thursday) -> the first Thursday (4893ms)\nWhen was the festival held?\tthe final day\t-0.0\tWhen was the festival held? -> $x: (diwalus, be hold on, $x) -> (Diwali, is held on, the final day) -> the final day (4898ms)\nWhen was the festival held?\tMarch 17\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (his festival, was held on, March 17) -> March 17 (4909ms)\nWhen was the festival held?\tthe beach\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the beach) -> the beach (4898ms)\nWhen was the festival held?\tvarious parts\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (The date-harvest festival, is held in, various parts) -> various parts (4886ms)\nWhen was the festival held?\tAugust 3rd\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 3rd) -> August 3rd (4928ms)\nWhen was the festival held?\tSahib-Saptami\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Annual festival, is held on, Sahib-Saptami) -> Sahib-Saptami (4893ms)\nWhen was the festival held?\tMay 12th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, May 12th) -> May 12th (4928ms)\nWhen was the festival held?\tthe lawn\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, the lawn) -> the lawn (4924ms)\nWhen was the festival held?\tApril 18\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, April 18) -> April 18 (4913ms)\nWhen was the festival held?\tJuly 21 and 22 , 2012\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, July 21 and 22 , 2012) -> July 21 and 22 , 2012 (4909ms)\nWhen was the festival held?\tMay 3rd\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, May 3rd) -> May 3rd (4928ms)\nWhen was the festival held?\tAugust 7th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 7th) -> August 7th (4928ms)\nWhen was the festival held?\tMarch 12\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, was held on, March 12) -> March 12 (4924ms)\nWhen was the festival held?\tJuly\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (an annual harvest festival, is now held in, July) -> July (4909ms)\nWhen was the festival held?\tthe third weekend\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (the festival, is held on, the third weekend) -> the third weekend (4898ms)\nWhen was the festival held?\tthe full moon day\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (' Festival, is held on, the full moon day) -> the full moon day (4913ms)\nWhen was the festival held?\tthe final day of the Vikram Calendar\t-0.0\tWhen was the festival held? -> $x: (diwalus, be hold on, $x) -> (Diwali, is held on, the final day of the Vikram Calendar) -> the final day of the Vikram Calendar (4893ms)\nWhen was the festival held?\tSaturday\t-0.0\tWhen was the festival held? -> $x: (diwalus, be hold on, $x) -> (Diwali Night 2009, will be held on, Saturday) -> Saturday (4932ms)\nWhen was the festival held?\ta moonlit evening\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, should be held on, a moonlit evening) -> a moonlit evening (4928ms)\nWhen was the festival held?\tMay 5th , 2012\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, May 5th , 2012) -> May 5th , 2012 (4893ms)\nWhen was the festival held?\tApril 21st\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, April 21st) -> April 21st (4913ms)\nWhen was the festival held?\t1995\t-0.0\tWhen was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (The first Woodstock Festival, was held in, 1995) -> 1995 (4909ms)\nWhen was the festival held?\tMontmartre\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (a harvest festival, is held in, Montmartre) -> Montmartre (4919ms)\nWhen was the festival held?\tDecember\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, December) -> December (4898ms)\nWhen was the festival held?\tNovember 10th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, November 10th) -> November 10th (4924ms)\nWhen was the festival held?\tMay 26\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, May 26) -> May 26 (4924ms)\nWhen was the festival held?\tthe last day\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, the last day) -> the last day (4904ms)\nWhen was the festival held?\tSat\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, Sat) -> Sat (4928ms)\nWhen was the festival held?\tOctober 1\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, will be held on, October 1) -> October 1 (4924ms)\nWhen was the festival held?\tthe iron church\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (the first Harvest Festival, was held in, the iron church) -> the iron church (4928ms)\nWhen was the festival held?\tso weather\t-0.0\tWhen was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (The DC Dragon Boat Festival, was again held in so, so weather) -> so weather (4909ms)\nWhen was the festival held?\tMarch 3rd\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (' Festival, is held on, March 3rd) -> March 3rd (4928ms)\nWhen was the festival held?\tthe outskirts\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, the outskirts) -> the outskirts (4893ms)\nWhen was the festival held?\tthe beginning\t-0.0\tWhen was the festival held? -> $x: (harvest festival, be hold in, $x) -> (a popular harvest festival, is usually held in, the beginning) -> the beginning (4904ms)\nWhen was the festival held?\tNovember 24th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, November 24th) -> November 24th (4909ms)\nWhen was the festival held?\tJune 8th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 8th) -> June 8th (4904ms)\nWhen was the festival held?\tNovember 17th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, November 17th) -> November 17th (4904ms)\nWhen was the festival held?\tMemorial Day Weekend\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, Memorial Day Weekend) -> Memorial Day Weekend (4919ms)\nWhen was the festival held?\tDragon Boat Pool\t-0.0\tWhen was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (each Dragon Boat Festival, will be held in, Dragon Boat Pool) -> Dragon Boat Pool (4913ms)\nWhen was the festival held?\tMarket Square\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, Market Square) -> Market Square (4898ms)\nWhen was the festival held?\tthe streets\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is literally held on, the streets) -> the streets (4904ms)\nWhen was the festival held?\t25 and 26 February 2012\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, 25 and 26 February 2012) -> 25 and 26 February 2012 (4893ms)\nWhen was the festival held?\tthe last weekend\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the last weekend) -> the last weekend (4909ms)\nWhen was the festival held?\tthe 4th and 5th\t-0.0\tWhen was the festival held? -> $x: (festival, be hold on, $x) -> (? Festival, will be held on, the 4th and 5th) -> the 4th and 5th (4928ms)\nWhen was the festival held?\tDevotees\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Devotees, love to hold, festivals) -> Devotees (4947ms)\nWhen was the festival held?\twashing\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (washing, are frequently held during, festivals) -> washing (4944ms)\nWhen was the festival held?\tThe King\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The King, liked to hold, festivals) -> The King (4936ms)\nWhen was the festival held?\tthe descendants\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the descendants, to hold, festivals) -> the descendants (4947ms)\nWhen was the festival held?\tKovalam\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Kovalam, hold, festivals) -> Kovalam (4940ms)\nWhen was the festival held?\tEven the earliest civilizations\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Even the earliest civilizations, held, springtime festivals) -> Even the earliest civilizations (4940ms)\nWhen was the festival held?\tResidents\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Residents, continue to hold, festivals) -> Residents (4944ms)\nWhen was the festival held?\tThe park\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The park, held, festivals) -> The park (4950ms)\nWhen was the festival held?\tCarnac and Vannes\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Carnac and Vannes, hold, festivals) -> Carnac and Vannes (4947ms)\nWhen was the festival held?\tthe village\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the village, holds, its festival) -> the village (4950ms)\nWhen was the festival held?\tSufis\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Sufis, hold, festivals) -> Sufis (4932ms)\nWhen was the festival held?\tAthens\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Athens, held, a festival) -> Athens (4940ms)\nWhen was the festival held?\tRockbridge Greens Highly visible\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Rockbridge Greens Highly visible, recently held, festival) -> Rockbridge Greens Highly visible (4947ms)\nWhen was the festival held?\ttowns and villages\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (towns and villages, hold, festivals) -> towns and villages (4932ms)\nWhen was the festival held?\tthe trade fairs\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the trade fairs, held at, festivals) -> the trade fairs (4940ms)\nWhen was the festival held?\ta nine-foot statue\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (a nine-foot statue, began holding, festivals) -> a nine-foot statue (4947ms)\nWhen was the festival held?\tthe custom\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the custom, were held as, festivals) -> the custom (4936ms)\nWhen was the festival held?\tLondon\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (London, held, ice festivals) -> London (4932ms)\nWhen was the festival held?\tThe Italians\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Italians, will hold, festivals) -> The Italians (4936ms)\nWhen was the festival held?\tThe team\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The team, regularly holds contests at, festivals) -> The team (4940ms)\nWhen was the festival held?\tMarseille\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Marseille, holds, festivals) -> Marseille (4940ms)\nWhen was the festival held?\twater puppet performances\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (water puppet performances, are held during, festivals) -> water puppet performances (4947ms)\nWhen was the festival held?\tThe town\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The town, holds, a festival) -> The town (4944ms)\nWhen was the festival held?\tMusicians\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Musicians, hold, festivals) -> Musicians (4932ms)\nWhen was the festival held?\tMadhya Pradesh\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Madhya Pradesh, holds, festivals) -> Madhya Pradesh (4932ms)\nWhen was the festival held?\tevery weekend\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (every weekend, holds the promise of, festivals) -> every weekend (4936ms)\nWhen was the festival held?\tThe Dalkhai\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Dalkhai, is held during, festivals) -> The Dalkhai (4947ms)\nWhen was the festival held?\tThe Project\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Project, holds events like, festivals) -> The Project (4940ms)\nWhen was the festival held?\tthe film\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the film, are being held at, festivals) -> the film (4950ms)\nWhen was the festival held?\tsouthern coastal Alaska\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (southern coastal Alaska, held a series of, festivals) -> southern coastal Alaska (4940ms)\nWhen was the festival held?\tflies\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (flies, hold, festival) -> flies (4944ms)\nWhen was the festival held?\tMarch 10th signature event\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (March 10th signature event, held at, Festival) -> March 10th signature event (4936ms)\nWhen was the festival held?\tthe glue\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the glue, held, the festival) -> the glue (4936ms)\nWhen was the festival held?\tfoot races\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (foot races, held, festivals) -> foot races (4944ms)\nWhen was the festival held?\tthe Church\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the Church, holds, festival) -> the Church (4932ms)\nWhen was the festival held?\tDCS\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (DCS, plans to hold, festivals) -> DCS (4936ms)\nWhen was the festival held?\tRiver Devika\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (River Devika, holds, festivals) -> River Devika (4932ms)\nWhen was the festival held?\tcelebrants\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (celebrants, held, festivals) -> celebrants (4940ms)\nWhen was the festival held?\tTashkent city administration\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Tashkent city administration, held plenty of, festivals) -> Tashkent city administration (4944ms)\nWhen was the festival held?\tMexican communities\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Mexican communities, hold, festivals) -> Mexican communities (4932ms)\nWhen was the festival held?\tSt . Augustine?s 5K Run/Walk\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (St . Augustine?s 5K Run/Walk, will be held during, Festival) -> St . Augustine?s 5K Run/Walk (4947ms)\nWhen was the festival held?\tthe Babylonians\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the Babylonians, held, a festival) -> the Babylonians (4936ms)\nWhen was the festival held?\tThe city\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The city, holds, festivals) -> The city (4947ms)\nWhen was the festival held?\tFrance\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (France, holds a number of, Festivals) -> France (4947ms)\nWhen was the festival held?\tThai boxing bouts\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Thai boxing bouts, are commonly held during, festivals) -> Thai boxing bouts (4936ms)\nWhen was the festival held?\tThe preliminaries\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The preliminaries, are held at, festivals) -> The preliminaries (4940ms)\nWhen was the festival held?\tSpecial worship\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Special worship, is held here during, festival) -> Special worship (4947ms)\nWhen was the festival held?\tsignature event\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (signature event, held at, Festival) -> signature event (4932ms)\nWhen was the festival held?\tCSA farms\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (CSA farms, often hold, festivals) -> CSA farms (4950ms)\nWhen was the festival held?\tVillagers\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Villagers, hold, festivals) -> Villagers (4940ms)\nWhen was the festival held?\tVarious peoples in northern Europe\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Various peoples in northern Europe, held, festivals) -> Various peoples in northern Europe (4944ms)\nWhen was the festival held?\tPilgrims\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Pilgrims, hold, festivals) -> Pilgrims (4944ms)\nWhen was the festival held?\tthe Romans\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the Romans, held, a festival) -> the Romans (4940ms)\nWhen was the festival held?\tThe bank\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The bank, holds, festival) -> The bank (4936ms)\nWhen was the festival held?\tthe gods\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the gods, hold, festivals) -> the gods (4944ms)\nWhen was the festival held?\tthe upper class\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the upper class, held, festivals) -> the upper class (4944ms)\nWhen was the festival held?\tThe Mallas of Kusinara\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Mallas of Kusinara, held, a festival) -> The Mallas of Kusinara (4944ms)\nWhen was the festival held?\tthe Norsemen\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the Norsemen, held, festivals) -> the Norsemen (4936ms)\nWhen was the festival held?\tMalaga\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Malaga, holds a number of, festivals) -> Malaga (4936ms)\nWhen was the festival held?\tBoxerwood\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Boxerwood, also holds, festivals) -> Boxerwood (4944ms)\nWhen was the festival held?\tThe Vethadipa brahmin\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Vethadipa brahmin, held, a festival) -> The Vethadipa brahmin (4936ms)\nWhen was the festival held?\tThe groups\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The groups, hold, festivals) -> The groups (4944ms)\nWhen was the festival held?\tThe Yao minority group\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Yao minority group, holds, many festivals) -> The Yao minority group (4932ms)\nWhen was the festival held?\tPagans\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Pagans, have long held, festivals) -> Pagans (4947ms)\nWhen was the festival held?\tThe Sakyas of Kapilavatthu\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Sakyas of Kapilavatthu, held, a festival) -> The Sakyas of Kapilavatthu (4936ms)\nWhen was the festival held?\tthe ministry\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the ministry, held, festivals) -> the ministry (4936ms)\nWhen was the festival held?\tThe ancient Greeks\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The ancient Greeks, held, a festival) -> The ancient Greeks (4936ms)\nWhen was the festival held?\tAssyrian music\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Assyrian music, holds, festivals) -> Assyrian music (4944ms)\nWhen was the festival held?\tthe King\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the King, held, high festival) -> the King (4940ms)\nWhen was the festival held?\tThe three counties\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The three counties, hold a variety of, festivals) -> The three counties (4940ms)\nWhen was the festival held?\tGoldsmiths College\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Goldsmiths College, is holding, festival) -> Goldsmiths College (4950ms)\nWhen was the festival held?\tthe Incas\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (the Incas, held, festivals) -> the Incas (4932ms)\nWhen was the festival held?\tCaritas\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Caritas, holds, festivals) -> Caritas (4932ms)\nWhen was the festival held?\tThe Mallas of Pava\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Mallas of Pava, held, a festival) -> The Mallas of Pava (4947ms)\nWhen was the festival held?\tA very active social practice\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (A very active social practice, was to hold, festivals) -> A very active social practice (4944ms)\nWhen was the festival held?\tThe Palestinians\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (The Palestinians, have started to hold, festivals) -> The Palestinians (4932ms)\nWhen was the festival held?\tAntibes\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Antibes, holds, festivals) -> Antibes (4932ms)\nWhen was the festival held?\tBuffalo\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Buffalo, is to hold, festivals) -> Buffalo (4947ms)\nWhen was the festival held?\tScots\t-0.11111111109400018\tWhen was the festival held? -> $x: ($x, hold, festival) -> (Scots, held, festivals) -> Scots (4940ms)\nWhen was the festival held?\tValencia\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (Valencia, will be held one of, the most popular street festivals) -> Valencia (4953ms)\nWhen was the festival held?\tthe monastery\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (the monastery, were holding a series of, festivals) -> the monastery (4950ms)\nWhen was the festival held?\tthe competition\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (the competition, are held the first week of, the festival) -> the competition (4953ms)\nWhen was the festival held?\tClasses\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (Classes, were held all three days of, the festival) -> Classes (4953ms)\nWhen was the festival held?\tthe bands\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (the bands, will be held the first morning of, the festival) -> the bands (4953ms)\nWhen was the festival held?\tThe attendance\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be record for, festival) -> (The attendance, is a record for, the festival) -> The attendance (4953ms)\nWhen was the festival held?\tThe contest\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (The contest, will be held both days of, the festival) -> The contest (4953ms)\nWhen was the festival held?\tliterary issues\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (literary issues, will be held everyday of, the festival) -> literary issues (4950ms)\nWhen was the festival held?\tRabac\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (Rabac, is held one of, the biggest open air festival) -> Rabac (4953ms)\nWhen was the festival held?\tCAAHW\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (CAAHW, is holding its annual People of, Color Festival) -> CAAHW (4953ms)\nWhen was the festival held?\tgame tournaments\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (game tournaments, will be held each day of, the festival) -> game tournaments (4953ms)\nWhen was the festival held?\t29 ,762 pumpkins\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be record for, festival) -> (29 ,762 pumpkins, was a record for, this festival) -> 29 ,762 pumpkins (4953ms)\nWhen was the festival held?\tthe earth\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (the earth, will be held the last day of, the festival) -> the earth (4953ms)\nWhen was the festival held?\tAuditions\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (Auditions, are held the second week of, the festival) -> Auditions (4953ms)\nWhen was the festival held?\tSark\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (Sark, is held a kind of, an annual spring festival) -> Sark (4950ms)\nWhen was the festival held?\tcash prizes\t-0.6666666666500001\tWhen was the festival held? -> $x: ($x, be hold of, festival) -> (cash prizes, is held the last day of, the festival) -> cash prizes (4953ms)\nWhen was the festival held?\ttruth\t-0.6666666666530001\tWhen was the festival held? -> $x: ($x, hold, traditional festival) -> (truth, will hold, the Thai traditional-water festival) -> truth (4953ms)\nWhen was the festival held?\ta pub\t-0.6666666666530001\tWhen was the festival held? -> $x: ($x, hold, traditional festival) -> (a pub, holds, a traditional Irish dancing festival) -> a pub (4955ms)\nWhen was the festival held?\tGuangxi\t-0.6666666666530001\tWhen was the festival held? -> $x: ($x, hold, traditional festival) -> (Guangxi, hold, a traditional festival) -> Guangxi (4955ms)\nWhen was the festival held?\tRosmuck\t-0.6666666666530001\tWhen was the festival held? -> $x: ($x, hold, traditional festival) -> (Rosmuck, holds, a traditional Irish dancing festival) -> Rosmuck (4955ms)\nWhen was the festival held?\t26 to 29 June\t-0.6666666666530001\tWhen was the festival held? -> $x: ($x, hold, traditional festival) -> (26 to 29 June, will be held, the traditional medieval festival) -> 26 to 29 June (4953ms)\nWhen was the festival held?\tSeptember Moscow\t-0.6666666666530001\tWhen was the festival held? -> $x: ($x, hold, traditional festival) -> (September Moscow, held, traditional Military Tattoo festival) -> September Moscow (4953ms)\nWhen was the festival held?\tJerusalem\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (Jerusalem, held, its 3rd Annual Jerusalem Food Festival Sept. 2) -> Jerusalem (4957ms)\nWhen was the festival held?\tPeru\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (Peru, has just held, its enormous annual food festival) -> Peru (4955ms)\nWhen was the festival held?\tthe group\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (the group, holds, an International Food Festival) -> the group (4955ms)\nWhen was the festival held?\ta three-star restaurant\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (a three-star restaurant, held, a jackfruit food festival) -> a three-star restaurant (4959ms)\nWhen was the festival held?\tthe year\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (the year, holds, a different food festival) -> the year (4955ms)\nWhen was the festival held?\tCebu\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (Cebu, will hold, the Asian Food Festival) -> Cebu (4955ms)\nWhen was the festival held?\tschool\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (school, held, the Delicious Food Festival) -> school (4955ms)\nWhen was the festival held?\tThe ticket holder\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (The ticket holder, expressly holds, Food Truck Festivals) -> The ticket holder (4955ms)\nWhen was the festival held?\t73 S. 18th St\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (73 S. 18th St, will hold, a Ukrainian spring food festival) -> 73 S. 18th St (4955ms)\nWhen was the festival held?\tBergerac\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (Bergerac, holds, an annual food and wine festival) -> Bergerac (4955ms)\nWhen was the festival held?\tCharlotte\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (Charlotte, held, a fall food festival) -> Charlotte (4955ms)\nWhen was the festival held?\tThe restaurant\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (The restaurant, holds, several food festivals) -> The restaurant (4959ms)\nWhen was the festival held?\tSlow Food member restaurants\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (Slow Food member restaurants, hold, food festivals) -> Slow Food member restaurants (4959ms)\nWhen was the festival held?\tthe United Nations\t-0.7777777777650001\tWhen was the festival held? -> $x: ($x, hold, festival food) -> (the United Nations, are holding, the Dominican Food Festival) -> the United Nations (4959ms)\nWhen was the festival held?\tNewfoundland\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Newfoundland, held, their own harvest festival) -> Newfoundland (4961ms)\nWhen was the festival held?\tthe pilgrims\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (the pilgrims, held, six harvest/thanksgiving festivals) -> the pilgrims (4959ms)\nWhen was the festival held?\tthe Pilgrims\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (the Pilgrims, held, a harvest festival) -> the Pilgrims (4959ms)\nWhen was the festival held?\thost\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (host, holds, an annual Harvest Festival) -> host (4959ms)\nWhen was the festival held?\thumans\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (humans, have been holding, harvest festivals) -> humans (4961ms)\nWhen was the festival held?\tThe Glengarry Pioneer Museum\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (The Glengarry Pioneer Museum, held, its Harvest Festival) -> The Glengarry Pioneer Museum (4963ms)\nWhen was the festival held?\tthe East Indians\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, diwali) -> (the East Indians, held, lavish Diwali fairs) -> the East Indians (4961ms)\nWhen was the festival held?\tthe guild\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (the guild, had been planning on holding, a Harvest Festival) -> the guild (4963ms)\nWhen was the festival held?\tOyster Bay\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Oyster Bay, held, a Harvest Festival) -> Oyster Bay (4963ms)\nWhen was the festival held?\tAADBA\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, dragon boat festival) -> (AADBA, is holding, their annual Dragon Boat Festival) -> AADBA (4963ms)\nWhen was the festival held?\tCellardoor Winery\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Cellardoor Winery, held, their annual Harvest Festival) -> Cellardoor Winery (4963ms)\nWhen was the festival held?\tthe circle\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (the circle, will hold, a harvest festival) -> the circle (4963ms)\nWhen was the festival held?\t366-5695\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (366-5695, will hold, its Harvest Festival) -> 366-5695 (4961ms)\nWhen was the festival held?\tBallinagree\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Ballinagree, holds, its 9th Vintage Harvest Festival) -> Ballinagree (4963ms)\nWhen was the festival held?\tFood Front\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Food Front, is holding, a Harvest Festival) -> Food Front (4959ms)\nWhen was the festival held?\tThe Village\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (The Village, is holding, its annual harvest festival) -> The Village (4961ms)\nWhen was the festival held?\tBar Bij Fair\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, diwalus) -> (Bar Bij Fair, is held a month after, Diwali) -> Bar Bij Fair (4963ms)\nWhen was the festival held?\tThe ISA\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, diwalus) -> (The ISA, held a Diwali festival on, Diwali) -> The ISA (4961ms)\nWhen was the festival held?\tthe tournaments\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, diwalus) -> (the tournaments, held at, Diwali) -> the tournaments (4961ms)\nWhen was the festival held?\tthe ISAK tour company\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (the ISAK tour company, was holding, a harvest festival party) -> the ISAK tour company (4961ms)\nWhen was the festival held?\tXixi people\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, dragon boat festival) -> (Xixi people, hold, dragon boat festival) -> Xixi people (4961ms)\nWhen was the festival held?\tThe museum\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (The museum, holds, the Swan Valley Harvest Festival) -> The museum (4963ms)\nWhen was the festival held?\tThe boat races\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (The boat races, are held during, the harvest festival) -> The boat races (4963ms)\nWhen was the festival held?\tEgyptians\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Egyptians, all held, harvest festivals) -> Egyptians (4959ms)\nWhen was the festival held?\tAustin\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Austin, held, its Harvest Moon Festival) -> Austin (4961ms)\nWhen was the festival held?\tConservation Society\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Conservation Society, holds first, Indian Harvest Festival) -> Conservation Society (4959ms)\nWhen was the festival held?\tTwo women in Jaipur\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, diwali) -> (Two women in Jaipur, hold candles to, celebrate Diwali) -> Two women in Jaipur (4963ms)\nWhen was the festival held?\tThe church\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (The church, held, a Harvest Festival) -> The church (4965ms)\nWhen was the festival held?\t1984 Sydney\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, dragon boat festival) -> (1984 Sydney, held, the inaugural Sydney Dragon Boat Festival) -> 1984 Sydney (4961ms)\nWhen was the festival held?\tHari Solomonides\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Hari Solomonides, held, a ' Harvest Festival talk show ') -> Hari Solomonides (4963ms)\nWhen was the festival held?\tthe orphanage\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (the orphanage, held, Harvest Festivals) -> the orphanage (4959ms)\nWhen was the festival held?\tThe Bucks County Foodshed\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (The Bucks County Foodshed, will be holding, a Harvest Festival) -> The Bucks County Foodshed (4963ms)\nWhen was the festival held?\tMeriden\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, harvest festival) -> (Meriden, will be holding, their 3rd annual Harvest festival) -> Meriden (4963ms)\nWhen was the festival held?\tClubs and organizations\t-0.888888888876\tWhen was the festival held? -> $x: ($x, hold, diwali) -> (Clubs and organizations, hold events like, Diwali Night) -> Clubs and organizations (4963ms)\nWhen was the festival held?\train\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (?Festival, is held, rain) -> rain (4965ms)\nWhen was the festival held?\tseveral times\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, several times) -> several times (4969ms)\nWhen was the festival held?\tEvery three years\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, is held, Every three years) -> Every three years (4966ms)\nWhen was the festival held?\tSiena\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, Siena) -> Siena (4966ms)\nWhen was the festival held?\tseveral times a year\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, several times a year) -> several times a year (4968ms)\nWhen was the festival held?\tevery August\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, every August) -> every August (4969ms)\nWhen was the festival held?\tevery year\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, were held, every year) -> every year (4968ms)\nWhen was the festival held?\tRutherford County\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, held in, Rutherford County) -> Rutherford County (4965ms)\nWhen was the festival held?\tthe autumn\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, the autumn) -> the autumn (4969ms)\nWhen was the festival held?\tannually\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, is held, annually) -> annually (4965ms)\nWhen was the festival held?\train or shine\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (~ ~ Festival, held, rain or shine) -> rain or shine (4969ms)\nWhen was the festival held?\ta day\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, was held, a day) -> a day (4969ms)\nWhen was the festival held?\tMontreal\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, Montreal) -> Montreal (4969ms)\nWhen was the festival held?\tDenver\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, Denver) -> Denver (4967ms)\nWhen was the festival held?\tmedieval Olavinnlinna Castle\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held at, medieval Olavinnlinna Castle) -> medieval Olavinnlinna Castle (4967ms)\nWhen was the festival held?\tRiver Park\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (' Festival, held at, River Park) -> River Park (4969ms)\nWhen was the festival held?\train , snow , sleet or shine\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, rain , snow , sleet or shine) -> rain , snow , sleet or shine (4967ms)\nWhen was the festival held?\tyear\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held, year) -> year (4969ms)\nWhen was the festival held?\tOctober 18\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, October 18) -> October 18 (4967ms)\nWhen was the festival held?\tthe same time\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held around, the same time) -> the same time (4966ms)\nWhen was the festival held?\teach May\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, is held, each May) -> each May (4968ms)\nWhen was the festival held?\tBantry House in Bantry\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held at, Bantry House in Bantry) -> Bantry House in Bantry (4969ms)\nWhen was the festival held?\tevery January\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, every January) -> every January (4966ms)\nWhen was the festival held?\tOutdoors\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, Outdoors) -> Outdoors (4968ms)\nWhen was the festival held?\tNehru Park\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held at, Nehru Park) -> Nehru Park (4965ms)\nWhen was the festival held?\tRussia\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festival, held in, Russia) -> Russia (4965ms)\nWhen was the festival held?\tgrass-covered grounds\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held on, grass-covered grounds) -> grass-covered grounds (4969ms)\nWhen was the festival held?\tBondi Beach\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held at, Bondi Beach) -> Bondi Beach (4966ms)\nWhen was the festival held?\ta week\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, is held, a week) -> a week (4967ms)\nWhen was the festival held?\teach year\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, were held, each year) -> each year (4967ms)\nWhen was the festival held?\tWashington DC\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, Washington DC) -> Washington DC (4965ms)\nWhen was the festival held?\tNow\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, being held, Now) -> Now (4965ms)\nWhen was the festival held?\teach spring\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, each spring) -> each spring (4968ms)\nWhen was the festival held?\tGhent\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, Ghent) -> Ghent (4968ms)\nWhen was the festival held?\tevery summer\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festival, held, every summer) -> every summer (4966ms)\nWhen was the festival held?\tevery month\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, every month) -> every month (4967ms)\nWhen was the festival held?\tan important place\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, hold, an important place) -> an important place (4966ms)\nWhen was the festival held?\t1968\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festival, held since, 1968) -> 1968 (4966ms)\nWhen was the festival held?\tusually\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, usually) -> usually (4967ms)\nWhen was the festival held?\t1983\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, 1983) -> 1983 (4966ms)\nWhen was the festival held?\tfrequently\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held, frequently) -> frequently (4965ms)\nWhen was the festival held?\tDonnington Park\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held at, Donnington Park) -> Donnington Park (4969ms)\nWhen was the festival held?\ta 2 day\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, a 2 day) -> a 2 day (4969ms)\nWhen was the festival held?\tthe autumn and spring\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, held in, the autumn and spring) -> the autumn and spring (4966ms)\nWhen was the festival held?\tNew York City\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festival, held in, New York City) -> New York City (4969ms)\nWhen was the festival held?\teach April\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, each April) -> each April (4965ms)\nWhen was the festival held?\tthe Farmington Civic Center\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held at, the Farmington Civic Center) -> the Farmington Civic Center (4965ms)\nWhen was the festival held?\tvillage\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festival, was held, village) -> village (4965ms)\nWhen was the festival held?\tthe UK\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, the UK) -> the UK (4969ms)\nWhen was the festival held?\tThree times a year\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, were held, Three times a year) -> Three times a year (4966ms)\nWhen was the festival held?\tLipscomb Park\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held at, Lipscomb Park) -> Lipscomb Park (4966ms)\nWhen was the festival held?\tyear-round\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held, year-round) -> year-round (4969ms)\nWhen was the festival held?\tthe Island\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held on, the Island) -> the Island (4968ms)\nWhen was the festival held?\tTrujillo\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, Trujillo) -> Trujillo (4967ms)\nWhen was the festival held?\tthe University\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (' Festival, held on, the University) -> the University (4968ms)\nWhen was the festival held?\tan unusual lure\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, hold, an unusual lure) -> an unusual lure (4968ms)\nWhen was the festival held?\toften\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, often) -> often (4966ms)\nWhen was the festival held?\tlast weekend\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festival, held, last weekend) -> last weekend (4969ms)\nWhen was the festival held?\tOften\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, Often) -> Often (4967ms)\nWhen was the festival held?\teach October\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, is held, each October) -> each October (4966ms)\nWhen was the festival held?\tlast month\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, last month) -> last month (4969ms)\nWhen was the festival held?\tprefectures and areas\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, prefectures and areas) -> prefectures and areas (4969ms)\nWhen was the festival held?\tApril\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, April) -> April (4967ms)\nWhen was the festival held?\tevery fall\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, every fall) -> every fall (4969ms)\nWhen was the festival held?\tyear round\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, year round) -> year round (4965ms)\nWhen was the festival held?\tone recital\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (festivals, holds, one recital) -> one recital (4968ms)\nWhen was the festival held?\t2 hours\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, 2 hours) -> 2 hours (4967ms)\nWhen was the festival held?\tRegina\t-0.9999999999940001\tWhen was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, Regina) -> Regina (4968ms)\nWhen was the festival held?\teach other\t-1.0\tWhen was the festival held? -> $x: ($x, be festival of, conference) -> (each other, could be called a festival of, conferences) -> each other (4969ms)\nWhat is the highest dam in the U.S.?\tMS SYMPHONIE\t0.222222222222\tWhat is the highest dam in the U.S.? -> $x: ($x, be dam of, u.s.) -> (MS SYMPHONIE, is the dam of, 2006 U.S.) -> MS SYMPHONIE (434ms)\nWhere is the world's largest meteorite?\tNew England\t-0.6666666666629999\tWhere is the world's largest meteorite? -> $x: (largest, be consider part of, $x) -> ('s second largest river, is also considered part of, New England) -> New England (488ms)\nWhere is the world's largest meteorite?\tAbyei\t-0.6666666666629999\tWhere is the world's largest meteorite? -> $x: (largest, be consider part of, $x) -> (largest oil fields, were considered to be part of, Abyei) -> Abyei (488ms)\nWhat is the largest variety of cactus?\ta wide variety\t2.333333333324\tWhat is the largest variety of cactus? -> $x: ($x, be largest of, cactus) -> (a wide variety, are the largest grower of, cacti and succulents) -> a wide variety (967ms)\nWhat are coral reefs?\tthe park\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (the park, could cause damage to, coral reefs) -> the park (1445ms)\nWhat are coral reefs?\tacidity levels\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (acidity levels, cause major changes to, coral reefs) -> acidity levels (1445ms)\nWhat are coral reefs?\tCyanide fishing\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Cyanide fishing, causes massive destruction to, coral reefs) -> Cyanide fishing (1514ms)\nWhat are coral reefs?\tlive fire exercises\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (live fire exercises, have caused, coral reef destruction) -> live fire exercises (2140ms)\nWhat are coral reefs?\tClimate change\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Climate change, is causing, widespread bleaching of coral reefs) -> Climate change (1514ms)\nWhat are coral reefs?\thurricane forces\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (hurricane forces, cause substantial damage to, coral reefs) -> hurricane forces (1514ms)\nWhat are coral reefs?\tan anchor\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (an anchor, overboard can cause monumental damage to, coral reefs) -> an anchor (2782ms)\nWhat are coral reefs?\tglobal warming\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (global warming, is causing the destruction of, coral reefs) -> global warming (2140ms)\nWhat are coral reefs?\tMarine debris\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Marine debris, can cause significant damage to, coral reefs) -> Marine debris (2140ms)\nWhat are coral reefs?\tsea and\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (sea and, may cause destruction to, coral reefs) -> sea and (2140ms)\nWhat are coral reefs?\tthe tsunami\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (the tsunami, caused considerable damage to, the coral reefs) -> the tsunami (1445ms)\nWhat are coral reefs?\tlarge construction projects\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (large construction projects, can cause damage to, coral reefs) -> large construction projects (2140ms)\nWhat are coral reefs?\tLionfishes\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Lionfishes, cause harm to, coral reef ecosystems) -> Lionfishes (1445ms)\nWhat are coral reefs?\twrongdoers\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (wrongdoers, caused damage to, coral reefs) -> wrongdoers (2781ms)\nWhat are coral reefs?\tland pollution\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (land pollution, are causing major issues for, coral reefs) -> land pollution (1514ms)\nWhat are coral reefs?\tThe damage\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (The damage, caused to, coral reefs) -> The damage (2782ms)\nWhat are coral reefs?\tthe destruction\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (the destruction, caused to, coral reefs) -> the destruction (1445ms)\nWhat are coral reefs?\tSewage runoff\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Sewage runoff, causes serious damage to, coral reefs) -> Sewage runoff (2140ms)\nWhat are coral reefs?\tGore claims global warming\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Gore claims global warming, has helped cause, coral reefs) -> Gore claims global warming (2782ms)\nWhat are coral reefs?\tAcidity\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Acidity, is causing a major threat to, coral reefs) -> Acidity (2782ms)\nWhat are coral reefs?\ttop predators\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (top predators, causes lasting damage to, coral reefs) -> top predators (1514ms)\nWhat are coral reefs?\tNo harm\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (No harm, is caused to, coral reefs) -> No harm (2782ms)\nWhat are coral reefs?\tTourism\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Tourism, has also caused much of, the coral reef depletion) -> Tourism (1514ms)\nWhat are coral reefs?\tHurricane Rita\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (Hurricane Rita, caused significant damage to, coral reefs) -> Hurricane Rita (1445ms)\nWhat are coral reefs?\tattention\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (attention, may be the real cause of, the coral reef crisis) -> attention (1445ms)\nWhat are coral reefs?\tsea temperatures\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (sea temperatures, caused the death of, many coral reef and fish) -> sea temperatures (2140ms)\nWhat are coral reefs?\tthe subsequent damage\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (the subsequent damage, caused to, coral reefs) -> the subsequent damage (1514ms)\nWhat are coral reefs?\tsouvenir purposes\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (souvenir purposes, causes severe damage to, coral reefs) -> souvenir purposes (2140ms)\nWhat are coral reefs?\ta virus\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (a virus, often cause environmental damage to, coral reefs) -> a virus (2782ms)\nWhat are coral reefs?\tred soil runoff\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (red soil runoff, causes severe damage to, coral reefs) -> red soil runoff (1514ms)\nWhat are coral reefs?\tunusually warm seas\t1.555555555551\tWhat are coral reefs? -> $x: ($x, cause, coral reef) -> (unusually warm seas, caused severe damage to, coral reefs) -> unusually warm seas (2781ms)\nWhat are coral reefs?\tdolphins and whales surfacing\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (dolphins and whales surfacing, go scuba diving in, coral reefs) -> dolphins and whales surfacing (3663ms)\nWhat are coral reefs?\tActivities\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Activities, are focused in, coral reefs) -> Activities (4442ms)\nWhat are coral reefs?\tstony corals\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (stony corals, are often found in, coral reefs) -> stony corals (3663ms)\nWhat are coral reefs?\tthe diving and snorkel sites\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the diving and snorkel sites, are found in, coral reefs) -> the diving and snorkel sites (4865ms)\nWhat are coral reefs?\tthe best\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the best, are rich in, coral reefs) -> the best (5010ms)\nWhat are coral reefs?\tmarine snails\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (marine snails, found in, coral reefs) -> marine snails (4246ms)\nWhat are coral reefs?\tthe fish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the fish, live in, and around coral reefs) -> the fish (4540ms)\nWhat are coral reefs?\tTrumpetfish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Trumpetfish, live in, coral reefs) -> Trumpetfish (4442ms)\nWhat are coral reefs?\tthe coralline algae\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the coralline algae, play a major role in building, coral reefs) -> the coralline algae (4992ms)\nWhat are coral reefs?\tthe life\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the life, is in, coral reefs) -> the life (3663ms)\nWhat are coral reefs?\tmicrobes\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (microbes, play in, coral reefs) -> microbes (4442ms)\nWhat are coral reefs?\tChristmas tree worms\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Christmas tree worms, embedded in, the hard coral reef) -> Christmas tree worms (4246ms)\nWhat are coral reefs?\tocean acidification\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (ocean acidification, also looms in, coral reefs) -> ocean acidification (4540ms)\nWhat are coral reefs?\tthe WhyReef project\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the WhyReef project, are to foster an interest in, coral reefs) -> the WhyReef project (2912ms)\nWhat are coral reefs?\tthe United States\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the United States, become interested in, coral reefs) -> the United States (2912ms)\nWhat are coral reefs?\tinvertebrates\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (invertebrates, living in, coral reefs) -> invertebrates (4246ms)\nWhat are coral reefs?\tthe old timers\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the old timers, stopped in, Coral Reef) -> the old timers (4992ms)\nWhat are coral reefs?\tSpiny lobsters\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Spiny lobsters, live in, coral reefs) -> Spiny lobsters (2838ms)\nWhat are coral reefs?\tthe very identity of the Coral Sea\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the very identity of the Coral Sea, lies in, its coral reefs) -> the very identity of the Coral Sea (4442ms)\nWhat are coral reefs?\tthe sea creatures\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the sea creatures, live in, the coral reef) -> the sea creatures (2838ms)\nWhat are coral reefs?\tThe approximately 90 species\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The approximately 90 species, live in, coral reefs) -> The approximately 90 species (4992ms)\nWhat are coral reefs?\tHabitat\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Habitat, Commonly found in, coral reefs) -> Habitat (4992ms)\nWhat are coral reefs?\tGuests\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Guests, can snorkel in, coral reefs) -> Guests (4442ms)\nWhat are coral reefs?\tThe effects\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The effects, are already being seen in, coral reefs) -> The effects (4540ms)\nWhat are coral reefs?\tthe teeming life\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the teeming life, found in, coral reefs) -> the teeming life (2838ms)\nWhat are coral reefs?\tphosphate binds\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (phosphate binds, is abundant in, coral reefs) -> phosphate binds (4540ms)\nWhat are coral reefs?\tthe oceans\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the oceans, are found in, coral reefs) -> the oceans (4865ms)\nWhat are coral reefs?\tthe toxicity levels\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the toxicity levels, held in, coral reefs) -> the toxicity levels (4992ms)\nWhat are coral reefs?\tthe largest bony fish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the largest bony fish, found in, coral reefs) -> the largest bony fish (4992ms)\nWhat are coral reefs?\tthe Red Sea\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the Red Sea, is rich in, coral reefs) -> the Red Sea (4865ms)\nWhat are coral reefs?\tthe resource\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the resource, be available in, coral reefs) -> the resource (3663ms)\nWhat are coral reefs?\tfish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (fish, make their homes in, coral reefs) -> fish (2912ms)\nWhat are coral reefs?\tchemicals\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (chemicals, found in, coral reef organisms) -> chemicals (2913ms)\nWhat are coral reefs?\tspiny lobsters\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (spiny lobsters, to share their dens in, coral reefs) -> spiny lobsters (4992ms)\nWhat are coral reefs?\tmarine life\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (marine life, starts in, coral reefs) -> marine life (3663ms)\nWhat are coral reefs?\tOne study of a cruise ship anchor\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (One study of a cruise ship anchor, dropped in, a coral reef) -> One study of a cruise ship anchor (4865ms)\nWhat are coral reefs?\tCone snails\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Cone snails, are found primarily in, coral reefs) -> Cone snails (4992ms)\nWhat are coral reefs?\tminerals\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (minerals, are normally present in, coral reefs) -> minerals (4865ms)\nWhat are coral reefs?\tPesticide residues\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Pesticide residues, have been found in, coral reefs) -> Pesticide residues (3663ms)\nWhat are coral reefs?\tthe environment\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the environment, found in, coral reefs) -> the environment (4865ms)\nWhat are coral reefs?\tthe very diverse wildlife\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the very diverse wildlife, found in, coral reefs) -> the very diverse wildlife (4245ms)\nWhat are coral reefs?\tThe Caribbean\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The Caribbean, is rich in, coral reefs) -> The Caribbean (4245ms)\nWhat are coral reefs?\tcracks\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (cracks, found in, coral reefs) -> cracks (3663ms)\nWhat are coral reefs?\tunknown contents\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (unknown contents, were found lodged in, coral reefs) -> unknown contents (2912ms)\nWhat are coral reefs?\tmarine sediments\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (marine sediments, has witnessed dramatic changes in, coral reefs) -> marine sediments (4865ms)\nWhat are coral reefs?\tthe common clownfish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the common clownfish, are mainly found in, coral reefs) -> the common clownfish (2838ms)\nWhat are coral reefs?\tshallow\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (shallow, are common in, coral reef) -> shallow (5010ms)\nWhat are coral reefs?\tspecies\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (species, found in, coral reefs) -> species (4442ms)\nWhat are coral reefs?\tTwo Fish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Two Fish, has also participated in, coral reef) -> Two Fish (4992ms)\nWhat are coral reefs?\tcreatures\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (creatures, have evolved to live in, coral reefs) -> creatures (4540ms)\nWhat are coral reefs?\tPalolo worms\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Palolo worms, live in, coral reefs) -> Palolo worms (4540ms)\nWhat are coral reefs?\tseaweed\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (seaweed, plays a critical role in structuring, coral reefs) -> seaweed (2838ms)\nWhat are coral reefs?\tThe Moray eel\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The Moray eel, lives in, coral reefs) -> The Moray eel (4992ms)\nWhat are coral reefs?\tdanger\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (danger, are those in, coral reefs) -> danger (4865ms)\nWhat are coral reefs?\tThe eastern wing\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The eastern wing, is a filled in, coral reef) -> The eastern wing (4992ms)\nWhat are coral reefs?\tfilamentous algal assemblages\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (filamentous algal assemblages, growing in, a coral reef mesocosm) -> filamentous algal assemblages (4992ms)\nWhat are coral reefs?\tthe seas\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the seas, are abundant in, coral reefs) -> the seas (4865ms)\nWhat are coral reefs?\tecological processes\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (ecological processes, has done research in, coral reefs) -> ecological processes (5010ms)\nWhat are coral reefs?\tthe islands\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the islands, abounds in, coral reefs) -> the islands (4865ms)\nWhat are coral reefs?\taquatic life\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (aquatic life, exists in, coral reefs) -> aquatic life (2912ms)\nWhat are coral reefs?\talgae\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (algae, found in, coral reefs) -> algae (4540ms)\nWhat are coral reefs?\tthe only catfish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the only catfish, found in, coral reefs) -> the only catfish (2912ms)\nWhat are coral reefs?\tCarbon\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Carbon, fluxes in, coral reefs) -> Carbon (2838ms)\nWhat are coral reefs?\tNeither ecologist\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (Neither ecologist, had any particular background in, coral reefs) -> Neither ecologist (4992ms)\nWhat are coral reefs?\ta tropical fish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (a tropical fish, lives in, the coral reef) -> a tropical fish (4992ms)\nWhat are coral reefs?\tThe region\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The region, is rich in, coral reefs) -> The region (2912ms)\nWhat are coral reefs?\tmarine species\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (marine species, live in, coral reefs) -> marine species (4992ms)\nWhat are coral reefs?\tthoughts\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (thoughts, turn in, coral reefs) -> thoughts (4865ms)\nWhat are coral reefs?\tthe role\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (the role, play in, coral reefs) -> the role (2838ms)\nWhat are coral reefs?\tThe only catfish\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The only catfish, found in, coral reefs) -> The only catfish (2838ms)\nWhat are coral reefs?\torganisms\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (organisms, found in, coral reefs) -> organisms (4992ms)\nWhat are coral reefs?\tThe nation\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The nation, is rich in, coral reefs) -> The nation (4246ms)\nWhat are coral reefs?\tThe Napoleon Wrasse\t1.44444444444\tWhat are coral reefs? -> $x: ($x, in, coral reef) -> (The Napoleon Wrasse, is found primarily in, coral reefs) -> The Napoleon Wrasse (4246ms)\nWhat are coral reefs?\tstore CO2\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (coral reefs, do, store CO2) -> store CO2 (5028ms)\nWhat are coral reefs?\tshore dives\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (Most coral reef work, has been done from, shore dives) -> shore dives (5010ms)\nWhat are coral reefs?\tThe island\t1.333333333329\tWhat are coral reefs? -> $x: ($x, describe, coral reef) -> (The island, is described as having, a coral reef flat) -> The island (5028ms)\nWhat are coral reefs?\tn?t matter\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (the coral reef?s beauty, did, n?t matter) -> n?t matter (5010ms)\nWhat are coral reefs?\tThe exhibits\t1.333333333329\tWhat are coral reefs? -> $x: ($x, describe, coral reef) -> (The exhibits, describing, coral reefs and the Everglades) -> The exhibits (5028ms)\nWhat are coral reefs?\textensive damage\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (the fragile coral reefs, can do, extensive damage) -> extensive damage (5010ms)\nWhat are coral reefs?\tthe coast\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (coral reefs, indeed does, the coast) -> the coast (5010ms)\nWhat are coral reefs?\tsponges\t1.333333333329\tWhat are coral reefs? -> $x: ($x, describe, coral reef) -> (sponges, were described from, coral reefs) -> sponges (5010ms)\nWhat are coral reefs?\tthe age\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (a coral reef, have to do with, the age) -> the age (5010ms)\nWhat are coral reefs?\tfish populations\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (coral reefs, does n?t just keep, fish populations) -> fish populations (5028ms)\nWhat are coral reefs?\tan optional scuba dive\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (the coral reefs, do, an optional scuba dive) -> an optional scuba dive (5010ms)\nWhat are coral reefs?\t1998\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> ('s coral reefs, was done in, 1998) -> 1998 (5028ms)\nWhat are coral reefs?\tthe visitor\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (the coral reefs, do a dismal job of educating, the visitor) -> the visitor (5010ms)\nWhat are coral reefs?\tmathematics\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (The Hyperbolic Coral Reef, has as much to do with, mathematics) -> mathematics (5010ms)\nWhat are coral reefs?\tdinner\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (the the coral reefs, Do some fishing for, dinner) -> dinner (5010ms)\nWhat are coral reefs?\tWashington\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (Mexico?s coral reef, did laundry in, Washington) -> Washington (5028ms)\nWhat are coral reefs?\tthe smaller individuals\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (the coral reef ecosystem, do, the smaller individuals) -> the smaller individuals (5010ms)\nWhat are coral reefs?\tan enhanced blue spectrum\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (coral reefs, do better with, an enhanced blue spectrum) -> an enhanced blue spectrum (5010ms)\nWhat are coral reefs?\tone writer\t1.333333333329\tWhat are coral reefs? -> $x: ($x, describe, coral reef) -> (one writer, has indeed described, a coral-reef) -> one writer (5028ms)\nWhat are coral reefs?\tblue water\t1.333333333329\tWhat are coral reefs? -> $x: (coral reef, do, $x) -> (coral reef fishes, are doing out in, blue water) -> blue water (5028ms)\nWhat are coral reefs?\textinction\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are headed for, extinction) -> extinction (5097ms)\nWhat are coral reefs?\ta young fish\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, can be dangerous places for, a young fish) -> a young fish (5045ms)\nWhat are coral reefs?\tScientists\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (Scientists, will do to, coral reefs) -> Scientists (5130ms)\nWhat are coral reefs?\tplankton\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are good places for, plankton) -> plankton (5114ms)\nWhat are coral reefs?\tfurther monitoring\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (These coral reefs, are critical areas for, further monitoring) -> further monitoring (5097ms)\nWhat are coral reefs?\tSCUBA diving or snorkeling\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (a coral reef, is ideal for, SCUBA diving or snorkeling) -> SCUBA diving or snorkeling (5113ms)\nWhat are coral reefs?\tlandreforms\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is worth a visit for, landreforms) -> landreforms (5097ms)\nWhat are coral reefs?\tdifferent stages\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, may be essential for, different stages) -> different stages (5147ms)\nWhat are coral reefs?\ttourists\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (?Coral reefs, are a major attraction for, tourists) -> tourists (5130ms)\nWhat are coral reefs?\tHawaii\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral Reefs, are an important resource for, Hawaii) -> Hawaii (5147ms)\nWhat are coral reefs?\tscuba diving and snorkeling\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (The coral reefs, are ideal for, scuba diving and snorkeling) -> scuba diving and snorkeling (5130ms)\nWhat are coral reefs?\thundreds\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is critical for, hundreds) -> hundreds (5130ms)\nWhat are coral reefs?\tland-reforms\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is worth a visit for, land-reforms) -> land-reforms (5079ms)\nWhat are coral reefs?\ttop\t1.333333333328\tWhat are coral reefs? -> $x: ($x, produce, coral reef) -> (top, produces, the coral reef) -> top (5079ms)\nWhat are coral reefs?\tmore cloud seeding substances\t1.333333333328\tWhat are coral reefs? -> $x: ($x, produce, coral reef) -> (more cloud seeding substances, are produced by, coral reefs) -> more cloud seeding substances (5130ms)\nWhat are coral reefs?\tIsrael\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (Israel, are doing jointly to restore, the coral reef) -> Israel (5130ms)\nWhat are coral reefs?\tsnorkelling and scuba diving\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are ideal for, snorkelling and scuba diving) -> snorkelling and scuba diving (5079ms)\nWhat are coral reefs?\tlong walks\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are ideal for, long walks) -> long walks (5028ms)\nWhat are coral reefs?\tGMI\t1.333333333328\tWhat are coral reefs? -> $x: ($x, produce, coral reef) -> (GMI, produced, a coral reef assessment report) -> GMI (5062ms)\nWhat are coral reefs?\textinction worldwide\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are headed for, extinction worldwide) -> extinction worldwide (5114ms)\nWhat are coral reefs?\tswimming\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are preferred for, swimming) -> swimming (5147ms)\nWhat are coral reefs?\tscuba diving\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are perfect for, scuba diving) -> scuba diving (5079ms)\nWhat are coral reefs?\tthe health\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is a sensitive barometer for, the health) -> the health (5097ms)\nWhat are coral reefs?\tactivities\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are popular sites for, activities) -> activities (5045ms)\nWhat are coral reefs?\tcarbonates\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (carbonates, does happen on, coral reefs) -> carbonates (5097ms)\nWhat are coral reefs?\tSeychelles\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (?Coral reefs, are extremely important for, Seychelles) -> Seychelles (5028ms)\nWhat are coral reefs?\ta former actor\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (a former actor, wanted to do something to help, coral reefs) -> a former actor (5045ms)\nWhat are coral reefs?\tThe program\t1.333333333328\tWhat are coral reefs? -> $x: ($x, produce, coral reef) -> (The program, has also produced a video on, coral reef protection) -> The program (5130ms)\nWhat are coral reefs?\tthe live fish industry\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is cyanide fishing for, the live fish industry) -> the live fish industry (5113ms)\nWhat are coral reefs?\tthe Sultan Park\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is a time for, the Sultan Park) -> the Sultan Park (5130ms)\nWhat are coral reefs?\tland reforms\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is worth a visit for, land reforms) -> land reforms (5045ms)\nWhat are coral reefs?\tsurvival\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are facing an uphill battle for, survival) -> survival (5097ms)\nWhat are coral reefs?\t250 million years\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, have been around for, 250 million years) -> 250 million years (5062ms)\nWhat are coral reefs?\tbiodiversity\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are epicenters for, biodiversity) -> biodiversity (5097ms)\nWhat are coral reefs?\tvolunteers\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (volunteers, did an assessment of, the coral reef) -> volunteers (5147ms)\nWhat are coral reefs?\tfisheries\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are valuable economic resources for, fisheries) -> fisheries (5130ms)\nWhat are coral reefs?\t200 types\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (200 types, much is done to protect, the existing coral reefs) -> 200 types (5062ms)\nWhat are coral reefs?\ttourism and fishing industries\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are critical for, tourism and fishing industries) -> tourism and fishing industries (5147ms)\nWhat are coral reefs?\tpublication\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral Reefs, is slated for, publication) -> publication (5147ms)\nWhat are coral reefs?\tthe diversity\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are renowned for, the diversity) -> the diversity (5079ms)\nWhat are coral reefs?\tpharmaceutical breakthroughs\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are being studied for, pharmaceutical breakthroughs) -> pharmaceutical breakthroughs (5062ms)\nWhat are coral reefs?\tan enormous variety\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are vital habitats for, an enormous variety) -> an enormous variety (5114ms)\nWhat are coral reefs?\tlife\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (life, do, coral reefs) -> life (5062ms)\nWhat are coral reefs?\trock\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, had been mined for, rock) -> rock (5130ms)\nWhat are coral reefs?\tdivers\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are an underwater paradise for, divers) -> divers (5114ms)\nWhat are coral reefs?\t150 years\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, have been known for over, 150 years) -> 150 years (5147ms)\nWhat are coral reefs?\tover 500 million years\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been around for, over 500 million years) -> over 500 million years (5062ms)\nWhat are coral reefs?\tmillion\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been around for, million) -> million (5062ms)\nWhat are coral reefs?\tsuch a long time\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (the coral reef, was above water for, such a long time) -> such a long time (5028ms)\nWhat are coral reefs?\tSulawesi\t1.333333333328\tWhat are coral reefs? -> $x: ($x, define, coral reef) -> (Sulawesi, is defined by, spectacular coral reefs) -> Sulawesi (5079ms)\nWhat are coral reefs?\tmillions\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are a food source for, millions) -> millions (5097ms)\nWhat are coral reefs?\tthousands of years\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (a coral reef, had been around for, thousands of years) -> thousands of years (5130ms)\nWhat are coral reefs?\tmillion of years\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been around for, million of years) -> million of years (5062ms)\nWhat are coral reefs?\tvisibility\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (The coral reefs, are clear for, visibility) -> visibility (5045ms)\nWhat are coral reefs?\tDamage\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (Damage, has been done to, coral reefs) -> Damage (5079ms)\nWhat are coral reefs?\tdifferent uses\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reef habitats, have been zoned for, different uses) -> different uses (5045ms)\nWhat are coral reefs?\tmore information\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (more information, does, a coral reef form) -> more information (5114ms)\nWhat are coral reefs?\tdamage\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (damage, is being done to, the coral reefs) -> damage (5130ms)\nWhat are coral reefs?\tmarine biodiversity\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are refuges for, marine biodiversity) -> marine biodiversity (5079ms)\nWhat are coral reefs?\t5 sax\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral Reef, is arranged for, 5 sax) -> 5 sax (5062ms)\nWhat are coral reefs?\tthe immense biodiversity\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are important for, the immense biodiversity) -> the immense biodiversity (5130ms)\nWhat are coral reefs?\tmedical research\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are used for, medical research) -> medical research (5028ms)\nWhat are coral reefs?\t7 years\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (a soft coral reef, has been running for, 7 years) -> 7 years (5045ms)\nWhat are coral reefs?\tthe Tsunami\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (the Tsunami, had done to, the coral reefs) -> the Tsunami (5079ms)\nWhat are coral reefs?\ta coral predator\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (a coral predator, can do serious harm to, coral reefs) -> a coral predator (5114ms)\nWhat are coral reefs?\treef fishing\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (reef fishing, is done around, the coral reef) -> reef fishing (5062ms)\nWhat are coral reefs?\tdiving\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is great for, diving) -> diving (5130ms)\nWhat are coral reefs?\tReef fishing\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (Reef fishing, does n?t have to mean, ?coral reef?) -> Reef fishing (5062ms)\nWhat are coral reefs?\tthe existence\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are the life support system for, the existence) -> the existence (5147ms)\nWhat are coral reefs?\toutdoor activities\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are readily accessible for, outdoor activities) -> outdoor activities (5130ms)\nWhat are coral reefs?\tsnorkeling and diving\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are excellent for, snorkeling and diving) -> snorkeling and diving (5114ms)\nWhat are coral reefs?\tlocal livelihoods\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (these coral reefs, are essential for, local livelihoods) -> local livelihoods (5062ms)\nWhat are coral reefs?\tover 400 million years\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been on the planet for, over 400 million years) -> over 400 million years (5045ms)\nWhat are coral reefs?\tsunscreens\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (sunscreens, have been doing damage to, the coral reef) -> sunscreens (5114ms)\nWhat are coral reefs?\tmuch research\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (much research, has been done on, coral reefs) -> much research (5079ms)\nWhat are coral reefs?\tseahorses\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are a natural habitat for, seahorses) -> seahorses (5114ms)\nWhat are coral reefs?\ttourism\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are lures for, tourism) -> tourism (5147ms)\nWhat are coral reefs?\tsea turtles\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are an important food source for, sea turtles) -> sea turtles (5079ms)\nWhat are coral reefs?\t3 kilometers\t1.333333333328\tWhat are coral reefs? -> $x: ($x, characterize, coral reef) -> (3 kilometers, is characterized by, its spendid coral reefs) -> 3 kilometers (5114ms)\nWhat are coral reefs?\ta general transition\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (natural coral reefs, has been blamed for, a general transition) -> a general transition (5045ms)\nWhat are coral reefs?\tstudents\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (students, do to help, coral reefs) -> students (5079ms)\nWhat are coral reefs?\tan interpretive sign\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (a coral reef painting, was used for, an interpretive sign) -> an interpretive sign (5028ms)\nWhat are coral reefs?\tcruise ships\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (cruise ships, often does significant damage to, coral reefs) -> cruise ships (5062ms)\nWhat are coral reefs?\tsnorkellers\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is great for, snorkellers) -> snorkellers (5114ms)\nWhat are coral reefs?\teach day\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are planned for, each day) -> each day (5097ms)\nWhat are coral reefs?\t500 million years\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been on earth for, 500 million years) -> 500 million years (5114ms)\nWhat are coral reefs?\tsea grasses\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (sea grasses, do in, a coral reef) -> sea grasses (5080ms)\nWhat are coral reefs?\tUQ\t1.333333333328\tWhat are coral reefs? -> $x: ($x, produce, coral reef) -> (UQ, has just produced, a new book ?Coral Reefs) -> UQ (5130ms)\nWhat are coral reefs?\tthe Expedition\t1.333333333328\tWhat are coral reefs? -> $x: ($x, characterize, coral reef) -> (the Expedition, characterize, remote coral reefs) -> the Expedition (5045ms)\nWhat are coral reefs?\trenovation\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral Reef, is closed for, renovation) -> renovation (5114ms)\nWhat are coral reefs?\tlocal economies and tourism\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are so important for, local economies and tourism) -> local economies and tourism (5028ms)\nWhat are coral reefs?\tfour endangered species\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is a refuge for, four endangered species) -> four endangered species (5114ms)\nWhat are coral reefs?\tcrystal\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Australias  Coral Sea reefs, are renowned for, crystal) -> crystal (5062ms)\nWhat are coral reefs?\tout\t1.333333333328\tWhat are coral reefs? -> $x: ($x, do, coral reef) -> (out, is being done to mitigate, coral reef loss) -> out (5097ms)\nWhat are coral reefs?\tvarious species\t1.333333333328\tWhat are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are a habitat for, various species) -> various species (5062ms)\nWhat are coral reefs?\tthe natural conditions\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the natural conditions, found on, coral reefs) -> the natural conditions (5241ms)\nWhat are coral reefs?\tthe marine life\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the marine life, found on, coral reefs) -> the marine life (5210ms)\nWhat are coral reefs?\tFire corals\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Fire corals, are found on, coral reefs) -> Fire corals (5210ms)\nWhat are coral reefs?\ttrochus\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (trochus, are found on, coral reefs) -> trochus (5195ms)\nWhat are coral reefs?\ta novice\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (a novice, can create, a beautiful coral reef) -> a novice (5163ms)\nWhat are coral reefs?\tthe Caribbean\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (the Caribbean, create perfect conditions for, coral reefs) -> the Caribbean (5195ms)\nWhat are coral reefs?\tthe sand\t1.222222222218\tWhat are coral reefs? -> $x: ($x, happen to, coral reef) -> (the sand, is happening to, our coral reefs) -> the sand (5179ms)\nWhat are coral reefs?\tThe Caribbean spiny lobster\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (The Caribbean spiny lobster, is found on, coral reefs) -> The Caribbean spiny lobster (5241ms)\nWhat are coral reefs?\ta good dive\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (a good dive, may find, coral reefs) -> a good dive (5163ms)\nWhat are coral reefs?\tQueen angelfish\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Queen angelfish, are found on, coral reefs) -> Queen angelfish (5179ms)\nWhat are coral reefs?\tthe mouth.It\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the mouth.It, can be found living on, coral reefs) -> the mouth.It (5210ms)\nWhat are coral reefs?\twartime\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (wartime, has created, many artificial coral reefs) -> wartime (5226ms)\nWhat are coral reefs?\treef biologists\t1.222222222218\tWhat are coral reefs? -> $x: ($x, refer, coral reef) -> (reef biologists, continually refer to, ?the coral reef crisis) -> reef biologists (5163ms)\nWhat are coral reefs?\tthe species\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the species, found on, coral reefs) -> the species (5210ms)\nWhat are coral reefs?\tGod\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (God, create, coral reefs) -> God (5241ms)\nWhat are coral reefs?\tindividual polyps\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (individual polyps, create, a coral reef) -> individual polyps (5256ms)\nWhat are coral reefs?\tCoral attaches\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (Coral attaches, then grows to create, a coral reef) -> Coral attaches (5179ms)\nWhat are coral reefs?\tthe genus Labroides\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the genus Labroides, found on, coral reefs) -> the genus Labroides (5147ms)\nWhat are coral reefs?\twe?ll drift\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (we?ll drift, find, coral reefs) -> we?ll drift (5195ms)\nWhat are coral reefs?\tSea cucumbers\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Sea cucumbers, can be easily found on, coral reefs) -> Sea cucumbers (5210ms)\nWhat are coral reefs?\ttime\t1.222222222218\tWhat are coral reefs? -> $x: ($x, happen to, coral reef) -> (time, happens to, the coral reefs) -> time (5195ms)\nWhat are coral reefs?\tbutterflyfishes\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (butterflyfishes, are found only on, coral reefs) -> butterflyfishes (5163ms)\nWhat are coral reefs?\tcommon marine organisms\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (common marine organisms, found on, coral reefs) -> common marine organisms (5226ms)\nWhat are coral reefs?\tthe most unusual fishes\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the most unusual fishes, found on, coral reefs) -> the most unusual fishes (5195ms)\nWhat are coral reefs?\ta gelatinous lump\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (a gelatinous lump, ordinarily found grazing on, coral reefs) -> a gelatinous lump (5195ms)\nWhat are coral reefs?\tcorals\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (corals, found on, coral reefs) -> corals (5210ms)\nWhat are coral reefs?\tcolonies\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (colonies, create the framework of, the coral reef) -> colonies (5179ms)\nWhat are coral reefs?\tthe most beautiful fishes\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the most beautiful fishes, found on, coral reefs) -> the most beautiful fishes (5195ms)\nWhat are coral reefs?\tcoral polyps\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (coral polyps, are found on, coral reefs) -> coral polyps (5210ms)\nWhat are coral reefs?\ttropical marine fishes\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (tropical marine fishes, found on, coral reefs) -> tropical marine fishes (5241ms)\nWhat are coral reefs?\twetlands\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (wetlands, found adjacent to, coral reefs) -> wetlands (5147ms)\nWhat are coral reefs?\tThe Nassau Grouper\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (The Nassau Grouper, is found on, coral reef) -> The Nassau Grouper (5195ms)\nWhat are coral reefs?\tThe bluestreak cleaner wrasse\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (The bluestreak cleaner wrasse, is found on, coral reefs) -> The bluestreak cleaner wrasse (5179ms)\nWhat are coral reefs?\tNatural CO2 seeps\t1.222222222218\tWhat are coral reefs? -> $x: ($x, happen to, coral reef) -> (Natural CO2 seeps, could happen to, Coral Reefs) -> Natural CO2 seeps (5163ms)\nWhat are coral reefs?\tFrench angelfish\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (French angelfish, are found on, coral reefs) -> French angelfish (5163ms)\nWhat are coral reefs?\tSnorkelers\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Snorkelers, find, coral reefs) -> Snorkelers (5179ms)\nWhat are coral reefs?\twater fish\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (water fish, found on, coral reefs) -> water fish (5226ms)\nWhat are coral reefs?\tVast seagrass meadows\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Vast seagrass meadows, are often found between, coral reefs) -> Vast seagrass meadows (5163ms)\nWhat are coral reefs?\thair algae\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (hair algae, are also commonly found on, coral reefs) -> hair algae (5226ms)\nWhat are coral reefs?\tSiren rocks\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Siren rocks, are often found near, coral reefs) -> Siren rocks (5179ms)\nWhat are coral reefs?\tThe water\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (The water, found at, corals reefs) -> The water (5163ms)\nWhat are coral reefs?\tAn eight-year research project\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (An eight-year research project, has found, coral reef) -> An eight-year research project (5241ms)\nWhat are coral reefs?\tmanagers\t1.222222222218\tWhat are coral reefs? -> $x: ($x, happen to, coral reef) -> (managers, happened to, their coral reefs) -> managers (5163ms)\nWhat are coral reefs?\tobviously high species diversity\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (obviously high species diversity, found on, coral reefs) -> obviously high species diversity (5226ms)\nWhat are coral reefs?\tThe reefs\t1.222222222218\tWhat are coral reefs? -> $x: ($x, refer, coral reef) -> (The reefs, are referring to as, non-reef building corals) -> The reefs (5163ms)\nWhat are coral reefs?\tthe marine habitats\t1.222222222218\tWhat are coral reefs? -> $x: ($x, refer, coral reef) -> (the marine habitats, will be referred to in, the lab-coral reef) -> the marine habitats (5179ms)\nWhat are coral reefs?\tAdventure\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (Adventure, create, a coral reef) -> Adventure (5179ms)\nWhat are coral reefs?\tYucatan\t1.222222222218\tWhat are coral reefs? -> $x: ($x, happen to, coral reef) -> (Yucatan, happens to have, the second longest coral reef) -> Yucatan (5226ms)\nWhat are coral reefs?\tThe study\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (The study, found, coral reefs) -> The study (5195ms)\nWhat are coral reefs?\tthe world?s oceans\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the world?s oceans, are primarily found around, coral reefs) -> the world?s oceans (5241ms)\nWhat are coral reefs?\tA 2006 evaluation\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (A 2006 evaluation, found, our coral reefs) -> A 2006 evaluation (5210ms)\nWhat are coral reefs?\tRecent studies\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Recent studies, have also found, coral reefs) -> Recent studies (5210ms)\nWhat are coral reefs?\tthe second section\t1.222222222218\tWhat are coral reefs? -> $x: ($x, deal with, coral reef) -> (the second section, deals with, Coral Reefs) -> the second section (5226ms)\nWhat are coral reefs?\tFiji\t1.222222222218\tWhat are coral reefs? -> $x: ($x, refer, coral reef) -> (Fiji, is often referred to as, the ?soft coral reef capital) -> Fiji (5147ms)\nWhat are coral reefs?\tthe predatory fish and sharks\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the predatory fish and sharks, found, patrolling coral reefs) -> the predatory fish and sharks (5147ms)\nWhat are coral reefs?\tThe ship wreck\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (The ship wreck, has created, new coral reefs) -> The ship wreck (5241ms)\nWhat are coral reefs?\tLagoons\t1.222222222218\tWhat are coral reefs? -> $x: ($x, create, coral reef) -> (Lagoons, are created by, coral reefs) -> Lagoons (5163ms)\nWhat are coral reefs?\tthe second most common invertebrate\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the second most common invertebrate, found on, coral reefs) -> the second most common invertebrate (5210ms)\nWhat are coral reefs?\tthe Yucatan Peninsula\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the Yucatan Peninsula, you?ll find, coral reefs) -> the Yucatan Peninsula (5163ms)\nWhat are coral reefs?\tthe natural shimmering effect\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the natural shimmering effect, found on, coral reefs) -> the natural shimmering effect (5163ms)\nWhat are coral reefs?\tAlexander\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Alexander, found the question of, coral reefs) -> Alexander (5241ms)\nWhat are coral reefs?\tthe hotels resident tour rep\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the hotels resident tour rep, even found, coral reefs) -> the hotels resident tour rep (5179ms)\nWhat are coral reefs?\tthe west coast\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the west coast, find, stunning coral reefs) -> the west coast (5241ms)\nWhat are coral reefs?\tscuba divers\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (scuba divers, will find living, coral reefs) -> scuba divers (5256ms)\nWhat are coral reefs?\tthe word\t1.222222222218\tWhat are coral reefs? -> $x: ($x, happen to, coral reef) -> (the word, is happening to, the coral reefs) -> the word (5163ms)\nWhat are coral reefs?\tthe biggest bony fishes\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the biggest bony fishes, found on, coral reefs) -> the biggest bony fishes (5179ms)\nWhat are coral reefs?\tPorcupine fish\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (Porcupine fish, are usually found near, coral reefs) -> Porcupine fish (5147ms)\nWhat are coral reefs?\tcolorful and fascinating organisms\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (colorful and fascinating organisms, found on, coral reefs) -> colorful and fascinating organisms (5163ms)\nWhat are coral reefs?\tthe algae\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (the algae, often found on, coral reefs) -> the algae (5226ms)\nWhat are coral reefs?\tcleaner wrasse\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (cleaner wrasse, found on, coral reefs) -> cleaner wrasse (5226ms)\nWhat are coral reefs?\tThe giant clam\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (The giant clam, is found on, coral reefs) -> The giant clam (5179ms)\nWhat are coral reefs?\tfish families\t1.222222222218\tWhat are coral reefs? -> $x: ($x, found, coral reef) -> (fish families, found on, coral reefs) -> fish families (5195ms)\nWhat are coral reefs?\tA mesoecosystem\t1.222222222218\tWhat are coral reefs? -> $x: ($x, refer, coral reef) -> (A mesoecosystem, could refer to, the coral reef) -> A mesoecosystem (5147ms)\nWhat are coral reefs?\tthe entrance\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the entrance, are, coral reefs) -> the entrance (5487ms)\nWhat are coral reefs?\tmodern giant clams\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (modern giant clams, are found in, modern coral reefs) -> modern giant clams (5516ms)\nWhat are coral reefs?\tThe giant clams\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (The giant clams, are native to, the shallow coral reefs) -> The giant clams (5517ms)\nWhat are coral reefs?\tExplosions\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Explosions, are particularly harmful to, coral reefs) -> Explosions (5387ms)\nWhat are coral reefs?\tBiorock ? methods\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Biorock ? methods, can restore damaged, coral reefs) -> Biorock ? methods (5554ms)\nWhat are coral reefs?\tnon-climate-change\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (non-climate-change, can impact, coral reefs) -> non-climate-change (5477ms)\nWhat are coral reefs?\t?aquanauts\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (?aquanauts, is working to protect, coral reefs) -> ?aquanauts (5256ms)\nWhat are coral reefs?\tthe storms\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the storms, are an important force in, coral reef evolution) -> the storms (5526ms)\nWhat are coral reefs?\tOil-spill clean-up agents\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Oil-spill clean-up agents, are a threat to, coral reefs) -> Oil-spill clean-up agents (5572ms)\nWhat are coral reefs?\tBarbados\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Barbados, is largely surrounded by, coral reefs) -> Barbados (5545ms)\nWhat are coral reefs?\texpertise\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (expertise, are, coral reefs) -> expertise (5401ms)\nWhat are coral reefs?\tthe Caribbean Sea\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the Caribbean Sea, is home to, coral reefs) -> the Caribbean Sea (5317ms)\nWhat are coral reefs?\tThe problem\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The problem, is, corals reefs) -> The problem (5526ms)\nWhat are coral reefs?\twater temperature\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (water temperature, can erode, coral reefs) -> water temperature (5517ms)\nWhat are coral reefs?\tBlue\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Blue, is found in, the coral reefs) -> Blue (5373ms)\nWhat are coral reefs?\teach island\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (each island, is surrounded by, coral reefs) -> each island (5317ms)\nWhat are coral reefs?\ta diver\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (a diver, can dive on, a beautiful coral reef) -> a diver (5401ms)\nWhat are coral reefs?\tswimmers and snorkelers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (swimmers and snorkelers, can explore, fabulous coral reefs) -> swimmers and snorkelers (5487ms)\nWhat are coral reefs?\tBali\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Bali, is surrounded by, coral reefs) -> Bali (5317ms)\nWhat are coral reefs?\tReef Relief\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Reef Relief, is dedicated to preserving, coral reefs) -> Reef Relief (5517ms)\nWhat are coral reefs?\ta calm bay\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (a calm bay, are submerging to, the coral reef) -> a calm bay (5271ms)\nWhat are coral reefs?\tThe Anegada\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (The Anegada, is simply an opening in, the coral reef) -> The Anegada (5345ms)\nWhat are coral reefs?\tscientists\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (scientists, was published in, the journal Coral Reefs) -> scientists (5454ms)\nWhat are coral reefs?\tforams\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (forams, proved to be a difficult time for, coral reefs) -> forams (5563ms)\nWhat are coral reefs?\tChemical dispersants\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Chemical dispersants, are very toxic to, coral reefs) -> Chemical dispersants (5441ms)\nWhat are coral reefs?\thumans\t1.222222222217\tWhat are coral reefs? -> $x: ($x, influence, coral reef) -> (humans, influenced, coral reef health) -> humans (5331ms)\nWhat are coral reefs?\tThe park\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (The park, consists of, 80 km2 coral reefs) -> The park (5271ms)\nWhat are coral reefs?\ttop right\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (top right, are, Coral reefs) -> top right (5360ms)\nWhat are coral reefs?\ta million\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (A coral reef, is about, a million) -> a million (5345ms)\nWhat are coral reefs?\tswimmers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (swimmers, can investigate, the coral reef 's) -> swimmers (5345ms)\nWhat are coral reefs?\ta professor\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (a professor, is bleaching in, local coral reefs) -> a professor (5507ms)\nWhat are coral reefs?\tWarming temperatures\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Warming temperatures, can spell disaster for, coral reefs) -> Warming temperatures (5487ms)\nWhat are coral reefs?\tthe rate\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the rate, are disappearing, coral reefs) -> the rate (5373ms)\nWhat are coral reefs?\tsharks\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (sharks, are grouped in, the categories Coral Reefs) -> sharks (5477ms)\nWhat are coral reefs?\tWikipedia\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Wikipedia, is going to be, the coral reef encyclopedia) -> Wikipedia (5286ms)\nWhat are coral reefs?\tThe beach\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The beach, is protected by, coral reefs) -> The beach (5467ms)\nWhat are coral reefs?\tsnorkeling and fishing\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (snorkeling and fishing, can also damage, coral reefs) -> snorkeling and fishing (5387ms)\nWhat are coral reefs?\tSergeant majors\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Sergeant majors, are found in, coral reefs and seagrass beds) -> Sergeant majors (5467ms)\nWhat are coral reefs?\tfishing\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (fishing, are the best way to preserve, coral reefs) -> fishing (5387ms)\nWhat are coral reefs?\t60.94\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (60.94, were, coral reef) -> 60.94 (5526ms)\nWhat are coral reefs?\tthe chemicals\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the chemicals, are also killing, coral reefs) -> the chemicals (5467ms)\nWhat are coral reefs?\tthe most amazing sights\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the most amazing sights, is, coral reefs) -> the most amazing sights (5428ms)\nWhat are coral reefs?\tCarbon dioxide\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Carbon dioxide, can affect, coral reefs) -> Carbon dioxide (5345ms)\nWhat are coral reefs?\tMagalawa Island\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Magalawa Island, are, coral reefs) -> Magalawa Island (5467ms)\nWhat are coral reefs?\t32 ]\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (32 ], was thought to be, ?coral reef?) -> 32 ] (5373ms)\nWhat are coral reefs?\tFlora Major ecosystem types\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Flora Major ecosystem types, are, Coral reefs) -> Flora Major ecosystem types (5554ms)\nWhat are coral reefs?\t300m long and 100m wide ,\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (The coral reef, is about, 300m long and 100m wide ,) -> 300m long and 100m wide , (5454ms)\nWhat are coral reefs?\tThe survey\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (The survey, has been expanded to, coral reefs) -> The survey (5301ms)\nWhat are coral reefs?\tthe divers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the divers, are experts in, coral reef ecologist) -> the divers (5554ms)\nWhat are coral reefs?\tPopulation densities\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Population densities, are low in, all coral reef areas) -> Population densities (5317ms)\nWhat are coral reefs?\tthe fine\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the fine, has been allocated to, coral reef restoration projects) -> the fine (5428ms)\nWhat are coral reefs?\t50 yards\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (A coral reef, is about, 50 yards) -> 50 yards (5554ms)\nWhat are coral reefs?\taccess\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (access, is limited to protect, coral reefs) -> access (5580ms)\nWhat are coral reefs?\tThe runoff\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (The runoff, is harmful to, coral reefs) -> The runoff (5526ms)\nWhat are coral reefs?\tGrand Cayman\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Grand Cayman, is surrounded by, coral reef) -> Grand Cayman (5317ms)\nWhat are coral reefs?\tlarge spatial scales\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (large spatial scales, is, coral reef) -> large spatial scales (5467ms)\nWhat are coral reefs?\tan important factor\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (an important factor, is influencing worldwide, coral reefs) -> an important factor (5580ms)\nWhat are coral reefs?\tthe numbers and types\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (coral reefs, is known about, the numbers and types) -> the numbers and types (5545ms)\nWhat are coral reefs?\tthe Great Barrier Reef Marine Park\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the Great Barrier Reef Marine Park, is, coral reef) -> the Great Barrier Reef Marine Park (5554ms)\nWhat are coral reefs?\tthe voyage\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (the voyage, can be included examination of, coral reefs) -> the voyage (5554ms)\nWhat are coral reefs?\tAriel\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Ariel, can swim through, a coral reef) -> Ariel (5401ms)\nWhat are coral reefs?\tHumans\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Humans, can alter, coral reefs) -> Humans (5271ms)\nWhat are coral reefs?\tthe study\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the study, was published in, the journal Coral Reefs) -> the study (5441ms)\nWhat are coral reefs?\tOffshore\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Offshore, are, coral reefs) -> Offshore (5572ms)\nWhat are coral reefs?\tacidification\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (acidification, may be a threat to, coral reefs) -> acidification (5545ms)\nWhat are coral reefs?\tSponges\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Sponges, can harm, reef corals) -> Sponges (5517ms)\nWhat are coral reefs?\tthe oceanic habitats\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the oceanic habitats, are, coral reefs) -> the oceanic habitats (5563ms)\nWhat are coral reefs?\tBrain corals\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Brain corals, are found in, warm-water coral reefs) -> Brain corals (5301ms)\nWhat are coral reefs?\tthe forests\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the forests, are vitally important to, coral reefs) -> the forests (5467ms)\nWhat are coral reefs?\tA sea turtle\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (A sea turtle, are commonly found swimming in, the coral reefs) -> A sea turtle (5497ms)\nWhat are coral reefs?\therbivorous fishes\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (herbivorous fishes, may be critical to restoring, coral reefs) -> herbivorous fishes (5497ms)\nWhat are coral reefs?\t300 meters\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (The coral reef, is located about, 300 meters) -> 300 meters (5414ms)\nWhat are coral reefs?\tLet?s\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Let?s, Are, Coral Reefs) -> Let?s (5257ms)\nWhat are coral reefs?\tTartar\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Tartar, is shaped similarly to, coral reef) -> Tartar (5317ms)\nWhat are coral reefs?\t4200 years\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (The oldest coral reef, is about, 4200 years) -> 4200 years (5467ms)\nWhat are coral reefs?\t1914\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (1914, was, Coral Reef) -> 1914 (5580ms)\nWhat are coral reefs?\tThe islet\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (The islet, consists of, an old calcareous coral reef) -> The islet (5487ms)\nWhat are coral reefs?\treef balls\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (reef balls, are used to help restore, coral reefs) -> reef balls (5401ms)\nWhat are coral reefs?\tcyanide\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (cyanide, There can be big money in, coral-reef cuisine) -> cyanide (5387ms)\nWhat are coral reefs?\tthe South Coast\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (the South Coast, mainly consists of, coral reefs) -> the South Coast (5454ms)\nWhat are coral reefs?\tEntrepreneurial areas\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Entrepreneurial areas, are similar to, coral reefs) -> Entrepreneurial areas (5331ms)\nWhat are coral reefs?\tSuch information\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Such information, is relatively rare in, coral reef areas) -> Such information (5414ms)\nWhat are coral reefs?\tOceanography\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Oceanography, is presently being applied to, coral reefs) -> Oceanography (5414ms)\nWhat are coral reefs?\tDredging\t1.222222222217\tWhat are coral reefs? -> $x: ($x, influence, coral reef) -> (Dredging, could have an influence on, coral reefs) -> Dredging (5286ms)\nWhat are coral reefs?\tThe Bahamas\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (The Bahamas, is known to offer worldly, coral reefs) -> The Bahamas (5507ms)\nWhat are coral reefs?\tIndividuals\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Individuals, are found in, algal and coral reefs) -> Individuals (5454ms)\nWhat are coral reefs?\tthe growing acidity\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the growing acidity, would be very likely to harm, coral reefs) -> the growing acidity (5517ms)\nWhat are coral reefs?\tbrowser bug\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (browser bug, Are, Coral Reefs) -> browser bug (5507ms)\nWhat are coral reefs?\tNOAA\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (NOAA, are, coral reefs) -> NOAA (5497ms)\nWhat are coral reefs?\tPink\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Pink, is a beautiful fish in, the coral reef Pink) -> Pink (5572ms)\nWhat are coral reefs?\torganic and artificial\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (organic and artificial, is blurred in, the electronic coral reef) -> organic and artificial (5487ms)\nWhat are coral reefs?\ta result Biorock technology\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (a result Biorock technology, can be used to keep, coral reefs) -> a result Biorock technology (5507ms)\nWhat are coral reefs?\tPacific Corals\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Pacific Corals, Can fish save, coral reefs) -> Pacific Corals (5373ms)\nWhat are coral reefs?\tSCUBA gear\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (SCUBA gear, was to, coral reef research) -> SCUBA gear (5535ms)\nWhat are coral reefs?\tAn island\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (An island, consisting of, a circular coral reef) -> An island (5286ms)\nWhat are coral reefs?\tMarine\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Marine, are key to saving, coral reefs) -> Marine (5467ms)\nWhat are coral reefs?\tVolume 1\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Volume 1, is, CORAL REEF) -> Volume 1 (5517ms)\nWhat are coral reefs?\tthe diving\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the diving, is in, the coral reef) -> the diving (5487ms)\nWhat are coral reefs?\tHurricanes\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Hurricanes, can help, coral reefs) -> Hurricanes (5536ms)\nWhat are coral reefs?\tExamples\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Examples, are, coral reefs) -> Examples (5360ms)\nWhat are coral reefs?\tDivers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Divers, can enjoy diverse attractions like, coral reefs) -> Divers (5301ms)\nWhat are coral reefs?\ttemperature\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (temperature, are global threats to, coral reefs) -> temperature (5256ms)\nWhat are coral reefs?\tPolynesian and Micronesian islands\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Polynesian and Micronesian islands, are, coral reefs) -> Polynesian and Micronesian islands (5256ms)\nWhat are coral reefs?\tHIV infections\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (HIV infections, can be linked back to, coral reefs) -> HIV infections (5487ms)\nWhat are coral reefs?\tCoral bleaching\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Coral bleaching, is an increasing threat to, coral reefs) -> Coral bleaching (5497ms)\nWhat are coral reefs?\tTimor\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (Timor, consist of raised, coral reefs and deposits) -> Timor (5526ms)\nWhat are coral reefs?\tcoral reef fisheries\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (coral reef fisheries, can affect, coral reef growth) -> coral reef fisheries (5441ms)\nWhat are coral reefs?\tthe aquarium trade\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (the aquarium trade, can seriously damage, Coral Reefs) -> the aquarium trade (5545ms)\nWhat are coral reefs?\thome\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (home, is, coral reefs) -> home (5360ms)\nWhat are coral reefs?\ta good amount\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (a good amount, are hiding in, the coral reefs) -> a good amount (5563ms)\nWhat are coral reefs?\tvisitors and locals\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (visitors and locals, can enjoy, the beautiful coral reefs) -> visitors and locals (5545ms)\nWhat are coral reefs?\tGlobal warming\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Global warming, is a major threat to, coral reefs) -> Global warming (5572ms)\nWhat are coral reefs?\tthe visitors\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (the visitors, can see, the coral reef) -> the visitors (5467ms)\nWhat are coral reefs?\tpassengers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (passengers, can view, a spectacular coral reef) -> passengers (5572ms)\nWhat are coral reefs?\tThe lagoon\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The lagoon, is surrounded by, coral reef) -> The lagoon (5477ms)\nWhat are coral reefs?\tthe sea stars\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the sea stars, are hiding in, the coral reef) -> the sea stars (5301ms)\nWhat are coral reefs?\tnutrients\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (nutrients, can harm, coral reef ecosystems) -> nutrients (5454ms)\nWhat are coral reefs?\topen-ocean regions\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (open-ocean regions, can also be seen above, coral reefs) -> open-ocean regions (5526ms)\nWhat are coral reefs?\tSnorkellers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Snorkellers, can explore, the coral reef event) -> Snorkellers (5387ms)\nWhat are coral reefs?\tan interconnected chain\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (an interconnected chain, is home to, coral reefs) -> an interconnected chain (5517ms)\nWhat are coral reefs?\tPermanent moorings\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Permanent moorings, have been established in, coral reef zones) -> Permanent moorings (5317ms)\nWhat are coral reefs?\t71.6\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (71.6, were, coral reef) -> 71.6 (5507ms)\nWhat are coral reefs?\tThe United States\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (The United States, is involved in, coral reef preservation) -> The United States (5345ms)\nWhat are coral reefs?\tThe Centers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (The Centers, are active in, coral reef restoration efforts) -> The Centers (5387ms)\nWhat are coral reefs?\tThe dive\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (The dive, consists of, wonderful , colorful coral-covered reefs) -> The dive (5331ms)\nWhat are coral reefs?\tThe seaweed\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (The seaweed, is very important in, the coral reef ecosystem) -> The seaweed (5401ms)\nWhat are coral reefs?\tDamas\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Damas, is found in, a coral reef) -> Damas (5497ms)\nWhat are coral reefs?\tthe water\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the water, is, coral reef) -> the water (5487ms)\nWhat are coral reefs?\tthe sea\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (the sea, can smother, coral reefs) -> the sea (5373ms)\nWhat are coral reefs?\tVisitors\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Visitors, can see, the coral reefs) -> Visitors (5360ms)\nWhat are coral reefs?\tEilat\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Eilat, is next to, coral reefs) -> Eilat (5317ms)\nWhat are coral reefs?\tPeat bogs\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Peat bogs, are similar to, coral reefs) -> Peat bogs (5441ms)\nWhat are coral reefs?\tmuch water\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (much water, is in, the coral reef exhibit) -> much water (5387ms)\nWhat are coral reefs?\tThe sandy beaches\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The sandy beaches, are fringed with, coral reefs) -> The sandy beaches (5373ms)\nWhat are coral reefs?\tbutterflyfish\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (butterflyfish, are a common sight in, healthy coral reefs) -> butterflyfish (5387ms)\nWhat are coral reefs?\tRodrigues\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Rodrigues, is entirely surrounded by, coral reefs) -> Rodrigues (5477ms)\nWhat are coral reefs?\tthe region\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the region, is currently deemed adequate to support, coral reefs) -> the region (5373ms)\nWhat are coral reefs?\tthe new technology\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the new technology, may be beneficial to, coral reefs) -> the new technology (5517ms)\nWhat are coral reefs?\t?Coral Reef Protection\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (?Coral Reef Protection, Are, Coral Reefs) -> ?Coral Reef Protection (5271ms)\nWhat are coral reefs?\tthe surrounding seas\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the surrounding seas, are rich in, beautiful coral reefs) -> the surrounding seas (5428ms)\nWhat are coral reefs?\t1/2 mile off-shore\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (The coral reef, is only about, 1/2 mile off-shore) -> 1/2 mile off-shore (5360ms)\nWhat are coral reefs?\ta sustainable wild harvest\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (a sustainable wild harvest, can defend, a coral reef) -> a sustainable wild harvest (5545ms)\nWhat are coral reefs?\tBleaching\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Bleaching, is a common phenomenon in, most coral reefs) -> Bleaching (5414ms)\nWhat are coral reefs?\tthe Mozambique Channel\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the Mozambique Channel, are home to, numerous coral reefs) -> the Mozambique Channel (5271ms)\nWhat are coral reefs?\tthe rain forests\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the rain forests, have been diving in, many coral reefs) -> the rain forests (5454ms)\nWhat are coral reefs?\tthe sea temperature\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (the sea temperature, can bleach, the coral reefs) -> the sea temperature (5517ms)\nWhat are coral reefs?\tHawksbills\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Hawksbills, are vulnerable to declining, coral reefs) -> Hawksbills (5526ms)\nWhat are coral reefs?\tanthropogenic activities\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (anthropogenic activities, are major threats to, coral reefs) -> anthropogenic activities (5331ms)\nWhat are coral reefs?\tone continent\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (one continent, can kill, coral reefs) -> one continent (5271ms)\nWhat are coral reefs?\tASTER\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (ASTER, can also map the distribution of, coral reefs) -> ASTER (5317ms)\nWhat are coral reefs?\t31 to 34 ppt\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (31 to 34 ppt, are conducive to, coral reef development) -> 31 to 34 ppt (5517ms)\nWhat are coral reefs?\tturn\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (turn, can lead to, coral reef ecosystem collapse) -> turn (5331ms)\nWhat are coral reefs?\tBiota !\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Biota !, is thought to be, the biggest coral reef) -> Biota ! (5428ms)\nWhat are coral reefs?\tthe photos\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the photos, has now been published in, the journal Coral Reefs) -> the photos (5536ms)\nWhat are coral reefs?\t700 sq km\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (the coral reef, is about, 700 sq km) -> 700 sq km (5467ms)\nWhat are coral reefs?\tthe globe\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the globe, are attracted to, its coral reefs) -> the globe (5572ms)\nWhat are coral reefs?\tThe topography\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (The topography, can consist of, coral reefs) -> The topography (5563ms)\nWhat are coral reefs?\tkelp forests\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (kelp forests, are analogous to, coral reefs) -> kelp forests (5360ms)\nWhat are coral reefs?\tone-quarter\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (Coral reefs, are the source of about, one-quarter) -> one-quarter (5441ms)\nWhat are coral reefs?\tOne shipwreck\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (One shipwreck, can devastate, a coral reef) -> One shipwreck (5373ms)\nWhat are coral reefs?\tthe research\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the research, is being conducted on, coral reefs) -> the research (5563ms)\nWhat are coral reefs?\tAn example\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (An example, is, coral reefs) -> An example (5477ms)\nWhat are coral reefs?\tscuba diving and fishing\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (scuba diving and fishing, can damage, coral reefs) -> scuba diving and fishing (5526ms)\nWhat are coral reefs?\tclimate change\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (climate change, is affecting, coral reefs) -> climate change (5286ms)\nWhat are coral reefs?\tThe colorway\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The colorway, is, coral reef) -> The colorway (5428ms)\nWhat are coral reefs?\tThe cubs\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (The cubs, can be found in, proximity of a coral reef) -> The cubs (5317ms)\nWhat are coral reefs?\tsnorkeling buffs\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (snorkeling buffs, can appreciate, the famed coral reefs) -> snorkeling buffs (5441ms)\nWhat are coral reefs?\tThe waters around islands\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The waters around islands, are surrounded by, coral reefs) -> The waters around islands (5497ms)\nWhat are coral reefs?\tthe Pacific Ocean\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the Pacific Ocean, there are many threats to, coral reefs) -> the Pacific Ocean (5545ms)\nWhat are coral reefs?\tthe coasts\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the coasts, are fringed with, coral reefs) -> the coasts (5572ms)\nWhat are coral reefs?\tthe local level\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the local level, is to preserve, coral reefs) -> the local level (5331ms)\nWhat are coral reefs?\tporcupinefish\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (porcupinefish, can be seen on, coral reefs) -> porcupinefish (5572ms)\nWhat are coral reefs?\tGerry\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Gerry, had been engaged in, a coral reef project) -> Gerry (5271ms)\nWhat are coral reefs?\tAnchors\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Anchors, can also destroy, coral reefs) -> Anchors (5414ms)\nWhat are coral reefs?\tThe waters\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (The waters, are rich in, coral reefs and crustaceans) -> The waters (5428ms)\nWhat are coral reefs?\textreme heat\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (extreme heat, is putting the worlds, coral reefs) -> extreme heat (5545ms)\nWhat are coral reefs?\tthe sea-anemones\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the sea-anemones, are found in, biodiversity-rich coral reefs) -> the sea-anemones (5373ms)\nWhat are coral reefs?\tThe magnificent turquoise lagoon\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The magnificent turquoise lagoon, is protected by, coral reef) -> The magnificent turquoise lagoon (5286ms)\nWhat are coral reefs?\tan all natural product\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (an all natural product, is found in, the Sango coral reefs) -> an all natural product (5331ms)\nWhat are coral reefs?\tThe rising development\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (The rising development, is also a threat to, coral reefs) -> The rising development (5467ms)\nWhat are coral reefs?\tThe caverns\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (The caverns, consist of, coral reef) -> The caverns (5563ms)\nWhat are coral reefs?\ta three-mile radius\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (a three-mile radius, are, coral reefs) -> a three-mile radius (5387ms)\nWhat are coral reefs?\tKiribati\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (Kiribati, consists of, 33 low-lying coral reefs and atolls) -> Kiribati (5345ms)\nWhat are coral reefs?\tpoison\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (poison, is a serious threat to, coral reefs) -> poison (5554ms)\nWhat are coral reefs?\tAtolls\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Atolls, are rings of, coral reefs) -> Atolls (5554ms)\nWhat are coral reefs?\tExperienced divers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Experienced divers, can explore, coral reefs and shipwrecks) -> Experienced divers (5535ms)\nWhat are coral reefs?\tManukan\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Manukan, are, coral reefs) -> Manukan (5401ms)\nWhat are coral reefs?\tWest part\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (West part, is, coral reef) -> West part (5345ms)\nWhat are coral reefs?\tthe Great Barrier Reef\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the Great Barrier Reef, are, coral reefs) -> the Great Barrier Reef (5535ms)\nWhat are coral reefs?\tThe four largest islands\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The four largest islands, are surrounded by, coral reefs) -> The four largest islands (5554ms)\nWhat are coral reefs?\tThe borders\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (The borders, are supposed to be, Arabian/Coral reef) -> The borders (5286ms)\nWhat are coral reefs?\t6,000 to 8,000 years\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (Most modern coral reefs, are about, 6,000 to 8,000 years) -> 6,000 to 8,000 years (5454ms)\nWhat are coral reefs?\tLarger tabulate corals\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Larger tabulate corals, are found in, coral-stromatoporoid reefs) -> Larger tabulate corals (5517ms)\nWhat are coral reefs?\tspecialisation\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (specialisation, is in, reef-building corals) -> specialisation (5301ms)\nWhat are coral reefs?\tthe broad crests\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the broad crests, are very important in, coral reef environments) -> the broad crests (5373ms)\nWhat are coral reefs?\tLa Aguja one\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (La Aguja one, can observe a great variety of, coral reefs) -> La Aguja one (5256ms)\nWhat are coral reefs?\t50 minutes\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (50 minutes, are, coral reefs) -> 50 minutes (5497ms)\nWhat are coral reefs?\tThe republic\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (The republic, consists of, two coral reefs) -> The republic (5580ms)\nWhat are coral reefs?\tlots of people\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (lots of people, are also trying to save, coral reefs) -> lots of people (5414ms)\nWhat are coral reefs?\tBleaching events\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Bleaching events, can be disastrous for, coral reef ecosystems) -> Bleaching events (5477ms)\nWhat are coral reefs?\tthe norm\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (the norm, can decimate, coral reefs) -> the norm (5454ms)\nWhat are coral reefs?\tnon-divers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (non-divers, can enjoy, coral reef snorkelling) -> non-divers (5572ms)\nWhat are coral reefs?\tthe island\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the island, is encircled by, coral reefs) -> the island (5526ms)\nWhat are coral reefs?\tThe warm waters\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (The warm waters, are home to, fascinating coral reefs) -> The warm waters (5526ms)\nWhat are coral reefs?\tThe most important habitats\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The most important habitats, are, coral reefs) -> The most important habitats (5256ms)\nWhat are coral reefs?\t45 minutes\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (a virgin coral reef, can be reached in about, 45 minutes) -> 45 minutes (5545ms)\nWhat are coral reefs?\tarticles\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (articles, are, coral reefs) -> articles (5331ms)\nWhat are coral reefs?\ta fish\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (a fish, has been published in, the journal Coral Reefs) -> a fish (5507ms)\nWhat are coral reefs?\twastewater\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (wastewater, can negatively impact, coral reef ecosystems) -> wastewater (5487ms)\nWhat are coral reefs?\tThe blacktip reef shark\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (The blacktip reef shark, is very common in, the coral reefs) -> The blacktip reef shark (5331ms)\nWhat are coral reefs?\tpreschoolers\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (preschoolers, can tour, a coral reef) -> preschoolers (5545ms)\nWhat are coral reefs?\tToo bad Johnny\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Too bad Johnny, is stuck in, the Coral Reef Grand) -> Too bad Johnny (5360ms)\nWhat are coral reefs?\tSea urchin research\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Sea urchin research, can apply to, coral reefs) -> Sea urchin research (5256ms)\nWhat are coral reefs?\tsea life\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (sea life, can be found in, the coral reefs) -> sea life (5536ms)\nWhat are coral reefs?\tToo many damsels\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Too many damsels, can be a bad thing for, coral reefs) -> Too many damsels (5563ms)\nWhat are coral reefs?\tLocal tours\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Local tours, are, coral reefs) -> Local tours (5345ms)\nWhat are coral reefs?\tNatural occurrences\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (Natural occurrences, can adversely impact, coral reefs) -> Natural occurrences (5428ms)\nWhat are coral reefs?\tWCS marine scientists\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (WCS marine scientists, are working to conserve, coral reefs) -> WCS marine scientists (5517ms)\nWhat are coral reefs?\t2001\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (2001, are, coral reefs) -> 2001 (5373ms)\nWhat are coral reefs?\trisk\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (risk, are, coral reefs) -> risk (5414ms)\nWhat are coral reefs?\twater chemistry\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (water chemistry, can damage, coral reefs) -> water chemistry (5286ms)\nWhat are coral reefs?\tisopods\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (isopods, are found in, coral reef aquaria) -> isopods (5454ms)\nWhat are coral reefs?\tthe nearby Sea Gardens\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the nearby Sea Gardens, are, coral reefs) -> the nearby Sea Gardens (5360ms)\nWhat are coral reefs?\tparrotfish and surgeonfish\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (parrotfish and surgeonfish, can only keep, coral reefs) -> parrotfish and surgeonfish (5554ms)\nWhat are coral reefs?\tHelicopters\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (Helicopters, were used to search, coral reefs) -> Helicopters (5286ms)\nWhat are coral reefs?\tA similar mechanism\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (A similar mechanism, can operate in, a coral reef) -> A similar mechanism (5414ms)\nWhat are coral reefs?\tlocal fishers and mosques\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (local fishers and mosques, were working to conserve, coral reefs) -> local fishers and mosques (5414ms)\nWhat are coral reefs?\tthe eastern coast\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the eastern coast, is home to, coral reefs) -> the eastern coast (5554ms)\nWhat are coral reefs?\tpreserving cultures\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (Preserving coral reefs, is about, preserving cultures) -> preserving cultures (5301ms)\nWhat are coral reefs?\tvisitors\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (visitors, can enjoy close-up encounters with, coral reefs) -> visitors (5428ms)\nWhat are coral reefs?\tNot all of St\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Not all of St, are actually, coral reefs) -> Not all of St (5467ms)\nWhat are coral reefs?\tCredits and References\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Credits and References, Are, Coral Reefs) -> Credits and References (5414ms)\nWhat are coral reefs?\tthe hills\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (the hills, are covered in, large coral reefs) -> the hills (5414ms)\nWhat are coral reefs?\tnew species\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (new species, are thought to be, coral reefs) -> new species (5536ms)\nWhat are coral reefs?\tthe topography\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the topography, are, coral reefs) -> the topography (5428ms)\nWhat are coral reefs?\tcyanide fishing\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (cyanide fishing, is to, the coral reefs) -> cyanide fishing (5331ms)\nWhat are coral reefs?\tthe series\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the series, was, Coral Reefs) -> the series (5477ms)\nWhat are coral reefs?\tmacroalgae\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (macroalgae, can suffocate, coral reefs) -> macroalgae (5477ms)\nWhat are coral reefs?\tsediment and 40.9\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (sediment and 40.9, were, coral reef) -> sediment and 40.9 (5271ms)\nWhat are coral reefs?\tparticular concern\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (particular concern, are, coral reefs) -> particular concern (5428ms)\nWhat are coral reefs?\tthe following questions\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (the following questions, are, Coral Reefs) -> the following questions (5441ms)\nWhat are coral reefs?\tThe myriad islands\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The myriad islands, are surrounded by, coral reefs) -> The myriad islands (5271ms)\nWhat are coral reefs?\tcultures\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (Preserving coral reefs, is about preserving, cultures) -> cultures (5286ms)\nWhat are coral reefs?\timproperly treated sewage\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (improperly treated sewage, can harm, coral reef ecosystems) -> improperly treated sewage (5554ms)\nWhat are coral reefs?\thuman activities\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (human activities, inland can damage, coral reefs) -> human activities (5563ms)\nWhat are coral reefs?\tescape gaps\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (escape gaps, are used in, coral reef trap fisheries) -> escape gaps (5554ms)\nWhat are coral reefs?\tThe rest\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (The rest, is, coral reef) -> The rest (5536ms)\nWhat are coral reefs?\tNew Caledonia\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (New Caledonia, is located in, the second biggest coral reef) -> New Caledonia (5387ms)\nWhat are coral reefs?\tlong term damages\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (long term damages, are expected to, coral reefs) -> long term damages (5401ms)\nWhat are coral reefs?\t5000 years\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (The coral reefs, are about, 5000 years) -> 5000 years (5256ms)\nWhat are coral reefs?\tThe place\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (The place, is good to view, coral reefs) -> The place (5414ms)\nWhat are coral reefs?\tCausey?s science background\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (Causey?s science background, is in, coral reef ecology) -> Causey?s science background (5477ms)\nWhat are coral reefs?\tOnly our structure\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Only our structure, is, coral reefs) -> Only our structure (5414ms)\nWhat are coral reefs?\tSabah\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (Sabah, consists of, 13 coral reefs) -> Sabah (5580ms)\nWhat are coral reefs?\tgrowth\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (growth, is seen in, coral reefs and crystals) -> growth (5526ms)\nWhat are coral reefs?\tparticular\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (particular, can be extremely abundant on, coral reefs) -> particular (5345ms)\nWhat are coral reefs?\t6 kilometers\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (coral reef, is about, 6 kilometers) -> 6 kilometers (5360ms)\nWhat are coral reefs?\tsediment\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (sediment, can wash over, coral reefs) -> sediment (5572ms)\nWhat are coral reefs?\tThe Grouper Moon talk\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be in, coral reef) -> (The Grouper Moon talk, is scheduled in, the Coral Reef session) -> The Grouper Moon talk (5387ms)\nWhat are coral reefs?\tthe contest\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (the contest, is sold to, Coral Reef) -> the contest (5387ms)\nWhat are coral reefs?\tphosphates\t1.222222222217\tWhat are coral reefs? -> $x: ($x, can, coral reef) -> (phosphates, can harm, coral reef habitats) -> phosphates (5517ms)\nWhat are coral reefs?\tMauritius\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Mauritius, is surrounded by, coral reefs) -> Mauritius (5507ms)\nWhat are coral reefs?\tMuch of the Barbados\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be be, coral reef) -> (Much of the Barbados, is surrounded by, coral reefs) -> Much of the Barbados (5286ms)\nWhat are coral reefs?\tfood security\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (Preserving coral reefs, is about, food security) -> food security (5487ms)\nWhat are coral reefs?\t10 %\t1.222222222217\tWhat are coral reefs? -> $x: (coral reef, be about, $x) -> (Coral reefs, are home to about, 10 %) -> 10 % (5428ms)\nWhat are coral reefs?\tunknown ?\t1.222222222217\tWhat are coral reefs? -> $x: ($x, be to, coral reef) -> (unknown ?, is also home to, rich coral reefs) -> unknown ? (5401ms)\nWhat are coral reefs?\ta 5-hectare islet\t1.222222222217\tWhat are coral reefs? -> $x: ($x, consist of, coral reef) -> (a 5-hectare islet, consisting of, an old calcareous coral reef) -> a 5-hectare islet (5401ms)\nWhat are coral reefs?\tDovedale\t1.111111111107\tWhat are coral reefs? -> $x: ($x, be use of, coral reef) -> (Dovedale, used to be parts of, active coral reefs) -> Dovedale (5580ms)\nWhat are coral reefs?\ta journalist\t1.111111111107\tWhat are coral reefs? -> $x: ($x, develop, coral reef) -> (a journalist, developed an appreciation for, coral reefs) -> a journalist (5580ms)\nWhat are coral reefs?\tatmospheric CO2\t1.111111111107\tWhat are coral reefs? -> $x: ($x, represent, coral reef) -> (atmospheric CO2, represent major global threats to, coral reefs) -> atmospheric CO2 (5589ms)\nWhat are coral reefs?\tan enlargement\t1.111111111107\tWhat are coral reefs? -> $x: ($x, represent, coral reef) -> (an enlargement, represents, the southernmost coral reef complex) -> an enlargement (5589ms)\nWhat are coral reefs?\tIron\t1.111111111107\tWhat are coral reefs? -> $x: ($x, induce, coral reef) -> (Iron, induced, phase-shifts on coral reefs) -> Iron (5589ms)\nWhat are coral reefs?\tThe idle state\t1.111111111107\tWhat are coral reefs? -> $x: ($x, represent, coral reef) -> (The idle state, represents, a coral reef movement) -> The idle state (5580ms)\nWhat are coral reefs?\tDeep Reef\t1.111111111107\tWhat are coral reefs? -> $x: ($x, represent, coral reef) -> (Deep Reef, represents a wide variety of, magnificent coral reefs) -> Deep Reef (5589ms)\nWhat are coral reefs?\tthe red algae\t1.111111111107\tWhat are coral reefs? -> $x: ($x, develop, coral reef) -> (the red algae, needed to develop, coral reefs) -> the red algae (5589ms)\nWhat are coral reefs?\tHRI\t1.111111111107\tWhat are coral reefs? -> $x: ($x, represent, coral reef) -> (HRI, represented at, coral reef meeting HRI staff) -> HRI (5589ms)\nWhat are coral reefs?\tthe work\t1.111111111107\tWhat are coral reefs? -> $x: ($x, develop, coral reef) -> (the work, was to develop, coral reef mapping methods) -> the work (5589ms)\nWhat are coral reefs?\tA limestone mound\t1.111111111107\tWhat are coral reefs? -> $x: ($x, represent, coral reef) -> (A limestone mound, represents the beginnings of, a reef Corals) -> A limestone mound (5580ms)\nWhat are coral reefs?\tpainkillers\t1.111111111107\tWhat are coral reefs? -> $x: ($x, develop, coral reef) -> (painkillers, have been developed from, coral reef products) -> painkillers (5589ms)\nWhat are coral reefs?\ta satellite data base\t1.111111111107\tWhat are coral reefs? -> $x: ($x, develop, coral reef) -> (a satellite data base, has been developed for, coral reefs) -> a satellite data base (5589ms)\nWhat are coral reefs?\tan example\t1.111111111107\tWhat are coral reefs? -> $x: ($x, develop, coral reef) -> (an example, could be developed from, coral reefs) -> an example (5580ms)\nWhat are coral reefs?\tThe family\t1.111111111107\tWhat are coral reefs? -> $x: ($x, represent, coral reef) -> (The family, represents an important group of, coral reef fish) -> The family (5580ms)\nWhat are coral reefs?\tthe scientific basis\t1.111111111106\tWhat are coral reefs? -> $x: ($x, constitute, coral reef) -> (the scientific basis, constitutes, a healthy coral reef) -> the scientific basis (5605ms)\nWhat are coral reefs?\tAdults\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (Adults, can be seen in, the Pacific Coral Reef exhibit) -> Adults (5605ms)\nWhat are coral reefs?\tWonderful snorkeling\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (Wonderful snorkeling, can be enjoyed on, this coral reef) -> Wonderful snorkeling (5606ms)\nWhat are coral reefs?\tA UNESCO World Heritage Site\t1.111111111106\tWhat are coral reefs? -> $x: ($x, could be, coral reef) -> (A UNESCO World Heritage Site, could be, a coral reef) -> A UNESCO World Heritage Site (5605ms)\nWhat are coral reefs?\twhite beaches\t1.111111111106\tWhat are coral reefs? -> $x: ($x, discover, coral reef) -> (white beaches, discover the magic of, the coral reefs) -> white beaches (5606ms)\nWhat are coral reefs?\tJohn Pennekamp Coral Reef State Park\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (John Pennekamp Coral Reef State Park, can be found on Wikipedia at, http://en.wikipedia.org/wiki/John%20Pennekamp%20Coral%20Reef%20State%20Park) -> John Pennekamp Coral Reef State Park (5589ms)\nWhat are coral reefs?\tthe software\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (the software, can be used for, Coral Reef Watch HDF data files) -> the software (5606ms)\nWhat are coral reefs?\tScuba Diving Credit Learn\t1.111111111106\tWhat are coral reefs? -> $x: ($x, discover, coral reef) -> (Scuba Diving Credit Learn, discover, coral reefs) -> Scuba Diving Credit Learn (5614ms)\nWhat are coral reefs?\tSnacks\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (Snacks, can also be enjoyed in, the renovated Coral Reef Caf?) -> Snacks (5597ms)\nWhat are coral reefs?\ta hurricane\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (a hurricane, can be beneficial to, a stressed coral reef) -> a hurricane (5605ms)\nWhat are coral reefs?\ta salt-form\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (a salt-form, can be acquired from, fossilized coral reefs) -> a salt-form (5597ms)\nWhat are coral reefs?\tsea fishes\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (sea fishes, can be found along, the coral reefs and rock beaches) -> sea fishes (5597ms)\nWhat are coral reefs?\tthe Shelled Push Shrimp\t1.111111111106\tWhat are coral reefs? -> $x: ($x, discover, coral reef) -> (the Shelled Push Shrimp, was discovered on, the coral reef) -> the Shelled Push Shrimp (5589ms)\nWhat are coral reefs?\tStudents\t1.111111111106\tWhat are coral reefs? -> $x: ($x, discover, coral reef) -> (Students, discover, coral reefs) -> Students (5605ms)\nWhat are coral reefs?\tsuch the technique\t1.111111111106\tWhat are coral reefs? -> $x: ($x, could be, coral reef) -> (such the technique, could be targeted at, coral reefs) -> such the technique (5597ms)\nWhat are coral reefs?\tCarrie Bow Marine Field Station\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (Carrie Bow Marine Field Station, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Caribbean%20Coral%20Reef%20Ecosystems%20Program) -> Carrie Bow Marine Field Station (5597ms)\nWhat are coral reefs?\tJacques Cousteau\t1.111111111106\tWhat are coral reefs? -> $x: ($x, discover, coral reef) -> (Jacques Cousteau, discovered the beauty of, Palancar coral reefs) -> Jacques Cousteau (5597ms)\nWhat are coral reefs?\ttrek\t1.111111111106\tWhat are coral reefs? -> $x: ($x, discover, coral reef) -> (trek, discover the colorful underwater world in, the coral reef) -> trek (5597ms)\nWhat are coral reefs?\tsunlight\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (sunlight, can be abundant members of, coral reef ecosystems) -> sunlight (5597ms)\nWhat are coral reefs?\tan eye\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (an eye, can be leveraged to improve, coral reef management) -> an eye (5597ms)\nWhat are coral reefs?\tThe coast\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (The coast, can be appreciated for, the coral reefs) -> The coast (5606ms)\nWhat are coral reefs?\tthe other Coral Worlds\t1.111111111106\tWhat are coral reefs? -> $x: ($x, can be, coral reef) -> (the other Coral Worlds, can only be built at, coral reef sites) -> the other Coral Worlds (5597ms)\nWhat are coral reefs?\tthe news\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, have been in, the news) -> the news (5661ms)\nWhat are coral reefs?\tThe Ocean Adventure\t0.999999999996\tWhat are coral reefs? -> $x: ($x, raise be, coral reef) -> (The Ocean Adventure, are raising, coral reef awareness) -> The Ocean Adventure (5668ms)\nWhat are coral reefs?\ta geographical band\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, exist in, a geographical band) -> a geographical band (5654ms)\nWhat are coral reefs?\tthe future\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, persist in, the future) -> the future (5621ms)\nWhat are coral reefs?\ta dire situation\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, a dire situation) -> a dire situation (5647ms)\nWhat are coral reefs?\tserious decline\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, serious decline) -> serious decline (5639ms)\nWhat are coral reefs?\tserious decline worldwide\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, serious decline worldwide) -> serious decline worldwide (5654ms)\nWhat are coral reefs?\tacid oceans\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, to survive in, acid oceans) -> acid oceans (5647ms)\nWhat are coral reefs?\tthe hundreds\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, run in, the hundreds) -> the hundreds (5614ms)\nWhat are coral reefs?\tthe Dry Tortugas west\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reef, ends in, the Dry Tortugas west) -> the Dry Tortugas west (5621ms)\nWhat are coral reefs?\tserious trouble\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, serious trouble) -> serious trouble (5647ms)\nWhat are coral reefs?\tthe coal mine\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are the canary in, the coal mine) -> the coal mine (5661ms)\nWhat are coral reefs?\tdecline\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, decline) -> decline (5647ms)\nWhat are coral reefs?\tthe Signal Boat\t0.999999999996\tWhat are coral reefs? -> $x: ($x, leave, coral reef) -> (the Signal Boat, left the dock at, Coral Reef Yacht Club) -> the Signal Boat (5621ms)\nWhat are coral reefs?\tgreat danger\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, great danger) -> great danger (5647ms)\nWhat are coral reefs?\tshallow waters\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are found in, shallow waters) -> shallow waters (5668ms)\nWhat are coral reefs?\tthe crystal-blue waters\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, found in, the crystal-blue waters) -> the crystal-blue waters (5632ms)\nWhat are coral reefs?\tthe Andaman Sea\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reef, bleaching in, the Andaman Sea) -> the Andaman Sea (5639ms)\nWhat are coral reefs?\tdecline worldwide\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, decline worldwide) -> decline worldwide (5647ms)\nWhat are coral reefs?\ta lot\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, a lot) -> a lot (5639ms)\nWhat are coral reefs?\tdecline around the world\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, decline around the world) -> decline around the world (5647ms)\nWhat are coral reefs?\twaters\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, sit in, waters) -> waters (5639ms)\nWhat are coral reefs?\tdecline around the globe\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, decline around the globe) -> decline around the globe (5654ms)\nWhat are coral reefs?\tan almost paradoxical state\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, exist in, an almost paradoxical state) -> an almost paradoxical state (5639ms)\nWhat are coral reefs?\tthe Basin\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, to grow in, the Basin) -> the Basin (5639ms)\nWhat are coral reefs?\trecent times\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, were created in, recent times) -> recent times (5621ms)\nWhat are coral reefs?\tfact\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, were in, fact) -> fact (5639ms)\nWhat are coral reefs?\tnature\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, found in, nature) -> nature (5632ms)\nWhat are coral reefs?\tthe shallow waters\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, found in, the shallow waters) -> the shallow waters (5647ms)\nWhat are coral reefs?\tthe NY Bight\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, existed in, the NY Bight) -> the NY Bight (5654ms)\nWhat are coral reefs?\tthe Philippines\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, is centered in, the Philippines) -> the Philippines (5647ms)\nWhat are coral reefs?\tdanger of dying\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, danger of dying) -> danger of dying (5647ms)\nWhat are coral reefs?\tfront of the house\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, lie directly in, front of the house) -> front of the house (5647ms)\nWhat are coral reefs?\tthe frontline\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (?Coral reefs, are in, the frontline) -> the frontline (5639ms)\nWhat are coral reefs?\tgood condition\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, good condition) -> good condition (5632ms)\nWhat are coral reefs?\tNorth America\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, left in, North America) -> North America (5654ms)\nWhat are coral reefs?\tthe Higgins boats\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (the Higgins boats, got stuck on, coral reefs) -> the Higgins boats (5647ms)\nWhat are coral reefs?\tgreat shape\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, great shape) -> great shape (5654ms)\nWhat are coral reefs?\ta steady state\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, a steady state) -> a steady state (5661ms)\nWhat are coral reefs?\tconstant danger of damage and extinction\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, constant danger of damage and extinction) -> constant danger of damage and extinction (5614ms)\nWhat are coral reefs?\tcrisis\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral Reefs, are in, crisis) -> crisis (5654ms)\nWhat are coral reefs?\ttropical oceans near the equator\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are found in, tropical oceans near the equator) -> tropical oceans near the equator (5661ms)\nWhat are coral reefs?\tstarfish\t0.999999999996\tWhat are coral reefs? -> $x: ($x, leave, coral reef) -> (starfish, are leaving, bare the coral reefs) -> starfish (5661ms)\nWhat are coral reefs?\tremote places\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (corals reefs, occur in, remote places) -> remote places (5621ms)\nWhat are coral reefs?\tan ecological crisis\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, an ecological crisis) -> an ecological crisis (5647ms)\nWhat are coral reefs?\tsitu\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, to be studied in, situ) -> situ (5624ms)\nWhat are coral reefs?\tseas\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, grow in, seas) -> seas (5668ms)\nWhat are coral reefs?\tthe chance\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (the chance, get close to, coral reefs) -> the chance (5654ms)\nWhat are coral reefs?\tThe massive mammal\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (The massive mammal, got trapped behind, the coral reef) -> The massive mammal (5661ms)\nWhat are coral reefs?\tterminal decline\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, terminal decline) -> terminal decline (5661ms)\nWhat are coral reefs?\tCrisis\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Corals Reefs, are in, Crisis) -> Crisis (5614ms)\nWhat are coral reefs?\tthe Indo-Pacific and Indian Oceans\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, found in, the Indo-Pacific and Indian Oceans) -> the Indo-Pacific and Indian Oceans (5632ms)\nWhat are coral reefs?\tThe city\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (The city, got its name from, the coral reefs) -> The city (5661ms)\nWhat are coral reefs?\tthe journal\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, has been published in, the journal) -> the journal (5621ms)\nWhat are coral reefs?\tthe Clownfish\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (the Clownfish, get back to, the Coral Reef) -> the Clownfish (5614ms)\nWhat are coral reefs?\tsoft corals\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, adorned in, soft corals) -> soft corals (5614ms)\nWhat are coral reefs?\tshallow water\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are found in, shallow water) -> shallow water (5614ms)\nWhat are coral reefs?\tmore shallow water\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, more shallow water) -> more shallow water (5647ms)\nWhat are coral reefs?\tarchaeological digs\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, participate in, archaeological digs) -> archaeological digs (5639ms)\nWhat are coral reefs?\tthe tropical oceans\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (the tropical oceans, get, warmer coral reefs) -> the tropical oceans (5632ms)\nWhat are coral reefs?\tSeawings passengers\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (Seawings passengers, get to enjoy, the beautiful coral reefs) -> Seawings passengers (5639ms)\nWhat are coral reefs?\tdramatic global decline\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, dramatic global decline) -> dramatic global decline (5621ms)\nWhat are coral reefs?\tan overall state\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, an overall state) -> an overall state (5639ms)\nWhat are coral reefs?\tlimestone\t0.999999999996\tWhat are coral reefs? -> $x: ($x, leave, coral reef) -> (limestone, left over from, coral reefs) -> limestone (5654ms)\nWhat are coral reefs?\tArthur\t0.999999999996\tWhat are coral reefs? -> $x: ($x, compare to, coral reef) -> (Arthur, compares this process to, a coral reef) -> Arthur (5621ms)\nWhat are coral reefs?\tAugust 2009\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral Reef, opens in, August 2009) -> August 2009 (5661ms)\nWhat are coral reefs?\tNon-divers\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (Non-divers, can get a close look at, the coral reefs) -> Non-divers (5661ms)\nWhat are coral reefs?\tThe Motus\t0.999999999996\tWhat are coral reefs? -> $x: ($x, raise be, coral reef) -> (The Motus, are raised, coral reefs) -> The Motus (5661ms)\nWhat are coral reefs?\tjagged rocks\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (jagged rocks, get lost in, labyrinthine coral reefs) -> jagged rocks (5668ms)\nWhat are coral reefs?\tthe discussion\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, join in, the discussion) -> the discussion (5632ms)\nWhat are coral reefs?\tabundance\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, abundance) -> abundance (5632ms)\nWhat are coral reefs?\tbig trouble\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, big trouble) -> big trouble (5632ms)\nWhat are coral reefs?\tThe algae\t0.999999999996\tWhat are coral reefs? -> $x: ($x, get, coral reef) -> (The algae, gets, a sunny , coral reef penthouse apartment) -> The algae (5621ms)\nWhat are coral reefs?\tstunning scenery\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, draped in, stunning scenery) -> stunning scenery (5621ms)\nWhat are coral reefs?\tcrucial microorganisms\t0.999999999996\tWhat are coral reefs? -> $x: ($x, leave, coral reef) -> (crucial microorganisms, leave, coral reefs) -> crucial microorganisms (5654ms)\nWhat are coral reefs?\tthe ocean\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, form in, the ocean) -> the ocean (5661ms)\nWhat are coral reefs?\tAugust 2009 Vivanta\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral Reef, opens in, August 2009 Vivanta) -> August 2009 Vivanta (5639ms)\nWhat are coral reefs?\ta volcano\t0.999999999996\tWhat are coral reefs? -> $x: ($x, leave, coral reef) -> (a volcano, leaving, a coral reef) -> a volcano (5647ms)\nWhat are coral reefs?\tthe Bahamas\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, the Bahamas) -> the Bahamas (5614ms)\nWhat are coral reefs?\ttrouble\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, trouble) -> trouble (5661ms)\nWhat are coral reefs?\twarm tropical oceans\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, thrive in, warm tropical oceans) -> warm tropical oceans (5624ms)\nWhat are coral reefs?\t1986\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral Reef, was built in, 1986) -> 1986 (5614ms)\nWhat are coral reefs?\ttropical oceans\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, grow in, tropical oceans) -> tropical oceans (5661ms)\nWhat are coral reefs?\tclear\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, grow in, clear) -> clear (5614ms)\nWhat are coral reefs?\tpristine waters\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, located in, pristine waters) -> pristine waters (5661ms)\nWhat are coral reefs?\tthe warm waters\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, grew in, the warm waters) -> the warm waters (5647ms)\nWhat are coral reefs?\tnegative interactions\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, resulted in, negative interactions) -> negative interactions (5632ms)\nWhat are coral reefs?\tthe front line\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, the front line) -> the front line (5632ms)\nWhat are coral reefs?\tless than one percent\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, found in, less than one percent) -> less than one percent (5632ms)\nWhat are coral reefs?\tnutrient poor , tropical waters\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, live in, nutrient poor , tropical waters) -> nutrient poor , tropical waters (5632ms)\nWhat are coral reefs?\t109 countries\t0.999999999996\tWhat are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are found in, 109 countries) -> 109 countries (5654ms)\nWhat are coral reefs?\tHilton Head Island\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Resorts, is located in, Hilton Head Island) -> Hilton Head Island (5700ms)\nWhat are coral reefs?\tsouthwest Florida\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral, is located in, southwest Florida) -> southwest Florida (5685ms)\nWhat are coral reefs?\tthe business hub\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (the Coral Boutique Villas, are located in, the business hub) -> the business hub (5675ms)\nWhat are coral reefs?\tthe hotel zone\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Plaza Coral Negro, are located in, the hotel zone) -> the hotel zone (5695ms)\nWhat are coral reefs?\tThe Hammocks\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Club, is located in, The Hammocks) -> The Hammocks (5675ms)\nWhat are coral reefs?\tFlorida\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Florida Relocation Cape Coral, is located in southwest, Florida) -> Florida (5690ms)\nWhat are coral reefs?\tsouthwestern Florida\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral, is located in, southwestern Florida) -> southwestern Florida (5668ms)\nWhat are coral reefs?\tPort Villa\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Motel Apartments, is located in, Port Villa) -> Port Villa (5690ms)\nWhat are coral reefs?\tthe exclusive Fortlands Road section\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Cove, is located in, the exclusive Fortlands Road section) -> the exclusive Fortlands Road section (5700ms)\nWhat are coral reefs?\tthe center\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Reef Park, is located in, the center) -> the center (5695ms)\nWhat are coral reefs?\tthe Riviera Maya\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Location Coral Maya, is located in, the Riviera Maya) -> the Riviera Maya (5685ms)\nWhat are coral reefs?\ta Gated Community\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Cove, is located in, a Gated Community) -> a Gated Community (5675ms)\nWhat are coral reefs?\tmarathon\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (The coral lagoon resort & marina, is located in, marathon) -> marathon (5680ms)\nWhat are coral reefs?\ta Marine National Park right\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (this true coral cay, is located in, a Marine National Park right) -> a Marine National Park right (5675ms)\nWhat are coral reefs?\tthree main areas\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (the deep-water corals, are located in, three main areas) -> three main areas (5680ms)\nWhat are coral reefs?\tneighborhoods\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (CORAL programs, are located in, neighborhoods) -> neighborhoods (5690ms)\nWhat are coral reefs?\tthe business district\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (This Coral Springs hotel, is located in, the business district) -> the business district (5685ms)\nWhat are coral reefs?\tthe heart\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (The OHANA Coral Seas, is a 109-room hotel located in, the heart) -> the heart (5695ms)\nWhat are coral reefs?\tBroward County\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Springs, is located in, Broward County) -> Broward County (5700ms)\nWhat are coral reefs?\tthe south\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (the Coral Springs accident lawyer, is located in, the south) -> the south (5685ms)\nWhat are coral reefs?\tBuena Vista Florida\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (the Coral Reef, is located in, Buena Vista Florida) -> Buena Vista Florida (5675ms)\nWhat are coral reefs?\ta lovely country area\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (CIT-736 Coral Gardens, is located in, a lovely country area) -> a lovely country area (5695ms)\nWhat are coral reefs?\tCape Coral\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral Historical Society Museum, is located in, Cape Coral) -> Cape Coral (5685ms)\nWhat are coral reefs?\tthe Heart\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (4870 Coral Tree Inn, is located in, the Heart) -> the Heart (5668ms)\nWhat are coral reefs?\tNoosaville\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Beach Noosa Resort, is located in, Noosaville) -> Noosaville (5680ms)\nWhat are coral reefs?\tMozambique Nacala\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Lodge 1541, is located in, Mozambique Nacala) -> Mozambique Nacala (5675ms)\nWhat are coral reefs?\tthe Coral Sea\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (The actual ?Great Coral Reef?, is located in, the Coral Sea) -> the Coral Sea (5680ms)\nWhat are coral reefs?\ttown\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (The Coral Hotel and Spa, is located in, town) -> town (5695ms)\nWhat are coral reefs?\tHomestead\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Castle, is located in, Homestead) -> Homestead (5690ms)\nWhat are coral reefs?\tNoosa\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Beach Resort Accommodation, is located in, Noosa) -> Noosa (5668ms)\nWhat are coral reefs?\tlarge worth\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (coral reefs, is actually located in, large worth) -> large worth (5685ms)\nWhat are coral reefs?\tthe Speyside are\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral GardensThis, is located in, the Speyside are) -> the Speyside are (5695ms)\nWhat are coral reefs?\tUmag\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Meli  Coral, is located in, Umag) -> Umag (5675ms)\nWhat are coral reefs?\ta waterfront wonderland\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral, is located in, a waterfront wonderland) -> a waterfront wonderland (5685ms)\nWhat are coral reefs?\tDistrict\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Ridge Park, is located in, District) -> District (5680ms)\nWhat are coral reefs?\tthe middle\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> ($ 22 USD Coral Cove Resort, is located right in, the middle) -> the middle (5695ms)\nWhat are coral reefs?\tOld Town Key West\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (The CORAL REEFER, is conveniently located in, Old Town Key West) -> Old Town Key West (5680ms)\nWhat are coral reefs?\tcentral Dubai\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Boutique Hotel Apartments, is located in, central Dubai) -> central Dubai (5695ms)\nWhat are coral reefs?\tal fujairah\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (the coral residence tower fujairah, is located in, al fujairah) -> al fujairah (5690ms)\nWhat are coral reefs?\tMazatlan\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Maria Coral Hotel, is located in, Mazatlan) -> Mazatlan (5668ms)\nWhat are coral reefs?\tDubai\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (coral Oriental Dubai, Is Located In, Dubai) -> Dubai (5685ms)\nWhat are coral reefs?\tsoutheast Florida\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Florida Coral Springs, is located in, southeast Florida) -> southeast Florida (5668ms)\nWhat are coral reefs?\tthe reefs\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (These corals, are located in, the reefs) -> the reefs (5668ms)\nWhat are coral reefs?\tflorida\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Terrace, is a city located in the state or province, florida) -> florida (5668ms)\nWhat are coral reefs?\tLee County\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral, is a large municipality located in, Lee County) -> Lee County (5695ms)\nWhat are coral reefs?\tthe waters\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Significant coral reefs, are located in, the waters) -> the waters (5668ms)\nWhat are coral reefs?\tthe south western tip\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Villa, is located in, the south western tip) -> the south western tip (5668ms)\nWhat are coral reefs?\tthe town\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Castle, was originally located in, the town) -> the town (5695ms)\nWhat are coral reefs?\tPapua\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> ('s coral reefs, are located in, Papua) -> Papua (5685ms)\nWhat are coral reefs?\tthe shopping center\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (the Coral Reef Casino, is located in, the shopping center) -> the shopping center (5690ms)\nWhat are coral reefs?\tNorthwest Broward County\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Springs, is located in, Northwest Broward County) -> Northwest Broward County (5700ms)\nWhat are coral reefs?\tthe Indo-Pacific region\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> ('s coral reefs, are located in, the Indo-Pacific region) -> the Indo-Pacific region (5695ms)\nWhat are coral reefs?\tthe county\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Springs, is located in, the county) -> the county (5675ms)\nWhat are coral reefs?\ta beautiful natural environment\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Le Coral, is located in, a beautiful natural environment) -> a beautiful natural environment (5695ms)\nWhat are coral reefs?\tMiami-Dade County\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Gables, is a city located in, Miami-Dade County) -> Miami-Dade County (5695ms)\nWhat are coral reefs?\tCentral NAS Lemoore\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Sea Park, are conveniently located in, Central NAS Lemoore) -> Central NAS Lemoore (5680ms)\nWhat are coral reefs?\tTanzania Zanzibar\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Rock Holiday Package, is located in, Tanzania Zanzibar) -> Tanzania Zanzibar (5690ms)\nWhat are coral reefs?\tCape Coral Florida\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Suites Cape Coral FL hotel, is located in, Cape Coral Florida) -> Cape Coral Florida (5685ms)\nWhat are coral reefs?\tMoorea\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Moorea Coral Reef LTER, is located in, Moorea) -> Moorea (5675ms)\nWhat are coral reefs?\tDade County\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Gables, is located in, Dade County) -> Dade County (5685ms)\nWhat are coral reefs?\tTanzania Dar\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Beach Hotel, is located in, Tanzania Dar) -> Tanzania Dar (5690ms)\nWhat are coral reefs?\tCoral Gables\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Gables Hospital, is located in, Coral Gables) -> Coral Gables (5685ms)\nWhat are coral reefs?\tKolkata\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Residency, is located in, Kolkata) -> Kolkata (5695ms)\nWhat are coral reefs?\tPlaya Tambor\t0.888888888888\tWhat are coral reefs? -> $x: (coral, be locate in, $x) -> (Bar / Restaurant ?Costa Coral?, is located in, Playa Tambor) -> Playa Tambor (5675ms)\nWhat are coral reefs?\tthe refuge\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (the refuge, contains, coral reefs) -> the refuge (5704ms)\nWhat are coral reefs?\tKey Biscayne\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Key Biscayne, contains approximately, 6,000 coral reefs) -> Key Biscayne (5704ms)\nWhat are coral reefs?\tthe Gulf\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (the Gulf, contain, coral reefs) -> the Gulf (5704ms)\nWhat are coral reefs?\tA tank\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (A tank, containing, coral reef life) -> A tank (5704ms)\nWhat are coral reefs?\tVirgin Islands\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Virgin Islands, Contains, Virgin Islands Coral Reef National Monument) -> Virgin Islands (5700ms)\nWhat are coral reefs?\ttwo marine areas\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (two marine areas, contain most of, the world?s coral reefs) -> two marine areas (5700ms)\nWhat are coral reefs?\tUnited States Virgin Islands\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (United States Virgin Islands, Contains, Virgin Islands Coral Reef National Monument) -> United States Virgin Islands (5704ms)\nWhat are coral reefs?\tThe reef\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (The reef, contains, the largest coral reef) -> The reef (5704ms)\nWhat are coral reefs?\tthe Java Sea\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (the Java Sea, contains, several coral reefs) -> the Java Sea (5700ms)\nWhat are coral reefs?\tThe four-story Giant Ocean tank\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (The four-story Giant Ocean tank, contains, re-created coral reef) -> The four-story Giant Ocean tank (5700ms)\nWhat are coral reefs?\tthe 200,000-gallon Giant Ocean Tank\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (the 200,000-gallon Giant Ocean Tank, contains, coral reefs) -> the 200,000-gallon Giant Ocean Tank (5704ms)\nWhat are coral reefs?\tVancouver\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Vancouver, Contains, Coral Reef Place) -> Vancouver (5704ms)\nWhat are coral reefs?\tChagos\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Chagos, contains some of, the world?s healthiest coral reefs) -> Chagos (5709ms)\nWhat are coral reefs?\tThe Florida Keys\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (The Florida Keys, contain some of, the largest coral reefs) -> The Florida Keys (5704ms)\nWhat are coral reefs?\tThe western half\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (The western half, contains most of, the species-rich coral reefs) -> The western half (5704ms)\nWhat are coral reefs?\tSamui\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Samui, contain, many interesting coral reefs) -> Samui (5700ms)\nWhat are coral reefs?\tPhuket\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Phuket, contain, many interesting coral reefs) -> Phuket (5709ms)\nWhat are coral reefs?\tThe Keys\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (The Keys, contain, coral and limestone reefs) -> The Keys (5709ms)\nWhat are coral reefs?\tMonroe County\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Monroe County, Contains, John Pennekamp Coral Reef State Park and Reserve) -> Monroe County (5709ms)\nWhat are coral reefs?\tThe crystal clear waters\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (The crystal clear waters, contain, colourful coral reefs) -> The crystal clear waters (5700ms)\nWhat are coral reefs?\tKoh Adang- Koh Rawi\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Koh Adang- Koh Rawi, contains, many coral reefs) -> Koh Adang- Koh Rawi (5709ms)\nWhat are coral reefs?\tLeleiwi Beach\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (Leleiwi Beach, contains, beautiful coral reefs) -> Leleiwi Beach (5700ms)\nWhat are coral reefs?\tbeaches\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (beaches, contains, coral reefs) -> beaches (5704ms)\nWhat are coral reefs?\tthe cleanest\t0.777777777773\tWhat are coral reefs? -> $x: ($x, contain, coral reef) -> (the cleanest, contain, the world?s largest coral reef structure) -> the cleanest (5709ms)\nWhat are coral reefs?\tCousteau\t0.666666666663\tWhat are coral reefs? -> $x: ($x, concerned, coral reef) -> (Cousteau, was particularly concerned about, the coral reefs) -> Cousteau (5709ms)\nWhat are coral reefs?\tthe past few years\t0.666666666663\tWhat are coral reefs? -> $x: ($x, concerned, coral reef) -> (the past few years, have expressed dire concern for, coral reefs) -> the past few years (5709ms)\nWhat are coral reefs?\tthe wake\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are disintegrating in, the wake) -> the wake (5747ms)\nWhat are coral reefs?\tScuba-diving Fiji\t0.44444444444\tWhat are coral reefs? -> $x: ($x, number of, coral reef) -> (Scuba-diving Fiji, has a number of, soft coral reefs) -> Scuba-diving Fiji (5749ms)\nWhat are coral reefs?\tthe second week\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, were noticed in, the second week) -> the second week (5713ms)\nWhat are coral reefs?\tthe tropics\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are found in, the tropics) -> the tropics (5739ms)\nWhat are coral reefs?\tsatellite imagery\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been derived from, satellite imagery) -> satellite imagery (5713ms)\nWhat are coral reefs?\tthe past 30 years\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been slowly dying over, the past 30 years) -> the past 30 years (5729ms)\nWhat are coral reefs?\tMiami regattas\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral Reef Yacht Club, have been hosting, Miami regattas) -> Miami regattas (5717ms)\nWhat are coral reefs?\tthe rain-forests\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been called, the rain-forests) -> the rain-forests (5745ms)\nWhat are coral reefs?\ta team\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been solved by, a team) -> a team (5751ms)\nWhat are coral reefs?\t100 million years\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been around, 100 million years) -> 100 million years (5725ms)\nWhat are coral reefs?\ttwo main categories\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been divided into, two main categories) -> two main categories (5721ms)\nWhat are coral reefs?\tthe main research focus\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been, the main research focus) -> the main research focus (5734ms)\nWhat are coral reefs?\tthe past\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (many coral reefs, have been damaged in, the past) -> the past (5721ms)\nWhat are coral reefs?\ta common and urgent need\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been noted as, a common and urgent need) -> a common and urgent need (5729ms)\nWhat are coral reefs?\tMarcus Sheaves\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been aptly dubbed by, Marcus Sheaves) -> Marcus Sheaves (5713ms)\nWhat are coral reefs?\tthe Carboniferous extinction\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, had been decimated by, the Carboniferous extinction) -> the Carboniferous extinction (5734ms)\nWhat are coral reefs?\tthe ocean floor\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been removed from, the ocean floor) -> the ocean floor (5734ms)\nWhat are coral reefs?\trepair\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been damaged beyond, repair) -> repair (5725ms)\nWhat are coral reefs?\tnumerous places\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, can be seen in, numerous places) -> numerous places (5721ms)\nWhat are coral reefs?\tgeologic time\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been very adaptable over, geologic time) -> geologic time (5750ms)\nWhat are coral reefs?\tcruise ship anchors\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reef, have already been lost to, cruise ship anchors) -> cruise ship anchors (5732ms)\nWhat are coral reefs?\tThe first class\t0.44444444444\tWhat are coral reefs? -> $x: ($x, administer, coral reef) -> (The first class, is administered directly to, a coral reef tank) -> The first class (5729ms)\nWhat are coral reefs?\tglobal decline\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are currently in, global decline) -> global decline (5749ms)\nWhat are coral reefs?\tthe rainforest of the ocean\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been called, the rainforest of the ocean) -> the rainforest of the ocean (5725ms)\nWhat are coral reefs?\tany cherished stone\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, had been thought to be, any cherished stone) -> any cherished stone (5729ms)\nWhat are coral reefs?\tBananahead\t0.44444444444\tWhat are coral reefs? -> $x: ($x, inspired, coral reef) -> (Bananahead, was inspired by, the coral-reef fishies) -> Bananahead (5739ms)\nWhat are coral reefs?\tdisease\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (entire coral reefs, had been decimated by, disease) -> disease (5725ms)\nWhat are coral reefs?\tthe last decade\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> ('s coral reefs, have been destroyed in, the last decade) -> the last decade (5739ms)\nWhat are coral reefs?\tthe surface\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Old coral reefs, have been brought to, the surface) -> the surface (5749ms)\nWhat are coral reefs?\tseveral small areas\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are sparsely distributed in, several small areas) -> several small areas (5751ms)\nWhat are coral reefs?\tthe rainforests of the sea\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been dubbed, the rainforests of the sea) -> the rainforests of the sea (5750ms)\nWhat are coral reefs?\tTHE EFFIN ASS!\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (CORAL REEFS, ARE A PAIN IN, THE EFFIN ASS!) -> THE EFFIN ASS! (5717ms)\nWhat are coral reefs?\ta global scale\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been damaged on, a global scale) -> a global scale (5729ms)\nWhat are coral reefs?\tpolluters\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (fragile coral reefs, have been harmed by, polluters) -> polluters (5739ms)\nWhat are coral reefs?\tthe biblical story\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be tell, $x) -> (Coral Reef, is a modern re-telling of, the biblical story) -> the biblical story (5745ms)\nWhat are coral reefs?\ta balance\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (?Coral reefs, are always in, a balance) -> a balance (5739ms)\nWhat are coral reefs?\thuman contact and disease\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been ravaged by, human contact and disease) -> human contact and disease (5744ms)\nWhat are coral reefs?\tevents\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> ('s coral reefs, have been impacted by, events) -> events (5749ms)\nWhat are coral reefs?\ttropical locations\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are found in, tropical locations) -> tropical locations (5749ms)\nWhat are coral reefs?\tthe dawn\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Corals reefs, have been declining since, the dawn) -> the dawn (5717ms)\nWhat are coral reefs?\tthe South Pacific\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are dying in, the South Pacific) -> the South Pacific (5747ms)\nWhat are coral reefs?\tsharp granite outcroppings\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been replaced by, sharp granite outcroppings) -> sharp granite outcroppings (5739ms)\nWhat are coral reefs?\tchanges\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been really receptive to, changes) -> changes (5734ms)\nWhat are coral reefs?\tplaces\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are currently found in, places) -> places (5729ms)\nWhat are coral reefs?\tthe current ecological climate\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are facing in, the current ecological climate) -> the current ecological climate (5748ms)\nWhat are coral reefs?\tmarine life including turtles\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are rich in, marine life including turtles) -> marine life including turtles (5717ms)\nWhat are coral reefs?\tclearer water\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, could have been, clearer water) -> clearer water (5744ms)\nWhat are coral reefs?\twarm waters\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are found only in, warm waters) -> warm waters (5747ms)\nWhat are coral reefs?\tpast pollution\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been degraded due to, past pollution) -> past pollution (5741ms)\nWhat are coral reefs?\tterms\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, is also reconsidered in, terms) -> terms (5748ms)\nWhat are coral reefs?\tthe decline\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been on, the decline) -> the decline (5748ms)\nWhat are coral reefs?\tThe forms\t0.44444444444\tWhat are coral reefs? -> $x: ($x, inspired, coral reef) -> (The forms, were inspired by, coral reef formations) -> The forms (5721ms)\nWhat are coral reefs?\t1842\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, were first described in, 1842) -> 1842 (5741ms)\nWhat are coral reefs?\ta state\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (the coral reefs, has been in, a state) -> a state (5737ms)\nWhat are coral reefs?\tlately\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, have been in the news, lately) -> lately (5750ms)\nWhat are coral reefs?\teffective barriers\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, would have been, effective barriers) -> effective barriers (5717ms)\nWhat are coral reefs?\tthe proverbial ?canary\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been compared to, the proverbial ?canary) -> the proverbial ?canary (5737ms)\nWhat are coral reefs?\tNCCOS\t0.44444444444\tWhat are coral reefs? -> $x: ($x, administer, coral reef) -> (NCCOS, administers, the Hawaii Coral Reef Initiative) -> NCCOS (5750ms)\nWhat are coral reefs?\tthe ?rainforests\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been dubbed, the ?rainforests) -> the ?rainforests (5709ms)\nWhat are coral reefs?\tthe late 1800s\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reef bleaching, has been reported since, the late 1800s) -> the late 1800s (5750ms)\nWhat are coral reefs?\tthe planet\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been on, the planet) -> the planet (5741ms)\nWhat are coral reefs?\tUS$ 375 billion\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been estimated to be around, US$ 375 billion) -> US$ 375 billion (5717ms)\nWhat are coral reefs?\tthe rainforests\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been dubbed, the rainforests) -> the rainforests (5745ms)\nWhat are coral reefs?\tthe Gulfs\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been damaged in, the Gulfs) -> the Gulfs (5741ms)\nWhat are coral reefs?\tthe early 1980s\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are dying ? in, the early 1980s) -> the early 1980s (5721ms)\nWhat are coral reefs?\tthe marine equivalent\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been characterized as, the marine equivalent) -> the marine equivalent (5729ms)\nWhat are coral reefs?\tthe deep sea\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are also found in, the deep sea) -> the deep sea (5748ms)\nWhat are coral reefs?\tworldwide\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (The coral reef ecosystems, have been disintegrating, worldwide) -> worldwide (5748ms)\nWhat are coral reefs?\tthe past two years\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been killed over, the past two years) -> the past two years (5747ms)\nWhat are coral reefs?\tthe coastal zone\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, can be found in, the coastal zone) -> the coastal zone (5747ms)\nWhat are coral reefs?\tclues\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are rich in, clues) -> clues (5748ms)\nWhat are coral reefs?\tthe Maldives\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been killed around, the Maldives) -> the Maldives (5750ms)\nWhat are coral reefs?\tthe treatment\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been used in, the treatment) -> the treatment (5747ms)\nWhat are coral reefs?\tsea and bird life\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are rich in, sea and bird life) -> sea and bird life (5731ms)\nWhat are coral reefs?\tthe Maputaland marine reserve\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are also nearby in, the Maputaland marine reserve) -> the Maputaland marine reserve (5734ms)\nWhat are coral reefs?\tDarwin\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reef formation, had been stagnant from, Darwin) -> Darwin (5739ms)\nWhat are coral reefs?\tthe billions\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, is valued in, the billions) -> the billions (5721ms)\nWhat are coral reefs?\t2003\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, was first released in, 2003) -> 2003 (5739ms)\nWhat are coral reefs?\tnew appropriations\t0.44444444444\tWhat are coral reefs? -> $x: ($x, establish, coral reef) -> (new appropriations, establish new protections for, coral reefs) -> new appropriations (5750ms)\nWhat are coral reefs?\tcountries\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are in developing, countries) -> countries (5750ms)\nWhat are coral reefs?\tthe challenges\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been hard hit by, the challenges) -> the challenges (5729ms)\nWhat are coral reefs?\tgroups\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are often found in, groups) -> groups (5734ms)\nWhat are coral reefs?\ta number\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral and coral reef growth, have been studied by, a number) -> a number (5744ms)\nWhat are coral reefs?\tMC\t0.44444444444\tWhat are coral reefs? -> $x: ($x, establish, coral reef) -> (MC, established, the Global Coral Reef Conservation Project) -> MC (5747ms)\nWhat are coral reefs?\tthe last several decades\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been decimated over, the last several decades) -> the last several decades (5734ms)\nWhat are coral reefs?\tceramic modules\t0.44444444444\tWhat are coral reefs? -> $x: ($x, establish, coral reef) -> (ceramic modules, help quickly establish, coral reefs) -> ceramic modules (5732ms)\nWhat are coral reefs?\tPNAS 98\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are reported in, PNAS 98) -> PNAS 98 (5742ms)\nWhat are coral reefs?\taround\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (The Coral reef, has been, around) -> around (5748ms)\nWhat are coral reefs?\t?rainforests\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been called, ?rainforests) -> ?rainforests (5749ms)\nWhat are coral reefs?\tmajor research agencies\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been singled out by, major research agencies) -> major research agencies (5739ms)\nWhat are coral reefs?\tThe design\t0.44444444444\tWhat are coral reefs? -> $x: ($x, inspired, coral reef) -> (The design, inspired by, the coral reef) -> The design (5749ms)\nWhat are coral reefs?\tthe Amazon rainforest\t0.44444444444\tWhat are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been likened to, the Amazon rainforest) -> the Amazon rainforest (5749ms)\nWhat are coral reefs?\t1967 Vincent Bell\t0.333333333332\tWhat are coral reefs? -> $x: ($x, invent, coral) -> (1967 Vincent Bell, invented, the Coral Sitar) -> 1967 Vincent Bell (5751ms)\nWhat companies manufacture golf clubs?\tRawlings Golf\t3.33333333332\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Rawlings Golf, is a manufacturer of, golf clubs) -> Rawlings Golf (2319ms)\nWhat companies manufacture golf clubs?\tPing\t3.33333333332\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Ping, is a manufacturer of, high quality golf clubs) -> Ping (2319ms)\nWhat companies manufacture golf clubs?\tCallaway\t3.33333333332\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Callaway, is a very successful manufacturer of, golf clubs) -> Callaway (2320ms)\nWhat companies manufacture golf clubs?\tMizuno\t3.33333333332\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Mizuno, is a leading manufacturer of, golf clubs and accessories) -> Mizuno (2319ms)\nWhat companies manufacture golf clubs?\tCallaway Golf\t3.33333333332\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Callaway Golf, is the leading manufacturer of, golf clubs) -> Callaway Golf (2320ms)\nWhat companies manufacture golf clubs?\tCA Lynx\t3.33333333332\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (CA Lynx, was a well-known manufacturer of, high-end golf clubs) -> CA Lynx (2319ms)\nWhat companies manufacture golf clubs?\t2011\t3.22222222221\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf club) -> (2011, is an example of, Pound Ridge Golf Club) -> 2011 (4204ms)\nWhat companies manufacture golf clubs?\tYoull\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Youll, find, golf clubs built around a wide variety of subjects) -> Youll (4806ms)\nWhat companies manufacture golf clubs?\ttaylor\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (taylor, created, golfing clubs) -> taylor (4366ms)\nWhat companies manufacture golf clubs?\tgreat deals\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (great deals, Find, Titleist Vokey Spin Milled Wedge Golf Club) -> great deals (4887ms)\nWhat companies manufacture golf clubs?\tWoods\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf club) -> (Woods, are a type of, golf club) -> Woods (4903ms)\nWhat companies manufacture golf clubs?\tExcellent golf\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Excellent golf, can be found at, Dalton Ranch Golf Club) -> Excellent golf (4863ms)\nWhat companies manufacture golf clubs?\tDefinition\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Definition, Types, Golf Club) -> Definition (4879ms)\nWhat companies manufacture golf clubs?\tGolf lovers\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golf lovers, will find, the world-famous Emirates Golf Club) -> Golf lovers (4887ms)\nWhat companies manufacture golf clubs?\tnew 910F\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (new 910F, is just this type of, golf club) -> new 910F (4910ms)\nWhat companies manufacture golf clubs?\tcourse\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (course, was created at, the Emirates Golf Club) -> course (4895ms)\nWhat companies manufacture golf clubs?\tgolfers\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (golfers, finding, their ideal Golf Clubs) -> golfers (4887ms)\nWhat companies manufacture golf clubs?\tRMI MOVE Forum RMI MOVE Forum |\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (RMI MOVE Forum RMI MOVE Forum |, Find out, your best golf clubs) -> RMI MOVE Forum RMI MOVE Forum | (4806ms)\nWhat companies manufacture golf clubs?\tthe elegant design\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the elegant design, found in, all TaylorMade golf clubs) -> the elegant design (4895ms)\nWhat companies manufacture golf clubs?\tthe Browns\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (the Browns, create, the Forest Creek Golf Club) -> the Browns (4871ms)\nWhat companies manufacture golf clubs?\tTitleist Titanium 975D\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist Titanium 975D, Type, Golf Club) -> Titleist Titanium 975D (4440ms)\nWhat companies manufacture golf clubs?\tThe Golf Classifieds\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The Golf Classifieds, Find ads for, new and used golf clubs) -> The Golf Classifieds (4871ms)\nWhat companies manufacture golf clubs?\tNobody\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Nobody, would ever type in, golf clubs) -> Nobody (4863ms)\nWhat companies manufacture golf clubs?\tdaepark's types\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (daepark's types, Types, Golf Club) -> daepark's types (4871ms)\nWhat companies manufacture golf clubs?\tTitleist PT Fairway Metal 2001\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist PT Fairway Metal 2001, Type, Golf Club) -> Titleist PT Fairway Metal 2001 (4863ms)\nWhat companies manufacture golf clubs?\tJoe Cotter\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Joe Cotter, created, The Golf Club) -> Joe Cotter (4871ms)\nWhat companies manufacture golf clubs?\tUsed cleveland golf clubs\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Used cleveland golf clubs, find used, cleveland golf clubs) -> Used cleveland golf clubs (4806ms)\nWhat companies manufacture golf clubs?\tTitleist PRO TITANIUM 905R\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist PRO TITANIUM 905R, Type, Golf Club) -> Titleist PRO TITANIUM 905R (4366ms)\nWhat companies manufacture golf clubs?\tthe sport\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the sport, is to find the right kind of, golf club) -> the sport (4895ms)\nWhat companies manufacture golf clubs?\tCallaway RAZR Hawk Driver\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Callaway RAZR Hawk Driver, created to hold, golf clubs) -> Callaway RAZR Hawk Driver (4879ms)\nWhat companies manufacture golf clubs?\tthe vicinity tourists\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the vicinity tourists, will find, a golf club) -> the vicinity tourists (4806ms)\nWhat companies manufacture golf clubs?\tSeminole Golf Club\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Seminole Golf Club, Related Type, Seminole Golf Club) -> Seminole Golf Club (4903ms)\nWhat companies manufacture golf clubs?\twhta measurements\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf club) -> (whta measurements, will work best for, a golf club cover) -> whta measurements (4871ms)\nWhat companies manufacture golf clubs?\tdriving ranges\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (driving ranges, are to be found within, a golf club) -> driving ranges (4440ms)\nWhat companies manufacture golf clubs?\tcosts\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (costs, is by finding, discount golf clubs) -> costs (4903ms)\nWhat companies manufacture golf clubs?\tYou?ll\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (You?ll, find, the Grande Pines Golf Club) -> You?ll (4903ms)\nWhat companies manufacture golf clubs?\tGreat deals\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Great deals, can be found on, golf clubs) -> Great deals (4903ms)\nWhat companies manufacture golf clubs?\ta driver\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf club) -> (a driver, is a type of, golf club) -> a driver (4887ms)\nWhat companies manufacture golf clubs?\tshopping\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (shopping, find, discount golf clubs) -> shopping (4910ms)\nWhat companies manufacture golf clubs?\tthe lob wedge\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (the lob wedge, are common types of, golf club wedges) -> the lob wedge (4863ms)\nWhat companies manufacture golf clubs?\tthe lake\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the lake, you?ll find, the Balfour Golf Club) -> the lake (4871ms)\nWhat companies manufacture golf clubs?\tfive local businessman\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (five local businessman, were keen to found, a golf club) -> five local businessman (4871ms)\nWhat companies manufacture golf clubs?\tgolf holes\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (golf holes, found at, the Golf Club) -> golf holes (4887ms)\nWhat companies manufacture golf clubs?\tThe actual cavity\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf club) -> (The actual cavity, back is yet another type of, golf club) -> The actual cavity (4910ms)\nWhat companies manufacture golf clubs?\tthe permission\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (the permission, created, a golf club) -> the permission (4806ms)\nWhat companies manufacture golf clubs?\tthe warrior\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the warrior, finds, a golf club) -> the warrior (4895ms)\nWhat companies manufacture golf clubs?\tlatent demand estimates\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (latent demand estimates, are created for, golf club woods) -> latent demand estimates (4887ms)\nWhat companies manufacture golf clubs?\tPowerbilt Golf\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Powerbilt Golf, produces many types of, golf clubs) -> Powerbilt Golf (4879ms)\nWhat companies manufacture golf clubs?\tJack Nicklaus II\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Jack Nicklaus II, created, the Golf Club) -> Jack Nicklaus II (4910ms)\nWhat companies manufacture golf clubs?\tthe Chicago Board\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the Chicago Board, helped found, the Chicago Golf Club) -> the Chicago Board (4871ms)\nWhat companies manufacture golf clubs?\tThe video\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The video, was found, when searching for golf club) -> The video (4903ms)\nWhat companies manufacture golf clubs?\tGiustina\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Giustina, also created, the Tokatee Golf Club) -> Giustina (4879ms)\nWhat companies manufacture golf clubs?\ta company\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (a company, has developed a new type of, golf club) -> a company (4895ms)\nWhat companies manufacture golf clubs?\tdancing\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (dancing, might also be found through, health golf clubs) -> dancing (4879ms)\nWhat companies manufacture golf clubs?\tjobs\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (jobs, will be created at, Dunbar Golf Club) -> jobs (4855ms)\nWhat companies manufacture golf clubs?\tThe hard part\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The hard part, is finding, the best used golf club) -> The hard part (4895ms)\nWhat companies manufacture golf clubs?\tA grandmother\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf club) -> (A grandmother, worked as a Banqueting Manager for, a golf club) -> A grandmother (4910ms)\nWhat companies manufacture golf clubs?\tGolf enthusiasts\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golf enthusiasts, will find, the Flamingos Golf Club) -> Golf enthusiasts (4863ms)\nWhat companies manufacture golf clubs?\tAugust National Golf Club\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (August National Golf Club, Related Type, August National Golf Club) -> August National Golf Club (4806ms)\nWhat companies manufacture golf clubs?\tGolf\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golf, can be found locally at, the Torvean golf club) -> Golf (4871ms)\nWhat companies manufacture golf clubs?\tManufacturers\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Manufacturers, create, golf clubs) -> Manufacturers (4903ms)\nWhat companies manufacture golf clubs?\tLoveday\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Loveday, was found at, the Willow Creek Golf Club) -> Loveday (4871ms)\nWhat companies manufacture golf clubs?\tItaly\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Italy, can be found at, the golf clubs) -> Italy (4855ms)\nWhat companies manufacture golf clubs?\tGafner\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf club) -> (Gafner, believes the price of, golf clubs) -> Gafner (4879ms)\nWhat companies manufacture golf clubs?\tMaoris\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Maoris, are to be found in nearly, all golf clubs) -> Maoris (4855ms)\nWhat companies manufacture golf clubs?\tTwo persons\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Two persons, may require a different type of, golf club) -> Two persons (4879ms)\nWhat companies manufacture golf clubs?\tyoull\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (youll, find, the Tangle Ridge Golf Club) -> youll (4863ms)\nWhat companies manufacture golf clubs?\tthe Golfing Hotels\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the Golfing Hotels, can be found at, the Salzkammergut Golf club) -> the Golfing Hotels (4895ms)\nWhat companies manufacture golf clubs?\tcan\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (can, find, a golf ? club) -> can (4887ms)\nWhat companies manufacture golf clubs?\tGolf Clubs\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golf Clubs, Find a large selection of, your favorite golf clubs) -> Golf Clubs (4855ms)\nWhat companies manufacture golf clubs?\tHurley\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Hurley, finds, golf clubs) -> Hurley (4855ms)\nWhat companies manufacture golf clubs?\tThe Fairways\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The Fairways, will be found just opposite, the golf club house) -> The Fairways (4903ms)\nWhat companies manufacture golf clubs?\tyou?ll\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (you?ll, find, the Aspen Golf Club) -> you?ll (4204ms)\nWhat companies manufacture golf clubs?\tthe distinct experience\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the distinct experience, found at, Bayside Resort Golf Club) -> the distinct experience (4887ms)\nWhat companies manufacture golf clubs?\tMizuno MP-67\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Mizuno MP-67, Type, Golf Club) -> Mizuno MP-67 (4855ms)\nWhat companies manufacture golf clubs?\tOne student\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (One student, found, a golf club) -> One student (4887ms)\nWhat companies manufacture golf clubs?\tparks and resorts\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (parks and resorts, are typed as, Golf Clubs) -> parks and resorts (4910ms)\nWhat companies manufacture golf clubs?\tNT mayor\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (NT mayor, found guilty of, golf club attack) -> NT mayor (4895ms)\nWhat companies manufacture golf clubs?\tbooties\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (booties, were created out of, golf club covers) -> booties (4855ms)\nWhat companies manufacture golf clubs?\t4 Description\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (4 Description, Find, Golf Clubs and golf equipment) -> 4 Description (4855ms)\nWhat companies manufacture golf clubs?\tNew Mexico\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (New Mexico, create one of, the premier multi-location golf clubs) -> New Mexico (4204ms)\nWhat companies manufacture golf clubs?\tSimilar technology\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Similar technology, may be found in, high end golf clubs) -> Similar technology (4871ms)\nWhat companies manufacture golf clubs?\tthe mountain\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the mountain, can be found, the Fort William Golf Club) -> the mountain (4806ms)\nWhat companies manufacture golf clubs?\tHood Canal\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf club) -> (Hood Canal, works part-time for, the local golf club) -> Hood Canal (4863ms)\nWhat companies manufacture golf clubs?\ta tee platform\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (a tee platform, found, an old golf club) -> a tee platform (4879ms)\nWhat companies manufacture golf clubs?\tCounty Golf Partnerships\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (County Golf Partnerships, can be found on, the ?For Golf Clubs) -> County Golf Partnerships (4887ms)\nWhat companies manufacture golf clubs?\tyou?ll\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (you?ll, find, Rhodes Ranch Golf Club) -> you?ll (4887ms)\nWhat companies manufacture golf clubs?\tWayne\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Wayne, had found, a special golf club) -> Wayne (4879ms)\nWhat companies manufacture golf clubs?\tFebruary 22 , 2012\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (February 22 , 2012, Find, Old Marsh Golf Club Homes) -> February 22 , 2012 (4367ms)\nWhat companies manufacture golf clubs?\tBanner\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Banner, find, new callaway golf clubs) -> Banner (4806ms)\nWhat companies manufacture golf clubs?\tTerms\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Terms, Used to Find, shoes Utility golf clubs) -> Terms (4879ms)\nWhat companies manufacture golf clubs?\tAtlanta\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Atlanta, could be found at, Towne Lake Hills Golf Club) -> Atlanta (4887ms)\nWhat companies manufacture golf clubs?\tpottery and roof tiles\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (pottery and roof tiles, were found at, Cumberwell Park Golf Club) -> pottery and roof tiles (4367ms)\nWhat companies manufacture golf clubs?\tEd\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Ed, found, some old , battered golf clubs) -> Ed (4895ms)\nWhat companies manufacture golf clubs?\tAre there many places\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Are there many places, find out more about, golf clubs) -> Are there many places (4855ms)\nWhat companies manufacture golf clubs?\tearlier this week DH\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (earlier this week DH, found a great deal on, golf clubs) -> earlier this week DH (4879ms)\nWhat companies manufacture golf clubs?\tHybrid golf clubs\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Hybrid golf clubs, are types of, golf clubs) -> Hybrid golf clubs (4903ms)\nWhat companies manufacture golf clubs?\tthe recession\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (the recession, has created a new hazard for, golf clubs) -> the recession (4855ms)\nWhat companies manufacture golf clubs?\tguests\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (guests, will find a number of, golf clubs) -> guests (4895ms)\nWhat companies manufacture golf clubs?\tPriceRunner US\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf club) -> (PriceRunner US, compare prices on, Golf Club) -> PriceRunner US (4903ms)\nWhat companies manufacture golf clubs?\tgolfsurplussalesman.com\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (golfsurplussalesman.com, Find, golf clubs) -> golfsurplussalesman.com (4863ms)\nWhat companies manufacture golf clubs?\tKippure Estate you?ll\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Kippure Estate you?ll, find, South County Golf Club) -> Kippure Estate you?ll (4887ms)\nWhat companies manufacture golf clubs?\tthe menu\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (the menu, choose the type of, golf club) -> the menu (4910ms)\nWhat companies manufacture golf clubs?\tSuperman\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Superman, also created, the particular million dollar golf club) -> Superman (4871ms)\nWhat companies manufacture golf clubs?\tChampion\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Champion, can be found at, over 400 golf clubs) -> Champion (4903ms)\nWhat companies manufacture golf clubs?\tTitleist putters\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist putters, are a different type of, golf club) -> Titleist putters (4879ms)\nWhat companies manufacture golf clubs?\titems\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (items, Find, TaylorMade r7 Draw Wedge Golf Club) -> items (4903ms)\nWhat companies manufacture golf clubs?\tDaniel Grant\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Daniel Grant, finds, a golf club) -> Daniel Grant (4806ms)\nWhat companies manufacture golf clubs?\tDescription\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Description, Find, Golf Clubs and golf equipment) -> Description (4879ms)\nWhat companies manufacture golf clubs?\tYou?ll\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (You?ll, find, clone golf clubs) -> You?ll (4903ms)\nWhat companies manufacture golf clubs?\t06 Dec 11\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (06 Dec 11, Find, golf club special offers) -> 06 Dec 11 (4879ms)\nWhat companies manufacture golf clubs?\t0 Via\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (0 Via, Find, local Golf Clubs) -> 0 Via (4871ms)\nWhat companies manufacture golf clubs?\tthe most durable strength\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the most durable strength, found in, golf clubs) -> the most durable strength (4871ms)\nWhat companies manufacture golf clubs?\tTitleist Vokey Design Spin Milled Wedges\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist Vokey Design Spin Milled Wedges, Type, Golf Club) -> Titleist Vokey Design Spin Milled Wedges (4902ms)\nWhat companies manufacture golf clubs?\trmccoy1234's types\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (rmccoy1234's types, Types, Seminole Golf Club) -> rmccoy1234's types (4895ms)\nWhat companies manufacture golf clubs?\tTitleist PRO TITANIUM 905S\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist PRO TITANIUM 905S, Type, Golf Club) -> Titleist PRO TITANIUM 905S (4204ms)\nWhat companies manufacture golf clubs?\tearth\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (earth, was moved to create, the NEW Longbow Golf Club) -> earth (4855ms)\nWhat companies manufacture golf clubs?\tThe iron\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf club) -> (The iron, is another type of, golf club) -> The iron (4910ms)\nWhat companies manufacture golf clubs?\tGolf Equipment\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf club) -> (Golf Equipment, Compare prices on, golf clubs) -> Golf Equipment (4910ms)\nWhat companies manufacture golf clubs?\tLets\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Lets, find, the perfect golf club) -> Lets (4204ms)\nWhat companies manufacture golf clubs?\tIndia\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (India, was created in, discount golf clubs 1829) -> India (4440ms)\nWhat companies manufacture golf clubs?\tBing\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Bing, Find great low prices on, Cobra golf clubs) -> Bing (4855ms)\nWhat companies manufacture golf clubs?\ta lost or\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (a lost or, found, golf club) -> a lost or (4871ms)\nWhat companies manufacture golf clubs?\tBirmingham\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Birmingham, Find, local Golf Clubs) -> Birmingham (4887ms)\nWhat companies manufacture golf clubs?\t06 Dec 11 03 :14\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (06 Dec 11 03 :14, Find, golf club events) -> 06 Dec 11 03 :14 (4871ms)\nWhat companies manufacture golf clubs?\tYou?ll\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (You?ll, find, Nike golf clubs) -> You?ll (4895ms)\nWhat companies manufacture golf clubs?\tPING\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (PING, has created a set of, custom-fitted golf clubs) -> PING (4440ms)\nWhat companies manufacture golf clubs?\tTitleist PT 906F2\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist PT 906F2, Type, Golf Club) -> Titleist PT 906F2 (4903ms)\nWhat companies manufacture golf clubs?\tGolfing fans\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golfing fans, will find, 4 golf clubs) -> Golfing fans (4855ms)\nWhat companies manufacture golf clubs?\tIrons\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Irons, are those type of, golf clubs) -> Irons (4895ms)\nWhat companies manufacture golf clubs?\tthe bigger manufacturers\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (the bigger manufacturers, are creating, golf clubs) -> the bigger manufacturers (4902ms)\nWhat companies manufacture golf clubs?\tThe hitting stalls\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The hitting stalls, found in, the Golf Club) -> The hitting stalls (4806ms)\nWhat companies manufacture golf clubs?\tScotty Cameron Newport Beach\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Scotty Cameron Newport Beach, Type, Golf Club) -> Scotty Cameron Newport Beach (4895ms)\nWhat companies manufacture golf clubs?\tA player\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (A player, needs different type of, golf clubs) -> A player (4806ms)\nWhat companies manufacture golf clubs?\ta disability\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf club) -> (a disability, left him to work for, the Guthrie Center Golf Club) -> a disability (4366ms)\nWhat companies manufacture golf clubs?\tthe graphite\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the graphite, found in, golf clubs) -> the graphite (4806ms)\nWhat companies manufacture golf clubs?\tleft handed golf clubs\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (left handed golf clubs, can be found on, the cheap golf clubs) -> left handed golf clubs (4440ms)\nWhat companies manufacture golf clubs?\tA cavity-back iron\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (A cavity-back iron, is a type of, golf clubs) -> A cavity-back iron (4855ms)\nWhat companies manufacture golf clubs?\tMizuno MP-14\t3.1111111110990004\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Mizuno MP-14, Type, Golf Club) -> Mizuno MP-14 (4863ms)\nWhat companies manufacture golf clubs?\tThe company\t1.777777777765\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (The company, is also a major manufacturer of, golf shoes) -> The company (4917ms)\nWhat companies manufacture golf clubs?\t1992\t1.777777777765\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (1992, is a manufacturer of, golf simulators) -> 1992 (4910ms)\nWhat companies manufacture golf clubs?\tPride Golf Tee\t1.777777777765\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (Pride Golf Tee, has been the No.1 manufacturer of, golf tees) -> Pride Golf Tee (4917ms)\nWhat companies manufacture golf clubs?\tClub Car\t1.777777777765\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (Club Car, is the world 's leading manufacturer of, golf) -> Club Car (4917ms)\nWhat companies manufacture golf clubs?\tClub car\t1.777777777765\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (Club car, is a well ? known manufacturer of, golf vehicles) -> Club car (4918ms)\nWhat companies manufacture golf clubs?\tTGI\t1.777777777765\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (TGI, is a manufacturer of, golf equipment) -> TGI (4918ms)\nWhat companies manufacture golf clubs?\tTrue Temper Sports\t1.777777777765\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (True Temper Sports, is the leading manufacturer of, golf shafts) -> True Temper Sports (4918ms)\nWhat companies manufacture golf clubs?\tworkout wear\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (workout wear, are examples of, improper golfing attire) -> workout wear (4924ms)\nWhat companies manufacture golf clubs?\tlength\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (length, are often examples of, Perl Golf) -> length (4932ms)\nWhat companies manufacture golf clubs?\t6' Ball Retriever\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (6' Ball Retriever, is a great example of, a quality ' Golf) -> 6' Ball Retriever (4932ms)\nWhat companies manufacture golf clubs?\tThe Gull Lake View properties\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (The Gull Lake View properties, are examples of, public golf) -> The Gull Lake View properties (4918ms)\nWhat companies manufacture golf clubs?\t2011 ?\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (2011 ?, is a delightful example of, inland golf) -> 2011 ? (4925ms)\nWhat companies manufacture golf clubs?\tSock\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Sock, is a fantastic example of, a top quality ' Golf) -> Sock (4932ms)\nWhat companies manufacture golf clubs?\t20'\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (20', is a great example of, a quality ' Golf) -> 20' (4918ms)\nWhat companies manufacture golf clubs?\tThe Course\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (The Course, is a fine example of, traditional links golf) -> The Course (4924ms)\nWhat companies manufacture golf clubs?\tTarget Machine\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Target Machine, is a great example of, a top quality ' Golf) -> Target Machine (4924ms)\nWhat companies manufacture golf clubs?\tWheels\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Wheels, is a fantastic example of, a premium ' Golf) -> Wheels (4925ms)\nWhat companies manufacture golf clubs?\tUkiah Municipal Golf Course\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Ukiah Municipal Golf Course, is a shining example of, golf) -> Ukiah Municipal Golf Course (4925ms)\nWhat companies manufacture golf clubs?\ta few miles\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (a few miles, are examples of, early golf venues) -> a few miles (4925ms)\nWhat companies manufacture golf clubs?\tSandy Lodge\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Sandy Lodge, is a superb example of, inland links golf) -> Sandy Lodge (4924ms)\nWhat companies manufacture golf clubs?\tThe Bay Course\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (The Bay Course, is an excellent example of, resort golf) -> The Bay Course (4924ms)\nWhat companies manufacture golf clubs?\twater\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (water, are good examples of, the golf course difficulty) -> water (4925ms)\nWhat companies manufacture golf clubs?\tTylney Park\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Tylney Park, is an example of, the very best inland golf) -> Tylney Park (4925ms)\nWhat companies manufacture golf clubs?\tthe links\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (the links, is a classic example of, Scottish seaside golf) -> the links (4925ms)\nWhat companies manufacture golf clubs?\tGolf Balls\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Golf Balls, is a fantastic example of, a premium ' Golf) -> Golf Balls (4932ms)\nWhat companies manufacture golf clubs?\t13.00'\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (13.00', is a super example of, a top quality ' Golf) -> 13.00' (4925ms)\nWhat companies manufacture golf clubs?\tBalls 2 Dozen'\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Balls 2 Dozen', is a brilliant example of, a quality ' Golf) -> Balls 2 Dozen' (4932ms)\nWhat companies manufacture golf clubs?\tThe sixth\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (The sixth, is an excellent example of, option golf) -> The sixth (4925ms)\nWhat companies manufacture golf clubs?\tthe layout\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (the layout, is an excellent example of, resort golf) -> the layout (4932ms)\nWhat companies manufacture golf clubs?\ttournaments\t1.666666666655\tWhat companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (tournaments, is just another example of, the Golf Association) -> tournaments (4918ms)\nWhat companies manufacture golf clubs?\tcheap golf clubs shop\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (cheap golf clubs shop, offers best price on, the new golf sets) -> cheap golf clubs shop (5013ms)\nWhat companies manufacture golf clubs?\tWentworth Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Wentworth Club, Type, Golf Facility) -> Wentworth Club (4970ms)\nWhat companies manufacture golf clubs?\tVAGdashCAN V5.17\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (VAGdashCAN V5.17, can work for, GolfV,Touran) -> VAGdashCAN V5.17 (5028ms)\nWhat companies manufacture golf clubs?\tMuthaiga Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Muthaiga Country Club, Type, Golf Facility) -> Muthaiga Country Club (5009ms)\nWhat companies manufacture golf clubs?\tcare\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (care, create, a Ski , Golf) -> care (5016ms)\nWhat companies manufacture golf clubs?\tgolf balls\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (golf balls, can work wonders for, your golfing skills) -> golf balls (4984ms)\nWhat companies manufacture golf clubs?\tMeriwether National Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Meriwether National Golf Club, Type, Golf Facility) -> Meriwether National Golf Club (4939ms)\nWhat companies manufacture golf clubs?\tWhispering Pines Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Whispering Pines Golf Club, Type, Golf Facility) -> Whispering Pines Golf Club (5013ms)\nWhat companies manufacture golf clubs?\tLandis\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Landis, previously worked for, the OGA Golf Course) -> Landis (5026ms)\nWhat companies manufacture golf clubs?\thome values\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (home values, also are pushing the price of, golf courses) -> home values (5030ms)\nWhat companies manufacture golf clubs?\tfellow addicts\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (fellow addicts, find out more about, golf) -> fellow addicts (4958ms)\nWhat companies manufacture golf clubs?\ta little guidance\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (a little guidance, need to work on for, a golf specific workout) -> a little guidance (5022ms)\nWhat companies manufacture golf clubs?\tPrairie View Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Prairie View Golf Course, Type, Golf Course) -> Prairie View Golf Course (5026ms)\nWhat companies manufacture golf clubs?\tHuntsville Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Huntsville Golf Club, Type, Golf Facility) -> Huntsville Golf Club (4974ms)\nWhat companies manufacture golf clubs?\tWorld Woods Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (World Woods Golf Club, Type, Golf Facility) -> World Woods Golf Club (5004ms)\nWhat companies manufacture golf clubs?\tSleepy Hollow Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Sleepy Hollow Golf Course, Type, Golf Course) -> Sleepy Hollow Golf Course (4979ms)\nWhat companies manufacture golf clubs?\tSports aficionados\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Sports aficionados, will find top-rate facilities for, golf) -> Sports aficionados (4970ms)\nWhat companies manufacture golf clubs?\tLehman\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Lehman, created, the golf course) -> Lehman (5026ms)\nWhat companies manufacture golf clubs?\tOak Island\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Oak Island, find, golf) -> Oak Island (5022ms)\nWhat companies manufacture golf clubs?\tEach business\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Each business, created, a little golf hole) -> Each business (5022ms)\nWhat companies manufacture golf clubs?\tStowe Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Stowe Country Club, Type, Golf Facility) -> Stowe Country Club (4992ms)\nWhat companies manufacture golf clubs?\tSimple Swing\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Simple Swing, works great for, woods or irons Longest Golf Swing) -> Simple Swing (5026ms)\nWhat companies manufacture golf clubs?\tthe hot women\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the hot women, working for, The Golf Channel) -> the hot women (5013ms)\nWhat companies manufacture golf clubs?\ta chance\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (a chance, found About, Golf) -> a chance (5004ms)\nWhat companies manufacture golf clubs?\ta lot 75 %\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (a lot 75 %, have a scenic price of, a emerging golf buggy) -> a lot 75 % (5019ms)\nWhat companies manufacture golf clubs?\tCleveland Golf\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Cleveland Golf, understands the importance of finding, golf) -> Cleveland Golf (4979ms)\nWhat companies manufacture golf clubs?\t2011 There\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (2011 There, are many different types of, golf equipment) -> 2011 There (5028ms)\nWhat companies manufacture golf clubs?\tColonial Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Colonial Country Club, Type, Golf Facility) -> Colonial Country Club (4945ms)\nWhat companies manufacture golf clubs?\tthe Lakes Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Lakes Golf Course, find, golf) -> the Lakes Golf Course (5000ms)\nWhat companies manufacture golf clubs?\tGolf Course at Memphis Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Golf Course at Memphis Country Club, Type, Golf Course) -> Golf Course at Memphis Country Club (5004ms)\nWhat companies manufacture golf clubs?\tPrince Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Prince Course, Type, Golf Course) -> Prince Course (4932ms)\nWhat companies manufacture golf clubs?\tTotteridge Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Totteridge Golf Club, Type, Golf Facility) -> Totteridge Golf Club (4988ms)\nWhat companies manufacture golf clubs?\tThe Golf Club of Oklahoma Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Golf Club of Oklahoma Golf Course, Type, Golf Course) -> The Golf Club of Oklahoma Golf Course (4979ms)\nWhat companies manufacture golf clubs?\ta team\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (a team, really works properly for, just one golf player) -> a team (5013ms)\nWhat companies manufacture golf clubs?\tSan Francisco Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (San Francisco Golf Club, Type, Golf Course) -> San Francisco Golf Club (5022ms)\nWhat companies manufacture golf clubs?\tthe top golf\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the top golf, Find, Golf) -> the top golf (5024ms)\nWhat companies manufacture golf clubs?\toutreach center\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (outreach center, created, the Zen Golf Center) -> outreach center (4979ms)\nWhat companies manufacture golf clubs?\tTurnhouse Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Turnhouse Golf Club, Type, Golf Facility) -> Turnhouse Golf Club (5009ms)\nWhat companies manufacture golf clubs?\tConnect\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Connect, create, your Disc Golf profile) -> Connect (4945ms)\nWhat companies manufacture golf clubs?\tTidewater Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Tidewater Golf Course, Type, Golf Course) -> Tidewater Golf Course (5028ms)\nWhat companies manufacture golf clubs?\tdetail\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (detail, will create a relaxing day of, golf) -> detail (5013ms)\nWhat companies manufacture golf clubs?\tthe wonderful palm trees\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the wonderful palm trees, create, a Golf course) -> the wonderful palm trees (5026ms)\nWhat companies manufacture golf clubs?\tPanorama Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Panorama Course, Type, Golf Course) -> Panorama Course (5004ms)\nWhat companies manufacture golf clubs?\tdid Tiger\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (did Tiger, find the time to play, golf) -> did Tiger (5016ms)\nWhat companies manufacture golf clubs?\tBeverly Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Beverly Country Club, Type, Golf Facility) -> Beverly Country Club (4996ms)\nWhat companies manufacture golf clubs?\tOcean Forest Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Ocean Forest Golf Course, Type, Golf Course) -> Ocean Forest Golf Course (5000ms)\nWhat companies manufacture golf clubs?\tNorth Course at Wilmington Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (North Course at Wilmington Country Club, Type, Golf Course) -> North Course at Wilmington Country Club (5004ms)\nWhat companies manufacture golf clubs?\tWedges\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Wedges, is a type of, golf equipment) -> Wedges (4969ms)\nWhat companies manufacture golf clubs?\tFind manufacturers\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Find manufacturers, Create, a golf business) -> Find manufacturers (4939ms)\nWhat companies manufacture golf clubs?\tBurnside Links\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Burnside Links, Type, Golf Course) -> Burnside Links (5016ms)\nWhat companies manufacture golf clubs?\tOrillia Volkswagen\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Orillia Volkswagen, offers great prices on, new Volkswagen Golf) -> Orillia Volkswagen (5022ms)\nWhat companies manufacture golf clubs?\tthe courses\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the courses, create, three unique golf experiences) -> the courses (5016ms)\nWhat companies manufacture golf clubs?\tHawks Ridge Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Hawks Ridge Golf Course, Type, Golf Course) -> Hawks Ridge Golf Course (5019ms)\nWhat companies manufacture golf clubs?\tWailea Old Blue Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Wailea Old Blue Course, Type, Golf Course) -> Wailea Old Blue Course (4958ms)\nWhat companies manufacture golf clubs?\tSkater Music\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Skater Music, Does n?t Work for, Golf ? Iain) -> Skater Music (5022ms)\nWhat companies manufacture golf clubs?\ta collaboration\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (a collaboration, created, a golf department) -> a collaboration (4965ms)\nWhat companies manufacture golf clubs?\tancient lava-flows\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (ancient lava-flows, creates, an unparalleled golf experience) -> ancient lava-flows (4979ms)\nWhat companies manufacture golf clubs?\tThe Lowest\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (The Lowest, priced, Golf Car Battery Chargers) -> The Lowest (4970ms)\nWhat companies manufacture golf clubs?\ta Mercedes S 500\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (a Mercedes S 500, has much higher prices than, a Volkswagon Golf) -> a Mercedes S 500 (4984ms)\nWhat companies manufacture golf clubs?\tDeal Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Deal Course, Type, Golf Course) -> Deal Course (4932ms)\nWhat companies manufacture golf clubs?\ta lot\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (a lot, created, a golf elbow) -> a lot (4997ms)\nWhat companies manufacture golf clubs?\tTour bags\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Tour bags, are the largest types of, golf bags) -> Tour bags (4992ms)\nWhat companies manufacture golf clubs?\tany family members or friends\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (any family members or friends, may be found in, golf) -> any family members or friends (4958ms)\nWhat companies manufacture golf clubs?\tMid Ocean Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Mid Ocean Club, Type, Golf Facility) -> Mid Ocean Club (4996ms)\nWhat companies manufacture golf clubs?\tYeamans Hall Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Yeamans Hall Golf Course, Type, Golf Course) -> Yeamans Hall Golf Course (5019ms)\nWhat companies manufacture golf clubs?\tProspector Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Prospector Golf Course, Type, Golf Course) -> Prospector Golf Course (5000ms)\nWhat companies manufacture golf clubs?\tCourse program\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Course program, creates affordable access to, golf) -> Course program (5013ms)\nWhat companies manufacture golf clubs?\tGary Panks\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Gary Panks, created, a golf course reminiscent) -> Gary Panks (4974ms)\nWhat companies manufacture golf clubs?\tSports enthusiasts\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Sports enthusiasts, will find, golf) -> Sports enthusiasts (5006ms)\nWhat companies manufacture golf clubs?\tDye\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Dye, created, a spectacular golf course) -> Dye (5016ms)\nWhat companies manufacture golf clubs?\tGod\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (God, created, golf) -> God (5028ms)\nWhat companies manufacture golf clubs?\t6168 Gene Hamm\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (6168 Gene Hamm, created, a golf course) -> 6168 Gene Hamm (4945ms)\nWhat companies manufacture golf clubs?\tDoris and Alfred Kaskel\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Doris and Alfred Kaskel, created, the golf resort) -> Doris and Alfred Kaskel (5026ms)\nWhat companies manufacture golf clubs?\tthe state\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the state, created, an exceptional golf experience) -> the state (4992ms)\nWhat companies manufacture golf clubs?\tSnodgrass\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Snodgrass, has worked for, Metro Golf Cars) -> Snodgrass (4965ms)\nWhat companies manufacture golf clubs?\tThe Legend Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Legend Course, Type, Golf Course) -> The Legend Course (5024ms)\nWhat companies manufacture golf clubs?\tCondo World\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Condo World, offers the best prices on, their golf packages) -> Condo World (4996ms)\nWhat companies manufacture golf clubs?\tHotel guests\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Hotel guests, will find convenient access to, golf) -> Hotel guests (5019ms)\nWhat companies manufacture golf clubs?\tEcco\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Ecco, has created the new look of, golf) -> Ecco (4932ms)\nWhat companies manufacture golf clubs?\tKansas Golf Holidays\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Kansas Golf Holidays, Find, golf vacations) -> Kansas Golf Holidays (4984ms)\nWhat companies manufacture golf clubs?\t24 Hour Fitness Inc. Jens\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (24 Hour Fitness Inc. Jens, worked for, American Golf) -> 24 Hour Fitness Inc. Jens (5026ms)\nWhat companies manufacture golf clubs?\tFirethorn West Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Firethorn West Golf Course, Type, Golf Course) -> Firethorn West Golf Course (4992ms)\nWhat companies manufacture golf clubs?\tThousands of teachers and locations\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Thousands of teachers and locations, find, a golf) -> Thousands of teachers and locations (4945ms)\nWhat companies manufacture golf clubs?\tInstruction\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Instruction, has worked for, the Jim McLean Golf School) -> Instruction (5013ms)\nWhat companies manufacture golf clubs?\tthe annual submissions\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (the annual submissions, are different types of, golf balls) -> the annual submissions (5024ms)\nWhat companies manufacture golf clubs?\tUF\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (UF, is working for, Marriott Golf) -> UF (5019ms)\nWhat companies manufacture golf clubs?\tSuch a system\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Such a system, works reasonably for, golf) -> Such a system (4945ms)\nWhat companies manufacture golf clubs?\tLeavens Volkswagen\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Leavens Volkswagen, offers great prices on, new Volkswagen Golf) -> Leavens Volkswagen (4974ms)\nWhat companies manufacture golf clubs?\tBoiling Spring Lakes\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Boiling Spring Lakes, find, golf) -> Boiling Spring Lakes (4945ms)\nWhat companies manufacture golf clubs?\tVidago Golf Course, Portugal\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Vidago Golf Course, Portugal, Type, Golf Course) -> Vidago Golf Course, Portugal (4964ms)\nWhat companies manufacture golf clubs?\tSan Roque Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (San Roque Club, Type, Golf Facility) -> San Roque Club (4965ms)\nWhat companies manufacture golf clubs?\tLaurel Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Laurel Golf Course, Type, Golf Course) -> Laurel Golf Course (5004ms)\nWhat companies manufacture golf clubs?\tValderrama\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Valderrama, is his type of, golf course) -> Valderrama (5016ms)\nWhat companies manufacture golf clubs?\tThe 44-year-old Whan\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (The 44-year-old Whan, previously worked for, TaylorMade Golf) -> The 44-year-old Whan (4945ms)\nWhat companies manufacture golf clubs?\tan event\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (an event, creates, a golfing opportunity) -> an event (4974ms)\nWhat companies manufacture golf clubs?\tClovelly Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Clovelly Golf Club, Type, Golf Facility) -> Clovelly Golf Club (5026ms)\nWhat companies manufacture golf clubs?\taddition\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (addition, find, golf) -> addition (4988ms)\nWhat companies manufacture golf clubs?\tthe boundary layer\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the boundary layer, works so well for, golf balls) -> the boundary layer (5009ms)\nWhat companies manufacture golf clubs?\tLazarus\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Lazarus, works for, The Golf Channel) -> Lazarus (5009ms)\nWhat companies manufacture golf clubs?\tGuests\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Guests, can also find, golf) -> Guests (5024ms)\nWhat companies manufacture golf clubs?\tThe faster face\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The faster face, creates, faster golf ball speeds) -> The faster face (5028ms)\nWhat companies manufacture golf clubs?\tIcon ComLynx\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Icon ComLynx, works for, Championship Rally Awesome Golf buttons) -> Icon ComLynx (4958ms)\nWhat companies manufacture golf clubs?\tHard cases\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Hard cases, are one type of, travel golf bag) -> Hard cases (4988ms)\nWhat companies manufacture golf clubs?\tEmerald Valley Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Emerald Valley Golf Club, Type, Golf Facility) -> Emerald Valley Golf Club (4939ms)\nWhat companies manufacture golf clubs?\tWe?ve\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (We?ve, created, Golfing Secrets) -> We?ve (5026ms)\nWhat companies manufacture golf clubs?\tPlay\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Play, find, golf) -> Play (4996ms)\nWhat companies manufacture golf clubs?\t?These\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (?These, are two completely different types of, golf courses) -> ?These (5009ms)\nWhat companies manufacture golf clubs?\tSt James Plantation\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (St James Plantation, find, golf) -> St James Plantation (4939ms)\nWhat companies manufacture golf clubs?\tBald Head Island\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Bald Head Island, find, golf) -> Bald Head Island (4939ms)\nWhat companies manufacture golf clubs?\tthe four following elements\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the four following elements, creates, great golf courses) -> the four following elements (4988ms)\nWhat companies manufacture golf clubs?\tThe Montagu\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Montagu, Type, Golf Course) -> The Montagu (4939ms)\nWhat companies manufacture golf clubs?\tWilmington\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Wilmington, find, golf) -> Wilmington (4988ms)\nWhat companies manufacture golf clubs?\tthe rawest emotions\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the rawest emotions, found in, golf) -> the rawest emotions (5004ms)\nWhat companies manufacture golf clubs?\tNews\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (News, Get The Best Price On, Your Myrtle Beach Golf Vacation) -> News (5019ms)\nWhat companies manufacture golf clubs?\tRichard\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Richard, found, golf) -> Richard (4992ms)\nWhat companies manufacture golf clubs?\tKerwin\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Kerwin, works for, Minnewasta Golf) -> Kerwin (5001ms)\nWhat companies manufacture golf clubs?\tEssex County Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Essex County Club, Type, Golf Facility) -> Essex County Club (4970ms)\nWhat companies manufacture golf clubs?\tNearly everybody\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Nearly everybody, would want to find out about, golfing) -> Nearly everybody (5001ms)\nWhat companies manufacture golf clubs?\tEden Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Eden Course, Type, Golf Course) -> Eden Course (5004ms)\nWhat companies manufacture golf clubs?\tSam\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Sam, can be found playing, golf) -> Sam (5009ms)\nWhat companies manufacture golf clubs?\tThe rolling hills\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The rolling hills, create, a great setting for golf) -> The rolling hills (5004ms)\nWhat companies manufacture golf clubs?\tEverett\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Everett, created, a disc golf course) -> Everett (4979ms)\nWhat companies manufacture golf clubs?\tGarden Grove\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Garden Grove, offers great prices on, new Volkswagen Golf) -> Garden Grove (4996ms)\nWhat companies manufacture golf clubs?\tGuest New Zealand\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Guest New Zealand, create, golf tours) -> Guest New Zealand (5024ms)\nWhat companies manufacture golf clubs?\tTimuquana Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Timuquana Country Club, Type, Golf Facility) -> Timuquana Country Club (5016ms)\nWhat companies manufacture golf clubs?\tplan menu\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (plan menu, keep prices reasonable for, golf and menu) -> plan menu (5016ms)\nWhat companies manufacture golf clubs?\tJustin\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Justin, has worked for, a golf course) -> Justin (4974ms)\nWhat companies manufacture golf clubs?\tLloyd Perino\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Lloyd Perino, is finding time to, golf) -> Lloyd Perino (5009ms)\nWhat companies manufacture golf clubs?\tValderrama Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Valderrama Golf Course, Type, Golf Course) -> Valderrama Golf Course (4965ms)\nWhat companies manufacture golf clubs?\tAviara Golf Academy\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Aviara Golf Academy, Type, Golf Facility) -> Aviara Golf Academy (5024ms)\nWhat companies manufacture golf clubs?\tGros Morne Golf Resort\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Gros Morne Golf Resort, Type, Golf Facility) -> Gros Morne Golf Resort (4988ms)\nWhat companies manufacture golf clubs?\tthe same dimples\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the same dimples, found on, golf) -> the same dimples (5019ms)\nWhat companies manufacture golf clubs?\tthe Curtis sisters\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the Curtis sisters, created, golf 's Curtis Cup) -> the Curtis sisters (5001ms)\nWhat companies manufacture golf clubs?\ttour bags\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (tour bags, are the largest type of, golf bag) -> tour bags (4958ms)\nWhat companies manufacture golf clubs?\tMadonna\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Madonna, created, a golf academy) -> Madonna (4979ms)\nWhat companies manufacture golf clubs?\tthe Mar Menor region\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Mar Menor region, will also find, golf) -> the Mar Menor region (4952ms)\nWhat companies manufacture golf clubs?\tclick\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (click, create, your own golf itinerary) -> click (4974ms)\nWhat companies manufacture golf clubs?\tLou\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Lou, can be found, golfing) -> Lou (4992ms)\nWhat companies manufacture golf clubs?\t2004 ...AND THEN GOD\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (2004 ...AND THEN GOD, CREATED, GOLF-BOOK REVIEW) -> 2004 ...AND THEN GOD (5024ms)\nWhat companies manufacture golf clubs?\tSwan Point Yacht & Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Swan Point Yacht & Country Club, Type, Golf Facility) -> Swan Point Yacht & Country Club (5013ms)\nWhat companies manufacture golf clubs?\tPleasant Valley Blue Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Pleasant Valley Blue Course, Type, Golf Course) -> Pleasant Valley Blue Course (4958ms)\nWhat companies manufacture golf clubs?\tThe actual edge putter\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (The actual edge putter, would work for, those golf players) -> The actual edge putter (4970ms)\nWhat companies manufacture golf clubs?\tOneida Golf and Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Oneida Golf and Country Club, Type, Golf Facility) -> Oneida Golf and Country Club (5019ms)\nWhat companies manufacture golf clubs?\tthe ballfinder scout\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the ballfinder scout, finds, golf balls) -> the ballfinder scout (4974ms)\nWhat companies manufacture golf clubs?\tA recent project\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (A recent project, create, a golf-course) -> A recent project (5022ms)\nWhat companies manufacture golf clubs?\tPortland Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Portland Golf Club, Type, Golf Facility) -> Portland Golf Club (4988ms)\nWhat companies manufacture golf clubs?\tMark\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Mark, worked for, Cleveland Golf) -> Mark (4958ms)\nWhat companies manufacture golf clubs?\tBlack Hall Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Black Hall Club, Type, Golf Facility) -> Black Hall Club (5019ms)\nWhat companies manufacture golf clubs?\tThe Ranch Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Ranch Golf Course, Type, Golf Course) -> The Ranch Golf Course (4958ms)\nWhat companies manufacture golf clubs?\t2/3 Ball This\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (2/3 Ball This, is a type of, golf bet) -> 2/3 Ball This (4952ms)\nWhat companies manufacture golf clubs?\tThe Stanwich Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Stanwich Club, Type, Golf Facility) -> The Stanwich Club (4979ms)\nWhat companies manufacture golf clubs?\tWPA work crews\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (WPA work crews, created, the golf course) -> WPA work crews (4974ms)\nWhat companies manufacture golf clubs?\tMrs. Barrett\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Mrs. Barrett, finds time for, golf) -> Mrs. Barrett (5026ms)\nWhat companies manufacture golf clubs?\tTravel information\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Travel information, find, golf) -> Travel information (4958ms)\nWhat companies manufacture golf clubs?\tquestions\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (questions, is the typical price of, a Myrtle Beach golf package) -> questions (4945ms)\nWhat companies manufacture golf clubs?\tDunluce Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Dunluce Course, Type, Golf Course) -> Dunluce Course (5026ms)\nWhat companies manufacture golf clubs?\tLigaya\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Ligaya, can usually be found either playing, golf) -> Ligaya (5009ms)\nWhat companies manufacture golf clubs?\tthe disc athletes\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the disc athletes, created, disc golf) -> the disc athletes (4965ms)\nWhat companies manufacture golf clubs?\tNo page\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (No page, found in, Golf) -> No page (5000ms)\nWhat companies manufacture golf clubs?\tfriendly environment\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (friendly environment, creates a great atmosphere for, golf) -> friendly environment (5028ms)\nWhat companies manufacture golf clubs?\tcounterfeit\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (counterfeit, creates world of, golf) -> counterfeit (4988ms)\nWhat companies manufacture golf clubs?\tmen and women\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (men and women, also find, golf) -> men and women (5022ms)\nWhat companies manufacture golf clubs?\tEach bar location\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Each bar location, creates, their own golf hole) -> Each bar location (4945ms)\nWhat companies manufacture golf clubs?\tThe Army team\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (The Army team, works for, golf balls) -> The Army team (4945ms)\nWhat companies manufacture golf clubs?\tThe leaves\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (The leaves, so are the prices on, golf merchandise) -> The leaves (5028ms)\nWhat companies manufacture golf clubs?\tturn\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (turn, create, better golf shots) -> turn (5019ms)\nWhat companies manufacture golf clubs?\tthe Waterfront Park\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Waterfront Park, find, golf) -> the Waterfront Park (4974ms)\nWhat companies manufacture golf clubs?\tthe Taiwan Golf Association\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the Taiwan Golf Association, created, the Acer Golf Program) -> the Taiwan Golf Association (5013ms)\nWhat companies manufacture golf clubs?\tTom\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Tom, worked for, the Golf Digest instructional schools) -> Tom (5022ms)\nWhat companies manufacture golf clubs?\tthe feathers\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the feathers, creating, a hardened golf ball) -> the feathers (4992ms)\nWhat companies manufacture golf clubs?\tindividuals\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (individuals, find true passion in, golf) -> individuals (5013ms)\nWhat companies manufacture golf clubs?\tJock\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Jock, has worked for, Golf World) -> Jock (5001ms)\nWhat companies manufacture golf clubs?\tPresident Obama\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (President Obama, finds time to, golf) -> President Obama (5024ms)\nWhat companies manufacture golf clubs?\tSouthwind Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Southwind Country Club, Type, Golf Facility) -> Southwind Country Club (4945ms)\nWhat companies manufacture golf clubs?\tOne important note\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (One important note, would be the price of, the iGolf) -> One important note (4992ms)\nWhat companies manufacture golf clubs?\tthe Caswell Beach\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Caswell Beach, find, golf) -> the Caswell Beach (4970ms)\nWhat companies manufacture golf clubs?\tSonocaddie\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Sonocaddie, is another type of, golf) -> Sonocaddie (5013ms)\nWhat companies manufacture golf clubs?\tage and gender\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (age and gender, find, Golf) -> age and gender (5013ms)\nWhat companies manufacture golf clubs?\tThe Country Club of Virginia\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Country Club of Virginia, Type, Golf Facility) -> The Country Club of Virginia (4979ms)\nWhat companies manufacture golf clubs?\tI?ve\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (I?ve, worked for, Pestana Golf Resorts) -> I?ve (5001ms)\nWhat companies manufacture golf clubs?\tnative Scotsman Donald J. Ross\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (native Scotsman Donald J. Ross, created, 23 golf courses) -> native Scotsman Donald J. Ross (4984ms)\nWhat companies manufacture golf clubs?\tJay\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Jay, found the game of, golf) -> Jay (5016ms)\nWhat companies manufacture golf clubs?\tTredegar and Rhymney Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Tredegar and Rhymney Golf Club, Type, Golf Facility) -> Tredegar and Rhymney Golf Club (4939ms)\nWhat companies manufacture golf clubs?\tThe Reserve Vineyards and Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Reserve Vineyards and Golf Club, Type, Golf Facility) -> The Reserve Vineyards and Golf Club (4992ms)\nWhat companies manufacture golf clubs?\tMaspalomas Golf, Gran Canaria, Spain\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Maspalomas Golf, Gran Canaria, Spain, Type, Golf Course) -> Maspalomas Golf, Gran Canaria, Spain (5022ms)\nWhat companies manufacture golf clubs?\tthe surrounding mountains\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the surrounding mountains, create a great setting for, golf) -> the surrounding mountains (4932ms)\nWhat companies manufacture golf clubs?\tmore putts\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (more putts, creates, a lower golf disability) -> more putts (5004ms)\nWhat companies manufacture golf clubs?\tgolf\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (golf, there are 3 different types of, golf grip) -> golf (4939ms)\nWhat companies manufacture golf clubs?\tThe Mountain Course at Hidden Valley Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Mountain Course at Hidden Valley Country Club, Type, Golf Course) -> The Mountain Course at Hidden Valley Country Club (5019ms)\nWhat companies manufacture golf clubs?\tthe author\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the author, Find more great articles on, golf) -> the author (5024ms)\nWhat companies manufacture golf clubs?\tThe two coaches\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The two coaches, created, the Pacific Golf Academy) -> The two coaches (4984ms)\nWhat companies manufacture golf clubs?\tan opportunity\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (an opportunity, create, a golf course) -> an opportunity (5016ms)\nWhat companies manufacture golf clubs?\tThe Woodlands Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Woodlands Golf Course, Type, Golf Facility) -> The Woodlands Golf Course (4958ms)\nWhat companies manufacture golf clubs?\tDon?t\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Don?t, pay full price for, golf) -> Don?t (4988ms)\nWhat companies manufacture golf clubs?\tHuntingdon Valley Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Huntingdon Valley Country Club, Type, Golf Facility) -> Huntingdon Valley Country Club (5004ms)\nWhat companies manufacture golf clubs?\tCountry Club of Vermont\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Country Club of Vermont, Type, Golf Facility) -> Country Club of Vermont (5026ms)\nWhat companies manufacture golf clubs?\twww.charlestongolfguide.com\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (www.charlestongolfguide.com, price, your custom golf vacation) -> www.charlestongolfguide.com (4997ms)\nWhat companies manufacture golf clubs?\tThe Preserve Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Preserve Golf Course, Type, Golf Course) -> The Preserve Golf Course (4939ms)\nWhat companies manufacture golf clubs?\tIronbridge Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Ironbridge Golf Club, Type, Golf Facility) -> Ironbridge Golf Club (4939ms)\nWhat companies manufacture golf clubs?\tSC\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (SC, has a great price on, a Masters Week Golf Special) -> SC (5024ms)\nWhat companies manufacture golf clubs?\tFranklin Hills Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Franklin Hills Country Club, Type, Golf Facility) -> Franklin Hills Country Club (4988ms)\nWhat companies manufacture golf clubs?\tthe committee\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the committee, worked for, golf companies) -> the committee (4965ms)\nWhat companies manufacture golf clubs?\tNo 2011-2012 events\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (No 2011-2012 events, were found for, Golf) -> No 2011-2012 events (4979ms)\nWhat companies manufacture golf clubs?\tRussell\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Russell, created, Golf World Monday) -> Russell (5019ms)\nWhat companies manufacture golf clubs?\tthe golf course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the golf course, find, golf) -> the golf course (4974ms)\nWhat companies manufacture golf clubs?\tThe R&A\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (The R&A, to working for, golf) -> The R&A (5009ms)\nWhat companies manufacture golf clubs?\tthe genius people\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the genius people, create, the snow golf) -> the genius people (4997ms)\nWhat companies manufacture golf clubs?\tJackson Hole Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Jackson Hole Golf Course, Type, Golf Course) -> Jackson Hole Golf Course (4984ms)\nWhat companies manufacture golf clubs?\tWest\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (West, has found, golf) -> West (4984ms)\nWhat companies manufacture golf clubs?\tFalkland Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Falkland Golf Club, Type, Golf Facility) -> Falkland Golf Club (4996ms)\nWhat companies manufacture golf clubs?\televation changes\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (elevation changes, create, challenging golf holes) -> elevation changes (4984ms)\nWhat companies manufacture golf clubs?\tTheR&A The R&Ais\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (TheR&A The R&Ais, committed to working for, golf) -> TheR&A The R&Ais (4932ms)\nWhat companies manufacture golf clubs?\tClick\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Click, create, your golf vacation) -> Click (5013ms)\nWhat companies manufacture golf clubs?\tVintage Mountain Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Vintage Mountain Course, Type, Golf Course) -> Vintage Mountain Course (5009ms)\nWhat companies manufacture golf clubs?\tOakbourne Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Oakbourne Country Club, Type, Golf Facility) -> Oakbourne Country Club (5019ms)\nWhat companies manufacture golf clubs?\twebcams\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (webcams, find out more about, golf) -> webcams (5019ms)\nWhat companies manufacture golf clubs?\tinformation\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (information, find, golf) -> information (4979ms)\nWhat companies manufacture golf clubs?\tRaymond Floyd and Tom Jackson\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Raymond Floyd and Tom Jackson, created, a golf masterpiece) -> Raymond Floyd and Tom Jackson (5026ms)\nWhat companies manufacture golf clubs?\tthe Carolina National Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Carolina National Golf Course, find, golf) -> the Carolina National Golf Course (5001ms)\nWhat companies manufacture golf clubs?\tValderrama Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Valderrama Golf Club, Type, Golf Facility) -> Valderrama Golf Club (5016ms)\nWhat companies manufacture golf clubs?\tthe term\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (the term, is actually a specific type of, golf course) -> the term (4969ms)\nWhat companies manufacture golf clubs?\tCharlotte\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Charlotte, created, the Zen Golf Center) -> Charlotte (4952ms)\nWhat companies manufacture golf clubs?\tNorth Shore Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (North Shore Country Club, Type, Golf Facility) -> North Shore Country Club (4965ms)\nWhat companies manufacture golf clubs?\tTavern Creek Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Tavern Creek Course, Type, Golf Course) -> Tavern Creek Course (4952ms)\nWhat companies manufacture golf clubs?\tleft-handed people\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (left-handed people, have found playing, golf) -> left-handed people (4984ms)\nWhat companies manufacture golf clubs?\tPleasant Valley Yellow Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Pleasant Valley Yellow Course, Type, Golf Course) -> Pleasant Valley Yellow Course (4965ms)\nWhat companies manufacture golf clubs?\tBobby's Legacy Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Bobby's Legacy Golf Course, Type, Golf Course) -> Bobby's Legacy Golf Course (4974ms)\nWhat companies manufacture golf clubs?\tSan Diego\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (San Diego, creates, innovative golf products) -> San Diego (5028ms)\nWhat companies manufacture golf clubs?\tsmaller sized golf club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (smaller sized golf club, create their knowledge in, golfing) -> smaller sized golf club (5004ms)\nWhat companies manufacture golf clubs?\tNess\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Ness, finds little time to, golf) -> Ness (5013ms)\nWhat companies manufacture golf clubs?\ttourist attractions\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (tourist attractions, find opportunities for, golfing) -> tourist attractions (5016ms)\nWhat companies manufacture golf clubs?\tFred\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Fred, found, golf) -> Fred (4970ms)\nWhat companies manufacture golf clubs?\tThe undulating countryside\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The undulating countryside, creates, the perfect golf terrain) -> The undulating countryside (4979ms)\nWhat companies manufacture golf clubs?\tJohnston\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Johnston, created, a unique golf course) -> Johnston (5009ms)\nWhat companies manufacture golf clubs?\tThe Peninsula Golf and Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Peninsula Golf and Country Club, Type, Golf Facility) -> The Peninsula Golf and Country Club (5026ms)\nWhat companies manufacture golf clubs?\tOlympia Fields Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Olympia Fields Country Club, Type, Golf Facility) -> Olympia Fields Country Club (4974ms)\nWhat companies manufacture golf clubs?\twe?ve\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (we?ve, also lowered the prices of, our group golf packages) -> we?ve (4988ms)\nWhat companies manufacture golf clubs?\tMichigan\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Michigan, created, an exceptional golf experience) -> Michigan (5030ms)\nWhat companies manufacture golf clubs?\tthe staff\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the staff, worked for, the Royal Canadian Golf Association) -> the staff (5004ms)\nWhat companies manufacture golf clubs?\tBellerive Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Bellerive Golf Course, Type, Golf Course) -> Bellerive Golf Course (5024ms)\nWhat companies manufacture golf clubs?\tCircling Raven Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Circling Raven Golf Course, Type, Golf Course) -> Circling Raven Golf Course (4932ms)\nWhat companies manufacture golf clubs?\tGolf All Stunning locations\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Golf All Stunning locations, create, stunning golf courses) -> Golf All Stunning locations (4932ms)\nWhat companies manufacture golf clubs?\tTiger Woods\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Tiger Woods, created a new interest in, golf) -> Tiger Woods (4969ms)\nWhat companies manufacture golf clubs?\tBelgrade Lakes Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Belgrade Lakes Golf Club, Type, Golf Facility) -> Belgrade Lakes Golf Club (5026ms)\nWhat companies manufacture golf clubs?\tThe Golf Club of Georgia Lakeside Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Golf Club of Georgia Lakeside Course, Type, Golf Course) -> The Golf Club of Georgia Lakeside Course (5004ms)\nWhat companies manufacture golf clubs?\tBlackmoor Golf Course .Lowest\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Blackmoor Golf Course .Lowest, priced, golf course) -> Blackmoor Golf Course .Lowest (4996ms)\nWhat companies manufacture golf clubs?\tSea Island Retreat Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Sea Island Retreat Course, Type, Golf Course) -> Sea Island Retreat Course (4939ms)\nWhat companies manufacture golf clubs?\tWadkins\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Wadkins, created, a golf course) -> Wadkins (4952ms)\nWhat companies manufacture golf clubs?\tTPC San Antonio\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (TPC San Antonio, Type, Golf Facility) -> TPC San Antonio (5009ms)\nWhat companies manufacture golf clubs?\tthe game\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the game, created, golf camps) -> the game (5021ms)\nWhat companies manufacture golf clubs?\tPasatiempo\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Pasatiempo, find the love for, golf) -> Pasatiempo (4996ms)\nWhat companies manufacture golf clubs?\tSt . James Plantation\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (St . James Plantation, find, golf) -> St . James Plantation (4992ms)\nWhat companies manufacture golf clubs?\tMizuno Golf\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Mizuno Golf, create, outstanding golf irons) -> Mizuno Golf (4984ms)\nWhat companies manufacture golf clubs?\tKo'olau Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Ko'olau Golf Club, Type, Golf Facility) -> Ko'olau Golf Club (4945ms)\nWhat companies manufacture golf clubs?\tEvert\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Evert, works for, Synergy Golf Partners LLC) -> Evert (4974ms)\nWhat companies manufacture golf clubs?\tgolf equipment\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (golf equipment, can make the price of, custom golf equipment) -> golf equipment (4952ms)\nWhat companies manufacture golf clubs?\tNorth\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (North, you?ll find the iconic home of, golf) -> North (4979ms)\nWhat companies manufacture golf clubs?\tspending time\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (spending time, has recently found a new passion for, golf) -> spending time (4997ms)\nWhat companies manufacture golf clubs?\tan expert skier\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (an expert skier, formerly worked for, Telluride Ski and Golf) -> an expert skier (5001ms)\nWhat companies manufacture golf clubs?\tIRONS 3-PW STEEL R\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (IRONS 3-PW STEEL R, Find, Golf) -> IRONS 3-PW STEEL R (4932ms)\nWhat companies manufacture golf clubs?\tImprovement\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Improvement, creates, better golf) -> Improvement (4965ms)\nWhat companies manufacture golf clubs?\tRenaissance Resort at World Golf Village\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Renaissance Resort at World Golf Village, Type, Golf Facility) -> Renaissance Resort at World Golf Village (5024ms)\nWhat companies manufacture golf clubs?\tetiquette\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (etiquette, is found in, golf) -> etiquette (5028ms)\nWhat companies manufacture golf clubs?\tWenvoe Castle Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Wenvoe Castle Golf Club, Type, Golf Facility) -> Wenvoe Castle Golf Club (5022ms)\nWhat companies manufacture golf clubs?\tBarck Obama\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Barck Obama, finds time for, golf) -> Barck Obama (4979ms)\nWhat companies manufacture golf clubs?\tRoyal Adelaide Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Royal Adelaide Golf Club, Type, Golf Facility) -> Royal Adelaide Golf Club (4984ms)\nWhat companies manufacture golf clubs?\tThe Quilted Lizard\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The Quilted Lizard, create, a custom golf piece) -> The Quilted Lizard (4958ms)\nWhat companies manufacture golf clubs?\tGolf Shopping\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Golf Shopping, Find the best prices at, the best golf stores) -> Golf Shopping (4932ms)\nWhat companies manufacture golf clubs?\tThe Duke\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The Duke, creates, a challenging golf experience) -> The Duke (4958ms)\nWhat companies manufacture golf clubs?\tAdidas\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Adidas, creates, golf shoes) -> Adidas (5022ms)\nWhat companies manufacture golf clubs?\tthe contractor\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the contractor, performed work for, a golf course) -> the contractor (5028ms)\nWhat companies manufacture golf clubs?\tOakburne\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Oakburne, Type, Golf Course) -> Oakburne (5022ms)\nWhat companies manufacture golf clubs?\tthe Harvard\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the Harvard, created, the Maine Golf Academy) -> the Harvard (4992ms)\nWhat companies manufacture golf clubs?\texquisite club amenities\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (exquisite club amenities, create, the marquee Troon Golf) -> exquisite club amenities (5016ms)\nWhat companies manufacture golf clubs?\t2003\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (2003, created, the Golf) -> 2003 (4945ms)\nWhat companies manufacture golf clubs?\ta secret?Tiger\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (a secret?Tiger, did n?t create, golf) -> a secret?Tiger (4970ms)\nWhat companies manufacture golf clubs?\tTeton Pines Country Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Teton Pines Country Club, Type, Golf Facility) -> Teton Pines Country Club (5028ms)\nWhat companies manufacture golf clubs?\tSearch ebay\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Search ebay, directly to find, Golf) -> Search ebay (5026ms)\nWhat companies manufacture golf clubs?\tstudents\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (students, are wanting to find out about, golf) -> students (4952ms)\nWhat companies manufacture golf clubs?\tProfessional golfers\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Professional golfers, will find, golfing) -> Professional golfers (5028ms)\nWhat companies manufacture golf clubs?\tLake Nona\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Lake Nona, is a different type of, golf course) -> Lake Nona (5013ms)\nWhat companies manufacture golf clubs?\tNCR South Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (NCR South Course, Type, Golf Course) -> NCR South Course (4996ms)\nWhat companies manufacture golf clubs?\tfull advantage\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (full advantage, find pleasure in, golf) -> full advantage (4974ms)\nWhat companies manufacture golf clubs?\tThe Pines Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Pines Golf Course, Type, Golf Course) -> The Pines Golf Course (4988ms)\nWhat companies manufacture golf clubs?\tDane Stanton\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Dane Stanton, There are many different types of, golf stores) -> Dane Stanton (5009ms)\nWhat companies manufacture golf clubs?\tReed\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Reed, find time to, golf) -> Reed (4974ms)\nWhat companies manufacture golf clubs?\tDutch Legacy Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Dutch Legacy Golf Course, Type, Golf Course) -> Dutch Legacy Golf Course (4952ms)\nWhat companies manufacture golf clubs?\tLighter weights\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Lighter weights, work great for, younger disc golf players) -> Lighter weights (4958ms)\nWhat companies manufacture golf clubs?\tOld Head Golf Links\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Old Head Golf Links, Type, Golf Course) -> Old Head Golf Links (4945ms)\nWhat companies manufacture golf clubs?\ttreatment\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (treatment, is a type of, grass golf) -> treatment (4988ms)\nWhat companies manufacture golf clubs?\tRidgewood Center Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Ridgewood Center Course, Type, Golf Course) -> Ridgewood Center Course (4939ms)\nWhat companies manufacture golf clubs?\tWakonda Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Wakonda Golf Course, Type, Golf Course) -> Wakonda Golf Course (5024ms)\nWhat companies manufacture golf clubs?\tthe classic kids book Pollyanna ?\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the classic kids book Pollyanna ?, create, a golf game) -> the classic kids book Pollyanna ? (5019ms)\nWhat companies manufacture golf clubs?\t700\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (700, are some type of, golfing membership) -> 700 (5001ms)\nWhat companies manufacture golf clubs?\tGolfasian\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Golfasian, create, a custom golf vacation) -> Golfasian (4984ms)\nWhat companies manufacture golf clubs?\tRobertson\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Robertson, works for, Henry Brunton Golf) -> Robertson (5028ms)\nWhat companies manufacture golf clubs?\tDoha Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Doha Golf Club, Type, Golf Facility) -> Doha Golf Club (5000ms)\nWhat companies manufacture golf clubs?\tputter 2-Ball Golf\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (putter 2-Ball Golf, is a revolutionary new type of, golf game) -> putter 2-Ball Golf (5028ms)\nWhat companies manufacture golf clubs?\tSpectators\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Spectators, found some of, golf) -> Spectators (4988ms)\nWhat companies manufacture golf clubs?\tNorth Course at Stonewall\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (North Course at Stonewall, Type, Golf Course) -> North Course at Stonewall (5021ms)\nWhat companies manufacture golf clubs?\tThe Sunice Bollon\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The Sunice Bollon, was created with, golf) -> The Sunice Bollon (4952ms)\nWhat companies manufacture golf clubs?\tA great example\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (A great example, can be found in, golf) -> A great example (4952ms)\nWhat companies manufacture golf clubs?\tA well stocked golf shop\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (A well stocked golf shop, offers moderately priced, golf apparel) -> A well stocked golf shop (5016ms)\nWhat companies manufacture golf clubs?\tBalance exercises\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Balance exercises, are a type of, golf fitness exercises) -> Balance exercises (4958ms)\nWhat companies manufacture golf clubs?\tbird sanctuary\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (bird sanctuary, create a great setting for, golf) -> bird sanctuary (4952ms)\nWhat companies manufacture golf clubs?\tHawktree Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Hawktree Golf Course, Type, Golf Course) -> Hawktree Golf Course (4958ms)\nWhat companies manufacture golf clubs?\tNBC\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (NBC, created, a popular golf show) -> NBC (4996ms)\nWhat companies manufacture golf clubs?\tRead Description\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Read Description, Find, Golf) -> Read Description (4932ms)\nWhat companies manufacture golf clubs?\tShawnee guests\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Shawnee guests, only pay half price on, golf greens fees) -> Shawnee guests (4969ms)\nWhat companies manufacture golf clubs?\t12 days\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (12 days, found time for, golf) -> 12 days (5028ms)\nWhat companies manufacture golf clubs?\tTournament Club Golf Course\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Tournament Club Golf Course, Type, Golf Course) -> Tournament Club Golf Course (4979ms)\nWhat companies manufacture golf clubs?\tDod\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Dod, found, golf) -> Dod (4965ms)\nWhat companies manufacture golf clubs?\tRoyal Birkdale Golf Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Royal Birkdale Golf Club, Type, Golf Course) -> Royal Birkdale Golf Club (4988ms)\nWhat companies manufacture golf clubs?\tsolutions\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (solutions, work for, your golfing patients) -> solutions (5024ms)\nWhat companies manufacture golf clubs?\ttop golf club designers\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (top golf club designers, work for, Clone Golf manufacturers) -> top golf club designers (5004ms)\nWhat companies manufacture golf clubs?\tclose Golf Gifts\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (close Golf Gifts, Create, your own Golf Gifts) -> close Golf Gifts (4965ms)\nWhat companies manufacture golf clubs?\tDisabilities\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Disabilities, was created to make, golf) -> Disabilities (4974ms)\nWhat companies manufacture golf clubs?\tOld North State Club\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Old North State Club, Type, Golf Facility) -> Old North State Club (4970ms)\nWhat companies manufacture golf clubs?\tTreasure\t1.5555555555440002\tWhat companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Treasure, create, a Golf gift baskets) -> Treasure (4939ms)\nWhat companies manufacture golf clubs?\tthe U.S.\t-0.11111111110799998\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacture in, golf club) -> (the U.S., are manufactured in, fewer than 10 golf club foundries) -> the U.S. (5031ms)\nWhat companies manufacture golf clubs?\tthe company\t-0.22222222222200003\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, club) -> (the company, is manufacturer of, \" Print Club) -> the company (5031ms)\nWhat companies manufacture golf clubs?\tCallaway Company\t-0.3333333333299999\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (Callaway Company, has manufactured, the golf clubs) -> Callaway Company (5032ms)\nWhat companies manufacture golf clubs?\tThe corporation\t-0.3333333333299999\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (The corporation, manufactures, golf club components) -> The corporation (5032ms)\nWhat companies manufacture golf clubs?\tthe companies\t-0.3333333333299999\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (the companies, manufacturing, golf clubs) -> the companies (5032ms)\nWhat companies manufacture golf clubs?\tkennel area\t-0.3333333333299999\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (kennel area, manufactured from, golf club pages) -> kennel area (5032ms)\nWhat companies manufacture golf clubs?\tChattanooga\t-0.3333333333299999\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (Chattanooga, manufactured, the first left-handed golf club) -> Chattanooga (5032ms)\nWhat companies manufacture golf clubs?\tthe top brand Golf Wedges\t-0.3333333333299999\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (the top brand Golf Wedges, also manufactures, Golf Club Clones) -> the top brand Golf Wedges (5032ms)\nWhat companies manufacture golf clubs?\tNike Golf\t-0.3333333333299999\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (Nike Golf, to manufacture, golf clubs) -> Nike Golf (5032ms)\nWhat companies manufacture golf clubs?\tLe Coq Sportif\t-0.333333333333\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, football) -> (Le Coq Sportif, were a major manufacturer of, football attire) -> Le Coq Sportif (5032ms)\nWhat companies manufacture golf clubs?\tRiddell\t-0.333333333333\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacturer of, football) -> (Riddell, is the leading manufacturer of, football helmets) -> Riddell (5032ms)\nWhat companies manufacture golf clubs?\tGolf Glider\t-1.555555555551\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacture of, golf) -> (Golf Glider, is the manufacture of, electronic golf caddies) -> Golf Glider (5032ms)\nWhat companies manufacture golf clubs?\tDiscraft\t-1.666666666664\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (Discraft, has been manufacturing, their golf discs) -> Discraft (5034ms)\nWhat companies manufacture golf clubs?\tUtensils\t-1.666666666664\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (Utensils, are manufactured with, actual golf shafts and grips) -> Utensils (5033ms)\nWhat companies manufacture golf clubs?\tTiananmen Square dissidents\t-1.666666666664\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (Tiananmen Square dissidents, were manufacturing, golfing socks) -> Tiananmen Square dissidents (5033ms)\nWhat companies manufacture golf clubs?\tNike\t-1.666666666664\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (Nike, have been manufacturing, golf equipment) -> Nike (5032ms)\nWhat companies manufacture golf clubs?\tThe putter grip\t-1.666666666664\tWhat companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (The putter grip, is now being manufactured by, GOLF) -> The putter grip (5033ms)\nWhat companies manufacture golf clubs?\tChamp Golf\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Champ Golf, manufactures a variety of, golf equipment) -> Champ Golf (5035ms)\nWhat companies manufacture golf clubs?\ta growing business\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a growing business, manufactures all kinds of, golf hardware) -> a growing business (5036ms)\nWhat companies manufacture golf clubs?\tThe American company\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (The American company, manufactures, Callaway Golf woods) -> The American company (5036ms)\nWhat companies manufacture golf clubs?\tMaterials\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Materials, used for manufacturing, both golf drivers) -> Materials (5036ms)\nWhat companies manufacture golf clubs?\tWellzher\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Wellzher, now manufacture, Golf Cart and Stand bag models) -> Wellzher (5035ms)\nWhat companies manufacture golf clubs?\tgolf carts\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (golf carts, manufactured, E Z-Go Golf Carts) -> golf carts (5035ms)\nWhat companies manufacture golf clubs?\tAcushnet Company\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Acushnet Company, manufactures, golf equipment) -> Acushnet Company (5035ms)\nWhat companies manufacture golf clubs?\tCallaway Golf company\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Callaway Golf company, manufactures primarily, golf equipment) -> Callaway Golf company (5036ms)\nWhat companies manufacture golf clubs?\tStewart Golf design\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Stewart Golf design, manufacture, luxury powered golf caddies) -> Stewart Golf design (5036ms)\nWhat companies manufacture golf clubs?\t1990 Kumho Tires\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (1990 Kumho Tires, began manufacturing, golf balls) -> 1990 Kumho Tires (5035ms)\nWhat companies manufacture golf clubs?\tJBSCANADA\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (JBSCANADA, manufactures, quality golf accessories) -> JBSCANADA (5036ms)\nWhat companies manufacture golf clubs?\ta particular answer\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a particular answer, manufactured, golf :They) -> a particular answer (5036ms)\nWhat companies manufacture golf clubs?\tAdidas Golf\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Adidas Golf, manufactures, Adidas-brand golf apparel) -> Adidas Golf (5036ms)\nWhat companies manufacture golf clubs?\tsensation\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (sensation, manufactured, this particular golf ball) -> sensation (5036ms)\nWhat companies manufacture golf clubs?\tA company\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (A company, manufactures, golf balls) -> A company (5036ms)\nWhat companies manufacture golf clubs?\tThe defendant\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (The defendant, manufactured, a video golf game) -> The defendant (5033ms)\nWhat companies manufacture golf clubs?\t2011 Club Glove\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (2011 Club Glove, manufactures, golf bags) -> 2011 Club Glove (5036ms)\nWhat companies manufacture golf clubs?\tGigaGolf\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (GigaGolf, manufactures, golf equipment) -> GigaGolf (5036ms)\nWhat companies manufacture golf clubs?\tE-Z-Go\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (E-Z-Go, still manufactures, golf cars) -> E-Z-Go (5036ms)\nWhat companies manufacture golf clubs?\tadidas Golf\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (adidas Golf, manufactures, adidas-brand golf apparel) -> adidas Golf (5034ms)\nWhat companies manufacture golf clubs?\tSolorider\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Solorider, has manufactured, adaptive golf cars) -> Solorider (5036ms)\nWhat companies manufacture golf clubs?\ta genuine golf ball skin inlay\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a genuine golf ball skin inlay, manufactured by, Callaway   Golf) -> a genuine golf ball skin inlay (5036ms)\nWhat companies manufacture golf clubs?\ta motor vehicle\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a motor vehicle, manufactured on, a golf course) -> a motor vehicle (5034ms)\nWhat companies manufacture golf clubs?\tcompanies\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (companies, manufacture, golf equipment) -> companies (5036ms)\nWhat companies manufacture golf clubs?\tsuch renowned golf club\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (such renowned golf club, manufactures as, Nike Golf) -> such renowned golf club (5036ms)\nWhat companies manufacture golf clubs?\tDesigns\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Designs, manufactures, new-technology golf equipment) -> Designs (5036ms)\nWhat companies manufacture golf clubs?\tAgogos Golf\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Agogos Golf, manufactures a line of, golf carts) -> Agogos Golf (5036ms)\nWhat companies manufacture golf clubs?\tDrive Daddy\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Drive Daddy, manufactures, hop-on powered golf trolleys) -> Drive Daddy (5034ms)\nWhat companies manufacture golf clubs?\ta McPherson , Kansas , company\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a McPherson , Kansas , company, manufactured, golf cars) -> a McPherson , Kansas , company (5034ms)\nWhat companies manufacture golf clubs?\ta club\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a club, manufactures, golf demo day) -> a club (5035ms)\nWhat companies manufacture golf clubs?\tthe club\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (the club, has manufactured speak while, using the golf ball) -> the club (5036ms)\nWhat companies manufacture golf clubs?\tThe tall , free-wheeling lefty\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (The tall , free-wheeling lefty, manufactures, golf shots) -> The tall , free-wheeling lefty (5034ms)\nWhat companies manufacture golf clubs?\tbusiness\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (business, manufactures, luxury golf carts) -> business (5035ms)\nWhat companies manufacture golf clubs?\tPole-Kat Golf\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Pole-Kat Golf, manufactures, the highest quality golf equipment) -> Pole-Kat Golf (5033ms)\nWhat companies manufacture golf clubs?\tFila Golf?s mission\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Fila Golf?s mission, manufacture, top-of-the-line golf apparel) -> Fila Golf?s mission (5034ms)\nWhat companies manufacture golf clubs?\tCanada U.S. companies\t-1.888888888885\tWhat companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Canada U.S. companies, manufacture, golf) -> Canada U.S. companies (5036ms)\nWhat companies manufacture golf clubs?\tmilled putters\t-2.555555555568\tWhat companies manufacture golf clubs? -> $x: (golf, be manufacturer of, $x) -> (Daito Golf, is a Canada-based manufacturer of, milled putters) -> milled putters (5037ms)\nWhat companies manufacture golf clubs?\tgolf clubs\t-2.555555555568\tWhat companies manufacture golf clubs? -> $x: (golf, be manufacturer of, $x) -> (Callaway Golf, is the leading manufacturer of, golf clubs) -> golf clubs (5037ms)\nWhat companies manufacture golf clubs?\tgolf tees\t-2.555555555568\tWhat companies manufacture golf clubs? -> $x: (golf, be manufacturer of, $x) -> (Pride Golf Tee, has been the No.1 manufacturer of, golf tees) -> golf tees (5037ms)\nWhat is the phobia for number 13?\t13 :1-18\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (13 :1-18, are numbered, 13 :2-19) -> 13 :1-18 (2232ms)\nWhat is the phobia for number 13?\tthe baktun\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the baktun, are numbered from, 1 to 13) -> the baktun (2183ms)\nWhat is the phobia for number 13?\tthe extras\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the extras, is numbered, 13a) -> the extras (2448ms)\nWhat is the phobia for number 13?\tEach reel\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Each reel, is numbered, 1-13) -> Each reel (2183ms)\nWhat is the phobia for number 13?\tYogas\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Yogas, are the number of, 13 degree) -> Yogas (2425ms)\nWhat is the phobia for number 13?\tThe three reels\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (The three reels, are numbered 1 to, 13) -> The three reels (2447ms)\nWhat is the phobia for number 13?\tDeath\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Death, is numbered, 13) -> Death (2448ms)\nWhat is the phobia for number 13?\tonly 13 states\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (only 13 states, is the exact same number as, the 13 colonies) -> only 13 states (2394ms)\nWhat is the phobia for number 13?\t630\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (630, is the number of, degree 13 irreducible polynomials) -> 630 (2425ms)\nWhat is the phobia for number 13?\trooms and gates\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (rooms and gates, are numbered, 13) -> rooms and gates (2478ms)\nWhat is the phobia for number 13?\tNorth Carolina\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (North Carolina, was number one for, 13 weeks) -> North Carolina (2232ms)\nWhat is the phobia for number 13?\tThe plate\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (The plate, is numbered, number 13) -> The plate (2183ms)\nWhat is the phobia for number 13?\tThe top row\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (The top row, is numbered 1 to, 13) -> The top row (2394ms)\nWhat is the phobia for number 13?\tthe records\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the records, were numbered, 12/81 , 13/81) -> the records (2447ms)\nWhat is the phobia for number 13?\tPatti Page\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Patti Page, was Number One for, 13 weeks) -> Patti Page (2372ms)\nWhat is the phobia for number 13?\tThe days\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (The days, were numbered 1 to, 13) -> The days (2478ms)\nWhat is the phobia for number 13?\tPurchases\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Purchases, will be numbered, 1-3 depending) -> Purchases (2447ms)\nWhat is the phobia for number 13?\t150\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (150, will be numbered, 13/150) -> 150 (2394ms)\nWhat is the phobia for number 13?\tClose\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Close, are a number of, tourist 1.3 km) -> Close (2232ms)\nWhat is the phobia for number 13?\talcohol\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be factor for, 13) -> (alcohol, was a factor for, 13) -> alcohol (2066ms)\nWhat is the phobia for number 13?\tVHF television channels\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (VHF television channels, are numbered, 2 ? 13) -> VHF television channels (2447ms)\nWhat is the phobia for number 13?\tChina\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (China, is number 1 at, 1.3 billion) -> China (2425ms)\nWhat is the phobia for number 13?\ta nursing facility\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (a nursing facility, is a fear of, 13 percent) -> a nursing facility (2394ms)\nWhat is the phobia for number 13?\t12\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (12, is an even number between, 11 and 13) -> 12 (2232ms)\nWhat is the phobia for number 13?\ta tarot deck\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (a tarot deck, is numbered, 13) -> a tarot deck (2067ms)\nWhat is the phobia for number 13?\tAn example\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (An example, might be fear of, the number 13) -> An example (2447ms)\nWhat is the phobia for number 13?\tthe card\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the card, is numbered, 1/3) -> the card (2425ms)\nWhat is the phobia for number 13?\tTriskaidekaphobia\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (Triskaidekaphobia, is the fear of, 13) -> Triskaidekaphobia (2448ms)\nWhat is the phobia for number 13?\t? Triskaidekaphobia\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (? Triskaidekaphobia, is an irrational fear of, the number 13) -> ? Triskaidekaphobia (2372ms)\nWhat is the phobia for number 13?\tWalk Legs\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Walk Legs, are numbered, 13-36) -> Walk Legs (2394ms)\nWhat is the phobia for number 13?\tThe Death card\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (The Death card, is numbered, 13) -> The Death card (2425ms)\nWhat is the phobia for number 13?\tTiles\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Tiles, are numbered from, 1 to 13) -> Tiles (2372ms)\nWhat is the phobia for number 13?\tclose These\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (close These, are the Part Numbers for, 84-85 13B 6-port Engines) -> close These (2394ms)\nWhat is the phobia for number 13?\tthe pins\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the pins, are numbered, 0-13) -> the pins (2183ms)\nWhat is the phobia for number 13?\t1/4\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (1/4, is a smaller number than, 1/3) -> 1/4 (2066ms)\nWhat is the phobia for number 13?\t13 :1-6\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (13 :1-6, is numbered, 13 :2-6) -> 13 :1-6 (2183ms)\nWhat is the phobia for number 13?\tThe allowable sizes\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (The allowable sizes, are odd numbers from, 13) -> The allowable sizes (2478ms)\nWhat is the phobia for number 13?\tthe EAN13\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the EAN13, is the same number as, the new 13-digit ISMN.) -> the EAN13 (2372ms)\nWhat is the phobia for number 13?\t9235\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (9235, is the number of, 13-iamonds) -> 9235 (2232ms)\nWhat is the phobia for number 13?\tThe panels\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (The panels, are numbered 1 to, 13) -> The panels (2066ms)\nWhat is the phobia for number 13?\tThe last pages\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (The last pages, are wrongly numbered, 13-16) -> The last pages (2447ms)\nWhat is the phobia for number 13?\tthe Glu-D1o subunits\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the Glu-D1o subunits, has been numbered, 13) -> the Glu-D1o subunits (2232ms)\nWhat is the phobia for number 13?\tthe door\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the door, is numbered, 13) -> the door (2425ms)\nWhat is the phobia for number 13?\ttriskaidekaphobia\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (triskaidekaphobia, is the fear of, the number 13 Search) -> triskaidekaphobia (2066ms)\nWhat is the phobia for number 13?\tthe four\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the four, is the magic number between, a PG-13) -> the four (2066ms)\nWhat is the phobia for number 13?\tTriskadekaphobia\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (Triskadekaphobia, is fear of, the number 13) -> Triskadekaphobia (2447ms)\nWhat is the phobia for number 13?\tAnglers\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Anglers, are landing decent numbers of, 1-3 lb) -> Anglers (2183ms)\nWhat is the phobia for number 13?\t? Triskaidekaphobia\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (? Triskaidekaphobia, is the fear of, the number 13) -> ? Triskaidekaphobia (2394ms)\nWhat is the phobia for number 13?\tthe new sets\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the new sets, were numbered, 11 , 12 , 13 and 14) -> the new sets (2478ms)\nWhat is the phobia for number 13?\tParaskevidekatriaphobia\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (Paraskevidekatriaphobia, is fear of, Friday 13th) -> Paraskevidekatriaphobia (2372ms)\nWhat is the phobia for number 13?\tthe morning\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (the morning, is numbered, the 13th day) -> the morning (2372ms)\nWhat is the phobia for number 13?\tEach card\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be number, 13) -> (Each card, is numbered from, 1-13) -> Each card (2372ms)\nWhat is the phobia for number 13?\tfriggatriskaidekaphobia\t0.999999999998\tWhat is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (friggatriskaidekaphobia, is fear of, the number 13) -> friggatriskaidekaphobia (2232ms)\nWhat is the phobia for number 13?\tGalilean\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (Galilean, satellites, 1.2 Longitude 1.3 1.4) -> Galilean (2481ms)\nWhat is the phobia for number 13?\tnew.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (new.adjective.01, satellite, hot.adjective.13) -> new.adjective.01 (2478ms)\nWhat is the phobia for number 13?\tdead.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (dead.adjective.01, satellite, cold.adjective.13) -> dead.adjective.01 (2478ms)\nWhat is the phobia for number 13?\teasy.adjective.05\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (easy.adjective.05, satellite, light.adjective.13) -> easy.adjective.05 (2478ms)\nWhat is the phobia for number 13?\tperfect.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (perfect.adjective.01, satellite, clear.adjective.13) -> perfect.adjective.01 (2478ms)\nWhat is the phobia for number 13?\tthick.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (thick.adjective.01, satellite, heavy.adjective.13) -> thick.adjective.01 (2478ms)\nWhat is the phobia for number 13?\tpregnant.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (pregnant.adjective.01, satellite, big.adjective.13) -> pregnant.adjective.01 (2478ms)\nWhat is the phobia for number 13?\tfull-time.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (full-time.adjective.01, satellite, regular.adjective.13) -> full-time.adjective.01 (2481ms)\nWhat is the phobia for number 13?\tcounterfeit.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (counterfeit.adjective.01, satellite, bad.adjective.13) -> counterfeit.adjective.01 (2481ms)\nWhat is the phobia for number 13?\tfortunate.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (fortunate.adjective.01, satellite, good.adjective.13) -> fortunate.adjective.01 (2481ms)\nWhat is the phobia for number 13?\tunsealed.adjective.02\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (unsealed.adjective.02, satellite, open.adjective.13) -> unsealed.adjective.02 (2478ms)\nWhat is the phobia for number 13?\teruptive.adjective.03\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (eruptive.adjective.03, satellite, active.adjective.13) -> eruptive.adjective.03 (2478ms)\nWhat is the phobia for number 13?\tincomplete.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (incomplete.adjective.01, satellite, broken.adjective.13) -> incomplete.adjective.01 (2478ms)\nWhat is the phobia for number 13?\tfair.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (fair.adjective.01, satellite, clean.adjective.13) -> fair.adjective.01 (2478ms)\nWhat is the phobia for number 13?\tundiluted.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (undiluted.adjective.01, satellite, black.adjective.13) -> undiluted.adjective.01 (2481ms)\nWhat is the phobia for number 13?\tEarth\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (Earth, Artificial satellite(s), GOES 13) -> Earth (2481ms)\nWhat is the phobia for number 13?\tshort.adjective.02\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (short.adjective.02, satellite, close.adjective.13) -> short.adjective.02 (2478ms)\nWhat is the phobia for number 13?\tinoperative.adjective.01\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (inoperative.adjective.01, satellite, dead.adjective.13) -> inoperative.adjective.01 (2478ms)\nWhat is the phobia for number 13?\tplain.adjective.02\t0.888888888887\tWhat is the phobia for number 13? -> $x: ($x, satellite, 13) -> (plain.adjective.02, satellite, dry.adjective.13) -> plain.adjective.02 (2481ms)\nWhat is the phobia for number 13?\tLeader Ibuprofen 100 chewable tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Leader Ibuprofen 100 chewable tablet, Size, 13.0) -> Leader Ibuprofen 100 chewable tablet (2483ms)\nWhat is the phobia for number 13?\tNighttime Sleep Aid 25 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Nighttime Sleep Aid 25 film coated tablet, Size, 13.0) -> Nighttime Sleep Aid 25 film coated tablet (2481ms)\nWhat is the phobia for number 13?\tMazda 1.3L 2 Cylinder FFS ROTARY\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Mazda 1.3L 2 Cylinder FFS ROTARY, Size, 1.3) -> Mazda 1.3L 2 Cylinder FFS ROTARY (2491ms)\nWhat is the phobia for number 13?\tVimpat 50,100 kit\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Vimpat 50,100 kit, Size, 13.0) -> Vimpat 50,100 kit (2487ms)\nWhat is the phobia for number 13?\t39.99  sizes\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (39.99  sizes, sizes, 13 sizes) -> 39.99  sizes (2487ms)\nWhat is the phobia for number 13?\ta queen\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (a queen, sized, ( 13' x) -> a queen (2485ms)\nWhat is the phobia for number 13?\t358 grams\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (358 grams, Size, 13.58 oz) -> 358 grams (2487ms)\nWhat is the phobia for number 13?\tFluvoxamine Maleate 100 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Fluvoxamine Maleate 100 tablet, Size, 13.0) -> Fluvoxamine Maleate 100 tablet (2491ms)\nWhat is the phobia for number 13?\tEdition\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Edition, sized, 13 x) -> Edition (2491ms)\nWhat is the phobia for number 13?\tSulfasalazine 500 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Sulfasalazine 500 tablet, Size, 13.0) -> Sulfasalazine 500 tablet (2487ms)\nWhat is the phobia for number 13?\tUnisom SleepGels Nighttime Sleep-Aid 50 liquid filled capsule\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Unisom SleepGels Nighttime Sleep-Aid 50 liquid filled capsule, Size, 13.0) -> Unisom SleepGels Nighttime Sleep-Aid 50 liquid filled capsule (2485ms)\nWhat is the phobia for number 13?\tUK\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (UK, sizes, Child 13) -> UK (2489ms)\nWhat is the phobia for number 13?\tSinemet CR 25/100 extended release tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Sinemet CR 25/100 extended release tablet, Size, 13.0) -> Sinemet CR 25/100 extended release tablet (2489ms)\nWhat is the phobia for number 13?\tBupropion Hydrochloride 150 extended release film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Bupropion Hydrochloride 150 extended release film coated tablet, Size, 13.0) -> Bupropion Hydrochloride 150 extended release film coated tablet (2491ms)\nWhat is the phobia for number 13?\tBUSPIRONE HCl 15 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (BUSPIRONE HCl 15 tablet, Size, 13.0) -> BUSPIRONE HCl 15 tablet (2492ms)\nWhat is the phobia for number 13?\t10 . Concellous screws-different\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (10 . Concellous screws-different, sizes, 13) -> 10 . Concellous screws-different (2487ms)\nWhat is the phobia for number 13?\tThorlo Thorlo B Basketball Over-Calf Sock\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Thorlo Thorlo B Basketball Over-Calf Sock, sizes, 13) -> Thorlo Thorlo B Basketball Over-Calf Sock (2491ms)\nWhat is the phobia for number 13?\tChloroquine 500 coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Chloroquine 500 coated tablet, Size, 13.0) -> Chloroquine 500 coated tablet (2491ms)\nWhat is the phobia for number 13?\tMinocycline 100 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Minocycline 100 tablet, Size, 13.0) -> Minocycline 100 tablet (2487ms)\nWhat is the phobia for number 13?\tMazda 1.3L 2 Cylinder ROTARY\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Mazda 1.3L 2 Cylinder ROTARY, Size, 1.3) -> Mazda 1.3L 2 Cylinder ROTARY (2483ms)\nWhat is the phobia for number 13?\tDiltiazem Hydrochloride 120 extended release tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Diltiazem Hydrochloride 120 extended release tablet, Size, 13.0) -> Diltiazem Hydrochloride 120 extended release tablet (2491ms)\nWhat is the phobia for number 13?\tBuspirone Hydrochloride 15 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Buspirone Hydrochloride 15 tablet, Size, 13.0) -> Buspirone Hydrochloride 15 tablet (2485ms)\nWhat is the phobia for number 13?\tTagamet HB 200 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Tagamet HB 200 tablet, Size, 13.0) -> Tagamet HB 200 tablet (2483ms)\nWhat is the phobia for number 13?\tMulti-Vitamin With Fluoride 15/60/400/4.5/0.3/13.5/1.05/1.2/1/1.05/2500 chewable tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Multi-Vitamin With Fluoride 15/60/400/4.5/0.3/13.5/1.05/1.2/1/1.05/2500 chewable tablet, Size, 13.0) -> Multi-Vitamin With Fluoride 15/60/400/4.5/0.3/13.5/1.05/1.2/1/1.05/2500 chewable tablet (2492ms)\nWhat is the phobia for number 13?\tNaltrexone Hydrochloride 50 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Naltrexone Hydrochloride 50 film coated tablet, Size, 13.0) -> Naltrexone Hydrochloride 50 film coated tablet (2489ms)\nWhat is the phobia for number 13?\tParoxetine 10 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Paroxetine 10 film coated tablet, Size, 13.0) -> Paroxetine 10 film coated tablet (2481ms)\nWhat is the phobia for number 13?\tneck\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (neck, sizes, 13) -> neck (2491ms)\nWhat is the phobia for number 13?\tWheels\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Wheels, sized, 13) -> Wheels (2485ms)\nWhat is the phobia for number 13?\tPentazocine Hydrochloride and Naloxone Hydrochloride 50/0.5 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Pentazocine Hydrochloride and Naloxone Hydrochloride 50/0.5 tablet, Size, 13.0) -> Pentazocine Hydrochloride and Naloxone Hydrochloride 50/0.5 tablet (2489ms)\nWhat is the phobia for number 13?\tlarge fits\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (large fits, sizes, 11 -13) -> large fits (2483ms)\nWhat is the phobia for number 13?\tMazda 1.3L 2 Cylinder FFS, TRBO ROTARY\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Mazda 1.3L 2 Cylinder FFS, TRBO ROTARY, Size, 1.3) -> Mazda 1.3L 2 Cylinder FFS, TRBO ROTARY (2481ms)\nWhat is the phobia for number 13?\tFits child\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Fits child, sizes, 13) -> Fits child (2487ms)\nWhat is the phobia for number 13?\tAnkle\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Ankle, sizes, 13) -> Ankle (2485ms)\nWhat is the phobia for number 13?\tHua Hin Events\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Hua Hin Events, Size, 13 items) -> Hua Hin Events (2487ms)\nWhat is the phobia for number 13?\tmen?s\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (men?s, sizes, 7 ? 13) -> men?s (2489ms)\nWhat is the phobia for number 13?\tneedle\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (needle, sizes, # 10 ? # 13) -> needle (2487ms)\nWhat is the phobia for number 13?\tAccutane 40 liquid filled capsule\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Accutane 40 liquid filled capsule, Size, 13.0) -> Accutane 40 liquid filled capsule (2492ms)\nWhat is the phobia for number 13?\tyouth\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (youth, sizes, 13c) -> youth (2485ms)\nWhat is the phobia for number 13?\tIbuprofen 400 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Ibuprofen 400 film coated tablet, Size, 13.0) -> Ibuprofen 400 film coated tablet (2485ms)\nWhat is the phobia for number 13?\tMefloquine Hydrochloride 250 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Mefloquine Hydrochloride 250 tablet, Size, 13.0) -> Mefloquine Hydrochloride 250 tablet (2483ms)\nWhat is the phobia for number 13?\tSunMark heartburn relief acid reducer 200 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (SunMark heartburn relief acid reducer 200 tablet, Size, 13.0) -> SunMark heartburn relief acid reducer 200 tablet (2483ms)\nWhat is the phobia for number 13?\tVenlafaxine Hydrochloride 100 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Venlafaxine Hydrochloride 100 tablet, Size, 13.0) -> Venlafaxine Hydrochloride 100 tablet (2487ms)\nWhat is the phobia for number 13?\tYouth\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Youth, sizes, 13 ? 6) -> Youth (2491ms)\nWhat is the phobia for number 13?\tClozapine 200 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Clozapine 200 tablet, Size, 13.0) -> Clozapine 200 tablet (2489ms)\nWhat is the phobia for number 13?\tAzathioprine 50 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Azathioprine 50 tablet, Size, 13.0) -> Azathioprine 50 tablet (2483ms)\nWhat is the phobia for number 13?\tBenazepril and Hydrochlorothiazide 10/12.5 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Benazepril and Hydrochlorothiazide 10/12.5 film coated tablet, Size, 13.0) -> Benazepril and Hydrochlorothiazide 10/12.5 film coated tablet (2492ms)\nWhat is the phobia for number 13?\tsocks\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (socks, sized, 13) -> socks (2487ms)\nWhat is the phobia for number 13?\tNon-Habit Forming Stool Softener 100 liquid filled capsule\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Non-Habit Forming Stool Softener 100 liquid filled capsule, Size, 13.0) -> Non-Habit Forming Stool Softener 100 liquid filled capsule (2483ms)\nWhat is the phobia for number 13?\tGlipizide and Metformin Hydrochloride 2.5/250 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Glipizide and Metformin Hydrochloride 2.5/250 film coated tablet, Size, 13.0) -> Glipizide and Metformin Hydrochloride 2.5/250 film coated tablet (2485ms)\nWhat is the phobia for number 13?\tNaratriptan 2.5 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Naratriptan 2.5 tablet, Size, 13.0) -> Naratriptan 2.5 tablet (2489ms)\nWhat is the phobia for number 13?\tFeatures\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Features, Size, 13'  H) -> Features (2491ms)\nWhat is the phobia for number 13?\tFluoxetine 10 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Fluoxetine 10 film coated tablet, Size, 13.0) -> Fluoxetine 10 film coated tablet (2487ms)\nWhat is the phobia for number 13?\tTasmar 200 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Tasmar 200 film coated tablet, Size, 13.0) -> Tasmar 200 film coated tablet (2492ms)\nWhat is the phobia for number 13?\tMetformin Hydrochloride 850 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Metformin Hydrochloride 850 film coated tablet, Size, 13.0) -> Metformin Hydrochloride 850 film coated tablet (2483ms)\nWhat is the phobia for number 13?\tventilation Three-strap Velcro design\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (ventilation Three-strap Velcro design, sizes, youth 13) -> ventilation Three-strap Velcro design (2487ms)\nWhat is the phobia for number 13?\tQuinapril 40 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Quinapril 40 film coated tablet, Size, 13.0) -> Quinapril 40 film coated tablet (2483ms)\nWhat is the phobia for number 13?\twhole & half\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (whole & half, sizes, 4- 13) -> whole & half (2481ms)\nWhat is the phobia for number 13?\tDoxycycline Hyclate 75 delayed release tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Doxycycline Hyclate 75 delayed release tablet, Size, 13.0) -> Doxycycline Hyclate 75 delayed release tablet (2489ms)\nWhat is the phobia for number 13?\tBenazepril Hydrochloride and Hydrochlorothiazide 5/6.25 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Benazepril Hydrochloride and Hydrochlorothiazide 5/6.25 film coated tablet, Size, 13.0) -> Benazepril Hydrochloride and Hydrochlorothiazide 5/6.25 film coated tablet (2489ms)\nWhat is the phobia for number 13?\tRosiglitazone Maleate 4 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Rosiglitazone Maleate 4 tablet, Size, 13.0) -> Rosiglitazone Maleate 4 tablet (2485ms)\nWhat is the phobia for number 13?\tIsorsorbide Mononitrate Extended-release 30 coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Isorsorbide Mononitrate Extended-release 30 coated tablet, Size, 13.0) -> Isorsorbide Mononitrate Extended-release 30 coated tablet (2485ms)\nWhat is the phobia for number 13?\tCarbidopa and Levodopa 25/100 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Carbidopa and Levodopa 25/100 tablet, Size, 13.0) -> Carbidopa and Levodopa 25/100 tablet (2485ms)\nWhat is the phobia for number 13?\t6 scrapbook pages\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (6 scrapbook pages, Size, 13) -> 6 scrapbook pages (2487ms)\nWhat is the phobia for number 13?\tidentical screen\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (identical screen, sizes, ( 13 inches) -> identical screen (2485ms)\nWhat is the phobia for number 13?\tFosamax 70 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Fosamax 70 tablet, Size, 13.0) -> Fosamax 70 tablet (2487ms)\nWhat is the phobia for number 13?\tNuvigil 150 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Nuvigil 150 tablet, Size, 13.0) -> Nuvigil 150 tablet (2489ms)\nWhat is the phobia for number 13?\tBenazepril and Hydrochlorothiazide 20/25 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Benazepril and Hydrochlorothiazide 20/25 film coated tablet, Size, 13.0) -> Benazepril and Hydrochlorothiazide 20/25 film coated tablet (2491ms)\nWhat is the phobia for number 13?\tBuprenorphine Hydrochloride 2 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Buprenorphine Hydrochloride 2 tablet, Size, 13.0) -> Buprenorphine Hydrochloride 2 tablet (2491ms)\nWhat is the phobia for number 13?\tTramadol Hydrochloride 300 extended release tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Tramadol Hydrochloride 300 extended release tablet, Size, 13.0) -> Tramadol Hydrochloride 300 extended release tablet (2483ms)\nWhat is the phobia for number 13?\tAnzemet 100 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Anzemet 100 film coated tablet, Size, 13.0) -> Anzemet 100 film coated tablet (2483ms)\nWhat is the phobia for number 13?\tParoxetine 40 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Paroxetine 40 film coated tablet, Size, 13.0) -> Paroxetine 40 film coated tablet (2489ms)\nWhat is the phobia for number 13?\tUltram 50 coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Ultram 50 coated tablet, Size, 13.0) -> Ultram 50 coated tablet (2481ms)\nWhat is the phobia for number 13?\tFord 1.3L 4 Cylinder FFS\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Ford 1.3L 4 Cylinder FFS, Size, 1.3) -> Ford 1.3L 4 Cylinder FFS (2491ms)\nWhat is the phobia for number 13?\tMvc 0.25/2500/60/400/15/1.05/1.2/13.5/1.05/0.3/4.5 chewable tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Mvc 0.25/2500/60/400/15/1.05/1.2/13.5/1.05/0.3/4.5 chewable tablet, Size, 13.0) -> Mvc 0.25/2500/60/400/15/1.05/1.2/13.5/1.05/0.3/4.5 chewable tablet (2489ms)\nWhat is the phobia for number 13?\tUp and up stool softener 100 liquid filled capsule\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Up and up stool softener 100 liquid filled capsule, Size, 13.0) -> Up and up stool softener 100 liquid filled capsule (2485ms)\nWhat is the phobia for number 13?\tBuprenorphine HCl 2 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Buprenorphine HCl 2 tablet, Size, 13.0) -> Buprenorphine HCl 2 tablet (2491ms)\nWhat is the phobia for number 13?\tscreen\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (screen, sizes, 13 inches) -> screen (2489ms)\nWhat is the phobia for number 13?\tchild\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (child, sizes, $ 13) -> child (2489ms)\nWhat is the phobia for number 13?\tFits\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Fits, size, 11-13 Price) -> Fits (2483ms)\nWhat is the phobia for number 13?\tCyclosporine 25 liquid filled capsule\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Cyclosporine 25 liquid filled capsule, Size, 13.0) -> Cyclosporine 25 liquid filled capsule (2492ms)\nWhat is the phobia for number 13?\tSertraline Hydrochloride Tablets 100 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Sertraline Hydrochloride Tablets 100 film coated tablet, Size, 13.0) -> Sertraline Hydrochloride Tablets 100 film coated tablet (2485ms)\nWhat is the phobia for number 13?\tRequip XL 8 extended release film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Requip XL 8 extended release film coated tablet, Size, 13.0) -> Requip XL 8 extended release film coated tablet (2491ms)\nWhat is the phobia for number 13?\ta medium\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (a medium, sized, 13' x) -> a medium (2485ms)\nWhat is the phobia for number 13?\tFlying Fish No. 1009 Engineering\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Flying Fish No. 1009 Engineering, Size, 13.0) -> Flying Fish No. 1009 Engineering (2483ms)\nWhat is the phobia for number 13?\tGround Pools\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Ground Pools, sized, 13 ft) -> Ground Pools (2489ms)\nWhat is the phobia for number 13?\tFenoglide 40 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Fenoglide 40 tablet, Size, 13.0) -> Fenoglide 40 tablet (2492ms)\nWhat is the phobia for number 13?\tWhite Ladies\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (White Ladies, sizes, 13 juv.) -> White Ladies (2492ms)\nWhat is the phobia for number 13?\tOndansetron Hydrochloride 8 film coated tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Ondansetron Hydrochloride 8 film coated tablet, Size, 13.0) -> Ondansetron Hydrochloride 8 film coated tablet (2489ms)\nWhat is the phobia for number 13?\tSuprenza 30 orally disintegrating tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Suprenza 30 orally disintegrating tablet, Size, 13.0) -> Suprenza 30 orally disintegrating tablet (2481ms)\nWhat is the phobia for number 13?\tSertraline Hydrochloride 50 tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Sertraline Hydrochloride 50 tablet, Size, 13.0) -> Sertraline Hydrochloride 50 tablet (2483ms)\nWhat is the phobia for number 13?\tSaddle Measurements\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Saddle Measurements, Size, 13) -> Saddle Measurements (2491ms)\nWhat is the phobia for number 13?\tthe wall 7 piece package\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (the wall 7 piece package, sized, 13) -> the wall 7 piece package (2483ms)\nWhat is the phobia for number 13?\tLudent 0.5 chewable tablet\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Ludent 0.5 chewable tablet, Size, 13.0) -> Ludent 0.5 chewable tablet (2487ms)\nWhat is the phobia for number 13?\t200 full color photographs\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (200 full color photographs, Size, 13) -> 200 full color photographs (2492ms)\nWhat is the phobia for number 13?\tFull\t0.777777777776\tWhat is the phobia for number 13? -> $x: ($x, size, 13) -> (Full, sized, 13) -> Full (2485ms)\nWhat is the phobia for number 13?\tGoals\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (Goals, could be a certain number of, bells or colonies) -> Goals (2494ms)\nWhat is the phobia for number 13?\tThe dependent variable\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (The dependent variable, is the number of, bacteria colonies) -> The dependent variable (2493ms)\nWhat is the phobia for number 13?\tamerica\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (america, was a number of, colonies) -> america (2493ms)\nWhat is the phobia for number 13?\tFreefall\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, amazing) -> (Freefall, as are a number of, amazing books) -> Freefall (2493ms)\nWhat is the phobia for number 13?\tsnorkeling or diving\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, amazing) -> (snorkeling or diving, is number two on, amazing activities) -> snorkeling or diving (2492ms)\nWhat is the phobia for number 13?\tdental implants\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, amazing) -> (dental implants, There are a number of, amazing oral surgeons) -> dental implants (2493ms)\nWhat is the phobia for number 13?\tecotypes\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (ecotypes, is number of, individual coral colony types) -> ecotypes (2493ms)\nWhat is the phobia for number 13?\tmeasurement\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (measurement, was to count the number of, microorganism colonies) -> measurement (2493ms)\nWhat is the phobia for number 13?\tThe responding variable\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (The responding variable, was the number of, colonies) -> The responding variable (2493ms)\nWhat is the phobia for number 13?\tthe mountains\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (the mountains, were a growing number of, human colonies) -> the mountains (2493ms)\nWhat is the phobia for number 13?\tTop Pot Bakery\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, amazing) -> (Top Pot Bakery, is the number of, amazing flavors and styles) -> Top Pot Bakery (2492ms)\nWhat is the phobia for number 13?\tThe first level\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (The first level, is simply counting the number of, colonies) -> The first level (2492ms)\nWhat is the phobia for number 13?\tVinland Saga\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, amazing) -> (Vinland Saga, is the number of, amazing action scenes) -> Vinland Saga (2493ms)\nWhat is the phobia for number 13?\tZoe\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (Zoe, was n?t numbered with, the colony) -> Zoe (2493ms)\nWhat is the phobia for number 13?\tThe yeast and mould count\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (The yeast and mould count, is the number of, those colonies) -> The yeast and mould count (2492ms)\nWhat is the phobia for number 13?\ta greener path\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, amazing) -> (a greener path, there are a number of, amazing products) -> a greener path (2493ms)\nWhat is the phobia for number 13?\tThirteen\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (Thirteen, was the number of, the original Colonies) -> Thirteen (2493ms)\nWhat is the phobia for number 13?\texperience\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be factor for, amazing) -> (experience, is a major factor for, our amazing success) -> experience (2493ms)\nWhat is the phobia for number 13?\tsanctuary\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (sanctuary, .There were a number of, Jewish colonies) -> sanctuary (2493ms)\nWhat is the phobia for number 13?\tthe compact camera\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, amazing) -> (the compact camera, is the sheer number of, amazing apps) -> the compact camera (2493ms)\nWhat is the phobia for number 13?\tSummary\t0.555555555555\tWhat is the phobia for number 13? -> $x: ($x, be number, colony) -> (Summary, is total numbers of, colonies) -> Summary (2493ms)\nWhat is the phobia for number 13?\tsurprising.adjective.01\t0.444444444444\tWhat is the phobia for number 13? -> $x: ($x, satellite, amazing) -> (surprising.adjective.01, satellite, amazing.adjective.01) -> surprising.adjective.01 (2494ms)\nWhat is the phobia for number 13?\timpressive.adjective.01\t0.444444444444\tWhat is the phobia for number 13? -> $x: ($x, satellite, amazing) -> (impressive.adjective.01, satellite, amazing.adjective.02) -> impressive.adjective.01 (2494ms)\nWhat is the phobia for number 13?\tsurprised.adjective.01\t0.444444444444\tWhat is the phobia for number 13? -> $x: ($x, satellite, amazing) -> (surprised.adjective.01, satellite, amazed.adjective.01) -> surprised.adjective.01 (2494ms)\nWhat is the phobia for number 13?\tIndia\t0.444444444444\tWhat is the phobia for number 13? -> $x: ($x, satellite, colony) -> (India, has satellite images of, all the colonies) -> India (2494ms)\nWhat is the phobia for number 13?\tHave students\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (Have students, measure the size of, the fungal colony) -> Have students (2494ms)\nWhat is the phobia for number 13?\tSoft corals\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (Soft corals, triple the size of, their colonies) -> Soft corals (2495ms)\nWhat is the phobia for number 13?\t? Budding\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (? Budding, expands the size of, a coral colony) -> ? Budding (2494ms)\nWhat is the phobia for number 13?\tthe reef aquarium\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (the reef aquarium, will increase the size of, their colony) -> the reef aquarium (2494ms)\nWhat is the phobia for number 13?\tmedium\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (medium, sized, colonies) -> medium (2495ms)\nWhat is the phobia for number 13?\tPhilip Taaffe?s mural\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (Philip Taaffe?s mural, sized, Tsuba Colony) -> Philip Taaffe?s mural (2495ms)\nWhat is the phobia for number 13?\ta grapefruit\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (a grapefruit, sized, colony) -> a grapefruit (2495ms)\nWhat is the phobia for number 13?\tthe coast\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (the coast, sized, colony) -> the coast (2494ms)\nWhat is the phobia for number 13?\tnative wildlife\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (native wildlife, reduce the size of, feral cat colonies) -> native wildlife (2495ms)\nWhat is the phobia for number 13?\tclutch\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (clutch, sizes at, five different colony sites) -> clutch (2494ms)\nWhat is the phobia for number 13?\tconvicts\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (convicts, boosted the size of, the colony) -> convicts (2495ms)\nWhat is the phobia for number 13?\t1768\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (1768, was nearly three times the size of, the colony) -> 1768 (2495ms)\nWhat is the phobia for number 13?\tbacteria\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (bacteria, increases the size of, intestinal colonies) -> bacteria (2494ms)\nWhat is the phobia for number 13?\tBladdernut\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (Bladdernut, also reaches great size in, one colony) -> Bladdernut (2494ms)\nWhat is the phobia for number 13?\tRetrofits\t0.333333333333\tWhat is the phobia for number 13? -> $x: ($x, size, colony) -> (Retrofits, can be sized to accommodate, small or large colonies) -> Retrofits (2496ms)\nWhere is South Bend?\tbed\t0.222222222222\tWhere is South Bend? -> $x: (south bend, be find in, $x) -> (South Bend, was found dead in, bed) -> bed (1019ms)\nWhere is South Bend?\tnorthern Indiana\t0.111111111109\tWhere is South Bend? -> $x: (south bend, be locate in, $x) -> (Indiana South Bend, is located in, northern Indiana) -> northern Indiana (1019ms)\nWhere is South Bend?\tNorthern Indiana\t0.111111111109\tWhere is South Bend? -> $x: (south bend, be locate in, $x) -> (South Bend, is located in, Northern Indiana) -> Northern Indiana (1019ms)\nWhere is South Bend?\tSouth Bend\t0.111111111109\tWhere is South Bend? -> $x: (south bend, be locate in, $x) -> (46634-7111 IU South Bend, is located in, South Bend) -> South Bend (1019ms)\nWhere is South Bend?\tSt\t0.111111111109\tWhere is South Bend? -> $x: (south bend, be locate in, $x) -> (INTRODUCTION South Bend, is located in, St) -> St (1019ms)\nWhere is South Bend?\tIndiana\t0.111111111109\tWhere is South Bend? -> $x: (south bend, be locate in, $x) -> (Indiana University-South Bend, is located in, Indiana) -> Indiana (1019ms)\nWhere is South Bend?\tads\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (ads, are going up in, South Bend) -> ads (1445ms)\nWhere is South Bend?\tCheers\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Cheers, Contained by, South Bend) -> Cheers (3908ms)\nWhere is South Bend?\tBenny\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (Benny, were going into, South Bend) -> Benny (3913ms)\nWhere is South Bend?\t2008 Shaw\t-0.0\tWhere is South Bend? -> $x: ($x, get, south bend) -> (2008 Shaw, got promoted to, South Bend) -> 2008 Shaw (3888ms)\nWhere is South Bend?\tFirst Source Center\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (First Source Center, Contained by, South Bend) -> First Source Center (3888ms)\nWhere is South Bend?\tboy\t-0.0\tWhere is South Bend? -> $x: ($x, kill, south bend) -> (boy, killed in, crash file lawsuit South Bend) -> boy (3882ms)\nWhere is South Bend?\tCass County, MI HUD Metro FMR Area\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Cass County, MI HUD Metro FMR Area, Contained by, South Bend-Mishawaka, IN-MI Metropolitan Statistical Area) -> Cass County, MI HUD Metro FMR Area (3882ms)\nWhere is South Bend?\tSouth Shore\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (South Shore, went to, South Bend) -> South Shore (3888ms)\nWhere is South Bend?\tcourse\t-0.0\tWhere is South Bend? -> $x: ($x, help, south bend) -> (course, had been helping, these South Bend kids) -> course (3903ms)\nWhere is South Bend?\tMiami\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (Miami, went to, South Bend) -> Miami (3893ms)\nWhere is South Bend?\tLouisiana\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Louisiana, Contains, South Bend) -> Louisiana (3882ms)\nWhere is South Bend?\tcounselors\t-0.0\tWhere is South Bend? -> $x: ($x, get, south bend) -> (counselors, get at, invaluable dating South Bend procedures) -> counselors (3882ms)\nWhere is South Bend?\ttwo\t-0.0\tWhere is South Bend? -> $x: ($x, help, south bend) -> (two, helped, South Bend) -> two (1205ms)\nWhere is South Bend?\tthe Home Builder\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (SOUTH BEND, Does, the Home Builder) -> the Home Builder (3903ms)\nWhere is South Bend?\tTrinity School at Greenlawn\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Trinity School at Greenlawn, Contained by, South Bend) -> Trinity School at Greenlawn (3903ms)\nWhere is South Bend?\tJohn Allison\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (John Allison, went to, South Bend Wednesday evening) -> John Allison (3908ms)\nWhere is South Bend?\tprivate companies\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend, is done by, private companies) -> private companies (3180ms)\nWhere is South Bend?\ta wonderful articl e\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (the South Bend Tribune, did, a wonderful articl e) -> a wonderful articl e (3898ms)\nWhere is South Bend?\tRobert J. Fischgrund Center for the Performing Arts\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Robert J. Fischgrund Center for the Performing Arts, Contained by, South Bend) -> Robert J. Fischgrund Center for the Performing Arts (3882ms)\nWhere is South Bend?\tJoseph D. Oliver House\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Joseph D. Oliver House, Contained by, South Bend) -> Joseph D. Oliver House (2896ms)\nWhere is South Bend?\tK. C. DeRhodes House\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (K. C. DeRhodes House, Contained by, South Bend) -> K. C. DeRhodes House (2086ms)\nWhere is South Bend?\tMendoza College of Business\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Mendoza College of Business, Contained by, South Bend) -> Mendoza College of Business (3822ms)\nWhere is South Bend?\tArkansas\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Arkansas, Contains, South Bend) -> Arkansas (3296ms)\nWhere is South Bend?\tArmstrong County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Armstrong County, Contains, South Bend) -> Armstrong County (3769ms)\nWhere is South Bend?\tanyone else surprised Skip Holtz and USF\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (anyone else surprised Skip Holtz and USF, went into, South Bend) -> anyone else surprised Skip Holtz and USF (3893ms)\nWhere is South Bend?\topen-mindedness\t-0.0\tWhere is South Bend? -> $x: (south bend, have history of, $x) -> (South Bend, has a long history of, open-mindedness) -> open-mindedness (3912ms)\nWhere is South Bend?\t29 /\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (29 /, Go, FishIN /South Bend Apr) -> 29 / (3893ms)\nWhere is South Bend?\tthe rankings\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend, had done so well in, the rankings) -> the rankings (3180ms)\nWhere is South Bend?\tVernon Parish\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Vernon Parish, Contains, South Toledo Bend State Park) -> Vernon Parish (2035ms)\nWhere is South Bend?\tJochum\t-0.0\tWhere is South Bend? -> $x: ($x, produce, south bend) -> (Jochum, produced solid performances for, South Bend) -> Jochum (1601ms)\nWhere is South Bend?\tthe Irish\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend, so did, the Irish) -> the Irish (3882ms)\nWhere is South Bend?\tThe Bears\t-0.0\tWhere is South Bend? -> $x: ($x, do, south bend) -> (The Bears, did fly to, South Bend) -> The Bears (3908ms)\nWhere is South Bend?\tSimeri's Old Town Tap\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Simeri's Old Town Tap, Contained by, South Bend) -> Simeri's Old Town Tap (3898ms)\nWhere is South Bend?\tLow-income families\t-0.0\tWhere is South Bend? -> $x: ($x, help, south bend) -> (Low-income families, can seek help from, the South Bend office) -> Low-income families (1205ms)\nWhere is South Bend?\tthe latter\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend schools, will do, the latter) -> the latter (3893ms)\nWhere is South Bend?\tColfax Cultural Center\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Colfax Cultural Center, Contained by, South Bend) -> Colfax Cultural Center (2896ms)\nWhere is South Bend?\t76481\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (76481, Contains, South Bend, Texas) -> 76481 (3180ms)\nWhere is South Bend?\tWest Washington Historic District\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (West Washington Historic District, Contained by, South Bend) -> West Washington Historic District (3296ms)\nWhere is South Bend?\tMishawaka\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Mishawaka, Contains, Regency Beauty Institute-South Bend) -> Mishawaka (3898ms)\nWhere is South Bend?\tMaine\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Maine, Contains, South West Bend) -> Maine (3898ms)\nWhere is South Bend?\tYoung County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Young County, Contains, South Bend) -> Young County (3908ms)\nWhere is South Bend?\tRadio ?\t-0.0\tWhere is South Bend? -> $x: ($x, get, south bend) -> (Radio ?, Get, Radio Jobs | South Bend) -> Radio ? (3768ms)\nWhere is South Bend?\tGod\t-0.0\tWhere is South Bend? -> $x: ($x, do, south bend) -> (God, is doing some crazy stuff in, South Bend) -> God (3912ms)\nWhere is South Bend?\tKansas\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Kansas, Contains, South Bend Township) -> Kansas (3882ms)\nWhere is South Bend?\tthe team\t-0.0\tWhere is South Bend? -> $x: ($x, do, south bend) -> (the team, has done in, South Bend) -> the team (1601ms)\nWhere is South Bend?\tJohn BARNHISEL\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (John BARNHISEL, went to, South Bend) -> John BARNHISEL (1445ms)\nWhere is South Bend?\ttime\t-0.0\tWhere is South Bend? -> $x: ($x, get, south bend) -> (time, try to get to, South Bend) -> time (3903ms)\nWhere is South Bend?\tPacific County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Pacific County, Contains, South Bend) -> Pacific County (2896ms)\nWhere is South Bend?\ta New Year\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend Tribune Staff Writer CINCINNATI, Does, a New Year) -> a New Year (3888ms)\nWhere is South Bend?\tA homeless man\t-0.0\tWhere is South Bend? -> $x: ($x, find, south bend) -> (A homeless man, was found on, a vacant property in South Bend) -> A homeless man (2896ms)\nWhere is South Bend?\tone team\t-0.0\tWhere is South Bend? -> $x: ($x, help, south bend) -> (one team, will help, South Bend?s Center) -> one team (1205ms)\nWhere is South Bend?\tTe\t-0.0\tWhere is South Bend? -> $x: ($x, do, south bend) -> (Te, did finally get to, South Bend) -> Te (3903ms)\nWhere is South Bend?\tWiseguys\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Wiseguys, Contained by, South Bend) -> Wiseguys (3179ms)\nWhere is South Bend?\tJacob SNEARLY\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (Jacob SNEARLY, went to, South Bend Wednesday) -> Jacob SNEARLY (1445ms)\nWhere is South Bend?\tthe ball\t-0.0\tWhere is South Bend? -> $x: ($x, do, south bend) -> (the ball, does still exist in, South Bend) -> the ball (1205ms)\nWhere is South Bend?\tSt. Joseph County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (St. Joseph County, Contains, South Bend) -> St. Joseph County (3903ms)\nWhere is South Bend?\tNeal\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (Neal, will be able to go to, South Bend) -> Neal (1445ms)\nWhere is South Bend?\tCass County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Cass County, Contains, South Bend) -> Cass County (3296ms)\nWhere is South Bend?\tcell phones\t-0.0\tWhere is South Bend? -> $x: (south bend, have use of, $x) -> (South Bend, has banned the use of, cell phones) -> cell phones (3898ms)\nWhere is South Bend?\tJanuary 9 , 1906 Mrs. John BRYANT\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (January 9 , 1906 Mrs. John BRYANT, went to, South Bend) -> January 9 , 1906 Mrs. John BRYANT (1601ms)\nWhere is South Bend?\tThe Diabetes Resource Center\t-0.0\tWhere is South Bend? -> $x: ($x, event, south bend) -> (The Diabetes Resource Center, held an event at, South Bend) -> The Diabetes Resource Center (3908ms)\nWhere is South Bend?\tthe Michigan Street exit\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (the Michigan Street exit, go north into, South Bend) -> the Michigan Street exit (3893ms)\nWhere is South Bend?\tBrown Mackie College - South Bend\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Brown Mackie College - South Bend, Contained by, South Bend) -> Brown Mackie College - South Bend (3912ms)\nWhere is South Bend?\tPacific County Courthouse\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Pacific County Courthouse, Contained by, South Bend) -> Pacific County Courthouse (3888ms)\nWhere is South Bend?\tWeis\t-0.0\tWhere is South Bend? -> $x: ($x, get, south bend) -> (Weis, got to, South Bend) -> Weis (3296ms)\nWhere is South Bend?\tNewton County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Newton County, Contains, South Toledo Bend) -> Newton County (2035ms)\nWhere is South Bend?\tthe place\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend, does n?t seem like, the place) -> the place (3898ms)\nWhere is South Bend?\tRockne\t-0.0\tWhere is South Bend? -> $x: ($x, fight, south bend) -> (Rockne, also fought semi-professionally in, South Bend) -> Rockne (3912ms)\nWhere is South Bend?\tMerrimans' Playhouse\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Merrimans' Playhouse, Contained by, South Bend) -> Merrimans' Playhouse (3768ms)\nWhere is South Bend?\trail spurs\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (rail spurs, go as far away as, South Bend) -> rail spurs (1601ms)\nWhere is South Bend?\tLumber Exchange Building\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Lumber Exchange Building, Contained by, South Bend) -> Lumber Exchange Building (3903ms)\nWhere is South Bend?\tthe Michigan Southern\t-0.0\tWhere is South Bend? -> $x: ($x, found, south bend) -> (the Michigan Southern, found, a South Bend investor) -> the Michigan Southern (3898ms)\nWhere is South Bend?\tSouth Bend Museum of Art\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (South Bend Museum of Art, Contained by, South Bend) -> South Bend Museum of Art (2035ms)\nWhere is South Bend?\tLou\t-0.0\tWhere is South Bend? -> $x: ($x, establish, south bend) -> (Lou, established permanent residence in, South Bend) -> Lou (3912ms)\nWhere is South Bend?\tUnited States of America\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (United States of America, Contains, ITT Technical Institute-South Bend) -> United States of America (3912ms)\nWhere is South Bend?\tthe Arts\t-0.0\tWhere is South Bend? -> $x: ($x, help, south bend) -> (the Arts, helped organize, the two IU South Bend Piano Festivals) -> the Arts (3882ms)\nWhere is South Bend?\tJetty Mooney\t-0.0\tWhere is South Bend? -> $x: ($x, do, south bend) -> (Jetty Mooney, did likewise for, South Bend) -> Jetty Mooney (3888ms)\nWhere is South Bend?\tMorse\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (the South Bend Branch, was all done by, Morse) -> Morse (3179ms)\nWhere is South Bend?\tthe A.A.\t-0.0\tWhere is South Bend? -> $x: ($x, establish, south bend) -> (the A.A., was established in, South Bend) -> the A.A. (3888ms)\nWhere is South Bend?\tBarton County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Barton County, Contains, South Bend Township) -> Barton County (3908ms)\nWhere is South Bend?\tCharlie Weis\t-0.0\tWhere is South Bend? -> $x: ($x, do, south bend) -> (Charlie Weis, is really doing an incredible job in, South Bend) -> Charlie Weis (1601ms)\nWhere is South Bend?\tMorris Performing Arts Center\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Morris Performing Arts Center, Contained by, South Bend) -> Morris Performing Arts Center (2035ms)\nWhere is South Bend?\tArea code 574\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Area code 574, Contains, South Bend) -> Area code 574 (3908ms)\nWhere is South Bend?\tSouth Bend-Mishawaka, IN HUD Metro FMR Area\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (South Bend-Mishawaka, IN HUD Metro FMR Area, Contained by, South Bend-Mishawaka, IN-MI Metropolitan Statistical Area) -> South Bend-Mishawaka, IN HUD Metro FMR Area (3903ms)\nWhere is South Bend?\tITT Technical Institute-South Bend\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (ITT Technical Institute-South Bend, Contained by, South Bend) -> ITT Technical Institute-South Bend (2086ms)\nWhere is South Bend?\tTexas\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Texas, Contains, South Bend) -> Texas (3822ms)\nWhere is South Bend?\tBrey\t-0.0\tWhere is South Bend? -> $x: ($x, do, south bend) -> (Brey, is doing in, South Bend) -> Brey (1019ms)\nWhere is South Bend?\tBrian Kelly\t-0.0\tWhere is South Bend? -> $x: ($x, get, south bend) -> (Brian Kelly, got to, South Bend) -> Brian Kelly (3898ms)\nWhere is South Bend?\tLa Salle Street Bridge\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (La Salle Street Bridge, Contained by, South Bend) -> La Salle Street Bridge (3822ms)\nWhere is South Bend?\tpoor legal advice\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend Tribune Writer NILES ?, Did, poor legal advice) -> poor legal advice (3908ms)\nWhere is South Bend?\tAndroscoggin County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Androscoggin County, Contains, South West Bend) -> Androscoggin County (3912ms)\nWhere is South Bend?\tBlue Earth County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Blue Earth County, Contains, South Bend Township) -> Blue Earth County (3908ms)\nWhere is South Bend?\tsearch jobs\t-0.0\tWhere is South Bend? -> $x: ($x, find, south bend) -> (search jobs, find jobs with, South Bend employers and recruiters) -> search jobs (3882ms)\nWhere is South Bend?\tTaylor\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (Taylor, will go to, South Bend) -> Taylor (3888ms)\nWhere is South Bend?\tGod Exist?\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend, Does, God Exist?) -> God Exist? (3822ms)\nWhere is South Bend?\tKiel\t-0.0\tWhere is South Bend? -> $x: ($x, enroll, south bend) -> (Kiel, is expected to enroll in, South Bend) -> Kiel (3903ms)\nWhere is South Bend?\tClub Landing\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Club Landing, Contained by, South Bend) -> Club Landing (3296ms)\nWhere is South Bend?\tMinnesota\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Minnesota, Contains, South Bend Township) -> Minnesota (3822ms)\nWhere is South Bend?\trooms\t-0.0\tWhere is South Bend? -> $x: ($x, find, south bend) -> (rooms, are VERY hard to find in, South Bend) -> rooms (3893ms)\nWhere is South Bend?\tfall\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (fall, is going on here in, South Bend) -> fall (3888ms)\nWhere is South Bend?\tWashington\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Washington, Contains, South Bend) -> Washington (3822ms)\nWhere is South Bend?\tQuincy's Cafe and Espresso\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Quincy's Cafe and Espresso, Contained by, South Bend) -> Quincy's Cafe and Espresso (3180ms)\nWhere is South Bend?\tthe clutch\t-0.0\tWhere is South Bend? -> $x: ($x, replace, south bend) -> (the clutch, has been replaced with, a South Bend unit) -> the clutch (1445ms)\nWhere is South Bend?\tthe Falcons\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (the Falcons, went into to, South Bend) -> the Falcons (3888ms)\nWhere is South Bend?\tThe other , Ty Willingham\t-0.0\tWhere is South Bend? -> $x: ($x, hate, south bend) -> (The other , Ty Willingham, hated living in, South Bend) -> The other , Ty Willingham (3822ms)\nWhere is South Bend?\tNebraska\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Nebraska, Contains, South Bend) -> Nebraska (2896ms)\nWhere is South Bend?\tCad CLARK\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (Cad CLARK, went to, South Bend Friday) -> Cad CLARK (1601ms)\nWhere is South Bend?\tLonoke County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Lonoke County, Contains, South Bend) -> Lonoke County (3296ms)\nWhere is South Bend?\tRiley\t-0.0\tWhere is South Bend? -> $x: ($x, found, south bend) -> (Riley, found his way to, South Bend) -> Riley (3882ms)\nWhere is South Bend?\tPalais Royale Building\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Palais Royale Building, Contained by, South Bend) -> Palais Royale Building (3769ms)\nWhere is South Bend?\tthe final assembly and installation\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend, did, the final assembly and installation) -> the final assembly and installation (3893ms)\nWhere is South Bend?\tSt. Mary Parish\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (St. Mary Parish, Contains, South Bend) -> St. Mary Parish (2896ms)\nWhere is South Bend?\tPotawatomi Zoo\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Potawatomi Zoo, Contained by, South Bend) -> Potawatomi Zoo (3888ms)\nWhere is South Bend?\tSouth Bend Public Transportation Corporation\t-0.0\tWhere is South Bend? -> $x: ($x, find, south bend) -> (South Bend Public Transportation Corporation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/South%20Bend%20TRANSPO) -> South Bend Public Transportation Corporation (3893ms)\nWhere is South Bend?\tMichigan\t-0.0\tWhere is South Bend? -> $x: (south bend, do, $x) -> (South Bend, had everything to do with, Michigan) -> Michigan (3888ms)\nWhere is South Bend?\tMinneopa State Park\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Minneopa State Park, Contained by, South Bend Township) -> Minneopa State Park (2086ms)\nWhere is South Bend?\tPennsylvania\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Pennsylvania, Contains, South Bend) -> Pennsylvania (3898ms)\nWhere is South Bend?\tthe best talent\t-0.0\tWhere is South Bend? -> $x: ($x, find, south bend) -> (the best talent, found nationwide to, South Bend) -> the best talent (3908ms)\nWhere is South Bend?\tNotre Dame\t-0.0\tWhere is South Bend? -> $x: ($x, event, south bend) -> (Notre Dame, attended the event in, South Bend) -> Notre Dame (3893ms)\nWhere is South Bend?\t46628\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (46628, Contains, South Bend) -> 46628 (3898ms)\nWhere is South Bend?\tFiddler's Hearth\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Fiddler's Hearth, Contained by, South Bend) -> Fiddler's Hearth (3898ms)\nWhere is South Bend?\tSouth Bend Civic Theatre\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (South Bend Civic Theatre, Contained by, South Bend) -> South Bend Civic Theatre (3823ms)\nWhere is South Bend?\tRed K.\t-0.0\tWhere is South Bend? -> $x: ($x, get, south bend) -> (Red K., got sober in, South Bend) -> Red K. (3912ms)\nWhere is South Bend?\tThe Wildcats\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (The Wildcats, go to, South Bend) -> The Wildcats (3912ms)\nWhere is South Bend?\tStanley Coveleski Regional Stadium\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Stanley Coveleski Regional Stadium, Contained by, South Bend) -> Stanley Coveleski Regional Stadium (2035ms)\nWhere is South Bend?\tSouth Bend Regional Airport\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (South Bend Regional Airport, Contained by, South Bend) -> South Bend Regional Airport (3893ms)\nWhere is South Bend?\tElks Lodge 235\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Elks Lodge 235, Contained by, South Bend) -> Elks Lodge 235 (3888ms)\nWhere is South Bend?\tthe human family-are\t-0.0\tWhere is South Bend? -> $x: ($x, happen in, south bend) -> (the human family-are, will happen in, South Bend) -> the human family-are (3898ms)\nWhere is South Bend?\tGeorge O'Neil\t-0.0\tWhere is South Bend? -> $x: ($x, design, south bend) -> (George O'Neil, Golf Courses Designed, South Bend Golf Course) -> George O'Neil (3908ms)\nWhere is South Bend?\tviewers\t-0.0\tWhere is South Bend? -> $x: ($x, found, south bend) -> (viewers, will find the histories of, IU South Bend) -> viewers (3908ms)\nWhere is South Bend?\tCollege Football Hall of Fame\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (College Football Hall of Fame, Contained by, South Bend) -> College Football Hall of Fame (3768ms)\nWhere is South Bend?\tThe next challenge\t-0.0\tWhere is South Bend? -> $x: ($x, happen in, south bend) -> (The next challenge, will happen right here in, South Bend) -> The next challenge (3296ms)\nWhere is South Bend?\tDeBartolo Performing Arts Center\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (DeBartolo Performing Arts Center, Contained by, South Bend) -> DeBartolo Performing Arts Center (2896ms)\nWhere is South Bend?\tSt. Patrick's County Park\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (St. Patrick's County Park, Contained by, South Bend) -> St. Patrick's County Park (3893ms)\nWhere is South Bend?\tAdvertising Art\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (Advertising Art, had gone to, South Bend Business College) -> Advertising Art (3908ms)\nWhere is South Bend?\tClayton County\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Clayton County, Contains, South Bend) -> Clayton County (3888ms)\nWhere is South Bend?\tThe League\t-0.0\tWhere is South Bend? -> $x: ($x, help, south bend) -> (The League, looks forward to helping, South Bend move) -> The League (3893ms)\nWhere is South Bend?\tSouth Bend Silverhawks\t-0.0\tWhere is South Bend? -> $x: ($x, find, south bend) -> (South Bend Silverhawks, can be found on Wikipedia at, http://en.wikipedia.org/wiki/South%20Bend%20Silver%20Hawks) -> South Bend Silverhawks (3908ms)\nWhere is South Bend?\tstudents and colleagues\t-0.0\tWhere is South Bend? -> $x: ($x, find, south bend) -> (students and colleagues, found at, IU South Bend) -> students and colleagues (3888ms)\nWhere is South Bend?\tIvy Tech Community College-Northcentral\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Ivy Tech Community College-Northcentral, Contained by, South Bend) -> Ivy Tech Community College-Northcentral (3903ms)\nWhere is South Bend?\tTippecanoe Place\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Tippecanoe Place, Contained by, South Bend) -> Tippecanoe Place (3903ms)\nWhere is South Bend?\tIndiana University South Bend\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Indiana University South Bend, Contained by, South Bend) -> Indiana University South Bend (3768ms)\nWhere is South Bend?\tClub Fever\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Club Fever, Contained by, South Bend) -> Club Fever (3768ms)\nWhere is South Bend?\tProperty\t-0.0\tWhere is South Bend? -> $x: ($x, surround, south bend) -> (Property, surrounds, South Bend Cemetery) -> Property (3903ms)\nWhere is South Bend?\t114 listings\t-0.0\tWhere is South Bend? -> $x: ($x, find, south bend) -> (114 listings, were found in, the South Bend) -> 114 listings (3888ms)\nWhere is South Bend?\tSt Joseph County 4-H Fair Inc\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (St Joseph County 4-H Fair Inc, Contained by, South Bend) -> St Joseph County 4-H Fair Inc (3903ms)\nWhere is South Bend?\tthe summer league kids\t-0.0\tWhere is South Bend? -> $x: ($x, go, south bend) -> (the summer league kids, will have to go to, South Bend) -> the summer league kids (1601ms)\nWhere is South Bend?\tGeorgia\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Georgia, Contains, South Bend) -> Georgia (2086ms)\nWhere is South Bend?\tChicago South Shore and South Bend Railroad\t-0.0\tWhere is South Bend? -> $x: ($x, found, south bend) -> (Chicago South Shore and South Bend Railroad, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chicago%20SouthShore%20and%20South%20Bend%20Railroad) -> Chicago South Shore and South Bend Railroad (3903ms)\nWhere is South Bend?\tSouth Bend-Mishawaka, IN-MI Metropolitan Statistical Area\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (South Bend-Mishawaka, IN-MI Metropolitan Statistical Area, Contains, South Bend-Mishawaka, IN HUD Metro FMR Area) -> South Bend-Mishawaka, IN-MI Metropolitan Statistical Area (3912ms)\nWhere is South Bend?\tCentury Center Convention Center\t-0.0\tWhere is South Bend? -> $x: ($x, contain, south bend) -> (Century Center Convention Center, Contained by, South Bend) -> Century Center Convention Center (3882ms)\nWhere is South Bend?\tthe Second Annual Meeting\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the Second Annual Meeting, was held in, South Bend) -> the Second Annual Meeting (3921ms)\nWhere is South Bend?\tAshton Lundeby\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Ashton Lundeby, was sentenced in, South Bend) -> Ashton Lundeby (3933ms)\nWhere is South Bend?\tthe USA\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the USA, is based in, South Bend) -> the USA (3933ms)\nWhere is South Bend?\tOwner and photographer Joshua Myers\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Owner and photographer Joshua Myers, is based in, South Bend) -> Owner and photographer Joshua Myers (3925ms)\nWhere is South Bend?\ta poor Irish immigrant of 1928\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (a poor Irish immigrant of 1928, was ordained in, South Bend) -> a poor Irish immigrant of 1928 (3933ms)\nWhere is South Bend?\tHeckathorn\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Heckathorn, was born in, South Bend) -> Heckathorn (3921ms)\nWhere is South Bend?\tTHE KIRGIZ LAW ! ?Our company\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (THE KIRGIZ LAW ! ?Our company, is registered in, South Bend) -> THE KIRGIZ LAW ! ?Our company (3925ms)\nWhere is South Bend?\tthe Dons bench\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the Dons bench, was in, South Bend) -> the Dons bench (3912ms)\nWhere is South Bend?\tHarriet Foster\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Harriet Foster, was raised in, South bend) -> Harriet Foster (3925ms)\nWhere is South Bend?\tJones-Young\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Jones-Young, was born in, South Bend) -> Jones-Young (3917ms)\nWhere is South Bend?\tthe student\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the student, is in, South Bend) -> the student (3940ms)\nWhere is South Bend?\tfive games\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (five games, would be played in, South Bend) -> five games (3917ms)\nWhere is South Bend?\tButtigieg\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Buttigieg, was born in, South Bend) -> Buttigieg (3921ms)\nWhere is South Bend?\tDad\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Dad, was a CPA in, South Bend) -> Dad (3933ms)\nWhere is South Bend?\tFame\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (Fame, is currently located in, South Bend) -> Fame (3940ms)\nWhere is South Bend?\tcampus\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (campus, is in, South Bend) -> campus (3936ms)\nWhere is South Bend?\tThe deceased\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (The deceased, was born in, South Bend) -> The deceased (3929ms)\nWhere is South Bend?\tTHE AUTHOR Carlos Miller\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (THE AUTHOR Carlos Miller, was born in, South Bend) -> THE AUTHOR Carlos Miller (3933ms)\nWhere is South Bend?\tMichiana Regional Airport\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (Michiana Regional Airport, is located in, South Bend) -> Michiana Regional Airport (3925ms)\nWhere is South Bend?\tThe Pacific County capitol\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The Pacific County capitol, is located in, South Bend) -> The Pacific County capitol (3936ms)\nWhere is South Bend?\tKEYS.? Gerstenkorn\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (KEYS.? Gerstenkorn, was born in, South Bend) -> KEYS.? Gerstenkorn (3936ms)\nWhere is South Bend?\tThe office\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The office, is located in, South Bend Indiana) -> The office (3943ms)\nWhere is South Bend?\tKen M.\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Ken M., had been in, South Bend) -> Ken M. (3925ms)\nWhere is South Bend?\tCarleton Inc. corporate offices\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (Carleton Inc. corporate offices, are located in, South Bend) -> Carleton Inc. corporate offices (3929ms)\nWhere is South Bend?\tBruce Taylor Bruce Taylor\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Bruce Taylor Bruce Taylor, was born in, South Bend) -> Bruce Taylor Bruce Taylor (3917ms)\nWhere is South Bend?\tthe oliver inn bed & breakfast\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (the oliver inn bed & breakfast, is located in, south bend) -> the oliver inn bed & breakfast (3940ms)\nWhere is South Bend?\tThe big men\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (The big men, were a presence in, South Bend) -> The big men (3929ms)\nWhere is South Bend?\tBurial\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Burial, will be in, South Bend) -> Burial (3936ms)\nWhere is South Bend?\taccess Big Rock Valley\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (access Big Rock Valley, are in, South Bend) -> access Big Rock Valley (3921ms)\nWhere is South Bend?\tthe echoes\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the echoes, are waking in, South Bend) -> the echoes (3933ms)\nWhere is South Bend?\tFat Tuesday\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Fat Tuesday, is also celebrated in, South Bend) -> Fat Tuesday (3925ms)\nWhere is South Bend?\tTHE OLIVE BRANCH REMEDY COMPANY\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (THE OLIVE BRANCH REMEDY COMPANY, was located in, SOUTH BEND) -> THE OLIVE BRANCH REMEDY COMPANY (3936ms)\nWhere is South Bend?\tNotre Dame Law School\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (Notre Dame Law School, is located in, South Bend) -> Notre Dame Law School (3940ms)\nWhere is South Bend?\tMOM\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (MOM, was located in, South Bend) -> MOM (3917ms)\nWhere is South Bend?\tvolunteers\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (volunteers, were in, South Bend) -> volunteers (3936ms)\nWhere is South Bend?\tvotes\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (votes, were cast in, South Bend) -> votes (3925ms)\nWhere is South Bend?\tSaint Joseph\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Saint Joseph, is a hospital in the city, SOUTH BEND) -> Saint Joseph (3929ms)\nWhere is South Bend?\tShipka and Pozzi\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Shipka and Pozzi, were in, South Bend) -> Shipka and Pozzi (3925ms)\nWhere is South Bend?\tthe Studebaker company\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the Studebaker company, was founded in, South Bend) -> the Studebaker company (3917ms)\nWhere is South Bend?\tHigh speed DSL internet service\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (High speed DSL internet service, is available in, South Bend) -> High speed DSL internet service (3936ms)\nWhere is South Bend?\tMike Heuerman\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Mike Heuerman, is currently in, South Bend) -> Mike Heuerman (3943ms)\nWhere is South Bend?\tThe hall\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The hall, is located in, South Bend) -> The hall (3940ms)\nWhere is South Bend?\tThe funeral services\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (The funeral services, will be held in, South Bend) -> The funeral services (3921ms)\nWhere is South Bend?\tThe ballroom\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The ballroom, is located in, South Bend) -> The ballroom (3933ms)\nWhere is South Bend?\tKleinow\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Kleinow, was born in, South Bend) -> Kleinow (3921ms)\nWhere is South Bend?\tWork\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Work, will be performed in, South Bend) -> Work (3933ms)\nWhere is South Bend?\tKenneth Rexroth\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Kenneth Rexroth, was born in, South Bend) -> Kenneth Rexroth (3929ms)\nWhere is South Bend?\tBKR Studio\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (BKR Studio, is based in, South Bend) -> BKR Studio (3925ms)\nWhere is South Bend?\tThe Econo Lodge Airport\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The Econo Lodge Airport, is located in, South Bend) -> The Econo Lodge Airport (3921ms)\nWhere is South Bend?\tSusan Choi\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Susan Choi, was born in, South Bend) -> Susan Choi (3940ms)\nWhere is South Bend?\tHillary Clinton\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Hillary Clinton, is in, South Bend) -> Hillary Clinton (3943ms)\nWhere is South Bend?\tWhite Water Rafting\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (White Water Rafting, is in, South Bend) -> White Water Rafting (3917ms)\nWhere is South Bend?\tFuneral services\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Funeral services, were held in, South Bend) -> Funeral services (3921ms)\nWhere is South Bend?\tBob Golic\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Bob Golic, was in, South Bend) -> Bob Golic (3921ms)\nWhere is South Bend?\tOliver\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Oliver, was in, South Bend) -> Oliver (3929ms)\nWhere is South Bend?\tWomen Faculty ?Our campus\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Women Faculty ?Our campus, is in, South Bend) -> Women Faculty ?Our campus (3936ms)\nWhere is South Bend?\tPolicinski\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Policinski, was born in, South Bend) -> Policinski (3940ms)\nWhere is South Bend?\tthe phone\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the phone, was being used in, South Bend) -> the phone (3940ms)\nWhere is South Bend?\tNorthwestern University Pat Fitzgerald\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Northwestern University Pat Fitzgerald, will be in, South Bend) -> Northwestern University Pat Fitzgerald (3925ms)\nWhere is South Bend?\tthe local area mail operation\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the local area mail operation, are stationed in, South Bend) -> the local area mail operation (3940ms)\nWhere is South Bend?\tdata center\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (data center, is located in, South Bend) -> data center (3917ms)\nWhere is South Bend?\tCraig Counsell\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Craig Counsell, was originally born in, South Bend) -> Craig Counsell (3921ms)\nWhere is South Bend?\tNotre-Dame\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be the home of, south bend) -> (Notre-Dame, is the home city of the sports team, SOUTH BEND) -> Notre-Dame (3933ms)\nWhere is South Bend?\tThe game\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (The game, is in, South Bend) -> The game (3936ms)\nWhere is South Bend?\tFuneral\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Funeral, was in, South Bend) -> Funeral (3929ms)\nWhere is South Bend?\t46634-7111 IU South Bend\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (46634-7111 IU South Bend, is located in, South Bend) -> 46634-7111 IU South Bend (3940ms)\nWhere is South Bend?\tan American automobile brand\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (an American automobile brand, is based in, South Bend) -> an American automobile brand (3917ms)\nWhere is South Bend?\tCarroll\t-0.111111111111\tWhere is South Bend? -> $x: ($x, cause, south bend) -> (Carroll, had caused previous stirs on, the South Bend Tribune) -> Carroll (3940ms)\nWhere is South Bend?\tThe school\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The school, is located in, South Bend) -> The school (3933ms)\nWhere is South Bend?\tThe Foundation\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The Foundation, is located in, South Bend) -> The Foundation (3936ms)\nWhere is South Bend?\tThe studio\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The studio, is located in, South Bend) -> The studio (3940ms)\nWhere is South Bend?\tBill Cavanaugh\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Bill Cavanaugh, is speaking here in, South Bend) -> Bill Cavanaugh (3917ms)\nWhere is South Bend?\tRaymond Loewy ?\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Raymond Loewy ?, was down in, South Bend) -> Raymond Loewy ? (3925ms)\nWhere is South Bend?\tVoss\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Voss, was born in, South Bend) -> Voss (3933ms)\nWhere is South Bend?\tPress Ganey?s main headquarters\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (Press Ganey?s main headquarters, are located in, South Bend) -> Press Ganey?s main headquarters (3925ms)\nWhere is South Bend?\tSollmann\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be name of, south bend) -> (Sollmann, was named MVP of, the South Bend Regional) -> Sollmann (3921ms)\nWhere is South Bend?\tFox\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Fox, was born in, South Bend) -> Fox (3929ms)\nWhere is South Bend?\tthe game\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (the game, had been played in, south bend) -> the game (3929ms)\nWhere is South Bend?\tNotre Dame University\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (Notre Dame University, is located in, South Bend) -> Notre Dame University (3933ms)\nWhere is South Bend?\tThe Hall\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (The Hall, has been located in, South Bend) -> The Hall (3929ms)\nWhere is South Bend?\tNatre Dame\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Natre Dame, is in, South Bend) -> Natre Dame (3921ms)\nWhere is South Bend?\tStudebaker\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (Studebaker, was based in, South Bend) -> Studebaker (3925ms)\nWhere is South Bend?\tthe Catholic Charismatic Renewal\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (the Catholic Charismatic Renewal, is located in, South Bend) -> the Catholic Charismatic Renewal (3936ms)\nWhere is South Bend?\ta 55,000-square-foot facility\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (a 55,000-square-foot facility, is located in, South Bend) -> a 55,000-square-foot facility (3917ms)\nWhere is South Bend?\tfame\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (fame, is in, South Bend) -> fame (3940ms)\nWhere is South Bend?\tThe Quality Inn University\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be located in, south bend) -> (The Quality Inn University, is located in, South Bend) -> The Quality Inn University (3940ms)\nWhere is South Bend?\tFREE GEEK MICHIANA\t-0.111111111111\tWhere is South Bend? -> $x: ($x, be in, south bend) -> (FREE GEEK MICHIANA, is based in, South Bend) -> FREE GEEK MICHIANA (3936ms)\nWhere is South Bend?\tthe movie\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was featured in, the movie) -> the movie (3943ms)\nWhere is South Bend?\tZEST\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (the Raymond-South Bend area, are detailed in, ZEST) -> ZEST (3943ms)\nWhere is South Bend?\tthe two following games\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, were a rumor in, the two following games) -> the two following games (3946ms)\nWhere is South Bend?\t1933\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (the South Bend Symphony, was founded in, 1933) -> 1933 (3948ms)\nWhere is South Bend?\tsnow\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is blanketed in, snow) -> snow (3943ms)\nWhere is South Bend?\tthe heart\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (Hilton South Bend hotel, is in, the heart) -> the heart (3950ms)\nWhere is South Bend?\tthe same way\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend Cash Advance loans, are repaid in, the same way) -> the same way (3948ms)\nWhere is South Bend?\tNew York\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is now back in, New York) -> New York (3946ms)\nWhere is South Bend?\tthe left hand menu\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (south bend, will be posted in, the left hand menu) -> the left hand menu (3950ms)\nWhere is South Bend?\tthe nation\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (January 21 , 2010 South Bend, is the best city in, the nation) -> the nation (3943ms)\nWhere is South Bend?\tdiverse and thriving neighborhoods\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is seen in, diverse and thriving neighborhoods) -> diverse and thriving neighborhoods (3950ms)\nWhere is South Bend?\t1877\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was the founding in, 1877) -> 1877 (3946ms)\nWhere is South Bend?\ta successful career\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was the latest stop in, a successful career) -> a successful career (3950ms)\nWhere is South Bend?\textreme danger\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is believed to be in, extreme danger) -> extreme danger (3950ms)\nWhere is South Bend?\t1957.\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (The South Bend Civic Theatre, was founded in, 1957.) -> 1957. (3950ms)\nWhere is South Bend?\ta pleasant setting\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is a pleasant town in, a pleasant setting) -> a pleasant setting (3946ms)\nWhere is South Bend?\tthe Ivy Tech network\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, are the only ones available in, the Ivy Tech network) -> the Ivy Tech network (3946ms)\nWhere is South Bend?\thistory\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (Your Favorite Activities South Bend, is a city rich in, history) -> history (3948ms)\nWhere is South Bend?\tculture , heritage , history and fun\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is rich in, culture , heritage , history and fun) -> culture , heritage , history and fun (3943ms)\nWhere is South Bend?\tthe release\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was n?t included in, the release) -> the release (3950ms)\nWhere is South Bend?\tthe invasion\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was involved in, the invasion) -> the invasion (3948ms)\nWhere is South Bend?\tthe air\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend Applause, was in, the air) -> the air (3943ms)\nWhere is South Bend?\tRice Cemetery\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was buried in, Rice Cemetery) -> Rice Cemetery (3948ms)\nWhere is South Bend?\tthe St Joseph County\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (the South Bend, is in, the St Joseph County) -> the St Joseph County (3950ms)\nWhere is South Bend?\tcharge\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was in, charge) -> charge (3950ms)\nWhere is South Bend?\tthe top five\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (1937 South Bend Medical Laboratory, was rated in, the top five) -> the top five (3950ms)\nWhere is South Bend?\ta three way tie\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (The IU South Bend Titans, are now in, a three way tie) -> a three way tie (3948ms)\nWhere is South Bend?\t1979\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was founded in, 1979) -> 1979 (3948ms)\nWhere is South Bend?\t1903\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend Railroad, was started in, 1903) -> 1903 (3943ms)\nWhere is South Bend?\t1865\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was incorporated as a city in, 1865) -> 1865 (3950ms)\nWhere is South Bend?\tthe mid-30\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, are expected to be in, the mid-30) -> the mid-30 (3946ms)\nWhere is South Bend?\ta series\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is displayed in, a series) -> a series (3943ms)\nWhere is South Bend?\tBelfast\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (the South Bend Tribune Jackson, was born in, Belfast) -> Belfast (3948ms)\nWhere is South Bend?\tthe Quaker Room\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend Friends, have been worshiping in, the Quaker Room) -> the Quaker Room (3943ms)\nWhere is South Bend?\t2008\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (IU South Bend, was formed in, 2008) -> 2008 (3946ms)\nWhere is South Bend?\tthe U.S. District Court\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend lawsuit, was filed in, the U.S. District Court) -> the U.S. District Court (3950ms)\nWhere is South Bend?\ttouch\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (one of the home buyers in South Bend, will be in, touch) -> touch (3948ms)\nWhere is South Bend?\tthe Eastern Standard Time Zone\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is in, the Eastern Standard Time Zone) -> the Eastern Standard Time Zone (3950ms)\nWhere is South Bend?\tthe process\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (non-wing sprints South Bend Motor Speedway, is in, the process) -> the process (3948ms)\nWhere is South Bend?\tBethel Cemetery\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was buried in, Bethel Cemetery) -> Bethel Cemetery (3943ms)\nWhere is South Bend?\tproducts\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (The more south central bent, is also evident in, products) -> products (3953ms)\nWhere is South Bend?\tthe north\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is in, the north) -> the north (3950ms)\nWhere is South Bend?\tthe country\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is rising faster than anywhere else in, the country) -> the country (3952ms)\nWhere is South Bend?\ttradition and rich\t-0.111111111112\tWhere is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is rich in, tradition and rich) -> tradition and rich (3950ms)\nWhere is South Bend?\tgreat fields\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (7/1/2012 South Bend, are known for, great fields) -> great fields (3953ms)\nWhere is South Bend?\tcycling\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is becoming an even better place for, cycling) -> cycling (3953ms)\nWhere is South Bend?\tfurniture making\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, was an excellent location for, furniture making) -> furniture making (3955ms)\nWhere is South Bend?\tFriday\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (a South Bend bicycle station, is set for, Friday) -> Friday (3953ms)\nWhere is South Bend?\tindiana\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (SOUTH BEND, is a proxy for, indiana) -> indiana (3955ms)\nWhere is South Bend?\tfour games\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is home for, four games) -> four games (3955ms)\nWhere is South Bend?\tthe Studebaker family\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (the South Bend series, was a maid for, the Studebaker family) -> the Studebaker family (3955ms)\nWhere is South Bend?\tthe public 's help\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (Police in South Bend, are looking for, the public 's help) -> the public 's help (3953ms)\nWhere is South Bend?\tdesign\t-0.222222222222\tWhere is South Bend? -> $x: ($x, become of, south bend) -> (design, would become the town of, South Bend) -> design (3953ms)\nWhere is South Bend?\tHeartland values\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, could be the poster children for, Heartland values) -> Heartland values (3953ms)\nWhere is South Bend?\tthe project\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, was the general contractor for, the project) -> the project (3955ms)\nWhere is South Bend?\taffordable living\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, are a great choice for, affordable living) -> affordable living (3953ms)\nWhere is South Bend?\tbusiness ? ?We\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is ?open for, business ? ?We) -> business ? ?We (3953ms)\nWhere is South Bend?\tdiving\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, can be your first step for, diving) -> diving (3953ms)\nWhere is South Bend?\ta casino\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is a financially risky area for, a casino) -> a casino (3955ms)\nWhere is South Bend?\ta modest fee\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, are welcome for, a modest fee) -> a modest fee (3955ms)\nWhere is South Bend?\tthe public\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, are also looking for, the public) -> the public (3953ms)\nWhere is South Bend?\tCarpenters\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is looking for, Carpenters) -> Carpenters (3953ms)\nWhere is South Bend?\ta Network Development Analyst\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is looking for, a Network Development Analyst) -> a Network Development Analyst (3955ms)\nWhere is South Bend?\tbusiness\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is ?open for, business) -> business (3955ms)\nWhere is South Bend?\tmeetings\t-0.222222222222\tWhere is South Bend? -> $x: (south bend, be for, $x) -> (Hilton Hotel South Bend, is the premier hotel for, meetings) -> meetings (3955ms)\nWhere is South Bend?\tclose Your default region\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (close Your default region, is now, South Bend) -> close Your default region (3961ms)\nWhere is South Bend?\tthe center\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (the center, is, South Bend) -> the center (3959ms)\nWhere is South Bend?\tJoseph County\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Joseph County, is, South Bend) -> Joseph County (3960ms)\nWhere is South Bend?\tresearch\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (research, are from, South Bend) -> research (3961ms)\nWhere is South Bend?\tThe largest city\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The largest city, is, South Bend) -> The largest city (3961ms)\nWhere is South Bend?\tthe Clintons\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (the Clintons, were visiting, South Bend) -> the Clintons (3959ms)\nWhere is South Bend?\tThe Young Invincibles\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The Young Invincibles, are visiting, South Bend) -> The Young Invincibles (3956ms)\nWhere is South Bend?\tPerkins\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Perkins, is from, South Bend) -> Perkins (3959ms)\nWhere is South Bend?\tThe body\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The body, was taken to, South Bend) -> The body (3956ms)\nWhere is South Bend?\tIvah Ellen Pickard\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Ivah Ellen Pickard, was from, South Bend) -> Ivah Ellen Pickard (3959ms)\nWhere is South Bend?\tThe training\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The training, will be, South Bend) -> The training (3961ms)\nWhere is South Bend?\tIgnition Park\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Ignition Park, is, South Bend) -> Ignition Park (3962ms)\nWhere is South Bend?\tBreakfast\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Breakfast, is, South Bend) -> Breakfast (3960ms)\nWhere is South Bend?\tthe region\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (the region, is, South Bend) -> the region (3962ms)\nWhere is South Bend?\tLinda\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Linda, was from, South Bend) -> Linda (3959ms)\nWhere is South Bend?\tthe east\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (the east, is, South Bend) -> the east (3956ms)\nWhere is South Bend?\tThe league\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The league, was sending, South Bend) -> The league (3956ms)\nWhere is South Bend?\tThe 3850 dual-disc clutch\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The 3850 dual-disc clutch, is from, South Bend) -> The 3850 dual-disc clutch (3956ms)\nWhere is South Bend?\tthe company\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (the company, is called, South Bend) -> the company (3956ms)\nWhere is South Bend?\tNEWS Colleen\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (NEWS Colleen, is thrilled to be back in, South Bend) -> NEWS Colleen (3962ms)\nWhere is South Bend?\tthe surrounding area\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (the surrounding area, is from, South Bend) -> the surrounding area (3962ms)\nWhere is South Bend?\tThe Rivieras\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The Rivieras, were from, South Bend) -> The Rivieras (3961ms)\nWhere is South Bend?\tthe brothers\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (the brothers, is now, South Bend) -> the brothers (3959ms)\nWhere is South Bend?\tPhil Sinal\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Phil Sinal, is from, South Bend) -> Phil Sinal (3962ms)\nWhere is South Bend?\t? Pictures\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (? Pictures, are from, South Bend) -> ? Pictures (3956ms)\nWhere is South Bend?\tThe co-op\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The co-op, is transforming, South Bend) -> The co-op (3956ms)\nWhere is South Bend?\tpoint\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (point, is, South Bend) -> point (3959ms)\nWhere is South Bend?\tThe first 2\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The first 2, are from, South Bend) -> The first 2 (3959ms)\nWhere is South Bend?\tThe study\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The study, is using, South Bend) -> The study (3960ms)\nWhere is South Bend?\t1932\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (1932, was to be, South Bend) -> 1932 (3960ms)\nWhere is South Bend?\tflights\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (flights, should be booked to, South Bend) -> flights (3962ms)\nWhere is South Bend?\tGames\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Games, are at, South Bend) -> Games (3961ms)\nWhere is South Bend?\tThe workshops\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The workshops, are to be held in, South Bend) -> The workshops (3956ms)\nWhere is South Bend?\tIvy Quad\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Ivy Quad, are from, South Bend) -> Ivy Quad (3962ms)\nWhere is South Bend?\tKyle\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (Kyle, is from, South Bend) -> Kyle (3962ms)\nWhere is South Bend?\tThe county seat\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (The county seat, is, South Bend) -> The county seat (3957ms)\nWhere is South Bend?\tWNDU\t-0.333333333333\tWhere is South Bend? -> $x: ($x, be be, south bend) -> (WNDU, is, South Bend) -> WNDU (3962ms)\nWhere is South Bend?\tone hundred miles\t-0.666666666667\tWhere is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is about, one hundred miles) -> one hundred miles (3963ms)\nWhere is South Bend?\t100 miles\t-0.666666666667\tWhere is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is about, 100 miles) -> 100 miles (3963ms)\nWhere is South Bend?\t15 minutes\t-0.666666666667\tWhere is South Bend? -> $x: (south bend, be about, $x) -> (Air South Bend Regional Airport, is about, 15 minutes) -> 15 minutes (3963ms)\nWhere is South Bend?\tself-reliance\t-0.666666666667\tWhere is South Bend? -> $x: (south bend, be about, $x) -> (my Dad?s South Bend, is about, self-reliance) -> self-reliance (3963ms)\nWhere is South Bend?\t500 miles\t-0.666666666667\tWhere is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is about, 500 miles) -> 500 miles (3963ms)\nWhere is South Bend?\tinteresting places and events\t-0.666666666667\tWhere is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is a blog about, interesting places and events) -> interesting places and events (3963ms)\nWhere is South Bend?\tan hour\t-0.666666666667\tWhere is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is about, an hour) -> an hour (3963ms)\nWhere is it?\tnatural food stores\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (The soda, would be found in, natural food stores) -> natural food stores (13119ms)\nWhere is it?\tthe Millennial Star\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (Copies of it, will be found in, the Millennial Star) -> the Millennial Star (13983ms)\nWhere is it?\tevery Miocene unit\t0.222222222222\tWhere is it? -> $x: (lava, be find in, $x) -> (some lava flows, are found in almost, every Miocene unit) -> every Miocene unit (13983ms)\nWhere is it?\tnatural cosmetic products\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Donkey milk, can be found in, natural cosmetic products) -> natural cosmetic products (14261ms)\nWhere is it?\tGenesis 9:25\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (the matter, is found in, Genesis 9:25) -> Genesis 9:25 (12690ms)\nWhere is it?\tthe spinal cord\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, are found in, the spinal cord) -> the spinal cord (13209ms)\nWhere is it?\tthe interactions\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the interactions) -> the interactions (13523ms)\nWhere is it?\tEphesians\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (all heaven?, is found in, Ephesians) -> Ephesians (13238ms)\nWhere is it?\tthe eye sockets\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver denarii, were found in, the eye sockets) -> the eye sockets (13354ms)\nWhere is it?\tred meat\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, red meat) -> red meat (14245ms)\nWhere is it?\tthe first four words\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (concentrated meaning, can be found in, the first four words) -> the first four words (14196ms)\nWhere is it?\tStreeterville\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, Streeterville) -> Streeterville (14145ms)\nWhere is it?\tthe spare tire\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, the spare tire) -> the spare tire (14196ms)\nWhere is it?\tthe C API\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (each object, can be found in, the C API) -> the C API (13709ms)\nWhere is it?\tthe high forests\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (the small-fruited spotted gum, is found in, the high forests) -> the high forests (13410ms)\nWhere is it?\tMaui\t0.222222222222\tWhere is it? -> $x: (etiquette, be find in, $x) -> (massage techniques and etiquette, can also be found in, Maui) -> Maui (14055ms)\nWhere is it?\tthe First House\t0.222222222222\tWhere is it? -> $x: (neptune, be find in, $x) -> (Neptune, is found in, the First House) -> the First House (14292ms)\nWhere is it?\tsaliva\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, cannot be found in, saliva) -> saliva (14055ms)\nWhere is it?\tthe next subsection\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, is found in, the next subsection) -> the next subsection (14396ms)\nWhere is it?\tchildrens playgrounds\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (a slide, is commonly found in, childrens playgrounds) -> childrens playgrounds (14020ms)\nWhere is it?\tlowland tropical\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (The keel-billed toucan, is found in, lowland tropical) -> lowland tropical (13297ms)\nWhere is it?\tconcealers\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium dioxide, is found in, concealers) -> concealers (13683ms)\nWhere is it?\tthe Concerto\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Goldfinger , Titanium and Stradivari, are found in, the Concerto) -> the Concerto (13468ms)\nWhere is it?\tthe many colors\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (the rainbow, can also be found in, the many colors) -> the many colors (13890ms)\nWhere is it?\tAttic Greek\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can be found only in, Attic Greek) -> Attic Greek (13297ms)\nWhere is it?\tsouthern Africa\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (African penguins, are found in, southern Africa) -> southern Africa (13179ms)\nWhere is it?\tbeer\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, beer) -> beer (14424ms)\nWhere is it?\tthe wiki\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (slides, may be found in, the wiki) -> the wiki (14292ms)\nWhere is it?\tFunk\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (the meaning, as is found in, Funk) -> Funk (14090ms)\nWhere is it?\tseafood\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (.It, can be found in, seafood) -> seafood (13709ms)\nWhere is it?\tregular issue proofs\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, is often found in, regular issue proofs) -> regular issue proofs (13850ms)\nWhere is it?\tthe Mystery\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Spring, are to be found in, the Mystery) -> the Mystery (14292ms)\nWhere is it?\tthe brains\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (these plaques, have been found in, the brains) -> the brains (14424ms)\nWhere is it?\tthe post\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (the slides, can be found in, the post) -> the post (14410ms)\nWhere is it?\tLinux\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (No matter, is found in, Linux) -> Linux (13119ms)\nWhere is it?\tHimachal\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (both Brown and Rainbow Trout, are to be found in, Himachal) -> Himachal (13927ms)\nWhere is it?\t60,7 %\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, was found in, 60,7 %) -> 60,7 % (13410ms)\nWhere is it?\tthe provision\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is only found in, the provision) -> the provision (14055ms)\nWhere is it?\tpet stores\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (Gravity-flow water bottles, can be found in, pet stores) -> pet stores (13870ms)\nWhere is it?\tthe following foods\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, the following foods) -> the following foods (13965ms)\nWhere is it?\tKingston\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (A Spring City nurse, was found in, Kingston) -> Kingston (13325ms)\nWhere is it?\tJesus\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (Life, is found in, Jesus) -> Jesus (13850ms)\nWhere is it?\tMacintosh applications\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (The Smooth Graphics option, is found in, Macintosh applications) -> Macintosh applications (7951ms)\nWhere is it?\tfoods\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk or milk products, may be found in, foods) -> foods (13928ms)\nWhere is it?\tthe seed\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, is found only in, the seed) -> the seed (14352ms)\nWhere is it?\tthe nature\t0.222222222222\tWhere is it? -> $x: (octet, be find in, $x) -> (Octet ring, is also possible to be found in, the nature) -> the nature (13631ms)\nWhere is it?\tseawater\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, is found in, seawater) -> seawater (14261ms)\nWhere is it?\tmilk\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk proteins, may be found in, milk) -> milk (13760ms)\nWhere is it?\tFlorida\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, Florida) -> Florida (13870ms)\nWhere is it?\tthe crust\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, the crust) -> the crust (14307ms)\nWhere is it?\tthe toilet and police\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the toilet and police) -> the toilet and police (14125ms)\nWhere is it?\tlow areas\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (Smaller cypress-gum swamps, are found in, low areas) -> low areas (12961ms)\nWhere is it?\tnorthern Eurasia and forms part\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (worlds, is found in, northern Eurasia and forms part) -> northern Eurasia and forms part (14438ms)\nWhere is it?\tthe condition\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, can be found in, the condition) -> the condition (14162ms)\nWhere is it?\tthe above-mentioned passage\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (the meaning, is found in, the above-mentioned passage) -> the above-mentioned passage (13055ms)\nWhere is it?\tthe tropics\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, the tropics) -> the tropics (13086ms)\nWhere is it?\tthe district\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (hot springs, can be found in, the district) -> the district (13909ms)\nWhere is it?\tthe various pagan\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, were found in, the various pagan) -> the various pagan (14162ms)\nWhere is it?\tthe frame\t0.222222222222\tWhere is it? -> $x: (octet, be find in, $x) -> (these octets, are found in, the frame) -> the frame (14020ms)\nWhere is it?\tDNA\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, were to be found in, DNA) -> DNA (13928ms)\nWhere is it?\tthe help section\t0.222222222222\tWhere is it? -> $x: (etiquette, be find in, $x) -> (?Pin Etiquette?, can be found in, the help section) -> the help section (13440ms)\nWhere is it?\tWestern religious thought\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (lives, is found in, Western religious thought) -> Western religious thought (11801ms)\nWhere is it?\tthe rocks\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (the god Titan.Titanium, can even be found in, the rocks) -> the rocks (14367ms)\nWhere is it?\tatheromas\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gum disease, have been found in, atheromas) -> atheromas (13297ms)\nWhere is it?\tthe WIPO Overview\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, the WIPO Overview) -> the WIPO Overview (14108ms)\nWhere is it?\tplaques\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gum disease, have also been found in, plaques) -> plaques (13440ms)\nWhere is it?\tthe conflict\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found historically in, the conflict) -> the conflict (13909ms)\nWhere is it?\tCanada\t0.222222222222\tWhere is it? -> $x: (propane, be find in, $x) -> (yes propane, is easy to find in, Canada) -> Canada (13830ms)\nWhere is it?\tthe same state\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (the spring, might be found in, the same state) -> the same state (13890ms)\nWhere is it?\tthe teacher\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (the IT content, is found only in, the teacher) -> the teacher (14179ms)\nWhere is it?\tzoos\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (These beautiful medium-sized penguins, are found in, zoos) -> zoos (14424ms)\nWhere is it?\tRFC 1349\t0.222222222222\tWhere is it? -> $x: (octet, be find in, $x) -> (the ToS octet, can be found in, RFC 1349) -> RFC 1349 (14277ms)\nWhere is it?\trock crystals\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, rock crystals) -> rock crystals (14019ms)\nWhere is it?\tpractice\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (these two gums, is found satisfactory in, practice) -> practice (13870ms)\nWhere is it?\tthe mouth and gut\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (arterial plaque, are also found in, the mouth and gut) -> the mouth and gut (14108ms)\nWhere is it?\tLyuba\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> ('s milk, were even found in, Lyuba) -> Lyuba (13946ms)\nWhere is it?\thardened arteries\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gum disease, is also found in, hardened arteries) -> hardened arteries (14179ms)\nWhere is it?\tthe jacket\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the jacket) -> the jacket (14037ms)\nWhere is it?\tdye-sensitised solar cells\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon solar cells, can be found in, dye-sensitised solar cells) -> dye-sensitised solar cells (5124ms)\nWhere is it?\tTHE BIBLE.\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (SIMILAR MEANING, IS FOUND IN, THE BIBLE.) -> THE BIBLE. (13024ms)\nWhere is it?\ta single timeframe\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (highly volatile behavior, can be found in, a single timeframe) -> a single timeframe (13735ms)\nWhere is it?\tthe center\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon deposits, have only been found in, the center) -> the center (13149ms)\nWhere is it?\tNago?s corpse\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, can be found in, Nago?s corpse) -> Nago?s corpse (12961ms)\nWhere is it?\thuge quantities\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, had been found in, huge quantities) -> huge quantities (13605ms)\nWhere is it?\tthe dark\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (The large , smooth finger-pieces, are easy to find in, the dark) -> the dark (13209ms)\nWhere is it?\thumans\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, humans) -> humans (14055ms)\nWhere is it?\tnarrow zone\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (chloride springs, are found in geographically, narrow zone) -> narrow zone (14322ms)\nWhere is it?\tquick runs\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbows and cutthroat, can be found in, quick runs) -> quick runs (14337ms)\nWhere is it?\tLee\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (56It, will be found entire in, Lee) -> Lee (12961ms)\nWhere is it?\tconsiderable numbers\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (the heavens, are found in, considerable numbers) -> considerable numbers (14145ms)\nWhere is it?\tWest Africa\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (Hemoglobin C disease, is found mainly in, West Africa) -> West Africa (13297ms)\nWhere is it?\tthe excellent Museum\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic period, can be found in, the excellent Museum) -> the excellent Museum (14055ms)\nWhere is it?\ta pile\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Spring?s peach, can be found in, a pile) -> a pile (14352ms)\nWhere is it?\ttextbooks\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, is found in, textbooks) -> textbooks (13523ms)\nWhere is it?\tconglomerations\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (Gray matter, is also found in, conglomerations) -> conglomerations (5124ms)\nWhere is it?\tthe lives\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, the lives) -> the lives (13605ms)\nWhere is it?\tthe light\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (a heaven, be found in, the light) -> the light (13909ms)\nWhere is it?\tthe Christian Bible\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, are also found in, the Christian Bible) -> the Christian Bible (13209ms)\nWhere is it?\ta senseless accident\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver lining, can be found in, a senseless accident) -> a senseless accident (13179ms)\nWhere is it?\tthe LXX , Vulgate , and Syriac.\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (this meaning, is found in, the LXX , Vulgate , and Syriac.) -> the LXX , Vulgate , and Syriac. (13735ms)\nWhere is it?\tthe Old Testament\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, the Old Testament) -> the Old Testament (14292ms)\nWhere is it?\tplain or decorative patterns\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (tie slides, can be found in, plain or decorative patterns) -> plain or decorative patterns (14212ms)\nWhere is it?\tNLee\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, NLee) -> NLee (13149ms)\nWhere is it?\tEngland\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, England) -> England (13382ms)\nWhere is it?\ttoothpaste and ketchup\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (guar gum, is found in, toothpaste and ketchup) -> toothpaste and ketchup (13830ms)\nWhere is it?\tthe hearts\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (plaque, has been found in, the hearts) -> the hearts (14128ms)\nWhere is it?\tsouthwest Georgia\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (such springs, are found in, southwest Georgia) -> southwest Georgia (13118ms)\nWhere is it?\tany pet supplies\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk replacers, can be found in, any pet supplies) -> any pet supplies (13268ms)\nWhere is it?\tthe install notes\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (installing VisIt, can be found in, the install notes) -> the install notes (13149ms)\nWhere is it?\tthe Gasconade Formation\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Kratz Spring, is found in, the Gasconade Formation) -> the Gasconade Formation (13325ms)\nWhere is it?\ta sugar free variety\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (Bazooka gum, can also be found in, a sugar free variety) -> a sugar free variety (14337ms)\nWhere is it?\tthe burial?s nobility\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the objects, found were used in, the burial?s nobility) -> the burial?s nobility (13209ms)\nWhere is it?\tEgyptian urns\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (traces of it, have been found in, Egyptian urns) -> Egyptian urns (14108ms)\nWhere is it?\t43 %\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (concomitant pleural plaques, were found in only, 43 %) -> 43 % (13468ms)\nWhere is it?\tEmily Post\t0.222222222222\tWhere is it? -> $x: (etiquette, be find in, $x) -> (an etiquette conundrum, cannot be found in, Emily Post) -> Emily Post (13179ms)\nWhere is it?\tthe courtyard\t0.222222222222\tWhere is it? -> $x: (propane, be find in, $x) -> (Propane Tanks, can be found in, the courtyard) -> the courtyard (14037ms)\nWhere is it?\tthe Gulf\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Smooth and thorny skates, are most commonly found in, the Gulf) -> the Gulf (14367ms)\nWhere is it?\tTDWG data standards\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, are found in, TDWG data standards) -> TDWG data standards (13785ms)\nWhere is it?\tTonopah\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, was found in, Tonopah) -> Tonopah (13890ms)\nWhere is it?\tthe 70s\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (neolithic human remains and tools, were found in, the 70s) -> the 70s (7951ms)\nWhere is it?\tpaint and plastics\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (volatile organic compounds, are found in, paint and plastics) -> paint and plastics (14424ms)\nWhere is it?\tcheap wow gold\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (Ke?Theril.It, can be found in, cheap wow gold) -> cheap wow gold (14276ms)\nWhere is it?\tthe Orange County\t0.222222222222\tWhere is it? -> $x: (newport, be find in, $x) -> (Newport Seashore, is found in, the Orange County) -> the Orange County (13850ms)\nWhere is it?\thousehold cleaners\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (3. It, can be found in, household cleaners) -> household cleaners (13119ms)\nWhere is it?\tthe oil\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, is often found in, the oil) -> the oil (13024ms)\nWhere is it?\tthe Rockies and west\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (the rainbow trout, was found in, the Rockies and west) -> the Rockies and west (14292ms)\nWhere is it?\tMuslim Names\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (the Faith ;it, is found in, Muslim Names) -> Muslim Names (13927ms)\nWhere is it?\tTel Yitzhak\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon, were found in, Tel Yitzhak) -> Tel Yitzhak (13760ms)\nWhere is it?\tthe cities and towns\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (good milk, was hard to find in, the cities and towns) -> the cities and towns (13709ms)\nWhere is it?\tthe man?s pocket\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the man?s pocket) -> the man?s pocket (13709ms)\nWhere is it?\tdifferent sizes\t0.222222222222\tWhere is it? -> $x: (propane, be find in, $x) -> (the propane outdoor grill, is found in, different sizes) -> different sizes (13928ms)\nWhere is it?\tFairley\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, Fairley) -> Fairley (13468ms)\nWhere is it?\tNorthern Kashmir\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (Ladakh.It, is found in, Northern Kashmir) -> Northern Kashmir (13890ms)\nWhere is it?\tSurrey\t0.222222222222\tWhere is it? -> $x: (thorpe park, be find in, $x) -> (Thorpe Park, is found in, Surrey) -> Surrey (13928ms)\nWhere is it?\tnorthern California\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (The worlds, is found in, northern California) -> northern California (13946ms)\nWhere is it?\tClark Canyon Creek\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Colorful Rainbow Trout, can be found in, Clark Canyon Creek) -> Clark Canyon Creek (14367ms)\nWhere is it?\ta hidden compartment\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, a hidden compartment) -> a hidden compartment (13024ms)\nWhere is it?\tthe encounters\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the encounters) -> the encounters (13149ms)\nWhere is it?\tthe Bay area\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (the Silicon Valley, can also be found in, the Bay area) -> the Bay area (13890ms)\nWhere is it?\t72 percent\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Plaques, were found in, 72 percent) -> 72 percent (13965ms)\nWhere is it?\tthe ritual\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, was also found in, the ritual) -> the ritual (14145ms)\nWhere is it?\tlegumes\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (a gum, can be found in, legumes) -> legumes (14020ms)\nWhere is it?\tgrasslands\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Smooth Snakes, are found in, grasslands) -> grasslands (14424ms)\nWhere is it?\tthe same staircore\t0.222222222222\tWhere is it? -> $x: (propane tank, be find in, $x) -> (A propane tank, was also found in, the same staircore) -> the same staircore (12961ms)\nWhere is it?\tmale construction workers\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (pleural plaques, were also found in, male construction workers) -> male construction workers (12961ms)\nWhere is it?\tSan Antonio\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (this gum, was nowhere to be found in, San Antonio) -> San Antonio (13086ms)\nWhere is it?\tthe city\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (a neolithic site, has been found in, the city) -> the city (14277ms)\nWhere is it?\tthe depths\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is to be found in, the depths) -> the depths (14367ms)\nWhere is it?\tthe village\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic remains, were found in, the village) -> the village (13551ms)\nWhere is it?\tgravitational lens experiments\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (dark matter, has been found in, gravitational lens experiments) -> gravitational lens experiments (13889ms)\nWhere is it?\tsmall portions\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world?s, is found only in, small portions) -> small portions (13983ms)\nWhere is it?\tthe life\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are also found in, the life) -> the life (13468ms)\nWhere is it?\tthe Antarctic\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Not all penguins, are found in, the Antarctic) -> the Antarctic (14337ms)\nWhere is it?\tthe ground\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (the silver, was found in, the ground) -> the ground (13325ms)\nWhere is it?\tMorning Sun Books\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (The smooth side slider, may be found in, Morning Sun Books) -> Morning Sun Books (13890ms)\nWhere is it?\torgans & blood vessels\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth muscle, is found in, organs & blood vessels) -> organs & blood vessels (13325ms)\nWhere is it?\tthe following books\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (All Worlds, may be found in, the following books) -> the following books (11050ms)\nWhere is it?\twonder and terror\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, wonder and terror) -> wonder and terror (13683ms)\nWhere is it?\tsections\t0.222222222222\tWhere is it? -> $x: (kennel, be find in, $x) -> (a kennel, are found in, sections) -> sections (14108ms)\nWhere is it?\tartery plaques\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (dental plaque, have also been found in, artery plaques) -> artery plaques (13631ms)\nWhere is it?\tthe works\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, the works) -> the works (13354ms)\nWhere is it?\tthe real world\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (a world, can be find in, the real world) -> the real world (11049ms)\nWhere is it?\tthe samples/prolog/ducks\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (Duck World, can be found in, the samples/prolog/ducks) -> the samples/prolog/ducks (13927ms)\nWhere is it?\tair and water\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Some other titanium compounds, are also found in, air and water) -> air and water (14179ms)\nWhere is it?\tthe soap/detergent section\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (Washing soda, can be found in, the soap/detergent section) -> the soap/detergent section (14229ms)\nWhere is it?\tthe laundry section\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (Washing soda, can be found in, the laundry section) -> the laundry section (13268ms)\nWhere is it?\tthe reservoir and inlet waters\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Some nice rainbows, are found in, the reservoir and inlet waters) -> the reservoir and inlet waters (14229ms)\nWhere is it?\tcollection\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (This slide collection, was found in, collection) -> collection (13440ms)\nWhere is it?\tswamp areas\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Hot Springs Hot springs, are typically found in, swamp areas) -> swamp areas (13180ms)\nWhere is it?\tRobert\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (Objects, were found broken in, Robert) -> Robert (14073ms)\nWhere is it?\tToronto\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, Toronto) -> Toronto (13325ms)\nWhere is it?\tthe righteousness\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, are found only in, the righteousness) -> the righteousness (13810ms)\nWhere is it?\tthe bottom\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (earthy matter, will be found in, the bottom) -> the bottom (14367ms)\nWhere is it?\tred blood cells\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, red blood cells) -> red blood cells (14410ms)\nWhere is it?\tcast away cloth\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven and earth, would be found wrapped in, cast away cloth) -> cast away cloth (13785ms)\nWhere is it?\tthe red blood cells\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (Hemoglobin, is a protein found in, the red blood cells) -> the red blood cells (14292ms)\nWhere is it?\tMeniere?s patients\t0.222222222222\tWhere is it? -> $x: (recruitment, be find in, $x) -> (Recruitment, is a common finding in, Meniere?s patients) -> Meniere?s patients (13382ms)\nWhere is it?\tthe neurofibrillary tangles\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon, have been found in, the neurofibrillary tangles) -> the neurofibrillary tangles (13579ms)\nWhere is it?\ttransfigured parallel\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, transfigured parallel) -> transfigured parallel (13928ms)\nWhere is it?\tdark green vegetables\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, dark green vegetables) -> dark green vegetables (13055ms)\nWhere is it?\tlarge numbers\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (King penguins, are also found in, large numbers) -> large numbers (14322ms)\nWhere is it?\twater additives\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (sugarless gum and toothpaste, is found in, water additives) -> water additives (14410ms)\nWhere is it?\tAssyria\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (Cruciform objects, have been found in, Assyria) -> Assyria (13683ms)\nWhere is it?\tthe man?s sock\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was also found in, the man?s sock) -> the man?s sock (13965ms)\nWhere is it?\tThailand\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, Thailand) -> Thailand (13238ms)\nWhere is it?\tMaximum Milk Thistle?\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk thistle, is found in, Maximum Milk Thistle?) -> Maximum Milk Thistle? (11049ms)\nWhere is it?\tthe Good Company\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Liberation and heaven, are found in, the Good Company) -> the Good Company (13658ms)\nWhere is it?\tNature\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (healthy teeth and gums, are found in, Nature) -> Nature (14162ms)\nWhere is it?\tthe lake\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (rainbow trout and char, are found in, the lake) -> the lake (13927ms)\nWhere is it?\tthe words\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (Life, is found in, the words) -> the words (13579ms)\nWhere is it?\tlumps\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (better?it, is found in, lumps) -> lumps (13830ms)\nWhere is it?\tDobuita\t0.222222222222\tWhere is it? -> $x: (hot dog, be find in, $x) -> (a Hot Dog stand, can usually be found in, Dobuita) -> Dobuita (14424ms)\nWhere is it?\tNewberg\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, can be found in, Newberg) -> Newberg (13268ms)\nWhere is it?\ta water canal\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (candy and gum, were found dumped in, a water canal) -> a water canal (13119ms)\nWhere is it?\tmajor destinations\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (hot springs, are found in, major destinations) -> major destinations (13890ms)\nWhere is it?\tthe pure state\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, the pure state) -> the pure state (13238ms)\nWhere is it?\twomen\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (a solid , smooth , benign lump, is commonly found in, women) -> women (13086ms)\nWhere is it?\tthe Middle East\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (the world .It, is found in, the Middle East) -> the Middle East (13810ms)\nWhere is it?\tneighborhoods\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (Sexual slavery, can also be found in, neighborhoods) -> neighborhoods (13760ms)\nWhere is it?\tthe groundwater\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (volatile organic compounds, were found in, the groundwater) -> the groundwater (13735ms)\nWhere is it?\tthe Temple\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, can be found in, the Temple) -> the Temple (14162ms)\nWhere is it?\tthe often-used terms\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the often-used terms) -> the often-used terms (13149ms)\nWhere is it?\tvarious stages\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Bought titanium, can be found in, various stages) -> various stages (14337ms)\nWhere is it?\tevery area\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milking Shorthorns, are found in almost, every area) -> every area (12993ms)\nWhere is it?\topen sea\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (rainbow runners, are found both in, open sea) -> open sea (13551ms)\nWhere is it?\tamber\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, have been found in, amber) -> amber (13055ms)\nWhere is it?\tan exclusive cover story\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> ('s Rainbow 6 Patriots, can be found in, an exclusive cover story) -> an exclusive cover story (14410ms)\nWhere is it?\tthe southern hemisphere\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (All penguins, are found only in, the southern hemisphere) -> the southern hemisphere (14261ms)\nWhere is it?\ta lot\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (baking soda pop, is certainly already found in, a lot) -> a lot (14292ms)\nWhere is it?\ta major secret drug tunnel\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, a major secret drug tunnel) -> a major secret drug tunnel (14037ms)\nWhere is it?\tsuch tissues\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth muscle, is found in, such tissues) -> such tissues (14073ms)\nWhere is it?\tfollowing page\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (A link to it, is found in, following page) -> following page (14245ms)\nWhere is it?\tthe Muslim religion\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, the Muslim religion) -> the Muslim religion (13297ms)\nWhere is it?\tsix individuals\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Senile plaques, were found in, six individuals) -> six individuals (14108ms)\nWhere is it?\tthe latest issue\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the latest issue) -> the latest issue (13928ms)\nWhere is it?\tthe Mississippi\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (The smooth softshell, is found in, the Mississippi) -> the Mississippi (14212ms)\nWhere is it?\ta standardized extract form\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk thistle, is usually found in, a standardized extract form) -> a standardized extract form (14229ms)\nWhere is it?\tthe Peninsula Valdes\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the Peninsula Valdes) -> the Peninsula Valdes (14090ms)\nWhere is it?\tlogical places\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, are found in, logical places) -> logical places (13410ms)\nWhere is it?\tdiseased brains\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (no amyloid plaques, are found in, diseased brains) -> diseased brains (13382ms)\nWhere is it?\tperiod\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the object, is found in, period) -> period (14090ms)\nWhere is it?\tone study\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (skimmed milk, was found in, one study) -> one study (13382ms)\nWhere is it?\tthe space\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the space) -> the space (13683ms)\nWhere is it?\tthe heart\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (peace--it, is found in, the heart) -> the heart (13468ms)\nWhere is it?\ta Blount Co. cemetery\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (This plaque, has yet to be found in, a Blount Co. cemetery) -> a Blount Co. cemetery (13551ms)\nWhere is it?\tthe soil gases\t0.222222222222\tWhere is it? -> $x: (propane, be find in, $x) -> (ethane , propane and butanes, was found in, the soil gases) -> the soil gases (14261ms)\nWhere is it?\tthe minds\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, can be found in, the minds) -> the minds (13468ms)\nWhere is it?\tany\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, may be found in, any) -> any (14395ms)\nWhere is it?\tGod\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, God) -> God (14395ms)\nWhere is it?\tthe backpack\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, the backpack) -> the backpack (14277ms)\nWhere is it?\tSurveyors Lake\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow Trout, can be found in, Surveyors Lake) -> Surveyors Lake (13297ms)\nWhere is it?\tblack and tan , black and white\t0.222222222222\tWhere is it? -> $x: (kennel, be find in, $x) -> (Gordon kennel, were found in, black and tan , black and white) -> black and tan , black and white (11050ms)\nWhere is it?\t65.5 %\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Plaques moderate or large, were found in, 65.5 %) -> 65.5 % (13830ms)\nWhere is it?\tthe United States\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> ('s milk, is almost impossible to find in, the United States) -> the United States (14261ms)\nWhere is it?\tIslamic countries\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, Islamic countries) -> Islamic countries (13830ms)\nWhere is it?\twaters\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Rescued Fairy penguin Dirk, was found swimming in, waters) -> waters (13946ms)\nWhere is it?\t?gina\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, have been found in, ?gina) -> ?gina (13238ms)\nWhere is it?\tthe fridge section\t0.222222222222\tWhere is it? -> $x: (hot dog, be find in, $x) -> (hot dogs etc, can be found in, the fridge section) -> the fridge section (14322ms)\nWhere is it?\tBrazil and Argentina\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are consistently found in, Brazil and Argentina) -> Brazil and Argentina (14179ms)\nWhere is it?\tthe quantum vacuum\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (repulsive gravity, can be found in, the quantum vacuum) -> the quantum vacuum (13209ms)\nWhere is it?\tthe skins\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, the skins) -> the skins (13983ms)\nWhere is it?\tthe blood vessels\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (the swollen gums, can now be found in, the blood vessels) -> the blood vessels (14037ms)\nWhere is it?\tless educated people\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (3. It, is found more in, less educated people) -> less educated people (14229ms)\nWhere is it?\t3 different forms\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, 3 different forms) -> 3 different forms (13983ms)\nWhere is it?\tlakes\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (lake trout and rainbow trout, are found in, lakes) -> lakes (13928ms)\nWhere is it?\tmassed hordes\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, is commonly found in, massed hordes) -> massed hordes (13909ms)\nWhere is it?\tthe Benagerie Ridge\t0.222222222222\tWhere is it? -> $x: (lava, be find in, $x) -> (minor lava flows, are also found in, the Benagerie Ridge) -> the Benagerie Ridge (14229ms)\nWhere is it?\tthe south\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (present it, is only found in, the south) -> the south (13830ms)\nWhere is it?\tconjunction\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, conjunction) -> conjunction (12690ms)\nWhere is it?\teach system\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, each system) -> each system (13325ms)\nWhere is it?\tthe dermis\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is found in, the dermis) -> the dermis (12993ms)\nWhere is it?\tselect Sears and Macy?s retailers\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (Scarce World, can be found in, select Sears and Macy?s retailers) -> select Sears and Macy?s retailers (13605ms)\nWhere is it?\ta swimming pool\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (fecal matter, is found in, a swimming pool) -> a swimming pool (14090ms)\nWhere is it?\tthe death and resurrection\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, the death and resurrection) -> the death and resurrection (14381ms)\nWhere is it?\tthe dense core\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, has been found in, the dense core) -> the dense core (14352ms)\nWhere is it?\tthe Selection Guide\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon photodiodes, can be found in, the Selection Guide) -> the Selection Guide (14352ms)\nWhere is it?\tthe speech act\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the speech act) -> the speech act (13468ms)\nWhere is it?\tYosemite Valley\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, Yosemite Valley) -> Yosemite Valley (13382ms)\nWhere is it?\tplant and animal sources\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, plant and animal sources) -> plant and animal sources (14277ms)\nWhere is it?\tverse\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, was found in, verse) -> verse (13325ms)\nWhere is it?\tthe cortex\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (this slide, are to be found in, the cortex) -> the cortex (14213ms)\nWhere is it?\tNGC 6726\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Spring 2002 NGC6729, is found in, NGC 6726) -> NGC 6726 (13523ms)\nWhere is it?\tgreat abundance\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (oxygen and silicon, is found in, great abundance) -> great abundance (14438ms)\nWhere is it?\tsection 2\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, section 2) -> section 2 (14020ms)\nWhere is it?\ta home\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found stuffed in, a home) -> a home (14073ms)\nWhere is it?\tthe slower back eddies and pools\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, can be found in, the slower back eddies and pools) -> the slower back eddies and pools (12993ms)\nWhere is it?\tKing Tutankhamen?s tomb\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk paint, were even found in, King Tutankhamen?s tomb) -> King Tutankhamen?s tomb (13983ms)\nWhere is it?\troot vegetables\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon, is found in, root vegetables) -> root vegetables (14381ms)\nWhere is it?\tthe livers of copper deficient animals\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, has been found in, the livers of copper deficient animals) -> the livers of copper deficient animals (13297ms)\nWhere is it?\tthe following parable\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the following parable) -> the following parable (14245ms)\nWhere is it?\ta classroom\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (an object, can be found in, a classroom) -> a classroom (14277ms)\nWhere is it?\tcontainers\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, was found in, containers) -> containers (11049ms)\nWhere is it?\tthe nineties\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (gravity waves, was found in, the nineties) -> the nineties (14245ms)\nWhere is it?\tiron-enriched cereals\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is also found in, iron-enriched cereals) -> iron-enriched cereals (7951ms)\nWhere is it?\thigh concentrations\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, is found in, high concentrations) -> high concentrations (14073ms)\nWhere is it?\thospitals\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk banks, are often found in, hospitals) -> hospitals (12961ms)\nWhere is it?\tWolf Creek\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow and Brooke Trout, can be found in, Wolf Creek) -> Wolf Creek (14245ms)\nWhere is it?\tthe offering-burial complexes\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, were found in, the offering-burial complexes) -> the offering-burial complexes (14145ms)\nWhere is it?\tsand\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon, is commonly found in, sand) -> sand (14410ms)\nWhere is it?\tthe top 20 feet\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (spring, will be found in, the top 20 feet) -> the top 20 feet (3660ms)\nWhere is it?\tthe form\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (Matter, is commonly found in, the form) -> the form (14179ms)\nWhere is it?\tthe shadows\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is to be found in, the shadows) -> the shadows (14367ms)\nWhere is it?\tthe backtrace and frame responses\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (This object, can be found in, the backtrace and frame responses) -> the backtrace and frame responses (14337ms)\nWhere is it?\tthe inner sanctuary\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, are found only in, the inner sanctuary) -> the inner sanctuary (13909ms)\nWhere is it?\tpackages\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (rice milk, can be found in, packages) -> packages (14001ms)\nWhere is it?\tthe small town\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic settlements, have been found in, the small town) -> the small town (13119ms)\nWhere is it?\tthe directory\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the object, is found in, the directory) -> the directory (14145ms)\nWhere is it?\tsuffering\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, suffering) -> suffering (14322ms)\nWhere is it?\tthe late\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium, was found in, the late) -> the late (14292ms)\nWhere is it?\ta Sumerian fable\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, a Sumerian fable) -> a Sumerian fable (14125ms)\nWhere is it?\tMeat\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, Is found in, Meat) -> Meat (13118ms)\nWhere is it?\t1846\t0.222222222222\tWhere is it? -> $x: (neptune, be find in, $x) -> (Neptune, was found in, 1846) -> 1846 (13810ms)\nWhere is it?\tthe chaos\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, may be more often found in, the chaos) -> the chaos (14145ms)\nWhere is it?\ta legend\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (It?s roots, are found in, a legend) -> a legend (14292ms)\nWhere is it?\tthe rear hatchback area\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, the rear hatchback area) -> the rear hatchback area (14196ms)\nWhere is it?\tCrete\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (similar Neolithic clay figures, are found in, Crete) -> Crete (14410ms)\nWhere is it?\tveins\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (The silver, is found in, veins) -> veins (13983ms)\nWhere is it?\tplants\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (living matters, are found in, plants) -> plants (13605ms)\nWhere is it?\tthe river\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow Trout, may be found in, the river) -> the river (13382ms)\nWhere is it?\tdairy products\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk sugar, is found in, dairy products) -> dairy products (14381ms)\nWhere is it?\tA1 Ultra PC Cleaner\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (3-times.It, was found in, A1 Ultra PC Cleaner) -> A1 Ultra PC Cleaner (13238ms)\nWhere is it?\tsubcutaneous breast tissue\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth muscle, may be found in, subcutaneous breast tissue) -> subcutaneous breast tissue (14367ms)\nWhere is it?\tthe Sacred Volume\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (Slavery, can anywhere be found in, the Sacred Volume) -> the Sacred Volume (12174ms)\nWhere is it?\tdried fruit\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, dried fruit) -> dried fruit (14125ms)\nWhere is it?\trevelation\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (no idea of it, to be found in, revelation) -> revelation (13683ms)\nWhere is it?\tthe diary\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, is found in, the diary) -> the diary (13440ms)\nWhere is it?\tthe teachings and writings\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (Life, may be found in, the teachings and writings) -> the teachings and writings (13760ms)\nWhere is it?\teither group\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (glycated hemoglobin, were found in, either group) -> either group (14395ms)\nWhere is it?\tJohn 6\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (its meaning, is found in, John 6) -> John 6 (14073ms)\nWhere is it?\tthe Cerbat Mountains\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, was found in, the Cerbat Mountains) -> the Cerbat Mountains (11801ms)\nWhere is it?\tfront\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (This Ontario Heritage Foundation plaque, can be found in, front) -> front (14381ms)\nWhere is it?\tclassrooms\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (the heavens, have been found in, classrooms) -> classrooms (14277ms)\nWhere is it?\tthe June 1996 Issue\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (world, can be found in, the June 1996 Issue) -> the June 1996 Issue (14019ms)\nWhere is it?\tTian Tan Park\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, Tian Tan Park) -> Tian Tan Park (13735ms)\nWhere is it?\tthe Antarctica Region\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (the Penguins, can only be found in, the Antarctica Region) -> the Antarctica Region (14395ms)\nWhere is it?\tthe crater\t0.222222222222\tWhere is it? -> $x: (lava, be find in, $x) -> (the long active lava lakes, are regularly found in, the crater) -> the crater (13268ms)\nWhere is it?\tthe expulsion\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, will be found neither in, the expulsion) -> the expulsion (14125ms)\nWhere is it?\tScripture\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is to be found nowhere in, Scripture) -> Scripture (14229ms)\nWhere is it?\tnature\t0.222222222222\tWhere is it? -> $x: (titanium dioxide, be find in, $x) -> (Titanium dioxide, is found in, nature) -> nature (14395ms)\nWhere is it?\tthe Cathedral\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, can be found in, the Cathedral) -> the Cathedral (13354ms)\nWhere is it?\tthe database\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (An object, to be found in, the database) -> the database (14162ms)\nWhere is it?\tgrains\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is also found in, grains) -> grains (14381ms)\nWhere is it?\tthe IPR Policy\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (technical matters, should be found in, the IPR Policy) -> the IPR Policy (13354ms)\nWhere is it?\tBritish soccer\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (last spring, was unable to find a job in, British soccer) -> British soccer (13024ms)\nWhere is it?\tthe project file repository\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (the slides, can be found in, the project file repository) -> the project file repository (13631ms)\nWhere is it?\tthe margins\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic petroglyphs, are found floating in, the margins) -> the margins (13496ms)\nWhere is it?\tcountries but countries\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (now it, is found mainly in developing, countries but countries) -> countries but countries (13268ms)\nWhere is it?\tJob 9:33\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (the idea it expresses, is found in, Job 9:33) -> Job 9:33 (13440ms)\nWhere is it?\tlocalized patches\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (These psoriasis plaques, are usually found in, localized patches) -> localized patches (7951ms)\nWhere is it?\tliver cells\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth ER, are found in, liver cells) -> liver cells (14001ms)\nWhere is it?\tthe dead baby\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gums, was found in, the dead baby) -> the dead baby (14055ms)\nWhere is it?\tthe resources page\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (Lecture slides, can be found in, the resources page) -> the resources page (12174ms)\nWhere is it?\tthe carotid arteries\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Atherosclerotic plaques, were found in, the carotid arteries) -> the carotid arteries (13180ms)\nWhere is it?\ta region\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (These objects, are found in, a region) -> a region (14322ms)\nWhere is it?\tthe most unlikely corners\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, can be found in, the most unlikely corners) -> the most unlikely corners (14145ms)\nWhere is it?\tthe physical , material creation\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, can be found in, the physical , material creation) -> the physical , material creation (13086ms)\nWhere is it?\tthe Lord\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the Lord) -> the Lord (11049ms)\nWhere is it?\tdreams\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (Lost objects, are frequently found in, dreams) -> dreams (13983ms)\nWhere is it?\tthe product catalogue\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (chain and slide rail, can be found in, the product catalogue) -> the product catalogue (14292ms)\nWhere is it?\tSatan\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, Satan) -> Satan (11801ms)\nWhere is it?\tworldly and sensual persons\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, worldly and sensual persons) -> worldly and sensual persons (13658ms)\nWhere is it?\tnumbers\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, are found in, numbers) -> numbers (13870ms)\nWhere is it?\tthe aisle\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Coconut milk, can be found in, the aisle) -> the aisle (13551ms)\nWhere is it?\tone lot C sample unit\t0.222222222222\tWhere is it? -> $x: (newport, be find in, $x) -> (serotype Newport, was found in, one lot C sample unit) -> one lot C sample unit (14424ms)\nWhere is it?\ta barn\t0.222222222222\tWhere is it? -> $x: (neon, be find in, $x) -> (the 1950s-era neon arrow sign, was found in, a barn) -> a barn (13890ms)\nWhere is it?\tthe very first book\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the very first book) -> the very first book (13785ms)\nWhere is it?\trecent excavations\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, had been found in, recent excavations) -> recent excavations (13631ms)\nWhere is it?\tdozens\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world?s, can be found in, dozens) -> dozens (14073ms)\nWhere is it?\tthe placenta\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (titanium dioxide nanoparticles, were found in, the placenta) -> the placenta (14352ms)\nWhere is it?\testuaries\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (The smooth flounder, is to be found in, estuaries) -> estuaries (14108ms)\nWhere is it?\tActs\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, Acts) -> Acts (14212ms)\nWhere is it?\tthe territory\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (an object, is found in, the territory) -> the territory (14179ms)\nWhere is it?\tthe kitchen\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, the kitchen) -> the kitchen (13149ms)\nWhere is it?\tthe Gospel\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is found only in, the Gospel) -> the Gospel (14438ms)\nWhere is it?\tcolonies\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (penguins, can be found in, colonies) -> colonies (12690ms)\nWhere is it?\tthe Bible\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, the Bible) -> the Bible (14179ms)\nWhere is it?\twarm climates\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (the Megellanic penguin, is found in, warm climates) -> warm climates (14001ms)\nWhere is it?\tlarge quantities\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (* Casein milk, is found in, large quantities) -> large quantities (13965ms)\nWhere is it?\ta vacuum\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, cannot be found in, a vacuum) -> a vacuum (13410ms)\nWhere is it?\tIowa\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk snake, are found in, Iowa) -> Iowa (13946ms)\nWhere is it?\tthe JISC Legal Interception\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, the JISC Legal Interception) -> the JISC Legal Interception (13965ms)\nWhere is it?\tJesus Christ\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, Jesus Christ) -> Jesus Christ (13410ms)\nWhere is it?\tthe AHEAD web site\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (World, can be found in, the AHEAD web site) -> the AHEAD web site (14128ms)\nWhere is it?\tthe soil\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (a valuable gum, could be found in, the soil) -> the soil (14090ms)\nWhere is it?\ta garbage bag\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (SHARE THIS SLIDE Harper, was found in, a garbage bag) -> a garbage bag (14108ms)\nWhere is it?\tthe Southern Hemisphere\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Penguins, are found wild only in, the Southern Hemisphere) -> the Southern Hemisphere (14212ms)\nWhere is it?\tthe streams\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (brown and Rainbow trout, are found in, the streams) -> the streams (13086ms)\nWhere is it?\tNew Zealand\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (the ?elegant ? penguin, were found in, New Zealand) -> New Zealand (14438ms)\nWhere is it?\tthe cache\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the objects, are found in, the cache) -> the cache (14261ms)\nWhere is it?\telemental analysis\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, was found in, elemental analysis) -> elemental analysis (14090ms)\nWhere is it?\tthe Native Americans\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (breast milk, have been found in, the Native Americans) -> the Native Americans (14352ms)\nWhere is it?\tEurope\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, was found more firmly in, Europe) -> Europe (13523ms)\nWhere is it?\tItaly\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (the viticultural rainbow, can be found in, Italy) -> Italy (9146ms)\nWhere is it?\tthree major regions\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, three major regions) -> three major regions (12690ms)\nWhere is it?\tthe Holy Bible\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, the Holy Bible) -> the Holy Bible (14424ms)\nWhere is it?\tthe tomb\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver wires, were found in, the tomb) -> the tomb (13551ms)\nWhere is it?\tthe as\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (the explanation of gravity, to be found in, the as) -> the as (14352ms)\nWhere is it?\tthe Trent\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic skulls, was found in, the Trent) -> the Trent (14396ms)\nWhere is it?\tVostok\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, Vostok) -> Vostok (13496ms)\nWhere is it?\tthe product\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, have been found in, the product) -> the product (14037ms)\nWhere is it?\tHispanic\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Coconut milk, is found in, Hispanic) -> Hispanic (14277ms)\nWhere is it?\tCentral America\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (toucan, is found in, Central America) -> Central America (3660ms)\nWhere is it?\tdifferent forms\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, is found in, different forms) -> different forms (14381ms)\nWhere is it?\tabundance nor activity\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is neither found in, abundance nor activity) -> abundance nor activity (14055ms)\nWhere is it?\tanimal meats\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, is found mostly in, animal meats) -> animal meats (14381ms)\nWhere is it?\thtml form\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (The slides, can be found in, html form) -> html form (14245ms)\nWhere is it?\tNamibia\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Penguins, are also found in, Namibia) -> Namibia (13086ms)\nWhere is it?\tthe > nature\t0.222222222222\tWhere is it? -> $x: (octet, be find in, $x) -> (> Octet ring, is also possible to be found in, the > nature) -> the > nature (13983ms)\nWhere is it?\tthe bones\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon, is found in, the bones) -> the bones (14410ms)\nWhere is it?\tturf\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth crabgrass, is more often found in, turf) -> turf (14322ms)\nWhere is it?\tconvenience\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (All Dentyne sugarless gum products, can be found in, convenience) -> convenience (13890ms)\nWhere is it?\tthe food\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (Slavery, can be found in, the food) -> the food (12993ms)\nWhere is it?\ta double-blind trial\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, was found in, a double-blind trial) -> a double-blind trial (13850ms)\nWhere is it?\tgemba\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, can be found in, gemba) -> gemba (13810ms)\nWhere is it?\tseveral mounds\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, has been found in, several mounds) -> several mounds (13830ms)\nWhere is it?\tmeat\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, meat) -> meat (14020ms)\nWhere is it?\tRegent\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, Regent) -> Regent (13268ms)\nWhere is it?\tthe loss\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, be found in, the loss) -> the loss (13605ms)\nWhere is it?\tthe caves\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, the caves) -> the caves (14337ms)\nWhere is it?\ta shelter\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic remains, were found in, a shelter) -> a shelter (14037ms)\nWhere is it?\tOrkney\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (a Neolithic village, was found in, Orkney) -> Orkney (14055ms)\nWhere is it?\tthe most unexpected places\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (Johnsonian gravity, will be found in, the most unexpected places) -> the most unexpected places (13496ms)\nWhere is it?\tthe Muslim slave trade\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, can be found in, the Muslim slave trade) -> the Muslim slave trade (13180ms)\nWhere is it?\tthe soldier\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (the milk, was found undigested in, the soldier) -> the soldier (13810ms)\nWhere is it?\tthe sixth\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven and Earth, is found in, the sixth) -> the sixth (13709ms)\nWhere is it?\tthe Title Searching section\t0.222222222222\tWhere is it? -> $x: (title search, be find in, $x) -> (title searching, may be found in, the Title Searching section) -> the Title Searching section (13179ms)\nWhere is it?\tcouples\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (Toucans, are found in, couples) -> couples (13909ms)\nWhere is it?\tJohns Hopkins Diabetes Guide\t0.222222222222\tWhere is it? -> $x: (osteomyelitis, be find in, $x) -> (Osteomyelitis, was found in, Johns Hopkins Diabetes Guide) -> Johns Hopkins Diabetes Guide (13468ms)\nWhere is it?\tlarge shoals\t0.222222222222\tWhere is it? -> $x: (neon, be find in, $x) -> (neon tetras, can be found in, large shoals) -> large shoals (13946ms)\nWhere is it?\ta variety\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (malted milk, is found in, a variety) -> a variety (14395ms)\nWhere is it?\tsilver cell batteries\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, silver cell batteries) -> silver cell batteries (14292ms)\nWhere is it?\tthe universe\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found everywhere in, the universe) -> the universe (13785ms)\nWhere is it?\tthe file <resbrf.ppt>\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (PowerPoint 97 slides, can be found in, the file <resbrf.ppt>) -> the file <resbrf.ppt> (12993ms)\nWhere is it?\ttown\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Two Neolithic arrowheads, have been found in, town) -> town (13354ms)\nWhere is it?\tair\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (the most volatile, are found in, air) -> air (12961ms)\nWhere is it?\theavy users\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, may be found in, heavy users) -> heavy users (13909ms)\nWhere is it?\tAl-Muwatta\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (its meaning, is found in, Al-Muwatta) -> Al-Muwatta (13268ms)\nWhere is it?\tany store\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (soy milk, can be found in almost, any store) -> any store (11801ms)\nWhere is it?\tgood works\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (,it, is even found in, good works) -> good works (13410ms)\nWhere is it?\tAncient Greece\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (The most advanced slavery, was found in, Ancient Greece) -> Ancient Greece (14212ms)\nWhere is it?\tthe military\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, was found in, the military) -> the military (13086ms)\nWhere is it?\ta wide-spectrum\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> ('s IT, are found in, a wide-spectrum) -> a wide-spectrum (14352ms)\nWhere is it?\tone piece\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, is to be found in, one piece) -> one piece (13850ms)\nWhere is it?\tGeorge Percy\t0.222222222222\tWhere is it? -> $x: (etiquette, be find in, $x) -> (cardroom play and etiquette, can be found in, George Percy) -> George Percy (13946ms)\nWhere is it?\tthe glove compartment\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the glove compartment) -> the glove compartment (14145ms)\nWhere is it?\tfour door\t0.222222222222\tWhere is it? -> $x: (limo, be find in, $x) -> (Limos, can be found in, four door) -> four door (13180ms)\nWhere is it?\tbinoculars\t0.222222222222\tWhere is it? -> $x: (neptune, be find in, $x) -> (Uranus and Neptune, can be found in, binoculars) -> binoculars (13909ms)\nWhere is it?\tthe editor\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (space?it, can be found in, the editor) -> the editor (14307ms)\nWhere is it?\tthe home\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was also found in, the home) -> the home (14292ms)\nWhere is it?\tteas\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk thistle, can be found in, teas) -> teas (13870ms)\nWhere is it?\tEl Tajo Caves\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic remains, have been found in, El Tajo Caves) -> El Tajo Caves (13149ms)\nWhere is it?\tcomplete compliance\t0.222222222222\tWhere is it? -> $x: (kennel, be find in, $x) -> (Silvermine Kennel, was found to be in, complete compliance) -> complete compliance (14395ms)\nWhere is it?\tthe Serra Altura\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic times, have been found in, the Serra Altura) -> the Serra Altura (14020ms)\nWhere is it?\tthe Mushan Formation\t0.222222222222\tWhere is it? -> $x: (lava, be find in, $x) -> (a few lava flows, are found in, the Mushan Formation) -> the Mushan Formation (13268ms)\nWhere is it?\tquartz sand\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon, can mainly be found in, quartz sand) -> quartz sand (14367ms)\nWhere is it?\ta freezer\t0.222222222222\tWhere is it? -> $x: (popsicle, be find in, $x) -> (Popsicle, was found in, a freezer) -> a freezer (13523ms)\nWhere is it?\tKoetsu\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon nitride, are typically found in, Koetsu) -> Koetsu (13658ms)\nWhere is it?\ta host\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (washing soda, are found in, a host) -> a host (13631ms)\nWhere is it?\tvarious sizes\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (feminineness everywhereIt, can be found in, various sizes) -> various sizes (13209ms)\nWhere is it?\ta wide range\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk proteins, are found in, a wide range) -> a wide range (14090ms)\nWhere is it?\tsuch dramatic fashion\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (The spring, was found in, such dramatic fashion) -> such dramatic fashion (14307ms)\nWhere is it?\tpopular culture\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (an object, is found in, popular culture) -> popular culture (13850ms)\nWhere is it?\tthe cooking water\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (the majority of it, was found in, the cooking water) -> the cooking water (14322ms)\nWhere is it?\tilemite\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium, is found in, ilemite) -> ilemite (12961ms)\nWhere is it?\tthe former Soviet Union\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, the former Soviet Union) -> the former Soviet Union (14367ms)\nWhere is it?\tnative form\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, native form) -> native form (14261ms)\nWhere is it?\tMontana\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, Montana) -> Montana (14367ms)\nWhere is it?\tthe constructs\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the constructs) -> the constructs (14179ms)\nWhere is it?\tthe list\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the object, is found in, the list) -> the list (14001ms)\nWhere is it?\tSignpost\t0.222222222222\tWhere is it? -> $x: (space exploration, be find in, $x) -> (Mars and space exploration, can be found in, Signpost) -> Signpost (13523ms)\nWhere is it?\tthe flowers\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (rainbow and same colors, can be found in, the flowers) -> the flowers (14395ms)\nWhere is it?\tMammoth Cave\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, can be found in, Mammoth Cave) -> Mammoth Cave (13496ms)\nWhere is it?\tTricker\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (just smooth sightly curves, will be found in, Tricker) -> Tricker (13440ms)\nWhere is it?\tRome\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (A plaque, was found in, Rome) -> Rome (13119ms)\nWhere is it?\tthe spaces\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Plaques, are found in, the spaces) -> the spaces (14162ms)\nWhere is it?\tlocations\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (the neolithic period, would normally be found in, locations) -> locations (13238ms)\nWhere is it?\tBwindi\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, Bwindi) -> Bwindi (13709ms)\nWhere is it?\tthe action of Moses\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (The meaning, to be found in, the action of Moses) -> the action of Moses (13382ms)\nWhere is it?\tthe farm\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (all harmfull.It, was found in, the farm) -> the farm (9146ms)\nWhere is it?\tthe following example\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, the following example) -> the following example (13946ms)\nWhere is it?\tcombinations\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, combinations) -> combinations (13086ms)\nWhere is it?\tthe early 1990s\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic iceman, were found in, the early 1990s) -> the early 1990s (14162ms)\nWhere is it?\tthe region\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic origin, have been found in, the region) -> the region (14196ms)\nWhere is it?\told\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, are spurious--not found in, old) -> old (14073ms)\nWhere is it?\tthe personal finance space\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the personal finance space) -> the personal finance space (14162ms)\nWhere is it?\tthe Saadh Sangat\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Liberation and heaven, are found in, the Saadh Sangat) -> the Saadh Sangat (13946ms)\nWhere is it?\ta great number\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow, can be found in, a great number) -> a great number (13468ms)\nWhere is it?\tthe body\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, can be found in, the body) -> the body (13983ms)\nWhere is it?\tminute amounts\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (such it, is found in very, minute amounts) -> minute amounts (12175ms)\nWhere is it?\tthe deserted lots\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, the deserted lots) -> the deserted lots (14261ms)\nWhere is it?\tore\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, was often found in, ore) -> ore (14108ms)\nWhere is it?\tthe Council?s Preliminary Issues\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, the Council?s Preliminary Issues) -> the Council?s Preliminary Issues (12993ms)\nWhere is it?\tan underground manmade bunker\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found stashed in, an underground manmade bunker) -> an underground manmade bunker (13631ms)\nWhere is it?\tthe Earth\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (gravity, is found in, the Earth) -> the Earth (13055ms)\nWhere is it?\tMatt\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (The key to it, is found in, Matt) -> Matt (13658ms)\nWhere is it?\tMatthew 22:23-30\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, will be found in, Matthew 22:23-30) -> Matthew 22:23-30 (13410ms)\nWhere is it?\tthe Crypt\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, was found in, the Crypt) -> the Crypt (14307ms)\nWhere is it?\tan ideal chainsaw\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (gravity, should be found in, an ideal chainsaw) -> an ideal chainsaw (14424ms)\nWhere is it?\tassociation\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, is found in, association) -> association (14145ms)\nWhere is it?\tonly one verse\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world ?, is found in, only one verse) -> only one verse (13496ms)\nWhere is it?\tany textbook\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (artificial gravity, can be found in, any textbook) -> any textbook (14196ms)\nWhere is it?\tdried fruits and meats\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, dried fruits and meats) -> dried fruits and meats (13524ms)\nWhere is it?\tplenty\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is also found in, plenty) -> plenty (13760ms)\nWhere is it?\tevery red blood cell\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (a hemoglobin molecule, are found in, every red blood cell) -> every red blood cell (13523ms)\nWhere is it?\tQuine?s early writings\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is to be found in, Quine?s early writings) -> Quine?s early writings (14292ms)\nWhere is it?\tChina\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (titanium, is mainly found in, China) -> China (14055ms)\nWhere is it?\tsandpaintings\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Whirling Rainbow People, are found in, sandpaintings) -> sandpaintings (13551ms)\nWhere is it?\tstores\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium rings, are hard to find in, stores) -> stores (14179ms)\nWhere is it?\tInuit\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, Inuit) -> Inuit (13209ms)\nWhere is it?\tFrance\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, can be found in, France) -> France (14381ms)\nWhere is it?\tvarious series\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (some matters, will be found in, various series) -> various series (13354ms)\nWhere is it?\ta valley\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic artifacts, were found in, a valley) -> a valley (13965ms)\nWhere is it?\tthe boxes\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (No matter, is found in, the boxes) -> the boxes (13496ms)\nWhere is it?\tthe IList\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the Object, is found in, the IList) -> the IList (13410ms)\nWhere is it?\tmuseums\t0.222222222222\tWhere is it? -> $x: (neon, be find in, $x) -> (the neon sign, can only be found in, museums) -> museums (14245ms)\nWhere is it?\ta greater proportion\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Plaque-predominant AD, was found in, a greater proportion) -> a greater proportion (13735ms)\nWhere is it?\t14 children\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (supragingival plaque, was found in, 14 children) -> 14 children (13850ms)\nWhere is it?\tmore open water\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbows, will usually be found in, more open water) -> more open water (13785ms)\nWhere is it?\tmodest amounts\t0.222222222222\tWhere is it? -> $x: (propane, be find in, $x) -> (charcoal propane gas grills, can be found in, modest amounts) -> modest amounts (12993ms)\nWhere is it?\tbrain autopsies\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (That plaque, has been found in, brain autopsies) -> brain autopsies (7951ms)\nWhere is it?\tthe cemetery\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the worlds, is found in, the cemetery) -> the cemetery (14438ms)\nWhere is it?\ttechnology\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can then only be found in, technology) -> technology (13551ms)\nWhere is it?\tthe cell walls\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gums/mucilage, are found largely in, the cell walls) -> the cell walls (14001ms)\nWhere is it?\tTexas\t0.222222222222\tWhere is it? -> $x: (space shuttle, be find in, $x) -> (the space shuttle Columbia, has been found in, Texas) -> Texas (14196ms)\nWhere is it?\tmodern Egypt\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Hamsa hand plaques, are also found in, modern Egypt) -> modern Egypt (14001ms)\nWhere is it?\tVictoria?\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (the matter, be found in, Victoria?) -> Victoria? (14322ms)\nWhere is it?\twoodlands\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk snakes, are also found in, woodlands) -> woodlands (14179ms)\nWhere is it?\tthe marvelous book\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, the marvelous book) -> the marvelous book (13683ms)\nWhere is it?\thuman 'spaces\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is to be found in, human 'spaces) -> human 'spaces (13658ms)\nWhere is it?\tthe South Atlantic\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (The King Penguin, is found in, the South Atlantic) -> the South Atlantic (13760ms)\nWhere is it?\tone place\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, can only be found in, one place) -> one place (14090ms)\nWhere is it?\tadventure\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, adventure) -> adventure (13760ms)\nWhere is it?\tlemons\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (a volatile oil, is also found in, lemons) -> lemons (14307ms)\nWhere is it?\tcontrols\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (amyloid-beta plaque pathology, was found in, controls) -> controls (14381ms)\nWhere is it?\tLatin America\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, Latin America) -> Latin America (14001ms)\nWhere is it?\tJob 1:16\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is also found in, Job 1:16) -> Job 1:16 (13055ms)\nWhere is it?\tthe full press release\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (IT services, can be found here in, the full press release) -> the full press release (13119ms)\nWhere is it?\tthe powder\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk sellers, was found in, the powder) -> the powder (13631ms)\nWhere is it?\tpaints\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium dioxide, is found in, paints) -> paints (14424ms)\nWhere is it?\ta rider?s professional contract\t0.222222222222\tWhere is it? -> $x: (recruitment, be find in, $x) -> (recruitment, is n?t found in, a rider?s professional contract) -> a rider?s professional contract (14212ms)\nWhere is it?\tthe flat and\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the flat and) -> the flat and (13551ms)\nWhere is it?\tdiseased arteries\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (diseased gums, are also found in, diseased arteries) -> diseased arteries (13631ms)\nWhere is it?\tNew Caledonia.It\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (the Araucariaceae family .It, is found only in, New Caledonia.It) -> New Caledonia.It (14395ms)\nWhere is it?\treligion\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (some it, is found in, religion) -> religion (9146ms)\nWhere is it?\tAmerica\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, America) -> America (14337ms)\nWhere is it?\tBuenos Aires\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, Buenos Aires) -> Buenos Aires (13297ms)\nWhere is it?\tthe stone layers\t0.222222222222\tWhere is it? -> $x: (lava, be find in, $x) -> (No fire rocks or lava, are found in, the stone layers) -> the stone layers (13785ms)\nWhere is it?\tthe second argument\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (world, is found in, the second argument) -> the second argument (14245ms)\nWhere is it?\tGold Caon\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Native silver, is found in, Gold Caon) -> Gold Caon (13760ms)\nWhere is it?\tAustralia\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (the smallest penguins, are found only in, Australia) -> Australia (14438ms)\nWhere is it?\tcareers services\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (Real World, can be found in, careers services) -> careers services (13870ms)\nWhere is it?\tthe firepit garden\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (A commemorative plaque, can be found in, the firepit garden) -> the firepit garden (13890ms)\nWhere is it?\tchannels\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, were found in, channels) -> channels (13297ms)\nWhere is it?\tthe mouth\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (the upper gum line, can also be found elsewhere in, the mouth) -> the mouth (13709ms)\nWhere is it?\ttwo other test pits\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (Some objects, were found in, two other test pits) -> two other test pits (14125ms)\nWhere is it?\tthe New Testament\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, may be found in, the New Testament) -> the New Testament (13578ms)\nWhere is it?\tCosta Rica\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, have been found in, Costa Rica) -> Costa Rica (13024ms)\nWhere is it?\tmonoxida carbon\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (the hemoglobin, was found in, monoxida carbon) -> monoxida carbon (13579ms)\nWhere is it?\tthe Universe\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the objects, are found in, the Universe) -> the Universe (13354ms)\nWhere is it?\tthe proceedings\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (this spring, is to be found in, the proceedings) -> the proceedings (13496ms)\nWhere is it?\tthe enzyme ATP synthase\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the enzyme ATP synthase) -> the enzyme ATP synthase (12690ms)\nWhere is it?\ttoothpastes\t0.222222222222\tWhere is it? -> $x: (titanium dioxide, be find in, $x) -> (Titanium dioxide, can be found in, toothpastes) -> toothpastes (14307ms)\nWhere is it?\tthe Kobe area\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (hot spring, is also to be found in, the Kobe area) -> the Kobe area (14337ms)\nWhere is it?\tWace\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (its spring, is found in, Wace) -> Wace (12961ms)\nWhere is it?\tthe ?cotos\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (rainbow trout, can be found in, the ?cotos) -> the ?cotos (13578ms)\nWhere is it?\tthe journey\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the journey) -> the journey (14367ms)\nWhere is it?\tmen\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gum disease, is more likely to be found in, men) -> men (13605ms)\nWhere is it?\tgreat content\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, great content) -> great content (13760ms)\nWhere is it?\tthe lobby\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (Life, can be found in, the lobby) -> the lobby (14352ms)\nWhere is it?\tthe blood\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, is found in, the blood) -> the blood (14307ms)\nWhere is it?\tdefendant?s pocket\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, defendant?s pocket) -> defendant?s pocket (13410ms)\nWhere is it?\tthe nucleus\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the nucleus) -> the nucleus (13605ms)\nWhere is it?\tcolumn four\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium, is found in, column four) -> column four (13440ms)\nWhere is it?\tHakemi Use\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (a Late Neolithic settlement, have been found in, Hakemi Use) -> Hakemi Use (14001ms)\nWhere is it?\tplaces\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (This hard smooth rock, can be found in, places) -> places (13927ms)\nWhere is it?\tBrisbane\t0.222222222222\tWhere is it? -> $x: (limo, be find in, $x) -> (limo rentals, could be found in, Brisbane) -> Brisbane (14337ms)\nWhere is it?\tcold , clear water\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (rainbow trout, are normally found in very, cold , clear water) -> cold , clear water (14261ms)\nWhere is it?\tfinger nails\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium, was regularly found in, finger nails) -> finger nails (14307ms)\nWhere is it?\ta rescue\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (the coarse and smooth collie, can be found in, a rescue) -> a rescue (13382ms)\nWhere is it?\tthe U.S. horoscope\t0.222222222222\tWhere is it? -> $x: (neptune, be find in, $x) -> (Mars and Neptune, is also found in, the U.S. horoscope) -> the U.S. horoscope (14438ms)\nWhere is it?\tthe Prep.\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (Matter, will be found in, the Prep.) -> the Prep. (13551ms)\nWhere is it?\tFirestarters 1\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Spring, may be found in, Firestarters 1) -> Firestarters 1 (13683ms)\nWhere is it?\tthe environment\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (No reports of it, being found in, the environment) -> the environment (13410ms)\nWhere is it?\tdeath\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, death) -> death (13055ms)\nWhere is it?\ta variety of foods\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, a variety of foods) -> a variety of foods (14261ms)\nWhere is it?\tthe X-Files office\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (2. It, can be frequently found in, the X-Files office) -> the X-Files office (13382ms)\nWhere is it?\tthe interior\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (strong time-varying gravity, may be found in, the interior) -> the interior (5678ms)\nWhere is it?\tany one of three states\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (Matter, may be found in, any one of three states) -> any one of three states (14307ms)\nWhere is it?\tthe north corner\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth and fluted tiles, was found in, the north corner) -> the north corner (13760ms)\nWhere is it?\tcoconut\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (breast milk ?, can also be found in, coconut) -> coconut (13578ms)\nWhere is it?\tprayer or meditation\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (some it, is found in, prayer or meditation) -> prayer or meditation (13810ms)\nWhere is it?\ta broad range\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (the spring, can be found in, a broad range) -> a broad range (14073ms)\nWhere is it?\tCentral Australia\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (The Ghost Gum, can be found in, Central Australia) -> Central Australia (13055ms)\nWhere is it?\tmyth\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, myth) -> myth (14090ms)\nWhere is it?\thigh concentration\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, is found in, high concentration) -> high concentration (13709ms)\nWhere is it?\tthe pharmaceutical aisle\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (The baking soda, can only be found in, the pharmaceutical aisle) -> the pharmaceutical aisle (13965ms)\nWhere is it?\tFalls Park\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (This plaque, can be found in, Falls Park) -> Falls Park (13325ms)\nWhere is it?\tthe gut\t0.222222222222\tWhere is it? -> $x: (neon, be find in, $x) -> (neon tetras, are often found in, the gut) -> the gut (13683ms)\nWhere is it?\tpairs or groups\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (It?s gregarious, is generally found in, pairs or groups) -> pairs or groups (14196ms)\nWhere is it?\tthe desert\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (soda, is found in, the desert) -> the desert (14410ms)\nWhere is it?\tbrake dust\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, brake dust) -> brake dust (12175ms)\nWhere is it?\thistory\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, could be found in, history) -> history (13890ms)\nWhere is it?\tbrittle\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk powder, is most commonly found in, brittle) -> brittle (14424ms)\nWhere is it?\tgolf\t0.222222222222\tWhere is it? -> $x: (etiquette, be find in, $x) -> (etiquette, is found in, golf) -> golf (14229ms)\nWhere is it?\ttoothpaste\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (Guar gum, is also found in, toothpaste) -> toothpaste (14162ms)\nWhere is it?\triver valleys\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth and fertile soil, is found in, river valleys) -> river valleys (14410ms)\nWhere is it?\tAntarctica\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (penguins, are found in, Antarctica) -> Antarctica (14381ms)\nWhere is it?\tthe Petra basin\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic occupation, has been found in, the Petra basin) -> the Petra basin (14073ms)\nWhere is it?\tthe right hand column\t0.222222222222\tWhere is it? -> $x: (kennel, be find in, $x) -> (St Giles kennels, can be found in, the right hand column) -> the right hand column (13055ms)\nWhere is it?\tthe Air Sparging\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (volatile contaminants, can be found in, the Air Sparging) -> the Air Sparging (14424ms)\nWhere is it?\tPittsburg\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (many Penguins, are found in, Pittsburg) -> Pittsburg (13946ms)\nWhere is it?\tdye-sensitized solar cells\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon solar cells, can be found in, dye-sensitized solar cells) -> dye-sensitized solar cells (14179ms)\nWhere is it?\tshoes\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Spring denim, is being found in, shoes) -> shoes (14212ms)\nWhere is it?\tpaints and solvents\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (volatile organic compounds, are found in, paints and solvents) -> paints and solvents (13830ms)\nWhere is it?\tthe central/downtown part\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Colorado Springs, can be found in, the central/downtown part) -> the central/downtown part (13946ms)\nWhere is it?\tthe return\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (spring, is found in, the return) -> the return (13440ms)\nWhere is it?\tvarious parts\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (these penguins, are currently found in, various parts) -> various parts (13382ms)\nWhere is it?\tthe surface layer\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Phosphate and silicon, were found in, the surface layer) -> the surface layer (5124ms)\nWhere is it?\tthe kind\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (soda glass, might be found in, the kind) -> the kind (13238ms)\nWhere is it?\tlarge cities\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (Slide films, are mostly only found in, large cities) -> large cities (13946ms)\nWhere is it?\tlean red meats\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is mostly found in, lean red meats) -> lean red meats (7703ms)\nWhere is it?\tthe St . Elias Mountains\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the St . Elias Mountains) -> the St . Elias Mountains (14337ms)\nWhere is it?\tthe National Gallery\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the National Gallery) -> the National Gallery (13325ms)\nWhere is it?\tthe charts\t0.222222222222\tWhere is it? -> $x: (neptune, be find in, $x) -> (Neptune-Mars aspects, are often found in, the charts) -> the charts (13983ms)\nWhere is it?\tthe UK,\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (The smooth snake, is found in, the UK,) -> the UK, (13946ms)\nWhere is it?\tthe distraction\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (the rainbow, is found in, the distraction) -> the distraction (14196ms)\nWhere is it?\tbookstores\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (his many Penguin editions, are found in used, bookstores) -> bookstores (13297ms)\nWhere is it?\tthe South Sandwich Islands\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (penguin, is found in, the South Sandwich Islands) -> the South Sandwich Islands (13658ms)\nWhere is it?\tvarious locations\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (rose gums, has been found in, various locations) -> various locations (14337ms)\nWhere is it?\tthe surrounding area\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic times, have been found in, the surrounding area) -> the surrounding area (14277ms)\nWhere is it?\tthe middle\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (both heaven and hell, are found in, the middle) -> the middle (14261ms)\nWhere is it?\tthe internal organs\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is found in, the internal organs) -> the internal organs (14108ms)\nWhere is it?\tdeeper waters\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, are usually found independently in, deeper waters) -> deeper waters (14037ms)\nWhere is it?\tthe PETSc website\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (The tutorial slides, can be found in, the PETSc website) -> the PETSc website (13760ms)\nWhere is it?\tswampy areas\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (Black Gum trees, are often found growing in, swampy areas) -> swampy areas (13909ms)\nWhere is it?\tthe central and northern portions\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> ('s springs, are found in, the central and northern portions) -> the central and northern portions (13149ms)\nWhere is it?\tEd\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (A plaque, was found in, Ed) -> Ed (13523ms)\nWhere is it?\tpairs\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (Toucans, are usually found in, pairs) -> pairs (14352ms)\nWhere is it?\tthe female flowering plant\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, is found in, the female flowering plant) -> the female flowering plant (14322ms)\nWhere is it?\tthe Panamints\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Many springs, are found in, the Panamints) -> the Panamints (14337ms)\nWhere is it?\tnearly every pond\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (spring peepers, are found in, nearly every pond) -> nearly every pond (13523ms)\nWhere is it?\tthe aorta\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (plaque, is found in, the aorta) -> the aorta (13382ms)\nWhere is it?\tthe eye\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is found in, the eye) -> the eye (13024ms)\nWhere is it?\tthree forms\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, may be found in, three forms) -> three forms (14229ms)\nWhere is it?\tthe autograph\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (the matter, can be found in, the autograph) -> the autograph (13785ms)\nWhere is it?\tthe oil samples\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (Significant sliding particles, were found in, the oil samples) -> the oil samples (13810ms)\nWhere is it?\tJohn 1:29\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, John 1:29) -> John 1:29 (14108ms)\nWhere is it?\ta liquid or semi liquid state\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gums, are found in, a liquid or semi liquid state) -> a liquid or semi liquid state (13578ms)\nWhere is it?\tTrailer Life\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, can be found in, Trailer Life) -> Trailer Life (14438ms)\nWhere is it?\tMadagascar\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow Moonstone, can also be found in, Madagascar) -> Madagascar (14162ms)\nWhere is it?\tbatteries\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, batteries) -> batteries (12961ms)\nWhere is it?\tthe chapter\t0.222222222222\tWhere is it? -> $x: (neon, be find in, $x) -> (neon sign transformers, can be found in, the chapter) -> the chapter (14125ms)\nWhere is it?\tTubby Dog\t0.222222222222\tWhere is it? -> $x: (hot dog, be find in, $x) -> (hot dog enthusiasts, can be found in, Tubby Dog) -> Tubby Dog (14337ms)\nWhere is it?\ttwo different types\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (Matter, may be found in, two different types) -> two different types (13468ms)\nWhere is it?\tthe second rampart\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (vitrified matter, are found in, the second rampart) -> the second rampart (13440ms)\nWhere is it?\tcompounds\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, is most predominantly found in, compounds) -> compounds (14367ms)\nWhere is it?\topen areas\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (Toucans, are found in, open areas) -> open areas (13297ms)\nWhere is it?\tthe Northern hemisphere\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (the penguin, were found in, the Northern hemisphere) -> the Northern hemisphere (13238ms)\nWhere is it?\tMarch\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (The object, was found in, March) -> March (14090ms)\nWhere is it?\tthe relationship\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, the relationship) -> the relationship (14352ms)\nWhere is it?\tvertebrates\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (Hemoglobin, is found in, vertebrates) -> vertebrates (13119ms)\nWhere is it?\tthe Fort Myers Beach Community park\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (slides, can be found in, the Fort Myers Beach Community park) -> the Fort Myers Beach Community park (13870ms)\nWhere is it?\tany literal translation\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (the Heaven, is to be found in, any literal translation) -> any literal translation (14001ms)\nWhere is it?\ta mansion\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (the Heaven?s Gate cult, were found in, a mansion) -> a mansion (13496ms)\nWhere is it?\twetland areas\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Spring peepers, are found in, wetland areas) -> wetland areas (14352ms)\nWhere is it?\tmobile phones\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (CSR?s BlueCore silicon, is to be found in, mobile phones) -> mobile phones (13709ms)\nWhere is it?\tthe ash\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, the ash) -> the ash (13983ms)\nWhere is it?\ttextile manufacture\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gum arabic, was found to be useful in, textile manufacture) -> textile manufacture (13946ms)\nWhere is it?\tany number\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (the matter, can be found in, any number) -> any number (13830ms)\nWhere is it?\tthe Third Fundamental proposition\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, is to be found in, the Third Fundamental proposition) -> the Third Fundamental proposition (14125ms)\nWhere is it?\tthe AAP brochure\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (breast milk, can be found in, the AAP brochure) -> the AAP brochure (14145ms)\nWhere is it?\tcell culture\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (no plaque formation, was found in, cell culture) -> cell culture (7703ms)\nWhere is it?\tthree states\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (Matter, can be found in, three states) -> three states (13850ms)\nWhere is it?\tSouth America\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Gentoo penguins, were found in, South America) -> South America (13325ms)\nWhere is it?\ta state\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, is found to exist in, a state) -> a state (13631ms)\nWhere is it?\tthe Galapagos Islands\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, the Galapagos Islands) -> the Galapagos Islands (13209ms)\nWhere is it?\tGenesis 12:1-3\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is first found in, Genesis 12:1-3) -> Genesis 12:1-3 (13870ms)\nWhere is it?\tChapter 5\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (the gravity gun, is found in, Chapter 5) -> Chapter 5 (12690ms)\nWhere is it?\tscripture\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, can also be found in, scripture) -> scripture (13055ms)\nWhere is it?\tthe vessel\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, the vessel) -> the vessel (13709ms)\nWhere is it?\tthe head\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (...Meaning, can only be found in, the head) -> the head (13890ms)\nWhere is it?\tthe offices\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (Similar gum sticks, were also found in, the offices) -> the offices (13382ms)\nWhere is it?\tAugustine\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, is to be found in, Augustine) -> Augustine (13830ms)\nWhere is it?\t33.7 percent\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Carotid plaques, were found in, 33.7 percent) -> 33.7 percent (12961ms)\nWhere is it?\tthe midst\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, be found in, the midst) -> the midst (14037ms)\nWhere is it?\tthe natural order\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, cannot be found in, the natural order) -> the natural order (13605ms)\nWhere is it?\tCatalhoyuk\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic Period, are found in, Catalhoyuk) -> Catalhoyuk (12961ms)\nWhere is it?\tthe fast water\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow trout, can be found in, the fast water) -> the fast water (14438ms)\nWhere is it?\tthe trunk\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, the trunk) -> the trunk (13683ms)\nWhere is it?\tany quick and easy way\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (these matters, can be found in, any quick and easy way) -> any quick and easy way (13440ms)\nWhere is it?\tjewelry\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, is usually found in, jewelry) -> jewelry (11801ms)\nWhere is it?\tthe Life Sciences chapter\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (Life, can be found in, the Life Sciences chapter) -> the Life Sciences chapter (13810ms)\nWhere is it?\tthe west-Jordan district\t0.222222222222\tWhere is it? -> $x: (lava, be find in, $x) -> (No lava, is found in, the west-Jordan district) -> the west-Jordan district (13440ms)\nWhere is it?\tthe earth\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, will then be found in, the earth) -> the earth (13657ms)\nWhere is it?\tthe emissions\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (Volatile Organic Compounds, are found in, the emissions) -> the emissions (13946ms)\nWhere is it?\tthe river basins\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk production, is found primarily in, the river basins) -> the river basins (14322ms)\nWhere is it?\tQueensland\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (spring, is found in, Queensland) -> Queensland (13709ms)\nWhere is it?\twhite\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (early spring, are most often found in, white) -> white (13180ms)\nWhere is it?\tthe early Theravada tradition\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, is also found in, the early Theravada tradition) -> the early Theravada tradition (13850ms)\nWhere is it?\tGenesis 9:1-16\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (the rainbow, is found in, Genesis 9:1-16) -> Genesis 9:1-16 (14438ms)\nWhere is it?\tthe Georgians\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (no matter, might be found in, the Georgians) -> the Georgians (5124ms)\nWhere is it?\tpolitics\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, politics) -> politics (13496ms)\nWhere is it?\tthe vehicle\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was allegedly found in, the vehicle) -> the vehicle (14352ms)\nWhere is it?\tLamb\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, Lamb) -> Lamb (13709ms)\nWhere is it?\tFayum\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic, was found in, Fayum) -> Fayum (13551ms)\nWhere is it?\tareas\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, areas) -> areas (14145ms)\nWhere is it?\tan inner joint\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (? iron, was found in, an inner joint) -> an inner joint (13410ms)\nWhere is it?\tthe credits\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (world movies, can be found in, the credits) -> the credits (13965ms)\nWhere is it?\tturkey\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, had been found in, turkey) -> turkey (13657ms)\nWhere is it?\texcess\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth flow, was found in, excess) -> excess (13683ms)\nWhere is it?\tplain view\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, plain view) -> plain view (13683ms)\nWhere is it?\tfruit\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (cellulose and gums, are also found in, fruit) -> fruit (13551ms)\nWhere is it?\t45\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Carotid plaque, was found in, 45) -> 45 (14037ms)\nWhere is it?\tthe enjoyment\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (his Heaven, is only found in, the enjoyment) -> the enjoyment (13325ms)\nWhere is it?\tabundance\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (cremation rainbow-colored sariras, were found in, abundance) -> abundance (14307ms)\nWhere is it?\tMexico\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (the toucans, are only found in, Mexico) -> Mexico (14162ms)\nWhere is it?\tInternet\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (Many IT certification forums, can be found in, Internet) -> Internet (13735ms)\nWhere is it?\tdead stars\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, can be found in, dead stars) -> dead stars (14090ms)\nWhere is it?\tstandard textbooks\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, can be found in, standard textbooks) -> standard textbooks (13354ms)\nWhere is it?\ta parking lot\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (A Spring City nurse, was found in, a parking lot) -> a parking lot (14381ms)\nWhere is it?\tthe Ecuadorian rainforest\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (toucan species, are also found in, the Ecuadorian rainforest) -> the Ecuadorian rainforest (13965ms)\nWhere is it?\tthe combined state\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, is generally found in, the combined state) -> the combined state (13325ms)\nWhere is it?\tthe Asian food sections\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Coconut milk, can usually be found in, the Asian food sections) -> the Asian food sections (13325ms)\nWhere is it?\tevery nation\t0.222222222222\tWhere is it? -> $x: (recruitment, be find in, $x) -> (sales recruitment agencies, can be found in, every nation) -> every nation (14367ms)\nWhere is it?\ttrust\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (Life, is found in, trust) -> trust (13468ms)\nWhere is it?\ta beautiful residential neighborhood\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Silver Spring, is found in, a beautiful residential neighborhood) -> a beautiful residential neighborhood (13468ms)\nWhere is it?\tthe urine\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, is also found in, the urine) -> the urine (13870ms)\nWhere is it?\tseveral bags\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, several bags) -> several bags (13382ms)\nWhere is it?\tIndia and Madagascar\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (The rainbow variety, can be found in, India and Madagascar) -> India and Madagascar (13149ms)\nWhere is it?\thuman breastmilk\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> ('s milk, can be found in, human breastmilk) -> human breastmilk (14395ms)\nWhere is it?\texcavation contexts\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic period, have been found in, excavation contexts) -> excavation contexts (12690ms)\nWhere is it?\ttraditional , canonical literature\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, are found in, traditional , canonical literature) -> traditional , canonical literature (13209ms)\nWhere is it?\tthe Knossos region\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic Era, have been found in, the Knossos region) -> the Knossos region (14438ms)\nWhere is it?\tthe IT Support Module\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (the IT Induction, can be found in, the IT Support Module) -> the IT Support Module (12690ms)\nWhere is it?\ttwo unlikely places\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the worlds, can be found in, two unlikely places) -> two unlikely places (14108ms)\nWhere is it?\tred meat and poultry\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, red meat and poultry) -> red meat and poultry (13735ms)\nWhere is it?\tthe biosphere\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, are found in, the biosphere) -> the biosphere (12690ms)\nWhere is it?\tthe garden\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (an object, had been found in, the garden) -> the garden (14073ms)\nWhere is it?\trice milk\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (Xanthan gum, can be also found in, rice milk) -> rice milk (14438ms)\nWhere is it?\tnumerous dimensions\t0.222222222222\tWhere is it? -> $x: (propane tank, be find in, $x) -> (Propane tanks, can be found in, numerous dimensions) -> numerous dimensions (13024ms)\nWhere is it?\tbundles\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (White matter, is found in, bundles) -> bundles (13268ms)\nWhere is it?\tfull here\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk, can be found in, full here) -> full here (14395ms)\nWhere is it?\tthe following passages\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heavens, is found in, the following passages) -> the following passages (7703ms)\nWhere is it?\tthe north half and one\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Spring Peeper, were found generally in, the north half and one) -> the north half and one (13830ms)\nWhere is it?\tJupiter\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (object, can be expected to be found in, Jupiter) -> Jupiter (14055ms)\nWhere is it?\trivers\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Habitat Smooth softshells, are found in, rivers) -> rivers (12993ms)\nWhere is it?\tthe northwest section\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Quail Springs Quail Springs, is found in, the northwest section) -> the northwest section (13785ms)\nWhere is it?\tIndia and Dwaraka\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, was found in, India and Dwaraka) -> India and Dwaraka (13268ms)\nWhere is it?\tthe East Humber River\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (rainbow trout, were found in, the East Humber River) -> the East Humber River (14410ms)\nWhere is it?\tthe link\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (The slides, can be found in, the link) -> the link (14179ms)\nWhere is it?\tBad Ems\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (spring waters, can be found in, Bad Ems) -> Bad Ems (13658ms)\nWhere is it?\tthe coastal rivers\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow Trout, was found in, the coastal rivers) -> the coastal rivers (14261ms)\nWhere is it?\tFukushima prefecture\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (The contaminated milk, was found in, Fukushima prefecture) -> Fukushima prefecture (14229ms)\nWhere is it?\tTwo Treatises\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (Slavery, may be found in, Two Treatises) -> Two Treatises (14128ms)\nWhere is it?\tprotection/move logs\t0.222222222222\tWhere is it? -> $x: (octet, be find in, $x) -> (255 octets, can be found in, protection/move logs) -> protection/move logs (13631ms)\nWhere is it?\tsmall amounts\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (Volatile organic compounds, can even be found in, small amounts) -> small amounts (14212ms)\nWhere is it?\tsubjects\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Less plaque accumulation, was found in, subjects) -> subjects (14322ms)\nWhere is it?\tgrocery stores\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Soy Milk, may be found in, grocery stores) -> grocery stores (13297ms)\nWhere is it?\tthe house\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the house) -> the house (14307ms)\nWhere is it?\tores\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, ores) -> ores (13850ms)\nWhere is it?\tthe teeth\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (decay and gum disease, are found in between, the teeth) -> the teeth (13354ms)\nWhere is it?\tthe central garage locker\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was also found in, the central garage locker) -> the central garage locker (13354ms)\nWhere is it?\tfresh water rivers and lakes\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (The rainbow bass, is found only in, fresh water rivers and lakes) -> fresh water rivers and lakes (13605ms)\nWhere is it?\tCano Negro\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (rainbows, are found in, Cano Negro) -> Cano Negro (13149ms)\nWhere is it?\twet and dry forest\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Habitat Rainbow boas, may be found in, wet and dry forest) -> wet and dry forest (14037ms)\nWhere is it?\ta room\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was reportedly found in, a room) -> a room (14145ms)\nWhere is it?\tthe back seat\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the back seat) -> the back seat (13354ms)\nWhere is it?\turban markets\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk and milk products, is found in, urban markets) -> urban markets (13354ms)\nWhere is it?\tthe Word of God\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (Life, is only found in, the Word of God) -> the Word of God (14322ms)\nWhere is it?\tthe financial jungle\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (the mean, is found everywhere in, the financial jungle) -> the financial jungle (13268ms)\nWhere is it?\tthe plant kingdom\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, the plant kingdom) -> the plant kingdom (13870ms)\nWhere is it?\tPulse\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, Pulse) -> Pulse (14196ms)\nWhere is it?\tfresh bone\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (blood cells and hemoglobin, have been found in, fresh bone) -> fresh bone (13709ms)\nWhere is it?\tAfrica\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, Africa) -> Africa (14381ms)\nWhere is it?\taerospace machines\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (titanium, can be found in, aerospace machines) -> aerospace machines (13024ms)\nWhere is it?\tKathys  purse\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, Kathys  purse) -> Kathys  purse (13810ms)\nWhere is it?\tcities\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, can be found in, cities) -> cities (13496ms)\nWhere is it?\tthe Alps\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic man, was found in, the Alps) -> the Alps (14212ms)\nWhere is it?\tthe communal practice\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is to be found in, the communal practice) -> the communal practice (3151ms)\nWhere is it?\tTHE CELLS\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (A TRIPEPTIDE. IT, IS FOUND IN, THE CELLS) -> THE CELLS (13605ms)\nWhere is it?\tinstances\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (general it, generally is only found in, instances) -> instances (14337ms)\nWhere is it?\tmultiple cultures\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk production, is found in, multiple cultures) -> multiple cultures (14001ms)\nWhere is it?\tversions\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Springs, can only be found in, versions) -> versions (3660ms)\nWhere is it?\tspinach\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, is also found in, spinach) -> spinach (13810ms)\nWhere is it?\tlymphatic vessels\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is also found in, lymphatic vessels) -> lymphatic vessels (14125ms)\nWhere is it?\tPakistan\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (coconut milk, are rarely found in, Pakistan) -> Pakistan (14162ms)\nWhere is it?\tseveral nearby grottos\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (neolithic vestiges, were found in, several nearby grottos) -> several nearby grottos (13024ms)\nWhere is it?\t17 %\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (significant cholesterol plaque blockage, was found in, 17 %) -> 17 % (13870ms)\nWhere is it?\tsweet tasting foods\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (plaque, are found In, sweet tasting foods) -> sweet tasting foods (13086ms)\nWhere is it?\tthe walls\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is found in, the walls) -> the walls (14381ms)\nWhere is it?\tthe fittings\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Aluminum metal and titanium metal, was found in, the fittings) -> the fittings (13850ms)\nWhere is it?\twhey\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk oligosaccharides, are found in, whey) -> whey (14352ms)\nWhere is it?\tclothespins\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Torsion springs, are found in, clothespins) -> clothespins (3660ms)\nWhere is it?\tformations\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Perfectly round silicon dioxide, have been found in, formations) -> formations (14108ms)\nWhere is it?\tHansard\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (a matter, may be found in, Hansard) -> Hansard (13086ms)\nWhere is it?\ta drop\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (worlds, can be found in, a drop) -> a drop (14352ms)\nWhere is it?\tserver rooms\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (a slide, is normally found in, server rooms) -> server rooms (14090ms)\nWhere is it?\ttoday?s Armenia\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (The oldest Neolithic relics, are found in, today?s Armenia) -> today?s Armenia (14145ms)\nWhere is it?\tsoil\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (Pullularia :It, is normally found in, soil) -> soil (12690ms)\nWhere is it?\tan old act\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (Slavery, is to be found in, an old act) -> an old act (12993ms)\nWhere is it?\tthe villages\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Mineral springs, can be found in, the villages) -> the villages (12993ms)\nWhere is it?\t65.6 %\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (dental plaque, was found in, 65.6 %) -> 65.6 % (14073ms)\nWhere is it?\themoglobin\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, hemoglobin) -> hemoglobin (14229ms)\nWhere is it?\tsunscreens\t0.222222222222\tWhere is it? -> $x: (titanium dioxide, be find in, $x) -> (titanium dioxide nanoparticles, are also found in, sunscreens) -> sunscreens (13605ms)\nWhere is it?\train and snow\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (traces of it, are found in, rain and snow) -> rain and snow (13605ms)\nWhere is it?\tThe Following Departments\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium, Can Be Found In, The Following Departments) -> The Following Departments (13735ms)\nWhere is it?\tthe most surprising locations\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (penguins, can be found in, the most surprising locations) -> the most surprising locations (5678ms)\nWhere is it?\tFairley?s possession\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was then found in, Fairley?s possession) -> Fairley?s possession (14322ms)\nWhere is it?\thigh levels\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon Silicon, is found in, high levels) -> high levels (13551ms)\nWhere is it?\ta garden\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic Period, was found in, a garden) -> a garden (13086ms)\nWhere is it?\tSouth\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (Toucans, are found in, South) -> South (13830ms)\nWhere is it?\tthe islands\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the islands) -> the islands (13468ms)\nWhere is it?\tthe doctrine\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, is found in, the doctrine) -> the doctrine (14424ms)\nWhere is it?\tthe Shades\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (This object, is found in, the Shades) -> the Shades (14395ms)\nWhere is it?\tdifferent designs and models\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver earrings, can be found in, different designs and models) -> different designs and models (13382ms)\nWhere is it?\ta range\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, a range) -> a range (14245ms)\nWhere is it?\t4kbit or 64kbit size\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (-It, usually is found in, 4kbit or 64kbit size) -> 4kbit or 64kbit size (14162ms)\nWhere is it?\tdepictions\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth-feathered corbies, are found in, depictions) -> depictions (14162ms)\nWhere is it?\tthe concentration\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the concentration) -> the concentration (13785ms)\nWhere is it?\tfortified breakfast cereals\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is also found in, fortified breakfast cereals) -> fortified breakfast cereals (7703ms)\nWhere is it?\tJava\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (Objects, are found also in, Java) -> Java (13605ms)\nWhere is it?\tsolid or liquid forms\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (Volatile Organic Compounds, are found in, solid or liquid forms) -> solid or liquid forms (14001ms)\nWhere is it?\ta sack\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (Gum opium, was found in, a sack) -> a sack (13735ms)\nWhere is it?\tthe sediments\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, is also found in, the sediments) -> the sediments (13055ms)\nWhere is it?\t?structural comprehension?\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (mean values, were found in, ?structural comprehension?) -> ?structural comprehension? (13965ms)\nWhere is it?\ta videotape\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, a videotape) -> a videotape (14292ms)\nWhere is it?\twork or leisure\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, cannot be found in, work or leisure) -> work or leisure (14196ms)\nWhere is it?\tSection IV.A.2\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, Section IV.A.2) -> Section IV.A.2 (14277ms)\nWhere is it?\tmore than 50 percent\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon oils, can be found in, more than 50 percent) -> more than 50 percent (13468ms)\nWhere is it?\tGenesis 9:25-27\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery and segregation, is found in, Genesis 9:25-27) -> Genesis 9:25-27 (13238ms)\nWhere is it?\tthe bass playing\t0.222222222222\tWhere is it? -> $x: (magma, be find in, $x) -> (a strong Magma feeling, is to be found in, the bass playing) -> the bass playing (3660ms)\nWhere is it?\tpasteurized milk\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, is found in, pasteurized milk) -> pasteurized milk (13180ms)\nWhere is it?\tPattaya\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world?s, best is found in, Pattaya) -> Pattaya (13870ms)\nWhere is it?\tthe toilet\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the toilet) -> the toilet (13657ms)\nWhere is it?\tEcuador\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (soda, can be found everywhere in, Ecuador) -> Ecuador (12961ms)\nWhere is it?\tthe Torah\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (the heavens, is found a second time in, the Torah) -> the Torah (14395ms)\nWhere is it?\ttumors\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (7. It, has been found in, tumors) -> tumors (14229ms)\nWhere is it?\tthe Council Conclusions\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (this spring, are to be found in, the Council Conclusions) -> the Council Conclusions (14438ms)\nWhere is it?\tcurrent political battles\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, is to be found in, current political battles) -> current political battles (14196ms)\nWhere is it?\tthe treatment\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gum, has also been found to be useful in, the treatment) -> the treatment (13354ms)\nWhere is it?\tnon-hematopoietic organs\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (hemoglobin, has been found in, non-hematopoietic organs) -> non-hematopoietic organs (13209ms)\nWhere is it?\tthe medicine cabinet\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (only it, is to be found in, the medicine cabinet) -> the medicine cabinet (13657ms)\nWhere is it?\ta plastic baggie\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, a plastic baggie) -> a plastic baggie (13468ms)\nWhere is it?\tThe New Yorker\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (the matter, can be found in, The New Yorker) -> The New Yorker (13830ms)\nWhere is it?\tmeteorites\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, is also found in, meteorites) -> meteorites (13496ms)\nWhere is it?\tnormal aging\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (plaques and tangles, can be found in, normal aging) -> normal aging (13325ms)\nWhere is it?\tthe brain\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (normal and senile plaque, was found in, the brain) -> the brain (14212ms)\nWhere is it?\tNew Guinea\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (gum trees, are found in, New Guinea) -> New Guinea (12174ms)\nWhere is it?\tMaximum Milk Thistle?\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk thistle, is found in, Maximum Milk Thistle?) -> Maximum Milk Thistle? (14261ms)\nWhere is it?\tJerrold Katz\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, may be found in, Jerrold Katz) -> Jerrold Katz (14395ms)\nWhere is it?\tevery room\t0.222222222222\tWhere is it? -> $x: (recycle bin, be find in, $x) -> (Recycling bins, can be found in, every room) -> every room (14179ms)\nWhere is it?\tthe building\t0.222222222222\tWhere is it? -> $x: (propane, be find in, $x) -> (Six propane gas cylinders, were found in, the building) -> the building (14277ms)\nWhere is it?\tthe county\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, is found in, the county) -> the county (13086ms)\nWhere is it?\tthe Atlantic Ocean\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, were recently found in, the Atlantic Ocean) -> the Atlantic Ocean (14073ms)\nWhere is it?\tsufficient amounts\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, are found in, sufficient amounts) -> sufficient amounts (14292ms)\nWhere is it?\tcurrents\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, are found in, currents) -> currents (14261ms)\nWhere is it?\tIraq\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, is found in, Iraq) -> Iraq (14307ms)\nWhere is it?\tSoutheast Idaho\t0.222222222222\tWhere is it? -> $x: (lava, be find in, $x) -> (Lava Hot Spring, are found in, Southeast Idaho) -> Southeast Idaho (14352ms)\nWhere is it?\tthe appendix\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, can be found in, the appendix) -> the appendix (14212ms)\nWhere is it?\tverses\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (to heaven, is found in, verses) -> verses (14055ms)\nWhere is it?\tthe gun barrel\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (brain matter, was found in, the gun barrel) -> the gun barrel (13965ms)\nWhere is it?\tthe published version\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, can be found in, the published version) -> the published version (14179ms)\nWhere is it?\tDakar\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Paleolithic and Neolithic axes, have been found in, Dakar) -> Dakar (13024ms)\nWhere is it?\tEd 's bedroom\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (A plaque, was found in, Ed 's bedroom) -> Ed 's bedroom (14381ms)\nWhere is it?\tthe lowest , most barren places\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (This gum, is found in, the lowest , most barren places) -> the lowest , most barren places (14438ms)\nWhere is it?\tsociological surveys\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven and Hell, is a routine finding in, sociological surveys) -> sociological surveys (14001ms)\nWhere is it?\tsurplus\t0.222222222222\tWhere is it? -> $x: (neon, be find in, $x) -> (the flashing neon bulbs, are found in, surplus) -> surplus (13055ms)\nWhere is it?\tpersonal encounter\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found only in, personal encounter) -> personal encounter (14438ms)\nWhere is it?\ta cave\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (a rainbow, was found in, a cave) -> a cave (14245ms)\nWhere is it?\ta few places\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (heathland and snow gums, is only found in, a few places) -> a few places (5124ms)\nWhere is it?\tthe house of the LORD\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (the silver, was found in, the house of the LORD) -> the house of the LORD (13850ms)\nWhere is it?\tIndia\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (a worlds, are found in, India) -> India (11049ms)\nWhere is it?\ttwo forms\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, two forms) -> two forms (14212ms)\nWhere is it?\t?interconnections\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, ?interconnections) -> ?interconnections (13657ms)\nWhere is it?\tspace rocks\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium, can even be found in, space rocks) -> space rocks (13830ms)\nWhere is it?\ta pool\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (sodas, was found floating in, a pool) -> a pool (13785ms)\nWhere is it?\tcultures\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (volatile selenium compounds, were found in, cultures) -> cultures (13631ms)\nWhere is it?\tthe inter-granular beta region\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (titanium, were found in, the inter-granular beta region) -> the inter-granular beta region (14020ms)\nWhere is it?\thigh counts\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon, was also found in, high counts) -> high counts (14410ms)\nWhere is it?\tthe September 14 newsletter\t0.222222222222\tWhere is it? -> $x: (hot dog, be find in, $x) -> (Hot Dog Soup, can be found in, the September 14 newsletter) -> the September 14 newsletter (13578ms)\nWhere is it?\tthe Asian section\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (coconut milk, can be found in, the Asian section) -> the Asian section (13735ms)\nWhere is it?\tlarge deposits\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, is often found in, large deposits) -> large deposits (14037ms)\nWhere is it?\tthe document\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Spring 2012, are found in, the document) -> the document (13055ms)\nWhere is it?\tfive English counties\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver Hill, is also found in, five English counties) -> five English counties (13631ms)\nWhere is it?\tJapan\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (hot springs, are found everywhere in, Japan) -> Japan (13928ms)\nWhere is it?\toriginal purses\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (Monogram wood plaques, can be found in, original purses) -> original purses (13760ms)\nWhere is it?\texperience\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (an object, be found in, experience) -> experience (3151ms)\nWhere is it?\tthe composition and structure\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (cow milk, is found in, the composition and structure) -> the composition and structure (13657ms)\nWhere is it?\tessence\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (Matter, may ultimately be found to be the same in, essence) -> essence (5124ms)\nWhere is it?\tthe coastal plain\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow snakes, are found in, the coastal plain) -> the coastal plain (13382ms)\nWhere is it?\tan image\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (no object, is found in, an image) -> an image (13410ms)\nWhere is it?\tnonmeat items\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, nonmeat items) -> nonmeat items (13785ms)\nWhere is it?\tgroups\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (Gravity-generating pull stars, are generally found in, groups) -> groups (14073ms)\nWhere is it?\ta profound and wonderful relationship\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, a profound and wonderful relationship) -> a profound and wonderful relationship (13209ms)\nWhere is it?\tsmall numbers\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Erect Crested Penguins, are found here in, small numbers) -> small numbers (13180ms)\nWhere is it?\tthe impact\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (The meaning, could be found in, the impact) -> the impact (13760ms)\nWhere is it?\tsensual pleasures\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, sensual pleasures) -> sensual pleasures (13810ms)\nWhere is it?\tthe Unified Agenda\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (the Spring, are found in, the Unified Agenda) -> the Unified Agenda (14337ms)\nWhere is it?\tthe words `yoked ' and `fellowship\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, the words `yoked ' and `fellowship) -> the words `yoked ' and `fellowship (13909ms)\nWhere is it?\tthe upper part\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbow and Brook Trout, can be found in, the upper part) -> the upper part (13735ms)\nWhere is it?\tcow\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk, is a naturally-occurring sugar found in, cow) -> cow (14037ms)\nWhere is it?\textreme\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Penguins, to be found in, extreme) -> extreme (13410ms)\nWhere is it?\tthe Cambrian\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, are found in, the Cambrian) -> the Cambrian (14381ms)\nWhere is it?\ta number\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (Smooth Otters Smooth otters, are found in, a number) -> a number (13579ms)\nWhere is it?\tthe Asian foods aisle\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Coconut milk, can usually be found in, the Asian foods aisle) -> the Asian foods aisle (13946ms)\nWhere is it?\tIndia 15\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, was found in, India 15) -> India 15 (13983ms)\nWhere is it?\tthe photo\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, can be found in, the photo) -> the photo (13909ms)\nWhere is it?\ta person\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, is usually found in, a person) -> a person (13523ms)\nWhere is it?\ta universe\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, had been found in, a universe) -> a universe (13238ms)\nWhere is it?\tthe following locations\t0.222222222222\tWhere is it? -> $x: (recycle bin, be find in, $x) -> (The recycling bins, can be found in, the following locations) -> the following locations (14322ms)\nWhere is it?\tany condition\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (hemoglobin, are found in, any condition) -> any condition (14037ms)\nWhere is it?\tthe experience\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the experience) -> the experience (14261ms)\nWhere is it?\tthe hill ranges\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (these springs, are to be found in, the hill ranges) -> the hill ranges (12993ms)\nWhere is it?\tthe city center\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (Springs, may be found in, the city center) -> the city center (13149ms)\nWhere is it?\tChrist\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (Life, is found in, Christ) -> Christ (13631ms)\nWhere is it?\tAsian markets\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Coconut milk, may sometimes be found frozen in, Asian markets) -> Asian markets (11801ms)\nWhere is it?\tdense waters\t0.222222222222\tWhere is it? -> $x: (neon, be find in, $x) -> (The Neon tetra, is found in, dense waters) -> dense waters (13209ms)\nWhere is it?\tthe giri , ninjo and bushido notions\t0.222222222222\tWhere is it? -> $x: (etiquette, be find in, $x) -> (Etiquette, can be found in, the giri , ninjo and bushido notions) -> the giri , ninjo and bushido notions (14196ms)\nWhere is it?\tgallons\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (milk packages, were found in, gallons) -> gallons (14212ms)\nWhere is it?\tthe Type picker\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (a Smooth blending option, can be found in, the Type picker) -> the Type picker (14424ms)\nWhere is it?\tbeauty\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is only found in, beauty) -> beauty (14245ms)\nWhere is it?\ta daily basis common existence\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (sometimes it, is found in on, a daily basis common existence) -> a daily basis common existence (13965ms)\nWhere is it?\tthe eyes\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (....it, is found in, the eyes) -> the eyes (13983ms)\nWhere is it?\tnumerous forms\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, numerous forms) -> numerous forms (14229ms)\nWhere is it?\ta following section\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, a following section) -> a following section (13890ms)\nWhere is it?\tdried beans and peas\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, can be found in, dried beans and peas) -> dried beans and peas (14020ms)\nWhere is it?\tbeans\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, beans) -> beans (13440ms)\nWhere is it?\tbrain tissue\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (the classic plaques and tangles, were found in, brain tissue) -> brain tissue (13683ms)\nWhere is it?\tordinary decisions\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (life matter, are found in rather, ordinary decisions) -> ordinary decisions (14410ms)\nWhere is it?\tthe declarations\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (the meaning, can be found in, the declarations) -> the declarations (14162ms)\nWhere is it?\tthe seat\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was also found in, the seat) -> the seat (5124ms)\nWhere is it?\tthe Manusmriti\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven and hell, are also to be found in, the Manusmriti) -> the Manusmriti (13965ms)\nWhere is it?\tthe ornament\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (the forms--it, is found mainly in, the ornament) -> the ornament (14277ms)\nWhere is it?\tplacenames\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (spring, can be found in, placenames) -> placenames (14001ms)\nWhere is it?\tJazz Links\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (The SmoothViews homepage, can be found in, Jazz Links) -> Jazz Links (13928ms)\nWhere is it?\tPfizer\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (other matters, can be found in, Pfizer) -> Pfizer (14292ms)\nWhere is it?\tAsia Minor\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (Bronze objects, have been found in, Asia Minor) -> Asia Minor (3151ms)\nWhere is it?\tthe strangest places\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, the strangest places) -> the strangest places (13496ms)\nWhere is it?\ttropical areas\t0.222222222222\tWhere is it? -> $x: (toucan, be find in, $x) -> (? Toucans, are found only in, tropical areas) -> tropical areas (13087ms)\nWhere is it?\tapparent association\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (These objects, were found in, apparent association) -> apparent association (14229ms)\nWhere is it?\tthe use\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the use) -> the use (13928ms)\nWhere is it?\tcircuit boards\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, can be found in, circuit boards) -> circuit boards (14020ms)\nWhere is it?\tevery federal courthouse\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (only it, is found in, every federal courthouse) -> every federal courthouse (9146ms)\nWhere is it?\tthe theoretical gravitons\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (gravity, is found in, the theoretical gravitons) -> the theoretical gravitons (14245ms)\nWhere is it?\tthe title tag\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (the matter, is found in, the title tag) -> the title tag (13605ms)\nWhere is it?\tbronze or amber\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (small bone plaques, can be found also in, bronze or amber) -> bronze or amber (13965ms)\nWhere is it?\tthe inner linings\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (visceral or smooth muscle, is found in, the inner linings) -> the inner linings (14424ms)\nWhere is it?\tlater contexts\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, were found in, later contexts) -> later contexts (14125ms)\nWhere is it?\ta vehicle\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found hidden in, a vehicle) -> a vehicle (14322ms)\nWhere is it?\tmanufactured formula\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (breast milk, are found in, manufactured formula) -> manufactured formula (13440ms)\nWhere is it?\ta global reservoir\t0.222222222222\tWhere is it? -> $x: (magma, be find in, $x) -> ('s magma, is found in, a global reservoir) -> a global reservoir (14055ms)\nWhere is it?\tfecal floats\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (weird objects, can be found in, fecal floats) -> fecal floats (14367ms)\nWhere is it?\tthe sky\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, can be found in, the sky) -> the sky (14438ms)\nWhere is it?\tthe process\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the process) -> the process (3151ms)\nWhere is it?\tthe placentas\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (inflamed gums, has been found in, the placentas) -> the placentas (13830ms)\nWhere is it?\tJob 26\t0.222222222222\tWhere is it? -> $x: (gravity, be find in, $x) -> (Gravity, can be found in, Job 26) -> Job 26 (14410ms)\nWhere is it?\tMidgard and Hibernia\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (( Rainbow sprites, can still be found in, Midgard and Hibernia) -> Midgard and Hibernia (14277ms)\nWhere is it?\tdata\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (This object, was found in, data) -> data (13268ms)\nWhere is it?\tthe writings\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the World, may be found in, the writings) -> the writings (13238ms)\nWhere is it?\tPlato and Babylonian ideas\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven and earth, is found in, Plato and Babylonian ideas) -> Plato and Babylonian ideas (13579ms)\nWhere is it?\tthe retinas\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (plaques, were found in, the retinas) -> the retinas (14322ms)\nWhere is it?\tplant cells\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (pectins , gums and mucilage, are found mainly in, plant cells) -> plant cells (12690ms)\nWhere is it?\tfood\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, food) -> food (7703ms)\nWhere is it?\tthe laundry aisle\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (Washing soda, is usually found in, the laundry aisle) -> the laundry aisle (13983ms)\nWhere is it?\tthe River Sabar gorge\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (Neolithic remains, have been found in, the River Sabar gorge) -> the River Sabar gorge (14307ms)\nWhere is it?\tmuscle tissue\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (hemoglobin, is found in, muscle tissue) -> muscle tissue (13238ms)\nWhere is it?\tdamaged arteries\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (the atheromatous plaque, is found in, damaged arteries) -> damaged arteries (13209ms)\nWhere is it?\tbooks\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (This matter, can be found in, books) -> books (5678ms)\nWhere is it?\tone case\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (senile plaques, was found in, one case) -> one case (14020ms)\nWhere is it?\telectronics\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, is found in, electronics) -> electronics (13683ms)\nWhere is it?\tfirmer orthopedic mattresses\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (more springs, will be found in, firmer orthopedic mattresses) -> firmer orthopedic mattresses (14381ms)\nWhere is it?\tSection 4\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (evidentiary matters, are found in, Section 4) -> Section 4 (13149ms)\nWhere is it?\tparentheses\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (matter, is found in, parentheses) -> parentheses (13709ms)\nWhere is it?\tthe wild\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (these penguins, are found in, the wild) -> the wild (14055ms)\nWhere is it?\tthe clothes\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, can also be found in, the clothes) -> the clothes (14410ms)\nWhere is it?\tsandstone\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, is found in, sandstone) -> sandstone (14090ms)\nWhere is it?\ta multiplicity\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, a multiplicity) -> a multiplicity (14410ms)\nWhere is it?\tthe refrigerated sections\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Almond milk, can be found in, the refrigerated sections) -> the refrigerated sections (13946ms)\nWhere is it?\tmutual repair , population\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (( heaven, is found in, mutual repair , population) -> mutual repair , population (14367ms)\nWhere is it?\tFuji Velvia\t0.222222222222\tWhere is it? -> $x: (slide, be find in, $x) -> (a slide film, are found in between, Fuji Velvia) -> Fuji Velvia (13909ms)\nWhere is it?\tthe hot springs of Banff\t0.222222222222\tWhere is it? -> $x: (spring, be find in, $x) -> (the Banff Springs snails, are found in, the hot springs of Banff) -> the hot springs of Banff (13496ms)\nWhere is it?\tdungeons\t0.222222222222\tWhere is it? -> $x: (smooth, be find in, $x) -> (smooth floors, are found only in, dungeons) -> dungeons (13785ms)\nWhere is it?\tsoutheastern Idaho\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (This particular Rainbow Falls, is found in, southeastern Idaho) -> southeastern Idaho (14090ms)\nWhere is it?\tthe cabin\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (objects, should be found in, the cabin) -> the cabin (14424ms)\nWhere is it?\tTodd et al\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (various volatile silicones materials, is found in, Todd et al) -> Todd et al (14245ms)\nWhere is it?\tthe accounts\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (the individual heavens, are found in, the accounts) -> the accounts (14037ms)\nWhere is it?\tthe fastest water\t0.222222222222\tWhere is it? -> $x: (rainbow, be find in, $x) -> (Rainbows, are more likely found in, the fastest water) -> the fastest water (14125ms)\nWhere is it?\ttwo passages\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (the world, is found in, two passages) -> two passages (14145ms)\nWhere is it?\tbarramundi and whiting\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (iron, were also found in, barramundi and whiting) -> barramundi and whiting (7703ms)\nWhere is it?\tvarious forms\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (Silicon dioxide, is found naturally in, various forms) -> various forms (14108ms)\nWhere is it?\tthe ghettos\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, is to be found in, the ghettos) -> the ghettos (13735ms)\nWhere is it?\torigins\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, tends to be found only in, origins) -> origins (3151ms)\nWhere is it?\tIstanbul\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (The world?s, are found in, Istanbul) -> Istanbul (14090ms)\nWhere is it?\tthe laundry detergent aisle\t0.222222222222\tWhere is it? -> $x: (soda, be find in, $x) -> (baking soda, is often found in, the laundry detergent aisle) -> the laundry detergent aisle (13578ms)\nWhere is it?\tNSW\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Little Penguin colonies, are found in, NSW) -> NSW (14410ms)\nWhere is it?\tcavities\t0.222222222222\tWhere is it? -> $x: (gum, be find in, $x) -> (A gum resin, is found in, cavities) -> cavities (13086ms)\nWhere is it?\tdocument\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (this matter, is found in, document) -> document (13579ms)\nWhere is it?\tprofusion\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (Silver, was found in, profusion) -> profusion (14037ms)\nWhere is it?\tmodern design and architecture\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, is seldom found in, modern design and architecture) -> modern design and architecture (14277ms)\nWhere is it?\tDavid Coyle\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery ? story, can be found in, David Coyle) -> David Coyle (13024ms)\nWhere is it?\teither Old or New Testaments\t0.222222222222\tWhere is it? -> $x: (slavery, be find in, $x) -> (slavery, can be found in, either Old or New Testaments) -> either Old or New Testaments (13149ms)\nWhere is it?\ta reconstruction\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Cape penguins, can be found in, a reconstruction) -> a reconstruction (13889ms)\nWhere is it?\tpurpose\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, purpose) -> purpose (14307ms)\nWhere is it?\thorsetail\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (the silicon, is found in, horsetail) -> horsetail (13631ms)\nWhere is it?\tscores\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, scores) -> scores (14145ms)\nWhere is it?\tcolumn\t0.222222222222\tWhere is it? -> $x: (titanium, be find in, $x) -> (Titanium, is found in, column) -> column (13965ms)\nWhere is it?\twhole grains\t0.222222222222\tWhere is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, whole grains) -> whole grains (13238ms)\nWhere is it?\ta few bacteria\t0.222222222222\tWhere is it? -> $x: (hemoglobin, be find in, $x) -> (hemoglobin-like proteins, are found in, a few bacteria) -> a few bacteria (13909ms)\nWhere is it?\tthe north\t0.222222222222\tWhere is it? -> $x: (neolithic, be find in, $x) -> (a Neolithic culture, have been found in, the north) -> the north (13055ms)\nWhere is it?\ta box\t0.222222222222\tWhere is it? -> $x: (milk, be find in, $x) -> (Milk, can be found either in, a box) -> a box (14020ms)\nWhere is it?\tthe Deseret News\t0.222222222222\tWhere is it? -> $x: (it, be find in, $x) -> (A copy of it, will be found in, the Deseret News) -> the Deseret News (14245ms)\nWhere is it?\tthe environment?and\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, are being found increasingly in, the environment?and) -> the environment?and (14245ms)\nWhere is it?\tthe collection\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the object, was found in, the collection) -> the collection (3660ms)\nWhere is it?\tRev.\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, Rev.) -> Rev. (13760ms)\nWhere is it?\tpattern and order\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, will be found in, pattern and order) -> pattern and order (13870ms)\nWhere is it?\tthe country\t0.222222222222\tWhere is it? -> $x: (silver, be find in, $x) -> (silver, are also found in, the country) -> the country (13810ms)\nWhere is it?\tthe icy darkness\t0.222222222222\tWhere is it? -> $x: (life, be find in, $x) -> (life, is found in, the icy darkness) -> the icy darkness (13410ms)\nWhere is it?\tgasoline\t0.222222222222\tWhere is it? -> $x: (volatile, be find in, $x) -> (Volatile solvents, are found in, gasoline) -> gasoline (13657ms)\nWhere is it?\tdifferent places\t0.222222222222\tWhere is it? -> $x: (object, be find in, $x) -> (the objects, were found in, different places) -> different places (13735ms)\nWhere is it?\tvacuum-sealed plastic bags\t0.222222222222\tWhere is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, vacuum-sealed plastic bags) -> vacuum-sealed plastic bags (13830ms)\nWhere is it?\tthe summer\t0.222222222222\tWhere is it? -> $x: (penguin, be find in, $x) -> (Magellanic Penguins, can be found in, the summer) -> the summer (13658ms)\nWhere is it?\tmanual\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (its meaning, can be found in, manual) -> manual (3151ms)\nWhere is it?\tthe sidewalks\t0.222222222222\tWhere is it? -> $x: (plaque, be find in, $x) -> (30 bronze plaques, can be found in, the sidewalks) -> the sidewalks (13965ms)\nWhere is it?\ta 8,13 %\t0.222222222222\tWhere is it? -> $x: (silicon, be find in, $x) -> (silicon, is found in, a 8,13 %) -> a 8,13 % (14307ms)\nWhere is it?\tLos Angeles\t0.222222222222\tWhere is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, Los Angeles) -> Los Angeles (7703ms)\nWhere is it?\tsimple poverty\t0.222222222222\tWhere is it? -> $x: (world, be find in, $x) -> (world, needed was found in, simple poverty) -> simple poverty (14196ms)\nWhere is it?\tthe Company\t0.222222222222\tWhere is it? -> $x: (matter, be find in, $x) -> (other matters, can be found in, the Company) -> the Company (14229ms)\nWhere is it?\tthe ancient Hymns\t0.222222222222\tWhere is it? -> $x: (mean, be find in, $x) -> (meaning, are most often found in, the ancient Hymns) -> the ancient Hymns (13810ms)\nWhat is the gestation period for humans?\tLymphocytes\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, produce, gestation) -> (Lymphocytes, are produced early in, gestation) -> Lymphocytes (857ms)\nWhat is the gestation period for humans?\ta congenital deformity\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, cause, gestation) -> (a congenital deformity, caused during, gestation) -> a congenital deformity (985ms)\nWhat is the gestation period for humans?\tOne offspring\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, produce, gestation) -> (One offspring, is produced following, a 210 to 225 day gestation) -> One offspring (985ms)\nWhat is the gestation period for humans?\tDelayed implantation\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, produce, gestation) -> (Delayed implantation, produces varied, gestation times) -> Delayed implantation (857ms)\nWhat is the gestation period for humans?\tBurger King?s pork\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, produce, gestation) -> (Burger King?s pork, was produced without, gestation stalls) -> Burger King?s pork (857ms)\nWhat is the gestation period for humans?\tthe composting dung\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, produce, gestation) -> (the composting dung, produces enough heat for, gestation) -> the composting dung (857ms)\nWhat is the gestation period for humans?\tturn\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, cause, gestation) -> (turn, caused, the gestation period) -> turn (984ms)\nWhat is the gestation period for humans?\tlate pregnancy\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, cause, gestation) -> (late pregnancy, may cause prolonged, gestation , dystocia) -> late pregnancy (857ms)\nWhat is the gestation period for humans?\tA single offspring\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, produce, gestation) -> (A single offspring, is generally produced after, gestation) -> A single offspring (857ms)\nWhat is the gestation period for humans?\tNormally one calf\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, produce, gestation) -> (Normally one calf, is produced after, a gestation period) -> Normally one calf (857ms)\nWhat is the gestation period for humans?\tA single infant\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, produce, gestation) -> (A single infant, is produced after, a gestation period) -> A single infant (984ms)\nWhat is the gestation period for humans?\tterm infants\t0.111111111102\tWhat is the gestation period for humans? -> $x: ($x, size, gestation) -> (term infants, are appropriate size for, gestation) -> term infants (985ms)\nWhat is the gestation period for humans?\tthe time\t-0.7777777777760001\tWhat is the gestation period for humans? -> $x: (gestation, be important of, $x) -> (gestation, is obviously important most of, the time) -> the time (1080ms)\nWhat is the gestation period for humans?\thigh protein manure\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (a low gestation period, produces, high protein manure) -> high protein manure (1102ms)\nWhat is the gestation period for humans?\textreme gender dysphorias\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, is the main cause of, extreme gender dysphorias) -> extreme gender dysphorias (1081ms)\nWhat is the gestation period for humans?\tstage two\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (Our gestation, produces, stage two) -> stage two (1103ms)\nWhat is the gestation period for humans?\t2.8\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, size, $x) -> (a gestation period, have an average litter size of, 2.8) -> 2.8 (1102ms)\nWhat is the gestation period for humans?\t4-12 Hamsters\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (One gestation, can produce, 4-12 Hamsters) -> 4-12 Hamsters (1101ms)\nWhat is the gestation period for humans?\teyeballs\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation fifty-nine pigs, were produced without, eyeballs) -> eyeballs (1081ms)\nWhat is the gestation period for humans?\ta dozen young\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produces up to, a dozen young) -> a dozen young (1101ms)\nWhat is the gestation period for humans?\tcleft palate and open eyes\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produced, cleft palate and open eyes) -> cleft palate and open eyes (1080ms)\nWhat is the gestation period for humans?\t3-5 hamsters\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (The gestation, can produce, 3-5 hamsters) -> 3-5 hamsters (1101ms)\nWhat is the gestation period for humans?\ta higher incidence\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, also caused, a higher incidence) -> a higher incidence (1102ms)\nWhat is the gestation period for humans?\tthe degree\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, be example of, $x) -> (The long gestation period, is an example of, the degree) -> the degree (1101ms)\nWhat is the gestation period for humans?\t15 pups\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (a gestation period, typically produce 2 to, 15 pups) -> 15 pups (1102ms)\nWhat is the gestation period for humans?\tone baby\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (Their gestation period, only produces, one baby) -> one baby (1102ms)\nWhat is the gestation period for humans?\tweight gain\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produced a dosage-related reduction of, weight gain) -> weight gain (1102ms)\nWhat is the gestation period for humans?\ta 25 % increase\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produces about, a 25 % increase) -> a 25 % increase (1102ms)\nWhat is the gestation period for humans?\tlow birth weight\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, causes, low birth weight) -> low birth weight (1102ms)\nWhat is the gestation period for humans?\tfive\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, size, $x) -> (a gestation period, have an average litter size of, five) -> five (1080ms)\nWhat is the gestation period for humans?\t1 offspring\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (a 7-month gestation period, usually produce, 1 offspring) -> 1 offspring (1101ms)\nWhat is the gestation period for humans?\tdeath\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation ?, is the leading cause of, death) -> death (1101ms)\nWhat is the gestation period for humans?\tone 40\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (a gestation period, usually produce, one 40) -> one 40 (1102ms)\nWhat is the gestation period for humans?\twidespread health effects\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, may be causing, widespread health effects) -> widespread health effects (1102ms)\nWhat is the gestation period for humans?\tintra-uterine deaths\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, caused increased, intra-uterine deaths) -> intra-uterine deaths (1080ms)\nWhat is the gestation period for humans?\theavier offspring\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produce, heavier offspring) -> heavier offspring (1102ms)\nWhat is the gestation period for humans?\tthe offspring\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, size, $x) -> (gestation, is the size of, the offspring) -> the offspring (1101ms)\nWhat is the gestation period for humans?\tneonatal withdrawal\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, can cause, neonatal withdrawal) -> neonatal withdrawal (1101ms)\nWhat is the gestation period for humans?\tfurther compromise\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (advanced gestation, may cause, further compromise) -> further compromise (1101ms)\nWhat is the gestation period for humans?\ta litter of four capybara babies\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (Capybara gestation, produces, a litter of four capybara babies) -> a litter of four capybara babies (1102ms)\nWhat is the gestation period for humans?\ta single pup\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (Gestation period, produce, a single pup) -> a single pup (1102ms)\nWhat is the gestation period for humans?\tan epigenetic alteration\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, seemed to cause, an epigenetic alteration) -> an epigenetic alteration (1102ms)\nWhat is the gestation period for humans?\tpainful contractions\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, may cause, painful contractions) -> painful contractions (1102ms)\nWhat is the gestation period for humans?\tneurobehavioral deficits\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produces, neurobehavioral deficits) -> neurobehavioral deficits (1101ms)\nWhat is the gestation period for humans?\tthe incidence\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, caused an increase in, the incidence) -> the incidence (1101ms)\nWhat is the gestation period for humans?\tless fertile offspring\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (the gestation, produced, less fertile offspring) -> less fertile offspring (1103ms)\nWhat is the gestation period for humans?\tdystocia\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation Day, caused, dystocia) -> dystocia (1101ms)\nWhat is the gestation period for humans?\tconception rate\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, caused a dose-related decrease in, conception rate) -> conception rate (1103ms)\nWhat is the gestation period for humans?\tmalformations\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (the gestation period, produces, malformations) -> malformations (1081ms)\nWhat is the gestation period for humans?\tbuyers and suppliers\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation crates, caused, buyers and suppliers) -> buyers and suppliers (1101ms)\nWhat is the gestation period for humans?\tsubtle neurological changes\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produced, subtle neurological changes) -> subtle neurological changes (1101ms)\nWhat is the gestation period for humans?\tbirth defects\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, can cause, birth defects) -> birth defects (1101ms)\nWhat is the gestation period for humans?\tgreat beauty\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, have produced a film of, great beauty) -> great beauty (1101ms)\nWhat is the gestation period for humans?\tresorptions\t-0.888888888886\tWhat is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produced increased, resorptions) -> resorptions (1102ms)\nWhere is it based?\tArmonk\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Armonk) -> Armonk (4763ms)\nWhere is it based?\tSussex\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (IT problem-solvers, is based in, Sussex) -> Sussex (4797ms)\nWhere is it based?\tCollege Hill\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, is currently based in, College Hill) -> College Hill (4822ms)\nWhere is it based?\tCape Town\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Pamela Silver, is an estate agent based in, Cape Town) -> Cape Town (4699ms)\nWhere is it based?\tNew England\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (her life, is now based in, New England) -> New England (4672ms)\nWhere is it based?\tthe States\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (SiliconCloud?s clients, are based in, the States) -> the States (4763ms)\nWhere is it based?\tMangatawhiri\t1.0\tWhere is it based? -> $x: (milk, be base in, $x) -> (milk, is based in, Mangatawhiri) -> Mangatawhiri (4708ms)\nWhere is it based?\tHouston\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world?s, is based in, Houston) -> Houston (4792ms)\nWhere is it based?\tPort aux Basques\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Marine Atlantic?s IT department, is based in, Port aux Basques) -> Port aux Basques (4826ms)\nWhere is it based?\tBangalore\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Major Indian IT firms, are based in, Bangalore) -> Bangalore (4808ms)\nWhere is it based?\tAfghanistan\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, were based in, Afghanistan) -> Afghanistan (3642ms)\nWhere is it based?\tsteampunk\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (this world, is mostly based in, steampunk) -> steampunk (4741ms)\nWhere is it based?\tfantasy\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, fantasy) -> fantasy (4733ms)\nWhere is it based?\tLas Cruces\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (An IT manager job, was based in, Las Cruces) -> Las Cruces (4763ms)\nWhere is it based?\tReedville\t1.0\tWhere is it based? -> $x: (protein, be base in, $x) -> (Omega Protein?s Atlantic operations, are based in, Reedville) -> Reedville (4821ms)\nWhere is it based?\tpremises\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (The whole life, is based in, premises) -> premises (4716ms)\nWhere is it based?\tthe East Midlands\t1.0\tWhere is it based? -> $x: (rainbow, be base in, $x) -> (the Rainbow hospice, is based in, the East Midlands) -> the East Midlands (1854ms)\nWhere is it based?\tcritical pedagogy\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (This Alternative Spring Break, was based in, critical pedagogy) -> critical pedagogy (4763ms)\nWhere is it based?\tNiskayuna\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (Silicon Imaging, is a privately held company based in, Niskayuna) -> Niskayuna (4733ms)\nWhere is it based?\tCarrillo\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (The Silver-Rod-O, is based in, Carrillo) -> Carrillo (4817ms)\nWhere is it based?\tMiami\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (Racquet World, has been based in, Miami) -> Miami (4708ms)\nWhere is it based?\tLawrence\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Our Life Sciences team, is based in, Lawrence) -> Lawrence (4672ms)\nWhere is it based?\tthe USA\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (a life science company, is based in, the USA) -> the USA (4817ms)\nWhere is it based?\tFlorida\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver Vase, is based in, Florida) -> Florida (4733ms)\nWhere is it based?\tBangkok\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (World Vision, is based in, Bangkok) -> Bangkok (4725ms)\nWhere is it based?\tdense material reality\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, dense material reality) -> dense material reality (4798ms)\nWhere is it based?\treality\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (the Spring Update, are based in, reality) -> reality (4803ms)\nWhere is it based?\tthe U.S.\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (an IT solution provider, be based in, the U.S.) -> the U.S. (4741ms)\nWhere is it based?\tLeyland\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (DTech IT Services Ltd main office, is based in, Leyland) -> Leyland (4784ms)\nWhere is it based?\tCanada\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Canada) -> Canada (4699ms)\nWhere is it based?\tUtsunomiya\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (total recruitment services, is based in, Utsunomiya) -> Utsunomiya (4681ms)\nWhere is it based?\tSanta Clara\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (Silicon Valley Bank, is based in, Santa Clara) -> Santa Clara (4812ms)\nWhere is it based?\tLincolnshire\t1.0\tWhere is it based? -> $x: (kennel, be base in, $x) -> (The kennels, are based in, Lincolnshire) -> Lincolnshire (4808ms)\nWhere is it based?\tNewport\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (the national recruitment organisation, is based in, Newport) -> Newport (4725ms)\nWhere is it based?\tignorance and untruth\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (our lives, are based in, ignorance and untruth) -> ignorance and untruth (4777ms)\nWhere is it based?\tNevada\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (It?s All Good Buddy Inc., is based in, Nevada) -> Nevada (4803ms)\nWhere is it based?\tValencia\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (LifeSequencing LifeSequencing, is based in, Valencia) -> Valencia (4748ms)\nWhere is it based?\tSunnyvale\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (Silicon Image, is based in, Sunnyvale) -> Sunnyvale (4784ms)\nWhere is it based?\tthe quietest corner\t1.0\tWhere is it based? -> $x: (limo, be base in, $x) -> (Limo Taboi, is based in, the quietest corner) -> the quietest corner (4812ms)\nWhere is it based?\tParis\t1.0\tWhere is it based? -> $x: (object, be base in, $x) -> (Business Objects, is technically based in, Paris) -> Paris (4797ms)\nWhere is it based?\tthe beautiful market town\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world?s, has been based in, the beautiful market town) -> the beautiful market town (4808ms)\nWhere is it based?\tPoland\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Their European IT & Customer Service office, is based in, Poland) -> Poland (4725ms)\nWhere is it based?\tthe United Kingdom\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, the United Kingdom) -> the United Kingdom (4708ms)\nWhere is it based?\tEngland\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are now based in, England) -> England (4672ms)\nWhere is it based?\tRocky Mount\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Meadow Spring Land, has been based in, Rocky Mount) -> Rocky Mount (4803ms)\nWhere is it based?\tthe connection\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Your complete daily life, is basically based in, the connection) -> the connection (4784ms)\nWhere is it based?\tSanta Ana\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Iron Grip, is based in, Santa Ana) -> Santa Ana (4708ms)\nWhere is it based?\tsin and remorse\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (the christian life, is based in, sin and remorse) -> sin and remorse (4690ms)\nWhere is it based?\tSugar Creek\t1.0\tWhere is it based? -> $x: (milk, be base in, $x) -> (Gordon Milk Transport, is based in, Sugar Creek) -> Sugar Creek (4748ms)\nWhere is it based?\tNimbin\t1.0\tWhere is it based? -> $x: (rainbow, be base in, $x) -> (Rainbow Region LETS, is based in, Nimbin) -> Nimbin (4708ms)\nWhere is it based?\tFranklin\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Cool Springs, is based in, Franklin) -> Franklin (4748ms)\nWhere is it based?\tSurrey\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Recruitment Revolution, are based in, Surrey) -> Surrey (4763ms)\nWhere is it based?\tYorkshire\t1.0\tWhere is it based? -> $x: (penguin, be base in, $x) -> (Purple Penguin Media, are based in, Yorkshire) -> Yorkshire (4812ms)\nWhere is it based?\tSan Antonio\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, San Antonio) -> San Antonio (4733ms)\nWhere is it based?\tthe city\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Cat Power and Iron & Wine, are based in, the city) -> the city (4681ms)\nWhere is it based?\tHong Kong\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Hong Kong) -> Hong Kong (4826ms)\nWhere is it based?\tthe Kansas City area\t1.0\tWhere is it based? -> $x: (propane, be base in, $x) -> (buyer Inergy Propane LLC, are based in, the Kansas City area) -> the Kansas City area (4690ms)\nWhere is it based?\tDenver\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, has been based only in, Denver) -> Denver (4681ms)\nWhere is it based?\tThunder Bay\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Bending Lake Iron Group Limited, is based in, Thunder Bay) -> Thunder Bay (4741ms)\nWhere is it based?\tIsrael\t1.0\tWhere is it based? -> $x: (kennel, be base in, $x) -> (The kennel, is based in, Israel) -> Israel (3827ms)\nWhere is it based?\tCoatbridge\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (U Teach Recruitment, is based in, Coatbridge) -> Coatbridge (1800ms)\nWhere is it based?\tToronto\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the World, is based in, Toronto) -> Toronto (4808ms)\nWhere is it based?\tHuntington Beach\t1.0\tWhere is it based? -> $x: (space exploration, be base in, $x) -> (the Space Exploration division, is based in, Huntington Beach) -> Huntington Beach (2898ms)\nWhere is it based?\tthe uk\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Standard life, was based in, the uk) -> the uk (4716ms)\nWhere is it based?\tBritish Columbia\t1.0\tWhere is it based? -> $x: (smooth, be base in, $x) -> (Smooth Media, is a production company based in, British Columbia) -> British Columbia (4777ms)\nWhere is it based?\tthe IT Technician\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (The IT Surgery, is based in, the IT Technician) -> the IT Technician (1929ms)\nWhere is it based?\tinteractions\t1.0\tWhere is it based? -> $x: (object, be base in, $x) -> (quantum objects, is based in, interactions) -> interactions (4812ms)\nWhere is it based?\tNavan\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver Lining Web Design, is based in, Navan) -> Navan (4756ms)\nWhere is it based?\tThorpe\t1.0\tWhere is it based? -> $x: (limo, be base in, $x) -> (Our limos, are based in, Thorpe) -> Thorpe (1669ms)\nWhere is it based?\tSligo\t1.0\tWhere is it based? -> $x: (newport, be base in, $x) -> (The Kim Newport band, was based in, Sligo) -> Sligo (4690ms)\nWhere is it based?\tAberlour\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (world, are based in, Aberlour) -> Aberlour (4748ms)\nWhere is it based?\tMilan , Italy\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (InItalia .it, is based in, Milan , Italy) -> Milan , Italy (4725ms)\nWhere is it based?\tEssex\t1.0\tWhere is it based? -> $x: (limo, be base in, $x) -> (Dutch Limos, are based in, Essex) -> Essex (4803ms)\nWhere is it based?\tMumbai\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (NSE.IT, is based in, Mumbai) -> Mumbai (1668ms)\nWhere is it based?\tBoston\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Life Balance, is based in, Boston) -> Boston (4817ms)\nWhere is it based?\tSydney\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Jesus and life, are now based in, Sydney) -> Sydney (4756ms)\nWhere is it based?\tOlympia\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Simply Life Farm, is based in, Olympia) -> Olympia (4770ms)\nWhere is it based?\tIdaho\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Trinity Springs, is based in, Idaho) -> Idaho (4741ms)\nWhere is it based?\tthe heart\t1.0\tWhere is it based? -> $x: (matter, be base in, $x) -> (French Property Matters, is based in, the heart) -> the heart (4803ms)\nWhere is it based?\tSolana Beach\t1.0\tWhere is it based? -> $x: (red lantern, be base in, $x) -> (Red Lantern, is a privately held company based in, Solana Beach) -> Solana Beach (4826ms)\nWhere is it based?\tGod\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (This life, is based in, God) -> God (4784ms)\nWhere is it based?\tSouthborough\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Iron Mountain Digital, is based in, Southborough) -> Southborough (4770ms)\nWhere is it based?\tLove\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, is based in, Love) -> Love (4756ms)\nWhere is it based?\tthe United States\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, were based in, the United States) -> the United States (4784ms)\nWhere is it based?\tLondon\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver Link, is based in, London) -> London (4817ms)\nWhere is it based?\tSacramento\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Mr. Spring, is based in, Sacramento) -> Sacramento (4763ms)\nWhere is it based?\tMarina Del Rey\t1.0\tWhere is it based? -> $x: (marijuana, be base in, $x) -> (Medical Marijuana, is based in, Marina Del Rey) -> Marina Del Rey (4770ms)\nWhere is it based?\tMississippi\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Ocean Springs, is based in, Mississippi) -> Mississippi (4716ms)\nWhere is it based?\tNY\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Intelligent IT Designs, is based in, NY) -> NY (4748ms)\nWhere is it based?\tOldham\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (Gym World, is based in, Oldham) -> Oldham (4663ms)\nWhere is it based?\tthe North\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (Ocean World, is based in, the North) -> the North (4663ms)\nWhere is it based?\tMelbourne\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (The Spring Program, has been based in, Melbourne) -> Melbourne (4741ms)\nWhere is it based?\tthe circle\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (our lives, be based in, the circle) -> the circle (4812ms)\nWhere is it based?\tScottish and Norse legend\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (a world, is based in, Scottish and Norse legend) -> Scottish and Norse legend (4763ms)\nWhere is it based?\tFinland\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Finland) -> Finland (4708ms)\nWhere is it based?\tPhoenix\t1.0\tWhere is it based? -> $x: (rainbow, be base in, $x) -> (Rainbow Studios Rainbow Studios, is based in, Phoenix) -> Phoenix (4681ms)\nWhere is it based?\tSydney metropolitan area\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (WORLD, is a business based in, Sydney metropolitan area) -> Sydney metropolitan area (4812ms)\nWhere is it based?\tfact\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (the first lives, are historically based in, fact) -> fact (4699ms)\nWhere is it based?\tAustria\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is primarily based in, Austria) -> Austria (4725ms)\nWhere is it based?\tSantiago or St . John?s\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based just in, Santiago or St . John?s) -> Santiago or St . John?s (4777ms)\nWhere is it based?\tRiyadh\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (my life, are based in, Riyadh) -> Riyadh (4821ms)\nWhere is it based?\tthe language\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Life?s reality code, is based in, the language) -> the language (4777ms)\nWhere is it based?\tthe UK and specialise\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (AC Silver, are based in, the UK and specialise) -> the UK and specialise (4770ms)\nWhere is it based?\tthe WVU College\t1.0\tWhere is it based? -> $x: (kennel, be base in, $x) -> (Kennel, is based in, the WVU College) -> the WVU College (4741ms)\nWhere is it based?\tSan Diego California\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Real Life Radio, is based in, San Diego California) -> San Diego California (4748ms)\nWhere is it based?\tthe Twelve Steps\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, is based in, the Twelve Steps) -> the Twelve Steps (4797ms)\nWhere is it based?\tNew York\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (Visible World, is based in, New York) -> New York (4808ms)\nWhere is it based?\tBatley\t1.0\tWhere is it based? -> $x: (rainbow, be base in, $x) -> (Rainbow Designers, are a design agency based in, Batley) -> Batley (4699ms)\nWhere is it based?\tone whole point\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, was based in, one whole point) -> one whole point (4763ms)\nWhere is it based?\tTurkey\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Turkey) -> Turkey (4822ms)\nWhere is it based?\tthe west\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (an independent IT Consultancy, are based in, the west) -> the west (4803ms)\nWhere is it based?\t2012\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Desmond?s life, is based in, 2012) -> 2012 (4382ms)\nWhere is it based?\tthe Congo basin countries\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, the Congo basin countries) -> the Congo basin countries (4763ms)\nWhere is it based?\tNorth America\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, were based in, North America) -> North America (4672ms)\nWhere is it based?\tthe Bible\t1.0\tWhere is it based? -> $x: (slavery, be base in, $x) -> (slavery and segregation, was based in, the Bible) -> the Bible (2004ms)\nWhere is it based?\tthe UK and Sydney\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Recruitment specialist, is based both in, the UK and Sydney) -> the UK and Sydney (1800ms)\nWhere is it based?\tanger\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, were based in, anger) -> anger (4381ms)\nWhere is it based?\tan international network\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> ('s IT professionals, are based in, an international network) -> an international network (4777ms)\nWhere is it based?\t1825\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Standard life, was based in, 1825) -> 1825 (4681ms)\nWhere is it based?\ttroy ounces\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (The silver price, is based in, troy ounces) -> troy ounces (4817ms)\nWhere is it based?\ta purpose-built building\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (3. It, is based in, a purpose-built building) -> a purpose-built building (4784ms)\nWhere is it based?\tGeneva\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Fellows Spring 2002 Michael Flynn, is a writer based in, Geneva) -> Geneva (4756ms)\nWhere is it based?\tNew Zealand\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Maruia Springs, is based in, New Zealand) -> New Zealand (4817ms)\nWhere is it based?\tone form\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (our own lives, is based in, one form) -> one form (3826ms)\nWhere is it based?\tEdinburgh\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are now based in, Edinburgh) -> Edinburgh (4770ms)\nWhere is it based?\tEurope\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (the ShareIt ShareIt, are based in, Europe) -> Europe (4822ms)\nWhere is it based?\tthe possibility\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, the possibility) -> the possibility (4716ms)\nWhere is it based?\tthe southern part\t1.0\tWhere is it based? -> $x: (titanium, be base in, $x) -> (Our titanium jewelry company, is based in, the southern part) -> the southern part (4690ms)\nWhere is it based?\tcomputation\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (our world, are based in, computation) -> computation (4817ms)\nWhere is it based?\tan office building\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> ('s IT professionals, are based in, an office building) -> an office building (4821ms)\nWhere is it based?\tthe Anglosphere\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, the Anglosphere) -> the Anglosphere (4792ms)\nWhere is it based?\tNashville\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (HealthSpring, is based in, Nashville) -> Nashville (4822ms)\nWhere is it based?\tthe Bible passage\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is firmly based in, the Bible passage) -> the Bible passage (4808ms)\nWhere is it based?\tthe context\t1.0\tWhere is it based? -> $x: (object, be base in, $x) -> (a SPWeb object, is created based in, the context) -> the context (4681ms)\nWhere is it based?\tthe College\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (the recruitment, are based in, the College) -> the College (4797ms)\nWhere is it based?\tWake Forest\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (SilverLight, is based in, Wake Forest) -> Wake Forest (4797ms)\nWhere is it based?\tMiddleton\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Springs Window Fashions, is based in, Middleton) -> Middleton (4826ms)\nWhere is it based?\ta virtual world\t1.0\tWhere is it based? -> $x: (matter, be base in, $x) -> (matter, are based in, a virtual world) -> a virtual world (4699ms)\nWhere is it based?\tEvergreen\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (LifeFlight 3, is based in, Evergreen) -> Evergreen (4797ms)\nWhere is it based?\tthe late 1920 's\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the World, were based in, the late 1920 's) -> the late 1920 's (4741ms)\nWhere is it based?\tMaynard Boston area\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Iron Lore, is based in, Maynard Boston area) -> Maynard Boston area (4748ms)\nWhere is it based?\ta variety\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (the IT Insurance Project Manager, can be based in, a variety) -> a variety (4756ms)\nWhere is it based?\tdifferent parts\t1.0\tWhere is it based? -> $x: (gum, be base in, $x) -> (our GUM clinic, has been based in, different parts) -> different parts (2004ms)\nWhere is it based?\tUtah\t1.0\tWhere is it based? -> $x: (space shuttle, be base in, $x) -> (the space shuttles, is based in, Utah) -> Utah (4663ms)\nWhere is it based?\tthe Christian tradition\t1.0\tWhere is it based? -> $x: (mean, be base in, $x) -> (meaning, is based in, the Christian tradition) -> the Christian tradition (4770ms)\nWhere is it based?\tspace\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (SilverHawks, is also based in, space) -> space (4707ms)\nWhere is it based?\tLyons\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Spring Creek, is based in, Lyons) -> Lyons (4699ms)\nWhere is it based?\tOregon\t1.0\tWhere is it based? -> $x: (heaven, be base in, $x) -> (Heaven, is based in, Oregon) -> Oregon (4663ms)\nWhere is it based?\tthe former Soviet Union\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, the former Soviet Union) -> the former Soviet Union (4777ms)\nWhere is it based?\tVancouver\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Flat Iron Specialists, is primarily based in, Vancouver) -> Vancouver (4826ms)\nWhere is it based?\tthe Maasai Mara\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (The Siana Springs Camp, is home base in, the Maasai Mara) -> the Maasai Mara (4822ms)\nWhere is it based?\tHochheim\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Technogroup IT-Service GmbH, is based in, Hochheim) -> Hochheim (4733ms)\nWhere is it based?\twestern Michigan\t1.0\tWhere is it based? -> $x: (object, be base in, $x) -> (Atomic Object, is based in, western Michigan) -> western Michigan (2242ms)\nWhere is it based?\tthe gentle side\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (world wide, is more based in, the gentle side) -> the gentle side (3826ms)\nWhere is it based?\tcrystalline form\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (our lives, are based in, crystalline form) -> crystalline form (4725ms)\nWhere is it based?\tTokyo\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (an IT HEAD JAPAN, be based in, Tokyo) -> Tokyo (4792ms)\nWhere is it based?\tBritain\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Britain) -> Britain (3643ms)\nWhere is it based?\tSan Jose\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Iron Systems, is based in, San Jose) -> San Jose (4382ms)\nWhere is it based?\ta New York Zoo\t1.0\tWhere is it based? -> $x: (penguin, be base in, $x) -> (these penguins, are based in, a New York Zoo) -> a New York Zoo (4748ms)\nWhere is it based?\tBristol\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (Silicon Ltd., is based in, Bristol) -> Bristol (4672ms)\nWhere is it based?\t100 countries\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (?World Vision, is based in almost, 100 countries) -> 100 countries (3642ms)\nWhere is it based?\teducation\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> ('s Life, is strongly based in, education) -> education (4725ms)\nWhere is it based?\tRedmond and Bothell\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (the IT employees, are based in, Redmond and Bothell) -> Redmond and Bothell (4777ms)\nWhere is it based?\tthe nasty , sprawling settlement\t1.0\tWhere is it based? -> $x: (soda, be base in, $x) -> (Soda-Club, is based in, the nasty , sprawling settlement) -> the nasty , sprawling settlement (4763ms)\nWhere is it based?\tWashington DC\t1.0\tWhere is it based? -> $x: (marijuana, be base in, $x) -> (the Marijuana Policy Project, are based in, Washington DC) -> Washington DC (4812ms)\nWhere is it based?\tunimpeachable Scriptural authority\t1.0\tWhere is it based? -> $x: (slavery, be base in, $x) -> (slavery, was based in, unimpeachable Scriptural authority) -> unimpeachable Scriptural authority (4733ms)\nWhere is it based?\tGreenwich\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver Point Capital, is based in, Greenwich) -> Greenwich (1929ms)\nWhere is it based?\tIrvine\t1.0\tWhere is it based? -> $x: (newport, be base in, $x) -> (Newport, is a public company based in, Irvine) -> Irvine (4748ms)\nWhere is it based?\tHCM City\t1.0\tWhere is it based? -> $x: (frisbee, be base in, $x) -> (another Ultimate Frisbee player, was based in, HCM City) -> HCM City (4770ms)\nWhere is it based?\tChina\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, China) -> China (4690ms)\nWhere is it based?\tFrance\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Life, is based both in, France) -> France (4797ms)\nWhere is it based?\tArizona\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Arizona) -> Arizona (4826ms)\nWhere is it based?\twisdom\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (your senses and life, are based in, wisdom) -> wisdom (4217ms)\nWhere is it based?\tEast Sussex\t1.0\tWhere is it based? -> $x: (rainbow, be base in, $x) -> (The Cosmic Rainbows Healing Centre, is based in, East Sussex) -> East Sussex (4707ms)\nWhere is it based?\tthe Dells\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (this world, is simply based in, the Dells) -> the Dells (4821ms)\nWhere is it based?\tBardstown\t1.0\tWhere is it based? -> $x: (heaven, be base in, $x) -> (Heaven Hill, is based in, Bardstown) -> Bardstown (4748ms)\nWhere is it based?\tthe antiaircraft division\t1.0\tWhere is it based? -> $x: (object, be base in, $x) -> (these objects, are based in, the antiaircraft division) -> the antiaircraft division (4741ms)\nWhere is it based?\toriginal slides/notes\t1.0\tWhere is it based? -> $x: (slide, be base in, $x) -> (Slides, have been based in-part upon, original slides/notes) -> original slides/notes (4725ms)\nWhere is it based?\tsilico predictions\t1.0\tWhere is it based? -> $x: (protein, be base in, $x) -> (secreted proteins, are based on in, silico predictions) -> silico predictions (4784ms)\nWhere is it based?\tpart\t1.0\tWhere is it based? -> $x: (mean, be base in, $x) -> (Mean Girls, was based in, part) -> part (4822ms)\nWhere is it based?\tSan Francisco\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world?s, is based in, San Francisco) -> San Francisco (4681ms)\nWhere is it based?\ta single example\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (our lives, is illogical based in, a single example) -> a single example (4381ms)\nWhere is it based?\tCosta Rica\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (world, is based in, Costa Rica) -> Costa Rica (4792ms)\nWhere is it based?\tWinnersh\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Connections Recruitment, is based in, Winnersh) -> Winnersh (4826ms)\nWhere is it based?\tthe fight\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (His life, was based in, the fight) -> the fight (4663ms)\nWhere is it based?\tLeesburg\t1.0\tWhere is it based? -> $x: (matter, be base in, $x) -> (Image Matters, is based in, Leesburg) -> Leesburg (4812ms)\nWhere is it based?\tBeijing\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Chinese furniture and art.It, is based in, Beijing) -> Beijing (4672ms)\nWhere is it based?\tGirona\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Girona) -> Girona (4741ms)\nWhere is it based?\tNassau\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the World, is based in, Nassau) -> Nassau (4382ms)\nWhere is it based?\tKalamazoo\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Kalamazoo) -> Kalamazoo (4217ms)\nWhere is it based?\tNew Mexico\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, New Mexico) -> New Mexico (4741ms)\nWhere is it based?\tBrisbane\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Axle IT Axle IT, is a company based in, Brisbane) -> Brisbane (4808ms)\nWhere is it based?\tSterling\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Lives, is based in, Sterling) -> Sterling (2898ms)\nWhere is it based?\tHuntingdon\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Huntingdon Life Sciences, is based in, Huntingdon) -> Huntingdon (4770ms)\nWhere is it based?\tlimerick\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Bdo recruitment, is based in, limerick) -> limerick (4798ms)\nWhere is it based?\tmediated self-interest\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Life style, is based in, mediated self-interest) -> mediated self-interest (4777ms)\nWhere is it based?\tSeattle\t1.0\tWhere is it based? -> $x: (gravity, be base in, $x) -> (Gravity Payments, is based in, Seattle) -> Seattle (4681ms)\nWhere is it based?\tThame\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Downtown Recruitment, are based in, Thame) -> Thame (4741ms)\nWhere is it based?\tlarge measure\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (an IT Policy Process, was based in, large measure) -> large measure (4748ms)\nWhere is it based?\tthe Soho Street temple\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Life, is based in, the Soho Street temple) -> the Soho Street temple (4741ms)\nWhere is it based?\tChicago\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (World Book, is based in, Chicago) -> Chicago (4822ms)\nWhere is it based?\tTempe\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (LifeLock, is based in, Tempe) -> Tempe (4792ms)\nWhere is it based?\tDerby\t1.0\tWhere is it based? -> $x: (matter, be base in, $x) -> (Foundation Matters, is based in, Derby) -> Derby (1854ms)\nWhere is it based?\tTaipei\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Fubon Life Fubon Life, is based in, Taipei) -> Taipei (4822ms)\nWhere is it based?\tclusters\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, clusters) -> clusters (4663ms)\nWhere is it based?\tunderstanding reality\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (world, is based in, understanding reality) -> understanding reality (4817ms)\nWhere is it based?\tPortland\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (World Pulse, is based here in, Portland) -> Portland (4681ms)\nWhere is it based?\tAtlanta\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Atlanta) -> Atlanta (4699ms)\nWhere is it based?\tTucson\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Titan Iron Ore Corp. Titan, is based in, Tucson) -> Tucson (4777ms)\nWhere is it based?\tWarrington\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Accent IT Solutions, are based in, Warrington) -> Warrington (4733ms)\nWhere is it based?\tSaudi Arabia\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Saudi Arabia) -> Saudi Arabia (3643ms)\nWhere is it based?\tNew York City\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (It?s possible you?ll, be based in, New York City) -> New York City (4792ms)\nWhere is it based?\tWashington\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Four life sciences specialists, are based in, Washington) -> Washington (4817ms)\nWhere is it based?\tEast Sydney\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Switch I.T., is based in, East Sydney) -> East Sydney (4784ms)\nWhere is it based?\tUdaipur\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (our lives, were based in, Udaipur) -> Udaipur (4808ms)\nWhere is it based?\tCo. Clare\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (this IT Administrator position, will be based in, Co. Clare) -> Co. Clare (4784ms)\nWhere is it based?\tMississauga\t1.0\tWhere is it based? -> $x: (limo, be base in, $x) -> (Halton Elite Limos, are based in, Mississauga) -> Mississauga (4808ms)\nWhere is it based?\tCanberra\t1.0\tWhere is it based? -> $x: (thorpe, be base in, $x) -> (Rebecca Thorpe, is based in, Canberra) -> Canberra (2898ms)\nWhere is it based?\tHenderson\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver State, was based in, Henderson) -> Henderson (1800ms)\nWhere is it based?\tAllentown\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (the Lehigh Valley IronPigs, are based in, Allentown) -> Allentown (4808ms)\nWhere is it based?\tWelwyn Garden City\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver Fox, is a family business based in, Welwyn Garden City) -> Welwyn Garden City (2241ms)\nWhere is it based?\tthe Disney film Mulan\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (This world, is based in, the Disney film Mulan) -> the Disney film Mulan (4733ms)\nWhere is it based?\tSaint Ouen sur\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (toggle fastener...It, is based in, Saint Ouen sur) -> Saint Ouen sur (4681ms)\nWhere is it based?\tthe natural abilities\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, was fortuitously based in, the natural abilities) -> the natural abilities (4748ms)\nWhere is it based?\tAustin\t1.0\tWhere is it based? -> $x: (neon, be base in, $x) -> (Neon Indian ?, is based in, Austin) -> Austin (4741ms)\nWhere is it based?\tNepal\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Nepal) -> Nepal (4381ms)\nWhere is it based?\tthe UK\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (a IT jobs board, is based in, the UK) -> the UK (4784ms)\nWhere is it based?\tthe local government\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (some it, might be based mostly in, the local government) -> the local government (4792ms)\nWhere is it based?\tDubai\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (DP World, is based in, Dubai) -> Dubai (4812ms)\nWhere is it based?\tfoundations\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, foundations) -> foundations (4803ms)\nWhere is it based?\tChennai\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Our recruitment office, is based in, Chennai) -> Chennai (4797ms)\nWhere is it based?\tthe U.S. September\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (deep IT roles, are primarily based in, the U.S. September) -> the U.S. September (2004ms)\nWhere is it based?\tlarge part\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life insurance, are also based in, large part) -> large part (4803ms)\nWhere is it based?\tSan Diego\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (World Music, is currently based in, San Diego) -> San Diego (4681ms)\nWhere is it based?\taltruistic aspirations\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, often are based in, altruistic aspirations) -> altruistic aspirations (4218ms)\nWhere is it based?\tCalgary\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (the IT Manager, is based in, Calgary) -> Calgary (4797ms)\nWhere is it based?\tOxford\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> ('s life, was based in, Oxford) -> Oxford (4792ms)\nWhere is it based?\tHamburg\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (Our world, is based in, Hamburg) -> Hamburg (3826ms)\nWhere is it based?\tthe physical reality\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Life, is based in, the physical reality) -> the physical reality (4699ms)\nWhere is it based?\ta wonderful city\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, a wonderful city) -> a wonderful city (4690ms)\nWhere is it based?\tFramingham\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Iron Mountain Digital, is based in, Framingham) -> Framingham (4808ms)\nWhere is it based?\tthe hardscrabble reality\t1.0\tWhere is it based? -> $x: (marijuana, be base in, $x) -> (marijuana, is based in, the hardscrabble reality) -> the hardscrabble reality (4792ms)\nWhere is it based?\tthe Pilbara region\t1.0\tWhere is it based? -> $x: (iron, be base in, $x) -> (Its Australian Iron Ore assets, are based in, the Pilbara region) -> the Pilbara region (4763ms)\nWhere is it based?\tMichigan\t1.0\tWhere is it based? -> $x: (matter, be base in, $x) -> (All Children Matter, is based in, Michigan) -> Michigan (4748ms)\nWhere is it based?\tMannheim\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (IT and network solutions, is based in, Mannheim) -> Mannheim (4784ms)\nWhere is it based?\tSan Mateo\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, San Mateo) -> San Mateo (4821ms)\nWhere is it based?\tCalifornia\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Her whole life, was based in, California) -> California (4708ms)\nWhere is it based?\tSouth Wales\t1.0\tWhere is it based? -> $x: (limo, be base in, $x) -> (Limo Broker, is based in, South Wales) -> South Wales (4792ms)\nWhere is it based?\tRamallah\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Charlotte Silver, is a journalist based in, Ramallah) -> Ramallah (4808ms)\nWhere is it based?\tNorway\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Norway) -> Norway (4803ms)\nWhere is it based?\tRotterdam\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Rotterdam) -> Rotterdam (4733ms)\nWhere is it based?\tFt\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Life Coach Training, is based in, Ft) -> Ft (4756ms)\nWhere is it based?\tJacksonville Florida\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Natural Life, is based in, Jacksonville Florida) -> Jacksonville Florida (4681ms)\nWhere is it based?\ta purpose-built centre\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (The IT team, is based in, a purpose-built centre) -> a purpose-built centre (4770ms)\nWhere is it based?\tReno NV\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver Locks, is based in, Reno NV) -> Reno NV (4792ms)\nWhere is it based?\tAliso Viejo\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (SiliconSystems, is based in, Aliso Viejo) -> Aliso Viejo (4381ms)\nWhere is it based?\tRomford\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (social lives, are based in, Romford) -> Romford (4663ms)\nWhere is it based?\tStaines\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (The recruitment consultant, will be based in, Staines) -> Staines (1929ms)\nWhere is it based?\tNorfolk\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Norfolk) -> Norfolk (4826ms)\nWhere is it based?\tthe City\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Nexus Recruitment, is based in, the City) -> the City (4784ms)\nWhere is it based?\tWorld War Two\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, are based in, World War Two) -> World War Two (4690ms)\nWhere is it based?\tUniversity House\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Student Life, are based in, University House) -> University House (4803ms)\nWhere is it based?\tconflict\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Human life, would be based in, conflict) -> conflict (4812ms)\nWhere is it based?\trules and laws\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (our daily life, is based in, rules and laws) -> rules and laws (4792ms)\nWhere is it based?\tAsia\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, Asia) -> Asia (4690ms)\nWhere is it based?\tperfection\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, is his base in, perfection) -> perfection (4218ms)\nWhere is it based?\tPakistan\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Geoconsultant It, is based in, Pakistan) -> Pakistan (4821ms)\nWhere is it based?\tColumbia\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Colonial Life, is based in, Columbia) -> Columbia (4808ms)\nWhere is it based?\tchaos and horror and murder\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is truly based in, chaos and horror and murder) -> chaos and horror and murder (4725ms)\nWhere is it based?\ta Biotech Region\t1.0\tWhere is it based? -> $x: (protein, be base in, $x) -> (high quality recombinant proteins, is based in, a Biotech Region) -> a Biotech Region (2241ms)\nWhere is it based?\tPlainfield\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Spring-Green, is based in, Plainfield) -> Plainfield (4748ms)\nWhere is it based?\tthe Wellington Region\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (civic life, are based in, the Wellington Region) -> the Wellington Region (4672ms)\nWhere is it based?\tBungonia/goulburn\t1.0\tWhere is it based? -> $x: (slide, be base in, $x) -> (Sliding lodge performance horses, is based in, Bungonia/goulburn) -> Bungonia/goulburn (4672ms)\nWhere is it based?\tJava\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (ColdSpring, is based in-part on, Java) -> Java (4770ms)\nWhere is it based?\tthe cosmic manifestation\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (all life, is based in, the cosmic manifestation) -> the cosmic manifestation (4797ms)\nWhere is it based?\tLeuven\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Their international IT team, is based in, Leuven) -> Leuven (4763ms)\nWhere is it based?\tDunedin\t1.0\tWhere is it based? -> $x: (neurosurgeon, be base in, $x) -> (three neurosurgeons, will eventually be based in, Dunedin) -> Dunedin (4803ms)\nWhere is it based?\treproductive rights\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (my life, is based in, reproductive rights) -> reproductive rights (4716ms)\nWhere is it based?\t26 countries\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (the IT landscape Gartner analysts, are based in, 26 countries) -> 26 countries (4725ms)\nWhere is it based?\tGillingham\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (IT Sales role, is based in, Gillingham) -> Gillingham (4777ms)\nWhere is it based?\ta large part\t1.0\tWhere is it based? -> $x: (titanium, be base in, $x) -> (Titanium, was based in, a large part) -> a large part (1854ms)\nWhere is it based?\tSt . Louis\t1.0\tWhere is it based? -> $x: (milk, be base in, $x) -> ('s bottled milk sales, were based in, St . Louis) -> St . Louis (1854ms)\nWhere is it based?\tthe building\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (The Faculty IT team, are now based in, the building) -> the building (4716ms)\nWhere is it based?\tthe county\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, the county) -> the county (4725ms)\nWhere is it based?\tWashington D.C.\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, Washington D.C.) -> Washington D.C. (4716ms)\nWhere is it based?\tStockport\t1.0\tWhere is it based? -> $x: (seta, be base in, $x) -> (SETA, is based in, Stockport) -> Stockport (4821ms)\nWhere is it based?\tfear\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (my life, is based in, fear) -> fear (4663ms)\nWhere is it based?\tthe West Bank\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Charlotte Silver, is a journalist based in, the West Bank) -> the West Bank (1929ms)\nWhere is it based?\tMaryland\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (Sandy Spring, is based in, Maryland) -> Maryland (4797ms)\nWhere is it based?\tIndia\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (an IT Outsourcing Company, is based in, India) -> India (4763ms)\nWhere is it based?\thappiness and fulfillment\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, is based in, happiness and fulfillment) -> happiness and fulfillment (4382ms)\nWhere is it based?\tRedwood City\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Redwood City) -> Redwood City (4803ms)\nWhere is it based?\tKentucky\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (the spring Court, will be based in, Kentucky) -> Kentucky (4699ms)\nWhere is it based?\ta principled way\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (our life choices, are based in, a principled way) -> a principled way (4716ms)\nWhere is it based?\tthe Middle\t1.0\tWhere is it based? -> $x: (spring, be base in, $x) -> (The Springs, are based in, the Middle) -> the Middle (4812ms)\nWhere is it based?\tJapan\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (an IT instructor & engineer, has been based in, Japan) -> Japan (4763ms)\nWhere is it based?\tBracknell\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (I.T., are based in, Bracknell) -> Bracknell (4708ms)\nWhere is it based?\tSpringdale\t1.0\tWhere is it based? -> $x: (protein, be base in, $x) -> (the world?s number one protein provider, is based in, Springdale) -> Springdale (4663ms)\nWhere is it based?\tthe Monterey Park\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (The IT Intern, will be based in, the Monterey Park) -> the Monterey Park (4741ms)\nWhere is it based?\tthe UK.\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (my working life, has been based in, the UK.) -> the UK. (4756ms)\nWhere is it based?\tBirmingham\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Aarca Sales recruitment, are based in, Birmingham) -> Birmingham (4826ms)\nWhere is it based?\tAda\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (world headquarters, is based in, Ada) -> Ada (3643ms)\nWhere is it based?\ta number\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (Our recruitment teams, are based in, a number) -> a number (4817ms)\nWhere is it based?\tscientology\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, is based in, scientology) -> scientology (4777ms)\nWhere is it based?\tLas Vegas\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver State Helicopters, was based in, Las Vegas) -> Las Vegas (4777ms)\nWhere is it based?\tAstrology\t1.0\tWhere is it based? -> $x: (heaven, be base in, $x) -> (heaven, is based in, Astrology) -> Astrology (4681ms)\nWhere is it based?\tChrist\t1.0\tWhere is it based? -> $x: (mean, be base in, $x) -> (the new meaning, is based in, Christ) -> Christ (1928ms)\nWhere is it based?\tMinsk\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (the SputIT, is a software development company based in, Minsk) -> Minsk (4817ms)\nWhere is it based?\tOttawa\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Canada Life Insurance, was based in, Ottawa) -> Ottawa (2898ms)\nWhere is it based?\tPerth\t1.0\tWhere is it based? -> $x: (neptune, be base in, $x) -> (Neptune Marine Services, are based in, Perth) -> Perth (4707ms)\nWhere is it based?\tBurlingame\t1.0\tWhere is it based? -> $x: (gravity, be base in, $x) -> (BitGravity, is based in, Burlingame) -> Burlingame (4802ms)\nWhere is it based?\ta deductive process\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, must be based in, a deductive process) -> a deductive process (4826ms)\nWhere is it based?\tKelowna\t1.0\tWhere is it based? -> $x: (penguin, be base in, $x) -> (Club Penguin, is based in, Kelowna) -> Kelowna (4663ms)\nWhere is it based?\tGermany\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (ShareIt, is based in, Germany) -> Germany (4792ms)\nWhere is it based?\tScotland\t1.0\tWhere is it based? -> $x: (silver, be base in, $x) -> (Silver Fox Books, is based in, Scotland) -> Scotland (4792ms)\nWhere is it based?\tPhilly\t1.0\tWhere is it based? -> $x: (rainbow, be base in, $x) -> (?Rainbow Destroyer, is a zombie-pop duo based in, Philly) -> Philly (4817ms)\nWhere is it based?\t?Yap.\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, was based in, ?Yap.) -> ?Yap. (4817ms)\nWhere is it based?\tHarpenden\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Virtuosity IT Ltd, is based in, Harpenden) -> Harpenden (4699ms)\nWhere is it based?\tWisco\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (early life, was also based in, Wisco) -> Wisco (4792ms)\nWhere is it based?\tthe Palo Alto office\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (Silicon Valley ?, is based in, the Palo Alto office) -> the Palo Alto office (4812ms)\nWhere is it based?\tRochester\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> ('s IT group, is based in, Rochester) -> Rochester (4812ms)\nWhere is it based?\tsouthern California\t1.0\tWhere is it based? -> $x: (etiquette, be base in, $x) -> (Etiquette Expert Elaine Swann, is based in, southern California) -> southern California (4699ms)\nWhere is it based?\tRedcliffe\t1.0\tWhere is it based? -> $x: (matter, be base in, $x) -> (Matter Solutions, are based in, Redcliffe) -> Redcliffe (4812ms)\nWhere is it based?\tFreiburg\t1.0\tWhere is it based? -> $x: (neolithic, be base in, $x) -> (the Neolithic period, is based in, Freiburg) -> Freiburg (4733ms)\nWhere is it based?\ttime and place\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Princess--it, is solidly based in, time and place) -> time and place (4672ms)\nWhere is it based?\tthe Netherlands\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Fox-IT, is based in, the Netherlands) -> the Netherlands (4672ms)\nWhere is it based?\tIndiana\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (life, is based in, Indiana) -> Indiana (4808ms)\nWhere is it based?\tNewark\t1.0\tWhere is it based? -> $x: (rainbow, be base in, $x) -> ('s Rainbow Communications, is based in, Newark) -> Newark (4812ms)\nWhere is it based?\tHampshire\t1.0\tWhere is it based? -> $x: (recruitment, be base in, $x) -> (1-1 Recruitment, has been based in, Hampshire) -> Hampshire (4785ms)\nWhere is it based?\tthe US.\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (the world, are based in, the US.) -> the US. (4826ms)\nWhere is it based?\tCupertino\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (Samsung Display Division Silicon Image, is based in, Cupertino) -> Cupertino (4817ms)\nWhere is it based?\tGeorgia\t1.0\tWhere is it based? -> $x: (world, be base in, $x) -> (His world, is based in, Georgia) -> Georgia (4826ms)\nWhere is it based?\tOhio\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Ohio Life, was a bank based in, Ohio) -> Ohio (4707ms)\nWhere is it based?\tHamilton\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Life Exposure Life Exposure Photography, is based in, Hamilton) -> Hamilton (4699ms)\nWhere is it based?\tLewiston\t1.0\tWhere is it based? -> $x: (rainbow, be base in, $x) -> (Rainbow FCU, is based in, Lewiston) -> Lewiston (4663ms)\nWhere is it based?\tJackson\t1.0\tWhere is it based? -> $x: (life, be base in, $x) -> (Southern Jewish Life, is based in, Jackson) -> Jackson (4690ms)\nWhere is it based?\tLos Angeles\t1.0\tWhere is it based? -> $x: (silicon, be base in, $x) -> (Silicon Valley Heaps, is based in, Los Angeles) -> Los Angeles (4826ms)\nWhere is it based?\tRegina\t1.0\tWhere is it based? -> $x: (it, be base in, $x) -> (Check-It Monitoring Solutions Inc., is based in, Regina) -> Regina (4663ms)\nWhere is it based?\tLille\t0.888888888889\tWhere is it based? -> $x: (automobile, be base in, $x) -> (Verbaere Automobiles, is based in, Lille) -> Lille (4830ms)\nWhere is it based?\tWuhu\t0.888888888889\tWhere is it based? -> $x: (automobile, be base in, $x) -> (the automobile company Chery, is based in, Wuhu) -> Wuhu (4834ms)\nWhere is it based?\tPasadena\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (EarthLink Network, is based in, Pasadena) -> Pasadena (4838ms)\nWhere is it based?\tColorado\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (One Earth Future, is a private foundation based in, Colorado) -> Colorado (4838ms)\nWhere is it based?\tTolkien\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> ('s fictional Middle-earth cosmology, are based in, Tolkien) -> Tolkien (4830ms)\nWhere is it based?\tAuburn\t0.888888888889\tWhere is it based? -> $x: (automobile, be base in, $x) -> (the Auburn Automobile Company, was based in, Auburn) -> Auburn (4838ms)\nWhere is it based?\tDallas\t0.888888888889\tWhere is it based? -> $x: (entomologist, be base in, $x) -> (Extension entomologist Dr. Allen Knutson, is based in, Dallas) -> Dallas (4838ms)\nWhere is it based?\tTacoma\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Earth Economics, is a non-profit organization based in, Tacoma) -> Tacoma (4830ms)\nWhere is it based?\tthe foothills of the Southern Alps\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Blue Earth, is based in, the foothills of the Southern Alps) -> the foothills of the Southern Alps (4830ms)\nWhere is it based?\tBrooklyn\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Beautiful Earth, is based in, Brooklyn) -> Brooklyn (4826ms)\nWhere is it based?\tIthaca\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (the Earth, is a non-profit organization based in, Ithaca) -> Ithaca (4834ms)\nWhere is it based?\tTrenton\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> ('s largest earth-friendlycompanies, is based in, Trenton) -> Trenton (4834ms)\nWhere is it based?\tSouth Bend\t0.888888888889\tWhere is it based? -> $x: (automobile, be base in, $x) -> (an American automobile brand, is based in, South Bend) -> South Bend (4830ms)\nWhere is it based?\tturn\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (the earth, is based in, turn) -> turn (4834ms)\nWhere is it based?\tGermantown\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Earth Networks, is based in, Germantown) -> Germantown (4830ms)\nWhere is it based?\tAustralia\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Ocean Earth, is a company based in, Australia) -> Australia (4838ms)\nWhere is it based?\tVirginia Beach\t0.888888888889\tWhere is it based? -> $x: (cigarette, be base in, $x) -> (Premium Electronic Cigarette, is based in, Virginia Beach) -> Virginia Beach (4834ms)\nWhere is it based?\tLynnwood\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Klean Earth Environmental Company, is based in, Lynnwood) -> Lynnwood (4838ms)\nWhere is it based?\tthe Snow Forts\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (The Earth Day Party 2012, is mainly based in, the Snow Forts) -> the Snow Forts (4830ms)\nWhere is it based?\tRhinebeck\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (EarthKind Energy Inc., currently is based in, Rhinebeck) -> Rhinebeck (4830ms)\nWhere is it based?\tCarlisle\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Project Earth, is based in, Carlisle) -> Carlisle (4838ms)\nWhere is it based?\tReno\t0.888888888889\tWhere is it based? -> $x: (automobile, be base in, $x) -> (The National Automobile Museum, is based in, Reno) -> Reno (4838ms)\nWhere is it based?\tMidvale\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (EarthFAX Engineering Corp, is based in, Midvale) -> Midvale (4838ms)\nWhere is it based?\tthe Department\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (the Earth System QUEST, is based in, the Department) -> the Department (4834ms)\nWhere is it based?\tAsheville\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Earth Fare, is based in, Asheville) -> Asheville (4834ms)\nWhere is it based?\tSouth Africa\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Earth-Touch, are based in, South Africa) -> South Africa (4834ms)\nWhere is it based?\tTrollh?ttan\t0.888888888889\tWhere is it based? -> $x: (automobile, be base in, $x) -> (The automobile division, was based in, Trollh?ttan) -> Trollh?ttan (4838ms)\nWhere is it based?\tCamborne\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (Cool Earth, is based in, Camborne) -> Camborne (4830ms)\nWhere is it based?\tTrollh?ttan\t0.888888888889\tWhere is it based? -> $x: (automobile, be base in, $x) -> (The Saab Automobile division, was based in, Trollh?ttan) -> Trollh?ttan (4834ms)\nWhere is it based?\tthe foothills\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (BLUE EARTH Blue Earth, is based in, the foothills) -> the foothills (4834ms)\nWhere is it based?\tEland\t0.888888888889\tWhere is it based? -> $x: (earth, be base in, $x) -> (EarthWatch volunteers, are based in, Eland) -> Eland (4834ms)\nWhere is it based?\tShenzhen\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (800,000 employees in China, are based in, Shenzhen) -> Shenzhen (4855ms)\nWhere is it based?\tsemi-colonial and Beats Studio\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, is based in, semi-colonial and Beats Studio) -> semi-colonial and Beats Studio (4842ms)\nWhere is it based?\ta head office\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (The Delcam China subsidiary, is based in, a head office) -> a head office (4851ms)\nWhere is it based?\tOtahuhu\t0.777777777778\tWhere is it based? -> $x: (auckland, be base in, $x) -> (motorhome hire Auckland, is based in, Otahuhu) -> Otahuhu (4853ms)\nWhere is it based?\tQingdao\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China law blog, is an American lawyer based in, Qingdao) -> Qingdao (4853ms)\nWhere is it based?\tNanjing\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, are based in, Nanjing) -> Nanjing (4848ms)\nWhere is it based?\tTaiwan\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Airlines, is based in, Taiwan) -> Taiwan (4855ms)\nWhere is it based?\tthe centre\t0.777777777778\tWhere is it based? -> $x: (dna, be base in, $x) -> (May 3 , 2009 DNA Tattoo Studio, is based in, the centre) -> the centre (4842ms)\nWhere is it based?\tGuiyang\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, is based in, Guiyang) -> Guiyang (4857ms)\nWhere is it based?\tGuangzhou\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China ?s largest airline, is based in, Guangzhou) -> Guangzhou (4845ms)\nWhere is it based?\tKunming\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Minds Abroad, is based in, Kunming) -> Kunming (4845ms)\nWhere is it based?\tXiamen\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (PCT China, is based in, Xiamen) -> Xiamen (4853ms)\nWhere is it based?\tKunming City\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (www .shoessunglass-china.com, is based in, Kunming City) -> Kunming City (4851ms)\nWhere is it based?\tDublin\t0.777777777778\tWhere is it based? -> $x: (dna, be base in, $x) -> (easyDNA, is based in, Dublin) -> Dublin (4851ms)\nWhere is it based?\tChengdu\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (Air China Southwest Branch Company, is based in, Chengdu) -> Chengdu (4855ms)\nWhere is it based?\tthe West\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, are based in, the West) -> the West (4845ms)\nWhere is it based?\tXi'an\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Recycling Energy, is based in, Xi'an) -> Xi'an (4855ms)\nWhere is it based?\tAuckland City\t0.777777777778\tWhere is it based? -> $x: (auckland, be base in, $x) -> (the Auckland Regional Council, is also based in, Auckland City) -> Auckland City (4853ms)\nWhere is it based?\tZhuhai\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (The China venture, will be based in, Zhuhai) -> Zhuhai (4855ms)\nWhere is it based?\tmainland China\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (Giant China Co, is based in, mainland China) -> mainland China (4857ms)\nWhere is it based?\tBallina\t0.777777777778\tWhere is it based? -> $x: (dna, be base in, $x) -> (DNA Digital, is based in, Ballina) -> Ballina (4851ms)\nWhere is it based?\tJiangxi Province\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (Survivor China, will be based in, Jiangxi Province) -> Jiangxi Province (4855ms)\nWhere is it based?\tShouguang\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China New Borun, is based in, Shouguang) -> Shouguang (4848ms)\nWhere is it based?\tSaddler Street\t0.777777777778\tWhere is it based? -> $x: (durham, be base in, $x) -> (Durham Mustard, was based in, Saddler Street) -> Saddler Street (4845ms)\nWhere is it based?\tlarge Part\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, is based in, large Part) -> large Part (4853ms)\nWhere is it based?\tHongKong\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Motorcycle Tour, is based in, HongKong) -> HongKong (4857ms)\nWhere is it based?\tHarbin\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Education Alliance, is based in, Harbin) -> Harbin (4855ms)\nWhere is it based?\tShanghai\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Eastern Airlines, is based in, Shanghai) -> Shanghai (4857ms)\nWhere is it based?\tNew York China\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Labor Watch, is based in, New York China) -> New York China (4857ms)\nWhere is it based?\tthe size\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, is clearly ahead in based on, the size) -> the size (4848ms)\nWhere is it based?\tChongqing\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Southern, is building its base in, Chongqing) -> Chongqing (4845ms)\nWhere is it based?\tresearch and development\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, is building a strong base in, research and development) -> research and development (4848ms)\nWhere is it based?\tWhakatane\t0.777777777778\tWhere is it based? -> $x: (auckland, be base in, $x) -> (Auckland programme, will be based in, Whakatane) -> Whakatane (4848ms)\nWhere is it based?\tthe Auckland Domain\t0.777777777778\tWhere is it based? -> $x: (auckland, be base in, $x) -> (The Auckland Museum, is based in, the Auckland Domain) -> the Auckland Domain (4851ms)\nWhere is it based?\tBallina NSW\t0.777777777778\tWhere is it based? -> $x: (dna, be base in, $x) -> (DNA Digital, is an Australian company based in, Ballina NSW) -> Ballina NSW (4845ms)\nWhere is it based?\tthe busy , vibrant cities\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, are based in, the busy , vibrant cities) -> the busy , vibrant cities (4857ms)\nWhere is it based?\tthe Beijing office\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, is also based in, the Beijing office) -> the Beijing office (4857ms)\nWhere is it based?\tthe Division\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, is based in, the Division) -> the Division (4851ms)\nWhere is it based?\tthe industrial port city\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (Our China office, is based in, the industrial port city) -> the industrial port city (4842ms)\nWhere is it based?\tDalian\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, will be based in, Dalian) -> Dalian (4848ms)\nWhere is it based?\tbig cities\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China, are large state-owned corporations based in, big cities) -> big cities (4853ms)\nWhere is it based?\tthe East\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China ?s mobile market, is based in, the East) -> the East (4853ms)\nWhere is it based?\tPutian\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China Brand Sneaker World CO., are based in, Putian) -> Putian (4845ms)\nWhere is it based?\tPudong\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> ('s China head office, is based in, Pudong) -> Pudong (4857ms)\nWhere is it based?\tthe Chaoyang district\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (Limerick China Office, is based in, the Chaoyang district) -> the Chaoyang district (4848ms)\nWhere is it based?\tBrandon\t0.777777777778\tWhere is it based? -> $x: (china, be base in, $x) -> (China northsunm32, is based in, Brandon) -> Brandon (4853ms)\nWhere is it based?\tthe country\t0.777777777778\tWhere is it based? -> $x: (durham, be base in, $x) -> (Durham, be based elsewhere in, the country) -> the country (4848ms)\nWhere is it based?\tMorrisville\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (North Carolina, is based in, Morrisville) -> Morrisville (4857ms)\nWhere is it based?\tWest Columbia\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (Carolina Culinary Foods, is based in, West Columbia) -> West Columbia (4859ms)\nWhere is it based?\trough proportion\t0.666666666667\tWhere is it based? -> $x: (albany, be base in, $x) -> (The Albany Plan, was based in, rough proportion) -> rough proportion (4857ms)\nWhere is it based?\tRaleigh\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (Carolina, are a five-man group based in, Raleigh) -> Raleigh (4859ms)\nWhere is it based?\tNorth Carolina\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> ('s Carolina League, is based in, North Carolina) -> North Carolina (4859ms)\nWhere is it based?\tHendersonville\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (Western North Carolina, is based in, Hendersonville) -> Hendersonville (4859ms)\nWhere is it based?\tDurham\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (The Carolina Chocolate Drops, are based in, Durham) -> Durham (4861ms)\nWhere is it based?\tCedar Grove NC\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (Carolina Security Systems, is based in, Cedar Grove NC) -> Cedar Grove NC (4857ms)\nWhere is it based?\tCharlotte\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (Weisberg and Meyers North Carolina, is based in, Charlotte) -> Charlotte (4861ms)\nWhere is it based?\tLatham\t0.666666666667\tWhere is it based? -> $x: (albany, be base in, $x) -> (Albany Broadcasting, is based in, Latham) -> Latham (4861ms)\nWhere is it based?\tSouth Kalimantan\t0.666666666667\tWhere is it based? -> $x: (coal, be base in, $x) -> (a world class coal terminal, is fully based in, South Kalimantan) -> South Kalimantan (4861ms)\nWhere is it based?\tGreensboro\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (North Carolina, is based in, Greensboro) -> Greensboro (4861ms)\nWhere is it based?\tthe school\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (the Carolina Community Media Project, is based in, the school) -> the school (4859ms)\nWhere is it based?\tBalitmore\t0.666666666667\tWhere is it based? -> $x: (carolina, be base in, $x) -> (North Carolina, is now based in, Balitmore) -> Balitmore (4859ms)\nWhere is it based?\tHarworth\t0.666666666667\tWhere is it based? -> $x: (coal, be base in, $x) -> (UK Coal, is based in, Harworth) -> Harworth (4859ms)\nWhere is it based?\tOntario\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Adventure Canada, is based in, Ontario) -> Ontario (4864ms)\nWhere is it based?\twhole or\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (the US , Canada , and countries, is based in, whole or) -> whole or (4864ms)\nWhere is it based?\tMissouri\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (the United States and Canada, are based in, Missouri) -> Missouri (4861ms)\nWhere is it based?\tSouthfield\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (United States and Canada, are based in, Southfield) -> Southfield (4862ms)\nWhere is it based?\tBurlington\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Siemens Canada, is based in, Burlington) -> Burlington (4862ms)\nWhere is it based?\tMarkham\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Rolta Canada Limited, is based in, Markham) -> Markham (4865ms)\nWhere is it based?\tSt . John\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Young Adult Cancer Canada, is based in, St . John) -> St . John (4862ms)\nWhere is it based?\tMontreal\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, will be based in, Montreal) -> Montreal (4861ms)\nWhere is it based?\tThornhill\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Nike Canada Ltd., is based in, Thornhill) -> Thornhill (4863ms)\nWhere is it based?\tPeterborough\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (WCs Canada, is based in, Peterborough) -> Peterborough (4865ms)\nWhere is it based?\talliston\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Honda of canada manufacturing, is based in, alliston) -> alliston (4864ms)\nWhere is it based?\tHudson\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada Randall Reeves, is a consultant based in, Hudson) -> Hudson (4864ms)\nWhere is it based?\tInuvik\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (ICC-Canada, is based in, Inuvik) -> Inuvik (4866ms)\nWhere is it based?\tManotick\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Archive CD Books Canada, is based in, Manotick) -> Manotick (4864ms)\nWhere is it based?\tTexas\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Apple Canada, is based in, Texas) -> Texas (4863ms)\nWhere is it based?\tAlberta\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (United Safety Canada Ltd., is based in, Alberta) -> Alberta (4865ms)\nWhere is it based?\tBelleville\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada Junction Web Design, is based in, Belleville) -> Belleville (4862ms)\nWhere is it based?\tQu?bec City\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, is based in, Qu?bec City) -> Qu?bec City (4864ms)\nWhere is it based?\tsouthern Ontario\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, are based in, southern Ontario) -> southern Ontario (4861ms)\nWhere is it based?\tOakville\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (CGU Group Canada Ltd. Pethealth, is based in, Oakville) -> Oakville (4864ms)\nWhere is it based?\tthe Harrisburg , Pennsylvania area\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, is based in, the Harrisburg , Pennsylvania area) -> the Harrisburg , Pennsylvania area (4864ms)\nWhere is it based?\twinnipeg\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (the appraisal institute of canada, is based in, winnipeg) -> winnipeg (4864ms)\nWhere is it based?\tVictoria\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada?s Chinese population, was based in, Victoria) -> Victoria (4865ms)\nWhere is it based?\tEncino\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, is based in, Encino) -> Encino (4864ms)\nWhere is it based?\tQuebec\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, are based in, Quebec) -> Quebec (4864ms)\nWhere is it based?\tWindsor\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Chrysler Canada Inc., is based in, Windsor) -> Windsor (4865ms)\nWhere is it based?\tOttowa\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Equine Canada, is based in, Ottowa) -> Ottowa (4864ms)\nWhere is it based?\tKahnawake\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (The online casino Canada, is mostly based in, Kahnawake) -> Kahnawake (4865ms)\nWhere is it based?\tWinnipeg\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (**CANADA, is based in, Winnipeg) -> Winnipeg (4865ms)\nWhere is it based?\tthe fur trade\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, is based in, the fur trade) -> the fur trade (4862ms)\nWhere is it based?\tMississauga Ontario\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Fujifilm Canada, is based in, Mississauga Ontario) -> Mississauga Ontario (4865ms)\nWhere is it based?\tRichmond\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (two Mo Teleflex Canada, is based in, Richmond) -> Richmond (4865ms)\nWhere is it based?\tAlliston\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada Manufacturing, is based in, Alliston) -> Alliston (4862ms)\nWhere is it based?\tmajor urban centers\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, are primarily based in, major urban centers) -> major urban centers (4865ms)\nWhere is it based?\tMiddlefield\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Western Canada, is based in, Middlefield) -> Middlefield (4862ms)\nWhere is it based?\tCharlottetown\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada Leslie, is based in, Charlottetown) -> Charlottetown (4862ms)\nWhere is it based?\tthe Toronto suburb\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Wal-Mart Canada, is based in, the Toronto suburb) -> the Toronto suburb (4865ms)\nWhere is it based?\tGatineau\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Canada, is a privately owned company based in, Gatineau) -> Gatineau (4861ms)\nWhere is it based?\tCampbell River\t0.555555555556\tWhere is it based? -> $x: (canada, be base in, $x) -> (Marine Harvest Canada, is based in, Campbell River) -> Campbell River (4865ms)\n"
  },
  {
    "path": "oqa-data/predictions/sempre-trec.txt",
    "content": "How many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about NOBEL prize in literature nominees 1927-1930\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about astrid lindgren nom 08-09\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about Edgar Award Nominees paperback original    70-89\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about twitter tag 8\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about National Jewish Book Award  98-01\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about nobel prize in literature nominees 1901-1902\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about  edgar award nominees - critical 77-93\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nHow many stores does Wal-Mart operate world-wide?\tSpreadsheet Upload about edgar award crime fact 75-91 nominees\t-5.656\tformula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns \"Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936\") (name fb:m.0g4xhws \"Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930\") (name fb:m.0bvrwrf \"Spreadsheet Upload about astrid lindgren nom 08-09\") (name fb:m.0g4m9s6 \"Spreadsheet Upload about Edgar Award Nominees paperback original    70-89\") (name fb:m.0bvldfg \"Spreadsheet Upload about twitter tag 8\") (name fb:m.0cgss6d \"Spreadsheet Upload about National Jewish Book Award  98-01\") (name fb:m.0g4xrmt \"Spreadsheet Upload about nobel prize in literature nominees 1901-1902\") (name fb:m.0g4x9tr \"Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948\") (name fb:m.0g4npqx \"Spreadsheet Upload about  edgar award nominees - critical 77-93\") (name fb:m.0g4nlhw \"Spreadsheet Upload about edgar award crime fact 75-91 nominees\"))) (type fb:dataworld.mass_data_operation)\nWhat was Sinatra's first recording?\tWhat Was\t-1.484\tformula (fb:music.release_track.recording fb:m.0qtvgr)) (value (list (name fb:m.0q7l89w \"What Was\") (name fb:m.0rs87kf \"What Was\") (name fb:m.0kns3y9 \"What Was\"))) (type fb:music.release_track)\nWhat was Sinatra's first recording?\tWhat Was\t-1.484\tformula (fb:music.release_track.recording fb:m.0qtvgr)) (value (list (name fb:m.0q7l89w \"What Was\") (name fb:m.0rs87kf \"What Was\") (name fb:m.0kns3y9 \"What Was\"))) (type fb:music.release_track)\nWhat was Sinatra's first recording?\tWhat Was\t-1.484\tformula (fb:music.release_track.recording fb:m.0qtvgr)) (value (list (name fb:m.0q7l89w \"What Was\") (name fb:m.0rs87kf \"What Was\") (name fb:m.0kns3y9 \"What Was\"))) (type fb:music.release_track)\nWho is Warren Moon's agent?\tHarold Moon\t-1.436\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.warren_moon))) (value (list (name fb:m.0v50t84 \"Harold Moon\") (name fb:m.0v50tb_ \"Pat Moon\"))) (type fb:people.person)\nWho is Warren Moon's agent?\tPat Moon\t-1.436\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.warren_moon))) (value (list (name fb:m.0v50t84 \"Harold Moon\") (name fb:m.0v50tb_ \"Pat Moon\"))) (type fb:people.person)\nHow many layers of skin do we have?\tBeyonce's L'Oreal ad: You can't do that in advertising!\t2.136\tformula ((lambda x (!fb:common.webpage.resource (!fb:common.topic.webpage (var x)))) fb:en.skin)) (value (list (name fb:m.09xfbtp \"Beyonc��'s L'Or��al ad: You can't do that in advertising!\") (name fb:m.0b45gzk \"Let the Rumors Keep Swirling: Jennifer Lopez Loves ���Glee���\") (name fb:m.09xb1zf \"'Real Housewives of NYC': Work it, ladies\"))) (type fb:common.resource)\nHow many layers of skin do we have?\tLet the Rumors Keep Swirling: Jennifer Lopez Loves ���Glee���\t2.136\tformula ((lambda x (!fb:common.webpage.resource (!fb:common.topic.webpage (var x)))) fb:en.skin)) (value (list (name fb:m.09xfbtp \"Beyonc��'s L'Or��al ad: You can't do that in advertising!\") (name fb:m.0b45gzk \"Let the Rumors Keep Swirling: Jennifer Lopez Loves ���Glee���\") (name fb:m.09xb1zf \"'Real Housewives of NYC': Work it, ladies\"))) (type fb:common.resource)\nHow many layers of skin do we have?\t'Real Housewives of NYC': Work it, ladies\t2.136\tformula ((lambda x (!fb:common.webpage.resource (!fb:common.topic.webpage (var x)))) fb:en.skin)) (value (list (name fb:m.09xfbtp \"Beyonc��'s L'Or��al ad: You can't do that in advertising!\") (name fb:m.0b45gzk \"Let the Rumors Keep Swirling: Jennifer Lopez Loves ���Glee���\") (name fb:m.09xb1zf \"'Real Housewives of NYC': Work it, ladies\"))) (type fb:common.resource)\nWhat was Bing Crosby's nickname?\tBing Collins\t-3.426\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.bing_crosby_family))) (value (list (name fb:en.bing_collins \"Bing Collins\"))) (type fb:tv.tv_character)\nWhen was U.S Naval Academy founded?\tGeorge Bancroft\t-3.94\tformula (fb:organization.organization_founder.organizations_founded fb:en.united_states_naval_academy)) (value (list (name fb:en.george_bancroft \"George Bancroft\") (name fb:en.james_k_polk \"James K. Polk\"))) (type fb:organization.organization_founder)\nWhen was U.S Naval Academy founded?\tJames K. Polk\t-3.94\tformula (fb:organization.organization_founder.organizations_founded fb:en.united_states_naval_academy)) (value (list (name fb:en.george_bancroft \"George Bancroft\") (name fb:en.james_k_polk \"James K. Polk\"))) (type fb:organization.organization_founder)\nWhere did they honeymoon?\tPinellas County\t-2.995\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.honeymoon_island_state_park))) (value (list (name fb:en.pinellas_county \"Pinellas County\"))) (type fb:location.location)\nWho invented basketball?\tJames Naismith\t-4.303\tformula (and (fb:type.object.type fb:people.person) (!fb:law.invention.inventor fb:m.018w8))) (value (list (name fb:en.james_naismith \"James Naismith\"))) (type fb:law.inventor)\nWhat is Horatio's relationship to Hamlet?\tBlissful Master Index\t-3.757\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.hamlet_1948))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\"))) (type fb:common.annotation_index)\nHow tall is St. Peter's Basilica?\tSt. Peter's Basilica is often used by the pope\t-2.784\tformula (!fb:common.topic.image fb:en.basilica)) (value (list (name fb:m.02bp7w4 \"St. Peter's Basilica is often used by the pope\"))) (type fb:common.image)\nWho is the governor of Alaska?\tSean Parnell\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tSarah Palin\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tTony Knowles\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tJay Hammond\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tWilliam A. Egan\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tSteve Cowper\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tFrank Murkowski\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tBill Sheffield\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tWally Hickel\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWho is the governor of Alaska?\tKeith Harvey Miller\t2.294\tformula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell \"Sean Parnell\") (name fb:en.sarah_palin \"Sarah Palin\") (name fb:en.tony_knowles_1943 \"Tony Knowles\") (name fb:en.jay_hammond \"Jay Hammond\") (name fb:en.william_allen_egan \"William A. Egan\") (name fb:en.steve_cowper \"Steve Cowper\") (name fb:en.frank_murkowski \"Frank Murkowski\") (name fb:en.bill_sheffield \"Bill Sheffield\") (name fb:en.walter_joseph_hickel \"Wally Hickel\") (name fb:en.keith_harvey_miller \"Keith Harvey Miller\"))) (type fb:government.politician)\nWhat political party does Thabo Mbeki belong to?\tSouth African Communist Party\t-1.039\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.thabo_mbeki))) (value (list (name fb:en.south_african_communist_party \"South African Communist Party\") (name fb:en.african_national_congress \"African National Congress\"))) (type fb:government.political_party)\nWhat political party does Thabo Mbeki belong to?\tAfrican National Congress\t-1.039\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.thabo_mbeki))) (value (list (name fb:en.south_african_communist_party \"South African Communist Party\") (name fb:en.african_national_congress \"African National Congress\"))) (type fb:government.political_party)\nWhat is Hong Kong's population?\tInternet users as percentage of population, World Development Indicators, World Bank\t1.348\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.hong_kong)) (value (list (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\") (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nWhat is Hong Kong's population?\tInternet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\t1.348\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.hong_kong)) (value (list (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\") (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nWhat instrument did the jazz musician Art Tatum play?\tJazz piano\t-1.899\tformula (and (fb:type.object.type fb:common.topic) (!fb:music.group_member.instruments_played fb:en.art_tatum))) (value (list (name fb:en.piano Piano) (name fb:en.jazz_piano \"Jazz piano\"))) (type fb:music.instrument)\nWho developed the Macintosh computer?\tSteve Jobs\t-2.018\tformula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs \"Steve Jobs\") (name fb:en.jef_raskin \"Jef Raskin\") (name fb:en.bill_atkinson \"Bill Atkinson\") (name fb:en.burrell_smith \"Burrell Smith\") (name fb:en.bud_tribble \"Bud Tribble\"))) (type fb:computer.computer_designer)\nWho developed the Macintosh computer?\tJef Raskin\t-2.018\tformula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs \"Steve Jobs\") (name fb:en.jef_raskin \"Jef Raskin\") (name fb:en.bill_atkinson \"Bill Atkinson\") (name fb:en.burrell_smith \"Burrell Smith\") (name fb:en.bud_tribble \"Bud Tribble\"))) (type fb:computer.computer_designer)\nWho developed the Macintosh computer?\tBill Atkinson\t-2.018\tformula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs \"Steve Jobs\") (name fb:en.jef_raskin \"Jef Raskin\") (name fb:en.bill_atkinson \"Bill Atkinson\") (name fb:en.burrell_smith \"Burrell Smith\") (name fb:en.bud_tribble \"Bud Tribble\"))) (type fb:computer.computer_designer)\nWho developed the Macintosh computer?\tBurrell Smith\t-2.018\tformula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs \"Steve Jobs\") (name fb:en.jef_raskin \"Jef Raskin\") (name fb:en.bill_atkinson \"Bill Atkinson\") (name fb:en.burrell_smith \"Burrell Smith\") (name fb:en.bud_tribble \"Bud Tribble\"))) (type fb:computer.computer_designer)\nWho developed the Macintosh computer?\tBud Tribble\t-2.018\tformula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs \"Steve Jobs\") (name fb:en.jef_raskin \"Jef Raskin\") (name fb:en.bill_atkinson \"Bill Atkinson\") (name fb:en.burrell_smith \"Burrell Smith\") (name fb:en.bud_tribble \"Bud Tribble\"))) (type fb:computer.computer_designer)\nHow old was Elvis Presley when he died?\tMyocardial infarction\t0.398\tformula (fb:people.cause_of_death.people fb:en.elvis_presley)) (value (list (name fb:en.heart_failure \"Myocardial infarction\"))) (type fb:people.cause_of_death)\nWho invented television?\tPhilo Farnsworth\t-3.223\tformula (and (fb:type.object.type fb:people.person) (!fb:law.invention.inventor fb:en.television))) (value (list (name fb:en.philo_farnsworth \"Philo Farnsworth\") (name fb:en.charles_francis_jenkins \"Charles Francis Jenkins\"))) (type fb:law.inventor)\nWho invented television?\tCharles Francis Jenkins\t-3.223\tformula (and (fb:type.object.type fb:people.person) (!fb:law.invention.inventor fb:en.television))) (value (list (name fb:en.philo_farnsworth \"Philo Farnsworth\") (name fb:en.charles_francis_jenkins \"Charles Francis Jenkins\"))) (type fb:law.inventor)\nWho is the conductor of the Boston Pops?\tJohn Williams\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWho is the conductor of the Boston Pops?\tArthur Fiedler\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWho is the conductor of the Boston Pops?\tKeith Lockhart\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWho is the conductor of the Boston Pops?\tAdolf Neuendorff\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWho is the conductor of the Boston Pops?\tTimothee Adamowski\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWho is the conductor of the Boston Pops?\tAlfredo Casella\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWho is the conductor of the Boston Pops?\tFranz Kneisel\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWho is the conductor of the Boston Pops?\tJosef Pasternack\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWho is the conductor of the Boston Pops?\tAgide Jacchia\t-0.3\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nIn what year was Warren Moon born?\tPro Football Player\t-3.681\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.hall_of_fame_induction.category (!fb:award.hall_of_fame_inductee.hall_of_fame_inductions (var x)))) fb:en.warren_moon))) (value (list (name fb:en.pro_football_player \"Pro Football Player\"))) (type fb:award.hall_of_fame_induction_category)\nWhen was the Red Cross founded?\tHenry Dunant\t-2.679\tformula (fb:organization.organization_founder.organizations_founded fb:en.international_committee_of_the_red_cross)) (value (list (name fb:en.henry_dunant \"Henry Dunant\"))) (type fb:organization.organization_founder)\nWhat books has Walter Mosley written?\tLa mariposa blanca\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat books has Walter Mosley written?\tLittle Scarlet\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat books has Walter Mosley written?\tCinnamon Kiss\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat books has Walter Mosley written?\tDevil in a Blue Dress\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat books has Walter Mosley written?\tA Little Yellow Dog\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat books has Walter Mosley written?\tAlways Outnumbered, Always Outgunned\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat books has Walter Mosley written?\tBlack Betty\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat books has Walter Mosley written?\tThe wave\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat books has Walter Mosley written?\tBlonde Faith\t1.258\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca \"La mariposa blanca\") (name fb:m.04zg3s_ \"Little Scarlet\") (name fb:en.cinnamon_kiss \"Cinnamon Kiss\") (name fb:en.devil_in_a_blue_dress \"Devil in a Blue Dress\") (name fb:m.04zg3n_ \"A Little Yellow Dog\") (name fb:en.always_outnumbered_always_outgunned \"Always Outnumbered, Always Outgunned\") (name fb:m.04zg3sn \"Black Betty\") (name fb:m.06ftsxs \"The wave\") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 \"Blonde Faith\"))) (type fb:book.book)\nWhat is Africa's largest country?\tSouth Africa\t0.918\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa \"South Africa\") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire \"C��te d���Ivoire\") (name fb:en.kenya Kenya) (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde \"Cape Verde\") (name fb:en.democratic_republic_of_the_congo \"Democratic Republic of the Congo\") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country)\nWhat is Africa's largest country?\tC��te d���Ivoire\t0.918\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa \"South Africa\") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire \"C��te d���Ivoire\") (name fb:en.kenya Kenya) (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde \"Cape Verde\") (name fb:en.democratic_republic_of_the_congo \"Democratic Republic of the Congo\") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country)\nWhat is Africa's largest country?\tSierra Leone\t0.918\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa \"South Africa\") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire \"C��te d���Ivoire\") (name fb:en.kenya Kenya) (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde \"Cape Verde\") (name fb:en.democratic_republic_of_the_congo \"Democratic Republic of the Congo\") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country)\nWhat is Africa's largest country?\tCape Verde\t0.918\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa \"South Africa\") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire \"C��te d���Ivoire\") (name fb:en.kenya Kenya) (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde \"Cape Verde\") (name fb:en.democratic_republic_of_the_congo \"Democratic Republic of the Congo\") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country)\nWhat is Africa's largest country?\tDemocratic Republic of the Congo\t0.918\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa \"South Africa\") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire \"C��te d���Ivoire\") (name fb:en.kenya Kenya) (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde \"Cape Verde\") (name fb:en.democratic_republic_of_the_congo \"Democratic Republic of the Congo\") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country)\nWhat was the world record time set in the 2006 competition?\tJerk Out (Sexy Dub)\t-2.721\tformula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ \"Jerk Out (Sexy Dub)\") (name fb:m.0sk54wk \"Jerk Out (A Capella)\") (name fb:m.0nn31bp \"Jerk Out (a cappella)\") (name fb:m.0shh1f7 \"Jerk Out (Sexy Mix)\") (name fb:m.0sr2qps \"Jerk Out (Sexy Edit)\") (name fb:m.0sk5gd4 \"Jerk Out (Sexy Instrumental)\") (name fb:m.0slk71k \"Jerk Out (Sexy instrumental)\"))) (type fb:music.recording)\nWhat was the world record time set in the 2006 competition?\tJerk Out (A Capella)\t-2.721\tformula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ \"Jerk Out (Sexy Dub)\") (name fb:m.0sk54wk \"Jerk Out (A Capella)\") (name fb:m.0nn31bp \"Jerk Out (a cappella)\") (name fb:m.0shh1f7 \"Jerk Out (Sexy Mix)\") (name fb:m.0sr2qps \"Jerk Out (Sexy Edit)\") (name fb:m.0sk5gd4 \"Jerk Out (Sexy Instrumental)\") (name fb:m.0slk71k \"Jerk Out (Sexy instrumental)\"))) (type fb:music.recording)\nWhat was the world record time set in the 2006 competition?\tJerk Out (a cappella)\t-2.721\tformula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ \"Jerk Out (Sexy Dub)\") (name fb:m.0sk54wk \"Jerk Out (A Capella)\") (name fb:m.0nn31bp \"Jerk Out (a cappella)\") (name fb:m.0shh1f7 \"Jerk Out (Sexy Mix)\") (name fb:m.0sr2qps \"Jerk Out (Sexy Edit)\") (name fb:m.0sk5gd4 \"Jerk Out (Sexy Instrumental)\") (name fb:m.0slk71k \"Jerk Out (Sexy instrumental)\"))) (type fb:music.recording)\nWhat was the world record time set in the 2006 competition?\tJerk Out (Sexy Mix)\t-2.721\tformula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ \"Jerk Out (Sexy Dub)\") (name fb:m.0sk54wk \"Jerk Out (A Capella)\") (name fb:m.0nn31bp \"Jerk Out (a cappella)\") (name fb:m.0shh1f7 \"Jerk Out (Sexy Mix)\") (name fb:m.0sr2qps \"Jerk Out (Sexy Edit)\") (name fb:m.0sk5gd4 \"Jerk Out (Sexy Instrumental)\") (name fb:m.0slk71k \"Jerk Out (Sexy instrumental)\"))) (type fb:music.recording)\nWhat was the world record time set in the 2006 competition?\tJerk Out (Sexy Edit)\t-2.721\tformula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ \"Jerk Out (Sexy Dub)\") (name fb:m.0sk54wk \"Jerk Out (A Capella)\") (name fb:m.0nn31bp \"Jerk Out (a cappella)\") (name fb:m.0shh1f7 \"Jerk Out (Sexy Mix)\") (name fb:m.0sr2qps \"Jerk Out (Sexy Edit)\") (name fb:m.0sk5gd4 \"Jerk Out (Sexy Instrumental)\") (name fb:m.0slk71k \"Jerk Out (Sexy instrumental)\"))) (type fb:music.recording)\nWhat was the world record time set in the 2006 competition?\tJerk Out (Sexy Instrumental)\t-2.721\tformula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ \"Jerk Out (Sexy Dub)\") (name fb:m.0sk54wk \"Jerk Out (A Capella)\") (name fb:m.0nn31bp \"Jerk Out (a cappella)\") (name fb:m.0shh1f7 \"Jerk Out (Sexy Mix)\") (name fb:m.0sr2qps \"Jerk Out (Sexy Edit)\") (name fb:m.0sk5gd4 \"Jerk Out (Sexy Instrumental)\") (name fb:m.0slk71k \"Jerk Out (Sexy instrumental)\"))) (type fb:music.recording)\nWhat was the world record time set in the 2006 competition?\tJerk Out (Sexy instrumental)\t-2.721\tformula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ \"Jerk Out (Sexy Dub)\") (name fb:m.0sk54wk \"Jerk Out (A Capella)\") (name fb:m.0nn31bp \"Jerk Out (a cappella)\") (name fb:m.0shh1f7 \"Jerk Out (Sexy Mix)\") (name fb:m.0sr2qps \"Jerk Out (Sexy Edit)\") (name fb:m.0sk5gd4 \"Jerk Out (Sexy Instrumental)\") (name fb:m.0slk71k \"Jerk Out (Sexy instrumental)\"))) (type fb:music.recording)\nWhen was the Organization of Islamic Conference organized?\tVongola Family\t0.082\tformula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family \"Vongola Family\") (name fb:en.team_rocket_organization \"Team Rocket\") (name fb:m.0cmy5nf \"Bonanza Bros.\") (name fb:m.0l17jlp \"The Varia\") (name fb:en.the_girls_of_old_town \"The Girls of Old Town\"))) (type fb:fictional_universe.fictional_organization)\nWhen was the Organization of Islamic Conference organized?\tTeam Rocket\t0.082\tformula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family \"Vongola Family\") (name fb:en.team_rocket_organization \"Team Rocket\") (name fb:m.0cmy5nf \"Bonanza Bros.\") (name fb:m.0l17jlp \"The Varia\") (name fb:en.the_girls_of_old_town \"The Girls of Old Town\"))) (type fb:fictional_universe.fictional_organization)\nWhen was the Organization of Islamic Conference organized?\tBonanza Bros.\t0.082\tformula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family \"Vongola Family\") (name fb:en.team_rocket_organization \"Team Rocket\") (name fb:m.0cmy5nf \"Bonanza Bros.\") (name fb:m.0l17jlp \"The Varia\") (name fb:en.the_girls_of_old_town \"The Girls of Old Town\"))) (type fb:fictional_universe.fictional_organization)\nWhen was the Organization of Islamic Conference organized?\tThe Varia\t0.082\tformula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family \"Vongola Family\") (name fb:en.team_rocket_organization \"Team Rocket\") (name fb:m.0cmy5nf \"Bonanza Bros.\") (name fb:m.0l17jlp \"The Varia\") (name fb:en.the_girls_of_old_town \"The Girls of Old Town\"))) (type fb:fictional_universe.fictional_organization)\nWhen was the Organization of Islamic Conference organized?\tThe Girls of Old Town\t0.082\tformula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family \"Vongola Family\") (name fb:en.team_rocket_organization \"Team Rocket\") (name fb:m.0cmy5nf \"Bonanza Bros.\") (name fb:m.0l17jlp \"The Varia\") (name fb:en.the_girls_of_old_town \"The Girls of Old Town\"))) (type fb:fictional_universe.fictional_organization)\nHow old was Crosby when he died?\tHouse of Commons of the United Kingdom\t-0.877\tformula ((lambda x (fb:government.governmental_body.members (fb:government.government_position_held.district_represented (var x)))) fb:en.crosby)) (value (list (name fb:en.british_house_of_commons \"House of Commons of the United Kingdom\"))) (type fb:government.governmental_body)\nHow old was Joan of Arc when she died?\tRKO Pictures\t-0.506\tformula ((lambda x (fb:film.film_distributor.films_distributed (fb:film.film_film_distributor_relationship.film (var x)))) fb:en.joan_of_arc_1948)) (value (list (name fb:en.rko_pictures \"RKO Pictures\"))) (type fb:film.film_distributor)\nWhat company published Jasper Fforde first book?\tThe Fourth Bear\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tThe Fourth Bear (Nursery Crime (Audio))\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tLost in a Good Book\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tThe Big Over Easy\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tThe Eyre Affair\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tSomething Rotten (Thursday Next)\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tLost in a Good Book (Thursday Next)\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tThe Big Over Easy\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tThe Eyre Affair\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat company published Jasper Fforde first book?\tThe Eyre Affair\t-0.788\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhich college athletic teams are nicknamed the Cougars?\tBrigham Young University\t-10.156\tformula (and (fb:type.object.type fb:education.university) (fb:education.educational_institution.sports_teams fb:en.byu_cougars_football))) (value (list (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.university)\nWhen was it introduced into the U.S.?\tWSJ Film Index\t-0.517\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.the_us_versus_john_lennon)) (value (list (name fb:m.05v2mnn \"WSJ Film Index\") (name fb:en.ew_film_reviews \"EW Film Reviews\"))) (type fb:base.articleindices.resource_topic_index)\nWhen was it introduced into the U.S.?\tEW Film Reviews\t-0.517\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.the_us_versus_john_lennon)) (value (list (name fb:m.05v2mnn \"WSJ Film Index\") (name fb:en.ew_film_reviews \"EW Film Reviews\"))) (type fb:base.articleindices.resource_topic_index)\nHow many grants does the Fulbright Program award each year?\tJ. William Fulbright Prize for International Understanding\t-2.487\tformula (!fb:award.award_presenting_organization.award_categories_presented fb:en.fulbright_program)) (value (list (name fb:m.0j2m65g \"J. William Fulbright Prize for International Understanding\") (name fb:en.fulbright_award \"Fulbright Award\"))) (type fb:award.award_category)\nHow many grants does the Fulbright Program award each year?\tFulbright Award\t-2.487\tformula (!fb:award.award_presenting_organization.award_categories_presented fb:en.fulbright_program)) (value (list (name fb:m.0j2m65g \"J. William Fulbright Prize for International Understanding\") (name fb:en.fulbright_award \"Fulbright Award\"))) (type fb:award.award_category)\nWhen is Jennifer Lopez's birthday?\tEntertainment Weekly annotation index\t-1.541\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jennier_lopez)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhen is Jennifer Lopez's birthday?\tWSJ Speakeasy Index\t-1.541\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jennier_lopez)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhen is Jennifer Lopez's birthday?\tBlissful Master Index\t-1.541\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jennier_lopez)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhen is Jennifer Lopez's birthday?\tBlissful Celebrities\t-1.541\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jennier_lopez)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nHow many Wal-Mart outlets are there in India?\tCyclone Laila\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\tCyclone Nargis\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\tCyclone Nisha\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\tCyclone Sidr\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\tCyclone Yemyin\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\tCyclone Jal\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\t1970 Bhola cyclone\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\tCyclone Onil\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\tCyclone Rashmi\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nHow many Wal-Mart outlets are there in India?\tTyphoon Gay\t-4.208\tformula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 \"Cyclone Laila\") (name fb:en.cyclone_nargis \"Cyclone Nargis\") (name fb:en.cyclone_nisha \"Cyclone Nisha\") (name fb:en.cyclone_sidr \"Cyclone Sidr\") (name fb:en.cyclone_03b \"Cyclone Yemyin\") (name fb:m.0drwnsg \"Cyclone Jal\") (name fb:en.1970_bhola_cyclone \"1970 Bhola cyclone\") (name fb:m.0c40m49 \"Cyclone Onil\") (name fb:m.0dsdtbr \"Cyclone Rashmi\") (name fb:en.typhoon_gay \"Typhoon Gay\"))) (type fb:meteorology.tropical_cyclone)\nWhat year did South Dakota become a state?\tWind Cave National Park\t-1.045\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park \"Wind Cave National Park\") (name fb:en.mount_rushmore \"Mount Rushmore National Memorial\") (name fb:en.jewel_cave_national_monument \"Jewel Cave National Monument\") (name fb:en.missouri_national_recreational_river \"Missouri National Recreational River\") (name fb:en.minuteman_missile_national_historic_site \"Minuteman Missile National Historic Site\") (name fb:en.badlands_national_park \"Badlands National Park\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did South Dakota become a state?\tMount Rushmore National Memorial\t-1.045\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park \"Wind Cave National Park\") (name fb:en.mount_rushmore \"Mount Rushmore National Memorial\") (name fb:en.jewel_cave_national_monument \"Jewel Cave National Monument\") (name fb:en.missouri_national_recreational_river \"Missouri National Recreational River\") (name fb:en.minuteman_missile_national_historic_site \"Minuteman Missile National Historic Site\") (name fb:en.badlands_national_park \"Badlands National Park\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did South Dakota become a state?\tJewel Cave National Monument\t-1.045\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park \"Wind Cave National Park\") (name fb:en.mount_rushmore \"Mount Rushmore National Memorial\") (name fb:en.jewel_cave_national_monument \"Jewel Cave National Monument\") (name fb:en.missouri_national_recreational_river \"Missouri National Recreational River\") (name fb:en.minuteman_missile_national_historic_site \"Minuteman Missile National Historic Site\") (name fb:en.badlands_national_park \"Badlands National Park\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did South Dakota become a state?\tMissouri National Recreational River\t-1.045\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park \"Wind Cave National Park\") (name fb:en.mount_rushmore \"Mount Rushmore National Memorial\") (name fb:en.jewel_cave_national_monument \"Jewel Cave National Monument\") (name fb:en.missouri_national_recreational_river \"Missouri National Recreational River\") (name fb:en.minuteman_missile_national_historic_site \"Minuteman Missile National Historic Site\") (name fb:en.badlands_national_park \"Badlands National Park\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did South Dakota become a state?\tMinuteman Missile National Historic Site\t-1.045\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park \"Wind Cave National Park\") (name fb:en.mount_rushmore \"Mount Rushmore National Memorial\") (name fb:en.jewel_cave_national_monument \"Jewel Cave National Monument\") (name fb:en.missouri_national_recreational_river \"Missouri National Recreational River\") (name fb:en.minuteman_missile_national_historic_site \"Minuteman Missile National Historic Site\") (name fb:en.badlands_national_park \"Badlands National Park\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did South Dakota become a state?\tBadlands National Park\t-1.045\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park \"Wind Cave National Park\") (name fb:en.mount_rushmore \"Mount Rushmore National Memorial\") (name fb:en.jewel_cave_national_monument \"Jewel Cave National Monument\") (name fb:en.missouri_national_recreational_river \"Missouri National Recreational River\") (name fb:en.minuteman_missile_national_historic_site \"Minuteman Missile National Historic Site\") (name fb:en.badlands_national_park \"Badlands National Park\"))) (type fb:base.usnationalparks.us_national_park)\nA normal human pregnancy lasts how many months?\tEntertainment Weekly annotation index\t-2.342\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pregnancy)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nA normal human pregnancy lasts how many months?\tWSJ Speakeasy Index\t-2.342\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pregnancy)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nWhat is neuropathy?\tNeurological disorder\t-5.854\tformula (and (fb:type.object.type fb:common.topic) (fb:people.cause_of_death.includes_causes_of_death fb:en.neuropathy))) (value (list (name fb:en.neurological_disease \"Neurological disorder\"))) (type fb:people.cause_of_death)\nWhat movies did Judi Dench play in?\tInto the Arms of Strangers: Stories of the Kindertransport\t0.706\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.personal_film_appearance.film (!fb:film.person_or_entity_appearing_in_film.films (var x)))) fb:en.judi_dench)))) (value (list (name fb:m.0bd1d4 \"Into the Arms of Strangers: Stories of the Kindertransport\") (name fb:en.the_abbey \"The Abbey\") (name fb:en.bond_girls_are_forever \"Bond Girls Are Forever\") (name fb:m.0crvjrb \"Bugs!: A Rainforest Adventure\"))) (type fb:film.film)\nWhat movies did Judi Dench play in?\tThe Abbey\t0.706\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.personal_film_appearance.film (!fb:film.person_or_entity_appearing_in_film.films (var x)))) fb:en.judi_dench)))) (value (list (name fb:m.0bd1d4 \"Into the Arms of Strangers: Stories of the Kindertransport\") (name fb:en.the_abbey \"The Abbey\") (name fb:en.bond_girls_are_forever \"Bond Girls Are Forever\") (name fb:m.0crvjrb \"Bugs!: A Rainforest Adventure\"))) (type fb:film.film)\nWhat movies did Judi Dench play in?\tBond Girls Are Forever\t0.706\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.personal_film_appearance.film (!fb:film.person_or_entity_appearing_in_film.films (var x)))) fb:en.judi_dench)))) (value (list (name fb:m.0bd1d4 \"Into the Arms of Strangers: Stories of the Kindertransport\") (name fb:en.the_abbey \"The Abbey\") (name fb:en.bond_girls_are_forever \"Bond Girls Are Forever\") (name fb:m.0crvjrb \"Bugs!: A Rainforest Adventure\"))) (type fb:film.film)\nWhat movies did Judi Dench play in?\tBugs!: A Rainforest Adventure\t0.706\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.personal_film_appearance.film (!fb:film.person_or_entity_appearing_in_film.films (var x)))) fb:en.judi_dench)))) (value (list (name fb:m.0bd1d4 \"Into the Arms of Strangers: Stories of the Kindertransport\") (name fb:en.the_abbey \"The Abbey\") (name fb:en.bond_girls_are_forever \"Bond Girls Are Forever\") (name fb:m.0crvjrb \"Bugs!: A Rainforest Adventure\"))) (type fb:film.film)\nWhat is the oldest sports trophy?\tBlissful Master Index\t-2.965\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.sport))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat is the oldest sports trophy?\tBlissful Celebrities\t-2.965\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.sport))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat was this person's relationship to the Prophet Mohammad?\tPaul the Apostle\t0.809\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:people.person) (fb:people.person.profession fb:en.prophet)))) (value (list (name fb:en.muhammad Muhammad) (name fb:en.paul_of_tarsus \"Paul the Apostle\") (name fb:en.jesus \"Jesus Christ\") (name fb:en.david David) (name fb:en.moses Moses) (name fb:en.jacob Jacob) (name fb:en.tb_joshua \"T. B. Joshua\") (name fb:en.samuel Samuel) (name fb:en.joel Joel) (name fb:en.nuh Noah))) (type fb:people.person)\nWhat was this person's relationship to the Prophet Mohammad?\tJesus Christ\t0.809\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:people.person) (fb:people.person.profession fb:en.prophet)))) (value (list (name fb:en.muhammad Muhammad) (name fb:en.paul_of_tarsus \"Paul the Apostle\") (name fb:en.jesus \"Jesus Christ\") (name fb:en.david David) (name fb:en.moses Moses) (name fb:en.jacob Jacob) (name fb:en.tb_joshua \"T. B. Joshua\") (name fb:en.samuel Samuel) (name fb:en.joel Joel) (name fb:en.nuh Noah))) (type fb:people.person)\nWhat was this person's relationship to the Prophet Mohammad?\tT. B. Joshua\t0.809\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:people.person) (fb:people.person.profession fb:en.prophet)))) (value (list (name fb:en.muhammad Muhammad) (name fb:en.paul_of_tarsus \"Paul the Apostle\") (name fb:en.jesus \"Jesus Christ\") (name fb:en.david David) (name fb:en.moses Moses) (name fb:en.jacob Jacob) (name fb:en.tb_joshua \"T. B. Joshua\") (name fb:en.samuel Samuel) (name fb:en.joel Joel) (name fb:en.nuh Noah))) (type fb:people.person)\nWhat are John C. Calhoun and Henry Clay known as?\tJohn Calhoun\t-3.324\tformula (!fb:common.topic.alias fb:en.john_c_calhoun)) (value (list (string \"John Calhoun\"))) (type fb:type.text)\nWhen did John F. Kennedy get elected as President?\tLyndon B. Johnson\t-4.091\tformula (!fb:government.us_president.vice_president fb:en.john_f_kennedy)) (value (list (name fb:en.lyndon_b_johnson \"Lyndon B. Johnson\"))) (type fb:government.us_vice_president)\nHow many official languages does Switzerland have?\tGerman Language\t1.671\tformula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.italian \"Italian Language\") (name fb:en.french \"French Language\") (name fb:en.romansh \"Romansh language\"))) (type fb:language.human_language)\nHow many official languages does Switzerland have?\tItalian Language\t1.671\tformula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.italian \"Italian Language\") (name fb:en.french \"French Language\") (name fb:en.romansh \"Romansh language\"))) (type fb:language.human_language)\nHow many official languages does Switzerland have?\tFrench Language\t1.671\tformula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.italian \"Italian Language\") (name fb:en.french \"French Language\") (name fb:en.romansh \"Romansh language\"))) (type fb:language.human_language)\nHow many official languages does Switzerland have?\tRomansh language\t1.671\tformula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.italian \"Italian Language\") (name fb:en.french \"French Language\") (name fb:en.romansh \"Romansh language\"))) (type fb:language.human_language)\nWhere is the Salton Sea?\tWhitewater River\t-2.492\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.lake.inflow fb:en.salton_sea))) (value (list (name fb:m.0ctxw6 \"Whitewater River\") (name fb:en.alamo_river \"Alamo River\") (name fb:m.083n6w \"New River\"))) (type fb:geography.body_of_water)\nWhere is the Salton Sea?\tAlamo River\t-2.492\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.lake.inflow fb:en.salton_sea))) (value (list (name fb:m.0ctxw6 \"Whitewater River\") (name fb:en.alamo_river \"Alamo River\") (name fb:m.083n6w \"New River\"))) (type fb:geography.body_of_water)\nWhere is the Salton Sea?\tNew River\t-2.492\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.lake.inflow fb:en.salton_sea))) (value (list (name fb:m.0ctxw6 \"Whitewater River\") (name fb:en.alamo_river \"Alamo River\") (name fb:m.083n6w \"New River\"))) (type fb:geography.body_of_water)\nWhat year did Alaska become a state?\tKobuk Valley National Park\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tGates of the Arctic National Park and Preserve\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tLake Clark National Park and Preserve\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tKatmai National Park and Preserve\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tDenali National Park and Preserve\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tKlondike Gold Rush National Historical Park\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tGlacier Bay National Park and Preserve\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tWrangell���St. Elias National Park and Preserve\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tSitka National Historical Park\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWhat year did Alaska become a state?\tBering Land Bridge National Preserve\t-0.963\tformula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park \"Kobuk Valley National Park\") (name fb:en.gates_of_the_arctic_national_park_and_preserve \"Gates of the Arctic National Park and Preserve\") (name fb:en.lake_clark_national_park_and_preserve \"Lake Clark National Park and Preserve\") (name fb:en.katmai_national_park_and_preserve \"Katmai National Park and Preserve\") (name fb:en.denali_national_park_and_preserve \"Denali National Park and Preserve\") (name fb:en.klondike_gold_rush_national_historical_park \"Klondike Gold Rush National Historical Park\") (name fb:en.glacier_bay_national_park_and_preserve \"Glacier Bay National Park and Preserve\") (name fb:en.wrangell_st_elias_national_park_and_preserve \"Wrangell���St. Elias National Park and Preserve\") (name fb:en.sitka_national_historical_park \"Sitka National Historical Park\") (name fb:en.bering_land_bridge_national_preserve \"Bering Land Bridge National Preserve\"))) (type fb:base.usnationalparks.us_national_park)\nWho was the sole survivor of Sago Mine disaster?\tTiki Twirl\t-4.663\tformula (and (fb:type.object.type fb:common.topic) (fb:amusement_parks.ride.theme fb:m.0nmsl))) (value (list (name fb:en.survivor_the_ride \"Tiki Twirl\"))) (type fb:amusement_parks.ride)\nWhat is the full name of conductor Seiji?\tSteven Landau\t-3.095\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:theater.theater_production_staff.theater_productions (fb:theater.theater_production_staff_gig.production_role (var x)))) fb:en.principal_conductor))) (value (list (name fb:m.0v328fd \"Steven Landau\") (name fb:en.dave_pepin \"Dave Pepin\"))) (type fb:theater.theater_production_staff)\nWhat is the full name of conductor Seiji?\tDave Pepin\t-3.095\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:theater.theater_production_staff.theater_productions (fb:theater.theater_production_staff_gig.production_role (var x)))) fb:en.principal_conductor))) (value (list (name fb:m.0v328fd \"Steven Landau\") (name fb:en.dave_pepin \"Dave Pepin\"))) (type fb:theater.theater_production_staff)\nWhat is leukemia?\tChronic myelogenous leukemia\t-4.211\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia \"Chronic myelogenous leukemia\") (name fb:en.acute_leukemia \"Acute Leukemia\") (name fb:en.acute_myeloid_leukemia \"Acute myeloid leukemia\") (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\") (name fb:en.pediatric_acute_lymphoblastic_leukemia \"Pediatric Acute lymphoblastic leukemia\") (name fb:en.acute_lymphoblastic_leukemia \"Acute lymphoblastic leukemia\") (name fb:en.leukemia_of_unspecified_cell_type_subacute \"Leukemia of unspecified cell type, subacute\") (name fb:en.chronic_leukemia \"Chronic Leukemia\"))) (type fb:medicine.disease)\nWhat is leukemia?\tAcute Leukemia\t-4.211\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia \"Chronic myelogenous leukemia\") (name fb:en.acute_leukemia \"Acute Leukemia\") (name fb:en.acute_myeloid_leukemia \"Acute myeloid leukemia\") (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\") (name fb:en.pediatric_acute_lymphoblastic_leukemia \"Pediatric Acute lymphoblastic leukemia\") (name fb:en.acute_lymphoblastic_leukemia \"Acute lymphoblastic leukemia\") (name fb:en.leukemia_of_unspecified_cell_type_subacute \"Leukemia of unspecified cell type, subacute\") (name fb:en.chronic_leukemia \"Chronic Leukemia\"))) (type fb:medicine.disease)\nWhat is leukemia?\tAcute myeloid leukemia\t-4.211\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia \"Chronic myelogenous leukemia\") (name fb:en.acute_leukemia \"Acute Leukemia\") (name fb:en.acute_myeloid_leukemia \"Acute myeloid leukemia\") (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\") (name fb:en.pediatric_acute_lymphoblastic_leukemia \"Pediatric Acute lymphoblastic leukemia\") (name fb:en.acute_lymphoblastic_leukemia \"Acute lymphoblastic leukemia\") (name fb:en.leukemia_of_unspecified_cell_type_subacute \"Leukemia of unspecified cell type, subacute\") (name fb:en.chronic_leukemia \"Chronic Leukemia\"))) (type fb:medicine.disease)\nWhat is leukemia?\tB-cell chronic lymphocytic leukemia\t-4.211\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia \"Chronic myelogenous leukemia\") (name fb:en.acute_leukemia \"Acute Leukemia\") (name fb:en.acute_myeloid_leukemia \"Acute myeloid leukemia\") (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\") (name fb:en.pediatric_acute_lymphoblastic_leukemia \"Pediatric Acute lymphoblastic leukemia\") (name fb:en.acute_lymphoblastic_leukemia \"Acute lymphoblastic leukemia\") (name fb:en.leukemia_of_unspecified_cell_type_subacute \"Leukemia of unspecified cell type, subacute\") (name fb:en.chronic_leukemia \"Chronic Leukemia\"))) (type fb:medicine.disease)\nWhat is leukemia?\tPediatric Acute lymphoblastic leukemia\t-4.211\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia \"Chronic myelogenous leukemia\") (name fb:en.acute_leukemia \"Acute Leukemia\") (name fb:en.acute_myeloid_leukemia \"Acute myeloid leukemia\") (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\") (name fb:en.pediatric_acute_lymphoblastic_leukemia \"Pediatric Acute lymphoblastic leukemia\") (name fb:en.acute_lymphoblastic_leukemia \"Acute lymphoblastic leukemia\") (name fb:en.leukemia_of_unspecified_cell_type_subacute \"Leukemia of unspecified cell type, subacute\") (name fb:en.chronic_leukemia \"Chronic Leukemia\"))) (type fb:medicine.disease)\nWhat is leukemia?\tAcute lymphoblastic leukemia\t-4.211\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia \"Chronic myelogenous leukemia\") (name fb:en.acute_leukemia \"Acute Leukemia\") (name fb:en.acute_myeloid_leukemia \"Acute myeloid leukemia\") (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\") (name fb:en.pediatric_acute_lymphoblastic_leukemia \"Pediatric Acute lymphoblastic leukemia\") (name fb:en.acute_lymphoblastic_leukemia \"Acute lymphoblastic leukemia\") (name fb:en.leukemia_of_unspecified_cell_type_subacute \"Leukemia of unspecified cell type, subacute\") (name fb:en.chronic_leukemia \"Chronic Leukemia\"))) (type fb:medicine.disease)\nWhat is leukemia?\tLeukemia of unspecified cell type, subacute\t-4.211\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia \"Chronic myelogenous leukemia\") (name fb:en.acute_leukemia \"Acute Leukemia\") (name fb:en.acute_myeloid_leukemia \"Acute myeloid leukemia\") (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\") (name fb:en.pediatric_acute_lymphoblastic_leukemia \"Pediatric Acute lymphoblastic leukemia\") (name fb:en.acute_lymphoblastic_leukemia \"Acute lymphoblastic leukemia\") (name fb:en.leukemia_of_unspecified_cell_type_subacute \"Leukemia of unspecified cell type, subacute\") (name fb:en.chronic_leukemia \"Chronic Leukemia\"))) (type fb:medicine.disease)\nWhat is leukemia?\tChronic Leukemia\t-4.211\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia \"Chronic myelogenous leukemia\") (name fb:en.acute_leukemia \"Acute Leukemia\") (name fb:en.acute_myeloid_leukemia \"Acute myeloid leukemia\") (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\") (name fb:en.pediatric_acute_lymphoblastic_leukemia \"Pediatric Acute lymphoblastic leukemia\") (name fb:en.acute_lymphoblastic_leukemia \"Acute lymphoblastic leukemia\") (name fb:en.leukemia_of_unspecified_cell_type_subacute \"Leukemia of unspecified cell type, subacute\") (name fb:en.chronic_leukemia \"Chronic Leukemia\"))) (type fb:medicine.disease)\nWho has employed Steffen?\tOdd Iversen\t-7.621\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.children fb:en.steffen_iversen))) (value (list (name fb:en.odd_iversen \"Odd Iversen\"))) (type fb:people.person)\nWhat is titanium?\tTitanium dioxide\t-5.386\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.titanium_dioxide))) (value (list (name fb:en.titanium_dioxide \"Titanium dioxide\"))) (type fb:medicine.drug_ingredient)\nWhat is the annual salary of the Boston Pops conductor?\tJohn Williams\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat is the annual salary of the Boston Pops conductor?\tArthur Fiedler\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat is the annual salary of the Boston Pops conductor?\tKeith Lockhart\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat is the annual salary of the Boston Pops conductor?\tAdolf Neuendorff\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat is the annual salary of the Boston Pops conductor?\tTimothee Adamowski\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat is the annual salary of the Boston Pops conductor?\tAlfredo Casella\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat is the annual salary of the Boston Pops conductor?\tFranz Kneisel\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat is the annual salary of the Boston Pops conductor?\tJosef Pasternack\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat is the annual salary of the Boston Pops conductor?\tAgide Jacchia\t-0.608\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhat actor first portrayed James Bond?\tDr. No\t-3.672\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no \"Dr. No\") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 \"Quantum of Solace\") (name fb:en.tomorrow_never_dies \"Tomorrow Never Dies\") (name fb:en.the_world_is_not_enough \"The World Is Not Enough\") (name fb:en.casino_royale \"Casino Royale\") (name fb:en.die_another_day \"Die Another Day\") (name fb:en.a_view_to_a_kill \"A View to a Kill\") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 \"For Your Eyes Only\"))) (type fb:film.film)\nWhat actor first portrayed James Bond?\tQuantum of Solace\t-3.672\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no \"Dr. No\") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 \"Quantum of Solace\") (name fb:en.tomorrow_never_dies \"Tomorrow Never Dies\") (name fb:en.the_world_is_not_enough \"The World Is Not Enough\") (name fb:en.casino_royale \"Casino Royale\") (name fb:en.die_another_day \"Die Another Day\") (name fb:en.a_view_to_a_kill \"A View to a Kill\") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 \"For Your Eyes Only\"))) (type fb:film.film)\nWhat actor first portrayed James Bond?\tTomorrow Never Dies\t-3.672\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no \"Dr. No\") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 \"Quantum of Solace\") (name fb:en.tomorrow_never_dies \"Tomorrow Never Dies\") (name fb:en.the_world_is_not_enough \"The World Is Not Enough\") (name fb:en.casino_royale \"Casino Royale\") (name fb:en.die_another_day \"Die Another Day\") (name fb:en.a_view_to_a_kill \"A View to a Kill\") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 \"For Your Eyes Only\"))) (type fb:film.film)\nWhat actor first portrayed James Bond?\tThe World Is Not Enough\t-3.672\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no \"Dr. No\") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 \"Quantum of Solace\") (name fb:en.tomorrow_never_dies \"Tomorrow Never Dies\") (name fb:en.the_world_is_not_enough \"The World Is Not Enough\") (name fb:en.casino_royale \"Casino Royale\") (name fb:en.die_another_day \"Die Another Day\") (name fb:en.a_view_to_a_kill \"A View to a Kill\") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 \"For Your Eyes Only\"))) (type fb:film.film)\nWhat actor first portrayed James Bond?\tCasino Royale\t-3.672\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no \"Dr. No\") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 \"Quantum of Solace\") (name fb:en.tomorrow_never_dies \"Tomorrow Never Dies\") (name fb:en.the_world_is_not_enough \"The World Is Not Enough\") (name fb:en.casino_royale \"Casino Royale\") (name fb:en.die_another_day \"Die Another Day\") (name fb:en.a_view_to_a_kill \"A View to a Kill\") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 \"For Your Eyes Only\"))) (type fb:film.film)\nWhat actor first portrayed James Bond?\tDie Another Day\t-3.672\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no \"Dr. No\") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 \"Quantum of Solace\") (name fb:en.tomorrow_never_dies \"Tomorrow Never Dies\") (name fb:en.the_world_is_not_enough \"The World Is Not Enough\") (name fb:en.casino_royale \"Casino Royale\") (name fb:en.die_another_day \"Die Another Day\") (name fb:en.a_view_to_a_kill \"A View to a Kill\") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 \"For Your Eyes Only\"))) (type fb:film.film)\nWhat actor first portrayed James Bond?\tA View to a Kill\t-3.672\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no \"Dr. No\") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 \"Quantum of Solace\") (name fb:en.tomorrow_never_dies \"Tomorrow Never Dies\") (name fb:en.the_world_is_not_enough \"The World Is Not Enough\") (name fb:en.casino_royale \"Casino Royale\") (name fb:en.die_another_day \"Die Another Day\") (name fb:en.a_view_to_a_kill \"A View to a Kill\") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 \"For Your Eyes Only\"))) (type fb:film.film)\nWhat actor first portrayed James Bond?\tFor Your Eyes Only\t-3.672\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no \"Dr. No\") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 \"Quantum of Solace\") (name fb:en.tomorrow_never_dies \"Tomorrow Never Dies\") (name fb:en.the_world_is_not_enough \"The World Is Not Enough\") (name fb:en.casino_royale \"Casino Royale\") (name fb:en.die_another_day \"Die Another Day\") (name fb:en.a_view_to_a_kill \"A View to a Kill\") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 \"For Your Eyes Only\"))) (type fb:film.film)\nWhat was Thailand's original name?\tThai Bangkaew Dog\t1.144\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.place_of_origin fb:en.thailand))) (value (list (name fb:en.thai_bangkaew_dog \"Thai Bangkaew Dog\") (name fb:en.siamese Siamese) (name fb:en.burmese Burmese) (name fb:en.korat Korat) (name fb:m.02zfy2 Bombay) (name fb:en.thai_ridgeback \"Thai Ridgeback\") (name fb:en.havana_brown \"Havana Brown\") (name fb:en.oriental_shorthair \"Oriental Shorthair\"))) (type fb:biology.animal_breed)\nWhat was Thailand's original name?\tThai Ridgeback\t1.144\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.place_of_origin fb:en.thailand))) (value (list (name fb:en.thai_bangkaew_dog \"Thai Bangkaew Dog\") (name fb:en.siamese Siamese) (name fb:en.burmese Burmese) (name fb:en.korat Korat) (name fb:m.02zfy2 Bombay) (name fb:en.thai_ridgeback \"Thai Ridgeback\") (name fb:en.havana_brown \"Havana Brown\") (name fb:en.oriental_shorthair \"Oriental Shorthair\"))) (type fb:biology.animal_breed)\nWhat was Thailand's original name?\tHavana Brown\t1.144\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.place_of_origin fb:en.thailand))) (value (list (name fb:en.thai_bangkaew_dog \"Thai Bangkaew Dog\") (name fb:en.siamese Siamese) (name fb:en.burmese Burmese) (name fb:en.korat Korat) (name fb:m.02zfy2 Bombay) (name fb:en.thai_ridgeback \"Thai Ridgeback\") (name fb:en.havana_brown \"Havana Brown\") (name fb:en.oriental_shorthair \"Oriental Shorthair\"))) (type fb:biology.animal_breed)\nWhat was Thailand's original name?\tOriental Shorthair\t1.144\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.place_of_origin fb:en.thailand))) (value (list (name fb:en.thai_bangkaew_dog \"Thai Bangkaew Dog\") (name fb:en.siamese Siamese) (name fb:en.burmese Burmese) (name fb:en.korat Korat) (name fb:m.02zfy2 Bombay) (name fb:en.thai_ridgeback \"Thai Ridgeback\") (name fb:en.havana_brown \"Havana Brown\") (name fb:en.oriental_shorthair \"Oriental Shorthair\"))) (type fb:biology.animal_breed)\nWhen did the Dow first reach 2000?\t2000 AD Prog 1\t-7.362\tformula (!fb:comic_books.comic_book_series.first_issue fb:en.2000_ad)) (value (list (name fb:en.2000_ad_prog_1 \"2000 AD Prog 1\"))) (type fb:comic_books.comic_book_issue)\nHow big is a keg?\tEntertainment Weekly annotation index\t-2.261\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.keg)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nWhere is Santa Lucia?\tSierra Nevada\t-5.345\tformula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.lucia_zarate))) (value (list (name fb:en.sierra_nevada \"Sierra Nevada\"))) (type fb:location.location)\nIn what spacecraft did U.S. astronaut Alan Shepard make his historic\tMercury-Redstone 3\t-3.397\tformula (and (fb:type.object.type fb:common.topic) (!fb:spaceflight.astronaut.missions fb:en.alan_shepard))) (value (list (name fb:en.mercury-redstone_3 \"Mercury-Redstone 3\") (name fb:en.apollo_14 \"Apollo 14\"))) (type fb:spaceflight.space_mission)\nIn what spacecraft did U.S. astronaut Alan Shepard make his historic\tApollo 14\t-3.397\tformula (and (fb:type.object.type fb:common.topic) (!fb:spaceflight.astronaut.missions fb:en.alan_shepard))) (value (list (name fb:en.mercury-redstone_3 \"Mercury-Redstone 3\") (name fb:en.apollo_14 \"Apollo 14\"))) (type fb:spaceflight.space_mission)\nHow long was Pope Pius XII's pontificate?\tMyocardial infarction\t-3.21\tformula (fb:people.cause_of_death.people fb:en.pope_pius_xii)) (value (list (name fb:en.heart_failure \"Myocardial infarction\"))) (type fb:people.cause_of_death)\nWhat is his primary career?\tWhat Is...\t-0.945\tformula (!fb:music.album.primary_release fb:en.what_is)) (value (list (name fb:m.039bs74 \"What Is...\"))) (type fb:music.release)\nHow many competitors did the winner of the Miss Universe 2000 contest have?\tSonija Kwok\t1.192\tformula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok \"Sonija Kwok\") (name fb:en.sonia_rolland \"Sonia Rolland\") (name fb:en.gilda_jovine \"Gilda Jovine\") (name fb:en.kulthida_yenprasert \"Kulthida Yenprasert\") (name fb:en.claudia_moreno \"Claudia Moreno\") (name fb:en.leticia_murray \"Leticia Murray\") (name fb:en.eunice_olsen \"Eunice Olsen\"))) (type fb:award.competitor)\nHow many competitors did the winner of the Miss Universe 2000 contest have?\tSonia Rolland\t1.192\tformula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok \"Sonija Kwok\") (name fb:en.sonia_rolland \"Sonia Rolland\") (name fb:en.gilda_jovine \"Gilda Jovine\") (name fb:en.kulthida_yenprasert \"Kulthida Yenprasert\") (name fb:en.claudia_moreno \"Claudia Moreno\") (name fb:en.leticia_murray \"Leticia Murray\") (name fb:en.eunice_olsen \"Eunice Olsen\"))) (type fb:award.competitor)\nHow many competitors did the winner of the Miss Universe 2000 contest have?\tGilda Jovine\t1.192\tformula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok \"Sonija Kwok\") (name fb:en.sonia_rolland \"Sonia Rolland\") (name fb:en.gilda_jovine \"Gilda Jovine\") (name fb:en.kulthida_yenprasert \"Kulthida Yenprasert\") (name fb:en.claudia_moreno \"Claudia Moreno\") (name fb:en.leticia_murray \"Leticia Murray\") (name fb:en.eunice_olsen \"Eunice Olsen\"))) (type fb:award.competitor)\nHow many competitors did the winner of the Miss Universe 2000 contest have?\tKulthida Yenprasert\t1.192\tformula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok \"Sonija Kwok\") (name fb:en.sonia_rolland \"Sonia Rolland\") (name fb:en.gilda_jovine \"Gilda Jovine\") (name fb:en.kulthida_yenprasert \"Kulthida Yenprasert\") (name fb:en.claudia_moreno \"Claudia Moreno\") (name fb:en.leticia_murray \"Leticia Murray\") (name fb:en.eunice_olsen \"Eunice Olsen\"))) (type fb:award.competitor)\nHow many competitors did the winner of the Miss Universe 2000 contest have?\tClaudia Moreno\t1.192\tformula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok \"Sonija Kwok\") (name fb:en.sonia_rolland \"Sonia Rolland\") (name fb:en.gilda_jovine \"Gilda Jovine\") (name fb:en.kulthida_yenprasert \"Kulthida Yenprasert\") (name fb:en.claudia_moreno \"Claudia Moreno\") (name fb:en.leticia_murray \"Leticia Murray\") (name fb:en.eunice_olsen \"Eunice Olsen\"))) (type fb:award.competitor)\nHow many competitors did the winner of the Miss Universe 2000 contest have?\tLeticia Murray\t1.192\tformula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok \"Sonija Kwok\") (name fb:en.sonia_rolland \"Sonia Rolland\") (name fb:en.gilda_jovine \"Gilda Jovine\") (name fb:en.kulthida_yenprasert \"Kulthida Yenprasert\") (name fb:en.claudia_moreno \"Claudia Moreno\") (name fb:en.leticia_murray \"Leticia Murray\") (name fb:en.eunice_olsen \"Eunice Olsen\"))) (type fb:award.competitor)\nHow many competitors did the winner of the Miss Universe 2000 contest have?\tEunice Olsen\t1.192\tformula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok \"Sonija Kwok\") (name fb:en.sonia_rolland \"Sonia Rolland\") (name fb:en.gilda_jovine \"Gilda Jovine\") (name fb:en.kulthida_yenprasert \"Kulthida Yenprasert\") (name fb:en.claudia_moreno \"Claudia Moreno\") (name fb:en.leticia_murray \"Leticia Murray\") (name fb:en.eunice_olsen \"Eunice Olsen\"))) (type fb:award.competitor)\nWhat songs did Al Jolson Sing?\tCalifornia, Here I Come\t0.022\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.al_jolson)))) (value (list (name fb:en.california_here_i_come \"California, Here I Come\"))) (type fb:music.composition)\nWhen did the Johnstown flood occur?\tWinter, or The Flood\t-5.68\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.02vdms)) (value (list (name fb:en.winter_or_the_flood \"Winter, or The Flood\"))) (type fb:visual_art.artwork)\nWho was the British Foreign Secretary at the time of of Hong Kong's return to Chinese sovereignty?\tUnited States dollar\t-3.059\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:location.statistical_region.foreign_direct_investment_net_inflows (var x)))) fb:en.hong_kong))) (value (list (name fb:en.us \"United States dollar\"))) (type fb:finance.currency)\nHow old was the dam?\tDam Square in Amsterdam, with a View of the New Church\t-2.926\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.dam_square)) (value (list (name fb:m.05nl8g4 \"Dam Square in Amsterdam, with a View of the New Church\"))) (type fb:visual_art.artwork)\nWho was Abraham Lincoln?\tLewis Powell\t-4.726\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell \"Lewis Powell\") (name fb:en.samuel_arnold_1838 \"Samuel Arnold\") (name fb:en.david_herold \"David Herold\") (name fb:en.john_surratt \"John Surratt\") (name fb:en.michael_olaughlen \"Michael O'Laughlen\") (name fb:en.george_atzerodt \"George Atzerodt\"))) (type fb:people.person)\nWho was Abraham Lincoln?\tSamuel Arnold\t-4.726\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell \"Lewis Powell\") (name fb:en.samuel_arnold_1838 \"Samuel Arnold\") (name fb:en.david_herold \"David Herold\") (name fb:en.john_surratt \"John Surratt\") (name fb:en.michael_olaughlen \"Michael O'Laughlen\") (name fb:en.george_atzerodt \"George Atzerodt\"))) (type fb:people.person)\nWho was Abraham Lincoln?\tDavid Herold\t-4.726\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell \"Lewis Powell\") (name fb:en.samuel_arnold_1838 \"Samuel Arnold\") (name fb:en.david_herold \"David Herold\") (name fb:en.john_surratt \"John Surratt\") (name fb:en.michael_olaughlen \"Michael O'Laughlen\") (name fb:en.george_atzerodt \"George Atzerodt\"))) (type fb:people.person)\nWho was Abraham Lincoln?\tJohn Surratt\t-4.726\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell \"Lewis Powell\") (name fb:en.samuel_arnold_1838 \"Samuel Arnold\") (name fb:en.david_herold \"David Herold\") (name fb:en.john_surratt \"John Surratt\") (name fb:en.michael_olaughlen \"Michael O'Laughlen\") (name fb:en.george_atzerodt \"George Atzerodt\"))) (type fb:people.person)\nWho was Abraham Lincoln?\tMichael O'Laughlen\t-4.726\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell \"Lewis Powell\") (name fb:en.samuel_arnold_1838 \"Samuel Arnold\") (name fb:en.david_herold \"David Herold\") (name fb:en.john_surratt \"John Surratt\") (name fb:en.michael_olaughlen \"Michael O'Laughlen\") (name fb:en.george_atzerodt \"George Atzerodt\"))) (type fb:people.person)\nWho was Abraham Lincoln?\tGeorge Atzerodt\t-4.726\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell \"Lewis Powell\") (name fb:en.samuel_arnold_1838 \"Samuel Arnold\") (name fb:en.david_herold \"David Herold\") (name fb:en.john_surratt \"John Surratt\") (name fb:en.michael_olaughlen \"Michael O'Laughlen\") (name fb:en.george_atzerodt \"George Atzerodt\"))) (type fb:people.person)\nWhat is Dick Clark's date of birth?\tMount Vernon\t-0.46\tformula (and (fb:type.object.type fb:common.topic) (!fb:people.person.place_of_birth fb:en.dick_clark))) (value (list (name fb:en.mount_vernon_new_york \"Mount Vernon\"))) (type fb:location.location)\nWhat is the location of Lake Champlain?\tRichelieu River\t0.667\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.lake.outflow fb:en.lake_champlain))) (value (list (name fb:en.richelieu_river \"Richelieu River\"))) (type fb:geography.body_of_water)\nList female astronauts or cosmonauts.\tSubsequent Light\t-3.343\tformula (fb:music.release.track_list fb:m.0l5gdvx)) (value (list (name fb:m.034gshl \"Subsequent Light\"))) (type fb:music.release)\nWho was Virginia's first and most famous wine maker?\tTed Kennedy\t2.07\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy \"Ted Kennedy\") (name fb:m.0n88yfw \"Chris Dougherty\") (name fb:en.victoria_reggie_kennedy \"Victoria Reggie Kennedy\") (name fb:en.reema_khan \"Reema Khan\") (name fb:en.francis_dodson \"Francis Dodson\") (name fb:en.leeann_tweeden \"Leeann Tweeden\") (name fb:en.elizabeth_harroldson \"Elizabeth Harroldson\") (name fb:m.0j88p2v \"S. Tariq Shahab\"))) (type fb:people.person)\nWho was Virginia's first and most famous wine maker?\tChris Dougherty\t2.07\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy \"Ted Kennedy\") (name fb:m.0n88yfw \"Chris Dougherty\") (name fb:en.victoria_reggie_kennedy \"Victoria Reggie Kennedy\") (name fb:en.reema_khan \"Reema Khan\") (name fb:en.francis_dodson \"Francis Dodson\") (name fb:en.leeann_tweeden \"Leeann Tweeden\") (name fb:en.elizabeth_harroldson \"Elizabeth Harroldson\") (name fb:m.0j88p2v \"S. Tariq Shahab\"))) (type fb:people.person)\nWho was Virginia's first and most famous wine maker?\tVictoria Reggie Kennedy\t2.07\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy \"Ted Kennedy\") (name fb:m.0n88yfw \"Chris Dougherty\") (name fb:en.victoria_reggie_kennedy \"Victoria Reggie Kennedy\") (name fb:en.reema_khan \"Reema Khan\") (name fb:en.francis_dodson \"Francis Dodson\") (name fb:en.leeann_tweeden \"Leeann Tweeden\") (name fb:en.elizabeth_harroldson \"Elizabeth Harroldson\") (name fb:m.0j88p2v \"S. Tariq Shahab\"))) (type fb:people.person)\nWho was Virginia's first and most famous wine maker?\tReema Khan\t2.07\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy \"Ted Kennedy\") (name fb:m.0n88yfw \"Chris Dougherty\") (name fb:en.victoria_reggie_kennedy \"Victoria Reggie Kennedy\") (name fb:en.reema_khan \"Reema Khan\") (name fb:en.francis_dodson \"Francis Dodson\") (name fb:en.leeann_tweeden \"Leeann Tweeden\") (name fb:en.elizabeth_harroldson \"Elizabeth Harroldson\") (name fb:m.0j88p2v \"S. Tariq Shahab\"))) (type fb:people.person)\nWho was Virginia's first and most famous wine maker?\tFrancis Dodson\t2.07\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy \"Ted Kennedy\") (name fb:m.0n88yfw \"Chris Dougherty\") (name fb:en.victoria_reggie_kennedy \"Victoria Reggie Kennedy\") (name fb:en.reema_khan \"Reema Khan\") (name fb:en.francis_dodson \"Francis Dodson\") (name fb:en.leeann_tweeden \"Leeann Tweeden\") (name fb:en.elizabeth_harroldson \"Elizabeth Harroldson\") (name fb:m.0j88p2v \"S. Tariq Shahab\"))) (type fb:people.person)\nWho was Virginia's first and most famous wine maker?\tLeeann Tweeden\t2.07\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy \"Ted Kennedy\") (name fb:m.0n88yfw \"Chris Dougherty\") (name fb:en.victoria_reggie_kennedy \"Victoria Reggie Kennedy\") (name fb:en.reema_khan \"Reema Khan\") (name fb:en.francis_dodson \"Francis Dodson\") (name fb:en.leeann_tweeden \"Leeann Tweeden\") (name fb:en.elizabeth_harroldson \"Elizabeth Harroldson\") (name fb:m.0j88p2v \"S. Tariq Shahab\"))) (type fb:people.person)\nWho was Virginia's first and most famous wine maker?\tElizabeth Harroldson\t2.07\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy \"Ted Kennedy\") (name fb:m.0n88yfw \"Chris Dougherty\") (name fb:en.victoria_reggie_kennedy \"Victoria Reggie Kennedy\") (name fb:en.reema_khan \"Reema Khan\") (name fb:en.francis_dodson \"Francis Dodson\") (name fb:en.leeann_tweeden \"Leeann Tweeden\") (name fb:en.elizabeth_harroldson \"Elizabeth Harroldson\") (name fb:m.0j88p2v \"S. Tariq Shahab\"))) (type fb:people.person)\nWho was Virginia's first and most famous wine maker?\tS. Tariq Shahab\t2.07\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy \"Ted Kennedy\") (name fb:m.0n88yfw \"Chris Dougherty\") (name fb:en.victoria_reggie_kennedy \"Victoria Reggie Kennedy\") (name fb:en.reema_khan \"Reema Khan\") (name fb:en.francis_dodson \"Francis Dodson\") (name fb:en.leeann_tweeden \"Leeann Tweeden\") (name fb:en.elizabeth_harroldson \"Elizabeth Harroldson\") (name fb:m.0j88p2v \"S. Tariq Shahab\"))) (type fb:people.person)\nOn what date was the surgery performed?\tHorse-riding accident\t-1.773\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:base.disaster2.type_of_injury_causing_event.injuries_caused_this_way (fb:base.disaster2.injury.injury_treatment (var x)))) fb:en.surgery))) (value (list (name fb:en.gunshot Gunshot) (name fb:en.horse_riding_accident \"Horse-riding accident\") (name fb:en.domestic_violence \"Domestic violence\") (name fb:m.04f32c6 Falling) (name fb:en.skateboard_accident \"Skateboard accident\") (name fb:en.wrestling_accident \"Wrestling accident\"))) (type fb:base.disaster2.type_of_injury_causing_event)\nOn what date was the surgery performed?\tDomestic violence\t-1.773\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:base.disaster2.type_of_injury_causing_event.injuries_caused_this_way (fb:base.disaster2.injury.injury_treatment (var x)))) fb:en.surgery))) (value (list (name fb:en.gunshot Gunshot) (name fb:en.horse_riding_accident \"Horse-riding accident\") (name fb:en.domestic_violence \"Domestic violence\") (name fb:m.04f32c6 Falling) (name fb:en.skateboard_accident \"Skateboard accident\") (name fb:en.wrestling_accident \"Wrestling accident\"))) (type fb:base.disaster2.type_of_injury_causing_event)\nOn what date was the surgery performed?\tSkateboard accident\t-1.773\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:base.disaster2.type_of_injury_causing_event.injuries_caused_this_way (fb:base.disaster2.injury.injury_treatment (var x)))) fb:en.surgery))) (value (list (name fb:en.gunshot Gunshot) (name fb:en.horse_riding_accident \"Horse-riding accident\") (name fb:en.domestic_violence \"Domestic violence\") (name fb:m.04f32c6 Falling) (name fb:en.skateboard_accident \"Skateboard accident\") (name fb:en.wrestling_accident \"Wrestling accident\"))) (type fb:base.disaster2.type_of_injury_causing_event)\nOn what date was the surgery performed?\tWrestling accident\t-1.773\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:base.disaster2.type_of_injury_causing_event.injuries_caused_this_way (fb:base.disaster2.injury.injury_treatment (var x)))) fb:en.surgery))) (value (list (name fb:en.gunshot Gunshot) (name fb:en.horse_riding_accident \"Horse-riding accident\") (name fb:en.domestic_violence \"Domestic violence\") (name fb:m.04f32c6 Falling) (name fb:en.skateboard_accident \"Skateboard accident\") (name fb:en.wrestling_accident \"Wrestling accident\"))) (type fb:base.disaster2.type_of_injury_causing_event)\nWhat is sodium chloride?\tPhenylephrine hydrochloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tPotassium chloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tSodium chloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tPseudoephedrine hydrochloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tChlorcyclizine hydrochloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tHistamine dihydrochloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tCyclizine hydrochloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tAluminum zirconium trichlorohydrex gly\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tTubocurarine chloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat is sodium chloride?\tBenzethonium chloride\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx \"Phenylephrine hydrochloride\") (name fb:en.potassium_chloride \"Potassium chloride\") (name fb:en.sodium_chloride \"Sodium chloride\") (name fb:m.0hqywp9 \"Pseudoephedrine hydrochloride\") (name fb:m.0hqxkk4 \"Chlorcyclizine hydrochloride\") (name fb:m.0j4j6m7 \"Histamine dihydrochloride\") (name fb:m.0hqxwq9 \"Cyclizine hydrochloride\") (name fb:m.0hqw5fn \"Aluminum zirconium trichlorohydrex gly\") (name fb:en.tubocurarine \"Tubocurarine chloride\") (name fb:en.benzethonium_chloride \"Benzethonium chloride\"))) (type fb:medicine.drug_ingredient)\nWhat continent is Bolivia on?\tSouth America\t1.275\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.continent) (!fb:location.location.containedby fb:en.bolivia)))) (value (list (name fb:en.south_america \"South America\"))) (type fb:location.continent)\nWhich British teams has Manchester United played?\tManchester City F.C.\t-9.325\tformula (!fb:sports.sports_team_location.teams fb:en.manchester_united_kingdom)) (value (list (name fb:en.manchester_city_fc \"Manchester City F.C.\"))) (type fb:sports.sports_team)\nHow did Adolf Hitler die?\tVegetarian food\t-2.025\tformula (!fb:food.diet_follower.follows_diet fb:en.adolf_hitler)) (value (list (name fb:en.vegetarian \"Vegetarian food\"))) (type fb:food.diet)\nWhat movies did Meg Ryan star in?\tPrelude to a Kiss\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tWhen Harry Met Sally...\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tPromised Land\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tSearching for Debra Winger\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tSerious Moonlight\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tSleepless in Seattle\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tYou've Got Mail\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tJoe Versus the Volcano\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tThe Doors\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWhat movies did Meg Ryan star in?\tThe Presidio\t0.559\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 \"Prelude to a Kiss\") (name fb:en.when_harry_met_sally \"When Harry Met Sally...\") (name fb:en.promised_land_1987 \"Promised Land\") (name fb:en.searching_for_debra_winger \"Searching for Debra Winger\") (name fb:m.03qfq78 \"Serious Moonlight\") (name fb:en.sleepless_in_seattle \"Sleepless in Seattle\") (name fb:en.youve_got_mail \"You've Got Mail\") (name fb:en.joe_versus_the_volcano \"Joe Versus the Volcano\") (name fb:en.the_doors_1991 \"The Doors\") (name fb:en.the_presidio \"The Presidio\"))) (type fb:film.film)\nWho was the founder of Habitat for Humanity?\tTriangle Fraternity\t-3.693\tformula (and (fb:type.object.type fb:common.topic) (fb:education.fraternity_sorority.official_charity fb:en.habitat_for_humanity_international))) (value (list (name fb:en.triangle_fraternity \"Triangle Fraternity\") (name fb:en.alpha_delta_gamma \"Alpha Delta Gamma\") (name fb:en.alpha_sigma_tau \"Alpha Sigma Tau\"))) (type fb:education.fraternity_sorority)\nWho was the founder of Habitat for Humanity?\tAlpha Delta Gamma\t-3.693\tformula (and (fb:type.object.type fb:common.topic) (fb:education.fraternity_sorority.official_charity fb:en.habitat_for_humanity_international))) (value (list (name fb:en.triangle_fraternity \"Triangle Fraternity\") (name fb:en.alpha_delta_gamma \"Alpha Delta Gamma\") (name fb:en.alpha_sigma_tau \"Alpha Sigma Tau\"))) (type fb:education.fraternity_sorority)\nWho was the founder of Habitat for Humanity?\tAlpha Sigma Tau\t-3.693\tformula (and (fb:type.object.type fb:common.topic) (fb:education.fraternity_sorority.official_charity fb:en.habitat_for_humanity_international))) (value (list (name fb:en.triangle_fraternity \"Triangle Fraternity\") (name fb:en.alpha_delta_gamma \"Alpha Delta Gamma\") (name fb:en.alpha_sigma_tau \"Alpha Sigma Tau\"))) (type fb:education.fraternity_sorority)\nWho won the 2004 World Series?\tFor episode LA Dodgers vs. Oakland Athletics\t-2.483\tformula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winning_work.awards_won (var x)))) fb:m.07cg6yj)) (value (list (string \"For episode LA Dodgers vs. Oakland Athletics\") (string \"For episode New York Mets vs. Boston Red Sox\"))) (type fb:type.text)\nWho won the 2004 World Series?\tFor episode New York Mets vs. Boston Red Sox\t-2.483\tformula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winning_work.awards_won (var x)))) fb:m.07cg6yj)) (value (list (string \"For episode LA Dodgers vs. Oakland Athletics\") (string \"For episode New York Mets vs. Boston Red Sox\"))) (type fb:type.text)\nWhat are pomegranates?\tEverything Is Alive\t-5.546\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.pomegranates))) (value (list (name fb:m.0ft3z9x \"Everything Is Alive\") (name fb:m.0fdxf6_ \"Everybody Come Outside!\") (name fb:m.0sp_1rn Heaven) (name fb:m.0h3pp1j \"One of Us\") (name fb:m.0fvcpb3 \"Two Eyes\"))) (type fb:music.album)\nWhat are pomegranates?\tEverybody Come Outside!\t-5.546\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.pomegranates))) (value (list (name fb:m.0ft3z9x \"Everything Is Alive\") (name fb:m.0fdxf6_ \"Everybody Come Outside!\") (name fb:m.0sp_1rn Heaven) (name fb:m.0h3pp1j \"One of Us\") (name fb:m.0fvcpb3 \"Two Eyes\"))) (type fb:music.album)\nWhat are pomegranates?\tOne of Us\t-5.546\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.pomegranates))) (value (list (name fb:m.0ft3z9x \"Everything Is Alive\") (name fb:m.0fdxf6_ \"Everybody Come Outside!\") (name fb:m.0sp_1rn Heaven) (name fb:m.0h3pp1j \"One of Us\") (name fb:m.0fvcpb3 \"Two Eyes\"))) (type fb:music.album)\nWhat are pomegranates?\tTwo Eyes\t-5.546\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.pomegranates))) (value (list (name fb:m.0ft3z9x \"Everything Is Alive\") (name fb:m.0fdxf6_ \"Everybody Come Outside!\") (name fb:m.0sp_1rn Heaven) (name fb:m.0h3pp1j \"One of Us\") (name fb:m.0fvcpb3 \"Two Eyes\"))) (type fb:music.album)\nHow many events are part of the LPGA tour?\t1999 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t1986 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t2008 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t2009 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t2011 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t2012 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t2003 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t2004 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t2002 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nHow many events are part of the LPGA tour?\t2010 Tour de France\t1.465\tformula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france \"1999 Tour de France\") (name fb:en.1986_tour_de_france \"1986 Tour de France\") (name fb:en.2008_tour_de_france \"2008 Tour de France\") (name fb:en.2009_tour_de_france \"2009 Tour de France\") (name fb:en.2011_tour_de_france \"2011 Tour de France\") (name fb:m.0ch500q \"2012 Tour de France\") (name fb:en.2003_tour_de_france \"2003 Tour de France\") (name fb:en.2004_tour_de_france \"2004 Tour de France\") (name fb:en.2002_tour_de_france \"2002 Tour de France\") (name fb:en.2010_tour_de_france \"2010 Tour de France\"))) (type fb:time.event)\nWhat was Sammy Sosa's team?\tChicago White Sox\t0.426\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:baseball.batting_statistics.team (!fb:baseball.baseball_player.batting_stats (var x)))) fb:en.sammy_sosa))) (value (list (name fb:en.chicago_white_sox \"Chicago White Sox\") (name fb:en.baltimore_orioles \"Baltimore Orioles\") (name fb:en.chicago_cubs \"Chicago Cubs\") (name fb:en.texas_rangers \"Texas Rangers\"))) (type fb:baseball.baseball_team)\nWhat was Sammy Sosa's team?\tBaltimore Orioles\t0.426\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:baseball.batting_statistics.team (!fb:baseball.baseball_player.batting_stats (var x)))) fb:en.sammy_sosa))) (value (list (name fb:en.chicago_white_sox \"Chicago White Sox\") (name fb:en.baltimore_orioles \"Baltimore Orioles\") (name fb:en.chicago_cubs \"Chicago Cubs\") (name fb:en.texas_rangers \"Texas Rangers\"))) (type fb:baseball.baseball_team)\nWhat was Sammy Sosa's team?\tChicago Cubs\t0.426\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:baseball.batting_statistics.team (!fb:baseball.baseball_player.batting_stats (var x)))) fb:en.sammy_sosa))) (value (list (name fb:en.chicago_white_sox \"Chicago White Sox\") (name fb:en.baltimore_orioles \"Baltimore Orioles\") (name fb:en.chicago_cubs \"Chicago Cubs\") (name fb:en.texas_rangers \"Texas Rangers\"))) (type fb:baseball.baseball_team)\nWhat was Sammy Sosa's team?\tTexas Rangers\t0.426\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:baseball.batting_statistics.team (!fb:baseball.baseball_player.batting_stats (var x)))) fb:en.sammy_sosa))) (value (list (name fb:en.chicago_white_sox \"Chicago White Sox\") (name fb:en.baltimore_orioles \"Baltimore Orioles\") (name fb:en.chicago_cubs \"Chicago Cubs\") (name fb:en.texas_rangers \"Texas Rangers\"))) (type fb:baseball.baseball_team)\nHow many times a day do observant Muslims pray?\tMortality rate\t-0.757\tformula (fb:base.birdinfo.population_rate.measurement_time fb:en.day)) (value (list (name fb:en.mortality_rate \"Mortality rate\") (name fb:en.nesting_success \"Nesting success\"))) (type fb:base.birdinfo.population_rate)\nHow many times a day do observant Muslims pray?\tNesting success\t-0.757\tformula (fb:base.birdinfo.population_rate.measurement_time fb:en.day)) (value (list (name fb:en.mortality_rate \"Mortality rate\") (name fb:en.nesting_success \"Nesting success\"))) (type fb:base.birdinfo.population_rate)\nWhat city is Lake Washington by?\tNorth Bend\t0.428\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.citytown) (!fb:location.location.contains fb:en.washington)))) (value (list (name fb:en.seattle Seattle) (name fb:en.aberdeen_washington Aberdeen) (name fb:en.kirkland Kirkland) (name fb:en.yakima Yakima) (name fb:en.north_bend_washington \"North Bend\") (name fb:en.vancouver Vancouver) (name fb:en.puyallup Puyallup) (name fb:en.curlew_washington Curlew) (name fb:en.spokane Spokane) (name fb:m.04c4lpb Bissel))) (type fb:location.citytown)\nWhat UN organization hosts internships under the Fulbright Program?\tJ. William Fulbright Prize for International Understanding\t-5.829\tformula (and (fb:type.object.type fb:common.topic) (fb:award.award_category.presenting_organization fb:en.fulbright_program))) (value (list (name fb:m.0j2m65g \"J. William Fulbright Prize for International Understanding\") (name fb:en.fulbright_award \"Fulbright Award\"))) (type fb:award.award_category)\nWhat UN organization hosts internships under the Fulbright Program?\tFulbright Award\t-5.829\tformula (and (fb:type.object.type fb:common.topic) (fb:award.award_category.presenting_organization fb:en.fulbright_program))) (value (list (name fb:m.0j2m65g \"J. William Fulbright Prize for International Understanding\") (name fb:en.fulbright_award \"Fulbright Award\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tSatellite Award for Best Film Musical or Comedy\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tGolden Globe Award for Best Film - Musical or Comedy\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tJapan Academy Prize for Outstanding Achievement in Music\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tGolden Globe Award for Best Supporting Actor - Film\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tGolden Globe Award for Best Supporting Actress - Film\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tGolden Globe Award for Best Actress - Drama Film\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tGolden Globe Award for Best Drama Film\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tDavid di Donatello for Best Supporting Actor\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tSatellite Award for Best Foreign Language Film\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWhich film won three awards at the festival?\tDGA Award for Outstanding Directorial Achievement in Feature Film\t-5.018\tformula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy \"Satellite Award for Best Film ��� Musical or Comedy\") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy \"Golden Globe Award for Best Film - Musical or Comedy\") (name fb:m.0775yqp \"Japan Academy Prize for Outstanding Achievement in Music\") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture \"Golden Globe Award for Best Supporting Actor - Film\") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture \"Golden Globe Award for Best Supporting Actress - Film\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama \"Golden Globe Award for Best Actress - Drama Film\") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama \"Golden Globe Award for Best Drama Film\") (name fb:en.david_di_donatello_for_best_supporting_actor \"David di Donatello for Best Supporting Actor\") (name fb:en.satellite_award_for_best_foreign_language_film \"Satellite Award for Best Foreign Language Film\") (name fb:m.09dyj_r \"DGA Award for Outstanding Directorial Achievement in Feature Film\"))) (type fb:award.award_category)\nWho is Paul Newman married to?\tWelcome to Freebase\t-6.068\tformula (fb:freebase.freebase_homepage.example_concepts fb:en.paul_newman)) (value (list (name fb:en.welcome_to_freebase \"Welcome to Freebase\"))) (type fb:freebase.freebase_homepage)\nWhat country is Mahmud Ahmadinejad president of?\t2010 Nigerian coup d'etat\t-2.465\tformula (and (fb:type.object.type fb:common.topic) (fb:base.culturalevent.event.entity_involved fb:en.president))) (value (list (name fb:en.2010_nigerien_coup_detat \"2010 Nigerien coup d'��tat\") (name fb:en.may_coup \"May Coup\") (name fb:en.operation_golden_pheasant \"Operation Golden Pheasant\"))) (type fb:base.culturalevent.event)\nWhat country is Mahmud Ahmadinejad president of?\tMay Coup\t-2.465\tformula (and (fb:type.object.type fb:common.topic) (fb:base.culturalevent.event.entity_involved fb:en.president))) (value (list (name fb:en.2010_nigerien_coup_detat \"2010 Nigerien coup d'��tat\") (name fb:en.may_coup \"May Coup\") (name fb:en.operation_golden_pheasant \"Operation Golden Pheasant\"))) (type fb:base.culturalevent.event)\nWhat country is Mahmud Ahmadinejad president of?\tOperation Golden Pheasant\t-2.465\tformula (and (fb:type.object.type fb:common.topic) (fb:base.culturalevent.event.entity_involved fb:en.president))) (value (list (name fb:en.2010_nigerien_coup_detat \"2010 Nigerien coup d'��tat\") (name fb:en.may_coup \"May Coup\") (name fb:en.operation_golden_pheasant \"Operation Golden Pheasant\"))) (type fb:base.culturalevent.event)\nWho was Meg Ryan's male lead in Hanging\tEntertainment Weekly annotation index\t-4.796\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.meg_ryan)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWho was Meg Ryan's male lead in Hanging\tWSJ Speakeasy Index\t-4.796\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.meg_ryan)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWho was Meg Ryan's male lead in Hanging\tBlissful Master Index\t-4.796\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.meg_ryan)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWho was Meg Ryan's male lead in Hanging\tBlissful Celebrities\t-4.796\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.meg_ryan)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat breed of horse was used to found the Lipizzaner?\tMustang horse\t-4.573\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang \"Mustang horse\") (name fb:en.arabian_horse \"Arabian horse\") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse \"Mongolian horse\") (name fb:en.belgian \"Belgian horse\") (name fb:en.american_quarter_horse \"American Quarter Horse\") (name fb:en.andalusian_horse \"Andalusian horse\") (name fb:en.american_saddlebred \"American Saddlebred\") (name fb:en.peruvian_paso \"Peruvian Paso\") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed)\nWhat breed of horse was used to found the Lipizzaner?\tArabian horse\t-4.573\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang \"Mustang horse\") (name fb:en.arabian_horse \"Arabian horse\") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse \"Mongolian horse\") (name fb:en.belgian \"Belgian horse\") (name fb:en.american_quarter_horse \"American Quarter Horse\") (name fb:en.andalusian_horse \"Andalusian horse\") (name fb:en.american_saddlebred \"American Saddlebred\") (name fb:en.peruvian_paso \"Peruvian Paso\") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed)\nWhat breed of horse was used to found the Lipizzaner?\tMongolian horse\t-4.573\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang \"Mustang horse\") (name fb:en.arabian_horse \"Arabian horse\") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse \"Mongolian horse\") (name fb:en.belgian \"Belgian horse\") (name fb:en.american_quarter_horse \"American Quarter Horse\") (name fb:en.andalusian_horse \"Andalusian horse\") (name fb:en.american_saddlebred \"American Saddlebred\") (name fb:en.peruvian_paso \"Peruvian Paso\") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed)\nWhat breed of horse was used to found the Lipizzaner?\tBelgian horse\t-4.573\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang \"Mustang horse\") (name fb:en.arabian_horse \"Arabian horse\") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse \"Mongolian horse\") (name fb:en.belgian \"Belgian horse\") (name fb:en.american_quarter_horse \"American Quarter Horse\") (name fb:en.andalusian_horse \"Andalusian horse\") (name fb:en.american_saddlebred \"American Saddlebred\") (name fb:en.peruvian_paso \"Peruvian Paso\") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed)\nWhat breed of horse was used to found the Lipizzaner?\tAmerican Quarter Horse\t-4.573\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang \"Mustang horse\") (name fb:en.arabian_horse \"Arabian horse\") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse \"Mongolian horse\") (name fb:en.belgian \"Belgian horse\") (name fb:en.american_quarter_horse \"American Quarter Horse\") (name fb:en.andalusian_horse \"Andalusian horse\") (name fb:en.american_saddlebred \"American Saddlebred\") (name fb:en.peruvian_paso \"Peruvian Paso\") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed)\nWhat breed of horse was used to found the Lipizzaner?\tAndalusian horse\t-4.573\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang \"Mustang horse\") (name fb:en.arabian_horse \"Arabian horse\") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse \"Mongolian horse\") (name fb:en.belgian \"Belgian horse\") (name fb:en.american_quarter_horse \"American Quarter Horse\") (name fb:en.andalusian_horse \"Andalusian horse\") (name fb:en.american_saddlebred \"American Saddlebred\") (name fb:en.peruvian_paso \"Peruvian Paso\") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed)\nWhat breed of horse was used to found the Lipizzaner?\tAmerican Saddlebred\t-4.573\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang \"Mustang horse\") (name fb:en.arabian_horse \"Arabian horse\") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse \"Mongolian horse\") (name fb:en.belgian \"Belgian horse\") (name fb:en.american_quarter_horse \"American Quarter Horse\") (name fb:en.andalusian_horse \"Andalusian horse\") (name fb:en.american_saddlebred \"American Saddlebred\") (name fb:en.peruvian_paso \"Peruvian Paso\") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed)\nWhat breed of horse was used to found the Lipizzaner?\tPeruvian Paso\t-4.573\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang \"Mustang horse\") (name fb:en.arabian_horse \"Arabian horse\") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse \"Mongolian horse\") (name fb:en.belgian \"Belgian horse\") (name fb:en.american_quarter_horse \"American Quarter Horse\") (name fb:en.andalusian_horse \"Andalusian horse\") (name fb:en.american_saddlebred \"American Saddlebred\") (name fb:en.peruvian_paso \"Peruvian Paso\") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed)\nWhere did the Hindenburg disaster occur?\tNaval Air Engineering Station Lakehurst\t-4.467\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.events fb:en.hindenburg_disaster))) (value (list (name fb:en.naval_air_engineering_station_lakehurst \"Naval Air Engineering Station Lakehurst\"))) (type fb:location.location)\nWhat was Rachel Carson's vocation?\tBreast cancer\t-3.598\tformula (and (fb:type.object.type fb:common.topic) (fb:people.cause_of_death.people fb:en.rachel_carson))) (value (list (name fb:en.breast_cancer \"Breast cancer\"))) (type fb:people.cause_of_death)\nWhat comedy team was John Cleese part of?\tSherlock Holmes\t-1.983\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes \"Sherlock Holmes\") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 \"Mr Grime\") (name fb:m.0h13g82 \"Lyle Finster\") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 \"Dr. Liam Neesam\") (name fb:en.basil_fawlty \"Basil Fawlty\") (name fb:en.mr_praline \"Mr Praline\") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character)\nWhat comedy team was John Cleese part of?\tMr Grime\t-1.983\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes \"Sherlock Holmes\") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 \"Mr Grime\") (name fb:m.0h13g82 \"Lyle Finster\") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 \"Dr. Liam Neesam\") (name fb:en.basil_fawlty \"Basil Fawlty\") (name fb:en.mr_praline \"Mr Praline\") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character)\nWhat comedy team was John Cleese part of?\tLyle Finster\t-1.983\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes \"Sherlock Holmes\") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 \"Mr Grime\") (name fb:m.0h13g82 \"Lyle Finster\") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 \"Dr. Liam Neesam\") (name fb:en.basil_fawlty \"Basil Fawlty\") (name fb:en.mr_praline \"Mr Praline\") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character)\nWhat comedy team was John Cleese part of?\tDr. Liam Neesam\t-1.983\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes \"Sherlock Holmes\") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 \"Mr Grime\") (name fb:m.0h13g82 \"Lyle Finster\") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 \"Dr. Liam Neesam\") (name fb:en.basil_fawlty \"Basil Fawlty\") (name fb:en.mr_praline \"Mr Praline\") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character)\nWhat comedy team was John Cleese part of?\tBasil Fawlty\t-1.983\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes \"Sherlock Holmes\") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 \"Mr Grime\") (name fb:m.0h13g82 \"Lyle Finster\") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 \"Dr. Liam Neesam\") (name fb:en.basil_fawlty \"Basil Fawlty\") (name fb:en.mr_praline \"Mr Praline\") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character)\nWhat comedy team was John Cleese part of?\tMr Praline\t-1.983\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes \"Sherlock Holmes\") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 \"Mr Grime\") (name fb:m.0h13g82 \"Lyle Finster\") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 \"Dr. Liam Neesam\") (name fb:en.basil_fawlty \"Basil Fawlty\") (name fb:en.mr_praline \"Mr Praline\") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character)\nHow old was Foreman when he first won the heavyweight championship?\tWBA World Champion\t-1.897\tformula ((lambda x (fb:boxing.boxing_title.champions (fb:boxing.boxing_title_tenure.weight (var x)))) fb:en.heavyweight)) (value (list (name fb:m.0chgh2j \"WBA World Champion\"))) (type fb:boxing.boxing_title)\nWhich actress co-starred in the most Superman movies with Reeve?\tIdentity Crisis #1\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhich actress co-starred in the most Superman movies with Reeve?\tThe Superman Madman Hullabaloo #3\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhich actress co-starred in the most Superman movies with Reeve?\tThe Superman Madman Hullabaloo #2\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhich actress co-starred in the most Superman movies with Reeve?\tThe Superman Madman Hullabaloo #1\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhich actress co-starred in the most Superman movies with Reeve?\tSecret Origins, Vol. 1\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhich actress co-starred in the most Superman movies with Reeve?\tBatman #612\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhich actress co-starred in the most Superman movies with Reeve?\tAction Comics #1\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhich actress co-starred in the most Superman movies with Reeve?\tSuperman/Batman #47\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhich actress co-starred in the most Superman movies with Reeve?\tWorld's Finest Comics #3\t-9.692\tformula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 \"Identity Crisis #1\") (name fb:en.the_superman_madman_hullabaloo_3 \"The Superman Madman Hullabaloo #3\") (name fb:en.the_superman_madman_hullabaloo_2 \"The Superman Madman Hullabaloo #2\") (name fb:en.the_superman_madman_hullabaloo_1 \"The Superman Madman Hullabaloo #1\") (name fb:en.secret_origins_vol_1 \"Secret Origins, Vol. 1\") (name fb:en.batman_612 \"Batman #612\") (name fb:en.action_comics_1 \"Action Comics #1\") (name fb:en.superman_batman_47 \"Superman/Batman #47\") (name fb:en.worlds_finest_comics_3 \"World's Finest Comics #3\"))) (type fb:comic_books.comic_book_issue)\nWhat is Ursa Major?\tMichael Smerconish / Stay the Course\t-4.849\tformula (and (fb:type.object.type fb:common.topic) (fb:tv.the_colbert_report_episode.intro_topics fb:en.major_league_baseball))) (value (list (name fb:m.02nx8_r \"Michael Smerconish / Stay the Course\"))) (type fb:tv.the_colbert_report_episode)\nWhen was the company founded?\tWalt Disney\t-0.45\tformula (fb:organization.organization_founder.organizations_founded fb:en.the_walt_disney_company)) (value (list (name fb:en.walter_disney \"Walt Disney\") (name fb:en.roy_o_disney \"Roy O. Disney\"))) (type fb:organization.organization_founder)\nWhen was the company founded?\tRoy O. Disney\t-0.45\tformula (fb:organization.organization_founder.organizations_founded fb:en.the_walt_disney_company)) (value (list (name fb:en.walter_disney \"Walt Disney\") (name fb:en.roy_o_disney \"Roy O. Disney\"))) (type fb:organization.organization_founder)\nWhat peninsula is Spain part of?\tAntigua and Barbuda\t-1.419\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:location.imports_and_exports.imported_from (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.spain))) (value (list (name fb:en.scotland Scotland) (name fb:en.algeria Algeria) (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\"))) (type fb:location.statistical_region)\nWho was the founding member of the Pink Floyd band?\tRoger Waters\t-2.498\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters \"Roger Waters\") (name fb:en.nick_mason \"Nick Mason\") (name fb:en.david_gilmour \"David Gilmour\") (name fb:en.syd_barrett \"Syd Barrett\") (name fb:en.richard_wright \"Richard Wright\") (name fb:en.bob_klose \"Bob Klose\"))) (type fb:music.group_member)\nWho was the founding member of the Pink Floyd band?\tNick Mason\t-2.498\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters \"Roger Waters\") (name fb:en.nick_mason \"Nick Mason\") (name fb:en.david_gilmour \"David Gilmour\") (name fb:en.syd_barrett \"Syd Barrett\") (name fb:en.richard_wright \"Richard Wright\") (name fb:en.bob_klose \"Bob Klose\"))) (type fb:music.group_member)\nWho was the founding member of the Pink Floyd band?\tDavid Gilmour\t-2.498\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters \"Roger Waters\") (name fb:en.nick_mason \"Nick Mason\") (name fb:en.david_gilmour \"David Gilmour\") (name fb:en.syd_barrett \"Syd Barrett\") (name fb:en.richard_wright \"Richard Wright\") (name fb:en.bob_klose \"Bob Klose\"))) (type fb:music.group_member)\nWho was the founding member of the Pink Floyd band?\tSyd Barrett\t-2.498\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters \"Roger Waters\") (name fb:en.nick_mason \"Nick Mason\") (name fb:en.david_gilmour \"David Gilmour\") (name fb:en.syd_barrett \"Syd Barrett\") (name fb:en.richard_wright \"Richard Wright\") (name fb:en.bob_klose \"Bob Klose\"))) (type fb:music.group_member)\nWho was the founding member of the Pink Floyd band?\tRichard Wright\t-2.498\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters \"Roger Waters\") (name fb:en.nick_mason \"Nick Mason\") (name fb:en.david_gilmour \"David Gilmour\") (name fb:en.syd_barrett \"Syd Barrett\") (name fb:en.richard_wright \"Richard Wright\") (name fb:en.bob_klose \"Bob Klose\"))) (type fb:music.group_member)\nWho was the founding member of the Pink Floyd band?\tBob Klose\t-2.498\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters \"Roger Waters\") (name fb:en.nick_mason \"Nick Mason\") (name fb:en.david_gilmour \"David Gilmour\") (name fb:en.syd_barrett \"Syd Barrett\") (name fb:en.richard_wright \"Richard Wright\") (name fb:en.bob_klose \"Bob Klose\"))) (type fb:music.group_member)\nWhere are the National Archives?\tUnited Kingdom\t-3.689\tformula (and (fb:type.object.type fb:location.location) (!fb:music.release.region fb:m.0tpz12_))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\"))) (type fb:location.location)\nWhat countries supplied aid?\tUnited States of America\t-4.458\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (fb:location.location.contains fb:m.04b0wvw)))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.country)\nOn what date was the 2005 presidential election in Egypt held?\tCharlie and the Chocolate Factory\t0.12\tformula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 \"Charlie and the Chocolate Factory\") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins \"Batman Begins\") (name fb:en.house_of_flying_daggers \"House of Flying Daggers\") (name fb:en.sky_captain_and_the_world_of_tomorrow \"Sky Captain and the World of Tomorrow\") (name fb:en.ella_enchanted_2004 \"Ella Enchanted\") (name fb:en.chicken_little \"Chicken Little\") (name fb:en.the_gate_of_sun \"The Gate of Sun\") (name fb:en.the_grudge \"The Grudge\") (name fb:en.saw_2004 Saw))) (type fb:film.film)\nOn what date was the 2005 presidential election in Egypt held?\tBatman Begins\t0.12\tformula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 \"Charlie and the Chocolate Factory\") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins \"Batman Begins\") (name fb:en.house_of_flying_daggers \"House of Flying Daggers\") (name fb:en.sky_captain_and_the_world_of_tomorrow \"Sky Captain and the World of Tomorrow\") (name fb:en.ella_enchanted_2004 \"Ella Enchanted\") (name fb:en.chicken_little \"Chicken Little\") (name fb:en.the_gate_of_sun \"The Gate of Sun\") (name fb:en.the_grudge \"The Grudge\") (name fb:en.saw_2004 Saw))) (type fb:film.film)\nOn what date was the 2005 presidential election in Egypt held?\tHouse of Flying Daggers\t0.12\tformula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 \"Charlie and the Chocolate Factory\") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins \"Batman Begins\") (name fb:en.house_of_flying_daggers \"House of Flying Daggers\") (name fb:en.sky_captain_and_the_world_of_tomorrow \"Sky Captain and the World of Tomorrow\") (name fb:en.ella_enchanted_2004 \"Ella Enchanted\") (name fb:en.chicken_little \"Chicken Little\") (name fb:en.the_gate_of_sun \"The Gate of Sun\") (name fb:en.the_grudge \"The Grudge\") (name fb:en.saw_2004 Saw))) (type fb:film.film)\nOn what date was the 2005 presidential election in Egypt held?\tSky Captain and the World of Tomorrow\t0.12\tformula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 \"Charlie and the Chocolate Factory\") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins \"Batman Begins\") (name fb:en.house_of_flying_daggers \"House of Flying Daggers\") (name fb:en.sky_captain_and_the_world_of_tomorrow \"Sky Captain and the World of Tomorrow\") (name fb:en.ella_enchanted_2004 \"Ella Enchanted\") (name fb:en.chicken_little \"Chicken Little\") (name fb:en.the_gate_of_sun \"The Gate of Sun\") (name fb:en.the_grudge \"The Grudge\") (name fb:en.saw_2004 Saw))) (type fb:film.film)\nOn what date was the 2005 presidential election in Egypt held?\tElla Enchanted\t0.12\tformula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 \"Charlie and the Chocolate Factory\") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins \"Batman Begins\") (name fb:en.house_of_flying_daggers \"House of Flying Daggers\") (name fb:en.sky_captain_and_the_world_of_tomorrow \"Sky Captain and the World of Tomorrow\") (name fb:en.ella_enchanted_2004 \"Ella Enchanted\") (name fb:en.chicken_little \"Chicken Little\") (name fb:en.the_gate_of_sun \"The Gate of Sun\") (name fb:en.the_grudge \"The Grudge\") (name fb:en.saw_2004 Saw))) (type fb:film.film)\nOn what date was the 2005 presidential election in Egypt held?\tChicken Little\t0.12\tformula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 \"Charlie and the Chocolate Factory\") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins \"Batman Begins\") (name fb:en.house_of_flying_daggers \"House of Flying Daggers\") (name fb:en.sky_captain_and_the_world_of_tomorrow \"Sky Captain and the World of Tomorrow\") (name fb:en.ella_enchanted_2004 \"Ella Enchanted\") (name fb:en.chicken_little \"Chicken Little\") (name fb:en.the_gate_of_sun \"The Gate of Sun\") (name fb:en.the_grudge \"The Grudge\") (name fb:en.saw_2004 Saw))) (type fb:film.film)\nOn what date was the 2005 presidential election in Egypt held?\tThe Gate of Sun\t0.12\tformula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 \"Charlie and the Chocolate Factory\") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins \"Batman Begins\") (name fb:en.house_of_flying_daggers \"House of Flying Daggers\") (name fb:en.sky_captain_and_the_world_of_tomorrow \"Sky Captain and the World of Tomorrow\") (name fb:en.ella_enchanted_2004 \"Ella Enchanted\") (name fb:en.chicken_little \"Chicken Little\") (name fb:en.the_gate_of_sun \"The Gate of Sun\") (name fb:en.the_grudge \"The Grudge\") (name fb:en.saw_2004 Saw))) (type fb:film.film)\nOn what date was the 2005 presidential election in Egypt held?\tThe Grudge\t0.12\tformula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 \"Charlie and the Chocolate Factory\") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins \"Batman Begins\") (name fb:en.house_of_flying_daggers \"House of Flying Daggers\") (name fb:en.sky_captain_and_the_world_of_tomorrow \"Sky Captain and the World of Tomorrow\") (name fb:en.ella_enchanted_2004 \"Ella Enchanted\") (name fb:en.chicken_little \"Chicken Little\") (name fb:en.the_gate_of_sun \"The Gate of Sun\") (name fb:en.the_grudge \"The Grudge\") (name fb:en.saw_2004 Saw))) (type fb:film.film)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tAlex Trebek\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tDebbie Griffin\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tMerv Griffin\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tGary Johnson\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tTerrence McDonnell\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tDick Schneider\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tKevin McCarthy\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tRocky Schmidt\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tHarry Friedman\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat Jeopardy contestant is the biggest money-winner in television game show history?\tLisa Finneran\t-1.365\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek \"Alex Trebek\") (name fb:m.0k1cmf5 \"Debbie Griffin\") (name fb:en.merv_griffin \"Merv Griffin\") (name fb:m.0ln1czc \"Gary Johnson\") (name fb:en.terrence_mcdonnell \"Terrence McDonnell\") (name fb:m.0ncmxny \"Dick Schneider\") (name fb:m.087s3n \"Kevin McCarthy\") (name fb:m.0k1cmdr \"Rocky Schmidt\") (name fb:m.0gh7pk0 \"Harry Friedman\") (name fb:m.0mztjjr \"Lisa Finneran\"))) (type fb:award.award_winner)\nWhat year was Desmond Mpilo Tutu awarded the Nobel Peace Prize?\tNobel Peace Prize\t-2.534\tformula (and (fb:type.object.type fb:common.topic) (!fb:award.award_honor.award (and (!fb:award.award_winner.awards_won fb:en.desmond_tutu) (!fb:award.award_category.winners fb:en.nobel_peace_prize))))) (value (list (name fb:en.nobel_peace_prize \"Nobel Peace Prize\"))) (type fb:award.award_category)\nWhen was Hong Kong returned to Chinese sovereignty?\tNever Enough\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tHouse on fire\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tRiding the snake\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tPearl moon\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tKowloon Tong: A Novel of Hong Kong\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tNoble House\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tKnife edge\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tThe language of threads\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tTai-Pan: A Novel of Hong Kong\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWhen was Hong Kong returned to Chinese sovereignty?\tYellowthread Street\t-0.498\tformula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 \"Never Enough\") (name fb:m.04wb5hm \"House on fire\") (name fb:m.04w3pz0 \"Riding the snake\") (name fb:en.pearl_moon \"Pearl moon\") (name fb:en.kowloon_tong_a_novel_of_hong_kong \"Kowloon Tong: A Novel of Hong Kong\") (name fb:en.noble_house \"Noble House\") (name fb:m.04w27_h \"Knife edge\") (name fb:en.the_language_of_threads \"The language of threads\") (name fb:en.tai_pan \"Tai-Pan: A Novel of Hong Kong\") (name fb:m.04w9_9z \"Yellowthread Street\"))) (type fb:book.written_work)\nWho have coached Warren Moon in professional football?\tLuciano Spalletti\t-2.04\tformula (and (fb:type.object.type fb:people.person) (fb:sports.sports_team_coach.sports_coached fb:en.football))) (value (list (name fb:en.luciano_spalletti \"Luciano Spalletti\") (name fb:en.jesualdo_ferreira \"Jesualdo Ferreira\") (name fb:m.0n521k4 \"Ivo Pulga\") (name fb:m.03c1q38 \"Paulo Jorge Rebelo Duarte\"))) (type fb:sports.sports_team_coach)\nWho have coached Warren Moon in professional football?\tJesualdo Ferreira\t-2.04\tformula (and (fb:type.object.type fb:people.person) (fb:sports.sports_team_coach.sports_coached fb:en.football))) (value (list (name fb:en.luciano_spalletti \"Luciano Spalletti\") (name fb:en.jesualdo_ferreira \"Jesualdo Ferreira\") (name fb:m.0n521k4 \"Ivo Pulga\") (name fb:m.03c1q38 \"Paulo Jorge Rebelo Duarte\"))) (type fb:sports.sports_team_coach)\nWho have coached Warren Moon in professional football?\tIvo Pulga\t-2.04\tformula (and (fb:type.object.type fb:people.person) (fb:sports.sports_team_coach.sports_coached fb:en.football))) (value (list (name fb:en.luciano_spalletti \"Luciano Spalletti\") (name fb:en.jesualdo_ferreira \"Jesualdo Ferreira\") (name fb:m.0n521k4 \"Ivo Pulga\") (name fb:m.03c1q38 \"Paulo Jorge Rebelo Duarte\"))) (type fb:sports.sports_team_coach)\nWho have coached Warren Moon in professional football?\tPaulo Jorge Rebelo Duarte\t-2.04\tformula (and (fb:type.object.type fb:people.person) (fb:sports.sports_team_coach.sports_coached fb:en.football))) (value (list (name fb:en.luciano_spalletti \"Luciano Spalletti\") (name fb:en.jesualdo_ferreira \"Jesualdo Ferreira\") (name fb:m.0n521k4 \"Ivo Pulga\") (name fb:m.03c1q38 \"Paulo Jorge Rebelo Duarte\"))) (type fb:sports.sports_team_coach)\nWhat two European countries are connected by the St. Gotthard Tunnel\tOne Life One Soul (Best of Ballads)\t-7.904\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul \"One Life One Soul (Best of Ballads)\") (name fb:en.one_team_one_spirit \"One Team One Spirit\") (name fb:en.dial_hard \"Dial Hard\") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland \"Made in Switzerland\") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes \"The Hamburg Tapes\") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr \"Human Zoo\"))) (type fb:music.album)\nWhat two European countries are connected by the St. Gotthard Tunnel\tOne Team One Spirit\t-7.904\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul \"One Life One Soul (Best of Ballads)\") (name fb:en.one_team_one_spirit \"One Team One Spirit\") (name fb:en.dial_hard \"Dial Hard\") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland \"Made in Switzerland\") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes \"The Hamburg Tapes\") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr \"Human Zoo\"))) (type fb:music.album)\nWhat two European countries are connected by the St. Gotthard Tunnel\tDial Hard\t-7.904\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul \"One Life One Soul (Best of Ballads)\") (name fb:en.one_team_one_spirit \"One Team One Spirit\") (name fb:en.dial_hard \"Dial Hard\") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland \"Made in Switzerland\") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes \"The Hamburg Tapes\") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr \"Human Zoo\"))) (type fb:music.album)\nWhat two European countries are connected by the St. Gotthard Tunnel\tMade in Switzerland\t-7.904\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul \"One Life One Soul (Best of Ballads)\") (name fb:en.one_team_one_spirit \"One Team One Spirit\") (name fb:en.dial_hard \"Dial Hard\") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland \"Made in Switzerland\") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes \"The Hamburg Tapes\") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr \"Human Zoo\"))) (type fb:music.album)\nWhat two European countries are connected by the St. Gotthard Tunnel\tThe Hamburg Tapes\t-7.904\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul \"One Life One Soul (Best of Ballads)\") (name fb:en.one_team_one_spirit \"One Team One Spirit\") (name fb:en.dial_hard \"Dial Hard\") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland \"Made in Switzerland\") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes \"The Hamburg Tapes\") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr \"Human Zoo\"))) (type fb:music.album)\nWhat two European countries are connected by the St. Gotthard Tunnel\tHuman Zoo\t-7.904\tformula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul \"One Life One Soul (Best of Ballads)\") (name fb:en.one_team_one_spirit \"One Team One Spirit\") (name fb:en.dial_hard \"Dial Hard\") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland \"Made in Switzerland\") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes \"The Hamburg Tapes\") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr \"Human Zoo\"))) (type fb:music.album)\nWhat Latin American country is the leading exporter of sugar cane?\tPowdered sugar\t-1.486\tformula (and (fb:type.object.type fb:common.topic) (!fb:food.ingredient.more_specific_ingredient fb:en.sugar))) (value (list (name fb:m.0725gl Demerara) (name fb:en.powdered_sugar \"Powdered sugar\") (name fb:en.brown_sugar \"Brown sugar\"))) (type fb:food.ingredient)\nWhat Latin American country is the leading exporter of sugar cane?\tBrown sugar\t-1.486\tformula (and (fb:type.object.type fb:common.topic) (!fb:food.ingredient.more_specific_ingredient fb:en.sugar))) (value (list (name fb:m.0725gl Demerara) (name fb:en.powdered_sugar \"Powdered sugar\") (name fb:en.brown_sugar \"Brown sugar\"))) (type fb:food.ingredient)\nWhat countries participated in the Food-for-Oil agreement by providing food or medicine?\tSierra Leone\t-3.421\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.major_imports (fb:location.imports_exports_by_industry.industry (var x)))) fb:en.food_industry)))) (value (list (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.bangladesh Bangladesh) (name fb:en.algeria Algeria) (name fb:en.angola Angola) (name fb:en.madagascar Madagascar) (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.anguilla Anguilla) (name fb:en.tuvalu Tuvalu) (name fb:en.djibouti Djibouti) (name fb:en.andorra Andorra))) (type fb:location.country)\nWhat countries participated in the Food-for-Oil agreement by providing food or medicine?\tAntigua and Barbuda\t-3.421\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.major_imports (fb:location.imports_exports_by_industry.industry (var x)))) fb:en.food_industry)))) (value (list (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.bangladesh Bangladesh) (name fb:en.algeria Algeria) (name fb:en.angola Angola) (name fb:en.madagascar Madagascar) (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.anguilla Anguilla) (name fb:en.tuvalu Tuvalu) (name fb:en.djibouti Djibouti) (name fb:en.andorra Andorra))) (type fb:location.country)\nEmployees of what companies are receiving benefits from this [PBGC] organization?\tTrade union\t-7.69\tformula (!fb:organization.organization.organization_type fb:en.canadian_union_of_public_employees)) (value (list (name fb:en.trade_union \"Trade union\"))) (type fb:organization.organization_type)\nWhen did Hawaii become a state?\tPuukohola Heiau National Historic Site\t0.328\tformula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site \"Puukohola Heiau National Historic Site\") (name fb:en.hawaii_volcanoes_national_park \"Hawai��i Volcanoes National Park\") (name fb:en.uss_arizona_memorial \"USS Arizona Memorial\") (name fb:en.puuhonua_o_honaunau_national_historical_park \"Pu��uhonua o H��naunau National Historical Park\") (name fb:en.haleakala_national_park \"Haleakal�� National Park\") (name fb:en.kaloko-honokohau_national_historical_park \"Honok��hau Settlement and Kaloko-Honok��hau National Historical Park\") (name fb:en.kalaupapa_national_historical_park \"Kalaupapa Leprosy Settlement and National Historical Park\") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument \"World War II Valor in the Pacific National Monument\"))) (type fb:base.usnationalparks.us_national_park)\nWhen did Hawaii become a state?\tHawai��i Volcanoes National Park\t0.328\tformula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site \"Puukohola Heiau National Historic Site\") (name fb:en.hawaii_volcanoes_national_park \"Hawai��i Volcanoes National Park\") (name fb:en.uss_arizona_memorial \"USS Arizona Memorial\") (name fb:en.puuhonua_o_honaunau_national_historical_park \"Pu��uhonua o H��naunau National Historical Park\") (name fb:en.haleakala_national_park \"Haleakal�� National Park\") (name fb:en.kaloko-honokohau_national_historical_park \"Honok��hau Settlement and Kaloko-Honok��hau National Historical Park\") (name fb:en.kalaupapa_national_historical_park \"Kalaupapa Leprosy Settlement and National Historical Park\") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument \"World War II Valor in the Pacific National Monument\"))) (type fb:base.usnationalparks.us_national_park)\nWhen did Hawaii become a state?\tUSS Arizona Memorial\t0.328\tformula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site \"Puukohola Heiau National Historic Site\") (name fb:en.hawaii_volcanoes_national_park \"Hawai��i Volcanoes National Park\") (name fb:en.uss_arizona_memorial \"USS Arizona Memorial\") (name fb:en.puuhonua_o_honaunau_national_historical_park \"Pu��uhonua o H��naunau National Historical Park\") (name fb:en.haleakala_national_park \"Haleakal�� National Park\") (name fb:en.kaloko-honokohau_national_historical_park \"Honok��hau Settlement and Kaloko-Honok��hau National Historical Park\") (name fb:en.kalaupapa_national_historical_park \"Kalaupapa Leprosy Settlement and National Historical Park\") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument \"World War II Valor in the Pacific National Monument\"))) (type fb:base.usnationalparks.us_national_park)\nWhen did Hawaii become a state?\tPu��uhonua o H��naunau National Historical Park\t0.328\tformula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site \"Puukohola Heiau National Historic Site\") (name fb:en.hawaii_volcanoes_national_park \"Hawai��i Volcanoes National Park\") (name fb:en.uss_arizona_memorial \"USS Arizona Memorial\") (name fb:en.puuhonua_o_honaunau_national_historical_park \"Pu��uhonua o H��naunau National Historical Park\") (name fb:en.haleakala_national_park \"Haleakal�� National Park\") (name fb:en.kaloko-honokohau_national_historical_park \"Honok��hau Settlement and Kaloko-Honok��hau National Historical Park\") (name fb:en.kalaupapa_national_historical_park \"Kalaupapa Leprosy Settlement and National Historical Park\") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument \"World War II Valor in the Pacific National Monument\"))) (type fb:base.usnationalparks.us_national_park)\nWhen did Hawaii become a state?\tHaleakal�� National Park\t0.328\tformula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site \"Puukohola Heiau National Historic Site\") (name fb:en.hawaii_volcanoes_national_park \"Hawai��i Volcanoes National Park\") (name fb:en.uss_arizona_memorial \"USS Arizona Memorial\") (name fb:en.puuhonua_o_honaunau_national_historical_park \"Pu��uhonua o H��naunau National Historical Park\") (name fb:en.haleakala_national_park \"Haleakal�� National Park\") (name fb:en.kaloko-honokohau_national_historical_park \"Honok��hau Settlement and Kaloko-Honok��hau National Historical Park\") (name fb:en.kalaupapa_national_historical_park \"Kalaupapa Leprosy Settlement and National Historical Park\") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument \"World War II Valor in the Pacific National Monument\"))) (type fb:base.usnationalparks.us_national_park)\nWhen did Hawaii become a state?\tHonok��hau Settlement and Kaloko-Honok��hau National Historical Park\t0.328\tformula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site \"Puukohola Heiau National Historic Site\") (name fb:en.hawaii_volcanoes_national_park \"Hawai��i Volcanoes National Park\") (name fb:en.uss_arizona_memorial \"USS Arizona Memorial\") (name fb:en.puuhonua_o_honaunau_national_historical_park \"Pu��uhonua o H��naunau National Historical Park\") (name fb:en.haleakala_national_park \"Haleakal�� National Park\") (name fb:en.kaloko-honokohau_national_historical_park \"Honok��hau Settlement and Kaloko-Honok��hau National Historical Park\") (name fb:en.kalaupapa_national_historical_park \"Kalaupapa Leprosy Settlement and National Historical Park\") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument \"World War II Valor in the Pacific National Monument\"))) (type fb:base.usnationalparks.us_national_park)\nWhen did Hawaii become a state?\tKalaupapa Leprosy Settlement and National Historical Park\t0.328\tformula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site \"Puukohola Heiau National Historic Site\") (name fb:en.hawaii_volcanoes_national_park \"Hawai��i Volcanoes National Park\") (name fb:en.uss_arizona_memorial \"USS Arizona Memorial\") (name fb:en.puuhonua_o_honaunau_national_historical_park \"Pu��uhonua o H��naunau National Historical Park\") (name fb:en.haleakala_national_park \"Haleakal�� National Park\") (name fb:en.kaloko-honokohau_national_historical_park \"Honok��hau Settlement and Kaloko-Honok��hau National Historical Park\") (name fb:en.kalaupapa_national_historical_park \"Kalaupapa Leprosy Settlement and National Historical Park\") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument \"World War II Valor in the Pacific National Monument\"))) (type fb:base.usnationalparks.us_national_park)\nWhen did Hawaii become a state?\tWorld War II Valor in the Pacific National Monument\t0.328\tformula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site \"Puukohola Heiau National Historic Site\") (name fb:en.hawaii_volcanoes_national_park \"Hawai��i Volcanoes National Park\") (name fb:en.uss_arizona_memorial \"USS Arizona Memorial\") (name fb:en.puuhonua_o_honaunau_national_historical_park \"Pu��uhonua o H��naunau National Historical Park\") (name fb:en.haleakala_national_park \"Haleakal�� National Park\") (name fb:en.kaloko-honokohau_national_historical_park \"Honok��hau Settlement and Kaloko-Honok��hau National Historical Park\") (name fb:en.kalaupapa_national_historical_park \"Kalaupapa Leprosy Settlement and National Historical Park\") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument \"World War II Valor in the Pacific National Monument\"))) (type fb:base.usnationalparks.us_national_park)\nWhat is the population of Venezuela?\tPopulation Growth Rate, World Development Indicators and Global Development Finance, World Bank\t-2.253\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.population_growth_rate (var x)))) fb:en.venezuela))) (value (list (name fb:m.0ndpz08 \"Population Growth Rate, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nList previous conductors of the Boston Pops.\tJohn Williams\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nList previous conductors of the Boston Pops.\tArthur Fiedler\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nList previous conductors of the Boston Pops.\tKeith Lockhart\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nList previous conductors of the Boston Pops.\tAdolf Neuendorff\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nList previous conductors of the Boston Pops.\tTimothee Adamowski\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nList previous conductors of the Boston Pops.\tAlfredo Casella\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nList previous conductors of the Boston Pops.\tFranz Kneisel\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nList previous conductors of the Boston Pops.\tJosef Pasternack\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nList previous conductors of the Boston Pops.\tAgide Jacchia\t1.618\tformula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams \"John Williams\") (name fb:en.arthur_fiedler \"Arthur Fiedler\") (name fb:en.keith_lockhart \"Keith Lockhart\") (name fb:en.adolf_neuendorff \"Adolf Neuendorff\") (name fb:en.timothee_adamowski \"Timothee Adamowski\") (name fb:en.alfredo_casella \"Alfredo Casella\") (name fb:en.franz_kneisel \"Franz Kneisel\") (name fb:en.josef_pasternack \"Josef Pasternack\") (name fb:en.agide_jacchia \"Agide Jacchia\"))) (type fb:music.conductor)\nWhen was the Food-for-Oil Agreement signed?\tAvobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tSoybean 0.391 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tAconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tAconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tCamphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tCamphor, menthol, and methyl salicylate 60/146/400 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tTea tree oil 1 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tAvobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tFluocinolone acetonide 0.00093 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhen was the Food-for-Oil Agreement signed?\tFluocinolone acetonide 0.11 oil\t-1.55\tformula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 \"Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil\") (name fb:m.0hqs11n \"Soybean 0.391 oil\") (name fb:m.0hqs2vw \"Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil\") (name fb:m.0hqv0b9 \"Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil\") (name fb:m.0hqthqz \"Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil\") (name fb:m.0hqtmhr \"Camphor, menthol, and methyl salicylate 60/146/400 oil\") (name fb:m.0hqrf09 \"Tea tree oil 1 oil\") (name fb:m.0jxldwb \"Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil\") (name fb:m.0hqv1kn \"Fluocinolone acetonide 0.00093 oil\") (name fb:m.0jxp3qm \"Fluocinolone acetonide 0.11 oil\"))) (type fb:medicine.drug_formulation)\nWhat was the original estimated cost of the Big Dig?\tUnited States dollar\t0.757\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:projects.project.actual_cost (var x)))) fb:en.big_dig))) (value (list (name fb:en.us \"United States dollar\"))) (type fb:finance.currency)\nWhat year was the phonograph invented?\tThomas Edison\t-6.133\tformula (and (fb:type.object.type fb:common.topic) (!fb:law.invention.inventor fb:en.phonograph))) (value (list (name fb:en.thomas_edison \"Thomas Edison\") (name fb:en.emile_berliner \"Emile Berliner\") (name fb:en.eldridge_r_johnson \"Eldridge R. Johnson\"))) (type fb:law.inventor)\nWhat year was the phonograph invented?\tEmile Berliner\t-6.133\tformula (and (fb:type.object.type fb:common.topic) (!fb:law.invention.inventor fb:en.phonograph))) (value (list (name fb:en.thomas_edison \"Thomas Edison\") (name fb:en.emile_berliner \"Emile Berliner\") (name fb:en.eldridge_r_johnson \"Eldridge R. Johnson\"))) (type fb:law.inventor)\nWhat year was the phonograph invented?\tEldridge R. Johnson\t-6.133\tformula (and (fb:type.object.type fb:common.topic) (!fb:law.invention.inventor fb:en.phonograph))) (value (list (name fb:en.thomas_edison \"Thomas Edison\") (name fb:en.emile_berliner \"Emile Berliner\") (name fb:en.eldridge_r_johnson \"Eldridge R. Johnson\"))) (type fb:law.inventor)\nWhat team drafted Brett Favre?\tGreen Bay Packers\t0.113\tformula (and (fb:type.object.type fb:common.topic) (!fb:user.szaijan.fantasy_football.player.nfl_team fb:en.brett_favre))) (value (list (name fb:en.green_bay_packers \"Green Bay Packers\"))) (type fb:american_football.football_team)\nWhat is the inner peel of an orange called?\tBlissful Master Index\t-1.754\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.orange_peel))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat is the inner peel of an orange called?\tBlissful Celebrities\t-1.754\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.orange_peel))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhere is Rider College located?\tTrinity College, Cambridge\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tChrist Church, Oxford\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tJesus College, Cambridge\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tThe Art Institute of California - Hollywood\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tNorthern New Mexico College\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tClaremont McKenna College\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tSt Catherine's College, Oxford\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tThe Art Institute of Austin\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tClare College, Cambridge\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhere is Rider College located?\tPomona College\t-5.468\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.christ_church_oxford \"Christ Church, Oxford\") (name fb:en.jesus_college_cambridge \"Jesus College, Cambridge\") (name fb:en.the_art_institute_of_california_hollywood \"The Art Institute of California - Hollywood\") (name fb:en.northern_new_mexico_college \"Northern New Mexico College\") (name fb:en.claremont_mckenna_college \"Claremont McKenna College\") (name fb:en.st_catherines_college_oxford \"St Catherine's College, Oxford\") (name fb:en.the_art_institute_of_austin \"The Art Institute of Austin\") (name fb:en.clare_college_cambridge \"Clare College, Cambridge\") (name fb:en.pomona_college \"Pomona College\"))) (type fb:education.educational_institution)\nWhat year was the first Little League World Series played?\tMajor League Baseball\t-3.259\tformula (and (fb:type.object.type fb:common.topic) (!fb:sports.sports_championship.league fb:en.world_series))) (value (list (name fb:en.major_league_baseball \"Major League Baseball\"))) (type fb:sports.sports_league)\nThe extinct Tasmanian tiger is known by what other name?\tTigris regalis\t0.561\tformula (!fb:biology.organism_classification.synonym_scientific_name fb:en.tiger)) (value (list (string \"Tigris regalis\") (string \"Tigris striatus\"))) (type fb:type.text)\nThe extinct Tasmanian tiger is known by what other name?\tTigris striatus\t0.561\tformula (!fb:biology.organism_classification.synonym_scientific_name fb:en.tiger)) (value (list (string \"Tigris regalis\") (string \"Tigris striatus\"))) (type fb:type.text)\nWhich U.S.A. president appeared on Laugh-In?\t2010 Nigerian coup d'etat\t-6.58\tformula (fb:base.culturalevent.event.entity_involved fb:en.president)) (value (list (name fb:en.2010_nigerien_coup_detat \"2010 Nigerien coup d'��tat\") (name fb:en.may_coup \"May Coup\") (name fb:en.operation_golden_pheasant \"Operation Golden Pheasant\"))) (type fb:base.culturalevent.event)\nWhich U.S.A. president appeared on Laugh-In?\tMay Coup\t-6.58\tformula (fb:base.culturalevent.event.entity_involved fb:en.president)) (value (list (name fb:en.2010_nigerien_coup_detat \"2010 Nigerien coup d'��tat\") (name fb:en.may_coup \"May Coup\") (name fb:en.operation_golden_pheasant \"Operation Golden Pheasant\"))) (type fb:base.culturalevent.event)\nWhich U.S.A. president appeared on Laugh-In?\tOperation Golden Pheasant\t-6.58\tformula (fb:base.culturalevent.event.entity_involved fb:en.president)) (value (list (name fb:en.2010_nigerien_coup_detat \"2010 Nigerien coup d'��tat\") (name fb:en.may_coup \"May Coup\") (name fb:en.operation_golden_pheasant \"Operation Golden Pheasant\"))) (type fb:base.culturalevent.event)\nWhat did George Washington call his house?\tMount Vernon\t-0.909\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:architecture.house) (!fb:people.deceased_person.place_of_death fb:en.george_washington)))) (value (list (name fb:en.mount_vernon \"Mount Vernon\"))) (type fb:architecture.house)\nIn what year was the final episode telecast?\tLive: Episode 9\t-1.576\tformula (and (fb:type.object.type fb:common.topic) (!fb:tv.tv_series_episode.previous_episode fb:m.05dfs88))) (value (list (name fb:m.05dfs8r \"Live: Episode 9\"))) (type fb:tv.tv_series_episode)\nName the Virginia wine festivals.\tRosa virginiana\t-3.4\tformula (fb:base.roses.roses.named_after fb:en.virginia)) (value (list (name fb:en.rosa_virginiana \"Rosa virginiana\"))) (type fb:base.roses.roses)\nWhat percent of the nation's cheese does Wisconsin produce?\tPleasant Ridge Reserve\t2.352\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:food.cheese) (fb:food.cheese.region fb:en.wisconsin)))) (value (list (name fb:en.pleasant_ridge_reserve \"Pleasant Ridge Reserve\") (name fb:m.02h8b9t Benedictine))) (type fb:food.cheese)\nWhat was author Jasper Fforde's first book?\tThe Fourth Bear\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tThe Fourth Bear (Nursery Crime (Audio))\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tLost in a Good Book\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tThe Big Over Easy\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tThe Eyre Affair\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tSomething Rotten (Thursday Next)\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tLost in a Good Book (Thursday Next)\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tThe Big Over Easy\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tThe Eyre Affair\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was author Jasper Fforde's first book?\tThe Eyre Affair\t1.674\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y \"The Fourth Bear\") (name fb:en.the_fourth_bear_nursery_crime_audio \"The Fourth Bear (Nursery Crime (Audio))\") (name fb:m.04dnp19 \"Lost in a Good Book\") (name fb:m.04v_1dp \"The Big Over Easy\") (name fb:m.04v_4vp \"The Eyre Affair\") (name fb:m.04v_mqv \"Something Rotten (Thursday Next)\") (name fb:en.lost_in_a_good_book_thursday_next \"Lost in a Good Book (Thursday Next)\") (name fb:m.04v_1gr \"The Big Over Easy\") (name fb:m.04v_4xl \"The Eyre Affair\") (name fb:m.04v_4s8 \"The Eyre Affair\"))) (type fb:book.book_edition)\nWhat was Malcolm X's original surname?\tUnited States of America\t-0.974\tformula (and (fb:type.object.type fb:common.topic) (!fb:film.film.country fb:en.malcolm_x_1992))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.country)\nIn what year was the Guinness Brewery founded?\tGluten-free diet\t-2.452\tformula (and (fb:type.object.type fb:common.topic) (!fb:food.ingredient.incompatible_with_dietary_restrictions fb:en.guinness))) (value (list (name fb:en.gluten-free_diet \"Gluten-free diet\") (name fb:en.veganism Veganism))) (type fb:food.dietary_restriction)\nHow close is Mesa to Phoenix?\tGloss Mountains\t-0.844\tformula (!fb:common.topic.image fb:m.02289q)) (value (list (name fb:m.03qw6k6 \"Gloss Mountains\") (name fb:m.0g_k2pl IslandInTheSky) (name fb:m.0ccl0hj IslandInTheSky))) (type fb:common.image)\nWho founded the House of Chanel?\tCoco Chanel\t-2.883\tformula (and (fb:type.object.type fb:common.topic) (fb:organization.organization_founder.organizations_founded fb:en.chanel))) (value (list (name fb:en.coco_chanel \"Coco Chanel\"))) (type fb:organization.organization_founder)\nAt what age did Rossini stop writing opera?\tTough Love from Author Enablers Helps Get the Writing Job Done\t-5.37\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.writing))) (value (list (name fb:m.0gtq6dj \"Tough Love from Author Enablers Helps Get the Writing Job Done\") (name fb:m.0g5n39t \"Regarding Rituals, Elegies, and This New Year 2011\") (name fb:m.0gw8dwg \"The Approaching 100th Anniversary of the Harlem Renaissance (part 1)\"))) (type fb:common.topic)\nAt what age did Rossini stop writing opera?\tRegarding Rituals, Elegies, and This New Year 2011\t-5.37\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.writing))) (value (list (name fb:m.0gtq6dj \"Tough Love from Author Enablers Helps Get the Writing Job Done\") (name fb:m.0g5n39t \"Regarding Rituals, Elegies, and This New Year 2011\") (name fb:m.0gw8dwg \"The Approaching 100th Anniversary of the Harlem Renaissance (part 1)\"))) (type fb:common.topic)\nAt what age did Rossini stop writing opera?\tThe Approaching 100th Anniversary of the Harlem Renaissance (part 1)\t-5.37\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.writing))) (value (list (name fb:m.0gtq6dj \"Tough Love from Author Enablers Helps Get the Writing Job Done\") (name fb:m.0g5n39t \"Regarding Rituals, Elegies, and This New Year 2011\") (name fb:m.0gw8dwg \"The Approaching 100th Anniversary of the Harlem Renaissance (part 1)\"))) (type fb:common.topic)\nWho founded Wal-Mart?\tJack Little\t-8.016\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy \"Jack Little\") (name fb:en.cindy_walker \"Cindy Walker\") (name fb:en.quan_cosby \"Quan Cosby\") (name fb:m.0hr4pp8 \"Frankie Lee\") (name fb:en.tony_miles_1978 \"Tony Miles\") (name fb:en.e_donnall_thomas \"E. Donnall Thomas\") (name fb:m.0gc37d5 \"Florine McKinney\") (name fb:m.0hzqtzt \"Buck Freeman\"))) (type fb:people.person)\nWho founded Wal-Mart?\tCindy Walker\t-8.016\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy \"Jack Little\") (name fb:en.cindy_walker \"Cindy Walker\") (name fb:en.quan_cosby \"Quan Cosby\") (name fb:m.0hr4pp8 \"Frankie Lee\") (name fb:en.tony_miles_1978 \"Tony Miles\") (name fb:en.e_donnall_thomas \"E. Donnall Thomas\") (name fb:m.0gc37d5 \"Florine McKinney\") (name fb:m.0hzqtzt \"Buck Freeman\"))) (type fb:people.person)\nWho founded Wal-Mart?\tQuan Cosby\t-8.016\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy \"Jack Little\") (name fb:en.cindy_walker \"Cindy Walker\") (name fb:en.quan_cosby \"Quan Cosby\") (name fb:m.0hr4pp8 \"Frankie Lee\") (name fb:en.tony_miles_1978 \"Tony Miles\") (name fb:en.e_donnall_thomas \"E. Donnall Thomas\") (name fb:m.0gc37d5 \"Florine McKinney\") (name fb:m.0hzqtzt \"Buck Freeman\"))) (type fb:people.person)\nWho founded Wal-Mart?\tFrankie Lee\t-8.016\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy \"Jack Little\") (name fb:en.cindy_walker \"Cindy Walker\") (name fb:en.quan_cosby \"Quan Cosby\") (name fb:m.0hr4pp8 \"Frankie Lee\") (name fb:en.tony_miles_1978 \"Tony Miles\") (name fb:en.e_donnall_thomas \"E. Donnall Thomas\") (name fb:m.0gc37d5 \"Florine McKinney\") (name fb:m.0hzqtzt \"Buck Freeman\"))) (type fb:people.person)\nWho founded Wal-Mart?\tTony Miles\t-8.016\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy \"Jack Little\") (name fb:en.cindy_walker \"Cindy Walker\") (name fb:en.quan_cosby \"Quan Cosby\") (name fb:m.0hr4pp8 \"Frankie Lee\") (name fb:en.tony_miles_1978 \"Tony Miles\") (name fb:en.e_donnall_thomas \"E. Donnall Thomas\") (name fb:m.0gc37d5 \"Florine McKinney\") (name fb:m.0hzqtzt \"Buck Freeman\"))) (type fb:people.person)\nWho founded Wal-Mart?\tE. Donnall Thomas\t-8.016\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy \"Jack Little\") (name fb:en.cindy_walker \"Cindy Walker\") (name fb:en.quan_cosby \"Quan Cosby\") (name fb:m.0hr4pp8 \"Frankie Lee\") (name fb:en.tony_miles_1978 \"Tony Miles\") (name fb:en.e_donnall_thomas \"E. Donnall Thomas\") (name fb:m.0gc37d5 \"Florine McKinney\") (name fb:m.0hzqtzt \"Buck Freeman\"))) (type fb:people.person)\nWho founded Wal-Mart?\tFlorine McKinney\t-8.016\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy \"Jack Little\") (name fb:en.cindy_walker \"Cindy Walker\") (name fb:en.quan_cosby \"Quan Cosby\") (name fb:m.0hr4pp8 \"Frankie Lee\") (name fb:en.tony_miles_1978 \"Tony Miles\") (name fb:en.e_donnall_thomas \"E. Donnall Thomas\") (name fb:m.0gc37d5 \"Florine McKinney\") (name fb:m.0hzqtzt \"Buck Freeman\"))) (type fb:people.person)\nWho founded Wal-Mart?\tBuck Freeman\t-8.016\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy \"Jack Little\") (name fb:en.cindy_walker \"Cindy Walker\") (name fb:en.quan_cosby \"Quan Cosby\") (name fb:m.0hr4pp8 \"Frankie Lee\") (name fb:en.tony_miles_1978 \"Tony Miles\") (name fb:en.e_donnall_thomas \"E. Donnall Thomas\") (name fb:m.0gc37d5 \"Florine McKinney\") (name fb:m.0hzqtzt \"Buck Freeman\"))) (type fb:people.person)\nWhat is Susan B. Anthony's birthday?\tTrelawny Parish\t-1.835\tformula (and (fb:type.object.type fb:common.topic) (!fb:people.person.place_of_birth fb:en.anthony_b))) (value (list (name fb:en.trelawny_parish_jamaica \"Trelawny Parish\"))) (type fb:location.location)\nWhat day did Pearl Harbor occur?\tCoastal Breakwater Harbor\t-4.525\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor \"Coastal Breakwater Harbor\") (name fb:en.river_natural_harbor \"River Natural Harbor\") (name fb:en.coastal_natural_harbor \"Coastal Natural Harbor\") (name fb:en.canal_lake_harbor \"Canal (Lake) Harbor\") (name fb:en.river_tide_gate_harbor \"River Tide Gate Harbor\") (name fb:en.open_roadstead_harbor \"Open Roadstead Harbor\") (name fb:en.coastal_tide_gate_harbor \"Coastal Tide Gate Harbor\") (name fb:en.river_basin_harbor \"River Basin Harbor\"))) (type fb:common.topic)\nWhat day did Pearl Harbor occur?\tRiver Natural Harbor\t-4.525\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor \"Coastal Breakwater Harbor\") (name fb:en.river_natural_harbor \"River Natural Harbor\") (name fb:en.coastal_natural_harbor \"Coastal Natural Harbor\") (name fb:en.canal_lake_harbor \"Canal (Lake) Harbor\") (name fb:en.river_tide_gate_harbor \"River Tide Gate Harbor\") (name fb:en.open_roadstead_harbor \"Open Roadstead Harbor\") (name fb:en.coastal_tide_gate_harbor \"Coastal Tide Gate Harbor\") (name fb:en.river_basin_harbor \"River Basin Harbor\"))) (type fb:common.topic)\nWhat day did Pearl Harbor occur?\tCoastal Natural Harbor\t-4.525\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor \"Coastal Breakwater Harbor\") (name fb:en.river_natural_harbor \"River Natural Harbor\") (name fb:en.coastal_natural_harbor \"Coastal Natural Harbor\") (name fb:en.canal_lake_harbor \"Canal (Lake) Harbor\") (name fb:en.river_tide_gate_harbor \"River Tide Gate Harbor\") (name fb:en.open_roadstead_harbor \"Open Roadstead Harbor\") (name fb:en.coastal_tide_gate_harbor \"Coastal Tide Gate Harbor\") (name fb:en.river_basin_harbor \"River Basin Harbor\"))) (type fb:common.topic)\nWhat day did Pearl Harbor occur?\tCanal (Lake) Harbor\t-4.525\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor \"Coastal Breakwater Harbor\") (name fb:en.river_natural_harbor \"River Natural Harbor\") (name fb:en.coastal_natural_harbor \"Coastal Natural Harbor\") (name fb:en.canal_lake_harbor \"Canal (Lake) Harbor\") (name fb:en.river_tide_gate_harbor \"River Tide Gate Harbor\") (name fb:en.open_roadstead_harbor \"Open Roadstead Harbor\") (name fb:en.coastal_tide_gate_harbor \"Coastal Tide Gate Harbor\") (name fb:en.river_basin_harbor \"River Basin Harbor\"))) (type fb:common.topic)\nWhat day did Pearl Harbor occur?\tRiver Tide Gate Harbor\t-4.525\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor \"Coastal Breakwater Harbor\") (name fb:en.river_natural_harbor \"River Natural Harbor\") (name fb:en.coastal_natural_harbor \"Coastal Natural Harbor\") (name fb:en.canal_lake_harbor \"Canal (Lake) Harbor\") (name fb:en.river_tide_gate_harbor \"River Tide Gate Harbor\") (name fb:en.open_roadstead_harbor \"Open Roadstead Harbor\") (name fb:en.coastal_tide_gate_harbor \"Coastal Tide Gate Harbor\") (name fb:en.river_basin_harbor \"River Basin Harbor\"))) (type fb:common.topic)\nWhat day did Pearl Harbor occur?\tOpen Roadstead Harbor\t-4.525\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor \"Coastal Breakwater Harbor\") (name fb:en.river_natural_harbor \"River Natural Harbor\") (name fb:en.coastal_natural_harbor \"Coastal Natural Harbor\") (name fb:en.canal_lake_harbor \"Canal (Lake) Harbor\") (name fb:en.river_tide_gate_harbor \"River Tide Gate Harbor\") (name fb:en.open_roadstead_harbor \"Open Roadstead Harbor\") (name fb:en.coastal_tide_gate_harbor \"Coastal Tide Gate Harbor\") (name fb:en.river_basin_harbor \"River Basin Harbor\"))) (type fb:common.topic)\nWhat day did Pearl Harbor occur?\tCoastal Tide Gate Harbor\t-4.525\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor \"Coastal Breakwater Harbor\") (name fb:en.river_natural_harbor \"River Natural Harbor\") (name fb:en.coastal_natural_harbor \"Coastal Natural Harbor\") (name fb:en.canal_lake_harbor \"Canal (Lake) Harbor\") (name fb:en.river_tide_gate_harbor \"River Tide Gate Harbor\") (name fb:en.open_roadstead_harbor \"Open Roadstead Harbor\") (name fb:en.coastal_tide_gate_harbor \"Coastal Tide Gate Harbor\") (name fb:en.river_basin_harbor \"River Basin Harbor\"))) (type fb:common.topic)\nWhat day did Pearl Harbor occur?\tRiver Basin Harbor\t-4.525\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor \"Coastal Breakwater Harbor\") (name fb:en.river_natural_harbor \"River Natural Harbor\") (name fb:en.coastal_natural_harbor \"Coastal Natural Harbor\") (name fb:en.canal_lake_harbor \"Canal (Lake) Harbor\") (name fb:en.river_tide_gate_harbor \"River Tide Gate Harbor\") (name fb:en.open_roadstead_harbor \"Open Roadstead Harbor\") (name fb:en.coastal_tide_gate_harbor \"Coastal Tide Gate Harbor\") (name fb:en.river_basin_harbor \"River Basin Harbor\"))) (type fb:common.topic)\nWhich U.S. government employees (either military or civilian) have been accused of spying for foreign countries?\tMinistry of Information\t-7.826\tformula (!fb:organization.organization_sector.organizations_in_this_sector fb:m.036nz)) (value (list (name fb:en.terminalfour TERMINALFOUR) (name fb:m.0tkjppz Worksafe) (name fb:m.0v3d71g \"Ministry of Information\"))) (type fb:organization.organization)\nList the songs he recorded.\tThe Dance\t2.098\tformula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 \"The Dance\") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw \"We're In\") (name fb:m.0m7ltkr \"Dance the Bomb\") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx \"Get the Groove\") (name fb:m.0m7lrhm \"My Woman\"))) (type fb:music.release_track)\nList the songs he recorded.\tWe're In\t2.098\tformula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 \"The Dance\") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw \"We're In\") (name fb:m.0m7ltkr \"Dance the Bomb\") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx \"Get the Groove\") (name fb:m.0m7lrhm \"My Woman\"))) (type fb:music.release_track)\nList the songs he recorded.\tDance the Bomb\t2.098\tformula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 \"The Dance\") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw \"We're In\") (name fb:m.0m7ltkr \"Dance the Bomb\") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx \"Get the Groove\") (name fb:m.0m7lrhm \"My Woman\"))) (type fb:music.release_track)\nList the songs he recorded.\tGet the Groove\t2.098\tformula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 \"The Dance\") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw \"We're In\") (name fb:m.0m7ltkr \"Dance the Bomb\") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx \"Get the Groove\") (name fb:m.0m7lrhm \"My Woman\"))) (type fb:music.release_track)\nList the songs he recorded.\tMy Woman\t2.098\tformula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 \"The Dance\") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw \"We're In\") (name fb:m.0m7ltkr \"Dance the Bomb\") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx \"Get the Groove\") (name fb:m.0m7lrhm \"My Woman\"))) (type fb:music.release_track)\nWhich African country's major export is coffee?\tSierra Leone\t3.861\tformula (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.major_exports (fb:location.imports_exports_by_industry.industry (var x)))) fb:en.coffee))) (value (list (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.angola Angola) (name fb:en.tanzania Tanzania) (name fb:en.madagascar Madagascar) (name fb:en.laos Laos))) (type fb:location.country)\nWhere was Shakespeare born?\tUnited States of America\t-4.785\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:film.film_regional_release_date.film_release_region (!fb:film.film.release_date_s (var x)))) fb:m.09vxfhk))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.spain Spain) (name fb:en.germany Germany))) (type fb:location.location)\nWho is the keeper for Manchester United?\tArchie Jay Lomas\t-2.671\tformula (and (fb:type.object.type fb:people.person) (!fb:people.place_of_interment.interred_here fb:en.manchester_united_kingdom))) (value (list (name fb:m.0gfp9ns \"Archie Jay Lomas\") (name fb:en.john_prettyjohns \"John Prettyjohns\"))) (type fb:people.deceased_person)\nWho is the keeper for Manchester United?\tJohn Prettyjohns\t-2.671\tformula (and (fb:type.object.type fb:people.person) (!fb:people.place_of_interment.interred_here fb:en.manchester_united_kingdom))) (value (list (name fb:m.0gfp9ns \"Archie Jay Lomas\") (name fb:en.john_prettyjohns \"John Prettyjohns\"))) (type fb:people.deceased_person)\nWhat is amitriptyline?\tChlordiazepoxide and amitriptyline 5/12.5 film coated tablet\t-5.026\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:medicine.drug_formulation.strength (fb:medicine.drug_strength.active_ingredient (var x)))) fb:en.amitriptyline))) (value (list (name fb:m.0hqspz4 \"Chlordiazepoxide and amitriptyline 5/12.5 film coated tablet\") (name fb:m.0hqszmp \"Chlordiazepoxide and amitriptyline 10/25 film coated tablet\"))) (type fb:medicine.drug_formulation)\nWhat is amitriptyline?\tChlordiazepoxide and amitriptyline 10/25 film coated tablet\t-5.026\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:medicine.drug_formulation.strength (fb:medicine.drug_strength.active_ingredient (var x)))) fb:en.amitriptyline))) (value (list (name fb:m.0hqspz4 \"Chlordiazepoxide and amitriptyline 5/12.5 film coated tablet\") (name fb:m.0hqszmp \"Chlordiazepoxide and amitriptyline 10/25 film coated tablet\"))) (type fb:medicine.drug_formulation)\nName unusual flavors created by Ben & Jerry's.\tThe Seven of Hearts\t-3.321\tformula (fb:fictional_universe.fictional_character.character_created_by fb:en.ben_edlund)) (value (list (name fb:m.0769fn Arthur) (name fb:en.batmanuel Batmanuel) (name fb:en.the_seven_of_hearts \"The Seven of Hearts\") (name fb:en.the_tick Tick) (name fb:en.omnipotus Omnipotus) (name fb:en.paul_the_samurai \"Paul the Samurai\") (name fb:en.thrakkorzog Thrakkorzog) (name fb:en.clark_oppenheimer \"Clark Oppenheimer\") (name fb:en.chainsaw_vigilante \"Chainsaw Vigilante\") (name fb:en.tuun_la Tuun-La))) (type fb:fictional_universe.fictional_character)\nName unusual flavors created by Ben & Jerry's.\tPaul the Samurai\t-3.321\tformula (fb:fictional_universe.fictional_character.character_created_by fb:en.ben_edlund)) (value (list (name fb:m.0769fn Arthur) (name fb:en.batmanuel Batmanuel) (name fb:en.the_seven_of_hearts \"The Seven of Hearts\") (name fb:en.the_tick Tick) (name fb:en.omnipotus Omnipotus) (name fb:en.paul_the_samurai \"Paul the Samurai\") (name fb:en.thrakkorzog Thrakkorzog) (name fb:en.clark_oppenheimer \"Clark Oppenheimer\") (name fb:en.chainsaw_vigilante \"Chainsaw Vigilante\") (name fb:en.tuun_la Tuun-La))) (type fb:fictional_universe.fictional_character)\nName unusual flavors created by Ben & Jerry's.\tClark Oppenheimer\t-3.321\tformula (fb:fictional_universe.fictional_character.character_created_by fb:en.ben_edlund)) (value (list (name fb:m.0769fn Arthur) (name fb:en.batmanuel Batmanuel) (name fb:en.the_seven_of_hearts \"The Seven of Hearts\") (name fb:en.the_tick Tick) (name fb:en.omnipotus Omnipotus) (name fb:en.paul_the_samurai \"Paul the Samurai\") (name fb:en.thrakkorzog Thrakkorzog) (name fb:en.clark_oppenheimer \"Clark Oppenheimer\") (name fb:en.chainsaw_vigilante \"Chainsaw Vigilante\") (name fb:en.tuun_la Tuun-La))) (type fb:fictional_universe.fictional_character)\nName unusual flavors created by Ben & Jerry's.\tChainsaw Vigilante\t-3.321\tformula (fb:fictional_universe.fictional_character.character_created_by fb:en.ben_edlund)) (value (list (name fb:m.0769fn Arthur) (name fb:en.batmanuel Batmanuel) (name fb:en.the_seven_of_hearts \"The Seven of Hearts\") (name fb:en.the_tick Tick) (name fb:en.omnipotus Omnipotus) (name fb:en.paul_the_samurai \"Paul the Samurai\") (name fb:en.thrakkorzog Thrakkorzog) (name fb:en.clark_oppenheimer \"Clark Oppenheimer\") (name fb:en.chainsaw_vigilante \"Chainsaw Vigilante\") (name fb:en.tuun_la Tuun-La))) (type fb:fictional_universe.fictional_character)\nWhich airlines use Dulles?\tIndependence Air\t-8.634\tformula (and (fb:type.object.type fb:aviation.airline) ((lambda x (!fb:aviation.airline_airport_presence.airline (!fb:aviation.airport.airlines (var x)))) fb:en.washington_dulles_international_airport))) (value (list (name fb:en.independence_air \"Independence Air\"))) (type fb:aviation.airline)\nWhere was the first golf course in the United States?\tSouth Carolina\t0.378\tformula (and (fb:type.object.type fb:location.location) (!fb:location.country.first_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina \"South Carolina\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state \"New York\"))) (type fb:location.administrative_division)\nWhere was the first golf course in the United States?\tWest Virginia\t0.378\tformula (and (fb:type.object.type fb:location.location) (!fb:location.country.first_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina \"South Carolina\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state \"New York\"))) (type fb:location.administrative_division)\nWhere was the first golf course in the United States?\tNew York\t0.378\tformula (and (fb:type.object.type fb:location.location) (!fb:location.country.first_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina \"South Carolina\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state \"New York\"))) (type fb:location.administrative_division)\nWho was the first king of England?\tLoulou de la Falaise\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWho was the first king of England?\tDuncan MacKay\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWho was the first king of England?\tStephen Cleobury\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWho was the first king of England?\tChristie Allen\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWho was the first king of England?\tLiza Walker\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWho was the first king of England?\tBruce Gowers\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWho was the first king of England?\tSir Charles Sedley, 5th Baronet\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWho was the first king of England?\tBasia A'Hern\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWho was the first king of England?\tPeter Le Neve\t-2.404\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs \"Duncan MacKay\") (name fb:en.stephen_cleobury \"Stephen Cleobury\") (name fb:en.christie_allen \"Christie Allen\") (name fb:en.liza_walker \"Liza Walker\") (name fb:en.bruce_gowers \"Bruce Gowers\") (name fb:en.charles_sedley \"Sir Charles Sedley, 5th Baronet\") (name fb:en.basia_ahern \"Basia A'Hern\") (name fb:en.peter_le_neve \"Peter Le Neve\"))) (type fb:people.person)\nWhere is the Orinoco River?\tMeta River\t0.006\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:geography.river) (fb:geography.river.mouth fb:en.orinoco)))) (value (list (name fb:en.meta_river \"Meta River\") (name fb:en.apure_river \"Apure River\") (name fb:en.arauca_river \"Arauca River\") (name fb:en.guaviare_river \"Guaviare River\"))) (type fb:geography.river)\nWhere is the Orinoco River?\tApure River\t0.006\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:geography.river) (fb:geography.river.mouth fb:en.orinoco)))) (value (list (name fb:en.meta_river \"Meta River\") (name fb:en.apure_river \"Apure River\") (name fb:en.arauca_river \"Arauca River\") (name fb:en.guaviare_river \"Guaviare River\"))) (type fb:geography.river)\nWhere is the Orinoco River?\tArauca River\t0.006\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:geography.river) (fb:geography.river.mouth fb:en.orinoco)))) (value (list (name fb:en.meta_river \"Meta River\") (name fb:en.apure_river \"Apure River\") (name fb:en.arauca_river \"Arauca River\") (name fb:en.guaviare_river \"Guaviare River\"))) (type fb:geography.river)\nWhere is the Orinoco River?\tGuaviare River\t0.006\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:geography.river) (fb:geography.river.mouth fb:en.orinoco)))) (value (list (name fb:en.meta_river \"Meta River\") (name fb:en.apure_river \"Apure River\") (name fb:en.arauca_river \"Arauca River\") (name fb:en.guaviare_river \"Guaviare River\"))) (type fb:geography.river)\nWhat government officials have been influenced by Ayn Rand's philosophy?\tPhilip Lader\t-4.588\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader \"Philip Lader\") (name fb:en.karen_l_katen \"Karen L. Katen\") (name fb:en.walter_e_massey \"Walter E. Massey\") (name fb:en.michael_k_powell \"Michael Powell\") (name fb:en.condoleezza_rice \"Condoleezza Rice\") (name fb:en.ronald_olson \"Ronald Olson\") (name fb:en.sam_ginn \"Sam Ginn\") (name fb:en.frank_stanton \"Frank Stanton\"))) (type fb:business.board_member)\nWhat government officials have been influenced by Ayn Rand's philosophy?\tKaren L. Katen\t-4.588\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader \"Philip Lader\") (name fb:en.karen_l_katen \"Karen L. Katen\") (name fb:en.walter_e_massey \"Walter E. Massey\") (name fb:en.michael_k_powell \"Michael Powell\") (name fb:en.condoleezza_rice \"Condoleezza Rice\") (name fb:en.ronald_olson \"Ronald Olson\") (name fb:en.sam_ginn \"Sam Ginn\") (name fb:en.frank_stanton \"Frank Stanton\"))) (type fb:business.board_member)\nWhat government officials have been influenced by Ayn Rand's philosophy?\tWalter E. Massey\t-4.588\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader \"Philip Lader\") (name fb:en.karen_l_katen \"Karen L. Katen\") (name fb:en.walter_e_massey \"Walter E. Massey\") (name fb:en.michael_k_powell \"Michael Powell\") (name fb:en.condoleezza_rice \"Condoleezza Rice\") (name fb:en.ronald_olson \"Ronald Olson\") (name fb:en.sam_ginn \"Sam Ginn\") (name fb:en.frank_stanton \"Frank Stanton\"))) (type fb:business.board_member)\nWhat government officials have been influenced by Ayn Rand's philosophy?\tMichael Powell\t-4.588\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader \"Philip Lader\") (name fb:en.karen_l_katen \"Karen L. Katen\") (name fb:en.walter_e_massey \"Walter E. Massey\") (name fb:en.michael_k_powell \"Michael Powell\") (name fb:en.condoleezza_rice \"Condoleezza Rice\") (name fb:en.ronald_olson \"Ronald Olson\") (name fb:en.sam_ginn \"Sam Ginn\") (name fb:en.frank_stanton \"Frank Stanton\"))) (type fb:business.board_member)\nWhat government officials have been influenced by Ayn Rand's philosophy?\tCondoleezza Rice\t-4.588\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader \"Philip Lader\") (name fb:en.karen_l_katen \"Karen L. Katen\") (name fb:en.walter_e_massey \"Walter E. Massey\") (name fb:en.michael_k_powell \"Michael Powell\") (name fb:en.condoleezza_rice \"Condoleezza Rice\") (name fb:en.ronald_olson \"Ronald Olson\") (name fb:en.sam_ginn \"Sam Ginn\") (name fb:en.frank_stanton \"Frank Stanton\"))) (type fb:business.board_member)\nWhat government officials have been influenced by Ayn Rand's philosophy?\tRonald Olson\t-4.588\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader \"Philip Lader\") (name fb:en.karen_l_katen \"Karen L. Katen\") (name fb:en.walter_e_massey \"Walter E. Massey\") (name fb:en.michael_k_powell \"Michael Powell\") (name fb:en.condoleezza_rice \"Condoleezza Rice\") (name fb:en.ronald_olson \"Ronald Olson\") (name fb:en.sam_ginn \"Sam Ginn\") (name fb:en.frank_stanton \"Frank Stanton\"))) (type fb:business.board_member)\nWhat government officials have been influenced by Ayn Rand's philosophy?\tSam Ginn\t-4.588\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader \"Philip Lader\") (name fb:en.karen_l_katen \"Karen L. Katen\") (name fb:en.walter_e_massey \"Walter E. Massey\") (name fb:en.michael_k_powell \"Michael Powell\") (name fb:en.condoleezza_rice \"Condoleezza Rice\") (name fb:en.ronald_olson \"Ronald Olson\") (name fb:en.sam_ginn \"Sam Ginn\") (name fb:en.frank_stanton \"Frank Stanton\"))) (type fb:business.board_member)\nWhat government officials have been influenced by Ayn Rand's philosophy?\tFrank Stanton\t-4.588\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader \"Philip Lader\") (name fb:en.karen_l_katen \"Karen L. Katen\") (name fb:en.walter_e_massey \"Walter E. Massey\") (name fb:en.michael_k_powell \"Michael Powell\") (name fb:en.condoleezza_rice \"Condoleezza Rice\") (name fb:en.ronald_olson \"Ronald Olson\") (name fb:en.sam_ginn \"Sam Ginn\") (name fb:en.frank_stanton \"Frank Stanton\"))) (type fb:business.board_member)\nWhat was Rose Crumb's occupation?\tMike Swift\t-5.976\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04yfh85))) (value (list (name fb:m.0h5dwyw \"Mike Swift\"))) (type fb:tv.tv_character)\nWhat is Valentine's Day?\tBlissful Master Index\t-3.081\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.valentine_2001))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\"))) (type fb:common.annotation_index)\nWho was the first host of Jeopardy?\tJeopardy! theme music\t-3.939\tformula (and (fb:type.object.type fb:common.topic) (fb:tv.tv_theme_song.theme_song_for fb:en.jeopardy))) (value (list (name fb:en.jeopardy_theme_music \"Jeopardy! theme music\"))) (type fb:tv.tv_theme_song)\nWhere did Dr. King give his speech in Washington?\tPioneer Church\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tBeaumont Apartments\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tCrystal Mountain\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tGold Mountain Golf Club\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tMagnolia Park\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tFirst Christian Church\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tSemiahmoo Golf and Country Club\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tSeattle Airport Marriott\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tSeattle Marriott Waterfront\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWhere did Dr. King give his speech in Washington?\tRedmond Marriott Town Center\t-6.554\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 \"Pioneer Church\") (name fb:m.0gyp49_ \"Beaumont Apartments\") (name fb:en.crystal_mountain \"Crystal Mountain\") (name fb:en.gold_mountain_golf_club \"Gold Mountain Golf Club\") (name fb:m.0p770xk \"Magnolia Park\") (name fb:m.0pl173p \"First Christian Church\") (name fb:en.semiahmoo_golf_and_country_club \"Semiahmoo Golf and Country Club\") (name fb:m.0mvnsh8 \"Seattle Airport Marriott\") (name fb:m.0mvnshc \"Seattle Marriott Waterfront\") (name fb:m.0mvnsh5 \"Redmond Marriott Town Center\"))) (type fb:location.location)\nWho is Terrence Malick?\tMichele Morette\t-5.672\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.terrence_malick))) (value (list (name fb:m.0hypm7t \"Michele Morette\") (name fb:m.0gj4mrm \"Jill Jakes\") (name fb:m.0h9x8rz \"Alexandra Wallace\"))) (type fb:people.person)\nWho is Terrence Malick?\tJill Jakes\t-5.672\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.terrence_malick))) (value (list (name fb:m.0hypm7t \"Michele Morette\") (name fb:m.0gj4mrm \"Jill Jakes\") (name fb:m.0h9x8rz \"Alexandra Wallace\"))) (type fb:people.person)\nWho is Terrence Malick?\tAlexandra Wallace\t-5.672\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.terrence_malick))) (value (list (name fb:m.0hypm7t \"Michele Morette\") (name fb:m.0gj4mrm \"Jill Jakes\") (name fb:m.0h9x8rz \"Alexandra Wallace\"))) (type fb:people.person)\nWhat is foot and mouth disease?\tInfectious disease\t1.674\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:medicine.disease) (!fb:medicine.disease.parent_disease fb:en.hand_foot_and_mouth_disease)))) (value (list (name fb:en.infectious_disease \"Infectious disease\") (name fb:en.specific_diseases_due_to_coxsackie_virus \"Specific diseases due to Coxsackie virus\"))) (type fb:medicine.disease)\nWhat is foot and mouth disease?\tSpecific diseases due to Coxsackie virus\t1.674\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:medicine.disease) (!fb:medicine.disease.parent_disease fb:en.hand_foot_and_mouth_disease)))) (value (list (name fb:en.infectious_disease \"Infectious disease\") (name fb:en.specific_diseases_due_to_coxsackie_virus \"Specific diseases due to Coxsackie virus\"))) (type fb:medicine.disease)\nWhat U.S. government entity sponsors the Fulbright Program?\tMay Coup\t-8.608\tformula (and (fb:type.object.type fb:common.topic) (fb:base.culturalevent.event.entity_involved fb:m.036nz))) (value (list (name fb:en.may_coup \"May Coup\"))) (type fb:base.culturalevent.event)\nWhat province in Canada is Niagara Falls located in?\tNiagara County\t-2.264\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.niagara_falls)))) (value (list (name fb:en.canada Canada) (name fb:en.ontario Ontario) (name fb:en.niagara_county \"Niagara County\"))) (type fb:location.administrative_division)\nWhat university did Thomas Jefferson found?\tUniversity of Virginia\t-0.738\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:education.university) (fb:organization.organization.founders fb:en.thomas_jefferson)))) (value (list (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.university_of_virginia_school_of_law \"University of Virginia School of Law\"))) (type fb:education.university)\nWhat university did Thomas Jefferson found?\tUnited States Military Academy\t-0.738\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:education.university) (fb:organization.organization.founders fb:en.thomas_jefferson)))) (value (list (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.university_of_virginia_school_of_law \"University of Virginia School of Law\"))) (type fb:education.university)\nWhat university did Thomas Jefferson found?\tUniversity of Virginia School of Law\t-0.738\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:education.university) (fb:organization.organization.founders fb:en.thomas_jefferson)))) (value (list (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.university_of_virginia_school_of_law \"University of Virginia School of Law\"))) (type fb:education.university)\nWhat is Tufts' current endowment?\tUnited States dollar\t-0.745\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:organization.endowed_organization.endowment (var x)))) fb:en.tufts_university))) (value (list (name fb:en.us \"United States dollar\"))) (type fb:finance.currency)\nHow many states were still united after the southern states seceded?\tUnited States of America\t-0.166\tformula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.southern_united_states))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type (union fb:location.administrative_division))\nWho testified in defense of Susan McDougal?\tJim McDougal\t-6.332\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.susan_mcdougal))) (value (list (name fb:en.james_mcdougal \"Jim McDougal\"))) (type fb:people.person)\nWhere is Venezuela?\tUnited States of America\t-3.127\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.venezuela))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.statistical_region)\nWho developed potlatch?\tPat Shea\t-6.388\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.potlatch_idaho))) (value (list (name fb:en.pat_shea \"Pat Shea\") (name fb:en.guyle_fielder \"Guyle Fielder\"))) (type fb:people.person)\nWho developed potlatch?\tGuyle Fielder\t-6.388\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.potlatch_idaho))) (value (list (name fb:en.pat_shea \"Pat Shea\") (name fb:en.guyle_fielder \"Guyle Fielder\"))) (type fb:people.person)\nList 10 countries where motorcycles are produced.\tMind Fusion, Volume 3\t-5.973\tformula (fb:music.release.track_list fb:m.0nstghq)) (value (list (name fb:m.0fvqd_y \"Mind Fusion, Volume 3\"))) (type fb:music.release)\nIn what mountain range does the Amazon River rise?\tNevado Mismi\t-1.348\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:geography.mountain) (!fb:geography.river.origin fb:en.amazon_river)))) (value (list (name fb:en.nevado_mismi \"Nevado Mismi\"))) (type fb:geography.mountain)\nWhat are some Bon Jovi hits?\tBobby Bandiera\t-5.195\tformula (and (fb:type.object.type fb:common.topic) (fb:music.group_member.artists_supported fb:en.bon_jovi))) (value (list (name fb:en.bobby_bandiera \"Bobby Bandiera\") (name fb:en.phil_x \"Phil X\") (name fb:en.hugh_mcdonald \"Hugh McDonald\"))) (type fb:music.group_member)\nWhat are some Bon Jovi hits?\tPhil X\t-5.195\tformula (and (fb:type.object.type fb:common.topic) (fb:music.group_member.artists_supported fb:en.bon_jovi))) (value (list (name fb:en.bobby_bandiera \"Bobby Bandiera\") (name fb:en.phil_x \"Phil X\") (name fb:en.hugh_mcdonald \"Hugh McDonald\"))) (type fb:music.group_member)\nWhat are some Bon Jovi hits?\tHugh McDonald\t-5.195\tformula (and (fb:type.object.type fb:common.topic) (fb:music.group_member.artists_supported fb:en.bon_jovi))) (value (list (name fb:en.bobby_bandiera \"Bobby Bandiera\") (name fb:en.phil_x \"Phil X\") (name fb:en.hugh_mcdonald \"Hugh McDonald\"))) (type fb:music.group_member)\nWhat is the largest variety of cactus?\tBlissful Master Index\t-2.415\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.variety))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat is the largest variety of cactus?\tBlissful Celebrities\t-2.415\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.variety))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat do most tourists visit in Reims?\tMontagne de Reims Regional Natural Park\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhat do most tourists visit in Reims?\tReims Cathedral\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhat do most tourists visit in Reims?\tAbbey of Saint-Remi\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhat do most tourists visit in Reims?\tPorte Mars\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhat do most tourists visit in Reims?\tPalace of Tau\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhat do most tourists visit in Reims?\tCh��teau de Cond��\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhat do most tourists visit in Reims?\tMuseum of Fine Arts, Rheims\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhat do most tourists visit in Reims?\tCarnegie Library of Reims\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhat do most tourists visit in Reims?\tFoujita Chapel\t-2.146\tformula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 \"Montagne de Reims Regional Natural Park\") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims \"Reims Cathedral\") (name fb:en.abbey_of_saint-remi \"Abbey of Saint-Remi\") (name fb:en.porte_de_mars \"Porte Mars\") (name fb:en.palace_of_tau \"Palace of Tau\") (name fb:en.chateau_de_conde \"Ch��teau de Cond��\") (name fb:m.0gg8v_l \"Museum of Fine Arts, Rheims\") (name fb:en.carnegie_library_of_reims \"Carnegie Library of Reims\") (name fb:en.foujita_chapel \"Foujita Chapel\"))) (type fb:travel.tourist_attraction)\nWhere is South Bend?\tMendoza College of Business\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tIndiana University South Bend\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tSouth Bend Regional Airport\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tFiddler's Hearth\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tCollege Football Hall of Fame\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tLa Salle Street Bridge\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tStanley Coveleski Regional Stadium\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tWest Washington Historic District\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tBrown Mackie College - South Bend\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWhere is South Bend?\tSouth Bend Civic Theatre\t-4.016\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business \"Mendoza College of Business\") (name fb:en.indiana_university_south_bend \"Indiana University South Bend\") (name fb:en.south_bend_regional_airport \"South Bend Regional Airport\") (name fb:en.fiddlers_hearth \"Fiddler's Hearth\") (name fb:m.0k1bx1p \"College Football Hall of Fame\") (name fb:en.la_salle_street_bridge \"La Salle Street Bridge\") (name fb:en.stanley_coveleski_regional_stadium \"Stanley Coveleski Regional Stadium\") (name fb:en.west_washington_historic_district \"West Washington Historic District\") (name fb:en.brown_mackie_college_south_bend \"Brown Mackie College - South Bend\") (name fb:m.0k1bdks \"South Bend Civic Theatre\"))) (type fb:location.location)\nWho was the third Imam of Shiite Muslims?\tAhmed Yassin\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tSiraj Wahhaj\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tWarith Deen Mohammed\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tAnwar al-Aulaqi\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tMuhammad bin Yahya al-Ninowy\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tIzz ad-Din al-Qassam\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tSaud Al-Shuraim\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tElijah Muhammad\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tGhalib Bin Ali\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWho was the third Imam of Shiite Muslims?\tShaker Elsayed\t-0.512\tformula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin \"Ahmed Yassin\") (name fb:en.siraj_wahhaj \"Siraj Wahhaj\") (name fb:en.warith_deen_muhammad \"Warith Deen Mohammed\") (name fb:en.anwar_al-awlaki \"Anwar al-Aulaqi\") (name fb:m.0hhr9bq \"Muhammad bin Yahya al-Ninowy\") (name fb:en.izz_ad-din_al-qassam \"Izz ad-Din al-Qassam\") (name fb:en.saud_al-shuraim \"Saud Al-Shuraim\") (name fb:en.elijah_muhammad \"Elijah Muhammad\") (name fb:en.imam_ghalib_bin_ali \"Ghalib Bin Ali\") (name fb:en.shaker_elsayed \"Shaker Elsayed\"))) (type fb:people.person)\nWhom did the Chicago Bulls beat in the 1993 championship?\t1996 NBA Finals\t-2.068\tformula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals \"1996 NBA Finals\") (name fb:en.1993_nba_finals \"1993 NBA Finals\") (name fb:en.1991_nba_finals \"1991 NBA Finals\") (name fb:en.1998_nba_finals \"1998 NBA Finals\") (name fb:en.1992_nba_finals \"1992 NBA Finals\") (name fb:en.1997_nba_finals \"1997 NBA Finals\"))) (type fb:sports.sports_championship_event)\nWhom did the Chicago Bulls beat in the 1993 championship?\t1993 NBA Finals\t-2.068\tformula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals \"1996 NBA Finals\") (name fb:en.1993_nba_finals \"1993 NBA Finals\") (name fb:en.1991_nba_finals \"1991 NBA Finals\") (name fb:en.1998_nba_finals \"1998 NBA Finals\") (name fb:en.1992_nba_finals \"1992 NBA Finals\") (name fb:en.1997_nba_finals \"1997 NBA Finals\"))) (type fb:sports.sports_championship_event)\nWhom did the Chicago Bulls beat in the 1993 championship?\t1991 NBA Finals\t-2.068\tformula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals \"1996 NBA Finals\") (name fb:en.1993_nba_finals \"1993 NBA Finals\") (name fb:en.1991_nba_finals \"1991 NBA Finals\") (name fb:en.1998_nba_finals \"1998 NBA Finals\") (name fb:en.1992_nba_finals \"1992 NBA Finals\") (name fb:en.1997_nba_finals \"1997 NBA Finals\"))) (type fb:sports.sports_championship_event)\nWhom did the Chicago Bulls beat in the 1993 championship?\t1998 NBA Finals\t-2.068\tformula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals \"1996 NBA Finals\") (name fb:en.1993_nba_finals \"1993 NBA Finals\") (name fb:en.1991_nba_finals \"1991 NBA Finals\") (name fb:en.1998_nba_finals \"1998 NBA Finals\") (name fb:en.1992_nba_finals \"1992 NBA Finals\") (name fb:en.1997_nba_finals \"1997 NBA Finals\"))) (type fb:sports.sports_championship_event)\nWhom did the Chicago Bulls beat in the 1993 championship?\t1992 NBA Finals\t-2.068\tformula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals \"1996 NBA Finals\") (name fb:en.1993_nba_finals \"1993 NBA Finals\") (name fb:en.1991_nba_finals \"1991 NBA Finals\") (name fb:en.1998_nba_finals \"1998 NBA Finals\") (name fb:en.1992_nba_finals \"1992 NBA Finals\") (name fb:en.1997_nba_finals \"1997 NBA Finals\"))) (type fb:sports.sports_championship_event)\nWhom did the Chicago Bulls beat in the 1993 championship?\t1997 NBA Finals\t-2.068\tformula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals \"1996 NBA Finals\") (name fb:en.1993_nba_finals \"1993 NBA Finals\") (name fb:en.1991_nba_finals \"1991 NBA Finals\") (name fb:en.1998_nba_finals \"1998 NBA Finals\") (name fb:en.1992_nba_finals \"1992 NBA Finals\") (name fb:en.1997_nba_finals \"1997 NBA Finals\"))) (type fb:sports.sports_championship_event)\nFor whom was the state of Pennsylvania named?\tSecretary of the Commonwealth of Pennsylvania\t-2.99\tformula (!fb:government.government_position_held.office_position_or_title (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.pennsylvania) (fb:government.government_position_held.basic_title fb:m.09n5b9)))) (value (list (name fb:en.secretary_of_the_commonwealth_of_pennsylvania \"Secretary of the Commonwealth of Pennsylvania\"))) (type fb:government.government_office_or_title)\n"
  },
  {
    "path": "oqa-data/predictions/sempre-webquestions.txt",
    "content": "what does jamaican people speak?\tChinese Jamaicans\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat does jamaican people speak?\tJamaicans of African ancestry\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat does jamaican people speak?\tJamaican American\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat does jamaican people speak?\tBritish Jamaican\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat does jamaican people speak?\tJamaican Australian\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat does jamaican people speak?\tJamaican Canadian\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat does jamaican people speak?\tLebanese immigration to Jamaica\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat does jamaican people speak?\tIgbo people in Jamaica\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat does jamaican people speak?\tChinese Caribbean\t7.457\tformula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican \"Chinese Jamaicans\") (name fb:en.jamaicans_of_african_ancestry \"Jamaicans of African ancestry\") (name fb:en.jamaican_american \"Jamaican American\") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british \"British Jamaican\") (name fb:en.jamaican_australian \"Jamaican Australian\") (name fb:en.jamaican_canadian \"Jamaican Canadian\") (name fb:m.0hnb50_ \"Lebanese immigration to Jamaica\") (name fb:m.0dgnbjt \"Igbo people in Jamaica\") (name fb:en.chinese_caribbean \"Chinese Caribbean\"))) (type fb:people.ethnicity)\nwhat did james k polk do before he was president?\tGeorge M. Dallas\t16.894\tformula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.james_k_polk))) (value (list (name fb:en.george_m_dallas \"George M. Dallas\"))) (type (union fb:government.us_vice_president))\nwho plays ken barlow in coronation street?\tPower forward\t5.2\tformula (fb:basketball.basketball_position.players fb:m.03wfmtk)) (value (list (name fb:en.power_forward \"Power forward\") (name fb:en.small_forward \"Small forward\"))) (type fb:basketball.basketball_position)\nwho plays ken barlow in coronation street?\tSmall forward\t5.2\tformula (fb:basketball.basketball_position.players fb:m.03wfmtk)) (value (list (name fb:en.power_forward \"Power forward\") (name fb:en.small_forward \"Small forward\"))) (type fb:basketball.basketball_position)\nwho was richard nixon married to?\tPat Nixon\t19.122\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.richard_nixon)) (value (list (name fb:en.pat_nixon \"Pat Nixon\"))) (type fb:people.person)\nwhat country did germany invade first in ww1?\tUnited States of America\t20.997\tformula (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.germany))) (value (list (name fb:en.algeria Algeria) (name fb:en.albania_france Albania) (name fb:en.afghanistan Afghanistan) (name fb:en.united_states_of_america \"United States of America\"))) (type (union fb:location.country))\nwho is governor of ohio 2011?\tKris Jordan\t16.025\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan \"Kris Jordan\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.john_kasich \"John Kasich\") (name fb:m.0fq17s0 \"Lou Gentile\") (name fb:en.scott_oelslager \"Scott Oelslager\") (name fb:m.05p5589 \"Kevin Bacon\") (name fb:en.jon_husted \"Jon A. Husted\"))) (type fb:government.politician)\nwho is governor of ohio 2011?\tMike DeWine\t16.025\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan \"Kris Jordan\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.john_kasich \"John Kasich\") (name fb:m.0fq17s0 \"Lou Gentile\") (name fb:en.scott_oelslager \"Scott Oelslager\") (name fb:m.05p5589 \"Kevin Bacon\") (name fb:en.jon_husted \"Jon A. Husted\"))) (type fb:government.politician)\nwho is governor of ohio 2011?\tJohn Kasich\t16.025\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan \"Kris Jordan\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.john_kasich \"John Kasich\") (name fb:m.0fq17s0 \"Lou Gentile\") (name fb:en.scott_oelslager \"Scott Oelslager\") (name fb:m.05p5589 \"Kevin Bacon\") (name fb:en.jon_husted \"Jon A. Husted\"))) (type fb:government.politician)\nwho is governor of ohio 2011?\tLou Gentile\t16.025\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan \"Kris Jordan\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.john_kasich \"John Kasich\") (name fb:m.0fq17s0 \"Lou Gentile\") (name fb:en.scott_oelslager \"Scott Oelslager\") (name fb:m.05p5589 \"Kevin Bacon\") (name fb:en.jon_husted \"Jon A. Husted\"))) (type fb:government.politician)\nwho is governor of ohio 2011?\tScott Oelslager\t16.025\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan \"Kris Jordan\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.john_kasich \"John Kasich\") (name fb:m.0fq17s0 \"Lou Gentile\") (name fb:en.scott_oelslager \"Scott Oelslager\") (name fb:m.05p5589 \"Kevin Bacon\") (name fb:en.jon_husted \"Jon A. Husted\"))) (type fb:government.politician)\nwho is governor of ohio 2011?\tKevin Bacon\t16.025\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan \"Kris Jordan\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.john_kasich \"John Kasich\") (name fb:m.0fq17s0 \"Lou Gentile\") (name fb:en.scott_oelslager \"Scott Oelslager\") (name fb:m.05p5589 \"Kevin Bacon\") (name fb:en.jon_husted \"Jon A. Husted\"))) (type fb:government.politician)\nwho is governor of ohio 2011?\tJon A. Husted\t16.025\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan \"Kris Jordan\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.john_kasich \"John Kasich\") (name fb:m.0fq17s0 \"Lou Gentile\") (name fb:en.scott_oelslager \"Scott Oelslager\") (name fb:m.05p5589 \"Kevin Bacon\") (name fb:en.jon_husted \"Jon A. Husted\"))) (type fb:government.politician)\nwho was vice president after kennedy died?\tLyndon B. Johnson\t13.041\tformula (fb:government.us_vice_president.to_president fb:en.john_f_kennedy)) (value (list (name fb:en.lyndon_b_johnson \"Lyndon B. Johnson\"))) (type fb:government.us_vice_president)\nwho is the minority leader of the house of representatives now?\tKerry Knott\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tLaurie S. Fulton\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tLeon Panetta\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tRobert Gibbs\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tJulia Allison\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tZiad S. Ojakli\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tJohn M. McHugh\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tPhil Schiliro\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tRay LaHood\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwho is the minority leader of the house of representatives now?\tShephard W. Hill\t14.478\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott \"Kerry Knott\") (name fb:en.laurie_s_fulton \"Laurie S. Fulton\") (name fb:en.leon_panetta \"Leon Panetta\") (name fb:en.robert_gibbs \"Robert Gibbs\") (name fb:en.julia_allison \"Julia Allison\") (name fb:en.ziad_s_ojakli \"Ziad S. Ojakli\") (name fb:en.john_m_mchugh \"John M. McHugh\") (name fb:en.phil_schiliro \"Phil Schiliro\") (name fb:en.ray_lahood \"Ray LaHood\") (name fb:en.shephard_w_hill \"Shephard W. Hill\"))) (type fb:people.person)\nwhat countries are part of the uk?\tUnited Kingdom\t16.912\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries are part of the uk?\tNorthern Ireland\t16.912\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries are part of the uk?\tKingdom of Great Britain\t16.912\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries are part of the uk?\tKingdom of England\t16.912\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries are part of the uk?\tIsle of Man\t16.912\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwho plays bilbo baggins in the hobbit?\tMartin Freeman\t9.116\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman \"Martin Freeman\") (name fb:en.norman_bird \"Norman Bird\") (name fb:en.ian_holm \"Ian Holm\"))) (type fb:film.actor)\nwho plays bilbo baggins in the hobbit?\tNorman Bird\t9.116\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman \"Martin Freeman\") (name fb:en.norman_bird \"Norman Bird\") (name fb:en.ian_holm \"Ian Holm\"))) (type fb:film.actor)\nwho plays bilbo baggins in the hobbit?\tIan Holm\t9.116\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman \"Martin Freeman\") (name fb:en.norman_bird \"Norman Bird\") (name fb:en.ian_holm \"Ian Holm\"))) (type fb:film.actor)\nwhat things did martin luther king do?\tMartin Luther King Bridge\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tMartin Luther King, Jr. High School\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tMartin Luther King, Jr. Day\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tMartin Luther King Jr. Middle School\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tMartin Luther King Jr. Memorial Library\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tMartin Luther King III\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tDr. Martin Luther King, Jr. Library\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tMartin Luther King, Jr. Academy\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tMartin Luther King High School\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat things did martin luther king do?\tMartin Luther King Jr. Shoreline\t11.651\tformula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge \"Martin Luther King Bridge\") (name fb:en.martin_luther_king_jr_high_school \"Martin Luther King, Jr. High School\") (name fb:en.martin_luther_king_day \"Martin Luther King, Jr. Day\") (name fb:en.martin_luther_king_jr_middle_school \"Martin Luther King Jr. Middle School\") (name fb:en.martin_luther_king_jr_memorial_library \"Martin Luther King Jr. Memorial Library\") (name fb:en.martin_luther_king_iii \"Martin Luther King III\") (name fb:en.dr_martin_luther_king_jr_library \"Dr. Martin Luther King, Jr. Library\") (name fb:en.martin_luther_king_jr_academy \"Martin Luther King, Jr. Academy\") (name fb:m.03d4pqv \"Martin Luther King High School\") (name fb:en.martin_luther_king_jr_shoreline \"Martin Luther King Jr. Shoreline\"))) (type fb:symbols.namesake)\nwhat is my timezone in louisiana?\tCentral Time Zone\t9.746\tformula (!fb:location.location.time_zones fb:en.louisiana)) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.utc-6 UTC−06:00))) (type fb:time.time_zone)\nwho is keyshia cole dad?\tEntertainment Weekly annotation index\t4.702\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.keyshia_cole)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwho is keyshia cole dad?\tBlissful Master Index\t4.702\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.keyshia_cole)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwho is keyshia cole dad?\tBlissful Celebrities\t4.702\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.keyshia_cole)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat kind government does egypt have?\tUnitary state\t13.422\tformula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat kind government does egypt have?\tSemi-presidential system\t13.422\tformula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhen did charles goodyear invented rubber?\tImprovement in the Art of Preparing Caoutchouc\t12.084\tformula (fb:law.invention.inventor fb:en.charles_goodyear)) (value (list (name fb:en.vulcanization Vulcanization) (name fb:en.improvement_in_the_art_of_preparing_caoutchouc \"Improvement in the Art of Preparing Caoutchouc\"))) (type fb:law.invention)\nwhat electorate does anna bligh represent?\tElectoral district of South Brisbane\t8.04\tformula ((lambda x (fb:government.political_district.representatives (fb:government.government_position_held.office_holder (var x)))) fb:en.anna_bligh)) (value (list (name fb:en.electoral_district_of_south_brisbane \"Electoral district of South Brisbane\"))) (type fb:government.political_district)\nwhat are some of the traditions of islam?\tEid al-Adha\t10.579\tformula (and (fb:type.object.type fb:time.holiday) (fb:time.holiday.featured_in_religions fb:en.islam))) (value (list (name fb:en.eid_ul-adha \"Eid al-Adha\") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj \"Isra and Mi'raj\") (name fb:en.eid_ul-fitr \"Eid al-Fitr\"))) (type (union fb:time.holiday))\nwhat are some of the traditions of islam?\tIsra and Mi'raj\t10.579\tformula (and (fb:type.object.type fb:time.holiday) (fb:time.holiday.featured_in_religions fb:en.islam))) (value (list (name fb:en.eid_ul-adha \"Eid al-Adha\") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj \"Isra and Mi'raj\") (name fb:en.eid_ul-fitr \"Eid al-Fitr\"))) (type (union fb:time.holiday))\nwhat are some of the traditions of islam?\tEid al-Fitr\t10.579\tformula (and (fb:type.object.type fb:time.holiday) (fb:time.holiday.featured_in_religions fb:en.islam))) (value (list (name fb:en.eid_ul-adha \"Eid al-Adha\") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj \"Isra and Mi'raj\") (name fb:en.eid_ul-fitr \"Eid al-Fitr\"))) (type (union fb:time.holiday))\nwhat is the australian dollar called?\tAustralian dollar\t10.653\tformula ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:education.university.international_tuition (var x)))) fb:en.australian_catholic_university)) (value (list (name fb:en.australian_dollar \"Australian dollar\"))) (type fb:finance.currency)\nwhat timezone is sweden?\tCentral European Time\t7.348\tformula (!fb:location.location.time_zones fb:en.swedem)) (value (list (name fb:en.central_european_time \"Central European Time\") (name fb:en.utcplus1 UTC+01:00))) (type fb:time.time_zone)\nwho did cam newton sign with?\tFlorida Gators football\t9.546\tformula ((lambda x (!fb:sports.sports_team_roster.team (!fb:sports.pro_athlete.teams (var x)))) fb:en.cameron_newton)) (value (list (name fb:en.florida_gators_football \"Florida Gators football\") (name fb:en.carolina_panthers \"Carolina Panthers\"))) (type fb:sports.sports_team)\nwho did cam newton sign with?\tCarolina Panthers\t9.546\tformula ((lambda x (!fb:sports.sports_team_roster.team (!fb:sports.pro_athlete.teams (var x)))) fb:en.cameron_newton)) (value (list (name fb:en.florida_gators_football \"Florida Gators football\") (name fb:en.carolina_panthers \"Carolina Panthers\"))) (type fb:sports.sports_team)\nwhat county is frederick md in?\tFrederick County\t11.351\tformula (!fb:location.hud_county_place.county fb:en.frederick)) (value (list (name fb:en.frederick_county \"Frederick County\"))) (type fb:location.us_county)\nwhat highschool did harper lee go to?\tUniversity of Oxford\t11.389\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhat highschool did harper lee go to?\tUniversity of Alabama School of Law\t11.389\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhat highschool did harper lee go to?\tMonroe County High School\t11.389\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhat highschool did harper lee go to?\tHuntingdon College\t11.389\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhat highschool did harper lee go to?\tUniversity of Alabama\t11.389\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhat timezone is utah in?\tMountain Time Zone\t7.315\tformula (!fb:location.location.time_zones fb:en.utah)) (value (list (name fb:en.mountain_time_zone \"Mountain Time Zone\") (name fb:en.utc-7 UTC−07:00))) (type fb:time.time_zone)\nwho is niall ferguson's wife?\tSusan Douglas\t9.79\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.niall_ferguson)) (value (list (name fb:en.susan_douglas \"Susan Douglas\") (name fb:en.ayaan_hirsi_ali \"Ayaan Hirsi Ali\"))) (type fb:people.person)\nwho is niall ferguson's wife?\tAyaan Hirsi Ali\t9.79\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.niall_ferguson)) (value (list (name fb:en.susan_douglas \"Susan Douglas\") (name fb:en.ayaan_hirsi_ali \"Ayaan Hirsi Ali\"))) (type fb:people.person)\nwho was the leader of soviet union during wwii?\tJoseph Stalin\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tVladimir Lenin\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tLeonid Brezhnev\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tNikita Khrushchev\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tVagit Alekperov\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tMikhail Gorbachev\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tVyacheslav Molotov\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tVladimir Ivashko\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tYuri Andropov\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the leader of soviet union during wwii?\tGeorgy Malenkov\t13.519\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwhat is the state flower of arizona?\tDitat Deus\t12.96\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus \"Ditat Deus\") (name fb:en.apache_trout \"Apache trout\") (name fb:en.petrified_wood \"Petrified wood\") (name fb:en.parkinsonia_florida \"Parkinsonia florida\") (name fb:en.hyla_eximia \"Mountain tree frog\") (name fb:en.cactus_wren \"Cactus Wren\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of arizona?\tApache trout\t12.96\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus \"Ditat Deus\") (name fb:en.apache_trout \"Apache trout\") (name fb:en.petrified_wood \"Petrified wood\") (name fb:en.parkinsonia_florida \"Parkinsonia florida\") (name fb:en.hyla_eximia \"Mountain tree frog\") (name fb:en.cactus_wren \"Cactus Wren\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of arizona?\tPetrified wood\t12.96\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus \"Ditat Deus\") (name fb:en.apache_trout \"Apache trout\") (name fb:en.petrified_wood \"Petrified wood\") (name fb:en.parkinsonia_florida \"Parkinsonia florida\") (name fb:en.hyla_eximia \"Mountain tree frog\") (name fb:en.cactus_wren \"Cactus Wren\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of arizona?\tParkinsonia florida\t12.96\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus \"Ditat Deus\") (name fb:en.apache_trout \"Apache trout\") (name fb:en.petrified_wood \"Petrified wood\") (name fb:en.parkinsonia_florida \"Parkinsonia florida\") (name fb:en.hyla_eximia \"Mountain tree frog\") (name fb:en.cactus_wren \"Cactus Wren\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of arizona?\tMountain tree frog\t12.96\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus \"Ditat Deus\") (name fb:en.apache_trout \"Apache trout\") (name fb:en.petrified_wood \"Petrified wood\") (name fb:en.parkinsonia_florida \"Parkinsonia florida\") (name fb:en.hyla_eximia \"Mountain tree frog\") (name fb:en.cactus_wren \"Cactus Wren\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of arizona?\tCactus Wren\t12.96\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus \"Ditat Deus\") (name fb:en.apache_trout \"Apache trout\") (name fb:en.petrified_wood \"Petrified wood\") (name fb:en.parkinsonia_florida \"Parkinsonia florida\") (name fb:en.hyla_eximia \"Mountain tree frog\") (name fb:en.cactus_wren \"Cactus Wren\"))) (type fb:location.symbol_of_administrative_division)\nwhere was rihanna born and raised?\tSaint Michael Parish\t17.382\tformula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:en.rihanna_jay_z))) (value (list (name fb:en.saint_michael_parish_barbados \"Saint Michael Parish\"))) (type fb:location.location)\nwhat year did president william henry harrison take office?\tJohn Tyler\t9.93\tformula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.william_henry_harrison))) (value (list (name fb:en.john_tyler \"John Tyler\"))) (type (union fb:government.us_vice_president))\nwhere george lopez was born?\tMission Hills\t10.605\tformula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:en.george_lopez_1961))) (value (list (name fb:en.mission_hills_california \"Mission Hills\"))) (type fb:location.location)\nwho will play mr gray in the film?\tBetter Or Worse?\t10.154\tformula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0n281pb))) (value (list (name fb:m.075ndc3 \"Better Or Worse?\"))) (type (union fb:film.film))\nwho won the battle of gettysburg union or confederate?\tKate Carin\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tAbigail Metcalfe\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tMark Herzog\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tRidley Scott\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tTony Scott\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tChristopher G. Cowen\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tDavid McKillop\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tMary Lisio\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tMary Donahue\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwho won the battle of gettysburg union or confederate?\tBen Fox\t8.104\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin \"Kate Carin\") (name fb:m.090f9d1 \"Abigail Metcalfe\") (name fb:m.0h0x45s \"Mark Herzog\") (name fb:en.ridley_scott \"Ridley Scott\") (name fb:en.tony_scott \"Tony Scott\") (name fb:m.0hc8l_g \"Christopher G. Cowen\") (name fb:m.0ghsk_v \"David McKillop\") (name fb:m.0hc8lwn \"Mary Lisio\") (name fb:en.mary_donahue \"Mary Donahue\") (name fb:m.0r62yzr \"Ben Fox\"))) (type fb:award.award_winner)\nwhat county is kansas city kansas?\tPlatte County\t14.937\tformula (!fb:location.hud_county_place.county fb:en.kansas_city)) (value (list (name fb:en.platte_county \"Platte County\"))) (type fb:location.us_county)\nwhat was john quincy adams famous for?\tCerebral hemorrhage\t9.149\tformula (fb:people.cause_of_death.people fb:en.john_quincy_adams)) (value (list (name fb:en.intra-axial_hematoma \"Cerebral hemorrhage\"))) (type fb:people.cause_of_death)\nwho did jackie robinson first play for?\tBrooklyn Dodgers\t17.747\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 \"Brooklyn Dodgers\") (name fb:en.kansas_city_monarchs \"Kansas City Monarchs\") (name fb:en.ucla_bruins_football \"UCLA Bruins football\") (name fb:en.los_angeles_bulldogs \"Los Angeles Bulldogs\") (name fb:en.montreal_royals \"Montreal Royals\"))) (type fb:sports.sports_team)\nwho did jackie robinson first play for?\tKansas City Monarchs\t17.747\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 \"Brooklyn Dodgers\") (name fb:en.kansas_city_monarchs \"Kansas City Monarchs\") (name fb:en.ucla_bruins_football \"UCLA Bruins football\") (name fb:en.los_angeles_bulldogs \"Los Angeles Bulldogs\") (name fb:en.montreal_royals \"Montreal Royals\"))) (type fb:sports.sports_team)\nwho did jackie robinson first play for?\tUCLA Bruins football\t17.747\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 \"Brooklyn Dodgers\") (name fb:en.kansas_city_monarchs \"Kansas City Monarchs\") (name fb:en.ucla_bruins_football \"UCLA Bruins football\") (name fb:en.los_angeles_bulldogs \"Los Angeles Bulldogs\") (name fb:en.montreal_royals \"Montreal Royals\"))) (type fb:sports.sports_team)\nwho did jackie robinson first play for?\tLos Angeles Bulldogs\t17.747\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 \"Brooklyn Dodgers\") (name fb:en.kansas_city_monarchs \"Kansas City Monarchs\") (name fb:en.ucla_bruins_football \"UCLA Bruins football\") (name fb:en.los_angeles_bulldogs \"Los Angeles Bulldogs\") (name fb:en.montreal_royals \"Montreal Royals\"))) (type fb:sports.sports_team)\nwho did jackie robinson first play for?\tMontreal Royals\t17.747\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 \"Brooklyn Dodgers\") (name fb:en.kansas_city_monarchs \"Kansas City Monarchs\") (name fb:en.ucla_bruins_football \"UCLA Bruins football\") (name fb:en.los_angeles_bulldogs \"Los Angeles Bulldogs\") (name fb:en.montreal_royals \"Montreal Royals\"))) (type fb:sports.sports_team)\nwhen did annie open?\tNo More I Love You's\t8.021\tformula (fb:music.music_video.artist fb:en.annie_lennox)) (value (list (name fb:m.0mv6php Why) (name fb:m.0nfv4bg Diva) (name fb:m.0my3s6g \"No More I Love You's\") (name fb:m.0m08jmf \"Walking on Broken Glass\") (name fb:m.0n1xfgg \"Put A Little Love In Your Heart\"))) (type fb:music.music_video)\nwhen did annie open?\tWalking on Broken Glass\t8.021\tformula (fb:music.music_video.artist fb:en.annie_lennox)) (value (list (name fb:m.0mv6php Why) (name fb:m.0nfv4bg Diva) (name fb:m.0my3s6g \"No More I Love You's\") (name fb:m.0m08jmf \"Walking on Broken Glass\") (name fb:m.0n1xfgg \"Put A Little Love In Your Heart\"))) (type fb:music.music_video)\nwhen did annie open?\tPut A Little Love In Your Heart\t8.021\tformula (fb:music.music_video.artist fb:en.annie_lennox)) (value (list (name fb:m.0mv6php Why) (name fb:m.0nfv4bg Diva) (name fb:m.0my3s6g \"No More I Love You's\") (name fb:m.0m08jmf \"Walking on Broken Glass\") (name fb:m.0n1xfgg \"Put A Little Love In Your Heart\"))) (type fb:music.music_video)\nwhere did eleanor roosevelt die?\tNew York City\t9.433\tformula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.eleanor_roosevelt))) (value (list (name fb:en.new_york_ny \"New York City\"))) (type fb:location.location)\nwhat other books did charles dickens write?\tDrood: A Novel\t16.064\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_dickens))) (value (list (name fb:en.drood \"Drood: A Novel\") (name fb:en.coffee_with_dickens \"Coffee with Dickens\"))) (type (union fb:book.book))\nwhat other books did charles dickens write?\tCoffee with Dickens\t16.064\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_dickens))) (value (list (name fb:en.drood \"Drood: A Novel\") (name fb:en.coffee_with_dickens \"Coffee with Dickens\"))) (type (union fb:book.book))\nwho was the first dictator of the soviet union?\tJoseph Stalin\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tVladimir Lenin\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tLeonid Brezhnev\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tNikita Khrushchev\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tVagit Alekperov\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tMikhail Gorbachev\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tVyacheslav Molotov\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tVladimir Ivashko\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tYuri Andropov\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwho was the first dictator of the soviet union?\tGeorgy Malenkov\t16.969\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin \"Joseph Stalin\") (name fb:en.vladimir_lenin \"Vladimir Lenin\") (name fb:en.leonid_ilich_brezhnev \"Leonid Brezhnev\") (name fb:en.nikita_khrushchev \"Nikita Khrushchev\") (name fb:en.vagit_alekperov \"Vagit Alekperov\") (name fb:en.mikhail_gorbachev \"Mikhail Gorbachev\") (name fb:en.vyacheslav_molotov \"Vyacheslav Molotov\") (name fb:en.vladimir_ivashko \"Vladimir Ivashko\") (name fb:en.yuri_andropov \"Yuri Andropov\") (name fb:en.georgy_malenkov \"Georgy Malenkov\"))) (type fb:government.politician)\nwhat is the currency of puerto rico called?\tUnited States dollar\t19.308\tformula (!fb:location.country.currency_used fb:en.puerto_rico)) (value (list (name fb:en.us \"United States dollar\"))) (type fb:finance.currency)\nwhat kind of cancer did carl wilson have?\tLung cancer\t11.862\tformula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.carl_wilson))) (value (list (name fb:en.lung_cancer \"Lung cancer\") (name fb:en.brain_tumors \"Brain tumor\"))) (type (union fb:people.cause_of_death))\nwhat kind of cancer did carl wilson have?\tBrain tumor\t11.862\tformula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.carl_wilson))) (value (list (name fb:en.lung_cancer \"Lung cancer\") (name fb:en.brain_tumors \"Brain tumor\"))) (type (union fb:people.cause_of_death))\nwho plays the voice of kitt in knight rider?\tWilliam Daniels\t7.995\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.kitt)) (value (list (name fb:en.william_daniels \"William Daniels\"))) (type fb:film.actor)\nwhat county is brentwood tennessee in?\tContra Costa County\t8.655\tformula (!fb:location.hud_county_place.county fb:en.brentwood_california)) (value (list (name fb:en.contra_costa_county \"Contra Costa County\"))) (type fb:location.us_county)\nwho is moira en x men?\t(For each individual x (it is possible that  (x obtains personal development)\t3.293\tformula (fb:user.avic.assertion_modeling_kit.freebase_proposition.input_1 fb:en.x)) (value (list (name fb:m.04j8tlt \"(For each individual x (it is possible that  (x obtains personal development)\"))) (type fb:user.avic.assertion_modeling_kit.freebase_proposition)\nwho did michael j fox marry?\tTracy Pollan\t9.638\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.michael_j_fox)) (value (list (name fb:en.tracy_pollan \"Tracy Pollan\"))) (type fb:people.person)\nwhat battles did stonewall jackson fight in?\tBattle of Cedar Mountain\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tBattle of Hoke's Run\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tBattle of Harpers Ferry\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tSecond Battle of Bull Run\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tFirst Battle of Kernstown\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tBattle of Chancellorsville\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tManassas Station Operations\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tBattle of Chantilly\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tBattle of McDowell\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat battles did stonewall jackson fight in?\tBattle of Front Royal\t11.277\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain \"Battle of Cedar Mountain\") (name fb:en.battle_of_hokes_run \"Battle of Hoke's Run\") (name fb:en.battle_of_harpers_ferry \"Battle of Harpers Ferry\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\") (name fb:en.battle_of_kernstown_i \"First Battle of Kernstown\") (name fb:en.battle_of_chancellorsville \"Battle of Chancellorsville\") (name fb:en.battle_of_manassas_station_ops \"Manassas Station Operations\") (name fb:en.battle_of_chantilly \"Battle of Chantilly\") (name fb:en.battle_of_mcdowell \"Battle of McDowell\") (name fb:en.battle_of_front_royal \"Battle of Front Royal\"))) (type (union fb:military.military_conflict))\nwhat language do the maasai tribe speak?\tMaasai Language\t10.97\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.maasai))) (value (list (name fb:en.maasai_language \"Maasai Language\"))) (type fb:language.human_language)\nwho did benjamin franklin get married to?\tDeborah Read\t19.365\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.benjamin_franklin)) (value (list (name fb:en.deborah_read \"Deborah Read\"))) (type fb:people.person)\nwhat disease did patrick swayze died from?\tPancreatic cancer\t18.169\tformula (fb:people.cause_of_death.people fb:en.patrick_swayze)) (value (list (name fb:en.malignant_pancreatic_neoplasm \"Pancreatic cancer\"))) (type fb:people.cause_of_death)\nwhat county is greeley colorado in?\tUnited States of America\t8.511\tformula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.colorado))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\"))) (type (union fb:location.administrative_division))\nwhat county is greeley colorado in?\tUnited States, with Territories\t8.511\tformula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.colorado))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\"))) (type (union fb:location.administrative_division))\nwhere is the ellen degenerous show filmed?\tThe Ellen DeGeneres Show\t11.713\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.tv_program_writer_relationship.tv_program (!fb:tv.tv_writer.tv_programs (var x)))) fb:en.ellen_degeneres))) (value (list (name fb:en.ellen Ellen) (name fb:en.the_ellen_degeneres_show \"The Ellen DeGeneres Show\"))) (type (union fb:tv.tv_program))\nwhat did peter tchaikovsky do?\tSymphony No. 5\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tNone But the Lonely Heart and Other Songs\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tThe Seasons and Other Works for Solo Piano\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tSymphonies Nos. 4-6 for Solo Piano\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tThe Queen of Spades, Op. 68\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tGreat Symphonies for Piano Solo, Vol. 1\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tMusic Minus One Piano\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tEugene Onegin\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tFourth, Fifth and Sixth Symphonies in Full Score\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhat did peter tchaikovsky do?\tComplete String Quartets\t1.547\tformula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng \"Symphony No. 5\") (name fb:en.none_but_the_lonely_heart_and_other_songs \"None But the Lonely Heart and Other Songs\") (name fb:en.the_seasons_and_other_works_for_solo_piano \"The Seasons and Other Works for Solo Piano\") (name fb:en.symphonies_nos_4_6_for_solo_piano \"Symphonies Nos. 4-6 for Solo Piano\") (name fb:en.the_queen_of_spades_op_68 \"The Queen of Spades, Op. 68\") (name fb:en.great_symphonies_for_piano_solo_vol_1 \"Great Symphonies for Piano Solo, Vol. 1\") (name fb:m.06jr7_7 \"Music Minus One Piano\") (name fb:m.06d3bqc \"Eugene Onegin\") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score \"Fourth, Fifth and Sixth Symphonies in Full Score\") (name fb:m.06n_ttb \"Complete String Quartets\"))) (type fb:book.written_work)\nwhich countries speak german officially?\tNazi Germany\t18.891\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany \"Nazi Germany\") (name fb:en.weimar_republic \"Weimar Republic\") (name fb:en.german_democratic_republic \"German Democratic Republic\") (name fb:en.nedics_serbia \"Nedić's Serbia\"))) (type fb:location.country)\nwhich countries speak german officially?\tWeimar Republic\t18.891\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany \"Nazi Germany\") (name fb:en.weimar_republic \"Weimar Republic\") (name fb:en.german_democratic_republic \"German Democratic Republic\") (name fb:en.nedics_serbia \"Nedić's Serbia\"))) (type fb:location.country)\nwhich countries speak german officially?\tGerman Democratic Republic\t18.891\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany \"Nazi Germany\") (name fb:en.weimar_republic \"Weimar Republic\") (name fb:en.german_democratic_republic \"German Democratic Republic\") (name fb:en.nedics_serbia \"Nedić's Serbia\"))) (type fb:location.country)\nwhich countries speak german officially?\tNedić's Serbia\t18.891\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany \"Nazi Germany\") (name fb:en.weimar_republic \"Weimar Republic\") (name fb:en.german_democratic_republic \"German Democratic Republic\") (name fb:en.nedics_serbia \"Nedić's Serbia\"))) (type fb:location.country)\nwhat type of music did john lennon sing?\tRock music\t12.589\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.art_rock \"Art rock\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:m.03ckfl9 \"Experimental music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat type of music did john lennon sing?\tPop music\t12.589\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.art_rock \"Art rock\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:m.03ckfl9 \"Experimental music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat type of music did john lennon sing?\tExperimental rock\t12.589\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.art_rock \"Art rock\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:m.03ckfl9 \"Experimental music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat type of music did john lennon sing?\tArt rock\t12.589\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.art_rock \"Art rock\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:m.03ckfl9 \"Experimental music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat type of music did john lennon sing?\tSoft rock\t12.589\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.art_rock \"Art rock\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:m.03ckfl9 \"Experimental music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat type of music did john lennon sing?\tPsychedelic rock\t12.589\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.art_rock \"Art rock\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:m.03ckfl9 \"Experimental music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat type of music did john lennon sing?\tExperimental music\t12.589\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.art_rock \"Art rock\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:m.03ckfl9 \"Experimental music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat type of music did john lennon sing?\tPop rock\t12.589\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.art_rock \"Art rock\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:m.03ckfl9 \"Experimental music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwho are the colorado representatives?\tHenry M. Teller\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tFloyd K. Haskell\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tEugene Millikin\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tNathaniel P. Hill\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tKen Salazar\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tEdwin C. Johnson\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tWalter Walker\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tAlva B. Adams\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tGeorge M. Chilcott\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho are the colorado representatives?\tBen Nighthorse Campbell\t10.592\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller \"Henry M. Teller\") (name fb:en.floyd_k_haskell \"Floyd K. Haskell\") (name fb:en.eugene_donald_millikin \"Eugene Millikin\") (name fb:en.nathaniel_p_hill \"Nathaniel P. Hill\") (name fb:en.ken_salazar \"Ken Salazar\") (name fb:en.edwin_c_johnson \"Edwin C. Johnson\") (name fb:m.0cvj70 \"Walter Walker\") (name fb:en.alva_b_adams \"Alva B. Adams\") (name fb:en.george_m_chilcott \"George M. Chilcott\") (name fb:en.ben_nighthorse_campbell \"Ben Nighthorse Campbell\"))) (type fb:government.politician)\nwho is willow smith mom name?\tWill Smith\t7.648\tformula (!fb:people.person.parents fb:en.willow_smith)) (value (list (name fb:en.will_smith \"Will Smith\") (name fb:en.jada_pinkett_smith \"Jada Pinkett Smith\"))) (type fb:people.person)\nwho is willow smith mom name?\tJada Pinkett Smith\t7.648\tformula (!fb:people.person.parents fb:en.willow_smith)) (value (list (name fb:en.will_smith \"Will Smith\") (name fb:en.jada_pinkett_smith \"Jada Pinkett Smith\"))) (type fb:people.person)\nwhat do you call the chinese writing system?\t'Phags-pa script\t12.536\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat do you call the chinese writing system?\tNüshu script\t12.536\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat do you call the chinese writing system?\tChinese characters\t12.536\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat do you call the chinese writing system?\tTraditional Chinese characters\t12.536\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat do you call the chinese writing system?\tSimplified Chinese character\t12.536\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwho played on the jeffersons?\tPaul Benedict\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tFranklin Cover\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tMarla Gibbs\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tMike Evans\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tDamon Evans\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tJay Hammer\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tZara Cully\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tBerlinda Tolbert\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tIsabel Sanford\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwho played on the jeffersons?\tSherman Hemsley\t4.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict \"Paul Benedict\") (name fb:en.franklin_cover \"Franklin Cover\") (name fb:en.marla_gibbs \"Marla Gibbs\") (name fb:en.mike_evans_1949 \"Mike Evans\") (name fb:en.damon_evans \"Damon Evans\") (name fb:en.jay_hammer \"Jay Hammer\") (name fb:en.zara_cully \"Zara Cully\") (name fb:en.berlinda_tolbert \"Berlinda Tolbert\") (name fb:en.isabel_sanford \"Isabel Sanford\") (name fb:en.sherman_hemsley \"Sherman Hemsley\"))) (type fb:tv.tv_actor)\nwhat is the name of the san francisco newspaper?\tSan Francisco Daily\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat is the name of the san francisco newspaper?\tSing Tao Daily\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat is the name of the san francisco newspaper?\tSan Francisco Bay View\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat is the name of the san francisco newspaper?\tSan Francisco Bay Guardian\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat is the name of the san francisco newspaper?\tThe San Francisco Examiner\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat is the name of the san francisco newspaper?\tSan Francisco Chronicle\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat is the name of the san francisco newspaper?\tThe Golden Era\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat is the name of the san francisco newspaper?\tStreet Sheet\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat is the name of the san francisco newspaper?\tSan Francisco Foghorn\t13.783\tformula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily \"San Francisco Daily\") (name fb:en.sing_tao_daily \"Sing Tao Daily\") (name fb:en.san_francisco_bay_view \"San Francisco Bay View\") (name fb:en.san_francisco_bay_guardian \"San Francisco Bay Guardian\") (name fb:en.san_francisco_examiner \"The San Francisco Examiner\") (name fb:en.san_francisco_chronicle \"San Francisco Chronicle\") (name fb:en.golden_era \"The Golden Era\") (name fb:en.street_sheet \"Street Sheet\") (name fb:en.san_francisco_foghorn \"San Francisco Foghorn\") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper)\nwhat made the soviet union fall?\tThe Color of Pomegranates\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat made the soviet union fall?\tThe Adventures of Sherlock Holmes and Dr. Watson\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat made the soviet union fall?\tTeheran 43\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat made the soviet union fall?\tI Love\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat made the soviet union fall?\tThe Sword and the Dragon\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat made the soviet union fall?\tLove at First Sight\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat made the soviet union fall?\tWar and Peace\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat made the soviet union fall?\tAdventures of Mowgli\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat made the soviet union fall?\tJourney to the April\t12.088\tformula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates \"The Color of Pomegranates\") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson \"The Adventures of Sherlock Holmes and Dr. Watson\") (name fb:en.teheran_43 \"Teheran 43\") (name fb:m.0chkmmp \"I Love\") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 \"The Sword and the Dragon\") (name fb:m.03c1hxv \"Love at First Sight\") (name fb:m.082yvg \"War and Peace\") (name fb:m.0gqn2l \"Adventures of Mowgli\") (name fb:m.0chkmrx \"Journey to the April\"))) (type fb:film.film)\nwhat did randy savage died of?\tMyocardial infarction\t18.686\tformula (fb:people.cause_of_death.people fb:en.macho_man_randy_savage)) (value (list (name fb:en.heart_failure \"Myocardial infarction\") (name fb:en.car_accident \"Traffic collision\"))) (type fb:people.cause_of_death)\nwhat did randy savage died of?\tTraffic collision\t18.686\tformula (fb:people.cause_of_death.people fb:en.macho_man_randy_savage)) (value (list (name fb:en.heart_failure \"Myocardial infarction\") (name fb:en.car_accident \"Traffic collision\"))) (type fb:people.cause_of_death)\nwhat was the title of the book charles darwin wrote?\tCharles Darwin: Voyaging\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tCharles Darwin: The Power of Place\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tCharles Darwin in Cyberspace\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tCharles Darwin\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tDarwin and the Darwinian revolution\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tDarwin and His Great Discovery\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tThe Tree of Life: Charles Darwin\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tThe Politics of Evolution: Morphology, Medicine, and Reform in Radical London\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tDarwin on Trial\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhat was the title of the book charles darwin wrote?\tThe Darwin conspiracy\t13.916\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging \"Charles Darwin: Voyaging\") (name fb:en.charles_darwin_the_power_of_place \"Charles Darwin: The Power of Place\") (name fb:en.charles_darwin_in_cyberspace \"Charles Darwin in Cyberspace\") (name fb:m.04t22yt \"Charles Darwin\") (name fb:en.darwin_and_the_darwinian_revolution \"Darwin and the Darwinian revolution\") (name fb:en.darwin_and_his_great_discovery \"Darwin and His Great Discovery\") (name fb:en.the_tree_of_life_charles_darwin \"The Tree of Life: Charles Darwin\") (name fb:m.066lv1x \"The Politics of Evolution: Morphology, Medicine, and Reform in Radical London\") (name fb:en.darwin_on_trial \"Darwin on Trial\") (name fb:en.the_darwin_conspiracy \"The Darwin conspiracy\"))) (type (union fb:book.book))\nwhere did richard nixon die?\tCerebral edema\t9.89\tformula (fb:people.cause_of_death.people fb:en.richard_nixon)) (value (list (name fb:en.stroke Stroke) (name fb:en.cerebral_edema \"Cerebral edema\"))) (type fb:people.cause_of_death)\nwhat songs does smokey robinson sing?\tMy Guy\t15.154\tformula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.smokey_robinson))) (value (list (name fb:en.my_guy \"My Guy\") (name fb:en.my_girl \"My Girl\") (name fb:en.the_tracks_of_my_tears \"The Tracks of My Tears\") (name fb:m.0ql5dpr \"Come Spy With Me\"))) (type (union fb:music.composition))\nwhat songs does smokey robinson sing?\tMy Girl\t15.154\tformula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.smokey_robinson))) (value (list (name fb:en.my_guy \"My Guy\") (name fb:en.my_girl \"My Girl\") (name fb:en.the_tracks_of_my_tears \"The Tracks of My Tears\") (name fb:m.0ql5dpr \"Come Spy With Me\"))) (type (union fb:music.composition))\nwhat songs does smokey robinson sing?\tThe Tracks of My Tears\t15.154\tformula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.smokey_robinson))) (value (list (name fb:en.my_guy \"My Guy\") (name fb:en.my_girl \"My Girl\") (name fb:en.the_tracks_of_my_tears \"The Tracks of My Tears\") (name fb:m.0ql5dpr \"Come Spy With Me\"))) (type (union fb:music.composition))\nwhat songs does smokey robinson sing?\tCome Spy With Me\t15.154\tformula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.smokey_robinson))) (value (list (name fb:en.my_guy \"My Guy\") (name fb:en.my_girl \"My Girl\") (name fb:en.the_tracks_of_my_tears \"The Tracks of My Tears\") (name fb:m.0ql5dpr \"Come Spy With Me\"))) (type (union fb:music.composition))\nwhat is serbian language called?\tSerbian language\t9.842\tformula (!fb:language.language_writing_system.languages fb:en.serbian_cyrillic_alphabet)) (value (list (name fb:en.serbian_language \"Serbian language\"))) (type fb:language.human_language)\nwhat language is spoken in haiti today?\tFrench Language\t16.482\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.haiti))) (value (list (name fb:en.french \"French Language\") (name fb:en.haitian_creole_language \"Haitian Creole French Language\"))) (type (union fb:language.human_language))\nwhat language is spoken in haiti today?\tHaitian Creole French Language\t16.482\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.haiti))) (value (list (name fb:en.french \"French Language\") (name fb:en.haitian_creole_language \"Haitian Creole French Language\"))) (type (union fb:language.human_language))\nwhat are the names of the city states in ancient greece?\tMakry Gialos\t18.144\tformula (and (fb:type.object.type fb:location.citytown) (!fb:location.location.contains fb:en.greece))) (value (list (name fb:en.patras Patras) (name fb:en.athens Athens) (name fb:en.ierapetra Ierapetra) (name fb:en.oichalia_greece Oichalia) (name fb:en.makrygialos \"Makry Gialos\") (name fb:en.mytilene Mytilene) (name fb:en.gargalianoi Gargalianoi) (name fb:en.livadeia Livadeia) (name fb:en.salonika_greece Thessaloniki) (name fb:en.ismara Ismara))) (type fb:location.citytown)\nwho played barbara gordon batgirl?\tMelissa Gilbert\t5.763\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.barbara_gordon)) (value (list (name fb:en.melissa_gilbert \"Melissa Gilbert\") (name fb:en.yvonne_craig \"Yvonne Craig\"))) (type fb:tv.tv_actor)\nwho played barbara gordon batgirl?\tYvonne Craig\t5.763\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.barbara_gordon)) (value (list (name fb:en.melissa_gilbert \"Melissa Gilbert\") (name fb:en.yvonne_craig \"Yvonne Craig\"))) (type fb:tv.tv_actor)\nwhat basketball teams has shaq played for?\tTony Gwynn\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tDan Bonner\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tStephen Black\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tPeter Scantlebury\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tLindsay Bowen\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tKelvin dela Peña\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tJoe Ruklick\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tMaurice Girardot\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tFred Hill\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhat basketball teams has shaq played for?\tEmir Preldžić\t5.168\tformula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn \"Tony Gwynn\") (name fb:en.dan_bonner \"Dan Bonner\") (name fb:en.stephen_black \"Stephen Black\") (name fb:en.peter_scantlebury \"Peter Scantlebury\") (name fb:en.lindsay_bowen \"Lindsay Bowen\") (name fb:en.kelvin_dela_pena \"Kelvin dela Peña\") (name fb:en.joe_ruklick \"Joe Ruklick\") (name fb:en.maurice_girardot \"Maurice Girardot\") (name fb:en.fred_hill_1959 \"Fred Hill\") (name fb:en.emir_preld_i \"Emir Preldžić\"))) (type fb:sports.pro_athlete)\nwhere is jay leno from?\tJudd Apatow\t1.009\tformula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow \"Judd Apatow\") (name fb:en.conan_obrien \"Conan O'Brien\") (name fb:en.jimmy_fallon \"Jimmy Fallon\") (name fb:en.patton_oswalt \"Patton Oswalt\") (name fb:en.dennis_miller \"Dennis Miller\") (name fb:en.jimmy_dore \"Jimmy Dore\") (name fb:en.ray_ellin \"Ray Ellin\") (name fb:en.cyrus_broacha \"Cyrus Broacha\"))) (type fb:influence.influence_node)\nwhere is jay leno from?\tConan O'Brien\t1.009\tformula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow \"Judd Apatow\") (name fb:en.conan_obrien \"Conan O'Brien\") (name fb:en.jimmy_fallon \"Jimmy Fallon\") (name fb:en.patton_oswalt \"Patton Oswalt\") (name fb:en.dennis_miller \"Dennis Miller\") (name fb:en.jimmy_dore \"Jimmy Dore\") (name fb:en.ray_ellin \"Ray Ellin\") (name fb:en.cyrus_broacha \"Cyrus Broacha\"))) (type fb:influence.influence_node)\nwhere is jay leno from?\tJimmy Fallon\t1.009\tformula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow \"Judd Apatow\") (name fb:en.conan_obrien \"Conan O'Brien\") (name fb:en.jimmy_fallon \"Jimmy Fallon\") (name fb:en.patton_oswalt \"Patton Oswalt\") (name fb:en.dennis_miller \"Dennis Miller\") (name fb:en.jimmy_dore \"Jimmy Dore\") (name fb:en.ray_ellin \"Ray Ellin\") (name fb:en.cyrus_broacha \"Cyrus Broacha\"))) (type fb:influence.influence_node)\nwhere is jay leno from?\tPatton Oswalt\t1.009\tformula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow \"Judd Apatow\") (name fb:en.conan_obrien \"Conan O'Brien\") (name fb:en.jimmy_fallon \"Jimmy Fallon\") (name fb:en.patton_oswalt \"Patton Oswalt\") (name fb:en.dennis_miller \"Dennis Miller\") (name fb:en.jimmy_dore \"Jimmy Dore\") (name fb:en.ray_ellin \"Ray Ellin\") (name fb:en.cyrus_broacha \"Cyrus Broacha\"))) (type fb:influence.influence_node)\nwhere is jay leno from?\tDennis Miller\t1.009\tformula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow \"Judd Apatow\") (name fb:en.conan_obrien \"Conan O'Brien\") (name fb:en.jimmy_fallon \"Jimmy Fallon\") (name fb:en.patton_oswalt \"Patton Oswalt\") (name fb:en.dennis_miller \"Dennis Miller\") (name fb:en.jimmy_dore \"Jimmy Dore\") (name fb:en.ray_ellin \"Ray Ellin\") (name fb:en.cyrus_broacha \"Cyrus Broacha\"))) (type fb:influence.influence_node)\nwhere is jay leno from?\tJimmy Dore\t1.009\tformula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow \"Judd Apatow\") (name fb:en.conan_obrien \"Conan O'Brien\") (name fb:en.jimmy_fallon \"Jimmy Fallon\") (name fb:en.patton_oswalt \"Patton Oswalt\") (name fb:en.dennis_miller \"Dennis Miller\") (name fb:en.jimmy_dore \"Jimmy Dore\") (name fb:en.ray_ellin \"Ray Ellin\") (name fb:en.cyrus_broacha \"Cyrus Broacha\"))) (type fb:influence.influence_node)\nwhere is jay leno from?\tRay Ellin\t1.009\tformula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow \"Judd Apatow\") (name fb:en.conan_obrien \"Conan O'Brien\") (name fb:en.jimmy_fallon \"Jimmy Fallon\") (name fb:en.patton_oswalt \"Patton Oswalt\") (name fb:en.dennis_miller \"Dennis Miller\") (name fb:en.jimmy_dore \"Jimmy Dore\") (name fb:en.ray_ellin \"Ray Ellin\") (name fb:en.cyrus_broacha \"Cyrus Broacha\"))) (type fb:influence.influence_node)\nwhere is jay leno from?\tCyrus Broacha\t1.009\tformula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow \"Judd Apatow\") (name fb:en.conan_obrien \"Conan O'Brien\") (name fb:en.jimmy_fallon \"Jimmy Fallon\") (name fb:en.patton_oswalt \"Patton Oswalt\") (name fb:en.dennis_miller \"Dennis Miller\") (name fb:en.jimmy_dore \"Jimmy Dore\") (name fb:en.ray_ellin \"Ray Ellin\") (name fb:en.cyrus_broacha \"Cyrus Broacha\"))) (type fb:influence.influence_node)\nwhat language do people from thailand speak?\tThai Language\t11.28\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.thailand))) (value (list (name fb:en.thai_language \"Thai Language\"))) (type (union fb:language.human_language))\nwho did armie hammer play in the social network?\tTyler Winklevoss\t11.348\tformula (!fb:film.performance.character (and (!fb:film.actor.film fb:en.armie_hammer) (fb:film.performance.film fb:en.the_social_network)))) (value (list (name fb:m.09tb_f3 \"Tyler Winklevoss\") (name fb:m.09tbj8d \"Cameron Winklevoss\"))) (type fb:film.film_character)\nwho did armie hammer play in the social network?\tCameron Winklevoss\t11.348\tformula (!fb:film.performance.character (and (!fb:film.actor.film fb:en.armie_hammer) (fb:film.performance.film fb:en.the_social_network)))) (value (list (name fb:m.09tb_f3 \"Tyler Winklevoss\") (name fb:m.09tbj8d \"Cameron Winklevoss\"))) (type fb:film.film_character)\nwhat was thomas jefferson role in the declaration of independence?\tAssociate Justice of the Supreme Court of the United States\t9.897\tformula ((lambda x (!fb:people.appointment.appointed_role (!fb:people.appointer.appointment_made (var x)))) fb:en.thomas_jefferson)) (value (list (name fb:en.associate_justice_of_the_supreme_court_of_the_united_states \"Associate Justice of the Supreme Court of the United States\"))) (type fb:people.appointed_role)\nwhat was the book written by charles darwin?\tThe Correspondence of Charles Darwin, Volume 1: 1821-1836\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tOrigen De Las Especies\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tThe Origin of Species\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tThe Expression of the Emotions in Man and Animals\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tDiary of the voyage of H.M.S. Beagle\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tThe zoology of the voyage of H.M.S. Beagle during the years 1832-1836\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tThe Correspondence of Charles Darwin, Volume 4: 1847-1850\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tOn the origin of species by means of natural selection\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tThe Structure and Distribution of Coral Reefs\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwhat was the book written by charles darwin?\tThe Correspondence of Charles Darwin, Volume 18: 1870\t18.37\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b \"The Correspondence of Charles Darwin, Volume 1: 1821-1836\") (name fb:en.origen_de_las_especies \"Origen De Las Especies\") (name fb:en.the_origin_of_species \"The Origin of Species\") (name fb:en.the_expression_of_the_emotions_in_man_and_animals \"The Expression of the Emotions in Man and Animals\") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle \"Diary of the voyage of H.M.S. Beagle\") (name fb:m.0c1t1nf \"The zoology of the voyage of H.M.S. Beagle during the years 1832-1836\") (name fb:m.0f0c2xv \"The Correspondence of Charles Darwin, Volume 4: 1847-1850\") (name fb:m.0c1t1n1 \"On the origin of species by means of natural selection\") (name fb:m.05f9n1z \"The Structure and Distribution of Coral Reefs\") (name fb:m.0f0jl1d \"The Correspondence of Charles Darwin, Volume 18: 1870\"))) (type (union fb:book.book))\nwho did tim tebow play college football for?\tUniversity of Florida\t6.551\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tim_tebow))) (value (list (name fb:en.uf \"University of Florida\"))) (type (union fb:education.university))\nwho does peyton manning play football for?\tIndianapolis Colts\t8.754\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.peyton_manning)) (value (list (name fb:en.indianapolis_colts \"Indianapolis Colts\") (name fb:en.denver_broncos \"Denver Broncos\"))) (type fb:sports.sports_team)\nwho does peyton manning play football for?\tDenver Broncos\t8.754\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.peyton_manning)) (value (list (name fb:en.indianapolis_colts \"Indianapolis Colts\") (name fb:en.denver_broncos \"Denver Broncos\"))) (type fb:sports.sports_team)\nwhat was robert burns?\tMyocardial infarction\t1.119\tformula (fb:people.cause_of_death.people fb:en.robert_burns_woodward)) (value (list (name fb:en.heart_failure \"Myocardial infarction\"))) (type fb:people.cause_of_death)\nwhat did anton van leeuwenhoek contribute to our knowledge of cells?\tLeeuwenhoek Medal\t9.791\tformula (fb:symbols.namesake.named_after fb:en.anton_van_leeuwenhoek)) (value (list (name fb:en.leeuwenhoek_medal \"Leeuwenhoek Medal\") (name fb:en.2766_leeuwenhoek \"2766 Leeuwenhoek\") (name fb:en.leeuwenhoek_lecture \"Leeuwenhoek Lecture\") (name fb:en.leeuwenhoek Leeuwenhoek))) (type fb:symbols.namesake)\nwhat did anton van leeuwenhoek contribute to our knowledge of cells?\t2766 Leeuwenhoek\t9.791\tformula (fb:symbols.namesake.named_after fb:en.anton_van_leeuwenhoek)) (value (list (name fb:en.leeuwenhoek_medal \"Leeuwenhoek Medal\") (name fb:en.2766_leeuwenhoek \"2766 Leeuwenhoek\") (name fb:en.leeuwenhoek_lecture \"Leeuwenhoek Lecture\") (name fb:en.leeuwenhoek Leeuwenhoek))) (type fb:symbols.namesake)\nwhat did anton van leeuwenhoek contribute to our knowledge of cells?\tLeeuwenhoek Lecture\t9.791\tformula (fb:symbols.namesake.named_after fb:en.anton_van_leeuwenhoek)) (value (list (name fb:en.leeuwenhoek_medal \"Leeuwenhoek Medal\") (name fb:en.2766_leeuwenhoek \"2766 Leeuwenhoek\") (name fb:en.leeuwenhoek_lecture \"Leeuwenhoek Lecture\") (name fb:en.leeuwenhoek Leeuwenhoek))) (type fb:symbols.namesake)\nwho did the voice of darth vader in episode 3?\tDavid Prowse\t15.283\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did the voice of darth vader in episode 3?\tJames Earl Jones\t15.283\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did the voice of darth vader in episode 3?\tHayden Christensen\t15.283\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did the voice of darth vader in episode 3?\tMatt Lanter\t15.283\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did the voice of darth vader in episode 3?\tSebastian Shaw\t15.283\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did the voice of darth vader in episode 3?\tRobert E. Bean\t15.283\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did the voice of darth vader in episode 3?\tJake Lloyd\t15.283\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwhat super bowl did peyton manning win?\tKids' Choice Award for Favorite Male Athlete\t10.502\tformula ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.peyton_manning)) (value (list (name fb:m.0sgkp4y \"Kids' Choice Award for Favorite Male Athlete\") (name fb:en.james_e_sullivan_award \"James E. Sullivan Award\"))) (type fb:award.award_category)\nwhat super bowl did peyton manning win?\tJames E. Sullivan Award\t10.502\tformula ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.peyton_manning)) (value (list (name fb:m.0sgkp4y \"Kids' Choice Award for Favorite Male Athlete\") (name fb:en.james_e_sullivan_award \"James E. Sullivan Award\"))) (type fb:award.award_category)\nwho fought in the gulf war 1991?\tColin Powell\t8.689\tformula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell \"Colin Powell\") (name fb:en.james_l_jones \"James L. Jones\") (name fb:en.jeffrey_chessani \"Jeffrey Chessani\") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 \"John J. Yeosock\") (name fb:en.chuck_horner \"Chuck Horner\") (name fb:en.jeffrey_shears_ashby \"Jeffrey Ashby\") (name fb:en.anthony_loyd \"Anthony Loyd\"))) (type fb:military.military_person)\nwho fought in the gulf war 1991?\tJames L. Jones\t8.689\tformula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell \"Colin Powell\") (name fb:en.james_l_jones \"James L. Jones\") (name fb:en.jeffrey_chessani \"Jeffrey Chessani\") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 \"John J. Yeosock\") (name fb:en.chuck_horner \"Chuck Horner\") (name fb:en.jeffrey_shears_ashby \"Jeffrey Ashby\") (name fb:en.anthony_loyd \"Anthony Loyd\"))) (type fb:military.military_person)\nwho fought in the gulf war 1991?\tJeffrey Chessani\t8.689\tformula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell \"Colin Powell\") (name fb:en.james_l_jones \"James L. Jones\") (name fb:en.jeffrey_chessani \"Jeffrey Chessani\") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 \"John J. Yeosock\") (name fb:en.chuck_horner \"Chuck Horner\") (name fb:en.jeffrey_shears_ashby \"Jeffrey Ashby\") (name fb:en.anthony_loyd \"Anthony Loyd\"))) (type fb:military.military_person)\nwho fought in the gulf war 1991?\tJohn J. Yeosock\t8.689\tformula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell \"Colin Powell\") (name fb:en.james_l_jones \"James L. Jones\") (name fb:en.jeffrey_chessani \"Jeffrey Chessani\") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 \"John J. Yeosock\") (name fb:en.chuck_horner \"Chuck Horner\") (name fb:en.jeffrey_shears_ashby \"Jeffrey Ashby\") (name fb:en.anthony_loyd \"Anthony Loyd\"))) (type fb:military.military_person)\nwho fought in the gulf war 1991?\tChuck Horner\t8.689\tformula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell \"Colin Powell\") (name fb:en.james_l_jones \"James L. Jones\") (name fb:en.jeffrey_chessani \"Jeffrey Chessani\") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 \"John J. Yeosock\") (name fb:en.chuck_horner \"Chuck Horner\") (name fb:en.jeffrey_shears_ashby \"Jeffrey Ashby\") (name fb:en.anthony_loyd \"Anthony Loyd\"))) (type fb:military.military_person)\nwho fought in the gulf war 1991?\tJeffrey Ashby\t8.689\tformula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell \"Colin Powell\") (name fb:en.james_l_jones \"James L. Jones\") (name fb:en.jeffrey_chessani \"Jeffrey Chessani\") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 \"John J. Yeosock\") (name fb:en.chuck_horner \"Chuck Horner\") (name fb:en.jeffrey_shears_ashby \"Jeffrey Ashby\") (name fb:en.anthony_loyd \"Anthony Loyd\"))) (type fb:military.military_person)\nwho fought in the gulf war 1991?\tAnthony Loyd\t8.689\tformula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell \"Colin Powell\") (name fb:en.james_l_jones \"James L. Jones\") (name fb:en.jeffrey_chessani \"Jeffrey Chessani\") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 \"John J. Yeosock\") (name fb:en.chuck_horner \"Chuck Horner\") (name fb:en.jeffrey_shears_ashby \"Jeffrey Ashby\") (name fb:en.anthony_loyd \"Anthony Loyd\"))) (type fb:military.military_person)\nwho plays london tipton in suite life on deck?\tBrenda Song\t3.849\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.london_tipton)) (value (list (name fb:en.brenda_song \"Brenda Song\"))) (type fb:film.actor)\nwhat was the ancient chinese writing system?\t'Phags-pa script\t9.104\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat was the ancient chinese writing system?\tNüshu script\t9.104\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat was the ancient chinese writing system?\tChinese characters\t9.104\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat was the ancient chinese writing system?\tTraditional Chinese characters\t9.104\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat was the ancient chinese writing system?\tSimplified Chinese character\t9.104\tformula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script \"'Phags-pa script\") (name fb:en.nu_shu \"Nüshu script\") (name fb:en.chinese_character \"Chinese characters\") (name fb:en.traditional_chinese_character \"Traditional Chinese characters\") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character \"Simplified Chinese character\"))) (type fb:language.language_writing_system)\nwhat team did david beckham play for in 2011?\tReal Madrid C.F.\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team did david beckham play for in 2011?\tLA Galaxy\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team did david beckham play for in 2011?\tA.C. Milan\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team did david beckham play for in 2011?\tParis Saint-Germain F.C.\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team did david beckham play for in 2011?\tPreston North End F.C.\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team did david beckham play for in 2011?\tManchester United F.C.\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team did david beckham play for in 2011?\tEngland national under-21 football team\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team did david beckham play for in 2011?\tEngland national football team\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat all does google now do?\tGoogle Earth\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat all does google now do?\tGoogle Maps\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat all does google now do?\tNexus One\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat all does google now do?\tGoogle Buzz\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat all does google now do?\tGoogle Wave\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat all does google now do?\tNexus 7\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat all does google now do?\tNexus 10\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat all does google now do?\tGoogle Chrome\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat all does google now do?\tNexus S\t15.241\tformula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth \"Google Earth\") (name fb:en.google_maps \"Google Maps\") (name fb:en.nexus_one \"Nexus One\") (name fb:m.0b6g2kz \"Google Buzz\") (name fb:en.google_wave \"Google Wave\") (name fb:m.0k0p036 \"Nexus 7\") (name fb:m.0nb7n8f \"Nexus 10\") (name fb:en.google_chrome \"Google Chrome\") (name fb:m.0fpj3tb \"Nexus S\"))) (type fb:business.consumer_product)\nwhat language does egyptian people speak?\tEgyptian language\t7.341\tformula (!fb:language.language_writing_system.languages fb:en.egyptian_hieroglyphs)) (value (list (name fb:en.egyptian_languages \"Egyptian language\"))) (type fb:language.human_language)\nwhat are abraham sons names?\tAbrahamic religions\t9.09\tformula (!fb:religion.founding_figure.religion_founded fb:en.abraham)) (value (list (name fb:en.judaism Judaism) (name fb:en.abrahamic_religion \"Abrahamic religions\"))) (type fb:religion.religion)\nwho wrote the jana gana mana?\tRabindranath Tagore\t5.901\tformula (!fb:music.composition.composer fb:en.jana_gana_mana)) (value (list (name fb:en.rabindranath_tagore \"Rabindranath Tagore\") (name fb:en.ram_singh_thakur \"Ram Singh Thakur\"))) (type fb:music.composer)\nwho wrote the jana gana mana?\tRam Singh Thakur\t5.901\tformula (!fb:music.composition.composer fb:en.jana_gana_mana)) (value (list (name fb:en.rabindranath_tagore \"Rabindranath Tagore\") (name fb:en.ram_singh_thakur \"Ram Singh Thakur\"))) (type fb:music.composer)\nwhat type of cancer did gilda radner die of?\tOvarian cancer\t17.681\tformula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.gilda_radner))) (value (list (name fb:en.ovarian_cancer \"Ovarian cancer\"))) (type fb:people.cause_of_death)\nwho plays juni cortez?\tDaryl Sabara\t6.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.juni_cortez)) (value (list (name fb:en.daryl_sabara \"Daryl Sabara\"))) (type fb:film.actor)\nwhat was lucille ball?\tLucy Barker\t4.367\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.lucille_ball)) (value (list (name fb:m.0gz7n28 \"Lucy Barker\") (name fb:m.0gz7n2k \"Lucy Carter\") (name fb:m.0rz85y9 \"Lucy Ricardo\") (name fb:m.0gz6vvg \"Lucy Carmichael\"))) (type fb:tv.tv_character)\nwhat was lucille ball?\tLucy Carter\t4.367\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.lucille_ball)) (value (list (name fb:m.0gz7n28 \"Lucy Barker\") (name fb:m.0gz7n2k \"Lucy Carter\") (name fb:m.0rz85y9 \"Lucy Ricardo\") (name fb:m.0gz6vvg \"Lucy Carmichael\"))) (type fb:tv.tv_character)\nwhat was lucille ball?\tLucy Ricardo\t4.367\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.lucille_ball)) (value (list (name fb:m.0gz7n28 \"Lucy Barker\") (name fb:m.0gz7n2k \"Lucy Carter\") (name fb:m.0rz85y9 \"Lucy Ricardo\") (name fb:m.0gz6vvg \"Lucy Carmichael\"))) (type fb:tv.tv_character)\nwhat was lucille ball?\tLucy Carmichael\t4.367\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.lucille_ball)) (value (list (name fb:m.0gz7n28 \"Lucy Barker\") (name fb:m.0gz7n2k \"Lucy Carter\") (name fb:m.0rz85y9 \"Lucy Ricardo\") (name fb:m.0gz6vvg \"Lucy Carmichael\"))) (type fb:tv.tv_character)\nwho did carrie ann inaba get engaged to?\tJesse Sloan\t12.951\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.carrie_ann_inaba)) (value (list (name fb:m.0j6j0lv \"Jesse Sloan\"))) (type fb:people.person)\nwho inspired obama?\tAdam Frankel\t2.439\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.barack_obama))) (value (list (name fb:en.adam_frankel \"Adam Frankel\") (name fb:m.04j4_qc \"Ben Rhodes\"))) (type fb:people.person)\nwho inspired obama?\tBen Rhodes\t2.439\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.barack_obama))) (value (list (name fb:en.adam_frankel \"Adam Frankel\") (name fb:m.04j4_qc \"Ben Rhodes\"))) (type fb:people.person)\nwho is michael j fox wife?\tTracy Pollan\t10.069\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.michael_j_fox)) (value (list (name fb:en.tracy_pollan \"Tracy Pollan\"))) (type fb:people.person)\nwhat type of books did agatha christie wrote?\tThe Complete Christie: An Agatha Christie Encyclopedia\t9.891\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf \"The Complete Christie: An Agatha Christie Encyclopedia\") (name fb:en.the_getaway_guide_to_agatha_christies_england \"The Getaway Guide to Agatha Christie's England\") (name fb:en.agatha_christie_and_the_eleven_missing_days \"Agatha Christie and the Eleven Missing Days\"))) (type (union fb:book.book))\nwhat type of books did agatha christie wrote?\tThe Getaway Guide to Agatha Christie's England\t9.891\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf \"The Complete Christie: An Agatha Christie Encyclopedia\") (name fb:en.the_getaway_guide_to_agatha_christies_england \"The Getaway Guide to Agatha Christie's England\") (name fb:en.agatha_christie_and_the_eleven_missing_days \"Agatha Christie and the Eleven Missing Days\"))) (type (union fb:book.book))\nwhat type of books did agatha christie wrote?\tAgatha Christie and the Eleven Missing Days\t9.891\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf \"The Complete Christie: An Agatha Christie Encyclopedia\") (name fb:en.the_getaway_guide_to_agatha_christies_england \"The Getaway Guide to Agatha Christie's England\") (name fb:en.agatha_christie_and_the_eleven_missing_days \"Agatha Christie and the Eleven Missing Days\"))) (type (union fb:book.book))\nwhat is jimi hendrix purple haze about?\tBass guitar\t7.488\tformula (!fb:music.group_member.instruments_played fb:en.jimi_hendrix)) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.bass_guitar \"Bass guitar\") (name fb:en.electric_guitar \"Electric guitar\") (name fb:en.drum Drum) (name fb:en.recorder recorder) (name fb:en.harpsichord harpsichord))) (type fb:music.instrument)\nwhat is jimi hendrix purple haze about?\tElectric guitar\t7.488\tformula (!fb:music.group_member.instruments_played fb:en.jimi_hendrix)) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.bass_guitar \"Bass guitar\") (name fb:en.electric_guitar \"Electric guitar\") (name fb:en.drum Drum) (name fb:en.recorder recorder) (name fb:en.harpsichord harpsichord))) (type fb:music.instrument)\nwhat are the four main languages spoken in spain?\tSpanish Language\t19.291\tformula (!fb:location.country.official_language fb:en.spain)) (value (list (name fb:en.spanish \"Spanish Language\"))) (type fb:language.human_language)\nwhat is the song anna kendrick sings in pitch perfect?\tHigh Society\t7.847\tformula ((lambda x (fb:theater.theater_production.cast (fb:theater.theater_role.actor (var x)))) fb:en.anna_kendrick)) (value (list (name fb:m.0ly0vsq \"High Society\"))) (type fb:theater.theater_production)\nwho developed the tcp ip reference model?\tBooks and Writers\t4.147\tformula (fb:internet.website.category fb:en.reference)) (value (list (name fb:m.0hgwnyb \"Books and Writers\") (name fb:en.encyclopedia_of_life \"Encyclopedia of Life\") (name fb:en.stands4 STANDS4) (name fb:en.ritchiewiki RitchieWiki) (name fb:en.wordster Wordster) (name fb:m.0hgwpbk \"Elizabeth Nesbitt Illustrators\") (name fb:en.wordnik Wordnik) (name fb:m.0hgwq1v \"Jacket Flap\"))) (type fb:internet.website)\nwho developed the tcp ip reference model?\tEncyclopedia of Life\t4.147\tformula (fb:internet.website.category fb:en.reference)) (value (list (name fb:m.0hgwnyb \"Books and Writers\") (name fb:en.encyclopedia_of_life \"Encyclopedia of Life\") (name fb:en.stands4 STANDS4) (name fb:en.ritchiewiki RitchieWiki) (name fb:en.wordster Wordster) (name fb:m.0hgwpbk \"Elizabeth Nesbitt Illustrators\") (name fb:en.wordnik Wordnik) (name fb:m.0hgwq1v \"Jacket Flap\"))) (type fb:internet.website)\nwho developed the tcp ip reference model?\tElizabeth Nesbitt Illustrators\t4.147\tformula (fb:internet.website.category fb:en.reference)) (value (list (name fb:m.0hgwnyb \"Books and Writers\") (name fb:en.encyclopedia_of_life \"Encyclopedia of Life\") (name fb:en.stands4 STANDS4) (name fb:en.ritchiewiki RitchieWiki) (name fb:en.wordster Wordster) (name fb:m.0hgwpbk \"Elizabeth Nesbitt Illustrators\") (name fb:en.wordnik Wordnik) (name fb:m.0hgwq1v \"Jacket Flap\"))) (type fb:internet.website)\nwho developed the tcp ip reference model?\tJacket Flap\t4.147\tformula (fb:internet.website.category fb:en.reference)) (value (list (name fb:m.0hgwnyb \"Books and Writers\") (name fb:en.encyclopedia_of_life \"Encyclopedia of Life\") (name fb:en.stands4 STANDS4) (name fb:en.ritchiewiki RitchieWiki) (name fb:en.wordster Wordster) (name fb:m.0hgwpbk \"Elizabeth Nesbitt Illustrators\") (name fb:en.wordnik Wordnik) (name fb:m.0hgwq1v \"Jacket Flap\"))) (type fb:internet.website)\nwho founded the pittsburgh steelers in 1933?\tKevin Colbert\t9.959\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:en.kevin_colbert \"Kevin Colbert\"))) (type fb:people.person)\nwhat college did albert einstein go to?\tETH Zurich\t19.53\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.albert_einstein))) (value (list (name fb:en.eth_zurich \"ETH Zurich\") (name fb:en.university_of_zurich \"University of Zurich\"))) (type fb:education.university)\nwhat college did albert einstein go to?\tUniversity of Zurich\t19.53\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.albert_einstein))) (value (list (name fb:en.eth_zurich \"ETH Zurich\") (name fb:en.university_of_zurich \"University of Zurich\"))) (type fb:education.university)\nwhat team does jordan own?\tAnadolu Efes S.K.\t14.89\tformula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.jordan_farmar)) (value (list (name fb:en.efes_pilsen_sk \"Anadolu Efes S.K.\"))) (type fb:basketball.basketball_team)\nwho is the state governor of tennessee?\tRobert E. Cooper, Jr.\t13.088\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr \"Robert E. Cooper, Jr.\") (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.bill_haslam \"Bill Haslam\") (name fb:en.phil_bredesen \"Phil Bredesen\") (name fb:en.james_k_polk \"James K. Polk\") (name fb:en.tre_hargett \"Tre Hargett\") (name fb:m.0cm8q_b \"Ken Givens\"))) (type fb:government.politician)\nwho is the state governor of tennessee?\tAndrew Johnson\t13.088\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr \"Robert E. Cooper, Jr.\") (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.bill_haslam \"Bill Haslam\") (name fb:en.phil_bredesen \"Phil Bredesen\") (name fb:en.james_k_polk \"James K. Polk\") (name fb:en.tre_hargett \"Tre Hargett\") (name fb:m.0cm8q_b \"Ken Givens\"))) (type fb:government.politician)\nwho is the state governor of tennessee?\tBill Haslam\t13.088\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr \"Robert E. Cooper, Jr.\") (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.bill_haslam \"Bill Haslam\") (name fb:en.phil_bredesen \"Phil Bredesen\") (name fb:en.james_k_polk \"James K. Polk\") (name fb:en.tre_hargett \"Tre Hargett\") (name fb:m.0cm8q_b \"Ken Givens\"))) (type fb:government.politician)\nwho is the state governor of tennessee?\tPhil Bredesen\t13.088\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr \"Robert E. Cooper, Jr.\") (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.bill_haslam \"Bill Haslam\") (name fb:en.phil_bredesen \"Phil Bredesen\") (name fb:en.james_k_polk \"James K. Polk\") (name fb:en.tre_hargett \"Tre Hargett\") (name fb:m.0cm8q_b \"Ken Givens\"))) (type fb:government.politician)\nwho is the state governor of tennessee?\tJames K. Polk\t13.088\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr \"Robert E. Cooper, Jr.\") (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.bill_haslam \"Bill Haslam\") (name fb:en.phil_bredesen \"Phil Bredesen\") (name fb:en.james_k_polk \"James K. Polk\") (name fb:en.tre_hargett \"Tre Hargett\") (name fb:m.0cm8q_b \"Ken Givens\"))) (type fb:government.politician)\nwho is the state governor of tennessee?\tTre Hargett\t13.088\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr \"Robert E. Cooper, Jr.\") (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.bill_haslam \"Bill Haslam\") (name fb:en.phil_bredesen \"Phil Bredesen\") (name fb:en.james_k_polk \"James K. Polk\") (name fb:en.tre_hargett \"Tre Hargett\") (name fb:m.0cm8q_b \"Ken Givens\"))) (type fb:government.politician)\nwho is the state governor of tennessee?\tKen Givens\t13.088\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr \"Robert E. Cooper, Jr.\") (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.bill_haslam \"Bill Haslam\") (name fb:en.phil_bredesen \"Phil Bredesen\") (name fb:en.james_k_polk \"James K. Polk\") (name fb:en.tre_hargett \"Tre Hargett\") (name fb:m.0cm8q_b \"Ken Givens\"))) (type fb:government.politician)\nwho is eli whitney and what did he invent?\tCotton gin\t23.479\tformula (fb:law.invention.inventor fb:en.eli_whitney)) (value (list (name fb:en.cotton_gin \"Cotton gin\") (name fb:en.milling_machine Milling) (name fb:en.interchangeable_parts \"Interchangeable parts\"))) (type fb:law.invention)\nwho is eli whitney and what did he invent?\tInterchangeable parts\t23.479\tformula (fb:law.invention.inventor fb:en.eli_whitney)) (value (list (name fb:en.cotton_gin \"Cotton gin\") (name fb:en.milling_machine Milling) (name fb:en.interchangeable_parts \"Interchangeable parts\"))) (type fb:law.invention)\nwhat do portuguese people speak?\tPortuguese Language\t10.925\tformula (!fb:people.ethnicity.languages_spoken fb:en.portuguese_people)) (value (list (name fb:en.portuguese \"Portuguese Language\"))) (type fb:language.human_language)\nwhat language does cuba speak?\tSpanish Language\t16.572\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.cuba))) (value (list (name fb:en.spanish \"Spanish Language\"))) (type (union fb:language.human_language))\nwhere did aaron rodgers go to high school?\tUniversity of California, Berkeley\t14.918\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.aaron_rodgers)))) (value (list (name fb:en.university_of_california_berkeley \"University of California, Berkeley\") (name fb:en.butte_college \"Butte College\") (name fb:en.pleasant_valley_high_school \"Pleasant Valley High School\"))) (type fb:education.educational_institution)\nwhere did aaron rodgers go to high school?\tButte College\t14.918\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.aaron_rodgers)))) (value (list (name fb:en.university_of_california_berkeley \"University of California, Berkeley\") (name fb:en.butte_college \"Butte College\") (name fb:en.pleasant_valley_high_school \"Pleasant Valley High School\"))) (type fb:education.educational_institution)\nwhere did aaron rodgers go to high school?\tPleasant Valley High School\t14.918\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.aaron_rodgers)))) (value (list (name fb:en.university_of_california_berkeley \"University of California, Berkeley\") (name fb:en.butte_college \"Butte College\") (name fb:en.pleasant_valley_high_school \"Pleasant Valley High School\"))) (type fb:education.educational_institution)\nwhat are the sights to see in madrid?\tMuseo del Prado\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tPlaza Mayor, Madrid\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tMadrid Arena\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tEl Escorial\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tThyssen-Bornemisza Museum\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tMuseo Sorolla\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tRoyal Palace of Madrid\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tMuseo Nacional Centro de Arte Reina Sofía\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tParque Warner Madrid\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat are the sights to see in madrid?\tPaseo del Prado\t12.444\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum \"Museo del Prado\") (name fb:en.plaza_mayor_of_madrid \"Plaza Mayor, Madrid\") (name fb:en.madrid_arena \"Madrid Arena\") (name fb:en.el_escorial \"El Escorial\") (name fb:en.museo_thyssen-bornemisza \"Thyssen-Bornemisza Museum\") (name fb:en.museo_sorolla \"Museo Sorolla\") (name fb:en.royal_palace_of_madrid \"Royal Palace of Madrid\") (name fb:en.museo_nacional_centro_de_arte_reina_sofia \"Museo Nacional Centro de Arte Reina Sofía\") (name fb:en.parque_warner_madrid \"Parque Warner Madrid\") (name fb:en.paseo_del_prado \"Paseo del Prado\"))) (type fb:travel.tourist_attraction)\nwhat year was george w bush elected?\tContra Costa County\t9.526\tformula ((lambda x (fb:user.coco.voting.voting_stat_region.election_results (fb:user.coco.voting.election_results.politician (var x)))) fb:en.george_w_bush)) (value (list (name fb:en.contra_costa_county \"Contra Costa County\") (name fb:en.napa_county \"Napa County\") (name fb:en.alameda_county \"Alameda County\"))) (type fb:user.coco.voting.voting_stat_region)\nwhat year was george w bush elected?\tNapa County\t9.526\tformula ((lambda x (fb:user.coco.voting.voting_stat_region.election_results (fb:user.coco.voting.election_results.politician (var x)))) fb:en.george_w_bush)) (value (list (name fb:en.contra_costa_county \"Contra Costa County\") (name fb:en.napa_county \"Napa County\") (name fb:en.alameda_county \"Alameda County\"))) (type fb:user.coco.voting.voting_stat_region)\nwhat year was george w bush elected?\tAlameda County\t9.526\tformula ((lambda x (fb:user.coco.voting.voting_stat_region.election_results (fb:user.coco.voting.election_results.politician (var x)))) fb:en.george_w_bush)) (value (list (name fb:en.contra_costa_county \"Contra Costa County\") (name fb:en.napa_county \"Napa County\") (name fb:en.alameda_county \"Alameda County\"))) (type fb:user.coco.voting.voting_stat_region)\nwhat time zone am i in california?\tPacific Time Zone\t27.27\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.california))) (value (list (name fb:en.pacific_time_zone \"Pacific Time Zone\") (name fb:en.utc-8 UTC-8))) (type (union fb:time.time_zone))\nwhere is mission san buenaventura located?\tVentura County\t6.34\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.mission_san_buenaventura))) (value (list (name fb:en.93001 93001) (name fb:en.ventura_county \"Ventura County\"))) (type fb:location.location)\nwho was the italian leader in ww1?\tEntertainment Weekly annotation index\t7.413\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.italian)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwho was the italian leader in ww1?\tWSJ Speakeasy Index\t7.413\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.italian)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwhat time in hilo hawaii?\tHawaii–Aleutian Time Zone\t2.662\tformula (!fb:location.location.time_zones fb:en.hilo)) (value (list (name fb:en.hawaii-aleutian_time_zone \"Hawaii–Aleutian Time Zone\"))) (type fb:time.time_zone)\nwhere did rudolf virchow conduct his research?\tGerman Empire\t4.333\tformula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.rudolf_ludwig_karl_virchow))) (value (list (name fb:en.german_empire \"German Empire\"))) (type fb:location.location)\nwhat university did gordon brown attend?\tUniversity of Edinburgh\t12.746\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.gordon_brown))) (value (list (name fb:en.university_of_edinburgh \"University of Edinburgh\"))) (type fb:education.university)\nwhat countries does greece share borders with?\tRepublic of Macedonia\t19.949\tformula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.greece))) (value (list (name fb:en.bulgaria Bulgaria) (name fb:en.republic_of_macedonia \"Republic of Macedonia\") (name fb:en.albania_france Albania) (name fb:en.turkey Turkey))) (type fb:location.country)\nwhat year did the seahawks win the superbowl?\tSuper Bowl XL\t10.661\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.runner_up fb:en.seattle_seahawks))) (value (list (name fb:en.super_bowl_xl \"Super Bowl XL\"))) (type (union fb:sports.sports_championship_event))\nwho plays donna noble?\tCatherine Tate\t5.787\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.donna_noble)) (value (list (name fb:en.catherine_tate \"Catherine Tate\"))) (type fb:tv.tv_actor)\nwhat was dr seuss education?\tDartmouth College\t15.355\tformula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.dr_seuss)) (value (list (name fb:en.dartmouth_college \"Dartmouth College\") (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.lincoln_college_oxford \"Lincoln College, Oxford\"))) (type fb:education.educational_institution)\nwhat was dr seuss education?\tUniversity of Oxford\t15.355\tformula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.dr_seuss)) (value (list (name fb:en.dartmouth_college \"Dartmouth College\") (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.lincoln_college_oxford \"Lincoln College, Oxford\"))) (type fb:education.educational_institution)\nwhat was dr seuss education?\tLincoln College, Oxford\t15.355\tformula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.dr_seuss)) (value (list (name fb:en.dartmouth_college \"Dartmouth College\") (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.lincoln_college_oxford \"Lincoln College, Oxford\"))) (type fb:education.educational_institution)\nwhere did queensland get its name from?\tQueen Victoria\t6.523\tformula (!fb:symbols.namesake.named_after fb:en.queensland)) (value (list (name fb:en.victoria_of_the_united_kingdom \"Queen Victoria\"))) (type fb:symbols.name_source)\nwhat document did james madison write?\tUnited States Constitution\t11.195\tformula (!fb:user.tfmorris.default_domain.signatory.documents_signed fb:en.james_madison)) (value (list (name fb:en.united_states_constitution \"United States Constitution\"))) (type fb:user.tfmorris.default_domain.document)\nwhat are the three official languages of belgium?\tDutch Language\t22.112\tformula (!fb:location.country.official_language fb:en.belgium)) (value (list (name fb:en.dutch_language \"Dutch Language\") (name fb:en.german_language \"German Language\") (name fb:en.french \"French Language\"))) (type fb:language.human_language)\nwhat are the three official languages of belgium?\tGerman Language\t22.112\tformula (!fb:location.country.official_language fb:en.belgium)) (value (list (name fb:en.dutch_language \"Dutch Language\") (name fb:en.german_language \"German Language\") (name fb:en.french \"French Language\"))) (type fb:language.human_language)\nwhat are the three official languages of belgium?\tFrench Language\t22.112\tformula (!fb:location.country.official_language fb:en.belgium)) (value (list (name fb:en.dutch_language \"Dutch Language\") (name fb:en.german_language \"German Language\") (name fb:en.french \"French Language\"))) (type fb:language.human_language)\nwho played bilbo in lord of the rings?\tMartin Freeman\t6.219\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman \"Martin Freeman\") (name fb:en.norman_bird \"Norman Bird\") (name fb:en.ian_holm \"Ian Holm\"))) (type fb:film.actor)\nwho played bilbo in lord of the rings?\tNorman Bird\t6.219\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman \"Martin Freeman\") (name fb:en.norman_bird \"Norman Bird\") (name fb:en.ian_holm \"Ian Holm\"))) (type fb:film.actor)\nwho played bilbo in lord of the rings?\tIan Holm\t6.219\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman \"Martin Freeman\") (name fb:en.norman_bird \"Norman Bird\") (name fb:en.ian_holm \"Ian Holm\"))) (type fb:film.actor)\nwhat airport do you fly into to get to destin fl?\tNorthwest Florida Regional Airport\t24.596\tformula (!fb:location.location.nearby_airports fb:en.destin)) (value (list (name fb:en.okaloosa_regional_airport \"Northwest Florida Regional Airport\") (name fb:en.destin_fort_walton_beach_airport \"Destin–Fort Walton Beach Airport\"))) (type fb:aviation.airport)\nwhat airport do you fly into to get to destin fl?\tDestin–Fort Walton Beach Airport\t24.596\tformula (!fb:location.location.nearby_airports fb:en.destin)) (value (list (name fb:en.okaloosa_regional_airport \"Northwest Florida Regional Airport\") (name fb:en.destin_fort_walton_beach_airport \"Destin–Fort Walton Beach Airport\"))) (type fb:aviation.airport)\nwhat do you call members of the senate?\tAndrew Pulkrabek\t14.871\tformula ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:m.0dnmtk4)) (value (list (name fb:m.0dxf27k \"Andrew Pulkrabek\") (name fb:m.0dsq4hl \"Oliver Franklin\") (name fb:m.0dt32_j \"Nick Drummond\"))) (type fb:music.group_member)\nwhat do you call members of the senate?\tOliver Franklin\t14.871\tformula ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:m.0dnmtk4)) (value (list (name fb:m.0dxf27k \"Andrew Pulkrabek\") (name fb:m.0dsq4hl \"Oliver Franklin\") (name fb:m.0dt32_j \"Nick Drummond\"))) (type fb:music.group_member)\nwhat do you call members of the senate?\tNick Drummond\t14.871\tformula ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:m.0dnmtk4)) (value (list (name fb:m.0dxf27k \"Andrew Pulkrabek\") (name fb:m.0dsq4hl \"Oliver Franklin\") (name fb:m.0dt32_j \"Nick Drummond\"))) (type fb:music.group_member)\nwhat team does colin kaepernick play for?\tSan Francisco 49ers\t14.875\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.colin_kaepernick))) (value (list (name fb:en.san_francisco_49ers \"San Francisco 49ers\") (name fb:en.nevada_wolf_pack_football \"Nevada Wolf Pack football\"))) (type fb:sports.sports_team)\nwhat team does colin kaepernick play for?\tNevada Wolf Pack football\t14.875\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.colin_kaepernick))) (value (list (name fb:en.san_francisco_49ers \"San Francisco 49ers\") (name fb:en.nevada_wolf_pack_football \"Nevada Wolf Pack football\"))) (type fb:sports.sports_team)\nwhere did joe flacco attend college?\tUniversity of Delaware\t9.343\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.joe_flacco)))) (value (list (name fb:en.university_of_delaware \"University of Delaware\"))) (type fb:education.university)\nwho is emma stone father?\tKrista Stone\t12.266\tformula (!fb:people.person.parents fb:en.emily_stone)) (value (list (name fb:m.0gx3qyj \"Krista Stone\") (name fb:m.0gx3qys \"Jeff Stone\"))) (type fb:people.person)\nwho is emma stone father?\tJeff Stone\t12.266\tformula (!fb:people.person.parents fb:en.emily_stone)) (value (list (name fb:m.0gx3qyj \"Krista Stone\") (name fb:m.0gx3qys \"Jeff Stone\"))) (type fb:people.person)\nwhere was theodore roosevelt buried?\tYoungs Memorial Cemetery\t8.355\tformula (and (fb:type.object.type fb:location.location) (fb:people.place_of_interment.interred_here fb:en.theodore_roosevelt))) (value (list (name fb:en.youngs_memorial_cemetery \"Youngs Memorial Cemetery\"))) (type fb:people.place_of_interment)\nwhere the missouri river ends?\tGlacier National Park\t2.565\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.missouri_river))) (value (list (name fb:en.glacier_national_park \"Glacier National Park\") (name fb:en.lewis_and_clark_national_historic_trail \"Lewis and Clark National Historic Trail\"))) (type fb:travel.tourist_attraction)\nwhere the missouri river ends?\tLewis and Clark National Historic Trail\t2.565\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.missouri_river))) (value (list (name fb:en.glacier_national_park \"Glacier National Park\") (name fb:en.lewis_and_clark_national_historic_trail \"Lewis and Clark National Historic Trail\"))) (type fb:travel.tourist_attraction)\nwhat type of currency do they use in thailand?\tThai baht\t22.106\tformula (!fb:location.country.currency_used fb:en.thailand)) (value (list (name fb:en.thai_baht \"Thai baht\"))) (type fb:finance.currency)\nwhat type of government does france use?\tCFP franc\t17.049\tformula (fb:finance.currency.countries_used fb:en.france)) (value (list (name fb:en.euro Euro) (name fb:en.cfp_franc \"CFP franc\"))) (type fb:finance.currency)\nwho rules denmark right now?\tChristian X of Denmark\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwho rules denmark right now?\tFrederick II of Denmark\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwho rules denmark right now?\tFrederick IV of Denmark\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwho rules denmark right now?\tEric I of Denmark\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwho rules denmark right now?\tCnut the Great\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwho rules denmark right now?\tChristian V of Denmark\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwho rules denmark right now?\tMargrethe II of Denmark\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwho rules denmark right now?\tFrederick I of Denmark\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwho rules denmark right now?\tFrederick VII of Denmark\t19.412\tformula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark \"Christian X of Denmark\") (name fb:en.frederick_ii_of_denmark \"Frederick II of Denmark\") (name fb:en.frederick_iv_of_denmark \"Frederick IV of Denmark\") (name fb:en.eric_i_of_denmark \"Eric I of Denmark\") (name fb:en.canute_the_great \"Cnut the Great\") (name fb:en.christian_v_of_denmark \"Christian V of Denmark\") (name fb:en.margrethe_ii_of_denmark \"Margrethe II of Denmark\") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark \"Frederick I of Denmark\") (name fb:en.frederick_vii_of_denmark \"Frederick VII of Denmark\"))) (type fb:royalty.monarch)\nwhere did bristol palin go to school?\tJuneau-Douglas High School\t9.865\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.bristol_palin)))) (value (list (name fb:en.juneau-douglas_high_school \"Juneau-Douglas High School\") (name fb:en.wasilla_high_school \"Wasilla High School\") (name fb:en.west_anchorage_high_school \"West Anchorage High School\"))) (type fb:education.educational_institution)\nwhere did bristol palin go to school?\tWasilla High School\t9.865\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.bristol_palin)))) (value (list (name fb:en.juneau-douglas_high_school \"Juneau-Douglas High School\") (name fb:en.wasilla_high_school \"Wasilla High School\") (name fb:en.west_anchorage_high_school \"West Anchorage High School\"))) (type fb:education.educational_institution)\nwhere did bristol palin go to school?\tWest Anchorage High School\t9.865\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.bristol_palin)))) (value (list (name fb:en.juneau-douglas_high_school \"Juneau-Douglas High School\") (name fb:en.wasilla_high_school \"Wasilla High School\") (name fb:en.west_anchorage_high_school \"West Anchorage High School\"))) (type fb:education.educational_institution)\nwhat region of the world is egypt associated with?\tMinya Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tAl Sharqia Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tAl Minufiyah\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tMatrouh Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tNew Valley Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tDakahlia Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tGharbia Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tRed Sea Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tNorth Sinai Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat region of the world is egypt associated with?\tSouth Sinai Governorate\t16.178\tformula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate \"Minya Governorate\") (name fb:en.ash_sharqiyah_governorate \"Al Sharqia Governorate\") (name fb:en.al_minufiyah \"Al Minufiyah\") (name fb:en.matruh \"Matrouh Governorate\") (name fb:en.al_wadi_al_jadid \"New Valley Governorate\") (name fb:en.ad_daqahliyah \"Dakahlia Governorate\") (name fb:en.al_gharbiyah_governorate \"Gharbia Governorate\") (name fb:en.al_bahr_al_ahmar \"Red Sea Governorate\") (name fb:en.shamal_sina \"North Sinai Governorate\") (name fb:en.janub_sina \"South Sinai Governorate\"))) (type fb:location.administrative_division)\nwhat did dr. seuss do?\tGeisel Library\t7.152\tformula (fb:symbols.namesake.named_after fb:en.dr_seuss)) (value (list (name fb:en.geisel_library \"Geisel Library\") (name fb:en.dr_seuss_memorial \"Dr. Seuss Memorial\"))) (type fb:symbols.namesake)\nwhat did dr. seuss do?\tDr. Seuss Memorial\t7.152\tformula (fb:symbols.namesake.named_after fb:en.dr_seuss)) (value (list (name fb:en.geisel_library \"Geisel Library\") (name fb:en.dr_seuss_memorial \"Dr. Seuss Memorial\"))) (type fb:symbols.namesake)\nwhere did drew brees go to college wikianswers?\tStanford Graduate School of Business\t11.198\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.drew_brees)))) (value (list (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.purdue_university \"Purdue University\"))) (type fb:education.university)\nwhere did drew brees go to college wikianswers?\tPurdue University\t11.198\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.drew_brees)))) (value (list (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.purdue_university \"Purdue University\"))) (type fb:education.university)\nwhat school did ben roethlisberger go to?\tMiami University\t17.838\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ben_roethlisberger))) (value (list (name fb:en.miami_university \"Miami University\"))) (type fb:education.educational_institution)\nwhat kind of guitar did george harrison use?\tFender Stratocaster\t17.799\tformula (and (fb:type.object.type fb:music.guitar) (!fb:music.guitarist.guitars_played fb:en.george_harrison))) (value (list (name fb:en.fender_stratocaster \"Fender Stratocaster\") (name fb:en.rickenbacker_360_12 \"Rickenbacker 360/12\"))) (type (union fb:music.guitar))\nwhat kind of guitar did george harrison use?\tRickenbacker 360/12\t17.799\tformula (and (fb:type.object.type fb:music.guitar) (!fb:music.guitarist.guitars_played fb:en.george_harrison))) (value (list (name fb:en.fender_stratocaster \"Fender Stratocaster\") (name fb:en.rickenbacker_360_12 \"Rickenbacker 360/12\"))) (type (union fb:music.guitar))\nwhat language do navajo people speak?\tEnglish Language\t13.038\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.navajo_people))) (value (list (name fb:en.english \"English Language\") (name fb:en.spanish \"Spanish Language\") (name fb:en.navajo_language \"Navajo Language\"))) (type fb:language.human_language)\nwhat language do navajo people speak?\tSpanish Language\t13.038\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.navajo_people))) (value (list (name fb:en.english \"English Language\") (name fb:en.spanish \"Spanish Language\") (name fb:en.navajo_language \"Navajo Language\"))) (type fb:language.human_language)\nwhat language do navajo people speak?\tNavajo Language\t13.038\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.navajo_people))) (value (list (name fb:en.english \"English Language\") (name fb:en.spanish \"Spanish Language\") (name fb:en.navajo_language \"Navajo Language\"))) (type fb:language.human_language)\nwhat are the landlocked countries in latin america?\tEl Salvador\t16.667\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.latin_america))) (value (list (name fb:en.mexico Mexico) (name fb:en.nicaragua Nicaragua) (name fb:en.venezuela Venezuela) (name fb:en.cuba Cuba) (name fb:en.haiti Haiti) (name fb:en.peru Peru) (name fb:en.bolivia Bolivia) (name fb:en.chile Chile) (name fb:en.el_salvador \"El Salvador\") (name fb:en.dominican_republic \"Dominican Republic\"))) (type (union fb:location.country))\nwhat are the landlocked countries in latin america?\tDominican Republic\t16.667\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.latin_america))) (value (list (name fb:en.mexico Mexico) (name fb:en.nicaragua Nicaragua) (name fb:en.venezuela Venezuela) (name fb:en.cuba Cuba) (name fb:en.haiti Haiti) (name fb:en.peru Peru) (name fb:en.bolivia Bolivia) (name fb:en.chile Chile) (name fb:en.el_salvador \"El Salvador\") (name fb:en.dominican_republic \"Dominican Republic\"))) (type (union fb:location.country))\nwhat type of government does iraq have now?\tParliamentary system\t15.011\tformula (fb:government.form_of_government.countries fb:en.iraq)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.republic Republic) (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.federal_republic \"Federal republic\"))) (type fb:government.form_of_government)\nwhat type of government does iraq have now?\tParliamentary republic\t15.011\tformula (fb:government.form_of_government.countries fb:en.iraq)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.republic Republic) (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.federal_republic \"Federal republic\"))) (type fb:government.form_of_government)\nwhat type of government does iraq have now?\tFederal republic\t15.011\tformula (fb:government.form_of_government.countries fb:en.iraq)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.republic Republic) (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.federal_republic \"Federal republic\"))) (type fb:government.form_of_government)\nwhere was the vietnam war location?\tSoutheast Asia\t12.078\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.location) (!fb:time.event.locations fb:en.vietnam_war)))) (value (list (name fb:en.southeast_asia \"Southeast Asia\") (name fb:en.vietnam Vietnam) (name fb:en.cambodia Cambodia) (name fb:en.laos Laos) (name fb:en.north_vietnam \"North Vietnam\") (name fb:en.south_vietnam \"South Vietnam\"))) (type fb:location.location)\nwhere was the vietnam war location?\tNorth Vietnam\t12.078\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.location) (!fb:time.event.locations fb:en.vietnam_war)))) (value (list (name fb:en.southeast_asia \"Southeast Asia\") (name fb:en.vietnam Vietnam) (name fb:en.cambodia Cambodia) (name fb:en.laos Laos) (name fb:en.north_vietnam \"North Vietnam\") (name fb:en.south_vietnam \"South Vietnam\"))) (type fb:location.location)\nwhere was the vietnam war location?\tSouth Vietnam\t12.078\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.location) (!fb:time.event.locations fb:en.vietnam_war)))) (value (list (name fb:en.southeast_asia \"Southeast Asia\") (name fb:en.vietnam Vietnam) (name fb:en.cambodia Cambodia) (name fb:en.laos Laos) (name fb:en.north_vietnam \"North Vietnam\") (name fb:en.south_vietnam \"South Vietnam\"))) (type fb:location.location)\nwho did gerald ford select as his vice president when he became president?\tRichard Nixon\t15.694\tformula (!fb:government.us_vice_president.to_president fb:en.gerald_ford)) (value (list (name fb:en.richard_nixon \"Richard Nixon\"))) (type fb:government.us_president)\nwho is jamie little engaged to?\tCody Selman\t11.909\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.jamie_little)) (value (list (name fb:m.0j6jzzy \"Cody Selman\"))) (type fb:people.person)\nwhat school did sir ernest rutherford go to?\tUniversity of Cambridge\t15.869\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge \"University of Cambridge\") (name fb:en.university_of_new_zealand \"University of New Zealand\") (name fb:en.university_of_canterbury \"University of Canterbury\") (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.nelson_college \"Nelson College\"))) (type fb:education.educational_institution)\nwhat school did sir ernest rutherford go to?\tUniversity of New Zealand\t15.869\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge \"University of Cambridge\") (name fb:en.university_of_new_zealand \"University of New Zealand\") (name fb:en.university_of_canterbury \"University of Canterbury\") (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.nelson_college \"Nelson College\"))) (type fb:education.educational_institution)\nwhat school did sir ernest rutherford go to?\tUniversity of Canterbury\t15.869\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge \"University of Cambridge\") (name fb:en.university_of_new_zealand \"University of New Zealand\") (name fb:en.university_of_canterbury \"University of Canterbury\") (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.nelson_college \"Nelson College\"))) (type fb:education.educational_institution)\nwhat school did sir ernest rutherford go to?\tTrinity College, Cambridge\t15.869\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge \"University of Cambridge\") (name fb:en.university_of_new_zealand \"University of New Zealand\") (name fb:en.university_of_canterbury \"University of Canterbury\") (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.nelson_college \"Nelson College\"))) (type fb:education.educational_institution)\nwhat school did sir ernest rutherford go to?\tNelson College\t15.869\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge \"University of Cambridge\") (name fb:en.university_of_new_zealand \"University of New Zealand\") (name fb:en.university_of_canterbury \"University of Canterbury\") (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\") (name fb:en.nelson_college \"Nelson College\"))) (type fb:education.educational_institution)\nwhat does janelle brown work?\tBecoming Sister Wives: The Story of an Unconventional Marriage\t6.806\tformula (!fb:book.author.works_written fb:m.0k31qr6)) (value (list (name fb:m.0k31q43 \"Becoming Sister Wives: The Story of an Unconventional Marriage\"))) (type fb:book.written_work)\nwhere is tyrese gibson from?\tLos Angeles\t1.007\tformula (and (fb:type.object.type fb:location.location) (!fb:music.artist.origin fb:en.tyrese))) (value (list (name fb:en.los_angeles \"Los Angeles\"))) (type fb:location.location)\nwhat countries are near italy?\tVatican City\t13.972\tformula (and (fb:type.object.type fb:location.country) (fb:user.lapax.default_domain.landlocked_country.surrounded_by fb:en.italy))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria Austria) (name fb:en.vatican_city \"Vatican City\"))) (type fb:user.lapax.default_domain.landlocked_country)\nwhich states does the colorado river run through?\tYule Marble\t13.052\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble \"Yule Marble\") (name fb:en.blue_spruce \"Picea pungens\") (name fb:en.greenback_cutthroat_trout \"Greenback cutthroat trout\") (name fb:en.nil_sine_numine \"Nil sine numine\") (name fb:en.aquilegia_saximontana \"Aquilegia saximontana\") (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting \"Lark Bunting\"))) (type fb:location.symbol_of_administrative_division)\nwhich states does the colorado river run through?\tPicea pungens\t13.052\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble \"Yule Marble\") (name fb:en.blue_spruce \"Picea pungens\") (name fb:en.greenback_cutthroat_trout \"Greenback cutthroat trout\") (name fb:en.nil_sine_numine \"Nil sine numine\") (name fb:en.aquilegia_saximontana \"Aquilegia saximontana\") (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting \"Lark Bunting\"))) (type fb:location.symbol_of_administrative_division)\nwhich states does the colorado river run through?\tGreenback cutthroat trout\t13.052\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble \"Yule Marble\") (name fb:en.blue_spruce \"Picea pungens\") (name fb:en.greenback_cutthroat_trout \"Greenback cutthroat trout\") (name fb:en.nil_sine_numine \"Nil sine numine\") (name fb:en.aquilegia_saximontana \"Aquilegia saximontana\") (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting \"Lark Bunting\"))) (type fb:location.symbol_of_administrative_division)\nwhich states does the colorado river run through?\tNil sine numine\t13.052\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble \"Yule Marble\") (name fb:en.blue_spruce \"Picea pungens\") (name fb:en.greenback_cutthroat_trout \"Greenback cutthroat trout\") (name fb:en.nil_sine_numine \"Nil sine numine\") (name fb:en.aquilegia_saximontana \"Aquilegia saximontana\") (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting \"Lark Bunting\"))) (type fb:location.symbol_of_administrative_division)\nwhich states does the colorado river run through?\tAquilegia saximontana\t13.052\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble \"Yule Marble\") (name fb:en.blue_spruce \"Picea pungens\") (name fb:en.greenback_cutthroat_trout \"Greenback cutthroat trout\") (name fb:en.nil_sine_numine \"Nil sine numine\") (name fb:en.aquilegia_saximontana \"Aquilegia saximontana\") (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting \"Lark Bunting\"))) (type fb:location.symbol_of_administrative_division)\nwhich states does the colorado river run through?\tPainted turtle\t13.052\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble \"Yule Marble\") (name fb:en.blue_spruce \"Picea pungens\") (name fb:en.greenback_cutthroat_trout \"Greenback cutthroat trout\") (name fb:en.nil_sine_numine \"Nil sine numine\") (name fb:en.aquilegia_saximontana \"Aquilegia saximontana\") (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting \"Lark Bunting\"))) (type fb:location.symbol_of_administrative_division)\nwhich states does the colorado river run through?\tLark Bunting\t13.052\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble \"Yule Marble\") (name fb:en.blue_spruce \"Picea pungens\") (name fb:en.greenback_cutthroat_trout \"Greenback cutthroat trout\") (name fb:en.nil_sine_numine \"Nil sine numine\") (name fb:en.aquilegia_saximontana \"Aquilegia saximontana\") (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting \"Lark Bunting\"))) (type fb:location.symbol_of_administrative_division)\nwhen did the wright brothers created their first plane?\tWilbur Wright\t13.727\tformula (!fb:organization.organization.founders fb:en.wright_brothers)) (value (list (name fb:en.wilbur_wright \"Wilbur Wright\") (name fb:en.orville_wright \"Orville Wright\"))) (type fb:organization.organization_founder)\nwhen did the wright brothers created their first plane?\tOrville Wright\t13.727\tformula (!fb:organization.organization.founders fb:en.wright_brothers)) (value (list (name fb:en.wilbur_wright \"Wilbur Wright\") (name fb:en.orville_wright \"Orville Wright\"))) (type fb:organization.organization_founder)\nwhat language turkey people speak?\tTurkish Language\t9.748\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.turkey))) (value (list (name fb:en.turkish_language \"Turkish Language\"))) (type (union fb:language.human_language))\nwho does jeremy lin play for?\tHouston Rockets\t11.8\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jeremy_lin)) (value (list (name fb:en.houston_rockets \"Houston Rockets\") (name fb:en.new_york_knicks \"New York Knicks\"))) (type fb:sports.sports_team)\nwho does jeremy lin play for?\tNew York Knicks\t11.8\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jeremy_lin)) (value (list (name fb:en.houston_rockets \"Houston Rockets\") (name fb:en.new_york_knicks \"New York Knicks\"))) (type fb:sports.sports_team)\nwhere is the seychelles on world map?\tInternet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\t3.773\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.seychelles)) (value (list (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\") (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\"))) (type fb:dataworld.information_source)\nwhere is the seychelles on world map?\tInternet users as percentage of population, World Development Indicators, World Bank\t3.773\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.seychelles)) (value (list (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\") (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\"))) (type fb:dataworld.information_source)\nwhere did william morris go to college?\tUniversity of Oxford\t14.126\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.william_morris)))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.exeter_college_oxford \"Exeter College, Oxford\"))) (type fb:education.university)\nwhere did william morris go to college?\tExeter College, Oxford\t14.126\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.william_morris)))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.exeter_college_oxford \"Exeter College, Oxford\"))) (type fb:education.university)\nwho is jimmy savile?\tEntertainment Weekly annotation index\t0.697\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jimmy_savile)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwho is jimmy savile?\tBlissful Master Index\t0.697\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jimmy_savile)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwho is jimmy savile?\tBlissful Celebrities\t0.697\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jimmy_savile)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhere were the seneca indians located?\tNew York\t3.971\tformula (and (fb:type.object.type fb:location.location) (!fb:people.ethnicity.geographic_distribution fb:en.seneca_nation))) (value (list (name fb:en.new_york_state \"New York\"))) (type fb:location.location)\nwhat state is washington d.c. located?\tWood Thrush\t12.319\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.washington_united_states)) (value (list (name fb:en.wood_thrush \"Wood Thrush\") (name fb:en.scarlet_oak \"Quercus coccinea\"))) (type fb:location.symbol_of_administrative_division)\nwhat state is washington d.c. located?\tQuercus coccinea\t12.319\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.washington_united_states)) (value (list (name fb:en.wood_thrush \"Wood Thrush\") (name fb:en.scarlet_oak \"Quercus coccinea\"))) (type fb:location.symbol_of_administrative_division)\nwhere to exchange euros in new york city?\tAmerican Museum of Natural History\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tMetropolitan Museum of Art\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tGeorge Gustav Heye Center\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tCentral Park\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tThe Cloisters\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tNational Academy of Design\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tRockefeller Center\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tMorgan Library\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tEmpire State Building\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhere to exchange euros in new york city?\tSt. Patrick's Cathedral\t8.956\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history \"American Museum of Natural History\") (name fb:en.metropolitan_museum_of_art \"Metropolitan Museum of Art\") (name fb:en.the_george_gustav_heye_center \"George Gustav Heye Center\") (name fb:en.central_park \"Central Park\") (name fb:en.the_cloisters \"The Cloisters\") (name fb:en.national_academy_of_design \"National Academy of Design\") (name fb:en.rockefeller_center \"Rockefeller Center\") (name fb:en.morgan_library \"Morgan Library\") (name fb:en.empire_state_building \"Empire State Building\") (name fb:en.st_patricks_cathedral_new_york \"St. Patrick's Cathedral\"))) (type fb:travel.tourist_attraction)\nwhen did florida marlins join mlb?\tLebanese American\t5.962\tformula (fb:people.ethnicity.geographic_distribution fb:en.florida)) (value (list (name fb:en.lebanese_americans \"Lebanese American\"))) (type fb:people.ethnicity)\nwhat countries does the panama canal go through?\tCosta Rica\t17.338\tformula (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.location.adjoin_s (fb:location.adjoining_relationship.adjoins (var x)))) fb:en.panama))) (value (list (name fb:en.colombia Colombia) (name fb:en.costa_rica \"Costa Rica\"))) (type (union fb:location.country))\nwho did the chargers draft in 2011?\tAntonio Cromartie\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tAntoine Cason\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tSammy Davis\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tLuis Castillo\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tKellen Winslow\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tSteve Williams\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tDoug Buffone\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tEli Manning\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tShawne Merriman\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwho did the chargers draft in 2011?\tLaDainian Tomlinson\t10.816\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie \"Antonio Cromartie\") (name fb:en.antoine_cason \"Antoine Cason\") (name fb:en.sammy_davis \"Sammy Davis\") (name fb:en.luis_castillo_1983 \"Luis Castillo\") (name fb:en.kellen_winslow \"Kellen Winslow\") (name fb:m.0t_cmyc \"Steve Williams\") (name fb:en.doug_buffone \"Doug Buffone\") (name fb:en.eli_manning \"Eli Manning\") (name fb:en.shawne_merriman \"Shawne Merriman\") (name fb:en.ladainian_tomlinson \"LaDainian Tomlinson\"))) (type fb:sports.drafted_athlete)\nwhat colleges did albert einstein teach at?\tETH Zurich\t16.347\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.albert_einstein))) (value (list (name fb:en.eth_zurich \"ETH Zurich\") (name fb:en.university_of_zurich \"University of Zurich\"))) (type (union fb:education.university))\nwhat colleges did albert einstein teach at?\tUniversity of Zurich\t16.347\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.albert_einstein))) (value (list (name fb:en.eth_zurich \"ETH Zurich\") (name fb:en.university_of_zurich \"University of Zurich\"))) (type (union fb:education.university))\nwho plays the voice of brian on family guy?\tSeth MacFarlane\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tMike Henry\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tLacey Chabert\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tPatrick Warburton\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tAlex Borstein\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tSeth Green\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tAlec Sulkin\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tMila Kunis\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tDanny Smith\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho plays the voice of brian on family guy?\tAdam West\t9.568\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwhat make of bike did steve mcqueen ride in the great escape?\tFilm Producer\t8.094\tformula (fb:people.profession.people_with_this_profession fb:en.steve_mcqueen)) (value (list (name fb:en.film_producer \"Film Producer\") (name fb:en.film_actor Actor))) (type fb:people.profession)\nwhere did george w bush live as a child?\tWashington, D.C.\t7.031\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.george_w_bush))) (value (list (name fb:en.midland Midland) (name fb:en.washington_united_states \"Washington, D.C.\"))) (type fb:location.location)\nwhich dawkins book to read first?\tRiver out of Eden\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tRiver Out of Eden (Science Masters)\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tRiver Out of Eden\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tRiver out of eden\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tRiver Out of Eden (\\\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\t Talking Science)\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tDer entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tA devil's chaplain\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tSelfish Gene\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tThe Selfish Gene\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhich dawkins book to read first?\tThe Selfish Gene\t9.187\tformula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 \"River out of Eden\") (name fb:en.river_out_of_eden_science_masters \"River Out of Eden (Science Masters)\") (name fb:m.04ttg2d \"River Out of Eden\") (name fb:m.04vdvls \"River out of eden\") (name fb:m.04vdvpy \"River Out of Eden (\\\"Daily Telegraph\\\" Talking Science)\") (name fb:m.04ttg31 \"Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.\") (name fb:m.04ttf_0 \"A devil's chaplain\") (name fb:en.selfish_gene \"Selfish Gene\") (name fb:m.04vdwjn \"The Selfish Gene\") (name fb:m.04vdwjx \"The Selfish Gene\"))) (type fb:book.book_edition)\nwhat was nikola tesla inventions?\tInduction motor\t15.823\tformula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor \"Induction motor\") (name fb:en.remote_control \"Remote control\") (name fb:en.alternating_current \"Alternating current\") (name fb:en.wireless_telegraphy \"Wireless telegraphy\") (name fb:en.tesla_coil \"Tesla coil\") (name fb:en.neon_lamp \"Neon lamp\"))) (type fb:law.invention)\nwhat was nikola tesla inventions?\tRemote control\t15.823\tformula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor \"Induction motor\") (name fb:en.remote_control \"Remote control\") (name fb:en.alternating_current \"Alternating current\") (name fb:en.wireless_telegraphy \"Wireless telegraphy\") (name fb:en.tesla_coil \"Tesla coil\") (name fb:en.neon_lamp \"Neon lamp\"))) (type fb:law.invention)\nwhat was nikola tesla inventions?\tAlternating current\t15.823\tformula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor \"Induction motor\") (name fb:en.remote_control \"Remote control\") (name fb:en.alternating_current \"Alternating current\") (name fb:en.wireless_telegraphy \"Wireless telegraphy\") (name fb:en.tesla_coil \"Tesla coil\") (name fb:en.neon_lamp \"Neon lamp\"))) (type fb:law.invention)\nwhat was nikola tesla inventions?\tWireless telegraphy\t15.823\tformula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor \"Induction motor\") (name fb:en.remote_control \"Remote control\") (name fb:en.alternating_current \"Alternating current\") (name fb:en.wireless_telegraphy \"Wireless telegraphy\") (name fb:en.tesla_coil \"Tesla coil\") (name fb:en.neon_lamp \"Neon lamp\"))) (type fb:law.invention)\nwhat was nikola tesla inventions?\tTesla coil\t15.823\tformula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor \"Induction motor\") (name fb:en.remote_control \"Remote control\") (name fb:en.alternating_current \"Alternating current\") (name fb:en.wireless_telegraphy \"Wireless telegraphy\") (name fb:en.tesla_coil \"Tesla coil\") (name fb:en.neon_lamp \"Neon lamp\"))) (type fb:law.invention)\nwhat was nikola tesla inventions?\tNeon lamp\t15.823\tformula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor \"Induction motor\") (name fb:en.remote_control \"Remote control\") (name fb:en.alternating_current \"Alternating current\") (name fb:en.wireless_telegraphy \"Wireless telegraphy\") (name fb:en.tesla_coil \"Tesla coil\") (name fb:en.neon_lamp \"Neon lamp\"))) (type fb:law.invention)\nwhere did flemish people come from?\tUnited States of America\t6.033\tformula (and (fb:type.object.type fb:location.location) (!fb:people.ethnicity.geographic_distribution fb:en.flemish_people))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.france France) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.brazil Brazil) (name fb:en.belgium Belgium) (name fb:en.australia Australia))) (type fb:location.location)\nwhere did flemish people come from?\tSouth Africa\t6.033\tformula (and (fb:type.object.type fb:location.location) (!fb:people.ethnicity.geographic_distribution fb:en.flemish_people))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.france France) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.brazil Brazil) (name fb:en.belgium Belgium) (name fb:en.australia Australia))) (type fb:location.location)\nwhat state new york city belong to?\tNew Jersey\t15.08\tformula (and (fb:type.object.type fb:location.us_state) ((lambda x (fb:location.location.adjoin_s (fb:location.adjoining_relationship.adjoins (var x)))) fb:en.new_york_ny))) (value (list (name fb:en.pennsylvania Pennsylvania) (name fb:en.new_jersey \"New Jersey\"))) (type (union fb:location.us_state))\nwhat type of currency do they use in england?\tUK £\t21.937\tformula (!fb:location.country.currency_used fb:en.england)) (value (list (name fb:en.uk \"UK £\"))) (type fb:finance.currency)\nwhere was benjamin franklin educated?\tBoston Latin School\t8.054\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.benjamin_franklin))) (value (list (name fb:en.boston_latin_school \"Boston Latin School\"))) (type fb:education.educational_institution)\nwhat countries included in the uk?\tUnited Kingdom\t15.311\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries included in the uk?\tNorthern Ireland\t15.311\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries included in the uk?\tKingdom of Great Britain\t15.311\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries included in the uk?\tKingdom of England\t15.311\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries included in the uk?\tIsle of Man\t15.311\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries in the world speak chinese?\tHong Kong\t15.325\tformula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.chinese_yue))) (value (list (name fb:en.hong_kong \"Hong Kong\") (name fb:en.china China) (name fb:en.malaysia Malaysia))) (type (union fb:location.country))\nwhere obama went to school?\tState Elementary School Menteng 01\t12.346\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school \"State Elementary School Menteng 01\") (name fb:en.punahou_school_campus \"Punahou School\") (name fb:m.0nbyhz3 \"St. Francis of Assisi Catholic School\") (name fb:en.occidental_college \"Occidental College\") (name fb:en.columbia_university \"Columbia University\") (name fb:en.noelani_elementary_school \"Noelani Elementary School\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhere obama went to school?\tPunahou School\t12.346\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school \"State Elementary School Menteng 01\") (name fb:en.punahou_school_campus \"Punahou School\") (name fb:m.0nbyhz3 \"St. Francis of Assisi Catholic School\") (name fb:en.occidental_college \"Occidental College\") (name fb:en.columbia_university \"Columbia University\") (name fb:en.noelani_elementary_school \"Noelani Elementary School\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhere obama went to school?\tSt. Francis of Assisi Catholic School\t12.346\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school \"State Elementary School Menteng 01\") (name fb:en.punahou_school_campus \"Punahou School\") (name fb:m.0nbyhz3 \"St. Francis of Assisi Catholic School\") (name fb:en.occidental_college \"Occidental College\") (name fb:en.columbia_university \"Columbia University\") (name fb:en.noelani_elementary_school \"Noelani Elementary School\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhere obama went to school?\tOccidental College\t12.346\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school \"State Elementary School Menteng 01\") (name fb:en.punahou_school_campus \"Punahou School\") (name fb:m.0nbyhz3 \"St. Francis of Assisi Catholic School\") (name fb:en.occidental_college \"Occidental College\") (name fb:en.columbia_university \"Columbia University\") (name fb:en.noelani_elementary_school \"Noelani Elementary School\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhere obama went to school?\tColumbia University\t12.346\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school \"State Elementary School Menteng 01\") (name fb:en.punahou_school_campus \"Punahou School\") (name fb:m.0nbyhz3 \"St. Francis of Assisi Catholic School\") (name fb:en.occidental_college \"Occidental College\") (name fb:en.columbia_university \"Columbia University\") (name fb:en.noelani_elementary_school \"Noelani Elementary School\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhere obama went to school?\tNoelani Elementary School\t12.346\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school \"State Elementary School Menteng 01\") (name fb:en.punahou_school_campus \"Punahou School\") (name fb:m.0nbyhz3 \"St. Francis of Assisi Catholic School\") (name fb:en.occidental_college \"Occidental College\") (name fb:en.columbia_university \"Columbia University\") (name fb:en.noelani_elementary_school \"Noelani Elementary School\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhere obama went to school?\tHarvard Law School\t12.346\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school \"State Elementary School Menteng 01\") (name fb:en.punahou_school_campus \"Punahou School\") (name fb:m.0nbyhz3 \"St. Francis of Assisi Catholic School\") (name fb:en.occidental_college \"Occidental College\") (name fb:en.columbia_university \"Columbia University\") (name fb:en.noelani_elementary_school \"Noelani Elementary School\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhat is the primary language of china?\tStandard Mandarin\t19.802\tformula (!fb:location.country.official_language fb:en.china)) (value (list (name fb:en.standard_mandarin \"Standard Mandarin\"))) (type fb:language.human_language)\nwho was the soviet leader during world war ii?\tStuka Ju-87 ARF\t7.351\tformula (fb:business.consumer_product.themes fb:en.world_war_ii)) (value (list (name fb:m.0gcqy4f \"Stuka Ju-87 ARF\"))) (type fb:business.consumer_product)\nwhere was david berkowitz arrested?\tNew York City\t5.739\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.david_berkowitz))) (value (list (name fb:en.new_york_ny \"New York City\") (name fb:en.kings_county_new_york Brooklyn) (name fb:en.yonkers Yonkers))) (type fb:location.location)\nwhere was the city of david?\tLos Angeles\t12.436\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.citytown) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.david_beckham)))) (value (list (name fb:en.los_angeles \"Los Angeles\") (name fb:en.beverly_hills \"Beverly Hills\"))) (type fb:location.citytown)\nwhere was the city of david?\tBeverly Hills\t12.436\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.citytown) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.david_beckham)))) (value (list (name fb:en.los_angeles \"Los Angeles\") (name fb:en.beverly_hills \"Beverly Hills\"))) (type fb:location.citytown)\nwhat tv shows did shawnee smith play in?\tAll is Forgiven\t15.005\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 \"All is Forgiven\") (name fb:en.30_days_of_night_dust_to_dust \"30 Days of Night: Dust to Dust\") (name fb:m.07cgvhn \"Brand New Life\") (name fb:en.becker Becker) (name fb:en.scream_queens \"Scream Queens\") (name fb:m.0j635r0 \"Anger Management\") (name fb:en.the_tom_show \"The Tom Show\") (name fb:en.the_stand_1994 \"The Stand\") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program))\nwhat tv shows did shawnee smith play in?\t30 Days of Night: Dust to Dust\t15.005\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 \"All is Forgiven\") (name fb:en.30_days_of_night_dust_to_dust \"30 Days of Night: Dust to Dust\") (name fb:m.07cgvhn \"Brand New Life\") (name fb:en.becker Becker) (name fb:en.scream_queens \"Scream Queens\") (name fb:m.0j635r0 \"Anger Management\") (name fb:en.the_tom_show \"The Tom Show\") (name fb:en.the_stand_1994 \"The Stand\") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program))\nwhat tv shows did shawnee smith play in?\tBrand New Life\t15.005\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 \"All is Forgiven\") (name fb:en.30_days_of_night_dust_to_dust \"30 Days of Night: Dust to Dust\") (name fb:m.07cgvhn \"Brand New Life\") (name fb:en.becker Becker) (name fb:en.scream_queens \"Scream Queens\") (name fb:m.0j635r0 \"Anger Management\") (name fb:en.the_tom_show \"The Tom Show\") (name fb:en.the_stand_1994 \"The Stand\") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program))\nwhat tv shows did shawnee smith play in?\tScream Queens\t15.005\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 \"All is Forgiven\") (name fb:en.30_days_of_night_dust_to_dust \"30 Days of Night: Dust to Dust\") (name fb:m.07cgvhn \"Brand New Life\") (name fb:en.becker Becker) (name fb:en.scream_queens \"Scream Queens\") (name fb:m.0j635r0 \"Anger Management\") (name fb:en.the_tom_show \"The Tom Show\") (name fb:en.the_stand_1994 \"The Stand\") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program))\nwhat tv shows did shawnee smith play in?\tAnger Management\t15.005\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 \"All is Forgiven\") (name fb:en.30_days_of_night_dust_to_dust \"30 Days of Night: Dust to Dust\") (name fb:m.07cgvhn \"Brand New Life\") (name fb:en.becker Becker) (name fb:en.scream_queens \"Scream Queens\") (name fb:m.0j635r0 \"Anger Management\") (name fb:en.the_tom_show \"The Tom Show\") (name fb:en.the_stand_1994 \"The Stand\") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program))\nwhat tv shows did shawnee smith play in?\tThe Tom Show\t15.005\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 \"All is Forgiven\") (name fb:en.30_days_of_night_dust_to_dust \"30 Days of Night: Dust to Dust\") (name fb:m.07cgvhn \"Brand New Life\") (name fb:en.becker Becker) (name fb:en.scream_queens \"Scream Queens\") (name fb:m.0j635r0 \"Anger Management\") (name fb:en.the_tom_show \"The Tom Show\") (name fb:en.the_stand_1994 \"The Stand\") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program))\nwhat tv shows did shawnee smith play in?\tThe Stand\t15.005\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 \"All is Forgiven\") (name fb:en.30_days_of_night_dust_to_dust \"30 Days of Night: Dust to Dust\") (name fb:m.07cgvhn \"Brand New Life\") (name fb:en.becker Becker) (name fb:en.scream_queens \"Scream Queens\") (name fb:m.0j635r0 \"Anger Management\") (name fb:en.the_tom_show \"The Tom Show\") (name fb:en.the_stand_1994 \"The Stand\") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program))\nwhat does australia use for currency?\tAustralian dollar\t17.896\tformula (!fb:location.country.currency_used fb:en.australia)) (value (list (name fb:en.australian_dollar \"Australian dollar\"))) (type fb:finance.currency)\nwhich airport to fly into rome?\tLeonardo da Vinci–Fiumicino Airport\t17.364\tformula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport \"Leonardo da Vinci–Fiumicino Airport\") (name fb:en.italian_met_office_airport \"Italian Met Office Airport\") (name fb:en.ciampino_airport \"Ciampino–G. B. Pastine International Airport\") (name fb:en.rome_viterbo_airport \"Rome Viterbo Airport\") (name fb:en.urbe_airport \"Urbe Airport\"))) (type fb:aviation.airport)\nwhich airport to fly into rome?\tItalian Met Office Airport\t17.364\tformula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport \"Leonardo da Vinci–Fiumicino Airport\") (name fb:en.italian_met_office_airport \"Italian Met Office Airport\") (name fb:en.ciampino_airport \"Ciampino–G. B. Pastine International Airport\") (name fb:en.rome_viterbo_airport \"Rome Viterbo Airport\") (name fb:en.urbe_airport \"Urbe Airport\"))) (type fb:aviation.airport)\nwhich airport to fly into rome?\tCiampino–G. B. Pastine International Airport\t17.364\tformula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport \"Leonardo da Vinci–Fiumicino Airport\") (name fb:en.italian_met_office_airport \"Italian Met Office Airport\") (name fb:en.ciampino_airport \"Ciampino–G. B. Pastine International Airport\") (name fb:en.rome_viterbo_airport \"Rome Viterbo Airport\") (name fb:en.urbe_airport \"Urbe Airport\"))) (type fb:aviation.airport)\nwhich airport to fly into rome?\tRome Viterbo Airport\t17.364\tformula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport \"Leonardo da Vinci–Fiumicino Airport\") (name fb:en.italian_met_office_airport \"Italian Met Office Airport\") (name fb:en.ciampino_airport \"Ciampino–G. B. Pastine International Airport\") (name fb:en.rome_viterbo_airport \"Rome Viterbo Airport\") (name fb:en.urbe_airport \"Urbe Airport\"))) (type fb:aviation.airport)\nwhich airport to fly into rome?\tUrbe Airport\t17.364\tformula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport \"Leonardo da Vinci–Fiumicino Airport\") (name fb:en.italian_met_office_airport \"Italian Met Office Airport\") (name fb:en.ciampino_airport \"Ciampino–G. B. Pastine International Airport\") (name fb:en.rome_viterbo_airport \"Rome Viterbo Airport\") (name fb:en.urbe_airport \"Urbe Airport\"))) (type fb:aviation.airport)\nwhat year was lebron james rookie season?\t2003–04 NBA season\t10.38\tformula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season \"2003–04 NBA season\") (name fb:m.0gfhvd4 \"2011–12 NBA season\") (name fb:en.2008_09_nba_season \"2008–09 NBA season\") (name fb:en.2007-08_nba_season \"2007–08 NBA season\") (name fb:en.2005-06_nba_season \"2005–06 NBA season\"))) (type fb:sports.sports_league_season)\nwhat year was lebron james rookie season?\t2011–12 NBA season\t10.38\tformula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season \"2003–04 NBA season\") (name fb:m.0gfhvd4 \"2011–12 NBA season\") (name fb:en.2008_09_nba_season \"2008–09 NBA season\") (name fb:en.2007-08_nba_season \"2007–08 NBA season\") (name fb:en.2005-06_nba_season \"2005–06 NBA season\"))) (type fb:sports.sports_league_season)\nwhat year was lebron james rookie season?\t2008–09 NBA season\t10.38\tformula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season \"2003–04 NBA season\") (name fb:m.0gfhvd4 \"2011–12 NBA season\") (name fb:en.2008_09_nba_season \"2008–09 NBA season\") (name fb:en.2007-08_nba_season \"2007–08 NBA season\") (name fb:en.2005-06_nba_season \"2005–06 NBA season\"))) (type fb:sports.sports_league_season)\nwhat year was lebron james rookie season?\t2007–08 NBA season\t10.38\tformula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season \"2003–04 NBA season\") (name fb:m.0gfhvd4 \"2011–12 NBA season\") (name fb:en.2008_09_nba_season \"2008–09 NBA season\") (name fb:en.2007-08_nba_season \"2007–08 NBA season\") (name fb:en.2005-06_nba_season \"2005–06 NBA season\"))) (type fb:sports.sports_league_season)\nwhat year was lebron james rookie season?\t2005–06 NBA season\t10.38\tformula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season \"2003–04 NBA season\") (name fb:m.0gfhvd4 \"2011–12 NBA season\") (name fb:en.2008_09_nba_season \"2008–09 NBA season\") (name fb:en.2007-08_nba_season \"2007–08 NBA season\") (name fb:en.2005-06_nba_season \"2005–06 NBA season\"))) (type fb:sports.sports_league_season)\nwhere does delaware river start?\tMount Jefferson\t5.483\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.river.origin fb:en.delaware_river))) (value (list (name fb:en.mount_jefferson_new_york \"Mount Jefferson\") (name fb:en.west_branch_delaware_river \"West Branch Delaware River\"))) (type fb:location.location)\nwhere does delaware river start?\tWest Branch Delaware River\t5.483\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.river.origin fb:en.delaware_river))) (value (list (name fb:en.mount_jefferson_new_york \"Mount Jefferson\") (name fb:en.west_branch_delaware_river \"West Branch Delaware River\"))) (type fb:location.location)\nwhat kind of monarchy does japan have?\tHouse of Representatives\t8.211\tformula ((lambda x (!fb:government.government_position_held.governmental_body (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.japan)) (value (list (name fb:en.house_of_representatives_of_japan \"House of Representatives\") (name fb:en.house_of_councillors \"House of Councillors\"))) (type fb:government.governmental_body)\nwhat kind of monarchy does japan have?\tHouse of Councillors\t8.211\tformula ((lambda x (!fb:government.government_position_held.governmental_body (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.japan)) (value (list (name fb:en.house_of_representatives_of_japan \"House of Representatives\") (name fb:en.house_of_councillors \"House of Councillors\"))) (type fb:government.governmental_body)\nwhere did mitt romney's parents come from?\tBloomfield Hills\t5.806\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.bloomfield_hills \"Bloomfield Hills\") (name fb:en.massachusetts Massachusetts))) (type fb:location.location)\nwhat places in japan were bombed?\tUnited States of America\t11.101\tformula (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.japan))) (value (list (name fb:en.sudan Sudan) (name fb:en.tuvalu Tuvalu) (name fb:en.united_states_of_america \"United States of America\") (name fb:en.kiribati Kiribati) (name fb:en.canada Canada))) (type (union fb:location.country))\nwhen did michael jordan return to the nba?\tBirmingham Barons\t13.044\tformula ((lambda x (fb:baseball.baseball_team.historical_roster (fb:baseball.baseball_historical_roster_position.player (var x)))) fb:en.michael_jordan)) (value (list (name fb:en.birmingham_barons \"Birmingham Barons\") (name fb:en.scottsdale_scorpions \"Scottsdale Scorpions\"))) (type fb:baseball.baseball_team)\nwhen did michael jordan return to the nba?\tScottsdale Scorpions\t13.044\tformula ((lambda x (fb:baseball.baseball_team.historical_roster (fb:baseball.baseball_historical_roster_position.player (var x)))) fb:en.michael_jordan)) (value (list (name fb:en.birmingham_barons \"Birmingham Barons\") (name fb:en.scottsdale_scorpions \"Scottsdale Scorpions\"))) (type fb:baseball.baseball_team)\nwhat type of economy exists in china?\tCommunist state\t10.626\tformula (!fb:location.country.form_of_government fb:en.china)) (value (list (name fb:en.communist_state \"Communist state\") (name fb:en.socialist_state \"Socialist state\") (name fb:en.single-party_state \"Single-party state\"))) (type fb:government.form_of_government)\nwhat type of economy exists in china?\tSocialist state\t10.626\tformula (!fb:location.country.form_of_government fb:en.china)) (value (list (name fb:en.communist_state \"Communist state\") (name fb:en.socialist_state \"Socialist state\") (name fb:en.single-party_state \"Single-party state\"))) (type fb:government.form_of_government)\nwhat type of economy exists in china?\tSingle-party state\t10.626\tformula (!fb:location.country.form_of_government fb:en.china)) (value (list (name fb:en.communist_state \"Communist state\") (name fb:en.socialist_state \"Socialist state\") (name fb:en.single-party_state \"Single-party state\"))) (type fb:government.form_of_government)\nwhat is the currency in egypt 2012?\tEgyptian pound\t22.142\tformula (!fb:location.country.currency_used fb:en.egypt)) (value (list (name fb:en.egyptian_pound \"Egyptian pound\"))) (type fb:finance.currency)\nwhere was mission san rafael located?\tSan Rafael City Elementary School District\t3.544\tformula (fb:education.school_district.locations_served fb:en.san_rafael)) (value (list (name fb:en.san_rafael_city_elementary_school_district \"San Rafael City Elementary School District\"))) (type fb:education.school_district)\nwho was esther's husband?\tBenjamin Hoar\t8.645\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:m.0fpqn20)) (value (list (name fb:m.0fpqn1t \"Benjamin Hoar\"))) (type fb:people.person)\nwho's dating claire danes?\tCarla Danes\t0.06\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.claire_danes))) (value (list (name fb:en.carla_danes \"Carla Danes\") (name fb:en.christopher_danes \"Christopher Danes\"))) (type fb:people.person)\nwho's dating claire danes?\tChristopher Danes\t0.06\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.claire_danes))) (value (list (name fb:en.carla_danes \"Carla Danes\") (name fb:en.christopher_danes \"Christopher Danes\"))) (type fb:people.person)\nwhat county is st paul va in?\tCollin County\t10.933\tformula (!fb:location.hud_county_place.county fb:en.st_paul_texas)) (value (list (name fb:en.collin_county \"Collin County\"))) (type fb:location.us_county)\nwhat produce does florida export?\tPeter and the Wolf\t8.702\tformula ((lambda x (fb:film.film.release_date_s (fb:film.film_regional_release_date.film_release_region (var x)))) fb:en.florida)) (value (list (name fb:en.peter_and_the_wolf_2006 \"Peter and the Wolf\") (name fb:m.05sqdhf \"A Matter of Size\") (name fb:en.hope_springs \"Hope Springs\") (name fb:en.radio_cape_cod \"Radio Cape Cod\"))) (type fb:film.film)\nwhat produce does florida export?\tA Matter of Size\t8.702\tformula ((lambda x (fb:film.film.release_date_s (fb:film.film_regional_release_date.film_release_region (var x)))) fb:en.florida)) (value (list (name fb:en.peter_and_the_wolf_2006 \"Peter and the Wolf\") (name fb:m.05sqdhf \"A Matter of Size\") (name fb:en.hope_springs \"Hope Springs\") (name fb:en.radio_cape_cod \"Radio Cape Cod\"))) (type fb:film.film)\nwhat produce does florida export?\tHope Springs\t8.702\tformula ((lambda x (fb:film.film.release_date_s (fb:film.film_regional_release_date.film_release_region (var x)))) fb:en.florida)) (value (list (name fb:en.peter_and_the_wolf_2006 \"Peter and the Wolf\") (name fb:m.05sqdhf \"A Matter of Size\") (name fb:en.hope_springs \"Hope Springs\") (name fb:en.radio_cape_cod \"Radio Cape Cod\"))) (type fb:film.film)\nwhat produce does florida export?\tRadio Cape Cod\t8.702\tformula ((lambda x (fb:film.film.release_date_s (fb:film.film_regional_release_date.film_release_region (var x)))) fb:en.florida)) (value (list (name fb:en.peter_and_the_wolf_2006 \"Peter and the Wolf\") (name fb:m.05sqdhf \"A Matter of Size\") (name fb:en.hope_springs \"Hope Springs\") (name fb:en.radio_cape_cod \"Radio Cape Cod\"))) (type fb:film.film)\nwhat type of sports do japanese play?\tCreative Work\t9.179\tformula (!fb:common.topic.notable_types fb:m.039ngn4)) (value (list (name fb:media_common.creative_work \"Creative Work\") (name fb:music.release \"Musical Release\"))) (type fb:type.type)\nwhat type of sports do japanese play?\tMusical Release\t9.179\tformula (!fb:common.topic.notable_types fb:m.039ngn4)) (value (list (name fb:media_common.creative_work \"Creative Work\") (name fb:music.release \"Musical Release\"))) (type fb:type.type)\nwhat did drita find out?\tThe Forgiveness of Blood\t3.023\tformula ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0nf_kb_)) (value (list (name fb:m.0g9z69t \"The Forgiveness of Blood\"))) (type fb:film.film)\nwhere did the latin language originate from?\tRoman Republic\t13.497\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic \"Roman Republic\") (name fb:en.byzantine_empire \"Byzantine Empire\") (name fb:en.roman_empire \"Roman Empire\") (name fb:en.holy_roman_empire \"Holy Roman Empire\") (name fb:en.papal_states \"Papal States\"))) (type fb:location.country)\nwhere did the latin language originate from?\tByzantine Empire\t13.497\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic \"Roman Republic\") (name fb:en.byzantine_empire \"Byzantine Empire\") (name fb:en.roman_empire \"Roman Empire\") (name fb:en.holy_roman_empire \"Holy Roman Empire\") (name fb:en.papal_states \"Papal States\"))) (type fb:location.country)\nwhere did the latin language originate from?\tRoman Empire\t13.497\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic \"Roman Republic\") (name fb:en.byzantine_empire \"Byzantine Empire\") (name fb:en.roman_empire \"Roman Empire\") (name fb:en.holy_roman_empire \"Holy Roman Empire\") (name fb:en.papal_states \"Papal States\"))) (type fb:location.country)\nwhere did the latin language originate from?\tHoly Roman Empire\t13.497\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic \"Roman Republic\") (name fb:en.byzantine_empire \"Byzantine Empire\") (name fb:en.roman_empire \"Roman Empire\") (name fb:en.holy_roman_empire \"Holy Roman Empire\") (name fb:en.papal_states \"Papal States\"))) (type fb:location.country)\nwhere did the latin language originate from?\tPapal States\t13.497\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic \"Roman Republic\") (name fb:en.byzantine_empire \"Byzantine Empire\") (name fb:en.roman_empire \"Roman Empire\") (name fb:en.holy_roman_empire \"Holy Roman Empire\") (name fb:en.papal_states \"Papal States\"))) (type fb:location.country)\nwhat school did karl benz go to?\tUniversity of Karlsruhe\t17.155\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.karl_benz))) (value (list (name fb:en.university_of_karlsruhe \"University of Karlsruhe\") (name fb:en.karlsruhe_institute_of_technology \"Karlsruhe Institute of Technology\"))) (type fb:education.educational_institution)\nwhat school did karl benz go to?\tKarlsruhe Institute of Technology\t17.155\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.karl_benz))) (value (list (name fb:en.university_of_karlsruhe \"University of Karlsruhe\") (name fb:en.karlsruhe_institute_of_technology \"Karlsruhe Institute of Technology\"))) (type fb:education.educational_institution)\nwhat movies has carmen electra been in?\tStarsky & Hutch\t12.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 \"Starsky & Hutch\") (name fb:en.dirty_love \"Dirty Love\") (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.meet_the_spartans \"Meet the Spartans\") (name fb:en.scary_movie_4 \"Scary Movie 4\") (name fb:en.date_movie \"Date Movie\") (name fb:en.epic_movie \"Epic Movie\"))) (type (union fb:award.award_nominated_work))\nwhat movies has carmen electra been in?\tDirty Love\t12.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 \"Starsky & Hutch\") (name fb:en.dirty_love \"Dirty Love\") (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.meet_the_spartans \"Meet the Spartans\") (name fb:en.scary_movie_4 \"Scary Movie 4\") (name fb:en.date_movie \"Date Movie\") (name fb:en.epic_movie \"Epic Movie\"))) (type (union fb:award.award_nominated_work))\nwhat movies has carmen electra been in?\tDisaster Movie\t12.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 \"Starsky & Hutch\") (name fb:en.dirty_love \"Dirty Love\") (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.meet_the_spartans \"Meet the Spartans\") (name fb:en.scary_movie_4 \"Scary Movie 4\") (name fb:en.date_movie \"Date Movie\") (name fb:en.epic_movie \"Epic Movie\"))) (type (union fb:award.award_nominated_work))\nwhat movies has carmen electra been in?\tMeet the Spartans\t12.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 \"Starsky & Hutch\") (name fb:en.dirty_love \"Dirty Love\") (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.meet_the_spartans \"Meet the Spartans\") (name fb:en.scary_movie_4 \"Scary Movie 4\") (name fb:en.date_movie \"Date Movie\") (name fb:en.epic_movie \"Epic Movie\"))) (type (union fb:award.award_nominated_work))\nwhat movies has carmen electra been in?\tScary Movie 4\t12.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 \"Starsky & Hutch\") (name fb:en.dirty_love \"Dirty Love\") (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.meet_the_spartans \"Meet the Spartans\") (name fb:en.scary_movie_4 \"Scary Movie 4\") (name fb:en.date_movie \"Date Movie\") (name fb:en.epic_movie \"Epic Movie\"))) (type (union fb:award.award_nominated_work))\nwhat movies has carmen electra been in?\tDate Movie\t12.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 \"Starsky & Hutch\") (name fb:en.dirty_love \"Dirty Love\") (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.meet_the_spartans \"Meet the Spartans\") (name fb:en.scary_movie_4 \"Scary Movie 4\") (name fb:en.date_movie \"Date Movie\") (name fb:en.epic_movie \"Epic Movie\"))) (type (union fb:award.award_nominated_work))\nwhat movies has carmen electra been in?\tEpic Movie\t12.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 \"Starsky & Hutch\") (name fb:en.dirty_love \"Dirty Love\") (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.meet_the_spartans \"Meet the Spartans\") (name fb:en.scary_movie_4 \"Scary Movie 4\") (name fb:en.date_movie \"Date Movie\") (name fb:en.epic_movie \"Epic Movie\"))) (type (union fb:award.award_nominated_work))\nwhen do world war ii end?\t20th century\t11.168\tformula (fb:time.event.includes_event fb:en.world_war_ii)) (value (list (name fb:en.20th_century \"20th century\") (name fb:en.1940s 1940s))) (type fb:time.event)\nwhat do christians believe about heaven hell and purgatory?\tSirhan Sirhan\t6.659\tformula (fb:people.person.religion fb:en.palestinian_christian)) (value (list (name fb:en.sirhan_sirhan \"Sirhan Sirhan\") (name fb:en.edward_said \"Edward Said\") (name fb:en.aous_shakra \"Aous Shakra\") (name fb:en.hanna_siniora \"Hanna Siniora\"))) (type fb:people.person)\nwhat do christians believe about heaven hell and purgatory?\tEdward Said\t6.659\tformula (fb:people.person.religion fb:en.palestinian_christian)) (value (list (name fb:en.sirhan_sirhan \"Sirhan Sirhan\") (name fb:en.edward_said \"Edward Said\") (name fb:en.aous_shakra \"Aous Shakra\") (name fb:en.hanna_siniora \"Hanna Siniora\"))) (type fb:people.person)\nwhat do christians believe about heaven hell and purgatory?\tAous Shakra\t6.659\tformula (fb:people.person.religion fb:en.palestinian_christian)) (value (list (name fb:en.sirhan_sirhan \"Sirhan Sirhan\") (name fb:en.edward_said \"Edward Said\") (name fb:en.aous_shakra \"Aous Shakra\") (name fb:en.hanna_siniora \"Hanna Siniora\"))) (type fb:people.person)\nwhat do christians believe about heaven hell and purgatory?\tHanna Siniora\t6.659\tformula (fb:people.person.religion fb:en.palestinian_christian)) (value (list (name fb:en.sirhan_sirhan \"Sirhan Sirhan\") (name fb:en.edward_said \"Edward Said\") (name fb:en.aous_shakra \"Aous Shakra\") (name fb:en.hanna_siniora \"Hanna Siniora\"))) (type fb:people.person)\nwhere did morgan freeman graduate?\tLos Angeles City College\t7.564\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.los_angeles_city_college \"Los Angeles City College\") (name fb:en.jackson_state_university \"Jackson State University\"))) (type fb:education.educational_institution)\nwhere did morgan freeman graduate?\tJackson State University\t7.564\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.los_angeles_city_college \"Los Angeles City College\") (name fb:en.jackson_state_university \"Jackson State University\"))) (type fb:education.educational_institution)\nwho did queen elizabeth 1 executed?\tElizabeth of York\t6.292\tformula (and (fb:type.object.type fb:theater.theater_character) (fb:fictional_universe.fictional_character.based_on fb:en.elizabeth_of_york))) (value (list (name fb:m.0j103ml \"Elizabeth of York\"))) (type (union fb:theater.theater_character))\nwhere is arabic most spoken?\tSouth Africa\t11.041\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.languages_spoken fb:en.arabic_language))) (value (list (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.iran Iran) (name fb:en.egypt Egypt) (name fb:en.israel Israel) (name fb:en.turkey Turkey) (name fb:en.saudi_arabia \"Saudi Arabia\") (name fb:en.algeria Algeria) (name fb:en.yemen Yemen) (name fb:en.syria Syria))) (type fb:location.country)\nwhere is arabic most spoken?\tSaudi Arabia\t11.041\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.languages_spoken fb:en.arabic_language))) (value (list (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.iran Iran) (name fb:en.egypt Egypt) (name fb:en.israel Israel) (name fb:en.turkey Turkey) (name fb:en.saudi_arabia \"Saudi Arabia\") (name fb:en.algeria Algeria) (name fb:en.yemen Yemen) (name fb:en.syria Syria))) (type fb:location.country)\nwhat type of government does germany have now?\tParliamentary republic\t18.302\tformula (fb:government.form_of_government.countries fb:en.germany)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.federal_republic \"Federal republic\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government does germany have now?\tFederal republic\t18.302\tformula (fb:government.form_of_government.countries fb:en.germany)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.federal_republic \"Federal republic\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government does germany have now?\tRepresentative democracy\t18.302\tformula (fb:government.form_of_government.countries fb:en.germany)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.federal_republic \"Federal republic\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government does germany have now?\tConstitutional republic\t18.302\tformula (fb:government.form_of_government.countries fb:en.germany)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.federal_republic \"Federal republic\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat kind of government does libya have today?\tParliamentary republic\t11.843\tformula (!fb:location.country.form_of_government fb:en.libya)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.provisional_government \"Provisional government\"))) (type fb:government.form_of_government)\nwhat kind of government does libya have today?\tProvisional government\t11.843\tformula (!fb:location.country.form_of_government fb:en.libya)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.provisional_government \"Provisional government\"))) (type fb:government.form_of_government)\nwhat time zone is anaheim california?\tPacific Time Zone\t13.004\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.anaheim))) (value (list (name fb:en.pacific_time_zone \"Pacific Time Zone\"))) (type (union fb:time.time_zone))\nwhat year did the orioles go to the world series?\t1970 World Series\t15.282\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_orioles))) (value (list (name fb:en.1970_world_series \"1970 World Series\") (name fb:en.1983_world_series \"1983 World Series\") (name fb:en.1966_world_series \"1966 World Series\"))) (type fb:sports.sports_championship_event)\nwhat year did the orioles go to the world series?\t1983 World Series\t15.282\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_orioles))) (value (list (name fb:en.1970_world_series \"1970 World Series\") (name fb:en.1983_world_series \"1983 World Series\") (name fb:en.1966_world_series \"1966 World Series\"))) (type fb:sports.sports_championship_event)\nwhat year did the orioles go to the world series?\t1966 World Series\t15.282\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_orioles))) (value (list (name fb:en.1970_world_series \"1970 World Series\") (name fb:en.1983_world_series \"1983 World Series\") (name fb:en.1966_world_series \"1966 World Series\"))) (type fb:sports.sports_championship_event)\nwhat would ap xin zhao do?\tState of Zhao(bronzeware script, ca. 800 BC)\t1.973\tformula (fb:common.image.appears_in_topic_gallery fb:en.zhao)) (value (list (name fb:m.04s8d4b \"State of Zhao(bronzeware script, ca. 800 BC)\") (name fb:m.0df_wkn \"State of Zhao 300 BCE\") (name fb:m.02cfvww \"State of Zhao(small seal script, 220 BC)\"))) (type fb:common.image)\nwhat would ap xin zhao do?\tState of Zhao 300 BCE\t1.973\tformula (fb:common.image.appears_in_topic_gallery fb:en.zhao)) (value (list (name fb:m.04s8d4b \"State of Zhao(bronzeware script, ca. 800 BC)\") (name fb:m.0df_wkn \"State of Zhao 300 BCE\") (name fb:m.02cfvww \"State of Zhao(small seal script, 220 BC)\"))) (type fb:common.image)\nwhat would ap xin zhao do?\tState of Zhao(small seal script, 220 BC)\t1.973\tformula (fb:common.image.appears_in_topic_gallery fb:en.zhao)) (value (list (name fb:m.04s8d4b \"State of Zhao(bronzeware script, ca. 800 BC)\") (name fb:m.0df_wkn \"State of Zhao 300 BCE\") (name fb:m.02cfvww \"State of Zhao(small seal script, 220 BC)\"))) (type fb:common.image)\nwhat are the official colors of the dallas cowboys?\tNavy Blue\t24.506\tformula (and (fb:type.object.type fb:visual_art.color) (!fb:sports.sports_team.colors fb:en.dallas_cowboys))) (value (list (name fb:en.blue Blue) (name fb:en.white White) (name fb:m.03vtbc Silver) (name fb:en.navy_blue \"Navy Blue\") (name fb:en.royal_blue \"Royal blue\"))) (type (union fb:visual_art.color))\nwhat are the official colors of the dallas cowboys?\tRoyal blue\t24.506\tformula (and (fb:type.object.type fb:visual_art.color) (!fb:sports.sports_team.colors fb:en.dallas_cowboys))) (value (list (name fb:en.blue Blue) (name fb:en.white White) (name fb:m.03vtbc Silver) (name fb:en.navy_blue \"Navy Blue\") (name fb:en.royal_blue \"Royal blue\"))) (type (union fb:visual_art.color))\nwhere did margaret hoover go to college?\tDavidson College\t9.87\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.margaret_hoover)))) (value (list (name fb:en.davidson_college \"Davidson College\"))) (type fb:education.university)\nwhat is jamie oliver children names?\tSally Oliver\t5.84\tformula (!fb:people.person.parents fb:en.jamie_oliver)) (value (list (name fb:m.0q52s40 \"Sally Oliver\") (name fb:m.0q52sfr \"Trevor Oliver\"))) (type fb:people.person)\nwhat is jamie oliver children names?\tTrevor Oliver\t5.84\tformula (!fb:people.person.parents fb:en.jamie_oliver)) (value (list (name fb:m.0q52s40 \"Sally Oliver\") (name fb:m.0q52sfr \"Trevor Oliver\"))) (type fb:people.person)\nwhere does bradley walsh live?\tLos Angeles\t6.197\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.bradley_walsh))) (value (list (name fb:en.toronto Toronto) (name fb:en.los_angeles \"Los Angeles\"))) (type fb:location.location)\nwho is the head coach of inter milan?\tGiuseppe Baresi\t12.926\tformula (and (fb:people.person.profession fb:en.coach) ((lambda x (!fb:sports.sports_team_coach_tenure.coach (!fb:sports.sports_team.coaches (var x)))) fb:en.fc_internazionale_milano))) (value (list (name fb:en.giuseppe_baresi \"Giuseppe Baresi\"))) (type fb:sports.sports_team_coach)\nwhere does the shannon river start and end?\tShannon Estuary\t8.404\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.river.mouth fb:en.river_shannon))) (value (list (name fb:en.shannon_estuary \"Shannon Estuary\"))) (type fb:location.location)\nwho did reese witherspoon get married to?\tRyan Phillippe\t16.593\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.reese_witherspoon)) (value (list (name fb:en.ryan_phillippe \"Ryan Phillippe\") (name fb:m.0gxm_yg \"Jim Toth\"))) (type fb:people.person)\nwho did reese witherspoon get married to?\tJim Toth\t16.593\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.reese_witherspoon)) (value (list (name fb:en.ryan_phillippe \"Ryan Phillippe\") (name fb:m.0gxm_yg \"Jim Toth\"))) (type fb:people.person)\nwhere did dutch language come from?\tUnion of South Africa\t10.207\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.dutch_language))) (value (list (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.suriname Suriname) (name fb:en.aruba Aruba) (name fb:en.union_of_south_africa \"Union of South Africa\") (name fb:en.curacao Curaçao) (name fb:en.kingdom_of_the_netherlands \"Kingdom of the Netherlands\") (name fb:en.netherlands_antilles \"Netherlands Antilles\") (name fb:en.sint_maarten \"Sint Maarten\") (name fb:en.bonaire Bonaire))) (type fb:location.country)\nwhere did dutch language come from?\tKingdom of the Netherlands\t10.207\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.dutch_language))) (value (list (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.suriname Suriname) (name fb:en.aruba Aruba) (name fb:en.union_of_south_africa \"Union of South Africa\") (name fb:en.curacao Curaçao) (name fb:en.kingdom_of_the_netherlands \"Kingdom of the Netherlands\") (name fb:en.netherlands_antilles \"Netherlands Antilles\") (name fb:en.sint_maarten \"Sint Maarten\") (name fb:en.bonaire Bonaire))) (type fb:location.country)\nwhere did dutch language come from?\tNetherlands Antilles\t10.207\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.dutch_language))) (value (list (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.suriname Suriname) (name fb:en.aruba Aruba) (name fb:en.union_of_south_africa \"Union of South Africa\") (name fb:en.curacao Curaçao) (name fb:en.kingdom_of_the_netherlands \"Kingdom of the Netherlands\") (name fb:en.netherlands_antilles \"Netherlands Antilles\") (name fb:en.sint_maarten \"Sint Maarten\") (name fb:en.bonaire Bonaire))) (type fb:location.country)\nwhere did dutch language come from?\tSint Maarten\t10.207\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.dutch_language))) (value (list (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.suriname Suriname) (name fb:en.aruba Aruba) (name fb:en.union_of_south_africa \"Union of South Africa\") (name fb:en.curacao Curaçao) (name fb:en.kingdom_of_the_netherlands \"Kingdom of the Netherlands\") (name fb:en.netherlands_antilles \"Netherlands Antilles\") (name fb:en.sint_maarten \"Sint Maarten\") (name fb:en.bonaire Bonaire))) (type fb:location.country)\nwhat kind of money should i take to costa rica?\tInflation, World Development Indicators, World Bank\t14.923\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.cpi_inflation_rate (var x)))) fb:en.costa_rica)) (value (list (name fb:g.124x8gy8f \"Inflation, World Development Indicators, World Bank\"))) (type fb:dataworld.information_source)\nwho plays captain kirk in star trek?\tJimmy Bennett\t5.059\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.james_t_kirk)) (value (list (name fb:en.jimmy_bennett \"Jimmy Bennett\") (name fb:en.chris_pine \"Chris Pine\") (name fb:en.william_shatner \"William Shatner\"))) (type fb:film.actor)\nwho plays captain kirk in star trek?\tChris Pine\t5.059\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.james_t_kirk)) (value (list (name fb:en.jimmy_bennett \"Jimmy Bennett\") (name fb:en.chris_pine \"Chris Pine\") (name fb:en.william_shatner \"William Shatner\"))) (type fb:film.actor)\nwho plays captain kirk in star trek?\tWilliam Shatner\t5.059\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.james_t_kirk)) (value (list (name fb:en.jimmy_bennett \"Jimmy Bennett\") (name fb:en.chris_pine \"Chris Pine\") (name fb:en.william_shatner \"William Shatner\"))) (type fb:film.actor)\nwho does albert pujols play for 2012?\tLos Angeles Angels of Anaheim\t17.063\tformula (fb:sports.sports_team.roster (and (fb:sports.sports_team_roster.player fb:en.albert_pujols) (fb:sports.sports_team_roster.from (date 2012 -1 -1))))) (value (list (name fb:en.los_angeles_angels_of_anaheim \"Los Angeles Angels of Anaheim\"))) (type fb:sports.sports_team)\nwhat kind of government is sweden?\tUnitary state\t8.746\tformula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.hereditary_monarchy \"Hereditary monarchy\"))) (type fb:government.form_of_government)\nwhat kind of government is sweden?\tParliamentary system\t8.746\tformula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.hereditary_monarchy \"Hereditary monarchy\"))) (type fb:government.form_of_government)\nwhat kind of government is sweden?\tConstitutional monarchy\t8.746\tformula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.hereditary_monarchy \"Hereditary monarchy\"))) (type fb:government.form_of_government)\nwhat kind of government is sweden?\tRepresentative democracy\t8.746\tformula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.hereditary_monarchy \"Hereditary monarchy\"))) (type fb:government.form_of_government)\nwhat kind of government is sweden?\tHereditary monarchy\t8.746\tformula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.representative_democracy \"Representative democracy\") (name fb:en.hereditary_monarchy \"Hereditary monarchy\"))) (type fb:government.form_of_government)\nwhere was country singer george jones born?\tUnited States of America\t12.91\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.thumber_jones)))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.country)\nwhat is the money of switzerland called?\tUnited States of America\t10.297\tformula ((lambda x (!fb:location.imports_and_exports.imported_from (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.switzerland)) (value (list (name fb:en.scotland Scotland) (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.statistical_region)\nwhat to see near grand canyon?\tGrand Canyon National Park\t13.231\tformula (fb:travel.travel_destination.tourist_attractions fb:en.grand_canyon)) (value (list (name fb:en.phoenix_az Phoenix) (name fb:en.grand_canyon_national_park \"Grand Canyon National Park\") (name fb:en.lake_powell \"Lake Powell\"))) (type fb:travel.travel_destination)\nwhat to see near grand canyon?\tLake Powell\t13.231\tformula (fb:travel.travel_destination.tourist_attractions fb:en.grand_canyon)) (value (list (name fb:en.phoenix_az Phoenix) (name fb:en.grand_canyon_national_park \"Grand Canyon National Park\") (name fb:en.lake_powell \"Lake Powell\"))) (type fb:travel.travel_destination)\nwhen did the jews stop making animal sacrifices?\tIndie rock\t4.435\tformula (fb:music.genre.artists fb:en.silver_jews)) (value (list (name fb:en.indie_rock \"Indie rock\") (name fb:en.country_rock \"Country rock\") (name fb:en.alternative_country \"Alternative country\") (name fb:m.05rwpb Indie))) (type fb:music.genre)\nwhen did the jews stop making animal sacrifices?\tCountry rock\t4.435\tformula (fb:music.genre.artists fb:en.silver_jews)) (value (list (name fb:en.indie_rock \"Indie rock\") (name fb:en.country_rock \"Country rock\") (name fb:en.alternative_country \"Alternative country\") (name fb:m.05rwpb Indie))) (type fb:music.genre)\nwhen did the jews stop making animal sacrifices?\tAlternative country\t4.435\tformula (fb:music.genre.artists fb:en.silver_jews)) (value (list (name fb:en.indie_rock \"Indie rock\") (name fb:en.country_rock \"Country rock\") (name fb:en.alternative_country \"Alternative country\") (name fb:m.05rwpb Indie))) (type fb:music.genre)\nwhat do people in australia speak?\tEnglish Language\t10.027\tformula (fb:language.human_language.countries_spoken_in fb:en.australia)) (value (list (name fb:en.english \"English Language\") (name fb:en.lojban Lojban) (name fb:en.esperanto \"Esperanto Language\"))) (type fb:language.human_language)\nwhat do people in australia speak?\tEsperanto Language\t10.027\tformula (fb:language.human_language.countries_spoken_in fb:en.australia)) (value (list (name fb:en.english \"English Language\") (name fb:en.lojban Lojban) (name fb:en.esperanto \"Esperanto Language\"))) (type fb:language.human_language)\nwhat has ian somerhalder acted in?\tNational Lampoon's TV: The Movie\t10.389\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie \"National Lampoon's TV: The Movie\") (name fb:m.05q8gln \"Marco Polo\") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp \"The Anomaly\") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc \"Changing Hearts\") (name fb:en.anatomy_of_a_hate_crime \"Anatomy of a Hate Crime\") (name fb:m.0crts8b \"The Lost Samaritan\"))) (type fb:film.film)\nwhat has ian somerhalder acted in?\tMarco Polo\t10.389\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie \"National Lampoon's TV: The Movie\") (name fb:m.05q8gln \"Marco Polo\") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp \"The Anomaly\") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc \"Changing Hearts\") (name fb:en.anatomy_of_a_hate_crime \"Anatomy of a Hate Crime\") (name fb:m.0crts8b \"The Lost Samaritan\"))) (type fb:film.film)\nwhat has ian somerhalder acted in?\tThe Anomaly\t10.389\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie \"National Lampoon's TV: The Movie\") (name fb:m.05q8gln \"Marco Polo\") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp \"The Anomaly\") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc \"Changing Hearts\") (name fb:en.anatomy_of_a_hate_crime \"Anatomy of a Hate Crime\") (name fb:m.0crts8b \"The Lost Samaritan\"))) (type fb:film.film)\nwhat has ian somerhalder acted in?\tChanging Hearts\t10.389\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie \"National Lampoon's TV: The Movie\") (name fb:m.05q8gln \"Marco Polo\") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp \"The Anomaly\") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc \"Changing Hearts\") (name fb:en.anatomy_of_a_hate_crime \"Anatomy of a Hate Crime\") (name fb:m.0crts8b \"The Lost Samaritan\"))) (type fb:film.film)\nwhat has ian somerhalder acted in?\tAnatomy of a Hate Crime\t10.389\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie \"National Lampoon's TV: The Movie\") (name fb:m.05q8gln \"Marco Polo\") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp \"The Anomaly\") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc \"Changing Hearts\") (name fb:en.anatomy_of_a_hate_crime \"Anatomy of a Hate Crime\") (name fb:m.0crts8b \"The Lost Samaritan\"))) (type fb:film.film)\nwhat has ian somerhalder acted in?\tThe Lost Samaritan\t10.389\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie \"National Lampoon's TV: The Movie\") (name fb:m.05q8gln \"Marco Polo\") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp \"The Anomaly\") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc \"Changing Hearts\") (name fb:en.anatomy_of_a_hate_crime \"Anatomy of a Hate Crime\") (name fb:m.0crts8b \"The Lost Samaritan\"))) (type fb:film.film)\nwhat movies did ron howard director?\tArrested Development\t7.682\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development \"Arrested Development\") (name fb:m.0bq97g \"Curious George\") (name fb:en.apollo_13_1995 \"Apollo 13\") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:en.the_da_vinci_code_2006 \"The Da Vinci Code\") (name fb:en.sports_night \"Sports Night\") (name fb:en.the_shootist \"The Shootist\"))) (type (union fb:award.award_nominated_work))\nwhat movies did ron howard director?\tCurious George\t7.682\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development \"Arrested Development\") (name fb:m.0bq97g \"Curious George\") (name fb:en.apollo_13_1995 \"Apollo 13\") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:en.the_da_vinci_code_2006 \"The Da Vinci Code\") (name fb:en.sports_night \"Sports Night\") (name fb:en.the_shootist \"The Shootist\"))) (type (union fb:award.award_nominated_work))\nwhat movies did ron howard director?\tApollo 13\t7.682\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development \"Arrested Development\") (name fb:m.0bq97g \"Curious George\") (name fb:en.apollo_13_1995 \"Apollo 13\") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:en.the_da_vinci_code_2006 \"The Da Vinci Code\") (name fb:en.sports_night \"Sports Night\") (name fb:en.the_shootist \"The Shootist\"))) (type (union fb:award.award_nominated_work))\nwhat movies did ron howard director?\tFrom the Earth to the Moon\t7.682\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development \"Arrested Development\") (name fb:m.0bq97g \"Curious George\") (name fb:en.apollo_13_1995 \"Apollo 13\") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:en.the_da_vinci_code_2006 \"The Da Vinci Code\") (name fb:en.sports_night \"Sports Night\") (name fb:en.the_shootist \"The Shootist\"))) (type (union fb:award.award_nominated_work))\nwhat movies did ron howard director?\tA Beautiful Mind\t7.682\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development \"Arrested Development\") (name fb:m.0bq97g \"Curious George\") (name fb:en.apollo_13_1995 \"Apollo 13\") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:en.the_da_vinci_code_2006 \"The Da Vinci Code\") (name fb:en.sports_night \"Sports Night\") (name fb:en.the_shootist \"The Shootist\"))) (type (union fb:award.award_nominated_work))\nwhat movies did ron howard director?\tThe Da Vinci Code\t7.682\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development \"Arrested Development\") (name fb:m.0bq97g \"Curious George\") (name fb:en.apollo_13_1995 \"Apollo 13\") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:en.the_da_vinci_code_2006 \"The Da Vinci Code\") (name fb:en.sports_night \"Sports Night\") (name fb:en.the_shootist \"The Shootist\"))) (type (union fb:award.award_nominated_work))\nwhat movies did ron howard director?\tSports Night\t7.682\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development \"Arrested Development\") (name fb:m.0bq97g \"Curious George\") (name fb:en.apollo_13_1995 \"Apollo 13\") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:en.the_da_vinci_code_2006 \"The Da Vinci Code\") (name fb:en.sports_night \"Sports Night\") (name fb:en.the_shootist \"The Shootist\"))) (type (union fb:award.award_nominated_work))\nwhat movies did ron howard director?\tThe Shootist\t7.682\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development \"Arrested Development\") (name fb:m.0bq97g \"Curious George\") (name fb:en.apollo_13_1995 \"Apollo 13\") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:en.the_da_vinci_code_2006 \"The Da Vinci Code\") (name fb:en.sports_night \"Sports Night\") (name fb:en.the_shootist \"The Shootist\"))) (type (union fb:award.award_nominated_work))\nwhat role did alexander hamilton play in the constitution?\tBishop of Jarrow\t9.628\tformula ((lambda x (!fb:religion.religious_organization_leadership.role (!fb:religion.religious_leader.religious_leadership (var x)))) fb:en.alexander_kenneth_hamilton)) (value (list (name fb:en.bishop_of_jarrow \"Bishop of Jarrow\"))) (type fb:religion.religious_leadership_title)\nwho is shakira married to?\tGerard Piqué\t15.578\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.shakira)) (value (list (name fb:en.gerard_pique \"Gerard Piqué\") (name fb:en.antonio_de_la_rua \"Antonio de la Rúa\"))) (type fb:people.person)\nwho is shakira married to?\tAntonio de la Rúa\t15.578\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.shakira)) (value (list (name fb:en.gerard_pique \"Gerard Piqué\") (name fb:en.antonio_de_la_rua \"Antonio de la Rúa\"))) (type fb:people.person)\nwhat did gerald r ford die from?\tCardiovascular disease\t17.352\tformula (fb:people.cause_of_death.people fb:en.gerald_ford)) (value (list (name fb:en.cardiovascular_disease \"Cardiovascular disease\"))) (type fb:people.cause_of_death)\nwhere did kevin love go to college?\tLake Oswego High School\t11.29\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.kevin_love_1988))) (value (list (name fb:en.lake_oswego_high_school \"Lake Oswego High School\") (name fb:en.university_of_california_los_angeles \"University of California, Los Angeles\"))) (type fb:education.educational_institution)\nwhere did kevin love go to college?\tUniversity of California, Los Angeles\t11.29\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.kevin_love_1988))) (value (list (name fb:en.lake_oswego_high_school \"Lake Oswego High School\") (name fb:en.university_of_california_los_angeles \"University of California, Los Angeles\"))) (type fb:education.educational_institution)\nwhat type of government was formed when italy unified?\tParliamentary republic\t11.653\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhat type of government was formed when italy unified?\tConstitutional republic\t11.653\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhat type of government was formed when italy unified?\tUnitary republic\t11.653\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhat was the ancient egyptians spoken language?\tCoptic Language\t18.78\tformula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language \"Coptic Language\") (name fb:en.languages_of_egypt \"Languages of Egypt\") (name fb:en.egyptian_languages \"Egyptian language\") (name fb:en.saidi_arabic \"Sa'idi Arabic\") (name fb:en.egyptian_arabic \"Egyptian Arabic\"))) (type fb:language.human_language)\nwhat was the ancient egyptians spoken language?\tLanguages of Egypt\t18.78\tformula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language \"Coptic Language\") (name fb:en.languages_of_egypt \"Languages of Egypt\") (name fb:en.egyptian_languages \"Egyptian language\") (name fb:en.saidi_arabic \"Sa'idi Arabic\") (name fb:en.egyptian_arabic \"Egyptian Arabic\"))) (type fb:language.human_language)\nwhat was the ancient egyptians spoken language?\tEgyptian language\t18.78\tformula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language \"Coptic Language\") (name fb:en.languages_of_egypt \"Languages of Egypt\") (name fb:en.egyptian_languages \"Egyptian language\") (name fb:en.saidi_arabic \"Sa'idi Arabic\") (name fb:en.egyptian_arabic \"Egyptian Arabic\"))) (type fb:language.human_language)\nwhat was the ancient egyptians spoken language?\tSa'idi Arabic\t18.78\tformula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language \"Coptic Language\") (name fb:en.languages_of_egypt \"Languages of Egypt\") (name fb:en.egyptian_languages \"Egyptian language\") (name fb:en.saidi_arabic \"Sa'idi Arabic\") (name fb:en.egyptian_arabic \"Egyptian Arabic\"))) (type fb:language.human_language)\nwhat was the ancient egyptians spoken language?\tEgyptian Arabic\t18.78\tformula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language \"Coptic Language\") (name fb:en.languages_of_egypt \"Languages of Egypt\") (name fb:en.egyptian_languages \"Egyptian language\") (name fb:en.saidi_arabic \"Sa'idi Arabic\") (name fb:en.egyptian_arabic \"Egyptian Arabic\"))) (type fb:language.human_language)\nwho is the senior senator of louisiana?\tAlexandre Mouton\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tJean Noel Destréhan\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tWilliam C. C. Claiborne\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tAlexander Barrow\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tHuey Long\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tCharles Dominique Joseph Bouligny\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tJames Brown\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tJosiah S. Johnston\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tHenry Johnson\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is the senior senator of louisiana?\tGeorge A. Waggaman\t16.203\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwhat movies did morgan freeman star in?\tDriving Miss Daisy\t12.08\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy \"Driving Miss Daisy\") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby \"Million Dollar Baby\") (name fb:en.street_smart \"Street Smart\") (name fb:en.the_dark_knight \"The Dark Knight\") (name fb:m.0n27j7m \"The Mighty Gents\") (name fb:en.robin_hood_prince_of_thieves \"Robin Hood: Prince of Thieves\") (name fb:en.gone_baby_gone \"Gone Baby Gone\"))) (type fb:award.award_nominated_work)\nwhat movies did morgan freeman star in?\tMillion Dollar Baby\t12.08\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy \"Driving Miss Daisy\") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby \"Million Dollar Baby\") (name fb:en.street_smart \"Street Smart\") (name fb:en.the_dark_knight \"The Dark Knight\") (name fb:m.0n27j7m \"The Mighty Gents\") (name fb:en.robin_hood_prince_of_thieves \"Robin Hood: Prince of Thieves\") (name fb:en.gone_baby_gone \"Gone Baby Gone\"))) (type fb:award.award_nominated_work)\nwhat movies did morgan freeman star in?\tStreet Smart\t12.08\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy \"Driving Miss Daisy\") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby \"Million Dollar Baby\") (name fb:en.street_smart \"Street Smart\") (name fb:en.the_dark_knight \"The Dark Knight\") (name fb:m.0n27j7m \"The Mighty Gents\") (name fb:en.robin_hood_prince_of_thieves \"Robin Hood: Prince of Thieves\") (name fb:en.gone_baby_gone \"Gone Baby Gone\"))) (type fb:award.award_nominated_work)\nwhat movies did morgan freeman star in?\tThe Dark Knight\t12.08\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy \"Driving Miss Daisy\") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby \"Million Dollar Baby\") (name fb:en.street_smart \"Street Smart\") (name fb:en.the_dark_knight \"The Dark Knight\") (name fb:m.0n27j7m \"The Mighty Gents\") (name fb:en.robin_hood_prince_of_thieves \"Robin Hood: Prince of Thieves\") (name fb:en.gone_baby_gone \"Gone Baby Gone\"))) (type fb:award.award_nominated_work)\nwhat movies did morgan freeman star in?\tThe Mighty Gents\t12.08\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy \"Driving Miss Daisy\") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby \"Million Dollar Baby\") (name fb:en.street_smart \"Street Smart\") (name fb:en.the_dark_knight \"The Dark Knight\") (name fb:m.0n27j7m \"The Mighty Gents\") (name fb:en.robin_hood_prince_of_thieves \"Robin Hood: Prince of Thieves\") (name fb:en.gone_baby_gone \"Gone Baby Gone\"))) (type fb:award.award_nominated_work)\nwhat movies did morgan freeman star in?\tRobin Hood: Prince of Thieves\t12.08\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy \"Driving Miss Daisy\") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby \"Million Dollar Baby\") (name fb:en.street_smart \"Street Smart\") (name fb:en.the_dark_knight \"The Dark Knight\") (name fb:m.0n27j7m \"The Mighty Gents\") (name fb:en.robin_hood_prince_of_thieves \"Robin Hood: Prince of Thieves\") (name fb:en.gone_baby_gone \"Gone Baby Gone\"))) (type fb:award.award_nominated_work)\nwhat movies did morgan freeman star in?\tGone Baby Gone\t12.08\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy \"Driving Miss Daisy\") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby \"Million Dollar Baby\") (name fb:en.street_smart \"Street Smart\") (name fb:en.the_dark_knight \"The Dark Knight\") (name fb:m.0n27j7m \"The Mighty Gents\") (name fb:en.robin_hood_prince_of_thieves \"Robin Hood: Prince of Thieves\") (name fb:en.gone_baby_gone \"Gone Baby Gone\"))) (type fb:award.award_nominated_work)\nwho did john kennedy have affairs with?\tJudith Exner\t5.619\tformula ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.john_f_kennedy)) (value (list (name fb:en.judith_exner \"Judith Exner\") (name fb:en.marliyn_monroe \"Marilyn Monroe\"))) (type fb:celebrities.celebrity)\nwho did john kennedy have affairs with?\tMarilyn Monroe\t5.619\tformula ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.john_f_kennedy)) (value (list (name fb:en.judith_exner \"Judith Exner\") (name fb:en.marliyn_monroe \"Marilyn Monroe\"))) (type fb:celebrities.celebrity)\nwhat type of money to take to cuba?\tUnitary state\t16.518\tformula (fb:government.form_of_government.countries fb:en.cuba)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.socialist_state \"Socialist state\") (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat type of money to take to cuba?\tSocialist state\t16.518\tformula (fb:government.form_of_government.countries fb:en.cuba)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.socialist_state \"Socialist state\") (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat type of money to take to cuba?\tSemi-presidential system\t16.518\tformula (fb:government.form_of_government.countries fb:en.cuba)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.socialist_state \"Socialist state\") (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat currency should you take to morocco?\tMoroccan dirham\t24.338\tformula (!fb:location.country.currency_used fb:en.morocco)) (value (list (name fb:en.moroccan_dirham \"Moroccan dirham\"))) (type fb:finance.currency)\nwhat do they call money in japan?\tInternet users as percentage of population, World Development Indicators, World Bank\t11.846\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.japan)) (value (list (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\") (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nwhat do they call money in japan?\tInternet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\t11.846\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.japan)) (value (list (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\") (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nwho is richard pryor son?\tElizabeth Pryor\t10.845\tformula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor \"Elizabeth Pryor\") (name fb:en.rain_pryor \"Rain Pryor\") (name fb:en.renee_pryor \"Renee Pryor\") (name fb:en.kelsey_pryor \"Kelsey Pryor\") (name fb:en.steven_pryor \"Steven Pryor\") (name fb:en.franklin_pryor \"Franklin Pryor\") (name fb:en.richard_pryor_jr \"Richard Pryor Jr.\"))) (type fb:people.person)\nwho is richard pryor son?\tRain Pryor\t10.845\tformula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor \"Elizabeth Pryor\") (name fb:en.rain_pryor \"Rain Pryor\") (name fb:en.renee_pryor \"Renee Pryor\") (name fb:en.kelsey_pryor \"Kelsey Pryor\") (name fb:en.steven_pryor \"Steven Pryor\") (name fb:en.franklin_pryor \"Franklin Pryor\") (name fb:en.richard_pryor_jr \"Richard Pryor Jr.\"))) (type fb:people.person)\nwho is richard pryor son?\tRenee Pryor\t10.845\tformula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor \"Elizabeth Pryor\") (name fb:en.rain_pryor \"Rain Pryor\") (name fb:en.renee_pryor \"Renee Pryor\") (name fb:en.kelsey_pryor \"Kelsey Pryor\") (name fb:en.steven_pryor \"Steven Pryor\") (name fb:en.franklin_pryor \"Franklin Pryor\") (name fb:en.richard_pryor_jr \"Richard Pryor Jr.\"))) (type fb:people.person)\nwho is richard pryor son?\tKelsey Pryor\t10.845\tformula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor \"Elizabeth Pryor\") (name fb:en.rain_pryor \"Rain Pryor\") (name fb:en.renee_pryor \"Renee Pryor\") (name fb:en.kelsey_pryor \"Kelsey Pryor\") (name fb:en.steven_pryor \"Steven Pryor\") (name fb:en.franklin_pryor \"Franklin Pryor\") (name fb:en.richard_pryor_jr \"Richard Pryor Jr.\"))) (type fb:people.person)\nwho is richard pryor son?\tSteven Pryor\t10.845\tformula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor \"Elizabeth Pryor\") (name fb:en.rain_pryor \"Rain Pryor\") (name fb:en.renee_pryor \"Renee Pryor\") (name fb:en.kelsey_pryor \"Kelsey Pryor\") (name fb:en.steven_pryor \"Steven Pryor\") (name fb:en.franklin_pryor \"Franklin Pryor\") (name fb:en.richard_pryor_jr \"Richard Pryor Jr.\"))) (type fb:people.person)\nwho is richard pryor son?\tFranklin Pryor\t10.845\tformula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor \"Elizabeth Pryor\") (name fb:en.rain_pryor \"Rain Pryor\") (name fb:en.renee_pryor \"Renee Pryor\") (name fb:en.kelsey_pryor \"Kelsey Pryor\") (name fb:en.steven_pryor \"Steven Pryor\") (name fb:en.franklin_pryor \"Franklin Pryor\") (name fb:en.richard_pryor_jr \"Richard Pryor Jr.\"))) (type fb:people.person)\nwho is richard pryor son?\tRichard Pryor Jr.\t10.845\tformula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor \"Elizabeth Pryor\") (name fb:en.rain_pryor \"Rain Pryor\") (name fb:en.renee_pryor \"Renee Pryor\") (name fb:en.kelsey_pryor \"Kelsey Pryor\") (name fb:en.steven_pryor \"Steven Pryor\") (name fb:en.franklin_pryor \"Franklin Pryor\") (name fb:en.richard_pryor_jr \"Richard Pryor Jr.\"))) (type fb:people.person)\nwhat countries have english as their official language?\tUnited Kingdom\t24.135\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.philippines Philippines) (name fb:en.hong_kong \"Hong Kong\") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland \"Northern Ireland\"))) (type fb:location.country)\nwhat countries have english as their official language?\tSouth Africa\t24.135\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.philippines Philippines) (name fb:en.hong_kong \"Hong Kong\") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland \"Northern Ireland\"))) (type fb:location.country)\nwhat countries have english as their official language?\tHong Kong\t24.135\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.philippines Philippines) (name fb:en.hong_kong \"Hong Kong\") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland \"Northern Ireland\"))) (type fb:location.country)\nwhat countries have english as their official language?\tNorthern Ireland\t24.135\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.philippines Philippines) (name fb:en.hong_kong \"Hong Kong\") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland \"Northern Ireland\"))) (type fb:location.country)\nwhat international organizations is china part of?\tProgram for Appropriate Technology in Health\t17.175\tformula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health \"Program for Appropriate Technology in Health\") (name fb:en.communist_party_of_china \"Communist Party of China\") (name fb:m.05b2y78 \"Department of Health\") (name fb:m.0cc6qz3 \"Committee for National Revolution\") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 \"Cultural Development Center for Rural Women\") (name fb:en.chinese_volleyball_association \"Chinese Volleyball Association\") (name fb:m.0fn_20 \"Progressive Party\") (name fb:en.google_china \"Google China\"))) (type (union fb:organization.organization))\nwhat international organizations is china part of?\tCommunist Party of China\t17.175\tformula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health \"Program for Appropriate Technology in Health\") (name fb:en.communist_party_of_china \"Communist Party of China\") (name fb:m.05b2y78 \"Department of Health\") (name fb:m.0cc6qz3 \"Committee for National Revolution\") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 \"Cultural Development Center for Rural Women\") (name fb:en.chinese_volleyball_association \"Chinese Volleyball Association\") (name fb:m.0fn_20 \"Progressive Party\") (name fb:en.google_china \"Google China\"))) (type (union fb:organization.organization))\nwhat international organizations is china part of?\tDepartment of Health\t17.175\tformula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health \"Program for Appropriate Technology in Health\") (name fb:en.communist_party_of_china \"Communist Party of China\") (name fb:m.05b2y78 \"Department of Health\") (name fb:m.0cc6qz3 \"Committee for National Revolution\") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 \"Cultural Development Center for Rural Women\") (name fb:en.chinese_volleyball_association \"Chinese Volleyball Association\") (name fb:m.0fn_20 \"Progressive Party\") (name fb:en.google_china \"Google China\"))) (type (union fb:organization.organization))\nwhat international organizations is china part of?\tCommittee for National Revolution\t17.175\tformula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health \"Program for Appropriate Technology in Health\") (name fb:en.communist_party_of_china \"Communist Party of China\") (name fb:m.05b2y78 \"Department of Health\") (name fb:m.0cc6qz3 \"Committee for National Revolution\") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 \"Cultural Development Center for Rural Women\") (name fb:en.chinese_volleyball_association \"Chinese Volleyball Association\") (name fb:m.0fn_20 \"Progressive Party\") (name fb:en.google_china \"Google China\"))) (type (union fb:organization.organization))\nwhat international organizations is china part of?\tCultural Development Center for Rural Women\t17.175\tformula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health \"Program for Appropriate Technology in Health\") (name fb:en.communist_party_of_china \"Communist Party of China\") (name fb:m.05b2y78 \"Department of Health\") (name fb:m.0cc6qz3 \"Committee for National Revolution\") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 \"Cultural Development Center for Rural Women\") (name fb:en.chinese_volleyball_association \"Chinese Volleyball Association\") (name fb:m.0fn_20 \"Progressive Party\") (name fb:en.google_china \"Google China\"))) (type (union fb:organization.organization))\nwhat international organizations is china part of?\tChinese Volleyball Association\t17.175\tformula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health \"Program for Appropriate Technology in Health\") (name fb:en.communist_party_of_china \"Communist Party of China\") (name fb:m.05b2y78 \"Department of Health\") (name fb:m.0cc6qz3 \"Committee for National Revolution\") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 \"Cultural Development Center for Rural Women\") (name fb:en.chinese_volleyball_association \"Chinese Volleyball Association\") (name fb:m.0fn_20 \"Progressive Party\") (name fb:en.google_china \"Google China\"))) (type (union fb:organization.organization))\nwhat international organizations is china part of?\tProgressive Party\t17.175\tformula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health \"Program for Appropriate Technology in Health\") (name fb:en.communist_party_of_china \"Communist Party of China\") (name fb:m.05b2y78 \"Department of Health\") (name fb:m.0cc6qz3 \"Committee for National Revolution\") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 \"Cultural Development Center for Rural Women\") (name fb:en.chinese_volleyball_association \"Chinese Volleyball Association\") (name fb:m.0fn_20 \"Progressive Party\") (name fb:en.google_china \"Google China\"))) (type (union fb:organization.organization))\nwhat international organizations is china part of?\tGoogle China\t17.175\tformula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health \"Program for Appropriate Technology in Health\") (name fb:en.communist_party_of_china \"Communist Party of China\") (name fb:m.05b2y78 \"Department of Health\") (name fb:m.0cc6qz3 \"Committee for National Revolution\") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 \"Cultural Development Center for Rural Women\") (name fb:en.chinese_volleyball_association \"Chinese Volleyball Association\") (name fb:m.0fn_20 \"Progressive Party\") (name fb:en.google_china \"Google China\"))) (type (union fb:organization.organization))\nwhat county is west st paul in?\tDakota County\t12.55\tformula (!fb:location.hud_county_place.county fb:en.west_st_paul)) (value (list (name fb:en.dakota_county \"Dakota County\"))) (type fb:location.us_county)\nwhat college did magic johnson play for?\tMichigan State University\t15.264\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.magic_johnson))) (value (list (name fb:en.michigan_state_university \"Michigan State University\"))) (type (union fb:education.university))\nwhat did baron de montesquie influence?\tZygmunt Bauman\t8.336\tformula (fb:influence.influence_node.influenced_by fb:en.anthony_giddens)) (value (list (name fb:en.zygmunt_bauman \"Zygmunt Bauman\") (name fb:en.stephen_r_barley \"Stephen R. Barley\") (name fb:en.wanda_orlikowski \"Wanda Orlikowski\"))) (type fb:influence.influence_node)\nwhat did baron de montesquie influence?\tStephen R. Barley\t8.336\tformula (fb:influence.influence_node.influenced_by fb:en.anthony_giddens)) (value (list (name fb:en.zygmunt_bauman \"Zygmunt Bauman\") (name fb:en.stephen_r_barley \"Stephen R. Barley\") (name fb:en.wanda_orlikowski \"Wanda Orlikowski\"))) (type fb:influence.influence_node)\nwhat did baron de montesquie influence?\tWanda Orlikowski\t8.336\tformula (fb:influence.influence_node.influenced_by fb:en.anthony_giddens)) (value (list (name fb:en.zygmunt_bauman \"Zygmunt Bauman\") (name fb:en.stephen_r_barley \"Stephen R. Barley\") (name fb:en.wanda_orlikowski \"Wanda Orlikowski\"))) (type fb:influence.influence_node)\nwho did carlos boozer play for?\tChicago Bulls\t13.875\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.carlos_boozer)) (value (list (name fb:en.chicago_bulls \"Chicago Bulls\") (name fb:en.duke_blue_devils_basketball \"Duke Blue Devils men's basketball\"))) (type fb:sports.sports_team)\nwho did carlos boozer play for?\tDuke Blue Devils men's basketball\t13.875\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.carlos_boozer)) (value (list (name fb:en.chicago_bulls \"Chicago Bulls\") (name fb:en.duke_blue_devils_basketball \"Duke Blue Devils men's basketball\"))) (type fb:sports.sports_team)\nwho owns the portland press herald?\tBlethen Maine Newspapers, Inc.\t4.156\tformula (!fb:book.newspaper.owner fb:en.portland_press_herald)) (value (list (name fb:en.blethen_maine_newspapers_inc \"Blethen Maine Newspapers, Inc.\"))) (type fb:book.newspaper_owner)\nwhat did albert speer design?\tOlympic Stadium\t8.561\tformula (!fb:architecture.architect.structures_designed fb:en.albert_speer)) (value (list (name fb:en.olympiastadion_berlin \"Olympic Stadium\") (name fb:en.reich_chancellery \"Reich Chancellery\") (name fb:en.deutsches_stadion \"Deutsches Stadion\") (name fb:en.volkshalle Volkshalle))) (type fb:architecture.structure)\nwhat did albert speer design?\tReich Chancellery\t8.561\tformula (!fb:architecture.architect.structures_designed fb:en.albert_speer)) (value (list (name fb:en.olympiastadion_berlin \"Olympic Stadium\") (name fb:en.reich_chancellery \"Reich Chancellery\") (name fb:en.deutsches_stadion \"Deutsches Stadion\") (name fb:en.volkshalle Volkshalle))) (type fb:architecture.structure)\nwhat did albert speer design?\tDeutsches Stadion\t8.561\tformula (!fb:architecture.architect.structures_designed fb:en.albert_speer)) (value (list (name fb:en.olympiastadion_berlin \"Olympic Stadium\") (name fb:en.reich_chancellery \"Reich Chancellery\") (name fb:en.deutsches_stadion \"Deutsches Stadion\") (name fb:en.volkshalle Volkshalle))) (type fb:architecture.structure)\nwho does jordan palmer play for?\tArizona Rattlers\t12.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers \"Arizona Rattlers\") (name fb:en.washington_redskins \"Washington Redskins\") (name fb:en.jacksonville_jaguars \"Jacksonville Jaguars\") (name fb:en.cincinnati_bengals \"Cincinnati Bengals\") (name fb:m.0gfjfrn \"UTEP Miners football\") (name fb:en.ufl_san_francisco_sacramento \"Sacramento Mountain Lions\"))) (type fb:sports.sports_team)\nwho does jordan palmer play for?\tWashington Redskins\t12.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers \"Arizona Rattlers\") (name fb:en.washington_redskins \"Washington Redskins\") (name fb:en.jacksonville_jaguars \"Jacksonville Jaguars\") (name fb:en.cincinnati_bengals \"Cincinnati Bengals\") (name fb:m.0gfjfrn \"UTEP Miners football\") (name fb:en.ufl_san_francisco_sacramento \"Sacramento Mountain Lions\"))) (type fb:sports.sports_team)\nwho does jordan palmer play for?\tJacksonville Jaguars\t12.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers \"Arizona Rattlers\") (name fb:en.washington_redskins \"Washington Redskins\") (name fb:en.jacksonville_jaguars \"Jacksonville Jaguars\") (name fb:en.cincinnati_bengals \"Cincinnati Bengals\") (name fb:m.0gfjfrn \"UTEP Miners football\") (name fb:en.ufl_san_francisco_sacramento \"Sacramento Mountain Lions\"))) (type fb:sports.sports_team)\nwho does jordan palmer play for?\tCincinnati Bengals\t12.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers \"Arizona Rattlers\") (name fb:en.washington_redskins \"Washington Redskins\") (name fb:en.jacksonville_jaguars \"Jacksonville Jaguars\") (name fb:en.cincinnati_bengals \"Cincinnati Bengals\") (name fb:m.0gfjfrn \"UTEP Miners football\") (name fb:en.ufl_san_francisco_sacramento \"Sacramento Mountain Lions\"))) (type fb:sports.sports_team)\nwho does jordan palmer play for?\tUTEP Miners football\t12.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers \"Arizona Rattlers\") (name fb:en.washington_redskins \"Washington Redskins\") (name fb:en.jacksonville_jaguars \"Jacksonville Jaguars\") (name fb:en.cincinnati_bengals \"Cincinnati Bengals\") (name fb:m.0gfjfrn \"UTEP Miners football\") (name fb:en.ufl_san_francisco_sacramento \"Sacramento Mountain Lions\"))) (type fb:sports.sports_team)\nwho does jordan palmer play for?\tSacramento Mountain Lions\t12.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers \"Arizona Rattlers\") (name fb:en.washington_redskins \"Washington Redskins\") (name fb:en.jacksonville_jaguars \"Jacksonville Jaguars\") (name fb:en.cincinnati_bengals \"Cincinnati Bengals\") (name fb:m.0gfjfrn \"UTEP Miners football\") (name fb:en.ufl_san_francisco_sacramento \"Sacramento Mountain Lions\"))) (type fb:sports.sports_team)\nwhat art movement did leonardo da vinci belong to?\tHigh Renaissance\t18.924\tformula (and (fb:type.object.type fb:visual_art.art_period_movement) (!fb:visual_art.visual_artist.associated_periods_or_movements fb:en.leonardo_da_vinci))) (value (list (name fb:en.high_renaissance \"High Renaissance\"))) (type (union fb:visual_art.art_period_movement))\nwhat time does american horror story air?\tSamoa Time Zone\t5.182\tformula (!fb:location.location.time_zones fb:en.american_samoa)) (value (list (name fb:en.utc-11 UTC−11:00) (name fb:en.samoa_time_zone \"Samoa Time Zone\"))) (type fb:time.time_zone)\nwhat airport is near arlington tx?\tRonald Reagan Washington National Airport\t11.082\tformula (and (fb:type.object.type fb:aviation.airport) (!fb:location.location.nearby_airports fb:en.arlington))) (value (list (name fb:en.ronald_reagan_washington_national_airport \"Ronald Reagan Washington National Airport\"))) (type (union fb:aviation.airport))\nwho did vasco de gama explore for?\tDubai International Airport\t4.319\tformula (fb:aviation.airport.hub_for fb:en.gama_aviation)) (value (list (name fb:en.dubai_international_airport \"Dubai International Airport\") (name fb:en.bradley_international_airport \"Bradley International Airport\") (name fb:en.farnborough_airfield \"Farnborough Airport\"))) (type fb:aviation.airport)\nwho did vasco de gama explore for?\tBradley International Airport\t4.319\tformula (fb:aviation.airport.hub_for fb:en.gama_aviation)) (value (list (name fb:en.dubai_international_airport \"Dubai International Airport\") (name fb:en.bradley_international_airport \"Bradley International Airport\") (name fb:en.farnborough_airfield \"Farnborough Airport\"))) (type fb:aviation.airport)\nwho did vasco de gama explore for?\tFarnborough Airport\t4.319\tformula (fb:aviation.airport.hub_for fb:en.gama_aviation)) (value (list (name fb:en.dubai_international_airport \"Dubai International Airport\") (name fb:en.bradley_international_airport \"Bradley International Airport\") (name fb:en.farnborough_airfield \"Farnborough Airport\"))) (type fb:aviation.airport)\nwhat team does heskey play for?\tWigan Athletic F.C.\t14.456\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.emile_heskey))) (value (list (name fb:en.wigan_athletic_fc \"Wigan Athletic F.C.\") (name fb:en.aston_villa_fc \"Aston Villa F.C.\") (name fb:en.newcastle_united_jets \"Newcastle Jets FC\"))) (type fb:soccer.football_team)\nwhat team does heskey play for?\tAston Villa F.C.\t14.456\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.emile_heskey))) (value (list (name fb:en.wigan_athletic_fc \"Wigan Athletic F.C.\") (name fb:en.aston_villa_fc \"Aston Villa F.C.\") (name fb:en.newcastle_united_jets \"Newcastle Jets FC\"))) (type fb:soccer.football_team)\nwhat team does heskey play for?\tNewcastle Jets FC\t14.456\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.emile_heskey))) (value (list (name fb:en.wigan_athletic_fc \"Wigan Athletic F.C.\") (name fb:en.aston_villa_fc \"Aston Villa F.C.\") (name fb:en.newcastle_united_jets \"Newcastle Jets FC\"))) (type fb:soccer.football_team)\nwhere did emperor hirohito live?\tŌmiya Palace\t3.213\tformula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.hirohito))) (value (list (name fb:en.miya_palace \"Ōmiya Palace\"))) (type fb:location.location)\nwhat language do british speak?\tEnglish Language\t11.374\tformula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english \"English Language\") (name fb:en.urdu \"Urdu Language\") (name fb:en.panjabi_eastern \"Punjabi language\") (name fb:en.pashto_language \"Pashto language\") (name fb:en.kashmiri_language \"Kashmiri Language\") (name fb:en.pothohari_language \"Pahari-Potwari Language\"))) (type fb:language.human_language)\nwhat language do british speak?\tUrdu Language\t11.374\tformula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english \"English Language\") (name fb:en.urdu \"Urdu Language\") (name fb:en.panjabi_eastern \"Punjabi language\") (name fb:en.pashto_language \"Pashto language\") (name fb:en.kashmiri_language \"Kashmiri Language\") (name fb:en.pothohari_language \"Pahari-Potwari Language\"))) (type fb:language.human_language)\nwhat language do british speak?\tPunjabi language\t11.374\tformula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english \"English Language\") (name fb:en.urdu \"Urdu Language\") (name fb:en.panjabi_eastern \"Punjabi language\") (name fb:en.pashto_language \"Pashto language\") (name fb:en.kashmiri_language \"Kashmiri Language\") (name fb:en.pothohari_language \"Pahari-Potwari Language\"))) (type fb:language.human_language)\nwhat language do british speak?\tPashto language\t11.374\tformula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english \"English Language\") (name fb:en.urdu \"Urdu Language\") (name fb:en.panjabi_eastern \"Punjabi language\") (name fb:en.pashto_language \"Pashto language\") (name fb:en.kashmiri_language \"Kashmiri Language\") (name fb:en.pothohari_language \"Pahari-Potwari Language\"))) (type fb:language.human_language)\nwhat language do british speak?\tKashmiri Language\t11.374\tformula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english \"English Language\") (name fb:en.urdu \"Urdu Language\") (name fb:en.panjabi_eastern \"Punjabi language\") (name fb:en.pashto_language \"Pashto language\") (name fb:en.kashmiri_language \"Kashmiri Language\") (name fb:en.pothohari_language \"Pahari-Potwari Language\"))) (type fb:language.human_language)\nwhat language do british speak?\tPahari-Potwari Language\t11.374\tformula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english \"English Language\") (name fb:en.urdu \"Urdu Language\") (name fb:en.panjabi_eastern \"Punjabi language\") (name fb:en.pashto_language \"Pashto language\") (name fb:en.kashmiri_language \"Kashmiri Language\") (name fb:en.pothohari_language \"Pahari-Potwari Language\"))) (type fb:language.human_language)\nwhat high school did lil wayne graduate from?\tUniversity of Houston\t17.309\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston \"University of Houston\") (name fb:m.075_jk3 \"Lafayette Elementary School\") (name fb:en.university_of_phoenix \"University of Phoenix\") (name fb:m.0h2_zh0 \"Eleanor McMain Secondary School\") (name fb:en.mcmain_magnet_secondary_school \"Mcmain Magnet Secondary School\"))) (type fb:education.educational_institution)\nwhat high school did lil wayne graduate from?\tLafayette Elementary School\t17.309\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston \"University of Houston\") (name fb:m.075_jk3 \"Lafayette Elementary School\") (name fb:en.university_of_phoenix \"University of Phoenix\") (name fb:m.0h2_zh0 \"Eleanor McMain Secondary School\") (name fb:en.mcmain_magnet_secondary_school \"Mcmain Magnet Secondary School\"))) (type fb:education.educational_institution)\nwhat high school did lil wayne graduate from?\tUniversity of Phoenix\t17.309\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston \"University of Houston\") (name fb:m.075_jk3 \"Lafayette Elementary School\") (name fb:en.university_of_phoenix \"University of Phoenix\") (name fb:m.0h2_zh0 \"Eleanor McMain Secondary School\") (name fb:en.mcmain_magnet_secondary_school \"Mcmain Magnet Secondary School\"))) (type fb:education.educational_institution)\nwhat high school did lil wayne graduate from?\tEleanor McMain Secondary School\t17.309\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston \"University of Houston\") (name fb:m.075_jk3 \"Lafayette Elementary School\") (name fb:en.university_of_phoenix \"University of Phoenix\") (name fb:m.0h2_zh0 \"Eleanor McMain Secondary School\") (name fb:en.mcmain_magnet_secondary_school \"Mcmain Magnet Secondary School\"))) (type fb:education.educational_institution)\nwhat high school did lil wayne graduate from?\tMcmain Magnet Secondary School\t17.309\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston \"University of Houston\") (name fb:m.075_jk3 \"Lafayette Elementary School\") (name fb:en.university_of_phoenix \"University of Phoenix\") (name fb:m.0h2_zh0 \"Eleanor McMain Secondary School\") (name fb:en.mcmain_magnet_secondary_school \"Mcmain Magnet Secondary School\"))) (type fb:education.educational_institution)\nwho is washington redskins backup qb?\tEntertainment Weekly annotation index\t3.93\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.washington_redskins)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nwhat language do people speak in the netherlands?\tDutch Language\t17.5\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.netherlands))) (value (list (name fb:en.dutch_language \"Dutch Language\"))) (type (union fb:language.human_language))\nwhat are the major languages spoken in greece?\tGreek Language\t23.472\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.greece))) (value (list (name fb:en.greek_language \"Greek Language\") (name fb:en.albanian_language \"Albanian language\"))) (type fb:language.human_language)\nwhat are the major languages spoken in greece?\tAlbanian language\t23.472\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.greece))) (value (list (name fb:en.greek_language \"Greek Language\") (name fb:en.albanian_language \"Albanian language\"))) (type fb:language.human_language)\nwhat movies has john williams score?\tE.T. The Extra-Terrestrial\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat movies has john williams score?\tStar Wars Episode VI: Return of the Jedi\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat movies has john williams score?\tSaving Private Ryan\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat movies has john williams score?\tOlympic Fanfare and Theme\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat movies has john williams score?\tSchindler's List\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat movies has john williams score?\tRaiders of the Lost Ark\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat movies has john williams score?\tStar Wars Episode IV: A New Hope\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat movies has john williams score?\tBorn on the Fourth of July\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat movies has john williams score?\tSeven Years in Tibet\t11.074\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 \"E.T. The Extra-Terrestrial\") (name fb:en.star_wars_episode_vi_return_of_the_jedi \"Star Wars Episode VI: Return of the Jedi\") (name fb:en.saving_private_ryan \"Saving Private Ryan\") (name fb:m.0j_jdf5 \"Olympic Fanfare and Theme\") (name fb:en.schindlers_list \"Schindler's List\") (name fb:m.01h9j2c \"Raiders of the Lost Ark\") (name fb:en.star_wars_episode_iv_a_new_hope \"Star Wars Episode IV: A New Hope\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:m.02psgy6 \"Seven Years in Tibet\") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work))\nwhat to do in richardson dallas?\tFC Dallas Stadium\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tNasher Sculpture Center\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tKay Bailey Hutchison Convention Center\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tMeadows Museum\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tSixth Floor Museum\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tDallas Museum of Art\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tThe Trammell & Margaret Crow Collection of Asian Art\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tCowboys Stadium\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tDallas Zoo\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat to do in richardson dallas?\tGeorge W. Bush Presidential Center\t3.992\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park \"FC Dallas Stadium\") (name fb:en.nasher_sculpture_center \"Nasher Sculpture Center\") (name fb:en.dallas_convention_center \"Kay Bailey Hutchison Convention Center\") (name fb:en.meadows_museum \"Meadows Museum\") (name fb:en.dealey_plaza_sixth_floor_museum \"Sixth Floor Museum\") (name fb:en.dallas_museum_of_art \"Dallas Museum of Art\") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art \"The Trammell & Margaret Crow Collection of Asian Art\") (name fb:en.new_cowboys_stadium \"Cowboys Stadium\") (name fb:en.dallas_zoo \"Dallas Zoo\") (name fb:en.george_w_bush_presidential_library \"George W. Bush Presidential Center\"))) (type fb:travel.tourist_attraction)\nwhat type of artist is henri matisse?\tBlue Nudes Series\t10.003\tformula (fb:visual_art.art_series.artist fb:en.henri_matisse)) (value (list (name fb:m.0k0xmct \"Blue Nudes Series\") (name fb:m.0gj8w8y \"The Back Series\") (name fb:en.yellow_odalisque \"Yellow Odalisque\"))) (type fb:visual_art.art_series)\nwhat type of artist is henri matisse?\tThe Back Series\t10.003\tformula (fb:visual_art.art_series.artist fb:en.henri_matisse)) (value (list (name fb:m.0k0xmct \"Blue Nudes Series\") (name fb:m.0gj8w8y \"The Back Series\") (name fb:en.yellow_odalisque \"Yellow Odalisque\"))) (type fb:visual_art.art_series)\nwhat type of artist is henri matisse?\tYellow Odalisque\t10.003\tformula (fb:visual_art.art_series.artist fb:en.henri_matisse)) (value (list (name fb:m.0k0xmct \"Blue Nudes Series\") (name fb:m.0gj8w8y \"The Back Series\") (name fb:en.yellow_odalisque \"Yellow Odalisque\"))) (type fb:visual_art.art_series)\nwhat was the first book charles dickens wrote?\tDrood: A Novel\t15.631\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_dickens))) (value (list (name fb:en.drood \"Drood: A Novel\") (name fb:en.coffee_with_dickens \"Coffee with Dickens\"))) (type (union fb:book.book))\nwhat was the first book charles dickens wrote?\tCoffee with Dickens\t15.631\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_dickens))) (value (list (name fb:en.drood \"Drood: A Novel\") (name fb:en.coffee_with_dickens \"Coffee with Dickens\"))) (type (union fb:book.book))\nwhat books did agatha christie wrote?\tThe Complete Christie: An Agatha Christie Encyclopedia\t10.399\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf \"The Complete Christie: An Agatha Christie Encyclopedia\") (name fb:en.the_getaway_guide_to_agatha_christies_england \"The Getaway Guide to Agatha Christie's England\") (name fb:en.agatha_christie_and_the_eleven_missing_days \"Agatha Christie and the Eleven Missing Days\"))) (type (union fb:book.book))\nwhat books did agatha christie wrote?\tThe Getaway Guide to Agatha Christie's England\t10.399\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf \"The Complete Christie: An Agatha Christie Encyclopedia\") (name fb:en.the_getaway_guide_to_agatha_christies_england \"The Getaway Guide to Agatha Christie's England\") (name fb:en.agatha_christie_and_the_eleven_missing_days \"Agatha Christie and the Eleven Missing Days\"))) (type (union fb:book.book))\nwhat books did agatha christie wrote?\tAgatha Christie and the Eleven Missing Days\t10.399\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf \"The Complete Christie: An Agatha Christie Encyclopedia\") (name fb:en.the_getaway_guide_to_agatha_christies_england \"The Getaway Guide to Agatha Christie's England\") (name fb:en.agatha_christie_and_the_eleven_missing_days \"Agatha Christie and the Eleven Missing Days\"))) (type (union fb:book.book))\nwhat school did michael jordan attend?\tUniversity of North Carolina at Chapel Hill\t18.52\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_jordan))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.emsley_a_laney_high_school \"Emsley A. Laney High School\"))) (type fb:education.educational_institution)\nwhat school did michael jordan attend?\tEmsley A. Laney High School\t18.52\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_jordan))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.emsley_a_laney_high_school \"Emsley A. Laney High School\"))) (type fb:education.educational_institution)\nwhere is mount st helens volcano?\tCrater Glacier\t3.539\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.contains fb:en.mount_st_helens))) (value (list (name fb:en.tulutson_glacier \"Crater Glacier\") (name fb:m.032097 \"Spirit Lake\"))) (type fb:location.location)\nwhere is mount st helens volcano?\tSpirit Lake\t3.539\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.contains fb:en.mount_st_helens))) (value (list (name fb:en.tulutson_glacier \"Crater Glacier\") (name fb:m.032097 \"Spirit Lake\"))) (type fb:location.location)\nwhat book did tupac write?\tThe rose that grew from concrete\t10.709\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.tupac_shakur))) (value (list (name fb:m.04w30vn \"The rose that grew from concrete\") (name fb:m.04w30vx Tupac) (name fb:m.0hrcl9y \"The Rose That Grew from Concrete\") (name fb:en.the_tupac_shakur_collection \"The Tupac Shakur Collection\") (name fb:en.ke_onke_ui_rite_ui_esoi_pe_in_changmi \"KÊ»onkÊ»uÌritÊ»uÌ esoÌ pÊ»in changmi =\"))) (type (union fb:book.book))\nwhat book did tupac write?\tThe Rose That Grew from Concrete\t10.709\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.tupac_shakur))) (value (list (name fb:m.04w30vn \"The rose that grew from concrete\") (name fb:m.04w30vx Tupac) (name fb:m.0hrcl9y \"The Rose That Grew from Concrete\") (name fb:en.the_tupac_shakur_collection \"The Tupac Shakur Collection\") (name fb:en.ke_onke_ui_rite_ui_esoi_pe_in_changmi \"KÊ»onkÊ»uÌritÊ»uÌ esoÌ pÊ»in changmi =\"))) (type (union fb:book.book))\nwhat book did tupac write?\tThe Tupac Shakur Collection\t10.709\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.tupac_shakur))) (value (list (name fb:m.04w30vn \"The rose that grew from concrete\") (name fb:m.04w30vx Tupac) (name fb:m.0hrcl9y \"The Rose That Grew from Concrete\") (name fb:en.the_tupac_shakur_collection \"The Tupac Shakur Collection\") (name fb:en.ke_onke_ui_rite_ui_esoi_pe_in_changmi \"KÊ»onkÊ»uÌritÊ»uÌ esoÌ pÊ»in changmi =\"))) (type (union fb:book.book))\nwhat book did tupac write?\tKÊ»onkÊ»uÌritÊ»uÌ esoÌ pÊ»in changmi =\t10.709\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.tupac_shakur))) (value (list (name fb:m.04w30vn \"The rose that grew from concrete\") (name fb:m.04w30vx Tupac) (name fb:m.0hrcl9y \"The Rose That Grew from Concrete\") (name fb:en.the_tupac_shakur_collection \"The Tupac Shakur Collection\") (name fb:en.ke_onke_ui_rite_ui_esoi_pe_in_changmi \"KÊ»onkÊ»uÌritÊ»uÌ esoÌ pÊ»in changmi =\"))) (type (union fb:book.book))\nwhat language do chinese people write in?\tYue Chinese\t8.562\tformula (!fb:people.ethnicity.languages_spoken fb:m.02p1pl6)) (value (list (name fb:en.chinese_yue \"Yue Chinese\") (name fb:en.standard_mandarin \"Standard Mandarin\"))) (type fb:language.human_language)\nwhat language do chinese people write in?\tStandard Mandarin\t8.562\tformula (!fb:people.ethnicity.languages_spoken fb:m.02p1pl6)) (value (list (name fb:en.chinese_yue \"Yue Chinese\") (name fb:en.standard_mandarin \"Standard Mandarin\"))) (type fb:language.human_language)\nwho is the next governor of indiana?\tIsaac P. Gray\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tNoah Noble\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tSue Ellspermann\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tConrad Baker\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tGreg Zoeller\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tJoseph A. Wright\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tHenry F. Schricker\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tWinfield T. Durbin\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tMike Pence\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwho is the next governor of indiana?\tHarry G. Leslie\t17.436\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray \"Isaac P. Gray\") (name fb:en.noah_noble \"Noah Noble\") (name fb:m.0jwrdvc \"Sue Ellspermann\") (name fb:en.conrad_baker \"Conrad Baker\") (name fb:en.greg_zoeller \"Greg Zoeller\") (name fb:en.joseph_a_wright \"Joseph A. Wright\") (name fb:en.henry_f_schricker \"Henry F. Schricker\") (name fb:en.winfield_t_durbin \"Winfield T. Durbin\") (name fb:en.mike_pence \"Mike Pence\") (name fb:en.harry_g_leslie \"Harry G. Leslie\"))) (type fb:government.politician)\nwhat are the important holidays of islam?\tEid al-Adha\t19.653\tformula (and (fb:type.object.type fb:time.holiday) (!fb:religion.religion.holidays fb:en.islam))) (value (list (name fb:en.eid_ul-adha \"Eid al-Adha\") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj \"Isra and Mi'raj\") (name fb:en.eid_ul-fitr \"Eid al-Fitr\"))) (type (union fb:time.holiday))\nwhat are the important holidays of islam?\tIsra and Mi'raj\t19.653\tformula (and (fb:type.object.type fb:time.holiday) (!fb:religion.religion.holidays fb:en.islam))) (value (list (name fb:en.eid_ul-adha \"Eid al-Adha\") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj \"Isra and Mi'raj\") (name fb:en.eid_ul-fitr \"Eid al-Fitr\"))) (type (union fb:time.holiday))\nwhat are the important holidays of islam?\tEid al-Fitr\t19.653\tformula (and (fb:type.object.type fb:time.holiday) (!fb:religion.religion.holidays fb:en.islam))) (value (list (name fb:en.eid_ul-adha \"Eid al-Adha\") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj \"Isra and Mi'raj\") (name fb:en.eid_ul-fitr \"Eid al-Fitr\"))) (type (union fb:time.holiday))\nwhat type of music did claude debussy play?\tClassical music\t13.094\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat type of music did claude debussy play?\tArt song\t13.094\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat type of music did claude debussy play?\t20th-century classical music\t13.094\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat type of music did claude debussy play?\tIncidental music\t13.094\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat type of music did claude debussy play?\tFrench opera\t13.094\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat currency does russia use 2012?\tRussian ruble\t20.735\tformula (!fb:location.country.currency_used fb:en.russia)) (value (list (name fb:en.russian_ruble \"Russian ruble\"))) (type fb:finance.currency)\nwhat team is hank baskett on 2010?\tPhiladelphia Eagles\t18.055\tformula (!fb:american_football.football_historical_roster_position.team (and (!fb:american_football.football_player.former_teams fb:en.hank_baskett) (fb:american_football.football_historical_roster_position.from (date 2010 -1 -1))))) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\"))) (type fb:american_football.football_team)\nwhat are the two official languages of paraguay?\tSpanish Language\t18.768\tformula (!fb:location.country.official_language fb:en.paraguay)) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.guarani_language \"Paraguayan Guaraní\"))) (type fb:language.human_language)\nwhat are the two official languages of paraguay?\tParaguayan Guaraní\t18.768\tformula (!fb:location.country.official_language fb:en.paraguay)) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.guarani_language \"Paraguayan Guaraní\"))) (type fb:language.human_language)\nwho is hammurabi and what did he do?\tMilkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2\t16.024\tformula (!fb:common.topic.image fb:en.hammurabi)) (value (list (name fb:m.03rvr8q \"Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2\") (name fb:m.0bn4fmx \"Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2\"))) (type fb:common.image)\nwho is hammurabi and what did he do?\tMilkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2\t16.024\tformula (!fb:common.topic.image fb:en.hammurabi)) (value (list (name fb:m.03rvr8q \"Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2\") (name fb:m.0bn4fmx \"Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2\"))) (type fb:common.image)\nwhat state is the steelers from?\tEntertainment Weekly annotation index\t9.581\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat state is the steelers from?\tWSJ Speakeasy Index\t9.581\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat state is the steelers from?\tBlissful Master Index\t9.581\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat state is the steelers from?\tBlissful Celebrities\t9.581\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat college did sir isaac newton go to?\tTrinity College, Cambridge\t18.813\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.sir_newton_isaac))) (value (list (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\"))) (type fb:education.university)\nwhere is the university of the rockies located?\tGallatin County\t10.023\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.museum_of_the_rockies))) (value (list (name fb:en.gallatin_county \"Gallatin County\") (name fb:en.59715 59715))) (type fb:location.location)\nwhat disease does robin roberts have?\tBreast cancer\t18.021\tformula (and (fb:type.object.type fb:medicine.disease) (fb:medicine.disease.notable_people_with_this_condition fb:en.robin_roberts))) (value (list (name fb:en.breast_cancer \"Breast cancer\") (name fb:en.myelodysplastic_syndrome \"Myelodysplastic syndrome\"))) (type (union fb:medicine.disease))\nwhat disease does robin roberts have?\tMyelodysplastic syndrome\t18.021\tformula (and (fb:type.object.type fb:medicine.disease) (fb:medicine.disease.notable_people_with_this_condition fb:en.robin_roberts))) (value (list (name fb:en.breast_cancer \"Breast cancer\") (name fb:en.myelodysplastic_syndrome \"Myelodysplastic syndrome\"))) (type (union fb:medicine.disease))\nwho plays edward scissorhands?\tJohnny Depp\t5.398\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0gmm518)) (value (list (name fb:en.johnny_depp \"Johnny Depp\"))) (type fb:film.actor)\nwhat kind of language does turkey speak?\tTurkish Language\t13.29\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.turkey))) (value (list (name fb:en.turkish_language \"Turkish Language\"))) (type (union fb:language.human_language))\nwhat was lebron james first team?\tMiami Heat\t14.184\tformula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.lebron_james)) (value (list (name fb:en.miami_heat \"Miami Heat\"))) (type fb:basketball.basketball_team)\nwho fought the battle of gettysburg?\tAmerican Civil War\t8.507\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.includes_event fb:en.battle_of_gettysburg))) (value (list (name fb:en.american_civil_war \"American Civil War\") (name fb:en.gettysburg_campaign \"Gettysburg Campaign\"))) (type (union fb:military.military_conflict))\nwho fought the battle of gettysburg?\tGettysburg Campaign\t8.507\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.includes_event fb:en.battle_of_gettysburg))) (value (list (name fb:en.american_civil_war \"American Civil War\") (name fb:en.gettysburg_campaign \"Gettysburg Campaign\"))) (type (union fb:military.military_conflict))\nwho is the coach of the sf giants?\tTom Coughlin\t9.005\tformula (and (fb:people.person.profession fb:en.coach) (!fb:american_football.football_team.current_head_coach fb:en.new_york_giants))) (value (list (name fb:en.tom_coughlin \"Tom Coughlin\"))) (type fb:american_football.football_coach)\nwhich university did michael bay graduated from?\tArt Center College of Design\t11.321\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_bay))) (value (list (name fb:en.art_center_college_of_design \"Art Center College of Design\") (name fb:en.wesleyan_university \"Wesleyan University\"))) (type fb:education.university)\nwhich university did michael bay graduated from?\tWesleyan University\t11.321\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_bay))) (value (list (name fb:en.art_center_college_of_design \"Art Center College of Design\") (name fb:en.wesleyan_university \"Wesleyan University\"))) (type fb:education.university)\nwhat did queen victoria say about the suffragettes?\tStatue of Queen Victoria\t10.74\tformula (fb:visual_art.artwork.art_subject fb:en.victoria_of_the_united_kingdom)) (value (list (name fb:en.statue_of_queen_victoria \"Statue of Queen Victoria\"))) (type fb:visual_art.artwork)\nwhat is st anthony patron saint of?\tPatron of Prisoners.jpg\t7.412\tformula (fb:common.image.image_tags fb:en.patron_saint)) (value (list (name fb:m.0cjc_cz PatronSaint.jpg) (name fb:m.0cj3yn0 \"Patron of Prisoners.jpg\") (name fb:m.0cj0tnt \"Patron of Prisoners.jpg\") (name fb:m.0cj0qny \"Patron of Prisoners.jpg\") (name fb:m.0cj7kts PatronSaint.jpg))) (type fb:common.image)\nwhat is st anthony patron saint of?\tPatron of Prisoners.jpg\t7.412\tformula (fb:common.image.image_tags fb:en.patron_saint)) (value (list (name fb:m.0cjc_cz PatronSaint.jpg) (name fb:m.0cj3yn0 \"Patron of Prisoners.jpg\") (name fb:m.0cj0tnt \"Patron of Prisoners.jpg\") (name fb:m.0cj0qny \"Patron of Prisoners.jpg\") (name fb:m.0cj7kts PatronSaint.jpg))) (type fb:common.image)\nwhat is st anthony patron saint of?\tPatron of Prisoners.jpg\t7.412\tformula (fb:common.image.image_tags fb:en.patron_saint)) (value (list (name fb:m.0cjc_cz PatronSaint.jpg) (name fb:m.0cj3yn0 \"Patron of Prisoners.jpg\") (name fb:m.0cj0tnt \"Patron of Prisoners.jpg\") (name fb:m.0cj0qny \"Patron of Prisoners.jpg\") (name fb:m.0cj7kts PatronSaint.jpg))) (type fb:common.image)\nwho does brian dawkins play for 2011?\tPhiladelphia Eagles\t13.298\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.brian_dawkins)) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.denver_broncos \"Denver Broncos\") (name fb:en.clemson_tigers_football \"Clemson Tigers football\"))) (type fb:sports.sports_team)\nwho does brian dawkins play for 2011?\tDenver Broncos\t13.298\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.brian_dawkins)) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.denver_broncos \"Denver Broncos\") (name fb:en.clemson_tigers_football \"Clemson Tigers football\"))) (type fb:sports.sports_team)\nwho does brian dawkins play for 2011?\tClemson Tigers football\t13.298\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.brian_dawkins)) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.denver_broncos \"Denver Broncos\") (name fb:en.clemson_tigers_football \"Clemson Tigers football\"))) (type fb:sports.sports_team)\nwhat movies did tupac star in?\tCalifornia Love (album version)\t8.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ \"California Love (album version)\") (name fb:m.0mv8gvb \"California Love\") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 \"All Eyez on Me\") (name fb:en.me_against_the_world \"Me Against the World\") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 \"How Do U Want It\") (name fb:m.0zhg5s \"Dear Mama\") (name fb:m.0mw77b3 \"Thugz Mansion\"))) (type fb:award.award_nominated_work)\nwhat movies did tupac star in?\tCalifornia Love\t8.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ \"California Love (album version)\") (name fb:m.0mv8gvb \"California Love\") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 \"All Eyez on Me\") (name fb:en.me_against_the_world \"Me Against the World\") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 \"How Do U Want It\") (name fb:m.0zhg5s \"Dear Mama\") (name fb:m.0mw77b3 \"Thugz Mansion\"))) (type fb:award.award_nominated_work)\nwhat movies did tupac star in?\tAll Eyez on Me\t8.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ \"California Love (album version)\") (name fb:m.0mv8gvb \"California Love\") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 \"All Eyez on Me\") (name fb:en.me_against_the_world \"Me Against the World\") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 \"How Do U Want It\") (name fb:m.0zhg5s \"Dear Mama\") (name fb:m.0mw77b3 \"Thugz Mansion\"))) (type fb:award.award_nominated_work)\nwhat movies did tupac star in?\tMe Against the World\t8.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ \"California Love (album version)\") (name fb:m.0mv8gvb \"California Love\") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 \"All Eyez on Me\") (name fb:en.me_against_the_world \"Me Against the World\") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 \"How Do U Want It\") (name fb:m.0zhg5s \"Dear Mama\") (name fb:m.0mw77b3 \"Thugz Mansion\"))) (type fb:award.award_nominated_work)\nwhat movies did tupac star in?\tHow Do U Want It\t8.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ \"California Love (album version)\") (name fb:m.0mv8gvb \"California Love\") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 \"All Eyez on Me\") (name fb:en.me_against_the_world \"Me Against the World\") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 \"How Do U Want It\") (name fb:m.0zhg5s \"Dear Mama\") (name fb:m.0mw77b3 \"Thugz Mansion\"))) (type fb:award.award_nominated_work)\nwhat movies did tupac star in?\tDear Mama\t8.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ \"California Love (album version)\") (name fb:m.0mv8gvb \"California Love\") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 \"All Eyez on Me\") (name fb:en.me_against_the_world \"Me Against the World\") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 \"How Do U Want It\") (name fb:m.0zhg5s \"Dear Mama\") (name fb:m.0mw77b3 \"Thugz Mansion\"))) (type fb:award.award_nominated_work)\nwhat movies did tupac star in?\tThugz Mansion\t8.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ \"California Love (album version)\") (name fb:m.0mv8gvb \"California Love\") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 \"All Eyez on Me\") (name fb:en.me_against_the_world \"Me Against the World\") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 \"How Do U Want It\") (name fb:m.0zhg5s \"Dear Mama\") (name fb:m.0mw77b3 \"Thugz Mansion\"))) (type fb:award.award_nominated_work)\nwho plays kenneth?\tMalcolm Barrett\t5.398\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.09_w7pn)) (value (list (name fb:en.malcolm_barrett \"Malcolm Barrett\"))) (type fb:film.actor)\nwhat league are the indianapolis colts in?\tAFC South\t14.454\tformula (and (fb:type.object.type fb:sports.sports_league) ((lambda x (!fb:sports.sports_league_participation.league (!fb:sports.sports_team.league (var x)))) fb:en.indianapolis_colts))) (value (list (name fb:en.afc_south \"AFC South\") (name fb:en.american_football_conference \"American Football Conference\") (name fb:en.national_football_league \"National Football League\"))) (type (union fb:sports.sports_league))\nwhat league are the indianapolis colts in?\tAmerican Football Conference\t14.454\tformula (and (fb:type.object.type fb:sports.sports_league) ((lambda x (!fb:sports.sports_league_participation.league (!fb:sports.sports_team.league (var x)))) fb:en.indianapolis_colts))) (value (list (name fb:en.afc_south \"AFC South\") (name fb:en.american_football_conference \"American Football Conference\") (name fb:en.national_football_league \"National Football League\"))) (type (union fb:sports.sports_league))\nwhat league are the indianapolis colts in?\tNational Football League\t14.454\tformula (and (fb:type.object.type fb:sports.sports_league) ((lambda x (!fb:sports.sports_league_participation.league (!fb:sports.sports_team.league (var x)))) fb:en.indianapolis_colts))) (value (list (name fb:en.afc_south \"AFC South\") (name fb:en.american_football_conference \"American Football Conference\") (name fb:en.national_football_league \"National Football League\"))) (type (union fb:sports.sports_league))\nwhat country did magellan represent?\tKingdom of Portugal\t15.173\tformula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.ferdinand_magellan))) (value (list (name fb:en.portugal Portugal) (name fb:en.kingdom_of_portugal \"Kingdom of Portugal\"))) (type (union fb:location.country))\nwho did kim richards marry?\tJohn Jackson\t11.392\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.kim_richards)) (value (list (name fb:m.0kv3rtr \"John Jackson\") (name fb:m.0mtnbfr \"Gregg Davis\") (name fb:en.g_monty_brinson \"G. Monty Brinson\"))) (type fb:people.person)\nwho did kim richards marry?\tGregg Davis\t11.392\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.kim_richards)) (value (list (name fb:m.0kv3rtr \"John Jackson\") (name fb:m.0mtnbfr \"Gregg Davis\") (name fb:en.g_monty_brinson \"G. Monty Brinson\"))) (type fb:people.person)\nwho did kim richards marry?\tG. Monty Brinson\t11.392\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.kim_richards)) (value (list (name fb:m.0kv3rtr \"John Jackson\") (name fb:m.0mtnbfr \"Gregg Davis\") (name fb:en.g_monty_brinson \"G. Monty Brinson\"))) (type fb:people.person)\nwhen's the last time the steelers won the superbowl?\tSuper Bowl XIII\t16.629\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xl \"Super Bowl XL\") (name fb:en.super_bowl_xliii \"Super Bowl XLIII\") (name fb:en.super_bowl_x \"Super Bowl X\") (name fb:en.super_bowl_xiv \"Super Bowl XIV\") (name fb:en.super_bowl_ix \"Super Bowl IX\"))) (type fb:sports.sports_championship_event)\nwhen's the last time the steelers won the superbowl?\tSuper Bowl XL\t16.629\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xl \"Super Bowl XL\") (name fb:en.super_bowl_xliii \"Super Bowl XLIII\") (name fb:en.super_bowl_x \"Super Bowl X\") (name fb:en.super_bowl_xiv \"Super Bowl XIV\") (name fb:en.super_bowl_ix \"Super Bowl IX\"))) (type fb:sports.sports_championship_event)\nwhen's the last time the steelers won the superbowl?\tSuper Bowl XLIII\t16.629\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xl \"Super Bowl XL\") (name fb:en.super_bowl_xliii \"Super Bowl XLIII\") (name fb:en.super_bowl_x \"Super Bowl X\") (name fb:en.super_bowl_xiv \"Super Bowl XIV\") (name fb:en.super_bowl_ix \"Super Bowl IX\"))) (type fb:sports.sports_championship_event)\nwhen's the last time the steelers won the superbowl?\tSuper Bowl X\t16.629\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xl \"Super Bowl XL\") (name fb:en.super_bowl_xliii \"Super Bowl XLIII\") (name fb:en.super_bowl_x \"Super Bowl X\") (name fb:en.super_bowl_xiv \"Super Bowl XIV\") (name fb:en.super_bowl_ix \"Super Bowl IX\"))) (type fb:sports.sports_championship_event)\nwhen's the last time the steelers won the superbowl?\tSuper Bowl XIV\t16.629\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xl \"Super Bowl XL\") (name fb:en.super_bowl_xliii \"Super Bowl XLIII\") (name fb:en.super_bowl_x \"Super Bowl X\") (name fb:en.super_bowl_xiv \"Super Bowl XIV\") (name fb:en.super_bowl_ix \"Super Bowl IX\"))) (type fb:sports.sports_championship_event)\nwhen's the last time the steelers won the superbowl?\tSuper Bowl IX\t16.629\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xl \"Super Bowl XL\") (name fb:en.super_bowl_xliii \"Super Bowl XLIII\") (name fb:en.super_bowl_x \"Super Bowl X\") (name fb:en.super_bowl_xiv \"Super Bowl XIV\") (name fb:en.super_bowl_ix \"Super Bowl IX\"))) (type fb:sports.sports_championship_event)\nwhere english is spoken?\tUnited Kingdom\t17.022\tformula (and (fb:type.object.type fb:location.location) (!fb:language.human_language.countries_spoken_in fb:en.english))) (value (list (name fb:en.india India) (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.japan Japan) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.scotland Scotland) (name fb:en.philippines Philippines) (name fb:en.australia Australia))) (type fb:location.country)\nwhere english is spoken?\tSouth Africa\t17.022\tformula (and (fb:type.object.type fb:location.location) (!fb:language.human_language.countries_spoken_in fb:en.english))) (value (list (name fb:en.india India) (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.japan Japan) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.scotland Scotland) (name fb:en.philippines Philippines) (name fb:en.australia Australia))) (type fb:location.country)\nwhere is giza pyramids located?\tDanny Hillis on top of the Great Pyramid\t4.01\tformula (fb:common.image.image_tags fb:en.great_pyramid_of_giza)) (value (list (name fb:m.02xlrth \"Danny Hillis on top of the Great Pyramid\"))) (type fb:common.image)\nwhat language does australians speak?\tEnglish Language\t12.676\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.australian_people))) (value (list (name fb:en.english \"English Language\") (name fb:en.italian \"Italian Language\") (name fb:en.chinese_language \"Chinese language\") (name fb:en.greek_language \"Greek Language\"))) (type fb:language.human_language)\nwhat language does australians speak?\tItalian Language\t12.676\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.australian_people))) (value (list (name fb:en.english \"English Language\") (name fb:en.italian \"Italian Language\") (name fb:en.chinese_language \"Chinese language\") (name fb:en.greek_language \"Greek Language\"))) (type fb:language.human_language)\nwhat language does australians speak?\tChinese language\t12.676\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.australian_people))) (value (list (name fb:en.english \"English Language\") (name fb:en.italian \"Italian Language\") (name fb:en.chinese_language \"Chinese language\") (name fb:en.greek_language \"Greek Language\"))) (type fb:language.human_language)\nwhat language does australians speak?\tGreek Language\t12.676\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.australian_people))) (value (list (name fb:en.english \"English Language\") (name fb:en.italian \"Italian Language\") (name fb:en.chinese_language \"Chinese language\") (name fb:en.greek_language \"Greek Language\"))) (type fb:language.human_language)\nwho did annie oakley married?\tFrank E. Butler\t9.295\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.annie_oakley)) (value (list (name fb:en.frank_e_butler \"Frank E. Butler\"))) (type fb:people.person)\nwho has played lex luthor?\tClancy Brown\t13.201\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown \"Clancy Brown\") (name fb:en.gene_hackman \"Gene Hackman\") (name fb:en.powers_boothe \"Powers Boothe\") (name fb:en.anthony_lapaglia \"Anthony LaPaglia\") (name fb:en.kevin_spacey \"Kevin Spacey\") (name fb:en.james_marsters \"James Marsters\") (name fb:en.chris_noth \"Chris Noth\"))) (type fb:film.actor)\nwho has played lex luthor?\tGene Hackman\t13.201\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown \"Clancy Brown\") (name fb:en.gene_hackman \"Gene Hackman\") (name fb:en.powers_boothe \"Powers Boothe\") (name fb:en.anthony_lapaglia \"Anthony LaPaglia\") (name fb:en.kevin_spacey \"Kevin Spacey\") (name fb:en.james_marsters \"James Marsters\") (name fb:en.chris_noth \"Chris Noth\"))) (type fb:film.actor)\nwho has played lex luthor?\tPowers Boothe\t13.201\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown \"Clancy Brown\") (name fb:en.gene_hackman \"Gene Hackman\") (name fb:en.powers_boothe \"Powers Boothe\") (name fb:en.anthony_lapaglia \"Anthony LaPaglia\") (name fb:en.kevin_spacey \"Kevin Spacey\") (name fb:en.james_marsters \"James Marsters\") (name fb:en.chris_noth \"Chris Noth\"))) (type fb:film.actor)\nwho has played lex luthor?\tAnthony LaPaglia\t13.201\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown \"Clancy Brown\") (name fb:en.gene_hackman \"Gene Hackman\") (name fb:en.powers_boothe \"Powers Boothe\") (name fb:en.anthony_lapaglia \"Anthony LaPaglia\") (name fb:en.kevin_spacey \"Kevin Spacey\") (name fb:en.james_marsters \"James Marsters\") (name fb:en.chris_noth \"Chris Noth\"))) (type fb:film.actor)\nwho has played lex luthor?\tKevin Spacey\t13.201\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown \"Clancy Brown\") (name fb:en.gene_hackman \"Gene Hackman\") (name fb:en.powers_boothe \"Powers Boothe\") (name fb:en.anthony_lapaglia \"Anthony LaPaglia\") (name fb:en.kevin_spacey \"Kevin Spacey\") (name fb:en.james_marsters \"James Marsters\") (name fb:en.chris_noth \"Chris Noth\"))) (type fb:film.actor)\nwho has played lex luthor?\tJames Marsters\t13.201\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown \"Clancy Brown\") (name fb:en.gene_hackman \"Gene Hackman\") (name fb:en.powers_boothe \"Powers Boothe\") (name fb:en.anthony_lapaglia \"Anthony LaPaglia\") (name fb:en.kevin_spacey \"Kevin Spacey\") (name fb:en.james_marsters \"James Marsters\") (name fb:en.chris_noth \"Chris Noth\"))) (type fb:film.actor)\nwho has played lex luthor?\tChris Noth\t13.201\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown \"Clancy Brown\") (name fb:en.gene_hackman \"Gene Hackman\") (name fb:en.powers_boothe \"Powers Boothe\") (name fb:en.anthony_lapaglia \"Anthony LaPaglia\") (name fb:en.kevin_spacey \"Kevin Spacey\") (name fb:en.james_marsters \"James Marsters\") (name fb:en.chris_noth \"Chris Noth\"))) (type fb:film.actor)\nwhere does the zambezi river start?\tIndian Ocean\t2.73\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.river.mouth fb:en.zambezi))) (value (list (name fb:en.indian_ocean \"Indian Ocean\"))) (type fb:location.location)\nwhere will tebow go in 2013?\tPuerto Rico\t7.197\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico \"Puerto Rico\") (name fb:en.american_samoa \"American Samoa\") (name fb:en.ningxia Ningxia) (name fb:en.south_korea \"South Korea\") (name fb:en.central_african_republic \"Central African Republic\") (name fb:en.sao_paulo \"São Paulo\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction)\nwhere will tebow go in 2013?\tAmerican Samoa\t7.197\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico \"Puerto Rico\") (name fb:en.american_samoa \"American Samoa\") (name fb:en.ningxia Ningxia) (name fb:en.south_korea \"South Korea\") (name fb:en.central_african_republic \"Central African Republic\") (name fb:en.sao_paulo \"São Paulo\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction)\nwhere will tebow go in 2013?\tSouth Korea\t7.197\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico \"Puerto Rico\") (name fb:en.american_samoa \"American Samoa\") (name fb:en.ningxia Ningxia) (name fb:en.south_korea \"South Korea\") (name fb:en.central_african_republic \"Central African Republic\") (name fb:en.sao_paulo \"São Paulo\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction)\nwhere will tebow go in 2013?\tCentral African Republic\t7.197\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico \"Puerto Rico\") (name fb:en.american_samoa \"American Samoa\") (name fb:en.ningxia Ningxia) (name fb:en.south_korea \"South Korea\") (name fb:en.central_african_republic \"Central African Republic\") (name fb:en.sao_paulo \"São Paulo\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction)\nwhere will tebow go in 2013?\tSão Paulo\t7.197\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico \"Puerto Rico\") (name fb:en.american_samoa \"American Samoa\") (name fb:en.ningxia Ningxia) (name fb:en.south_korea \"South Korea\") (name fb:en.central_african_republic \"Central African Republic\") (name fb:en.sao_paulo \"São Paulo\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction)\nwhere will tebow go in 2013?\tWest Virginia\t7.197\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico \"Puerto Rico\") (name fb:en.american_samoa \"American Samoa\") (name fb:en.ningxia Ningxia) (name fb:en.south_korea \"South Korea\") (name fb:en.central_african_republic \"Central African Republic\") (name fb:en.sao_paulo \"São Paulo\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction)\nwhat is the nigeria time?\tWest Africa Time\t10.269\tformula (!fb:location.location.time_zones fb:en.nigeria)) (value (list (name fb:en.utcplus1 UTC+01:00) (name fb:en.west_africa_time \"West Africa Time\"))) (type fb:time.time_zone)\nwhere did they find jenni rivera's body?\tUnited States of America\t5.268\tformula (and (fb:type.object.type fb:location.location) (!fb:people.person.nationality fb:en.jenny_rivera))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.country)\nwhat university did romney graduated from?\tBrigham Young University\t13.976\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ann_romney_1949))) (value (list (name fb:en.brigham_young_university \"Brigham Young University\") (name fb:en.harvard_extension_school \"Harvard Extension School\"))) (type fb:education.university)\nwhat university did romney graduated from?\tHarvard Extension School\t13.976\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ann_romney_1949))) (value (list (name fb:en.brigham_young_university \"Brigham Young University\") (name fb:en.harvard_extension_school \"Harvard Extension School\"))) (type fb:education.university)\nwhere is the time zone line in south dakota?\tCentral Time Zone\t14.752\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.south_dakota))) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.mountain_time_zone \"Mountain Time Zone\") (name fb:en.utc-7 UTC−07:00) (name fb:en.utc-6 UTC−06:00))) (type (union fb:time.time_zone))\nwhere is the time zone line in south dakota?\tMountain Time Zone\t14.752\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.south_dakota))) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.mountain_time_zone \"Mountain Time Zone\") (name fb:en.utc-7 UTC−07:00) (name fb:en.utc-6 UTC−06:00))) (type (union fb:time.time_zone))\nwhat killed john bonham?\tInhalation of vomit\t6.852\tformula (!fb:people.deceased_person.cause_of_death fb:en.john_bonham)) (value (list (name fb:en.inhalation_of_vomit \"Inhalation of vomit\"))) (type fb:people.cause_of_death)\nwhat industry does walmart operate in?\tDepartment Stores\t15.174\tformula (and (fb:type.object.type fb:business.industry) (fb:business.industry.companies fb:en.wal-mart))) (value (list (name fb:en.retailing Retail) (name fb:en.department_stores \"Department Stores\") (name fb:en.variety_stores \"Variety Stores\"))) (type (union fb:business.industry))\nwhat industry does walmart operate in?\tVariety Stores\t15.174\tformula (and (fb:type.object.type fb:business.industry) (fb:business.industry.companies fb:en.wal-mart))) (value (list (name fb:en.retailing Retail) (name fb:en.department_stores \"Department Stores\") (name fb:en.variety_stores \"Variety Stores\"))) (type (union fb:business.industry))\nwhat county is texarkana arkansas in?\tUnited States of America\t8.234\tformula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.arkansas))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\"))) (type (union fb:location.administrative_division))\nwhat county is texarkana arkansas in?\tUnited States, with Territories\t8.234\tformula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.arkansas))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\"))) (type (union fb:location.administrative_division))\nwhat team was chris paul on?\tLos Angeles Clippers\t15.551\tformula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.chris_paul)) (value (list (name fb:en.los_angeles_clippers \"Los Angeles Clippers\"))) (type fb:basketball.basketball_team)\nwhat music period did beethoven live in?\tClassical music\t13.682\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.ludwig_van_beethoven))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:m.05lls Opera))) (type (union fb:music.genre))\nwhat did laura ingalls wilder wrote?\tLittle Town on the Prairie\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tOn the Way Home\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tLittle House on the Prairie\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tLittle House in the Big Woods\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tA Little House Traveler\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tThese Happy Golden Years\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tWest from Home\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tFarmer Boy\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tOn the Banks of Plum Creek\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat did laura ingalls wilder wrote?\tThe First Four Years\t8.816\tformula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie \"Little Town on the Prairie\") (name fb:en.on_the_way_home \"On the Way Home\") (name fb:m.0j3zd0c \"Little House on the Prairie\") (name fb:en.little_house_in_the_big_woods \"Little House in the Big Woods\") (name fb:m.06_tw6s \"A Little House Traveler\") (name fb:en.these_happy_golden_years \"These Happy Golden Years\") (name fb:en.west_from_home \"West from Home\") (name fb:en.farmer_boy \"Farmer Boy\") (name fb:en.on_the_banks_of_plum_creek \"On the Banks of Plum Creek\") (name fb:m.02q8085 \"The First Four Years\"))) (type fb:book.written_work)\nwhat type of government system does italy have?\tParliamentary republic\t9.143\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhat type of government system does italy have?\tConstitutional republic\t9.143\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhat type of government system does italy have?\tUnitary republic\t9.143\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhat did john irving wrote?\tSimon Birch\t7.766\tformula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch \"Simon Birch\") (name fb:en.the_cider_house_rules_1999 \"The Cider House Rules\") (name fb:m.0d9jjx \"The Hotel New Hampshire\") (name fb:en.the_door_in_the_floor \"The Door in the Floor\") (name fb:m.026w0m_ \"The World According to Garp\"))) (type fb:film.film)\nwhat did john irving wrote?\tThe Cider House Rules\t7.766\tformula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch \"Simon Birch\") (name fb:en.the_cider_house_rules_1999 \"The Cider House Rules\") (name fb:m.0d9jjx \"The Hotel New Hampshire\") (name fb:en.the_door_in_the_floor \"The Door in the Floor\") (name fb:m.026w0m_ \"The World According to Garp\"))) (type fb:film.film)\nwhat did john irving wrote?\tThe Hotel New Hampshire\t7.766\tformula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch \"Simon Birch\") (name fb:en.the_cider_house_rules_1999 \"The Cider House Rules\") (name fb:m.0d9jjx \"The Hotel New Hampshire\") (name fb:en.the_door_in_the_floor \"The Door in the Floor\") (name fb:m.026w0m_ \"The World According to Garp\"))) (type fb:film.film)\nwhat did john irving wrote?\tThe Door in the Floor\t7.766\tformula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch \"Simon Birch\") (name fb:en.the_cider_house_rules_1999 \"The Cider House Rules\") (name fb:m.0d9jjx \"The Hotel New Hampshire\") (name fb:en.the_door_in_the_floor \"The Door in the Floor\") (name fb:m.026w0m_ \"The World According to Garp\"))) (type fb:film.film)\nwhat did john irving wrote?\tThe World According to Garp\t7.766\tformula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch \"Simon Birch\") (name fb:en.the_cider_house_rules_1999 \"The Cider House Rules\") (name fb:m.0d9jjx \"The Hotel New Hampshire\") (name fb:en.the_door_in_the_floor \"The Door in the Floor\") (name fb:m.026w0m_ \"The World According to Garp\"))) (type fb:film.film)\nwhat is the national flower of hawaii?\tReef triggerfish\t19.148\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.hawaii)) (value (list (name fb:en.reef_triggerfish \"Reef triggerfish\") (name fb:en.hawaiian_goose Nene) (name fb:en.ua_mau_ke_ea_o_ka_aina_i_ka_pono \"Ua Mau ke Ea o ka Aina i ka Pono\") (name fb:en.hawaiian_hibiscus \"Hawaiian hibiscus\") (name fb:en.candlenut Candlenut) (name fb:en.gold_dust_day_gecko \"Gold dust day gecko\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the national flower of hawaii?\tUa Mau ke Ea o ka Aina i ka Pono\t19.148\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.hawaii)) (value (list (name fb:en.reef_triggerfish \"Reef triggerfish\") (name fb:en.hawaiian_goose Nene) (name fb:en.ua_mau_ke_ea_o_ka_aina_i_ka_pono \"Ua Mau ke Ea o ka Aina i ka Pono\") (name fb:en.hawaiian_hibiscus \"Hawaiian hibiscus\") (name fb:en.candlenut Candlenut) (name fb:en.gold_dust_day_gecko \"Gold dust day gecko\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the national flower of hawaii?\tHawaiian hibiscus\t19.148\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.hawaii)) (value (list (name fb:en.reef_triggerfish \"Reef triggerfish\") (name fb:en.hawaiian_goose Nene) (name fb:en.ua_mau_ke_ea_o_ka_aina_i_ka_pono \"Ua Mau ke Ea o ka Aina i ka Pono\") (name fb:en.hawaiian_hibiscus \"Hawaiian hibiscus\") (name fb:en.candlenut Candlenut) (name fb:en.gold_dust_day_gecko \"Gold dust day gecko\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the national flower of hawaii?\tGold dust day gecko\t19.148\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.hawaii)) (value (list (name fb:en.reef_triggerfish \"Reef triggerfish\") (name fb:en.hawaiian_goose Nene) (name fb:en.ua_mau_ke_ea_o_ka_aina_i_ka_pono \"Ua Mau ke Ea o ka Aina i ka Pono\") (name fb:en.hawaiian_hibiscus \"Hawaiian hibiscus\") (name fb:en.candlenut Candlenut) (name fb:en.gold_dust_day_gecko \"Gold dust day gecko\"))) (type fb:location.symbol_of_administrative_division)\nwhat did alice paul accomplish?\tIron Jawed Angels\t-0.559\tformula ((lambda x (fb:film.film.starring (fb:film.performance.character (var x)))) fb:m.0gyd6jg)) (value (list (name fb:en.iron_jawed_angels \"Iron Jawed Angels\"))) (type fb:film.film)\nwhat languages do they speak in costa rica?\tSpanish Language\t18.896\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.costa_rica))) (value (list (name fb:en.spanish \"Spanish Language\"))) (type (union fb:language.human_language))\nwhen did chipper jones get drafted?\t1990 Major League Baseball Draft\t17.237\tformula ((lambda x (!fb:sports.sports_league_draft_pick.draft (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.chipper_jones)) (value (list (name fb:en.1990_major_league_baseball_draft \"1990 Major League Baseball Draft\"))) (type fb:sports.sports_league_draft)\nwhat part did winona ryder play in star trek?\tAlien Resurrection\t8.135\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection \"Alien Resurrection\") (name fb:en.how_to_make_an_american_quilt \"How to Make an American Quilt\") (name fb:m.09k56b7 \"Black Swan\") (name fb:en.mr_deeds \"Mr Deeds\") (name fb:en.little_women_1994 \"Little Women\") (name fb:en.the_age_of_innocence_1993 \"The Age of Innocence\") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites \"Reality Bites\") (name fb:en.bram_stokers_dracula \"Bram Stoker's Dracula\"))) (type fb:award.award_nominated_work)\nwhat part did winona ryder play in star trek?\tHow to Make an American Quilt\t8.135\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection \"Alien Resurrection\") (name fb:en.how_to_make_an_american_quilt \"How to Make an American Quilt\") (name fb:m.09k56b7 \"Black Swan\") (name fb:en.mr_deeds \"Mr Deeds\") (name fb:en.little_women_1994 \"Little Women\") (name fb:en.the_age_of_innocence_1993 \"The Age of Innocence\") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites \"Reality Bites\") (name fb:en.bram_stokers_dracula \"Bram Stoker's Dracula\"))) (type fb:award.award_nominated_work)\nwhat part did winona ryder play in star trek?\tBlack Swan\t8.135\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection \"Alien Resurrection\") (name fb:en.how_to_make_an_american_quilt \"How to Make an American Quilt\") (name fb:m.09k56b7 \"Black Swan\") (name fb:en.mr_deeds \"Mr Deeds\") (name fb:en.little_women_1994 \"Little Women\") (name fb:en.the_age_of_innocence_1993 \"The Age of Innocence\") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites \"Reality Bites\") (name fb:en.bram_stokers_dracula \"Bram Stoker's Dracula\"))) (type fb:award.award_nominated_work)\nwhat part did winona ryder play in star trek?\tMr Deeds\t8.135\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection \"Alien Resurrection\") (name fb:en.how_to_make_an_american_quilt \"How to Make an American Quilt\") (name fb:m.09k56b7 \"Black Swan\") (name fb:en.mr_deeds \"Mr Deeds\") (name fb:en.little_women_1994 \"Little Women\") (name fb:en.the_age_of_innocence_1993 \"The Age of Innocence\") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites \"Reality Bites\") (name fb:en.bram_stokers_dracula \"Bram Stoker's Dracula\"))) (type fb:award.award_nominated_work)\nwhat part did winona ryder play in star trek?\tLittle Women\t8.135\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection \"Alien Resurrection\") (name fb:en.how_to_make_an_american_quilt \"How to Make an American Quilt\") (name fb:m.09k56b7 \"Black Swan\") (name fb:en.mr_deeds \"Mr Deeds\") (name fb:en.little_women_1994 \"Little Women\") (name fb:en.the_age_of_innocence_1993 \"The Age of Innocence\") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites \"Reality Bites\") (name fb:en.bram_stokers_dracula \"Bram Stoker's Dracula\"))) (type fb:award.award_nominated_work)\nwhat part did winona ryder play in star trek?\tThe Age of Innocence\t8.135\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection \"Alien Resurrection\") (name fb:en.how_to_make_an_american_quilt \"How to Make an American Quilt\") (name fb:m.09k56b7 \"Black Swan\") (name fb:en.mr_deeds \"Mr Deeds\") (name fb:en.little_women_1994 \"Little Women\") (name fb:en.the_age_of_innocence_1993 \"The Age of Innocence\") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites \"Reality Bites\") (name fb:en.bram_stokers_dracula \"Bram Stoker's Dracula\"))) (type fb:award.award_nominated_work)\nwhat part did winona ryder play in star trek?\tReality Bites\t8.135\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection \"Alien Resurrection\") (name fb:en.how_to_make_an_american_quilt \"How to Make an American Quilt\") (name fb:m.09k56b7 \"Black Swan\") (name fb:en.mr_deeds \"Mr Deeds\") (name fb:en.little_women_1994 \"Little Women\") (name fb:en.the_age_of_innocence_1993 \"The Age of Innocence\") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites \"Reality Bites\") (name fb:en.bram_stokers_dracula \"Bram Stoker's Dracula\"))) (type fb:award.award_nominated_work)\nwhat part did winona ryder play in star trek?\tBram Stoker's Dracula\t8.135\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection \"Alien Resurrection\") (name fb:en.how_to_make_an_american_quilt \"How to Make an American Quilt\") (name fb:m.09k56b7 \"Black Swan\") (name fb:en.mr_deeds \"Mr Deeds\") (name fb:en.little_women_1994 \"Little Women\") (name fb:en.the_age_of_innocence_1993 \"The Age of Innocence\") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites \"Reality Bites\") (name fb:en.bram_stokers_dracula \"Bram Stoker's Dracula\"))) (type fb:award.award_nominated_work)\nwhat did president carter do in office?\tWalter Mondale\t11.966\tformula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.jimmy_carter))) (value (list (name fb:en.walter_mondale \"Walter Mondale\"))) (type (union fb:government.us_vice_president))\nwhat war did hitler lose?\tWestern Front\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tNormandy landings\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tWestern Allied invasion of Germany\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tOperation Sea Lion\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tBeer Hall Putsch\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tOccupation of the Baltic states\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tBattle of the Bulge\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tBattle of Stalingrad\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tOperation Cockade\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhat war did hitler lose?\tGreat Patriotic War\t16.942\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_neptune \"Normandy landings\") (name fb:en.central_europe_campaign \"Western Allied invasion of Germany\") (name fb:en.operation_sealion \"Operation Sea Lion\") (name fb:en.beer_hall_putsch \"Beer Hall Putsch\") (name fb:en.occupation_of_baltic_republics \"Occupation of the Baltic states\") (name fb:en.battle_of_the_bulge \"Battle of the Bulge\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.operation_cockade \"Operation Cockade\") (name fb:en.great_patriotic_war \"Great Patriotic War\"))) (type (union fb:military.military_conflict))\nwhere did clay matthews go to school?\tUniversity of Southern California\t8.608\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.clay_matthews)))) (value (list (name fb:en.university_of_southern_california \"University of Southern California\"))) (type fb:education.educational_institution)\nwhat time is it in texas houston right now?\tCentral Time Zone\t15.61\tformula (!fb:location.location.time_zones fb:en.texas)) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.mountain_time_zone \"Mountain Time Zone\") (name fb:en.utc-7 UTC−07:00) (name fb:en.utc-6 UTC−06:00))) (type fb:time.time_zone)\nwhat time is it in texas houston right now?\tMountain Time Zone\t15.61\tformula (!fb:location.location.time_zones fb:en.texas)) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.mountain_time_zone \"Mountain Time Zone\") (name fb:en.utc-7 UTC−07:00) (name fb:en.utc-6 UTC−06:00))) (type fb:time.time_zone)\nwho is princess leia in star wars?\tCarrie Fisher\t6.972\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.princess_leia_organa)) (value (list (name fb:en.carrie_fisher \"Carrie Fisher\") (name fb:en.amy_smart \"Amy Smart\"))) (type fb:tv.tv_actor)\nwho is princess leia in star wars?\tAmy Smart\t6.972\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.princess_leia_organa)) (value (list (name fb:en.carrie_fisher \"Carrie Fisher\") (name fb:en.amy_smart \"Amy Smart\"))) (type fb:tv.tv_actor)\nwhat is the political structure of china?\tSun Yat-sen Mausoleum\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tHunan Provincial Museum\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tSaint Sophia Cathedral in Harbin\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tShanghai Ocean Aquarium\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tMinsheng Bank Building\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tPurple Mountain Observatory\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tJinan Yellow River Bridge\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tSt. Michael's Cathedral, Qingdao\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tTianwan Nuclear Power Plant\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is the political structure of china?\tQinshan Nuclear Power Plant\t14.844\tformula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum \"Sun Yat-sen Mausoleum\") (name fb:en.hunan_provincial_museum \"Hunan Provincial Museum\") (name fb:en.saint_sophia_cathedral_in_harbin \"Saint Sophia Cathedral in Harbin\") (name fb:en.shanghai_ocean_aquarium \"Shanghai Ocean Aquarium\") (name fb:en.minsheng_bank_building \"Minsheng Bank Building\") (name fb:en.purple_mountain_observatory \"Purple Mountain Observatory\") (name fb:en.jinan_yellow_river_bridge \"Jinan Yellow River Bridge\") (name fb:en.st_michaels_cathedral_qingdao \"St. Michael's Cathedral, Qingdao\") (name fb:en.tianwan_nuclear_power_plant \"Tianwan Nuclear Power Plant\") (name fb:en.qinshan_nuclear_power_plant \"Qinshan Nuclear Power Plant\"))) (type (union fb:architecture.structure))\nwhat is new york city airport?\tJohn F. Kennedy International Airport\t17.021\tformula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport \"John F. Kennedy International Airport\") (name fb:en.laguardia_airport \"LaGuardia Airport\") (name fb:en.downtown_manhattan_heliport \"Downtown Manhattan Heliport\") (name fb:en.mitchel_air_force_base \"Mitchel Air Force Base\") (name fb:en.east_34th_street_heliport \"East 34th Street Heliport\") (name fb:en.flushing_airport \"Flushing Airport\") (name fb:en.new_york_skyports_inc_seaplane_base \"New York Skyports Inc. Seaplane Base\"))) (type fb:aviation.airport)\nwhat is new york city airport?\tLaGuardia Airport\t17.021\tformula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport \"John F. Kennedy International Airport\") (name fb:en.laguardia_airport \"LaGuardia Airport\") (name fb:en.downtown_manhattan_heliport \"Downtown Manhattan Heliport\") (name fb:en.mitchel_air_force_base \"Mitchel Air Force Base\") (name fb:en.east_34th_street_heliport \"East 34th Street Heliport\") (name fb:en.flushing_airport \"Flushing Airport\") (name fb:en.new_york_skyports_inc_seaplane_base \"New York Skyports Inc. Seaplane Base\"))) (type fb:aviation.airport)\nwhat is new york city airport?\tDowntown Manhattan Heliport\t17.021\tformula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport \"John F. Kennedy International Airport\") (name fb:en.laguardia_airport \"LaGuardia Airport\") (name fb:en.downtown_manhattan_heliport \"Downtown Manhattan Heliport\") (name fb:en.mitchel_air_force_base \"Mitchel Air Force Base\") (name fb:en.east_34th_street_heliport \"East 34th Street Heliport\") (name fb:en.flushing_airport \"Flushing Airport\") (name fb:en.new_york_skyports_inc_seaplane_base \"New York Skyports Inc. Seaplane Base\"))) (type fb:aviation.airport)\nwhat is new york city airport?\tMitchel Air Force Base\t17.021\tformula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport \"John F. Kennedy International Airport\") (name fb:en.laguardia_airport \"LaGuardia Airport\") (name fb:en.downtown_manhattan_heliport \"Downtown Manhattan Heliport\") (name fb:en.mitchel_air_force_base \"Mitchel Air Force Base\") (name fb:en.east_34th_street_heliport \"East 34th Street Heliport\") (name fb:en.flushing_airport \"Flushing Airport\") (name fb:en.new_york_skyports_inc_seaplane_base \"New York Skyports Inc. Seaplane Base\"))) (type fb:aviation.airport)\nwhat is new york city airport?\tEast 34th Street Heliport\t17.021\tformula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport \"John F. Kennedy International Airport\") (name fb:en.laguardia_airport \"LaGuardia Airport\") (name fb:en.downtown_manhattan_heliport \"Downtown Manhattan Heliport\") (name fb:en.mitchel_air_force_base \"Mitchel Air Force Base\") (name fb:en.east_34th_street_heliport \"East 34th Street Heliport\") (name fb:en.flushing_airport \"Flushing Airport\") (name fb:en.new_york_skyports_inc_seaplane_base \"New York Skyports Inc. Seaplane Base\"))) (type fb:aviation.airport)\nwhat is new york city airport?\tFlushing Airport\t17.021\tformula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport \"John F. Kennedy International Airport\") (name fb:en.laguardia_airport \"LaGuardia Airport\") (name fb:en.downtown_manhattan_heliport \"Downtown Manhattan Heliport\") (name fb:en.mitchel_air_force_base \"Mitchel Air Force Base\") (name fb:en.east_34th_street_heliport \"East 34th Street Heliport\") (name fb:en.flushing_airport \"Flushing Airport\") (name fb:en.new_york_skyports_inc_seaplane_base \"New York Skyports Inc. Seaplane Base\"))) (type fb:aviation.airport)\nwhat is new york city airport?\tNew York Skyports Inc. Seaplane Base\t17.021\tformula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport \"John F. Kennedy International Airport\") (name fb:en.laguardia_airport \"LaGuardia Airport\") (name fb:en.downtown_manhattan_heliport \"Downtown Manhattan Heliport\") (name fb:en.mitchel_air_force_base \"Mitchel Air Force Base\") (name fb:en.east_34th_street_heliport \"East 34th Street Heliport\") (name fb:en.flushing_airport \"Flushing Airport\") (name fb:en.new_york_skyports_inc_seaplane_base \"New York Skyports Inc. Seaplane Base\"))) (type fb:aviation.airport)\nwhat language brazil speak?\tPortuguese Language\t12.494\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.brazil))) (value (list (name fb:en.portuguese \"Portuguese Language\"))) (type (union fb:language.human_language))\nwho played obi wan in episode 2?\tKevin Walsh\t5.102\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0jw_nn_)) (value (list (name fb:m.0g4tx2t \"Kevin Walsh\"))) (type fb:film.actor)\nwhat currency is used in panama?\tUnited States dollar\t22.851\tformula (and (fb:type.object.type fb:finance.currency) (fb:finance.currency.countries_used fb:en.panama))) (value (list (name fb:en.us \"United States dollar\") (name fb:en.panamanian_balboa \"Panamanian balboa\"))) (type fb:finance.currency)\nwhat currency is used in panama?\tPanamanian balboa\t22.851\tformula (and (fb:type.object.type fb:finance.currency) (fb:finance.currency.countries_used fb:en.panama))) (value (list (name fb:en.us \"United States dollar\") (name fb:en.panamanian_balboa \"Panamanian balboa\"))) (type fb:finance.currency)\nwhat countries do the united nations help?\tUnited States of America\t14.345\tformula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:user.skud.embassies_and_consulates.ambassadorial_tenure.to_countries (!fb:user.skud.embassies_and_consulates.embassy.ambassadors (var x)))) fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.portugal Portugal) (name fb:en.austria Austria) (name fb:en.spain Spain) (name fb:en.united_states_of_america \"United States of America\") (name fb:en.greece Greece) (name fb:en.empire_of_japan \"Empire of Japan\") (name fb:en.kingdom_of_portugal \"Kingdom of Portugal\") (name fb:en.colombia Colombia))) (type (union fb:location.country))\nwhat countries do the united nations help?\tEmpire of Japan\t14.345\tformula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:user.skud.embassies_and_consulates.ambassadorial_tenure.to_countries (!fb:user.skud.embassies_and_consulates.embassy.ambassadors (var x)))) fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.portugal Portugal) (name fb:en.austria Austria) (name fb:en.spain Spain) (name fb:en.united_states_of_america \"United States of America\") (name fb:en.greece Greece) (name fb:en.empire_of_japan \"Empire of Japan\") (name fb:en.kingdom_of_portugal \"Kingdom of Portugal\") (name fb:en.colombia Colombia))) (type (union fb:location.country))\nwhat countries do the united nations help?\tKingdom of Portugal\t14.345\tformula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:user.skud.embassies_and_consulates.ambassadorial_tenure.to_countries (!fb:user.skud.embassies_and_consulates.embassy.ambassadors (var x)))) fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.portugal Portugal) (name fb:en.austria Austria) (name fb:en.spain Spain) (name fb:en.united_states_of_america \"United States of America\") (name fb:en.greece Greece) (name fb:en.empire_of_japan \"Empire of Japan\") (name fb:en.kingdom_of_portugal \"Kingdom of Portugal\") (name fb:en.colombia Colombia))) (type (union fb:location.country))\nwhat team did ronaldo play for in 2003?\tA.C. Milan\t20.331\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.fc_internazionale_milano \"Inter Milan\") (name fb:en.psv_eindhoven \"PSV Eindhoven\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.cruzeiro_esporte_clube \"Cruzeiro Esporte Clube\") (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.sport_club_corinthians_paulista \"Sport Club Corinthians Paulista\"))) (type fb:soccer.football_team)\nwhat team did ronaldo play for in 2003?\tInter Milan\t20.331\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.fc_internazionale_milano \"Inter Milan\") (name fb:en.psv_eindhoven \"PSV Eindhoven\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.cruzeiro_esporte_clube \"Cruzeiro Esporte Clube\") (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.sport_club_corinthians_paulista \"Sport Club Corinthians Paulista\"))) (type fb:soccer.football_team)\nwhat team did ronaldo play for in 2003?\tPSV Eindhoven\t20.331\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.fc_internazionale_milano \"Inter Milan\") (name fb:en.psv_eindhoven \"PSV Eindhoven\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.cruzeiro_esporte_clube \"Cruzeiro Esporte Clube\") (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.sport_club_corinthians_paulista \"Sport Club Corinthians Paulista\"))) (type fb:soccer.football_team)\nwhat team did ronaldo play for in 2003?\tFC Barcelona\t20.331\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.fc_internazionale_milano \"Inter Milan\") (name fb:en.psv_eindhoven \"PSV Eindhoven\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.cruzeiro_esporte_clube \"Cruzeiro Esporte Clube\") (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.sport_club_corinthians_paulista \"Sport Club Corinthians Paulista\"))) (type fb:soccer.football_team)\nwhat team did ronaldo play for in 2003?\tCruzeiro Esporte Clube\t20.331\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.fc_internazionale_milano \"Inter Milan\") (name fb:en.psv_eindhoven \"PSV Eindhoven\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.cruzeiro_esporte_clube \"Cruzeiro Esporte Clube\") (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.sport_club_corinthians_paulista \"Sport Club Corinthians Paulista\"))) (type fb:soccer.football_team)\nwhat team did ronaldo play for in 2003?\tReal Madrid C.F.\t20.331\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.fc_internazionale_milano \"Inter Milan\") (name fb:en.psv_eindhoven \"PSV Eindhoven\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.cruzeiro_esporte_clube \"Cruzeiro Esporte Clube\") (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.sport_club_corinthians_paulista \"Sport Club Corinthians Paulista\"))) (type fb:soccer.football_team)\nwhat team did ronaldo play for in 2003?\tSport Club Corinthians Paulista\t20.331\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.fc_internazionale_milano \"Inter Milan\") (name fb:en.psv_eindhoven \"PSV Eindhoven\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.cruzeiro_esporte_clube \"Cruzeiro Esporte Clube\") (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.sport_club_corinthians_paulista \"Sport Club Corinthians Paulista\"))) (type fb:soccer.football_team)\nwhere does robin williams live 2011?\tBloomfield Hills\t7.851\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.robin_williams))) (value (list (name fb:en.bloomfield_hills \"Bloomfield Hills\") (name fb:en.san_francisco \"San Francisco\"))) (type fb:location.location)\nwhere does robin williams live 2011?\tSan Francisco\t7.851\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.robin_williams))) (value (list (name fb:en.bloomfield_hills \"Bloomfield Hills\") (name fb:en.san_francisco \"San Francisco\"))) (type fb:location.location)\nwho played jacob black in twilight?\tTaylor Lautner\t12.11\tformula (fb:film.actor.film (and (fb:film.performance.character fb:en.jacob_black) (fb:film.performance.film fb:m.03nm_fh)))) (value (list (name fb:en.taylor_lautner \"Taylor Lautner\"))) (type fb:film.actor)\nwhen was president john adams elected?\tThomas Jefferson\t15.178\tformula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.john_adams))) (value (list (name fb:en.thomas_jefferson \"Thomas Jefferson\"))) (type (union fb:government.us_vice_president))\nwho does lee clark manager?\tBirmingham City F.C.\t6.694\tformula ((lambda x (fb:soccer.football_team.manager (fb:soccer.football_team_management_tenure.manager (var x)))) fb:en.lee_clark)) (value (list (name fb:en.birmingham_city_fc \"Birmingham City F.C.\") (name fb:en.huddersfield_town_fc \"Huddersfield Town F.C.\"))) (type fb:soccer.football_team)\nwho does lee clark manager?\tHuddersfield Town F.C.\t6.694\tformula ((lambda x (fb:soccer.football_team.manager (fb:soccer.football_team_management_tenure.manager (var x)))) fb:en.lee_clark)) (value (list (name fb:en.birmingham_city_fc \"Birmingham City F.C.\") (name fb:en.huddersfield_town_fc \"Huddersfield Town F.C.\"))) (type fb:soccer.football_team)\nwhich airport to fly into in buenos aires?\tMinistro Pistarini International Airport\t15.941\tformula (!fb:location.location.nearby_airports fb:en.buenos_aires)) (value (list (name fb:en.ministro_pistarini_international_airport \"Ministro Pistarini International Airport\") (name fb:en.aeroparque_jorge_newbery \"Aeroparque Jorge Newbery\") (name fb:en.don_torcuato_airport \"Don Torcuato Airport\"))) (type fb:aviation.airport)\nwhich airport to fly into in buenos aires?\tAeroparque Jorge Newbery\t15.941\tformula (!fb:location.location.nearby_airports fb:en.buenos_aires)) (value (list (name fb:en.ministro_pistarini_international_airport \"Ministro Pistarini International Airport\") (name fb:en.aeroparque_jorge_newbery \"Aeroparque Jorge Newbery\") (name fb:en.don_torcuato_airport \"Don Torcuato Airport\"))) (type fb:aviation.airport)\nwhich airport to fly into in buenos aires?\tDon Torcuato Airport\t15.941\tformula (!fb:location.location.nearby_airports fb:en.buenos_aires)) (value (list (name fb:en.ministro_pistarini_international_airport \"Ministro Pistarini International Airport\") (name fb:en.aeroparque_jorge_newbery \"Aeroparque Jorge Newbery\") (name fb:en.don_torcuato_airport \"Don Torcuato Airport\"))) (type fb:aviation.airport)\nwhere to get a marriage license in long island?\tLong Island Rail Road\t4.961\tformula (fb:metropolitan_transit.transit_system.area_served fb:en.long_island)) (value (list (name fb:en.long_island_rail_road \"Long Island Rail Road\"))) (type fb:metropolitan_transit.transit_system)\nwhat team did adrian peterson play for in college?\tMinnesota Vikings\t14.613\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.adrian_peterson))) (value (list (name fb:en.minnesota_vikings \"Minnesota Vikings\"))) (type fb:sports.sports_team)\nwhere does name pennsylvania come from?\tUSS Pennsylvania (SSBN-735)\t7.742\tformula (fb:symbols.namesake.named_after fb:en.pennsylvania)) (value (list (name fb:m.036y42 \"USS Pennsylvania (SSBN-735)\") (name fb:m.01j375 \"USS Pennsylvania\") (name fb:m.01cyj6 \"USS Pennsylvania (ACR-4)\") (name fb:en.uss_pennsylvania \"USS Pennsylvania (BB-38)\"))) (type fb:symbols.namesake)\nwhere does name pennsylvania come from?\tUSS Pennsylvania\t7.742\tformula (fb:symbols.namesake.named_after fb:en.pennsylvania)) (value (list (name fb:m.036y42 \"USS Pennsylvania (SSBN-735)\") (name fb:m.01j375 \"USS Pennsylvania\") (name fb:m.01cyj6 \"USS Pennsylvania (ACR-4)\") (name fb:en.uss_pennsylvania \"USS Pennsylvania (BB-38)\"))) (type fb:symbols.namesake)\nwhere does name pennsylvania come from?\tUSS Pennsylvania (ACR-4)\t7.742\tformula (fb:symbols.namesake.named_after fb:en.pennsylvania)) (value (list (name fb:m.036y42 \"USS Pennsylvania (SSBN-735)\") (name fb:m.01j375 \"USS Pennsylvania\") (name fb:m.01cyj6 \"USS Pennsylvania (ACR-4)\") (name fb:en.uss_pennsylvania \"USS Pennsylvania (BB-38)\"))) (type fb:symbols.namesake)\nwhere does name pennsylvania come from?\tUSS Pennsylvania (BB-38)\t7.742\tformula (fb:symbols.namesake.named_after fb:en.pennsylvania)) (value (list (name fb:m.036y42 \"USS Pennsylvania (SSBN-735)\") (name fb:m.01j375 \"USS Pennsylvania\") (name fb:m.01cyj6 \"USS Pennsylvania (ACR-4)\") (name fb:en.uss_pennsylvania \"USS Pennsylvania (BB-38)\"))) (type fb:symbols.namesake)\nwho plays blaine in batman?\tWill Friedle\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tCharles Stanley\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tBruce Greenwood\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tBenjamin McKenzie\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tChristian Bale\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tJing Abalos\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tAdam West\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tJoe Krajcar\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tSam Rockwell\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwho plays blaine in batman?\tKevin Conroy\t8.052\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle \"Will Friedle\") (name fb:m.0r9k3kz \"Charles Stanley\") (name fb:en.bruce_greenwood \"Bruce Greenwood\") (name fb:en.benjamin_mckenzie \"Benjamin McKenzie\") (name fb:en.christian_bale \"Christian Bale\") (name fb:en.jing_abalos \"Jing Abalos\") (name fb:en.adam_west \"Adam West\") (name fb:m.0gj68b4 \"Joe Krajcar\") (name fb:en.sam_rockwell \"Sam Rockwell\") (name fb:en.kevin_conroy \"Kevin Conroy\"))) (type fb:film.actor)\nwhat language does australia use?\tEnglish Language\t11.898\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.australia))) (value (list (name fb:en.english \"English Language\") (name fb:en.lojban Lojban) (name fb:en.esperanto \"Esperanto Language\"))) (type (union fb:language.human_language))\nwhat language does australia use?\tEsperanto Language\t11.898\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.australia))) (value (list (name fb:en.english \"English Language\") (name fb:en.lojban Lojban) (name fb:en.esperanto \"Esperanto Language\"))) (type (union fb:language.human_language))\nwhat position did vince lombardi play in college?\tFordham University\t11.79\tformula (and (fb:type.object.type fb:education.university) ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.vince_lombardi))) (value (list (name fb:en.fordham_university \"Fordham University\"))) (type (union fb:education.university))\nwhat kind of government did the united states have after the revolution?\tFederal republic\t15.279\tformula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat kind of government did the united states have after the revolution?\tPresidential system\t15.279\tformula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat kind of government did the united states have after the revolution?\tConstitutional republic\t15.279\tformula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwho did veronica lake mary?\tRenal failure\t1.91\tformula (fb:people.cause_of_death.people fb:en.veronica_lake)) (value (list (name fb:en.renal_failure \"Renal failure\") (name fb:en.hepatitis Hepatitis) (name fb:en.acute_kidney_injury \"Acute renal failure\"))) (type fb:people.cause_of_death)\nwho did veronica lake mary?\tAcute renal failure\t1.91\tformula (fb:people.cause_of_death.people fb:en.veronica_lake)) (value (list (name fb:en.renal_failure \"Renal failure\") (name fb:en.hepatitis Hepatitis) (name fb:en.acute_kidney_injury \"Acute renal failure\"))) (type fb:people.cause_of_death)\nwho did sir francis drake marry?\tElizabeth Sydenham\t12.438\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.francis_drake)) (value (list (name fb:m.0k1nmzm \"Elizabeth Sydenham\") (name fb:m.0k1nmz5 \"Mary Newman\"))) (type fb:people.person)\nwho did sir francis drake marry?\tMary Newman\t12.438\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.francis_drake)) (value (list (name fb:m.0k1nmzm \"Elizabeth Sydenham\") (name fb:m.0k1nmz5 \"Mary Newman\"))) (type fb:people.person)\nwho plays stephanie plum in one for the money?\tKatherine Heigl\t12.552\tformula (fb:film.actor.film (and (fb:film.performance.character fb:en.stephanie_plum) (fb:film.performance.film fb:m.0g5sxb4)))) (value (list (name fb:en.katherine_heigl \"Katherine Heigl\"))) (type fb:film.actor)\nwhat does ringo sing?\tRock music\t7.904\tformula (fb:music.genre.artists fb:en.ringo_starr)) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.world_music \"World music\"))) (type fb:music.genre)\nwhat does ringo sing?\tPop music\t7.904\tformula (fb:music.genre.artists fb:en.ringo_starr)) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.world_music \"World music\"))) (type fb:music.genre)\nwhat does ringo sing?\tPsychedelic rock\t7.904\tformula (fb:music.genre.artists fb:en.ringo_starr)) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.world_music \"World music\"))) (type fb:music.genre)\nwhat does ringo sing?\tWorld music\t7.904\tformula (fb:music.genre.artists fb:en.ringo_starr)) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.world_music \"World music\"))) (type fb:music.genre)\nwhat type of government does australia have?\tParliamentary system\t13.515\tformula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.federal_constitutional_monarchy \"Federal monarchy\"))) (type fb:government.form_of_government)\nwhat type of government does australia have?\tConstitutional monarchy\t13.515\tformula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.federal_constitutional_monarchy \"Federal monarchy\"))) (type fb:government.form_of_government)\nwhat type of government does australia have?\tFederal monarchy\t13.515\tformula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.federal_constitutional_monarchy \"Federal monarchy\"))) (type fb:government.form_of_government)\nwhere is the university of maryland medical school?\tUnited States of America\t9.163\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.maryland))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\") (name fb:en.conterminous_united_states \"Contiguous United States\"))) (type fb:location.location)\nwhere is the university of maryland medical school?\tUnited States, with Territories\t9.163\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.maryland))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\") (name fb:en.conterminous_united_states \"Contiguous United States\"))) (type fb:location.location)\nwhere is the university of maryland medical school?\tContiguous United States\t9.163\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.maryland))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\") (name fb:en.conterminous_united_states \"Contiguous United States\"))) (type fb:location.location)\nwhere did salvador dali study art?\tNew York City\t0.893\tformula (and (fb:type.object.type fb:location.location) (!fb:book.book_edition.place_of_publication fb:m.0c5psvt))) (value (list (name fb:en.new_york_ny \"New York City\"))) (type fb:location.location)\nwho was the father of king george vi?\tGeorge V\t12.739\tformula (!fb:people.person.parents fb:en.george_vi_of_the_united_kingdom)) (value (list (name fb:en.george_v_of_the_united_kingdom \"George V\") (name fb:en.mary_of_teck \"Mary of Teck\"))) (type fb:people.person)\nwho was the father of king george vi?\tMary of Teck\t12.739\tformula (!fb:people.person.parents fb:en.george_vi_of_the_united_kingdom)) (value (list (name fb:en.george_v_of_the_united_kingdom \"George V\") (name fb:en.mary_of_teck \"Mary of Teck\"))) (type fb:people.person)\nwhat national team does cristiano ronaldo play for?\tPortugal national football team\t18.051\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat national team does cristiano ronaldo play for?\tSporting Clube de Portugal\t18.051\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat national team does cristiano ronaldo play for?\tManchester United F.C.\t18.051\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat national team does cristiano ronaldo play for?\tReal Madrid C.F.\t18.051\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat flower is on the oklahoma quarter?\tPapilio polyxenes\t12.738\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail \"Papilio polyxenes\") (name fb:en.labor_omnia_vincit \"Labor omnia vincit\") (name fb:en.white_bass \"White bass\") (name fb:en.oklahoma_rose \"Rosa 'Oklahoma'\") (name fb:en.common_collared_lizard \"Common collared lizard\") (name fb:en.bullfrog \"American bullfrog\") (name fb:en.eastern_redbud \"Cercis canadensis\") (name fb:en.scissor-tailed_flycatcher \"Scissor-tailed Flycatcher\"))) (type fb:location.symbol_of_administrative_division)\nwhat flower is on the oklahoma quarter?\tLabor omnia vincit\t12.738\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail \"Papilio polyxenes\") (name fb:en.labor_omnia_vincit \"Labor omnia vincit\") (name fb:en.white_bass \"White bass\") (name fb:en.oklahoma_rose \"Rosa 'Oklahoma'\") (name fb:en.common_collared_lizard \"Common collared lizard\") (name fb:en.bullfrog \"American bullfrog\") (name fb:en.eastern_redbud \"Cercis canadensis\") (name fb:en.scissor-tailed_flycatcher \"Scissor-tailed Flycatcher\"))) (type fb:location.symbol_of_administrative_division)\nwhat flower is on the oklahoma quarter?\tWhite bass\t12.738\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail \"Papilio polyxenes\") (name fb:en.labor_omnia_vincit \"Labor omnia vincit\") (name fb:en.white_bass \"White bass\") (name fb:en.oklahoma_rose \"Rosa 'Oklahoma'\") (name fb:en.common_collared_lizard \"Common collared lizard\") (name fb:en.bullfrog \"American bullfrog\") (name fb:en.eastern_redbud \"Cercis canadensis\") (name fb:en.scissor-tailed_flycatcher \"Scissor-tailed Flycatcher\"))) (type fb:location.symbol_of_administrative_division)\nwhat flower is on the oklahoma quarter?\tRosa 'Oklahoma'\t12.738\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail \"Papilio polyxenes\") (name fb:en.labor_omnia_vincit \"Labor omnia vincit\") (name fb:en.white_bass \"White bass\") (name fb:en.oklahoma_rose \"Rosa 'Oklahoma'\") (name fb:en.common_collared_lizard \"Common collared lizard\") (name fb:en.bullfrog \"American bullfrog\") (name fb:en.eastern_redbud \"Cercis canadensis\") (name fb:en.scissor-tailed_flycatcher \"Scissor-tailed Flycatcher\"))) (type fb:location.symbol_of_administrative_division)\nwhat flower is on the oklahoma quarter?\tCommon collared lizard\t12.738\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail \"Papilio polyxenes\") (name fb:en.labor_omnia_vincit \"Labor omnia vincit\") (name fb:en.white_bass \"White bass\") (name fb:en.oklahoma_rose \"Rosa 'Oklahoma'\") (name fb:en.common_collared_lizard \"Common collared lizard\") (name fb:en.bullfrog \"American bullfrog\") (name fb:en.eastern_redbud \"Cercis canadensis\") (name fb:en.scissor-tailed_flycatcher \"Scissor-tailed Flycatcher\"))) (type fb:location.symbol_of_administrative_division)\nwhat flower is on the oklahoma quarter?\tAmerican bullfrog\t12.738\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail \"Papilio polyxenes\") (name fb:en.labor_omnia_vincit \"Labor omnia vincit\") (name fb:en.white_bass \"White bass\") (name fb:en.oklahoma_rose \"Rosa 'Oklahoma'\") (name fb:en.common_collared_lizard \"Common collared lizard\") (name fb:en.bullfrog \"American bullfrog\") (name fb:en.eastern_redbud \"Cercis canadensis\") (name fb:en.scissor-tailed_flycatcher \"Scissor-tailed Flycatcher\"))) (type fb:location.symbol_of_administrative_division)\nwhat flower is on the oklahoma quarter?\tCercis canadensis\t12.738\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail \"Papilio polyxenes\") (name fb:en.labor_omnia_vincit \"Labor omnia vincit\") (name fb:en.white_bass \"White bass\") (name fb:en.oklahoma_rose \"Rosa 'Oklahoma'\") (name fb:en.common_collared_lizard \"Common collared lizard\") (name fb:en.bullfrog \"American bullfrog\") (name fb:en.eastern_redbud \"Cercis canadensis\") (name fb:en.scissor-tailed_flycatcher \"Scissor-tailed Flycatcher\"))) (type fb:location.symbol_of_administrative_division)\nwhat flower is on the oklahoma quarter?\tScissor-tailed Flycatcher\t12.738\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail \"Papilio polyxenes\") (name fb:en.labor_omnia_vincit \"Labor omnia vincit\") (name fb:en.white_bass \"White bass\") (name fb:en.oklahoma_rose \"Rosa 'Oklahoma'\") (name fb:en.common_collared_lizard \"Common collared lizard\") (name fb:en.bullfrog \"American bullfrog\") (name fb:en.eastern_redbud \"Cercis canadensis\") (name fb:en.scissor-tailed_flycatcher \"Scissor-tailed Flycatcher\"))) (type fb:location.symbol_of_administrative_division)\nwhat language is spoken in switzerland?\tGerman Language\t17.305\tformula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.italian \"Italian Language\") (name fb:en.french \"French Language\") (name fb:en.romansh \"Romansh language\"))) (type fb:language.human_language)\nwhat language is spoken in switzerland?\tItalian Language\t17.305\tformula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.italian \"Italian Language\") (name fb:en.french \"French Language\") (name fb:en.romansh \"Romansh language\"))) (type fb:language.human_language)\nwhat language is spoken in switzerland?\tFrench Language\t17.305\tformula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.italian \"Italian Language\") (name fb:en.french \"French Language\") (name fb:en.romansh \"Romansh language\"))) (type fb:language.human_language)\nwhat language is spoken in switzerland?\tRomansh language\t17.305\tformula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.italian \"Italian Language\") (name fb:en.french \"French Language\") (name fb:en.romansh \"Romansh language\"))) (type fb:language.human_language)\nwho was philip in acts chapter 8?\tThe Secrets of the Golden Compass\t4.939\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.philip_pullman)) (value (list (name fb:m.0crvjmz \"The Secrets of the Golden Compass\") (name fb:m.0csbmxj \"The World of Philip Pullman\"))) (type fb:film.film)\nwho was philip in acts chapter 8?\tThe World of Philip Pullman\t4.939\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.philip_pullman)) (value (list (name fb:m.0crvjmz \"The Secrets of the Golden Compass\") (name fb:m.0csbmxj \"The World of Philip Pullman\"))) (type fb:film.film)\nwhat islands did darwin study finches on?\tSkycity Darwin\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tDarwin Entertainment Centre\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tBicentennial Park\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tDarwin Military Museum\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tGovernment House, Darwin\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tParliament House, Darwin\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tMuseum and Art Gallery of the Northern Territory\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tDarwin Convention Centre\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tDarwin International Guitar Festival\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat islands did darwin study finches on?\tMindil Beach\t7.51\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin \"Skycity Darwin\") (name fb:en.darwin_entertainment_centre \"Darwin Entertainment Centre\") (name fb:m.0406950 \"Bicentennial Park\") (name fb:en.east_point_military_museum \"Darwin Military Museum\") (name fb:en.government_house_darwin \"Government House, Darwin\") (name fb:en.parliament_house_darwin \"Parliament House, Darwin\") (name fb:en.museum_and_art_gallery_of_the_northern_territory \"Museum and Art Gallery of the Northern Territory\") (name fb:en.darwin_convention_centre \"Darwin Convention Centre\") (name fb:en.darwin_international_guitar_festival \"Darwin International Guitar Festival\") (name fb:en.mindil_beach_northern_territory \"Mindil Beach\"))) (type fb:travel.tourist_attraction)\nwhat the time zone in england?\tGreenwich Mean Time\t19.685\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.england))) (value (list (name fb:en.greenwich_mean_time \"Greenwich Mean Time\") (name fb:en.utcplus0 UTC±00:00))) (type (union fb:time.time_zone))\nwhat does egfr african american mean on a blood test?\tEntertainment Weekly annotation index\t9.703\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.blood_test)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nwhat is the best currency to take to turkey?\tTurkish lira\t23.03\tformula (!fb:location.country.currency_used fb:en.turkey)) (value (list (name fb:en.turkish_lira \"Turkish lira\"))) (type fb:finance.currency)\nwhat system of government is practiced in nigeria?\tFederal republic\t12.106\tformula (!fb:location.country.form_of_government fb:en.nigeria)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\"))) (type fb:government.form_of_government)\nwhat system of government is practiced in nigeria?\tPresidential system\t12.106\tformula (!fb:location.country.form_of_government fb:en.nigeria)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\"))) (type fb:government.form_of_government)\nwhere did holly madison get her breast implants?\tLas Vegas\t3.723\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.holly_madison))) (value (list (name fb:en.las_vegas \"Las Vegas\") (name fb:en.prince_of_wales_island \"Prince of Wales Island\") (name fb:en.oregon Oregon) (name fb:en.los_angeles \"Los Angeles\"))) (type fb:location.location)\nwhere did holly madison get her breast implants?\tPrince of Wales Island\t3.723\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.holly_madison))) (value (list (name fb:en.las_vegas \"Las Vegas\") (name fb:en.prince_of_wales_island \"Prince of Wales Island\") (name fb:en.oregon Oregon) (name fb:en.los_angeles \"Los Angeles\"))) (type fb:location.location)\nwhere did holly madison get her breast implants?\tLos Angeles\t3.723\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.holly_madison))) (value (list (name fb:en.las_vegas \"Las Vegas\") (name fb:en.prince_of_wales_island \"Prince of Wales Island\") (name fb:en.oregon Oregon) (name fb:en.los_angeles \"Los Angeles\"))) (type fb:location.location)\nwho were mary shelley?\tMary Wollstonecraft\t3.143\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.children fb:en.mary_shelley))) (value (list (name fb:en.mary_wollstonecraft \"Mary Wollstonecraft\") (name fb:en.william_godwin \"William Godwin\"))) (type fb:people.person)\nwho were mary shelley?\tWilliam Godwin\t3.143\tformula (and (fb:type.object.type fb:people.person) (fb:people.person.children fb:en.mary_shelley))) (value (list (name fb:en.mary_wollstonecraft \"Mary Wollstonecraft\") (name fb:en.william_godwin \"William Godwin\"))) (type fb:people.person)\nwhat language do most australians speak?\tEnglish Language\t12.952\tformula (!fb:people.ethnicity.languages_spoken fb:en.australian_people)) (value (list (name fb:en.english \"English Language\") (name fb:en.italian \"Italian Language\") (name fb:en.chinese_language \"Chinese language\") (name fb:en.greek_language \"Greek Language\"))) (type fb:language.human_language)\nwhat language do most australians speak?\tItalian Language\t12.952\tformula (!fb:people.ethnicity.languages_spoken fb:en.australian_people)) (value (list (name fb:en.english \"English Language\") (name fb:en.italian \"Italian Language\") (name fb:en.chinese_language \"Chinese language\") (name fb:en.greek_language \"Greek Language\"))) (type fb:language.human_language)\nwhat language do most australians speak?\tChinese language\t12.952\tformula (!fb:people.ethnicity.languages_spoken fb:en.australian_people)) (value (list (name fb:en.english \"English Language\") (name fb:en.italian \"Italian Language\") (name fb:en.chinese_language \"Chinese language\") (name fb:en.greek_language \"Greek Language\"))) (type fb:language.human_language)\nwhat language do most australians speak?\tGreek Language\t12.952\tformula (!fb:people.ethnicity.languages_spoken fb:en.australian_people)) (value (list (name fb:en.english \"English Language\") (name fb:en.italian \"Italian Language\") (name fb:en.chinese_language \"Chinese language\") (name fb:en.greek_language \"Greek Language\"))) (type fb:language.human_language)\nwhere was teddy roosevelt's house?\tJames Wilson\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tEric Foreman\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tRobert Chase\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tDr. Gregory House\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tChris Taub\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tLisa Cuddy\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tAllison Cameron\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tDr. Amber Volakis\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tLawrence Kutner\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhere was teddy roosevelt's house?\tRachel Taub\t-1.903\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ \"James Wilson\") (name fb:en.eric_foreman \"Eric Foreman\") (name fb:en.robert_chase \"Robert Chase\") (name fb:en.gregory_house \"Dr. Gregory House\") (name fb:en.chris_taub \"Chris Taub\") (name fb:en.lisa_cuddy \"Lisa Cuddy\") (name fb:en.allison_cameron \"Allison Cameron\") (name fb:m.0nf3bkl \"Dr. Amber Volakis\") (name fb:en.lawrence_kutner \"Lawrence Kutner\") (name fb:m.0nf3byp \"Rachel Taub\"))) (type fb:tv.tv_character)\nwhat is the government system of malaysia?\tParliamentary system\t12.059\tformula (!fb:location.country.form_of_government fb:en.malaysia)) (value (list (name fb:en.democracy Democracy) (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.elective_monarchy \"Elective monarchy\"))) (type fb:government.form_of_government)\nwhat is the government system of malaysia?\tConstitutional monarchy\t12.059\tformula (!fb:location.country.form_of_government fb:en.malaysia)) (value (list (name fb:en.democracy Democracy) (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.elective_monarchy \"Elective monarchy\"))) (type fb:government.form_of_government)\nwhat is the government system of malaysia?\tElective monarchy\t12.059\tformula (!fb:location.country.form_of_government fb:en.malaysia)) (value (list (name fb:en.democracy Democracy) (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.elective_monarchy \"Elective monarchy\"))) (type fb:government.form_of_government)\nwhat do people speak in canada?\tEnglish Language\t10.536\tformula (!fb:location.country.official_language fb:en.canada)) (value (list (name fb:en.english \"English Language\") (name fb:en.french \"French Language\"))) (type fb:language.human_language)\nwhat do people speak in canada?\tFrench Language\t10.536\tformula (!fb:location.country.official_language fb:en.canada)) (value (list (name fb:en.english \"English Language\") (name fb:en.french \"French Language\"))) (type fb:language.human_language)\nwhat type of money do they use in costa rica?\tCosta Rican colón\t16.751\tformula (fb:finance.currency.countries_used fb:en.costa_rica)) (value (list (name fb:en.costa_rican_colon \"Costa Rican colón\"))) (type fb:finance.currency)\nwhat timezone is nashville tn?\tEntertainment Weekly annotation index\t8.303\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.nashville_tennessee)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwhat timezone is nashville tn?\tWSJ Speakeasy Index\t8.303\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.nashville_tennessee)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwhat is the largest nation in europe?\tKingdom of the Netherlands\t17.164\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains_major_portion_of fb:en.europe))) (value (list (name fb:en.france France) (name fb:en.spain Spain) (name fb:en.netherlands Netherlands) (name fb:en.portugal Portugal) (name fb:en.kingdom_of_the_netherlands \"Kingdom of the Netherlands\"))) (type (union fb:location.country))\nwhere was the first gulf war fought?\tSaudi Arabia\t9.078\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.events fb:en.gulf_war))) (value (list (name fb:en.israel Israel) (name fb:en.saudi_arabia \"Saudi Arabia\") (name fb:en.iraq Iraq) (name fb:en.kuwait Kuwait) (name fb:en.persian_gulf \"Persian Gulf\") (name fb:en.arabian_peninsula \"Arabian Peninsula\"))) (type fb:location.location)\nwhere was the first gulf war fought?\tPersian Gulf\t9.078\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.events fb:en.gulf_war))) (value (list (name fb:en.israel Israel) (name fb:en.saudi_arabia \"Saudi Arabia\") (name fb:en.iraq Iraq) (name fb:en.kuwait Kuwait) (name fb:en.persian_gulf \"Persian Gulf\") (name fb:en.arabian_peninsula \"Arabian Peninsula\"))) (type fb:location.location)\nwhere was the first gulf war fought?\tArabian Peninsula\t9.078\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.events fb:en.gulf_war))) (value (list (name fb:en.israel Israel) (name fb:en.saudi_arabia \"Saudi Arabia\") (name fb:en.iraq Iraq) (name fb:en.kuwait Kuwait) (name fb:en.persian_gulf \"Persian Gulf\") (name fb:en.arabian_peninsula \"Arabian Peninsula\"))) (type fb:location.location)\nwho are the senators of virginia 2013?\tTim Kaine\t18.298\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.political_district.representatives fb:en.virginia) (fb:government.government_position_held.from (date 2013 -1 -1))))) (value (list (name fb:en.tim_kaine \"Tim Kaine\"))) (type fb:government.politician)\nwhat band was george clinton in?\tThe Parliaments\t8.44\tformula ((lambda x (!fb:music.group_membership.group (!fb:music.group_member.membership (var x)))) fb:en.george_clinton)) (value (list (name fb:en.parliament-funkadelic Parliament-Funkadelic) (name fb:en.funkadelic Funkadelic) (name fb:en.the_parliaments \"The Parliaments\") (name fb:m.01q_34l \"P-Funk All Stars\") (name fb:en.george_clinton_bootsy_collins \"George Clinton & Bootsy Collins\"))) (type fb:music.musical_group)\nwhat band was george clinton in?\tP-Funk All Stars\t8.44\tformula ((lambda x (!fb:music.group_membership.group (!fb:music.group_member.membership (var x)))) fb:en.george_clinton)) (value (list (name fb:en.parliament-funkadelic Parliament-Funkadelic) (name fb:en.funkadelic Funkadelic) (name fb:en.the_parliaments \"The Parliaments\") (name fb:m.01q_34l \"P-Funk All Stars\") (name fb:en.george_clinton_bootsy_collins \"George Clinton & Bootsy Collins\"))) (type fb:music.musical_group)\nwhat band was george clinton in?\tGeorge Clinton & Bootsy Collins\t8.44\tformula ((lambda x (!fb:music.group_membership.group (!fb:music.group_member.membership (var x)))) fb:en.george_clinton)) (value (list (name fb:en.parliament-funkadelic Parliament-Funkadelic) (name fb:en.funkadelic Funkadelic) (name fb:en.the_parliaments \"The Parliaments\") (name fb:m.01q_34l \"P-Funk All Stars\") (name fb:en.george_clinton_bootsy_collins \"George Clinton & Bootsy Collins\"))) (type fb:music.musical_group)\nwhat country borders slovakia?\tCzech Republic\t9.568\tformula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.slovakia))) (value (list (name fb:en.hungary Hungary) (name fb:en.austria Austria) (name fb:en.poland Poland) (name fb:en.ukraine Ukraine) (name fb:en.czech_republic \"Czech Republic\"))) (type fb:location.country)\nwhat was james garfield most known for?\tMyocardial infarction\t7.395\tformula (fb:people.cause_of_death.people fb:en.james_garfield)) (value (list (name fb:en.pneumonia Pneumonia) (name fb:en.heart_failure \"Myocardial infarction\") (name fb:en.sepsis Sepsis))) (type fb:people.cause_of_death)\nwhere did paula deen go to school?\tAlbany High School\t10.321\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.paula_deen)))) (value (list (name fb:m.0610np \"Albany High School\"))) (type fb:education.educational_institution)\nwhat style of music does michael jackson perform?\tRock music\t15.681\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.dance_music \"Dance music\") (name fb:en.new_jack_swing \"New jack swing\") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b \"Contemporary R&B\") (name fb:en.electronic_music \"Electronic music\") (name fb:en.rhythm_and_blues \"Rhythm and blues\") (name fb:en.soul_music \"Soul music\") (name fb:en.funk Funk))) (type (union fb:music.genre))\nwhat style of music does michael jackson perform?\tPop music\t15.681\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.dance_music \"Dance music\") (name fb:en.new_jack_swing \"New jack swing\") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b \"Contemporary R&B\") (name fb:en.electronic_music \"Electronic music\") (name fb:en.rhythm_and_blues \"Rhythm and blues\") (name fb:en.soul_music \"Soul music\") (name fb:en.funk Funk))) (type (union fb:music.genre))\nwhat style of music does michael jackson perform?\tDance music\t15.681\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.dance_music \"Dance music\") (name fb:en.new_jack_swing \"New jack swing\") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b \"Contemporary R&B\") (name fb:en.electronic_music \"Electronic music\") (name fb:en.rhythm_and_blues \"Rhythm and blues\") (name fb:en.soul_music \"Soul music\") (name fb:en.funk Funk))) (type (union fb:music.genre))\nwhat style of music does michael jackson perform?\tNew jack swing\t15.681\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.dance_music \"Dance music\") (name fb:en.new_jack_swing \"New jack swing\") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b \"Contemporary R&B\") (name fb:en.electronic_music \"Electronic music\") (name fb:en.rhythm_and_blues \"Rhythm and blues\") (name fb:en.soul_music \"Soul music\") (name fb:en.funk Funk))) (type (union fb:music.genre))\nwhat style of music does michael jackson perform?\tContemporary R&B\t15.681\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.dance_music \"Dance music\") (name fb:en.new_jack_swing \"New jack swing\") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b \"Contemporary R&B\") (name fb:en.electronic_music \"Electronic music\") (name fb:en.rhythm_and_blues \"Rhythm and blues\") (name fb:en.soul_music \"Soul music\") (name fb:en.funk Funk))) (type (union fb:music.genre))\nwhat style of music does michael jackson perform?\tElectronic music\t15.681\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.dance_music \"Dance music\") (name fb:en.new_jack_swing \"New jack swing\") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b \"Contemporary R&B\") (name fb:en.electronic_music \"Electronic music\") (name fb:en.rhythm_and_blues \"Rhythm and blues\") (name fb:en.soul_music \"Soul music\") (name fb:en.funk Funk))) (type (union fb:music.genre))\nwhat style of music does michael jackson perform?\tRhythm and blues\t15.681\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.dance_music \"Dance music\") (name fb:en.new_jack_swing \"New jack swing\") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b \"Contemporary R&B\") (name fb:en.electronic_music \"Electronic music\") (name fb:en.rhythm_and_blues \"Rhythm and blues\") (name fb:en.soul_music \"Soul music\") (name fb:en.funk Funk))) (type (union fb:music.genre))\nwhat style of music does michael jackson perform?\tSoul music\t15.681\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.pop_music \"Pop music\") (name fb:en.dance_music \"Dance music\") (name fb:en.new_jack_swing \"New jack swing\") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b \"Contemporary R&B\") (name fb:en.electronic_music \"Electronic music\") (name fb:en.rhythm_and_blues \"Rhythm and blues\") (name fb:en.soul_music \"Soul music\") (name fb:en.funk Funk))) (type (union fb:music.genre))\nwhat does david beckham play?\tReal Madrid C.F.\t13.349\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat does david beckham play?\tLA Galaxy\t13.349\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat does david beckham play?\tA.C. Milan\t13.349\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat does david beckham play?\tParis Saint-Germain F.C.\t13.349\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat does david beckham play?\tPreston North End F.C.\t13.349\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat does david beckham play?\tManchester United F.C.\t13.349\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat does david beckham play?\tEngland national under-21 football team\t13.349\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat does david beckham play?\tEngland national football team\t13.349\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat does julian lennon do?\tDomestic partnership\t3.883\tformula ((lambda x (!fb:people.marriage.type_of_union (!fb:people.person.spouse_s (var x)))) fb:en.julian_lennon)) (value (list (name fb:en.domestic_partnership \"Domestic partnership\"))) (type fb:people.marriage_union_type)\nwhat is the milwaukee brewers mascot?\tBernie Brewer\t18.065\tformula (and (fb:type.object.type fb:sports.mascot) (!fb:sports.sports_team.team_mascot fb:en.milwaukee_brewers))) (value (list (name fb:en.bernie_brewer \"Bernie Brewer\") (name fb:en.bonnie_brewer \"Bonnie Brewer\"))) (type (union fb:sports.mascot))\nwhat is the milwaukee brewers mascot?\tBonnie Brewer\t18.065\tformula (and (fb:type.object.type fb:sports.mascot) (!fb:sports.sports_team.team_mascot fb:en.milwaukee_brewers))) (value (list (name fb:en.bernie_brewer \"Bernie Brewer\") (name fb:en.bonnie_brewer \"Bonnie Brewer\"))) (type (union fb:sports.mascot))\nwhat is the second biggest state in the united states?\tMatagorda County\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tMedina County\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tWilbarger County\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tFairfax County, Virginia\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tMarion County\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tMineral County\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tChippewa County\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tMenominee County\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tEvangeline Parish\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat is the second biggest state in the united states?\tFayette County\t17.392\tformula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county \"Matagorda County\") (name fb:en.medina_county_texas \"Medina County\") (name fb:en.wilbarger_county \"Wilbarger County\") (name fb:en.fairfax_county \"Fairfax County, Virginia\") (name fb:en.marion_county_west_virginia \"Marion County\") (name fb:en.mineral_county \"Mineral County\") (name fb:en.chippewa_county_wisconsin \"Chippewa County\") (name fb:en.menominee_county_wisconsin \"Menominee County\") (name fb:en.evangeline_parish \"Evangeline Parish\") (name fb:en.fayette_county_west_virginia \"Fayette County\"))) (type (union fb:location.administrative_division))\nwhat has charlie hunnam been in?\tWSJ Speakeasy Index\t3.023\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.charlie_hunnam)) (value (list (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\") (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nwhat has charlie hunnam been in?\tBlissful Master Index\t3.023\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.charlie_hunnam)) (value (list (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\") (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nwhat has charlie hunnam been in?\tBlissful Celebrities\t3.023\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.charlie_hunnam)) (value (list (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\") (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nwhat has charlie hunnam been in?\tEntertainment Weekly annotation index\t3.023\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.charlie_hunnam)) (value (list (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\") (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nwhat are all the movies taylor swift has been in?\tI Knew You Were Trouble\t15.655\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z \"I Knew You Were Trouble\") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 \"Breathe (feat. Colbie Caillat)\") (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 \"We Are Never Ever Getting Back Together\") (name fb:m.0my6p0g \"Teardrops on My Guitar\") (name fb:m.0l8n493 \"We Are Never Ever Getting Back Together\") (name fb:m.05226nb \"White Horse\") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work))\nwhat are all the movies taylor swift has been in?\tBreathe (feat. Colbie Caillat)\t15.655\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z \"I Knew You Were Trouble\") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 \"Breathe (feat. Colbie Caillat)\") (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 \"We Are Never Ever Getting Back Together\") (name fb:m.0my6p0g \"Teardrops on My Guitar\") (name fb:m.0l8n493 \"We Are Never Ever Getting Back Together\") (name fb:m.05226nb \"White Horse\") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work))\nwhat are all the movies taylor swift has been in?\tValentine's Day\t15.655\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z \"I Knew You Were Trouble\") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 \"Breathe (feat. Colbie Caillat)\") (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 \"We Are Never Ever Getting Back Together\") (name fb:m.0my6p0g \"Teardrops on My Guitar\") (name fb:m.0l8n493 \"We Are Never Ever Getting Back Together\") (name fb:m.05226nb \"White Horse\") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work))\nwhat are all the movies taylor swift has been in?\tWe Are Never Ever Getting Back Together\t15.655\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z \"I Knew You Were Trouble\") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 \"Breathe (feat. Colbie Caillat)\") (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 \"We Are Never Ever Getting Back Together\") (name fb:m.0my6p0g \"Teardrops on My Guitar\") (name fb:m.0l8n493 \"We Are Never Ever Getting Back Together\") (name fb:m.05226nb \"White Horse\") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work))\nwhat are all the movies taylor swift has been in?\tTeardrops on My Guitar\t15.655\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z \"I Knew You Were Trouble\") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 \"Breathe (feat. Colbie Caillat)\") (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 \"We Are Never Ever Getting Back Together\") (name fb:m.0my6p0g \"Teardrops on My Guitar\") (name fb:m.0l8n493 \"We Are Never Ever Getting Back Together\") (name fb:m.05226nb \"White Horse\") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work))\nwhat are all the movies taylor swift has been in?\tWe Are Never Ever Getting Back Together\t15.655\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z \"I Knew You Were Trouble\") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 \"Breathe (feat. Colbie Caillat)\") (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 \"We Are Never Ever Getting Back Together\") (name fb:m.0my6p0g \"Teardrops on My Guitar\") (name fb:m.0l8n493 \"We Are Never Ever Getting Back Together\") (name fb:m.05226nb \"White Horse\") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work))\nwhat are all the movies taylor swift has been in?\tWhite Horse\t15.655\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z \"I Knew You Were Trouble\") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 \"Breathe (feat. Colbie Caillat)\") (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 \"We Are Never Ever Getting Back Together\") (name fb:m.0my6p0g \"Teardrops on My Guitar\") (name fb:m.0l8n493 \"We Are Never Ever Getting Back Together\") (name fb:m.05226nb \"White Horse\") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work))\nwhat school did michael jackson go to high school?\tMontclair College Preparatory School\t19.224\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_jackson))) (value (list (name fb:en.montclair_college_preparatory_school \"Montclair College Preparatory School\"))) (type fb:education.educational_institution)\nwhat college did brett favre?\tThe University of Southern Mississippi\t13.691\tformula (and (fb:type.object.type fb:education.university) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.brett_favre))) (value (list (name fb:en.university_of_southern_mississippi \"The University of Southern Mississippi\"))) (type (union fb:education.university))\nwhat time does registration open portland state?\tPacific Time Zone\t7.804\tformula (!fb:location.location.time_zones fb:en.portland)) (value (list (name fb:en.pacific_time_zone \"Pacific Time Zone\"))) (type fb:time.time_zone)\nwhere did alex chilton die?\tNew Orleans\t5.965\tformula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.alex_chilton))) (value (list (name fb:en.new_orleans \"New Orleans\"))) (type fb:location.location)\nwhat college did martin luther king jr go to?\tCrozer Theological Seminary\t23.186\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary \"Crozer Theological Seminary\") (name fb:en.boston_university \"Boston University\") (name fb:en.morehouse_college \"Morehouse College\"))) (type fb:education.university)\nwhat college did martin luther king jr go to?\tBoston University\t23.186\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary \"Crozer Theological Seminary\") (name fb:en.boston_university \"Boston University\") (name fb:en.morehouse_college \"Morehouse College\"))) (type fb:education.university)\nwhat college did martin luther king jr go to?\tMorehouse College\t23.186\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary \"Crozer Theological Seminary\") (name fb:en.boston_university \"Boston University\") (name fb:en.morehouse_college \"Morehouse College\"))) (type fb:education.university)\nwhat kind of cancer did farrah fawcett die of?\tAnal cancer\t17.986\tformula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.farrah_fawcett))) (value (list (name fb:en.anal_cancer \"Anal cancer\"))) (type fb:people.cause_of_death)\nwho is michael j fox's wife?\tTracy Pollan\t8.324\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.michael_j_fox)) (value (list (name fb:en.tracy_pollan \"Tracy Pollan\"))) (type fb:people.person)\nwhat money do i use in costa rica?\tCosta Rican colón\t17.259\tformula (fb:finance.currency.countries_used fb:en.costa_rica)) (value (list (name fb:en.costa_rican_colon \"Costa Rican colón\"))) (type fb:finance.currency)\nwhat guitar did joe walsh play?\tFender Stratocaster\t15.186\tformula (and (fb:type.object.type fb:music.guitar) (!fb:music.guitarist.guitars_played fb:en.joe_walsh))) (value (list (name fb:en.fender_stratocaster \"Fender Stratocaster\"))) (type (union fb:music.guitar))\nwhat is ryan seacrest radio show?\tEntertainment Weekly annotation index\t6.605\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.ryan_seacrest)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat is ryan seacrest radio show?\tWSJ Speakeasy Index\t6.605\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.ryan_seacrest)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat is ryan seacrest radio show?\tBlissful Master Index\t6.605\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.ryan_seacrest)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat is ryan seacrest radio show?\tBlissful Celebrities\t6.605\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.ryan_seacrest)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat language do most italians speak?\tItalian Language\t8.421\tformula (and (fb:type.object.type fb:language.human_language) (!fb:film.film.language fb:m.0c4f761))) (value (list (name fb:en.italian \"Italian Language\"))) (type (union fb:language.human_language))\nwhat broncos are in the pro bowl?\tEntertainment Weekly annotation index\t8.415\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.denver_broncos)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nwho voiced darth vader?\tDavid Prowse\t9.301\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader?\tJames Earl Jones\t9.301\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader?\tHayden Christensen\t9.301\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader?\tMatt Lanter\t9.301\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader?\tSebastian Shaw\t9.301\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader?\tRobert E. Bean\t9.301\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader?\tJake Lloyd\t9.301\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwhere are the texas rangers playing?\tRangers Ballpark in Arlington\t10.198\tformula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.texas_rangers))) (value (list (name fb:en.ameriquest_field_in_arlington \"Rangers Ballpark in Arlington\"))) (type fb:sports.sports_facility)\nwhat did andrew johnson accomplish as president?\tAbraham Lincoln\t13.996\tformula (!fb:government.us_vice_president.to_president fb:en.andrew_johnson)) (value (list (name fb:en.abraham_lincoln \"Abraham Lincoln\"))) (type fb:government.us_president)\nwhat is arkansas state capitol?\tLittle Rock\t7.812\tformula (!fb:location.us_state.capital fb:en.arkansas)) (value (list (name fb:en.little_rock \"Little Rock\"))) (type fb:location.citytown)\nwhat is the best tour to egypt?\tInternet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\t13.623\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.egypt)) (value (list (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\") (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\"))) (type fb:dataworld.information_source)\nwhat is the best tour to egypt?\tInternet users as percentage of population, World Development Indicators, World Bank\t13.623\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.egypt)) (value (list (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\") (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\"))) (type fb:dataworld.information_source)\nwhen did michael vick start playing for the eagles?\tPhiladelphia Eagles\t15.886\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick)) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.virginia_tech_hokies_football \"Virginia Tech Hokies football\") (name fb:en.atlanta_falcons \"Atlanta Falcons\"))) (type fb:sports.sports_team)\nwhen did michael vick start playing for the eagles?\tVirginia Tech Hokies football\t15.886\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick)) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.virginia_tech_hokies_football \"Virginia Tech Hokies football\") (name fb:en.atlanta_falcons \"Atlanta Falcons\"))) (type fb:sports.sports_team)\nwhen did michael vick start playing for the eagles?\tAtlanta Falcons\t15.886\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick)) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.virginia_tech_hokies_football \"Virginia Tech Hokies football\") (name fb:en.atlanta_falcons \"Atlanta Falcons\"))) (type fb:sports.sports_team)\nwhere do kfc get their chicken from?\tUnited Kingdom\t8.663\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:common.phone_number.service_location (!fb:organization.organization.phone_number (var x)))) fb:en.kfc))) (value (list (name fb:en.canada Canada) (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.location)\nwhere do kfc get their chicken from?\tUnited States of America\t8.663\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:common.phone_number.service_location (!fb:organization.organization.phone_number (var x)))) fb:en.kfc))) (value (list (name fb:en.canada Canada) (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.location)\nhow large is kony army?\tJoseph Kony (296444792)\t0.686\tformula (!fb:common.topic.image fb:en.joseph_kony)) (value (list (name fb:m.04s33xq \"Joseph Kony (296444792)\") (name fb:m.03str0p \"Joseph Kony in November 2006\"))) (type fb:common.image)\nhow large is kony army?\tJoseph Kony in November 2006\t0.686\tformula (!fb:common.topic.image fb:en.joseph_kony)) (value (list (name fb:m.04s33xq \"Joseph Kony (296444792)\") (name fb:m.03str0p \"Joseph Kony in November 2006\"))) (type fb:common.image)\nwho is louisiana state senator?\tAlexandre Mouton\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tJean Noel Destréhan\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tWilliam C. C. Claiborne\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tAlexander Barrow\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tHuey Long\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tCharles Dominique Joseph Bouligny\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tJames Brown\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tJosiah S. Johnston\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tHenry Johnson\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwho is louisiana state senator?\tGeorge A. Waggaman\t9.189\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton \"Alexandre Mouton\") (name fb:en.jean_n_destrehan \"Jean Noel Destréhan\") (name fb:en.william_c_c_claiborne \"William C. C. Claiborne\") (name fb:en.alexander_barrow \"Alexander Barrow\") (name fb:en.huey_long \"Huey Long\") (name fb:en.charles_dominique_joseph_bouligny \"Charles Dominique Joseph Bouligny\") (name fb:en.james_brown_1766 \"James Brown\") (name fb:en.josiah_s_johnston \"Josiah S. Johnston\") (name fb:en.henry_johnson \"Henry Johnson\") (name fb:en.george_a_waggaman \"George A. Waggaman\"))) (type fb:government.politician)\nwhat are the 7 countries that are part of central america?\tEl Salvador\t18.511\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador \"El Salvador\") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica \"Costa Rica\") (name fb:en.honduras Honduras) (name fb:en.greater_colombia \"Gran Colombia\") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country))\nwhat are the 7 countries that are part of central america?\tCosta Rica\t18.511\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador \"El Salvador\") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica \"Costa Rica\") (name fb:en.honduras Honduras) (name fb:en.greater_colombia \"Gran Colombia\") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country))\nwhat are the 7 countries that are part of central america?\tGran Colombia\t18.511\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador \"El Salvador\") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica \"Costa Rica\") (name fb:en.honduras Honduras) (name fb:en.greater_colombia \"Gran Colombia\") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country))\nwhere did derek fisher go to college?\tUniversity of Arkansas\t15.305\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.derek_fisher)))) (value (list (name fb:en.university_of_arkansas \"University of Arkansas\") (name fb:en.university_of_arkansas_at_little_rock \"University of Arkansas at Little Rock\"))) (type fb:education.university)\nwhere did derek fisher go to college?\tUniversity of Arkansas at Little Rock\t15.305\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.derek_fisher)))) (value (list (name fb:en.university_of_arkansas \"University of Arkansas\") (name fb:en.university_of_arkansas_at_little_rock \"University of Arkansas at Little Rock\"))) (type fb:education.university)\nwho was kobe bryant drafted by?\t1996 NBA Draft\t16.846\tformula ((lambda x (!fb:sports.sports_league_draft_pick.draft (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.kobe_bryant)) (value (list (name fb:en.1996_nba_draft \"1996 NBA Draft\"))) (type fb:sports.sports_league_draft)\nwhere are the new orleans hornets moving to?\tFrench Quarter\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tNew Orleans Museum of Art\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tNapoleon House\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tMercedes-Benz Superdome\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tAudubon Zoo\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tJean Lafitte National Historical Park and Preserve\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tThe Presbytere\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tSt. Louis Cathedral\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tLafitte's Blacksmith Shop\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhere are the new orleans hornets moving to?\tPreservation Hall\t7.685\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter \"French Quarter\") (name fb:en.new_orleans_museum_of_art \"New Orleans Museum of Art\") (name fb:en.napoleon_house \"Napoleon House\") (name fb:en.louisiana_superdome \"Mercedes-Benz Superdome\") (name fb:en.audubon_zoo \"Audubon Zoo\") (name fb:en.jean_lafitte_national_historical_park_and_preserve \"Jean Lafitte National Historical Park and Preserve\") (name fb:en.the_presbytere \"The Presbytere\") (name fb:en.st_louis_cathedral_new_orleans \"St. Louis Cathedral\") (name fb:en.lafittes_blacksmith_shop \"Lafitte's Blacksmith Shop\") (name fb:en.preservation_hall \"Preservation Hall\"))) (type fb:travel.tourist_attraction)\nwhat language does algerian people speak?\tRachid Bouchareb\t3.895\tformula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb \"Rachid Bouchareb\") (name fb:en.assia_djebar \"Assia Djebar\") (name fb:en.samy_naceri \"Samy Naceri\") (name fb:en.khaled Khaled) (name fb:m.0h1nftd \"Carina Bleeth\") (name fb:en.kamel_amar \"Kamel Amar\") (name fb:m.0h2sbx7 \"Mohammed Cherif Adjani\"))) (type fb:people.person)\nwhat language does algerian people speak?\tAssia Djebar\t3.895\tformula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb \"Rachid Bouchareb\") (name fb:en.assia_djebar \"Assia Djebar\") (name fb:en.samy_naceri \"Samy Naceri\") (name fb:en.khaled Khaled) (name fb:m.0h1nftd \"Carina Bleeth\") (name fb:en.kamel_amar \"Kamel Amar\") (name fb:m.0h2sbx7 \"Mohammed Cherif Adjani\"))) (type fb:people.person)\nwhat language does algerian people speak?\tSamy Naceri\t3.895\tformula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb \"Rachid Bouchareb\") (name fb:en.assia_djebar \"Assia Djebar\") (name fb:en.samy_naceri \"Samy Naceri\") (name fb:en.khaled Khaled) (name fb:m.0h1nftd \"Carina Bleeth\") (name fb:en.kamel_amar \"Kamel Amar\") (name fb:m.0h2sbx7 \"Mohammed Cherif Adjani\"))) (type fb:people.person)\nwhat language does algerian people speak?\tCarina Bleeth\t3.895\tformula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb \"Rachid Bouchareb\") (name fb:en.assia_djebar \"Assia Djebar\") (name fb:en.samy_naceri \"Samy Naceri\") (name fb:en.khaled Khaled) (name fb:m.0h1nftd \"Carina Bleeth\") (name fb:en.kamel_amar \"Kamel Amar\") (name fb:m.0h2sbx7 \"Mohammed Cherif Adjani\"))) (type fb:people.person)\nwhat language does algerian people speak?\tKamel Amar\t3.895\tformula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb \"Rachid Bouchareb\") (name fb:en.assia_djebar \"Assia Djebar\") (name fb:en.samy_naceri \"Samy Naceri\") (name fb:en.khaled Khaled) (name fb:m.0h1nftd \"Carina Bleeth\") (name fb:en.kamel_amar \"Kamel Amar\") (name fb:m.0h2sbx7 \"Mohammed Cherif Adjani\"))) (type fb:people.person)\nwhat language does algerian people speak?\tMohammed Cherif Adjani\t3.895\tformula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb \"Rachid Bouchareb\") (name fb:en.assia_djebar \"Assia Djebar\") (name fb:en.samy_naceri \"Samy Naceri\") (name fb:en.khaled Khaled) (name fb:m.0h1nftd \"Carina Bleeth\") (name fb:en.kamel_amar \"Kamel Amar\") (name fb:m.0h2sbx7 \"Mohammed Cherif Adjani\"))) (type fb:people.person)\nwhat school did martin luther king jr received his doctorate degree from?\tCrozer Theological Seminary\t17.344\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary \"Crozer Theological Seminary\") (name fb:m.0479w_2 \"Washington High School\") (name fb:en.boston_university \"Boston University\") (name fb:en.morehouse_college \"Morehouse College\"))) (type (union fb:education.educational_institution))\nwhat school did martin luther king jr received his doctorate degree from?\tWashington High School\t17.344\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary \"Crozer Theological Seminary\") (name fb:m.0479w_2 \"Washington High School\") (name fb:en.boston_university \"Boston University\") (name fb:en.morehouse_college \"Morehouse College\"))) (type (union fb:education.educational_institution))\nwhat school did martin luther king jr received his doctorate degree from?\tBoston University\t17.344\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary \"Crozer Theological Seminary\") (name fb:m.0479w_2 \"Washington High School\") (name fb:en.boston_university \"Boston University\") (name fb:en.morehouse_college \"Morehouse College\"))) (type (union fb:education.educational_institution))\nwhat school did martin luther king jr received his doctorate degree from?\tMorehouse College\t17.344\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary \"Crozer Theological Seminary\") (name fb:m.0479w_2 \"Washington High School\") (name fb:en.boston_university \"Boston University\") (name fb:en.morehouse_college \"Morehouse College\"))) (type (union fb:education.educational_institution))\nwhat type of cancer did larry hagman have?\tHead and neck cancer\t13.909\tformula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.larry_hagman))) (value (list (name fb:en.cancer Cancer) (name fb:en.head_and_neck_cancer \"Head and neck cancer\") (name fb:en.leukemia Leukemia))) (type (union fb:people.cause_of_death))\nwhat wars did robert e lee served in?\tBattle of Darbytown and New Market Roads\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tBattle of Totopotomoy Creek\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tOverland Campaign\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tBattle of Franklin's Crossing\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tBattle of Beaver Dam Creek\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tNorthern Virginia Campaign\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tBattle of Antietam\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tBattle of Fredericksburg\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tRichmond in the American Civil War\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat wars did robert e lee served in?\tSecond Battle of Bull Run\t11.902\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads \"Battle of Darbytown and New Market Roads\") (name fb:en.battle_of_totopotomoy_creek \"Battle of Totopotomoy Creek\") (name fb:en.overland_campaign \"Overland Campaign\") (name fb:en.battle_of_franklins_crossing \"Battle of Franklin's Crossing\") (name fb:en.battle_of_beaver_dam_creek \"Battle of Beaver Dam Creek\") (name fb:en.northern_virginia_campaign \"Northern Virginia Campaign\") (name fb:en.battle_of_antietam \"Battle of Antietam\") (name fb:en.battle_of_fredericksburg \"Battle of Fredericksburg\") (name fb:m.0c00cv3 \"Richmond in the American Civil War\") (name fb:en.second_battle_of_bull_run \"Second Battle of Bull Run\"))) (type (union fb:military.military_conflict))\nwhat russian language called?\tRussian Language\t12.495\tformula (!fb:people.ethnicity.languages_spoken fb:en.russians)) (value (list (name fb:en.russian_language \"Russian Language\"))) (type fb:language.human_language)\nwho is in charge of libya now?\tAbdul Hafiz Ghoga\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tMohammed Ali Salim\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tMuammar al-Gaddafi\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tMahmud Sulayman al-Maghribi\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tAbdessalam Jalloud\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tMohammed Magariaf\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tAbdurrahim El-Keib\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tBaghdadi Mahmudi\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tMohamed Abdelaziz\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is in charge of libya now?\tAli Tarhouni\t11.535\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwhat currency does australia use 2012?\tAustralian dollar\t17.004\tformula (!fb:location.country.currency_used fb:en.australia)) (value (list (name fb:en.australian_dollar \"Australian dollar\"))) (type fb:finance.currency)\nwhat kind of disease does montel williams have?\tMultiple sclerosis\t15.894\tformula (and (fb:type.object.type fb:medicine.disease) (fb:medicine.disease.notable_people_with_this_condition fb:en.montel_williams))) (value (list (name fb:en.multiple_sclerosis \"Multiple sclerosis\"))) (type (union fb:medicine.disease))\nwhen is the last time the ravens won a superbowl?\tSuper Bowl XLVII\t19.788\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii \"Super Bowl XLVII\") (name fb:en.super_bowl_xxxv \"Super Bowl XXXV\"))) (type fb:sports.sports_championship_event)\nwhen is the last time the ravens won a superbowl?\tSuper Bowl XXXV\t19.788\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii \"Super Bowl XLVII\") (name fb:en.super_bowl_xxxv \"Super Bowl XXXV\"))) (type fb:sports.sports_championship_event)\nwhere did kansas city royals come from?\tUniversity of North Carolina at Chapel Hill\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tUniversity of Alabama in Huntsville\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tSeton Hall University\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tMiddle Tennessee State University\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tUniversity of Nebraska at Omaha\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tChatsworth High School\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tAntelope Valley College\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tVirginia Commonwealth University\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tStanford University\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhere did kansas city royals come from?\tTexas A&M University\t5.091\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill \"University of North Carolina at Chapel Hill\") (name fb:en.university_of_alabama_in_huntsville \"University of Alabama in Huntsville\") (name fb:en.seton_hall_university \"Seton Hall University\") (name fb:en.middle_tennessee_state_university \"Middle Tennessee State University\") (name fb:en.university_of_nebraska_omaha \"University of Nebraska at Omaha\") (name fb:en.chatsworth_high_school \"Chatsworth High School\") (name fb:en.antelope_valley_college \"Antelope Valley College\") (name fb:en.virginia_commonwealth_university \"Virginia Commonwealth University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.texas_a_m_university \"Texas A&M University\"))) (type fb:education.educational_institution)\nwhat style of music does john mayer play?\tRock music\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat style of music does john mayer play?\tSoul rock\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat style of music does john mayer play?\tPop music\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat style of music does john mayer play?\tIndie rock\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat style of music does john mayer play?\tAcoustic music\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat style of music does john mayer play?\tSoft rock\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat style of music does john mayer play?\tAlternative rock\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat style of music does john mayer play?\tSoul music\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat style of music does john mayer play?\tPop rock\t14.799\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.soul_rock \"Soul rock\") (name fb:en.pop_music \"Pop music\") (name fb:en.indie_rock \"Indie rock\") (name fb:en.acoustic_music \"Acoustic music\") (name fb:en.soft_rock \"Soft rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock \"Alternative rock\") (name fb:en.soul_music \"Soul music\") (name fb:en.pop_rock \"Pop rock\"))) (type (union fb:music.genre))\nwhat is the theme of scarlet letter by nathaniel hawthorne?\tDark romanticism\t10.204\tformula (fb:user.agroschim.default_domain.literary_movement.important_writers fb:en.nathaniel_hawthorne)) (value (list (name fb:en.dark_romanticism \"Dark romanticism\"))) (type fb:user.agroschim.default_domain.literary_movement)\nwhat inventions did thomas edison invent list?\tPhonograph cylinder\t16.164\tformula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder \"Phonograph cylinder\") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution \"Electric power distribution\") (name fb:en.incandescent_light_bulb \"Incandescent light bulb\") (name fb:en.movie_camera \"Movie camera\") (name fb:en.quadruplex_telegraph \"Quadruplex telegraph\") (name fb:en.carbon_microphone \"Carbon microphone\") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention)\nwhat inventions did thomas edison invent list?\tElectric power distribution\t16.164\tformula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder \"Phonograph cylinder\") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution \"Electric power distribution\") (name fb:en.incandescent_light_bulb \"Incandescent light bulb\") (name fb:en.movie_camera \"Movie camera\") (name fb:en.quadruplex_telegraph \"Quadruplex telegraph\") (name fb:en.carbon_microphone \"Carbon microphone\") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention)\nwhat inventions did thomas edison invent list?\tIncandescent light bulb\t16.164\tformula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder \"Phonograph cylinder\") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution \"Electric power distribution\") (name fb:en.incandescent_light_bulb \"Incandescent light bulb\") (name fb:en.movie_camera \"Movie camera\") (name fb:en.quadruplex_telegraph \"Quadruplex telegraph\") (name fb:en.carbon_microphone \"Carbon microphone\") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention)\nwhat inventions did thomas edison invent list?\tMovie camera\t16.164\tformula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder \"Phonograph cylinder\") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution \"Electric power distribution\") (name fb:en.incandescent_light_bulb \"Incandescent light bulb\") (name fb:en.movie_camera \"Movie camera\") (name fb:en.quadruplex_telegraph \"Quadruplex telegraph\") (name fb:en.carbon_microphone \"Carbon microphone\") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention)\nwhat inventions did thomas edison invent list?\tQuadruplex telegraph\t16.164\tformula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder \"Phonograph cylinder\") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution \"Electric power distribution\") (name fb:en.incandescent_light_bulb \"Incandescent light bulb\") (name fb:en.movie_camera \"Movie camera\") (name fb:en.quadruplex_telegraph \"Quadruplex telegraph\") (name fb:en.carbon_microphone \"Carbon microphone\") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention)\nwhat inventions did thomas edison invent list?\tCarbon microphone\t16.164\tformula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder \"Phonograph cylinder\") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution \"Electric power distribution\") (name fb:en.incandescent_light_bulb \"Incandescent light bulb\") (name fb:en.movie_camera \"Movie camera\") (name fb:en.quadruplex_telegraph \"Quadruplex telegraph\") (name fb:en.carbon_microphone \"Carbon microphone\") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention)\nwho is the arizona cardinals backup quarterback?\tEntertainment Weekly annotation index\t4.475\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.arizona_cardinals)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwho is the arizona cardinals backup quarterback?\tWSJ Speakeasy Index\t4.475\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.arizona_cardinals)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwhat kind of music did jimi hendrix play?\tRock music\t14.943\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.hard_rock \"Hard rock\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.heavy_metal \"Heavy metal\") (name fb:en.funk-rock \"Funk rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.progressive_rock \"Progressive rock\") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre))\nwhat kind of music did jimi hendrix play?\tHard rock\t14.943\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.hard_rock \"Hard rock\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.heavy_metal \"Heavy metal\") (name fb:en.funk-rock \"Funk rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.progressive_rock \"Progressive rock\") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre))\nwhat kind of music did jimi hendrix play?\tExperimental rock\t14.943\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.hard_rock \"Hard rock\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.heavy_metal \"Heavy metal\") (name fb:en.funk-rock \"Funk rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.progressive_rock \"Progressive rock\") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre))\nwhat kind of music did jimi hendrix play?\tHeavy metal\t14.943\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.hard_rock \"Hard rock\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.heavy_metal \"Heavy metal\") (name fb:en.funk-rock \"Funk rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.progressive_rock \"Progressive rock\") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre))\nwhat kind of music did jimi hendrix play?\tFunk rock\t14.943\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.hard_rock \"Hard rock\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.heavy_metal \"Heavy metal\") (name fb:en.funk-rock \"Funk rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.progressive_rock \"Progressive rock\") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre))\nwhat kind of music did jimi hendrix play?\tPsychedelic rock\t14.943\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.hard_rock \"Hard rock\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.heavy_metal \"Heavy metal\") (name fb:en.funk-rock \"Funk rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.progressive_rock \"Progressive rock\") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre))\nwhat kind of music did jimi hendrix play?\tProgressive rock\t14.943\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music \"Rock music\") (name fb:en.hard_rock \"Hard rock\") (name fb:en.experimental_rock \"Experimental rock\") (name fb:en.heavy_metal \"Heavy metal\") (name fb:en.funk-rock \"Funk rock\") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock \"Psychedelic rock\") (name fb:en.progressive_rock \"Progressive rock\") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre))\nwhat degrees did obama get in college?\tBachelor of Arts\t16.107\tformula (and (fb:type.object.type fb:education.educational_degree) ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.a_b \"Bachelor of Arts\") (name fb:en.juris_doctor \"Juris Doctor\"))) (type (union fb:education.educational_degree))\nwhat degrees did obama get in college?\tJuris Doctor\t16.107\tformula (and (fb:type.object.type fb:education.educational_degree) ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.a_b \"Bachelor of Arts\") (name fb:en.juris_doctor \"Juris Doctor\"))) (type (union fb:education.educational_degree))\nwho were alexander graham bell's siblings?\tMelville James Bell\t14.645\tformula ((lambda x (!fb:people.sibling_relationship.sibling (!fb:people.person.sibling_s (var x)))) fb:en.alexander_graham_bell)) (value (list (name fb:m.0k257qt \"Melville James Bell\") (name fb:en.chichester_bell \"Chichester Bell\"))) (type fb:people.person)\nwho were alexander graham bell's siblings?\tChichester Bell\t14.645\tformula ((lambda x (!fb:people.sibling_relationship.sibling (!fb:people.person.sibling_s (var x)))) fb:en.alexander_graham_bell)) (value (list (name fb:m.0k257qt \"Melville James Bell\") (name fb:en.chichester_bell \"Chichester Bell\"))) (type fb:people.person)\nwhen tupac was shot?\tRespiratory failure\t8.652\tformula (fb:people.cause_of_death.people fb:en.tupac_shakur)) (value (list (name fb:en.murder Murder) (name fb:en.respiratory_failure \"Respiratory failure\") (name fb:en.firearm Firearm) (name fb:en.gunshot Gunshot))) (type fb:people.cause_of_death)\nwhen did liverpool fc last win the champions league?\t1991–92 FA Cup\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t1992 FA Cup Final\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t1986 FA Cup Final\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t1985–86 FA Cup\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t2006 FA Cup Final\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t1974 FA Cup Final\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t2003 Football League Cup Final\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t2005–06 FA Cup\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t1964–65 FA Cup\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwhen did liverpool fc last win the champions league?\t2000–01 UEFA Cup\t13.975\tformula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 \"1991–92 FA Cup\") (name fb:en.fa_cup_final_1992 \"1992 FA Cup Final\") (name fb:en.fa_cup_final_1986 \"1986 FA Cup Final\") (name fb:en.fa_cup_1985_86 \"1985–86 FA Cup\") (name fb:en.fa_cup_final_2006 \"2006 FA Cup Final\") (name fb:en.fa_cup_final_1974 \"1974 FA Cup Final\") (name fb:en.football_league_cup_final_2003 \"2003 Football League Cup Final\") (name fb:en.fa_cup_2005-06 \"2005–06 FA Cup\") (name fb:en.fa_cup_1964_65 \"1964–65 FA Cup\") (name fb:en.uefa_cup_2000-01 \"2000–01 UEFA Cup\"))) (type fb:sports.sports_championship_event)\nwho played jeannie?\tHelen Hunt\t5.114\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0bdpjtb)) (value (list (name fb:en.helen_hunt \"Helen Hunt\"))) (type fb:film.actor)\nwhat kind of shoes do french people wear?\tBachelor's degree\t4.911\tformula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree \"Bachelor's degree\") (name fb:en.a_b \"Bachelor of Arts\") (name fb:en.bachelor_of_science \"Bachelor of Science\") (name fb:en.masters_degree \"Master's Degree\") (name fb:en.bachelor_of_arts_international \"Bachelor of Arts International\"))) (type fb:education.educational_degree)\nwhat kind of shoes do french people wear?\tBachelor of Arts\t4.911\tformula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree \"Bachelor's degree\") (name fb:en.a_b \"Bachelor of Arts\") (name fb:en.bachelor_of_science \"Bachelor of Science\") (name fb:en.masters_degree \"Master's Degree\") (name fb:en.bachelor_of_arts_international \"Bachelor of Arts International\"))) (type fb:education.educational_degree)\nwhat kind of shoes do french people wear?\tBachelor of Science\t4.911\tformula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree \"Bachelor's degree\") (name fb:en.a_b \"Bachelor of Arts\") (name fb:en.bachelor_of_science \"Bachelor of Science\") (name fb:en.masters_degree \"Master's Degree\") (name fb:en.bachelor_of_arts_international \"Bachelor of Arts International\"))) (type fb:education.educational_degree)\nwhat kind of shoes do french people wear?\tMaster's Degree\t4.911\tformula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree \"Bachelor's degree\") (name fb:en.a_b \"Bachelor of Arts\") (name fb:en.bachelor_of_science \"Bachelor of Science\") (name fb:en.masters_degree \"Master's Degree\") (name fb:en.bachelor_of_arts_international \"Bachelor of Arts International\"))) (type fb:education.educational_degree)\nwhat kind of shoes do french people wear?\tBachelor of Arts International\t4.911\tformula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree \"Bachelor's degree\") (name fb:en.a_b \"Bachelor of Arts\") (name fb:en.bachelor_of_science \"Bachelor of Science\") (name fb:en.masters_degree \"Master's Degree\") (name fb:en.bachelor_of_arts_international \"Bachelor of Arts International\"))) (type fb:education.educational_degree)\nwho does jeremy shockey play for in 2012?\tNew Orleans Saints\t11.277\tformula ((lambda x (!fb:american_football.player_game_statistics.team (!fb:american_football.football_player.games (var x)))) fb:en.jeremy_shockey)) (value (list (name fb:en.new_orleans_saints \"New Orleans Saints\"))) (type fb:american_football.football_team)\nwhat college did deion sanders jr go to?\tFlorida State University\t15.985\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.deion_sanders))) (value (list (name fb:en.florida_state_university \"Florida State University\"))) (type fb:education.university)\nwhat were the names of henry viii's three children?\tHenry VIII and His Chopping Block\t8.133\tformula (!fb:book.book_character.appears_in_book fb:m.0j1d8w6)) (value (list (name fb:en.henry_viii_and_his_chopping_block \"Henry VIII and His Chopping Block\") (name fb:m.0j0_zl7 \"Henry VIII and his wicked wives\"))) (type fb:book.book)\nwhat were the names of henry viii's three children?\tHenry VIII and his wicked wives\t8.133\tformula (!fb:book.book_character.appears_in_book fb:m.0j1d8w6)) (value (list (name fb:en.henry_viii_and_his_chopping_block \"Henry VIII and His Chopping Block\") (name fb:m.0j0_zl7 \"Henry VIII and his wicked wives\"))) (type fb:book.book)\nwhat was queen elizabeth ii childhood nickname?\tUnited Kingdom\t6.786\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwhat was queen elizabeth ii childhood nickname?\tNew Zealand\t6.786\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwhat was queen elizabeth ii childhood nickname?\tPapua New Guinea\t6.786\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwhat was queen elizabeth ii childhood nickname?\tAntigua and Barbuda\t6.786\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwhat was queen elizabeth ii childhood nickname?\tSaint Kitts and Nevis\t6.786\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwhere is chesapeake bay bridge?\tChesapeake Bay Bridge\t9.11\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:transportation.bridge) (!fb:geography.body_of_water.bridges fb:en.chesapeake_bay)))) (value (list (name fb:en.chesapeake_bay_bridge \"Chesapeake Bay Bridge\") (name fb:en.chesapeake_bay_bridge-tunnel \"Chesapeake Bay Bridge-Tunnel\"))) (type fb:transportation.bridge)\nwhere is chesapeake bay bridge?\tChesapeake Bay Bridge-Tunnel\t9.11\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:transportation.bridge) (!fb:geography.body_of_water.bridges fb:en.chesapeake_bay)))) (value (list (name fb:en.chesapeake_bay_bridge \"Chesapeake Bay Bridge\") (name fb:en.chesapeake_bay_bridge-tunnel \"Chesapeake Bay Bridge-Tunnel\"))) (type fb:transportation.bridge)\nwho played victoria barkley?\tJessica Lange\t5.114\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.victoria_barkley)) (value (list (name fb:en.jessica_lange \"Jessica Lange\"))) (type fb:film.actor)\nwhat countries have german as the official language?\tSouth Africa\t18.193\tformula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.german_language))) (value (list (name fb:en.denmark Denmark) (name fb:en.switzerland Switzerland) (name fb:en.germany Germany) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.second_polish_republic \"Second Polish Republic\") (name fb:en.west_germany \"West Germany\"))) (type (union fb:location.country))\nwhat countries have german as the official language?\tSecond Polish Republic\t18.193\tformula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.german_language))) (value (list (name fb:en.denmark Denmark) (name fb:en.switzerland Switzerland) (name fb:en.germany Germany) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.second_polish_republic \"Second Polish Republic\") (name fb:en.west_germany \"West Germany\"))) (type (union fb:location.country))\nwhat countries have german as the official language?\tWest Germany\t18.193\tformula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.german_language))) (value (list (name fb:en.denmark Denmark) (name fb:en.switzerland Switzerland) (name fb:en.germany Germany) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.second_polish_republic \"Second Polish Republic\") (name fb:en.west_germany \"West Germany\"))) (type (union fb:location.country))\nwhere did the taliban began?\tOperation Accius\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tFall of Kandahar\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tFirst Battle of Swat\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tFriendly fire incident at Sangin\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tBattle of Wana\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tBattle of Tarin Kowt\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tBattle of Afghanya\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tSiege of Lal Masjid\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tOperation Cobra's Anger\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhere did the taliban began?\tSiege of Kunduz\t5.426\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius \"Operation Accius\") (name fb:en.fall_of_kandahar \"Fall of Kandahar\") (name fb:en.battle_of_swat \"First Battle of Swat\") (name fb:en.battle_of_lashkagar \"Friendly fire incident at Sangin\") (name fb:en.battle_of_wana \"Battle of Wana\") (name fb:en.battle_of_tarin_kowt \"Battle of Tarin Kowt\") (name fb:m.0gj92h1 \"Battle of Afghanya\") (name fb:en.lal_masjid_siege \"Siege of Lal Masjid\") (name fb:en.operation_cobras_anger \"Operation Cobra's Anger\") (name fb:en.siege_of_kunduz \"Siege of Kunduz\"))) (type fb:military.military_conflict)\nwhat kind of government system did ancient egypt have?\tUnitary state\t14.143\tformula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat kind of government system did ancient egypt have?\tSemi-presidential system\t14.143\tformula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwho plays elena gilbert on vampire diaries?\tNina Dobrev\t4.405\tformula (fb:tv.tv_actor.starring_roles (and (fb:tv.regular_tv_appearance.character fb:en.elena_gilbert) (fb:tv.regular_tv_appearance.series fb:m.05sy2k_)))) (value (list (name fb:en.nina_dobrev \"Nina Dobrev\"))) (type fb:tv.tv_actor)\nwhat does the missouri river bisect?\tRiver Scene\t0.966\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.river)) (value (list (name fb:en.river_scene \"River Scene\"))) (type fb:visual_art.artwork)\nwhat nationality is taylor lautner jacob black?\tUnited States of America\t6.745\tformula (!fb:people.person.nationality fb:en.taylor_lautner)) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.country)\nwhat animal represents california?\tFrank Putnam Flint\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tJohn Franklin Miller\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tAbram Williams\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tDavid C. Broderick\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tHenry P. Haun\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tPierre Salinger\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tJohn S. Hager\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tRichard Nixon\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tJames D. Phelan\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat animal represents california?\tBarbara Boxer\t10.178\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint \"Frank Putnam Flint\") (name fb:en.john_franklin_miller_1831 \"John Franklin Miller\") (name fb:en.abram_p_williams \"Abram Williams\") (name fb:en.david_c_broderick \"David C. Broderick\") (name fb:en.henry_p_haun \"Henry P. Haun\") (name fb:en.pierre_salinger \"Pierre Salinger\") (name fb:en.john_s_hager \"John S. Hager\") (name fb:en.richard_nixon \"Richard Nixon\") (name fb:en.james_d_phelan \"James D. Phelan\") (name fb:en.barbara_boxer \"Barbara Boxer\"))) (type fb:government.politician)\nwhat company does nike own?\tNike Golf\t11.2\tformula (and (fb:type.object.type fb:business.business_operation) ((lambda x (fb:business.business_operation.competitive_space (fb:business.competitive_space_mediator.brand (var x)))) fb:m.0cnsqjb))) (value (list (name fb:m.0cnsqj1 \"Nike Golf\"))) (type (union fb:business.business_operation))\nwhat language do colombian people speak?\tSpanish Language\t10.91\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.colombian_people))) (value (list (name fb:en.spanish \"Spanish Language\"))) (type fb:language.human_language)\nwhat year did ray allen join the nba?\tMiami Heat\t8.989\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat \"Miami Heat\") (name fb:en.boston_celtics \"Boston Celtics\") (name fb:en.milwaukee_bucks \"Milwaukee Bucks\") (name fb:en.connecticut_huskies_mens_basketball \"Connecticut Huskies men's basketball\") (name fb:en.seattle_supersonics \"Seattle Supersonics\"))) (type fb:sports.sports_team)\nwhat year did ray allen join the nba?\tBoston Celtics\t8.989\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat \"Miami Heat\") (name fb:en.boston_celtics \"Boston Celtics\") (name fb:en.milwaukee_bucks \"Milwaukee Bucks\") (name fb:en.connecticut_huskies_mens_basketball \"Connecticut Huskies men's basketball\") (name fb:en.seattle_supersonics \"Seattle Supersonics\"))) (type fb:sports.sports_team)\nwhat year did ray allen join the nba?\tMilwaukee Bucks\t8.989\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat \"Miami Heat\") (name fb:en.boston_celtics \"Boston Celtics\") (name fb:en.milwaukee_bucks \"Milwaukee Bucks\") (name fb:en.connecticut_huskies_mens_basketball \"Connecticut Huskies men's basketball\") (name fb:en.seattle_supersonics \"Seattle Supersonics\"))) (type fb:sports.sports_team)\nwhat year did ray allen join the nba?\tConnecticut Huskies men's basketball\t8.989\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat \"Miami Heat\") (name fb:en.boston_celtics \"Boston Celtics\") (name fb:en.milwaukee_bucks \"Milwaukee Bucks\") (name fb:en.connecticut_huskies_mens_basketball \"Connecticut Huskies men's basketball\") (name fb:en.seattle_supersonics \"Seattle Supersonics\"))) (type fb:sports.sports_team)\nwhat year did ray allen join the nba?\tSeattle Supersonics\t8.989\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat \"Miami Heat\") (name fb:en.boston_celtics \"Boston Celtics\") (name fb:en.milwaukee_bucks \"Milwaukee Bucks\") (name fb:en.connecticut_huskies_mens_basketball \"Connecticut Huskies men's basketball\") (name fb:en.seattle_supersonics \"Seattle Supersonics\"))) (type fb:sports.sports_team)\nwhat is claire danes famous for?\tWSJ Topic Index\t8.922\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.claire_danes)) (value (list (name fb:en.wsj_topic_index \"WSJ Topic Index\") (name fb:en.people_celebrities \"People Celebrities\"))) (type fb:base.articleindices.resource_topic_index)\nwhat is claire danes famous for?\tPeople Celebrities\t8.922\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.claire_danes)) (value (list (name fb:en.wsj_topic_index \"WSJ Topic Index\") (name fb:en.people_celebrities \"People Celebrities\"))) (type fb:base.articleindices.resource_topic_index)\nwhat county is san antonio in?\tComal County\t16.178\tformula (!fb:location.hud_county_place.county fb:en.san_antonio)) (value (list (name fb:en.comal_county \"Comal County\"))) (type fb:location.us_county)\nwhat characters does matt stone do?\tKyle Broflovski\t13.61\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski \"Kyle Broflovski\") (name fb:en.kenny_mccormick \"Kenny McCormick\") (name fb:en.butters_stotch \"Butters Stotch\") (name fb:m.0h0z4gc \"Ichabod Jones/Carlos/Rom\") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern \"Jimbo Kern\") (name fb:en.tweek \"Tweek Tweak\"))) (type fb:tv.tv_character)\nwhat characters does matt stone do?\tKenny McCormick\t13.61\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski \"Kyle Broflovski\") (name fb:en.kenny_mccormick \"Kenny McCormick\") (name fb:en.butters_stotch \"Butters Stotch\") (name fb:m.0h0z4gc \"Ichabod Jones/Carlos/Rom\") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern \"Jimbo Kern\") (name fb:en.tweek \"Tweek Tweak\"))) (type fb:tv.tv_character)\nwhat characters does matt stone do?\tButters Stotch\t13.61\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski \"Kyle Broflovski\") (name fb:en.kenny_mccormick \"Kenny McCormick\") (name fb:en.butters_stotch \"Butters Stotch\") (name fb:m.0h0z4gc \"Ichabod Jones/Carlos/Rom\") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern \"Jimbo Kern\") (name fb:en.tweek \"Tweek Tweak\"))) (type fb:tv.tv_character)\nwhat characters does matt stone do?\tIchabod Jones/Carlos/Rom\t13.61\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski \"Kyle Broflovski\") (name fb:en.kenny_mccormick \"Kenny McCormick\") (name fb:en.butters_stotch \"Butters Stotch\") (name fb:m.0h0z4gc \"Ichabod Jones/Carlos/Rom\") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern \"Jimbo Kern\") (name fb:en.tweek \"Tweek Tweak\"))) (type fb:tv.tv_character)\nwhat characters does matt stone do?\tJimbo Kern\t13.61\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski \"Kyle Broflovski\") (name fb:en.kenny_mccormick \"Kenny McCormick\") (name fb:en.butters_stotch \"Butters Stotch\") (name fb:m.0h0z4gc \"Ichabod Jones/Carlos/Rom\") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern \"Jimbo Kern\") (name fb:en.tweek \"Tweek Tweak\"))) (type fb:tv.tv_character)\nwhat characters does matt stone do?\tTweek Tweak\t13.61\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski \"Kyle Broflovski\") (name fb:en.kenny_mccormick \"Kenny McCormick\") (name fb:en.butters_stotch \"Butters Stotch\") (name fb:m.0h0z4gc \"Ichabod Jones/Carlos/Rom\") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern \"Jimbo Kern\") (name fb:en.tweek \"Tweek Tweak\"))) (type fb:tv.tv_character)\nwhat timezone is the state of michigan and?\tPainted turtle\t17.141\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.brook_trout \"Brook trout\") (name fb:en.eastern_white_pine \"Pinus strobus\") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice \"Si quaeris peninsulam amoenam circumspice\") (name fb:m.0hzbd21 \"Apple Blossom\") (name fb:en.american_robin \"American Robin\") (name fb:en.american_mastodon \"American mastodon\"))) (type fb:location.symbol_of_administrative_division)\nwhat timezone is the state of michigan and?\tBrook trout\t17.141\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.brook_trout \"Brook trout\") (name fb:en.eastern_white_pine \"Pinus strobus\") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice \"Si quaeris peninsulam amoenam circumspice\") (name fb:m.0hzbd21 \"Apple Blossom\") (name fb:en.american_robin \"American Robin\") (name fb:en.american_mastodon \"American mastodon\"))) (type fb:location.symbol_of_administrative_division)\nwhat timezone is the state of michigan and?\tPinus strobus\t17.141\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.brook_trout \"Brook trout\") (name fb:en.eastern_white_pine \"Pinus strobus\") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice \"Si quaeris peninsulam amoenam circumspice\") (name fb:m.0hzbd21 \"Apple Blossom\") (name fb:en.american_robin \"American Robin\") (name fb:en.american_mastodon \"American mastodon\"))) (type fb:location.symbol_of_administrative_division)\nwhat timezone is the state of michigan and?\tSi quaeris peninsulam amoenam circumspice\t17.141\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.brook_trout \"Brook trout\") (name fb:en.eastern_white_pine \"Pinus strobus\") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice \"Si quaeris peninsulam amoenam circumspice\") (name fb:m.0hzbd21 \"Apple Blossom\") (name fb:en.american_robin \"American Robin\") (name fb:en.american_mastodon \"American mastodon\"))) (type fb:location.symbol_of_administrative_division)\nwhat timezone is the state of michigan and?\tApple Blossom\t17.141\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.brook_trout \"Brook trout\") (name fb:en.eastern_white_pine \"Pinus strobus\") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice \"Si quaeris peninsulam amoenam circumspice\") (name fb:m.0hzbd21 \"Apple Blossom\") (name fb:en.american_robin \"American Robin\") (name fb:en.american_mastodon \"American mastodon\"))) (type fb:location.symbol_of_administrative_division)\nwhat timezone is the state of michigan and?\tAmerican Robin\t17.141\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.brook_trout \"Brook trout\") (name fb:en.eastern_white_pine \"Pinus strobus\") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice \"Si quaeris peninsulam amoenam circumspice\") (name fb:m.0hzbd21 \"Apple Blossom\") (name fb:en.american_robin \"American Robin\") (name fb:en.american_mastodon \"American mastodon\"))) (type fb:location.symbol_of_administrative_division)\nwhat timezone is the state of michigan and?\tAmerican mastodon\t17.141\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle \"Painted turtle\") (name fb:en.brook_trout \"Brook trout\") (name fb:en.eastern_white_pine \"Pinus strobus\") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice \"Si quaeris peninsulam amoenam circumspice\") (name fb:m.0hzbd21 \"Apple Blossom\") (name fb:en.american_robin \"American Robin\") (name fb:en.american_mastodon \"American mastodon\"))) (type fb:location.symbol_of_administrative_division)\nwhat type of government did soviet union have?\tCommunist state\t15.16\tformula (fb:government.form_of_government.countries fb:en.soviet_union)) (value (list (name fb:en.communist_state \"Communist state\") (name fb:en.socialist_state \"Socialist state\") (name fb:en.soviet_democracy \"Soviet democracy\"))) (type fb:government.form_of_government)\nwhat type of government did soviet union have?\tSocialist state\t15.16\tformula (fb:government.form_of_government.countries fb:en.soviet_union)) (value (list (name fb:en.communist_state \"Communist state\") (name fb:en.socialist_state \"Socialist state\") (name fb:en.soviet_democracy \"Soviet democracy\"))) (type fb:government.form_of_government)\nwhat type of government did soviet union have?\tSoviet democracy\t15.16\tformula (fb:government.form_of_government.countries fb:en.soviet_union)) (value (list (name fb:en.communist_state \"Communist state\") (name fb:en.socialist_state \"Socialist state\") (name fb:en.soviet_democracy \"Soviet democracy\"))) (type fb:government.form_of_government)\nwhat languages are there in japan?\tEnglish Language\t11.859\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english \"English Language\") (name fb:en.japanese \"Japanese Language\") (name fb:en.korean_language \"Korean Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.ainu_language \"Ainu Language\"))) (type (union fb:language.human_language))\nwhat languages are there in japan?\tJapanese Language\t11.859\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english \"English Language\") (name fb:en.japanese \"Japanese Language\") (name fb:en.korean_language \"Korean Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.ainu_language \"Ainu Language\"))) (type (union fb:language.human_language))\nwhat languages are there in japan?\tKorean Language\t11.859\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english \"English Language\") (name fb:en.japanese \"Japanese Language\") (name fb:en.korean_language \"Korean Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.ainu_language \"Ainu Language\"))) (type (union fb:language.human_language))\nwhat languages are there in japan?\tEsperanto Language\t11.859\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english \"English Language\") (name fb:en.japanese \"Japanese Language\") (name fb:en.korean_language \"Korean Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.ainu_language \"Ainu Language\"))) (type (union fb:language.human_language))\nwhat languages are there in japan?\tAinu Language\t11.859\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english \"English Language\") (name fb:en.japanese \"Japanese Language\") (name fb:en.korean_language \"Korean Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.ainu_language \"Ainu Language\"))) (type (union fb:language.human_language))\nwho was saint paul the apostle?\tMr. White's Confession: A Novel\t6.579\tformula (!fb:book.book_subject.works fb:en.saint_paul)) (value (list (name fb:en.mr_whites_confession \"Mr. White's Confession: A Novel\"))) (type fb:book.written_work)\nwhat hemisphere is africa located in?\tWorld War I\t12.597\tformula (fb:user.pvonstackelberg.Futures_Studies.event.location fb:en.africa)) (value (list (name fb:en.world_war_i \"World War I\") (name fb:en.allied_forces_invade_german_togoland \"Allied forces invade German Togoland\") (name fb:en.timeline_of_computing \"Mechanical sequence control invented\"))) (type fb:user.pvonstackelberg.Futures_Studies.event)\nwhat hemisphere is africa located in?\tAllied forces invade German Togoland\t12.597\tformula (fb:user.pvonstackelberg.Futures_Studies.event.location fb:en.africa)) (value (list (name fb:en.world_war_i \"World War I\") (name fb:en.allied_forces_invade_german_togoland \"Allied forces invade German Togoland\") (name fb:en.timeline_of_computing \"Mechanical sequence control invented\"))) (type fb:user.pvonstackelberg.Futures_Studies.event)\nwhat hemisphere is africa located in?\tMechanical sequence control invented\t12.597\tformula (fb:user.pvonstackelberg.Futures_Studies.event.location fb:en.africa)) (value (list (name fb:en.world_war_i \"World War I\") (name fb:en.allied_forces_invade_german_togoland \"Allied forces invade German Togoland\") (name fb:en.timeline_of_computing \"Mechanical sequence control invented\"))) (type fb:user.pvonstackelberg.Futures_Studies.event)\nwhat famous people are from el salvador?\tEmbassy of El Salvador in Ottawa\t10.031\tformula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.el_salvador)) (value (list (name fb:en.embassy_of_el_salvador_in_ottawa \"Embassy of El Salvador in Ottawa\") (name fb:en.embassy_of_el_salvador_in_washington \"Embassy of El Salvador in Washington\"))) (type fb:user.skud.embassies_and_consulates.embassy)\nwhat famous people are from el salvador?\tEmbassy of El Salvador in Washington\t10.031\tformula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.el_salvador)) (value (list (name fb:en.embassy_of_el_salvador_in_ottawa \"Embassy of El Salvador in Ottawa\") (name fb:en.embassy_of_el_salvador_in_washington \"Embassy of El Salvador in Washington\"))) (type fb:user.skud.embassies_and_consulates.embassy)\nwhere did mary bell live?\tNewcastle upon Tyne\t3.864\tformula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:en.mary_bell))) (value (list (name fb:en.newcastle_upon_tyne \"Newcastle upon Tyne\"))) (type fb:location.location)\nwhat other movies has ryan gosling been in?\tHalf Nelson\t14.912\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson \"Half Nelson\") (name fb:m.047tsx3 \"The Notebook\") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer \"The Believer\") (name fb:en.lars_and_the_real_girl \"Lars and the Real Girl\") (name fb:m.0gg5qcw \"The Ides of March\") (name fb:m.0ddf2bm \"Crazy, Stupid, Love.\") (name fb:m.093d8j0 \"Blue Valentine\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has ryan gosling been in?\tThe Notebook\t14.912\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson \"Half Nelson\") (name fb:m.047tsx3 \"The Notebook\") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer \"The Believer\") (name fb:en.lars_and_the_real_girl \"Lars and the Real Girl\") (name fb:m.0gg5qcw \"The Ides of March\") (name fb:m.0ddf2bm \"Crazy, Stupid, Love.\") (name fb:m.093d8j0 \"Blue Valentine\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has ryan gosling been in?\tThe Believer\t14.912\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson \"Half Nelson\") (name fb:m.047tsx3 \"The Notebook\") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer \"The Believer\") (name fb:en.lars_and_the_real_girl \"Lars and the Real Girl\") (name fb:m.0gg5qcw \"The Ides of March\") (name fb:m.0ddf2bm \"Crazy, Stupid, Love.\") (name fb:m.093d8j0 \"Blue Valentine\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has ryan gosling been in?\tLars and the Real Girl\t14.912\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson \"Half Nelson\") (name fb:m.047tsx3 \"The Notebook\") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer \"The Believer\") (name fb:en.lars_and_the_real_girl \"Lars and the Real Girl\") (name fb:m.0gg5qcw \"The Ides of March\") (name fb:m.0ddf2bm \"Crazy, Stupid, Love.\") (name fb:m.093d8j0 \"Blue Valentine\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has ryan gosling been in?\tThe Ides of March\t14.912\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson \"Half Nelson\") (name fb:m.047tsx3 \"The Notebook\") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer \"The Believer\") (name fb:en.lars_and_the_real_girl \"Lars and the Real Girl\") (name fb:m.0gg5qcw \"The Ides of March\") (name fb:m.0ddf2bm \"Crazy, Stupid, Love.\") (name fb:m.093d8j0 \"Blue Valentine\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has ryan gosling been in?\tCrazy, Stupid, Love.\t14.912\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson \"Half Nelson\") (name fb:m.047tsx3 \"The Notebook\") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer \"The Believer\") (name fb:en.lars_and_the_real_girl \"Lars and the Real Girl\") (name fb:m.0gg5qcw \"The Ides of March\") (name fb:m.0ddf2bm \"Crazy, Stupid, Love.\") (name fb:m.093d8j0 \"Blue Valentine\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has ryan gosling been in?\tBlue Valentine\t14.912\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson \"Half Nelson\") (name fb:m.047tsx3 \"The Notebook\") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer \"The Believer\") (name fb:en.lars_and_the_real_girl \"Lars and the Real Girl\") (name fb:m.0gg5qcw \"The Ides of March\") (name fb:m.0ddf2bm \"Crazy, Stupid, Love.\") (name fb:m.093d8j0 \"Blue Valentine\"))) (type (union fb:award.award_nominated_work))\nwhat political party does julia gillard belong to?\tQueensland Labor Party\t17.901\tformula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.julia_gillard))) (value (list (name fb:en.queensland_labor_party \"Queensland Labor Party\") (name fb:en.australian_labor_party \"Australian Labor Party\"))) (type (union fb:government.political_party))\nwhat political party does julia gillard belong to?\tAustralian Labor Party\t17.901\tformula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.julia_gillard))) (value (list (name fb:en.queensland_labor_party \"Queensland Labor Party\") (name fb:en.australian_labor_party \"Australian Labor Party\"))) (type (union fb:government.political_party))\nwho did denise van outen married?\tLee Mead\t7.85\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.denise_van_outen)) (value (list (name fb:en.lee_mead \"Lee Mead\"))) (type fb:people.person)\nwhat are egyptian money called?\tEgyptian Armed Forces\t4.773\tformula (!fb:military.military_unit.armed_force fb:en.egyptian_army)) (value (list (name fb:m.0l8bt9k \"Egyptian Armed Forces\"))) (type fb:military.armed_force)\nwho is the president of costa rica in 2012?\tLaura Chinchilla\t12.523\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.costa_rica)) (value (list (name fb:en.laura_chinchilla_miranda \"Laura Chinchilla\"))) (type fb:government.politician)\nwhat form of government is the uk?\tCeltic Pharma\t8.384\tformula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma \"Celtic Pharma\") (name fb:en.imperial_innovations \"Imperial Innovations\") (name fb:en.clarus_ventures \"Clarus Ventures\") (name fb:en.mvm_life_science_partners \"MVM Life Science Partners\") (name fb:en.novartis_option_fund \"Novartis Option Fund\"))) (type fb:base.bioventurist.bv_venture_investor)\nwhat form of government is the uk?\tImperial Innovations\t8.384\tformula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma \"Celtic Pharma\") (name fb:en.imperial_innovations \"Imperial Innovations\") (name fb:en.clarus_ventures \"Clarus Ventures\") (name fb:en.mvm_life_science_partners \"MVM Life Science Partners\") (name fb:en.novartis_option_fund \"Novartis Option Fund\"))) (type fb:base.bioventurist.bv_venture_investor)\nwhat form of government is the uk?\tClarus Ventures\t8.384\tformula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma \"Celtic Pharma\") (name fb:en.imperial_innovations \"Imperial Innovations\") (name fb:en.clarus_ventures \"Clarus Ventures\") (name fb:en.mvm_life_science_partners \"MVM Life Science Partners\") (name fb:en.novartis_option_fund \"Novartis Option Fund\"))) (type fb:base.bioventurist.bv_venture_investor)\nwhat form of government is the uk?\tMVM Life Science Partners\t8.384\tformula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma \"Celtic Pharma\") (name fb:en.imperial_innovations \"Imperial Innovations\") (name fb:en.clarus_ventures \"Clarus Ventures\") (name fb:en.mvm_life_science_partners \"MVM Life Science Partners\") (name fb:en.novartis_option_fund \"Novartis Option Fund\"))) (type fb:base.bioventurist.bv_venture_investor)\nwhat form of government is the uk?\tNovartis Option Fund\t8.384\tformula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma \"Celtic Pharma\") (name fb:en.imperial_innovations \"Imperial Innovations\") (name fb:en.clarus_ventures \"Clarus Ventures\") (name fb:en.mvm_life_science_partners \"MVM Life Science Partners\") (name fb:en.novartis_option_fund \"Novartis Option Fund\"))) (type fb:base.bioventurist.bv_venture_investor)\nwhat college football team did john elway play for?\tDenver Broncos\t15.242\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.john_elway))) (value (list (name fb:en.denver_broncos \"Denver Broncos\") (name fb:en.stanford_cardinal_football \"Stanford Cardinal football\"))) (type fb:sports.sports_team)\nwhat college football team did john elway play for?\tStanford Cardinal football\t15.242\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.john_elway))) (value (list (name fb:en.denver_broncos \"Denver Broncos\") (name fb:en.stanford_cardinal_football \"Stanford Cardinal football\"))) (type fb:sports.sports_team)\nwho did nasri play for before arsenal?\tManchester City F.C.\t11.653\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.samir_nasri)) (value (list (name fb:en.manchester_city_fc \"Manchester City F.C.\") (name fb:en.arsenal_fc \"Arsenal F.C.\") (name fb:en.olympique_de_marseille \"Olympique de Marseille\") (name fb:en.france_national_football_team \"France national football team\"))) (type fb:soccer.football_team)\nwho did nasri play for before arsenal?\tArsenal F.C.\t11.653\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.samir_nasri)) (value (list (name fb:en.manchester_city_fc \"Manchester City F.C.\") (name fb:en.arsenal_fc \"Arsenal F.C.\") (name fb:en.olympique_de_marseille \"Olympique de Marseille\") (name fb:en.france_national_football_team \"France national football team\"))) (type fb:soccer.football_team)\nwho did nasri play for before arsenal?\tOlympique de Marseille\t11.653\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.samir_nasri)) (value (list (name fb:en.manchester_city_fc \"Manchester City F.C.\") (name fb:en.arsenal_fc \"Arsenal F.C.\") (name fb:en.olympique_de_marseille \"Olympique de Marseille\") (name fb:en.france_national_football_team \"France national football team\"))) (type fb:soccer.football_team)\nwho did nasri play for before arsenal?\tFrance national football team\t11.653\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.samir_nasri)) (value (list (name fb:en.manchester_city_fc \"Manchester City F.C.\") (name fb:en.arsenal_fc \"Arsenal F.C.\") (name fb:en.olympique_de_marseille \"Olympique de Marseille\") (name fb:en.france_national_football_team \"France national football team\"))) (type fb:soccer.football_team)\nwhat currency does the czech republic use now?\tCzech koruna\t19.839\tformula (!fb:location.country.currency_used fb:en.czech_republic)) (value (list (name fb:en.czech_koruna \"Czech koruna\"))) (type fb:finance.currency)\nwhat age did william penn get married?\tGulielma Maria Springett\t10.121\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.william_penn)) (value (list (name fb:m.0j6bdtg \"Gulielma Maria Springett\") (name fb:en.hannah_callowhill_penn \"Hannah Callowhill Penn\"))) (type fb:people.person)\nwhat age did william penn get married?\tHannah Callowhill Penn\t10.121\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.william_penn)) (value (list (name fb:m.0j6bdtg \"Gulielma Maria Springett\") (name fb:en.hannah_callowhill_penn \"Hannah Callowhill Penn\"))) (type fb:people.person)\nwhat was firefox programmed in?\tCascading Style Sheets\t11.66\tformula (!fb:computer.software.languages_used fb:en.mozilla_firefox)) (value (list (name fb:en.cplusplus C++) (name fb:en.cascading_style_sheets \"Cascading Style Sheets\") (name fb:en.javascript JavaScript) (name fb:en.xbl XBL) (name fb:en.xul XUL))) (type fb:computer.programming_language)\nwhat government does new zealand have?\tUnitary state\t14.412\tformula (!fb:location.country.form_of_government fb:en.new_zealand)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\"))) (type fb:government.form_of_government)\nwhat government does new zealand have?\tParliamentary system\t14.412\tformula (!fb:location.country.form_of_government fb:en.new_zealand)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\"))) (type fb:government.form_of_government)\nwhat government does new zealand have?\tConstitutional monarchy\t14.412\tformula (!fb:location.country.form_of_government fb:en.new_zealand)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\"))) (type fb:government.form_of_government)\nwhat has kristen stewart acted in?\tThe Thirteenth Year\t11.832\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year \"The Thirteenth Year\") (name fb:en.the_flintstones_in_viva_rock_vegas \"The Flintstones in Viva Rock Vegas\") (name fb:en.welcome_to_the_rileys \"Welcome to the Rileys\") (name fb:en.in_search_of_on_the_road_a_work_in_progress \"On the Road\") (name fb:en.the_messengers \"The Messengers\") (name fb:m.0n4n1y_ \"Snow White and the Huntsman 2\") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc \"The Twilight Saga: Breaking Dawn - Part 2\") (name fb:m.0g5qs2k \"Snow White and the Huntsman\") (name fb:m.075wx7_ Eclipse))) (type fb:film.film)\nwhat has kristen stewart acted in?\tThe Flintstones in Viva Rock Vegas\t11.832\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year \"The Thirteenth Year\") (name fb:en.the_flintstones_in_viva_rock_vegas \"The Flintstones in Viva Rock Vegas\") (name fb:en.welcome_to_the_rileys \"Welcome to the Rileys\") (name fb:en.in_search_of_on_the_road_a_work_in_progress \"On the Road\") (name fb:en.the_messengers \"The Messengers\") (name fb:m.0n4n1y_ \"Snow White and the Huntsman 2\") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc \"The Twilight Saga: Breaking Dawn - Part 2\") (name fb:m.0g5qs2k \"Snow White and the Huntsman\") (name fb:m.075wx7_ Eclipse))) (type fb:film.film)\nwhat has kristen stewart acted in?\tWelcome to the Rileys\t11.832\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year \"The Thirteenth Year\") (name fb:en.the_flintstones_in_viva_rock_vegas \"The Flintstones in Viva Rock Vegas\") (name fb:en.welcome_to_the_rileys \"Welcome to the Rileys\") (name fb:en.in_search_of_on_the_road_a_work_in_progress \"On the Road\") (name fb:en.the_messengers \"The Messengers\") (name fb:m.0n4n1y_ \"Snow White and the Huntsman 2\") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc \"The Twilight Saga: Breaking Dawn - Part 2\") (name fb:m.0g5qs2k \"Snow White and the Huntsman\") (name fb:m.075wx7_ Eclipse))) (type fb:film.film)\nwhat has kristen stewart acted in?\tOn the Road\t11.832\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year \"The Thirteenth Year\") (name fb:en.the_flintstones_in_viva_rock_vegas \"The Flintstones in Viva Rock Vegas\") (name fb:en.welcome_to_the_rileys \"Welcome to the Rileys\") (name fb:en.in_search_of_on_the_road_a_work_in_progress \"On the Road\") (name fb:en.the_messengers \"The Messengers\") (name fb:m.0n4n1y_ \"Snow White and the Huntsman 2\") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc \"The Twilight Saga: Breaking Dawn - Part 2\") (name fb:m.0g5qs2k \"Snow White and the Huntsman\") (name fb:m.075wx7_ Eclipse))) (type fb:film.film)\nwhat has kristen stewart acted in?\tThe Messengers\t11.832\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year \"The Thirteenth Year\") (name fb:en.the_flintstones_in_viva_rock_vegas \"The Flintstones in Viva Rock Vegas\") (name fb:en.welcome_to_the_rileys \"Welcome to the Rileys\") (name fb:en.in_search_of_on_the_road_a_work_in_progress \"On the Road\") (name fb:en.the_messengers \"The Messengers\") (name fb:m.0n4n1y_ \"Snow White and the Huntsman 2\") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc \"The Twilight Saga: Breaking Dawn - Part 2\") (name fb:m.0g5qs2k \"Snow White and the Huntsman\") (name fb:m.075wx7_ Eclipse))) (type fb:film.film)\nwhat has kristen stewart acted in?\tSnow White and the Huntsman 2\t11.832\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year \"The Thirteenth Year\") (name fb:en.the_flintstones_in_viva_rock_vegas \"The Flintstones in Viva Rock Vegas\") (name fb:en.welcome_to_the_rileys \"Welcome to the Rileys\") (name fb:en.in_search_of_on_the_road_a_work_in_progress \"On the Road\") (name fb:en.the_messengers \"The Messengers\") (name fb:m.0n4n1y_ \"Snow White and the Huntsman 2\") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc \"The Twilight Saga: Breaking Dawn - Part 2\") (name fb:m.0g5qs2k \"Snow White and the Huntsman\") (name fb:m.075wx7_ Eclipse))) (type fb:film.film)\nwhat has kristen stewart acted in?\tThe Twilight Saga: Breaking Dawn - Part 2\t11.832\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year \"The Thirteenth Year\") (name fb:en.the_flintstones_in_viva_rock_vegas \"The Flintstones in Viva Rock Vegas\") (name fb:en.welcome_to_the_rileys \"Welcome to the Rileys\") (name fb:en.in_search_of_on_the_road_a_work_in_progress \"On the Road\") (name fb:en.the_messengers \"The Messengers\") (name fb:m.0n4n1y_ \"Snow White and the Huntsman 2\") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc \"The Twilight Saga: Breaking Dawn - Part 2\") (name fb:m.0g5qs2k \"Snow White and the Huntsman\") (name fb:m.075wx7_ Eclipse))) (type fb:film.film)\nwhat has kristen stewart acted in?\tSnow White and the Huntsman\t11.832\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year \"The Thirteenth Year\") (name fb:en.the_flintstones_in_viva_rock_vegas \"The Flintstones in Viva Rock Vegas\") (name fb:en.welcome_to_the_rileys \"Welcome to the Rileys\") (name fb:en.in_search_of_on_the_road_a_work_in_progress \"On the Road\") (name fb:en.the_messengers \"The Messengers\") (name fb:m.0n4n1y_ \"Snow White and the Huntsman 2\") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc \"The Twilight Saga: Breaking Dawn - Part 2\") (name fb:m.0g5qs2k \"Snow White and the Huntsman\") (name fb:m.075wx7_ Eclipse))) (type fb:film.film)\nwhat kind of language does egypt speak?\tModern Standard Arabic\t16.424\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.egypt))) (value (list (name fb:en.literary_arabic \"Modern Standard Arabic\"))) (type (union fb:language.human_language))\nwho are the senators of hawaii 2012?\tBrian Schatz\t18.215\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.political_district.representatives fb:en.hawaii) (fb:government.government_position_held.from (date 2012 -1 -1))))) (value (list (name fb:en.brian_e_schatz \"Brian Schatz\"))) (type fb:government.politician)\nwhat form of government does north korea have?\tFamily dictatorship\t14.788\tformula (fb:government.form_of_government.countries fb:en.north_korea)) (value (list (name fb:en.family_dictatorship \"Family dictatorship\") (name fb:en.totalitarianism Totalitarianism) (name fb:en.single-party_state \"Single-party state\") (name fb:en.juche Juche))) (type fb:government.form_of_government)\nwhat form of government does north korea have?\tSingle-party state\t14.788\tformula (fb:government.form_of_government.countries fb:en.north_korea)) (value (list (name fb:en.family_dictatorship \"Family dictatorship\") (name fb:en.totalitarianism Totalitarianism) (name fb:en.single-party_state \"Single-party state\") (name fb:en.juche Juche))) (type fb:government.form_of_government)\nwhere did robert kardashian go to college?\tUniversity of Southern California\t11.36\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.robert_kardashian)))) (value (list (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.university_of_san_diego \"University of San Diego\") (name fb:en.university_of_san_diego_school_of_law \"University of San Diego School of Law\"))) (type fb:education.university)\nwhere did robert kardashian go to college?\tUniversity of San Diego\t11.36\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.robert_kardashian)))) (value (list (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.university_of_san_diego \"University of San Diego\") (name fb:en.university_of_san_diego_school_of_law \"University of San Diego School of Law\"))) (type fb:education.university)\nwhere did robert kardashian go to college?\tUniversity of San Diego School of Law\t11.36\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.robert_kardashian)))) (value (list (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.university_of_san_diego \"University of San Diego\") (name fb:en.university_of_san_diego_school_of_law \"University of San Diego School of Law\"))) (type fb:education.university)\nwhat happened at chernobyl?\tChernobyl disaster\t2.926\tformula (!fb:location.location.events fb:en.chernobyl)) (value (list (name fb:en.chernobyl_disaster \"Chernobyl disaster\"))) (type fb:time.event)\nwhat county is st james city fl in?\tCraven County\t12.964\tformula (!fb:location.hud_county_place.county fb:en.james_city)) (value (list (name fb:en.craven_county \"Craven County\"))) (type fb:location.us_county)\nafter how many years are the olympic games held?\t2006 Winter Olympics\t11.093\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:time.event.instance_of_recurring_event fb:en.winter_olympic_games))) (value (list (name fb:en.2006_winter_olympics \"2006 Winter Olympics\"))) (type (union fb:sports.sports_championship_event))\nwhat system of government does guyana have?\tUnitary state\t12.174\tformula (!fb:location.country.form_of_government fb:en.guyana)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat system of government does guyana have?\tSemi-presidential system\t12.174\tformula (!fb:location.country.form_of_government fb:en.guyana)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhen was the last time the ny knicks won a playoff game?\tNews magazine\t7.385\tformula (!fb:book.magazine.genre fb:en.time)) (value (list (name fb:en.newsmagazine \"News magazine\"))) (type fb:book.magazine_genre)\nwho is the president of the european union 2012?\tMário Soares\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tJerzy Buzek\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tKeith Taylor\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tChristian Engström\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tBas Eickhout\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tCaroline Lucas\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tCatherine Bearder\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tEmilie Turunen\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tAmelia Andersdotter\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwho is the president of the european union 2012?\tJana Bobošíková\t13.91\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares \"Mário Soares\") (name fb:en.jerzy_buzek \"Jerzy Buzek\") (name fb:en.keith_taylor \"Keith Taylor\") (name fb:en.christian_engstrom \"Christian Engström\") (name fb:en.bas_eickhout \"Bas Eickhout\") (name fb:en.caroline_lucas \"Caroline Lucas\") (name fb:en.catherine_bearder \"Catherine Bearder\") (name fb:en.emilie_turunen \"Emilie Turunen\") (name fb:en.amelia_andersdotter \"Amelia Andersdotter\") (name fb:en.jana_bobosikova \"Jana Bobošíková\"))) (type fb:government.politician)\nwhat sort of government does nigeria have?\tFederal republic\t12.03\tformula (!fb:location.country.form_of_government fb:en.nigeria)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\"))) (type fb:government.form_of_government)\nwhat sort of government does nigeria have?\tPresidential system\t12.03\tformula (!fb:location.country.form_of_government fb:en.nigeria)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\"))) (type fb:government.form_of_government)\nwhen the atlanta braves won the world series?\t1995 World Series\t14.795\tformula (fb:sports.sports_championship_event.champion fb:en.atlanta_braves)) (value (list (name fb:en.1995_world_series \"1995 World Series\"))) (type fb:sports.sports_championship_event)\nwhat is lamar odom doing now july 2012?\tLes Tres Riches Heures du duc de Berry juillet\t7.14\tformula (!fb:common.topic.image fb:en.july)) (value (list (name fb:m.02bftm8 \"Les TrÃ¨s Riches Heures du duc de Berry juillet\"))) (type fb:common.image)\nwhat kind of language do they speak in iran?\tPersian Language\t21.107\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.iran))) (value (list (name fb:en.persian_language \"Persian Language\"))) (type (union fb:language.human_language))\nwhat was the first language spoken in spain?\tSpanish Language\t19.08\tformula (!fb:location.country.official_language fb:en.spain)) (value (list (name fb:en.spanish \"Spanish Language\"))) (type fb:language.human_language)\nwhich hemingway book to read?\tA Moveable Feast\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA Moveable Feast (Scribner Classic)\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA moveable feast\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA Moveable Feast\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA Moveable Feast\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA Moveable Feast\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA Moveable Feast\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA Moveable Feast\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA Moveable Feast (Moveable Feast Srs)\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhich hemingway book to read?\tA Moveable Feast\t6.868\tformula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r \"A Moveable Feast\") (name fb:en.a_moveable_feast_scribner_classic \"A Moveable Feast (Scribner Classic)\") (name fb:m.04trgq3 \"A moveable feast\") (name fb:m.04v_b49 \"A Moveable Feast\") (name fb:m.04v_b1z \"A Moveable Feast\") (name fb:m.04v_b41 \"A Moveable Feast\") (name fb:m.04v_b38 \"A Moveable Feast\") (name fb:m.028yb72 \"A Moveable Feast\") (name fb:en.a_moveable_feast_moveable_feast_srs \"A Moveable Feast (Moveable Feast Srs)\") (name fb:m.04v_b4k \"A Moveable Feast\"))) (type fb:book.book_edition)\nwhat language do most people speak in afghanistan?\tFarsi, Eastern Language\t11.275\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.afghanistan))) (value (list (name fb:en.dari \"Farsi, Eastern Language\") (name fb:en.pashto_language \"Pashto language\"))) (type (union fb:language.human_language))\nwhat language do most people speak in afghanistan?\tPashto language\t11.275\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.afghanistan))) (value (list (name fb:en.dari \"Farsi, Eastern Language\") (name fb:en.pashto_language \"Pashto language\"))) (type (union fb:language.human_language))\nwho is the prime minister of jamaica west indies?\tInflation, World Development Indicators, World Bank\t5.57\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.cpi_inflation_rate (var x)))) fb:en.jamaica)) (value (list (name fb:g.124x8gy8f \"Inflation, World Development Indicators, World Bank\"))) (type fb:dataworld.information_source)\nwhen did juventus win the champions league?\t1996 UEFA Champions League Final\t13.111\tformula (fb:sports.sports_championship_event.champion fb:en.juventus_fc)) (value (list (name fb:en.1996_uefa_champions_league_final \"1996 UEFA Champions League Final\") (name fb:en.1985_european_cup_final \"1985 European Cup Final\"))) (type fb:sports.sports_championship_event)\nwhen did juventus win the champions league?\t1985 European Cup Final\t13.111\tformula (fb:sports.sports_championship_event.champion fb:en.juventus_fc)) (value (list (name fb:en.1996_uefa_champions_league_final \"1996 UEFA Champions League Final\") (name fb:en.1985_european_cup_final \"1985 European Cup Final\"))) (type fb:sports.sports_championship_event)\nwhen does school start for the university of oregon?\tRobert D. Clark Honors College\t17.779\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.educational_institution.subsidiary_or_constituent_schools fb:en.university_of_oregon))) (value (list (name fb:en.robert_d_clark_honors_college \"Robert D. Clark Honors College\") (name fb:en.charles_h_lundquist_college_of_business \"Charles H. Lundquist College of Business\") (name fb:en.university_of_oregon_school_of_law \"University of Oregon School of Law\"))) (type (union fb:education.educational_institution))\nwhen does school start for the university of oregon?\tCharles H. Lundquist College of Business\t17.779\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.educational_institution.subsidiary_or_constituent_schools fb:en.university_of_oregon))) (value (list (name fb:en.robert_d_clark_honors_college \"Robert D. Clark Honors College\") (name fb:en.charles_h_lundquist_college_of_business \"Charles H. Lundquist College of Business\") (name fb:en.university_of_oregon_school_of_law \"University of Oregon School of Law\"))) (type (union fb:education.educational_institution))\nwhen does school start for the university of oregon?\tUniversity of Oregon School of Law\t17.779\tformula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.educational_institution.subsidiary_or_constituent_schools fb:en.university_of_oregon))) (value (list (name fb:en.robert_d_clark_honors_college \"Robert D. Clark Honors College\") (name fb:en.charles_h_lundquist_college_of_business \"Charles H. Lundquist College of Business\") (name fb:en.university_of_oregon_school_of_law \"University of Oregon School of Law\"))) (type (union fb:education.educational_institution))\nwho is robin roberts father?\tLawrence E. Roberts\t14.226\tformula (!fb:people.person.parents fb:en.robin_roberts)) (value (list (name fb:m.0czc1yg \"Lawrence E. Roberts\") (name fb:m.0kcbtkw \"Lucimarian Tolliver\"))) (type fb:people.person)\nwho is robin roberts father?\tLucimarian Tolliver\t14.226\tformula (!fb:people.person.parents fb:en.robin_roberts)) (value (list (name fb:m.0czc1yg \"Lawrence E. Roberts\") (name fb:m.0kcbtkw \"Lucimarian Tolliver\"))) (type fb:people.person)\nwhere is french spoken most?\tFrench Language\t11.166\tformula (!fb:people.ethnicity.languages_spoken fb:en.french_people)) (value (list (name fb:en.french \"French Language\"))) (type fb:language.human_language)\nwhat team is reggie bush on 2011?\tMiami Dolphins\t17.62\tformula (!fb:american_football.football_historical_roster_position.team (and (!fb:american_football.football_player.former_teams fb:en.reggie_bush) (fb:american_football.football_historical_roster_position.from (date 2011 -1 -1))))) (value (list (name fb:en.miami_dolphins \"Miami Dolphins\"))) (type fb:american_football.football_team)\nwhat highschool did emily osment go to?\tFlintridge Preparatory School\t10.378\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.emily_osment)) (value (list (name fb:en.flintridge_preparatory_school \"Flintridge Preparatory School\"))) (type fb:education.educational_institution)\nwhat currency should i take to mexico?\tMexican peso\t24.262\tformula (!fb:location.country.currency_used fb:en.mexico)) (value (list (name fb:en.mexican_peso \"Mexican peso\"))) (type fb:finance.currency)\nwhere did troy aikman play football?\tWest Covina\t5.423\tformula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:en.troy_aikman))) (value (list (name fb:en.west_covina \"West Covina\"))) (type fb:location.location)\nwho played cletus hogg?\tJack Polick\t5.114\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.cletus_hogg)) (value (list (name fb:en.jack_polick \"Jack Polick\"))) (type fb:film.actor)\nwho won fa cup 1976?\tChelsea F.C.\t6.559\tformula (!fb:sports.sports_championship_event.champion fb:en.fa_cup_final_2007)) (value (list (name fb:en.chelsea_fc \"Chelsea F.C.\"))) (type fb:sports.sports_team)\nwho plays chuck bass in gossip girl?\tEd Westwick\t7.29\tformula (fb:tv.tv_actor.starring_roles (and (fb:tv.regular_tv_appearance.character fb:en.chuck_bass) (fb:tv.regular_tv_appearance.series fb:m.0gfzgl)))) (value (list (name fb:en.ed_westwick \"Ed Westwick\"))) (type fb:tv.tv_actor)\nwhat countries have territories in oceania?\tMarshall Islands\t12.969\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type (union fb:location.country))\nwhat countries have territories in oceania?\tNew Zealand\t12.969\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type (union fb:location.country))\nwhat countries have territories in oceania?\tPapua New Guinea\t12.969\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type (union fb:location.country))\nwhat countries have territories in oceania?\tFrench Polynesia\t12.969\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type (union fb:location.country))\nwhat countries have territories in oceania?\tAmerican Samoa\t12.969\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type (union fb:location.country))\nwhat county is st. louis park in?\tHennepin County\t12.55\tformula (!fb:location.hud_county_place.county fb:en.st_louis_park)) (value (list (name fb:en.hennepin_county \"Hennepin County\"))) (type fb:location.us_county)\nwhen does parliament sit in canberra?\tTerritory of New Guinea\t2.136\tformula (fb:location.country.capital fb:en.canberra)) (value (list (name fb:en.australia Australia) (name fb:en.territory_of_new_guinea \"Territory of New Guinea\") (name fb:en.territory_of_papua_and_new_guinea \"Territory of Papua and New Guinea\"))) (type fb:location.country)\nwhen does parliament sit in canberra?\tTerritory of Papua and New Guinea\t2.136\tformula (fb:location.country.capital fb:en.canberra)) (value (list (name fb:en.australia Australia) (name fb:en.territory_of_new_guinea \"Territory of New Guinea\") (name fb:en.territory_of_papua_and_new_guinea \"Territory of Papua and New Guinea\"))) (type fb:location.country)\nwhat language group does germany belong to?\tGerman Language\t19.469\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.germany))) (value (list (name fb:en.german_language \"German Language\"))) (type (union fb:language.human_language))\nwhat timezone is tucson arizona in right now?\tMountain Time Zone\t10.621\tformula (!fb:location.location.time_zones fb:en.arizona)) (value (list (name fb:en.mountain_time_zone \"Mountain Time Zone\") (name fb:en.utc-7 UTC−07:00))) (type fb:time.time_zone)\nwhen was lucy lawless born?\tMount Albert, New Zealand\t8.654\tformula (!fb:people.person.place_of_birth fb:en.lucy_lawless)) (value (list (name fb:en.mount_albert_new_zealand \"Mount Albert, New Zealand\"))) (type fb:location.location)\nwhich political party does barack obama represent?\tDemocratic Party\t13.831\tformula ((lambda x (!fb:government.political_party_tenure.party (!fb:government.politician.party (var x)))) fb:en.barack_obama)) (value (list (name fb:en.democrat_party \"Democratic Party\"))) (type fb:government.political_party)\nwhere is the empire of ghana?\tHo East\t6.557\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.political_district.representatives (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.ghana))) (value (list (name fb:en.komenda_edina_eguafo_abirem Komenda-Edina-Eguafo-Abirem) (name fb:en.ho_east \"Ho East\"))) (type fb:government.political_district)\nwhat kind of leukemia did jill clayburgh have?\tB-cell chronic lymphocytic leukemia\t7.484\tformula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.jill_clayburgh))) (value (list (name fb:en.leukemia Leukemia) (name fb:en.chronic_lymphocytic_leukemia \"B-cell chronic lymphocytic leukemia\"))) (type (union fb:people.cause_of_death))\nwhat is the name of the book hitler wrote in jail?\tRede an die Welt\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tMein Kampf\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tSpeech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tHitler et la France\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tHitlers Lagebesprechungen\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tReichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tDas junge Deutschland will Arbeit und Frieden\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tTable talk, 1941-1944\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tHitler: Speeches and Proclamations\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhat is the name of the book hitler wrote in jail?\tReden und Proklamationen, 1932-1945\t16.656\tformula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt \"Rede an die Welt\") (name fb:en.mein_kampf \"Mein Kampf\") (name fb:m.066zf3v \"Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936\") (name fb:en.hitler_et_la_france \"Hitler et la France\") (name fb:en.hitlers_lagebesprechungen \"Hitlers Lagebesprechungen\") (name fb:m.06flch2 \"Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933\") (name fb:en.junge_deutschland_will_arbeit_und_frieden \"Das junge Deutschland will Arbeit und Frieden\") (name fb:m.06df93_ \"Table talk, 1941-1944\") (name fb:en.hitler_speeches_and_proclamations \"Hitler: Speeches and Proclamations\") (name fb:en.reden_und_proklamationen_1932_1945 \"Reden und Proklamationen, 1932-1945\"))) (type fb:book.book)\nwhere was marilyn monroe found dead?\tWhite Plains\t6.258\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.marriage.location_of_ceremony (!fb:people.person.spouse_s (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.white_plains \"White Plains\") (name fb:en.los_angeles \"Los Angeles\") (name fb:en.san_francisco_city_hall \"San Francisco City Hall\"))) (type fb:location.location)\nwhere was marilyn monroe found dead?\tLos Angeles\t6.258\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.marriage.location_of_ceremony (!fb:people.person.spouse_s (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.white_plains \"White Plains\") (name fb:en.los_angeles \"Los Angeles\") (name fb:en.san_francisco_city_hall \"San Francisco City Hall\"))) (type fb:location.location)\nwhere was marilyn monroe found dead?\tSan Francisco City Hall\t6.258\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.marriage.location_of_ceremony (!fb:people.person.spouse_s (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.white_plains \"White Plains\") (name fb:en.los_angeles \"Los Angeles\") (name fb:en.san_francisco_city_hall \"San Francisco City Hall\"))) (type fb:location.location)\nwhat language is spoken in greek?\tGreek Language\t15.309\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.greek_cypriots))) (value (list (name fb:en.greek_language \"Greek Language\") (name fb:en.cypriot_greek \"Cypriot Greek\") (name fb:en.dimotiki \"Demotic Greek\"))) (type fb:language.human_language)\nwhat language is spoken in greek?\tCypriot Greek\t15.309\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.greek_cypriots))) (value (list (name fb:en.greek_language \"Greek Language\") (name fb:en.cypriot_greek \"Cypriot Greek\") (name fb:en.dimotiki \"Demotic Greek\"))) (type fb:language.human_language)\nwhat language is spoken in greek?\tDemotic Greek\t15.309\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.greek_cypriots))) (value (list (name fb:en.greek_language \"Greek Language\") (name fb:en.cypriot_greek \"Cypriot Greek\") (name fb:en.dimotiki \"Demotic Greek\"))) (type fb:language.human_language)\nwhat team did monta ellis get traded to?\tMilwaukee Bucks\t20.671\tformula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.monta_ellis)) (value (list (name fb:en.milwaukee_bucks \"Milwaukee Bucks\"))) (type fb:basketball.basketball_team)\nwho plays stanley hudson?\tLeslie David Baker\t5.224\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.stanley_hudson)) (value (list (name fb:en.leslie_david_baker \"Leslie David Baker\"))) (type fb:tv.tv_actor)\nwhat record label is kelly clarkson signed with?\tRCA Records\t13.441\tformula (and (fb:type.object.type fb:music.record_label) (!fb:music.artist.label fb:en.kelly_clarkson))) (value (list (name fb:en.rca_records \"RCA Records\") (name fb:en.sony_bmg_music_entertainment \"Sony BMG Music Entertainment\") (name fb:en.sony_music_entertainment \"Sony Music Entertainment\"))) (type (union fb:music.record_label))\nwhat record label is kelly clarkson signed with?\tSony BMG Music Entertainment\t13.441\tformula (and (fb:type.object.type fb:music.record_label) (!fb:music.artist.label fb:en.kelly_clarkson))) (value (list (name fb:en.rca_records \"RCA Records\") (name fb:en.sony_bmg_music_entertainment \"Sony BMG Music Entertainment\") (name fb:en.sony_music_entertainment \"Sony Music Entertainment\"))) (type (union fb:music.record_label))\nwhat record label is kelly clarkson signed with?\tSony Music Entertainment\t13.441\tformula (and (fb:type.object.type fb:music.record_label) (!fb:music.artist.label fb:en.kelly_clarkson))) (value (list (name fb:en.rca_records \"RCA Records\") (name fb:en.sony_bmg_music_entertainment \"Sony BMG Music Entertainment\") (name fb:en.sony_music_entertainment \"Sony Music Entertainment\"))) (type (union fb:music.record_label))\nwhat currency should you take to vietnam?\tVietnamese dong\t21.694\tformula (!fb:location.country.currency_used fb:en.vietnam)) (value (list (name fb:en.vietnamese_ng \"Vietnamese dong\"))) (type fb:finance.currency)\nwho did roger federer married?\tMirka Federer\t11.206\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.roger_federer)) (value (list (name fb:en.miroslava_vavrinec \"Mirka Federer\"))) (type fb:people.person)\nwhat kind of money do i need in costa rica?\tInternet users as percentage of population, World Development Indicators, World Bank\t13.016\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.costa_rica)) (value (list (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\") (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nwhat kind of money do i need in costa rica?\tInternet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\t13.016\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.costa_rica)) (value (list (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\") (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nwhat caused the embargo against cuba?\tFidel Castro\t8.934\tformula ((lambda x (fb:military.military_commander.military_commands (fb:military.military_command.military_combatant (var x)))) fb:en.cuba)) (value (list (name fb:en.fidel_castro \"Fidel Castro\") (name fb:en.che_guevara \"Che Guevara\") (name fb:en.raul_castro \"Raúl Castro\"))) (type fb:military.military_commander)\nwhat caused the embargo against cuba?\tChe Guevara\t8.934\tformula ((lambda x (fb:military.military_commander.military_commands (fb:military.military_command.military_combatant (var x)))) fb:en.cuba)) (value (list (name fb:en.fidel_castro \"Fidel Castro\") (name fb:en.che_guevara \"Che Guevara\") (name fb:en.raul_castro \"Raúl Castro\"))) (type fb:military.military_commander)\nwhat caused the embargo against cuba?\tRaúl Castro\t8.934\tformula ((lambda x (fb:military.military_commander.military_commands (fb:military.military_command.military_combatant (var x)))) fb:en.cuba)) (value (list (name fb:en.fidel_castro \"Fidel Castro\") (name fb:en.che_guevara \"Che Guevara\") (name fb:en.raul_castro \"Raúl Castro\"))) (type fb:military.military_commander)\nwhat is the name of the capital of belgium?\tCity of Brussels\t22.109\tformula (!fb:location.country.capital fb:en.belgium)) (value (list (name fb:en.city_of_brussels \"City of Brussels\"))) (type fb:location.citytown)\nwhat kind of government does japan have now?\tUnitary state\t13.19\tformula (!fb:location.country.form_of_government fb:en.japan)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\"))) (type fb:government.form_of_government)\nwhat kind of government does japan have now?\tParliamentary system\t13.19\tformula (!fb:location.country.form_of_government fb:en.japan)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\"))) (type fb:government.form_of_government)\nwhat kind of government does japan have now?\tConstitutional monarchy\t13.19\tformula (!fb:location.country.form_of_government fb:en.japan)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\"))) (type fb:government.form_of_government)\nwhat pieces of music did claude debussy compose?\tClassical music\t12.022\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat pieces of music did claude debussy compose?\tArt song\t12.022\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat pieces of music did claude debussy compose?\t20th-century classical music\t12.022\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat pieces of music did claude debussy compose?\tIncidental music\t12.022\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwhat pieces of music did claude debussy compose?\tFrench opera\t12.022\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.art_song \"Art song\") (name fb:en.20th_century_classical_music \"20th-century classical music\") (name fb:m.021dvj Ballet) (name fb:en.incidental_music \"Incidental music\") (name fb:en.french_opera \"French opera\"))) (type (union fb:music.genre))\nwho was selena gomez in barney and friends?\tJeremy Sumpter\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tSamantha Droke\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tVanessa Hudgens\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tSara Paxton\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tDavid Henrie\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tJustin Bieber\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tDylan Sprouse\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tTaylor Swift\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tCole Sprouse\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho was selena gomez in barney and friends?\tDemi Lovato\t9.062\tformula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter \"Jeremy Sumpter\") (name fb:en.samantha_droke \"Samantha Droke\") (name fb:en.vanessa_anne_hudgens \"Vanessa Hudgens\") (name fb:en.sara_paxton \"Sara Paxton\") (name fb:en.david_henrie \"David Henrie\") (name fb:en.justin_bieber \"Justin Bieber\") (name fb:m.0b3x4c5 \"Dylan Sprouse\") (name fb:en.taylor_swift \"Taylor Swift\") (name fb:m.0b3x4c3 \"Cole Sprouse\") (name fb:en.demi_lovato \"Demi Lovato\"))) (type fb:celebrities.celebrity)\nwho plays caesar flickerman in the hunger games?\tStanley Tucci\t9.396\tformula (fb:film.actor.film (and (fb:film.performance.character fb:m.0gwc3bn) (fb:film.performance.film fb:m.0gkz15s)))) (value (list (name fb:en.stanley_tucci \"Stanley Tucci\"))) (type fb:film.actor)\nwhere did the gettysburg address?\t300 N Washington Street Box 2458\t5.407\tformula ((lambda x (!fb:location.mailing_address.street_address (!fb:organization.organization.headquarters (var x)))) fb:en.gettysburg_college)) (value (list (string \"300 N Washington Street Box 2458\") (string \"300 North Washington Street\"))) (type fb:type.text)\nwhere did the gettysburg address?\t300 North Washington Street\t5.407\tformula ((lambda x (!fb:location.mailing_address.street_address (!fb:organization.organization.headquarters (var x)))) fb:en.gettysburg_college)) (value (list (string \"300 N Washington Street Box 2458\") (string \"300 North Washington Street\"))) (type fb:type.text)\nwho was tupac signed to?\tInterscope Records\t9.567\tformula (fb:music.record_label.artist fb:en.tupac_shakur)) (value (list (name fb:en.interscope_records \"Interscope Records\") (name fb:en.death_row_records \"Death Row Records\") (name fb:en.amaru_entertainment \"Amaru Entertainment\"))) (type fb:music.record_label)\nwho was tupac signed to?\tDeath Row Records\t9.567\tformula (fb:music.record_label.artist fb:en.tupac_shakur)) (value (list (name fb:en.interscope_records \"Interscope Records\") (name fb:en.death_row_records \"Death Row Records\") (name fb:en.amaru_entertainment \"Amaru Entertainment\"))) (type fb:music.record_label)\nwho was tupac signed to?\tAmaru Entertainment\t9.567\tformula (fb:music.record_label.artist fb:en.tupac_shakur)) (value (list (name fb:en.interscope_records \"Interscope Records\") (name fb:en.death_row_records \"Death Row Records\") (name fb:en.amaru_entertainment \"Amaru Entertainment\"))) (type fb:music.record_label)\nwhat kind of tennis racquet does serena williams use?\tWomen's singles\t8.826\tformula ((lambda x (!fb:tennis.tennis_tournament_championship.event_type (!fb:tennis.tennis_tournament_champion.tennis_titles (var x)))) fb:en.serena_williams)) (value (list (name fb:en.womens_singles \"Women's singles\") (name fb:en.womens_doubles \"Women's doubles\") (name fb:m.04hdtln \"Mixed doubles\"))) (type fb:tennis.tennis_match_type)\nwhat kind of tennis racquet does serena williams use?\tWomen's doubles\t8.826\tformula ((lambda x (!fb:tennis.tennis_tournament_championship.event_type (!fb:tennis.tennis_tournament_champion.tennis_titles (var x)))) fb:en.serena_williams)) (value (list (name fb:en.womens_singles \"Women's singles\") (name fb:en.womens_doubles \"Women's doubles\") (name fb:m.04hdtln \"Mixed doubles\"))) (type fb:tennis.tennis_match_type)\nwhat kind of tennis racquet does serena williams use?\tMixed doubles\t8.826\tformula ((lambda x (!fb:tennis.tennis_tournament_championship.event_type (!fb:tennis.tennis_tournament_champion.tennis_titles (var x)))) fb:en.serena_williams)) (value (list (name fb:en.womens_singles \"Women's singles\") (name fb:en.womens_doubles \"Women's doubles\") (name fb:m.04hdtln \"Mixed doubles\"))) (type fb:tennis.tennis_match_type)\nwhat language does colombia?\tSpanish Language\t13.55\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.colombia))) (value (list (name fb:en.spanish \"Spanish Language\"))) (type (union fb:language.human_language))\nwho was president in 1988 in the united states?\tThomas Jefferson\t15.152\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:user.exooo.default_domain.head_of_state.president (var x)))) fb:en.united_states_of_america)) (value (list (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.john_adams \"John Adams\"))) (type fb:people.person)\nwho was president in 1988 in the united states?\tJohn Adams\t15.152\tformula ((lambda x (!fb:business.employment_tenure.person (!fb:user.exooo.default_domain.head_of_state.president (var x)))) fb:en.united_states_of_america)) (value (list (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.john_adams \"John Adams\"))) (type fb:people.person)\nwho owns google 2012?\tGoogle Trends\t10.796\tformula (fb:internet.website.owner_new (and (fb:internet.website_ownership.owner fb:en.google) (fb:internet.website_ownership.from (date 2012 -1 -1))))) (value (list (name fb:en.meebo Meebo) (name fb:en.google_trends \"Google Trends\") (name fb:en.virustotal_com VirusTotal) (name fb:en.froogle \"Google Shopping\"))) (type fb:internet.website)\nwho owns google 2012?\tGoogle Shopping\t10.796\tformula (fb:internet.website.owner_new (and (fb:internet.website_ownership.owner fb:en.google) (fb:internet.website_ownership.from (date 2012 -1 -1))))) (value (list (name fb:en.meebo Meebo) (name fb:en.google_trends \"Google Trends\") (name fb:en.virustotal_com VirusTotal) (name fb:en.froogle \"Google Shopping\"))) (type fb:internet.website)\nwhat drink did john pemberton create?\tThe Coca-Cola Company\t8.001\tformula (fb:organization.organization.founders fb:en.john_pemberton)) (value (list (name fb:en.the_coca-cola_company \"The Coca-Cola Company\"))) (type fb:organization.organization)\nwhat position did stanley matthews play?\tAssociate Justice of the Supreme Court of the United States\t10.218\tformula ((lambda x (!fb:people.appointment.appointed_role (!fb:people.appointee.position (var x)))) fb:en.thomas_stanley_matthews)) (value (list (name fb:en.associate_justice_of_the_supreme_court_of_the_united_states \"Associate Justice of the Supreme Court of the United States\"))) (type fb:people.appointed_role)\nwhat type of government does brazil have 2011?\tFederal republic\t13.043\tformula (fb:government.form_of_government.countries fb:en.brazil)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government does brazil have 2011?\tPresidential system\t13.043\tformula (fb:government.form_of_government.countries fb:en.brazil)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government does brazil have 2011?\tConstitutional republic\t13.043\tformula (fb:government.form_of_government.countries fb:en.brazil)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwho makes the voice of stewie griffin?\tSeth MacFarlane\t7.549\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_character.appeared_in_tv_program (var x)))) fb:en.stewie_griffin)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\"))) (type fb:tv.tv_actor)\nwho is angelina jolie mom and dad?\tWSJ Topic Index\t11.629\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.angelina_jolie)) (value (list (name fb:en.wsj_topic_index \"WSJ Topic Index\") (name fb:en.people_celebrities \"People Celebrities\"))) (type fb:base.articleindices.resource_topic_index)\nwho is angelina jolie mom and dad?\tPeople Celebrities\t11.629\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.angelina_jolie)) (value (list (name fb:en.wsj_topic_index \"WSJ Topic Index\") (name fb:en.people_celebrities \"People Celebrities\"))) (type fb:base.articleindices.resource_topic_index)\nwho is the governor of indiana 2009?\tGreg Zoeller\t16.966\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.indiana) (fb:government.government_position_held.from (date 2009 -1 -1))))) (value (list (name fb:en.greg_zoeller \"Greg Zoeller\"))) (type fb:government.politician)\nwho brad pitt has dated?\tJane Etta Pitt\t9.101\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.brad_pitt))) (value (list (name fb:en.jane_etta \"Jane Etta Pitt\") (name fb:en.william_alvin_pitt \"William Alvin Pitt\"))) (type fb:people.person)\nwho brad pitt has dated?\tWilliam Alvin Pitt\t9.101\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.brad_pitt))) (value (list (name fb:en.jane_etta \"Jane Etta Pitt\") (name fb:en.william_alvin_pitt \"William Alvin Pitt\"))) (type fb:people.person)\nwhat party does barack obama belong to?\tDemocratic Party\t16.674\tformula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.barack_obama))) (value (list (name fb:en.democrat_party \"Democratic Party\"))) (type (union fb:government.political_party))\nwho has stephen ireland played for?\tManchester City F.C.\t13.441\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.stephen_ireland)) (value (list (name fb:en.manchester_city_fc \"Manchester City F.C.\") (name fb:en.aston_villa_fc \"Aston Villa F.C.\") (name fb:en.newcastle_united_fc \"Newcastle United F.C.\"))) (type fb:soccer.football_team)\nwho has stephen ireland played for?\tAston Villa F.C.\t13.441\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.stephen_ireland)) (value (list (name fb:en.manchester_city_fc \"Manchester City F.C.\") (name fb:en.aston_villa_fc \"Aston Villa F.C.\") (name fb:en.newcastle_united_fc \"Newcastle United F.C.\"))) (type fb:soccer.football_team)\nwho has stephen ireland played for?\tNewcastle United F.C.\t13.441\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.stephen_ireland)) (value (list (name fb:en.manchester_city_fc \"Manchester City F.C.\") (name fb:en.aston_villa_fc \"Aston Villa F.C.\") (name fb:en.newcastle_united_fc \"Newcastle United F.C.\"))) (type fb:soccer.football_team)\nwhat do people in france like to do for fun?\tGovernment of France\t16.75\tformula (fb:government.government.government_for fb:en.france)) (value (list (name fb:en.government_of_france \"Government of France\"))) (type fb:government.government)\nwhere did john mayer go to college?\tBerklee College of Music\t13.084\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_mayer)))) (value (list (name fb:en.berklee_college_of_music \"Berklee College of Music\"))) (type fb:education.university)\nwhat celebrities has brody jenner dated?\tLauren Katherine Conrad\t13.944\tformula (and (fb:type.object.type fb:celebrities.celebrity) ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.brody_jenner))) (value (list (name fb:en.lauren_conrad \"Lauren Katherine Conrad\") (name fb:en.nicole_richie \"Nicole Richie\") (name fb:en.jayde_nicole \"Jayde Nicole\"))) (type (union fb:celebrities.celebrity))\nwhat celebrities has brody jenner dated?\tNicole Richie\t13.944\tformula (and (fb:type.object.type fb:celebrities.celebrity) ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.brody_jenner))) (value (list (name fb:en.lauren_conrad \"Lauren Katherine Conrad\") (name fb:en.nicole_richie \"Nicole Richie\") (name fb:en.jayde_nicole \"Jayde Nicole\"))) (type (union fb:celebrities.celebrity))\nwhat celebrities has brody jenner dated?\tJayde Nicole\t13.944\tformula (and (fb:type.object.type fb:celebrities.celebrity) ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.brody_jenner))) (value (list (name fb:en.lauren_conrad \"Lauren Katherine Conrad\") (name fb:en.nicole_richie \"Nicole Richie\") (name fb:en.jayde_nicole \"Jayde Nicole\"))) (type (union fb:celebrities.celebrity))\nwho are china's neighbors?\tSierra Leone\t6.623\tformula ((lambda x (!fb:location.imports_and_exports.exported_to (!fb:location.statistical_region.places_exported_to (var x)))) fb:en.china)) (value (list (name fb:en.dubai Dubai) (name fb:en.laos Laos) (name fb:en.djibouti Djibouti) (name fb:en.madagascar Madagascar) (name fb:en.angola Angola) (name fb:en.tuvalu Tuvalu) (name fb:en.algeria Algeria) (name fb:en.tanzania Tanzania) (name fb:en.sierra_leone \"Sierra Leone\") (name fb:en.uzbekistan_russia Uzbekistan))) (type fb:location.statistical_region)\nwho owns volkswagen car company?\tChicago Cubs\t2.716\tformula (fb:sports.professional_sports_team.owner_s fb:en.tribune_company)) (value (list (name fb:en.chicago_cubs \"Chicago Cubs\"))) (type fb:sports.professional_sports_team)\nwhat did steve mcnair died from?\tBallistic trauma\t18.842\tformula (fb:people.cause_of_death.people fb:en.steve_mcnair)) (value (list (name fb:en.gunshot_injury \"Ballistic trauma\"))) (type fb:people.cause_of_death)\nwho is the newly elected governor of california?\tJean Fuller\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tMervyn M. Dymally\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tBob Margett\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tDarrell Steinberg\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tMark Leno\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tJames Rolph\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tAlex Padilla\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tPete Wilson\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tJohn E. Bryson\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho is the newly elected governor of california?\tFrederick N. Howser\t23.138\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller \"Jean Fuller\") (name fb:en.mervyn_m_dymally \"Mervyn M. Dymally\") (name fb:en.bob_margett \"Bob Margett\") (name fb:en.darrell_steinberg \"Darrell Steinberg\") (name fb:en.mark_leno \"Mark Leno\") (name fb:en.james_rolph \"James Rolph\") (name fb:en.alex_padilla \"Alex Padilla\") (name fb:en.pete_wilson \"Pete Wilson\") (name fb:en.john_bryson \"John E. Bryson\") (name fb:en.frederick_n_howser \"Frederick N. Howser\"))) (type fb:government.politician)\nwho plays roxanne in ghost rider?\tRita Joanne Simons\t4.234\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.roxy_mitchell)) (value (list (name fb:en.rita_simons \"Rita Joanne Simons\"))) (type fb:tv.tv_actor)\nwhat kind of currency does the dominican republic have?\tDominican peso\t14.098\tformula (!fb:location.country.currency_used fb:en.dominican_republic)) (value (list (name fb:en.dominican_peso \"Dominican peso\"))) (type fb:finance.currency)\nwhat sport is popular in italy?\tWater polo\t9.119\tformula ((lambda x (!fb:olympics.olympic_athlete_affiliation.sport (!fb:olympics.olympic_participating_country.athletes (var x)))) fb:en.italy)) (value (list (name fb:en.water_polo \"Water polo\") (name fb:en.luge Luge) (name fb:en.sport_rowing Rowing) (name fb:en.table_tennis \"Table tennis\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.bobsleigh Bobsleigh) (name fb:en.alpine_skiing \"Alpine skiing\") (name fb:en.swimming Swimming) (name fb:en.volleyball Volleyball) (name fb:en.archery Archery))) (type fb:olympics.olympic_sport)\nwhat sport is popular in italy?\tTable tennis\t9.119\tformula ((lambda x (!fb:olympics.olympic_athlete_affiliation.sport (!fb:olympics.olympic_participating_country.athletes (var x)))) fb:en.italy)) (value (list (name fb:en.water_polo \"Water polo\") (name fb:en.luge Luge) (name fb:en.sport_rowing Rowing) (name fb:en.table_tennis \"Table tennis\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.bobsleigh Bobsleigh) (name fb:en.alpine_skiing \"Alpine skiing\") (name fb:en.swimming Swimming) (name fb:en.volleyball Volleyball) (name fb:en.archery Archery))) (type fb:olympics.olympic_sport)\nwhat sport is popular in italy?\tShooting sport\t9.119\tformula ((lambda x (!fb:olympics.olympic_athlete_affiliation.sport (!fb:olympics.olympic_participating_country.athletes (var x)))) fb:en.italy)) (value (list (name fb:en.water_polo \"Water polo\") (name fb:en.luge Luge) (name fb:en.sport_rowing Rowing) (name fb:en.table_tennis \"Table tennis\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.bobsleigh Bobsleigh) (name fb:en.alpine_skiing \"Alpine skiing\") (name fb:en.swimming Swimming) (name fb:en.volleyball Volleyball) (name fb:en.archery Archery))) (type fb:olympics.olympic_sport)\nwhat sport is popular in italy?\tAlpine skiing\t9.119\tformula ((lambda x (!fb:olympics.olympic_athlete_affiliation.sport (!fb:olympics.olympic_participating_country.athletes (var x)))) fb:en.italy)) (value (list (name fb:en.water_polo \"Water polo\") (name fb:en.luge Luge) (name fb:en.sport_rowing Rowing) (name fb:en.table_tennis \"Table tennis\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.bobsleigh Bobsleigh) (name fb:en.alpine_skiing \"Alpine skiing\") (name fb:en.swimming Swimming) (name fb:en.volleyball Volleyball) (name fb:en.archery Archery))) (type fb:olympics.olympic_sport)\nwhat was jesse owens education?\tEast Technical High School\t12.525\tformula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.jesse_owens)) (value (list (name fb:en.east_technical_high_school \"East Technical High School\") (name fb:en.ohio_state_university \"Ohio State University\"))) (type fb:education.educational_institution)\nwhat was jesse owens education?\tOhio State University\t12.525\tformula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.jesse_owens)) (value (list (name fb:en.east_technical_high_school \"East Technical High School\") (name fb:en.ohio_state_university \"Ohio State University\"))) (type fb:education.educational_institution)\nwhere does carlos santana live?\tSan Francisco\t6.921\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.carlos_santana))) (value (list (name fb:en.tijuana Tijuana) (name fb:en.jalisco Jalisco) (name fb:en.san_francisco \"San Francisco\"))) (type fb:location.location)\nwhat is the new movie john carter about?\tThe Doll Squad\t10.202\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd \"The Doll Squad\") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 \"Random Hearts\") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty \"James Michener's Dynasty\") (name fb:m.0cr_j6w \"The Dells: Live from NYC\") (name fb:en.the_hoax_2007 \"The Hoax\") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder \"Love Can Be Murder\"))) (type fb:film.film)\nwhat is the new movie john carter about?\tRandom Hearts\t10.202\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd \"The Doll Squad\") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 \"Random Hearts\") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty \"James Michener's Dynasty\") (name fb:m.0cr_j6w \"The Dells: Live from NYC\") (name fb:en.the_hoax_2007 \"The Hoax\") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder \"Love Can Be Murder\"))) (type fb:film.film)\nwhat is the new movie john carter about?\tJames Michener's Dynasty\t10.202\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd \"The Doll Squad\") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 \"Random Hearts\") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty \"James Michener's Dynasty\") (name fb:m.0cr_j6w \"The Dells: Live from NYC\") (name fb:en.the_hoax_2007 \"The Hoax\") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder \"Love Can Be Murder\"))) (type fb:film.film)\nwhat is the new movie john carter about?\tThe Dells: Live from NYC\t10.202\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd \"The Doll Squad\") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 \"Random Hearts\") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty \"James Michener's Dynasty\") (name fb:m.0cr_j6w \"The Dells: Live from NYC\") (name fb:en.the_hoax_2007 \"The Hoax\") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder \"Love Can Be Murder\"))) (type fb:film.film)\nwhat is the new movie john carter about?\tThe Hoax\t10.202\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd \"The Doll Squad\") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 \"Random Hearts\") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty \"James Michener's Dynasty\") (name fb:m.0cr_j6w \"The Dells: Live from NYC\") (name fb:en.the_hoax_2007 \"The Hoax\") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder \"Love Can Be Murder\"))) (type fb:film.film)\nwhat is the new movie john carter about?\tLove Can Be Murder\t10.202\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd \"The Doll Squad\") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 \"Random Hearts\") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty \"James Michener's Dynasty\") (name fb:m.0cr_j6w \"The Dells: Live from NYC\") (name fb:en.the_hoax_2007 \"The Hoax\") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder \"Love Can Be Murder\"))) (type fb:film.film)\nwhat county is houston tx in?\tMontgomery County\t10.966\tformula (!fb:location.hud_county_place.county fb:en.houston)) (value (list (name fb:en.montgomery_county_texas \"Montgomery County\"))) (type fb:location.us_county)\nwhere do the seattle seahawks play?\tCenturyLink Field\t9.547\tformula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.seattle_seahawks))) (value (list (name fb:en.qwest_field \"CenturyLink Field\"))) (type fb:sports.sports_facility)\nwho does michael keaton play in cars?\tRabbit Test\t5.078\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 \"Rabbit Test\") (name fb:en.a_different_approach \"A Different Approach\") (name fb:en.pacific_heights \"Pacific Heights\") (name fb:en.inventing_the_abbotts \"Inventing the Abbotts\") (name fb:en.the_post_grad_survival_guide \"Post Grad\") (name fb:en.jackie_brown \"Jackie Brown\") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 \"White Noise\") (name fb:en.out_of_sight \"Out of Sight\") (name fb:en.speechless_1994 Speechless))) (type fb:film.film)\nwho does michael keaton play in cars?\tA Different Approach\t5.078\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 \"Rabbit Test\") (name fb:en.a_different_approach \"A Different Approach\") (name fb:en.pacific_heights \"Pacific Heights\") (name fb:en.inventing_the_abbotts \"Inventing the Abbotts\") (name fb:en.the_post_grad_survival_guide \"Post Grad\") (name fb:en.jackie_brown \"Jackie Brown\") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 \"White Noise\") (name fb:en.out_of_sight \"Out of Sight\") (name fb:en.speechless_1994 Speechless))) (type fb:film.film)\nwho does michael keaton play in cars?\tPacific Heights\t5.078\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 \"Rabbit Test\") (name fb:en.a_different_approach \"A Different Approach\") (name fb:en.pacific_heights \"Pacific Heights\") (name fb:en.inventing_the_abbotts \"Inventing the Abbotts\") (name fb:en.the_post_grad_survival_guide \"Post Grad\") (name fb:en.jackie_brown \"Jackie Brown\") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 \"White Noise\") (name fb:en.out_of_sight \"Out of Sight\") (name fb:en.speechless_1994 Speechless))) (type fb:film.film)\nwho does michael keaton play in cars?\tInventing the Abbotts\t5.078\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 \"Rabbit Test\") (name fb:en.a_different_approach \"A Different Approach\") (name fb:en.pacific_heights \"Pacific Heights\") (name fb:en.inventing_the_abbotts \"Inventing the Abbotts\") (name fb:en.the_post_grad_survival_guide \"Post Grad\") (name fb:en.jackie_brown \"Jackie Brown\") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 \"White Noise\") (name fb:en.out_of_sight \"Out of Sight\") (name fb:en.speechless_1994 Speechless))) (type fb:film.film)\nwho does michael keaton play in cars?\tPost Grad\t5.078\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 \"Rabbit Test\") (name fb:en.a_different_approach \"A Different Approach\") (name fb:en.pacific_heights \"Pacific Heights\") (name fb:en.inventing_the_abbotts \"Inventing the Abbotts\") (name fb:en.the_post_grad_survival_guide \"Post Grad\") (name fb:en.jackie_brown \"Jackie Brown\") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 \"White Noise\") (name fb:en.out_of_sight \"Out of Sight\") (name fb:en.speechless_1994 Speechless))) (type fb:film.film)\nwho does michael keaton play in cars?\tJackie Brown\t5.078\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 \"Rabbit Test\") (name fb:en.a_different_approach \"A Different Approach\") (name fb:en.pacific_heights \"Pacific Heights\") (name fb:en.inventing_the_abbotts \"Inventing the Abbotts\") (name fb:en.the_post_grad_survival_guide \"Post Grad\") (name fb:en.jackie_brown \"Jackie Brown\") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 \"White Noise\") (name fb:en.out_of_sight \"Out of Sight\") (name fb:en.speechless_1994 Speechless))) (type fb:film.film)\nwho does michael keaton play in cars?\tWhite Noise\t5.078\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 \"Rabbit Test\") (name fb:en.a_different_approach \"A Different Approach\") (name fb:en.pacific_heights \"Pacific Heights\") (name fb:en.inventing_the_abbotts \"Inventing the Abbotts\") (name fb:en.the_post_grad_survival_guide \"Post Grad\") (name fb:en.jackie_brown \"Jackie Brown\") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 \"White Noise\") (name fb:en.out_of_sight \"Out of Sight\") (name fb:en.speechless_1994 Speechless))) (type fb:film.film)\nwho does michael keaton play in cars?\tOut of Sight\t5.078\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 \"Rabbit Test\") (name fb:en.a_different_approach \"A Different Approach\") (name fb:en.pacific_heights \"Pacific Heights\") (name fb:en.inventing_the_abbotts \"Inventing the Abbotts\") (name fb:en.the_post_grad_survival_guide \"Post Grad\") (name fb:en.jackie_brown \"Jackie Brown\") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 \"White Noise\") (name fb:en.out_of_sight \"Out of Sight\") (name fb:en.speechless_1994 Speechless))) (type fb:film.film)\nwhat are the mountains in northern spain?\tPic del Port Vell\t13.877\tformula (!fb:location.location.partially_contains fb:en.spain)) (value (list (name fb:en.pyrenees Pyrenees) (name fb:en.tagus Tagus) (name fb:en.pic_del_port_vell_andorra \"Pic del Port Vell\") (name fb:en.bay_of_biscay \"Bay of Biscay\") (name fb:en.pica_destats \"Pica d'Estats\"))) (type fb:location.location)\nwhat are the mountains in northern spain?\tBay of Biscay\t13.877\tformula (!fb:location.location.partially_contains fb:en.spain)) (value (list (name fb:en.pyrenees Pyrenees) (name fb:en.tagus Tagus) (name fb:en.pic_del_port_vell_andorra \"Pic del Port Vell\") (name fb:en.bay_of_biscay \"Bay of Biscay\") (name fb:en.pica_destats \"Pica d'Estats\"))) (type fb:location.location)\nwhat are the mountains in northern spain?\tPica d'Estats\t13.877\tformula (!fb:location.location.partially_contains fb:en.spain)) (value (list (name fb:en.pyrenees Pyrenees) (name fb:en.tagus Tagus) (name fb:en.pic_del_port_vell_andorra \"Pic del Port Vell\") (name fb:en.bay_of_biscay \"Bay of Biscay\") (name fb:en.pica_destats \"Pica d'Estats\"))) (type fb:location.location)\nwho became president when henry harrison died?\tJohn Tyler\t6.551\tformula (fb:government.us_vice_president.to_president fb:en.william_henry_harrison)) (value (list (name fb:en.john_tyler \"John Tyler\"))) (type fb:government.us_vice_president)\nwhat other books did louis sachar write?\tSideways Arithmetic From Wayside School\t13.598\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school \"Sideways Arithmetic From Wayside School\") (name fb:en.super_fast_out_of_control \"Super Fast, Out of Control!\") (name fb:en.marvin_redpost \"Marvin Redpost\") (name fb:m.04t4842 \"Johnny's in the Basement\") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake \"A Flying Birthday Cake?\") (name fb:en.a_magic_crystal \"A magic crystal?\") (name fb:m.0cmt6c \"Small Steps\") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline \"Someday Angeline\"))) (type (union fb:book.book))\nwhat other books did louis sachar write?\tSuper Fast, Out of Control!\t13.598\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school \"Sideways Arithmetic From Wayside School\") (name fb:en.super_fast_out_of_control \"Super Fast, Out of Control!\") (name fb:en.marvin_redpost \"Marvin Redpost\") (name fb:m.04t4842 \"Johnny's in the Basement\") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake \"A Flying Birthday Cake?\") (name fb:en.a_magic_crystal \"A magic crystal?\") (name fb:m.0cmt6c \"Small Steps\") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline \"Someday Angeline\"))) (type (union fb:book.book))\nwhat other books did louis sachar write?\tMarvin Redpost\t13.598\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school \"Sideways Arithmetic From Wayside School\") (name fb:en.super_fast_out_of_control \"Super Fast, Out of Control!\") (name fb:en.marvin_redpost \"Marvin Redpost\") (name fb:m.04t4842 \"Johnny's in the Basement\") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake \"A Flying Birthday Cake?\") (name fb:en.a_magic_crystal \"A magic crystal?\") (name fb:m.0cmt6c \"Small Steps\") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline \"Someday Angeline\"))) (type (union fb:book.book))\nwhat other books did louis sachar write?\tJohnny's in the Basement\t13.598\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school \"Sideways Arithmetic From Wayside School\") (name fb:en.super_fast_out_of_control \"Super Fast, Out of Control!\") (name fb:en.marvin_redpost \"Marvin Redpost\") (name fb:m.04t4842 \"Johnny's in the Basement\") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake \"A Flying Birthday Cake?\") (name fb:en.a_magic_crystal \"A magic crystal?\") (name fb:m.0cmt6c \"Small Steps\") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline \"Someday Angeline\"))) (type (union fb:book.book))\nwhat other books did louis sachar write?\tA Flying Birthday Cake?\t13.598\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school \"Sideways Arithmetic From Wayside School\") (name fb:en.super_fast_out_of_control \"Super Fast, Out of Control!\") (name fb:en.marvin_redpost \"Marvin Redpost\") (name fb:m.04t4842 \"Johnny's in the Basement\") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake \"A Flying Birthday Cake?\") (name fb:en.a_magic_crystal \"A magic crystal?\") (name fb:m.0cmt6c \"Small Steps\") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline \"Someday Angeline\"))) (type (union fb:book.book))\nwhat other books did louis sachar write?\tA magic crystal?\t13.598\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school \"Sideways Arithmetic From Wayside School\") (name fb:en.super_fast_out_of_control \"Super Fast, Out of Control!\") (name fb:en.marvin_redpost \"Marvin Redpost\") (name fb:m.04t4842 \"Johnny's in the Basement\") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake \"A Flying Birthday Cake?\") (name fb:en.a_magic_crystal \"A magic crystal?\") (name fb:m.0cmt6c \"Small Steps\") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline \"Someday Angeline\"))) (type (union fb:book.book))\nwhat other books did louis sachar write?\tSmall Steps\t13.598\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school \"Sideways Arithmetic From Wayside School\") (name fb:en.super_fast_out_of_control \"Super Fast, Out of Control!\") (name fb:en.marvin_redpost \"Marvin Redpost\") (name fb:m.04t4842 \"Johnny's in the Basement\") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake \"A Flying Birthday Cake?\") (name fb:en.a_magic_crystal \"A magic crystal?\") (name fb:m.0cmt6c \"Small Steps\") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline \"Someday Angeline\"))) (type (union fb:book.book))\nwhat other books did louis sachar write?\tSomeday Angeline\t13.598\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school \"Sideways Arithmetic From Wayside School\") (name fb:en.super_fast_out_of_control \"Super Fast, Out of Control!\") (name fb:en.marvin_redpost \"Marvin Redpost\") (name fb:m.04t4842 \"Johnny's in the Basement\") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake \"A Flying Birthday Cake?\") (name fb:en.a_magic_crystal \"A magic crystal?\") (name fb:m.0cmt6c \"Small Steps\") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline \"Someday Angeline\"))) (type (union fb:book.book))\nwhen did roth ira originate?\tWilliam V. Roth, Jr.\t5.22\tformula (fb:symbols.name_source.namesakes fb:en.roth_ira)) (value (list (name fb:en.jr_roth_william_v \"William V. Roth, Jr.\"))) (type fb:symbols.name_source)\nwhat is the best zelda game to start with?\tZelda II: The Adventure of Link\t15.81\tformula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_a_link_to_the_past \"The Legend of Zelda: A Link to the Past\") (name fb:en.super_smash_bros_brawl \"Super Smash Bros. Brawl\") (name fb:en.super_smash_bros_melee \"Super Smash Bros. Melee\") (name fb:en.the_legend_of_zelda \"The Legend of Zelda\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\"))) (type fb:cvg.computer_videogame)\nwhat is the best zelda game to start with?\tThe Legend of Zelda: A Link to the Past\t15.81\tformula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_a_link_to_the_past \"The Legend of Zelda: A Link to the Past\") (name fb:en.super_smash_bros_brawl \"Super Smash Bros. Brawl\") (name fb:en.super_smash_bros_melee \"Super Smash Bros. Melee\") (name fb:en.the_legend_of_zelda \"The Legend of Zelda\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\"))) (type fb:cvg.computer_videogame)\nwhat is the best zelda game to start with?\tSuper Smash Bros. Brawl\t15.81\tformula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_a_link_to_the_past \"The Legend of Zelda: A Link to the Past\") (name fb:en.super_smash_bros_brawl \"Super Smash Bros. Brawl\") (name fb:en.super_smash_bros_melee \"Super Smash Bros. Melee\") (name fb:en.the_legend_of_zelda \"The Legend of Zelda\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\"))) (type fb:cvg.computer_videogame)\nwhat is the best zelda game to start with?\tSuper Smash Bros. Melee\t15.81\tformula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_a_link_to_the_past \"The Legend of Zelda: A Link to the Past\") (name fb:en.super_smash_bros_brawl \"Super Smash Bros. Brawl\") (name fb:en.super_smash_bros_melee \"Super Smash Bros. Melee\") (name fb:en.the_legend_of_zelda \"The Legend of Zelda\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\"))) (type fb:cvg.computer_videogame)\nwhat is the best zelda game to start with?\tThe Legend of Zelda\t15.81\tformula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_a_link_to_the_past \"The Legend of Zelda: A Link to the Past\") (name fb:en.super_smash_bros_brawl \"Super Smash Bros. Brawl\") (name fb:en.super_smash_bros_melee \"Super Smash Bros. Melee\") (name fb:en.the_legend_of_zelda \"The Legend of Zelda\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\"))) (type fb:cvg.computer_videogame)\nwhat is the best zelda game to start with?\tThe Legend of Zelda: Twilight Princess\t15.81\tformula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_a_link_to_the_past \"The Legend of Zelda: A Link to the Past\") (name fb:en.super_smash_bros_brawl \"Super Smash Bros. Brawl\") (name fb:en.super_smash_bros_melee \"Super Smash Bros. Melee\") (name fb:en.the_legend_of_zelda \"The Legend of Zelda\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\"))) (type fb:cvg.computer_videogame)\nwho does the voice for darth vader?\tDavid Prowse\t13.031\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does the voice for darth vader?\tJames Earl Jones\t13.031\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does the voice for darth vader?\tHayden Christensen\t13.031\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does the voice for darth vader?\tMatt Lanter\t13.031\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does the voice for darth vader?\tSebastian Shaw\t13.031\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does the voice for darth vader?\tRobert E. Bean\t13.031\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does the voice for darth vader?\tJake Lloyd\t13.031\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwhat states share a border with tennessee?\tNorth Carolina\t12.506\tformula (and (fb:type.object.type fb:location.us_state) ((lambda x (fb:location.location.adjoin_s (fb:location.adjoining_relationship.adjoins (var x)))) fb:en.tennesee))) (value (list (name fb:en.mississippi Mississippi) (name fb:en.north_carolina \"North Carolina\") (name fb:en.arkansas Arkansas) (name fb:en.alabama Alabama) (name fb:en.virginia Virginia) (name fb:en.kentucky Kentucky) (name fb:en.missouri Missouri) (name fb:en.georgia Georgia))) (type fb:location.us_state)\nwhat kind of government is egypt?\tUnitary state\t11.695\tformula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat kind of government is egypt?\tSemi-presidential system\t11.695\tformula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwho is james madison and what did he do?\tJames Monroe\t20.742\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.appointed_by (var x)))) fb:en.james_madison)) (value (list (name fb:en.james_monroe \"James Monroe\") (name fb:en.william_h_crawford \"William H. Crawford\") (name fb:en.george_w_campbell \"George W. Campbell\") (name fb:en.alexander_j_dallas \"Alexander J. Dallas\"))) (type fb:government.politician)\nwho is james madison and what did he do?\tWilliam H. Crawford\t20.742\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.appointed_by (var x)))) fb:en.james_madison)) (value (list (name fb:en.james_monroe \"James Monroe\") (name fb:en.william_h_crawford \"William H. Crawford\") (name fb:en.george_w_campbell \"George W. Campbell\") (name fb:en.alexander_j_dallas \"Alexander J. Dallas\"))) (type fb:government.politician)\nwho is james madison and what did he do?\tGeorge W. Campbell\t20.742\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.appointed_by (var x)))) fb:en.james_madison)) (value (list (name fb:en.james_monroe \"James Monroe\") (name fb:en.william_h_crawford \"William H. Crawford\") (name fb:en.george_w_campbell \"George W. Campbell\") (name fb:en.alexander_j_dallas \"Alexander J. Dallas\"))) (type fb:government.politician)\nwho is james madison and what did he do?\tAlexander J. Dallas\t20.742\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.appointed_by (var x)))) fb:en.james_madison)) (value (list (name fb:en.james_monroe \"James Monroe\") (name fb:en.william_h_crawford \"William H. Crawford\") (name fb:en.george_w_campbell \"George W. Campbell\") (name fb:en.alexander_j_dallas \"Alexander J. Dallas\"))) (type fb:government.politician)\nwhat did obama do before he was elected president?\tEnergy development\t20.842\tformula ((lambda x (fb:event.speech_topic.speeches_or_presentations_on_this_topic (fb:event.speech_or_presentation.speaker_s (var x)))) fb:en.barack_obama)) (value (list (name fb:en.energy_development \"Energy development\") (name fb:en.education_reform \"Education reform\"))) (type fb:event.speech_topic)\nwhat did obama do before he was elected president?\tEducation reform\t20.842\tformula ((lambda x (fb:event.speech_topic.speeches_or_presentations_on_this_topic (fb:event.speech_or_presentation.speaker_s (var x)))) fb:en.barack_obama)) (value (list (name fb:en.energy_development \"Energy development\") (name fb:en.education_reform \"Education reform\"))) (type fb:event.speech_topic)\nwhere do john lennon die?\tNew York City\t6.522\tformula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.john_lennon))) (value (list (name fb:en.new_york_ny \"New York City\"))) (type fb:location.location)\nwho plays edward on deception?\tRobert Pattinson\t4.941\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.edward_cullen)) (value (list (name fb:en.robert_pattinson \"Robert Pattinson\"))) (type fb:film.actor)\nwhat games will be on nfl network this year?\tMadden NFL 08\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tMadden NFL 09\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tMadden NFL 2004\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tMadden NFL 10\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tJohn Madden Football\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tNFL Head Coach 09\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tMadden NFL '96\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tMadden NFL 98\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tMadden Football 64\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat games will be on nfl network this year?\tMadden NFL 99\t12.005\tformula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 \"Madden NFL 08\") (name fb:en.madden_nfl_09 \"Madden NFL 09\") (name fb:en.madden_nfl_2004 \"Madden NFL 2004\") (name fb:m.05p0f3b \"Madden NFL 10\") (name fb:en.john_madden_football \"John Madden Football\") (name fb:en.nfl_head_coach_09 \"NFL Head Coach 09\") (name fb:en.madden_nfl_96 \"Madden NFL '96\") (name fb:en.madden_nfl_98 \"Madden NFL 98\") (name fb:en.madden_football_64 \"Madden Football 64\") (name fb:en.madden_nfl_99 \"Madden NFL 99\"))) (type (union fb:cvg.computer_videogame))\nwhat is the current time in bangalore india?\tIndian Standard Time\t9.062\tformula (!fb:location.location.time_zones fb:en.bangalore)) (value (list (name fb:en.indian_standard_time \"Indian Standard Time\") (name fb:en.utcplus5_30 UTC+05:30))) (type fb:time.time_zone)\nwhat language do people from greece speak?\tGreek Language\t17.376\tformula (and (fb:type.object.type fb:language.human_language) (fb:language.human_language.countries_spoken_in fb:en.greece))) (value (list (name fb:en.greek_language \"Greek Language\") (name fb:en.albanian_language \"Albanian language\"))) (type fb:language.human_language)\nwhat language do people from greece speak?\tAlbanian language\t17.376\tformula (and (fb:type.object.type fb:language.human_language) (fb:language.human_language.countries_spoken_in fb:en.greece))) (value (list (name fb:en.greek_language \"Greek Language\") (name fb:en.albanian_language \"Albanian language\"))) (type fb:language.human_language)\nwhere is the phillies spring training stadium?\tCitizens Bank Park\t10.444\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:sports.sports_facility) (!fb:sports.sports_team.arena_stadium fb:en.philadelphia_phillies)))) (value (list (name fb:en.citizens_bank_park \"Citizens Bank Park\"))) (type fb:sports.sports_facility)\nwhat movies does matt dallas play in?\tIn Between Days\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwhat movies does matt dallas play in?\tWay of the Vampire\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwhat movies does matt dallas play in?\tBeauty & the Briefcase\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwhat movies does matt dallas play in?\tLiving the Dream\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwhat movies does matt dallas play in?\tThe Indian\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwhat movies does matt dallas play in?\tYou, Me & The Circus\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwhat movies does matt dallas play in?\tThe Story of Bonnie and Clyde\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwhat movies does matt dallas play in?\tCamp Slaughter\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwhat movies does matt dallas play in?\tThe Ghost of Goodnight Lane\t9.304\tformula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 \"In Between Days\") (name fb:en.way_of_the_vampire \"Way of the Vampire\") (name fb:en.the_business_of_falling_in_love \"Beauty & the Briefcase\") (name fb:m.051x5f2 \"Living the Dream\") (name fb:m.0crsyk2 \"The Indian\") (name fb:m.0h2kycm \"You, Me & The Circus\") (name fb:m.05p309z \"The Story of Bonnie and Clyde\") (name fb:en.camp_slaughter \"Camp Slaughter\") (name fb:m.0h2kydx \"The Ghost of Goodnight Lane\"))) (type fb:film.film)\nwho was john f kennedy's family?\tKennedy family\t8.922\tformula (!fb:people.family_member.family fb:en.john_f_kennedy)) (value (list (name fb:en.kennedy_family \"Kennedy family\"))) (type fb:people.family)\nwhen was john paul ii?\tMyocardial infarction\t5.647\tformula (fb:people.cause_of_death.people fb:en.pope_john_paul_ii)) (value (list (name fb:en.heart_failure \"Myocardial infarction\") (name fb:en.parkinsons_disease \"Parkinson's disease\"))) (type fb:people.cause_of_death)\nwhen was john paul ii?\tParkinson's disease\t5.647\tformula (fb:people.cause_of_death.people fb:en.pope_john_paul_ii)) (value (list (name fb:en.heart_failure \"Myocardial infarction\") (name fb:en.parkinsons_disease \"Parkinson's disease\"))) (type fb:people.cause_of_death)\nwhere is belgium germany?\tUnited States of America\t0.135\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.germany))) (value (list (name fb:en.algeria Algeria) (name fb:en.albania_france Albania) (name fb:en.afghanistan Afghanistan) (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.statistical_region)\nwhere did starbucks get their logo?\tUnited States of America\t6.623\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:common.phone_number.service_location (!fb:organization.organization.phone_number (var x)))) fb:en.starbucks))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.location)\nwhere was bin laden found and killed?\tMaktab al-Khidamat\t8.544\tformula (fb:organization.organization.founders fb:en.osama_bin_laden)) (value (list (name fb:en.al-qaeda al-Qaeda) (name fb:en.maktab_al-khadamat \"Maktab al-Khidamat\"))) (type fb:organization.organization)\nwhat are the names of harry potter movies in order?\tHarry Potter and the Deathly Hallows\t12.378\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are the names of harry potter movies in order?\tHarry Potter and the Order of the Phoenix\t12.378\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are the names of harry potter movies in order?\tHarry Potter and the Prisoner of Azkaban\t12.378\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are the names of harry potter movies in order?\tHarry Potter and the Half-Blood Prince\t12.378\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are the names of harry potter movies in order?\tHarry Potter and the Goblet of Fire\t12.378\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are the names of harry potter movies in order?\tHarry Potter and the Chamber of Secrets\t12.378\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are the names of harry potter movies in order?\tHarry Potter and the Philosopher's Stone\t12.378\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat did pamela courson die from?\tDrug overdose\t19.591\tformula (fb:people.cause_of_death.people fb:en.pamela_courson)) (value (list (name fb:en.drug_overdose \"Drug overdose\") (name fb:en.heroin_overdose \"Heroin overdose\"))) (type fb:people.cause_of_death)\nwhat did pamela courson die from?\tHeroin overdose\t19.591\tformula (fb:people.cause_of_death.people fb:en.pamela_courson)) (value (list (name fb:en.drug_overdose \"Drug overdose\") (name fb:en.heroin_overdose \"Heroin overdose\"))) (type fb:people.cause_of_death)\nwho plays stacey in the stacy's mom video?\tLacey Turner\t5.19\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.stacey_slater)) (value (list (name fb:en.lacey_turner \"Lacey Turner\"))) (type fb:tv.tv_actor)\nwho does nolan ryan play for?\tNew York Mets\t13.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.nolan_ryan)) (value (list (name fb:en.new_york_mets \"New York Mets\") (name fb:m.05kmnv1 \"California Angels\") (name fb:en.houston_astros \"Houston Astros\"))) (type fb:sports.sports_team)\nwho does nolan ryan play for?\tCalifornia Angels\t13.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.nolan_ryan)) (value (list (name fb:en.new_york_mets \"New York Mets\") (name fb:m.05kmnv1 \"California Angels\") (name fb:en.houston_astros \"Houston Astros\"))) (type fb:sports.sports_team)\nwho does nolan ryan play for?\tHouston Astros\t13.074\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.nolan_ryan)) (value (list (name fb:en.new_york_mets \"New York Mets\") (name fb:m.05kmnv1 \"California Angels\") (name fb:en.houston_astros \"Houston Astros\"))) (type fb:sports.sports_team)\nwhat is the currency of sweden in 2010?\tSwedish krona\t19.947\tformula (!fb:location.country.currency_used fb:en.swedem)) (value (list (name fb:en.swedish_krona \"Swedish krona\"))) (type fb:finance.currency)\nwhat is the head judge of the supreme court called?\tRicky Polston\t15.87\tformula (and (fb:type.object.type fb:law.judge) ((lambda x (!fb:law.judicial_tenure.judge (!fb:law.court.judges (var x)))) fb:en.florida_supreme_court))) (value (list (name fb:en.ricky_polston \"Ricky Polston\") (name fb:en.joseph_b_lancaster \"Joseph B. Lancaster\"))) (type (union fb:law.judge))\nwhat is the head judge of the supreme court called?\tJoseph B. Lancaster\t15.87\tformula (and (fb:type.object.type fb:law.judge) ((lambda x (!fb:law.judicial_tenure.judge (!fb:law.court.judges (var x)))) fb:en.florida_supreme_court))) (value (list (name fb:en.ricky_polston \"Ricky Polston\") (name fb:en.joseph_b_lancaster \"Joseph B. Lancaster\"))) (type (union fb:law.judge))\nwho was frida kahlo influenced by?\tDiego Rivera\t13.028\tformula (fb:influence.influence_node.influenced fb:en.frida_kahlo)) (value (list (name fb:en.diego_rivera \"Diego Rivera\"))) (type fb:influence.influence_node)\nwhen is the last time the giants won the world series?\t2010 World Series\t18.479\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.san_francisco_giants))) (value (list (name fb:en.2010_world_series \"2010 World Series\") (name fb:m.0ds8qct \"2012 World Series\"))) (type fb:sports.sports_championship_event)\nwhen is the last time the giants won the world series?\t2012 World Series\t18.479\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.san_francisco_giants))) (value (list (name fb:en.2010_world_series \"2010 World Series\") (name fb:m.0ds8qct \"2012 World Series\"))) (type fb:sports.sports_championship_event)\nwhat spain brought to the new world?\tThe Sun Also Rises\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwhat spain brought to the new world?\tBlood Secret\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwhat spain brought to the new world?\tDeath in the Afternoon\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwhat spain brought to the new world?\tShadow of a Bull\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwhat spain brought to the new world?\tRoad to Santiago\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwhat spain brought to the new world?\tFor Whom the Bell Tolls\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwhat spain brought to the new world?\tOrwell in Spain\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwhat spain brought to the new world?\tDon Quixote\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwhat spain brought to the new world?\tThe Wound and Dream\t8.454\tformula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises \"The Sun Also Rises\") (name fb:en.blood_secret \"Blood Secret\") (name fb:en.death_in_the_afternoon \"Death in the Afternoon\") (name fb:en.shadow_of_a_bull \"Shadow of a Bull\") (name fb:en.road_to_santiago \"Road to Santiago\") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls \"For Whom the Bell Tolls\") (name fb:en.orwell_in_spain \"Orwell in Spain\") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza \"Don Quixote\") (name fb:en.the_wound_and_dream \"The Wound and Dream\"))) (type fb:book.written_work)\nwho did vladimir lenin marry?\tNadezhda Krupskaya\t11.235\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.vladimir_lenin)) (value (list (name fb:en.nadezhda_konstantinovna_krupskaya \"Nadezhda Krupskaya\"))) (type fb:people.person)\nwhat year did the baltimore ravens win superbowl?\tSuper Bowl XLVII\t18.378\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii \"Super Bowl XLVII\") (name fb:en.super_bowl_xxxv \"Super Bowl XXXV\"))) (type fb:sports.sports_championship_event)\nwhat year did the baltimore ravens win superbowl?\tSuper Bowl XXXV\t18.378\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii \"Super Bowl XLVII\") (name fb:en.super_bowl_xxxv \"Super Bowl XXXV\"))) (type fb:sports.sports_championship_event)\nwhat team does cristiano ronaldo play for 2011?\tPortugal national football team\t17.318\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat team does cristiano ronaldo play for 2011?\tSporting Clube de Portugal\t17.318\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat team does cristiano ronaldo play for 2011?\tManchester United F.C.\t17.318\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat team does cristiano ronaldo play for 2011?\tReal Madrid C.F.\t17.318\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat is money called in italy?\tTriple Entente\t8.608\tformula (fb:military.military_combatant.includes_allies fb:en.italy)) (value (list (name fb:en.triple_entente \"Triple Entente\"))) (type fb:military.military_combatant)\nwhat is the government of france for 2010?\tGovernment of France\t16.92\tformula (fb:government.government.government_for fb:en.france)) (value (list (name fb:en.government_of_france \"Government of France\"))) (type fb:government.government)\nwhere did theodor schwann study?\tHumboldt University of Berlin\t5.829\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.theodor_schwann))) (value (list (name fb:en.humboldt_university_of_berlin \"Humboldt University of Berlin\"))) (type fb:education.educational_institution)\nhow old is bruno mars and where is he from?\tBlissful Master Index\t12.384\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.bruno_mars)) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nhow old is bruno mars and where is he from?\tBlissful Celebrities\t12.384\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.bruno_mars)) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwho are the virginia senators 2013?\tComcast SportsNet Mid-Atlantic\t7.564\tformula (fb:broadcast.broadcast.area_served fb:en.virginia)) (value (list (name fb:en.csn_mid_atlantic \"Comcast SportsNet Mid-Atlantic\") (name fb:en.wamu_88_5_fm \"WAMU 88.5 FM\") (name fb:en.wper WPER) (name fb:en.wbra-tv \"Blue Ridge PBS\"))) (type fb:broadcast.broadcast)\nwho are the virginia senators 2013?\tWAMU 88.5 FM\t7.564\tformula (fb:broadcast.broadcast.area_served fb:en.virginia)) (value (list (name fb:en.csn_mid_atlantic \"Comcast SportsNet Mid-Atlantic\") (name fb:en.wamu_88_5_fm \"WAMU 88.5 FM\") (name fb:en.wper WPER) (name fb:en.wbra-tv \"Blue Ridge PBS\"))) (type fb:broadcast.broadcast)\nwho are the virginia senators 2013?\tBlue Ridge PBS\t7.564\tformula (fb:broadcast.broadcast.area_served fb:en.virginia)) (value (list (name fb:en.csn_mid_atlantic \"Comcast SportsNet Mid-Atlantic\") (name fb:en.wamu_88_5_fm \"WAMU 88.5 FM\") (name fb:en.wper WPER) (name fb:en.wbra-tv \"Blue Ridge PBS\"))) (type fb:broadcast.broadcast)\nwhat was dr seuss's real name?\tGeisel Library\t10.888\tformula (fb:symbols.namesake.named_after fb:en.dr_seuss)) (value (list (name fb:en.geisel_library \"Geisel Library\") (name fb:en.dr_seuss_memorial \"Dr. Seuss Memorial\"))) (type fb:symbols.namesake)\nwhat was dr seuss's real name?\tDr. Seuss Memorial\t10.888\tformula (fb:symbols.namesake.named_after fb:en.dr_seuss)) (value (list (name fb:en.geisel_library \"Geisel Library\") (name fb:en.dr_seuss_memorial \"Dr. Seuss Memorial\"))) (type fb:symbols.namesake)\nwhere are the nordic countries?\tFaroe Islands\t8.188\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.nordic_countries)))) (value (list (name fb:en.norway Norway) (name fb:en.iceland Iceland) (name fb:en.greenland Greenland) (name fb:en.faroe_islands \"Faroe Islands\") (name fb:en.aland \"Åland Islands\"))) (type fb:location.country)\nwhere are the nordic countries?\tÅland Islands\t8.188\tformula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.nordic_countries)))) (value (list (name fb:en.norway Norway) (name fb:en.iceland Iceland) (name fb:en.greenland Greenland) (name fb:en.faroe_islands \"Faroe Islands\") (name fb:en.aland \"Åland Islands\"))) (type fb:location.country)\nwhat country sponsored ferdinand magellan?\tKingdom of Portugal\t13.084\tformula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.ferdinand_magellan))) (value (list (name fb:en.portugal Portugal) (name fb:en.kingdom_of_portugal \"Kingdom of Portugal\"))) (type (union fb:location.country))\nwhat did vera ellen die from?\tLung cancer\t16.497\tformula (fb:people.cause_of_death.people fb:en.ellen_willis)) (value (list (name fb:en.lung_cancer \"Lung cancer\"))) (type fb:people.cause_of_death)\nwho will plaxico burress play for in 2011?\tNew York Jets\t15.28\tformula (fb:sports.sports_team.roster (and (fb:sports.sports_team_roster.player fb:en.plaxico_burress) (fb:sports.sports_team_roster.from (date 2011 -1 -1))))) (value (list (name fb:en.new_york_jets \"New York Jets\"))) (type fb:sports.sports_team)\nwhat is the currency of brazil now?\tBrazilian real\t22.205\tformula (!fb:location.country.currency_used fb:en.brazil)) (value (list (name fb:en.brazilian_real \"Brazilian real\"))) (type fb:finance.currency)\nwho does mike marry at the end of season 5 desperate housewives?\t2005 Major League Baseball season\t10.563\tformula ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.mike_lowell)) (value (list (name fb:en.2005_major_league_baseball_season \"2005 Major League Baseball season\") (name fb:en.2007_major_league_baseball_season \"2007 Major League Baseball season\"))) (type fb:sports.sports_league_season)\nwho does mike marry at the end of season 5 desperate housewives?\t2007 Major League Baseball season\t10.563\tformula ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.mike_lowell)) (value (list (name fb:en.2005_major_league_baseball_season \"2005 Major League Baseball season\") (name fb:en.2007_major_league_baseball_season \"2007 Major League Baseball season\"))) (type fb:sports.sports_league_season)\nwhat are the predominant religions in russia?\tRussian Orthodox Church\t19.803\tformula ((lambda x (!fb:location.religion_percentage.religion (!fb:location.statistical_region.religions (var x)))) fb:en.russia)) (value (list (name fb:en.russian_orthodox_church \"Russian Orthodox Church\") (name fb:en.islam Islam))) (type fb:religion.religion)\nwhat countries were part of the spanish empire?\tUnited States of America\t14.594\tformula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.spanish))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.argentina Argentina) (name fb:en.canada Canada) (name fb:en.mexico Mexico) (name fb:en.nicaragua Nicaragua) (name fb:en.venezuela Venezuela) (name fb:en.barbados Barbados) (name fb:en.colombia Colombia) (name fb:en.gibraltar Gibraltar) (name fb:en.cuba Cuba))) (type (union fb:location.country))\nwho will coach carolina panthers in 2013?\tRon Rivera\t12.317\tformula (!fb:american_football.football_team.current_head_coach fb:en.carolina_panthers)) (value (list (name fb:en.ron_rivera \"Ron Rivera\"))) (type fb:american_football.football_coach)\nwhere did louis sachar grow up?\tEast Meadow\t6.572\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.people_born_here fb:en.louis_sachar))) (value (list (name fb:en.east_meadow \"East Meadow\"))) (type fb:location.location)\nwho plays marshall eriksen?\tJason Segel\t5.224\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.marshall_eriksen)) (value (list (name fb:en.jason_segal \"Jason Segel\"))) (type fb:tv.tv_actor)\nwhat activities are there to do in greece?\tRoad running\t17.458\tformula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running \"Road running\") (name fb:en.slalom_canoeing \"Canoe Slalom\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.track_and_field \"Track and field athletics\") (name fb:en.diving Diving) (name fb:en.water_polo \"Water polo\") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport))\nwhat activities are there to do in greece?\tCanoe Slalom\t17.458\tformula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running \"Road running\") (name fb:en.slalom_canoeing \"Canoe Slalom\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.track_and_field \"Track and field athletics\") (name fb:en.diving Diving) (name fb:en.water_polo \"Water polo\") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport))\nwhat activities are there to do in greece?\tShooting sport\t17.458\tformula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running \"Road running\") (name fb:en.slalom_canoeing \"Canoe Slalom\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.track_and_field \"Track and field athletics\") (name fb:en.diving Diving) (name fb:en.water_polo \"Water polo\") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport))\nwhat activities are there to do in greece?\tTrack and field athletics\t17.458\tformula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running \"Road running\") (name fb:en.slalom_canoeing \"Canoe Slalom\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.track_and_field \"Track and field athletics\") (name fb:en.diving Diving) (name fb:en.water_polo \"Water polo\") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport))\nwhat activities are there to do in greece?\tWater polo\t17.458\tformula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running \"Road running\") (name fb:en.slalom_canoeing \"Canoe Slalom\") (name fb:en.shooting_sports \"Shooting sport\") (name fb:en.track_and_field \"Track and field athletics\") (name fb:en.diving Diving) (name fb:en.water_polo \"Water polo\") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport))\nwhat to do for fun in houston?\tRyan Hamilton\t12.312\tformula ((lambda x (fb:ice_hockey.hockey_player.former_team_s (fb:ice_hockey.hockey_previous_roster_position.team (var x)))) fb:en.houston_aeros)) (value (list (name fb:m.0c3xw2f \"Ryan Hamilton\") (name fb:m.0glqyf_ \"Chay Genoway\"))) (type fb:ice_hockey.hockey_player)\nwhat to do for fun in houston?\tChay Genoway\t12.312\tformula ((lambda x (fb:ice_hockey.hockey_player.former_team_s (fb:ice_hockey.hockey_previous_roster_position.team (var x)))) fb:en.houston_aeros)) (value (list (name fb:m.0c3xw2f \"Ryan Hamilton\") (name fb:m.0glqyf_ \"Chay Genoway\"))) (type fb:ice_hockey.hockey_player)\nwhere did otto frank go to college?\tHeidelberg College\t10.806\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.otto_frank)))) (value (list (name fb:en.heidelberg_college \"Heidelberg College\"))) (type fb:education.university)\nwhat else has jennifer lawrence played in?\tThe Burning Plain\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwhat else has jennifer lawrence played in?\tThe Hunger Games: Catching Fire\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwhat else has jennifer lawrence played in?\tLike Crazy\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwhat else has jennifer lawrence played in?\tWinter’s Bone\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwhat else has jennifer lawrence played in?\tThe Hunger Games\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwhat else has jennifer lawrence played in?\tX-Men: Days of Future Past\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwhat else has jennifer lawrence played in?\tX-Men: First Class\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwhat else has jennifer lawrence played in?\tThe Beaver\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwhat else has jennifer lawrence played in?\tAmerican Hustle\t9.299\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain \"The Burning Plain\") (name fb:m.0n40qmp \"The Hunger Games: Catching Fire\") (name fb:m.0fpmrlv \"Like Crazy\") (name fb:m.093dqjy \"Winter’s Bone\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:m.0r3r5jz \"X-Men: Days of Future Past\") (name fb:m.0cd2vh9 \"X-Men: First Class\") (name fb:m.09v71cj \"The Beaver\") (name fb:m.0ryt9m1 \"American Hustle\") (name fb:m.0r8p2ll Serena))) (type fb:film.film)\nwho is the governor of pennsylvania state now?\tJohn W. Geary\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tMark S. Schweiker\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tHenry M. Hoyt\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tGifford Pinchot\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tArthur James\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tFrancis R. Shunk\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tJohn S. Fine\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tTimothy F. Murphy\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tJohn Andrew Shulze\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwho is the governor of pennsylvania state now?\tWilliam Bigler\t17.386\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary \"John W. Geary\") (name fb:en.mark_s_schweiker \"Mark S. Schweiker\") (name fb:en.henry_m_hoyt \"Henry M. Hoyt\") (name fb:en.gifford_pinchot \"Gifford Pinchot\") (name fb:en.arthur_james \"Arthur James\") (name fb:en.francis_r_shunk \"Francis R. Shunk\") (name fb:en.john_s_fine \"John S. Fine\") (name fb:en.tim_murphy_1952 \"Timothy F. Murphy\") (name fb:en.john_andrew_shulze \"John Andrew Shulze\") (name fb:en.william_bigler \"William Bigler\"))) (type fb:government.politician)\nwhere does the celtics practice?\tUniversity of Kansas\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tOklahoma State University–Stillwater\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tUniversity of New Mexico\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tGeorgetown University\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tSaint Joseph's University\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tDuke University\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tVillanova University\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tUniversity of Southern California\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tBoston College\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhere does the celtics practice?\tBrigham Young University\t5.601\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas \"University of Kansas\") (name fb:en.oklahoma_state_university_stillwater \"Oklahoma State University–Stillwater\") (name fb:en.university_of_new_mexico \"University of New Mexico\") (name fb:en.georgetown_university \"Georgetown University\") (name fb:en.saint_josephs_university \"Saint Joseph's University\") (name fb:en.duke_university \"Duke University\") (name fb:en.villanova_university \"Villanova University\") (name fb:en.university_of_southern_california \"University of Southern California\") (name fb:en.boston_college \"Boston College\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.educational_institution)\nwhat did george washington do as a teenager?\tAssociate Justice of the Supreme Court of the United States\t11.188\tformula ((lambda x (!fb:people.appointment.appointed_role (!fb:people.appointer.appointment_made (var x)))) fb:en.george_washington)) (value (list (name fb:en.associate_justice_of_the_supreme_court_of_the_united_states \"Associate Justice of the Supreme Court of the United States\") (name fb:en.chief_justice_of_the_united_states \"Chief Justice of the United States\"))) (type fb:people.appointed_role)\nwhat did george washington do as a teenager?\tChief Justice of the United States\t11.188\tformula ((lambda x (!fb:people.appointment.appointed_role (!fb:people.appointer.appointment_made (var x)))) fb:en.george_washington)) (value (list (name fb:en.associate_justice_of_the_supreme_court_of_the_united_states \"Associate Justice of the Supreme Court of the United States\") (name fb:en.chief_justice_of_the_united_states \"Chief Justice of the United States\"))) (type fb:people.appointed_role)\nwhere bin laden got killed?\tSaudi Arabia\t2.892\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.osama_bin_laden))) (value (list (name fb:en.pakistan Pakistan) (name fb:en.afghanistan Afghanistan) (name fb:en.sudan Sudan) (name fb:en.saudi_arabia \"Saudi Arabia\"))) (type fb:location.location)\nwhere does toronto get its water from?\tExhibition Stadium\t9.864\tformula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.toronto_blue_jays))) (value (list (name fb:en.exhibition_stadium \"Exhibition Stadium\") (name fb:en.rogers_centre \"Rogers Centre\"))) (type fb:sports.sports_facility)\nwhere does toronto get its water from?\tRogers Centre\t9.864\tformula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.toronto_blue_jays))) (value (list (name fb:en.exhibition_stadium \"Exhibition Stadium\") (name fb:en.rogers_centre \"Rogers Centre\"))) (type fb:sports.sports_facility)\nwhat language do people from bosnia speak?\tBosnian language\t12.197\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.bosnia_and_herzegovina))) (value (list (name fb:en.bosnian_language \"Bosnian language\") (name fb:en.croatian_language \"Croatian language\") (name fb:en.serbian_language \"Serbian language\"))) (type (union fb:language.human_language))\nwhat language do people from bosnia speak?\tCroatian language\t12.197\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.bosnia_and_herzegovina))) (value (list (name fb:en.bosnian_language \"Bosnian language\") (name fb:en.croatian_language \"Croatian language\") (name fb:en.serbian_language \"Serbian language\"))) (type (union fb:language.human_language))\nwhat language do people from bosnia speak?\tSerbian language\t12.197\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.bosnia_and_herzegovina))) (value (list (name fb:en.bosnian_language \"Bosnian language\") (name fb:en.croatian_language \"Croatian language\") (name fb:en.serbian_language \"Serbian language\"))) (type (union fb:language.human_language))\nwho does japan import from?\tUnited States dollar\t7.702\tformula ((lambda x (!fb:location.imports_and_exports.currency (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.japan)) (value (list (name fb:en.us \"United States dollar\") (name fb:en.canadian_dollar \"Canadian dollar\"))) (type fb:finance.currency)\nwho does japan import from?\tCanadian dollar\t7.702\tformula ((lambda x (!fb:location.imports_and_exports.currency (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.japan)) (value (list (name fb:en.us \"United States dollar\") (name fb:en.canadian_dollar \"Canadian dollar\"))) (type fb:finance.currency)\nwhat is the name of sonia gandhi daughter?\tRahul Gandhi\t10.217\tformula (!fb:people.person.children fb:en.sonia_gandhi)) (value (list (name fb:en.rahul_gandhi \"Rahul Gandhi\") (name fb:en.priyanka_gandhi \"Priyanka Vadra\"))) (type fb:people.person)\nwhat is the name of sonia gandhi daughter?\tPriyanka Vadra\t10.217\tformula (!fb:people.person.children fb:en.sonia_gandhi)) (value (list (name fb:en.rahul_gandhi \"Rahul Gandhi\") (name fb:en.priyanka_gandhi \"Priyanka Vadra\"))) (type fb:people.person)\nwhere did charles darwin die?\tHeart failure\t9.32\tformula (fb:people.cause_of_death.people fb:en.charles_darwin)) (value (list (name fb:en.congestive_heart_failure \"Heart failure\") (name fb:en.coronary_thrombosis \"Coronary thrombosis\"))) (type fb:people.cause_of_death)\nwhere did charles darwin die?\tCoronary thrombosis\t9.32\tformula (fb:people.cause_of_death.people fb:en.charles_darwin)) (value (list (name fb:en.congestive_heart_failure \"Heart failure\") (name fb:en.coronary_thrombosis \"Coronary thrombosis\"))) (type fb:people.cause_of_death)\nwhat movies does nick cannon play in?\tAll That\t11.855\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.nick_cannon))) (value (list (name fb:en.bobby Bobby) (name fb:en.drumline_2002 Drumline) (name fb:en.all_that \"All That\") (name fb:en.the_nick_cannon_show \"The Nick Cannon Show\"))) (type (union fb:award.award_nominated_work))\nwhat movies does nick cannon play in?\tThe Nick Cannon Show\t11.855\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.nick_cannon))) (value (list (name fb:en.bobby Bobby) (name fb:en.drumline_2002 Drumline) (name fb:en.all_that \"All That\") (name fb:en.the_nick_cannon_show \"The Nick Cannon Show\"))) (type (union fb:award.award_nominated_work))\nwhen did the big earthquake hit san francisco?\tPiper Halliwell\t12.564\tformula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell \"Piper Halliwell\") (name fb:en.hikaru_sulu \"Hikaru Sulu\") (name fb:en.prue_halliwell \"Prue Halliwell\") (name fb:en.phoebe_halliwell \"Phoebe Halliwell\") (name fb:en.angar_the_screamer \"Angar the Screamer\") (name fb:en.chris_halliwell \"Chris Halliwell\") (name fb:en.wyatt_halliwell \"Wyatt Halliwell\"))) (type fb:fictional_universe.fictional_character)\nwhen did the big earthquake hit san francisco?\tHikaru Sulu\t12.564\tformula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell \"Piper Halliwell\") (name fb:en.hikaru_sulu \"Hikaru Sulu\") (name fb:en.prue_halliwell \"Prue Halliwell\") (name fb:en.phoebe_halliwell \"Phoebe Halliwell\") (name fb:en.angar_the_screamer \"Angar the Screamer\") (name fb:en.chris_halliwell \"Chris Halliwell\") (name fb:en.wyatt_halliwell \"Wyatt Halliwell\"))) (type fb:fictional_universe.fictional_character)\nwhen did the big earthquake hit san francisco?\tPrue Halliwell\t12.564\tformula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell \"Piper Halliwell\") (name fb:en.hikaru_sulu \"Hikaru Sulu\") (name fb:en.prue_halliwell \"Prue Halliwell\") (name fb:en.phoebe_halliwell \"Phoebe Halliwell\") (name fb:en.angar_the_screamer \"Angar the Screamer\") (name fb:en.chris_halliwell \"Chris Halliwell\") (name fb:en.wyatt_halliwell \"Wyatt Halliwell\"))) (type fb:fictional_universe.fictional_character)\nwhen did the big earthquake hit san francisco?\tPhoebe Halliwell\t12.564\tformula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell \"Piper Halliwell\") (name fb:en.hikaru_sulu \"Hikaru Sulu\") (name fb:en.prue_halliwell \"Prue Halliwell\") (name fb:en.phoebe_halliwell \"Phoebe Halliwell\") (name fb:en.angar_the_screamer \"Angar the Screamer\") (name fb:en.chris_halliwell \"Chris Halliwell\") (name fb:en.wyatt_halliwell \"Wyatt Halliwell\"))) (type fb:fictional_universe.fictional_character)\nwhen did the big earthquake hit san francisco?\tAngar the Screamer\t12.564\tformula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell \"Piper Halliwell\") (name fb:en.hikaru_sulu \"Hikaru Sulu\") (name fb:en.prue_halliwell \"Prue Halliwell\") (name fb:en.phoebe_halliwell \"Phoebe Halliwell\") (name fb:en.angar_the_screamer \"Angar the Screamer\") (name fb:en.chris_halliwell \"Chris Halliwell\") (name fb:en.wyatt_halliwell \"Wyatt Halliwell\"))) (type fb:fictional_universe.fictional_character)\nwhen did the big earthquake hit san francisco?\tChris Halliwell\t12.564\tformula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell \"Piper Halliwell\") (name fb:en.hikaru_sulu \"Hikaru Sulu\") (name fb:en.prue_halliwell \"Prue Halliwell\") (name fb:en.phoebe_halliwell \"Phoebe Halliwell\") (name fb:en.angar_the_screamer \"Angar the Screamer\") (name fb:en.chris_halliwell \"Chris Halliwell\") (name fb:en.wyatt_halliwell \"Wyatt Halliwell\"))) (type fb:fictional_universe.fictional_character)\nwhen did the big earthquake hit san francisco?\tWyatt Halliwell\t12.564\tformula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell \"Piper Halliwell\") (name fb:en.hikaru_sulu \"Hikaru Sulu\") (name fb:en.prue_halliwell \"Prue Halliwell\") (name fb:en.phoebe_halliwell \"Phoebe Halliwell\") (name fb:en.angar_the_screamer \"Angar the Screamer\") (name fb:en.chris_halliwell \"Chris Halliwell\") (name fb:en.wyatt_halliwell \"Wyatt Halliwell\"))) (type fb:fictional_universe.fictional_character)\nwho was king george vi married to?\tQueen Elizabeth The Queen Mother\t14.383\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.george_vi_of_the_united_kingdom)) (value (list (name fb:en.elizabeth_bowes-lyon \"Queen Elizabeth The Queen Mother\"))) (type fb:people.person)\nwho voiced darth vader in the original star wars movies?\tDavid Prowse\t7.45\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader in the original star wars movies?\tJames Earl Jones\t7.45\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader in the original star wars movies?\tHayden Christensen\t7.45\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader in the original star wars movies?\tMatt Lanter\t7.45\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader in the original star wars movies?\tSebastian Shaw\t7.45\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader in the original star wars movies?\tRobert E. Bean\t7.45\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho voiced darth vader in the original star wars movies?\tJake Lloyd\t7.45\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwhat high school did maya angelou go to?\tGeorge Washington High School\t18.934\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.maya_angelou))) (value (list (name fb:en.george_washington_high_school \"George Washington High School\") (name fb:m.0t5458w \"California Labor School\"))) (type fb:education.educational_institution)\nwhat high school did maya angelou go to?\tCalifornia Labor School\t18.934\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.maya_angelou))) (value (list (name fb:en.george_washington_high_school \"George Washington High School\") (name fb:m.0t5458w \"California Labor School\"))) (type fb:education.educational_institution)\nwhere did mubarak get his wealth?\tAl Minufiyah\t4.22\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.people_born_here fb:en.hosni_mubarak))) (value (list (name fb:en.al_minufiyah \"Al Minufiyah\"))) (type fb:location.location)\nwho was the leader of the first communist party of china?\tLi Zhaoxing\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tLin Shusen\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tZhang Wentian\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tZhao Hongzhu\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tLi Keqiang\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tHuang Ju\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tLi Ruihuan\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tZhang Guotao\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tRewi Alley\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwho was the leader of the first communist party of china?\tBai Enpei\t16.066\tformula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing \"Li Zhaoxing\") (name fb:en.lin_shusen \"Lin Shusen\") (name fb:en.zhang_wentian \"Zhang Wentian\") (name fb:en.zhao_hongzhu \"Zhao Hongzhu\") (name fb:en.li_keqiang \"Li Keqiang\") (name fb:en.huang_ju \"Huang Ju\") (name fb:en.li_ruihuan \"Li Ruihuan\") (name fb:en.zhang_guotao \"Zhang Guotao\") (name fb:en.rewi_alley \"Rewi Alley\") (name fb:en.bai_enpei \"Bai Enpei\"))) (type fb:government.politician)\nwhat did miles davis died of?\tRespiratory failure\t18.65\tformula (fb:people.cause_of_death.people fb:en.miles_davis)) (value (list (name fb:en.pneumonia Pneumonia) (name fb:en.respiratory_failure \"Respiratory failure\") (name fb:en.stroke Stroke))) (type fb:people.cause_of_death)\nwhen did the detroit pistons last win the championship?\t1990 NBA Finals\t21.049\tformula (fb:sports.sports_championship_event.champion fb:en.detroit_pistons)) (value (list (name fb:en.1990_nba_finals \"1990 NBA Finals\") (name fb:en.2004_nba_finals \"2004 NBA Finals\") (name fb:en.1989_nba_finals \"1989 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did the detroit pistons last win the championship?\t2004 NBA Finals\t21.049\tformula (fb:sports.sports_championship_event.champion fb:en.detroit_pistons)) (value (list (name fb:en.1990_nba_finals \"1990 NBA Finals\") (name fb:en.2004_nba_finals \"2004 NBA Finals\") (name fb:en.1989_nba_finals \"1989 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did the detroit pistons last win the championship?\t1989 NBA Finals\t21.049\tformula (fb:sports.sports_championship_event.champion fb:en.detroit_pistons)) (value (list (name fb:en.1990_nba_finals \"1990 NBA Finals\") (name fb:en.2004_nba_finals \"2004 NBA Finals\") (name fb:en.1989_nba_finals \"1989 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did the philadelphia flyers win the cup?\t1975 Stanley Cup Finals\t17.762\tformula (fb:sports.sports_championship_event.champion fb:en.philadelphia_flyers)) (value (list (name fb:en.1975_stanley_cup_finals \"1975 Stanley Cup Finals\") (name fb:en.1974_stanley_cup_finals \"1974 Stanley Cup Finals\"))) (type fb:sports.sports_championship_event)\nwhen did the philadelphia flyers win the cup?\t1974 Stanley Cup Finals\t17.762\tformula (fb:sports.sports_championship_event.champion fb:en.philadelphia_flyers)) (value (list (name fb:en.1975_stanley_cup_finals \"1975 Stanley Cup Finals\") (name fb:en.1974_stanley_cup_finals \"1974 Stanley Cup Finals\"))) (type fb:sports.sports_championship_event)\nwho is number 22 for the dallas cowboys?\tGerald Sensabaugh\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tStephen Bowen\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tLance Rentzel\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tAndre Gurode\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tRoy Williams\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tPhillippi Sparks\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tStephen McGee\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tMike Ditka\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tMontrae Holland\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwho is number 22 for the dallas cowboys?\tMarvin White\t12.077\tformula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh \"Gerald Sensabaugh\") (name fb:en.stephen_bowen_1984 \"Stephen Bowen\") (name fb:en.lance_rentzel \"Lance Rentzel\") (name fb:en.andre_gurode \"Andre Gurode\") (name fb:en.roy_williams_1980 \"Roy Williams\") (name fb:en.phillippi_sparks \"Phillippi Sparks\") (name fb:en.stephen_mcgee \"Stephen McGee\") (name fb:en.mike_ditka \"Mike Ditka\") (name fb:en.montrae_holland \"Montrae Holland\") (name fb:en.marvin_white \"Marvin White\"))) (type fb:american_football.football_player)\nwhat county is st paul nc in?\tCollin County\t10.933\tformula (!fb:location.hud_county_place.county fb:en.st_paul_texas)) (value (list (name fb:en.collin_county \"Collin County\"))) (type fb:location.us_county)\nwhere is olympic national park wa?\tNational park\t0.716\tformula (!fb:protected_sites.protected_site.iucn_category fb:en.olympic_national_park)) (value (list (name fb:en.national_park \"National park\"))) (type fb:protected_sites.iucn_category)\nwhere did nat turner 1831 rebellion occur?\tSouthampton County\t2.22\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.people_born_here fb:en.nat_turner))) (value (list (name fb:en.southampton_county \"Southampton County\"))) (type fb:location.location)\nwho would play luke skywalker?\tMark Hamill\t9.59\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.luke_skywalker)) (value (list (name fb:en.mark_hamill \"Mark Hamill\"))) (type fb:film.actor)\nwho won the presidential election in egypt 2012?\tHesham Kandil\t16.515\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.egypt) (fb:government.government_position_held.from (date 2012 -1 -1))))) (value (list (name fb:m.0kb9hhw \"Hesham Kandil\") (name fb:m.0hzrhrc \"Saad El-Katatni\") (name fb:m.0gy0m9w \"Mohamed Morsi\"))) (type fb:government.politician)\nwho won the presidential election in egypt 2012?\tSaad El-Katatni\t16.515\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.egypt) (fb:government.government_position_held.from (date 2012 -1 -1))))) (value (list (name fb:m.0kb9hhw \"Hesham Kandil\") (name fb:m.0hzrhrc \"Saad El-Katatni\") (name fb:m.0gy0m9w \"Mohamed Morsi\"))) (type fb:government.politician)\nwho won the presidential election in egypt 2012?\tMohamed Morsi\t16.515\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.egypt) (fb:government.government_position_held.from (date 2012 -1 -1))))) (value (list (name fb:m.0kb9hhw \"Hesham Kandil\") (name fb:m.0hzrhrc \"Saad El-Katatni\") (name fb:m.0gy0m9w \"Mohamed Morsi\"))) (type fb:government.politician)\nwhat state is barack obama from?\tBarack Obama (Fred Armisen)\t7.558\tformula (!fb:base.saturdaynightlive.person_impersonated_on_snl.snl_impersonations fb:en.barack_obama)) (value (list (name fb:en.barack_obama_fred_armisen \"Barack Obama (Fred Armisen)\"))) (type fb:base.saturdaynightlive.snl_character)\nwhat years did joe montana win super bowl?\tSuper Bowl XXXVII\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl XXII\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl XI\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl XIII\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl XVIII\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl XLIV\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl XLVI\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl XXVII\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl III\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwhat years did joe montana win super bowl?\tSuper Bowl XXVI\t9.723\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii \"Super Bowl XXXVII\") (name fb:en.super_bowl_xxii \"Super Bowl XXII\") (name fb:en.super_bowl_xi \"Super Bowl XI\") (name fb:en.super_bowl_xiii \"Super Bowl XIII\") (name fb:en.super_bowl_xviii \"Super Bowl XVIII\") (name fb:en.super_bowl_xliv \"Super Bowl XLIV\") (name fb:en.super_bowl_xlvi \"Super Bowl XLVI\") (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_iii \"Super Bowl III\") (name fb:en.super_bowl_xxvi \"Super Bowl XXVI\"))) (type (union fb:sports.sports_championship_event))\nwho should the minnesota vikings draft?\tErasmus James\t12.778\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james \"Erasmus James\") (name fb:en.adrian_peterson \"Adrian Peterson\") (name fb:en.randy_moss \"Randy Moss\") (name fb:en.kevin_williams \"Kevin Williams\") (name fb:en.chad_greenway \"Chad Greenway\") (name fb:en.sidney_rice \"Sidney Rice\") (name fb:en.troy_williamson \"Troy Williamson\") (name fb:en.kenechi_udeze \"Kenechi Udeze\"))) (type fb:sports.drafted_athlete)\nwho should the minnesota vikings draft?\tAdrian Peterson\t12.778\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james \"Erasmus James\") (name fb:en.adrian_peterson \"Adrian Peterson\") (name fb:en.randy_moss \"Randy Moss\") (name fb:en.kevin_williams \"Kevin Williams\") (name fb:en.chad_greenway \"Chad Greenway\") (name fb:en.sidney_rice \"Sidney Rice\") (name fb:en.troy_williamson \"Troy Williamson\") (name fb:en.kenechi_udeze \"Kenechi Udeze\"))) (type fb:sports.drafted_athlete)\nwho should the minnesota vikings draft?\tRandy Moss\t12.778\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james \"Erasmus James\") (name fb:en.adrian_peterson \"Adrian Peterson\") (name fb:en.randy_moss \"Randy Moss\") (name fb:en.kevin_williams \"Kevin Williams\") (name fb:en.chad_greenway \"Chad Greenway\") (name fb:en.sidney_rice \"Sidney Rice\") (name fb:en.troy_williamson \"Troy Williamson\") (name fb:en.kenechi_udeze \"Kenechi Udeze\"))) (type fb:sports.drafted_athlete)\nwho should the minnesota vikings draft?\tKevin Williams\t12.778\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james \"Erasmus James\") (name fb:en.adrian_peterson \"Adrian Peterson\") (name fb:en.randy_moss \"Randy Moss\") (name fb:en.kevin_williams \"Kevin Williams\") (name fb:en.chad_greenway \"Chad Greenway\") (name fb:en.sidney_rice \"Sidney Rice\") (name fb:en.troy_williamson \"Troy Williamson\") (name fb:en.kenechi_udeze \"Kenechi Udeze\"))) (type fb:sports.drafted_athlete)\nwho should the minnesota vikings draft?\tChad Greenway\t12.778\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james \"Erasmus James\") (name fb:en.adrian_peterson \"Adrian Peterson\") (name fb:en.randy_moss \"Randy Moss\") (name fb:en.kevin_williams \"Kevin Williams\") (name fb:en.chad_greenway \"Chad Greenway\") (name fb:en.sidney_rice \"Sidney Rice\") (name fb:en.troy_williamson \"Troy Williamson\") (name fb:en.kenechi_udeze \"Kenechi Udeze\"))) (type fb:sports.drafted_athlete)\nwho should the minnesota vikings draft?\tSidney Rice\t12.778\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james \"Erasmus James\") (name fb:en.adrian_peterson \"Adrian Peterson\") (name fb:en.randy_moss \"Randy Moss\") (name fb:en.kevin_williams \"Kevin Williams\") (name fb:en.chad_greenway \"Chad Greenway\") (name fb:en.sidney_rice \"Sidney Rice\") (name fb:en.troy_williamson \"Troy Williamson\") (name fb:en.kenechi_udeze \"Kenechi Udeze\"))) (type fb:sports.drafted_athlete)\nwho should the minnesota vikings draft?\tTroy Williamson\t12.778\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james \"Erasmus James\") (name fb:en.adrian_peterson \"Adrian Peterson\") (name fb:en.randy_moss \"Randy Moss\") (name fb:en.kevin_williams \"Kevin Williams\") (name fb:en.chad_greenway \"Chad Greenway\") (name fb:en.sidney_rice \"Sidney Rice\") (name fb:en.troy_williamson \"Troy Williamson\") (name fb:en.kenechi_udeze \"Kenechi Udeze\"))) (type fb:sports.drafted_athlete)\nwho should the minnesota vikings draft?\tKenechi Udeze\t12.778\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james \"Erasmus James\") (name fb:en.adrian_peterson \"Adrian Peterson\") (name fb:en.randy_moss \"Randy Moss\") (name fb:en.kevin_williams \"Kevin Williams\") (name fb:en.chad_greenway \"Chad Greenway\") (name fb:en.sidney_rice \"Sidney Rice\") (name fb:en.troy_williamson \"Troy Williamson\") (name fb:en.kenechi_udeze \"Kenechi Udeze\"))) (type fb:sports.drafted_athlete)\nwhat awards gary paulsen won?\tNewbery Honor\t8.661\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor \"Newbery Honor\") (name fb:en.anne_v_zarrow_award_for_young_readers_literature \"Anne V. Zarrow Award for Young Readers' Literature\") (name fb:en.dorothy_canfield_fisher_childrens_book_award \"Dorothy Canfield Fisher Children's Book Award\") (name fb:en.spur_award_for_best_juvenile_nonfiction \"Spur Award for Best Juvenile Nonfiction\") (name fb:en.regina_medal \"Regina Medal\") (name fb:en.spur_award_for_best_juvenile_fiction \"Spur Award for Best Juvenile Fiction\"))) (type (union fb:award.award_category))\nwhat awards gary paulsen won?\tAnne V. Zarrow Award for Young Readers' Literature\t8.661\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor \"Newbery Honor\") (name fb:en.anne_v_zarrow_award_for_young_readers_literature \"Anne V. Zarrow Award for Young Readers' Literature\") (name fb:en.dorothy_canfield_fisher_childrens_book_award \"Dorothy Canfield Fisher Children's Book Award\") (name fb:en.spur_award_for_best_juvenile_nonfiction \"Spur Award for Best Juvenile Nonfiction\") (name fb:en.regina_medal \"Regina Medal\") (name fb:en.spur_award_for_best_juvenile_fiction \"Spur Award for Best Juvenile Fiction\"))) (type (union fb:award.award_category))\nwhat awards gary paulsen won?\tDorothy Canfield Fisher Children's Book Award\t8.661\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor \"Newbery Honor\") (name fb:en.anne_v_zarrow_award_for_young_readers_literature \"Anne V. Zarrow Award for Young Readers' Literature\") (name fb:en.dorothy_canfield_fisher_childrens_book_award \"Dorothy Canfield Fisher Children's Book Award\") (name fb:en.spur_award_for_best_juvenile_nonfiction \"Spur Award for Best Juvenile Nonfiction\") (name fb:en.regina_medal \"Regina Medal\") (name fb:en.spur_award_for_best_juvenile_fiction \"Spur Award for Best Juvenile Fiction\"))) (type (union fb:award.award_category))\nwhat awards gary paulsen won?\tSpur Award for Best Juvenile Nonfiction\t8.661\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor \"Newbery Honor\") (name fb:en.anne_v_zarrow_award_for_young_readers_literature \"Anne V. Zarrow Award for Young Readers' Literature\") (name fb:en.dorothy_canfield_fisher_childrens_book_award \"Dorothy Canfield Fisher Children's Book Award\") (name fb:en.spur_award_for_best_juvenile_nonfiction \"Spur Award for Best Juvenile Nonfiction\") (name fb:en.regina_medal \"Regina Medal\") (name fb:en.spur_award_for_best_juvenile_fiction \"Spur Award for Best Juvenile Fiction\"))) (type (union fb:award.award_category))\nwhat awards gary paulsen won?\tRegina Medal\t8.661\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor \"Newbery Honor\") (name fb:en.anne_v_zarrow_award_for_young_readers_literature \"Anne V. Zarrow Award for Young Readers' Literature\") (name fb:en.dorothy_canfield_fisher_childrens_book_award \"Dorothy Canfield Fisher Children's Book Award\") (name fb:en.spur_award_for_best_juvenile_nonfiction \"Spur Award for Best Juvenile Nonfiction\") (name fb:en.regina_medal \"Regina Medal\") (name fb:en.spur_award_for_best_juvenile_fiction \"Spur Award for Best Juvenile Fiction\"))) (type (union fb:award.award_category))\nwhat awards gary paulsen won?\tSpur Award for Best Juvenile Fiction\t8.661\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor \"Newbery Honor\") (name fb:en.anne_v_zarrow_award_for_young_readers_literature \"Anne V. Zarrow Award for Young Readers' Literature\") (name fb:en.dorothy_canfield_fisher_childrens_book_award \"Dorothy Canfield Fisher Children's Book Award\") (name fb:en.spur_award_for_best_juvenile_nonfiction \"Spur Award for Best Juvenile Nonfiction\") (name fb:en.regina_medal \"Regina Medal\") (name fb:en.spur_award_for_best_juvenile_fiction \"Spur Award for Best Juvenile Fiction\"))) (type (union fb:award.award_category))\nwhere did alexander graham bell die?\tDiabetes mellitus\t9.379\tformula (fb:people.cause_of_death.people fb:en.alexander_graham_bell)) (value (list (name fb:en.diabetes_mellitus \"Diabetes mellitus\") (name fb:en.pernicious_anemia \"Pernicious anemia\"))) (type fb:people.cause_of_death)\nwhere did alexander graham bell die?\tPernicious anemia\t9.379\tformula (fb:people.cause_of_death.people fb:en.alexander_graham_bell)) (value (list (name fb:en.diabetes_mellitus \"Diabetes mellitus\") (name fb:en.pernicious_anemia \"Pernicious anemia\"))) (type fb:people.cause_of_death)\nwhat year did the golden state warriors win their first nba championship?\t1975 NBA Finals\t17.537\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.golden_state_warriors))) (value (list (name fb:en.1975_nba_finals \"1975 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhat currency should i take to turkey?\tTurkish lira\t23.416\tformula (!fb:location.country.currency_used fb:en.turkey)) (value (list (name fb:en.turkish_lira \"Turkish lira\"))) (type fb:finance.currency)\nwhat type of government did mexico have?\tFederal republic\t12.536\tformula (fb:government.form_of_government.countries fb:en.mexico)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government did mexico have?\tPresidential system\t12.536\tformula (fb:government.form_of_government.countries fb:en.mexico)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government did mexico have?\tConstitutional republic\t12.536\tformula (fb:government.form_of_government.countries fb:en.mexico)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat countries are in the uk yahoo?\tUnited Kingdom\t16.246\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries are in the uk yahoo?\tNorthern Ireland\t16.246\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries are in the uk yahoo?\tKingdom of Great Britain\t16.246\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries are in the uk yahoo?\tKingdom of England\t16.246\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries are in the uk yahoo?\tIsle of Man\t16.246\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat superbowl did the baltimore ravens win?\tSuper Bowl XLVII\t16.027\tformula (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens)) (value (list (name fb:en.super_bowl_xlvii \"Super Bowl XLVII\") (name fb:en.super_bowl_xxxv \"Super Bowl XXXV\"))) (type fb:sports.sports_championship_event)\nwhat superbowl did the baltimore ravens win?\tSuper Bowl XXXV\t16.027\tformula (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens)) (value (list (name fb:en.super_bowl_xlvii \"Super Bowl XLVII\") (name fb:en.super_bowl_xxxv \"Super Bowl XXXV\"))) (type fb:sports.sports_championship_event)\nwhat is the language of russia s spoken?\tRussian Language\t18.874\tformula (!fb:location.country.official_language fb:en.russia)) (value (list (name fb:en.russian_language \"Russian Language\"))) (type fb:language.human_language)\nwho played lauren reed on alias?\tMelissa George\t4.213\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.lauren_reed)) (value (list (name fb:en.melissa_george \"Melissa George\"))) (type fb:tv.tv_actor)\nwho is the king of cambodia now?\tHun Sen\t13.339\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.cambodia)) (value (list (name fb:en.hun_sen \"Hun Sen\") (name fb:en.norodom_sihamoni \"Norodom Sihamoni\"))) (type fb:government.politician)\nwho is the king of cambodia now?\tNorodom Sihamoni\t13.339\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.cambodia)) (value (list (name fb:en.hun_sen \"Hun Sen\") (name fb:en.norodom_sihamoni \"Norodom Sihamoni\"))) (type fb:government.politician)\nwho are serena williams parents?\tOracene Price\t8.701\tformula (!fb:people.person.parents fb:en.serena_williams)) (value (list (name fb:en.oracene_williams \"Oracene Price\") (name fb:en.richard_williams_1951 \"Richard Williams\"))) (type fb:people.person)\nwho are serena williams parents?\tRichard Williams\t8.701\tformula (!fb:people.person.parents fb:en.serena_williams)) (value (list (name fb:en.oracene_williams \"Oracene Price\") (name fb:en.richard_williams_1951 \"Richard Williams\"))) (type fb:people.person)\nwhat schools did sir isaac newton go to?\tThe King's School, Grantham\t19.175\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.sir_newton_isaac))) (value (list (name fb:en.the_kings_school_grantham \"The King's School, Grantham\") (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\"))) (type fb:education.educational_institution)\nwhat schools did sir isaac newton go to?\tTrinity College, Cambridge\t19.175\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.sir_newton_isaac))) (value (list (name fb:en.the_kings_school_grantham \"The King's School, Grantham\") (name fb:en.trinity_college_cambridge \"Trinity College, Cambridge\"))) (type fb:education.educational_institution)\nwhat was the cause of death for huell howser?\tProstate cancer\t17.228\tformula (and (fb:type.object.type fb:people.cause_of_death) (!fb:people.deceased_person.cause_of_death fb:en.huell_howser))) (value (list (name fb:en.prostate_cancer \"Prostate cancer\"))) (type (union fb:people.cause_of_death))\nwhat books are written by suzanne collins?\tThe Hunger Games\t14.513\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games \"The Hunger Games\") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret \"Gregor and the Marks of Secret\") (name fb:m.04t448h \"Gregor and the Code of Claw\") (name fb:en.gregor_the_overlander \"Gregor the Overlander\") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power \"When Charlie McButton lost power\") (name fb:m.0pbrmvq \"The Hunger Games Trilogy Boxed Set\") (name fb:m.05p6hh0 \"Catching Fire\") (name fb:en.gregor_and_the_prophecy_of_bane \"Gregor and the Prophecy of Bane\"))) (type (union fb:book.book))\nwhat books are written by suzanne collins?\tGregor and the Marks of Secret\t14.513\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games \"The Hunger Games\") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret \"Gregor and the Marks of Secret\") (name fb:m.04t448h \"Gregor and the Code of Claw\") (name fb:en.gregor_the_overlander \"Gregor the Overlander\") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power \"When Charlie McButton lost power\") (name fb:m.0pbrmvq \"The Hunger Games Trilogy Boxed Set\") (name fb:m.05p6hh0 \"Catching Fire\") (name fb:en.gregor_and_the_prophecy_of_bane \"Gregor and the Prophecy of Bane\"))) (type (union fb:book.book))\nwhat books are written by suzanne collins?\tGregor and the Code of Claw\t14.513\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games \"The Hunger Games\") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret \"Gregor and the Marks of Secret\") (name fb:m.04t448h \"Gregor and the Code of Claw\") (name fb:en.gregor_the_overlander \"Gregor the Overlander\") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power \"When Charlie McButton lost power\") (name fb:m.0pbrmvq \"The Hunger Games Trilogy Boxed Set\") (name fb:m.05p6hh0 \"Catching Fire\") (name fb:en.gregor_and_the_prophecy_of_bane \"Gregor and the Prophecy of Bane\"))) (type (union fb:book.book))\nwhat books are written by suzanne collins?\tGregor the Overlander\t14.513\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games \"The Hunger Games\") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret \"Gregor and the Marks of Secret\") (name fb:m.04t448h \"Gregor and the Code of Claw\") (name fb:en.gregor_the_overlander \"Gregor the Overlander\") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power \"When Charlie McButton lost power\") (name fb:m.0pbrmvq \"The Hunger Games Trilogy Boxed Set\") (name fb:m.05p6hh0 \"Catching Fire\") (name fb:en.gregor_and_the_prophecy_of_bane \"Gregor and the Prophecy of Bane\"))) (type (union fb:book.book))\nwhat books are written by suzanne collins?\tWhen Charlie McButton lost power\t14.513\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games \"The Hunger Games\") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret \"Gregor and the Marks of Secret\") (name fb:m.04t448h \"Gregor and the Code of Claw\") (name fb:en.gregor_the_overlander \"Gregor the Overlander\") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power \"When Charlie McButton lost power\") (name fb:m.0pbrmvq \"The Hunger Games Trilogy Boxed Set\") (name fb:m.05p6hh0 \"Catching Fire\") (name fb:en.gregor_and_the_prophecy_of_bane \"Gregor and the Prophecy of Bane\"))) (type (union fb:book.book))\nwhat books are written by suzanne collins?\tThe Hunger Games Trilogy Boxed Set\t14.513\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games \"The Hunger Games\") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret \"Gregor and the Marks of Secret\") (name fb:m.04t448h \"Gregor and the Code of Claw\") (name fb:en.gregor_the_overlander \"Gregor the Overlander\") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power \"When Charlie McButton lost power\") (name fb:m.0pbrmvq \"The Hunger Games Trilogy Boxed Set\") (name fb:m.05p6hh0 \"Catching Fire\") (name fb:en.gregor_and_the_prophecy_of_bane \"Gregor and the Prophecy of Bane\"))) (type (union fb:book.book))\nwhat books are written by suzanne collins?\tCatching Fire\t14.513\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games \"The Hunger Games\") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret \"Gregor and the Marks of Secret\") (name fb:m.04t448h \"Gregor and the Code of Claw\") (name fb:en.gregor_the_overlander \"Gregor the Overlander\") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power \"When Charlie McButton lost power\") (name fb:m.0pbrmvq \"The Hunger Games Trilogy Boxed Set\") (name fb:m.05p6hh0 \"Catching Fire\") (name fb:en.gregor_and_the_prophecy_of_bane \"Gregor and the Prophecy of Bane\"))) (type (union fb:book.book))\nwhat books are written by suzanne collins?\tGregor and the Prophecy of Bane\t14.513\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games \"The Hunger Games\") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret \"Gregor and the Marks of Secret\") (name fb:m.04t448h \"Gregor and the Code of Claw\") (name fb:en.gregor_the_overlander \"Gregor the Overlander\") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power \"When Charlie McButton lost power\") (name fb:m.0pbrmvq \"The Hunger Games Trilogy Boxed Set\") (name fb:m.05p6hh0 \"Catching Fire\") (name fb:en.gregor_and_the_prophecy_of_bane \"Gregor and the Prophecy of Bane\"))) (type (union fb:book.book))\nwhat team did messi play for in 2010?\tFC Barcelona C\t17.932\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.lionel_messi))) (value (list (name fb:en.fc_barcelona_c \"FC Barcelona C\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.fc_barcelona_b \"FC Barcelona B\") (name fb:en.argentina_national_football_team \"Argentina national football team\"))) (type fb:soccer.football_team)\nwhat team did messi play for in 2010?\tFC Barcelona\t17.932\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.lionel_messi))) (value (list (name fb:en.fc_barcelona_c \"FC Barcelona C\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.fc_barcelona_b \"FC Barcelona B\") (name fb:en.argentina_national_football_team \"Argentina national football team\"))) (type fb:soccer.football_team)\nwhat team did messi play for in 2010?\tFC Barcelona B\t17.932\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.lionel_messi))) (value (list (name fb:en.fc_barcelona_c \"FC Barcelona C\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.fc_barcelona_b \"FC Barcelona B\") (name fb:en.argentina_national_football_team \"Argentina national football team\"))) (type fb:soccer.football_team)\nwhat team did messi play for in 2010?\tArgentina national football team\t17.932\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.lionel_messi))) (value (list (name fb:en.fc_barcelona_c \"FC Barcelona C\") (name fb:en.fc_barcelona \"FC Barcelona\") (name fb:en.fc_barcelona_b \"FC Barcelona B\") (name fb:en.argentina_national_football_team \"Argentina national football team\"))) (type fb:soccer.football_team)\nwhat time zone is greensburg indiana?\tEastern Time Zone\t12.597\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.greensburg))) (value (list (name fb:en.north_american_eastern_time_zone \"Eastern Time Zone\"))) (type (union fb:time.time_zone))\nwhat fma stands for?\tBasic training aircraft\t6.765\tformula (fb:aviation.aircraft_type.aircraft_of_this_type fb:en.fma_ia_63_pampa)) (value (list (name fb:en.basic_training_aircraft \"Basic training aircraft\") (name fb:en.light_attack \"Light attack\"))) (type fb:aviation.aircraft_type)\nwhat fma stands for?\tLight attack\t6.765\tformula (fb:aviation.aircraft_type.aircraft_of_this_type fb:en.fma_ia_63_pampa)) (value (list (name fb:en.basic_training_aircraft \"Basic training aircraft\") (name fb:en.light_attack \"Light attack\"))) (type fb:aviation.aircraft_type)\nwho plays voldemort?\tRalph Fiennes\t6.893\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwho plays voldemort?\tChristian Coulson\t6.893\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwho plays voldemort?\tHero Fiennes-Tiffin\t6.893\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwho plays voldemort?\tRichard Bremmer\t6.893\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwho plays voldemort?\tFrank Dillane\t6.893\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwhat colleges did harper lee attend?\tUniversity of Oxford\t17.347\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.university)\nwhat colleges did harper lee attend?\tUniversity of Alabama School of Law\t17.347\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.university)\nwhat colleges did harper lee attend?\tHuntingdon College\t17.347\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.university)\nwhat colleges did harper lee attend?\tUniversity of Alabama\t17.347\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.university)\nwhat is the university of georgia known for?\tUnited States of America\t14.885\tformula (!fb:location.location.containedby fb:en.georgia)) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\") (name fb:en.conterminous_united_states \"Contiguous United States\") (name fb:en.southeastern_united_states \"Southeastern United States\"))) (type fb:location.location)\nwhat is the university of georgia known for?\tUnited States, with Territories\t14.885\tformula (!fb:location.location.containedby fb:en.georgia)) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\") (name fb:en.conterminous_united_states \"Contiguous United States\") (name fb:en.southeastern_united_states \"Southeastern United States\"))) (type fb:location.location)\nwhat is the university of georgia known for?\tContiguous United States\t14.885\tformula (!fb:location.location.containedby fb:en.georgia)) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\") (name fb:en.conterminous_united_states \"Contiguous United States\") (name fb:en.southeastern_united_states \"Southeastern United States\"))) (type fb:location.location)\nwhat is the university of georgia known for?\tSoutheastern United States\t14.885\tformula (!fb:location.location.containedby fb:en.georgia)) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:m.0hzc9m5 \"United States, with Territories\") (name fb:en.conterminous_united_states \"Contiguous United States\") (name fb:en.southeastern_united_states \"Southeastern United States\"))) (type fb:location.location)\nwhat jobs did john adams have before he was president?\tGeorge Washington\t18.733\tformula (!fb:government.us_vice_president.to_president fb:en.john_adams)) (value (list (name fb:en.george_washington \"George Washington\"))) (type fb:government.us_president)\nwhat political party did andrew johnson belong to?\tDemocratic Party\t19.585\tformula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.andrew_johnson))) (value (list (name fb:en.democrat_party \"Democratic Party\") (name fb:en.national_union_party \"National Union Party\") (name fb:en.republican_party \"Republican Party\"))) (type (union fb:government.political_party))\nwhat political party did andrew johnson belong to?\tNational Union Party\t19.585\tformula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.andrew_johnson))) (value (list (name fb:en.democrat_party \"Democratic Party\") (name fb:en.national_union_party \"National Union Party\") (name fb:en.republican_party \"Republican Party\"))) (type (union fb:government.political_party))\nwhat political party did andrew johnson belong to?\tRepublican Party\t19.585\tformula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.andrew_johnson))) (value (list (name fb:en.democrat_party \"Democratic Party\") (name fb:en.national_union_party \"National Union Party\") (name fb:en.republican_party \"Republican Party\"))) (type (union fb:government.political_party))\nwhere was osama bin laden killed?\tSaudi Arabia\t9.468\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.osama_bin_laden))) (value (list (name fb:en.pakistan Pakistan) (name fb:en.afghanistan Afghanistan) (name fb:en.sudan Sudan) (name fb:en.saudi_arabia \"Saudi Arabia\"))) (type fb:location.location)\nwhere are people who speak arabic from?\tSaudi Arabia\t10.578\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.arabic_language))) (value (list (name fb:en.israel Israel) (name fb:en.saudi_arabia \"Saudi Arabia\") (name fb:en.algeria Algeria) (name fb:en.yemen Yemen) (name fb:en.syria Syria) (name fb:en.chad Chad) (name fb:en.iraq Iraq) (name fb:en.sudan Sudan) (name fb:en.morocco Morocco) (name fb:en.kuwait Kuwait))) (type fb:location.country)\nwho was queen elizabeth ii mom?\tUnited Kingdom\t6.039\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwho was queen elizabeth ii mom?\tNew Zealand\t6.039\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwho was queen elizabeth ii mom?\tPapua New Guinea\t6.039\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwho was queen elizabeth ii mom?\tAntigua and Barbuda\t6.039\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwho was queen elizabeth ii mom?\tSaint Kitts and Nevis\t6.039\tformula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand \"New Zealand\") (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.antigua_and_barbuda \"Antigua and Barbuda\") (name fb:en.saint_kitts_and_nevis \"Saint Kitts and Nevis\") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom)\nwhat type of art did pablo picasso paint?\tCeramic art\t14.426\tformula (and (fb:type.object.type fb:visual_art.visual_art_form) (!fb:visual_art.visual_artist.art_forms fb:en.pablo_picasso))) (value (list (name fb:en.painting Painting) (name fb:en.sculpture Sculpture) (name fb:en.drawing Drawing) (name fb:en.printmaking Printmaking) (name fb:en.ceramics \"Ceramic art\"))) (type (union fb:visual_art.visual_art_form))\nwho did ricky martin started his career with?\tRicky Martin\t7.458\tformula (fb:organization.organization_founder.organizations_founded fb:en.ricky_martin_foundation)) (value (list (name fb:en.ricky_martin \"Ricky Martin\"))) (type fb:organization.organization_founder)\nwhat is ella fitzgerald parents name?\tWilliam Fitzgerald\t12.462\tformula (!fb:people.person.parents fb:en.ella_fitzgerald)) (value (list (name fb:m.0kcwjlw \"William Fitzgerald\") (name fb:m.0kcwjlp \"Temperance \\\"Tempie\\\" Fitzgerald\"))) (type fb:people.person)\nwhat is ella fitzgerald parents name?\tTemperance \\\t12.462\tformula (!fb:people.person.parents fb:en.ella_fitzgerald)) (value (list (name fb:m.0kcwjlw \"William Fitzgerald\") (name fb:m.0kcwjlp \"Temperance \\\"Tempie\\\" Fitzgerald\"))) (type fb:people.person)\nwhat is ella fitzgerald parents name?\t Fitzgerald\t12.462\tformula (!fb:people.person.parents fb:en.ella_fitzgerald)) (value (list (name fb:m.0kcwjlw \"William Fitzgerald\") (name fb:m.0kcwjlp \"Temperance \\\"Tempie\\\" Fitzgerald\"))) (type fb:people.person)\nwho is anne hathaway parents?\tGerald Hathaway\t9.612\tformula (!fb:people.person.parents fb:en.anne_hathaway)) (value (list (name fb:en.gerald_hathaway \"Gerald Hathaway\") (name fb:en.kate_mccauley_hathaway \"Kate McCauley Hathaway\"))) (type fb:people.person)\nwho is anne hathaway parents?\tKate McCauley Hathaway\t9.612\tformula (!fb:people.person.parents fb:en.anne_hathaway)) (value (list (name fb:en.gerald_hathaway \"Gerald Hathaway\") (name fb:en.kate_mccauley_hathaway \"Kate McCauley Hathaway\"))) (type fb:people.person)\nwho does don draper gets engaged to?\tBetty Draper\t12.047\tformula ((lambda x (fb:fictional_universe.fictional_character.married_to (fb:fictional_universe.marriage_of_fictional_characters.spouses (var x)))) fb:en.don_draper)) (value (list (name fb:en.betty_draper \"Betty Draper\"))) (type fb:fictional_universe.fictional_character)\nwhat was van halen first album?\tTop of the World\t10.111\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ \"Top of the World\") (name fb:m.0vs878g \"Up for Breakfast\") (name fb:en.best_of_van_halen_volume_1 \"Best Of, Volume 1\") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g \"A Different Kind of Truth\") (name fb:en.ou812 OU812) (name fb:m.01hm2vp \"The Best of Both Worlds\") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c \"Fire in the Hole\"))) (type (union fb:music.album))\nwhat was van halen first album?\tUp for Breakfast\t10.111\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ \"Top of the World\") (name fb:m.0vs878g \"Up for Breakfast\") (name fb:en.best_of_van_halen_volume_1 \"Best Of, Volume 1\") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g \"A Different Kind of Truth\") (name fb:en.ou812 OU812) (name fb:m.01hm2vp \"The Best of Both Worlds\") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c \"Fire in the Hole\"))) (type (union fb:music.album))\nwhat was van halen first album?\tBest Of, Volume 1\t10.111\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ \"Top of the World\") (name fb:m.0vs878g \"Up for Breakfast\") (name fb:en.best_of_van_halen_volume_1 \"Best Of, Volume 1\") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g \"A Different Kind of Truth\") (name fb:en.ou812 OU812) (name fb:m.01hm2vp \"The Best of Both Worlds\") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c \"Fire in the Hole\"))) (type (union fb:music.album))\nwhat was van halen first album?\tA Different Kind of Truth\t10.111\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ \"Top of the World\") (name fb:m.0vs878g \"Up for Breakfast\") (name fb:en.best_of_van_halen_volume_1 \"Best Of, Volume 1\") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g \"A Different Kind of Truth\") (name fb:en.ou812 OU812) (name fb:m.01hm2vp \"The Best of Both Worlds\") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c \"Fire in the Hole\"))) (type (union fb:music.album))\nwhat was van halen first album?\tThe Best of Both Worlds\t10.111\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ \"Top of the World\") (name fb:m.0vs878g \"Up for Breakfast\") (name fb:en.best_of_van_halen_volume_1 \"Best Of, Volume 1\") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g \"A Different Kind of Truth\") (name fb:en.ou812 OU812) (name fb:m.01hm2vp \"The Best of Both Worlds\") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c \"Fire in the Hole\"))) (type (union fb:music.album))\nwhat was van halen first album?\tFire in the Hole\t10.111\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ \"Top of the World\") (name fb:m.0vs878g \"Up for Breakfast\") (name fb:en.best_of_van_halen_volume_1 \"Best Of, Volume 1\") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g \"A Different Kind of Truth\") (name fb:en.ou812 OU812) (name fb:m.01hm2vp \"The Best of Both Worlds\") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c \"Fire in the Hole\"))) (type (union fb:music.album))\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California's 32nd Assembly District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California’s 65th Assembly District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California’s 29th Senate District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California’s 52nd Assembly District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California’s 74th Assembly District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California’s 73rd Assembly District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California’s 67th Assembly District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2000 Republican Primary, Georgia’s 7th Congressional District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California’s 25th Assembly District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat led to the split of the republican party in 1912?\t2008 Republican Primary, California’s 53rd Assembly District\t12.631\tformula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m \"2008 Republican Primary, California’s 32nd Assembly District\") (name fb:m.03yxcnl \"2008 Republican Primary, California’s 65th Assembly District\") (name fb:m.03yxdnz \"2008 Republican Primary, California’s 29th Senate District\") (name fb:m.03yxdvn \"2008 Republican Primary, California’s 52nd Assembly District\") (name fb:m.03yxc4n \"2008 Republican Primary, California’s 74th Assembly District\") (name fb:m.03yxd81 \"2008 Republican Primary, California’s 73rd Assembly District\") (name fb:m.03yxcdh \"2008 Republican Primary, California’s 67th Assembly District\") (name fb:m.0459x6l \"2000 Republican Primary, Georgia’s 7th Congressional District\") (name fb:m.03yxbsd \"2008 Republican Primary, California’s 25th Assembly District\") (name fb:m.03yxd1h \"2008 Republican Primary, California’s 53rd Assembly District\"))) (type fb:government.primary_election)\nwhat to see in toronto top 10?\tToronto Eaton Centre\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tNathan Phillips Square\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tBMO Field\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tArt Gallery of Ontario\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tGardiner Museum\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tMuseum of Contemporary Canadian Art\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tMcMichael Canadian Art Collection\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tBata Shoe Museum\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tCanada's Wonderland\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat to see in toronto top 10?\tAir Canada Centre\t15.407\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre \"Toronto Eaton Centre\") (name fb:en.nathan_phillips_square \"Nathan Phillips Square\") (name fb:en.bmo_field \"BMO Field\") (name fb:en.art_gallery_of_ontario \"Art Gallery of Ontario\") (name fb:en.gardiner_museum \"Gardiner Museum\") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto \"Museum of Contemporary Canadian Art\") (name fb:en.mcmichael_canadian_art_collection \"McMichael Canadian Art Collection\") (name fb:en.bata_shoe_museum \"Bata Shoe Museum\") (name fb:en.paramount_canadas_wonderland \"Canada's Wonderland\") (name fb:en.air_canada_centre \"Air Canada Centre\"))) (type fb:travel.tourist_attraction)\nwhat are the supreme court cases?\tEdwards v. Canada\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tMcKay v. The Queen\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tLovelace v. Ontario\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tMonsanto Canada Inc. v. Schmeiser\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tHenry Birks & Sons (Montreal) Ltd. v. the City of Montreal\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tPriestman v. Colangelo\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tDelisle v. Canada\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tKirkbi AG v. Ritvik Holdings Inc.\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tHaida Nation v. British Columbia\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat are the supreme court cases?\tKienapple v. The Queen\t8.779\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhen is the rainy season in bangkok thailand?\tEntertainment Weekly annotation index\t7.614\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.bangkok)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwhen is the rainy season in bangkok thailand?\tWSJ Speakeasy Index\t7.614\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.bangkok)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwhere did the israel palestine conflict start?\tYom Kippur War\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhere did the israel palestine conflict start?\tSix-Day War\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhere did the israel palestine conflict start?\tFirst Intifada\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhere did the israel palestine conflict start?\tSecond Lebanon War\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhere did the israel palestine conflict start?\tSuez Crisis\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhere did the israel palestine conflict start?\t1948 Arab–Israeli War\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhere did the israel palestine conflict start?\t1982 Lebanon War\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhere did the israel palestine conflict start?\tOperation Defensive Shield\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhere did the israel palestine conflict start?\tSouth Lebanon conflict (1982–2000)\t7.648\tformula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war \"Yom Kippur War\") (name fb:en.six-day_war \"Six-Day War\") (name fb:en.first_intifada \"First Intifada\") (name fb:en.2006_israel-lebanon_conflict \"Second Lebanon War\") (name fb:en.suez_crisis \"Suez Crisis\") (name fb:en.1948_arab-israeli_war \"1948 Arab–Israeli War\") (name fb:en.1982_lebanon_war \"1982 Lebanon War\") (name fb:en.operation_defensive_shield \"Operation Defensive Shield\") (name fb:en.1982-2000_south_lebanon_conflict \"South Lebanon conflict (1982–2000)\"))) (type fb:military.military_conflict)\nwhat country does alaska belong to?\tUnited States of America\t18.301\tformula (and (fb:type.object.type fb:location.country) (!fb:location.administrative_division.country fb:en.alaska))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type (union fb:location.country))\nwhere is kansas city?\tArrowhead Stadium\t4.823\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.citytown (var x)))) fb:en.kansas_city))) (value (list (name fb:en.arrowhead_stadium \"Arrowhead Stadium\") (name fb:en.national_golf_club_of_kansas_city \"National Golf Club of Kansas City\"))) (type fb:location.location)\nwhere is kansas city?\tNational Golf Club of Kansas City\t4.823\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.citytown (var x)))) fb:en.kansas_city))) (value (list (name fb:en.arrowhead_stadium \"Arrowhead Stadium\") (name fb:en.national_golf_club_of_kansas_city \"National Golf Club of Kansas City\"))) (type fb:location.location)\nwhat was pink floyd's first album?\tA Momentary Lapse of Reason\t11.502\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason \"A Momentary Lapse of Reason\") (name fb:en.oh_by_the_way_disc_16_the_division_bell \"Oh by the Way (disc 7: Meddle)\") (name fb:en.another_brick_in_the_wall_part_ii \"Another Brick in the Wall, Part 2\") (name fb:en.wish_you_were_here \"Wish You Were Here\") (name fb:en.atom_heart_mother \"Atom Heart Mother\") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm \"Take It Back\") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg \"High Hopes\"))) (type (union fb:music.album))\nwhat was pink floyd's first album?\tOh by the Way (disc 7: Meddle)\t11.502\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason \"A Momentary Lapse of Reason\") (name fb:en.oh_by_the_way_disc_16_the_division_bell \"Oh by the Way (disc 7: Meddle)\") (name fb:en.another_brick_in_the_wall_part_ii \"Another Brick in the Wall, Part 2\") (name fb:en.wish_you_were_here \"Wish You Were Here\") (name fb:en.atom_heart_mother \"Atom Heart Mother\") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm \"Take It Back\") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg \"High Hopes\"))) (type (union fb:music.album))\nwhat was pink floyd's first album?\tAnother Brick in the Wall, Part 2\t11.502\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason \"A Momentary Lapse of Reason\") (name fb:en.oh_by_the_way_disc_16_the_division_bell \"Oh by the Way (disc 7: Meddle)\") (name fb:en.another_brick_in_the_wall_part_ii \"Another Brick in the Wall, Part 2\") (name fb:en.wish_you_were_here \"Wish You Were Here\") (name fb:en.atom_heart_mother \"Atom Heart Mother\") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm \"Take It Back\") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg \"High Hopes\"))) (type (union fb:music.album))\nwhat was pink floyd's first album?\tWish You Were Here\t11.502\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason \"A Momentary Lapse of Reason\") (name fb:en.oh_by_the_way_disc_16_the_division_bell \"Oh by the Way (disc 7: Meddle)\") (name fb:en.another_brick_in_the_wall_part_ii \"Another Brick in the Wall, Part 2\") (name fb:en.wish_you_were_here \"Wish You Were Here\") (name fb:en.atom_heart_mother \"Atom Heart Mother\") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm \"Take It Back\") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg \"High Hopes\"))) (type (union fb:music.album))\nwhat was pink floyd's first album?\tAtom Heart Mother\t11.502\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason \"A Momentary Lapse of Reason\") (name fb:en.oh_by_the_way_disc_16_the_division_bell \"Oh by the Way (disc 7: Meddle)\") (name fb:en.another_brick_in_the_wall_part_ii \"Another Brick in the Wall, Part 2\") (name fb:en.wish_you_were_here \"Wish You Were Here\") (name fb:en.atom_heart_mother \"Atom Heart Mother\") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm \"Take It Back\") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg \"High Hopes\"))) (type (union fb:music.album))\nwhat was pink floyd's first album?\tTake It Back\t11.502\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason \"A Momentary Lapse of Reason\") (name fb:en.oh_by_the_way_disc_16_the_division_bell \"Oh by the Way (disc 7: Meddle)\") (name fb:en.another_brick_in_the_wall_part_ii \"Another Brick in the Wall, Part 2\") (name fb:en.wish_you_were_here \"Wish You Were Here\") (name fb:en.atom_heart_mother \"Atom Heart Mother\") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm \"Take It Back\") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg \"High Hopes\"))) (type (union fb:music.album))\nwhat was pink floyd's first album?\tHigh Hopes\t11.502\tformula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason \"A Momentary Lapse of Reason\") (name fb:en.oh_by_the_way_disc_16_the_division_bell \"Oh by the Way (disc 7: Meddle)\") (name fb:en.another_brick_in_the_wall_part_ii \"Another Brick in the Wall, Part 2\") (name fb:en.wish_you_were_here \"Wish You Were Here\") (name fb:en.atom_heart_mother \"Atom Heart Mother\") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm \"Take It Back\") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg \"High Hopes\"))) (type (union fb:music.album))\nwho did granville t. woods married?\tChristian Dior\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tJacques Gamblin\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tGeorges René Le Peley de Pléville\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tÉtienne-François Letourneur\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tChristophe Auguin\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tPierre Dumanoir le Pelley\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tÉmile Paul Amable Guépratte\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tPierre-Alexis Ponsot\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tMaurice Denis\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwho did granville t. woods married?\tMyrtille Georges\t-3.818\tformula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior \"Christian Dior\") (name fb:en.jacques_gamblin \"Jacques Gamblin\") (name fb:en.georges_rene_le_peley_de_pleville \"Georges René Le Peley de Pléville\") (name fb:en.etienne_louis_francois_honore_letourneur \"Étienne-François Letourneur\") (name fb:m.0g5g42w \"Christophe Auguin\") (name fb:en.pierre_dumanoir_le_pelley \"Pierre Dumanoir le Pelley\") (name fb:en.emile_paul_amable_guepratte \"Émile Paul Amable Guépratte\") (name fb:m.0k8lz32 \"Pierre-Alexis Ponsot\") (name fb:en.maurice_denis \"Maurice Denis\") (name fb:m.0n4b4zk \"Myrtille Georges\"))) (type fb:people.person)\nwhat type of government did thomas jefferson prefer?\tVice President\t9.285\tformula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.politician.government_positions_held (var x)))) fb:en.thomas_jefferson)) (value (list (name fb:en.vice_president \"Vice President\") (name fb:en.president President) (name fb:en.governor Governor) (name fb:en.secretary_of_state \"Secretary of State\"))) (type fb:government.government_office_category)\nwhat type of government did thomas jefferson prefer?\tSecretary of State\t9.285\tformula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.politician.government_positions_held (var x)))) fb:en.thomas_jefferson)) (value (list (name fb:en.vice_president \"Vice President\") (name fb:en.president President) (name fb:en.governor Governor) (name fb:en.secretary_of_state \"Secretary of State\"))) (type fb:government.government_office_category)\nwhat language did the sioux indians speak?\tEnglish Language\t11.395\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.sioux))) (value (list (name fb:en.english \"English Language\") (name fb:en.french \"French Language\") (name fb:en.sioux_language \"Sioux language\"))) (type fb:language.human_language)\nwhat language did the sioux indians speak?\tFrench Language\t11.395\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.sioux))) (value (list (name fb:en.english \"English Language\") (name fb:en.french \"French Language\") (name fb:en.sioux_language \"Sioux language\"))) (type fb:language.human_language)\nwhat language did the sioux indians speak?\tSioux language\t11.395\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.sioux))) (value (list (name fb:en.english \"English Language\") (name fb:en.french \"French Language\") (name fb:en.sioux_language \"Sioux language\"))) (type fb:language.human_language)\nwhat are some famous people from el salvador?\tEmbassy of El Salvador in Ottawa\t11.306\tformula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.el_salvador)) (value (list (name fb:en.embassy_of_el_salvador_in_ottawa \"Embassy of El Salvador in Ottawa\") (name fb:en.embassy_of_el_salvador_in_washington \"Embassy of El Salvador in Washington\"))) (type fb:user.skud.embassies_and_consulates.embassy)\nwhat are some famous people from el salvador?\tEmbassy of El Salvador in Washington\t11.306\tformula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.el_salvador)) (value (list (name fb:en.embassy_of_el_salvador_in_ottawa \"Embassy of El Salvador in Ottawa\") (name fb:en.embassy_of_el_salvador_in_washington \"Embassy of El Salvador in Washington\"))) (type fb:user.skud.embassies_and_consulates.embassy)\nwho did brett gardner play for in 2008?\tNew York Yankees\t13.776\tformula (fb:sports.sports_team.roster (and (fb:sports.sports_team_roster.player fb:en.brett_gardner) (fb:sports.sports_team_roster.from (date 2008 -1 -1))))) (value (list (name fb:en.new_york_yankees \"New York Yankees\"))) (type fb:sports.sports_team)\nwho plays dwight in the office?\tPower forward\t9.014\tformula (fb:basketball.basketball_position.players fb:en.dwight_howard)) (value (list (name fb:en.center Center) (name fb:en.power_forward \"Power forward\"))) (type fb:basketball.basketball_position)\nwho plays riley on buffy the vampire slayer?\tMarc Blucas\t5.25\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.riley_finn)) (value (list (name fb:en.marc_blucas \"Marc Blucas\"))) (type fb:tv.tv_actor)\nwhat county is san diego ca?\tSan Diego County\t16.504\tformula (!fb:location.hud_county_place.county fb:en.san_diego)) (value (list (name fb:en.san_diego_county \"San Diego County\"))) (type fb:location.us_county)\nwho is the miami dolphins quarterback?\tEntertainment Weekly annotation index\t7.769\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.miami_dolphins)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwho is the miami dolphins quarterback?\tWSJ Speakeasy Index\t7.769\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.miami_dolphins)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwhere did anne frank go to school?\tMontessori Lyceum Amsterdam\t13.328\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.anne_frank)))) (value (list (name fb:en.montessori_lyceum_amsterdam \"Montessori Lyceum Amsterdam\") (name fb:en.jewish_lyceum \"Jewish Lyceum\"))) (type fb:education.educational_institution)\nwhere did anne frank go to school?\tJewish Lyceum\t13.328\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.anne_frank)))) (value (list (name fb:en.montessori_lyceum_amsterdam \"Montessori Lyceum Amsterdam\") (name fb:en.jewish_lyceum \"Jewish Lyceum\"))) (type fb:education.educational_institution)\nwhat basketball player is married to monica?\tShannon Brown\t16.17\tformula (and (fb:people.person.profession fb:en.basketball_player) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.monica_1980))) (value (list (name fb:en.shannon_brown \"Shannon Brown\"))) (type fb:people.person)\nwhat do people speak in germany?\tGerman Language\t14.975\tformula (fb:language.human_language.countries_spoken_in fb:en.germany)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.austro-bavarian \"Bavarian Language\") (name fb:en.upper_saxon_german \"Saxon, Upper Language\"))) (type fb:language.human_language)\nwhat do people speak in germany?\tBavarian Language\t14.975\tformula (fb:language.human_language.countries_spoken_in fb:en.germany)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.austro-bavarian \"Bavarian Language\") (name fb:en.upper_saxon_german \"Saxon, Upper Language\"))) (type fb:language.human_language)\nwhat do people speak in germany?\tSaxon, Upper Language\t14.975\tformula (fb:language.human_language.countries_spoken_in fb:en.germany)) (value (list (name fb:en.german_language \"German Language\") (name fb:en.austro-bavarian \"Bavarian Language\") (name fb:en.upper_saxon_german \"Saxon, Upper Language\"))) (type fb:language.human_language)\nwhen is the last time the denver broncos won the superbowl?\tSuper Bowl XXXIII\t20.289\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.denver_broncos))) (value (list (name fb:en.super_bowl_xxxiii \"Super Bowl XXXIII\") (name fb:en.super_bowl_xxxii \"Super Bowl XXXII\"))) (type fb:sports.sports_championship_event)\nwhen is the last time the denver broncos won the superbowl?\tSuper Bowl XXXII\t20.289\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.denver_broncos))) (value (list (name fb:en.super_bowl_xxxiii \"Super Bowl XXXIII\") (name fb:en.super_bowl_xxxii \"Super Bowl XXXII\"))) (type fb:sports.sports_championship_event)\nwhere was caesar when he was stabbed?\tDelaware's at-large congressional district\t12.513\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:government.government_position_held.district_represented (!fb:government.politician.government_positions_held (var x)))) fb:en.caesar_a_rodney))) (value (list (name fb:en.delawares_at_large_congressional_district \"Delaware's at-large congressional district\") (name fb:en.delaware Delaware))) (type fb:government.political_district)\nwhat team did jackie robinson?\tUCLA Bruins football\t15.307\tformula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.jackie_robinson)) (value (list (name fb:en.ucla_bruins_football \"UCLA Bruins football\") (name fb:en.los_angeles_bulldogs \"Los Angeles Bulldogs\"))) (type fb:american_football.football_team)\nwhat team did jackie robinson?\tLos Angeles Bulldogs\t15.307\tformula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.jackie_robinson)) (value (list (name fb:en.ucla_bruins_football \"UCLA Bruins football\") (name fb:en.los_angeles_bulldogs \"Los Angeles Bulldogs\"))) (type fb:american_football.football_team)\nwhat time zone is chicago in right now?\tCentral Time Zone\t21.585\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.chicago))) (value (list (name fb:en.central_time_zone \"Central Time Zone\"))) (type (union fb:time.time_zone))\nwhat two countries make up the dominican republic?\tEmbassy of the Dominican Republic in Ottawa\t5.954\tformula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.dominican_republic)) (value (list (name fb:en.embassy_of_the_dominican_republic_in_ottawa \"Embassy of the Dominican Republic in Ottawa\") (name fb:en.embassy_of_the_dominican_republic_in_washington \"Embassy of the Dominican Republic in Washington\"))) (type fb:user.skud.embassies_and_consulates.embassy)\nwhat two countries make up the dominican republic?\tEmbassy of the Dominican Republic in Washington\t5.954\tformula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.dominican_republic)) (value (list (name fb:en.embassy_of_the_dominican_republic_in_ottawa \"Embassy of the Dominican Republic in Ottawa\") (name fb:en.embassy_of_the_dominican_republic_in_washington \"Embassy of the Dominican Republic in Washington\"))) (type fb:user.skud.embassies_and_consulates.embassy)\nwho was the vice president under ronald reagan?\tGeorge H. W. Bush\t10.763\tformula (fb:government.us_vice_president.to_president fb:en.ronald_reagan)) (value (list (name fb:en.george_h_w_bush \"George H. W. Bush\"))) (type fb:government.us_vice_president)\nwhere do the chicago white sox play home games?\tU.S. Cellular Field\t2.827\tformula (and (fb:type.object.type fb:location.location) (!fb:sports.sports_team.arena_stadium fb:en.chicago_white_sox))) (value (list (name fb:en.us_cellular_field \"U.S. Cellular Field\"))) (type fb:sports.sports_facility)\nwhat part did jeff conaway play in grease?\tDo You Wanna Know a Secret?\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tPete's Dragon\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tSunset Strip\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tThe Utah Murder Project\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tJennifer on My Mind\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tAlmost Pregnant\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tDumb Luck in Vegas\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tDante's Inferno: Abandon All Hope\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tThe Banker\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat part did jeff conaway play in grease?\tThe Eagle Has Landed\t6.381\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 \"Do You Wanna Know a Secret?\") (name fb:en.petes_dragon \"Pete's Dragon\") (name fb:m.0crsfvd \"Sunset Strip\") (name fb:m.0gyxk0m \"The Utah Murder Project\") (name fb:en.jennifer_on_my_mind \"Jennifer on My Mind\") (name fb:m.0gfn0ql \"Almost Pregnant\") (name fb:m.0crs0sn \"Dumb Luck in Vegas\") (name fb:m.0gvryyc \"Dante's Inferno: Abandon All Hope\") (name fb:m.0crrxmw \"The Banker\") (name fb:en.the_eagle_has_landed_1976 \"The Eagle Has Landed\"))) (type fb:film.film)\nwhat book did benjamin franklin published?\tBenjamin Franklin: An American Life\t13.902\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life \"Benjamin Franklin: An American Life\") (name fb:en.the_autobiography_of_benjamin_franklin \"The Autobiography of Benjamin Franklin\") (name fb:m.05_lr_w \"Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America\") (name fb:m.069kt_g \"The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London\") (name fb:en.benjamin_franklin_and_his_enemies \"Benjamin Franklin and His Enemies\") (name fb:m.04whkmx \"The First American: The Life and Times of Benjamin Franklin\"))) (type (union fb:book.book))\nwhat book did benjamin franklin published?\tThe Autobiography of Benjamin Franklin\t13.902\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life \"Benjamin Franklin: An American Life\") (name fb:en.the_autobiography_of_benjamin_franklin \"The Autobiography of Benjamin Franklin\") (name fb:m.05_lr_w \"Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America\") (name fb:m.069kt_g \"The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London\") (name fb:en.benjamin_franklin_and_his_enemies \"Benjamin Franklin and His Enemies\") (name fb:m.04whkmx \"The First American: The Life and Times of Benjamin Franklin\"))) (type (union fb:book.book))\nwhat book did benjamin franklin published?\tStealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America\t13.902\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life \"Benjamin Franklin: An American Life\") (name fb:en.the_autobiography_of_benjamin_franklin \"The Autobiography of Benjamin Franklin\") (name fb:m.05_lr_w \"Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America\") (name fb:m.069kt_g \"The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London\") (name fb:en.benjamin_franklin_and_his_enemies \"Benjamin Franklin and His Enemies\") (name fb:m.04whkmx \"The First American: The Life and Times of Benjamin Franklin\"))) (type (union fb:book.book))\nwhat book did benjamin franklin published?\tThe Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London\t13.902\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life \"Benjamin Franklin: An American Life\") (name fb:en.the_autobiography_of_benjamin_franklin \"The Autobiography of Benjamin Franklin\") (name fb:m.05_lr_w \"Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America\") (name fb:m.069kt_g \"The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London\") (name fb:en.benjamin_franklin_and_his_enemies \"Benjamin Franklin and His Enemies\") (name fb:m.04whkmx \"The First American: The Life and Times of Benjamin Franklin\"))) (type (union fb:book.book))\nwhat book did benjamin franklin published?\tBenjamin Franklin and His Enemies\t13.902\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life \"Benjamin Franklin: An American Life\") (name fb:en.the_autobiography_of_benjamin_franklin \"The Autobiography of Benjamin Franklin\") (name fb:m.05_lr_w \"Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America\") (name fb:m.069kt_g \"The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London\") (name fb:en.benjamin_franklin_and_his_enemies \"Benjamin Franklin and His Enemies\") (name fb:m.04whkmx \"The First American: The Life and Times of Benjamin Franklin\"))) (type (union fb:book.book))\nwhat book did benjamin franklin published?\tThe First American: The Life and Times of Benjamin Franklin\t13.902\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life \"Benjamin Franklin: An American Life\") (name fb:en.the_autobiography_of_benjamin_franklin \"The Autobiography of Benjamin Franklin\") (name fb:m.05_lr_w \"Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America\") (name fb:m.069kt_g \"The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London\") (name fb:en.benjamin_franklin_and_his_enemies \"Benjamin Franklin and His Enemies\") (name fb:m.04whkmx \"The First American: The Life and Times of Benjamin Franklin\"))) (type (union fb:book.book))\nwhat currency to take to barbados?\tBarbadian dollar\t21.07\tformula (!fb:location.country.currency_used fb:en.barbados)) (value (list (name fb:en.barbados_dollar \"Barbadian dollar\"))) (type fb:finance.currency)\nwhere did they get the name stanley cup?\tFrederick Stanley, 16th Earl of Derby\t9.309\tformula (!fb:symbols.namesake.named_after fb:en.stanley_cup)) (value (list (name fb:en.frederick_stanley_16th_earl_of_derby \"Frederick Stanley, 16th Earl of Derby\"))) (type fb:symbols.name_source)\nwhere did tennessee williams go to college?\tWashington University in St. Louis\t12.998\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tennessee_williams)))) (value (list (name fb:en.washington_university_in_st_louis \"Washington University in St. Louis\") (name fb:en.university_of_missouri_columbia \"University of Missouri–Columbia\") (name fb:en.university_of_iowa \"University of Iowa\") (name fb:en.the_new_school \"The New School\"))) (type fb:education.university)\nwhere did tennessee williams go to college?\tUniversity of Missouri–Columbia\t12.998\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tennessee_williams)))) (value (list (name fb:en.washington_university_in_st_louis \"Washington University in St. Louis\") (name fb:en.university_of_missouri_columbia \"University of Missouri–Columbia\") (name fb:en.university_of_iowa \"University of Iowa\") (name fb:en.the_new_school \"The New School\"))) (type fb:education.university)\nwhere did tennessee williams go to college?\tUniversity of Iowa\t12.998\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tennessee_williams)))) (value (list (name fb:en.washington_university_in_st_louis \"Washington University in St. Louis\") (name fb:en.university_of_missouri_columbia \"University of Missouri–Columbia\") (name fb:en.university_of_iowa \"University of Iowa\") (name fb:en.the_new_school \"The New School\"))) (type fb:education.university)\nwhere did tennessee williams go to college?\tThe New School\t12.998\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tennessee_williams)))) (value (list (name fb:en.washington_university_in_st_louis \"Washington University in St. Louis\") (name fb:en.university_of_missouri_columbia \"University of Missouri–Columbia\") (name fb:en.university_of_iowa \"University of Iowa\") (name fb:en.the_new_school \"The New School\"))) (type fb:education.university)\nwhat is the name of airport in new york?\tNew York Skyports Inc. Seaplane Base\t10.058\tformula (!fb:location.location.nearby_airports fb:en.new_york_state)) (value (list (name fb:en.new_york_skyports_inc_seaplane_base \"New York Skyports Inc. Seaplane Base\"))) (type fb:aviation.airport)\nwho was queen victoria's husband?\tAlbert, Prince Consort\t12.397\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.victoria_of_the_united_kingdom)) (value (list (name fb:en.albert_of_saxe-coburg_and_gotha \"Albert, Prince Consort\"))) (type fb:people.person)\nwhere did benjamin franklin work?\tJames Franklin Printing Shop\t8.303\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.benjamin_franklin))) (value (list (name fb:en.james_franklin_printing_shop \"James Franklin Printing Shop\"))) (type fb:education.educational_institution)\nwho played donna on west wing?\tLeBron James/Kanye West\t4.458\tformula ((lambda x (!fb:base.saturdaynightlive.snl_musical_performance.episode (!fb:base.saturdaynightlive.snl_musical_guest.musical_performance (var x)))) fb:en.kanye_west)) (value (list (name fb:en.lebron_james_kanye_west \"LeBron James/Kanye West\") (name fb:m.06xr8fx \"Steve Carell/Kanye West\"))) (type fb:base.saturdaynightlive.snl_episode)\nwho played donna on west wing?\tSteve Carell/Kanye West\t4.458\tformula ((lambda x (!fb:base.saturdaynightlive.snl_musical_performance.episode (!fb:base.saturdaynightlive.snl_musical_guest.musical_performance (var x)))) fb:en.kanye_west)) (value (list (name fb:en.lebron_james_kanye_west \"LeBron James/Kanye West\") (name fb:m.06xr8fx \"Steve Carell/Kanye West\"))) (type fb:base.saturdaynightlive.snl_episode)\nwho played meg in season 1 of family guy?\tSeth MacFarlane\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tMike Henry\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tLacey Chabert\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tPatrick Warburton\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tAlex Borstein\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tSeth Green\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tAlec Sulkin\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tMila Kunis\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tDanny Smith\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwho played meg in season 1 of family guy?\tAdam West\t8.575\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane \"Seth MacFarlane\") (name fb:m.0f87jy \"Mike Henry\") (name fb:en.lacey_chabert \"Lacey Chabert\") (name fb:en.patrick_warburton \"Patrick Warburton\") (name fb:en.alex_borstein \"Alex Borstein\") (name fb:en.seth_green \"Seth Green\") (name fb:en.alec_sulkin \"Alec Sulkin\") (name fb:en.mila_kunis \"Mila Kunis\") (name fb:en.danny_smith \"Danny Smith\") (name fb:en.adam_west \"Adam West\"))) (type fb:tv.tv_actor)\nwhen was the last time the dallas cowboys won the superbowl?\tSuper Bowl XXVII\t20.626\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_xii \"Super Bowl XII\") (name fb:en.super_bowl_xxx \"Super Bowl XXX\") (name fb:en.super_bowl_xxviii \"Super Bowl XXVIII\") (name fb:en.super_bowl_vi \"Super Bowl VI\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the dallas cowboys won the superbowl?\tSuper Bowl XII\t20.626\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_xii \"Super Bowl XII\") (name fb:en.super_bowl_xxx \"Super Bowl XXX\") (name fb:en.super_bowl_xxviii \"Super Bowl XXVIII\") (name fb:en.super_bowl_vi \"Super Bowl VI\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the dallas cowboys won the superbowl?\tSuper Bowl XXX\t20.626\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_xii \"Super Bowl XII\") (name fb:en.super_bowl_xxx \"Super Bowl XXX\") (name fb:en.super_bowl_xxviii \"Super Bowl XXVIII\") (name fb:en.super_bowl_vi \"Super Bowl VI\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the dallas cowboys won the superbowl?\tSuper Bowl XXVIII\t20.626\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_xii \"Super Bowl XII\") (name fb:en.super_bowl_xxx \"Super Bowl XXX\") (name fb:en.super_bowl_xxviii \"Super Bowl XXVIII\") (name fb:en.super_bowl_vi \"Super Bowl VI\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the dallas cowboys won the superbowl?\tSuper Bowl VI\t20.626\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii \"Super Bowl XXVII\") (name fb:en.super_bowl_xii \"Super Bowl XII\") (name fb:en.super_bowl_xxx \"Super Bowl XXX\") (name fb:en.super_bowl_xxviii \"Super Bowl XXVIII\") (name fb:en.super_bowl_vi \"Super Bowl VI\"))) (type fb:sports.sports_championship_event)\nwhat did napoleon bonaparte do as emperor?\tHouse of Bonaparte\t11.351\tformula (!fb:people.family_member.family fb:en.napoleon_i_of_france)) (value (list (name fb:en.bonaparte \"House of Bonaparte\"))) (type fb:people.family)\nwhere do ireland play rugby union?\tIrish Sea\t5.077\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.northern_ireland))) (value (list (name fb:en.republic_of_ireland Ireland) (name fb:m.0725n69 \"Irish Sea\") (name fb:m.06_htj \"North Channel\") (name fb:m.0725dfj Malin))) (type fb:location.location)\nwhere do ireland play rugby union?\tNorth Channel\t5.077\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.northern_ireland))) (value (list (name fb:en.republic_of_ireland Ireland) (name fb:m.0725n69 \"Irish Sea\") (name fb:m.06_htj \"North Channel\") (name fb:m.0725dfj Malin))) (type fb:location.location)\nwhen did celtics win the championship?\t1984 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t1966 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t1964 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t1976 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t1963 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t1959 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t1962 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t1986 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t2008 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhen did celtics win the championship?\t1961 NBA Finals\t17.441\tformula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals \"1984 NBA Finals\") (name fb:en.1966_nba_finals \"1966 NBA Finals\") (name fb:en.1964_nba_finals \"1964 NBA Finals\") (name fb:en.1976_nba_finals \"1976 NBA Finals\") (name fb:en.1963_nba_finals \"1963 NBA Finals\") (name fb:en.1959_nba_finals \"1959 NBA Finals\") (name fb:en.1962_nba_finals \"1962 NBA Finals\") (name fb:en.1986_nba_finals \"1986 NBA Finals\") (name fb:en.2008_nba_finals \"2008 NBA Finals\") (name fb:en.1961_nba_finals \"1961 NBA Finals\"))) (type fb:sports.sports_championship_event)\nwhat countries included in oceania?\tMarshall Islands\t14.778\tformula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type fb:location.country)\nwhat countries included in oceania?\tNew Zealand\t14.778\tformula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type fb:location.country)\nwhat countries included in oceania?\tPapua New Guinea\t14.778\tformula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type fb:location.country)\nwhat countries included in oceania?\tFrench Polynesia\t14.778\tformula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type fb:location.country)\nwhat countries included in oceania?\tAmerican Samoa\t14.778\tformula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands \"Marshall Islands\") (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.french_polynesia \"French Polynesia\") (name fb:en.american_samoa \"American Samoa\"))) (type fb:location.country)\nwhat country is nicki minaj from?\tUnited States of America\t15.11\tformula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.nicki_minaj))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.trinidad_and_tobago \"Trinidad and Tobago\"))) (type (union fb:location.country))\nwhat country is nicki minaj from?\tTrinidad and Tobago\t15.11\tformula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.nicki_minaj))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.trinidad_and_tobago \"Trinidad and Tobago\"))) (type (union fb:location.country))\nwho played harry potter dumbledore actor?\tDaniel Larner\t8.634\tformula ((lambda x (!fb:cvg.game_performance.voice_actor (!fb:cvg.game_character.games (var x)))) fb:m.03647x)) (value (list (name fb:m.0h57n0y \"Daniel Larner\"))) (type fb:cvg.game_voice_actor)\nwho was the prime minister of pakistan in 1999?\tNawaz Sharif\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tMir Hazar Khan Khoso\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tMuhammad Zia-ul-Haq\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tAsif Ali Zardari\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tZulfikar Ali Bhutto\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tShaukat Aziz\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tLiaquat Ali Khan\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tIqbal Ahmed Khan\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tYousaf Raza Gillani\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwho was the prime minister of pakistan in 1999?\tRaja Pervaiz Ashraf\t10.598\tformula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif \"Nawaz Sharif\") (name fb:m.0rypygy \"Mir Hazar Khan Khoso\") (name fb:en.muhammad_zia-ul-haq \"Muhammad Zia-ul-Haq\") (name fb:en.asif_ali_zardari \"Asif Ali Zardari\") (name fb:en.zulfikar_ali_bhutto \"Zulfikar Ali Bhutto\") (name fb:en.shaukat_aziz \"Shaukat Aziz\") (name fb:en.liaquat_ali_khan \"Liaquat Ali Khan\") (name fb:m.0v3cpnp \"Iqbal Ahmed Khan\") (name fb:en.syed_yousaf_raza_gillani \"Yousaf Raza Gillani\") (name fb:en.raja_pervez_ashraf \"Raja Pervaiz Ashraf\"))) (type fb:government.politician)\nwhat movies did christopher plummer play in?\tThe Last Station\t10.247\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station \"The Last Station\") (name fb:m.0fqmbl9 \"Moguls and Movie Stars\") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 \"Inherit the Wind\") (name fb:en.hallmark_hall_of_fame \"Hallmark Hall of Fame\") (name fb:en.murder_by_decree \"Murder by Decree\") (name fb:m.0lrf031 \"J. B.\") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work))\nwhat movies did christopher plummer play in?\tMoguls and Movie Stars\t10.247\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station \"The Last Station\") (name fb:m.0fqmbl9 \"Moguls and Movie Stars\") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 \"Inherit the Wind\") (name fb:en.hallmark_hall_of_fame \"Hallmark Hall of Fame\") (name fb:en.murder_by_decree \"Murder by Decree\") (name fb:m.0lrf031 \"J. B.\") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work))\nwhat movies did christopher plummer play in?\tA Beautiful Mind\t10.247\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station \"The Last Station\") (name fb:m.0fqmbl9 \"Moguls and Movie Stars\") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 \"Inherit the Wind\") (name fb:en.hallmark_hall_of_fame \"Hallmark Hall of Fame\") (name fb:en.murder_by_decree \"Murder by Decree\") (name fb:m.0lrf031 \"J. B.\") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work))\nwhat movies did christopher plummer play in?\tInherit the Wind\t10.247\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station \"The Last Station\") (name fb:m.0fqmbl9 \"Moguls and Movie Stars\") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 \"Inherit the Wind\") (name fb:en.hallmark_hall_of_fame \"Hallmark Hall of Fame\") (name fb:en.murder_by_decree \"Murder by Decree\") (name fb:m.0lrf031 \"J. B.\") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work))\nwhat movies did christopher plummer play in?\tHallmark Hall of Fame\t10.247\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station \"The Last Station\") (name fb:m.0fqmbl9 \"Moguls and Movie Stars\") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 \"Inherit the Wind\") (name fb:en.hallmark_hall_of_fame \"Hallmark Hall of Fame\") (name fb:en.murder_by_decree \"Murder by Decree\") (name fb:m.0lrf031 \"J. B.\") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work))\nwhat movies did christopher plummer play in?\tMurder by Decree\t10.247\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station \"The Last Station\") (name fb:m.0fqmbl9 \"Moguls and Movie Stars\") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 \"Inherit the Wind\") (name fb:en.hallmark_hall_of_fame \"Hallmark Hall of Fame\") (name fb:en.murder_by_decree \"Murder by Decree\") (name fb:m.0lrf031 \"J. B.\") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work))\nwhat movies did christopher plummer play in?\tJ. B.\t10.247\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station \"The Last Station\") (name fb:m.0fqmbl9 \"Moguls and Movie Stars\") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind \"A Beautiful Mind\") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 \"Inherit the Wind\") (name fb:en.hallmark_hall_of_fame \"Hallmark Hall of Fame\") (name fb:en.murder_by_decree \"Murder by Decree\") (name fb:m.0lrf031 \"J. B.\") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work))\nwhat movies is omar epps in?\tLove & Basketball\t10.187\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.omar_epps))) (value (list (name fb:m.04p5cr House) (name fb:en.love_basketball \"Love & Basketball\"))) (type (union fb:award.award_nominated_work))\nwhat district does nancy pelosi represent?\tCalifornia’s 8th congressional district\t13.511\tformula (and (fb:type.object.type fb:government.political_district) ((lambda x (!fb:government.government_position_held.district_represented (!fb:government.politician.government_positions_held (var x)))) fb:en.nancy_pelosi))) (value (list (name fb:en.californias_8th_congressional_district \"California’s 8th congressional district\") (name fb:en.californias_12th_congressional_district \"California’s 12th congressional district\") (name fb:en.californias_5th_congressional_district \"California’s 5th congressional district\"))) (type (union fb:government.political_district))\nwhat district does nancy pelosi represent?\tCalifornia’s 12th congressional district\t13.511\tformula (and (fb:type.object.type fb:government.political_district) ((lambda x (!fb:government.government_position_held.district_represented (!fb:government.politician.government_positions_held (var x)))) fb:en.nancy_pelosi))) (value (list (name fb:en.californias_8th_congressional_district \"California’s 8th congressional district\") (name fb:en.californias_12th_congressional_district \"California’s 12th congressional district\") (name fb:en.californias_5th_congressional_district \"California’s 5th congressional district\"))) (type (union fb:government.political_district))\nwhat district does nancy pelosi represent?\tCalifornia’s 5th congressional district\t13.511\tformula (and (fb:type.object.type fb:government.political_district) ((lambda x (!fb:government.government_position_held.district_represented (!fb:government.politician.government_positions_held (var x)))) fb:en.nancy_pelosi))) (value (list (name fb:en.californias_8th_congressional_district \"California’s 8th congressional district\") (name fb:en.californias_12th_congressional_district \"California’s 12th congressional district\") (name fb:en.californias_5th_congressional_district \"California’s 5th congressional district\"))) (type (union fb:government.political_district))\nwhere did george herbert walker bush go to college?\tHarvard Business School\t11.426\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_w_bush)))) (value (list (name fb:en.harvard_business_school \"Harvard Business School\") (name fb:en.yale_university \"Yale University\"))) (type fb:education.university)\nwhere did george herbert walker bush go to college?\tYale University\t11.426\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_w_bush)))) (value (list (name fb:en.harvard_business_school \"Harvard Business School\") (name fb:en.yale_university \"Yale University\"))) (type fb:education.university)\nwhat did bruce jenner win gold medal for?\tGold medal\t7.906\tformula (!fb:olympics.olympic_medal_honor.medal (and (!fb:olympics.olympic_athlete.medals_won fb:en.bruce_jenner) (!fb:olympics.olympic_medal.medal_winners fb:en.gold_medal)))) (value (list (name fb:en.gold_medal \"Gold medal\"))) (type fb:olympics.olympic_medal)\nwhere do they speak tibetan?\tChinese language\t11.615\tformula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language \"Chinese language\") (name fb:en.nepali_language \"Nepali Language\") (name fb:en.standard_tibetan \"Standard Tibetan\") (name fb:en.tibetan_language \"Tibetan languages\") (name fb:en.baima_language \"Baima language\"))) (type fb:language.human_language)\nwhere do they speak tibetan?\tNepali Language\t11.615\tformula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language \"Chinese language\") (name fb:en.nepali_language \"Nepali Language\") (name fb:en.standard_tibetan \"Standard Tibetan\") (name fb:en.tibetan_language \"Tibetan languages\") (name fb:en.baima_language \"Baima language\"))) (type fb:language.human_language)\nwhere do they speak tibetan?\tStandard Tibetan\t11.615\tformula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language \"Chinese language\") (name fb:en.nepali_language \"Nepali Language\") (name fb:en.standard_tibetan \"Standard Tibetan\") (name fb:en.tibetan_language \"Tibetan languages\") (name fb:en.baima_language \"Baima language\"))) (type fb:language.human_language)\nwhere do they speak tibetan?\tTibetan languages\t11.615\tformula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language \"Chinese language\") (name fb:en.nepali_language \"Nepali Language\") (name fb:en.standard_tibetan \"Standard Tibetan\") (name fb:en.tibetan_language \"Tibetan languages\") (name fb:en.baima_language \"Baima language\"))) (type fb:language.human_language)\nwhere do they speak tibetan?\tBaima language\t11.615\tformula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language \"Chinese language\") (name fb:en.nepali_language \"Nepali Language\") (name fb:en.standard_tibetan \"Standard Tibetan\") (name fb:en.tibetan_language \"Tibetan languages\") (name fb:en.baima_language \"Baima language\"))) (type fb:language.human_language)\nwhat to do in hollywood ca this weekend?\tGriffith Observatory\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tHollywood Sign\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tHollywood Walk of Fame\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tUniversal Studios Hollywood\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tDolby Theatre\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tTCL Chinese Theatre\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tGrauman's Egyptian Theatre\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tHollywood Wax Museum\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tUniversal CityWalk\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwhat to do in hollywood ca this weekend?\tHollywood Heritage Museum\t10.442\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory \"Griffith Observatory\") (name fb:en.hollywood_sign \"Hollywood Sign\") (name fb:en.hollywood_walk_of_fame \"Hollywood Walk of Fame\") (name fb:en.universal_studios_hollywood \"Universal Studios Hollywood\") (name fb:en.kodak_theatre \"Dolby Theatre\") (name fb:en.graumans_chinese_theatre \"TCL Chinese Theatre\") (name fb:en.graumans_egyptian_theatre \"Grauman's Egyptian Theatre\") (name fb:en.hollywood_wax_museum \"Hollywood Wax Museum\") (name fb:en.universal_citywalk \"Universal CityWalk\") (name fb:en.hollywood_heritage_museum \"Hollywood Heritage Museum\"))) (type fb:travel.tourist_attraction)\nwho ran against abraham lincoln for president in 1860?\tAndrew Johnson\t14.104\tformula (fb:government.us_vice_president.to_president fb:en.abraham_lincoln)) (value (list (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.hannibal_hamlin \"Hannibal Hamlin\"))) (type fb:government.us_vice_president)\nwho ran against abraham lincoln for president in 1860?\tHannibal Hamlin\t14.104\tformula (fb:government.us_vice_president.to_president fb:en.abraham_lincoln)) (value (list (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.hannibal_hamlin \"Hannibal Hamlin\"))) (type fb:government.us_vice_president)\nwhere did kim kardashian come from?\tLos Angeles\t7.885\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.people_born_here fb:en.kim_kardashian))) (value (list (name fb:en.los_angeles \"Los Angeles\"))) (type fb:location.location)\nwhat is michael kors best known for?\tEntertainment Weekly annotation index\t11.094\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.michael_kors)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat is michael kors best known for?\tWSJ Speakeasy Index\t11.094\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.michael_kors)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat is michael kors best known for?\tBlissful Master Index\t11.094\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.michael_kors)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat is michael kors best known for?\tBlissful Celebrities\t11.094\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.michael_kors)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwho plays charlie in the santa clause movies?\tBruce Kirby\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tArt Carney\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tJohn Call\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tTex Avery\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tRick Touhy\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tBud Jamison\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tDon McManus\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tJeff Gillen\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tEdward Ivory\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwho plays charlie in the santa clause movies?\tRobb Pruitt\t5.343\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 \"Bruce Kirby\") (name fb:en.art_carney \"Art Carney\") (name fb:en.john_call \"John Call\") (name fb:en.tex_avery \"Tex Avery\") (name fb:m.0tkzz28 \"Rick Touhy\") (name fb:en.bud_jamison \"Bud Jamison\") (name fb:m.0v9kh9x \"Don McManus\") (name fb:en.jeff_gillen \"Jeff Gillen\") (name fb:en.edward_ivory \"Edward Ivory\") (name fb:m.0h0vhrh \"Robb Pruitt\"))) (type fb:film.actor)\nwhat was napoleon bonaparte accomplishments?\tStomach cancer\t4.53\tformula (fb:people.cause_of_death.people fb:en.napoleon_i_of_france)) (value (list (name fb:en.gastric_cancer \"Stomach cancer\") (name fb:en.arsenic_poisoning \"Arsenic poisoning\"))) (type fb:people.cause_of_death)\nwhat was napoleon bonaparte accomplishments?\tArsenic poisoning\t4.53\tformula (fb:people.cause_of_death.people fb:en.napoleon_i_of_france)) (value (list (name fb:en.gastric_cancer \"Stomach cancer\") (name fb:en.arsenic_poisoning \"Arsenic poisoning\"))) (type fb:people.cause_of_death)\nwhat highschool did r. kelly attend?\tKenwood Academy\t11.229\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.r_kelly)) (value (list (name fb:en.kenwood_academy \"Kenwood Academy\"))) (type fb:education.educational_institution)\nwhat happened at benghazi?\t2012 U.S. diplomatic missions attacks\t3.249\tformula (!fb:location.location.events fb:en.benghazi)) (value (list (name fb:m.0m1x86k \"2012 U.S. diplomatic missions attacks\") (name fb:m.0gg5z_1 \"First Battle of Benghazi\") (name fb:m.0m4x3cr \"2012 U.S. Consulate attack in Benghazi\") (name fb:m.0gj8wbw \"Second Battle of Benghazi\"))) (type fb:time.event)\nwhat happened at benghazi?\tFirst Battle of Benghazi\t3.249\tformula (!fb:location.location.events fb:en.benghazi)) (value (list (name fb:m.0m1x86k \"2012 U.S. diplomatic missions attacks\") (name fb:m.0gg5z_1 \"First Battle of Benghazi\") (name fb:m.0m4x3cr \"2012 U.S. Consulate attack in Benghazi\") (name fb:m.0gj8wbw \"Second Battle of Benghazi\"))) (type fb:time.event)\nwhat happened at benghazi?\t2012 U.S. Consulate attack in Benghazi\t3.249\tformula (!fb:location.location.events fb:en.benghazi)) (value (list (name fb:m.0m1x86k \"2012 U.S. diplomatic missions attacks\") (name fb:m.0gg5z_1 \"First Battle of Benghazi\") (name fb:m.0m4x3cr \"2012 U.S. Consulate attack in Benghazi\") (name fb:m.0gj8wbw \"Second Battle of Benghazi\"))) (type fb:time.event)\nwhat happened at benghazi?\tSecond Battle of Benghazi\t3.249\tformula (!fb:location.location.events fb:en.benghazi)) (value (list (name fb:m.0m1x86k \"2012 U.S. diplomatic missions attacks\") (name fb:m.0gg5z_1 \"First Battle of Benghazi\") (name fb:m.0m4x3cr \"2012 U.S. Consulate attack in Benghazi\") (name fb:m.0gj8wbw \"Second Battle of Benghazi\"))) (type fb:time.event)\nwhat is the percentage of youth in uganda?\tEnglish Language\t8.576\tformula (!fb:location.country.official_language fb:en.uganda)) (value (list (name fb:en.english \"English Language\") (name fb:en.swahili_language \"Swahili Language\"))) (type fb:language.human_language)\nwhat is the percentage of youth in uganda?\tSwahili Language\t8.576\tformula (!fb:location.country.official_language fb:en.uganda)) (value (list (name fb:en.english \"English Language\") (name fb:en.swahili_language \"Swahili Language\"))) (type fb:language.human_language)\nwhat kind of money do i bring to mexico?\tUnited States of America\t14.958\tformula ((lambda x (!fb:location.imports_and_exports.imported_from (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.mexico)) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.portugal Portugal))) (type fb:location.statistical_region)\nwhat is the only colony on the south america continent?\tNorth America\t18.631\tformula (and (fb:type.object.type fb:location.continent) ((lambda x (fb:location.location.adjoin_s (fb:location.adjoining_relationship.adjoins (var x)))) fb:en.south_america))) (value (list (name fb:en.north_america \"North America\"))) (type (union fb:location.continent))\nwhere do the blackhawks play?\tUnited Center\t8.065\tformula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.chicago_blackhawks))) (value (list (name fb:en.united_center \"United Center\"))) (type fb:sports.sports_facility)\nwho plays john connor?\tChristian Bale\t9.424\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.john_connor)) (value (list (name fb:en.christian_bale \"Christian Bale\") (name fb:en.nick_stahl \"Nick Stahl\") (name fb:en.edward_furlong \"Edward Furlong\"))) (type fb:film.actor)\nwho plays john connor?\tNick Stahl\t9.424\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.john_connor)) (value (list (name fb:en.christian_bale \"Christian Bale\") (name fb:en.nick_stahl \"Nick Stahl\") (name fb:en.edward_furlong \"Edward Furlong\"))) (type fb:film.actor)\nwho plays john connor?\tEdward Furlong\t9.424\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.john_connor)) (value (list (name fb:en.christian_bale \"Christian Bale\") (name fb:en.nick_stahl \"Nick Stahl\") (name fb:en.edward_furlong \"Edward Furlong\"))) (type fb:film.actor)\nwhat is the main language spoken in mexico?\tSpanish Language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tItalian Language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tNahuatl languages\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tPurepecha Language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tChochotec Language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tO'odham language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tTzeltal language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tPaipai language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tChicomuceltec Language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat is the main language spoken in mexico?\tChontal, Tabasco Language\t18.999\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.nahuatl_language \"Nahuatl languages\") (name fb:en.upur_xe9pecha \"Purepecha Language\") (name fb:en.chochoteco \"Chochotec Language\") (name fb:en.oodham \"O'odham language\") (name fb:en.tzeltal_language \"Tzeltal language\") (name fb:en.paipai_language \"Paipai language\") (name fb:en.chicomuceltec \"Chicomuceltec Language\") (name fb:en.chontal_maya_language \"Chontal, Tabasco Language\"))) (type (union fb:language.human_language))\nwhat are italians classified as?\tGiuseppe Squillaci\t4.767\tformula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 \"Giuseppe Squillaci\") (name fb:m.0c1p4xb \"Bruno Pupparo\") (name fb:en.gaetano_carito \"Gaetano Carito\") (name fb:m.0c4f769 \"Marco Grillo\") (name fb:en.paolo_buonvino \"Paolo Buonvino\"))) (type fb:award.award_nominee)\nwhat are italians classified as?\tBruno Pupparo\t4.767\tformula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 \"Giuseppe Squillaci\") (name fb:m.0c1p4xb \"Bruno Pupparo\") (name fb:en.gaetano_carito \"Gaetano Carito\") (name fb:m.0c4f769 \"Marco Grillo\") (name fb:en.paolo_buonvino \"Paolo Buonvino\"))) (type fb:award.award_nominee)\nwhat are italians classified as?\tGaetano Carito\t4.767\tformula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 \"Giuseppe Squillaci\") (name fb:m.0c1p4xb \"Bruno Pupparo\") (name fb:en.gaetano_carito \"Gaetano Carito\") (name fb:m.0c4f769 \"Marco Grillo\") (name fb:en.paolo_buonvino \"Paolo Buonvino\"))) (type fb:award.award_nominee)\nwhat are italians classified as?\tMarco Grillo\t4.767\tformula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 \"Giuseppe Squillaci\") (name fb:m.0c1p4xb \"Bruno Pupparo\") (name fb:en.gaetano_carito \"Gaetano Carito\") (name fb:m.0c4f769 \"Marco Grillo\") (name fb:en.paolo_buonvino \"Paolo Buonvino\"))) (type fb:award.award_nominee)\nwhat are italians classified as?\tPaolo Buonvino\t4.767\tformula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 \"Giuseppe Squillaci\") (name fb:m.0c1p4xb \"Bruno Pupparo\") (name fb:en.gaetano_carito \"Gaetano Carito\") (name fb:m.0c4f769 \"Marco Grillo\") (name fb:en.paolo_buonvino \"Paolo Buonvino\"))) (type fb:award.award_nominee)\nwho was the first governor of colonial south carolina?\tStrom Thurmond\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tAlan Wilson\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tMark Sanford\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tThomas Pinckney\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tJim Hodges\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tCarroll A. Campbell, Jr.\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tJames F. Byrnes\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tRichard Irvine Manning III\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tNikki Haley\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwho was the first governor of colonial south carolina?\tJames Henry Hammond\t13.1\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond \"Strom Thurmond\") (name fb:m.0gw_nyv \"Alan Wilson\") (name fb:en.mark_sanford \"Mark Sanford\") (name fb:en.thomas_pinckney \"Thomas Pinckney\") (name fb:en.jim_hodges \"Jim Hodges\") (name fb:en.carroll_a_campbell_jr \"Carroll A. Campbell, Jr.\") (name fb:en.james_f_byrnes \"James F. Byrnes\") (name fb:en.richard_irvine_manning_iii \"Richard Irvine Manning III\") (name fb:en.nikki_haley \"Nikki Haley\") (name fb:en.james_henry_hammond \"James Henry Hammond\"))) (type fb:government.politician)\nwhat was f. scott fitzgerald?\tMyocardial infarction\t6.475\tformula (fb:people.cause_of_death.people fb:en.f_scott_fitzgerald)) (value (list (name fb:en.heart_failure \"Myocardial infarction\"))) (type fb:people.cause_of_death)\nwhat is the dominant language spoken in jamaica?\tJamaican Creole English Language\t22.227\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.jamaica))) (value (list (name fb:en.jamaican_creole \"Jamaican Creole English Language\") (name fb:en.jamaican_english \"Jamaican English\"))) (type (union fb:language.human_language))\nwhat is the dominant language spoken in jamaica?\tJamaican English\t22.227\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.jamaica))) (value (list (name fb:en.jamaican_creole \"Jamaican Creole English Language\") (name fb:en.jamaican_english \"Jamaican English\"))) (type (union fb:language.human_language))\nwho is the coach for the new york knicks?\tMike Woodson\t19.649\tformula (and (fb:people.person.profession fb:en.coach) (!fb:basketball.basketball_team.head_coach fb:en.new_york_knicks))) (value (list (name fb:en.mike_woodson \"Mike Woodson\"))) (type fb:basketball.basketball_coach)\nwho was wesley snipes?\tMarian Snipes\t0.986\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.wesley_snipes))) (value (list (name fb:m.0gyhgpn \"Marian Snipes\") (name fb:m.0gyhgpv \"Wesley R. Snipes\"))) (type fb:people.person)\nwho was wesley snipes?\tWesley R. Snipes\t0.986\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.wesley_snipes))) (value (list (name fb:m.0gyhgpn \"Marian Snipes\") (name fb:m.0gyhgpv \"Wesley R. Snipes\"))) (type fb:people.person)\nwhat kind of language does colombia speak?\tSpanish Language\t14.211\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.colombia))) (value (list (name fb:en.spanish \"Spanish Language\"))) (type (union fb:language.human_language))\nwhat currency does england use now?\tUK £\t20.995\tformula (!fb:location.country.currency_used fb:en.england)) (value (list (name fb:en.uk \"UK £\"))) (type fb:finance.currency)\nwho was the original voice of meg griffin on family guy?\tMila Kunis\t15.666\tformula (!fb:tv.regular_tv_appearance.actor (and (!fb:tv.tv_character.appeared_in_tv_program fb:en.meg_griffin) (fb:tv.regular_tv_appearance.series fb:en.family_guy)))) (value (list (name fb:en.mila_kunis \"Mila Kunis\"))) (type fb:tv.tv_actor)\nwhat kind of government is mali?\tUnitary state\t7.72\tformula (!fb:location.country.form_of_government fb:en.mali)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat kind of government is mali?\tSemi-presidential system\t7.72\tformula (!fb:location.country.form_of_government fb:en.mali)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwho did cristiano ronaldo play for in 2010?\tPortugal national football team\t15.639\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo)) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwho did cristiano ronaldo play for in 2010?\tSporting Clube de Portugal\t15.639\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo)) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwho did cristiano ronaldo play for in 2010?\tManchester United F.C.\t15.639\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo)) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwho did cristiano ronaldo play for in 2010?\tReal Madrid C.F.\t15.639\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo)) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat is jacksonville fl timezone?\tJacksonville Jaguars Helmet\t5.18\tformula (!fb:common.topic.image fb:en.jacksonville_jaguars)) (value (list (name fb:m.02kzx8s \"Jacksonville Jaguars Helmet\"))) (type fb:common.image)\nwho does amy stiller play in dodgeball?\tThat's Adequate\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho does amy stiller play in dodgeball?\tAmy Stiller's Breast\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho does amy stiller play in dodgeball?\tEating Matzoh\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho does amy stiller play in dodgeball?\tThe Daytrippers\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho does amy stiller play in dodgeball?\tHighway to Hell\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho does amy stiller play in dodgeball?\tThe Visit\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho does amy stiller play in dodgeball?\tMiss Dial\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho does amy stiller play in dodgeball?\tBright Day!\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho does amy stiller play in dodgeball?\tReality Bites\t4.063\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate \"That's Adequate\") (name fb:en.amy_stillers_breast \"Amy Stiller's Breast\") (name fb:m.0h5kk47 \"Eating Matzoh\") (name fb:en.southie Southie) (name fb:en.the_daytrippers \"The Daytrippers\") (name fb:en.highway_to_hell_1992 \"Highway to Hell\") (name fb:m.0br67f \"The Visit\") (name fb:m.0gkchht \"Miss Dial\") (name fb:m.0h5kkbq \"Bright Day!\") (name fb:en.reality_bites \"Reality Bites\"))) (type fb:film.film)\nwho were king henry vii children?\tHenry VIII of England\t8.469\tformula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england \"Henry VIII of England\") (name fb:en.elizabeth_tudor \"Elizabeth Tudor\") (name fb:en.margaret_tudor \"Margaret Tudor\") (name fb:en.mary_tudor \"Mary Tudor, Queen of France\") (name fb:m.02p4twb \"Edward Tudor\") (name fb:en.edmund_tudor_duke_of_somerset \"Edmund Tudor, Duke of Somerset\") (name fb:en.arthur_prince_of_wales \"Arthur, Prince of Wales\") (name fb:en.katherine_tudor \"Katherine Tudor\"))) (type fb:people.person)\nwho were king henry vii children?\tElizabeth Tudor\t8.469\tformula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england \"Henry VIII of England\") (name fb:en.elizabeth_tudor \"Elizabeth Tudor\") (name fb:en.margaret_tudor \"Margaret Tudor\") (name fb:en.mary_tudor \"Mary Tudor, Queen of France\") (name fb:m.02p4twb \"Edward Tudor\") (name fb:en.edmund_tudor_duke_of_somerset \"Edmund Tudor, Duke of Somerset\") (name fb:en.arthur_prince_of_wales \"Arthur, Prince of Wales\") (name fb:en.katherine_tudor \"Katherine Tudor\"))) (type fb:people.person)\nwho were king henry vii children?\tMargaret Tudor\t8.469\tformula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england \"Henry VIII of England\") (name fb:en.elizabeth_tudor \"Elizabeth Tudor\") (name fb:en.margaret_tudor \"Margaret Tudor\") (name fb:en.mary_tudor \"Mary Tudor, Queen of France\") (name fb:m.02p4twb \"Edward Tudor\") (name fb:en.edmund_tudor_duke_of_somerset \"Edmund Tudor, Duke of Somerset\") (name fb:en.arthur_prince_of_wales \"Arthur, Prince of Wales\") (name fb:en.katherine_tudor \"Katherine Tudor\"))) (type fb:people.person)\nwho were king henry vii children?\tMary Tudor, Queen of France\t8.469\tformula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england \"Henry VIII of England\") (name fb:en.elizabeth_tudor \"Elizabeth Tudor\") (name fb:en.margaret_tudor \"Margaret Tudor\") (name fb:en.mary_tudor \"Mary Tudor, Queen of France\") (name fb:m.02p4twb \"Edward Tudor\") (name fb:en.edmund_tudor_duke_of_somerset \"Edmund Tudor, Duke of Somerset\") (name fb:en.arthur_prince_of_wales \"Arthur, Prince of Wales\") (name fb:en.katherine_tudor \"Katherine Tudor\"))) (type fb:people.person)\nwho were king henry vii children?\tEdward Tudor\t8.469\tformula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england \"Henry VIII of England\") (name fb:en.elizabeth_tudor \"Elizabeth Tudor\") (name fb:en.margaret_tudor \"Margaret Tudor\") (name fb:en.mary_tudor \"Mary Tudor, Queen of France\") (name fb:m.02p4twb \"Edward Tudor\") (name fb:en.edmund_tudor_duke_of_somerset \"Edmund Tudor, Duke of Somerset\") (name fb:en.arthur_prince_of_wales \"Arthur, Prince of Wales\") (name fb:en.katherine_tudor \"Katherine Tudor\"))) (type fb:people.person)\nwho were king henry vii children?\tEdmund Tudor, Duke of Somerset\t8.469\tformula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england \"Henry VIII of England\") (name fb:en.elizabeth_tudor \"Elizabeth Tudor\") (name fb:en.margaret_tudor \"Margaret Tudor\") (name fb:en.mary_tudor \"Mary Tudor, Queen of France\") (name fb:m.02p4twb \"Edward Tudor\") (name fb:en.edmund_tudor_duke_of_somerset \"Edmund Tudor, Duke of Somerset\") (name fb:en.arthur_prince_of_wales \"Arthur, Prince of Wales\") (name fb:en.katherine_tudor \"Katherine Tudor\"))) (type fb:people.person)\nwho were king henry vii children?\tArthur, Prince of Wales\t8.469\tformula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england \"Henry VIII of England\") (name fb:en.elizabeth_tudor \"Elizabeth Tudor\") (name fb:en.margaret_tudor \"Margaret Tudor\") (name fb:en.mary_tudor \"Mary Tudor, Queen of France\") (name fb:m.02p4twb \"Edward Tudor\") (name fb:en.edmund_tudor_duke_of_somerset \"Edmund Tudor, Duke of Somerset\") (name fb:en.arthur_prince_of_wales \"Arthur, Prince of Wales\") (name fb:en.katherine_tudor \"Katherine Tudor\"))) (type fb:people.person)\nwho were king henry vii children?\tKatherine Tudor\t8.469\tformula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england \"Henry VIII of England\") (name fb:en.elizabeth_tudor \"Elizabeth Tudor\") (name fb:en.margaret_tudor \"Margaret Tudor\") (name fb:en.mary_tudor \"Mary Tudor, Queen of France\") (name fb:m.02p4twb \"Edward Tudor\") (name fb:en.edmund_tudor_duke_of_somerset \"Edmund Tudor, Duke of Somerset\") (name fb:en.arthur_prince_of_wales \"Arthur, Prince of Wales\") (name fb:en.katherine_tudor \"Katherine Tudor\"))) (type fb:people.person)\nwho plays mary jane in the spiderman movies?\tShailene Woodley\t6.859\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.mary_jane_watson)) (value (list (name fb:en.shailene_woodley \"Shailene Woodley\") (name fb:en.kirsten_dunst \"Kirsten Dunst\") (name fb:m.0lpzg7k \"Sara Ballantine\"))) (type fb:film.actor)\nwho plays mary jane in the spiderman movies?\tKirsten Dunst\t6.859\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.mary_jane_watson)) (value (list (name fb:en.shailene_woodley \"Shailene Woodley\") (name fb:en.kirsten_dunst \"Kirsten Dunst\") (name fb:m.0lpzg7k \"Sara Ballantine\"))) (type fb:film.actor)\nwho plays mary jane in the spiderman movies?\tSara Ballantine\t6.859\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.mary_jane_watson)) (value (list (name fb:en.shailene_woodley \"Shailene Woodley\") (name fb:en.kirsten_dunst \"Kirsten Dunst\") (name fb:m.0lpzg7k \"Sara Ballantine\"))) (type fb:film.actor)\nwho does mila kunis play on family guy?\tMeg Griffin\t15.848\tformula (!fb:tv.regular_tv_appearance.character (and (!fb:tv.tv_actor.starring_roles fb:en.mila_kunis) (fb:tv.regular_tv_appearance.series fb:en.family_guy)))) (value (list (name fb:en.meg_griffin \"Meg Griffin\"))) (type fb:tv.tv_character)\nwhen did the san francisco earthquake occur?\t1960 NCAA Men's Division I Basketball Tournament\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\t1955 NCAA Men's Division I Basketball Tournament\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\t1959 NCAA Men's Division I Basketball Tournament\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\t2010 Tour of California\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\tCalifornia-Utah 1959 NCAA Men's Division I Basketball Tournament Game\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\t1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\tSt. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\t2012 Shnit International Short Film Festival\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\t1906 San Francisco earthquake\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhen did the san francisco earthquake occur?\t1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\t9.213\tformula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament \"1960 NCAA Men's Division I Basketball Tournament\") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament \"1955 NCAA Men's Division I Basketball Tournament\") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament \"1959 NCAA Men's Division I Basketball Tournament\") (name fb:en.2010_tour_of_california \"2010 Tour of California\") (name fb:m.05hq6n1 \"California-Utah 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.05hq5x2 \"1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals\") (name fb:m.05hq6nf \"St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game\") (name fb:m.0r8cfbc \"2012 Shnit International Short Film Festival\") (name fb:en.1906_san_francisco_earthquake \"1906 San Francisco earthquake\") (name fb:m.05hpj_v \"1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals\"))) (type fb:time.event)\nwhat athlete am i olympics?\tMette Halvorsen\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tDordi Nordby\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tHanne Woods\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tAnne Jøtun\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tMarianne Aspelin\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tAndrea Schöpp\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tMonika Wagner\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tChristiane Scheibel\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tStephanie Mayer\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwhat athlete am i olympics?\tSabine Hutt\t11.481\tformula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen \"Mette Halvorsen\") (name fb:en.dordi_nordby \"Dordi Nordby\") (name fb:en.hanne_woods \"Hanne Woods\") (name fb:en.anne_jotun \"Anne Jøtun\") (name fb:en.marianne_aspelin \"Marianne Aspelin\") (name fb:en.andrea_schopp \"Andrea Schöpp\") (name fb:en.monika_wagner \"Monika Wagner\") (name fb:en.christiane_scheibel \"Christiane Scheibel\") (name fb:en.stephanie_mayer \"Stephanie Mayer\") (name fb:en.sabine_hutt \"Sabine Hutt\"))) (type fb:olympics.olympic_athlete)\nwho did the cleveland cavaliers draft?\tShannon Brown\t11.052\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown \"Shannon Brown\") (name fb:en.j_j_hickson \"J. J. Hickson\") (name fb:m.0k0wkgy \"Dion Waiters\") (name fb:en.lebron_james \"LeBron James\") (name fb:en.luke_jackson \"Luke Jackson\"))) (type fb:sports.drafted_athlete)\nwho did the cleveland cavaliers draft?\tJ. J. Hickson\t11.052\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown \"Shannon Brown\") (name fb:en.j_j_hickson \"J. J. Hickson\") (name fb:m.0k0wkgy \"Dion Waiters\") (name fb:en.lebron_james \"LeBron James\") (name fb:en.luke_jackson \"Luke Jackson\"))) (type fb:sports.drafted_athlete)\nwho did the cleveland cavaliers draft?\tDion Waiters\t11.052\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown \"Shannon Brown\") (name fb:en.j_j_hickson \"J. J. Hickson\") (name fb:m.0k0wkgy \"Dion Waiters\") (name fb:en.lebron_james \"LeBron James\") (name fb:en.luke_jackson \"Luke Jackson\"))) (type fb:sports.drafted_athlete)\nwho did the cleveland cavaliers draft?\tLeBron James\t11.052\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown \"Shannon Brown\") (name fb:en.j_j_hickson \"J. J. Hickson\") (name fb:m.0k0wkgy \"Dion Waiters\") (name fb:en.lebron_james \"LeBron James\") (name fb:en.luke_jackson \"Luke Jackson\"))) (type fb:sports.drafted_athlete)\nwho did the cleveland cavaliers draft?\tLuke Jackson\t11.052\tformula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown \"Shannon Brown\") (name fb:en.j_j_hickson \"J. J. Hickson\") (name fb:m.0k0wkgy \"Dion Waiters\") (name fb:en.lebron_james \"LeBron James\") (name fb:en.luke_jackson \"Luke Jackson\"))) (type fb:sports.drafted_athlete)\nwhen did gordon brown resigns?\tCommission for Africa\t3.417\tformula ((lambda x (fb:organization.organization.leadership (fb:organization.leadership.person (var x)))) fb:en.gordon_brown)) (value (list (name fb:en.commission_for_africa \"Commission for Africa\"))) (type fb:organization.organization)\nwhere does greek language come from?\tRoman Republic\t9.406\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.greek_language))) (value (list (name fb:en.roman_republic \"Roman Republic\") (name fb:en.greece Greece) (name fb:en.byzantine_empire \"Byzantine Empire\") (name fb:en.cyprus Cyprus) (name fb:en.kingdom_of_greece \"Kingdom of Greece\"))) (type fb:location.country)\nwhere does greek language come from?\tByzantine Empire\t9.406\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.greek_language))) (value (list (name fb:en.roman_republic \"Roman Republic\") (name fb:en.greece Greece) (name fb:en.byzantine_empire \"Byzantine Empire\") (name fb:en.cyprus Cyprus) (name fb:en.kingdom_of_greece \"Kingdom of Greece\"))) (type fb:location.country)\nwhere does greek language come from?\tKingdom of Greece\t9.406\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.greek_language))) (value (list (name fb:en.roman_republic \"Roman Republic\") (name fb:en.greece Greece) (name fb:en.byzantine_empire \"Byzantine Empire\") (name fb:en.cyprus Cyprus) (name fb:en.kingdom_of_greece \"Kingdom of Greece\"))) (type fb:location.country)\nwhere did the australian floods take place?\tAustralian Catholic University Faculty of Arts and Sciences\t5.877\tformula (and (fb:type.object.type fb:education.educational_institution) (fb:education.educational_institution.parent_institution fb:en.australian_catholic_university))) (value (list (name fb:m.05l4803 \"Australian Catholic University Faculty of Arts and Sciences\") (name fb:en.australian_catholic_university_faculty_of_education \"Australian Catholic University Faculty of Education\") (name fb:m.05l47_x \"Australian Catholic University Faculty of Health Sciences\") (name fb:m.05l480b \"Australian Catholic University Faculty of Theology and Philosophy\"))) (type fb:education.educational_institution)\nwhere did the australian floods take place?\tAustralian Catholic University Faculty of Education\t5.877\tformula (and (fb:type.object.type fb:education.educational_institution) (fb:education.educational_institution.parent_institution fb:en.australian_catholic_university))) (value (list (name fb:m.05l4803 \"Australian Catholic University Faculty of Arts and Sciences\") (name fb:en.australian_catholic_university_faculty_of_education \"Australian Catholic University Faculty of Education\") (name fb:m.05l47_x \"Australian Catholic University Faculty of Health Sciences\") (name fb:m.05l480b \"Australian Catholic University Faculty of Theology and Philosophy\"))) (type fb:education.educational_institution)\nwhere did the australian floods take place?\tAustralian Catholic University Faculty of Health Sciences\t5.877\tformula (and (fb:type.object.type fb:education.educational_institution) (fb:education.educational_institution.parent_institution fb:en.australian_catholic_university))) (value (list (name fb:m.05l4803 \"Australian Catholic University Faculty of Arts and Sciences\") (name fb:en.australian_catholic_university_faculty_of_education \"Australian Catholic University Faculty of Education\") (name fb:m.05l47_x \"Australian Catholic University Faculty of Health Sciences\") (name fb:m.05l480b \"Australian Catholic University Faculty of Theology and Philosophy\"))) (type fb:education.educational_institution)\nwhere did the australian floods take place?\tAustralian Catholic University Faculty of Theology and Philosophy\t5.877\tformula (and (fb:type.object.type fb:education.educational_institution) (fb:education.educational_institution.parent_institution fb:en.australian_catholic_university))) (value (list (name fb:m.05l4803 \"Australian Catholic University Faculty of Arts and Sciences\") (name fb:en.australian_catholic_university_faculty_of_education \"Australian Catholic University Faculty of Education\") (name fb:m.05l47_x \"Australian Catholic University Faculty of Health Sciences\") (name fb:m.05l480b \"Australian Catholic University Faculty of Theology and Philosophy\"))) (type fb:education.educational_institution)\nwho does darth vaders voice?\tDavid Prowse\t7.801\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does darth vaders voice?\tJames Earl Jones\t7.801\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does darth vaders voice?\tHayden Christensen\t7.801\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does darth vaders voice?\tMatt Lanter\t7.801\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does darth vaders voice?\tSebastian Shaw\t7.801\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does darth vaders voice?\tRobert E. Bean\t7.801\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho does darth vaders voice?\tJake Lloyd\t7.801\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwhen is nrl grand final day?\tPBB GE NRL 206596 s at tn\t6.791\tformula (!fb:common.topic.image fb:m.03gxpgc)) (value (list (name fb:m.042h7m2 \"PBB GE NRL 206596 s at tn\"))) (type fb:common.image)\nwhat school did douglas macarthur go to?\tUnited States Military Academy\t17.054\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.douglas_macarthur))) (value (list (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.t_m_i_the_episcopal_school_of_texas \"TMI — The Episcopal School of Texas\"))) (type fb:education.educational_institution)\nwhat school did douglas macarthur go to?\tTMI — The Episcopal School of Texas\t17.054\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.douglas_macarthur))) (value (list (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.t_m_i_the_episcopal_school_of_texas \"TMI — The Episcopal School of Texas\"))) (type fb:education.educational_institution)\nwhat famous people are from barbados?\tHigh Commission of Barbados, Ottawa\t8.001\tformula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.barbados)) (value (list (name fb:en.high_commission_of_barbados_in_ottawa \"High Commission of Barbados, Ottawa\"))) (type fb:user.skud.embassies_and_consulates.embassy)\nwhat are the names of michael jackson's 3 children?\tPrince Michael Jackson II\t9.755\tformula (!fb:people.person.children fb:en.michael_jackson)) (value (list (name fb:en.prince_michael_jackson_ii \"Prince Michael Jackson II\") (name fb:en.paris_michael_katherine_jackson \"Paris-Michael Katherine Jackson\") (name fb:en.michael_joseph_jackson_jr \"Michael Joseph Jackson, Jr.\"))) (type fb:people.person)\nwhat are the names of michael jackson's 3 children?\tParis-Michael Katherine Jackson\t9.755\tformula (!fb:people.person.children fb:en.michael_jackson)) (value (list (name fb:en.prince_michael_jackson_ii \"Prince Michael Jackson II\") (name fb:en.paris_michael_katherine_jackson \"Paris-Michael Katherine Jackson\") (name fb:en.michael_joseph_jackson_jr \"Michael Joseph Jackson, Jr.\"))) (type fb:people.person)\nwhat are the names of michael jackson's 3 children?\tMichael Joseph Jackson, Jr.\t9.755\tformula (!fb:people.person.children fb:en.michael_jackson)) (value (list (name fb:en.prince_michael_jackson_ii \"Prince Michael Jackson II\") (name fb:en.paris_michael_katherine_jackson \"Paris-Michael Katherine Jackson\") (name fb:en.michael_joseph_jackson_jr \"Michael Joseph Jackson, Jr.\"))) (type fb:people.person)\nwhat currency to take to turkey 2010?\tTurkish lira\t20.736\tformula (!fb:location.country.currency_used fb:en.turkey)) (value (list (name fb:en.turkish_lira \"Turkish lira\"))) (type fb:finance.currency)\nwho is the current governor of arizona 2010?\tKyrsten Sinema\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tRaúl Héctor Castro\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tSandra Day O'Connor\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tDoug Coleman\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tThomas Edward Campbell\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tTom Horne\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tJanet Napolitano\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tRawghlie Clement Stanford\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tGeorge W. P. Hunt\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwho is the current governor of arizona 2010?\tBenjamin Baker Moeur\t16.302\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema \"Kyrsten Sinema\") (name fb:en.raul_hector_castro \"Raúl Héctor Castro\") (name fb:en.sandra_day_oconnor \"Sandra Day O'Connor\") (name fb:m.0r4vk2l \"Doug Coleman\") (name fb:en.thomas_edward_campbell \"Thomas Edward Campbell\") (name fb:en.tom_horne \"Tom Horne\") (name fb:en.janet_napolitano \"Janet Napolitano\") (name fb:en.rawghlie_clement_stanford \"Rawghlie Clement Stanford\") (name fb:en.george_w_p_hunt \"George W. P. Hunt\") (name fb:en.benjamin_baker_moeur \"Benjamin Baker Moeur\"))) (type fb:government.politician)\nwhen was the most recent earthquake in haiti?\t2010 Haiti Earthquake\t12.209\tformula ((lambda x (!fb:user.robert.earthquakes.earthquake_nearest_location.earthquake (!fb:user.robert.earthquakes.earthquake_epicenter.earthquakes_centered_here (var x)))) fb:en.haiti)) (value (list (name fb:m.09rkpyw \"2010 Haiti Earthquake\"))) (type fb:user.robert.earthquakes.earthquake)\nwho is lamar odom playing for this year?\tLos Angeles Clippers\t8.952\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.lamar_odom)) (value (list (name fb:en.los_angeles_clippers \"Los Angeles Clippers\") (name fb:en.dallas_mavericks \"Dallas Mavericks\") (name fb:en.minneapolis_lakers \"Los Angeles Lakers\"))) (type fb:sports.sports_team)\nwho is lamar odom playing for this year?\tDallas Mavericks\t8.952\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.lamar_odom)) (value (list (name fb:en.los_angeles_clippers \"Los Angeles Clippers\") (name fb:en.dallas_mavericks \"Dallas Mavericks\") (name fb:en.minneapolis_lakers \"Los Angeles Lakers\"))) (type fb:sports.sports_team)\nwho is lamar odom playing for this year?\tLos Angeles Lakers\t8.952\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.lamar_odom)) (value (list (name fb:en.los_angeles_clippers \"Los Angeles Clippers\") (name fb:en.dallas_mavericks \"Dallas Mavericks\") (name fb:en.minneapolis_lakers \"Los Angeles Lakers\"))) (type fb:sports.sports_team)\nwhere were the great pyramids of giza built?\tGiza Plateau\t11.191\tformula (and (fb:type.object.type fb:location.location) (fb:architecture.building_complex.buildings_in_complex fb:en.great_pyramid_of_giza))) (value (list (name fb:en.giza_pyramid_complex \"Giza Plateau\"))) (type fb:architecture.building_complex)\nwho designed national flag of italy?\tFlag of Italy\t8.241\tformula ((lambda x (!fb:symbols.flag_use.flag (!fb:symbols.flag_referent.flag (var x)))) fb:en.italy)) (value (list (name fb:en.flag_of_italy \"Flag of Italy\"))) (type fb:symbols.flag)\nwhat language do the russian speak?\tRussian Language\t15.946\tformula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.russians))) (value (list (name fb:en.russian_language \"Russian Language\"))) (type fb:language.human_language)\nwhat language do australia people speak?\tEnglish Language\t10.01\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.australia))) (value (list (name fb:en.english \"English Language\") (name fb:en.lojban Lojban) (name fb:en.esperanto \"Esperanto Language\"))) (type (union fb:language.human_language))\nwhat language do australia people speak?\tEsperanto Language\t10.01\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.australia))) (value (list (name fb:en.english \"English Language\") (name fb:en.lojban Lojban) (name fb:en.esperanto \"Esperanto Language\"))) (type (union fb:language.human_language))\nwhere did george washington carver go to collage?\tTuskegee University\t14.16\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_washington_carver))) (value (list (name fb:en.tuskegee_university \"Tuskegee University\") (name fb:en.iowa_state_university \"Iowa State University\") (name fb:en.simpson_college \"Simpson College\"))) (type fb:education.educational_institution)\nwhere did george washington carver go to collage?\tIowa State University\t14.16\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_washington_carver))) (value (list (name fb:en.tuskegee_university \"Tuskegee University\") (name fb:en.iowa_state_university \"Iowa State University\") (name fb:en.simpson_college \"Simpson College\"))) (type fb:education.educational_institution)\nwhere did george washington carver go to collage?\tSimpson College\t14.16\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_washington_carver))) (value (list (name fb:en.tuskegee_university \"Tuskegee University\") (name fb:en.iowa_state_university \"Iowa State University\") (name fb:en.simpson_college \"Simpson College\"))) (type fb:education.educational_institution)\nwhat sports do people play in poland?\tPoland national football team\t11.207\tformula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team \"Poland national football team\") (name fb:en.poland_womens_national_volleyball_team \"Poland women's national volleyball team\") (name fb:en.poland_national_handball_team \"Poland national handball team\") (name fb:en.poland_womens_national_handball_team \"Poland women's national handball team\") (name fb:en.poland_national_volleyball_team \"Poland men's national volleyball team\"))) (type fb:sports.sports_team)\nwhat sports do people play in poland?\tPoland women's national volleyball team\t11.207\tformula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team \"Poland national football team\") (name fb:en.poland_womens_national_volleyball_team \"Poland women's national volleyball team\") (name fb:en.poland_national_handball_team \"Poland national handball team\") (name fb:en.poland_womens_national_handball_team \"Poland women's national handball team\") (name fb:en.poland_national_volleyball_team \"Poland men's national volleyball team\"))) (type fb:sports.sports_team)\nwhat sports do people play in poland?\tPoland national handball team\t11.207\tformula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team \"Poland national football team\") (name fb:en.poland_womens_national_volleyball_team \"Poland women's national volleyball team\") (name fb:en.poland_national_handball_team \"Poland national handball team\") (name fb:en.poland_womens_national_handball_team \"Poland women's national handball team\") (name fb:en.poland_national_volleyball_team \"Poland men's national volleyball team\"))) (type fb:sports.sports_team)\nwhat sports do people play in poland?\tPoland women's national handball team\t11.207\tformula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team \"Poland national football team\") (name fb:en.poland_womens_national_volleyball_team \"Poland women's national volleyball team\") (name fb:en.poland_national_handball_team \"Poland national handball team\") (name fb:en.poland_womens_national_handball_team \"Poland women's national handball team\") (name fb:en.poland_national_volleyball_team \"Poland men's national volleyball team\"))) (type fb:sports.sports_team)\nwhat sports do people play in poland?\tPoland men's national volleyball team\t11.207\tformula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team \"Poland national football team\") (name fb:en.poland_womens_national_volleyball_team \"Poland women's national volleyball team\") (name fb:en.poland_national_handball_team \"Poland national handball team\") (name fb:en.poland_womens_national_handball_team \"Poland women's national handball team\") (name fb:en.poland_national_volleyball_team \"Poland men's national volleyball team\"))) (type fb:sports.sports_team)\nwho was demi lovato dating?\tSonny Munroe\t5.435\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.demi_lovato)) (value (list (name fb:en.sonny_munroe \"Sonny Munroe\") (name fb:m.0l3qr73 Angela) (name fb:m.0nf3blh \"Charlotte Adams\"))) (type fb:tv.tv_character)\nwho was demi lovato dating?\tCharlotte Adams\t5.435\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.demi_lovato)) (value (list (name fb:en.sonny_munroe \"Sonny Munroe\") (name fb:m.0l3qr73 Angela) (name fb:m.0nf3blh \"Charlotte Adams\"))) (type fb:tv.tv_character)\nwhere did tony gonzalez play college basketball?\tUniversity of California, Berkeley\t5.23\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tony_gonzalez_1976)))) (value (list (name fb:en.university_of_california_berkeley \"University of California, Berkeley\"))) (type fb:education.university)\nwhat films has scarlett johansson been in?\tHome Alone 3\t16.709\tformula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 \"Home Alone 3\") (name fb:en.north_1995 North) (name fb:en.a_good_woman \"A Good Woman\") (name fb:en.match_point \"Match Point\") (name fb:en.eight_legged_freaks \"Eight Legged Freaks\") (name fb:en.the_perfect_score \"The Perfect Score\") (name fb:en.the_man_who_wasnt_there \"The Man Who Wasn't There\") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q \"The Avengers 2\") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film))\nwhat films has scarlett johansson been in?\tA Good Woman\t16.709\tformula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 \"Home Alone 3\") (name fb:en.north_1995 North) (name fb:en.a_good_woman \"A Good Woman\") (name fb:en.match_point \"Match Point\") (name fb:en.eight_legged_freaks \"Eight Legged Freaks\") (name fb:en.the_perfect_score \"The Perfect Score\") (name fb:en.the_man_who_wasnt_there \"The Man Who Wasn't There\") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q \"The Avengers 2\") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film))\nwhat films has scarlett johansson been in?\tMatch Point\t16.709\tformula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 \"Home Alone 3\") (name fb:en.north_1995 North) (name fb:en.a_good_woman \"A Good Woman\") (name fb:en.match_point \"Match Point\") (name fb:en.eight_legged_freaks \"Eight Legged Freaks\") (name fb:en.the_perfect_score \"The Perfect Score\") (name fb:en.the_man_who_wasnt_there \"The Man Who Wasn't There\") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q \"The Avengers 2\") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film))\nwhat films has scarlett johansson been in?\tEight Legged Freaks\t16.709\tformula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 \"Home Alone 3\") (name fb:en.north_1995 North) (name fb:en.a_good_woman \"A Good Woman\") (name fb:en.match_point \"Match Point\") (name fb:en.eight_legged_freaks \"Eight Legged Freaks\") (name fb:en.the_perfect_score \"The Perfect Score\") (name fb:en.the_man_who_wasnt_there \"The Man Who Wasn't There\") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q \"The Avengers 2\") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film))\nwhat films has scarlett johansson been in?\tThe Perfect Score\t16.709\tformula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 \"Home Alone 3\") (name fb:en.north_1995 North) (name fb:en.a_good_woman \"A Good Woman\") (name fb:en.match_point \"Match Point\") (name fb:en.eight_legged_freaks \"Eight Legged Freaks\") (name fb:en.the_perfect_score \"The Perfect Score\") (name fb:en.the_man_who_wasnt_there \"The Man Who Wasn't There\") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q \"The Avengers 2\") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film))\nwhat films has scarlett johansson been in?\tThe Man Who Wasn't There\t16.709\tformula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 \"Home Alone 3\") (name fb:en.north_1995 North) (name fb:en.a_good_woman \"A Good Woman\") (name fb:en.match_point \"Match Point\") (name fb:en.eight_legged_freaks \"Eight Legged Freaks\") (name fb:en.the_perfect_score \"The Perfect Score\") (name fb:en.the_man_who_wasnt_there \"The Man Who Wasn't There\") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q \"The Avengers 2\") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film))\nwhat films has scarlett johansson been in?\tThe Avengers 2\t16.709\tformula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 \"Home Alone 3\") (name fb:en.north_1995 North) (name fb:en.a_good_woman \"A Good Woman\") (name fb:en.match_point \"Match Point\") (name fb:en.eight_legged_freaks \"Eight Legged Freaks\") (name fb:en.the_perfect_score \"The Perfect Score\") (name fb:en.the_man_who_wasnt_there \"The Man Who Wasn't There\") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q \"The Avengers 2\") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film))\nwho originally voiced meg on family guy?\tFox Broadcasting Company\t8.401\tformula ((lambda x (!fb:tv.tv_network_duration.network (!fb:tv.tv_program.original_network (var x)))) fb:en.family_guy)) (value (list (name fb:en.fox_broadcasting_company \"Fox Broadcasting Company\"))) (type fb:tv.tv_network)\nwho played amy squirrel in bad teacher?\tLucy Punch\t8.479\tformula (fb:film.actor.film (and (fb:film.performance.character fb:m.0glzmqc) (fb:film.performance.film fb:en.bad_teacher)))) (value (list (name fb:en.lucy_punch \"Lucy Punch\"))) (type fb:film.actor)\nwhat type of religions are in the united states?\tUnitarian Universalism\t17.493\tformula ((lambda x (!fb:location.religion_percentage.religion (!fb:location.statistical_region.religions (var x)))) fb:en.united_states_of_america)) (value (list (name fb:en.hinduism Hinduism) (name fb:en.islam Islam) (name fb:en.unitarian_universalism \"Unitarian Universalism\") (name fb:en.buddhism Buddhism) (name fb:en.judaism Judaism) (name fb:en.atheism Atheism) (name fb:en.christianity Christianity))) (type fb:religion.religion)\nwho did viggo mortensen play in lord of the rings?\tEntertainment Weekly annotation index\t5.293\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.viggo_mortensen)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwho did viggo mortensen play in lord of the rings?\tBlissful Master Index\t5.293\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.viggo_mortensen)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwho did viggo mortensen play in lord of the rings?\tBlissful Celebrities\t5.293\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.viggo_mortensen)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwho did viggo mortensen play in lord of the rings?\tWSJ Speakeasy Index\t5.293\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.viggo_mortensen)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nwhat lands did henry hudson discover?\tUnited Kingdom\t7.072\tformula (!fb:people.person.nationality fb:en.henry_hudson)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.england England))) (type fb:location.country)\nwho was isaac newton and what did he do?\t8000 Isaac Newton\t19.073\tformula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton \"8000 Isaac Newton\") (name fb:en.newtons_laws_of_motion \"Newton's laws of motion\") (name fb:en.newtons_method \"Newton's method\") (name fb:en.newton-euler_equations \"Newton–Euler equations\") (name fb:en.newtons_notation_for_differentiation \"Newton's notation\") (name fb:en.newtons_cannonball \"Newton's cannonball\") (name fb:m.03ty4g Newton) (name fb:en.newton_disc \"Newton disc\") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake)\nwho was isaac newton and what did he do?\tNewton's laws of motion\t19.073\tformula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton \"8000 Isaac Newton\") (name fb:en.newtons_laws_of_motion \"Newton's laws of motion\") (name fb:en.newtons_method \"Newton's method\") (name fb:en.newton-euler_equations \"Newton–Euler equations\") (name fb:en.newtons_notation_for_differentiation \"Newton's notation\") (name fb:en.newtons_cannonball \"Newton's cannonball\") (name fb:m.03ty4g Newton) (name fb:en.newton_disc \"Newton disc\") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake)\nwho was isaac newton and what did he do?\tNewton's method\t19.073\tformula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton \"8000 Isaac Newton\") (name fb:en.newtons_laws_of_motion \"Newton's laws of motion\") (name fb:en.newtons_method \"Newton's method\") (name fb:en.newton-euler_equations \"Newton–Euler equations\") (name fb:en.newtons_notation_for_differentiation \"Newton's notation\") (name fb:en.newtons_cannonball \"Newton's cannonball\") (name fb:m.03ty4g Newton) (name fb:en.newton_disc \"Newton disc\") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake)\nwho was isaac newton and what did he do?\tNewton–Euler equations\t19.073\tformula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton \"8000 Isaac Newton\") (name fb:en.newtons_laws_of_motion \"Newton's laws of motion\") (name fb:en.newtons_method \"Newton's method\") (name fb:en.newton-euler_equations \"Newton–Euler equations\") (name fb:en.newtons_notation_for_differentiation \"Newton's notation\") (name fb:en.newtons_cannonball \"Newton's cannonball\") (name fb:m.03ty4g Newton) (name fb:en.newton_disc \"Newton disc\") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake)\nwho was isaac newton and what did he do?\tNewton's notation\t19.073\tformula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton \"8000 Isaac Newton\") (name fb:en.newtons_laws_of_motion \"Newton's laws of motion\") (name fb:en.newtons_method \"Newton's method\") (name fb:en.newton-euler_equations \"Newton–Euler equations\") (name fb:en.newtons_notation_for_differentiation \"Newton's notation\") (name fb:en.newtons_cannonball \"Newton's cannonball\") (name fb:m.03ty4g Newton) (name fb:en.newton_disc \"Newton disc\") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake)\nwho was isaac newton and what did he do?\tNewton's cannonball\t19.073\tformula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton \"8000 Isaac Newton\") (name fb:en.newtons_laws_of_motion \"Newton's laws of motion\") (name fb:en.newtons_method \"Newton's method\") (name fb:en.newton-euler_equations \"Newton–Euler equations\") (name fb:en.newtons_notation_for_differentiation \"Newton's notation\") (name fb:en.newtons_cannonball \"Newton's cannonball\") (name fb:m.03ty4g Newton) (name fb:en.newton_disc \"Newton disc\") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake)\nwho was isaac newton and what did he do?\tNewton disc\t19.073\tformula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton \"8000 Isaac Newton\") (name fb:en.newtons_laws_of_motion \"Newton's laws of motion\") (name fb:en.newtons_method \"Newton's method\") (name fb:en.newton-euler_equations \"Newton–Euler equations\") (name fb:en.newtons_notation_for_differentiation \"Newton's notation\") (name fb:en.newtons_cannonball \"Newton's cannonball\") (name fb:m.03ty4g Newton) (name fb:en.newton_disc \"Newton disc\") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake)\nwho did william shakespeare marry?\tAnne Hathaway\t11.573\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.william_shakespeare)) (value (list (name fb:en.anne_hathaway_1556 \"Anne Hathaway\"))) (type fb:people.person)\nwhat movies queen latifah is in?\tIce Age: The Meltdown\t5.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 \"Ice Age: The Meltdown\") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw \"Latifah's Had It Up 2 Here\") (name fb:en.all_hail_the_queen \"All Hail the Queen\") (name fb:m.0_kd9p \"Fly Girl\") (name fb:m.0my5k4f \"I Wanna Be Down\") (name fb:m.05zynv8 \"Living with the Dead\") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:en.just_wright \"Just Wright\"))) (type (union fb:award.award_nominated_work))\nwhat movies queen latifah is in?\tLatifah's Had It Up 2 Here\t5.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 \"Ice Age: The Meltdown\") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw \"Latifah's Had It Up 2 Here\") (name fb:en.all_hail_the_queen \"All Hail the Queen\") (name fb:m.0_kd9p \"Fly Girl\") (name fb:m.0my5k4f \"I Wanna Be Down\") (name fb:m.05zynv8 \"Living with the Dead\") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:en.just_wright \"Just Wright\"))) (type (union fb:award.award_nominated_work))\nwhat movies queen latifah is in?\tAll Hail the Queen\t5.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 \"Ice Age: The Meltdown\") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw \"Latifah's Had It Up 2 Here\") (name fb:en.all_hail_the_queen \"All Hail the Queen\") (name fb:m.0_kd9p \"Fly Girl\") (name fb:m.0my5k4f \"I Wanna Be Down\") (name fb:m.05zynv8 \"Living with the Dead\") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:en.just_wright \"Just Wright\"))) (type (union fb:award.award_nominated_work))\nwhat movies queen latifah is in?\tFly Girl\t5.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 \"Ice Age: The Meltdown\") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw \"Latifah's Had It Up 2 Here\") (name fb:en.all_hail_the_queen \"All Hail the Queen\") (name fb:m.0_kd9p \"Fly Girl\") (name fb:m.0my5k4f \"I Wanna Be Down\") (name fb:m.05zynv8 \"Living with the Dead\") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:en.just_wright \"Just Wright\"))) (type (union fb:award.award_nominated_work))\nwhat movies queen latifah is in?\tI Wanna Be Down\t5.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 \"Ice Age: The Meltdown\") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw \"Latifah's Had It Up 2 Here\") (name fb:en.all_hail_the_queen \"All Hail the Queen\") (name fb:m.0_kd9p \"Fly Girl\") (name fb:m.0my5k4f \"I Wanna Be Down\") (name fb:m.05zynv8 \"Living with the Dead\") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:en.just_wright \"Just Wright\"))) (type (union fb:award.award_nominated_work))\nwhat movies queen latifah is in?\tLiving with the Dead\t5.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 \"Ice Age: The Meltdown\") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw \"Latifah's Had It Up 2 Here\") (name fb:en.all_hail_the_queen \"All Hail the Queen\") (name fb:m.0_kd9p \"Fly Girl\") (name fb:m.0my5k4f \"I Wanna Be Down\") (name fb:m.05zynv8 \"Living with the Dead\") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:en.just_wright \"Just Wright\"))) (type (union fb:award.award_nominated_work))\nwhat movies queen latifah is in?\tValentine's Day\t5.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 \"Ice Age: The Meltdown\") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw \"Latifah's Had It Up 2 Here\") (name fb:en.all_hail_the_queen \"All Hail the Queen\") (name fb:m.0_kd9p \"Fly Girl\") (name fb:m.0my5k4f \"I Wanna Be Down\") (name fb:m.05zynv8 \"Living with the Dead\") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:en.just_wright \"Just Wright\"))) (type (union fb:award.award_nominated_work))\nwhat movies queen latifah is in?\tJust Wright\t5.938\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 \"Ice Age: The Meltdown\") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw \"Latifah's Had It Up 2 Here\") (name fb:en.all_hail_the_queen \"All Hail the Queen\") (name fb:m.0_kd9p \"Fly Girl\") (name fb:m.0my5k4f \"I Wanna Be Down\") (name fb:m.05zynv8 \"Living with the Dead\") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 \"Valentine's Day\") (name fb:en.just_wright \"Just Wright\"))) (type (union fb:award.award_nominated_work))\nwhere did michelle obama graduated from?\tWhitney M. Young Magnet High School\t7.545\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michelle_obama))) (value (list (name fb:en.whitney_young_magnet_high_school \"Whitney M. Young Magnet High School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhere did michelle obama graduated from?\tPrinceton University\t7.545\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michelle_obama))) (value (list (name fb:en.whitney_young_magnet_high_school \"Whitney M. Young Magnet High School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhere did michelle obama graduated from?\tHarvard Law School\t7.545\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michelle_obama))) (value (list (name fb:en.whitney_young_magnet_high_school \"Whitney M. Young Magnet High School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.harvard_law_school \"Harvard Law School\"))) (type fb:education.educational_institution)\nwhat kind of music did franz liszt compose?\tClassical music\t13.35\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.franz_liszt))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.chamber_music \"Chamber music\") (name fb:m.05lls Opera) (name fb:en.art_song \"Art song\") (name fb:en.romantic_music \"Romantic music\"))) (type (union fb:music.genre))\nwhat kind of music did franz liszt compose?\tChamber music\t13.35\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.franz_liszt))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.chamber_music \"Chamber music\") (name fb:m.05lls Opera) (name fb:en.art_song \"Art song\") (name fb:en.romantic_music \"Romantic music\"))) (type (union fb:music.genre))\nwhat kind of music did franz liszt compose?\tArt song\t13.35\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.franz_liszt))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.chamber_music \"Chamber music\") (name fb:m.05lls Opera) (name fb:en.art_song \"Art song\") (name fb:en.romantic_music \"Romantic music\"))) (type (union fb:music.genre))\nwhat kind of music did franz liszt compose?\tRomantic music\t13.35\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.franz_liszt))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.chamber_music \"Chamber music\") (name fb:m.05lls Opera) (name fb:en.art_song \"Art song\") (name fb:en.romantic_music \"Romantic music\"))) (type (union fb:music.genre))\nwhat document did thomas jefferson wrote?\tThe Works of Thomas Jefferson\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhat document did thomas jefferson wrote?\tThe family letters of Thomas Jefferson\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhat document did thomas jefferson wrote?\tA manual of parliamentary practice for the use of the Senate of the United States\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhat document did thomas jefferson wrote?\tThe Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhat document did thomas jefferson wrote?\tThe Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhat document did thomas jefferson wrote?\tThe Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhat document did thomas jefferson wrote?\tUnited States Declaration of Independence\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhat document did thomas jefferson wrote?\tJefferson Bible\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhat document did thomas jefferson wrote?\tLight and liberty\t7.975\tformula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson \"The Works of Thomas Jefferson\") (name fb:en.family_letters_of_thomas_jefferson \"The family letters of Thomas Jefferson\") (name fb:m.04t1mbm \"A manual of parliamentary practice for the use of the Senate of the United States\") (name fb:m.0dv5xvy \"The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792\") (name fb:m.0dr1cyf \"The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791\") (name fb:m.0dv5_62 \"The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792\") (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible \"Jefferson Bible\") (name fb:en.light_and_liberty \"Light and liberty\"))) (type fb:book.written_work)\nwhere is victoria british columbia?\tCascade Range\t3.522\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.partially_contains fb:en.british_columbia))) (value (list (name fb:en.cascade_range \"Cascade Range\") (name fb:en.osoyoos_lake \"Osoyoos Lake\") (name fb:en.pend_oreille_river \"Pend Oreille River\") (name fb:m.0b74f_6 \"Mount Williams\"))) (type fb:location.location)\nwhere is victoria british columbia?\tOsoyoos Lake\t3.522\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.partially_contains fb:en.british_columbia))) (value (list (name fb:en.cascade_range \"Cascade Range\") (name fb:en.osoyoos_lake \"Osoyoos Lake\") (name fb:en.pend_oreille_river \"Pend Oreille River\") (name fb:m.0b74f_6 \"Mount Williams\"))) (type fb:location.location)\nwhere is victoria british columbia?\tPend Oreille River\t3.522\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.partially_contains fb:en.british_columbia))) (value (list (name fb:en.cascade_range \"Cascade Range\") (name fb:en.osoyoos_lake \"Osoyoos Lake\") (name fb:en.pend_oreille_river \"Pend Oreille River\") (name fb:m.0b74f_6 \"Mount Williams\"))) (type fb:location.location)\nwhere is victoria british columbia?\tMount Williams\t3.522\tformula (and (fb:type.object.type fb:location.location) (!fb:location.location.partially_contains fb:en.british_columbia))) (value (list (name fb:en.cascade_range \"Cascade Range\") (name fb:en.osoyoos_lake \"Osoyoos Lake\") (name fb:en.pend_oreille_river \"Pend Oreille River\") (name fb:m.0b74f_6 \"Mount Williams\"))) (type fb:location.location)\nhow many mary mary sisters?\tManny Marroquin\t-1.414\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winner.awards_won (var x)))) fb:en.mary_mary)) (value (list (name fb:en.manny_marroquin \"Manny Marroquin\") (name fb:en.warryn_campbell \"Warryn Campbell\"))) (type fb:award.award_winner)\nhow many mary mary sisters?\tWarryn Campbell\t-1.414\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winner.awards_won (var x)))) fb:en.mary_mary)) (value (list (name fb:en.manny_marroquin \"Manny Marroquin\") (name fb:en.warryn_campbell \"Warryn Campbell\"))) (type fb:award.award_winner)\nwhat do we call the currency of france?\tCFP franc\t29.338\tformula (!fb:location.country.currency_used fb:en.france)) (value (list (name fb:en.euro Euro) (name fb:en.cfp_franc \"CFP franc\"))) (type fb:finance.currency)\nwhat team does david beckham play for in 2012?\tReal Madrid C.F.\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team does david beckham play for in 2012?\tLA Galaxy\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team does david beckham play for in 2012?\tA.C. Milan\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team does david beckham play for in 2012?\tParis Saint-Germain F.C.\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team does david beckham play for in 2012?\tPreston North End F.C.\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team does david beckham play for in 2012?\tManchester United F.C.\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team does david beckham play for in 2012?\tEngland national under-21 football team\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat team does david beckham play for in 2012?\tEngland national football team\t18.67\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid \"Real Madrid C.F.\") (name fb:en.los_angeles_galaxy \"LA Galaxy\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.preston_north_end_fc \"Preston North End F.C.\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.england_national_under-21_football_team \"England national under-21 football team\") (name fb:en.england_national_football_team \"England national football team\"))) (type fb:soccer.football_team)\nwhat movies did nick cannon star in?\tAll That\t11.06\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.nick_cannon))) (value (list (name fb:en.bobby Bobby) (name fb:en.drumline_2002 Drumline) (name fb:en.all_that \"All That\") (name fb:en.the_nick_cannon_show \"The Nick Cannon Show\"))) (type fb:award.award_nominated_work)\nwhat movies did nick cannon star in?\tThe Nick Cannon Show\t11.06\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.nick_cannon))) (value (list (name fb:en.bobby Bobby) (name fb:en.drumline_2002 Drumline) (name fb:en.all_that \"All That\") (name fb:en.the_nick_cannon_show \"The Nick Cannon Show\"))) (type fb:award.award_nominated_work)\nwho did tom landry play for?\tTexas Longhorns football\t13.563\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.tom_landry)) (value (list (name fb:en.texas_longhorns_football \"Texas Longhorns football\") (name fb:m.07342k \"New York Yankees\") (name fb:en.new_york_giants \"New York Giants\"))) (type fb:sports.sports_team)\nwho did tom landry play for?\tNew York Yankees\t13.563\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.tom_landry)) (value (list (name fb:en.texas_longhorns_football \"Texas Longhorns football\") (name fb:m.07342k \"New York Yankees\") (name fb:en.new_york_giants \"New York Giants\"))) (type fb:sports.sports_team)\nwho did tom landry play for?\tNew York Giants\t13.563\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.tom_landry)) (value (list (name fb:en.texas_longhorns_football \"Texas Longhorns football\") (name fb:m.07342k \"New York Yankees\") (name fb:en.new_york_giants \"New York Giants\"))) (type fb:sports.sports_team)\nwhere was john jay born?\tUnited States of America\t9.223\tformula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:m.02pxm8f))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.location)\nwhen is venus brightest?\tEntertainment Weekly annotation index\t3.153\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.venus)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nwhat countries makes up the uk?\tUnited Kingdom\t11.401\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries makes up the uk?\tNorthern Ireland\t11.401\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries makes up the uk?\tKingdom of Great Britain\t11.401\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries makes up the uk?\tKingdom of England\t11.401\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhat countries makes up the uk?\tIsle of Man\t11.401\tformula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland \"Northern Ireland\") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain \"Kingdom of Great Britain\") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england \"Kingdom of England\") (name fb:en.isle_of_man \"Isle of Man\"))) (type (union fb:location.country))\nwhere do they speak german?\tNazi Germany\t15.8\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany \"Nazi Germany\") (name fb:en.weimar_republic \"Weimar Republic\") (name fb:en.german_democratic_republic \"German Democratic Republic\") (name fb:en.nedics_serbia \"Nedić's Serbia\"))) (type fb:location.country)\nwhere do they speak german?\tWeimar Republic\t15.8\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany \"Nazi Germany\") (name fb:en.weimar_republic \"Weimar Republic\") (name fb:en.german_democratic_republic \"German Democratic Republic\") (name fb:en.nedics_serbia \"Nedić's Serbia\"))) (type fb:location.country)\nwhere do they speak german?\tGerman Democratic Republic\t15.8\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany \"Nazi Germany\") (name fb:en.weimar_republic \"Weimar Republic\") (name fb:en.german_democratic_republic \"German Democratic Republic\") (name fb:en.nedics_serbia \"Nedić's Serbia\"))) (type fb:location.country)\nwhere do they speak german?\tNedić's Serbia\t15.8\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany \"Nazi Germany\") (name fb:en.weimar_republic \"Weimar Republic\") (name fb:en.german_democratic_republic \"German Democratic Republic\") (name fb:en.nedics_serbia \"Nedić's Serbia\"))) (type fb:location.country)\nwhen did mark mcgwire retired?\tOakland Athletics\t7.655\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.mark_mcgwire)) (value (list (name fb:en.oakland_athletics \"Oakland Athletics\") (name fb:en.st_louis_cardinals \"St. Louis Cardinals\"))) (type fb:sports.sports_team)\nwhen did mark mcgwire retired?\tSt. Louis Cardinals\t7.655\tformula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.mark_mcgwire)) (value (list (name fb:en.oakland_athletics \"Oakland Athletics\") (name fb:en.st_louis_cardinals \"St. Louis Cardinals\"))) (type fb:sports.sports_team)\nwhat is colorado technical university?\tUnited States of America\t7.167\tformula (!fb:location.location.containedby fb:en.colorado_technical_university)) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.north_america \"North America\") (name fb:en.colorado Colorado) (name fb:en.colorado_springs \"Colorado Springs\"))) (type fb:location.location)\nwhat is colorado technical university?\tNorth America\t7.167\tformula (!fb:location.location.containedby fb:en.colorado_technical_university)) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.north_america \"North America\") (name fb:en.colorado Colorado) (name fb:en.colorado_springs \"Colorado Springs\"))) (type fb:location.location)\nwhat is colorado technical university?\tColorado Springs\t7.167\tformula (!fb:location.location.containedby fb:en.colorado_technical_university)) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.north_america \"North America\") (name fb:en.colorado Colorado) (name fb:en.colorado_springs \"Colorado Springs\"))) (type fb:location.location)\nwhat was the currency used in france before the euro?\tCFP franc\t26.4\tformula (and (fb:type.object.type fb:finance.currency) (fb:finance.currency.countries_used fb:en.france))) (value (list (name fb:en.euro Euro) (name fb:en.cfp_franc \"CFP franc\"))) (type fb:finance.currency)\nwhat is kentucky state slogan?\tSpotted bass\t8.74\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass \"Spotted bass\") (name fb:en.united_we_stand_divided_we_fall \"United we stand, divided we fall\") (name fb:en.liriodendron_tulipifera \"Liriodendron tulipifera\") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division)\nwhat is kentucky state slogan?\tUnited we stand, divided we fall\t8.74\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass \"Spotted bass\") (name fb:en.united_we_stand_divided_we_fall \"United we stand, divided we fall\") (name fb:en.liriodendron_tulipifera \"Liriodendron tulipifera\") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division)\nwhat is kentucky state slogan?\tLiriodendron tulipifera\t8.74\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass \"Spotted bass\") (name fb:en.united_we_stand_divided_we_fall \"United we stand, divided we fall\") (name fb:en.liriodendron_tulipifera \"Liriodendron tulipifera\") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division)\nwhat type of government does russia have 2010?\tSemi-presidential system\t15.104\tformula (fb:government.form_of_government.countries fb:en.russia)) (value (list (name fb:en.semi-presidential_system \"Semi-presidential system\") (name fb:en.federal_republic \"Federal republic\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government does russia have 2010?\tFederal republic\t15.104\tformula (fb:government.form_of_government.countries fb:en.russia)) (value (list (name fb:en.semi-presidential_system \"Semi-presidential system\") (name fb:en.federal_republic \"Federal republic\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat type of government does russia have 2010?\tConstitutional republic\t15.104\tformula (fb:government.form_of_government.countries fb:en.russia)) (value (list (name fb:en.semi-presidential_system \"Semi-presidential system\") (name fb:en.federal_republic \"Federal republic\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat did elvis presley died from?\tMyocardial infarction\t19.658\tformula (fb:people.cause_of_death.people fb:en.elvis_presley)) (value (list (name fb:en.heart_failure \"Myocardial infarction\"))) (type fb:people.cause_of_death)\nwho played samantha stephens in bewitched?\tPatricia Kalember\t7.225\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0q1rlbv)) (value (list (name fb:en.patricia_kalember \"Patricia Kalember\"))) (type fb:film.actor)\nwhat county is san diego in?\tSan Diego County\t17.467\tformula (!fb:location.hud_county_place.county fb:en.san_diego)) (value (list (name fb:en.san_diego_county \"San Diego County\"))) (type fb:location.us_county)\nwhich country in north america is divided into provinces?\tUnited States of America\t13.912\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.partially_contains fb:en.north_america))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.france France) (name fb:m.0hzc9m5 \"United States, with Territories\"))) (type (union fb:location.country))\nwhich country in north america is divided into provinces?\tUnited States, with Territories\t13.912\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.partially_contains fb:en.north_america))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.france France) (name fb:m.0hzc9m5 \"United States, with Territories\"))) (type (union fb:location.country))\nwhen does daylight saving end in new zealand 2012?\tLanding at Anzac Cove\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tRaid on the Suez Canal\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tWestern Front\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tVietnam War\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tOperation Desert Thunder\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tNew Georgia Campaign\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tIndonesia–Malaysia confrontation\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tOperation Agreement\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tBattle of the Hongorai River\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhen does daylight saving end in new zealand 2012?\tWorld War II\t11.065\tformula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove \"Landing at Anzac Cove\") (name fb:en.first_suez_offensive \"Raid on the Suez Canal\") (name fb:m.02kxjx \"Western Front\") (name fb:en.vietnam_war \"Vietnam War\") (name fb:en.operation_desert_thunder \"Operation Desert Thunder\") (name fb:en.battle_of_new_georgia \"New Georgia Campaign\") (name fb:en.indonesia-malaysia_confrontation \"Indonesia–Malaysia confrontation\") (name fb:en.operation_agreement \"Operation Agreement\") (name fb:en.battle_of_hongorai_river \"Battle of the Hongorai River\") (name fb:en.world_war_ii \"World War II\"))) (type fb:military.military_conflict)\nwhat is real name of santa claus?\tThe Polar Express\t10.808\tformula (!fb:book.book_character.appears_in_book fb:m.0j3v_2w)) (value (list (name fb:en.the_polar_express \"The Polar Express\"))) (type fb:book.book)\nwhen did kelly slater go pro?\tJimmy Slade\t7.651\tformula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.kelly_slater)) (value (list (name fb:en.jimmy_slade \"Jimmy Slade\"))) (type fb:tv.tv_character)\nwhat did coretta scott king died from?\tRespiratory failure\t18.819\tformula (fb:people.cause_of_death.people fb:en.coretta_scott_king)) (value (list (name fb:en.respiratory_failure \"Respiratory failure\"))) (type fb:people.cause_of_death)\nwho was vp for nixon?\tFarewell address\t6.309\tformula ((lambda x (!fb:event.speech_or_presentation.type_or_format_of_presentation (!fb:event.public_speaker.speeches_or_presentations (var x)))) fb:en.richard_nixon)) (value (list (name fb:en.farewell_address \"Farewell address\") (name fb:m.02vwrkh Speech) (name fb:en.television_address \"Television address\"))) (type fb:event.type_of_public_presentation)\nwho was vp for nixon?\tTelevision address\t6.309\tformula ((lambda x (!fb:event.speech_or_presentation.type_or_format_of_presentation (!fb:event.public_speaker.speeches_or_presentations (var x)))) fb:en.richard_nixon)) (value (list (name fb:en.farewell_address \"Farewell address\") (name fb:m.02vwrkh Speech) (name fb:en.television_address \"Television address\"))) (type fb:event.type_of_public_presentation)\nwhere honduras in the world?\tEl Salvador\t3.524\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.honduras))) (value (list (name fb:en.el_salvador \"El Salvador\") (name fb:en.nicaragua Nicaragua) (name fb:en.guatemala Guatemala))) (type fb:location.location)\nwho owns mazda canada?\tUnited Kingdom\t2.464\tformula ((lambda x (fb:military.military_combatant.casualties (fb:military.casualties.combatant (var x)))) fb:en.canada)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.france France) (name fb:en.australia Australia) (name fb:en.dominion_of_new_zealand \"Dominion of New Zealand\") (name fb:en.union_of_south_africa \"Union of South Africa\"))) (type fb:military.military_combatant)\nwho owns mazda canada?\tDominion of New Zealand\t2.464\tformula ((lambda x (fb:military.military_combatant.casualties (fb:military.casualties.combatant (var x)))) fb:en.canada)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.france France) (name fb:en.australia Australia) (name fb:en.dominion_of_new_zealand \"Dominion of New Zealand\") (name fb:en.union_of_south_africa \"Union of South Africa\"))) (type fb:military.military_combatant)\nwho owns mazda canada?\tUnion of South Africa\t2.464\tformula ((lambda x (fb:military.military_combatant.casualties (fb:military.casualties.combatant (var x)))) fb:en.canada)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.france France) (name fb:en.australia Australia) (name fb:en.dominion_of_new_zealand \"Dominion of New Zealand\") (name fb:en.union_of_south_africa \"Union of South Africa\"))) (type fb:military.military_combatant)\nwho does ronaldinho play for now 2011?\tBrazil national football team\t18.212\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team \"Brazil national football team\") (name fb:en.gremio_foot_ball_porto_alegrense \"Grêmio Foot-Ball Porto Alegrense\") (name fb:en.clube_atletico_mineiro \"Clube Atlético Mineiro\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.clube_de_regatas_do_flamengo \"Clube de Regatas do Flamengo\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.fc_barcelona \"FC Barcelona\"))) (type fb:soccer.football_team)\nwho does ronaldinho play for now 2011?\tGrêmio Foot-Ball Porto Alegrense\t18.212\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team \"Brazil national football team\") (name fb:en.gremio_foot_ball_porto_alegrense \"Grêmio Foot-Ball Porto Alegrense\") (name fb:en.clube_atletico_mineiro \"Clube Atlético Mineiro\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.clube_de_regatas_do_flamengo \"Clube de Regatas do Flamengo\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.fc_barcelona \"FC Barcelona\"))) (type fb:soccer.football_team)\nwho does ronaldinho play for now 2011?\tClube Atlético Mineiro\t18.212\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team \"Brazil national football team\") (name fb:en.gremio_foot_ball_porto_alegrense \"Grêmio Foot-Ball Porto Alegrense\") (name fb:en.clube_atletico_mineiro \"Clube Atlético Mineiro\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.clube_de_regatas_do_flamengo \"Clube de Regatas do Flamengo\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.fc_barcelona \"FC Barcelona\"))) (type fb:soccer.football_team)\nwho does ronaldinho play for now 2011?\tA.C. Milan\t18.212\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team \"Brazil national football team\") (name fb:en.gremio_foot_ball_porto_alegrense \"Grêmio Foot-Ball Porto Alegrense\") (name fb:en.clube_atletico_mineiro \"Clube Atlético Mineiro\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.clube_de_regatas_do_flamengo \"Clube de Regatas do Flamengo\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.fc_barcelona \"FC Barcelona\"))) (type fb:soccer.football_team)\nwho does ronaldinho play for now 2011?\tClube de Regatas do Flamengo\t18.212\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team \"Brazil national football team\") (name fb:en.gremio_foot_ball_porto_alegrense \"Grêmio Foot-Ball Porto Alegrense\") (name fb:en.clube_atletico_mineiro \"Clube Atlético Mineiro\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.clube_de_regatas_do_flamengo \"Clube de Regatas do Flamengo\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.fc_barcelona \"FC Barcelona\"))) (type fb:soccer.football_team)\nwho does ronaldinho play for now 2011?\tParis Saint-Germain F.C.\t18.212\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team \"Brazil national football team\") (name fb:en.gremio_foot_ball_porto_alegrense \"Grêmio Foot-Ball Porto Alegrense\") (name fb:en.clube_atletico_mineiro \"Clube Atlético Mineiro\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.clube_de_regatas_do_flamengo \"Clube de Regatas do Flamengo\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.fc_barcelona \"FC Barcelona\"))) (type fb:soccer.football_team)\nwho does ronaldinho play for now 2011?\tFC Barcelona\t18.212\tformula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team \"Brazil national football team\") (name fb:en.gremio_foot_ball_porto_alegrense \"Grêmio Foot-Ball Porto Alegrense\") (name fb:en.clube_atletico_mineiro \"Clube Atlético Mineiro\") (name fb:en.ac_milan \"A.C. Milan\") (name fb:en.clube_de_regatas_do_flamengo \"Clube de Regatas do Flamengo\") (name fb:en.paris_saint-germain_fc \"Paris Saint-Germain F.C.\") (name fb:en.fc_barcelona \"FC Barcelona\"))) (type fb:soccer.football_team)\nwhat galileo galilei was famous for?\tSolar System\t11.55\tformula (!fb:user.lindenb.default_domain.scientist.known_for fb:en.galileo_galilei)) (value (list (name fb:en.solar_system \"Solar System\") (name fb:en.heliocentrism Heliocentrism) (name fb:en.galilean_moons \"Galilean moons\") (name fb:en.kinematics Kinematics))) (type fb:common.topic)\nwhat galileo galilei was famous for?\tGalilean moons\t11.55\tformula (!fb:user.lindenb.default_domain.scientist.known_for fb:en.galileo_galilei)) (value (list (name fb:en.solar_system \"Solar System\") (name fb:en.heliocentrism Heliocentrism) (name fb:en.galilean_moons \"Galilean moons\") (name fb:en.kinematics Kinematics))) (type fb:common.topic)\nwhat are the major trading partners of germany?\tCzech Republic\t16.476\tformula (and (fb:type.object.type fb:biology.breed_origin) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.germany))) (value (list (name fb:en.france France) (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.denmark Denmark) (name fb:en.poland Poland) (name fb:en.czech_republic \"Czech Republic\") (name fb:en.austria Austria) (name fb:en.switzerland Switzerland))) (type (union fb:biology.breed_origin))\nwhere did romney graduated college?\tBrigham Young University\t10.886\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ann_romney_1949)))) (value (list (name fb:en.brigham_young_university \"Brigham Young University\") (name fb:en.harvard_extension_school \"Harvard Extension School\"))) (type fb:education.university)\nwhere did romney graduated college?\tHarvard Extension School\t10.886\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ann_romney_1949)))) (value (list (name fb:en.brigham_young_university \"Brigham Young University\") (name fb:en.harvard_extension_school \"Harvard Extension School\"))) (type fb:education.university)\nwho did johnny depp play in corpse bride?\tCorpse Bride\t11.668\tformula (fb:film.film.starring (and (fb:film.performance.actor fb:en.johnny_depp) (fb:film.performance.film fb:en.corpse_bride)))) (value (list (name fb:en.corpse_bride \"Corpse Bride\"))) (type fb:film.film)\nwhen was taylor swift fearless tour?\tHarry Styles\t11.33\tformula ((lambda x (!fb:celebrities.romantic_relationship.celebrity (!fb:celebrities.celebrity.sexual_relationships (var x)))) fb:en.taylor_swift)) (value (list (name fb:m.0h3cm8d \"Harry Styles\") (name fb:en.joe_jonas \"Joe Jonas\"))) (type fb:celebrities.celebrity)\nwhen was taylor swift fearless tour?\tJoe Jonas\t11.33\tformula ((lambda x (!fb:celebrities.romantic_relationship.celebrity (!fb:celebrities.celebrity.sexual_relationships (var x)))) fb:en.taylor_swift)) (value (list (name fb:m.0h3cm8d \"Harry Styles\") (name fb:en.joe_jonas \"Joe Jonas\"))) (type fb:celebrities.celebrity)\nwhere did charles darwin and his wife live?\tDowne, Kent\t12.376\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.charles_darwin))) (value (list (name fb:en.london London) (name fb:en.shrewsbury Shrewsbury) (name fb:en.downe_kent \"Downe, Kent\") (name fb:en.england England))) (type fb:location.location)\nwho is the voice of kitt?\tWilliam Daniels\t14.874\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.kitt)) (value (list (name fb:en.william_daniels \"William Daniels\"))) (type fb:film.actor)\nwhat is eminem's real full name?\tHailie Jade Scott\t9.2\tformula (!fb:people.person.children fb:en.eminem)) (value (list (name fb:en.hailie_jade_scott \"Hailie Jade Scott\") (name fb:m.0gkbth1 \"Whitney Mathers\") (name fb:m.0gkbtl4 \"Alaina Mathers\"))) (type fb:people.person)\nwhat is eminem's real full name?\tWhitney Mathers\t9.2\tformula (!fb:people.person.children fb:en.eminem)) (value (list (name fb:en.hailie_jade_scott \"Hailie Jade Scott\") (name fb:m.0gkbth1 \"Whitney Mathers\") (name fb:m.0gkbtl4 \"Alaina Mathers\"))) (type fb:people.person)\nwhat is eminem's real full name?\tAlaina Mathers\t9.2\tformula (!fb:people.person.children fb:en.eminem)) (value (list (name fb:en.hailie_jade_scott \"Hailie Jade Scott\") (name fb:m.0gkbth1 \"Whitney Mathers\") (name fb:m.0gkbtl4 \"Alaina Mathers\"))) (type fb:people.person)\nwho is amy grant's first husband?\tVince Gill\t11.198\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.amy_grant)) (value (list (name fb:en.vince_gill \"Vince Gill\"))) (type fb:people.person)\nwhat are the seven nations of central america?\tEl Salvador\t13.255\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador \"El Salvador\") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica \"Costa Rica\") (name fb:en.honduras Honduras) (name fb:en.greater_colombia \"Gran Colombia\") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country))\nwhat are the seven nations of central america?\tCosta Rica\t13.255\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador \"El Salvador\") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica \"Costa Rica\") (name fb:en.honduras Honduras) (name fb:en.greater_colombia \"Gran Colombia\") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country))\nwhat are the seven nations of central america?\tGran Colombia\t13.255\tformula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador \"El Salvador\") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica \"Costa Rica\") (name fb:en.honduras Honduras) (name fb:en.greater_colombia \"Gran Colombia\") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country))\nwhat is jamie spears baby name?\tEmma Forbes\t5.947\tformula (fb:people.person.children fb:en.jamie_spears)) (value (list (name fb:m.07wxqnh \"Emma Forbes\") (name fb:m.07wxqn9 \"June Spears\"))) (type fb:people.person)\nwhat is jamie spears baby name?\tJune Spears\t5.947\tformula (fb:people.person.children fb:en.jamie_spears)) (value (list (name fb:m.07wxqnh \"Emma Forbes\") (name fb:m.07wxqn9 \"June Spears\"))) (type fb:people.person)\nwhat countries does canada have trade agreements with?\tUnited States of America\t14.352\tformula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:location.imports_and_exports.exported_to (!fb:location.statistical_region.places_exported_to (var x)))) fb:en.canada))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.japan Japan))) (type (union fb:location.country))\nwhat countries does canada have trade agreements with?\tUnited Kingdom\t14.352\tformula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:location.imports_and_exports.exported_to (!fb:location.statistical_region.places_exported_to (var x)))) fb:en.canada))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.japan Japan))) (type (union fb:location.country))\nwho is the mother of prince michael jackson?\tJoseph Jackson\t12.536\tformula (!fb:people.person.parents fb:en.michael_jackson)) (value (list (name fb:en.joseph_jackson \"Joseph Jackson\") (name fb:en.katherine_jackson \"Katherine Jackson\"))) (type fb:people.person)\nwho is the mother of prince michael jackson?\tKatherine Jackson\t12.536\tformula (!fb:people.person.parents fb:en.michael_jackson)) (value (list (name fb:en.joseph_jackson \"Joseph Jackson\") (name fb:en.katherine_jackson \"Katherine Jackson\"))) (type fb:people.person)\nwhat is the clemson mascot name?\tThe Clemson Tiger\t11.404\tformula (!fb:education.educational_institution.mascot fb:en.clemson_university)) (value (list (name fb:en.the_clemson_tiger \"The Clemson Tiger\") (name fb:en.the_tiger_and_the_cub \"The Tiger and the Cub\"))) (type fb:education.school_mascot)\nwhat is the clemson mascot name?\tThe Tiger and the Cub\t11.404\tformula (!fb:education.educational_institution.mascot fb:en.clemson_university)) (value (list (name fb:en.the_clemson_tiger \"The Clemson Tiger\") (name fb:en.the_tiger_and_the_cub \"The Tiger and the Cub\"))) (type fb:education.school_mascot)\nwhich of the following was a contribution thomas hunt morgan made to genetics?\t\\\t6.8\tformula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.thomas_hunt_morgan)) (value (list (string \"\\\"for his discoveries concerning the role played by the chromosome in heredity\\\"\") (string \"For his establishment of the modern science of genetics which had revolutionized our understanding, not only of heredity, but of the mechanism and nature of evolution\"))) (type fb:type.text)\nwhich of the following was a contribution thomas hunt morgan made to genetics?\t\t6.8\tformula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.thomas_hunt_morgan)) (value (list (string \"\\\"for his discoveries concerning the role played by the chromosome in heredity\\\"\") (string \"For his establishment of the modern science of genetics which had revolutionized our understanding, not only of heredity, but of the mechanism and nature of evolution\"))) (type fb:type.text)\nwhich of the following was a contribution thomas hunt morgan made to genetics?\tFor his establishment of the modern science of genetics which had revolutionized our understanding, not only of heredity, but of the mechanism and nature of evolution\t6.8\tformula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.thomas_hunt_morgan)) (value (list (string \"\\\"for his discoveries concerning the role played by the chromosome in heredity\\\"\") (string \"For his establishment of the modern science of genetics which had revolutionized our understanding, not only of heredity, but of the mechanism and nature of evolution\"))) (type fb:type.text)\nwhen did we start war with iraq?\tSix-Day War\t17.511\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.force_strengths (fb:military.force_strength.combatant (var x)))) fb:en.iraq))) (value (list (name fb:en.six-day_war \"Six-Day War\") (name fb:en.iran-iraq_war \"Iran–Iraq War\"))) (type (union fb:military.military_conflict))\nwhen did we start war with iraq?\tIran–Iraq War\t17.511\tformula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.force_strengths (fb:military.force_strength.combatant (var x)))) fb:en.iraq))) (value (list (name fb:en.six-day_war \"Six-Day War\") (name fb:en.iran-iraq_war \"Iran–Iraq War\"))) (type (union fb:military.military_conflict))\nwhat guitar did kurt cobain?\tFender Jag-Stang\t16.729\tformula (and (fb:type.object.type fb:music.guitar) (!fb:music.guitarist.guitars_played fb:en.kurt_cobain))) (value (list (name fb:en.fender_jag-stang \"Fender Jag-Stang\"))) (type (union fb:music.guitar))\nwho is the governor of virginia 2011?\tEd Schrock\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tLloyd C. Bird\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tJohnny Joannou\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tBill Bolling\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tElliott M. Braxton\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tRalph Hunter Daughton\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tMary Margaret Whipple\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tStephen Newman\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tWilliam C. Wampler, Jr.\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho is the governor of virginia 2011?\tLouise Lucas\t18.198\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock \"Ed Schrock\") (name fb:en.lloyd_c_bird \"Lloyd C. Bird\") (name fb:en.johnny_joannou \"Johnny Joannou\") (name fb:en.bill_bolling \"Bill Bolling\") (name fb:en.elliott_m_braxton \"Elliott M. Braxton\") (name fb:en.ralph_hunter_daughton \"Ralph Hunter Daughton\") (name fb:en.mary_margaret_whipple \"Mary Margaret Whipple\") (name fb:en.stephen_newman \"Stephen Newman\") (name fb:en.william_c_wampler_jr \"William C. Wampler, Jr.\") (name fb:en.louise_lucas \"Louise Lucas\"))) (type fb:government.politician)\nwho did darth vaders voice?\tDavid Prowse\t9.35\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did darth vaders voice?\tJames Earl Jones\t9.35\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did darth vaders voice?\tHayden Christensen\t9.35\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did darth vaders voice?\tMatt Lanter\t9.35\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did darth vaders voice?\tSebastian Shaw\t9.35\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did darth vaders voice?\tRobert E. Bean\t9.35\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho did darth vaders voice?\tJake Lloyd\t9.35\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwhere is walton county ga?\tWalton County, FL HUD Section 8 Area\t1.014\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.coterminous_with (fb:location.cotermination.location (var x)))) fb:en.walton_county))) (value (list (name fb:m.075kcbp \"Walton County, FL HUD Section 8 Area\"))) (type fb:location.location)\nwhat cancer did jackie kennedy die of?\tDan Turell\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tLoulou de la Falaise\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tCseh Tamás\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tCelia Cruz\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tÉdith Piaf\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tSlim Dusty\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tYves Saint Laurent\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tSteve Lacy\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tAlma Cogan\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat cancer did jackie kennedy die of?\tMaurice Jarre\t10.159\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat time zone is pennsylvania in right now?\tEastern Time Zone\t25.255\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.pennsylvania))) (value (list (name fb:en.north_american_eastern_time_zone \"Eastern Time Zone\") (name fb:en.utc-5 UTC-5))) (type (union fb:time.time_zone))\nwhere is tupac from originally?\tLas Vegas\t3.651\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.tupac_shakur))) (value (list (name fb:en.las_vegas \"Las Vegas\") (name fb:en.los_angeles \"Los Angeles\") (name fb:en.new_york_county Manhattan) (name fb:en.marin_city \"Marin City\"))) (type fb:location.location)\nwhere is tupac from originally?\tLos Angeles\t3.651\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.tupac_shakur))) (value (list (name fb:en.las_vegas \"Las Vegas\") (name fb:en.los_angeles \"Los Angeles\") (name fb:en.new_york_county Manhattan) (name fb:en.marin_city \"Marin City\"))) (type fb:location.location)\nwhere is tupac from originally?\tMarin City\t3.651\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.tupac_shakur))) (value (list (name fb:en.las_vegas \"Las Vegas\") (name fb:en.los_angeles \"Los Angeles\") (name fb:en.new_york_county Manhattan) (name fb:en.marin_city \"Marin City\"))) (type fb:location.location)\nwhat role did george lucas play in star wars?\tChief Executive Officer\t11.751\tformula ((lambda x (!fb:organization.leadership.role (!fb:business.board_member.leader_of (var x)))) fb:en.george_lucas)) (value (list (name fb:en.chief_executive_officer \"Chief Executive Officer\"))) (type fb:organization.role)\nwhat sarah dessen books are movies?\tThat Summer\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tHow to Deal movie tie-in\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tJust Listen\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tAlong for the Ride\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tSomeone like You\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tSomeone Like You / Keeping the Moon Flip Book\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tKeeping the Moon\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tLock and Key\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tWhat Happened to Goodbye\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat sarah dessen books are movies?\tThis Lullaby\t5.953\tformula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer \"That Summer\") (name fb:en.how_to_deal_movie_tie_in \"How to Deal movie tie-in\") (name fb:m.02rms6w \"Just Listen\") (name fb:m.0572jtj \"Along for the Ride\") (name fb:m.0f0r9x \"Someone like You\") (name fb:m.04t1t8w \"Someone Like You / Keeping the Moon Flip Book\") (name fb:en.keeping_the_moon \"Keeping the Moon\") (name fb:m.0421t07 \"Lock and Key\") (name fb:m.0j7j4v_ \"What Happened to Goodbye\") (name fb:en.this_lullaby \"This Lullaby\"))) (type (union fb:book.book))\nwhat is the current time in kauai hawaii?\tHawaii–Aleutian Time Zone\t8.771\tformula (!fb:location.location.time_zones fb:en.kauai)) (value (list (name fb:en.hawaii-aleutian_time_zone \"Hawaii–Aleutian Time Zone\") (name fb:en.utc-10 UTC−10:00))) (type fb:time.time_zone)\nwhat did dmitri mendeleev discover in 1869?\tPeriodic Table\t10.53\tformula (fb:law.invention.inventor fb:en.dmitri_mendeleev)) (value (list (name fb:en.periodic_table \"Periodic Table\") (name fb:en.pyrocollodion Pyrocollodion) (name fb:en.pycnometer Pycnometer))) (type fb:law.invention)\nwhere was farrah fawcett buried?\tWestwood Village Memorial Park Cemetery\t9.509\tformula (and (fb:type.object.type fb:location.location) (fb:people.place_of_interment.interred_here fb:en.farrah_fawcett))) (value (list (name fb:en.westwood_village_memorial_park_cemetery \"Westwood Village Memorial Park Cemetery\"))) (type fb:people.place_of_interment)\nwhat are the colonies of great britain?\tWorkers' Weekly\t9.454\tformula (fb:book.newspaper.circulation_areas fb:en.great_britain)) (value (list (name fb:en.workers_weekly \"Workers' Weekly\"))) (type fb:book.newspaper)\nwhat kind of government does cuba have today?\tUnitary state\t12.681\tformula (!fb:location.country.form_of_government fb:en.cuba)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.socialist_state \"Socialist state\") (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat kind of government does cuba have today?\tSocialist state\t12.681\tformula (!fb:location.country.form_of_government fb:en.cuba)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.socialist_state \"Socialist state\") (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat kind of government does cuba have today?\tSemi-presidential system\t12.681\tformula (!fb:location.country.form_of_government fb:en.cuba)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.socialist_state \"Socialist state\") (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhere are english speakers distributed?\tMichigan State University\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tYale University\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tUniversity of Oklahoma\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tUniversity of Virginia\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tWesleyan University\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tMiami University\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tWellesley College\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tYoungstown State University\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tSaint Louis University\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhere are english speakers distributed?\tMontana State University - Bozeman\t9.334\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university \"Michigan State University\") (name fb:en.yale_university \"Yale University\") (name fb:en.university_of_oklahoma \"University of Oklahoma\") (name fb:en.university_of_virginia \"University of Virginia\") (name fb:en.wesleyan_university \"Wesleyan University\") (name fb:en.miami_university \"Miami University\") (name fb:en.wellesley_college \"Wellesley College\") (name fb:en.youngstown_state_university \"Youngstown State University\") (name fb:en.saint_louis_university \"Saint Louis University\") (name fb:en.montana_state_university_-_bozeman \"Montana State University - Bozeman\"))) (type fb:education.educational_institution)\nwhat was george washington's legacy?\tUnited States Military Academy\t6.456\tformula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.continental_army \"Continental Army\") (name fb:en.united_states_army_corps_of_engineers \"United States Army Corps of Engineers\") (name fb:en.society_of_the_cincinnati \"Society of the Cincinnati\") (name fb:en.culper_ring \"Culper Ring\"))) (type fb:organization.organization)\nwhat was george washington's legacy?\tContinental Army\t6.456\tformula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.continental_army \"Continental Army\") (name fb:en.united_states_army_corps_of_engineers \"United States Army Corps of Engineers\") (name fb:en.society_of_the_cincinnati \"Society of the Cincinnati\") (name fb:en.culper_ring \"Culper Ring\"))) (type fb:organization.organization)\nwhat was george washington's legacy?\tUnited States Army Corps of Engineers\t6.456\tformula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.continental_army \"Continental Army\") (name fb:en.united_states_army_corps_of_engineers \"United States Army Corps of Engineers\") (name fb:en.society_of_the_cincinnati \"Society of the Cincinnati\") (name fb:en.culper_ring \"Culper Ring\"))) (type fb:organization.organization)\nwhat was george washington's legacy?\tSociety of the Cincinnati\t6.456\tformula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.continental_army \"Continental Army\") (name fb:en.united_states_army_corps_of_engineers \"United States Army Corps of Engineers\") (name fb:en.society_of_the_cincinnati \"Society of the Cincinnati\") (name fb:en.culper_ring \"Culper Ring\"))) (type fb:organization.organization)\nwhat was george washington's legacy?\tCulper Ring\t6.456\tformula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy \"United States Military Academy\") (name fb:en.continental_army \"Continental Army\") (name fb:en.united_states_army_corps_of_engineers \"United States Army Corps of Engineers\") (name fb:en.society_of_the_cincinnati \"Society of the Cincinnati\") (name fb:en.culper_ring \"Culper Ring\"))) (type fb:organization.organization)\nwho was dan white?\tCarbon monoxide poisoning\t1.101\tformula (fb:people.cause_of_death.people fb:en.dan_white)) (value (list (name fb:en.suicide Suicide) (name fb:en.carbon_monoxide_poisoning \"Carbon monoxide poisoning\"))) (type fb:people.cause_of_death)\nwhat language do people speak in the bahamas?\tEnglish Language\t11.381\tformula (and (fb:type.object.type fb:language.human_language) (fb:language.human_language.countries_spoken_in fb:en.the_bahamas))) (value (list (name fb:en.english \"English Language\") (name fb:en.bahamian_dialect \"Bahamas Creole English Language\"))) (type fb:language.human_language)\nwhat language do people speak in the bahamas?\tBahamas Creole English Language\t11.381\tformula (and (fb:type.object.type fb:language.human_language) (fb:language.human_language.countries_spoken_in fb:en.the_bahamas))) (value (list (name fb:en.english \"English Language\") (name fb:en.bahamian_dialect \"Bahamas Creole English Language\"))) (type fb:language.human_language)\nwhere did george michael go to school?\tBushey Meads School\t10.951\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_michael)))) (value (list (name fb:en.bushey_meads_school \"Bushey Meads School\"))) (type fb:education.educational_institution)\nwhat team did jeremy lin go to?\tHouston Rockets\t16.432\tformula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.jeremy_lin)) (value (list (name fb:en.houston_rockets \"Houston Rockets\"))) (type fb:basketball.basketball_team)\nwhat club does cristiano ronaldo play for in 2010?\tPortugal national football team\t18.312\tformula (and (fb:type.object.type fb:soccer.football_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat club does cristiano ronaldo play for in 2010?\tSporting Clube de Portugal\t18.312\tformula (and (fb:type.object.type fb:soccer.football_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat club does cristiano ronaldo play for in 2010?\tManchester United F.C.\t18.312\tformula (and (fb:type.object.type fb:soccer.football_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat club does cristiano ronaldo play for in 2010?\tReal Madrid C.F.\t18.312\tformula (and (fb:type.object.type fb:soccer.football_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat time zone is in the bahamas?\tEastern Time Zone\t20.053\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.cat_island))) (value (list (name fb:en.north_american_eastern_time_zone \"Eastern Time Zone\") (name fb:en.utc-5 UTC-5))) (type (union fb:time.time_zone))\nwhere did african american slaves come from?\tUnited States of America\t4.042\tformula (and (fb:type.object.type fb:location.location) (!fb:people.ethnicity.geographic_distribution fb:en.african_american))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.location)\nwhat language do people speak in brazil?\tPortuguese Language\t12.949\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.brazil))) (value (list (name fb:en.portuguese \"Portuguese Language\"))) (type (union fb:language.human_language))\nwho influenced samuel taylor coleridge?\tRalph Waldo Emerson\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tWilliam Wordsworth\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tWilliam Hazlitt\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tJohn Stuart Mill\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tMary Shelley\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tSheridan Le Fanu\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tRobert Pinsky\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tRobert Southey\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tWalter Lowenfels\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwho influenced samuel taylor coleridge?\tTheodore Parker\t9.661\tformula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.william_wordsworth \"William Wordsworth\") (name fb:en.william_hazlitt \"William Hazlitt\") (name fb:en.john_stuart_mill \"John Stuart Mill\") (name fb:en.mary_shelley \"Mary Shelley\") (name fb:en.sheridan_le_fanu \"Sheridan Le Fanu\") (name fb:en.robert_pinsky \"Robert Pinsky\") (name fb:en.robert_southey \"Robert Southey\") (name fb:en.walter_lowenfels \"Walter Lowenfels\") (name fb:en.theodore_parker \"Theodore Parker\"))) (type fb:influence.influence_node)\nwhat does kim kardashian work as?\tDisaster Movie\t12.041\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.kim_kardashian)) (value (list (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.keeping_up_with_the_kardashians \"Keeping Up with the Kardashians\"))) (type fb:award.award_nominated_work)\nwhat does kim kardashian work as?\tKeeping Up with the Kardashians\t12.041\tformula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.kim_kardashian)) (value (list (name fb:en.disaster_movie \"Disaster Movie\") (name fb:en.keeping_up_with_the_kardashians \"Keeping Up with the Kardashians\"))) (type fb:award.award_nominated_work)\nwhere did the mississippi river end?\tU.S. Route 30 in Illinois\t12.29\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois \"U.S. Route 30 in Illinois\") (name fb:en.u_s_route_40_in_illinois \"U.S. Route 40 in Illinois\") (name fb:en.tennessee_state_route_21 \"Tennessee State Route 21\") (name fb:en.illinois_route_136 \"Illinois Route 136\") (name fb:en.tennessee_state_route_19 \"Tennessee State Route 19\"))) (type fb:transportation.road)\nwhere did the mississippi river end?\tU.S. Route 40 in Illinois\t12.29\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois \"U.S. Route 30 in Illinois\") (name fb:en.u_s_route_40_in_illinois \"U.S. Route 40 in Illinois\") (name fb:en.tennessee_state_route_21 \"Tennessee State Route 21\") (name fb:en.illinois_route_136 \"Illinois Route 136\") (name fb:en.tennessee_state_route_19 \"Tennessee State Route 19\"))) (type fb:transportation.road)\nwhere did the mississippi river end?\tTennessee State Route 21\t12.29\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois \"U.S. Route 30 in Illinois\") (name fb:en.u_s_route_40_in_illinois \"U.S. Route 40 in Illinois\") (name fb:en.tennessee_state_route_21 \"Tennessee State Route 21\") (name fb:en.illinois_route_136 \"Illinois Route 136\") (name fb:en.tennessee_state_route_19 \"Tennessee State Route 19\"))) (type fb:transportation.road)\nwhere did the mississippi river end?\tIllinois Route 136\t12.29\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois \"U.S. Route 30 in Illinois\") (name fb:en.u_s_route_40_in_illinois \"U.S. Route 40 in Illinois\") (name fb:en.tennessee_state_route_21 \"Tennessee State Route 21\") (name fb:en.illinois_route_136 \"Illinois Route 136\") (name fb:en.tennessee_state_route_19 \"Tennessee State Route 19\"))) (type fb:transportation.road)\nwhere did the mississippi river end?\tTennessee State Route 19\t12.29\tformula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois \"U.S. Route 30 in Illinois\") (name fb:en.u_s_route_40_in_illinois \"U.S. Route 40 in Illinois\") (name fb:en.tennessee_state_route_21 \"Tennessee State Route 21\") (name fb:en.illinois_route_136 \"Illinois Route 136\") (name fb:en.tennessee_state_route_19 \"Tennessee State Route 19\"))) (type fb:transportation.road)\nwho played carlton lassiter on psych?\tTimothy Omundson\t6.261\tformula (fb:tv.tv_actor.starring_roles (and (fb:tv.regular_tv_appearance.character fb:en.carlton_lassiter) (fb:tv.regular_tv_appearance.series fb:en.psych)))) (value (list (name fb:en.timothy_omundson \"Timothy Omundson\"))) (type fb:tv.tv_actor)\nwho is president of israel?\tUri Orbach\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tTzipi Livni\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tNaftali Bennett\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tYitzhak Rabin\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tSilvan Shalom\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tYuval Steinitz\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tDavid Ben-Gurion\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tYair Lapid\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tMoshe Sharett\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho is president of israel?\tEli Yishai\t10.8\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh \"Uri Orbach\") (name fb:en.tzipi_livni \"Tzipi Livni\") (name fb:m.0g9z94d \"Naftali Bennett\") (name fb:en.yitzhak_rabin \"Yitzhak Rabin\") (name fb:en.silvan_shalom \"Silvan Shalom\") (name fb:en.yuval_steinitz \"Yuval Steinitz\") (name fb:en.david_ben-gurion \"David Ben-Gurion\") (name fb:en.yair_lapid \"Yair Lapid\") (name fb:en.moshe_sharett \"Moshe Sharett\") (name fb:en.eli_yishai \"Eli Yishai\"))) (type fb:government.politician)\nwho plays harley quinn?\tHynden Walch\t7.362\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.harley_quinn)) (value (list (name fb:en.hynden_walch \"Hynden Walch\") (name fb:en.mia_sara \"Mia Sara\") (name fb:en.arleen_sorkin \"Arleen Sorkin\"))) (type fb:tv.tv_actor)\nwho plays harley quinn?\tMia Sara\t7.362\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.harley_quinn)) (value (list (name fb:en.hynden_walch \"Hynden Walch\") (name fb:en.mia_sara \"Mia Sara\") (name fb:en.arleen_sorkin \"Arleen Sorkin\"))) (type fb:tv.tv_actor)\nwho plays harley quinn?\tArleen Sorkin\t7.362\tformula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.harley_quinn)) (value (list (name fb:en.hynden_walch \"Hynden Walch\") (name fb:en.mia_sara \"Mia Sara\") (name fb:en.arleen_sorkin \"Arleen Sorkin\"))) (type fb:tv.tv_actor)\nwhat percent of people are overweight in the uk?\tJohn Gleeson\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tAndrew Lloyd Webber Art Foundation\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tJonathan H Kagan\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tAmerican Numismatic Society\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tMuseum of Modern Art\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tTate Gallery, Britain\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tNational Gallery, London\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tScottish National Gallery\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tKenneth Thomson, 2nd Baron Thomson of Fleet\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwhat percent of people are overweight in the uk?\tJ. Paul Getty Museum\t8.712\tformula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson \"John Gleeson\") (name fb:en.andrew_lloyd_webber_art_foundation \"Andrew Lloyd Webber Art Foundation\") (name fb:en.jonathan_h_kagan \"Jonathan H Kagan\") (name fb:en.american_numismatic_society \"American Numismatic Society\") (name fb:en.museum_of_modern_art \"Museum of Modern Art\") (name fb:en.tate_britain \"Tate Gallery, Britain\") (name fb:en.national_gallery_london \"National Gallery, London\") (name fb:en.national_gallery_of_scotland \"Scottish National Gallery\") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet \"Kenneth Thomson, 2nd Baron Thomson of Fleet\") (name fb:en.j_paul_getty_museum \"J. Paul Getty Museum\"))) (type fb:visual_art.art_owner)\nwho is ruling libya?\tAbdul Hafiz Ghoga\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tMohammed Ali Salim\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tMuammar al-Gaddafi\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tMahmud Sulayman al-Maghribi\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tAbdessalam Jalloud\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tMohammed Magariaf\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tAbdurrahim El-Keib\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tBaghdadi Mahmudi\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tMohamed Abdelaziz\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwho is ruling libya?\tAli Tarhouni\t10.738\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0kvg5wq \"Mohammed Ali Salim\") (name fb:en.muammar_al-gaddafi \"Muammar al-Gaddafi\") (name fb:en.mahmud_sulayman_al_maghribi \"Mahmud Sulayman al-Maghribi\") (name fb:en.abdessalam_jalloud \"Abdessalam Jalloud\") (name fb:m.0h96pms \"Mohammed Magariaf\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:en.baghdadi_mahmudi \"Baghdadi Mahmudi\") (name fb:m.0r3w6t0 \"Mohamed Abdelaziz\") (name fb:m.0gjbh05 \"Ali Tarhouni\"))) (type fb:government.politician)\nwhen does ziva start on ncis?\tCote de Pablo\t3.038\tformula (fb:tv.tv_actor.starring_roles (and (fb:tv.regular_tv_appearance.character fb:en.ziva_david) (fb:tv.regular_tv_appearance.series fb:en.ncis)))) (value (list (name fb:en.cote_de_pablo \"Cote de Pablo\"))) (type fb:tv.tv_actor)\nwhat is the name of the national anthem of canada ( 2 words )?\tO Canada\t14.425\tformula ((lambda x (!fb:government.national_anthem_of_a_country.anthem (!fb:location.country.national_anthem (var x)))) fb:en.canada)) (value (list (name fb:en.o_canada \"O Canada\"))) (type fb:government.national_anthem)\nwhat did mark zuckerberg study?\tHarvard University\t7.827\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg)) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.ardsley_high_school \"Ardsley High School\") (name fb:en.mercy_college \"Mercy College\") (name fb:en.phillips_exeter_academy \"Phillips Exeter Academy\"))) (type fb:education.educational_institution)\nwhat did mark zuckerberg study?\tArdsley High School\t7.827\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg)) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.ardsley_high_school \"Ardsley High School\") (name fb:en.mercy_college \"Mercy College\") (name fb:en.phillips_exeter_academy \"Phillips Exeter Academy\"))) (type fb:education.educational_institution)\nwhat did mark zuckerberg study?\tMercy College\t7.827\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg)) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.ardsley_high_school \"Ardsley High School\") (name fb:en.mercy_college \"Mercy College\") (name fb:en.phillips_exeter_academy \"Phillips Exeter Academy\"))) (type fb:education.educational_institution)\nwhat did mark zuckerberg study?\tPhillips Exeter Academy\t7.827\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg)) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.ardsley_high_school \"Ardsley High School\") (name fb:en.mercy_college \"Mercy College\") (name fb:en.phillips_exeter_academy \"Phillips Exeter Academy\"))) (type fb:education.educational_institution)\nwhich country was michael jackson born?\tUnited States of America\t16.651\tformula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.michael_jackson))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.country)\nwhat countries require travel visas for us citizens?\tUnited States of America\t7.083\tformula (and (fb:type.object.type fb:location.country) (!fb:film.film.country fb:m.0h2y9n4))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type (union fb:location.country))\nwhat country was stalin in charge of?\tUnited States of America\t13.517\tformula (and (fb:type.object.type fb:location.country) (!fb:film.film.country fb:m.047nxmg))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.hungary Hungary))) (type (union fb:location.country))\nwhat is monta ellis career high points?\tGolden State Warriors\t2.587\tformula ((lambda x (!fb:basketball.basketball_historical_roster_position.team (!fb:basketball.basketball_player.former_teams (var x)))) fb:en.monta_ellis)) (value (list (name fb:en.golden_state_warriors \"Golden State Warriors\"))) (type fb:basketball.basketball_team)\nwhat do the symbols on the nevada flag mean?\tMountain Bluebird\t19.231\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird \"Mountain Bluebird\") (name fb:en.lahontan_cutthroat_trout \"Lahontan cutthroat trout\") (name fb:en.single-leaf_pinyon \"Single-leaf Pinyon\") (name fb:en.desert_tortoise \"Desert tortoise\") (name fb:m.0hzdmyn \"All For Our Country\") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division)\nwhat do the symbols on the nevada flag mean?\tLahontan cutthroat trout\t19.231\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird \"Mountain Bluebird\") (name fb:en.lahontan_cutthroat_trout \"Lahontan cutthroat trout\") (name fb:en.single-leaf_pinyon \"Single-leaf Pinyon\") (name fb:en.desert_tortoise \"Desert tortoise\") (name fb:m.0hzdmyn \"All For Our Country\") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division)\nwhat do the symbols on the nevada flag mean?\tSingle-leaf Pinyon\t19.231\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird \"Mountain Bluebird\") (name fb:en.lahontan_cutthroat_trout \"Lahontan cutthroat trout\") (name fb:en.single-leaf_pinyon \"Single-leaf Pinyon\") (name fb:en.desert_tortoise \"Desert tortoise\") (name fb:m.0hzdmyn \"All For Our Country\") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division)\nwhat do the symbols on the nevada flag mean?\tDesert tortoise\t19.231\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird \"Mountain Bluebird\") (name fb:en.lahontan_cutthroat_trout \"Lahontan cutthroat trout\") (name fb:en.single-leaf_pinyon \"Single-leaf Pinyon\") (name fb:en.desert_tortoise \"Desert tortoise\") (name fb:m.0hzdmyn \"All For Our Country\") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division)\nwhat do the symbols on the nevada flag mean?\tAll For Our Country\t19.231\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird \"Mountain Bluebird\") (name fb:en.lahontan_cutthroat_trout \"Lahontan cutthroat trout\") (name fb:en.single-leaf_pinyon \"Single-leaf Pinyon\") (name fb:en.desert_tortoise \"Desert tortoise\") (name fb:m.0hzdmyn \"All For Our Country\") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division)\nwhat has shannen doherty played in?\tFriends 'Til the End\t8.252\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end \"Friends 'Til the End\") (name fb:m.0gks9h_ \"The Ticket\") (name fb:en.category_7_the_end_of_the_world \"Category 7: The End of the World\") (name fb:en.the_delphi_effect \"The Delphi Effect\") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 \"Almost Dead\") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls \"Satan's School for Girls\") (name fb:en.blindfold_acts_of_obsession \"Blindfold: Acts of Obsession\"))) (type fb:film.film)\nwhat has shannen doherty played in?\tThe Ticket\t8.252\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end \"Friends 'Til the End\") (name fb:m.0gks9h_ \"The Ticket\") (name fb:en.category_7_the_end_of_the_world \"Category 7: The End of the World\") (name fb:en.the_delphi_effect \"The Delphi Effect\") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 \"Almost Dead\") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls \"Satan's School for Girls\") (name fb:en.blindfold_acts_of_obsession \"Blindfold: Acts of Obsession\"))) (type fb:film.film)\nwhat has shannen doherty played in?\tCategory 7: The End of the World\t8.252\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end \"Friends 'Til the End\") (name fb:m.0gks9h_ \"The Ticket\") (name fb:en.category_7_the_end_of_the_world \"Category 7: The End of the World\") (name fb:en.the_delphi_effect \"The Delphi Effect\") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 \"Almost Dead\") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls \"Satan's School for Girls\") (name fb:en.blindfold_acts_of_obsession \"Blindfold: Acts of Obsession\"))) (type fb:film.film)\nwhat has shannen doherty played in?\tThe Delphi Effect\t8.252\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end \"Friends 'Til the End\") (name fb:m.0gks9h_ \"The Ticket\") (name fb:en.category_7_the_end_of_the_world \"Category 7: The End of the World\") (name fb:en.the_delphi_effect \"The Delphi Effect\") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 \"Almost Dead\") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls \"Satan's School for Girls\") (name fb:en.blindfold_acts_of_obsession \"Blindfold: Acts of Obsession\"))) (type fb:film.film)\nwhat has shannen doherty played in?\tAlmost Dead\t8.252\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end \"Friends 'Til the End\") (name fb:m.0gks9h_ \"The Ticket\") (name fb:en.category_7_the_end_of_the_world \"Category 7: The End of the World\") (name fb:en.the_delphi_effect \"The Delphi Effect\") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 \"Almost Dead\") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls \"Satan's School for Girls\") (name fb:en.blindfold_acts_of_obsession \"Blindfold: Acts of Obsession\"))) (type fb:film.film)\nwhat has shannen doherty played in?\tSatan's School for Girls\t8.252\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end \"Friends 'Til the End\") (name fb:m.0gks9h_ \"The Ticket\") (name fb:en.category_7_the_end_of_the_world \"Category 7: The End of the World\") (name fb:en.the_delphi_effect \"The Delphi Effect\") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 \"Almost Dead\") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls \"Satan's School for Girls\") (name fb:en.blindfold_acts_of_obsession \"Blindfold: Acts of Obsession\"))) (type fb:film.film)\nwhat has shannen doherty played in?\tBlindfold: Acts of Obsession\t8.252\tformula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end \"Friends 'Til the End\") (name fb:m.0gks9h_ \"The Ticket\") (name fb:en.category_7_the_end_of_the_world \"Category 7: The End of the World\") (name fb:en.the_delphi_effect \"The Delphi Effect\") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 \"Almost Dead\") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls \"Satan's School for Girls\") (name fb:en.blindfold_acts_of_obsession \"Blindfold: Acts of Obsession\"))) (type fb:film.film)\nwhat college did joakim noah?\tUniversity of Florida\t14.245\tformula (and (fb:type.object.type fb:education.university) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.joakim_noah))) (value (list (name fb:en.uf \"University of Florida\"))) (type (union fb:education.university))\nwhen was the last time the red sox won 100 games?\t2004 World Series\t20.491\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series \"2004 World Series\") (name fb:en.2007_world_series \"2007 World Series\") (name fb:en.1918_world_series \"1918 World Series\") (name fb:en.1912_world_series \"1912 World Series\") (name fb:en.1916_world_series \"1916 World Series\") (name fb:en.1903_world_series \"1903 World Series\") (name fb:en.1915_world_series \"1915 World Series\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the red sox won 100 games?\t2007 World Series\t20.491\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series \"2004 World Series\") (name fb:en.2007_world_series \"2007 World Series\") (name fb:en.1918_world_series \"1918 World Series\") (name fb:en.1912_world_series \"1912 World Series\") (name fb:en.1916_world_series \"1916 World Series\") (name fb:en.1903_world_series \"1903 World Series\") (name fb:en.1915_world_series \"1915 World Series\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the red sox won 100 games?\t1918 World Series\t20.491\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series \"2004 World Series\") (name fb:en.2007_world_series \"2007 World Series\") (name fb:en.1918_world_series \"1918 World Series\") (name fb:en.1912_world_series \"1912 World Series\") (name fb:en.1916_world_series \"1916 World Series\") (name fb:en.1903_world_series \"1903 World Series\") (name fb:en.1915_world_series \"1915 World Series\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the red sox won 100 games?\t1912 World Series\t20.491\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series \"2004 World Series\") (name fb:en.2007_world_series \"2007 World Series\") (name fb:en.1918_world_series \"1918 World Series\") (name fb:en.1912_world_series \"1912 World Series\") (name fb:en.1916_world_series \"1916 World Series\") (name fb:en.1903_world_series \"1903 World Series\") (name fb:en.1915_world_series \"1915 World Series\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the red sox won 100 games?\t1916 World Series\t20.491\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series \"2004 World Series\") (name fb:en.2007_world_series \"2007 World Series\") (name fb:en.1918_world_series \"1918 World Series\") (name fb:en.1912_world_series \"1912 World Series\") (name fb:en.1916_world_series \"1916 World Series\") (name fb:en.1903_world_series \"1903 World Series\") (name fb:en.1915_world_series \"1915 World Series\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the red sox won 100 games?\t1903 World Series\t20.491\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series \"2004 World Series\") (name fb:en.2007_world_series \"2007 World Series\") (name fb:en.1918_world_series \"1918 World Series\") (name fb:en.1912_world_series \"1912 World Series\") (name fb:en.1916_world_series \"1916 World Series\") (name fb:en.1903_world_series \"1903 World Series\") (name fb:en.1915_world_series \"1915 World Series\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the red sox won 100 games?\t1915 World Series\t20.491\tformula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series \"2004 World Series\") (name fb:en.2007_world_series \"2007 World Series\") (name fb:en.1918_world_series \"1918 World Series\") (name fb:en.1912_world_series \"1912 World Series\") (name fb:en.1916_world_series \"1916 World Series\") (name fb:en.1903_world_series \"1903 World Series\") (name fb:en.1915_world_series \"1915 World Series\"))) (type fb:sports.sports_championship_event)\nwho plays billy elliot?\tJamie Bell\t5.398\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0by43z3)) (value (list (name fb:en.jamie_bell \"Jamie Bell\"))) (type fb:film.actor)\nwhat team will michael vick play for in 2011?\tPhiladelphia Eagles\t18.205\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick))) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.virginia_tech_hokies_football \"Virginia Tech Hokies football\") (name fb:en.atlanta_falcons \"Atlanta Falcons\"))) (type fb:sports.sports_team)\nwhat team will michael vick play for in 2011?\tVirginia Tech Hokies football\t18.205\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick))) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.virginia_tech_hokies_football \"Virginia Tech Hokies football\") (name fb:en.atlanta_falcons \"Atlanta Falcons\"))) (type fb:sports.sports_team)\nwhat team will michael vick play for in 2011?\tAtlanta Falcons\t18.205\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick))) (value (list (name fb:en.philadelphia_eagles \"Philadelphia Eagles\") (name fb:en.virginia_tech_hokies_football \"Virginia Tech Hokies football\") (name fb:en.atlanta_falcons \"Atlanta Falcons\"))) (type fb:sports.sports_team)\nwhat kourtney kardashian boyfriends name?\tRobert Kardashian\t6.367\tformula (fb:people.person.children fb:en.kourtney_kardashian)) (value (list (name fb:en.robert_kardashian \"Robert Kardashian\") (name fb:en.kris_kardashian \"Kris Jenner\"))) (type fb:people.person)\nwhat kourtney kardashian boyfriends name?\tKris Jenner\t6.367\tformula (fb:people.person.children fb:en.kourtney_kardashian)) (value (list (name fb:en.robert_kardashian \"Robert Kardashian\") (name fb:en.kris_kardashian \"Kris Jenner\"))) (type fb:people.person)\nwhat form of government does australia use?\tParliamentary system\t15.255\tformula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.federal_constitutional_monarchy \"Federal monarchy\"))) (type fb:government.form_of_government)\nwhat form of government does australia use?\tConstitutional monarchy\t15.255\tformula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.federal_constitutional_monarchy \"Federal monarchy\"))) (type fb:government.form_of_government)\nwhat form of government does australia use?\tFederal monarchy\t15.255\tformula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system \"Parliamentary system\") (name fb:en.constitutional_monarchy \"Constitutional monarchy\") (name fb:en.federal_constitutional_monarchy \"Federal monarchy\"))) (type fb:government.form_of_government)\nwhat team did howie long?\tVillanova Wildcats football\t13.721\tformula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.howie_long)) (value (list (name fb:m.0crj6pn \"Villanova Wildcats football\") (name fb:en.oakland_raiders \"Oakland Raiders\"))) (type fb:american_football.football_team)\nwhat team did howie long?\tOakland Raiders\t13.721\tformula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.howie_long)) (value (list (name fb:m.0crj6pn \"Villanova Wildcats football\") (name fb:en.oakland_raiders \"Oakland Raiders\"))) (type fb:american_football.football_team)\nwhat to see in christchurch new zealand?\tInternet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\t11.762\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.new_zealand)) (value (list (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\") (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\"))) (type fb:dataworld.information_source)\nwhat to see in christchurch new zealand?\tInternet users as percentage of population, World Development Indicators, World Bank\t11.762\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.new_zealand)) (value (list (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\") (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\"))) (type fb:dataworld.information_source)\nwhere is chris paul from?\tLos Angeles\t1.92\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.chris_paul))) (value (list (name fb:en.charlotte_nc Charlotte) (name fb:en.los_angeles \"Los Angeles\") (name fb:en.winston_salem_nc Winston-Salem))) (type fb:location.location)\nwhat business did andrew carnegie dominate?\tHomestead Steel Works\t5.892\tformula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.andrew_carnegie)) (value (list (name fb:en.homestead_steel_works \"Homestead Steel Works\") (name fb:en.keystone_bridge_company \"Keystone Bridge Company\") (name fb:en.pennsylvania_railroad \"Pennsylvania Railroad\"))) (type fb:business.employer)\nwhat business did andrew carnegie dominate?\tKeystone Bridge Company\t5.892\tformula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.andrew_carnegie)) (value (list (name fb:en.homestead_steel_works \"Homestead Steel Works\") (name fb:en.keystone_bridge_company \"Keystone Bridge Company\") (name fb:en.pennsylvania_railroad \"Pennsylvania Railroad\"))) (type fb:business.employer)\nwhat business did andrew carnegie dominate?\tPennsylvania Railroad\t5.892\tformula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.andrew_carnegie)) (value (list (name fb:en.homestead_steel_works \"Homestead Steel Works\") (name fb:en.keystone_bridge_company \"Keystone Bridge Company\") (name fb:en.pennsylvania_railroad \"Pennsylvania Railroad\"))) (type fb:business.employer)\nwhat was sir isaac newton's inventions?\tReflecting telescope\t14.337\tformula (!fb:law.inventor.inventions fb:en.sir_newton_isaac)) (value (list (name fb:en.reflecting_telescope \"Reflecting telescope\"))) (type fb:law.invention)\nwhere to visit in paris with children?\tDisneyland Park\t9.439\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park \"Disneyland Park\") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou \"Centre Georges Pompidou\") (name fb:en.pantheon_paris \"Panthéon, Paris\") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume \"Galerie nationale du Jeu de Paume\") (name fb:en.musee_dorsay \"Musée d'Orsay\") (name fb:en.les_invalides \"Les Invalides\") (name fb:en.parc_asterix \"Parc Astérix\") (name fb:en.eiffel_tower \"Eiffel Tower\"))) (type fb:travel.tourist_attraction)\nwhere to visit in paris with children?\tCentre Georges Pompidou\t9.439\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park \"Disneyland Park\") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou \"Centre Georges Pompidou\") (name fb:en.pantheon_paris \"Panthéon, Paris\") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume \"Galerie nationale du Jeu de Paume\") (name fb:en.musee_dorsay \"Musée d'Orsay\") (name fb:en.les_invalides \"Les Invalides\") (name fb:en.parc_asterix \"Parc Astérix\") (name fb:en.eiffel_tower \"Eiffel Tower\"))) (type fb:travel.tourist_attraction)\nwhere to visit in paris with children?\tPanthéon, Paris\t9.439\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park \"Disneyland Park\") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou \"Centre Georges Pompidou\") (name fb:en.pantheon_paris \"Panthéon, Paris\") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume \"Galerie nationale du Jeu de Paume\") (name fb:en.musee_dorsay \"Musée d'Orsay\") (name fb:en.les_invalides \"Les Invalides\") (name fb:en.parc_asterix \"Parc Astérix\") (name fb:en.eiffel_tower \"Eiffel Tower\"))) (type fb:travel.tourist_attraction)\nwhere to visit in paris with children?\tGalerie nationale du Jeu de Paume\t9.439\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park \"Disneyland Park\") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou \"Centre Georges Pompidou\") (name fb:en.pantheon_paris \"Panthéon, Paris\") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume \"Galerie nationale du Jeu de Paume\") (name fb:en.musee_dorsay \"Musée d'Orsay\") (name fb:en.les_invalides \"Les Invalides\") (name fb:en.parc_asterix \"Parc Astérix\") (name fb:en.eiffel_tower \"Eiffel Tower\"))) (type fb:travel.tourist_attraction)\nwhere to visit in paris with children?\tMusée d'Orsay\t9.439\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park \"Disneyland Park\") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou \"Centre Georges Pompidou\") (name fb:en.pantheon_paris \"Panthéon, Paris\") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume \"Galerie nationale du Jeu de Paume\") (name fb:en.musee_dorsay \"Musée d'Orsay\") (name fb:en.les_invalides \"Les Invalides\") (name fb:en.parc_asterix \"Parc Astérix\") (name fb:en.eiffel_tower \"Eiffel Tower\"))) (type fb:travel.tourist_attraction)\nwhere to visit in paris with children?\tLes Invalides\t9.439\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park \"Disneyland Park\") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou \"Centre Georges Pompidou\") (name fb:en.pantheon_paris \"Panthéon, Paris\") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume \"Galerie nationale du Jeu de Paume\") (name fb:en.musee_dorsay \"Musée d'Orsay\") (name fb:en.les_invalides \"Les Invalides\") (name fb:en.parc_asterix \"Parc Astérix\") (name fb:en.eiffel_tower \"Eiffel Tower\"))) (type fb:travel.tourist_attraction)\nwhere to visit in paris with children?\tParc Astérix\t9.439\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park \"Disneyland Park\") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou \"Centre Georges Pompidou\") (name fb:en.pantheon_paris \"Panthéon, Paris\") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume \"Galerie nationale du Jeu de Paume\") (name fb:en.musee_dorsay \"Musée d'Orsay\") (name fb:en.les_invalides \"Les Invalides\") (name fb:en.parc_asterix \"Parc Astérix\") (name fb:en.eiffel_tower \"Eiffel Tower\"))) (type fb:travel.tourist_attraction)\nwhere to visit in paris with children?\tEiffel Tower\t9.439\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park \"Disneyland Park\") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou \"Centre Georges Pompidou\") (name fb:en.pantheon_paris \"Panthéon, Paris\") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume \"Galerie nationale du Jeu de Paume\") (name fb:en.musee_dorsay \"Musée d'Orsay\") (name fb:en.les_invalides \"Les Invalides\") (name fb:en.parc_asterix \"Parc Astérix\") (name fb:en.eiffel_tower \"Eiffel Tower\"))) (type fb:travel.tourist_attraction)\nwho did shaq first play for?\tShaquille O'Neal\t6.543\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0h5slkk)) (value (list (name fb:en.shaquille_oneal \"Shaquille O'Neal\"))) (type fb:film.actor)\nwho was the artist of mickey mouse?\tWayne Allwine\t8.08\tformula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_character.appeared_in_tv_program (var x)))) fb:en.mickey_mouse)) (value (list (name fb:en.wayne_allwine \"Wayne Allwine\"))) (type fb:tv.tv_actor)\nwhat football team is michael vick on?\tVirginia Tech Hokies football\t14.943\tformula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.michael_vick)) (value (list (name fb:en.virginia_tech_hokies_football \"Virginia Tech Hokies football\") (name fb:en.atlanta_falcons \"Atlanta Falcons\"))) (type fb:american_football.football_team)\nwhat football team is michael vick on?\tAtlanta Falcons\t14.943\tformula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.michael_vick)) (value (list (name fb:en.virginia_tech_hokies_football \"Virginia Tech Hokies football\") (name fb:en.atlanta_falcons \"Atlanta Falcons\"))) (type fb:american_football.football_team)\nwhere does the columbia river start?\tColumbia River Gorge\t9.33\tformula (and (fb:type.object.type fb:location.location) (fb:travel.tourist_attraction.near_travel_destination fb:en.columbia_river))) (value (list (name fb:en.columbia_river_gorge \"Columbia River Gorge\"))) (type fb:travel.tourist_attraction)\nwhat are all the names of the harry potter books?\tHarry Potter and the Deathly Hallows\t13.882\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are all the names of the harry potter books?\tHarry Potter and the Order of the Phoenix\t13.882\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are all the names of the harry potter books?\tHarry Potter and the Prisoner of Azkaban\t13.882\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are all the names of the harry potter books?\tHarry Potter and the Half-Blood Prince\t13.882\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are all the names of the harry potter books?\tHarry Potter and the Goblet of Fire\t13.882\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are all the names of the harry potter books?\tHarry Potter and the Chamber of Secrets\t13.882\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat are all the names of the harry potter books?\tHarry Potter and the Philosopher's Stone\t13.882\tformula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 \"Harry Potter and the Deathly Hallows\") (name fb:en.harry_potter_and_the_order_of_the_phoenix \"Harry Potter and the Order of the Phoenix\") (name fb:en.harry_potter_and_the_prisoner_of_azkaban \"Harry Potter and the Prisoner of Azkaban\") (name fb:en.harry_potter_and_the_half-blood_prince \"Harry Potter and the Half-Blood Prince\") (name fb:en.harry_potter_and_the_goblet_of_fire \"Harry Potter and the Goblet of Fire\") (name fb:en.harry_potter_and_the_chamber_of_secrets \"Harry Potter and the Chamber of Secrets\") (name fb:m.0c_vk \"Harry Potter and the Philosopher's Stone\"))) (type fb:book.book)\nwhat banjo does scott avett play?\tLead vocalist\t5.866\tformula ((lambda x (fb:music.performance_role.regular_performances (fb:music.group_membership.member (var x)))) fb:en.scott_avett)) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.drumset Drums) (name fb:en.lead_vocalist_bass_guitar \"Lead vocalist\") (name fb:m.0c0n9v9 \"Backing Vocals\") (name fb:en.banjo banjo) (name fb:en.harmonica harmonica))) (type fb:music.performance_role)\nwhat banjo does scott avett play?\tBacking Vocals\t5.866\tformula ((lambda x (fb:music.performance_role.regular_performances (fb:music.group_membership.member (var x)))) fb:en.scott_avett)) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.drumset Drums) (name fb:en.lead_vocalist_bass_guitar \"Lead vocalist\") (name fb:m.0c0n9v9 \"Backing Vocals\") (name fb:en.banjo banjo) (name fb:en.harmonica harmonica))) (type fb:music.performance_role)\nwho was sir walter raleigh and what did he do?\tElizabeth Raleigh\t19.269\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.walter_raleigh)) (value (list (name fb:en.elizabeth_raleigh \"Elizabeth Raleigh\"))) (type fb:people.person)\nwhat currency can you use in barbados?\tBarbadian dollar\t22.075\tformula (!fb:location.country.currency_used fb:en.barbados)) (value (list (name fb:en.barbados_dollar \"Barbadian dollar\"))) (type fb:finance.currency)\nwho is angelina jolie?\tWSJ Topic Index\t7.26\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.angelina_jolie)) (value (list (name fb:en.wsj_topic_index \"WSJ Topic Index\") (name fb:en.people_celebrities \"People Celebrities\"))) (type fb:base.articleindices.resource_topic_index)\nwho is angelina jolie?\tPeople Celebrities\t7.26\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.angelina_jolie)) (value (list (name fb:en.wsj_topic_index \"WSJ Topic Index\") (name fb:en.people_celebrities \"People Celebrities\"))) (type fb:base.articleindices.resource_topic_index)\nwhat is the state flower of new mexico?\tGreater Roadrunner\t15.842\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner \"Greater Roadrunner\") (name fb:en.pinyon_pine \"Pinyon pine\") (name fb:en.cutthroat_trout \"Cutthroat trout\") (name fb:m.0hzbf1c \"Yucca flower\") (name fb:en.sandia_hairstreak \"Sandia Hairstreak\") (name fb:en.crescit_eundo \"Crescit eundo\") (name fb:en.cnemidophorus_neomexicanus \"New Mexico whiptail\") (name fb:en.spea_multiplicata \"New Mexico spadefoot toad\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of new mexico?\tPinyon pine\t15.842\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner \"Greater Roadrunner\") (name fb:en.pinyon_pine \"Pinyon pine\") (name fb:en.cutthroat_trout \"Cutthroat trout\") (name fb:m.0hzbf1c \"Yucca flower\") (name fb:en.sandia_hairstreak \"Sandia Hairstreak\") (name fb:en.crescit_eundo \"Crescit eundo\") (name fb:en.cnemidophorus_neomexicanus \"New Mexico whiptail\") (name fb:en.spea_multiplicata \"New Mexico spadefoot toad\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of new mexico?\tCutthroat trout\t15.842\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner \"Greater Roadrunner\") (name fb:en.pinyon_pine \"Pinyon pine\") (name fb:en.cutthroat_trout \"Cutthroat trout\") (name fb:m.0hzbf1c \"Yucca flower\") (name fb:en.sandia_hairstreak \"Sandia Hairstreak\") (name fb:en.crescit_eundo \"Crescit eundo\") (name fb:en.cnemidophorus_neomexicanus \"New Mexico whiptail\") (name fb:en.spea_multiplicata \"New Mexico spadefoot toad\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of new mexico?\tYucca flower\t15.842\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner \"Greater Roadrunner\") (name fb:en.pinyon_pine \"Pinyon pine\") (name fb:en.cutthroat_trout \"Cutthroat trout\") (name fb:m.0hzbf1c \"Yucca flower\") (name fb:en.sandia_hairstreak \"Sandia Hairstreak\") (name fb:en.crescit_eundo \"Crescit eundo\") (name fb:en.cnemidophorus_neomexicanus \"New Mexico whiptail\") (name fb:en.spea_multiplicata \"New Mexico spadefoot toad\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of new mexico?\tSandia Hairstreak\t15.842\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner \"Greater Roadrunner\") (name fb:en.pinyon_pine \"Pinyon pine\") (name fb:en.cutthroat_trout \"Cutthroat trout\") (name fb:m.0hzbf1c \"Yucca flower\") (name fb:en.sandia_hairstreak \"Sandia Hairstreak\") (name fb:en.crescit_eundo \"Crescit eundo\") (name fb:en.cnemidophorus_neomexicanus \"New Mexico whiptail\") (name fb:en.spea_multiplicata \"New Mexico spadefoot toad\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of new mexico?\tCrescit eundo\t15.842\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner \"Greater Roadrunner\") (name fb:en.pinyon_pine \"Pinyon pine\") (name fb:en.cutthroat_trout \"Cutthroat trout\") (name fb:m.0hzbf1c \"Yucca flower\") (name fb:en.sandia_hairstreak \"Sandia Hairstreak\") (name fb:en.crescit_eundo \"Crescit eundo\") (name fb:en.cnemidophorus_neomexicanus \"New Mexico whiptail\") (name fb:en.spea_multiplicata \"New Mexico spadefoot toad\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of new mexico?\tNew Mexico whiptail\t15.842\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner \"Greater Roadrunner\") (name fb:en.pinyon_pine \"Pinyon pine\") (name fb:en.cutthroat_trout \"Cutthroat trout\") (name fb:m.0hzbf1c \"Yucca flower\") (name fb:en.sandia_hairstreak \"Sandia Hairstreak\") (name fb:en.crescit_eundo \"Crescit eundo\") (name fb:en.cnemidophorus_neomexicanus \"New Mexico whiptail\") (name fb:en.spea_multiplicata \"New Mexico spadefoot toad\"))) (type fb:location.symbol_of_administrative_division)\nwhat is the state flower of new mexico?\tNew Mexico spadefoot toad\t15.842\tformula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner \"Greater Roadrunner\") (name fb:en.pinyon_pine \"Pinyon pine\") (name fb:en.cutthroat_trout \"Cutthroat trout\") (name fb:m.0hzbf1c \"Yucca flower\") (name fb:en.sandia_hairstreak \"Sandia Hairstreak\") (name fb:en.crescit_eundo \"Crescit eundo\") (name fb:en.cnemidophorus_neomexicanus \"New Mexico whiptail\") (name fb:en.spea_multiplicata \"New Mexico spadefoot toad\"))) (type fb:location.symbol_of_administrative_division)\nwhich countries speak germanic languages?\tKingdom of the Netherlands\t7.348\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.frisian_language))) (value (list (name fb:en.kingdom_of_the_netherlands \"Kingdom of the Netherlands\"))) (type fb:location.country)\nwho plays eowyn in lord of the rings?\tRalph Fiennes\t2.831\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwho plays eowyn in lord of the rings?\tChristian Coulson\t2.831\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwho plays eowyn in lord of the rings?\tHero Fiennes-Tiffin\t2.831\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwho plays eowyn in lord of the rings?\tRichard Bremmer\t2.831\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwho plays eowyn in lord of the rings?\tFrank Dillane\t2.831\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes \"Ralph Fiennes\") (name fb:en.christian_coulson \"Christian Coulson\") (name fb:en.hero_fiennes_tiffin \"Hero Fiennes-Tiffin\") (name fb:en.richard_bremmer \"Richard Bremmer\") (name fb:en.frank_dillane \"Frank Dillane\"))) (type fb:film.actor)\nwhere is augusta masters 2012?\tUnited States of America\t3.347\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.contains fb:en.augusta_state_university))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.georgia Georgia) (name fb:en.augusta Augusta))) (type fb:location.location)\nwhat type of cancer did eva peron die from?\tDan Turèll\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tLoulou de la Falaise\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tCseh Tamás\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tCelia Cruz\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tÉdith Piaf\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tSlim Dusty\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tYves Saint Laurent\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tSteve Lacy\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tAlma Cogan\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwhat type of cancer did eva peron die from?\tMaurice Jarre\t11.525\tformula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell \"Dan Turèll\") (name fb:en.loulou_de_la_falaise \"Loulou de la Falaise\") (name fb:en.cseh_tamas \"Cseh Tamás\") (name fb:en.cella_cruz \"Celia Cruz\") (name fb:en.edith_piaf \"Édith Piaf\") (name fb:en.slim_dusty \"Slim Dusty\") (name fb:en.yves_saint-laurent \"Yves Saint Laurent\") (name fb:en.steve_lacy \"Steve Lacy\") (name fb:en.alma_cogan \"Alma Cogan\") (name fb:en.marc_jarre \"Maurice Jarre\"))) (type fb:people.deceased_person)\nwho did terrell owens play for in 2010?\tCincinnati Bengals\t16.583\tformula (fb:sports.sports_team.roster (and (fb:sports.sports_team_roster.player fb:en.terrell_owens) (fb:sports.sports_team_roster.from (date 2010 -1 -1))))) (value (list (name fb:en.cincinnati_bengals \"Cincinnati Bengals\"))) (type fb:sports.sports_team)\nwhere is denmark south carolina?\tUnited States of America\t2.684\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.contains fb:m.0q3805p))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.location)\nwhat books did ernest hemingway write?\tA Moveable Feast\t12.292\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast \"A Moveable Feast\") (name fb:en.the_paris_review_interviews_vol_1 \"The Paris Review Interviews, Vol. 1\") (name fb:en.wild_nights \"Wild Nights!\") (name fb:en.that_book_of_perfectly_useless_information \"That Book ...of Perfectly Useless Information\") (name fb:m.065xk7w \"The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles\") (name fb:en.hemingway_life_into_art \"Hemingway: Life into Art\"))) (type (union fb:book.book))\nwhat books did ernest hemingway write?\tThe Paris Review Interviews, Vol. 1\t12.292\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast \"A Moveable Feast\") (name fb:en.the_paris_review_interviews_vol_1 \"The Paris Review Interviews, Vol. 1\") (name fb:en.wild_nights \"Wild Nights!\") (name fb:en.that_book_of_perfectly_useless_information \"That Book ...of Perfectly Useless Information\") (name fb:m.065xk7w \"The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles\") (name fb:en.hemingway_life_into_art \"Hemingway: Life into Art\"))) (type (union fb:book.book))\nwhat books did ernest hemingway write?\tWild Nights!\t12.292\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast \"A Moveable Feast\") (name fb:en.the_paris_review_interviews_vol_1 \"The Paris Review Interviews, Vol. 1\") (name fb:en.wild_nights \"Wild Nights!\") (name fb:en.that_book_of_perfectly_useless_information \"That Book ...of Perfectly Useless Information\") (name fb:m.065xk7w \"The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles\") (name fb:en.hemingway_life_into_art \"Hemingway: Life into Art\"))) (type (union fb:book.book))\nwhat books did ernest hemingway write?\tThat Book ...of Perfectly Useless Information\t12.292\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast \"A Moveable Feast\") (name fb:en.the_paris_review_interviews_vol_1 \"The Paris Review Interviews, Vol. 1\") (name fb:en.wild_nights \"Wild Nights!\") (name fb:en.that_book_of_perfectly_useless_information \"That Book ...of Perfectly Useless Information\") (name fb:m.065xk7w \"The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles\") (name fb:en.hemingway_life_into_art \"Hemingway: Life into Art\"))) (type (union fb:book.book))\nwhat books did ernest hemingway write?\tThe Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles\t12.292\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast \"A Moveable Feast\") (name fb:en.the_paris_review_interviews_vol_1 \"The Paris Review Interviews, Vol. 1\") (name fb:en.wild_nights \"Wild Nights!\") (name fb:en.that_book_of_perfectly_useless_information \"That Book ...of Perfectly Useless Information\") (name fb:m.065xk7w \"The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles\") (name fb:en.hemingway_life_into_art \"Hemingway: Life into Art\"))) (type (union fb:book.book))\nwhat books did ernest hemingway write?\tHemingway: Life into Art\t12.292\tformula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast \"A Moveable Feast\") (name fb:en.the_paris_review_interviews_vol_1 \"The Paris Review Interviews, Vol. 1\") (name fb:en.wild_nights \"Wild Nights!\") (name fb:en.that_book_of_perfectly_useless_information \"That Book ...of Perfectly Useless Information\") (name fb:m.065xk7w \"The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles\") (name fb:en.hemingway_life_into_art \"Hemingway: Life into Art\"))) (type (union fb:book.book))\nwhat year did baltimore ravens win super bowl?\tSuper Bowl XLVII\t15.692\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii \"Super Bowl XLVII\") (name fb:en.super_bowl_xxxv \"Super Bowl XXXV\"))) (type fb:sports.sports_championship_event)\nwhat year did baltimore ravens win super bowl?\tSuper Bowl XXXV\t15.692\tformula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii \"Super Bowl XLVII\") (name fb:en.super_bowl_xxxv \"Super Bowl XXXV\"))) (type fb:sports.sports_championship_event)\nwhat part of the country is ohio considered?\tUnited States of America\t18.087\tformula (and (fb:type.object.type fb:location.country) (!fb:location.administrative_division.country fb:en.ohio))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type (union fb:location.country))\nwhat team is cristiano ronaldo play for?\tPortugal national football team\t16.823\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat team is cristiano ronaldo play for?\tSporting Clube de Portugal\t16.823\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat team is cristiano ronaldo play for?\tManchester United F.C.\t16.823\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat team is cristiano ronaldo play for?\tReal Madrid C.F.\t16.823\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team \"Portugal national football team\") (name fb:en.sporting_clube_de_portugal \"Sporting Clube de Portugal\") (name fb:en.manchester_united_fc \"Manchester United F.C.\") (name fb:en.real_madrid \"Real Madrid C.F.\"))) (type fb:soccer.football_team)\nwhat standard time is michigan?\tCentral Time Zone\t12.706\tformula (!fb:location.location.time_zones fb:en.michigan)) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.north_american_eastern_time_zone \"Eastern Time Zone\") (name fb:en.utc-5 UTC-5))) (type fb:time.time_zone)\nwhat standard time is michigan?\tEastern Time Zone\t12.706\tformula (!fb:location.location.time_zones fb:en.michigan)) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.north_american_eastern_time_zone \"Eastern Time Zone\") (name fb:en.utc-5 UTC-5))) (type fb:time.time_zone)\nwhat currency can you use in jamaica?\tJamaican dollar\t24.953\tformula (!fb:location.country.currency_used fb:en.jamaica)) (value (list (name fb:en.jamaican_dollar \"Jamaican dollar\"))) (type fb:finance.currency)\nwhat drugs lindsay lohan abuse?\tAlcoholic beverage\t12.42\tformula (and (fb:type.object.type fb:celebrities.abused_substance) ((lambda x (fb:celebrities.abused_substance.abused_by (fb:celebrities.substance_abuse_problem.celebrity (var x)))) fb:en.lindsay_lohan))) (value (list (name fb:en.alcoholic_beverage \"Alcoholic beverage\"))) (type (union fb:celebrities.abused_substance))\nwhen did carolina panthers go to superbowl?\t2006 Stanley Cup Finals\t11.31\tformula (fb:sports.sports_championship_event.champion fb:en.carolina_hurricanes)) (value (list (name fb:en.2006_stanley_cup_finals \"2006 Stanley Cup Finals\") (name fb:en.2006_stanley_cup_playoffs \"2006 Stanley Cup playoffs\"))) (type fb:sports.sports_championship_event)\nwhen did carolina panthers go to superbowl?\t2006 Stanley Cup playoffs\t11.31\tformula (fb:sports.sports_championship_event.champion fb:en.carolina_hurricanes)) (value (list (name fb:en.2006_stanley_cup_finals \"2006 Stanley Cup Finals\") (name fb:en.2006_stanley_cup_playoffs \"2006 Stanley Cup playoffs\"))) (type fb:sports.sports_championship_event)\nwhat is michael kors real name?\tJoan Hamburger\t8.742\tformula (!fb:people.person.parents fb:en.michael_kors)) (value (list (name fb:m.0ngpzwm \"Joan Hamburger\") (name fb:m.0ngpzyv \"Karl Anderson\"))) (type fb:people.person)\nwhat is michael kors real name?\tKarl Anderson\t8.742\tformula (!fb:people.person.parents fb:en.michael_kors)) (value (list (name fb:m.0ngpzwm \"Joan Hamburger\") (name fb:m.0ngpzyv \"Karl Anderson\"))) (type fb:people.person)\nwho won the governor election in texas?\tElisha M. Pease\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tFletcher Stockdale\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tFrancis Lubbock\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tRick Perry\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tJames Allred\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tPrice Daniel\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tOran M. Roberts\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tShirley Abbott\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tWilliam P. Hobby\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwho won the governor election in texas?\tGreg Abbott\t10.516\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease \"Elisha M. Pease\") (name fb:en.fletcher_stockdale \"Fletcher Stockdale\") (name fb:en.francis_lubbock \"Francis Lubbock\") (name fb:en.rick_perry \"Rick Perry\") (name fb:en.james_allred \"James Allred\") (name fb:en.price_daniel \"Price Daniel\") (name fb:en.oran_m_roberts \"Oran M. Roberts\") (name fb:m.0tkjl5_ \"Shirley Abbott\") (name fb:en.william_p_hobby \"William P. Hobby\") (name fb:en.greg_abbott \"Greg Abbott\"))) (type fb:government.politician)\nwhat does helen flanagan do?\tCoronation Street\t1.768\tformula ((lambda x (fb:tv.tv_program.regular_cast (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.helen_flanagan)) (value (list (name fb:en.coronation_street \"Coronation Street\"))) (type fb:tv.tv_program)\nwhere is tennessee river?\tWatts Bar Lake\t2.639\tformula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake \"Watts Bar Lake\") (name fb:en.guntersville_lake \"Guntersville Lake\") (name fb:en.nickajack_lake \"Nickajack Lake\") (name fb:en.chickamauga_lake \"Chickamauga Lake\") (name fb:en.wilson_lake_alabama \"Wilson Lake\"))) (type fb:geography.lake)\nwhere is tennessee river?\tGuntersville Lake\t2.639\tformula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake \"Watts Bar Lake\") (name fb:en.guntersville_lake \"Guntersville Lake\") (name fb:en.nickajack_lake \"Nickajack Lake\") (name fb:en.chickamauga_lake \"Chickamauga Lake\") (name fb:en.wilson_lake_alabama \"Wilson Lake\"))) (type fb:geography.lake)\nwhere is tennessee river?\tNickajack Lake\t2.639\tformula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake \"Watts Bar Lake\") (name fb:en.guntersville_lake \"Guntersville Lake\") (name fb:en.nickajack_lake \"Nickajack Lake\") (name fb:en.chickamauga_lake \"Chickamauga Lake\") (name fb:en.wilson_lake_alabama \"Wilson Lake\"))) (type fb:geography.lake)\nwhere is tennessee river?\tChickamauga Lake\t2.639\tformula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake \"Watts Bar Lake\") (name fb:en.guntersville_lake \"Guntersville Lake\") (name fb:en.nickajack_lake \"Nickajack Lake\") (name fb:en.chickamauga_lake \"Chickamauga Lake\") (name fb:en.wilson_lake_alabama \"Wilson Lake\"))) (type fb:geography.lake)\nwhere is tennessee river?\tWilson Lake\t2.639\tformula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake \"Watts Bar Lake\") (name fb:en.guntersville_lake \"Guntersville Lake\") (name fb:en.nickajack_lake \"Nickajack Lake\") (name fb:en.chickamauga_lake \"Chickamauga Lake\") (name fb:en.wilson_lake_alabama \"Wilson Lake\"))) (type fb:geography.lake)\nwhat are some major events in venezuela?\tVenezuelan War of Independence\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat are some major events in venezuela?\tMachurucuto Incident\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat are some major events in venezuela?\tMay 2007 RCTV protests\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat are some major events in venezuela?\tVenezuela Crisis of 1902–1903\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat are some major events in venezuela?\tDutch–Venezuela War\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat are some major events in venezuela?\tLos Maniceros massacre\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat are some major events in venezuela?\tBombardment of Fort San Carlos\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat are some major events in venezuela?\t12th G-15 summit\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat are some major events in venezuela?\tBattle of La Victoria\t19.202\tformula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence \"Venezuelan War of Independence\") (name fb:en.machurucuto_incident \"Machurucuto Incident\") (name fb:en.may_2007_rctv_protests \"May 2007 RCTV protests\") (name fb:m.0dgqgqf \"Venezuela Crisis of 1902–1903\") (name fb:m.0cnymms \"Dutch–Venezuela War\") (name fb:en.los_maniceros_massacre \"Los Maniceros massacre\") (name fb:m.0ggbq0x \"Bombardment of Fort San Carlos\") (name fb:m.0c0349z \"12th G-15 summit\") (name fb:en.battle_of_san_mateo \"Battle of La Victoria\"))) (type (union fb:time.event))\nwhat guitar does corey taylor play?\tBass guitar\t6.481\tformula (!fb:music.group_member.instruments_played fb:en.corey_taylor)) (value (list (name fb:en.guitar Guitar) (name fb:en.bass_guitar \"Bass guitar\") (name fb:en.drum Drum))) (type fb:music.instrument)\nwho was president after franklin d. roosevelt?\tHarry S. Truman\t12.275\tformula (fb:government.us_vice_president.to_president fb:en.franklin_d_roosevelt)) (value (list (name fb:en.harry_s_truman \"Harry S. Truman\") (name fb:en.henry_a_wallace \"Henry A. Wallace\") (name fb:en.john_nance_garner \"John Nance Garner\"))) (type fb:government.us_vice_president)\nwho was president after franklin d. roosevelt?\tHenry A. Wallace\t12.275\tformula (fb:government.us_vice_president.to_president fb:en.franklin_d_roosevelt)) (value (list (name fb:en.harry_s_truman \"Harry S. Truman\") (name fb:en.henry_a_wallace \"Henry A. Wallace\") (name fb:en.john_nance_garner \"John Nance Garner\"))) (type fb:government.us_vice_president)\nwho was president after franklin d. roosevelt?\tJohn Nance Garner\t12.275\tformula (fb:government.us_vice_president.to_president fb:en.franklin_d_roosevelt)) (value (list (name fb:en.harry_s_truman \"Harry S. Truman\") (name fb:en.henry_a_wallace \"Henry A. Wallace\") (name fb:en.john_nance_garner \"John Nance Garner\"))) (type fb:government.us_vice_president)\nunder what political system does the united states government operate?\tFederal republic\t13.862\tformula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nunder what political system does the united states government operate?\tPresidential system\t13.862\tformula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nunder what political system does the united states government operate?\tConstitutional republic\t13.862\tformula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic \"Federal republic\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhere did jennifer arnold go to medical school?\tUniversity of California, Los Angeles\t11.461\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.jennifer_arnold)))) (value (list (name fb:en.university_of_california_los_angeles \"University of California, Los Angeles\") (name fb:en.university_of_nairobi \"University of Nairobi\"))) (type fb:education.educational_institution)\nwhere did jennifer arnold go to medical school?\tUniversity of Nairobi\t11.461\tformula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.jennifer_arnold)))) (value (list (name fb:en.university_of_california_los_angeles \"University of California, Los Angeles\") (name fb:en.university_of_nairobi \"University of Nairobi\"))) (type fb:education.educational_institution)\nwhat is the state motto of ohio?\tWest Virginia\t12.038\tformula (and (fb:type.object.type fb:location.us_state) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.ohio))) (value (list (name fb:en.pennsylvania Pennsylvania) (name fb:en.west_virginia \"West Virginia\") (name fb:en.kentucky Kentucky) (name fb:en.indiana Indiana) (name fb:en.michigan Michigan))) (type (union fb:location.us_state))\nwhat type of music did mozart composed?\tClassical music\t15.242\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.wolfgang_amadeus_mozart))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.chamber_music \"Chamber music\") (name fb:m.05lls Opera) (name fb:en.art_song \"Art song\") (name fb:m.021dvj Ballet))) (type (union fb:music.genre))\nwhat type of music did mozart composed?\tChamber music\t15.242\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.wolfgang_amadeus_mozart))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.chamber_music \"Chamber music\") (name fb:m.05lls Opera) (name fb:en.art_song \"Art song\") (name fb:m.021dvj Ballet))) (type (union fb:music.genre))\nwhat type of music did mozart composed?\tArt song\t15.242\tformula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.wolfgang_amadeus_mozart))) (value (list (name fb:en.european_classical_music \"Classical music\") (name fb:en.chamber_music \"Chamber music\") (name fb:m.05lls Opera) (name fb:en.art_song \"Art song\") (name fb:m.021dvj Ballet))) (type (union fb:music.genre))\nwhat stones albums did mick taylor play on?\tSwinging London\t13.382\tformula (and (fb:type.object.type fb:music.album) ((lambda x (!fb:music.recording_contribution.album (!fb:music.artist.contribution (var x)))) fb:en.mick_taylor))) (value (list (name fb:m.01jmsv4 Crusade) (name fb:en.downwind Downwind) (name fb:m.01lj2v3 \"Swinging London\"))) (type (union fb:music.album))\nhow many kids were there in the kennedy family?\tKennedy family\t5.354\tformula (!fb:people.family_member.family fb:en.john_f_kennedy)) (value (list (name fb:en.kennedy_family \"Kennedy family\"))) (type fb:people.family)\nwhich barcelona airport is closest to the port?\tBarcelona–El Prat Airport\t16.351\tformula (!fb:location.location.nearby_airports fb:en.barcelona)) (value (list (name fb:en.barcelona_international_airport \"Barcelona–El Prat Airport\"))) (type fb:aviation.airport)\nwhere has the english language evolved from?\tUnited Kingdom\t14.814\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.philippines Philippines) (name fb:en.hong_kong \"Hong Kong\") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland \"Northern Ireland\"))) (type fb:location.country)\nwhere has the english language evolved from?\tSouth Africa\t14.814\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.philippines Philippines) (name fb:en.hong_kong \"Hong Kong\") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland \"Northern Ireland\"))) (type fb:location.country)\nwhere has the english language evolved from?\tHong Kong\t14.814\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.philippines Philippines) (name fb:en.hong_kong \"Hong Kong\") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland \"Northern Ireland\"))) (type fb:location.country)\nwhere has the english language evolved from?\tNorthern Ireland\t14.814\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa \"South Africa\") (name fb:en.philippines Philippines) (name fb:en.hong_kong \"Hong Kong\") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland \"Northern Ireland\"))) (type fb:location.country)\nwhat does matt damon play in?\tWSJ Topic Index\t8.739\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.matt_damon)) (value (list (name fb:en.wsj_topic_index \"WSJ Topic Index\") (name fb:en.people_celebrities \"People Celebrities\"))) (type fb:base.articleindices.resource_topic_index)\nwhat does matt damon play in?\tPeople Celebrities\t8.739\tformula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.matt_damon)) (value (list (name fb:en.wsj_topic_index \"WSJ Topic Index\") (name fb:en.people_celebrities \"People Celebrities\"))) (type fb:base.articleindices.resource_topic_index)\nwhat was scottie pippen known for?\tChicago Bulls\t8.817\tformula ((lambda x (!fb:basketball.basketball_historical_roster_position.team (!fb:basketball.basketball_player.former_teams (var x)))) fb:en.scottie_pippen)) (value (list (name fb:en.chicago_bulls \"Chicago Bulls\"))) (type fb:basketball.basketball_team)\nwhat continent does canada belong to?\tNorth America\t20.156\tformula (and (fb:type.object.type fb:location.continent) (!fb:location.location.containedby fb:en.canada))) (value (list (name fb:en.north_america \"North America\"))) (type (union fb:location.continent))\nwhere did kobe earthquake happen?\tGreat Hanshin earthquake\t5.013\tformula ((lambda x (!fb:user.robert.earthquakes.earthquake_nearest_location.earthquake (!fb:user.robert.earthquakes.earthquake_epicenter.earthquakes_centered_here (var x)))) fb:en.kobe)) (value (list (name fb:en.great_hanshin_earthquake \"Great Hanshin earthquake\"))) (type fb:user.robert.earthquakes.earthquake)\nwhat other movies is josh hutcherson in?\tThe Kids Are All Right\t11.657\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.josh_hutcherson))) (value (list (name fb:m.09tqkv2 \"The Kids Are All Right\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:en.bridge_to_terabithia_2007 \"Bridge to Terabithia\"))) (type (union fb:award.award_nominated_work))\nwhat other movies is josh hutcherson in?\tThe Hunger Games\t11.657\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.josh_hutcherson))) (value (list (name fb:m.09tqkv2 \"The Kids Are All Right\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:en.bridge_to_terabithia_2007 \"Bridge to Terabithia\"))) (type (union fb:award.award_nominated_work))\nwhat other movies is josh hutcherson in?\tBridge to Terabithia\t11.657\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.josh_hutcherson))) (value (list (name fb:m.09tqkv2 \"The Kids Are All Right\") (name fb:m.0gkz15s \"The Hunger Games\") (name fb:en.bridge_to_terabithia_2007 \"Bridge to Terabithia\"))) (type (union fb:award.award_nominated_work))\nwhat was hitler the leader of?\tNazi Party\t14.767\tformula ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.adolf_hitler)) (value (list (name fb:en.national_socialist_german_workers_party \"Nazi Party\") (name fb:en.german_workers_party \"German Workers' Party\"))) (type fb:government.political_party)\nwhat was hitler the leader of?\tGerman Workers' Party\t14.767\tformula ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.adolf_hitler)) (value (list (name fb:en.national_socialist_german_workers_party \"Nazi Party\") (name fb:en.german_workers_party \"German Workers' Party\"))) (type fb:government.political_party)\nwhat awards did marilyn monroe won?\tPlayboy Playmate\t13.908\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (!fb:award.award_honor.award (!fb:award.award_winner.awards_won (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.playmate \"Playboy Playmate\") (name fb:m.0c1fs8r \"David di Donatello Golden Plate Award\") (name fb:m.0l_d69j \"Golden Globe Henrietta Award for World Film Favorites\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_musical_or_comedy \"Golden Globe Award for Best Actress - Musical or Comedy Film\"))) (type (union fb:award.award_category))\nwhat awards did marilyn monroe won?\tDavid di Donatello Golden Plate Award\t13.908\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (!fb:award.award_honor.award (!fb:award.award_winner.awards_won (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.playmate \"Playboy Playmate\") (name fb:m.0c1fs8r \"David di Donatello Golden Plate Award\") (name fb:m.0l_d69j \"Golden Globe Henrietta Award for World Film Favorites\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_musical_or_comedy \"Golden Globe Award for Best Actress - Musical or Comedy Film\"))) (type (union fb:award.award_category))\nwhat awards did marilyn monroe won?\tGolden Globe Henrietta Award for World Film Favorites\t13.908\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (!fb:award.award_honor.award (!fb:award.award_winner.awards_won (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.playmate \"Playboy Playmate\") (name fb:m.0c1fs8r \"David di Donatello Golden Plate Award\") (name fb:m.0l_d69j \"Golden Globe Henrietta Award for World Film Favorites\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_musical_or_comedy \"Golden Globe Award for Best Actress - Musical or Comedy Film\"))) (type (union fb:award.award_category))\nwhat awards did marilyn monroe won?\tGolden Globe Award for Best Actress - Musical or Comedy Film\t13.908\tformula (and (fb:type.object.type fb:award.award_category) ((lambda x (!fb:award.award_honor.award (!fb:award.award_winner.awards_won (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.playmate \"Playboy Playmate\") (name fb:m.0c1fs8r \"David di Donatello Golden Plate Award\") (name fb:m.0l_d69j \"Golden Globe Henrietta Award for World Film Favorites\") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_musical_or_comedy \"Golden Globe Award for Best Actress - Musical or Comedy Film\"))) (type (union fb:award.award_category))\nwhat kind of government does iran have after 1979?\tUnitary state\t15.289\tformula (!fb:location.country.form_of_government fb:en.iran)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.theocracy Theocracy) (name fb:en.islamic_republic \"Islamic republic\"))) (type fb:government.form_of_government)\nwhat kind of government does iran have after 1979?\tIslamic republic\t15.289\tformula (!fb:location.country.form_of_government fb:en.iran)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.theocracy Theocracy) (name fb:en.islamic_republic \"Islamic republic\"))) (type fb:government.form_of_government)\nwhere did harper lee attend high school?\tUniversity of Oxford\t10.773\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhere did harper lee attend high school?\tUniversity of Alabama School of Law\t10.773\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhere did harper lee attend high school?\tMonroe County High School\t10.773\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhere did harper lee attend high school?\tHuntingdon College\t10.773\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhere did harper lee attend high school?\tUniversity of Alabama\t10.773\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.university_of_alabama_school_of_law \"University of Alabama School of Law\") (name fb:m.0crdc8g \"Monroe County High School\") (name fb:en.huntingdon_college \"Huntingdon College\") (name fb:en.university_of_alabama \"University of Alabama\"))) (type fb:education.educational_institution)\nwhat college did jrr tolkien go to?\tUniversity of Oxford\t15.802\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.j_r_r_tolkien))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.exeter_college_oxford \"Exeter College, Oxford\"))) (type fb:education.university)\nwhat college did jrr tolkien go to?\tExeter College, Oxford\t15.802\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.j_r_r_tolkien))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.exeter_college_oxford \"Exeter College, Oxford\"))) (type fb:education.university)\nwho won the league cup in 2002?\tVenus Williams\t7.497\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams \"Venus Williams\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.yevgeny_kafelnikov \"Yevgeny Kafelnikov\") (name fb:en.lleyton_hewitt \"Lleyton Hewitt\") (name fb:en.juan_carlos_ferrero \"Juan Carlos Ferrero\") (name fb:en.nicolas_escude \"Nicolas Escudé\"))) (type fb:tennis.tennis_player)\nwho won the league cup in 2002?\tSerena Williams\t7.497\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams \"Venus Williams\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.yevgeny_kafelnikov \"Yevgeny Kafelnikov\") (name fb:en.lleyton_hewitt \"Lleyton Hewitt\") (name fb:en.juan_carlos_ferrero \"Juan Carlos Ferrero\") (name fb:en.nicolas_escude \"Nicolas Escudé\"))) (type fb:tennis.tennis_player)\nwho won the league cup in 2002?\tYevgeny Kafelnikov\t7.497\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams \"Venus Williams\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.yevgeny_kafelnikov \"Yevgeny Kafelnikov\") (name fb:en.lleyton_hewitt \"Lleyton Hewitt\") (name fb:en.juan_carlos_ferrero \"Juan Carlos Ferrero\") (name fb:en.nicolas_escude \"Nicolas Escudé\"))) (type fb:tennis.tennis_player)\nwho won the league cup in 2002?\tLleyton Hewitt\t7.497\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams \"Venus Williams\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.yevgeny_kafelnikov \"Yevgeny Kafelnikov\") (name fb:en.lleyton_hewitt \"Lleyton Hewitt\") (name fb:en.juan_carlos_ferrero \"Juan Carlos Ferrero\") (name fb:en.nicolas_escude \"Nicolas Escudé\"))) (type fb:tennis.tennis_player)\nwho won the league cup in 2002?\tJuan Carlos Ferrero\t7.497\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams \"Venus Williams\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.yevgeny_kafelnikov \"Yevgeny Kafelnikov\") (name fb:en.lleyton_hewitt \"Lleyton Hewitt\") (name fb:en.juan_carlos_ferrero \"Juan Carlos Ferrero\") (name fb:en.nicolas_escude \"Nicolas Escudé\"))) (type fb:tennis.tennis_player)\nwho won the league cup in 2002?\tNicolas Escudé\t7.497\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams \"Venus Williams\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.yevgeny_kafelnikov \"Yevgeny Kafelnikov\") (name fb:en.lleyton_hewitt \"Lleyton Hewitt\") (name fb:en.juan_carlos_ferrero \"Juan Carlos Ferrero\") (name fb:en.nicolas_escude \"Nicolas Escudé\"))) (type fb:tennis.tennis_player)\nin what country do people speak danish?\tFaroe Islands\t12.794\tformula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.danish_language))) (value (list (name fb:en.denmark Denmark) (name fb:en.faroe_islands \"Faroe Islands\"))) (type fb:location.country)\nwhere should a family stay in paris?\tDaphne Millbrook\t8.625\tformula (!fb:fictional_universe.fictional_setting.characters_that_have_lived_here fb:en.paris)) (value (list (name fb:m.0gdp61p \"Daphne Millbrook\"))) (type fb:fictional_universe.fictional_character)\nwhat was the name of benjamin franklin wife?\tDeborah Read\t11.061\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.benjamin_franklin)) (value (list (name fb:en.deborah_read \"Deborah Read\"))) (type fb:people.person)\nwhat type of government was utilized in ancient egypt?\tUnitary state\t16.128\tformula (fb:government.form_of_government.countries fb:en.egypt)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat type of government was utilized in ancient egypt?\tSemi-presidential system\t16.128\tformula (fb:government.form_of_government.countries fb:en.egypt)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.semi-presidential_system \"Semi-presidential system\"))) (type fb:government.form_of_government)\nwhat is the milwaukee brewers stadium called?\tMiller Park\t16.449\tformula (and (fb:type.object.type fb:sports.sports_facility) (fb:sports.sports_facility.teams fb:en.milwaukee_brewers))) (value (list (name fb:en.miller_park \"Miller Park\"))) (type (union fb:sports.sports_facility))\nwhat other movies has tom hardy played in?\tThe Firm\t13.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm \"The Firm\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles \"Interview with the Vampire: The Vampire Chronicles\") (name fb:m.051zy_b \"A Few Good Men\") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire \"Jerry Maguire\") (name fb:en.tropic_thunder \"Tropic Thunder\") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds \"War of the Worlds\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has tom hardy played in?\tBorn on the Fourth of July\t13.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm \"The Firm\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles \"Interview with the Vampire: The Vampire Chronicles\") (name fb:m.051zy_b \"A Few Good Men\") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire \"Jerry Maguire\") (name fb:en.tropic_thunder \"Tropic Thunder\") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds \"War of the Worlds\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has tom hardy played in?\tInterview with the Vampire: The Vampire Chronicles\t13.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm \"The Firm\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles \"Interview with the Vampire: The Vampire Chronicles\") (name fb:m.051zy_b \"A Few Good Men\") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire \"Jerry Maguire\") (name fb:en.tropic_thunder \"Tropic Thunder\") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds \"War of the Worlds\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has tom hardy played in?\tA Few Good Men\t13.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm \"The Firm\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles \"Interview with the Vampire: The Vampire Chronicles\") (name fb:m.051zy_b \"A Few Good Men\") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire \"Jerry Maguire\") (name fb:en.tropic_thunder \"Tropic Thunder\") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds \"War of the Worlds\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has tom hardy played in?\tJerry Maguire\t13.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm \"The Firm\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles \"Interview with the Vampire: The Vampire Chronicles\") (name fb:m.051zy_b \"A Few Good Men\") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire \"Jerry Maguire\") (name fb:en.tropic_thunder \"Tropic Thunder\") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds \"War of the Worlds\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has tom hardy played in?\tTropic Thunder\t13.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm \"The Firm\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles \"Interview with the Vampire: The Vampire Chronicles\") (name fb:m.051zy_b \"A Few Good Men\") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire \"Jerry Maguire\") (name fb:en.tropic_thunder \"Tropic Thunder\") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds \"War of the Worlds\"))) (type (union fb:award.award_nominated_work))\nwhat other movies has tom hardy played in?\tWar of the Worlds\t13.795\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm \"The Firm\") (name fb:en.born_on_the_fourth_of_july_1989 \"Born on the Fourth of July\") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles \"Interview with the Vampire: The Vampire Chronicles\") (name fb:m.051zy_b \"A Few Good Men\") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire \"Jerry Maguire\") (name fb:en.tropic_thunder \"Tropic Thunder\") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds \"War of the Worlds\"))) (type (union fb:award.award_nominated_work))\nwhat language do maltese speak?\tMaltese people\t9.46\tformula (fb:people.ethnicity.languages_spoken fb:en.maltese_language)) (value (list (name fb:en.maltese_people \"Maltese people\") (name fb:en.maltese_americans \"Maltese American\") (name fb:en.maltese_in_britain \"Maltese people in the United Kingdom\"))) (type fb:people.ethnicity)\nwhat language do maltese speak?\tMaltese American\t9.46\tformula (fb:people.ethnicity.languages_spoken fb:en.maltese_language)) (value (list (name fb:en.maltese_people \"Maltese people\") (name fb:en.maltese_americans \"Maltese American\") (name fb:en.maltese_in_britain \"Maltese people in the United Kingdom\"))) (type fb:people.ethnicity)\nwhat language do maltese speak?\tMaltese people in the United Kingdom\t9.46\tformula (fb:people.ethnicity.languages_spoken fb:en.maltese_language)) (value (list (name fb:en.maltese_people \"Maltese people\") (name fb:en.maltese_americans \"Maltese American\") (name fb:en.maltese_in_britain \"Maltese people in the United Kingdom\"))) (type fb:people.ethnicity)\nwhat did thomas edison do for the world?\tIncandescent light bulb\t14.631\tformula (!fb:user.lindenb.default_domain.scientist.known_for fb:en.thomas_edison)) (value (list (name fb:en.phonograph Phonograph) (name fb:en.incandescent_light_bulb \"Incandescent light bulb\"))) (type fb:common.topic)\nwhere is shakira from?\tLos Angeles\t0.116\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.shakira))) (value (list (name fb:en.barranquilla Barranquilla) (name fb:en.los_angeles \"Los Angeles\"))) (type fb:location.location)\nwhat is the most populated state in united states?\tSouth Carolina\t17.268\tformula (and (fb:type.object.type fb:location.us_state) (fb:location.administrative_division.first_level_division_of fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina \"South Carolina\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state \"New York\"))) (type (union fb:location.us_state))\nwhat is the most populated state in united states?\tWest Virginia\t17.268\tformula (and (fb:type.object.type fb:location.us_state) (fb:location.administrative_division.first_level_division_of fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina \"South Carolina\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state \"New York\"))) (type (union fb:location.us_state))\nwhat is the most populated state in united states?\tNew York\t17.268\tformula (and (fb:type.object.type fb:location.us_state) (fb:location.administrative_division.first_level_division_of fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina \"South Carolina\") (name fb:en.west_virginia \"West Virginia\") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state \"New York\"))) (type (union fb:location.us_state))\nwho is my state senator arizona?\tBarry Goldwater\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tRalph H. Cameron\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tJon Kyl\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tJohn McCain\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tCarl Hayden\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tMarcus A. Smith\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tErnest McFarland\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tJeff Flake\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tPaul Fannin\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwho is my state senator arizona?\tDennis DeConcini\t8.135\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater \"Barry Goldwater\") (name fb:en.ralph_h_cameron \"Ralph H. Cameron\") (name fb:en.jon_kyl \"Jon Kyl\") (name fb:en.john_mccain \"John McCain\") (name fb:en.carl_t_hayden \"Carl Hayden\") (name fb:en.marcus_a_smith \"Marcus A. Smith\") (name fb:en.ernest_mcfarland \"Ernest McFarland\") (name fb:en.jeff_flake \"Jeff Flake\") (name fb:en.paul_fannin \"Paul Fannin\") (name fb:en.dennis_deconcini \"Dennis DeConcini\"))) (type fb:government.politician)\nwhen does the vietnam war end?\t20th century\t14.815\tformula (fb:time.event.includes_event fb:en.vietnam_war)) (value (list (name fb:en.20th_century \"20th century\") (name fb:en.1970s 1970s) (name fb:en.cold_war \"Cold War\") (name fb:en.1960s 1960s))) (type fb:time.event)\nwhen does the vietnam war end?\tCold War\t14.815\tformula (fb:time.event.includes_event fb:en.vietnam_war)) (value (list (name fb:en.20th_century \"20th century\") (name fb:en.1970s 1970s) (name fb:en.cold_war \"Cold War\") (name fb:en.1960s 1960s))) (type fb:time.event)\nwhere does the tennessee river go?\tOhio River\t5.783\tformula (and (fb:type.object.type fb:location.location) (!fb:geography.river.mouth fb:en.tennessee_river))) (value (list (name fb:en.ohio_river \"Ohio River\"))) (type fb:location.location)\nwho did tom hanks play in apollo 13?\tApollo 13\t9.061\tformula (fb:film.film.starring (and (fb:film.performance.actor fb:en.tom_hanks) (fb:film.performance.film fb:en.apollo_13_1995)))) (value (list (name fb:en.apollo_13_1995 \"Apollo 13\"))) (type fb:film.film)\nwhat language do they in ghana?\tEnglish Language\t16.748\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.ghana))) (value (list (name fb:en.english \"English Language\"))) (type (union fb:language.human_language))\nwhat is utah's state capitol?\tBonneville cutthroat trout\t7.447\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.utah)) (value (list (name fb:en.bonneville_cutthroat_trout \"Bonneville cutthroat trout\") (name fb:en.calochortus_nuttallii \"Calochortus nuttallii\") (name fb:en.california_gull \"California Gull\") (name fb:m.0hzdkw5 Industry) (name fb:en.blue_spruce \"Picea pungens\"))) (type fb:location.symbol_of_administrative_division)\nwhat is utah's state capitol?\tCalochortus nuttallii\t7.447\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.utah)) (value (list (name fb:en.bonneville_cutthroat_trout \"Bonneville cutthroat trout\") (name fb:en.calochortus_nuttallii \"Calochortus nuttallii\") (name fb:en.california_gull \"California Gull\") (name fb:m.0hzdkw5 Industry) (name fb:en.blue_spruce \"Picea pungens\"))) (type fb:location.symbol_of_administrative_division)\nwhat is utah's state capitol?\tCalifornia Gull\t7.447\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.utah)) (value (list (name fb:en.bonneville_cutthroat_trout \"Bonneville cutthroat trout\") (name fb:en.calochortus_nuttallii \"Calochortus nuttallii\") (name fb:en.california_gull \"California Gull\") (name fb:m.0hzdkw5 Industry) (name fb:en.blue_spruce \"Picea pungens\"))) (type fb:location.symbol_of_administrative_division)\nwhat is utah's state capitol?\tPicea pungens\t7.447\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.utah)) (value (list (name fb:en.bonneville_cutthroat_trout \"Bonneville cutthroat trout\") (name fb:en.calochortus_nuttallii \"Calochortus nuttallii\") (name fb:en.california_gull \"California Gull\") (name fb:m.0hzdkw5 Industry) (name fb:en.blue_spruce \"Picea pungens\"))) (type fb:location.symbol_of_administrative_division)\nwhat team does jeremy lin play for 2013?\tHouston Rockets\t14.758\tformula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.jeremy_lin)) (value (list (name fb:en.houston_rockets \"Houston Rockets\"))) (type fb:basketball.basketball_team)\nwho are the u s senators of pennsylvania?\tState tree\t4.7\tformula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree \"State tree\") (name fb:en.state_beverage \"State beverage\") (name fb:en.state_fish \"State Fish\") (name fb:en.state_flower \"State flower\") (name fb:en.state_bird \"State bird\") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety)\nwho are the u s senators of pennsylvania?\tState beverage\t4.7\tformula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree \"State tree\") (name fb:en.state_beverage \"State beverage\") (name fb:en.state_fish \"State Fish\") (name fb:en.state_flower \"State flower\") (name fb:en.state_bird \"State bird\") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety)\nwho are the u s senators of pennsylvania?\tState Fish\t4.7\tformula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree \"State tree\") (name fb:en.state_beverage \"State beverage\") (name fb:en.state_fish \"State Fish\") (name fb:en.state_flower \"State flower\") (name fb:en.state_bird \"State bird\") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety)\nwho are the u s senators of pennsylvania?\tState flower\t4.7\tformula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree \"State tree\") (name fb:en.state_beverage \"State beverage\") (name fb:en.state_fish \"State Fish\") (name fb:en.state_flower \"State flower\") (name fb:en.state_bird \"State bird\") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety)\nwho are the u s senators of pennsylvania?\tState bird\t4.7\tformula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree \"State tree\") (name fb:en.state_beverage \"State beverage\") (name fb:en.state_fish \"State Fish\") (name fb:en.state_flower \"State flower\") (name fb:en.state_bird \"State bird\") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety)\nwhat kind of language does france speak?\tFrench Language\t17.894\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.france))) (value (list (name fb:en.french \"French Language\"))) (type (union fb:language.human_language))\nwhat degree did martin luther king earn?\tBachelor of Divinity\t18.039\tformula (and (fb:type.object.type fb:education.educational_degree) ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.bachelor_of_divinity \"Bachelor of Divinity\") (name fb:en.dr_philos PhD) (name fb:en.a_b \"Bachelor of Arts\"))) (type (union fb:education.educational_degree))\nwhat degree did martin luther king earn?\tBachelor of Arts\t18.039\tformula (and (fb:type.object.type fb:education.educational_degree) ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.bachelor_of_divinity \"Bachelor of Divinity\") (name fb:en.dr_philos PhD) (name fb:en.a_b \"Bachelor of Arts\"))) (type (union fb:education.educational_degree))\nwhat does sarabi?\tThe Lion King\t-0.58\tformula ((lambda x (fb:film.film.starring (fb:film.performance.character (var x)))) fb:en.sarabi)) (value (list (name fb:en.the_lion_king \"The Lion King\"))) (type fb:film.film)\nwho were wright brothers?\tMyocardial infarction\t-1.144\tformula (fb:people.cause_of_death.people fb:en.syreeta)) (value (list (name fb:en.heart_failure \"Myocardial infarction\") (name fb:en.cardiovascular_disease \"Cardiovascular disease\") (name fb:en.breast_cancer \"Breast cancer\"))) (type fb:people.cause_of_death)\nwho were wright brothers?\tCardiovascular disease\t-1.144\tformula (fb:people.cause_of_death.people fb:en.syreeta)) (value (list (name fb:en.heart_failure \"Myocardial infarction\") (name fb:en.cardiovascular_disease \"Cardiovascular disease\") (name fb:en.breast_cancer \"Breast cancer\"))) (type fb:people.cause_of_death)\nwho were wright brothers?\tBreast cancer\t-1.144\tformula (fb:people.cause_of_death.people fb:en.syreeta)) (value (list (name fb:en.heart_failure \"Myocardial infarction\") (name fb:en.cardiovascular_disease \"Cardiovascular disease\") (name fb:en.breast_cancer \"Breast cancer\"))) (type fb:people.cause_of_death)\nwhat team did peyton manning's dad play for?\tIndianapolis Colts\t12.557\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.peyton_manning))) (value (list (name fb:en.indianapolis_colts \"Indianapolis Colts\") (name fb:en.denver_broncos \"Denver Broncos\"))) (type fb:sports.sports_team)\nwhat team did peyton manning's dad play for?\tDenver Broncos\t12.557\tformula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.peyton_manning))) (value (list (name fb:en.indianapolis_colts \"Indianapolis Colts\") (name fb:en.denver_broncos \"Denver Broncos\"))) (type fb:sports.sports_team)\nwhat school did john henry thompson go to?\tUniversity of Oxford\t14.635\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_henry_cardinal_newman))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.trinity_college_oxford \"Trinity College, Oxford\"))) (type fb:education.educational_institution)\nwhat school did john henry thompson go to?\tTrinity College, Oxford\t14.635\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_henry_cardinal_newman))) (value (list (name fb:en.university_of_oxford \"University of Oxford\") (name fb:en.trinity_college_oxford \"Trinity College, Oxford\"))) (type fb:education.educational_institution)\nwhat did jesse owens won?\tTrack and field\t7.873\tformula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.jesse_owens)) (value (list (string \"Track and field\"))) (type fb:type.text)\nwhat is the name of the currency used in peru?\tPeruvian nuevo sol\t21.546\tformula (and (fb:type.object.type fb:finance.currency) (fb:finance.currency.countries_used fb:en.peru))) (value (list (name fb:en.peruvian_nuevo_sol \"Peruvian nuevo sol\"))) (type fb:finance.currency)\nwho is on the board of facebook?\tKristen Cornett: Facebook!\t8.05\tformula (fb:common.image.image_tags fb:en.facebook)) (value (list (name fb:m.0970b57 \"Kristen Cornett: Facebook!\"))) (type fb:common.image)\nwho is judy garland father?\tFrancis Avent Gumm\t14.168\tformula (!fb:people.person.parents fb:en.judy_garland)) (value (list (name fb:m.0gyhn8m \"Francis Avent Gumm\") (name fb:m.0gyhn8b \"Ethel Marion Milne\"))) (type fb:people.person)\nwho is judy garland father?\tEthel Marion Milne\t14.168\tformula (!fb:people.person.parents fb:en.judy_garland)) (value (list (name fb:m.0gyhn8m \"Francis Avent Gumm\") (name fb:m.0gyhn8b \"Ethel Marion Milne\"))) (type fb:people.person)\nwhat school did robert f kennedy go to?\tLondon School of Economics\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tEdward Devotion School\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tPrinceton University\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tStanford Graduate School of Business\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tRiverdale Country School\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tHarvard College\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tChoate Rosemary Hall\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tCanterbury School\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tNoble and Greenough School\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat school did robert f kennedy go to?\tDexter School\t19.282\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics \"London School of Economics\") (name fb:en.edward_devotion_school \"Edward Devotion School\") (name fb:en.princeton_university \"Princeton University\") (name fb:en.stanford_graduate_school_of_business \"Stanford Graduate School of Business\") (name fb:en.riverdale_country_school \"Riverdale Country School\") (name fb:en.harvard_college \"Harvard College\") (name fb:en.choate_rosemary_hall \"Choate Rosemary Hall\") (name fb:m.05yk0g \"Canterbury School\") (name fb:en.noble_and_greenough_school \"Noble and Greenough School\") (name fb:en.dexter_school \"Dexter School\"))) (type fb:education.educational_institution)\nwhat drug killed marilyn monroe?\tDrug overdose\t7.507\tformula (!fb:people.deceased_person.cause_of_death fb:en.marliyn_monroe)) (value (list (name fb:en.suicide Suicide) (name fb:en.barbiturate Barbiturate) (name fb:en.drug_overdose \"Drug overdose\"))) (type fb:people.cause_of_death)\nwhat is los angeles california time zone?\tPacific Time Zone\t15.782\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.los_angeles))) (value (list (name fb:en.pacific_time_zone \"Pacific Time Zone\"))) (type (union fb:time.time_zone))\nwhat did nicolas cage name his son?\tWeston Coppola Cage\t10.148\tformula (!fb:people.person.children fb:en.nicolas_cage)) (value (list (name fb:en.weston_coppola_cage \"Weston Coppola Cage\") (name fb:en.kal_el_coppola_cage \"Kal-El Coppola Cage\"))) (type fb:people.person)\nwhat did nicolas cage name his son?\tKal-El Coppola Cage\t10.148\tformula (!fb:people.person.children fb:en.nicolas_cage)) (value (list (name fb:en.weston_coppola_cage \"Weston Coppola Cage\") (name fb:en.kal_el_coppola_cage \"Kal-El Coppola Cage\"))) (type fb:people.person)\nwhat is berkshire hathaway invested in?\tProperty and Casualty Insurance\t8.563\tformula (fb:business.industry.companies fb:en.berkshire_hathaway)) (value (list (name fb:en.property_and_casualty_insurance \"Property and Casualty Insurance\") (name fb:en.fire_marine_and_casualty_insurance \"Fire, Marine, and Casualty Insurance\") (name fb:en.newspaper_publishers \"Newspaper Publishers\") (name fb:en.diversified_investments \"Diversified Investments\"))) (type fb:business.industry)\nwhat is berkshire hathaway invested in?\tFire, Marine, and Casualty Insurance\t8.563\tformula (fb:business.industry.companies fb:en.berkshire_hathaway)) (value (list (name fb:en.property_and_casualty_insurance \"Property and Casualty Insurance\") (name fb:en.fire_marine_and_casualty_insurance \"Fire, Marine, and Casualty Insurance\") (name fb:en.newspaper_publishers \"Newspaper Publishers\") (name fb:en.diversified_investments \"Diversified Investments\"))) (type fb:business.industry)\nwhat is berkshire hathaway invested in?\tNewspaper Publishers\t8.563\tformula (fb:business.industry.companies fb:en.berkshire_hathaway)) (value (list (name fb:en.property_and_casualty_insurance \"Property and Casualty Insurance\") (name fb:en.fire_marine_and_casualty_insurance \"Fire, Marine, and Casualty Insurance\") (name fb:en.newspaper_publishers \"Newspaper Publishers\") (name fb:en.diversified_investments \"Diversified Investments\"))) (type fb:business.industry)\nwhat is berkshire hathaway invested in?\tDiversified Investments\t8.563\tformula (fb:business.industry.companies fb:en.berkshire_hathaway)) (value (list (name fb:en.property_and_casualty_insurance \"Property and Casualty Insurance\") (name fb:en.fire_marine_and_casualty_insurance \"Fire, Marine, and Casualty Insurance\") (name fb:en.newspaper_publishers \"Newspaper Publishers\") (name fb:en.diversified_investments \"Diversified Investments\"))) (type fb:business.industry)\nwhat currency should take to mexico?\tMexican peso\t20.644\tformula (!fb:location.country.currency_used fb:en.mexico)) (value (list (name fb:en.mexican_peso \"Mexican peso\"))) (type fb:finance.currency)\nwho is the state governor of florida?\tLawton Chiles\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tFuller Warren\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tLeRoy Collins\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tWayne Mixson\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tCharlie Crist\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tRichard K. Call\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tJames E. Broome\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tDavid S. Walker\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tPam Bondi\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho is the state governor of florida?\tJohn W. Martin\t16.604\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles \"Lawton Chiles\") (name fb:en.fuller_warren \"Fuller Warren\") (name fb:en.leroy_collins \"LeRoy Collins\") (name fb:en.wayne_mixson \"Wayne Mixson\") (name fb:en.charlie_crist \"Charlie Crist\") (name fb:en.richard_k_call \"Richard K. Call\") (name fb:en.james_e_broome \"James E. Broome\") (name fb:en.david_s_walker \"David S. Walker\") (name fb:en.pam_bondi \"Pam Bondi\") (name fb:en.john_w_martin \"John W. Martin\"))) (type fb:government.politician)\nwho was jessica simpson married too?\tNick Lachey\t12.066\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.jessica_simpson)) (value (list (name fb:en.nick_lachey \"Nick Lachey\"))) (type fb:people.person)\nwhat do they speak in scotland?\tEnglish Language\t16.735\tformula (fb:language.human_language.countries_spoken_in fb:en.scotland)) (value (list (name fb:en.english \"English Language\") (name fb:en.old_english_language \"Old English\"))) (type fb:language.human_language)\nwhat do they speak in scotland?\tOld English\t16.735\tformula (fb:language.human_language.countries_spoken_in fb:en.scotland)) (value (list (name fb:en.english \"English Language\") (name fb:en.old_english_language \"Old English\"))) (type fb:language.human_language)\nwhat did john dalton study?\tSedgley Park School, Wolverhampton\t5.728\tformula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:m.0gffp8l)) (value (list (name fb:m.0gy1xhs \"Sedgley Park School, Wolverhampton\"))) (type fb:education.educational_institution)\nwhat songs do zac brown band sing?\tKnee Deep\t12.888\tformula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.zac_brown))) (value (list (name fb:en.knee_deep \"Knee Deep\") (name fb:m.0j2k__3 Free))) (type (union fb:music.composition))\nwho formed the american federation of labor?\tSamuel Gompers\t3.681\tformula (!fb:organization.organization.founders fb:en.american_federation_of_labor)) (value (list (name fb:en.samuel_gompers \"Samuel Gompers\"))) (type fb:organization.organization_founder)\nwhat to visit in denver?\tWestin Westminster\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tChildren's Museum of Denver\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tMolly Brown House\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tDenver Botanic Gardens\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tElitch Gardens\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tForney Transportation Museum\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tColorado State Capitol\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tNorth Building\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tFrederic C. Hamilton Building\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat to visit in denver?\tDenver Museum of Nature and Science\t7.929\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster \"Westin Westminster\") (name fb:m.0cp03nr \"Children's Museum of Denver\") (name fb:en.molly_brown_house \"Molly Brown House\") (name fb:en.denver_botanic_gardens \"Denver Botanic Gardens\") (name fb:en.six_flags_elitch_gardens \"Elitch Gardens\") (name fb:en.forney_transportation_museum \"Forney Transportation Museum\") (name fb:en.colorado_state_capitol \"Colorado State Capitol\") (name fb:m.0j1z2v4 \"North Building\") (name fb:m.0j1z2ts \"Frederic C. Hamilton Building\") (name fb:en.denver_museum_of_nature_and_science \"Denver Museum of Nature and Science\"))) (type fb:travel.tourist_attraction)\nwhat do unitarian universalist believe?\tChristopher Reeve\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tHosea Ballou\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tLinus Pauling\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tFrank Lloyd Wright\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tPete Stark\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tWalt Whitman\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tMay Sarton\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tRay Bradbury\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tRod Serling\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat do unitarian universalist believe?\tEdward Everett\t10.377\tformula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve \"Christopher Reeve\") (name fb:en.hosea_ballou \"Hosea Ballou\") (name fb:en.linus_pauling \"Linus Pauling\") (name fb:en.frank_lloyd_wright \"Frank Lloyd Wright\") (name fb:en.pete_stark \"Pete Stark\") (name fb:en.walt_whitman \"Walt Whitman\") (name fb:en.may_sarton \"May Sarton\") (name fb:en.ray_bradbury \"Ray Bradbury\") (name fb:en.rod_serling \"Rod Serling\") (name fb:en.edward_everett \"Edward Everett\"))) (type fb:people.person)\nwhat did john hancock do for the american revolution?\tUnited States Declaration of Independence\t11.73\tformula (!fb:user.tfmorris.default_domain.signatory.documents_signed fb:en.john_hancock)) (value (list (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:en.articles_of_confederation \"Articles of Confederation\"))) (type fb:user.tfmorris.default_domain.document)\nwhat did john hancock do for the american revolution?\tArticles of Confederation\t11.73\tformula (!fb:user.tfmorris.default_domain.signatory.documents_signed fb:en.john_hancock)) (value (list (name fb:en.united_states_declaration_of_independence \"United States Declaration of Independence\") (name fb:en.articles_of_confederation \"Articles of Confederation\"))) (type fb:user.tfmorris.default_domain.document)\nwhat type of government does italy have 2011?\tParliamentary republic\t10.454\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhat type of government does italy have 2011?\tConstitutional republic\t10.454\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhat type of government does italy have 2011?\tUnitary republic\t10.454\tformula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic \"Parliamentary republic\") (name fb:en.constitutional_republic \"Constitutional republic\") (name fb:m.0v265vn \"Unitary republic\"))) (type fb:government.form_of_government)\nwhich state did anne hutchinson found?\tRhode Island\t10.252\tformula (and (fb:type.object.type fb:location.us_state) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.anne_hutchinson))) (value (list (name fb:en.rhode_island \"Rhode Island\") (name fb:en.massachusetts Massachusetts))) (type (union fb:location.us_state))\nwhat province is montreal canada located?\tUnited States of America\t10.372\tformula (and (fb:type.object.type fb:location.administrative_division) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.canada))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\"))) (type (union fb:location.administrative_division))\nwhat province is montreal canada located?\tUnited Kingdom\t10.372\tformula (and (fb:type.object.type fb:location.administrative_division) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.canada))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.united_kingdom_of_great_britain_and_ireland \"United Kingdom\"))) (type (union fb:location.administrative_division))\nwhere does bronx begin?\tEast River\t3.734\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.the_bronx))) (value (list (name fb:en.east_river \"East River\"))) (type fb:location.location)\nwho does kellan lutz play in prom night?\tProm Night\t9.05\tformula (fb:film.film.starring (and (fb:film.performance.actor fb:en.kellan_lutz) (fb:film.performance.film fb:en.prom_night)))) (value (list (name fb:en.prom_night \"Prom Night\"))) (type fb:film.film)\nwhat language does people in iceland speak?\tIcelandic Language\t12.648\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.iceland))) (value (list (name fb:en.icelandic_language \"Icelandic Language\"))) (type (union fb:language.human_language))\nwho has coached the carolina panthers?\tRon Rivera\t13.147\tformula (fb:american_football.football_coach.current_team_head_coached fb:en.carolina_panthers)) (value (list (name fb:en.ron_rivera \"Ron Rivera\"))) (type fb:american_football.football_coach)\nwhat are the eight stages of erikson's theory?\tDevelopmental psychology\t2.015\tformula (!fb:education.academic.research_areas fb:en.erik_erikson)) (value (list (name fb:en.developmental_psychology \"Developmental psychology\"))) (type fb:education.field_of_study)\nwhat time zone is toronto gmt?\tEastern Time Zone\t18.97\tformula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.toronto))) (value (list (name fb:en.north_american_eastern_time_zone \"Eastern Time Zone\"))) (type (union fb:time.time_zone))\nwho won utah attorney general?\tJohn Swallow\t7.715\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.utah) (fb:government.government_position_held.basic_title fb:en.attorney_general)))) (value (list (name fb:m.09v9vs_ \"John Swallow\") (name fb:en.mark_shurtleff \"Mark Shurtleff\"))) (type fb:government.politician)\nwho won utah attorney general?\tMark Shurtleff\t7.715\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.utah) (fb:government.government_position_held.basic_title fb:en.attorney_general)))) (value (list (name fb:m.09v9vs_ \"John Swallow\") (name fb:en.mark_shurtleff \"Mark Shurtleff\"))) (type fb:government.politician)\nwho is the leader of libya 2011?\tAbdul Hafiz Ghoga\t14.513\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:m.0gjbh05 \"Ali Tarhouni\") (name fb:m.0gg6wgg \"Mustafa Abdul Jalil\") (name fb:m.0gh76k6 \"Mahmoud Jibril\") (name fb:m.0hhpnsl \"Mustafa A.G. Abushagur\"))) (type fb:government.politician)\nwho is the leader of libya 2011?\tAbdurrahim El-Keib\t14.513\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:m.0gjbh05 \"Ali Tarhouni\") (name fb:m.0gg6wgg \"Mustafa Abdul Jalil\") (name fb:m.0gh76k6 \"Mahmoud Jibril\") (name fb:m.0hhpnsl \"Mustafa A.G. Abushagur\"))) (type fb:government.politician)\nwho is the leader of libya 2011?\tAli Tarhouni\t14.513\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:m.0gjbh05 \"Ali Tarhouni\") (name fb:m.0gg6wgg \"Mustafa Abdul Jalil\") (name fb:m.0gh76k6 \"Mahmoud Jibril\") (name fb:m.0hhpnsl \"Mustafa A.G. Abushagur\"))) (type fb:government.politician)\nwho is the leader of libya 2011?\tMustafa Abdul Jalil\t14.513\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:m.0gjbh05 \"Ali Tarhouni\") (name fb:m.0gg6wgg \"Mustafa Abdul Jalil\") (name fb:m.0gh76k6 \"Mahmoud Jibril\") (name fb:m.0hhpnsl \"Mustafa A.G. Abushagur\"))) (type fb:government.politician)\nwho is the leader of libya 2011?\tMahmoud Jibril\t14.513\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:m.0gjbh05 \"Ali Tarhouni\") (name fb:m.0gg6wgg \"Mustafa Abdul Jalil\") (name fb:m.0gh76k6 \"Mahmoud Jibril\") (name fb:m.0hhpnsl \"Mustafa A.G. Abushagur\"))) (type fb:government.politician)\nwho is the leader of libya 2011?\tMustafa A.G. Abushagur\t14.513\tformula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 \"Abdul Hafiz Ghoga\") (name fb:m.0hglttd \"Abdurrahim El-Keib\") (name fb:m.0gjbh05 \"Ali Tarhouni\") (name fb:m.0gg6wgg \"Mustafa Abdul Jalil\") (name fb:m.0gh76k6 \"Mahmoud Jibril\") (name fb:m.0hhpnsl \"Mustafa A.G. Abushagur\"))) (type fb:government.politician)\nwhat the language spoken in indonesia?\tEnglish Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tDutch Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tMalay Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tIndonesian Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tJavanese Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tSunda Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tBali Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tTobelo Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tBatak Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwhat the language spoken in indonesia?\tMadura Language\t17.303\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english \"English Language\") (name fb:en.dutch_language \"Dutch Language\") (name fb:en.malay_language \"Malay Language\") (name fb:en.indonesian_language \"Indonesian Language\") (name fb:en.javanese_language \"Javanese Language\") (name fb:en.sundanese_language \"Sunda Language\") (name fb:en.balinese_language \"Bali Language\") (name fb:en.tobelo_language \"Tobelo Language\") (name fb:en.batak_languange \"Batak Language\") (name fb:en.madurese_language \"Madura Language\"))) (type (union fb:language.human_language))\nwho coaches the carolina panthers?\tRon Rivera\t12.548\tformula (and (fb:people.person.profession fb:en.coach) (!fb:american_football.football_team.current_head_coach fb:en.carolina_panthers))) (value (list (name fb:en.ron_rivera \"Ron Rivera\"))) (type fb:american_football.football_coach)\nwho played darth vader at the end of return of the jedi?\tDavid Prowse\t10.311\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho played darth vader at the end of return of the jedi?\tJames Earl Jones\t10.311\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho played darth vader at the end of return of the jedi?\tHayden Christensen\t10.311\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho played darth vader at the end of return of the jedi?\tMatt Lanter\t10.311\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho played darth vader at the end of return of the jedi?\tSebastian Shaw\t10.311\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho played darth vader at the end of return of the jedi?\tRobert E. Bean\t10.311\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwho played darth vader at the end of return of the jedi?\tJake Lloyd\t10.311\tformula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse \"David Prowse\") (name fb:en.james_earl_jones \"James Earl Jones\") (name fb:en.hayden_christensen \"Hayden Christensen\") (name fb:en.matt_lanter \"Matt Lanter\") (name fb:en.sebastian_shaw_1905 \"Sebastian Shaw\") (name fb:en.robert_e_bean \"Robert E. Bean\") (name fb:en.jake_lloyd \"Jake Lloyd\"))) (type fb:film.actor)\nwhen was herbert hoover born and died?\tWest Branch\t13.054\tformula (!fb:people.person.place_of_birth fb:en.herbert_hoover)) (value (list (name fb:en.west_branch_iowa \"West Branch\"))) (type fb:location.location)\nwhat movies did joan crawford play in?\tWhat Ever Happened to Baby Jane?\t12.234\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.joan_crawford))) (value (list (name fb:en.what_ever_happened_to_baby_jane \"What Ever Happened to Baby Jane?\") (name fb:en.sudden_fear \"Sudden Fear\") (name fb:en.possessed_1947 Possessed) (name fb:en.mildred_pierce_1945 \"Mildred Pierce\"))) (type (union fb:award.award_nominated_work))\nwhat movies did joan crawford play in?\tSudden Fear\t12.234\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.joan_crawford))) (value (list (name fb:en.what_ever_happened_to_baby_jane \"What Ever Happened to Baby Jane?\") (name fb:en.sudden_fear \"Sudden Fear\") (name fb:en.possessed_1947 Possessed) (name fb:en.mildred_pierce_1945 \"Mildred Pierce\"))) (type (union fb:award.award_nominated_work))\nwhat movies did joan crawford play in?\tMildred Pierce\t12.234\tformula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.joan_crawford))) (value (list (name fb:en.what_ever_happened_to_baby_jane \"What Ever Happened to Baby Jane?\") (name fb:en.sudden_fear \"Sudden Fear\") (name fb:en.possessed_1947 Possessed) (name fb:en.mildred_pierce_1945 \"Mildred Pierce\"))) (type (union fb:award.award_nominated_work))\nwhat products does the united states export?\tEnzo the Dog\t13.785\tformula (fb:biology.organism.place_of_birth fb:en.united_states_of_america)) (value (list (name fb:en.enzo_the_dog \"Enzo the Dog\") (name fb:m.0sgpq0p Happy) (name fb:m.0p3qrhn \"Benny the Bull\"))) (type fb:biology.organism)\nwhat products does the united states export?\tBenny the Bull\t13.785\tformula (fb:biology.organism.place_of_birth fb:en.united_states_of_america)) (value (list (name fb:en.enzo_the_dog \"Enzo the Dog\") (name fb:m.0sgpq0p Happy) (name fb:m.0p3qrhn \"Benny the Bull\"))) (type fb:biology.organism)\nwhat did james polk do before he was president?\tGeorge M. Dallas\t14.433\tformula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.james_k_polk))) (value (list (name fb:en.george_m_dallas \"George M. Dallas\"))) (type (union fb:government.us_vice_president))\nwhat is the kentucky state bird?\tSpotted bass\t9.944\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass \"Spotted bass\") (name fb:en.united_we_stand_divided_we_fall \"United we stand, divided we fall\") (name fb:en.liriodendron_tulipifera \"Liriodendron tulipifera\") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division)\nwhat is the kentucky state bird?\tUnited we stand, divided we fall\t9.944\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass \"Spotted bass\") (name fb:en.united_we_stand_divided_we_fall \"United we stand, divided we fall\") (name fb:en.liriodendron_tulipifera \"Liriodendron tulipifera\") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division)\nwhat is the kentucky state bird?\tLiriodendron tulipifera\t9.944\tformula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass \"Spotted bass\") (name fb:en.united_we_stand_divided_we_fall \"United we stand, divided we fall\") (name fb:en.liriodendron_tulipifera \"Liriodendron tulipifera\") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division)\nwhat there to do in salt lake city utah?\tSalt Lake City\t10.048\tformula (and (fb:type.object.type fb:location.citytown) (!fb:location.hud_county_place.place fb:en.salt_lake_city))) (value (list (name fb:en.salt_lake_city \"Salt Lake City\"))) (type (union fb:location.citytown))\nwhat is the state of montana known for?\tNorth Dakota\t15.949\tformula (and (fb:type.object.type fb:location.us_state) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.montana))) (value (list (name fb:en.idaho Idaho) (name fb:en.north_dakota \"North Dakota\") (name fb:en.wyoming Wyoming) (name fb:en.south_dakota \"South Dakota\"))) (type (union fb:location.us_state))\nwhat is the state of montana known for?\tSouth Dakota\t15.949\tformula (and (fb:type.object.type fb:location.us_state) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.montana))) (value (list (name fb:en.idaho Idaho) (name fb:en.north_dakota \"North Dakota\") (name fb:en.wyoming Wyoming) (name fb:en.south_dakota \"South Dakota\"))) (type (union fb:location.us_state))\nwho will be the red sox next coach?\tDeMarlo Hale\t15.944\tformula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale \"DeMarlo Hale\") (name fb:en.brad_mills \"Brad Mills\") (name fb:en.tim_bogar \"Tim Bogar\") (name fb:en.alex_ochoa \"Alex Ochoa\") (name fb:en.dave_magadan \"Dave Magadan\") (name fb:en.gary_tuck \"Gary Tuck\"))) (type fb:baseball.baseball_coach)\nwho will be the red sox next coach?\tBrad Mills\t15.944\tformula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale \"DeMarlo Hale\") (name fb:en.brad_mills \"Brad Mills\") (name fb:en.tim_bogar \"Tim Bogar\") (name fb:en.alex_ochoa \"Alex Ochoa\") (name fb:en.dave_magadan \"Dave Magadan\") (name fb:en.gary_tuck \"Gary Tuck\"))) (type fb:baseball.baseball_coach)\nwho will be the red sox next coach?\tTim Bogar\t15.944\tformula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale \"DeMarlo Hale\") (name fb:en.brad_mills \"Brad Mills\") (name fb:en.tim_bogar \"Tim Bogar\") (name fb:en.alex_ochoa \"Alex Ochoa\") (name fb:en.dave_magadan \"Dave Magadan\") (name fb:en.gary_tuck \"Gary Tuck\"))) (type fb:baseball.baseball_coach)\nwho will be the red sox next coach?\tAlex Ochoa\t15.944\tformula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale \"DeMarlo Hale\") (name fb:en.brad_mills \"Brad Mills\") (name fb:en.tim_bogar \"Tim Bogar\") (name fb:en.alex_ochoa \"Alex Ochoa\") (name fb:en.dave_magadan \"Dave Magadan\") (name fb:en.gary_tuck \"Gary Tuck\"))) (type fb:baseball.baseball_coach)\nwho will be the red sox next coach?\tDave Magadan\t15.944\tformula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale \"DeMarlo Hale\") (name fb:en.brad_mills \"Brad Mills\") (name fb:en.tim_bogar \"Tim Bogar\") (name fb:en.alex_ochoa \"Alex Ochoa\") (name fb:en.dave_magadan \"Dave Magadan\") (name fb:en.gary_tuck \"Gary Tuck\"))) (type fb:baseball.baseball_coach)\nwho will be the red sox next coach?\tGary Tuck\t15.944\tformula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale \"DeMarlo Hale\") (name fb:en.brad_mills \"Brad Mills\") (name fb:en.tim_bogar \"Tim Bogar\") (name fb:en.alex_ochoa \"Alex Ochoa\") (name fb:en.dave_magadan \"Dave Magadan\") (name fb:en.gary_tuck \"Gary Tuck\"))) (type fb:baseball.baseball_coach)\nwho is the current ohio state senator?\tThomas Worthington\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tWilliam Henry Harrison\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tJames W. Huffman\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tKingsley A. Taft\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tJacob Burnet\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tMike DeWine\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tEthan Allen Brown\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tBenjamin Ruggles\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tWilliam A. Trimble\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwho is the current ohio state senator?\tSimeon D. Fess\t11.834\tformula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington \"Thomas Worthington\") (name fb:en.william_henry_harrison \"William Henry Harrison\") (name fb:en.james_w_huffman \"James W. Huffman\") (name fb:en.kingsley_a_taft \"Kingsley A. Taft\") (name fb:en.jacob_burnet \"Jacob Burnet\") (name fb:en.mike_dewine \"Mike DeWine\") (name fb:en.ethan_allen_brown \"Ethan Allen Brown\") (name fb:en.benjamin_ruggles \"Benjamin Ruggles\") (name fb:en.william_a_trimble \"William A. Trimble\") (name fb:en.simeon_d_fess \"Simeon D. Fess\"))) (type fb:government.politician)\nwhat are the major languages spoken in the united kingdom?\tEnglish Language\t21.692\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english \"English Language\") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language \"Scottish Gaelic language\") (name fb:en.scots_language \"Scots Language\") (name fb:en.cornish_language \"Cornish Language\") (name fb:en.welsh_language \"Welsh Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.british_sign_language \"British Sign Language\"))) (type fb:language.human_language)\nwhat are the major languages spoken in the united kingdom?\tScottish Gaelic language\t21.692\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english \"English Language\") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language \"Scottish Gaelic language\") (name fb:en.scots_language \"Scots Language\") (name fb:en.cornish_language \"Cornish Language\") (name fb:en.welsh_language \"Welsh Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.british_sign_language \"British Sign Language\"))) (type fb:language.human_language)\nwhat are the major languages spoken in the united kingdom?\tScots Language\t21.692\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english \"English Language\") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language \"Scottish Gaelic language\") (name fb:en.scots_language \"Scots Language\") (name fb:en.cornish_language \"Cornish Language\") (name fb:en.welsh_language \"Welsh Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.british_sign_language \"British Sign Language\"))) (type fb:language.human_language)\nwhat are the major languages spoken in the united kingdom?\tCornish Language\t21.692\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english \"English Language\") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language \"Scottish Gaelic language\") (name fb:en.scots_language \"Scots Language\") (name fb:en.cornish_language \"Cornish Language\") (name fb:en.welsh_language \"Welsh Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.british_sign_language \"British Sign Language\"))) (type fb:language.human_language)\nwhat are the major languages spoken in the united kingdom?\tWelsh Language\t21.692\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english \"English Language\") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language \"Scottish Gaelic language\") (name fb:en.scots_language \"Scots Language\") (name fb:en.cornish_language \"Cornish Language\") (name fb:en.welsh_language \"Welsh Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.british_sign_language \"British Sign Language\"))) (type fb:language.human_language)\nwhat are the major languages spoken in the united kingdom?\tEsperanto Language\t21.692\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english \"English Language\") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language \"Scottish Gaelic language\") (name fb:en.scots_language \"Scots Language\") (name fb:en.cornish_language \"Cornish Language\") (name fb:en.welsh_language \"Welsh Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.british_sign_language \"British Sign Language\"))) (type fb:language.human_language)\nwhat are the major languages spoken in the united kingdom?\tBritish Sign Language\t21.692\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english \"English Language\") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language \"Scottish Gaelic language\") (name fb:en.scots_language \"Scots Language\") (name fb:en.cornish_language \"Cornish Language\") (name fb:en.welsh_language \"Welsh Language\") (name fb:en.esperanto \"Esperanto Language\") (name fb:en.british_sign_language \"British Sign Language\"))) (type fb:language.human_language)\nwhat percentage of cases does the us supreme court take?\tEdwards v. Canada\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tMcKay v. The Queen\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tLovelace v. Ontario\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tMonsanto Canada Inc. v. Schmeiser\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tHenry Birks & Sons (Montreal) Ltd. v. the City of Montreal\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tPriestman v. Colangelo\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tDelisle v. Canada\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tKirkbi AG v. Ritvik Holdings Inc.\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tHaida Nation v. British Columbia\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwhat percentage of cases does the us supreme court take?\tKienapple v. The Queen\t7.762\tformula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada \"Edwards v. Canada\") (name fb:en.mckay_v_the_queen \"McKay v. The Queen\") (name fb:en.lovelace_v_ontario \"Lovelace v. Ontario\") (name fb:en.monsanto_canada_inc_v_schmeiser \"Monsanto Canada Inc. v. Schmeiser\") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal \"Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal\") (name fb:en.priestman_v_colangelo \"Priestman v. Colangelo\") (name fb:en.delisle_v_canada \"Delisle v. Canada\") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc \"Kirkbi AG v. Ritvik Holdings Inc.\") (name fb:m.0ch3zg5 \"Haida Nation v. British Columbia\") (name fb:en.kienapple_v_the_queen \"Kienapple v. The Queen\"))) (type fb:law.legal_case)\nwho was ulysses s. grant?\tJim Walsh\t4.928\tformula (!fb:symbols.name_source.namesakes fb:en.ulysses_s_grant)) (value (list (name fb:m.0v3dktt \"Jim Walsh\") (name fb:en.3154_grant \"3154 Grant\"))) (type fb:symbols.namesake)\nwho was ulysses s. grant?\t3154 Grant\t4.928\tformula (!fb:symbols.name_source.namesakes fb:en.ulysses_s_grant)) (value (list (name fb:m.0v3dktt \"Jim Walsh\") (name fb:en.3154_grant \"3154 Grant\"))) (type fb:symbols.namesake)\nwhen was the last time the boston bruins went to the stanley cup?\t1939 Stanley Cup Finals\t14.511\tformula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals \"1939 Stanley Cup Finals\") (name fb:en.1972_stanley_cup_finals \"1972 Stanley Cup Finals\") (name fb:en.1970_stanley_cup_finals \"1970 Stanley Cup Finals\") (name fb:m.0glrlkc \"2011 Stanley Cup Finals\") (name fb:en.1929_stanley_cup_finals \"1929 Stanley Cup Finals\") (name fb:en.1941_stanley_cup_finals \"1941 Stanley Cup Finals\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the boston bruins went to the stanley cup?\t1972 Stanley Cup Finals\t14.511\tformula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals \"1939 Stanley Cup Finals\") (name fb:en.1972_stanley_cup_finals \"1972 Stanley Cup Finals\") (name fb:en.1970_stanley_cup_finals \"1970 Stanley Cup Finals\") (name fb:m.0glrlkc \"2011 Stanley Cup Finals\") (name fb:en.1929_stanley_cup_finals \"1929 Stanley Cup Finals\") (name fb:en.1941_stanley_cup_finals \"1941 Stanley Cup Finals\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the boston bruins went to the stanley cup?\t1970 Stanley Cup Finals\t14.511\tformula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals \"1939 Stanley Cup Finals\") (name fb:en.1972_stanley_cup_finals \"1972 Stanley Cup Finals\") (name fb:en.1970_stanley_cup_finals \"1970 Stanley Cup Finals\") (name fb:m.0glrlkc \"2011 Stanley Cup Finals\") (name fb:en.1929_stanley_cup_finals \"1929 Stanley Cup Finals\") (name fb:en.1941_stanley_cup_finals \"1941 Stanley Cup Finals\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the boston bruins went to the stanley cup?\t2011 Stanley Cup Finals\t14.511\tformula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals \"1939 Stanley Cup Finals\") (name fb:en.1972_stanley_cup_finals \"1972 Stanley Cup Finals\") (name fb:en.1970_stanley_cup_finals \"1970 Stanley Cup Finals\") (name fb:m.0glrlkc \"2011 Stanley Cup Finals\") (name fb:en.1929_stanley_cup_finals \"1929 Stanley Cup Finals\") (name fb:en.1941_stanley_cup_finals \"1941 Stanley Cup Finals\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the boston bruins went to the stanley cup?\t1929 Stanley Cup Finals\t14.511\tformula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals \"1939 Stanley Cup Finals\") (name fb:en.1972_stanley_cup_finals \"1972 Stanley Cup Finals\") (name fb:en.1970_stanley_cup_finals \"1970 Stanley Cup Finals\") (name fb:m.0glrlkc \"2011 Stanley Cup Finals\") (name fb:en.1929_stanley_cup_finals \"1929 Stanley Cup Finals\") (name fb:en.1941_stanley_cup_finals \"1941 Stanley Cup Finals\"))) (type fb:sports.sports_championship_event)\nwhen was the last time the boston bruins went to the stanley cup?\t1941 Stanley Cup Finals\t14.511\tformula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals \"1939 Stanley Cup Finals\") (name fb:en.1972_stanley_cup_finals \"1972 Stanley Cup Finals\") (name fb:en.1970_stanley_cup_finals \"1970 Stanley Cup Finals\") (name fb:m.0glrlkc \"2011 Stanley Cup Finals\") (name fb:en.1929_stanley_cup_finals \"1929 Stanley Cup Finals\") (name fb:en.1941_stanley_cup_finals \"1941 Stanley Cup Finals\"))) (type fb:sports.sports_championship_event)\nwho is meredith gray married to in real life?\tEntertainment Weekly annotation index\t5.146\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.real_life)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwho is meredith gray married to in real life?\tBlissful Master Index\t5.146\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.real_life)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwho is meredith gray married to in real life?\tBlissful Celebrities\t5.146\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.real_life)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nwhat inspired michelangelo buonarroti?\tFebruary 18\t-0.723\tformula (and (fb:type.object.type fb:common.topic) (!fb:common.image.appears_in_topic_gallery fb:m.044pm7v))) (value (list (name fb:en.february_18 \"February 18\"))) (type fb:common.topic)\nwhat does monsanto own?\tRoundup Ready®\t8.968\tformula ((lambda x (fb:business.brand.owner_s (fb:business.company_brand_relationship.company (var x)))) fb:en.monsanto)) (value (list (name fb:m.0hnqbfg \"Roundup Ready®\") (name fb:en.roundup Roundup) (name fb:m.0h5tlnk Weathermax))) (type fb:business.brand)\nwho did woody harrelson play on cheers?\tBullet For Adolf\t5.784\tformula (!fb:theater.theater_director.plays_directed fb:en.woody_harrelson)) (value (list (name fb:m.0lh02yc \"Bullet For Adolf\"))) (type fb:theater.theater_production)\nwhat language do they speak in sweden yahoo?\tSwedish Language\t16.745\tformula (!fb:location.country.official_language fb:en.swedem)) (value (list (name fb:en.swedish_language \"Swedish Language\"))) (type fb:language.human_language)\nwhat language did they speak in ghana?\tEnglish Language\t17.697\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.ghana))) (value (list (name fb:en.english \"English Language\"))) (type (union fb:language.human_language))\nwhat form of government do we have in the philippines?\tUnitary state\t22.005\tformula (fb:government.form_of_government.countries fb:en.philippines)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat form of government do we have in the philippines?\tPresidential system\t22.005\tformula (fb:government.form_of_government.countries fb:en.philippines)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat form of government do we have in the philippines?\tConstitutional republic\t22.005\tformula (fb:government.form_of_government.countries fb:en.philippines)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.republic Republic) (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat colleges did mitt romney attend?\tHarvard University\t20.044\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.harvard_business_school \"Harvard Business School\") (name fb:en.harvard_law_school \"Harvard Law School\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.university)\nwhat colleges did mitt romney attend?\tStanford University\t20.044\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.harvard_business_school \"Harvard Business School\") (name fb:en.harvard_law_school \"Harvard Law School\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.university)\nwhat colleges did mitt romney attend?\tHarvard Business School\t20.044\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.harvard_business_school \"Harvard Business School\") (name fb:en.harvard_law_school \"Harvard Law School\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.university)\nwhat colleges did mitt romney attend?\tHarvard Law School\t20.044\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.harvard_business_school \"Harvard Business School\") (name fb:en.harvard_law_school \"Harvard Law School\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.university)\nwhat colleges did mitt romney attend?\tBrigham Young University\t20.044\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.stanford_university \"Stanford University\") (name fb:en.harvard_business_school \"Harvard Business School\") (name fb:en.harvard_law_school \"Harvard Law School\") (name fb:en.brigham_young_university \"Brigham Young University\"))) (type fb:education.university)\nwho was the secretary of state when andrew jackson was president?\tJohn C. Calhoun\t17.154\tformula (fb:government.us_vice_president.to_president fb:en.andrew_jackson)) (value (list (name fb:en.john_c_calhoun \"John C. Calhoun\") (name fb:en.martin_van_buren \"Martin Van Buren\"))) (type fb:government.us_vice_president)\nwho was the secretary of state when andrew jackson was president?\tMartin Van Buren\t17.154\tformula (fb:government.us_vice_president.to_president fb:en.andrew_jackson)) (value (list (name fb:en.john_c_calhoun \"John C. Calhoun\") (name fb:en.martin_van_buren \"Martin Van Buren\"))) (type fb:government.us_vice_president)\nwho does ron stoppable's voice?\tWill Friedle\t5.59\tformula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.ron_stoppable)) (value (list (name fb:en.will_friedle \"Will Friedle\"))) (type fb:film.actor)\nwhat currency is accepted in new zealand?\tNew Zealand dollar\t23.448\tformula (and (fb:type.object.type fb:finance.currency) (!fb:location.country.currency_used fb:en.new_zealand))) (value (list (name fb:en.new_zealand_dollar \"New Zealand dollar\"))) (type fb:finance.currency)\nwhat places are in the west midlands?\tFoundry Trade Journal\t7.437\tformula ((lambda x (fb:book.journal.place_of_publication (fb:book.place_of_publication_period.place_of_publication (var x)))) fb:en.west_midlands)) (value (list (name fb:m.0gbv_mc \"Foundry Trade Journal\"))) (type fb:book.journal)\nwhat to do with kids in asheville nc?\tCarl Sandburg Home National Historic Site\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tPisgah National Forest\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tGrove Park Inn\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tBlue Ridge Parkway\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tBiltmore Estate\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tThomas Wolfe House\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tFolk Art Center\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tSmith-McDowell House\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tAsheville Art Museum\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwhat to do with kids in asheville nc?\tBele Chere\t7.194\tformula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site \"Carl Sandburg Home National Historic Site\") (name fb:en.pisgah_national_forest \"Pisgah National Forest\") (name fb:en.grove_park_inn \"Grove Park Inn\") (name fb:en.blue_ridge_parkway \"Blue Ridge Parkway\") (name fb:en.biltmore_estate \"Biltmore Estate\") (name fb:en.thomas_wolfe_house \"Thomas Wolfe House\") (name fb:en.folk_art_center \"Folk Art Center\") (name fb:en.smith_mcdowell_house_museum \"Smith-McDowell House\") (name fb:m.0k5mxqg \"Asheville Art Museum\") (name fb:en.bele_chere \"Bele Chere\"))) (type fb:travel.tourist_attraction)\nwho did kurt warner play 4?\tNorthern Iowa Panthers football\t7.583\tformula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football \"Northern Iowa Panthers football\") (name fb:en.new_york_giants \"New York Giants\") (name fb:en.st_louis_rams \"St. Louis Rams\") (name fb:m.05bd9b5 \"Iowa Barnstormers\") (name fb:en.arizona_cardinals \"Arizona Cardinals\") (name fb:en.amsterdam_admirals \"Amsterdam Admirals\"))) (type fb:american_football.football_team)\nwho did kurt warner play 4?\tNew York Giants\t7.583\tformula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football \"Northern Iowa Panthers football\") (name fb:en.new_york_giants \"New York Giants\") (name fb:en.st_louis_rams \"St. Louis Rams\") (name fb:m.05bd9b5 \"Iowa Barnstormers\") (name fb:en.arizona_cardinals \"Arizona Cardinals\") (name fb:en.amsterdam_admirals \"Amsterdam Admirals\"))) (type fb:american_football.football_team)\nwho did kurt warner play 4?\tSt. Louis Rams\t7.583\tformula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football \"Northern Iowa Panthers football\") (name fb:en.new_york_giants \"New York Giants\") (name fb:en.st_louis_rams \"St. Louis Rams\") (name fb:m.05bd9b5 \"Iowa Barnstormers\") (name fb:en.arizona_cardinals \"Arizona Cardinals\") (name fb:en.amsterdam_admirals \"Amsterdam Admirals\"))) (type fb:american_football.football_team)\nwho did kurt warner play 4?\tIowa Barnstormers\t7.583\tformula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football \"Northern Iowa Panthers football\") (name fb:en.new_york_giants \"New York Giants\") (name fb:en.st_louis_rams \"St. Louis Rams\") (name fb:m.05bd9b5 \"Iowa Barnstormers\") (name fb:en.arizona_cardinals \"Arizona Cardinals\") (name fb:en.amsterdam_admirals \"Amsterdam Admirals\"))) (type fb:american_football.football_team)\nwho did kurt warner play 4?\tArizona Cardinals\t7.583\tformula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football \"Northern Iowa Panthers football\") (name fb:en.new_york_giants \"New York Giants\") (name fb:en.st_louis_rams \"St. Louis Rams\") (name fb:m.05bd9b5 \"Iowa Barnstormers\") (name fb:en.arizona_cardinals \"Arizona Cardinals\") (name fb:en.amsterdam_admirals \"Amsterdam Admirals\"))) (type fb:american_football.football_team)\nwho did kurt warner play 4?\tAmsterdam Admirals\t7.583\tformula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football \"Northern Iowa Panthers football\") (name fb:en.new_york_giants \"New York Giants\") (name fb:en.st_louis_rams \"St. Louis Rams\") (name fb:m.05bd9b5 \"Iowa Barnstormers\") (name fb:en.arizona_cardinals \"Arizona Cardinals\") (name fb:en.amsterdam_admirals \"Amsterdam Admirals\"))) (type fb:american_football.football_team)\nwho is dirk nowitzki wife?\tJessica Olsson\t11.737\tformula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.dirk_nowitzki)) (value (list (name fb:m.0j4vb1g \"Jessica Olsson\"))) (type fb:people.person)\nwhere is spanish spoken most?\tUnited States of America\t11.927\tformula (and (fb:type.object.type fb:location.location) (fb:location.country.languages_spoken fb:en.spanish))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.argentina Argentina) (name fb:en.canada Canada) (name fb:en.mexico Mexico) (name fb:en.nicaragua Nicaragua) (name fb:en.venezuela Venezuela) (name fb:en.barbados Barbados) (name fb:en.colombia Colombia) (name fb:en.gibraltar Gibraltar) (name fb:en.cuba Cuba))) (type fb:location.country)\nwho does myles kennedy sing for?\tMyles Kennedy and The Conspirators\t5.897\tformula ((lambda x (fb:music.musical_group.member (fb:music.group_membership.member (var x)))) fb:en.myles_kennedy)) (value (list (name fb:m.0rqmx26 \"Myles Kennedy and The Conspirators\") (name fb:en.sadus Sadus) (name fb:en.alter_bridge \"Alter Bridge\") (name fb:en.the_mayfield_four \"The Mayfield Four\"))) (type fb:music.musical_group)\nwho does myles kennedy sing for?\tAlter Bridge\t5.897\tformula ((lambda x (fb:music.musical_group.member (fb:music.group_membership.member (var x)))) fb:en.myles_kennedy)) (value (list (name fb:m.0rqmx26 \"Myles Kennedy and The Conspirators\") (name fb:en.sadus Sadus) (name fb:en.alter_bridge \"Alter Bridge\") (name fb:en.the_mayfield_four \"The Mayfield Four\"))) (type fb:music.musical_group)\nwho does myles kennedy sing for?\tThe Mayfield Four\t5.897\tformula ((lambda x (fb:music.musical_group.member (fb:music.group_membership.member (var x)))) fb:en.myles_kennedy)) (value (list (name fb:m.0rqmx26 \"Myles Kennedy and The Conspirators\") (name fb:en.sadus Sadus) (name fb:en.alter_bridge \"Alter Bridge\") (name fb:en.the_mayfield_four \"The Mayfield Four\"))) (type fb:music.musical_group)\nwhat currency shall i take to croatia?\tCroatian kuna\t21.098\tformula (!fb:location.country.currency_used fb:en.croatia)) (value (list (name fb:en.croatian_kuna \"Croatian kuna\"))) (type fb:finance.currency)\nwhat team is raul ibanez on?\tIbanez RG220\t3.107\tformula (!fb:common.topic.image fb:en.ibanez)) (value (list (name fb:m.0787q70 97IbanezRG570) (name fb:m.02fnl_h \"Ibanez RG220\"))) (type fb:common.image)\nwhat tv series did mark harmon star in?\tReasonable Doubts\t10.201\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts \"Reasonable Doubts\") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace \"Charlie Grace\") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere \"St. Elsewhere\") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.chicago_hope \"Chicago Hope\") (name fb:en.flamingo_road \"Flamingo Road\"))) (type (union fb:tv.tv_program))\nwhat tv series did mark harmon star in?\tCharlie Grace\t10.201\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts \"Reasonable Doubts\") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace \"Charlie Grace\") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere \"St. Elsewhere\") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.chicago_hope \"Chicago Hope\") (name fb:en.flamingo_road \"Flamingo Road\"))) (type (union fb:tv.tv_program))\nwhat tv series did mark harmon star in?\tSt. Elsewhere\t10.201\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts \"Reasonable Doubts\") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace \"Charlie Grace\") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere \"St. Elsewhere\") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.chicago_hope \"Chicago Hope\") (name fb:en.flamingo_road \"Flamingo Road\"))) (type (union fb:tv.tv_program))\nwhat tv series did mark harmon star in?\tFrom the Earth to the Moon\t10.201\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts \"Reasonable Doubts\") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace \"Charlie Grace\") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere \"St. Elsewhere\") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.chicago_hope \"Chicago Hope\") (name fb:en.flamingo_road \"Flamingo Road\"))) (type (union fb:tv.tv_program))\nwhat tv series did mark harmon star in?\tChicago Hope\t10.201\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts \"Reasonable Doubts\") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace \"Charlie Grace\") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere \"St. Elsewhere\") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.chicago_hope \"Chicago Hope\") (name fb:en.flamingo_road \"Flamingo Road\"))) (type (union fb:tv.tv_program))\nwhat tv series did mark harmon star in?\tFlamingo Road\t10.201\tformula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts \"Reasonable Doubts\") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace \"Charlie Grace\") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere \"St. Elsewhere\") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c \"From the Earth to the Moon\") (name fb:en.chicago_hope \"Chicago Hope\") (name fb:en.flamingo_road \"Flamingo Road\"))) (type (union fb:tv.tv_program))\nwho plays anakin skywalker in star wars 1?\tZac Efron\t0.154\tformula ((lambda x (!fb:tv.tv_guest_role.actor (!fb:tv.tv_character.appeared_in_tv_episodes (var x)))) fb:m.0ng0cwt)) (value (list (name fb:en.zac_efron \"Zac Efron\"))) (type fb:tv.tv_actor)\nwhere does michelle pfeiffer live now?\tOrange County\t8.491\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.michelle_pfeiffer))) (value (list (name fb:en.orange_county \"Orange County\"))) (type fb:location.location)\nwhat was laura ingalls wilder famous for?\tDiabetes mellitus\t8.029\tformula (fb:people.cause_of_death.people fb:en.laura_ingalls_wilder)) (value (list (name fb:en.diabetes_mellitus \"Diabetes mellitus\"))) (type fb:people.cause_of_death)\nwho is nick lachey married to?\tJessica Simpson\t17.561\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.nick_lachey)) (value (list (name fb:en.jessica_simpson \"Jessica Simpson\") (name fb:en.vanessa_minnillo \"Vanessa Minnillo\"))) (type fb:people.person)\nwho is nick lachey married to?\tVanessa Minnillo\t17.561\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.nick_lachey)) (value (list (name fb:en.jessica_simpson \"Jessica Simpson\") (name fb:en.vanessa_minnillo \"Vanessa Minnillo\"))) (type fb:people.person)\nwhere did madonna grew up?\tNew York City\t9.943\tformula (and (fb:type.object.type fb:location.location) (!fb:music.artist.origin fb:en.madonna))) (value (list (name fb:en.new_york_ny \"New York City\"))) (type fb:location.location)\nwhat college did john stockton go to?\tGonzaga University\t17.491\tformula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_stockton))) (value (list (name fb:en.gonzaga_university \"Gonzaga University\"))) (type fb:education.university)\nwhat kind of currency does mexico use?\tMexican peso\t17.659\tformula (!fb:location.country.currency_used fb:en.mexico)) (value (list (name fb:en.mexican_peso \"Mexican peso\"))) (type fb:finance.currency)\nwho owns chrysler corporation 2011?\tRobert S. Miller\t5.79\tformula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller \"Robert S. Miller\") (name fb:en.robert_james_eaton \"Robert J. Eaton\") (name fb:en.james_e_press \"James E. Press\") (name fb:en.robert_lutz \"Bob Lutz\") (name fb:en.peter_magowan \"Peter A. Magowan\"))) (type fb:business.board_member)\nwho owns chrysler corporation 2011?\tRobert J. Eaton\t5.79\tformula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller \"Robert S. Miller\") (name fb:en.robert_james_eaton \"Robert J. Eaton\") (name fb:en.james_e_press \"James E. Press\") (name fb:en.robert_lutz \"Bob Lutz\") (name fb:en.peter_magowan \"Peter A. Magowan\"))) (type fb:business.board_member)\nwho owns chrysler corporation 2011?\tJames E. Press\t5.79\tformula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller \"Robert S. Miller\") (name fb:en.robert_james_eaton \"Robert J. Eaton\") (name fb:en.james_e_press \"James E. Press\") (name fb:en.robert_lutz \"Bob Lutz\") (name fb:en.peter_magowan \"Peter A. Magowan\"))) (type fb:business.board_member)\nwho owns chrysler corporation 2011?\tBob Lutz\t5.79\tformula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller \"Robert S. Miller\") (name fb:en.robert_james_eaton \"Robert J. Eaton\") (name fb:en.james_e_press \"James E. Press\") (name fb:en.robert_lutz \"Bob Lutz\") (name fb:en.peter_magowan \"Peter A. Magowan\"))) (type fb:business.board_member)\nwho owns chrysler corporation 2011?\tPeter A. Magowan\t5.79\tformula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller \"Robert S. Miller\") (name fb:en.robert_james_eaton \"Robert J. Eaton\") (name fb:en.james_e_press \"James E. Press\") (name fb:en.robert_lutz \"Bob Lutz\") (name fb:en.peter_magowan \"Peter A. Magowan\"))) (type fb:business.board_member)\nwho has ray allen dated?\tFlora Allen\t7.535\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.ray_allen))) (value (list (name fb:m.0j2h2gw \"Flora Allen\") (name fb:m.0j2h2h1 \"Walter Allen\"))) (type fb:people.person)\nwho has ray allen dated?\tWalter Allen\t7.535\tformula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.ray_allen))) (value (list (name fb:m.0j2h2gw \"Flora Allen\") (name fb:m.0j2h2h1 \"Walter Allen\"))) (type fb:people.person)\nwho is running for vice president with barack obama 2012?\tJoe Biden\t13.542\tformula (fb:government.us_vice_president.to_president fb:en.barack_obama)) (value (list (name fb:en.jr_biden_joseph_r \"Joe Biden\"))) (type fb:government.us_vice_president)\nwhat language do people from the uk speak?\tUnited States of America\t8.821\tformula ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.currency (var x)))) fb:en.uk)) (value (list (name fb:en.republic_of_ireland Ireland) (name fb:en.france France) (name fb:en.netherlands Netherlands) (name fb:en.italy Italy) (name fb:en.belgium Belgium) (name fb:en.singapore Singapore) (name fb:en.spain Spain) (name fb:en.germany Germany) (name fb:en.switzerland Switzerland) (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.statistical_region)\nwhat kind of government is south korea?\tUnitary state\t10.696\tformula (!fb:location.country.form_of_government fb:en.south_korea)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat kind of government is south korea?\tPresidential system\t10.696\tformula (!fb:location.country.form_of_government fb:en.south_korea)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwhat kind of government is south korea?\tConstitutional republic\t10.696\tformula (!fb:location.country.form_of_government fb:en.south_korea)) (value (list (name fb:en.unitary_state \"Unitary state\") (name fb:en.presidential_system \"Presidential system\") (name fb:en.constitutional_republic \"Constitutional republic\"))) (type fb:government.form_of_government)\nwho did ben franklin marry?\tEmma Franklin\t8.828\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:m.0ph3zvx)) (value (list (name fb:m.0qj15xw \"Emma Franklin\"))) (type fb:people.person)\nwhat sri lanka capital?\tSri Jayawardenapura Kotte\t10.82\tformula (!fb:location.country.capital fb:en.sri_lanka)) (value (list (name fb:en.kotte \"Sri Jayawardenapura Kotte\"))) (type fb:location.citytown)\nwhat kind of government does poland have?\tParliamentary republic\t14.572\tformula (!fb:location.country.form_of_government fb:en.poland)) (value (list (name fb:en.democracy Democracy) (name fb:en.parliamentary_republic \"Parliamentary republic\"))) (type fb:government.form_of_government)\nwhat famous people came from delaware?\tState Senator\t6.32\tformula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.delaware)) (value (list (name fb:en.state_senator \"State Senator\") (name fb:en.governor Governor) (name fb:en.attorney_general \"Attorney general\") (name fb:en.lieutenant_governor \"Lieutenant Governor\") (name fb:m.09n5b9 \"Secretary of state\"))) (type fb:government.government_office_category)\nwhat famous people came from delaware?\tAttorney general\t6.32\tformula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.delaware)) (value (list (name fb:en.state_senator \"State Senator\") (name fb:en.governor Governor) (name fb:en.attorney_general \"Attorney general\") (name fb:en.lieutenant_governor \"Lieutenant Governor\") (name fb:m.09n5b9 \"Secretary of state\"))) (type fb:government.government_office_category)\nwhat famous people came from delaware?\tLieutenant Governor\t6.32\tformula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.delaware)) (value (list (name fb:en.state_senator \"State Senator\") (name fb:en.governor Governor) (name fb:en.attorney_general \"Attorney general\") (name fb:en.lieutenant_governor \"Lieutenant Governor\") (name fb:m.09n5b9 \"Secretary of state\"))) (type fb:government.government_office_category)\nwhat famous people came from delaware?\tSecretary of state\t6.32\tformula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.delaware)) (value (list (name fb:en.state_senator \"State Senator\") (name fb:en.governor Governor) (name fb:en.attorney_general \"Attorney general\") (name fb:en.lieutenant_governor \"Lieutenant Governor\") (name fb:m.09n5b9 \"Secretary of state\"))) (type fb:government.government_office_category)\nwho was with president lincoln when he was assassinated?\tAndrew Johnson\t24.338\tformula (fb:government.us_vice_president.to_president fb:en.abraham_lincoln)) (value (list (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.hannibal_hamlin \"Hannibal Hamlin\"))) (type fb:government.us_vice_president)\nwho was with president lincoln when he was assassinated?\tHannibal Hamlin\t24.338\tformula (fb:government.us_vice_president.to_president fb:en.abraham_lincoln)) (value (list (name fb:en.andrew_johnson \"Andrew Johnson\") (name fb:en.hannibal_hamlin \"Hannibal Hamlin\"))) (type fb:government.us_vice_president)\nwhat type of guitar does johnny depp play?\tEngaged to\t12.095\tformula ((lambda x (!fb:celebrities.romantic_relationship.relationship_type (!fb:celebrities.celebrity.sexual_relationships (var x)))) fb:en.johnny_depp)) (value (list (name fb:en.dated Dated) (name fb:en.engaged_to \"Engaged to\") (name fb:en.lived_with \"Lived with\"))) (type fb:celebrities.romantic_relationship_type)\nwhat type of guitar does johnny depp play?\tLived with\t12.095\tformula ((lambda x (!fb:celebrities.romantic_relationship.relationship_type (!fb:celebrities.celebrity.sexual_relationships (var x)))) fb:en.johnny_depp)) (value (list (name fb:en.dated Dated) (name fb:en.engaged_to \"Engaged to\") (name fb:en.lived_with \"Lived with\"))) (type fb:celebrities.romantic_relationship_type)\nwhere to stay in singapore blog?\tUniversal Studios Singapore\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tJurong BirdPark\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tKampung Days\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tSingapore Botanic Gardens\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tSingapore Flyer\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tArmenian Church, Singapore\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tSri Mariamman Temple, Singapore\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tSingapore Zoo\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tUnderwater World, Singapore\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhere to stay in singapore blog?\tNight Safari, Singapore\t8.003\tformula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore \"Universal Studios Singapore\") (name fb:en.jurong_birdpark \"Jurong BirdPark\") (name fb:en.kampung_days \"Kampung Days\") (name fb:en.singapore_botanic_gardens \"Singapore Botanic Gardens\") (name fb:en.singapore_flyer \"Singapore Flyer\") (name fb:en.armenian_church_singapore \"Armenian Church, Singapore\") (name fb:en.sri_mariamman_temple \"Sri Mariamman Temple, Singapore\") (name fb:en.singapore_zoo \"Singapore Zoo\") (name fb:en.underwater_world_singapore \"Underwater World, Singapore\") (name fb:en.night_safari_singapore \"Night Safari, Singapore\"))) (type fb:travel.tourist_attraction)\nwhat episode of how i met your mother is carrie underwood on?\tRussell Crowe, Jenna Bush, Carrie Underwood\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwhat episode of how i met your mother is carrie underwood on?\tThe 49th Annual Grammy Awards\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwhat episode of how i met your mother is carrie underwood on?\tRenee Zelleweger/Kevin Connelly\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwhat episode of how i met your mother is carrie underwood on?\tCarrie Underwood, Patricia Cornwell\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwhat episode of how i met your mother is carrie underwood on?\tSuper Bowl XLIV\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwhat episode of how i met your mother is carrie underwood on?\tand then there were 16...\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwhat episode of how i met your mother is carrie underwood on?\t2007 CMA Music Festival\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwhat episode of how i met your mother is carrie underwood on?\tSteve Carell, Blake Lively, Carrie Underwood\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwhat episode of how i met your mother is carrie underwood on?\tIdol Gives Back\t14.832\tformula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 \"Russell Crowe, Jenna Bush, Carrie Underwood\") (name fb:m.07l7tcy \"The 49th Annual Grammy Awards\") (name fb:m.07n5gjc \"Renee Zelleweger/Kevin Connelly\") (name fb:m.06yz6xn \"Carrie Underwood, Patricia Cornwell\") (name fb:m.07lzps8 \"Super Bowl XLIV\") (name fb:m.06xyjl0 \"and then there were 16...\") (name fb:m.07n2twn \"2007 CMA Music Festival\") (name fb:m.07n5nrm \"Steve Carell, Blake Lively, Carrie Underwood\") (name fb:m.06xykhx \"Idol Gives Back\"))) (type fb:tv.tv_series_episode)\nwho are the 9 justices of the supreme court 2011?\tRicky Polston\t10.945\tformula (and (fb:type.object.type fb:law.judge) ((lambda x (!fb:law.judicial_tenure.judge (!fb:law.court.judges (var x)))) fb:en.florida_supreme_court))) (value (list (name fb:en.ricky_polston \"Ricky Polston\") (name fb:en.joseph_b_lancaster \"Joseph B. Lancaster\"))) (type (union fb:law.judge))\nwho are the 9 justices of the supreme court 2011?\tJoseph B. Lancaster\t10.945\tformula (and (fb:type.object.type fb:law.judge) ((lambda x (!fb:law.judicial_tenure.judge (!fb:law.court.judges (var x)))) fb:en.florida_supreme_court))) (value (list (name fb:en.ricky_polston \"Ricky Polston\") (name fb:en.joseph_b_lancaster \"Joseph B. Lancaster\"))) (type (union fb:law.judge))\nwho did cher have a son with?\tChaz Bono\t15.481\tformula (!fb:people.person.children fb:en.cher)) (value (list (name fb:en.chastity_bono \"Chaz Bono\") (name fb:en.elijah_blue_allman_1976 \"Elijah Blue Allman\"))) (type fb:people.person)\nwho did cher have a son with?\tElijah Blue Allman\t15.481\tformula (!fb:people.person.children fb:en.cher)) (value (list (name fb:en.chastity_bono \"Chaz Bono\") (name fb:en.elijah_blue_allman_1976 \"Elijah Blue Allman\"))) (type fb:people.person)\nwho played carmen cortez in spy kids?\tAlexa Vega\t8.277\tformula (fb:film.actor.film (and (fb:film.performance.character fb:en.carmen_cortez) (fb:film.performance.film fb:m.02rrfzf)))) (value (list (name fb:en.alexa_vega \"Alexa Vega\"))) (type fb:film.actor)\nwhat is the political system in germany?\tUnited States of America\t13.778\tformula ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.germany)) (value (list (name fb:en.algeria Algeria) (name fb:en.albania_france Albania) (name fb:en.afghanistan Afghanistan) (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.statistical_region)\nwhat is the currency in turkey called?\tTurkish lira\t20.316\tformula (!fb:location.country.currency_used fb:en.turkey)) (value (list (name fb:en.turkish_lira \"Turkish lira\"))) (type fb:finance.currency)\nwhat school did mark zuckerberg attend?\tHarvard University\t16.55\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.ardsley_high_school \"Ardsley High School\") (name fb:en.mercy_college \"Mercy College\") (name fb:en.phillips_exeter_academy \"Phillips Exeter Academy\"))) (type fb:education.educational_institution)\nwhat school did mark zuckerberg attend?\tArdsley High School\t16.55\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.ardsley_high_school \"Ardsley High School\") (name fb:en.mercy_college \"Mercy College\") (name fb:en.phillips_exeter_academy \"Phillips Exeter Academy\"))) (type fb:education.educational_institution)\nwhat school did mark zuckerberg attend?\tMercy College\t16.55\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.ardsley_high_school \"Ardsley High School\") (name fb:en.mercy_college \"Mercy College\") (name fb:en.phillips_exeter_academy \"Phillips Exeter Academy\"))) (type fb:education.educational_institution)\nwhat school did mark zuckerberg attend?\tPhillips Exeter Academy\t16.55\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg))) (value (list (name fb:en.harvard_university \"Harvard University\") (name fb:en.ardsley_high_school \"Ardsley High School\") (name fb:en.mercy_college \"Mercy College\") (name fb:en.phillips_exeter_academy \"Phillips Exeter Academy\"))) (type fb:education.educational_institution)\nwhat language is spoken in argentina?\tSpanish Language\t20.401\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.argentina))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.yiddish_language \"Yiddish Language\"))) (type (union fb:language.human_language))\nwhat language is spoken in argentina?\tItalian Language\t20.401\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.argentina))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.yiddish_language \"Yiddish Language\"))) (type (union fb:language.human_language))\nwhat language is spoken in argentina?\tYiddish Language\t20.401\tformula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.argentina))) (value (list (name fb:en.spanish \"Spanish Language\") (name fb:en.italian \"Italian Language\") (name fb:en.yiddish_language \"Yiddish Language\"))) (type (union fb:language.human_language))\nwho won the american league east in 2012?\tRafael Nadal\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tNovak Djokovic\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tGaël Monfils\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tAndy Murray\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tSerena Williams\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tRoger Federer\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tVirginie Razzano\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tYaroslava Shvedova\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tDominika Cibulková\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwho won the american league east in 2012?\tJohn Isner\t4.684\tformula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal \"Rafael Nadal\") (name fb:en.novak_djokovic \"Novak Djokovic\") (name fb:en.gael_monfils \"Gaël Monfils\") (name fb:en.andrew_murray \"Andy Murray\") (name fb:en.serena_williams \"Serena Williams\") (name fb:en.roger_federer \"Roger Federer\") (name fb:en.virginie_razzano \"Virginie Razzano\") (name fb:en.yaroslava_shvedova \"Yaroslava Shvedova\") (name fb:en.dominika_cibulkova \"Dominika Cibulková\") (name fb:en.john_isner \"John Isner\"))) (type fb:tennis.tennis_player)\nwhat did isaac newton explain?\tRalph Waldo Emerson\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat did isaac newton explain?\tAlbert Einstein\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat did isaac newton explain?\tThomas Jefferson\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat did isaac newton explain?\tImmanuel Kant\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat did isaac newton explain?\tGregory Chaitin\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat did isaac newton explain?\tEmanuel Swedenborg\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat did isaac newton explain?\tDavid Hume\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat did isaac newton explain?\tGeorge Boole\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat did isaac newton explain?\tGeorge Berkeley\t10.409\tformula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson \"Ralph Waldo Emerson\") (name fb:en.albert_einstein \"Albert Einstein\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.gregory_chaitin \"Gregory Chaitin\") (name fb:en.emanuel_swedenborg \"Emanuel Swedenborg\") (name fb:en.david_hume \"David Hume\") (name fb:en.george_boole \"George Boole\") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley \"George Berkeley\"))) (type fb:influence.influence_node)\nwhat school did wilfred owen go to?\tUniversity of London\t17.455\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.wilfred_owen))) (value (list (name fb:en.university_of_london \"University of London\") (name fb:en.university_of_reading \"University of Reading\"))) (type fb:education.educational_institution)\nwhat school did wilfred owen go to?\tUniversity of Reading\t17.455\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.wilfred_owen))) (value (list (name fb:en.university_of_london \"University of London\") (name fb:en.university_of_reading \"University of Reading\"))) (type fb:education.educational_institution)\nwho is kevin jonas married to?\tDanielle Deleasa\t15.649\tformula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.paul_kevin_jonas_ii)) (value (list (name fb:en.danielle_deleasa \"Danielle Deleasa\"))) (type fb:people.person)\nwhere does airtran airways fly?\tHartsfield Jackson Atlanta International Airport\t8.274\tformula (and (fb:type.object.type fb:location.location) (fb:aviation.airport.hub_for fb:en.airtran_airways))) (value (list (name fb:en.hartsfield-jackson_atlanta_international_airport \"Hartsfield–Jackson Atlanta International Airport\") (name fb:en.general_mitchell_international_airport \"General Mitchell International Airport\") (name fb:en.orlando_international_airport \"Orlando International Airport\"))) (type fb:aviation.airport)\nwhere does airtran airways fly?\tGeneral Mitchell International Airport\t8.274\tformula (and (fb:type.object.type fb:location.location) (fb:aviation.airport.hub_for fb:en.airtran_airways))) (value (list (name fb:en.hartsfield-jackson_atlanta_international_airport \"Hartsfield–Jackson Atlanta International Airport\") (name fb:en.general_mitchell_international_airport \"General Mitchell International Airport\") (name fb:en.orlando_international_airport \"Orlando International Airport\"))) (type fb:aviation.airport)\nwhere does airtran airways fly?\tOrlando International Airport\t8.274\tformula (and (fb:type.object.type fb:location.location) (fb:aviation.airport.hub_for fb:en.airtran_airways))) (value (list (name fb:en.hartsfield-jackson_atlanta_international_airport \"Hartsfield–Jackson Atlanta International Airport\") (name fb:en.general_mitchell_international_airport \"General Mitchell International Airport\") (name fb:en.orlando_international_airport \"Orlando International Airport\"))) (type fb:aviation.airport)\n"
  },
  {
    "path": "oqa-data/predictions/sempre-wikianswers.txt",
    "content": "What language was the olympic motto written in?\tThe Nature of This Paradigm Dancing\t-4.647\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g \"The Nature of This Paradigm Dancing\") (name fb:m.06s8xq_ \"Language and the Internet\") (name fb:m.02qqfd5 \"Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs\") (name fb:en.british_edda \"The British Edda\") (name fb:m.0hr7008 \"Mandaean Book of John\") (name fb:en.language_in_danger \"Language in Danger\"))) (type fb:book.written_work)\nWhat language was the olympic motto written in?\tLanguage and the Internet\t-4.647\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g \"The Nature of This Paradigm Dancing\") (name fb:m.06s8xq_ \"Language and the Internet\") (name fb:m.02qqfd5 \"Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs\") (name fb:en.british_edda \"The British Edda\") (name fb:m.0hr7008 \"Mandaean Book of John\") (name fb:en.language_in_danger \"Language in Danger\"))) (type fb:book.written_work)\nWhat language was the olympic motto written in?\tEgyptian Grammar: Being an Introduction to the Study of Hieroglyphs\t-4.647\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g \"The Nature of This Paradigm Dancing\") (name fb:m.06s8xq_ \"Language and the Internet\") (name fb:m.02qqfd5 \"Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs\") (name fb:en.british_edda \"The British Edda\") (name fb:m.0hr7008 \"Mandaean Book of John\") (name fb:en.language_in_danger \"Language in Danger\"))) (type fb:book.written_work)\nWhat language was the olympic motto written in?\tThe British Edda\t-4.647\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g \"The Nature of This Paradigm Dancing\") (name fb:m.06s8xq_ \"Language and the Internet\") (name fb:m.02qqfd5 \"Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs\") (name fb:en.british_edda \"The British Edda\") (name fb:m.0hr7008 \"Mandaean Book of John\") (name fb:en.language_in_danger \"Language in Danger\"))) (type fb:book.written_work)\nWhat language was the olympic motto written in?\tMandaean Book of John\t-4.647\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g \"The Nature of This Paradigm Dancing\") (name fb:m.06s8xq_ \"Language and the Internet\") (name fb:m.02qqfd5 \"Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs\") (name fb:en.british_edda \"The British Edda\") (name fb:m.0hr7008 \"Mandaean Book of John\") (name fb:en.language_in_danger \"Language in Danger\"))) (type fb:book.written_work)\nWhat language was the olympic motto written in?\tLanguage in Danger\t-4.647\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g \"The Nature of This Paradigm Dancing\") (name fb:m.06s8xq_ \"Language and the Internet\") (name fb:m.02qqfd5 \"Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs\") (name fb:en.british_edda \"The British Edda\") (name fb:m.0hr7008 \"Mandaean Book of John\") (name fb:en.language_in_danger \"Language in Danger\"))) (type fb:book.written_work)\nWhere was Chris Brown born?\tNew York\t-3.708\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.chris_brown))) (value (list (name fb:en.virginia Virginia) (name fb:en.new_york_state \"New York\"))) (type fb:location.location)\nWhy was Britain so scared on Germany in WW1?\tRitter Sport\t-5.697\tformula (fb:food.candy_bar.sold_in fb:en.germany)) (value (list (name fb:en.ritter_sport \"Ritter Sport\") (name fb:en.curly_wurly \"Curly Wurly\"))) (type fb:food.candy_bar)\nWhy was Britain so scared on Germany in WW1?\tCurly Wurly\t-5.697\tformula (fb:food.candy_bar.sold_in fb:en.germany)) (value (list (name fb:en.ritter_sport \"Ritter Sport\") (name fb:en.curly_wurly \"Curly Wurly\"))) (type fb:food.candy_bar)\nWhat films has Lenny Henry been in?\tHarry Potter and the Prisoner of Azkaban\t0.951\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 \"Harry Potter and the Prisoner of Azkaban\") (name fb:m.03d6pk4 \"Coast to Coast\") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m \"The Pirates! Band of Misfits\") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie \"Bernard and the Genie\") (name fb:en.little_robots_reach_for_the_sky \"Little Robots: Reach for the Sky\") (name fb:m.0crw3g2 \"French and Saunders: Live\") (name fb:m.04j25ld \"Prince Cinders\") (name fb:m.02pg_l4 \"True Identity\"))) (type fb:film.film)\nWhat films has Lenny Henry been in?\tCoast to Coast\t0.951\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 \"Harry Potter and the Prisoner of Azkaban\") (name fb:m.03d6pk4 \"Coast to Coast\") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m \"The Pirates! Band of Misfits\") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie \"Bernard and the Genie\") (name fb:en.little_robots_reach_for_the_sky \"Little Robots: Reach for the Sky\") (name fb:m.0crw3g2 \"French and Saunders: Live\") (name fb:m.04j25ld \"Prince Cinders\") (name fb:m.02pg_l4 \"True Identity\"))) (type fb:film.film)\nWhat films has Lenny Henry been in?\tThe Pirates! Band of Misfits\t0.951\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 \"Harry Potter and the Prisoner of Azkaban\") (name fb:m.03d6pk4 \"Coast to Coast\") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m \"The Pirates! Band of Misfits\") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie \"Bernard and the Genie\") (name fb:en.little_robots_reach_for_the_sky \"Little Robots: Reach for the Sky\") (name fb:m.0crw3g2 \"French and Saunders: Live\") (name fb:m.04j25ld \"Prince Cinders\") (name fb:m.02pg_l4 \"True Identity\"))) (type fb:film.film)\nWhat films has Lenny Henry been in?\tBernard and the Genie\t0.951\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 \"Harry Potter and the Prisoner of Azkaban\") (name fb:m.03d6pk4 \"Coast to Coast\") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m \"The Pirates! Band of Misfits\") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie \"Bernard and the Genie\") (name fb:en.little_robots_reach_for_the_sky \"Little Robots: Reach for the Sky\") (name fb:m.0crw3g2 \"French and Saunders: Live\") (name fb:m.04j25ld \"Prince Cinders\") (name fb:m.02pg_l4 \"True Identity\"))) (type fb:film.film)\nWhat films has Lenny Henry been in?\tLittle Robots: Reach for the Sky\t0.951\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 \"Harry Potter and the Prisoner of Azkaban\") (name fb:m.03d6pk4 \"Coast to Coast\") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m \"The Pirates! Band of Misfits\") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie \"Bernard and the Genie\") (name fb:en.little_robots_reach_for_the_sky \"Little Robots: Reach for the Sky\") (name fb:m.0crw3g2 \"French and Saunders: Live\") (name fb:m.04j25ld \"Prince Cinders\") (name fb:m.02pg_l4 \"True Identity\"))) (type fb:film.film)\nWhat films has Lenny Henry been in?\tFrench and Saunders: Live\t0.951\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 \"Harry Potter and the Prisoner of Azkaban\") (name fb:m.03d6pk4 \"Coast to Coast\") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m \"The Pirates! Band of Misfits\") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie \"Bernard and the Genie\") (name fb:en.little_robots_reach_for_the_sky \"Little Robots: Reach for the Sky\") (name fb:m.0crw3g2 \"French and Saunders: Live\") (name fb:m.04j25ld \"Prince Cinders\") (name fb:m.02pg_l4 \"True Identity\"))) (type fb:film.film)\nWhat films has Lenny Henry been in?\tPrince Cinders\t0.951\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 \"Harry Potter and the Prisoner of Azkaban\") (name fb:m.03d6pk4 \"Coast to Coast\") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m \"The Pirates! Band of Misfits\") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie \"Bernard and the Genie\") (name fb:en.little_robots_reach_for_the_sky \"Little Robots: Reach for the Sky\") (name fb:m.0crw3g2 \"French and Saunders: Live\") (name fb:m.04j25ld \"Prince Cinders\") (name fb:m.02pg_l4 \"True Identity\"))) (type fb:film.film)\nWhat films has Lenny Henry been in?\tTrue Identity\t0.951\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 \"Harry Potter and the Prisoner of Azkaban\") (name fb:m.03d6pk4 \"Coast to Coast\") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m \"The Pirates! Band of Misfits\") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie \"Bernard and the Genie\") (name fb:en.little_robots_reach_for_the_sky \"Little Robots: Reach for the Sky\") (name fb:m.0crw3g2 \"French and Saunders: Live\") (name fb:m.04j25ld \"Prince Cinders\") (name fb:m.02pg_l4 \"True Identity\"))) (type fb:film.film)\nWhat are some similarities between a dog and a squirrel?\tHow many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tYou may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tA door is what a dog is perpetually on the wrong side of.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tDog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tThe nose of the bulldog has been slanted backwards so that he can breathe without letting go.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tThe meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tIn order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tThe great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tIf you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nWhat are some similarities between a dog and a squirrel?\tIf a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\t-3.633\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 \"How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.\") (name fb:m.048f_22 \"You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.\") (name fb:m.048f_xf \"A door is what a dog is perpetually on the wrong side of.\") (name fb:m.048crwj \"Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.\") (name fb:m.048cr_j \"The nose of the bulldog has been slanted backwards so that he can breathe without letting go.\") (name fb:m.048h20l \"The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.\") (name fb:m.048dt0t \"In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.\") (name fb:m.048cqhv \"The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.\") (name fb:m.048fpt4 \"If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.\") (name fb:m.048cm2n \"If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal.\"))) (type fb:media_common.quotation)\nFreight account is a contra purchase account true or false?\tKon To Ra\t-1.657\tformula (!fb:common.topic.alias fb:en.contra)) (value (list (string Probotector) (string Gryzor) (string \"Kon To Ra\"))) (type fb:type.text)\nWhich is bigger country Somalia or Kenya?\tSomali Language\t-4.455\tformula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages \"Somali Language\") (name fb:en.mushungulu \"Mushungulu Language\") (name fb:en.boon_language \"Boon Language\") (name fb:en.tunni \"Tunni Language\") (name fb:en.maay \"Maay Language\") (name fb:m.02hxy8r \"Garre Language\") (name fb:en.dabarre \"Dabarre Language\") (name fb:en.jiiddu \"Jiiddu Language\"))) (type fb:language.human_language)\nWhich is bigger country Somalia or Kenya?\tMushungulu Language\t-4.455\tformula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages \"Somali Language\") (name fb:en.mushungulu \"Mushungulu Language\") (name fb:en.boon_language \"Boon Language\") (name fb:en.tunni \"Tunni Language\") (name fb:en.maay \"Maay Language\") (name fb:m.02hxy8r \"Garre Language\") (name fb:en.dabarre \"Dabarre Language\") (name fb:en.jiiddu \"Jiiddu Language\"))) (type fb:language.human_language)\nWhich is bigger country Somalia or Kenya?\tBoon Language\t-4.455\tformula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages \"Somali Language\") (name fb:en.mushungulu \"Mushungulu Language\") (name fb:en.boon_language \"Boon Language\") (name fb:en.tunni \"Tunni Language\") (name fb:en.maay \"Maay Language\") (name fb:m.02hxy8r \"Garre Language\") (name fb:en.dabarre \"Dabarre Language\") (name fb:en.jiiddu \"Jiiddu Language\"))) (type fb:language.human_language)\nWhich is bigger country Somalia or Kenya?\tTunni Language\t-4.455\tformula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages \"Somali Language\") (name fb:en.mushungulu \"Mushungulu Language\") (name fb:en.boon_language \"Boon Language\") (name fb:en.tunni \"Tunni Language\") (name fb:en.maay \"Maay Language\") (name fb:m.02hxy8r \"Garre Language\") (name fb:en.dabarre \"Dabarre Language\") (name fb:en.jiiddu \"Jiiddu Language\"))) (type fb:language.human_language)\nWhich is bigger country Somalia or Kenya?\tMaay Language\t-4.455\tformula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages \"Somali Language\") (name fb:en.mushungulu \"Mushungulu Language\") (name fb:en.boon_language \"Boon Language\") (name fb:en.tunni \"Tunni Language\") (name fb:en.maay \"Maay Language\") (name fb:m.02hxy8r \"Garre Language\") (name fb:en.dabarre \"Dabarre Language\") (name fb:en.jiiddu \"Jiiddu Language\"))) (type fb:language.human_language)\nWhich is bigger country Somalia or Kenya?\tGarre Language\t-4.455\tformula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages \"Somali Language\") (name fb:en.mushungulu \"Mushungulu Language\") (name fb:en.boon_language \"Boon Language\") (name fb:en.tunni \"Tunni Language\") (name fb:en.maay \"Maay Language\") (name fb:m.02hxy8r \"Garre Language\") (name fb:en.dabarre \"Dabarre Language\") (name fb:en.jiiddu \"Jiiddu Language\"))) (type fb:language.human_language)\nWhich is bigger country Somalia or Kenya?\tDabarre Language\t-4.455\tformula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages \"Somali Language\") (name fb:en.mushungulu \"Mushungulu Language\") (name fb:en.boon_language \"Boon Language\") (name fb:en.tunni \"Tunni Language\") (name fb:en.maay \"Maay Language\") (name fb:m.02hxy8r \"Garre Language\") (name fb:en.dabarre \"Dabarre Language\") (name fb:en.jiiddu \"Jiiddu Language\"))) (type fb:language.human_language)\nWhich is bigger country Somalia or Kenya?\tJiiddu Language\t-4.455\tformula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages \"Somali Language\") (name fb:en.mushungulu \"Mushungulu Language\") (name fb:en.boon_language \"Boon Language\") (name fb:en.tunni \"Tunni Language\") (name fb:en.maay \"Maay Language\") (name fb:m.02hxy8r \"Garre Language\") (name fb:en.dabarre \"Dabarre Language\") (name fb:en.jiiddu \"Jiiddu Language\"))) (type fb:language.human_language)\nWhere did you get water in the 1800's?\tWheat beer\t-2.511\tformula (fb:food.dish.ingredients fb:en.cpd_c00001_h2o)) (value (list (name fb:en.mead Mead) (name fb:en.bagel Bagel) (name fb:en.lazarakia Lazarakia) (name fb:en.wheat_beer \"Wheat beer\") (name fb:en.chicken_soup \"Chicken soup\") (name fb:en.matzo Matzo) (name fb:en.court_bouillon Court-bouillon) (name fb:en.ice_pop \"Ice pop\") (name fb:en.ho_tteok Hotteok) (name fb:en.matzo_pancake \"Matzo Pancake\"))) (type fb:food.dish)\nWhere did you get water in the 1800's?\tChicken soup\t-2.511\tformula (fb:food.dish.ingredients fb:en.cpd_c00001_h2o)) (value (list (name fb:en.mead Mead) (name fb:en.bagel Bagel) (name fb:en.lazarakia Lazarakia) (name fb:en.wheat_beer \"Wheat beer\") (name fb:en.chicken_soup \"Chicken soup\") (name fb:en.matzo Matzo) (name fb:en.court_bouillon Court-bouillon) (name fb:en.ice_pop \"Ice pop\") (name fb:en.ho_tteok Hotteok) (name fb:en.matzo_pancake \"Matzo Pancake\"))) (type fb:food.dish)\nWhere did you get water in the 1800's?\tIce pop\t-2.511\tformula (fb:food.dish.ingredients fb:en.cpd_c00001_h2o)) (value (list (name fb:en.mead Mead) (name fb:en.bagel Bagel) (name fb:en.lazarakia Lazarakia) (name fb:en.wheat_beer \"Wheat beer\") (name fb:en.chicken_soup \"Chicken soup\") (name fb:en.matzo Matzo) (name fb:en.court_bouillon Court-bouillon) (name fb:en.ice_pop \"Ice pop\") (name fb:en.ho_tteok Hotteok) (name fb:en.matzo_pancake \"Matzo Pancake\"))) (type fb:food.dish)\nWhere did you get water in the 1800's?\tMatzo Pancake\t-2.511\tformula (fb:food.dish.ingredients fb:en.cpd_c00001_h2o)) (value (list (name fb:en.mead Mead) (name fb:en.bagel Bagel) (name fb:en.lazarakia Lazarakia) (name fb:en.wheat_beer \"Wheat beer\") (name fb:en.chicken_soup \"Chicken soup\") (name fb:en.matzo Matzo) (name fb:en.court_bouillon Court-bouillon) (name fb:en.ice_pop \"Ice pop\") (name fb:en.ho_tteok Hotteok) (name fb:en.matzo_pancake \"Matzo Pancake\"))) (type fb:food.dish)\nWhat is a 8 cylinder engine?\tPontiac 5.0L 8 Cylinder 305 FFS\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tFord 5.4L 8 cylinder\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tLincoln 4.9L 8 Cylinder FFS\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tFord 5.8L 8 Cylinder FFS\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tFord 4.9L 8 Cylinder FFS\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tMercury 4.9L 8 Cylinder FFS\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tFord 4.6L 8 cylinder 224hp 275 ft-lbs\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tBuick 5.0L 8 Cylinder GM-OLDS FFS\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tMercedes-Benz 5.0L 8 Cylinder Premium\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWhat is a 8 cylinder engine?\tMercedes-Benz 5.4L 8 Cylinder Premium\t5.071\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs \"Pontiac 5.0L 8 Cylinder 305 FFS\") (name fb:en.ford_5_4l_8_cylinder \"Ford 5.4L 8 cylinder\") (name fb:en.lincoln_4_9l_8_cylinder_ffs \"Lincoln 4.9L 8 Cylinder FFS\") (name fb:en.ford_5_8l_8_cylinder_ffs \"Ford 5.8L 8 Cylinder FFS\") (name fb:en.ford_4_9l_8_cylinder_ffs \"Ford 4.9L 8 Cylinder FFS\") (name fb:en.mercury_4_9l_8_cylinder_ffs \"Mercury 4.9L 8 Cylinder FFS\") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs \"Ford 4.6L 8 cylinder 224hp 275 ft-lbs\") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs \"Buick 5.0L 8 Cylinder GM-OLDS FFS\") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium \"Mercedes-Benz 5.0L 8 Cylinder Premium\") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium \"Mercedes-Benz 5.4L 8 Cylinder Premium\"))) (type fb:automotive.engine)\nWho does slavery effect slavery effected people?\tAnna Kingsley\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tRobert Drury\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tJohn Hemings\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tIsaac Jefferson\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tSally Hemings\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tJames Hemings\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tSarah Baartman\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tAyuba Suleiman Diallo\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tJames Wells\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWho does slavery effect slavery effected people?\tJohn Punch\t0.175\tformula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley \"Anna Kingsley\") (name fb:en.robert_drury_1687 \"Robert Drury\") (name fb:en.john_hemings \"John Hemings\") (name fb:en.isaac_jefferson \"Isaac Jefferson\") (name fb:en.sally_hemings \"Sally Hemings\") (name fb:en.james_hemings \"James Hemings\") (name fb:en.saartjie_baartman \"Sarah Baartman\") (name fb:en.ayuba_suleiman_diallo \"Ayuba Suleiman Diallo\") (name fb:m.09rth6f \"James Wells\") (name fb:m.0knvsyn \"John Punch\"))) (type fb:people.person)\nWhat is a DISS fitting?\tDave Eggers\t-2.337\tformula ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:m.027cdhk)) (value (list (name fb:en.dave_eggers \"Dave Eggers\"))) (type fb:award.award_winner)\nHow is mineral salts transported throughout the plant?\tDifferent minerals\t-2.397\tformula (!fb:common.topic.image fb:en.mineral)) (value (list (name fb:m.041vfhn \"Different minerals\") (name fb:m.02bghff \"An assortment of minerals. Photo from US Geological Survey\"))) (type fb:common.image)\nHow is mineral salts transported throughout the plant?\tAn assortment of minerals. Photo from US Geological Survey\t-2.397\tformula (!fb:common.topic.image fb:en.mineral)) (value (list (name fb:m.041vfhn \"Different minerals\") (name fb:m.02bghff \"An assortment of minerals. Photo from US Geological Survey\"))) (type fb:common.image)\nWhat is Belle's prince's name?\tBass guitar\t0.43\tformula (and (fb:type.object.type fb:common.topic) (!fb:music.group_member.instruments_played fb:en.prince_1958))) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.bass_guitar \"Bass guitar\") (name fb:en.synthesizer synthesizer) (name fb:en.keyboard_instrument Keyboard) (name fb:en.percussion_instrument Percussion) (name fb:en.drumset Drums) (name fb:en.keytar Keytar) (name fb:en.electric_guitar \"Electric guitar\") (name fb:en.drum Drum))) (type fb:music.instrument)\nWhat is Belle's prince's name?\tElectric guitar\t0.43\tformula (and (fb:type.object.type fb:common.topic) (!fb:music.group_member.instruments_played fb:en.prince_1958))) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.bass_guitar \"Bass guitar\") (name fb:en.synthesizer synthesizer) (name fb:en.keyboard_instrument Keyboard) (name fb:en.percussion_instrument Percussion) (name fb:en.drumset Drums) (name fb:en.keytar Keytar) (name fb:en.electric_guitar \"Electric guitar\") (name fb:en.drum Drum))) (type fb:music.instrument)\nWhat stds can you get from unprotected sex?\tAll the Way\t-1.945\tformula (and (fb:type.object.type fb:common.topic) (!fb:media_common.adaptation.adapted_from fb:en.sex_drive))) (value (list (name fb:m.0h5nyjm \"All the Way\"))) (type fb:media_common.adapted_work)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t2002 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t1998 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t1968 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t1971 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t1990 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t1974 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t2008 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t1966 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t1962 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhat is the current record for Denver Broncos consecutive home sellouts?\t2004 NFL season\t1.376\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season \"2002 NFL season\") (name fb:en.1998_nfl_season \"1998 NFL season\") (name fb:en.1968_nfl_season \"1968 NFL season\") (name fb:en.1971_nfl_season \"1971 NFL season\") (name fb:en.1990_nfl_season \"1990 NFL season\") (name fb:en.1974_nfl_season \"1974 NFL season\") (name fb:en.2008_nfl_season \"2008 NFL season\") (name fb:en.1966_nfl_season \"1966 NFL season\") (name fb:en.1962_nfl_season \"1962 NFL season\") (name fb:en.2004_nfl_season \"2004 NFL season\"))) (type fb:sports.sports_league_season)\nWhich museum in France use to be a railway station?\tBrasserie Artisanale du\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWhich museum in France use to be a railway station?\tL&L Alphand Ambr��e\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWhich museum in France use to be a railway station?\tFischer Adelscott\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWhich museum in France use to be a railway station?\tDuyck Jenlain Ambr��e\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWhich museum in France use to be a railway station?\tLa Choulette La Porte du Hainaut\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWhich museum in France use to be a railway station?\tCastelain Jade Bi��re Biologique\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWhich museum in France use to be a railway station?\tHaut Limousin La Gueule Noire du Limousin\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWhich museum in France use to be a railway station?\tHeineken Edelweiss\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWhich museum in France use to be a railway station?\tBrasserie de la Pigeonnelle Loirette\t-4.669\tformula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree \"Brasserie Artisanale du Tr��gor Dremmwel Dor��e\") (name fb:en.l_l_alphand_ambree \"L&L Alphand Ambr��e\") (name fb:en.fischer_adelscott \"Fischer Adelscott\") (name fb:en.duyck_jenlain_ambree \"Duyck Jenlain Ambr��e\") (name fb:en.la_choulette_la_porte_du_hainaut \"La Choulette La Porte du Hainaut\") (name fb:en.castelain_jade_biere_biologique \"Castelain Jade Bi��re Biologique\") (name fb:en.haut_limousin_la_gueule_noire_du_limousin \"Haut Limousin La Gueule Noire du Limousin\") (name fb:en.heineken_edelweiss \"Heineken Edelweiss\") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette \"Brasserie de la Pigeonnelle Loirette\"))) (type fb:food.beer)\nWho invented jet propulsion?\tEleanor F. Helin\t-4.004\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.jet_propulsion_laboratory))) (value (list (name fb:en.eleanor_f_helin \"Eleanor F. Helin\") (name fb:en.thomas_w_kenny \"Thomas W. Kenny\") (name fb:en.jack_parsons \"John Whiteside Parsons\") (name fb:en.james_l_adams \"James L. Adams\"))) (type fb:people.person)\nWho invented jet propulsion?\tThomas W. Kenny\t-4.004\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.jet_propulsion_laboratory))) (value (list (name fb:en.eleanor_f_helin \"Eleanor F. Helin\") (name fb:en.thomas_w_kenny \"Thomas W. Kenny\") (name fb:en.jack_parsons \"John Whiteside Parsons\") (name fb:en.james_l_adams \"James L. Adams\"))) (type fb:people.person)\nWho invented jet propulsion?\tJohn Whiteside Parsons\t-4.004\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.jet_propulsion_laboratory))) (value (list (name fb:en.eleanor_f_helin \"Eleanor F. Helin\") (name fb:en.thomas_w_kenny \"Thomas W. Kenny\") (name fb:en.jack_parsons \"John Whiteside Parsons\") (name fb:en.james_l_adams \"James L. Adams\"))) (type fb:people.person)\nWho invented jet propulsion?\tJames L. Adams\t-4.004\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.jet_propulsion_laboratory))) (value (list (name fb:en.eleanor_f_helin \"Eleanor F. Helin\") (name fb:en.thomas_w_kenny \"Thomas W. Kenny\") (name fb:en.jack_parsons \"John Whiteside Parsons\") (name fb:en.james_l_adams \"James L. Adams\"))) (type fb:people.person)\nWhat type of microbe is chicken pox?\tBaron Spreckle\t0.587\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism.organism_type fb:en.chicken))) (value (list (name fb:en.baron_spreckle \"Baron Spreckle\") (name fb:en.mike_the_headless_chicken \"Mike the Headless Chicken\") (name fb:m.04ygq5h Matilda))) (type fb:biology.organism)\nWhat type of microbe is chicken pox?\tMike the Headless Chicken\t0.587\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism.organism_type fb:en.chicken))) (value (list (name fb:en.baron_spreckle \"Baron Spreckle\") (name fb:en.mike_the_headless_chicken \"Mike the Headless Chicken\") (name fb:m.04ygq5h Matilda))) (type fb:biology.organism)\nHow do you frogs catch their food?\tFood & Drink\t-1.904\tformula (!fb:freebase.equivalent_topic.equivalent_domain fb:en.food_industry)) (value (list (name fb:m.011s \"Food & Drink\"))) (type fb:freebase.domain_profile)\nCointreau vs grand marnier?\tFelix M. Warburg House\t-7.059\tformula ((lambda x (fb:exhibitions.exhibition_venue.exhibitions_at_this_venue (fb:exhibitions.exhibition_run.sponsor (var x)))) fb:en.grand_marnier)) (value (list (name fb:m.0by0zd5 \"Felix M. Warburg House\"))) (type fb:exhibitions.exhibition_venue)\nHow old is Jamie Kennedy?\tEntertainment Weekly annotation index\t-1.292\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jamie_kennedy)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nHow old is Jamie Kennedy?\tBlissful Master Index\t-1.292\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jamie_kennedy)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nHow old is Jamie Kennedy?\tBlissful Celebrities\t-1.292\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jamie_kennedy)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat country gave Christopher Columbus money to buy his ships?\tRepublic of Genoa\t-1.188\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.christopher_columbus)))) (value (list (name fb:en.republic_of_genoa \"Republic of Genoa\"))) (type fb:location.country)\nWhat geographical features are in New Zealand?\tOverseas Chinese\t-0.228\tformula (and (fb:type.object.type fb:common.topic) (fb:people.ethnicity.geographic_distribution fb:en.new_zealand))) (value (list (name fb:en.overseas_chinese \"Overseas Chinese\") (name fb:m.02jvpv Kiwi) (name fb:en.maori \"M��ori people\") (name fb:en.filipino_people Filipino) (name fb:en.tongans \"Demographics of Tonga\") (name fb:en.romnichal Romanichal))) (type fb:people.ethnicity)\nWhat geographical features are in New Zealand?\tM��ori people\t-0.228\tformula (and (fb:type.object.type fb:common.topic) (fb:people.ethnicity.geographic_distribution fb:en.new_zealand))) (value (list (name fb:en.overseas_chinese \"Overseas Chinese\") (name fb:m.02jvpv Kiwi) (name fb:en.maori \"M��ori people\") (name fb:en.filipino_people Filipino) (name fb:en.tongans \"Demographics of Tonga\") (name fb:en.romnichal Romanichal))) (type fb:people.ethnicity)\nWhat geographical features are in New Zealand?\tDemographics of Tonga\t-0.228\tformula (and (fb:type.object.type fb:common.topic) (fb:people.ethnicity.geographic_distribution fb:en.new_zealand))) (value (list (name fb:en.overseas_chinese \"Overseas Chinese\") (name fb:m.02jvpv Kiwi) (name fb:en.maori \"M��ori people\") (name fb:en.filipino_people Filipino) (name fb:en.tongans \"Demographics of Tonga\") (name fb:en.romnichal Romanichal))) (type fb:people.ethnicity)\nHow many times did sergio oliva won mr Olympia?\tPacific Time Zone\t-5.08\tformula (!fb:location.location.time_zones fb:en.olympia_washington)) (value (list (name fb:en.pacific_time_zone \"Pacific Time Zone\"))) (type fb:time.time_zone)\nWho is called Daughter of peace?\tEntertainment Weekly annotation index\t-6.228\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:m.0988r5)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nWhat letters often come before T at the end of a word?\tHideaki Anno\t-5.563\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:en.the_end_of_evangelion))) (value (list (name fb:en.hideaki_anno \"Hideaki Anno\") (name fb:en.kazuya_tsurumaki \"Kazuya Tsurumaki\"))) (type fb:award.award_winner)\nWhat letters often come before T at the end of a word?\tKazuya Tsurumaki\t-5.563\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:en.the_end_of_evangelion))) (value (list (name fb:en.hideaki_anno \"Hideaki Anno\") (name fb:en.kazuya_tsurumaki \"Kazuya Tsurumaki\"))) (type fb:award.award_winner)\nWhen quantitative technique cannot be used?\tCanonical Version\t-2.411\tformula (!fb:common.topic.notable_types fb:m.0dxc8m3)) (value (list (name fb:music.single \"Canonical Version\") (name fb:music.recording \"Musical Recording\"))) (type fb:type.type)\nWhen quantitative technique cannot be used?\tMusical Recording\t-2.411\tformula (!fb:common.topic.notable_types fb:m.0dxc8m3)) (value (list (name fb:music.single \"Canonical Version\") (name fb:music.recording \"Musical Recording\"))) (type fb:type.type)\nWhat religion was missionary Jim Elliot?\tPlymouth Brethren\t1.939\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:religion.religion) (!fb:people.person.religion fb:en.jim_elliot)))) (value (list (name fb:en.baptist Baptists) (name fb:en.plymouth_brethren \"Plymouth Brethren\"))) (type fb:religion.religion)\nHow do you convince the school principal to start a earth club?\tUniversity of Minnesota\t1.206\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:organization.organization.phone_number (fb:common.phone_number.service_location (var x)))) fb:en.earth))) (value (list (name fb:en.university_of_minnesota \"University of Minnesota\") (name fb:en.university_of_mumbai \"University of Mumbai\"))) (type (union fb:education.educational_institution))\nHow do you convince the school principal to start a earth club?\tUniversity of Mumbai\t1.206\tformula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:organization.organization.phone_number (fb:common.phone_number.service_location (var x)))) fb:en.earth))) (value (list (name fb:en.university_of_minnesota \"University of Minnesota\") (name fb:en.university_of_mumbai \"University of Mumbai\"))) (type (union fb:education.educational_institution))\nCan you take benadryl if you took xanax 4 hours ago?\t4 Hours (original single mix)\t-2.304\tformula (fb:music.recording.canonical_version fb:en.4_hours)) (value (list (name fb:m.0tmrn6 \"4 Hours (original single mix)\") (name fb:m.012fftw \"4 Hours\") (name fb:m.0g1bbzt \"4 Hours\") (name fb:m.0drp6gb \"4 Hours (remixed)\"))) (type fb:music.recording)\nCan you take benadryl if you took xanax 4 hours ago?\t4 Hours\t-2.304\tformula (fb:music.recording.canonical_version fb:en.4_hours)) (value (list (name fb:m.0tmrn6 \"4 Hours (original single mix)\") (name fb:m.012fftw \"4 Hours\") (name fb:m.0g1bbzt \"4 Hours\") (name fb:m.0drp6gb \"4 Hours (remixed)\"))) (type fb:music.recording)\nCan you take benadryl if you took xanax 4 hours ago?\t4 Hours\t-2.304\tformula (fb:music.recording.canonical_version fb:en.4_hours)) (value (list (name fb:m.0tmrn6 \"4 Hours (original single mix)\") (name fb:m.012fftw \"4 Hours\") (name fb:m.0g1bbzt \"4 Hours\") (name fb:m.0drp6gb \"4 Hours (remixed)\"))) (type fb:music.recording)\nCan you take benadryl if you took xanax 4 hours ago?\t4 Hours (remixed)\t-2.304\tformula (fb:music.recording.canonical_version fb:en.4_hours)) (value (list (name fb:m.0tmrn6 \"4 Hours (original single mix)\") (name fb:m.012fftw \"4 Hours\") (name fb:m.0g1bbzt \"4 Hours\") (name fb:m.0drp6gb \"4 Hours (remixed)\"))) (type fb:music.recording)\nCan you build games on Roblox whithout Builders Club?\tFirst-person Shooter\t-0.201\tformula (fb:cvg.cvg_genre.games fb:en.roblox)) (value (list (name fb:en.first-person_shooter \"First-person Shooter\") (name fb:m.021bp2 \"Simulation video game\") (name fb:en.mmorpg \"Massively multiplayer online role-playing game\") (name fb:en.massively_multiplayer_online_game \"Massively multiplayer online game\"))) (type fb:cvg.cvg_genre)\nCan you build games on Roblox whithout Builders Club?\tSimulation video game\t-0.201\tformula (fb:cvg.cvg_genre.games fb:en.roblox)) (value (list (name fb:en.first-person_shooter \"First-person Shooter\") (name fb:m.021bp2 \"Simulation video game\") (name fb:en.mmorpg \"Massively multiplayer online role-playing game\") (name fb:en.massively_multiplayer_online_game \"Massively multiplayer online game\"))) (type fb:cvg.cvg_genre)\nCan you build games on Roblox whithout Builders Club?\tMassively multiplayer online role-playing game\t-0.201\tformula (fb:cvg.cvg_genre.games fb:en.roblox)) (value (list (name fb:en.first-person_shooter \"First-person Shooter\") (name fb:m.021bp2 \"Simulation video game\") (name fb:en.mmorpg \"Massively multiplayer online role-playing game\") (name fb:en.massively_multiplayer_online_game \"Massively multiplayer online game\"))) (type fb:cvg.cvg_genre)\nCan you build games on Roblox whithout Builders Club?\tMassively multiplayer online game\t-0.201\tformula (fb:cvg.cvg_genre.games fb:en.roblox)) (value (list (name fb:en.first-person_shooter \"First-person Shooter\") (name fb:m.021bp2 \"Simulation video game\") (name fb:en.mmorpg \"Massively multiplayer online role-playing game\") (name fb:en.massively_multiplayer_online_game \"Massively multiplayer online game\"))) (type fb:cvg.cvg_genre)\nWhat other movies is gerran howell in?\tEntertainment Weekly annotation index\t-8.414\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:m.03bxws2)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nWhen was John Steinbeck's first book published?\tThe grapes of wrath\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tEast of Eden.\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tThe wayward bus\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tThe grapes of wrath\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tOf mice and men\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tOf mice and men\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tThe grapes of wrath\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tThe grapes of wrath\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tOf mice and men\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhen was John Steinbeck's first book published?\tThe pearl\t2.738\tformula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 \"The grapes of wrath\") (name fb:m.04yq7g6 \"East of Eden.\") (name fb:m.04ttl7v \"The wayward bus\") (name fb:m.04v029f \"The grapes of wrath\") (name fb:m.059bg8x \"Of mice and men\") (name fb:m.04vxbln \"Of mice and men\") (name fb:m.04vkq1g \"The grapes of wrath\") (name fb:m.04v027d \"The grapes of wrath\") (name fb:m.059bg7_ \"Of mice and men\") (name fb:m.04v9tf3 \"The pearl\"))) (type fb:book.book_edition)\nWhat are facts about the Renaissance period?\tThe Pastoral Concert\t-0.582\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert \"The Pastoral Concert\") (name fb:en.st_michael_slaying_the_devil \"St Michael slaying the devil\") (name fb:m.0g5h2kh \"The Counterattack of Michelotto da Cotignola at the Battle of San Romano\") (name fb:en.portrait_of_prince_philip_of_spain \"Portrait of Prince Philip of Spain\") (name fb:en.madonna_of_the_steps \"Madonna of the Stairs\") (name fb:en.mona_lisa \"Mona Lisa\") (name fb:en.il_condottiero \"Il Condottiero\") (name fb:en.diana_and_callisto \"Diana and Callisto\"))) (type fb:visual_art.artwork)\nWhat are facts about the Renaissance period?\tSt Michael slaying the devil\t-0.582\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert \"The Pastoral Concert\") (name fb:en.st_michael_slaying_the_devil \"St Michael slaying the devil\") (name fb:m.0g5h2kh \"The Counterattack of Michelotto da Cotignola at the Battle of San Romano\") (name fb:en.portrait_of_prince_philip_of_spain \"Portrait of Prince Philip of Spain\") (name fb:en.madonna_of_the_steps \"Madonna of the Stairs\") (name fb:en.mona_lisa \"Mona Lisa\") (name fb:en.il_condottiero \"Il Condottiero\") (name fb:en.diana_and_callisto \"Diana and Callisto\"))) (type fb:visual_art.artwork)\nWhat are facts about the Renaissance period?\tThe Counterattack of Michelotto da Cotignola at the Battle of San Romano\t-0.582\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert \"The Pastoral Concert\") (name fb:en.st_michael_slaying_the_devil \"St Michael slaying the devil\") (name fb:m.0g5h2kh \"The Counterattack of Michelotto da Cotignola at the Battle of San Romano\") (name fb:en.portrait_of_prince_philip_of_spain \"Portrait of Prince Philip of Spain\") (name fb:en.madonna_of_the_steps \"Madonna of the Stairs\") (name fb:en.mona_lisa \"Mona Lisa\") (name fb:en.il_condottiero \"Il Condottiero\") (name fb:en.diana_and_callisto \"Diana and Callisto\"))) (type fb:visual_art.artwork)\nWhat are facts about the Renaissance period?\tPortrait of Prince Philip of Spain\t-0.582\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert \"The Pastoral Concert\") (name fb:en.st_michael_slaying_the_devil \"St Michael slaying the devil\") (name fb:m.0g5h2kh \"The Counterattack of Michelotto da Cotignola at the Battle of San Romano\") (name fb:en.portrait_of_prince_philip_of_spain \"Portrait of Prince Philip of Spain\") (name fb:en.madonna_of_the_steps \"Madonna of the Stairs\") (name fb:en.mona_lisa \"Mona Lisa\") (name fb:en.il_condottiero \"Il Condottiero\") (name fb:en.diana_and_callisto \"Diana and Callisto\"))) (type fb:visual_art.artwork)\nWhat are facts about the Renaissance period?\tMadonna of the Stairs\t-0.582\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert \"The Pastoral Concert\") (name fb:en.st_michael_slaying_the_devil \"St Michael slaying the devil\") (name fb:m.0g5h2kh \"The Counterattack of Michelotto da Cotignola at the Battle of San Romano\") (name fb:en.portrait_of_prince_philip_of_spain \"Portrait of Prince Philip of Spain\") (name fb:en.madonna_of_the_steps \"Madonna of the Stairs\") (name fb:en.mona_lisa \"Mona Lisa\") (name fb:en.il_condottiero \"Il Condottiero\") (name fb:en.diana_and_callisto \"Diana and Callisto\"))) (type fb:visual_art.artwork)\nWhat are facts about the Renaissance period?\tMona Lisa\t-0.582\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert \"The Pastoral Concert\") (name fb:en.st_michael_slaying_the_devil \"St Michael slaying the devil\") (name fb:m.0g5h2kh \"The Counterattack of Michelotto da Cotignola at the Battle of San Romano\") (name fb:en.portrait_of_prince_philip_of_spain \"Portrait of Prince Philip of Spain\") (name fb:en.madonna_of_the_steps \"Madonna of the Stairs\") (name fb:en.mona_lisa \"Mona Lisa\") (name fb:en.il_condottiero \"Il Condottiero\") (name fb:en.diana_and_callisto \"Diana and Callisto\"))) (type fb:visual_art.artwork)\nWhat are facts about the Renaissance period?\tIl Condottiero\t-0.582\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert \"The Pastoral Concert\") (name fb:en.st_michael_slaying_the_devil \"St Michael slaying the devil\") (name fb:m.0g5h2kh \"The Counterattack of Michelotto da Cotignola at the Battle of San Romano\") (name fb:en.portrait_of_prince_philip_of_spain \"Portrait of Prince Philip of Spain\") (name fb:en.madonna_of_the_steps \"Madonna of the Stairs\") (name fb:en.mona_lisa \"Mona Lisa\") (name fb:en.il_condottiero \"Il Condottiero\") (name fb:en.diana_and_callisto \"Diana and Callisto\"))) (type fb:visual_art.artwork)\nWhat are facts about the Renaissance period?\tDiana and Callisto\t-0.582\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert \"The Pastoral Concert\") (name fb:en.st_michael_slaying_the_devil \"St Michael slaying the devil\") (name fb:m.0g5h2kh \"The Counterattack of Michelotto da Cotignola at the Battle of San Romano\") (name fb:en.portrait_of_prince_philip_of_spain \"Portrait of Prince Philip of Spain\") (name fb:en.madonna_of_the_steps \"Madonna of the Stairs\") (name fb:en.mona_lisa \"Mona Lisa\") (name fb:en.il_condottiero \"Il Condottiero\") (name fb:en.diana_and_callisto \"Diana and Callisto\"))) (type fb:visual_art.artwork)\nShould people lose their jobs to help the environment?\tPiante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nShould people lose their jobs to help the environment?\tThe Skeptical Environmentalist: Measuring the Real State of the World\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nShould people lose their jobs to help the environment?\tNuclear Snow in Japanese Springtime An Editorial Poem-Commentary\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nShould people lose their jobs to help the environment?\tLean Logic\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nShould people lose their jobs to help the environment?\tThe Ecological Indian: Myth and History\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nShould people lose their jobs to help the environment?\tRoad Rage\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nShould people lose their jobs to help the environment?\tOne With Nineveh: Politics, Consumption, and the Human Future\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nShould people lose their jobs to help the environment?\tHard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nShould people lose their jobs to help the environment?\tNo Ordinary Land: Encounters in a Changing Environment\t-7.391\tformula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl \"Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli\") (name fb:en.the_skeptical_environmentalist \"The Skeptical Environmentalist: Measuring the Real State of the World\") (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\") (name fb:m.0h0t3qx \"Lean Logic\") (name fb:en.the_ecological_indian_myth_and_history \"The Ecological Indian: Myth and History\") (name fb:m.0d9q8y \"Road Rage\") (name fb:m.062ndsk \"One With Nineveh: Politics, Consumption, and the Human Future\") (name fb:m.06s_jzz \"Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto\") (name fb:m.06y_c2f \"No Ordinary Land: Encounters in a Changing Environment\"))) (type fb:book.written_work)\nWho was the person who invented Taco Bell?\tRichard Goodman\t0.161\tformula (and (fb:type.object.type fb:people.person) (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.taco_bell)))) (value (list (name fb:m.03wqwjp \"Richard Goodman\") (name fb:en.glen_bell \"Glen Bell\"))) (type fb:people.person)\nWho was the person who invented Taco Bell?\tGlen Bell\t0.161\tformula (and (fb:type.object.type fb:people.person) (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.taco_bell)))) (value (list (name fb:m.03wqwjp \"Richard Goodman\") (name fb:en.glen_bell \"Glen Bell\"))) (type fb:people.person)\nWhat type of rock comprises the ocean floor?\tMetamorphic rock\t-0.337\tformula (and (fb:type.object.type fb:common.topic) (fb:geology.rock_type.parent_rock_type fb:m.01cbzq))) (value (list (name fb:en.metamorphic_rock \"Metamorphic rock\") (name fb:en.igneous_rock \"Igneous rock\") (name fb:en.sedimentary_rock \"Sedimentary rock\"))) (type fb:geology.rock_type)\nWhat type of rock comprises the ocean floor?\tIgneous rock\t-0.337\tformula (and (fb:type.object.type fb:common.topic) (fb:geology.rock_type.parent_rock_type fb:m.01cbzq))) (value (list (name fb:en.metamorphic_rock \"Metamorphic rock\") (name fb:en.igneous_rock \"Igneous rock\") (name fb:en.sedimentary_rock \"Sedimentary rock\"))) (type fb:geology.rock_type)\nWhat type of rock comprises the ocean floor?\tSedimentary rock\t-0.337\tformula (and (fb:type.object.type fb:common.topic) (fb:geology.rock_type.parent_rock_type fb:m.01cbzq))) (value (list (name fb:en.metamorphic_rock \"Metamorphic rock\") (name fb:en.igneous_rock \"Igneous rock\") (name fb:en.sedimentary_rock \"Sedimentary rock\"))) (type fb:geology.rock_type)\nWhat religon did John Locke believe in?\tEdmund Burke\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tThomas Jefferson\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tArthur Schopenhauer\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tAdam Smith\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tAyn Rand\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tImmanuel Kant\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tBertrand Russell\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tJohn Rawls\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tJohn Dewey\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat religon did John Locke believe in?\tDavid Hume\t-3.274\tformula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke \"Edmund Burke\") (name fb:en.thomas_jefferson \"Thomas Jefferson\") (name fb:en.arthur_schopenhauer \"Arthur Schopenhauer\") (name fb:en.adam_smith \"Adam Smith\") (name fb:en.ayn_rand \"Ayn Rand\") (name fb:en.immanuel_kant \"Immanuel Kant\") (name fb:en.bertrand_russell \"Bertrand Russell\") (name fb:en.john_rawls \"John Rawls\") (name fb:en.john_dewey \"John Dewey\") (name fb:en.david_hume \"David Hume\"))) (type fb:influence.influence_node)\nWhat are the periods of the mesozoic era oldest to most recent?\tThe Day of the Dinosaur\t-0.303\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:en.mesozoic))) (value (list (name fb:en.the_day_of_the_dinosaur \"The Day of the Dinosaur\") (name fb:m.04t15hp \"End of an Era\"))) (type fb:book.written_work)\nWhat are the periods of the mesozoic era oldest to most recent?\tEnd of an Era\t-0.303\tformula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:en.mesozoic))) (value (list (name fb:en.the_day_of_the_dinosaur \"The Day of the Dinosaur\") (name fb:m.04t15hp \"End of an Era\"))) (type fb:book.written_work)\nIsn't sucking a girl's vagina disgusting?\tWedge of Chastity\t-3.082\tformula (fb:visual_art.artwork.art_subject fb:en.vagina)) (value (list (name fb:en.wedge_of_chastity \"Wedge of Chastity\"))) (type fb:visual_art.artwork)\nWhat is on the back of a British Penny?\tDave Eggers\t-4.09\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:m.027cdhk)) (value (list (name fb:en.dave_eggers \"Dave Eggers\"))) (type fb:award.award_winner)\nHow did medieval people think you caught the black death?\tTeddy Pendergrass\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nHow did medieval people think you caught the black death?\tStacey Dash\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nHow did medieval people think you caught the black death?\tDwayne W.Tyree\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nHow did medieval people think you caught the black death?\tRemy Mars\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nHow did medieval people think you caught the black death?\tAron Ridge\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nHow did medieval people think you caught the black death?\tShilpa Shetty\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nHow did medieval people think you caught the black death?\tRandy Cochran\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nHow did medieval people think you caught the black death?\tMaurice Jamal\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nHow did medieval people think you caught the black death?\tHortense Ellis\t-2.017\tformula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass \"Teddy Pendergrass\") (name fb:en.stacey_dash \"Stacey Dash\") (name fb:en.dwayne_tyree \"Dwayne W.Tyree\") (name fb:en.remy_mars \"Remy Mars\") (name fb:en.aron_ridge \"Aron Ridge\") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty \"Shilpa Shetty\") (name fb:en.randy_cochran \"Randy Cochran\") (name fb:en.maurice_jamal \"Maurice Jamal\") (name fb:en.hortense_ellis \"Hortense Ellis\"))) (type fb:people.person)\nWhat state is lake superior located?\tUnited States of America\t1.311\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.administrative_division) (!fb:location.location.containedby fb:en.superior)))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.wisconsin Wisconsin) (name fb:en.douglas_county_wisconsin \"Douglas County\"))) (type fb:location.administrative_division)\nWhat state is lake superior located?\tDouglas County\t1.311\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.administrative_division) (!fb:location.location.containedby fb:en.superior)))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.wisconsin Wisconsin) (name fb:en.douglas_county_wisconsin \"Douglas County\"))) (type fb:location.administrative_division)\nWho was Joseph lowery?\tEvelyn G. Lowery\t-6.984\tformula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.joseph_lowery))) (value (list (name fb:en.evelyn_g_lowery \"Evelyn G. Lowery\"))) (type fb:people.person)\nWho invented black history month?\tEdward J. Laurent\t-2.62\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.education (fb:education.education.minor (var x)))) fb:en.history))) (value (list (name fb:en.edward_j_laurent \"Edward J. Laurent\") (name fb:en.mark_deklin \"Mark Deklin\") (name fb:en.lloyd_e_scott \"Lloyd E. Scott\"))) (type fb:people.person)\nWho invented black history month?\tMark Deklin\t-2.62\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.education (fb:education.education.minor (var x)))) fb:en.history))) (value (list (name fb:en.edward_j_laurent \"Edward J. Laurent\") (name fb:en.mark_deklin \"Mark Deklin\") (name fb:en.lloyd_e_scott \"Lloyd E. Scott\"))) (type fb:people.person)\nWho invented black history month?\tLloyd E. Scott\t-2.62\tformula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.education (fb:education.education.minor (var x)))) fb:en.history))) (value (list (name fb:en.edward_j_laurent \"Edward J. Laurent\") (name fb:en.mark_deklin \"Mark Deklin\") (name fb:en.lloyd_e_scott \"Lloyd E. Scott\"))) (type fb:people.person)\nDoes Walmart have in Distribution Centers in Louisiana?\tLouisiana Creole people\t-2.038\tformula (fb:people.ethnicity.geographic_distribution fb:en.louisiana)) (value (list (name fb:en.cajun Cajun) (name fb:en.louisiana_creole_people \"Louisiana Creole people\"))) (type fb:people.ethnicity)\nWhat was the first written agreement of self government in America?\tGeorge C. Edwards III\t-5.202\tformula (and (fb:type.object.type fb:common.topic) (fb:book.author.works_written fb:m.06d3v62))) (value (list (name fb:en.george_c_edwards_iii \"George C. Edwards III\"))) (type fb:book.author)\nGive me a summary of tangerine middle's major sinkhole?\tTangerine 0.05 injectable solution\t0.651\tformula ((lambda x (fb:medicine.drug_formulation.strength (fb:medicine.drug_strength.active_ingredient (var x)))) fb:en.tangerine)) (value (list (name fb:m.0hqtmhk \"Tangerine 0.05 injectable solution\") (name fb:m.0hqrc_t \"Tangerine 0.1 injectable solution\"))) (type fb:medicine.drug_formulation)\nGive me a summary of tangerine middle's major sinkhole?\tTangerine 0.1 injectable solution\t0.651\tformula ((lambda x (fb:medicine.drug_formulation.strength (fb:medicine.drug_strength.active_ingredient (var x)))) fb:en.tangerine)) (value (list (name fb:m.0hqtmhk \"Tangerine 0.05 injectable solution\") (name fb:m.0hqrc_t \"Tangerine 0.1 injectable solution\"))) (type fb:medicine.drug_formulation)\nHow is an indirect tax different from a direct tax?\tLibrary of Congress Classification\t0.194\tformula (!fb:user.tsegaran.random.taxonomy_entry.taxonomy (and (!fb:user.tsegaran.random.taxonomy_subject.entry fb:en.tax) (!fb:user.tsegaran.random.taxonomy_subject.entry fb:en.tax)))) (value (list (name fb:en.library_of_congress_classification \"Library of Congress Classification\"))) (type fb:user.tsegaran.random.subject_taxonomy)\nWhat simile does the author use to describe judge Taylor?\tJudith Sheindlin\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tD'Army Bailey\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tGeorge J. Mitchell\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tWilliam Gummow\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tHarry Blackmun\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tRonald Wilson\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tGlenda Hatchett\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tPenny Brown Reynolds\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tJerry Sheindlin\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat simile does the author use to describe judge Taylor?\tKen Del Vecchio\t-1.136\tformula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin \"Judith Sheindlin\") (name fb:en.darmy_bailey \"D'Army Bailey\") (name fb:en.george_j_mitchell \"George J. Mitchell\") (name fb:en.william_gummow \"William Gummow\") (name fb:en.harry_blackmun \"Harry Blackmun\") (name fb:en.ronald_wilson \"Ronald Wilson\") (name fb:en.glenda_hatchett \"Glenda Hatchett\") (name fb:m.0m0dtdy \"Penny Brown Reynolds\") (name fb:en.jerry_sheindlin \"Jerry Sheindlin\") (name fb:en.kenneth_del_vecchio \"Ken Del Vecchio\"))) (type fb:people.person)\nWhat is the strongest Nsaid's drug for muscle and joint pain?\tHugh Huxley\t-1.264\tformula (and (fb:type.object.type fb:common.topic) (fb:user.lindenb.default_domain.scientist.known_for fb:en.muscle))) (value (list (name fb:en.hugh_huxley \"Hugh Huxley\"))) (type fb:user.lindenb.default_domain.scientist)\nWhere does Justin Bieber like to hang out?\tUnited States of America\t-8.211\tformula (and (fb:type.object.type fb:location.location) (!fb:music.release.region fb:m.0g3mr7n))) (value (list (name fb:en.united_states_of_america \"United States of America\"))) (type fb:location.location)\nWhat KIND OF work is Jackie Jackson doing now?\tJohnny Cash\t-0.828\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:m.0bwhdy))) (value (list (name fb:en.johnny_cash \"Johnny Cash\") (name fb:en.june_carter_cash \"June Carter Cash\"))) (type fb:award.award_winner)\nWhat KIND OF work is Jackie Jackson doing now?\tJune Carter Cash\t-0.828\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:m.0bwhdy))) (value (list (name fb:en.johnny_cash \"Johnny Cash\") (name fb:en.june_carter_cash \"June Carter Cash\"))) (type fb:award.award_winner)\nWhy do people move to Texas?\tNic Endo\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhy do people move to Texas?\tWayne Hancock\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhy do people move to Texas?\tGlynn R. Donaho\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhy do people move to Texas?\tGeorge Fix\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhy do people move to Texas?\tPeter Roussel\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhy do people move to Texas?\tNan Ryan\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhy do people move to Texas?\tLisa Kleypas\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhy do people move to Texas?\tCameron Fox\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhy do people move to Texas?\tGrady Booch\t-3.93\tformula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo \"Nic Endo\") (name fb:en.wayne_hancock \"Wayne Hancock\") (name fb:en.glynn_r_donaho \"Glynn R. Donaho\") (name fb:en.george_fix \"George Fix\") (name fb:en.peter_roussel \"Peter Roussel\") (name fb:en.nan_ryan \"Nan Ryan\") (name fb:en.lisa_kleypas \"Lisa Kleypas\") (name fb:en.cameron_fox \"Cameron Fox\") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch \"Grady Booch\"))) (type fb:people.person)\nWhat year did Atlanta host the summer olympic games?\t1996 Summer Olympics\t-0.422\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:olympics.olympic_games) (!fb:olympics.olympic_host_city.olympics_hosted fb:en.atlanta)))) (value (list (name fb:en.1996_summer_olympics \"1996 Summer Olympics\"))) (type fb:olympics.olympic_games)\nDid Bill Clinton endorse Al Gore for president?\tAl Gore\t-1.8\tformula (!fb:government.us_president.vice_president fb:en.bill_clinton)) (value (list (name fb:en.jr_albert \"Al Gore\"))) (type fb:government.us_vice_president)\nHow did the New York Colony start?\tR/V Atlantis (AGOR-25), Cruise AT2-02, 1997-05-16 to 1997-05-18\t0.754\tformula (fb:base.oceanography.research_cruise.start_port fb:en.new_york_state)) (value (list (name fb:m.0h6nj6r \"R/V Atlantis (AGOR-25), Cruise AT2-02, 1997-05-16 to 1997-05-18\") (name fb:m.0h6fqhn \"R/V Atlantis II, Cruise AII112-33, 1985-11-03 to 1985-11-04\") (name fb:m.0h6fv20 \"R/V Bear, Cruise 108C, 1954-10-16 to 1954-10-16\"))) (type fb:base.oceanography.research_cruise)\nHow did the New York Colony start?\tR/V Atlantis II, Cruise AII112-33, 1985-11-03 to 1985-11-04\t0.754\tformula (fb:base.oceanography.research_cruise.start_port fb:en.new_york_state)) (value (list (name fb:m.0h6nj6r \"R/V Atlantis (AGOR-25), Cruise AT2-02, 1997-05-16 to 1997-05-18\") (name fb:m.0h6fqhn \"R/V Atlantis II, Cruise AII112-33, 1985-11-03 to 1985-11-04\") (name fb:m.0h6fv20 \"R/V Bear, Cruise 108C, 1954-10-16 to 1954-10-16\"))) (type fb:base.oceanography.research_cruise)\nHow did the New York Colony start?\tR/V Bear, Cruise 108C, 1954-10-16 to 1954-10-16\t0.754\tformula (fb:base.oceanography.research_cruise.start_port fb:en.new_york_state)) (value (list (name fb:m.0h6nj6r \"R/V Atlantis (AGOR-25), Cruise AT2-02, 1997-05-16 to 1997-05-18\") (name fb:m.0h6fqhn \"R/V Atlantis II, Cruise AII112-33, 1985-11-03 to 1985-11-04\") (name fb:m.0h6fv20 \"R/V Bear, Cruise 108C, 1954-10-16 to 1954-10-16\"))) (type fb:base.oceanography.research_cruise)\nWhat are the major rivers in Alabama?\tComcast/Charter Sports Southeast\t-0.979\tformula (and (fb:type.object.type fb:common.topic) (fb:tv.tv_network.areas_served fb:en.alabama))) (value (list (name fb:en.sportsouth SportSouth) (name fb:en.comcast_sports_southeast_charter_sports_southeast \"Comcast/Charter Sports Southeast\") (name fb:en.fsn_florida \"Fox Sports Florida\"))) (type fb:tv.tv_network)\nWhat are the major rivers in Alabama?\tFox Sports Florida\t-0.979\tformula (and (fb:type.object.type fb:common.topic) (fb:tv.tv_network.areas_served fb:en.alabama))) (value (list (name fb:en.sportsouth SportSouth) (name fb:en.comcast_sports_southeast_charter_sports_southeast \"Comcast/Charter Sports Southeast\") (name fb:en.fsn_florida \"Fox Sports Florida\"))) (type fb:tv.tv_network)\nCan you pop a zit on your penis?\tNon-human penises Iceland Phallological Museum\t-1.221\tformula (fb:common.image.appears_in_topic_gallery fb:en.penis)) (value (list (name fb:m.0fsq0_9 \"Non-human penises Iceland Phallological Museum\") (name fb:m.04sndc8 \"Labelled bw flaccid penis\") (name fb:m.0bcr7hd \"Labelled flaccid penis\"))) (type fb:common.image)\nCan you pop a zit on your penis?\tLabelled bw flaccid penis\t-1.221\tformula (fb:common.image.appears_in_topic_gallery fb:en.penis)) (value (list (name fb:m.0fsq0_9 \"Non-human penises Iceland Phallological Museum\") (name fb:m.04sndc8 \"Labelled bw flaccid penis\") (name fb:m.0bcr7hd \"Labelled flaccid penis\"))) (type fb:common.image)\nCan you pop a zit on your penis?\tLabelled flaccid penis\t-1.221\tformula (fb:common.image.appears_in_topic_gallery fb:en.penis)) (value (list (name fb:m.0fsq0_9 \"Non-human penises Iceland Phallological Museum\") (name fb:m.04sndc8 \"Labelled bw flaccid penis\") (name fb:m.0bcr7hd \"Labelled flaccid penis\"))) (type fb:common.image)\nWhat was the horse and buggy era like?\tThe Tower of Blue Horses\t-3.145\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses \"The Tower of Blue Horses\") (name fb:en.the_little_blue_horse \"The Little Blue Horse\") (name fb:m.0448ldw \"Running Horse\") (name fb:en.equine_pleasures \"Equine Pleasures\") (name fb:m.0b_bmqv \"Automedon with the Horses of Achilles\") (name fb:en.mare_colt \"Mare & Colt\") (name fb:en.standing_horse \"Standing Horse\"))) (type fb:visual_art.artwork)\nWhat was the horse and buggy era like?\tThe Little Blue Horse\t-3.145\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses \"The Tower of Blue Horses\") (name fb:en.the_little_blue_horse \"The Little Blue Horse\") (name fb:m.0448ldw \"Running Horse\") (name fb:en.equine_pleasures \"Equine Pleasures\") (name fb:m.0b_bmqv \"Automedon with the Horses of Achilles\") (name fb:en.mare_colt \"Mare & Colt\") (name fb:en.standing_horse \"Standing Horse\"))) (type fb:visual_art.artwork)\nWhat was the horse and buggy era like?\tRunning Horse\t-3.145\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses \"The Tower of Blue Horses\") (name fb:en.the_little_blue_horse \"The Little Blue Horse\") (name fb:m.0448ldw \"Running Horse\") (name fb:en.equine_pleasures \"Equine Pleasures\") (name fb:m.0b_bmqv \"Automedon with the Horses of Achilles\") (name fb:en.mare_colt \"Mare & Colt\") (name fb:en.standing_horse \"Standing Horse\"))) (type fb:visual_art.artwork)\nWhat was the horse and buggy era like?\tEquine Pleasures\t-3.145\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses \"The Tower of Blue Horses\") (name fb:en.the_little_blue_horse \"The Little Blue Horse\") (name fb:m.0448ldw \"Running Horse\") (name fb:en.equine_pleasures \"Equine Pleasures\") (name fb:m.0b_bmqv \"Automedon with the Horses of Achilles\") (name fb:en.mare_colt \"Mare & Colt\") (name fb:en.standing_horse \"Standing Horse\"))) (type fb:visual_art.artwork)\nWhat was the horse and buggy era like?\tAutomedon with the Horses of Achilles\t-3.145\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses \"The Tower of Blue Horses\") (name fb:en.the_little_blue_horse \"The Little Blue Horse\") (name fb:m.0448ldw \"Running Horse\") (name fb:en.equine_pleasures \"Equine Pleasures\") (name fb:m.0b_bmqv \"Automedon with the Horses of Achilles\") (name fb:en.mare_colt \"Mare & Colt\") (name fb:en.standing_horse \"Standing Horse\"))) (type fb:visual_art.artwork)\nWhat was the horse and buggy era like?\tMare & Colt\t-3.145\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses \"The Tower of Blue Horses\") (name fb:en.the_little_blue_horse \"The Little Blue Horse\") (name fb:m.0448ldw \"Running Horse\") (name fb:en.equine_pleasures \"Equine Pleasures\") (name fb:m.0b_bmqv \"Automedon with the Horses of Achilles\") (name fb:en.mare_colt \"Mare & Colt\") (name fb:en.standing_horse \"Standing Horse\"))) (type fb:visual_art.artwork)\nWhat was the horse and buggy era like?\tStanding Horse\t-3.145\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses \"The Tower of Blue Horses\") (name fb:en.the_little_blue_horse \"The Little Blue Horse\") (name fb:m.0448ldw \"Running Horse\") (name fb:en.equine_pleasures \"Equine Pleasures\") (name fb:m.0b_bmqv \"Automedon with the Horses of Achilles\") (name fb:en.mare_colt \"Mare & Colt\") (name fb:en.standing_horse \"Standing Horse\"))) (type fb:visual_art.artwork)\nWhy is fat albert gay?\tEntertainment Weekly annotation index\t-4.22\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.gay)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhy is fat albert gay?\tWSJ Speakeasy Index\t-4.22\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.gay)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhy is fat albert gay?\tBlissful Master Index\t-4.22\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.gay)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhy is fat albert gay?\tBlissful Celebrities\t-4.22\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.gay)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nPoem on environment in Hindi language?\tNuclear Snow in Japanese Springtime An Editorial Poem-Commentary\t-3.189\tformula (and (fb:type.object.type fb:book.poem) (!fb:book.book_subject.works fb:en.environment))) (value (list (name fb:m.0ghgg2v \"Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary\"))) (type (union fb:book.poem))\nWhere are the best paid bricklaying jobs in Australia?\tNew Zealand\t-3.716\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.australia))) (value (list (name fb:en.indonesia Indonesia) (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.east_timor Timor-Leste) (name fb:en.new_caledonia \"New Caledonia\") (name fb:en.solomon_islands \"Solomon Islands\"))) (type fb:location.location)\nWhere are the best paid bricklaying jobs in Australia?\tPapua New Guinea\t-3.716\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.australia))) (value (list (name fb:en.indonesia Indonesia) (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.east_timor Timor-Leste) (name fb:en.new_caledonia \"New Caledonia\") (name fb:en.solomon_islands \"Solomon Islands\"))) (type fb:location.location)\nWhere are the best paid bricklaying jobs in Australia?\tNew Caledonia\t-3.716\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.australia))) (value (list (name fb:en.indonesia Indonesia) (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.east_timor Timor-Leste) (name fb:en.new_caledonia \"New Caledonia\") (name fb:en.solomon_islands \"Solomon Islands\"))) (type fb:location.location)\nWhere are the best paid bricklaying jobs in Australia?\tSolomon Islands\t-3.716\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.australia))) (value (list (name fb:en.indonesia Indonesia) (name fb:en.new_zealand \"New Zealand\") (name fb:en.vanuatu Vanuatu) (name fb:en.papua_new_guinea \"Papua New Guinea\") (name fb:en.east_timor Timor-Leste) (name fb:en.new_caledonia \"New Caledonia\") (name fb:en.solomon_islands \"Solomon Islands\"))) (type fb:location.location)\nDoes WWE star Ricaord Rodriguez have a girlfriend?\tPleiades large\t-4.598\tformula (fb:common.image.appears_in_topic_gallery fb:en.star)) (value (list (name fb:m.02bh5b5 \"Pleiades large\") (name fb:m.042qv6v \"123107main image feature 371 ys 4\") (name fb:m.07ksw8_ \"Dibuix de Leo\"))) (type fb:common.image)\nDoes WWE star Ricaord Rodriguez have a girlfriend?\t123107main image feature 371 ys 4\t-4.598\tformula (fb:common.image.appears_in_topic_gallery fb:en.star)) (value (list (name fb:m.02bh5b5 \"Pleiades large\") (name fb:m.042qv6v \"123107main image feature 371 ys 4\") (name fb:m.07ksw8_ \"Dibuix de Leo\"))) (type fb:common.image)\nDoes WWE star Ricaord Rodriguez have a girlfriend?\tDibuix de Leo\t-4.598\tformula (fb:common.image.appears_in_topic_gallery fb:en.star)) (value (list (name fb:m.02bh5b5 \"Pleiades large\") (name fb:m.042qv6v \"123107main image feature 371 ys 4\") (name fb:m.07ksw8_ \"Dibuix de Leo\"))) (type fb:common.image)\nCan a school id give you cancer?\tAlbert Sabin\t-1.621\tformula (!fb:education.field_of_study.academics_in_this_field fb:en.cancer)) (value (list (name fb:en.albert_sabin \"Albert Sabin\"))) (type fb:education.academic)\nWhere is the flasher location on a 1991 Acura Legend?\tUnited States of America\t1.376\tformula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:common.phone_number.service_location (!fb:organization.organization.phone_number (var x)))) fb:en.acura))) (value (list (name fb:en.united_states_of_america \"United States of America\") (name fb:en.canada Canada))) (type fb:location.location)\nWhat is Ghana's vegetation?\tUnited States dollar\t-3.2\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:location.statistical_region.foreign_direct_investment_net_inflows (var x)))) fb:en.ghana))) (value (list (name fb:en.us \"United States dollar\"))) (type fb:finance.currency)\nWhen did Taylor Lautner start karate lessons?\tBoy on Beach\t-2.937\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.taylor_lautner)) (value (list (name fb:m.0gwrlzt Oliver) (name fb:en.boy_on_beach \"Boy on Beach\") (name fb:m.0gwrly3 Aaron) (name fb:m.0gwrlzf \"Young Blood\") (name fb:en.jack_spivey \"Jack Spivey\") (name fb:en.reggie_wasserstein \"Reggie Wasserstein\") (name fb:m.0gwrlyp Tyrone) (name fb:m.0gwrlz1 Dennis))) (type fb:tv.tv_character)\nWhen did Taylor Lautner start karate lessons?\tYoung Blood\t-2.937\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.taylor_lautner)) (value (list (name fb:m.0gwrlzt Oliver) (name fb:en.boy_on_beach \"Boy on Beach\") (name fb:m.0gwrly3 Aaron) (name fb:m.0gwrlzf \"Young Blood\") (name fb:en.jack_spivey \"Jack Spivey\") (name fb:en.reggie_wasserstein \"Reggie Wasserstein\") (name fb:m.0gwrlyp Tyrone) (name fb:m.0gwrlz1 Dennis))) (type fb:tv.tv_character)\nWhen did Taylor Lautner start karate lessons?\tJack Spivey\t-2.937\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.taylor_lautner)) (value (list (name fb:m.0gwrlzt Oliver) (name fb:en.boy_on_beach \"Boy on Beach\") (name fb:m.0gwrly3 Aaron) (name fb:m.0gwrlzf \"Young Blood\") (name fb:en.jack_spivey \"Jack Spivey\") (name fb:en.reggie_wasserstein \"Reggie Wasserstein\") (name fb:m.0gwrlyp Tyrone) (name fb:m.0gwrlz1 Dennis))) (type fb:tv.tv_character)\nWhen did Taylor Lautner start karate lessons?\tReggie Wasserstein\t-2.937\tformula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.taylor_lautner)) (value (list (name fb:m.0gwrlzt Oliver) (name fb:en.boy_on_beach \"Boy on Beach\") (name fb:m.0gwrly3 Aaron) (name fb:m.0gwrlzf \"Young Blood\") (name fb:en.jack_spivey \"Jack Spivey\") (name fb:en.reggie_wasserstein \"Reggie Wasserstein\") (name fb:m.0gwrlyp Tyrone) (name fb:m.0gwrlz1 Dennis))) (type fb:tv.tv_character)\nHow can a student be more organized?\tEntertainment Weekly annotation index\t-2.301\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.organized_crime)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nWhere do you put an apostrophe In I would?\tGreen Craig's\t-1.98\tformula (!fb:common.topic.image fb:en.apostrophe)) (value (list (name fb:m.052q565 \"Green Craig's\") (name fb:m.03t4l17 \"The apostrophe at its worst\"))) (type fb:common.image)\nWhere do you put an apostrophe In I would?\tThe apostrophe at its worst\t-1.98\tformula (!fb:common.topic.image fb:en.apostrophe)) (value (list (name fb:m.052q565 \"Green Craig's\") (name fb:m.03t4l17 \"The apostrophe at its worst\"))) (type fb:common.image)\nHow many Oscars has John Williams won?\tOutstanding Original Main Title Theme Music\t0.138\tformula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.john_willams)) (value (list (string Composer) (string \"Outstanding Original Main Title Theme Music\") (string \"Best Pop Instrumental Recording\"))) (type fb:type.text)\nHow many Oscars has John Williams won?\tBest Pop Instrumental Recording\t0.138\tformula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.john_willams)) (value (list (string Composer) (string \"Outstanding Original Main Title Theme Music\") (string \"Best Pop Instrumental Recording\"))) (type fb:type.text)\nWhat is the legal age a child can be left home?\tA Woman Peeling Apples\t-2.627\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.art_subject fb:en.child))) (value (list (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nWhat countries did sir Francis Drake discover?\tKingdom of England\t2.013\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.francis_drake)))) (value (list (name fb:en.england England) (name fb:en.kingdom_of_england \"Kingdom of England\"))) (type fb:location.country)\nHow do wheat disperse seeds?\tIdentification of Wheat\t-2.448\tformula ((lambda x (fb:biology.plant_disease_documentation.plant_disease_documentation (fb:biology.plant_disease_triangle.host (var x)))) fb:en.wheat)) (value (list (name fb:m.0cgl2y2 \"Identification of Wheat���Dasypyrum breviaristatum addition lines with stripe rust resistance using C-banding and genomic in situ hybridization\") (name fb:m.0ch96w1 \"Stem rust of small grains and grasses caused by Puccinia graminis\"))) (type fb:biology.plant_disease_documentation)\nHow do wheat disperse seeds?\tStem rust of small grains and grasses caused by Puccinia graminis\t-2.448\tformula ((lambda x (fb:biology.plant_disease_documentation.plant_disease_documentation (fb:biology.plant_disease_triangle.host (var x)))) fb:en.wheat)) (value (list (name fb:m.0cgl2y2 \"Identification of Wheat���Dasypyrum breviaristatum addition lines with stripe rust resistance using C-banding and genomic in situ hybridization\") (name fb:m.0ch96w1 \"Stem rust of small grains and grasses caused by Puccinia graminis\"))) (type fb:biology.plant_disease_documentation)\nWhy were the first great civilizations centered around river valleys?\tRiver Scene\t-6.601\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.river)) (value (list (name fb:en.river_scene \"River Scene\"))) (type fb:visual_art.artwork)\nWhat was the original name for Puerto Rico given by Christopher Columbus?\tGovernment of Puerto Rico\t-2.879\tformula (and (fb:type.object.type fb:common.topic) (fb:government.government.government_for fb:en.puerto_rico))) (value (list (name fb:en.government_of_puerto_rico \"Government of Puerto Rico\"))) (type fb:government.government)\nWhat is it called when you play a violin with a bow?\tItzhak Perlman\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tJohn Georgiadis\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tJohn Wittenberg\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tScarlet Rivera\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tBruce Dukov\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tDavid Mansfield\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tTom Savage\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tJessica Linnebach\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tMichael Province\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nWhat is it called when you play a violin with a bow?\tBobby Lalonde\t0.327\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman \"Itzhak Perlman\") (name fb:en.jonh_georgiadis \"John Georgiadis\") (name fb:m.03xn9kj \"John Wittenberg\") (name fb:en.scarlet_rivera \"Scarlet Rivera\") (name fb:en.bruce_dukov \"Bruce Dukov\") (name fb:en.david_mansfield \"David Mansfield\") (name fb:m.0g4yv37 \"Tom Savage\") (name fb:en.jessica_linnebach \"Jessica Linnebach\") (name fb:en.michael_province \"Michael Province\") (name fb:m.05ss6s7 \"Bobby Lalonde\"))) (type fb:music.artist)\nHow many times can you marry in Tennessee?\tCentral Time Zone\t1.349\tformula (!fb:location.location.time_zones fb:en.tennesee)) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.north_american_eastern_time_zone \"Eastern Time Zone\") (name fb:en.utc-5 UTC-5) (name fb:en.utc-6 UTC���06:00))) (type fb:time.time_zone)\nHow many times can you marry in Tennessee?\tEastern Time Zone\t1.349\tformula (!fb:location.location.time_zones fb:en.tennesee)) (value (list (name fb:en.central_time_zone \"Central Time Zone\") (name fb:en.north_american_eastern_time_zone \"Eastern Time Zone\") (name fb:en.utc-5 UTC-5) (name fb:en.utc-6 UTC���06:00))) (type fb:time.time_zone)\nWhat songs has Alicia Keys composed?\tNew Day\t2.123\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n \"New Day\") (name fb:en.a_womans_worth \"A Woman's Worth\") (name fb:en.if_i_aint_got_you \"If I Ain't Got You\") (name fb:en.empire_state_of_mind \"Empire State of Mind\") (name fb:m.0n9wh96 \"Fire We Make\") (name fb:m.0n9whkm \"That's When I Knew\") (name fb:m.0n9wg7f \"When It's All Over\") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 \"Brand New Me\"))) (type fb:music.composition)\nWhat songs has Alicia Keys composed?\tA Woman's Worth\t2.123\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n \"New Day\") (name fb:en.a_womans_worth \"A Woman's Worth\") (name fb:en.if_i_aint_got_you \"If I Ain't Got You\") (name fb:en.empire_state_of_mind \"Empire State of Mind\") (name fb:m.0n9wh96 \"Fire We Make\") (name fb:m.0n9whkm \"That's When I Knew\") (name fb:m.0n9wg7f \"When It's All Over\") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 \"Brand New Me\"))) (type fb:music.composition)\nWhat songs has Alicia Keys composed?\tIf I Ain't Got You\t2.123\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n \"New Day\") (name fb:en.a_womans_worth \"A Woman's Worth\") (name fb:en.if_i_aint_got_you \"If I Ain't Got You\") (name fb:en.empire_state_of_mind \"Empire State of Mind\") (name fb:m.0n9wh96 \"Fire We Make\") (name fb:m.0n9whkm \"That's When I Knew\") (name fb:m.0n9wg7f \"When It's All Over\") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 \"Brand New Me\"))) (type fb:music.composition)\nWhat songs has Alicia Keys composed?\tEmpire State of Mind\t2.123\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n \"New Day\") (name fb:en.a_womans_worth \"A Woman's Worth\") (name fb:en.if_i_aint_got_you \"If I Ain't Got You\") (name fb:en.empire_state_of_mind \"Empire State of Mind\") (name fb:m.0n9wh96 \"Fire We Make\") (name fb:m.0n9whkm \"That's When I Knew\") (name fb:m.0n9wg7f \"When It's All Over\") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 \"Brand New Me\"))) (type fb:music.composition)\nWhat songs has Alicia Keys composed?\tFire We Make\t2.123\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n \"New Day\") (name fb:en.a_womans_worth \"A Woman's Worth\") (name fb:en.if_i_aint_got_you \"If I Ain't Got You\") (name fb:en.empire_state_of_mind \"Empire State of Mind\") (name fb:m.0n9wh96 \"Fire We Make\") (name fb:m.0n9whkm \"That's When I Knew\") (name fb:m.0n9wg7f \"When It's All Over\") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 \"Brand New Me\"))) (type fb:music.composition)\nWhat songs has Alicia Keys composed?\tThat's When I Knew\t2.123\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n \"New Day\") (name fb:en.a_womans_worth \"A Woman's Worth\") (name fb:en.if_i_aint_got_you \"If I Ain't Got You\") (name fb:en.empire_state_of_mind \"Empire State of Mind\") (name fb:m.0n9wh96 \"Fire We Make\") (name fb:m.0n9whkm \"That's When I Knew\") (name fb:m.0n9wg7f \"When It's All Over\") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 \"Brand New Me\"))) (type fb:music.composition)\nWhat songs has Alicia Keys composed?\tWhen It's All Over\t2.123\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n \"New Day\") (name fb:en.a_womans_worth \"A Woman's Worth\") (name fb:en.if_i_aint_got_you \"If I Ain't Got You\") (name fb:en.empire_state_of_mind \"Empire State of Mind\") (name fb:m.0n9wh96 \"Fire We Make\") (name fb:m.0n9whkm \"That's When I Knew\") (name fb:m.0n9wg7f \"When It's All Over\") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 \"Brand New Me\"))) (type fb:music.composition)\nWhat songs has Alicia Keys composed?\tBrand New Me\t2.123\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n \"New Day\") (name fb:en.a_womans_worth \"A Woman's Worth\") (name fb:en.if_i_aint_got_you \"If I Ain't Got You\") (name fb:en.empire_state_of_mind \"Empire State of Mind\") (name fb:m.0n9wh96 \"Fire We Make\") (name fb:m.0n9whkm \"That's When I Knew\") (name fb:m.0n9wg7f \"When It's All Over\") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 \"Brand New Me\"))) (type fb:music.composition)\nWhat is the most expensive custom made software ever made?\tRand McNally\t-1.549\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:business.company_product_relationship.company (!fb:business.consumer_product.company (var x)))) fb:en.computer_software))) (value (list (name fb:en.rand_mcnally_staff \"Rand McNally\"))) (type fb:business.consumer_company)\nIf a man drink alcohol will effect baby?\tAlcoholic beverages\t-4.031\tformula (fb:common.image.appears_in_topic_gallery fb:en.drink)) (value (list (name fb:m.03shz_j \"Alcoholic beverages\") (name fb:m.02bd49z \"Oranges and orange juice\") (name fb:m.03tj3bv FountainSoda))) (type fb:common.image)\nIf a man drink alcohol will effect baby?\tOranges and orange juice\t-4.031\tformula (fb:common.image.appears_in_topic_gallery fb:en.drink)) (value (list (name fb:m.03shz_j \"Alcoholic beverages\") (name fb:m.02bd49z \"Oranges and orange juice\") (name fb:m.03tj3bv FountainSoda))) (type fb:common.image)\nWhy is there the British flag on the upper left corner of the Australian flag?\tFlag of the Chuvash Republic\t2.972\tformula (fb:location.symbol_of_administrative_division.official_symbol_of (and (fb:location.location_symbol_relationship.Kind_of_symbol fb:en.flag) (!fb:location.offical_symbol_variety.symbols_of_this_kind fb:en.flag)))) (value (list (name fb:en.flag_of_chuvashia \"Flag of the Chuvash Republic\") (name fb:en.flag_of_quebec \"Flag of Quebec\") (name fb:en.flag_of_new_zealand \"Flag of New Zealand\"))) (type fb:location.symbol_of_administrative_division)\nWhy is there the British flag on the upper left corner of the Australian flag?\tFlag of Quebec\t2.972\tformula (fb:location.symbol_of_administrative_division.official_symbol_of (and (fb:location.location_symbol_relationship.Kind_of_symbol fb:en.flag) (!fb:location.offical_symbol_variety.symbols_of_this_kind fb:en.flag)))) (value (list (name fb:en.flag_of_chuvashia \"Flag of the Chuvash Republic\") (name fb:en.flag_of_quebec \"Flag of Quebec\") (name fb:en.flag_of_new_zealand \"Flag of New Zealand\"))) (type fb:location.symbol_of_administrative_division)\nWhy is there the British flag on the upper left corner of the Australian flag?\tFlag of New Zealand\t2.972\tformula (fb:location.symbol_of_administrative_division.official_symbol_of (and (fb:location.location_symbol_relationship.Kind_of_symbol fb:en.flag) (!fb:location.offical_symbol_variety.symbols_of_this_kind fb:en.flag)))) (value (list (name fb:en.flag_of_chuvashia \"Flag of the Chuvash Republic\") (name fb:en.flag_of_quebec \"Flag of Quebec\") (name fb:en.flag_of_new_zealand \"Flag of New Zealand\"))) (type fb:location.symbol_of_administrative_division)\nWhat tissue type does embryonic ectoderm develop into?\tOrganic Thing\t-6.882\tformula (!fb:common.topic.notable_types fb:en.ectoderm)) (value (list (name fb:base.tagit.organic_thing \"Organic Thing\") (name fb:base.tagasauris.organic_object \"Organic Object\") (name fb:medicine.anatomical_structure \"Anatomical structure\"))) (type fb:type.type)\nWhat tissue type does embryonic ectoderm develop into?\tOrganic Object\t-6.882\tformula (!fb:common.topic.notable_types fb:en.ectoderm)) (value (list (name fb:base.tagit.organic_thing \"Organic Thing\") (name fb:base.tagasauris.organic_object \"Organic Object\") (name fb:medicine.anatomical_structure \"Anatomical structure\"))) (type fb:type.type)\nWhat tissue type does embryonic ectoderm develop into?\tAnatomical structure\t-6.882\tformula (!fb:common.topic.notable_types fb:en.ectoderm)) (value (list (name fb:base.tagit.organic_thing \"Organic Thing\") (name fb:base.tagasauris.organic_object \"Organic Object\") (name fb:medicine.anatomical_structure \"Anatomical structure\"))) (type fb:type.type)\nFollicles are a structural feature of what gland?\tHuman submaxillary gland. At the right is a group of mucous alveoli, at the left a group of serous alveoli\t-5.726\tformula (fb:common.image.appears_in_topic_gallery fb:en.gland)) (value (list (name fb:m.02bpzfn \"Human submaxillary gland. At the right is a group of mucous alveoli, at the left a group of serous alveoli\"))) (type fb:common.image)\nIs it true that DNA is deoxyribonucleic acid?\tEntertainment Weekly annotation index\t-0.071\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.dna)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\"))) (type fb:common.annotation_index)\nWhat were some major submarine battles in world war one?\tPacific War\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tBattle of the Eastern Solomons\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tOperation Weser��bung\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tNorwegian Campaign\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tBattle of Las Piedras\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tWestern Front\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tOperation Little Saturn\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tBattle of Stalingrad\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tBattle of Midtskogen\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhat were some major submarine battles in world war one?\tFirst Battle of El Alamein\t0.907\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war \"Pacific War\") (name fb:en.battle_of_the_eastern_solomons \"Battle of the Eastern Solomons\") (name fb:en.operation_weserubung \"Operation Weser��bung\") (name fb:en.norwegian_campaign \"Norwegian Campaign\") (name fb:en.battle_of_las_piedras \"Battle of Las Piedras\") (name fb:m.02kxjx \"Western Front\") (name fb:en.operation_saturn \"Operation Little Saturn\") (name fb:en.battle_of_stalingrad \"Battle of Stalingrad\") (name fb:en.battle_of_midtskogen \"Battle of Midtskogen\") (name fb:en.first_battle_of_el_alamein \"First Battle of El Alamein\"))) (type fb:military.military_conflict)\nWhich flower is usually associated with Easter?\tRussian Resurrection icon\t-9.424\tformula (!fb:common.topic.image fb:en.easter)) (value (list (name fb:m.02bdcwb \"Russian Resurrection icon\") (name fb:m.0bc71bv Easter) (name fb:m.0bcqk0z Easter))) (type fb:common.image)\nDoes the Apple iPod touch have a monthly fee?\tYoung Man with an Apple\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tStill Life with Apples\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tStill Life with Watermelons and Apples\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tStill Life with Apples\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tStill Life with Apples and Grapes\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tThe Basket of Apples\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tThe Plate of Apples\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tPommes et Serviette\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tStill Life with Apples, Pears, Lemons and Grapes\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nDoes the Apple iPod touch have a monthly fee?\tA Woman Peeling Apples\t-1.117\tformula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple \"Young Man with an Apple\") (name fb:en.still_life_with_apples \"Still Life with Apples\") (name fb:en.still_life_with_watermelons_and_apples \"Still Life with Watermelons and Apples\") (name fb:m.0hgz9st \"Still Life with Apples\") (name fb:en.still_life_with_apples_and_grapes \"Still Life with Apples and Grapes\") (name fb:en.the_basket_of_apples \"The Basket of Apples\") (name fb:en.the_plate_of_apples \"The Plate of Apples\") (name fb:en.pommes_et_serviette \"Pommes et Serviette\") (name fb:en.still_life_with_apples_pears_lemons_and_grapes \"Still Life with Apples, Pears, Lemons and Grapes\") (name fb:en.a_woman_peeling_apples \"A Woman Peeling Apples\"))) (type fb:visual_art.artwork)\nHow vacuum is created in condenser?\tToluene with sodium-benzophenone\t-3.411\tformula (!fb:common.topic.image fb:en.condenser)) (value (list (name fb:m.02h3n1v \"Toluene with sodium-benzophenone\") (name fb:m.029g_zh \"Image 1: Fractional distillation apparatus using a Liebig condenser\"))) (type fb:common.image)\nHow vacuum is created in condenser?\tImage 1: Fractional distillation apparatus using a Liebig condenser\t-3.411\tformula (!fb:common.topic.image fb:en.condenser)) (value (list (name fb:m.02h3n1v \"Toluene with sodium-benzophenone\") (name fb:m.029g_zh \"Image 1: Fractional distillation apparatus using a Liebig condenser\"))) (type fb:common.image)\nWhat ballets did Anna Pavlova perform in?\tGolders Green Crematorium\t-6.116\tformula (and (fb:type.object.type fb:common.topic) (fb:people.place_of_interment.interred_here fb:en.anna_pavlova))) (value (list (name fb:en.golders_green_crematorium \"Golders Green Crematorium\"))) (type fb:people.place_of_interment)\nWhat colours suit brown hair and green eyes?\tRosa\t-0.034\tformula (and (fb:type.object.type fb:common.topic) (fb:base.horticulture.cultured_plant.foliage_color fb:en.green))) (value (list (name fb:en.rosa_jacqueminot \"Rosa 'G��n��ral Jacqueminot'\") (name fb:en.vitis_labrusca_niagara \"Niagara grape\") (name fb:en.vitis_labrusca_catawba Catawba) (name fb:en.wood_spurge \"Euphorbia amygdaloides\") (name fb:m.0g9j4gs \"Rosa 'Amiga Mia'\"))) (type fb:base.horticulture.cultured_plant)\nWhat colours suit brown hair and green eyes?\tNiagara grape\t-0.034\tformula (and (fb:type.object.type fb:common.topic) (fb:base.horticulture.cultured_plant.foliage_color fb:en.green))) (value (list (name fb:en.rosa_jacqueminot \"Rosa 'G��n��ral Jacqueminot'\") (name fb:en.vitis_labrusca_niagara \"Niagara grape\") (name fb:en.vitis_labrusca_catawba Catawba) (name fb:en.wood_spurge \"Euphorbia amygdaloides\") (name fb:m.0g9j4gs \"Rosa 'Amiga Mia'\"))) (type fb:base.horticulture.cultured_plant)\nWhat colours suit brown hair and green eyes?\tEuphorbia amygdaloides\t-0.034\tformula (and (fb:type.object.type fb:common.topic) (fb:base.horticulture.cultured_plant.foliage_color fb:en.green))) (value (list (name fb:en.rosa_jacqueminot \"Rosa 'G��n��ral Jacqueminot'\") (name fb:en.vitis_labrusca_niagara \"Niagara grape\") (name fb:en.vitis_labrusca_catawba Catawba) (name fb:en.wood_spurge \"Euphorbia amygdaloides\") (name fb:m.0g9j4gs \"Rosa 'Amiga Mia'\"))) (type fb:base.horticulture.cultured_plant)\nWhat colours suit brown hair and green eyes?\tRosa 'Amiga Mia'\t-0.034\tformula (and (fb:type.object.type fb:common.topic) (fb:base.horticulture.cultured_plant.foliage_color fb:en.green))) (value (list (name fb:en.rosa_jacqueminot \"Rosa 'G��n��ral Jacqueminot'\") (name fb:en.vitis_labrusca_niagara \"Niagara grape\") (name fb:en.vitis_labrusca_catawba Catawba) (name fb:en.wood_spurge \"Euphorbia amygdaloides\") (name fb:m.0g9j4gs \"Rosa 'Amiga Mia'\"))) (type fb:base.horticulture.cultured_plant)\nDifference between nontemplate and template strand?\tUniversity of Chicago\t-8.01\tformula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.mark_strand)) (value (list (name fb:en.university_of_chicago \"University of Chicago\") (name fb:en.columbia_university \"Columbia University\"))) (type fb:business.employer)\nDifference between nontemplate and template strand?\tColumbia University\t-8.01\tformula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.mark_strand)) (value (list (name fb:en.university_of_chicago \"University of Chicago\") (name fb:en.columbia_university \"Columbia University\"))) (type fb:business.employer)\nIs tin more reactive to silver?\tSilver nitrate\t-0.478\tformula (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.silver)) (value (list (name fb:en.silver Silver) (name fb:en.silver_nitrate \"Silver nitrate\") (name fb:m.0hqxtsd \"Silver citrate\"))) (type fb:medicine.drug_ingredient)\nIs tin more reactive to silver?\tSilver citrate\t-0.478\tformula (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.silver)) (value (list (name fb:en.silver Silver) (name fb:en.silver_nitrate \"Silver nitrate\") (name fb:m.0hqxtsd \"Silver citrate\"))) (type fb:medicine.drug_ingredient)\nDoes Venus's revolve around the sun?\tThe Toilet of Venus\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nDoes Venus's revolve around the sun?\tVenus and Cupid at the Forge of Vulcan\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nDoes Venus's revolve around the sun?\tSleeping Venus\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nDoes Venus's revolve around the sun?\tVenus and Cupid\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nDoes Venus's revolve around the sun?\tThe Education of Cupid\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nDoes Venus's revolve around the sun?\tVenus, Cupid, Folly and Time\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nDoes Venus's revolve around the sun?\tVenus, Jupiter and Mars\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nDoes Venus's revolve around the sun?\tRokeby Venus\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nDoes Venus's revolve around the sun?\tColonna Venus\t-2.696\tformula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus \"The Toilet of Venus\") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan \"Venus and Cupid at the Forge of Vulcan\") (name fb:en.sleeping_venus \"Sleeping Venus\") (name fb:en.venus_and_cupid \"Venus and Cupid\") (name fb:en.the_education_of_cupid \"The Education of Cupid\") (name fb:en.venus_cupid_folly_and_time \"Venus, Cupid, Folly and Time\") (name fb:en.venus_jupiter_and_mars \"Venus, Jupiter and Mars\") (name fb:en.the_rokeby_venus \"Rokeby Venus\") (name fb:en.primavera Primavera) (name fb:en.colonna_venus \"Colonna Venus\"))) (type fb:visual_art.artwork)\nIs baby a concrete noun?\tBoryspil International Airport\t-2.177\tformula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport \"Boryspil International Airport\") (name fb:en.denver_international_airport \"Denver International Airport\") (name fb:en.kiev-zhulyany_airport \"Kyiv Zhuliany International Airport\") (name fb:en.dnipropetrovsk_international_airport \"Dnipropetrovsk International Airport\") (name fb:en.sokol_airport \"Sokol Airport\") (name fb:en.stuttgart_airport \"Stuttgart Airport\") (name fb:en.cambridge_airport \"Cambridge Airport\") (name fb:en.nasa_shuttle_landing_facility \"Shuttle Landing Facility\"))) (type fb:aviation.airport)\nIs baby a concrete noun?\tDenver International Airport\t-2.177\tformula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport \"Boryspil International Airport\") (name fb:en.denver_international_airport \"Denver International Airport\") (name fb:en.kiev-zhulyany_airport \"Kyiv Zhuliany International Airport\") (name fb:en.dnipropetrovsk_international_airport \"Dnipropetrovsk International Airport\") (name fb:en.sokol_airport \"Sokol Airport\") (name fb:en.stuttgart_airport \"Stuttgart Airport\") (name fb:en.cambridge_airport \"Cambridge Airport\") (name fb:en.nasa_shuttle_landing_facility \"Shuttle Landing Facility\"))) (type fb:aviation.airport)\nIs baby a concrete noun?\tKyiv Zhuliany International Airport\t-2.177\tformula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport \"Boryspil International Airport\") (name fb:en.denver_international_airport \"Denver International Airport\") (name fb:en.kiev-zhulyany_airport \"Kyiv Zhuliany International Airport\") (name fb:en.dnipropetrovsk_international_airport \"Dnipropetrovsk International Airport\") (name fb:en.sokol_airport \"Sokol Airport\") (name fb:en.stuttgart_airport \"Stuttgart Airport\") (name fb:en.cambridge_airport \"Cambridge Airport\") (name fb:en.nasa_shuttle_landing_facility \"Shuttle Landing Facility\"))) (type fb:aviation.airport)\nIs baby a concrete noun?\tDnipropetrovsk International Airport\t-2.177\tformula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport \"Boryspil International Airport\") (name fb:en.denver_international_airport \"Denver International Airport\") (name fb:en.kiev-zhulyany_airport \"Kyiv Zhuliany International Airport\") (name fb:en.dnipropetrovsk_international_airport \"Dnipropetrovsk International Airport\") (name fb:en.sokol_airport \"Sokol Airport\") (name fb:en.stuttgart_airport \"Stuttgart Airport\") (name fb:en.cambridge_airport \"Cambridge Airport\") (name fb:en.nasa_shuttle_landing_facility \"Shuttle Landing Facility\"))) (type fb:aviation.airport)\nIs baby a concrete noun?\tSokol Airport\t-2.177\tformula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport \"Boryspil International Airport\") (name fb:en.denver_international_airport \"Denver International Airport\") (name fb:en.kiev-zhulyany_airport \"Kyiv Zhuliany International Airport\") (name fb:en.dnipropetrovsk_international_airport \"Dnipropetrovsk International Airport\") (name fb:en.sokol_airport \"Sokol Airport\") (name fb:en.stuttgart_airport \"Stuttgart Airport\") (name fb:en.cambridge_airport \"Cambridge Airport\") (name fb:en.nasa_shuttle_landing_facility \"Shuttle Landing Facility\"))) (type fb:aviation.airport)\nIs baby a concrete noun?\tStuttgart Airport\t-2.177\tformula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport \"Boryspil International Airport\") (name fb:en.denver_international_airport \"Denver International Airport\") (name fb:en.kiev-zhulyany_airport \"Kyiv Zhuliany International Airport\") (name fb:en.dnipropetrovsk_international_airport \"Dnipropetrovsk International Airport\") (name fb:en.sokol_airport \"Sokol Airport\") (name fb:en.stuttgart_airport \"Stuttgart Airport\") (name fb:en.cambridge_airport \"Cambridge Airport\") (name fb:en.nasa_shuttle_landing_facility \"Shuttle Landing Facility\"))) (type fb:aviation.airport)\nIs baby a concrete noun?\tCambridge Airport\t-2.177\tformula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport \"Boryspil International Airport\") (name fb:en.denver_international_airport \"Denver International Airport\") (name fb:en.kiev-zhulyany_airport \"Kyiv Zhuliany International Airport\") (name fb:en.dnipropetrovsk_international_airport \"Dnipropetrovsk International Airport\") (name fb:en.sokol_airport \"Sokol Airport\") (name fb:en.stuttgart_airport \"Stuttgart Airport\") (name fb:en.cambridge_airport \"Cambridge Airport\") (name fb:en.nasa_shuttle_landing_facility \"Shuttle Landing Facility\"))) (type fb:aviation.airport)\nIs baby a concrete noun?\tShuttle Landing Facility\t-2.177\tformula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport \"Boryspil International Airport\") (name fb:en.denver_international_airport \"Denver International Airport\") (name fb:en.kiev-zhulyany_airport \"Kyiv Zhuliany International Airport\") (name fb:en.dnipropetrovsk_international_airport \"Dnipropetrovsk International Airport\") (name fb:en.sokol_airport \"Sokol Airport\") (name fb:en.stuttgart_airport \"Stuttgart Airport\") (name fb:en.cambridge_airport \"Cambridge Airport\") (name fb:en.nasa_shuttle_landing_facility \"Shuttle Landing Facility\"))) (type fb:aviation.airport)\nWhat is early system in operating system?\tKDE Display Manager\t-0.266\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:computer.software.compatible_oses (fb:computer.software_compatibility.operating_system (var x)))) fb:en.solaris_operating_system))) (value (list (name fb:en.kdm \"KDE Display Manager\") (name fb:en.shanes_chess_information_database \"Shane's Chess Information Database\") (name fb:en.mercurial Mercurial) (name fb:en.coldfusion ColdFusion) (name fb:en.adobe_photoshop \"Adobe Photoshop\") (name fb:en.openbravo Openbravo) (name fb:en.openameos OpenAmeos) (name fb:en.magicdraw_uml MagicDraw) (name fb:en.mysql MySQL) (name fb:m.02v_74c Cinderella))) (type fb:computer.software)\nWhat is early system in operating system?\tShane's Chess Information Database\t-0.266\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:computer.software.compatible_oses (fb:computer.software_compatibility.operating_system (var x)))) fb:en.solaris_operating_system))) (value (list (name fb:en.kdm \"KDE Display Manager\") (name fb:en.shanes_chess_information_database \"Shane's Chess Information Database\") (name fb:en.mercurial Mercurial) (name fb:en.coldfusion ColdFusion) (name fb:en.adobe_photoshop \"Adobe Photoshop\") (name fb:en.openbravo Openbravo) (name fb:en.openameos OpenAmeos) (name fb:en.magicdraw_uml MagicDraw) (name fb:en.mysql MySQL) (name fb:m.02v_74c Cinderella))) (type fb:computer.software)\nWhat is early system in operating system?\tAdobe Photoshop\t-0.266\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:computer.software.compatible_oses (fb:computer.software_compatibility.operating_system (var x)))) fb:en.solaris_operating_system))) (value (list (name fb:en.kdm \"KDE Display Manager\") (name fb:en.shanes_chess_information_database \"Shane's Chess Information Database\") (name fb:en.mercurial Mercurial) (name fb:en.coldfusion ColdFusion) (name fb:en.adobe_photoshop \"Adobe Photoshop\") (name fb:en.openbravo Openbravo) (name fb:en.openameos OpenAmeos) (name fb:en.magicdraw_uml MagicDraw) (name fb:en.mysql MySQL) (name fb:m.02v_74c Cinderella))) (type fb:computer.software)\nWhat kind of cell has a nonspontaneous voltage?\tDouble bass\t-1.586\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.performance_role.guest_performances (fb:music.recording_contribution.album (var x)))) fb:en.kind_of_blue))) (value (list (name fb:en.piano Piano) (name fb:en.drum Drum) (name fb:en.double_bass \"Double bass\") (name fb:en.alto_saxophone \"Alto saxophone\") (name fb:en.trumpet Trumpet) (name fb:en.tenor_saxophone \"Tenor saxophone\"))) (type fb:music.performance_role)\nWhat kind of cell has a nonspontaneous voltage?\tAlto saxophone\t-1.586\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.performance_role.guest_performances (fb:music.recording_contribution.album (var x)))) fb:en.kind_of_blue))) (value (list (name fb:en.piano Piano) (name fb:en.drum Drum) (name fb:en.double_bass \"Double bass\") (name fb:en.alto_saxophone \"Alto saxophone\") (name fb:en.trumpet Trumpet) (name fb:en.tenor_saxophone \"Tenor saxophone\"))) (type fb:music.performance_role)\nWhat kind of cell has a nonspontaneous voltage?\tTenor saxophone\t-1.586\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.performance_role.guest_performances (fb:music.recording_contribution.album (var x)))) fb:en.kind_of_blue))) (value (list (name fb:en.piano Piano) (name fb:en.drum Drum) (name fb:en.double_bass \"Double bass\") (name fb:en.alto_saxophone \"Alto saxophone\") (name fb:en.trumpet Trumpet) (name fb:en.tenor_saxophone \"Tenor saxophone\"))) (type fb:music.performance_role)\nWhat is the relative location of South Africa?\tSouth Africa national football team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa national cricket team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa national netball team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa national Australian rules football team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa national korfball team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa national beach soccer team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa Fed Cup team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa national rugby union team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa national baseball team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nWhat is the relative location of South Africa?\tSouth Africa women's national rugby union team\t1.023\tformula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team \"South Africa national football team\") (name fb:en.south_african_cricket_team \"South Africa national cricket team\") (name fb:en.south_africa_national_netball_team \"South Africa national netball team\") (name fb:en.south_african_national_australian_rules_football_team \"South Africa national Australian rules football team\") (name fb:en.south_africa_national_korfball_team \"South Africa national korfball team\") (name fb:en.south_africa_national_beach_soccer_team \"South Africa national beach soccer team\") (name fb:en.south_africa_fed_cup_team \"South Africa Fed Cup team\") (name fb:en.south_africa_national_rugby_union_team \"South Africa national rugby union team\") (name fb:en.south_africa_national_baseball_team \"South Africa national baseball team\") (name fb:en.south_africa_womens_national_rugby_union_team \"South Africa women's national rugby union team\"))) (type fb:sports.sports_team)\nThe wonderful Wizard of Oz was written by?\tL. Frank Baum\t-1.754\tformula (fb:book.author.works_written fb:m.06bphdt)) (value (list (name fb:en.l_frank_baum \"L. Frank Baum\") (name fb:en.grace_mabie \"Grace Mabie\"))) (type fb:book.author)\nThe wonderful Wizard of Oz was written by?\tGrace Mabie\t-1.754\tformula (fb:book.author.works_written fb:m.06bphdt)) (value (list (name fb:en.l_frank_baum \"L. Frank Baum\") (name fb:en.grace_mabie \"Grace Mabie\"))) (type fb:book.author)\nWhich is not a component of ignition system?\tScene 3D Rendering... Ignition Systems BREMI Premium Car Systems... Ignition Coil\t-10.286\tformula (fb:common.image.appears_in_topic_gallery fb:en.ignition_system)) (value (list (name fb:m.0h5qcls \"Scene 3D Rendering... Ignition Systems BREMI Premium Car Systems... Ignition Coil\") (name fb:m.0h5rm8n \"Bremi Ignition Parts\") (name fb:m.02f1cg1 Verdelerkap) (name fb:m.078tjkn Magnetzuend))) (type fb:common.image)\nWhich is not a component of ignition system?\tBremi Ignition Parts\t-10.286\tformula (fb:common.image.appears_in_topic_gallery fb:en.ignition_system)) (value (list (name fb:m.0h5qcls \"Scene 3D Rendering... Ignition Systems BREMI Premium Car Systems... Ignition Coil\") (name fb:m.0h5rm8n \"Bremi Ignition Parts\") (name fb:m.02f1cg1 Verdelerkap) (name fb:m.078tjkn Magnetzuend))) (type fb:common.image)\nWhat are Colorado's longitude and latitude?\tRocky Mountain PBS\t-1.988\tformula (and (fb:type.object.type fb:common.topic) (fb:broadcast.broadcast.area_served fb:en.colorado))) (value (list (name fb:en.kfka KFKA) (name fb:en.rocky_mountain_pbs \"Rocky Mountain PBS\"))) (type fb:broadcast.broadcast)\nHow is chlamydia transmitted?\tEntertainment Weekly annotation index\t-4.558\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.sexually_transmitted_disease)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nHow is chlamydia transmitted?\tWSJ Speakeasy Index\t-4.558\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.sexually_transmitted_disease)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nWhat animal is not a vertebrate?\tTwo Monkeys Stealing Fruit from a Basket\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.animalia_101))) (value (list (name fb:en.two_monkeys_stealing_fruit_from_a_basket \"Two Monkeys Stealing Fruit from a Basket\") (name fb:m.05bh6mr \"Fruit and Vegetables with a Monkey, Parrot and Squirrel\"))) (type fb:visual_art.artwork)\nWhat animal is not a vertebrate?\tFruit and Vegetables with a Monkey, Parrot and Squirrel\t-2.736\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.animalia_101))) (value (list (name fb:en.two_monkeys_stealing_fruit_from_a_basket \"Two Monkeys Stealing Fruit from a Basket\") (name fb:m.05bh6mr \"Fruit and Vegetables with a Monkey, Parrot and Squirrel\"))) (type fb:visual_art.artwork)\nDid the Vietnam war start before world war 2?\tBattle of Hill 881\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tOperation Barrel Roll\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tBattle of Hamburger Hill\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tOperation Starlite\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tLaotian Civil War\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tBattle of Prek Klok II\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tOperation Coronado II\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tBattle of Kompong Speu\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tOperation Union\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nDid the Vietnam war start before world war 2?\tOperation Swift\t-0.576\tformula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 \"Battle of Hill 881\") (name fb:en.operation_barrell_roll \"Operation Barrel Roll\") (name fb:en.battle_of_hamburger_hill \"Battle of Hamburger Hill\") (name fb:en.operation_starlite \"Operation Starlite\") (name fb:en.secret_war \"Laotian Civil War\") (name fb:m.0ch447g \"Battle of Prek Klok II\") (name fb:m.0ddgjm4 \"Operation Coronado II\") (name fb:en.battle_of_kompong_speu \"Battle of Kompong Speu\") (name fb:en.operation_union \"Operation Union\") (name fb:en.operation_swift \"Operation Swift\"))) (type (union fb:military.military_conflict))\nWhat is the largest county in Kentucky?\tBlissful Master Index\t-2.815\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.kentucky))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat is the largest county in Kentucky?\tBlissful Celebrities\t-2.815\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.kentucky))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat iS Donald Trump's handicap?\tBlissful Master Index\t-2.242\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.donald_trump))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat iS Donald Trump's handicap?\tBlissful Celebrities\t-2.242\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.donald_trump))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nIs karpagam university genuine?\tEntertainment Weekly annotation index\t-4.417\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.university)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nIs karpagam university genuine?\tWSJ Speakeasy Index\t-4.417\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.university)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\"))) (type fb:common.annotation_index)\nIn what year did Jason Lancaster leave Mayday Parade?\tBlissful Master Index\t-3.446\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.mayday_parade))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nIn what year did Jason Lancaster leave Mayday Parade?\tBlissful Celebrities\t-3.446\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.mayday_parade))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nHow many kids in India get married?\tInternet users as percentage of population, World Development Indicators, World Bank\t-2.799\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.india)) (value (list (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\") (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nHow many kids in India get married?\tInternet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\t-2.799\tformula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.india)) (value (list (name fb:g.1245ywqx8 \"Internet users as percentage of population, World Development Indicators, World Bank\") (name fb:m.0ndnhc0 \"Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank\"))) (type fb:dataworld.information_source)\nMagnesium oxide ionic or molecular?\tMolecular Sciences Institute\t-4.034\tformula (!fb:organization.organization_sector.organizations_in_this_sector fb:en.molecular_biology)) (value (list (name fb:en.molecular_sciences_institute \"Molecular Sciences Institute\"))) (type fb:organization.organization)\nWhat are some quotes form they poured fire on us from the sky?\tFire is never a gentle master\t3.566\tformula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:media_common.quotation) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.fire)))) (value (list (name fb:en.fire_is_never_a_gentle_master \"Fire is never a gentle master\"))) (type fb:media_common.quotation)\nWhat tissues are infected by cholera?\tPathogenic bacteria\t-6.2\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.infectious_disease.infectious_agent_type fb:en.cholera))) (value (list (name fb:en.virus Virus) (name fb:en.pathogenic_bacteria \"Pathogenic bacteria\"))) (type fb:medicine.type_of_infectious_agent)\nWhy helium does not form compounds?\tHelium 0.99 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium and oxygen 700/300 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium 999 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium and oxygen 800/200 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium 995 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium, oxygen 0.79/0.21 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium and oxygen 600/400 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium oxygen 800/200 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium oxygen mixture 0.6/0.4 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhy helium does not form compounds?\tHelium 990 gas\t-6.193\tformula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 \"Helium 0.99 gas\") (name fb:m.0hqsbx0 \"Helium and oxygen 700/300 gas\") (name fb:m.0hqrg_r \"Helium 999 gas\") (name fb:m.0hqt44c \"Helium and oxygen 800/200 gas\") (name fb:m.0hqr9nq \"Helium 995 gas\") (name fb:m.0hqtddb \"Helium, oxygen 0.79/0.21 gas\") (name fb:m.0hqttxg \"Helium and oxygen 600/400 gas\") (name fb:m.0hqr9ht \"Helium oxygen 800/200 gas\") (name fb:m.0hqr647 \"Helium oxygen mixture 0.6/0.4 gas\") (name fb:m.0hqv0b3 \"Helium 990 gas\"))) (type fb:medicine.drug_formulation)\nWhere is the amplifier on BMW e34?\tMilbertshofen-Am Hart\t-3.095\tformula (and (fb:type.object.type fb:location.location) (!fb:organization.organization.place_founded fb:en.bmw))) (value (list (name fb:en.milbertshofen_am_hart \"Milbertshofen-Am Hart\"))) (type fb:location.location)\nIf Adam and Eve were alive today how old would they be?\tWest Philadelphia\t0.179\tformula (!fb:music.artist.origin fb:en.eve_1978)) (value (list (name fb:en.philadelphia Philadelphia) (name fb:en.camden Camden) (name fb:en.west_philadelphia \"West Philadelphia\"))) (type fb:location.location)\nWhat is the most poplar dog name?\tDogs Playing Poker\t0.174\tformula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.art_series_on_the_subject fb:en.dog))) (value (list (name fb:en.dogs_playing_poker \"Dogs Playing Poker\"))) (type fb:visual_art.art_series)\nWhat is a CRO?\tDave Eggers\t-2.826\tformula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:m.027cdhk)) (value (list (name fb:en.dave_eggers \"Dave Eggers\"))) (type fb:award.award_winner)\nWhat can cat litter do to a pregnant woman's baby?\tA Dog and a Cat near a Partially Disembowelled Deer\t-0.227\tformula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.art_subject fb:en.cat))) (value (list (name fb:en.a_dog_and_a_cat_near_a_partially_disembowelled_deer \"A Dog and a Cat near a Partially Disembowelled Deer\"))) (type fb:visual_art.artwork)\nIs Zelda the best game ever?\tThe Legend of Zelda: Ocarina of Time\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tThe Legend of Zelda: Twilight Princess\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tZelda II: The Adventure of Link\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tThe Legend of Zelda: Link's Awakening\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tThe Legend of Zelda: Collector's Edition\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tThe Legend of Zelda: Skyward Sword\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tThe Legend of Zelda: Spirit Tracks\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tThe Legend of Zelda: Majora's Mask\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tThe Legend of Zelda: Ocarina of Time 3D\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nIs Zelda the best game ever?\tThe Legend of Zelda: A Link to the Past & Four Swords\t-1.973\tformula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time \"The Legend of Zelda: Ocarina of Time\") (name fb:en.the_legend_of_zelda_twilight_princess \"The Legend of Zelda: Twilight Princess\") (name fb:en.zelda_ii_the_adventure_of_link \"Zelda II: The Adventure of Link\") (name fb:en.the_legend_of_zelda_links_awakening \"The Legend of Zelda: Link's Awakening\") (name fb:en.the_legend_of_zelda_collectors_edition \"The Legend of Zelda: Collector's Edition\") (name fb:m.09v5sg4 \"The Legend of Zelda: Skyward Sword\") (name fb:en.the_legend_of_zelda_spirit_tracks \"The Legend of Zelda: Spirit Tracks\") (name fb:en.the_legend_of_zelda_majoras_mask \"The Legend of Zelda: Majora's Mask\") (name fb:m.0gmdhxs \"The Legend of Zelda: Ocarina of Time 3D\") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords \"The Legend of Zelda: A Link to the Past & Four Swords\"))) (type fb:cvg.computer_videogame)\nWhat makes a burp smell like sulfur?\tAcetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\t-5.152\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq \"Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\") (name fb:m.0hqvvg3 \"Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\") (name fb:m.0hqvffl \"Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\") (name fb:m.0hqvvlk \"Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 \"Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks \".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\") (name fb:m.0hqw4np \"Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\") (name fb:m.0hqx1rf \"Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\"))) (type fb:medicine.drug)\nWhat makes a burp smell like sulfur?\tAldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\t-5.152\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq \"Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\") (name fb:m.0hqvvg3 \"Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\") (name fb:m.0hqvffl \"Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\") (name fb:m.0hqvvlk \"Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 \"Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks \".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\") (name fb:m.0hqw4np \"Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\") (name fb:m.0hqx1rf \"Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\"))) (type fb:medicine.drug)\nWhat makes a burp smell like sulfur?\tAethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\t-5.152\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq \"Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\") (name fb:m.0hqvvg3 \"Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\") (name fb:m.0hqvffl \"Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\") (name fb:m.0hqvvlk \"Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 \"Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks \".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\") (name fb:m.0hqw4np \"Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\") (name fb:m.0hqx1rf \"Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\"))) (type fb:medicine.drug)\nWhat makes a burp smell like sulfur?\tOnion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\t-5.152\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq \"Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\") (name fb:m.0hqvvg3 \"Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\") (name fb:m.0hqvffl \"Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\") (name fb:m.0hqvvlk \"Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 \"Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks \".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\") (name fb:m.0hqw4np \"Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\") (name fb:m.0hqx1rf \"Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\"))) (type fb:medicine.drug)\nWhat makes a burp smell like sulfur?\tEpinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\t-5.152\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq \"Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\") (name fb:m.0hqvvg3 \"Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\") (name fb:m.0hqvffl \"Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\") (name fb:m.0hqvvlk \"Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 \"Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks \".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\") (name fb:m.0hqw4np \"Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\") (name fb:m.0hqx1rf \"Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\"))) (type fb:medicine.drug)\nWhat makes a burp smell like sulfur?\t.alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\t-5.152\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq \"Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\") (name fb:m.0hqvvg3 \"Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\") (name fb:m.0hqvffl \"Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\") (name fb:m.0hqvvlk \"Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 \"Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks \".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\") (name fb:m.0hqw4np \"Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\") (name fb:m.0hqx1rf \"Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\"))) (type fb:medicine.drug)\nWhat makes a burp smell like sulfur?\tActaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\t-5.152\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq \"Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\") (name fb:m.0hqvvg3 \"Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\") (name fb:m.0hqvffl \"Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\") (name fb:m.0hqvvlk \"Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 \"Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks \".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\") (name fb:m.0hqw4np \"Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\") (name fb:m.0hqx1rf \"Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\"))) (type fb:medicine.drug)\nWhat makes a burp smell like sulfur?\tAconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\t-5.152\tformula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq \"Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation\") (name fb:m.0hqvvg3 \"Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation\") (name fb:m.0hqvffl \"Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation\") (name fb:m.0hqvvlk \"Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation\") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 \"Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation\") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks \".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation\") (name fb:m.0hqw4np \"Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation\") (name fb:m.0hqx1rf \"Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation\"))) (type fb:medicine.drug)\nCan you put food coloring in paint?\tFast food\t-0.445\tformula (fb:business.industry.parent_industry fb:en.food_industry)) (value (list (name fb:en.fast_food \"Fast food\") (name fb:en.food_engineering \"Food engineering\"))) (type fb:business.industry)\nCan you put food coloring in paint?\tFood engineering\t-0.445\tformula (fb:business.industry.parent_industry fb:en.food_industry)) (value (list (name fb:en.fast_food \"Fast food\") (name fb:en.food_engineering \"Food engineering\"))) (type fb:business.industry)\nWhat is the date of Saint Anne's death?\tMichael Packe\t-1.665\tformula (and (fb:type.object.type fb:common.topic) (fb:people.deceased_person.place_of_death fb:en.st_anne_alderney))) (value (list (name fb:en.michael_packe \"Michael Packe\"))) (type fb:people.deceased_person)\nWho was the first Asian Victoria's Secret model?\tSarita Stella\t0.962\tformula (and (fb:type.object.type fb:people.person) (and (fb:people.person.profession fb:en.model) (fb:people.person.place_of_birth fb:en.victoria)))) (value (list (name fb:en.sarita_stella \"Sarita Stella\") (name fb:en.nikki_whelan \"Nicky Whelan\"))) (type fb:people.person)\nWho was the first Asian Victoria's Secret model?\tNicky Whelan\t0.962\tformula (and (fb:type.object.type fb:people.person) (and (fb:people.person.profession fb:en.model) (fb:people.person.place_of_birth fb:en.victoria)))) (value (list (name fb:en.sarita_stella \"Sarita Stella\") (name fb:en.nikki_whelan \"Nicky Whelan\"))) (type fb:people.person)\nIs a locust tree poisonous?\tDesert locust\t-2.159\tformula (fb:common.image.appears_in_topic_gallery fb:en.locust)) (value (list (name fb:m.02br_dn \"Desert locust\") (name fb:m.03tdn5n \"Oxya yezoensis ale(left) and male(right).\") (name fb:m.04pggcz \"Desert locust, Schistocerca gregariaMale (on top) and female\"))) (type fb:common.image)\nIs a locust tree poisonous?\tOxya yezoensis ale(left) and male(right).\t-2.159\tformula (fb:common.image.appears_in_topic_gallery fb:en.locust)) (value (list (name fb:m.02br_dn \"Desert locust\") (name fb:m.03tdn5n \"Oxya yezoensis ale(left) and male(right).\") (name fb:m.04pggcz \"Desert locust, Schistocerca gregariaMale (on top) and female\"))) (type fb:common.image)\nIs a locust tree poisonous?\tDesert locust, Schistocerca gregariaMale (on top) and female\t-2.159\tformula (fb:common.image.appears_in_topic_gallery fb:en.locust)) (value (list (name fb:m.02br_dn \"Desert locust\") (name fb:m.03tdn5n \"Oxya yezoensis ale(left) and male(right).\") (name fb:m.04pggcz \"Desert locust, Schistocerca gregariaMale (on top) and female\"))) (type fb:common.image)\nWhat is the scientific classification of a rose?\tRosa canina\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa 'Precious Platinum'\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa 'World's Fair'\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa 'Veterans' Honor'\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa sericea\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa woodsii\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa moschata\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa davidii\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa �� centifolia\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nWhat is the scientific classification of a rose?\tRosa moyesii\t1.407\tformula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose \"Rosa canina\") (name fb:en.rosa_precious_platinum \"Rosa 'Precious Platinum'\") (name fb:m.0gx5cq3 \"Rosa 'World's Fair'\") (name fb:m.0gfr6pv \"Rosa 'Veterans' Honor'\") (name fb:en.rosa_sericea \"Rosa sericea\") (name fb:m.0c02nwq \"Rosa woodsii\") (name fb:en.rosa_moschata \"Rosa moschata\") (name fb:en.rosa_davidii \"Rosa davidii\") (name fb:en.rosa_centifolia \"Rosa �� centifolia\") (name fb:en.rosa_moyesii \"Rosa moyesii\"))) (type fb:biology.organism_classification)\nHow long is the film bride wars?\tMakeup Artist\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tSupervising Sound Editor\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tVisual Effects Producer\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tADR Mixer\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tVisual Effects Supervisor\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tMakeup Department Head\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tHair Stylist\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tADR Recordist\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tSound Mixer\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nHow long is the film bride wars?\tSound Re-Recording Mixer\t0.524\tformula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist \"Makeup Artist\") (name fb:en.supervising_sound_editor \"Supervising Sound Editor\") (name fb:en.vfx_producer \"Visual Effects Producer\") (name fb:m.098j4cg \"ADR Mixer\") (name fb:en.visual_effects_supervisor \"Visual Effects Supervisor\") (name fb:en.makeup_department_head \"Makeup Department Head\") (name fb:en.hair_stylist \"Hair Stylist\") (name fb:en.adr_recordist \"ADR Recordist\") (name fb:en.production_sound_mixer \"Sound Mixer\") (name fb:en.re_recording_mixer \"Sound Re-Recording Mixer\"))) (type fb:film.film_job)\nWhat are hoardings and their types?\tCanonical Version\t-2.224\tformula (!fb:common.topic.notable_types fb:m.0dvbs03)) (value (list (name fb:music.single \"Canonical Version\") (name fb:music.recording \"Musical Recording\"))) (type fb:type.type)\nWhat are hoardings and their types?\tMusical Recording\t-2.224\tformula (!fb:common.topic.notable_types fb:m.0dvbs03)) (value (list (name fb:music.single \"Canonical Version\") (name fb:music.recording \"Musical Recording\"))) (type fb:type.type)\nWho wrote cat on a hot tin roof?\tA Dog and a Cat near a Partially Disembowelled Deer\t-4.126\tformula (fb:visual_art.artwork.art_subject fb:en.cat)) (value (list (name fb:en.a_dog_and_a_cat_near_a_partially_disembowelled_deer \"A Dog and a Cat near a Partially Disembowelled Deer\"))) (type fb:visual_art.artwork)\nIs Barack Obama's maternal grandfather alive?\tEntertainment Weekly annotation index\t-0.649\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.barack_obama)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\"))) (type fb:common.annotation_index)\nIs Barack Obama's maternal grandfather alive?\tWSJ Speakeasy Index\t-0.649\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.barack_obama)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\"))) (type fb:common.annotation_index)\nIs Barack Obama's maternal grandfather alive?\tBlissful Master Index\t-0.649\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.barack_obama)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\"))) (type fb:common.annotation_index)\nWhy did bolivar's unification of Latin America not last?\tNewspaper circulation area\t-6.515\tformula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area \"Newspaper circulation area\") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic \"Vocabulary Equivalent Topic\") (name fb:book.book_subject \"Literature Subject\") (name fb:user.tsegaran.random.taxonomy_subject \"Taxonomy Subject\") (name fb:base.ontologies.ontology_instance \"Ontology Instance\") (name fb:organization.organization_scope \"Organization scope\") (name fb:media_common.netflix_genre \"Netflix Genre\") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type)\nWhy did bolivar's unification of Latin America not last?\tVocabulary Equivalent Topic\t-6.515\tformula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area \"Newspaper circulation area\") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic \"Vocabulary Equivalent Topic\") (name fb:book.book_subject \"Literature Subject\") (name fb:user.tsegaran.random.taxonomy_subject \"Taxonomy Subject\") (name fb:base.ontologies.ontology_instance \"Ontology Instance\") (name fb:organization.organization_scope \"Organization scope\") (name fb:media_common.netflix_genre \"Netflix Genre\") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type)\nWhy did bolivar's unification of Latin America not last?\tLiterature Subject\t-6.515\tformula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area \"Newspaper circulation area\") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic \"Vocabulary Equivalent Topic\") (name fb:book.book_subject \"Literature Subject\") (name fb:user.tsegaran.random.taxonomy_subject \"Taxonomy Subject\") (name fb:base.ontologies.ontology_instance \"Ontology Instance\") (name fb:organization.organization_scope \"Organization scope\") (name fb:media_common.netflix_genre \"Netflix Genre\") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type)\nWhy did bolivar's unification of Latin America not last?\tTaxonomy Subject\t-6.515\tformula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area \"Newspaper circulation area\") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic \"Vocabulary Equivalent Topic\") (name fb:book.book_subject \"Literature Subject\") (name fb:user.tsegaran.random.taxonomy_subject \"Taxonomy Subject\") (name fb:base.ontologies.ontology_instance \"Ontology Instance\") (name fb:organization.organization_scope \"Organization scope\") (name fb:media_common.netflix_genre \"Netflix Genre\") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type)\nWhy did bolivar's unification of Latin America not last?\tOntology Instance\t-6.515\tformula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area \"Newspaper circulation area\") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic \"Vocabulary Equivalent Topic\") (name fb:book.book_subject \"Literature Subject\") (name fb:user.tsegaran.random.taxonomy_subject \"Taxonomy Subject\") (name fb:base.ontologies.ontology_instance \"Ontology Instance\") (name fb:organization.organization_scope \"Organization scope\") (name fb:media_common.netflix_genre \"Netflix Genre\") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type)\nWhy did bolivar's unification of Latin America not last?\tOrganization scope\t-6.515\tformula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area \"Newspaper circulation area\") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic \"Vocabulary Equivalent Topic\") (name fb:book.book_subject \"Literature Subject\") (name fb:user.tsegaran.random.taxonomy_subject \"Taxonomy Subject\") (name fb:base.ontologies.ontology_instance \"Ontology Instance\") (name fb:organization.organization_scope \"Organization scope\") (name fb:media_common.netflix_genre \"Netflix Genre\") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type)\nWhy did bolivar's unification of Latin America not last?\tNetflix Genre\t-6.515\tformula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area \"Newspaper circulation area\") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic \"Vocabulary Equivalent Topic\") (name fb:book.book_subject \"Literature Subject\") (name fb:user.tsegaran.random.taxonomy_subject \"Taxonomy Subject\") (name fb:base.ontologies.ontology_instance \"Ontology Instance\") (name fb:organization.organization_scope \"Organization scope\") (name fb:media_common.netflix_genre \"Netflix Genre\") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type)\nHow old are people in London?\tNational Express Group\t0.354\tformula ((lambda x (!fb:travel.transportation.transport_operator (!fb:travel.travel_destination.how_to_get_here (var x)))) fb:en.london)) (value (list (name fb:en.national_express_group \"National Express Group\") (name fb:en.eurolines Eurolines) (name fb:en.megabus Megabus) (name fb:en.eurostar Eurostar) (name fb:en.national_rail \"National Rail\"))) (type fb:travel.transport_operator)\nHow old are people in London?\tNational Rail\t0.354\tformula ((lambda x (!fb:travel.transportation.transport_operator (!fb:travel.travel_destination.how_to_get_here (var x)))) fb:en.london)) (value (list (name fb:en.national_express_group \"National Express Group\") (name fb:en.eurolines Eurolines) (name fb:en.megabus Megabus) (name fb:en.eurostar Eurostar) (name fb:en.national_rail \"National Rail\"))) (type fb:travel.transport_operator)\nDo greek soldiers get dog tags?\tMr. Pish Drives\t0.013\tformula (fb:common.image.image_tags fb:en.dog)) (value (list (name fb:m.0l1ynxw 1.jpg) (name fb:m.0dc5s1c \"Mr. Pish Drives\"))) (type fb:common.image)\nDid chris brown have good grades in high school?\tEntertainment Weekly annotation index\t-2.538\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.chris_brown)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nDid chris brown have good grades in high school?\tWSJ Speakeasy Index\t-2.538\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.chris_brown)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nDid chris brown have good grades in high school?\tBlissful Master Index\t-2.538\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.chris_brown)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nDid chris brown have good grades in high school?\tBlissful Celebrities\t-2.538\tformula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.chris_brown)) (value (list (name fb:m.08vh4w5 \"Entertainment Weekly annotation index\") (name fb:m.0b3y3gx \"WSJ Speakeasy Index\") (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nHow old was Nelson Mandela after prison?\tNelson Mandela Metropolitan University\t0.729\tformula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university \"Nelson Mandela Metropolitan University\") (name fb:m.0pwlnw \"Nelson Mandela\") (name fb:m.0sm_wj \"Nelson Mandela\") (name fb:en.nelson_mandela_municipality \"Nelson Mandela Bay Metropolitan Municipality\") (name fb:en.nelson_mandela_institution \"Nelson Mandela Institution\"))) (type fb:symbols.namesake)\nHow old was Nelson Mandela after prison?\tNelson Mandela\t0.729\tformula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university \"Nelson Mandela Metropolitan University\") (name fb:m.0pwlnw \"Nelson Mandela\") (name fb:m.0sm_wj \"Nelson Mandela\") (name fb:en.nelson_mandela_municipality \"Nelson Mandela Bay Metropolitan Municipality\") (name fb:en.nelson_mandela_institution \"Nelson Mandela Institution\"))) (type fb:symbols.namesake)\nHow old was Nelson Mandela after prison?\tNelson Mandela\t0.729\tformula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university \"Nelson Mandela Metropolitan University\") (name fb:m.0pwlnw \"Nelson Mandela\") (name fb:m.0sm_wj \"Nelson Mandela\") (name fb:en.nelson_mandela_municipality \"Nelson Mandela Bay Metropolitan Municipality\") (name fb:en.nelson_mandela_institution \"Nelson Mandela Institution\"))) (type fb:symbols.namesake)\nHow old was Nelson Mandela after prison?\tNelson Mandela Bay Metropolitan Municipality\t0.729\tformula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university \"Nelson Mandela Metropolitan University\") (name fb:m.0pwlnw \"Nelson Mandela\") (name fb:m.0sm_wj \"Nelson Mandela\") (name fb:en.nelson_mandela_municipality \"Nelson Mandela Bay Metropolitan Municipality\") (name fb:en.nelson_mandela_institution \"Nelson Mandela Institution\"))) (type fb:symbols.namesake)\nHow old was Nelson Mandela after prison?\tNelson Mandela Institution\t0.729\tformula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university \"Nelson Mandela Metropolitan University\") (name fb:m.0pwlnw \"Nelson Mandela\") (name fb:m.0sm_wj \"Nelson Mandela\") (name fb:en.nelson_mandela_municipality \"Nelson Mandela Bay Metropolitan Municipality\") (name fb:en.nelson_mandela_institution \"Nelson Mandela Institution\"))) (type fb:symbols.namesake)\nWhere you get high jump and glide in Kingdom Hearts 2?\tDouglas County\t1.293\tformula (and (fb:type.object.type fb:location.location) (fb:location.location.contains fb:en.glide))) (value (list (name fb:en.oregon Oregon) (name fb:en.douglas_county_oregon \"Douglas County\"))) (type fb:location.location)\nAre panthers black?\tSiberia Airlines Flight 1812\t-2.535\tformula (fb:event.disaster.areas_affected fb:en.black_sea)) (value (list (name fb:en.siberia_airlines_flight_1812 \"Siberia Airlines Flight 1812\"))) (type fb:event.disaster)\nWhat is Yo Gabba Gabba?\tBlissful Master Index\t-3.094\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.yo_gabba_gabba))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhat is Yo Gabba Gabba?\tBlissful Celebrities\t-3.094\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.yo_gabba_gabba))) (value (list (name fb:m.0bvlr64 \"Blissful Master Index\") (name fb:en.blissful_celebrities \"Blissful Celebrities\"))) (type fb:common.annotation_index)\nWhy did Samuel warn the Israelites against having a monarch?\tMosaic Tribes\t-7.467\tformula (fb:common.image.appears_in_topic_gallery fb:en.israelite)) (value (list (name fb:m.04smqtp \"Mosaic Tribes\") (name fb:m.02bfg7c \"1759 map Holy Land and 12 Tribes\"))) (type fb:common.image)\nWhy did Samuel warn the Israelites against having a monarch?\t1759 map Holy Land and 12 Tribes\t-7.467\tformula (fb:common.image.appears_in_topic_gallery fb:en.israelite)) (value (list (name fb:m.04smqtp \"Mosaic Tribes\") (name fb:m.02bfg7c \"1759 map Holy Land and 12 Tribes\"))) (type fb:common.image)\nWhat type of government was the House of Burgesses?\tExecutive Producer\t0.307\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:tv.tv_producer_term.producer_type (!fb:tv.tv_program.tv_producer (var x)))) fb:m.04p5cr))) (value (list (name fb:en.producer Producer) (name fb:en.executive_producer \"Executive Producer\") (name fb:en.supervising_producer \"Supervising Producer\") (name fb:en.consulting_producer \"Consulting Producer\"))) (type fb:tv.tv_producer_type)\nWhat type of government was the House of Burgesses?\tSupervising Producer\t0.307\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:tv.tv_producer_term.producer_type (!fb:tv.tv_program.tv_producer (var x)))) fb:m.04p5cr))) (value (list (name fb:en.producer Producer) (name fb:en.executive_producer \"Executive Producer\") (name fb:en.supervising_producer \"Supervising Producer\") (name fb:en.consulting_producer \"Consulting Producer\"))) (type fb:tv.tv_producer_type)\nWhat type of government was the House of Burgesses?\tConsulting Producer\t0.307\tformula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:tv.tv_producer_term.producer_type (!fb:tv.tv_program.tv_producer (var x)))) fb:m.04p5cr))) (value (list (name fb:en.producer Producer) (name fb:en.executive_producer \"Executive Producer\") (name fb:en.supervising_producer \"Supervising Producer\") (name fb:en.consulting_producer \"Consulting Producer\"))) (type fb:tv.tv_producer_type)\nWhere are Abraham Lincoln's parents buried?\tOak Ridge Cemetery\t-1.956\tformula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_burial fb:en.abraham_lincoln))) (value (list (name fb:en.oak_ridge_cemetery \"Oak Ridge Cemetery\"))) (type fb:people.place_of_interment)\n"
  },
  {
    "path": "oqa-data/src/main/scripts/download-oqa-data.sh",
    "content": "#!/usr/bin/env bash\n# Bash3 Boilerplate. Copyright (c) 2014, kvz.io\n\nset -o errexit\nset -o pipefail\nset -o nounset\n# set -o xtrace\n\n# Set magic variables for current file & dir\n__dir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\n\nurl=\"http://knowitall.cs.washington.edu/oqa/data\"\n\noutput_prefix=${__dir}/../../../\nwget_opts=\"-r --no-parent --accept '*.txt,*.gz' --directory-prefix ${output_prefix}\"\n\nif !(hash wget 2>/dev/null); then\n  echo \"Could not find wget.\"\n  exit 1\nfi\n\nwget \\\n  --recursive \\\n  --no-parent \\\n  --accept '*.txt,*.gz' \\\n  --directory-prefix ${output_prefix} \\\n  \"$url\"\n\nwget \\\n  -O ${output_prefix}/knowitall.cs.washington.edu/oqa/data/wikianswers/questions-normalized.txt.gz \\\n  'https://s3-us-west-2.amazonaws.com/ai2-oqa/questions-normalized.txt.gz' \n\nwget \\\n  -O ${output_prefix}/knowitall.cs.washington.edu/oqa/data/wikianswers/wikianswers-brown-clusters-c1000.txt.gz \\\n  'https://s3-us-west-2.amazonaws.com/ai2-oqa/wikianswers-brown-clusters-c1000.txt.gz'\n"
  },
  {
    "path": "oqa-lm/README.md",
    "content": "Language Model\n==============\nOQA uses a language model for scoring during inference. It uses the\n[KenLM](https://kheafield.com/code/kenlm/) software for language modeling.\nThis sub-project has code for downloading KenLM, building KenLM, and using KenLM\nto construct a language model from WikiAnswers. The OQA code accesses the KenLM\nlanguage model by querying an HTTP server started via a python script.\n\nTo build KenLM, you will need Boost installed and the corresponding environment \nvariables set to the Boost `lib` and `include` paths. Using Homebrew on a Mac,\nI had to set these environment variables:\n\n    export LDFLAGS=-L/usr/local/Cellar/boost/1.57.0/lib\n    export LD_LIBRARY_PATH=/usr/local/Cellar/boost/1.57.0/lib\n    export CPLUS_INCLUDE_PATH=/usr/local/Cellar/boost/1.57.0/include\n\nBelow are the steps needed to get the language model component of OQA started.\nPlease look at the script sources if you are interested in what is going on\nin more detail. Each step below depends on the previous step.\n\n# Installing KenLM\nRun `./src/main/scripts/install-kenlm.sh` to download and build KenLM.\n\n**Gotcha:** If you receive an error like this after KenLM builds:\n\n    error: [Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/kenlm.so'\n    \nthen you need to run `sudo` to install the KenLM python bindings. To do this, run these steps:\n\n1. `cd kenlm`\n2. `sudo python setup.py install`\n\n# Building the Language Model\nYou will need to have downloaded the OQA data in order to complete this step.\nRun `./src/main/scripts/build-lm.sh` to build the language model from the\nWikiAnswers data.\n\n# Starting the Language Model Server\nRun `./src/main/scripts/start.sh` to start the server. This will start an \nHTTP server on `localhost:9090`.\n\nCheck the log in `lm.err` for any errors. You may need to install the `web.py` python module.\n\n# Stopping the Language Model Server\nRun `./src/main/scripts/stop.sh` to stop the server.\n"
  },
  {
    "path": "oqa-lm/src/main/scripts/build-lm.sh",
    "content": "#!/usr/bin/env bash                                                             \n# Bash3 Boilerplate. Copyright (c) 2014, kvz.io                                 \n                                                                                \nset -o errexit                                                                  \nset -o pipefail                                                                 \nset -o nounset\n__dir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\n\nbase=${__dir}/../../../\nkenlm=${base}/kenlm\ndata_dir=${base}/../oqa-data/\ndata=${data_dir}/knowitall.cs.washington.edu/oqa/data/wikianswers/questions-normalized.txt.gz\noutput=${base}/questions\n\n$kenlm/bin/lmplz -o 5 < \"$data\" > ${output}.arpa\n$kenlm/bin/build_binary ${output}.arpa ${output}.binary\n"
  },
  {
    "path": "oqa-lm/src/main/scripts/install-kenlm.sh",
    "content": "#!/usr/bin/env bash\n# Bash3 Boilerplate. Copyright (c) 2014, kvz.io\n\nset -o errexit\nset -o pipefail\nset -o nounset\n# set -o xtrace\n\n# Set magic variables for current file & dir\n__dir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\n\nif !(hash wget 2>/dev/null); then\n  echo \"Could not find wget.\"\n  exit 1\nfi\n\nif !(hash python 2>/dev/null); then\n  echo \"Could not find python.\"\n  exit 1\nfi\n\nkenlm_url=\"http://kheafield.com/code/kenlm.tar.gz\"\nlm_dir=\"${__dir}/../../../\"\n\nif [ ! -f \"${lm_dir}/kenlm.tar.gz\" ]; then\n  wget -O \"${lm_dir}/kenlm.tar.gz\" \"${kenlm_url}\"\nfi\ncd ${lm_dir}\ntar xvfz kenlm.tar.gz\ncd kenlm\n./bjam -j4\npython setup.py install\n"
  },
  {
    "path": "oqa-lm/src/main/scripts/server.py",
    "content": "#!/usr/bin/env python\n # -*- coding: utf-8 -*-\nimport web\nimport sys\nimport kenlm\nimport json\nimport os\ndir = os.path.dirname(os.path.realpath(__file__))\n\nlm_path = '%s/../../../questions.binary' % dir\nport = 9090\n\nsys.stderr.write(\"Loading language model from %s...\" % lm_path)\nlm = kenlm.LanguageModel(lm_path)\nsys.stderr.write(\"Done.\\n\")\n\nurls = ('/score', 'score')\n\nclass MyApplication(web.application): \n  def run(self, port=8080, *middleware): \n    func = self.wsgifunc(*middleware) \n    return web.httpserver.runsimple(func, ('0.0.0.0', port)) \n\napp = MyApplication(urls, globals())\n\nclass score:\n\n    def get_scores(self, queries):\n        return [lm.score(q) for q in queries]\n\n    def GET(self):\n        i = web.input(_unicode=False)\n        queries = [q.strip() for q in i.q.split('|')]\n        print >>sys.stderr, \"queries:\\n%s\" % str('\\n'.join(queries))\n        return '\\n'.join('%0.4f' % s for s in self.get_scores(queries))\n\n    def POST(self):\n        return self.GET()\n\nif __name__ == '__main__':\n    app.run(port=port)\n"
  },
  {
    "path": "oqa-lm/src/main/scripts/start.sh",
    "content": "#!/bin/bash\n#set -u\n#set -e\n__dir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\npath=\"${__dir}/../../../\"\nscript=\"${path}/src/main/scripts/server.py\"\necho $script\nnohup $script > ${path}/lm.out 2> ${path}/lm.err &\nEXIT_CODE=$?\nps -p $! > /dev/null\nif [ $? -eq 0 ]; then\n  echo $! > \"${path}/lm.pid\"\n  echo \"Process forked, pid: $!\"\nelse\n  echo \"Failed to start lm\"\n  exit 1\nfi\nexit $EXIT_CODE\n"
  },
  {
    "path": "oqa-lm/src/main/scripts/stop.sh",
    "content": "#!/bin/bash                                                                     \nset -u                                                                          \nset -e                                                                          \n__dir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"                           \npath=\"${__dir}/../../../\"\npid=`cat $path/lm.pid`\nkill $pid\n"
  },
  {
    "path": "oqa-solr/README.md",
    "content": "OQA Solr Components\n===================\nOQA uses [Apache Solr](http://lucene.apache.org/solr/) for storing, indexing,\nand querying data. Three components of OQA are stored in Solr:\n\n1. The knowledge base (called `triplestore`)\n2. The query rewrite templates (called `relsyn`)\n3. The paraphrase templates (called `paraphrase`)\n\nThis sub-project has code for starting/stopping solr instances and adding data\nto the indexes. All of the steps below assume that the OQA data has already\nbeen downloaded.\n\nFor simplicity, I have checked in the configured Solr instances for the above\nthree components in this repository. It is possible to scale this out using \nSolrCloud, but I have not included any code for doing so. The commands below \nwill start one Solr server for each component.\n\n# Starting the Solr Instances\nTo start the Solr instances, run `./src/main/scripts/start-all.sh`. This\nwill start the following Solr servers:\n\n* [http://localhost:8983/solr/#/triplestore](http://localhost:8983/solr/#/triplestore)\n* [http://localhost:8984/solr/#/relsyn](http://localhost:8984/solr/#/relsyn)\n* [http://localhost:8985/solr/#/paraphrase](http://localhost:8985/solr/#/paraphrase)\n\n**Gotcha:** Sometimes it takes a few minutes to start the Solr instances. Tail the `{triplestore, relsyn, paraphrase}.out` files in each Solr subdirectory for more information. If you see a message like `Waiting until we see more replicas up` then give it a bit. Also see [this stackoverflow post](http://stackoverflow.com/questions/15674529/solrcloud-replica-waiting-time-configuration) for more information.\n\n# Stopping the Solr Instances\nTo stop the Solr instances, run `./src/main/scripts/stop-all.sh`.\n\n# Indexing the Data\nTo index the data, first start the Solr instances. Due to the size of the data,\nit is helpful to index only a part of the data first. Run the following script\nto index a subset of the data: `./src/main/scripts/create-indexes-small.sh`.\n\nIf that completes, run this script to index the full data: \n`./src/main/scripts/create-indexes.sh`.\n"
  },
  {
    "path": "oqa-solr/paraphrase/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nSolr example\n------------\n\nThis directory contains an instance of the Jetty Servlet container setup to \nrun Solr using an example configuration.\n\nTo run this example:\n\n  java -jar start.jar\n\nin this example directory, and when Solr is started connect to \n\n  http://localhost:8983/solr/\n\nTo add documents to the index, use the post.jar (or post.sh script) in\nthe example/exampledocs subdirectory (while Solr is running), for example:\n\n     cd exampledocs\n     java -jar post.jar *.xml\nOr:  sh post.sh *.xml\n\nFor more information about this example please read...\n\n * example/solr/README.txt\n   For more information about the \"Solr Home\" and Solr specific configuration\n * http://lucene.apache.org/solr/tutorial.html\n   For a Tutorial using this example configuration\n * http://wiki.apache.org/solr/SolrResources \n   For a list of other tutorials and introductory articles.\n\nNotes About These Examples\n--------------------------\n\n* SolrHome *\n\nBy default, start.jar starts Solr in Jetty using the default Solr Home\ndirectory of \"./solr/\" (relative to the working directory of hte servlet \ncontainer).  To run other example configurations, you can specify the \nsolr.solr.home system property when starting jetty...\n\n  java -Dsolr.solr.home=multicore -jar start.jar\n  java -Dsolr.solr.home=example-DIH/solr -jar start.jar\n\n* References to Jar Files Outside This Directory *\n\nVarious example SolrHome dirs contained in this directory may use \"<lib>\"\nstatements in the solrconfig.xml file to reference plugin jars outside of \nthis directory for loading \"contrib\" plugins via relative paths.  \n\nIf you make a copy of this example server and wish to use the \nExtractingRequestHandler (SolrCell), DataImportHandler (DIH), UIMA, the \nclustering component, or any other modules in \"contrib\", you will need to \ncopy the required jars or update the paths to those jars in your \nsolrconfig.xml.\n\n* Logging *\n\nBy default, Jetty & Solr will log to the console a logs/solr.log. This can be convenient when \nfirst getting started, but eventually you will want to log just to a file. To \nconfigure logging, edit the log4j.properties file in \"resources\".\n \nIt is also possible to setup log4j or other popular logging frameworks.\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/cloud-scripts/zkcli.bat",
    "content": "REM You can override pass the following parameters to this script:\r\nREM \r\n\r\nset JVM=java\r\n\r\nREM  Find location of this script\r\n\r\nset SDIR=%~dp0\r\nif \"%SDIR:~-1%\"==\"\\\" set SDIR=%SDIR:~0,-1%\r\n\r\n     \r\n\"%JVM%\" -classpath \"%SDIR%\\..\\solr-webapp\\webapp\\WEB-INF\\lib\\*;%SDIR%\\..\\lib\\ext\" org.apache.solr.cloud.ZkCLI %*\r\n"
  },
  {
    "path": "oqa-solr/paraphrase/cloud-scripts/zkcli.sh",
    "content": "#!/usr/bin/env bash\n\n# You can override pass the following parameters to this script:\n# \n\nJVM=\"java\"\n\n# Find location of this script\n\nsdir=\"`dirname \\\"$0\\\"`\"\n\n\n$JVM  -classpath \"$sdir/../solr-webapp/webapp/WEB-INF/lib/*:$sdir/../lib/ext/*\" org.apache.solr.cloud.ZkCLI ${1+\"$@\"}\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/contexts/solr-jetty-context.xml",
    "content": "<?xml version=\"1.0\"?>\n<!DOCTYPE Configure PUBLIC \"-//Jetty//Configure//EN\" \"http://www.eclipse.org/jetty/configure.dtd\">\n<Configure class=\"org.eclipse.jetty.webapp.WebAppContext\">\n  <Set name=\"contextPath\"><SystemProperty name=\"hostContext\" default=\"/solr\"/></Set>\n  <Set name=\"war\"><SystemProperty name=\"jetty.home\"/>/webapps/solr.war</Set>\n  <Set name=\"defaultsDescriptor\"><SystemProperty name=\"jetty.home\"/>/etc/webdefault.xml</Set>\n  <Set name=\"tempDirectory\"><Property name=\"jetty.home\" default=\".\"/>/solr-webapp</Set>\n</Configure>\n"
  },
  {
    "path": "oqa-solr/paraphrase/etc/create-solrtest.keystore.sh",
    "content": "#!/bin/bash -ex\n\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n############\n \n# This script shows how the solrtest.keystore file used for solr tests \n# and these example configs was generated.\n#\n# Running this script should only be necessary if the keystore file\n# needs to be replaced, which shouldn't be required until sometime around\n# the year 4751.\n#\n# NOTE: the \"-ext\" option used in the \"keytool\" command requires that you have\n# the java7 version of keytool, but the generated key will work with any \n# version of java\n\necho \"### remove old keystore\"\nrm -f solrtest.keystore\n\necho \"### create keystore and keys\"\nkeytool -keystore solrtest.keystore -storepass \"secret\" -alias solrtest -keypass \"secret\" -genkey -keyalg RSA -dname \"cn=localhost, ou=SolrTest, o=lucene.apache.org, c=US\" -ext \"san=ip:127.0.0.1\" -validity 999999\n\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/etc/jetty.xml",
    "content": "<?xml version=\"1.0\"?>\n<!DOCTYPE Configure PUBLIC \"-//Jetty//Configure//EN\" \"http://www.eclipse.org/jetty/configure.dtd\">\n\n<!-- =============================================================== -->\n<!-- Configure the Jetty Server                                      -->\n<!--                                                                 -->\n<!-- Documentation of this file format can be found at:              -->\n<!-- http://wiki.eclipse.org/Jetty/Reference/jetty.xml_syntax        -->\n<!--                                                                 -->\n<!-- =============================================================== -->\n\n\n<Configure id=\"Server\" class=\"org.eclipse.jetty.server.Server\">\n\n    <!-- =========================================================== -->\n    <!-- Server Thread Pool                                          -->\n    <!-- =========================================================== -->\n    <Set name=\"ThreadPool\">\n      <!-- Default queued blocking threadpool -->\n      <New class=\"org.eclipse.jetty.util.thread.QueuedThreadPool\">\n        <Set name=\"minThreads\">10</Set>\n        <Set name=\"maxThreads\">10000</Set>\n        <Set name=\"detailedDump\">false</Set>\n      </New>\n    </Set>\n\n    <!-- =========================================================== -->\n    <!-- Set connectors                                              -->\n    <!-- =========================================================== -->\n\n  <!--\n    <Call name=\"addConnector\">\n      <Arg>\n          <New class=\"org.eclipse.jetty.server.nio.SelectChannelConnector\">\n            <Set name=\"host\"><SystemProperty name=\"jetty.host\" /></Set>\n            <Set name=\"port\"><SystemProperty name=\"jetty.port\" default=\"8983\"/></Set>\n            <Set name=\"maxIdleTime\">50000</Set>\n            <Set name=\"Acceptors\">2</Set>\n            <Set name=\"statsOn\">false</Set>\n            <Set name=\"confidentialPort\">8443</Set>\n\t    <Set name=\"lowResourcesConnections\">5000</Set>\n\t    <Set name=\"lowResourcesMaxIdleTime\">5000</Set>\n          </New>\n      </Arg>\n    </Call>\n  -->\n\n    <!-- This connector is currently being used for Solr because it\n          showed better performance than nio.SelectChannelConnector\n          for typical Solr requests.  -->\n    <Call name=\"addConnector\">\n      <Arg>\n          <New class=\"org.eclipse.jetty.server.bio.SocketConnector\">\n            <Call class=\"java.lang.System\" name=\"setProperty\"> <Arg>log4j.configuration</Arg> <Arg>etc/log4j.properties</Arg> </Call>\n            <Set name=\"host\"><SystemProperty name=\"jetty.host\" /></Set>\n            <Set name=\"port\"><SystemProperty name=\"jetty.port\" default=\"8983\"/></Set>\n            <Set name=\"maxIdleTime\">50000</Set>\n            <Set name=\"lowResourceMaxIdleTime\">1500</Set>\n            <Set name=\"statsOn\">false</Set>\n          </New>\n      </Arg>\n    </Call>\n\n    <!-- if the connector below is uncommented, then jetty will also accept SSL\n         connections on port 8984, using a self signed certificate and can \n         optionally require the client to authenticate with a certificate. \n         (which can be the same as the server certificate_\n         \n         # Run solr example with SSL on port 8984\n         java -jar start.jar\n         # \n         # Run post.jar so that it trusts the server cert...\n         java -Djavax.net.ssl.trustStore=../etc/solrtest.keystore -Durl=https://localhost:8984/solr/update -jar post.jar *.xml\n\n         # Run solr example with SSL requiring client certs on port 8984\n         java -Djetty.ssl.clientAuth=true -jar start.jar\n         #\n         # Run post.jar so that it trusts the server cert, \n         # and authenticates with a client cert\n         java -Djavax.net.ssl.keyStorePassword=secret -Djavax.net.ssl.keyStore=../etc/solrtest.keystore -Djavax.net.ssl.trustStore=../etc/solrtest.keystore -Durl=https://localhost:8984/solr/update -jar post.jar *.xml\n\n    -->\n    <!--\n    <Call name=\"addConnector\">\n      <Arg>\n        <New class=\"org.eclipse.jetty.server.ssl.SslSelectChannelConnector\">\n          <Arg>\n            <New class=\"org.eclipse.jetty.http.ssl.SslContextFactory\">\n              <Set name=\"keyStore\"><SystemProperty name=\"jetty.home\" default=\".\"/>/etc/solrtest.keystore</Set>\n              <Set name=\"keyStorePassword\">secret</Set>\n              <Set name=\"needClientAuth\"><SystemProperty name=\"jetty.ssl.clientAuth\" default=\"false\"/></Set>\n            </New>\n          </Arg>\n          <Set name=\"port\"><SystemProperty name=\"jetty.ssl.port\" default=\"8984\"/></Set>\n          <Set name=\"maxIdleTime\">30000</Set>\n        </New>\n      </Arg>\n    </Call>\n    -->\n\n    <!-- =========================================================== -->\n    <!-- Set handler Collection Structure                            --> \n    <!-- =========================================================== -->\n    <Set name=\"handler\">\n      <New id=\"Handlers\" class=\"org.eclipse.jetty.server.handler.HandlerCollection\">\n        <Set name=\"handlers\">\n         <Array type=\"org.eclipse.jetty.server.Handler\">\n           <Item>\n             <New id=\"Contexts\" class=\"org.eclipse.jetty.server.handler.ContextHandlerCollection\"/>\n           </Item>\n           <Item>\n             <New id=\"DefaultHandler\" class=\"org.eclipse.jetty.server.handler.DefaultHandler\"/>\n           </Item>\n           <Item>\n             <New id=\"RequestLog\" class=\"org.eclipse.jetty.server.handler.RequestLogHandler\"/>\n           </Item>\n         </Array>\n        </Set>\n      </New>\n    </Set>\n    \n    <!-- =========================================================== -->\n    <!-- Configure Request Log                                       -->\n    <!-- =========================================================== -->\n    <!-- \n    <Ref id=\"Handlers\">\n      <Call name=\"addHandler\">\n        <Arg>\n          <New id=\"RequestLog\" class=\"org.eclipse.jetty.server.handler.RequestLogHandler\">\n            <Set name=\"requestLog\">\n              <New id=\"RequestLogImpl\" class=\"org.eclipse.jetty.server.NCSARequestLog\">\n                <Set name=\"filename\">\n                   logs/request.yyyy_mm_dd.log\n                </Set>\n                <Set name=\"filenameDateFormat\">yyyy_MM_dd</Set>\n                <Set name=\"retainDays\">90</Set>\n                <Set name=\"append\">true</Set>\n                <Set name=\"extended\">false</Set>\n                <Set name=\"logCookies\">false</Set>\n                <Set name=\"LogTimeZone\">UTC</Set>\n              </New>\n            </Set>\n          </New>\n        </Arg>\n      </Call>\n    </Ref>\n    -->\n\n    <!-- =========================================================== -->\n    <!-- extra options                                               -->\n    <!-- =========================================================== -->\n    <Set name=\"stopAtShutdown\">true</Set>\n    <Set name=\"sendServerVersion\">false</Set>\n    <Set name=\"sendDateHeader\">false</Set>\n    <Set name=\"gracefulShutdown\">1000</Set>\n    <Set name=\"dumpAfterStart\">false</Set>\n    <Set name=\"dumpBeforeStop\">false</Set>\n\n\n\n\n    <Call name=\"addBean\">\n      <Arg>\n        <New id=\"DeploymentManager\" class=\"org.eclipse.jetty.deploy.DeploymentManager\">\n          <Set name=\"contexts\">\n            <Ref id=\"Contexts\" />\n          </Set>\n          <Call name=\"setContextAttribute\">\n            <Arg>org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern</Arg>\n            <Arg>.*/servlet-api-[^/]*\\.jar$</Arg>\n          </Call>\n          \n          \n          <!-- Add a customize step to the deployment lifecycle -->\n          <!-- uncomment and replace DebugBinding with your extended AppLifeCycle.Binding class \n          <Call name=\"insertLifeCycleNode\">\n            <Arg>deployed</Arg>\n            <Arg>starting</Arg>\n            <Arg>customise</Arg>\n          </Call>\n          <Call name=\"addLifeCycleBinding\">\n            <Arg>\n              <New class=\"org.eclipse.jetty.deploy.bindings.DebugBinding\">\n                <Arg>customise</Arg>\n              </New>\n            </Arg>\n          </Call>\n          -->\n          \n        </New>\n      </Arg>\n    </Call>\n    \n    <Ref id=\"DeploymentManager\">\n      <Call name=\"addAppProvider\">\n        <Arg>\n          <New class=\"org.eclipse.jetty.deploy.providers.ContextProvider\">\n            <Set name=\"monitoredDirName\"><SystemProperty name=\"jetty.home\" default=\".\"/>/contexts</Set>\n            <Set name=\"scanInterval\">0</Set>\n          </New>\n        </Arg>\n      </Call>\n    </Ref>\n\n</Configure>\n"
  },
  {
    "path": "oqa-solr/paraphrase/etc/logging.properties",
    "content": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\n# To use this log config, start solr with the following system property: \n# -Djava.util.logging.config.file=etc/logging.properties\n\n## Default global logging level:\n.level = INFO\n\n## Log every update command (add, delete, commit, ...)\n#org.apache.solr.update.processor.LogUpdateProcessor.level = FINE\n\n## Where to log (space separated list).\nhandlers = java.util.logging.FileHandler\n\njava.util.logging.FileHandler.level = FINE\n\njava.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter\n\n# 1 GB limit per file\njava.util.logging.FileHandler.limit = 1073741824\n\n# Log to the logs directory, with log files named solrxxx.log\njava.util.logging.FileHandler.pattern = ./logs/solr%u.log"
  },
  {
    "path": "oqa-solr/paraphrase/etc/webdefault.xml",
    "content": "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n\n  <!-- ===================================================================== -->\n  <!-- This file contains the default descriptor for web applications.       -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->\n  <!-- The intent of this descriptor is to include jetty specific or common  -->\n  <!-- configuration for all webapps.   If a context has a webdefault.xml    -->\n  <!-- descriptor, it is applied before the contexts own web.xml file        -->\n  <!--                                                                       -->\n  <!-- A context may be assigned a default descriptor by:                    -->\n  <!--  + Calling WebApplicationContext.setDefaultsDescriptor                -->\n  <!--  + Passed an arg to addWebApplications                                -->\n  <!--                                                                       -->\n  <!-- This file is used both as the resource within the jetty.jar (which is -->\n  <!-- used as the default if no explicit defaults descriptor is set) and it -->\n  <!-- is copied to the etc directory of the Jetty distro and explicitly     -->\n  <!-- by the jetty.xml file.                                                -->\n  <!--                                                                       -->\n  <!-- ===================================================================== -->\n<web-app\n  xmlns=\"http://java.sun.com/xml/ns/javaee\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd\"\n  metadata-complete=\"true\"\n  version=\"2.5\"\n>\n\n  <description>\n    Default web.xml file.  \n    This file is applied to a Web application before it's own WEB_INF/web.xml file\n  </description>\n\n  <!-- ==================================================================== -->\n  <!-- Removes static references to beans from javax.el.BeanELResolver to   -->\n  <!-- ensure webapp classloader can be released on undeploy                -->\n  <!-- ==================================================================== -->\n  <listener>\n   <listener-class>org.eclipse.jetty.servlet.listener.ELContextCleaner</listener-class>\n  </listener>\n  \n  <!-- ==================================================================== -->\n  <!-- Removes static cache of Methods from java.beans.Introspector to      -->\n  <!-- ensure webapp classloader can be released on undeploy                -->\n  <!-- ==================================================================== -->  \n  <listener>\n   <listener-class>org.eclipse.jetty.servlet.listener.IntrospectorCleaner</listener-class>\n  </listener>\n  \n\n  <!-- ==================================================================== -->\n  <!-- Context params to control Session Cookies                            -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!--\n    UNCOMMENT TO ACTIVATE <context-param> <param-name>org.eclipse.jetty.servlet.SessionDomain</param-name> <param-value>127.0.0.1</param-value> </context-param> <context-param>\n    <param-name>org.eclipse.jetty.servlet.SessionPath</param-name> <param-value>/</param-value> </context-param> <context-param> <param-name>org.eclipse.jetty.servlet.MaxAge</param-name>\n    <param-value>-1</param-value> </context-param>\n  -->\n\n  <!-- ==================================================================== -->\n  <!-- The default servlet.                                                 -->\n  <!-- This servlet, normally mapped to /, provides the handling for static -->\n  <!-- content, OPTIONS and TRACE methods for the context.                  -->\n  <!-- The following initParameters are supported:                          -->\n  <!--  \n *  acceptRanges      If true, range requests and responses are\n *                    supported\n *\n *  dirAllowed        If true, directory listings are returned if no\n *                    welcome file is found. Else 403 Forbidden.\n *\n *  welcomeServlets   If true, attempt to dispatch to welcome files\n *                    that are servlets, but only after no matching static\n *                    resources could be found. If false, then a welcome\n *                    file must exist on disk. If \"exact\", then exact\n *                    servlet matches are supported without an existing file.\n *                    Default is true.\n *\n *                    This must be false if you want directory listings,\n *                    but have index.jsp in your welcome file list.\n *\n *  redirectWelcome   If true, welcome files are redirected rather than\n *                    forwarded to.\n *\n *  gzip              If set to true, then static content will be served as\n *                    gzip content encoded if a matching resource is\n *                    found ending with \".gz\"\n *\n *  resourceBase      Set to replace the context resource base\n *\n *  resourceCache     If set, this is a context attribute name, which the servlet \n *                    will use to look for a shared ResourceCache instance. \n *                        \n *  relativeResourceBase\n *                    Set with a pathname relative to the base of the\n *                    servlet context root. Useful for only serving static content out\n *                    of only specific subdirectories.\n *\n *  aliases           If True, aliases of resources are allowed (eg. symbolic\n *                    links and caps variations). May bypass security constraints.\n *\n *  maxCacheSize      The maximum total size of the cache or 0 for no cache.\n *  maxCachedFileSize The maximum size of a file to cache\n *  maxCachedFiles    The maximum number of files to cache\n *\n *  useFileMappedBuffer\n *                    If set to true, it will use mapped file buffer to serve static content\n *                    when using NIO connector. Setting this value to false means that\n *                    a direct buffer will be used instead of a mapped file buffer.\n *                    By default, this is set to true.\n *\n *  cacheControl      If set, all static content will have this value set as the cache-control\n *                    header.\n -->\n \n \n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <servlet>\n    <servlet-name>default</servlet-name>\n    <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>\n    <init-param>\n      <param-name>aliases</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>acceptRanges</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>dirAllowed</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>welcomeServlets</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>redirectWelcome</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCacheSize</param-name>\n      <param-value>256000000</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCachedFileSize</param-name>\n      <param-value>200000000</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCachedFiles</param-name>\n      <param-value>2048</param-value>\n    </init-param>\n    <init-param>\n      <param-name>gzip</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>useFileMappedBuffer</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <!--\n    <init-param>\n      <param-name>resourceCache</param-name>\n      <param-value>resourceCache</param-value>\n    </init-param>\n    -->\n    <!--\n    <init-param>\n      <param-name>cacheControl</param-name>\n      <param-value>max-age=3600,public</param-value>\n    </init-param>\n    -->\n    <load-on-startup>0</load-on-startup>\n  </servlet>\n\n  <servlet-mapping>\n    <servlet-name>default</servlet-name>\n    <url-pattern>/</url-pattern>\n  </servlet-mapping>\n\n\n  <!-- ==================================================================== -->\n  <!-- JSP Servlet                                                          -->\n  <!-- This is the jasper JSP servlet from the jakarta project              -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!-- The JSP page compiler and execution servlet, which is the mechanism  -->\n  <!-- used by Glassfish to support JSP pages.  Traditionally, this servlet -->\n  <!-- is mapped to URL patterh \"*.jsp\".  This servlet supports the         -->\n  <!-- following initialization parameters (default values are in square    -->\n  <!-- brackets):                                                           -->\n  <!--                                                                      -->\n  <!--   checkInterval       If development is false and reloading is true, -->\n  <!--                       background compiles are enabled. checkInterval -->\n  <!--                       is the time in seconds between checks to see   -->\n  <!--                       if a JSP page needs to be recompiled. [300]    -->\n  <!--                                                                      -->\n  <!--   compiler            Which compiler Ant should use to compile JSP   -->\n  <!--                       pages.  See the Ant documenation for more      -->\n  <!--                       information. [javac]                           -->\n  <!--                                                                      -->\n  <!--   classdebuginfo      Should the class file be compiled with         -->\n  <!--                       debugging information?  [true]                 -->\n  <!--                                                                      -->\n  <!--   classpath           What class path should I use while compiling   -->\n  <!--                       generated servlets?  [Created dynamically      -->\n  <!--                       based on the current web application]          -->\n  <!--                       Set to ? to make the container explicitly set  -->\n  <!--                       this parameter.                                -->\n  <!--                                                                      -->\n  <!--   development         Is Jasper used in development mode (will check -->\n  <!--                       for JSP modification on every access)?  [true] -->\n  <!--                                                                      -->\n  <!--   enablePooling       Determines whether tag handler pooling is      -->\n  <!--                       enabled  [true]                                -->\n  <!--                                                                      -->\n  <!--   fork                Tell Ant to fork compiles of JSP pages so that -->\n  <!--                       a separate JVM is used for JSP page compiles   -->\n  <!--                       from the one Tomcat is running in. [true]      -->\n  <!--                                                                      -->\n  <!--   ieClassId           The class-id value to be sent to Internet      -->\n  <!--                       Explorer when using <jsp:plugin> tags.         -->\n  <!--                       [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93]   -->\n  <!--                                                                      -->\n  <!--   javaEncoding        Java file encoding to use for generating java  -->\n  <!--                       source files. [UTF-8]                          -->\n  <!--                                                                      -->\n  <!--   keepgenerated       Should we keep the generated Java source code  -->\n  <!--                       for each page instead of deleting it? [true]   -->\n  <!--                                                                      -->\n  <!--   logVerbosityLevel   The level of detailed messages to be produced  -->\n  <!--                       by this servlet.  Increasing levels cause the  -->\n  <!--                       generation of more messages.  Valid values are -->\n  <!--                       FATAL, ERROR, WARNING, INFORMATION, and DEBUG. -->\n  <!--                       [WARNING]                                      -->\n  <!--                                                                      -->\n  <!--   mappedfile          Should we generate static content with one     -->\n  <!--                       print statement per input line, to ease        -->\n  <!--                       debugging?  [false]                            -->\n  <!--                                                                      -->\n  <!--                                                                      -->\n  <!--   reloading           Should Jasper check for modified JSPs?  [true] -->\n  <!--                                                                      -->\n  <!--   suppressSmap        Should the generation of SMAP info for JSR45   -->\n  <!--                       debugging be suppressed?  [false]              -->\n  <!--                                                                      -->\n  <!--   dumpSmap            Should the SMAP info for JSR45 debugging be    -->\n  <!--                       dumped to a file? [false]                      -->\n  <!--                       False if suppressSmap is true                  -->\n  <!--                                                                      -->\n  <!--   scratchdir          What scratch directory should we use when      -->\n  <!--                       compiling JSP pages?  [default work directory  -->\n  <!--                       for the current web application]               -->\n  <!--                                                                      -->\n  <!--   tagpoolMaxSize      The maximum tag handler pool size  [5]         -->\n  <!--                                                                      -->\n  <!--   xpoweredBy          Determines whether X-Powered-By response       -->\n  <!--                       header is added by generated servlet  [false]  -->\n  <!--                                                                      -->\n  <!-- If you wish to use Jikes to compile JSP pages:                       -->\n  <!--   Set the init parameter \"compiler\" to \"jikes\".  Define              -->\n  <!--   the property \"-Dbuild.compiler.emacs=true\" when starting Jetty     -->\n  <!--   to cause Jikes to emit error messages in a format compatible with  -->\n  <!--   Jasper.                                                            -->\n  <!--   If you get an error reporting that jikes can't use UTF-8 encoding, -->\n  <!--   try setting the init parameter \"javaEncoding\" to \"ISO-8859-1\".     -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <servlet\n    id=\"jsp\"\n  >\n    <servlet-name>jsp</servlet-name>\n    <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>\n    <init-param>\n      <param-name>logVerbosityLevel</param-name>\n      <param-value>DEBUG</param-value>\n    </init-param>\n    <init-param>\n      <param-name>fork</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>xpoweredBy</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <!--  \n    <init-param>\n        <param-name>classpath</param-name>\n        <param-value>?</param-value>\n    </init-param>\n    -->\n    <load-on-startup>0</load-on-startup>\n  </servlet>\n\n  <servlet-mapping>\n    <servlet-name>jsp</servlet-name>\n    <url-pattern>*.jsp</url-pattern>\n    <url-pattern>*.jspf</url-pattern>\n    <url-pattern>*.jspx</url-pattern>\n    <url-pattern>*.xsp</url-pattern>\n    <url-pattern>*.JSP</url-pattern>\n    <url-pattern>*.JSPF</url-pattern>\n    <url-pattern>*.JSPX</url-pattern>\n    <url-pattern>*.XSP</url-pattern>\n  </servlet-mapping>\n\n  <!-- ==================================================================== -->\n  <!-- Dynamic Servlet Invoker.                                             -->\n  <!-- This servlet invokes anonymous servlets that have not been defined   -->\n  <!-- in the web.xml or by other means. The first element of the pathInfo  -->\n  <!-- of a request passed to the envoker is treated as a servlet name for  -->\n  <!-- an existing servlet, or as a class name of a new servlet.            -->\n  <!-- This servlet is normally mapped to /servlet/*                        -->\n  <!-- This servlet support the following initParams:                       -->\n  <!--                                                                      -->\n  <!--  nonContextServlets       If false, the invoker can only load        -->\n  <!--                           servlets from the contexts classloader.    -->\n  <!--                           This is false by default and setting this  -->\n  <!--                           to true may have security implications.    -->\n  <!--                                                                      -->\n  <!--  verbose                  If true, log dynamic loads                 -->\n  <!--                                                                      -->\n  <!--  *                        All other parameters are copied to the     -->\n  <!--                           each dynamic servlet as init parameters    -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!--\n    Uncomment for dynamic invocation <servlet> <servlet-name>invoker</servlet-name> <servlet-class>org.eclipse.jetty.servlet.Invoker</servlet-class> <init-param> <param-name>verbose</param-name>\n    <param-value>false</param-value> </init-param> <init-param> <param-name>nonContextServlets</param-name> <param-value>false</param-value> </init-param> <init-param>\n    <param-name>dynamicParam</param-name> <param-value>anyValue</param-value> </init-param> <load-on-startup>0</load-on-startup> </servlet> <servlet-mapping> <servlet-name>invoker</servlet-name>\n    <url-pattern>/servlet/*</url-pattern> </servlet-mapping>\n  -->\n\n\n\n  <!-- ==================================================================== -->\n  <session-config>\n    <session-timeout>30</session-timeout>\n  </session-config>\n\n  <!-- ==================================================================== -->\n  <!-- Default MIME mappings                                                -->\n  <!-- The default MIME mappings are provided by the mime.properties        -->\n  <!-- resource in the org.eclipse.jetty.server.jar file.  Additional or modified  -->\n  <!-- mappings may be specified here                                       -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!-- UNCOMMENT TO ACTIVATE\n  <mime-mapping>\n    <extension>mysuffix</extension>\n    <mime-type>mymime/type</mime-type>\n  </mime-mapping>\n  -->\n\n  <!-- ==================================================================== -->\n  <welcome-file-list>\n    <welcome-file>index.html</welcome-file>\n    <welcome-file>index.htm</welcome-file>\n    <welcome-file>index.jsp</welcome-file>\n  </welcome-file-list>\n\n  <!-- ==================================================================== -->\n  <locale-encoding-mapping-list>\n    <locale-encoding-mapping>\n      <locale>ar</locale>\n      <encoding>ISO-8859-6</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>be</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>bg</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ca</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>cs</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>da</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>de</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>el</locale>\n      <encoding>ISO-8859-7</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>en</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>es</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>et</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>fi</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>fr</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>hr</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>hu</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>is</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>it</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>iw</locale>\n      <encoding>ISO-8859-8</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ja</locale>\n      <encoding>Shift_JIS</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ko</locale>\n      <encoding>EUC-KR</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>lt</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>lv</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>mk</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>nl</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>no</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>pl</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>pt</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ro</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ru</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sh</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sk</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sl</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sq</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sr</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sv</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>tr</locale>\n      <encoding>ISO-8859-9</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>uk</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>zh</locale>\n      <encoding>GB2312</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>zh_TW</locale>\n      <encoding>Big5</encoding>\n    </locale-encoding-mapping>\n  </locale-encoding-mapping-list>\n\n  <security-constraint>\n    <web-resource-collection>\n      <web-resource-name>Disable TRACE</web-resource-name>\n      <url-pattern>/</url-pattern>\n      <http-method>TRACE</http-method>\n    </web-resource-collection>\n    <auth-constraint/>\n  </security-constraint>\n\n</web-app>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nSolr DataImportHandler example configuration\n--------------------------------------------\n\nChange to the parent (example) directory. Start solr by executing the following command \n\n> cd ..\n> java -Dsolr.solr.home=\"./example-DIH/solr/\" -jar start.jar\n\nin this directory, and when Solr is started connect to \n\n  http://localhost:8983/solr/\n\nTo import data from the hsqldb database, connect to\n\n  http://localhost:8983/solr/db/dataimport?command=full-import\n\nTo import data from the slashdot feed, connect to\n\n  http://localhost:8983/solr/rss/dataimport?command=full-import\n\nTo import data from your imap server\n\n1. Edit the example-DIH/solr/mail/conf/data-config.xml and add details about username, password, imap server\n2. Connect to http://localhost:8983/solr/mail/dataimport?command=full-import\n\nTo copy data from db Solr core, connect to\n\n http://localhost:8983/solr/solr/dataimport?command=full-import\n\nSee also README.txt in the solr subdirectory, and check\nhttp://wiki.apache.org/solr/DataImportHandler for detailed\nusage guide and tutorial.\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/hsqldb/ex.log",
    "content": "/*C1*/SET SCHEMA PUBLIC\nCONNECT USER SA\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/hsqldb/ex.properties",
    "content": "#HSQL Database Engine 1.8.0.5\n#Fri Aug 29 10:24:33 IST 2008\nhsqldb.script_format=0\nruntime.gc_interval=0\nsql.enforce_strict_size=false\nhsqldb.cache_size_scale=8\nreadonly=false\nhsqldb.nio_data_file=true\nhsqldb.cache_scale=14\nversion=1.8.0\nhsqldb.default_table_type=memory\nhsqldb.cache_file_scale=1\nhsqldb.log_size=200\nmodified=yes\nhsqldb.cache_version=1.7.0\nhsqldb.original_version=1.8.0\nhsqldb.compatible_version=1.8.0\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/hsqldb/ex.script",
    "content": "CREATE SCHEMA PUBLIC AUTHORIZATION DBA\nCREATE CACHED TABLE ITEM(ID CHAR(8),NAME VARCHAR(100),MANU VARCHAR(50),WEIGHT REAL,PRICE REAL,POPULARITY INTEGER,INCLUDES VARCHAR(200),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE FEATURE(ITEM_ID CHAR(8),DESCRIPTION VARCHAR(200),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE CATEGORY(ID INTEGER,DESCRIPTION VARCHAR(30),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE ITEM_CATEGORY(ITEM_ID CHAR(8),CATEGORY_ID INTEGER,LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nSET TABLE ITEM INDEX'15056 0'\nSET TABLE FEATURE INDEX'22424 0'\nSET TABLE CATEGORY INDEX'18856 0'\nSET TABLE ITEM_CATEGORY INDEX'17328 0'\nCREATE USER SA PASSWORD \"\"\nGRANT DBA TO SA\nSET WRITE_DELAY 20\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/db-data-config.xml",
    "content": "<dataConfig>\n    <dataSource driver=\"org.hsqldb.jdbcDriver\" url=\"jdbc:hsqldb:./example-DIH/hsqldb/ex\" user=\"sa\" />\n    <document>\n        <entity name=\"item\" query=\"select * from item\"\n                deltaQuery=\"select id from item where last_modified > '${dataimporter.last_index_time}'\">\n            <field column=\"NAME\" name=\"name\" />\n\n            <entity name=\"feature\"  \n                    query=\"select DESCRIPTION from FEATURE where ITEM_ID='${item.ID}'\"\n                    deltaQuery=\"select ITEM_ID from FEATURE where last_modified > '${dataimporter.last_index_time}'\"\n                    parentDeltaQuery=\"select ID from item where ID=${feature.ITEM_ID}\">\n                <field name=\"features\" column=\"DESCRIPTION\" />\n            </entity>\n            \n            <entity name=\"item_category\"\n                    query=\"select CATEGORY_ID from item_category where ITEM_ID='${item.ID}'\"\n                    deltaQuery=\"select ITEM_ID, CATEGORY_ID from item_category where last_modified > '${dataimporter.last_index_time}'\"\n                    parentDeltaQuery=\"select ID from item where ID=${item_category.ITEM_ID}\">\n                <entity name=\"category\"\n                        query=\"select DESCRIPTION from category where ID = '${item_category.CATEGORY_ID}'\"\n                        deltaQuery=\"select ID from category where last_modified > '${dataimporter.last_index_time}'\"\n                        parentDeltaQuery=\"select ITEM_ID, CATEGORY_ID from item_category where CATEGORY_ID=${category.ID}\">\n                    <field column=\"description\" name=\"cat\" />\n                </entity>\n            </entity>\n        </entity>\n    </document>\n</dataConfig>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"db\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n   <field name=\"id\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" multiValued=\"false\" /> \n   <field name=\"sku\" type=\"textTight\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"name\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"nameSort\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"alphaNameSort\" type=\"alphaOnlySort\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"manu\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"cat\" type=\"text_ws\" indexed=\"true\" stored=\"true\" multiValued=\"true\" omitNorms=\"true\" termVectors=\"true\" />\n   <field name=\"features\" type=\"text\" indexed=\"true\" stored=\"true\" multiValued=\"true\"/>\n   <field name=\"includes\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n\n   <field name=\"weight\" type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"price\"  type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <!-- \"default\" values can be specified for fields, indicating which\n        value should be used if no value is specified when adding a document.\n     -->\n   <field name=\"popularity\" type=\"sint\" indexed=\"true\" stored=\"true\" default=\"0\"/>\n   <field name=\"inStock\" type=\"boolean\" indexed=\"true\" stored=\"true\"/>\n\n   <!-- Some sample docs exists solely to demonstrate the spellchecker\n        functionality, this is the only field they container.\n        Typically you might build the spellchecker of \"catchall\" type field\n        containing all of the text in each document\n     -->\n   <field name=\"word\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n\n   \n   <!-- catchall field, containing all other searchable text fields (implemented\n        via copyField further on in this schema  -->\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\"/>\n\n   <!-- non-tokenized version of manufacturer to make it easier to sort or group\n        results by manufacturer.  copied from \"manu\" via copyField -->\n   <field name=\"manu_exact\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n\n   <!-- Dynamic field definitions.  If a field name is not found, dynamicFields\n        will be used if the name matches any of the patterns.\n        RESTRICTION: the glob-like pattern in the name attribute must have\n        a \"*\" only at the start or the end.\n        EXAMPLE:  name=\"*_i\" will match any field ending in _i (like myid_i, z_i)\n        Longer patterns will be matched first.  if equal size patterns\n        both match, the first appearing in the schema will be used.  -->\n   <dynamicField name=\"*_i\"  type=\"sint\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_s\"  type=\"string\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_l\"  type=\"slong\"   indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_t\"  type=\"text\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_b\"  type=\"boolean\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_f\"  type=\"sfloat\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_d\"  type=\"sdouble\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_dt\" type=\"date\"    indexed=\"true\"  stored=\"true\"/>\n\n   <dynamicField name=\"random*\" type=\"random\" />\n\n   <!-- uncomment the following to ignore any fields that don't already match an existing \n        field name or dynamic field, rather than reporting them as an error. \n        alternately, change the type=\"ignored\" to some other type e.g. \"text\" if you want \n        unknown fields indexed and/or stored by default --> \n   <!--dynamicField name=\"*\" type=\"ignored\" multiValued=\"true\" /-->\n   \n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n  <!-- copyField commands copy one field to another at the time a document\n        is added to the index.  It's used either to index the same field differently,\n        or to add multiple fields to the same field for easier/faster searching.  -->\n   <copyField source=\"id\" dest=\"sku\"/>\n\n   <copyField source=\"cat\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"nameSort\"/>\n   <copyField source=\"name\" dest=\"alphaNameSort\"/>\n   <copyField source=\"manu\" dest=\"text\"/>\n   <copyField source=\"features\" dest=\"text\"/>\n   <copyField source=\"includes\" dest=\"text\"/>\n\n   <copyField source=\"manu\" dest=\"manu_exact\"/>\n\n <!-- Similarity is the scoring routine for each document vs. a query.\n      A custom similarity may be specified here, but the default is fine\n      for most applications.  -->\n <!-- <similarity class=\"org.apache.lucene.search.similarities.DefaultSimilarity\"/> -->\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n    \t<str name=\"config\">db-data-config.xml</str>\n    </lst>\n  </requestHandler>\n   \n  \n  \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\\"']{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/xslt/example.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to HTML\n -->\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'\n>\n\n  <xsl:output media-type=\"text/html; charset=UTF-8\" encoding=\"UTF-8\"/> \n  \n  <xsl:variable name=\"title\" select=\"concat('Solr search results (',response/result/@numFound,' documents)')\"/>\n  \n  <xsl:template match='/'>\n    <html>\n      <head>\n        <title><xsl:value-of select=\"$title\"/></title>\n        <xsl:call-template name=\"css\"/>\n      </head>\n      <body>\n        <h1><xsl:value-of select=\"$title\"/></h1>\n        <div class=\"note\">\n          This has been formatted by the sample \"example.xsl\" transform -\n          use your own XSLT to get a nicer page\n        </div>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n      </body>\n    </html>\n  </xsl:template>\n  \n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <div class=\"doc\">\n      <table width=\"100%\">\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n      </table>\n    </div>\n  </xsl:template>\n\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n    <xsl:param name=\"pos\"></xsl:param>\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n\n        <xsl:if test=\"boolean(//lst[@name='explain'])\">\n          <xsl:element name=\"a\">\n            <!-- can't allow whitespace here -->\n            <xsl:attribute name=\"href\">javascript:toggle(\"<xsl:value-of select=\"concat('exp-',$pos)\" />\");</xsl:attribute>?</xsl:element>\n          <br/>\n          <xsl:element name=\"div\">\n            <xsl:attribute name=\"class\">exp</xsl:attribute>\n            <xsl:attribute name=\"id\">\n              <xsl:value-of select=\"concat('exp-',$pos)\" />\n            </xsl:attribute>\n            <xsl:value-of select=\"//lst[@name='explain']/str[position()=$pos]\"/>\n          </xsl:element>\n        </xsl:if>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <ul>\n        <xsl:for-each select=\"*\">\n          <li><xsl:value-of select=\".\"/></li>\n        </xsl:for-each>\n        </ul>\n      </td>\n    </tr>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n  \n  <xsl:template name=\"css\">\n    <script>\n      function toggle(id) {\n        var obj = document.getElementById(id);\n        obj.style.display = (obj.style.display != 'block') ? 'block' : 'none';\n      }\n    </script>\n    <style type=\"text/css\">\n      body { font-family: \"Lucida Grande\", sans-serif }\n      td.name { font-style: italic; font-size:80%; }\n      td { vertical-align: top; }\n      ul { margin: 0px; margin-left: 1em; padding: 0px; }\n      .note { font-size:80%; }\n      .doc { margin-top: 1em; border-top: solid grey 1px; }\n      .exp { display: none; font-family: monospace; white-space: pre; }\n    </style>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/xslt/example_atom.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to Atom\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output method=\"xml\" encoding=\"utf-8\" />\n\n  <xsl:template match='/'>\n    <xsl:variable name=\"query\" select=\"response/lst[@name='responseHeader']/lst[@name='params']/str[@name='q']\"/>\n    <feed xmlns=\"http://www.w3.org/2005/Atom\">\n      <title>Example Solr Atom 1.0 Feed</title>\n      <subtitle>\n       This has been formatted by the sample \"example_atom.xsl\" transform -\n       use your own XSLT to get a nicer Atom feed.\n      </subtitle>\n      <author>\n        <name>Apache Solr</name>\n        <email>solr-user@lucene.apache.org</email>\n      </author>\n      <link rel=\"self\" type=\"application/atom+xml\" \n            href=\"http://localhost:8983/solr/q={$query}&amp;wt=xslt&amp;tr=atom.xsl\"/>\n      <updated>\n        <xsl:value-of select=\"response/result/doc[position()=1]/date[@name='timestamp']\"/>\n      </updated>\n      <id>tag:localhost,2007:example</id>\n      <xsl:apply-templates select=\"response/result/doc\"/>\n    </feed>\n  </xsl:template>\n    \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <entry>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link href=\"http://localhost:8983/solr/select?q={$id}\"/>\n      <id>tag:localhost,2007:<xsl:value-of select=\"$id\"/></id>\n      <summary><xsl:value-of select=\"arr[@name='features']\"/></summary>\n      <updated><xsl:value-of select=\"date[@name='timestamp']\"/></updated>\n    </entry>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/xslt/example_rss.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to RSS\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output method=\"xml\" encoding=\"utf-8\" />\n  <xsl:template match='/'>\n    <rss version=\"2.0\">\n       <channel>\n\t <title>Example Solr RSS 2.0 Feed</title>\n         <link>http://localhost:8983/solr</link>\n         <description>\n          This has been formatted by the sample \"example_rss.xsl\" transform -\n          use your own XSLT to get a nicer RSS feed.\n         </description>\n         <language>en-us</language>\n         <docs>http://localhost:8983/solr</docs>\n         <xsl:apply-templates select=\"response/result/doc\"/>\n       </channel>\n    </rss>\n  </xsl:template>\n  \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <xsl:variable name=\"timestamp\" select=\"date[@name='timestamp']\"/>\n    <item>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </link>\n      <description>\n        <xsl:value-of select=\"arr[@name='features']\"/>\n      </description>\n      <pubDate><xsl:value-of select=\"$timestamp\"/></pubDate>\n      <guid>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </guid>\n    </item>\n  </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/db/conf/xslt/luke.xsl",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See the NOTICE file distributed with\n    this work for additional information regarding copyright ownership.\n    The ASF licenses this file to You under the Apache License, Version 2.0\n    (the \"License\"); you may not use this file except in compliance with\n    the License.  You may obtain a copy of the License at\n    \n    http://www.apache.org/licenses/LICENSE-2.0\n    \n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n-->\n\n\n<!-- \n  Display the luke request handler with graphs\n -->\n<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n    xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:svg=\"http://www.w3.org/2000/svg\" version=\"1.0\">\n    <xsl:output method=\"xml\" doctype-public=\"-//W3C//DTD XHTML 1.0 Strict//EN\"\n        doctype-system=\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\" encoding=\"UTF-8\"/>\n\n    <xsl:variable name=\"title\">Solr Luke Request Handler Response</xsl:variable>\n\n    <xsl:template match=\"/\">\n        <html xmlns=\"http://www.w3.org/1999/xhtml\">\n            <head>\n                <title>\n                    <xsl:value-of select=\"$title\"/>\n                </title>\n                <!-- <xsl:call-template name=\"svg_ie_workaround\"/> -->\n                <xsl:call-template name=\"css\"/>\n                <meta http-equiv=\"Content-Type\" content=\"application/xhtml+xml; charset=UTF-8\"/>\n            </head>\n            <body>\n                <h1>\n                    <xsl:value-of select=\"$title\"/>\n                </h1>\n                <div class=\"doc\">\n                    <ul>\n                        <xsl:if test=\"response/lst[@name='index']\">\n                            <li>\n                                <a href=\"#index\">Index Statistics</a>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='fields']\">\n                            <li>\n                                <a href=\"#fields\">Field Statistics</a>\n                            </li>\n                            <li>\n                                <ul>\n                                    <xsl:for-each select=\"response/lst[@name='fields']/lst\">\n                                        <li>\n                                            <a href=\"#{@name}\">\n                                                <xsl:value-of select=\"@name\"/>\n                                            </a>\n                                        </li>\n                                    </xsl:for-each>\n                                </ul>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='doc']\">\n                            <li>\n                                <a href=\"#doc\">Document statistics</a>\n                            </li>\n                        </xsl:if>\n                    </ul>\n                </div>\n                <xsl:if test=\"response/lst[@name='index']\">\n                    <h2><a name=\"index\"/>Index statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='index']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='fields']\">\n                    <h2><a name=\"fields\"/>Field statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='fields']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='doc']\">\n                    <h2><a name=\"doc\"/>Document statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='doc']\"/>\n                </xsl:if>\n            </body>\n        </html>\n    </xsl:template>\n\n    <xsl:template match=\"lst\">\n        <xsl:if test=\"parent::lst\">\n            <tr>\n                <td colspan=\"2\">\n                    <div class=\"doc\">\n                        <xsl:call-template name=\"list\"/>\n                    </div>\n                </td>\n            </tr>\n        </xsl:if>\n        <xsl:if test=\"not(parent::lst)\">\n            <div class=\"doc\">\n                <xsl:call-template name=\"list\"/>\n            </div>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"list\">\n        <xsl:if test=\"count(child::*)>0\">\n            <table>\n                <thead>\n                    <tr>\n                        <th colspan=\"2\">\n                            <p>\n                                <a name=\"{@name}\"/>\n                            </p>\n                            <xsl:value-of select=\"@name\"/>\n                        </th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <xsl:choose>\n                        <xsl:when\n                            test=\"@name='histogram' and not(system-property('xsl:vendor')='Microsoft')\">\n                            <tr>\n                                <td colspan=\"2\">\n                                    <xsl:call-template name=\"histogram\"/>\n                                </td>\n                            </tr>\n                        </xsl:when>\n                        <xsl:otherwise>\n                            <xsl:apply-templates/>\n                        </xsl:otherwise>\n                    </xsl:choose>\n                </tbody>\n            </table>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"histogram\">\n        <div class=\"doc\">\n            <xsl:call-template name=\"barchart\">\n                <xsl:with-param name=\"xoffset\">5</xsl:with-param>\n                <xsl:with-param name=\"yoffset\">5</xsl:with-param>\n                <xsl:with-param name=\"iwidth\">800</xsl:with-param>\n                <xsl:with-param name=\"iheight\">600</xsl:with-param>\n                <xsl:with-param name=\"fill\">blue</xsl:with-param>\n            </xsl:call-template>\n        </div>\n    </xsl:template>\n\n    <xsl:template name=\"barchart\">\n        <xsl:param name=\"xoffset\"/>\n        <xsl:param name=\"yoffset\"/>\n        <xsl:param name=\"iwidth\"/>\n        <xsl:param name=\"iheight\"/>\n        <xsl:param name=\"fill\"/>\n        <svg:svg viewBox=\"0 0 {$iwidth} {$iheight}\">\n            <xsl:if test=\"system-property('xsl:vendor')='Opera' or system-property('xsl:vendor')='libxslt'\">\n                <xsl:attribute name=\"width\"><xsl:value-of select=\"$iwidth\"/></xsl:attribute>\n                <xsl:attribute name=\"height\"><xsl:value-of select=\"$iwidth\"/></xsl:attribute>\n            </xsl:if>\n            <xsl:variable name=\"x\" select=\"$xoffset + 5\"/>\n            <xsl:variable name=\"y\" select=\"$yoffset + 5\"/>\n            <xsl:variable name=\"width\" select=\"$iwidth - 10\"/>\n            <xsl:variable name=\"height\" select=\"$iheight - 30\"/>\n            <xsl:variable name=\"max\">\n                <xsl:for-each select=\"int\">\n                    <xsl:sort data-type=\"number\" order=\"descending\"/>\n                    <xsl:if test=\"position()=1\">\n                        <xsl:value-of select=\".\"/>\n                    </xsl:if>\n                </xsl:for-each>\n            </xsl:variable>\n            <xsl:variable name=\"yRatio\" select=\"$height div $max\"/>\n            <xsl:variable name=\"xRatio\" select=\"$width div count(int)\"/>\n            <svg:g>\n                <xsl:for-each select=\"int\">\n                    <svg:rect stroke=\"none\" x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio}\"\n                        y=\"{($y + $height) - number(.) * $yRatio}\" width=\"{0.8 * $xRatio}\"\n                        height=\"{number(.) * $yRatio}\" fill=\"{$fill}\"/>\n                    <xsl:variable name=\"yboost\">\n                        <xsl:choose>\n                            <xsl:when\n                                test=\"($y + $height) - number(.) * $yRatio +40 &gt; $iheight\"\n                                >-25</xsl:when>\n                            <xsl:otherwise>0</xsl:otherwise>\n                        </xsl:choose>\n                    </xsl:variable>\n                    <svg:text\n                        x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio + (($xRatio * 0.8) div 2)}\"\n                        y=\"{($y + $height) - number(.) * $yRatio +20 + number($yboost)}\"\n                        text-anchor=\"middle\" style=\"fill: red; font-size: 8px;\">\n                        <xsl:value-of select=\".\"/>\n                    </svg:text>\n                    <svg:text\n                        x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio + (($xRatio * 0.8) div 2)}\"\n                        y=\"{$y + $height + 20}\" text-anchor=\"middle\" style=\"fill: black; font-size: 8px;\">\n                        <xsl:value-of select=\"@name\"/>\n                    </svg:text>\n                </xsl:for-each>\n            </svg:g>\n        </svg:svg>\n    </xsl:template>\n\n    <xsl:template name=\"keyvalue\">\n        <xsl:choose>\n            <xsl:when test=\"@name\">\n                <tr>\n                    <td class=\"name\">\n                        <xsl:value-of select=\"@name\"/>\n                    </td>\n                    <td class=\"value\">\n                        <xsl:value-of select=\".\"/>\n                    </td>\n                </tr>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:value-of select=\".\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template match=\"int|bool|long|float|double|uuid|date\">\n        <xsl:call-template name=\"keyvalue\"/>\n    </xsl:template>\n\n    <xsl:template match=\"arr\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <ul>\n                    <xsl:for-each select=\"child::*\">\n                        <li>\n                            <xsl:apply-templates/>\n                        </li>\n                    </xsl:for-each>\n                </ul>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template match=\"str\">\n        <xsl:choose>\n            <xsl:when test=\"@name='schema' or @name='index' or @name='flags'\">\n                <xsl:call-template name=\"schema\"/>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:call-template name=\"keyvalue\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template name=\"schema\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <xsl:if test=\"contains(.,'unstored')\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n                <xsl:if test=\"not(contains(.,'unstored'))\">\n                    <xsl:call-template name=\"infochar2string\">\n                        <xsl:with-param name=\"charList\">\n                            <xsl:value-of select=\".\"/>\n                        </xsl:with-param>\n                    </xsl:call-template>\n                </xsl:if>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template name=\"infochar2string\">\n        <xsl:param name=\"i\">1</xsl:param>\n        <xsl:param name=\"charList\"/>\n\n        <xsl:variable name=\"char\">\n            <xsl:value-of select=\"substring($charList,$i,1)\"/>\n        </xsl:variable>\n        <xsl:choose>\n            <xsl:when test=\"$char='I'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='I']\"/> - </xsl:when>\n            <xsl:when test=\"$char='T'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='T']\"/> - </xsl:when>\n            <xsl:when test=\"$char='S'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='S']\"/> - </xsl:when>\n            <xsl:when test=\"$char='M'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='M']\"/> - </xsl:when>\n            <xsl:when test=\"$char='V'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='V']\"/> - </xsl:when>\n            <xsl:when test=\"$char='o'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='o']\"/> - </xsl:when>\n            <xsl:when test=\"$char='p'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='p']\"/> - </xsl:when>\n            <xsl:when test=\"$char='O'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='O']\"/> - </xsl:when>\n            <xsl:when test=\"$char='L'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='L']\"/> - </xsl:when>\n            <xsl:when test=\"$char='B'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='B']\"/> - </xsl:when>\n            <xsl:when test=\"$char='C'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='C']\"/> - </xsl:when>\n            <xsl:when test=\"$char='f'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='f']\"/> - </xsl:when>\n            <xsl:when test=\"$char='l'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='l']\"/> -\n            </xsl:when>\n        </xsl:choose>\n\n        <xsl:if test=\"not($i>=string-length($charList))\">\n            <xsl:call-template name=\"infochar2string\">\n                <xsl:with-param name=\"i\">\n                    <xsl:value-of select=\"$i+1\"/>\n                </xsl:with-param>\n                <xsl:with-param name=\"charList\">\n                    <xsl:value-of select=\"$charList\"/>\n                </xsl:with-param>\n            </xsl:call-template>\n        </xsl:if>\n    </xsl:template>\n    <xsl:template name=\"css\">\n        <style type=\"text/css\">\n            <![CDATA[\n            body { font-family: \"Lucida Grande\", sans-serif }\n            td.name {font-style: italic; font-size:80%; }\n            th { font-style: italic; font-size: 80%; background-color: lightgrey; }\n            td { vertical-align: top; }\n            ul { margin: 0px; margin-left: 1em; padding: 0px; }\n            table { width: 100%; border-collapse: collapse; }\n            .note { font-size:80%; }\n            .doc { margin: 0.5em; border: solid grey 1px; }\n            .exp { display: none; font-family: monospace; white-space: pre; }\n            ]]>\n        </style>\n    </xsl:template>\n    <xsl:template name=\"svg_ie_workaround\">\n        <xsl:if test=\"system-property('xsl:vendor')='Microsoft'\">\n            <object id=\"AdobeSVG\" classid=\"clsid:78156a80-c6a1-4bbf-8e6a-3cd390eeb4e2\"/>\n            <xsl:processing-instruction name=\"import\">namespace=\"svg\"\n            implementation=\"#AdobeSVG\"</xsl:processing-instruction>\n        </xsl:if>\n    </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/data-config.xml",
    "content": "<dataConfig>\n  <document>\n      <!--\n        Note - In order to index attachments, set processAttachement=\"true\" and drop\n        Tika and its dependencies to example-DIH/solr/mail/lib directory\n       -->\n      <entity processor=\"MailEntityProcessor\" user=\"email@gmail.com\"\n            password=\"password\" host=\"imap.gmail.com\" protocol=\"imaps\"\n            fetchMailsSince=\"2009-09-20 00:00:00\" batchSize=\"20\" folders=\"inbox\" processAttachement=\"false\"\n            name=\"sample_entity\"/>\n  </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default)\n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n\n NOTE: this schema includes many optional features and should not\n be used for benchmarking.\n-->\n\n<schema name=\"example\" version=\"1.2\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.2\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default\n       1.2: omitTf attribute introduced, true by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.\n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->\n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime\n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n\n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!--\n          Numeric field types that manipulate the value into trie encoded strings which are not\n          human readable in the internal form. Range searches on such fields use the fast Trie Range Queries\n          which are much faster than range searches on the SortableNumberField types.\n\n          For the fast range search to work, trie fields must be indexed. Trie fields are <b>not</b> sortable\n          in numerical order. Also, they cannot be used in function queries. If one needs sorting as well as\n          fast range search, one should create a copy field specifically for sorting. Same workaround is\n          suggested for using trie fields in function queries as well.\n\n          For each number being added to this field, multiple terms are generated as per the algorithm described in\n          org.apache.lucene.search.trie package description. The possible number of terms depend on the precisionStep\n          attribute and increase dramatically with higher precision steps (factor 2**precisionStep). The default\n          value of precisionStep is 8.\n\n          Note that if you use a precisionStep of 32 for int/float and 64 for long/double, then multiple terms\n          will not be generated, range search will be no faster than any other number field,\n          but sorting will be possible.\n     -->\n    <fieldType name=\"tint\" class=\"solr.TrieField\" type=\"integer\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tfloat\" class=\"solr.TrieField\" type=\"float\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tlong\" class=\"solr.TrieField\" type=\"long\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tdouble\" class=\"solr.TrieField\" type=\"double\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n    <fieldType name=\"tdouble4\" class=\"solr.TrieField\" type=\"double\" precisionStep=\"4\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n    <!--\n          This date field manipulates the value into a trie encoded strings for fast range searches. They follow the\n          same format and semantics as the normal DateField and support the date math syntax except that they are\n          not sortable and cannot be used in function queries.\n    -->\n    <fieldType name=\"tdate\" class=\"solr.TrieField\" type=\"date\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting\n         purposes.  The ordering is generated based on the field name\n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.\n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n          add enablePositionIncrements=true in both the index and query\n          analyzers to leave a 'gap' for more accurate phrase queries.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"stopwords.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"stopwords.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!--\n     Setup simple analysis for spell checking\n     -->\n    <fieldType name=\"textSpell\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- charFilter + \"CharStream aware\" WhitespaceTokenizer  -->\n    <!--\n    <fieldType name=\"textCharNorm\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <charFilter class=\"solr.MappingCharFilterFactory\" mapping=\"mapping-ISOLatin1Accent.txt\"/>\n        <tokenizer class=\"solr.CharStreamAwareWhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n    -->\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string,\n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n\n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n\n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <fieldtype name=\"phonetic\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.DoubleMetaphoneFilterFactory\" inject=\"false\"/>\n      </analyzer>\n    </fieldtype>\n\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to\n         them will be ignored outright\n     -->\n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" />\n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for\n       best performance.\n     termPositions: Store position information with the term vector.  This will increase storage costs.\n     termOffsets: Store offset information with the term vector. This will increase storage costs.\n   -->\n\n   <field name=\"messageId\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" omitNorms=\"true\" />\n   <field name=\"subject\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" />\n   <field name=\"from\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"sentDate\" type=\"date\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"xMailer\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n\n   <field name=\"allTo\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"flags\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"content\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"attachment\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"attachmentNames\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n\n   <field name=\"catchAllField\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n\n </fields>\n\n  <copyField source=\"content\" dest=\"catchAllField\"/>\n  <copyField source=\"attachmentNames\" dest=\"catchAllField\"/>\n  <copyField source=\"attachment\" dest=\"catchAllField\"/>\n  <copyField source=\"subject\" dest=\"catchAllField\"/>\n  <copyField source=\"allTo\" dest=\"catchAllField\"/>\n\n  <!-- The unique key, Note that some mail servers may not send the message-id or they may send duplicate ones -->\n  <uniqueKey>messageId</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>catchAllField</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!--\n      NOTE: In order to reduce Jar duplication, dataimporthandler-extras \n      explicitly requires the deps from contrib/extraction.\n      See https://issues.apache.org/jira/browse/SOLR-3848\n  -->\n  <lib dir=\"../../../../contrib/extraction/lib\" />\n\n  <lib dir=\"../../../../contrib/dataimporthandler/lib/\" regex=\".*jar$\" />\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n  \n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!--\tEnables JMX if and only if an existing MBeanServer is found, use\n  \t\tthis if you want to configure JMX through JVM parameters. Remove\n  \t\tthis to disable exposing Solr configuration and statistics to JMX.\n\n\t\tIf you want to connect to a particular server, specify the agentId\n\t\te.g. <jmx agentId=\"myAgent\" />\n\n\t\tIf you want to start a new MBeanServer, specify the serviceUrl\n\t\te.g <jmx serviceUrl=\"service:jmx:rmi:///jndi/rmi://localhost:9999/solr\" />\n\n\t\tFor more details see http://wiki.apache.org/solr/SolrJmx\n  -->\n  <jmx />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit>\n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime>\n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies\n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n\n    <!-- There are two implementations of cache available for Solr,\n         LRUCache, based on a synchronized LinkedHashMap, and\n         FastLRUCache, based on a ConcurrentHashMap.  FastLRUCache has faster gets\n         and slower puts in single threaded operation and thus is generally faster\n         than LRUCache when the hit ratio of the cache is high (> 75%), and may be\n         faster under other scenarios on multi-cpu systems. -->\n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation LRUCache or FastLRUCache\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.FastLRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"128\"/>\n\n    <!-- Cache used to hold field values that are quickly accessible\n         by document id.  The fieldValueCache is created by default\n         even if not configured here.\n      <fieldValueCache\n        class=\"solr.FastLRUCache\"\n        size=\"512\"\n        autowarmCount=\"128\"\n        showItems=\"32\"\n      />\n    -->\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"32\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n\n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">fast_warm</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static firstSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>2</maxWarmingSearchers>\n\n  </query>\n\n  <!--\n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"true\" multipartUploadLimitInKB=\"2048000\" formdataUploadLimitInKB=\"2048\" />\n\n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n\n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <!-- <httpCaching never304=\"true\"> -->\n    <httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\">\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n\n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n\n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n\n\n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the\n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.SearchHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!--\n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n<!-- Please refer to http://wiki.apache.org/solr/SolrReplication for details on configuring replication -->\n<!--Master config-->\n<!--\n<requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" >\n    <lst name=\"master\">\n        <str name=\"replicateAfter\">commit</str>\n         <str name=\"confFiles\">schema.xml,stopwords.txt</str>\n    </lst>\n</requestHandler>\n-->\n<!-- Slave config-->\n<!--\n<requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\">\n    <lst name=\"slave\">\n        <str name=\"masterUrl\">http://localhost:8983/solr/replication</str>\n        <str name=\"pollInterval\">00:00:60</str>\n     </lst>\n</requestHandler>\n-->\n\n  <!-- DisMaxRequestHandler allows easy searching across multiple fields\n       for simple user-entered phrases.  It's implementation is now\n       just the standard SearchHandler with a default query parser\n       of \"dismax\".\n       see http://wiki.apache.org/solr/DisMaxRequestHandler\n   -->\n  <requestHandler name=\"dismax\" class=\"solr.SearchHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"defType\">dismax</str>\n     <str name=\"echoParams\">explicit</str>\n     <float name=\"tie\">0.01</float>\n     <str name=\"qf\">\n        text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n     </str>\n     <str name=\"pf\">\n        text^0.2 features^1.1 name^1.5 manu^1.4 manu_exact^1.9\n     </str>\n     <str name=\"bf\">\n        ord(popularity)^0.5 recip(rord(price),1,1000,1000)^0.3\n     </str>\n     <str name=\"fl\">\n        id,name,price,score\n     </str>\n     <str name=\"mm\">\n        2&lt;-1 5&lt;-2 6&lt;90%\n     </str>\n     <int name=\"ps\">100</int>\n     <str name=\"q.alt\">*:*</str>\n     <!-- example highlighter config, enable per-query with hl=true -->\n     <str name=\"hl.fl\">text features name</str>\n     <!-- for this field, we want no fragmenting, just highlighting -->\n     <str name=\"f.name.hl.fragsize\">0</str>\n     <!-- instructs Solr to return the field itself if no query terms are\n          found -->\n     <str name=\"f.name.hl.alternateField\">name</str>\n     <str name=\"f.text.hl.fragmenter\">regex</str> <!-- defined below -->\n    </lst>\n  </requestHandler>\n\n  <!-- Note how you can register the same handler multiple times with\n       different names (and different init parameters)\n    -->\n  <requestHandler name=\"partitioned\" class=\"solr.SearchHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"defType\">dismax</str>\n     <str name=\"echoParams\">explicit</str>\n     <str name=\"qf\">text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0</str>\n     <str name=\"mm\">2&lt;-1 5&lt;-2 6&lt;90%</str>\n     <!-- This is an example of using Date Math to specify a constantly\n          moving date range in a config...\n       -->\n     <str name=\"bq\">incubationdate_dt:[* TO NOW/DAY-1MONTH]^2.2</str>\n    </lst>\n    <!-- In addition to defaults, \"appends\" params can be specified\n         to identify values which should be appended to the list of\n         multi-val params from the query (or the existing \"defaults\").\n\n         In this example, the param \"fq=instock:true\" will be appended to\n         any query time fq params the user may specify, as a mechanism for\n         partitioning the index, independent of any user selected filtering\n         that may also be desired (perhaps as a result of faceted searching).\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"appends\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <lst name=\"appends\">\n      <str name=\"fq\">inStock:true</str>\n    </lst>\n    <!-- \"invariants\" are a way of letting the Solr maintainer lock down\n         the options available to Solr clients.  Any params values\n         specified here are used regardless of what values may be specified\n         in either the query, the \"defaults\", or the \"appends\" params.\n\n         In this example, the facet.field and facet.query params are fixed,\n         limiting the facets clients can use.  Faceting is not turned on by\n         default - but if the client does specify facet=true in the request,\n         these are the only facets they will be able to see counts for;\n         regardless of what other facet.field or facet.query params they\n         may specify.\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"invariants\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <lst name=\"invariants\">\n      <str name=\"facet.field\">cat</str>\n      <str name=\"facet.field\">manu_exact</str>\n      <str name=\"facet.query\">price:[* TO 500]</str>\n      <str name=\"facet.query\">price:[500 TO *]</str>\n    </lst>\n  </requestHandler>\n\n\n  <!--\n   Search components are registered to SolrCore and used by Search Handlers\n\n   By default, the following components are avaliable:\n\n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"stats\"     class=\"org.apache.solr.handler.component.StatsComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n\n   Default configuration in a requestHandler would look like:\n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>stats</str>\n      <str>debug</str>\n    </arr>\n\n    If you register a searchComponent to one of the standard names, that will be used instead.\n    To insert components before or after the 'standard' components, use:\n\n    <arr name=\"first-components\">\n      <str>myFirstComponentName</str>\n    </arr>\n\n    <arr name=\"last-components\">\n      <str>myLastComponentName</str>\n    </arr>\n  -->\n\n   <!-- The spell check component can return a list of alternative spelling\n  suggestions.  -->\n  <searchComponent name=\"spellcheck\" class=\"solr.SpellCheckComponent\">\n\n    <str name=\"queryAnalyzerFieldType\">textSpell</str>\n\n    <lst name=\"spellchecker\">\n      <str name=\"name\">default</str>\n      <str name=\"field\">spell</str>\n      <str name=\"spellcheckIndexDir\">./spellchecker1</str>\n\n    </lst>\n    <lst name=\"spellchecker\">\n      <str name=\"name\">jarowinkler</str>\n      <str name=\"field\">spell</str>\n      <!-- Use a different Distance Measure -->\n      <str name=\"distanceMeasure\">org.apache.lucene.search.spell.JaroWinklerDistance</str>\n      <str name=\"spellcheckIndexDir\">./spellchecker2</str>\n\n    </lst>\n\n    <lst name=\"spellchecker\">\n      <str name=\"classname\">solr.FileBasedSpellChecker</str>\n      <str name=\"name\">file</str>\n      <str name=\"sourceLocation\">spellings.txt</str>\n      <str name=\"characterEncoding\">UTF-8</str>\n      <str name=\"spellcheckIndexDir\">./spellcheckerFile</str>\n    </lst>\n  </searchComponent>\n\n  <!-- A request handler utilizing the spellcheck component.\n  ################################################################################################\n  NOTE: This is purely as an example.  The whole purpose of the SpellCheckComponent is to hook it into\n  the request handler that handles (i.e. the standard or dismax SearchHandler)\n  queries such that a separate request is not needed to get suggestions.\n\n  IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM!\n  ################################################################################################\n  -->\n  <requestHandler name=\"/spellCheckCompRH\" class=\"solr.SearchHandler\">\n    <lst name=\"defaults\">\n      <!-- omp = Only More Popular -->\n      <str name=\"spellcheck.onlyMorePopular\">false</str>\n      <!-- exr = Extended Results -->\n      <str name=\"spellcheck.extendedResults\">false</str>\n      <!--  The number of suggestions to return -->\n      <str name=\"spellcheck.count\">1</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>spellcheck</str>\n    </arr>\n  </requestHandler>\n\n  <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n      <str name=\"config\">data-config.xml</str>\n    </lst>\n  </requestHandler>\n\n  <searchComponent name=\"tvComponent\" class=\"org.apache.solr.handler.component.TermVectorComponent\"/>\n  <!-- A Req Handler for working with the tvComponent.  This is purely as an example.\n  You will likely want to add the component to your already specified request handlers. -->\n  <requestHandler name=\"tvrh\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <bool name=\"tv\">true</bool>\n    </lst>\n    <arr name=\"last-components\">\n      <str>tvComponent</str>\n    </arr>\n  </requestHandler>\n\n  <searchComponent name=\"termsComp\" class=\"org.apache.solr.handler.component.TermsComponent\"/>\n\n  <requestHandler name=\"/autoSuggest\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <arr name=\"components\">\n      <str>termsComp</str>\n    </arr>\n  </requestHandler>\n\n\n  <!-- Update request handler.\n\n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in\n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n\n       To enable solr1.1 behavior, remove the /update handler or change its path\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!--\n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding\n   this single handler is equivalent to registering:\n\n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n\n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str>\n     <str name=\"hidden\">anotherfile.txt</str>\n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n\n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n\n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float>\n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n    </lst>\n   </fragmenter>\n\n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n\n  <!-- An example dedup update processor that creates the \"id\" field on the fly\n       based on the hash code of some other fields.  This example has overwriteDupes\n       set to false since we are using the id field as the signatureField and Solr\n       will maintain uniqueness based on that anyway. -->\n  <!--\n  <updateRequestProcessorChain name=\"dedupe\">\n    <processor class=\"org.apache.solr.update.processor.SignatureUpdateProcessorFactory\">\n      <bool name=\"enabled\">true</bool>\n      <str name=\"signatureField\">id</str>\n      <bool name=\"overwriteDupes\">false</bool>\n      <str name=\"fields\">name,features,cat</str>\n      <str name=\"signatureClass\">org.apache.solr.update.processor.Lookup3Signature</str>\n    </processor>\n    <processor class=\"solr.LogUpdateProcessorFactory\" />\n    <processor class=\"solr.RunUpdateProcessorFactory\" />\n  </updateRequestProcessorChain>\n  -->\n\n\n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified\n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.\n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter>\n\n\n  <!-- example of registering a query parser\n  <queryParser name=\"lucene\" class=\"org.apache.solr.search.LuceneQParserPlugin\"/>\n  -->\n\n  <!-- example of registering a custom function parser\n  <valueSourceParser name=\"myfunc\" class=\"com.mycompany.MyValueSourceParser\" />\n  -->\n\n  <!-- config for the admin interface -->\n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/mail/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/rss-data-config.xml",
    "content": "<dataConfig>\n    <dataSource type=\"URLDataSource\" />\n    <document>\n        <entity name=\"slashdot\"\n                pk=\"link\"\n                url=\"http://rss.slashdot.org/Slashdot/slashdot\"\n                processor=\"XPathEntityProcessor\"\n                forEach=\"/rss/channel | /rss/item\"\n                transformer=\"DateFormatTransformer\">\n\t\t\t\t\n            <field column=\"source\" xpath=\"/rss/channel/title\" commonField=\"true\" />\n            <field column=\"source-link\" xpath=\"/rss/channel/link\" commonField=\"true\" />\n            <field column=\"subject\" xpath=\"/rss/channel/subject\" commonField=\"true\" />\n\t\t\t\n            <field column=\"title\" xpath=\"/rss/item/title\" />\n            <field column=\"link\" xpath=\"/rss/item/link\" />\n            <field column=\"description\" xpath=\"/rss/item/description\" />\n            <field column=\"creator\" xpath=\"/rss/item/creator\" />\n            <field column=\"item-subject\" xpath=\"/rss/item/subject\" />\n            <field column=\"date\" xpath=\"/rss/item/date\" dateTimeFormat=\"yyyy-MM-dd'T'HH:mm:ss\" />\n            <field column=\"slash-department\" xpath=\"/rss/item/department\" />\n            <field column=\"slash-section\" xpath=\"/rss/item/section\" />\n            <field column=\"slash-comments\" xpath=\"/rss/item/comments\" />\n        </entity>\n    </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"rss\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n    <fieldtype name=\"html\" stored=\"true\" indexed=\"true\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n        <charFilter class=\"solr.HTMLStripCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <charFilter class=\"solr.HTMLStripCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldtype>\n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n\t<field name=\"source\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"source-link\" type=\"string\" indexed=\"false\" stored=\"true\" />\n\t\n\t<field name=\"subject\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"title\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"link\" type=\"string\" indexed=\"true\" stored=\"true\" multiValued=\"false\" />\n\t<field name=\"description\" type=\"html\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"creator\" type=\"string\" indexed=\"false\" stored=\"true\" />\n\t<field name=\"item-subject\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"date\" type=\"date\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-department\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-section\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-comments\" type=\"sint\" indexed=\"true\" stored=\"true\" />\n\t\n\t<field name=\"all_text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\" />\n\t<copyField source=\"source\" dest=\"all_text\" />\n\t<copyField source=\"subject\" dest=\"all_text\" />\n\t<copyField source=\"title\" dest=\"all_text\" />\n\t<copyField source=\"description\" dest=\"all_text\" />\n\t<copyField source=\"creator\" dest=\"all_text\" />\n\t<copyField source=\"item-subject\" dest=\"all_text\" />\n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>link</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>all_text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\"\n   \tclass=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n   \t<lst name=\"defaults\">\n   \t\t<str name=\"config\">rss-data-config.xml</str>\n   \t</lst>\n   </requestHandler>  \n  \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter-->\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/rss/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"solr\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n   <field name=\"id\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" multiValued=\"false\" /> \n   <field name=\"sku\" type=\"textTight\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"name\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"nameSort\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"alphaNameSort\" type=\"alphaOnlySort\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"manu\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"cat\" type=\"text_ws\" indexed=\"true\" stored=\"true\" multiValued=\"true\" omitNorms=\"true\" termVectors=\"true\" />\n   <field name=\"features\" type=\"text\" indexed=\"true\" stored=\"true\" multiValued=\"true\"/>\n   <field name=\"includes\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n\n   <field name=\"weight\" type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"price\"  type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <!-- \"default\" values can be specified for fields, indicating which\n        value should be used if no value is specified when adding a document.\n     -->\n   <field name=\"popularity\" type=\"sint\" indexed=\"true\" stored=\"true\" default=\"0\"/>\n   <field name=\"inStock\" type=\"boolean\" indexed=\"true\" stored=\"true\"/>\n\n   <!-- Some sample docs exists solely to demonstrate the spellchecker\n        functionality, this is the only field they container.\n        Typically you might build the spellchecker of \"catchall\" type field\n        containing all of the text in each document\n     -->\n   <field name=\"word\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n\n   \n   <!-- catchall field, containing all other searchable text fields (implemented\n        via copyField further on in this schema  -->\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\"/>\n\n   <!-- non-tokenized version of manufacturer to make it easier to sort or group\n        results by manufacturer.  copied from \"manu\" via copyField -->\n   <field name=\"manu_exact\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n\n   <!-- Dynamic field definitions.  If a field name is not found, dynamicFields\n        will be used if the name matches any of the patterns.\n        RESTRICTION: the glob-like pattern in the name attribute must have\n        a \"*\" only at the start or the end.\n        EXAMPLE:  name=\"*_i\" will match any field ending in _i (like myid_i, z_i)\n        Longer patterns will be matched first.  if equal size patterns\n        both match, the first appearing in the schema will be used.  -->\n   <dynamicField name=\"*_i\"  type=\"sint\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_s\"  type=\"string\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_l\"  type=\"slong\"   indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_t\"  type=\"text\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_b\"  type=\"boolean\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_f\"  type=\"sfloat\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_d\"  type=\"sdouble\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_dt\" type=\"date\"    indexed=\"true\"  stored=\"true\"/>\n\n   <dynamicField name=\"random*\" type=\"random\" />\n\n   <!-- uncomment the following to ignore any fields that don't already match an existing \n        field name or dynamic field, rather than reporting them as an error. \n        alternately, change the type=\"ignored\" to some other type e.g. \"text\" if you want \n        unknown fields indexed and/or stored by default --> \n   <!--dynamicField name=\"*\" type=\"ignored\" multiValued=\"true\" /-->\n   \n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n  <!-- copyField commands copy one field to another at the time a document\n        is added to the index.  It's used either to index the same field differently,\n        or to add multiple fields to the same field for easier/faster searching.  -->\n   <copyField source=\"id\" dest=\"sku\"/>\n\n   <copyField source=\"cat\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"nameSort\"/>\n   <copyField source=\"name\" dest=\"alphaNameSort\"/>\n   <copyField source=\"manu\" dest=\"text\"/>\n   <copyField source=\"features\" dest=\"text\"/>\n   <copyField source=\"includes\" dest=\"text\"/>\n\n   <copyField source=\"manu\" dest=\"manu_exact\"/>\n\n <!-- Similarity is the scoring routine for each document vs. a query.\n      A custom similarity may be specified here, but the default is fine\n      for most applications.  -->\n <!-- <similarity class=\"org.apache.lucene.search.similarities.DefaultSimilarity\"/> -->\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/solr-data-config.xml",
    "content": "<!--\n  Licensed to the Apache Software Foundation (ASF) under one or more\n  contributor license agreements.  See the NOTICE file distributed with\n  this work for additional information regarding copyright ownership.\n  The ASF licenses this file to You under the Apache License, Version 2.0\n  (the \"License\"); you may not use this file except in compliance with\n  the License.  You may obtain a copy of the License at\n\n      http://www.apache.org/licenses/LICENSE-2.0\n\n  Unless required by applicable law or agreed to in writing, software\n  distributed under the License is distributed on an \"AS IS\" BASIS,\n  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  See the License for the specific language governing permissions and\n  limitations under the License.\n  -->\n\n<dataConfig>\n  <document>\n    <entity name=\"sep\" processor=\"SolrEntityProcessor\" url=\"http://127.0.0.1:8983/solr/db \" query=\"*:*\"/>\n  </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n    \t<str name=\"config\">solr-data-config.xml</str>\n    </lst>\n   </requestHandler>\n\n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\\"']{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<solr sharedLib=\"lib\" persistent=\"true\">\n\t<cores adminPath=\"/admin/cores\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\">\n\t\t<core default=\"true\" instanceDir=\"db\" name=\"db\"/>\n\t\t<core default=\"false\" instanceDir=\"rss\" name=\"rss\"/>\n\t\t<core default=\"false\" instanceDir=\"mail\" name=\"mail\"/>\n\t\t<core default=\"false\" instanceDir=\"tika\" name=\"tika\"/>\n    <core default=\"false\" instanceDir=\"solr\" name=\"solr\"/>\n\t</cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/tika/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/tika/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/tika/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/tika/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"test\" version=\"1.2\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!--<filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>-->\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!--<filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>-->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!--<filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>-->\n        <!--<filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>-->\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!--<filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>-->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <field name=\"title\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"author\" type=\"string\" indexed=\"true\" stored=\"true\" />\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"true\" />\n   \n </fields>\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/tika/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!--\n      NOTE: In order to reduce Jar duplication, dataimporthandler-extras \n      explicitly requires the deps from contrib/extraction.\n      See https://issues.apache.org/jira/browse/SOLR-3848\n  -->\n  <lib dir=\"../../../../contrib/extraction/lib\" />\n\n  <lib dir=\"../../../../contrib/dataimporthandler/lib/\" regex=\".*jar$\" />\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n  \n  <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n\t\t<str name=\"config\">tika-data-config.xml</str>\n\t</lst>\n  </requestHandler>\n    \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\" >\n    <!--\n    <str name=\"update.processor.class\">org.apache.solr.handler.UpdateRequestProcessor</str>\n    -->\n  </requestHandler>\n  \n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/example-DIH/solr/tika/conf/tika-data-config.xml",
    "content": "<dataConfig>\n    <dataSource type=\"BinFileDataSource\" />\n    <document>\n        <entity name=\"tika-test\" processor=\"TikaEntityProcessor\"\n                url=\"../contrib/extraction/src/test-files/extraction/solr-word.pdf\" format=\"text\">\n                <field column=\"Author\" name=\"author\" meta=\"true\"/>\n                <field column=\"title\" name=\"title\" meta=\"true\"/>\n                <field column=\"text\" name=\"text\"/>\n        </entity>\n    </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/books.csv",
    "content": "id,cat,name,price,inStock,author,series_t,sequence_i,genre_s\n0553573403,book,A Game of Thrones,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",1,fantasy\n0553579908,book,A Clash of Kings,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",2,fantasy\n055357342X,book,A Storm of Swords,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",3,fantasy\n0553293354,book,Foundation,7.99,true,Isaac Asimov,Foundation Novels,1,scifi\n0812521390,book,The Black Company,6.99,false,Glen Cook,The Chronicles of The Black Company,1,fantasy\n0812550706,book,Ender's Game,6.99,true,Orson Scott Card,Ender,1,scifi\n0441385532,book,Jhereg,7.95,false,Steven Brust,Vlad Taltos,1,fantasy\n0380014300,book,Nine Princes In Amber,6.99,true,Roger Zelazny,the Chronicles of Amber,1,fantasy\n0805080481,book,The Book of Three,5.99,true,Lloyd Alexander,The Chronicles of Prydain,1,fantasy\n080508049X,book,The Black Cauldron,5.99,true,Lloyd Alexander,The Chronicles of Prydain,2,fantasy\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/books.json",
    "content": "[\n  {\n    \"id\" : \"978-0641723445\",\n    \"cat\" : [\"book\",\"hardcover\"],\n    \"name\" : \"The Lightning Thief\",\n    \"author\" : \"Rick Riordan\",\n    \"series_t\" : \"Percy Jackson and the Olympians\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 12.50,\n    \"pages_i\" : 384\n  }\n,\n  {\n    \"id\" : \"978-1423103349\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"The Sea of Monsters\",\n    \"author\" : \"Rick Riordan\",\n    \"series_t\" : \"Percy Jackson and the Olympians\",\n    \"sequence_i\" : 2,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 6.49,\n    \"pages_i\" : 304\n  }\n,\n  {\n    \"id\" : \"978-1857995879\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"Sophie's World : The Greek Philosophers\",\n    \"author\" : \"Jostein Gaarder\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 3.07,\n    \"pages_i\" : 64\n  }\n,\n  {\n    \"id\" : \"978-1933988177\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"Lucene in Action, Second Edition\",\n    \"author\" : \"Michael McCandless\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"IT\",\n    \"inStock\" : true,\n    \"price\" : 30.50,\n    \"pages_i\" : 475\n  }\n]\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/gb18030-example.xml",
    "content": "<?xml version=\"1.0\" encoding=\"GB18030\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n  <doc>\n    <field name=\"id\">GB18030TEST</field>\n    <field name=\"name\">Test with some GB18030 encoded characters</field>\n    <field name=\"features\">No accents here</field>\n    <field name=\"features\">һ</field>\n    <field name=\"features\">This is a feature (translated)</field>\n    <field name=\"features\">ļǺй</field>\n    <field name=\"features\">This document is very shiny (translated)</field>\n    <field name=\"price\">0</field>\n    <field name=\"inStock\">true</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/hd.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">SP2514N</field>\n  <field name=\"name\">Samsung SpinPoint P120 SP2514N - hard drive - 250 GB - ATA-133</field>\n  <field name=\"manu\">Samsung Electronics Co. Ltd.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">samsung</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">hard drive</field>\n  <field name=\"features\">7200RPM, 8MB cache, IDE Ultra ATA-133</field>\n  <field name=\"features\">NoiseGuard, SilentSeek technology, Fluid Dynamic Bearing (FDB) motor</field>\n  <field name=\"price\">92</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n  <!-- Near Oklahoma city -->\n  <field name=\"store\">35.0752,-97.032</field>\n</doc>\n\n<doc>\n  <field name=\"id\">6H500F0</field>\n  <field name=\"name\">Maxtor DiamondMax 11 - hard drive - 500 GB - SATA-300</field>\n  <field name=\"manu\">Maxtor Corp.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">maxtor</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">hard drive</field>\n  <field name=\"features\">SATA 3.0Gb/s, NCQ</field>\n  <field name=\"features\">8.5ms seek</field>\n  <field name=\"features\">16MB cache</field>\n  <field name=\"price\">350</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.17614,-93.87341</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n</doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/ipod_other.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n\n<doc>\n  <field name=\"id\">F8V7067-APL-KIT</field>\n  <field name=\"name\">Belkin Mobile Power Cord for iPod w/ Dock</field>\n  <field name=\"manu\">Belkin</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">belkin</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">connector</field>\n  <field name=\"features\">car power adapter, white</field>\n  <field name=\"weight\">4</field>\n  <field name=\"price\">19.95</field>\n  <field name=\"popularity\">1</field>\n  <field name=\"inStock\">false</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18014,-93.87741</field>\n  <field name=\"manufacturedate_dt\">2005-08-01T16:30:25Z</field>\n</doc>\n\n<doc>\n  <field name=\"id\">IW-02</field>\n  <field name=\"name\">iPod &amp; iPod Mini USB 2.0 Cable</field>\n  <field name=\"manu\">Belkin</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">belkin</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">connector</field>\n  <field name=\"features\">car power adapter for iPod, white</field>\n  <field name=\"weight\">2</field>\n  <field name=\"price\">11.50</field>\n  <field name=\"popularity\">1</field>\n  <field name=\"inStock\">false</field>\n  <!-- San Francisco store -->\n  <field name=\"store\">37.7752,-122.4232</field>\n  <field name=\"manufacturedate_dt\">2006-02-14T23:55:59Z</field>\n</doc>\n\n\n</add>\n\n\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/ipod_video.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">MA147LL/A</field>\n  <field name=\"name\">Apple 60 GB iPod with Video Playback Black</field>\n  <field name=\"manu\">Apple Computer Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">apple</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">music</field>\n  <field name=\"features\">iTunes, Podcasts, Audiobooks</field>\n  <field name=\"features\">Stores up to 15,000 songs, 25,000 photos, or 150 hours of video</field>\n  <field name=\"features\">2.5-inch, 320x240 color TFT LCD display with LED backlight</field>\n  <field name=\"features\">Up to 20 hours of battery life</field>\n  <field name=\"features\">Plays AAC, MP3, WAV, AIFF, Audible, Apple Lossless, H.264 video</field>\n  <field name=\"features\">Notes, Calendar, Phone book, Hold button, Date display, Photo wallet, Built-in games, JPEG photo playback, Upgradeable firmware, USB 2.0 compatibility, Playback speed control, Rechargeable capability, Battery level indication</field>\n  <field name=\"includes\">earbud headphones, USB cable</field>\n  <field name=\"weight\">5.5</field>\n  <field name=\"price\">399.00</field>\n  <field name=\"popularity\">10</field>\n  <field name=\"inStock\">true</field>\n  <!-- Dodge City store -->\n  <field name=\"store\">37.7752,-100.0232</field>\n  <field name=\"manufacturedate_dt\">2005-10-12T08:00:00Z</field>\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/manufacturers.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n  <doc>\n    <field name=\"id\">adata</field>\n    <field name=\"compName_s\">A-Data Technology</field>\n    <field name=\"address_s\">46221 Landing Parkway Fremont, CA 94538</field>\n  </doc>\n  <doc>\n    <field name=\"id\">apple</field>\n    <field name=\"compName_s\">Apple</field>\n    <field name=\"address_s\">1 Infinite Way, Cupertino CA</field>\n  </doc>\n  <doc>\n    <field name=\"id\">asus</field>\n    <field name=\"compName_s\">ASUS Computer</field>\n    <field name=\"address_s\">800 Corporate Way Fremont, CA 94539</field>\n  </doc>\n  <doc>\n    <field name=\"id\">ati</field>\n    <field name=\"compName_s\">ATI Technologies</field>\n    <field name=\"address_s\">33 Commerce Valley Drive East Thornhill, ON L3T 7N6 Canada</field>\n  </doc>\n  <doc>\n    <field name=\"id\">belkin</field>\n    <field name=\"compName_s\">Belkin</field>\n    <field name=\"address_s\">12045 E. Waterfront Drive Playa Vista, CA 90094</field>\n  </doc>\n  <doc>\n    <field name=\"id\">canon</field>\n    <field name=\"compName_s\">Canon, Inc.</field>\n    <field name=\"address_s\">One Canon Plaza Lake Success, NY 11042</field>\n  </doc>\n  <doc>\n    <field name=\"id\">corsair</field>\n    <field name=\"compName_s\">Corsair Microsystems</field>\n    <field name=\"address_s\">46221 Landing Parkway Fremont, CA 94538</field>\n  </doc>\n  <doc>\n    <field name=\"id\">dell</field>\n    <field name=\"compName_s\">Dell, Inc.</field>\n    <field name=\"address_s\">One Dell Way Round Rock, Texas 78682</field>\n  </doc>\n  <doc>\n    <field name=\"id\">maxtor</field>\n    <field name=\"compName_s\">Maxtor Corporation</field>\n    <field name=\"address_s\">920 Disc Drive Scotts Valley, CA 95066</field>\n  </doc>\n  <doc>\n    <field name=\"id\">samsung</field>\n    <field name=\"compName_s\">Samsung Electronics Co. Ltd.</field>\n    <field name=\"address_s\">105 Challenger Rd. Ridgefield Park, NJ 07660-0511</field>\n  </doc>\n  <doc>\n    <field name=\"id\">viewsonic</field>\n    <field name=\"compName_s\">ViewSonic Corp</field>\n    <field name=\"address_s\">381 Brea Canyon Road Walnut, CA 91789-0708</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/mem.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">TWINX2048-3200PRO</field>\n  <field name=\"name\">CORSAIR  XMS 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) Dual Channel Kit System Memory - Retail</field>\n  <field name=\"manu\">Corsair Microsystems Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"features\">CAS latency 2,\t2-3-3-6 timing, 2.75v, unbuffered, heat-spreader</field>\n  <field name=\"price\">185</field>\n  <field name=\"popularity\">5</field>\n  <field name=\"inStock\">true</field>\n  <!-- San Francisco store -->\n  <field name=\"store\">37.7752,-122.4232</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <!-- a field for testing payload tagged text via DelimitedPayloadTokenFilter -->\n  <field name=\"payloads\">electronics|6.0 memory|3.0</field>\n</doc>\n\n<doc>\n  <field name=\"id\">VS1GB400C3</field>\n  <field name=\"name\">CORSAIR ValueSelect 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - Retail</field>\n  <field name=\"manu\">Corsair Microsystems Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"price\">74.99</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">true</field>\n  <!-- Dodge City store -->\n  <field name=\"store\">37.7752,-100.0232</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <field name=\"payloads\">electronics|4.0 memory|2.0</field>\n</doc>\n\n<doc>\n  <field name=\"id\">VDBDB1A16</field>\n  <field name=\"name\">A-DATA V-Series 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - OEM</field>\n  <field name=\"manu\">A-DATA Technology Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"features\">CAS latency 3,\t 2.7v</field>\n  <!-- note: price & popularity is missing on this one -->\n  <field name=\"popularity\">0</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18414,-93.88141</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <field name=\"payloads\">electronics|0.9 memory|0.1</field>\n</doc>\n\n</add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/money.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- Example documents utilizing the CurrencyField type -->\n<add>\n<doc>\n  <field name=\"id\">USD</field>\n  <field name=\"name\">One Dollar</field>\n  <field name=\"manu\">Bank of America</field>\n  <field name=\"manu_id_s\">boa</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,USD</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">EUR</field>\n  <field name=\"name\">One Euro</field>\n  <field name=\"manu\">European Union</field>\n  <field name=\"manu_id_s\">eu</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,EUR</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">GBP</field>\n  <field name=\"name\">One British Pound</field>\n  <field name=\"manu\">U.K.</field>\n  <field name=\"manu_id_s\">uk</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,GBP</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">NOK</field>\n  <field name=\"name\">One Krone</field>\n  <field name=\"manu\">Bank of Norway</field>\n  <field name=\"manu_id_s\">nor</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,NOK</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n</add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/monitor.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">3007WFP</field>\n  <field name=\"name\">Dell Widescreen UltraSharp 3007WFP</field>\n  <field name=\"manu\">Dell, Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">dell</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">monitor</field>\n  <field name=\"features\">30\" TFT active matrix LCD, 2560 x 1600, .25mm dot pitch, 700:1 contrast</field>\n  <field name=\"includes\">USB cable</field>\n  <field name=\"weight\">401.6</field>\n  <field name=\"price\">2199</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">43.17614,-90.57341</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/monitor2.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">VA902B</field>\n  <field name=\"name\">ViewSonic VA902B - flat panel display - TFT - 19\"</field>\n  <field name=\"manu\">ViewSonic Corp.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">viewsonic</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">monitor</field>\n  <field name=\"features\">19\" TFT active matrix LCD, 8ms response time, 1280 x 1024 native resolution</field>\n  <field name=\"weight\">190.4</field>\n  <field name=\"price\">279.95</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18814,-93.88541</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/mp500.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">0579B002</field>\n  <field name=\"name\">Canon PIXMA MP500 All-In-One Photo Printer</field>\n  <field name=\"manu\">Canon Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">canon</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">multifunction printer</field>\n  <field name=\"cat\">printer</field>\n  <field name=\"cat\">scanner</field>\n  <field name=\"cat\">copier</field>\n  <field name=\"features\">Multifunction ink-jet color photo printer</field>\n  <field name=\"features\">Flatbed scanner, optical scan resolution of 1,200 x 2,400 dpi</field>\n  <field name=\"features\">2.5\" color LCD preview screen</field>\n  <field name=\"features\">Duplex Copying</field>\n  <field name=\"features\">Printing speed up to 29ppm black, 19ppm color</field>\n  <field name=\"features\">Hi-Speed USB</field>\n  <field name=\"features\">memory card: CompactFlash, Micro Drive, SmartMedia, Memory Stick, Memory Stick Pro, SD Card, and MultiMediaCard</field>\n  <field name=\"weight\">352</field>\n  <field name=\"price\">179.99</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.19214,-93.89941</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/post.sh",
    "content": "#!/bin/sh\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nFILES=$*\nURL=http://localhost:8983/solr/update\n\nfor f in $FILES; do\n  echo Posting file $f to $URL\n  curl $URL --data-binary @$f -H 'Content-type:application/xml' \n  echo\ndone\n\n#send the commit command to make sure all the changes are flushed and visible\n#curl $URL --data-binary '<commit softCommit=true/>' -H 'Content-type:application/xml'\n\ncurl \"$URL?softCommit=true\"\necho\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/sd500.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">9885A004</field>\n  <field name=\"name\">Canon PowerShot SD500</field>\n  <field name=\"manu\">Canon Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">canon</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">camera</field>\n  <field name=\"features\">3x zoop, 7.1 megapixel Digital ELPH</field>\n  <field name=\"features\">movie clips up to 640x480 @30 fps</field>\n  <field name=\"features\">2.0\" TFT LCD, 118,000 pixels</field>\n  <field name=\"features\">built in flash, red-eye reduction</field>\n  <field name=\"includes\">32MB SD card, USB cable, AV cable, battery</field>\n  <field name=\"weight\">6.4</field>\n  <field name=\"price\">329.95</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.19614,-93.90341</field>\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/solr.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">SOLR1000</field>\n  <field name=\"name\">Solr, the Enterprise Search Server</field>\n  <field name=\"manu\">Apache Software Foundation</field>\n  <field name=\"cat\">software</field>\n  <field name=\"cat\">search</field>\n  <field name=\"features\">Advanced Full-Text Search Capabilities using Lucene</field>\n  <field name=\"features\">Optimized for High Volume Web Traffic</field>\n  <field name=\"features\">Standards Based Open Interfaces - XML and HTTP</field>\n  <field name=\"features\">Comprehensive HTML Administration Interfaces</field>\n  <field name=\"features\">Scalability - Efficient Replication to other Solr Search Servers</field>\n  <field name=\"features\">Flexible and Adaptable with XML configuration and Schema</field>\n  <field name=\"features\">Good unicode support: h&#xE9;llo (hello with an accent over the e)</field>\n  <field name=\"price\">0</field>\n  <field name=\"popularity\">10</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"incubationdate_dt\">2006-01-17T00:00:00.000Z</field>\n</doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/test_utf8.sh",
    "content": "#!/bin/sh\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#Test script to tell if the server is accepting UTF-8\n#The python writer currently escapes non-ascii chars, so it's good for testing\n\nURL=http://localhost:8983/solr\n\nif [ ! -z $1 ]; then\n  URL=$1\nfi\n\ncurl \"$URL/select?q=hello&params=explicit&wt=python\" 2> /dev/null | grep 'hello' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"Solr server is up.\"\nelse\n  echo \"ERROR: Could not curl to Solr - is curl installed? Is Solr not running?\"\n  exit 1\nfi\n\ncurl \"$URL/select?q=h%C3%A9llo&echoParams=explicit&wt=python\" 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP GET is accepting UTF-8\"\nelse\n  echo \"ERROR: HTTP GET is not accepting UTF-8\"\nfi\n\ncurl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST is accepting UTF-8\"\nelse\n  echo \"ERROR: HTTP POST is not accepting UTF-8\"\nfi\n\ncurl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST defaults to UTF-8\"\nelse\n  echo \"HTTP POST does not default to UTF-8\"\nfi\n\n\n#A unicode character outside of the BMP (a circle with an x inside)\nCHAR=\"𐌈\"\nCODEPOINT='0x10308'\n#URL encoded UTF8 of the codepoint\nURL_UTF8='%F0%90%8C%88'\n#expected return of the python writer (currently uses UTF-16 surrogates)\nEXPECTED='\\\\ud800\\\\udf08'\n\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python\" 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP GET is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP GET is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\ncurl $URL/select --data-binary \"q=$URL_UTF8&echoParams=explicit&wt=python\"  -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP POST is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python\" --data-binary '' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST + URL params is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP POST + URL params is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\n#curl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=json\" 2> /dev/null | od -tx1 -w1000 | sed 's/ //g' | grep 'f4808198' > /dev/null 2>&1\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=json\" 2> /dev/null | grep \"$CHAR\" > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"Response correctly returns UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: Response can't return UTF-8 beyond the basic multilingual plane\"\nfi\n\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/utf8-example.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- \n  After posting this to SOLR with post.sh, searching for \"êâîôû\" from \n  the solr/admin/ search page must return this document.\n -->\n\n<add>\n  <doc>\n    <field name=\"id\">UTF8TEST</field>\n    <field name=\"name\">Test with some UTF-8 encoded characters</field>\n    <field name=\"manu\">Apache Software Foundation</field>\n    <field name=\"cat\">software</field>\n    <field name=\"cat\">search</field>\n    <field name=\"features\">No accents here</field>\n    <field name=\"features\">This is an e acute: é</field>\n    <field name=\"features\">eaiou with circumflexes: êâîôû</field>\n    <field name=\"features\">eaiou with umlauts: ëäïöü</field>\n    <field name=\"features\">tag with escaped chars: &lt;nicetag/&gt;</field>\n    <field name=\"features\">escaped ampersand: Bonnie &amp; Clyde</field>\n    <field name=\"features\">Outside the BMP:𐌈 codepoint=10308, a circle with an x inside. UTF8=f0908c88 UTF16=d800 df08</field>\n    <field name=\"price\">0</field>\n    <field name=\"inStock\">true</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/exampledocs/vidcard.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">EN7800GTX/2DHTV/256M</field>\n  <field name=\"name\">ASUS Extreme N7800GTX/2DHTV (256 MB)</field>\n  <!-- Denormalized -->\n  <field name=\"manu\">ASUS Computer Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">asus</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">graphics card</field>\n  <field name=\"features\">NVIDIA GeForce 7800 GTX GPU/VPU clocked at 486MHz</field>\n  <field name=\"features\">256MB GDDR3 Memory clocked at 1.35GHz</field>\n  <field name=\"features\">PCI Express x16</field>\n  <field name=\"features\">Dual DVI connectors, HDTV out, video input</field>\n  <field name=\"features\">OpenGL 2.0, DirectX 9.0</field>\n  <field name=\"weight\">16</field>\n  <field name=\"price\">479.95</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"store\">40.7143,-74.006</field>\n  <field name=\"inStock\">false</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z/DAY</field>\n</doc>\n  <!-- yes, you can add more than one document at a time -->\n<doc>\n  <field name=\"id\">100-435805</field>\n  <field name=\"name\">ATI Radeon X1900 XTX 512 MB PCIE Video Card</field>\n  <field name=\"manu\">ATI Technologies</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">ati</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">graphics card</field>\n  <field name=\"features\">ATI RADEON X1900 GPU/VPU clocked at 650MHz</field>\n  <field name=\"features\">512MB GDDR3 SDRAM clocked at 1.55GHz</field>\n  <field name=\"features\">PCI Express x16</field>\n  <field name=\"features\">dual DVI, HDTV, svideo, composite out</field>\n  <field name=\"features\">OpenGL 2.0, DirectX 9.0</field>\n  <field name=\"weight\">48</field>\n  <field name=\"price\">649.99</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">false</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z/DAY</field>\n  <!-- NYC store -->\n  <field name=\"store\">40.7143,-74.006</field>\n</doc>\n</add>\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/README.txt",
    "content": "This is an alternative setup structure to support multiple cores.\n\nTo run this configuration, start jetty in the example/ directory using:\n\njava -Dsolr.solr.home=multicore -jar start.jar\n\nFor general examples on standard solr configuration, see the \"solr\" directory.\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/core0/conf/schema.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<schema name=\"example core zero\" version=\"1.1\">\n  <types>\n   <fieldtype name=\"string\"  class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n   <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n  </types>\n\n <fields>   \n  <!-- general -->\n  <field name=\"id\"        type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" required=\"true\"/>\n  <field name=\"type\"      type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"name\"      type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"core0\"     type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"_version_\" type=\"long\"     indexed=\"true\"  stored=\"true\"/>\n </fields>\n\n <!-- field to use to determine and enforce document uniqueness. -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>name</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n</schema>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/core0/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is a stripped down config file used for a simple example...  \n It is *not* a good example to work from. \n-->\n<config>\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n  <!--  The DirectoryFactory to use for indexes.\n        solr.StandardDirectoryFactory, the default, is filesystem based.\n        solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->\n  <directoryFactory name=\"DirectoryFactory\" class=\"${solr.directoryFactory:solr.StandardDirectoryFactory}\"/>\n\n  <dataDir>${solr.core0.data.dir:}</dataDir>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n    <updateLog>\n      <str name=\"dir\">${solr.core0.data.dir:}</str>\n    </updateLog>\n  </updateHandler>\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields \n    of any document, without the need to commit or open a new searcher. The current \n    implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n    <lst name=\"defaults\">\n      <str name=\"omitHeader\">true</str>\n    </lst>\n  </requestHandler>  \n  \n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" startup=\"lazy\" /> \n\n  <requestDispatcher handleSelect=\"true\" >\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n  </requestDispatcher>\n  \n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\" />\n  <requestHandler name=\"/analysis/field\" startup=\"lazy\" class=\"solr.FieldAnalysisRequestHandler\" />\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n     \n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n  </requestHandler>\n   \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/core1/conf/schema.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<schema name=\"example core one\" version=\"1.1\">\n  <types>\n   <fieldtype name=\"string\"  class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n   <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n  </types>\n\n <fields>   \n  <!-- general -->\n  <field name=\"id\"        type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" required=\"true\"/>\n  <field name=\"type\"      type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"name\"      type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"core1\"     type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" />\n  <field name=\"_version_\" type=\"long\"      indexed=\"true\"  stored=\"true\"/>\n </fields>\n\n <!-- field to use to determine and enforce document uniqueness. -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>name</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n</schema>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/core1/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is a stripped down config file used for a simple example...  \n It is *not* a good example to work from. \n-->\n<config>\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n  <!--  The DirectoryFactory to use for indexes.\n        solr.StandardDirectoryFactory, the default, is filesystem based.\n        solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->\n  <directoryFactory name=\"DirectoryFactory\" class=\"${solr.directoryFactory:solr.StandardDirectoryFactory}\"/>\n\n  <dataDir>${solr.core1.data.dir:}</dataDir>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n    <updateLog>\n      <str name=\"dir\">${solr.core1.data.dir:}</str>\n    </updateLog>\n  </updateHandler>\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields \n    of any document, without the need to commit or open a new searcher. The current \n    implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n    <lst name=\"defaults\">\n      <str name=\"omitHeader\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" startup=\"lazy\" /> \n\n  <requestDispatcher handleSelect=\"true\" >\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n  </requestDispatcher>\n  \n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\" />\n  <requestHandler name=\"/analysis/field\" startup=\"lazy\" class=\"solr.FieldAnalysisRequestHandler\" />\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n  </requestHandler>\n\n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/exampledocs/ipod_other.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n\n<doc>\n  <field name=\"id\">F8V7067-APL-KIT</field>\n  <field name=\"name\">Belkin Mobile Power Cord for iPod w/ Dock</field>\n</doc>\n\n<doc>\n  <field name=\"id\">IW-02</field>\n  <field name=\"name\">iPod &amp; iPod Mini USB 2.0 Cable</field>\n</doc>\n\n\n</add>\n\n\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/exampledocs/ipod_video.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">MA147LL/A</field>\n  <field name=\"name\">Apple 60 GB iPod with Video Playback Black</field>\n\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n All (relative) paths are relative to the installation path\n  \n  persistent: Save changes made via the API to this file\n  sharedLib: path to a lib directory that will be shared across all cores\n-->\n<solr persistent=\"false\">\n\n  <!--\n  adminPath: RequestHandler path to manage cores.  \n    If 'null' (or absent), cores will not be manageable via request handler\n  -->\n  <cores adminPath=\"/admin/cores\" host=\"${host:}\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\">\n    <core name=\"core0\" instanceDir=\"core0\" />\n    <core name=\"core1\" instanceDir=\"core1\" />\n  </cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/paraphrase/multicore/zoo.cfg",
    "content": "# The number of milliseconds of each tick\ntickTime=2000\n# The number of ticks that the initial\n# synchronization phase can take\ninitLimit=10\n# The number of ticks that can pass between\n# sending a request and getting an acknowledgement\nsyncLimit=5\n\n# the directory where the snapshot is stored.\n# dataDir=/opt/zookeeper/data\n# NOTE: Solr defaults the dataDir to <solrHome>/zoo_data\n\n# the port at which the clients will connect\n# clientPort=2181\n# NOTE: Solr sets this based on zkRun / zkHost params\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/resources/log4j.properties",
    "content": "#  Logging level\nlog4j.rootLogger=INFO, file, CONSOLE\n\nlog4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender\n\nlog4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout\nlog4j.appender.CONSOLE.layout.ConversionPattern=%-4r [%t] %-5p %c %x \\u2013 %m%n\n\n#- size rotation with log cleanup.\nlog4j.appender.file=org.apache.log4j.RollingFileAppender\nlog4j.appender.file.MaxFileSize=4MB\nlog4j.appender.file.MaxBackupIndex=9\n\n#- File to log to and log format\nlog4j.appender.file.File=logs/solr.log\nlog4j.appender.file.layout=org.apache.log4j.PatternLayout\nlog4j.appender.file.layout.ConversionPattern=%-5p - %d{yyyy-MM-dd HH:mm:ss.SSS}; %C; %m\\n\n\nlog4j.logger.org.apache.zookeeper=WARN"
  },
  {
    "path": "oqa-solr/paraphrase/solr/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\nExample Solr Home Directory\n=============================\n\nThis directory is provided as an example of what a \"Solr Home\" directory\nshould look like.\n\nIt's not strictly necessary that you copy all of the files in this\ndirectory when setting up a new instance of Solr, but it is recommended.\n\n\nBasic Directory Structure\n-------------------------\n\nThe Solr Home directory typically contains the following...\n\n* solr.xml *\n\nThis is the primary configuration file Solr looks for when starting.\nThis file specifies the list of \"SolrCores\" it should load, and high \nlevel configuration options that should be used for all SolrCores.\n\nPlease see the comments in ./solr.xml for more details.\n\nIf no solr.xml file is found, then Solr assumes that there should be\na single SolrCore named \"collection1\" and that the \"Instance Directory\" \nfor collection1 should be the same as the Solr Home Directory.\n\n* Individual SolrCore Instance Directories *\n\nAlthough solr.xml can be configured to look for SolrCore Instance Directories \nin any path, simple sub-directories of the Solr Home Dir using relative paths \nare common for many installations.  In this directory you can see the \n\"./collection1\" Instance Directory.\n\n* A Shared 'lib' Directory *\n\nAlthough solr.xml can be configured with an optional \"sharedLib\" attribute \nthat can point to any path, it is common to use a \"./lib\" sub-directory of the \nSolr Home Directory.\n\n* ZooKeeper Files *\n\nWhen using SolrCloud using the embedded ZooKeeper option for Solr, it is \ncommon to have a \"zoo.cfg\" file and \"zoo_data\" directories in the Solr Home \nDirectory.  Please see the SolrCloud wiki page for more details...\n\nhttps://wiki.apache.org/solr/SolrCloud\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\nExample SolrCore Instance Directory\n=============================\n\nThis directory is provided as an example of what an \"Instance Directory\"\nshould look like for a SolrCore\n\nIt's not strictly necessary that you copy all of the files in this\ndirectory when setting up a new SolrCores, but it is recommended.\n\n\nBasic Directory Structure\n-------------------------\n\nThe Solr Home directory typically contains the following sub-directories...\n\n   conf/\n        This directory is mandatory and must contain your solrconfig.xml\n        and schema.xml.  Any other optional configuration files would also \n        be kept here.\n\n   data/\n        This directory is the default location where Solr will keep your\n        index, and is used by the replication scripts for dealing with\n        snapshots.  You can override this location in the \n        conf/solrconfig.xml.  Solr will create this directory if it does not \n        already exist.\n\n   lib/\n        This directory is optional.  If it exists, Solr will load any Jars\n        found in this directory and use them to resolve any \"plugins\"\n        specified in your solrconfig.xml or schema.xml (ie: Analyzers,\n        Request Handlers, etc...).  Alternatively you can use the <lib>\n        syntax in conf/solrconfig.xml to direct Solr to your plugins.  See \n        the example conf/solrconfig.xml file for details.\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top-\nright box of the cores overview page. Uncomment this as an example to \nsee there the content will show up.\n\n<img src=\"img/ico/construction.png\"> This line will appear at the top-\nright box on collection1's Overview\n-->\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/admin-extra.menu-bottom.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- admin-extra.menu-bottom.html -->\n<!--\n<li>\n  <a href=\"#\" style=\"background-image: url(img/ico/construction.png);\">\n    LAST ITEM\n  </a>\n</li>\n-->\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/admin-extra.menu-top.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- admin-extra.menu-top.html -->\n<!--\n<li>\n  <a href=\"#\" style=\"background-image: url(img/ico/construction.png);\">\n    FIRST ITEM\n  </a>\n</li>\n-->\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/currency.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- Example exchange rates file for CurrencyField type named \"currency\" in example schema -->\n\n<currencyConfig version=\"1.0\">\n  <rates>\n    <!-- Updated from http://www.exchangerate.com/ at 2011-09-27 -->\n    <rate from=\"USD\" to=\"ARS\" rate=\"4.333871\" comment=\"ARGENTINA Peso\" />\n    <rate from=\"USD\" to=\"AUD\" rate=\"1.025768\" comment=\"AUSTRALIA Dollar\" />\n    <rate from=\"USD\" to=\"EUR\" rate=\"0.743676\" comment=\"European Euro\" />\n    <rate from=\"USD\" to=\"BRL\" rate=\"1.881093\" comment=\"BRAZIL Real\" />\n    <rate from=\"USD\" to=\"CAD\" rate=\"1.030815\" comment=\"CANADA Dollar\" />\n    <rate from=\"USD\" to=\"CLP\" rate=\"519.0996\" comment=\"CHILE Peso\" />\n    <rate from=\"USD\" to=\"CNY\" rate=\"6.387310\" comment=\"CHINA Yuan\" />\n    <rate from=\"USD\" to=\"CZK\" rate=\"18.47134\" comment=\"CZECH REP. Koruna\" />\n    <rate from=\"USD\" to=\"DKK\" rate=\"5.515436\" comment=\"DENMARK Krone\" />\n    <rate from=\"USD\" to=\"HKD\" rate=\"7.801922\" comment=\"HONG KONG Dollar\" />\n    <rate from=\"USD\" to=\"HUF\" rate=\"215.6169\" comment=\"HUNGARY Forint\" />\n    <rate from=\"USD\" to=\"ISK\" rate=\"118.1280\" comment=\"ICELAND Krona\" />\n    <rate from=\"USD\" to=\"INR\" rate=\"49.49088\" comment=\"INDIA Rupee\" />\n    <rate from=\"USD\" to=\"XDR\" rate=\"0.641358\" comment=\"INTNL MON. FUND SDR\" />\n    <rate from=\"USD\" to=\"ILS\" rate=\"3.709739\" comment=\"ISRAEL Sheqel\" />\n    <rate from=\"USD\" to=\"JPY\" rate=\"76.32419\" comment=\"JAPAN Yen\" />\n    <rate from=\"USD\" to=\"KRW\" rate=\"1169.173\" comment=\"KOREA (SOUTH) Won\" />\n    <rate from=\"USD\" to=\"KWD\" rate=\"0.275142\" comment=\"KUWAIT Dinar\" />\n    <rate from=\"USD\" to=\"MXN\" rate=\"13.85895\" comment=\"MEXICO Peso\" />\n    <rate from=\"USD\" to=\"NZD\" rate=\"1.285159\" comment=\"NEW ZEALAND Dollar\" />\n    <rate from=\"USD\" to=\"NOK\" rate=\"5.859035\" comment=\"NORWAY Krone\" />\n    <rate from=\"USD\" to=\"PKR\" rate=\"87.57007\" comment=\"PAKISTAN Rupee\" />\n    <rate from=\"USD\" to=\"PEN\" rate=\"2.730683\" comment=\"PERU Sol\" />\n    <rate from=\"USD\" to=\"PHP\" rate=\"43.62039\" comment=\"PHILIPPINES Peso\" />\n    <rate from=\"USD\" to=\"PLN\" rate=\"3.310139\" comment=\"POLAND Zloty\" />\n    <rate from=\"USD\" to=\"RON\" rate=\"3.100932\" comment=\"ROMANIA Leu\" />\n    <rate from=\"USD\" to=\"RUB\" rate=\"32.14663\" comment=\"RUSSIA Ruble\" />\n    <rate from=\"USD\" to=\"SAR\" rate=\"3.750465\" comment=\"SAUDI ARABIA Riyal\" />\n    <rate from=\"USD\" to=\"SGD\" rate=\"1.299352\" comment=\"SINGAPORE Dollar\" />\n    <rate from=\"USD\" to=\"ZAR\" rate=\"8.329761\" comment=\"SOUTH AFRICA Rand\" />\n    <rate from=\"USD\" to=\"SEK\" rate=\"6.883442\" comment=\"SWEDEN Krona\" />\n    <rate from=\"USD\" to=\"CHF\" rate=\"0.906035\" comment=\"SWITZERLAND Franc\" />\n    <rate from=\"USD\" to=\"TWD\" rate=\"30.40283\" comment=\"TAIWAN Dollar\" />\n    <rate from=\"USD\" to=\"THB\" rate=\"30.89487\" comment=\"THAILAND Baht\" />\n    <rate from=\"USD\" to=\"AED\" rate=\"3.672955\" comment=\"U.A.E. Dirham\" />\n    <rate from=\"USD\" to=\"UAH\" rate=\"7.988582\" comment=\"UKRAINE Hryvnia\" />\n    <rate from=\"USD\" to=\"GBP\" rate=\"0.647910\" comment=\"UNITED KINGDOM Pound\" />\n    \n    <!-- Cross-rates for some common currencies -->\n    <rate from=\"EUR\" to=\"GBP\" rate=\"0.869914\" />  \n    <rate from=\"EUR\" to=\"NOK\" rate=\"7.800095\" />  \n    <rate from=\"GBP\" to=\"NOK\" rate=\"8.966508\" />  \n  </rates>\n</currencyConfig>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n\n   See http://wiki.apache.org/solr/QueryElevationComponent for more info\n\n-->\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/contractions_ca.txt",
    "content": "# Set of Catalan contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nd\nl\nm\nn\ns\nt\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/contractions_fr.txt",
    "content": "# Set of French contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nl\nm\nt\nqu\nn\ns\nj\nd\nc\njusqu\nquoiqu\nlorsqu\npuisqu\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/contractions_ga.txt",
    "content": "# Set of Irish contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nd\nm\nb\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/contractions_it.txt",
    "content": "# Set of Italian contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nc\nl \nall \ndall \ndell \nnell \nsull \ncoll \npell \ngl \nagl \ndagl \ndegl \nnegl \nsugl \nun \nm \nt \ns \nv \nd\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/hyphenations_ga.txt",
    "content": "# Set of Irish hyphenations for StopFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nh\nn\nt\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stemdict_nl.txt",
    "content": "# Set of overrides for the dutch stemmer\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nfiets\tfiets\nbromfiets\tbromfiets\nei\teier\nkind\tkinder\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stoptags_ja.txt",
    "content": "#\n# This file defines a Japanese stoptag set for JapanesePartOfSpeechStopFilter.\n#\n# Any token with a part-of-speech tag that exactly matches those defined in this\n# file are removed from the token stream.\n#\n# Set your own stoptags by uncommenting the lines below.  Note that comments are\n# not allowed on the same line as a stoptag.  See LUCENE-3745 for frequency lists,\n# etc. that can be useful for building you own stoptag set.\n#\n# The entire possible tagset is provided below for convenience.\n#\n#####\n#  noun: unclassified nouns\n#名詞\n#\n#  noun-common: Common nouns or nouns where the sub-classification is undefined\n#名詞-一般\n#\n#  noun-proper: Proper nouns where the sub-classification is undefined \n#名詞-固有名詞\n#\n#  noun-proper-misc: miscellaneous proper nouns\n#名詞-固有名詞-一般\n#\n#  noun-proper-person: Personal names where the sub-classification is undefined\n#名詞-固有名詞-人名\n#\n#  noun-proper-person-misc: names that cannot be divided into surname and \n#  given name; foreign names; names where the surname or given name is unknown.\n#  e.g. お市の方\n#名詞-固有名詞-人名-一般\n#\n#  noun-proper-person-surname: Mainly Japanese surnames.\n#  e.g. 山田\n#名詞-固有名詞-人名-姓\n#\n#  noun-proper-person-given_name: Mainly Japanese given names.\n#  e.g. 太郎\n#名詞-固有名詞-人名-名\n#\n#  noun-proper-organization: Names representing organizations.\n#  e.g. 通産省, NHK\n#名詞-固有名詞-組織\n#\n#  noun-proper-place: Place names where the sub-classification is undefined\n#名詞-固有名詞-地域\n#\n#  noun-proper-place-misc: Place names excluding countries.\n#  e.g. アジア, バルセロナ, 京都\n#名詞-固有名詞-地域-一般\n#\n#  noun-proper-place-country: Country names. \n#  e.g. 日本, オーストラリア\n#名詞-固有名詞-地域-国\n#\n#  noun-pronoun: Pronouns where the sub-classification is undefined\n#名詞-代名詞\n#\n#  noun-pronoun-misc: miscellaneous pronouns: \n#  e.g. それ, ここ, あいつ, あなた, あちこち, いくつ, どこか, なに, みなさん, みんな, わたくし, われわれ\n#名詞-代名詞-一般\n#\n#  noun-pronoun-contraction: Spoken language contraction made by combining a \n#  pronoun and the particle 'wa'.\n#  e.g. ありゃ, こりゃ, こりゃあ, そりゃ, そりゃあ \n#名詞-代名詞-縮約\n#\n#  noun-adverbial: Temporal nouns such as names of days or months that behave \n#  like adverbs. Nouns that represent amount or ratios and can be used adverbially,\n#  e.g. 金曜, 一月, 午後, 少量\n#名詞-副詞可能\n#\n#  noun-verbal: Nouns that take arguments with case and can appear followed by \n#  'suru' and related verbs (する, できる, なさる, くださる)\n#  e.g. インプット, 愛着, 悪化, 悪戦苦闘, 一安心, 下取り\n#名詞-サ変接続\n#\n#  noun-adjective-base: The base form of adjectives, words that appear before な (\"na\")\n#  e.g. 健康, 安易, 駄目, だめ\n#名詞-形容動詞語幹\n#\n#  noun-numeric: Arabic numbers, Chinese numerals, and counters like 何 (回), 数.\n#  e.g. 0, 1, 2, 何, 数, 幾\n#名詞-数\n#\n#  noun-affix: noun affixes where the sub-classification is undefined\n#名詞-非自立\n#\n#  noun-affix-misc: Of adnominalizers, the case-marker の (\"no\"), and words that \n#  attach to the base form of inflectional words, words that cannot be classified \n#  into any of the other categories below. This category includes indefinite nouns.\n#  e.g. あかつき, 暁, かい, 甲斐, 気, きらい, 嫌い, くせ, 癖, こと, 事, ごと, 毎, しだい, 次第, \n#       順, せい, 所為, ついで, 序で, つもり, 積もり, 点, どころ, の, はず, 筈, はずみ, 弾み, \n#       拍子, ふう, ふり, 振り, ほう, 方, 旨, もの, 物, 者, ゆえ, 故, ゆえん, 所以, わけ, 訳,\n#       わり, 割り, 割, ん-口語/, もん-口語/\n#名詞-非自立-一般\n#\n#  noun-affix-adverbial: noun affixes that that can behave as adverbs.\n#  e.g. あいだ, 間, あげく, 挙げ句, あと, 後, 余り, 以外, 以降, 以後, 以上, 以前, 一方, うえ, \n#       上, うち, 内, おり, 折り, かぎり, 限り, きり, っきり, 結果, ころ, 頃, さい, 際, 最中, さなか, \n#       最中, じたい, 自体, たび, 度, ため, 為, つど, 都度, とおり, 通り, とき, 時, ところ, 所, \n#       とたん, 途端, なか, 中, のち, 後, ばあい, 場合, 日, ぶん, 分, ほか, 他, まえ, 前, まま, \n#       儘, 侭, みぎり, 矢先\n#名詞-非自立-副詞可能\n#\n#  noun-affix-aux: noun affixes treated as 助動詞 (\"auxiliary verb\") in school grammars \n#  with the stem よう(だ) (\"you(da)\").\n#  e.g.  よう, やう, 様 (よう)\n#名詞-非自立-助動詞語幹\n#  \n#  noun-affix-adjective-base: noun affixes that can connect to the indeclinable\n#  connection form な (aux \"da\").\n#  e.g. みたい, ふう\n#名詞-非自立-形容動詞語幹\n#\n#  noun-special: special nouns where the sub-classification is undefined.\n#名詞-特殊\n#\n#  noun-special-aux: The そうだ (\"souda\") stem form that is used for reporting news, is \n#  treated as 助動詞 (\"auxiliary verb\") in school grammars, and attach to the base \n#  form of inflectional words.\n#  e.g. そう\n#名詞-特殊-助動詞語幹\n#\n#  noun-suffix: noun suffixes where the sub-classification is undefined.\n#名詞-接尾\n#\n#  noun-suffix-misc: Of the nouns or stem forms of other parts of speech that connect \n#  to ガル or タイ and can combine into compound nouns, words that cannot be classified into\n#  any of the other categories below. In general, this category is more inclusive than \n#  接尾語 (\"suffix\") and is usually the last element in a compound noun.\n#  e.g. おき, かた, 方, 甲斐 (がい), がかり, ぎみ, 気味, ぐるみ, (～した) さ, 次第, 済 (ず) み,\n#       よう, (でき)っこ, 感, 観, 性, 学, 類, 面, 用\n#名詞-接尾-一般\n#\n#  noun-suffix-person: Suffixes that form nouns and attach to person names more often\n#  than other nouns.\n#  e.g. 君, 様, 著\n#名詞-接尾-人名\n#\n#  noun-suffix-place: Suffixes that form nouns and attach to place names more often \n#  than other nouns.\n#  e.g. 町, 市, 県\n#名詞-接尾-地域\n#\n#  noun-suffix-verbal: Of the suffixes that attach to nouns and form nouns, those that \n#  can appear before スル (\"suru\").\n#  e.g. 化, 視, 分け, 入り, 落ち, 買い\n#名詞-接尾-サ変接続\n#\n#  noun-suffix-aux: The stem form of そうだ (様態) that is used to indicate conditions, \n#  is treated as 助動詞 (\"auxiliary verb\") in school grammars, and attach to the \n#  conjunctive form of inflectional words.\n#  e.g. そう\n#名詞-接尾-助動詞語幹\n#\n#  noun-suffix-adjective-base: Suffixes that attach to other nouns or the conjunctive \n#  form of inflectional words and appear before the copula だ (\"da\").\n#  e.g. 的, げ, がち\n#名詞-接尾-形容動詞語幹\n#\n#  noun-suffix-adverbial: Suffixes that attach to other nouns and can behave as adverbs.\n#  e.g. 後 (ご), 以後, 以降, 以前, 前後, 中, 末, 上, 時 (じ)\n#名詞-接尾-副詞可能\n#\n#  noun-suffix-classifier: Suffixes that attach to numbers and form nouns. This category \n#  is more inclusive than 助数詞 (\"classifier\") and includes common nouns that attach \n#  to numbers.\n#  e.g. 個, つ, 本, 冊, パーセント, cm, kg, カ月, か国, 区画, 時間, 時半\n#名詞-接尾-助数詞\n#\n#  noun-suffix-special: Special suffixes that mainly attach to inflecting words.\n#  e.g. (楽し) さ, (考え) 方\n#名詞-接尾-特殊\n#\n#  noun-suffix-conjunctive: Nouns that behave like conjunctions and join two words \n#  together.\n#  e.g. (日本) 対 (アメリカ), 対 (アメリカ), (3) 対 (5), (女優) 兼 (主婦)\n#名詞-接続詞的\n#\n#  noun-verbal_aux: Nouns that attach to the conjunctive particle て (\"te\") and are \n#  semantically verb-like.\n#  e.g. ごらん, ご覧, 御覧, 頂戴\n#名詞-動詞非自立的\n#\n#  noun-quotation: text that cannot be segmented into words, proverbs, Chinese poetry, \n#  dialects, English, etc. Currently, the only entry for 名詞 引用文字列 (\"noun quotation\") \n#  is いわく (\"iwaku\").\n#名詞-引用文字列\n#\n#  noun-nai_adjective: Words that appear before the auxiliary verb ない (\"nai\") and\n#  behave like an adjective.\n#  e.g. 申し訳, 仕方, とんでも, 違い\n#名詞-ナイ形容詞語幹\n#\n#####\n#  prefix: unclassified prefixes\n#接頭詞\n#\n#  prefix-nominal: Prefixes that attach to nouns (including adjective stem forms) \n#  excluding numerical expressions.\n#  e.g. お (水), 某 (氏), 同 (社), 故 (～氏), 高 (品質), お (見事), ご (立派)\n#接頭詞-名詞接続\n#\n#  prefix-verbal: Prefixes that attach to the imperative form of a verb or a verb\n#  in conjunctive form followed by なる/なさる/くださる.\n#  e.g. お (読みなさい), お (座り)\n#接頭詞-動詞接続\n#\n#  prefix-adjectival: Prefixes that attach to adjectives.\n#  e.g. お (寒いですねえ), バカ (でかい)\n#接頭詞-形容詞接続\n#\n#  prefix-numerical: Prefixes that attach to numerical expressions.\n#  e.g. 約, およそ, 毎時\n#接頭詞-数接続\n#\n#####\n#  verb: unclassified verbs\n#動詞\n#\n#  verb-main:\n#動詞-自立\n#\n#  verb-auxiliary:\n#動詞-非自立\n#\n#  verb-suffix:\n#動詞-接尾\n#\n#####\n#  adjective: unclassified adjectives\n#形容詞\n#\n#  adjective-main:\n#形容詞-自立\n#\n#  adjective-auxiliary:\n#形容詞-非自立\n#\n#  adjective-suffix:\n#形容詞-接尾\n#\n#####\n#  adverb: unclassified adverbs\n#副詞\n#\n#  adverb-misc: Words that can be segmented into one unit and where adnominal \n#  modification is not possible.\n#  e.g. あいかわらず, 多分\n#副詞-一般\n#\n#  adverb-particle_conjunction: Adverbs that can be followed by の, は, に, \n#  な, する, だ, etc.\n#  e.g. こんなに, そんなに, あんなに, なにか, なんでも\n#副詞-助詞類接続\n#\n#####\n#  adnominal: Words that only have noun-modifying forms.\n#  e.g. この, その, あの, どの, いわゆる, なんらかの, 何らかの, いろんな, こういう, そういう, ああいう, \n#       どういう, こんな, そんな, あんな, どんな, 大きな, 小さな, おかしな, ほんの, たいした, \n#       「(, も) さる (ことながら)」, 微々たる, 堂々たる, 単なる, いかなる, 我が」「同じ, 亡き\n#連体詞\n#\n#####\n#  conjunction: Conjunctions that can occur independently.\n#  e.g. が, けれども, そして, じゃあ, それどころか\n接続詞\n#\n#####\n#  particle: unclassified particles.\n助詞\n#\n#  particle-case: case particles where the subclassification is undefined.\n助詞-格助詞\n#\n#  particle-case-misc: Case particles.\n#  e.g. から, が, で, と, に, へ, より, を, の, にて\n助詞-格助詞-一般\n#\n#  particle-case-quote: the \"to\" that appears after nouns, a person’s speech, \n#  quotation marks, expressions of decisions from a meeting, reasons, judgements,\n#  conjectures, etc.\n#  e.g. ( だ) と (述べた.), ( である) と (して執行猶予...)\n助詞-格助詞-引用\n#\n#  particle-case-compound: Compounds of particles and verbs that mainly behave \n#  like case particles.\n#  e.g. という, といった, とかいう, として, とともに, と共に, でもって, にあたって, に当たって, に当って,\n#       にあたり, に当たり, に当り, に当たる, にあたる, において, に於いて,に於て, における, に於ける, \n#       にかけ, にかけて, にかんし, に関し, にかんして, に関して, にかんする, に関する, に際し, \n#       に際して, にしたがい, に従い, に従う, にしたがって, に従って, にたいし, に対し, にたいして, \n#       に対して, にたいする, に対する, について, につき, につけ, につけて, につれ, につれて, にとって,\n#       にとり, にまつわる, によって, に依って, に因って, により, に依り, に因り, による, に依る, に因る, \n#       にわたって, にわたる, をもって, を以って, を通じ, を通じて, を通して, をめぐって, をめぐり, をめぐる,\n#       って-口語/, ちゅう-関西弁「という」/, (何) ていう (人)-口語/, っていう-口語/, といふ, とかいふ\n助詞-格助詞-連語\n#\n#  particle-conjunctive:\n#  e.g. から, からには, が, けれど, けれども, けど, し, つつ, て, で, と, ところが, どころか, とも, ども, \n#       ながら, なり, ので, のに, ば, ものの, や ( した), やいなや, (ころん) じゃ(いけない)-口語/, \n#       (行っ) ちゃ(いけない)-口語/, (言っ) たって (しかたがない)-口語/, (それがなく)ったって (平気)-口語/\n助詞-接続助詞\n#\n#  particle-dependency:\n#  e.g. こそ, さえ, しか, すら, は, も, ぞ\n助詞-係助詞\n#\n#  particle-adverbial:\n#  e.g. がてら, かも, くらい, 位, ぐらい, しも, (学校) じゃ(これが流行っている)-口語/, \n#       (それ)じゃあ (よくない)-口語/, ずつ, (私) なぞ, など, (私) なり (に), (先生) なんか (大嫌い)-口語/,\n#       (私) なんぞ, (先生) なんて (大嫌い)-口語/, のみ, だけ, (私) だって-口語/, だに, \n#       (彼)ったら-口語/, (お茶) でも (いかが), 等 (とう), (今後) とも, ばかり, ばっか-口語/, ばっかり-口語/,\n#       ほど, 程, まで, 迄, (誰) も (が)([助詞-格助詞] および [助詞-係助詞] の前に位置する「も」)\n助詞-副助詞\n#\n#  particle-interjective: particles with interjective grammatical roles.\n#  e.g. (松島) や\n助詞-間投助詞\n#\n#  particle-coordinate:\n#  e.g. と, たり, だの, だり, とか, なり, や, やら\n助詞-並立助詞\n#\n#  particle-final:\n#  e.g. かい, かしら, さ, ぜ, (だ)っけ-口語/, (とまってる) で-方言/, な, ナ, なあ-口語/, ぞ, ね, ネ, \n#       ねぇ-口語/, ねえ-口語/, ねん-方言/, の, のう-口語/, や, よ, ヨ, よぉ-口語/, わ, わい-口語/\n助詞-終助詞\n#\n#  particle-adverbial/conjunctive/final: The particle \"ka\" when unknown whether it is \n#  adverbial, conjunctive, or sentence final. For example:\n#       (a) 「A か B か」. Ex:「(国内で運用する) か,(海外で運用する) か (.)」\n#       (b) Inside an adverb phrase. Ex:「(幸いという) か (, 死者はいなかった.)」\n#           「(祈りが届いたせい) か (, 試験に合格した.)」\n#       (c) 「かのように」. Ex:「(何もなかった) か (のように振る舞った.)」\n#  e.g. か\n助詞-副助詞／並立助詞／終助詞\n#\n#  particle-adnominalizer: The \"no\" that attaches to nouns and modifies \n#  non-inflectional words.\n助詞-連体化\n#\n#  particle-adnominalizer: The \"ni\" and \"to\" that appear following nouns and adverbs \n#  that are giongo, giseigo, or gitaigo.\n#  e.g. に, と\n助詞-副詞化\n#\n#  particle-special: A particle that does not fit into one of the above classifications. \n#  This includes particles that are used in Tanka, Haiku, and other poetry.\n#  e.g. かな, けむ, ( しただろう) に, (あんた) にゃ(わからん), (俺) ん (家)\n助詞-特殊\n#\n#####\n#  auxiliary-verb:\n助動詞\n#\n#####\n#  interjection: Greetings and other exclamations.\n#  e.g. おはよう, おはようございます, こんにちは, こんばんは, ありがとう, どうもありがとう, ありがとうございます, \n#       いただきます, ごちそうさま, さよなら, さようなら, はい, いいえ, ごめん, ごめんなさい\n#感動詞\n#\n#####\n#  symbol: unclassified Symbols.\n記号\n#\n#  symbol-misc: A general symbol not in one of the categories below.\n#  e.g. [○◎@$〒→+]\n記号-一般\n#\n#  symbol-comma: Commas\n#  e.g. [,、]\n記号-読点\n#\n#  symbol-period: Periods and full stops.\n#  e.g. [.．。]\n記号-句点\n#\n#  symbol-space: Full-width whitespace.\n記号-空白\n#\n#  symbol-open_bracket:\n#  e.g. [({‘“『【]\n記号-括弧開\n#\n#  symbol-close_bracket:\n#  e.g. [)}’”』」】]\n記号-括弧閉\n#\n#  symbol-alphabetic:\n#記号-アルファベット\n#\n#####\n#  other: unclassified other\n#その他\n#\n#  other-interjection: Words that are hard to classify as noun-suffixes or \n#  sentence-final particles.\n#  e.g. (だ)ァ\nその他-間投\n#\n#####\n#  filler: Aizuchi that occurs during a conversation or sounds inserted as filler.\n#  e.g. あの, うんと, えと\nフィラー\n#\n#####\n#  non-verbal: non-verbal sound.\n非言語音\n#\n#####\n#  fragment:\n#語断片\n#\n#####\n#  unknown: unknown part of speech.\n#未知語\n#\n##### End of file\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ar.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\n# Cleaned on October 11, 2009 (not normalized, so use before normalization)\n# This means that when modifying this list, you might need to add some \n# redundant entries, for example containing forms with both أ and ا\nمن\nومن\nمنها\nمنه\nفي\nوفي\nفيها\nفيه\nو\nف\nثم\nاو\nأو\nب\nبها\nبه\nا\nأ\nاى\nاي\nأي\nأى\nلا\nولا\nالا\nألا\nإلا\nلكن\nما\nوما\nكما\nفما\nعن\nمع\nاذا\nإذا\nان\nأن\nإن\nانها\nأنها\nإنها\nانه\nأنه\nإنه\nبان\nبأن\nفان\nفأن\nوان\nوأن\nوإن\nالتى\nالتي\nالذى\nالذي\nالذين\nالى\nالي\nإلى\nإلي\nعلى\nعليها\nعليه\nاما\nأما\nإما\nايضا\nأيضا\nكل\nوكل\nلم\nولم\nلن\nولن\nهى\nهي\nهو\nوهى\nوهي\nوهو\nفهى\nفهي\nفهو\nانت\nأنت\nلك\nلها\nله\nهذه\nهذا\nتلك\nذلك\nهناك\nكانت\nكان\nيكون\nتكون\nوكانت\nوكان\nغير\nبعض\nقد\nنحو\nبين\nبينما\nمنذ\nضمن\nحيث\nالان\nالآن\nخلال\nبعد\nقبل\nحتى\nعند\nعندما\nلدى\nجميع\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_bg.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\nа\nаз\nако\nала\nбе\nбез\nбеше\nби\nбил\nбила\nбили\nбило\nблизо\nбъдат\nбъде\nбяха\nв\nвас\nваш\nваша\nвероятно\nвече\nвзема\nви\nвие\nвинаги\nвсе\nвсеки\nвсички\nвсичко\nвсяка\nвъв\nвъпреки\nвърху\nг\nги\nглавно\nго\nд\nда\nдали\nдо\nдокато\nдокога\nдори\nдосега\nдоста\nе\nедва\nедин\nето\nза\nзад\nзаедно\nзаради\nзасега\nзатова\nзащо\nзащото\nи\nиз\nили\nим\nима\nимат\nиска\nй\nказа\nкак\nкаква\nкакво\nкакто\nкакъв\nкато\nкога\nкогато\nкоето\nкоито\nкой\nкойто\nколко\nкоято\nкъде\nкъдето\nкъм\nли\nм\nме\nмежду\nмен\nми\nмнозина\nмога\nмогат\nможе\nмоля\nмомента\nму\nн\nна\nнад\nназад\nнай\nнаправи\nнапред\nнапример\nнас\nне\nнего\nнея\nни\nние\nникой\nнито\nно\nнякои\nнякой\nняма\nобаче\nоколо\nосвен\nособено\nот\nотгоре\nотново\nоще\nпак\nпо\nповече\nповечето\nпод\nпоне\nпоради\nпосле\nпочти\nправи\nпред\nпреди\nпрез\nпри\nпък\nпърво\nс\nса\nсамо\nсе\nсега\nси\nскоро\nслед\nсме\nспоред\nсред\nсрещу\nсте\nсъм\nсъс\nсъщо\nт\nтази\nтака\nтакива\nтакъв\nтам\nтвой\nте\nтези\nти\nтн\nто\nтова\nтогава\nтози\nтой\nтолкова\nточно\nтрябва\nтук\nтъй\nтя\nтях\nу\nхаресва\nч\nче\nчесто\nчрез\nще\nщом\nя\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ca.txt",
    "content": "# Catalan stopwords from http://github.com/vcl/cue.language (Apache 2 Licensed)\na\nabans\nací\nah\naixí\naixò\nal\nals\naleshores\nalgun\nalguna\nalgunes\nalguns\nalhora\nallà\nallí\nallò\naltra\naltre\naltres\namb\nambdós\nambdues\napa\naquell\naquella\naquelles\naquells\naquest\naquesta\naquestes\naquests\naquí\nbaix\ncada\ncadascú\ncadascuna\ncadascunes\ncadascuns\ncom\ncontra\nd'un\nd'una\nd'unes\nd'uns\ndalt\nde\ndel\ndels\ndes\ndesprés\ndins\ndintre\ndonat\ndoncs\ndurant\ne\neh\nel\nels\nem\nen\nencara\nens\nentre\nérem\neren\néreu\nes\nés\nesta\nestà\nestàvem\nestaven\nestàveu\nesteu\net\netc\nets\nfins\nfora\ngairebé\nha\nhan\nhas\nhavia\nhe\nhem\nheu\nhi \nho\ni\nigual\niguals\nja\nl'hi\nla\nles\nli\nli'n\nllavors\nm'he\nma\nmal\nmalgrat\nmateix\nmateixa\nmateixes\nmateixos\nme\nmentre\nmés\nmeu\nmeus\nmeva\nmeves\nmolt\nmolta\nmoltes\nmolts\nmon\nmons\nn'he\nn'hi\nne\nni\nno\nnogensmenys\nnomés\nnosaltres\nnostra\nnostre\nnostres\no\noh\noi\non\npas\npel\npels\nper\nperò\nperquè\npoc \npoca\npocs\npoques\npotser\npropi\nqual\nquals\nquan\nquant \nque\nquè\nquelcom\nqui\nquin\nquina\nquines\nquins\ns'ha\ns'han\nsa\nsemblant\nsemblants\nses\nseu \nseus\nseva\nseva\nseves\nsi\nsobre\nsobretot\nsóc\nsolament\nsols\nson \nsón\nsons \nsota\nsou\nt'ha\nt'han\nt'he\nta\ntal\ntambé\ntampoc\ntan\ntant\ntanta\ntantes\nteu\nteus\nteva\nteves\nton\ntons\ntot\ntota\ntotes\ntots\nun\nuna\nunes\nuns\nus\nva\nvaig\nvam\nvan\nvas\nveu\nvosaltres\nvostra\nvostre\nvostres\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_cz.txt",
    "content": "a\ns\nk\no\ni\nu\nv\nz\ndnes\ncz\ntímto\nbudeš\nbudem\nbyli\njseš\nmůj\nsvým\nta\ntomto\ntohle\ntuto\ntyto\njej\nzda\nproč\nmáte\ntato\nkam\ntohoto\nkdo\nkteří\nmi\nnám\ntom\ntomuto\nmít\nnic\nproto\nkterou\nbyla\ntoho\nprotože\nasi\nho\nnaši\nnapište\nre\ncož\ntím\ntakže\nsvých\njejí\nsvými\njste\naj\ntu\ntedy\nteto\nbylo\nkde\nke\npravé\nji\nnad\nnejsou\nči\npod\ntéma\nmezi\npřes\nty\npak\nvám\nani\nkdyž\nvšak\nneg\njsem\ntento\nčlánku\nčlánky\naby\njsme\npřed\npta\njejich\nbyl\nještě\naž\nbez\ntaké\npouze\nprvní\nvaše\nkterá\nnás\nnový\ntipy\npokud\nmůže\nstrana\njeho\nsvé\njiné\nzprávy\nnové\nnení\nvás\njen\npodle\nzde\nuž\nbýt\nvíce\nbude\njiž\nnež\nkterý\nby\nkteré\nco\nnebo\nten\ntak\nmá\npři\nod\npo\njsou\njak\ndalší\nale\nsi\nse\nve\nto\njako\nza\nzpět\nze\ndo\npro\nje\nna\natd\natp\njakmile\npřičemž\njá\non\nona\nono\noni\nony\nmy\nvy\njí\nji\nmě\nmne\njemu\ntomu\ntěm\ntěmu\nněmu\nněmuž\njehož\njíž\njelikož\njež\njakož\nnačež\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_da.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/danish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Danish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n\nog           | and\ni            | in\njeg          | I\ndet          | that (dem. pronoun)/it (pers. pronoun)\nat           | that (in front of a sentence)/to (with infinitive)\nen           | a/an\nden          | it (pers. pronoun)/that (dem. pronoun)\ntil          | to/at/for/until/against/by/of/into, more\ner           | present tense of \"to be\"\nsom          | who, as\npå           | on/upon/in/on/at/to/after/of/with/for, on\nde           | they\nmed          | with/by/in, along\nhan          | he\naf           | of/by/from/off/for/in/with/on, off\nfor          | at/for/to/from/by/of/ago, in front/before, because\nikke         | not\nder          | who/which, there/those\nvar          | past tense of \"to be\"\nmig          | me/myself\nsig          | oneself/himself/herself/itself/themselves\nmen          | but\net           | a/an/one, one (number), someone/somebody/one\nhar          | present tense of \"to have\"\nom           | round/about/for/in/a, about/around/down, if\nvi           | we\nmin          | my\nhavde        | past tense of \"to have\"\nham          | him\nhun          | she\nnu           | now\nover         | over/above/across/by/beyond/past/on/about, over/past\nda           | then, when/as/since\nfra          | from/off/since, off, since\ndu           | you\nud           | out\nsin          | his/her/its/one's\ndem          | them\nos           | us/ourselves\nop           | up\nman          | you/one\nhans         | his\nhvor         | where\neller        | or\nhvad         | what\nskal         | must/shall etc.\nselv         | myself/youself/herself/ourselves etc., even\nher          | here\nalle         | all/everyone/everybody etc.\nvil          | will (verb)\nblev         | past tense of \"to stay/to remain/to get/to become\"\nkunne        | could\nind          | in\nnår          | when\nvære         | present tense of \"to be\"\ndog          | however/yet/after all\nnoget        | something\nville        | would\njo           | you know/you see (adv), yes\nderes        | their/theirs\nefter        | after/behind/according to/for/by/from, later/afterwards\nned          | down\nskulle       | should\ndenne        | this\nend          | than\ndette        | this\nmit          | my/mine\nogså         | also\nunder        | under/beneath/below/during, below/underneath\nhave         | have\ndig          | you\nanden        | other\nhende        | her\nmine         | my\nalt          | everything\nmeget        | much/very, plenty of\nsit          | his, her, its, one's\nsine         | his, her, its, one's\nvor          | our\nmod          | against\ndisse        | these\nhvis         | if\ndin          | your/yours\nnogle        | some\nhos          | by/at\nblive        | be/become\nmange        | many\nad           | by/through\nbliver       | present tense of \"to be/to become\"\nhendes       | her/hers\nværet        | be\nthi          | for (conj)\njer          | you\nsådan        | such, like this/like that\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_de.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/german/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A German stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | The number of forms in this list is reduced significantly by passing it\n | through the German stemmer.\n\n\naber           |  but\n\nalle           |  all\nallem\nallen\naller\nalles\n\nals            |  than, as\nalso           |  so\nam             |  an + dem\nan             |  at\n\nander          |  other\nandere\nanderem\nanderen\nanderer\nanderes\nanderm\nandern\nanderr\nanders\n\nauch           |  also\nauf            |  on\naus            |  out of\nbei            |  by\nbin            |  am\nbis            |  until\nbist           |  art\nda             |  there\ndamit          |  with it\ndann           |  then\n\nder            |  the\nden\ndes\ndem\ndie\ndas\n\ndaß            |  that\n\nderselbe       |  the same\nderselben\ndenselben\ndesselben\ndemselben\ndieselbe\ndieselben\ndasselbe\n\ndazu           |  to that\n\ndein           |  thy\ndeine\ndeinem\ndeinen\ndeiner\ndeines\n\ndenn           |  because\n\nderer          |  of those\ndessen         |  of him\n\ndich           |  thee\ndir            |  to thee\ndu             |  thou\n\ndies           |  this\ndiese\ndiesem\ndiesen\ndieser\ndieses\n\n\ndoch           |  (several meanings)\ndort           |  (over) there\n\n\ndurch          |  through\n\nein            |  a\neine\neinem\neinen\neiner\neines\n\neinig          |  some\neinige\neinigem\neinigen\neiniger\neiniges\n\neinmal         |  once\n\ner             |  he\nihn            |  him\nihm            |  to him\n\nes             |  it\netwas          |  something\n\neuer           |  your\neure\neurem\neuren\neurer\neures\n\nfür            |  for\ngegen          |  towards\ngewesen        |  p.p. of sein\nhab            |  have\nhabe           |  have\nhaben          |  have\nhat            |  has\nhatte          |  had\nhatten         |  had\nhier           |  here\nhin            |  there\nhinter         |  behind\n\nich            |  I\nmich           |  me\nmir            |  to me\n\n\nihr            |  you, to her\nihre\nihrem\nihren\nihrer\nihres\neuch           |  to you\n\nim             |  in + dem\nin             |  in\nindem          |  while\nins            |  in + das\nist            |  is\n\njede           |  each, every\njedem\njeden\njeder\njedes\n\njene           |  that\njenem\njenen\njener\njenes\n\njetzt          |  now\nkann           |  can\n\nkein           |  no\nkeine\nkeinem\nkeinen\nkeiner\nkeines\n\nkönnen         |  can\nkönnte         |  could\nmachen         |  do\nman            |  one\n\nmanche         |  some, many a\nmanchem\nmanchen\nmancher\nmanches\n\nmein           |  my\nmeine\nmeinem\nmeinen\nmeiner\nmeines\n\nmit            |  with\nmuss           |  must\nmusste         |  had to\nnach           |  to(wards)\nnicht          |  not\nnichts         |  nothing\nnoch           |  still, yet\nnun            |  now\nnur            |  only\nob             |  whether\noder           |  or\nohne           |  without\nsehr           |  very\n\nsein           |  his\nseine\nseinem\nseinen\nseiner\nseines\n\nselbst         |  self\nsich           |  herself\n\nsie            |  they, she\nihnen          |  to them\n\nsind           |  are\nso             |  so\n\nsolche         |  such\nsolchem\nsolchen\nsolcher\nsolches\n\nsoll           |  shall\nsollte         |  should\nsondern        |  but\nsonst          |  else\nüber           |  over\num             |  about, around\nund            |  and\n\nuns            |  us\nunse\nunsem\nunsen\nunser\nunses\n\nunter          |  under\nviel           |  much\nvom            |  von + dem\nvon            |  from\nvor            |  before\nwährend        |  while\nwar            |  was\nwaren          |  were\nwarst          |  wast\nwas            |  what\nweg            |  away, off\nweil           |  because\nweiter         |  further\n\nwelche         |  which\nwelchem\nwelchen\nwelcher\nwelches\n\nwenn           |  when\nwerde          |  will\nwerden         |  will\nwie            |  how\nwieder         |  again\nwill           |  want\nwir            |  we\nwird           |  will\nwirst          |  willst\nwo             |  where\nwollen         |  want\nwollte         |  wanted\nwürde          |  would\nwürden         |  would\nzu             |  to\nzum            |  zu + dem\nzur            |  zu + der\nzwar           |  indeed\nzwischen       |  between\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_el.txt",
    "content": "# Lucene Greek Stopwords list\n# Note: by default this file is used after GreekLowerCaseFilter,\n# so when modifying this file use 'σ' instead of 'ς' \nο\nη\nτο\nοι\nτα\nτου\nτησ\nτων\nτον\nτην\nκαι \nκι\nκ\nειμαι\nεισαι\nειναι\nειμαστε\nειστε\nστο\nστον\nστη\nστην\nμα\nαλλα\nαπο\nγια\nπροσ\nμε\nσε\nωσ\nπαρα\nαντι\nκατα\nμετα\nθα\nνα\nδε\nδεν\nμη\nμην\nεπι\nενω\nεαν\nαν\nτοτε\nπου\nπωσ\nποιοσ\nποια\nποιο\nποιοι\nποιεσ\nποιων\nποιουσ\nαυτοσ\nαυτη\nαυτο\nαυτοι\nαυτων\nαυτουσ\nαυτεσ\nαυτα\nεκεινοσ\nεκεινη\nεκεινο\nεκεινοι\nεκεινεσ\nεκεινα\nεκεινων\nεκεινουσ\nοπωσ\nομωσ\nισωσ\nοσο\nοτι\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_en.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n# Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\nsuch\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_es.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/spanish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Spanish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n\n | The following is a ranked list (commonest to rarest) of stopwords\n | deriving from a large sample of text.\n\n | Extra words have been added at the end.\n\nde             |  from, of\nla             |  the, her\nque            |  who, that\nel             |  the\nen             |  in\ny              |  and\na              |  to\nlos            |  the, them\ndel            |  de + el\nse             |  himself, from him etc\nlas            |  the, them\npor            |  for, by, etc\nun             |  a\npara           |  for\ncon            |  with\nno             |  no\nuna            |  a\nsu             |  his, her\nal             |  a + el\n  | es         from SER\nlo             |  him\ncomo           |  how\nmás            |  more\npero           |  pero\nsus            |  su plural\nle             |  to him, her\nya             |  already\no              |  or\n  | fue        from SER\neste           |  this\n  | ha         from HABER\nsí             |  himself etc\nporque         |  because\nesta           |  this\n  | son        from SER\nentre          |  between\n  | está     from ESTAR\ncuando         |  when\nmuy            |  very\nsin            |  without\nsobre          |  on\n  | ser        from SER\n  | tiene      from TENER\ntambién        |  also\nme             |  me\nhasta          |  until\nhay            |  there is/are\ndonde          |  where\n  | han        from HABER\nquien          |  whom, that\n  | están      from ESTAR\n  | estado     from ESTAR\ndesde          |  from\ntodo           |  all\nnos            |  us\ndurante        |  during\n  | estados    from ESTAR\ntodos          |  all\nuno            |  a\nles            |  to them\nni             |  nor\ncontra         |  against\notros          |  other\n  | fueron     from SER\nese            |  that\neso            |  that\n  | había      from HABER\nante           |  before\nellos          |  they\ne              |  and (variant of y)\nesto           |  this\nmí             |  me\nantes          |  before\nalgunos        |  some\nqué            |  what?\nunos           |  a\nyo             |  I\notro           |  other\notras          |  other\notra           |  other\nél             |  he\ntanto          |  so much, many\nesa            |  that\nestos          |  these\nmucho          |  much, many\nquienes        |  who\nnada           |  nothing\nmuchos         |  many\ncual           |  who\n  | sea        from SER\npoco           |  few\nella           |  she\nestar          |  to be\n  | haber      from HABER\nestas          |  these\n  | estaba     from ESTAR\n  | estamos    from ESTAR\nalgunas        |  some\nalgo           |  something\nnosotros       |  we\n\n      | other forms\n\nmi             |  me\nmis            |  mi plural\ntú             |  thou\nte             |  thee\nti             |  thee\ntu             |  thy\ntus            |  tu plural\nellas          |  they\nnosotras       |  we\nvosotros       |  you\nvosotras       |  you\nos             |  you\nmío            |  mine\nmía            |\nmíos           |\nmías           |\ntuyo           |  thine\ntuya           |\ntuyos          |\ntuyas          |\nsuyo           |  his, hers, theirs\nsuya           |\nsuyos          |\nsuyas          |\nnuestro        |  ours\nnuestra        |\nnuestros       |\nnuestras       |\nvuestro        |  yours\nvuestra        |\nvuestros       |\nvuestras       |\nesos           |  those\nesas           |  those\n\n               | forms of estar, to be (not including the infinitive):\nestoy\nestás\nestá\nestamos\nestáis\nestán\nesté\nestés\nestemos\nestéis\nestén\nestaré\nestarás\nestará\nestaremos\nestaréis\nestarán\nestaría\nestarías\nestaríamos\nestaríais\nestarían\nestaba\nestabas\nestábamos\nestabais\nestaban\nestuve\nestuviste\nestuvo\nestuvimos\nestuvisteis\nestuvieron\nestuviera\nestuvieras\nestuviéramos\nestuvierais\nestuvieran\nestuviese\nestuvieses\nestuviésemos\nestuvieseis\nestuviesen\nestando\nestado\nestada\nestados\nestadas\nestad\n\n               | forms of haber, to have (not including the infinitive):\nhe\nhas\nha\nhemos\nhabéis\nhan\nhaya\nhayas\nhayamos\nhayáis\nhayan\nhabré\nhabrás\nhabrá\nhabremos\nhabréis\nhabrán\nhabría\nhabrías\nhabríamos\nhabríais\nhabrían\nhabía\nhabías\nhabíamos\nhabíais\nhabían\nhube\nhubiste\nhubo\nhubimos\nhubisteis\nhubieron\nhubiera\nhubieras\nhubiéramos\nhubierais\nhubieran\nhubiese\nhubieses\nhubiésemos\nhubieseis\nhubiesen\nhabiendo\nhabido\nhabida\nhabidos\nhabidas\n\n               | forms of ser, to be (not including the infinitive):\nsoy\neres\nes\nsomos\nsois\nson\nsea\nseas\nseamos\nseáis\nsean\nseré\nserás\nserá\nseremos\nseréis\nserán\nsería\nserías\nseríamos\nseríais\nserían\nera\neras\néramos\nerais\neran\nfui\nfuiste\nfue\nfuimos\nfuisteis\nfueron\nfuera\nfueras\nfuéramos\nfuerais\nfueran\nfuese\nfueses\nfuésemos\nfueseis\nfuesen\nsiendo\nsido\n  |  sed also means 'thirst'\n\n               | forms of tener, to have (not including the infinitive):\ntengo\ntienes\ntiene\ntenemos\ntenéis\ntienen\ntenga\ntengas\ntengamos\ntengáis\ntengan\ntendré\ntendrás\ntendrá\ntendremos\ntendréis\ntendrán\ntendría\ntendrías\ntendríamos\ntendríais\ntendrían\ntenía\ntenías\nteníamos\nteníais\ntenían\ntuve\ntuviste\ntuvo\ntuvimos\ntuvisteis\ntuvieron\ntuviera\ntuvieras\ntuviéramos\ntuvierais\ntuvieran\ntuviese\ntuvieses\ntuviésemos\ntuvieseis\ntuviesen\nteniendo\ntenido\ntenida\ntenidos\ntenidas\ntened\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_eu.txt",
    "content": "# example set of basque stopwords\nal\nanitz\narabera\nasko\nbaina\nbat\nbatean\nbatek\nbati\nbatzuei\nbatzuek\nbatzuetan\nbatzuk\nbera\nberaiek\nberau\nberauek\nbere\nberori\nberoriek\nbeste\nbezala\nda\ndago\ndira\nditu\ndu\ndute\nedo\negin\nere\neta\neurak\nez\ngainera\ngu\ngutxi\nguzti\nhaiei\nhaiek\nhaietan\nhainbeste\nhala\nhan\nhandik\nhango\nhara\nhari\nhark\nhartan\nhau\nhauei\nhauek\nhauetan\nhemen\nhemendik\nhemengo\nhi\nhona\nhonek\nhonela\nhonetan\nhoni\nhor\nhori\nhoriei\nhoriek\nhorietan\nhorko\nhorra\nhorrek\nhorrela\nhorretan\nhorri\nhortik\nhura\nizan\nni\nnoiz\nnola\nnon\nnondik\nnongo\nnor\nnora\nze\nzein\nzen\nzenbait\nzenbat\nzer\nzergatik\nziren\nzituen\nzu\nzuek\nzuen\nzuten\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_fa.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\n# Note: by default this file is used after normalization, so when adding entries\n# to this file, use the arabic 'ي' instead of 'ی'\nانان\nنداشته\nسراسر\nخياه\nايشان\nوي\nتاكنون\nبيشتري\nدوم\nپس\nناشي\nوگو\nيا\nداشتند\nسپس\nهنگام\nهرگز\nپنج\nنشان\nامسال\nديگر\nگروهي\nشدند\nچطور\nده\nو\nدو\nنخستين\nولي\nچرا\nچه\nوسط\nه\nكدام\nقابل\nيك\nرفت\nهفت\nهمچنين\nدر\nهزار\nبله\nبلي\nشايد\nاما\nشناسي\nگرفته\nدهد\nداشته\nدانست\nداشتن\nخواهيم\nميليارد\nوقتيكه\nامد\nخواهد\nجز\nاورده\nشده\nبلكه\nخدمات\nشدن\nبرخي\nنبود\nبسياري\nجلوگيري\nحق\nكردند\nنوعي\nبعري\nنكرده\nنظير\nنبايد\nبوده\nبودن\nداد\nاورد\nهست\nجايي\nشود\nدنبال\nداده\nبايد\nسابق\nهيچ\nهمان\nانجا\nكمتر\nكجاست\nگردد\nكسي\nتر\nمردم\nتان\nدادن\nبودند\nسري\nجدا\nندارند\nمگر\nيكديگر\nدارد\nدهند\nبنابراين\nهنگامي\nسمت\nجا\nانچه\nخود\nدادند\nزياد\nدارند\nاثر\nبدون\nبهترين\nبيشتر\nالبته\nبه\nبراساس\nبيرون\nكرد\nبعضي\nگرفت\nتوي\nاي\nميليون\nاو\nجريان\nتول\nبر\nمانند\nبرابر\nباشيم\nمدتي\nگويند\nاكنون\nتا\nتنها\nجديد\nچند\nبي\nنشده\nكردن\nكردم\nگويد\nكرده\nكنيم\nنمي\nنزد\nروي\nقصد\nفقط\nبالاي\nديگران\nاين\nديروز\nتوسط\nسوم\nايم\nدانند\nسوي\nاستفاده\nشما\nكنار\nداريم\nساخته\nطور\nامده\nرفته\nنخست\nبيست\nنزديك\nطي\nكنيد\nاز\nانها\nتمامي\nداشت\nيكي\nطريق\nاش\nچيست\nروب\nنمايد\nگفت\nچندين\nچيزي\nتواند\nام\nايا\nبا\nان\nايد\nترين\nاينكه\nديگري\nراه\nهايي\nبروز\nهمچنان\nپاعين\nكس\nحدود\nمختلف\nمقابل\nچيز\nگيرد\nندارد\nضد\nهمچون\nسازي\nشان\nمورد\nباره\nمرسي\nخويش\nبرخوردار\nچون\nخارج\nشش\nهنوز\nتحت\nضمن\nهستيم\nگفته\nفكر\nبسيار\nپيش\nبراي\nروزهاي\nانكه\nنخواهد\nبالا\nكل\nوقتي\nكي\nچنين\nكه\nگيري\nنيست\nاست\nكجا\nكند\nنيز\nيابد\nبندي\nحتي\nتوانند\nعقب\nخواست\nكنند\nبين\nتمام\nهمه\nما\nباشند\nمثل\nشد\nاري\nباشد\nاره\nطبق\nبعد\nاگر\nصورت\nغير\nجاي\nبيش\nريزي\nاند\nزيرا\nچگونه\nبار\nلطفا\nمي\nدرباره\nمن\nديده\nهمين\nگذاري\nبرداري\nعلت\nگذاشته\nهم\nفوق\nنه\nها\nشوند\nاباد\nهمواره\nهر\nاول\nخواهند\nچهار\nنام\nامروز\nمان\nهاي\nقبل\nكنم\nسعي\nتازه\nرا\nهستند\nزير\nجلوي\nعنوان\nبود\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_fi.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/finnish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n \n| forms of BE\n\nolla\nolen\nolet\non\nolemme\nolette\novat\nole        | negative form\n\noli\nolisi\nolisit\nolisin\nolisimme\nolisitte\nolisivat\nolit\nolin\nolimme\nolitte\nolivat\nollut\nolleet\n\nen         | negation\net\nei\nemme\nette\neivät\n\n|Nom   Gen    Acc    Part   Iness   Elat    Illat  Adess   Ablat   Allat   Ess    Trans\nminä   minun  minut  minua  minussa minusta minuun minulla minulta minulle               | I\nsinä   sinun  sinut  sinua  sinussa sinusta sinuun sinulla sinulta sinulle               | you\nhän    hänen  hänet  häntä  hänessä hänestä häneen hänellä häneltä hänelle               | he she\nme     meidän meidät meitä  meissä  meistä  meihin meillä  meiltä  meille                | we\nte     teidän teidät teitä  teissä  teistä  teihin teillä  teiltä  teille                | you\nhe     heidän heidät heitä  heissä  heistä  heihin heillä  heiltä  heille                | they\n\ntämä   tämän         tätä   tässä   tästä   tähän  tallä   tältä   tälle   tänä   täksi  | this\ntuo    tuon          tuotä  tuossa  tuosta  tuohon tuolla  tuolta  tuolle  tuona  tuoksi | that\nse     sen           sitä   siinä   siitä   siihen sillä   siltä   sille   sinä   siksi  | it\nnämä   näiden        näitä  näissä  näistä  näihin näillä  näiltä  näille  näinä  näiksi | these\nnuo    noiden        noita  noissa  noista  noihin noilla  noilta  noille  noina  noiksi | those\nne     niiden        niitä  niissä  niistä  niihin niillä  niiltä  niille  niinä  niiksi | they\n\nkuka   kenen kenet   ketä   kenessä kenestä keneen kenellä keneltä kenelle kenenä keneksi| who\nketkä  keiden ketkä  keitä  keissä  keistä  keihin keillä  keiltä  keille  keinä  keiksi | (pl)\nmikä   minkä minkä   mitä   missä   mistä   mihin  millä   miltä   mille   minä   miksi  | which what\nmitkä                                                                                    | (pl)\n\njoka   jonka         jota   jossa   josta   johon  jolla   jolta   jolle   jona   joksi  | who which\njotka  joiden        joita  joissa  joista  joihin joilla  joilta  joille  joina  joiksi | (pl)\n\n| conjunctions\n\nettä   | that\nja     | and\njos    | if\nkoska  | because\nkuin   | than\nmutta  | but\nniin   | so\nsekä   | and\nsillä  | for\ntai    | or\nvaan   | but\nvai    | or\nvaikka | although\n\n\n| prepositions\n\nkanssa  | with\nmukaan  | according to\nnoin    | about\npoikki  | across\nyli     | over, across\n\n| other\n\nkun    | when\nniin   | so\nnyt    | now\nitse   | self\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_fr.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/french/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A French stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\nau             |  a + le\naux            |  a + les\navec           |  with\nce             |  this\nces            |  these\ndans           |  with\nde             |  of\ndes            |  de + les\ndu             |  de + le\nelle           |  she\nen             |  `of them' etc\net             |  and\neux            |  them\nil             |  he\nje             |  I\nla             |  the\nle             |  the\nleur           |  their\nlui            |  him\nma             |  my (fem)\nmais           |  but\nme             |  me\nmême           |  same; as in moi-même (myself) etc\nmes            |  me (pl)\nmoi            |  me\nmon            |  my (masc)\nne             |  not\nnos            |  our (pl)\nnotre          |  our\nnous           |  we\non             |  one\nou             |  where\npar            |  by\npas            |  not\npour           |  for\nqu             |  que before vowel\nque            |  that\nqui            |  who\nsa             |  his, her (fem)\nse             |  oneself\nses            |  his (pl)\nson            |  his, her (masc)\nsur            |  on\nta             |  thy (fem)\nte             |  thee\ntes            |  thy (pl)\ntoi            |  thee\nton            |  thy (masc)\ntu             |  thou\nun             |  a\nune            |  a\nvos            |  your (pl)\nvotre          |  your\nvous           |  you\n\n               |  single letter forms\n\nc              |  c'\nd              |  d'\nj              |  j'\nl              |  l'\nà              |  to, at\nm              |  m'\nn              |  n'\ns              |  s'\nt              |  t'\ny              |  there\n\n               | forms of être (not including the infinitive):\nété\nétée\nétées\nétés\nétant\nsuis\nes\nest\nsommes\nêtes\nsont\nserai\nseras\nsera\nserons\nserez\nseront\nserais\nserait\nserions\nseriez\nseraient\nétais\nétait\nétions\nétiez\nétaient\nfus\nfut\nfûmes\nfûtes\nfurent\nsois\nsoit\nsoyons\nsoyez\nsoient\nfusse\nfusses\nfût\nfussions\nfussiez\nfussent\n\n               | forms of avoir (not including the infinitive):\nayant\neu\neue\neues\neus\nai\nas\navons\navez\nont\naurai\nauras\naura\naurons\naurez\nauront\naurais\naurait\naurions\nauriez\nauraient\navais\navait\navions\naviez\navaient\neut\neûmes\neûtes\neurent\naie\naies\nait\nayons\nayez\naient\neusse\neusses\neût\neussions\neussiez\neussent\n\n               | Later additions (from Jean-Christophe Deschamps)\nceci           |  this\ncela           |  that\ncelà           |  that\ncet            |  this\ncette          |  this\nici            |  here\nils            |  they\nles            |  the (pl)\nleurs          |  their (pl)\nquel           |  which\nquels          |  which\nquelle         |  which\nquelles        |  which\nsans           |  without\nsoi            |  oneself\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ga.txt",
    "content": "\na\nach\nag\nagus\nan\naon\nar\narna\nas\nb'\nba\nbeirt\nbhúr\ncaoga\nceathair\nceathrar\nchomh\nchtó\nchuig\nchun\ncois\ncéad\ncúig\ncúigear\nd'\ndaichead\ndar\nde\ndeich\ndeichniúr\nden\ndhá\ndo\ndon\ndtí\ndá\ndár\ndó\nfaoi\nfaoin\nfaoina\nfaoinár\nfara\nfiche\ngach\ngan\ngo\ngur\nhaon\nhocht\ni\niad\nidir\nin\nina\nins\ninár\nis\nle\nleis\nlena\nlenár\nm'\nmar\nmo\nmé\nna\nnach\nnaoi\nnaonúr\nná\nní\nníor\nnó\nnócha\nocht\nochtar\nos\nroimh\nsa\nseacht\nseachtar\nseachtó\nseasca\nseisear\nsiad\nsibh\nsinn\nsna\nsé\nsí\ntar\nthar\nthú\ntriúr\ntrí\ntrína\ntrínár\ntríocha\ntú\num\nár\né\néis\ní\nó\nón\nóna\nónár\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_gl.txt",
    "content": "# galican stopwords\na\naínda\nalí\naquel\naquela\naquelas\naqueles\naquilo\naquí\nao\naos\nas\nasí\ná\nben\ncando\nche\nco\ncoa\ncomigo\ncon\nconnosco\ncontigo\nconvosco\ncoas\ncos\ncun\ncuns\ncunha\ncunhas\nda\ndalgunha\ndalgunhas\ndalgún\ndalgúns\ndas\nde\ndel\ndela\ndelas\ndeles\ndesde\ndeste\ndo\ndos\ndun\nduns\ndunha\ndunhas\ne\nel\nela\nelas\neles\nen\nera\neran\nesa\nesas\nese\neses\nesta\nestar\nestaba\nestá\nestán\neste\nestes\nestiven\nestou\neu\né\nfacer\nfoi\nforon\nfun\nhabía\nhai\niso\nisto\nla\nlas\nlle\nlles\nlo\nlos\nmais\nme\nmeu\nmeus\nmin\nmiña\nmiñas\nmoi\nna\nnas\nneste\nnin\nno\nnon\nnos\nnosa\nnosas\nnoso\nnosos\nnós\nnun\nnunha\nnuns\nnunhas\no\nos\nou\nó\nós\npara\npero\npode\npois\npola\npolas\npolo\npolos\npor\nque\nse\nsenón\nser\nseu\nseus\nsexa\nsido\nsobre\nsúa\nsúas\ntamén\ntan\nte\nten\nteñen\nteño\nter\nteu\nteus\nti\ntido\ntiña\ntiven\ntúa\ntúas\nun\nunha\nunhas\nuns\nvos\nvosa\nvosas\nvoso\nvosos\nvós\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_hi.txt",
    "content": "# Also see http://www.opensource.org/licenses/bsd-license.html\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# This file was created by Jacques Savoy and is distributed under the BSD license.\n# Note: by default this file also contains forms normalized by HindiNormalizer \n# for spelling variation (see section below), such that it can be used whether or \n# not you enable that feature. When adding additional entries to this list,\n# please add the normalized form as well. \nअंदर\nअत\nअपना\nअपनी\nअपने\nअभी\nआदि\nआप\nइत्यादि\nइन \nइनका\nइन्हीं\nइन्हें\nइन्हों\nइस\nइसका\nइसकी\nइसके\nइसमें\nइसी\nइसे\nउन\nउनका\nउनकी\nउनके\nउनको\nउन्हीं\nउन्हें\nउन्हों\nउस\nउसके\nउसी\nउसे\nएक\nएवं\nएस\nऐसे\nऔर\nकई\nकर\nकरता\nकरते\nकरना\nकरने\nकरें\nकहते\nकहा\nका\nकाफ़ी\nकि\nकितना\nकिन्हें\nकिन्हों\nकिया\nकिर\nकिस\nकिसी\nकिसे\nकी\nकुछ\nकुल\nके\nको\nकोई\nकौन\nकौनसा\nगया\nघर\nजब\nजहाँ\nजा\nजितना\nजिन\nजिन्हें\nजिन्हों\nजिस\nजिसे\nजीधर\nजैसा\nजैसे\nजो\nतक\nतब\nतरह\nतिन\nतिन्हें\nतिन्हों\nतिस\nतिसे\nतो\nथा\nथी\nथे\nदबारा\nदिया\nदुसरा\nदूसरे\nदो\nद्वारा\nन\nनहीं\nना\nनिहायत\nनीचे\nने\nपर\nपर  \nपहले\nपूरा\nपे\nफिर\nबनी\nबही\nबहुत\nबाद\nबाला\nबिलकुल\nभी\nभीतर\nमगर\nमानो\nमे\nमें\nयदि\nयह\nयहाँ\nयही\nया\nयिह \nये\nरखें\nरहा\nरहे\nऱ्वासा\nलिए\nलिये\nलेकिन\nव\nवर्ग\nवह\nवह \nवहाँ\nवहीं\nवाले\nवुह \nवे\nवग़ैरह\nसंग\nसकता\nसकते\nसबसे\nसभी\nसाथ\nसाबुत\nसाभ\nसारा\nसे\nसो\nही\nहुआ\nहुई\nहुए\nहै\nहैं\nहो\nहोता\nहोती\nहोते\nहोना\nहोने\n# additional normalized forms of the above\nअपनि\nजेसे\nहोति\nसभि\nतिंहों\nइंहों\nदवारा\nइसि\nकिंहें\nथि\nउंहों\nओर\nजिंहें\nवहिं\nअभि\nबनि\nहि\nउंहिं\nउंहें\nहें\nवगेरह\nएसे\nरवासा\nकोन\nनिचे\nकाफि\nउसि\nपुरा\nभितर\nहे\nबहि\nवहां\nकोइ\nयहां\nजिंहों\nतिंहें\nकिसि\nकइ\nयहि\nइंहिं\nजिधर\nइंहें\nअदि\nइतयादि\nहुइ\nकोनसा\nइसकि\nदुसरे\nजहां\nअप\nकिंहों\nउनकि\nभि\nवरग\nहुअ\nजेसा\nनहिं\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_hu.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/hungarian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n \n| Hungarian stop word list\n| prepared by Anna Tordai\n\na\nahogy\nahol\naki\nakik\nakkor\nalatt\náltal\náltalában\namely\namelyek\namelyekben\namelyeket\namelyet\namelynek\nami\namit\namolyan\namíg\namikor\nát\nabban\nahhoz\nannak\narra\narról\naz\nazok\nazon\nazt\nazzal\nazért\naztán\nazután\nazonban\nbár\nbe\nbelül\nbenne\ncikk\ncikkek\ncikkeket\ncsak\nde\ne\neddig\negész\negy\negyes\negyetlen\negyéb\negyik\negyre\nekkor\nel\nelég\nellen\nelő\nelőször\nelőtt\nelső\nén\néppen\nebben\nehhez\nemilyen\nennek\nerre\nez\nezt\nezek\nezen\nezzel\nezért\nés\nfel\nfelé\nhanem\nhiszen\nhogy\nhogyan\nigen\nígy\nilletve\nill.\nill\nilyen\nilyenkor\nison\nismét\nitt\njó\njól\njobban\nkell\nkellett\nkeresztül\nkeressünk\nki\nkívül\nközött\nközül\nlegalább\nlehet\nlehetett\nlegyen\nlenne\nlenni\nlesz\nlett\nmaga\nmagát\nmajd\nmajd\nmár\nmás\nmásik\nmeg\nmég\nmellett\nmert\nmely\nmelyek\nmi\nmit\nmíg\nmiért\nmilyen\nmikor\nminden\nmindent\nmindenki\nmindig\nmint\nmintha\nmivel\nmost\nnagy\nnagyobb\nnagyon\nne\nnéha\nnekem\nneki\nnem\nnéhány\nnélkül\nnincs\nolyan\nott\nössze\nő\nők\nőket\npedig\npersze\nrá\ns\nsaját\nsem\nsemmi\nsok\nsokat\nsokkal\nszámára\nszemben\nszerint\nszinte\ntalán\ntehát\nteljes\ntovább\ntovábbá\ntöbb\núgy\nugyanis\núj\nújabb\nújra\nután\nutána\nutolsó\nvagy\nvagyis\nvalaki\nvalami\nvalamint\nvaló\nvagyok\nvan\nvannak\nvolt\nvoltam\nvoltak\nvoltunk\nvissza\nvele\nviszont\nvolna\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_hy.txt",
    "content": "# example set of Armenian stopwords.\nայդ\nայլ\nայն\nայս\nդու\nդուք\nեմ\nեն\nենք\nես\nեք\nէ\nէի\nէին\nէինք\nէիր\nէիք\nէր\nըստ\nթ\nի\nին\nիսկ\nիր\nկամ\nհամար\nհետ\nհետո\nմենք\nմեջ\nմի\nն\nնա\nնաև\nնրա\nնրանք\nոր\nորը\nորոնք\nորպես\nու\nում\nպիտի\nվրա\nև\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_id.txt",
    "content": "# from appendix D of: A Study of Stemming Effects on Information\n# Retrieval in Bahasa Indonesia\nada\nadanya\nadalah\nadapun\nagak\nagaknya\nagar\nakan\nakankah\nakhirnya\naku\nakulah\namat\namatlah\nanda\nandalah\nantar\ndiantaranya\nantara\nantaranya\ndiantara\napa\napaan\nmengapa\napabila\napakah\napalagi\napatah\natau\nataukah\nataupun\nbagai\nbagaikan\nsebagai\nsebagainya\nbagaimana\nbagaimanapun\nsebagaimana\nbagaimanakah\nbagi\nbahkan\nbahwa\nbahwasanya\nsebaliknya\nbanyak\nsebanyak\nbeberapa\nseberapa\nbegini\nbeginian\nbeginikah\nbeginilah\nsebegini\nbegitu\nbegitukah\nbegitulah\nbegitupun\nsebegitu\nbelum\nbelumlah\nsebelum\nsebelumnya\nsebenarnya\nberapa\nberapakah\nberapalah\nberapapun\nbetulkah\nsebetulnya\nbiasa\nbiasanya\nbila\nbilakah\nbisa\nbisakah\nsebisanya\nboleh\nbolehkah\nbolehlah\nbuat\nbukan\nbukankah\nbukanlah\nbukannya\ncuma\npercuma\ndahulu\ndalam\ndan\ndapat\ndari\ndaripada\ndekat\ndemi\ndemikian\ndemikianlah\nsedemikian\ndengan\ndepan\ndi\ndia\ndialah\ndini\ndiri\ndirinya\nterdiri\ndong\ndulu\nenggak\nenggaknya\nentah\nentahlah\nterhadap\nterhadapnya\nhal\nhampir\nhanya\nhanyalah\nharus\nharuslah\nharusnya\nseharusnya\nhendak\nhendaklah\nhendaknya\nhingga\nsehingga\nia\nialah\nibarat\ningin\ninginkah\ninginkan\nini\ninikah\ninilah\nitu\nitukah\nitulah\njangan\njangankan\njanganlah\njika\njikalau\njuga\njustru\nkala\nkalau\nkalaulah\nkalaupun\nkalian\nkami\nkamilah\nkamu\nkamulah\nkan\nkapan\nkapankah\nkapanpun\ndikarenakan\nkarena\nkarenanya\nke\nkecil\nkemudian\nkenapa\nkepada\nkepadanya\nketika\nseketika\nkhususnya\nkini\nkinilah\nkiranya\nsekiranya\nkita\nkitalah\nkok\nlagi\nlagian\nselagi\nlah\nlain\nlainnya\nmelainkan\nselaku\nlalu\nmelalui\nterlalu\nlama\nlamanya\nselama\nselama\nselamanya\nlebih\nterlebih\nbermacam\nmacam\nsemacam\nmaka\nmakanya\nmakin\nmalah\nmalahan\nmampu\nmampukah\nmana\nmanakala\nmanalagi\nmasih\nmasihkah\nsemasih\nmasing\nmau\nmaupun\nsemaunya\nmemang\nmereka\nmerekalah\nmeski\nmeskipun\nsemula\nmungkin\nmungkinkah\nnah\nnamun\nnanti\nnantinya\nnyaris\noleh\nolehnya\nseorang\nseseorang\npada\npadanya\npadahal\npaling\nsepanjang\npantas\nsepantasnya\nsepantasnyalah\npara\npasti\npastilah\nper\npernah\npula\npun\nmerupakan\nrupanya\nserupa\nsaat\nsaatnya\nsesaat\nsaja\nsajalah\nsaling\nbersama\nsama\nsesama\nsambil\nsampai\nsana\nsangat\nsangatlah\nsaya\nsayalah\nse\nsebab\nsebabnya\nsebuah\ntersebut\ntersebutlah\nsedang\nsedangkan\nsedikit\nsedikitnya\nsegala\nsegalanya\nsegera\nsesegera\nsejak\nsejenak\nsekali\nsekalian\nsekalipun\nsesekali\nsekaligus\nsekarang\nsekarang\nsekitar\nsekitarnya\nsela\nselain\nselalu\nseluruh\nseluruhnya\nsemakin\nsementara\nsempat\nsemua\nsemuanya\nsendiri\nsendirinya\nseolah\nseperti\nsepertinya\nsering\nseringnya\nserta\nsiapa\nsiapakah\nsiapapun\ndisini\ndisinilah\nsini\nsinilah\nsesuatu\nsesuatunya\nsuatu\nsesudah\nsesudahnya\nsudah\nsudahkah\nsudahlah\nsupaya\ntadi\ntadinya\ntak\ntanpa\nsetelah\ntelah\ntentang\ntentu\ntentulah\ntentunya\ntertentu\nseterusnya\ntapi\ntetapi\nsetiap\ntiap\nsetidaknya\ntidak\ntidakkah\ntidaklah\ntoh\nwaduh\nwah\nwahai\nsewaktu\nwalau\nwalaupun\nwong\nyaitu\nyakni\nyang\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_it.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/italian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | An Italian stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\nad             |  a (to) before vowel\nal             |  a + il\nallo           |  a + lo\nai             |  a + i\nagli           |  a + gli\nall            |  a + l'\nagl            |  a + gl'\nalla           |  a + la\nalle           |  a + le\ncon            |  with\ncol            |  con + il\ncoi            |  con + i (forms collo, cogli etc are now very rare)\nda             |  from\ndal            |  da + il\ndallo          |  da + lo\ndai            |  da + i\ndagli          |  da + gli\ndall           |  da + l'\ndagl           |  da + gll'\ndalla          |  da + la\ndalle          |  da + le\ndi             |  of\ndel            |  di + il\ndello          |  di + lo\ndei            |  di + i\ndegli          |  di + gli\ndell           |  di + l'\ndegl           |  di + gl'\ndella          |  di + la\ndelle          |  di + le\nin             |  in\nnel            |  in + el\nnello          |  in + lo\nnei            |  in + i\nnegli          |  in + gli\nnell           |  in + l'\nnegl           |  in + gl'\nnella          |  in + la\nnelle          |  in + le\nsu             |  on\nsul            |  su + il\nsullo          |  su + lo\nsui            |  su + i\nsugli          |  su + gli\nsull           |  su + l'\nsugl           |  su + gl'\nsulla          |  su + la\nsulle          |  su + le\nper            |  through, by\ntra            |  among\ncontro         |  against\nio             |  I\ntu             |  thou\nlui            |  he\nlei            |  she\nnoi            |  we\nvoi            |  you\nloro           |  they\nmio            |  my\nmia            |\nmiei           |\nmie            |\ntuo            |\ntua            |\ntuoi           |  thy\ntue            |\nsuo            |\nsua            |\nsuoi           |  his, her\nsue            |\nnostro         |  our\nnostra         |\nnostri         |\nnostre         |\nvostro         |  your\nvostra         |\nvostri         |\nvostre         |\nmi             |  me\nti             |  thee\nci             |  us, there\nvi             |  you, there\nlo             |  him, the\nla             |  her, the\nli             |  them\nle             |  them, the\ngli            |  to him, the\nne             |  from there etc\nil             |  the\nun             |  a\nuno            |  a\nuna            |  a\nma             |  but\ned             |  and\nse             |  if\nperché         |  why, because\nanche          |  also\ncome           |  how\ndov            |  where (as dov')\ndove           |  where\nche            |  who, that\nchi            |  who\ncui            |  whom\nnon            |  not\npiù            |  more\nquale          |  who, that\nquanto         |  how much\nquanti         |\nquanta         |\nquante         |\nquello         |  that\nquelli         |\nquella         |\nquelle         |\nquesto         |  this\nquesti         |\nquesta         |\nqueste         |\nsi             |  yes\ntutto          |  all\ntutti          |  all\n\n               |  single letter forms:\n\na              |  at\nc              |  as c' for ce or ci\ne              |  and\ni              |  the\nl              |  as l'\no              |  or\n\n               | forms of avere, to have (not including the infinitive):\n\nho\nhai\nha\nabbiamo\navete\nhanno\nabbia\nabbiate\nabbiano\navrò\navrai\navrà\navremo\navrete\navranno\navrei\navresti\navrebbe\navremmo\navreste\navrebbero\navevo\navevi\naveva\navevamo\navevate\navevano\nebbi\navesti\nebbe\navemmo\naveste\nebbero\navessi\navesse\navessimo\navessero\navendo\navuto\navuta\navuti\navute\n\n               | forms of essere, to be (not including the infinitive):\nsono\nsei\nè\nsiamo\nsiete\nsia\nsiate\nsiano\nsarò\nsarai\nsarà\nsaremo\nsarete\nsaranno\nsarei\nsaresti\nsarebbe\nsaremmo\nsareste\nsarebbero\nero\neri\nera\neravamo\neravate\nerano\nfui\nfosti\nfu\nfummo\nfoste\nfurono\nfossi\nfosse\nfossimo\nfossero\nessendo\n\n               | forms of fare, to do (not including the infinitive, fa, fat-):\nfaccio\nfai\nfacciamo\nfanno\nfaccia\nfacciate\nfacciano\nfarò\nfarai\nfarà\nfaremo\nfarete\nfaranno\nfarei\nfaresti\nfarebbe\nfaremmo\nfareste\nfarebbero\nfacevo\nfacevi\nfaceva\nfacevamo\nfacevate\nfacevano\nfeci\nfacesti\nfece\nfacemmo\nfaceste\nfecero\nfacessi\nfacesse\nfacessimo\nfacessero\nfacendo\n\n               | forms of stare, to be (not including the infinitive):\nsto\nstai\nsta\nstiamo\nstanno\nstia\nstiate\nstiano\nstarò\nstarai\nstarà\nstaremo\nstarete\nstaranno\nstarei\nstaresti\nstarebbe\nstaremmo\nstareste\nstarebbero\nstavo\nstavi\nstava\nstavamo\nstavate\nstavano\nstetti\nstesti\nstette\nstemmo\nsteste\nstettero\nstessi\nstesse\nstessimo\nstessero\nstando\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ja.txt",
    "content": "#\n# This file defines a stopword set for Japanese.\n#\n# This set is made up of hand-picked frequent terms from segmented Japanese Wikipedia.\n# Punctuation characters and frequent kanji have mostly been left out.  See LUCENE-3745\n# for frequency lists, etc. that can be useful for making your own set (if desired)\n#\n# Note that there is an overlap between these stopwords and the terms stopped when used\n# in combination with the JapanesePartOfSpeechStopFilter.  When editing this file, note\n# that comments are not allowed on the same line as stopwords.\n#\n# Also note that stopping is done in a case-insensitive manner.  Change your StopFilter\n# configuration if you need case-sensitive stopping.  Lastly, note that stopping is done\n# using the same character width as the entries in this file.  Since this StopFilter is\n# normally done after a CJKWidthFilter in your chain, you would usually want your romaji\n# entries to be in half-width and your kana entries to be in full-width.\n#\nの\nに\nは\nを\nた\nが\nで\nて\nと\nし\nれ\nさ\nある\nいる\nも\nする\nから\nな\nこと\nとして\nい\nや\nれる\nなど\nなっ\nない\nこの\nため\nその\nあっ\nよう\nまた\nもの\nという\nあり\nまで\nられ\nなる\nへ\nか\nだ\nこれ\nによって\nにより\nおり\nより\nによる\nず\nなり\nられる\nにおいて\nば\nなかっ\nなく\nしかし\nについて\nせ\nだっ\nその後\nできる\nそれ\nう\nので\nなお\nのみ\nでき\nき\nつ\nにおける\nおよび\nいう\nさらに\nでも\nら\nたり\nその他\nに関する\nたち\nます\nん\nなら\nに対して\n特に\nせる\n及び\nこれら\nとき\nでは\nにて\nほか\nながら\nうち\nそして\nとともに\nただし\nかつて\nそれぞれ\nまたは\nお\nほど\nものの\nに対する\nほとんど\nと共に\nといった\nです\nとも\nところ\nここ\n##### End of file\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_lv.txt",
    "content": "# Set of Latvian stopwords from A Stemming Algorithm for Latvian, Karlis Kreslins\n# the original list of over 800 forms was refined: \n#   pronouns, adverbs, interjections were removed\n# \n# prepositions\naiz\nap\nar\napakš\nārpus\naugšpus\nbez\ncaur\ndēļ\ngar\niekš\niz\nkopš\nlabad\nlejpus\nlīdz\nno\notrpus\npa\npar\npār\npēc\npie\npirms\npret\npriekš\nstarp\nšaipus\nuz\nviņpus\nvirs\nvirspus\nzem\napakšpus\n# Conjunctions\nun\nbet\njo\nja\nka\nlai\ntomēr\ntikko\nturpretī\narī\nkaut\ngan\ntādēļ\ntā\nne\ntikvien\nvien\nkā\nir\nte\nvai\nkamēr\n# Particles\nar\ndiezin\ndroši\ndiemžēl\nnebūt\nik\nit\ntaču\nnu\npat\ntiklab\niekšpus\nnedz\ntik\nnevis\nturpretim\njeb\niekam\niekām\niekāms\nkolīdz\nlīdzko\ntiklīdz\njebšu\ntālab\ntāpēc\nnekā\nitin\njā\njau\njel\nnē\nnezin\ntad\ntikai\nvis\ntak\niekams\nvien\n# modal verbs\nbūt  \nbiju \nbiji\nbija\nbijām\nbijāt\nesmu\nesi\nesam\nesat \nbūšu     \nbūsi\nbūs\nbūsim\nbūsiet\ntikt\ntiku\ntiki\ntika\ntikām\ntikāt\ntieku\ntiec\ntiek\ntiekam\ntiekat\ntikšu\ntiks\ntiksim\ntiksiet\ntapt\ntapi\ntapāt\ntopat\ntapšu\ntapsi\ntaps\ntapsim\ntapsiet\nkļūt\nkļuvu\nkļuvi\nkļuva\nkļuvām\nkļuvāt\nkļūstu\nkļūsti\nkļūst\nkļūstam\nkļūstat\nkļūšu\nkļūsi\nkļūs\nkļūsim\nkļūsiet\n# verbs\nvarēt\nvarēju\nvarējām\nvarēšu\nvarēsim\nvar\nvarēji\nvarējāt\nvarēsi\nvarēsiet\nvarat\nvarēja\nvarēs\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_nl.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/dutch/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Dutch stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large sample of Dutch text.\n\n | Dutch stop words frequently exhibit homonym clashes. These are indicated\n | clearly below.\n\nde             |  the\nen             |  and\nvan            |  of, from\nik             |  I, the ego\nte             |  (1) chez, at etc, (2) to, (3) too\ndat            |  that, which\ndie            |  that, those, who, which\nin             |  in, inside\neen            |  a, an, one\nhij            |  he\nhet            |  the, it\nniet           |  not, nothing, naught\nzijn           |  (1) to be, being, (2) his, one's, its\nis             |  is\nwas            |  (1) was, past tense of all persons sing. of 'zijn' (to be) (2) wax, (3) the washing, (4) rise of river\nop             |  on, upon, at, in, up, used up\naan            |  on, upon, to (as dative)\nmet            |  with, by\nals            |  like, such as, when\nvoor           |  (1) before, in front of, (2) furrow\nhad            |  had, past tense all persons sing. of 'hebben' (have)\ner             |  there\nmaar           |  but, only\nom             |  round, about, for etc\nhem            |  him\ndan            |  then\nzou            |  should/would, past tense all persons sing. of 'zullen'\nof             |  or, whether, if\nwat            |  what, something, anything\nmijn           |  possessive and noun 'mine'\nmen            |  people, 'one'\ndit            |  this\nzo             |  so, thus, in this way\ndoor           |  through by\nover           |  over, across\nze             |  she, her, they, them\nzich           |  oneself\nbij            |  (1) a bee, (2) by, near, at\nook            |  also, too\ntot            |  till, until\nje             |  you\nmij            |  me\nuit            |  out of, from\nder            |  Old Dutch form of 'van der' still found in surnames\ndaar           |  (1) there, (2) because\nhaar           |  (1) her, their, them, (2) hair\nnaar           |  (1) unpleasant, unwell etc, (2) towards, (3) as\nheb            |  present first person sing. of 'to have'\nhoe            |  how, why\nheeft          |  present third person sing. of 'to have'\nhebben         |  'to have' and various parts thereof\ndeze           |  this\nu              |  you\nwant           |  (1) for, (2) mitten, (3) rigging\nnog            |  yet, still\nzal            |  'shall', first and third person sing. of verb 'zullen' (will)\nme             |  me\nzij            |  she, they\nnu             |  now\nge             |  'thou', still used in Belgium and south Netherlands\ngeen           |  none\nomdat          |  because\niets           |  something, somewhat\nworden         |  to become, grow, get\ntoch           |  yet, still\nal             |  all, every, each\nwaren          |  (1) 'were' (2) to wander, (3) wares, (3)\nveel           |  much, many\nmeer           |  (1) more, (2) lake\ndoen           |  to do, to make\ntoen           |  then, when\nmoet           |  noun 'spot/mote' and present form of 'to must'\nben            |  (1) am, (2) 'are' in interrogative second person singular of 'to be'\nzonder         |  without\nkan            |  noun 'can' and present form of 'to be able'\nhun            |  their, them\ndus            |  so, consequently\nalles          |  all, everything, anything\nonder          |  under, beneath\nja             |  yes, of course\neens           |  once, one day\nhier           |  here\nwie            |  who\nwerd           |  imperfect third person sing. of 'become'\naltijd         |  always\ndoch           |  yet, but etc\nwordt          |  present third person sing. of 'become'\nwezen          |  (1) to be, (2) 'been' as in 'been fishing', (3) orphans\nkunnen         |  to be able\nons            |  us/our\nzelf           |  self\ntegen          |  against, towards, at\nna             |  after, near\nreeds          |  already\nwil            |  (1) present tense of 'want', (2) 'will', noun, (3) fender\nkon            |  could; past tense of 'to be able'\nniets          |  nothing\nuw             |  your\niemand         |  somebody\ngeweest        |  been; past participle of 'be'\nandere         |  other\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_no.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/norwegian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Norwegian stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This stop word list is for the dominant bokmål dialect. Words unique\n | to nynorsk are marked *.\n\n | Revised by Jan Bruusgaard <Jan.Bruusgaard@ssb.no>, Jan 2005\n\nog             | and\ni              | in\njeg            | I\ndet            | it/this/that\nat             | to (w. inf.)\nen             | a/an\net             | a/an\nden            | it/this/that\ntil            | to\ner             | is/am/are\nsom            | who/that\npå             | on\nde             | they / you(formal)\nmed            | with\nhan            | he\nav             | of\nikke           | not\nikkje          | not *\nder            | there\nså             | so\nvar            | was/were\nmeg            | me\nseg            | you\nmen            | but\nett            | one\nhar            | have\nom             | about\nvi             | we\nmin            | my\nmitt           | my\nha             | have\nhadde          | had\nhun            | she\nnå             | now\nover           | over\nda             | when/as\nved            | by/know\nfra            | from\ndu             | you\nut             | out\nsin            | your\ndem            | them\noss            | us\nopp            | up\nman            | you/one\nkan            | can\nhans           | his\nhvor           | where\neller          | or\nhva            | what\nskal           | shall/must\nselv           | self (reflective)\nsjøl           | self (reflective)\nher            | here\nalle           | all\nvil            | will\nbli            | become\nble            | became\nblei           | became *\nblitt          | have become\nkunne          | could\ninn            | in\nnår            | when\nvære           | be\nkom            | come\nnoen           | some\nnoe            | some\nville          | would\ndere           | you\nsom            | who/which/that\nderes          | their/theirs\nkun            | only/just\nja             | yes\netter          | after\nned            | down\nskulle         | should\ndenne          | this\nfor            | for/because\ndeg            | you\nsi             | hers/his\nsine           | hers/his\nsitt           | hers/his\nmot            | against\nå              | to\nmeget          | much\nhvorfor        | why\ndette          | this\ndisse          | these/those\nuten           | without\nhvordan        | how\ningen          | none\ndin            | your\nditt           | your\nblir           | become\nsamme          | same\nhvilken        | which\nhvilke         | which (plural)\nsånn           | such a\ninni           | inside/within\nmellom         | between\nvår            | our\nhver           | each\nhvem           | who\nvors           | us/ours\nhvis           | whose\nbåde           | both\nbare           | only/just\nenn            | than\nfordi          | as/because\nfør            | before\nmange          | many\nogså           | also\nslik           | just\nvært           | been\nvære           | to be\nbåe            | both *\nbegge          | both\nsiden          | since\ndykk           | your *\ndykkar         | yours *\ndei            | they *\ndeira          | them *\ndeires         | theirs *\ndeim           | them *\ndi             | your (fem.) *\ndå             | as/when *\neg             | I *\nein            | a/an *\neit            | a/an *\neitt           | a/an *\nelles          | or *\nhonom          | he *\nhjå            | at *\nho             | she *\nhoe            | she *\nhenne          | her\nhennar         | her/hers\nhennes         | hers\nhoss           | how *\nhossen         | how *\nikkje          | not *\ningi           | noone *\ninkje          | noone *\nkorleis        | how *\nkorso          | how *\nkva            | what/which *\nkvar           | where *\nkvarhelst      | where *\nkven           | who/whom *\nkvi            | why *\nkvifor         | why *\nme             | we *\nmedan          | while *\nmi             | my *\nmine           | my *\nmykje          | much *\nno             | now *\nnokon          | some (masc./neut.) *\nnoka           | some (fem.) *\nnokor          | some *\nnoko           | some *\nnokre          | some *\nsi             | his/hers *\nsia            | since *\nsidan          | since *\nso             | so *\nsomt           | some *\nsomme          | some *\num             | about*\nupp            | up *\nvere           | be *\nvore           | was *\nverte          | become *\nvort           | become *\nvarte          | became *\nvart           | became *\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_pt.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/portuguese/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Portuguese stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n\n | The following is a ranked list (commonest to rarest) of stopwords\n | deriving from a large sample of text.\n\n | Extra words have been added at the end.\n\nde             |  of, from\na              |  the; to, at; her\no              |  the; him\nque            |  who, that\ne              |  and\ndo             |  de + o\nda             |  de + a\nem             |  in\num             |  a\npara           |  for\n  | é          from SER\ncom            |  with\nnão            |  not, no\numa            |  a\nos             |  the; them\nno             |  em + o\nse             |  himself etc\nna             |  em + a\npor            |  for\nmais           |  more\nas             |  the; them\ndos            |  de + os\ncomo           |  as, like\nmas            |  but\n  | foi        from SER\nao             |  a + o\nele            |  he\ndas            |  de + as\n  | tem        from TER\nà              |  a + a\nseu            |  his\nsua            |  her\nou             |  or\n  | ser        from SER\nquando         |  when\nmuito          |  much\n  | há         from HAV\nnos            |  em + os; us\njá             |  already, now\n  | está       from EST\neu             |  I\ntambém         |  also\nsó             |  only, just\npelo           |  per + o\npela           |  per + a\naté            |  up to\nisso           |  that\nela            |  he\nentre          |  between\n  | era        from SER\ndepois         |  after\nsem            |  without\nmesmo          |  same\naos            |  a + os\n  | ter        from TER\nseus           |  his\nquem           |  whom\nnas            |  em + as\nme             |  me\nesse           |  that\neles           |  they\n  | estão      from EST\nvocê           |  you\n  | tinha      from TER\n  | foram      from SER\nessa           |  that\nnum            |  em + um\nnem            |  nor\nsuas           |  her\nmeu            |  my\nàs             |  a + as\nminha          |  my\n  | têm        from TER\nnuma           |  em + uma\npelos          |  per + os\nelas           |  they\n  | havia      from HAV\n  | seja       from SER\nqual           |  which\n  | será       from SER\nnós            |  we\n  | tenho      from TER\nlhe            |  to him, her\ndeles          |  of them\nessas          |  those\nesses          |  those\npelas          |  per + as\neste           |  this\n  | fosse      from SER\ndele           |  of him\n\n | other words. There are many contractions such as naquele = em+aquele,\n | mo = me+o, but they are rare.\n | Indefinite article plural forms are also rare.\n\ntu             |  thou\nte             |  thee\nvocês          |  you (plural)\nvos            |  you\nlhes           |  to them\nmeus           |  my\nminhas\nteu            |  thy\ntua\nteus\ntuas\nnosso          | our\nnossa\nnossos\nnossas\n\ndela           |  of her\ndelas          |  of them\n\nesta           |  this\nestes          |  these\nestas          |  these\naquele         |  that\naquela         |  that\naqueles        |  those\naquelas        |  those\nisto           |  this\naquilo         |  that\n\n               | forms of estar, to be (not including the infinitive):\nestou\nestá\nestamos\nestão\nestive\nesteve\nestivemos\nestiveram\nestava\nestávamos\nestavam\nestivera\nestivéramos\nesteja\nestejamos\nestejam\nestivesse\nestivéssemos\nestivessem\nestiver\nestivermos\nestiverem\n\n               | forms of haver, to have (not including the infinitive):\nhei\nhá\nhavemos\nhão\nhouve\nhouvemos\nhouveram\nhouvera\nhouvéramos\nhaja\nhajamos\nhajam\nhouvesse\nhouvéssemos\nhouvessem\nhouver\nhouvermos\nhouverem\nhouverei\nhouverá\nhouveremos\nhouverão\nhouveria\nhouveríamos\nhouveriam\n\n               | forms of ser, to be (not including the infinitive):\nsou\nsomos\nsão\nera\néramos\neram\nfui\nfoi\nfomos\nforam\nfora\nfôramos\nseja\nsejamos\nsejam\nfosse\nfôssemos\nfossem\nfor\nformos\nforem\nserei\nserá\nseremos\nserão\nseria\nseríamos\nseriam\n\n               | forms of ter, to have (not including the infinitive):\ntenho\ntem\ntemos\ntém\ntinha\ntínhamos\ntinham\ntive\nteve\ntivemos\ntiveram\ntivera\ntivéramos\ntenha\ntenhamos\ntenham\ntivesse\ntivéssemos\ntivessem\ntiver\ntivermos\ntiverem\nterei\nterá\nteremos\nterão\nteria\nteríamos\nteriam\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ro.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\nacea\naceasta\naceastă\naceea\nacei\naceia\nacel\nacela\nacele\nacelea\nacest\nacesta\naceste\nacestea\naceşti\naceştia\nacolo\nacum\nai\naia\naibă\naici\nal\năla\nale\nalea\nălea\naltceva\naltcineva\nam\nar\nare\naş\naşadar\nasemenea\nasta\năsta\nastăzi\nastea\năstea\năştia\nasupra\naţi\nau\navea\navem\naveţi\nazi\nbine\nbucur\nbună\nca\ncă\ncăci\ncând\ncare\ncărei\ncăror\ncărui\ncât\ncâte\ncâţi\ncătre\ncâtva\nce\ncel\nceva\nchiar\ncînd\ncine\ncineva\ncît\ncîte\ncîţi\ncîtva\ncontra\ncu\ncum\ncumva\ncurând\ncurînd\nda\ndă\ndacă\ndar\ndatorită\nde\ndeci\ndeja\ndeoarece\ndeparte\ndeşi\ndin\ndinaintea\ndintr\ndintre\ndrept\ndupă\nea\nei\nel\nele\neram\neste\neşti\neu\nface\nfără\nfi\nfie\nfiecare\nfii\nfim\nfiţi\niar\nieri\nîi\nîl\nîmi\nîmpotriva\nîn \nînainte\nînaintea\nîncât\nîncît\nîncotro\nîntre\nîntrucât\nîntrucît\nîţi\nla\nlângă\nle\nli\nlîngă\nlor\nlui\nmă\nmâine\nmea\nmei\nmele\nmereu\nmeu\nmi\nmine\nmult\nmultă\nmulţi\nne\nnicăieri\nnici\nnimeni\nnişte\nnoastră\nnoastre\nnoi\nnoştri\nnostru\nnu\nori\noricând\noricare\noricât\norice\noricînd\noricine\noricît\noricum\noriunde\npână\npe\npentru\npeste\npînă\npoate\npot\nprea\nprima\nprimul\nprin\nprintr\nsa\nsă\nsăi\nsale\nsau\nsău\nse\nşi\nsînt\nsîntem\nsînteţi\nspre\nsub\nsunt\nsuntem\nsunteţi\nta\ntăi\ntale\ntău\nte\nţi\nţie\ntine\ntoată\ntoate\ntot\ntoţi\ntotuşi\ntu\nun\nuna\nunde\nundeva\nunei\nunele\nuneori\nunor\nvă\nvi\nvoastră\nvoastre\nvoi\nvoştri\nvostru\nvouă\nvreo\nvreun\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ru.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/russian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | a russian stop word list. comments begin with vertical bar. each stop\n | word is at the start of a line.\n\n | this is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n | letter `ё' is translated to `е'.\n\nи              | and\nв              | in/into\nво             | alternative form\nне             | not\nчто            | what/that\nон             | he\nна             | on/onto\nя              | i\nс              | from\nсо             | alternative form\nкак            | how\nа              | milder form of `no' (but)\nто             | conjunction and form of `that'\nвсе            | all\nона            | she\nтак            | so, thus\nего            | him\nно             | but\nда             | yes/and\nты             | thou\nк              | towards, by\nу              | around, chez\nже             | intensifier particle\nвы             | you\nза             | beyond, behind\nбы             | conditional/subj. particle\nпо             | up to, along\nтолько         | only\nее             | her\nмне            | to me\nбыло           | it was\nвот            | here is/are, particle\nот             | away from\nменя           | me\nеще            | still, yet, more\nнет            | no, there isnt/arent\nо              | about\nиз             | out of\nему            | to him\nтеперь         | now\nкогда          | when\nдаже           | even\nну             | so, well\nвдруг          | suddenly\nли             | interrogative particle\nесли           | if\nуже            | already, but homonym of `narrower'\nили            | or\nни             | neither\nбыть           | to be\nбыл            | he was\nнего           | prepositional form of его\nдо             | up to\nвас            | you accusative\nнибудь         | indef. suffix preceded by hyphen\nопять          | again\nуж             | already, but homonym of `adder'\nвам            | to you\nсказал         | he said\nведь           | particle `after all'\nтам            | there\nпотом          | then\nсебя           | oneself\nничего         | nothing\nей             | to her\nможет          | usually with `быть' as `maybe'\nони            | they\nтут            | here\nгде            | where\nесть           | there is/are\nнадо           | got to, must\nней            | prepositional form of  ей\nдля            | for\nмы             | we\nтебя           | thee\nих             | them, their\nчем            | than\nбыла           | she was\nсам            | self\nчтоб           | in order to\nбез            | without\nбудто          | as if\nчеловек        | man, person, one\nчего           | genitive form of `what'\nраз            | once\nтоже           | also\nсебе           | to oneself\nпод            | beneath\nжизнь          | life\nбудет          | will be\nж              | short form of intensifer particle `же'\nтогда          | then\nкто            | who\nэтот           | this\nговорил        | was saying\nтого           | genitive form of `that'\nпотому         | for that reason\nэтого          | genitive form of `this'\nкакой          | which\nсовсем         | altogether\nним            | prepositional form of `его', `они'\nздесь          | here\nэтом           | prepositional form of `этот'\nодин           | one\nпочти          | almost\nмой            | my\nтем            | instrumental/dative plural of `тот', `то'\nчтобы          | full form of `in order that'\nнее            | her (acc.)\nкажется        | it seems\nсейчас         | now\nбыли           | they were\nкуда           | where to\nзачем          | why\nсказать        | to say\nвсех           | all (acc., gen. preposn. plural)\nникогда        | never\nсегодня        | today\nможно          | possible, one can\nпри            | by\nнаконец        | finally\nдва            | two\nоб             | alternative form of `о', about\nдругой         | another\nхоть           | even\nпосле          | after\nнад            | above\nбольше         | more\nтот            | that one (masc.)\nчерез          | across, in\nэти            | these\nнас            | us\nпро            | about\nвсего          | in all, only, of all\nних            | prepositional form of `они' (they)\nкакая          | which, feminine\nмного          | lots\nразве          | interrogative particle\nсказала        | she said\nтри            | three\nэту            | this, acc. fem. sing.\nмоя            | my, feminine\nвпрочем        | moreover, besides\nхорошо         | good\nсвою           | ones own, acc. fem. sing.\nэтой           | oblique form of `эта', fem. `this'\nперед          | in front of\nиногда         | sometimes\nлучше          | better\nчуть           | a little\nтом            | preposn. form of `that one'\nнельзя         | one must not\nтакой          | such a one\nим             | to them\nболее          | more\nвсегда         | always\nконечно        | of course\nвсю            | acc. fem. sing of `all'\nмежду          | between\n\n\n  | b: some paradigms\n  |\n  | personal pronouns\n  |\n  | я  меня  мне  мной  [мною]\n  | ты  тебя  тебе  тобой  [тобою]\n  | он  его  ему  им  [него, нему, ним]\n  | она  ее  эи  ею  [нее, нэи, нею]\n  | оно  его  ему  им  [него, нему, ним]\n  |\n  | мы  нас  нам  нами\n  | вы  вас  вам  вами\n  | они  их  им  ими  [них, ним, ними]\n  |\n  |   себя  себе  собой   [собою]\n  |\n  | demonstrative pronouns: этот (this), тот (that)\n  |\n  | этот  эта  это  эти\n  | этого  эты  это  эти\n  | этого  этой  этого  этих\n  | этому  этой  этому  этим\n  | этим  этой  этим  [этою]  этими\n  | этом  этой  этом  этих\n  |\n  | тот  та  то  те\n  | того  ту  то  те\n  | того  той  того  тех\n  | тому  той  тому  тем\n  | тем  той  тем  [тою]  теми\n  | том  той  том  тех\n  |\n  | determinative pronouns\n  |\n  | (a) весь (all)\n  |\n  | весь  вся  все  все\n  | всего  всю  все  все\n  | всего  всей  всего  всех\n  | всему  всей  всему  всем\n  | всем  всей  всем  [всею]  всеми\n  | всем  всей  всем  всех\n  |\n  | (b) сам (himself etc)\n  |\n  | сам  сама  само  сами\n  | самого саму  само  самих\n  | самого самой самого  самих\n  | самому самой самому  самим\n  | самим  самой  самим  [самою]  самими\n  | самом самой самом  самих\n  |\n  | stems of verbs `to be', `to have', `to do' and modal\n  |\n  | быть  бы  буд  быв  есть  суть\n  | име\n  | дел\n  | мог   мож  мочь\n  | уме\n  | хоч  хот\n  | долж\n  | можн\n  | нужн\n  | нельзя\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_sv.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/swedish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Swedish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n | Swedish stop words occasionally exhibit homonym clashes. For example\n |  så = so, but also seed. These are indicated clearly below.\n\noch            | and\ndet            | it, this/that\natt            | to (with infinitive)\ni              | in, at\nen             | a\njag            | I\nhon            | she\nsom            | who, that\nhan            | he\npå             | on\nden            | it, this/that\nmed            | with\nvar            | where, each\nsig            | him(self) etc\nför            | for\nså             | so (also: seed)\ntill           | to\när             | is\nmen            | but\nett            | a\nom             | if; around, about\nhade           | had\nde             | they, these/those\nav             | of\nicke           | not, no\nmig            | me\ndu             | you\nhenne          | her\ndå             | then, when\nsin            | his\nnu             | now\nhar            | have\ninte           | inte någon = no one\nhans           | his\nhonom          | him\nskulle         | 'sake'\nhennes         | her\ndär            | there\nmin            | my\nman            | one (pronoun)\nej             | nor\nvid            | at, by, on (also: vast)\nkunde          | could\nnågot          | some etc\nfrån           | from, off\nut             | out\nnär            | when\nefter          | after, behind\nupp            | up\nvi             | we\ndem            | them\nvara           | be\nvad            | what\növer           | over\nän             | than\ndig            | you\nkan            | can\nsina           | his\nhär            | here\nha             | have\nmot            | towards\nalla           | all\nunder          | under (also: wonder)\nnågon          | some etc\neller          | or (else)\nallt           | all\nmycket         | much\nsedan          | since\nju             | why\ndenna          | this/that\nsjälv          | myself, yourself etc\ndetta          | this/that\nåt             | to\nutan           | without\nvarit          | was\nhur            | how\ningen          | no\nmitt           | my\nni             | you\nbli            | to be, become\nblev           | from bli\noss            | us\ndin            | thy\ndessa          | these/those\nnågra          | some etc\nderas          | their\nblir           | from bli\nmina           | my\nsamma          | (the) same\nvilken         | who, that\ner             | you, your\nsådan          | such a\nvår            | our\nblivit         | from bli\ndess           | its\ninom           | within\nmellan         | between\nsådant         | such a\nvarför         | why\nvarje          | each\nvilka          | who, that\nditt           | thy\nvem            | who\nvilket         | who, that\nsitta          | his\nsådana         | such a\nvart           | each\ndina           | thy\nvars           | whose\nvårt           | our\nvåra           | our\nert            | your\nera            | your\nvilkas         | whose\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_th.txt",
    "content": "# Thai stopwords from:\n# \"Opinion Detection in Thai Political News Columns\n# Based on Subjectivity Analysis\"\n# Khampol Sukhum, Supot Nitsuwat, and Choochart Haruechaiyasak\nไว้\nไม่\nไป\nได้\nให้\nใน\nโดย\nแห่ง\nแล้ว\nและ\nแรก\nแบบ\nแต่\nเอง\nเห็น\nเลย\nเริ่ม\nเรา\nเมื่อ\nเพื่อ\nเพราะ\nเป็นการ\nเป็น\nเปิดเผย\nเปิด\nเนื่องจาก\nเดียวกัน\nเดียว\nเช่น\nเฉพาะ\nเคย\nเข้า\nเขา\nอีก\nอาจ\nอะไร\nออก\nอย่าง\nอยู่\nอยาก\nหาก\nหลาย\nหลังจาก\nหลัง\nหรือ\nหนึ่ง\nส่วน\nส่ง\nสุด\nสําหรับ\nว่า\nวัน\nลง\nร่วม\nราย\nรับ\nระหว่าง\nรวม\nยัง\nมี\nมาก\nมา\nพร้อม\nพบ\nผ่าน\nผล\nบาง\nน่า\nนี้\nนํา\nนั้น\nนัก\nนอกจาก\nทุก\nที่สุด\nที่\nทําให้\nทํา\nทาง\nทั้งนี้\nทั้ง\nถ้า\nถูก\nถึง\nต้อง\nต่างๆ\nต่าง\nต่อ\nตาม\nตั้งแต่\nตั้ง\nด้าน\nด้วย\nดัง\nซึ่ง\nช่วง\nจึง\nจาก\nจัด\nจะ\nคือ\nความ\nครั้ง\nคง\nขึ้น\nของ\nขอ\nขณะ\nก่อน\nก็\nการ\nกับ\nกัน\nกว่า\nกล่าว\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_tr.txt",
    "content": "# Turkish stopwords from LUCENE-559\n# merged with the list from \"Information Retrieval on Turkish Texts\"\n#   (http://www.users.muohio.edu/canf/papers/JASIST2008offPrint.pdf)\nacaba\naltmış\naltı\nama\nancak\narada\naslında\nayrıca\nbana\nbazı\nbelki\nben\nbenden\nbeni\nbenim\nberi\nbeş\nbile\nbin\nbir\nbirçok\nbiri\nbirkaç\nbirkez\nbirşey\nbirşeyi\nbiz\nbize\nbizden\nbizi\nbizim\nböyle\nböylece\nbu\nbuna\nbunda\nbundan\nbunlar\nbunları\nbunların\nbunu\nbunun\nburada\nçok\nçünkü\nda\ndaha\ndahi\nde\ndefa\ndeğil\ndiğer\ndiye\ndoksan\ndokuz\ndolayı\ndolayısıyla\ndört\nedecek\neden\nederek\nedilecek\nediliyor\nedilmesi\nediyor\neğer\nelli\nen\netmesi\netti\nettiği\nettiğini\ngibi\ngöre\nhalen\nhangi\nhatta\nhem\nhenüz\nhep\nhepsi\nher\nherhangi\nherkesin\nhiç\nhiçbir\niçin\niki\nile\nilgili\nise\nişte\nitibaren\nitibariyle\nkadar\nkarşın\nkatrilyon\nkendi\nkendilerine\nkendini\nkendisi\nkendisine\nkendisini\nkez\nki\nkim\nkimden\nkime\nkimi\nkimse\nkırk\nmilyar\nmilyon\nmu\nmü\nmı\nnasıl\nne\nneden\nnedenle\nnerde\nnerede\nnereye\nniye\nniçin\no\nolan\nolarak\noldu\nolduğu\nolduğunu\nolduklarını\nolmadı\nolmadığı\nolmak\nolması\nolmayan\nolmaz\nolsa\nolsun\nolup\nolur\nolursa\noluyor\non\nona\nondan\nonlar\nonlardan\nonları\nonların\nonu\nonun\notuz\noysa\nöyle\npek\nrağmen\nsadece\nsanki\nsekiz\nseksen\nsen\nsenden\nseni\nsenin\nsiz\nsizden\nsizi\nsizin\nşey\nşeyden\nşeyi\nşeyler\nşöyle\nşu\nşuna\nşunda\nşundan\nşunları\nşunu\ntarafından\ntrilyon\ntüm\nüç\nüzere\nvar\nvardı\nve\nveya\nya\nyani\nyapacak\nyapılan\nyapılması\nyapıyor\nyapmak\nyaptı\nyaptığı\nyaptığını\nyaptıkları\nyedi\nyerine\nyetmiş\nyine\nyirmi\nyoksa\nyüz\nzaten\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/lang/userdict_ja.txt",
    "content": "#\n# This is a sample user dictionary for Kuromoji (JapaneseTokenizer)\n#\n# Add entries to this file in order to override the statistical model in terms\n# of segmentation, readings and part-of-speech tags.  Notice that entries do\n# not have weights since they are always used when found.  This is by-design\n# in order to maximize ease-of-use.\n#\n# Entries are defined using the following CSV format:\n#  <text>,<token 1> ... <token n>,<reading 1> ... <reading n>,<part-of-speech tag>\n#\n# Notice that a single half-width space separates tokens and readings, and\n# that the number tokens and readings must match exactly.\n#\n# Also notice that multiple entries with the same <text> is undefined.\n#\n# Whitespace only lines are ignored.  Comments are not allowed on entry lines.\n#\n\n# Custom segmentation for kanji compounds\n日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞\n関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,カスタム名詞\n\n# Custom segmentation for compound katakana\nトートバッグ,トート バッグ,トート バッグ,かずカナ名詞\nショルダーバッグ,ショルダー バッグ,ショルダー バッグ,かずカナ名詞\n\n# Custom reading for former sumo wrestler\n朝青龍,朝青龍,アサショウリュウ,カスタム人名\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/mapping-FoldToASCII.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\n# This map converts alphabetic, numeric, and symbolic Unicode characters\n# which are not in the first 127 ASCII characters (the \"Basic Latin\" Unicode\n# block) into their ASCII equivalents, if one exists.\n#\n# Characters from the following Unicode blocks are converted; however, only\n# those characters with reasonable ASCII alternatives are converted:\n#\n# - C1 Controls and Latin-1 Supplement: http://www.unicode.org/charts/PDF/U0080.pdf\n# - Latin Extended-A: http://www.unicode.org/charts/PDF/U0100.pdf\n# - Latin Extended-B: http://www.unicode.org/charts/PDF/U0180.pdf\n# - Latin Extended Additional: http://www.unicode.org/charts/PDF/U1E00.pdf\n# - Latin Extended-C: http://www.unicode.org/charts/PDF/U2C60.pdf\n# - Latin Extended-D: http://www.unicode.org/charts/PDF/UA720.pdf\n# - IPA Extensions: http://www.unicode.org/charts/PDF/U0250.pdf\n# - Phonetic Extensions: http://www.unicode.org/charts/PDF/U1D00.pdf\n# - Phonetic Extensions Supplement: http://www.unicode.org/charts/PDF/U1D80.pdf\n# - General Punctuation: http://www.unicode.org/charts/PDF/U2000.pdf\n# - Superscripts and Subscripts: http://www.unicode.org/charts/PDF/U2070.pdf\n# - Enclosed Alphanumerics: http://www.unicode.org/charts/PDF/U2460.pdf\n# - Dingbats: http://www.unicode.org/charts/PDF/U2700.pdf\n# - Supplemental Punctuation: http://www.unicode.org/charts/PDF/U2E00.pdf\n# - Alphabetic Presentation Forms: http://www.unicode.org/charts/PDF/UFB00.pdf\n# - Halfwidth and Fullwidth Forms: http://www.unicode.org/charts/PDF/UFF00.pdf\n#  \n# See: http://en.wikipedia.org/wiki/Latin_characters_in_Unicode\n#\n# The set of character conversions supported by this map is a superset of\n# those supported by the map represented by mapping-ISOLatin1Accent.txt.\n#\n# See the bottom of this file for the Perl script used to generate the contents\n# of this file (without this header) from ASCIIFoldingFilter.java.\n\n\n# Syntax:\n#   \"source\" => \"target\"\n#     \"source\".length() > 0 (source cannot be empty.)\n#     \"target\".length() >= 0 (target can be empty.)\n\n\n# À  [LATIN CAPITAL LETTER A WITH GRAVE]\n\"\\u00C0\" => \"A\"\n\n# Á  [LATIN CAPITAL LETTER A WITH ACUTE]\n\"\\u00C1\" => \"A\"\n\n# Â  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX]\n\"\\u00C2\" => \"A\"\n\n# Ã  [LATIN CAPITAL LETTER A WITH TILDE]\n\"\\u00C3\" => \"A\"\n\n# Ä  [LATIN CAPITAL LETTER A WITH DIAERESIS]\n\"\\u00C4\" => \"A\"\n\n# Å  [LATIN CAPITAL LETTER A WITH RING ABOVE]\n\"\\u00C5\" => \"A\"\n\n# Ā  [LATIN CAPITAL LETTER A WITH MACRON]\n\"\\u0100\" => \"A\"\n\n# Ă  [LATIN CAPITAL LETTER A WITH BREVE]\n\"\\u0102\" => \"A\"\n\n# Ą  [LATIN CAPITAL LETTER A WITH OGONEK]\n\"\\u0104\" => \"A\"\n\n# Ə  http://en.wikipedia.org/wiki/Schwa  [LATIN CAPITAL LETTER SCHWA]\n\"\\u018F\" => \"A\"\n\n# Ǎ  [LATIN CAPITAL LETTER A WITH CARON]\n\"\\u01CD\" => \"A\"\n\n# Ǟ  [LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON]\n\"\\u01DE\" => \"A\"\n\n# Ǡ  [LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON]\n\"\\u01E0\" => \"A\"\n\n# Ǻ  [LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE]\n\"\\u01FA\" => \"A\"\n\n# Ȁ  [LATIN CAPITAL LETTER A WITH DOUBLE GRAVE]\n\"\\u0200\" => \"A\"\n\n# Ȃ  [LATIN CAPITAL LETTER A WITH INVERTED BREVE]\n\"\\u0202\" => \"A\"\n\n# Ȧ  [LATIN CAPITAL LETTER A WITH DOT ABOVE]\n\"\\u0226\" => \"A\"\n\n# Ⱥ  [LATIN CAPITAL LETTER A WITH STROKE]\n\"\\u023A\" => \"A\"\n\n# ᴀ  [LATIN LETTER SMALL CAPITAL A]\n\"\\u1D00\" => \"A\"\n\n# Ḁ  [LATIN CAPITAL LETTER A WITH RING BELOW]\n\"\\u1E00\" => \"A\"\n\n# Ạ  [LATIN CAPITAL LETTER A WITH DOT BELOW]\n\"\\u1EA0\" => \"A\"\n\n# Ả  [LATIN CAPITAL LETTER A WITH HOOK ABOVE]\n\"\\u1EA2\" => \"A\"\n\n# Ấ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EA4\" => \"A\"\n\n# Ầ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EA6\" => \"A\"\n\n# Ẩ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EA8\" => \"A\"\n\n# Ẫ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE]\n\"\\u1EAA\" => \"A\"\n\n# Ậ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EAC\" => \"A\"\n\n# Ắ  [LATIN CAPITAL LETTER A WITH BREVE AND ACUTE]\n\"\\u1EAE\" => \"A\"\n\n# Ằ  [LATIN CAPITAL LETTER A WITH BREVE AND GRAVE]\n\"\\u1EB0\" => \"A\"\n\n# Ẳ  [LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE]\n\"\\u1EB2\" => \"A\"\n\n# Ẵ  [LATIN CAPITAL LETTER A WITH BREVE AND TILDE]\n\"\\u1EB4\" => \"A\"\n\n# Ặ  [LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW]\n\"\\u1EB6\" => \"A\"\n\n# Ⓐ  [CIRCLED LATIN CAPITAL LETTER A]\n\"\\u24B6\" => \"A\"\n\n# Ａ  [FULLWIDTH LATIN CAPITAL LETTER A]\n\"\\uFF21\" => \"A\"\n\n# à  [LATIN SMALL LETTER A WITH GRAVE]\n\"\\u00E0\" => \"a\"\n\n# á  [LATIN SMALL LETTER A WITH ACUTE]\n\"\\u00E1\" => \"a\"\n\n# â  [LATIN SMALL LETTER A WITH CIRCUMFLEX]\n\"\\u00E2\" => \"a\"\n\n# ã  [LATIN SMALL LETTER A WITH TILDE]\n\"\\u00E3\" => \"a\"\n\n# ä  [LATIN SMALL LETTER A WITH DIAERESIS]\n\"\\u00E4\" => \"a\"\n\n# å  [LATIN SMALL LETTER A WITH RING ABOVE]\n\"\\u00E5\" => \"a\"\n\n# ā  [LATIN SMALL LETTER A WITH MACRON]\n\"\\u0101\" => \"a\"\n\n# ă  [LATIN SMALL LETTER A WITH BREVE]\n\"\\u0103\" => \"a\"\n\n# ą  [LATIN SMALL LETTER A WITH OGONEK]\n\"\\u0105\" => \"a\"\n\n# ǎ  [LATIN SMALL LETTER A WITH CARON]\n\"\\u01CE\" => \"a\"\n\n# ǟ  [LATIN SMALL LETTER A WITH DIAERESIS AND MACRON]\n\"\\u01DF\" => \"a\"\n\n# ǡ  [LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON]\n\"\\u01E1\" => \"a\"\n\n# ǻ  [LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE]\n\"\\u01FB\" => \"a\"\n\n# ȁ  [LATIN SMALL LETTER A WITH DOUBLE GRAVE]\n\"\\u0201\" => \"a\"\n\n# ȃ  [LATIN SMALL LETTER A WITH INVERTED BREVE]\n\"\\u0203\" => \"a\"\n\n# ȧ  [LATIN SMALL LETTER A WITH DOT ABOVE]\n\"\\u0227\" => \"a\"\n\n# ɐ  [LATIN SMALL LETTER TURNED A]\n\"\\u0250\" => \"a\"\n\n# ə  [LATIN SMALL LETTER SCHWA]\n\"\\u0259\" => \"a\"\n\n# ɚ  [LATIN SMALL LETTER SCHWA WITH HOOK]\n\"\\u025A\" => \"a\"\n\n# ᶏ  [LATIN SMALL LETTER A WITH RETROFLEX HOOK]\n\"\\u1D8F\" => \"a\"\n\n# ᶕ  [LATIN SMALL LETTER SCHWA WITH RETROFLEX HOOK]\n\"\\u1D95\" => \"a\"\n\n# ạ  [LATIN SMALL LETTER A WITH RING BELOW]\n\"\\u1E01\" => \"a\"\n\n# ả  [LATIN SMALL LETTER A WITH RIGHT HALF RING]\n\"\\u1E9A\" => \"a\"\n\n# ạ  [LATIN SMALL LETTER A WITH DOT BELOW]\n\"\\u1EA1\" => \"a\"\n\n# ả  [LATIN SMALL LETTER A WITH HOOK ABOVE]\n\"\\u1EA3\" => \"a\"\n\n# ấ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EA5\" => \"a\"\n\n# ầ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EA7\" => \"a\"\n\n# ẩ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EA9\" => \"a\"\n\n# ẫ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE]\n\"\\u1EAB\" => \"a\"\n\n# ậ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EAD\" => \"a\"\n\n# ắ  [LATIN SMALL LETTER A WITH BREVE AND ACUTE]\n\"\\u1EAF\" => \"a\"\n\n# ằ  [LATIN SMALL LETTER A WITH BREVE AND GRAVE]\n\"\\u1EB1\" => \"a\"\n\n# ẳ  [LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE]\n\"\\u1EB3\" => \"a\"\n\n# ẵ  [LATIN SMALL LETTER A WITH BREVE AND TILDE]\n\"\\u1EB5\" => \"a\"\n\n# ặ  [LATIN SMALL LETTER A WITH BREVE AND DOT BELOW]\n\"\\u1EB7\" => \"a\"\n\n# ₐ  [LATIN SUBSCRIPT SMALL LETTER A]\n\"\\u2090\" => \"a\"\n\n# ₔ  [LATIN SUBSCRIPT SMALL LETTER SCHWA]\n\"\\u2094\" => \"a\"\n\n# ⓐ  [CIRCLED LATIN SMALL LETTER A]\n\"\\u24D0\" => \"a\"\n\n# ⱥ  [LATIN SMALL LETTER A WITH STROKE]\n\"\\u2C65\" => \"a\"\n\n# Ɐ  [LATIN CAPITAL LETTER TURNED A]\n\"\\u2C6F\" => \"a\"\n\n# ａ  [FULLWIDTH LATIN SMALL LETTER A]\n\"\\uFF41\" => \"a\"\n\n# Ꜳ  [LATIN CAPITAL LETTER AA]\n\"\\uA732\" => \"AA\"\n\n# Æ  [LATIN CAPITAL LETTER AE]\n\"\\u00C6\" => \"AE\"\n\n# Ǣ  [LATIN CAPITAL LETTER AE WITH MACRON]\n\"\\u01E2\" => \"AE\"\n\n# Ǽ  [LATIN CAPITAL LETTER AE WITH ACUTE]\n\"\\u01FC\" => \"AE\"\n\n# ᴁ  [LATIN LETTER SMALL CAPITAL AE]\n\"\\u1D01\" => \"AE\"\n\n# Ꜵ  [LATIN CAPITAL LETTER AO]\n\"\\uA734\" => \"AO\"\n\n# Ꜷ  [LATIN CAPITAL LETTER AU]\n\"\\uA736\" => \"AU\"\n\n# Ꜹ  [LATIN CAPITAL LETTER AV]\n\"\\uA738\" => \"AV\"\n\n# Ꜻ  [LATIN CAPITAL LETTER AV WITH HORIZONTAL BAR]\n\"\\uA73A\" => \"AV\"\n\n# Ꜽ  [LATIN CAPITAL LETTER AY]\n\"\\uA73C\" => \"AY\"\n\n# ⒜  [PARENTHESIZED LATIN SMALL LETTER A]\n\"\\u249C\" => \"(a)\"\n\n# ꜳ  [LATIN SMALL LETTER AA]\n\"\\uA733\" => \"aa\"\n\n# æ  [LATIN SMALL LETTER AE]\n\"\\u00E6\" => \"ae\"\n\n# ǣ  [LATIN SMALL LETTER AE WITH MACRON]\n\"\\u01E3\" => \"ae\"\n\n# ǽ  [LATIN SMALL LETTER AE WITH ACUTE]\n\"\\u01FD\" => \"ae\"\n\n# ᴂ  [LATIN SMALL LETTER TURNED AE]\n\"\\u1D02\" => \"ae\"\n\n# ꜵ  [LATIN SMALL LETTER AO]\n\"\\uA735\" => \"ao\"\n\n# ꜷ  [LATIN SMALL LETTER AU]\n\"\\uA737\" => \"au\"\n\n# ꜹ  [LATIN SMALL LETTER AV]\n\"\\uA739\" => \"av\"\n\n# ꜻ  [LATIN SMALL LETTER AV WITH HORIZONTAL BAR]\n\"\\uA73B\" => \"av\"\n\n# ꜽ  [LATIN SMALL LETTER AY]\n\"\\uA73D\" => \"ay\"\n\n# Ɓ  [LATIN CAPITAL LETTER B WITH HOOK]\n\"\\u0181\" => \"B\"\n\n# Ƃ  [LATIN CAPITAL LETTER B WITH TOPBAR]\n\"\\u0182\" => \"B\"\n\n# Ƀ  [LATIN CAPITAL LETTER B WITH STROKE]\n\"\\u0243\" => \"B\"\n\n# ʙ  [LATIN LETTER SMALL CAPITAL B]\n\"\\u0299\" => \"B\"\n\n# ᴃ  [LATIN LETTER SMALL CAPITAL BARRED B]\n\"\\u1D03\" => \"B\"\n\n# Ḃ  [LATIN CAPITAL LETTER B WITH DOT ABOVE]\n\"\\u1E02\" => \"B\"\n\n# Ḅ  [LATIN CAPITAL LETTER B WITH DOT BELOW]\n\"\\u1E04\" => \"B\"\n\n# Ḇ  [LATIN CAPITAL LETTER B WITH LINE BELOW]\n\"\\u1E06\" => \"B\"\n\n# Ⓑ  [CIRCLED LATIN CAPITAL LETTER B]\n\"\\u24B7\" => \"B\"\n\n# Ｂ  [FULLWIDTH LATIN CAPITAL LETTER B]\n\"\\uFF22\" => \"B\"\n\n# ƀ  [LATIN SMALL LETTER B WITH STROKE]\n\"\\u0180\" => \"b\"\n\n# ƃ  [LATIN SMALL LETTER B WITH TOPBAR]\n\"\\u0183\" => \"b\"\n\n# ɓ  [LATIN SMALL LETTER B WITH HOOK]\n\"\\u0253\" => \"b\"\n\n# ᵬ  [LATIN SMALL LETTER B WITH MIDDLE TILDE]\n\"\\u1D6C\" => \"b\"\n\n# ᶀ  [LATIN SMALL LETTER B WITH PALATAL HOOK]\n\"\\u1D80\" => \"b\"\n\n# ḃ  [LATIN SMALL LETTER B WITH DOT ABOVE]\n\"\\u1E03\" => \"b\"\n\n# ḅ  [LATIN SMALL LETTER B WITH DOT BELOW]\n\"\\u1E05\" => \"b\"\n\n# ḇ  [LATIN SMALL LETTER B WITH LINE BELOW]\n\"\\u1E07\" => \"b\"\n\n# ⓑ  [CIRCLED LATIN SMALL LETTER B]\n\"\\u24D1\" => \"b\"\n\n# ｂ  [FULLWIDTH LATIN SMALL LETTER B]\n\"\\uFF42\" => \"b\"\n\n# ⒝  [PARENTHESIZED LATIN SMALL LETTER B]\n\"\\u249D\" => \"(b)\"\n\n# Ç  [LATIN CAPITAL LETTER C WITH CEDILLA]\n\"\\u00C7\" => \"C\"\n\n# Ć  [LATIN CAPITAL LETTER C WITH ACUTE]\n\"\\u0106\" => \"C\"\n\n# Ĉ  [LATIN CAPITAL LETTER C WITH CIRCUMFLEX]\n\"\\u0108\" => \"C\"\n\n# Ċ  [LATIN CAPITAL LETTER C WITH DOT ABOVE]\n\"\\u010A\" => \"C\"\n\n# Č  [LATIN CAPITAL LETTER C WITH CARON]\n\"\\u010C\" => \"C\"\n\n# Ƈ  [LATIN CAPITAL LETTER C WITH HOOK]\n\"\\u0187\" => \"C\"\n\n# Ȼ  [LATIN CAPITAL LETTER C WITH STROKE]\n\"\\u023B\" => \"C\"\n\n# ʗ  [LATIN LETTER STRETCHED C]\n\"\\u0297\" => \"C\"\n\n# ᴄ  [LATIN LETTER SMALL CAPITAL C]\n\"\\u1D04\" => \"C\"\n\n# Ḉ  [LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE]\n\"\\u1E08\" => \"C\"\n\n# Ⓒ  [CIRCLED LATIN CAPITAL LETTER C]\n\"\\u24B8\" => \"C\"\n\n# Ｃ  [FULLWIDTH LATIN CAPITAL LETTER C]\n\"\\uFF23\" => \"C\"\n\n# ç  [LATIN SMALL LETTER C WITH CEDILLA]\n\"\\u00E7\" => \"c\"\n\n# ć  [LATIN SMALL LETTER C WITH ACUTE]\n\"\\u0107\" => \"c\"\n\n# ĉ  [LATIN SMALL LETTER C WITH CIRCUMFLEX]\n\"\\u0109\" => \"c\"\n\n# ċ  [LATIN SMALL LETTER C WITH DOT ABOVE]\n\"\\u010B\" => \"c\"\n\n# č  [LATIN SMALL LETTER C WITH CARON]\n\"\\u010D\" => \"c\"\n\n# ƈ  [LATIN SMALL LETTER C WITH HOOK]\n\"\\u0188\" => \"c\"\n\n# ȼ  [LATIN SMALL LETTER C WITH STROKE]\n\"\\u023C\" => \"c\"\n\n# ɕ  [LATIN SMALL LETTER C WITH CURL]\n\"\\u0255\" => \"c\"\n\n# ḉ  [LATIN SMALL LETTER C WITH CEDILLA AND ACUTE]\n\"\\u1E09\" => \"c\"\n\n# ↄ  [LATIN SMALL LETTER REVERSED C]\n\"\\u2184\" => \"c\"\n\n# ⓒ  [CIRCLED LATIN SMALL LETTER C]\n\"\\u24D2\" => \"c\"\n\n# Ꜿ  [LATIN CAPITAL LETTER REVERSED C WITH DOT]\n\"\\uA73E\" => \"c\"\n\n# ꜿ  [LATIN SMALL LETTER REVERSED C WITH DOT]\n\"\\uA73F\" => \"c\"\n\n# ｃ  [FULLWIDTH LATIN SMALL LETTER C]\n\"\\uFF43\" => \"c\"\n\n# ⒞  [PARENTHESIZED LATIN SMALL LETTER C]\n\"\\u249E\" => \"(c)\"\n\n# Ð  [LATIN CAPITAL LETTER ETH]\n\"\\u00D0\" => \"D\"\n\n# Ď  [LATIN CAPITAL LETTER D WITH CARON]\n\"\\u010E\" => \"D\"\n\n# Đ  [LATIN CAPITAL LETTER D WITH STROKE]\n\"\\u0110\" => \"D\"\n\n# Ɖ  [LATIN CAPITAL LETTER AFRICAN D]\n\"\\u0189\" => \"D\"\n\n# Ɗ  [LATIN CAPITAL LETTER D WITH HOOK]\n\"\\u018A\" => \"D\"\n\n# Ƌ  [LATIN CAPITAL LETTER D WITH TOPBAR]\n\"\\u018B\" => \"D\"\n\n# ᴅ  [LATIN LETTER SMALL CAPITAL D]\n\"\\u1D05\" => \"D\"\n\n# ᴆ  [LATIN LETTER SMALL CAPITAL ETH]\n\"\\u1D06\" => \"D\"\n\n# Ḋ  [LATIN CAPITAL LETTER D WITH DOT ABOVE]\n\"\\u1E0A\" => \"D\"\n\n# Ḍ  [LATIN CAPITAL LETTER D WITH DOT BELOW]\n\"\\u1E0C\" => \"D\"\n\n# Ḏ  [LATIN CAPITAL LETTER D WITH LINE BELOW]\n\"\\u1E0E\" => \"D\"\n\n# Ḑ  [LATIN CAPITAL LETTER D WITH CEDILLA]\n\"\\u1E10\" => \"D\"\n\n# Ḓ  [LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW]\n\"\\u1E12\" => \"D\"\n\n# Ⓓ  [CIRCLED LATIN CAPITAL LETTER D]\n\"\\u24B9\" => \"D\"\n\n# Ꝺ  [LATIN CAPITAL LETTER INSULAR D]\n\"\\uA779\" => \"D\"\n\n# Ｄ  [FULLWIDTH LATIN CAPITAL LETTER D]\n\"\\uFF24\" => \"D\"\n\n# ð  [LATIN SMALL LETTER ETH]\n\"\\u00F0\" => \"d\"\n\n# ď  [LATIN SMALL LETTER D WITH CARON]\n\"\\u010F\" => \"d\"\n\n# đ  [LATIN SMALL LETTER D WITH STROKE]\n\"\\u0111\" => \"d\"\n\n# ƌ  [LATIN SMALL LETTER D WITH TOPBAR]\n\"\\u018C\" => \"d\"\n\n# ȡ  [LATIN SMALL LETTER D WITH CURL]\n\"\\u0221\" => \"d\"\n\n# ɖ  [LATIN SMALL LETTER D WITH TAIL]\n\"\\u0256\" => \"d\"\n\n# ɗ  [LATIN SMALL LETTER D WITH HOOK]\n\"\\u0257\" => \"d\"\n\n# ᵭ  [LATIN SMALL LETTER D WITH MIDDLE TILDE]\n\"\\u1D6D\" => \"d\"\n\n# ᶁ  [LATIN SMALL LETTER D WITH PALATAL HOOK]\n\"\\u1D81\" => \"d\"\n\n# ᶑ  [LATIN SMALL LETTER D WITH HOOK AND TAIL]\n\"\\u1D91\" => \"d\"\n\n# ḋ  [LATIN SMALL LETTER D WITH DOT ABOVE]\n\"\\u1E0B\" => \"d\"\n\n# ḍ  [LATIN SMALL LETTER D WITH DOT BELOW]\n\"\\u1E0D\" => \"d\"\n\n# ḏ  [LATIN SMALL LETTER D WITH LINE BELOW]\n\"\\u1E0F\" => \"d\"\n\n# ḑ  [LATIN SMALL LETTER D WITH CEDILLA]\n\"\\u1E11\" => \"d\"\n\n# ḓ  [LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW]\n\"\\u1E13\" => \"d\"\n\n# ⓓ  [CIRCLED LATIN SMALL LETTER D]\n\"\\u24D3\" => \"d\"\n\n# ꝺ  [LATIN SMALL LETTER INSULAR D]\n\"\\uA77A\" => \"d\"\n\n# ｄ  [FULLWIDTH LATIN SMALL LETTER D]\n\"\\uFF44\" => \"d\"\n\n# Ǆ  [LATIN CAPITAL LETTER DZ WITH CARON]\n\"\\u01C4\" => \"DZ\"\n\n# Ǳ  [LATIN CAPITAL LETTER DZ]\n\"\\u01F1\" => \"DZ\"\n\n# ǅ  [LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON]\n\"\\u01C5\" => \"Dz\"\n\n# ǲ  [LATIN CAPITAL LETTER D WITH SMALL LETTER Z]\n\"\\u01F2\" => \"Dz\"\n\n# ⒟  [PARENTHESIZED LATIN SMALL LETTER D]\n\"\\u249F\" => \"(d)\"\n\n# ȸ  [LATIN SMALL LETTER DB DIGRAPH]\n\"\\u0238\" => \"db\"\n\n# ǆ  [LATIN SMALL LETTER DZ WITH CARON]\n\"\\u01C6\" => \"dz\"\n\n# ǳ  [LATIN SMALL LETTER DZ]\n\"\\u01F3\" => \"dz\"\n\n# ʣ  [LATIN SMALL LETTER DZ DIGRAPH]\n\"\\u02A3\" => \"dz\"\n\n# ʥ  [LATIN SMALL LETTER DZ DIGRAPH WITH CURL]\n\"\\u02A5\" => \"dz\"\n\n# È  [LATIN CAPITAL LETTER E WITH GRAVE]\n\"\\u00C8\" => \"E\"\n\n# É  [LATIN CAPITAL LETTER E WITH ACUTE]\n\"\\u00C9\" => \"E\"\n\n# Ê  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX]\n\"\\u00CA\" => \"E\"\n\n# Ë  [LATIN CAPITAL LETTER E WITH DIAERESIS]\n\"\\u00CB\" => \"E\"\n\n# Ē  [LATIN CAPITAL LETTER E WITH MACRON]\n\"\\u0112\" => \"E\"\n\n# Ĕ  [LATIN CAPITAL LETTER E WITH BREVE]\n\"\\u0114\" => \"E\"\n\n# Ė  [LATIN CAPITAL LETTER E WITH DOT ABOVE]\n\"\\u0116\" => \"E\"\n\n# Ę  [LATIN CAPITAL LETTER E WITH OGONEK]\n\"\\u0118\" => \"E\"\n\n# Ě  [LATIN CAPITAL LETTER E WITH CARON]\n\"\\u011A\" => \"E\"\n\n# Ǝ  [LATIN CAPITAL LETTER REVERSED E]\n\"\\u018E\" => \"E\"\n\n# Ɛ  [LATIN CAPITAL LETTER OPEN E]\n\"\\u0190\" => \"E\"\n\n# Ȅ  [LATIN CAPITAL LETTER E WITH DOUBLE GRAVE]\n\"\\u0204\" => \"E\"\n\n# Ȇ  [LATIN CAPITAL LETTER E WITH INVERTED BREVE]\n\"\\u0206\" => \"E\"\n\n# Ȩ  [LATIN CAPITAL LETTER E WITH CEDILLA]\n\"\\u0228\" => \"E\"\n\n# Ɇ  [LATIN CAPITAL LETTER E WITH STROKE]\n\"\\u0246\" => \"E\"\n\n# ᴇ  [LATIN LETTER SMALL CAPITAL E]\n\"\\u1D07\" => \"E\"\n\n# Ḕ  [LATIN CAPITAL LETTER E WITH MACRON AND GRAVE]\n\"\\u1E14\" => \"E\"\n\n# Ḗ  [LATIN CAPITAL LETTER E WITH MACRON AND ACUTE]\n\"\\u1E16\" => \"E\"\n\n# Ḙ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW]\n\"\\u1E18\" => \"E\"\n\n# Ḛ  [LATIN CAPITAL LETTER E WITH TILDE BELOW]\n\"\\u1E1A\" => \"E\"\n\n# Ḝ  [LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE]\n\"\\u1E1C\" => \"E\"\n\n# Ẹ  [LATIN CAPITAL LETTER E WITH DOT BELOW]\n\"\\u1EB8\" => \"E\"\n\n# Ẻ  [LATIN CAPITAL LETTER E WITH HOOK ABOVE]\n\"\\u1EBA\" => \"E\"\n\n# Ẽ  [LATIN CAPITAL LETTER E WITH TILDE]\n\"\\u1EBC\" => \"E\"\n\n# Ế  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EBE\" => \"E\"\n\n# Ề  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EC0\" => \"E\"\n\n# Ể  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EC2\" => \"E\"\n\n# Ễ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE]\n\"\\u1EC4\" => \"E\"\n\n# Ệ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EC6\" => \"E\"\n\n# Ⓔ  [CIRCLED LATIN CAPITAL LETTER E]\n\"\\u24BA\" => \"E\"\n\n# ⱻ  [LATIN LETTER SMALL CAPITAL TURNED E]\n\"\\u2C7B\" => \"E\"\n\n# Ｅ  [FULLWIDTH LATIN CAPITAL LETTER E]\n\"\\uFF25\" => \"E\"\n\n# è  [LATIN SMALL LETTER E WITH GRAVE]\n\"\\u00E8\" => \"e\"\n\n# é  [LATIN SMALL LETTER E WITH ACUTE]\n\"\\u00E9\" => \"e\"\n\n# ê  [LATIN SMALL LETTER E WITH CIRCUMFLEX]\n\"\\u00EA\" => \"e\"\n\n# ë  [LATIN SMALL LETTER E WITH DIAERESIS]\n\"\\u00EB\" => \"e\"\n\n# ē  [LATIN SMALL LETTER E WITH MACRON]\n\"\\u0113\" => \"e\"\n\n# ĕ  [LATIN SMALL LETTER E WITH BREVE]\n\"\\u0115\" => \"e\"\n\n# ė  [LATIN SMALL LETTER E WITH DOT ABOVE]\n\"\\u0117\" => \"e\"\n\n# ę  [LATIN SMALL LETTER E WITH OGONEK]\n\"\\u0119\" => \"e\"\n\n# ě  [LATIN SMALL LETTER E WITH CARON]\n\"\\u011B\" => \"e\"\n\n# ǝ  [LATIN SMALL LETTER TURNED E]\n\"\\u01DD\" => \"e\"\n\n# ȅ  [LATIN SMALL LETTER E WITH DOUBLE GRAVE]\n\"\\u0205\" => \"e\"\n\n# ȇ  [LATIN SMALL LETTER E WITH INVERTED BREVE]\n\"\\u0207\" => \"e\"\n\n# ȩ  [LATIN SMALL LETTER E WITH CEDILLA]\n\"\\u0229\" => \"e\"\n\n# ɇ  [LATIN SMALL LETTER E WITH STROKE]\n\"\\u0247\" => \"e\"\n\n# ɘ  [LATIN SMALL LETTER REVERSED E]\n\"\\u0258\" => \"e\"\n\n# ɛ  [LATIN SMALL LETTER OPEN E]\n\"\\u025B\" => \"e\"\n\n# ɜ  [LATIN SMALL LETTER REVERSED OPEN E]\n\"\\u025C\" => \"e\"\n\n# ɝ  [LATIN SMALL LETTER REVERSED OPEN E WITH HOOK]\n\"\\u025D\" => \"e\"\n\n# ɞ  [LATIN SMALL LETTER CLOSED REVERSED OPEN E]\n\"\\u025E\" => \"e\"\n\n# ʚ  [LATIN SMALL LETTER CLOSED OPEN E]\n\"\\u029A\" => \"e\"\n\n# ᴈ  [LATIN SMALL LETTER TURNED OPEN E]\n\"\\u1D08\" => \"e\"\n\n# ᶒ  [LATIN SMALL LETTER E WITH RETROFLEX HOOK]\n\"\\u1D92\" => \"e\"\n\n# ᶓ  [LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK]\n\"\\u1D93\" => \"e\"\n\n# ᶔ  [LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK]\n\"\\u1D94\" => \"e\"\n\n# ḕ  [LATIN SMALL LETTER E WITH MACRON AND GRAVE]\n\"\\u1E15\" => \"e\"\n\n# ḗ  [LATIN SMALL LETTER E WITH MACRON AND ACUTE]\n\"\\u1E17\" => \"e\"\n\n# ḙ  [LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW]\n\"\\u1E19\" => \"e\"\n\n# ḛ  [LATIN SMALL LETTER E WITH TILDE BELOW]\n\"\\u1E1B\" => \"e\"\n\n# ḝ  [LATIN SMALL LETTER E WITH CEDILLA AND BREVE]\n\"\\u1E1D\" => \"e\"\n\n# ẹ  [LATIN SMALL LETTER E WITH DOT BELOW]\n\"\\u1EB9\" => \"e\"\n\n# ẻ  [LATIN SMALL LETTER E WITH HOOK ABOVE]\n\"\\u1EBB\" => \"e\"\n\n# ẽ  [LATIN SMALL LETTER E WITH TILDE]\n\"\\u1EBD\" => \"e\"\n\n# ế  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EBF\" => \"e\"\n\n# ề  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EC1\" => \"e\"\n\n# ể  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EC3\" => \"e\"\n\n# ễ  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE]\n\"\\u1EC5\" => \"e\"\n\n# ệ  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EC7\" => \"e\"\n\n# ₑ  [LATIN SUBSCRIPT SMALL LETTER E]\n\"\\u2091\" => \"e\"\n\n# ⓔ  [CIRCLED LATIN SMALL LETTER E]\n\"\\u24D4\" => \"e\"\n\n# ⱸ  [LATIN SMALL LETTER E WITH NOTCH]\n\"\\u2C78\" => \"e\"\n\n# ｅ  [FULLWIDTH LATIN SMALL LETTER E]\n\"\\uFF45\" => \"e\"\n\n# ⒠  [PARENTHESIZED LATIN SMALL LETTER E]\n\"\\u24A0\" => \"(e)\"\n\n# Ƒ  [LATIN CAPITAL LETTER F WITH HOOK]\n\"\\u0191\" => \"F\"\n\n# Ḟ  [LATIN CAPITAL LETTER F WITH DOT ABOVE]\n\"\\u1E1E\" => \"F\"\n\n# Ⓕ  [CIRCLED LATIN CAPITAL LETTER F]\n\"\\u24BB\" => \"F\"\n\n# ꜰ  [LATIN LETTER SMALL CAPITAL F]\n\"\\uA730\" => \"F\"\n\n# Ꝼ  [LATIN CAPITAL LETTER INSULAR F]\n\"\\uA77B\" => \"F\"\n\n# ꟻ  [LATIN EPIGRAPHIC LETTER REVERSED F]\n\"\\uA7FB\" => \"F\"\n\n# Ｆ  [FULLWIDTH LATIN CAPITAL LETTER F]\n\"\\uFF26\" => \"F\"\n\n# ƒ  [LATIN SMALL LETTER F WITH HOOK]\n\"\\u0192\" => \"f\"\n\n# ᵮ  [LATIN SMALL LETTER F WITH MIDDLE TILDE]\n\"\\u1D6E\" => \"f\"\n\n# ᶂ  [LATIN SMALL LETTER F WITH PALATAL HOOK]\n\"\\u1D82\" => \"f\"\n\n# ḟ  [LATIN SMALL LETTER F WITH DOT ABOVE]\n\"\\u1E1F\" => \"f\"\n\n# ẛ  [LATIN SMALL LETTER LONG S WITH DOT ABOVE]\n\"\\u1E9B\" => \"f\"\n\n# ⓕ  [CIRCLED LATIN SMALL LETTER F]\n\"\\u24D5\" => \"f\"\n\n# ꝼ  [LATIN SMALL LETTER INSULAR F]\n\"\\uA77C\" => \"f\"\n\n# ｆ  [FULLWIDTH LATIN SMALL LETTER F]\n\"\\uFF46\" => \"f\"\n\n# ⒡  [PARENTHESIZED LATIN SMALL LETTER F]\n\"\\u24A1\" => \"(f)\"\n\n# ﬀ  [LATIN SMALL LIGATURE FF]\n\"\\uFB00\" => \"ff\"\n\n# ﬃ  [LATIN SMALL LIGATURE FFI]\n\"\\uFB03\" => \"ffi\"\n\n# ﬄ  [LATIN SMALL LIGATURE FFL]\n\"\\uFB04\" => \"ffl\"\n\n# ﬁ  [LATIN SMALL LIGATURE FI]\n\"\\uFB01\" => \"fi\"\n\n# ﬂ  [LATIN SMALL LIGATURE FL]\n\"\\uFB02\" => \"fl\"\n\n# Ĝ  [LATIN CAPITAL LETTER G WITH CIRCUMFLEX]\n\"\\u011C\" => \"G\"\n\n# Ğ  [LATIN CAPITAL LETTER G WITH BREVE]\n\"\\u011E\" => \"G\"\n\n# Ġ  [LATIN CAPITAL LETTER G WITH DOT ABOVE]\n\"\\u0120\" => \"G\"\n\n# Ģ  [LATIN CAPITAL LETTER G WITH CEDILLA]\n\"\\u0122\" => \"G\"\n\n# Ɠ  [LATIN CAPITAL LETTER G WITH HOOK]\n\"\\u0193\" => \"G\"\n\n# Ǥ  [LATIN CAPITAL LETTER G WITH STROKE]\n\"\\u01E4\" => \"G\"\n\n# ǥ  [LATIN SMALL LETTER G WITH STROKE]\n\"\\u01E5\" => \"G\"\n\n# Ǧ  [LATIN CAPITAL LETTER G WITH CARON]\n\"\\u01E6\" => \"G\"\n\n# ǧ  [LATIN SMALL LETTER G WITH CARON]\n\"\\u01E7\" => \"G\"\n\n# Ǵ  [LATIN CAPITAL LETTER G WITH ACUTE]\n\"\\u01F4\" => \"G\"\n\n# ɢ  [LATIN LETTER SMALL CAPITAL G]\n\"\\u0262\" => \"G\"\n\n# ʛ  [LATIN LETTER SMALL CAPITAL G WITH HOOK]\n\"\\u029B\" => \"G\"\n\n# Ḡ  [LATIN CAPITAL LETTER G WITH MACRON]\n\"\\u1E20\" => \"G\"\n\n# Ⓖ  [CIRCLED LATIN CAPITAL LETTER G]\n\"\\u24BC\" => \"G\"\n\n# Ᵹ  [LATIN CAPITAL LETTER INSULAR G]\n\"\\uA77D\" => \"G\"\n\n# Ꝿ  [LATIN CAPITAL LETTER TURNED INSULAR G]\n\"\\uA77E\" => \"G\"\n\n# Ｇ  [FULLWIDTH LATIN CAPITAL LETTER G]\n\"\\uFF27\" => \"G\"\n\n# ĝ  [LATIN SMALL LETTER G WITH CIRCUMFLEX]\n\"\\u011D\" => \"g\"\n\n# ğ  [LATIN SMALL LETTER G WITH BREVE]\n\"\\u011F\" => \"g\"\n\n# ġ  [LATIN SMALL LETTER G WITH DOT ABOVE]\n\"\\u0121\" => \"g\"\n\n# ģ  [LATIN SMALL LETTER G WITH CEDILLA]\n\"\\u0123\" => \"g\"\n\n# ǵ  [LATIN SMALL LETTER G WITH ACUTE]\n\"\\u01F5\" => \"g\"\n\n# ɠ  [LATIN SMALL LETTER G WITH HOOK]\n\"\\u0260\" => \"g\"\n\n# ɡ  [LATIN SMALL LETTER SCRIPT G]\n\"\\u0261\" => \"g\"\n\n# ᵷ  [LATIN SMALL LETTER TURNED G]\n\"\\u1D77\" => \"g\"\n\n# ᵹ  [LATIN SMALL LETTER INSULAR G]\n\"\\u1D79\" => \"g\"\n\n# ᶃ  [LATIN SMALL LETTER G WITH PALATAL HOOK]\n\"\\u1D83\" => \"g\"\n\n# ḡ  [LATIN SMALL LETTER G WITH MACRON]\n\"\\u1E21\" => \"g\"\n\n# ⓖ  [CIRCLED LATIN SMALL LETTER G]\n\"\\u24D6\" => \"g\"\n\n# ꝿ  [LATIN SMALL LETTER TURNED INSULAR G]\n\"\\uA77F\" => \"g\"\n\n# ｇ  [FULLWIDTH LATIN SMALL LETTER G]\n\"\\uFF47\" => \"g\"\n\n# ⒢  [PARENTHESIZED LATIN SMALL LETTER G]\n\"\\u24A2\" => \"(g)\"\n\n# Ĥ  [LATIN CAPITAL LETTER H WITH CIRCUMFLEX]\n\"\\u0124\" => \"H\"\n\n# Ħ  [LATIN CAPITAL LETTER H WITH STROKE]\n\"\\u0126\" => \"H\"\n\n# Ȟ  [LATIN CAPITAL LETTER H WITH CARON]\n\"\\u021E\" => \"H\"\n\n# ʜ  [LATIN LETTER SMALL CAPITAL H]\n\"\\u029C\" => \"H\"\n\n# Ḣ  [LATIN CAPITAL LETTER H WITH DOT ABOVE]\n\"\\u1E22\" => \"H\"\n\n# Ḥ  [LATIN CAPITAL LETTER H WITH DOT BELOW]\n\"\\u1E24\" => \"H\"\n\n# Ḧ  [LATIN CAPITAL LETTER H WITH DIAERESIS]\n\"\\u1E26\" => \"H\"\n\n# Ḩ  [LATIN CAPITAL LETTER H WITH CEDILLA]\n\"\\u1E28\" => \"H\"\n\n# Ḫ  [LATIN CAPITAL LETTER H WITH BREVE BELOW]\n\"\\u1E2A\" => \"H\"\n\n# Ⓗ  [CIRCLED LATIN CAPITAL LETTER H]\n\"\\u24BD\" => \"H\"\n\n# Ⱨ  [LATIN CAPITAL LETTER H WITH DESCENDER]\n\"\\u2C67\" => \"H\"\n\n# Ⱶ  [LATIN CAPITAL LETTER HALF H]\n\"\\u2C75\" => \"H\"\n\n# Ｈ  [FULLWIDTH LATIN CAPITAL LETTER H]\n\"\\uFF28\" => \"H\"\n\n# ĥ  [LATIN SMALL LETTER H WITH CIRCUMFLEX]\n\"\\u0125\" => \"h\"\n\n# ħ  [LATIN SMALL LETTER H WITH STROKE]\n\"\\u0127\" => \"h\"\n\n# ȟ  [LATIN SMALL LETTER H WITH CARON]\n\"\\u021F\" => \"h\"\n\n# ɥ  [LATIN SMALL LETTER TURNED H]\n\"\\u0265\" => \"h\"\n\n# ɦ  [LATIN SMALL LETTER H WITH HOOK]\n\"\\u0266\" => \"h\"\n\n# ʮ  [LATIN SMALL LETTER TURNED H WITH FISHHOOK]\n\"\\u02AE\" => \"h\"\n\n# ʯ  [LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL]\n\"\\u02AF\" => \"h\"\n\n# ḣ  [LATIN SMALL LETTER H WITH DOT ABOVE]\n\"\\u1E23\" => \"h\"\n\n# ḥ  [LATIN SMALL LETTER H WITH DOT BELOW]\n\"\\u1E25\" => \"h\"\n\n# ḧ  [LATIN SMALL LETTER H WITH DIAERESIS]\n\"\\u1E27\" => \"h\"\n\n# ḩ  [LATIN SMALL LETTER H WITH CEDILLA]\n\"\\u1E29\" => \"h\"\n\n# ḫ  [LATIN SMALL LETTER H WITH BREVE BELOW]\n\"\\u1E2B\" => \"h\"\n\n# ẖ  [LATIN SMALL LETTER H WITH LINE BELOW]\n\"\\u1E96\" => \"h\"\n\n# ⓗ  [CIRCLED LATIN SMALL LETTER H]\n\"\\u24D7\" => \"h\"\n\n# ⱨ  [LATIN SMALL LETTER H WITH DESCENDER]\n\"\\u2C68\" => \"h\"\n\n# ⱶ  [LATIN SMALL LETTER HALF H]\n\"\\u2C76\" => \"h\"\n\n# ｈ  [FULLWIDTH LATIN SMALL LETTER H]\n\"\\uFF48\" => \"h\"\n\n# Ƕ  http://en.wikipedia.org/wiki/Hwair  [LATIN CAPITAL LETTER HWAIR]\n\"\\u01F6\" => \"HV\"\n\n# ⒣  [PARENTHESIZED LATIN SMALL LETTER H]\n\"\\u24A3\" => \"(h)\"\n\n# ƕ  [LATIN SMALL LETTER HV]\n\"\\u0195\" => \"hv\"\n\n# Ì  [LATIN CAPITAL LETTER I WITH GRAVE]\n\"\\u00CC\" => \"I\"\n\n# Í  [LATIN CAPITAL LETTER I WITH ACUTE]\n\"\\u00CD\" => \"I\"\n\n# Î  [LATIN CAPITAL LETTER I WITH CIRCUMFLEX]\n\"\\u00CE\" => \"I\"\n\n# Ï  [LATIN CAPITAL LETTER I WITH DIAERESIS]\n\"\\u00CF\" => \"I\"\n\n# Ĩ  [LATIN CAPITAL LETTER I WITH TILDE]\n\"\\u0128\" => \"I\"\n\n# Ī  [LATIN CAPITAL LETTER I WITH MACRON]\n\"\\u012A\" => \"I\"\n\n# Ĭ  [LATIN CAPITAL LETTER I WITH BREVE]\n\"\\u012C\" => \"I\"\n\n# Į  [LATIN CAPITAL LETTER I WITH OGONEK]\n\"\\u012E\" => \"I\"\n\n# İ  [LATIN CAPITAL LETTER I WITH DOT ABOVE]\n\"\\u0130\" => \"I\"\n\n# Ɩ  [LATIN CAPITAL LETTER IOTA]\n\"\\u0196\" => \"I\"\n\n# Ɨ  [LATIN CAPITAL LETTER I WITH STROKE]\n\"\\u0197\" => \"I\"\n\n# Ǐ  [LATIN CAPITAL LETTER I WITH CARON]\n\"\\u01CF\" => \"I\"\n\n# Ȉ  [LATIN CAPITAL LETTER I WITH DOUBLE GRAVE]\n\"\\u0208\" => \"I\"\n\n# Ȋ  [LATIN CAPITAL LETTER I WITH INVERTED BREVE]\n\"\\u020A\" => \"I\"\n\n# ɪ  [LATIN LETTER SMALL CAPITAL I]\n\"\\u026A\" => \"I\"\n\n# ᵻ  [LATIN SMALL CAPITAL LETTER I WITH STROKE]\n\"\\u1D7B\" => \"I\"\n\n# Ḭ  [LATIN CAPITAL LETTER I WITH TILDE BELOW]\n\"\\u1E2C\" => \"I\"\n\n# Ḯ  [LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE]\n\"\\u1E2E\" => \"I\"\n\n# Ỉ  [LATIN CAPITAL LETTER I WITH HOOK ABOVE]\n\"\\u1EC8\" => \"I\"\n\n# Ị  [LATIN CAPITAL LETTER I WITH DOT BELOW]\n\"\\u1ECA\" => \"I\"\n\n# Ⓘ  [CIRCLED LATIN CAPITAL LETTER I]\n\"\\u24BE\" => \"I\"\n\n# ꟾ  [LATIN EPIGRAPHIC LETTER I LONGA]\n\"\\uA7FE\" => \"I\"\n\n# Ｉ  [FULLWIDTH LATIN CAPITAL LETTER I]\n\"\\uFF29\" => \"I\"\n\n# ì  [LATIN SMALL LETTER I WITH GRAVE]\n\"\\u00EC\" => \"i\"\n\n# í  [LATIN SMALL LETTER I WITH ACUTE]\n\"\\u00ED\" => \"i\"\n\n# î  [LATIN SMALL LETTER I WITH CIRCUMFLEX]\n\"\\u00EE\" => \"i\"\n\n# ï  [LATIN SMALL LETTER I WITH DIAERESIS]\n\"\\u00EF\" => \"i\"\n\n# ĩ  [LATIN SMALL LETTER I WITH TILDE]\n\"\\u0129\" => \"i\"\n\n# ī  [LATIN SMALL LETTER I WITH MACRON]\n\"\\u012B\" => \"i\"\n\n# ĭ  [LATIN SMALL LETTER I WITH BREVE]\n\"\\u012D\" => \"i\"\n\n# į  [LATIN SMALL LETTER I WITH OGONEK]\n\"\\u012F\" => \"i\"\n\n# ı  [LATIN SMALL LETTER DOTLESS I]\n\"\\u0131\" => \"i\"\n\n# ǐ  [LATIN SMALL LETTER I WITH CARON]\n\"\\u01D0\" => \"i\"\n\n# ȉ  [LATIN SMALL LETTER I WITH DOUBLE GRAVE]\n\"\\u0209\" => \"i\"\n\n# ȋ  [LATIN SMALL LETTER I WITH INVERTED BREVE]\n\"\\u020B\" => \"i\"\n\n# ɨ  [LATIN SMALL LETTER I WITH STROKE]\n\"\\u0268\" => \"i\"\n\n# ᴉ  [LATIN SMALL LETTER TURNED I]\n\"\\u1D09\" => \"i\"\n\n# ᵢ  [LATIN SUBSCRIPT SMALL LETTER I]\n\"\\u1D62\" => \"i\"\n\n# ᵼ  [LATIN SMALL LETTER IOTA WITH STROKE]\n\"\\u1D7C\" => \"i\"\n\n# ᶖ  [LATIN SMALL LETTER I WITH RETROFLEX HOOK]\n\"\\u1D96\" => \"i\"\n\n# ḭ  [LATIN SMALL LETTER I WITH TILDE BELOW]\n\"\\u1E2D\" => \"i\"\n\n# ḯ  [LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE]\n\"\\u1E2F\" => \"i\"\n\n# ỉ  [LATIN SMALL LETTER I WITH HOOK ABOVE]\n\"\\u1EC9\" => \"i\"\n\n# ị  [LATIN SMALL LETTER I WITH DOT BELOW]\n\"\\u1ECB\" => \"i\"\n\n# ⁱ  [SUPERSCRIPT LATIN SMALL LETTER I]\n\"\\u2071\" => \"i\"\n\n# ⓘ  [CIRCLED LATIN SMALL LETTER I]\n\"\\u24D8\" => \"i\"\n\n# ｉ  [FULLWIDTH LATIN SMALL LETTER I]\n\"\\uFF49\" => \"i\"\n\n# Ĳ  [LATIN CAPITAL LIGATURE IJ]\n\"\\u0132\" => \"IJ\"\n\n# ⒤  [PARENTHESIZED LATIN SMALL LETTER I]\n\"\\u24A4\" => \"(i)\"\n\n# ĳ  [LATIN SMALL LIGATURE IJ]\n\"\\u0133\" => \"ij\"\n\n# Ĵ  [LATIN CAPITAL LETTER J WITH CIRCUMFLEX]\n\"\\u0134\" => \"J\"\n\n# Ɉ  [LATIN CAPITAL LETTER J WITH STROKE]\n\"\\u0248\" => \"J\"\n\n# ᴊ  [LATIN LETTER SMALL CAPITAL J]\n\"\\u1D0A\" => \"J\"\n\n# Ⓙ  [CIRCLED LATIN CAPITAL LETTER J]\n\"\\u24BF\" => \"J\"\n\n# Ｊ  [FULLWIDTH LATIN CAPITAL LETTER J]\n\"\\uFF2A\" => \"J\"\n\n# ĵ  [LATIN SMALL LETTER J WITH CIRCUMFLEX]\n\"\\u0135\" => \"j\"\n\n# ǰ  [LATIN SMALL LETTER J WITH CARON]\n\"\\u01F0\" => \"j\"\n\n# ȷ  [LATIN SMALL LETTER DOTLESS J]\n\"\\u0237\" => \"j\"\n\n# ɉ  [LATIN SMALL LETTER J WITH STROKE]\n\"\\u0249\" => \"j\"\n\n# ɟ  [LATIN SMALL LETTER DOTLESS J WITH STROKE]\n\"\\u025F\" => \"j\"\n\n# ʄ  [LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK]\n\"\\u0284\" => \"j\"\n\n# ʝ  [LATIN SMALL LETTER J WITH CROSSED-TAIL]\n\"\\u029D\" => \"j\"\n\n# ⓙ  [CIRCLED LATIN SMALL LETTER J]\n\"\\u24D9\" => \"j\"\n\n# ⱼ  [LATIN SUBSCRIPT SMALL LETTER J]\n\"\\u2C7C\" => \"j\"\n\n# ｊ  [FULLWIDTH LATIN SMALL LETTER J]\n\"\\uFF4A\" => \"j\"\n\n# ⒥  [PARENTHESIZED LATIN SMALL LETTER J]\n\"\\u24A5\" => \"(j)\"\n\n# Ķ  [LATIN CAPITAL LETTER K WITH CEDILLA]\n\"\\u0136\" => \"K\"\n\n# Ƙ  [LATIN CAPITAL LETTER K WITH HOOK]\n\"\\u0198\" => \"K\"\n\n# Ǩ  [LATIN CAPITAL LETTER K WITH CARON]\n\"\\u01E8\" => \"K\"\n\n# ᴋ  [LATIN LETTER SMALL CAPITAL K]\n\"\\u1D0B\" => \"K\"\n\n# Ḱ  [LATIN CAPITAL LETTER K WITH ACUTE]\n\"\\u1E30\" => \"K\"\n\n# Ḳ  [LATIN CAPITAL LETTER K WITH DOT BELOW]\n\"\\u1E32\" => \"K\"\n\n# Ḵ  [LATIN CAPITAL LETTER K WITH LINE BELOW]\n\"\\u1E34\" => \"K\"\n\n# Ⓚ  [CIRCLED LATIN CAPITAL LETTER K]\n\"\\u24C0\" => \"K\"\n\n# Ⱪ  [LATIN CAPITAL LETTER K WITH DESCENDER]\n\"\\u2C69\" => \"K\"\n\n# Ꝁ  [LATIN CAPITAL LETTER K WITH STROKE]\n\"\\uA740\" => \"K\"\n\n# Ꝃ  [LATIN CAPITAL LETTER K WITH DIAGONAL STROKE]\n\"\\uA742\" => \"K\"\n\n# Ꝅ  [LATIN CAPITAL LETTER K WITH STROKE AND DIAGONAL STROKE]\n\"\\uA744\" => \"K\"\n\n# Ｋ  [FULLWIDTH LATIN CAPITAL LETTER K]\n\"\\uFF2B\" => \"K\"\n\n# ķ  [LATIN SMALL LETTER K WITH CEDILLA]\n\"\\u0137\" => \"k\"\n\n# ƙ  [LATIN SMALL LETTER K WITH HOOK]\n\"\\u0199\" => \"k\"\n\n# ǩ  [LATIN SMALL LETTER K WITH CARON]\n\"\\u01E9\" => \"k\"\n\n# ʞ  [LATIN SMALL LETTER TURNED K]\n\"\\u029E\" => \"k\"\n\n# ᶄ  [LATIN SMALL LETTER K WITH PALATAL HOOK]\n\"\\u1D84\" => \"k\"\n\n# ḱ  [LATIN SMALL LETTER K WITH ACUTE]\n\"\\u1E31\" => \"k\"\n\n# ḳ  [LATIN SMALL LETTER K WITH DOT BELOW]\n\"\\u1E33\" => \"k\"\n\n# ḵ  [LATIN SMALL LETTER K WITH LINE BELOW]\n\"\\u1E35\" => \"k\"\n\n# ⓚ  [CIRCLED LATIN SMALL LETTER K]\n\"\\u24DA\" => \"k\"\n\n# ⱪ  [LATIN SMALL LETTER K WITH DESCENDER]\n\"\\u2C6A\" => \"k\"\n\n# ꝁ  [LATIN SMALL LETTER K WITH STROKE]\n\"\\uA741\" => \"k\"\n\n# ꝃ  [LATIN SMALL LETTER K WITH DIAGONAL STROKE]\n\"\\uA743\" => \"k\"\n\n# ꝅ  [LATIN SMALL LETTER K WITH STROKE AND DIAGONAL STROKE]\n\"\\uA745\" => \"k\"\n\n# ｋ  [FULLWIDTH LATIN SMALL LETTER K]\n\"\\uFF4B\" => \"k\"\n\n# ⒦  [PARENTHESIZED LATIN SMALL LETTER K]\n\"\\u24A6\" => \"(k)\"\n\n# Ĺ  [LATIN CAPITAL LETTER L WITH ACUTE]\n\"\\u0139\" => \"L\"\n\n# Ļ  [LATIN CAPITAL LETTER L WITH CEDILLA]\n\"\\u013B\" => \"L\"\n\n# Ľ  [LATIN CAPITAL LETTER L WITH CARON]\n\"\\u013D\" => \"L\"\n\n# Ŀ  [LATIN CAPITAL LETTER L WITH MIDDLE DOT]\n\"\\u013F\" => \"L\"\n\n# Ł  [LATIN CAPITAL LETTER L WITH STROKE]\n\"\\u0141\" => \"L\"\n\n# Ƚ  [LATIN CAPITAL LETTER L WITH BAR]\n\"\\u023D\" => \"L\"\n\n# ʟ  [LATIN LETTER SMALL CAPITAL L]\n\"\\u029F\" => \"L\"\n\n# ᴌ  [LATIN LETTER SMALL CAPITAL L WITH STROKE]\n\"\\u1D0C\" => \"L\"\n\n# Ḷ  [LATIN CAPITAL LETTER L WITH DOT BELOW]\n\"\\u1E36\" => \"L\"\n\n# Ḹ  [LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON]\n\"\\u1E38\" => \"L\"\n\n# Ḻ  [LATIN CAPITAL LETTER L WITH LINE BELOW]\n\"\\u1E3A\" => \"L\"\n\n# Ḽ  [LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW]\n\"\\u1E3C\" => \"L\"\n\n# Ⓛ  [CIRCLED LATIN CAPITAL LETTER L]\n\"\\u24C1\" => \"L\"\n\n# Ⱡ  [LATIN CAPITAL LETTER L WITH DOUBLE BAR]\n\"\\u2C60\" => \"L\"\n\n# Ɫ  [LATIN CAPITAL LETTER L WITH MIDDLE TILDE]\n\"\\u2C62\" => \"L\"\n\n# Ꝇ  [LATIN CAPITAL LETTER BROKEN L]\n\"\\uA746\" => \"L\"\n\n# Ꝉ  [LATIN CAPITAL LETTER L WITH HIGH STROKE]\n\"\\uA748\" => \"L\"\n\n# Ꞁ  [LATIN CAPITAL LETTER TURNED L]\n\"\\uA780\" => \"L\"\n\n# Ｌ  [FULLWIDTH LATIN CAPITAL LETTER L]\n\"\\uFF2C\" => \"L\"\n\n# ĺ  [LATIN SMALL LETTER L WITH ACUTE]\n\"\\u013A\" => \"l\"\n\n# ļ  [LATIN SMALL LETTER L WITH CEDILLA]\n\"\\u013C\" => \"l\"\n\n# ľ  [LATIN SMALL LETTER L WITH CARON]\n\"\\u013E\" => \"l\"\n\n# ŀ  [LATIN SMALL LETTER L WITH MIDDLE DOT]\n\"\\u0140\" => \"l\"\n\n# ł  [LATIN SMALL LETTER L WITH STROKE]\n\"\\u0142\" => \"l\"\n\n# ƚ  [LATIN SMALL LETTER L WITH BAR]\n\"\\u019A\" => \"l\"\n\n# ȴ  [LATIN SMALL LETTER L WITH CURL]\n\"\\u0234\" => \"l\"\n\n# ɫ  [LATIN SMALL LETTER L WITH MIDDLE TILDE]\n\"\\u026B\" => \"l\"\n\n# ɬ  [LATIN SMALL LETTER L WITH BELT]\n\"\\u026C\" => \"l\"\n\n# ɭ  [LATIN SMALL LETTER L WITH RETROFLEX HOOK]\n\"\\u026D\" => \"l\"\n\n# ᶅ  [LATIN SMALL LETTER L WITH PALATAL HOOK]\n\"\\u1D85\" => \"l\"\n\n# ḷ  [LATIN SMALL LETTER L WITH DOT BELOW]\n\"\\u1E37\" => \"l\"\n\n# ḹ  [LATIN SMALL LETTER L WITH DOT BELOW AND MACRON]\n\"\\u1E39\" => \"l\"\n\n# ḻ  [LATIN SMALL LETTER L WITH LINE BELOW]\n\"\\u1E3B\" => \"l\"\n\n# ḽ  [LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW]\n\"\\u1E3D\" => \"l\"\n\n# ⓛ  [CIRCLED LATIN SMALL LETTER L]\n\"\\u24DB\" => \"l\"\n\n# ⱡ  [LATIN SMALL LETTER L WITH DOUBLE BAR]\n\"\\u2C61\" => \"l\"\n\n# ꝇ  [LATIN SMALL LETTER BROKEN L]\n\"\\uA747\" => \"l\"\n\n# ꝉ  [LATIN SMALL LETTER L WITH HIGH STROKE]\n\"\\uA749\" => \"l\"\n\n# ꞁ  [LATIN SMALL LETTER TURNED L]\n\"\\uA781\" => \"l\"\n\n# ｌ  [FULLWIDTH LATIN SMALL LETTER L]\n\"\\uFF4C\" => \"l\"\n\n# Ǉ  [LATIN CAPITAL LETTER LJ]\n\"\\u01C7\" => \"LJ\"\n\n# Ỻ  [LATIN CAPITAL LETTER MIDDLE-WELSH LL]\n\"\\u1EFA\" => \"LL\"\n\n# ǈ  [LATIN CAPITAL LETTER L WITH SMALL LETTER J]\n\"\\u01C8\" => \"Lj\"\n\n# ⒧  [PARENTHESIZED LATIN SMALL LETTER L]\n\"\\u24A7\" => \"(l)\"\n\n# ǉ  [LATIN SMALL LETTER LJ]\n\"\\u01C9\" => \"lj\"\n\n# ỻ  [LATIN SMALL LETTER MIDDLE-WELSH LL]\n\"\\u1EFB\" => \"ll\"\n\n# ʪ  [LATIN SMALL LETTER LS DIGRAPH]\n\"\\u02AA\" => \"ls\"\n\n# ʫ  [LATIN SMALL LETTER LZ DIGRAPH]\n\"\\u02AB\" => \"lz\"\n\n# Ɯ  [LATIN CAPITAL LETTER TURNED M]\n\"\\u019C\" => \"M\"\n\n# ᴍ  [LATIN LETTER SMALL CAPITAL M]\n\"\\u1D0D\" => \"M\"\n\n# Ḿ  [LATIN CAPITAL LETTER M WITH ACUTE]\n\"\\u1E3E\" => \"M\"\n\n# Ṁ  [LATIN CAPITAL LETTER M WITH DOT ABOVE]\n\"\\u1E40\" => \"M\"\n\n# Ṃ  [LATIN CAPITAL LETTER M WITH DOT BELOW]\n\"\\u1E42\" => \"M\"\n\n# Ⓜ  [CIRCLED LATIN CAPITAL LETTER M]\n\"\\u24C2\" => \"M\"\n\n# Ɱ  [LATIN CAPITAL LETTER M WITH HOOK]\n\"\\u2C6E\" => \"M\"\n\n# ꟽ  [LATIN EPIGRAPHIC LETTER INVERTED M]\n\"\\uA7FD\" => \"M\"\n\n# ꟿ  [LATIN EPIGRAPHIC LETTER ARCHAIC M]\n\"\\uA7FF\" => \"M\"\n\n# Ｍ  [FULLWIDTH LATIN CAPITAL LETTER M]\n\"\\uFF2D\" => \"M\"\n\n# ɯ  [LATIN SMALL LETTER TURNED M]\n\"\\u026F\" => \"m\"\n\n# ɰ  [LATIN SMALL LETTER TURNED M WITH LONG LEG]\n\"\\u0270\" => \"m\"\n\n# ɱ  [LATIN SMALL LETTER M WITH HOOK]\n\"\\u0271\" => \"m\"\n\n# ᵯ  [LATIN SMALL LETTER M WITH MIDDLE TILDE]\n\"\\u1D6F\" => \"m\"\n\n# ᶆ  [LATIN SMALL LETTER M WITH PALATAL HOOK]\n\"\\u1D86\" => \"m\"\n\n# ḿ  [LATIN SMALL LETTER M WITH ACUTE]\n\"\\u1E3F\" => \"m\"\n\n# ṁ  [LATIN SMALL LETTER M WITH DOT ABOVE]\n\"\\u1E41\" => \"m\"\n\n# ṃ  [LATIN SMALL LETTER M WITH DOT BELOW]\n\"\\u1E43\" => \"m\"\n\n# ⓜ  [CIRCLED LATIN SMALL LETTER M]\n\"\\u24DC\" => \"m\"\n\n# ｍ  [FULLWIDTH LATIN SMALL LETTER M]\n\"\\uFF4D\" => \"m\"\n\n# ⒨  [PARENTHESIZED LATIN SMALL LETTER M]\n\"\\u24A8\" => \"(m)\"\n\n# Ñ  [LATIN CAPITAL LETTER N WITH TILDE]\n\"\\u00D1\" => \"N\"\n\n# Ń  [LATIN CAPITAL LETTER N WITH ACUTE]\n\"\\u0143\" => \"N\"\n\n# Ņ  [LATIN CAPITAL LETTER N WITH CEDILLA]\n\"\\u0145\" => \"N\"\n\n# Ň  [LATIN CAPITAL LETTER N WITH CARON]\n\"\\u0147\" => \"N\"\n\n# Ŋ  http://en.wikipedia.org/wiki/Eng_(letter)  [LATIN CAPITAL LETTER ENG]\n\"\\u014A\" => \"N\"\n\n# Ɲ  [LATIN CAPITAL LETTER N WITH LEFT HOOK]\n\"\\u019D\" => \"N\"\n\n# Ǹ  [LATIN CAPITAL LETTER N WITH GRAVE]\n\"\\u01F8\" => \"N\"\n\n# Ƞ  [LATIN CAPITAL LETTER N WITH LONG RIGHT LEG]\n\"\\u0220\" => \"N\"\n\n# ɴ  [LATIN LETTER SMALL CAPITAL N]\n\"\\u0274\" => \"N\"\n\n# ᴎ  [LATIN LETTER SMALL CAPITAL REVERSED N]\n\"\\u1D0E\" => \"N\"\n\n# Ṅ  [LATIN CAPITAL LETTER N WITH DOT ABOVE]\n\"\\u1E44\" => \"N\"\n\n# Ṇ  [LATIN CAPITAL LETTER N WITH DOT BELOW]\n\"\\u1E46\" => \"N\"\n\n# Ṉ  [LATIN CAPITAL LETTER N WITH LINE BELOW]\n\"\\u1E48\" => \"N\"\n\n# Ṋ  [LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW]\n\"\\u1E4A\" => \"N\"\n\n# Ⓝ  [CIRCLED LATIN CAPITAL LETTER N]\n\"\\u24C3\" => \"N\"\n\n# Ｎ  [FULLWIDTH LATIN CAPITAL LETTER N]\n\"\\uFF2E\" => \"N\"\n\n# ñ  [LATIN SMALL LETTER N WITH TILDE]\n\"\\u00F1\" => \"n\"\n\n# ń  [LATIN SMALL LETTER N WITH ACUTE]\n\"\\u0144\" => \"n\"\n\n# ņ  [LATIN SMALL LETTER N WITH CEDILLA]\n\"\\u0146\" => \"n\"\n\n# ň  [LATIN SMALL LETTER N WITH CARON]\n\"\\u0148\" => \"n\"\n\n# ŉ  [LATIN SMALL LETTER N PRECEDED BY APOSTROPHE]\n\"\\u0149\" => \"n\"\n\n# ŋ  http://en.wikipedia.org/wiki/Eng_(letter)  [LATIN SMALL LETTER ENG]\n\"\\u014B\" => \"n\"\n\n# ƞ  [LATIN SMALL LETTER N WITH LONG RIGHT LEG]\n\"\\u019E\" => \"n\"\n\n# ǹ  [LATIN SMALL LETTER N WITH GRAVE]\n\"\\u01F9\" => \"n\"\n\n# ȵ  [LATIN SMALL LETTER N WITH CURL]\n\"\\u0235\" => \"n\"\n\n# ɲ  [LATIN SMALL LETTER N WITH LEFT HOOK]\n\"\\u0272\" => \"n\"\n\n# ɳ  [LATIN SMALL LETTER N WITH RETROFLEX HOOK]\n\"\\u0273\" => \"n\"\n\n# ᵰ  [LATIN SMALL LETTER N WITH MIDDLE TILDE]\n\"\\u1D70\" => \"n\"\n\n# ᶇ  [LATIN SMALL LETTER N WITH PALATAL HOOK]\n\"\\u1D87\" => \"n\"\n\n# ṅ  [LATIN SMALL LETTER N WITH DOT ABOVE]\n\"\\u1E45\" => \"n\"\n\n# ṇ  [LATIN SMALL LETTER N WITH DOT BELOW]\n\"\\u1E47\" => \"n\"\n\n# ṉ  [LATIN SMALL LETTER N WITH LINE BELOW]\n\"\\u1E49\" => \"n\"\n\n# ṋ  [LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW]\n\"\\u1E4B\" => \"n\"\n\n# ⁿ  [SUPERSCRIPT LATIN SMALL LETTER N]\n\"\\u207F\" => \"n\"\n\n# ⓝ  [CIRCLED LATIN SMALL LETTER N]\n\"\\u24DD\" => \"n\"\n\n# ｎ  [FULLWIDTH LATIN SMALL LETTER N]\n\"\\uFF4E\" => \"n\"\n\n# Ǌ  [LATIN CAPITAL LETTER NJ]\n\"\\u01CA\" => \"NJ\"\n\n# ǋ  [LATIN CAPITAL LETTER N WITH SMALL LETTER J]\n\"\\u01CB\" => \"Nj\"\n\n# ⒩  [PARENTHESIZED LATIN SMALL LETTER N]\n\"\\u24A9\" => \"(n)\"\n\n# ǌ  [LATIN SMALL LETTER NJ]\n\"\\u01CC\" => \"nj\"\n\n# Ò  [LATIN CAPITAL LETTER O WITH GRAVE]\n\"\\u00D2\" => \"O\"\n\n# Ó  [LATIN CAPITAL LETTER O WITH ACUTE]\n\"\\u00D3\" => \"O\"\n\n# Ô  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX]\n\"\\u00D4\" => \"O\"\n\n# Õ  [LATIN CAPITAL LETTER O WITH TILDE]\n\"\\u00D5\" => \"O\"\n\n# Ö  [LATIN CAPITAL LETTER O WITH DIAERESIS]\n\"\\u00D6\" => \"O\"\n\n# Ø  [LATIN CAPITAL LETTER O WITH STROKE]\n\"\\u00D8\" => \"O\"\n\n# Ō  [LATIN CAPITAL LETTER O WITH MACRON]\n\"\\u014C\" => \"O\"\n\n# Ŏ  [LATIN CAPITAL LETTER O WITH BREVE]\n\"\\u014E\" => \"O\"\n\n# Ő  [LATIN CAPITAL LETTER O WITH DOUBLE ACUTE]\n\"\\u0150\" => \"O\"\n\n# Ɔ  [LATIN CAPITAL LETTER OPEN O]\n\"\\u0186\" => \"O\"\n\n# Ɵ  [LATIN CAPITAL LETTER O WITH MIDDLE TILDE]\n\"\\u019F\" => \"O\"\n\n# Ơ  [LATIN CAPITAL LETTER O WITH HORN]\n\"\\u01A0\" => \"O\"\n\n# Ǒ  [LATIN CAPITAL LETTER O WITH CARON]\n\"\\u01D1\" => \"O\"\n\n# Ǫ  [LATIN CAPITAL LETTER O WITH OGONEK]\n\"\\u01EA\" => \"O\"\n\n# Ǭ  [LATIN CAPITAL LETTER O WITH OGONEK AND MACRON]\n\"\\u01EC\" => \"O\"\n\n# Ǿ  [LATIN CAPITAL LETTER O WITH STROKE AND ACUTE]\n\"\\u01FE\" => \"O\"\n\n# Ȍ  [LATIN CAPITAL LETTER O WITH DOUBLE GRAVE]\n\"\\u020C\" => \"O\"\n\n# Ȏ  [LATIN CAPITAL LETTER O WITH INVERTED BREVE]\n\"\\u020E\" => \"O\"\n\n# Ȫ  [LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON]\n\"\\u022A\" => \"O\"\n\n# Ȭ  [LATIN CAPITAL LETTER O WITH TILDE AND MACRON]\n\"\\u022C\" => \"O\"\n\n# Ȯ  [LATIN CAPITAL LETTER O WITH DOT ABOVE]\n\"\\u022E\" => \"O\"\n\n# Ȱ  [LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON]\n\"\\u0230\" => \"O\"\n\n# ᴏ  [LATIN LETTER SMALL CAPITAL O]\n\"\\u1D0F\" => \"O\"\n\n# ᴐ  [LATIN LETTER SMALL CAPITAL OPEN O]\n\"\\u1D10\" => \"O\"\n\n# Ṍ  [LATIN CAPITAL LETTER O WITH TILDE AND ACUTE]\n\"\\u1E4C\" => \"O\"\n\n# Ṏ  [LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS]\n\"\\u1E4E\" => \"O\"\n\n# Ṑ  [LATIN CAPITAL LETTER O WITH MACRON AND GRAVE]\n\"\\u1E50\" => \"O\"\n\n# Ṓ  [LATIN CAPITAL LETTER O WITH MACRON AND ACUTE]\n\"\\u1E52\" => \"O\"\n\n# Ọ  [LATIN CAPITAL LETTER O WITH DOT BELOW]\n\"\\u1ECC\" => \"O\"\n\n# Ỏ  [LATIN CAPITAL LETTER O WITH HOOK ABOVE]\n\"\\u1ECE\" => \"O\"\n\n# Ố  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE]\n\"\\u1ED0\" => \"O\"\n\n# Ồ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE]\n\"\\u1ED2\" => \"O\"\n\n# Ổ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1ED4\" => \"O\"\n\n# Ỗ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE]\n\"\\u1ED6\" => \"O\"\n\n# Ộ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1ED8\" => \"O\"\n\n# Ớ  [LATIN CAPITAL LETTER O WITH HORN AND ACUTE]\n\"\\u1EDA\" => \"O\"\n\n# Ờ  [LATIN CAPITAL LETTER O WITH HORN AND GRAVE]\n\"\\u1EDC\" => \"O\"\n\n# Ở  [LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE]\n\"\\u1EDE\" => \"O\"\n\n# Ỡ  [LATIN CAPITAL LETTER O WITH HORN AND TILDE]\n\"\\u1EE0\" => \"O\"\n\n# Ợ  [LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW]\n\"\\u1EE2\" => \"O\"\n\n# Ⓞ  [CIRCLED LATIN CAPITAL LETTER O]\n\"\\u24C4\" => \"O\"\n\n# Ꝋ  [LATIN CAPITAL LETTER O WITH LONG STROKE OVERLAY]\n\"\\uA74A\" => \"O\"\n\n# Ꝍ  [LATIN CAPITAL LETTER O WITH LOOP]\n\"\\uA74C\" => \"O\"\n\n# Ｏ  [FULLWIDTH LATIN CAPITAL LETTER O]\n\"\\uFF2F\" => \"O\"\n\n# ò  [LATIN SMALL LETTER O WITH GRAVE]\n\"\\u00F2\" => \"o\"\n\n# ó  [LATIN SMALL LETTER O WITH ACUTE]\n\"\\u00F3\" => \"o\"\n\n# ô  [LATIN SMALL LETTER O WITH CIRCUMFLEX]\n\"\\u00F4\" => \"o\"\n\n# õ  [LATIN SMALL LETTER O WITH TILDE]\n\"\\u00F5\" => \"o\"\n\n# ö  [LATIN SMALL LETTER O WITH DIAERESIS]\n\"\\u00F6\" => \"o\"\n\n# ø  [LATIN SMALL LETTER O WITH STROKE]\n\"\\u00F8\" => \"o\"\n\n# ō  [LATIN SMALL LETTER O WITH MACRON]\n\"\\u014D\" => \"o\"\n\n# ŏ  [LATIN SMALL LETTER O WITH BREVE]\n\"\\u014F\" => \"o\"\n\n# ő  [LATIN SMALL LETTER O WITH DOUBLE ACUTE]\n\"\\u0151\" => \"o\"\n\n# ơ  [LATIN SMALL LETTER O WITH HORN]\n\"\\u01A1\" => \"o\"\n\n# ǒ  [LATIN SMALL LETTER O WITH CARON]\n\"\\u01D2\" => \"o\"\n\n# ǫ  [LATIN SMALL LETTER O WITH OGONEK]\n\"\\u01EB\" => \"o\"\n\n# ǭ  [LATIN SMALL LETTER O WITH OGONEK AND MACRON]\n\"\\u01ED\" => \"o\"\n\n# ǿ  [LATIN SMALL LETTER O WITH STROKE AND ACUTE]\n\"\\u01FF\" => \"o\"\n\n# ȍ  [LATIN SMALL LETTER O WITH DOUBLE GRAVE]\n\"\\u020D\" => \"o\"\n\n# ȏ  [LATIN SMALL LETTER O WITH INVERTED BREVE]\n\"\\u020F\" => \"o\"\n\n# ȫ  [LATIN SMALL LETTER O WITH DIAERESIS AND MACRON]\n\"\\u022B\" => \"o\"\n\n# ȭ  [LATIN SMALL LETTER O WITH TILDE AND MACRON]\n\"\\u022D\" => \"o\"\n\n# ȯ  [LATIN SMALL LETTER O WITH DOT ABOVE]\n\"\\u022F\" => \"o\"\n\n# ȱ  [LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON]\n\"\\u0231\" => \"o\"\n\n# ɔ  [LATIN SMALL LETTER OPEN O]\n\"\\u0254\" => \"o\"\n\n# ɵ  [LATIN SMALL LETTER BARRED O]\n\"\\u0275\" => \"o\"\n\n# ᴖ  [LATIN SMALL LETTER TOP HALF O]\n\"\\u1D16\" => \"o\"\n\n# ᴗ  [LATIN SMALL LETTER BOTTOM HALF O]\n\"\\u1D17\" => \"o\"\n\n# ᶗ  [LATIN SMALL LETTER OPEN O WITH RETROFLEX HOOK]\n\"\\u1D97\" => \"o\"\n\n# ṍ  [LATIN SMALL LETTER O WITH TILDE AND ACUTE]\n\"\\u1E4D\" => \"o\"\n\n# ṏ  [LATIN SMALL LETTER O WITH TILDE AND DIAERESIS]\n\"\\u1E4F\" => \"o\"\n\n# ṑ  [LATIN SMALL LETTER O WITH MACRON AND GRAVE]\n\"\\u1E51\" => \"o\"\n\n# ṓ  [LATIN SMALL LETTER O WITH MACRON AND ACUTE]\n\"\\u1E53\" => \"o\"\n\n# ọ  [LATIN SMALL LETTER O WITH DOT BELOW]\n\"\\u1ECD\" => \"o\"\n\n# ỏ  [LATIN SMALL LETTER O WITH HOOK ABOVE]\n\"\\u1ECF\" => \"o\"\n\n# ố  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE]\n\"\\u1ED1\" => \"o\"\n\n# ồ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE]\n\"\\u1ED3\" => \"o\"\n\n# ổ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1ED5\" => \"o\"\n\n# ỗ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE]\n\"\\u1ED7\" => \"o\"\n\n# ộ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1ED9\" => \"o\"\n\n# ớ  [LATIN SMALL LETTER O WITH HORN AND ACUTE]\n\"\\u1EDB\" => \"o\"\n\n# ờ  [LATIN SMALL LETTER O WITH HORN AND GRAVE]\n\"\\u1EDD\" => \"o\"\n\n# ở  [LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE]\n\"\\u1EDF\" => \"o\"\n\n# ỡ  [LATIN SMALL LETTER O WITH HORN AND TILDE]\n\"\\u1EE1\" => \"o\"\n\n# ợ  [LATIN SMALL LETTER O WITH HORN AND DOT BELOW]\n\"\\u1EE3\" => \"o\"\n\n# ₒ  [LATIN SUBSCRIPT SMALL LETTER O]\n\"\\u2092\" => \"o\"\n\n# ⓞ  [CIRCLED LATIN SMALL LETTER O]\n\"\\u24DE\" => \"o\"\n\n# ⱺ  [LATIN SMALL LETTER O WITH LOW RING INSIDE]\n\"\\u2C7A\" => \"o\"\n\n# ꝋ  [LATIN SMALL LETTER O WITH LONG STROKE OVERLAY]\n\"\\uA74B\" => \"o\"\n\n# ꝍ  [LATIN SMALL LETTER O WITH LOOP]\n\"\\uA74D\" => \"o\"\n\n# ｏ  [FULLWIDTH LATIN SMALL LETTER O]\n\"\\uFF4F\" => \"o\"\n\n# Œ  [LATIN CAPITAL LIGATURE OE]\n\"\\u0152\" => \"OE\"\n\n# ɶ  [LATIN LETTER SMALL CAPITAL OE]\n\"\\u0276\" => \"OE\"\n\n# Ꝏ  [LATIN CAPITAL LETTER OO]\n\"\\uA74E\" => \"OO\"\n\n# Ȣ  http://en.wikipedia.org/wiki/OU  [LATIN CAPITAL LETTER OU]\n\"\\u0222\" => \"OU\"\n\n# ᴕ  [LATIN LETTER SMALL CAPITAL OU]\n\"\\u1D15\" => \"OU\"\n\n# ⒪  [PARENTHESIZED LATIN SMALL LETTER O]\n\"\\u24AA\" => \"(o)\"\n\n# œ  [LATIN SMALL LIGATURE OE]\n\"\\u0153\" => \"oe\"\n\n# ᴔ  [LATIN SMALL LETTER TURNED OE]\n\"\\u1D14\" => \"oe\"\n\n# ꝏ  [LATIN SMALL LETTER OO]\n\"\\uA74F\" => \"oo\"\n\n# ȣ  http://en.wikipedia.org/wiki/OU  [LATIN SMALL LETTER OU]\n\"\\u0223\" => \"ou\"\n\n# Ƥ  [LATIN CAPITAL LETTER P WITH HOOK]\n\"\\u01A4\" => \"P\"\n\n# ᴘ  [LATIN LETTER SMALL CAPITAL P]\n\"\\u1D18\" => \"P\"\n\n# Ṕ  [LATIN CAPITAL LETTER P WITH ACUTE]\n\"\\u1E54\" => \"P\"\n\n# Ṗ  [LATIN CAPITAL LETTER P WITH DOT ABOVE]\n\"\\u1E56\" => \"P\"\n\n# Ⓟ  [CIRCLED LATIN CAPITAL LETTER P]\n\"\\u24C5\" => \"P\"\n\n# Ᵽ  [LATIN CAPITAL LETTER P WITH STROKE]\n\"\\u2C63\" => \"P\"\n\n# Ꝑ  [LATIN CAPITAL LETTER P WITH STROKE THROUGH DESCENDER]\n\"\\uA750\" => \"P\"\n\n# Ꝓ  [LATIN CAPITAL LETTER P WITH FLOURISH]\n\"\\uA752\" => \"P\"\n\n# Ꝕ  [LATIN CAPITAL LETTER P WITH SQUIRREL TAIL]\n\"\\uA754\" => \"P\"\n\n# Ｐ  [FULLWIDTH LATIN CAPITAL LETTER P]\n\"\\uFF30\" => \"P\"\n\n# ƥ  [LATIN SMALL LETTER P WITH HOOK]\n\"\\u01A5\" => \"p\"\n\n# ᵱ  [LATIN SMALL LETTER P WITH MIDDLE TILDE]\n\"\\u1D71\" => \"p\"\n\n# ᵽ  [LATIN SMALL LETTER P WITH STROKE]\n\"\\u1D7D\" => \"p\"\n\n# ᶈ  [LATIN SMALL LETTER P WITH PALATAL HOOK]\n\"\\u1D88\" => \"p\"\n\n# ṕ  [LATIN SMALL LETTER P WITH ACUTE]\n\"\\u1E55\" => \"p\"\n\n# ṗ  [LATIN SMALL LETTER P WITH DOT ABOVE]\n\"\\u1E57\" => \"p\"\n\n# ⓟ  [CIRCLED LATIN SMALL LETTER P]\n\"\\u24DF\" => \"p\"\n\n# ꝑ  [LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER]\n\"\\uA751\" => \"p\"\n\n# ꝓ  [LATIN SMALL LETTER P WITH FLOURISH]\n\"\\uA753\" => \"p\"\n\n# ꝕ  [LATIN SMALL LETTER P WITH SQUIRREL TAIL]\n\"\\uA755\" => \"p\"\n\n# ꟼ  [LATIN EPIGRAPHIC LETTER REVERSED P]\n\"\\uA7FC\" => \"p\"\n\n# ｐ  [FULLWIDTH LATIN SMALL LETTER P]\n\"\\uFF50\" => \"p\"\n\n# ⒫  [PARENTHESIZED LATIN SMALL LETTER P]\n\"\\u24AB\" => \"(p)\"\n\n# Ɋ  [LATIN CAPITAL LETTER SMALL Q WITH HOOK TAIL]\n\"\\u024A\" => \"Q\"\n\n# Ⓠ  [CIRCLED LATIN CAPITAL LETTER Q]\n\"\\u24C6\" => \"Q\"\n\n# Ꝗ  [LATIN CAPITAL LETTER Q WITH STROKE THROUGH DESCENDER]\n\"\\uA756\" => \"Q\"\n\n# Ꝙ  [LATIN CAPITAL LETTER Q WITH DIAGONAL STROKE]\n\"\\uA758\" => \"Q\"\n\n# Ｑ  [FULLWIDTH LATIN CAPITAL LETTER Q]\n\"\\uFF31\" => \"Q\"\n\n# ĸ  http://en.wikipedia.org/wiki/Kra_(letter)  [LATIN SMALL LETTER KRA]\n\"\\u0138\" => \"q\"\n\n# ɋ  [LATIN SMALL LETTER Q WITH HOOK TAIL]\n\"\\u024B\" => \"q\"\n\n# ʠ  [LATIN SMALL LETTER Q WITH HOOK]\n\"\\u02A0\" => \"q\"\n\n# ⓠ  [CIRCLED LATIN SMALL LETTER Q]\n\"\\u24E0\" => \"q\"\n\n# ꝗ  [LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER]\n\"\\uA757\" => \"q\"\n\n# ꝙ  [LATIN SMALL LETTER Q WITH DIAGONAL STROKE]\n\"\\uA759\" => \"q\"\n\n# ｑ  [FULLWIDTH LATIN SMALL LETTER Q]\n\"\\uFF51\" => \"q\"\n\n# ⒬  [PARENTHESIZED LATIN SMALL LETTER Q]\n\"\\u24AC\" => \"(q)\"\n\n# ȹ  [LATIN SMALL LETTER QP DIGRAPH]\n\"\\u0239\" => \"qp\"\n\n# Ŕ  [LATIN CAPITAL LETTER R WITH ACUTE]\n\"\\u0154\" => \"R\"\n\n# Ŗ  [LATIN CAPITAL LETTER R WITH CEDILLA]\n\"\\u0156\" => \"R\"\n\n# Ř  [LATIN CAPITAL LETTER R WITH CARON]\n\"\\u0158\" => \"R\"\n\n# Ȓ  [LATIN CAPITAL LETTER R WITH DOUBLE GRAVE]\n\"\\u0210\" => \"R\"\n\n# Ȓ  [LATIN CAPITAL LETTER R WITH INVERTED BREVE]\n\"\\u0212\" => \"R\"\n\n# Ɍ  [LATIN CAPITAL LETTER R WITH STROKE]\n\"\\u024C\" => \"R\"\n\n# ʀ  [LATIN LETTER SMALL CAPITAL R]\n\"\\u0280\" => \"R\"\n\n# ʁ  [LATIN LETTER SMALL CAPITAL INVERTED R]\n\"\\u0281\" => \"R\"\n\n# ᴙ  [LATIN LETTER SMALL CAPITAL REVERSED R]\n\"\\u1D19\" => \"R\"\n\n# ᴚ  [LATIN LETTER SMALL CAPITAL TURNED R]\n\"\\u1D1A\" => \"R\"\n\n# Ṙ  [LATIN CAPITAL LETTER R WITH DOT ABOVE]\n\"\\u1E58\" => \"R\"\n\n# Ṛ  [LATIN CAPITAL LETTER R WITH DOT BELOW]\n\"\\u1E5A\" => \"R\"\n\n# Ṝ  [LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON]\n\"\\u1E5C\" => \"R\"\n\n# Ṟ  [LATIN CAPITAL LETTER R WITH LINE BELOW]\n\"\\u1E5E\" => \"R\"\n\n# Ⓡ  [CIRCLED LATIN CAPITAL LETTER R]\n\"\\u24C7\" => \"R\"\n\n# Ɽ  [LATIN CAPITAL LETTER R WITH TAIL]\n\"\\u2C64\" => \"R\"\n\n# Ꝛ  [LATIN CAPITAL LETTER R ROTUNDA]\n\"\\uA75A\" => \"R\"\n\n# Ꞃ  [LATIN CAPITAL LETTER INSULAR R]\n\"\\uA782\" => \"R\"\n\n# Ｒ  [FULLWIDTH LATIN CAPITAL LETTER R]\n\"\\uFF32\" => \"R\"\n\n# ŕ  [LATIN SMALL LETTER R WITH ACUTE]\n\"\\u0155\" => \"r\"\n\n# ŗ  [LATIN SMALL LETTER R WITH CEDILLA]\n\"\\u0157\" => \"r\"\n\n# ř  [LATIN SMALL LETTER R WITH CARON]\n\"\\u0159\" => \"r\"\n\n# ȑ  [LATIN SMALL LETTER R WITH DOUBLE GRAVE]\n\"\\u0211\" => \"r\"\n\n# ȓ  [LATIN SMALL LETTER R WITH INVERTED BREVE]\n\"\\u0213\" => \"r\"\n\n# ɍ  [LATIN SMALL LETTER R WITH STROKE]\n\"\\u024D\" => \"r\"\n\n# ɼ  [LATIN SMALL LETTER R WITH LONG LEG]\n\"\\u027C\" => \"r\"\n\n# ɽ  [LATIN SMALL LETTER R WITH TAIL]\n\"\\u027D\" => \"r\"\n\n# ɾ  [LATIN SMALL LETTER R WITH FISHHOOK]\n\"\\u027E\" => \"r\"\n\n# ɿ  [LATIN SMALL LETTER REVERSED R WITH FISHHOOK]\n\"\\u027F\" => \"r\"\n\n# ᵣ  [LATIN SUBSCRIPT SMALL LETTER R]\n\"\\u1D63\" => \"r\"\n\n# ᵲ  [LATIN SMALL LETTER R WITH MIDDLE TILDE]\n\"\\u1D72\" => \"r\"\n\n# ᵳ  [LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE]\n\"\\u1D73\" => \"r\"\n\n# ᶉ  [LATIN SMALL LETTER R WITH PALATAL HOOK]\n\"\\u1D89\" => \"r\"\n\n# ṙ  [LATIN SMALL LETTER R WITH DOT ABOVE]\n\"\\u1E59\" => \"r\"\n\n# ṛ  [LATIN SMALL LETTER R WITH DOT BELOW]\n\"\\u1E5B\" => \"r\"\n\n# ṝ  [LATIN SMALL LETTER R WITH DOT BELOW AND MACRON]\n\"\\u1E5D\" => \"r\"\n\n# ṟ  [LATIN SMALL LETTER R WITH LINE BELOW]\n\"\\u1E5F\" => \"r\"\n\n# ⓡ  [CIRCLED LATIN SMALL LETTER R]\n\"\\u24E1\" => \"r\"\n\n# ꝛ  [LATIN SMALL LETTER R ROTUNDA]\n\"\\uA75B\" => \"r\"\n\n# ꞃ  [LATIN SMALL LETTER INSULAR R]\n\"\\uA783\" => \"r\"\n\n# ｒ  [FULLWIDTH LATIN SMALL LETTER R]\n\"\\uFF52\" => \"r\"\n\n# ⒭  [PARENTHESIZED LATIN SMALL LETTER R]\n\"\\u24AD\" => \"(r)\"\n\n# Ś  [LATIN CAPITAL LETTER S WITH ACUTE]\n\"\\u015A\" => \"S\"\n\n# Ŝ  [LATIN CAPITAL LETTER S WITH CIRCUMFLEX]\n\"\\u015C\" => \"S\"\n\n# Ş  [LATIN CAPITAL LETTER S WITH CEDILLA]\n\"\\u015E\" => \"S\"\n\n# Š  [LATIN CAPITAL LETTER S WITH CARON]\n\"\\u0160\" => \"S\"\n\n# Ș  [LATIN CAPITAL LETTER S WITH COMMA BELOW]\n\"\\u0218\" => \"S\"\n\n# Ṡ  [LATIN CAPITAL LETTER S WITH DOT ABOVE]\n\"\\u1E60\" => \"S\"\n\n# Ṣ  [LATIN CAPITAL LETTER S WITH DOT BELOW]\n\"\\u1E62\" => \"S\"\n\n# Ṥ  [LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE]\n\"\\u1E64\" => \"S\"\n\n# Ṧ  [LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE]\n\"\\u1E66\" => \"S\"\n\n# Ṩ  [LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE]\n\"\\u1E68\" => \"S\"\n\n# Ⓢ  [CIRCLED LATIN CAPITAL LETTER S]\n\"\\u24C8\" => \"S\"\n\n# ꜱ  [LATIN LETTER SMALL CAPITAL S]\n\"\\uA731\" => \"S\"\n\n# ꞅ  [LATIN SMALL LETTER INSULAR S]\n\"\\uA785\" => \"S\"\n\n# Ｓ  [FULLWIDTH LATIN CAPITAL LETTER S]\n\"\\uFF33\" => \"S\"\n\n# ś  [LATIN SMALL LETTER S WITH ACUTE]\n\"\\u015B\" => \"s\"\n\n# ŝ  [LATIN SMALL LETTER S WITH CIRCUMFLEX]\n\"\\u015D\" => \"s\"\n\n# ş  [LATIN SMALL LETTER S WITH CEDILLA]\n\"\\u015F\" => \"s\"\n\n# š  [LATIN SMALL LETTER S WITH CARON]\n\"\\u0161\" => \"s\"\n\n# ſ  http://en.wikipedia.org/wiki/Long_S  [LATIN SMALL LETTER LONG S]\n\"\\u017F\" => \"s\"\n\n# ș  [LATIN SMALL LETTER S WITH COMMA BELOW]\n\"\\u0219\" => \"s\"\n\n# ȿ  [LATIN SMALL LETTER S WITH SWASH TAIL]\n\"\\u023F\" => \"s\"\n\n# ʂ  [LATIN SMALL LETTER S WITH HOOK]\n\"\\u0282\" => \"s\"\n\n# ᵴ  [LATIN SMALL LETTER S WITH MIDDLE TILDE]\n\"\\u1D74\" => \"s\"\n\n# ᶊ  [LATIN SMALL LETTER S WITH PALATAL HOOK]\n\"\\u1D8A\" => \"s\"\n\n# ṡ  [LATIN SMALL LETTER S WITH DOT ABOVE]\n\"\\u1E61\" => \"s\"\n\n# ṣ  [LATIN SMALL LETTER S WITH DOT BELOW]\n\"\\u1E63\" => \"s\"\n\n# ṥ  [LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE]\n\"\\u1E65\" => \"s\"\n\n# ṧ  [LATIN SMALL LETTER S WITH CARON AND DOT ABOVE]\n\"\\u1E67\" => \"s\"\n\n# ṩ  [LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE]\n\"\\u1E69\" => \"s\"\n\n# ẜ  [LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE]\n\"\\u1E9C\" => \"s\"\n\n# ẝ  [LATIN SMALL LETTER LONG S WITH HIGH STROKE]\n\"\\u1E9D\" => \"s\"\n\n# ⓢ  [CIRCLED LATIN SMALL LETTER S]\n\"\\u24E2\" => \"s\"\n\n# Ꞅ  [LATIN CAPITAL LETTER INSULAR S]\n\"\\uA784\" => \"s\"\n\n# ｓ  [FULLWIDTH LATIN SMALL LETTER S]\n\"\\uFF53\" => \"s\"\n\n# ẞ  [LATIN CAPITAL LETTER SHARP S]\n\"\\u1E9E\" => \"SS\"\n\n# ⒮  [PARENTHESIZED LATIN SMALL LETTER S]\n\"\\u24AE\" => \"(s)\"\n\n# ß  [LATIN SMALL LETTER SHARP S]\n\"\\u00DF\" => \"ss\"\n\n# ﬆ  [LATIN SMALL LIGATURE ST]\n\"\\uFB06\" => \"st\"\n\n# Ţ  [LATIN CAPITAL LETTER T WITH CEDILLA]\n\"\\u0162\" => \"T\"\n\n# Ť  [LATIN CAPITAL LETTER T WITH CARON]\n\"\\u0164\" => \"T\"\n\n# Ŧ  [LATIN CAPITAL LETTER T WITH STROKE]\n\"\\u0166\" => \"T\"\n\n# Ƭ  [LATIN CAPITAL LETTER T WITH HOOK]\n\"\\u01AC\" => \"T\"\n\n# Ʈ  [LATIN CAPITAL LETTER T WITH RETROFLEX HOOK]\n\"\\u01AE\" => \"T\"\n\n# Ț  [LATIN CAPITAL LETTER T WITH COMMA BELOW]\n\"\\u021A\" => \"T\"\n\n# Ⱦ  [LATIN CAPITAL LETTER T WITH DIAGONAL STROKE]\n\"\\u023E\" => \"T\"\n\n# ᴛ  [LATIN LETTER SMALL CAPITAL T]\n\"\\u1D1B\" => \"T\"\n\n# Ṫ  [LATIN CAPITAL LETTER T WITH DOT ABOVE]\n\"\\u1E6A\" => \"T\"\n\n# Ṭ  [LATIN CAPITAL LETTER T WITH DOT BELOW]\n\"\\u1E6C\" => \"T\"\n\n# Ṯ  [LATIN CAPITAL LETTER T WITH LINE BELOW]\n\"\\u1E6E\" => \"T\"\n\n# Ṱ  [LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW]\n\"\\u1E70\" => \"T\"\n\n# Ⓣ  [CIRCLED LATIN CAPITAL LETTER T]\n\"\\u24C9\" => \"T\"\n\n# Ꞇ  [LATIN CAPITAL LETTER INSULAR T]\n\"\\uA786\" => \"T\"\n\n# Ｔ  [FULLWIDTH LATIN CAPITAL LETTER T]\n\"\\uFF34\" => \"T\"\n\n# ţ  [LATIN SMALL LETTER T WITH CEDILLA]\n\"\\u0163\" => \"t\"\n\n# ť  [LATIN SMALL LETTER T WITH CARON]\n\"\\u0165\" => \"t\"\n\n# ŧ  [LATIN SMALL LETTER T WITH STROKE]\n\"\\u0167\" => \"t\"\n\n# ƫ  [LATIN SMALL LETTER T WITH PALATAL HOOK]\n\"\\u01AB\" => \"t\"\n\n# ƭ  [LATIN SMALL LETTER T WITH HOOK]\n\"\\u01AD\" => \"t\"\n\n# ț  [LATIN SMALL LETTER T WITH COMMA BELOW]\n\"\\u021B\" => \"t\"\n\n# ȶ  [LATIN SMALL LETTER T WITH CURL]\n\"\\u0236\" => \"t\"\n\n# ʇ  [LATIN SMALL LETTER TURNED T]\n\"\\u0287\" => \"t\"\n\n# ʈ  [LATIN SMALL LETTER T WITH RETROFLEX HOOK]\n\"\\u0288\" => \"t\"\n\n# ᵵ  [LATIN SMALL LETTER T WITH MIDDLE TILDE]\n\"\\u1D75\" => \"t\"\n\n# ṫ  [LATIN SMALL LETTER T WITH DOT ABOVE]\n\"\\u1E6B\" => \"t\"\n\n# ṭ  [LATIN SMALL LETTER T WITH DOT BELOW]\n\"\\u1E6D\" => \"t\"\n\n# ṯ  [LATIN SMALL LETTER T WITH LINE BELOW]\n\"\\u1E6F\" => \"t\"\n\n# ṱ  [LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW]\n\"\\u1E71\" => \"t\"\n\n# ẗ  [LATIN SMALL LETTER T WITH DIAERESIS]\n\"\\u1E97\" => \"t\"\n\n# ⓣ  [CIRCLED LATIN SMALL LETTER T]\n\"\\u24E3\" => \"t\"\n\n# ⱦ  [LATIN SMALL LETTER T WITH DIAGONAL STROKE]\n\"\\u2C66\" => \"t\"\n\n# ｔ  [FULLWIDTH LATIN SMALL LETTER T]\n\"\\uFF54\" => \"t\"\n\n# Þ  [LATIN CAPITAL LETTER THORN]\n\"\\u00DE\" => \"TH\"\n\n# Ꝧ  [LATIN CAPITAL LETTER THORN WITH STROKE THROUGH DESCENDER]\n\"\\uA766\" => \"TH\"\n\n# Ꜩ  [LATIN CAPITAL LETTER TZ]\n\"\\uA728\" => \"TZ\"\n\n# ⒯  [PARENTHESIZED LATIN SMALL LETTER T]\n\"\\u24AF\" => \"(t)\"\n\n# ʨ  [LATIN SMALL LETTER TC DIGRAPH WITH CURL]\n\"\\u02A8\" => \"tc\"\n\n# þ  [LATIN SMALL LETTER THORN]\n\"\\u00FE\" => \"th\"\n\n# ᵺ  [LATIN SMALL LETTER TH WITH STRIKETHROUGH]\n\"\\u1D7A\" => \"th\"\n\n# ꝧ  [LATIN SMALL LETTER THORN WITH STROKE THROUGH DESCENDER]\n\"\\uA767\" => \"th\"\n\n# ʦ  [LATIN SMALL LETTER TS DIGRAPH]\n\"\\u02A6\" => \"ts\"\n\n# ꜩ  [LATIN SMALL LETTER TZ]\n\"\\uA729\" => \"tz\"\n\n# Ù  [LATIN CAPITAL LETTER U WITH GRAVE]\n\"\\u00D9\" => \"U\"\n\n# Ú  [LATIN CAPITAL LETTER U WITH ACUTE]\n\"\\u00DA\" => \"U\"\n\n# Û  [LATIN CAPITAL LETTER U WITH CIRCUMFLEX]\n\"\\u00DB\" => \"U\"\n\n# Ü  [LATIN CAPITAL LETTER U WITH DIAERESIS]\n\"\\u00DC\" => \"U\"\n\n# Ũ  [LATIN CAPITAL LETTER U WITH TILDE]\n\"\\u0168\" => \"U\"\n\n# Ū  [LATIN CAPITAL LETTER U WITH MACRON]\n\"\\u016A\" => \"U\"\n\n# Ŭ  [LATIN CAPITAL LETTER U WITH BREVE]\n\"\\u016C\" => \"U\"\n\n# Ů  [LATIN CAPITAL LETTER U WITH RING ABOVE]\n\"\\u016E\" => \"U\"\n\n# Ű  [LATIN CAPITAL LETTER U WITH DOUBLE ACUTE]\n\"\\u0170\" => \"U\"\n\n# Ų  [LATIN CAPITAL LETTER U WITH OGONEK]\n\"\\u0172\" => \"U\"\n\n# Ư  [LATIN CAPITAL LETTER U WITH HORN]\n\"\\u01AF\" => \"U\"\n\n# Ǔ  [LATIN CAPITAL LETTER U WITH CARON]\n\"\\u01D3\" => \"U\"\n\n# Ǖ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON]\n\"\\u01D5\" => \"U\"\n\n# Ǘ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE]\n\"\\u01D7\" => \"U\"\n\n# Ǚ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON]\n\"\\u01D9\" => \"U\"\n\n# Ǜ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE]\n\"\\u01DB\" => \"U\"\n\n# Ȕ  [LATIN CAPITAL LETTER U WITH DOUBLE GRAVE]\n\"\\u0214\" => \"U\"\n\n# Ȗ  [LATIN CAPITAL LETTER U WITH INVERTED BREVE]\n\"\\u0216\" => \"U\"\n\n# Ʉ  [LATIN CAPITAL LETTER U BAR]\n\"\\u0244\" => \"U\"\n\n# ᴜ  [LATIN LETTER SMALL CAPITAL U]\n\"\\u1D1C\" => \"U\"\n\n# ᵾ  [LATIN SMALL CAPITAL LETTER U WITH STROKE]\n\"\\u1D7E\" => \"U\"\n\n# Ṳ  [LATIN CAPITAL LETTER U WITH DIAERESIS BELOW]\n\"\\u1E72\" => \"U\"\n\n# Ṵ  [LATIN CAPITAL LETTER U WITH TILDE BELOW]\n\"\\u1E74\" => \"U\"\n\n# Ṷ  [LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW]\n\"\\u1E76\" => \"U\"\n\n# Ṹ  [LATIN CAPITAL LETTER U WITH TILDE AND ACUTE]\n\"\\u1E78\" => \"U\"\n\n# Ṻ  [LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS]\n\"\\u1E7A\" => \"U\"\n\n# Ụ  [LATIN CAPITAL LETTER U WITH DOT BELOW]\n\"\\u1EE4\" => \"U\"\n\n# Ủ  [LATIN CAPITAL LETTER U WITH HOOK ABOVE]\n\"\\u1EE6\" => \"U\"\n\n# Ứ  [LATIN CAPITAL LETTER U WITH HORN AND ACUTE]\n\"\\u1EE8\" => \"U\"\n\n# Ừ  [LATIN CAPITAL LETTER U WITH HORN AND GRAVE]\n\"\\u1EEA\" => \"U\"\n\n# Ử  [LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE]\n\"\\u1EEC\" => \"U\"\n\n# Ữ  [LATIN CAPITAL LETTER U WITH HORN AND TILDE]\n\"\\u1EEE\" => \"U\"\n\n# Ự  [LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW]\n\"\\u1EF0\" => \"U\"\n\n# Ⓤ  [CIRCLED LATIN CAPITAL LETTER U]\n\"\\u24CA\" => \"U\"\n\n# Ｕ  [FULLWIDTH LATIN CAPITAL LETTER U]\n\"\\uFF35\" => \"U\"\n\n# ù  [LATIN SMALL LETTER U WITH GRAVE]\n\"\\u00F9\" => \"u\"\n\n# ú  [LATIN SMALL LETTER U WITH ACUTE]\n\"\\u00FA\" => \"u\"\n\n# û  [LATIN SMALL LETTER U WITH CIRCUMFLEX]\n\"\\u00FB\" => \"u\"\n\n# ü  [LATIN SMALL LETTER U WITH DIAERESIS]\n\"\\u00FC\" => \"u\"\n\n# ũ  [LATIN SMALL LETTER U WITH TILDE]\n\"\\u0169\" => \"u\"\n\n# ū  [LATIN SMALL LETTER U WITH MACRON]\n\"\\u016B\" => \"u\"\n\n# ŭ  [LATIN SMALL LETTER U WITH BREVE]\n\"\\u016D\" => \"u\"\n\n# ů  [LATIN SMALL LETTER U WITH RING ABOVE]\n\"\\u016F\" => \"u\"\n\n# ű  [LATIN SMALL LETTER U WITH DOUBLE ACUTE]\n\"\\u0171\" => \"u\"\n\n# ų  [LATIN SMALL LETTER U WITH OGONEK]\n\"\\u0173\" => \"u\"\n\n# ư  [LATIN SMALL LETTER U WITH HORN]\n\"\\u01B0\" => \"u\"\n\n# ǔ  [LATIN SMALL LETTER U WITH CARON]\n\"\\u01D4\" => \"u\"\n\n# ǖ  [LATIN SMALL LETTER U WITH DIAERESIS AND MACRON]\n\"\\u01D6\" => \"u\"\n\n# ǘ  [LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE]\n\"\\u01D8\" => \"u\"\n\n# ǚ  [LATIN SMALL LETTER U WITH DIAERESIS AND CARON]\n\"\\u01DA\" => \"u\"\n\n# ǜ  [LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE]\n\"\\u01DC\" => \"u\"\n\n# ȕ  [LATIN SMALL LETTER U WITH DOUBLE GRAVE]\n\"\\u0215\" => \"u\"\n\n# ȗ  [LATIN SMALL LETTER U WITH INVERTED BREVE]\n\"\\u0217\" => \"u\"\n\n# ʉ  [LATIN SMALL LETTER U BAR]\n\"\\u0289\" => \"u\"\n\n# ᵤ  [LATIN SUBSCRIPT SMALL LETTER U]\n\"\\u1D64\" => \"u\"\n\n# ᶙ  [LATIN SMALL LETTER U WITH RETROFLEX HOOK]\n\"\\u1D99\" => \"u\"\n\n# ṳ  [LATIN SMALL LETTER U WITH DIAERESIS BELOW]\n\"\\u1E73\" => \"u\"\n\n# ṵ  [LATIN SMALL LETTER U WITH TILDE BELOW]\n\"\\u1E75\" => \"u\"\n\n# ṷ  [LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW]\n\"\\u1E77\" => \"u\"\n\n# ṹ  [LATIN SMALL LETTER U WITH TILDE AND ACUTE]\n\"\\u1E79\" => \"u\"\n\n# ṻ  [LATIN SMALL LETTER U WITH MACRON AND DIAERESIS]\n\"\\u1E7B\" => \"u\"\n\n# ụ  [LATIN SMALL LETTER U WITH DOT BELOW]\n\"\\u1EE5\" => \"u\"\n\n# ủ  [LATIN SMALL LETTER U WITH HOOK ABOVE]\n\"\\u1EE7\" => \"u\"\n\n# ứ  [LATIN SMALL LETTER U WITH HORN AND ACUTE]\n\"\\u1EE9\" => \"u\"\n\n# ừ  [LATIN SMALL LETTER U WITH HORN AND GRAVE]\n\"\\u1EEB\" => \"u\"\n\n# ử  [LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE]\n\"\\u1EED\" => \"u\"\n\n# ữ  [LATIN SMALL LETTER U WITH HORN AND TILDE]\n\"\\u1EEF\" => \"u\"\n\n# ự  [LATIN SMALL LETTER U WITH HORN AND DOT BELOW]\n\"\\u1EF1\" => \"u\"\n\n# ⓤ  [CIRCLED LATIN SMALL LETTER U]\n\"\\u24E4\" => \"u\"\n\n# ｕ  [FULLWIDTH LATIN SMALL LETTER U]\n\"\\uFF55\" => \"u\"\n\n# ⒰  [PARENTHESIZED LATIN SMALL LETTER U]\n\"\\u24B0\" => \"(u)\"\n\n# ᵫ  [LATIN SMALL LETTER UE]\n\"\\u1D6B\" => \"ue\"\n\n# Ʋ  [LATIN CAPITAL LETTER V WITH HOOK]\n\"\\u01B2\" => \"V\"\n\n# Ʌ  [LATIN CAPITAL LETTER TURNED V]\n\"\\u0245\" => \"V\"\n\n# ᴠ  [LATIN LETTER SMALL CAPITAL V]\n\"\\u1D20\" => \"V\"\n\n# Ṽ  [LATIN CAPITAL LETTER V WITH TILDE]\n\"\\u1E7C\" => \"V\"\n\n# Ṿ  [LATIN CAPITAL LETTER V WITH DOT BELOW]\n\"\\u1E7E\" => \"V\"\n\n# Ỽ  [LATIN CAPITAL LETTER MIDDLE-WELSH V]\n\"\\u1EFC\" => \"V\"\n\n# Ⓥ  [CIRCLED LATIN CAPITAL LETTER V]\n\"\\u24CB\" => \"V\"\n\n# Ꝟ  [LATIN CAPITAL LETTER V WITH DIAGONAL STROKE]\n\"\\uA75E\" => \"V\"\n\n# Ꝩ  [LATIN CAPITAL LETTER VEND]\n\"\\uA768\" => \"V\"\n\n# Ｖ  [FULLWIDTH LATIN CAPITAL LETTER V]\n\"\\uFF36\" => \"V\"\n\n# ʋ  [LATIN SMALL LETTER V WITH HOOK]\n\"\\u028B\" => \"v\"\n\n# ʌ  [LATIN SMALL LETTER TURNED V]\n\"\\u028C\" => \"v\"\n\n# ᵥ  [LATIN SUBSCRIPT SMALL LETTER V]\n\"\\u1D65\" => \"v\"\n\n# ᶌ  [LATIN SMALL LETTER V WITH PALATAL HOOK]\n\"\\u1D8C\" => \"v\"\n\n# ṽ  [LATIN SMALL LETTER V WITH TILDE]\n\"\\u1E7D\" => \"v\"\n\n# ṿ  [LATIN SMALL LETTER V WITH DOT BELOW]\n\"\\u1E7F\" => \"v\"\n\n# ⓥ  [CIRCLED LATIN SMALL LETTER V]\n\"\\u24E5\" => \"v\"\n\n# ⱱ  [LATIN SMALL LETTER V WITH RIGHT HOOK]\n\"\\u2C71\" => \"v\"\n\n# ⱴ  [LATIN SMALL LETTER V WITH CURL]\n\"\\u2C74\" => \"v\"\n\n# ꝟ  [LATIN SMALL LETTER V WITH DIAGONAL STROKE]\n\"\\uA75F\" => \"v\"\n\n# ｖ  [FULLWIDTH LATIN SMALL LETTER V]\n\"\\uFF56\" => \"v\"\n\n# Ꝡ  [LATIN CAPITAL LETTER VY]\n\"\\uA760\" => \"VY\"\n\n# ⒱  [PARENTHESIZED LATIN SMALL LETTER V]\n\"\\u24B1\" => \"(v)\"\n\n# ꝡ  [LATIN SMALL LETTER VY]\n\"\\uA761\" => \"vy\"\n\n# Ŵ  [LATIN CAPITAL LETTER W WITH CIRCUMFLEX]\n\"\\u0174\" => \"W\"\n\n# Ƿ  http://en.wikipedia.org/wiki/Wynn  [LATIN CAPITAL LETTER WYNN]\n\"\\u01F7\" => \"W\"\n\n# ᴡ  [LATIN LETTER SMALL CAPITAL W]\n\"\\u1D21\" => \"W\"\n\n# Ẁ  [LATIN CAPITAL LETTER W WITH GRAVE]\n\"\\u1E80\" => \"W\"\n\n# Ẃ  [LATIN CAPITAL LETTER W WITH ACUTE]\n\"\\u1E82\" => \"W\"\n\n# Ẅ  [LATIN CAPITAL LETTER W WITH DIAERESIS]\n\"\\u1E84\" => \"W\"\n\n# Ẇ  [LATIN CAPITAL LETTER W WITH DOT ABOVE]\n\"\\u1E86\" => \"W\"\n\n# Ẉ  [LATIN CAPITAL LETTER W WITH DOT BELOW]\n\"\\u1E88\" => \"W\"\n\n# Ⓦ  [CIRCLED LATIN CAPITAL LETTER W]\n\"\\u24CC\" => \"W\"\n\n# Ⱳ  [LATIN CAPITAL LETTER W WITH HOOK]\n\"\\u2C72\" => \"W\"\n\n# Ｗ  [FULLWIDTH LATIN CAPITAL LETTER W]\n\"\\uFF37\" => \"W\"\n\n# ŵ  [LATIN SMALL LETTER W WITH CIRCUMFLEX]\n\"\\u0175\" => \"w\"\n\n# ƿ  http://en.wikipedia.org/wiki/Wynn  [LATIN LETTER WYNN]\n\"\\u01BF\" => \"w\"\n\n# ʍ  [LATIN SMALL LETTER TURNED W]\n\"\\u028D\" => \"w\"\n\n# ẁ  [LATIN SMALL LETTER W WITH GRAVE]\n\"\\u1E81\" => \"w\"\n\n# ẃ  [LATIN SMALL LETTER W WITH ACUTE]\n\"\\u1E83\" => \"w\"\n\n# ẅ  [LATIN SMALL LETTER W WITH DIAERESIS]\n\"\\u1E85\" => \"w\"\n\n# ẇ  [LATIN SMALL LETTER W WITH DOT ABOVE]\n\"\\u1E87\" => \"w\"\n\n# ẉ  [LATIN SMALL LETTER W WITH DOT BELOW]\n\"\\u1E89\" => \"w\"\n\n# ẘ  [LATIN SMALL LETTER W WITH RING ABOVE]\n\"\\u1E98\" => \"w\"\n\n# ⓦ  [CIRCLED LATIN SMALL LETTER W]\n\"\\u24E6\" => \"w\"\n\n# ⱳ  [LATIN SMALL LETTER W WITH HOOK]\n\"\\u2C73\" => \"w\"\n\n# ｗ  [FULLWIDTH LATIN SMALL LETTER W]\n\"\\uFF57\" => \"w\"\n\n# ⒲  [PARENTHESIZED LATIN SMALL LETTER W]\n\"\\u24B2\" => \"(w)\"\n\n# Ẋ  [LATIN CAPITAL LETTER X WITH DOT ABOVE]\n\"\\u1E8A\" => \"X\"\n\n# Ẍ  [LATIN CAPITAL LETTER X WITH DIAERESIS]\n\"\\u1E8C\" => \"X\"\n\n# Ⓧ  [CIRCLED LATIN CAPITAL LETTER X]\n\"\\u24CD\" => \"X\"\n\n# Ｘ  [FULLWIDTH LATIN CAPITAL LETTER X]\n\"\\uFF38\" => \"X\"\n\n# ᶍ  [LATIN SMALL LETTER X WITH PALATAL HOOK]\n\"\\u1D8D\" => \"x\"\n\n# ẋ  [LATIN SMALL LETTER X WITH DOT ABOVE]\n\"\\u1E8B\" => \"x\"\n\n# ẍ  [LATIN SMALL LETTER X WITH DIAERESIS]\n\"\\u1E8D\" => \"x\"\n\n# ₓ  [LATIN SUBSCRIPT SMALL LETTER X]\n\"\\u2093\" => \"x\"\n\n# ⓧ  [CIRCLED LATIN SMALL LETTER X]\n\"\\u24E7\" => \"x\"\n\n# ｘ  [FULLWIDTH LATIN SMALL LETTER X]\n\"\\uFF58\" => \"x\"\n\n# ⒳  [PARENTHESIZED LATIN SMALL LETTER X]\n\"\\u24B3\" => \"(x)\"\n\n# Ý  [LATIN CAPITAL LETTER Y WITH ACUTE]\n\"\\u00DD\" => \"Y\"\n\n# Ŷ  [LATIN CAPITAL LETTER Y WITH CIRCUMFLEX]\n\"\\u0176\" => \"Y\"\n\n# Ÿ  [LATIN CAPITAL LETTER Y WITH DIAERESIS]\n\"\\u0178\" => \"Y\"\n\n# Ƴ  [LATIN CAPITAL LETTER Y WITH HOOK]\n\"\\u01B3\" => \"Y\"\n\n# Ȳ  [LATIN CAPITAL LETTER Y WITH MACRON]\n\"\\u0232\" => \"Y\"\n\n# Ɏ  [LATIN CAPITAL LETTER Y WITH STROKE]\n\"\\u024E\" => \"Y\"\n\n# ʏ  [LATIN LETTER SMALL CAPITAL Y]\n\"\\u028F\" => \"Y\"\n\n# Ẏ  [LATIN CAPITAL LETTER Y WITH DOT ABOVE]\n\"\\u1E8E\" => \"Y\"\n\n# Ỳ  [LATIN CAPITAL LETTER Y WITH GRAVE]\n\"\\u1EF2\" => \"Y\"\n\n# Ỵ  [LATIN CAPITAL LETTER Y WITH DOT BELOW]\n\"\\u1EF4\" => \"Y\"\n\n# Ỷ  [LATIN CAPITAL LETTER Y WITH HOOK ABOVE]\n\"\\u1EF6\" => \"Y\"\n\n# Ỹ  [LATIN CAPITAL LETTER Y WITH TILDE]\n\"\\u1EF8\" => \"Y\"\n\n# Ỿ  [LATIN CAPITAL LETTER Y WITH LOOP]\n\"\\u1EFE\" => \"Y\"\n\n# Ⓨ  [CIRCLED LATIN CAPITAL LETTER Y]\n\"\\u24CE\" => \"Y\"\n\n# Ｙ  [FULLWIDTH LATIN CAPITAL LETTER Y]\n\"\\uFF39\" => \"Y\"\n\n# ý  [LATIN SMALL LETTER Y WITH ACUTE]\n\"\\u00FD\" => \"y\"\n\n# ÿ  [LATIN SMALL LETTER Y WITH DIAERESIS]\n\"\\u00FF\" => \"y\"\n\n# ŷ  [LATIN SMALL LETTER Y WITH CIRCUMFLEX]\n\"\\u0177\" => \"y\"\n\n# ƴ  [LATIN SMALL LETTER Y WITH HOOK]\n\"\\u01B4\" => \"y\"\n\n# ȳ  [LATIN SMALL LETTER Y WITH MACRON]\n\"\\u0233\" => \"y\"\n\n# ɏ  [LATIN SMALL LETTER Y WITH STROKE]\n\"\\u024F\" => \"y\"\n\n# ʎ  [LATIN SMALL LETTER TURNED Y]\n\"\\u028E\" => \"y\"\n\n# ẏ  [LATIN SMALL LETTER Y WITH DOT ABOVE]\n\"\\u1E8F\" => \"y\"\n\n# ẙ  [LATIN SMALL LETTER Y WITH RING ABOVE]\n\"\\u1E99\" => \"y\"\n\n# ỳ  [LATIN SMALL LETTER Y WITH GRAVE]\n\"\\u1EF3\" => \"y\"\n\n# ỵ  [LATIN SMALL LETTER Y WITH DOT BELOW]\n\"\\u1EF5\" => \"y\"\n\n# ỷ  [LATIN SMALL LETTER Y WITH HOOK ABOVE]\n\"\\u1EF7\" => \"y\"\n\n# ỹ  [LATIN SMALL LETTER Y WITH TILDE]\n\"\\u1EF9\" => \"y\"\n\n# ỿ  [LATIN SMALL LETTER Y WITH LOOP]\n\"\\u1EFF\" => \"y\"\n\n# ⓨ  [CIRCLED LATIN SMALL LETTER Y]\n\"\\u24E8\" => \"y\"\n\n# ｙ  [FULLWIDTH LATIN SMALL LETTER Y]\n\"\\uFF59\" => \"y\"\n\n# ⒴  [PARENTHESIZED LATIN SMALL LETTER Y]\n\"\\u24B4\" => \"(y)\"\n\n# Ź  [LATIN CAPITAL LETTER Z WITH ACUTE]\n\"\\u0179\" => \"Z\"\n\n# Ż  [LATIN CAPITAL LETTER Z WITH DOT ABOVE]\n\"\\u017B\" => \"Z\"\n\n# Ž  [LATIN CAPITAL LETTER Z WITH CARON]\n\"\\u017D\" => \"Z\"\n\n# Ƶ  [LATIN CAPITAL LETTER Z WITH STROKE]\n\"\\u01B5\" => \"Z\"\n\n# Ȝ  http://en.wikipedia.org/wiki/Yogh  [LATIN CAPITAL LETTER YOGH]\n\"\\u021C\" => \"Z\"\n\n# Ȥ  [LATIN CAPITAL LETTER Z WITH HOOK]\n\"\\u0224\" => \"Z\"\n\n# ᴢ  [LATIN LETTER SMALL CAPITAL Z]\n\"\\u1D22\" => \"Z\"\n\n# Ẑ  [LATIN CAPITAL LETTER Z WITH CIRCUMFLEX]\n\"\\u1E90\" => \"Z\"\n\n# Ẓ  [LATIN CAPITAL LETTER Z WITH DOT BELOW]\n\"\\u1E92\" => \"Z\"\n\n# Ẕ  [LATIN CAPITAL LETTER Z WITH LINE BELOW]\n\"\\u1E94\" => \"Z\"\n\n# Ⓩ  [CIRCLED LATIN CAPITAL LETTER Z]\n\"\\u24CF\" => \"Z\"\n\n# Ⱬ  [LATIN CAPITAL LETTER Z WITH DESCENDER]\n\"\\u2C6B\" => \"Z\"\n\n# Ꝣ  [LATIN CAPITAL LETTER VISIGOTHIC Z]\n\"\\uA762\" => \"Z\"\n\n# Ｚ  [FULLWIDTH LATIN CAPITAL LETTER Z]\n\"\\uFF3A\" => \"Z\"\n\n# ź  [LATIN SMALL LETTER Z WITH ACUTE]\n\"\\u017A\" => \"z\"\n\n# ż  [LATIN SMALL LETTER Z WITH DOT ABOVE]\n\"\\u017C\" => \"z\"\n\n# ž  [LATIN SMALL LETTER Z WITH CARON]\n\"\\u017E\" => \"z\"\n\n# ƶ  [LATIN SMALL LETTER Z WITH STROKE]\n\"\\u01B6\" => \"z\"\n\n# ȝ  http://en.wikipedia.org/wiki/Yogh  [LATIN SMALL LETTER YOGH]\n\"\\u021D\" => \"z\"\n\n# ȥ  [LATIN SMALL LETTER Z WITH HOOK]\n\"\\u0225\" => \"z\"\n\n# ɀ  [LATIN SMALL LETTER Z WITH SWASH TAIL]\n\"\\u0240\" => \"z\"\n\n# ʐ  [LATIN SMALL LETTER Z WITH RETROFLEX HOOK]\n\"\\u0290\" => \"z\"\n\n# ʑ  [LATIN SMALL LETTER Z WITH CURL]\n\"\\u0291\" => \"z\"\n\n# ᵶ  [LATIN SMALL LETTER Z WITH MIDDLE TILDE]\n\"\\u1D76\" => \"z\"\n\n# ᶎ  [LATIN SMALL LETTER Z WITH PALATAL HOOK]\n\"\\u1D8E\" => \"z\"\n\n# ẑ  [LATIN SMALL LETTER Z WITH CIRCUMFLEX]\n\"\\u1E91\" => \"z\"\n\n# ẓ  [LATIN SMALL LETTER Z WITH DOT BELOW]\n\"\\u1E93\" => \"z\"\n\n# ẕ  [LATIN SMALL LETTER Z WITH LINE BELOW]\n\"\\u1E95\" => \"z\"\n\n# ⓩ  [CIRCLED LATIN SMALL LETTER Z]\n\"\\u24E9\" => \"z\"\n\n# ⱬ  [LATIN SMALL LETTER Z WITH DESCENDER]\n\"\\u2C6C\" => \"z\"\n\n# ꝣ  [LATIN SMALL LETTER VISIGOTHIC Z]\n\"\\uA763\" => \"z\"\n\n# ｚ  [FULLWIDTH LATIN SMALL LETTER Z]\n\"\\uFF5A\" => \"z\"\n\n# ⒵  [PARENTHESIZED LATIN SMALL LETTER Z]\n\"\\u24B5\" => \"(z)\"\n\n# ⁰  [SUPERSCRIPT ZERO]\n\"\\u2070\" => \"0\"\n\n# ₀  [SUBSCRIPT ZERO]\n\"\\u2080\" => \"0\"\n\n# ⓪  [CIRCLED DIGIT ZERO]\n\"\\u24EA\" => \"0\"\n\n# ⓿  [NEGATIVE CIRCLED DIGIT ZERO]\n\"\\u24FF\" => \"0\"\n\n# ０  [FULLWIDTH DIGIT ZERO]\n\"\\uFF10\" => \"0\"\n\n# ¹  [SUPERSCRIPT ONE]\n\"\\u00B9\" => \"1\"\n\n# ₁  [SUBSCRIPT ONE]\n\"\\u2081\" => \"1\"\n\n# ①  [CIRCLED DIGIT ONE]\n\"\\u2460\" => \"1\"\n\n# ⓵  [DOUBLE CIRCLED DIGIT ONE]\n\"\\u24F5\" => \"1\"\n\n# ❶  [DINGBAT NEGATIVE CIRCLED DIGIT ONE]\n\"\\u2776\" => \"1\"\n\n# ➀  [DINGBAT CIRCLED SANS-SERIF DIGIT ONE]\n\"\\u2780\" => \"1\"\n\n# ➊  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ONE]\n\"\\u278A\" => \"1\"\n\n# １  [FULLWIDTH DIGIT ONE]\n\"\\uFF11\" => \"1\"\n\n# ⒈  [DIGIT ONE FULL STOP]\n\"\\u2488\" => \"1.\"\n\n# ⑴  [PARENTHESIZED DIGIT ONE]\n\"\\u2474\" => \"(1)\"\n\n# ²  [SUPERSCRIPT TWO]\n\"\\u00B2\" => \"2\"\n\n# ₂  [SUBSCRIPT TWO]\n\"\\u2082\" => \"2\"\n\n# ②  [CIRCLED DIGIT TWO]\n\"\\u2461\" => \"2\"\n\n# ⓶  [DOUBLE CIRCLED DIGIT TWO]\n\"\\u24F6\" => \"2\"\n\n# ❷  [DINGBAT NEGATIVE CIRCLED DIGIT TWO]\n\"\\u2777\" => \"2\"\n\n# ➁  [DINGBAT CIRCLED SANS-SERIF DIGIT TWO]\n\"\\u2781\" => \"2\"\n\n# ➋  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT TWO]\n\"\\u278B\" => \"2\"\n\n# ２  [FULLWIDTH DIGIT TWO]\n\"\\uFF12\" => \"2\"\n\n# ⒉  [DIGIT TWO FULL STOP]\n\"\\u2489\" => \"2.\"\n\n# ⑵  [PARENTHESIZED DIGIT TWO]\n\"\\u2475\" => \"(2)\"\n\n# ³  [SUPERSCRIPT THREE]\n\"\\u00B3\" => \"3\"\n\n# ₃  [SUBSCRIPT THREE]\n\"\\u2083\" => \"3\"\n\n# ③  [CIRCLED DIGIT THREE]\n\"\\u2462\" => \"3\"\n\n# ⓷  [DOUBLE CIRCLED DIGIT THREE]\n\"\\u24F7\" => \"3\"\n\n# ❸  [DINGBAT NEGATIVE CIRCLED DIGIT THREE]\n\"\\u2778\" => \"3\"\n\n# ➂  [DINGBAT CIRCLED SANS-SERIF DIGIT THREE]\n\"\\u2782\" => \"3\"\n\n# ➌  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT THREE]\n\"\\u278C\" => \"3\"\n\n# ３  [FULLWIDTH DIGIT THREE]\n\"\\uFF13\" => \"3\"\n\n# ⒊  [DIGIT THREE FULL STOP]\n\"\\u248A\" => \"3.\"\n\n# ⑶  [PARENTHESIZED DIGIT THREE]\n\"\\u2476\" => \"(3)\"\n\n# ⁴  [SUPERSCRIPT FOUR]\n\"\\u2074\" => \"4\"\n\n# ₄  [SUBSCRIPT FOUR]\n\"\\u2084\" => \"4\"\n\n# ④  [CIRCLED DIGIT FOUR]\n\"\\u2463\" => \"4\"\n\n# ⓸  [DOUBLE CIRCLED DIGIT FOUR]\n\"\\u24F8\" => \"4\"\n\n# ❹  [DINGBAT NEGATIVE CIRCLED DIGIT FOUR]\n\"\\u2779\" => \"4\"\n\n# ➃  [DINGBAT CIRCLED SANS-SERIF DIGIT FOUR]\n\"\\u2783\" => \"4\"\n\n# ➍  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FOUR]\n\"\\u278D\" => \"4\"\n\n# ４  [FULLWIDTH DIGIT FOUR]\n\"\\uFF14\" => \"4\"\n\n# ⒋  [DIGIT FOUR FULL STOP]\n\"\\u248B\" => \"4.\"\n\n# ⑷  [PARENTHESIZED DIGIT FOUR]\n\"\\u2477\" => \"(4)\"\n\n# ⁵  [SUPERSCRIPT FIVE]\n\"\\u2075\" => \"5\"\n\n# ₅  [SUBSCRIPT FIVE]\n\"\\u2085\" => \"5\"\n\n# ⑤  [CIRCLED DIGIT FIVE]\n\"\\u2464\" => \"5\"\n\n# ⓹  [DOUBLE CIRCLED DIGIT FIVE]\n\"\\u24F9\" => \"5\"\n\n# ❺  [DINGBAT NEGATIVE CIRCLED DIGIT FIVE]\n\"\\u277A\" => \"5\"\n\n# ➄  [DINGBAT CIRCLED SANS-SERIF DIGIT FIVE]\n\"\\u2784\" => \"5\"\n\n# ➎  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FIVE]\n\"\\u278E\" => \"5\"\n\n# ５  [FULLWIDTH DIGIT FIVE]\n\"\\uFF15\" => \"5\"\n\n# ⒌  [DIGIT FIVE FULL STOP]\n\"\\u248C\" => \"5.\"\n\n# ⑸  [PARENTHESIZED DIGIT FIVE]\n\"\\u2478\" => \"(5)\"\n\n# ⁶  [SUPERSCRIPT SIX]\n\"\\u2076\" => \"6\"\n\n# ₆  [SUBSCRIPT SIX]\n\"\\u2086\" => \"6\"\n\n# ⑥  [CIRCLED DIGIT SIX]\n\"\\u2465\" => \"6\"\n\n# ⓺  [DOUBLE CIRCLED DIGIT SIX]\n\"\\u24FA\" => \"6\"\n\n# ❻  [DINGBAT NEGATIVE CIRCLED DIGIT SIX]\n\"\\u277B\" => \"6\"\n\n# ➅  [DINGBAT CIRCLED SANS-SERIF DIGIT SIX]\n\"\\u2785\" => \"6\"\n\n# ➏  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SIX]\n\"\\u278F\" => \"6\"\n\n# ６  [FULLWIDTH DIGIT SIX]\n\"\\uFF16\" => \"6\"\n\n# ⒍  [DIGIT SIX FULL STOP]\n\"\\u248D\" => \"6.\"\n\n# ⑹  [PARENTHESIZED DIGIT SIX]\n\"\\u2479\" => \"(6)\"\n\n# ⁷  [SUPERSCRIPT SEVEN]\n\"\\u2077\" => \"7\"\n\n# ₇  [SUBSCRIPT SEVEN]\n\"\\u2087\" => \"7\"\n\n# ⑦  [CIRCLED DIGIT SEVEN]\n\"\\u2466\" => \"7\"\n\n# ⓻  [DOUBLE CIRCLED DIGIT SEVEN]\n\"\\u24FB\" => \"7\"\n\n# ❼  [DINGBAT NEGATIVE CIRCLED DIGIT SEVEN]\n\"\\u277C\" => \"7\"\n\n# ➆  [DINGBAT CIRCLED SANS-SERIF DIGIT SEVEN]\n\"\\u2786\" => \"7\"\n\n# ➐  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN]\n\"\\u2790\" => \"7\"\n\n# ７  [FULLWIDTH DIGIT SEVEN]\n\"\\uFF17\" => \"7\"\n\n# ⒎  [DIGIT SEVEN FULL STOP]\n\"\\u248E\" => \"7.\"\n\n# ⑺  [PARENTHESIZED DIGIT SEVEN]\n\"\\u247A\" => \"(7)\"\n\n# ⁸  [SUPERSCRIPT EIGHT]\n\"\\u2078\" => \"8\"\n\n# ₈  [SUBSCRIPT EIGHT]\n\"\\u2088\" => \"8\"\n\n# ⑧  [CIRCLED DIGIT EIGHT]\n\"\\u2467\" => \"8\"\n\n# ⓼  [DOUBLE CIRCLED DIGIT EIGHT]\n\"\\u24FC\" => \"8\"\n\n# ❽  [DINGBAT NEGATIVE CIRCLED DIGIT EIGHT]\n\"\\u277D\" => \"8\"\n\n# ➇  [DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT]\n\"\\u2787\" => \"8\"\n\n# ➑  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT EIGHT]\n\"\\u2791\" => \"8\"\n\n# ８  [FULLWIDTH DIGIT EIGHT]\n\"\\uFF18\" => \"8\"\n\n# ⒏  [DIGIT EIGHT FULL STOP]\n\"\\u248F\" => \"8.\"\n\n# ⑻  [PARENTHESIZED DIGIT EIGHT]\n\"\\u247B\" => \"(8)\"\n\n# ⁹  [SUPERSCRIPT NINE]\n\"\\u2079\" => \"9\"\n\n# ₉  [SUBSCRIPT NINE]\n\"\\u2089\" => \"9\"\n\n# ⑨  [CIRCLED DIGIT NINE]\n\"\\u2468\" => \"9\"\n\n# ⓽  [DOUBLE CIRCLED DIGIT NINE]\n\"\\u24FD\" => \"9\"\n\n# ❾  [DINGBAT NEGATIVE CIRCLED DIGIT NINE]\n\"\\u277E\" => \"9\"\n\n# ➈  [DINGBAT CIRCLED SANS-SERIF DIGIT NINE]\n\"\\u2788\" => \"9\"\n\n# ➒  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT NINE]\n\"\\u2792\" => \"9\"\n\n# ９  [FULLWIDTH DIGIT NINE]\n\"\\uFF19\" => \"9\"\n\n# ⒐  [DIGIT NINE FULL STOP]\n\"\\u2490\" => \"9.\"\n\n# ⑼  [PARENTHESIZED DIGIT NINE]\n\"\\u247C\" => \"(9)\"\n\n# ⑩  [CIRCLED NUMBER TEN]\n\"\\u2469\" => \"10\"\n\n# ⓾  [DOUBLE CIRCLED NUMBER TEN]\n\"\\u24FE\" => \"10\"\n\n# ❿  [DINGBAT NEGATIVE CIRCLED NUMBER TEN]\n\"\\u277F\" => \"10\"\n\n# ➉  [DINGBAT CIRCLED SANS-SERIF NUMBER TEN]\n\"\\u2789\" => \"10\"\n\n# ➓  [DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN]\n\"\\u2793\" => \"10\"\n\n# ⒑  [NUMBER TEN FULL STOP]\n\"\\u2491\" => \"10.\"\n\n# ⑽  [PARENTHESIZED NUMBER TEN]\n\"\\u247D\" => \"(10)\"\n\n# ⑪  [CIRCLED NUMBER ELEVEN]\n\"\\u246A\" => \"11\"\n\n# ⓫  [NEGATIVE CIRCLED NUMBER ELEVEN]\n\"\\u24EB\" => \"11\"\n\n# ⒒  [NUMBER ELEVEN FULL STOP]\n\"\\u2492\" => \"11.\"\n\n# ⑾  [PARENTHESIZED NUMBER ELEVEN]\n\"\\u247E\" => \"(11)\"\n\n# ⑫  [CIRCLED NUMBER TWELVE]\n\"\\u246B\" => \"12\"\n\n# ⓬  [NEGATIVE CIRCLED NUMBER TWELVE]\n\"\\u24EC\" => \"12\"\n\n# ⒓  [NUMBER TWELVE FULL STOP]\n\"\\u2493\" => \"12.\"\n\n# ⑿  [PARENTHESIZED NUMBER TWELVE]\n\"\\u247F\" => \"(12)\"\n\n# ⑬  [CIRCLED NUMBER THIRTEEN]\n\"\\u246C\" => \"13\"\n\n# ⓭  [NEGATIVE CIRCLED NUMBER THIRTEEN]\n\"\\u24ED\" => \"13\"\n\n# ⒔  [NUMBER THIRTEEN FULL STOP]\n\"\\u2494\" => \"13.\"\n\n# ⒀  [PARENTHESIZED NUMBER THIRTEEN]\n\"\\u2480\" => \"(13)\"\n\n# ⑭  [CIRCLED NUMBER FOURTEEN]\n\"\\u246D\" => \"14\"\n\n# ⓮  [NEGATIVE CIRCLED NUMBER FOURTEEN]\n\"\\u24EE\" => \"14\"\n\n# ⒕  [NUMBER FOURTEEN FULL STOP]\n\"\\u2495\" => \"14.\"\n\n# ⒁  [PARENTHESIZED NUMBER FOURTEEN]\n\"\\u2481\" => \"(14)\"\n\n# ⑮  [CIRCLED NUMBER FIFTEEN]\n\"\\u246E\" => \"15\"\n\n# ⓯  [NEGATIVE CIRCLED NUMBER FIFTEEN]\n\"\\u24EF\" => \"15\"\n\n# ⒖  [NUMBER FIFTEEN FULL STOP]\n\"\\u2496\" => \"15.\"\n\n# ⒂  [PARENTHESIZED NUMBER FIFTEEN]\n\"\\u2482\" => \"(15)\"\n\n# ⑯  [CIRCLED NUMBER SIXTEEN]\n\"\\u246F\" => \"16\"\n\n# ⓰  [NEGATIVE CIRCLED NUMBER SIXTEEN]\n\"\\u24F0\" => \"16\"\n\n# ⒗  [NUMBER SIXTEEN FULL STOP]\n\"\\u2497\" => \"16.\"\n\n# ⒃  [PARENTHESIZED NUMBER SIXTEEN]\n\"\\u2483\" => \"(16)\"\n\n# ⑰  [CIRCLED NUMBER SEVENTEEN]\n\"\\u2470\" => \"17\"\n\n# ⓱  [NEGATIVE CIRCLED NUMBER SEVENTEEN]\n\"\\u24F1\" => \"17\"\n\n# ⒘  [NUMBER SEVENTEEN FULL STOP]\n\"\\u2498\" => \"17.\"\n\n# ⒄  [PARENTHESIZED NUMBER SEVENTEEN]\n\"\\u2484\" => \"(17)\"\n\n# ⑱  [CIRCLED NUMBER EIGHTEEN]\n\"\\u2471\" => \"18\"\n\n# ⓲  [NEGATIVE CIRCLED NUMBER EIGHTEEN]\n\"\\u24F2\" => \"18\"\n\n# ⒙  [NUMBER EIGHTEEN FULL STOP]\n\"\\u2499\" => \"18.\"\n\n# ⒅  [PARENTHESIZED NUMBER EIGHTEEN]\n\"\\u2485\" => \"(18)\"\n\n# ⑲  [CIRCLED NUMBER NINETEEN]\n\"\\u2472\" => \"19\"\n\n# ⓳  [NEGATIVE CIRCLED NUMBER NINETEEN]\n\"\\u24F3\" => \"19\"\n\n# ⒚  [NUMBER NINETEEN FULL STOP]\n\"\\u249A\" => \"19.\"\n\n# ⒆  [PARENTHESIZED NUMBER NINETEEN]\n\"\\u2486\" => \"(19)\"\n\n# ⑳  [CIRCLED NUMBER TWENTY]\n\"\\u2473\" => \"20\"\n\n# ⓴  [NEGATIVE CIRCLED NUMBER TWENTY]\n\"\\u24F4\" => \"20\"\n\n# ⒛  [NUMBER TWENTY FULL STOP]\n\"\\u249B\" => \"20.\"\n\n# ⒇  [PARENTHESIZED NUMBER TWENTY]\n\"\\u2487\" => \"(20)\"\n\n# «  [LEFT-POINTING DOUBLE ANGLE QUOTATION MARK]\n\"\\u00AB\" => \"\\\"\"\n\n# »  [RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK]\n\"\\u00BB\" => \"\\\"\"\n\n# “  [LEFT DOUBLE QUOTATION MARK]\n\"\\u201C\" => \"\\\"\"\n\n# ”  [RIGHT DOUBLE QUOTATION MARK]\n\"\\u201D\" => \"\\\"\"\n\n# „  [DOUBLE LOW-9 QUOTATION MARK]\n\"\\u201E\" => \"\\\"\"\n\n# ″  [DOUBLE PRIME]\n\"\\u2033\" => \"\\\"\"\n\n# ‶  [REVERSED DOUBLE PRIME]\n\"\\u2036\" => \"\\\"\"\n\n# ❝  [HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT]\n\"\\u275D\" => \"\\\"\"\n\n# ❞  [HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT]\n\"\\u275E\" => \"\\\"\"\n\n# ❮  [HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT]\n\"\\u276E\" => \"\\\"\"\n\n# ❯  [HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT]\n\"\\u276F\" => \"\\\"\"\n\n# ＂  [FULLWIDTH QUOTATION MARK]\n\"\\uFF02\" => \"\\\"\"\n\n# ‘  [LEFT SINGLE QUOTATION MARK]\n\"\\u2018\" => \"\\'\"\n\n# ’  [RIGHT SINGLE QUOTATION MARK]\n\"\\u2019\" => \"\\'\"\n\n# ‚  [SINGLE LOW-9 QUOTATION MARK]\n\"\\u201A\" => \"\\'\"\n\n# ‛  [SINGLE HIGH-REVERSED-9 QUOTATION MARK]\n\"\\u201B\" => \"\\'\"\n\n# ′  [PRIME]\n\"\\u2032\" => \"\\'\"\n\n# ‵  [REVERSED PRIME]\n\"\\u2035\" => \"\\'\"\n\n# ‹  [SINGLE LEFT-POINTING ANGLE QUOTATION MARK]\n\"\\u2039\" => \"\\'\"\n\n# ›  [SINGLE RIGHT-POINTING ANGLE QUOTATION MARK]\n\"\\u203A\" => \"\\'\"\n\n# ❛  [HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT]\n\"\\u275B\" => \"\\'\"\n\n# ❜  [HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT]\n\"\\u275C\" => \"\\'\"\n\n# ＇  [FULLWIDTH APOSTROPHE]\n\"\\uFF07\" => \"\\'\"\n\n# ‐  [HYPHEN]\n\"\\u2010\" => \"-\"\n\n# ‑  [NON-BREAKING HYPHEN]\n\"\\u2011\" => \"-\"\n\n# ‒  [FIGURE DASH]\n\"\\u2012\" => \"-\"\n\n# –  [EN DASH]\n\"\\u2013\" => \"-\"\n\n# —  [EM DASH]\n\"\\u2014\" => \"-\"\n\n# ⁻  [SUPERSCRIPT MINUS]\n\"\\u207B\" => \"-\"\n\n# ₋  [SUBSCRIPT MINUS]\n\"\\u208B\" => \"-\"\n\n# －  [FULLWIDTH HYPHEN-MINUS]\n\"\\uFF0D\" => \"-\"\n\n# ⁅  [LEFT SQUARE BRACKET WITH QUILL]\n\"\\u2045\" => \"[\"\n\n# ❲  [LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT]\n\"\\u2772\" => \"[\"\n\n# ［  [FULLWIDTH LEFT SQUARE BRACKET]\n\"\\uFF3B\" => \"[\"\n\n# ⁆  [RIGHT SQUARE BRACKET WITH QUILL]\n\"\\u2046\" => \"]\"\n\n# ❳  [LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT]\n\"\\u2773\" => \"]\"\n\n# ］  [FULLWIDTH RIGHT SQUARE BRACKET]\n\"\\uFF3D\" => \"]\"\n\n# ⁽  [SUPERSCRIPT LEFT PARENTHESIS]\n\"\\u207D\" => \"(\"\n\n# ₍  [SUBSCRIPT LEFT PARENTHESIS]\n\"\\u208D\" => \"(\"\n\n# ❨  [MEDIUM LEFT PARENTHESIS ORNAMENT]\n\"\\u2768\" => \"(\"\n\n# ❪  [MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT]\n\"\\u276A\" => \"(\"\n\n# （  [FULLWIDTH LEFT PARENTHESIS]\n\"\\uFF08\" => \"(\"\n\n# ⸨  [LEFT DOUBLE PARENTHESIS]\n\"\\u2E28\" => \"((\"\n\n# ⁾  [SUPERSCRIPT RIGHT PARENTHESIS]\n\"\\u207E\" => \")\"\n\n# ₎  [SUBSCRIPT RIGHT PARENTHESIS]\n\"\\u208E\" => \")\"\n\n# ❩  [MEDIUM RIGHT PARENTHESIS ORNAMENT]\n\"\\u2769\" => \")\"\n\n# ❫  [MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT]\n\"\\u276B\" => \")\"\n\n# ）  [FULLWIDTH RIGHT PARENTHESIS]\n\"\\uFF09\" => \")\"\n\n# ⸩  [RIGHT DOUBLE PARENTHESIS]\n\"\\u2E29\" => \"))\"\n\n# ❬  [MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u276C\" => \"<\"\n\n# ❰  [HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u2770\" => \"<\"\n\n# ＜  [FULLWIDTH LESS-THAN SIGN]\n\"\\uFF1C\" => \"<\"\n\n# ❭  [MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u276D\" => \">\"\n\n# ❱  [HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u2771\" => \">\"\n\n# ＞  [FULLWIDTH GREATER-THAN SIGN]\n\"\\uFF1E\" => \">\"\n\n# ❴  [MEDIUM LEFT CURLY BRACKET ORNAMENT]\n\"\\u2774\" => \"{\"\n\n# ｛  [FULLWIDTH LEFT CURLY BRACKET]\n\"\\uFF5B\" => \"{\"\n\n# ❵  [MEDIUM RIGHT CURLY BRACKET ORNAMENT]\n\"\\u2775\" => \"}\"\n\n# ｝  [FULLWIDTH RIGHT CURLY BRACKET]\n\"\\uFF5D\" => \"}\"\n\n# ⁺  [SUPERSCRIPT PLUS SIGN]\n\"\\u207A\" => \"+\"\n\n# ₊  [SUBSCRIPT PLUS SIGN]\n\"\\u208A\" => \"+\"\n\n# ＋  [FULLWIDTH PLUS SIGN]\n\"\\uFF0B\" => \"+\"\n\n# ⁼  [SUPERSCRIPT EQUALS SIGN]\n\"\\u207C\" => \"=\"\n\n# ₌  [SUBSCRIPT EQUALS SIGN]\n\"\\u208C\" => \"=\"\n\n# ＝  [FULLWIDTH EQUALS SIGN]\n\"\\uFF1D\" => \"=\"\n\n# ！  [FULLWIDTH EXCLAMATION MARK]\n\"\\uFF01\" => \"!\"\n\n# ‼  [DOUBLE EXCLAMATION MARK]\n\"\\u203C\" => \"!!\"\n\n# ⁉  [EXCLAMATION QUESTION MARK]\n\"\\u2049\" => \"!?\"\n\n# ＃  [FULLWIDTH NUMBER SIGN]\n\"\\uFF03\" => \"#\"\n\n# ＄  [FULLWIDTH DOLLAR SIGN]\n\"\\uFF04\" => \"$\"\n\n# ⁒  [COMMERCIAL MINUS SIGN]\n\"\\u2052\" => \"%\"\n\n# ％  [FULLWIDTH PERCENT SIGN]\n\"\\uFF05\" => \"%\"\n\n# ＆  [FULLWIDTH AMPERSAND]\n\"\\uFF06\" => \"&\"\n\n# ⁎  [LOW ASTERISK]\n\"\\u204E\" => \"*\"\n\n# ＊  [FULLWIDTH ASTERISK]\n\"\\uFF0A\" => \"*\"\n\n# ，  [FULLWIDTH COMMA]\n\"\\uFF0C\" => \",\"\n\n# ．  [FULLWIDTH FULL STOP]\n\"\\uFF0E\" => \".\"\n\n# ⁄  [FRACTION SLASH]\n\"\\u2044\" => \"/\"\n\n# ／  [FULLWIDTH SOLIDUS]\n\"\\uFF0F\" => \"/\"\n\n# ：  [FULLWIDTH COLON]\n\"\\uFF1A\" => \":\"\n\n# ⁏  [REVERSED SEMICOLON]\n\"\\u204F\" => \";\"\n\n# ；  [FULLWIDTH SEMICOLON]\n\"\\uFF1B\" => \";\"\n\n# ？  [FULLWIDTH QUESTION MARK]\n\"\\uFF1F\" => \"?\"\n\n# ⁇  [DOUBLE QUESTION MARK]\n\"\\u2047\" => \"??\"\n\n# ⁈  [QUESTION EXCLAMATION MARK]\n\"\\u2048\" => \"?!\"\n\n# ＠  [FULLWIDTH COMMERCIAL AT]\n\"\\uFF20\" => \"@\"\n\n# ＼  [FULLWIDTH REVERSE SOLIDUS]\n\"\\uFF3C\" => \"\\\\\"\n\n# ‸  [CARET]\n\"\\u2038\" => \"^\"\n\n# ＾  [FULLWIDTH CIRCUMFLEX ACCENT]\n\"\\uFF3E\" => \"^\"\n\n# ＿  [FULLWIDTH LOW LINE]\n\"\\uFF3F\" => \"_\"\n\n# ⁓  [SWUNG DASH]\n\"\\u2053\" => \"~\"\n\n# ～  [FULLWIDTH TILDE]\n\"\\uFF5E\" => \"~\"\n\n################################################################\n# Below is the Perl script used to generate the above mappings #\n# from ASCIIFoldingFilter.java:                                #\n################################################################\n#\n# #!/usr/bin/perl\n#\n# use warnings;\n# use strict;\n# \n# my @source_chars = ();\n# my @source_char_descriptions = ();\n# my $target = '';\n# \n# while (<>) {\n#   if (/case\\s+'(\\\\u[A-F0-9]+)':\\s*\\/\\/\\s*(.*)/i) {\n#     push @source_chars, $1;\n#\t  push @source_char_descriptions, $2;\n#\t  next;\n#   }\n#   if (/output\\[[^\\]]+\\]\\s*=\\s*'(\\\\'|\\\\\\\\|.)'/) {\n#     $target .= $1;\n#     next;\n#   }\n#   if (/break;/) {\n#     $target = \"\\\\\\\"\" if ($target eq '\"');\n#     for my $source_char_num (0..$#source_chars) {\n#\t    print \"# $source_char_descriptions[$source_char_num]\\n\";\n#\t    print \"\\\"$source_chars[$source_char_num]\\\" => \\\"$target\\\"\\n\\n\";\n#\t  }\n#\t  @source_chars = ();\n#\t  @source_char_descriptions = ();\n#\t  $target = '';\n#   }\n# }\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/mapping-ISOLatin1Accent.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Syntax:\n#   \"source\" => \"target\"\n#     \"source\".length() > 0 (source cannot be empty.)\n#     \"target\".length() >= 0 (target can be empty.)\n\n# example:\n#   \"À\" => \"A\"\n#   \"\\u00C0\" => \"A\"\n#   \"\\u00C0\" => \"\\u0041\"\n#   \"ß\" => \"ss\"\n#   \"\\t\" => \" \"\n#   \"\\n\" => \"\"\n\n# À => A\n\"\\u00C0\" => \"A\"\n\n# Á => A\n\"\\u00C1\" => \"A\"\n\n# Â => A\n\"\\u00C2\" => \"A\"\n\n# Ã => A\n\"\\u00C3\" => \"A\"\n\n# Ä => A\n\"\\u00C4\" => \"A\"\n\n# Å => A\n\"\\u00C5\" => \"A\"\n\n# Æ => AE\n\"\\u00C6\" => \"AE\"\n\n# Ç => C\n\"\\u00C7\" => \"C\"\n\n# È => E\n\"\\u00C8\" => \"E\"\n\n# É => E\n\"\\u00C9\" => \"E\"\n\n# Ê => E\n\"\\u00CA\" => \"E\"\n\n# Ë => E\n\"\\u00CB\" => \"E\"\n\n# Ì => I\n\"\\u00CC\" => \"I\"\n\n# Í => I\n\"\\u00CD\" => \"I\"\n\n# Î => I\n\"\\u00CE\" => \"I\"\n\n# Ï => I\n\"\\u00CF\" => \"I\"\n\n# Ĳ => IJ\n\"\\u0132\" => \"IJ\"\n\n# Ð => D\n\"\\u00D0\" => \"D\"\n\n# Ñ => N\n\"\\u00D1\" => \"N\"\n\n# Ò => O\n\"\\u00D2\" => \"O\"\n\n# Ó => O\n\"\\u00D3\" => \"O\"\n\n# Ô => O\n\"\\u00D4\" => \"O\"\n\n# Õ => O\n\"\\u00D5\" => \"O\"\n\n# Ö => O\n\"\\u00D6\" => \"O\"\n\n# Ø => O\n\"\\u00D8\" => \"O\"\n\n# Œ => OE\n\"\\u0152\" => \"OE\"\n\n# Þ\n\"\\u00DE\" => \"TH\"\n\n# Ù => U\n\"\\u00D9\" => \"U\"\n\n# Ú => U\n\"\\u00DA\" => \"U\"\n\n# Û => U\n\"\\u00DB\" => \"U\"\n\n# Ü => U\n\"\\u00DC\" => \"U\"\n\n# Ý => Y\n\"\\u00DD\" => \"Y\"\n\n# Ÿ => Y\n\"\\u0178\" => \"Y\"\n\n# à => a\n\"\\u00E0\" => \"a\"\n\n# á => a\n\"\\u00E1\" => \"a\"\n\n# â => a\n\"\\u00E2\" => \"a\"\n\n# ã => a\n\"\\u00E3\" => \"a\"\n\n# ä => a\n\"\\u00E4\" => \"a\"\n\n# å => a\n\"\\u00E5\" => \"a\"\n\n# æ => ae\n\"\\u00E6\" => \"ae\"\n\n# ç => c\n\"\\u00E7\" => \"c\"\n\n# è => e\n\"\\u00E8\" => \"e\"\n\n# é => e\n\"\\u00E9\" => \"e\"\n\n# ê => e\n\"\\u00EA\" => \"e\"\n\n# ë => e\n\"\\u00EB\" => \"e\"\n\n# ì => i\n\"\\u00EC\" => \"i\"\n\n# í => i\n\"\\u00ED\" => \"i\"\n\n# î => i\n\"\\u00EE\" => \"i\"\n\n# ï => i\n\"\\u00EF\" => \"i\"\n\n# ĳ => ij\n\"\\u0133\" => \"ij\"\n\n# ð => d\n\"\\u00F0\" => \"d\"\n\n# ñ => n\n\"\\u00F1\" => \"n\"\n\n# ò => o\n\"\\u00F2\" => \"o\"\n\n# ó => o\n\"\\u00F3\" => \"o\"\n\n# ô => o\n\"\\u00F4\" => \"o\"\n\n# õ => o\n\"\\u00F5\" => \"o\"\n\n# ö => o\n\"\\u00F6\" => \"o\"\n\n# ø => o\n\"\\u00F8\" => \"o\"\n\n# œ => oe\n\"\\u0153\" => \"oe\"\n\n# ß => ss\n\"\\u00DF\" => \"ss\"\n\n# þ => th\n\"\\u00FE\" => \"th\"\n\n# ù => u\n\"\\u00F9\" => \"u\"\n\n# ú => u\n\"\\u00FA\" => \"u\"\n\n# û => u\n\"\\u00FB\" => \"u\"\n\n# ü => u\n\"\\u00FC\" => \"u\"\n\n# ý => y\n\"\\u00FD\" => \"y\"\n\n# ÿ => y\n\"\\u00FF\" => \"y\"\n\n# ﬀ => ff\n\"\\uFB00\" => \"ff\"\n\n# ﬁ => fi\n\"\\uFB01\" => \"fi\"\n\n# ﬂ => fl\n\"\\uFB02\" => \"fl\"\n\n# ﬃ => ffi\n\"\\uFB03\" => \"ffi\"\n\n# ﬄ => ffl\n\"\\uFB04\" => \"ffl\"\n\n# ﬅ => ft\n\"\\uFB05\" => \"ft\"\n\n# ﬆ => st\n\"\\uFB06\" => \"st\"\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n\n PERFORMANCE NOTE: this schema includes many optional features and should not\n be used for benchmarking.  To improve performance one could\n  - set stored=\"false\" for all fields possible (esp large fields) when you\n    only need to search on the field but don't need to return the original\n    value.\n  - set indexed=\"false\" if you don't need to search on the field, but only\n    return the field as a result of searching on other indexed fields.\n  - remove all unneeded copyField statements\n  - for best index size and searching performance, set \"index\" to false\n    for all general text fields, use copyField to copy them to the\n    catchall \"text\" field, and use that for searching.\n  - For maximum indexing performance, use the StreamingUpdateSolrServer\n    java client.\n  - Remember to run the JVM in server mode, and use a higher logging level\n    that avoids logging every request\n-->\n\n<schema name=\"example\" version=\"1.5\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       version=\"x.y\" is Solr's version number for the schema syntax and \n       semantics.  It should not normally be changed by applications.\n\n       1.0: multiValued attribute did not exist, all fields are multiValued \n            by nature\n       1.1: multiValued attribute introduced, false by default \n       1.2: omitTermFreqAndPositions attribute introduced, true by default \n            except for text fields.\n       1.3: removed optional field compress feature\n       1.4: autoGeneratePhraseQueries attribute introduced to drive QueryParser\n            behavior when a single string produces multiple tokens.  Defaults \n            to off for version >= 1.4\n       1.5: omitNorms defaults to true for primitive field types \n            (int, float, boolean, string...)\n     -->\n\n <fields>\n   <field name=\"id\" type=\"lowercase\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"template1\" type=\"text_general\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"template2\" type=\"text_general\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"typ\" type=\"text_general\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"typ_exact\" type=\"text_general\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"template1_exact\" type=\"lowercase\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"template2_exact\" type=\"lowercase\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"pmi\" type=\"float\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"count1\" type=\"float\" indexed=\"false\" stored=\"true\" required=\"true\"/>\n   <field name=\"count2\" type=\"float\" indexed=\"false\" stored=\"true\" required=\"true\"/>\n   <field name=\"count12\" type=\"float\" indexed=\"false\" stored=\"true\" required=\"true\"/>\n   <field name=\"typCount12\" type=\"float\" indexed=\"false\" stored=\"true\" required=\"false\"/>\n   <field name=\"typPmi\" type=\"float\" indexed=\"false\" stored=\"true\" required=\"false\"/>\n   <field name=\"_version_\" type=\"long\" indexed=\"true\"  stored=\"true\"/>\n </fields>\n\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>id</uniqueKey>\n   <copyField source=\"template1\" dest=\"template1_exact\"/>\n   <copyField source=\"template2\" dest=\"template2_exact\"/>\n   <copyField source=\"typ\" dest=\"typ_exact\"/>\n\n <!-- DEPRECATED: The defaultSearchField is consulted by various query parsers when\n  parsing a query string that isn't explicit about the field.  Machine (non-user)\n  generated queries are best made explicit, or they can use the \"df\" request parameter\n  which takes precedence over this.\n  Note: Un-commenting defaultSearchField will be insufficient if your request handler\n  in solrconfig.xml defines \"df\", which takes precedence. That would need to be removed.\n <defaultSearchField>text</defaultSearchField> -->\n\n <!-- DEPRECATED: The defaultOperator (AND|OR) is consulted by various query parsers\n  when parsing a query string to determine if a clause of the query should be marked as\n  required or optional, assuming the clause isn't already marked by some operator.\n  The default is OR, which is generally assumed so it is not a good idea to change it\n  globally here.  The \"q.op\" request parameter takes precedence over this.\n <solrQueryParser defaultOperator=\"OR\"/> -->\n\n  <!-- copyField commands copy one field to another at the time a document\n        is added to the index.  It's used either to index the same field differently,\n        or to add multiple fields to the same field for easier/faster searching.  -->\n\n \n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in a\n       standard package such as org.apache.solr.analysis\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.\n       It supports doc values but in that case the field needs to be\n       single-valued and either required or have a default value.\n      -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" />\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\"/>\n\n    <!-- sortMissingLast and sortMissingFirst attributes are optional attributes are\n         currently supported on types that are sorted internally as strings\n         and on numeric types.\n\t     This includes \"string\",\"boolean\", and, as of 3.5 (and 4.x),\n\t     int, float, long, date, double, including the \"Trie\" variants.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n    <!--\n      Default numeric field types. For faster range queries, consider the tint/tfloat/tlong/tdouble types.\n\n      These fields support doc values, but they require the field to be\n      single-valued and either be required or have a default value.\n    -->\n    <fieldType name=\"int\" class=\"solr.TrieIntField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"float\" class=\"solr.TrieFloatField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"double\" class=\"solr.TrieDoubleField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n\n    <!--\n     Numeric field types that index each value at various levels of precision\n     to accelerate range queries when the number of values between the range\n     endpoints is large. See the javadoc for NumericRangeQuery for internal\n     implementation details.\n\n     Smaller precisionStep values (specified in bits) will lead to more tokens\n     indexed per value, slightly larger index size, and faster range queries.\n     A precisionStep of 0 disables indexing at different precision levels.\n    -->\n    <fieldType name=\"tint\" class=\"solr.TrieIntField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tfloat\" class=\"solr.TrieFloatField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tlong\" class=\"solr.TrieLongField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tdouble\" class=\"solr.TrieDoubleField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n\n         Note: For faster range queries, consider the tdate type\n      -->\n    <fieldType name=\"date\" class=\"solr.TrieDateField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n\n    <!-- A Trie based date field for faster date range queries and date faceting. -->\n    <fieldType name=\"tdate\" class=\"solr.TrieDateField\" precisionStep=\"6\" positionIncrementGap=\"0\"/>\n\n\n    <!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->\n    <fieldtype name=\"binary\" class=\"solr.BinaryField\"/>\n\n    <!--\n      Note:\n      These should only be used for compatibility with existing indexes (created with lucene or older Solr versions).\n      Use Trie based fields instead. As of Solr 3.5 and 4.x, Trie based fields support sortMissingFirst/Last\n      \n      Plain numeric field types that store and index the text\n      value verbatim (and hence don't correctly support range queries, since the\n      lexicographic ordering isn't equal to the numeric ordering)\n    -->\n    <fieldType name=\"pint\" class=\"solr.IntField\"/>\n    <fieldType name=\"plong\" class=\"solr.LongField\"/>\n    <fieldType name=\"pfloat\" class=\"solr.FloatField\"/>\n    <fieldType name=\"pdouble\" class=\"solr.DoubleField\"/>\n    <fieldType name=\"pdate\" class=\"solr.DateField\" sortMissingLast=\"true\"/>\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate pseudo-random orderings of your docs for sorting \n         or function purposes.  The ordering is generated based on the field\n         name and the version of the index. As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want different psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the field name in the request.\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element.\n         Example:\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A general text field that has reasonable, generic\n         cross-language defaults: it tokenizes with StandardTokenizer,\n\t removes stop words from case-insensitive \"stopwords.txt\"\n\t (empty by default), and down cases.  At query time only, it\n\t also applies synonyms. -->\n\n    <fieldType name=\"text_general\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" />\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" />\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field with defaults appropriate for English: it\n         tokenizes with StandardTokenizer, removes English stop words\n         (lang/stopwords_en.txt), down cases, protects words from protwords.txt, and\n         finally applies Porter's stemming.  The query time analyzer\n         also applies synonyms from synonyms.txt. -->\n    <fieldType name=\"text_en\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n\t<filter class=\"solr.EnglishPossessiveFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n\t<!-- Optionally you may want to use this less aggressive stemmer instead of PorterStemFilterFactory:\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n\t-->\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n\t<filter class=\"solr.EnglishPossessiveFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n\t<!-- Optionally you may want to use this less aggressive stemmer instead of PorterStemFilterFactory:\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n\t-->\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field with defaults appropriate for English, plus\n\t aggressive word-splitting and autophrase features enabled.\n\t This field is just like text_en, except it adds\n\t WordDelimiterFilter to enable splitting and matching of\n\t words on case-change, alpha numeric boundaries, and\n\t non-alphanumeric chars.  This means certain compound word\n\t cases will work, for example query \"wi fi\" will match\n\t document \"WiFi\" or \"wi-fi\".\n        -->\n    <fieldType name=\"text_en_splitting\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"true\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"text_en_splitting_tight\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"true\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_en.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <!-- this filter can remove any duplicate tokens that appear at the same position - sometimes\n             possible with WordDelimiterFilter in conjuncton with stemming. -->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Just like text_general except it reverses the characters of\n\t each token, to enable more efficient leading wildcard queries. -->\n    <fieldType name=\"text_general_rev\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ReversedWildcardFilterFactory\" withOriginal=\"true\"\n           maxPosAsterisk=\"3\" maxPosQuestion=\"2\" maxFractionAsterisk=\"0.33\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- charFilter + WhitespaceTokenizer  -->\n    <!--\n    <fieldType name=\"text_char_norm\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <charFilter class=\"solr.MappingCharFilterFactory\" mapping=\"mapping-ISOLatin1Accent.txt\"/>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n    -->\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back references to portions of the original\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             information on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n    \n    <fieldtype name=\"phonetic\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.DoubleMetaphoneFilterFactory\" inject=\"false\"/>\n      </analyzer>\n    </fieldtype>\n\n    <fieldtype name=\"payloads\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!--\n        The DelimitedPayloadTokenFilter can put payloads on tokens... for example,\n        a token of \"foo|1.4\"  would be indexed as \"foo\" with a payload of 1.4f\n        Attributes of the DelimitedPayloadTokenFilterFactory : \n         \"delimiter\" - a one character delimiter. Default is | (pipe)\n\t \"encoder\" - how to encode the following value into a playload\n\t    float -> org.apache.lucene.analysis.payloads.FloatEncoder,\n\t    integer -> o.a.l.a.p.IntegerEncoder\n\t    identity -> o.a.l.a.p.IdentityEncoder\n            Fully Qualified class name implementing PayloadEncoder, Encoder must have a no arg constructor.\n         -->\n        <filter class=\"solr.DelimitedPayloadTokenFilterFactory\" encoder=\"float\"/>\n      </analyzer>\n    </fieldtype>\n\n    <!-- lowercases the entire field value, keeping it as a single token.  -->\n    <fieldType name=\"lowercase\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n      </analyzer>\n    </fieldType>\n\n    <!-- \n      Example of using PathHierarchyTokenizerFactory at index time, so\n      queries for paths match documents at that path, or in descendent paths\n    -->\n    <fieldType name=\"descendent_path\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n\t<tokenizer class=\"solr.PathHierarchyTokenizerFactory\" delimiter=\"/\" />\n      </analyzer>\n      <analyzer type=\"query\">\n\t<tokenizer class=\"solr.KeywordTokenizerFactory\" />\n      </analyzer>\n    </fieldType>\n    <!-- \n      Example of using PathHierarchyTokenizerFactory at query time, so\n      queries for paths match documents at that path, or in ancestor paths\n    -->\n    <fieldType name=\"ancestor_path\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n\t<tokenizer class=\"solr.KeywordTokenizerFactory\" />\n      </analyzer>\n      <analyzer type=\"query\">\n\t<tokenizer class=\"solr.PathHierarchyTokenizerFactory\" delimiter=\"/\" />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed,\n         any data added to them will be ignored outright.  --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" multiValued=\"true\" class=\"solr.StrField\" />\n\n    <!-- This point type indexes the coordinates as separate fields (subFields)\n      If subFieldType is defined, it references a type, and a dynamic field\n      definition is created matching *___<typename>.  Alternately, if \n      subFieldSuffix is defined, that is used to create the subFields.\n      Example: if subFieldType=\"double\", then the coordinates would be\n        indexed in fields myloc_0___double,myloc_1___double.\n      Example: if subFieldSuffix=\"_d\" then the coordinates would be indexed\n        in fields myloc_0_d,myloc_1_d\n      The subFields are an implementation detail of the fieldType, and end\n      users normally should not need to know about them.\n     -->\n    <fieldType name=\"point\" class=\"solr.PointType\" dimension=\"2\" subFieldSuffix=\"_d\"/>\n\n    <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->\n    <fieldType name=\"location\" class=\"solr.LatLonType\" subFieldSuffix=\"_coordinate\"/>\n\n    <!-- An alternative geospatial field type new to Solr 4.  It supports multiValued and polygon shapes.\n      For more information about this and other Spatial fields new to Solr 4, see:\n      http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4\n    -->\n    <fieldType name=\"location_rpt\" class=\"solr.SpatialRecursivePrefixTreeFieldType\"\n        geo=\"true\" distErrPct=\"0.025\" maxDistErr=\"0.000009\" units=\"degrees\" />\n\n   <!-- Money/currency field type. See http://wiki.apache.org/solr/MoneyFieldType\n        Parameters:\n          defaultCurrency: Specifies the default currency if none specified. Defaults to \"USD\"\n          precisionStep:   Specifies the precisionStep for the TrieLong field used for the amount\n          providerClass:   Lets you plug in other exchange provider backend:\n                           solr.FileExchangeRateProvider is the default and takes one parameter:\n                             currencyConfig: name of an xml file holding exchange rates\n                           solr.OpenExchangeRatesOrgProvider uses rates from openexchangerates.org:\n                             ratesFileLocation: URL or path to rates JSON file (default latest.json on the web)\n                             refreshInterval: Number of minutes between each rates fetch (default: 1440, min: 60)\n   -->\n    <fieldType name=\"currency\" class=\"solr.CurrencyField\" precisionStep=\"8\" defaultCurrency=\"USD\" currencyConfig=\"currency.xml\" />\n             \n\n\n   <!-- some examples for different languages (generally ordered by ISO code) -->\n\n    <!-- Arabic -->\n    <fieldType name=\"text_ar\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- for any non-arabic -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ar.txt\" />\n        <!-- normalizes ﻯ to ﻱ, etc -->\n        <filter class=\"solr.ArabicNormalizationFilterFactory\"/>\n        <filter class=\"solr.ArabicStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Bulgarian -->\n    <fieldType name=\"text_bg\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/> \n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_bg.txt\" /> \n        <filter class=\"solr.BulgarianStemFilterFactory\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- Catalan -->\n    <fieldType name=\"text_ca\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_ca.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ca.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Catalan\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- CJK bigram (see text_ja for a Japanese configuration using morphological analysis) -->\n    <fieldType name=\"text_cjk\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- normalize width before bigram, as e.g. half-width dakuten combine  -->\n        <filter class=\"solr.CJKWidthFilterFactory\"/>\n        <!-- for any non-CJK -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.CJKBigramFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Czech -->\n    <fieldType name=\"text_cz\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_cz.txt\" />\n        <filter class=\"solr.CzechStemFilterFactory\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- Danish -->\n    <fieldType name=\"text_da\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_da.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Danish\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- German -->\n    <fieldType name=\"text_de\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_de.txt\" format=\"snowball\" />\n        <filter class=\"solr.GermanNormalizationFilterFactory\"/>\n        <filter class=\"solr.GermanLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.GermanMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"German2\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Greek -->\n    <fieldType name=\"text_el\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- greek specific lowercase for sigma -->\n        <filter class=\"solr.GreekLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"false\" words=\"lang/stopwords_el.txt\" />\n        <filter class=\"solr.GreekStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Spanish -->\n    <fieldType name=\"text_es\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_es.txt\" format=\"snowball\" />\n        <filter class=\"solr.SpanishLightStemFilterFactory\"/>\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Spanish\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Basque -->\n    <fieldType name=\"text_eu\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_eu.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Basque\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Persian -->\n    <fieldType name=\"text_fa\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <!-- for ZWNJ -->\n        <charFilter class=\"solr.PersianCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ArabicNormalizationFilterFactory\"/>\n        <filter class=\"solr.PersianNormalizationFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fa.txt\" />\n      </analyzer>\n    </fieldType>\n    \n    <!-- Finnish -->\n    <fieldType name=\"text_fi\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fi.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Finnish\"/>\n        <!-- less aggressive: <filter class=\"solr.FinnishLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- French -->\n    <fieldType name=\"text_fr\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_fr.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fr.txt\" format=\"snowball\" />\n        <filter class=\"solr.FrenchLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.FrenchMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"French\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Irish -->\n    <fieldType name=\"text_ga\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes d', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_ga.txt\"/>\n        <!-- removes n-, etc. position increments is intentionally false! -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/hyphenations_ga.txt\"/>\n        <filter class=\"solr.IrishLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ga.txt\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Irish\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Galician -->\n    <fieldType name=\"text_gl\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_gl.txt\" />\n        <filter class=\"solr.GalicianStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.GalicianMinimalStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Hindi -->\n    <fieldType name=\"text_hi\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!-- normalizes unicode representation -->\n        <filter class=\"solr.IndicNormalizationFilterFactory\"/>\n        <!-- normalizes variation in spelling -->\n        <filter class=\"solr.HindiNormalizationFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hi.txt\" />\n        <filter class=\"solr.HindiStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Hungarian -->\n    <fieldType name=\"text_hu\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hu.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Hungarian\"/>\n        <!-- less aggressive: <filter class=\"solr.HungarianLightStemFilterFactory\"/> -->   \n      </analyzer>\n    </fieldType>\n    \n    <!-- Armenian -->\n    <fieldType name=\"text_hy\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hy.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Armenian\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Indonesian -->\n    <fieldType name=\"text_id\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_id.txt\" />\n        <!-- for a less aggressive approach (only inflectional suffixes), set stemDerivational to false -->\n        <filter class=\"solr.IndonesianStemFilterFactory\" stemDerivational=\"true\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Italian -->\n    <fieldType name=\"text_it\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_it.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_it.txt\" format=\"snowball\" />\n        <filter class=\"solr.ItalianLightStemFilterFactory\"/>\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Italian\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Japanese using morphological analysis (see text_cjk for a configuration using bigramming)\n\n         NOTE: If you want to optimize search for precision, use default operator AND in your query\n         parser config with <solrQueryParser defaultOperator=\"AND\"/> further down in this file.  Use \n         OR if you would like to optimize for recall (default).\n    -->\n    <fieldType name=\"text_ja\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"false\">\n      <analyzer>\n      <!-- Kuromoji Japanese morphological analyzer/tokenizer (JapaneseTokenizer)\n\n           Kuromoji has a search mode (default) that does segmentation useful for search.  A heuristic\n           is used to segment compounds into its parts and the compound itself is kept as synonym.\n\n           Valid values for attribute mode are:\n              normal: regular segmentation\n              search: segmentation useful for search with synonyms compounds (default)\n            extended: same as search mode, but unigrams unknown words (experimental)\n\n           For some applications it might be good to use search mode for indexing and normal mode for\n           queries to reduce recall and prevent parts of compounds from being matched and highlighted.\n           Use <analyzer type=\"index\"> and <analyzer type=\"query\"> for this and mode normal in query.\n\n           Kuromoji also has a convenient user dictionary feature that allows overriding the statistical\n           model with your own entries for segmentation, part-of-speech tags and readings without a need\n           to specify weights.  Notice that user dictionaries have not been subject to extensive testing.\n\n           User dictionary attributes are:\n                     userDictionary: user dictionary filename\n             userDictionaryEncoding: user dictionary encoding (default is UTF-8)\n\n           See lang/userdict_ja.txt for a sample user dictionary file.\n\n           Punctuation characters are discarded by default.  Use discardPunctuation=\"false\" to keep them.\n\n           See http://wiki.apache.org/solr/JapaneseLanguageSupport for more on Japanese language support.\n        -->\n        <tokenizer class=\"solr.JapaneseTokenizerFactory\" mode=\"search\"/>\n        <!--<tokenizer class=\"solr.JapaneseTokenizerFactory\" mode=\"search\" userDictionary=\"lang/userdict_ja.txt\"/>-->\n        <!-- Reduces inflected verbs and adjectives to their base/dictionary forms (辞書形) -->\n        <filter class=\"solr.JapaneseBaseFormFilterFactory\"/>\n        <!-- Removes tokens with certain part-of-speech tags -->\n        <filter class=\"solr.JapanesePartOfSpeechStopFilterFactory\" tags=\"lang/stoptags_ja.txt\" />\n        <!-- Normalizes full-width romaji to half-width and half-width kana to full-width (Unicode NFKC subset) -->\n        <filter class=\"solr.CJKWidthFilterFactory\"/>\n        <!-- Removes common tokens typically not useful for search, but have a negative effect on ranking -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ja.txt\" />\n        <!-- Normalizes common katakana spelling variations by removing any last long sound character (U+30FC) -->\n        <filter class=\"solr.JapaneseKatakanaStemFilterFactory\" minimumLength=\"4\"/>\n        <!-- Lower-cases romaji characters -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Latvian -->\n    <fieldType name=\"text_lv\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_lv.txt\" />\n        <filter class=\"solr.LatvianStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Dutch -->\n    <fieldType name=\"text_nl\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_nl.txt\" format=\"snowball\" />\n        <filter class=\"solr.StemmerOverrideFilterFactory\" dictionary=\"lang/stemdict_nl.txt\" ignoreCase=\"false\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Dutch\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Norwegian -->\n    <fieldType name=\"text_no\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_no.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Norwegian\"/>\n        <!-- less aggressive: <filter class=\"solr.NorwegianLightStemFilterFactory\" variant=\"nb\"/> -->\n        <!-- singular/plural: <filter class=\"solr.NorwegianMinimalStemFilterFactory\" variant=\"nb\"/> -->\n        <!-- The \"light\" and \"minimal\" stemmers support variants: nb=Bokmål, nn=Nynorsk, no=Both -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Portuguese -->\n    <fieldType name=\"text_pt\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_pt.txt\" format=\"snowball\" />\n        <filter class=\"solr.PortugueseLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.PortugueseMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Portuguese\"/> -->\n        <!-- most aggressive: <filter class=\"solr.PortugueseStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Romanian -->\n    <fieldType name=\"text_ro\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ro.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Romanian\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Russian -->\n    <fieldType name=\"text_ru\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ru.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Russian\"/>\n        <!-- less aggressive: <filter class=\"solr.RussianLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Swedish -->\n    <fieldType name=\"text_sv\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_sv.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Swedish\"/>\n        <!-- less aggressive: <filter class=\"solr.SwedishLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Thai -->\n    <fieldType name=\"text_th\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ThaiWordFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_th.txt\" />\n      </analyzer>\n    </fieldType>\n    \n    <!-- Turkish -->\n    <fieldType name=\"text_tr\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.TurkishLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"false\" words=\"lang/stopwords_tr.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Turkish\"/>\n      </analyzer>\n    </fieldType>\n\n </types>\n  \n  <!-- Similarity is the scoring routine for each document vs. a query.\n       A custom Similarity or SimilarityFactory may be specified here, but \n       the default is fine for most applications.  \n       For more info: http://wiki.apache.org/solr/SchemaXml#Similarity\n    -->\n  <!--\n     <similarity class=\"com.example.solr.CustomSimilarityFactory\">\n       <str name=\"paramkey\">param value</str>\n     </similarity>\n    -->\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- \n     For more details about configurations options that may appear in\n     this file, see http://wiki.apache.org/solr/SolrConfigXml. \n-->\n<config>\n  <!-- In all configuration below, a prefix of \"solr.\" for class names\n       is an alias that causes solr to search appropriate packages,\n       including org.apache.solr.(search|update|request|core|analysis)\n\n       You may also specify a fully qualified Java classname if you\n       have your own custom plugins.\n    -->\n\n  <!-- Controls what version of Lucene various components of Solr\n       adhere to.  Generally, you want to use the latest version to\n       get all bug fixes and improvements. It is highly recommended\n       that you fully re-index after changing this setting as it can\n       affect both how text is indexed and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!-- <lib/> directives can be used to instruct Solr to load an Jars\n       identified and use them to resolve any \"plugins\" specified in\n       your solrconfig.xml or schema.xml (ie: Analyzers, Request\n       Handlers, etc...).\n\n       All directories and paths are resolved relative to the\n       instanceDir.\n\n       Please note that <lib/> directives are processed in the order\n       that they appear in your solrconfig.xml file, and are \"stacked\" \n       on top of each other when building a ClassLoader - so if you have \n       plugin jars with dependencies on other jars, the \"lower level\" \n       dependency jars should be loaded first.\n\n       If a \"./lib\" directory exists in your instanceDir, all files\n       found in it are included as if you had used the following\n       syntax...\n       \n              <lib dir=\"./lib\" />\n    -->\n\n  <!-- A 'dir' option by itself adds any files found in the directory \n       to the classpath, this is useful for including all jars in a\n       directory.\n\n       When a 'regex' is specified in addition to a 'dir', only the\n       files in that directory which completely match the regex\n       (anchored on both ends) will be included.\n\n       The examples below can be used to load some solr-contribs along \n       with their external dependencies.\n    -->\n  <lib dir=\"../../../contrib/extraction/lib\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-cell-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/clustering/lib/\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-clustering-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/langid/lib/\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-langid-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/velocity/lib\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-velocity-\\d.*\\.jar\" />\n\n  <!-- If a 'dir' option (with or without a regex) is used and nothing\n       is found that matches, a warning will be logged.\n    -->\n  <lib dir=\"/non/existent/dir/yields/warning\" /> \n\n  <!-- an exact 'path' can be used instead of a 'dir' to specify a \n       specific jar file.  This will cause a serious error to be logged \n       if it can't be loaded.\n    -->\n  <!--\n     <lib path=\"../a-jar-that-does-not-exist.jar\" /> \n  -->\n  \n  <!-- Data Directory\n\n       Used to specify an alternate directory to hold all index data\n       other than the default ./data under the Solr home.  If\n       replication is in use, this should match the replication\n       configuration.\n    -->\n  <dataDir>${solr.data.dir:}</dataDir>\n\n\n  <!-- The DirectoryFactory to use for indexes.\n       \n       solr.StandardDirectoryFactory is filesystem\n       based and tries to pick the best implementation for the current\n       JVM and platform.  solr.NRTCachingDirectoryFactory, the default,\n       wraps solr.StandardDirectoryFactory and caches small files in memory\n       for better NRT performance.\n\n       One can force a particular implementation via solr.MMapDirectoryFactory,\n       solr.NIOFSDirectoryFactory, or solr.SimpleFSDirectoryFactory.\n\n       solr.RAMDirectoryFactory is memory based, not\n       persistent, and doesn't work with replication.\n    -->\n  <directoryFactory name=\"DirectoryFactory\" \n                    class=\"${solr.directoryFactory:solr.NRTCachingDirectoryFactory}\"/> \n\n  <!-- The CodecFactory for defining the format of the inverted index.\n       The default implementation is SchemaCodecFactory, which is the official Lucene\n       index format, but hooks into the schema to provide per-field customization of\n       the postings lists and per-document values in the fieldType element\n       (postingsFormat/docValuesFormat). Note that most of the alternative implementations\n       are experimental, so if you choose to customize the index format, its a good\n       idea to convert back to the official format e.g. via IndexWriter.addIndexes(IndexReader)\n       before upgrading to a newer version to avoid unnecessary reindexing.\n  -->\n  <codecFactory class=\"solr.SchemaCodecFactory\"/>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n       Index Config - These settings control low-level behavior of indexing\n       Most example settings here show the default value, but are commented\n       out, to more easily see where customizations have been made.\n       \n       Note: This replaces <indexDefaults> and <mainIndex> from older versions\n       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->\n  <indexConfig>\n    <!-- maxFieldLength was removed in 4.0. To get similar behavior, include a \n         LimitTokenCountFilterFactory in your fieldType definition. E.g. \n     <filter class=\"solr.LimitTokenCountFilterFactory\" maxTokenCount=\"10000\"/>\n    -->\n    <!-- Maximum time to wait for a write lock (ms) for an IndexWriter. Default: 1000 -->\n    <!-- <writeLockTimeout>1000</writeLockTimeout>  -->\n\n    <!-- The maximum number of simultaneous threads that may be\n         indexing documents at once in IndexWriter; if more than this\n         many threads arrive they will wait for others to finish.\n         Default in Solr/Lucene is 8. -->\n    <!-- <maxIndexingThreads>8</maxIndexingThreads>  -->\n\n    <!-- Expert: Enabling compound file will use less files for the index, \n         using fewer file descriptors on the expense of performance decrease. \n         Default in Lucene is \"true\". Default in Solr is \"false\" (since 3.6) -->\n    <!-- <useCompoundFile>false</useCompoundFile> -->\n\n    <!-- ramBufferSizeMB sets the amount of RAM that may be used by Lucene\n         indexing for buffering added documents and deletions before they are\n         flushed to the Directory.\n         maxBufferedDocs sets a limit on the number of documents buffered\n         before flushing.\n         If both ramBufferSizeMB and maxBufferedDocs is set, then\n         Lucene will flush based on whichever limit is hit first.  -->\n    <!-- <ramBufferSizeMB>100</ramBufferSizeMB> -->\n    <!-- <maxBufferedDocs>1000</maxBufferedDocs> -->\n\n    <!-- Expert: Merge Policy \n         The Merge Policy in Lucene controls how merging of segments is done.\n         The default since Solr/Lucene 3.3 is TieredMergePolicy.\n         The default since Lucene 2.3 was the LogByteSizeMergePolicy,\n         Even older versions of Lucene used LogDocMergePolicy.\n      -->\n    <!--\n        <mergePolicy class=\"org.apache.lucene.index.TieredMergePolicy\">\n          <int name=\"maxMergeAtOnce\">10</int>\n          <int name=\"segmentsPerTier\">10</int>\n        </mergePolicy>\n      -->\n       \n    <!-- Merge Factor\n         The merge factor controls how many segments will get merged at a time.\n         For TieredMergePolicy, mergeFactor is a convenience parameter which\n         will set both MaxMergeAtOnce and SegmentsPerTier at once.\n         For LogByteSizeMergePolicy, mergeFactor decides how many new segments\n         will be allowed before they are merged into one.\n         Default is 10 for both merge policies.\n      -->\n    <!-- \n    <mergeFactor>10</mergeFactor>\n      -->\n\n    <!-- Expert: Merge Scheduler\n         The Merge Scheduler in Lucene controls how merges are\n         performed.  The ConcurrentMergeScheduler (Lucene 2.3 default)\n         can perform merges in the background using separate threads.\n         The SerialMergeScheduler (Lucene 2.2 default) does not.\n     -->\n    <!-- \n       <mergeScheduler class=\"org.apache.lucene.index.ConcurrentMergeScheduler\"/>\n       -->\n\n    <!-- LockFactory \n\n         This option specifies which Lucene LockFactory implementation\n         to use.\n      \n         single = SingleInstanceLockFactory - suggested for a\n                  read-only index or when there is no possibility of\n                  another process trying to modify the index.\n         native = NativeFSLockFactory - uses OS native file locking.\n                  Do not use when multiple solr webapps in the same\n                  JVM are attempting to share a single index.\n         simple = SimpleFSLockFactory  - uses a plain file for locking\n\n         Defaults: 'native' is default for Solr3.6 and later, otherwise\n                   'simple' is the default\n\n         More details on the nuances of each LockFactory...\n         http://wiki.apache.org/lucene-java/AvailableLockFactories\n    -->\n    <lockType>${solr.lock.type:native}</lockType>\n\n    <!-- Unlock On Startup\n\n         If true, unlock any held write or commit locks on startup.\n         This defeats the locking mechanism that allows multiple\n         processes to safely access a lucene index, and should be used\n         with care. Default is \"false\".\n\n         This is not needed if lock type is 'single'\n     -->\n    <!--\n    <unlockOnStartup>false</unlockOnStartup>\n      -->\n    \n    <!-- Expert: Controls how often Lucene loads terms into memory\n         Default is 128 and is likely good for most everyone.\n      -->\n    <!-- <termIndexInterval>128</termIndexInterval> -->\n\n    <!-- If true, IndexReaders will be reopened (often more efficient)\n         instead of closed and then opened. Default: true\n      -->\n    <!-- \n    <reopenReaders>true</reopenReaders>\n      -->\n\n    <!-- Commit Deletion Policy\n         Custom deletion policies can be specified here. The class must\n         implement org.apache.lucene.index.IndexDeletionPolicy.\n\n         The default Solr IndexDeletionPolicy implementation supports\n         deleting index commit points on number of commits, age of\n         commit point and optimized status.\n         \n         The latest commit point should always be preserved regardless\n         of the criteria.\n    -->\n    <!-- \n    <deletionPolicy class=\"solr.SolrDeletionPolicy\">\n    -->\n      <!-- The number of commit points to be kept -->\n      <!-- <str name=\"maxCommitsToKeep\">1</str> -->\n      <!-- The number of optimized commit points to be kept -->\n      <!-- <str name=\"maxOptimizedCommitsToKeep\">0</str> -->\n      <!--\n          Delete all commit points once they have reached the given age.\n          Supports DateMathParser syntax e.g.\n        -->\n      <!--\n         <str name=\"maxCommitAge\">30MINUTES</str>\n         <str name=\"maxCommitAge\">1DAY</str>\n      -->\n    <!-- \n    </deletionPolicy>\n    -->\n\n    <!-- Lucene Infostream\n       \n         To aid in advanced debugging, Lucene provides an \"InfoStream\"\n         of detailed information when indexing.\n\n         Setting The value to true will instruct the underlying Lucene\n         IndexWriter to write its debugging info the specified file\n      -->\n     <!-- <infoStream file=\"INFOSTREAM.txt\">false</infoStream> --> \n  </indexConfig>\n\n\n  <!-- JMX\n       \n       This example enables JMX if and only if an existing MBeanServer\n       is found, use this if you want to configure JMX through JVM\n       parameters. Remove this to disable exposing Solr configuration\n       and statistics to JMX.\n\n       For more details see http://wiki.apache.org/solr/SolrJmx\n    -->\n  <jmx />\n  <!-- If you want to connect to a particular server, specify the\n       agentId \n    -->\n  <!-- <jmx agentId=\"myAgent\" /> -->\n  <!-- If you want to start a new MBeanServer, specify the serviceUrl -->\n  <!-- <jmx serviceUrl=\"service:jmx:rmi:///jndi/rmi://localhost:9999/solr\"/>\n    -->\n\n  <!-- The default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- Enables a transaction log, used for real-time get, durability, and\n         and solr cloud replica recovery.  The log can grow as big as\n         uncommitted changes to the index, so use of a hard autoCommit\n         is recommended (see below).\n         \"dir\" - the target directory for transaction logs, defaults to the\n                solr data directory.  --> \n    <updateLog>\n      <str name=\"dir\">${solr.ulog.dir:}</str>\n    </updateLog>\n \n    <!-- AutoCommit\n\n         Perform a hard commit automatically under certain conditions.\n         Instead of enabling autoCommit, consider using \"commitWithin\"\n         when adding documents. \n\n         http://wiki.apache.org/solr/UpdateXmlMessages\n\n         maxDocs - Maximum number of documents to add since the last\n                   commit before automatically triggering a new commit.\n\n         maxTime - Maximum amount of time in ms that is allowed to pass\n                   since a document was added before automatically\n                   triggering a new commit. \n         openSearcher - if false, the commit causes recent index changes\n           to be flushed to stable storage, but does not cause a new\n           searcher to be opened to make those changes visible.\n\n         If the updateLog is enabled, then it's highly recommended to\n         have some sort of hard autoCommit to limit the log size.\n      -->\n     <autoCommit> \n       <maxTime>15000</maxTime> \n       <openSearcher>false</openSearcher> \n     </autoCommit>\n\n    <!-- softAutoCommit is like autoCommit except it causes a\n         'soft' commit which only ensures that changes are visible\n         but does not ensure that data is synced to disk.  This is\n         faster and more near-realtime friendly than a hard commit.\n      -->\n     <!--\n       <autoSoftCommit> \n         <maxTime>1000</maxTime> \n       </autoSoftCommit>\n      -->\n\n    <!-- Update Related Event Listeners\n         \n         Various IndexWriter related events can trigger Listeners to\n         take actions.\n\n         postCommit - fired after every commit or optimize command\n         postOptimize - fired after every optimize command\n      -->\n    <!-- The RunExecutableListener executes an external command from a\n         hook such as postCommit or postOptimize.\n         \n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. (default=\".\")\n         wait - the calling thread waits until the executable returns. \n                (default=\"true\")\n         args - the arguments to pass to the program.  (default is none)\n         env - environment variables to set.  (default is none)\n      -->\n    <!-- This example shows how RunExecutableListener could be used\n         with the script based replication...\n         http://wiki.apache.org/solr/CollectionDistribution\n      -->\n    <!--\n       <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n         <str name=\"exe\">solr/bin/snapshooter</str>\n         <str name=\"dir\">.</str>\n         <bool name=\"wait\">true</bool>\n         <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n         <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n       </listener>\n      -->\n\n  </updateHandler>\n  \n  <!-- IndexReaderFactory\n\n       Use the following format to specify a custom IndexReaderFactory,\n       which allows for alternate IndexReader implementations.\n\n       ** Experimental Feature **\n\n       Please note - Using a custom IndexReaderFactory may prevent\n       certain other features from working. The API to\n       IndexReaderFactory may change without warning or may even be\n       removed from future releases if the problems cannot be\n       resolved.\n\n\n       ** Features that may not work with custom IndexReaderFactory **\n\n       The ReplicationHandler assumes a disk-resident index. Using a\n       custom IndexReader implementation may cause incompatibility\n       with ReplicationHandler and may cause replication to not work\n       correctly. See SOLR-1366 for details.\n\n    -->\n  <!--\n  <indexReaderFactory name=\"IndexReaderFactory\" class=\"package.class\">\n    <str name=\"someArg\">Some Value</str>\n  </indexReaderFactory >\n  -->\n  <!-- By explicitly declaring the Factory, the termIndexDivisor can\n       be specified.\n    -->\n  <!--\n     <indexReaderFactory name=\"IndexReaderFactory\" \n                         class=\"solr.StandardIndexReaderFactory\">\n       <int name=\"setTermIndexDivisor\">12</int>\n     </indexReaderFactory >\n    -->\n\n  <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n       Query section - these settings control query time things like caches\n       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->\n  <query>\n    <!-- Max Boolean Clauses\n\n         Maximum number of clauses in each BooleanQuery,  an exception\n         is thrown if exceeded.\n\n         ** WARNING **\n         \n         This option actually modifies a global Lucene property that\n         will affect all SolrCores.  If multiple solrconfig.xml files\n         disagree on this property, the value at any given moment will\n         be based on the last SolrCore to be initialized.\n         \n      -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n\n    <!-- Solr Internal Query Caches\n\n         There are two implementations of cache available for Solr,\n         LRUCache, based on a synchronized LinkedHashMap, and\n         FastLRUCache, based on a ConcurrentHashMap.  \n\n         FastLRUCache has faster gets and slower puts in single\n         threaded operation and thus is generally faster than LRUCache\n         when the hit ratio of the cache is high (> 75%), and may be\n         faster under other scenarios on multi-cpu systems.\n    -->\n\n    <!-- Filter Cache\n\n         Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.  When a\n         new searcher is opened, its caches may be prepopulated or\n         \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For\n         LRUCache, the autowarmed items will be the most recently\n         accessed items.\n\n         Parameters:\n           class - the SolrCache implementation LRUCache or\n               (LRUCache or FastLRUCache)\n           size - the maximum number of entries in the cache\n           initialSize - the initial capacity (number of entries) of\n               the cache.  (see java.util.HashMap)\n           autowarmCount - the number of entries to prepopulate from\n               and old cache.  \n      -->\n    <filterCache class=\"solr.FastLRUCache\"\n                 size=\"512\"\n                 initialSize=\"512\"\n                 autowarmCount=\"0\"/>\n\n    <!-- Query Result Cache\n         \n         Caches results of searches - ordered lists of document ids\n         (DocList) based on a query, a sort, and the range of documents requested.  \n      -->\n    <queryResultCache class=\"solr.LRUCache\"\n                     size=\"512\"\n                     initialSize=\"512\"\n                     autowarmCount=\"0\"/>\n   \n    <!-- Document Cache\n\n         Caches Lucene Document objects (the stored fields for each\n         document).  Since Lucene internal document ids are transient,\n         this cache will not be autowarmed.  \n      -->\n    <documentCache class=\"solr.LRUCache\"\n                   size=\"512\"\n                   initialSize=\"512\"\n                   autowarmCount=\"0\"/>\n    \n    <!-- Field Value Cache\n         \n         Cache used to hold field values that are quickly accessible\n         by document id.  The fieldValueCache is created by default\n         even if not configured here.\n      -->\n    <!--\n       <fieldValueCache class=\"solr.FastLRUCache\"\n                        size=\"512\"\n                        autowarmCount=\"128\"\n                        showItems=\"32\" />\n      -->\n\n    <!-- Custom Cache\n\n         Example of a generic cache.  These caches may be accessed by\n         name through SolrIndexSearcher.getCache(),cacheLookup(), and\n         cacheInsert().  The purpose is to enable easy caching of\n         user/application level data.  The regenerator argument should\n         be specified as an implementation of solr.CacheRegenerator \n         if autowarming is desired.  \n      -->\n    <!--\n       <cache name=\"myUserCache\"\n              class=\"solr.LRUCache\"\n              size=\"4096\"\n              initialSize=\"1024\"\n              autowarmCount=\"1024\"\n              regenerator=\"com.mycompany.MyRegenerator\"\n              />\n      -->\n\n\n    <!-- Lazy Field Loading\n\n         If true, stored fields that are not requested will be loaded\n         lazily.  This can result in a significant speed improvement\n         if the usual case is to not load all stored fields,\n         especially if the skipped fields are large compressed text\n         fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n   <!-- Use Filter For Sorted Query\n\n        A possible optimization that attempts to use a filter to\n        satisfy a search.  If the requested sort does not include\n        score, then the filterCache will be checked for a filter\n        matching the query. If found, the filter will be used as the\n        source of document ids, and then the sort will be applied to\n        that.\n\n        For most situations, this will not be useful unless you\n        frequently get the same search repeatedly with different sort\n        options, and none of them ever use \"score\"\n     -->\n   <!--\n      <useFilterForSortedQuery>true</useFilterForSortedQuery>\n     -->\n\n   <!-- Result Window Size\n\n        An optimization for use with the queryResultCache.  When a search\n        is requested, a superset of the requested number of document ids\n        are collected.  For example, if a search for a particular query\n        requests matching documents 10 through 19, and queryWindowSize is 50,\n        then documents 0 through 49 will be collected and cached.  Any further\n        requests in that range can be satisfied via the cache.  \n     -->\n   <queryResultWindowSize>20</queryResultWindowSize>\n\n   <!-- Maximum number of documents to cache for any entry in the\n        queryResultCache. \n     -->\n   <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n   <!-- Query Related Event Listeners\n\n        Various IndexSearcher related events can trigger Listeners to\n        take actions.\n\n        newSearcher - fired whenever a new searcher is being prepared\n        and there is a current searcher handling requests (aka\n        registered).  It can be used to prime certain caches to\n        prevent long request times for certain requests.\n\n        firstSearcher - fired whenever a new searcher is being\n        prepared but there is no current registered searcher to handle\n        requests or to gain autowarming data from.\n\n        \n     -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. \n      -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <!--\n           <lst><str name=\"q\">solr</str><str name=\"sort\">price asc</str></lst>\n           <lst><str name=\"q\">rocks</str><str name=\"sort\">weight asc</str></lst>\n          -->\n      </arr>\n    </listener>\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst>\n          <str name=\"q\">static firstSearcher warming in solrconfig.xml</str>\n        </lst>\n      </arr>\n    </listener>\n\n    <!-- Use Cold Searcher\n\n         If a search request comes in and there is no current\n         registered searcher, then immediately register the still\n         warming searcher and use it.  If \"false\" then all requests\n         will block until the first searcher is done warming.\n      -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Max Warming Searchers\n         \n         Maximum number of searchers that may be warming in the\n         background concurrently.  An error is returned if this limit\n         is exceeded.\n\n         Recommend values of 1-2 for read-only slaves, higher for\n         masters w/o cache warming.\n      -->\n    <maxWarmingSearchers>2</maxWarmingSearchers>\n\n  </query>\n\n\n  <!-- Request Dispatcher\n\n       This section contains instructions for how the SolrDispatchFilter\n       should behave when processing requests for this SolrCore.\n\n       handleSelect is a legacy option that affects the behavior of requests\n       such as /select?qt=XXX\n\n       handleSelect=\"true\" will cause the SolrDispatchFilter to process\n       the request and dispatch the query to a handler specified by the \n       \"qt\" param, assuming \"/select\" isn't already registered.\n\n       handleSelect=\"false\" will cause the SolrDispatchFilter to\n       ignore \"/select\" requests, resulting in a 404 unless a handler\n       is explicitly registered with the name \"/select\"\n\n       handleSelect=\"true\" is not recommended for new users, but is the default\n       for backwards compatibility\n    -->\n  <requestDispatcher handleSelect=\"false\" >\n    <!-- Request Parsing\n\n         These settings indicate how Solr Requests may be parsed, and\n         what restrictions may be placed on the ContentStreams from\n         those requests\n\n         enableRemoteStreaming - enables use of the stream.file\n         and stream.url parameters for specifying remote streams.\n\n         multipartUploadLimitInKB - specifies the max size (in KiB) of\n         Multipart File Uploads that Solr will allow in a Request.\n         \n         formdataUploadLimitInKB - specifies the max size (in KiB) of\n         form data (application/x-www-form-urlencoded) sent via\n         POST. You can use POST to pass request parameters not\n         fitting into the URL.\n         \n         *** WARNING ***\n         The settings below authorize Solr to fetch remote files, You\n         should make sure your system has some authentication before\n         using enableRemoteStreaming=\"true\"\n\n      --> \n    <requestParsers enableRemoteStreaming=\"true\" \n                    multipartUploadLimitInKB=\"2048000\"\n                    formdataUploadLimitInKB=\"2048\"/>\n\n    <!-- HTTP Caching\n\n         Set HTTP caching related parameters (for proxy caches and clients).\n\n         The options below instruct Solr not to output any HTTP Caching\n         related headers\n      -->\n    <httpCaching never304=\"true\" />\n    <!-- If you include a <cacheControl> directive, it will be used to\n         generate a Cache-Control header (as well as an Expires header\n         if the value contains \"max-age=\")\n         \n         By default, no Cache-Control header is generated.\n         \n         You can use the <cacheControl> option even if you have set\n         never304=\"true\"\n      -->\n    <!--\n       <httpCaching never304=\"true\" >\n         <cacheControl>max-age=30, public</cacheControl> \n       </httpCaching>\n      -->\n    <!-- To enable Solr to respond with automatically generated HTTP\n         Caching headers, and to response to Cache Validation requests\n         correctly, set the value of never304=\"false\"\n         \n         This will cause Solr to generate Last-Modified and ETag\n         headers based on the properties of the Index.\n\n         The following options can also be specified to affect the\n         values of these headers...\n\n         lastModFrom - the default value is \"openTime\" which means the\n         Last-Modified value (and validation against If-Modified-Since\n         requests) will all be relative to when the current Searcher\n         was opened.  You can change it to lastModFrom=\"dirLastMod\" if\n         you want the value to exactly correspond to when the physical\n         index was last modified.\n\n         etagSeed=\"...\" is an option you can change to force the ETag\n         header (and validation against If-None-Match requests) to be\n         different even if the index has not changed (ie: when making\n         significant changes to your config file)\n\n         (lastModifiedFrom and etagSeed are both ignored if you use\n         the never304=\"true\" option)\n      -->\n    <!--\n       <httpCaching lastModifiedFrom=\"openTime\"\n                    etagSeed=\"Solr\">\n         <cacheControl>max-age=30, public</cacheControl> \n       </httpCaching>\n      -->\n  </requestDispatcher>\n\n  <!-- Request Handlers \n\n       http://wiki.apache.org/solr/SolrRequestHandler\n\n       Incoming queries will be dispatched to a specific handler by name\n       based on the path specified in the request.\n\n       Legacy behavior: If the request path uses \"/select\" but no Request\n       Handler has that name, and if handleSelect=\"true\" has been specified in\n       the requestDispatcher, then the Request Handler is dispatched based on\n       the qt parameter.  Handlers without a leading '/' are accessed this way\n       like so: http://host/app/[core/]select?qt=name  If no qt is\n       given, then the requestHandler that declares default=\"true\" will be\n       used or the one named \"standard\".\n\n       If a Request Handler is declared with startup=\"lazy\", then it will\n       not be initialized until the first request that uses it.\n\n    -->\n  <!-- SearchHandler\n\n       http://wiki.apache.org/solr/SearchHandler\n\n       For processing Search Queries, the primary Request Handler\n       provided with Solr is \"SearchHandler\" It delegates to a sequent\n       of SearchComponents (see below) and supports distributed\n       queries across multiple shards\n    -->\n  <requestHandler name=\"/select\" class=\"solr.SearchHandler\">\n    <!-- default values for query parameters can be specified, these\n         will be overridden by parameters in the request\n      -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <int name=\"rows\">10</int>\n       <str name=\"df\">rel</str>\n     </lst>\n    <!-- In addition to defaults, \"appends\" params can be specified\n         to identify values which should be appended to the list of\n         multi-val params from the query (or the existing \"defaults\").\n      -->\n    <!-- In this example, the param \"fq=instock:true\" would be appended to\n         any query time fq params the user may specify, as a mechanism for\n         partitioning the index, independent of any user selected filtering\n         that may also be desired (perhaps as a result of faceted searching).\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"appends\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <!--\n       <lst name=\"appends\">\n         <str name=\"fq\">inStock:true</str>\n       </lst>\n      -->\n    <!-- \"invariants\" are a way of letting the Solr maintainer lock down\n         the options available to Solr clients.  Any params values\n         specified here are used regardless of what values may be specified\n         in either the query, the \"defaults\", or the \"appends\" params.\n\n         In this example, the facet.field and facet.query params would\n         be fixed, limiting the facets clients can use.  Faceting is\n         not turned on by default - but if the client does specify\n         facet=true in the request, these are the only facets they\n         will be able to see counts for; regardless of what other\n         facet.field or facet.query params they may specify.\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"invariants\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <!--\n       <lst name=\"invariants\">\n         <str name=\"facet.field\">cat</str>\n         <str name=\"facet.field\">manu_exact</str>\n         <str name=\"facet.query\">price:[* TO 500]</str>\n         <str name=\"facet.query\">price:[500 TO *]</str>\n       </lst>\n      -->\n    <!-- If the default list of SearchComponents is not desired, that\n         list can either be overridden completely, or components can be\n         prepended or appended to the default list.  (see below)\n      -->\n    <!--\n       <arr name=\"components\">\n         <str>nameOfCustomComponent1</str>\n         <str>nameOfCustomComponent2</str>\n       </arr>\n      -->\n    </requestHandler>\n\n  <!-- A request handler that returns indented JSON by default -->\n  <requestHandler name=\"/query\" class=\"solr.SearchHandler\">\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <str name=\"wt\">json</str>\n       <str name=\"indent\">true</str>\n       <str name=\"df\">rel</str>\n     </lst>\n  </requestHandler>\n\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields of\n       any document, without the need to commit or open a new searcher.  The\n       current implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n     <lst name=\"defaults\">\n       <str name=\"omitHeader\">true</str>\n       <str name=\"wt\">json</str>\n       <str name=\"indent\">true</str>\n     </lst>\n  </requestHandler>\n\n \n  <!-- A Robust Example \n       \n       This example SearchHandler declaration shows off usage of the\n       SearchHandler with many defaults declared\n\n       Note that multiple instances of the same Request Handler\n       (SearchHandler) can be registered multiple times with different\n       names (and different init parameters)\n    -->\n  <requestHandler name=\"/browse\" class=\"solr.SearchHandler\">\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n\n       <!-- VelocityResponseWriter settings -->\n       <str name=\"wt\">velocity</str>\n       <str name=\"v.template\">browse</str>\n       <str name=\"v.layout\">layout</str>\n       <str name=\"title\">Solritas</str>\n\n       <!-- Query settings -->\n       <str name=\"defType\">edismax</str>\n       <str name=\"qf\">\n          text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n          title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0\n       </str>\n       <str name=\"df\">rel</str>\n       <str name=\"mm\">100%</str>\n       <str name=\"q.alt\">*:*</str>\n       <str name=\"rows\">10</str>\n       <str name=\"fl\">*,score</str>\n\n       <str name=\"mlt.qf\">\n         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n         title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0\n       </str>\n       <str name=\"mlt.fl\">text,features,name,sku,id,manu,cat,title,description,keywords,author,resourcename</str>\n       <int name=\"mlt.count\">3</int>\n\n       <!-- Faceting defaults -->\n       <str name=\"facet\">on</str>\n       <str name=\"facet.field\">cat</str>\n       <str name=\"facet.field\">manu_exact</str>\n       <str name=\"facet.field\">content_type</str>\n       <str name=\"facet.field\">author_s</str>\n       <str name=\"facet.query\">ipod</str>\n       <str name=\"facet.query\">GB</str>\n       <str name=\"facet.mincount\">1</str>\n       <str name=\"facet.pivot\">cat,inStock</str>\n       <str name=\"facet.range.other\">after</str>\n       <str name=\"facet.range\">price</str>\n       <int name=\"f.price.facet.range.start\">0</int>\n       <int name=\"f.price.facet.range.end\">600</int>\n       <int name=\"f.price.facet.range.gap\">50</int>\n       <str name=\"facet.range\">popularity</str>\n       <int name=\"f.popularity.facet.range.start\">0</int>\n       <int name=\"f.popularity.facet.range.end\">10</int>\n       <int name=\"f.popularity.facet.range.gap\">3</int>\n       <str name=\"facet.range\">manufacturedate_dt</str>\n       <str name=\"f.manufacturedate_dt.facet.range.start\">NOW/YEAR-10YEARS</str>\n       <str name=\"f.manufacturedate_dt.facet.range.end\">NOW</str>\n       <str name=\"f.manufacturedate_dt.facet.range.gap\">+1YEAR</str>\n       <str name=\"f.manufacturedate_dt.facet.range.other\">before</str>\n       <str name=\"f.manufacturedate_dt.facet.range.other\">after</str>\n\n       <!-- Highlighting defaults -->\n       <str name=\"hl\">on</str>\n       <str name=\"hl.fl\">content features title name</str>\n       <str name=\"hl.encoder\">html</str>\n       <str name=\"hl.simple.pre\">&lt;b&gt;</str>\n       <str name=\"hl.simple.post\">&lt;/b&gt;</str>\n       <str name=\"f.title.hl.fragsize\">0</str>\n       <str name=\"f.title.hl.alternateField\">title</str>\n       <str name=\"f.name.hl.fragsize\">0</str>\n       <str name=\"f.name.hl.alternateField\">name</str>\n       <str name=\"f.content.hl.snippets\">3</str>\n       <str name=\"f.content.hl.fragsize\">200</str>\n       <str name=\"f.content.hl.alternateField\">content</str>\n       <str name=\"f.content.hl.maxAlternateFieldLength\">750</str>\n\n       <!-- Spell checking defaults -->\n       <str name=\"spellcheck\">on</str>\n       <str name=\"spellcheck.extendedResults\">false</str>       \n       <str name=\"spellcheck.count\">5</str>\n       <str name=\"spellcheck.alternativeTermCount\">2</str>\n       <str name=\"spellcheck.maxResultsForSuggest\">5</str>       \n       <str name=\"spellcheck.collate\">true</str>\n       <str name=\"spellcheck.collateExtendedResults\">true</str>  \n       <str name=\"spellcheck.maxCollationTries\">5</str>\n       <str name=\"spellcheck.maxCollations\">3</str>           \n     </lst>\n\n     <!-- append spellchecking to our list of components -->\n     <arr name=\"last-components\">\n       <str>spellcheck</str>\n     </arr>\n  </requestHandler>\n\n\n  <!-- Update Request Handler.  \n       \n       http://wiki.apache.org/solr/UpdateXmlMessages\n\n       The canonical Request Handler for Modifying the Index through\n       commands specified using XML, JSON, CSV, or JAVABIN\n\n       Note: Since solr1.1 requestHandlers requires a valid content\n       type header if posted in the body. For example, curl now\n       requires: -H 'Content-type:text/xml; charset=utf-8'\n       \n       To override the request content type and force a specific \n       Content-type, use the request parameter: \n         ?update.contentType=text/csv\n       \n       This handler will pick a response format to match the input\n       if the 'wt' parameter is not explicit\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\">\n    <!-- See below for information on defining \n         updateRequestProcessorChains that can be used by name \n         on each Update Request\n      -->\n    <!--\n       <lst name=\"defaults\">\n         <str name=\"update.chain\">dedupe</str>\n       </lst>\n       -->\n  </requestHandler>\n\n  <!-- for back compat with clients using /update/json and /update/csv -->  \n  <requestHandler name=\"/update/json\" class=\"solr.JsonUpdateRequestHandler\">\n        <lst name=\"defaults\">\n         <str name=\"stream.contentType\">application/json</str>\n       </lst>\n  </requestHandler>\n  <requestHandler name=\"/update/csv\" class=\"solr.CSVRequestHandler\">\n        <lst name=\"defaults\">\n         <str name=\"stream.contentType\">application/csv</str>\n       </lst>\n  </requestHandler>\n\n  <!-- Solr Cell Update Request Handler\n\n       http://wiki.apache.org/solr/ExtractingRequestHandler \n\n    -->\n  <requestHandler name=\"/update/extract\" \n                  startup=\"lazy\"\n                  class=\"solr.extraction.ExtractingRequestHandler\" >\n    <lst name=\"defaults\">\n      <str name=\"lowernames\">true</str>\n      <str name=\"uprefix\">ignored_</str>\n\n      <!-- capture link hrefs but ignore div attributes -->\n      <str name=\"captureAttr\">true</str>\n      <str name=\"fmap.a\">links</str>\n      <str name=\"fmap.div\">ignored_</str>\n    </lst>\n  </requestHandler>\n\n\n  <!-- Field Analysis Request Handler\n\n       RequestHandler that provides much the same functionality as\n       analysis.jsp. Provides the ability to specify multiple field\n       types and field names in the same request and outputs\n       index-time and query-time analysis for each of them.\n\n       Request parameters are:\n       analysis.fieldname - field name whose analyzers are to be used\n\n       analysis.fieldtype - field type whose analyzers are to be used\n       analysis.fieldvalue - text for index-time analysis\n       q (or analysis.q) - text for query time analysis\n       analysis.showmatch (true|false) - When set to true and when\n           query analysis is performed, the produced tokens of the\n           field value analysis will be marked as \"matched\" for every\n           token that is produces by the query analysis\n   -->\n  <requestHandler name=\"/analysis/field\" \n                  startup=\"lazy\"\n                  class=\"solr.FieldAnalysisRequestHandler\" />\n\n\n  <!-- Document Analysis Handler\n\n       http://wiki.apache.org/solr/AnalysisRequestHandler\n\n       An analysis handler that provides a breakdown of the analysis\n       process of provided documents. This handler expects a (single)\n       content stream with the following format:\n\n       <docs>\n         <doc>\n           <field name=\"id\">1</field>\n           <field name=\"name\">The Name</field>\n           <field name=\"text\">The Text Value</field>\n         </doc>\n         <doc>...</doc>\n         <doc>...</doc>\n         ...\n       </docs>\n\n    Note: Each document must contain a field which serves as the\n    unique key. This key is used in the returned response to associate\n    an analysis breakdown to the analyzed document.\n\n    Like the FieldAnalysisRequestHandler, this handler also supports\n    query analysis by sending either an \"analysis.query\" or \"q\"\n    request parameter that holds the query text to be analyzed. It\n    also supports the \"analysis.showmatch\" parameter which when set to\n    true, all field tokens that match the query tokens will be marked\n    as a \"match\". \n  -->\n  <requestHandler name=\"/analysis/document\" \n                  class=\"solr.DocumentAnalysisRequestHandler\" \n                  startup=\"lazy\" />\n\n  <!-- Admin Handlers\n\n       Admin Handlers - This will register all the standard admin\n       RequestHandlers.  \n    -->\n  <requestHandler name=\"/admin/\" \n                  class=\"solr.admin.AdminHandlers\" />\n  <!-- This single handler is equivalent to the following... -->\n  <!--\n     <requestHandler name=\"/admin/luke\"       class=\"solr.admin.LukeRequestHandler\" />\n     <requestHandler name=\"/admin/system\"     class=\"solr.admin.SystemInfoHandler\" />\n     <requestHandler name=\"/admin/plugins\"    class=\"solr.admin.PluginInfoHandler\" />\n     <requestHandler name=\"/admin/threads\"    class=\"solr.admin.ThreadDumpHandler\" />\n     <requestHandler name=\"/admin/properties\" class=\"solr.admin.PropertiesRequestHandler\" />\n     <requestHandler name=\"/admin/file\"       class=\"solr.admin.ShowFileRequestHandler\" >\n    -->\n  <!-- If you wish to hide files under ${solr.home}/conf, explicitly\n       register the ShowFileRequestHandler using: \n    -->\n  <!--\n     <requestHandler name=\"/admin/file\" \n                     class=\"solr.admin.ShowFileRequestHandler\" >\n       <lst name=\"invariants\">\n         <str name=\"hidden\">synonyms.txt</str> \n         <str name=\"hidden\">anotherfile.txt</str> \n       </lst>\n     </requestHandler>\n    -->\n\n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n\n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> \n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <!-- Solr Replication\n\n       The SolrReplicationHandler supports replicating indexes from a\n       \"master\" used for indexing and \"slaves\" used for queries.\n\n       http://wiki.apache.org/solr/SolrReplication \n\n       It is also necessary for SolrCloud to function (in Cloud mode, the\n       replication handler is used to bulk transfer segments when nodes \n       are added or need to recover).\n\n       https://wiki.apache.org/solr/SolrCloud/\n    -->\n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" > \n    <!--\n       To enable simple master/slave replication, uncomment one of the \n       sections below, depending on whether this solr instance should be\n       the \"master\" or a \"slave\".  If this instance is a \"slave\" you will \n       also need to fill in the masterUrl to point to a real machine.\n    -->\n    <!--\n       <lst name=\"master\">\n         <str name=\"replicateAfter\">commit</str>\n         <str name=\"replicateAfter\">startup</str>\n         <str name=\"confFiles\">schema.xml,stopwords.txt</str>\n       </lst>\n    -->\n    <!--\n       <lst name=\"slave\">\n         <str name=\"masterUrl\">http://your-master-hostname:8983/solr</str>\n         <str name=\"pollInterval\">00:00:60</str>\n       </lst>\n    -->\n  </requestHandler>\n\n  <!-- Search Components\n\n       Search components are registered to SolrCore and used by \n       instances of SearchHandler (which can access them by name)\n       \n       By default, the following components are available:\n       \n       <searchComponent name=\"query\"     class=\"solr.QueryComponent\" />\n       <searchComponent name=\"facet\"     class=\"solr.FacetComponent\" />\n       <searchComponent name=\"mlt\"       class=\"solr.MoreLikeThisComponent\" />\n       <searchComponent name=\"highlight\" class=\"solr.HighlightComponent\" />\n       <searchComponent name=\"stats\"     class=\"solr.StatsComponent\" />\n       <searchComponent name=\"debug\"     class=\"solr.DebugComponent\" />\n   \n       Default configuration in a requestHandler would look like:\n\n       <arr name=\"components\">\n         <str>query</str>\n         <str>facet</str>\n         <str>mlt</str>\n         <str>highlight</str>\n         <str>stats</str>\n         <str>debug</str>\n       </arr>\n\n       If you register a searchComponent to one of the standard names, \n       that will be used instead of the default.\n\n       To insert components before or after the 'standard' components, use:\n    \n       <arr name=\"first-components\">\n         <str>myFirstComponentName</str>\n       </arr>\n    \n       <arr name=\"last-components\">\n         <str>myLastComponentName</str>\n       </arr>\n\n       NOTE: The component registered with the name \"debug\" will\n       always be executed after the \"last-components\" \n       \n     -->\n  \n   <!-- Spell Check\n\n        The spell check component can return a list of alternative spelling\n        suggestions.  \n\n        http://wiki.apache.org/solr/SpellCheckComponent\n     -->\n  <searchComponent name=\"spellcheck\" class=\"solr.SpellCheckComponent\">\n\n    <str name=\"queryAnalyzerFieldType\">text_general</str>\n\n    <!-- Multiple \"Spell Checkers\" can be declared and used by this\n         component\n      -->\n\n    <!-- a spellchecker built from a field of the main index -->\n    <lst name=\"spellchecker\">\n      <str name=\"name\">default</str>\n      <str name=\"field\">rel</str>\n      <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n      <!-- the spellcheck distance measure used, the default is the internal levenshtein -->\n      <str name=\"distanceMeasure\">internal</str>\n      <!-- minimum accuracy needed to be considered a valid spellcheck suggestion -->\n      <float name=\"accuracy\">0.5</float>\n      <!-- the maximum #edits we consider when enumerating terms: can be 1 or 2 -->\n      <int name=\"maxEdits\">2</int>\n      <!-- the minimum shared prefix when enumerating terms -->\n      <int name=\"minPrefix\">1</int>\n      <!-- maximum number of inspections per result. -->\n      <int name=\"maxInspections\">5</int>\n      <!-- minimum length of a query term to be considered for correction -->\n      <int name=\"minQueryLength\">4</int>\n      <!-- maximum threshold of documents a query term can appear to be considered for correction -->\n      <float name=\"maxQueryFrequency\">0.01</float>\n      <!-- uncomment this to require suggestions to occur in 1% of the documents\n      \t<float name=\"thresholdTokenFrequency\">.01</float>\n      -->\n    </lst>\n    \n    <!-- a spellchecker that can break or combine words.  See \"/spell\" handler below for usage -->\n    <lst name=\"spellchecker\">\n      <str name=\"name\">wordbreak</str>\n      <str name=\"classname\">solr.WordBreakSolrSpellChecker</str>      \n      <str name=\"field\">name</str>\n      <str name=\"combineWords\">true</str>\n      <str name=\"breakWords\">true</str>\n      <int name=\"maxChanges\">10</int>\n    </lst>\n\n    <!-- a spellchecker that uses a different distance measure -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"name\">jarowinkler</str>\n         <str name=\"field\">spell</str>\n         <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n         <str name=\"distanceMeasure\">\n           org.apache.lucene.search.spell.JaroWinklerDistance\n         </str>\n       </lst>\n     -->\n\n    <!-- a spellchecker that use an alternate comparator \n\n         comparatorClass be one of:\n          1. score (default)\n          2. freq (Frequency first, then score)\n          3. A fully qualified class name\n      -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"name\">freq</str>\n         <str name=\"field\">lowerfilt</str>\n         <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n         <str name=\"comparatorClass\">freq</str>\n      -->\n\n    <!-- A spellchecker that reads the list of words from a file -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"classname\">solr.FileBasedSpellChecker</str>\n         <str name=\"name\">file</str>\n         <str name=\"sourceLocation\">spellings.txt</str>\n         <str name=\"characterEncoding\">UTF-8</str>\n         <str name=\"spellcheckIndexDir\">spellcheckerFile</str>\n       </lst>\n      -->\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the spellcheck component.  \n\n       NOTE: This is purely as an example.  The whole purpose of the\n       SpellCheckComponent is to hook it into the request handler that\n       handles your normal user queries so that a separate request is\n       not needed to get suggestions.\n\n       IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS\n       NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM!\n       \n       See http://wiki.apache.org/solr/SpellCheckComponent for details\n       on the request parameters.\n    -->\n  <requestHandler name=\"/spell\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"df\">rel</str>\n      <!-- Solr will use suggestions from both the 'default' spellchecker\n           and from the 'wordbreak' spellchecker and combine them.\n           collations (re-written queries) can include a combination of\n           corrections from both spellcheckers -->\n      <str name=\"spellcheck.dictionary\">default</str>\n      <str name=\"spellcheck.dictionary\">wordbreak</str>\n      <str name=\"spellcheck\">on</str>\n      <str name=\"spellcheck.extendedResults\">true</str>       \n      <str name=\"spellcheck.count\">10</str>\n      <str name=\"spellcheck.alternativeTermCount\">5</str>\n      <str name=\"spellcheck.maxResultsForSuggest\">5</str>       \n      <str name=\"spellcheck.collate\">true</str>\n      <str name=\"spellcheck.collateExtendedResults\">true</str>  \n      <str name=\"spellcheck.maxCollationTries\">10</str>\n      <str name=\"spellcheck.maxCollations\">5</str>         \n    </lst>\n    <arr name=\"last-components\">\n      <str>spellcheck</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Term Vector Component\n\n       http://wiki.apache.org/solr/TermVectorComponent\n    -->\n  <searchComponent name=\"tvComponent\" class=\"solr.TermVectorComponent\"/>\n\n  <!-- A request handler for demonstrating the term vector component\n\n       This is purely as an example.\n\n       In reality you will likely want to add the component to your \n       already specified request handlers. \n    -->\n  <requestHandler name=\"/tvrh\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"df\">rel</str>\n      <bool name=\"tv\">true</bool>\n    </lst>\n    <arr name=\"last-components\">\n      <str>tvComponent</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Clustering Component\n\n       http://wiki.apache.org/solr/ClusteringComponent\n\n       You'll need to set the solr.clustering.enabled system property\n       when running solr to run with clustering enabled:\n\n            java -Dsolr.clustering.enabled=true -jar start.jar\n\n    -->\n  <searchComponent name=\"clustering\"\n                   enable=\"${solr.clustering.enabled:false}\"\n                   class=\"solr.clustering.ClusteringComponent\" >\n    <!-- Declare an engine -->\n    <lst name=\"engine\">\n      <!-- The name, only one can be named \"default\" -->\n      <str name=\"name\">default</str>\n\n      <!-- Class name of Carrot2 clustering algorithm.\n\n           Currently available algorithms are:\n           \n           * org.carrot2.clustering.lingo.LingoClusteringAlgorithm\n           * org.carrot2.clustering.stc.STCClusteringAlgorithm\n           * org.carrot2.clustering.kmeans.BisectingKMeansClusteringAlgorithm\n           \n           See http://project.carrot2.org/algorithms.html for the\n           algorithm's characteristics.\n        -->\n      <str name=\"carrot.algorithm\">org.carrot2.clustering.lingo.LingoClusteringAlgorithm</str>\n\n      <!-- Overriding values for Carrot2 default algorithm attributes.\n\n           For a description of all available attributes, see:\n           http://download.carrot2.org/stable/manual/#chapter.components.\n           Use attribute key as name attribute of str elements\n           below. These can be further overridden for individual\n           requests by specifying attribute key as request parameter\n           name and attribute value as parameter value.\n        -->\n      <str name=\"LingoClusteringAlgorithm.desiredClusterCountBase\">20</str>\n\n      <!-- Location of Carrot2 lexical resources.\n\n           A directory from which to load Carrot2-specific stop words\n           and stop labels. Absolute or relative to Solr config directory.\n           If a specific resource (e.g. stopwords.en) is present in the\n           specified dir, it will completely override the corresponding\n           default one that ships with Carrot2.\n\n           For an overview of Carrot2 lexical resources, see:\n           http://download.carrot2.org/head/manual/#chapter.lexical-resources\n        -->\n      <str name=\"carrot.lexicalResourcesDir\">clustering/carrot2</str>\n\n      <!-- The language to assume for the documents.\n\n           For a list of allowed values, see:\n           http://download.carrot2.org/stable/manual/#section.attribute.lingo.MultilingualClustering.defaultLanguage\n       -->\n      <str name=\"MultilingualClustering.defaultLanguage\">ENGLISH</str>\n    </lst>\n    <lst name=\"engine\">\n      <str name=\"name\">stc</str>\n      <str name=\"carrot.algorithm\">org.carrot2.clustering.stc.STCClusteringAlgorithm</str>\n    </lst>\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the clustering component\n\n       This is purely as an example.\n\n       In reality you will likely want to add the component to your \n       already specified request handlers. \n    -->\n  <requestHandler name=\"/clustering\"\n                  startup=\"lazy\"\n                  enable=\"${solr.clustering.enabled:false}\"\n                  class=\"solr.SearchHandler\">\n    <lst name=\"defaults\">\n      <bool name=\"clustering\">true</bool>\n      <str name=\"clustering.engine\">default</str>\n      <bool name=\"clustering.results\">true</bool>\n      <!-- The title field -->\n      <str name=\"carrot.title\">name</str>\n      <str name=\"carrot.url\">id</str>\n      <!-- The field to cluster on -->\n       <str name=\"carrot.snippet\">features</str>\n       <!-- produce summaries -->\n       <bool name=\"carrot.produceSummary\">true</bool>\n       <!-- the maximum number of labels per cluster -->\n       <!--<int name=\"carrot.numDescriptions\">5</int>-->\n       <!-- produce sub clusters -->\n       <bool name=\"carrot.outputSubClusters\">false</bool>\n       \n       <str name=\"defType\">edismax</str>\n       <str name=\"qf\">\n         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n       </str>\n       <str name=\"q.alt\">*:*</str>\n       <str name=\"rows\">10</str>\n       <str name=\"fl\">*,score</str>\n    </lst>     \n    <arr name=\"last-components\">\n      <str>clustering</str>\n    </arr>\n  </requestHandler>\n  \n  <!-- Terms Component\n\n       http://wiki.apache.org/solr/TermsComponent\n\n       A component to return terms and document frequency of those\n       terms\n    -->\n  <searchComponent name=\"terms\" class=\"solr.TermsComponent\"/>\n\n  <!-- A request handler for demonstrating the terms component -->\n  <requestHandler name=\"/terms\" class=\"solr.SearchHandler\" startup=\"lazy\">\n     <lst name=\"defaults\">\n      <bool name=\"terms\">true</bool>\n      <bool name=\"distrib\">false</bool>\n    </lst>     \n    <arr name=\"components\">\n      <str>terms</str>\n    </arr>\n  </requestHandler>\n\n\n  <!-- Query Elevation Component\n\n       http://wiki.apache.org/solr/QueryElevationComponent\n\n       a search component that enables you to configure the top\n       results for a given query regardless of the normal lucene\n       scoring.\n    -->\n  <searchComponent name=\"elevator\" class=\"solr.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the elevator component -->\n  <requestHandler name=\"/elevate\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n      <str name=\"df\">rel</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Highlighting Component\n\n       http://wiki.apache.org/solr/HighlightingParameters\n    -->\n  <searchComponent class=\"solr.HighlightComponent\" name=\"highlight\">\n    <highlighting>\n      <!-- Configure the standard fragmenter -->\n      <!-- This could most likely be commented out in the \"default\" case -->\n      <fragmenter name=\"gap\" \n                  default=\"true\"\n                  class=\"solr.highlight.GapFragmenter\">\n        <lst name=\"defaults\">\n          <int name=\"hl.fragsize\">100</int>\n        </lst>\n      </fragmenter>\n\n      <!-- A regular-expression-based fragmenter \n           (for sentence extraction) \n        -->\n      <fragmenter name=\"regex\" \n                  class=\"solr.highlight.RegexFragmenter\">\n        <lst name=\"defaults\">\n          <!-- slightly smaller fragsizes work better because of slop -->\n          <int name=\"hl.fragsize\">70</int>\n          <!-- allow 50% slop on fragment sizes -->\n          <float name=\"hl.regex.slop\">0.5</float>\n          <!-- a basic sentence pattern -->\n          <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n        </lst>\n      </fragmenter>\n\n      <!-- Configure the standard formatter -->\n      <formatter name=\"html\" \n                 default=\"true\"\n                 class=\"solr.highlight.HtmlFormatter\">\n        <lst name=\"defaults\">\n          <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n          <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n        </lst>\n      </formatter>\n\n      <!-- Configure the standard encoder -->\n      <encoder name=\"html\" \n               class=\"solr.highlight.HtmlEncoder\" />\n\n      <!-- Configure the standard fragListBuilder -->\n      <fragListBuilder name=\"simple\" \n                       class=\"solr.highlight.SimpleFragListBuilder\"/>\n      \n      <!-- Configure the single fragListBuilder -->\n      <fragListBuilder name=\"single\" \n                       class=\"solr.highlight.SingleFragListBuilder\"/>\n      \n      <!-- Configure the weighted fragListBuilder -->\n      <fragListBuilder name=\"weighted\" \n                       default=\"true\"\n                       class=\"solr.highlight.WeightedFragListBuilder\"/>\n      \n      <!-- default tag FragmentsBuilder -->\n      <fragmentsBuilder name=\"default\" \n                        default=\"true\"\n                        class=\"solr.highlight.ScoreOrderFragmentsBuilder\">\n        <!-- \n        <lst name=\"defaults\">\n          <str name=\"hl.multiValuedSeparatorChar\">/</str>\n        </lst>\n        -->\n      </fragmentsBuilder>\n\n      <!-- multi-colored tag FragmentsBuilder -->\n      <fragmentsBuilder name=\"colored\" \n                        class=\"solr.highlight.ScoreOrderFragmentsBuilder\">\n        <lst name=\"defaults\">\n          <str name=\"hl.tag.pre\"><![CDATA[\n               <b style=\"background:yellow\">,<b style=\"background:lawgreen\">,\n               <b style=\"background:aquamarine\">,<b style=\"background:magenta\">,\n               <b style=\"background:palegreen\">,<b style=\"background:coral\">,\n               <b style=\"background:wheat\">,<b style=\"background:khaki\">,\n               <b style=\"background:lime\">,<b style=\"background:deepskyblue\">]]></str>\n          <str name=\"hl.tag.post\"><![CDATA[</b>]]></str>\n        </lst>\n      </fragmentsBuilder>\n      \n      <boundaryScanner name=\"default\" \n                       default=\"true\"\n                       class=\"solr.highlight.SimpleBoundaryScanner\">\n        <lst name=\"defaults\">\n          <str name=\"hl.bs.maxScan\">10</str>\n          <str name=\"hl.bs.chars\">.,!? &#9;&#10;&#13;</str>\n        </lst>\n      </boundaryScanner>\n      \n      <boundaryScanner name=\"breakIterator\" \n                       class=\"solr.highlight.BreakIteratorBoundaryScanner\">\n        <lst name=\"defaults\">\n          <!-- type should be one of CHARACTER, WORD(default), LINE and SENTENCE -->\n          <str name=\"hl.bs.type\">WORD</str>\n          <!-- language and country are used when constructing Locale object.  -->\n          <!-- And the Locale object will be used when getting instance of BreakIterator -->\n          <str name=\"hl.bs.language\">en</str>\n          <str name=\"hl.bs.country\">US</str>\n        </lst>\n      </boundaryScanner>\n    </highlighting>\n  </searchComponent>\n\n  <!-- Update Processors\n\n       Chains of Update Processor Factories for dealing with Update\n       Requests can be declared, and then used by name in Update\n       Request Processors\n\n       http://wiki.apache.org/solr/UpdateRequestProcessor\n\n    --> \n  <!-- Deduplication\n\n       An example dedup update processor that creates the \"id\" field\n       on the fly based on the hash code of some other fields.  This\n       example has overwriteDupes set to false since we are using the\n       id field as the signatureField and Solr will maintain\n       uniqueness based on that anyway.  \n       \n    -->\n  <!--\n     <updateRequestProcessorChain name=\"dedupe\">\n       <processor class=\"solr.processor.SignatureUpdateProcessorFactory\">\n         <bool name=\"enabled\">true</bool>\n         <str name=\"signatureField\">id</str>\n         <bool name=\"overwriteDupes\">false</bool>\n         <str name=\"fields\">name,features,cat</str>\n         <str name=\"signatureClass\">solr.processor.Lookup3Signature</str>\n       </processor>\n       <processor class=\"solr.LogUpdateProcessorFactory\" />\n       <processor class=\"solr.RunUpdateProcessorFactory\" />\n     </updateRequestProcessorChain>\n    -->\n  \n  <!-- Language identification\n\n       This example update chain identifies the language of the incoming\n       documents using the langid contrib. The detected language is\n       written to field language_s. No field name mapping is done.\n       The fields used for detection are text, title, subject and description,\n       making this example suitable for detecting languages form full-text\n       rich documents injected via ExtractingRequestHandler.\n       See more about langId at http://wiki.apache.org/solr/LanguageDetection\n    -->\n    <!--\n     <updateRequestProcessorChain name=\"langid\">\n       <processor class=\"org.apache.solr.update.processor.TikaLanguageIdentifierUpdateProcessorFactory\">\n         <str name=\"langid.fl\">text,title,subject,description</str>\n         <str name=\"langid.langField\">language_s</str>\n         <str name=\"langid.fallback\">en</str>\n       </processor>\n       <processor class=\"solr.LogUpdateProcessorFactory\" />\n       <processor class=\"solr.RunUpdateProcessorFactory\" />\n     </updateRequestProcessorChain>\n    -->\n\n  <!-- Script update processor\n\n    This example hooks in an update processor implemented using JavaScript.\n\n    See more about the script update processor at http://wiki.apache.org/solr/ScriptUpdateProcessor\n  -->\n  <!--\n    <updateRequestProcessorChain name=\"script\">\n      <processor class=\"solr.StatelessScriptUpdateProcessorFactory\">\n        <str name=\"script\">update-script.js</str>\n        <lst name=\"params\">\n          <str name=\"config_param\">example config parameter</str>\n        </lst>\n      </processor>\n      <processor class=\"solr.RunUpdateProcessorFactory\" />\n    </updateRequestProcessorChain>\n  -->\n \n  <!-- Response Writers\n\n       http://wiki.apache.org/solr/QueryResponseWriter\n\n       Request responses will be written using the writer specified by\n       the 'wt' request parameter matching the name of a registered\n       writer.\n\n       The \"default\" writer is the default and will be used if 'wt' is\n       not specified in the request.\n    -->\n  <!-- The following response writers are implicitly configured unless\n       overridden...\n    -->\n  <!--\n     <queryResponseWriter name=\"xml\" \n                          default=\"true\"\n                          class=\"solr.XMLResponseWriter\" />\n     <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n     <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n     <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n     <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n     <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n     <queryResponseWriter name=\"csv\" class=\"solr.CSVResponseWriter\"/>\n     <queryResponseWriter name=\"schema.xml\" class=\"solr.SchemaXmlResponseWriter\"/>\n    -->\n\n  <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\">\n     <!-- For the purposes of the tutorial, JSON responses are written as\n      plain text so that they are easy to read in *any* browser.\n      If you expect a MIME type of \"application/json\" just remove this override.\n     -->\n    <str name=\"content-type\">text/plain; charset=UTF-8</str>\n  </queryResponseWriter>\n  \n  <!--\n     Custom response writers can be declared as needed...\n    -->\n    <queryResponseWriter name=\"velocity\" class=\"solr.VelocityResponseWriter\" startup=\"lazy\"/>\n  \n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n    -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter>\n\n  <!-- Query Parsers\n\n       http://wiki.apache.org/solr/SolrQuerySyntax\n\n       Multiple QParserPlugins can be registered by name, and then\n       used in either the \"defType\" param for the QueryComponent (used\n       by SearchHandler) or in LocalParams\n    -->\n  <!-- example of registering a query parser -->\n  <!--\n     <queryParser name=\"myparser\" class=\"com.mycompany.MyQParserPlugin\"/>\n    -->\n\n  <!-- Function Parsers\n\n       http://wiki.apache.org/solr/FunctionQuery\n\n       Multiple ValueSourceParsers can be registered by name, and then\n       used as function names when using the \"func\" QParser.\n    -->\n  <!-- example of registering a custom function parser  -->\n  <!--\n     <valueSourceParser name=\"myfunc\" \n                        class=\"com.mycompany.MyValueSourceParser\" />\n    -->\n    \n  \n  <!-- Document Transformers\n       http://wiki.apache.org/solr/DocTransformers\n    -->\n  <!--\n     Could be something like:\n     <transformer name=\"db\" class=\"com.mycompany.LoadFromDatabaseTransformer\" >\n       <int name=\"connection\">jdbc://....</int>\n     </transformer>\n     \n     To add a constant value to all docs, use:\n     <transformer name=\"mytrans2\" class=\"org.apache.solr.response.transform.ValueAugmenterFactory\" >\n       <int name=\"value\">5</int>\n     </transformer>\n     \n     If you want the user to still be able to change it with _value:something_ use this:\n     <transformer name=\"mytrans3\" class=\"org.apache.solr.response.transform.ValueAugmenterFactory\" >\n       <double name=\"defaultValue\">5</double>\n     </transformer>\n\n      If you are using the QueryElevationComponent, you may wish to mark documents that get boosted.  The\n      EditorialMarkerFactory will do exactly that:\n     <transformer name=\"qecBooster\" class=\"org.apache.solr.response.transform.EditorialMarkerFactory\" />\n    -->\n    \n\n  <!-- Legacy config for the admin interface -->\n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/spellings.txt",
    "content": "pizza\nhistory"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaafoo => aaabar\nbbbfoo => bbbfoo bbbbar\ncccfoo => cccbar cccbaz\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/update-script.js",
    "content": "/*\n  This is a basic skeleton JavaScript update processor.\n\n  In order for this to be executed, it must be properly wired into solrconfig.xml; by default it is commented out in\n  the example solrconfig.xml and must be uncommented to be enabled.\n\n  See http://wiki.apache.org/solr/ScriptUpdateProcessor for more details.\n*/\n\nfunction processAdd(cmd) {\n\n  doc = cmd.solrDoc;  // org.apache.solr.common.SolrInputDocument\n  id = doc.getFieldValue(\"id\");\n  logger.info(\"update-script#processAdd: id=\" + id);\n\n// Set a field value:\n//  doc.setField(\"foo_s\", \"whatever\");\n\n// Get a configuration parameter:\n//  config_param = params.get('config_param');  // \"params\" only exists if processor configured with <lst name=\"params\">\n\n// Get a request parameter:\n// some_param = req.getParams().get(\"some_param\")\n\n// Add a field of field names that match a pattern:\n//   - Potentially useful to determine the fields/attributes represented in a result set, via faceting on field_name_ss\n//  field_names = doc.getFieldNames().toArray();\n//  for(i=0; i < field_names.length; i++) {\n//    field_name = field_names[i];\n//    if (/attr_.*/.test(field_name)) { doc.addField(\"attribute_ss\", field_names[i]); }\n//  }\n\n}\n\nfunction processDelete(cmd) {\n  // no-op\n}\n\nfunction processMergeIndexes(cmd) {\n  // no-op\n}\n\nfunction processCommit(cmd) {\n  // no-op\n}\n\nfunction processRollback(cmd) {\n  // no-op\n}\n\nfunction finish() {\n  // no-op\n}\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/VM_global_library.vm",
    "content": "\n#macro(param $key)$request.params.get($key)#end\n\n#macro(url_root)/solr#end\n\n## TODO: s/url_for_solr/url_for_core/ and s/url_root/url_for_solr/\n#macro(core_name)$request.core.name#end\n#macro(url_for_solr)#{url_root}#if($request.core.name != \"\")/$request.core.name#end#end\n#macro(url_for_home)#url_for_solr/browse#end\n\n#macro(q)&q=$!{esc.url($params.get('q'))}#end\n\n#macro(fqs $p)#foreach($fq in $p)#if($velocityCount>1)&#{end}fq=$esc.url($fq)#end#end\n\n#macro(debug)#if($request.params.get('debugQuery'))&debugQuery=true#end#end\n\n#macro(boostPrice)#if($request.params.get('bf') == 'price')&bf=price#end#end        \n\n#macro(annotate)#if($request.params.get('annotateBrowse'))&annotateBrowse=true#end#end\n\n#macro(annTitle $msg)#if($annotate == true)title=\"$msg\"#end#end\n\n#macro(spatial)#if($request.params.get('sfield'))&sfield=store#end#if($request.params.get('pt'))&pt=$request.params.get('pt')#end#if($request.params.get('d'))&d=$request.params.get('d')#end#end\n\n#macro(qOpts)#set($queryOpts = $request.params.get(\"queryOpts\"))#if($queryOpts && $queryOpts != \"\")&queryOpts=$queryOpts#end#end\n\n#macro(group)#if($request.params.getBool(\"group\") == true)&group=true#end#if($request.params.get(\"group.field\"))#foreach($grp in $request.params.getParams('group.field'))&group.field=$grp#end#end#end\n\n#macro(sort $p)#if($p)#foreach($s in $p)&sort=$esc.url($s)#end#end#end\n\n#macro(lensNoQ)?#if($request.params.getParams('fq') and $list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#sort($request.params.getParams('sort'))#debug#boostPrice#annotate#spatial#qOpts#group#end\n#macro(lens)#lensNoQ#q#end\n        \n\n#macro(url_for_lens)#{url_for_home}#lens#end\n\n#macro(url_for_start $start)#url_for_home#lens&start=$start#end\n\n#macro(url_for_filters $p)#url_for_home?#q#boostPrice#spatial#qOpts#if($list.size($p) > 0)&#fqs($p)#end#debug#end\n\n#macro(url_for_nested_facet_query $field)#url_for_home#lens&fq=$esc.url($field)#end\n\n## TODO: convert to use {!raw f=$field}$value (with escaping of course)\n#macro(url_for_facet_filter $field $value)#url_for_home#lens&fq=$esc.url($field):%22$esc.url($value)%22#end\n\n#macro(url_for_facet_date_filter $field $value)#url_for_home#lens&fq=$esc.url($field):$esc.url($value)#end\n\n#macro(url_for_facet_range_filter $field $value)#url_for_home#lens&fq=$esc.url($field):$esc.url($value)#end\n\n\n#macro(link_to_previous_page $text)\n  #if($page.current_page_number > 1)\n    #set($prev_start = $page.start - $page.results_per_page)\n    <a class=\"prev-page\" href=\"#url_for_start($prev_start)\">$text</a>\n  #end\n#end\n\n#macro(link_to_next_page $text)\n  #if($page.current_page_number < $page.page_count)\n    #set($next_start = $page.start + $page.results_per_page)\n    <a class=\"next-page\" href=\"#url_for_start($next_start)\">$text</a>\n  #end\n#end\n\n#macro(link_to_page $page_number $text)\n  #if($page_number == $page.current_page_number)\n    $text\n  #else\n    #if($page_number <= $page.page_count)\n      #set($page_start = $page_number * $page.results_per_page - $page.results_per_page)\n      <a class=\"page\" href=\"#url_for_start($page_start)\">$text</a>\n    #end\n  #end\n#end\n\n#macro(display_facet_query $field, $display, $fieldName)\n  #if($field.size() > 0)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n    #foreach ($facet in $field)\n      #if ($facet.value > 0)\n        #set($facetURL = \"#url_for_nested_facet_query($facet.key)\")\n        #if ($facetURL != '')\n          <li><a href=\"$facetURL\">$facet.key</a> ($facet.value)</li>\n        #end\n      #end\n    #end\n    </ul>\n  #end      \n#end\n\n\n#macro(display_facet_range $field, $display, $fieldName, $start, $end, $gap, $before, $after)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n    #if($before && $before != \"\")\n      #set($value = \"[* TO \" + \"#format_value($start)\" + \"}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      <li><a href=\"$facetURL\">Less than #format_value($start)</a> ($before)</li>\n    #end\n    #foreach ($facet in $field)\n      #set($rangeEnd = \"#range_get_to_value($facet.key, $gap)\")\n      #set($value = \"[\" + $facet.key + \" TO \" + $rangeEnd + \"}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      #if ($facetURL != '')\n        <li><a href=\"$facetURL\">$facet.key - #format_value($rangeEnd)</a> ($facet.value)</li>\n      #end\n    #end\n    #if($end && $end != \"\" && $after > 0)\n      #set($value = \"[\" + \"#format_value($end)\" + \" TO *}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      <li><a href=\"$facetURL\">More than #format_value($end)</a> ($after)</li>\n    #end\n    </ul>\n#end\n\n## $pivots is a list of facet_pivot\n#macro(display_facet_pivot $pivots, $display)\n  #if($pivots.size() > 0)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n      #foreach ($pivot in $pivots)\n        #foreach ($entry in $pivot.value)\n          <a href=\"#url_for_facet_filter($entry.field, $entry.value)\">$entry.field::$entry.value</a> ($entry.count)\n          <ul>\n            #foreach($nest in $entry.pivot)\n              <a href=\"#url_for_facet_filter($entry.field, $entry.value)&fq=$esc.url($nest.field):%22$esc.url($nest.value)%22\">$nest.field::$nest.value</a> ($nest.count)\n            #end\n          </ul>\n        #end\n      #end\n    </ul>\n  #end\n#end\n\n#macro(field $f)\n  #if($response.response.highlighting.get($docId).get($f).get(0))\n    #set($pad = \"\")\n    #foreach($v in $response.response.highlighting.get($docId).get($f))\n$pad$v##\n      #set($pad = \" ... \")\n    #end\n  #else\n    #foreach($v in $doc.getFieldValues($f))\n$v##\n    #end\n  #end\n#end  \n\n#macro(utc_date $theDate)\n$date.format(\"yyyy-MM-dd'T'HH:mm:ss'Z'\",$theDate,$date.getLocale(),$date.getTimeZone().getTimeZone(\"UTC\"))##\n#end\n\n#macro(format_value $val)\n#if(${val.class.name} == \"java.util.Date\")\n#utc_date($val)##\n#else\n$val##\n#end\n#end\n\n#macro(range_get_to_value $inval, $gapval)\n#if(${gapval.class.name} == \"java.lang.String\")\n$inval$gapval##\n#elseif(${gapval.class.name} == \"java.lang.Float\" || ${inval.class.name} == \"java.lang.Float\")\n$math.toDouble($math.add($inval,$gapval))##\n#else\n$math.add($inval,$gapval)##\n#end\n#end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/browse.vm",
    "content": "#set($searcher=$request.searcher)\n#set($params=$request.params)\n#set($clusters = $response.response.clusters)\n#set($mltResults = $response.response.get(\"moreLikeThis\"))\n#set($annotate = $params.get(\"annotateBrowse\"))\n#parse('query.vm')\n#parse('did_you_mean.vm')\n\n<div class=\"navigators\">\n  #parse(\"facets.vm\")\n</div>\n\n<div class=\"pagination\">\n  #if($response.response.get('grouped'))\n    <span><span class=\"results-found\">$response.response.get('grouped').size() group(s)</span> found in ${response.responseHeader.QTime} ms</span>\n  #else<span><span class=\"results-found\">$page.results_found</span> results found in ${response.responseHeader.QTime} ms</span>\n  Page <span class=\"page-num\">$page.current_page_number</span> of <span\n        class=\"page-count\">$page.page_count</span>#end\n</div>\n\n<div class=\"error\">\n  #if(${response.response.error.code})\n    <h1>ERROR ${response.response.error.code}</h1>\n    ${response.response.error.msg}\n  #end\n</div>\n\n<div class=\"results\">\n  #if($response.response.get('grouped'))\n    #foreach($grouping in $response.response.get('grouped'))\n      #parse(\"hitGrouped.vm\")\n    #end\n  #else\n    #foreach($doc in $response.results)\n      #parse(\"hit.vm\")\n    #end\n  #end\n</div>\n\n<div class=\"pagination\">\n  #if($response.response.get('grouped'))\n  #else\n  #link_to_previous_page(\"previous\")\n  <span class=\"results-found\">$page.results_found</span> results found.\n  Page <span class=\"page-num\">$page.current_page_number</span> of <span\n        class=\"page-count\">$page.page_count</span>\n  #link_to_next_page(\"next\")\n  #end\n  <br/>\n</div>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/cluster.vm",
    "content": "<h2 #annTitle(\"Clusters generated by Carrot2 using the /clustering RequestHandler\")>Clusters</h2>\n<div id=\"clusters\">\n  Run Solr with java -Dsolr.clustering.enabled=true -jar start.jar to see results\n</div>\n<script type=\"text/javascript\">\n\n  $('#clusters').load(\"#url_for_solr/clustering#lens\",\n    {'wt':'velocity', 'v.template':\"clusterResults\"});\n</script>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/clusterResults.vm",
    "content": "#foreach ($clusters in $response.response.clusters)\n    #set($labels = $clusters.get('labels'))\n    #set($docs = $clusters.get('docs'))\n    <h3>#foreach ($label in $labels)$label#if( $foreach.hasNext ),#end#end</h3>\n        <ol>\n        #foreach ($cluDoc in $docs)\n          <li><a href=\"#url_for_home?q=id:$cluDoc\">$cluDoc</a></li>\n        #end\n        </ol>\n        \n    \n#end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/debug.vm",
    "content": "#if($params.getBool(\"debugQuery\",false))\n  <a href=\"#\" onclick='jQuery(this).siblings(\"pre\").toggle(); return false;'>toggle explain</a>\n  <pre style=\"display:none\">$response.getExplainMap().get($doc.getFirstValue('id'))</pre>\n  <a href=\"#\" onclick='jQuery(this).siblings(\"pre2\").toggle(); return false;'>toggle all fields</a>\n  <pre2 style=\"display:none\">\n  #foreach($fieldname in $doc.fieldNames)\n     <br>\n       <span class=\"field-name\">$fieldname :</span>\n       <span>\n       #foreach($value in $doc.getFieldValues($fieldname))\n         $esc.html($value)\n       #end\n       </span>\n  #end\n   </br>\n  </pre2>\n#end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/did_you_mean.vm",
    "content": "#set($dym = $response.response.spellcheck.suggestions.collation.collationQuery)\n#if($dym)\n  Did you mean <a href=\"#{url_for_home}#{lensNoQ}&q=$esc.url($dym)\">$esc.html($dym)</a>?\n#end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facet_fields.vm",
    "content": "#if($response.facetFields)\n    <h2 #annTitle(\"Facets generated by adding &facet.field= to the request\")>Field Facets</h2>\n    #foreach($field in $response.facetFields)\n      ## Hide facets without value\n      #if($field.values.size() > 0)\n      <span class=\"facet-field\">$field.name</span>\n\n      <ul>\n        #foreach($facet in $field.values)\n            <li><a href=\"#url_for_facet_filter($field.name, $facet.name)\">$facet.name</a> ($facet.count)</li>\n        #end\n      </ul>\n      #end\n    #end\n  #end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facet_pivot.vm",
    "content": "<h2 #annTitle(\"Facets generated by adding &facet.pivot= to the request\")>Pivot Facets</h2>\n#set($pivot = $response.response.facet_counts.facet_pivot)\n#display_facet_pivot($pivot, \"\")\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facet_queries.vm",
    "content": "#set($field = $response.response.facet_counts.facet_queries)\n<h2 #annTitle(\"Facets generated by adding &facet.query= to the request\")>Query Facets</h2>        \n#display_facet_query($field, \"\", \"\")"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facet_ranges.vm",
    "content": "<h2 #annTitle(\"Facets generated by adding &facet.range= to the request\")>Range Facets</h2>\n#foreach ($field in $response.response.facet_counts.facet_ranges)\n  ## Hide facets without value\n  #if($field.value.counts.size() > 0)\n\t#set($name = $field.key)\n\t#set($display = $name)\n\t#set($f = $field.value.counts)\n\t#set($start = $field.value.start)\n\t#set($end = $field.value.end)\n\t#set($gap = $field.value.gap)\n\t#set($before = $field.value.before)\n\t#set($after = $field.value.after)\n\t#display_facet_range($f, $display, $name, $start, $end, $gap, $before, $after)\n  #end\n#end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facets.vm",
    "content": "#parse('facet_fields.vm')\n#parse('facet_queries.vm')\n#parse('facet_ranges.vm')\n#parse('facet_pivot.vm')\n#parse('cluster.vm')"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/footer.vm",
    "content": "<hr/>\n<div>\n  <span>Options:</span>\n  #if($request.params.get('debugQuery'))\n  <a href=\"#url_for_home?#q#if($list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end\">disable debug</a>\n  #else\n  <a href=\"#url_for_lens&debugQuery=true&fl=*,score\">enable debug</a>\n  #end\n  #if($annotate)\n  <a href=\"#url_for_home?#q#if($list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#boostPrice\">disable annotation</a>\n  #else\n  <a href=\"#url_for_lens&annotateBrowse=true\">enable annotation</a>\n  #end\n  <a #annTitle(\"Click to switch to an XML response: &wt=xml\") href=\"#url_for_lens&wt=xml#if($request.params.get('debugQuery'))&debugQuery=true#end\">XML</a></div>\n<div>Generated by <a href=\"http://wiki.apache.org/solr/VelocityResponseWriter\">VelocityResponseWriter</a></div>\n<div><span>Documentation: </span> <a href=\"http://lucene.apache.org/solr\">Solr Home Page</a>, <a href=\"http://wiki.apache.org/solr\">Solr Wiki</a></div>\n<div>Disclaimer: The locations displayed in this demonstration are purely fictional.  It is more than likely that no store with the items listed actually exists at that location!</div>        "
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/head.vm",
    "content": "\n    ## An example of using an arbitrary request parameter\n    <title>#param('title')</title>\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"/>\n\n  <script type=\"text/javascript\" src=\"#{url_root}/js/lib/jquery-1.7.2.min.js\"></script>\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"#{url_for_solr}/admin/file?file=/velocity/main.css&contentType=text/css\"/>\n  <link rel=\"stylesheet\" href=\"#{url_for_solr}/admin/file?file=/velocity/jquery.autocomplete.css&contentType=text/css\" type=\"text/css\" />\n  <script type=\"text/javascript\" src=\"#{url_for_solr}/admin/file?file=/velocity/jquery.autocomplete.js&contentType=text/javascript\"></script>\n\n\n    <script>\n    $(document).ready(function(){\n      $(\"\\#q\").autocomplete('#{url_for_solr}/terms', {  ## backslash escaped #q as that is a macro defined in VM_global_library.vm\n           extraParams:{\n             'terms.prefix': function() { return $(\"\\#q\").val();},\n             'terms.sort': 'count',\n             'terms.fl': 'name',\n             'wt': 'velocity',\n             'v.template': 'suggest'\n           }\n         }\n      ).keydown(function(e){\n        if (e.keyCode === 13){\n          $(\"#query-form\").trigger('submit');\n        }\n      });\n\n      // http://localhost:8983/solr/terms?terms.fl=name&terms.prefix=i&terms.sort=count\n    });\n\n    </script>"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/header.vm",
    "content": "<div id=\"head\">\n  <span ><a href=\"#url_for_home#if($request.params.get('debugQuery'))?debugQuery=true#end\"><img src=\"#{url_root}/img/solr.png\" id=\"logo\"/></a></span>\n</div>"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/hit.vm",
    "content": "#set($docId = $doc.getFieldValue('id'))\n\n<div class=\"result-document\">\n#if($doc.getFieldValue('name'))\n  #parse(\"product-doc.vm\")\n#elseif($doc.getFieldValue('compName_s'))\n  #parse(\"join-doc.vm\")\n#else\n  #parse(\"richtext-doc.vm\")\n#end\n</div>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/hitGrouped.vm",
    "content": "<div class=\"result-document\">\n  <div class=\"result-title\"><b>$grouping.key</b></div>\n  <div>Total Matches in Group: $grouping.value.matches</div>\n  <div>#foreach ($group in $grouping.value.groups)\n    <div class=\"group-value\">$group.groupValue <span #annTitle(\"The count of the number of documents in this group\")>($group.doclist.numFound)</span></div>\n    <div class=\"group-doclist\" #annTitle(\"Contains the top scoring documents in the group\")>\n      #foreach ($doc in $group.doclist)\n        #set($docId = $doc.getFieldValue('id'))\n        #if($doc.getFieldValue('name'))\n          #parse(\"product-doc.vm\")\n        #elseif($doc.getFieldValue('compName_s'))\n          #parse(\"join-doc.vm\")\n        #else\n          #parse(\"richtext-doc.vm\")\n        #end\n      #end\n    </div>\n    #end</div>\n  </div>\n  #if($params.getBool(\"debugQuery\",false))\n    <a href=\"#\" onclick='jQuery(this).siblings(\"pre\").toggle(); return false;'>toggle explain</a>\n    <pre style=\"display:none\">$response.getExplainMap().get($doc.getFirstValue('id'))</pre>\n  #end\n</div>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/join-doc.vm",
    "content": "<div class=\"result-title\"><b>#field('compName_s')</b></div>\n<div>Id: #field('id') (company-details document for <a href=\"http://wiki.apache.org/solr/Join\" target=\"_new\">join</a>)</div>\n<div>Address: #field('address_s')</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/jquery.autocomplete.css",
    "content": ".ac_results {\n\tpadding: 0px;\n\tborder: 1px solid black;\n\tbackground-color: white;\n\toverflow: hidden;\n\tz-index: 99999;\n}\n\n.ac_results ul {\n\twidth: 100%;\n\tlist-style-position: outside;\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.ac_results li {\n\tmargin: 0px;\n\tpadding: 2px 5px;\n\tcursor: default;\n\tdisplay: block;\n\t/* \n\tif width will be 100% horizontal scrollbar will apear \n\twhen scroll mode will be used\n\t*/\n\t/*width: 100%;*/\n\tfont: menu;\n\tfont-size: 12px;\n\t/* \n\tit is very important, if line-height not setted or setted \n\tin relative units scroll will be broken in firefox\n\t*/\n\tline-height: 16px;\n\toverflow: hidden;\n}\n\n.ac_loading {\n\tbackground: white url('indicator.gif') right center no-repeat;\n}\n\n.ac_odd {\n\tbackground-color: #eee;\n}\n\n.ac_over {\n\tbackground-color: #0A246A;\n\tcolor: white;\n}\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/jquery.autocomplete.js",
    "content": "/*\n * Autocomplete - jQuery plugin 1.1pre\n *\n * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer\n *\n * Dual licensed under the MIT and GPL licenses:\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n *\n * Revision: $Id: jquery.autocomplete.js 5785 2008-07-12 10:37:33Z joern.zaefferer $\n *\n */\n\n;(function($) {\n\t\n$.fn.extend({\n\tautocomplete: function(urlOrData, options) {\n\t\tvar isUrl = typeof urlOrData == \"string\";\n\t\toptions = $.extend({}, $.Autocompleter.defaults, {\n\t\t\turl: isUrl ? urlOrData : null,\n\t\t\tdata: isUrl ? null : urlOrData,\n\t\t\tdelay: isUrl ? $.Autocompleter.defaults.delay : 10,\n\t\t\tmax: options && !options.scroll ? 10 : 150\n\t\t}, options);\n\t\t\n\t\t// if highlight is set to false, replace it with a do-nothing function\n\t\toptions.highlight = options.highlight || function(value) { return value; };\n\t\t\n\t\t// if the formatMatch option is not specified, then use formatItem for backwards compatibility\n\t\toptions.formatMatch = options.formatMatch || options.formatItem;\n\t\t\n\t\treturn this.each(function() {\n\t\t\tnew $.Autocompleter(this, options);\n\t\t});\n\t},\n\tresult: function(handler) {\n\t\treturn this.bind(\"result\", handler);\n\t},\n\tsearch: function(handler) {\n\t\treturn this.trigger(\"search\", [handler]);\n\t},\n\tflushCache: function() {\n\t\treturn this.trigger(\"flushCache\");\n\t},\n\tsetOptions: function(options){\n\t\treturn this.trigger(\"setOptions\", [options]);\n\t},\n\tunautocomplete: function() {\n\t\treturn this.trigger(\"unautocomplete\");\n\t}\n});\n\n$.Autocompleter = function(input, options) {\n\n\tvar KEY = {\n\t\tUP: 38,\n\t\tDOWN: 40,\n\t\tDEL: 46,\n\t\tTAB: 9,\n\t\tRETURN: 13,\n\t\tESC: 27,\n\t\tCOMMA: 188,\n\t\tPAGEUP: 33,\n\t\tPAGEDOWN: 34,\n\t\tBACKSPACE: 8\n\t};\n\n\t// Create $ object for input element\n\tvar $input = $(input).attr(\"autocomplete\", \"off\").addClass(options.inputClass);\n\n\tvar timeout;\n\tvar previousValue = \"\";\n\tvar cache = $.Autocompleter.Cache(options);\n\tvar hasFocus = 0;\n\tvar lastKeyPressCode;\n\tvar config = {\n\t\tmouseDownOnSelect: false\n\t};\n\tvar select = $.Autocompleter.Select(options, input, selectCurrent, config);\n\t\n\tvar blockSubmit;\n\t\n\t// prevent form submit in opera when selecting with return key\n\t$.browser.opera && $(input.form).bind(\"submit.autocomplete\", function() {\n\t\tif (blockSubmit) {\n\t\t\tblockSubmit = false;\n\t\t\treturn false;\n\t\t}\n\t});\n\t\n\t// only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all\n\t$input.bind(($.browser.opera ? \"keypress\" : \"keydown\") + \".autocomplete\", function(event) {\n\t\t// track last key pressed\n\t\tlastKeyPressCode = event.keyCode;\n\t\tswitch(event.keyCode) {\n\t\t\n\t\t\tcase KEY.UP:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.prev();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.DOWN:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.next();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.PAGEUP:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.pageUp();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.PAGEDOWN:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.pageDown();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\t// matches also semicolon\n\t\t\tcase options.multiple && $.trim(options.multipleSeparator) == \",\" && KEY.COMMA:\n\t\t\tcase KEY.TAB:\n\t\t\tcase KEY.RETURN:\n\t\t\t\tif( selectCurrent() ) {\n\t\t\t\t\t// stop default to prevent a form submit, Opera needs special handling\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tblockSubmit = true;\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.ESC:\n\t\t\t\tselect.hide();\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tdefault:\n\t\t\t\tclearTimeout(timeout);\n\t\t\t\ttimeout = setTimeout(onChange, options.delay);\n\t\t\t\tbreak;\n\t\t}\n\t}).focus(function(){\n\t\t// track whether the field has focus, we shouldn't process any\n\t\t// results if the field no longer has focus\n\t\thasFocus++;\n\t}).blur(function() {\n\t\thasFocus = 0;\n\t\tif (!config.mouseDownOnSelect) {\n\t\t\thideResults();\n\t\t}\n\t}).click(function() {\n\t\t// show select when clicking in a focused field\n\t\tif ( hasFocus++ > 1 && !select.visible() ) {\n\t\t\tonChange(0, true);\n\t\t}\n\t}).bind(\"search\", function() {\n\t\t// TODO why not just specifying both arguments?\n\t\tvar fn = (arguments.length > 1) ? arguments[1] : null;\n\t\tfunction findValueCallback(q, data) {\n\t\t\tvar result;\n\t\t\tif( data && data.length ) {\n\t\t\t\tfor (var i=0; i < data.length; i++) {\n\t\t\t\t\tif( data[i].result.toLowerCase() == q.toLowerCase() ) {\n\t\t\t\t\t\tresult = data[i];\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif( typeof fn == \"function\" ) fn(result);\n\t\t\telse $input.trigger(\"result\", result && [result.data, result.value]);\n\t\t}\n\t\t$.each(trimWords($input.val()), function(i, value) {\n\t\t\trequest(value, findValueCallback, findValueCallback);\n\t\t});\n\t}).bind(\"flushCache\", function() {\n\t\tcache.flush();\n\t}).bind(\"setOptions\", function() {\n\t\t$.extend(options, arguments[1]);\n\t\t// if we've updated the data, repopulate\n\t\tif ( \"data\" in arguments[1] )\n\t\t\tcache.populate();\n\t}).bind(\"unautocomplete\", function() {\n\t\tselect.unbind();\n\t\t$input.unbind();\n\t\t$(input.form).unbind(\".autocomplete\");\n\t});\n\t\n\t\n\tfunction selectCurrent() {\n\t\tvar selected = select.selected();\n\t\tif( !selected )\n\t\t\treturn false;\n\t\t\n\t\tvar v = selected.result;\n\t\tpreviousValue = v;\n\t\t\n\t\tif ( options.multiple ) {\n\t\t\tvar words = trimWords($input.val());\n\t\t\tif ( words.length > 1 ) {\n\t\t\t\tv = words.slice(0, words.length - 1).join( options.multipleSeparator ) + options.multipleSeparator + v;\n\t\t\t}\n\t\t\tv += options.multipleSeparator;\n\t\t}\n\t\t\n\t\t$input.val(v);\n\t\thideResultsNow();\n\t\t$input.trigger(\"result\", [selected.data, selected.value]);\n\t\treturn true;\n\t}\n\t\n\tfunction onChange(crap, skipPrevCheck) {\n\t\tif( lastKeyPressCode == KEY.DEL ) {\n\t\t\tselect.hide();\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tvar currentValue = $input.val();\n\t\t\n\t\tif ( !skipPrevCheck && currentValue == previousValue )\n\t\t\treturn;\n\t\t\n\t\tpreviousValue = currentValue;\n\t\t\n\t\tcurrentValue = lastWord(currentValue);\n\t\tif ( currentValue.length >= options.minChars) {\n\t\t\t$input.addClass(options.loadingClass);\n\t\t\tif (!options.matchCase)\n\t\t\t\tcurrentValue = currentValue.toLowerCase();\n\t\t\trequest(currentValue, receiveData, hideResultsNow);\n\t\t} else {\n\t\t\tstopLoading();\n\t\t\tselect.hide();\n\t\t}\n\t};\n\t\n\tfunction trimWords(value) {\n\t\tif ( !value ) {\n\t\t\treturn [\"\"];\n\t\t}\n\t\tvar words = value.split( options.multipleSeparator );\n\t\tvar result = [];\n\t\t$.each(words, function(i, value) {\n\t\t\tif ( $.trim(value) )\n\t\t\t\tresult[i] = $.trim(value);\n\t\t});\n\t\treturn result;\n\t}\n\t\n\tfunction lastWord(value) {\n\t\tif ( !options.multiple )\n\t\t\treturn value;\n\t\tvar words = trimWords(value);\n\t\treturn words[words.length - 1];\n\t}\n\t\n\t// fills in the input box w/the first match (assumed to be the best match)\n\t// q: the term entered\n\t// sValue: the first matching result\n\tfunction autoFill(q, sValue){\n\t\t// autofill in the complete box w/the first match as long as the user hasn't entered in more data\n\t\t// if the last user key pressed was backspace, don't autofill\n\t\tif( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) {\n\t\t\t// fill in the value (keep the case the user has typed)\n\t\t\t$input.val($input.val() + sValue.substring(lastWord(previousValue).length));\n\t\t\t// select the portion of the value not typed by the user (so the next character will erase)\n\t\t\t$.Autocompleter.Selection(input, previousValue.length, previousValue.length + sValue.length);\n\t\t}\n\t};\n\n\tfunction hideResults() {\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(hideResultsNow, 200);\n\t};\n\n\tfunction hideResultsNow() {\n\t\tvar wasVisible = select.visible();\n\t\tselect.hide();\n\t\tclearTimeout(timeout);\n\t\tstopLoading();\n\t\tif (options.mustMatch) {\n\t\t\t// call search and run callback\n\t\t\t$input.search(\n\t\t\t\tfunction (result){\n\t\t\t\t\t// if no value found, clear the input box\n\t\t\t\t\tif( !result ) {\n\t\t\t\t\t\tif (options.multiple) {\n\t\t\t\t\t\t\tvar words = trimWords($input.val()).slice(0, -1);\n\t\t\t\t\t\t\t$input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : \"\") );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t$input.val( \"\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t\tif (wasVisible)\n\t\t\t// position cursor at end of input field\n\t\t\t$.Autocompleter.Selection(input, input.value.length, input.value.length);\n\t};\n\n\tfunction receiveData(q, data) {\n\t\tif ( data && data.length && hasFocus ) {\n\t\t\tstopLoading();\n\t\t\tselect.display(data, q);\n\t\t\tautoFill(q, data[0].value);\n\t\t\tselect.show();\n\t\t} else {\n\t\t\thideResultsNow();\n\t\t}\n\t};\n\n\tfunction request(term, success, failure) {\n\t\tif (!options.matchCase)\n\t\t\tterm = term.toLowerCase();\n\t\tvar data = cache.load(term);\n\t\tdata = null; // Avoid buggy cache and go to Solr every time \n\t\t// recieve the cached data\n\t\tif (data && data.length) {\n\t\t\tsuccess(term, data);\n\t\t// if an AJAX url has been supplied, try loading the data now\n\t\t} else if( (typeof options.url == \"string\") && (options.url.length > 0) ){\n\t\t\t\n\t\t\tvar extraParams = {\n\t\t\t\ttimestamp: +new Date()\n\t\t\t};\n\t\t\t$.each(options.extraParams, function(key, param) {\n\t\t\t\textraParams[key] = typeof param == \"function\" ? param() : param;\n\t\t\t});\n\t\t\t\n\t\t\t$.ajax({\n\t\t\t\t// try to leverage ajaxQueue plugin to abort previous requests\n\t\t\t\tmode: \"abort\",\n\t\t\t\t// limit abortion to this input\n\t\t\t\tport: \"autocomplete\" + input.name,\n\t\t\t\tdataType: options.dataType,\n\t\t\t\turl: options.url,\n\t\t\t\tdata: $.extend({\n\t\t\t\t\tq: lastWord(term),\n\t\t\t\t\tlimit: options.max\n\t\t\t\t}, extraParams),\n\t\t\t\tsuccess: function(data) {\n\t\t\t\t\tvar parsed = options.parse && options.parse(data) || parse(data);\n\t\t\t\t\tcache.add(term, parsed);\n\t\t\t\t\tsuccess(term, parsed);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\t// if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match\n\t\t\tselect.emptyList();\n\t\t\tfailure(term);\n\t\t}\n\t};\n\t\n\tfunction parse(data) {\n\t\tvar parsed = [];\n\t\tvar rows = data.split(\"\\n\");\n\t\tfor (var i=0; i < rows.length; i++) {\n\t\t\tvar row = $.trim(rows[i]);\n\t\t\tif (row) {\n\t\t\t\trow = row.split(\"|\");\n\t\t\t\tparsed[parsed.length] = {\n\t\t\t\t\tdata: row,\n\t\t\t\t\tvalue: row[0],\n\t\t\t\t\tresult: options.formatResult && options.formatResult(row, row[0]) || row[0]\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t\treturn parsed;\n\t};\n\n\tfunction stopLoading() {\n\t\t$input.removeClass(options.loadingClass);\n\t};\n\n};\n\n$.Autocompleter.defaults = {\n\tinputClass: \"ac_input\",\n\tresultsClass: \"ac_results\",\n\tloadingClass: \"ac_loading\",\n\tminChars: 1,\n\tdelay: 400,\n\tmatchCase: false,\n\tmatchSubset: true,\n\tmatchContains: false,\n\tcacheLength: 10,\n\tmax: 100,\n\tmustMatch: false,\n\textraParams: {},\n\tselectFirst: false,\n\tformatItem: function(row) { return row[0]; },\n\tformatMatch: null,\n\tautoFill: false,\n\twidth: 0,\n\tmultiple: false,\n\tmultipleSeparator: \", \",\n\thighlight: function(value, term) {\n\t\treturn value.replace(new RegExp(\"(?![^&;]+;)(?!<[^<>]*)(\" + term.replace(/([\\^\\$\\(\\)\\[\\]\\{\\}\\*\\.\\+\\?\\|\\\\])/gi, \"\\\\$1\") + \")(?![^<>]*>)(?![^&;]+;)\", \"gi\"), \"<strong>$1</strong>\");\n\t},\n    scroll: true,\n    scrollHeight: 180\n};\n\n$.Autocompleter.Cache = function(options) {\n\n\tvar data = {};\n\tvar length = 0;\n\t\n\tfunction matchSubset(s, sub) {\n\t\tif (!options.matchCase) \n\t\t\ts = s.toLowerCase();\n\t\tvar i = s.indexOf(sub);\n\t\tif (options.matchContains == \"word\"){\n\t\t\ti = s.toLowerCase().search(\"\\\\b\" + sub.toLowerCase());\n\t\t}\n\t\tif (i == -1) return false;\n\t\treturn i == 0 || options.matchContains;\n\t};\n\t\n\tfunction add(q, value) {\n\t\tif (length > options.cacheLength){\n\t\t\tflush();\n\t\t}\n\t\tif (!data[q]){ \n\t\t\tlength++;\n\t\t}\n\t\tdata[q] = value;\n\t}\n\t\n\tfunction populate(){\n\t\tif( !options.data ) return false;\n\t\t// track the matches\n\t\tvar stMatchSets = {},\n\t\t\tnullData = 0;\n\n\t\t// no url was specified, we need to adjust the cache length to make sure it fits the local data store\n\t\tif( !options.url ) options.cacheLength = 1;\n\t\t\n\t\t// track all options for minChars = 0\n\t\tstMatchSets[\"\"] = [];\n\t\t\n\t\t// loop through the array and create a lookup structure\n\t\tfor ( var i = 0, ol = options.data.length; i < ol; i++ ) {\n\t\t\tvar rawValue = options.data[i];\n\t\t\t// if rawValue is a string, make an array otherwise just reference the array\n\t\t\trawValue = (typeof rawValue == \"string\") ? [rawValue] : rawValue;\n\t\t\t\n\t\t\tvar value = options.formatMatch(rawValue, i+1, options.data.length);\n\t\t\tif ( value === false )\n\t\t\t\tcontinue;\n\t\t\t\t\n\t\t\tvar firstChar = value.charAt(0).toLowerCase();\n\t\t\t// if no lookup array for this character exists, look it up now\n\t\t\tif( !stMatchSets[firstChar] ) \n\t\t\t\tstMatchSets[firstChar] = [];\n\n\t\t\t// if the match is a string\n\t\t\tvar row = {\n\t\t\t\tvalue: value,\n\t\t\t\tdata: rawValue,\n\t\t\t\tresult: options.formatResult && options.formatResult(rawValue) || value\n\t\t\t};\n\t\t\t\n\t\t\t// push the current match into the set list\n\t\t\tstMatchSets[firstChar].push(row);\n\n\t\t\t// keep track of minChars zero items\n\t\t\tif ( nullData++ < options.max ) {\n\t\t\t\tstMatchSets[\"\"].push(row);\n\t\t\t}\n\t\t};\n\n\t\t// add the data items to the cache\n\t\t$.each(stMatchSets, function(i, value) {\n\t\t\t// increase the cache size\n\t\t\toptions.cacheLength++;\n\t\t\t// add to the cache\n\t\t\tadd(i, value);\n\t\t});\n\t}\n\t\n\t// populate any existing data\n\tsetTimeout(populate, 25);\n\t\n\tfunction flush(){\n\t\tdata = {};\n\t\tlength = 0;\n\t}\n\t\n\treturn {\n\t\tflush: flush,\n\t\tadd: add,\n\t\tpopulate: populate,\n\t\tload: function(q) {\n\t\t\tif (!options.cacheLength || !length)\n\t\t\t\treturn null;\n\t\t\t/* \n\t\t\t * if dealing w/local data and matchContains than we must make sure\n\t\t\t * to loop through all the data collections looking for matches\n\t\t\t */\n\t\t\tif( !options.url && options.matchContains ){\n\t\t\t\t// track all matches\n\t\t\t\tvar csub = [];\n\t\t\t\t// loop through all the data grids for matches\n\t\t\t\tfor( var k in data ){\n\t\t\t\t\t// don't search through the stMatchSets[\"\"] (minChars: 0) cache\n\t\t\t\t\t// this prevents duplicates\n\t\t\t\t\tif( k.length > 0 ){\n\t\t\t\t\t\tvar c = data[k];\n\t\t\t\t\t\t$.each(c, function(i, x) {\n\t\t\t\t\t\t\t// if we've got a match, add it to the array\n\t\t\t\t\t\t\tif (matchSubset(x.value, q)) {\n\t\t\t\t\t\t\t\tcsub.push(x);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t\t\treturn csub;\n\t\t\t} else \n\t\t\t// if the exact item exists, use it\n\t\t\tif (data[q]){\n\t\t\t\treturn data[q];\n\t\t\t} else\n\t\t\tif (options.matchSubset) {\n\t\t\t\tfor (var i = q.length - 1; i >= options.minChars; i--) {\n\t\t\t\t\tvar c = data[q.substr(0, i)];\n\t\t\t\t\tif (c) {\n\t\t\t\t\t\tvar csub = [];\n\t\t\t\t\t\t$.each(c, function(i, x) {\n\t\t\t\t\t\t\tif (matchSubset(x.value, q)) {\n\t\t\t\t\t\t\t\tcsub[csub.length] = x;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t\treturn csub;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n};\n\n$.Autocompleter.Select = function (options, input, select, config) {\n\tvar CLASSES = {\n\t\tACTIVE: \"ac_over\"\n\t};\n\t\n\tvar listItems,\n\t\tactive = -1,\n\t\tdata,\n\t\tterm = \"\",\n\t\tneedsInit = true,\n\t\telement,\n\t\tlist;\n\t\n\t// Create results\n\tfunction init() {\n\t\tif (!needsInit)\n\t\t\treturn;\n\t\telement = $(\"<div/>\")\n\t\t.hide()\n\t\t.addClass(options.resultsClass)\n\t\t.css(\"position\", \"absolute\")\n\t\t.appendTo(document.body);\n\t\n\t\tlist = $(\"<ul/>\").appendTo(element).mouseover( function(event) {\n\t\t\tif(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') {\n\t            active = $(\"li\", list).removeClass(CLASSES.ACTIVE).index(target(event));\n\t\t\t    $(target(event)).addClass(CLASSES.ACTIVE);            \n\t        }\n\t\t}).click(function(event) {\n\t\t\t$(target(event)).addClass(CLASSES.ACTIVE);\n\t\t\tselect();\n\t\t\t// TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus\n\t\t\tinput.focus();\n\t\t\treturn false;\n\t\t}).mousedown(function() {\n\t\t\tconfig.mouseDownOnSelect = true;\n\t\t}).mouseup(function() {\n\t\t\tconfig.mouseDownOnSelect = false;\n\t\t});\n\t\t\n\t\tif( options.width > 0 )\n\t\t\telement.css(\"width\", options.width);\n\t\t\t\n\t\tneedsInit = false;\n\t} \n\t\n\tfunction target(event) {\n\t\tvar element = event.target;\n\t\twhile(element && element.tagName != \"LI\")\n\t\t\telement = element.parentNode;\n\t\t// more fun with IE, sometimes event.target is empty, just ignore it then\n\t\tif(!element)\n\t\t\treturn [];\n\t\treturn element;\n\t}\n\n\tfunction moveSelect(step) {\n\t\tlistItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE);\n\t\tmovePosition(step);\n        var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE);\n        if(options.scroll) {\n            var offset = 0;\n            listItems.slice(0, active).each(function() {\n\t\t\t\toffset += this.offsetHeight;\n\t\t\t});\n            if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) {\n                list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight());\n            } else if(offset < list.scrollTop()) {\n                list.scrollTop(offset);\n            }\n        }\n\t};\n\t\n\tfunction movePosition(step) {\n\t\tactive += step;\n\t\tif (active < 0) {\n\t\t\tactive = listItems.size() - 1;\n\t\t} else if (active >= listItems.size()) {\n\t\t\tactive = 0;\n\t\t}\n\t}\n\t\n\tfunction limitNumberOfItems(available) {\n\t\treturn options.max && options.max < available\n\t\t\t? options.max\n\t\t\t: available;\n\t}\n\t\n\tfunction fillList() {\n\t\tlist.empty();\n\t\tvar max = limitNumberOfItems(data.length);\n\t\tfor (var i=0; i < max; i++) {\n\t\t\tif (!data[i])\n\t\t\t\tcontinue;\n\t\t\tvar formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term);\n\t\t\tif ( formatted === false )\n\t\t\t\tcontinue;\n\t\t\tvar li = $(\"<li/>\").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? \"ac_even\" : \"ac_odd\").appendTo(list)[0];\n\t\t\t$.data(li, \"ac_data\", data[i]);\n\t\t}\n\t\tlistItems = list.find(\"li\");\n\t\tif ( options.selectFirst ) {\n\t\t\tlistItems.slice(0, 1).addClass(CLASSES.ACTIVE);\n\t\t\tactive = 0;\n\t\t}\n\t\t// apply bgiframe if available\n\t\tif ( $.fn.bgiframe )\n\t\t\tlist.bgiframe();\n\t}\n\t\n\treturn {\n\t\tdisplay: function(d, q) {\n\t\t\tinit();\n\t\t\tdata = d;\n\t\t\tterm = q;\n\t\t\tfillList();\n\t\t},\n\t\tnext: function() {\n\t\t\tmoveSelect(1);\n\t\t},\n\t\tprev: function() {\n\t\t\tmoveSelect(-1);\n\t\t},\n\t\tpageUp: function() {\n\t\t\tif (active != 0 && active - 8 < 0) {\n\t\t\t\tmoveSelect( -active );\n\t\t\t} else {\n\t\t\t\tmoveSelect(-8);\n\t\t\t}\n\t\t},\n\t\tpageDown: function() {\n\t\t\tif (active != listItems.size() - 1 && active + 8 > listItems.size()) {\n\t\t\t\tmoveSelect( listItems.size() - 1 - active );\n\t\t\t} else {\n\t\t\t\tmoveSelect(8);\n\t\t\t}\n\t\t},\n\t\thide: function() {\n\t\t\telement && element.hide();\n\t\t\tlistItems && listItems.removeClass(CLASSES.ACTIVE);\n\t\t\tactive = -1;\n\t\t},\n\t\tvisible : function() {\n\t\t\treturn element && element.is(\":visible\");\n\t\t},\n\t\tcurrent: function() {\n\t\t\treturn this.visible() && (listItems.filter(\".\" + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]);\n\t\t},\n\t\tshow: function() {\n\t\t\tvar offset = $(input).offset();\n\t\t\telement.css({\n\t\t\t\twidth: typeof options.width == \"string\" || options.width > 0 ? options.width : $(input).width(),\n\t\t\t\ttop: offset.top + input.offsetHeight,\n\t\t\t\tleft: offset.left\n\t\t\t}).show();\n            if(options.scroll) {\n                list.scrollTop(0);\n                list.css({\n\t\t\t\t\tmaxHeight: options.scrollHeight,\n\t\t\t\t\toverflow: 'auto'\n\t\t\t\t});\n\t\t\t\t\n                if($.browser.msie && typeof document.body.style.maxHeight === \"undefined\") {\n\t\t\t\t\tvar listHeight = 0;\n\t\t\t\t\tlistItems.each(function() {\n\t\t\t\t\t\tlistHeight += this.offsetHeight;\n\t\t\t\t\t});\n\t\t\t\t\tvar scrollbarsVisible = listHeight > options.scrollHeight;\n                    list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight );\n\t\t\t\t\tif (!scrollbarsVisible) {\n\t\t\t\t\t\t// IE doesn't recalculate width when scrollbar disappears\n\t\t\t\t\t\tlistItems.width( list.width() - parseInt(listItems.css(\"padding-left\")) - parseInt(listItems.css(\"padding-right\")) );\n\t\t\t\t\t}\n                }\n                \n            }\n\t\t},\n\t\tselected: function() {\n\t\t\tvar selected = listItems && listItems.filter(\".\" + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);\n\t\t\treturn selected && selected.length && $.data(selected[0], \"ac_data\");\n\t\t},\n\t\temptyList: function (){\n\t\t\tlist && list.empty();\n\t\t},\n\t\tunbind: function() {\n\t\t\telement && element.remove();\n\t\t}\n\t};\n};\n\n$.Autocompleter.Selection = function(field, start, end) {\n\tif( field.createTextRange ){\n\t\tvar selRange = field.createTextRange();\n\t\tselRange.collapse(true);\n\t\tselRange.moveStart(\"character\", start);\n\t\tselRange.moveEnd(\"character\", end);\n\t\tselRange.select();\n\t} else if( field.setSelectionRange ){\n\t\tfield.setSelectionRange(start, end);\n\t} else {\n\t\tif( field.selectionStart ){\n\t\t\tfield.selectionStart = start;\n\t\t\tfield.selectionEnd = end;\n\t\t}\n\t}\n\tfield.focus();\n};\n\n})(jQuery);"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/layout.vm",
    "content": "<html>\n<head>\n  #parse(\"head.vm\")\n</head>\n  <body>\n    <div id=\"admin\"><a href=\"#url_root/#/#core_name\">Solr Admin</a></div>\n    <div id=\"header\">\n      #parse(\"header.vm\")\n    </div>\n    <div id=\"tabs\">\n      #parse(\"tabs.vm\")\n    </div>\n    <div id=\"content\">\n      $content\n    </div>\n    <div id=\"footer\">\n      #parse(\"footer.vm\")\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/main.css",
    "content": "#admin{\n  text-align: right;\n  vertical-align: top; \n}\n\n#head{\n  width: 100%;\n}\n.array-field {\n  border: 2px solid #474747;\n  background: #FFE9D8;\n  padding: 5px;\n  margin: 5px;\n}\n\n.array-field-list li {\n  list-style: circle;\n  margin-left: 20px;\n}\n\n.parsed_query_header {\n  font-family: Helvetica, Arial, sans-serif;\n  font-size: 10pt;\n  font-weight: bold;\n}\n\n.parsed_query {\n  font-family: Courier, Courier New, monospaced;\n  font-size: 10pt;\n  font-weight: normal;\n}\n\nbody {\n  font-family: Helvetica, Arial, sans-serif;\n  font-size: 10pt;\n}\n\na {\n  color: #43a4b1;\n}\n\n.navigators {\n  float: left;\n  margin: 5px;\n  margin-top: 0px;\n  width: 185px;\n  padding: 5px;\n  top: -20px;\n  position: relative;  \n}\n\n.navigators h2 {\n  background: #FEC293;\n  border: 1px solid #ce9d77;\n  padding: 5px;\n}\n\n.navigators ul {\n  list-style: none;\n  margin: 0;\n  margin-bottom: 5px;\n  margin-top: 5px;\n  padding-left: 10px;\n}\n\n.navigators ul li {\n  color: #999;\n  padding: 2px;\n}\n\n\n\n.facet-field {\n  font-weight: bold;\n}\n\n.highlight {\n  color: white;\n  background-color: gray;\n  border: 1px black solid;\n}\n\n.highlight-box {\n  margin-left: 15px;\n}\n\n.field-name {\n  font-weight: bold;\n}\n\n.highlighted-facet-field {\n  background: white;\n}\n\n.constraints {\n  margin-top: 10px;\n}\n\n#query-form{\n  width: 80%;\n}\n\n\n\n.query-box, .constraints {\n  padding: 5px;\n  margin: 5px;\n  font-weight: normal;\n  font-size: 24px;\n  letter-spacing: 0.08em;\n}\n\n.query-box #q {\n  margin-left: 8px;\n  width: 60%;\n  height: 50px;\n  border: 1px solid #999;\n  font-size: 1em;\n  padding: 0.4em;\n}\n\n.query-box {\n  \n}\n\n.query-boost {\n  \n  top: 10px;\n  left: 50px;\n  position: relative;\n  font-size: 0.8em;\n}\n\n.query-box .inputs{\n  left: 180px;\n  position: relative;\n  \n}\n\n#logo {\n  margin: 10px;\n  border-style: none;\n}\n\n.pagination {\n  padding-left: 33%;\n  background: #eee;\n  margin: 5px;\n  margin-left: 210px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n.result-document {\n  border: 1px solid #999;\n  padding: 5px;\n  margin: 5px;\n  margin-left: 210px;\n  margin-bottom: 15px;\n}\n\n.result-document div{\n  padding: 5px;\n}\n\n.result-title{\n  width:60%;\n}\n\n.result-body{\n  background: #ddd;\n}\n\n.mlt{\n  \n}\n\n.map{\n  float: right;\n  position: relative;\n  top: -25px;  \n}\n\n.result-document:nth-child(2n+1) {\n  background-color: #eee;\n}\n\n\n.selected-facet-field {\n  font-weight: bold;\n}\n\nli.show {\n  list-style: disc;\n}\n\n.group-value{\n  font-weight: bold;\n}\n\n.error {\n  color: white;\n  background-color: red;\n  left: 210px;\n  width:80%;\n  position: relative;\n\n}\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/product-doc.vm",
    "content": "<div class=\"result-title\"><b>#field('name')</b><span class=\"mlt\">   #if($params.getBool('mlt', false) == false)<a href=\"#lensNoQ&q=id:$docId&mlt=true\">More Like This</a>#end</span></div>\n##do we have a physical store for this product\n#set($store = $doc.getFieldValue('store'))\n#if($store)<div class=\"map\"><img src=\"http://maps.google.com/maps/api/staticmap?&zoom=12&size=150x80&maptype=roadmap&markers=$doc.getFieldValue('store')&sensor=false\" /><div><small><a target=\"_map\" href=\"http://maps.google.com/?q=$store&amp;source=embed\">Larger Map</a></small></div></div>#end\n<div>Id: #field('id')</div>\n<div>Price: #field('price_c')</div>\n<div>Features: #field('features')</div>\n<div>In Stock: #field('inStock')</div>\n<div class=\"mlt\">\n  #set($mlt = $mltResults.get($docId))\n  #set($mltOn = $params.getBool('mlt'))\n  #if($mltOn == true)<div class=\"field-name\">Similar Items</div>#end\n  #if ($mltOn && $mlt && $mlt.size() > 0)\n  <ul>\n    #foreach($mltHit in $mlt)\n      #set($mltId = $mltHit.getFieldValue('id'))\n      <li><div><a href=\"#url_for_home?q=id:$mltId\">$mltId</a></div><div><span class=\"field-name\">Name:</span> $mltHit.getFieldValue('name')</div>\n        <div><span class=\"field-name\">Price:</span> $!number.currency($mltHit.getFieldValue('price')) <span class=\"field-name\">In Stock:</span> $mltHit.getFieldValue('inStock')</div>\n\n      </li>\n    #end\n  </ul>\n  #elseif($mltOn && $mlt.size() == 0)\n    <div>No Similar Items Found</div>\n  #end\n</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/query.vm",
    "content": "<div class=\"query-box\">\n  <form id=\"query-form\" action=\"#{url_for_home}\" method=\"GET\">\n    <div class=\"inputs\">\n      <span #annTitle(\"Add the query using the &q= parameter\")>Find: <input type=\"text\" id=\"q\" name=\"q\" value=\"$!esc.html($params.get('q'))\"/> <input type=\"submit\" id=\"querySubmit\"/> <input type=\"reset\"/></span>\n      <div class=\"query-boost\"><span #annTitle(\"Add the boost function &bf=price to the query\")><input type=\"checkbox\" name=\"bf\" value=\"price\" #if($request.params.get('bf') == 'price')checked=\"true\"#end>Boost by Price</input></span>\n      #parse(\"querySpatial.vm\")\n      #parse(\"queryGroup.vm\")\n      </div>\n  </div>\n\n    #if($request.params.get('debugQuery'))\n      <input type=\"hidden\" name=\"debugQuery\" value=\"true\"/>\n    #end\n    #if($annotate == true)\n      <input type=\"hidden\" name=\"annotateBrowse\" value=\"true\"/>\n    #end\n    #foreach($fq in $request.params.getParams('fq'))\n      #if ($fq != \"{!bbox}\")\n        <input type=\"hidden\" name=\"fq\" id=\"allFQs\" value=\"$esc.html($fq)\"/>\n      #end\n    #end\n    <div class=\"constraints\" #annTitle(\"Lists out the &fq filters.  Click to remove.\")>\n      #foreach($fq in $params.getParams('fq'))\n        #set($previous_fq_count=$velocityCount - 1)\n        #if($fq != '')\n        &gt; <a style=\"{text-decoration: line-through;}\" href=\"#url_for_filters($request.params.getParams('fq').subList(0,$previous_fq_count))\">$fq</a>\n        #end\n      #end\n    </div>\n    <div class=\"parsed_query_header\">\n     #if($request.params.get('debugQuery'))\n        <a href=\"#\" onclick='jQuery(this).siblings(\"div\").toggle(); return false;'>toggle parsed query</a>\n        <div class=\"parsed_query\" style=\"display:none\">$response.response.debug.parsedquery</div>\n      #end\n      #set($queryOpts = $request.params.get(\"queryOpts\"))\n      #if($queryOpts && $queryOpts != \"\")\n        <input type=\"hidden\" name=\"queryOpts\" value=\"$queryOpts\"/>\n      #end\n    </div>\n  </form>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/queryGroup.vm",
    "content": "#set($queryOpts = $params.get(\"queryOpts\"))\n#if($queryOpts == \"group\")\n<div>\n        #set($groupF = $request.params.get('group.field'))\n        <label #annTitle(\"Add the &group.field parameter. Multiselect is supported\")>Group By:\n          <select id=\"group\" name=\"group.field\" multiple=\"true\">\n            ##TODO: Handle multiple selects correctly\n            <option value=\"none\"\n            #if($groupF == '')selected=\"true\"#end>No Group</option>\n            <option value=\"manu_exact\"\n            #if($groupF == 'manu_exact')selected=\"true\"#end>Manufacturer</option>\n            <option value=\"popularity\"\n            #if($groupF == 'popularity')selected=\"true\"#end>Popularity</option>\n          </select>\n        </label>  \n<input type=\"hidden\" name=\"group\" value=\"true\"/>\n</div>\n\n#end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/querySpatial.vm",
    "content": "#set($queryOpts = $params.get(\"queryOpts\"))\n#if($queryOpts == \"spatial\")\n<div>\n        #set($loc = $request.params.get('pt'))\n        #set($dist = $request.params.get('d', \"10\"))\n        <label #annTitle(\"Add the &pt parameter\")>Location Filter:\n          <select id=\"pt\" name=\"pt\">\n            <option value=\"none\"\n            #if($loc == '')selected=\"true\"#end>No Filter</option>\n            <option value=\"45.17614,-93.87341\"\n            #if($loc == '45.17614,-93.87341')selected=\"true\"#end>Buffalo, MN</option>\n            <option value=\"37.7752,-100.0232\"\n            #if($loc == '37.7752,-100.0232')selected=\"true\"#end>Dodge City, KS</option>\n            <option value=\"35.0752,-97.032\"\n            #if($loc == '35.0752,-97.032')selected=\"true\"#end>Oklahoma City, OK</option>\n            <option value=\"37.7752,-122.4232\"\n            #if($loc == '37.7752,-122.4232')selected=\"true\"#end>San Francisco CA</option>\n          </select>\n  </label>\n  <span #annTitle(\"Add the &d parameter\")>Distance (KM): <input id=\"d\" name=\"d\" type=\"text\" size=\"6\"\n                                                                value=\"#if($dist != '')${dist}#{else}10#end\"/></span>\n<input type=\"hidden\" name=\"sfield\" value=\"store\"/>\n<input type=\"hidden\" id=\"spatialFQ\" name=\"fq\" value=\"\"/>\n<input type=\"hidden\" name=\"queryOpts\" value=\"spatial\"/>        \n</div>\n<script type=\"text/javascript\">\n  $('#query-form').submit(function() {\n    if ($(\"#pt\").val() != \"none\") {\n      $(\"#spatialFQ\").val(\"{!bbox}\");\n    }\n    $fqs = $(\"#allFQs\").val();\n    $fqs = $fqs.replace(\"{!bbox}\", \"\");\n    if ($fqs == ''){\n      $(\"#allFQs\").remove();\n    }\n    $(\"#allFQs\").val($fqs);\n    return true;\n    });\n</script>\n#end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/richtext-doc.vm",
    "content": "## Mimetype to extension map for detecting file type and show icon\n## List of types match the icons in /solr/img/filetypes\n#set($extMap = {\"application/x-7z-compressed\": \"7z\",\n                 \"application/postscript\": \"ai\",\n                 \"application/pgp-signature\": \"asc\",\n                 \"application/octet-stream\": \"bin\",\n                 \"application/x-bzip2\": \"bz2\",\n                 \"text/x-c\": \"c\",\n                 \"application/vnd.ms-htmlhelp\": \"chm\",\n                 \"application/java-vm\": \"class\",\n                 \"text/css\": \"css\",\n                 \"text/csv\": \"csv\",\n                 \"application/x-debian-package\": \"deb\",\n                 \"application/msword\": \"doc\",\n                 \"message/rfc822\": \"eml\",\n                 \"image/gif\": \"gif\",\n                 \"application/winhlp\": \"hlp\",\n                 \"text/html\": \"html\",\n                 \"application/java-archive\": \"jar\",\n                 \"text/x-java-source\": \"java\",\n                 \"image/jpeg\": \"jpeg\",\n                 \"application/javascript\": \"js\",\n                 \"application/vnd.oasis.opendocument.chart\": \"odc\",\n                 \"application/vnd.oasis.opendocument.formula\": \"odf\",\n                 \"application/vnd.oasis.opendocument.graphics\": \"odg\",\n                 \"application/vnd.oasis.opendocument.image\": \"odi\",\n                 \"application/vnd.oasis.opendocument.presentation\": \"odp\",\n                 \"application/vnd.oasis.opendocument.spreadsheet\": \"ods\",\n                 \"application/vnd.oasis.opendocument.text\": \"odt\",\n                 \"application/pdf\": \"pdf\",\n                 \"application/pgp-encrypted\": \"pgp\",\n                 \"image/png\": \"png\",\n                 \"application/vnd.ms-powerpoint\": \"ppt\",\n                 \"audio/x-pn-realaudio\": \"ram\",\n                 \"application/x-rar-compressed\": \"rar\",\n                 \"application/vnd.rn-realmedia\": \"rm\",\n                 \"application/rtf\": \"rtf\",\n                 \"application/x-shockwave-flash\": \"swf\",\n                 \"application/vnd.sun.xml.calc\": \"sxc\",\n                 \"application/vnd.sun.xml.draw\": \"sxd\",\n                 \"application/vnd.sun.xml.impress\": \"sxi\",\n                 \"application/vnd.sun.xml.writer\": \"sxw\",\n                 \"application/x-tar\": \"tar\",\n                 \"application/x-tex\": \"tex\",\n                 \"text/plain\": \"txt\",\n                 \"text/x-vcard\": \"vcf\",\n                 \"application/vnd.visio\": \"vsd\",\n                 \"audio/x-wav\": \"wav\",\n                 \"audio/x-ms-wma\": \"wma\",\n                 \"video/x-ms-wmv\": \"wmv\",\n                 \"application/vnd.ms-excel\": \"xls\",\n                 \"application/xml\": \"xml\",\n                 \"application/x-xpinstall\": \"xpi\",\n                 \"application/zip\": \"zip\"})\n\n\n#if($doc.getFieldValue('title'))\n  #set($title = $esc.html($doc.getFirstValue('title')))\n#else\n  #set($title = \"[\"+$doc.getFieldValue('id')+\"]\")\n#end\n#if($doc.getFieldValue('url'))\n  #set($url = $doc.getFieldValue('url'))\n#elseif($doc.getFieldValue('resourcename'))\n  #set($url = \"file:///$doc.getFieldValue('resourcename')\")\n#else\n  #set($url = \"$doc.getFieldValue('id')\")\n#end\n#set($supportedtypes = \"7z;ai;aiff;asc;audio;bin;bz2;c;cfc;cfm;chm;class;conf;cpp;cs;css;csv;deb;divx;doc;dot;eml;enc;file;gif;gz;hlp;htm;html;image;iso;jar;java;jpeg;jpg;js;lua;m;mm;mov;mp3;mpg;odc;odf;odg;odi;odp;ods;odt;ogg;pdf;pgp;php;pl;png;ppt;ps;py;ram;rar;rb;rm;rpm;rtf;sig;sql;swf;sxc;sxd;sxi;sxw;tar;tex;tgz;txt;vcf;video;vsd;wav;wma;wmv;xls;xml;xpi;xvid;zip\")\n#set($ct = $list.get($doc.getFirstValue('content_type').split(\";\"),0))\n#set($filename = $doc.getFieldValue('resourcename'))\n\n#set($filetype = false)\n#set($filetype = $extMap.get($ct))\n##TODO: falling back to file extension is convenient, except when you don't have an icon for that extension\n##      example \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\" document\n##        with a .docx extension.  It'd be nice to fall back to an \"unknown\" or the existing \"file\" type\n##      We sort of do this below, but only if the filename has no extension (anything after the last dot).\n#if(!$filetype)#set($filetype = $filename.substring($filename.lastIndexOf(\".\")).substring(1))#end\n##if(!$filetype)#set($filetype = \"file\")#end\n##if(!$supportedtypes.contains($filetype))#set($filetype = \"file\")#end\n<div class=\"result-title\">\n## Small file type icons from http://www.splitbrain.org/projects/file_icons (public domain)\n<img src=\"#{url_root}/img/filetypes/${filetype}.png\" align=\"center\">\n<a href=\"${url}\" target=\"_blank\"><b>$title</b></a><span class=\"mlt\">   #if($params.getBool('mlt', false) == false)<a href=\"#lensNoQ&q=id:%22$docId%22&mlt=true\">More Like This</a>#end</span></div>\n<div>Id: #field('id')</div>\n<div>\n#if($doc.getFieldValue('resourcename'))Resource name: $filename \n#elseif($url)URL: $url\n#end\n#if($ct) ($ct)#end\n</div>\n#if($doc.getFieldValue('author'))<div>Author: #field('author')</div>#end\n#if($doc.getFieldValue('last_modified'))<div>last-modified: #field('last_modified')</div>#end\n<div class=\"result-body\">#field('content')</div>\n<div class=\"mlt\">\n  #set($mlt = $mltResults.get($docId))\n  #set($mltOn = $params.getBool('mlt'))\n  #if($mltOn == true)<div class=\"field-name\">Similar Items</div>#end\n  #if ($mltOn && $mlt && $mlt.size() > 0)\n  <ul>\n    #foreach($mltHit in $mlt)\n      #set($mltId = $mltHit.getFieldValue('id'))\n      <li><div><a href=\"#url_for_home?q=id:$mltId\">$mltId</a></div><div><span class=\"field-name\">Title:</span> $mltHit.getFieldValue('title')</div>\n        <div><span class=\"field-name\">Author:</span> $mltHit.getFieldValue('author') <span class=\"field-name\">Description:</span> $mltHit.getFieldValue('description')</div>\n\n      </li>\n    #end\n  </ul>\n  #elseif($mltOn && $mlt.size() == 0)\n    <div>No Similar Items Found</div>\n  #end\n</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/suggest.vm",
    "content": "#foreach($t in $response.response.terms.name)\n$t.key\n#end"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/velocity/tabs.vm",
    "content": "##TODO: Make some nice tabs here\n#set($queryOpts = $params.get(\"queryOpts\"))\n<span #annTitle(\"Click the link to demonstrate various Solr capabilities\")><span>Examples: </span><span class=\"tab\">#if($queryOpts && $queryOpts != \"\")<a href=\"#url_for_home/?#debug#annotate\">Simple</a>#{else}Simple#end</span>\n<span class=\"tab\">#if($queryOpts == \"spatial\")Spatial#else<a href=\"#url_for_home?&queryOpts=spatial#debug#annotate\">Spatial</a>#end</span>\n<span class=\"tab\">#if($queryOpts == \"group\")Group By#else<a href=\"#url_for_home?#debug#annotate&queryOpts=group&group=true&group.field=manu_exact\">Group By</a>#end</span></span>\n<hr/>        "
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/xslt/example.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to HTML\n -->\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'\n>\n\n  <xsl:output media-type=\"text/html\" encoding=\"UTF-8\"/> \n  \n  <xsl:variable name=\"title\" select=\"concat('Solr search results (',response/result/@numFound,' documents)')\"/>\n  \n  <xsl:template match='/'>\n    <html>\n      <head>\n        <title><xsl:value-of select=\"$title\"/></title>\n        <xsl:call-template name=\"css\"/>\n      </head>\n      <body>\n        <h1><xsl:value-of select=\"$title\"/></h1>\n        <div class=\"note\">\n          This has been formatted by the sample \"example.xsl\" transform -\n          use your own XSLT to get a nicer page\n        </div>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n      </body>\n    </html>\n  </xsl:template>\n  \n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <div class=\"doc\">\n      <table width=\"100%\">\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n      </table>\n    </div>\n  </xsl:template>\n\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n    <xsl:param name=\"pos\"></xsl:param>\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n\n        <xsl:if test=\"boolean(//lst[@name='explain'])\">\n          <xsl:element name=\"a\">\n            <!-- can't allow whitespace here -->\n            <xsl:attribute name=\"href\">javascript:toggle(\"<xsl:value-of select=\"concat('exp-',$pos)\" />\");</xsl:attribute>?</xsl:element>\n          <br/>\n          <xsl:element name=\"div\">\n            <xsl:attribute name=\"class\">exp</xsl:attribute>\n            <xsl:attribute name=\"id\">\n              <xsl:value-of select=\"concat('exp-',$pos)\" />\n            </xsl:attribute>\n            <xsl:value-of select=\"//lst[@name='explain']/str[position()=$pos]\"/>\n          </xsl:element>\n        </xsl:if>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <ul>\n        <xsl:for-each select=\"*\">\n          <li><xsl:value-of select=\".\"/></li>\n        </xsl:for-each>\n        </ul>\n      </td>\n    </tr>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n  \n  <xsl:template name=\"css\">\n    <script>\n      function toggle(id) {\n        var obj = document.getElementById(id);\n        obj.style.display = (obj.style.display != 'block') ? 'block' : 'none';\n      }\n    </script>\n    <style type=\"text/css\">\n      body { font-family: \"Lucida Grande\", sans-serif }\n      td.name { font-style: italic; font-size:80%; }\n      td { vertical-align: top; }\n      ul { margin: 0px; margin-left: 1em; padding: 0px; }\n      .note { font-size:80%; }\n      .doc { margin-top: 1em; border-top: solid grey 1px; }\n      .exp { display: none; font-family: monospace; white-space: pre; }\n    </style>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/xslt/example_atom.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to Atom\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output\n       method=\"xml\"\n       encoding=\"utf-8\"\n       media-type=\"application/xml\"\n  />\n\n  <xsl:template match='/'>\n    <xsl:variable name=\"query\" select=\"response/lst[@name='responseHeader']/lst[@name='params']/str[@name='q']\"/>\n    <feed xmlns=\"http://www.w3.org/2005/Atom\">\n      <title>Example Solr Atom 1.0 Feed</title>\n      <subtitle>\n       This has been formatted by the sample \"example_atom.xsl\" transform -\n       use your own XSLT to get a nicer Atom feed.\n      </subtitle>\n      <author>\n        <name>Apache Solr</name>\n        <email>solr-user@lucene.apache.org</email>\n      </author>\n      <link rel=\"self\" type=\"application/atom+xml\" \n            href=\"http://localhost:8983/solr/q={$query}&amp;wt=xslt&amp;tr=atom.xsl\"/>\n      <updated>\n        <xsl:value-of select=\"response/result/doc[position()=1]/date[@name='timestamp']\"/>\n      </updated>\n      <id>tag:localhost,2007:example</id>\n      <xsl:apply-templates select=\"response/result/doc\"/>\n    </feed>\n  </xsl:template>\n    \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <entry>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link href=\"http://localhost:8983/solr/select?q={$id}\"/>\n      <id>tag:localhost,2007:<xsl:value-of select=\"$id\"/></id>\n      <summary><xsl:value-of select=\"arr[@name='features']\"/></summary>\n      <updated><xsl:value-of select=\"date[@name='timestamp']\"/></updated>\n    </entry>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/xslt/example_rss.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to RSS\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output\n       method=\"xml\"\n       encoding=\"utf-8\"\n       media-type=\"application/xml\"\n  />\n  <xsl:template match='/'>\n    <rss version=\"2.0\">\n       <channel>\n\t <title>Example Solr RSS 2.0 Feed</title>\n         <link>http://localhost:8983/solr</link>\n         <description>\n          This has been formatted by the sample \"example_rss.xsl\" transform -\n          use your own XSLT to get a nicer RSS feed.\n         </description>\n         <language>en-us</language>\n         <docs>http://localhost:8983/solr</docs>\n         <xsl:apply-templates select=\"response/result/doc\"/>\n       </channel>\n    </rss>\n  </xsl:template>\n  \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <xsl:variable name=\"timestamp\" select=\"date[@name='timestamp']\"/>\n    <item>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </link>\n      <description>\n        <xsl:value-of select=\"arr[@name='features']\"/>\n      </description>\n      <pubDate><xsl:value-of select=\"$timestamp\"/></pubDate>\n      <guid>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </guid>\n    </item>\n  </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/xslt/luke.xsl",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See the NOTICE file distributed with\n    this work for additional information regarding copyright ownership.\n    The ASF licenses this file to You under the Apache License, Version 2.0\n    (the \"License\"); you may not use this file except in compliance with\n    the License.  You may obtain a copy of the License at\n    \n    http://www.apache.org/licenses/LICENSE-2.0\n    \n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n-->\n\n\n<!-- \n  Display the luke request handler with graphs\n -->\n<xsl:stylesheet\n    xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n    xmlns=\"http://www.w3.org/1999/xhtml\"\n    version=\"1.0\"\n    >\n    <xsl:output\n        method=\"html\"\n        encoding=\"UTF-8\"\n        media-type=\"text/html\"\n        doctype-public=\"-//W3C//DTD XHTML 1.0 Strict//EN\"\n        doctype-system=\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"\n    />\n\n    <xsl:variable name=\"title\">Solr Luke Request Handler Response</xsl:variable>\n\n    <xsl:template match=\"/\">\n        <html xmlns=\"http://www.w3.org/1999/xhtml\">\n            <head>\n                <link rel=\"stylesheet\" type=\"text/css\" href=\"solr-admin.css\"/>\n                <link rel=\"icon\" href=\"favicon.ico\" type=\"image/ico\"/>\n                <link rel=\"shortcut icon\" href=\"favicon.ico\" type=\"image/ico\"/>\n                <title>\n                    <xsl:value-of select=\"$title\"/>\n                </title>\n                <xsl:call-template name=\"css\"/>\n\n            </head>\n            <body>\n                <h1>\n                    <xsl:value-of select=\"$title\"/>\n                </h1>\n                <div class=\"doc\">\n                    <ul>\n                        <xsl:if test=\"response/lst[@name='index']\">\n                            <li>\n                                <a href=\"#index\">Index Statistics</a>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='fields']\">\n                            <li>\n                                <a href=\"#fields\">Field Statistics</a>\n                                <ul>\n                                    <xsl:for-each select=\"response/lst[@name='fields']/lst\">\n                                        <li>\n                                            <a href=\"#{@name}\">\n                                                <xsl:value-of select=\"@name\"/>\n                                            </a>\n                                        </li>\n                                    </xsl:for-each>\n                                </ul>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='doc']\">\n                            <li>\n                                <a href=\"#doc\">Document statistics</a>\n                            </li>\n                        </xsl:if>\n                    </ul>\n                </div>\n                <xsl:if test=\"response/lst[@name='index']\">\n                    <h2><a name=\"index\"/>Index Statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='index']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='fields']\">\n                    <h2><a name=\"fields\"/>Field Statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='fields']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='doc']\">\n                    <h2><a name=\"doc\"/>Document statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='doc']\"/>\n                </xsl:if>\n            </body>\n        </html>\n    </xsl:template>\n\n    <xsl:template match=\"lst\">\n        <xsl:if test=\"parent::lst\">\n            <tr>\n                <td colspan=\"2\">\n                    <div class=\"doc\">\n                        <xsl:call-template name=\"list\"/>\n                    </div>\n                </td>\n            </tr>\n        </xsl:if>\n        <xsl:if test=\"not(parent::lst)\">\n            <div class=\"doc\">\n                <xsl:call-template name=\"list\"/>\n            </div>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"list\">\n        <xsl:if test=\"count(child::*)>0\">\n            <table>\n                <thead>\n                    <tr>\n                        <th colspan=\"2\">\n                            <p>\n                                <a name=\"{@name}\"/>\n                            </p>\n                            <xsl:value-of select=\"@name\"/>\n                        </th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <xsl:choose>\n                        <xsl:when\n                            test=\"@name='histogram'\">\n                            <tr>\n                                <td colspan=\"2\">\n                                    <xsl:call-template name=\"histogram\"/>\n                                </td>\n                            </tr>\n                        </xsl:when>\n                        <xsl:otherwise>\n                            <xsl:apply-templates/>\n                        </xsl:otherwise>\n                    </xsl:choose>\n                </tbody>\n            </table>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"histogram\">\n        <div class=\"doc\">\n            <xsl:call-template name=\"barchart\">\n                <xsl:with-param name=\"max_bar_width\">50</xsl:with-param>\n                <xsl:with-param name=\"iwidth\">800</xsl:with-param>\n                <xsl:with-param name=\"iheight\">160</xsl:with-param>\n                <xsl:with-param name=\"fill\">blue</xsl:with-param>\n            </xsl:call-template>\n        </div>\n    </xsl:template>\n\n    <xsl:template name=\"barchart\">\n        <xsl:param name=\"max_bar_width\"/>\n        <xsl:param name=\"iwidth\"/>\n        <xsl:param name=\"iheight\"/>\n        <xsl:param name=\"fill\"/>\n        <xsl:variable name=\"max\">\n            <xsl:for-each select=\"int\">\n                <xsl:sort data-type=\"number\" order=\"descending\"/>\n                <xsl:if test=\"position()=1\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n            </xsl:for-each>\n        </xsl:variable>\n        <xsl:variable name=\"bars\">\n           <xsl:value-of select=\"count(int)\"/>\n        </xsl:variable>\n        <xsl:variable name=\"bar_width\">\n           <xsl:choose>\n             <xsl:when test=\"$max_bar_width &lt; ($iwidth div $bars)\">\n               <xsl:value-of select=\"$max_bar_width\"/>\n             </xsl:when>\n             <xsl:otherwise>\n               <xsl:value-of select=\"$iwidth div $bars\"/>\n             </xsl:otherwise>\n           </xsl:choose>\n        </xsl:variable>\n        <table class=\"histogram\">\n           <tbody>\n              <tr>\n                <xsl:for-each select=\"int\">\n                   <td>\n                 <xsl:value-of select=\".\"/>\n                 <div class=\"histogram\">\n                  <xsl:attribute name=\"style\">background-color: <xsl:value-of select=\"$fill\"/>; width: <xsl:value-of select=\"$bar_width\"/>px; height: <xsl:value-of select=\"($iheight*number(.)) div $max\"/>px;</xsl:attribute>\n                 </div>\n                   </td> \n                </xsl:for-each>\n              </tr>\n              <tr>\n                <xsl:for-each select=\"int\">\n                   <td>\n                       <xsl:value-of select=\"@name\"/>\n                   </td>\n                </xsl:for-each>\n              </tr>\n           </tbody>\n        </table>\n    </xsl:template>\n\n    <xsl:template name=\"keyvalue\">\n        <xsl:choose>\n            <xsl:when test=\"@name\">\n                <tr>\n                    <td class=\"name\">\n                        <xsl:value-of select=\"@name\"/>\n                    </td>\n                    <td class=\"value\">\n                        <xsl:value-of select=\".\"/>\n                    </td>\n                </tr>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:value-of select=\".\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template match=\"int|bool|long|float|double|uuid|date\">\n        <xsl:call-template name=\"keyvalue\"/>\n    </xsl:template>\n\n    <xsl:template match=\"arr\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <ul>\n                    <xsl:for-each select=\"child::*\">\n                        <li>\n                            <xsl:apply-templates/>\n                        </li>\n                    </xsl:for-each>\n                </ul>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template match=\"str\">\n        <xsl:choose>\n            <xsl:when test=\"@name='schema' or @name='index' or @name='flags'\">\n                <xsl:call-template name=\"schema\"/>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:call-template name=\"keyvalue\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template name=\"schema\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <xsl:if test=\"contains(.,'unstored')\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n                <xsl:if test=\"not(contains(.,'unstored'))\">\n                    <xsl:call-template name=\"infochar2string\">\n                        <xsl:with-param name=\"charList\">\n                            <xsl:value-of select=\".\"/>\n                        </xsl:with-param>\n                    </xsl:call-template>\n                </xsl:if>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template name=\"infochar2string\">\n        <xsl:param name=\"i\">1</xsl:param>\n        <xsl:param name=\"charList\"/>\n\n        <xsl:variable name=\"char\">\n            <xsl:value-of select=\"substring($charList,$i,1)\"/>\n        </xsl:variable>\n        <xsl:choose>\n            <xsl:when test=\"$char='I'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='I']\"/> - </xsl:when>\n            <xsl:when test=\"$char='T'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='T']\"/> - </xsl:when>\n            <xsl:when test=\"$char='S'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='S']\"/> - </xsl:when>\n            <xsl:when test=\"$char='M'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='M']\"/> - </xsl:when>\n            <xsl:when test=\"$char='V'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='V']\"/> - </xsl:when>\n            <xsl:when test=\"$char='o'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='o']\"/> - </xsl:when>\n            <xsl:when test=\"$char='p'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='p']\"/> - </xsl:when>\n            <xsl:when test=\"$char='O'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='O']\"/> - </xsl:when>\n            <xsl:when test=\"$char='L'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='L']\"/> - </xsl:when>\n            <xsl:when test=\"$char='B'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='B']\"/> - </xsl:when>\n            <xsl:when test=\"$char='C'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='C']\"/> - </xsl:when>\n            <xsl:when test=\"$char='f'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='f']\"/> - </xsl:when>\n            <xsl:when test=\"$char='l'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='l']\"/> -\n            </xsl:when>\n        </xsl:choose>\n\n        <xsl:if test=\"not($i>=string-length($charList))\">\n            <xsl:call-template name=\"infochar2string\">\n                <xsl:with-param name=\"i\">\n                    <xsl:value-of select=\"$i+1\"/>\n                </xsl:with-param>\n                <xsl:with-param name=\"charList\">\n                    <xsl:value-of select=\"$charList\"/>\n                </xsl:with-param>\n            </xsl:call-template>\n        </xsl:if>\n    </xsl:template>\n    <xsl:template name=\"css\">\n        <style type=\"text/css\">\n            <![CDATA[\n            td.name {font-style: italic; font-size:80%; }\n            .doc { margin: 0.5em; border: solid grey 1px; }\n            .exp { display: none; font-family: monospace; white-space: pre; }\n            div.histogram { background: none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;}\n            table.histogram { width: auto; vertical-align: bottom; }\n            table.histogram td, table.histogram th { text-align: center; vertical-align: bottom; border-bottom: 1px solid #ff9933; width: auto; }\n            ]]>\n        </style>\n    </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/paraphrase/conf/xslt/updateXml.xsl",
    "content": "<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!--\n  Simple transform of Solr query response into Solr Update XML compliant XML.\n  When used in the xslt response writer you will get UpdaateXML as output.\n  But you can also store a query response XML to disk and feed this XML to\n  the XSLTUpdateRequestHandler to index the content. Provided as example only.\n  See http://wiki.apache.org/solr/XsltUpdateRequestHandler for more info\n -->\n<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n  <xsl:output media-type=\"text/xml\" method=\"xml\" indent=\"yes\"/>\n\n  <xsl:template match='/'>\n    <add>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n    </add>\n  </xsl:template>\n  \n  <!-- Ignore score (makes no sense to index) -->\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n  </xsl:template>\n\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <doc>\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n    </doc>\n  </xsl:template>\n\n  <!-- Flatten arrays to duplicate field lines -->\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n      <xsl:variable name=\"fn\" select=\"@name\"/>\n      \n      <xsl:for-each select=\"*\">\n\t\t<xsl:element name=\"field\">\n\t\t    <xsl:attribute name=\"name\"><xsl:value-of select=\"$fn\"/></xsl:attribute>\n\t        <xsl:value-of select=\".\"/>\n\t\t</xsl:element>\n      </xsl:for-each>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n      <xsl:variable name=\"fn\" select=\"@name\"/>\n\n\t<xsl:element name=\"field\">\n\t    <xsl:attribute name=\"name\"><xsl:value-of select=\"$fn\"/></xsl:attribute>\n        <xsl:value-of select=\".\"/>\n\t</xsl:element>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n   This is an example of a simple \"solr.xml\" file for configuring one or \n   more Solr Cores, as well as allowing Cores to be added, removed, and \n   reloaded via HTTP requests.\n\n   More information about options available in this configuration file, \n   and Solr Core administration can be found online:\n   http://wiki.apache.org/solr/CoreAdmin\n-->\n\n<!--\n All (relative) paths are relative to the Solr Home Directory\n  \n  persistent: Save changes made via the API to this file\n  sharedLib: path to a lib directory that will be shared across all cores\n-->\n<solr persistent=\"true\">\n\t<!-- by default, this is 50 @ WARN\n  <logging enabled=\"true\">\n  \t<watcher size=\"100\" threshold=\"INFO\" />\n  </logging>\n   -->\n\n  <!--\n  adminPath: RequestHandler path to manage cores.  \n    If 'null' (or absent), cores will not be manageable via request handler\n  defaultCoreName: (optional) core to use when no core name is specified in an access url\n    \n  All of the attributes in cores after defaultCoreName only apply when running in SolrCloud mode.\n  You can read more about SolrCloud mode at http://wiki.apache.org/solr/SolrCloud\n  -->\n  <cores adminPath=\"/admin/cores\" defaultCoreName=\"collection1\" host=\"${host:}\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\" zkClientTimeout=\"${zkClientTimeout:15000}\">\n    <core name=\"paraphrase\" instanceDir=\"paraphrase\" />\n  </cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr/zoo.cfg",
    "content": "# The number of milliseconds of each tick\ntickTime=2000\n# The number of ticks that the initial\n# synchronization phase can take\ninitLimit=10\n# The number of ticks that can pass between\n# sending a request and getting an acknowledgement\nsyncLimit=5\n\n# the directory where the snapshot is stored.\n# dataDir=/opt/zookeeper/data\n# NOTE: Solr defaults the dataDir to <solrHome>/zoo_data\n\n# the port at which the clients will connect\n# clientPort=2181\n# NOTE: Solr sets this based on zkRun / zkHost params\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/META-INF/LICENSE.txt",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n==========================================================================\nThe following license applies to the JQuery JavaScript library\n--------------------------------------------------------------------------\nCopyright (c) 2010 John Resig, http://jquery.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/META-INF/MANIFEST.MF",
    "content": "Manifest-Version: 1.0\r\nImplementation-Vendor: The Apache Software Foundation\r\nAnt-Version: Apache Ant 1.8.2\r\nImplementation-Title: org.apache.solr\r\nImplementation-Version: 4.3.0 1477023 - simonw - 2013-04-29 15:10:07\r\nSpecification-Vendor: The Apache Software Foundation\r\nSpecification-Title: Apache Solr Search Server\r\nCreated-By: 1.6.0_45-b06-451-11M4406 (Apple Inc.)\r\nSpecification-Version: 4.3.0\r\nExtension-Name: org.apache.solr\r\nX-Compile-Source-JDK: 1.6\r\nX-Compile-Target-JDK: 1.6\r\n\r\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/META-INF/NOTICE.txt",
    "content": "==============================================================\n Apache Solr\n Copyright 2006-2013 The Apache Software Foundation\n==============================================================\n\nThis product includes software developed by\nThe Apache Software Foundation (http://www.apache.org/).\n\nIncludes software from other Apache Software Foundation projects,\nincluding, but not limited to:\n  - Apache Lucene Java\n  - Apache Commons\n  - Apache Geronimo (stax API)\n\nThis product includes the JQuery JavaScript library created by John Resig.\nCopyright (c) 2010 John Resig, http://jquery.com/\n\nThis product includes the D3.js JavaScript library created by Michael Bostock.\nCopyright (c) 2012, Michael Bostock, https://github.com/mbostock/d3\n\nThis product includes the highlight.js Javascript library created by Ivan Sagalaev\nCopyright (c) 2006, Ivan Sagalaev, https://github.com/isagalaev/highlight.js\n\nstax-utils library: https://stax-utils.dev.java.net/\nCopyright (c) 2004, Christian Niles, unit12.net\nCopyright (c) 2004, Sun Microsystems, Inc.\nCopyright (c) 2006, John Kristian \nLicense: The BSD License (http://www.opensource.org/licenses/bsd-license.php)\n\nJavaMail API 1.4.1: https://glassfish.dev.java.net/javaee5/mail/\nLicense: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html)\n\nJavaBeans Activation Framework (JAF): http://java.sun.com/products/javabeans/jaf/index.jsp\nLicense: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html)\n\nHSQL Database (HSQLDB): http://hsqldb.org/\nLicense: http://hsqldb.org/web/hsqlLicense.html\n\n=========================================================================\n==  Apache Lucene Notice                                               ==\n=========================================================================\n\nApache Lucene\nCopyright 2013 The Apache Software Foundation\n\nThis product includes software developed by\nThe Apache Software Foundation (http://www.apache.org/).\n\nIncludes software from other Apache Software Foundation projects,\nincluding, but not limited to:\n - Apache Ant\n - Apache Jakarta Regexp\n - Apache Commons\n - Apache Xerces\n\nICU4J, (under analysis/icu) is licensed under an MIT styles license\nand Copyright (c) 1995-2008 International Business Machines Corporation and others\n\nSome data files (under analysis/icu/src/data) are derived from Unicode data such\nas the Unicode Character Database. See http://unicode.org/copyright.html for more\ndetails.\n\nBrics Automaton (under core/src/java/org/apache/lucene/util/automaton) is \nBSD-licensed, created by Anders Møller. See http://www.brics.dk/automaton/\n\nThe levenshtein automata tables (under core/src/java/org/apache/lucene/util/automaton) were\nautomatically generated with the moman/finenight FSA library, created by\nJean-Philippe Barrette-LaPierre. This library is available under an MIT license,\nsee http://sites.google.com/site/rrettesite/moman and \nhttp://bitbucket.org/jpbarrette/moman/overview/\n\nThe class org.apache.lucene.util.SorterTemplate was inspired by CGLIB's class\nwith the same name. The implementation part is mainly done using pre-existing\nLucene sorting code. In-place stable mergesort was borrowed from CGLIB,\nwhich is Apache-licensed.\n\nThe class org.apache.lucene.util.WeakIdentityMap was derived from\nthe Apache CXF project and is Apache License 2.0.\n\nThe Google Code Prettify is Apache License 2.0.\nSee http://code.google.com/p/google-code-prettify/\n\nJUnit (junit-4.10) is licensed under the Common Public License v. 1.0\nSee http://junit.sourceforge.net/cpl-v10.html\n\nThis product includes code (JaspellTernarySearchTrie) from Java Spelling Checkin\ng Package (jaspell): http://jaspell.sourceforge.net/\nLicense: The BSD License (http://www.opensource.org/licenses/bsd-license.php)\n\nThe snowball stemmers in\n  analysis/common/src/java/net/sf/snowball\nwere developed by Martin Porter and Richard Boulton.\nThe snowball stopword lists in\n  analysis/common/src/resources/org/apache/lucene/analysis/snowball\nwere developed by Martin Porter and Richard Boulton.\nThe full snowball package is available from\n  http://snowball.tartarus.org/\n\nThe KStem stemmer in\n  analysis/common/src/org/apache/lucene/analysis/en\nwas developed by Bob Krovetz and Sergio Guzman-Lara (CIIR-UMass Amherst)\nunder the BSD-license.\n\nThe Arabic,Persian,Romanian,Bulgarian, and Hindi analyzers (common) come with a default\nstopword list that is BSD-licensed created by Jacques Savoy.  These files reside in:\nanalysis/common/src/resources/org/apache/lucene/analysis/ar/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/ro/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/bg/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/hi/stopwords.txt\nSee http://members.unine.ch/jacques.savoy/clef/index.html.\n\nThe German,Spanish,Finnish,French,Hungarian,Italian,Portuguese,Russian and Swedish light stemmers\n(common) are based on BSD-licensed reference implementations created by Jacques Savoy and\nLjiljana Dolamic. These files reside in:\nanalysis/common/src/java/org/apache/lucene/analysis/de/GermanLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/de/GermanMinimalStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/es/SpanishLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fi/FinnishLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fr/FrenchLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fr/FrenchMinimalStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/hu/HungarianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/it/ItalianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/pt/PortugueseLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/ru/RussianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/sv/SwedishLightStemmer.java\n\nThe Stempel analyzer (stempel) includes BSD-licensed software developed \nby the Egothor project http://egothor.sf.net/, created by Leo Galambos, Martin Kvapil,\nand Edmond Nolan.\n\nThe Polish analyzer (stempel) comes with a default\nstopword list that is BSD-licensed created by the Carrot2 project. The file resides\nin stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.\nSee http://project.carrot2.org/license.html.\n\nThe SmartChineseAnalyzer source code (smartcn) was\nprovided by Xiaoping Gao and copyright 2009 by www.imdict.net.\n\nWordBreakTestUnicode_*.java (under modules/analysis/common/src/test/) \nis derived from Unicode data such as the Unicode Character Database. \nSee http://unicode.org/copyright.html for more details.\n\nThe Morfologik analyzer (morfologik) includes BSD-licensed software\ndeveloped by Dawid Weiss and Marcin Miłkowski (http://morfologik.blogspot.com/).\n\nMorfologik uses data from Polish ispell/myspell dictionary\n(http://www.sjp.pl/slownik/en/) licenced on the terms of (inter alia)\nLGPL and Creative Commons ShareAlike.\n\nMorfologic includes data from BSD-licensed dictionary of Polish (SGJP)\n(http://sgjp.pl/morfeusz/)\n\nServlet-api.jar is under the CDDL license, the original source\ncode for this can be found at http://www.eclipse.org/jetty/downloads.php\n\n===========================================================================\nKuromoji Japanese Morphological Analyzer - Apache Lucene Integration\n===========================================================================\n\nThis software includes a binary and/or source version of data from\n\n  mecab-ipadic-2.7.0-20070801\n\nwhich can be obtained from\n\n  http://atilika.com/releases/mecab-ipadic/mecab-ipadic-2.7.0-20070801.tar.gz\n\nor\n\n  http://jaist.dl.sourceforge.net/project/mecab/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz\n\n===========================================================================\nmecab-ipadic-2.7.0-20070801 Notice\n===========================================================================\n\nNara Institute of Science and Technology (NAIST),\nthe copyright holders, disclaims all warranties with regard to this\nsoftware, including all implied warranties of merchantability and\nfitness, in no event shall NAIST be liable for\nany special, indirect or consequential damages or any damages\nwhatsoever resulting from loss of use, data or profits, whether in an\naction of contract, negligence or other tortuous action, arising out\nof or in connection with the use or performance of this software.\n\nA large portion of the dictionary entries\noriginate from ICOT Free Software.  The following conditions for ICOT\nFree Software applies to the current dictionary as well.\n\nEach User may also freely distribute the Program, whether in its\noriginal form or modified, to any third party or parties, PROVIDED\nthat the provisions of Section 3 (\"NO WARRANTY\") will ALWAYS appear\non, or be attached to, the Program, which is distributed substantially\nin the same form as set out herein and that such intended\ndistribution, if actually made, will neither violate or otherwise\ncontravene any of the laws and regulations of the countries having\njurisdiction over the User or the intended distribution itself.\n\nNO WARRANTY\n\nThe program was produced on an experimental basis in the course of the\nresearch and development conducted during the project and is provided\nto users as so produced on an experimental basis.  Accordingly, the\nprogram is provided without any warranty whatsoever, whether express,\nimplied, statutory or otherwise.  The term \"warranty\" used herein\nincludes, but is not limited to, any warranty of the quality,\nperformance, merchantability and fitness for a particular purpose of\nthe program and the nonexistence of any infringement or violation of\nany right of any third party.\n\nEach user of the program will agree and understand, and be deemed to\nhave agreed and understood, that there is no warranty whatsoever for\nthe program and, accordingly, the entire risk arising from or\notherwise connected with the program is assumed by the user.\n\nTherefore, neither ICOT, the copyright holder, or any other\norganization that participated in or was otherwise related to the\ndevelopment of the program and their respective officials, directors,\nofficers and other employees shall be held liable for any and all\ndamages, including, without limitation, general, special, incidental\nand consequential damages, arising out of or otherwise in connection\nwith the use or inability to use the program or any product, material\nor result produced or otherwise obtained by using the program,\nregardless of whether they have been advised of, or otherwise had\nknowledge of, the possibility of such damages at any time during the\nproject or thereafter.  Each user will be deemed to have agreed to the\nforegoing by his or her commencement of use of the program.  The term\n\"use\" as used herein includes, but is not limited to, the use,\nmodification, copying and distribution of the program and the\nproduction of secondary products from the program.\n\nIn the case where the program, whether in its original form or\nmodified, was distributed or delivered to or received by a user from\nany person, organization or entity other than ICOT, unless it makes or\ngrants independently of ICOT any specific warranty to the user in\nwriting, such person, organization or entity, will also be exempted\nfrom and not be held liable to the user for any such damages as noted\nabove as far as the program is concerned.\n---\n\nThis product includes/uses software, Woodstox (http://woodstox.codehaus.org),\ndeveloped by Codehaus  (http://www.codehaus.org/)\nLicense: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)\n=========================================================================\n==  Woodstox Notice                                                    ==\n=========================================================================\nThis product currently only contains code developed by authors\nof specific components, as identified by the source code files.\n\nSince product implements StAX API, it has dependencies to StAX API\nclasses.\n\nFor additional credits (generally to people who reported problems)\nsee CREDITS file.\n---\n\nThis product includes software developed by the Eclipse Foundation\n(specifically, Jetty, the bundled servlet container in example),\navailable under the Apache 2 License.\n\nServlet-api.jar is under the CDDL license, the original source\ncode for this can be found at http://www.eclipse.org/jetty/downloads.php\n\n=========================================================================\n==  SLF4J Notice -- http://www.slf4j.org/license.html                  ==\n=========================================================================\n\nCopyright (c) 2004-2008 QOS.ch\nAll rights reserved.\n\nPermission is hereby granted, free  of charge, to any person obtaining\na  copy  of this  software  and  associated  documentation files  (the\n\"Software\"), to  deal in  the Software without  restriction, including\nwithout limitation  the rights to  use, copy, modify,  merge, publish,\ndistribute,  sublicense, and/or sell  copies of  the Software,  and to\npermit persons to whom the Software  is furnished to do so, subject to\nthe following conditions:\n\nThe  above  copyright  notice  and  this permission  notice  shall  be\nincluded in all copies or substantial portions of the Software.\n\nTHE  SOFTWARE IS  PROVIDED  \"AS  IS\", WITHOUT  WARRANTY  OF ANY  KIND,\nEXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF\nMERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n=========================================================================\n==  Apache Tika Notices                                                ==\n=========================================================================\n\nThe following notices apply to contrib/extraction:\n\nThis product includes software developed by the following copyright owners:\n\nCopyright (c) 2000-2006 The Legion Of The Bouncy Castle\n(http://www.bouncycastle.org)\n\nCopyright (c) 2003-2005, www.pdfbox.org\n\nCopyright (c) 2003-2005, www.fontbox.org\n\nCopyright (c) 1995-2005 International Business Machines Corporation and others\n\nCopyright (c) 2000-2005 INRIA, France Telecom\n\nCopyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.\n\nCopyright 2004 Sun Microsystems, Inc. (Rome JAR)\n\nCopyright 2002-2008 by John Cowan (TagSoup -- http://ccil.org/~cowan/XML/tagsoup/)\n\nCopyright (C) 1994-2007 by the Xiph.org Foundation, http://www.xiph.org/ (OggVorbis)\n\nCopyright 2012 Kohei Taketa juniversalchardet (http://code.google.com/p/juniversalchardet/)\n\nLasse Collin and others, XZ for Java (http://tukaani.org/xz/java.html)\n\n=========================================================================\n==  Language Detection Notices                                         ==\n=========================================================================\n\nThe following notices apply to contrib/langid:\n\nThis product includes software developed by Cybozu Labs, Inc.\n(c)2010 All rights reserved by Cybozu Labs, Inc.\nhttp://code.google.com/p/language-detection/\n\nThis product includes software developed by the Jsonic project:\nhttp://sourceforge.jp/projects/jsonic/\n\n=========================================================================\n==     Carrot2 Notice                                                  ==\n=========================================================================\nCopyright (C) 2002-2010, Dawid Weiss, Stanislaw Osinski.\nPortions (C) Contributors listed in \"carrot2.CONTRIBUTORS\" file.\nAll rights reserved.\n\nThis product includes software developed by the Carrot2 Project.\n\nSee http://project.carrot2.org/\n\n=========================================================================\n==     Guava Notice                                                    ==\n=========================================================================\n\nCopyright (C) 2009 Google Inc.\n\nThis product includes software developed by the Google Guava project.\n\nSee http://code.google.com/p/guava-libraries/\n\n=========================================================================\n==     Prettify Notice                                                 ==\n=========================================================================\n\nCopyright (C) 2009 Google Inc.\n\nThis product includes software developed by the Google Prettify project.\n\nSee http://code.google.com/p/google-code-prettify/\n\n=========================================================================\n==     Jackson Notice                                                  ==\n=========================================================================\nCopyright 2010 FasterXML, LLC\n\nThis product includes software developed by the Jackson project.\n\nSee http://jackson.codehaus.org/\n\n=========================================================================\n==     HSQLDB Notice                                                   ==\n=========================================================================\n\nFor content, code, and products originally developed by Thomas Mueller and the Hypersonic SQL Group:\n\nCopyright (c) 1995-2000 by the Hypersonic SQL Group.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\nNeither the name of the Hypersonic SQL Group nor the names of its\ncontributors may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL GROUP,\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis software consists of voluntary contributions made by many individuals on behalf of the\nHypersonic SQL Group.\n\nFor work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt):\n\nCopyright (c) 2001-2005, The HSQL Development Group\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\nNeither the name of the HSQL Development Group nor the names of its\ncontributors may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis product includes tests written with EasyMock Copyright 2001-2007\nTammo Freese (http://www.easymock.org/)\n\n==========================================================================\nThe following license applies to easymock-2.2.jar\n--------------------------------------------------------------------------\nEasyMock 2 License (MIT License)\nCopyright (c) 2001-2007 OFFIS, Tammo Freese.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of \nthis software and associated documentation files (the \"Software\"), to deal in \nthe Software without restriction, including without limitation the rights to \nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies \nof the Software, and to permit persons to whom the Software is furnished to do \nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all \ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE \nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE \nSOFTWARE. \n\n==========================================================================\nThe following license applies to stax-utils.jar\n--------------------------------------------------------------------------\nCopyright (c) 2004, Christian Niles, unit12.net\nCopyright (c) 2004, Sun Microsystems, Inc.\nCopyright (c) 2006, John Kristian \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n    * Redistributions of source code must retain the above copyright\n      notice, this list of conditions and the following disclaimer.\n\n    * Redistributions in binary form must reproduce the above\n      copyright notice, this list of conditions and the following\n      disclaimer in the documentation and/or other materials provided\n      with the distribution.\n\n    * Neither the name of the listed copyright holders nor the names\n      of its contributors may be used to endorse or promote products\n      derived from this software without specific prior written\n      permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n=========================================================================\n==     Restlet Notice                                                  ==\n=========================================================================\n\nCopyright (C) 2005-2013 Restlet S.A.S.\n\nRestlet is a registered trademark of Restlet S.A.S.\n\nThis product contains software developed by the Restlet project.\n\nSee http://www.restlet.org/\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/WEB-INF/web.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n<web-app xmlns=\"http://java.sun.com/xml/ns/javaee\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd\"\n         version=\"2.5\"\n         metadata-complete=\"true\"\n>\n\n\n  <!-- Uncomment if you are trying to use a Resin version before 3.0.19.\n    Their XML implementation isn't entirely compatible with Xerces.\n    Below are the implementations to use with Sun's JVM.\n  <system-property javax.xml.xpath.XPathFactory=\n             \"com.sun.org.apache.xpath.internal.jaxp.XPathFactoryImpl\"/>\n  <system-property javax.xml.parsers.DocumentBuilderFactory=\n             \"com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl\"/>\n  <system-property javax.xml.parsers.SAXParserFactory=\n             \"com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl\"/>\n   -->\n\n  <!-- People who want to hardcode their \"Solr Home\" directly into the\n       WAR File can set the JNDI property here...\n   -->\n  <!--\n    <env-entry>\n       <env-entry-name>solr/home</env-entry-name>\n       <env-entry-value>/put/your/solr/home/here</env-entry-value>\n       <env-entry-type>java.lang.String</env-entry-type>\n    </env-entry>\n   -->\n   \n  <!-- Any path (name) registered in solrconfig.xml will be sent to that filter -->\n  <filter>\n    <filter-name>SolrRequestFilter</filter-name>\n    <filter-class>org.apache.solr.servlet.SolrDispatchFilter</filter-class>\n    <!-- If you are wiring Solr into a larger web application which controls\n         the web context root, you will probably want to mount Solr under\n         a path prefix (app.war with /app/solr mounted into it, for example).\n         You will need to put this prefix in front of the SolrDispatchFilter\n         url-pattern mapping too (/solr/*), and also on any paths for\n         legacy Solr servlet mappings you may be using.\n         For the Admin UI to work properly in a path-prefixed configuration,\n         the admin folder containing the resources needs to be under the app context root\n         named to match the path-prefix.  For example:\n\n            .war\n               xxx\n                 js\n                   main.js\n    -->\n    <!--\n    <init-param>\n      <param-name>path-prefix</param-name>\n      <param-value>/xxx</param-value>\n    </init-param>\n    -->\n  </filter>\n\n  <filter-mapping>\n    <!--\n      NOTE: When using multicore, /admin JSP URLs with a core specified\n      such as /solr/coreName/admin/stats.jsp get forwarded by a\n      RequestDispatcher to /solr/admin/stats.jsp with the specified core\n      put into request scope keyed as \"org.apache.solr.SolrCore\".\n\n      It is unnecessary, and potentially problematic, to have the SolrDispatchFilter\n      configured to also filter on forwards.  Do not configure\n      this dispatcher as <dispatcher>FORWARD</dispatcher>.\n    -->\n    <filter-name>SolrRequestFilter</filter-name>\n    <url-pattern>/*</url-pattern>\n  </filter-mapping>\n\n  <servlet>\n    <servlet-name>Zookeeper</servlet-name>\n    <servlet-class>org.apache.solr.servlet.ZookeeperInfoServlet</servlet-class>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>LoadAdminUI</servlet-name>\n    <servlet-class>org.apache.solr.servlet.LoadAdminUiServlet</servlet-class>\n  </servlet>\n  \n  <!-- Remove in Solr 5.0 -->\n  <!-- This sends SC_MOVED_PERMANENTLY (301) for resources that changed in 4.0 -->\n  <servlet>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/#/</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>RedirectOldZookeeper</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/zookeeper</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>RedirectLogging</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/#/~logging</param-value>\n    </init-param>\n  </servlet>\n\n  <servlet>\n    <servlet-name>SolrRestApi</servlet-name>\n    <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class>\n    <init-param>\n      <param-name>org.restlet.application</param-name>\n      <param-value>org.apache.solr.rest.SolrRestApi</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet-mapping>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <url-pattern>/admin/</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <url-pattern>/admin</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectOldZookeeper</servlet-name>\n    <url-pattern>/zookeeper.jsp</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectLogging</servlet-name>\n    <url-pattern>/logging</url-pattern>\n  </servlet-mapping>\n\n  <!-- Servlet Mapping -->\n  <servlet-mapping>\n    <servlet-name>Zookeeper</servlet-name>\n    <url-pattern>/zookeeper</url-pattern>\n  </servlet-mapping>\n  \n  <servlet-mapping>\n    <servlet-name>LoadAdminUI</servlet-name>\n    <url-pattern>/admin.html</url-pattern>\n  </servlet-mapping>\n\n  <servlet-mapping>\n    <servlet-name>SolrRestApi</servlet-name>\n    <url-pattern>/schema/*</url-pattern>\n  </servlet-mapping>\n  \n  <mime-mapping>\n    <extension>.xsl</extension>\n    <!-- per http://www.w3.org/TR/2006/PR-xslt20-20061121/ -->\n    <mime-type>application/xslt+xml</mime-type>\n  </mime-mapping>\n\n  <welcome-file-list>\n    <welcome-file>admin.html</welcome-file>\n  </welcome-file-list>\n\n</web-app>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/WEB-INF/weblogic.xml",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<weblogic-web-app\n    xmlns=\"http://www.bea.com/ns/weblogic/90\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd\">\n\n    <container-descriptor>\n\t<filter-dispatched-requests-enabled>false</filter-dispatched-requests-enabled>\n    </container-descriptor>\n\n</weblogic-web-app>\n\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/admin.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n<html>\n\n<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n\n<head>\n    \n  <title>Solr Admin</title>\n    \n  <link rel=\"icon\" type=\"image/ico\" href=\"img/favicon.ico?_=${version}\">\n\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/common.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/analysis.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/cloud.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/cores.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/dashboard.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/dataimport.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/index.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/java-properties.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/logging.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/menu.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/plugins.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/query.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/replication.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/schema-browser.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/threads.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/chosen.css?_=${version}\">\n    \n  <script type=\"text/javascript\">\n    \n  var app_config = {};\n    \n  app_config.solr_path = '${contextPath}';\n  app_config.core_admin_path = '${adminPath}';\n    \n  </script>\n    \n</head>\n<body>\n    \n  <div id=\"wrapper\">\n    \n    <div id=\"header\">\n            \n      <a href=\"./\" id=\"solr\"><span>Apache SOLR</span></a>\n\n      <p id=\"environment\">&nbsp;</p>\n\n    </div>\n\n    <div id=\"main\" class=\"clearfix\">\n    \n      <div id=\"init-failures\">\n\n          <h2>SolrCore Initialization Failures</h2>\n          <ul></ul>\n          <p>Please check your logs for more information</p>\n                \n      </div>\n\n      <div id=\"content-wrapper\">\n        <div id=\"content\">\n                  \n          &nbsp;\n                  \n        </div>\n      </div>\n            \n      <div id=\"menu-wrapper\">\n        <div>\n                  \n          <ul id=\"menu\">\n\n            <li id=\"index\" class=\"global\"><p><a href=\"#/\">Dashboard</a></p></li>\n\n            <li id=\"logging\" class=\"global\"><p><a href=\"#/~logging\">Logging</a></p>\n              <ul>\n                <li class=\"level\"><a href=\"#/~logging/level\">Level</a></li>\n              </ul>\n            </li>\n\n            <li id=\"cloud\" class=\"global optional\"><p><a href=\"#/~cloud\">Cloud</a></p>\n              <ul>\n                <li class=\"tree\"><a href=\"#/~cloud?view=tree\">Tree</a></li>\n                <li class=\"graph\"><a href=\"#/~cloud\">Graph</a></li>\n                <li class=\"rgraph\"><a href=\"#/~cloud?view=rgraph\">Graph (Radial)</a></li>\n                <li class=\"dump\"><a href=\"#/~cloud\">Dump</a></li>\n              </ul>\n            </li>\n\n            <li id=\"cores\" class=\"global\"><p><a href=\"#/~cores\">Core Admin</a></p></li>\n\n            <li id=\"java-properties\" class=\"global\"><p><a href=\"#/~java-properties\">Java Properties</a></li>\n\n            <li id=\"threads\" class=\"global\"><p><a href=\"#/~threads\">Thread Dump</a></p></li>\n            \n          </ul>\n\n          <div id=\"core-selector\">\n            <select data-placeholder=\"Core Selector\"></select>\n          </div>\n          <div id=\"core-menu\">\n            <ul></ul>\n          </div>\n                  \n        </div>\n      </div>\n            \n      <div id=\"meta\">\n                \n        <ul>\n                    \n          <li class=\"documentation\"><a href=\"http://lucene.apache.org/solr/\"><span>Documentation</span></a></li>\n          <li class=\"issues\"><a href=\"http://issues.apache.org/jira/browse/SOLR\"><span>Issue Tracker</span></a></li>\n          <li class=\"irc\"><a href=\"http://webchat.freenode.net/?channels=#solr\"><span>IRC Channel</span></a></li>\n          <li class=\"mailinglist\"><a href=\"http://wiki.apache.org/solr/UsingMailingLists\"><span>Community forum</span></a></li>\n          <li class=\"wiki-query-syntax\"><a href=\"http://wiki.apache.org/solr/SolrQuerySyntax\"><span>Solr Query Syntax</span></a></li>\n                    \n        </ul>\n                \n      </div>\n            \n    </div>\n    \n  </div>\n  \n  <script type=\"text/javascript\"> var require = { urlArgs: '_=${version}' }; </script>\n  <script src=\"js/require.js?_=${version}\" data-main=\"js/main\"></script>\n\n</body>\n</html>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/chosen.css",
    "content": "/* @group Base */\n.chzn-container {\n  font-size: 13px;\n  position: relative;\n  display: inline-block;\n  zoom: 1;\n  *display: inline;\n}\n.chzn-container .chzn-drop {\n  background: #fff;\n  border: 1px solid #aaa;\n  border-top: 0;\n  position: absolute;\n  top: 29px;\n  left: 0;\n  -webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);\n  -moz-box-shadow   : 0 4px 5px rgba(0,0,0,.15);\n  -o-box-shadow     : 0 4px 5px rgba(0,0,0,.15);\n  box-shadow        : 0 4px 5px rgba(0,0,0,.15);\n  z-index: 999;\n}\n/* @end */\n\n/* @group Single Chosen */\n.chzn-container-single .chzn-single {\n  background-color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0 );   \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));\n  background-image: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -ms-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); \n  -webkit-border-radius: 5px;\n  -moz-border-radius   : 5px;\n  border-radius        : 5px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n  border: 1px solid #aaaaaa;\n  -webkit-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  -moz-box-shadow   : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  box-shadow        : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  display: block;\n  overflow: hidden;\n  white-space: nowrap;\n  position: relative;\n  height: 23px;\n  line-height: 24px;\n  padding: 0 0 0 8px;\n  color: #444444;\n  text-decoration: none;\n}\n.chzn-container-single .chzn-default {\n\tcolor: #999;\n}\n.chzn-container-single .chzn-single span {\n  margin-right: 26px;\n  display: block;\n  overflow: hidden;\n  white-space: nowrap;\n  -o-text-overflow: ellipsis;\n  -ms-text-overflow: ellipsis;\n  text-overflow: ellipsis;\n}\n.chzn-container-single .chzn-single abbr {\n  display: block;\n  position: absolute;\n  right: 26px;\n  top: 6px;\n  width: 12px;\n  height: 13px;\n  font-size: 1px;\n  background: url(../img/chosen-sprite.png) right top no-repeat;\n}\n.chzn-container-single .chzn-single abbr:hover {\n  background-position: right -11px;\n}\n.chzn-container-single .chzn-single div {\n  position: absolute;\n  right: 0;\n  top: 0;\n  display: block;\n  height: 100%;\n  width: 18px;\n}\n.chzn-container-single .chzn-single div b {\n  background: url('../img/chosen-sprite.png') no-repeat 0 0;\n  display: block;\n  width: 100%;\n  height: 100%;\n}\n.chzn-container-single .chzn-search {\n  padding: 3px 4px;\n  position: relative;\n  margin: 0;\n  white-space: nowrap;\n  z-index: 1010;\n}\n.chzn-container-single .chzn-search input {\n  background: #fff url('../img/chosen-sprite.png') no-repeat 100% -22px;\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  margin: 1px 0;\n  padding: 4px 20px 4px 5px;\n  outline: 0;\n  border: 1px solid #aaa;\n  font-family: sans-serif;\n  font-size: 1em;\n}\n.chzn-container-single .chzn-drop {\n  -webkit-border-radius: 0 0 4px 4px;\n  -moz-border-radius   : 0 0 4px 4px;\n  border-radius        : 0 0 4px 4px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n}\n/* @end */\n\n.chzn-container-single-nosearch .chzn-search input {\n  position: absolute;\n  left: -9000px;\n}\n\n/* @group Multi Chosen */\n.chzn-container-multi .chzn-choices {\n  background-color: #fff;\n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  border: 1px solid #aaa;\n  margin: 0;\n  padding: 0;\n  cursor: text;\n  overflow: hidden;\n  height: auto !important;\n  height: 1%;\n  position: relative;\n}\n.chzn-container-multi .chzn-choices li {\n  float: left;\n  list-style: none;\n}\n.chzn-container-multi .chzn-choices .search-field {\n  white-space: nowrap;\n  margin: 0;\n  padding: 0;\n}\n.chzn-container-multi .chzn-choices .search-field input {\n  color: #666;\n  background: transparent !important;\n  border: 0 !important;\n  font-family: sans-serif;\n  font-size: 100%;\n  height: 15px;\n  padding: 5px;\n  margin: 1px 0;\n  outline: 0;\n  -webkit-box-shadow: none;\n  -moz-box-shadow   : none;\n  -o-box-shadow     : none;\n  box-shadow        : none;\n}\n.chzn-container-multi .chzn-choices .search-field .default {\n  color: #999;\n}\n.chzn-container-multi .chzn-choices .search-choice {\n  -webkit-border-radius: 3px;\n  -moz-border-radius   : 3px;\n  border-radius        : 3px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n  background-color: #e4e4e4;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 ); \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));\n  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); \n  -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  -moz-box-shadow   : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  box-shadow        : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  color: #333;\n  border: 1px solid #aaaaaa;\n  line-height: 13px;\n  padding: 3px 20px 3px 5px;\n  margin: 3px 0 3px 5px;\n  position: relative;\n  cursor: default;\n}\n.chzn-container-multi .chzn-choices .search-choice-focus {\n  background: #d4d4d4;\n}\n.chzn-container-multi .chzn-choices .search-choice .search-choice-close {\n  display: block;\n  position: absolute;\n  right: 3px;\n  top: 4px;\n  width: 12px;\n  height: 13px;\n  font-size: 1px;\n  background: url(../img/chosen-sprite.png) right top no-repeat;\n}\n.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {\n  background-position: right -11px;\n}\n.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close {\n  background-position: right -11px;\n}\n/* @end */\n\n/* @group Results */\n.chzn-container .chzn-results {\n  margin: 0 4px 4px 0;\n  max-height: 240px;\n  padding: 0 0 0 4px;\n  position: relative;\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.chzn-container-multi .chzn-results {\n  margin: -1px 0 0;\n  padding: 0;\n}\n.chzn-container .chzn-results li {\n  display: none;\n  line-height: 15px;\n  padding: 5px 6px;\n  margin: 0;\n  list-style: none;\n}\n.chzn-container .chzn-results .active-result {\n  cursor: pointer;\n  display: list-item;\n}\n.chzn-container .chzn-results .highlighted {\n  background-color: #3875d7;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0 );  \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));\n  background-image: -webkit-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -moz-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -o-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -ms-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  color: #fff;\n}\n.chzn-container .chzn-results li em {\n  background: #feffde;\n  font-style: normal;\n}\n.chzn-container .chzn-results .highlighted em {\n  background: transparent;\n}\n.chzn-container .chzn-results .no-results {\n  background: #f4f4f4;\n  display: list-item;\n}\n.chzn-container .chzn-results .group-result {\n  cursor: default;\n  color: #999;\n  font-weight: bold;\n}\n.chzn-container .chzn-results .group-option {\n  padding-left: 15px;\n}\n.chzn-container-multi .chzn-drop .result-selected {\n  display: none;\n}\n.chzn-container .chzn-results-scroll {\n  background: white;\n  margin: 0 4px;\n  position: absolute;\n  text-align: center;\n  width: 321px; /* This should by dynamic with js */\n  z-index: 1;\n}\n.chzn-container .chzn-results-scroll span {\n  display: inline-block;\n  height: 17px;\n  text-indent: -5000px;\n  width: 9px;\n}\n.chzn-container .chzn-results-scroll-down {\n  bottom: 0;\n}\n.chzn-container .chzn-results-scroll-down span {\n  background: url('../img/chosen-sprite.png') no-repeat -4px -3px;\n}\n.chzn-container .chzn-results-scroll-up span {\n  background: url('../img/chosen-sprite.png') no-repeat -22px -3px;\n}\n/* @end */\n\n/* @group Active  */\n.chzn-container-active .chzn-single {\n  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);\n  -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);\n  -o-box-shadow     : 0 0 5px rgba(0,0,0,.3);\n  box-shadow        : 0 0 5px rgba(0,0,0,.3);\n  border: 1px solid #5897fb;\n}\n.chzn-container-active .chzn-single-with-drop {\n  border: 1px solid #aaa;\n  -webkit-box-shadow: 0 1px 0 #fff inset;\n  -moz-box-shadow   : 0 1px 0 #fff inset;\n  -o-box-shadow     : 0 1px 0 #fff inset;\n  box-shadow        : 0 1px 0 #fff inset;\n  background-color: #eee;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );\n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));\n  background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -ms-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  -webkit-border-bottom-left-radius : 0;\n  -webkit-border-bottom-right-radius: 0;\n  -moz-border-radius-bottomleft : 0;\n  -moz-border-radius-bottomright: 0;\n  border-bottom-left-radius : 0;\n  border-bottom-right-radius: 0;\n}\n.chzn-container-active .chzn-single-with-drop div {\n  background: transparent;\n  border-left: none;\n}\n.chzn-container-active .chzn-single-with-drop div b {\n  background-position: -18px 1px;\n}\n.chzn-container-active .chzn-choices {\n  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);\n  -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);\n  -o-box-shadow     : 0 0 5px rgba(0,0,0,.3);\n  box-shadow        : 0 0 5px rgba(0,0,0,.3);\n  border: 1px solid #5897fb;\n}\n.chzn-container-active .chzn-choices .search-field input {\n  color: #111 !important;\n}\n/* @end */\n\n/* @group Disabled Support */\n.chzn-disabled {\n  cursor: default;\n  opacity:0.5 !important;\n}\n.chzn-disabled .chzn-single {\n  cursor: default;\n}\n.chzn-disabled .chzn-choices .search-choice .search-choice-close {\n  cursor: default;\n}\n\n/* @group Right to Left */\n.chzn-rtl { text-align: right; }\n.chzn-rtl .chzn-single { padding: 0 8px 0 0; overflow: visible; }\n.chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; direction: rtl; }\n\n.chzn-rtl .chzn-single div { left: 3px; right: auto; }\n.chzn-rtl .chzn-single abbr {\n  left: 26px;\n  right: auto;\n}\n.chzn-rtl .chzn-choices .search-field input { direction: rtl; }\n.chzn-rtl .chzn-choices li { float: right; }\n.chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin: 3px 5px 3px 0; }\n.chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; right: auto; background-position: right top;}\n.chzn-rtl.chzn-container-single .chzn-results { margin: 0 0 4px 4px; padding: 0 4px 0 0; }\n.chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 15px; }\n.chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; }\n.chzn-rtl .chzn-search input {\n  background: #fff url('../img/chosen-sprite.png') no-repeat -38px -22px;\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);  \n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  padding: 4px 5px 4px 20px;\n  direction: rtl;\n}\n/* @end */\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/analysis.css",
    "content": "#content #analysis-holder\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 50% 0;\n  background-repeat: repeat-y;\n}\n\n#content #analysis #field-analysis\n{\n  margin-bottom: 0;\n}\n\n#content #analysis #field-analysis .content\n{\n  padding-bottom: 0;\n}\n\n#content #analysis .settings-holder\n{\n  clear: both;\n  padding-top: 15px;\n}\n\n#content #analysis .settings\n{\n  background-color: #fff;\n  border-top: 1px solid #fafafa;\n  border-bottom: 1px solid #fafafa;\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n#content #analysis .settings select.loader\n{\n  background-position: 3px 50%;\n  padding-left: 21px;\n}\n\n#content #analysis .settings select optgroup\n{\n  font-style: normal;\n  padding: 5px;\n}\n\n#content #analysis .settings select option\n{\n  padding-left: 10px;\n}\n\n#content #analysis .settings #tor_schema\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  margin-left: 5px;\n  padding-left: 21px;\n}\n\n#content #analysis .settings #tor_schema:hover\n{\n  background-image: url( ../../img/ico/question.png );\n}\n\n#content #analysis .settings #tor_schema span\n{\n  display: none;\n}\n\n#content #analysis .settings #tor_schema:hover span\n{\n  display: inline;\n}\n\n#content #analysis .settings .buttons\n{\n  float: right;\n  width: 47%;\n}\n\n#content #analysis .settings button\n{\n  float: right;\n}\n\n#content #analysis .settings button span\n{\n  background-image: url( ../../img/ico/funnel.png );\n}\n\n#content #analysis .settings .verbose_output\n{\n  float: left;\n  width: auto;\n}\n\n#content #analysis .settings .verbose_output a\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #999;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #analysis .settings .verbose_output.active a\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n}\n\n#content #analysis .index label,\n#content #analysis .query label\n{\n  display: block;\n}\n\n#content #analysis .index textarea,\n#content #analysis .query textarea\n{\n  display: block;\n  width: 100%;\n}\n\n#content #analysis .index\n{\n  float: left;\n  margin-right: 0.5%;\n  min-width: 47%;\n  max-width: 99%;\n}\n\n#content #analysis .query\n{\n  float: right;\n  margin-left: 0.5%;\n  min-width: 47%;\n  max-width: 99%;\n}\n\n#content #analysis .analysis-error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #analysis .analysis-error .head a\n{\n  color: #fff;\n  cursor: auto;\n}\n\n#content #analysis #analysis-result\n{\n  overflow: auto;\n}\n\n#content #analysis #analysis-result .index,\n#content #analysis #analysis-result .query\n{\n  background-color: #fff;\n  padding-top: 20px;\n}\n\n#content #analysis #analysis-result table\n{\n  border-collapse: collapse;\n}\n\n#content #analysis #analysis-result td\n{\n  vertical-align: top;\n  white-space: nowrap;\n}\n\n#content #analysis #analysis-result td.part.analyzer div,\n#content #analysis #analysis-result td.part.spacer .holder,\n#content #analysis #analysis-result td td td\n{\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n\n#content #analysis #analysis-result td.legend,\n#content #analysis #analysis-result td.data tr.verbose_output\n{\n  display: none;\n}\n\n#content #analysis #analysis-result.verbose_output td.legend\n{\n  display: table-cell;\n}\n\n#content #analysis #analysis-result.verbose_output td.data tr.verbose_output\n{\n  display: table-row;\n}\n\n#content #analysis #analysis-result .match\n{\n  background-color: #e9eff7;\n  background-color: #f2f2ff;\n}\n\n#content #analysis #analysis-result td.part\n{\n  padding-bottom: 10px;\n}\n\n#content #analysis #analysis-result td.part.analyzer div\n{\n  border-right: 1px solid #f0f0f0;\n  padding-right: 10px;\n}\n\n#content #analysis #analysis-result td.part.analyzer abbr\n{\n  color: #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend .holder,\n#content #analysis #analysis-result td.part.data .holder\n{\n  padding-left: 10px;\n  padding-right: 10px;\n  border-right: 1px solid #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend td\n{\n  color: #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend .holder\n{\n  border-right-color: #f0f0f0;\n}\n\n#content #analysis #analysis-result td.part.data:last-child .holder\n{\n  padding-right: 0;\n  border-right: 0;\n}\n\n#content #analysis #analysis-result td.details \n{\n  padding-left: 10px;\n  padding-right: 10px;\n  border-left: 1px solid #f0f0f0;\n  border-right: 1px solid #f0f0f0;\n}\n\n#content #analysis #analysis-result td.details:first-child\n{\n  padding-left: 0;\n  border-left: 0;\n}\n\n#content #analysis #analysis-result td.details:last-child\n{\n  padding-right: 0;\n  border-right: 0;\n}\n\n#content #analysis #analysis-result td.details tr.empty td\n{\n  color: #f0f0f0;\n}\n\n#content #analysis #analysis-result td.details tr.raw_bytes td\n{\n  letter-spacing: -1px;\n}\n\n#content #analysis #analysis-result .part table table td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #analysis #analysis-result .part table table tr:first-child td\n{\n  border-top: 0;\n}\n\n#content #analysis #field-analysis h2 { background-image: url( ../../img/ico/receipt.png ); }\n#content #analysis .analysis-result h2 { background-image: url( ../../img/ico/receipt-invoice.png ); }"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/cloud.css",
    "content": "#content #cloud\n{\n  position: relative;\n}\n\n#content #cloud #frame .content\n{\n  display: none;\n}\n\n#content #cloud .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #cloud #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 12px;\n  color: #fff;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #cloud #error .msg\n{\n  font-style: italic;\n  font-weight: normal;\n  margin-top: 10px;\n}\n\n#content #cloud #debug\n{\n  background-color: #fff;\n  box-shadow: 0px 0px 10px #c0c0c0;\n  -moz-box-shadow: 0px 0px 10px #c0c0c0;\n  -webkit-box-shadow: 0px 0px 10px #c0c0c0;\n  display: none;\n  padding: 20px;\n  position: absolute;\n  left: 50px;\n  top: 10px;\n}\n\n#content #cloud #debug ul\n{\n  margin-bottom: 5px;\n}\n\n#content #cloud #debug ul a\n{\n  background-position: 4px 50%;\n  border-right: 0;\n  display: block;\n  padding: 2px 4px;\n  padding-left: 25px;\n}\n\n#content #cloud #debug ul a:hover,\n#content #cloud #debug ul a.hover\n{\n  background-color: #f0f0f0;\n}\n\n#content #cloud #debug .clipboard\n{\n  float: left;\n  position: relative;\n}\n\n#content #cloud #debug .clipboard a\n{\n  background-image: url( ../../img/ico/clipboard-paste.png );\n  z-index: 98;\n}\n\n#content #cloud #debug .clipboard a:hover,\n#content #cloud #debug .clipboard a.hover,\n#content #cloud #debug .clipboard.copied a\n{\n  background-image: url( ../../img/ico/clipboard-paste-document-text.png );\n}\n\n#content #cloud #debug .close\n{\n  float: right;\n}\n\n#content #cloud #debug .close a\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  padding-left: 21px;\n}\n\n#content #cloud #debug .close a:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #cloud #debug .debug\n{\n  border: 1px solid #f0f0f0;\n  max-height: 350px;\n  overflow: auto;\n  padding: 5px;\n  width: 500px;\n}\n\n#content #cloud #debug .debug .loader\n{\n  background-position: 5px 50%;\n  display: block;\n  padding: 10px 26px;\n}\n\n#content #cloud .content\n{\n  padding-left: 0;\n  padding-right: 0;\n}\n\n#content #cloud .content.show\n{\n  background-image: url( ../../img/div.gif );\n  background-repeat: repeat-y;\n  background-position: 31% 0;\n}\n\n#content #cloud #tree\n{\n  float: left;\n  width: 30%;\n}\n\n#content #cloud .show #tree\n{\n  overflow: hidden;\n}\n\n#content #cloud #file-content\n{\n  display: none;\n  float: right;\n  position: relative;\n  width: 68%;\n  min-height: 100px\n}\n\n#content #cloud .show #file-content\n{\n  display: block;\n}\n\n#content #cloud #file-content .close\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 50% 50%;\n  display: block;\n  height: 20px;\n  position: absolute;\n  right: 0;\n  top: 0;\n  width: 20px;\n}\n\n#content #cloud #file-content .close:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #cloud #file-content .close span\n{\n  display: none;\n}\n\n#content #cloud #file-content #data\n{\n  border-top: 1px solid #c0c0c0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #cloud #file-content #data pre\n{\n  display: block;\n  max-height: 600px;\n  overflow: auto;\n}\n\n#content #cloud #file-content #data em\n{\n  color: #c0c0c0;\n}\n\n#content #cloud #file-content #prop\n{\n}\n\n#content #cloud #file-content li\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #cloud #file-content li.odd\n{\n  background-color: #F8F8F8;\n}\n\n#content #cloud #file-content li dt\n{\n  float: left;\n  width: 19%;\n}\n\n#content #cloud #file-content li dd\n{\n  float: right;\n  width: 80%;\n}\n\n/* tree */\n\n#content #cloud .tree a.active\n{\n  background-color: #f0f0f0;\n  color: #00f;\n}\n\n#content #cloud #legend\n{\n  border: 1px solid #f0f0f0;\n  padding: 10px;\n  position: absolute;\n  right: 0;\n  bottom: 0;\n}\n\n#content #cloud #legend li\n{\n  padding-left: 15px;\n  position: relative;\n}\n\n#content #cloud #legend li svg\n{\n  position: absolute;\n  left: 0;\n  top: 2px;\n}\n\n#content #graph-content\n{\n  min-height: 400px;\n}\n\n#content #graph-content .node\n{\n  fill: #333;\n}\n\n#content #cloud #legend circle,\n#content #graph-content .node circle\n{\n  fill: #fff;\n  stroke: #c0c0c0;\n  stroke-width: 1.5px;\n}\n\n#content #graph-content .node.lvl-3 text\n{\n  cursor: pointer;\n}\n\n#content #graph-content .node.lvl-3:hover circle\n{\n  stroke: #000 !important;\n}\n\n#content #graph-content .node.lvl-3:hover text\n{\n  fill: #000 !important;\n}\n\n#content #graph-content .link\n{\n  fill: none;\n  stroke: #e0e0e0;\n  stroke-width: 1.5px;\n}\n\n#content #cloud #legend .gone circle,\n#content #graph-content .node.gone circle,\n#content #graph-content .link.gone\n{\n  stroke: #f0f0f0;\n}\n\n#content #graph-content .node.gone text\n{\n  fill: #f0f0f0;\n}\n\n#content #cloud #legend ul .gone\n{\n  color: #e0e0e0;\n}\n\n#content #cloud #legend .recovery_failed,\n#content #cloud #legend .recovery_failed circle,\n#content #graph-content .node.recovery_failed circle\n{\n  color: #C43C35;\n  stroke: #C43C35;\n}\n\n#content #graph-content .node.recovery_failed text\n{\n  fill: #C43C35;\n}\n\n#content #cloud #legend .down,\n#content #cloud #legend .down circle,\n#content #graph-content .node.down circle\n{\n  color: #c48f00;\n  stroke: #c48f00;\n}\n\n#content #graph-content .node.down text\n{\n  fill: #c48f00;\n}\n\n#content #cloud #legend .recovering,\n#content #cloud #legend .recovering circle,\n#content #graph-content .node.recovering circle\n{\n  color: #d5dd00;\n  stroke: #d5dd00;\n}\n\n#content #graph-content .node.recovering text\n{\n  fill: #d5dd00;\n}\n\n#content #cloud #legend .active,\n#content #cloud #legend .active circle,\n#content #graph-content .node.active circle\n{\n  color: #57A957;\n  stroke: #57A957;\n}\n\n#content #graph-content .node.active text\n{\n  fill: #57A957;\n}\n\n#content #cloud #legend .leader circle,\n#content #graph-content .node.leader circle\n{\n  fill: #000;\n}\n\n#content #cloud #legend .leader circle\n{\n  stroke: #fff;\n}\n\n#content #graph-content .link.lvl-2,\n#content #graph-content .link.leader\n{\n  stroke: #c0c0c0;\n}\n\n#content #graph-content .node.lvl-0 circle\n{\n  stroke: #fff;\n}\n\n#content #graph-content .link.lvl-1\n{\n  stroke: #fff;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/common.css",
    "content": "*\n{\n  background-repeat: no-repeat;\n  margin: 0;\n  padding: 0;\n}\n\nbody, h1, h2, h3, h4, h5, h6, a, button, input, select, option, textarea, th, td\n{\n  color: #333;\n  font: 12px/1.6em \"Lucida Grande\", \"DejaVu Sans\", \"Bitstream Vera Sans\", Verdana, Arial, sans-serif;\n}\n\nbody\n{\n  padding: 30px;\n  text-align: center;\n}\n\na, button\n{\n  cursor: pointer;\n}\n\ninput, select, textarea\n{\n  border: 1px solid #c0c0c0;\n  padding: 2px;\n}\n\ninput[readonly=readonly]\n{\n  border-color: #f0f0f0;\n}\n\nbutton\n{\n  background-color: #e6e6e6;\n  background-repeat: no-repeat;\n  background-image: -webkit-gradient( linear, 0 0, 0 100%, from( #ffffff ), color-stop( 25%, #ffffff ), to( #e6e6e6 ) );\n  background-image: -webkit-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -moz-linear-gradient( top, #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -ms-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -o-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0 );\n  border: 1px solid #ccc;\n  border-bottom-color: #bbb;\n  -moz-border-radius: 4px;\n  -webkit-border-radius: 4px;\n  -khtml-border-radius: 4px;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  -moz-box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  color: #333;\n  cursor: pointer;\n  display: inline-block;\n  padding: 4px 7px 5px;\n  overflow: visible;\n  text-shadow: 0 1px 1px rgba( 255, 255, 255, 0.75 );\n  -webkit-transition: 0.1s linear background-image;\n  -moz-transition: 0.1s linear background-image;\n  -ms-transition: 0.1s linear background-image;\n  -o-transition: 0.1s linear background-image;\n  transition: 0.1s linear background-image;\n}\n\nbutton span\n{\n  background-position: 0 50%;\n  display: block;\n  padding-left: 21px;\n}\n\nbutton[type=submit], button.primary\n{\n  background-color: #0064cd;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #049cdb ), to( #0064cd ) );\n  background-image: -moz-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -ms-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #049cdb ), color-stop( 100%, #0064cd ) );\n  background-image: -webkit-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -o-linear-gradient( top, #049cdb, #0064cd );\n  background-image: linear-gradient( top, #049cdb, #0064cd );\n  border-color: #0064cd #0064cd #003f81;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0 );\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n\nbutton.success\n{\n  background-color: #57a957;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #62c462 ), to( #57a957 ) );\n  background-image: -moz-linear-gradient( top, #62c462, #57a957 );\n  background-image: -ms-linear-gradient( top, #62c462, #57a957 );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #62c462 ), color-stop( 100%, #57a957 ) );\n  background-image: -webkit-linear-gradient( top, #62c462, #57a957 );\n  background-image: -o-linear-gradient( top, #62c462, #57a957 );\n  background-image: linear-gradient( top, #62c462, #57a957 );\n  border-color: #57a957 #57a957 #3d773d;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62c462', endColorstr='#57a957', GradientType=0 );\n  color: #ffffff;\n  text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.25 );\n}\n\nbutton.warn\n{\n  background-color: #c43c35;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #ee5f5b ), to( #c43c35 ) );\n  background-image: -moz-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -ms-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #ee5f5b ), color-stop( 100%, #c43c35 ) );\n  background-image: -webkit-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -o-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: linear-gradient( top, #ee5f5b, #c43c35 );\n  border-color: #c43c35 #c43c35 #882a25;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0 );\n  text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.25 );\n}\n\na\n{\n  text-decoration: none;\n}\n\npre\n{\n  color: #333;\n  text-align: left;\n}\n\nabbr\n{\n  cursor: help;\n}\n\nul\n{\n  list-style: none;\n}\n\n.clearfix:after { clear: both; content: \".\"; display: block; font-size: 0; height: 0; visibility: hidden; }\n.clearfix       { display: block; }\n\n.loader\n{\n  background-image: url( ../../img/loader.gif ) !important;\n}\n\n.loader-light\n{\n  background-image: url( ../../img/loader-light.gif ) !important;\n}\n\n#wrapper\n{\n  position: relative;\n  margin: 0 auto;\n  margin-bottom: 30px;\n  text-align: left;\n}\n\n#header\n{\n  padding-bottom: 10px;\n  position: fixed;\n  z-index: 42;\n}\n\n#header #solr\n{\n  background-image: url( ../../img/solr.png );\n  display: block;\n  height: 78px;\n  width: 150px;\n}\n\n#header #solr span\n{\n  display: none;\n}\n\n#main\n{\n  min-width: 750px;\n  position: relative;\n}\n\n#main.error\n{\n  border: 0;\n  min-height: 0;\n  padding-top: 20px;\n}\n\n#main.error .message\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  font-weight: bold;\n  margin-left: 150px;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#main.error .code\n{\n  border: 1px solid #c0c0c0;\n  padding: 5px;\n}\n\n#meta\n{\n  position: absolute;\n  bottom: -26px;\n  right: 0;\n}\n\n#meta li\n{\n  float: left;\n}\n\n#meta li a\n{\n  background-position: 10px 50%;\n  display: block;\n  height: 25px;\n  line-height: 25px;\n  padding-left: 31px;\n  padding-right: 10px;\n}\n\n#meta li a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#meta .documentation a { background-image: url( ../../img/ico/document-text.png ); }\n#meta .issues a { background-image: url( ../../img/ico/bug.png ); }\n#meta .irc a { background-image: url( ../../img/ico/users.png ); }\n#meta .mailinglist a { background-image: url( ../../img/ico/mail.png ); }\n#meta .wiki-query-syntax a { background-image: url( ../../img/ico/script-code.png ); }\n\n#environment\n{\n  background-image: url( ../../img/ico/box.png );\n  background-position: 5px 50%;\n  display: none;\n  font-weight: bold;\n  margin-top: 10px;\n  padding: 5px 10px;\n  padding-left: 26px;\n}\n\n.has-environment #environment\n{\n  display: block;\n}\n\n#environment.prod\n{\n  background-color: #c37f7f;\n  color: #fff;\n}\n\n#environment.test\n{\n  background-color: #f5f5b2;\n}\n\n#environment.dev\n{\n  background-color: #cce7cc;\n}\n\n#init-failures\n{\n  border: 1px solid #f00;\n  display: none;\n  margin-left: 150px;\n  margin-bottom: 20px;\n}\n\n#init-failures h2,\n#init-failures ul,\n#init-failures p\n{\n  padding: 10px;\n}\n\n#init-failures h2\n{\n  background-color: #f00;\n  color: #fff;\n  font-weight: bold;\n}\n\n#init-failures p\n{\n  color: #c0c0c0;\n  padding-top: 0;\n}\n\n#content-wrapper\n{\n  margin-left: 150px;\n  border: 1px solid #c0c0c0;\n  min-height: 500px;\n}\n\n#content\n{\n  padding: 10px;\n}\n\n#content > .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content iframe\n{\n  border: 0;\n  display: block;\n  min-height: 400px;\n  width: 100%;\n}\n\n#content .block\n{\n  margin-bottom: 10px;\n}\n\n#content .block h2\n{\n  background-color: #fafafa;\n  background-position: 5px 50%;\n  border-bottom: 1px solid #f0f0f0;\n  font-weight: bold;\n  padding: 5px;\n  padding-left: 26px;\n}\n\n#content .block.disabled,\n#content .block.disabled h2\n{\n  color: #c0c0c0;\n}\n\n#content .block .message,\n#content .block .content\n{\n  padding: 5px;\n}\n\n#content .block .message\n{\n  display: none;\n}\n\n/* syntax */\n\npre.syntax\n{\n  overflow: auto;\n}\n\npre.syntax code\n{\n  display: block;\n  color: #000;\n}\n\npre.syntax .comment,\npre.syntax .template_comment,\npre.syntax .diff .header,\npre.syntax .javadoc\n{\n  color: #998;\n  font-style: italic;\n}\n\npre.syntax .keyword,\npre.syntax .css .rule .keyword,\npre.syntax .winutils,\npre.syntax .javascript .title,\npre.syntax .lisp .title,\npre.syntax .subst\n{\n  color: #000;\n  font-weight: bold;\n}\n\npre.syntax .number,\npre.syntax .hexcolor\n{\n  color: #40a070;\n}\n\npre.syntax.language-json .number\n{\n  color: blue;\n}\n\npre.syntax.language-json .literal\n{\n  color: firebrick;\n}\n\npre.syntax .string,\npre.syntax .tag .value,\npre.syntax .phpdoc,\npre.syntax .tex .formula\n{\n  color: #d14;\n}\n\npre.syntax.language-json .string\n{\n  color: green;\n}\n\npre.syntax .title,\npre.syntax .id\n{\n  color: #900;\n  font-weight: bold;\n}\n\npre.syntax .javascript .title,\npre.syntax .lisp .title,\npre.syntax .subst\n{\n  font-weight: normal;\n}\n\npre.syntax .class .title,\npre.syntax .tex .command\n{\n  color: #458;\n  font-weight: bold;\n}\n\npre.syntax .tag,\npre.syntax .css .keyword,\npre.syntax .html .keyword,\npre.syntax .tag .title,\npre.syntax .django .tag .keyword\n{\n  color: #000080;\n  font-weight: normal;\n}\n\npre.syntax .attribute,\npre.syntax .variable,\npre.syntax .instancevar,\npre.syntax .lisp .body\n{\n  color: #008080;\n}\n\npre.syntax.language-json .attribute\n{\n  color: black;\n  font-weight: bold;\n}\n\npre.syntax .regexp\n{\n  color: #009926;\n}\n\npre.syntax .class\n{\n  color: #458;\n  font-weight: bold;\n}\n\npre.syntax .symbol,\npre.syntax .ruby .symbol .string,\npre.syntax .ruby .symbol .keyword,\npre.syntax .ruby .symbol .keymethods,\npre.syntax .lisp .keyword,\npre.syntax .tex .special\n{\n  color: #990073;\n}\n\npre.syntax .builtin,\npre.syntax .built_in,\npre.syntax .lisp .title\n{\n  color: #0086b3;\n}\n\npre.syntax .preprocessor,\npre.syntax .pi,\npre.syntax .doctype,\npre.syntax .shebang,\npre.syntax .cdata\n{\n  color: #999;\n  font-weight: bold;\n}\n\npre.syntax .deletion\n{\n  background: #fdd;\n}\n\npre.syntax .addition\n{\n  background: #dfd;\n}\n\npre.syntax .diff .change\n{\n  background: #0086b3;\n}\n\npre.syntax .chunk\n{\n  color: #aaa;\n}\n\npre.syntax .tex .formula\n{\n  opacity: 0.5;\n}\n\n#content .tree li, \n#content .tree ins\n{\n  background-color: transparent;\n  background-image: url( ../../img/tree.png );\n  background-repeat: no-repeat; \n}\n\n#content .tree li\n{\n  background-position: -54px 0;\n  background-repeat: repeat-y;\n  line-height: 22px;\n}\n\n#content .tree li.jstree-last\n{\n  background:transparent;\n}\n\n#content .tree .jstree-open > ins\n{\n  background-position: -36px 0;\n}\n\n#content .tree .jstree-closed > ins\n{\n  background-position: -18px 0;\n}\n\n#content .tree .jstree-leaf > ins\n{\n  background-position: 0 0;\n}\n\n#content .tree .jstree-hovered\n{\n  background:#e7f4f9; border:1px solid #d8f0fa; padding:0 2px 0 1px;\n}\n\n#content .tree .jstree-clicked\n{\n  background:#beebff; border:1px solid #99defd; padding:0 2px 0 1px;\n}\n\n#content .tree a .jstree-icon\n{\n  background-image: url( ../../img/ico/folder.png );\n}\n\n#content .tree .jstree-leaf a .jstree-icon\n{\n  background-image: url( ../../img/ico/document-text.png );\n}\n\n#content .tree .jstree-search\n{\n  font-style:italic;\n}\n\n#content .tree a.jstree-search\n{\n  color:aqua;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/cores.css",
    "content": "#content #cores\n{\n  position: relative;\n}\n\n#content #cores #ui-block\n{\n  background-color: #fff;\n  height: 200px;\n  display: none;\n  position: absolute;\n  left: -5px;\n  top: 35px;\n  width: 500px;\n}\n\n#content #cores #frame\n{\n  float: right;\n  width: 86%;\n}\n\n#content #cores #navigation\n{\n  padding-top: 50px;\n  width: 12%;\n}\n\n#content #cores #navigation a\n{\n  padding-left: 5px;\n}\n\n#content #cores #frame .actions\n{\n  margin-bottom: 20px;\n}\n\n#content #cores .actions div.action\n{\n  width: 300px;\n}\n\n#content #cores .actions div.action .cloud\n{\n  display: none;\n}\n\n#content #cores .actions form .error\n{\n  color: #800;\n  display: none;\n}\n\n#content #cores .actions form p\n{\n  padding-bottom: 8px;\n}\n\n#content #cores .actions form label\n{\n  float: left;\n  padding-top: 3px;\n  padding-bottom: 3px;\n  text-align: right;\n  width: 25%;\n}\n\n#content #cores .actions form input,\n#content #cores .actions form select,\n#content #cores .actions form .buttons,\n#content #cores .actions form .error span\n{\n  float: right;\n  width: 73%;\n}\n\n#content #cores .actions form .buttons\n{\n  padding-top: 10px;\n}\n\n#content #cores .actions form button.submit\n{\n  margin-right: 20px;\n}\n\n#content #cores .actions form button.submit span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #cores .actions form button.reset span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #cores .actions #add\n{\n  left: 0;\n  position: absolute;\n}\n\n#content #cores .actions #add span\n{\n  background-image: url( ../../img/ico/plus-button.png );\n}\n\n#content #cores .actions #unload\n{\n  margin-right: 20px;\n}\n\n#content #cores .actions #unload span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #cores .actions #reload span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #cores .actions #rename span\n{\n  background-image: url( ../../img/ico/ui-text-field-select.png );\n}\n\n#content #cores .actions #swap span\n{\n  background-image: url( ../../img/ico/arrow-switch.png );\n}\n\n#content #cores .actions #optimize\n{\n  display: none;\n}\n\n#content #cores .actions #optimize span\n{\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n}\n\n#content #cores .actions div.action\n{\n  background-color: #fff;\n  border: 1px solid #f0f0f0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  display: none;\n  position: absolute;\n  left: -50px;\n  top: 40;\n  padding: 10px;\n}\n\n#content #cores #data #core-data h2 { background-image: url( ../../img/ico/box.png ); }\n#content #cores #data #index-data h2 { background-image: url( ../../img/ico/chart.png ); }\n\n#content #cores #data #index-data\n{\n  margin-top: 10px;\n}\n\n#content #cores #data li\n{\n  padding-bottom: 3px;\n  padding-top: 3px;\n}\n\n#content #cores #data li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #cores #data li dt\n{\n  float: left;\n  width: 17%;\n}\n\n#content #cores #data li dd\n{\n  float: right;\n  width: 82%;\n}\n\n#content #cores #data li dd.ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n}\n\n#content #cores #data li dd.ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #cores #data li dd.ico span\n{\n  display: none;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/dashboard.css",
    "content": "#content #dashboard .block\n{\n  background-image: none;\n  width: 49%;\n}\n\n#content #dashboard .fieldlist\n{\n  float: left;\n}\n\n#content #dashboard .fieldlist dt,\n#content #dashboard .fieldlist dd\n{\n  display: block;\n  float: left;\n}\n\n#content #dashboard .fieldlist dt\n{\n  clear: left;\n  margin-right: 2%;\n  text-align: right;\n  width: 23%;\n}\n\n#content #dashboard .fieldlist dd\n{\n  width: 74%;\n}\n\n#content #dashboard .fieldlist .index_optimized\n{\n  margin-top: 10px;\n}\n\n#content #dashboard .fieldlist .ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n}\n\n#content #dashboard .fieldlist .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dashboard .fieldlist .ico span\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_optimized.value a\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_optimized.value.ico-0 a\n{\n  background-color: #f0f0f0;\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n  background-position: 5px 50%;\n  border: 1px solid #c0c0c0;\n  display: block;\n  float: left;\n  margin-left: 50px;\n  padding: 1px 5px;\n  padding-left: 26px;\n}\n\n#content #dashboard #statistics .index_has-deletions\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_has-deletions.value.ico-0\n{\n  background-image: url( ../../img/ico/tick-red.png );\n}\n\n#content #dashboard #replication\n{\n  float: left;\n}\n\n#content #dashboard #replication .is-replicating\n{\n  background-position: 99% 50%;\n  display: block;\n}\n\n#content #dashboard #replication #details table thead td span\n{\n  display: none;\n}\n\n#content #dashboard #dataimport\n{\n  float: right;\n}\n\n\n#content #dashboard #admin-extra\n{\n  float: right;\n}\n\n#content #dashboard #system h2 { background-image: url( ../../img/ico/server.png ); }\n#content #dashboard #statistics h2 { background-image: url( ../../img/ico/chart.png ); }\n#content #dashboard #replication h2 { background-image: url( ../../img/ico/node.png ); }\n#content #dashboard #replication.master h2 { background-image: url( ../../img/ico/node-master.png ); }\n#content #dashboard #replication.slave h2 { background-image: url( ../../img/ico/node-slave.png ); }\n#content #dashboard #dataimport h2 { background-image: url( ../../img/ico/document-import.png ); }\n#content #dashboard #admin-extra h2 { background-image: url( ../../img/ico/plus-button.png ); }\n\n#content #dashboard #healthcheck .ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n  padding-left: 20px;\n  width: 60%;\n}\n\n#content #dashboard #healthcheck .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/dataimport.css",
    "content": "#content #dataimport\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #dataimport #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #dataimport #form\n{\n  float: left;\n  width: 20%;\n}\n\n#content #dataimport #form #navigation\n{\n  border-right: 0;\n}\n\n#content #dataimport #form #navigation a\n{\n  background-image: url( ../../img/ico/status-offline.png );\n}\n\n#content #dataimport #form #navigation .current a\n{\n  background-image: url( ../../img/ico/status.png );\n}\n\n#content #dataimport #form form\n{\n  display: none;\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 5px;\n}\n\n#content #dataimport.error #form form\n{\n  display: none !important;\n}\n\n#content #dataimport #form label\n{\n  cursor: pointer;\n  display: block;\n  margin-top: 5px;\n}\n\n#content #dataimport #form input,\n#content #dataimport #form select,\n#content #dataimport #form textarea\n{\n  margin-bottom: 2px;\n  width: 100%;\n}\n\n#content #dataimport #form input\n{\n  width: 98%;\n}\n\n#content #dataimport #form button\n{\n  margin-top: 10px;\n}\n\n#content #dataimport #form .execute span\n{\n  background-image: url( ../../img/ico/document-import.png );\n}\n\n#content #dataimport #form .refresh-status span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #dataimport #form .refresh-status span.success\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #form #start\n{\n  float: left;\n  width: 47%;\n}\n\n#content #dataimport #form #rows\n{\n  float: right;\n  width: 47%;\n}\n\n#content #dataimport #form .checkbox input\n{\n  margin-bottom: 0;\n  width: auto;\n}\n\n#content #dataimport #form #auto-refresh-status\n{\n  margin-top: 20px;\n}\n\n#content #dataimport #form #auto-refresh-status a\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #dataimport #form #auto-refresh-status a.on,\n#content #dataimport #form #auto-refresh-status a:hover\n{\n  color: #333;\n}\n\n#content #dataimport #form #auto-refresh-status a.on\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n}\n\n#content #dataimport #current_state\n{\n  padding: 10px;\n  margin-bottom: 20px;\n}\n\n#content #dataimport.error #current_state\n{\n  display: none !important;\n}\n\n#content #dataimport #current_state .last_update,\n#content #dataimport #current_state .info\n{\n  display: block;\n  padding-left: 21px;\n}\n\n#content #dataimport #current_state .last_update\n{\n  color: #c0c0c0;\n  font-size: 11px;\n}\n\n#content #dataimport #current_state .info\n{\n  background-position: 0 1px;\n  position: relative;\n}\n\n#content #dataimport #current_state .info .details span\n{\n  color: #c0c0c0;\n}\n\n#content #dataimport #current_state .info .abort-import\n{\n  display: none;\n  position: absolute;\n  right: 0px;\n  top: 0px;\n}\n\n#content #dataimport #current_state .info .abort-import span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #dataimport #current_state .info .abort-import.success span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #current_state.indexing\n{\n  background-color: #f9f9f9;\n}\n\n#content #dataimport #current_state.indexing .info\n{\n  background-image: url( ../../img/ico/hourglass.png );\n}\n\n#content #dataimport #current_state.indexing .info .abort-import\n{\n  display: block;\n}\n\n#content #dataimport #current_state.success\n{\n  background-color: #e6f3e6;\n}\n\n#content #dataimport #current_state.success .info\n{\n  background-image: url( ../../img/ico/tick-circle.png );\n}\n\n#content #dataimport #current_state.success .info strong\n{\n  color: #080;\n}\n\n#content #dataimport #current_state.aborted\n{\n  background-color: #f3e6e6;\n}\n\n#content #dataimport #current_state.aborted .info\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #dataimport #current_state.aborted .info strong\n{\n  color: #800;\n}\n\n#content #dataimport #current_state.failure\n{\n  background-color: #f3e6e6;\n}\n\n#content #dataimport #current_state.failure .info\n{\n  background-image: url( ../../img/ico/cross-button.png );\n}\n\n#content #dataimport #current_state.failure .info strong\n{\n  color: #800;\n}\n\n#content #dataimport #current_state.idle\n{\n  background-color: #e6e6ff;\n}\n\n#content #dataimport #current_state.idle .info\n{\n  background-image: url( ../../img/ico/information.png );\n}\n\n#content #dataimport #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #dataimport .block h2\n{\n  border-color: #c0c0c0;\n  padding-left: 5px;\n  position: relative;\n}\n\n#content #dataimport .block.hidden h2\n{\n  border-color: #fafafa;\n}\n\n#content #dataimport .block h2 a.toggle\n{\n  background-image: url( ../../img/ico/toggle-small.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #dataimport .block.hidden h2 a.toggle\n{\n  background-image: url( ../../img/ico/toggle-small-expand.png );\n}\n\n#content #dataimport #config h2 a.r\n{\n  background-position: 3px 50%;\n  display: block;\n  float: right;\n  margin-left: 10px;\n  padding-left: 24px;\n  padding-right: 3px;\n}\n\n#content #dataimport #config h2 a.reload_config\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #dataimport #config h2 a.reload_config.success\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #config h2 a.reload_config.error\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #dataimport #config h2 a.debug_mode\n{\n  background-image: url( ../../img/ico/hammer.png );\n  color: #c0c0c0;\n}\n\n#content #dataimport #config.debug_mode h2 a.debug_mode\n{\n  background-color: #ff0;\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n  color: #333;\n}\n\n#content #dataimport .block.hidden .content\n{\n  display: none;\n}\n\n#content #dataimport #config .content\n{\n  padding: 5px 2px;\n}\n\n#content #dataimport #dataimport_config .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #dataimport #dataimport_config .formatted\n{\n  border: 1px solid #fff;\n  display: block;\n  padding: 2px;\n}\n\n#content #dataimport .debug_mode #dataimport_config .formatted\n{\n  display: none;\n}\n\n#content #dataimport #dataimport_config .editable\n{\n  display: none;\n}\n\n#content #dataimport .debug_mode #dataimport_config .editable\n{\n  display: block;\n}\n\n#content #dataimport #dataimport_config .editable textarea\n{\n  font-family: monospace;\n  height: 120px;\n  min-height: 60px;\n  width: 100%;\n}\n\n#content #dataimport #debug_response\n{\n  display: none;\n}\n\n#content #dataimport #debug_response em\n{\n  color: #c0c0c0;\n  font-style: normal;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/index.css",
    "content": "#content #index .bar-desc\n{\n  color: #c0c0c0;\n  font-weight: normal;\n  margin-left: 10px;\n  white-space: pre;\n}\n\n#content #index .bar-holder\n{\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  height: 35px;\n}\n\n#content #index .bar-holder .bar\n{\n  height: 100%;\n  position: relative;\n}\n\n#content #index .bar-holder div .val\n{\n  border-right: 1px solid #f00;\n  display: block;\n  padding-right: 5px;\n  position: absolute;\n  right: 0;\n  top: 35px;\n  white-space: nowrap;\n}\n\n#content #index .bar-holder .bar-max.bar\n{\n  background-color: #f0f0f0;\n}\n\n#content #index .bar-holder .bar-max.val\n{\n  border-color: #f0f0f0;\n  color: #d6d6d6;\n}\n\n#content #index .bar-holder .bar-total.bar\n{\n  background-color: #c0c0c0;\n}\n\n#content #index .bar-holder .bar-total.val\n{\n  border-color: #c0c0c0;\n  color: #c0c0c0;\n}\n\n#content #index .bar-holder .bar-used.bar\n{\n  background-color: #969696;\n}\n\n#content #index .bar-holder .bar-used.val\n{\n  border-color: #969696;\n  color: #969696;\n}\n\n#content #index .bar-holder.bar-lvl-2 .bar-max.val { padding-top: 25px; }\n#content #index .bar-holder.bar-lvl-2 .bar-total.val { padding-top: 5px; }\n#content #index .bar-holder.bar-lvl-2 { margin-bottom: 45px; }\n\n#content #index .bar-holder.bar-lvl-3 .bar-max.val { padding-top: 45px; }\n#content #index .bar-holder.bar-lvl-3 .bar-total.val { padding-top: 25px; }\n#content #index .bar-holder.bar-lvl-3 .bar-used.val { padding-top: 5px; }\n#content #index .bar-holder.bar-lvl-3 { margin-bottom: 65px; }\n\n#content #index .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #index .index-left\n{\n  float: left;\n  width: 55%;\n}\n\n#content #index .index-right\n{\n  float: right;\n  width: 40%;\n}\n\n#content #index .data li\n{\n  display: none;\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #index .data li dt\n{\n  float: left;\n  white-space: nowrap;\n  width: 20%;\n}\n\n#content #index .data li dd\n{\n  float: right;\n  text-overflow: ellipsis;\n  overflow: hidden;\n  white-space: nowrap;\n  width: 80%\n}\n\n#content #index .data li dd.odd\n{\n  color: #999;\n}\n\n#content #index .data dt span\n{\n  background-position: 1px 50%;\n  display: block;\n  padding-left: 22px;\n}\n\n#content #index #instance h2 { background-image: url( ../../img/ico/server.png ); }\n#content #index #instance .start_time dt span { background-image: url( ../../img/ico/clock-select.png ); }\n#content #index #instance .host dt span { background-image: url( ../../img/ico/globe.png ); }\n#content #index #instance .dir dt span { background-image: url( ../../img/ico/folder.png ); }\n\n#content #index #versions h2 { background-image: url( ../../img/ico/property.png ); }\n#content #index #versions .solr span { background-image: url( ../../img/solr-ico.png ); }\n#content #index #versions .lucene span { background-image: url( ../../img/lucene-ico.png ); }\n\n#content #index #jvm h2 { background-image: url( ../../img/ico/jar.png ); }\n#content #index #jvm .jvm_version dt span { background-image: url( ../../img/ico/jar.png ); }\n#content #index #jvm .processors dt span { background-image: url( ../../img/ico/processor.png ); }\n#content #index #jvm .command_line_args dt span { background-image: url( ../../img/ico/terminal.png ); }\n\n#content #index #system h2 { background-image: url( ../../img/ico/system-monitor.png ); }\n\n#content #index #system\n{\n  position: relative;\n}\n\n#content #index #system .reload\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n  background-position: 50% 50%;\n  display: block;\n  height: 30px;\n  position: absolute;\n  right: 0;\n  top: 0;\n  width: 30px;\n}\n\n#content #index #system .reload.loader\n{\n  padding-left: 0;\n}\n\n#content #index #system .reload span\n{\n  display: none;\n}\n\n#content #index #system .content p\n{\n  margin-top: 10px;\n  margin-bottom: 5px;\n}\n\n#content #index #system .content .no-info\n{\n  color: #c0c0c0;\n  display: none;\n  font-style: italic;\n}\n\n#content #index #jvm-memory h2 { background-image: url( ../../img/ico/memory.png ); }\n\n#content #index #jvm-memory-bar\n{\n  margin-top: 20px;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/java-properties.css",
    "content": "#content #java-properties .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;   \n}\n\n#content #java-properties li\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #java-properties li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #java-properties li dt\n{\n  float: left;\n  width: 29%;\n}\n\n#content #java-properties li dd\n{\n  float: right;\n  width: 70%\n}\n\n#content #java-properties li dd.odd\n{\n  color: #999;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/logging.css",
    "content": "#content #logging .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #logging .block h2\n{\n  background-image: url( ../../img/ico/document-text.png );\n  margin-bottom: 10px;\n}\n\n#content #logging .block h2 span span\n{\n  color: #c0c0c0;\n  font-weight: normal;\n  margin-left: 10px;\n}\n\n#content #logging #viewer\n{\n  position: relative;\n}\n\n#content #logging #viewer #state\n{\n  background-position: 0 50%;\n  color: #c0c0c0;\n  margin-top: 20px;\n  padding-left: 21px;\n}\n\n#content #logging #viewer table\n{\n  border-collapse: collapse;\n  width: 100%;\n}\n\n#content #logging #viewer th,\n#content #logging #viewer td a,\n#content #logging #viewer tbody .trace td\n{\n  padding: 3px 10px;\n}\n\n#content #logging #viewer td\n{\n  vertical-align: top;\n}\n\n#content #logging #viewer td a\n{\n  display: block;\n}\n\n#content #logging #viewer thead th\n{\n  font-weight: bold;\n  text-align: left;\n}\n\n#content #logging #viewer tbody td,\n#content #logging #viewer tfoot td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #logging #viewer thead th.message\n{\n  width:100%;\n}\n\n#content #logging #viewer tbody td.span a\n{\n  padding-left: 0;\n  padding-right: 0;\n}\n\n#content #logging #viewer tbody span\n{\n  display: block;\n  padding-left: 10px;\n  padding-right: 10px;\n}\n\n#content #logging #viewer tbody .level-info .level span { background-color: #ebf5eb; }\n#content #logging #viewer tbody .level-warning     span { background-color: #FFD930; }\n#content #logging #viewer tbody .level-severe     span  { background-color: #c43c35; color: #fff; }\n\n#content #logging #viewer tbody .level-debug  span  { background-color: #ebf5eb; }\n#content #logging #viewer tbody .level-warn   span  { background-color: #FFD930; }\n#content #logging #viewer tbody .level-error  span  { background-color: #FF6130; }\n#content #logging #viewer tbody .level-fatal  span  { background-color: #c43c35; }\n\n#content #logging #viewer tbody .has-trace a\n{\n  cursor: pointer;\n}\n\n#content #logging #viewer tbody .has-trace a:hover\n{\n  color: #008;\n}\n\n#content #logging #viewer tbody .has-trace .message a\n{\n  background-image: url( ../../img/ico/information.png );\n  background-position: 100% 50%;\n  display: block;\n  padding-right: 21px;\n}\n\n#content #logging #viewer tbody .has-trace.open .message a\n{\n  background-image: url( ../../img/ico/information-white.png );\n}\n\n#content #logging #viewer tbody .trace\n{\n  display: none;\n}\n\n#content #logging #viewer tbody .trace td\n{\n  border-top: 0;\n  color: #c0c0c0;\n}\n\n#content #logging #viewer .has-data tfoot\n{\n  display: none;\n}\n\n#content #logging #viewer tfoot td\n{\n  color: #c0c0c0;\n}\n\n#content #logging .jstree > li\n{\n  margin-left: 0;\n}\n\n#content #logging .jstree li\n{\n  position: relative;\n}\n\n#content #logging .jstree .level-finest  { background-color: #d5e5fc; }\n#content #logging .jstree .level-fine    { background-color: #d5fafc; }\n#content #logging .jstree .level-config  { background-color: #e6fded; }\n#content #logging .jstree .level-info    { background-color: #fafcd7; }\n#content #logging .jstree .level-warning { background-color: #fcecd5; }\n#content #logging .jstree .level-severe  { background-color: #fcdcda; }\n#content #logging .jstree .level-off     { background-color: #ffffff; }\n\n/* Log4j */\n#content #logging .jstree .level-all     { background-color: #9EDAFF; }\n#content #logging .jstree .level-trace   { background-color: #d5e5fc; }\n#content #logging .jstree .level-debug   { background-color: #d5fafc; }\n#content #logging .jstree .level-warn    { background-color: #e6fded; }\n#content #logging .jstree .level-error   { background-color: #fcecd5; }\n#content #logging .jstree .level-fatal   { background-color: #fcdcda; }\n\n\n#content #logging .jstree a\n{\n  height: 17px;\n  line-height: 17px;\n  padding: 0;\n  width: 90%;\n}\n\n#content #logging .jstree a:hover\n{\n  color: #008;\n}\n\n#content #logging .jstree a span.ns\n{\n  display: none;\n}\n\n#content #logging.ns .jstree a span.ns\n{\n  display: inline;\n}\n\n#content #logging .jstree a span.name\n{\n  background-position: 100% 50%;\n  cursor: pointer;\n  padding-right: 21px;\n}\n\n#content #logging .jstree a.trigger.set\n{\n  font-weight: bold;\n}\n\n#content #logging .jstree a:hover span.name\n{\n  background-image: url( ../../img/ico/pencil-small.png );\n}\n\n#content #logging .jstree .selector-holder\n{\n  position: absolute;\n  top: -2px;\n  z-index: 700;\n}\n\n#content #logging .jstree .selector-holder.open\n{\n  background-color: #fff;\n  margin-left: -19px;\n  z-index: 800;\n}\n\n#content #logging .jstree li .selector-holder { left: 440px; }\n#content #logging .jstree li li .selector-holder { left: 422px; }\n#content #logging .jstree li li li .selector-holder { left: 404px; }\n#content #logging .jstree li li li li .selector-holder { left: 386px; }\n#content #logging .jstree li li li li li .selector-holder { left: 368px; }\n#content #logging .jstree li li li li li li .selector-holder { left: 350px; }\n#content #logging .jstree li li li li li li li .selector-holder { left: 332px; }\n\n#content #logging .jstree .selector\n{\n  border: 1px solid transparent;\n  position: relative;\n}\n\n#content #logging .jstree .open .selector\n{\n  border-color: #f0f0f0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n}\n\n#content #logging .jstree .selector a\n{\n  display: block;\n  padding: 2px;\n  width: auto;\n}\n\n#content #logging .jstree .selector .close\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector .close\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 50% 50%;\n  display: block;\n  position: absolute;\n  right: -25px;\n  top: 0;\n  width: 20px;\n}\n\n#content #logging .jstree .open .selector .close:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #logging .jstree .open .selector .close span\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector a.trigger\n{\n  display: none;\n}\n\n#content #logging .jstree .selector ul\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector ul\n{\n  display: block;\n}\n\n#content #logging .jstree .selector ul li\n{\n  background: none;\n  margin-left: 0;\n}\n\n#content #logging .jstree .selector ul li a\n{\n  background-image: url( ../../img/ico/ui-radio-button-uncheck.png );\n  background-position: 2px 50%;\n  padding-left: 21px;\n}\n\n#content #logging .jstree .selector ul li a.level\n{\n  background-color: #f0f0f0;\n}\n\n#content #logging .jstree .selector ul li a:hover\n{\n  background-image: url( ../../img/ico/ui-radio-button.png );\n}\n\n#content #logging .jstree .selector li.unset\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #logging .jstree .selector li.unset a\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 4px 50%;\n}\n\n#content #logging .jstree .selector li.unset a:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n  color: #800;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/menu.css",
    "content": "#menu-wrapper\n{\n  position: fixed;\n  top: 120px;\n  width: 150px;\n}\n\n.has-environment #menu-wrapper\n{\n  top: 160px;\n}\n\n#menu-wrapper a\n{\n  display: block;\n  padding: 4px 2px;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n\n#core-selector\n{\n  margin-top: 20px;\n  padding-right: 10px;\n}\n\n#core-selector a\n{\n  padding: 0;\n  padding-left: 8px;\n}\n\n#core-selector select\n{\n  width: 100%;\n}\n\n#menu-wrapper .active p\n{\n  background-color: #fafafa;\n  border-color: #c0c0c0;\n}\n\n#menu-wrapper p a,\n#menu a\n{\n  background-position: 5px 50%;\n  padding-left: 26px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n#menu-wrapper p a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#menu-wrapper .active p a\n{\n  background-color: #c0c0c0;\n  font-weight: bold;\n}\n\n#menu p.loader\n{\n  background-position: 5px 50%;\n  color: #c0c0c0;\n  margin-top: 5px;\n  padding-left: 26px;\n}\n\n#menu p a small\n{\n  color: #b5b5b5;\n  font-weight: normal;\n}\n\n#menu p a small span.txt\n{\n  display: none;\n}\n\n#menu p a small:hover span.txt\n{\n  display: inline;\n}\n\n#menu .busy\n{\n  border-right-color: #f6f5d9;\n}\n\n#menu .busy p a\n{\n  background-color: #f6f5d9;\n  background-image: url( ../../img/ico/status-away.png );\n}\n\n#menu .offline\n{\n  border-right-color: #eccfcf;\n}\n\n#menu .offline p a\n{\n  background-color: #eccfcf;\n  background-image: url( ../../img/ico/status-busy.png );\n}\n\n#menu .online\n{\n  border-right-color: #cfecd3;\n}\n\n#menu .online p a\n{\n  background-color: #cfecd3;\n  background-image: url( ../../img/ico/status.png );\n}\n\n#menu .ping small\n{\n  color: #000\n}\n\n#menu li\n{\n  border-bottom: 1px solid #f0f0f0;\n}\n\n#menu li:last-child\n{\n  border-bottom: 0;\n}\n\n#menu li.optional\n{\n  display: none;\n}\n\n#core-menu p\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#core-menu li:first-child p\n{\n  border-top: 0;\n}\n\n#core-menu p a\n{\n  background-image: url( ../../img/ico/status-offline.png );\n}\n\n#core-menu .active p a\n{\n  background-image: url( ../../img/ico/box.png );\n}\n\n#core-menu ul,\n#menu ul\n{\n  display: none;\n  padding-top: 5px;\n  padding-bottom: 10px;\n}\n\n#core-menu .active ul,\n#menu .active ul\n{\n  display: block;\n}\n\n#menu ul li\n{\n  border-bottom: 0;\n}\n\n#core-menu ul li a,\n#menu ul li a\n{\n  background-position: 7px 50%;\n  border-bottom: 1px solid #f0f0f0;\n  color: #bbb;\n  margin-left: 15px;\n  padding-left: 26px;\n}\n\n#core-menu ul li:last-child a,\n#menu ul li:last-child a\n{\n  border-bottom: 0;\n}\n\n#core-menu ul li a:hover,\n#menu ul li a:hover\n{\n  background-color: #f0f0f0;\n  color: #333;\n}\n\n#core-menu ul li.active a,\n#menu ul li.active a\n{\n  background-color: #d0d0d0;\n  border-color: #d0d0d0;\n  color: #333;\n}\n\n#menu #index.global p a { background-image: url( ../../img/ico/dashboard.png ); }\n\n#menu #logging.global p a { background-image: url( ../../img/ico/inbox-document-text.png ); }\n#menu #logging.global .level a { background-image: url( ../../img/ico/gear.png ); }\n\n#menu #java-properties.global p a { background-image: url( ../../img/ico/jar.png ); }\n\n#menu #threads.global p a { background-image: url( ../../img/ico/ui-accordion.png ); }\n\n#menu #cores.global p a { background-image: url( ../../img/ico/databases.png ); }\n\n#menu #cloud.global p a { background-image: url( ../../img/ico/network-cloud.png ); }\n#menu #cloud.global .tree a { background-image: url( ../../img/ico/folder-tree.png ); }\n#menu #cloud.global .graph a { background-image: url( ../../img/ico/molecule.png ); }\n#menu #cloud.global .rgraph a { background-image: url( ../../img/ico/asterisk.png ); }\n#menu #cloud.global .dump a { background-image: url( ../../img/ico/download-cloud.png ); }\n\n#core-menu .ping.error a\n{\n  \n  background-color: #ffcccc;\n  background-image: url( ../../img/ico/system-monitor--exclamation.png );\n  border-color: #ffcccc;\n  cursor: help;\n}\n\n#core-menu .overview a { background-image: url( ../../img/ico/home.png ); }\n#core-menu .query a { background-image: url( ../../img/ico/magnifier.png ); }\n#core-menu .schema a { background-image: url( ../../img/ico/table.png ); }\n#core-menu .config a { background-image: url( ../../img/ico/gear.png ); }\n#core-menu .analysis a { background-image: url( ../../img/ico/funnel.png ); }\n#core-menu .schema-browser a { background-image: url( ../../img/ico/book-open-text.png ); }\n#core-menu .replication a { background-image: url( ../../img/ico/node.png ); }\n#core-menu .distribution a { background-image: url( ../../img/ico/node-select.png ); }\n#core-menu .ping a { background-image: url( ../../img/ico/system-monitor.png ); }\n#core-menu .logging a { background-image: url( ../../img/ico/inbox-document-text.png ); }\n#core-menu .plugins a { background-image: url( ../../img/ico/block.png ); }\n#core-menu .dataimport a { background-image: url( ../../img/ico/document-import.png ); }\n\n\n#content #navigation\n{\n  border-right: 1px solid #e0e0e0;\n}\n\n#content #navigation a\n{\n  display: block;\n  padding: 4px 2px;\n}\n\n#content #navigation .current\n{\n  border-color: #e0e0e0;\n}\n\n#content #navigation a\n{\n  background-position: 5px 50%;\n  padding-left: 26px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n\n#content #navigation a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#content #navigation .current a\n{\n  background-color: #e0e0e0;\n  font-weight: bold;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/plugins.css",
    "content": "#content #plugins #navigation\n{\n  width: 20%;\n}\n\n#content #plugins #navigation .cache a { background-image: url( ../../img/ico/disk-black.png ); }\n#content #plugins #navigation .core a { background-image: url( ../../img/ico/wooden-box.png ); }\n#content #plugins #navigation .other a { background-image: url( ../../img/ico/zone.png ); }\n#content #plugins #navigation .highlighting a { background-image: url( ../../img/ico/highlighter-text.png ); }\n#content #plugins #navigation .updatehandler a{ background-image: url( ../../img/ico/arrow-circle.png ); }\n#content #plugins #navigation .queryhandler a { background-image: url( ../../img/ico/magnifier.png ); }\n\n#content #plugins #navigation .PLUGINCHANGES { margin-top: 20px; }\n#content #plugins #navigation .PLUGINCHANGES a { background-image: url( ../../img/ico/eye.png ); }\n#content #plugins #navigation .RELOAD a { background-image: url( ../../img/ico/arrow-circle.png ); }\n\n\n#content #plugins #navigation a\n{\n  position: relative;\n}\n\n#content #plugins #navigation a span\n{\n  background-color: #bba500;\n  border-radius: 5px;\n  color: #fff;\n  font-size: 10px;\n  font-weight: normal;\n  line-height: 1.4em;\n  padding-left: 4px;\n  padding-right: 4px;\n  position: absolute;\n  right: 5px;\n  top: 7px;\n}\n\n#content #plugins #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #plugins #frame .entry\n{\n  margin-bottom: 10px;\n}\n\n#content #plugins #frame .entry:last-child\n{\n  margin-bottom: 0;\n}\n\n#content #plugins #frame .entry a\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 0 50%;\n  display: block;\n  font-weight: bold;\n  padding-left: 21px;\n}\n\n#content #plugins #frame .entry.changed a span\n{\n  color: #bba500;\n}\n\n#content #plugins #frame .entry.expanded a\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #plugins #frame .entry.expanded ul\n{\n  display: block;\n}\n\n#content #plugins #frame .entry ul\n{\n  border-left: 9px solid #f0f3ff;\n  display: none;\n  margin-left: 3px;\n  padding-top: 5px;\n  padding-left: 10px;\n}\n\n#content #plugins #frame .entry li\n{\n  padding-top: 2px;\n  padding-bottom: 2px;\n}\n\n#content #plugins #frame .entry li.stats\n{\n  border-top: 1px solid #c0c0c0;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #plugins #frame .entry li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #plugins #frame .entry dt,\n#content #plugins #frame .entry .stats span\n{\n  float: left;\n  width: 11%;\n}\n\n#content #plugins #frame .entry dd,\n#content #plugins #frame .entry .stats ul\n{\n  float: right;\n  width: 88%;\n}\n\n#content #plugins #frame .entry .stats ul\n{\n  border-left: 0;\n  margin: 0;\n  padding: 0;\n}\n\n#content #plugins #frame .entry .stats dt\n{\n  width: 27%;\n}\n\n#content #plugins #frame .entry .stats dd\n{\n  width: 72%;\n}\n\n#content #plugins #frame .entry.expanded a.linker {\n  background-image: none;\n  background-position: 0 0;\n  display: inline;\n  font-weight: normal;\n  padding:0px;\n}\n\n#content #plugins #frame .entry.expanded a.linker:hover {\n  background-color:#F0F3FF;\n}\n\n#recording\n{\n  display: none;\n}\n\n#recording .wrapper\n{\n  padding: 30px;\n}\n\n#recording p\n{\n  background-position: 0 50%;\n  float: left;\n  padding-left: 21px;\n  padding-top: 7px;\n  padding-bottom: 7px;\n}\n\n#recording button\n{\n  float: right;\n}\n\n#recording button span\n{\n  background-image: url( ../../img/ico/new-text.png );\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/query.css",
    "content": "#content #query\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 22% 0;\n  background-repeat: repeat-y;\n}\n\n#content #query #form\n{\n  float: left;\n  width: 21%;\n}\n\n#content #query #form label\n{\n  cursor: pointer;\n  display: block;\n  margin-top: 5px;\n}\n\n#content #query #form input,\n#content #query #form select,\n#content #query #form textarea\n{\n  margin-bottom: 2px;\n  width: 100%;\n}\n\n#content #query #form input,\n#content #query #form textarea\n{\n  width: 98%;\n}\n\n#content #query #form #start\n{\n  float: left;\n  width: 45%;\n}\n\n#content #query #form #rows\n{\n  float: right;\n  width: 45%;\n}\n\n#content #query #form .checkbox input\n{\n  margin-bottom: 0;\n  width: auto;\n}\n\n#content #query #form fieldset,\n#content #query #form .optional.expanded\n{\n  border: 1px solid #fff;\n  border-top: 1px solid #c0c0c0;\n  margin-bottom: 5px;\n}\n\n#content #query #form fieldset.common\n{\n  margin-top: 10px;\n}\n\n#content #query #form fieldset legend,\n#content #query #form .optional.expanded legend\n{\n  display: block;\n  margin-left: 10px;\n  padding: 0px 5px;\n}\n\n#content #query #form fieldset legend label\n{\n  margin-top: 0;\n}\n\n#content #query #form fieldset .fieldset\n{\n  border-bottom: 1px solid #f0f0f0;\n  margin-bottom: 5px;\n  padding-bottom: 10px;\n}\n\n#content #query #form .optional\n{\n  border: 0;\n}\n\n#content #query #form .optional .fieldset\n{\n  display: none;\n}\n\n#content #query #form .optional legend\n{\n  margin-left: 0;\n  padding-left: 0;\n}\n\n#content #query #form .optional.expanded .fieldset\n{\n  display: block;\n}\n\n#content #query #result\n{\n  display: none;\n  float: right;\n  width: 77%;\n}\n\n#content #query #result #url\n{\n  margin-bottom: 10px;\n  background-image: url( ../../img/ico/ui-address-bar.png );\n  background-position: 5px 50%;\n  border: 1px solid #f0f0f0;\n  box-shadow: 1px 1px 0 #f0f0f0;\n  -moz-box-shadow: 1px 1px 0 #f0f0f0;\n  -webkit-box-shadow: 1px 1px 0 #f0f0f0;\n  color: #c0c0c0;\n  display: block;\n  overflow: hidden;\n  padding: 5px;\n  padding-left: 26px;\n  white-space: nowrap;\n}\n\n#content #query #result #url:focus,\n#content #query #result #url:hover\n{\n  border-color: #c0c0c0;\n  box-shadow: 1px 1px 0 #d8d8d8;\n  -moz-box-shadow: 1px 1px 0 #d8d8d8;\n  -webkit-box-shadow: 1px 1px 0 #d8d8d8;\n  color: #333;\n}\n\n#content #query #result #response\n{\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/replication.css",
    "content": "#content #replication\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #replication #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #replication #navigation\n{\n  border-right: 0;\n  float: left;\n  width: 20%;\n}\n\n#content #replication #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #replication .block\n{\n  border-bottom: 1px solid #c0c0c0;\n  margin-bottom: 20px;\n  padding-bottom: 20px;\n}\n\n#content #replication .block.last\n{\n  border-bottom: 0;\n}\n\n#content #replication .masterOnly,\n#content #replication .slaveOnly\n{\n  display: none;\n}\n\n#content #replication.master .masterOnly\n{\n  display: block;\n}\n\n#content #replication.slave .slaveOnly\n{\n  display: block;\n}\n\n#content #replication .replicating\n{\n  display: none;\n}\n\n#content #replication.replicating .replicating\n{\n  display: block;\n}\n\n#content #replication #progress\n{\n  padding-bottom: 80px;\n  position: relative;\n}\n\n#content #replication #progress .info\n{\n  padding: 5px;\n}\n\n#content #replication #progress #start\n{\n  margin-left: 100px;\n  border-left: 1px solid #c0c0c0;\n}\n\n#content #replication #progress #bar\n{\n  background-color: #f0f0f0;\n  margin-left: 100px;\n  margin-right: 100px;\n  position: relative;\n}\n\n#content #replication #progress #bar #bar-info,\n#content #replication #progress #bar #eta\n{\n  position: absolute;\n  right: -100px;\n  width: 100px;\n}\n\n#content #replication #progress #bar #bar-info\n{\n  border-left: 1px solid #f0f0f0;\n  margin-top: 30px;\n}\n\n#content #replication #progress #eta .info\n{\n  color: #c0c0c0;\n  height: 30px;\n  line-height: 30px;\n  padding-top: 0;\n  padding-bottom: 0;\n}\n\n#content #replication #progress #speed\n{\n  color: #c0c0c0;\n  position: absolute;\n  right: 100px;\n  top: 0;\n}\n\n#content #replication #progress #bar #done\n{\n  background-color: #c0c0c0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  height: 30px;\n  position: relative;\n}\n\n#content #replication #progress #bar #done .percent\n{\n  font-weight: bold;\n  height: 30px;\n  line-height: 30px;\n  padding-left: 5px;\n  padding-right: 5px;\n  position: absolute;\n  right: 0;\n  text-align: right;\n}\n\n#content #replication #progress #bar #done #done-info\n{\n  border-right: 1px solid #c0c0c0;\n  position: absolute;\n  right: 0;\n  margin-top: 30px;\n  text-align: right;\n  width: 100px;\n}\n\n#content #replication #progress #bar #done #done-info .percent\n{\n  font-weight: bold;\n}\n\n#content #replication .block .label,\n#content #replication #current-file .file,\n#content #replication #current-file .progress,\n#content #replication #iterations .iterations\n{\n  float: left;\n}\n\n#content #replication .block .label\n{\n  width: 100px;\n}\n\n#content #replication .block .label span\n{\n  display: block;\n  padding-left: 21px;\n}\n\n#content #replication #current-file\n{\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #replication #current-file .progress\n{\n  color: #c0c0c0;\n  margin-left: 20px;\n}\n\n#content #replication #iterations .label span\n{\n  background-image: url( ../../img/ico/node-design.png );\n}\n\n#content #replication #iterations .iterations li\n{\n  background-position: 100% 50%;\n  display: none;\n  padding-right: 21px;\n}\n\n#content #replication #iterations .iterations.expanded li\n{\n  display: block;\n}\n\n#content #replication #iterations .iterations .latest\n{\n  display: block;\n}\n\n#content #replication #iterations .iterations .replicated\n{\n  color: #80c480;\n}\n\n#content #replication #iterations .iterations ul:hover .replicated,\n#content #replication #iterations .iterations .replicated.latest\n{\n  color: #080;\n}\n\n#content #replication #iterations .iterations .replicated.latest\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #iterations .iterations .failed\n{\n  color: #c48080;\n}\n\n#content #replication #iterations .iterations ul:hover .failed,\n#content #replication #iterations .iterations .failed.latest\n{\n  color: #800;\n}\n\n#content #replication #iterations .iterations .failed.latest\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #iterations .iterations a\n{\n  border-top: 1px solid #f0f0f0;\n  display: none;\n  margin-top: 2px;\n  padding-top: 2px;\n}\n\n#content #replication #iterations .iterations a span\n{\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: none;\n  padding-left: 21px;\n}\n\n#content #replication #iterations .iterations a span.expand\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  display: block;\n}\n\n#content #replication #iterations .iterations.expanded a span.expand\n{\n  display: none;\n}\n\n#content #replication #iterations .iterations.expanded a span.collapse\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n  display: block;\n}\n\n#content #replication #details table\n{\n  margin-left: 20px;\n  border-collapse: collapse;\n}\n\n#content #replication #details table th\n{\n  text-align: left;\n}\n\n#content #replication.slave #details table .slaveOnly\n{\n  display: table-row;\n}\n\n#content #replication #details table thead th\n{\n  color: #c0c0c0;\n}\n\n#content #replication #details table thead th,\n#content #replication #details table tbody td\n{\n  padding-right: 20px;\n}\n\n#content #replication #details table thead td,\n#content #replication #details table thead th,\n#content #replication #details table tbody th,\n#content #replication #details table tbody td div\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #replication #details table tbody td,\n#content #replication #details table tbody th\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #replication #details table thead td\n{\n  width: 100px;\n}\n\n#content #replication #details table thead td span\n{\n  background-image: url( ../../img/ico/clipboard-list.png );\n  background-position: 0 50%;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #replication #details table tbody th\n{\n  padding-right: 10px;\n  text-align: right;\n  white-space: nowrap;\n}\n\n#content #replication #details table tbody .size\n{\n  text-align: right;\n  white-space: nowrap;\n}\n\n#content #replication #details table tbody .generation div\n{\n  text-align: center;\n}\n\n#content #replication #details table tbody .diff div\n{\n  background-color: #fcfcc9;\n  padding-left: 1px;\n  padding-right: 1px;\n}\n\n#content #replication .settings .label span\n{\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n}\n\n#content #replication .settings ul,\n#content #replication .settings dl dt,\n#content #replication .settings dl dd\n{\n  float: left;\n}\n\n#content #replication .settings ul li\n{\n  border-top: 1px solid #f0f0f0;\n  display: none;\n  padding-top: 3px;\n  padding-top: 3px;\n}\n\n#content #replication .settings ul li:first-child\n{\n  border-top: 0;\n  padding-top: 0;\n}\n\n#content #replication .settings dl dt\n{\n  clear: left;\n  margin-right: 5px;\n  width: 120px;\n}\n\n#content #replication .settings dl .ico\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #replication .settings dl .ico.ico-0\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #replication .settings dl .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication .timer\n{\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  display: none;\n  margin-bottom: 20px;\n  padding: 10px;\n}\n\n#content #replication .timer p,\n#content #replication .timer small\n{\n  padding-left: 21px;\n}\n\n#content #replication .timer p\n{\n  background-image: url( ../../img/ico/clock-select-remain.png );\n  background-position: 0 50%;\n}\n\n#content #replication .timer p .approx\n{\n  color: #c0c0c0;\n  margin-right: 1px;\n}\n\n#content #replication .timer p .tick\n{\n  font-weight: bold;\n}\n\n#content #replication .timer small\n{\n  color: #c0c0c0;\n  display: none;\n}\n\n#content #replication #navigation button\n{\n  display: block;\n  margin-bottom: 10px;\n}\n\n#content #replication #navigation button.optional\n{\n  display: none;\n}\n\n#content #replication #navigation .replicate-now span\n{\n  background-image: url( ../../img/ico/document-convert.png );\n}\n\n#content #replication #navigation .abort-replication span\n{\n  background-image: url( ../../img/ico/hand.png );\n}\n\n#content #replication #navigation .disable-polling span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #navigation .enable-polling span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #navigation .disable-replication span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #navigation .enable-replication span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #navigation .refresh-status span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/schema-browser.css",
    "content": "#content #schema-browser .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;   \n}\n\n#content #schema-browser.loaded\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #schema-browser #data\n{\n  float: right;\n  width: 78%;\n}\n\n#content #schema-browser #related\n{\n  float: left;\n  width: 20%;\n}\n\n#content #schema-browser #related select\n{\n  width: 100%;\n}\n\n#content #schema-browser #related select optgroup\n{\n  font-style: normal;\n  padding: 5px;\n}\n\n#content #schema-browser #related select option\n{\n  padding-left: 10px;\n}\n\n#content #schema-browser #related #f-df-t\n{\n  border-bottom: 1px solid #f0f0f0;\n  padding-bottom: 15px;\n}\n\n#content #schema-browser #related .ukf-dsf dt\n{\n  display: none;\n}\n\n#content #schema-browser #related dl\n{\n  margin-top: 15px;\n}\n\n#content #schema-browser #related dl dt,\n#content #schema-browser #related dl dd a\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #related dl dt\n{\n  font-weight: bold;\n  margin-top: 5px;\n}\n\n#content #schema-browser #related dl dd a\n{\n  display: block;\n  padding-left: 10px;\n}\n\n#content #schema-browser #related dl dd a:hover\n{\n  background-color: #f8f8f8;\n}\n\n#content #schema-browser #related .field .field,\n#content #schema-browser #related .field .field a,\n#content #schema-browser #related .dynamic-field .dynamic-field,\n#content #schema-browser #related .dynamic-field .dynamic-field a,\n#content #schema-browser #related .type .type,\n#content #schema-browser #related .type .type a,\n#content #schema-browser #related .active,\n#content #schema-browser #related .active a\n{\n  color: #333;\n}\n\n#content #schema-browser #related .copyfield,\n#content #schema-browser #related .copyfield a\n{\n  color: #666;\n}\n\n#content #schema-browser #data\n{\n  display: none;\n}\n\n#content #schema-browser #data #index dt\n{\n  display: none;\n  float: left;\n  margin-right: 5px;\n  width: 150px;\n}\n\n#content #schema-browser #data #field .field-options\n{\n  margin-bottom: 10px;\n}\n\n#content #schema-browser #data #field .field-options .head h2\n{\n  padding-left: 5px;\n}\n\n#content #schema-browser #data #field .partial\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .partial p\n{\n  background-image: url( ../../img/ico/exclamation-button.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .options dt,\n#content #schema-browser #data #field .field-options .options dd\n{\n  float: left;\n}\n\n#content #schema-browser #data #field .field-options .options dt\n{\n  clear: left;\n  display: none;\n  margin-right: 5px;\n  width: 100px;\n}\n\n#content #schema-browser #data #field .field-options .flags\n{\n  margin-top: 10px;\n  margin-bottom: 20px;\n}\n\n#content #schema-browser #data #field .field-options .flags thead td\n{\n  color: #c0c0c0;\n  padding-right: 5px;\n  width: 100px;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody td,\n#content #schema-browser #data #field .field-options .flags th\n{\n  padding: 2px 5px;\n}\n\n#content #schema-browser #data #field .field-options .flags thead td,\n#content #schema-browser #data #field .field-options .flags tbody th\n{\n  padding-left: 0;\n}\n\n#content #schema-browser #data #field .field-options .flags thead th,\n#content #schema-browser #data #field .field-options .flags tbody td\n{\n  border-left: 1px solid #f0f0f0;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody th,\n#content #schema-browser #data #field .field-options .flags tbody td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .check\n{\n  background-color: #fafdfa;\n  background-image: url( ../../img/ico/tick.png );\n  background-position: 50% 50%;\n  text-align: center;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .check span\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .text\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .field-options .analyzer,\n#content #schema-browser #data #field .field-options .analyzer li,\n#content #schema-browser #data #field .field-options .analyzer ul,\n#content #schema-browser #data #field .field-options .analyzer ul li\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p,\n#content #schema-browser #data #field .field-options .analyzer dl\n{\n  float: left;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p\n{\n  margin-right: 5px;\n  text-align: right;\n  width: 125px;\n  white-space: pre;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a\n{\n  cursor: auto;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis\n{\n  cursor: pointer;\n  display: block;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis span\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis:hover span\n{\n  background-image: url( ../../img/ico/question.png );\n  color: #008;\n}\n\n#content #schema-browser #data #field .field-options .analyzer a\n{\n  cursor: auto;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .toggle\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 100% 50%;\n  cursor: pointer;\n  display: block;\n  padding-right: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .open .toggle\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #schema-browser #data #field .field-options .analyzer li\n{\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul\n{\n  clear: left;\n  display: none;\n  margin-left: 55px;\n  padding-top: 5px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .open ul\n{\n  display: block;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul li\n{\n  border-top: 1px solid #f8f8f8;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul p\n{\n  color: #999;\n  margin-right: 5px;\n  text-align: right;\n  width: 70px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd\n{\n  margin-left: 20px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd\n{\n  background-image: url( ../../img/ico/document-list.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd.ico-0\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #schema-browser #data #field .head\n{\n  margin-bottom: 5px;\n}\n\n#content #schema-browser #data #field .terminfo-holder\n{\n  border-top: 1px solid #c0c0c0;\n  padding-top: 10px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger\n{\n  float: left;\n  width: 140px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger button span\n{\n  background-image: url( ../../img/ico/information.png );\n}\n\n#content #schema-browser #data #field .terminfo-holder .status\n{\n  border-left: 1px solid #f0f0f0;\n  display: none;\n  float: left;\n  padding-left: 20px;\n  padding-right: 20px;\n}\n\n#content #schema-browser #data #field .terminfo-holder.disabled .trigger button span\n{\n  background-image: url( ../../img/ico/prohibition.png );\n}\n\n#content #schema-browser #data #field .terminfo-holder.disabled .status\n{\n  display: block;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .terminfo-holder.loaded .trigger .autoload\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: block;\n  margin-top: 10px;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload:hover\n{\n  color: #008;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload.on\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n  color: #333;\n}\n\n#content #schema-browser #data #field .topterms-holder,\n#content #schema-browser #data #field .histogram-holder\n{\n  border-left: 1px solid #f0f0f0;\n  display: none;\n  float: left;\n  padding-left: 20px;\n  padding-right: 20px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head input\n{\n  height: 18px;\n  line-height: 16px;\n  text-align: right;\n  width: 30px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head .max-holder\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .topterms-holder .head .max-holder:hover .max\n{\n  color: #008;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  padding-left: 21px;\n  margin-left: 5px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link:hover\n{\n  background-image: url( ../../img/ico/question.png );\n}\n\n\n#content #schema-browser #data #field .topterms-holder .head #query_link span\n{\n  visibility: hidden;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link:hover span\n{\n  visibility: visible;\n}\n\n#content #schema-browser .topterms-holder li\n{\n  border-top: 1px solid  #999;\n  margin-bottom: 5px;\n}\n\n/* possible overwrite with inline style */\n#content #schema-browser .topterms-holder li p\n{\n  background-color:  #999;\n  color: #fff;\n  float: left;\n}\n\n#content #schema-browser .topterms-holder li p span\n{\n  display: block;\n  padding-right: 2px;\n  text-align: right;\n}\n\n/* possible overwrite with inline style */\n#content #schema-browser .topterms-holder li ul\n{\n  margin-left: 30px;\n}\n\n#content #schema-browser .topterms-holder li li\n{\n  border-top: 0;\n  margin-bottom: 0;\n  white-space: nowrap;\n}\n\n#content #schema-browser .topterms-holder li li.odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #schema-browser .topterms-holder li li a\n{\n  display: block;\n  padding-left: 2px;\n  padding-right: 2px;\n}\n\n#content #schema-browser .topterms-holder li li a:hover\n{\n  background-color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .histogram-holder ul\n{\n  margin-left: 25px;\n}\n\n#content #schema-browser #data #field .histogram-holder li\n{\n  margin-bottom: 2px;\n  position: relative;\n  width: 150px;\n}\n\n#content #schema-browser #data #field .histogram-holder li.odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #schema-browser #data #field .histogram-holder li dl,\n#content #schema-browser #data #field .histogram-holder li dt\n{\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dl\n{\n  background-color: #c0c0c0;\n  min-width: 1px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dt\n{\n  color: #a0a0a0;\n  position: absolute;\n  overflow: hidden;\n  left: -25px;\n  top: 0px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dt span\n{\n  display: block;\n  padding-right: 4px;\n  text-align: right;\n}\n\n#content #schema-browser #data #field .histogram-holder li dd\n{\n  clear: left;\n  float: left;\n  margin-left: 2px;\n  white-space: nowrap;\n}\n\n#content #schema-browser #data #field .histogram-holder li:hover dl\n{\n  background-color: #b0b0b0;\n}\n\n#content #schema-browser #data #field .histogram-holder li:hover dt\n{\n  color: #333;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/css/styles/threads.css",
    "content": "#content #threads .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump table\n{\n  border-collapse: collapse;\n  width: 100%;\n}\n\n#content #threads #thread-dump table .spacer,\n#content #threads #thread-dump tbody .state\n{\n  background-color: #fff;\n}\n\n#content #threads #thread-dump table th,\n#content #threads #thread-dump table td\n{\n  padding: 5px 3px;\n  vertical-align: top;\n}\n\n#content #threads #thread-dump thead th\n{\n  background-color: #c8c8c8;\n  font-weight: bold;\n  text-align: left;\n}\n\n#content #threads #thread-dump thead th.name\n{\n  width: 85%;\n}\n\n#content #threads #thread-dump thead th.time\n{\n  text-align: right;\n  width: 15%;\n}\n\n#content #threads #thread-dump tbody .odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #threads #thread-dump tbody .RUNNABLE a\n{\n  background-image: url( ../../img/ico/tick-circle.png );\n}\n\n#content #threads #thread-dump tbody .WAITING a,\n#content #threads #thread-dump tbody .TIMED_WAITING .a\n{\n  background-image: url( ../../img/ico/hourglass.png );\n}\n\n#content #threads #thread-dump tbody .WAITING.lock a,\n#content #threads #thread-dump tbody .TIMED_WAITING.lock a\n{\n  background-image: url( ../../img/ico/hourglass--exclamation.png );\n}\n\n#content #threads #thread-dump tbody .name a\n{\n  background-position: 0 50%;\n  cursor: auto;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump tbody .stacktrace .name a\n{\n  cursor: pointer;\n}\n\n#content #threads #thread-dump tbody .stacktrace .name a span\n{    \n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 100% 50%;\n  padding-right: 21px;\n}\n\n#content #threads #thread-dump tbody .stacktrace.open .name a span\n{   \n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #threads #thread-dump tbody .name p\n{\n  background-image: url( ../../img/ico/arrow-000-small.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  font-size: 11px;\n  margin-left: 21px;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump tbody .name div\n{\n  border-top: 1px solid #c0c0c0;\n  display: none;\n  margin-left: 21px;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #threads #thread-dump tbody .open .name div\n{\n  display: block;\n}\n\n#content #threads #thread-dump tbody .name ul\n{\n  list-style-type: disc;\n  margin-left: 0.7em;\n  padding-left: 0.7em;\n}\n\n#content #threads #thread-dump tbody .time\n{\n  text-align: right;\n}\n\n#content #threads #thread-dump tbody .details\n{\n  display: none;\n}\n\n#content #threads .controls\n{\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n#content #threads .controls a\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  padding-left: 21px;\n}\n\n#content #threads.expanded .controls a\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #threads.expanded .controls .expand,\n#content #threads.collapsed .controls .collapse\n{\n  display: none;\n}"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/img/filetypes/README",
    "content": "http://www.splitbrain.org/projects/file_icons\n\nReleased to the Public Domain\nFree to use. Provided as is. No warranties.\n\nNote: The big majority of icons where created by the creators listed\n      below. Only a few ones where found on the net. They were too\n      widespread to determine the original author and thus were\n      considered public domain.\n      If you are the author of one of those icons just send a short\n      mail to either be included in the list below or have the icon\n      removed from the package.\n\nCreators:\n\n  Andreas Gohr <andi@splitbrain.org>\n  Michael Klier <chi@chimeric.de>\n  Andreas Barton <andreas.barton@web.de>\n  Hubert Chathi <hubert@uhoreg.ca>\n  Johan Koehne <johankohne@gmail.com>\n  Rudi von Staden <rudivs@iafrica.com>\n  Daniel Darvish <ddarvish@hibm.org>\n  Andy Pascall <apascall@engineering.ucsb.edu>\n  Seth <seth.holcomb@gmail.com>\n  David Carella <david.carella@gmail.com>\n  Tom N. Harris <telliamed@fastmail.us>\n  Brandon Carmon Colvin <b.carmon.colvin@gmail.com>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/ZeroClipboard.js",
    "content": "// Simple Set Clipboard System\n// Author: Joseph Huckaby\n\nvar ZeroClipboard = {\n\t\n\tversion: \"1.0.7\",\n\tclients: {}, // registered upload clients on page, indexed by id\n\tmoviePath: 'ZeroClipboard.swf', // URL to movie\n\tnextId: 1, // ID of next movie\n\t\n\t$: function(thingy) {\n\t\t// simple DOM lookup utility function\n\t\tif (typeof(thingy) == 'string') thingy = document.getElementById(thingy);\n\t\tif (!thingy.addClass) {\n\t\t\t// extend element with a few useful methods\n\t\t\tthingy.hide = function() { this.style.display = 'none'; };\n\t\t\tthingy.show = function() { this.style.display = ''; };\n\t\t\tthingy.addClass = function(name) { this.removeClass(name); this.className += ' ' + name; };\n\t\t\tthingy.removeClass = function(name) {\n\t\t\t\tvar classes = this.className.split(/\\s+/);\n\t\t\t\tvar idx = -1;\n\t\t\t\tfor (var k = 0; k < classes.length; k++) {\n\t\t\t\t\tif (classes[k] == name) { idx = k; k = classes.length; }\n\t\t\t\t}\n\t\t\t\tif (idx > -1) {\n\t\t\t\t\tclasses.splice( idx, 1 );\n\t\t\t\t\tthis.className = classes.join(' ');\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tthingy.hasClass = function(name) {\n\t\t\t\treturn !!this.className.match( new RegExp(\"\\\\s*\" + name + \"\\\\s*\") );\n\t\t\t};\n\t\t}\n\t\treturn thingy;\n\t},\n\t\n\tsetMoviePath: function(path) {\n\t\t// set path to ZeroClipboard.swf\n\t\tthis.moviePath = path;\n\t},\n\t\n\tdispatch: function(id, eventName, args) {\n\t\t// receive event from flash movie, send to client\t\t\n\t\tvar client = this.clients[id];\n\t\tif (client) {\n\t\t\tclient.receiveEvent(eventName, args);\n\t\t}\n\t},\n\t\n\tregister: function(id, client) {\n\t\t// register new client to receive events\n\t\tthis.clients[id] = client;\n\t},\n\t\n\tgetDOMObjectPosition: function(obj, stopObj) {\n\t\t// get absolute coordinates for dom element\n\t\tvar info = {\n\t\t\tleft: 0, \n\t\t\ttop: 0, \n\t\t\twidth: obj.width ? obj.width : obj.offsetWidth, \n\t\t\theight: obj.height ? obj.height : obj.offsetHeight\n\t\t};\n\n\t\twhile (obj && (obj != stopObj)) {\n\t\t\tinfo.left += obj.offsetLeft;\n\t\t\tinfo.top += obj.offsetTop;\n\t\t\tobj = obj.offsetParent;\n\t\t}\n\n\t\treturn info;\n\t},\n\t\n\tClient: function(elem) {\n\t\t// constructor for new simple upload client\n\t\tthis.handlers = {};\n\t\t\n\t\t// unique ID\n\t\tthis.id = ZeroClipboard.nextId++;\n\t\tthis.movieId = 'ZeroClipboardMovie_' + this.id;\n\t\t\n\t\t// register client with singleton to receive flash events\n\t\tZeroClipboard.register(this.id, this);\n\t\t\n\t\t// create movie\n\t\tif (elem) this.glue(elem);\n\t}\n};\n\nZeroClipboard.Client.prototype = {\n\t\n\tid: 0, // unique ID for us\n\tready: false, // whether movie is ready to receive events or not\n\tmovie: null, // reference to movie object\n\tclipText: '', // text to copy to clipboard\n\thandCursorEnabled: true, // whether to show hand cursor, or default pointer cursor\n\tcssEffects: true, // enable CSS mouse effects on dom container\n\thandlers: null, // user event handlers\n\t\n\tglue: function(elem, appendElem, stylesToAdd) {\n\t\t// glue to DOM element\n\t\t// elem can be ID or actual DOM element object\n\t\tthis.domElement = ZeroClipboard.$(elem);\n\t\t\n\t\t// float just above object, or zIndex 99 if dom element isn't set\n\t\tvar zIndex = 99;\n\t\tif (this.domElement.style.zIndex) {\n\t\t\tzIndex = parseInt(this.domElement.style.zIndex, 10) + 1;\n\t\t}\n\t\t\n\t\tif (typeof(appendElem) == 'string') {\n\t\t\tappendElem = ZeroClipboard.$(appendElem);\n\t\t}\n\t\telse if (typeof(appendElem) == 'undefined') {\n\t\t\tappendElem = document.getElementsByTagName('body')[0];\n\t\t}\n\t\t\n\t\t// find X/Y position of domElement\n\t\tvar box = ZeroClipboard.getDOMObjectPosition(this.domElement, appendElem);\n\t\t\n\t\t// create floating DIV above element\n\t\tthis.div = document.createElement('div');\n\t\tvar style = this.div.style;\n\t\tstyle.position = 'absolute';\n\t\tstyle.left = '' + box.left + 'px';\n\t\tstyle.top = '' + box.top + 'px';\n\t\tstyle.width = '' + box.width + 'px';\n\t\tstyle.height = '' + box.height + 'px';\n\t\tstyle.zIndex = zIndex;\n\n\t\tstyle.left = '0px';\n\t\tstyle.top = '0px';\n\t\t\n\t\tif (typeof(stylesToAdd) == 'object') {\n\t\t\tfor (addedStyle in stylesToAdd) {\n\t\t\t\tstyle[addedStyle] = stylesToAdd[addedStyle];\n\t\t\t}\n\t\t}\n\t\t\n\t\t// style.backgroundColor = '#f00'; // debug\n\t\t\n\t\tappendElem.appendChild(this.div);\n\t\t\n\t\tthis.div.innerHTML = this.getHTML( box.width, box.height );\n\t},\n\t\n\tgetHTML: function(width, height) {\n\t\t// return HTML for movie\n\t\tvar html = '';\n\t\tvar flashvars = 'id=' + this.id + \n\t\t\t'&width=' + width + \n\t\t\t'&height=' + height;\n\t\t\t\n\t\tif (navigator.userAgent.match(/MSIE/)) {\n\t\t\t// IE gets an OBJECT tag\n\t\t\tvar protocol = location.href.match(/^https/i) ? 'https://' : 'http://';\n\t\t\thtml += '<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"'+protocol+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\"'+width+'\" height=\"'+height+'\" id=\"'+this.movieId+'\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"always\" /><param name=\"allowFullScreen\" value=\"false\" /><param name=\"movie\" value=\"'+ZeroClipboard.moviePath+'\" /><param name=\"loop\" value=\"false\" /><param name=\"menu\" value=\"false\" /><param name=\"quality\" value=\"best\" /><param name=\"bgcolor\" value=\"#ffffff\" /><param name=\"flashvars\" value=\"'+flashvars+'\"/><param name=\"wmode\" value=\"transparent\"/></object>';\n\t\t}\n\t\telse {\n\t\t\t// all other browsers get an EMBED tag\n\t\t\thtml += '<embed id=\"'+this.movieId+'\" src=\"'+ZeroClipboard.moviePath+'\" loop=\"false\" menu=\"false\" quality=\"best\" bgcolor=\"#ffffff\" width=\"'+width+'\" height=\"'+height+'\" name=\"'+this.movieId+'\" align=\"middle\" allowScriptAccess=\"always\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" flashvars=\"'+flashvars+'\" wmode=\"transparent\" />';\n\t\t}\n\t\treturn html;\n\t},\n\t\n\thide: function() {\n\t\t// temporarily hide floater offscreen\n\t\tif (this.div) {\n\t\t\tthis.div.style.left = '-2000px';\n\t\t}\n\t},\n\t\n\tshow: function() {\n\t\t// show ourselves after a call to hide()\n\t\tthis.reposition();\n\t},\n\t\n\tdestroy: function() {\n\t\t// destroy control and floater\n\t\tif (this.domElement && this.div) {\n\t\t\tthis.hide();\n\t\t\tthis.div.innerHTML = '';\n\t\t\t\n\t\t\tvar body = document.getElementsByTagName('body')[0];\n\t\t\ttry { body.removeChild( this.div ); } catch(e) {;}\n\t\t\t\n\t\t\tthis.domElement = null;\n\t\t\tthis.div = null;\n\t\t}\n\t},\n\t\n\treposition: function(elem) {\n\t\t// reposition our floating div, optionally to new container\n\t\t// warning: container CANNOT change size, only position\n\t\tif (elem) {\n\t\t\tthis.domElement = ZeroClipboard.$(elem);\n\t\t\tif (!this.domElement) this.hide();\n\t\t}\n\n\t\tconsole.debug( this.domElement, this.div );\n\t\t\n\t\tif (this.domElement && this.div) {\n\t\t\tvar box = ZeroClipboard.getDOMObjectPosition(this.domElement);\n\t\t\tconsole.debug( box );\n\t\t\tvar style = this.div.style;\n\t\t\tstyle.left = '' + box.left + 'px';\n\t\t\tstyle.top = '' + box.top + 'px';\n\t\t}\n\t},\n\t\n\tsetText: function(newText) {\n\t\t// set text to be copied to clipboard\n\t\tthis.clipText = newText;\n\t\tif (this.ready) this.movie.setText(newText);\n\t},\n\t\n\taddEventListener: function(eventName, func) {\n\t\t// add user event listener for event\n\t\t// event types: load, queueStart, fileStart, fileComplete, queueComplete, progress, error, cancel\n\t\teventName = eventName.toString().toLowerCase().replace(/^on/, '');\n\t\tif (!this.handlers[eventName]) this.handlers[eventName] = [];\n\t\tthis.handlers[eventName].push(func);\n\t},\n\t\n\tsetHandCursor: function(enabled) {\n\t\t// enable hand cursor (true), or default arrow cursor (false)\n\t\tthis.handCursorEnabled = enabled;\n\t\tif (this.ready) this.movie.setHandCursor(enabled);\n\t},\n\t\n\tsetCSSEffects: function(enabled) {\n\t\t// enable or disable CSS effects on DOM container\n\t\tthis.cssEffects = !!enabled;\n\t},\n\t\n\treceiveEvent: function(eventName, args) {\n\t\t// receive event from flash\n\t\teventName = eventName.toString().toLowerCase().replace(/^on/, '');\n\t\t\t\t\n\t\t// special behavior for certain events\n\t\tswitch (eventName) {\n\t\t\tcase 'load':\n\t\t\t\t// movie claims it is ready, but in IE this isn't always the case...\n\t\t\t\t// bug fix: Cannot extend EMBED DOM elements in Firefox, must use traditional function\n\t\t\t\tthis.movie = document.getElementById(this.movieId);\n\t\t\t\tif (!this.movie) {\n\t\t\t\t\tvar self = this;\n\t\t\t\t\tsetTimeout( function() { self.receiveEvent('load', null); }, 1 );\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// firefox on pc needs a \"kick\" in order to set these in certain cases\n\t\t\t\tif (!this.ready && navigator.userAgent.match(/Firefox/) && navigator.userAgent.match(/Windows/)) {\n\t\t\t\t\tvar self = this;\n\t\t\t\t\tsetTimeout( function() { self.receiveEvent('load', null); }, 100 );\n\t\t\t\t\tthis.ready = true;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tthis.ready = true;\n\t\t\t\tthis.movie.setText( this.clipText );\n\t\t\t\tthis.movie.setHandCursor( this.handCursorEnabled );\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseover':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.addClass('hover');\n\t\t\t\t\tif (this.recoverActive) this.domElement.addClass('active');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseout':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.recoverActive = false;\n\t\t\t\t\tif (this.domElement.hasClass('active')) {\n\t\t\t\t\t\tthis.domElement.removeClass('active');\n\t\t\t\t\t\tthis.recoverActive = true;\n\t\t\t\t\t}\n\t\t\t\t\tthis.domElement.removeClass('hover');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mousedown':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.addClass('active');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseup':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.removeClass('active');\n\t\t\t\t\tthis.recoverActive = false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t} // switch eventName\n\t\t\n\t\tif (this.handlers[eventName]) {\n\t\t\tfor (var idx = 0, len = this.handlers[eventName].length; idx < len; idx++) {\n\t\t\t\tvar func = this.handlers[eventName][idx];\n\t\t\t\n\t\t\t\tif (typeof(func) == 'function') {\n\t\t\t\t\t// actual function reference\n\t\t\t\t\tfunc(this, args);\n\t\t\t\t}\n\t\t\t\telse if ((typeof(func) == 'object') && (func.length == 2)) {\n\t\t\t\t\t// PHP style object + method, i.e. [myObject, 'myMethod']\n\t\t\t\t\tfunc[0][ func[1] ](this, args);\n\t\t\t\t}\n\t\t\t\telse if (typeof(func) == 'string') {\n\t\t\t\t\t// name of function\n\t\t\t\t\twindow[func](this, args);\n\t\t\t\t}\n\t\t\t} // foreach event handler defined\n\t\t} // user defined handler for event\n\t}\n\t\n};\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/chosen.js",
    "content": "// Chosen, a Select Box Enhancer for jQuery and Protoype\n// by Patrick Filler for Harvest, http://getharvest.com\n// \n// Version 0.9.8\n// Full source at https://github.com/harvesthq/chosen\n// Copyright (c) 2011 Harvest http://getharvest.com\n\n// MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md\n// This file is generated by `cake build`, do not edit it by hand.\n(function() {\n  var SelectParser;\n\n  SelectParser = (function() {\n\n    function SelectParser() {\n      this.options_index = 0;\n      this.parsed = [];\n    }\n\n    SelectParser.prototype.add_node = function(child) {\n      if (child.nodeName === \"OPTGROUP\") {\n        return this.add_group(child);\n      } else {\n        return this.add_option(child);\n      }\n    };\n\n    SelectParser.prototype.add_group = function(group) {\n      var group_position, option, _i, _len, _ref, _results;\n      group_position = this.parsed.length;\n      this.parsed.push({\n        array_index: group_position,\n        group: true,\n        label: group.label,\n        children: 0,\n        disabled: group.disabled\n      });\n      _ref = group.childNodes;\n      _results = [];\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        option = _ref[_i];\n        _results.push(this.add_option(option, group_position, group.disabled));\n      }\n      return _results;\n    };\n\n    SelectParser.prototype.add_option = function(option, group_position, group_disabled) {\n      if (option.nodeName === \"OPTION\") {\n        if (option.text !== \"\") {\n          if (group_position != null) this.parsed[group_position].children += 1;\n          this.parsed.push({\n            array_index: this.parsed.length,\n            options_index: this.options_index,\n            value: option.value,\n            text: option.text,\n            html: option.innerHTML,\n            selected: option.selected,\n            disabled: group_disabled === true ? group_disabled : option.disabled,\n            group_array_index: group_position,\n            classes: option.className,\n            style: option.style.cssText\n          });\n        } else {\n          this.parsed.push({\n            array_index: this.parsed.length,\n            options_index: this.options_index,\n            empty: true\n          });\n        }\n        return this.options_index += 1;\n      }\n    };\n\n    return SelectParser;\n\n  })();\n\n  SelectParser.select_to_array = function(select) {\n    var child, parser, _i, _len, _ref;\n    parser = new SelectParser();\n    _ref = select.childNodes;\n    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n      child = _ref[_i];\n      parser.add_node(child);\n    }\n    return parser.parsed;\n  };\n\n  this.SelectParser = SelectParser;\n\n}).call(this);\n\n/*\nChosen source: generate output using 'cake build'\nCopyright (c) 2011 by Harvest\n*/\n\n(function() {\n  var AbstractChosen, root;\n\n  root = this;\n\n  AbstractChosen = (function() {\n\n    function AbstractChosen(form_field, options) {\n      this.form_field = form_field;\n      this.options = options != null ? options : {};\n      this.set_default_values();\n      this.is_multiple = this.form_field.multiple;\n      this.default_text_default = this.is_multiple ? \"Select Some Options\" : \"Select an Option\";\n      this.setup();\n      this.set_up_html();\n      this.register_observers();\n      this.finish_setup();\n    }\n\n    AbstractChosen.prototype.set_default_values = function() {\n      var _this = this;\n      this.click_test_action = function(evt) {\n        return _this.test_active_click(evt);\n      };\n      this.activate_action = function(evt) {\n        return _this.activate_field(evt);\n      };\n      this.active_field = false;\n      this.mouse_on_container = false;\n      this.results_showing = false;\n      this.result_highlighted = null;\n      this.result_single_selected = null;\n      this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === \"\" ? this.options.allow_single_deselect : false;\n      this.disable_search_threshold = this.options.disable_search_threshold || 0;\n      this.search_contains = this.options.search_contains || false;\n      this.choices = 0;\n      return this.results_none_found = this.options.no_results_text || \"No results match\";\n    };\n\n    AbstractChosen.prototype.mouse_enter = function() {\n      return this.mouse_on_container = true;\n    };\n\n    AbstractChosen.prototype.mouse_leave = function() {\n      return this.mouse_on_container = false;\n    };\n\n    AbstractChosen.prototype.input_focus = function(evt) {\n      var _this = this;\n      if (!this.active_field) {\n        return setTimeout((function() {\n          return _this.container_mousedown();\n        }), 50);\n      }\n    };\n\n    AbstractChosen.prototype.input_blur = function(evt) {\n      var _this = this;\n      if (!this.mouse_on_container) {\n        this.active_field = false;\n        return setTimeout((function() {\n          return _this.blur_test();\n        }), 100);\n      }\n    };\n\n    AbstractChosen.prototype.result_add_option = function(option) {\n      var classes, style;\n      if (!option.disabled) {\n        option.dom_id = this.container_id + \"_o_\" + option.array_index;\n        classes = option.selected && this.is_multiple ? [] : [\"active-result\"];\n        if (option.selected) classes.push(\"result-selected\");\n        if (option.group_array_index != null) classes.push(\"group-option\");\n        if (option.classes !== \"\") classes.push(option.classes);\n        style = option.style.cssText !== \"\" ? \" style=\\\"\" + option.style + \"\\\"\" : \"\";\n        return '<li id=\"' + option.dom_id + '\" class=\"' + classes.join(' ') + '\"' + style + '>' + option.html + '</li>';\n      } else {\n        return \"\";\n      }\n    };\n\n    AbstractChosen.prototype.results_update_field = function() {\n      this.result_clear_highlight();\n      this.result_single_selected = null;\n      return this.results_build();\n    };\n\n    AbstractChosen.prototype.results_toggle = function() {\n      if (this.results_showing) {\n        return this.results_hide();\n      } else {\n        return this.results_show();\n      }\n    };\n\n    AbstractChosen.prototype.results_search = function(evt) {\n      if (this.results_showing) {\n        return this.winnow_results();\n      } else {\n        return this.results_show();\n      }\n    };\n\n    AbstractChosen.prototype.keyup_checker = function(evt) {\n      var stroke, _ref;\n      stroke = (_ref = evt.which) != null ? _ref : evt.keyCode;\n      this.search_field_scale();\n      switch (stroke) {\n        case 8:\n          if (this.is_multiple && this.backstroke_length < 1 && this.choices > 0) {\n            return this.keydown_backstroke();\n          } else if (!this.pending_backstroke) {\n            this.result_clear_highlight();\n            return this.results_search();\n          }\n          break;\n        case 13:\n          evt.preventDefault();\n          if (this.results_showing) return this.result_select(evt);\n          break;\n        case 27:\n          if (this.results_showing) this.results_hide();\n          return true;\n        case 9:\n        case 38:\n        case 40:\n        case 16:\n        case 91:\n        case 17:\n          break;\n        default:\n          return this.results_search();\n      }\n    };\n\n    AbstractChosen.prototype.generate_field_id = function() {\n      var new_id;\n      new_id = this.generate_random_id();\n      this.form_field.id = new_id;\n      return new_id;\n    };\n\n    AbstractChosen.prototype.generate_random_char = function() {\n      var chars, newchar, rand;\n      chars = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZ\";\n      rand = Math.floor(Math.random() * chars.length);\n      return newchar = chars.substring(rand, rand + 1);\n    };\n\n    return AbstractChosen;\n\n  })();\n\n  root.AbstractChosen = AbstractChosen;\n\n}).call(this);\n\n/*\nChosen source: generate output using 'cake build'\nCopyright (c) 2011 by Harvest\n*/\n\n(function() {\n  var $, Chosen, get_side_border_padding, root,\n    __hasProp = Object.prototype.hasOwnProperty,\n    __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor; child.__super__ = parent.prototype; return child; };\n\n  root = this;\n\n  $ = jQuery;\n\n  $.fn.extend({\n    chosen: function(options) {\n      if ($.browser.msie && ($.browser.version === \"6.0\" || $.browser.version === \"7.0\")) {\n        return this;\n      }\n      return $(this).each(function(input_field) {\n        if (!($(this)).hasClass(\"chzn-done\")) return new Chosen(this, options);\n      });\n    }\n  });\n\n  Chosen = (function(_super) {\n\n    __extends(Chosen, _super);\n\n    function Chosen() {\n      Chosen.__super__.constructor.apply(this, arguments);\n    }\n\n    Chosen.prototype.setup = function() {\n      this.form_field_jq = $(this.form_field);\n      return this.is_rtl = this.form_field_jq.hasClass(\"chzn-rtl\");\n    };\n\n    Chosen.prototype.finish_setup = function() {\n      return this.form_field_jq.addClass(\"chzn-done\");\n    };\n\n    Chosen.prototype.set_up_html = function() {\n      var container_div, dd_top, dd_width, sf_width;\n      this.container_id = this.form_field.id.length ? this.form_field.id.replace(/(:|\\.)/g, '_') : this.generate_field_id();\n      this.container_id += \"_chzn\";\n      this.f_width = this.form_field_jq.outerWidth();\n      this.default_text = this.form_field_jq.data('placeholder') ? this.form_field_jq.data('placeholder') : this.default_text_default;\n      container_div = $(\"<div />\", {\n        id: this.container_id,\n        \"class\": \"chzn-container\" + (this.is_rtl ? ' chzn-rtl' : ''),\n        style: 'width: ' + this.f_width + 'px;'\n      });\n      if (this.is_multiple) {\n        container_div.html('<ul class=\"chzn-choices\"><li class=\"search-field\"><input type=\"text\" value=\"' + this.default_text + '\" class=\"default\" autocomplete=\"off\" style=\"width:25px;\" /></li></ul><div class=\"chzn-drop\" style=\"left:-9000px;\"><ul class=\"chzn-results\"></ul></div>');\n      } else {\n        container_div.html('<a href=\"javascript:void(0)\" class=\"chzn-single chzn-default\"><span>' + this.default_text + '</span><div><b></b></div></a><div class=\"chzn-drop\" style=\"left:-9000px;\"><div class=\"chzn-search\"><input type=\"search\" autocomplete=\"off\" /></div><ul class=\"chzn-results\"></ul></div>');\n      }\n      this.form_field_jq.hide().after(container_div);\n      this.container = $('#' + this.container_id);\n      this.container.addClass(\"chzn-container-\" + (this.is_multiple ? \"multi\" : \"single\"));\n      this.dropdown = this.container.find('div.chzn-drop').first();\n      dd_top = this.container.height();\n      dd_width = this.f_width - get_side_border_padding(this.dropdown);\n      this.dropdown.css({\n        \"width\": dd_width + \"px\",\n        \"top\": dd_top + \"px\"\n      });\n      this.search_field = this.container.find('input').first();\n      this.search_results = this.container.find('ul.chzn-results').first();\n      this.search_field_scale();\n      this.search_no_results = this.container.find('li.no-results').first();\n      if (this.is_multiple) {\n        this.search_choices = this.container.find('ul.chzn-choices').first();\n        this.search_container = this.container.find('li.search-field').first();\n      } else {\n        this.search_container = this.container.find('div.chzn-search').first();\n        this.selected_item = this.container.find('.chzn-single').first();\n        sf_width = dd_width - get_side_border_padding(this.search_container) - get_side_border_padding(this.search_field);\n        sf_width = dd_width - get_side_border_padding(this.search_container);\n        this.search_field.css({\n          \"width\": sf_width + \"px\"\n        });\n      }\n      this.results_build();\n      this.set_tab_index();\n      return this.form_field_jq.trigger(\"liszt:ready\", {\n        chosen: this\n      });\n    };\n\n    Chosen.prototype.register_observers = function() {\n      var _this = this;\n      this.container.mousedown(function(evt) {\n        return _this.container_mousedown(evt);\n      });\n      this.container.mouseup(function(evt) {\n        return _this.container_mouseup(evt);\n      });\n      this.container.mouseenter(function(evt) {\n        return _this.mouse_enter(evt);\n      });\n      this.container.mouseleave(function(evt) {\n        return _this.mouse_leave(evt);\n      });\n      this.search_results.mouseup(function(evt) {\n        return _this.search_results_mouseup(evt);\n      });\n      this.search_results.mouseover(function(evt) {\n        return _this.search_results_mouseover(evt);\n      });\n      this.search_results.mouseout(function(evt) {\n        return _this.search_results_mouseout(evt);\n      });\n      this.form_field_jq.bind(\"liszt:updated\", function(evt) {\n        return _this.results_update_field(evt);\n      });\n      this.search_field.blur(function(evt) {\n        return _this.input_blur(evt);\n      });\n      this.search_field.keyup(function(evt) {\n        return _this.keyup_checker(evt);\n      });\n      this.search_field.keydown(function(evt) {\n        return _this.keydown_checker(evt);\n      });\n      if (this.is_multiple) {\n        this.search_choices.click(function(evt) {\n          return _this.choices_click(evt);\n        });\n        return this.search_field.focus(function(evt) {\n          return _this.input_focus(evt);\n        });\n      } else {\n        return this.container.click(function(evt) {\n          return evt.preventDefault();\n        });\n      }\n    };\n\n    Chosen.prototype.search_field_disabled = function() {\n      this.is_disabled = this.form_field_jq[0].disabled;\n      if (this.is_disabled) {\n        this.container.addClass('chzn-disabled');\n        this.search_field[0].disabled = true;\n        if (!this.is_multiple) {\n          this.selected_item.unbind(\"focus\", this.activate_action);\n        }\n        return this.close_field();\n      } else {\n        this.container.removeClass('chzn-disabled');\n        this.search_field[0].disabled = false;\n        if (!this.is_multiple) {\n          return this.selected_item.bind(\"focus\", this.activate_action);\n        }\n      }\n    };\n\n    Chosen.prototype.container_mousedown = function(evt) {\n      var target_closelink;\n      if (!this.is_disabled) {\n        target_closelink = evt != null ? ($(evt.target)).hasClass(\"search-choice-close\") : false;\n        if (evt && evt.type === \"mousedown\" && !this.results_showing) {\n          evt.stopPropagation();\n        }\n        if (!this.pending_destroy_click && !target_closelink) {\n          if (!this.active_field) {\n            if (this.is_multiple) this.search_field.val(\"\");\n            $(document).click(this.click_test_action);\n            this.results_show();\n          } else if (!this.is_multiple && evt && (($(evt.target)[0] === this.selected_item[0]) || $(evt.target).parents(\"a.chzn-single\").length)) {\n            evt.preventDefault();\n            this.results_toggle();\n          }\n          return this.activate_field();\n        } else {\n          return this.pending_destroy_click = false;\n        }\n      }\n    };\n\n    Chosen.prototype.container_mouseup = function(evt) {\n      if (evt.target.nodeName === \"ABBR\") return this.results_reset(evt);\n    };\n\n    Chosen.prototype.blur_test = function(evt) {\n      if (!this.active_field && this.container.hasClass(\"chzn-container-active\")) {\n        return this.close_field();\n      }\n    };\n\n    Chosen.prototype.close_field = function() {\n      $(document).unbind(\"click\", this.click_test_action);\n      if (!this.is_multiple) {\n        this.selected_item.attr(\"tabindex\", this.search_field.attr(\"tabindex\"));\n        this.search_field.attr(\"tabindex\", -1);\n      }\n      this.active_field = false;\n      this.results_hide();\n      this.container.removeClass(\"chzn-container-active\");\n      this.winnow_results_clear();\n      this.clear_backstroke();\n      this.show_search_field_default();\n      return this.search_field_scale();\n    };\n\n    Chosen.prototype.activate_field = function() {\n      if (!this.is_multiple && !this.active_field) {\n        this.search_field.attr(\"tabindex\", this.selected_item.attr(\"tabindex\"));\n        this.selected_item.attr(\"tabindex\", -1);\n      }\n      this.container.addClass(\"chzn-container-active\");\n      this.active_field = true;\n      this.search_field.val(this.search_field.val());\n      return this.search_field.focus();\n    };\n\n    Chosen.prototype.test_active_click = function(evt) {\n      if ($(evt.target).parents('#' + this.container_id).length) {\n        return this.active_field = true;\n      } else {\n        return this.close_field();\n      }\n    };\n\n    Chosen.prototype.results_build = function() {\n      var content, data, _i, _len, _ref;\n      this.parsing = true;\n      this.results_data = root.SelectParser.select_to_array(this.form_field);\n      if (this.is_multiple && this.choices > 0) {\n        this.search_choices.find(\"li.search-choice\").remove();\n        this.choices = 0;\n      } else if (!this.is_multiple) {\n        this.selected_item.find(\"span\").text(this.default_text);\n        if (this.form_field.options.length <= this.disable_search_threshold) {\n          this.container.addClass(\"chzn-container-single-nosearch\");\n        } else {\n          this.container.removeClass(\"chzn-container-single-nosearch\");\n        }\n      }\n      content = '';\n      _ref = this.results_data;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        data = _ref[_i];\n        if (data.group) {\n          content += this.result_add_group(data);\n        } else if (!data.empty) {\n          content += this.result_add_option(data);\n          if (data.selected && this.is_multiple) {\n            this.choice_build(data);\n          } else if (data.selected && !this.is_multiple) {\n            this.selected_item.removeClass(\"chzn-default\").find(\"span\").text(data.text);\n            if (this.allow_single_deselect) this.single_deselect_control_build();\n          }\n        }\n      }\n      this.search_field_disabled();\n      this.show_search_field_default();\n      this.search_field_scale();\n      this.search_results.html(content);\n      return this.parsing = false;\n    };\n\n    Chosen.prototype.result_add_group = function(group) {\n      if (!group.disabled) {\n        group.dom_id = this.container_id + \"_g_\" + group.array_index;\n        return '<li id=\"' + group.dom_id + '\" class=\"group-result\">' + $(\"<div />\").text(group.label).html() + '</li>';\n      } else {\n        return \"\";\n      }\n    };\n\n    Chosen.prototype.result_do_highlight = function(el) {\n      var high_bottom, high_top, maxHeight, visible_bottom, visible_top;\n      if (el.length) {\n        this.result_clear_highlight();\n        this.result_highlight = el;\n        this.result_highlight.addClass(\"highlighted\");\n        maxHeight = parseInt(this.search_results.css(\"maxHeight\"), 10);\n        visible_top = this.search_results.scrollTop();\n        visible_bottom = maxHeight + visible_top;\n        high_top = this.result_highlight.position().top + this.search_results.scrollTop();\n        high_bottom = high_top + this.result_highlight.outerHeight();\n        if (high_bottom >= visible_bottom) {\n          return this.search_results.scrollTop((high_bottom - maxHeight) > 0 ? high_bottom - maxHeight : 0);\n        } else if (high_top < visible_top) {\n          return this.search_results.scrollTop(high_top);\n        }\n      }\n    };\n\n    Chosen.prototype.result_clear_highlight = function() {\n      if (this.result_highlight) this.result_highlight.removeClass(\"highlighted\");\n      return this.result_highlight = null;\n    };\n\n    Chosen.prototype.results_show = function() {\n      var dd_top;\n      if (!this.is_multiple) {\n        this.selected_item.addClass(\"chzn-single-with-drop\");\n        if (this.result_single_selected) {\n          this.result_do_highlight(this.result_single_selected);\n        }\n      }\n      dd_top = this.is_multiple ? this.container.height() : this.container.height() - 1;\n      this.dropdown.css({\n        \"top\": dd_top + \"px\",\n        \"left\": 0\n      });\n      this.results_showing = true;\n      this.search_field.focus();\n      this.search_field.val(this.search_field.val());\n      return this.winnow_results();\n    };\n\n    Chosen.prototype.results_hide = function() {\n      if (!this.is_multiple) {\n        this.selected_item.removeClass(\"chzn-single-with-drop\");\n      }\n      this.result_clear_highlight();\n      this.dropdown.css({\n        \"left\": \"-9000px\"\n      });\n      return this.results_showing = false;\n    };\n\n    Chosen.prototype.set_tab_index = function(el) {\n      var ti;\n      if (this.form_field_jq.attr(\"tabindex\")) {\n        ti = this.form_field_jq.attr(\"tabindex\");\n        this.form_field_jq.attr(\"tabindex\", -1);\n        if (this.is_multiple) {\n          return this.search_field.attr(\"tabindex\", ti);\n        } else {\n          this.selected_item.attr(\"tabindex\", ti);\n          return this.search_field.attr(\"tabindex\", -1);\n        }\n      }\n    };\n\n    Chosen.prototype.show_search_field_default = function() {\n      if (this.is_multiple && this.choices < 1 && !this.active_field) {\n        this.search_field.val(this.default_text);\n        return this.search_field.addClass(\"default\");\n      } else {\n        this.search_field.val(\"\");\n        return this.search_field.removeClass(\"default\");\n      }\n    };\n\n    Chosen.prototype.search_results_mouseup = function(evt) {\n      var target;\n      target = $(evt.target).hasClass(\"active-result\") ? $(evt.target) : $(evt.target).parents(\".active-result\").first();\n      if (target.length) {\n        this.result_highlight = target;\n        return this.result_select(evt);\n      }\n    };\n\n    Chosen.prototype.search_results_mouseover = function(evt) {\n      var target;\n      target = $(evt.target).hasClass(\"active-result\") ? $(evt.target) : $(evt.target).parents(\".active-result\").first();\n      if (target) return this.result_do_highlight(target);\n    };\n\n    Chosen.prototype.search_results_mouseout = function(evt) {\n      if ($(evt.target).hasClass(\"active-result\" || $(evt.target).parents('.active-result').first())) {\n        return this.result_clear_highlight();\n      }\n    };\n\n    Chosen.prototype.choices_click = function(evt) {\n      evt.preventDefault();\n      if (this.active_field && !($(evt.target).hasClass(\"search-choice\" || $(evt.target).parents('.search-choice').first)) && !this.results_showing) {\n        return this.results_show();\n      }\n    };\n\n    Chosen.prototype.choice_build = function(item) {\n      var choice_id, link,\n        _this = this;\n      choice_id = this.container_id + \"_c_\" + item.array_index;\n      this.choices += 1;\n      this.search_container.before('<li class=\"search-choice\" id=\"' + choice_id + '\"><span>' + item.html + '</span><a href=\"javascript:void(0)\" class=\"search-choice-close\" rel=\"' + item.array_index + '\"></a></li>');\n      link = $('#' + choice_id).find(\"a\").first();\n      return link.click(function(evt) {\n        return _this.choice_destroy_link_click(evt);\n      });\n    };\n\n    Chosen.prototype.choice_destroy_link_click = function(evt) {\n      evt.preventDefault();\n      if (!this.is_disabled) {\n        this.pending_destroy_click = true;\n        return this.choice_destroy($(evt.target));\n      } else {\n        return evt.stopPropagation;\n      }\n    };\n\n    Chosen.prototype.choice_destroy = function(link) {\n      this.choices -= 1;\n      this.show_search_field_default();\n      if (this.is_multiple && this.choices > 0 && this.search_field.val().length < 1) {\n        this.results_hide();\n      }\n      this.result_deselect(link.attr(\"rel\"));\n      return link.parents('li').first().remove();\n    };\n\n    Chosen.prototype.results_reset = function(evt) {\n      this.form_field.options[0].selected = true;\n      this.selected_item.find(\"span\").text(this.default_text);\n      if (!this.is_multiple) this.selected_item.addClass(\"chzn-default\");\n      this.show_search_field_default();\n      $(evt.target).remove();\n      this.form_field_jq.trigger(\"change\");\n      if (this.active_field) return this.results_hide();\n    };\n\n    Chosen.prototype.result_select = function(evt) {\n      var high, high_id, item, position;\n      if (this.result_highlight) {\n        high = this.result_highlight;\n        high_id = high.attr(\"id\");\n        this.result_clear_highlight();\n        if (this.is_multiple) {\n          this.result_deactivate(high);\n        } else {\n          this.search_results.find(\".result-selected\").removeClass(\"result-selected\");\n          this.result_single_selected = high;\n          this.selected_item.removeClass(\"chzn-default\");\n        }\n        high.addClass(\"result-selected\");\n        position = high_id.substr(high_id.lastIndexOf(\"_\") + 1);\n        item = this.results_data[position];\n        item.selected = true;\n        this.form_field.options[item.options_index].selected = true;\n        if (this.is_multiple) {\n          this.choice_build(item);\n        } else {\n          this.selected_item.find(\"span\").first().text(item.text);\n          if (this.allow_single_deselect) this.single_deselect_control_build();\n        }\n        if (!(evt.metaKey && this.is_multiple)) this.results_hide();\n        this.search_field.val(\"\");\n        this.form_field_jq.trigger(\"change\");\n        return this.search_field_scale();\n      }\n    };\n\n    Chosen.prototype.result_activate = function(el) {\n      return el.addClass(\"active-result\");\n    };\n\n    Chosen.prototype.result_deactivate = function(el) {\n      return el.removeClass(\"active-result\");\n    };\n\n    Chosen.prototype.result_deselect = function(pos) {\n      var result, result_data;\n      result_data = this.results_data[pos];\n      result_data.selected = false;\n      this.form_field.options[result_data.options_index].selected = false;\n      result = $(\"#\" + this.container_id + \"_o_\" + pos);\n      result.removeClass(\"result-selected\").addClass(\"active-result\").show();\n      this.result_clear_highlight();\n      this.winnow_results();\n      this.form_field_jq.trigger(\"change\");\n      return this.search_field_scale();\n    };\n\n    Chosen.prototype.single_deselect_control_build = function() {\n      if (this.allow_single_deselect && this.selected_item.find(\"abbr\").length < 1) {\n        return this.selected_item.find(\"span\").first().after(\"<abbr class=\\\"search-choice-close\\\"></abbr>\");\n      }\n    };\n\n    Chosen.prototype.winnow_results = function() {\n      var found, option, part, parts, regex, regexAnchor, result, result_id, results, searchText, startpos, text, zregex, _i, _j, _len, _len2, _ref;\n      this.no_results_clear();\n      results = 0;\n      searchText = this.search_field.val() === this.default_text ? \"\" : $('<div/>').text($.trim(this.search_field.val())).html();\n      regexAnchor = this.search_contains ? \"\" : \"^\";\n      regex = new RegExp(regexAnchor + searchText.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, \"\\\\$&\"), 'i');\n      zregex = new RegExp(searchText.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, \"\\\\$&\"), 'i');\n      _ref = this.results_data;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        option = _ref[_i];\n        if (!option.disabled && !option.empty) {\n          if (option.group) {\n            $('#' + option.dom_id).css('display', 'none');\n          } else if (!(this.is_multiple && option.selected)) {\n            found = false;\n            result_id = option.dom_id;\n            result = $(\"#\" + result_id);\n            if (regex.test(option.html)) {\n              found = true;\n              results += 1;\n            } else if (option.html.indexOf(\" \") >= 0 || option.html.indexOf(\"[\") === 0) {\n              parts = option.html.replace(/\\[|\\]/g, \"\").split(\" \");\n              if (parts.length) {\n                for (_j = 0, _len2 = parts.length; _j < _len2; _j++) {\n                  part = parts[_j];\n                  if (regex.test(part)) {\n                    found = true;\n                    results += 1;\n                  }\n                }\n              }\n            }\n            if (found) {\n              if (searchText.length) {\n                startpos = option.html.search(zregex);\n                text = option.html.substr(0, startpos + searchText.length) + '</em>' + option.html.substr(startpos + searchText.length);\n                text = text.substr(0, startpos) + '<em>' + text.substr(startpos);\n              } else {\n                text = option.html;\n              }\n              result.html(text);\n              this.result_activate(result);\n              if (option.group_array_index != null) {\n                $(\"#\" + this.results_data[option.group_array_index].dom_id).css('display', 'list-item');\n              }\n            } else {\n              if (this.result_highlight && result_id === this.result_highlight.attr('id')) {\n                this.result_clear_highlight();\n              }\n              this.result_deactivate(result);\n            }\n          }\n        }\n      }\n      if (results < 1 && searchText.length) {\n        return this.no_results(searchText);\n      } else {\n        return this.winnow_results_set_highlight();\n      }\n    };\n\n    Chosen.prototype.winnow_results_clear = function() {\n      var li, lis, _i, _len, _results;\n      this.search_field.val(\"\");\n      lis = this.search_results.find(\"li\");\n      _results = [];\n      for (_i = 0, _len = lis.length; _i < _len; _i++) {\n        li = lis[_i];\n        li = $(li);\n        if (li.hasClass(\"group-result\")) {\n          _results.push(li.css('display', 'auto'));\n        } else if (!this.is_multiple || !li.hasClass(\"result-selected\")) {\n          _results.push(this.result_activate(li));\n        } else {\n          _results.push(void 0);\n        }\n      }\n      return _results;\n    };\n\n    Chosen.prototype.winnow_results_set_highlight = function() {\n      var do_high, selected_results;\n      if (!this.result_highlight) {\n        selected_results = !this.is_multiple ? this.search_results.find(\".result-selected.active-result\") : [];\n        do_high = selected_results.length ? selected_results.first() : this.search_results.find(\".active-result\").first();\n        if (do_high != null) return this.result_do_highlight(do_high);\n      }\n    };\n\n    Chosen.prototype.no_results = function(terms) {\n      var no_results_html;\n      no_results_html = $('<li class=\"no-results\">' + this.results_none_found + ' \"<span></span>\"</li>');\n      no_results_html.find(\"span\").first().html(terms);\n      return this.search_results.append(no_results_html);\n    };\n\n    Chosen.prototype.no_results_clear = function() {\n      return this.search_results.find(\".no-results\").remove();\n    };\n\n    Chosen.prototype.keydown_arrow = function() {\n      var first_active, next_sib;\n      if (!this.result_highlight) {\n        first_active = this.search_results.find(\"li.active-result\").first();\n        if (first_active) this.result_do_highlight($(first_active));\n      } else if (this.results_showing) {\n        next_sib = this.result_highlight.nextAll(\"li.active-result\").first();\n        if (next_sib) this.result_do_highlight(next_sib);\n      }\n      if (!this.results_showing) return this.results_show();\n    };\n\n    Chosen.prototype.keyup_arrow = function() {\n      var prev_sibs;\n      if (!this.results_showing && !this.is_multiple) {\n        return this.results_show();\n      } else if (this.result_highlight) {\n        prev_sibs = this.result_highlight.prevAll(\"li.active-result\");\n        if (prev_sibs.length) {\n          return this.result_do_highlight(prev_sibs.first());\n        } else {\n          if (this.choices > 0) this.results_hide();\n          return this.result_clear_highlight();\n        }\n      }\n    };\n\n    Chosen.prototype.keydown_backstroke = function() {\n      if (this.pending_backstroke) {\n        this.choice_destroy(this.pending_backstroke.find(\"a\").first());\n        return this.clear_backstroke();\n      } else {\n        this.pending_backstroke = this.search_container.siblings(\"li.search-choice\").last();\n        return this.pending_backstroke.addClass(\"search-choice-focus\");\n      }\n    };\n\n    Chosen.prototype.clear_backstroke = function() {\n      if (this.pending_backstroke) {\n        this.pending_backstroke.removeClass(\"search-choice-focus\");\n      }\n      return this.pending_backstroke = null;\n    };\n\n    Chosen.prototype.keydown_checker = function(evt) {\n      var stroke, _ref;\n      stroke = (_ref = evt.which) != null ? _ref : evt.keyCode;\n      this.search_field_scale();\n      if (stroke !== 8 && this.pending_backstroke) this.clear_backstroke();\n      switch (stroke) {\n        case 8:\n          this.backstroke_length = this.search_field.val().length;\n          break;\n        case 9:\n          if (this.results_showing && !this.is_multiple) this.result_select(evt);\n          this.mouse_on_container = false;\n          break;\n        case 13:\n          evt.preventDefault();\n          break;\n        case 38:\n          evt.preventDefault();\n          this.keyup_arrow();\n          break;\n        case 40:\n          this.keydown_arrow();\n          break;\n      }\n    };\n\n    Chosen.prototype.search_field_scale = function() {\n      var dd_top, div, h, style, style_block, styles, w, _i, _len;\n      if (this.is_multiple) {\n        h = 0;\n        w = 0;\n        style_block = \"position:absolute; left: -1000px; top: -1000px; display:none;\";\n        styles = ['font-size', 'font-style', 'font-weight', 'font-family', 'line-height', 'text-transform', 'letter-spacing'];\n        for (_i = 0, _len = styles.length; _i < _len; _i++) {\n          style = styles[_i];\n          style_block += style + \":\" + this.search_field.css(style) + \";\";\n        }\n        div = $('<div />', {\n          'style': style_block\n        });\n        div.text(this.search_field.val());\n        $('body').append(div);\n        w = div.width() + 25;\n        div.remove();\n        if (w > this.f_width - 10) w = this.f_width - 10;\n        this.search_field.css({\n          'width': w + 'px'\n        });\n        dd_top = this.container.height();\n        return this.dropdown.css({\n          \"top\": dd_top + \"px\"\n        });\n      }\n    };\n\n    Chosen.prototype.generate_random_id = function() {\n      var string;\n      string = \"sel\" + this.generate_random_char() + this.generate_random_char() + this.generate_random_char();\n      while ($(\"#\" + string).length > 0) {\n        string += this.generate_random_char();\n      }\n      return string;\n    };\n\n    return Chosen;\n\n  })(AbstractChosen);\n\n  get_side_border_padding = function(elmt) {\n    var side_border_padding;\n    return side_border_padding = elmt.outerWidth() - elmt.width();\n  };\n\n  root.get_side_border_padding = get_side_border_padding;\n\n}).call(this);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/console.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nwindow.console = window.console || {};\n\nvar names = [\"log\", \"debug\", \"info\", \"warn\", \"error\",\n    \"assert\", \"dir\", \"dirxml\", \"group\", \"groupEnd\", \"time\",\n    \"timeEnd\", \"count\", \"trace\", \"profile\", \"profileEnd\"];\n\nvar i = 0;\nvar l = names.length;\nfor( i = 0; i < l; i++ )\n{\n  window.console[names[i]] = window.console[names[i]] || function() {};\n}\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/d3.js",
    "content": "(function(){if (!Date.now) Date.now = function() {\n  return +new Date;\n};\ntry {\n  document.createElement(\"div\").style.setProperty(\"opacity\", 0, \"\");\n} catch (error) {\n  var d3_style_prototype = CSSStyleDeclaration.prototype,\n      d3_style_setProperty = d3_style_prototype.setProperty;\n  d3_style_prototype.setProperty = function(name, value, priority) {\n    d3_style_setProperty.call(this, name, value + \"\", priority);\n  };\n}\nd3 = {version: \"2.8.1\"}; // semver\nfunction d3_class(ctor, properties) {\n  try {\n    for (var key in properties) {\n      Object.defineProperty(ctor.prototype, key, {\n        value: properties[key],\n        enumerable: false\n      });\n    }\n  } catch (e) {\n    ctor.prototype = properties;\n  }\n}\nvar d3_array = d3_arraySlice; // conversion for NodeLists\n\nfunction d3_arrayCopy(pseudoarray) {\n  var i = -1, n = pseudoarray.length, array = [];\n  while (++i < n) array.push(pseudoarray[i]);\n  return array;\n}\n\nfunction d3_arraySlice(pseudoarray) {\n  return Array.prototype.slice.call(pseudoarray);\n}\n\ntry {\n  d3_array(document.documentElement.childNodes)[0].nodeType;\n} catch(e) {\n  d3_array = d3_arrayCopy;\n}\n\nvar d3_arraySubclass = [].__proto__?\n\n// Until ECMAScript supports array subclassing, prototype injection works well.\nfunction(array, prototype) {\n  array.__proto__ = prototype;\n}:\n\n// And if your browser doesn't support __proto__, we'll use direct extension.\nfunction(array, prototype) {\n  for (var property in prototype) array[property] = prototype[property];\n};\nd3.map = function(object) {\n  var map = new d3_Map;\n  for (var key in object) map.set(key, object[key]);\n  return map;\n};\n\nfunction d3_Map() {}\n\nd3_class(d3_Map, {\n  has: function(key) {\n    return d3_map_prefix + key in this;\n  },\n  get: function(key) {\n    return this[d3_map_prefix + key];\n  },\n  set: function(key, value) {\n    return this[d3_map_prefix + key] = value;\n  },\n  remove: function(key) {\n    key = d3_map_prefix + key;\n    return key in this && delete this[key];\n  },\n  keys: function() {\n    var keys = [];\n    this.forEach(function(key) { keys.push(key); });\n    return keys;\n  },\n  values: function() {\n    var values = [];\n    this.forEach(function(key, value) { values.push(value); });\n    return values;\n  },\n  entries: function() {\n    var entries = [];\n    this.forEach(function(key, value) { entries.push({key: key, value: value}); });\n    return entries;\n  },\n  forEach: function(f) {\n    for (var key in this) {\n      if (key.charCodeAt(0) === d3_map_prefixCode) {\n        f.call(this, key.substring(1), this[key]);\n      }\n    }\n  }\n});\n\nvar d3_map_prefix = \"\\0\", // prevent collision with built-ins\n    d3_map_prefixCode = d3_map_prefix.charCodeAt(0);\nfunction d3_this() {\n  return this;\n}\nd3.functor = function(v) {\n  return typeof v === \"function\" ? v : function() { return v; };\n};\n// Copies a variable number of methods from source to target.\nd3.rebind = function(target, source) {\n  var i = 1, n = arguments.length, method;\n  while (++i < n) target[method = arguments[i]] = d3_rebind(target, source, source[method]);\n  return target;\n};\n\n// Method is assumed to be a standard D3 getter-setter:\n// If passed with no arguments, gets the value.\n// If passed with arguments, sets the value and returns the target.\nfunction d3_rebind(target, source, method) {\n  return function() {\n    var value = method.apply(source, arguments);\n    return arguments.length ? target : value;\n  };\n}\nd3.ascending = function(a, b) {\n  return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;\n};\nd3.descending = function(a, b) {\n  return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;\n};\nd3.mean = function(array, f) {\n  var n = array.length,\n      a,\n      m = 0,\n      i = -1,\n      j = 0;\n  if (arguments.length === 1) {\n    while (++i < n) if (d3_number(a = array[i])) m += (a - m) / ++j;\n  } else {\n    while (++i < n) if (d3_number(a = f.call(array, array[i], i))) m += (a - m) / ++j;\n  }\n  return j ? m : undefined;\n};\nd3.median = function(array, f) {\n  if (arguments.length > 1) array = array.map(f);\n  array = array.filter(d3_number);\n  return array.length ? d3.quantile(array.sort(d3.ascending), .5) : undefined;\n};\nd3.min = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = array[i]) != null && a > b) a = b;\n  } else {\n    while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null && a > b) a = b;\n  }\n  return a;\n};\nd3.max = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = array[i]) != null && b > a) a = b;\n  } else {\n    while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null && b > a) a = b;\n  }\n  return a;\n};\nd3.extent = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b,\n      c;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = c = array[i]) == null || a != a)) a = c = undefined;\n    while (++i < n) if ((b = array[i]) != null) {\n      if (a > b) a = b;\n      if (c < b) c = b;\n    }\n  } else {\n    while (++i < n && ((a = c = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null) {\n      if (a > b) a = b;\n      if (c < b) c = b;\n    }\n  }\n  return [a, c];\n};\nd3.random = {\n  normal: function(mean, deviation) {\n    if (arguments.length < 2) deviation = 1;\n    if (arguments.length < 1) mean = 0;\n    return function() {\n      var x, y, r;\n      do {\n        x = Math.random() * 2 - 1;\n        y = Math.random() * 2 - 1;\n        r = x * x + y * y;\n      } while (!r || r > 1);\n      return mean + deviation * x * Math.sqrt(-2 * Math.log(r) / r);\n    };\n  }\n};\nfunction d3_number(x) {\n  return x != null && !isNaN(x);\n}\nd3.sum = function(array, f) {\n  var s = 0,\n      n = array.length,\n      a,\n      i = -1;\n\n  if (arguments.length === 1) {\n    while (++i < n) if (!isNaN(a = +array[i])) s += a;\n  } else {\n    while (++i < n) if (!isNaN(a = +f.call(array, array[i], i))) s += a;\n  }\n\n  return s;\n};\n// R-7 per <http://en.wikipedia.org/wiki/Quantile>\nd3.quantile = function(values, p) {\n  var H = (values.length - 1) * p + 1,\n      h = Math.floor(H),\n      v = values[h - 1],\n      e = H - h;\n  return e ? v + e * (values[h] - v) : v;\n};\nd3.transpose = function(matrix) {\n  return d3.zip.apply(d3, matrix);\n};\nd3.zip = function() {\n  if (!(n = arguments.length)) return [];\n  for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m;) {\n    for (var j = -1, n, zip = zips[i] = new Array(n); ++j < n;) {\n      zip[j] = arguments[j][i];\n    }\n  }\n  return zips;\n};\n\nfunction d3_zipLength(d) {\n  return d.length;\n}\nd3.bisector = function(f) {\n  return {\n    left: function(a, x, lo, hi) {\n      if (arguments.length < 3) lo = 0;\n      if (arguments.length < 4) hi = a.length;\n      while (lo < hi) {\n        var mid = lo + hi >> 1;\n        if (f.call(a, a[mid], mid) < x) lo = mid + 1;\n        else hi = mid;\n      }\n      return lo;\n    },\n    right: function(a, x, lo, hi) {\n      if (arguments.length < 3) lo = 0;\n      if (arguments.length < 4) hi = a.length;\n      while (lo < hi) {\n        var mid = lo + hi >> 1;\n        if (x < f.call(a, a[mid], mid)) hi = mid;\n        else lo = mid + 1;\n      }\n      return lo;\n    }\n  };\n};\n\nvar d3_bisector = d3.bisector(function(d) { return d; });\nd3.bisectLeft = d3_bisector.left;\nd3.bisect = d3.bisectRight = d3_bisector.right;\nd3.first = function(array, f) {\n  var i = 0,\n      n = array.length,\n      a = array[0],\n      b;\n  if (arguments.length === 1) f = d3.ascending;\n  while (++i < n) {\n    if (f.call(array, a, b = array[i]) > 0) {\n      a = b;\n    }\n  }\n  return a;\n};\nd3.last = function(array, f) {\n  var i = 0,\n      n = array.length,\n      a = array[0],\n      b;\n  if (arguments.length === 1) f = d3.ascending;\n  while (++i < n) {\n    if (f.call(array, a, b = array[i]) <= 0) {\n      a = b;\n    }\n  }\n  return a;\n};\nd3.nest = function() {\n  var nest = {},\n      keys = [],\n      sortKeys = [],\n      sortValues,\n      rollup;\n\n  function map(array, depth) {\n    if (depth >= keys.length) return rollup\n        ? rollup.call(nest, array) : (sortValues\n        ? array.sort(sortValues)\n        : array);\n\n    var i = -1,\n        n = array.length,\n        key = keys[depth++],\n        keyValue,\n        object,\n        valuesByKey = new d3_Map,\n        values,\n        o = {};\n\n    while (++i < n) {\n      if (values = valuesByKey.get(keyValue = key(object = array[i]))) {\n        values.push(object);\n      } else {\n        valuesByKey.set(keyValue, [object]);\n      }\n    }\n\n    valuesByKey.forEach(function(keyValue) {\n      o[keyValue] = map(valuesByKey.get(keyValue), depth);\n    });\n\n    return o;\n  }\n\n  function entries(map, depth) {\n    if (depth >= keys.length) return map;\n\n    var a = [],\n        sortKey = sortKeys[depth++],\n        key;\n\n    for (key in map) {\n      a.push({key: key, values: entries(map[key], depth)});\n    }\n\n    if (sortKey) a.sort(function(a, b) {\n      return sortKey(a.key, b.key);\n    });\n\n    return a;\n  }\n\n  nest.map = function(array) {\n    return map(array, 0);\n  };\n\n  nest.entries = function(array) {\n    return entries(map(array, 0), 0);\n  };\n\n  nest.key = function(d) {\n    keys.push(d);\n    return nest;\n  };\n\n  // Specifies the order for the most-recently specified key.\n  // Note: only applies to entries. Map keys are unordered!\n  nest.sortKeys = function(order) {\n    sortKeys[keys.length - 1] = order;\n    return nest;\n  };\n\n  // Specifies the order for leaf values.\n  // Applies to both maps and entries array.\n  nest.sortValues = function(order) {\n    sortValues = order;\n    return nest;\n  };\n\n  nest.rollup = function(f) {\n    rollup = f;\n    return nest;\n  };\n\n  return nest;\n};\nd3.keys = function(map) {\n  var keys = [];\n  for (var key in map) keys.push(key);\n  return keys;\n};\nd3.values = function(map) {\n  var values = [];\n  for (var key in map) values.push(map[key]);\n  return values;\n};\nd3.entries = function(map) {\n  var entries = [];\n  for (var key in map) entries.push({key: key, value: map[key]});\n  return entries;\n};\nd3.permute = function(array, indexes) {\n  var permutes = [],\n      i = -1,\n      n = indexes.length;\n  while (++i < n) permutes[i] = array[indexes[i]];\n  return permutes;\n};\nd3.merge = function(arrays) {\n  return Array.prototype.concat.apply([], arrays);\n};\nd3.split = function(array, f) {\n  var arrays = [],\n      values = [],\n      value,\n      i = -1,\n      n = array.length;\n  if (arguments.length < 2) f = d3_splitter;\n  while (++i < n) {\n    if (f.call(values, value = array[i], i)) {\n      values = [];\n    } else {\n      if (!values.length) arrays.push(values);\n      values.push(value);\n    }\n  }\n  return arrays;\n};\n\nfunction d3_splitter(d) {\n  return d == null;\n}\nfunction d3_collapse(s) {\n  return s.replace(/(^\\s+)|(\\s+$)/g, \"\").replace(/\\s+/g, \" \");\n}\nd3.range = function(start, stop, step) {\n  if (arguments.length < 3) {\n    step = 1;\n    if (arguments.length < 2) {\n      stop = start;\n      start = 0;\n    }\n  }\n  if ((stop - start) / step === Infinity) throw new Error(\"infinite range\");\n  var range = [],\n       k = d3_range_integerScale(Math.abs(step)),\n       i = -1,\n       j;\n  start *= k, stop *= k, step *= k;\n  if (step < 0) while ((j = start + step * ++i) > stop) range.push(j / k);\n  else while ((j = start + step * ++i) < stop) range.push(j / k);\n  return range;\n};\n\nfunction d3_range_integerScale(x) {\n  var k = 1;\n  while (x * k % 1) k *= 10;\n  return k;\n}\nd3.requote = function(s) {\n  return s.replace(d3_requote_re, \"\\\\$&\");\n};\n\nvar d3_requote_re = /[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g;\nd3.round = function(x, n) {\n  return n\n      ? Math.round(x * (n = Math.pow(10, n))) / n\n      : Math.round(x);\n};\nd3.xhr = function(url, mime, callback) {\n  var req = new XMLHttpRequest;\n  if (arguments.length < 3) callback = mime, mime = null;\n  else if (mime && req.overrideMimeType) req.overrideMimeType(mime);\n  req.open(\"GET\", url, true);\n  if (mime) req.setRequestHeader(\"Accept\", mime);\n  req.onreadystatechange = function() {\n    if (req.readyState === 4) callback(req.status < 300 ? req : null);\n  };\n  req.send(null);\n};\nd3.text = function(url, mime, callback) {\n  function ready(req) {\n    callback(req && req.responseText);\n  }\n  if (arguments.length < 3) {\n    callback = mime;\n    mime = null;\n  }\n  d3.xhr(url, mime, ready);\n};\nd3.json = function(url, callback) {\n  d3.text(url, \"application/json\", function(text) {\n    callback(text ? JSON.parse(text) : null);\n  });\n};\nd3.html = function(url, callback) {\n  d3.text(url, \"text/html\", function(text) {\n    if (text != null) { // Treat empty string as valid HTML.\n      var range = document.createRange();\n      range.selectNode(document.body);\n      text = range.createContextualFragment(text);\n    }\n    callback(text);\n  });\n};\nd3.xml = function(url, mime, callback) {\n  function ready(req) {\n    callback(req && req.responseXML);\n  }\n  if (arguments.length < 3) {\n    callback = mime;\n    mime = null;\n  }\n  d3.xhr(url, mime, ready);\n};\nvar d3_nsPrefix = {\n  svg: \"http://www.w3.org/2000/svg\",\n  xhtml: \"http://www.w3.org/1999/xhtml\",\n  xlink: \"http://www.w3.org/1999/xlink\",\n  xml: \"http://www.w3.org/XML/1998/namespace\",\n  xmlns: \"http://www.w3.org/2000/xmlns/\"\n};\n\nd3.ns = {\n  prefix: d3_nsPrefix,\n  qualify: function(name) {\n    var i = name.indexOf(\":\"),\n        prefix = name;\n    if (i >= 0) {\n      prefix = name.substring(0, i);\n      name = name.substring(i + 1);\n    }\n    return d3_nsPrefix.hasOwnProperty(prefix)\n        ? {space: d3_nsPrefix[prefix], local: name}\n        : name;\n  }\n};\nd3.dispatch = function() {\n  var dispatch = new d3_dispatch,\n      i = -1,\n      n = arguments.length;\n  while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);\n  return dispatch;\n};\n\nfunction d3_dispatch() {}\n\nd3_dispatch.prototype.on = function(type, listener) {\n  var i = type.indexOf(\".\"),\n      name = \"\";\n\n  // Extract optional namespace, e.g., \"click.foo\"\n  if (i > 0) {\n    name = type.substring(i + 1);\n    type = type.substring(0, i);\n  }\n\n  return arguments.length < 2\n      ? this[type].on(name)\n      : this[type].on(name, listener);\n};\n\nfunction d3_dispatch_event(dispatch) {\n  var listeners = [],\n      listenerByName = new d3_Map;\n\n  function event() {\n    var z = listeners, // defensive reference\n        i = -1,\n        n = z.length,\n        l;\n    while (++i < n) if (l = z[i].on) l.apply(this, arguments);\n    return dispatch;\n  }\n\n  event.on = function(name, listener) {\n    var l = listenerByName.get(name),\n        i;\n\n    // return the current listener, if any\n    if (arguments.length < 2) return l && l.on;\n\n    // remove the old listener, if any (with copy-on-write)\n    if (l) {\n      l.on = null;\n      listeners = listeners.slice(0, i = listeners.indexOf(l)).concat(listeners.slice(i + 1));\n      listenerByName.remove(name);\n    }\n\n    // add the new listener, if any\n    if (listener) listeners.push(listenerByName.set(name, {on: listener}));\n\n    return dispatch;\n  };\n\n  return event;\n}\n// TODO align\nd3.format = function(specifier) {\n  var match = d3_format_re.exec(specifier),\n      fill = match[1] || \" \",\n      sign = match[3] || \"\",\n      zfill = match[5],\n      width = +match[6],\n      comma = match[7],\n      precision = match[8],\n      type = match[9],\n      scale = 1,\n      suffix = \"\",\n      integer = false;\n\n  if (precision) precision = +precision.substring(1);\n\n  if (zfill) {\n    fill = \"0\"; // TODO align = \"=\";\n    if (comma) width -= Math.floor((width - 1) / 4);\n  }\n\n  switch (type) {\n    case \"n\": comma = true; type = \"g\"; break;\n    case \"%\": scale = 100; suffix = \"%\"; type = \"f\"; break;\n    case \"p\": scale = 100; suffix = \"%\"; type = \"r\"; break;\n    case \"d\": integer = true; precision = 0; break;\n    case \"s\": scale = -1; type = \"r\"; break;\n  }\n\n  // If no precision is specified for r, fallback to general notation.\n  if (type == \"r\" && !precision) type = \"g\";\n\n  type = d3_format_types.get(type) || d3_format_typeDefault;\n\n  return function(value) {\n\n    // Return the empty string for floats formatted as ints.\n    if (integer && (value % 1)) return \"\";\n\n    // Convert negative to positive, and record the sign prefix.\n    var negative = (value < 0) && (value = -value) ? \"\\u2212\" : sign;\n\n    // Apply the scale, computing it from the value's exponent for si format.\n    if (scale < 0) {\n      var prefix = d3.formatPrefix(value, precision);\n      value *= prefix.scale;\n      suffix = prefix.symbol;\n    } else {\n      value *= scale;\n    }\n\n    // Convert to the desired precision.\n    value = type(value, precision);\n\n    // If the fill character is 0, the sign and group is applied after the fill.\n    if (zfill) {\n      var length = value.length + negative.length;\n      if (length < width) value = new Array(width - length + 1).join(fill) + value;\n      if (comma) value = d3_format_group(value);\n      value = negative + value;\n    }\n\n    // Otherwise (e.g., space-filling), the sign and group is applied before.\n    else {\n      if (comma) value = d3_format_group(value);\n      value = negative + value;\n      var length = value.length;\n      if (length < width) value = new Array(width - length + 1).join(fill) + value;\n    }\n\n    return value + suffix;\n  };\n};\n\n// [[fill]align][sign][#][0][width][,][.precision][type]\nvar d3_format_re = /(?:([^{])?([<>=^]))?([+\\- ])?(#)?(0)?([0-9]+)?(,)?(\\.[0-9]+)?([a-zA-Z%])?/;\n\nvar d3_format_types = d3.map({\n  g: function(x, p) { return x.toPrecision(p); },\n  e: function(x, p) { return x.toExponential(p); },\n  f: function(x, p) { return x.toFixed(p); },\n  r: function(x, p) { return d3.round(x, p = d3_format_precision(x, p)).toFixed(Math.max(0, Math.min(20, p))); }\n});\n\nfunction d3_format_precision(x, p) {\n  return p - (x ? 1 + Math.floor(Math.log(x + Math.pow(10, 1 + Math.floor(Math.log(x) / Math.LN10) - p)) / Math.LN10) : 1);\n}\n\nfunction d3_format_typeDefault(x) {\n  return x + \"\";\n}\n\n// Apply comma grouping for thousands.\nfunction d3_format_group(value) {\n  var i = value.lastIndexOf(\".\"),\n      f = i >= 0 ? value.substring(i) : (i = value.length, \"\"),\n      t = [];\n  while (i > 0) t.push(value.substring(i -= 3, i + 3));\n  return t.reverse().join(\",\") + f;\n}\nvar d3_formatPrefixes = [\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"μ\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map(d3_formatPrefix);\n\nd3.formatPrefix = function(value, precision) {\n  var i = 0;\n  if (value) {\n    if (value < 0) value *= -1;\n    if (precision) value = d3.round(value, d3_format_precision(value, precision));\n    i = 1 + Math.floor(1e-12 + Math.log(value) / Math.LN10);\n    i = Math.max(-24, Math.min(24, Math.floor((i <= 0 ? i + 1 : i - 1) / 3) * 3));\n  }\n  return d3_formatPrefixes[8 + i / 3];\n};\n\nfunction d3_formatPrefix(d, i) {\n  return {\n    scale: Math.pow(10, (8 - i) * 3),\n    symbol: d\n  };\n}\n\n/*\n * TERMS OF USE - EASING EQUATIONS\n *\n * Open source under the BSD License.\n *\n * Copyright 2001 Robert Penner\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * - Redistributions of source code must retain the above copyright notice, this\n *   list of conditions and the following disclaimer.\n *\n * - Redistributions in binary form must reproduce the above copyright notice,\n *   this list of conditions and the following disclaimer in the documentation\n *   and/or other materials provided with the distribution.\n *\n * - Neither the name of the author nor the names of contributors may be used to\n *   endorse or promote products derived from this software without specific\n *   prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n */\n\nvar d3_ease_quad = d3_ease_poly(2),\n    d3_ease_cubic = d3_ease_poly(3),\n    d3_ease_default = function() { return d3_ease_identity; };\n\nvar d3_ease = d3.map({\n  linear: d3_ease_default,\n  poly: d3_ease_poly,\n  quad: function() { return d3_ease_quad; },\n  cubic: function() { return d3_ease_cubic; },\n  sin: function() { return d3_ease_sin; },\n  exp: function() { return d3_ease_exp; },\n  circle: function() { return d3_ease_circle; },\n  elastic: d3_ease_elastic,\n  back: d3_ease_back,\n  bounce: function() { return d3_ease_bounce; }\n});\n\nvar d3_ease_mode = d3.map({\n  \"in\": d3_ease_identity,\n  \"out\": d3_ease_reverse,\n  \"in-out\": d3_ease_reflect,\n  \"out-in\": function(f) { return d3_ease_reflect(d3_ease_reverse(f)); }\n});\n\nd3.ease = function(name) {\n  var i = name.indexOf(\"-\"),\n      t = i >= 0 ? name.substring(0, i) : name,\n      m = i >= 0 ? name.substring(i + 1) : \"in\";\n  t = d3_ease.get(t) || d3_ease_default;\n  m = d3_ease_mode.get(m) || d3_ease_identity;\n  return d3_ease_clamp(m(t.apply(null, Array.prototype.slice.call(arguments, 1))));\n};\n\nfunction d3_ease_clamp(f) {\n  return function(t) {\n    return t <= 0 ? 0 : t >= 1 ? 1 : f(t);\n  };\n}\n\nfunction d3_ease_reverse(f) {\n  return function(t) {\n    return 1 - f(1 - t);\n  };\n}\n\nfunction d3_ease_reflect(f) {\n  return function(t) {\n    return .5 * (t < .5 ? f(2 * t) : (2 - f(2 - 2 * t)));\n  };\n}\n\nfunction d3_ease_identity(t) {\n  return t;\n}\n\nfunction d3_ease_poly(e) {\n  return function(t) {\n    return Math.pow(t, e);\n  };\n}\n\nfunction d3_ease_sin(t) {\n  return 1 - Math.cos(t * Math.PI / 2);\n}\n\nfunction d3_ease_exp(t) {\n  return Math.pow(2, 10 * (t - 1));\n}\n\nfunction d3_ease_circle(t) {\n  return 1 - Math.sqrt(1 - t * t);\n}\n\nfunction d3_ease_elastic(a, p) {\n  var s;\n  if (arguments.length < 2) p = 0.45;\n  if (arguments.length < 1) { a = 1; s = p / 4; }\n  else s = p / (2 * Math.PI) * Math.asin(1 / a);\n  return function(t) {\n    return 1 + a * Math.pow(2, 10 * -t) * Math.sin((t - s) * 2 * Math.PI / p);\n  };\n}\n\nfunction d3_ease_back(s) {\n  if (!s) s = 1.70158;\n  return function(t) {\n    return t * t * ((s + 1) * t - s);\n  };\n}\n\nfunction d3_ease_bounce(t) {\n  return t < 1 / 2.75 ? 7.5625 * t * t\n      : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75\n      : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375\n      : 7.5625 * (t -= 2.625 / 2.75) * t + .984375;\n}\nd3.event = null;\n\nfunction d3_eventCancel() {\n  d3.event.stopPropagation();\n  d3.event.preventDefault();\n}\n\nfunction d3_eventSource() {\n  var e = d3.event, s;\n  while (s = e.sourceEvent) e = s;\n  return e;\n}\n\n// Like d3.dispatch, but for custom events abstracting native UI events. These\n// events have a target component (such as a brush), a target element (such as\n// the svg:g element containing the brush) and the standard arguments `d` (the\n// target element's data) and `i` (the selection index of the target element).\nfunction d3_eventDispatch(target) {\n  var dispatch = new d3_dispatch,\n      i = 0,\n      n = arguments.length;\n\n  while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);\n\n  // Creates a dispatch context for the specified `thiz` (typically, the target\n  // DOM element that received the source event) and `argumentz` (typically, the\n  // data `d` and index `i` of the target element). The returned function can be\n  // used to dispatch an event to any registered listeners; the function takes a\n  // single argument as input, being the event to dispatch. The event must have\n  // a \"type\" attribute which corresponds to a type registered in the\n  // constructor. This context will automatically populate the \"sourceEvent\" and\n  // \"target\" attributes of the event, as well as setting the `d3.event` global\n  // for the duration of the notification.\n  dispatch.of = function(thiz, argumentz) {\n    return function(e1) {\n      try {\n        var e0 =\n        e1.sourceEvent = d3.event;\n        e1.target = target;\n        d3.event = e1;\n        dispatch[e1.type].apply(thiz, argumentz);\n      } finally {\n        d3.event = e0;\n      }\n    };\n  };\n\n  return dispatch;\n}\nd3.interpolate = function(a, b) {\n  var i = d3.interpolators.length, f;\n  while (--i >= 0 && !(f = d3.interpolators[i](a, b)));\n  return f;\n};\n\nd3.interpolateNumber = function(a, b) {\n  b -= a;\n  return function(t) { return a + b * t; };\n};\n\nd3.interpolateRound = function(a, b) {\n  b -= a;\n  return function(t) { return Math.round(a + b * t); };\n};\n\nd3.interpolateString = function(a, b) {\n  var m, // current match\n      i, // current index\n      j, // current index (for coallescing)\n      s0 = 0, // start index of current string prefix\n      s1 = 0, // end index of current string prefix\n      s = [], // string constants and placeholders\n      q = [], // number interpolators\n      n, // q.length\n      o;\n\n  // Reset our regular expression!\n  d3_interpolate_number.lastIndex = 0;\n\n  // Find all numbers in b.\n  for (i = 0; m = d3_interpolate_number.exec(b); ++i) {\n    if (m.index) s.push(b.substring(s0, s1 = m.index));\n    q.push({i: s.length, x: m[0]});\n    s.push(null);\n    s0 = d3_interpolate_number.lastIndex;\n  }\n  if (s0 < b.length) s.push(b.substring(s0));\n\n  // Find all numbers in a.\n  for (i = 0, n = q.length; (m = d3_interpolate_number.exec(a)) && i < n; ++i) {\n    o = q[i];\n    if (o.x == m[0]) { // The numbers match, so coallesce.\n      if (o.i) {\n        if (s[o.i + 1] == null) { // This match is followed by another number.\n          s[o.i - 1] += o.x;\n          s.splice(o.i, 1);\n          for (j = i + 1; j < n; ++j) q[j].i--;\n        } else { // This match is followed by a string, so coallesce twice.\n          s[o.i - 1] += o.x + s[o.i + 1];\n          s.splice(o.i, 2);\n          for (j = i + 1; j < n; ++j) q[j].i -= 2;\n        }\n      } else {\n          if (s[o.i + 1] == null) { // This match is followed by another number.\n          s[o.i] = o.x;\n        } else { // This match is followed by a string, so coallesce twice.\n          s[o.i] = o.x + s[o.i + 1];\n          s.splice(o.i + 1, 1);\n          for (j = i + 1; j < n; ++j) q[j].i--;\n        }\n      }\n      q.splice(i, 1);\n      n--;\n      i--;\n    } else {\n      o.x = d3.interpolateNumber(parseFloat(m[0]), parseFloat(o.x));\n    }\n  }\n\n  // Remove any numbers in b not found in a.\n  while (i < n) {\n    o = q.pop();\n    if (s[o.i + 1] == null) { // This match is followed by another number.\n      s[o.i] = o.x;\n    } else { // This match is followed by a string, so coallesce twice.\n      s[o.i] = o.x + s[o.i + 1];\n      s.splice(o.i + 1, 1);\n    }\n    n--;\n  }\n\n  // Special optimization for only a single match.\n  if (s.length === 1) {\n    return s[0] == null ? q[0].x : function() { return b; };\n  }\n\n  // Otherwise, interpolate each of the numbers and rejoin the string.\n  return function(t) {\n    for (i = 0; i < n; ++i) s[(o = q[i]).i] = o.x(t);\n    return s.join(\"\");\n  };\n};\n\nd3.interpolateTransform = function(a, b) {\n  var s = [], // string constants and placeholders\n      q = [], // number interpolators\n      n,\n      A = d3.transform(a),\n      B = d3.transform(b),\n      ta = A.translate,\n      tb = B.translate,\n      ra = A.rotate,\n      rb = B.rotate,\n      wa = A.skew,\n      wb = B.skew,\n      ka = A.scale,\n      kb = B.scale;\n\n  if (ta[0] != tb[0] || ta[1] != tb[1]) {\n    s.push(\"translate(\", null, \",\", null, \")\");\n    q.push({i: 1, x: d3.interpolateNumber(ta[0], tb[0])}, {i: 3, x: d3.interpolateNumber(ta[1], tb[1])});\n  } else if (tb[0] || tb[1]) {\n    s.push(\"translate(\" + tb + \")\");\n  } else {\n    s.push(\"\");\n  }\n\n  if (ra != rb) {\n    q.push({i: s.push(s.pop() + \"rotate(\", null, \")\") - 2, x: d3.interpolateNumber(ra, rb)});\n  } else if (rb) {\n    s.push(s.pop() + \"rotate(\" + rb + \")\");\n  }\n\n  if (wa != wb) {\n    q.push({i: s.push(s.pop() + \"skewX(\", null, \")\") - 2, x: d3.interpolateNumber(wa, wb)});\n  } else if (wb) {\n    s.push(s.pop() + \"skewX(\" + wb + \")\");\n  }\n\n  if (ka[0] != kb[0] || ka[1] != kb[1]) {\n    n = s.push(s.pop() + \"scale(\", null, \",\", null, \")\");\n    q.push({i: n - 4, x: d3.interpolateNumber(ka[0], kb[0])}, {i: n - 2, x: d3.interpolateNumber(ka[1], kb[1])});\n  } else if (kb[0] != 1 || kb[1] != 1) {\n    s.push(s.pop() + \"scale(\" + kb + \")\");\n  }\n\n  n = q.length;\n  return function(t) {\n    var i = -1, o;\n    while (++i < n) s[(o = q[i]).i] = o.x(t);\n    return s.join(\"\");\n  };\n};\n\nd3.interpolateRgb = function(a, b) {\n  a = d3.rgb(a);\n  b = d3.rgb(b);\n  var ar = a.r,\n      ag = a.g,\n      ab = a.b,\n      br = b.r - ar,\n      bg = b.g - ag,\n      bb = b.b - ab;\n  return function(t) {\n    return \"#\"\n        + d3_rgb_hex(Math.round(ar + br * t))\n        + d3_rgb_hex(Math.round(ag + bg * t))\n        + d3_rgb_hex(Math.round(ab + bb * t));\n  };\n};\n\n// interpolates HSL space, but outputs RGB string (for compatibility)\nd3.interpolateHsl = function(a, b) {\n  a = d3.hsl(a);\n  b = d3.hsl(b);\n  var h0 = a.h,\n      s0 = a.s,\n      l0 = a.l,\n      h1 = b.h - h0,\n      s1 = b.s - s0,\n      l1 = b.l - l0;\n  return function(t) {\n    return d3_hsl_rgb(h0 + h1 * t, s0 + s1 * t, l0 + l1 * t).toString();\n  };\n};\n\nd3.interpolateArray = function(a, b) {\n  var x = [],\n      c = [],\n      na = a.length,\n      nb = b.length,\n      n0 = Math.min(a.length, b.length),\n      i;\n  for (i = 0; i < n0; ++i) x.push(d3.interpolate(a[i], b[i]));\n  for (; i < na; ++i) c[i] = a[i];\n  for (; i < nb; ++i) c[i] = b[i];\n  return function(t) {\n    for (i = 0; i < n0; ++i) c[i] = x[i](t);\n    return c;\n  };\n};\n\nd3.interpolateObject = function(a, b) {\n  var i = {},\n      c = {},\n      k;\n  for (k in a) {\n    if (k in b) {\n      i[k] = d3_interpolateByName(k)(a[k], b[k]);\n    } else {\n      c[k] = a[k];\n    }\n  }\n  for (k in b) {\n    if (!(k in a)) {\n      c[k] = b[k];\n    }\n  }\n  return function(t) {\n    for (k in i) c[k] = i[k](t);\n    return c;\n  };\n}\n\nvar d3_interpolate_number = /[-+]?(?:\\d*\\.?\\d+)(?:[eE][-+]?\\d+)?/g;\n\nfunction d3_interpolateByName(n) {\n  return n == \"transform\"\n      ? d3.interpolateTransform\n      : d3.interpolate;\n}\n\nd3.interpolators = [\n  d3.interpolateObject,\n  function(a, b) { return (b instanceof Array) && d3.interpolateArray(a, b); },\n  function(a, b) { return (typeof a === \"string\" || typeof b === \"string\") && d3.interpolateString(a + \"\", b + \"\"); },\n  function(a, b) { return (typeof b === \"string\" ? d3_rgb_names.has(b) || /^(#|rgb\\(|hsl\\()/.test(b) : b instanceof d3_Rgb || b instanceof d3_Hsl) && d3.interpolateRgb(a, b); },\n  function(a, b) { return !isNaN(a = +a) && !isNaN(b = +b) && d3.interpolateNumber(a, b); }\n];\nfunction d3_uninterpolateNumber(a, b) {\n  b = b - (a = +a) ? 1 / (b - a) : 0;\n  return function(x) { return (x - a) * b; };\n}\n\nfunction d3_uninterpolateClamp(a, b) {\n  b = b - (a = +a) ? 1 / (b - a) : 0;\n  return function(x) { return Math.max(0, Math.min(1, (x - a) * b)); };\n}\nd3.rgb = function(r, g, b) {\n  return arguments.length === 1\n      ? (r instanceof d3_Rgb ? d3_rgb(r.r, r.g, r.b)\n      : d3_rgb_parse(\"\" + r, d3_rgb, d3_hsl_rgb))\n      : d3_rgb(~~r, ~~g, ~~b);\n};\n\nfunction d3_rgb(r, g, b) {\n  return new d3_Rgb(r, g, b);\n}\n\nfunction d3_Rgb(r, g, b) {\n  this.r = r;\n  this.g = g;\n  this.b = b;\n}\n\nd3_Rgb.prototype.brighter = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  var r = this.r,\n      g = this.g,\n      b = this.b,\n      i = 30;\n  if (!r && !g && !b) return d3_rgb(i, i, i);\n  if (r && r < i) r = i;\n  if (g && g < i) g = i;\n  if (b && b < i) b = i;\n  return d3_rgb(\n      Math.min(255, Math.floor(r / k)),\n      Math.min(255, Math.floor(g / k)),\n      Math.min(255, Math.floor(b / k)));\n};\n\nd3_Rgb.prototype.darker = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_rgb(\n      Math.floor(k * this.r),\n      Math.floor(k * this.g),\n      Math.floor(k * this.b));\n};\n\nd3_Rgb.prototype.hsl = function() {\n  return d3_rgb_hsl(this.r, this.g, this.b);\n};\n\nd3_Rgb.prototype.toString = function() {\n  return \"#\" + d3_rgb_hex(this.r) + d3_rgb_hex(this.g) + d3_rgb_hex(this.b);\n};\n\nfunction d3_rgb_hex(v) {\n  return v < 0x10\n      ? \"0\" + Math.max(0, v).toString(16)\n      : Math.min(255, v).toString(16);\n}\n\nfunction d3_rgb_parse(format, rgb, hsl) {\n  var r = 0, // red channel; int in [0, 255]\n      g = 0, // green channel; int in [0, 255]\n      b = 0, // blue channel; int in [0, 255]\n      m1, // CSS color specification match\n      m2, // CSS color specification type (e.g., rgb)\n      name;\n\n  /* Handle hsl, rgb. */\n  m1 = /([a-z]+)\\((.*)\\)/i.exec(format);\n  if (m1) {\n    m2 = m1[2].split(\",\");\n    switch (m1[1]) {\n      case \"hsl\": {\n        return hsl(\n          parseFloat(m2[0]), // degrees\n          parseFloat(m2[1]) / 100, // percentage\n          parseFloat(m2[2]) / 100 // percentage\n        );\n      }\n      case \"rgb\": {\n        return rgb(\n          d3_rgb_parseNumber(m2[0]),\n          d3_rgb_parseNumber(m2[1]),\n          d3_rgb_parseNumber(m2[2])\n        );\n      }\n    }\n  }\n\n  /* Named colors. */\n  if (name = d3_rgb_names.get(format)) return rgb(name.r, name.g, name.b);\n\n  /* Hexadecimal colors: #rgb and #rrggbb. */\n  if (format != null && format.charAt(0) === \"#\") {\n    if (format.length === 4) {\n      r = format.charAt(1); r += r;\n      g = format.charAt(2); g += g;\n      b = format.charAt(3); b += b;\n    } else if (format.length === 7) {\n      r = format.substring(1, 3);\n      g = format.substring(3, 5);\n      b = format.substring(5, 7);\n    }\n    r = parseInt(r, 16);\n    g = parseInt(g, 16);\n    b = parseInt(b, 16);\n  }\n\n  return rgb(r, g, b);\n}\n\nfunction d3_rgb_hsl(r, g, b) {\n  var min = Math.min(r /= 255, g /= 255, b /= 255),\n      max = Math.max(r, g, b),\n      d = max - min,\n      h,\n      s,\n      l = (max + min) / 2;\n  if (d) {\n    s = l < .5 ? d / (max + min) : d / (2 - max - min);\n    if (r == max) h = (g - b) / d + (g < b ? 6 : 0);\n    else if (g == max) h = (b - r) / d + 2;\n    else h = (r - g) / d + 4;\n    h *= 60;\n  } else {\n    s = h = 0;\n  }\n  return d3_hsl(h, s, l);\n}\n\nfunction d3_rgb_parseNumber(c) { // either integer or percentage\n  var f = parseFloat(c);\n  return c.charAt(c.length - 1) === \"%\" ? Math.round(f * 2.55) : f;\n}\n\nvar d3_rgb_names = d3.map({\n  aliceblue: \"#f0f8ff\",\n  antiquewhite: \"#faebd7\",\n  aqua: \"#00ffff\",\n  aquamarine: \"#7fffd4\",\n  azure: \"#f0ffff\",\n  beige: \"#f5f5dc\",\n  bisque: \"#ffe4c4\",\n  black: \"#000000\",\n  blanchedalmond: \"#ffebcd\",\n  blue: \"#0000ff\",\n  blueviolet: \"#8a2be2\",\n  brown: \"#a52a2a\",\n  burlywood: \"#deb887\",\n  cadetblue: \"#5f9ea0\",\n  chartreuse: \"#7fff00\",\n  chocolate: \"#d2691e\",\n  coral: \"#ff7f50\",\n  cornflowerblue: \"#6495ed\",\n  cornsilk: \"#fff8dc\",\n  crimson: \"#dc143c\",\n  cyan: \"#00ffff\",\n  darkblue: \"#00008b\",\n  darkcyan: \"#008b8b\",\n  darkgoldenrod: \"#b8860b\",\n  darkgray: \"#a9a9a9\",\n  darkgreen: \"#006400\",\n  darkgrey: \"#a9a9a9\",\n  darkkhaki: \"#bdb76b\",\n  darkmagenta: \"#8b008b\",\n  darkolivegreen: \"#556b2f\",\n  darkorange: \"#ff8c00\",\n  darkorchid: \"#9932cc\",\n  darkred: \"#8b0000\",\n  darksalmon: \"#e9967a\",\n  darkseagreen: \"#8fbc8f\",\n  darkslateblue: \"#483d8b\",\n  darkslategray: \"#2f4f4f\",\n  darkslategrey: \"#2f4f4f\",\n  darkturquoise: \"#00ced1\",\n  darkviolet: \"#9400d3\",\n  deeppink: \"#ff1493\",\n  deepskyblue: \"#00bfff\",\n  dimgray: \"#696969\",\n  dimgrey: \"#696969\",\n  dodgerblue: \"#1e90ff\",\n  firebrick: \"#b22222\",\n  floralwhite: \"#fffaf0\",\n  forestgreen: \"#228b22\",\n  fuchsia: \"#ff00ff\",\n  gainsboro: \"#dcdcdc\",\n  ghostwhite: \"#f8f8ff\",\n  gold: \"#ffd700\",\n  goldenrod: \"#daa520\",\n  gray: \"#808080\",\n  green: \"#008000\",\n  greenyellow: \"#adff2f\",\n  grey: \"#808080\",\n  honeydew: \"#f0fff0\",\n  hotpink: \"#ff69b4\",\n  indianred: \"#cd5c5c\",\n  indigo: \"#4b0082\",\n  ivory: \"#fffff0\",\n  khaki: \"#f0e68c\",\n  lavender: \"#e6e6fa\",\n  lavenderblush: \"#fff0f5\",\n  lawngreen: \"#7cfc00\",\n  lemonchiffon: \"#fffacd\",\n  lightblue: \"#add8e6\",\n  lightcoral: \"#f08080\",\n  lightcyan: \"#e0ffff\",\n  lightgoldenrodyellow: \"#fafad2\",\n  lightgray: \"#d3d3d3\",\n  lightgreen: \"#90ee90\",\n  lightgrey: \"#d3d3d3\",\n  lightpink: \"#ffb6c1\",\n  lightsalmon: \"#ffa07a\",\n  lightseagreen: \"#20b2aa\",\n  lightskyblue: \"#87cefa\",\n  lightslategray: \"#778899\",\n  lightslategrey: \"#778899\",\n  lightsteelblue: \"#b0c4de\",\n  lightyellow: \"#ffffe0\",\n  lime: \"#00ff00\",\n  limegreen: \"#32cd32\",\n  linen: \"#faf0e6\",\n  magenta: \"#ff00ff\",\n  maroon: \"#800000\",\n  mediumaquamarine: \"#66cdaa\",\n  mediumblue: \"#0000cd\",\n  mediumorchid: \"#ba55d3\",\n  mediumpurple: \"#9370db\",\n  mediumseagreen: \"#3cb371\",\n  mediumslateblue: \"#7b68ee\",\n  mediumspringgreen: \"#00fa9a\",\n  mediumturquoise: \"#48d1cc\",\n  mediumvioletred: \"#c71585\",\n  midnightblue: \"#191970\",\n  mintcream: \"#f5fffa\",\n  mistyrose: \"#ffe4e1\",\n  moccasin: \"#ffe4b5\",\n  navajowhite: \"#ffdead\",\n  navy: \"#000080\",\n  oldlace: \"#fdf5e6\",\n  olive: \"#808000\",\n  olivedrab: \"#6b8e23\",\n  orange: \"#ffa500\",\n  orangered: \"#ff4500\",\n  orchid: \"#da70d6\",\n  palegoldenrod: \"#eee8aa\",\n  palegreen: \"#98fb98\",\n  paleturquoise: \"#afeeee\",\n  palevioletred: \"#db7093\",\n  papayawhip: \"#ffefd5\",\n  peachpuff: \"#ffdab9\",\n  peru: \"#cd853f\",\n  pink: \"#ffc0cb\",\n  plum: \"#dda0dd\",\n  powderblue: \"#b0e0e6\",\n  purple: \"#800080\",\n  red: \"#ff0000\",\n  rosybrown: \"#bc8f8f\",\n  royalblue: \"#4169e1\",\n  saddlebrown: \"#8b4513\",\n  salmon: \"#fa8072\",\n  sandybrown: \"#f4a460\",\n  seagreen: \"#2e8b57\",\n  seashell: \"#fff5ee\",\n  sienna: \"#a0522d\",\n  silver: \"#c0c0c0\",\n  skyblue: \"#87ceeb\",\n  slateblue: \"#6a5acd\",\n  slategray: \"#708090\",\n  slategrey: \"#708090\",\n  snow: \"#fffafa\",\n  springgreen: \"#00ff7f\",\n  steelblue: \"#4682b4\",\n  tan: \"#d2b48c\",\n  teal: \"#008080\",\n  thistle: \"#d8bfd8\",\n  tomato: \"#ff6347\",\n  turquoise: \"#40e0d0\",\n  violet: \"#ee82ee\",\n  wheat: \"#f5deb3\",\n  white: \"#ffffff\",\n  whitesmoke: \"#f5f5f5\",\n  yellow: \"#ffff00\",\n  yellowgreen: \"#9acd32\"\n});\n\nd3_rgb_names.forEach(function(key, value) {\n  d3_rgb_names.set(key, d3_rgb_parse(value, d3_rgb, d3_hsl_rgb));\n});\nd3.hsl = function(h, s, l) {\n  return arguments.length === 1\n      ? (h instanceof d3_Hsl ? d3_hsl(h.h, h.s, h.l)\n      : d3_rgb_parse(\"\" + h, d3_rgb_hsl, d3_hsl))\n      : d3_hsl(+h, +s, +l);\n};\n\nfunction d3_hsl(h, s, l) {\n  return new d3_Hsl(h, s, l);\n}\n\nfunction d3_Hsl(h, s, l) {\n  this.h = h;\n  this.s = s;\n  this.l = l;\n}\n\nd3_Hsl.prototype.brighter = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_hsl(this.h, this.s, this.l / k);\n};\n\nd3_Hsl.prototype.darker = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_hsl(this.h, this.s, k * this.l);\n};\n\nd3_Hsl.prototype.rgb = function() {\n  return d3_hsl_rgb(this.h, this.s, this.l);\n};\n\nd3_Hsl.prototype.toString = function() {\n  return this.rgb().toString();\n};\n\nfunction d3_hsl_rgb(h, s, l) {\n  var m1,\n      m2;\n\n  /* Some simple corrections for h, s and l. */\n  h = h % 360; if (h < 0) h += 360;\n  s = s < 0 ? 0 : s > 1 ? 1 : s;\n  l = l < 0 ? 0 : l > 1 ? 1 : l;\n\n  /* From FvD 13.37, CSS Color Module Level 3 */\n  m2 = l <= .5 ? l * (1 + s) : l + s - l * s;\n  m1 = 2 * l - m2;\n\n  function v(h) {\n    if (h > 360) h -= 360;\n    else if (h < 0) h += 360;\n    if (h < 60) return m1 + (m2 - m1) * h / 60;\n    if (h < 180) return m2;\n    if (h < 240) return m1 + (m2 - m1) * (240 - h) / 60;\n    return m1;\n  }\n\n  function vv(h) {\n    return Math.round(v(h) * 255);\n  }\n\n  return d3_rgb(vv(h + 120), vv(h), vv(h - 120));\n}\nfunction d3_selection(groups) {\n  d3_arraySubclass(groups, d3_selectionPrototype);\n  return groups;\n}\n\nvar d3_select = function(s, n) { return n.querySelector(s); },\n    d3_selectAll = function(s, n) { return n.querySelectorAll(s); },\n    d3_selectRoot = document.documentElement,\n    d3_selectMatcher = d3_selectRoot.matchesSelector || d3_selectRoot.webkitMatchesSelector || d3_selectRoot.mozMatchesSelector || d3_selectRoot.msMatchesSelector || d3_selectRoot.oMatchesSelector,\n    d3_selectMatches = function(n, s) { return d3_selectMatcher.call(n, s); };\n\n// Prefer Sizzle, if available.\nif (typeof Sizzle === \"function\") {\n  d3_select = function(s, n) { return Sizzle(s, n)[0]; };\n  d3_selectAll = function(s, n) { return Sizzle.uniqueSort(Sizzle(s, n)); };\n  d3_selectMatches = Sizzle.matchesSelector;\n}\n\nvar d3_selectionPrototype = [];\n\nd3.selection = function() {\n  return d3_selectionRoot;\n};\n\nd3.selection.prototype = d3_selectionPrototype;\nd3_selectionPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      group,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selector(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = (group = this[j]).parentNode;\n    for (var i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroup.push(subnode = selector.call(node, node.__data__, i));\n        if (subnode && \"__data__\" in node) subnode.__data__ = node.__data__;\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_selector(selector) {\n  return function() {\n    return d3_select(selector, this);\n  };\n}\nd3_selectionPrototype.selectAll = function(selector) {\n  var subgroups = [],\n      subgroup,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selectorAll(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroups.push(subgroup = d3_array(selector.call(node, node.__data__, i)));\n        subgroup.parentNode = node;\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_selectorAll(selector) {\n  return function() {\n    return d3_selectAll(selector, this);\n  };\n}\nd3_selectionPrototype.attr = function(name, value) {\n  name = d3.ns.qualify(name);\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) {\n    var node = this.node();\n    return name.local\n        ? node.getAttributeNS(name.space, name.local)\n        : node.getAttribute(name);\n  }\n\n  function attrNull() {\n    this.removeAttribute(name);\n  }\n\n  function attrNullNS() {\n    this.removeAttributeNS(name.space, name.local);\n  }\n\n  function attrConstant() {\n    this.setAttribute(name, value);\n  }\n\n  function attrConstantNS() {\n    this.setAttributeNS(name.space, name.local, value);\n  }\n\n  function attrFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.removeAttribute(name);\n    else this.setAttribute(name, x);\n  }\n\n  function attrFunctionNS() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.removeAttributeNS(name.space, name.local);\n    else this.setAttributeNS(name.space, name.local, x);\n  }\n\n  return this.each(value == null\n      ? (name.local ? attrNullNS : attrNull) : (typeof value === \"function\"\n      ? (name.local ? attrFunctionNS : attrFunction)\n      : (name.local ? attrConstantNS : attrConstant)));\n};\nd3_selectionPrototype.classed = function(name, value) {\n  var names = name.split(d3_selection_classedWhitespace),\n      n = names.length,\n      i = -1;\n  if (arguments.length > 1) {\n    while (++i < n) d3_selection_classed.call(this, names[i], value);\n    return this;\n  } else {\n    while (++i < n) if (!d3_selection_classed.call(this, names[i])) return false;\n    return true;\n  }\n};\n\nvar d3_selection_classedWhitespace = /\\s+/g;\n\nfunction d3_selection_classed(name, value) {\n  var re = new RegExp(\"(^|\\\\s+)\" + d3.requote(name) + \"(\\\\s+|$)\", \"g\");\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) {\n    var node = this.node();\n    if (c = node.classList) return c.contains(name);\n    var c = node.className;\n    re.lastIndex = 0;\n    return re.test(c.baseVal != null ? c.baseVal : c);\n  }\n\n  function classedAdd() {\n    if (c = this.classList) return c.add(name);\n    var c = this.className,\n        cb = c.baseVal != null,\n        cv = cb ? c.baseVal : c;\n    re.lastIndex = 0;\n    if (!re.test(cv)) {\n      cv = d3_collapse(cv + \" \" + name);\n      if (cb) c.baseVal = cv;\n      else this.className = cv;\n    }\n  }\n\n  function classedRemove() {\n    if (c = this.classList) return c.remove(name);\n    var c = this.className,\n        cb = c.baseVal != null,\n        cv = cb ? c.baseVal : c;\n    cv = d3_collapse(cv.replace(re, \" \"));\n    if (cb) c.baseVal = cv;\n    else this.className = cv;\n  }\n\n  function classedFunction() {\n    (value.apply(this, arguments)\n        ? classedAdd\n        : classedRemove).call(this);\n  }\n\n  return this.each(typeof value === \"function\"\n      ? classedFunction : value\n      ? classedAdd\n      : classedRemove);\n}\nd3_selectionPrototype.style = function(name, value, priority) {\n  if (arguments.length < 3) priority = \"\";\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) return window\n      .getComputedStyle(this.node(), null)\n      .getPropertyValue(name);\n\n  function styleNull() {\n    this.style.removeProperty(name);\n  }\n\n  function styleConstant() {\n    this.style.setProperty(name, value, priority);\n  }\n\n  function styleFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.style.removeProperty(name);\n    else this.style.setProperty(name, x, priority);\n  }\n\n  return this.each(value == null\n      ? styleNull : (typeof value === \"function\"\n      ? styleFunction : styleConstant));\n};\nd3_selectionPrototype.property = function(name, value) {\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) return this.node()[name];\n\n  function propertyNull() {\n    delete this[name];\n  }\n\n  function propertyConstant() {\n    this[name] = value;\n  }\n\n  function propertyFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) delete this[name];\n    else this[name] = x;\n  }\n\n  return this.each(value == null\n      ? propertyNull : (typeof value === \"function\"\n      ? propertyFunction : propertyConstant));\n};\nd3_selectionPrototype.text = function(value) {\n  return arguments.length < 1\n      ? this.node().textContent : this.each(typeof value === \"function\"\n      ? function() { var v = value.apply(this, arguments); this.textContent = v == null ? \"\" : v; } : value == null\n      ? function() { this.textContent = \"\"; }\n      : function() { this.textContent = value; });\n};\nd3_selectionPrototype.html = function(value) {\n  return arguments.length < 1\n      ? this.node().innerHTML : this.each(typeof value === \"function\"\n      ? function() { var v = value.apply(this, arguments); this.innerHTML = v == null ? \"\" : v; } : value == null\n      ? function() { this.innerHTML = \"\"; }\n      : function() { this.innerHTML = value; });\n};\n// TODO append(node)?\n// TODO append(function)?\nd3_selectionPrototype.append = function(name) {\n  name = d3.ns.qualify(name);\n\n  function append() {\n    return this.appendChild(document.createElementNS(this.namespaceURI, name));\n  }\n\n  function appendNS() {\n    return this.appendChild(document.createElementNS(name.space, name.local));\n  }\n\n  return this.select(name.local ? appendNS : append);\n};\n// TODO insert(node, function)?\n// TODO insert(function, string)?\n// TODO insert(function, function)?\nd3_selectionPrototype.insert = function(name, before) {\n  name = d3.ns.qualify(name);\n\n  function insert() {\n    return this.insertBefore(\n        document.createElementNS(this.namespaceURI, name),\n        d3_select(before, this));\n  }\n\n  function insertNS() {\n    return this.insertBefore(\n        document.createElementNS(name.space, name.local),\n        d3_select(before, this));\n  }\n\n  return this.select(name.local ? insertNS : insert);\n};\n// TODO remove(selector)?\n// TODO remove(node)?\n// TODO remove(function)?\nd3_selectionPrototype.remove = function() {\n  return this.each(function() {\n    var parent = this.parentNode;\n    if (parent) parent.removeChild(this);\n  });\n};\nd3_selectionPrototype.data = function(value, key) {\n  var i = -1,\n      n = this.length,\n      group,\n      node;\n\n  // If no value is specified, return the first value.\n  if (!arguments.length) {\n    value = new Array(n = (group = this[0]).length);\n    while (++i < n) {\n      if (node = group[i]) {\n        value[i] = node.__data__;\n      }\n    }\n    return value;\n  }\n\n  function bind(group, groupData) {\n    var i,\n        n = group.length,\n        m = groupData.length,\n        n0 = Math.min(n, m),\n        n1 = Math.max(n, m),\n        updateNodes = [],\n        enterNodes = [],\n        exitNodes = [],\n        node,\n        nodeData;\n\n    if (key) {\n      var nodeByKeyValue = new d3_Map,\n          keyValues = [],\n          keyValue,\n          j = groupData.length;\n\n      for (i = -1; ++i < n;) {\n        keyValue = key.call(node = group[i], node.__data__, i);\n        if (nodeByKeyValue.has(keyValue)) {\n          exitNodes[j++] = node; // duplicate key\n        } else {\n          nodeByKeyValue.set(keyValue, node);\n        }\n        keyValues.push(keyValue);\n      }\n\n      for (i = -1; ++i < m;) {\n        keyValue = key.call(groupData, nodeData = groupData[i], i)\n        if (nodeByKeyValue.has(keyValue)) {\n          updateNodes[i] = node = nodeByKeyValue.get(keyValue);\n          node.__data__ = nodeData;\n          enterNodes[i] = exitNodes[i] = null;\n        } else {\n          enterNodes[i] = d3_selection_dataNode(nodeData);\n          updateNodes[i] = exitNodes[i] = null;\n        }\n        nodeByKeyValue.remove(keyValue);\n      }\n\n      for (i = -1; ++i < n;) {\n        if (nodeByKeyValue.has(keyValues[i])) {\n          exitNodes[i] = group[i];\n        }\n      }\n    } else {\n      for (i = -1; ++i < n0;) {\n        node = group[i];\n        nodeData = groupData[i];\n        if (node) {\n          node.__data__ = nodeData;\n          updateNodes[i] = node;\n          enterNodes[i] = exitNodes[i] = null;\n        } else {\n          enterNodes[i] = d3_selection_dataNode(nodeData);\n          updateNodes[i] = exitNodes[i] = null;\n        }\n      }\n      for (; i < m; ++i) {\n        enterNodes[i] = d3_selection_dataNode(groupData[i]);\n        updateNodes[i] = exitNodes[i] = null;\n      }\n      for (; i < n1; ++i) {\n        exitNodes[i] = group[i];\n        enterNodes[i] = updateNodes[i] = null;\n      }\n    }\n\n    enterNodes.update\n        = updateNodes;\n\n    enterNodes.parentNode\n        = updateNodes.parentNode\n        = exitNodes.parentNode\n        = group.parentNode;\n\n    enter.push(enterNodes);\n    update.push(updateNodes);\n    exit.push(exitNodes);\n  }\n\n  var enter = d3_selection_enter([]),\n      update = d3_selection([]),\n      exit = d3_selection([]);\n\n  if (typeof value === \"function\") {\n    while (++i < n) {\n      bind(group = this[i], value.call(group, group.parentNode.__data__, i));\n    }\n  } else {\n    while (++i < n) {\n      bind(group = this[i], value);\n    }\n  }\n\n  update.enter = function() { return enter; };\n  update.exit = function() { return exit; };\n  return update;\n};\n\nfunction d3_selection_dataNode(data) {\n  return {__data__: data};\n}\nd3_selectionPrototype.datum =\nd3_selectionPrototype.map = function(value) {\n  return arguments.length < 1\n      ? this.property(\"__data__\")\n      : this.property(\"__data__\", value);\n};\nd3_selectionPrototype.filter = function(filter) {\n  var subgroups = [],\n      subgroup,\n      group,\n      node;\n\n  if (typeof filter !== \"function\") filter = d3_selection_filter(filter);\n\n  for (var j = 0, m = this.length; j < m; j++) {\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = (group = this[j]).parentNode;\n    for (var i = 0, n = group.length; i < n; i++) {\n      if ((node = group[i]) && filter.call(node, node.__data__, i)) {\n        subgroup.push(node);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_filter(selector) {\n  return function() {\n    return d3_selectMatches(this, selector);\n  };\n}\nd3_selectionPrototype.order = function() {\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = group.length - 1, next = group[i], node; --i >= 0;) {\n      if (node = group[i]) {\n        if (next && next !== node.nextSibling) next.parentNode.insertBefore(node, next);\n        next = node;\n      }\n    }\n  }\n  return this;\n};\nd3_selectionPrototype.sort = function(comparator) {\n  comparator = d3_selection_sortComparator.apply(this, arguments);\n  for (var j = -1, m = this.length; ++j < m;) this[j].sort(comparator);\n  return this.order();\n};\n\nfunction d3_selection_sortComparator(comparator) {\n  if (!arguments.length) comparator = d3.ascending;\n  return function(a, b) {\n    return comparator(a && a.__data__, b && b.__data__);\n  };\n}\n// type can be namespaced, e.g., \"click.foo\"\n// listener can be null for removal\nd3_selectionPrototype.on = function(type, listener, capture) {\n  if (arguments.length < 3) capture = false;\n\n  // parse the type specifier\n  var name = \"__on\" + type, i = type.indexOf(\".\");\n  if (i > 0) type = type.substring(0, i);\n\n  // if called with only one argument, return the current listener\n  if (arguments.length < 2) return (i = this.node()[name]) && i._;\n\n  // remove the old event listener, and add the new event listener\n  return this.each(function(d, i) {\n    var node = this,\n        o = node[name];\n\n    // remove the old listener, if any (using the previously-set capture)\n    if (o) {\n      node.removeEventListener(type, o, o.$);\n      delete node[name];\n    }\n\n    // add the new listener, if any (remembering the capture flag)\n    if (listener) {\n      node.addEventListener(type, node[name] = l, l.$ = capture);\n      l._ = listener; // stash the unwrapped listener for get\n    }\n\n    // wrapped event listener that preserves i\n    function l(e) {\n      var o = d3.event; // Events can be reentrant (e.g., focus).\n      d3.event = e;\n      try {\n        listener.call(node, node.__data__, i);\n      } finally {\n        d3.event = o;\n      }\n    }\n  });\n};\nd3_selectionPrototype.each = function(callback) {\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      var node = group[i];\n      if (node) callback.call(node, node.__data__, i, j);\n    }\n  }\n  return this;\n};\n//\n// Note: assigning to the arguments array simultaneously changes the value of\n// the corresponding argument!\n//\n// TODO The `this` argument probably shouldn't be the first argument to the\n// callback, anyway, since it's redundant. However, that will require a major\n// version bump due to backwards compatibility, so I'm not changing it right\n// away.\n//\nd3_selectionPrototype.call = function(callback) {\n  callback.apply(this, (arguments[0] = this, arguments));\n  return this;\n};\nd3_selectionPrototype.empty = function() {\n  return !this.node();\n};\nd3_selectionPrototype.node = function(callback) {\n  for (var j = 0, m = this.length; j < m; j++) {\n    for (var group = this[j], i = 0, n = group.length; i < n; i++) {\n      var node = group[i];\n      if (node) return node;\n    }\n  }\n  return null;\n};\nd3_selectionPrototype.transition = function() {\n  var subgroups = [],\n      subgroup,\n      node;\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      subgroup.push((node = group[i]) ? {node: node, delay: d3_transitionDelay, duration: d3_transitionDuration} : null);\n    }\n  }\n\n  return d3_transition(subgroups, d3_transitionId || ++d3_transitionNextId, Date.now());\n};\nvar d3_selectionRoot = d3_selection([[document]]);\n\nd3_selectionRoot[0].parentNode = d3_selectRoot;\n\n// TODO fast singleton implementation!\n// TODO select(function)\nd3.select = function(selector) {\n  return typeof selector === \"string\"\n      ? d3_selectionRoot.select(selector)\n      : d3_selection([[selector]]); // assume node\n};\n\n// TODO selectAll(function)\nd3.selectAll = function(selector) {\n  return typeof selector === \"string\"\n      ? d3_selectionRoot.selectAll(selector)\n      : d3_selection([d3_array(selector)]); // assume node[]\n};\nfunction d3_selection_enter(selection) {\n  d3_arraySubclass(selection, d3_selection_enterPrototype);\n  return selection;\n}\n\nvar d3_selection_enterPrototype = [];\n\nd3.selection.enter = d3_selection_enter;\nd3.selection.enter.prototype = d3_selection_enterPrototype;\n\nd3_selection_enterPrototype.append = d3_selectionPrototype.append;\nd3_selection_enterPrototype.insert = d3_selectionPrototype.insert;\nd3_selection_enterPrototype.empty = d3_selectionPrototype.empty;\nd3_selection_enterPrototype.node = d3_selectionPrototype.node;\nd3_selection_enterPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      upgroup,\n      group,\n      node;\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    upgroup = (group = this[j]).update;\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = group.parentNode;\n    for (var i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroup.push(upgroup[i] = subnode = selector.call(group.parentNode, node.__data__, i));\n        subnode.__data__ = node.__data__;\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\nfunction d3_transition(groups, id, time) {\n  d3_arraySubclass(groups, d3_transitionPrototype);\n\n  var tweens = new d3_Map,\n      event = d3.dispatch(\"start\", \"end\"),\n      ease = d3_transitionEase;\n\n  groups.id = id;\n\n  groups.time = time;\n\n  groups.tween = function(name, tween) {\n    if (arguments.length < 2) return tweens.get(name);\n    if (tween == null) tweens.remove(name);\n    else tweens.set(name, tween);\n    return groups;\n  };\n\n  groups.ease = function(value) {\n    if (!arguments.length) return ease;\n    ease = typeof value === \"function\" ? value : d3.ease.apply(d3, arguments);\n    return groups;\n  };\n\n  groups.each = function(type, listener) {\n    if (arguments.length < 2) return d3_transition_each.call(groups, type);\n    event.on(type, listener);\n    return groups;\n  };\n\n  d3.timer(function(elapsed) {\n    groups.each(function(d, i, j) {\n      var tweened = [],\n          node = this,\n          delay = groups[j][i].delay,\n          duration = groups[j][i].duration,\n          lock = node.__transition__ || (node.__transition__ = {active: 0, count: 0});\n\n      ++lock.count;\n\n      delay <= elapsed ? start(elapsed) : d3.timer(start, delay, time);\n\n      function start(elapsed) {\n        if (lock.active > id) return stop();\n        lock.active = id;\n\n        tweens.forEach(function(key, value) {\n          if (tween = value.call(node, d, i)) {\n            tweened.push(tween);\n          }\n        });\n\n        event.start.call(node, d, i);\n        if (!tick(elapsed)) d3.timer(tick, 0, time);\n        return 1;\n      }\n\n      function tick(elapsed) {\n        if (lock.active !== id) return stop();\n\n        var t = (elapsed - delay) / duration,\n            e = ease(t),\n            n = tweened.length;\n\n        while (n > 0) {\n          tweened[--n].call(node, e);\n        }\n\n        if (t >= 1) {\n          stop();\n          d3_transitionId = id;\n          event.end.call(node, d, i);\n          d3_transitionId = 0;\n          return 1;\n        }\n      }\n\n      function stop() {\n        if (!--lock.count) delete node.__transition__;\n        return 1;\n      }\n    });\n    return 1;\n  }, 0, time);\n\n  return groups;\n}\n\nvar d3_transitionRemove = {};\n\nfunction d3_transitionNull(d, i, a) {\n  return a != \"\" && d3_transitionRemove;\n}\n\nfunction d3_transitionTween(name, b) {\n  var interpolate = d3_interpolateByName(name);\n\n  function transitionFunction(d, i, a) {\n    var v = b.call(this, d, i);\n    return v == null\n        ? a != \"\" && d3_transitionRemove\n        : a != v && interpolate(a, v);\n  }\n\n  function transitionString(d, i, a) {\n    return a != b && interpolate(a, b);\n  }\n\n  return typeof b === \"function\" ? transitionFunction\n      : b == null ? d3_transitionNull\n      : (b += \"\", transitionString);\n}\n\nvar d3_transitionPrototype = [],\n    d3_transitionNextId = 0,\n    d3_transitionId = 0,\n    d3_transitionDefaultDelay = 0,\n    d3_transitionDefaultDuration = 250,\n    d3_transitionDefaultEase = d3.ease(\"cubic-in-out\"),\n    d3_transitionDelay = d3_transitionDefaultDelay,\n    d3_transitionDuration = d3_transitionDefaultDuration,\n    d3_transitionEase = d3_transitionDefaultEase;\n\nd3_transitionPrototype.call = d3_selectionPrototype.call;\n\nd3.transition = function(selection) {\n  return arguments.length\n      ? (d3_transitionId ? selection.transition() : selection)\n      : d3_selectionRoot.transition();\n};\n\nd3.transition.prototype = d3_transitionPrototype;\nd3_transitionPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selector(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if ((node = group[i]) && (subnode = selector.call(node.node, node.node.__data__, i))) {\n        if (\"__data__\" in node.node) subnode.__data__ = node.node.__data__;\n        subgroup.push({node: subnode, delay: node.delay, duration: node.duration});\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_transition(subgroups, this.id, this.time).ease(this.ease());\n};\nd3_transitionPrototype.selectAll = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnodes,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selectorAll(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subnodes = selector.call(node.node, node.node.__data__, i);\n        subgroups.push(subgroup = []);\n        for (var k = -1, o = subnodes.length; ++k < o;) {\n          subgroup.push({node: subnodes[k], delay: node.delay, duration: node.duration});\n        }\n      }\n    }\n  }\n\n  return d3_transition(subgroups, this.id, this.time).ease(this.ease());\n};\nd3_transitionPrototype.attr = function(name, value) {\n  return this.attrTween(name, d3_transitionTween(name, value));\n};\n\nd3_transitionPrototype.attrTween = function(nameNS, tween) {\n  var name = d3.ns.qualify(nameNS);\n\n  function attrTween(d, i) {\n    var f = tween.call(this, d, i, this.getAttribute(name));\n    return f === d3_transitionRemove\n        ? (this.removeAttribute(name), null)\n        : f && function(t) { this.setAttribute(name, f(t)); };\n  }\n\n  function attrTweenNS(d, i) {\n    var f = tween.call(this, d, i, this.getAttributeNS(name.space, name.local));\n    return f === d3_transitionRemove\n        ? (this.removeAttributeNS(name.space, name.local), null)\n        : f && function(t) { this.setAttributeNS(name.space, name.local, f(t)); };\n  }\n\n  return this.tween(\"attr.\" + nameNS, name.local ? attrTweenNS : attrTween);\n};\nd3_transitionPrototype.style = function(name, value, priority) {\n  if (arguments.length < 3) priority = \"\";\n  return this.styleTween(name, d3_transitionTween(name, value), priority);\n};\n\nd3_transitionPrototype.styleTween = function(name, tween, priority) {\n  if (arguments.length < 3) priority = \"\";\n  return this.tween(\"style.\" + name, function(d, i) {\n    var f = tween.call(this, d, i, window.getComputedStyle(this, null).getPropertyValue(name));\n    return f === d3_transitionRemove\n        ? (this.style.removeProperty(name), null)\n        : f && function(t) { this.style.setProperty(name, f(t), priority); };\n  });\n};\nd3_transitionPrototype.text = function(value) {\n  return this.tween(\"text\", function(d, i) {\n    this.textContent = typeof value === \"function\"\n        ? value.call(this, d, i)\n        : value;\n  });\n};\nd3_transitionPrototype.remove = function() {\n  return this.each(\"end.transition\", function() {\n    var p;\n    if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this);\n  });\n};\nd3_transitionPrototype.delay = function(value) {\n  var groups = this;\n  return groups.each(typeof value === \"function\"\n      ? function(d, i, j) { groups[j][i].delay = value.apply(this, arguments) | 0; }\n      : (value = value | 0, function(d, i, j) { groups[j][i].delay = value; }));\n};\nd3_transitionPrototype.duration = function(value) {\n  var groups = this;\n  return groups.each(typeof value === \"function\"\n      ? function(d, i, j) { groups[j][i].duration = Math.max(1, value.apply(this, arguments) | 0); }\n      : (value = Math.max(1, value | 0), function(d, i, j) { groups[j][i].duration = value; }));\n};\nfunction d3_transition_each(callback) {\n  var id = d3_transitionId,\n      ease = d3_transitionEase,\n      delay = d3_transitionDelay,\n      duration = d3_transitionDuration;\n\n  d3_transitionId = this.id;\n  d3_transitionEase = this.ease();\n  for (var j = 0, m = this.length; j < m; j++) {\n    for (var group = this[j], i = 0, n = group.length; i < n; i++) {\n      var node = group[i];\n      if (node) {\n        d3_transitionDelay = this[j][i].delay;\n        d3_transitionDuration = this[j][i].duration;\n        callback.call(node = node.node, node.__data__, i, j);\n      }\n    }\n  }\n\n  d3_transitionId = id;\n  d3_transitionEase = ease;\n  d3_transitionDelay = delay;\n  d3_transitionDuration = duration;\n  return this;\n}\nd3_transitionPrototype.transition = function() {\n  return this.select(d3_this);\n};\nvar d3_timer_queue = null,\n    d3_timer_interval, // is an interval (or frame) active?\n    d3_timer_timeout; // is a timeout active?\n\n// The timer will continue to fire until callback returns true.\nd3.timer = function(callback, delay, then) {\n  var found = false,\n      t0,\n      t1 = d3_timer_queue;\n\n  if (arguments.length < 3) {\n    if (arguments.length < 2) delay = 0;\n    else if (!isFinite(delay)) return;\n    then = Date.now();\n  }\n\n  // See if the callback's already in the queue.\n  while (t1) {\n    if (t1.callback === callback) {\n      t1.then = then;\n      t1.delay = delay;\n      found = true;\n      break;\n    }\n    t0 = t1;\n    t1 = t1.next;\n  }\n\n  // Otherwise, add the callback to the queue.\n  if (!found) d3_timer_queue = {\n    callback: callback,\n    then: then,\n    delay: delay,\n    next: d3_timer_queue\n  };\n\n  // Start animatin'!\n  if (!d3_timer_interval) {\n    d3_timer_timeout = clearTimeout(d3_timer_timeout);\n    d3_timer_interval = 1;\n    d3_timer_frame(d3_timer_step);\n  }\n}\n\nfunction d3_timer_step() {\n  var elapsed,\n      now = Date.now(),\n      t1 = d3_timer_queue;\n\n  while (t1) {\n    elapsed = now - t1.then;\n    if (elapsed >= t1.delay) t1.flush = t1.callback(elapsed);\n    t1 = t1.next;\n  }\n\n  var delay = d3_timer_flush() - now;\n  if (delay > 24) {\n    if (isFinite(delay)) {\n      clearTimeout(d3_timer_timeout);\n      d3_timer_timeout = setTimeout(d3_timer_step, delay);\n    }\n    d3_timer_interval = 0;\n  } else {\n    d3_timer_interval = 1;\n    d3_timer_frame(d3_timer_step);\n  }\n}\n\nd3.timer.flush = function() {\n  var elapsed,\n      now = Date.now(),\n      t1 = d3_timer_queue;\n\n  while (t1) {\n    elapsed = now - t1.then;\n    if (!t1.delay) t1.flush = t1.callback(elapsed);\n    t1 = t1.next;\n  }\n\n  d3_timer_flush();\n};\n\n// Flush after callbacks, to avoid concurrent queue modification.\nfunction d3_timer_flush() {\n  var t0 = null,\n      t1 = d3_timer_queue,\n      then = Infinity;\n  while (t1) {\n    if (t1.flush) {\n      t1 = t0 ? t0.next = t1.next : d3_timer_queue = t1.next;\n    } else {\n      then = Math.min(then, t1.then + t1.delay);\n      t1 = (t0 = t1).next;\n    }\n  }\n  return then;\n}\n\nvar d3_timer_frame = window.requestAnimationFrame\n    || window.webkitRequestAnimationFrame\n    || window.mozRequestAnimationFrame\n    || window.oRequestAnimationFrame\n    || window.msRequestAnimationFrame\n    || function(callback) { setTimeout(callback, 17); };\nd3.transform = function(string) {\n  var g = document.createElementNS(d3.ns.prefix.svg, \"g\"),\n      identity = {a: 1, b: 0, c: 0, d: 1, e: 0, f: 0};\n  return (d3.transform = function(string) {\n    g.setAttribute(\"transform\", string);\n    var t = g.transform.baseVal.consolidate();\n    return new d3_transform(t ? t.matrix : identity);\n  })(string);\n};\n\n// Compute x-scale and normalize the first row.\n// Compute shear and make second row orthogonal to first.\n// Compute y-scale and normalize the second row.\n// Finally, compute the rotation.\nfunction d3_transform(m) {\n  var r0 = [m.a, m.b],\n      r1 = [m.c, m.d],\n      kx = d3_transformNormalize(r0),\n      kz = d3_transformDot(r0, r1),\n      ky = d3_transformNormalize(d3_transformCombine(r1, r0, -kz)) || 0;\n  if (r0[0] * r1[1] < r1[0] * r0[1]) {\n    r0[0] *= -1;\n    r0[1] *= -1;\n    kx *= -1;\n    kz *= -1;\n  }\n  this.rotate = (kx ? Math.atan2(r0[1], r0[0]) : Math.atan2(-r1[0], r1[1])) * d3_transformDegrees;\n  this.translate = [m.e, m.f];\n  this.scale = [kx, ky];\n  this.skew = ky ? Math.atan2(kz, ky) * d3_transformDegrees : 0;\n};\n\nd3_transform.prototype.toString = function() {\n  return \"translate(\" + this.translate\n      + \")rotate(\" + this.rotate\n      + \")skewX(\" + this.skew\n      + \")scale(\" + this.scale\n      + \")\";\n};\n\nfunction d3_transformDot(a, b) {\n  return a[0] * b[0] + a[1] * b[1];\n}\n\nfunction d3_transformNormalize(a) {\n  var k = Math.sqrt(d3_transformDot(a, a));\n  if (k) {\n    a[0] /= k;\n    a[1] /= k;\n  }\n  return k;\n}\n\nfunction d3_transformCombine(a, b, k) {\n  a[0] += k * b[0];\n  a[1] += k * b[1];\n  return a;\n}\n\nvar d3_transformDegrees = 180 / Math.PI;\nd3.mouse = function(container) {\n  return d3_mousePoint(container, d3_eventSource());\n};\n\n// https://bugs.webkit.org/show_bug.cgi?id=44083\nvar d3_mouse_bug44083 = /WebKit/.test(navigator.userAgent) ? -1 : 0;\n\nfunction d3_mousePoint(container, e) {\n  var svg = container.ownerSVGElement || container;\n  if (svg.createSVGPoint) {\n    var point = svg.createSVGPoint();\n    if ((d3_mouse_bug44083 < 0) && (window.scrollX || window.scrollY)) {\n      svg = d3.select(document.body)\n        .append(\"svg\")\n          .style(\"position\", \"absolute\")\n          .style(\"top\", 0)\n          .style(\"left\", 0);\n      var ctm = svg[0][0].getScreenCTM();\n      d3_mouse_bug44083 = !(ctm.f || ctm.e);\n      svg.remove();\n    }\n    if (d3_mouse_bug44083) {\n      point.x = e.pageX;\n      point.y = e.pageY;\n    } else {\n      point.x = e.clientX;\n      point.y = e.clientY;\n    }\n    point = point.matrixTransform(container.getScreenCTM().inverse());\n    return [point.x, point.y];\n  }\n  var rect = container.getBoundingClientRect();\n  return [e.clientX - rect.left - container.clientLeft, e.clientY - rect.top - container.clientTop];\n};\nd3.touches = function(container, touches) {\n  if (arguments.length < 2) touches = d3_eventSource().touches;\n  return touches ? d3_array(touches).map(function(touch) {\n    var point = d3_mousePoint(container, touch);\n    point.identifier = touch.identifier;\n    return point;\n  }) : [];\n};\nfunction d3_noop() {}\nd3.scale = {};\n\nfunction d3_scaleExtent(domain) {\n  var start = domain[0], stop = domain[domain.length - 1];\n  return start < stop ? [start, stop] : [stop, start];\n}\n\nfunction d3_scaleRange(scale) {\n  return scale.rangeExtent ? scale.rangeExtent() : d3_scaleExtent(scale.range());\n}\nfunction d3_scale_nice(domain, nice) {\n  var i0 = 0,\n      i1 = domain.length - 1,\n      x0 = domain[i0],\n      x1 = domain[i1],\n      dx;\n\n  if (x1 < x0) {\n    dx = i0; i0 = i1; i1 = dx;\n    dx = x0; x0 = x1; x1 = dx;\n  }\n\n  if (dx = x1 - x0) {\n    nice = nice(dx);\n    domain[i0] = nice.floor(x0);\n    domain[i1] = nice.ceil(x1);\n  }\n\n  return domain;\n}\n\nfunction d3_scale_niceDefault() {\n  return Math;\n}\nd3.scale.linear = function() {\n  return d3_scale_linear([0, 1], [0, 1], d3.interpolate, false);\n};\n\nfunction d3_scale_linear(domain, range, interpolate, clamp) {\n  var output,\n      input;\n\n  function rescale() {\n    var linear = Math.min(domain.length, range.length) > 2 ? d3_scale_polylinear : d3_scale_bilinear,\n        uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber;\n    output = linear(domain, range, uninterpolate, interpolate);\n    input = linear(range, domain, uninterpolate, d3.interpolate);\n    return scale;\n  }\n\n  function scale(x) {\n    return output(x);\n  }\n\n  // Note: requires range is coercible to number!\n  scale.invert = function(y) {\n    return input(y);\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.map(Number);\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.rangeRound = function(x) {\n    return scale.range(x).interpolate(d3.interpolateRound);\n  };\n\n  scale.clamp = function(x) {\n    if (!arguments.length) return clamp;\n    clamp = x;\n    return rescale();\n  };\n\n  scale.interpolate = function(x) {\n    if (!arguments.length) return interpolate;\n    interpolate = x;\n    return rescale();\n  };\n\n  scale.ticks = function(m) {\n    return d3_scale_linearTicks(domain, m);\n  };\n\n  scale.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(domain, m);\n  };\n\n  scale.nice = function() {\n    d3_scale_nice(domain, d3_scale_linearNice);\n    return rescale();\n  };\n\n  scale.copy = function() {\n    return d3_scale_linear(domain, range, interpolate, clamp);\n  };\n\n  return rescale();\n}\n\nfunction d3_scale_linearRebind(scale, linear) {\n  return d3.rebind(scale, linear, \"range\", \"rangeRound\", \"interpolate\", \"clamp\");\n}\n\nfunction d3_scale_linearNice(dx) {\n  dx = Math.pow(10, Math.round(Math.log(dx) / Math.LN10) - 1);\n  return {\n    floor: function(x) { return Math.floor(x / dx) * dx; },\n    ceil: function(x) { return Math.ceil(x / dx) * dx; }\n  };\n}\n\nfunction d3_scale_linearTickRange(domain, m) {\n  var extent = d3_scaleExtent(domain),\n      span = extent[1] - extent[0],\n      step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)),\n      err = m / span * step;\n\n  // Filter ticks to get closer to the desired count.\n  if (err <= .15) step *= 10;\n  else if (err <= .35) step *= 5;\n  else if (err <= .75) step *= 2;\n\n  // Round start and stop values to step interval.\n  extent[0] = Math.ceil(extent[0] / step) * step;\n  extent[1] = Math.floor(extent[1] / step) * step + step * .5; // inclusive\n  extent[2] = step;\n  return extent;\n}\n\nfunction d3_scale_linearTicks(domain, m) {\n  return d3.range.apply(d3, d3_scale_linearTickRange(domain, m));\n}\n\nfunction d3_scale_linearTickFormat(domain, m) {\n  return d3.format(\",.\" + Math.max(0, -Math.floor(Math.log(d3_scale_linearTickRange(domain, m)[2]) / Math.LN10 + .01)) + \"f\");\n}\nfunction d3_scale_bilinear(domain, range, uninterpolate, interpolate) {\n  var u = uninterpolate(domain[0], domain[1]),\n      i = interpolate(range[0], range[1]);\n  return function(x) {\n    return i(u(x));\n  };\n}\nfunction d3_scale_polylinear(domain, range, uninterpolate, interpolate) {\n  var u = [],\n      i = [],\n      j = 0,\n      k = Math.min(domain.length, range.length) - 1;\n\n  // Handle descending domains.\n  if (domain[k] < domain[0]) {\n    domain = domain.slice().reverse();\n    range = range.slice().reverse();\n  }\n\n  while (++j <= k) {\n    u.push(uninterpolate(domain[j - 1], domain[j]));\n    i.push(interpolate(range[j - 1], range[j]));\n  }\n\n  return function(x) {\n    var j = d3.bisect(domain, x, 1, k) - 1;\n    return i[j](u[j](x));\n  };\n}\nd3.scale.log = function() {\n  return d3_scale_log(d3.scale.linear(), d3_scale_logp);\n};\n\nfunction d3_scale_log(linear, log) {\n  var pow = log.pow;\n\n  function scale(x) {\n    return linear(log(x));\n  }\n\n  scale.invert = function(x) {\n    return pow(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(pow);\n    log = x[0] < 0 ? d3_scale_logn : d3_scale_logp;\n    pow = log.pow;\n    linear.domain(x.map(log));\n    return scale;\n  };\n\n  scale.nice = function() {\n    linear.domain(d3_scale_nice(linear.domain(), d3_scale_niceDefault));\n    return scale;\n  };\n\n  scale.ticks = function() {\n    var extent = d3_scaleExtent(linear.domain()),\n        ticks = [];\n    if (extent.every(isFinite)) {\n      var i = Math.floor(extent[0]),\n          j = Math.ceil(extent[1]),\n          u = pow(extent[0]),\n          v = pow(extent[1]);\n      if (log === d3_scale_logn) {\n        ticks.push(pow(i));\n        for (; i++ < j;) for (var k = 9; k > 0; k--) ticks.push(pow(i) * k);\n      } else {\n        for (; i < j; i++) for (var k = 1; k < 10; k++) ticks.push(pow(i) * k);\n        ticks.push(pow(i));\n      }\n      for (i = 0; ticks[i] < u; i++) {} // strip small values\n      for (j = ticks.length; ticks[j - 1] > v; j--) {} // strip big values\n      ticks = ticks.slice(i, j);\n    }\n    return ticks;\n  };\n\n  scale.tickFormat = function(n, format) {\n    if (arguments.length < 2) format = d3_scale_logFormat;\n    if (arguments.length < 1) return format;\n    var k = n / scale.ticks().length,\n        f = log === d3_scale_logn ? (e = -1e-12, Math.floor) : (e = 1e-12, Math.ceil),\n        e;\n    return function(d) {\n      return d / pow(f(log(d) + e)) < k ? format(d) : \"\";\n    };\n  };\n\n  scale.copy = function() {\n    return d3_scale_log(linear.copy(), log);\n  };\n\n  return d3_scale_linearRebind(scale, linear);\n}\n\nvar d3_scale_logFormat = d3.format(\".0e\");\n\nfunction d3_scale_logp(x) {\n  return Math.log(x < 0 ? 0 : x) / Math.LN10;\n}\n\nfunction d3_scale_logn(x) {\n  return -Math.log(x > 0 ? 0 : -x) / Math.LN10;\n}\n\nd3_scale_logp.pow = function(x) {\n  return Math.pow(10, x);\n};\n\nd3_scale_logn.pow = function(x) {\n  return -Math.pow(10, -x);\n};\nd3.scale.pow = function() {\n  return d3_scale_pow(d3.scale.linear(), 1);\n};\n\nfunction d3_scale_pow(linear, exponent) {\n  var powp = d3_scale_powPow(exponent),\n      powb = d3_scale_powPow(1 / exponent);\n\n  function scale(x) {\n    return linear(powp(x));\n  }\n\n  scale.invert = function(x) {\n    return powb(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(powb);\n    linear.domain(x.map(powp));\n    return scale;\n  };\n\n  scale.ticks = function(m) {\n    return d3_scale_linearTicks(scale.domain(), m);\n  };\n\n  scale.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(scale.domain(), m);\n  };\n\n  scale.nice = function() {\n    return scale.domain(d3_scale_nice(scale.domain(), d3_scale_linearNice));\n  };\n\n  scale.exponent = function(x) {\n    if (!arguments.length) return exponent;\n    var domain = scale.domain();\n    powp = d3_scale_powPow(exponent = x);\n    powb = d3_scale_powPow(1 / exponent);\n    return scale.domain(domain);\n  };\n\n  scale.copy = function() {\n    return d3_scale_pow(linear.copy(), exponent);\n  };\n\n  return d3_scale_linearRebind(scale, linear);\n}\n\nfunction d3_scale_powPow(e) {\n  return function(x) {\n    return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e);\n  };\n}\nd3.scale.sqrt = function() {\n  return d3.scale.pow().exponent(.5);\n};\nd3.scale.ordinal = function() {\n  return d3_scale_ordinal([], {t: \"range\", x: []});\n};\n\nfunction d3_scale_ordinal(domain, ranger) {\n  var index,\n      range,\n      rangeBand;\n\n  function scale(x) {\n    return range[((index.get(x) || index.set(x, domain.push(x))) - 1) % range.length];\n  }\n\n  function steps(start, step) {\n    return d3.range(domain.length).map(function(i) { return start + step * i; });\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = [];\n    index = new d3_Map;\n    var i = -1, n = x.length, xi;\n    while (++i < n) if (!index.has(xi = x[i])) index.set(xi, domain.push(xi));\n    return scale[ranger.t](ranger.x, ranger.p);\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    rangeBand = 0;\n    ranger = {t: \"range\", x: x};\n    return scale;\n  };\n\n  scale.rangePoints = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var start = x[0],\n        stop = x[1],\n        step = (stop - start) / (domain.length - 1 + padding);\n    range = steps(domain.length < 2 ? (start + stop) / 2 : start + step * padding / 2, step);\n    rangeBand = 0;\n    ranger = {t: \"rangePoints\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeBands = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var reverse = x[1] < x[0],\n        start = x[reverse - 0],\n        stop = x[1 - reverse],\n        step = (stop - start) / (domain.length + padding);\n    range = steps(start + step * padding, step);\n    if (reverse) range.reverse();\n    rangeBand = step * (1 - padding);\n    ranger = {t: \"rangeBands\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeRoundBands = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var reverse = x[1] < x[0],\n        start = x[reverse - 0],\n        stop = x[1 - reverse],\n        step = Math.floor((stop - start) / (domain.length + padding)),\n        error = stop - start - (domain.length - padding) * step;\n    range = steps(start + Math.round(error / 2), step);\n    if (reverse) range.reverse();\n    rangeBand = Math.round(step * (1 - padding));\n    ranger = {t: \"rangeRoundBands\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeBand = function() {\n    return rangeBand;\n  };\n\n  scale.rangeExtent = function() {\n    return d3_scaleExtent(ranger.x);\n  };\n\n  scale.copy = function() {\n    return d3_scale_ordinal(domain, ranger);\n  };\n\n  return scale.domain(domain);\n}\n/*\n * This product includes color specifications and designs developed by Cynthia\n * Brewer (http://colorbrewer.org/). See lib/colorbrewer for more information.\n */\n\nd3.scale.category10 = function() {\n  return d3.scale.ordinal().range(d3_category10);\n};\n\nd3.scale.category20 = function() {\n  return d3.scale.ordinal().range(d3_category20);\n};\n\nd3.scale.category20b = function() {\n  return d3.scale.ordinal().range(d3_category20b);\n};\n\nd3.scale.category20c = function() {\n  return d3.scale.ordinal().range(d3_category20c);\n};\n\nvar d3_category10 = [\n  \"#1f77b4\", \"#ff7f0e\", \"#2ca02c\", \"#d62728\", \"#9467bd\",\n  \"#8c564b\", \"#e377c2\", \"#7f7f7f\", \"#bcbd22\", \"#17becf\"\n];\n\nvar d3_category20 = [\n  \"#1f77b4\", \"#aec7e8\",\n  \"#ff7f0e\", \"#ffbb78\",\n  \"#2ca02c\", \"#98df8a\",\n  \"#d62728\", \"#ff9896\",\n  \"#9467bd\", \"#c5b0d5\",\n  \"#8c564b\", \"#c49c94\",\n  \"#e377c2\", \"#f7b6d2\",\n  \"#7f7f7f\", \"#c7c7c7\",\n  \"#bcbd22\", \"#dbdb8d\",\n  \"#17becf\", \"#9edae5\"\n];\n\nvar d3_category20b = [\n  \"#393b79\", \"#5254a3\", \"#6b6ecf\", \"#9c9ede\",\n  \"#637939\", \"#8ca252\", \"#b5cf6b\", \"#cedb9c\",\n  \"#8c6d31\", \"#bd9e39\", \"#e7ba52\", \"#e7cb94\",\n  \"#843c39\", \"#ad494a\", \"#d6616b\", \"#e7969c\",\n  \"#7b4173\", \"#a55194\", \"#ce6dbd\", \"#de9ed6\"\n];\n\nvar d3_category20c = [\n  \"#3182bd\", \"#6baed6\", \"#9ecae1\", \"#c6dbef\",\n  \"#e6550d\", \"#fd8d3c\", \"#fdae6b\", \"#fdd0a2\",\n  \"#31a354\", \"#74c476\", \"#a1d99b\", \"#c7e9c0\",\n  \"#756bb1\", \"#9e9ac8\", \"#bcbddc\", \"#dadaeb\",\n  \"#636363\", \"#969696\", \"#bdbdbd\", \"#d9d9d9\"\n];\nd3.scale.quantile = function() {\n  return d3_scale_quantile([], []);\n};\n\nfunction d3_scale_quantile(domain, range) {\n  var thresholds;\n\n  function rescale() {\n    var k = 0,\n        n = domain.length,\n        q = range.length;\n    thresholds = [];\n    while (++k < q) thresholds[k - 1] = d3.quantile(domain, k / q);\n    return scale;\n  }\n\n  function scale(x) {\n    if (isNaN(x = +x)) return NaN;\n    return range[d3.bisect(thresholds, x)];\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.filter(function(d) { return !isNaN(d); }).sort(d3.ascending);\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.quantiles = function() {\n    return thresholds;\n  };\n\n  scale.copy = function() {\n    return d3_scale_quantile(domain, range); // copy on write!\n  };\n\n  return rescale();\n}\nd3.scale.quantize = function() {\n  return d3_scale_quantize(0, 1, [0, 1]);\n};\n\nfunction d3_scale_quantize(x0, x1, range) {\n  var kx, i;\n\n  function scale(x) {\n    return range[Math.max(0, Math.min(i, Math.floor(kx * (x - x0))))];\n  }\n\n  function rescale() {\n    kx = range.length / (x1 - x0);\n    i = range.length - 1;\n    return scale;\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return [x0, x1];\n    x0 = +x[0];\n    x1 = +x[x.length - 1];\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.copy = function() {\n    return d3_scale_quantize(x0, x1, range); // copy on write\n  };\n\n  return rescale();\n}\nd3.scale.identity = function() {\n  return d3_scale_identity([0, 1]);\n};\n\nfunction d3_scale_identity(domain) {\n\n  function identity(x) { return +x; }\n\n  identity.invert = identity;\n\n  identity.domain = identity.range = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.map(identity);\n    return identity;\n  };\n\n  identity.ticks = function(m) {\n    return d3_scale_linearTicks(domain, m);\n  };\n\n  identity.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(domain, m);\n  };\n\n  identity.copy = function() {\n    return d3_scale_identity(domain);\n  };\n\n  return identity;\n}\nd3.svg = {};\nd3.svg.arc = function() {\n  var innerRadius = d3_svg_arcInnerRadius,\n      outerRadius = d3_svg_arcOuterRadius,\n      startAngle = d3_svg_arcStartAngle,\n      endAngle = d3_svg_arcEndAngle;\n\n  function arc() {\n    var r0 = innerRadius.apply(this, arguments),\n        r1 = outerRadius.apply(this, arguments),\n        a0 = startAngle.apply(this, arguments) + d3_svg_arcOffset,\n        a1 = endAngle.apply(this, arguments) + d3_svg_arcOffset,\n        da = (a1 < a0 && (da = a0, a0 = a1, a1 = da), a1 - a0),\n        df = da < Math.PI ? \"0\" : \"1\",\n        c0 = Math.cos(a0),\n        s0 = Math.sin(a0),\n        c1 = Math.cos(a1),\n        s1 = Math.sin(a1);\n    return da >= d3_svg_arcMax\n      ? (r0\n      ? \"M0,\" + r1\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + (-r1)\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + r1\n      + \"M0,\" + r0\n      + \"A\" + r0 + \",\" + r0 + \" 0 1,0 0,\" + (-r0)\n      + \"A\" + r0 + \",\" + r0 + \" 0 1,0 0,\" + r0\n      + \"Z\"\n      : \"M0,\" + r1\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + (-r1)\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + r1\n      + \"Z\")\n      : (r0\n      ? \"M\" + r1 * c0 + \",\" + r1 * s0\n      + \"A\" + r1 + \",\" + r1 + \" 0 \" + df + \",1 \" + r1 * c1 + \",\" + r1 * s1\n      + \"L\" + r0 * c1 + \",\" + r0 * s1\n      + \"A\" + r0 + \",\" + r0 + \" 0 \" + df + \",0 \" + r0 * c0 + \",\" + r0 * s0\n      + \"Z\"\n      : \"M\" + r1 * c0 + \",\" + r1 * s0\n      + \"A\" + r1 + \",\" + r1 + \" 0 \" + df + \",1 \" + r1 * c1 + \",\" + r1 * s1\n      + \"L0,0\"\n      + \"Z\");\n  }\n\n  arc.innerRadius = function(v) {\n    if (!arguments.length) return innerRadius;\n    innerRadius = d3.functor(v);\n    return arc;\n  };\n\n  arc.outerRadius = function(v) {\n    if (!arguments.length) return outerRadius;\n    outerRadius = d3.functor(v);\n    return arc;\n  };\n\n  arc.startAngle = function(v) {\n    if (!arguments.length) return startAngle;\n    startAngle = d3.functor(v);\n    return arc;\n  };\n\n  arc.endAngle = function(v) {\n    if (!arguments.length) return endAngle;\n    endAngle = d3.functor(v);\n    return arc;\n  };\n\n  arc.centroid = function() {\n    var r = (innerRadius.apply(this, arguments)\n        + outerRadius.apply(this, arguments)) / 2,\n        a = (startAngle.apply(this, arguments)\n        + endAngle.apply(this, arguments)) / 2 + d3_svg_arcOffset;\n    return [Math.cos(a) * r, Math.sin(a) * r];\n  };\n\n  return arc;\n};\n\nvar d3_svg_arcOffset = -Math.PI / 2,\n    d3_svg_arcMax = 2 * Math.PI - 1e-6;\n\nfunction d3_svg_arcInnerRadius(d) {\n  return d.innerRadius;\n}\n\nfunction d3_svg_arcOuterRadius(d) {\n  return d.outerRadius;\n}\n\nfunction d3_svg_arcStartAngle(d) {\n  return d.startAngle;\n}\n\nfunction d3_svg_arcEndAngle(d) {\n  return d.endAngle;\n}\nfunction d3_svg_line(projection) {\n  var x = d3_svg_lineX,\n      y = d3_svg_lineY,\n      interpolate = d3_svg_lineInterpolatorDefault,\n      interpolator = d3_svg_lineInterpolators.get(interpolate),\n      tension = .7;\n\n  function line(d) {\n    return d.length < 1 ? null : \"M\" + interpolator(projection(d3_svg_linePoints(this, d, x, y)), tension);\n  }\n\n  line.x = function(v) {\n    if (!arguments.length) return x;\n    x = v;\n    return line;\n  };\n\n  line.y = function(v) {\n    if (!arguments.length) return y;\n    y = v;\n    return line;\n  };\n\n  line.interpolate = function(v) {\n    if (!arguments.length) return interpolate;\n    if (!d3_svg_lineInterpolators.has(v += \"\")) v = d3_svg_lineInterpolatorDefault;\n    interpolator = d3_svg_lineInterpolators.get(interpolate = v);\n    return line;\n  };\n\n  line.tension = function(v) {\n    if (!arguments.length) return tension;\n    tension = v;\n    return line;\n  };\n\n  return line;\n}\n\nd3.svg.line = function() {\n  return d3_svg_line(Object);\n};\n\n// Converts the specified array of data into an array of points\n// (x-y tuples), by evaluating the specified `x` and `y` functions on each\n// data point. The `this` context of the evaluated functions is the specified\n// \"self\" object; each function is passed the current datum and index.\nfunction d3_svg_linePoints(self, d, x, y) {\n  var points = [],\n      i = -1,\n      n = d.length,\n      fx = typeof x === \"function\",\n      fy = typeof y === \"function\",\n      value;\n  if (fx && fy) {\n    while (++i < n) points.push([\n      x.call(self, value = d[i], i),\n      y.call(self, value, i)\n    ]);\n  } else if (fx) {\n    while (++i < n) points.push([x.call(self, d[i], i), y]);\n  } else if (fy) {\n    while (++i < n) points.push([x, y.call(self, d[i], i)]);\n  } else {\n    while (++i < n) points.push([x, y]);\n  }\n  return points;\n}\n\n// The default `x` property, which references d[0].\nfunction d3_svg_lineX(d) {\n  return d[0];\n}\n\n// The default `y` property, which references d[1].\nfunction d3_svg_lineY(d) {\n  return d[1];\n}\n\nvar d3_svg_lineInterpolatorDefault = \"linear\";\n\n// The various interpolators supported by the `line` class.\nvar d3_svg_lineInterpolators = d3.map({\n  \"linear\": d3_svg_lineLinear,\n  \"step-before\": d3_svg_lineStepBefore,\n  \"step-after\": d3_svg_lineStepAfter,\n  \"basis\": d3_svg_lineBasis,\n  \"basis-open\": d3_svg_lineBasisOpen,\n  \"basis-closed\": d3_svg_lineBasisClosed,\n  \"bundle\": d3_svg_lineBundle,\n  \"cardinal\": d3_svg_lineCardinal,\n  \"cardinal-open\": d3_svg_lineCardinalOpen,\n  \"cardinal-closed\": d3_svg_lineCardinalClosed,\n  \"monotone\": d3_svg_lineMonotone\n});\n\n// Linear interpolation; generates \"L\" commands.\nfunction d3_svg_lineLinear(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"L\", (p = points[i])[0], \",\", p[1]);\n  return path.join(\"\");\n}\n\n// Step interpolation; generates \"H\" and \"V\" commands.\nfunction d3_svg_lineStepBefore(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"V\", (p = points[i])[1], \"H\", p[0]);\n  return path.join(\"\");\n}\n\n// Step interpolation; generates \"H\" and \"V\" commands.\nfunction d3_svg_lineStepAfter(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"H\", (p = points[i])[0], \"V\", p[1]);\n  return path.join(\"\");\n}\n\n// Open cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinalOpen(points, tension) {\n  return points.length < 4\n      ? d3_svg_lineLinear(points)\n      : points[1] + d3_svg_lineHermite(points.slice(1, points.length - 1),\n        d3_svg_lineCardinalTangents(points, tension));\n}\n\n// Closed cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinalClosed(points, tension) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] + d3_svg_lineHermite((points.push(points[0]), points),\n        d3_svg_lineCardinalTangents([points[points.length - 2]]\n        .concat(points, [points[1]]), tension));\n}\n\n// Cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinal(points, tension, closed) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] + d3_svg_lineHermite(points,\n        d3_svg_lineCardinalTangents(points, tension));\n}\n\n// Hermite spline construction; generates \"C\" commands.\nfunction d3_svg_lineHermite(points, tangents) {\n  if (tangents.length < 1\n      || (points.length != tangents.length\n      && points.length != tangents.length + 2)) {\n    return d3_svg_lineLinear(points);\n  }\n\n  var quad = points.length != tangents.length,\n      path = \"\",\n      p0 = points[0],\n      p = points[1],\n      t0 = tangents[0],\n      t = t0,\n      pi = 1;\n\n  if (quad) {\n    path += \"Q\" + (p[0] - t0[0] * 2 / 3) + \",\" + (p[1] - t0[1] * 2 / 3)\n        + \",\" + p[0] + \",\" + p[1];\n    p0 = points[1];\n    pi = 2;\n  }\n\n  if (tangents.length > 1) {\n    t = tangents[1];\n    p = points[pi];\n    pi++;\n    path += \"C\" + (p0[0] + t0[0]) + \",\" + (p0[1] + t0[1])\n        + \",\" + (p[0] - t[0]) + \",\" + (p[1] - t[1])\n        + \",\" + p[0] + \",\" + p[1];\n    for (var i = 2; i < tangents.length; i++, pi++) {\n      p = points[pi];\n      t = tangents[i];\n      path += \"S\" + (p[0] - t[0]) + \",\" + (p[1] - t[1])\n          + \",\" + p[0] + \",\" + p[1];\n    }\n  }\n\n  if (quad) {\n    var lp = points[pi];\n    path += \"Q\" + (p[0] + t[0] * 2 / 3) + \",\" + (p[1] + t[1] * 2 / 3)\n        + \",\" + lp[0] + \",\" + lp[1];\n  }\n\n  return path;\n}\n\n// Generates tangents for a cardinal spline.\nfunction d3_svg_lineCardinalTangents(points, tension) {\n  var tangents = [],\n      a = (1 - tension) / 2,\n      p0,\n      p1 = points[0],\n      p2 = points[1],\n      i = 1,\n      n = points.length;\n  while (++i < n) {\n    p0 = p1;\n    p1 = p2;\n    p2 = points[i];\n    tangents.push([a * (p2[0] - p0[0]), a * (p2[1] - p0[1])]);\n  }\n  return tangents;\n}\n\n// B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasis(points) {\n  if (points.length < 3) return d3_svg_lineLinear(points);\n  var i = 1,\n      n = points.length,\n      pi = points[0],\n      x0 = pi[0],\n      y0 = pi[1],\n      px = [x0, x0, x0, (pi = points[1])[0]],\n      py = [y0, y0, y0, pi[1]],\n      path = [x0, \",\", y0];\n  d3_svg_lineBasisBezier(path, px, py);\n  while (++i < n) {\n    pi = points[i];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  i = -1;\n  while (++i < 2) {\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\n// Open B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasisOpen(points) {\n  if (points.length < 4) return d3_svg_lineLinear(points);\n  var path = [],\n      i = -1,\n      n = points.length,\n      pi,\n      px = [0],\n      py = [0];\n  while (++i < 3) {\n    pi = points[i];\n    px.push(pi[0]);\n    py.push(pi[1]);\n  }\n  path.push(d3_svg_lineDot4(d3_svg_lineBasisBezier3, px)\n    + \",\" + d3_svg_lineDot4(d3_svg_lineBasisBezier3, py));\n  --i; while (++i < n) {\n    pi = points[i];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\n// Closed B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasisClosed(points) {\n  var path,\n      i = -1,\n      n = points.length,\n      m = n + 4,\n      pi,\n      px = [],\n      py = [];\n  while (++i < 4) {\n    pi = points[i % n];\n    px.push(pi[0]);\n    py.push(pi[1]);\n  }\n  path = [\n    d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), \",\",\n    d3_svg_lineDot4(d3_svg_lineBasisBezier3, py)\n  ];\n  --i; while (++i < m) {\n    pi = points[i % n];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\nfunction d3_svg_lineBundle(points, tension) {\n  var n = points.length - 1,\n      x0 = points[0][0],\n      y0 = points[0][1],\n      dx = points[n][0] - x0,\n      dy = points[n][1] - y0,\n      i = -1,\n      p,\n      t;\n  while (++i <= n) {\n    p = points[i];\n    t = i / n;\n    p[0] = tension * p[0] + (1 - tension) * (x0 + t * dx);\n    p[1] = tension * p[1] + (1 - tension) * (y0 + t * dy);\n  }\n  return d3_svg_lineBasis(points);\n}\n\n// Returns the dot product of the given four-element vectors.\nfunction d3_svg_lineDot4(a, b) {\n  return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3];\n}\n\n// Matrix to transform basis (b-spline) control points to bezier\n// control points. Derived from FvD 11.2.8.\nvar d3_svg_lineBasisBezier1 = [0, 2/3, 1/3, 0],\n    d3_svg_lineBasisBezier2 = [0, 1/3, 2/3, 0],\n    d3_svg_lineBasisBezier3 = [0, 1/6, 2/3, 1/6];\n\n// Pushes a \"C\" Bézier curve onto the specified path array, given the\n// two specified four-element arrays which define the control points.\nfunction d3_svg_lineBasisBezier(path, x, y) {\n  path.push(\n      \"C\", d3_svg_lineDot4(d3_svg_lineBasisBezier1, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier1, y),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier2, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier2, y),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier3, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier3, y));\n}\n\n// Computes the slope from points p0 to p1.\nfunction d3_svg_lineSlope(p0, p1) {\n  return (p1[1] - p0[1]) / (p1[0] - p0[0]);\n}\n\n// Compute three-point differences for the given points.\n// http://en.wikipedia.org/wiki/Cubic_Hermite_spline#Finite_difference\nfunction d3_svg_lineFiniteDifferences(points) {\n  var i = 0,\n      j = points.length - 1,\n      m = [],\n      p0 = points[0],\n      p1 = points[1],\n      d = m[0] = d3_svg_lineSlope(p0, p1);\n  while (++i < j) {\n    m[i] = d + (d = d3_svg_lineSlope(p0 = p1, p1 = points[i + 1]));\n  }\n  m[i] = d;\n  return m;\n}\n\n// Interpolates the given points using Fritsch-Carlson Monotone cubic Hermite\n// interpolation. Returns an array of tangent vectors. For details, see\n// http://en.wikipedia.org/wiki/Monotone_cubic_interpolation\nfunction d3_svg_lineMonotoneTangents(points) {\n  var tangents = [],\n      d,\n      a,\n      b,\n      s,\n      m = d3_svg_lineFiniteDifferences(points),\n      i = -1,\n      j = points.length - 1;\n\n  // The first two steps are done by computing finite-differences:\n  // 1. Compute the slopes of the secant lines between successive points.\n  // 2. Initialize the tangents at every point as the average of the secants.\n\n  // Then, for each segment…\n  while (++i < j) {\n    d = d3_svg_lineSlope(points[i], points[i + 1]);\n\n    // 3. If two successive yk = y{k + 1} are equal (i.e., d is zero), then set\n    // mk = m{k + 1} = 0 as the spline connecting these points must be flat to\n    // preserve monotonicity. Ignore step 4 and 5 for those k.\n\n    if (Math.abs(d) < 1e-6) {\n      m[i] = m[i + 1] = 0;\n    } else {\n      // 4. Let ak = mk / dk and bk = m{k + 1} / dk.\n      a = m[i] / d;\n      b = m[i + 1] / d;\n\n      // 5. Prevent overshoot and ensure monotonicity by restricting the\n      // magnitude of vector <ak, bk> to a circle of radius 3.\n      s = a * a + b * b;\n      if (s > 9) {\n        s = d * 3 / Math.sqrt(s);\n        m[i] = s * a;\n        m[i + 1] = s * b;\n      }\n    }\n  }\n\n  // Compute the normalized tangent vector from the slopes. Note that if x is\n  // not monotonic, it's possible that the slope will be infinite, so we protect\n  // against NaN by setting the coordinate to zero.\n  i = -1; while (++i <= j) {\n    s = (points[Math.min(j, i + 1)][0] - points[Math.max(0, i - 1)][0])\n      / (6 * (1 + m[i] * m[i]));\n    tangents.push([s || 0, m[i] * s || 0]);\n  }\n\n  return tangents;\n}\n\nfunction d3_svg_lineMonotone(points) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] +\n        d3_svg_lineHermite(points, d3_svg_lineMonotoneTangents(points));\n}\nd3.svg.line.radial = function() {\n  var line = d3_svg_line(d3_svg_lineRadial);\n  line.radius = line.x, delete line.x;\n  line.angle = line.y, delete line.y;\n  return line;\n};\n\nfunction d3_svg_lineRadial(points) {\n  var point,\n      i = -1,\n      n = points.length,\n      r,\n      a;\n  while (++i < n) {\n    point = points[i];\n    r = point[0];\n    a = point[1] + d3_svg_arcOffset;\n    point[0] = r * Math.cos(a);\n    point[1] = r * Math.sin(a);\n  }\n  return points;\n}\nfunction d3_svg_area(projection) {\n  var x0 = d3_svg_lineX,\n      x1 = d3_svg_lineX,\n      y0 = 0,\n      y1 = d3_svg_lineY,\n      interpolate,\n      i0,\n      i1,\n      tension = .7;\n\n  function area(d) {\n    if (d.length < 1) return null;\n    var points0 = d3_svg_linePoints(this, d, x0, y0),\n        points1 = d3_svg_linePoints(this, d, x0 === x1 ? d3_svg_areaX(points0) : x1, y0 === y1 ? d3_svg_areaY(points0) : y1);\n    return \"M\" + i0(projection(points1), tension)\n         + \"L\" + i1(projection(points0.reverse()), tension)\n         + \"Z\";\n  }\n\n  area.x = function(x) {\n    if (!arguments.length) return x1;\n    x0 = x1 = x;\n    return area;\n  };\n\n  area.x0 = function(x) {\n    if (!arguments.length) return x0;\n    x0 = x;\n    return area;\n  };\n\n  area.x1 = function(x) {\n    if (!arguments.length) return x1;\n    x1 = x;\n    return area;\n  };\n\n  area.y = function(y) {\n    if (!arguments.length) return y1;\n    y0 = y1 = y;\n    return area;\n  };\n\n  area.y0 = function(y) {\n    if (!arguments.length) return y0;\n    y0 = y;\n    return area;\n  };\n\n  area.y1 = function(y) {\n    if (!arguments.length) return y1;\n    y1 = y;\n    return area;\n  };\n\n  area.interpolate = function(x) {\n    if (!arguments.length) return interpolate;\n    if (!d3_svg_lineInterpolators.has(x += \"\")) x = d3_svg_lineInterpolatorDefault;\n    i0 = d3_svg_lineInterpolators.get(interpolate = x);\n    i1 = i0.reverse || i0;\n    return area;\n  };\n\n  area.tension = function(x) {\n    if (!arguments.length) return tension;\n    tension = x;\n    return area;\n  };\n\n  return area.interpolate(\"linear\");\n}\n\nd3_svg_lineStepBefore.reverse = d3_svg_lineStepAfter;\nd3_svg_lineStepAfter.reverse = d3_svg_lineStepBefore;\n\nd3.svg.area = function() {\n  return d3_svg_area(Object);\n};\n\nfunction d3_svg_areaX(points) {\n  return function(d, i) {\n    return points[i][0];\n  };\n}\n\nfunction d3_svg_areaY(points) {\n  return function(d, i) {\n    return points[i][1];\n  };\n}\nd3.svg.area.radial = function() {\n  var area = d3_svg_area(d3_svg_lineRadial);\n  area.radius = area.x, delete area.x;\n  area.innerRadius = area.x0, delete area.x0;\n  area.outerRadius = area.x1, delete area.x1;\n  area.angle = area.y, delete area.y;\n  area.startAngle = area.y0, delete area.y0;\n  area.endAngle = area.y1, delete area.y1;\n  return area;\n};\nd3.svg.chord = function() {\n  var source = d3_svg_chordSource,\n      target = d3_svg_chordTarget,\n      radius = d3_svg_chordRadius,\n      startAngle = d3_svg_arcStartAngle,\n      endAngle = d3_svg_arcEndAngle;\n\n  // TODO Allow control point to be customized.\n\n  function chord(d, i) {\n    var s = subgroup(this, source, d, i),\n        t = subgroup(this, target, d, i);\n    return \"M\" + s.p0\n      + arc(s.r, s.p1, s.a1 - s.a0) + (equals(s, t)\n      ? curve(s.r, s.p1, s.r, s.p0)\n      : curve(s.r, s.p1, t.r, t.p0)\n      + arc(t.r, t.p1, t.a1 - t.a0)\n      + curve(t.r, t.p1, s.r, s.p0))\n      + \"Z\";\n  }\n\n  function subgroup(self, f, d, i) {\n    var subgroup = f.call(self, d, i),\n        r = radius.call(self, subgroup, i),\n        a0 = startAngle.call(self, subgroup, i) + d3_svg_arcOffset,\n        a1 = endAngle.call(self, subgroup, i) + d3_svg_arcOffset;\n    return {\n      r: r,\n      a0: a0,\n      a1: a1,\n      p0: [r * Math.cos(a0), r * Math.sin(a0)],\n      p1: [r * Math.cos(a1), r * Math.sin(a1)]\n    };\n  }\n\n  function equals(a, b) {\n    return a.a0 == b.a0 && a.a1 == b.a1;\n  }\n\n  function arc(r, p, a) {\n    return \"A\" + r + \",\" + r + \" 0 \" + +(a > Math.PI) + \",1 \" + p;\n  }\n\n  function curve(r0, p0, r1, p1) {\n    return \"Q 0,0 \" + p1;\n  }\n\n  chord.radius = function(v) {\n    if (!arguments.length) return radius;\n    radius = d3.functor(v);\n    return chord;\n  };\n\n  chord.source = function(v) {\n    if (!arguments.length) return source;\n    source = d3.functor(v);\n    return chord;\n  };\n\n  chord.target = function(v) {\n    if (!arguments.length) return target;\n    target = d3.functor(v);\n    return chord;\n  };\n\n  chord.startAngle = function(v) {\n    if (!arguments.length) return startAngle;\n    startAngle = d3.functor(v);\n    return chord;\n  };\n\n  chord.endAngle = function(v) {\n    if (!arguments.length) return endAngle;\n    endAngle = d3.functor(v);\n    return chord;\n  };\n\n  return chord;\n};\n\nfunction d3_svg_chordSource(d) {\n  return d.source;\n}\n\nfunction d3_svg_chordTarget(d) {\n  return d.target;\n}\n\nfunction d3_svg_chordRadius(d) {\n  return d.radius;\n}\n\nfunction d3_svg_chordStartAngle(d) {\n  return d.startAngle;\n}\n\nfunction d3_svg_chordEndAngle(d) {\n  return d.endAngle;\n}\nd3.svg.diagonal = function() {\n  var source = d3_svg_chordSource,\n      target = d3_svg_chordTarget,\n      projection = d3_svg_diagonalProjection;\n\n  function diagonal(d, i) {\n    var p0 = source.call(this, d, i),\n        p3 = target.call(this, d, i),\n        m = (p0.y + p3.y) / 2,\n        p = [p0, {x: p0.x, y: m}, {x: p3.x, y: m}, p3];\n    p = p.map(projection);\n    return \"M\" + p[0] + \"C\" + p[1] + \" \" + p[2] + \" \" + p[3];\n  }\n\n  diagonal.source = function(x) {\n    if (!arguments.length) return source;\n    source = d3.functor(x);\n    return diagonal;\n  };\n\n  diagonal.target = function(x) {\n    if (!arguments.length) return target;\n    target = d3.functor(x);\n    return diagonal;\n  };\n\n  diagonal.projection = function(x) {\n    if (!arguments.length) return projection;\n    projection = x;\n    return diagonal;\n  };\n\n  return diagonal;\n};\n\nfunction d3_svg_diagonalProjection(d) {\n  return [d.x, d.y];\n}\nd3.svg.diagonal.radial = function() {\n  var diagonal = d3.svg.diagonal(),\n      projection = d3_svg_diagonalProjection,\n      projection_ = diagonal.projection;\n\n  diagonal.projection = function(x) {\n    return arguments.length\n        ? projection_(d3_svg_diagonalRadialProjection(projection = x))\n        : projection;\n  };\n\n  return diagonal;\n};\n\nfunction d3_svg_diagonalRadialProjection(projection) {\n  return function() {\n    var d = projection.apply(this, arguments),\n        r = d[0],\n        a = d[1] + d3_svg_arcOffset;\n    return [r * Math.cos(a), r * Math.sin(a)];\n  };\n}\nd3.svg.mouse = d3.mouse;\nd3.svg.touches = d3.touches;\nd3.svg.symbol = function() {\n  var type = d3_svg_symbolType,\n      size = d3_svg_symbolSize;\n\n  function symbol(d, i) {\n    return (d3_svg_symbols.get(type.call(this, d, i))\n        || d3_svg_symbolCircle)\n        (size.call(this, d, i));\n  }\n\n  symbol.type = function(x) {\n    if (!arguments.length) return type;\n    type = d3.functor(x);\n    return symbol;\n  };\n\n  // size of symbol in square pixels\n  symbol.size = function(x) {\n    if (!arguments.length) return size;\n    size = d3.functor(x);\n    return symbol;\n  };\n\n  return symbol;\n};\n\nfunction d3_svg_symbolSize() {\n  return 64;\n}\n\nfunction d3_svg_symbolType() {\n  return \"circle\";\n}\n\nfunction d3_svg_symbolCircle(size) {\n  var r = Math.sqrt(size / Math.PI);\n  return \"M0,\" + r\n      + \"A\" + r + \",\" + r + \" 0 1,1 0,\" + (-r)\n      + \"A\" + r + \",\" + r + \" 0 1,1 0,\" + r\n      + \"Z\";\n}\n\n// TODO cross-diagonal?\nvar d3_svg_symbols = d3.map({\n  \"circle\": d3_svg_symbolCircle,\n  \"cross\": function(size) {\n    var r = Math.sqrt(size / 5) / 2;\n    return \"M\" + -3 * r + \",\" + -r\n        + \"H\" + -r\n        + \"V\" + -3 * r\n        + \"H\" + r\n        + \"V\" + -r\n        + \"H\" + 3 * r\n        + \"V\" + r\n        + \"H\" + r\n        + \"V\" + 3 * r\n        + \"H\" + -r\n        + \"V\" + r\n        + \"H\" + -3 * r\n        + \"Z\";\n  },\n  \"diamond\": function(size) {\n    var ry = Math.sqrt(size / (2 * d3_svg_symbolTan30)),\n        rx = ry * d3_svg_symbolTan30;\n    return \"M0,\" + -ry\n        + \"L\" + rx + \",0\"\n        + \" 0,\" + ry\n        + \" \" + -rx + \",0\"\n        + \"Z\";\n  },\n  \"square\": function(size) {\n    var r = Math.sqrt(size) / 2;\n    return \"M\" + -r + \",\" + -r\n        + \"L\" + r + \",\" + -r\n        + \" \" + r + \",\" + r\n        + \" \" + -r + \",\" + r\n        + \"Z\";\n  },\n  \"triangle-down\": function(size) {\n    var rx = Math.sqrt(size / d3_svg_symbolSqrt3),\n        ry = rx * d3_svg_symbolSqrt3 / 2;\n    return \"M0,\" + ry\n        + \"L\" + rx +\",\" + -ry\n        + \" \" + -rx + \",\" + -ry\n        + \"Z\";\n  },\n  \"triangle-up\": function(size) {\n    var rx = Math.sqrt(size / d3_svg_symbolSqrt3),\n        ry = rx * d3_svg_symbolSqrt3 / 2;\n    return \"M0,\" + -ry\n        + \"L\" + rx +\",\" + ry\n        + \" \" + -rx + \",\" + ry\n        + \"Z\";\n  }\n});\n\nd3.svg.symbolTypes = d3_svg_symbols.keys();\n\nvar d3_svg_symbolSqrt3 = Math.sqrt(3),\n    d3_svg_symbolTan30 = Math.tan(30 * Math.PI / 180);\nd3.svg.axis = function() {\n  var scale = d3.scale.linear(),\n      orient = \"bottom\",\n      tickMajorSize = 6,\n      tickMinorSize = 6,\n      tickEndSize = 6,\n      tickPadding = 3,\n      tickArguments_ = [10],\n      tickValues = null,\n      tickFormat_,\n      tickSubdivide = 0;\n\n  function axis(g) {\n    g.each(function() {\n      var g = d3.select(this);\n\n      // Ticks, or domain values for ordinal scales.\n      var ticks = tickValues == null ? (scale.ticks ? scale.ticks.apply(scale, tickArguments_) : scale.domain()) : tickValues,\n          tickFormat = tickFormat_ == null ? (scale.tickFormat ? scale.tickFormat.apply(scale, tickArguments_) : String) : tickFormat_;\n\n      // Minor ticks.\n      var subticks = d3_svg_axisSubdivide(scale, ticks, tickSubdivide),\n          subtick = g.selectAll(\".minor\").data(subticks, String),\n          subtickEnter = subtick.enter().insert(\"line\", \"g\").attr(\"class\", \"tick minor\").style(\"opacity\", 1e-6),\n          subtickExit = d3.transition(subtick.exit()).style(\"opacity\", 1e-6).remove(),\n          subtickUpdate = d3.transition(subtick).style(\"opacity\", 1);\n\n      // Major ticks.\n      var tick = g.selectAll(\"g\").data(ticks, String),\n          tickEnter = tick.enter().insert(\"g\", \"path\").style(\"opacity\", 1e-6),\n          tickExit = d3.transition(tick.exit()).style(\"opacity\", 1e-6).remove(),\n          tickUpdate = d3.transition(tick).style(\"opacity\", 1),\n          tickTransform;\n\n      // Domain.\n      var range = d3_scaleRange(scale),\n          path = g.selectAll(\".domain\").data([0]),\n          pathEnter = path.enter().append(\"path\").attr(\"class\", \"domain\"),\n          pathUpdate = d3.transition(path);\n\n      // Stash a snapshot of the new scale, and retrieve the old snapshot.\n      var scale1 = scale.copy(),\n          scale0 = this.__chart__ || scale1;\n      this.__chart__ = scale1;\n\n      tickEnter.append(\"line\").attr(\"class\", \"tick\");\n      tickEnter.append(\"text\");\n      tickUpdate.select(\"text\").text(tickFormat);\n\n      switch (orient) {\n        case \"bottom\": {\n          tickTransform = d3_svg_axisX;\n          subtickEnter.attr(\"y2\", tickMinorSize);\n          subtickUpdate.attr(\"x2\", 0).attr(\"y2\", tickMinorSize);\n          tickEnter.select(\"line\").attr(\"y2\", tickMajorSize);\n          tickEnter.select(\"text\").attr(\"y\", Math.max(tickMajorSize, 0) + tickPadding);\n          tickUpdate.select(\"line\").attr(\"x2\", 0).attr(\"y2\", tickMajorSize);\n          tickUpdate.select(\"text\").attr(\"x\", 0).attr(\"y\", Math.max(tickMajorSize, 0) + tickPadding).attr(\"dy\", \".71em\").attr(\"text-anchor\", \"middle\");\n          pathUpdate.attr(\"d\", \"M\" + range[0] + \",\" + tickEndSize + \"V0H\" + range[1] + \"V\" + tickEndSize);\n          break;\n        }\n        case \"top\": {\n          tickTransform = d3_svg_axisX;\n          subtickEnter.attr(\"y2\", -tickMinorSize);\n          subtickUpdate.attr(\"x2\", 0).attr(\"y2\", -tickMinorSize);\n          tickEnter.select(\"line\").attr(\"y2\", -tickMajorSize);\n          tickEnter.select(\"text\").attr(\"y\", -(Math.max(tickMajorSize, 0) + tickPadding));\n          tickUpdate.select(\"line\").attr(\"x2\", 0).attr(\"y2\", -tickMajorSize);\n          tickUpdate.select(\"text\").attr(\"x\", 0).attr(\"y\", -(Math.max(tickMajorSize, 0) + tickPadding)).attr(\"dy\", \"0em\").attr(\"text-anchor\", \"middle\");\n          pathUpdate.attr(\"d\", \"M\" + range[0] + \",\" + -tickEndSize + \"V0H\" + range[1] + \"V\" + -tickEndSize);\n          break;\n        }\n        case \"left\": {\n          tickTransform = d3_svg_axisY;\n          subtickEnter.attr(\"x2\", -tickMinorSize);\n          subtickUpdate.attr(\"x2\", -tickMinorSize).attr(\"y2\", 0);\n          tickEnter.select(\"line\").attr(\"x2\", -tickMajorSize);\n          tickEnter.select(\"text\").attr(\"x\", -(Math.max(tickMajorSize, 0) + tickPadding));\n          tickUpdate.select(\"line\").attr(\"x2\", -tickMajorSize).attr(\"y2\", 0);\n          tickUpdate.select(\"text\").attr(\"x\", -(Math.max(tickMajorSize, 0) + tickPadding)).attr(\"y\", 0).attr(\"dy\", \".32em\").attr(\"text-anchor\", \"end\");\n          pathUpdate.attr(\"d\", \"M\" + -tickEndSize + \",\" + range[0] + \"H0V\" + range[1] + \"H\" + -tickEndSize);\n          break;\n        }\n        case \"right\": {\n          tickTransform = d3_svg_axisY;\n          subtickEnter.attr(\"x2\", tickMinorSize);\n          subtickUpdate.attr(\"x2\", tickMinorSize).attr(\"y2\", 0);\n          tickEnter.select(\"line\").attr(\"x2\", tickMajorSize);\n          tickEnter.select(\"text\").attr(\"x\", Math.max(tickMajorSize, 0) + tickPadding);\n          tickUpdate.select(\"line\").attr(\"x2\", tickMajorSize).attr(\"y2\", 0);\n          tickUpdate.select(\"text\").attr(\"x\", Math.max(tickMajorSize, 0) + tickPadding).attr(\"y\", 0).attr(\"dy\", \".32em\").attr(\"text-anchor\", \"start\");\n          pathUpdate.attr(\"d\", \"M\" + tickEndSize + \",\" + range[0] + \"H0V\" + range[1] + \"H\" + tickEndSize);\n          break;\n        }\n      }\n\n      // For quantitative scales:\n      // - enter new ticks from the old scale\n      // - exit old ticks to the new scale\n      if (scale.ticks) {\n        tickEnter.call(tickTransform, scale0);\n        tickUpdate.call(tickTransform, scale1);\n        tickExit.call(tickTransform, scale1);\n        subtickEnter.call(tickTransform, scale0);\n        subtickUpdate.call(tickTransform, scale1);\n        subtickExit.call(tickTransform, scale1);\n      }\n\n      // For ordinal scales:\n      // - any entering ticks are undefined in the old scale\n      // - any exiting ticks are undefined in the new scale\n      // Therefore, we only need to transition updating ticks.\n      else {\n        var dx = scale1.rangeBand() / 2, x = function(d) { return scale1(d) + dx; };\n        tickEnter.call(tickTransform, x);\n        tickUpdate.call(tickTransform, x);\n      }\n    });\n  }\n\n  axis.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = x;\n    return axis;\n  };\n\n  axis.orient = function(x) {\n    if (!arguments.length) return orient;\n    orient = x;\n    return axis;\n  };\n\n  axis.ticks = function() {\n    if (!arguments.length) return tickArguments_;\n    tickArguments_ = arguments;\n    return axis;\n  };\n\n  axis.tickValues = function(x) {\n    if (!arguments.length) return tickValues;\n    tickValues = x;\n    return axis;\n  };\n\n  axis.tickFormat = function(x) {\n    if (!arguments.length) return tickFormat_;\n    tickFormat_ = x;\n    return axis;\n  };\n\n  axis.tickSize = function(x, y, z) {\n    if (!arguments.length) return tickMajorSize;\n    var n = arguments.length - 1;\n    tickMajorSize = +x;\n    tickMinorSize = n > 1 ? +y : tickMajorSize;\n    tickEndSize = n > 0 ? +arguments[n] : tickMajorSize;\n    return axis;\n  };\n\n  axis.tickPadding = function(x) {\n    if (!arguments.length) return tickPadding;\n    tickPadding = +x;\n    return axis;\n  };\n\n  axis.tickSubdivide = function(x) {\n    if (!arguments.length) return tickSubdivide;\n    tickSubdivide = +x;\n    return axis;\n  };\n\n  return axis;\n};\n\nfunction d3_svg_axisX(selection, x) {\n  selection.attr(\"transform\", function(d) { return \"translate(\" + x(d) + \",0)\"; });\n}\n\nfunction d3_svg_axisY(selection, y) {\n  selection.attr(\"transform\", function(d) { return \"translate(0,\" + y(d) + \")\"; });\n}\n\nfunction d3_svg_axisSubdivide(scale, ticks, m) {\n  subticks = [];\n  if (m && ticks.length > 1) {\n    var extent = d3_scaleExtent(scale.domain()),\n        subticks,\n        i = -1,\n        n = ticks.length,\n        d = (ticks[1] - ticks[0]) / ++m,\n        j,\n        v;\n    while (++i < n) {\n      for (j = m; --j > 0;) {\n        if ((v = +ticks[i] - j * d) >= extent[0]) {\n          subticks.push(v);\n        }\n      }\n    }\n    for (--i, j = 0; ++j < m && (v = +ticks[i] + j * d) < extent[1];) {\n      subticks.push(v);\n    }\n  }\n  return subticks;\n}\nd3.svg.brush = function() {\n  var event = d3_eventDispatch(brush, \"brushstart\", \"brush\", \"brushend\"),\n      x = null, // x-scale, optional\n      y = null, // y-scale, optional\n      resizes = d3_svg_brushResizes[0],\n      extent = [[0, 0], [0, 0]], // [x0, y0], [x1, y1], in pixels (integers)\n      extentDomain; // the extent in data space, lazily created\n\n  function brush(g) {\n    g.each(function() {\n      var g = d3.select(this),\n          bg = g.selectAll(\".background\").data([0]),\n          fg = g.selectAll(\".extent\").data([0]),\n          tz = g.selectAll(\".resize\").data(resizes, String),\n          e;\n\n      // Prepare the brush container for events.\n      g\n          .style(\"pointer-events\", \"all\")\n          .on(\"mousedown.brush\", brushstart)\n          .on(\"touchstart.brush\", brushstart);\n\n      // An invisible, mouseable area for starting a new brush.\n      bg.enter().append(\"rect\")\n          .attr(\"class\", \"background\")\n          .style(\"visibility\", \"hidden\")\n          .style(\"cursor\", \"crosshair\");\n\n      // The visible brush extent; style this as you like!\n      fg.enter().append(\"rect\")\n          .attr(\"class\", \"extent\")\n          .style(\"cursor\", \"move\");\n\n      // More invisible rects for resizing the extent.\n      tz.enter().append(\"g\")\n          .attr(\"class\", function(d) { return \"resize \" + d; })\n          .style(\"cursor\", function(d) { return d3_svg_brushCursor[d]; })\n        .append(\"rect\")\n          .attr(\"x\", function(d) { return /[ew]$/.test(d) ? -3 : null; })\n          .attr(\"y\", function(d) { return /^[ns]/.test(d) ? -3 : null; })\n          .attr(\"width\", 6)\n          .attr(\"height\", 6)\n          .style(\"visibility\", \"hidden\");\n\n      // Show or hide the resizers.\n      tz.style(\"display\", brush.empty() ? \"none\" : null);\n\n      // Remove any superfluous resizers.\n      tz.exit().remove();\n\n      // Initialize the background to fill the defined range.\n      // If the range isn't defined, you can post-process.\n      if (x) {\n        e = d3_scaleRange(x);\n        bg.attr(\"x\", e[0]).attr(\"width\", e[1] - e[0]);\n        redrawX(g);\n      }\n      if (y) {\n        e = d3_scaleRange(y);\n        bg.attr(\"y\", e[0]).attr(\"height\", e[1] - e[0]);\n        redrawY(g);\n      }\n      redraw(g);\n    });\n  }\n\n  function redraw(g) {\n    g.selectAll(\".resize\").attr(\"transform\", function(d) {\n      return \"translate(\" + extent[+/e$/.test(d)][0] + \",\" + extent[+/^s/.test(d)][1] + \")\";\n    });\n  }\n\n  function redrawX(g) {\n    g.select(\".extent\").attr(\"x\", extent[0][0]);\n    g.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\", extent[1][0] - extent[0][0]);\n  }\n\n  function redrawY(g) {\n    g.select(\".extent\").attr(\"y\", extent[0][1]);\n    g.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\", extent[1][1] - extent[0][1]);\n  }\n\n  function brushstart() {\n    var target = this,\n        eventTarget = d3.select(d3.event.target),\n        event_ = event.of(target, arguments),\n        g = d3.select(target),\n        resizing = eventTarget.datum(),\n        resizingX = !/^(n|s)$/.test(resizing) && x,\n        resizingY = !/^(e|w)$/.test(resizing) && y,\n        dragging = eventTarget.classed(\"extent\"),\n        center,\n        origin = mouse(),\n        offset;\n\n    var w = d3.select(window)\n        .on(\"mousemove.brush\", brushmove)\n        .on(\"mouseup.brush\", brushend)\n        .on(\"touchmove.brush\", brushmove)\n        .on(\"touchend.brush\", brushend)\n        .on(\"keydown.brush\", keydown)\n        .on(\"keyup.brush\", keyup);\n\n    // If the extent was clicked on, drag rather than brush;\n    // store the point between the mouse and extent origin instead.\n    if (dragging) {\n      origin[0] = extent[0][0] - origin[0];\n      origin[1] = extent[0][1] - origin[1];\n    }\n\n    // If a resizer was clicked on, record which side is to be resized.\n    // Also, set the origin to the opposite side.\n    else if (resizing) {\n      var ex = +/w$/.test(resizing),\n          ey = +/^n/.test(resizing);\n      offset = [extent[1 - ex][0] - origin[0], extent[1 - ey][1] - origin[1]];\n      origin[0] = extent[ex][0];\n      origin[1] = extent[ey][1];\n    }\n\n    // If the ALT key is down when starting a brush, the center is at the mouse.\n    else if (d3.event.altKey) center = origin.slice();\n\n    // Propagate the active cursor to the body for the drag duration.\n    g.style(\"pointer-events\", \"none\").selectAll(\".resize\").style(\"display\", null);\n    d3.select(\"body\").style(\"cursor\", eventTarget.style(\"cursor\"));\n\n    // Notify listeners.\n    event_({type: \"brushstart\"});\n    brushmove();\n    d3_eventCancel();\n\n    function mouse() {\n      var touches = d3.event.changedTouches;\n      return touches ? d3.touches(target, touches)[0] : d3.mouse(target);\n    }\n\n    function keydown() {\n      if (d3.event.keyCode == 32) {\n        if (!dragging) {\n          center = null;\n          origin[0] -= extent[1][0];\n          origin[1] -= extent[1][1];\n          dragging = 2;\n        }\n        d3_eventCancel();\n      }\n    }\n\n    function keyup() {\n      if (d3.event.keyCode == 32 && dragging == 2) {\n        origin[0] += extent[1][0];\n        origin[1] += extent[1][1];\n        dragging = 0;\n        d3_eventCancel();\n      }\n    }\n\n    function brushmove() {\n      var point = mouse(),\n          moved = false;\n\n      // Preserve the offset for thick resizers.\n      if (offset) {\n        point[0] += offset[0];\n        point[1] += offset[1];\n      }\n\n      if (!dragging) {\n\n        // If needed, determine the center from the current extent.\n        if (d3.event.altKey) {\n          if (!center) center = [(extent[0][0] + extent[1][0]) / 2, (extent[0][1] + extent[1][1]) / 2];\n\n          // Update the origin, for when the ALT key is released.\n          origin[0] = extent[+(point[0] < center[0])][0];\n          origin[1] = extent[+(point[1] < center[1])][1];\n        }\n\n        // When the ALT key is released, we clear the center.\n        else center = null;\n      }\n\n      // Update the brush extent for each dimension.\n      if (resizingX && move1(point, x, 0)) {\n        redrawX(g);\n        moved = true;\n      }\n      if (resizingY && move1(point, y, 1)) {\n        redrawY(g);\n        moved = true;\n      }\n\n      // Final redraw and notify listeners.\n      if (moved) {\n        redraw(g);\n        event_({type: \"brush\", mode: dragging ? \"move\" : \"resize\"});\n      }\n    }\n\n    function move1(point, scale, i) {\n      var range = d3_scaleRange(scale),\n          r0 = range[0],\n          r1 = range[1],\n          position = origin[i],\n          size = extent[1][i] - extent[0][i],\n          min,\n          max;\n\n      // When dragging, reduce the range by the extent size and position.\n      if (dragging) {\n        r0 -= position;\n        r1 -= size + position;\n      }\n\n      // Clamp the point so that the extent fits within the range extent.\n      min = Math.max(r0, Math.min(r1, point[i]));\n\n      // Compute the new extent bounds.\n      if (dragging) {\n        max = (min += position) + size;\n      } else {\n\n        // If the ALT key is pressed, then preserve the center of the extent.\n        if (center) position = Math.max(r0, Math.min(r1, 2 * center[i] - min));\n\n        // Compute the min and max of the position and point.\n        if (position < min) {\n          max = min;\n          min = position;\n        } else {\n          max = position;\n        }\n      }\n\n      // Update the stored bounds.\n      if (extent[0][i] !== min || extent[1][i] !== max) {\n        extentDomain = null;\n        extent[0][i] = min;\n        extent[1][i] = max;\n        return true;\n      }\n    }\n\n    function brushend() {\n      brushmove();\n\n      // reset the cursor styles\n      g.style(\"pointer-events\", \"all\").selectAll(\".resize\").style(\"display\", brush.empty() ? \"none\" : null);\n      d3.select(\"body\").style(\"cursor\", null);\n\n      w .on(\"mousemove.brush\", null)\n        .on(\"mouseup.brush\", null)\n        .on(\"touchmove.brush\", null)\n        .on(\"touchend.brush\", null)\n        .on(\"keydown.brush\", null)\n        .on(\"keyup.brush\", null);\n\n      event_({type: \"brushend\"});\n      d3_eventCancel();\n    }\n  }\n\n  brush.x = function(z) {\n    if (!arguments.length) return x;\n    x = z;\n    resizes = d3_svg_brushResizes[!x << 1 | !y]; // fore!\n    return brush;\n  };\n\n  brush.y = function(z) {\n    if (!arguments.length) return y;\n    y = z;\n    resizes = d3_svg_brushResizes[!x << 1 | !y]; // fore!\n    return brush;\n  };\n\n  brush.extent = function(z) {\n    var x0, x1, y0, y1, t;\n\n    // Invert the pixel extent to data-space.\n    if (!arguments.length) {\n      z = extentDomain || extent;\n      if (x) {\n        x0 = z[0][0], x1 = z[1][0];\n        if (!extentDomain) {\n          x0 = extent[0][0], x1 = extent[1][0];\n          if (x.invert) x0 = x.invert(x0), x1 = x.invert(x1);\n          if (x1 < x0) t = x0, x0 = x1, x1 = t;\n        }\n      }\n      if (y) {\n        y0 = z[0][1], y1 = z[1][1];\n        if (!extentDomain) {\n          y0 = extent[0][1], y1 = extent[1][1];\n          if (y.invert) y0 = y.invert(y0), y1 = y.invert(y1);\n          if (y1 < y0) t = y0, y0 = y1, y1 = t;\n        }\n      }\n      return x && y ? [[x0, y0], [x1, y1]] : x ? [x0, x1] : y && [y0, y1];\n    }\n\n    // Scale the data-space extent to pixels.\n    extentDomain = [[0, 0], [0, 0]];\n    if (x) {\n      x0 = z[0], x1 = z[1];\n      if (y) x0 = x0[0], x1 = x1[0];\n      extentDomain[0][0] = x0, extentDomain[1][0] = x1;\n      if (x.invert) x0 = x(x0), x1 = x(x1);\n      if (x1 < x0) t = x0, x0 = x1, x1 = t;\n      extent[0][0] = x0 | 0, extent[1][0] = x1 | 0;\n    }\n    if (y) {\n      y0 = z[0], y1 = z[1];\n      if (x) y0 = y0[1], y1 = y1[1];\n      extentDomain[0][1] = y0, extentDomain[1][1] = y1;\n      if (y.invert) y0 = y(y0), y1 = y(y1);\n      if (y1 < y0) t = y0, y0 = y1, y1 = t;\n      extent[0][1] = y0 | 0, extent[1][1] = y1 | 0;\n    }\n\n    return brush;\n  };\n\n  brush.clear = function() {\n    extentDomain = null;\n    extent[0][0] =\n    extent[0][1] =\n    extent[1][0] =\n    extent[1][1] = 0;\n    return brush;\n  };\n\n  brush.empty = function() {\n    return (x && extent[0][0] === extent[1][0])\n        || (y && extent[0][1] === extent[1][1]);\n  };\n\n  return d3.rebind(brush, event, \"on\");\n};\n\nvar d3_svg_brushCursor = {\n  n: \"ns-resize\",\n  e: \"ew-resize\",\n  s: \"ns-resize\",\n  w: \"ew-resize\",\n  nw: \"nwse-resize\",\n  ne: \"nesw-resize\",\n  se: \"nwse-resize\",\n  sw: \"nesw-resize\"\n};\n\nvar d3_svg_brushResizes = [\n  [\"n\", \"e\", \"s\", \"w\", \"nw\", \"ne\", \"se\", \"sw\"],\n  [\"e\", \"w\"],\n  [\"n\", \"s\"],\n  []\n];\nd3.behavior = {};\n// TODO Track touch points by identifier.\n\nd3.behavior.drag = function() {\n  var event = d3_eventDispatch(drag, \"drag\", \"dragstart\", \"dragend\"),\n      origin = null;\n\n  function drag() {\n    this.on(\"mousedown.drag\", mousedown)\n        .on(\"touchstart.drag\", mousedown);\n  }\n\n  function mousedown() {\n    var target = this,\n        event_ = event.of(target, arguments),\n        eventTarget = d3.event.target,\n        offset,\n        origin_ = point(),\n        moved = 0;\n\n    var w = d3.select(window)\n        .on(\"mousemove.drag\", dragmove)\n        .on(\"touchmove.drag\", dragmove)\n        .on(\"mouseup.drag\", dragend, true)\n        .on(\"touchend.drag\", dragend, true);\n\n    if (origin) {\n      offset = origin.apply(target, arguments);\n      offset = [offset.x - origin_[0], offset.y - origin_[1]];\n    } else {\n      offset = [0, 0];\n    }\n\n    event_({type: \"dragstart\"});\n\n    function point() {\n      var p = target.parentNode,\n          t = d3.event.changedTouches;\n      return t ? d3.touches(p, t)[0] : d3.mouse(p);\n    }\n\n    function dragmove() {\n      if (!target.parentNode) return dragend(); // target removed from DOM\n\n      var p = point(),\n          dx = p[0] - origin_[0],\n          dy = p[1] - origin_[1];\n\n      moved |= dx | dy;\n      origin_ = p;\n      d3_eventCancel();\n\n      event_({type: \"drag\", x: p[0] + offset[0], y: p[1] + offset[1], dx: dx, dy: dy});\n    }\n\n    function dragend() {\n      event_({type: \"dragend\"});\n\n      // if moved, prevent the mouseup (and possibly click) from propagating\n      if (moved) {\n        d3_eventCancel();\n        if (d3.event.target === eventTarget) w.on(\"click.drag\", click, true);\n      }\n\n      w .on(\"mousemove.drag\", null)\n        .on(\"touchmove.drag\", null)\n        .on(\"mouseup.drag\", null)\n        .on(\"touchend.drag\", null);\n    }\n\n    // prevent the subsequent click from propagating (e.g., for anchors)\n    function click() {\n      d3_eventCancel();\n      w.on(\"click.drag\", null);\n    }\n  }\n\n  drag.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    return drag;\n  };\n\n  return d3.rebind(drag, event, \"on\");\n};\nd3.behavior.zoom = function() {\n  var translate = [0, 0],\n      translate0, // translate when we started zooming (to avoid drift)\n      scale = 1,\n      scale0, // scale when we started touching\n      scaleExtent = d3_behavior_zoomInfinity,\n      event = d3_eventDispatch(zoom, \"zoom\"),\n      x0,\n      x1,\n      y0,\n      y1,\n      touchtime; // time of last touchstart (to detect double-tap)\n\n  function zoom() {\n    this\n        .on(\"mousedown.zoom\", mousedown)\n        .on(\"mousewheel.zoom\", mousewheel)\n        .on(\"mousemove.zoom\", mousemove)\n        .on(\"DOMMouseScroll.zoom\", mousewheel)\n        .on(\"dblclick.zoom\", dblclick)\n        .on(\"touchstart.zoom\", touchstart)\n        .on(\"touchmove.zoom\", touchmove)\n        .on(\"touchend.zoom\", touchstart);\n  }\n\n  zoom.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = x.map(Number);\n    return zoom;\n  };\n\n  zoom.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return zoom;\n  };\n\n  zoom.scaleExtent = function(x) {\n    if (!arguments.length) return scaleExtent;\n    scaleExtent = x == null ? d3_behavior_zoomInfinity : x.map(Number);\n    return zoom;\n  };\n\n  zoom.x = function(z) {\n    if (!arguments.length) return x1;\n    x1 = z;\n    x0 = z.copy();\n    return zoom;\n  };\n\n  zoom.y = function(z) {\n    if (!arguments.length) return y1;\n    y1 = z;\n    y0 = z.copy();\n    return zoom;\n  };\n\n  function location(p) {\n    return [(p[0] - translate[0]) / scale, (p[1] - translate[1]) / scale];\n  }\n\n  function point(l) {\n    return [l[0] * scale + translate[0], l[1] * scale + translate[1]];\n  }\n\n  function scaleTo(s) {\n    scale = Math.max(scaleExtent[0], Math.min(scaleExtent[1], s));\n  }\n\n  function translateTo(p, l) {\n    l = point(l);\n    translate[0] += p[0] - l[0];\n    translate[1] += p[1] - l[1];\n  }\n\n  function dispatch(event) {\n    if (x1) x1.domain(x0.range().map(function(x) { return (x - translate[0]) / scale; }).map(x0.invert));\n    if (y1) y1.domain(y0.range().map(function(y) { return (y - translate[1]) / scale; }).map(y0.invert));\n    d3.event.preventDefault();\n    event({type: \"zoom\", scale: scale, translate: translate});\n  }\n\n  function mousedown() {\n    var target = this,\n        event_ = event.of(target, arguments),\n        eventTarget = d3.event.target,\n        moved = 0,\n        w = d3.select(window).on(\"mousemove.zoom\", mousemove).on(\"mouseup.zoom\", mouseup),\n        l = location(d3.mouse(target));\n\n    window.focus();\n    d3_eventCancel();\n\n    function mousemove() {\n      moved = 1;\n      translateTo(d3.mouse(target), l);\n      dispatch(event_);\n    }\n\n    function mouseup() {\n      if (moved) d3_eventCancel();\n      w.on(\"mousemove.zoom\", null).on(\"mouseup.zoom\", null);\n      if (moved && d3.event.target === eventTarget) w.on(\"click.zoom\", click);\n    }\n\n    function click() {\n      d3_eventCancel();\n      w.on(\"click.zoom\", null);\n    }\n  }\n\n  function mousewheel() {\n    if (!translate0) translate0 = location(d3.mouse(this));\n    scaleTo(Math.pow(2, d3_behavior_zoomDelta() * .002) * scale);\n    translateTo(d3.mouse(this), translate0);\n    dispatch(event.of(this, arguments));\n  }\n\n  function mousemove() {\n    translate0 = null;\n  }\n\n  function dblclick() {\n    var p = d3.mouse(this), l = location(p);\n    scaleTo(d3.event.shiftKey ? scale / 2 : scale * 2);\n    translateTo(p, l);\n    dispatch(event.of(this, arguments));\n  }\n\n  function touchstart() {\n    var touches = d3.touches(this),\n        now = Date.now();\n\n    scale0 = scale;\n    translate0 = {};\n    touches.forEach(function(t) { translate0[t.identifier] = location(t); });\n    d3_eventCancel();\n\n    if ((touches.length === 1) && (now - touchtime < 500)) { // dbltap\n      var p = touches[0], l = location(touches[0]);\n      scaleTo(scale * 2);\n      translateTo(p, l);\n      dispatch(event.of(this, arguments));\n    }\n    touchtime = now;\n  }\n\n  function touchmove() {\n    var touches = d3.touches(this),\n        p0 = touches[0],\n        l0 = translate0[p0.identifier];\n    if (p1 = touches[1]) {\n      var p1, l1 = translate0[p1.identifier];\n      p0 = [(p0[0] + p1[0]) / 2, (p0[1] + p1[1]) / 2];\n      l0 = [(l0[0] + l1[0]) / 2, (l0[1] + l1[1]) / 2];\n      scaleTo(d3.event.scale * scale0);\n    }\n    translateTo(p0, l0);\n    dispatch(event.of(this, arguments));\n  }\n\n  return d3.rebind(zoom, event, \"on\");\n};\n\nvar d3_behavior_zoomDiv, // for interpreting mousewheel events\n    d3_behavior_zoomInfinity = [0, Infinity]; // default scale extent\n\nfunction d3_behavior_zoomDelta() {\n\n  // mousewheel events are totally broken!\n  // https://bugs.webkit.org/show_bug.cgi?id=40441\n  // not only that, but Chrome and Safari differ in re. to acceleration!\n  if (!d3_behavior_zoomDiv) {\n    d3_behavior_zoomDiv = d3.select(\"body\").append(\"div\")\n        .style(\"visibility\", \"hidden\")\n        .style(\"top\", 0)\n        .style(\"height\", 0)\n        .style(\"width\", 0)\n        .style(\"overflow-y\", \"scroll\")\n      .append(\"div\")\n        .style(\"height\", \"2000px\")\n      .node().parentNode;\n  }\n\n  var e = d3.event, delta;\n  try {\n    d3_behavior_zoomDiv.scrollTop = 1000;\n    d3_behavior_zoomDiv.dispatchEvent(e);\n    delta = 1000 - d3_behavior_zoomDiv.scrollTop;\n  } catch (error) {\n    delta = e.wheelDelta || (-e.detail * 5);\n  }\n\n  return delta;\n}\nd3.layout = {};\n// Implements hierarchical edge bundling using Holten's algorithm. For each\n// input link, a path is computed that travels through the tree, up the parent\n// hierarchy to the least common ancestor, and then back down to the destination\n// node. Each path is simply an array of nodes.\nd3.layout.bundle = function() {\n  return function(links) {\n    var paths = [],\n        i = -1,\n        n = links.length;\n    while (++i < n) paths.push(d3_layout_bundlePath(links[i]));\n    return paths;\n  };\n};\n\nfunction d3_layout_bundlePath(link) {\n  var start = link.source,\n      end = link.target,\n      lca = d3_layout_bundleLeastCommonAncestor(start, end),\n      points = [start];\n  while (start !== lca) {\n    start = start.parent;\n    points.push(start);\n  }\n  var k = points.length;\n  while (end !== lca) {\n    points.splice(k, 0, end);\n    end = end.parent;\n  }\n  return points;\n}\n\nfunction d3_layout_bundleAncestors(node) {\n  var ancestors = [],\n      parent = node.parent;\n  while (parent != null) {\n    ancestors.push(node);\n    node = parent;\n    parent = parent.parent;\n  }\n  ancestors.push(node);\n  return ancestors;\n}\n\nfunction d3_layout_bundleLeastCommonAncestor(a, b) {\n  if (a === b) return a;\n  var aNodes = d3_layout_bundleAncestors(a),\n      bNodes = d3_layout_bundleAncestors(b),\n      aNode = aNodes.pop(),\n      bNode = bNodes.pop(),\n      sharedNode = null;\n  while (aNode === bNode) {\n    sharedNode = aNode;\n    aNode = aNodes.pop();\n    bNode = bNodes.pop();\n  }\n  return sharedNode;\n}\nd3.layout.chord = function() {\n  var chord = {},\n      chords,\n      groups,\n      matrix,\n      n,\n      padding = 0,\n      sortGroups,\n      sortSubgroups,\n      sortChords;\n\n  function relayout() {\n    var subgroups = {},\n        groupSums = [],\n        groupIndex = d3.range(n),\n        subgroupIndex = [],\n        k,\n        x,\n        x0,\n        i,\n        j;\n\n    chords = [];\n    groups = [];\n\n    // Compute the sum.\n    k = 0, i = -1; while (++i < n) {\n      x = 0, j = -1; while (++j < n) {\n        x += matrix[i][j];\n      }\n      groupSums.push(x);\n      subgroupIndex.push(d3.range(n));\n      k += x;\n    }\n\n    // Sort groups…\n    if (sortGroups) {\n      groupIndex.sort(function(a, b) {\n        return sortGroups(groupSums[a], groupSums[b]);\n      });\n    }\n\n    // Sort subgroups…\n    if (sortSubgroups) {\n      subgroupIndex.forEach(function(d, i) {\n        d.sort(function(a, b) {\n          return sortSubgroups(matrix[i][a], matrix[i][b]);\n        });\n      });\n    }\n\n    // Convert the sum to scaling factor for [0, 2pi].\n    // TODO Allow start and end angle to be specified.\n    // TODO Allow padding to be specified as percentage?\n    k = (2 * Math.PI - padding * n) / k;\n\n    // Compute the start and end angle for each group and subgroup.\n    // Note: Opera has a bug reordering object literal properties!\n    x = 0, i = -1; while (++i < n) {\n      x0 = x, j = -1; while (++j < n) {\n        var di = groupIndex[i],\n            dj = subgroupIndex[di][j],\n            v = matrix[di][dj],\n            a0 = x,\n            a1 = x += v * k;\n        subgroups[di + \"-\" + dj] = {\n          index: di,\n          subindex: dj,\n          startAngle: a0,\n          endAngle: a1,\n          value: v\n        };\n      }\n      groups.push({\n        index: di,\n        startAngle: x0,\n        endAngle: x,\n        value: (x - x0) / k\n      });\n      x += padding;\n    }\n\n    // Generate chords for each (non-empty) subgroup-subgroup link.\n    i = -1; while (++i < n) {\n      j = i - 1; while (++j < n) {\n        var source = subgroups[i + \"-\" + j],\n            target = subgroups[j + \"-\" + i];\n        if (source.value || target.value) {\n          chords.push(source.value < target.value\n              ? {source: target, target: source}\n              : {source: source, target: target});\n        }\n      }\n    }\n\n    if (sortChords) resort();\n  }\n\n  function resort() {\n    chords.sort(function(a, b) {\n      return sortChords(\n          (a.source.value + a.target.value) / 2,\n          (b.source.value + b.target.value) / 2);\n    });\n  }\n\n  chord.matrix = function(x) {\n    if (!arguments.length) return matrix;\n    n = (matrix = x) && matrix.length;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.padding = function(x) {\n    if (!arguments.length) return padding;\n    padding = x;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.sortGroups = function(x) {\n    if (!arguments.length) return sortGroups;\n    sortGroups = x;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.sortSubgroups = function(x) {\n    if (!arguments.length) return sortSubgroups;\n    sortSubgroups = x;\n    chords = null;\n    return chord;\n  };\n\n  chord.sortChords = function(x) {\n    if (!arguments.length) return sortChords;\n    sortChords = x;\n    if (chords) resort();\n    return chord;\n  };\n\n  chord.chords = function() {\n    if (!chords) relayout();\n    return chords;\n  };\n\n  chord.groups = function() {\n    if (!groups) relayout();\n    return groups;\n  };\n\n  return chord;\n};\n// A rudimentary force layout using Gauss-Seidel.\nd3.layout.force = function() {\n  var force = {},\n      event = d3.dispatch(\"start\", \"tick\", \"end\"),\n      size = [1, 1],\n      drag,\n      alpha,\n      friction = .9,\n      linkDistance = d3_layout_forceLinkDistance,\n      linkStrength = d3_layout_forceLinkStrength,\n      charge = -30,\n      gravity = .1,\n      theta = .8,\n      interval,\n      nodes = [],\n      links = [],\n      distances,\n      strengths,\n      charges;\n\n  function repulse(node) {\n    return function(quad, x1, y1, x2, y2) {\n      if (quad.point !== node) {\n        var dx = quad.cx - node.x,\n            dy = quad.cy - node.y,\n            dn = 1 / Math.sqrt(dx * dx + dy * dy);\n\n        /* Barnes-Hut criterion. */\n        if ((x2 - x1) * dn < theta) {\n          var k = quad.charge * dn * dn;\n          node.px -= dx * k;\n          node.py -= dy * k;\n          return true;\n        }\n\n        if (quad.point && isFinite(dn)) {\n          var k = quad.pointCharge * dn * dn;\n          node.px -= dx * k;\n          node.py -= dy * k;\n        }\n      }\n      return !quad.charge;\n    };\n  }\n\n  force.tick = function() {\n    // simulated annealing, basically\n    if ((alpha *= .99) < .005) {\n      event.end({type: \"end\", alpha: alpha = 0});\n      return true;\n    }\n\n    var n = nodes.length,\n        m = links.length,\n        q,\n        i, // current index\n        o, // current object\n        s, // current source\n        t, // current target\n        l, // current distance\n        k, // current force\n        x, // x-distance\n        y; // y-distance\n\n    // gauss-seidel relaxation for links\n    for (i = 0; i < m; ++i) {\n      o = links[i];\n      s = o.source;\n      t = o.target;\n      x = t.x - s.x;\n      y = t.y - s.y;\n      if (l = (x * x + y * y)) {\n        l = alpha * strengths[i] * ((l = Math.sqrt(l)) - distances[i]) / l;\n        x *= l;\n        y *= l;\n        t.x -= x * (k = s.weight / (t.weight + s.weight));\n        t.y -= y * k;\n        s.x += x * (k = 1 - k);\n        s.y += y * k;\n      }\n    }\n\n    // apply gravity forces\n    if (k = alpha * gravity) {\n      x = size[0] / 2;\n      y = size[1] / 2;\n      i = -1; if (k) while (++i < n) {\n        o = nodes[i];\n        o.x += (x - o.x) * k;\n        o.y += (y - o.y) * k;\n      }\n    }\n\n    // compute quadtree center of mass and apply charge forces\n    if (charge) {\n      d3_layout_forceAccumulate(q = d3.geom.quadtree(nodes), alpha, charges);\n      i = -1; while (++i < n) {\n        if (!(o = nodes[i]).fixed) {\n          q.visit(repulse(o));\n        }\n      }\n    }\n\n    // position verlet integration\n    i = -1; while (++i < n) {\n      o = nodes[i];\n      if (o.fixed) {\n        o.x = o.px;\n        o.y = o.py;\n      } else {\n        o.x -= (o.px - (o.px = o.x)) * friction;\n        o.y -= (o.py - (o.py = o.y)) * friction;\n      }\n    }\n\n    event.tick({type: \"tick\", alpha: alpha});\n  };\n\n  force.nodes = function(x) {\n    if (!arguments.length) return nodes;\n    nodes = x;\n    return force;\n  };\n\n  force.links = function(x) {\n    if (!arguments.length) return links;\n    links = x;\n    return force;\n  };\n\n  force.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return force;\n  };\n\n  force.linkDistance = function(x) {\n    if (!arguments.length) return linkDistance;\n    linkDistance = d3.functor(x);\n    return force;\n  };\n\n  // For backwards-compatibility.\n  force.distance = force.linkDistance;\n\n  force.linkStrength = function(x) {\n    if (!arguments.length) return linkStrength;\n    linkStrength = d3.functor(x);\n    return force;\n  };\n\n  force.friction = function(x) {\n    if (!arguments.length) return friction;\n    friction = x;\n    return force;\n  };\n\n  force.charge = function(x) {\n    if (!arguments.length) return charge;\n    charge = typeof x === \"function\" ? x : +x;\n    return force;\n  };\n\n  force.gravity = function(x) {\n    if (!arguments.length) return gravity;\n    gravity = x;\n    return force;\n  };\n\n  force.theta = function(x) {\n    if (!arguments.length) return theta;\n    theta = x;\n    return force;\n  };\n\n  force.alpha = function(x) {\n    if (!arguments.length) return alpha;\n\n    if (alpha) { // if we're already running\n      if (x > 0) alpha = x; // we might keep it hot\n      else alpha = 0; // or, next tick will dispatch \"end\"\n    } else if (x > 0) { // otherwise, fire it up!\n      event.start({type: \"start\", alpha: alpha = x});\n      d3.timer(force.tick);\n    }\n\n    return force;\n  };\n\n  force.start = function() {\n    var i,\n        j,\n        n = nodes.length,\n        m = links.length,\n        w = size[0],\n        h = size[1],\n        neighbors,\n        o;\n\n    for (i = 0; i < n; ++i) {\n      (o = nodes[i]).index = i;\n      o.weight = 0;\n    }\n\n    distances = [];\n    strengths = [];\n    for (i = 0; i < m; ++i) {\n      o = links[i];\n      if (typeof o.source == \"number\") o.source = nodes[o.source];\n      if (typeof o.target == \"number\") o.target = nodes[o.target];\n      distances[i] = linkDistance.call(this, o, i);\n      strengths[i] = linkStrength.call(this, o, i);\n      ++o.source.weight;\n      ++o.target.weight;\n    }\n\n    for (i = 0; i < n; ++i) {\n      o = nodes[i];\n      if (isNaN(o.x)) o.x = position(\"x\", w);\n      if (isNaN(o.y)) o.y = position(\"y\", h);\n      if (isNaN(o.px)) o.px = o.x;\n      if (isNaN(o.py)) o.py = o.y;\n    }\n\n    charges = [];\n    if (typeof charge === \"function\") {\n      for (i = 0; i < n; ++i) {\n        charges[i] = +charge.call(this, nodes[i], i);\n      }\n    } else {\n      for (i = 0; i < n; ++i) {\n        charges[i] = charge;\n      }\n    }\n\n    // initialize node position based on first neighbor\n    function position(dimension, size) {\n      var neighbors = neighbor(i),\n          j = -1,\n          m = neighbors.length,\n          x;\n      while (++j < m) if (!isNaN(x = neighbors[j][dimension])) return x;\n      return Math.random() * size;\n    }\n\n    // initialize neighbors lazily\n    function neighbor() {\n      if (!neighbors) {\n        neighbors = [];\n        for (j = 0; j < n; ++j) {\n          neighbors[j] = [];\n        }\n        for (j = 0; j < m; ++j) {\n          var o = links[j];\n          neighbors[o.source.index].push(o.target);\n          neighbors[o.target.index].push(o.source);\n        }\n      }\n      return neighbors[i];\n    }\n\n    return force.resume();\n  };\n\n  force.resume = function() {\n    return force.alpha(.1);\n  };\n\n  force.stop = function() {\n    return force.alpha(0);\n  };\n\n  // use `node.call(force.drag)` to make nodes draggable\n  force.drag = function() {\n    if (!drag) drag = d3.behavior.drag()\n        .origin(Object)\n        .on(\"dragstart\", dragstart)\n        .on(\"drag\", d3_layout_forceDrag)\n        .on(\"dragend\", d3_layout_forceDragEnd);\n\n    this.on(\"mouseover.force\", d3_layout_forceDragOver)\n        .on(\"mouseout.force\", d3_layout_forceDragOut)\n        .call(drag);\n  };\n\n  function dragstart(d) {\n    d3_layout_forceDragOver(d3_layout_forceDragNode = d);\n    d3_layout_forceDragForce = force;\n  }\n\n  return d3.rebind(force, event, \"on\");\n};\n\nvar d3_layout_forceDragForce,\n    d3_layout_forceDragNode;\n\nfunction d3_layout_forceDragOver(d) {\n  d.fixed |= 2;\n}\n\nfunction d3_layout_forceDragOut(d) {\n  if (d !== d3_layout_forceDragNode) d.fixed &= 1;\n}\n\nfunction d3_layout_forceDragEnd() {\n  d3_layout_forceDragNode.fixed &= 1;\n  d3_layout_forceDragForce = d3_layout_forceDragNode = null;\n}\n\nfunction d3_layout_forceDrag() {\n  d3_layout_forceDragNode.px = d3.event.x;\n  d3_layout_forceDragNode.py = d3.event.y;\n  d3_layout_forceDragForce.resume(); // restart annealing\n}\n\nfunction d3_layout_forceAccumulate(quad, alpha, charges) {\n  var cx = 0,\n      cy = 0;\n  quad.charge = 0;\n  if (!quad.leaf) {\n    var nodes = quad.nodes,\n        n = nodes.length,\n        i = -1,\n        c;\n    while (++i < n) {\n      c = nodes[i];\n      if (c == null) continue;\n      d3_layout_forceAccumulate(c, alpha, charges);\n      quad.charge += c.charge;\n      cx += c.charge * c.cx;\n      cy += c.charge * c.cy;\n    }\n  }\n  if (quad.point) {\n    // jitter internal nodes that are coincident\n    if (!quad.leaf) {\n      quad.point.x += Math.random() - .5;\n      quad.point.y += Math.random() - .5;\n    }\n    var k = alpha * charges[quad.point.index];\n    quad.charge += quad.pointCharge = k;\n    cx += k * quad.point.x;\n    cy += k * quad.point.y;\n  }\n  quad.cx = cx / quad.charge;\n  quad.cy = cy / quad.charge;\n}\n\nfunction d3_layout_forceLinkDistance(link) {\n  return 20;\n}\n\nfunction d3_layout_forceLinkStrength(link) {\n  return 1;\n}\nd3.layout.partition = function() {\n  var hierarchy = d3.layout.hierarchy(),\n      size = [1, 1]; // width, height\n\n  function position(node, x, dx, dy) {\n    var children = node.children;\n    node.x = x;\n    node.y = node.depth * dy;\n    node.dx = dx;\n    node.dy = dy;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n,\n          c,\n          d;\n      dx = node.value ? dx / node.value : 0;\n      while (++i < n) {\n        position(c = children[i], x, d = c.value * dx, dy);\n        x += d;\n      }\n    }\n  }\n\n  function depth(node) {\n    var children = node.children,\n        d = 0;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n;\n      while (++i < n) d = Math.max(d, depth(children[i]));\n    }\n    return 1 + d;\n  }\n\n  function partition(d, i) {\n    var nodes = hierarchy.call(this, d, i);\n    position(nodes[0], 0, size[0], size[1] / depth(nodes[0]));\n    return nodes;\n  }\n\n  partition.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return partition;\n  };\n\n  return d3_layout_hierarchyRebind(partition, hierarchy);\n};\nd3.layout.pie = function() {\n  var value = Number,\n      sort = d3_layout_pieSortByValue,\n      startAngle = 0,\n      endAngle = 2 * Math.PI;\n\n  function pie(data, i) {\n\n    // Compute the numeric values for each data element.\n    var values = data.map(function(d, i) { return +value.call(pie, d, i); });\n\n    // Compute the start angle.\n    var a = +(typeof startAngle === \"function\"\n        ? startAngle.apply(this, arguments)\n        : startAngle);\n\n    // Compute the angular scale factor: from value to radians.\n    var k = ((typeof endAngle === \"function\"\n        ? endAngle.apply(this, arguments)\n        : endAngle) - startAngle)\n        / d3.sum(values);\n\n    // Optionally sort the data.\n    var index = d3.range(data.length);\n    if (sort != null) index.sort(sort === d3_layout_pieSortByValue\n        ? function(i, j) { return values[j] - values[i]; }\n        : function(i, j) { return sort(data[i], data[j]); });\n\n    // Compute the arcs!\n    // They are stored in the original data's order.\n    var arcs = [];\n    index.forEach(function(i) {\n      arcs[i] = {\n        data: data[i],\n        value: d = values[i],\n        startAngle: a,\n        endAngle: a += d * k\n      };\n    });\n    return arcs;\n  }\n\n  /**\n   * Specifies the value function *x*, which returns a nonnegative numeric value\n   * for each datum. The default value function is `Number`. The value function\n   * is passed two arguments: the current datum and the current index.\n   */\n  pie.value = function(x) {\n    if (!arguments.length) return value;\n    value = x;\n    return pie;\n  };\n\n  /**\n   * Specifies a sort comparison operator *x*. The comparator is passed two data\n   * elements from the data array, a and b; it returns a negative value if a is\n   * less than b, a positive value if a is greater than b, and zero if a equals\n   * b.\n   */\n  pie.sort = function(x) {\n    if (!arguments.length) return sort;\n    sort = x;\n    return pie;\n  };\n\n  /**\n   * Specifies the overall start angle of the pie chart. Defaults to 0. The\n   * start angle can be specified either as a constant or as a function; in the\n   * case of a function, it is evaluated once per array (as opposed to per\n   * element).\n   */\n  pie.startAngle = function(x) {\n    if (!arguments.length) return startAngle;\n    startAngle = x;\n    return pie;\n  };\n\n  /**\n   * Specifies the overall end angle of the pie chart. Defaults to 2π. The\n   * end angle can be specified either as a constant or as a function; in the\n   * case of a function, it is evaluated once per array (as opposed to per\n   * element).\n   */\n  pie.endAngle = function(x) {\n    if (!arguments.length) return endAngle;\n    endAngle = x;\n    return pie;\n  };\n\n  return pie;\n};\n\nvar d3_layout_pieSortByValue = {};\n// data is two-dimensional array of x,y; we populate y0\nd3.layout.stack = function() {\n  var values = Object,\n      order = d3_layout_stackOrderDefault,\n      offset = d3_layout_stackOffsetZero,\n      out = d3_layout_stackOut,\n      x = d3_layout_stackX,\n      y = d3_layout_stackY;\n\n  function stack(data, index) {\n\n    // Convert series to canonical two-dimensional representation.\n    var series = data.map(function(d, i) {\n      return values.call(stack, d, i);\n    });\n\n    // Convert each series to canonical [[x,y]] representation.\n    var points = series.map(function(d, i) {\n      return d.map(function(v, i) {\n        return [x.call(stack, v, i), y.call(stack, v, i)];\n      });\n    });\n\n    // Compute the order of series, and permute them.\n    var orders = order.call(stack, points, index);\n    series = d3.permute(series, orders);\n    points = d3.permute(points, orders);\n\n    // Compute the baseline…\n    var offsets = offset.call(stack, points, index);\n\n    // And propagate it to other series.\n    var n = series.length,\n        m = series[0].length,\n        i,\n        j,\n        o;\n    for (j = 0; j < m; ++j) {\n      out.call(stack, series[0][j], o = offsets[j], points[0][j][1]);\n      for (i = 1; i < n; ++i) {\n        out.call(stack, series[i][j], o += points[i - 1][j][1], points[i][j][1]);\n      }\n    }\n\n    return data;\n  }\n\n  stack.values = function(x) {\n    if (!arguments.length) return values;\n    values = x;\n    return stack;\n  };\n\n  stack.order = function(x) {\n    if (!arguments.length) return order;\n    order = typeof x === \"function\" ? x : d3_layout_stackOrders.get(x) || d3_layout_stackOrderDefault;\n    return stack;\n  };\n\n  stack.offset = function(x) {\n    if (!arguments.length) return offset;\n    offset = typeof x === \"function\" ? x : d3_layout_stackOffsets.get(x) || d3_layout_stackOffsetZero;\n    return stack;\n  };\n\n  stack.x = function(z) {\n    if (!arguments.length) return x;\n    x = z;\n    return stack;\n  };\n\n  stack.y = function(z) {\n    if (!arguments.length) return y;\n    y = z;\n    return stack;\n  };\n\n  stack.out = function(z) {\n    if (!arguments.length) return out;\n    out = z;\n    return stack;\n  };\n\n  return stack;\n}\n\nfunction d3_layout_stackX(d) {\n  return d.x;\n}\n\nfunction d3_layout_stackY(d) {\n  return d.y;\n}\n\nfunction d3_layout_stackOut(d, y0, y) {\n  d.y0 = y0;\n  d.y = y;\n}\n\nvar d3_layout_stackOrders = d3.map({\n\n  \"inside-out\": function(data) {\n    var n = data.length,\n        i,\n        j,\n        max = data.map(d3_layout_stackMaxIndex),\n        sums = data.map(d3_layout_stackReduceSum),\n        index = d3.range(n).sort(function(a, b) { return max[a] - max[b]; }),\n        top = 0,\n        bottom = 0,\n        tops = [],\n        bottoms = [];\n    for (i = 0; i < n; ++i) {\n      j = index[i];\n      if (top < bottom) {\n        top += sums[j];\n        tops.push(j);\n      } else {\n        bottom += sums[j];\n        bottoms.push(j);\n      }\n    }\n    return bottoms.reverse().concat(tops);\n  },\n\n  \"reverse\": function(data) {\n    return d3.range(data.length).reverse();\n  },\n\n  \"default\": d3_layout_stackOrderDefault\n\n});\n\nvar d3_layout_stackOffsets = d3.map({\n\n  \"silhouette\": function(data) {\n    var n = data.length,\n        m = data[0].length,\n        sums = [],\n        max = 0,\n        i,\n        j,\n        o,\n        y0 = [];\n    for (j = 0; j < m; ++j) {\n      for (i = 0, o = 0; i < n; i++) o += data[i][j][1];\n      if (o > max) max = o;\n      sums.push(o);\n    }\n    for (j = 0; j < m; ++j) {\n      y0[j] = (max - sums[j]) / 2;\n    }\n    return y0;\n  },\n\n  \"wiggle\": function(data) {\n    var n = data.length,\n        x = data[0],\n        m = x.length,\n        max = 0,\n        i,\n        j,\n        k,\n        s1,\n        s2,\n        s3,\n        dx,\n        o,\n        o0,\n        y0 = [];\n    y0[0] = o = o0 = 0;\n    for (j = 1; j < m; ++j) {\n      for (i = 0, s1 = 0; i < n; ++i) s1 += data[i][j][1];\n      for (i = 0, s2 = 0, dx = x[j][0] - x[j - 1][0]; i < n; ++i) {\n        for (k = 0, s3 = (data[i][j][1] - data[i][j - 1][1]) / (2 * dx); k < i; ++k) {\n          s3 += (data[k][j][1] - data[k][j - 1][1]) / dx;\n        }\n        s2 += s3 * data[i][j][1];\n      }\n      y0[j] = o -= s1 ? s2 / s1 * dx : 0;\n      if (o < o0) o0 = o;\n    }\n    for (j = 0; j < m; ++j) y0[j] -= o0;\n    return y0;\n  },\n\n  \"expand\": function(data) {\n    var n = data.length,\n        m = data[0].length,\n        k = 1 / n,\n        i,\n        j,\n        o,\n        y0 = [];\n    for (j = 0; j < m; ++j) {\n      for (i = 0, o = 0; i < n; i++) o += data[i][j][1];\n      if (o) for (i = 0; i < n; i++) data[i][j][1] /= o;\n      else for (i = 0; i < n; i++) data[i][j][1] = k;\n    }\n    for (j = 0; j < m; ++j) y0[j] = 0;\n    return y0;\n  },\n\n  \"zero\": d3_layout_stackOffsetZero\n\n});\n\nfunction d3_layout_stackOrderDefault(data) {\n  return d3.range(data.length);\n}\n\nfunction d3_layout_stackOffsetZero(data) {\n  var j = -1,\n      m = data[0].length,\n      y0 = [];\n  while (++j < m) y0[j] = 0;\n  return y0;\n}\n\nfunction d3_layout_stackMaxIndex(array) {\n  var i = 1,\n      j = 0,\n      v = array[0][1],\n      k,\n      n = array.length;\n  for (; i < n; ++i) {\n    if ((k = array[i][1]) > v) {\n      j = i;\n      v = k;\n    }\n  }\n  return j;\n}\n\nfunction d3_layout_stackReduceSum(d) {\n  return d.reduce(d3_layout_stackSum, 0);\n}\n\nfunction d3_layout_stackSum(p, d) {\n  return p + d[1];\n}\nd3.layout.histogram = function() {\n  var frequency = true,\n      valuer = Number,\n      ranger = d3_layout_histogramRange,\n      binner = d3_layout_histogramBinSturges;\n\n  function histogram(data, i) {\n    var bins = [],\n        values = data.map(valuer, this),\n        range = ranger.call(this, values, i),\n        thresholds = binner.call(this, range, values, i),\n        bin,\n        i = -1,\n        n = values.length,\n        m = thresholds.length - 1,\n        k = frequency ? 1 : 1 / n,\n        x;\n\n    // Initialize the bins.\n    while (++i < m) {\n      bin = bins[i] = [];\n      bin.dx = thresholds[i + 1] - (bin.x = thresholds[i]);\n      bin.y = 0;\n    }\n\n    // Fill the bins, ignoring values outside the range.\n    i = -1; while(++i < n) {\n      x = values[i];\n      if ((x >= range[0]) && (x <= range[1])) {\n        bin = bins[d3.bisect(thresholds, x, 1, m) - 1];\n        bin.y += k;\n        bin.push(data[i]);\n      }\n    }\n\n    return bins;\n  }\n\n  // Specifies how to extract a value from the associated data. The default\n  // value function is `Number`, which is equivalent to the identity function.\n  histogram.value = function(x) {\n    if (!arguments.length) return valuer;\n    valuer = x;\n    return histogram;\n  };\n\n  // Specifies the range of the histogram. Values outside the specified range\n  // will be ignored. The argument `x` may be specified either as a two-element\n  // array representing the minimum and maximum value of the range, or as a\n  // function that returns the range given the array of values and the current\n  // index `i`. The default range is the extent (minimum and maximum) of the\n  // values.\n  histogram.range = function(x) {\n    if (!arguments.length) return ranger;\n    ranger = d3.functor(x);\n    return histogram;\n  };\n\n  // Specifies how to bin values in the histogram. The argument `x` may be\n  // specified as a number, in which case the range of values will be split\n  // uniformly into the given number of bins. Or, `x` may be an array of\n  // threshold values, defining the bins; the specified array must contain the\n  // rightmost (upper) value, thus specifying n + 1 values for n bins. Or, `x`\n  // may be a function which is evaluated, being passed the range, the array of\n  // values, and the current index `i`, returning an array of thresholds. The\n  // default bin function will divide the values into uniform bins using\n  // Sturges' formula.\n  histogram.bins = function(x) {\n    if (!arguments.length) return binner;\n    binner = typeof x === \"number\"\n        ? function(range) { return d3_layout_histogramBinFixed(range, x); }\n        : d3.functor(x);\n    return histogram;\n  };\n\n  // Specifies whether the histogram's `y` value is a count (frequency) or a\n  // probability (density). The default value is true.\n  histogram.frequency = function(x) {\n    if (!arguments.length) return frequency;\n    frequency = !!x;\n    return histogram;\n  };\n\n  return histogram;\n};\n\nfunction d3_layout_histogramBinSturges(range, values) {\n  return d3_layout_histogramBinFixed(range, Math.ceil(Math.log(values.length) / Math.LN2 + 1));\n}\n\nfunction d3_layout_histogramBinFixed(range, n) {\n  var x = -1,\n      b = +range[0],\n      m = (range[1] - b) / n,\n      f = [];\n  while (++x <= n) f[x] = m * x + b;\n  return f;\n}\n\nfunction d3_layout_histogramRange(values) {\n  return [d3.min(values), d3.max(values)];\n}\nd3.layout.hierarchy = function() {\n  var sort = d3_layout_hierarchySort,\n      children = d3_layout_hierarchyChildren,\n      value = d3_layout_hierarchyValue;\n\n  // Recursively compute the node depth and value.\n  // Also converts the data representation into a standard hierarchy structure.\n  function recurse(data, depth, nodes) {\n    var childs = children.call(hierarchy, data, depth),\n        node = d3_layout_hierarchyInline ? data : {data: data};\n    node.depth = depth;\n    nodes.push(node);\n    if (childs && (n = childs.length)) {\n      var i = -1,\n          n,\n          c = node.children = [],\n          v = 0,\n          j = depth + 1;\n      while (++i < n) {\n        d = recurse(childs[i], j, nodes);\n        d.parent = node;\n        c.push(d);\n        v += d.value;\n      }\n      if (sort) c.sort(sort);\n      if (value) node.value = v;\n    } else if (value) {\n      node.value = +value.call(hierarchy, data, depth) || 0;\n    }\n    return node;\n  }\n\n  // Recursively re-evaluates the node value.\n  function revalue(node, depth) {\n    var children = node.children,\n        v = 0;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n,\n          j = depth + 1;\n      while (++i < n) v += revalue(children[i], j);\n    } else if (value) {\n      v = +value.call(hierarchy, d3_layout_hierarchyInline ? node : node.data, depth) || 0;\n    }\n    if (value) node.value = v;\n    return v;\n  }\n\n  function hierarchy(d) {\n    var nodes = [];\n    recurse(d, 0, nodes);\n    return nodes;\n  }\n\n  hierarchy.sort = function(x) {\n    if (!arguments.length) return sort;\n    sort = x;\n    return hierarchy;\n  };\n\n  hierarchy.children = function(x) {\n    if (!arguments.length) return children;\n    children = x;\n    return hierarchy;\n  };\n\n  hierarchy.value = function(x) {\n    if (!arguments.length) return value;\n    value = x;\n    return hierarchy;\n  };\n\n  // Re-evaluates the `value` property for the specified hierarchy.\n  hierarchy.revalue = function(root) {\n    revalue(root, 0);\n    return root;\n  };\n\n  return hierarchy;\n};\n\n// A method assignment helper for hierarchy subclasses.\nfunction d3_layout_hierarchyRebind(object, hierarchy) {\n  d3.rebind(object, hierarchy, \"sort\", \"children\", \"value\");\n\n  // Add an alias for links, for convenience.\n  object.links = d3_layout_hierarchyLinks;\n\n  // If the new API is used, enabling inlining.\n  object.nodes = function(d) {\n    d3_layout_hierarchyInline = true;\n    return (object.nodes = object)(d);\n  };\n\n  return object;\n}\n\nfunction d3_layout_hierarchyChildren(d) {\n  return d.children;\n}\n\nfunction d3_layout_hierarchyValue(d) {\n  return d.value;\n}\n\nfunction d3_layout_hierarchySort(a, b) {\n  return b.value - a.value;\n}\n\n// Returns an array source+target objects for the specified nodes.\nfunction d3_layout_hierarchyLinks(nodes) {\n  return d3.merge(nodes.map(function(parent) {\n    return (parent.children || []).map(function(child) {\n      return {source: parent, target: child};\n    });\n  }));\n}\n\n// For backwards-compatibility, don't enable inlining by default.\nvar d3_layout_hierarchyInline = false;\nd3.layout.pack = function() {\n  var hierarchy = d3.layout.hierarchy().sort(d3_layout_packSort),\n      size = [1, 1];\n\n  function pack(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0];\n\n    // Recursively compute the layout.\n    root.x = 0;\n    root.y = 0;\n    d3_layout_packTree(root);\n\n    // Scale the layout to fit the requested size.\n    var w = size[0],\n        h = size[1],\n        k = 1 / Math.max(2 * root.r / w, 2 * root.r / h);\n    d3_layout_packTransform(root, w / 2, h / 2, k);\n\n    return nodes;\n  }\n\n  pack.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return pack;\n  };\n\n  return d3_layout_hierarchyRebind(pack, hierarchy);\n};\n\nfunction d3_layout_packSort(a, b) {\n  return a.value - b.value;\n}\n\nfunction d3_layout_packInsert(a, b) {\n  var c = a._pack_next;\n  a._pack_next = b;\n  b._pack_prev = a;\n  b._pack_next = c;\n  c._pack_prev = b;\n}\n\nfunction d3_layout_packSplice(a, b) {\n  a._pack_next = b;\n  b._pack_prev = a;\n}\n\nfunction d3_layout_packIntersects(a, b) {\n  var dx = b.x - a.x,\n      dy = b.y - a.y,\n      dr = a.r + b.r;\n  return dr * dr - dx * dx - dy * dy > .001; // within epsilon\n}\n\nfunction d3_layout_packCircle(nodes) {\n  var xMin = Infinity,\n      xMax = -Infinity,\n      yMin = Infinity,\n      yMax = -Infinity,\n      n = nodes.length,\n      a, b, c, j, k;\n\n  function bound(node) {\n    xMin = Math.min(node.x - node.r, xMin);\n    xMax = Math.max(node.x + node.r, xMax);\n    yMin = Math.min(node.y - node.r, yMin);\n    yMax = Math.max(node.y + node.r, yMax);\n  }\n\n  // Create node links.\n  nodes.forEach(d3_layout_packLink);\n\n  // Create first node.\n  a = nodes[0];\n  a.x = -a.r;\n  a.y = 0;\n  bound(a);\n\n  // Create second node.\n  if (n > 1) {\n    b = nodes[1];\n    b.x = b.r;\n    b.y = 0;\n    bound(b);\n\n    // Create third node and build chain.\n    if (n > 2) {\n      c = nodes[2];\n      d3_layout_packPlace(a, b, c);\n      bound(c);\n      d3_layout_packInsert(a, c);\n      a._pack_prev = c;\n      d3_layout_packInsert(c, b);\n      b = a._pack_next;\n\n      // Now iterate through the rest.\n      for (var i = 3; i < n; i++) {\n        d3_layout_packPlace(a, b, c = nodes[i]);\n\n        // Search for the closest intersection.\n        var isect = 0, s1 = 1, s2 = 1;\n        for (j = b._pack_next; j !== b; j = j._pack_next, s1++) {\n          if (d3_layout_packIntersects(j, c)) {\n            isect = 1;\n            break;\n          }\n        }\n        if (isect == 1) {\n          for (k = a._pack_prev; k !== j._pack_prev; k = k._pack_prev, s2++) {\n            if (d3_layout_packIntersects(k, c)) {\n              break;\n            }\n          }\n        }\n\n        // Update node chain.\n        if (isect) {\n          if (s1 < s2 || (s1 == s2 && b.r < a.r)) d3_layout_packSplice(a, b = j);\n          else d3_layout_packSplice(a = k, b);\n          i--;\n        } else {\n          d3_layout_packInsert(a, c);\n          b = c;\n          bound(c);\n        }\n      }\n    }\n  }\n\n  // Re-center the circles and return the encompassing radius.\n  var cx = (xMin + xMax) / 2,\n      cy = (yMin + yMax) / 2,\n      cr = 0;\n  for (var i = 0; i < n; i++) {\n    var node = nodes[i];\n    node.x -= cx;\n    node.y -= cy;\n    cr = Math.max(cr, node.r + Math.sqrt(node.x * node.x + node.y * node.y));\n  }\n\n  // Remove node links.\n  nodes.forEach(d3_layout_packUnlink);\n\n  return cr;\n}\n\nfunction d3_layout_packLink(node) {\n  node._pack_next = node._pack_prev = node;\n}\n\nfunction d3_layout_packUnlink(node) {\n  delete node._pack_next;\n  delete node._pack_prev;\n}\n\nfunction d3_layout_packTree(node) {\n  var children = node.children;\n  if (children && children.length) {\n    children.forEach(d3_layout_packTree);\n    node.r = d3_layout_packCircle(children);\n  } else {\n    node.r = Math.sqrt(node.value);\n  }\n}\n\nfunction d3_layout_packTransform(node, x, y, k) {\n  var children = node.children;\n  node.x = (x += k * node.x);\n  node.y = (y += k * node.y);\n  node.r *= k;\n  if (children) {\n    var i = -1, n = children.length;\n    while (++i < n) d3_layout_packTransform(children[i], x, y, k);\n  }\n}\n\nfunction d3_layout_packPlace(a, b, c) {\n  var db = a.r + c.r,\n      dx = b.x - a.x,\n      dy = b.y - a.y;\n  if (db && (dx || dy)) {\n    var da = b.r + c.r,\n        dc = Math.sqrt(dx * dx + dy * dy),\n        cos = Math.max(-1, Math.min(1, (db * db + dc * dc - da * da) / (2 * db * dc))),\n        theta = Math.acos(cos),\n        x = cos * (db /= dc),\n        y = Math.sin(theta) * db;\n    c.x = a.x + x * dx + y * dy;\n    c.y = a.y + x * dy - y * dx;\n  } else {\n    c.x = a.x + db;\n    c.y = a.y;\n  }\n}\n// Implements a hierarchical layout using the cluster (or dendrogram)\n// algorithm.\nd3.layout.cluster = function() {\n  var hierarchy = d3.layout.hierarchy().sort(null).value(null),\n      separation = d3_layout_treeSeparation,\n      size = [1, 1]; // width, height\n\n  function cluster(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0],\n        previousNode,\n        x = 0,\n        kx,\n        ky;\n\n    // First walk, computing the initial x & y values.\n    d3_layout_treeVisitAfter(root, function(node) {\n      var children = node.children;\n      if (children && children.length) {\n        node.x = d3_layout_clusterX(children);\n        node.y = d3_layout_clusterY(children);\n      } else {\n        node.x = previousNode ? x += separation(node, previousNode) : 0;\n        node.y = 0;\n        previousNode = node;\n      }\n    });\n\n    // Compute the left-most, right-most, and depth-most nodes for extents.\n    var left = d3_layout_clusterLeft(root),\n        right = d3_layout_clusterRight(root),\n        x0 = left.x - separation(left, right) / 2,\n        x1 = right.x + separation(right, left) / 2;\n\n    // Second walk, normalizing x & y to the desired size.\n    d3_layout_treeVisitAfter(root, function(node) {\n      node.x = (node.x - x0) / (x1 - x0) * size[0];\n      node.y = (1 - (root.y ? node.y / root.y : 1)) * size[1];\n    });\n\n    return nodes;\n  }\n\n  cluster.separation = function(x) {\n    if (!arguments.length) return separation;\n    separation = x;\n    return cluster;\n  };\n\n  cluster.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return cluster;\n  };\n\n  return d3_layout_hierarchyRebind(cluster, hierarchy);\n};\n\nfunction d3_layout_clusterY(children) {\n  return 1 + d3.max(children, function(child) {\n    return child.y;\n  });\n}\n\nfunction d3_layout_clusterX(children) {\n  return children.reduce(function(x, child) {\n    return x + child.x;\n  }, 0) / children.length;\n}\n\nfunction d3_layout_clusterLeft(node) {\n  var children = node.children;\n  return children && children.length ? d3_layout_clusterLeft(children[0]) : node;\n}\n\nfunction d3_layout_clusterRight(node) {\n  var children = node.children, n;\n  return children && (n = children.length) ? d3_layout_clusterRight(children[n - 1]) : node;\n}\n// Node-link tree diagram using the Reingold-Tilford \"tidy\" algorithm\nd3.layout.tree = function() {\n  var hierarchy = d3.layout.hierarchy().sort(null).value(null),\n      separation = d3_layout_treeSeparation,\n      size = [1, 1]; // width, height\n\n  function tree(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0];\n\n    function firstWalk(node, previousSibling) {\n      var children = node.children,\n          layout = node._tree;\n      if (children && (n = children.length)) {\n        var n,\n            firstChild = children[0],\n            previousChild,\n            ancestor = firstChild,\n            child,\n            i = -1;\n        while (++i < n) {\n          child = children[i];\n          firstWalk(child, previousChild);\n          ancestor = apportion(child, previousChild, ancestor);\n          previousChild = child;\n        }\n        d3_layout_treeShift(node);\n        var midpoint = .5 * (firstChild._tree.prelim + child._tree.prelim);\n        if (previousSibling) {\n          layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);\n          layout.mod = layout.prelim - midpoint;\n        } else {\n          layout.prelim = midpoint;\n        }\n      } else {\n        if (previousSibling) {\n          layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);\n        }\n      }\n    }\n\n    function secondWalk(node, x) {\n      node.x = node._tree.prelim + x;\n      var children = node.children;\n      if (children && (n = children.length)) {\n        var i = -1,\n            n;\n        x += node._tree.mod;\n        while (++i < n) {\n          secondWalk(children[i], x);\n        }\n      }\n    }\n\n    function apportion(node, previousSibling, ancestor) {\n      if (previousSibling) {\n        var vip = node,\n            vop = node,\n            vim = previousSibling,\n            vom = node.parent.children[0],\n            sip = vip._tree.mod,\n            sop = vop._tree.mod,\n            sim = vim._tree.mod,\n            som = vom._tree.mod,\n            shift;\n        while (vim = d3_layout_treeRight(vim), vip = d3_layout_treeLeft(vip), vim && vip) {\n          vom = d3_layout_treeLeft(vom);\n          vop = d3_layout_treeRight(vop);\n          vop._tree.ancestor = node;\n          shift = vim._tree.prelim + sim - vip._tree.prelim - sip + separation(vim, vip);\n          if (shift > 0) {\n            d3_layout_treeMove(d3_layout_treeAncestor(vim, node, ancestor), node, shift);\n            sip += shift;\n            sop += shift;\n          }\n          sim += vim._tree.mod;\n          sip += vip._tree.mod;\n          som += vom._tree.mod;\n          sop += vop._tree.mod;\n        }\n        if (vim && !d3_layout_treeRight(vop)) {\n          vop._tree.thread = vim;\n          vop._tree.mod += sim - sop;\n        }\n        if (vip && !d3_layout_treeLeft(vom)) {\n          vom._tree.thread = vip;\n          vom._tree.mod += sip - som;\n          ancestor = node;\n        }\n      }\n      return ancestor;\n    }\n\n    // Initialize temporary layout variables.\n    d3_layout_treeVisitAfter(root, function(node, previousSibling) {\n      node._tree = {\n        ancestor: node,\n        prelim: 0,\n        mod: 0,\n        change: 0,\n        shift: 0,\n        number: previousSibling ? previousSibling._tree.number + 1 : 0\n      };\n    });\n\n    // Compute the layout using Buchheim et al.'s algorithm.\n    firstWalk(root);\n    secondWalk(root, -root._tree.prelim);\n\n    // Compute the left-most, right-most, and depth-most nodes for extents.\n    var left = d3_layout_treeSearch(root, d3_layout_treeLeftmost),\n        right = d3_layout_treeSearch(root, d3_layout_treeRightmost),\n        deep = d3_layout_treeSearch(root, d3_layout_treeDeepest),\n        x0 = left.x - separation(left, right) / 2,\n        x1 = right.x + separation(right, left) / 2,\n        y1 = deep.depth || 1;\n\n    // Clear temporary layout variables; transform x and y.\n    d3_layout_treeVisitAfter(root, function(node) {\n      node.x = (node.x - x0) / (x1 - x0) * size[0];\n      node.y = node.depth / y1 * size[1];\n      delete node._tree;\n    });\n\n    return nodes;\n  }\n\n  tree.separation = function(x) {\n    if (!arguments.length) return separation;\n    separation = x;\n    return tree;\n  };\n\n  tree.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return tree;\n  };\n\n  return d3_layout_hierarchyRebind(tree, hierarchy);\n};\n\nfunction d3_layout_treeSeparation(a, b) {\n  return a.parent == b.parent ? 1 : 2;\n}\n\n// function d3_layout_treeSeparationRadial(a, b) {\n//   return (a.parent == b.parent ? 1 : 2) / a.depth;\n// }\n\nfunction d3_layout_treeLeft(node) {\n  var children = node.children;\n  return children && children.length ? children[0] : node._tree.thread;\n}\n\nfunction d3_layout_treeRight(node) {\n  var children = node.children,\n      n;\n  return children && (n = children.length) ? children[n - 1] : node._tree.thread;\n}\n\nfunction d3_layout_treeSearch(node, compare) {\n  var children = node.children;\n  if (children && (n = children.length)) {\n    var child,\n        n,\n        i = -1;\n    while (++i < n) {\n      if (compare(child = d3_layout_treeSearch(children[i], compare), node) > 0) {\n        node = child;\n      }\n    }\n  }\n  return node;\n}\n\nfunction d3_layout_treeRightmost(a, b) {\n  return a.x - b.x;\n}\n\nfunction d3_layout_treeLeftmost(a, b) {\n  return b.x - a.x;\n}\n\nfunction d3_layout_treeDeepest(a, b) {\n  return a.depth - b.depth;\n}\n\nfunction d3_layout_treeVisitAfter(node, callback) {\n  function visit(node, previousSibling) {\n    var children = node.children;\n    if (children && (n = children.length)) {\n      var child,\n          previousChild = null,\n          i = -1,\n          n;\n      while (++i < n) {\n        child = children[i];\n        visit(child, previousChild);\n        previousChild = child;\n      }\n    }\n    callback(node, previousSibling);\n  }\n  visit(node, null);\n}\n\nfunction d3_layout_treeShift(node) {\n  var shift = 0,\n      change = 0,\n      children = node.children,\n      i = children.length,\n      child;\n  while (--i >= 0) {\n    child = children[i]._tree;\n    child.prelim += shift;\n    child.mod += shift;\n    shift += child.shift + (change += child.change);\n  }\n}\n\nfunction d3_layout_treeMove(ancestor, node, shift) {\n  ancestor = ancestor._tree;\n  node = node._tree;\n  var change = shift / (node.number - ancestor.number);\n  ancestor.change += change;\n  node.change -= change;\n  node.shift += shift;\n  node.prelim += shift;\n  node.mod += shift;\n}\n\nfunction d3_layout_treeAncestor(vim, node, ancestor) {\n  return vim._tree.ancestor.parent == node.parent\n      ? vim._tree.ancestor\n      : ancestor;\n}\n// Squarified Treemaps by Mark Bruls, Kees Huizing, and Jarke J. van Wijk\n// Modified to support a target aspect ratio by Jeff Heer\nd3.layout.treemap = function() {\n  var hierarchy = d3.layout.hierarchy(),\n      round = Math.round,\n      size = [1, 1], // width, height\n      padding = null,\n      pad = d3_layout_treemapPadNull,\n      sticky = false,\n      stickies,\n      ratio = 0.5 * (1 + Math.sqrt(5)); // golden ratio\n\n  // Compute the area for each child based on value & scale.\n  function scale(children, k) {\n    var i = -1,\n        n = children.length,\n        child,\n        area;\n    while (++i < n) {\n      area = (child = children[i]).value * (k < 0 ? 0 : k);\n      child.area = isNaN(area) || area <= 0 ? 0 : area;\n    }\n  }\n\n  // Recursively arranges the specified node's children into squarified rows.\n  function squarify(node) {\n    var children = node.children;\n    if (children && children.length) {\n      var rect = pad(node),\n          row = [],\n          remaining = children.slice(), // copy-on-write\n          child,\n          best = Infinity, // the best row score so far\n          score, // the current row score\n          u = Math.min(rect.dx, rect.dy), // initial orientation\n          n;\n      scale(remaining, rect.dx * rect.dy / node.value);\n      row.area = 0;\n      while ((n = remaining.length) > 0) {\n        row.push(child = remaining[n - 1]);\n        row.area += child.area;\n        if ((score = worst(row, u)) <= best) { // continue with this orientation\n          remaining.pop();\n          best = score;\n        } else { // abort, and try a different orientation\n          row.area -= row.pop().area;\n          position(row, u, rect, false);\n          u = Math.min(rect.dx, rect.dy);\n          row.length = row.area = 0;\n          best = Infinity;\n        }\n      }\n      if (row.length) {\n        position(row, u, rect, true);\n        row.length = row.area = 0;\n      }\n      children.forEach(squarify);\n    }\n  }\n\n  // Recursively resizes the specified node's children into existing rows.\n  // Preserves the existing layout!\n  function stickify(node) {\n    var children = node.children;\n    if (children && children.length) {\n      var rect = pad(node),\n          remaining = children.slice(), // copy-on-write\n          child,\n          row = [];\n      scale(remaining, rect.dx * rect.dy / node.value);\n      row.area = 0;\n      while (child = remaining.pop()) {\n        row.push(child);\n        row.area += child.area;\n        if (child.z != null) {\n          position(row, child.z ? rect.dx : rect.dy, rect, !remaining.length);\n          row.length = row.area = 0;\n        }\n      }\n      children.forEach(stickify);\n    }\n  }\n\n  // Computes the score for the specified row, as the worst aspect ratio.\n  function worst(row, u) {\n    var s = row.area,\n        r,\n        rmax = 0,\n        rmin = Infinity,\n        i = -1,\n        n = row.length;\n    while (++i < n) {\n      if (!(r = row[i].area)) continue;\n      if (r < rmin) rmin = r;\n      if (r > rmax) rmax = r;\n    }\n    s *= s;\n    u *= u;\n    return s\n        ? Math.max((u * rmax * ratio) / s, s / (u * rmin * ratio))\n        : Infinity;\n  }\n\n  // Positions the specified row of nodes. Modifies `rect`.\n  function position(row, u, rect, flush) {\n    var i = -1,\n        n = row.length,\n        x = rect.x,\n        y = rect.y,\n        v = u ? round(row.area / u) : 0,\n        o;\n    if (u == rect.dx) { // horizontal subdivision\n      if (flush || v > rect.dy) v = rect.dy; // over+underflow\n      while (++i < n) {\n        o = row[i];\n        o.x = x;\n        o.y = y;\n        o.dy = v;\n        x += o.dx = Math.min(rect.x + rect.dx - x, v ? round(o.area / v) : 0);\n      }\n      o.z = true;\n      o.dx += rect.x + rect.dx - x; // rounding error\n      rect.y += v;\n      rect.dy -= v;\n    } else { // vertical subdivision\n      if (flush || v > rect.dx) v = rect.dx; // over+underflow\n      while (++i < n) {\n        o = row[i];\n        o.x = x;\n        o.y = y;\n        o.dx = v;\n        y += o.dy = Math.min(rect.y + rect.dy - y, v ? round(o.area / v) : 0);\n      }\n      o.z = false;\n      o.dy += rect.y + rect.dy - y; // rounding error\n      rect.x += v;\n      rect.dx -= v;\n    }\n  }\n\n  function treemap(d) {\n    var nodes = stickies || hierarchy(d),\n        root = nodes[0];\n    root.x = 0;\n    root.y = 0;\n    root.dx = size[0];\n    root.dy = size[1];\n    if (stickies) hierarchy.revalue(root);\n    scale([root], root.dx * root.dy / root.value);\n    (stickies ? stickify : squarify)(root);\n    if (sticky) stickies = nodes;\n    return nodes;\n  }\n\n  treemap.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return treemap;\n  };\n\n  treemap.padding = function(x) {\n    if (!arguments.length) return padding;\n\n    function padFunction(node) {\n      var p = x.call(treemap, node, node.depth);\n      return p == null\n          ? d3_layout_treemapPadNull(node)\n          : d3_layout_treemapPad(node, typeof p === \"number\" ? [p, p, p, p] : p);\n    }\n\n    function padConstant(node) {\n      return d3_layout_treemapPad(node, x);\n    }\n\n    var type;\n    pad = (padding = x) == null ? d3_layout_treemapPadNull\n        : (type = typeof x) === \"function\" ? padFunction\n        : type === \"number\" ? (x = [x, x, x, x], padConstant)\n        : padConstant;\n    return treemap;\n  };\n\n  treemap.round = function(x) {\n    if (!arguments.length) return round != Number;\n    round = x ? Math.round : Number;\n    return treemap;\n  };\n\n  treemap.sticky = function(x) {\n    if (!arguments.length) return sticky;\n    sticky = x;\n    stickies = null;\n    return treemap;\n  };\n\n  treemap.ratio = function(x) {\n    if (!arguments.length) return ratio;\n    ratio = x;\n    return treemap;\n  };\n\n  return d3_layout_hierarchyRebind(treemap, hierarchy);\n};\n\nfunction d3_layout_treemapPadNull(node) {\n  return {x: node.x, y: node.y, dx: node.dx, dy: node.dy};\n}\n\nfunction d3_layout_treemapPad(node, padding) {\n  var x = node.x + padding[3],\n      y = node.y + padding[0],\n      dx = node.dx - padding[1] - padding[3],\n      dy = node.dy - padding[0] - padding[2];\n  if (dx < 0) { x += dx / 2; dx = 0; }\n  if (dy < 0) { y += dy / 2; dy = 0; }\n  return {x: x, y: y, dx: dx, dy: dy};\n}\nd3.csv = function(url, callback) {\n  d3.text(url, \"text/csv\", function(text) {\n    callback(text && d3.csv.parse(text));\n  });\n};\nd3.csv.parse = function(text) {\n  var header;\n  return d3.csv.parseRows(text, function(row, i) {\n    if (i) {\n      var o = {}, j = -1, m = header.length;\n      while (++j < m) o[header[j]] = row[j];\n      return o;\n    } else {\n      header = row;\n      return null;\n    }\n  });\n};\n\nd3.csv.parseRows = function(text, f) {\n  var EOL = {}, // sentinel value for end-of-line\n      EOF = {}, // sentinel value for end-of-file\n      rows = [], // output rows\n      re = /\\r\\n|[,\\r\\n]/g, // field separator regex\n      n = 0, // the current line number\n      t, // the current token\n      eol; // is the current token followed by EOL?\n\n  re.lastIndex = 0; // work-around bug in FF 3.6\n\n  /** @private Returns the next token. */\n  function token() {\n    if (re.lastIndex >= text.length) return EOF; // special case: end of file\n    if (eol) { eol = false; return EOL; } // special case: end of line\n\n    // special case: quotes\n    var j = re.lastIndex;\n    if (text.charCodeAt(j) === 34) {\n      var i = j;\n      while (i++ < text.length) {\n        if (text.charCodeAt(i) === 34) {\n          if (text.charCodeAt(i + 1) !== 34) break;\n          i++;\n        }\n      }\n      re.lastIndex = i + 2;\n      var c = text.charCodeAt(i + 1);\n      if (c === 13) {\n        eol = true;\n        if (text.charCodeAt(i + 2) === 10) re.lastIndex++;\n      } else if (c === 10) {\n        eol = true;\n      }\n      return text.substring(j + 1, i).replace(/\"\"/g, \"\\\"\");\n    }\n\n    // common case\n    var m = re.exec(text);\n    if (m) {\n      eol = m[0].charCodeAt(0) !== 44;\n      return text.substring(j, m.index);\n    }\n    re.lastIndex = text.length;\n    return text.substring(j);\n  }\n\n  while ((t = token()) !== EOF) {\n    var a = [];\n    while ((t !== EOL) && (t !== EOF)) {\n      a.push(t);\n      t = token();\n    }\n    if (f && !(a = f(a, n++))) continue;\n    rows.push(a);\n  }\n\n  return rows;\n};\nd3.csv.format = function(rows) {\n  return rows.map(d3_csv_formatRow).join(\"\\n\");\n};\n\nfunction d3_csv_formatRow(row) {\n  return row.map(d3_csv_formatValue).join(\",\");\n}\n\nfunction d3_csv_formatValue(text) {\n  return /[\",\\n]/.test(text)\n      ? \"\\\"\" + text.replace(/\\\"/g, \"\\\"\\\"\") + \"\\\"\"\n      : text;\n}\nd3.geo = {};\n\nvar d3_geo_radians = Math.PI / 180;\n// TODO clip input coordinates on opposite hemisphere\nd3.geo.azimuthal = function() {\n  var mode = \"orthographic\", // or stereographic, gnomonic, equidistant or equalarea\n      origin,\n      scale = 200,\n      translate = [480, 250],\n      x0,\n      y0,\n      cy0,\n      sy0;\n\n  function azimuthal(coordinates) {\n    var x1 = coordinates[0] * d3_geo_radians - x0,\n        y1 = coordinates[1] * d3_geo_radians,\n        cx1 = Math.cos(x1),\n        sx1 = Math.sin(x1),\n        cy1 = Math.cos(y1),\n        sy1 = Math.sin(y1),\n        cc = mode !== \"orthographic\" ? sy0 * sy1 + cy0 * cy1 * cx1 : null,\n        c,\n        k = mode === \"stereographic\" ? 1 / (1 + cc)\n          : mode === \"gnomonic\" ? 1 / cc\n          : mode === \"equidistant\" ? (c = Math.acos(cc), c ? c / Math.sin(c) : 0)\n          : mode === \"equalarea\" ? Math.sqrt(2 / (1 + cc))\n          : 1,\n        x = k * cy1 * sx1,\n        y = k * (sy0 * cy1 * cx1 - cy0 * sy1);\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  azimuthal.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale,\n        p = Math.sqrt(x * x + y * y),\n        c = mode === \"stereographic\" ? 2 * Math.atan(p)\n          : mode === \"gnomonic\" ? Math.atan(p)\n          : mode === \"equidistant\" ? p\n          : mode === \"equalarea\" ? 2 * Math.asin(.5 * p)\n          : Math.asin(p),\n        sc = Math.sin(c),\n        cc = Math.cos(c);\n    return [\n      (x0 + Math.atan2(x * sc, p * cy0 * cc + y * sy0 * sc)) / d3_geo_radians,\n      Math.asin(cc * sy0 - (p ? (y * sc * cy0) / p : 0)) / d3_geo_radians\n    ];\n  };\n\n  azimuthal.mode = function(x) {\n    if (!arguments.length) return mode;\n    mode = x + \"\";\n    return azimuthal;\n  };\n\n  azimuthal.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    x0 = origin[0] * d3_geo_radians;\n    y0 = origin[1] * d3_geo_radians;\n    cy0 = Math.cos(y0);\n    sy0 = Math.sin(y0);\n    return azimuthal;\n  };\n\n  azimuthal.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return azimuthal;\n  };\n\n  azimuthal.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return azimuthal;\n  };\n\n  return azimuthal.origin([0, 0]);\n};\n// Derived from Tom Carden's Albers implementation for Protovis.\n// http://gist.github.com/476238\n// http://mathworld.wolfram.com/AlbersEqual-AreaConicProjection.html\n\nd3.geo.albers = function() {\n  var origin = [-98, 38],\n      parallels = [29.5, 45.5],\n      scale = 1000,\n      translate = [480, 250],\n      lng0, // d3_geo_radians * origin[0]\n      n,\n      C,\n      p0;\n\n  function albers(coordinates) {\n    var t = n * (d3_geo_radians * coordinates[0] - lng0),\n        p = Math.sqrt(C - 2 * n * Math.sin(d3_geo_radians * coordinates[1])) / n;\n    return [\n      scale * p * Math.sin(t) + translate[0],\n      scale * (p * Math.cos(t) - p0) + translate[1]\n    ];\n  }\n\n  albers.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale,\n        p0y = p0 + y,\n        t = Math.atan2(x, p0y),\n        p = Math.sqrt(x * x + p0y * p0y);\n    return [\n      (lng0 + t / n) / d3_geo_radians,\n      Math.asin((C - p * p * n * n) / (2 * n)) / d3_geo_radians\n    ];\n  };\n\n  function reload() {\n    var phi1 = d3_geo_radians * parallels[0],\n        phi2 = d3_geo_radians * parallels[1],\n        lat0 = d3_geo_radians * origin[1],\n        s = Math.sin(phi1),\n        c = Math.cos(phi1);\n    lng0 = d3_geo_radians * origin[0];\n    n = .5 * (s + Math.sin(phi2));\n    C = c * c + 2 * n * s;\n    p0 = Math.sqrt(C - 2 * n * Math.sin(lat0)) / n;\n    return albers;\n  }\n\n  albers.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = [+x[0], +x[1]];\n    return reload();\n  };\n\n  albers.parallels = function(x) {\n    if (!arguments.length) return parallels;\n    parallels = [+x[0], +x[1]];\n    return reload();\n  };\n\n  albers.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return albers;\n  };\n\n  albers.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return albers;\n  };\n\n  return reload();\n};\n\n// A composite projection for the United States, 960x500. The set of standard\n// parallels for each region comes from USGS, which is published here:\n// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers\n// TODO allow the composite projection to be rescaled?\nd3.geo.albersUsa = function() {\n  var lower48 = d3.geo.albers();\n\n  var alaska = d3.geo.albers()\n      .origin([-160, 60])\n      .parallels([55, 65]);\n\n  var hawaii = d3.geo.albers()\n      .origin([-160, 20])\n      .parallels([8, 18]);\n\n  var puertoRico = d3.geo.albers()\n      .origin([-60, 10])\n      .parallels([8, 18]);\n\n  function albersUsa(coordinates) {\n    var lon = coordinates[0],\n        lat = coordinates[1];\n    return (lat > 50 ? alaska\n        : lon < -140 ? hawaii\n        : lat < 21 ? puertoRico\n        : lower48)(coordinates);\n  }\n\n  albersUsa.scale = function(x) {\n    if (!arguments.length) return lower48.scale();\n    lower48.scale(x);\n    alaska.scale(x * .6);\n    hawaii.scale(x);\n    puertoRico.scale(x * 1.5);\n    return albersUsa.translate(lower48.translate());\n  };\n\n  albersUsa.translate = function(x) {\n    if (!arguments.length) return lower48.translate();\n    var dz = lower48.scale() / 1000,\n        dx = x[0],\n        dy = x[1];\n    lower48.translate(x);\n    alaska.translate([dx - 400 * dz, dy + 170 * dz]);\n    hawaii.translate([dx - 190 * dz, dy + 200 * dz]);\n    puertoRico.translate([dx + 580 * dz, dy + 430 * dz]);\n    return albersUsa;\n  };\n\n  return albersUsa.scale(lower48.scale());\n};\nd3.geo.bonne = function() {\n  var scale = 200,\n      translate = [480, 250],\n      x0, // origin longitude in radians\n      y0, // origin latitude in radians\n      y1, // parallel latitude in radians\n      c1; // cot(y1)\n\n  function bonne(coordinates) {\n    var x = coordinates[0] * d3_geo_radians - x0,\n        y = coordinates[1] * d3_geo_radians - y0;\n    if (y1) {\n      var p = c1 + y1 - y, E = x * Math.cos(y) / p;\n      x = p * Math.sin(E);\n      y = p * Math.cos(E) - c1;\n    } else {\n      x *= Math.cos(y);\n      y *= -1;\n    }\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  bonne.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    if (y1) {\n      var c = c1 + y, p = Math.sqrt(x * x + c * c);\n      y = c1 + y1 - p;\n      x = x0 + p * Math.atan2(x, c) / Math.cos(y);\n    } else {\n      y *= -1;\n      x /= Math.cos(y);\n    }\n    return [\n      x / d3_geo_radians,\n      y / d3_geo_radians\n    ];\n  };\n\n  // 90° for Werner, 0° for Sinusoidal\n  bonne.parallel = function(x) {\n    if (!arguments.length) return y1 / d3_geo_radians;\n    c1 = 1 / Math.tan(y1 = x * d3_geo_radians);\n    return bonne;\n  };\n\n  bonne.origin = function(x) {\n    if (!arguments.length) return [x0 / d3_geo_radians, y0 / d3_geo_radians];\n    x0 = x[0] * d3_geo_radians;\n    y0 = x[1] * d3_geo_radians;\n    return bonne;\n  };\n\n  bonne.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return bonne;\n  };\n\n  bonne.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return bonne;\n  };\n\n  return bonne.origin([0, 0]).parallel(45);\n};\nd3.geo.equirectangular = function() {\n  var scale = 500,\n      translate = [480, 250];\n\n  function equirectangular(coordinates) {\n    var x = coordinates[0] / 360,\n        y = -coordinates[1] / 360;\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  equirectangular.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    return [\n      360 * x,\n      -360 * y\n    ];\n  };\n\n  equirectangular.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return equirectangular;\n  };\n\n  equirectangular.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return equirectangular;\n  };\n\n  return equirectangular;\n};\nd3.geo.mercator = function() {\n  var scale = 500,\n      translate = [480, 250];\n\n  function mercator(coordinates) {\n    var x = coordinates[0] / 360,\n        y = -(Math.log(Math.tan(Math.PI / 4 + coordinates[1] * d3_geo_radians / 2)) / d3_geo_radians) / 360;\n    return [\n      scale * x + translate[0],\n      scale * Math.max(-.5, Math.min(.5, y)) + translate[1]\n    ];\n  }\n\n  mercator.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    return [\n      360 * x,\n      2 * Math.atan(Math.exp(-360 * y * d3_geo_radians)) / d3_geo_radians - 90\n    ];\n  };\n\n  mercator.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return mercator;\n  };\n\n  mercator.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return mercator;\n  };\n\n  return mercator;\n};\nfunction d3_geo_type(types, defaultValue) {\n  return function(object) {\n    return object && types.hasOwnProperty(object.type) ? types[object.type](object) : defaultValue;\n  };\n}\n/**\n * Returns a function that, given a GeoJSON object (e.g., a feature), returns\n * the corresponding SVG path. The function can be customized by overriding the\n * projection. Point features are mapped to circles with a default radius of\n * 4.5px; the radius can be specified either as a constant or a function that\n * is evaluated per object.\n */\nd3.geo.path = function() {\n  var pointRadius = 4.5,\n      pointCircle = d3_path_circle(pointRadius),\n      projection = d3.geo.albersUsa();\n\n  function path(d, i) {\n    if (typeof pointRadius === \"function\") {\n      pointCircle = d3_path_circle(pointRadius.apply(this, arguments));\n    }\n    return pathType(d) || null;\n  }\n\n  function project(coordinates) {\n    return projection(coordinates).join(\",\");\n  }\n\n  var pathType = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var path = [],\n          features = o.features,\n          i = -1, // features.index\n          n = features.length;\n      while (++i < n) path.push(pathType(features[i].geometry));\n      return path.join(\"\");\n    },\n\n    Feature: function(o) {\n      return pathType(o.geometry);\n    },\n\n    Point: function(o) {\n      return \"M\" + project(o.coordinates) + pointCircle;\n    },\n\n    MultiPoint: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length;\n      while (++i < n) path.push(\"M\", project(coordinates[i]), pointCircle);\n      return path.join(\"\");\n    },\n\n    LineString: function(o) {\n      var path = [\"M\"],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length;\n      while (++i < n) path.push(project(coordinates[i]), \"L\");\n      path.pop();\n      return path.join(\"\");\n    },\n\n    MultiLineString: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates.index\n          m; // subcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        m = subcoordinates.length;\n        path.push(\"M\");\n        while (++j < m) path.push(project(subcoordinates[j]), \"L\");\n        path.pop();\n      }\n      return path.join(\"\");\n    },\n\n    Polygon: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates.index\n          m; // subcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        if ((m = subcoordinates.length - 1) > 0) {\n          path.push(\"M\");\n          while (++j < m) path.push(project(subcoordinates[j]), \"L\");\n          path[path.length - 1] = \"Z\";\n        }\n      }\n      return path.join(\"\");\n    },\n\n    MultiPolygon: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates index\n          m, // subcoordinates.length\n          subsubcoordinates, // subcoordinates[j]\n          k, // subsubcoordinates index\n          p; // subsubcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        m = subcoordinates.length;\n        while (++j < m) {\n          subsubcoordinates = subcoordinates[j];\n          k = -1;\n          if ((p = subsubcoordinates.length - 1) > 0) {\n            path.push(\"M\");\n            while (++k < p) path.push(project(subsubcoordinates[k]), \"L\");\n            path[path.length - 1] = \"Z\";\n          }\n        }\n      }\n      return path.join(\"\");\n    },\n\n    GeometryCollection: function(o) {\n      var path = [],\n          geometries = o.geometries,\n          i = -1, // geometries index\n          n = geometries.length;\n      while (++i < n) path.push(pathType(geometries[i]));\n      return path.join(\"\");\n    }\n\n  });\n\n  var areaType = path.area = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var area = 0,\n          features = o.features,\n          i = -1, // features.index\n          n = features.length;\n      while (++i < n) area += areaType(features[i]);\n      return area;\n    },\n\n    Feature: function(o) {\n      return areaType(o.geometry);\n    },\n\n    Polygon: function(o) {\n      return polygonArea(o.coordinates);\n    },\n\n    MultiPolygon: function(o) {\n      var sum = 0,\n          coordinates = o.coordinates,\n          i = -1, // coordinates index\n          n = coordinates.length;\n      while (++i < n) sum += polygonArea(coordinates[i]);\n      return sum;\n    },\n\n    GeometryCollection: function(o) {\n      var sum = 0,\n          geometries = o.geometries,\n          i = -1, // geometries index\n          n = geometries.length;\n      while (++i < n) sum += areaType(geometries[i]);\n      return sum;\n    }\n\n  }, 0);\n\n  function polygonArea(coordinates) {\n    var sum = area(coordinates[0]), // exterior ring\n        i = 0, // coordinates.index\n        n = coordinates.length;\n    while (++i < n) sum -= area(coordinates[i]); // holes\n    return sum;\n  }\n\n  function polygonCentroid(coordinates) {\n    var polygon = d3.geom.polygon(coordinates[0].map(projection)), // exterior ring\n        area = polygon.area(),\n        centroid = polygon.centroid(area < 0 ? (area *= -1, 1) : -1),\n        x = centroid[0],\n        y = centroid[1],\n        z = area,\n        i = 0, // coordinates index\n        n = coordinates.length;\n    while (++i < n) {\n      polygon = d3.geom.polygon(coordinates[i].map(projection)); // holes\n      area = polygon.area();\n      centroid = polygon.centroid(area < 0 ? (area *= -1, 1) : -1);\n      x -= centroid[0];\n      y -= centroid[1];\n      z -= area;\n    }\n    return [x, y, 6 * z]; // weighted centroid\n  }\n\n  var centroidType = path.centroid = d3_geo_type({\n\n    // TODO FeatureCollection\n    // TODO Point\n    // TODO MultiPoint\n    // TODO LineString\n    // TODO MultiLineString\n    // TODO GeometryCollection\n\n    Feature: function(o) {\n      return centroidType(o.geometry);\n    },\n\n    Polygon: function(o) {\n      var centroid = polygonCentroid(o.coordinates);\n      return [centroid[0] / centroid[2], centroid[1] / centroid[2]];\n    },\n\n    MultiPolygon: function(o) {\n      var area = 0,\n          coordinates = o.coordinates,\n          centroid,\n          x = 0,\n          y = 0,\n          z = 0,\n          i = -1, // coordinates index\n          n = coordinates.length;\n      while (++i < n) {\n        centroid = polygonCentroid(coordinates[i]);\n        x += centroid[0];\n        y += centroid[1];\n        z += centroid[2];\n      }\n      return [x / z, y / z];\n    }\n\n  });\n\n  function area(coordinates) {\n    return Math.abs(d3.geom.polygon(coordinates.map(projection)).area());\n  }\n\n  path.projection = function(x) {\n    projection = x;\n    return path;\n  };\n\n  path.pointRadius = function(x) {\n    if (typeof x === \"function\") pointRadius = x;\n    else {\n      pointRadius = +x;\n      pointCircle = d3_path_circle(pointRadius);\n    }\n    return path;\n  };\n\n  return path;\n};\n\nfunction d3_path_circle(radius) {\n  return \"m0,\" + radius\n      + \"a\" + radius + \",\" + radius + \" 0 1,1 0,\" + (-2 * radius)\n      + \"a\" + radius + \",\" + radius + \" 0 1,1 0,\" + (+2 * radius)\n      + \"z\";\n}\n/**\n * Given a GeoJSON object, returns the corresponding bounding box. The bounding\n * box is represented by a two-dimensional array: [[left, bottom], [right,\n * top]], where left is the minimum longitude, bottom is the minimum latitude,\n * right is maximum longitude, and top is the maximum latitude.\n */\nd3.geo.bounds = function(feature) {\n  var left = Infinity,\n      bottom = Infinity,\n      right = -Infinity,\n      top = -Infinity;\n  d3_geo_bounds(feature, function(x, y) {\n    if (x < left) left = x;\n    if (x > right) right = x;\n    if (y < bottom) bottom = y;\n    if (y > top) top = y;\n  });\n  return [[left, bottom], [right, top]];\n};\n\nfunction d3_geo_bounds(o, f) {\n  if (d3_geo_boundsTypes.hasOwnProperty(o.type)) d3_geo_boundsTypes[o.type](o, f);\n}\n\nvar d3_geo_boundsTypes = {\n  Feature: d3_geo_boundsFeature,\n  FeatureCollection: d3_geo_boundsFeatureCollection,\n  GeometryCollection: d3_geo_boundsGeometryCollection,\n  LineString: d3_geo_boundsLineString,\n  MultiLineString: d3_geo_boundsMultiLineString,\n  MultiPoint: d3_geo_boundsLineString,\n  MultiPolygon: d3_geo_boundsMultiPolygon,\n  Point: d3_geo_boundsPoint,\n  Polygon: d3_geo_boundsPolygon\n};\n\nfunction d3_geo_boundsFeature(o, f) {\n  d3_geo_bounds(o.geometry, f);\n}\n\nfunction d3_geo_boundsFeatureCollection(o, f) {\n  for (var a = o.features, i = 0, n = a.length; i < n; i++) {\n    d3_geo_bounds(a[i].geometry, f);\n  }\n}\n\nfunction d3_geo_boundsGeometryCollection(o, f) {\n  for (var a = o.geometries, i = 0, n = a.length; i < n; i++) {\n    d3_geo_bounds(a[i], f);\n  }\n}\n\nfunction d3_geo_boundsLineString(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    f.apply(null, a[i]);\n  }\n}\n\nfunction d3_geo_boundsMultiLineString(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    for (var b = a[i], j = 0, m = b.length; j < m; j++) {\n      f.apply(null, b[j]);\n    }\n  }\n}\n\nfunction d3_geo_boundsMultiPolygon(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    for (var b = a[i][0], j = 0, m = b.length; j < m; j++) {\n      f.apply(null, b[j]);\n    }\n  }\n}\n\nfunction d3_geo_boundsPoint(o, f) {\n  f.apply(null, o.coordinates);\n}\n\nfunction d3_geo_boundsPolygon(o, f) {\n  for (var a = o.coordinates[0], i = 0, n = a.length; i < n; i++) {\n    f.apply(null, a[i]);\n  }\n}\n// TODO breakAtDateLine?\n\nd3.geo.circle = function() {\n  var origin = [0, 0],\n      degrees = 90 - 1e-2,\n      radians = degrees * d3_geo_radians,\n      arc = d3.geo.greatArc().target(Object);\n\n  function circle() {\n    // TODO render a circle as a Polygon\n  }\n\n  function visible(point) {\n    return arc.distance(point) < radians;\n  }\n\n  circle.clip = function(d) {\n    arc.source(typeof origin === \"function\" ? origin.apply(this, arguments) : origin);\n    return clipType(d);\n  };\n\n  var clipType = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var features = o.features.map(clipType).filter(Object);\n      return features && (o = Object.create(o), o.features = features, o);\n    },\n\n    Feature: function(o) {\n      var geometry = clipType(o.geometry);\n      return geometry && (o = Object.create(o), o.geometry = geometry, o);\n    },\n\n    Point: function(o) {\n      return visible(o.coordinates) && o;\n    },\n\n    MultiPoint: function(o) {\n      var coordinates = o.coordinates.filter(visible);\n      return coordinates.length && {\n        type: o.type,\n        coordinates: coordinates\n      };\n    },\n\n    LineString: function(o) {\n      var coordinates = clip(o.coordinates);\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    MultiLineString: function(o) {\n      var coordinates = o.coordinates.map(clip).filter(function(d) { return d.length; });\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    Polygon: function(o) {\n      var coordinates = o.coordinates.map(clip);\n      return coordinates[0].length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    MultiPolygon: function(o) {\n      var coordinates = o.coordinates.map(function(d) { return d.map(clip); }).filter(function(d) { return d[0].length; });\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    GeometryCollection: function(o) {\n      var geometries = o.geometries.map(clipType).filter(Object);\n      return geometries.length && (o = Object.create(o), o.geometries = geometries, o);\n    }\n\n  });\n\n  function clip(coordinates) {\n    var i = -1,\n        n = coordinates.length,\n        clipped = [],\n        p0,\n        p1,\n        p2,\n        d0,\n        d1;\n\n    while (++i < n) {\n      d1 = arc.distance(p2 = coordinates[i]);\n      if (d1 < radians) {\n        if (p1) clipped.push(d3_geo_greatArcInterpolate(p1, p2)((d0 - radians) / (d0 - d1)));\n        clipped.push(p2);\n        p0 = p1 = null;\n      } else {\n        p1 = p2;\n        if (!p0 && clipped.length) {\n          clipped.push(d3_geo_greatArcInterpolate(clipped[clipped.length - 1], p1)((radians - d0) / (d1 - d0)));\n          p0 = p1;\n        }\n      }\n      d0 = d1;\n    }\n\n    if (p1 && clipped.length) {\n      d1 = arc.distance(p2 = clipped[0]);\n      clipped.push(d3_geo_greatArcInterpolate(p1, p2)((d0 - radians) / (d0 - d1)));\n    }\n\n    return resample(clipped);\n  }\n\n  // Resample coordinates, creating great arcs between each.\n  function resample(coordinates) {\n    var i = 0,\n        n = coordinates.length,\n        j,\n        m,\n        resampled = n ? [coordinates[0]] : coordinates,\n        resamples,\n        origin = arc.source();\n\n    while (++i < n) {\n      resamples = arc.source(coordinates[i - 1])(coordinates[i]).coordinates;\n      for (j = 0, m = resamples.length; ++j < m;) resampled.push(resamples[j]);\n    }\n\n    arc.source(origin);\n    return resampled;\n  }\n\n  circle.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    return circle;\n  };\n\n  circle.angle = function(x) {\n    if (!arguments.length) return degrees;\n    radians = (degrees = +x) * d3_geo_radians;\n    return circle;\n  };\n\n  // Precision is specified in degrees.\n  circle.precision = function(x) {\n    if (!arguments.length) return arc.precision();\n    arc.precision(x);\n    return circle;\n  };\n\n  return circle;\n}\nd3.geo.greatArc = function() {\n  var source = d3_geo_greatArcSource,\n      target = d3_geo_greatArcTarget,\n      precision = 6 * d3_geo_radians;\n\n  function greatArc() {\n    var a = typeof source === \"function\" ? source.apply(this, arguments) : source,\n        b = typeof target === \"function\" ? target.apply(this, arguments) : target,\n        i = d3_geo_greatArcInterpolate(a, b),\n        dt = precision / i.d,\n        t = 0,\n        coordinates = [a];\n    while ((t += dt) < 1) coordinates.push(i(t));\n    coordinates.push(b);\n    return {\n      type: \"LineString\",\n      coordinates: coordinates\n    };\n  }\n\n  // Length returned in radians; multiply by radius for distance.\n  greatArc.distance = function() {\n    var a = typeof source === \"function\" ? source.apply(this, arguments) : source,\n        b = typeof target === \"function\" ? target.apply(this, arguments) : target;\n     return d3_geo_greatArcInterpolate(a, b).d;\n  };\n\n  greatArc.source = function(x) {\n    if (!arguments.length) return source;\n    source = x;\n    return greatArc;\n  };\n\n  greatArc.target = function(x) {\n    if (!arguments.length) return target;\n    target = x;\n    return greatArc;\n  };\n\n  // Precision is specified in degrees.\n  greatArc.precision = function(x) {\n    if (!arguments.length) return precision / d3_geo_radians;\n    precision = x * d3_geo_radians;\n    return greatArc;\n  };\n\n  return greatArc;\n};\n\nfunction d3_geo_greatArcSource(d) {\n  return d.source;\n}\n\nfunction d3_geo_greatArcTarget(d) {\n  return d.target;\n}\n\nfunction d3_geo_greatArcInterpolate(a, b) {\n  var x0 = a[0] * d3_geo_radians, cx0 = Math.cos(x0), sx0 = Math.sin(x0),\n      y0 = a[1] * d3_geo_radians, cy0 = Math.cos(y0), sy0 = Math.sin(y0),\n      x1 = b[0] * d3_geo_radians, cx1 = Math.cos(x1), sx1 = Math.sin(x1),\n      y1 = b[1] * d3_geo_radians, cy1 = Math.cos(y1), sy1 = Math.sin(y1),\n      d = interpolate.d = Math.acos(Math.max(-1, Math.min(1, sy0 * sy1 + cy0 * cy1 * Math.cos(x1 - x0)))),\n      sd = Math.sin(d);\n\n  // From http://williams.best.vwh.net/avform.htm#Intermediate\n  function interpolate(t) {\n    var A = Math.sin(d - (t *= d)) / sd,\n        B = Math.sin(t) / sd,\n        x = A * cy0 * cx0 + B * cy1 * cx1,\n        y = A * cy0 * sx0 + B * cy1 * sx1,\n        z = A * sy0       + B * sy1;\n    return [\n      Math.atan2(y, x) / d3_geo_radians,\n      Math.atan2(z, Math.sqrt(x * x + y * y)) / d3_geo_radians\n    ];\n  }\n\n  return interpolate;\n}\nd3.geo.greatCircle = d3.geo.circle;\nd3.geom = {};\n/**\n * Computes a contour for a given input grid function using the <a\n * href=\"http://en.wikipedia.org/wiki/Marching_squares\">marching\n * squares</a> algorithm. Returns the contour polygon as an array of points.\n *\n * @param grid a two-input function(x, y) that returns true for values\n * inside the contour and false for values outside the contour.\n * @param start an optional starting point [x, y] on the grid.\n * @returns polygon [[x1, y1], [x2, y2], …]\n */\nd3.geom.contour = function(grid, start) {\n  var s = start || d3_geom_contourStart(grid), // starting point\n      c = [],    // contour polygon\n      x = s[0],  // current x position\n      y = s[1],  // current y position\n      dx = 0,    // next x direction\n      dy = 0,    // next y direction\n      pdx = NaN, // previous x direction\n      pdy = NaN, // previous y direction\n      i = 0;\n\n  do {\n    // determine marching squares index\n    i = 0;\n    if (grid(x-1, y-1)) i += 1;\n    if (grid(x,   y-1)) i += 2;\n    if (grid(x-1, y  )) i += 4;\n    if (grid(x,   y  )) i += 8;\n\n    // determine next direction\n    if (i === 6) {\n      dx = pdy === -1 ? -1 : 1;\n      dy = 0;\n    } else if (i === 9) {\n      dx = 0;\n      dy = pdx === 1 ? -1 : 1;\n    } else {\n      dx = d3_geom_contourDx[i];\n      dy = d3_geom_contourDy[i];\n    }\n\n    // update contour polygon\n    if (dx != pdx && dy != pdy) {\n      c.push([x, y]);\n      pdx = dx;\n      pdy = dy;\n    }\n\n    x += dx;\n    y += dy;\n  } while (s[0] != x || s[1] != y);\n\n  return c;\n};\n\n// lookup tables for marching directions\nvar d3_geom_contourDx = [1, 0, 1, 1,-1, 0,-1, 1,0, 0,0,0,-1, 0,-1,NaN],\n    d3_geom_contourDy = [0,-1, 0, 0, 0,-1, 0, 0,1,-1,1,1, 0,-1, 0,NaN];\n\nfunction d3_geom_contourStart(grid) {\n  var x = 0,\n      y = 0;\n\n  // search for a starting point; begin at origin\n  // and proceed along outward-expanding diagonals\n  while (true) {\n    if (grid(x,y)) {\n      return [x,y];\n    }\n    if (x === 0) {\n      x = y + 1;\n      y = 0;\n    } else {\n      x = x - 1;\n      y = y + 1;\n    }\n  }\n}\n/**\n * Computes the 2D convex hull of a set of points using Graham's scanning\n * algorithm. The algorithm has been implemented as described in Cormen,\n * Leiserson, and Rivest's Introduction to Algorithms. The running time of\n * this algorithm is O(n log n), where n is the number of input points.\n *\n * @param vertices [[x1, y1], [x2, y2], …]\n * @returns polygon [[x1, y1], [x2, y2], …]\n */\nd3.geom.hull = function(vertices) {\n  if (vertices.length < 3) return [];\n\n  var len = vertices.length,\n      plen = len - 1,\n      points = [],\n      stack = [],\n      i, j, h = 0, x1, y1, x2, y2, u, v, a, sp;\n\n  // find the starting ref point: leftmost point with the minimum y coord\n  for (i=1; i<len; ++i) {\n    if (vertices[i][1] < vertices[h][1]) {\n      h = i;\n    } else if (vertices[i][1] == vertices[h][1]) {\n      h = (vertices[i][0] < vertices[h][0] ? i : h);\n    }\n  }\n\n  // calculate polar angles from ref point and sort\n  for (i=0; i<len; ++i) {\n    if (i === h) continue;\n    y1 = vertices[i][1] - vertices[h][1];\n    x1 = vertices[i][0] - vertices[h][0];\n    points.push({angle: Math.atan2(y1, x1), index: i});\n  }\n  points.sort(function(a, b) { return a.angle - b.angle; });\n\n  // toss out duplicate angles\n  a = points[0].angle;\n  v = points[0].index;\n  u = 0;\n  for (i=1; i<plen; ++i) {\n    j = points[i].index;\n    if (a == points[i].angle) {\n      // keep angle for point most distant from the reference\n      x1 = vertices[v][0] - vertices[h][0];\n      y1 = vertices[v][1] - vertices[h][1];\n      x2 = vertices[j][0] - vertices[h][0];\n      y2 = vertices[j][1] - vertices[h][1];\n      if ((x1*x1 + y1*y1) >= (x2*x2 + y2*y2)) {\n        points[i].index = -1;\n      } else {\n        points[u].index = -1;\n        a = points[i].angle;\n        u = i;\n        v = j;\n      }\n    } else {\n      a = points[i].angle;\n      u = i;\n      v = j;\n    }\n  }\n\n  // initialize the stack\n  stack.push(h);\n  for (i=0, j=0; i<2; ++j) {\n    if (points[j].index !== -1) {\n      stack.push(points[j].index);\n      i++;\n    }\n  }\n  sp = stack.length;\n\n  // do graham's scan\n  for (; j<plen; ++j) {\n    if (points[j].index === -1) continue; // skip tossed out points\n    while (!d3_geom_hullCCW(stack[sp-2], stack[sp-1], points[j].index, vertices)) {\n      --sp;\n    }\n    stack[sp++] = points[j].index;\n  }\n\n  // construct the hull\n  var poly = [];\n  for (i=0; i<sp; ++i) {\n    poly.push(vertices[stack[i]]);\n  }\n  return poly;\n}\n\n// are three points in counter-clockwise order?\nfunction d3_geom_hullCCW(i1, i2, i3, v) {\n  var t, a, b, c, d, e, f;\n  t = v[i1]; a = t[0]; b = t[1];\n  t = v[i2]; c = t[0]; d = t[1];\n  t = v[i3]; e = t[0]; f = t[1];\n  return ((f-b)*(c-a) - (d-b)*(e-a)) > 0;\n}\n// Note: requires coordinates to be counterclockwise and convex!\nd3.geom.polygon = function(coordinates) {\n\n  coordinates.area = function() {\n    var i = 0,\n        n = coordinates.length,\n        a = coordinates[n - 1][0] * coordinates[0][1],\n        b = coordinates[n - 1][1] * coordinates[0][0];\n    while (++i < n) {\n      a += coordinates[i - 1][0] * coordinates[i][1];\n      b += coordinates[i - 1][1] * coordinates[i][0];\n    }\n    return (b - a) * .5;\n  };\n\n  coordinates.centroid = function(k) {\n    var i = -1,\n        n = coordinates.length,\n        x = 0,\n        y = 0,\n        a,\n        b = coordinates[n - 1],\n        c;\n    if (!arguments.length) k = -1 / (6 * coordinates.area());\n    while (++i < n) {\n      a = b;\n      b = coordinates[i];\n      c = a[0] * b[1] - b[0] * a[1];\n      x += (a[0] + b[0]) * c;\n      y += (a[1] + b[1]) * c;\n    }\n    return [x * k, y * k];\n  };\n\n  // The Sutherland-Hodgman clipping algorithm.\n  coordinates.clip = function(subject) {\n    var input,\n        i = -1,\n        n = coordinates.length,\n        j,\n        m,\n        a = coordinates[n - 1],\n        b,\n        c,\n        d;\n    while (++i < n) {\n      input = subject.slice();\n      subject.length = 0;\n      b = coordinates[i];\n      c = input[(m = input.length) - 1];\n      j = -1;\n      while (++j < m) {\n        d = input[j];\n        if (d3_geom_polygonInside(d, a, b)) {\n          if (!d3_geom_polygonInside(c, a, b)) {\n            subject.push(d3_geom_polygonIntersect(c, d, a, b));\n          }\n          subject.push(d);\n        } else if (d3_geom_polygonInside(c, a, b)) {\n          subject.push(d3_geom_polygonIntersect(c, d, a, b));\n        }\n        c = d;\n      }\n      a = b;\n    }\n    return subject;\n  };\n\n  return coordinates;\n};\n\nfunction d3_geom_polygonInside(p, a, b) {\n  return (b[0] - a[0]) * (p[1] - a[1]) < (b[1] - a[1]) * (p[0] - a[0]);\n}\n\n// Intersect two infinite lines cd and ab.\nfunction d3_geom_polygonIntersect(c, d, a, b) {\n  var x1 = c[0], x2 = d[0], x3 = a[0], x4 = b[0],\n      y1 = c[1], y2 = d[1], y3 = a[1], y4 = b[1],\n      x13 = x1 - x3,\n      x21 = x2 - x1,\n      x43 = x4 - x3,\n      y13 = y1 - y3,\n      y21 = y2 - y1,\n      y43 = y4 - y3,\n      ua = (x43 * y13 - y43 * x13) / (y43 * x21 - x43 * y21);\n  return [x1 + ua * x21, y1 + ua * y21];\n}\n// Adapted from Nicolas Garcia Belmonte's JIT implementation:\n// http://blog.thejit.org/2010/02/12/voronoi-tessellation/\n// http://blog.thejit.org/assets/voronoijs/voronoi.js\n// See lib/jit/LICENSE for details.\n\n// Notes:\n//\n// This implementation does not clip the returned polygons, so if you want to\n// clip them to a particular shape you will need to do that either in SVG or by\n// post-processing with d3.geom.polygon's clip method.\n//\n// If any vertices are coincident or have NaN positions, the behavior of this\n// method is undefined. Most likely invalid polygons will be returned. You\n// should filter invalid points, and consolidate coincident points, before\n// computing the tessellation.\n\n/**\n * @param vertices [[x1, y1], [x2, y2], …]\n * @returns polygons [[[x1, y1], [x2, y2], …], …]\n */\nd3.geom.voronoi = function(vertices) {\n  var polygons = vertices.map(function() { return []; });\n\n  d3_voronoi_tessellate(vertices, function(e) {\n    var s1,\n        s2,\n        x1,\n        x2,\n        y1,\n        y2;\n    if (e.a === 1 && e.b >= 0) {\n      s1 = e.ep.r;\n      s2 = e.ep.l;\n    } else {\n      s1 = e.ep.l;\n      s2 = e.ep.r;\n    }\n    if (e.a === 1) {\n      y1 = s1 ? s1.y : -1e6;\n      x1 = e.c - e.b * y1;\n      y2 = s2 ? s2.y : 1e6;\n      x2 = e.c - e.b * y2;\n    } else {\n      x1 = s1 ? s1.x : -1e6;\n      y1 = e.c - e.a * x1;\n      x2 = s2 ? s2.x : 1e6;\n      y2 = e.c - e.a * x2;\n    }\n    var v1 = [x1, y1],\n        v2 = [x2, y2];\n    polygons[e.region.l.index].push(v1, v2);\n    polygons[e.region.r.index].push(v1, v2);\n  });\n\n  // Reconnect the polygon segments into counterclockwise loops.\n  return polygons.map(function(polygon, i) {\n    var cx = vertices[i][0],\n        cy = vertices[i][1];\n    polygon.forEach(function(v) {\n      v.angle = Math.atan2(v[0] - cx, v[1] - cy);\n    });\n    return polygon.sort(function(a, b) {\n      return a.angle - b.angle;\n    }).filter(function(d, i) {\n      return !i || (d.angle - polygon[i - 1].angle > 1e-10);\n    });\n  });\n};\n\nvar d3_voronoi_opposite = {\"l\": \"r\", \"r\": \"l\"};\n\nfunction d3_voronoi_tessellate(vertices, callback) {\n\n  var Sites = {\n    list: vertices\n      .map(function(v, i) {\n        return {\n          index: i,\n          x: v[0],\n          y: v[1]\n        };\n      })\n      .sort(function(a, b) {\n        return a.y < b.y ? -1\n          : a.y > b.y ? 1\n          : a.x < b.x ? -1\n          : a.x > b.x ? 1\n          : 0;\n      }),\n    bottomSite: null\n  };\n\n  var EdgeList = {\n    list: [],\n    leftEnd: null,\n    rightEnd: null,\n\n    init: function() {\n      EdgeList.leftEnd = EdgeList.createHalfEdge(null, \"l\");\n      EdgeList.rightEnd = EdgeList.createHalfEdge(null, \"l\");\n      EdgeList.leftEnd.r = EdgeList.rightEnd;\n      EdgeList.rightEnd.l = EdgeList.leftEnd;\n      EdgeList.list.unshift(EdgeList.leftEnd, EdgeList.rightEnd);\n    },\n\n    createHalfEdge: function(edge, side) {\n      return {\n        edge: edge,\n        side: side,\n        vertex: null,\n        \"l\": null,\n        \"r\": null\n      };\n    },\n\n    insert: function(lb, he) {\n      he.l = lb;\n      he.r = lb.r;\n      lb.r.l = he;\n      lb.r = he;\n    },\n\n    leftBound: function(p) {\n      var he = EdgeList.leftEnd;\n      do {\n        he = he.r;\n      } while (he != EdgeList.rightEnd && Geom.rightOf(he, p));\n      he = he.l;\n      return he;\n    },\n\n    del: function(he) {\n      he.l.r = he.r;\n      he.r.l = he.l;\n      he.edge = null;\n    },\n\n    right: function(he) {\n      return he.r;\n    },\n\n    left: function(he) {\n      return he.l;\n    },\n\n    leftRegion: function(he) {\n      return he.edge == null\n          ? Sites.bottomSite\n          : he.edge.region[he.side];\n    },\n\n    rightRegion: function(he) {\n      return he.edge == null\n          ? Sites.bottomSite\n          : he.edge.region[d3_voronoi_opposite[he.side]];\n    }\n  };\n\n  var Geom = {\n\n    bisect: function(s1, s2) {\n      var newEdge = {\n        region: {\"l\": s1, \"r\": s2},\n        ep: {\"l\": null, \"r\": null}\n      };\n\n      var dx = s2.x - s1.x,\n          dy = s2.y - s1.y,\n          adx = dx > 0 ? dx : -dx,\n          ady = dy > 0 ? dy : -dy;\n\n      newEdge.c = s1.x * dx + s1.y * dy\n          + (dx * dx + dy * dy) * .5;\n\n      if (adx > ady) {\n        newEdge.a = 1;\n        newEdge.b = dy / dx;\n        newEdge.c /= dx;\n      } else {\n        newEdge.b = 1;\n        newEdge.a = dx / dy;\n        newEdge.c /= dy;\n      }\n\n      return newEdge;\n    },\n\n    intersect: function(el1, el2) {\n      var e1 = el1.edge,\n          e2 = el2.edge;\n      if (!e1 || !e2 || (e1.region.r == e2.region.r)) {\n        return null;\n      }\n      var d = (e1.a * e2.b) - (e1.b * e2.a);\n      if (Math.abs(d) < 1e-10) {\n        return null;\n      }\n      var xint = (e1.c * e2.b - e2.c * e1.b) / d,\n          yint = (e2.c * e1.a - e1.c * e2.a) / d,\n          e1r = e1.region.r,\n          e2r = e2.region.r,\n          el,\n          e;\n      if ((e1r.y < e2r.y) ||\n         (e1r.y == e2r.y && e1r.x < e2r.x)) {\n        el = el1;\n        e = e1;\n      } else {\n        el = el2;\n        e = e2;\n      }\n      var rightOfSite = (xint >= e.region.r.x);\n      if ((rightOfSite && (el.side === \"l\")) ||\n        (!rightOfSite && (el.side === \"r\"))) {\n        return null;\n      }\n      return {\n        x: xint,\n        y: yint\n      };\n    },\n\n    rightOf: function(he, p) {\n      var e = he.edge,\n          topsite = e.region.r,\n          rightOfSite = (p.x > topsite.x);\n\n      if (rightOfSite && (he.side === \"l\")) {\n        return 1;\n      }\n      if (!rightOfSite && (he.side === \"r\")) {\n        return 0;\n      }\n      if (e.a === 1) {\n        var dyp = p.y - topsite.y,\n            dxp = p.x - topsite.x,\n            fast = 0,\n            above = 0;\n\n        if ((!rightOfSite && (e.b < 0)) ||\n          (rightOfSite && (e.b >= 0))) {\n          above = fast = (dyp >= e.b * dxp);\n        } else {\n          above = ((p.x + p.y * e.b) > e.c);\n          if (e.b < 0) {\n            above = !above;\n          }\n          if (!above) {\n            fast = 1;\n          }\n        }\n        if (!fast) {\n          var dxs = topsite.x - e.region.l.x;\n          above = (e.b * (dxp * dxp - dyp * dyp)) <\n            (dxs * dyp * (1 + 2 * dxp / dxs + e.b * e.b));\n\n          if (e.b < 0) {\n            above = !above;\n          }\n        }\n      } else /* e.b == 1 */ {\n        var yl = e.c - e.a * p.x,\n            t1 = p.y - yl,\n            t2 = p.x - topsite.x,\n            t3 = yl - topsite.y;\n\n        above = (t1 * t1) > (t2 * t2 + t3 * t3);\n      }\n      return he.side === \"l\" ? above : !above;\n    },\n\n    endPoint: function(edge, side, site) {\n      edge.ep[side] = site;\n      if (!edge.ep[d3_voronoi_opposite[side]]) return;\n      callback(edge);\n    },\n\n    distance: function(s, t) {\n      var dx = s.x - t.x,\n          dy = s.y - t.y;\n      return Math.sqrt(dx * dx + dy * dy);\n    }\n  };\n\n  var EventQueue = {\n    list: [],\n\n    insert: function(he, site, offset) {\n      he.vertex = site;\n      he.ystar = site.y + offset;\n      for (var i=0, list=EventQueue.list, l=list.length; i<l; i++) {\n        var next = list[i];\n        if (he.ystar > next.ystar ||\n          (he.ystar == next.ystar &&\n          site.x > next.vertex.x)) {\n          continue;\n        } else {\n          break;\n        }\n      }\n      list.splice(i, 0, he);\n    },\n\n    del: function(he) {\n      for (var i=0, ls=EventQueue.list, l=ls.length; i<l && (ls[i] != he); ++i) {}\n      ls.splice(i, 1);\n    },\n\n    empty: function() { return EventQueue.list.length === 0; },\n\n    nextEvent: function(he) {\n      for (var i=0, ls=EventQueue.list, l=ls.length; i<l; ++i) {\n        if (ls[i] == he) return ls[i+1];\n      }\n      return null;\n    },\n\n    min: function() {\n      var elem = EventQueue.list[0];\n      return {\n        x: elem.vertex.x,\n        y: elem.ystar\n      };\n    },\n\n    extractMin: function() {\n      return EventQueue.list.shift();\n    }\n  };\n\n  EdgeList.init();\n  Sites.bottomSite = Sites.list.shift();\n\n  var newSite = Sites.list.shift(), newIntStar;\n  var lbnd, rbnd, llbnd, rrbnd, bisector;\n  var bot, top, temp, p, v;\n  var e, pm;\n\n  while (true) {\n    if (!EventQueue.empty()) {\n      newIntStar = EventQueue.min();\n    }\n    if (newSite && (EventQueue.empty()\n      || newSite.y < newIntStar.y\n      || (newSite.y == newIntStar.y\n      && newSite.x < newIntStar.x))) { //new site is smallest\n      lbnd = EdgeList.leftBound(newSite);\n      rbnd = EdgeList.right(lbnd);\n      bot = EdgeList.rightRegion(lbnd);\n      e = Geom.bisect(bot, newSite);\n      bisector = EdgeList.createHalfEdge(e, \"l\");\n      EdgeList.insert(lbnd, bisector);\n      p = Geom.intersect(lbnd, bisector);\n      if (p) {\n        EventQueue.del(lbnd);\n        EventQueue.insert(lbnd, p, Geom.distance(p, newSite));\n      }\n      lbnd = bisector;\n      bisector = EdgeList.createHalfEdge(e, \"r\");\n      EdgeList.insert(lbnd, bisector);\n      p = Geom.intersect(bisector, rbnd);\n      if (p) {\n        EventQueue.insert(bisector, p, Geom.distance(p, newSite));\n      }\n      newSite = Sites.list.shift();\n    } else if (!EventQueue.empty()) { //intersection is smallest\n      lbnd = EventQueue.extractMin();\n      llbnd = EdgeList.left(lbnd);\n      rbnd = EdgeList.right(lbnd);\n      rrbnd = EdgeList.right(rbnd);\n      bot = EdgeList.leftRegion(lbnd);\n      top = EdgeList.rightRegion(rbnd);\n      v = lbnd.vertex;\n      Geom.endPoint(lbnd.edge, lbnd.side, v);\n      Geom.endPoint(rbnd.edge, rbnd.side, v);\n      EdgeList.del(lbnd);\n      EventQueue.del(rbnd);\n      EdgeList.del(rbnd);\n      pm = \"l\";\n      if (bot.y > top.y) {\n        temp = bot;\n        bot = top;\n        top = temp;\n        pm = \"r\";\n      }\n      e = Geom.bisect(bot, top);\n      bisector = EdgeList.createHalfEdge(e, pm);\n      EdgeList.insert(llbnd, bisector);\n      Geom.endPoint(e, d3_voronoi_opposite[pm], v);\n      p = Geom.intersect(llbnd, bisector);\n      if (p) {\n        EventQueue.del(llbnd);\n        EventQueue.insert(llbnd, p, Geom.distance(p, bot));\n      }\n      p = Geom.intersect(bisector, rrbnd);\n      if (p) {\n        EventQueue.insert(bisector, p, Geom.distance(p, bot));\n      }\n    } else {\n      break;\n    }\n  }//end while\n\n  for (lbnd = EdgeList.right(EdgeList.leftEnd);\n      lbnd != EdgeList.rightEnd;\n      lbnd = EdgeList.right(lbnd)) {\n    callback(lbnd.edge);\n  }\n}\n/**\n* @param vertices [[x1, y1], [x2, y2], …]\n* @returns triangles [[[x1, y1], [x2, y2], [x3, y3]], …]\n */\nd3.geom.delaunay = function(vertices) {\n  var edges = vertices.map(function() { return []; }),\n      triangles = [];\n\n  // Use the Voronoi tessellation to determine Delaunay edges.\n  d3_voronoi_tessellate(vertices, function(e) {\n    edges[e.region.l.index].push(vertices[e.region.r.index]);\n  });\n\n  // Reconnect the edges into counterclockwise triangles.\n  edges.forEach(function(edge, i) {\n    var v = vertices[i],\n        cx = v[0],\n        cy = v[1];\n    edge.forEach(function(v) {\n      v.angle = Math.atan2(v[0] - cx, v[1] - cy);\n    });\n    edge.sort(function(a, b) {\n      return a.angle - b.angle;\n    });\n    for (var j = 0, m = edge.length - 1; j < m; j++) {\n      triangles.push([v, edge[j], edge[j + 1]]);\n    }\n  });\n\n  return triangles;\n};\n// Constructs a new quadtree for the specified array of points. A quadtree is a\n// two-dimensional recursive spatial subdivision. This implementation uses\n// square partitions, dividing each square into four equally-sized squares. Each\n// point exists in a unique node; if multiple points are in the same position,\n// some points may be stored on internal nodes rather than leaf nodes. Quadtrees\n// can be used to accelerate various spatial operations, such as the Barnes-Hut\n// approximation for computing n-body forces, or collision detection.\nd3.geom.quadtree = function(points, x1, y1, x2, y2) {\n  var p,\n      i = -1,\n      n = points.length;\n\n  // Type conversion for deprecated API.\n  if (n && isNaN(points[0].x)) points = points.map(d3_geom_quadtreePoint);\n\n  // Allow bounds to be specified explicitly.\n  if (arguments.length < 5) {\n    if (arguments.length === 3) {\n      y2 = x2 = y1;\n      y1 = x1;\n    } else {\n      x1 = y1 = Infinity;\n      x2 = y2 = -Infinity;\n\n      // Compute bounds.\n      while (++i < n) {\n        p = points[i];\n        if (p.x < x1) x1 = p.x;\n        if (p.y < y1) y1 = p.y;\n        if (p.x > x2) x2 = p.x;\n        if (p.y > y2) y2 = p.y;\n      }\n\n      // Squarify the bounds.\n      var dx = x2 - x1,\n          dy = y2 - y1;\n      if (dx > dy) y2 = y1 + dx;\n      else x2 = x1 + dy;\n    }\n  }\n\n  // Recursively inserts the specified point p at the node n or one of its\n  // descendants. The bounds are defined by [x1, x2] and [y1, y2].\n  function insert(n, p, x1, y1, x2, y2) {\n    if (isNaN(p.x) || isNaN(p.y)) return; // ignore invalid points\n    if (n.leaf) {\n      var v = n.point;\n      if (v) {\n        // If the point at this leaf node is at the same position as the new\n        // point we are adding, we leave the point associated with the\n        // internal node while adding the new point to a child node. This\n        // avoids infinite recursion.\n        if ((Math.abs(v.x - p.x) + Math.abs(v.y - p.y)) < .01) {\n          insertChild(n, p, x1, y1, x2, y2);\n        } else {\n          n.point = null;\n          insertChild(n, v, x1, y1, x2, y2);\n          insertChild(n, p, x1, y1, x2, y2);\n        }\n      } else {\n        n.point = p;\n      }\n    } else {\n      insertChild(n, p, x1, y1, x2, y2);\n    }\n  }\n\n  // Recursively inserts the specified point p into a descendant of node n. The\n  // bounds are defined by [x1, x2] and [y1, y2].\n  function insertChild(n, p, x1, y1, x2, y2) {\n    // Compute the split point, and the quadrant in which to insert p.\n    var sx = (x1 + x2) * .5,\n        sy = (y1 + y2) * .5,\n        right = p.x >= sx,\n        bottom = p.y >= sy,\n        i = (bottom << 1) + right;\n\n    // Recursively insert into the child node.\n    n.leaf = false;\n    n = n.nodes[i] || (n.nodes[i] = d3_geom_quadtreeNode());\n\n    // Update the bounds as we recurse.\n    if (right) x1 = sx; else x2 = sx;\n    if (bottom) y1 = sy; else y2 = sy;\n    insert(n, p, x1, y1, x2, y2);\n  }\n\n  // Create the root node.\n  var root = d3_geom_quadtreeNode();\n\n  root.add = function(p) {\n    insert(root, p, x1, y1, x2, y2);\n  };\n\n  root.visit = function(f) {\n    d3_geom_quadtreeVisit(f, root, x1, y1, x2, y2);\n  };\n\n  // Insert all points.\n  points.forEach(root.add);\n  return root;\n};\n\nfunction d3_geom_quadtreeNode() {\n  return {\n    leaf: true,\n    nodes: [],\n    point: null\n  };\n}\n\nfunction d3_geom_quadtreeVisit(f, node, x1, y1, x2, y2) {\n  if (!f(node, x1, y1, x2, y2)) {\n    var sx = (x1 + x2) * .5,\n        sy = (y1 + y2) * .5,\n        children = node.nodes;\n    if (children[0]) d3_geom_quadtreeVisit(f, children[0], x1, y1, sx, sy);\n    if (children[1]) d3_geom_quadtreeVisit(f, children[1], sx, y1, x2, sy);\n    if (children[2]) d3_geom_quadtreeVisit(f, children[2], x1, sy, sx, y2);\n    if (children[3]) d3_geom_quadtreeVisit(f, children[3], sx, sy, x2, y2);\n  }\n}\n\nfunction d3_geom_quadtreePoint(p) {\n  return {\n    x: p[0],\n    y: p[1]\n  };\n}\nd3.time = {};\n\nvar d3_time = Date;\n\nfunction d3_time_utc() {\n  this._ = new Date(arguments.length > 1\n      ? Date.UTC.apply(this, arguments)\n      : arguments[0]);\n}\n\nd3_time_utc.prototype = {\n  getDate: function() { return this._.getUTCDate(); },\n  getDay: function() { return this._.getUTCDay(); },\n  getFullYear: function() { return this._.getUTCFullYear(); },\n  getHours: function() { return this._.getUTCHours(); },\n  getMilliseconds: function() { return this._.getUTCMilliseconds(); },\n  getMinutes: function() { return this._.getUTCMinutes(); },\n  getMonth: function() { return this._.getUTCMonth(); },\n  getSeconds: function() { return this._.getUTCSeconds(); },\n  getTime: function() { return this._.getTime(); },\n  getTimezoneOffset: function() { return 0; },\n  valueOf: function() { return this._.valueOf(); },\n  setDate: function() { d3_time_prototype.setUTCDate.apply(this._, arguments); },\n  setDay: function() { d3_time_prototype.setUTCDay.apply(this._, arguments); },\n  setFullYear: function() { d3_time_prototype.setUTCFullYear.apply(this._, arguments); },\n  setHours: function() { d3_time_prototype.setUTCHours.apply(this._, arguments); },\n  setMilliseconds: function() { d3_time_prototype.setUTCMilliseconds.apply(this._, arguments); },\n  setMinutes: function() { d3_time_prototype.setUTCMinutes.apply(this._, arguments); },\n  setMonth: function() { d3_time_prototype.setUTCMonth.apply(this._, arguments); },\n  setSeconds: function() { d3_time_prototype.setUTCSeconds.apply(this._, arguments); },\n  setTime: function() { d3_time_prototype.setTime.apply(this._, arguments); }\n};\n\nvar d3_time_prototype = Date.prototype;\nd3.time.format = function(template) {\n  var n = template.length;\n\n  function format(date) {\n    var string = [],\n        i = -1,\n        j = 0,\n        c,\n        f;\n    while (++i < n) {\n      if (template.charCodeAt(i) == 37) {\n        string.push(\n            template.substring(j, i),\n            (f = d3_time_formats[c = template.charAt(++i)])\n            ? f(date) : c);\n        j = i + 1;\n      }\n    }\n    string.push(template.substring(j, i));\n    return string.join(\"\");\n  }\n\n  format.parse = function(string) {\n    var d = {y: 1900, m: 0, d: 1, H: 0, M: 0, S: 0, L: 0},\n        i = d3_time_parse(d, template, string, 0);\n    if (i != string.length) return null;\n\n    // The am-pm flag is 0 for AM, and 1 for PM.\n    if (\"p\" in d) d.H = d.H % 12 + d.p * 12;\n\n    var date = new d3_time();\n    date.setFullYear(d.y, d.m, d.d);\n    date.setHours(d.H, d.M, d.S, d.L);\n    return date;\n  };\n\n  format.toString = function() {\n    return template;\n  };\n\n  return format;\n};\n\nfunction d3_time_parse(date, template, string, j) {\n  var c,\n      p,\n      i = 0,\n      n = template.length,\n      m = string.length;\n  while (i < n) {\n    if (j >= m) return -1;\n    c = template.charCodeAt(i++);\n    if (c == 37) {\n      p = d3_time_parsers[template.charAt(i++)];\n      if (!p || ((j = p(date, string, j)) < 0)) return -1;\n    } else if (c != string.charCodeAt(j++)) {\n      return -1;\n    }\n  }\n  return j;\n}\n\nvar d3_time_zfill2 = d3.format(\"02d\"),\n    d3_time_zfill3 = d3.format(\"03d\"),\n    d3_time_zfill4 = d3.format(\"04d\"),\n    d3_time_sfill2 = d3.format(\"2d\");\n\nvar d3_time_formats = {\n  a: function(d) { return d3_time_weekdays[d.getDay()].substring(0, 3); },\n  A: function(d) { return d3_time_weekdays[d.getDay()]; },\n  b: function(d) { return d3_time_months[d.getMonth()].substring(0, 3); },\n  B: function(d) { return d3_time_months[d.getMonth()]; },\n  c: d3.time.format(\"%a %b %e %H:%M:%S %Y\"),\n  d: function(d) { return d3_time_zfill2(d.getDate()); },\n  e: function(d) { return d3_time_sfill2(d.getDate()); },\n  H: function(d) { return d3_time_zfill2(d.getHours()); },\n  I: function(d) { return d3_time_zfill2(d.getHours() % 12 || 12); },\n  j: function(d) { return d3_time_zfill3(1 + d3.time.dayOfYear(d)); },\n  L: function(d) { return d3_time_zfill3(d.getMilliseconds()); },\n  m: function(d) { return d3_time_zfill2(d.getMonth() + 1); },\n  M: function(d) { return d3_time_zfill2(d.getMinutes()); },\n  p: function(d) { return d.getHours() >= 12 ? \"PM\" : \"AM\"; },\n  S: function(d) { return d3_time_zfill2(d.getSeconds()); },\n  U: function(d) { return d3_time_zfill2(d3.time.sundayOfYear(d)); },\n  w: function(d) { return d.getDay(); },\n  W: function(d) { return d3_time_zfill2(d3.time.mondayOfYear(d)); },\n  x: d3.time.format(\"%m/%d/%y\"),\n  X: d3.time.format(\"%H:%M:%S\"),\n  y: function(d) { return d3_time_zfill2(d.getFullYear() % 100); },\n  Y: function(d) { return d3_time_zfill4(d.getFullYear() % 10000); },\n  Z: d3_time_zone,\n  \"%\": function(d) { return \"%\"; }\n};\n\nvar d3_time_parsers = {\n  a: d3_time_parseWeekdayAbbrev,\n  A: d3_time_parseWeekday,\n  b: d3_time_parseMonthAbbrev,\n  B: d3_time_parseMonth,\n  c: d3_time_parseLocaleFull,\n  d: d3_time_parseDay,\n  e: d3_time_parseDay,\n  H: d3_time_parseHour24,\n  I: d3_time_parseHour24,\n  // j: function(d, s, i) { /*TODO day of year [001,366] */ return i; },\n  L: d3_time_parseMilliseconds,\n  m: d3_time_parseMonthNumber,\n  M: d3_time_parseMinutes,\n  p: d3_time_parseAmPm,\n  S: d3_time_parseSeconds,\n  // U: function(d, s, i) { /*TODO week number (sunday) [00,53] */ return i; },\n  // w: function(d, s, i) { /*TODO weekday [0,6] */ return i; },\n  // W: function(d, s, i) { /*TODO week number (monday) [00,53] */ return i; },\n  x: d3_time_parseLocaleDate,\n  X: d3_time_parseLocaleTime,\n  y: d3_time_parseYear,\n  Y: d3_time_parseFullYear\n  // ,\n  // Z: function(d, s, i) { /*TODO time zone */ return i; },\n  // \"%\": function(d, s, i) { /*TODO literal % */ return i; }\n};\n\n// Note: weekday is validated, but does not set the date.\nfunction d3_time_parseWeekdayAbbrev(date, string, i) {\n  return d3_time_weekdayAbbrevRe.test(string.substring(i, i += 3)) ? i : -1;\n}\n\n// Note: weekday is validated, but does not set the date.\nfunction d3_time_parseWeekday(date, string, i) {\n  d3_time_weekdayRe.lastIndex = 0;\n  var n = d3_time_weekdayRe.exec(string.substring(i, i + 10));\n  return n ? i += n[0].length : -1;\n}\n\nvar d3_time_weekdayAbbrevRe = /^(?:sun|mon|tue|wed|thu|fri|sat)/i,\n    d3_time_weekdayRe = /^(?:Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday)/i;\n    d3_time_weekdays = [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"];\n\nfunction d3_time_parseMonthAbbrev(date, string, i) {\n  var n = d3_time_monthAbbrevLookup.get(string.substring(i, i += 3).toLowerCase());\n  return n == null ? -1 : (date.m = n, i);\n}\n\nvar d3_time_monthAbbrevLookup = d3.map({\n  jan: 0,\n  feb: 1,\n  mar: 2,\n  apr: 3,\n  may: 4,\n  jun: 5,\n  jul: 6,\n  aug: 7,\n  sep: 8,\n  oct: 9,\n  nov: 10,\n  dec: 11\n});\n\nfunction d3_time_parseMonth(date, string, i) {\n  d3_time_monthRe.lastIndex = 0;\n  var n = d3_time_monthRe.exec(string.substring(i, i + 12));\n  return n ? (date.m = d3_time_monthLookup.get(n[0].toLowerCase()), i += n[0].length) : -1;\n}\n\nvar d3_time_monthRe = /^(?:January|February|March|April|May|June|July|August|September|October|November|December)/ig;\n\nvar d3_time_monthLookup = d3.map({\n  january: 0,\n  february: 1,\n  march: 2,\n  april: 3,\n  may: 4,\n  june: 5,\n  july: 6,\n  august: 7,\n  september: 8,\n  october: 9,\n  november: 10,\n  december: 11\n});\n\nvar d3_time_months = [\n  \"January\",\n  \"February\",\n  \"March\",\n  \"April\",\n  \"May\",\n  \"June\",\n  \"July\",\n  \"August\",\n  \"September\",\n  \"October\",\n  \"November\",\n  \"December\"\n];\n\nfunction d3_time_parseLocaleFull(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.c.toString(), string, i);\n}\n\nfunction d3_time_parseLocaleDate(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.x.toString(), string, i);\n}\n\nfunction d3_time_parseLocaleTime(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.X.toString(), string, i);\n}\n\nfunction d3_time_parseFullYear(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 4));\n  return n ? (date.y = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseYear(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.y = d3_time_century() + +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_century() {\n  return ~~(new Date().getFullYear() / 1000) * 1000;\n}\n\nfunction d3_time_parseMonthNumber(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.m = n[0] - 1, i += n[0].length) : -1;\n}\n\nfunction d3_time_parseDay(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.d = +n[0], i += n[0].length) : -1;\n}\n\n// Note: we don't validate that the hour is in the range [0,23] or [1,12].\nfunction d3_time_parseHour24(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.H = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseMinutes(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.M = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseSeconds(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.S = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseMilliseconds(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 3));\n  return n ? (date.L = +n[0], i += n[0].length) : -1;\n}\n\n// Note: we don't look at the next directive.\nvar d3_time_numberRe = /\\s*\\d+/;\n\nfunction d3_time_parseAmPm(date, string, i) {\n  var n = d3_time_amPmLookup.get(string.substring(i, i += 2).toLowerCase());\n  return n == null ? -1 : (date.p = n, i);\n}\n\nvar d3_time_amPmLookup = d3.map({\n  am: 0,\n  pm: 1\n});\n\n// TODO table of time zone offset names?\nfunction d3_time_zone(d) {\n  var z = d.getTimezoneOffset(),\n      zs = z > 0 ? \"-\" : \"+\",\n      zh = ~~(Math.abs(z) / 60),\n      zm = Math.abs(z) % 60;\n  return zs + d3_time_zfill2(zh) + d3_time_zfill2(zm);\n}\nd3.time.format.utc = function(template) {\n  var local = d3.time.format(template);\n\n  function format(date) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time();\n      utc._ = date;\n      return local(utc);\n    } finally {\n      d3_time = Date;\n    }\n  }\n\n  format.parse = function(string) {\n    try {\n      d3_time = d3_time_utc;\n      var date = local.parse(string);\n      return date && date._;\n    } finally {\n      d3_time = Date;\n    }\n  };\n\n  format.toString = local.toString;\n\n  return format;\n};\nvar d3_time_formatIso = d3.time.format.utc(\"%Y-%m-%dT%H:%M:%S.%LZ\");\n\nd3.time.format.iso = Date.prototype.toISOString ? d3_time_formatIsoNative : d3_time_formatIso;\n\nfunction d3_time_formatIsoNative(date) {\n  return date.toISOString();\n}\n\nd3_time_formatIsoNative.parse = function(string) {\n  return new Date(string);\n};\n\nd3_time_formatIsoNative.toString = d3_time_formatIso.toString;\nfunction d3_time_interval(local, step, number) {\n\n  function round(date) {\n    var d0 = local(date), d1 = offset(d0, 1);\n    return date - d0 < d1 - date ? d0 : d1;\n  }\n\n  function ceil(date) {\n    step(date = local(new d3_time(date - 1)), 1);\n    return date;\n  }\n\n  function offset(date, k) {\n    step(date = new d3_time(+date), k);\n    return date;\n  }\n\n  function range(t0, t1, dt) {\n    var time = ceil(t0), times = [];\n    if (dt > 1) {\n      while (time < t1) {\n        if (!(number(time) % dt)) times.push(new Date(+time));\n        step(time, 1);\n      }\n    } else {\n      while (time < t1) times.push(new Date(+time)), step(time, 1);\n    }\n    return times;\n  }\n\n  function range_utc(t0, t1, dt) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time_utc();\n      utc._ = t0;\n      return range(utc, t1, dt);\n    } finally {\n      d3_time = Date;\n    }\n  }\n\n  local.floor = local;\n  local.round = round;\n  local.ceil = ceil;\n  local.offset = offset;\n  local.range = range;\n\n  var utc = local.utc = d3_time_interval_utc(local);\n  utc.floor = utc;\n  utc.round = d3_time_interval_utc(round);\n  utc.ceil = d3_time_interval_utc(ceil);\n  utc.offset = d3_time_interval_utc(offset);\n  utc.range = range_utc;\n\n  return local;\n}\n\nfunction d3_time_interval_utc(method) {\n  return function(date, k) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time_utc();\n      utc._ = date;\n      return method(utc, k)._;\n    } finally {\n      d3_time = Date;\n    }\n  };\n}\nd3.time.second = d3_time_interval(function(date) {\n  return new d3_time(Math.floor(date / 1e3) * 1e3);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 1e3); // DST breaks setSeconds\n}, function(date) {\n  return date.getSeconds();\n});\n\nd3.time.seconds = d3.time.second.range;\nd3.time.seconds.utc = d3.time.second.utc.range;\nd3.time.minute = d3_time_interval(function(date) {\n  return new d3_time(Math.floor(date / 6e4) * 6e4);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 6e4); // DST breaks setMinutes\n}, function(date) {\n  return date.getMinutes();\n});\n\nd3.time.minutes = d3.time.minute.range;\nd3.time.minutes.utc = d3.time.minute.utc.range;\nd3.time.hour = d3_time_interval(function(date) {\n  var timezone = date.getTimezoneOffset() / 60;\n  return new d3_time((Math.floor(date / 36e5 - timezone) + timezone) * 36e5);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 36e5); // DST breaks setHours\n}, function(date) {\n  return date.getHours();\n});\n\nd3.time.hours = d3.time.hour.range;\nd3.time.hours.utc = d3.time.hour.utc.range;\nd3.time.day = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), date.getMonth(), date.getDate());\n}, function(date, offset) {\n  date.setDate(date.getDate() + offset);\n}, function(date) {\n  return date.getDate() - 1;\n});\n\nd3.time.days = d3.time.day.range;\nd3.time.days.utc = d3.time.day.utc.range;\n\nd3.time.dayOfYear = function(date) {\n  var year = d3.time.year(date);\n  return Math.floor((date - year) / 864e5 - (date.getTimezoneOffset() - year.getTimezoneOffset()) / 1440);\n};\nd3_time_weekdays.forEach(function(day, i) {\n  day = day.toLowerCase();\n  i = 7 - i;\n\n  var interval = d3.time[day] = d3_time_interval(function(date) {\n    (date = d3.time.day(date)).setDate(date.getDate() - (date.getDay() + i) % 7);\n    return date;\n  }, function(date, offset) {\n    date.setDate(date.getDate() + Math.floor(offset) * 7);\n  }, function(date) {\n    var day = d3.time.year(date).getDay();\n    return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7) - (day !== i);\n  });\n\n  d3.time[day + \"s\"] = interval.range;\n  d3.time[day + \"s\"].utc = interval.utc.range;\n\n  d3.time[day + \"OfYear\"] = function(date) {\n    var day = d3.time.year(date).getDay();\n    return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7);\n  };\n});\n\nd3.time.week = d3.time.sunday;\nd3.time.weeks = d3.time.sunday.range;\nd3.time.weeks.utc = d3.time.sunday.utc.range;\nd3.time.weekOfYear = d3.time.sundayOfYear;\nd3.time.month = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), date.getMonth(), 1);\n}, function(date, offset) {\n  date.setMonth(date.getMonth() + offset);\n}, function(date) {\n  return date.getMonth();\n});\n\nd3.time.months = d3.time.month.range;\nd3.time.months.utc = d3.time.month.utc.range;\nd3.time.year = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), 0, 1);\n}, function(date, offset) {\n  date.setFullYear(date.getFullYear() + offset);\n}, function(date) {\n  return date.getFullYear();\n});\n\nd3.time.years = d3.time.year.range;\nd3.time.years.utc = d3.time.year.utc.range;\nfunction d3_time_scale(linear, methods, format) {\n\n  function scale(x) {\n    return linear(x);\n  }\n\n  scale.invert = function(x) {\n    return d3_time_scaleDate(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(d3_time_scaleDate);\n    linear.domain(x);\n    return scale;\n  };\n\n  scale.nice = function(m) {\n    var extent = d3_time_scaleExtent(scale.domain());\n    return scale.domain([m.floor(extent[0]), m.ceil(extent[1])]);\n  };\n\n  scale.ticks = function(m, k) {\n    var extent = d3_time_scaleExtent(scale.domain());\n    if (typeof m !== \"function\") {\n      var span = extent[1] - extent[0],\n          target = span / m,\n          i = d3.bisect(d3_time_scaleSteps, target);\n      if (i == d3_time_scaleSteps.length) return methods.year(extent, m);\n      if (!i) return linear.ticks(m).map(d3_time_scaleDate);\n      if (Math.log(target / d3_time_scaleSteps[i - 1]) < Math.log(d3_time_scaleSteps[i] / target)) --i;\n      m = methods[i];\n      k = m[1];\n      m = m[0].range;\n    }\n    return m(extent[0], new Date(+extent[1] + 1), k); // inclusive upper bound\n  };\n\n  scale.tickFormat = function() {\n    return format;\n  };\n\n  scale.copy = function() {\n    return d3_time_scale(linear.copy(), methods, format);\n  };\n\n  // TOOD expose d3_scale_linear_rebind?\n  return d3.rebind(scale, linear, \"range\", \"rangeRound\", \"interpolate\", \"clamp\");\n}\n\n// TODO expose d3_scaleExtent?\nfunction d3_time_scaleExtent(domain) {\n  var start = domain[0], stop = domain[domain.length - 1];\n  return start < stop ? [start, stop] : [stop, start];\n}\n\nfunction d3_time_scaleDate(t) {\n  return new Date(t);\n}\n\nfunction d3_time_scaleFormat(formats) {\n  return function(date) {\n    var i = formats.length - 1, f = formats[i];\n    while (!f[1](date)) f = formats[--i];\n    return f[0](date);\n  };\n}\n\nfunction d3_time_scaleSetYear(y) {\n  var d = new Date(y, 0, 1);\n  d.setFullYear(y); // Y2K fail\n  return d;\n}\n\nfunction d3_time_scaleGetYear(d) {\n  var y = d.getFullYear(),\n      d0 = d3_time_scaleSetYear(y),\n      d1 = d3_time_scaleSetYear(y + 1);\n  return y + (d - d0) / (d1 - d0);\n}\n\nvar d3_time_scaleSteps = [\n  1e3,    // 1-second\n  5e3,    // 5-second\n  15e3,   // 15-second\n  3e4,    // 30-second\n  6e4,    // 1-minute\n  3e5,    // 5-minute\n  9e5,    // 15-minute\n  18e5,   // 30-minute\n  36e5,   // 1-hour\n  108e5,  // 3-hour\n  216e5,  // 6-hour\n  432e5,  // 12-hour\n  864e5,  // 1-day\n  1728e5, // 2-day\n  6048e5, // 1-week\n  2592e6, // 1-month\n  7776e6, // 3-month\n  31536e6 // 1-year\n];\n\nvar d3_time_scaleLocalMethods = [\n  [d3.time.second, 1],\n  [d3.time.second, 5],\n  [d3.time.second, 15],\n  [d3.time.second, 30],\n  [d3.time.minute, 1],\n  [d3.time.minute, 5],\n  [d3.time.minute, 15],\n  [d3.time.minute, 30],\n  [d3.time.hour, 1],\n  [d3.time.hour, 3],\n  [d3.time.hour, 6],\n  [d3.time.hour, 12],\n  [d3.time.day, 1],\n  [d3.time.day, 2],\n  [d3.time.week, 1],\n  [d3.time.month, 1],\n  [d3.time.month, 3],\n  [d3.time.year, 1]\n];\n\nvar d3_time_scaleLocalFormats = [\n  [d3.time.format(\"%Y\"), function(d) { return true; }],\n  [d3.time.format(\"%B\"), function(d) { return d.getMonth(); }],\n  [d3.time.format(\"%b %d\"), function(d) { return d.getDate() != 1; }],\n  [d3.time.format(\"%a %d\"), function(d) { return d.getDay() && d.getDate() != 1; }],\n  [d3.time.format(\"%I %p\"), function(d) { return d.getHours(); }],\n  [d3.time.format(\"%I:%M\"), function(d) { return d.getMinutes(); }],\n  [d3.time.format(\":%S\"), function(d) { return d.getSeconds(); }],\n  [d3.time.format(\".%L\"), function(d) { return d.getMilliseconds(); }]\n];\n\nvar d3_time_scaleLinear = d3.scale.linear(),\n    d3_time_scaleLocalFormat = d3_time_scaleFormat(d3_time_scaleLocalFormats);\n\nd3_time_scaleLocalMethods.year = function(extent, m) {\n  return d3_time_scaleLinear.domain(extent.map(d3_time_scaleGetYear)).ticks(m).map(d3_time_scaleSetYear);\n};\n\nd3.time.scale = function() {\n  return d3_time_scale(d3.scale.linear(), d3_time_scaleLocalMethods, d3_time_scaleLocalFormat);\n};\nvar d3_time_scaleUTCMethods = d3_time_scaleLocalMethods.map(function(m) {\n  return [m[0].utc, m[1]];\n});\n\nvar d3_time_scaleUTCFormats = [\n  [d3.time.format.utc(\"%Y\"), function(d) { return true; }],\n  [d3.time.format.utc(\"%B\"), function(d) { return d.getUTCMonth(); }],\n  [d3.time.format.utc(\"%b %d\"), function(d) { return d.getUTCDate() != 1; }],\n  [d3.time.format.utc(\"%a %d\"), function(d) { return d.getUTCDay() && d.getUTCDate() != 1; }],\n  [d3.time.format.utc(\"%I %p\"), function(d) { return d.getUTCHours(); }],\n  [d3.time.format.utc(\"%I:%M\"), function(d) { return d.getUTCMinutes(); }],\n  [d3.time.format.utc(\":%S\"), function(d) { return d.getUTCSeconds(); }],\n  [d3.time.format.utc(\".%L\"), function(d) { return d.getUTCMilliseconds(); }]\n];\n\nvar d3_time_scaleUTCFormat = d3_time_scaleFormat(d3_time_scaleUTCFormats);\n\nfunction d3_time_scaleUTCSetYear(y) {\n  var d = new Date(Date.UTC(y, 0, 1));\n  d.setUTCFullYear(y); // Y2K fail\n  return d;\n}\n\nfunction d3_time_scaleUTCGetYear(d) {\n  var y = d.getUTCFullYear(),\n      d0 = d3_time_scaleUTCSetYear(y),\n      d1 = d3_time_scaleUTCSetYear(y + 1);\n  return y + (d - d0) / (d1 - d0);\n}\n\nd3_time_scaleUTCMethods.year = function(extent, m) {\n  return d3_time_scaleLinear.domain(extent.map(d3_time_scaleUTCGetYear)).ticks(m).map(d3_time_scaleUTCSetYear);\n};\n\nd3.time.scale.utc = function() {\n  return d3_time_scale(d3.scale.linear(), d3_time_scaleUTCMethods, d3_time_scaleUTCFormat);\n};\n})();\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/highlight.js",
    "content": "var hljs=new function(){function l(o){return o.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function b(p){for(var o=p.firstChild;o;o=o.nextSibling){if(o.nodeName==\"CODE\"){return o}if(!(o.nodeType==3&&o.nodeValue.match(/\\s+/))){break}}}function h(p,o){return Array.prototype.map.call(p.childNodes,function(q){if(q.nodeType==3){return o?q.nodeValue.replace(/\\n/g,\"\"):q.nodeValue}if(q.nodeName==\"BR\"){return\"\\n\"}return h(q,o)}).join(\"\")}function a(q){var p=(q.className+\" \"+q.parentNode.className).split(/\\s+/);p=p.map(function(r){return r.replace(/^language-/,\"\")});for(var o=0;o<p.length;o++){if(e[p[o]]||p[o]==\"no-highlight\"){return p[o]}}}function c(q){var o=[];(function p(r,s){for(var t=r.firstChild;t;t=t.nextSibling){if(t.nodeType==3){s+=t.nodeValue.length}else{if(t.nodeName==\"BR\"){s+=1}else{if(t.nodeType==1){o.push({event:\"start\",offset:s,node:t});s=p(t,s);o.push({event:\"stop\",offset:s,node:t})}}}}return s})(q,0);return o}function j(x,v,w){var p=0;var y=\"\";var r=[];function t(){if(x.length&&v.length){if(x[0].offset!=v[0].offset){return(x[0].offset<v[0].offset)?x:v}else{return v[0].event==\"start\"?x:v}}else{return x.length?x:v}}function s(A){function z(B){return\" \"+B.nodeName+'=\"'+l(B.value)+'\"'}return\"<\"+A.nodeName+Array.prototype.map.call(A.attributes,z).join(\"\")+\">\"}while(x.length||v.length){var u=t().splice(0,1)[0];y+=l(w.substr(p,u.offset-p));p=u.offset;if(u.event==\"start\"){y+=s(u.node);r.push(u.node)}else{if(u.event==\"stop\"){var o,q=r.length;do{q--;o=r[q];y+=(\"</\"+o.nodeName.toLowerCase()+\">\")}while(o!=u.node);r.splice(q,1);while(q<r.length){y+=s(r[q]);q++}}}}return y+l(w.substr(p))}function f(q){function o(s,r){return RegExp(s,\"m\"+(q.cI?\"i\":\"\")+(r?\"g\":\"\"))}function p(y,w){if(y.compiled){return}y.compiled=true;var s=[];if(y.k){var r={};function z(A,t){t.split(\" \").forEach(function(B){var C=B.split(\"|\");r[C[0]]=[A,C[1]?Number(C[1]):1];s.push(C[0])})}y.lR=o(y.l||hljs.IR,true);if(typeof y.k==\"string\"){z(\"keyword\",y.k)}else{for(var x in y.k){if(!y.k.hasOwnProperty(x)){continue}z(x,y.k[x])}}y.k=r}if(w){if(y.bWK){y.b=\"\\\\b(\"+s.join(\"|\")+\")\\\\s\"}y.bR=o(y.b?y.b:\"\\\\B|\\\\b\");if(!y.e&&!y.eW){y.e=\"\\\\B|\\\\b\"}if(y.e){y.eR=o(y.e)}y.tE=y.e||\"\";if(y.eW&&w.tE){y.tE+=(y.e?\"|\":\"\")+w.tE}}if(y.i){y.iR=o(y.i)}if(y.r===undefined){y.r=1}if(!y.c){y.c=[]}for(var v=0;v<y.c.length;v++){if(y.c[v]==\"self\"){y.c[v]=y}p(y.c[v],y)}if(y.starts){p(y.starts,w)}var u=[];for(var v=0;v<y.c.length;v++){u.push(y.c[v].b)}if(y.tE){u.push(y.tE)}if(y.i){u.push(y.i)}y.t=u.length?o(u.join(\"|\"),true):{exec:function(t){return null}}}p(q)}function d(D,E){function o(r,M){for(var L=0;L<M.c.length;L++){var K=M.c[L].bR.exec(r);if(K&&K.index==0){return M.c[L]}}}function s(K,r){if(K.e&&K.eR.test(r)){return K}if(K.eW){return s(K.parent,r)}}function t(r,K){return K.i&&K.iR.test(r)}function y(L,r){var K=F.cI?r[0].toLowerCase():r[0];return L.k.hasOwnProperty(K)&&L.k[K]}function G(){var K=l(w);if(!A.k){return K}var r=\"\";var N=0;A.lR.lastIndex=0;var L=A.lR.exec(K);while(L){r+=K.substr(N,L.index-N);var M=y(A,L);if(M){v+=M[1];r+='<span class=\"'+M[0]+'\">'+L[0]+\"</span>\"}else{r+=L[0]}N=A.lR.lastIndex;L=A.lR.exec(K)}return r+K.substr(N)}function z(){if(A.sL&&!e[A.sL]){return l(w)}var r=A.sL?d(A.sL,w):g(w);if(A.r>0){v+=r.keyword_count;B+=r.r}return'<span class=\"'+r.language+'\">'+r.value+\"</span>\"}function J(){return A.sL!==undefined?z():G()}function I(L,r){var K=L.cN?'<span class=\"'+L.cN+'\">':\"\";if(L.rB){x+=K;w=\"\"}else{if(L.eB){x+=l(r)+K;w=\"\"}else{x+=K;w=r}}A=Object.create(L,{parent:{value:A}});B+=L.r}function C(K,r){w+=K;if(r===undefined){x+=J();return 0}var L=o(r,A);if(L){x+=J();I(L,r);return L.rB?0:r.length}var M=s(A,r);if(M){if(!(M.rE||M.eE)){w+=r}x+=J();do{if(A.cN){x+=\"</span>\"}A=A.parent}while(A!=M.parent);if(M.eE){x+=l(r)}w=\"\";if(M.starts){I(M.starts,\"\")}return M.rE?0:r.length}if(t(r,A)){throw\"Illegal\"}w+=r;return r.length||1}var F=e[D];f(F);var A=F;var w=\"\";var B=0;var v=0;var x=\"\";try{var u,q,p=0;while(true){A.t.lastIndex=p;u=A.t.exec(E);if(!u){break}q=C(E.substr(p,u.index-p),u[0]);p=u.index+q}C(E.substr(p));return{r:B,keyword_count:v,value:x,language:D}}catch(H){if(H==\"Illegal\"){return{r:0,keyword_count:0,value:l(E)}}else{throw H}}}function g(s){var o={keyword_count:0,r:0,value:l(s)};var q=o;for(var p in e){if(!e.hasOwnProperty(p)){continue}var r=d(p,s);r.language=p;if(r.keyword_count+r.r>q.keyword_count+q.r){q=r}if(r.keyword_count+r.r>o.keyword_count+o.r){q=o;o=r}}if(q.language){o.second_best=q}return o}function i(q,p,o){if(p){q=q.replace(/^((<[^>]+>|\\t)+)/gm,function(r,v,u,t){return v.replace(/\\t/g,p)})}if(o){q=q.replace(/\\n/g,\"<br>\")}return q}function m(r,u,p){var v=h(r,p);var t=a(r);if(t==\"no-highlight\"){return}var w=t?d(t,v):g(v);t=w.language;var o=c(r);if(o.length){var q=document.createElement(\"pre\");q.innerHTML=w.value;w.value=j(o,c(q),v)}w.value=i(w.value,u,p);var s=r.className;if(!s.match(\"(\\\\s|^)(language-)?\"+t+\"(\\\\s|$)\")){s=s?(s+\" \"+t):t}r.innerHTML=w.value;r.className=s;r.result={language:t,kw:w.keyword_count,re:w.r};if(w.second_best){r.second_best={language:w.second_best.language,kw:w.second_best.keyword_count,re:w.second_best.r}}}function n(){if(n.called){return}n.called=true;Array.prototype.map.call(document.getElementsByTagName(\"pre\"),b).filter(Boolean).forEach(function(o){m(o,hljs.tabReplace)})}function k(){window.addEventListener(\"DOMContentLoaded\",n,false);window.addEventListener(\"load\",n,false)}var e={};this.LANGUAGES=e;this.highlight=d;this.highlightAuto=g;this.fixMarkup=i;this.highlightBlock=m;this.initHighlighting=n;this.initHighlightingOnLoad=k;this.IR=\"[a-zA-Z][a-zA-Z0-9_]*\";this.UIR=\"[a-zA-Z_][a-zA-Z0-9_]*\";this.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\";this.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\";this.BNR=\"\\\\b(0b[01]+)\";this.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|\\\\.|-|-=|/|/=|:|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\";this.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0};this.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[this.BE],r:0};this.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[this.BE],r:0};this.CLCM={cN:\"comment\",b:\"//\",e:\"$\"};this.CBLCLM={cN:\"comment\",b:\"/\\\\*\",e:\"\\\\*/\"};this.HCM={cN:\"comment\",b:\"#\",e:\"$\"};this.NM={cN:\"number\",b:this.NR,r:0};this.CNM={cN:\"number\",b:this.CNR,r:0};this.BNM={cN:\"number\",b:this.BNR,r:0};this.inherit=function(q,r){var o={};for(var p in q){o[p]=q[p]}if(r){for(var p in r){o[p]=r[p]}}return o}}();hljs.LANGUAGES.ruby=function(e){var a=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\";var j=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\";var g={keyword:\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include\"};var c={cN:\"yardoctag\",b:\"@[A-Za-z]+\"};var k=[{cN:\"comment\",b:\"#\",e:\"$\",c:[c]},{cN:\"comment\",b:\"^\\\\=begin\",e:\"^\\\\=end\",c:[c],r:10},{cN:\"comment\",b:\"^__END__\",e:\"\\\\n$\"}];var d={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:a,k:g};var i=[e.BE,d];var b=[{cN:\"string\",b:\"'\",e:\"'\",c:i,r:0},{cN:\"string\",b:'\"',e:'\"',c:i,r:0},{cN:\"string\",b:\"%[qw]?\\\\(\",e:\"\\\\)\",c:i},{cN:\"string\",b:\"%[qw]?\\\\[\",e:\"\\\\]\",c:i},{cN:\"string\",b:\"%[qw]?{\",e:\"}\",c:i},{cN:\"string\",b:\"%[qw]?<\",e:\">\",c:i,r:10},{cN:\"string\",b:\"%[qw]?/\",e:\"/\",c:i,r:10},{cN:\"string\",b:\"%[qw]?%\",e:\"%\",c:i,r:10},{cN:\"string\",b:\"%[qw]?-\",e:\"-\",c:i,r:10},{cN:\"string\",b:\"%[qw]?\\\\|\",e:\"\\\\|\",c:i,r:10}];var h={cN:\"function\",bWK:true,e:\" |$|;\",k:\"def\",c:[{cN:\"title\",b:j,l:a,k:g},{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:a,k:g}].concat(k)};var f=k.concat(b.concat([{cN:\"class\",bWK:true,e:\"$|;\",k:\"class module\",c:[{cN:\"title\",b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\",r:0},{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(k)},h,{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:\":\",c:b.concat([{b:j}]),r:0},{cN:\"symbol\",b:a+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"number\",b:\"\\\\?\\\\w\"},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:k.concat([{cN:\"regexp\",b:\"/\",e:\"/[a-z]*\",i:\"\\\\n\",c:[e.BE,d]}]),r:0}]));d.c=f;h.c[1].c=f;return{l:a,k:g,c:f}}(hljs);hljs.LANGUAGES.diff=function(a){return{c:[{cN:\"chunk\",b:\"^\\\\@\\\\@ +\\\\-\\\\d+,\\\\d+ +\\\\+\\\\d+,\\\\d+ +\\\\@\\\\@$\",r:10},{cN:\"chunk\",b:\"^\\\\*\\\\*\\\\* +\\\\d+,\\\\d+ +\\\\*\\\\*\\\\*\\\\*$\",r:10},{cN:\"chunk\",b:\"^\\\\-\\\\-\\\\- +\\\\d+,\\\\d+ +\\\\-\\\\-\\\\-\\\\-$\",r:10},{cN:\"header\",b:\"Index: \",e:\"$\"},{cN:\"header\",b:\"=====\",e:\"=====$\"},{cN:\"header\",b:\"^\\\\-\\\\-\\\\-\",e:\"$\"},{cN:\"header\",b:\"^\\\\*{3} \",e:\"$\"},{cN:\"header\",b:\"^\\\\+\\\\+\\\\+\",e:\"$\"},{cN:\"header\",b:\"\\\\*{5}\",e:\"\\\\*{5}$\"},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}}(hljs);hljs.LANGUAGES.javascript=function(a){return{k:{keyword:\"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const\",literal:\"true false null undefined NaN Infinity\"},c:[a.ASM,a.QSM,a.CLCM,a.CBLCLM,a.CNM,{b:\"(\"+a.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[a.CLCM,a.CBLCLM,{cN:\"regexp\",b:\"/\",e:\"/[gim]*\",i:\"\\\\n\",c:[{b:\"\\\\\\\\/\"}]},{b:\"<\",e:\">;\",sL:\"xml\"}],r:0},{cN:\"function\",bWK:true,e:\"{\",k:\"function\",c:[{cN:\"title\",b:\"[A-Za-z$_][0-9A-Za-z$_]*\"},{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[a.CLCM,a.CBLCLM],i:\"[\\\"'\\\\(]\"}],i:\"\\\\[|%\"}]}}(hljs);hljs.LANGUAGES.xml=function(a){var c=\"[A-Za-z0-9\\\\._:-]+\";var b={eW:true,c:[{cN:\"attribute\",b:c,r:0},{b:'=\"',rB:true,e:'\"',c:[{cN:\"value\",b:'\"',eW:true}]},{b:\"='\",rB:true,e:\"'\",c:[{cN:\"value\",b:\"'\",eW:true}]},{b:\"=\",c:[{cN:\"value\",b:\"[^\\\\s/>]+\"}]}]};return{cI:true,c:[{cN:\"pi\",b:\"<\\\\?\",e:\"\\\\?>\",r:10},{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},{cN:\"comment\",b:\"<!--\",e:\"-->\",r:10},{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[b],starts:{e:\"</style>\",rE:true,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[b],starts:{e:\"<\\/script>\",rE:true,sL:\"javascript\"}},{b:\"<%\",e:\"%>\",sL:\"vbscript\"},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:\"[^ />]+\"},b]}]}}(hljs);hljs.LANGUAGES.php=function(a){var e={cN:\"variable\",b:\"\\\\$+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*\"};var b=[a.inherit(a.ASM,{i:null}),a.inherit(a.QSM,{i:null}),{cN:\"string\",b:'b\"',e:'\"',c:[a.BE]},{cN:\"string\",b:\"b'\",e:\"'\",c:[a.BE]}];var c=[a.BNM,a.CNM];var d={cN:\"title\",b:a.UIR};return{cI:true,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return implements parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception php_user_filter default die require __FUNCTION__ enddeclare final try this switch continue endfor endif declare unset true false namespace trait goto instanceof insteadof __DIR__ __NAMESPACE__ __halt_compiler\",c:[a.CLCM,a.HCM,{cN:\"comment\",b:\"/\\\\*\",e:\"\\\\*/\",c:[{cN:\"phpdoc\",b:\"\\\\s@[A-Za-z]+\"}]},{cN:\"comment\",eB:true,b:\"__halt_compiler.+?;\",eW:true},{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[a.BE]},{cN:\"preprocessor\",b:\"<\\\\?php\",r:10},{cN:\"preprocessor\",b:\"\\\\?>\"},e,{cN:\"function\",bWK:true,e:\"{\",k:\"function\",i:\"\\\\$|\\\\[|%\",c:[d,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e,a.CBLCLM].concat(b).concat(c)}]},{cN:\"class\",bWK:true,e:\"{\",k:\"class\",i:\"[:\\\\(\\\\$]\",c:[{bWK:true,eW:true,k:\"extends\",c:[d]},d]},{b:\"=>\"}].concat(b).concat(c)}}(hljs);hljs.LANGUAGES.python=function(a){var f={cN:\"prompt\",b:\"^(>>>|\\\\.\\\\.\\\\.) \"};var c=[{cN:\"string\",b:\"(u|b)?r?'''\",e:\"'''\",c:[f],r:10},{cN:\"string\",b:'(u|b)?r?\"\"\"',e:'\"\"\"',c:[f],r:10},{cN:\"string\",b:\"(u|r|ur)'\",e:\"'\",c:[a.BE],r:10},{cN:\"string\",b:'(u|r|ur)\"',e:'\"',c:[a.BE],r:10},{cN:\"string\",b:\"(b|br)'\",e:\"'\",c:[a.BE]},{cN:\"string\",b:'(b|br)\"',e:'\"',c:[a.BE]}].concat([a.ASM,a.QSM]);var e={cN:\"title\",b:a.UIR};var d={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",a.CNM,f].concat(c)};var b={bWK:true,e:\":\",i:\"[${=;\\\\n]\",c:[e,d],r:10};return{k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10\",built_in:\"None True False Ellipsis NotImplemented\"},i:\"(</|->|\\\\?)\",c:c.concat([f,a.HCM,a.inherit(b,{cN:\"function\",k:\"def\"}),a.inherit(b,{cN:\"class\",k:\"class\"}),a.CNM,{cN:\"decorator\",b:\"@\",e:\"$\"},{b:\"\\\\b(print|exec)\\\\(\"}])}}(hljs);hljs.LANGUAGES.json=function(a){var e={literal:\"true false null\"};var d=[a.QSM,a.CNM];var c={cN:\"value\",e:\",\",eW:true,eE:true,c:d,k:e};var b={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:true,eE:true,c:[a.BE],i:\"\\\\n\",starts:c}],i:\"\\\\S\"};var f={b:\"\\\\[\",e:\"\\\\]\",c:[a.inherit(c,{cN:null})],i:\"\\\\S\"};d.splice(d.length,0,b,f);return{c:d,k:e,i:\"\\\\S\"}}(hljs);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/jquery.autogrow.js",
    "content": "/* \n * Auto Expanding Text Area (1.2.2)\n * by Chrys Bader (www.chrysbader.com)\n * chrysb@gmail.com\n *\n * Special thanks to:\n * Jake Chapa - jake@hybridstudio.com\n * John Resig - jeresig@gmail.com\n *\n * Copyright (c) 2008 Chrys Bader (www.chrysbader.com)\n * Licensed under the GPL (GPL-LICENSE.txt) license. \n *\n *\n * NOTE: This script requires jQuery to work.  Download jQuery at www.jquery.com\n *\n */\n \n(function(jQuery) {\n\t\t  \n\tvar self = null;\n \n\tjQuery.fn.autogrow = function(o)\n\t{\t\n\t\treturn this.each(function() {\n\t\t\tnew jQuery.autogrow(this, o);\n\t\t});\n\t};\n\t\n\n    /**\n     * The autogrow object.\n     *\n     * @constructor\n     * @name jQuery.autogrow\n     * @param Object e The textarea to create the autogrow for.\n     * @param Hash o A set of key/value pairs to set as configuration properties.\n     * @cat Plugins/autogrow\n     */\n\t\n\tjQuery.autogrow = function (e, o)\n\t{\n\t\tthis.options\t\t  \t= o || {};\n\t\tthis.dummy\t\t\t  \t= null;\n\t\tthis.interval\t \t  \t= null;\n\t\tthis.line_height\t  \t= this.options.lineHeight || parseInt(jQuery(e).css('line-height'), 10);\n\t\tthis.min_height\t\t  \t= this.options.minHeight || parseInt(jQuery(e).css('min-height'), 10);\n\t\tthis.max_height\t\t  \t= this.options.maxHeight || parseInt(jQuery(e).css('max-height'), 10);\n\t\tthis.textarea\t\t  \t= jQuery(e);\n\t\t\n\t\tif(this.line_height == NaN)\n\t\t  this.line_height = 0;\n\t\t\n\t\t// Only one textarea activated at a time, the one being used\n\t\tthis.init();\n\t};\n\t\n\tjQuery.autogrow.fn = jQuery.autogrow.prototype = {\n    autogrow: '1.2.2'\n  };\n\t\n \tjQuery.autogrow.fn.extend = jQuery.autogrow.extend = jQuery.extend;\n\t\n\tjQuery.autogrow.fn.extend({\n\t\t\t\t\t\t \n\t\tinit: function() {\t\t\t\n\t\t\tvar self = this;\t\t\t\n\t\t\tthis.textarea.css({overflow: 'hidden', display: 'block'});\n\t\t\tthis.textarea.bind('focus', function() { self.startExpand(); } ).bind('blur', function() { self.stopExpand(); });\n\t\t\tthis.checkExpand();\t\n\t\t},\n\t\t\t\t\t\t \n\t\tstartExpand: function() {\t\t\t\t\n\t\t  var self = this;\n\t\t\tthis.interval = window.setInterval(function() {self.checkExpand();}, 400);\n\t\t},\n\t\t\n\t\tstopExpand: function() {\n\t\t\tclearInterval(this.interval);\t\n\t\t},\n\t\t\n\t\tcheckExpand: function() {\n\t\t\t\n\t\t\tif (this.dummy == null)\n\t\t\t{\n\t\t\t\tthis.dummy = jQuery('<div></div>');\n\t\t\t\tthis.dummy.css({\n\t\t\t\t\t\t\t\t\t\t\t\t'font-size'  : this.textarea.css('font-size'),\n\t\t\t\t\t\t\t\t\t\t\t\t'font-family': this.textarea.css('font-family'),\n\t\t\t\t\t\t\t\t\t\t\t\t'width'      : this.textarea.css('width'),\n\t\t\t\t\t\t\t\t\t\t\t\t// IE shits its pants if you uncomment the next line!\n\t\t\t\t\t\t\t\t\t\t\t\t//'padding'    : this.textarea.css('padding'),\n\t\t\t\t\t\t\t\t\t\t\t\t'line-height': this.line_height + 'px',\n\t\t\t\t\t\t\t\t\t\t\t\t'overflow-x' : 'hidden',\n\t\t\t\t\t\t\t\t\t\t\t\t'position'   : 'absolute',\n\t\t\t\t\t\t\t\t\t\t\t\t'top'        : 0,\n\t\t\t\t\t\t\t\t\t\t\t\t'left'\t\t : -9999\n\t\t\t\t\t\t\t\t\t\t\t\t}).appendTo('body');\n\t\t\t}\n\t\t\t\n\t\t\t// Strip HTML tags\n\t\t\tvar html = this.textarea.val().replace(/(<|>)/g, '');\n\t\t\t\n\t\t\t// IE is different, as per usual\n\t\t\tif ($.browser.msie)\n\t\t\t{\n\t\t\t\thtml = html.replace(/\\n/g, '<BR>new');\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\thtml = html.replace(/\\n/g, '<br>new');\n\t\t\t}\n\t\t\t\n\t\t\tif (this.dummy.html() != html)\n\t\t\t{\n\t\t\t\tthis.dummy.html(html);\t\n\t\t\t\t\n\t\t\t\tif (this.max_height > 0 && (this.dummy.height() + this.line_height > this.max_height))\n\t\t\t\t{\n\t\t\t\t\tthis.textarea.css('overflow-y', 'auto');\t\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tthis.textarea.css('overflow-y', 'hidden');\n\t\t\t\t\tif (this.textarea.height() < this.dummy.height() + this.line_height || (this.dummy.height() < this.textarea.height()))\n\t\t\t\t\t{\t\n\t\t\t\t\t\tthis.textarea.animate({height: (this.dummy.height() + this.line_height) + 'px'}, 100);\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t });\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/jquery.blockUI.js",
    "content": "﻿/*!\n * jQuery blockUI plugin\n * Version 2.39 (23-MAY-2011)\n * @requires jQuery v1.2.3 or later\n *\n * Examples at: http://malsup.com/jquery/block/\n * Copyright (c) 2007-2010 M. Alsup\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n *\n * Thanks to Amir-Hossein Sobhi for some excellent contributions!\n */\n\n;(function($) {\n\nif (/1\\.(0|1|2)\\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {\n\talert('blockUI requires jQuery v1.2.3 or later!  You are using v' + $.fn.jquery);\n\treturn;\n}\n\n$.fn._fadeIn = $.fn.fadeIn;\n\nvar noOp = function() {};\n\n// this bit is to ensure we don't call setExpression when we shouldn't (with extra muscle to handle\n// retarded userAgent strings on Vista)\nvar mode = document.documentMode || 0;\nvar setExpr = $.browser.msie && (($.browser.version < 8 && !mode) || mode < 8);\nvar ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !mode;\n\n// global $ methods for blocking/unblocking the entire page\n$.blockUI   = function(opts) { install(window, opts); };\n$.unblockUI = function(opts) { remove(window, opts); };\n\n// convenience method for quick growl-like notifications  (http://www.google.com/search?q=growl)\n$.growlUI = function(title, message, timeout, onClose) {\n\tvar $m = $('<div class=\"growlUI\"></div>');\n\tif (title) $m.append('<h1>'+title+'</h1>');\n\tif (message) $m.append('<h2>'+message+'</h2>');\n\tif (timeout == undefined) timeout = 3000;\n\t$.blockUI({\n\t\tmessage: $m, fadeIn: 700, fadeOut: 1000, centerY: false,\n\t\ttimeout: timeout, showOverlay: false,\n\t\tonUnblock: onClose, \n\t\tcss: $.blockUI.defaults.growlCSS\n\t});\n};\n\n// plugin method for blocking element content\n$.fn.block = function(opts) {\n\treturn this.unblock({ fadeOut: 0 }).each(function() {\n\t\tif ($.css(this,'position') == 'static')\n\t\t\tthis.style.position = 'relative';\n\t\tif ($.browser.msie)\n\t\t\tthis.style.zoom = 1; // force 'hasLayout'\n\t\tinstall(this, opts);\n\t});\n};\n\n// plugin method for unblocking element content\n$.fn.unblock = function(opts) {\n\treturn this.each(function() {\n\t\tremove(this, opts);\n\t});\n};\n\n$.blockUI.version = 2.39; // 2nd generation blocking at no extra cost!\n\n// override these in your code to change the default behavior and style\n$.blockUI.defaults = {\n\t// message displayed when blocking (use null for no message)\n\tmessage:  '<h1>Please wait...</h1>',\n\n\ttitle: null,\t  // title string; only used when theme == true\n\tdraggable: true,  // only used when theme == true (requires jquery-ui.js to be loaded)\n\t\n\ttheme: false, // set to true to use with jQuery UI themes\n\t\n\t// styles for the message when blocking; if you wish to disable\n\t// these and use an external stylesheet then do this in your code:\n\t// $.blockUI.defaults.css = {};\n\tcss: {\n\t\tpadding:\t0,\n\t\tmargin:\t\t0,\n\t\twidth:\t\t'30%',\n\t\ttop:\t\t'40%',\n\t\tleft:\t\t'35%',\n\t\ttextAlign:\t'center',\n\t\tcolor:\t\t'#000',\n\t\tborder:\t\t'3px solid #aaa',\n\t\tbackgroundColor:'#fff',\n\t\tcursor:\t\t'wait'\n\t},\n\t\n\t// minimal style set used when themes are used\n\tthemedCSS: {\n\t\twidth:\t'30%',\n\t\ttop:\t'40%',\n\t\tleft:\t'35%'\n\t},\n\n\t// styles for the overlay\n\toverlayCSS:  {\n\t\tbackgroundColor: '#000',\n\t\topacity:\t  \t 0.6,\n\t\tcursor:\t\t  \t 'wait'\n\t},\n\n\t// styles applied when using $.growlUI\n\tgrowlCSS: {\n\t\twidth:  \t'350px',\n\t\ttop:\t\t'10px',\n\t\tleft:   \t'',\n\t\tright:  \t'10px',\n\t\tborder: \t'none',\n\t\tpadding:\t'5px',\n\t\topacity:\t0.6,\n\t\tcursor: \t'default',\n\t\tcolor:\t\t'#fff',\n\t\tbackgroundColor: '#000',\n\t\t'-webkit-border-radius': '10px',\n\t\t'-moz-border-radius':\t '10px',\n\t\t'border-radius': \t\t '10px'\n\t},\n\t\n\t// IE issues: 'about:blank' fails on HTTPS and javascript:false is s-l-o-w\n\t// (hat tip to Jorge H. N. de Vasconcelos)\n\tiframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank',\n\n\t// force usage of iframe in non-IE browsers (handy for blocking applets)\n\tforceIframe: false,\n\n\t// z-index for the blocking overlay\n\tbaseZ: 1000,\n\n\t// set these to true to have the message automatically centered\n\tcenterX: true, // <-- only effects element blocking (page block controlled via css above)\n\tcenterY: true,\n\n\t// allow body element to be stetched in ie6; this makes blocking look better\n\t// on \"short\" pages.  disable if you wish to prevent changes to the body height\n\tallowBodyStretch: true,\n\n\t// enable if you want key and mouse events to be disabled for content that is blocked\n\tbindEvents: true,\n\n\t// be default blockUI will supress tab navigation from leaving blocking content\n\t// (if bindEvents is true)\n\tconstrainTabKey: true,\n\n\t// fadeIn time in millis; set to 0 to disable fadeIn on block\n\tfadeIn:  200,\n\n\t// fadeOut time in millis; set to 0 to disable fadeOut on unblock\n\tfadeOut:  400,\n\n\t// time in millis to wait before auto-unblocking; set to 0 to disable auto-unblock\n\ttimeout: 0,\n\n\t// disable if you don't want to show the overlay\n\tshowOverlay: true,\n\n\t// if true, focus will be placed in the first available input field when\n\t// page blocking\n\tfocusInput: true,\n\n\t// suppresses the use of overlay styles on FF/Linux (due to performance issues with opacity)\n\tapplyPlatformOpacityRules: true,\n\t\n\t// callback method invoked when fadeIn has completed and blocking message is visible\n\tonBlock: null,\n\n\t// callback method invoked when unblocking has completed; the callback is\n\t// passed the element that has been unblocked (which is the window object for page\n\t// blocks) and the options that were passed to the unblock call:\n\t//\t onUnblock(element, options)\n\tonUnblock: null,\n\n\t// don't ask; if you really must know: http://groups.google.com/group/jquery-en/browse_thread/thread/36640a8730503595/2f6a79a77a78e493#2f6a79a77a78e493\n\tquirksmodeOffsetHack: 4,\n\n\t// class name of the message block\n\tblockMsgClass: 'blockMsg'\n};\n\n// private data and functions follow...\n\nvar pageBlock = null;\nvar pageBlockEls = [];\n\nfunction install(el, opts) {\n\tvar full = (el == window);\n\tvar msg = opts && opts.message !== undefined ? opts.message : undefined;\n\topts = $.extend({}, $.blockUI.defaults, opts || {});\n\topts.overlayCSS = $.extend({}, $.blockUI.defaults.overlayCSS, opts.overlayCSS || {});\n\tvar css = $.extend({}, $.blockUI.defaults.css, opts.css || {});\n\tvar themedCSS = $.extend({}, $.blockUI.defaults.themedCSS, opts.themedCSS || {});\n\tmsg = msg === undefined ? opts.message : msg;\n\n\t// remove the current block (if there is one)\n\tif (full && pageBlock)\n\t\tremove(window, {fadeOut:0});\n\n\t// if an existing element is being used as the blocking content then we capture\n\t// its current place in the DOM (and current display style) so we can restore\n\t// it when we unblock\n\tif (msg && typeof msg != 'string' && (msg.parentNode || msg.jquery)) {\n\t\tvar node = msg.jquery ? msg[0] : msg;\n\t\tvar data = {};\n\t\t$(el).data('blockUI.history', data);\n\t\tdata.el = node;\n\t\tdata.parent = node.parentNode;\n\t\tdata.display = node.style.display;\n\t\tdata.position = node.style.position;\n\t\tif (data.parent)\n\t\t\tdata.parent.removeChild(node);\n\t}\n\n\t$(el).data('blockUI.onUnblock', opts.onUnblock);\n\tvar z = opts.baseZ;\n\n\t// blockUI uses 3 layers for blocking, for simplicity they are all used on every platform;\n\t// layer1 is the iframe layer which is used to supress bleed through of underlying content\n\t// layer2 is the overlay layer which has opacity and a wait cursor (by default)\n\t// layer3 is the message content that is displayed while blocking\n\n\tvar lyr1 = ($.browser.msie || opts.forceIframe) \n\t\t? $('<iframe class=\"blockUI\" style=\"z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0\" src=\"'+opts.iframeSrc+'\"></iframe>')\n\t\t: $('<div class=\"blockUI\" style=\"display:none\"></div>');\n\t\n\tvar lyr2 = opts.theme \n\t \t? $('<div class=\"blockUI blockOverlay ui-widget-overlay\" style=\"z-index:'+ (z++) +';display:none\"></div>')\n\t \t: $('<div class=\"blockUI blockOverlay\" style=\"z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0\"></div>');\n\n\tvar lyr3, s;\n\tif (opts.theme && full) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockPage ui-dialog ui-widget ui-corner-all\" style=\"z-index:'+(z+10)+';display:none;position:fixed\">' +\n\t\t\t\t'<div class=\"ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle\">'+(opts.title || '&nbsp;')+'</div>' +\n\t\t\t\t'<div class=\"ui-widget-content ui-dialog-content\"></div>' +\n\t\t\t'</div>';\n\t}\n\telse if (opts.theme) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockElement ui-dialog ui-widget ui-corner-all\" style=\"z-index:'+(z+10)+';display:none;position:absolute\">' +\n\t\t\t\t'<div class=\"ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle\">'+(opts.title || '&nbsp;')+'</div>' +\n\t\t\t\t'<div class=\"ui-widget-content ui-dialog-content\"></div>' +\n\t\t\t'</div>';\n\t}\n\telse if (full) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockPage\" style=\"z-index:'+(z+10)+';display:none;position:fixed\"></div>';\n\t}\t\t\t \n\telse {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockElement\" style=\"z-index:'+(z+10)+';display:none;position:absolute\"></div>';\n\t}\n\tlyr3 = $(s);\n\n\t// if we have a message, style it\n\tif (msg) {\n\t\tif (opts.theme) {\n\t\t\tlyr3.css(themedCSS);\n\t\t\tlyr3.addClass('ui-widget-content');\n\t\t}\n\t\telse \n\t\t\tlyr3.css(css);\n\t}\n\n\t// style the overlay\n\tif (!opts.theme && (!opts.applyPlatformOpacityRules || !($.browser.mozilla && /Linux/.test(navigator.platform))))\n\t\tlyr2.css(opts.overlayCSS);\n\tlyr2.css('position', full ? 'fixed' : 'absolute');\n\n\t// make iframe layer transparent in IE\n\tif ($.browser.msie || opts.forceIframe)\n\t\tlyr1.css('opacity',0.0);\n\n\t//$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el);\n\tvar layers = [lyr1,lyr2,lyr3], $par = full ? $('body') : $(el);\n\t$.each(layers, function() {\n\t\tthis.appendTo($par);\n\t});\n\t\n\tif (opts.theme && opts.draggable && $.fn.draggable) {\n\t\tlyr3.draggable({\n\t\t\thandle: '.ui-dialog-titlebar',\n\t\t\tcancel: 'li'\n\t\t});\n\t}\n\n\t// ie7 must use absolute positioning in quirks mode and to account for activex issues (when scrolling)\n\tvar expr = setExpr && (!$.boxModel || $('object,embed', full ? null : el).length > 0);\n\tif (ie6 || expr) {\n\t\t// give body 100% height\n\t\tif (full && opts.allowBodyStretch && $.boxModel)\n\t\t\t$('html,body').css('height','100%');\n\n\t\t// fix ie6 issue when blocked element has a border width\n\t\tif ((ie6 || !$.boxModel) && !full) {\n\t\t\tvar t = sz(el,'borderTopWidth'), l = sz(el,'borderLeftWidth');\n\t\t\tvar fixT = t ? '(0 - '+t+')' : 0;\n\t\t\tvar fixL = l ? '(0 - '+l+')' : 0;\n\t\t}\n\n\t\t// simulate fixed position\n\t\t$.each([lyr1,lyr2,lyr3], function(i,o) {\n\t\t\tvar s = o[0].style;\n\t\t\ts.position = 'absolute';\n\t\t\tif (i < 2) {\n\t\t\t\tfull ? s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.boxModel?0:'+opts.quirksmodeOffsetHack+') + \"px\"')\n\t\t\t\t\t : s.setExpression('height','this.parentNode.offsetHeight + \"px\"');\n\t\t\t\tfull ? s.setExpression('width','jQuery.boxModel && document.documentElement.clientWidth || document.body.clientWidth + \"px\"')\n\t\t\t\t\t : s.setExpression('width','this.parentNode.offsetWidth + \"px\"');\n\t\t\t\tif (fixL) s.setExpression('left', fixL);\n\t\t\t\tif (fixT) s.setExpression('top', fixT);\n\t\t\t}\n\t\t\telse if (opts.centerY) {\n\t\t\t\tif (full) s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + \"px\"');\n\t\t\t\ts.marginTop = 0;\n\t\t\t}\n\t\t\telse if (!opts.centerY && full) {\n\t\t\t\tvar top = (opts.css && opts.css.top) ? parseInt(opts.css.top) : 0;\n\t\t\t\tvar expression = '((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + \"px\"';\n\t\t\t\ts.setExpression('top',expression);\n\t\t\t}\n\t\t});\n\t}\n\n\t// show the message\n\tif (msg) {\n\t\tif (opts.theme)\n\t\t\tlyr3.find('.ui-widget-content').append(msg);\n\t\telse\n\t\t\tlyr3.append(msg);\n\t\tif (msg.jquery || msg.nodeType)\n\t\t\t$(msg).show();\n\t}\n\n\tif (($.browser.msie || opts.forceIframe) && opts.showOverlay)\n\t\tlyr1.show(); // opacity is zero\n\tif (opts.fadeIn) {\n\t\tvar cb = opts.onBlock ? opts.onBlock : noOp;\n\t\tvar cb1 = (opts.showOverlay && !msg) ? cb : noOp;\n\t\tvar cb2 = msg ? cb : noOp;\n\t\tif (opts.showOverlay)\n\t\t\tlyr2._fadeIn(opts.fadeIn, cb1);\n\t\tif (msg)\n\t\t\tlyr3._fadeIn(opts.fadeIn, cb2);\n\t}\n\telse {\n\t\tif (opts.showOverlay)\n\t\t\tlyr2.show();\n\t\tif (msg)\n\t\t\tlyr3.show();\n\t\tif (opts.onBlock)\n\t\t\topts.onBlock();\n\t}\n\n\t// bind key and mouse events\n\tbind(1, el, opts);\n\n\tif (full) {\n\t\tpageBlock = lyr3[0];\n\t\tpageBlockEls = $(':input:enabled:visible',pageBlock);\n\t\tif (opts.focusInput)\n\t\t\tsetTimeout(focus, 20);\n\t}\n\telse\n\t\tcenter(lyr3[0], opts.centerX, opts.centerY);\n\n\tif (opts.timeout) {\n\t\t// auto-unblock\n\t\tvar to = setTimeout(function() {\n\t\t\tfull ? $.unblockUI(opts) : $(el).unblock(opts);\n\t\t}, opts.timeout);\n\t\t$(el).data('blockUI.timeout', to);\n\t}\n};\n\n// remove the block\nfunction remove(el, opts) {\n\tvar full = (el == window);\n\tvar $el = $(el);\n\tvar data = $el.data('blockUI.history');\n\tvar to = $el.data('blockUI.timeout');\n\tif (to) {\n\t\tclearTimeout(to);\n\t\t$el.removeData('blockUI.timeout');\n\t}\n\topts = $.extend({}, $.blockUI.defaults, opts || {});\n\tbind(0, el, opts); // unbind events\n\n\tif (opts.onUnblock === null) {\n\t\topts.onUnblock = $el.data('blockUI.onUnblock');\n\t\t$el.removeData('blockUI.onUnblock');\n\t}\n\n\tvar els;\n\tif (full) // crazy selector to handle odd field errors in ie6/7\n\t\tels = $('body').children().filter('.blockUI').add('body > .blockUI');\n\telse\n\t\tels = $('.blockUI', el);\n\n\tif (full)\n\t\tpageBlock = pageBlockEls = null;\n\n\tif (opts.fadeOut) {\n\t\tels.fadeOut(opts.fadeOut);\n\t\tsetTimeout(function() { reset(els,data,opts,el); }, opts.fadeOut);\n\t}\n\telse\n\t\treset(els, data, opts, el);\n};\n\n// move blocking element back into the DOM where it started\nfunction reset(els,data,opts,el) {\n\tels.each(function(i,o) {\n\t\t// remove via DOM calls so we don't lose event handlers\n\t\tif (this.parentNode)\n\t\t\tthis.parentNode.removeChild(this);\n\t});\n\n\tif (data && data.el) {\n\t\tdata.el.style.display = data.display;\n\t\tdata.el.style.position = data.position;\n\t\tif (data.parent)\n\t\t\tdata.parent.appendChild(data.el);\n\t\t$(el).removeData('blockUI.history');\n\t}\n\n\tif (typeof opts.onUnblock == 'function')\n\t\topts.onUnblock(el,opts);\n};\n\n// bind/unbind the handler\nfunction bind(b, el, opts) {\n\tvar full = el == window, $el = $(el);\n\n\t// don't bother unbinding if there is nothing to unbind\n\tif (!b && (full && !pageBlock || !full && !$el.data('blockUI.isBlocked')))\n\t\treturn;\n\tif (!full)\n\t\t$el.data('blockUI.isBlocked', b);\n\n\t// don't bind events when overlay is not in use or if bindEvents is false\n\tif (!opts.bindEvents || (b && !opts.showOverlay)) \n\t\treturn;\n\n\t// bind anchors and inputs for mouse and key events\n\tvar events = 'mousedown mouseup keydown keypress';\n\tb ? $(document).bind(events, opts, handler) : $(document).unbind(events, handler);\n\n// former impl...\n//\t   var $e = $('a,:input');\n//\t   b ? $e.bind(events, opts, handler) : $e.unbind(events, handler);\n};\n\n// event handler to suppress keyboard/mouse events when blocking\nfunction handler(e) {\n\t// allow tab navigation (conditionally)\n\tif (e.keyCode && e.keyCode == 9) {\n\t\tif (pageBlock && e.data.constrainTabKey) {\n\t\t\tvar els = pageBlockEls;\n\t\t\tvar fwd = !e.shiftKey && e.target === els[els.length-1];\n\t\t\tvar back = e.shiftKey && e.target === els[0];\n\t\t\tif (fwd || back) {\n\t\t\t\tsetTimeout(function(){focus(back)},10);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t}\n\tvar opts = e.data;\n\t// allow events within the message content\n\tif ($(e.target).parents('div.' + opts.blockMsgClass).length > 0)\n\t\treturn true;\n\n\t// allow events for content that is not being blocked\n\treturn $(e.target).parents().children().filter('div.blockUI').length == 0;\n};\n\nfunction focus(back) {\n\tif (!pageBlockEls)\n\t\treturn;\n\tvar e = pageBlockEls[back===true ? pageBlockEls.length-1 : 0];\n\tif (e)\n\t\te.focus();\n};\n\nfunction center(el, x, y) {\n\tvar p = el.parentNode, s = el.style;\n\tvar l = ((p.offsetWidth - el.offsetWidth)/2) - sz(p,'borderLeftWidth');\n\tvar t = ((p.offsetHeight - el.offsetHeight)/2) - sz(p,'borderTopWidth');\n\tif (x) s.left = l > 0 ? (l+'px') : '0';\n\tif (y) s.top  = t > 0 ? (t+'px') : '0';\n};\n\nfunction sz(el, p) {\n\treturn parseInt($.css(el,p))||0;\n};\n\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/jquery.cookie.js",
    "content": "/*!\n * jQuery Cookie Plugin\n * https://github.com/carhartl/jquery-cookie\n *\n * Copyright 2011, Klaus Hartl\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.opensource.org/licenses/GPL-2.0\n */\n(function($) {\n    $.cookie = function(key, value, options) {\n\n        // key and at least value given, set cookie...\n        if (arguments.length > 1 && (!/Object/.test(Object.prototype.toString.call(value)) || value === null || value === undefined)) {\n            options = $.extend({}, options);\n\n            if (value === null || value === undefined) {\n                options.expires = -1;\n            }\n\n            if (typeof options.expires === 'number') {\n                var days = options.expires, t = options.expires = new Date();\n                t.setDate(t.getDate() + days);\n            }\n\n            value = String(value);\n\n            return (document.cookie = [\n                encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value),\n                options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE\n                options.path    ? '; path=' + options.path : '',\n                options.domain  ? '; domain=' + options.domain : '',\n                options.secure  ? '; secure' : ''\n            ].join(''));\n        }\n\n        // key and possibly options given, get cookie...\n        options = value || {};\n        var decode = options.raw ? function(s) { return s; } : decodeURIComponent;\n\n        var pairs = document.cookie.split('; ');\n        for (var i = 0, pair; pair = pairs[i] && pairs[i].split('='); i++) {\n            if (decode(pair[0]) === key) return decode(pair[1] || ''); // IE saves cookies with empty string as \"c; \", e.g. without \"=\" as opposed to EOMB, thus pair[1] may be undefined\n        }\n        return null;\n    };\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/jquery.form.js",
    "content": "/*!\n * jQuery Form Plugin\n * version: 2.47 (04-SEP-2010)\n * @requires jQuery v1.3.2 or later\n *\n * Examples and documentation at: http://malsup.com/jquery/form/\n * Dual licensed under the MIT and GPL licenses:\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n */\n\n;(function($) {\n\n/*\n\tUsage Note:\n\t-----------\n\tDo not use both ajaxSubmit and ajaxForm on the same form.  These\n\tfunctions are intended to be exclusive.  Use ajaxSubmit if you want\n\tto bind your own submit handler to the form.  For example,\n\n\t$(document).ready(function() {\n\t\t$('#myForm').bind('submit', function() {\n\t\t\t$(this).ajaxSubmit({\n\t\t\t\ttarget: '#output'\n\t\t\t});\n\t\t\treturn false; // <-- important!\n\t\t});\n\t});\n\n\tUse ajaxForm when you want the plugin to manage all the event binding\n\tfor you.  For example,\n\n\t$(document).ready(function() {\n\t\t$('#myForm').ajaxForm({\n\t\t\ttarget: '#output'\n\t\t});\n\t});\n\n\tWhen using ajaxForm, the ajaxSubmit function will be invoked for you\n\tat the appropriate time.\n*/\n\n/**\n * ajaxSubmit() provides a mechanism for immediately submitting\n * an HTML form using AJAX.\n */\n$.fn.ajaxSubmit = function(options) {\n\t// fast fail if nothing selected (http://dev.jquery.com/ticket/2752)\n\tif (!this.length) {\n\t\tlog('ajaxSubmit: skipping submit process - no element selected');\n\t\treturn this;\n\t}\n\n\tif (typeof options == 'function') {\n\t\toptions = { success: options };\n\t}\n\n\tvar url = $.trim(this.attr('action'));\n\tif (url) {\n\t\t// clean url (don't include hash vaue)\n\t\turl = (url.match(/^([^#]+)/)||[])[1];\n\t}\n\turl = url || window.location.href || '';\n\n\toptions = $.extend(true, {\n\t\turl:  url,\n\t\ttype: this.attr('method') || 'GET',\n\t\tiframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'\n\t}, options);\n\n\t// hook for manipulating the form data before it is extracted;\n\t// convenient for use with rich editors like tinyMCE or FCKEditor\n\tvar veto = {};\n\tthis.trigger('form-pre-serialize', [this, options, veto]);\n\tif (veto.veto) {\n\t\tlog('ajaxSubmit: submit vetoed via form-pre-serialize trigger');\n\t\treturn this;\n\t}\n\n\t// provide opportunity to alter form data before it is serialized\n\tif (options.beforeSerialize && options.beforeSerialize(this, options) === false) {\n\t\tlog('ajaxSubmit: submit aborted via beforeSerialize callback');\n\t\treturn this;\n\t}\n\n\tvar n,v,a = this.formToArray(options.semantic);\n\tif (options.data) {\n\t\toptions.extraData = options.data;\n\t\tfor (n in options.data) {\n\t\t\tif(options.data[n] instanceof Array) {\n\t\t\t\tfor (var k in options.data[n]) {\n\t\t\t\t\ta.push( { name: n, value: options.data[n][k] } );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tv = options.data[n];\n\t\t\t\tv = $.isFunction(v) ? v() : v; // if value is fn, invoke it\n\t\t\t\ta.push( { name: n, value: v } );\n\t\t\t}\n\t\t}\n\t}\n\n\t// give pre-submit callback an opportunity to abort the submit\n\tif (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {\n\t\tlog('ajaxSubmit: submit aborted via beforeSubmit callback');\n\t\treturn this;\n\t}\n\n\t// fire vetoable 'validate' event\n\tthis.trigger('form-submit-validate', [a, this, options, veto]);\n\tif (veto.veto) {\n\t\tlog('ajaxSubmit: submit vetoed via form-submit-validate trigger');\n\t\treturn this;\n\t}\n\n\tvar q = $.param(a);\n\n\tif (options.type.toUpperCase() == 'GET') {\n\t\toptions.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;\n\t\toptions.data = null;  // data is null for 'get'\n\t}\n\telse {\n\t\toptions.data = q; // data is the query string for 'post'\n\t}\n\n\tvar $form = this, callbacks = [];\n\tif (options.resetForm) {\n\t\tcallbacks.push(function() { $form.resetForm(); });\n\t}\n\tif (options.clearForm) {\n\t\tcallbacks.push(function() { $form.clearForm(); });\n\t}\n\n\t// perform a load on the target only if dataType is not provided\n\tif (!options.dataType && options.target) {\n\t\tvar oldSuccess = options.success || function(){};\n\t\tcallbacks.push(function(data) {\n\t\t\tvar fn = options.replaceTarget ? 'replaceWith' : 'html';\n\t\t\t$(options.target)[fn](data).each(oldSuccess, arguments);\n\t\t});\n\t}\n\telse if (options.success) {\n\t\tcallbacks.push(options.success);\n\t}\n\n\toptions.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg\n\t\tvar context = options.context || options;   // jQuery 1.4+ supports scope context \n\t\tfor (var i=0, max=callbacks.length; i < max; i++) {\n\t\t\tcallbacks[i].apply(context, [data, status, xhr || $form, $form]);\n\t\t}\n\t};\n\n\t// are there files to upload?\n\tvar fileInputs = $('input:file', this).length > 0;\n\tvar mp = 'multipart/form-data';\n\tvar multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);\n\n\t// options.iframe allows user to force iframe mode\n\t// 06-NOV-09: now defaulting to iframe mode if file input is detected\n   if (options.iframe !== false && (fileInputs || options.iframe || multipart)) {\n\t   // hack to fix Safari hang (thanks to Tim Molendijk for this)\n\t   // see:  http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d\n\t   if (options.closeKeepAlive) {\n\t\t   $.get(options.closeKeepAlive, fileUpload);\n\t\t}\n\t   else {\n\t\t   fileUpload();\n\t\t}\n   }\n   else {\n\t   $.ajax(options);\n   }\n\n\t// fire 'notify' event\n\tthis.trigger('form-submit-notify', [this, options]);\n\treturn this;\n\n\n\t// private function for handling file uploads (hat tip to YAHOO!)\n\tfunction fileUpload() {\n\t\tvar form = $form[0];\n\n\t\tif ($(':input[name=submit],:input[id=submit]', form).length) {\n\t\t\t// if there is an input with a name or id of 'submit' then we won't be\n\t\t\t// able to invoke the submit fn on the form (at least not x-browser)\n\t\t\talert('Error: Form elements must not have name or id of \"submit\".');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tvar s = $.extend(true, {}, $.ajaxSettings, options);\n\t\ts.context = s.context || s;\n\t\tvar id = 'jqFormIO' + (new Date().getTime()), fn = '_'+id;\n\t\twindow[fn] = function() {\n\t\t\tvar f = $io.data('form-plugin-onload');\n\t\t\tif (f) {\n\t\t\t\tf();\n\t\t\t\twindow[fn] = undefined;\n\t\t\t\ttry { delete window[fn]; } catch(e){}\n\t\t\t}\n\t\t}\n\t\tvar $io = $('<iframe id=\"' + id + '\" name=\"' + id + '\" src=\"'+ s.iframeSrc +'\" onload=\"window[\\'_\\'+this.id]()\" />');\n\t\tvar io = $io[0];\n\n\t\t$io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });\n\n\t\tvar xhr = { // mock object\n\t\t\taborted: 0,\n\t\t\tresponseText: null,\n\t\t\tresponseXML: null,\n\t\t\tstatus: 0,\n\t\t\tstatusText: 'n/a',\n\t\t\tgetAllResponseHeaders: function() {},\n\t\t\tgetResponseHeader: function() {},\n\t\t\tsetRequestHeader: function() {},\n\t\t\tabort: function() {\n\t\t\t\tthis.aborted = 1;\n\t\t\t\t$io.attr('src', s.iframeSrc); // abort op in progress\n\t\t\t}\n\t\t};\n\n\t\tvar g = s.global;\n\t\t// trigger ajax global events so that activity/block indicators work like normal\n\t\tif (g && ! $.active++) {\n\t\t\t$.event.trigger(\"ajaxStart\");\n\t\t}\n\t\tif (g) {\n\t\t\t$.event.trigger(\"ajaxSend\", [xhr, s]);\n\t\t}\n\n\t\tif (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {\n\t\t\tif (s.global) { \n\t\t\t\t$.active--;\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tif (xhr.aborted) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar cbInvoked = false;\n\t\tvar timedOut = 0;\n\n\t\t// add submitting element to data if we know it\n\t\tvar sub = form.clk;\n\t\tif (sub) {\n\t\t\tvar n = sub.name;\n\t\t\tif (n && !sub.disabled) {\n\t\t\t\ts.extraData = s.extraData || {};\n\t\t\t\ts.extraData[n] = sub.value;\n\t\t\t\tif (sub.type == \"image\") {\n\t\t\t\t\ts.extraData[n+'.x'] = form.clk_x;\n\t\t\t\t\ts.extraData[n+'.y'] = form.clk_y;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// take a breath so that pending repaints get some cpu time before the upload starts\n\t\tfunction doSubmit() {\n\t\t\t// make sure form attrs are set\n\t\t\tvar t = $form.attr('target'), a = $form.attr('action');\n\n\t\t\t// update form attrs in IE friendly way\n\t\t\tform.setAttribute('target',id);\n\t\t\tif (form.getAttribute('method') != 'POST') {\n\t\t\t\tform.setAttribute('method', 'POST');\n\t\t\t}\n\t\t\tif (form.getAttribute('action') != s.url) {\n\t\t\t\tform.setAttribute('action', s.url);\n\t\t\t}\n\n\t\t\t// ie borks in some cases when setting encoding\n\t\t\tif (! s.skipEncodingOverride) {\n\t\t\t\t$form.attr({\n\t\t\t\t\tencoding: 'multipart/form-data',\n\t\t\t\t\tenctype:  'multipart/form-data'\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// support timout\n\t\t\tif (s.timeout) {\n\t\t\t\tsetTimeout(function() { timedOut = true; cb(); }, s.timeout);\n\t\t\t}\n\n\t\t\t// add \"extra\" data to form if provided in options\n\t\t\tvar extraInputs = [];\n\t\t\ttry {\n\t\t\t\tif (s.extraData) {\n\t\t\t\t\tfor (var n in s.extraData) {\n\t\t\t\t\t\textraInputs.push(\n\t\t\t\t\t\t\t$('<input type=\"hidden\" name=\"'+n+'\" value=\"'+s.extraData[n]+'\" />')\n\t\t\t\t\t\t\t\t.appendTo(form)[0]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// add iframe to doc and submit the form\n\t\t\t\t$io.appendTo('body');\n\t\t\t\t$io.data('form-plugin-onload', cb);\n\t\t\t\tform.submit();\n\t\t\t}\n\t\t\tfinally {\n\t\t\t\t// reset attrs and remove \"extra\" input elements\n\t\t\t\tform.setAttribute('action',a);\n\t\t\t\tif(t) {\n\t\t\t\t\tform.setAttribute('target', t);\n\t\t\t\t} else {\n\t\t\t\t\t$form.removeAttr('target');\n\t\t\t\t}\n\t\t\t\t$(extraInputs).remove();\n\t\t\t}\n\t\t}\n\n\t\tif (s.forceSync) {\n\t\t\tdoSubmit();\n\t\t}\n\t\telse {\n\t\t\tsetTimeout(doSubmit, 10); // this lets dom updates render\n\t\t}\n\t\n\t\tvar data, doc, domCheckCount = 50;\n\n\t\tfunction cb() {\n\t\t\tif (cbInvoked) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$io.removeData('form-plugin-onload');\n\t\t\t\n\t\t\tvar ok = true;\n\t\t\ttry {\n\t\t\t\tif (timedOut) {\n\t\t\t\t\tthrow 'timeout';\n\t\t\t\t}\n\t\t\t\t// extract the server response from the iframe\n\t\t\t\tdoc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;\n\t\t\t\t\n\t\t\t\tvar isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);\n\t\t\t\tlog('isXml='+isXml);\n\t\t\t\tif (!isXml && window.opera && (doc.body == null || doc.body.innerHTML == '')) {\n\t\t\t\t\tif (--domCheckCount) {\n\t\t\t\t\t\t// in some browsers (Opera) the iframe DOM is not always traversable when\n\t\t\t\t\t\t// the onload callback fires, so we loop a bit to accommodate\n\t\t\t\t\t\tlog('requeing onLoad callback, DOM not available');\n\t\t\t\t\t\tsetTimeout(cb, 250);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t// let this fall through because server response could be an empty document\n\t\t\t\t\t//log('Could not access iframe DOM after mutiple tries.');\n\t\t\t\t\t//throw 'DOMException: not available';\n\t\t\t\t}\n\n\t\t\t\t//log('response detected');\n\t\t\t\tcbInvoked = true;\n\t\t\t\txhr.responseText = doc.documentElement ? doc.documentElement.innerHTML : null; \n\t\t\t\txhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;\n\t\t\t\txhr.getResponseHeader = function(header){\n\t\t\t\t\tvar headers = {'content-type': s.dataType};\n\t\t\t\t\treturn headers[header];\n\t\t\t\t};\n\n\t\t\t\tvar scr = /(json|script)/.test(s.dataType);\n\t\t\t\tif (scr || s.textarea) {\n\t\t\t\t\t// see if user embedded response in textarea\n\t\t\t\t\tvar ta = doc.getElementsByTagName('textarea')[0];\n\t\t\t\t\tif (ta) {\n\t\t\t\t\t\txhr.responseText = ta.value;\n\t\t\t\t\t}\n\t\t\t\t\telse if (scr) {\n\t\t\t\t\t\t// account for browsers injecting pre around json response\n\t\t\t\t\t\tvar pre = doc.getElementsByTagName('pre')[0];\n\t\t\t\t\t\tif (pre) {\n\t\t\t\t\t\t\txhr.responseText = pre.innerHTML;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\t\t\t  \n\t\t\t\t}\n\t\t\t\telse if (s.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {\n\t\t\t\t\txhr.responseXML = toXml(xhr.responseText);\n\t\t\t\t}\n\t\t\t\tdata = $.httpData(xhr, s.dataType);\n\t\t\t}\n\t\t\tcatch(e){\n\t\t\t\tlog('error caught:',e);\n\t\t\t\tok = false;\n\t\t\t\txhr.error = e;\n\t\t\t\t$.handleError(s, xhr, 'error', e);\n\t\t\t}\n\n\t\t\t// ordering of these callbacks/triggers is odd, but that's how $.ajax does it\n\t\t\tif (ok) {\n\t\t\t\ts.success.call(s.context, data, 'success', xhr);\n\t\t\t\tif (g) {\n\t\t\t\t\t$.event.trigger(\"ajaxSuccess\", [xhr, s]);\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (g) {\n\t\t\t\t$.event.trigger(\"ajaxComplete\", [xhr, s]);\n\t\t\t}\n\t\t\tif (g && ! --$.active) {\n\t\t\t\t$.event.trigger(\"ajaxStop\");\n\t\t\t}\n\t\t\tif (s.complete) {\n\t\t\t\ts.complete.call(s.context, xhr, ok ? 'success' : 'error');\n\t\t\t}\n\n\t\t\t// clean up\n\t\t\tsetTimeout(function() {\n\t\t\t\t$io.removeData('form-plugin-onload');\n\t\t\t\t$io.remove();\n\t\t\t\txhr.responseXML = null;\n\t\t\t}, 100);\n\t\t}\n\n\t\tfunction toXml(s, doc) {\n\t\t\tif (window.ActiveXObject) {\n\t\t\t\tdoc = new ActiveXObject('Microsoft.XMLDOM');\n\t\t\t\tdoc.async = 'false';\n\t\t\t\tdoc.loadXML(s);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdoc = (new DOMParser()).parseFromString(s, 'text/xml');\n\t\t\t}\n\t\t\treturn (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;\n\t\t}\n\t}\n};\n\n/**\n * ajaxForm() provides a mechanism for fully automating form submission.\n *\n * The advantages of using this method instead of ajaxSubmit() are:\n *\n * 1: This method will include coordinates for <input type=\"image\" /> elements (if the element\n *\tis used to submit the form).\n * 2. This method will include the submit element's name/value data (for the element that was\n *\tused to submit the form).\n * 3. This method binds the submit() method to the form for you.\n *\n * The options argument for ajaxForm works exactly as it does for ajaxSubmit.  ajaxForm merely\n * passes the options argument along after properly binding events for submit elements and\n * the form itself.\n */\n$.fn.ajaxForm = function(options) {\n\t// in jQuery 1.3+ we can fix mistakes with the ready state\n\tif (this.length === 0) {\n\t\tvar o = { s: this.selector, c: this.context };\n\t\tif (!$.isReady && o.s) {\n\t\t\tlog('DOM not ready, queuing ajaxForm');\n\t\t\t$(function() {\n\t\t\t\t$(o.s,o.c).ajaxForm(options);\n\t\t\t});\n\t\t\treturn this;\n\t\t}\n\t\t// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()\n\t\tlog('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));\n\t\treturn this;\n\t}\n\t\n\treturn this.ajaxFormUnbind().bind('submit.form-plugin', function(e) {\n\t\tif (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed\n\t\t\te.preventDefault();\n\t\t\t$(this).ajaxSubmit(options);\n\t\t}\n\t}).bind('click.form-plugin', function(e) {\n\t\tvar target = e.target;\n\t\tvar $el = $(target);\n\t\tif (!($el.is(\":submit,input:image\"))) {\n\t\t\t// is this a child element of the submit el?  (ex: a span within a button)\n\t\t\tvar t = $el.closest(':submit');\n\t\t\tif (t.length == 0) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\ttarget = t[0];\n\t\t}\n\t\tvar form = this;\n\t\tform.clk = target;\n\t\tif (target.type == 'image') {\n\t\t\tif (e.offsetX != undefined) {\n\t\t\t\tform.clk_x = e.offsetX;\n\t\t\t\tform.clk_y = e.offsetY;\n\t\t\t} else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin\n\t\t\t\tvar offset = $el.offset();\n\t\t\t\tform.clk_x = e.pageX - offset.left;\n\t\t\t\tform.clk_y = e.pageY - offset.top;\n\t\t\t} else {\n\t\t\t\tform.clk_x = e.pageX - target.offsetLeft;\n\t\t\t\tform.clk_y = e.pageY - target.offsetTop;\n\t\t\t}\n\t\t}\n\t\t// clear form vars\n\t\tsetTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);\n\t});\n};\n\n// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm\n$.fn.ajaxFormUnbind = function() {\n\treturn this.unbind('submit.form-plugin click.form-plugin');\n};\n\n/**\n * formToArray() gathers form element data into an array of objects that can\n * be passed to any of the following ajax functions: $.get, $.post, or load.\n * Each object in the array has both a 'name' and 'value' property.  An example of\n * an array for a simple login form might be:\n *\n * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]\n *\n * It is this array that is passed to pre-submit callback functions provided to the\n * ajaxSubmit() and ajaxForm() methods.\n */\n$.fn.formToArray = function(semantic) {\n\tvar a = [];\n\tif (this.length === 0) {\n\t\treturn a;\n\t}\n\n\tvar form = this[0];\n\tvar els = semantic ? form.getElementsByTagName('*') : form.elements;\n\tif (!els) {\n\t\treturn a;\n\t}\n\t\n\tvar i,j,n,v,el;\n\tfor(i=0, max=els.length; i < max; i++) {\n\t\tel = els[i];\n\t\tn = el.name;\n\t\tif (!n) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (semantic && form.clk && el.type == \"image\") {\n\t\t\t// handle image inputs on the fly when semantic == true\n\t\t\tif(!el.disabled && form.clk == el) {\n\t\t\t\ta.push({name: n, value: $(el).val()});\n\t\t\t\ta.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tv = $.fieldValue(el, true);\n\t\tif (v && v.constructor == Array) {\n\t\t\tfor(j=0, jmax=v.length; j < jmax; j++) {\n\t\t\t\ta.push({name: n, value: v[j]});\n\t\t\t}\n\t\t}\n\t\telse if (v !== null && typeof v != 'undefined') {\n\t\t\ta.push({name: n, value: v});\n\t\t}\n\t}\n\n\tif (!semantic && form.clk) {\n\t\t// input type=='image' are not found in elements array! handle it here\n\t\tvar $input = $(form.clk), input = $input[0];\n\t\tn = input.name;\n\t\tif (n && !input.disabled && input.type == 'image') {\n\t\t\ta.push({name: n, value: $input.val()});\n\t\t\ta.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});\n\t\t}\n\t}\n\treturn a;\n};\n\n/**\n * Serializes form data into a 'submittable' string. This method will return a string\n * in the format: name1=value1&amp;name2=value2\n */\n$.fn.formSerialize = function(semantic) {\n\t//hand off to jQuery.param for proper encoding\n\treturn $.param(this.formToArray(semantic));\n};\n\n/**\n * Serializes all field elements in the jQuery object into a query string.\n * This method will return a string in the format: name1=value1&amp;name2=value2\n */\n$.fn.fieldSerialize = function(successful) {\n\tvar a = [];\n\tthis.each(function() {\n\t\tvar n = this.name;\n\t\tif (!n) {\n\t\t\treturn;\n\t\t}\n\t\tvar v = $.fieldValue(this, successful);\n\t\tif (v && v.constructor == Array) {\n\t\t\tfor (var i=0,max=v.length; i < max; i++) {\n\t\t\t\ta.push({name: n, value: v[i]});\n\t\t\t}\n\t\t}\n\t\telse if (v !== null && typeof v != 'undefined') {\n\t\t\ta.push({name: this.name, value: v});\n\t\t}\n\t});\n\t//hand off to jQuery.param for proper encoding\n\treturn $.param(a);\n};\n\n/**\n * Returns the value(s) of the element in the matched set.  For example, consider the following form:\n *\n *  <form><fieldset>\n *\t  <input name=\"A\" type=\"text\" />\n *\t  <input name=\"A\" type=\"text\" />\n *\t  <input name=\"B\" type=\"checkbox\" value=\"B1\" />\n *\t  <input name=\"B\" type=\"checkbox\" value=\"B2\"/>\n *\t  <input name=\"C\" type=\"radio\" value=\"C1\" />\n *\t  <input name=\"C\" type=\"radio\" value=\"C2\" />\n *  </fieldset></form>\n *\n *  var v = $(':text').fieldValue();\n *  // if no values are entered into the text inputs\n *  v == ['','']\n *  // if values entered into the text inputs are 'foo' and 'bar'\n *  v == ['foo','bar']\n *\n *  var v = $(':checkbox').fieldValue();\n *  // if neither checkbox is checked\n *  v === undefined\n *  // if both checkboxes are checked\n *  v == ['B1', 'B2']\n *\n *  var v = $(':radio').fieldValue();\n *  // if neither radio is checked\n *  v === undefined\n *  // if first radio is checked\n *  v == ['C1']\n *\n * The successful argument controls whether or not the field element must be 'successful'\n * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).\n * The default value of the successful argument is true.  If this value is false the value(s)\n * for each element is returned.\n *\n * Note: This method *always* returns an array.  If no valid value can be determined the\n *\t   array will be empty, otherwise it will contain one or more values.\n */\n$.fn.fieldValue = function(successful) {\n\tfor (var val=[], i=0, max=this.length; i < max; i++) {\n\t\tvar el = this[i];\n\t\tvar v = $.fieldValue(el, successful);\n\t\tif (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) {\n\t\t\tcontinue;\n\t\t}\n\t\tv.constructor == Array ? $.merge(val, v) : val.push(v);\n\t}\n\treturn val;\n};\n\n/**\n * Returns the value of the field element.\n */\n$.fieldValue = function(el, successful) {\n\tvar n = el.name, t = el.type, tag = el.tagName.toLowerCase();\n\tif (successful === undefined) {\n\t\tsuccessful = true;\n\t}\n\n\tif (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||\n\t\t(t == 'checkbox' || t == 'radio') && !el.checked ||\n\t\t(t == 'submit' || t == 'image') && el.form && el.form.clk != el ||\n\t\ttag == 'select' && el.selectedIndex == -1)) {\n\t\t\treturn null;\n\t}\n\n\tif (tag == 'select') {\n\t\tvar index = el.selectedIndex;\n\t\tif (index < 0) {\n\t\t\treturn null;\n\t\t}\n\t\tvar a = [], ops = el.options;\n\t\tvar one = (t == 'select-one');\n\t\tvar max = (one ? index+1 : ops.length);\n\t\tfor(var i=(one ? index : 0); i < max; i++) {\n\t\t\tvar op = ops[i];\n\t\t\tif (op.selected) {\n\t\t\t\tvar v = op.value;\n\t\t\t\tif (!v) { // extra pain for IE...\n\t\t\t\t\tv = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;\n\t\t\t\t}\n\t\t\t\tif (one) {\n\t\t\t\t\treturn v;\n\t\t\t\t}\n\t\t\t\ta.push(v);\n\t\t\t}\n\t\t}\n\t\treturn a;\n\t}\n\treturn $(el).val();\n};\n\n/**\n * Clears the form data.  Takes the following actions on the form's input fields:\n *  - input text fields will have their 'value' property set to the empty string\n *  - select elements will have their 'selectedIndex' property set to -1\n *  - checkbox and radio inputs will have their 'checked' property set to false\n *  - inputs of type submit, button, reset, and hidden will *not* be effected\n *  - button elements will *not* be effected\n */\n$.fn.clearForm = function() {\n\treturn this.each(function() {\n\t\t$('input,select,textarea', this).clearFields();\n\t});\n};\n\n/**\n * Clears the selected form elements.\n */\n$.fn.clearFields = $.fn.clearInputs = function() {\n\treturn this.each(function() {\n\t\tvar t = this.type, tag = this.tagName.toLowerCase();\n\t\tif (t == 'text' || t == 'password' || tag == 'textarea') {\n\t\t\tthis.value = '';\n\t\t}\n\t\telse if (t == 'checkbox' || t == 'radio') {\n\t\t\tthis.checked = false;\n\t\t}\n\t\telse if (tag == 'select') {\n\t\t\tthis.selectedIndex = -1;\n\t\t}\n\t});\n};\n\n/**\n * Resets the form data.  Causes all form elements to be reset to their original value.\n */\n$.fn.resetForm = function() {\n\treturn this.each(function() {\n\t\t// guard against an input with the name of 'reset'\n\t\t// note that IE reports the reset function as an 'object'\n\t\tif (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) {\n\t\t\tthis.reset();\n\t\t}\n\t});\n};\n\n/**\n * Enables or disables any matching elements.\n */\n$.fn.enable = function(b) {\n\tif (b === undefined) {\n\t\tb = true;\n\t}\n\treturn this.each(function() {\n\t\tthis.disabled = !b;\n\t});\n};\n\n/**\n * Checks/unchecks any matching checkboxes or radio buttons and\n * selects/deselects and matching option elements.\n */\n$.fn.selected = function(select) {\n\tif (select === undefined) {\n\t\tselect = true;\n\t}\n\treturn this.each(function() {\n\t\tvar t = this.type;\n\t\tif (t == 'checkbox' || t == 'radio') {\n\t\t\tthis.checked = select;\n\t\t}\n\t\telse if (this.tagName.toLowerCase() == 'option') {\n\t\t\tvar $sel = $(this).parent('select');\n\t\t\tif (select && $sel[0] && $sel[0].type == 'select-one') {\n\t\t\t\t// deselect all other options\n\t\t\t\t$sel.find('option').selected(false);\n\t\t\t}\n\t\t\tthis.selected = select;\n\t\t}\n\t});\n};\n\n// helper fn for console logging\n// set $.fn.ajaxSubmit.debug to true to enable debug logging\nfunction log() {\n\tif ($.fn.ajaxSubmit.debug) {\n\t\tvar msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');\n\t\tif (window.console && window.console.log) {\n\t\t\twindow.console.log(msg);\n\t\t}\n\t\telse if (window.opera && window.opera.postError) {\n\t\t\twindow.opera.postError(msg);\n\t\t}\n\t}\n};\n\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/jquery.jstree.js",
    "content": "/*\n * jsTree 1.0-rc1\n * http://jstree.com/\n *\n * Copyright (c) 2010 Ivan Bozhanov (vakata.com)\n *\n * Dual licensed under the MIT and GPL licenses (same as jQuery):\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n *\n * $Date: 2010-07-01 10:51:11 +0300 (четв, 01 юли 2010) $\n * $Revision: 191 $\n */\n\n/*jslint browser: true, onevar: true, undef: true, bitwise: true, strict: true */\n/*global window : false, clearInterval: false, clearTimeout: false, document: false, setInterval: false, setTimeout: false, jQuery: false, navigator: false, XSLTProcessor: false, DOMParser: false, XMLSerializer: false*/\n\n\"use strict\";\n// Common functions not related to jsTree \n// decided to move them to a `vakata` \"namespace\"\n(function ($) {\n\t$.vakata = {};\n\t// CSS related functions\n\t$.vakata.css = {\n\t\tget_css : function(rule_name, delete_flag, sheet) {\n\t\t\trule_name = rule_name.toLowerCase();\n\t\t\tvar css_rules = sheet.cssRules || sheet.rules,\n\t\t\t\tj = 0;\n\t\t\tdo {\n\t\t\t\tif(css_rules.length && j > css_rules.length + 5) { return false; }\n\t\t\t\tif(css_rules[j].selectorText && css_rules[j].selectorText.toLowerCase() == rule_name) {\n\t\t\t\t\tif(delete_flag === true) {\n\t\t\t\t\t\tif(sheet.removeRule) { sheet.removeRule(j); }\n\t\t\t\t\t\tif(sheet.deleteRule) { sheet.deleteRule(j); }\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t\telse { return css_rules[j]; }\n\t\t\t\t}\n\t\t\t}\n\t\t\twhile (css_rules[++j]);\n\t\t\treturn false;\n\t\t},\n\t\tadd_css : function(rule_name, sheet) {\n\t\t\tif($.jstree.css.get_css(rule_name, false, sheet)) { return false; }\n\t\t\tif(sheet.insertRule) { sheet.insertRule(rule_name + ' { }', 0); } else { sheet.addRule(rule_name, null, 0); }\n\t\t\treturn $.vakata.css.get_css(rule_name);\n\t\t},\n\t\tremove_css : function(rule_name, sheet) { \n\t\t\treturn $.vakata.css.get_css(rule_name, true, sheet); \n\t\t},\n\t\tadd_sheet : function(opts) {\n\t\t\tvar tmp;\n\t\t\tif(opts.str) {\n\t\t\t\ttmp = document.createElement(\"style\");\n\t\t\t\ttmp.setAttribute('type',\"text/css\");\n\t\t\t\tif(tmp.styleSheet) {\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t\ttmp.styleSheet.cssText = opts.str;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\ttmp.appendChild(document.createTextNode(opts.str));\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t}\n\t\t\t\treturn tmp.sheet || tmp.styleSheet;\n\t\t\t}\n\t\t\tif(opts.url) {\n\t\t\t\tif(document.createStyleSheet) {\n\t\t\t\t\ttry { tmp = document.createStyleSheet(opts.url); } catch (e) { }\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\ttmp\t\t\t= document.createElement('link');\n\t\t\t\t\ttmp.rel\t\t= 'stylesheet';\n\t\t\t\t\ttmp.type\t= 'text/css';\n\t\t\t\t\ttmp.media\t= \"all\";\n\t\t\t\t\ttmp.href\t= opts.url;\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t\treturn tmp.styleSheet;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n})(jQuery);\n\n/* \n * jsTree core 1.0\n */\n(function ($) {\n\t// private variables \n\tvar instances = [],\t\t\t// instance array (used by $.jstree.reference/create/focused)\n\t\tfocused_instance = -1,\t// the index in the instance array of the currently focused instance\n\t\tplugins = {},\t\t\t// list of included plugins\n\t\tprepared_move = {},\t\t// for the move plugin\n\t\tis_ie6 = false;\n\n\t// jQuery plugin wrapper (thanks to jquery UI widget function)\n\t$.fn.jstree = function (settings) {\n\t\tvar isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree(\"open_node\")\n\t\t\targs = Array.prototype.slice.call(arguments, 1), \n\t\t\treturnValue = this;\n\n\t\t// extend settings and allow for multiple hashes and metadata\n\t\tif(!isMethodCall && $.meta) { args.push($.metadata.get(this).jstree); }\n\t\tsettings = !isMethodCall && args.length ? $.extend.apply(null, [true, settings].concat(args)) : settings;\n\t\t// block calls to \"private\" methods\n\t\tif(isMethodCall && settings.substring(0, 1) == '_') { return returnValue; }\n\n\t\t// if a method call execute the method on all selected instances\n\t\tif(isMethodCall) {\n\t\t\tthis.each(function() {\n\t\t\t\tvar instance = instances[$.data(this, \"jstree-instance-id\")],\n\t\t\t\t\tmethodValue = (instance && $.isFunction(instance[settings])) ? instance[settings].apply(instance, args) : instance;\n\t\t\t\t\tif(typeof methodValue !== \"undefined\" && (settings.indexOf(\"is_\" === 0) || (methodValue !== true && methodValue !== false))) { returnValue = methodValue; return false; }\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tthis.each(function() {\n\t\t\t\tvar instance_id = $.data(this, \"jstree-instance-id\"),\n\t\t\t\t\ts = false;\n\t\t\t\t// if an instance already exists, destroy it first\n\t\t\t\tif(typeof instance_id !== \"undefined\" && instances[instance_id]) { instances[instance_id].destroy(); }\n\t\t\t\t// push a new empty object to the instances array\n\t\t\t\tinstance_id = parseInt(instances.push({}),10) - 1;\n\t\t\t\t// store the jstree instance id to the container element\n\t\t\t\t$.data(this, \"jstree-instance-id\", instance_id);\n\t\t\t\t// clean up all plugins\n\t\t\t\tif(!settings) { settings = {}; }\n\t\t\t\tsettings.plugins = $.isArray(settings.plugins) ? settings.plugins : $.jstree.defaults.plugins;\n\t\t\t\tif($.inArray(\"core\", settings.plugins) === -1) { settings.plugins.unshift(\"core\"); }\n\t\t\t\t\n\t\t\t\t// only unique plugins (NOT WORKING)\n\t\t\t\t// settings.plugins = settings.plugins.sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\");\n\n\t\t\t\t// extend defaults with passed data\n\t\t\t\ts = $.extend(true, {}, $.jstree.defaults, settings);\n\t\t\t\ts.plugins = settings.plugins;\n\t\t\t\t$.each(plugins, function (i, val) { if($.inArray(i, s.plugins) === -1) { s[i] = null; delete s[i]; } });\n\t\t\t\t// push the new object to the instances array (at the same time set the default classes to the container) and init\n\t\t\t\tinstances[instance_id] = new $.jstree._instance(instance_id, $(this).addClass(\"jstree jstree-\" + instance_id), s); \n\t\t\t\t// init all activated plugins for this instance\n\t\t\t\t$.each(instances[instance_id]._get_settings().plugins, function (i, val) { instances[instance_id].data[val] = {}; });\n\t\t\t\t$.each(instances[instance_id]._get_settings().plugins, function (i, val) { if(plugins[val]) { plugins[val].__init.apply(instances[instance_id]); } });\n\t\t\t\t// initialize the instance\n\t\t\t\tinstances[instance_id].init();\n\t\t\t});\n\t\t}\n\t\t// return the jquery selection (or if it was a method call that returned a value - the returned value)\n\t\treturn returnValue;\n\t};\n\t// object to store exposed functions and objects\n\t$.jstree = {\n\t\tdefaults : {\n\t\t\tplugins : []\n\t\t},\n\t\t_focused : function () { return instances[focused_instance] || null; },\n\t\t_reference : function (needle) { \n\t\t\t// get by instance id\n\t\t\tif(instances[needle]) { return instances[needle]; }\n\t\t\t// get by DOM (if still no luck - return null\n\t\t\tvar o = $(needle); \n\t\t\tif(!o.length && typeof needle === \"string\") { o = $(\"#\" + needle); }\n\t\t\tif(!o.length) { return null; }\n\t\t\treturn instances[o.closest(\".jstree\").data(\"jstree-instance-id\")] || null; \n\t\t},\n\t\t_instance : function (index, container, settings) { \n\t\t\t// for plugins to store data in\n\t\t\tthis.data = { core : {} };\n\t\t\tthis.get_settings\t= function () { return $.extend(true, {}, settings); };\n\t\t\tthis._get_settings\t= function () { return settings; };\n\t\t\tthis.get_index\t\t= function () { return index; };\n\t\t\tthis.get_container\t= function () { return container; };\n\t\t\tthis._set_settings\t= function (s) { \n\t\t\t\tsettings = $.extend(true, {}, settings, s);\n\t\t\t};\n\t\t},\n\t\t_fn : { },\n\t\tplugin : function (pname, pdata) {\n\t\t\tpdata = $.extend({}, {\n\t\t\t\t__init\t\t: $.noop, \n\t\t\t\t__destroy\t: $.noop,\n\t\t\t\t_fn\t\t\t: {},\n\t\t\t\tdefaults\t: false\n\t\t\t}, pdata);\n\t\t\tplugins[pname] = pdata;\n\n\t\t\t$.jstree.defaults[pname] = pdata.defaults;\n\t\t\t$.each(pdata._fn, function (i, val) {\n\t\t\t\tval.plugin\t\t= pname;\n\t\t\t\tval.old\t\t\t= $.jstree._fn[i];\n\t\t\t\t$.jstree._fn[i] = function () {\n\t\t\t\t\tvar rslt,\n\t\t\t\t\t\tfunc = val,\n\t\t\t\t\t\targs = Array.prototype.slice.call(arguments),\n\t\t\t\t\t\tevnt = new $.Event(\"before.jstree\"),\n\t\t\t\t\t\trlbk = false;\n\n\t\t\t\t\t// Check if function belongs to the included plugins of this instance\n\t\t\t\t\tdo {\n\t\t\t\t\t\tif(func && func.plugin && $.inArray(func.plugin, this._get_settings().plugins) !== -1) { break; }\n\t\t\t\t\t\tfunc = func.old;\n\t\t\t\t\t} while(func);\n\t\t\t\t\tif(!func) { return; }\n\n\t\t\t\t\t// a chance to stop execution (or change arguments): \n\t\t\t\t\t// * just bind to jstree.before\n\t\t\t\t\t// * check the additional data object (func property)\n\t\t\t\t\t// * call event.stopImmediatePropagation()\n\t\t\t\t\t// * return false (or an array of arguments)\n\t\t\t\t\trslt = this.get_container().triggerHandler(evnt, { \"func\" : i, \"inst\" : this, \"args\" : args });\n\t\t\t\t\tif(rslt === false) { return; }\n\t\t\t\t\tif(typeof rslt !== \"undefined\") { args = rslt; }\n\n\t\t\t\t\t// context and function to trigger events, then finally call the function\n\t\t\t\t\tif(i.indexOf(\"_\") === 0) {\n\t\t\t\t\t\trslt = func.apply(this, args);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\trslt = func.apply(\n\t\t\t\t\t\t\t$.extend({}, this, { \n\t\t\t\t\t\t\t\t__callback : function (data) { \n\t\t\t\t\t\t\t\t\tthis.get_container().triggerHandler( i + '.jstree', { \"inst\" : this, \"args\" : args, \"rslt\" : data, \"rlbk\" : rlbk });\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t__rollback : function () { \n\t\t\t\t\t\t\t\t\trlbk = this.get_rollback();\n\t\t\t\t\t\t\t\t\treturn rlbk;\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t__call_old : function (replace_arguments) {\n\t\t\t\t\t\t\t\t\treturn func.old.apply(this, (replace_arguments ? Array.prototype.slice.call(arguments, 1) : args ) );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}), args);\n\t\t\t\t\t}\n\n\t\t\t\t\t// return the result\n\t\t\t\t\treturn rslt;\n\t\t\t\t};\n\t\t\t\t$.jstree._fn[i].old = val.old;\n\t\t\t\t$.jstree._fn[i].plugin = pname;\n\t\t\t});\n\t\t},\n\t\trollback : function (rb) {\n\t\t\tif(rb) {\n\t\t\t\tif(!$.isArray(rb)) { rb = [ rb ]; }\n\t\t\t\t$.each(rb, function (i, val) {\n\t\t\t\t\tinstances[val.i].set_rollback(val.h, val.d);\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t};\n\t// set the prototype for all instances\n\t$.jstree._fn = $.jstree._instance.prototype = {};\n\n\t// css functions - used internally\n\n\t// load the css when DOM is ready\n\t$(function() {\n\t\t// code is copied form jQuery ($.browser is deprecated + there is a bug in IE)\n\t\tvar u = navigator.userAgent.toLowerCase(),\n\t\t\tv = (u.match( /.+?(?:rv|it|ra|ie)[\\/: ]([\\d.]+)/ ) || [0,'0'])[1],\n\t\t\tcss_string = '' + \n\t\t\t\t'.jstree ul, .jstree li { display:block; margin:0 0 0 0; padding:0 0 0 0; list-style-type:none; } ' + \n\t\t\t\t'.jstree li { display:block; min-height:18px; line-height:18px; white-space:nowrap; margin-left:18px; } ' + \n\t\t\t\t'.jstree-rtl li { margin-left:0; margin-right:18px; } ' + \n\t\t\t\t'.jstree > ul > li { margin-left:0px; } ' + \n\t\t\t\t'.jstree-rtl > ul > li { margin-right:0px; } ' + \n\t\t\t\t'.jstree ins { display:inline-block; text-decoration:none; width:18px; height:18px; margin:0 0 0 0; padding:0; } ' + \n\t\t\t\t'.jstree a { display:inline-block; line-height:16px; height:16px; color:black; white-space:nowrap; text-decoration:none; padding:1px 2px; margin:0; } ' + \n\t\t\t\t'.jstree a:focus { outline: none; } ' + \n\t\t\t\t'.jstree a > ins { height:16px; width:16px; } ' + \n\t\t\t\t'.jstree a > .jstree-icon { margin-right:3px; } ' + \n\t\t\t\t'.jstree-rtl a > .jstree-icon { margin-left:3px; margin-right:0; } ' + \n\t\t\t\t'li.jstree-open > ul { display:block; } ' + \n\t\t\t\t'li.jstree-closed > ul { display:none; } ';\n\t\t// Correct IE 6 (does not support the > CSS selector)\n\t\tif(/msie/.test(u) && parseInt(v, 10) == 6) { \n\t\t\tis_ie6 = true;\n\t\t\tcss_string += '' + \n\t\t\t\t'.jstree li { height:18px; margin-left:0; margin-right:0; } ' + \n\t\t\t\t'.jstree li li { margin-left:18px; } ' + \n\t\t\t\t'.jstree-rtl li li { margin-left:0px; margin-right:18px; } ' + \n\t\t\t\t'li.jstree-open ul { display:block; } ' + \n\t\t\t\t'li.jstree-closed ul { display:none !important; } ' + \n\t\t\t\t'.jstree li a { display:inline; border-width:0 !important; padding:0px 2px !important; } ' + \n\t\t\t\t'.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' + \n\t\t\t\t'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';\n\t\t}\n\t\t// Correct IE 7 (shifts anchor nodes onhover)\n\t\tif(/msie/.test(u) && parseInt(v, 10) == 7) { \n\t\t\tcss_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';\n\t\t}\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n\n\t// core functions (open, close, create, update, delete)\n\t$.jstree.plugin(\"core\", {\n\t\t__init : function () {\n\t\t\tthis.data.core.to_open = $.map($.makeArray(this.get_settings().core.initially_open), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t},\n\t\tdefaults : { \n\t\t\thtml_titles\t: false,\n\t\t\tanimation\t: 500,\n\t\t\tinitially_open : [],\n\t\t\trtl\t\t\t: false,\n\t\t\tstrings\t\t: {\n\t\t\t\tloading\t\t: \"Loading ...\",\n\t\t\t\tnew_node\t: \"New node\"\n\t\t\t}\n\t\t},\n\t\t_fn : { \n\t\t\tinit\t: function () { \n\t\t\t\tthis.set_focus(); \n\t\t\t\tif(this._get_settings().core.rtl) {\n\t\t\t\t\tthis.get_container().addClass(\"jstree-rtl\").css(\"direction\", \"rtl\");\n\t\t\t\t}\n\t\t\t\tthis.get_container().html(\"<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>\" + this._get_settings().core.strings.loading + \"</a></li></ul>\");\n\t\t\t\tthis.data.core.li_height = this.get_container().find(\"ul li.jstree-closed, ul li.jstree-leaf\").eq(0).height() || 18;\n\n\t\t\t\tthis.get_container()\n\t\t\t\t\t.delegate(\"li > ins\", \"click.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\t\tvar trgt = $(event.target);\n\t\t\t\t\t\t\tif(trgt.is(\"ins\") && event.pageY - trgt.offset().top < this.data.core.li_height) { this.toggle_node(trgt); }\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.bind(\"mousedown.jstree\", $.proxy(function () { \n\t\t\t\t\t\t\tthis.set_focus(); // This used to be setTimeout(set_focus,0) - why?\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.bind(\"dblclick.jstree\", function (event) { \n\t\t\t\t\t\tvar sel;\n\t\t\t\t\t\tif(document.selection && document.selection.empty) { document.selection.empty(); }\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif(window.getSelection) {\n\t\t\t\t\t\t\t\tsel = window.getSelection();\n\t\t\t\t\t\t\t\ttry { \n\t\t\t\t\t\t\t\t\tsel.removeAllRanges();\n\t\t\t\t\t\t\t\t\tsel.collapse();\n\t\t\t\t\t\t\t\t} catch (err) { }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\tthis.__callback();\n\t\t\t\tthis.load_node(-1, function () { this.loaded(); this.reopen(); });\n\t\t\t},\n\t\t\tdestroy\t: function () { \n\t\t\t\tvar i,\n\t\t\t\t\tn = this.get_index(),\n\t\t\t\t\ts = this._get_settings(),\n\t\t\t\t\t_this = this;\n\n\t\t\t\t$.each(s.plugins, function (i, val) {\n\t\t\t\t\ttry { plugins[val].__destroy.apply(_this); } catch(err) { }\n\t\t\t\t});\n\t\t\t\tthis.__callback();\n\t\t\t\t// set focus to another instance if this one is focused\n\t\t\t\tif(this.is_focused()) { \n\t\t\t\t\tfor(i in instances) { \n\t\t\t\t\t\tif(instances.hasOwnProperty(i) && i != n) { \n\t\t\t\t\t\t\tinstances[i].set_focus(); \n\t\t\t\t\t\t\tbreak; \n\t\t\t\t\t\t} \n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// if no other instance found\n\t\t\t\tif(n === focused_instance) { focused_instance = -1; }\n\t\t\t\t// remove all traces of jstree in the DOM (only the ones set using jstree*) and cleans all events\n\t\t\t\tthis.get_container()\n\t\t\t\t\t.unbind(\".jstree\")\n\t\t\t\t\t.undelegate(\".jstree\")\n\t\t\t\t\t.removeData(\"jstree-instance-id\")\n\t\t\t\t\t.find(\"[class^='jstree']\")\n\t\t\t\t\t\t.andSelf()\n\t\t\t\t\t\t.attr(\"class\", function () { return this.className.replace(/jstree[^ ]*|$/ig,''); });\n\t\t\t\t// remove the actual data\n\t\t\t\tinstances[n] = null;\n\t\t\t\tdelete instances[n];\n\t\t\t},\n\t\t\tsave_opened : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.data.core.to_open = [];\n\t\t\t\tthis.get_container().find(\".jstree-open\").each(function () { \n\t\t\t\t\t_this.data.core.to_open.push(\"#\" + this.id.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/')); \n\t\t\t\t});\n\t\t\t\tthis.__callback(_this.data.core.to_open);\n\t\t\t},\n\t\t\treopen : function (is_callback) {\n\t\t\t\tvar _this = this,\n\t\t\t\t\tdone = true,\n\t\t\t\t\tcurrent = [],\n\t\t\t\t\tremaining = [];\n\t\t\t\tif(!is_callback) { this.data.core.reopen = false; this.data.core.refreshing = true; }\n\t\t\t\tif(this.data.core.to_open.length) {\n\t\t\t\t\t$.each(this.data.core.to_open, function (i, val) {\n\t\t\t\t\t\tif(val == \"#\") { return true; }\n\t\t\t\t\t\tif($(val).length && $(val).is(\".jstree-closed\")) { current.push(val); }\n\t\t\t\t\t\telse { remaining.push(val); }\n\t\t\t\t\t});\n\t\t\t\t\tif(current.length) {\n\t\t\t\t\t\tthis.data.core.to_open = remaining;\n\t\t\t\t\t\t$.each(current, function (i, val) { \n\t\t\t\t\t\t\t_this.open_node(val, function () { _this.reopen(true); }, true); \n\t\t\t\t\t\t});\n\t\t\t\t\t\tdone = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(done) { \n\t\t\t\t\t// TODO: find a more elegant approach to syncronizing returning requests\n\t\t\t\t\tif(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }\n\t\t\t\t\tthis.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);\n\t\t\t\t\tthis.data.core.refreshing = false;\n\t\t\t\t}\n\t\t\t},\n\t\t\trefresh : function (obj) {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.save_opened();\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tif(obj !== -1) { obj.children(\"UL\").remove(); }\n\t\t\t\tthis.load_node(obj, function () { _this.__callback({ \"obj\" : obj}); _this.reopen(); });\n\t\t\t},\n\t\t\t// Dummy function to fire after the first load (so that there is a jstree.loaded event)\n\t\t\tloaded\t: function () { \n\t\t\t\tthis.__callback(); \n\t\t\t},\n\t\t\t// deal with focus\n\t\t\tset_focus\t: function () { \n\t\t\t\tvar f = $.jstree._focused();\n\t\t\t\tif(f && f !== this) {\n\t\t\t\t\tf.get_container().removeClass(\"jstree-focused\"); \n\t\t\t\t}\n\t\t\t\tif(f !== this) {\n\t\t\t\t\tthis.get_container().addClass(\"jstree-focused\"); \n\t\t\t\t\tfocused_instance = this.get_index(); \n\t\t\t\t}\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\tis_focused\t: function () { \n\t\t\t\treturn focused_instance == this.get_index(); \n\t\t\t},\n\n\t\t\t// traverse\n\t\t\t_get_node\t\t: function (obj) { \n\t\t\t\tvar $obj = $(obj, this.get_container()); \n\t\t\t\tif($obj.is(\".jstree\") || obj == -1) { return -1; } \n\t\t\t\t$obj = $obj.closest(\"li\", this.get_container()); \n\t\t\t\treturn $obj.length ? $obj : false; \n\t\t\t},\n\t\t\t_get_next\t\t: function (obj, strict) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().find(\"> ul > li:first-child\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(strict) { return (obj.nextAll(\"li\").size() > 0) ? obj.nextAll(\"li:eq(0)\") : false; }\n\n\t\t\t\tif(obj.hasClass(\"jstree-open\")) { return obj.find(\"li:eq(0)\"); }\n\t\t\t\telse if(obj.nextAll(\"li\").size() > 0) { return obj.nextAll(\"li:eq(0)\"); }\n\t\t\t\telse { return obj.parentsUntil(\".jstree\",\"li\").next(\"li\").eq(0); }\n\t\t\t},\n\t\t\t_get_prev\t\t: function (obj, strict) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().find(\"> ul > li:last-child\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(strict) { return (obj.prevAll(\"li\").length > 0) ? obj.prevAll(\"li:eq(0)\") : false; }\n\n\t\t\t\tif(obj.prev(\"li\").length) {\n\t\t\t\t\tobj = obj.prev(\"li\").eq(0);\n\t\t\t\t\twhile(obj.hasClass(\"jstree-open\")) { obj = obj.children(\"ul:eq(0)\").children(\"li:last\"); }\n\t\t\t\t\treturn obj;\n\t\t\t\t}\n\t\t\t\telse { var o = obj.parentsUntil(\".jstree\",\"li:eq(0)\"); return o.length ? o : false; }\n\t\t\t},\n\t\t\t_get_parent\t\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj == -1 || !obj.length) { return false; }\n\t\t\t\tvar o = obj.parentsUntil(\".jstree\", \"li:eq(0)\");\n\t\t\t\treturn o.length ? o : -1;\n\t\t\t},\n\t\t\t_get_children\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().children(\"ul:eq(0)\").children(\"li\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\treturn obj.children(\"ul:eq(0)\").children(\"li\");\n\t\t\t},\n\t\t\tget_path\t\t: function (obj, id_mode) {\n\t\t\t\tvar p = [],\n\t\t\t\t\t_this = this;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1 || !obj || !obj.length) { return false; }\n\t\t\t\tobj.parentsUntil(\".jstree\", \"li\").each(function () {\n\t\t\t\t\tp.push( id_mode ? this.id : _this.get_text(this) );\n\t\t\t\t});\n\t\t\t\tp.reverse();\n\t\t\t\tp.push( id_mode ? obj.attr(\"id\") : this.get_text(obj) );\n\t\t\t\treturn p;\n\t\t\t},\n\n\t\t\tis_open\t\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-open\"); },\n\t\t\tis_closed\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-closed\"); },\n\t\t\tis_leaf\t\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-leaf\"); },\n\t\t\t// open/close\n\t\t\topen_node\t: function (obj, callback, skip_animation) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(!obj.hasClass(\"jstree-closed\")) { if(callback) { callback.call(); } return false; }\n\t\t\t\tvar s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,\n\t\t\t\t\tt = this;\n\t\t\t\tif(!this._is_loaded(obj)) {\n\t\t\t\t\tobj.children(\"a\").addClass(\"jstree-loading\");\n\t\t\t\t\tthis.load_node(obj, function () { t.open_node(obj, callback, skip_animation); }, callback);\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(s) { obj.children(\"ul\").css(\"display\",\"none\"); }\n\t\t\t\t\tobj.removeClass(\"jstree-closed\").addClass(\"jstree-open\").children(\"a\").removeClass(\"jstree-loading\");\n\t\t\t\t\tif(s) { obj.children(\"ul\").stop(true).slideDown(s, function () { this.style.display = \"\"; }); }\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t\tif(callback) { callback.call(); }\n\t\t\t\t}\n\t\t\t},\n\t\t\tclose_node\t: function (obj, skip_animation) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation;\n\t\t\t\tif(!obj.length || !obj.hasClass(\"jstree-open\")) { return false; }\n\t\t\t\tif(s) { obj.children(\"ul\").attr(\"style\",\"display:block !important\"); }\n\t\t\t\tobj.removeClass(\"jstree-open\").addClass(\"jstree-closed\");\n\t\t\t\tif(s) { obj.children(\"ul\").stop(true).slideUp(s, function () { this.style.display = \"\"; }); }\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\ttoggle_node\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj.hasClass(\"jstree-closed\")) { return this.open_node(obj); }\n\t\t\t\tif(obj.hasClass(\"jstree-open\")) { return this.close_node(obj); }\n\t\t\t},\n\t\t\topen_all\t: function (obj, original_obj) {\n\t\t\t\tobj = obj ? this._get_node(obj) : this.get_container();\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container(); }\n\t\t\t\tif(original_obj) { \n\t\t\t\t\tobj = obj.find(\"li.jstree-closed\");\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\toriginal_obj = obj;\n\t\t\t\t\tif(obj.is(\".jstree-closed\")) { obj = obj.find(\"li.jstree-closed\").andSelf(); }\n\t\t\t\t\telse { obj = obj.find(\"li.jstree-closed\"); }\n\t\t\t\t}\n\t\t\t\tvar _this = this;\n\t\t\t\tobj.each(function () { \n\t\t\t\t\tvar __this = this; \n\t\t\t\t\tif(!_this._is_loaded(this)) { _this.open_node(this, function() { _this.open_all(__this, original_obj); }, true); }\n\t\t\t\t\telse { _this.open_node(this, false, true); }\n\t\t\t\t});\n\t\t\t\t// so that callback is fired AFTER all nodes are open\n\t\t\t\tif(original_obj.find('li.jstree-closed').length === 0) { this.__callback({ \"obj\" : original_obj }); }\n\t\t\t},\n\t\t\tclose_all\t: function (obj) {\n\t\t\t\tvar _this = this;\n\t\t\t\tobj = obj ? this._get_node(obj) : this.get_container();\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container(); }\n\t\t\t\tobj.find(\"li.jstree-open\").andSelf().each(function () { _this.close_node(this); });\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tclean_node\t: function (obj) {\n\t\t\t\tobj = obj && obj != -1 ? $(obj) : this.get_container();\n\t\t\t\tobj = obj.is(\"li\") ? obj.find(\"li\").andSelf() : obj.find(\"li\");\n\t\t\t\tobj.removeClass(\"jstree-last\")\n\t\t\t\t\t.filter(\"li:last-child\").addClass(\"jstree-last\").end()\n\t\t\t\t\t.filter(\":has(li)\")\n\t\t\t\t\t\t.not(\".jstree-open\").removeClass(\"jstree-leaf\").addClass(\"jstree-closed\");\n\t\t\t\tobj.not(\".jstree-open, .jstree-closed\").addClass(\"jstree-leaf\").children(\"ul\").remove();\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\t// rollback\n\t\t\tget_rollback : function () { \n\t\t\t\tthis.__callback();\n\t\t\t\treturn { i : this.get_index(), h : this.get_container().children(\"ul\").clone(true), d : this.data }; \n\t\t\t},\n\t\t\tset_rollback : function (html, data) {\n\t\t\t\tthis.get_container().empty().append(html);\n\t\t\t\tthis.data = data;\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\t// Dummy functions to be overwritten by any datastore plugin included\n\t\t\tload_node\t: function (obj, s_call, e_call) { this.__callback({ \"obj\" : obj }); },\n\t\t\t_is_loaded\t: function (obj) { return true; },\n\n\t\t\t// Basic operations: create\n\t\t\tcreate_node\t: function (obj, position, js, callback, is_loaded) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tposition = typeof position === \"undefined\" ? \"last\" : position;\n\t\t\t\tvar d = $(\"<li>\"),\n\t\t\t\t\ts = this._get_settings().core,\n\t\t\t\t\ttmp;\n\n\t\t\t\tif(obj !== -1 && !obj.length) { return false; }\n\t\t\t\tif(!is_loaded && !this._is_loaded(obj)) { this.load_node(obj, function () { this.create_node(obj, position, js, callback, true); }); return false; }\n\n\t\t\t\tthis.__rollback();\n\n\t\t\t\tif(typeof js === \"string\") { js = { \"data\" : js }; }\n\t\t\t\tif(!js) { js = {}; }\n\t\t\t\tif(js.attr) { d.attr(js.attr); }\n\t\t\t\tif(js.state) { d.addClass(\"jstree-\" + js.state); }\n\t\t\t\tif(!js.data) { js.data = s.strings.new_node; }\n\t\t\t\tif(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }\n\t\t\t\t$.each(js.data, function (i, m) {\n\t\t\t\t\ttmp = $(\"<a>\");\n\t\t\t\t\tif($.isFunction(m)) { m = m.call(this, js); }\n\t\t\t\t\tif(typeof m == \"string\") { tmp.attr('href','#')[ s.html_titles ? \"html\" : \"text\" ](m); }\n\t\t\t\t\telse {\n\t\t\t\t\t\tif(!m.attr) { m.attr = {}; }\n\t\t\t\t\t\tif(!m.attr.href) { m.attr.href = '#'; }\n\t\t\t\t\t\ttmp.attr(m.attr)[ s.html_titles ? \"html\" : \"text\" ](m.title);\n\t\t\t\t\t\tif(m.language) { tmp.addClass(m.language); }\n\t\t\t\t\t}\n\t\t\t\t\ttmp.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\tif(m.icon) { \n\t\t\t\t\t\tif(m.icon.indexOf(\"/\") === -1) { tmp.children(\"ins\").addClass(m.icon); }\n\t\t\t\t\t\telse { tmp.children(\"ins\").css(\"background\",\"url('\" + m.icon + \"') center center no-repeat\"); }\n\t\t\t\t\t}\n\t\t\t\t\td.append(tmp);\n\t\t\t\t});\n\t\t\t\td.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\tif(obj === -1) {\n\t\t\t\t\tobj = this.get_container();\n\t\t\t\t\tif(position === \"before\") { position = \"first\"; }\n\t\t\t\t\tif(position === \"after\") { position = \"last\"; }\n\t\t\t\t}\n\t\t\t\tswitch(position) {\n\t\t\t\t\tcase \"before\": obj.before(d); tmp = this._get_parent(obj); break;\n\t\t\t\t\tcase \"after\" : obj.after(d);  tmp = this._get_parent(obj); break;\n\t\t\t\t\tcase \"inside\":\n\t\t\t\t\tcase \"first\" :\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tobj.children(\"ul\").prepend(d);\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tobj.children(\"ul\").append(d);\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tif(!position) { position = 0; }\n\t\t\t\t\t\ttmp = obj.children(\"ul\").children(\"li\").eq(position);\n\t\t\t\t\t\tif(tmp.length) { tmp.before(d); }\n\t\t\t\t\t\telse { obj.children(\"ul\").append(d); }\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tif(tmp === -1 || tmp.get(0) === this.get_container().get(0)) { tmp = -1; }\n\t\t\t\tthis.clean_node(tmp);\n\t\t\t\tthis.__callback({ \"obj\" : d, \"parent\" : tmp });\n\t\t\t\tif(callback) { callback.call(this, d); }\n\t\t\t\treturn d;\n\t\t\t},\n\t\t\t// Basic operations: rename (deal with text)\n\t\t\tget_text\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tvar s = this._get_settings().core.html_titles;\n\t\t\t\tobj = obj.children(\"a:eq(0)\");\n\t\t\t\tif(s) {\n\t\t\t\t\tobj = obj.clone();\n\t\t\t\t\tobj.children(\"INS\").remove();\n\t\t\t\t\treturn obj.html();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\treturn obj.nodeValue;\n\t\t\t\t}\n\t\t\t},\n\t\t\tset_text\t: function (obj, val) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tobj = obj.children(\"a:eq(0)\");\n\t\t\t\tif(this._get_settings().core.html_titles) {\n\t\t\t\t\tvar tmp = obj.children(\"INS\").clone();\n\t\t\t\t\tobj.html(val).prepend(tmp);\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val });\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val });\n\t\t\t\t\treturn (obj.nodeValue = val);\n\t\t\t\t}\n\t\t\t},\n\t\t\trename_node : function (obj, val) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.__rollback();\n\t\t\t\tif(obj && obj.length && this.set_text.apply(this, Array.prototype.slice.call(arguments))) { this.__callback({ \"obj\" : obj, \"name\" : val }); }\n\t\t\t},\n\t\t\t// Basic operations: deleting nodes\n\t\t\tdelete_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar p = this._get_parent(obj), prev = this._get_prev(obj);\n\t\t\t\tobj = obj.remove();\n\t\t\t\tif(p !== -1 && p.find(\"> ul > li\").length === 0) {\n\t\t\t\t\tp.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\");\n\t\t\t\t}\n\t\t\t\tthis.clean_node(p);\n\t\t\t\tthis.__callback({ \"obj\" : obj, \"prev\" : prev });\n\t\t\t\treturn obj;\n\t\t\t},\n\t\t\tprepare_move : function (o, r, pos, cb, is_cb) {\n\t\t\t\tvar p = {};\n\n\t\t\t\tp.ot = $.jstree._reference(p.o) || this;\n\t\t\t\tp.o = p.ot._get_node(o);\n\t\t\t\tp.r = r === - 1 ? -1 : this._get_node(r);\n\t\t\t\tp.p = (typeof p === \"undefined\") ? \"last\" : pos; // TODO: move to a setting\n\t\t\t\tif(!is_cb && prepared_move.o && prepared_move.o[0] === p.o[0] && prepared_move.r[0] === p.r[0] && prepared_move.p === p.p) {\n\t\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\t\tif(cb) { cb.call(this, prepared_move); }\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tp.ot = $.jstree._reference(p.o) || this;\n\t\t\t\tp.rt = r === -1 ? p.ot : $.jstree._reference(p.r) || this;\n\t\t\t\tif(p.r === -1) {\n\t\t\t\t\tp.cr = -1;\n\t\t\t\t\tswitch(p.p) {\n\t\t\t\t\t\tcase \"first\":\n\t\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\t\tp.cp = 0; \n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\t\tp.cp = p.rt.get_container().find(\" > ul > li\").length; \n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\tp.cp = p.p;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(!/^(before|after)$/.test(p.p) && !this._is_loaded(p.r)) {\n\t\t\t\t\t\treturn this.load_node(p.r, function () { this.prepare_move(o, r, pos, cb, true); });\n\t\t\t\t\t}\n\t\t\t\t\tswitch(p.p) {\n\t\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\t\tp.cp = p.r.index();\n\t\t\t\t\t\t\tp.cr = p.rt._get_parent(p.r);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\t\tp.cp = p.r.index() + 1;\n\t\t\t\t\t\t\tp.cr = p.rt._get_parent(p.r);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\tcase \"first\":\n\t\t\t\t\t\t\tp.cp = 0;\n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\t\tp.cp = p.r.find(\" > ul > li\").length; \n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault: \n\t\t\t\t\t\t\tp.cp = p.p;\n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tp.np = p.cr == -1 ? p.rt.get_container() : p.cr;\n\t\t\t\tp.op = p.ot._get_parent(p.o);\n\t\t\t\tp.or = p.np.find(\" > ul > li:nth-child(\" + (p.cp + 1) + \")\");\n\n\t\t\t\tprepared_move = p;\n\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\tif(cb) { cb.call(this, prepared_move); }\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tvar obj = prepared_move, ret = true;\n\t\t\t\tif(obj.or[0] === obj.o[0]) { return false; }\n\t\t\t\tobj.o.each(function () { \n\t\t\t\t\tif(obj.r.parentsUntil(\".jstree\").andSelf().filter(\"li\").index(this) !== -1) { ret = false; return false; }\n\t\t\t\t});\n\t\t\t\treturn ret;\n\t\t\t},\n\t\t\tmove_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {\n\t\t\t\tif(!is_prepared) { \n\t\t\t\t\treturn this.prepare_move(obj, ref, position, function (p) {\n\t\t\t\t\t\tthis.move_node(p, false, false, is_copy, true, skip_check);\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tif(!skip_check && !this.check_move()) { return false; }\n\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar o = false;\n\t\t\t\tif(is_copy) {\n\t\t\t\t\to = obj.o.clone();\n\t\t\t\t\to.find(\"*[id]\").andSelf().each(function () {\n\t\t\t\t\t\tif(this.id) { this.id = \"copy_\" + this.id; }\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\telse { o = obj.o; }\n\n\t\t\t\tif(obj.or.length) { obj.or.before(o); }\n\t\t\t\telse { \n\t\t\t\t\tif(!obj.np.children(\"ul\").length) { $(\"<ul>\").appendTo(obj.np); }\n\t\t\t\t\tobj.np.children(\"ul:eq(0)\").append(o); \n\t\t\t\t}\n\n\t\t\t\ttry { \n\t\t\t\t\tobj.ot.clean_node(obj.op);\n\t\t\t\t\tobj.rt.clean_node(obj.np);\n\t\t\t\t\tif(!obj.op.find(\"> ul > li\").length) {\n\t\t\t\t\t\tobj.op.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\").children(\"ul\").remove();\n\t\t\t\t\t}\n\t\t\t\t} catch (e) { }\n\n\t\t\t\tif(is_copy) { \n\t\t\t\t\tprepared_move.cy = true;\n\t\t\t\t\tprepared_move.oc = o; \n\t\t\t\t}\n\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\treturn prepared_move;\n\t\t\t},\n\t\t\t_get_move : function () { return prepared_move; }\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree ui plugin 1.0\n * This plugins handles selecting/deselecting/hovering/dehovering nodes\n */\n(function ($) {\n\t$.jstree.plugin(\"ui\", {\n\t\t__init : function () { \n\t\t\tthis.data.ui.selected = $(); \n\t\t\tthis.data.ui.last_selected = false; \n\t\t\tthis.data.ui.hovered = null;\n\t\t\tthis.data.ui.to_select = this.get_settings().ui.initially_select;\n\n\t\t\tthis.get_container()\n\t\t\t\t.delegate(\"a\", \"click.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\tthis.select_node(event.currentTarget, true, event);\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseenter.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tthis.hover_node(event.target);\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseleave.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tthis.dehover_node(event.target);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"reopen.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.reselect();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"get_rollback.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.dehover_node();\n\t\t\t\t\t\tthis.save_selected();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"set_rollback.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.reselect();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"close_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tvar s = this._get_settings().ui,\n\t\t\t\t\t\t\tobj = this._get_node(data.rslt.obj),\n\t\t\t\t\t\t\tclk = (obj && obj.length) ? obj.children(\"ul\").find(\".jstree-clicked\") : $(),\n\t\t\t\t\t\t\t_this = this;\n\t\t\t\t\t\tif(s.selected_parent_close === false || !clk.length) { return; }\n\t\t\t\t\t\tclk.each(function () { \n\t\t\t\t\t\t\t_this.deselect_node(this);\n\t\t\t\t\t\t\tif(s.selected_parent_close === \"select_parent\") { _this.select_node(obj); }\n\t\t\t\t\t\t});\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"delete_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tvar s = this._get_settings().ui.select_prev_on_delete,\n\t\t\t\t\t\t\tobj = this._get_node(data.rslt.obj),\n\t\t\t\t\t\t\tclk = (obj && obj.length) ? obj.find(\".jstree-clicked\") : [],\n\t\t\t\t\t\t\t_this = this;\n\t\t\t\t\t\tclk.each(function () { _this.deselect_node(this); });\n\t\t\t\t\t\tif(s && clk.length) { this.select_node(data.rslt.prev); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tif(data.rslt.cy) { \n\t\t\t\t\t\t\tdata.rslt.oc.find(\".jstree-clicked\").removeClass(\"jstree-clicked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tselect_limit : -1, // 0, 1, 2 ... or -1 for unlimited\n\t\t\tselect_multiple_modifier : \"ctrl\", // on, or ctrl, shift, alt\n\t\t\tselected_parent_close : \"select_parent\", // false, \"deselect\", \"select_parent\"\n\t\t\tselect_prev_on_delete : true,\n\t\t\tdisable_selecting_children : false,\n\t\t\tinitially_select : []\n\t\t},\n\t\t_fn : { \n\t\t\t_get_node : function (obj, allow_multiple) {\n\t\t\t\tif(typeof obj === \"undefined\" || obj === null) { return allow_multiple ? this.data.ui.selected : this.data.ui.last_selected; }\n\t\t\t\tvar $obj = $(obj, this.get_container()); \n\t\t\t\tif($obj.is(\".jstree\") || obj == -1) { return -1; } \n\t\t\t\t$obj = $obj.closest(\"li\", this.get_container()); \n\t\t\t\treturn $obj.length ? $obj : false; \n\t\t\t},\n\t\t\tsave_selected : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.data.ui.to_select = [];\n\t\t\t\tthis.data.ui.selected.each(function () { _this.data.ui.to_select.push(\"#\" + this.id.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/')); });\n\t\t\t\tthis.__callback(this.data.ui.to_select);\n\t\t\t},\n\t\t\treselect : function () {\n\t\t\t\tvar _this = this,\n\t\t\t\t\ts = this.data.ui.to_select;\n\t\t\t\ts = $.map($.makeArray(s), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t\t\tthis.deselect_all();\n\t\t\t\t$.each(s, function (i, val) { if(val && val !== \"#\") { _this.select_node(val); } });\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\trefresh : function (obj) {\n\t\t\t\tthis.save_selected();\n\t\t\t\treturn this.__call_old();\n\t\t\t},\n\t\t\thover_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\t//if(this.data.ui.hovered && obj.get(0) === this.data.ui.hovered.get(0)) { return; }\n\t\t\t\tif(!obj.hasClass(\"jstree-hovered\")) { this.dehover_node(); }\n\t\t\t\tthis.data.ui.hovered = obj.children(\"a\").addClass(\"jstree-hovered\").parent();\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tdehover_node : function () {\n\t\t\t\tvar obj = this.data.ui.hovered, p;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tp = obj.children(\"a\").removeClass(\"jstree-hovered\").parent();\n\t\t\t\tif(this.data.ui.hovered[0] === p[0]) { this.data.ui.hovered = null; }\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tselect_node : function (obj, check, e) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj == -1 || !obj || !obj.length) { return false; }\n\t\t\t\tvar s = this._get_settings().ui,\n\t\t\t\t\tis_multiple = (s.select_multiple_modifier == \"on\" || (s.select_multiple_modifier !== false && e && e[s.select_multiple_modifier + \"Key\"])),\n\t\t\t\t\tis_selected = this.is_selected(obj),\n\t\t\t\t\tproceed = true;\n\t\t\t\tif(check) {\n\t\t\t\t\tif(s.disable_selecting_children && is_multiple && obj.parents(\"li\", this.get_container()).children(\".jstree-clicked\").length) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\tproceed = false;\n\t\t\t\t\tswitch(!0) {\n\t\t\t\t\t\tcase (is_selected && !is_multiple): \n\t\t\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t\t\tis_selected = false;\n\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (!is_selected && !is_multiple): \n\t\t\t\t\t\t\tif(s.select_limit == -1 || s.select_limit > 0) {\n\t\t\t\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (is_selected && is_multiple): \n\t\t\t\t\t\t\tthis.deselect_node(obj);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (!is_selected && is_multiple): \n\t\t\t\t\t\t\tif(s.select_limit == -1 || this.data.ui.selected.length + 1 <= s.select_limit) { \n\t\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(proceed && !is_selected) {\n\t\t\t\t\tobj.children(\"a\").addClass(\"jstree-clicked\");\n\t\t\t\t\tthis.data.ui.selected = this.data.ui.selected.add(obj);\n\t\t\t\t\tthis.data.ui.last_selected = obj;\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeselect_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(this.is_selected(obj)) {\n\t\t\t\t\tobj.children(\"a\").removeClass(\"jstree-clicked\");\n\t\t\t\t\tthis.data.ui.selected = this.data.ui.selected.not(obj);\n\t\t\t\t\tif(this.data.ui.last_selected.get(0) === obj.get(0)) { this.data.ui.last_selected = this.data.ui.selected.eq(0); }\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t}\n\t\t\t},\n\t\t\ttoggle_select : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(this.is_selected(obj)) { this.deselect_node(obj); }\n\t\t\t\telse { this.select_node(obj); }\n\t\t\t},\n\t\t\tis_selected : function (obj) { return this.data.ui.selected.index(this._get_node(obj)) >= 0; },\n\t\t\tget_selected : function (context) { \n\t\t\t\treturn context ? $(context).find(\".jstree-clicked\").parent() : this.data.ui.selected; \n\t\t\t},\n\t\t\tdeselect_all : function (context) {\n\t\t\t\tif(context) { $(context).find(\".jstree-clicked\").removeClass(\"jstree-clicked\"); } \n\t\t\t\telse { this.get_container().find(\".jstree-clicked\").removeClass(\"jstree-clicked\"); }\n\t\t\t\tthis.data.ui.selected = $([]);\n\t\t\t\tthis.data.ui.last_selected = false;\n\t\t\t\tthis.__callback();\n\t\t\t}\n\t\t}\n\t});\n\t// include the selection plugin by default\n\t$.jstree.defaults.plugins.push(\"ui\");\n})(jQuery);\n//*/\n\n/* \n * jsTree CRRM plugin 1.0\n * Handles creating/renaming/removing/moving nodes by user interaction.\n */\n(function ($) {\n\t$.jstree.plugin(\"crrm\", { \n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\tif(this._get_settings().crrm.move.open_onmove) {\n\t\t\t\t\t\tvar t = this;\n\t\t\t\t\t\tdata.rslt.np.parentsUntil(\".jstree\").andSelf().filter(\".jstree-closed\").each(function () {\n\t\t\t\t\t\t\tt.open_node(this, false, true);\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tinput_width_limit : 200,\n\t\t\tmove : {\n\t\t\t\talways_copy\t\t\t: false, // false, true or \"multitree\"\n\t\t\t\topen_onmove\t\t\t: true,\n\t\t\t\tdefault_position\t: \"last\",\n\t\t\t\tcheck_move\t\t\t: function (m) { return true; }\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\t_show_input : function (obj, callback) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar rtl = this._get_settings().core.rtl,\n\t\t\t\t\tw = this._get_settings().crrm.input_width_limit,\n\t\t\t\t\tw1 = obj.children(\"ins\").width(),\n\t\t\t\t\tw2 = obj.find(\"> a:visible > ins\").width() * obj.find(\"> a:visible > ins\").length,\n\t\t\t\t\tt = this.get_text(obj),\n\t\t\t\t\th1 = $(\"<div>\", { css : { \"position\" : \"absolute\", \"top\" : \"-200px\", \"left\" : (rtl ? \"0px\" : \"-1000px\"), \"visibility\" : \"hidden\" } }).appendTo(\"body\"),\n\t\t\t\t\th2 = obj.css(\"position\",\"relative\").append(\n\t\t\t\t\t$(\"<input>\", { \n\t\t\t\t\t\t\"value\" : t,\n\t\t\t\t\t\t// \"size\" : t.length,\n\t\t\t\t\t\t\"css\" : {\n\t\t\t\t\t\t\t\"padding\" : \"0\",\n\t\t\t\t\t\t\t\"border\" : \"1px solid silver\",\n\t\t\t\t\t\t\t\"position\" : \"absolute\",\n\t\t\t\t\t\t\t\"left\"  : (rtl ? \"auto\" : (w1 + w2 + 4) + \"px\"),\n\t\t\t\t\t\t\t\"right\" : (rtl ? (w1 + w2 + 4) + \"px\" : \"auto\"),\n\t\t\t\t\t\t\t\"top\" : \"0px\",\n\t\t\t\t\t\t\t\"height\" : (this.data.core.li_height - 2) + \"px\",\n\t\t\t\t\t\t\t\"lineHeight\" : (this.data.core.li_height - 2) + \"px\",\n\t\t\t\t\t\t\t\"width\" : \"150px\" // will be set a bit further down\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"blur\" : $.proxy(function () {\n\t\t\t\t\t\t\tvar i = obj.children(\"input\"),\n\t\t\t\t\t\t\t\tv = i.val();\n\t\t\t\t\t\t\tif(v === \"\") { v = t; }\n\t\t\t\t\t\t\ti.remove(); // rollback purposes\n\t\t\t\t\t\t\tthis.set_text(obj,t); // rollback purposes\n\t\t\t\t\t\t\tthis.rename_node(obj, v);\n\t\t\t\t\t\t\tcallback.call(this, obj, v, t);\n\t\t\t\t\t\t\tobj.css(\"position\",\"\");\n\t\t\t\t\t\t}, this),\n\t\t\t\t\t\t\"keyup\" : function (event) {\n\t\t\t\t\t\t\tvar key = event.keyCode || event.which;\n\t\t\t\t\t\t\tif(key == 27) { this.value = t; this.blur(); return; }\n\t\t\t\t\t\t\telse if(key == 13) { this.blur(); return; }\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\th2.width(Math.min(h1.text(\"pW\" + this.value).width(),w));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t})\n\t\t\t\t).children(\"input\"); \n\t\t\t\tthis.set_text(obj, \"\");\n\t\t\t\th1.css({\n\t\t\t\t\t\tfontFamily\t\t: h2.css('fontFamily')\t\t|| '',\n\t\t\t\t\t\tfontSize\t\t: h2.css('fontSize')\t\t|| '',\n\t\t\t\t\t\tfontWeight\t\t: h2.css('fontWeight')\t\t|| '',\n\t\t\t\t\t\tfontStyle\t\t: h2.css('fontStyle')\t\t|| '',\n\t\t\t\t\t\tfontStretch\t\t: h2.css('fontStretch')\t\t|| '',\n\t\t\t\t\t\tfontVariant\t\t: h2.css('fontVariant')\t\t|| '',\n\t\t\t\t\t\tletterSpacing\t: h2.css('letterSpacing')\t|| '',\n\t\t\t\t\t\twordSpacing\t\t: h2.css('wordSpacing')\t\t|| ''\n\t\t\t\t});\n\t\t\t\th2.width(Math.min(h1.text(\"pW\" + h2[0].value).width(),w))[0].select();\n\t\t\t},\n\t\t\trename : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar f = this.__callback;\n\t\t\t\tthis._show_input(obj, function (obj, new_name, old_name) { \n\t\t\t\t\tf.call(this, { \"obj\" : obj, \"new_name\" : new_name, \"old_name\" : old_name });\n\t\t\t\t});\n\t\t\t},\n\t\t\tcreate : function (obj, position, js, callback, skip_rename) {\n\t\t\t\tvar t, _this = this;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tthis.__rollback();\n\t\t\t\tt = this.create_node(obj, position, js, function (t) {\n\t\t\t\t\tvar p = this._get_parent(t),\n\t\t\t\t\t\tpos = $(t).index();\n\t\t\t\t\tif(callback) { callback.call(this, t); }\n\t\t\t\t\tif(p.length && p.hasClass(\"jstree-closed\")) { this.open_node(p, false, true); }\n\t\t\t\t\tif(!skip_rename) { \n\t\t\t\t\t\tthis._show_input(t, function (obj, new_name, old_name) { \n\t\t\t\t\t\t\t_this.__callback({ \"obj\" : obj, \"name\" : new_name, \"parent\" : p, \"position\" : pos });\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\telse { _this.__callback({ \"obj\" : t, \"name\" : this.get_text(t), \"parent\" : p, \"position\" : pos }); }\n\t\t\t\t});\n\t\t\t\treturn t;\n\t\t\t},\n\t\t\tremove : function (obj) {\n\t\t\t\tobj = this._get_node(obj, true);\n\t\t\t\tthis.__rollback();\n\t\t\t\tthis.delete_node(obj);\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar s = this._get_settings().crrm.move;\n\t\t\t\tif(!s.check_move.call(this, this._get_move())) { return false; }\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tmove_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {\n\t\t\t\tvar s = this._get_settings().crrm.move;\n\t\t\t\tif(!is_prepared) { \n\t\t\t\t\tif(!position) { position = s.default_position; }\n\t\t\t\t\tif(position === \"inside\" && !s.default_position.match(/^(before|after)$/)) { position = s.default_position; }\n\t\t\t\t\treturn this.__call_old(true, obj, ref, position, is_copy, false, skip_check);\n\t\t\t\t}\n\t\t\t\t// if the move is already prepared\n\t\t\t\tif(s.always_copy === true || (s.always_copy === \"multitree\" && obj.rt.get_index() !== obj.ot.get_index() )) {\n\t\t\t\t\tis_copy = true;\n\t\t\t\t}\n\t\t\t\tthis.__call_old(true, obj, ref, position, is_copy, true, skip_check);\n\t\t\t},\n\n\t\t\tcut : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tthis.data.crrm.ct_nodes = obj;\n\t\t\t},\n\t\t\tcopy : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tthis.data.crrm.cp_nodes = obj;\n\t\t\t},\n\t\t\tpaste : function (obj) { \n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tif(!this.data.crrm.ct_nodes && !this.data.crrm.cp_nodes) { return false; }\n\t\t\t\tif(this.data.crrm.ct_nodes) { this.move_node(this.data.crrm.ct_nodes, obj); }\n\t\t\t\tif(this.data.crrm.cp_nodes) { this.move_node(this.data.crrm.cp_nodes, obj, false, true); }\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t}\n\t\t}\n\t});\n\t// include the crr plugin by default\n\t$.jstree.defaults.plugins.push(\"crrm\");\n})(jQuery);\n\n/* \n * jsTree themes plugin 1.0\n * Handles loading and setting themes, as well as detecting path to themes, etc.\n */\n(function ($) {\n\tvar themes_loaded = [];\n\t// this variable stores the path to the themes folder - if left as false - it will be autodetected\n\t$.jstree._themes = false;\n\t$.jstree.plugin(\"themes\", {\n\t\t__init : function () { \n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"init.jstree\", $.proxy(function () {\n\t\t\t\t\t\tvar s = this._get_settings().themes;\n\t\t\t\t\t\tthis.data.themes.dots = s.dots; \n\t\t\t\t\t\tthis.data.themes.icons = s.icons; \n\t\t\t\t\t\t//alert(s.dots);\n\t\t\t\t\t\tthis.set_theme(s.theme, s.url);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree\", $.proxy(function () {\n\t\t\t\t\t\t// bound here too, as simple HTML tree's won't honor dots & icons otherwise\n\t\t\t\t\t\tif(!this.data.themes.dots) { this.hide_dots(); }\n\t\t\t\t\t\telse { this.show_dots(); }\n\t\t\t\t\t\tif(!this.data.themes.icons) { this.hide_icons(); }\n\t\t\t\t\t\telse { this.show_icons(); }\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : { \n\t\t\ttheme : \"default\", \n\t\t\turl : false,\n\t\t\tdots : true,\n\t\t\ticons : true\n\t\t},\n\t\t_fn : {\n\t\t\tset_theme : function (theme_name, theme_url) {\n\t\t\t\tif(!theme_name) { return false; }\n\t\t\t\tif(!theme_url) { theme_url = $.jstree._themes + theme_name + '/style.css'; }\n\t\t\t\tif($.inArray(theme_url, themes_loaded) == -1) {\n\t\t\t\t\t$.vakata.css.add_sheet({ \"url\" : theme_url, \"rel\" : \"jstree\" });\n\t\t\t\t\tthemes_loaded.push(theme_url);\n\t\t\t\t}\n\t\t\t\tif(this.data.themes.theme != theme_name) {\n\t\t\t\t\tthis.get_container().removeClass('jstree-' + this.data.themes.theme);\n\t\t\t\t\tthis.data.themes.theme = theme_name;\n\t\t\t\t}\n\t\t\t\tthis.get_container().addClass('jstree-' + theme_name);\n\t\t\t\tif(!this.data.themes.dots) { this.hide_dots(); }\n\t\t\t\telse { this.show_dots(); }\n\t\t\t\tif(!this.data.themes.icons) { this.hide_icons(); }\n\t\t\t\telse { this.show_icons(); }\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\tget_theme\t: function () { return this.data.themes.theme; },\n\n\t\t\tshow_dots\t: function () { this.data.themes.dots = true; this.get_container().children(\"ul\").removeClass(\"jstree-no-dots\"); },\n\t\t\thide_dots\t: function () { this.data.themes.dots = false; this.get_container().children(\"ul\").addClass(\"jstree-no-dots\"); },\n\t\t\ttoggle_dots\t: function () { if(this.data.themes.dots) { this.hide_dots(); } else { this.show_dots(); } },\n\n\t\t\tshow_icons\t: function () { this.data.themes.icons = true; this.get_container().children(\"ul\").removeClass(\"jstree-no-icons\"); },\n\t\t\thide_icons\t: function () { this.data.themes.icons = false; this.get_container().children(\"ul\").addClass(\"jstree-no-icons\"); },\n\t\t\ttoggle_icons: function () { if(this.data.themes.icons) { this.hide_icons(); } else { this.show_icons(); } }\n\t\t}\n\t});\n\t// autodetect themes path\n\t$(function () {\n\t\tif($.jstree._themes === false) {\n\t\t\t$(\"script\").each(function () { \n\t\t\t\tif(this.src.toString().match(/jquery\\.jstree[^\\/]*?\\.js(\\?.*)?$/)) { \n\t\t\t\t\t$.jstree._themes = this.src.toString().replace(/jquery\\.jstree[^\\/]*?\\.js(\\?.*)?$/, \"\") + 'themes/'; \n\t\t\t\t\treturn false; \n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t\tif($.jstree._themes === false) { $.jstree._themes = \"themes/\"; }\n\t});\n\t// include the themes plugin by default\n\t$.jstree.defaults.plugins.push(\"themes\");\n})(jQuery);\n//*/\n\n/*\n * jsTree hotkeys plugin 1.0\n * Enables keyboard navigation for all tree instances\n * Depends on the jstree ui & jquery hotkeys plugins\n */\n(function ($) {\n\tvar bound = [];\n\tfunction exec(i, event) {\n\t\tvar f = $.jstree._focused(), tmp;\n\t\tif(f && f.data && f.data.hotkeys && f.data.hotkeys.enabled) { \n\t\t\ttmp = f._get_settings().hotkeys[i];\n\t\t\tif(tmp) { return tmp.call(f, event); }\n\t\t}\n\t}\n\t$.jstree.plugin(\"hotkeys\", {\n\t\t__init : function () {\n\t\t\tif(typeof $.hotkeys === \"undefined\") { throw \"jsTree hotkeys: jQuery hotkeys plugin not included.\"; }\n\t\t\tif(!this.data.ui) { throw \"jsTree hotkeys: jsTree UI plugin not included.\"; }\n\t\t\t$.each(this._get_settings().hotkeys, function (i, val) {\n\t\t\t\tif($.inArray(i, bound) == -1) {\n\t\t\t\t\t$(document).bind(\"keydown\", i, function (event) { return exec(i, event); });\n\t\t\t\t\tbound.push(i);\n\t\t\t\t}\n\t\t\t});\n\t\t\tthis.enable_hotkeys();\n\t\t},\n\t\tdefaults : {\n\t\t\t\"up\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected || -1;\n\t\t\t\tthis.hover_node(this._get_prev(o));\n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"down\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected || -1;\n\t\t\t\tthis.hover_node(this._get_next(o));\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"left\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected;\n\t\t\t\tif(o) {\n\t\t\t\t\tif(o.hasClass(\"jstree-open\")) { this.close_node(o); }\n\t\t\t\t\telse { this.hover_node(this._get_prev(o)); }\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"right\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected;\n\t\t\t\tif(o && o.length) {\n\t\t\t\t\tif(o.hasClass(\"jstree-closed\")) { this.open_node(o); }\n\t\t\t\t\telse { this.hover_node(this._get_next(o)); }\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"space\" : function () { \n\t\t\t\tif(this.data.ui.hovered) { this.data.ui.hovered.children(\"a:eq(0)\").click(); } \n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"ctrl+space\" : function (event) { \n\t\t\t\tevent.type = \"click\";\n\t\t\t\tif(this.data.ui.hovered) { this.data.ui.hovered.children(\"a:eq(0)\").trigger(event); } \n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"f2\" : function () { this.rename(this.data.ui.hovered || this.data.ui.last_selected); },\n\t\t\t\"del\" : function () { this.remove(this.data.ui.hovered || this._get_node(null)); }\n\t\t},\n\t\t_fn : {\n\t\t\tenable_hotkeys : function () {\n\t\t\t\tthis.data.hotkeys.enabled = true;\n\t\t\t},\n\t\t\tdisable_hotkeys : function () {\n\t\t\t\tthis.data.hotkeys.enabled = false;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree JSON 1.0\n * The JSON data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.jstree.plugin(\"json_data\", {\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\tcorrect_state : true,\n\t\t\tprogressive_render : false\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_json(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tvar s = this._get_settings().json_data, d;\n\t\t\t\tobj = this._get_node(obj); \n\t\t\t\tif(obj && obj !== -1 && s.progressive_render && !obj.is(\".jstree-open, .jstree-leaf\") && obj.children(\"ul\").children(\"li\").length === 0 && obj.data(\"jstree-children\")) {\n\t\t\t\t\td = this._parse_json(obj.data(\"jstree-children\"));\n\t\t\t\t\tif(d) {\n\t\t\t\t\t\tobj.append(d);\n\t\t\t\t\t\t$.removeData(obj, \"jstree-children\");\n\t\t\t\t\t}\n\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn obj == -1 || !obj || !s.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_json : function (obj, s_call, e_call) {\n\t\t\t\tvar s = this.get_settings().json_data, d,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax): throw \"Neither data nor ajax settings supplied.\";\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\td = this._parse_json(s.data);\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty().append(d.children());\n\t\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse { \n\t\t\t\t\t\t\t\tif(s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().json_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj != -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\tvar sf = this.get_settings().json_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d === \"\" || (!$.isArray(d) && !$.isPlainObject(d))) {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\td = this._parse_json(d);\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\tif(obj === -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()); }\n\t\t\t\t\t\t\t\telse { obj.append(d).children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(obj === -1 || !obj) {\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty(); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"json\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\t_parse_json : function (js, is_callback) {\n\t\t\t\tvar d = false, \n\t\t\t\t\tp = this._get_settings(),\n\t\t\t\t\ts = p.json_data,\n\t\t\t\t\tt = p.core.html_titles,\n\t\t\t\t\ttmp, i, j, ul1, ul2;\n\n\t\t\t\tif(!js) { return d; }\n\t\t\t\tif($.isFunction(js)) { \n\t\t\t\t\tjs = js.call(this);\n\t\t\t\t}\n\t\t\t\tif($.isArray(js)) {\n\t\t\t\t\td = $();\n\t\t\t\t\tif(!js.length) { return false; }\n\t\t\t\t\tfor(i = 0, j = js.length; i < j; i++) {\n\t\t\t\t\t\ttmp = this._parse_json(js[i], true);\n\t\t\t\t\t\tif(tmp.length) { d = d.add(tmp); }\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(typeof js == \"string\") { js = { data : js }; }\n\t\t\t\t\tif(!js.data && js.data !== \"\") { return d; }\n\t\t\t\t\td = $(\"<li>\");\n\t\t\t\t\tif(js.attr) { d.attr(js.attr); }\n\t\t\t\t\tif(js.metadata) { d.data(\"jstree\", js.metadata); }\n\t\t\t\t\tif(js.state) { d.addClass(\"jstree-\" + js.state); }\n\t\t\t\t\tif(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }\n\t\t\t\t\t$.each(js.data, function (i, m) {\n\t\t\t\t\t\ttmp = $(\"<a>\");\n\t\t\t\t\t\tif($.isFunction(m)) { m = m.call(this, js); }\n\t\t\t\t\t\tif(typeof m == \"string\") { tmp.attr('href','#')[ t ? \"html\" : \"text\" ](m); }\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif(!m.attr) { m.attr = {}; }\n\t\t\t\t\t\t\tif(!m.attr.href) { m.attr.href = '#'; }\n\t\t\t\t\t\t\ttmp.attr(m.attr)[ t ? \"html\" : \"text\" ](m.title);\n\t\t\t\t\t\t\tif(m.language) { tmp.addClass(m.language); }\n\t\t\t\t\t\t}\n\t\t\t\t\t\ttmp.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\t\tif(!m.icon && js.icon) { m.icon = js.icon; }\n\t\t\t\t\t\tif(m.icon) { \n\t\t\t\t\t\t\tif(m.icon.indexOf(\"/\") === -1) { tmp.children(\"ins\").addClass(m.icon); }\n\t\t\t\t\t\t\telse { tmp.children(\"ins\").css(\"background\",\"url('\" + m.icon + \"') center center no-repeat\"); }\n\t\t\t\t\t\t}\n\t\t\t\t\t\td.append(tmp);\n\t\t\t\t\t});\n\t\t\t\t\td.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\tif(js.children) { \n\t\t\t\t\t\tif(s.progressive_render && js.state !== \"open\") {\n\t\t\t\t\t\t\td.addClass(\"jstree-closed\").data(\"jstree-children\", js.children);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif($.isFunction(js.children)) {\n\t\t\t\t\t\t\t\tjs.children = js.children.call(this, js);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif($.isArray(js.children) && js.children.length) {\n\t\t\t\t\t\t\t\ttmp = this._parse_json(js.children, true);\n\t\t\t\t\t\t\t\tif(tmp.length) {\n\t\t\t\t\t\t\t\t\tul2 = $(\"<ul>\");\n\t\t\t\t\t\t\t\t\tul2.append(tmp);\n\t\t\t\t\t\t\t\t\td.append(ul2);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(!is_callback) {\n\t\t\t\t\tul1 = $(\"<ul>\");\n\t\t\t\t\tul1.append(d);\n\t\t\t\t\td = ul1;\n\t\t\t\t}\n\t\t\t\treturn d;\n\t\t\t},\n\t\t\tget_json : function (obj, li_attr, a_attr, is_callback) {\n\t\t\t\tvar result = [], \n\t\t\t\t\ts = this._get_settings(), \n\t\t\t\t\t_this = this,\n\t\t\t\t\ttmp1, tmp2, li, a, t, lang;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container().find(\"> ul > li\"); }\n\t\t\t\tli_attr = $.isArray(li_attr) ? li_attr : [ \"id\", \"class\" ];\n\t\t\t\tif(!is_callback && this.data.types) { li_attr.push(s.types.type_attr); }\n\t\t\t\ta_attr = $.isArray(a_attr) ? a_attr : [ ];\n\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tli = $(this);\n\t\t\t\t\ttmp1 = { data : [] };\n\t\t\t\t\tif(li_attr.length) { tmp1.attr = { }; }\n\t\t\t\t\t$.each(li_attr, function (i, v) { \n\t\t\t\t\t\ttmp2 = li.attr(v); \n\t\t\t\t\t\tif(tmp2 && tmp2.length && tmp2.replace(/jstree[^ ]*|$/ig,'').length) {\n\t\t\t\t\t\t\ttmp1.attr[v] = tmp2.replace(/jstree[^ ]*|$/ig,''); \n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tif(li.hasClass(\"jstree-open\")) { tmp1.state = \"open\"; }\n\t\t\t\t\tif(li.hasClass(\"jstree-closed\")) { tmp1.state = \"closed\"; }\n\t\t\t\t\ta = li.children(\"a\");\n\t\t\t\t\ta.each(function () {\n\t\t\t\t\t\tt = $(this);\n\t\t\t\t\t\tif(\n\t\t\t\t\t\t\ta_attr.length || \n\t\t\t\t\t\t\t$.inArray(\"languages\", s.plugins) !== -1 || \n\t\t\t\t\t\t\tt.children(\"ins\").get(0).style.backgroundImage.length || \n\t\t\t\t\t\t\t(t.children(\"ins\").get(0).className && t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').length)\n\t\t\t\t\t\t) { \n\t\t\t\t\t\t\tlang = false;\n\t\t\t\t\t\t\tif($.inArray(\"languages\", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {\n\t\t\t\t\t\t\t\t$.each(s.languages, function (l, lv) {\n\t\t\t\t\t\t\t\t\tif(t.hasClass(lv)) {\n\t\t\t\t\t\t\t\t\t\tlang = lv;\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttmp2 = { attr : { }, title : _this.get_text(t, lang) }; \n\t\t\t\t\t\t\t$.each(a_attr, function (k, z) {\n\t\t\t\t\t\t\t\ttmp1.attr[z] = (t.attr(z) || \"\").replace(/jstree[^ ]*|$/ig,'');\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t$.each(s.languages, function (k, z) {\n\t\t\t\t\t\t\t\tif(t.hasClass(z)) { tmp2.language = z; return true; }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tif(t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\").length) {\n\t\t\t\t\t\t\t\ttmp2.icon = t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(t.children(\"ins\").get(0).style.backgroundImage.length) {\n\t\t\t\t\t\t\t\ttmp2.icon = t.children(\"ins\").get(0).style.backgroundImage.replace(\"url(\",\"\").replace(\")\",\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttmp2 = _this.get_text(t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(a.length > 1) { tmp1.data.push(tmp2); }\n\t\t\t\t\t\telse { tmp1.data = tmp2; }\n\t\t\t\t\t});\n\t\t\t\t\tli = li.find(\"> ul > li\");\n\t\t\t\t\tif(li.length) { tmp1.children = _this.get_json(li, li_attr, a_attr, true); }\n\t\t\t\t\tresult.push(tmp1);\n\t\t\t\t});\n\t\t\t\treturn result;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree languages plugin 1.0\n * Adds support for multiple language versions in one tree\n * This basically allows for many titles coexisting in one node, but only one of them being visible at any given time\n * This is useful for maintaining the same structure in many languages (hence the name of the plugin)\n */\n(function ($) {\n\t$.jstree.plugin(\"languages\", {\n\t\t__init : function () { this._load_css();  },\n\t\tdefaults : [],\n\t\t_fn : {\n\t\t\tset_lang : function (i) { \n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\tst = false,\n\t\t\t\t\tselector = \".jstree-\" + this.get_index() + ' a';\n\t\t\t\tif(!$.isArray(langs) || langs.length === 0) { return false; }\n\t\t\t\tif($.inArray(i,langs) == -1) {\n\t\t\t\t\tif(!!langs[i]) { i = langs[i]; }\n\t\t\t\t\telse { return false; }\n\t\t\t\t}\n\t\t\t\tif(i == this.data.languages.current_language) { return true; }\n\t\t\t\tst = $.vakata.css.get_css(selector + \".\" + this.data.languages.current_language, false, this.data.languages.language_css);\n\t\t\t\tif(st !== false) { st.style.display = \"none\"; }\n\t\t\t\tst = $.vakata.css.get_css(selector + \".\" + i, false, this.data.languages.language_css);\n\t\t\t\tif(st !== false) { st.style.display = \"\"; }\n\t\t\t\tthis.data.languages.current_language = i;\n\t\t\t\tthis.__callback(i);\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tget_lang : function () {\n\t\t\t\treturn this.data.languages.current_language;\n\t\t\t},\n\t\t\tget_text : function (obj, lang) {\n\t\t\t\tobj = this._get_node(obj) || this.data.ui.last_selected;\n\t\t\t\tif(!obj.size()) { return false; }\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\ts = this._get_settings().core.html_titles;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tlang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;\n\t\t\t\t\tobj = obj.children(\"a.\" + lang);\n\t\t\t\t}\n\t\t\t\telse { obj = obj.children(\"a:eq(0)\"); }\n\t\t\t\tif(s) {\n\t\t\t\t\tobj = obj.clone();\n\t\t\t\t\tobj.children(\"INS\").remove();\n\t\t\t\t\treturn obj.html();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\treturn obj.nodeValue;\n\t\t\t\t}\n\t\t\t},\n\t\t\tset_text : function (obj, val, lang) {\n\t\t\t\tobj = this._get_node(obj) || this.data.ui.last_selected;\n\t\t\t\tif(!obj.size()) { return false; }\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\ts = this._get_settings().core.html_titles,\n\t\t\t\t\ttmp;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tlang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;\n\t\t\t\t\tobj = obj.children(\"a.\" + lang);\n\t\t\t\t}\n\t\t\t\telse { obj = obj.children(\"a:eq(0)\"); }\n\t\t\t\tif(s) {\n\t\t\t\t\ttmp = obj.children(\"INS\").clone();\n\t\t\t\t\tobj.html(val).prepend(tmp);\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val, \"lang\" : lang });\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val, \"lang\" : lang });\n\t\t\t\t\treturn (obj.nodeValue = val);\n\t\t\t\t}\n\t\t\t},\n\t\t\t_load_css : function () {\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\tstr = \"/* languages css */\",\n\t\t\t\t\tselector = \".jstree-\" + this.get_index() + ' a',\n\t\t\t\t\tln;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tthis.data.languages.current_language = langs[0];\n\t\t\t\t\tfor(ln = 0; ln < langs.length; ln++) {\n\t\t\t\t\t\tstr += selector + \".\" + langs[ln] + \" {\";\n\t\t\t\t\t\tif(langs[ln] != this.data.languages.current_language) { str += \" display:none; \"; }\n\t\t\t\t\t\tstr += \" } \";\n\t\t\t\t\t}\n\t\t\t\t\tthis.data.languages.language_css = $.vakata.css.add_sheet({ 'str' : str });\n\t\t\t\t}\n\t\t\t},\n\t\t\tcreate_node : function (obj, position, js, callback) {\n\t\t\t\tvar t = this.__call_old(true, obj, position, js, function (t) {\n\t\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\t\ta = t.children(\"a\"),\n\t\t\t\t\t\tln;\n\t\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\t\tfor(ln = 0; ln < langs.length; ln++) {\n\t\t\t\t\t\t\tif(!a.is(\".\" + langs[ln])) {\n\t\t\t\t\t\t\t\tt.append(a.eq(0).clone().removeClass(langs.join(\" \")).addClass(langs[ln]));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\ta.not(\".\" + langs.join(\", .\")).remove();\n\t\t\t\t\t}\n\t\t\t\t\tif(callback) { callback.call(this, t); }\n\t\t\t\t});\n\t\t\t\treturn t;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree cookies plugin 1.0\n * Stores the currently opened/selected nodes in a cookie and then restores them\n * Depends on the jquery.cookie plugin\n */\n(function ($) {\n\t$.jstree.plugin(\"cookies\", {\n\t\t__init : function () {\n\t\t\tif(typeof $.cookie === \"undefined\") { throw \"jsTree cookie: jQuery cookie plugin not included.\"; }\n\n\t\t\tvar s = this._get_settings().cookies,\n\t\t\t\ttmp;\n\t\t\tif(!!s.save_opened) {\n\t\t\t\ttmp = $.cookie(s.save_opened);\n\t\t\t\tif(tmp && tmp.length) { this.data.core.to_open = tmp.split(\",\"); }\n\t\t\t}\n\t\t\tif(!!s.save_selected) {\n\t\t\t\ttmp = $.cookie(s.save_selected);\n\t\t\t\tif(tmp && tmp.length && this.data.ui) { this.data.ui.to_select = tmp.split(\",\"); }\n\t\t\t}\n\t\t\tthis.get_container()\n\t\t\t\t.one( ( this.data.ui ? \"reselect\" : \"reopen\" ) + \".jstree\", $.proxy(function () {\n\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t.bind(\"open_node.jstree close_node.jstree select_node.jstree deselect_node.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\t\t\tif(this._get_settings().cookies.auto_save) { this.save_cookie((e.handleObj.namespace + e.handleObj.type).replace(\"jstree\",\"\")); }\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tsave_opened\t\t: \"jstree_open\",\n\t\t\tsave_selected\t: \"jstree_select\",\n\t\t\tauto_save\t\t: true,\n\t\t\tcookie_options\t: {}\n\t\t},\n\t\t_fn : {\n\t\t\tsave_cookie : function (c) {\n\t\t\t\tif(this.data.core.refreshing) { return; }\n\t\t\t\tvar s = this._get_settings().cookies;\n\t\t\t\tif(!c) { // if called manually and not by event\n\t\t\t\t\tif(s.save_opened) {\n\t\t\t\t\t\tthis.save_opened();\n\t\t\t\t\t\t$.cookie(s.save_opened, this.data.core.to_open.join(\",\"), s.cookie_options);\n\t\t\t\t\t}\n\t\t\t\t\tif(s.save_selected && this.data.ui) {\n\t\t\t\t\t\tthis.save_selected();\n\t\t\t\t\t\t$.cookie(s.save_selected, this.data.ui.to_select.join(\",\"), s.cookie_options);\n\t\t\t\t\t}\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tswitch(c) {\n\t\t\t\t\tcase \"open_node\":\n\t\t\t\t\tcase \"close_node\":\n\t\t\t\t\t\tif(!!s.save_opened) { \n\t\t\t\t\t\t\tthis.save_opened(); \n\t\t\t\t\t\t\t$.cookie(s.save_opened, this.data.core.to_open.join(\",\"), s.cookie_options); \n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"select_node\":\n\t\t\t\t\tcase \"deselect_node\":\n\t\t\t\t\t\tif(!!s.save_selected && this.data.ui) { \n\t\t\t\t\t\t\tthis.save_selected(); \n\t\t\t\t\t\t\t$.cookie(s.save_selected, this.data.ui.to_select.join(\",\"), s.cookie_options); \n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\t// include cookies by default\n\t$.jstree.defaults.plugins.push(\"cookies\");\n})(jQuery);\n//*/\n\n/*\n * jsTree sort plugin 1.0\n * Sorts items alphabetically (or using any other function)\n */\n(function ($) {\n\t$.jstree.plugin(\"sort\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"load_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tvar obj = this._get_node(data.rslt.obj);\n\t\t\t\t\t\tobj = obj === -1 ? this.get_container().children(\"ul\") : obj.children(\"ul\");\n\t\t\t\t\t\tthis.sort(obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"rename_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis.sort(data.rslt.obj.parent());\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tvar m = data.rslt.np == -1 ? this.get_container() : data.rslt.np;\n\t\t\t\t\t\tthis.sort(m.children(\"ul\"));\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : function (a, b) { return this.get_text(a) > this.get_text(b) ? 1 : -1; },\n\t\t_fn : {\n\t\t\tsort : function (obj) {\n\t\t\t\tvar s = this._get_settings().sort,\n\t\t\t\t\tt = this;\n\t\t\t\tobj.append($.makeArray(obj.children(\"li\")).sort($.proxy(s, t)));\n\t\t\t\tobj.find(\"> li > ul\").each(function() { t.sort($(this)); });\n\t\t\t\tthis.clean_node(obj);\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree DND plugin 1.0\n * Drag and drop plugin for moving/copying nodes\n */\n(function ($) {\n\tvar o = false,\n\t\tr = false,\n\t\tm = false,\n\t\tsli = false,\n\t\tsti = false,\n\t\tdir1 = false,\n\t\tdir2 = false;\n\t$.vakata.dnd = {\n\t\tis_down : false,\n\t\tis_drag : false,\n\t\thelper : false,\n\t\tscroll_spd : 10,\n\t\tinit_x : 0,\n\t\tinit_y : 0,\n\t\tthreshold : 5,\n\t\tuser_data : {},\n\n\t\tdrag_start : function (e, data, html) { \n\t\t\tif($.vakata.dnd.is_drag) { $.vakata.drag_stop({}); }\n\t\t\ttry {\n\t\t\t\te.currentTarget.unselectable = \"on\";\n\t\t\t\te.currentTarget.onselectstart = function() { return false; };\n\t\t\t\tif(e.currentTarget.style) { e.currentTarget.style.MozUserSelect = \"none\"; }\n\t\t\t} catch(err) { }\n\t\t\t$.vakata.dnd.init_x = e.pageX;\n\t\t\t$.vakata.dnd.init_y = e.pageY;\n\t\t\t$.vakata.dnd.user_data = data;\n\t\t\t$.vakata.dnd.is_down = true;\n\t\t\t$.vakata.dnd.helper = $(\"<div id='vakata-dragged'>\").html(html).css(\"opacity\", \"0.75\");\n\t\t\t$(document).bind(\"mousemove\", $.vakata.dnd.drag);\n\t\t\t$(document).bind(\"mouseup\", $.vakata.dnd.drag_stop);\n\t\t\treturn false;\n\t\t},\n\t\tdrag : function (e) { \n\t\t\tif(!$.vakata.dnd.is_down) { return; }\n\t\t\tif(!$.vakata.dnd.is_drag) {\n\t\t\t\tif(Math.abs(e.pageX - $.vakata.dnd.init_x) > 5 || Math.abs(e.pageY - $.vakata.dnd.init_y) > 5) { \n\t\t\t\t\t$.vakata.dnd.helper.appendTo(\"body\");\n\t\t\t\t\t$.vakata.dnd.is_drag = true;\n\t\t\t\t\t$(document).triggerHandler(\"drag_start.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t\t\t}\n\t\t\t\telse { return; }\n\t\t\t}\n\n\t\t\t// maybe use a scrolling parent element instead of document?\n\t\t\tif(e.type === \"mousemove\") { // thought of adding scroll in order to move the helper, but mouse poisition is n/a\n\t\t\t\tvar d = $(document), t = d.scrollTop(), l = d.scrollLeft();\n\t\t\t\tif(e.pageY - t < 20) { \n\t\t\t\t\tif(sti && dir1 === \"down\") { clearInterval(sti); sti = false; }\n\t\t\t\t\tif(!sti) { dir1 = \"up\"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() - $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sti && dir1 === \"up\") { clearInterval(sti); sti = false; }\n\t\t\t\t}\n\t\t\t\tif($(window).height() - (e.pageY - t) < 20) {\n\t\t\t\t\tif(sti && dir1 === \"up\") { clearInterval(sti); sti = false; }\n\t\t\t\t\tif(!sti) { dir1 = \"down\"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() + $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sti && dir1 === \"down\") { clearInterval(sti); sti = false; }\n\t\t\t\t}\n\n\t\t\t\tif(e.pageX - l < 20) {\n\t\t\t\t\tif(sli && dir2 === \"right\") { clearInterval(sli); sli = false; }\n\t\t\t\t\tif(!sli) { dir2 = \"left\"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() - $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sli && dir2 === \"left\") { clearInterval(sli); sli = false; }\n\t\t\t\t}\n\t\t\t\tif($(window).width() - (e.pageX - l) < 20) {\n\t\t\t\t\tif(sli && dir2 === \"left\") { clearInterval(sli); sli = false; }\n\t\t\t\t\tif(!sli) { dir2 = \"right\"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() + $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sli && dir2 === \"right\") { clearInterval(sli); sli = false; }\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$.vakata.dnd.helper.css({ left : (e.pageX + 5) + \"px\", top : (e.pageY + 10) + \"px\" });\n\t\t\t$(document).triggerHandler(\"drag.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t},\n\t\tdrag_stop : function (e) {\n\t\t\t$(document).unbind(\"mousemove\", $.vakata.dnd.drag);\n\t\t\t$(document).unbind(\"mouseup\", $.vakata.dnd.drag_stop);\n\t\t\t$(document).triggerHandler(\"drag_stop.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t\t$.vakata.dnd.helper.remove();\n\t\t\t$.vakata.dnd.init_x = 0;\n\t\t\t$.vakata.dnd.init_y = 0;\n\t\t\t$.vakata.dnd.user_data = {};\n\t\t\t$.vakata.dnd.is_down = false;\n\t\t\t$.vakata.dnd.is_drag = false;\n\t\t}\n\t};\n\t$(function() {\n\t\tvar css_string = '#vakata-dragged { display:block; margin:0 0 0 0; padding:4px 4px 4px 24px; position:absolute; top:-2000px; line-height:16px; z-index:10000; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n\n\t$.jstree.plugin(\"dnd\", {\n\t\t__init : function () {\n\t\t\tthis.data.dnd = {\n\t\t\t\tactive : false,\n\t\t\t\tafter : false,\n\t\t\t\tinside : false,\n\t\t\t\tbefore : false,\n\t\t\t\toff : false,\n\t\t\t\tprepared : false,\n\t\t\t\tw : 0,\n\t\t\t\tto1 : false,\n\t\t\t\tto2 : false,\n\t\t\t\tcof : false,\n\t\t\t\tcw : false,\n\t\t\t\tch : false,\n\t\t\t\ti1 : false,\n\t\t\t\ti2 : false\n\t\t\t};\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"mouseenter.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && this.data.themes) {\n\t\t\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"mouseleave.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"mousemove.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tvar cnt = this.get_container()[0];\n\n\t\t\t\t\t\t\t// Horizontal scroll\n\t\t\t\t\t\t\tif(e.pageX + 24 > this.data.dnd.cof.left + this.data.dnd.cw) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft += $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if(e.pageX - 24 < this.data.dnd.cof.left) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft -= $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Vertical scroll\n\t\t\t\t\t\t\tif(e.pageY + 24 > this.data.dnd.cof.top + this.data.dnd.ch) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop += $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if(e.pageY - 24 < this.data.dnd.cof.top) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop -= $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mousedown.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif(e.which === 1) {\n\t\t\t\t\t\t\tthis.start_drag(e.currentTarget, e);\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseenter.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.dnd_enter(e.currentTarget);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mousemove.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tif(typeof this.data.dnd.off.top === \"undefined\") { this.data.dnd.off = $(e.target).offset(); }\n\t\t\t\t\t\t\tthis.data.dnd.w = (e.pageY - (this.data.dnd.off.top || 0)) % this.data.core.li_height;\n\t\t\t\t\t\t\tif(this.data.dnd.w < 0) { this.data.dnd.w += this.data.core.li_height; }\n\t\t\t\t\t\t\tthis.dnd_show();\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseleave.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.data.dnd.after\t\t= false;\n\t\t\t\t\t\t\tthis.data.dnd.before\t= false;\n\t\t\t\t\t\t\tthis.data.dnd.inside\t= false;\n\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\t\tm.hide();\n\t\t\t\t\t\t\tif(r && r[0] === e.target.parentNode) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.to1) {\n\t\t\t\t\t\t\t\t\tclearTimeout(this.data.dnd.to1);\n\t\t\t\t\t\t\t\t\tthis.data.dnd.to1 = false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif(this.data.dnd.to2) {\n\t\t\t\t\t\t\t\t\tclearTimeout(this.data.dnd.to2);\n\t\t\t\t\t\t\t\t\tthis.data.dnd.to2 = false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseup.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.dnd_finish(e);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\n\t\t\t$(document)\n\t\t\t\t.bind(\"drag_stop.vakata\", $.proxy(function () {\n\t\t\t\t\t\tthis.data.dnd.after\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.before\t= false;\n\t\t\t\t\t\tthis.data.dnd.inside\t= false;\n\t\t\t\t\t\tthis.data.dnd.off\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.prepared\t= false;\n\t\t\t\t\t\tthis.data.dnd.w\t\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.to1\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.to2\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.active\t= false;\n\t\t\t\t\t\tthis.data.dnd.foreign\t= false;\n\t\t\t\t\t\tif(m) { m.css({ \"top\" : \"-2000px\" }); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"drag_start.vakata\", $.proxy(function (e, data) {\n\t\t\t\t\t\tif(data.data.jstree) { \n\t\t\t\t\t\t\tvar et = $(data.event.target);\n\t\t\t\t\t\t\tif(et.closest(\".jstree\").hasClass(\"jstree-\" + this.get_index())) {\n\t\t\t\t\t\t\t\tthis.dnd_enter(et);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\n\t\t\tvar s = this._get_settings().dnd;\n\t\t\tif(s.drag_target) {\n\t\t\t\t$(document)\n\t\t\t\t\t.delegate(s.drag_target, \"mousedown.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\to = e.target;\n\t\t\t\t\t\t$.vakata.dnd.drag_start(e, { jstree : true, obj : e.target }, \"<ins class='jstree-icon'></ins>\" + $(e.target).text() );\n\t\t\t\t\t\tif(this.data.themes) { \n\t\t\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t}\n\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\tvar cnt = this.get_container();\n\t\t\t\t\t\tthis.data.dnd.cof = cnt.offset();\n\t\t\t\t\t\tthis.data.dnd.cw = parseInt(cnt.width(),10);\n\t\t\t\t\t\tthis.data.dnd.ch = parseInt(cnt.height(),10);\n\t\t\t\t\t\tthis.data.dnd.foreign = true;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}, this));\n\t\t\t}\n\t\t\tif(s.drop_target) {\n\t\t\t\t$(document)\n\t\t\t\t\t.delegate(s.drop_target, \"mouseenter.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active && this._get_settings().dnd.drop_check.call(this, { \"o\" : o, \"r\" : $(e.target) })) {\n\t\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-ok\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.delegate(s.drop_target, \"mouseleave.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active) {\n\t\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.delegate(s.drop_target, \"mouseup.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active && $.vakata.dnd.helper.children(\"ins\").hasClass(\"jstree-ok\")) {\n\t\t\t\t\t\t\t\tthis._get_settings().dnd.drop_finish.call(this, { \"o\" : o, \"r\" : $(e.target) });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this));\n\t\t\t}\n\t\t},\n\t\tdefaults : {\n\t\t\tcopy_modifier\t: \"ctrl\",\n\t\t\tcheck_timeout\t: 200,\n\t\t\topen_timeout\t: 500,\n\t\t\tdrop_target\t\t: \".jstree-drop\",\n\t\t\tdrop_check\t\t: function (data) { return true; },\n\t\t\tdrop_finish\t\t: $.noop,\n\t\t\tdrag_target\t\t: \".jstree-draggable\",\n\t\t\tdrag_finish\t\t: $.noop,\n\t\t\tdrag_check\t\t: function (data) { return { after : false, before : false, inside : true }; }\n\t\t},\n\t\t_fn : {\n\t\t\tdnd_prepare : function () {\n\t\t\t\tif(!r || !r.length) { return; }\n\t\t\t\tthis.data.dnd.off = r.offset();\n\t\t\t\tif(this._get_settings().core.rtl) {\n\t\t\t\t\tthis.data.dnd.off.right = this.data.dnd.off.left + r.width();\n\t\t\t\t}\n\t\t\t\tif(this.data.dnd.foreign) {\n\t\t\t\t\tvar a = this._get_settings().dnd.drag_check.call(this, { \"o\" : o, \"r\" : r });\n\t\t\t\t\tthis.data.dnd.after = a.after;\n\t\t\t\t\tthis.data.dnd.before = a.before;\n\t\t\t\t\tthis.data.dnd.inside = a.inside;\n\t\t\t\t\tthis.data.dnd.prepared = true;\n\t\t\t\t\treturn this.dnd_show();\n\t\t\t\t}\n\t\t\t\tthis.prepare_move(o, r, \"before\");\n\t\t\t\tthis.data.dnd.before = this.check_move();\n\t\t\t\tthis.prepare_move(o, r, \"after\");\n\t\t\t\tthis.data.dnd.after = this.check_move();\n\t\t\t\tif(this._is_loaded(r)) {\n\t\t\t\t\tthis.prepare_move(o, r, \"inside\");\n\t\t\t\t\tthis.data.dnd.inside = this.check_move();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.data.dnd.inside = false;\n\t\t\t\t}\n\t\t\t\tthis.data.dnd.prepared = true;\n\t\t\t\treturn this.dnd_show();\n\t\t\t},\n\t\t\tdnd_show : function () {\n\t\t\t\tif(!this.data.dnd.prepared) { return; }\n\t\t\t\tvar o = [\"before\",\"inside\",\"after\"],\n\t\t\t\t\tr = false,\n\t\t\t\t\trtl = this._get_settings().core.rtl,\n\t\t\t\t\tpos;\n\t\t\t\tif(this.data.dnd.w < this.data.core.li_height/3) { o = [\"before\",\"inside\",\"after\"]; }\n\t\t\t\telse if(this.data.dnd.w <= this.data.core.li_height*2/3) {\n\t\t\t\t\to = this.data.dnd.w < this.data.core.li_height/2 ? [\"inside\",\"before\",\"after\"] : [\"inside\",\"after\",\"before\"];\n\t\t\t\t}\n\t\t\t\telse { o = [\"after\",\"inside\",\"before\"]; }\n\t\t\t\t$.each(o, $.proxy(function (i, val) { \n\t\t\t\t\tif(this.data.dnd[val]) {\n\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-ok\");\n\t\t\t\t\t\tr = val;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t}, this));\n\t\t\t\tif(r === false) { $.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\"); }\n\t\t\t\t\n\t\t\t\tpos = rtl ? (this.data.dnd.off.right - 18) : (this.data.dnd.off.left + 10);\n\t\t\t\tswitch(r) {\n\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + \"px\", \"top\" : (this.data.dnd.off.top - 6) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + \"px\", \"top\" : (this.data.dnd.off.top + this.data.core.li_height - 7) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + ( rtl ? -4 : 4) + \"px\", \"top\" : (this.data.dnd.off.top + this.data.core.li_height/2 - 5) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tm.hide();\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\treturn r;\n\t\t\t},\n\t\t\tdnd_open : function () {\n\t\t\t\tthis.data.dnd.to2 = false;\n\t\t\t\tthis.open_node(r, $.proxy(this.dnd_prepare,this), true);\n\t\t\t},\n\t\t\tdnd_finish : function (e) {\n\t\t\t\tif(this.data.dnd.foreign) {\n\t\t\t\t\tif(this.data.dnd.after || this.data.dnd.before || this.data.dnd.inside) {\n\t\t\t\t\t\tthis._get_settings().dnd.drag_finish.call(this, { \"o\" : o, \"r\" : r });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.dnd_prepare();\n\t\t\t\t\tthis.move_node(o, r, this.dnd_show(), e[this._get_settings().dnd.copy_modifier + \"Key\"]);\n\t\t\t\t}\n\t\t\t\to = false;\n\t\t\t\tr = false;\n\t\t\t\tm.hide();\n\t\t\t},\n\t\t\tdnd_enter : function (obj) {\n\t\t\t\tvar s = this._get_settings().dnd;\n\t\t\t\tthis.data.dnd.prepared = false;\n\t\t\t\tr = this._get_node(obj);\n\t\t\t\tif(s.check_timeout) { \n\t\t\t\t\t// do the calculations after a minimal timeout (users tend to drag quickly to the desired location)\n\t\t\t\t\tif(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }\n\t\t\t\t\tthis.data.dnd.to1 = setTimeout($.proxy(this.dnd_prepare, this), s.check_timeout); \n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tthis.dnd_prepare(); \n\t\t\t\t}\n\t\t\t\tif(s.open_timeout) { \n\t\t\t\t\tif(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }\n\t\t\t\t\tif(r && r.length && r.hasClass(\"jstree-closed\")) { \n\t\t\t\t\t\t// if the node is closed - open it, then recalculate\n\t\t\t\t\t\tthis.data.dnd.to2 = setTimeout($.proxy(this.dnd_open, this), s.open_timeout);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(r && r.length && r.hasClass(\"jstree-closed\")) { \n\t\t\t\t\t\tthis.dnd_open();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tstart_drag : function (obj, e) {\n\t\t\t\to = this._get_node(obj);\n\t\t\t\tif(this.data.ui && this.is_selected(o)) { o = this._get_node(null, true); }\n\t\t\t\t$.vakata.dnd.drag_start(e, { jstree : true, obj : o }, \"<ins class='jstree-icon'></ins>\" + (o.length > 1 ? \"Multiple selection\" : this.get_text(o)) );\n\t\t\t\tif(this.data.themes) { \n\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme); \n\t\t\t\t}\n\t\t\t\tvar cnt = this.get_container();\n\t\t\t\tthis.data.dnd.cof = cnt.children(\"ul\").offset();\n\t\t\t\tthis.data.dnd.cw = parseInt(cnt.width(),10);\n\t\t\t\tthis.data.dnd.ch = parseInt(cnt.height(),10);\n\t\t\t\tthis.data.dnd.active = true;\n\t\t\t}\n\t\t}\n\t});\n\t$(function() {\n\t\tvar css_string = '' + \n\t\t\t'#vakata-dragged ins { display:block; text-decoration:none; width:16px; height:16px; margin:0 0 0 0; padding:0; position:absolute; top:4px; left:4px; } ' + \n\t\t\t'#vakata-dragged .jstree-ok { background:green; } ' + \n\t\t\t'#vakata-dragged .jstree-invalid { background:red; } ' + \n\t\t\t'#jstree-marker { padding:0; margin:0; line-height:12px; font-size:1px; overflow:hidden; height:12px; width:8px; position:absolute; top:-30px; z-index:10000; background-repeat:no-repeat; display:none; background-color:silver; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t\tm = $(\"<div>\").attr({ id : \"jstree-marker\" }).hide().appendTo(\"body\");\n\t\t$(document).bind(\"drag_start.vakata\", function (e, data) {\n\t\t\tif(data.data.jstree) { \n\t\t\t\tm.show(); \n\t\t\t}\n\t\t});\n\t\t$(document).bind(\"drag_stop.vakata\", function (e, data) {\n\t\t\tif(data.data.jstree) { m.hide(); }\n\t\t});\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree checkbox plugin 1.0\n * Inserts checkboxes in front of every node\n * Depends on the ui plugin\n * DOES NOT WORK NICELY WITH MULTITREE DRAG'N'DROP\n */\n(function ($) {\n\t$.jstree.plugin(\"checkbox\", {\n\t\t__init : function () {\n\t\t\tthis.select_node = this.deselect_node = this.deselect_all = $.noop;\n\t\t\tthis.get_selected = this.get_checked;\n\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"open_node.jstree create_node.jstree clean_node.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tthis._prepare_checkboxes(data.rslt.obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tthis._prepare_checkboxes();\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"click.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tif(this._get_node(e.target).hasClass(\"jstree-checked\")) { this.uncheck_node(e.target); }\n\t\t\t\t\t\telse { this.check_node(e.target); }\n\t\t\t\t\t\tif(this.data.ui) { this.save_selected(); }\n\t\t\t\t\t\tif(this.data.cookies) { this.save_cookie(\"select_node\"); }\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t}, this));\n\t\t},\n\t\t__destroy : function () {\n\t\t\tthis.get_container().find(\".jstree-checkbox\").remove();\n\t\t},\n\t\t_fn : {\n\t\t\t_prepare_checkboxes : function (obj) {\n\t\t\t\tobj = !obj || obj == -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\tvar c, _this = this, t;\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tt = $(this);\n\t\t\t\t\tc = t.is(\"li\") && t.hasClass(\"jstree-checked\") ? \"jstree-checked\" : \"jstree-unchecked\";\n\t\t\t\t\tt.find(\"a\").not(\":has(.jstree-checkbox)\").prepend(\"<ins class='jstree-checkbox'>&#160;</ins>\").parent().not(\".jstree-checked, .jstree-unchecked\").addClass(c);\n\t\t\t\t});\n\t\t\t\tif(obj.is(\"li\")) { this._repair_state(obj); }\n\t\t\t\telse { obj.find(\"> ul > li\").each(function () { _this._repair_state(this); }); }\n\t\t\t},\n\t\t\tchange_state : function (obj, state) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tstate = (state === false || state === true) ? state : obj.hasClass(\"jstree-checked\");\n\t\t\t\tif(state) { obj.find(\"li\").andSelf().removeClass(\"jstree-checked jstree-undetermined\").addClass(\"jstree-unchecked\"); }\n\t\t\t\telse { \n\t\t\t\t\tobj.find(\"li\").andSelf().removeClass(\"jstree-unchecked jstree-undetermined\").addClass(\"jstree-checked\"); \n\t\t\t\t\tif(this.data.ui) { this.data.ui.last_selected = obj; }\n\t\t\t\t\tthis.data.checkbox.last_selected = obj;\n\t\t\t\t}\n\t\t\t\tobj.parentsUntil(\".jstree\", \"li\").each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif(state) {\n\t\t\t\t\t\tif($this.children(\"ul\").children(\".jstree-checked, .jstree-undetermined\").length) {\n\t\t\t\t\t\t\t$this.parentsUntil(\".jstree\", \"li\").andSelf().removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this.removeClass(\"jstree-checked jstree-undetermined\").addClass(\"jstree-unchecked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tif($this.children(\"ul\").children(\".jstree-unchecked, .jstree-undetermined\").length) {\n\t\t\t\t\t\t\t$this.parentsUntil(\".jstree\", \"li\").andSelf().removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this.removeClass(\"jstree-unchecked jstree-undetermined\").addClass(\"jstree-checked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tif(this.data.ui) { this.data.ui.selected = this.get_checked(); }\n\t\t\t\tthis.__callback(obj);\n\t\t\t},\n\t\t\tcheck_node : function (obj) {\n\t\t\t\tthis.change_state(obj, false);\n\t\t\t},\n\t\t\tuncheck_node : function (obj) {\n\t\t\t\tthis.change_state(obj, true);\n\t\t\t},\n\t\t\tcheck_all : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.get_container().children(\"ul\").children(\"li\").each(function () {\n\t\t\t\t\t_this.check_node(this, false);\n\t\t\t\t});\n\t\t\t},\n\t\t\tuncheck_all : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.get_container().children(\"ul\").children(\"li\").each(function () {\n\t\t\t\t\t_this.change_state(this, true);\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tis_checked : function(obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn obj.length ? obj.is(\".jstree-checked\") : false;\n\t\t\t},\n\t\t\tget_checked : function (obj) {\n\t\t\t\tobj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\treturn obj.find(\"> ul > .jstree-checked, .jstree-undetermined > ul > .jstree-checked\");\n\t\t\t},\n\t\t\tget_unchecked : function (obj) { \n\t\t\t\tobj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\treturn obj.find(\"> ul > .jstree-unchecked, .jstree-undetermined > ul > .jstree-unchecked\");\n\t\t\t},\n\n\t\t\tshow_checkboxes : function () { this.get_container().children(\"ul\").removeClass(\"jstree-no-checkboxes\"); },\n\t\t\thide_checkboxes : function () { this.get_container().children(\"ul\").addClass(\"jstree-no-checkboxes\"); },\n\n\t\t\t_repair_state : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return; }\n\t\t\t\tvar a = obj.find(\"> ul > .jstree-checked\").length,\n\t\t\t\t\tb = obj.find(\"> ul > .jstree-undetermined\").length,\n\t\t\t\t\tc = obj.find(\"> ul > li\").length;\n\n\t\t\t\tif(c === 0) { if(obj.hasClass(\"jstree-undetermined\")) { this.check_node(obj); } }\n\t\t\t\telse if(a === 0 && b === 0) { this.uncheck_node(obj); }\n\t\t\t\telse if(a === c) { this.check_node(obj); }\n\t\t\t\telse { \n\t\t\t\t\tobj.parentsUntil(\".jstree\",\"li\").removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t}\n\t\t\t},\n\t\t\treselect : function () {\n\t\t\t\tif(this.data.ui) { \n\t\t\t\t\tvar _this = this,\n\t\t\t\t\t\ts = this.data.ui.to_select;\n\t\t\t\t\ts = $.map($.makeArray(s), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t$.each(s, function (i, val) { _this.check_node(val); });\n\t\t\t\t\tthis.__callback();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree XML 1.0\n * The XML data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.vakata.xslt = function (xml, xsl, callback) {\n\t\tvar rs = \"\", xm, xs, processor, support;\n\t\tif(document.recalc) {\n\t\t\txm = document.createElement('xml');\n\t\t\txs = document.createElement('xml');\n\t\t\txm.innerHTML = xml;\n\t\t\txs.innerHTML = xsl;\n\t\t\t$(\"body\").append(xm).append(xs);\n\t\t\tsetTimeout( (function (xm, xs, callback) {\n\t\t\t\treturn function () {\n\t\t\t\t\tcallback.call(null, xm.transformNode(xs.XMLDocument));\n\t\t\t\t\tsetTimeout( (function (xm, xs) { return function () { jQuery(\"body\").remove(xm).remove(xs); }; })(xm, xs), 200);\n\t\t\t\t};\n\t\t\t}) (xm, xs, callback), 100);\n\t\t\treturn true;\n\t\t}\n\t\tif(typeof window.DOMParser !== \"undefined\" && typeof window.XMLHttpRequest !== \"undefined\" && typeof window.XSLTProcessor !== \"undefined\") {\n\t\t\tprocessor = new XSLTProcessor();\n\t\t\tsupport = $.isFunction(processor.transformDocument) ? (typeof window.XMLSerializer !== \"undefined\") : true;\n\t\t\tif(!support) { return false; }\n\t\t\txml = new DOMParser().parseFromString(xml, \"text/xml\");\n\t\t\txsl = new DOMParser().parseFromString(xsl, \"text/xml\");\n\t\t\tif($.isFunction(processor.transformDocument)) {\n\t\t\t\trs = document.implementation.createDocument(\"\", \"\", null);\n\t\t\t\tprocessor.transformDocument(xml, xsl, rs, null);\n\t\t\t\tcallback.call(null, XMLSerializer().serializeToString(rs));\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tprocessor.importStylesheet(xsl);\n\t\t\t\trs = processor.transformToFragment(xml, document);\n\t\t\t\tcallback.call(null, $(\"<div>\").append(rs).html());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t};\n\tvar xsl = {\n\t\t'nest' : '<?xml version=\"1.0\" encoding=\"utf-8\" ?>' + \n\t\t\t'<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" >' + \n\t\t\t'<xsl:output method=\"html\" encoding=\"utf-8\" omit-xml-declaration=\"yes\" standalone=\"no\" indent=\"no\" media-type=\"text/html\" />' + \n\t\t\t'<xsl:template match=\"/\">' + \n\t\t\t'\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t<xsl:with-param name=\"node\" select=\"/root\" />' + \n\t\t\t'\t</xsl:call-template>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'<xsl:template name=\"nodes\">' + \n\t\t\t'\t<xsl:param name=\"node\" />' + \n\t\t\t'\t<ul>' + \n\t\t\t'\t<xsl:for-each select=\"$node/item\">' + \n\t\t\t'\t\t<xsl:variable name=\"children\" select=\"count(./item) &gt; 0\" />' + \n\t\t\t'\t\t<li>' + \n\t\t\t'\t\t\t<xsl:attribute name=\"class\">' + \n\t\t\t'\t\t\t\t<xsl:if test=\"position() = last()\">jstree-last </xsl:if>' + \n\t\t\t'\t\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"@state = \\'open\\'\">jstree-open </xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"$children or @hasChildren or @state = \\'closed\\'\">jstree-closed </xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:otherwise>jstree-leaf </xsl:otherwise>' + \n\t\t\t'\t\t\t\t</xsl:choose>' + \n\t\t\t'\t\t\t\t<xsl:value-of select=\"@class\" />' + \n\t\t\t'\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t\t<xsl:if test=\"name() != \\'class\\' and name() != \\'state\\' and name() != \\'hasChildren\\'\">' + \n\t\t\t'\t\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t</xsl:if>' + \n\t\t\t'\t\t\t</xsl:for-each>' + \n\t\t\t'\t<ins class=\"jstree-icon\"><xsl:text>&#xa0;</xsl:text></ins>' + \n\t\t\t'\t\t\t<xsl:for-each select=\"content/name\">' + \n\t\t\t'\t\t\t\t<a>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"href\">' + \n\t\t\t'\t\t\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"@href\"><xsl:value-of select=\"@href\" /></xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:otherwise>#</xsl:otherwise>' + \n\t\t\t'\t\t\t\t\t</xsl:choose>' + \n\t\t\t'\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"class\"><xsl:value-of select=\"@lang\" /> <xsl:value-of select=\"@class\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"style\"><xsl:value-of select=\"@style\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t\t\t<xsl:if test=\"name() != \\'style\\' and name() != \\'class\\' and name() != \\'href\\'\">' + \n\t\t\t'\t\t\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t\t</xsl:if>' + \n\t\t\t'\t\t\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t\t\t<ins>' + \n\t\t\t'\t\t\t\t\t\t<xsl:attribute name=\"class\">jstree-icon ' + \n\t\t\t'\t\t\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and not(contains(@icon,\\'/\\'))\"><xsl:value-of select=\"@icon\" /></xsl:if>' + \n\t\t\t'\t\t\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and contains(@icon,\\'/\\')\"><xsl:attribute name=\"style\">background:url(<xsl:value-of select=\"@icon\" />) center center no-repeat;</xsl:attribute></xsl:if>' + \n\t\t\t'\t\t\t\t\t\t<xsl:text>&#xa0;</xsl:text>' + \n\t\t\t'\t\t\t\t\t</ins>' + \n\t\t\t'\t\t\t\t\t<xsl:value-of select=\"current()\" />' + \n\t\t\t'\t\t\t\t</a>' + \n\t\t\t'\t\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t<xsl:if test=\"$children or @hasChildren\"><xsl:call-template name=\"nodes\"><xsl:with-param name=\"node\" select=\"current()\" /></xsl:call-template></xsl:if>' + \n\t\t\t'\t\t</li>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t</ul>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'</xsl:stylesheet>',\n\n\t\t'flat' : '<?xml version=\"1.0\" encoding=\"utf-8\" ?>' + \n\t\t\t'<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" >' + \n\t\t\t'<xsl:output method=\"html\" encoding=\"utf-8\" omit-xml-declaration=\"yes\" standalone=\"no\" indent=\"no\" media-type=\"text/xml\" />' + \n\t\t\t'<xsl:template match=\"/\">' + \n\t\t\t'\t<ul>' + \n\t\t\t'\t<xsl:for-each select=\"//item[not(@parent_id) or @parent_id=0 or not(@parent_id = //item/@id)]\">' + /* the last `or` may be removed */\n\t\t\t'\t\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t\t<xsl:with-param name=\"node\" select=\".\" />' + \n\t\t\t'\t\t\t<xsl:with-param name=\"is_last\" select=\"number(position() = last())\" />' + \n\t\t\t'\t\t</xsl:call-template>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t</ul>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'<xsl:template name=\"nodes\">' + \n\t\t\t'\t<xsl:param name=\"node\" />' + \n\t\t\t'\t<xsl:param name=\"is_last\" />' + \n\t\t\t'\t<xsl:variable name=\"children\" select=\"count(//item[@parent_id=$node/attribute::id]) &gt; 0\" />' + \n\t\t\t'\t<li>' + \n\t\t\t'\t<xsl:attribute name=\"class\">' + \n\t\t\t'\t\t<xsl:if test=\"$is_last = true()\">jstree-last </xsl:if>' + \n\t\t\t'\t\t<xsl:choose>' + \n\t\t\t'\t\t\t<xsl:when test=\"@state = \\'open\\'\">jstree-open </xsl:when>' + \n\t\t\t'\t\t\t<xsl:when test=\"$children or @hasChildren or @state = \\'closed\\'\">jstree-closed </xsl:when>' + \n\t\t\t'\t\t\t<xsl:otherwise>jstree-leaf </xsl:otherwise>' + \n\t\t\t'\t\t</xsl:choose>' + \n\t\t\t'\t\t<xsl:value-of select=\"@class\" />' + \n\t\t\t'\t</xsl:attribute>' + \n\t\t\t'\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t<xsl:if test=\"name() != \\'parent_id\\' and name() != \\'hasChildren\\' and name() != \\'class\\' and name() != \\'state\\'\">' + \n\t\t\t'\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t</xsl:if>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t<ins class=\"jstree-icon\"><xsl:text>&#xa0;</xsl:text></ins>' + \n\t\t\t'\t<xsl:for-each select=\"content/name\">' + \n\t\t\t'\t\t<a>' + \n\t\t\t'\t\t<xsl:attribute name=\"href\">' + \n\t\t\t'\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t<xsl:when test=\"@href\"><xsl:value-of select=\"@href\" /></xsl:when>' + \n\t\t\t'\t\t\t<xsl:otherwise>#</xsl:otherwise>' + \n\t\t\t'\t\t\t</xsl:choose>' + \n\t\t\t'\t\t</xsl:attribute>' + \n\t\t\t'\t\t<xsl:attribute name=\"class\"><xsl:value-of select=\"@lang\" /> <xsl:value-of select=\"@class\" /></xsl:attribute>' + \n\t\t\t'\t\t<xsl:attribute name=\"style\"><xsl:value-of select=\"@style\" /></xsl:attribute>' + \n\t\t\t'\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t<xsl:if test=\"name() != \\'style\\' and name() != \\'class\\' and name() != \\'href\\'\">' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t</xsl:if>' + \n\t\t\t'\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t<ins>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"class\">jstree-icon ' + \n\t\t\t'\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and not(contains(@icon,\\'/\\'))\"><xsl:value-of select=\"@icon\" /></xsl:if>' + \n\t\t\t'\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and contains(@icon,\\'/\\')\"><xsl:attribute name=\"style\">background:url(<xsl:value-of select=\"@icon\" />) center center no-repeat;</xsl:attribute></xsl:if>' + \n\t\t\t'\t\t\t\t<xsl:text>&#xa0;</xsl:text>' + \n\t\t\t'\t\t\t</ins>' + \n\t\t\t'\t\t\t<xsl:value-of select=\"current()\" />' + \n\t\t\t'\t\t</a>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t<xsl:if test=\"$children\">' + \n\t\t\t'\t\t<ul>' + \n\t\t\t'\t\t<xsl:for-each select=\"//item[@parent_id=$node/attribute::id]\">' + \n\t\t\t'\t\t\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t\t\t<xsl:with-param name=\"node\" select=\".\" />' + \n\t\t\t'\t\t\t\t<xsl:with-param name=\"is_last\" select=\"number(position() = last())\" />' + \n\t\t\t'\t\t\t</xsl:call-template>' + \n\t\t\t'\t\t</xsl:for-each>' + \n\t\t\t'\t\t</ul>' + \n\t\t\t'\t</xsl:if>' + \n\t\t\t'\t</li>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'</xsl:stylesheet>'\n\t};\n\t$.jstree.plugin(\"xml_data\", {\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\txsl : \"flat\",\n\t\t\tclean_node : false,\n\t\t\tcorrect_state : true\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_xml(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tvar s = this._get_settings().xml_data;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn obj == -1 || !obj || !s.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_xml : function (obj, s_call, e_call) {\n\t\t\t\tvar s = this.get_settings().xml_data,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax): throw \"Neither data nor ajax settings supplied.\";\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\tthis.parse_xml(s.data, $.proxy(function (d) {\n\t\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\t\td = d.replace(/ ?xmlns=\"[^\"]*\"/ig, \"\");\n\t\t\t\t\t\t\t\t\tif(d.length > 10) {\n\t\t\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty().append(d.children());\n\t\t\t\t\t\t\t\t\t\tif(s.clean_node) { this.clean_node(obj); }\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse { \n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty(); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().xml_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj !== -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\td = x.responseText;\n\t\t\t\t\t\t\tvar sf = this.get_settings().xml_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d == \"\") {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tthis.parse_xml(d, $.proxy(function (d) {\n\t\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\t\td = d.replace(/ ?xmlns=\"[^\"]*\"/ig, \"\");\n\t\t\t\t\t\t\t\t\tif(d.length > 10) {\n\t\t\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\t\t\tif(obj === -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()); }\n\t\t\t\t\t\t\t\t\t\telse { obj.children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.append(d); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\t\t\tif(s.clean_node) { this.clean_node(obj); }\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\tif(obj && obj !== -1) { \n\t\t\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty();\n\t\t\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"xml\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\tparse_xml : function (xml, callback) {\n\t\t\t\tvar s = this._get_settings().xml_data;\n\t\t\t\t$.vakata.xslt(xml, xsl[s.xsl], callback);\n\t\t\t},\n\t\t\tget_xml : function (tp, obj, li_attr, a_attr, is_callback) {\n\t\t\t\tvar result = \"\", \n\t\t\t\t\ts = this._get_settings(), \n\t\t\t\t\t_this = this,\n\t\t\t\t\ttmp1, tmp2, li, a, lang;\n\t\t\t\tif(!tp) { tp = \"flat\"; }\n\t\t\t\tif(!is_callback) { is_callback = 0; }\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container().find(\"> ul > li\"); }\n\t\t\t\tli_attr = $.isArray(li_attr) ? li_attr : [ \"id\", \"class\" ];\n\t\t\t\tif(!is_callback && this.data.types && $.inArray(s.types.type_attr, li_attr) === -1) { li_attr.push(s.types.type_attr); }\n\n\t\t\t\ta_attr = $.isArray(a_attr) ? a_attr : [ ];\n\n\t\t\t\tif(!is_callback) { result += \"<root>\"; }\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tresult += \"<item\";\n\t\t\t\t\tli = $(this);\n\t\t\t\t\t$.each(li_attr, function (i, v) { result += \" \" + v + \"=\\\"\" + (li.attr(v) || \"\").replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\") + \"\\\"\"; });\n\t\t\t\t\tif(li.hasClass(\"jstree-open\")) { result += \" state=\\\"open\\\"\"; }\n\t\t\t\t\tif(li.hasClass(\"jstree-closed\")) { result += \" state=\\\"closed\\\"\"; }\n\t\t\t\t\tif(tp === \"flat\") { result += \" parent_id=\\\"\" + is_callback + \"\\\"\"; }\n\t\t\t\t\tresult += \">\";\n\t\t\t\t\tresult += \"<content>\";\n\t\t\t\t\ta = li.children(\"a\");\n\t\t\t\t\ta.each(function () {\n\t\t\t\t\t\ttmp1 = $(this);\n\t\t\t\t\t\tlang = false;\n\t\t\t\t\t\tresult += \"<name\";\n\t\t\t\t\t\tif($.inArray(\"languages\", s.plugins) !== -1) {\n\t\t\t\t\t\t\t$.each(s.languages, function (k, z) {\n\t\t\t\t\t\t\t\tif(tmp1.hasClass(z)) { result += \" lang=\\\"\" + z + \"\\\"\"; lang = z; return false; }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(a_attr.length) { \n\t\t\t\t\t\t\t$.each(a_attr, function (k, z) {\n\t\t\t\t\t\t\t\tresult += \" \" + z + \"=\\\"\" + (tmp1.attr(z) || \"\").replace(/jstree[^ ]*|$/ig,'') + \"\\\"\";\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(tmp1.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\").length) {\n\t\t\t\t\t\t\tresult += ' icon=\"' + tmp1.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\") + '\"';\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(tmp1.children(\"ins\").get(0).style.backgroundImage.length) {\n\t\t\t\t\t\t\tresult += ' icon=\"' + tmp1.children(\"ins\").get(0).style.backgroundImage.replace(\"url(\",\"\").replace(\")\",\"\") + '\"';\n\t\t\t\t\t\t}\n\t\t\t\t\t\tresult += \">\";\n\t\t\t\t\t\tresult += \"<![CDATA[\" + _this.get_text(tmp1, lang) + \"]]>\";\n\t\t\t\t\t\tresult += \"</name>\";\n\t\t\t\t\t});\n\t\t\t\t\tresult += \"</content>\";\n\t\t\t\t\ttmp2 = li[0].id;\n\t\t\t\t\tli = li.find(\"> ul > li\");\n\t\t\t\t\tif(li.length) { tmp2 = _this.get_xml(tp, li, li_attr, a_attr, tmp2); }\n\t\t\t\t\telse { tmp2 = \"\"; }\n\t\t\t\t\tif(tp == \"nest\") { result += tmp2; }\n\t\t\t\t\tresult += \"</item>\";\n\t\t\t\t\tif(tp == \"flat\") { result += tmp2; }\n\t\t\t\t});\n\t\t\t\tif(!is_callback) { result += \"</root>\"; }\n\t\t\t\treturn result;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree search plugin 1.0\n * Enables both sync and async search on the tree\n * DOES NOT WORK WITH JSON PROGRESSIVE RENDER\n */\n(function ($) {\n\t$.expr[':'].jstree_contains = function(a,i,m){\n\t\treturn (a.textContent || a.innerText || \"\").toLowerCase().indexOf(m[3].toLowerCase())>=0;\n\t};\n\t$.jstree.plugin(\"search\", {\n\t\t__init : function () {\n\t\t\tthis.data.search.str = \"\";\n\t\t\tthis.data.search.result = $();\n\t\t},\n\t\tdefaults : {\n\t\t\tajax : false, // OR ajax object\n\t\t\tcase_insensitive : false\n\t\t},\n\t\t_fn : {\n\t\t\tsearch : function (str, skip_async) {\n\t\t\t\tif(str === \"\") { return; }\n\t\t\t\tvar s = this.get_settings().search, \n\t\t\t\t\tt = this,\n\t\t\t\t\terror_func = function () { },\n\t\t\t\t\tsuccess_func = function () { };\n\t\t\t\tthis.data.search.str = str;\n\n\t\t\t\tif(!skip_async && s.ajax !== false && this.get_container().find(\".jstree-closed:eq(0)\").length > 0) {\n\t\t\t\t\tthis.search.supress_callback = true;\n\t\t\t\t\terror_func = function () { };\n\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\tvar sf = this.get_settings().search.ajax.success; \n\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\tthis.data.search.to_open = d;\n\t\t\t\t\t\tthis._search_open();\n\t\t\t\t\t};\n\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, str); }\n\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, str); }\n\t\t\t\t\tif(!s.ajax.data) { s.ajax.data = { \"search_string\" : str }; }\n\t\t\t\t\tif(!s.ajax.dataType || /^json/.exec(s.ajax.dataType)) { s.ajax.dataType = \"json\"; }\n\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif(this.data.search.result.length) { this.clear_search(); }\n\t\t\t\tthis.data.search.result = this.get_container().find(\"a\" + (this.data.languages ? \".\" + this.get_lang() : \"\" ) + \":\" + (s.case_insensitive ? \"jstree_contains\" : \"contains\") + \"(\" + this.data.search.str + \")\");\n\t\t\t\tthis.data.search.result.addClass(\"jstree-search\").parents(\".jstree-closed\").each(function () {\n\t\t\t\t\tt.open_node(this, false, true);\n\t\t\t\t});\n\t\t\t\tthis.__callback({ nodes : this.data.search.result, str : str });\n\t\t\t},\n\t\t\tclear_search : function (str) {\n\t\t\t\tthis.data.search.result.removeClass(\"jstree-search\");\n\t\t\t\tthis.__callback(this.data.search.result);\n\t\t\t\tthis.data.search.result = $();\n\t\t\t},\n\t\t\t_search_open : function (is_callback) {\n\t\t\t\tvar _this = this,\n\t\t\t\t\tdone = true,\n\t\t\t\t\tcurrent = [],\n\t\t\t\t\tremaining = [];\n\t\t\t\tif(this.data.search.to_open.length) {\n\t\t\t\t\t$.each(this.data.search.to_open, function (i, val) {\n\t\t\t\t\t\tif(val == \"#\") { return true; }\n\t\t\t\t\t\tif($(val).length && $(val).is(\".jstree-closed\")) { current.push(val); }\n\t\t\t\t\t\telse { remaining.push(val); }\n\t\t\t\t\t});\n\t\t\t\t\tif(current.length) {\n\t\t\t\t\t\tthis.data.search.to_open = remaining;\n\t\t\t\t\t\t$.each(current, function (i, val) { \n\t\t\t\t\t\t\t_this.open_node(val, function () { _this._search_open(true); }); \n\t\t\t\t\t\t});\n\t\t\t\t\t\tdone = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(done) { this.search(this.data.search.str, true); }\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree contextmenu plugin 1.0\n */\n(function ($) {\n\t$.vakata.context = {\n\t\tcnt\t\t: $(\"<div id='vakata-contextmenu'>\"),\n\t\tvis\t\t: false,\n\t\ttgt\t\t: false,\n\t\tpar\t\t: false,\n\t\tfunc\t: false,\n\t\tdata\t: false,\n\t\tshow\t: function (s, t, x, y, d, p) {\n\t\t\tvar html = $.vakata.context.parse(s), h, w;\n\t\t\tif(!html) { return; }\n\t\t\t$.vakata.context.vis = true;\n\t\t\t$.vakata.context.tgt = t;\n\t\t\t$.vakata.context.par = p || t || null;\n\t\t\t$.vakata.context.data = d || null;\n\t\t\t$.vakata.context.cnt\n\t\t\t\t.html(html)\n\t\t\t\t.css({ \"visibility\" : \"hidden\", \"display\" : \"block\", \"left\" : 0, \"top\" : 0 });\n\t\t\th = $.vakata.context.cnt.height();\n\t\t\tw = $.vakata.context.cnt.width();\n\t\t\tif(x + w > $(document).width()) { \n\t\t\t\tx = $(document).width() - (w + 5); \n\t\t\t\t$.vakata.context.cnt.find(\"li > ul\").addClass(\"right\"); \n\t\t\t}\n\t\t\tif(y + h > $(document).height()) { \n\t\t\t\ty = y - (h + t[0].offsetHeight); \n\t\t\t\t$.vakata.context.cnt.find(\"li > ul\").addClass(\"bottom\"); \n\t\t\t}\n\n\t\t\t$.vakata.context.cnt\n\t\t\t\t.css({ \"left\" : x, \"top\" : y })\n\t\t\t\t.find(\"li:has(ul)\")\n\t\t\t\t\t.bind(\"mouseenter\", function (e) { \n\t\t\t\t\t\tvar w = $(document).width(),\n\t\t\t\t\t\t\th = $(document).height(),\n\t\t\t\t\t\t\tul = $(this).children(\"ul\").show(); \n\t\t\t\t\t\tif(w !== $(document).width()) { ul.toggleClass(\"right\"); }\n\t\t\t\t\t\tif(h !== $(document).height()) { ul.toggleClass(\"bottom\"); }\n\t\t\t\t\t})\n\t\t\t\t\t.bind(\"mouseleave\", function (e) { \n\t\t\t\t\t\t$(this).children(\"ul\").hide(); \n\t\t\t\t\t})\n\t\t\t\t\t.end()\n\t\t\t\t.css({ \"visibility\" : \"visible\" })\n\t\t\t\t.show();\n\t\t\t$(document).triggerHandler(\"context_show.vakata\");\n\t\t},\n\t\thide\t: function () {\n\t\t\t$.vakata.context.vis = false;\n\t\t\t$.vakata.context.cnt.attr(\"class\",\"\").hide();\n\t\t\t$(document).triggerHandler(\"context_hide.vakata\");\n\t\t},\n\t\tparse\t: function (s, is_callback) {\n\t\t\tif(!s) { return false; }\n\t\t\tvar str = \"\",\n\t\t\t\ttmp = false,\n\t\t\t\twas_sep = true;\n\t\t\tif(!is_callback) { $.vakata.context.func = {}; }\n\t\t\tstr += \"<ul>\";\n\t\t\t$.each(s, function (i, val) {\n\t\t\t\tif(!val) { return true; }\n\t\t\t\t$.vakata.context.func[i] = val.action;\n\t\t\t\tif(!was_sep && val.separator_before) {\n\t\t\t\t\tstr += \"<li class='vakata-separator vakata-separator-before'></li>\";\n\t\t\t\t}\n\t\t\t\twas_sep = false;\n\t\t\t\tstr += \"<li class='\" + (val._class || \"\") + (val._disabled ? \" jstree-contextmenu-disabled \" : \"\") + \"'><ins \";\n\t\t\t\tif(val.icon && val.icon.indexOf(\"/\") === -1) { str += \" class='\" + val.icon + \"' \"; }\n\t\t\t\tif(val.icon && val.icon.indexOf(\"/\") !== -1) { str += \" style='background:url(\" + val.icon + \") center center no-repeat;' \"; }\n\t\t\t\tstr += \">&#160;</ins><a href='#' rel='\" + i + \"'>\";\n\t\t\t\tif(val.submenu) {\n\t\t\t\t\tstr += \"<span style='float:right;'>&raquo;</span>\";\n\t\t\t\t}\n\t\t\t\tstr += val.label + \"</a>\";\n\t\t\t\tif(val.submenu) {\n\t\t\t\t\ttmp = $.vakata.context.parse(val.submenu, true);\n\t\t\t\t\tif(tmp) { str += tmp; }\n\t\t\t\t}\n\t\t\t\tstr += \"</li>\";\n\t\t\t\tif(val.separator_after) {\n\t\t\t\t\tstr += \"<li class='vakata-separator vakata-separator-after'></li>\";\n\t\t\t\t\twas_sep = true;\n\t\t\t\t}\n\t\t\t});\n\t\t\tstr = str.replace(/<li class\\='vakata-separator vakata-separator-after'\\><\\/li\\>$/,\"\");\n\t\t\tstr += \"</ul>\";\n\t\t\treturn str.length > 10 ? str : false;\n\t\t},\n\t\texec\t: function (i) {\n\t\t\tif($.isFunction($.vakata.context.func[i])) {\n\t\t\t\t$.vakata.context.func[i].call($.vakata.context.data, $.vakata.context.par);\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse { return false; }\n\t\t}\n\t};\n\t$(function () {\n\t\tvar css_string = '' + \n\t\t\t'#vakata-contextmenu { display:none; position:absolute; margin:0; padding:0; min-width:180px; background:#ebebeb; border:1px solid silver; z-index:10000; *width:180px; } ' + \n\t\t\t'#vakata-contextmenu ul { min-width:180px; *width:180px; } ' + \n\t\t\t'#vakata-contextmenu ul, #vakata-contextmenu li { margin:0; padding:0; list-style-type:none; display:block; } ' + \n\t\t\t'#vakata-contextmenu li { line-height:20px; min-height:20px; position:relative; padding:0px; } ' + \n\t\t\t'#vakata-contextmenu li a { padding:1px 6px; line-height:17px; display:block; text-decoration:none; margin:1px 1px 0 1px; } ' + \n\t\t\t'#vakata-contextmenu li ins { float:left; width:16px; height:16px; text-decoration:none; margin-right:2px; } ' + \n\t\t\t'#vakata-contextmenu li a:hover, #vakata-contextmenu li.vakata-hover > a { background:gray; color:white; } ' + \n\t\t\t'#vakata-contextmenu li ul { display:none; position:absolute; top:-2px; left:100%; background:#ebebeb; border:1px solid gray; } ' + \n\t\t\t'#vakata-contextmenu .right { right:100%; left:auto; } ' + \n\t\t\t'#vakata-contextmenu .bottom { bottom:-1px; top:auto; } ' + \n\t\t\t'#vakata-contextmenu li.vakata-separator { min-height:0; height:1px; line-height:1px; font-size:1px; overflow:hidden; margin:0 2px; background:silver; /* border-top:1px solid #fefefe; */ padding:0; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t\t$.vakata.context.cnt\n\t\t\t.delegate(\"a\",\"click\", function (e) { e.preventDefault(); })\n\t\t\t.delegate(\"a\",\"mouseup\", function (e) {\n\t\t\t\tif(!$(this).parent().hasClass(\"jstree-contextmenu-disabled\") && $.vakata.context.exec($(this).attr(\"rel\"))) {\n\t\t\t\t\t$.vakata.context.hide();\n\t\t\t\t}\n\t\t\t\telse { $(this).blur(); }\n\t\t\t})\n\t\t\t.delegate(\"a\",\"mouseover\", function () {\n\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").removeClass(\"vakata-hover\");\n\t\t\t})\n\t\t\t.appendTo(\"body\");\n\t\t$(document).bind(\"mousedown\", function (e) { if($.vakata.context.vis && !$.contains($.vakata.context.cnt[0], e.target)) { $.vakata.context.hide(); } });\n\t\tif(typeof $.hotkeys !== \"undefined\") {\n\t\t\t$(document)\n\t\t\t\t.bind(\"keydown\", \"up\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\tvar o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\".vakata-hover\").removeClass(\"vakata-hover\").prevAll(\"li:not(.vakata-separator)\").first();\n\t\t\t\t\t\tif(!o.length) { o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\"li:not(.vakata-separator)\").last(); }\n\t\t\t\t\t\to.addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"down\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\tvar o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\".vakata-hover\").removeClass(\"vakata-hover\").nextAll(\"li:not(.vakata-separator)\").first();\n\t\t\t\t\t\tif(!o.length) { o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\"li:not(.vakata-separator)\").first(); }\n\t\t\t\t\t\to.addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"right\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").children(\"ul\").show().children(\"li:not(.vakata-separator)\").removeClass(\"vakata-hover\").first().addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"left\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").children(\"ul\").hide().children(\".vakata-separator\").removeClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"esc\", function (e) { \n\t\t\t\t\t$.vakata.context.hide(); \n\t\t\t\t\te.preventDefault();\n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"space\", function (e) { \n\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").last().children(\"a\").click();\n\t\t\t\t\te.preventDefault();\n\t\t\t\t});\n\t\t}\n\t});\n\n\t$.jstree.plugin(\"contextmenu\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.delegate(\"a\", \"contextmenu.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tthis.show_contextmenu(e.currentTarget, e.pageX, e.pageY);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"destroy.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif(this.data.contextmenu) {\n\t\t\t\t\t\t\t$.vakata.context.hide();\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t\t$(document).bind(\"context_hide.vakata\", $.proxy(function () { this.data.contextmenu = false; }, this));\n\t\t},\n\t\tdefaults : { \n\t\t\tselect_node : false, // requires UI plugin\n\t\t\tshow_at_node : true,\n\t\t\titems : { // Could be a function that should return an object like this one\n\t\t\t\t\"create\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"separator_after\"\t: true,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Create\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.create(obj); }\n\t\t\t\t},\n\t\t\t\t\"rename\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Rename\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.rename(obj); }\n\t\t\t\t},\n\t\t\t\t\"remove\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Delete\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.remove(obj); }\n\t\t\t\t},\n\t\t\t\t\"ccp\" : {\n\t\t\t\t\t\"separator_before\"\t: true,\n\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Edit\",\n\t\t\t\t\t\"action\"\t\t\t: false,\n\t\t\t\t\t\"submenu\" : { \n\t\t\t\t\t\t\"cut\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Cut\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.cut(obj); }\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"copy\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Copy\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.copy(obj); }\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"paste\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Paste\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.paste(obj); }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\tshow_contextmenu : function (obj, x, y) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar s = this.get_settings().contextmenu,\n\t\t\t\t\ta = obj.children(\"a:visible:eq(0)\"),\n\t\t\t\t\to = false;\n\t\t\t\tif(s.select_node && this.data.ui && !this.is_selected(obj)) {\n\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\tthis.select_node(obj, true);\n\t\t\t\t}\n\t\t\t\tif(s.show_at_node || typeof x === \"undefined\" || typeof y === \"undefined\") {\n\t\t\t\t\to = a.offset();\n\t\t\t\t\tx = o.left;\n\t\t\t\t\ty = o.top + this.data.core.li_height;\n\t\t\t\t}\n\t\t\t\tif($.isFunction(s.items)) { s.items = s.items.call(this, obj); }\n\t\t\t\tthis.data.contextmenu = true;\n\t\t\t\t$.vakata.context.show(s.items, a, x, y, this, obj);\n\t\t\t\tif(this.data.themes) { $.vakata.context.cnt.attr(\"class\", \"jstree-\" + this.data.themes.theme + \"-context\"); }\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree types plugin 1.0\n * Adds support types of nodes\n * You can set an attribute on each li node, that represents its type.\n * According to the type setting the node may get custom icon/validation rules\n */\n(function ($) {\n\t$.jstree.plugin(\"types\", {\n\t\t__init : function () {\n\t\t\tvar s = this._get_settings().types;\n\t\t\tthis.data.types.attach_to = [];\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"init.jstree\", $.proxy(function () { \n\t\t\t\t\t\tvar types = s.types, \n\t\t\t\t\t\t\tattr  = s.type_attr, \n\t\t\t\t\t\t\ticons_css = \"\", \n\t\t\t\t\t\t\t_this = this;\n\n\t\t\t\t\t\t$.each(types, function (i, tp) {\n\t\t\t\t\t\t\t$.each(tp, function (k, v) { \n\t\t\t\t\t\t\t\tif(!/^(max_depth|max_children|icon|valid_children)$/.test(k)) { _this.data.types.attach_to.push(k); }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tif(!tp.icon) { return true; }\n\t\t\t\t\t\t\tif( tp.icon.image || tp.icon.position) {\n\t\t\t\t\t\t\t\tif(i == \"default\")\t{ icons_css += '.jstree-' + _this.get_index() + ' a > .jstree-icon { '; }\n\t\t\t\t\t\t\t\telse\t\t\t\t{ icons_css += '.jstree-' + _this.get_index() + ' li[' + attr + '=' + i + '] > a > .jstree-icon { '; }\n\t\t\t\t\t\t\t\tif(tp.icon.image)\t{ icons_css += ' background-image:url(' + tp.icon.image + '); '; }\n\t\t\t\t\t\t\t\tif(tp.icon.position){ icons_css += ' background-position:' + tp.icon.position + '; '; }\n\t\t\t\t\t\t\t\telse\t\t\t\t{ icons_css += ' background-position:0 0; '; }\n\t\t\t\t\t\t\t\ticons_css += '} ';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t\tif(icons_css != \"\") { $.vakata.css.add_sheet({ 'str' : icons_css }); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"before.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tif($.inArray(data.func, this.data.types.attach_to) !== -1) {\n\t\t\t\t\t\t\tvar s = this._get_settings().types.types,\n\t\t\t\t\t\t\t\tt = this._get_type(data.args[0]);\n\t\t\t\t\t\t\tif(\n\t\t\t\t\t\t\t\t( \n\t\t\t\t\t\t\t\t\t(s[t] && typeof s[t][data.func] !== \"undefined\") || \n\t\t\t\t\t\t\t\t\t(s[\"default\"] && typeof s[\"default\"][data.func] !== \"undefined\")\n\t\t\t\t\t\t\t\t) && !this._check(data.func, data.args[0])\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\te.stopImmediatePropagation();\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\t// defines maximum number of root nodes (-1 means unlimited, -2 means disable max_children checking)\n\t\t\tmax_children\t\t: -1,\n\t\t\t// defines the maximum depth of the tree (-1 means unlimited, -2 means disable max_depth checking)\n\t\t\tmax_depth\t\t\t: -1,\n\t\t\t// defines valid node types for the root nodes\n\t\t\tvalid_children\t\t: \"all\",\n\n\t\t\t// where is the type stores (the rel attribute of the LI element)\n\t\t\ttype_attr : \"rel\",\n\t\t\t// a list of types\n\t\t\ttypes : {\n\t\t\t\t// the default type\n\t\t\t\t\"default\" : {\n\t\t\t\t\t\"max_children\"\t: -1,\n\t\t\t\t\t\"max_depth\"\t\t: -1,\n\t\t\t\t\t\"valid_children\": \"all\"\n\n\t\t\t\t\t// Bound functions - you can bind any other function here (using boolean or function)\n\t\t\t\t\t//\"select_node\"\t: true,\n\t\t\t\t\t//\"open_node\"\t: true,\n\t\t\t\t\t//\"close_node\"\t: true,\n\t\t\t\t\t//\"create_node\"\t: true,\n\t\t\t\t\t//\"delete_node\"\t: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\t_get_type : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn (!obj || !obj.length) ? false : obj.attr(this._get_settings().types.type_attr) || \"default\";\n\t\t\t},\n\t\t\tset_type : function (str, obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn (!obj.length || !str) ? false : obj.attr(this._get_settings().types.type_attr, str);\n\t\t\t},\n\t\t\t_check : function (rule, obj, opts) {\n\t\t\t\tvar v = false, t = this._get_type(obj), d = 0, _this = this, s = this._get_settings().types;\n\t\t\t\tif(obj === -1) { \n\t\t\t\t\tif(!!s[rule]) { v = s[rule]; }\n\t\t\t\t\telse { return; }\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(t === false) { return; }\n\t\t\t\t\tif(!!s.types[t] && !!s.types[t][rule]) { v = s.types[t][rule]; }\n\t\t\t\t\telse if(!!s.types[\"default\"] && !!s.types[\"default\"][rule]) { v = s.types[\"default\"][rule]; }\n\t\t\t\t}\n\t\t\t\tif($.isFunction(v)) { v = v.call(this, obj); }\n\t\t\t\tif(rule === \"max_depth\" && obj !== -1 && opts !== false && s.max_depth !== -2 && v !== 0) {\n\t\t\t\t\t// also include the node itself - otherwise if root node it is not checked\n\t\t\t\t\tthis._get_node(obj).children(\"a:eq(0)\").parentsUntil(\".jstree\",\"li\").each(function (i) {\n\t\t\t\t\t\t// check if current depth already exceeds global tree depth\n\t\t\t\t\t\tif(s.max_depth !== -1 && s.max_depth - (i + 1) <= 0) { v = 0; return false; }\n\t\t\t\t\t\td = (i === 0) ? v : _this._check(rule, this, false);\n\t\t\t\t\t\t// check if current node max depth is already matched or exceeded\n\t\t\t\t\t\tif(d !== -1 && d - (i + 1) <= 0) { v = 0; return false; }\n\t\t\t\t\t\t// otherwise - set the max depth to the current value minus current depth\n\t\t\t\t\t\tif(d >= 0 && (d - (i + 1) < v || v < 0) ) { v = d - (i + 1); }\n\t\t\t\t\t\t// if the global tree depth exists and it minus the nodes calculated so far is less than `v` or `v` is unlimited\n\t\t\t\t\t\tif(s.max_depth >= 0 && (s.max_depth - (i + 1) < v || v < 0) ) { v = s.max_depth - (i + 1); }\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn v;\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar m  = this._get_move(),\n\t\t\t\t\ts  = m.rt._get_settings().types,\n\t\t\t\t\tmc = m.rt._check(\"max_children\", m.cr),\n\t\t\t\t\tmd = m.rt._check(\"max_depth\", m.cr),\n\t\t\t\t\tvc = m.rt._check(\"valid_children\", m.cr),\n\t\t\t\t\tch = 0, d = 1, t;\n\n\t\t\t\tif(vc === \"none\") { return false; } \n\t\t\t\tif($.isArray(vc) && m.ot && m.ot._get_type) {\n\t\t\t\t\tm.o.each(function () {\n\t\t\t\t\t\tif($.inArray(m.ot._get_type(this), vc) === -1) { d = false; return false; }\n\t\t\t\t\t});\n\t\t\t\t\tif(d === false) { return false; }\n\t\t\t\t}\n\t\t\t\tif(s.max_children !== -2 && mc !== -1) {\n\t\t\t\t\tch = m.cr === -1 ? this.get_container().children(\"> ul > li\").not(m.o).length : m.cr.children(\"> ul > li\").not(m.o).length;\n\t\t\t\t\tif(ch + m.o.length > mc) { return false; }\n\t\t\t\t}\n\t\t\t\tif(s.max_depth !== -2 && md !== -1) {\n\t\t\t\t\td = 0;\n\t\t\t\t\tif(md === 0) { return false; }\n\t\t\t\t\tif(typeof m.o.d === \"undefined\") {\n\t\t\t\t\t\t// TODO: deal with progressive rendering and async when checking max_depth (how to know the depth of the moved node)\n\t\t\t\t\t\tt = m.o;\n\t\t\t\t\t\twhile(t.length > 0) {\n\t\t\t\t\t\t\tt = t.find(\"> ul > li\");\n\t\t\t\t\t\t\td ++;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tm.o.d = d;\n\t\t\t\t\t}\n\t\t\t\t\tif(md - m.o.d < 0) { return false; }\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tcreate_node : function (obj, position, js, callback, is_loaded, skip_check) {\n\t\t\t\tif(!skip_check && (is_loaded || this._is_loaded(obj))) {\n\t\t\t\t\tvar p  = (position && position.match(/^before|after$/i) && obj !== -1) ? this._get_parent(obj) : this._get_node(obj),\n\t\t\t\t\t\ts  = this._get_settings().types,\n\t\t\t\t\t\tmc = this._check(\"max_children\", p),\n\t\t\t\t\t\tmd = this._check(\"max_depth\", p),\n\t\t\t\t\t\tvc = this._check(\"valid_children\", p),\n\t\t\t\t\t\tch;\n\t\t\t\t\tif(!js) { js = {}; }\n\t\t\t\t\tif(vc === \"none\") { return false; } \n\t\t\t\t\tif($.isArray(vc)) {\n\t\t\t\t\t\tif(!js.attr || !js.attr[s.type_attr]) { \n\t\t\t\t\t\t\tif(!js.attr) { js.attr = {}; }\n\t\t\t\t\t\t\tjs.attr[s.type_attr] = vc[0]; \n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif($.inArray(js.attr[s.type_attr], vc) === -1) { return false; }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(s.max_children !== -2 && mc !== -1) {\n\t\t\t\t\t\tch = p === -1 ? this.get_container().children(\"> ul > li\").length : p.children(\"> ul > li\").length;\n\t\t\t\t\t\tif(ch + 1 > mc) { return false; }\n\t\t\t\t\t}\n\t\t\t\t\tif(s.max_depth !== -2 && md !== -1 && (md - 1) < 0) { return false; }\n\t\t\t\t}\n\t\t\t\treturn this.__call_old(true, obj, position, js, callback, is_loaded, skip_check);\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree HTML data 1.0\n * The HTML data store. Datastores are build by replacing the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.jstree.plugin(\"html_data\", {\n\t\t__init : function () { \n\t\t\t// this used to use html() and clean the whitespace, but this way any attached data was lost\n\t\t\tthis.data.html_data.original_container_html = this.get_container().find(\" > ul > li\").clone(true);\n\t\t\t// remove white space from LI node - otherwise nodes appear a bit to the right\n\t\t\tthis.data.html_data.original_container_html.find(\"li\").andSelf().contents().filter(function() { return this.nodeType == 3; }).remove();\n\t\t},\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\tcorrect_state : true\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_html(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tobj = this._get_node(obj); \n\t\t\t\treturn obj == -1 || !obj || !this._get_settings().html_data.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_html : function (obj, s_call, e_call) {\n\t\t\t\tvar d,\n\t\t\t\t\ts = this.get_settings().html_data,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t\t.children(\"ul\").empty()\n\t\t\t\t\t\t\t\t.append(this.data.html_data.original_container_html)\n\t\t\t\t\t\t\t\t.find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end()\n\t\t\t\t\t\t\t\t.filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\");\n\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\td = $(s.data);\n\t\t\t\t\t\t\tif(!d.is(\"ul\")) { d = $(\"<ul>\").append(d); }\n\t\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t\t.children(\"ul\").empty().append(d.children())\n\t\t\t\t\t\t\t\t.find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end()\n\t\t\t\t\t\t\t\t.filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\");\n\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\tobj = this._get_node(obj);\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().html_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj != -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\tvar sf = this.get_settings().html_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d == \"\") {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\tif(!d.is(\"ul\")) { d = $(\"<ul>\").append(d); }\n\t\t\t\t\t\t\t\tif(obj == -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()).find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end().filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\"); }\n\t\t\t\t\t\t\t\telse { obj.children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.append(d).find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end().filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\"); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty();\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"html\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\t// include the HTML data plugin by default\n\t$.jstree.defaults.plugins.push(\"html_data\");\n})(jQuery);\n//*/\n\n/* \n * jsTree themeroller plugin 1.0\n * Adds support for jQuery UI themes. Include this at the end of your plugins list, also make sure \"themes\" is not included.\n */\n(function ($) {\n\t$.jstree.plugin(\"themeroller\", {\n\t\t__init : function () {\n\t\t\tvar s = this._get_settings().themeroller;\n\t\t\tthis.get_container()\n\t\t\t\t.addClass(\"ui-widget-content\")\n\t\t\t\t.delegate(\"a\",\"mouseenter.jstree\", function () {\n\t\t\t\t\t$(this).addClass(s.item_h);\n\t\t\t\t})\n\t\t\t\t.delegate(\"a\",\"mouseleave.jstree\", function () {\n\t\t\t\t\t$(this).removeClass(s.item_h);\n\t\t\t\t})\n\t\t\t\t.bind(\"open_node.jstree create_node.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tthis._themeroller(data.rslt.obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree refresh.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tthis._themeroller();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"close_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tdata.rslt.obj.children(\"ins\").removeClass(s.opened).addClass(s.closed);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"select_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tdata.rslt.obj.children(\"a\").addClass(s.item_a);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"deselect_node.jstree deselect_all.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t.find(\".\" + s.item_a).removeClass(s.item_a).end()\n\t\t\t\t\t\t\t.find(\".jstree-clicked\").addClass(s.item_a);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis._themeroller(data.rslt.o);\n\t\t\t\t\t}, this));\n\t\t},\n\t\t__destroy : function () {\n\t\t\tvar s = this._get_settings().themeroller,\n\t\t\t\tc = [ \"ui-icon\" ];\n\t\t\t$.each(s, function (i, v) {\n\t\t\t\tv = v.split(\" \");\n\t\t\t\tif(v.length) { c = c.concat(v); }\n\t\t\t});\n\t\t\tthis.get_container()\n\t\t\t\t.removeClass(\"ui-widget-content\")\n\t\t\t\t.find(\".\" + c.join(\", .\")).removeClass(c.join(\" \"));\n\t\t},\n\t\t_fn : {\n\t\t\t_themeroller : function (obj) {\n\t\t\t\tvar s = this._get_settings().themeroller;\n\t\t\t\tobj = !obj || obj == -1 ? this.get_container() : this._get_node(obj).parent();\n\t\t\t\tobj\n\t\t\t\t\t.find(\"li.jstree-closed > ins.jstree-icon\").removeClass(s.opened).addClass(\"ui-icon \" + s.closed).end()\n\t\t\t\t\t.find(\"li.jstree-open > ins.jstree-icon\").removeClass(s.closed).addClass(\"ui-icon \" + s.opened).end()\n\t\t\t\t\t.find(\"a\").addClass(s.item)\n\t\t\t\t\t\t.children(\"ins.jstree-icon\").addClass(\"ui-icon \" + s.item_icon);\n\t\t\t}\n\t\t},\n\t\tdefaults : {\n\t\t\t\"opened\" : \"ui-icon-triangle-1-se\",\n\t\t\t\"closed\" : \"ui-icon-triangle-1-e\",\n\t\t\t\"item\" : \"ui-state-default\",\n\t\t\t\"item_h\" : \"ui-state-hover\",\n\t\t\t\"item_a\" : \"ui-state-active\",\n\t\t\t\"item_icon\" : \"ui-icon-folder-collapsed\"\n\t\t}\n\t});\n\t$(function() {\n\t\tvar css_string = '.jstree .ui-icon { overflow:visible; } .jstree a { padding:0 2px; }';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree unique plugin 1.0\n * Forces different names amongst siblings (still a bit experimental)\n * NOTE: does not check language versions (it will not be possible to have nodes with the same title, even in different languages)\n */\n(function ($) {\n\t$.jstree.plugin(\"unique\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"before.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tvar nms = [], res = true, p, t;\n\t\t\t\t\t\tif(data.func == \"move_node\") {\n\t\t\t\t\t\t\t// obj, ref, position, is_copy, is_prepared, skip_check\n\t\t\t\t\t\t\tif(data.args[4] === true) {\n\t\t\t\t\t\t\t\tif(data.args[0].o && data.args[0].o.length) {\n\t\t\t\t\t\t\t\t\tdata.args[0].o.children(\"a\").each(function () { nms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\t\t\t\t\t\tres = this._check_unique(nms, data.args[0].np.find(\"> ul > li\").not(data.args[0].o));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(data.func == \"create_node\") {\n\t\t\t\t\t\t\t// obj, position, js, callback, is_loaded\n\t\t\t\t\t\t\tif(data.args[4] || this._is_loaded(data.args[0])) {\n\t\t\t\t\t\t\t\tp = this._get_node(data.args[0]);\n\t\t\t\t\t\t\t\tif(data.args[1] && (data.args[1] === \"before\" || data.args[1] === \"after\")) {\n\t\t\t\t\t\t\t\t\tp = this._get_parent(data.args[0]);\n\t\t\t\t\t\t\t\t\tif(!p || p === -1) { p = this.get_container(); }\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif(typeof data.args[2] === \"string\") { nms.push(data.args[2]); }\n\t\t\t\t\t\t\t\telse if(!data.args[2] || !data.args[2].data) { nms.push(this._get_settings().core.strings.new_node); }\n\t\t\t\t\t\t\t\telse { nms.push(data.args[2].data); }\n\t\t\t\t\t\t\t\tres = this._check_unique(nms, p.find(\"> ul > li\"));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(data.func == \"rename_node\") {\n\t\t\t\t\t\t\t// obj, val\n\t\t\t\t\t\t\tnms.push(data.args[1]);\n\t\t\t\t\t\t\tt = this._get_node(data.args[0]);\n\t\t\t\t\t\t\tp = this._get_parent(t);\n\t\t\t\t\t\t\tif(!p || p === -1) { p = this.get_container(); }\n\t\t\t\t\t\t\tres = this._check_unique(nms, p.find(\"> ul > li\").not(t));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(!res) {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\t_fn : { \n\t\t\t_check_unique : function (nms, p) {\n\t\t\t\tvar cnms = [];\n\t\t\t\tp.children(\"a\").each(function () { cnms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\tif(!cnms.length || !nms.length) { return true; }\n\t\t\t\tcnms = cnms.sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\");\n\t\t\t\tif((cnms.length + nms.length) != cnms.concat(nms).sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\").length) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar p = this._get_move(), nms = [];\n\t\t\t\tif(p.o && p.o.length) {\n\t\t\t\t\tp.o.children(\"a\").each(function () { nms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\t\treturn this._check_unique(nms, p.np.find(\"> ul > li\").not(p.o));\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/jquery.sammy.js",
    "content": "// name: sammy\n// version: 0.6.2\n/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n(function($, window) {\n\n  var Sammy,\n      PATH_REPLACER = \"([^\\/]+)\",\n      PATH_NAME_MATCHER = /:([\\w\\d]+)/g,\n      QUERY_STRING_MATCHER = /\\?([^#]*)$/,\n      // mainly for making `arguments` an Array\n      _makeArray = function(nonarray) { return Array.prototype.slice.call(nonarray); },\n      // borrowed from jQuery\n      _isFunction = function( obj ) { return Object.prototype.toString.call(obj) === \"[object Function]\"; },\n      _isArray = function( obj ) { return Object.prototype.toString.call(obj) === \"[object Array]\"; },\n      _decode = decodeURIComponent,\n      _encode = encodeURIComponent,\n      _escapeHTML = function(s) {\n        return String(s).replace(/&(?!\\w+;)/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\"/g, '&quot;');\n      },\n      _routeWrapper = function(verb) {\n        return function(path, callback) { return this.route.apply(this, [verb, path, callback]); };\n      },\n      _template_cache = {},\n      loggers = [];\n\n\n  // `Sammy` (also aliased as $.sammy) is not only the namespace for a\n  // number of prototypes, its also a top level method that allows for easy\n  // creation/management of `Sammy.Application` instances. There are a\n  // number of different forms for `Sammy()` but each returns an instance\n  // of `Sammy.Application`. When a new instance is created using\n  // `Sammy` it is added to an Object called `Sammy.apps`. This\n  // provides for an easy way to get at existing Sammy applications. Only one\n  // instance is allowed per `element_selector` so when calling\n  // `Sammy('selector')` multiple times, the first time will create\n  // the application and the following times will extend the application\n  // already added to that selector.\n  //\n  // ### Example\n  //\n  //      // returns the app at #main or a new app\n  //      Sammy('#main')\n  //\n  //      // equivilent to \"new Sammy.Application\", except appends to apps\n  //      Sammy();\n  //      Sammy(function() { ... });\n  //\n  //      // extends the app at '#main' with function.\n  //      Sammy('#main', function() { ... });\n  //\n  Sammy = function() {\n    var args = _makeArray(arguments),\n        app, selector;\n    Sammy.apps = Sammy.apps || {};\n    if (args.length === 0 || args[0] && _isFunction(args[0])) { // Sammy()\n      return Sammy.apply(Sammy, ['body'].concat(args));\n    } else if (typeof (selector = args.shift()) == 'string') { // Sammy('#main')\n      app = Sammy.apps[selector] || new Sammy.Application();\n      app.element_selector = selector;\n      if (args.length > 0) {\n        $.each(args, function(i, plugin) {\n          app.use(plugin);\n        });\n      }\n      // if the selector changes make sure the refrence in Sammy.apps changes\n      if (app.element_selector != selector) {\n        delete Sammy.apps[selector];\n      }\n      Sammy.apps[app.element_selector] = app;\n      return app;\n    }\n  };\n\n  Sammy.VERSION = '0.6.2';\n\n  // Add to the global logger pool. Takes a function that accepts an\n  // unknown number of arguments and should print them or send them somewhere\n  // The first argument is always a timestamp.\n  Sammy.addLogger = function(logger) {\n    loggers.push(logger);\n  };\n\n  // Sends a log message to each logger listed in the global\n  // loggers pool. Can take any number of arguments.\n  // Also prefixes the arguments with a timestamp.\n  Sammy.log = function()  {\n    var args = _makeArray(arguments);\n    args.unshift(\"[\" + Date() + \"]\");\n    $.each(loggers, function(i, logger) {\n      logger.apply(Sammy, args);\n    });\n  };\n\n  if (typeof window.console != 'undefined') {\n    if (_isFunction(window.console.log.apply)) {\n      Sammy.addLogger(function() {\n        window.console.log.apply(window.console, arguments);\n      });\n    } else {\n      Sammy.addLogger(function() {\n        window.console.log(arguments);\n      });\n    }\n  } else if (typeof console != 'undefined') {\n    Sammy.addLogger(function() {\n      console.log.apply(console, arguments);\n    });\n  }\n\n  $.extend(Sammy, {\n    makeArray: _makeArray,\n    isFunction: _isFunction,\n    isArray: _isArray\n  })\n\n  // Sammy.Object is the base for all other Sammy classes. It provides some useful\n  // functionality, including cloning, iterating, etc.\n  Sammy.Object = function(obj) { // constructor\n    return $.extend(this, obj || {});\n  };\n\n  $.extend(Sammy.Object.prototype, {\n\n    // Escape HTML in string, use in templates to prevent script injection.\n    // Also aliased as `h()`\n    escapeHTML: _escapeHTML,\n    h: _escapeHTML,\n\n    // Returns a copy of the object with Functions removed.\n    toHash: function() {\n      var json = {};\n      $.each(this, function(k,v) {\n        if (!_isFunction(v)) {\n          json[k] = v;\n        }\n      });\n      return json;\n    },\n\n    // Renders a simple HTML version of this Objects attributes.\n    // Does not render functions.\n    // For example. Given this Sammy.Object:\n    //\n    //    var s = new Sammy.Object({first_name: 'Sammy', last_name: 'Davis Jr.'});\n    //    s.toHTML() //=> '<strong>first_name</strong> Sammy<br /><strong>last_name</strong> Davis Jr.<br />'\n    //\n    toHTML: function() {\n      var display = \"\";\n      $.each(this, function(k, v) {\n        if (!_isFunction(v)) {\n          display += \"<strong>\" + k + \"</strong> \" + v + \"<br />\";\n        }\n      });\n      return display;\n    },\n\n    // Returns an array of keys for this object. If `attributes_only`\n    // is true will not return keys that map to a `function()`\n    keys: function(attributes_only) {\n      var keys = [];\n      for (var property in this) {\n        if (!_isFunction(this[property]) || !attributes_only) {\n          keys.push(property);\n        }\n      }\n      return keys;\n    },\n\n    // Checks if the object has a value at `key` and that the value is not empty\n    has: function(key) {\n      return this[key] && $.trim(this[key].toString()) != '';\n    },\n\n    // convenience method to join as many arguments as you want\n    // by the first argument - useful for making paths\n    join: function() {\n      var args = _makeArray(arguments);\n      var delimiter = args.shift();\n      return args.join(delimiter);\n    },\n\n    // Shortcut to Sammy.log\n    log: function() {\n      Sammy.log.apply(Sammy, arguments);\n    },\n\n    // Returns a string representation of this object.\n    // if `include_functions` is true, it will also toString() the\n    // methods of this object. By default only prints the attributes.\n    toString: function(include_functions) {\n      var s = [];\n      $.each(this, function(k, v) {\n        if (!_isFunction(v) || include_functions) {\n          s.push('\"' + k + '\": ' + v.toString());\n        }\n      });\n      return \"Sammy.Object: {\" + s.join(',') + \"}\";\n    }\n  });\n\n  // The HashLocationProxy is the default location proxy for all Sammy applications.\n  // A location proxy is a prototype that conforms to a simple interface. The purpose\n  // of a location proxy is to notify the Sammy.Application its bound to when the location\n  // or 'external state' changes. The HashLocationProxy considers the state to be\n  // changed when the 'hash' (window.location.hash / '#') changes. It does this in two\n  // different ways depending on what browser you are using. The newest browsers\n  // (IE, Safari > 4, FF >= 3.6) support a 'onhashchange' DOM event, thats fired whenever\n  // the location.hash changes. In this situation the HashLocationProxy just binds\n  // to this event and delegates it to the application. In the case of older browsers\n  // a poller is set up to track changes to the hash. Unlike Sammy 0.3 or earlier,\n  // the HashLocationProxy allows the poller to be a global object, eliminating the\n  // need for multiple pollers even when thier are multiple apps on the page.\n  Sammy.HashLocationProxy = function(app, run_interval_every) {\n    this.app = app;\n    // set is native to false and start the poller immediately\n    this.is_native = false;\n    this._startPolling(run_interval_every);\n  };\n\n  Sammy.HashLocationProxy.prototype = {\n\n    // bind the proxy events to the current app.\n    bind: function() {\n      var proxy = this, app = this.app;\n      $(window).bind('hashchange.' + this.app.eventNamespace(), function(e, non_native) {\n        // if we receive a native hash change event, set the proxy accordingly\n        // and stop polling\n        if (proxy.is_native === false && !non_native) {\n          Sammy.log('native hash change exists, using');\n          proxy.is_native = true;\n          window.clearInterval(Sammy.HashLocationProxy._interval);\n        }\n        app.trigger('location-changed');\n      });\n      if (!Sammy.HashLocationProxy._bindings) {\n        Sammy.HashLocationProxy._bindings = 0;\n      }\n      Sammy.HashLocationProxy._bindings++;\n    },\n\n    // unbind the proxy events from the current app\n    unbind: function() {\n      $(window).unbind('hashchange.' + this.app.eventNamespace());\n      Sammy.HashLocationProxy._bindings--;\n      if (Sammy.HashLocationProxy._bindings <= 0) {\n        window.clearInterval(Sammy.HashLocationProxy._interval);\n      }\n    },\n\n    // get the current location from the hash.\n    getLocation: function() {\n     // Bypass the `window.location.hash` attribute.  If a question mark\n      // appears in the hash IE6 will strip it and all of the following\n      // characters from `window.location.hash`.\n      var matches = window.location.toString().match(/^[^#]*(#.+)$/);\n      return matches ? matches[1] : '';\n    },\n\n    // set the current location to `new_location`\n    setLocation: function(new_location) {\n      return (window.location = new_location);\n    },\n\n    _startPolling: function(every) {\n      // set up interval\n      var proxy = this;\n      if (!Sammy.HashLocationProxy._interval) {\n        if (!every) { every = 10; }\n        var hashCheck = function() {\n          var current_location = proxy.getLocation();\n          if (!Sammy.HashLocationProxy._last_location ||\n            current_location != Sammy.HashLocationProxy._last_location) {\n            window.setTimeout(function() {\n              $(window).trigger('hashchange', [true]);\n            }, 13);\n          }\n          Sammy.HashLocationProxy._last_location = current_location;\n        };\n        hashCheck();\n        Sammy.HashLocationProxy._interval = window.setInterval(hashCheck, every);\n      }\n    }\n  };\n\n\n  // Sammy.Application is the Base prototype for defining 'applications'.\n  // An 'application' is a collection of 'routes' and bound events that is\n  // attached to an element when `run()` is called.\n  // The only argument an 'app_function' is evaluated within the context of the application.\n  Sammy.Application = function(app_function) {\n    var app = this;\n    this.routes            = {};\n    this.listeners         = new Sammy.Object({});\n    this.arounds           = [];\n    this.befores           = [];\n    // generate a unique namespace\n    this.namespace         = (new Date()).getTime() + '-' + parseInt(Math.random() * 1000, 10);\n    this.context_prototype = function() { Sammy.EventContext.apply(this, arguments); };\n    this.context_prototype.prototype = new Sammy.EventContext();\n\n    if (_isFunction(app_function)) {\n      app_function.apply(this, [this]);\n    }\n    // set the location proxy if not defined to the default (HashLocationProxy)\n    if (!this._location_proxy) {\n      this.setLocationProxy(new Sammy.HashLocationProxy(this, this.run_interval_every));\n    }\n    if (this.debug) {\n      this.bindToAllEvents(function(e, data) {\n        app.log(app.toString(), e.cleaned_type, data || {});\n      });\n    }\n  };\n\n  Sammy.Application.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // the four route verbs\n    ROUTE_VERBS: ['get','post','put','delete'],\n\n    // An array of the default events triggered by the\n    // application during its lifecycle\n    APP_EVENTS: ['run',\n                 'unload',\n                 'lookup-route',\n                 'run-route',\n                 'route-found',\n                 'event-context-before',\n                 'event-context-after',\n                 'changed',\n                 'error',\n                 'check-form-submission',\n                 'redirect',\n                 'location-changed'],\n\n    _last_route: null,\n    _location_proxy: null,\n    _running: false,\n\n    // Defines what element the application is bound to. Provide a selector\n    // (parseable by `jQuery()`) and this will be used by `$element()`\n    element_selector: 'body',\n\n    // When set to true, logs all of the default events using `log()`\n    debug: false,\n\n    // When set to true, and the error() handler is not overriden, will actually\n    // raise JS errors in routes (500) and when routes can't be found (404)\n    raise_errors: false,\n\n    // The time in milliseconds that the URL is queried for changes\n    run_interval_every: 50,\n\n    // The default template engine to use when using `partial()` in an\n    // `EventContext`. `template_engine` can either be a string that\n    // corresponds to the name of a method/helper on EventContext or it can be a function\n    // that takes two arguments, the content of the unrendered partial and an optional\n    // JS object that contains interpolation data. Template engine is only called/refered\n    // to if the extension of the partial is null or unknown. See `partial()`\n    // for more information\n    template_engine: null,\n\n    // //=> Sammy.Application: body\n    toString: function() {\n      return 'Sammy.Application:' + this.element_selector;\n    },\n\n    // returns a jQuery object of the Applications bound element.\n    $element: function(selector) {\n      return selector ? $(this.element_selector).find(selector) : $(this.element_selector);\n    },\n\n    // `use()` is the entry point for including Sammy plugins.\n    // The first argument to use should be a function() that is evaluated\n    // in the context of the current application, just like the `app_function`\n    // argument to the `Sammy.Application` constructor.\n    //\n    // Any additional arguments are passed to the app function sequentially.\n    //\n    // For much more detail about plugins, check out:\n    // http://code.quirkey.com/sammy/doc/plugins.html\n    //\n    // ### Example\n    //\n    //      var MyPlugin = function(app, prepend) {\n    //\n    //        this.helpers({\n    //          myhelper: function(text) {\n    //            alert(prepend + \" \" + text);\n    //          }\n    //        });\n    //\n    //      };\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        this.use(MyPlugin, 'This is my plugin');\n    //\n    //        this.get('#/', function() {\n    //          this.myhelper('and dont you forget it!');\n    //          //=> Alerts: This is my plugin and dont you forget it!\n    //        });\n    //\n    //      });\n    //\n    // If plugin is passed as a string it assumes your are trying to load\n    // Sammy.\"Plugin\". This is the prefered way of loading core Sammy plugins\n    // as it allows for better error-messaging.\n    //\n    // ### Example\n    //\n    //      $.sammy(function() {\n    //        this.use('Mustache'); //=> Sammy.Mustache\n    //        this.use('Storage'); //=> Sammy.Storage\n    //      });\n    //\n    use: function() {\n      // flatten the arguments\n      var args = _makeArray(arguments),\n          plugin = args.shift(),\n          plugin_name = plugin || '';\n      try {\n        args.unshift(this);\n        if (typeof plugin == 'string') {\n          plugin_name = 'Sammy.' + plugin;\n          plugin = Sammy[plugin];\n        }\n        plugin.apply(this, args);\n      } catch(e) {\n        if (typeof plugin === 'undefined') {\n          this.error(\"Plugin Error: called use() but plugin (\" + plugin_name.toString() + \") is not defined\", e);\n        } else if (!_isFunction(plugin)) {\n          this.error(\"Plugin Error: called use() but '\" + plugin_name.toString() + \"' is not a function\", e);\n        } else {\n          this.error(\"Plugin Error\", e);\n        }\n      }\n      return this;\n    },\n\n    // Sets the location proxy for the current app. By default this is set to\n    // a new `Sammy.HashLocationProxy` on initialization. However, you can set\n    // the location_proxy inside you're app function to give your app a custom\n    // location mechanism. See `Sammy.HashLocationProxy` and `Sammy.DataLocationProxy`\n    // for examples.\n    //\n    // `setLocationProxy()` takes an initialized location proxy.\n    //\n    // ### Example\n    //\n    //        // to bind to data instead of the default hash;\n    //        var app = $.sammy(function() {\n    //          this.setLocationProxy(new Sammy.DataLocationProxy(this));\n    //        });\n    //\n    setLocationProxy: function(new_proxy) {\n      var original_proxy = this._location_proxy;\n      this._location_proxy = new_proxy;\n      if (this.isRunning()) {\n        if (original_proxy) {\n          // if there is already a location proxy, unbind it.\n          original_proxy.unbind();\n        }\n        this._location_proxy.bind();\n      }\n    },\n\n    // `route()` is the main method for defining routes within an application.\n    // For great detail on routes, check out: http://code.quirkey.com/sammy/doc/routes.html\n    //\n    // This method also has aliases for each of the different verbs (eg. `get()`, `post()`, etc.)\n    //\n    // ### Arguments\n    //\n    // * `verb` A String in the set of ROUTE_VERBS or 'any'. 'any' will add routes for each\n    //    of the ROUTE_VERBS. If only two arguments are passed,\n    //    the first argument is the path, the second is the callback and the verb\n    //    is assumed to be 'any'.\n    // * `path` A Regexp or a String representing the path to match to invoke this verb.\n    // * `callback` A Function that is called/evaluated whent the route is run see: `runRoute()`.\n    //    It is also possible to pass a string as the callback, which is looked up as the name\n    //    of a method on the application.\n    //\n    route: function(verb, path, callback) {\n      var app = this, param_names = [], add_route, path_match;\n\n      // if the method signature is just (path, callback)\n      // assume the verb is 'any'\n      if (!callback && _isFunction(path)) {\n        path = verb;\n        callback = path;\n        verb = 'any';\n      }\n\n      verb = verb.toLowerCase(); // ensure verb is lower case\n\n      // if path is a string turn it into a regex\n      if (path.constructor == String) {\n\n        // Needs to be explicitly set because IE will maintain the index unless NULL is returned,\n        // which means that with two consecutive routes that contain params, the second set of params will not be found and end up in splat instead of params\n        // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/RegExp/lastIndex\n        PATH_NAME_MATCHER.lastIndex = 0;\n\n        // find the names\n        while ((path_match = PATH_NAME_MATCHER.exec(path)) !== null) {\n          param_names.push(path_match[1]);\n        }\n        // replace with the path replacement\n        path = new RegExp(\"^\" + path.replace(PATH_NAME_MATCHER, PATH_REPLACER) + \"$\");\n      }\n      // lookup callback\n      if (typeof callback == 'string') {\n        callback = app[callback];\n      }\n\n      add_route = function(with_verb) {\n        var r = {verb: with_verb, path: path, callback: callback, param_names: param_names};\n        // add route to routes array\n        app.routes[with_verb] = app.routes[with_verb] || [];\n        // place routes in order of definition\n        app.routes[with_verb].push(r);\n      };\n\n      if (verb === 'any') {\n        $.each(this.ROUTE_VERBS, function(i, v) { add_route(v); });\n      } else {\n        add_route(verb);\n      }\n\n      // return the app\n      return this;\n    },\n\n    // Alias for route('get', ...)\n    get: _routeWrapper('get'),\n\n    // Alias for route('post', ...)\n    post: _routeWrapper('post'),\n\n    // Alias for route('put', ...)\n    put: _routeWrapper('put'),\n\n    // Alias for route('delete', ...)\n    del: _routeWrapper('delete'),\n\n    // Alias for route('any', ...)\n    any: _routeWrapper('any'),\n\n    // `mapRoutes` takes an array of arrays, each array being passed to route()\n    // as arguments, this allows for mass definition of routes. Another benefit is\n    // this makes it possible/easier to load routes via remote JSON.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      this.mapRoutes([\n    //          ['get', '#/', function() { this.log('index'); }],\n    //          // strings in callbacks are looked up as methods on the app\n    //          ['post', '#/create', 'addUser'],\n    //          // No verb assumes 'any' as the verb\n    //          [/dowhatever/, function() { this.log(this.verb, this.path)}];\n    //        ]);\n    //    })\n    //\n    mapRoutes: function(route_array) {\n      var app = this;\n      $.each(route_array, function(i, route_args) {\n        app.route.apply(app, route_args);\n      });\n      return this;\n    },\n\n    // A unique event namespace defined per application.\n    // All events bound with `bind()` are automatically bound within this space.\n    eventNamespace: function() {\n      return ['sammy-app', this.namespace].join('-');\n    },\n\n    // Works just like `jQuery.fn.bind()` with a couple noteable differences.\n    //\n    // * It binds all events to the application element\n    // * All events are bound within the `eventNamespace()`\n    // * Events are not actually bound until the application is started with `run()`\n    // * callbacks are evaluated within the context of a Sammy.EventContext\n    //\n    // See http://code.quirkey.com/sammy/docs/events.html for more info.\n    //\n    bind: function(name, data, callback) {\n      var app = this;\n      // build the callback\n      // if the arity is 2, callback is the second argument\n      if (typeof callback == 'undefined') { callback = data; }\n      var listener_callback =  function() {\n        // pull off the context from the arguments to the callback\n        var e, context, data;\n        e       = arguments[0];\n        data    = arguments[1];\n        if (data && data.context) {\n          context = data.context;\n          delete data.context;\n        } else {\n          context = new app.context_prototype(app, 'bind', e.type, data, e.target);\n        }\n        e.cleaned_type = e.type.replace(app.eventNamespace(), '');\n        callback.apply(context, [e, data]);\n      };\n\n      // it could be that the app element doesnt exist yet\n      // so attach to the listeners array and then run()\n      // will actually bind the event.\n      if (!this.listeners[name]) { this.listeners[name] = []; }\n      this.listeners[name].push(listener_callback);\n      if (this.isRunning()) {\n        // if the app is running\n        // *actually* bind the event to the app element\n        this._listen(name, listener_callback);\n      }\n      return this;\n    },\n\n    // Triggers custom events defined with `bind()`\n    //\n    // ### Arguments\n    //\n    // * `name` The name of the event. Automatically prefixed with the `eventNamespace()`\n    // * `data` An optional Object that can be passed to the bound callback.\n    // * `context` An optional context/Object in which to execute the bound callback.\n    //   If no context is supplied a the context is a new `Sammy.EventContext`\n    //\n    trigger: function(name, data) {\n      this.$element().trigger([name, this.eventNamespace()].join('.'), [data]);\n      return this;\n    },\n\n    // Reruns the current route\n    refresh: function() {\n      this.last_location = null;\n      this.trigger('location-changed');\n      return this;\n    },\n\n    // Takes a single callback that is pushed on to a stack.\n    // Before any route is run, the callbacks are evaluated in order within\n    // the current `Sammy.EventContext`\n    //\n    // If any of the callbacks explicitly return false, execution of any\n    // further callbacks and the route itself is halted.\n    //\n    // You can also provide a set of options that will define when to run this\n    // before based on the route it proceeds.\n    //\n    // ### Example\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        // will run at #/route but not at #/\n    //        this.before('#/route', function() {\n    //          //...\n    //        });\n    //\n    //        // will run at #/ but not at #/route\n    //        this.before({except: {path: '#/route'}}, function() {\n    //          this.log('not before #/route');\n    //        });\n    //\n    //        this.get('#/', function() {});\n    //\n    //        this.get('#/route', function() {});\n    //\n    //      });\n    //\n    // See `contextMatchesOptions()` for a full list of supported options\n    //\n    before: function(options, callback) {\n      if (_isFunction(options)) {\n        callback = options;\n        options = {};\n      }\n      this.befores.push([options, callback]);\n      return this;\n    },\n\n    // A shortcut for binding a callback to be run after a route is executed.\n    // After callbacks have no guarunteed order.\n    after: function(callback) {\n      return this.bind('event-context-after', callback);\n    },\n\n\n    // Adds an around filter to the application. around filters are functions\n    // that take a single argument `callback` which is the entire route\n    // execution path wrapped up in a closure. This means you can decide whether\n    // or not to proceed with execution by not invoking `callback` or,\n    // more usefuly wrapping callback inside the result of an asynchronous execution.\n    //\n    // ### Example\n    //\n    // The most common use case for around() is calling a _possibly_ async function\n    // and executing the route within the functions callback:\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        var current_user = false;\n    //\n    //        function checkLoggedIn(callback) {\n    //          // /session returns a JSON representation of the logged in user\n    //          // or an empty object\n    //          if (!current_user) {\n    //            $.getJSON('/session', function(json) {\n    //              if (json.login) {\n    //                // show the user as logged in\n    //                current_user = json;\n    //                // execute the route path\n    //                callback();\n    //              } else {\n    //                // show the user as not logged in\n    //                current_user = false;\n    //                // the context of aroundFilters is an EventContext\n    //                this.redirect('#/login');\n    //              }\n    //            });\n    //          } else {\n    //            // execute the route path\n    //            callback();\n    //          }\n    //        };\n    //\n    //        this.around(checkLoggedIn);\n    //\n    //      });\n    //\n    around: function(callback) {\n      this.arounds.push(callback);\n      return this;\n    },\n\n    // Returns `true` if the current application is running.\n    isRunning: function() {\n      return this._running;\n    },\n\n    // Helpers extends the EventContext prototype specific to this app.\n    // This allows you to define app specific helper functions that can be used\n    // whenever you're inside of an event context (templates, routes, bind).\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      helpers({\n    //        upcase: function(text) {\n    //         return text.toString().toUpperCase();\n    //        }\n    //      });\n    //\n    //      get('#/', function() { with(this) {\n    //        // inside of this context I can use the helpers\n    //        $('#main').html(upcase($('#main').text());\n    //      }});\n    //\n    //    });\n    //\n    //\n    // ### Arguments\n    //\n    // * `extensions` An object collection of functions to extend the context.\n    //\n    helpers: function(extensions) {\n      $.extend(this.context_prototype.prototype, extensions);\n      return this;\n    },\n\n    // Helper extends the event context just like `helpers()` but does it\n    // a single method at a time. This is especially useful for dynamically named\n    // helpers\n    //\n    // ### Example\n    //\n    //     // Trivial example that adds 3 helper methods to the context dynamically\n    //     var app = $.sammy(function(app) {\n    //\n    //       $.each([1,2,3], function(i, num) {\n    //         app.helper('helper' + num, function() {\n    //           this.log(\"I'm helper number \" + num);\n    //         });\n    //       });\n    //\n    //       this.get('#/', function() {\n    //         this.helper2(); //=> I'm helper number 2\n    //       });\n    //     });\n    //\n    // ### Arguments\n    //\n    // * `name` The name of the method\n    // * `method` The function to be added to the prototype at `name`\n    //\n    helper: function(name, method) {\n      this.context_prototype.prototype[name] = method;\n      return this;\n    },\n\n    // Actually starts the application's lifecycle. `run()` should be invoked\n    // within a document.ready block to ensure the DOM exists before binding events, etc.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() { ... }); // your application\n    //    $(function() { // document.ready\n    //        app.run();\n    //     });\n    //\n    // ### Arguments\n    //\n    // * `start_url` Optionally, a String can be passed which the App will redirect to\n    //   after the events/routes have been bound.\n    run: function(start_url) {\n      if (this.isRunning()) { return false; }\n      var app = this;\n\n      // actually bind all the listeners\n      $.each(this.listeners.toHash(), function(name, callbacks) {\n        $.each(callbacks, function(i, listener_callback) {\n          app._listen(name, listener_callback);\n        });\n      });\n\n      this.trigger('run', {start_url: start_url});\n      this._running = true;\n      // set last location\n      this.last_location = null;\n      if (this.getLocation() == '' && typeof start_url != 'undefined') {\n        this.setLocation(start_url);\n      }\n      // check url\n      this._checkLocation();\n      this._location_proxy.bind();\n      this.bind('location-changed', function() {\n        app._checkLocation();\n      });\n\n      // bind to submit to capture post/put/delete routes\n      /*\n      this.bind('submit', function(e) {\n        var returned = app._checkFormSubmission($(e.target).closest('form'));\n        return (returned === false) ? e.preventDefault() : false;\n      });\n      */\n\n      // bind unload to body unload\n      $(window).bind('beforeunload', function() {\n        app.unload();\n      });\n\n      // trigger html changed\n      return this.trigger('changed');\n    },\n\n    // The opposite of `run()`, un-binds all event listeners and intervals\n    // `run()` Automaticaly binds a `onunload` event to run this when\n    // the document is closed.\n    unload: function() {\n      if (!this.isRunning()) { return false; }\n      var app = this;\n      this.trigger('unload');\n      // clear interval\n      this._location_proxy.unbind();\n      // unbind form submits\n      this.$element().unbind('submit').removeClass(app.eventNamespace());\n      // unbind all events\n      $.each(this.listeners.toHash() , function(name, listeners) {\n        $.each(listeners, function(i, listener_callback) {\n          app._unlisten(name, listener_callback);\n        });\n      });\n      this._running = false;\n      return this;\n    },\n\n    // Will bind a single callback function to every event that is already\n    // being listened to in the app. This includes all the `APP_EVENTS`\n    // as well as any custom events defined with `bind()`.\n    //\n    // Used internally for debug logging.\n    bindToAllEvents: function(callback) {\n      var app = this;\n      // bind to the APP_EVENTS first\n      $.each(this.APP_EVENTS, function(i, e) {\n        app.bind(e, callback);\n      });\n      // next, bind to listener names (only if they dont exist in APP_EVENTS)\n      $.each(this.listeners.keys(true), function(i, name) {\n        if (app.APP_EVENTS.indexOf(name) == -1) {\n          app.bind(name, callback);\n        }\n      });\n      return this;\n    },\n\n    // Returns a copy of the given path with any query string after the hash\n    // removed.\n    routablePath: function(path) {\n      return path.replace(QUERY_STRING_MATCHER, '');\n    },\n\n    // Given a verb and a String path, will return either a route object or false\n    // if a matching route can be found within the current defined set.\n    lookupRoute: function(verb, path) {\n      var app = this, routed = false;\n      this.trigger('lookup-route', {verb: verb, path: path});\n      if (typeof this.routes[verb] != 'undefined') {\n        $.each(this.routes[verb], function(i, route) {\n          if (app.routablePath(path).match(route.path)) {\n            routed = route;\n            return false;\n          }\n        });\n      }\n      return routed;\n    },\n\n    // First, invokes `lookupRoute()` and if a route is found, parses the\n    // possible URL params and then invokes the route's callback within a new\n    // `Sammy.EventContext`. If the route can not be found, it calls\n    // `notFound()`. If `raise_errors` is set to `true` and\n    // the `error()` has not been overriden, it will throw an actual JS\n    // error.\n    //\n    // You probably will never have to call this directly.\n    //\n    // ### Arguments\n    //\n    // * `verb` A String for the verb.\n    // * `path` A String path to lookup.\n    // * `params` An Object of Params pulled from the URI or passed directly.\n    //\n    // ### Returns\n    //\n    // Either returns the value returned by the route callback or raises a 404 Not Found error.\n    //\n    runRoute: function(verb, path, params, target) {\n      var app = this,\n          route = this.lookupRoute(verb, path),\n          context,\n          wrapped_route,\n          arounds,\n          around,\n          befores,\n          before,\n          callback_args,\n          path_params,\n          final_returned;\n\n      this.log('runRoute', [verb, path].join(' '));\n      this.trigger('run-route', {verb: verb, path: path, params: params});\n      if (typeof params == 'undefined') { params = {}; }\n\n      $.extend(params, this._parseQueryString(path));\n\n      if (route) {\n        this.trigger('route-found', {route: route});\n        // pull out the params from the path\n        if ((path_params = route.path.exec(this.routablePath(path))) !== null) {\n          // first match is the full path\n          path_params.shift();\n          // for each of the matches\n          $.each(path_params, function(i, param) {\n            // if theres a matching param name\n            if (route.param_names[i]) {\n              // set the name to the match\n              params[route.param_names[i]] = _decode(param);\n            } else {\n              // initialize 'splat'\n              if (!params.splat) { params.splat = []; }\n              params.splat.push(_decode(param));\n            }\n          });\n        }\n\n        // set event context\n        context  = new this.context_prototype(this, verb, path, params, target);\n        // ensure arrays\n        arounds = this.arounds.slice(0);\n        befores = this.befores.slice(0);\n        // set the callback args to the context + contents of the splat\n        callback_args = [context].concat(params.splat);\n        // wrap the route up with the before filters\n        wrapped_route = function() {\n          var returned;\n          while (befores.length > 0) {\n            before = befores.shift();\n            // check the options\n            if (app.contextMatchesOptions(context, before[0])) {\n              returned = before[1].apply(context, [context]);\n              if (returned === false) { return false; }\n            }\n          }\n          app.last_route = route;\n          context.trigger('event-context-before', {context: context});\n          returned = route.callback.apply(context, callback_args);\n          context.trigger('event-context-after', {context: context});\n          return returned;\n        };\n        $.each(arounds.reverse(), function(i, around) {\n          var last_wrapped_route = wrapped_route;\n          wrapped_route = function() { return around.apply(context, [last_wrapped_route]); };\n        });\n        try {\n          final_returned = wrapped_route();\n        } catch(e) {\n          this.error(['500 Error', verb, path].join(' '), e);\n        }\n        return final_returned;\n      } else {\n        return this.notFound(verb, path);\n      }\n    },\n\n    // Matches an object of options against an `EventContext` like object that\n    // contains `path` and `verb` attributes. Internally Sammy uses this\n    // for matching `before()` filters against specific options. You can set the\n    // object to _only_ match certain paths or verbs, or match all paths or verbs _except_\n    // those that match the options.\n    //\n    // ### Example\n    //\n    //     var app = $.sammy(),\n    //         context = {verb: 'get', path: '#/mypath'};\n    //\n    //     // match against a path string\n    //     app.contextMatchesOptions(context, '#/mypath'); //=> true\n    //     app.contextMatchesOptions(context, '#/otherpath'); //=> false\n    //     // equivilent to\n    //     app.contextMatchesOptions(context, {only: {path:'#/mypath'}}); //=> true\n    //     app.contextMatchesOptions(context, {only: {path:'#/otherpath'}}); //=> false\n    //     // match against a path regexp\n    //     app.contextMatchesOptions(context, /path/); //=> true\n    //     app.contextMatchesOptions(context, /^path/); //=> false\n    //     // match only a verb\n    //     app.contextMatchesOptions(context, {only: {verb:'get'}}); //=> true\n    //     app.contextMatchesOptions(context, {only: {verb:'post'}}); //=> false\n    //     // match all except a verb\n    //     app.contextMatchesOptions(context, {except: {verb:'post'}}); //=> true\n    //     app.contextMatchesOptions(context, {except: {verb:'get'}}); //=> false\n    //     // match all except a path\n    //     app.contextMatchesOptions(context, {except: {path:'#/otherpath'}}); //=> true\n    //     app.contextMatchesOptions(context, {except: {path:'#/mypath'}}); //=> false\n    //\n    contextMatchesOptions: function(context, match_options, positive) {\n      // empty options always match\n      var options = match_options;\n      if (typeof options === 'undefined' || options == {}) {\n        return true;\n      }\n      if (typeof positive === 'undefined') {\n        positive = true;\n      }\n      // normalize options\n      if (typeof options === 'string' || _isFunction(options.test)) {\n        options = {path: options};\n      }\n      if (options.only) {\n        return this.contextMatchesOptions(context, options.only, true);\n      } else if (options.except) {\n        return this.contextMatchesOptions(context, options.except, false);\n      }\n      var path_matched = true, verb_matched = true;\n      if (options.path) {\n        // wierd regexp test\n        if (_isFunction(options.path.test)) {\n          path_matched = options.path.test(context.path);\n        } else {\n          path_matched = (options.path.toString() === context.path);\n        }\n      }\n      if (options.verb) {\n        verb_matched = options.verb === context.verb;\n      }\n      return positive ? (verb_matched && path_matched) : !(verb_matched && path_matched);\n    },\n\n\n    // Delegates to the `location_proxy` to get the current location.\n    // See `Sammy.HashLocationProxy` for more info on location proxies.\n    getLocation: function() {\n      return this._location_proxy.getLocation();\n    },\n\n    // Delegates to the `location_proxy` to set the current location.\n    // See `Sammy.HashLocationProxy` for more info on location proxies.\n    //\n    // ### Arguments\n    //\n    // * `new_location` A new location string (e.g. '#/')\n    //\n    setLocation: function(new_location) {\n      return this._location_proxy.setLocation(new_location);\n    },\n\n    // Swaps the content of `$element()` with `content`\n    // You can override this method to provide an alternate swap behavior\n    // for `EventContext.partial()`.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      // implements a 'fade out'/'fade in'\n    //      this.swap = function(content) {\n    //        this.$element().hide('slow').html(content).show('slow');\n    //      }\n    //\n    //      get('#/', function() {\n    //        this.partial('index.html.erb') // will fade out and in\n    //      });\n    //\n    //    });\n    //\n    swap: function(content) {\n      return this.$element().html(content);\n    },\n\n    // a simple global cache for templates. Uses the same semantics as\n    // `Sammy.Cache` and `Sammy.Storage` so can easily be replaced with\n    // a persistant storage that lasts beyond the current request.\n    templateCache: function(key, value) {\n      if (typeof value != 'undefined') {\n        return _template_cache[key] = value;\n      } else {\n        return _template_cache[key];\n      }\n    },\n\n    // clear the templateCache\n    clearTemplateCache: function() {\n      return _template_cache = {};\n    },\n\n    // This thows a '404 Not Found' error by invoking `error()`.\n    // Override this method or `error()` to provide custom\n    // 404 behavior (i.e redirecting to / or showing a warning)\n    notFound: function(verb, path) {\n      var ret = this.error(['404 Not Found', verb, path].join(' '));\n      return (verb === 'get') ? ret : true;\n    },\n\n    // The base error handler takes a string `message` and an `Error`\n    // object. If `raise_errors` is set to `true` on the app level,\n    // this will re-throw the error to the browser. Otherwise it will send the error\n    // to `log()`. Override this method to provide custom error handling\n    // e.g logging to a server side component or displaying some feedback to the\n    // user.\n    error: function(message, original_error) {\n      if (!original_error) { original_error = new Error(); }\n      original_error.message = [message, original_error.message].join(' ');\n      this.trigger('error', {message: original_error.message, error: original_error});\n      if (this.raise_errors) {\n        throw(original_error);\n      } else {\n        this.log(original_error.message, original_error);\n      }\n    },\n\n    _checkLocation: function() {\n      var location, returned;\n      // get current location\n      location = this.getLocation();\n      // compare to see if hash has changed\n      if (!this.last_location || this.last_location[0] != 'get' || this.last_location[1] != location) {\n        // reset last location\n        this.last_location = ['get', location];\n        // lookup route for current hash\n        returned = this.runRoute('get', location);\n      }\n      return returned;\n    },\n\n    _getFormVerb: function(form) {\n      var $form = $(form), verb, $_method;\n      $_method = $form.find('input[name=\"_method\"]');\n      if ($_method.length > 0) { verb = $_method.val(); }\n      if (!verb) { verb = $form[0].getAttribute('method'); }\n      return $.trim(verb.toString().toLowerCase());\n    },\n\n    _checkFormSubmission: function(form) {\n      var $form, path, verb, params, returned;\n      this.trigger('check-form-submission', {form: form});\n      $form = $(form);\n      path  = $form.attr('action');\n      verb  = this._getFormVerb($form);\n      if (!verb || verb == '') { verb = 'get'; }\n      this.log('_checkFormSubmission', $form, path, verb);\n      if (verb === 'get') {\n        this.setLocation(path + '?' + this._serializeFormParams($form));\n        returned = false;\n      } else {\n        params = $.extend({}, this._parseFormParams($form));\n        returned = this.runRoute(verb, path, params, form.get(0));\n      };\n      return (typeof returned == 'undefined') ? false : returned;\n    },\n\n    _serializeFormParams: function($form) {\n       var queryString = \"\",\n         fields = $form.serializeArray(),\n         i;\n       if (fields.length > 0) {\n         queryString = this._encodeFormPair(fields[0].name, fields[0].value);\n         for (i = 1; i < fields.length; i++) {\n           queryString = queryString + \"&\" + this._encodeFormPair(fields[i].name, fields[i].value);\n         }\n       }\n       return queryString;\n    },\n\n    _encodeFormPair: function(name, value){\n      return _encode(name) + \"=\" + _encode(value);\n    },\n\n    _parseFormParams: function($form) {\n      var params = {},\n          form_fields = $form.serializeArray(),\n          i;\n      for (i = 0; i < form_fields.length; i++) {\n        params = this._parseParamPair(params, form_fields[i].name, form_fields[i].value);\n      }\n      return params;\n    },\n\n    _parseQueryString: function(path) {\n      var params = {}, parts, pairs, pair, i;\n\n      parts = path.match(QUERY_STRING_MATCHER);\n      if (parts) {\n        pairs = parts[1].split('&');\n        for (i = 0; i < pairs.length; i++) {\n          pair = pairs[i].split('=');\n          params = this._parseParamPair(params, _decode(pair[0]), _decode(pair[1]));\n        }\n      }\n      return params;\n    },\n\n    _parseParamPair: function(params, key, value) {\n      if (params[key]) {\n        if (_isArray(params[key])) {\n          params[key].push(value);\n        } else {\n          params[key] = [params[key], value];\n        }\n      } else {\n        params[key] = value;\n      }\n      return params;\n    },\n\n    _listen: function(name, callback) {\n      return this.$element().bind([name, this.eventNamespace()].join('.'), callback);\n    },\n\n    _unlisten: function(name, callback) {\n      return this.$element().unbind([name, this.eventNamespace()].join('.'), callback);\n    }\n\n  });\n\n  // `Sammy.RenderContext` is an object that makes sequential template loading,\n  // rendering and interpolation seamless even when dealing with asyncronous\n  // operations.\n  //\n  // `RenderContext` objects are not usually created directly, rather they are\n  // instatiated from an `Sammy.EventContext` by using `render()`, `load()` or\n  // `partial()` which all return `RenderContext` objects.\n  //\n  // `RenderContext` methods always returns a modified `RenderContext`\n  // for chaining (like jQuery itself).\n  //\n  // The core magic is in the `then()` method which puts the callback passed as\n  // an argument into a queue to be executed once the previous callback is complete.\n  // All the methods of `RenderContext` are wrapped in `then()` which allows you\n  // to queue up methods by chaining, but maintaing a guarunteed execution order\n  // even with remote calls to fetch templates.\n  //\n  Sammy.RenderContext = function(event_context) {\n    this.event_context    = event_context;\n    this.callbacks        = [];\n    this.previous_content = null;\n    this.content          = null;\n    this.next_engine      = false;\n    this.waiting          = false;\n  };\n\n  Sammy.RenderContext.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // The \"core\" of the `RenderContext` object, adds the `callback` to the\n    // queue. If the context is `waiting` (meaning an async operation is happening)\n    // then the callback will be executed in order, once the other operations are\n    // complete. If there is no currently executing operation, the `callback`\n    // is executed immediately.\n    //\n    // The value returned from the callback is stored in `content` for the\n    // subsiquent operation. If you return `false`, the queue will pause, and\n    // the next callback in the queue will not be executed until `next()` is\n    // called. This allows for the guarunteed order of execution while working\n    // with async operations.\n    //\n    // If then() is passed a string instead of a function, the string is looked\n    // up as a helper method on the event context.\n    //\n    // ### Example\n    //\n    //      this.get('#/', function() {\n    //        // initialize the RenderContext\n    //        // Even though `load()` executes async, the next `then()`\n    //        // wont execute until the load finishes\n    //        this.load('myfile.txt')\n    //            .then(function(content) {\n    //              // the first argument to then is the content of the\n    //              // prev operation\n    //              $('#main').html(content);\n    //            });\n    //      });\n    //\n    then: function(callback) {\n      if (!_isFunction(callback)) {\n        // if a string is passed to then, assume we want to call\n        // a helper on the event context in its context\n        if (typeof callback === 'string' && callback in this.event_context) {\n          var helper = this.event_context[callback];\n          callback = function(content) {\n            return helper.apply(this.event_context, [content]);\n          };\n        } else {\n          return this;\n        }\n      }\n      var context = this;\n      if (this.waiting) {\n        this.callbacks.push(callback);\n      } else {\n        this.wait();\n        window.setTimeout(function() {\n          var returned = callback.apply(context, [context.content, context.previous_content]);\n          if (returned !== false) {\n            context.next(returned);\n          }\n        }, 13);\n      }\n      return this;\n    },\n\n    // Pause the `RenderContext` queue. Combined with `next()` allows for async\n    // operations.\n    //\n    // ### Example\n    //\n    //        this.get('#/', function() {\n    //          this.load('mytext.json')\n    //              .then(function(content) {\n    //                var context = this,\n    //                    data    = JSON.parse(content);\n    //                // pause execution\n    //                context.wait();\n    //                // post to a url\n    //                $.post(data.url, {}, function(response) {\n    //                  context.next(JSON.parse(response));\n    //                });\n    //              })\n    //              .then(function(data) {\n    //                // data is json from the previous post\n    //                $('#message').text(data.status);\n    //              });\n    //        });\n    wait: function() {\n      this.waiting = true;\n    },\n\n    // Resume the queue, setting `content` to be used in the next operation.\n    // See `wait()` for an example.\n    next: function(content) {\n      this.waiting = false;\n      if (typeof content !== 'undefined') {\n        this.previous_content = this.content;\n        this.content = content;\n      }\n      if (this.callbacks.length > 0) {\n        this.then(this.callbacks.shift());\n      }\n    },\n\n    // Load a template into the context.\n    // The `location` can either be a string specifiying the remote path to the\n    // file, a jQuery object, or a DOM element.\n    //\n    // No interpolation happens by default, the content is stored in\n    // `content`.\n    //\n    // In the case of a path, unless the option `{cache: false}` is passed the\n    // data is stored in the app's `templateCache()`.\n    //\n    // If a jQuery or DOM object is passed the `innerHTML` of the node is pulled in.\n    // This is useful for nesting templates as part of the initial page load wrapped\n    // in invisible elements or `<script>` tags. With template paths, the template\n    // engine is looked up by the extension. For DOM/jQuery embedded templates,\n    // this isnt possible, so there are a couple of options:\n    //\n    //  * pass an `{engine:}` option.\n    //  * define the engine in the `data-engine` attribute of the passed node.\n    //  * just store the raw template data and use `interpolate()` manually\n    //\n    // If a `callback` is passed it is executed after the template load.\n    load: function(location, options, callback) {\n      var context = this;\n      return this.then(function() {\n        var should_cache, cached, is_json, location_array;\n        if (_isFunction(options)) {\n          callback = options;\n          options = {};\n        } else {\n          options = $.extend({}, options);\n        }\n        if (callback) { this.then(callback); }\n        if (typeof location === 'string') {\n          // its a path\n          is_json      = (location.match(/\\.json$/) || options.json);\n          should_cache = ((is_json && options.cache === true) || options.cache !== false);\n          context.next_engine = context.event_context.engineFor(location);\n          delete options.cache;\n          delete options.json;\n          if (options.engine) {\n            context.next_engine = options.engine;\n            delete options.engine;\n          }\n          if (should_cache && (cached = this.event_context.app.templateCache(location))) {\n            return cached;\n          }\n          this.wait();\n          $.ajax($.extend({\n            url: location,\n            data: {},\n            dataType: is_json ? 'json' : null,\n            type: 'get',\n            success: function(data) {\n              if (should_cache) {\n                context.event_context.app.templateCache(location, data);\n              }\n              context.next(data);\n            }\n          }, options));\n          return false;\n        } else {\n          // its a dom/jQuery\n          if (location.nodeType) {\n            return location.innerHTML;\n          }\n          if (location.selector) {\n            // its a jQuery\n            context.next_engine = location.attr('data-engine');\n            if (options.clone === false) {\n              return location.remove()[0].innerHTML.toString();\n            } else {\n              return location[0].innerHTML.toString();\n            }\n          }\n        }\n      });\n    },\n\n    // `load()` a template and then `interpolate()` it with data.\n    //\n    // ### Example\n    //\n    //      this.get('#/', function() {\n    //        this.render('mytemplate.template', {name: 'test'});\n    //      });\n    //\n    render: function(location, data, callback) {\n      if (_isFunction(location) && !data) {\n        return this.then(location);\n      } else {\n        if (!data && this.content) { data = this.content; }\n        return this.load(location)\n                   .interpolate(data, location)\n                   .then(callback);\n      }\n    },\n\n    // `render()` the the `location` with `data` and then `swap()` the\n    // app's `$element` with the rendered content.\n    partial: function(location, data) {\n      return this.render(location, data).swap();\n    },\n\n    // defers the call of function to occur in order of the render queue.\n    // The function can accept any number of arguments as long as the last\n    // argument is a callback function. This is useful for putting arbitrary\n    // asynchronous functions into the queue. The content passed to the\n    // callback is passed as `content` to the next item in the queue.\n    //\n    // === Example\n    //\n    //        this.send($.getJSON, '/app.json')\n    //            .then(function(json) {\n    //              $('#message).text(json['message']);\n    //            });\n    //\n    //\n    send: function() {\n      var context = this,\n          args = _makeArray(arguments),\n          fun  = args.shift();\n\n      if (_isArray(args[0])) { args = args[0]; }\n\n      return this.then(function(content) {\n        args.push(function(response) { context.next(response); });\n        context.wait();\n        fun.apply(fun, args);\n        return false;\n      });\n    },\n\n    // itterates over an array, applying the callback for each item item. the\n    // callback takes the same style of arguments as `jQuery.each()` (index, item).\n    // The return value of each callback is collected as a single string and stored\n    // as `content` to be used in the next iteration of the `RenderContext`.\n    collect: function(array, callback, now) {\n      var context = this;\n      var coll = function() {\n        if (_isFunction(array)) {\n          callback = array;\n          array = this.content;\n        }\n        var contents = [], doms = false;\n        $.each(array, function(i, item) {\n          var returned = callback.apply(context, [i, item]);\n          if (returned.jquery && returned.length == 1) {\n            returned = returned[0];\n            doms = true;\n          }\n          contents.push(returned);\n          return returned;\n        });\n        return doms ? contents : contents.join('');\n      };\n      return now ? coll() : this.then(coll);\n    },\n\n    // loads a template, and then interpolates it for each item in the `data`\n    // array. If a callback is passed, it will call the callback with each\n    // item in the array _after_ interpolation\n    renderEach: function(location, name, data, callback) {\n      if (_isArray(name)) {\n        callback = data;\n        data = name;\n        name = null;\n      }\n      return this.load(location).then(function(content) {\n          var rctx = this;\n          if (!data) {\n            data = _isArray(this.previous_content) ? this.previous_content : [];\n          }\n          if (callback) {\n            $.each(data, function(i, value) {\n              var idata = {}, engine = this.next_engine || location;\n              name ? (idata[name] = value) : (idata = value);\n              callback(value, rctx.event_context.interpolate(content, idata, engine));\n            });\n          } else {\n            return this.collect(data, function(i, value) {\n              var idata = {}, engine = this.next_engine || location;\n              name ? (idata[name] = value) : (idata = value);\n              return this.event_context.interpolate(content, idata, engine);\n            }, true);\n          }\n      });\n    },\n\n    // uses the previous loaded `content` and the `data` object to interpolate\n    // a template. `engine` defines the templating/interpolation method/engine\n    // that should be used. If `engine` is not passed, the `next_engine` is\n    // used. If `retain` is `true`, the final interpolated data is appended to\n    // the `previous_content` instead of just replacing it.\n    interpolate: function(data, engine, retain) {\n      var context = this;\n      return this.then(function(content, prev) {\n        if (!data && prev) { data = prev; }\n        if (this.next_engine) {\n          engine = this.next_engine;\n          this.next_engine = false;\n        }\n        var rendered = context.event_context.interpolate(content, data, engine);\n        return retain ? prev + rendered : rendered;\n      });\n    },\n\n    // executes `EventContext#swap()` with the `content`\n    swap: function() {\n      return this.then(function(content) {\n        this.event_context.swap(content);\n      }).trigger('changed', {});\n    },\n\n    // Same usage as `jQuery.fn.appendTo()` but uses `then()` to ensure order\n    appendTo: function(selector) {\n      return this.then(function(content) {\n        $(selector).append(content);\n      }).trigger('changed', {});\n    },\n\n    // Same usage as `jQuery.fn.prependTo()` but uses `then()` to ensure order\n    prependTo: function(selector) {\n      return this.then(function(content) {\n        $(selector).prepend(content);\n      }).trigger('changed', {});\n    },\n\n    // Replaces the `$(selector)` using `html()` with the previously loaded\n    // `content`\n    replace: function(selector) {\n      return this.then(function(content) {\n        $(selector).html(content);\n      }).trigger('changed', {});\n    },\n\n    // trigger the event in the order of the event context. Same semantics\n    // as `Sammy.EventContext#trigger()`. If data is ommitted, `content`\n    // is sent as `{content: content}`\n    trigger: function(name, data) {\n      return this.then(function(content) {\n        if (typeof data == 'undefined') { data = {content: content}; }\n        this.event_context.trigger(name, data);\n      });\n    }\n\n  });\n\n  // `Sammy.EventContext` objects are created every time a route is run or a\n  // bound event is triggered. The callbacks for these events are evaluated within a `Sammy.EventContext`\n  // This within these callbacks the special methods of `EventContext` are available.\n  //\n  // ### Example\n  //\n  //  $.sammy(function() {\n  //    // The context here is this Sammy.Application\n  //    this.get('#/:name', function() {\n  //      // The context here is a new Sammy.EventContext\n  //      if (this.params['name'] == 'sammy') {\n  //        this.partial('name.html.erb', {name: 'Sammy'});\n  //      } else {\n  //        this.redirect('#/somewhere-else')\n  //      }\n  //    });\n  //  });\n  //\n  // Initialize a new EventContext\n  //\n  // ### Arguments\n  //\n  // * `app` The `Sammy.Application` this event is called within.\n  // * `verb` The verb invoked to run this context/route.\n  // * `path` The string path invoked to run this context/route.\n  // * `params` An Object of optional params to pass to the context. Is converted\n  //   to a `Sammy.Object`.\n  // * `target` a DOM element that the event that holds this context originates\n  //   from. For post, put and del routes, this is the form element that triggered\n  //   the route.\n  //\n  Sammy.EventContext = function(app, verb, path, params, target) {\n    this.app    = app;\n    this.verb   = verb;\n    this.path   = path;\n    this.params = new Sammy.Object(params);\n    this.target = target;\n  };\n\n  Sammy.EventContext.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // A shortcut to the app's `$element()`\n    $element: function() {\n      return this.app.$element(_makeArray(arguments).shift());\n    },\n\n    // Look up a templating engine within the current app and context.\n    // `engine` can be one of the following:\n    //\n    // * a function: should conform to `function(content, data) { return interploated; }`\n    // * a template path: 'template.ejs', looks up the extension to match to\n    //   the `ejs()` helper\n    // * a string referering to the helper: \"mustache\" => `mustache()`\n    //\n    // If no engine is found, use the app's default `template_engine`\n    //\n    engineFor: function(engine) {\n      var context = this, engine_match;\n      // if path is actually an engine function just return it\n      if (_isFunction(engine)) { return engine; }\n      // lookup engine name by path extension\n      engine = (engine || context.app.template_engine).toString();\n      if ((engine_match = engine.match(/\\.([^\\.]+)$/))) {\n        engine = engine_match[1];\n      }\n      // set the engine to the default template engine if no match is found\n      if (engine && _isFunction(context[engine])) {\n        return context[engine];\n      }\n\n      if (context.app.template_engine) {\n        return this.engineFor(context.app.template_engine);\n      }\n      return function(content, data) { return content; };\n    },\n\n    // using the template `engine` found with `engineFor()`, interpolate the\n    // `data` into `content`\n    interpolate: function(content, data, engine) {\n      return this.engineFor(engine).apply(this, [content, data]);\n    },\n\n    // Create and return a `Sammy.RenderContext` calling `render()` on it.\n    // Loads the template and interpolate the data, however does not actual\n    // place it in the DOM.\n    //\n    // ### Example\n    //\n    //      // mytemplate.mustache <div class=\"name\">{{name}}</div>\n    //      render('mytemplate.mustache', {name: 'quirkey'});\n    //      // sets the `content` to <div class=\"name\">quirkey</div>\n    //      render('mytemplate.mustache', {name: 'quirkey'})\n    //        .appendTo('ul');\n    //      // appends the rendered content to $('ul')\n    //\n    render: function(location, data, callback) {\n      return new Sammy.RenderContext(this).render(location, data, callback);\n    },\n\n    // Create and return a `Sammy.RenderContext` calling `renderEach()` on it.\n    // Loads the template and interpolates the data for each item,\n    // however does not actual place it in the DOM.\n    //\n    // ### Example\n    //\n    //      // mytemplate.mustache <div class=\"name\">{{name}}</div>\n    //      renderEach('mytemplate.mustache', [{name: 'quirkey'}, {name: 'endor'}])\n    //      // sets the `content` to <div class=\"name\">quirkey</div><div class=\"name\">endor</div>\n    //      renderEach('mytemplate.mustache', [{name: 'quirkey'}, {name: 'endor'}]).appendTo('ul');\n    //      // appends the rendered content to $('ul')\n    //\n    renderEach: function(location, name, data, callback) {\n      return new Sammy.RenderContext(this).renderEach(location, name, data, callback);\n    },\n\n    // create a new `Sammy.RenderContext` calling `load()` with `location` and\n    // `options`. Called without interpolation or placement, this allows for\n    // preloading/caching the templates.\n    load: function(location, options, callback) {\n      return new Sammy.RenderContext(this).load(location, options, callback);\n    },\n\n    // `render()` the the `location` with `data` and then `swap()` the\n    // app's `$element` with the rendered content.\n    partial: function(location, data) {\n      return new Sammy.RenderContext(this).partial(location, data);\n    },\n\n    // create a new `Sammy.RenderContext` calling `send()` with an arbitrary\n    // function\n    send: function() {\n      var rctx = new Sammy.RenderContext(this);\n      return rctx.send.apply(rctx, arguments);\n    },\n\n    // Changes the location of the current window. If `to` begins with\n    // '#' it only changes the document's hash. If passed more than 1 argument\n    // redirect will join them together with forward slashes.\n    //\n    // ### Example\n    //\n    //      redirect('#/other/route');\n    //      // equivilent to\n    //      redirect('#', 'other', 'route');\n    //\n    redirect: function() {\n      var to, args = _makeArray(arguments),\n          current_location = this.app.getLocation();\n      if (args.length > 1) {\n        args.unshift('/');\n        to = this.join.apply(this, args);\n      } else {\n        to = args[0];\n      }\n      this.trigger('redirect', {to: to});\n      this.app.last_location = [this.verb, this.path];\n      this.app.setLocation(to);\n      if (current_location == to) {\n        this.app.trigger('location-changed');\n      }\n    },\n\n    // Triggers events on `app` within the current context.\n    trigger: function(name, data) {\n      if (typeof data == 'undefined') { data = {}; }\n      if (!data.context) { data.context = this; }\n      return this.app.trigger(name, data);\n    },\n\n    // A shortcut to app's `eventNamespace()`\n    eventNamespace: function() {\n      return this.app.eventNamespace();\n    },\n\n    // A shortcut to app's `swap()`\n    swap: function(contents) {\n      return this.app.swap(contents);\n    },\n\n    // Raises a possible `notFound()` error for the current path.\n    notFound: function() {\n      return this.app.notFound(this.verb, this.path);\n    },\n\n    // Default JSON parsing uses jQuery's `parseJSON()`. Include `Sammy.JSON`\n    // plugin for the more conformant \"crockford special\".\n    json: function(string) {\n      return $.parseJSON(string);\n    },\n\n    // //=> Sammy.EventContext: get #/ {}\n    toString: function() {\n      return \"Sammy.EventContext: \" + [this.verb, this.path, this.params].join(' ');\n    }\n\n  });\n\n  // An alias to Sammy\n  $.sammy = window.Sammy = Sammy;\n\n})(jQuery, window);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/jquery.timeago.js",
    "content": "/*\n * timeago: a jQuery plugin, version: 0.9.3 (2011-01-21)\n * @requires jQuery v1.2.3 or later\n *\n * Timeago is a jQuery plugin that makes it easy to support automatically\n * updating fuzzy timestamps (e.g. \"4 minutes ago\" or \"about 1 day ago\").\n *\n * For usage and examples, visit:\n * http://timeago.yarp.com/\n *\n * Licensed under the MIT:\n * http://www.opensource.org/licenses/mit-license.php\n *\n * Copyright (c) 2008-2011, Ryan McGeary (ryanonjavascript -[at]- mcgeary [*dot*] org)\n */\n\n(function($) {\n  $.timeago = function(timestamp) {\n    if (timestamp instanceof Date) {\n      return inWords(timestamp);\n    } else if (typeof timestamp === \"string\") {\n      return inWords($.timeago.parse(timestamp));\n    } else {\n      return inWords($.timeago.datetime(timestamp));\n    }\n  };\n  var $t = $.timeago;\n\n  $.extend($.timeago, {\n    settings: {\n      refreshMillis: 60000,\n      allowFuture: false,\n      strings: {\n        prefixAgo: null,\n        prefixFromNow: null,\n        suffixAgo: \"ago\",\n        suffixFromNow: \"from now\",\n        seconds: \"less than a minute\",\n        minute: \"about a minute\",\n        minutes: \"%d minutes\",\n        hour: \"about an hour\",\n        hours: \"about %d hours\",\n        day: \"a day\",\n        days: \"%d days\",\n        month: \"about a month\",\n        months: \"%d months\",\n        year: \"about a year\",\n        years: \"%d years\",\n        numbers: []\n      }\n    },\n    inWords: function(distanceMillis) {\n      var $l = this.settings.strings;\n      var prefix = $l.prefixAgo;\n      var suffix = $l.suffixAgo;\n      if (this.settings.allowFuture) {\n        if (distanceMillis < 0) {\n          prefix = $l.prefixFromNow;\n          suffix = $l.suffixFromNow;\n        }\n        distanceMillis = Math.abs(distanceMillis);\n      }\n\n      var seconds = distanceMillis / 1000;\n      var minutes = seconds / 60;\n      var hours = minutes / 60;\n      var days = hours / 24;\n      var years = days / 365;\n\n      function substitute(stringOrFunction, number) {\n        var string = $.isFunction(stringOrFunction) ? stringOrFunction(number, distanceMillis) : stringOrFunction;\n        var value = ($l.numbers && $l.numbers[number]) || number;\n        return string.replace(/%d/i, value);\n      }\n\n      var words = seconds < 45 && substitute($l.seconds, Math.round(seconds)) ||\n        seconds < 90 && substitute($l.minute, 1) ||\n        minutes < 45 && substitute($l.minutes, Math.round(minutes)) ||\n        minutes < 90 && substitute($l.hour, 1) ||\n        hours < 24 && substitute($l.hours, Math.round(hours)) ||\n        hours < 48 && substitute($l.day, 1) ||\n        days < 30 && substitute($l.days, Math.floor(days)) ||\n        days < 60 && substitute($l.month, 1) ||\n        days < 365 && substitute($l.months, Math.floor(days / 30)) ||\n        years < 2 && substitute($l.year, 1) ||\n        substitute($l.years, Math.floor(years));\n\n      return $.trim([prefix, words, suffix].join(\" \"));\n    },\n    parse: function(iso8601) {\n      var s = $.trim(iso8601);\n      s = s.replace(/\\.\\d\\d\\d+/,\"\"); // remove milliseconds\n      s = s.replace(/-/g,\"/\");\n      s = s.replace(/(\\d)T(\\d)/,\"$1 $2\").replace(/(\\d)Z/,\"$1 UTC\");\n      s = s.replace(/([\\+\\-]\\d\\d)\\:?(\\d\\d)/,\" $1$2\"); // -04:00 -> -0400\n      return new Date(s);\n    },\n    datetime: function(elem) {\n      // jQuery's `is()` doesn't play well with HTML5 in IE\n      var isTime = $(elem).get(0).tagName.toLowerCase() === \"time\"; // $(elem).is(\"time\");\n      \n      var iso8601 = null;\n      \n      if( isTime )\n      {\n        iso8601 = $(elem).attr(\"datetime\");\n      }\n      \n      if( !iso8601 )\n      {\n        iso8601 = $(elem).attr(\"title\");\n      }\n      \n      if( !iso8601 )\n      {\n        iso8601 = $(elem).text();\n      }\n      \n      return $t.parse(iso8601);\n    }\n  });\n\n  $.fn.timeago = function() {\n    var self = this;\n    self.each(refresh);\n\n    var $s = $t.settings;\n    if ($s.refreshMillis > 0) {\n      setInterval(function() { self.each(refresh); }, $s.refreshMillis);\n    }\n    return self;\n  };\n\n  function refresh() {\n    var data = prepareData(this);\n    if (!isNaN(data.datetime)) {\n      $(this).text(inWords(data.datetime));\n    }\n    return this;\n  }\n\n  function prepareData(element) {\n    element = $(element);\n    if (!element.data(\"timeago\")) {\n      element.data(\"timeago\", { datetime: $t.datetime(element) });\n      var text = $.trim(element.text());\n      if (text.length > 0) {\n        element.attr(\"title\", text);\n      }\n    }\n    return element.data(\"timeago\");\n  }\n\n  function inWords(date) {\n    return $t.inWords(distance(date));\n  }\n\n  function distance(date) {\n    return (new Date().getTime() - date.getTime());\n  }\n\n  // fix for IE6 suckage\n  document.createElement(\"abbr\");\n  document.createElement(\"time\");\n}(jQuery));\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/linker.js",
    "content": "//by Michalis Tzikas & Vasilis Lolos\n//07-03-2012\n//v1.0\n/*\nCopyright (C) 2011 by Michalis Tzikas & Vasilis Lolos\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n(function( $ ){\n  $.fn.linker = function(options) {\n    var defaults = {\n      target   : '', //blank,self,parent,top\n      className : '',\n      rel : ''\n    };\n    var options = $.extend(defaults, options);\n        \n    target_string = (options.target != '') ? 'target=\"_'+options.target+'\"' : '';\n    class_string  = (options.className != '') ? 'class=\"'+options.className+'\"' : '';\n    rel_string    = (options.rel != '') ? 'rel=\"'+options.rel+'\"' : '';\n\n    $(this).each(function(){\n      t = $(this).text();\n      \n      t = t.replace(/(https\\:\\/\\/|http:\\/\\/)([www\\.]?)([^\\s|<]+)/gi,'<a href=\"$1$2$3\" '+target_string+' '+class_string+' '+rel_string+'>$1$2$3</a>');\n      t = t.replace(/([^https\\:\\/\\/]|[^http:\\/\\/]|^)(www)\\.([^\\s|<]+)/gi,'$1<a href=\"http://$2.$3\" '+target_string+' '+class_string+' '+rel_string+'>$2.$3</a>');\n      t = t.replace(/<([^a]|^\\/a])([^<>]+)>/g, \"&lt;$1$2&gt;\").replace(/&lt;\\/a&gt;/g, \"</a>\").replace(/<(.)>/g, \"&lt;$1&gt;\").replace(/\\n/g, '<br />');\n\n      $(this).html(t);\n    });\n  };\n})( jQuery );"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/lib/order.js",
    "content": "/**\n * @license RequireJS order 1.0.5 Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved.\n * Available via the MIT or new BSD license.\n * see: http://github.com/jrburke/requirejs for details\n */\n/*jslint nomen: false, plusplus: false, strict: false */\n/*global require: false, define: false, window: false, document: false,\n  setTimeout: false */\n\n//Specify that requirejs optimizer should wrap this code in a closure that\n//maps the namespaced requirejs API to non-namespaced local variables.\n/*requirejs namespace: true */\n\n(function () {\n\n    //Sadly necessary browser inference due to differences in the way\n    //that browsers load and execute dynamically inserted javascript\n    //and whether the script/cache method works when ordered execution is\n    //desired. Currently, Gecko and Opera do not load/fire onload for scripts with\n    //type=\"script/cache\" but they execute injected scripts in order\n    //unless the 'async' flag is present.\n    //However, this is all changing in latest browsers implementing HTML5\n    //spec. With compliant browsers .async true by default, and\n    //if false, then it will execute in order. Favor that test first for forward\n    //compatibility.\n    var testScript = typeof document !== \"undefined\" &&\n                 typeof window !== \"undefined\" &&\n                 document.createElement(\"script\"),\n\n        supportsInOrderExecution = testScript && (testScript.async ||\n                               ((window.opera &&\n                                 Object.prototype.toString.call(window.opera) === \"[object Opera]\") ||\n                               //If Firefox 2 does not have to be supported, then\n                               //a better check may be:\n                               //('mozIsLocallyAvailable' in window.navigator)\n                               (\"MozAppearance\" in document.documentElement.style))),\n\n        //This test is true for IE browsers, which will load scripts but only\n        //execute them once the script is added to the DOM.\n        supportsLoadSeparateFromExecute = testScript &&\n                                          testScript.readyState === 'uninitialized',\n\n        readyRegExp = /^(complete|loaded)$/,\n        cacheWaiting = [],\n        cached = {},\n        scriptNodes = {},\n        scriptWaiting = [];\n\n    //Done with the test script.\n    testScript = null;\n\n    //Callback used by the type=\"script/cache\" callback that indicates a script\n    //has finished downloading.\n    function scriptCacheCallback(evt) {\n        var node = evt.currentTarget || evt.srcElement, i,\n            moduleName, resource;\n\n        if (evt.type === \"load\" || readyRegExp.test(node.readyState)) {\n            //Pull out the name of the module and the context.\n            moduleName = node.getAttribute(\"data-requiremodule\");\n\n            //Mark this cache request as loaded\n            cached[moduleName] = true;\n\n            //Find out how many ordered modules have loaded\n            for (i = 0; (resource = cacheWaiting[i]); i++) {\n                if (cached[resource.name]) {\n                    resource.req([resource.name], resource.onLoad);\n                } else {\n                    //Something in the ordered list is not loaded,\n                    //so wait.\n                    break;\n                }\n            }\n\n            //If just loaded some items, remove them from cacheWaiting.\n            if (i > 0) {\n                cacheWaiting.splice(0, i);\n            }\n\n            //Remove this script tag from the DOM\n            //Use a setTimeout for cleanup because some older IE versions vomit\n            //if removing a script node while it is being evaluated.\n            setTimeout(function () {\n                node.parentNode.removeChild(node);\n            }, 15);\n        }\n    }\n\n    /**\n     * Used for the IE case, where fetching is done by creating script element\n     * but not attaching it to the DOM. This function will be called when that\n     * happens so it can be determined when the node can be attached to the\n     * DOM to trigger its execution.\n     */\n    function onFetchOnly(node) {\n        var i, loadedNode, resourceName;\n\n        //Mark this script as loaded.\n        node.setAttribute('data-orderloaded', 'loaded');\n\n        //Cycle through waiting scripts. If the matching node for them\n        //is loaded, and is in the right order, add it to the DOM\n        //to execute the script.\n        for (i = 0; (resourceName = scriptWaiting[i]); i++) {\n            loadedNode = scriptNodes[resourceName];\n            if (loadedNode &&\n                loadedNode.getAttribute('data-orderloaded') === 'loaded') {\n                delete scriptNodes[resourceName];\n                require.addScriptToDom(loadedNode);\n            } else {\n                break;\n            }\n        }\n\n        //If just loaded some items, remove them from waiting.\n        if (i > 0) {\n            scriptWaiting.splice(0, i);\n        }\n    }\n\n    define({\n        version: '1.0.5',\n\n        load: function (name, req, onLoad, config) {\n            var hasToUrl = !!req.nameToUrl,\n                url, node, context;\n\n            //If no nameToUrl, then probably a build with a loader that\n            //does not support it, and all modules are inlined.\n            if (!hasToUrl) {\n                req([name], onLoad);\n                return;\n            }\n\n            url = req.nameToUrl(name, null);\n\n            //Make sure the async attribute is not set for any pathway involving\n            //this script.\n            require.s.skipAsync[url] = true;\n            if (supportsInOrderExecution || config.isBuild) {\n                //Just a normal script tag append, but without async attribute\n                //on the script.\n                req([name], onLoad);\n            } else if (supportsLoadSeparateFromExecute) {\n                //Just fetch the URL, but do not execute it yet. The\n                //non-standards IE case. Really not so nice because it is\n                //assuming and touching requrejs internals. OK though since\n                //ordered execution should go away after a long while.\n                context = require.s.contexts._;\n\n                if (!context.urlFetched[url] && !context.loaded[name]) {\n                    //Indicate the script is being fetched.\n                    context.urlFetched[url] = true;\n\n                    //Stuff from require.load\n                    require.resourcesReady(false);\n                    context.scriptCount += 1;\n\n                    //Fetch the script now, remember it.\n                    node = require.attach(url, context, name, null, null, onFetchOnly);\n                    scriptNodes[name] = node;\n                    scriptWaiting.push(name);\n                }\n\n                //Do a normal require for it, once it loads, use it as return\n                //value.\n                req([name], onLoad);\n            } else {\n                //Credit to LABjs author Kyle Simpson for finding that scripts\n                //with type=\"script/cache\" allow scripts to be downloaded into\n                //browser cache but not executed. Use that\n                //so that subsequent addition of a real type=\"text/javascript\"\n                //tag will cause the scripts to be executed immediately in the\n                //correct order.\n                if (req.specified(name)) {\n                    req([name], onLoad);\n                } else {\n                    cacheWaiting.push({\n                        name: name,\n                        req: req,\n                        onLoad: onLoad\n                    });\n                    require.attach(url, null, name, scriptCacheCallback, \"script/cache\");\n                }\n            }\n        }\n    });\n}());\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/main.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nrequire\n(\n  [\n    'lib/order!lib/console',\n    'lib/order!jquery',\n    'lib/order!lib/jquery.autogrow',\n    'lib/order!lib/jquery.cookie',\n    'lib/order!lib/jquery.form',\n    'lib/order!lib/jquery.jstree',\n    'lib/order!lib/jquery.sammy',\n    'lib/order!lib/jquery.timeago',\n    'lib/order!lib/jquery.blockUI',\n    'lib/order!lib/highlight',\n    'lib/order!lib/linker',\n    'lib/order!lib/ZeroClipboard',\n    'lib/order!lib/d3',\n    'lib/order!lib/chosen',\n    'lib/order!scripts/app',\n\n    'lib/order!scripts/analysis',\n    'lib/order!scripts/cloud',\n    'lib/order!scripts/cores',\n    'lib/order!scripts/dataimport',\n    'lib/order!scripts/dashboard',\n    'lib/order!scripts/file',\n    'lib/order!scripts/index',\n    'lib/order!scripts/java-properties',\n    'lib/order!scripts/logging',\n    'lib/order!scripts/ping',\n    'lib/order!scripts/plugins',\n    'lib/order!scripts/query',\n    'lib/order!scripts/replication',\n    'lib/order!scripts/schema-browser',\n    'lib/order!scripts/threads'\n  ],\n  function( $ )\n  {\n    app.run();\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/require.js",
    "content": "/** vim: et:ts=4:sw=4:sts=4\n * @license RequireJS 1.0.6 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.\n * Available via the MIT or new BSD license.\n * see: http://github.com/jrburke/requirejs for details\n */\n/*jslint strict: false, plusplus: false, sub: true */\n/*global window, navigator, document, importScripts, jQuery, setTimeout, opera */\n\nvar requirejs, require, define;\n(function () {\n    //Change this version number for each release.\n    var version = \"1.0.6\",\n        commentRegExp = /(\\/\\*([\\s\\S]*?)\\*\\/|([^:]|^)\\/\\/(.*)$)/mg,\n        cjsRequireRegExp = /require\\(\\s*[\"']([^'\"\\s]+)[\"']\\s*\\)/g,\n        currDirRegExp = /^\\.\\//,\n        jsSuffixRegExp = /\\.js$/,\n        ostring = Object.prototype.toString,\n        ap = Array.prototype,\n        aps = ap.slice,\n        apsp = ap.splice,\n        isBrowser = !!(typeof window !== \"undefined\" && navigator && document),\n        isWebWorker = !isBrowser && typeof importScripts !== \"undefined\",\n        //PS3 indicates loaded and complete, but need to wait for complete\n        //specifically. Sequence is \"loading\", \"loaded\", execution,\n        // then \"complete\". The UA check is unfortunate, but not sure how\n        //to feature test w/o causing perf issues.\n        readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ?\n                      /^complete$/ : /^(complete|loaded)$/,\n        defContextName = \"_\",\n        //Oh the tragedy, detecting opera. See the usage of isOpera for reason.\n        isOpera = typeof opera !== \"undefined\" && opera.toString() === \"[object Opera]\",\n        empty = {},\n        contexts = {},\n        globalDefQueue = [],\n        interactiveScript = null,\n        checkLoadedDepth = 0,\n        useInteractive = false,\n        reservedDependencies = {\n            require: true,\n            module: true,\n            exports: true\n        },\n        req, cfg = {}, currentlyAddingScript, s, head, baseElement, scripts, script,\n        src, subPath, mainScript, dataMain, globalI, ctx, jQueryCheck, checkLoadedTimeoutId;\n\n    function isFunction(it) {\n        return ostring.call(it) === \"[object Function]\";\n    }\n\n    function isArray(it) {\n        return ostring.call(it) === \"[object Array]\";\n    }\n\n    /**\n     * Simple function to mix in properties from source into target,\n     * but only if target does not already have a property of the same name.\n     * This is not robust in IE for transferring methods that match\n     * Object.prototype names, but the uses of mixin here seem unlikely to\n     * trigger a problem related to that.\n     */\n    function mixin(target, source, force) {\n        for (var prop in source) {\n            if (!(prop in empty) && (!(prop in target) || force)) {\n                target[prop] = source[prop];\n            }\n        }\n        return req;\n    }\n\n    /**\n     * Constructs an error with a pointer to an URL with more information.\n     * @param {String} id the error ID that maps to an ID on a web page.\n     * @param {String} message human readable error.\n     * @param {Error} [err] the original error, if there is one.\n     *\n     * @returns {Error}\n     */\n    function makeError(id, msg, err) {\n        var e = new Error(msg + '\\nhttp://requirejs.org/docs/errors.html#' + id);\n        if (err) {\n            e.originalError = err;\n        }\n        return e;\n    }\n\n    /**\n     * Used to set up package paths from a packagePaths or packages config object.\n     * @param {Object} pkgs the object to store the new package config\n     * @param {Array} currentPackages an array of packages to configure\n     * @param {String} [dir] a prefix dir to use.\n     */\n    function configurePackageDir(pkgs, currentPackages, dir) {\n        var i, location, pkgObj;\n\n        for (i = 0; (pkgObj = currentPackages[i]); i++) {\n            pkgObj = typeof pkgObj === \"string\" ? { name: pkgObj } : pkgObj;\n            location = pkgObj.location;\n\n            //Add dir to the path, but avoid paths that start with a slash\n            //or have a colon (indicates a protocol)\n            if (dir && (!location || (location.indexOf(\"/\") !== 0 && location.indexOf(\":\") === -1))) {\n                location = dir + \"/\" + (location || pkgObj.name);\n            }\n\n            //Create a brand new object on pkgs, since currentPackages can\n            //be passed in again, and config.pkgs is the internal transformed\n            //state for all package configs.\n            pkgs[pkgObj.name] = {\n                name: pkgObj.name,\n                location: location || pkgObj.name,\n                //Remove leading dot in main, so main paths are normalized,\n                //and remove any trailing .js, since different package\n                //envs have different conventions: some use a module name,\n                //some use a file name.\n                main: (pkgObj.main || \"main\")\n                      .replace(currDirRegExp, '')\n                      .replace(jsSuffixRegExp, '')\n            };\n        }\n    }\n\n    /**\n     * jQuery 1.4.3-1.5.x use a readyWait/ready() pairing to hold DOM\n     * ready callbacks, but jQuery 1.6 supports a holdReady() API instead.\n     * At some point remove the readyWait/ready() support and just stick\n     * with using holdReady.\n     */\n    function jQueryHoldReady($, shouldHold) {\n        if ($.holdReady) {\n            $.holdReady(shouldHold);\n        } else if (shouldHold) {\n            $.readyWait += 1;\n        } else {\n            $.ready(true);\n        }\n    }\n\n    if (typeof define !== \"undefined\") {\n        //If a define is already in play via another AMD loader,\n        //do not overwrite.\n        return;\n    }\n\n    if (typeof requirejs !== \"undefined\") {\n        if (isFunction(requirejs)) {\n            //Do not overwrite and existing requirejs instance.\n            return;\n        } else {\n            cfg = requirejs;\n            requirejs = undefined;\n        }\n    }\n\n    //Allow for a require config object\n    if (typeof require !== \"undefined\" && !isFunction(require)) {\n        //assume it is a config object.\n        cfg = require;\n        require = undefined;\n    }\n\n    /**\n     * Creates a new context for use in require and define calls.\n     * Handle most of the heavy lifting. Do not want to use an object\n     * with prototype here to avoid using \"this\" in require, in case it\n     * needs to be used in more super secure envs that do not want this.\n     * Also there should not be that many contexts in the page. Usually just\n     * one for the default context, but could be extra for multiversion cases\n     * or if a package needs a special context for a dependency that conflicts\n     * with the standard context.\n     */\n    function newContext(contextName) {\n        var context, resume,\n            config = {\n                waitSeconds: 7,\n                baseUrl: \"./\",\n                paths: {},\n                pkgs: {},\n                catchError: {}\n            },\n            defQueue = [],\n            specified = {\n                \"require\": true,\n                \"exports\": true,\n                \"module\": true\n            },\n            urlMap = {},\n            defined = {},\n            loaded = {},\n            waiting = {},\n            waitAry = [],\n            urlFetched = {},\n            managerCounter = 0,\n            managerCallbacks = {},\n            plugins = {},\n            //Used to indicate which modules in a build scenario\n            //need to be full executed.\n            needFullExec = {},\n            fullExec = {},\n            resumeDepth = 0;\n\n        /**\n         * Trims the . and .. from an array of path segments.\n         * It will keep a leading path segment if a .. will become\n         * the first path segment, to help with module name lookups,\n         * which act like paths, but can be remapped. But the end result,\n         * all paths that use this function should look normalized.\n         * NOTE: this method MODIFIES the input array.\n         * @param {Array} ary the array of path segments.\n         */\n        function trimDots(ary) {\n            var i, part;\n            for (i = 0; (part = ary[i]); i++) {\n                if (part === \".\") {\n                    ary.splice(i, 1);\n                    i -= 1;\n                } else if (part === \"..\") {\n                    if (i === 1 && (ary[2] === '..' || ary[0] === '..')) {\n                        //End of the line. Keep at least one non-dot\n                        //path segment at the front so it can be mapped\n                        //correctly to disk. Otherwise, there is likely\n                        //no path mapping for a path starting with '..'.\n                        //This can still fail, but catches the most reasonable\n                        //uses of ..\n                        break;\n                    } else if (i > 0) {\n                        ary.splice(i - 1, 2);\n                        i -= 2;\n                    }\n                }\n            }\n        }\n\n        /**\n         * Given a relative module name, like ./something, normalize it to\n         * a real name that can be mapped to a path.\n         * @param {String} name the relative name\n         * @param {String} baseName a real name that the name arg is relative\n         * to.\n         * @returns {String} normalized name\n         */\n        function normalize(name, baseName) {\n            var pkgName, pkgConfig;\n\n            //Adjust any relative paths.\n            if (name && name.charAt(0) === \".\") {\n                //If have a base name, try to normalize against it,\n                //otherwise, assume it is a top-level require that will\n                //be relative to baseUrl in the end.\n                if (baseName) {\n                    if (config.pkgs[baseName]) {\n                        //If the baseName is a package name, then just treat it as one\n                        //name to concat the name with.\n                        baseName = [baseName];\n                    } else {\n                        //Convert baseName to array, and lop off the last part,\n                        //so that . matches that \"directory\" and not name of the baseName's\n                        //module. For instance, baseName of \"one/two/three\", maps to\n                        //\"one/two/three.js\", but we want the directory, \"one/two\" for\n                        //this normalization.\n                        baseName = baseName.split(\"/\");\n                        baseName = baseName.slice(0, baseName.length - 1);\n                    }\n\n                    name = baseName.concat(name.split(\"/\"));\n                    trimDots(name);\n\n                    //Some use of packages may use a . path to reference the\n                    //\"main\" module name, so normalize for that.\n                    pkgConfig = config.pkgs[(pkgName = name[0])];\n                    name = name.join(\"/\");\n                    if (pkgConfig && name === pkgName + '/' + pkgConfig.main) {\n                        name = pkgName;\n                    }\n                } else if (name.indexOf(\"./\") === 0) {\n                    // No baseName, so this is ID is resolved relative\n                    // to baseUrl, pull off the leading dot.\n                    name = name.substring(2);\n                }\n            }\n            return name;\n        }\n\n        /**\n         * Creates a module mapping that includes plugin prefix, module\n         * name, and path. If parentModuleMap is provided it will\n         * also normalize the name via require.normalize()\n         *\n         * @param {String} name the module name\n         * @param {String} [parentModuleMap] parent module map\n         * for the module name, used to resolve relative names.\n         *\n         * @returns {Object}\n         */\n        function makeModuleMap(name, parentModuleMap) {\n            var index = name ? name.indexOf(\"!\") : -1,\n                prefix = null,\n                parentName = parentModuleMap ? parentModuleMap.name : null,\n                originalName = name,\n                normalizedName, url, pluginModule;\n\n            if (index !== -1) {\n                prefix = name.substring(0, index);\n                name = name.substring(index + 1, name.length);\n            }\n\n            if (prefix) {\n                prefix = normalize(prefix, parentName);\n            }\n\n            //Account for relative paths if there is a base name.\n            if (name) {\n                if (prefix) {\n                    pluginModule = defined[prefix];\n                    if (pluginModule && pluginModule.normalize) {\n                        //Plugin is loaded, use its normalize method.\n                        normalizedName = pluginModule.normalize(name, function (name) {\n                            return normalize(name, parentName);\n                        });\n                    } else {\n                        normalizedName = normalize(name, parentName);\n                    }\n                } else {\n                    //A regular module.\n                    normalizedName = normalize(name, parentName);\n\n                    url = urlMap[normalizedName];\n                    if (!url) {\n                        //Calculate url for the module, if it has a name.\n                        //Use name here since nameToUrl also calls normalize,\n                        //and for relative names that are outside the baseUrl\n                        //this causes havoc. Was thinking of just removing\n                        //parentModuleMap to avoid extra normalization, but\n                        //normalize() still does a dot removal because of\n                        //issue #142, so just pass in name here and redo\n                        //the normalization. Paths outside baseUrl are just\n                        //messy to support.\n                        url = context.nameToUrl(name, null, parentModuleMap);\n\n                        //Store the URL mapping for later.\n                        urlMap[normalizedName] = url;\n                    }\n                }\n            }\n\n            return {\n                prefix: prefix,\n                name: normalizedName,\n                parentMap: parentModuleMap,\n                url: url,\n                originalName: originalName,\n                fullName: prefix ? prefix + \"!\" + (normalizedName || '') : normalizedName\n            };\n        }\n\n        /**\n         * Determine if priority loading is done. If so clear the priorityWait\n         */\n        function isPriorityDone() {\n            var priorityDone = true,\n                priorityWait = config.priorityWait,\n                priorityName, i;\n            if (priorityWait) {\n                for (i = 0; (priorityName = priorityWait[i]); i++) {\n                    if (!loaded[priorityName]) {\n                        priorityDone = false;\n                        break;\n                    }\n                }\n                if (priorityDone) {\n                    delete config.priorityWait;\n                }\n            }\n            return priorityDone;\n        }\n\n        function makeContextModuleFunc(func, relModuleMap, enableBuildCallback) {\n            return function () {\n                //A version of a require function that passes a moduleName\n                //value for items that may need to\n                //look up paths relative to the moduleName\n                var args = aps.call(arguments, 0), lastArg;\n                if (enableBuildCallback &&\n                    isFunction((lastArg = args[args.length - 1]))) {\n                    lastArg.__requireJsBuild = true;\n                }\n                args.push(relModuleMap);\n                return func.apply(null, args);\n            };\n        }\n\n        /**\n         * Helper function that creates a require function object to give to\n         * modules that ask for it as a dependency. It needs to be specific\n         * per module because of the implication of path mappings that may\n         * need to be relative to the module name.\n         */\n        function makeRequire(relModuleMap, enableBuildCallback, altRequire) {\n            var modRequire = makeContextModuleFunc(altRequire || context.require, relModuleMap, enableBuildCallback);\n\n            mixin(modRequire, {\n                nameToUrl: makeContextModuleFunc(context.nameToUrl, relModuleMap),\n                toUrl: makeContextModuleFunc(context.toUrl, relModuleMap),\n                defined: makeContextModuleFunc(context.requireDefined, relModuleMap),\n                specified: makeContextModuleFunc(context.requireSpecified, relModuleMap),\n                isBrowser: req.isBrowser\n            });\n            return modRequire;\n        }\n\n        /*\n         * Queues a dependency for checking after the loader is out of a\n         * \"paused\" state, for example while a script file is being loaded\n         * in the browser, where it may have many modules defined in it.\n         */\n        function queueDependency(manager) {\n            context.paused.push(manager);\n        }\n\n        function execManager(manager) {\n            var i, ret, err, errFile, errModuleTree,\n                cb = manager.callback,\n                map = manager.map,\n                fullName = map.fullName,\n                args = manager.deps,\n                listeners = manager.listeners,\n                cjsModule;\n\n            //Call the callback to define the module, if necessary.\n            if (cb && isFunction(cb)) {\n                if (config.catchError.define) {\n                    try {\n                        ret = req.execCb(fullName, manager.callback, args, defined[fullName]);\n                    } catch (e) {\n                        err = e;\n                    }\n                } else {\n                    ret = req.execCb(fullName, manager.callback, args, defined[fullName]);\n                }\n\n                if (fullName) {\n                    //If setting exports via \"module\" is in play,\n                    //favor that over return value and exports. After that,\n                    //favor a non-undefined return value over exports use.\n                    cjsModule = manager.cjsModule;\n                    if (cjsModule &&\n                        cjsModule.exports !== undefined &&\n                        //Make sure it is not already the exports value\n                        cjsModule.exports !== defined[fullName]) {\n                        ret = defined[fullName] = manager.cjsModule.exports;\n                    } else if (ret === undefined && manager.usingExports) {\n                        //exports already set the defined value.\n                        ret = defined[fullName];\n                    } else {\n                        //Use the return value from the function.\n                        defined[fullName] = ret;\n                        //If this module needed full execution in a build\n                        //environment, mark that now.\n                        if (needFullExec[fullName]) {\n                            fullExec[fullName] = true;\n                        }\n                    }\n                }\n            } else if (fullName) {\n                //May just be an object definition for the module. Only\n                //worry about defining if have a module name.\n                ret = defined[fullName] = cb;\n\n                //If this module needed full execution in a build\n                //environment, mark that now.\n                if (needFullExec[fullName]) {\n                    fullExec[fullName] = true;\n                }\n            }\n\n            //Clean up waiting. Do this before error calls, and before\n            //calling back listeners, so that bookkeeping is correct\n            //in the event of an error and error is reported in correct order,\n            //since the listeners will likely have errors if the\n            //onError function does not throw.\n            if (waiting[manager.id]) {\n                delete waiting[manager.id];\n                manager.isDone = true;\n                context.waitCount -= 1;\n                if (context.waitCount === 0) {\n                    //Clear the wait array used for cycles.\n                    waitAry = [];\n                }\n            }\n\n            //Do not need to track manager callback now that it is defined.\n            delete managerCallbacks[fullName];\n\n            //Allow instrumentation like the optimizer to know the order\n            //of modules executed and their dependencies.\n            if (req.onResourceLoad && !manager.placeholder) {\n                req.onResourceLoad(context, map, manager.depArray);\n            }\n\n            if (err) {\n                errFile = (fullName ? makeModuleMap(fullName).url : '') ||\n                           err.fileName || err.sourceURL;\n                errModuleTree = err.moduleTree;\n                err = makeError('defineerror', 'Error evaluating ' +\n                                'module \"' + fullName + '\" at location \"' +\n                                errFile + '\":\\n' +\n                                err + '\\nfileName:' + errFile +\n                                '\\nlineNumber: ' + (err.lineNumber || err.line), err);\n                err.moduleName = fullName;\n                err.moduleTree = errModuleTree;\n                return req.onError(err);\n            }\n\n            //Let listeners know of this manager's value.\n            for (i = 0; (cb = listeners[i]); i++) {\n                cb(ret);\n            }\n\n            return undefined;\n        }\n\n        /**\n         * Helper that creates a callack function that is called when a dependency\n         * is ready, and sets the i-th dependency for the manager as the\n         * value passed to the callback generated by this function.\n         */\n        function makeArgCallback(manager, i) {\n            return function (value) {\n                //Only do the work if it has not been done\n                //already for a dependency. Cycle breaking\n                //logic in forceExec could mean this function\n                //is called more than once for a given dependency.\n                if (!manager.depDone[i]) {\n                    manager.depDone[i] = true;\n                    manager.deps[i] = value;\n                    manager.depCount -= 1;\n                    if (!manager.depCount) {\n                        //All done, execute!\n                        execManager(manager);\n                    }\n                }\n            };\n        }\n\n        function callPlugin(pluginName, depManager) {\n            var map = depManager.map,\n                fullName = map.fullName,\n                name = map.name,\n                plugin = plugins[pluginName] ||\n                        (plugins[pluginName] = defined[pluginName]),\n                load;\n\n            //No need to continue if the manager is already\n            //in the process of loading.\n            if (depManager.loading) {\n                return;\n            }\n            depManager.loading = true;\n\n            load = function (ret) {\n                depManager.callback = function () {\n                    return ret;\n                };\n                execManager(depManager);\n\n                loaded[depManager.id] = true;\n\n                //The loading of this plugin\n                //might have placed other things\n                //in the paused queue. In particular,\n                //a loader plugin that depends on\n                //a different plugin loaded resource.\n                resume();\n            };\n\n            //Allow plugins to load other code without having to know the\n            //context or how to \"complete\" the load.\n            load.fromText = function (moduleName, text) {\n                /*jslint evil: true */\n                var hasInteractive = useInteractive;\n\n                //Indicate a the module is in process of loading.\n                loaded[moduleName] = false;\n                context.scriptCount += 1;\n\n                //Indicate this is not a \"real\" module, so do not track it\n                //for builds, it does not map to a real file.\n                context.fake[moduleName] = true;\n\n                //Turn off interactive script matching for IE for any define\n                //calls in the text, then turn it back on at the end.\n                if (hasInteractive) {\n                    useInteractive = false;\n                }\n\n                req.exec(text);\n\n                if (hasInteractive) {\n                    useInteractive = true;\n                }\n\n                //Support anonymous modules.\n                context.completeLoad(moduleName);\n            };\n\n            //No need to continue if the plugin value has already been\n            //defined by a build.\n            if (fullName in defined) {\n                load(defined[fullName]);\n            } else {\n                //Use parentName here since the plugin's name is not reliable,\n                //could be some weird string with no path that actually wants to\n                //reference the parentName's path.\n                plugin.load(name, makeRequire(map.parentMap, true, function (deps, cb) {\n                    var moduleDeps = [],\n                        i, dep, depMap;\n                    //Convert deps to full names and hold on to them\n                    //for reference later, when figuring out if they\n                    //are blocked by a circular dependency.\n                    for (i = 0; (dep = deps[i]); i++) {\n                        depMap = makeModuleMap(dep, map.parentMap);\n                        deps[i] = depMap.fullName;\n                        if (!depMap.prefix) {\n                            moduleDeps.push(deps[i]);\n                        }\n                    }\n                    depManager.moduleDeps = (depManager.moduleDeps || []).concat(moduleDeps);\n                    return context.require(deps, cb);\n                }), load, config);\n            }\n        }\n\n        /**\n         * Adds the manager to the waiting queue. Only fully\n         * resolved items should be in the waiting queue.\n         */\n        function addWait(manager) {\n            if (!waiting[manager.id]) {\n                waiting[manager.id] = manager;\n                waitAry.push(manager);\n                context.waitCount += 1;\n            }\n        }\n\n        /**\n         * Function added to every manager object. Created out here\n         * to avoid new function creation for each manager instance.\n         */\n        function managerAdd(cb) {\n            this.listeners.push(cb);\n        }\n\n        function getManager(map, shouldQueue) {\n            var fullName = map.fullName,\n                prefix = map.prefix,\n                plugin = prefix ? plugins[prefix] ||\n                                (plugins[prefix] = defined[prefix]) : null,\n                manager, created, pluginManager, prefixMap;\n\n            if (fullName) {\n                manager = managerCallbacks[fullName];\n            }\n\n            if (!manager) {\n                created = true;\n                manager = {\n                    //ID is just the full name, but if it is a plugin resource\n                    //for a plugin that has not been loaded,\n                    //then add an ID counter to it.\n                    id: (prefix && !plugin ?\n                        (managerCounter++) + '__p@:' : '') +\n                        (fullName || '__r@' + (managerCounter++)),\n                    map: map,\n                    depCount: 0,\n                    depDone: [],\n                    depCallbacks: [],\n                    deps: [],\n                    listeners: [],\n                    add: managerAdd\n                };\n\n                specified[manager.id] = true;\n\n                //Only track the manager/reuse it if this is a non-plugin\n                //resource. Also only track plugin resources once\n                //the plugin has been loaded, and so the fullName is the\n                //true normalized value.\n                if (fullName && (!prefix || plugins[prefix])) {\n                    managerCallbacks[fullName] = manager;\n                }\n            }\n\n            //If there is a plugin needed, but it is not loaded,\n            //first load the plugin, then continue on.\n            if (prefix && !plugin) {\n                prefixMap = makeModuleMap(prefix);\n\n                //Clear out defined and urlFetched if the plugin was previously\n                //loaded/defined, but not as full module (as in a build\n                //situation). However, only do this work if the plugin is in\n                //defined but does not have a module export value.\n                if (prefix in defined && !defined[prefix]) {\n                    delete defined[prefix];\n                    delete urlFetched[prefixMap.url];\n                }\n\n                pluginManager = getManager(prefixMap, true);\n                pluginManager.add(function (plugin) {\n                    //Create a new manager for the normalized\n                    //resource ID and have it call this manager when\n                    //done.\n                    var newMap = makeModuleMap(map.originalName, map.parentMap),\n                        normalizedManager = getManager(newMap, true);\n\n                    //Indicate this manager is a placeholder for the real,\n                    //normalized thing. Important for when trying to map\n                    //modules and dependencies, for instance, in a build.\n                    manager.placeholder = true;\n\n                    normalizedManager.add(function (resource) {\n                        manager.callback = function () {\n                            return resource;\n                        };\n                        execManager(manager);\n                    });\n                });\n            } else if (created && shouldQueue) {\n                //Indicate the resource is not loaded yet if it is to be\n                //queued.\n                loaded[manager.id] = false;\n                queueDependency(manager);\n                addWait(manager);\n            }\n\n            return manager;\n        }\n\n        function main(inName, depArray, callback, relModuleMap) {\n            var moduleMap = makeModuleMap(inName, relModuleMap),\n                name = moduleMap.name,\n                fullName = moduleMap.fullName,\n                manager = getManager(moduleMap),\n                id = manager.id,\n                deps = manager.deps,\n                i, depArg, depName, depPrefix, cjsMod;\n\n            if (fullName) {\n                //If module already defined for context, or already loaded,\n                //then leave. Also leave if jQuery is registering but it does\n                //not match the desired version number in the config.\n                if (fullName in defined || loaded[id] === true ||\n                    (fullName === \"jquery\" && config.jQuery &&\n                     config.jQuery !== callback().fn.jquery)) {\n                    return;\n                }\n\n                //Set specified/loaded here for modules that are also loaded\n                //as part of a layer, where onScriptLoad is not fired\n                //for those cases. Do this after the inline define and\n                //dependency tracing is done.\n                specified[id] = true;\n                loaded[id] = true;\n\n                //If module is jQuery set up delaying its dom ready listeners.\n                if (fullName === \"jquery\" && callback) {\n                    jQueryCheck(callback());\n                }\n            }\n\n            //Attach real depArray and callback to the manager. Do this\n            //only if the module has not been defined already, so do this after\n            //the fullName checks above. IE can call main() more than once\n            //for a module.\n            manager.depArray = depArray;\n            manager.callback = callback;\n\n            //Add the dependencies to the deps field, and register for callbacks\n            //on the dependencies.\n            for (i = 0; i < depArray.length; i++) {\n                depArg = depArray[i];\n                //There could be cases like in IE, where a trailing comma will\n                //introduce a null dependency, so only treat a real dependency\n                //value as a dependency.\n                if (depArg) {\n                    //Split the dependency name into plugin and name parts\n                    depArg = makeModuleMap(depArg, (name ? moduleMap : relModuleMap));\n                    depName = depArg.fullName;\n                    depPrefix = depArg.prefix;\n\n                    //Fix the name in depArray to be just the name, since\n                    //that is how it will be called back later.\n                    depArray[i] = depName;\n\n                    //Fast path CommonJS standard dependencies.\n                    if (depName === \"require\") {\n                        deps[i] = makeRequire(moduleMap);\n                    } else if (depName === \"exports\") {\n                        //CommonJS module spec 1.1\n                        deps[i] = defined[fullName] = {};\n                        manager.usingExports = true;\n                    } else if (depName === \"module\") {\n                        //CommonJS module spec 1.1\n                        manager.cjsModule = cjsMod = deps[i] = {\n                            id: name,\n                            uri: name ? context.nameToUrl(name, null, relModuleMap) : undefined,\n                            exports: defined[fullName]\n                        };\n                    } else if (depName in defined && !(depName in waiting) &&\n                               (!(fullName in needFullExec) ||\n                                (fullName in needFullExec && fullExec[depName]))) {\n                        //Module already defined, and not in a build situation\n                        //where the module is a something that needs full\n                        //execution and this dependency has not been fully\n                        //executed. See r.js's requirePatch.js for more info\n                        //on fullExec.\n                        deps[i] = defined[depName];\n                    } else {\n                        //Mark this dependency as needing full exec if\n                        //the current module needs full exec.\n                        if (fullName in needFullExec) {\n                            needFullExec[depName] = true;\n                            //Reset state so fully executed code will get\n                            //picked up correctly.\n                            delete defined[depName];\n                            urlFetched[depArg.url] = false;\n                        }\n\n                        //Either a resource that is not loaded yet, or a plugin\n                        //resource for either a plugin that has not\n                        //loaded yet.\n                        manager.depCount += 1;\n                        manager.depCallbacks[i] = makeArgCallback(manager, i);\n                        getManager(depArg, true).add(manager.depCallbacks[i]);\n                    }\n                }\n            }\n\n            //Do not bother tracking the manager if it is all done.\n            if (!manager.depCount) {\n                //All done, execute!\n                execManager(manager);\n            } else {\n                addWait(manager);\n            }\n        }\n\n        /**\n         * Convenience method to call main for a define call that was put on\n         * hold in the defQueue.\n         */\n        function callDefMain(args) {\n            main.apply(null, args);\n        }\n\n        /**\n         * jQuery 1.4.3+ supports ways to hold off calling\n         * calling jQuery ready callbacks until all scripts are loaded. Be sure\n         * to track it if the capability exists.. Also, since jQuery 1.4.3 does\n         * not register as a module, need to do some global inference checking.\n         * Even if it does register as a module, not guaranteed to be the precise\n         * name of the global. If a jQuery is tracked for this context, then go\n         * ahead and register it as a module too, if not already in process.\n         */\n        jQueryCheck = function (jqCandidate) {\n            if (!context.jQuery) {\n                var $ = jqCandidate || (typeof jQuery !== \"undefined\" ? jQuery : null);\n\n                if ($) {\n                    //If a specific version of jQuery is wanted, make sure to only\n                    //use this jQuery if it matches.\n                    if (config.jQuery && $.fn.jquery !== config.jQuery) {\n                        return;\n                    }\n\n                    if (\"holdReady\" in $ || \"readyWait\" in $) {\n                        context.jQuery = $;\n\n                        //Manually create a \"jquery\" module entry if not one already\n                        //or in process. Note this could trigger an attempt at\n                        //a second jQuery registration, but does no harm since\n                        //the first one wins, and it is the same value anyway.\n                        callDefMain([\"jquery\", [], function () {\n                            return jQuery;\n                        }]);\n\n                        //Ask jQuery to hold DOM ready callbacks.\n                        if (context.scriptCount) {\n                            jQueryHoldReady($, true);\n                            context.jQueryIncremented = true;\n                        }\n                    }\n                }\n            }\n        };\n\n        function findCycle(manager, traced) {\n            var fullName = manager.map.fullName,\n                depArray = manager.depArray,\n                fullyLoaded = true,\n                i, depName, depManager, result;\n\n            if (manager.isDone || !fullName || !loaded[fullName]) {\n                return result;\n            }\n\n            //Found the cycle.\n            if (traced[fullName]) {\n                return manager;\n            }\n\n            traced[fullName] = true;\n\n            //Trace through the dependencies.\n            if (depArray) {\n                for (i = 0; i < depArray.length; i++) {\n                    //Some array members may be null, like if a trailing comma\n                    //IE, so do the explicit [i] access and check if it has a value.\n                    depName = depArray[i];\n                    if (!loaded[depName] && !reservedDependencies[depName]) {\n                        fullyLoaded = false;\n                        break;\n                    }\n                    depManager = waiting[depName];\n                    if (depManager && !depManager.isDone && loaded[depName]) {\n                        result = findCycle(depManager, traced);\n                        if (result) {\n                            break;\n                        }\n                    }\n                }\n                if (!fullyLoaded) {\n                    //Discard the cycle that was found, since it cannot\n                    //be forced yet. Also clear this module from traced.\n                    result = undefined;\n                    delete traced[fullName];\n                }\n            }\n\n            return result;\n        }\n\n        function forceExec(manager, traced) {\n            var fullName = manager.map.fullName,\n                depArray = manager.depArray,\n                i, depName, depManager, prefix, prefixManager, value;\n\n\n            if (manager.isDone || !fullName || !loaded[fullName]) {\n                return undefined;\n            }\n\n            if (fullName) {\n                if (traced[fullName]) {\n                    return defined[fullName];\n                }\n\n                traced[fullName] = true;\n            }\n\n            //Trace through the dependencies.\n            if (depArray) {\n                for (i = 0; i < depArray.length; i++) {\n                    //Some array members may be null, like if a trailing comma\n                    //IE, so do the explicit [i] access and check if it has a value.\n                    depName = depArray[i];\n                    if (depName) {\n                        //First, make sure if it is a plugin resource that the\n                        //plugin is not blocked.\n                        prefix = makeModuleMap(depName).prefix;\n                        if (prefix && (prefixManager = waiting[prefix])) {\n                            forceExec(prefixManager, traced);\n                        }\n                        depManager = waiting[depName];\n                        if (depManager && !depManager.isDone && loaded[depName]) {\n                            value = forceExec(depManager, traced);\n                            manager.depCallbacks[i](value);\n                        }\n                    }\n                }\n            }\n\n            return defined[fullName];\n        }\n\n        /**\n         * Checks if all modules for a context are loaded, and if so, evaluates the\n         * new ones in right dependency order.\n         *\n         * @private\n         */\n        function checkLoaded() {\n            var waitInterval = config.waitSeconds * 1000,\n                //It is possible to disable the wait interval by using waitSeconds of 0.\n                expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(),\n                noLoads = \"\", hasLoadedProp = false, stillLoading = false,\n                cycleDeps = [],\n                i, prop, err, manager, cycleManager, moduleDeps;\n\n            //If there are items still in the paused queue processing wait.\n            //This is particularly important in the sync case where each paused\n            //item is processed right away but there may be more waiting.\n            if (context.pausedCount > 0) {\n                return undefined;\n            }\n\n            //Determine if priority loading is done. If so clear the priority. If\n            //not, then do not check\n            if (config.priorityWait) {\n                if (isPriorityDone()) {\n                    //Call resume, since it could have\n                    //some waiting dependencies to trace.\n                    resume();\n                } else {\n                    return undefined;\n                }\n            }\n\n            //See if anything is still in flight.\n            for (prop in loaded) {\n                if (!(prop in empty)) {\n                    hasLoadedProp = true;\n                    if (!loaded[prop]) {\n                        if (expired) {\n                            noLoads += prop + \" \";\n                        } else {\n                            stillLoading = true;\n                            if (prop.indexOf('!') === -1) {\n                                //No reason to keep looking for unfinished\n                                //loading. If the only stillLoading is a\n                                //plugin resource though, keep going,\n                                //because it may be that a plugin resource\n                                //is waiting on a non-plugin cycle.\n                                cycleDeps = [];\n                                break;\n                            } else {\n                                moduleDeps = managerCallbacks[prop] && managerCallbacks[prop].moduleDeps;\n                                if (moduleDeps) {\n                                    cycleDeps.push.apply(cycleDeps, moduleDeps);\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n\n            //Check for exit conditions.\n            if (!hasLoadedProp && !context.waitCount) {\n                //If the loaded object had no items, then the rest of\n                //the work below does not need to be done.\n                return undefined;\n            }\n            if (expired && noLoads) {\n                //If wait time expired, throw error of unloaded modules.\n                err = makeError(\"timeout\", \"Load timeout for modules: \" + noLoads);\n                err.requireType = \"timeout\";\n                err.requireModules = noLoads;\n                err.contextName = context.contextName;\n                return req.onError(err);\n            }\n\n            //If still loading but a plugin is waiting on a regular module cycle\n            //break the cycle.\n            if (stillLoading && cycleDeps.length) {\n                for (i = 0; (manager = waiting[cycleDeps[i]]); i++) {\n                    if ((cycleManager = findCycle(manager, {}))) {\n                        forceExec(cycleManager, {});\n                        break;\n                    }\n                }\n\n            }\n\n            //If still waiting on loads, and the waiting load is something\n            //other than a plugin resource, or there are still outstanding\n            //scripts, then just try back later.\n            if (!expired && (stillLoading || context.scriptCount)) {\n                //Something is still waiting to load. Wait for it, but only\n                //if a timeout is not already in effect.\n                if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) {\n                    checkLoadedTimeoutId = setTimeout(function () {\n                        checkLoadedTimeoutId = 0;\n                        checkLoaded();\n                    }, 50);\n                }\n                return undefined;\n            }\n\n            //If still have items in the waiting cue, but all modules have\n            //been loaded, then it means there are some circular dependencies\n            //that need to be broken.\n            //However, as a waiting thing is fired, then it can add items to\n            //the waiting cue, and those items should not be fired yet, so\n            //make sure to redo the checkLoaded call after breaking a single\n            //cycle, if nothing else loaded then this logic will pick it up\n            //again.\n            if (context.waitCount) {\n                //Cycle through the waitAry, and call items in sequence.\n                for (i = 0; (manager = waitAry[i]); i++) {\n                    forceExec(manager, {});\n                }\n\n                //If anything got placed in the paused queue, run it down.\n                if (context.paused.length) {\n                    resume();\n                }\n\n                //Only allow this recursion to a certain depth. Only\n                //triggered by errors in calling a module in which its\n                //modules waiting on it cannot finish loading, or some circular\n                //dependencies that then may add more dependencies.\n                //The value of 5 is a bit arbitrary. Hopefully just one extra\n                //pass, or two for the case of circular dependencies generating\n                //more work that gets resolved in the sync node case.\n                if (checkLoadedDepth < 5) {\n                    checkLoadedDepth += 1;\n                    checkLoaded();\n                }\n            }\n\n            checkLoadedDepth = 0;\n\n            //Check for DOM ready, and nothing is waiting across contexts.\n            req.checkReadyState();\n\n            return undefined;\n        }\n\n        /**\n         * Resumes tracing of dependencies and then checks if everything is loaded.\n         */\n        resume = function () {\n            var manager, map, url, i, p, args, fullName;\n\n            //Any defined modules in the global queue, intake them now.\n            context.takeGlobalQueue();\n\n            resumeDepth += 1;\n\n            if (context.scriptCount <= 0) {\n                //Synchronous envs will push the number below zero with the\n                //decrement above, be sure to set it back to zero for good measure.\n                //require() calls that also do not end up loading scripts could\n                //push the number negative too.\n                context.scriptCount = 0;\n            }\n\n            //Make sure any remaining defQueue items get properly processed.\n            while (defQueue.length) {\n                args = defQueue.shift();\n                if (args[0] === null) {\n                    return req.onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1]));\n                } else {\n                    callDefMain(args);\n                }\n            }\n\n            //Skip the resume of paused dependencies\n            //if current context is in priority wait.\n            if (!config.priorityWait || isPriorityDone()) {\n                while (context.paused.length) {\n                    p = context.paused;\n                    context.pausedCount += p.length;\n                    //Reset paused list\n                    context.paused = [];\n\n                    for (i = 0; (manager = p[i]); i++) {\n                        map = manager.map;\n                        url = map.url;\n                        fullName = map.fullName;\n\n                        //If the manager is for a plugin managed resource,\n                        //ask the plugin to load it now.\n                        if (map.prefix) {\n                            callPlugin(map.prefix, manager);\n                        } else {\n                            //Regular dependency.\n                            if (!urlFetched[url] && !loaded[fullName]) {\n                                req.load(context, fullName, url);\n\n                                //Mark the URL as fetched, but only if it is\n                                //not an empty: URL, used by the optimizer.\n                                //In that case we need to be sure to call\n                                //load() for each module that is mapped to\n                                //empty: so that dependencies are satisfied\n                                //correctly.\n                                if (url.indexOf('empty:') !== 0) {\n                                    urlFetched[url] = true;\n                                }\n                            }\n                        }\n                    }\n\n                    //Move the start time for timeout forward.\n                    context.startTime = (new Date()).getTime();\n                    context.pausedCount -= p.length;\n                }\n            }\n\n            //Only check if loaded when resume depth is 1. It is likely that\n            //it is only greater than 1 in sync environments where a factory\n            //function also then calls the callback-style require. In those\n            //cases, the checkLoaded should not occur until the resume\n            //depth is back at the top level.\n            if (resumeDepth === 1) {\n                checkLoaded();\n            }\n\n            resumeDepth -= 1;\n\n            return undefined;\n        };\n\n        //Define the context object. Many of these fields are on here\n        //just to make debugging easier.\n        context = {\n            contextName: contextName,\n            config: config,\n            defQueue: defQueue,\n            waiting: waiting,\n            waitCount: 0,\n            specified: specified,\n            loaded: loaded,\n            urlMap: urlMap,\n            urlFetched: urlFetched,\n            scriptCount: 0,\n            defined: defined,\n            paused: [],\n            pausedCount: 0,\n            plugins: plugins,\n            needFullExec: needFullExec,\n            fake: {},\n            fullExec: fullExec,\n            managerCallbacks: managerCallbacks,\n            makeModuleMap: makeModuleMap,\n            normalize: normalize,\n            /**\n             * Set a configuration for the context.\n             * @param {Object} cfg config object to integrate.\n             */\n            configure: function (cfg) {\n                var paths, prop, packages, pkgs, packagePaths, requireWait;\n\n                //Make sure the baseUrl ends in a slash.\n                if (cfg.baseUrl) {\n                    if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== \"/\") {\n                        cfg.baseUrl += \"/\";\n                    }\n                }\n\n                //Save off the paths and packages since they require special processing,\n                //they are additive.\n                paths = config.paths;\n                packages = config.packages;\n                pkgs = config.pkgs;\n\n                //Mix in the config values, favoring the new values over\n                //existing ones in context.config.\n                mixin(config, cfg, true);\n\n                //Adjust paths if necessary.\n                if (cfg.paths) {\n                    for (prop in cfg.paths) {\n                        if (!(prop in empty)) {\n                            paths[prop] = cfg.paths[prop];\n                        }\n                    }\n                    config.paths = paths;\n                }\n\n                packagePaths = cfg.packagePaths;\n                if (packagePaths || cfg.packages) {\n                    //Convert packagePaths into a packages config.\n                    if (packagePaths) {\n                        for (prop in packagePaths) {\n                            if (!(prop in empty)) {\n                                configurePackageDir(pkgs, packagePaths[prop], prop);\n                            }\n                        }\n                    }\n\n                    //Adjust packages if necessary.\n                    if (cfg.packages) {\n                        configurePackageDir(pkgs, cfg.packages);\n                    }\n\n                    //Done with modifications, assing packages back to context config\n                    config.pkgs = pkgs;\n                }\n\n                //If priority loading is in effect, trigger the loads now\n                if (cfg.priority) {\n                    //Hold on to requireWait value, and reset it after done\n                    requireWait = context.requireWait;\n\n                    //Allow tracing some require calls to allow the fetching\n                    //of the priority config.\n                    context.requireWait = false;\n                    //But first, call resume to register any defined modules that may\n                    //be in a data-main built file before the priority config\n                    //call.\n                    resume();\n\n                    context.require(cfg.priority);\n\n                    //Trigger a resume right away, for the case when\n                    //the script with the priority load is done as part\n                    //of a data-main call. In that case the normal resume\n                    //call will not happen because the scriptCount will be\n                    //at 1, since the script for data-main is being processed.\n                    resume();\n\n                    //Restore previous state.\n                    context.requireWait = requireWait;\n                    config.priorityWait = cfg.priority;\n                }\n\n                //If a deps array or a config callback is specified, then call\n                //require with those args. This is useful when require is defined as a\n                //config object before require.js is loaded.\n                if (cfg.deps || cfg.callback) {\n                    context.require(cfg.deps || [], cfg.callback);\n                }\n            },\n\n            requireDefined: function (moduleName, relModuleMap) {\n                return makeModuleMap(moduleName, relModuleMap).fullName in defined;\n            },\n\n            requireSpecified: function (moduleName, relModuleMap) {\n                return makeModuleMap(moduleName, relModuleMap).fullName in specified;\n            },\n\n            require: function (deps, callback, relModuleMap) {\n                var moduleName, fullName, moduleMap;\n                if (typeof deps === \"string\") {\n                    if (isFunction(callback)) {\n                        //Invalid call\n                        return req.onError(makeError(\"requireargs\", \"Invalid require call\"));\n                    }\n\n                    //Synchronous access to one module. If require.get is\n                    //available (as in the Node adapter), prefer that.\n                    //In this case deps is the moduleName and callback is\n                    //the relModuleMap\n                    if (req.get) {\n                        return req.get(context, deps, callback);\n                    }\n\n                    //Just return the module wanted. In this scenario, the\n                    //second arg (if passed) is just the relModuleMap.\n                    moduleName = deps;\n                    relModuleMap = callback;\n\n                    //Normalize module name, if it contains . or ..\n                    moduleMap = makeModuleMap(moduleName, relModuleMap);\n                    fullName = moduleMap.fullName;\n\n                    if (!(fullName in defined)) {\n                        return req.onError(makeError(\"notloaded\", \"Module name '\" +\n                                    moduleMap.fullName +\n                                    \"' has not been loaded yet for context: \" +\n                                    contextName));\n                    }\n                    return defined[fullName];\n                }\n\n                //Call main but only if there are dependencies or\n                //a callback to call.\n                if (deps && deps.length || callback) {\n                    main(null, deps, callback, relModuleMap);\n                }\n\n                //If the require call does not trigger anything new to load,\n                //then resume the dependency processing.\n                if (!context.requireWait) {\n                    while (!context.scriptCount && context.paused.length) {\n                        resume();\n                    }\n                }\n                return context.require;\n            },\n\n            /**\n             * Internal method to transfer globalQueue items to this context's\n             * defQueue.\n             */\n            takeGlobalQueue: function () {\n                //Push all the globalDefQueue items into the context's defQueue\n                if (globalDefQueue.length) {\n                    //Array splice in the values since the context code has a\n                    //local var ref to defQueue, so cannot just reassign the one\n                    //on context.\n                    apsp.apply(context.defQueue,\n                               [context.defQueue.length - 1, 0].concat(globalDefQueue));\n                    globalDefQueue = [];\n                }\n            },\n\n            /**\n             * Internal method used by environment adapters to complete a load event.\n             * A load event could be a script load or just a load pass from a synchronous\n             * load call.\n             * @param {String} moduleName the name of the module to potentially complete.\n             */\n            completeLoad: function (moduleName) {\n                var args;\n\n                context.takeGlobalQueue();\n\n                while (defQueue.length) {\n                    args = defQueue.shift();\n\n                    if (args[0] === null) {\n                        args[0] = moduleName;\n                        break;\n                    } else if (args[0] === moduleName) {\n                        //Found matching define call for this script!\n                        break;\n                    } else {\n                        //Some other named define call, most likely the result\n                        //of a build layer that included many define calls.\n                        callDefMain(args);\n                        args = null;\n                    }\n                }\n                if (args) {\n                    callDefMain(args);\n                } else {\n                    //A script that does not call define(), so just simulate\n                    //the call for it. Special exception for jQuery dynamic load.\n                    callDefMain([moduleName, [],\n                                moduleName === \"jquery\" && typeof jQuery !== \"undefined\" ?\n                                function () {\n                                    return jQuery;\n                                } : null]);\n                }\n\n                //Doing this scriptCount decrement branching because sync envs\n                //need to decrement after resume, otherwise it looks like\n                //loading is complete after the first dependency is fetched.\n                //For browsers, it works fine to decrement after, but it means\n                //the checkLoaded setTimeout 50 ms cost is taken. To avoid\n                //that cost, decrement beforehand.\n                if (req.isAsync) {\n                    context.scriptCount -= 1;\n                }\n                resume();\n                if (!req.isAsync) {\n                    context.scriptCount -= 1;\n                }\n            },\n\n            /**\n             * Converts a module name + .extension into an URL path.\n             * *Requires* the use of a module name. It does not support using\n             * plain URLs like nameToUrl.\n             */\n            toUrl: function (moduleNamePlusExt, relModuleMap) {\n                var index = moduleNamePlusExt.lastIndexOf(\".\"),\n                    ext = null;\n\n                if (index !== -1) {\n                    ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length);\n                    moduleNamePlusExt = moduleNamePlusExt.substring(0, index);\n                }\n\n                return context.nameToUrl(moduleNamePlusExt, ext, relModuleMap);\n            },\n\n            /**\n             * Converts a module name to a file path. Supports cases where\n             * moduleName may actually be just an URL.\n             */\n            nameToUrl: function (moduleName, ext, relModuleMap) {\n                var paths, pkgs, pkg, pkgPath, syms, i, parentModule, url,\n                    config = context.config;\n\n                //Normalize module name if have a base relative module name to work from.\n                moduleName = normalize(moduleName, relModuleMap && relModuleMap.fullName);\n\n                //If a colon is in the URL, it indicates a protocol is used and it is just\n                //an URL to a file, or if it starts with a slash or ends with .js, it is just a plain file.\n                //The slash is important for protocol-less URLs as well as full paths.\n                if (req.jsExtRegExp.test(moduleName)) {\n                    //Just a plain path, not module name lookup, so just return it.\n                    //Add extension if it is included. This is a bit wonky, only non-.js things pass\n                    //an extension, this method probably needs to be reworked.\n                    url = moduleName + (ext ? ext : \"\");\n                } else {\n                    //A module that needs to be converted to a path.\n                    paths = config.paths;\n                    pkgs = config.pkgs;\n\n                    syms = moduleName.split(\"/\");\n                    //For each module name segment, see if there is a path\n                    //registered for it. Start with most specific name\n                    //and work up from it.\n                    for (i = syms.length; i > 0; i--) {\n                        parentModule = syms.slice(0, i).join(\"/\");\n                        if (paths[parentModule]) {\n                            syms.splice(0, i, paths[parentModule]);\n                            break;\n                        } else if ((pkg = pkgs[parentModule])) {\n                            //If module name is just the package name, then looking\n                            //for the main module.\n                            if (moduleName === pkg.name) {\n                                pkgPath = pkg.location + '/' + pkg.main;\n                            } else {\n                                pkgPath = pkg.location;\n                            }\n                            syms.splice(0, i, pkgPath);\n                            break;\n                        }\n                    }\n\n                    //Join the path parts together, then figure out if baseUrl is needed.\n                    url = syms.join(\"/\") + (ext || \".js\");\n                    url = (url.charAt(0) === '/' || url.match(/^\\w+:/) ? \"\" : config.baseUrl) + url;\n                }\n\n                return config.urlArgs ? url +\n                                        ((url.indexOf('?') === -1 ? '?' : '&') +\n                                         config.urlArgs) : url;\n            }\n        };\n\n        //Make these visible on the context so can be called at the very\n        //end of the file to bootstrap\n        context.jQueryCheck = jQueryCheck;\n        context.resume = resume;\n\n        return context;\n    }\n\n    /**\n     * Main entry point.\n     *\n     * If the only argument to require is a string, then the module that\n     * is represented by that string is fetched for the appropriate context.\n     *\n     * If the first argument is an array, then it will be treated as an array\n     * of dependency string names to fetch. An optional function callback can\n     * be specified to execute when all of those dependencies are available.\n     *\n     * Make a local req variable to help Caja compliance (it assumes things\n     * on a require that are not standardized), and to give a short\n     * name for minification/local scope use.\n     */\n    req = requirejs = function (deps, callback) {\n\n        //Find the right context, use default\n        var contextName = defContextName,\n            context, config;\n\n        // Determine if have config object in the call.\n        if (!isArray(deps) && typeof deps !== \"string\") {\n            // deps is a config object\n            config = deps;\n            if (isArray(callback)) {\n                // Adjust args if there are dependencies\n                deps = callback;\n                callback = arguments[2];\n            } else {\n                deps = [];\n            }\n        }\n\n        if (config && config.context) {\n            contextName = config.context;\n        }\n\n        context = contexts[contextName] ||\n                  (contexts[contextName] = newContext(contextName));\n\n        if (config) {\n            context.configure(config);\n        }\n\n        return context.require(deps, callback);\n    };\n\n    /**\n     * Support require.config() to make it easier to cooperate with other\n     * AMD loaders on globally agreed names.\n     */\n    req.config = function (config) {\n        return req(config);\n    };\n\n    /**\n     * Export require as a global, but only if it does not already exist.\n     */\n    if (!require) {\n        require = req;\n    }\n\n    /**\n     * Global require.toUrl(), to match global require, mostly useful\n     * for debugging/work in the global space.\n     */\n    req.toUrl = function (moduleNamePlusExt) {\n        return contexts[defContextName].toUrl(moduleNamePlusExt);\n    };\n\n    req.version = version;\n\n    //Used to filter out dependencies that are already paths.\n    req.jsExtRegExp = /^\\/|:|\\?|\\.js$/;\n    s = req.s = {\n        contexts: contexts,\n        //Stores a list of URLs that should not get async script tag treatment.\n        skipAsync: {}\n    };\n\n    req.isAsync = req.isBrowser = isBrowser;\n    if (isBrowser) {\n        head = s.head = document.getElementsByTagName(\"head\")[0];\n        //If BASE tag is in play, using appendChild is a problem for IE6.\n        //When that browser dies, this can be removed. Details in this jQuery bug:\n        //http://dev.jquery.com/ticket/2709\n        baseElement = document.getElementsByTagName(\"base\")[0];\n        if (baseElement) {\n            head = s.head = baseElement.parentNode;\n        }\n    }\n\n    /**\n     * Any errors that require explicitly generates will be passed to this\n     * function. Intercept/override it if you want custom error handling.\n     * @param {Error} err the error object.\n     */\n    req.onError = function (err) {\n        throw err;\n    };\n\n    /**\n     * Does the request to load a module for the browser case.\n     * Make this a separate function to allow other environments\n     * to override it.\n     *\n     * @param {Object} context the require context to find state.\n     * @param {String} moduleName the name of the module.\n     * @param {Object} url the URL to the module.\n     */\n    req.load = function (context, moduleName, url) {\n        req.resourcesReady(false);\n\n        context.scriptCount += 1;\n        req.attach(url, context, moduleName);\n\n        //If tracking a jQuery, then make sure its ready callbacks\n        //are put on hold to prevent its ready callbacks from\n        //triggering too soon.\n        if (context.jQuery && !context.jQueryIncremented) {\n            jQueryHoldReady(context.jQuery, true);\n            context.jQueryIncremented = true;\n        }\n    };\n\n    function getInteractiveScript() {\n        var scripts, i, script;\n        if (interactiveScript && interactiveScript.readyState === 'interactive') {\n            return interactiveScript;\n        }\n\n        scripts = document.getElementsByTagName('script');\n        for (i = scripts.length - 1; i > -1 && (script = scripts[i]); i--) {\n            if (script.readyState === 'interactive') {\n                return (interactiveScript = script);\n            }\n        }\n\n        return null;\n    }\n\n    /**\n     * The function that handles definitions of modules. Differs from\n     * require() in that a string for the module should be the first argument,\n     * and the function to execute after dependencies are loaded should\n     * return a value to define the module corresponding to the first argument's\n     * name.\n     */\n    define = function (name, deps, callback) {\n        var node, context;\n\n        //Allow for anonymous functions\n        if (typeof name !== 'string') {\n            //Adjust args appropriately\n            callback = deps;\n            deps = name;\n            name = null;\n        }\n\n        //This module may not have dependencies\n        if (!isArray(deps)) {\n            callback = deps;\n            deps = [];\n        }\n\n        //If no name, and callback is a function, then figure out if it a\n        //CommonJS thing with dependencies.\n        if (!deps.length && isFunction(callback)) {\n            //Remove comments from the callback string,\n            //look for require calls, and pull them into the dependencies,\n            //but only if there are function args.\n            if (callback.length) {\n                callback\n                    .toString()\n                    .replace(commentRegExp, \"\")\n                    .replace(cjsRequireRegExp, function (match, dep) {\n                        deps.push(dep);\n                    });\n\n                //May be a CommonJS thing even without require calls, but still\n                //could use exports, and module. Avoid doing exports and module\n                //work though if it just needs require.\n                //REQUIRES the function to expect the CommonJS variables in the\n                //order listed below.\n                deps = (callback.length === 1 ? [\"require\"] : [\"require\", \"exports\", \"module\"]).concat(deps);\n            }\n        }\n\n        //If in IE 6-8 and hit an anonymous define() call, do the interactive\n        //work.\n        if (useInteractive) {\n            node = currentlyAddingScript || getInteractiveScript();\n            if (node) {\n                if (!name) {\n                    name = node.getAttribute(\"data-requiremodule\");\n                }\n                context = contexts[node.getAttribute(\"data-requirecontext\")];\n            }\n        }\n\n        //Always save off evaluating the def call until the script onload handler.\n        //This allows multiple modules to be in a file without prematurely\n        //tracing dependencies, and allows for anonymous module support,\n        //where the module name is not known until the script onload event\n        //occurs. If no context, use the global queue, and get it processed\n        //in the onscript load callback.\n        (context ? context.defQueue : globalDefQueue).push([name, deps, callback]);\n\n        return undefined;\n    };\n\n    define.amd = {\n        multiversion: true,\n        plugins: true,\n        jQuery: true\n    };\n\n    /**\n     * Executes the text. Normally just uses eval, but can be modified\n     * to use a more environment specific call.\n     * @param {String} text the text to execute/evaluate.\n     */\n    req.exec = function (text) {\n        return eval(text);\n    };\n\n    /**\n     * Executes a module callack function. Broken out as a separate function\n     * solely to allow the build system to sequence the files in the built\n     * layer in the right sequence.\n     *\n     * @private\n     */\n    req.execCb = function (name, callback, args, exports) {\n        return callback.apply(exports, args);\n    };\n\n\n    /**\n     * Adds a node to the DOM. Public function since used by the order plugin.\n     * This method should not normally be called by outside code.\n     */\n    req.addScriptToDom = function (node) {\n        //For some cache cases in IE 6-8, the script executes before the end\n        //of the appendChild execution, so to tie an anonymous define\n        //call to the module name (which is stored on the node), hold on\n        //to a reference to this node, but clear after the DOM insertion.\n        currentlyAddingScript = node;\n        if (baseElement) {\n            head.insertBefore(node, baseElement);\n        } else {\n            head.appendChild(node);\n        }\n        currentlyAddingScript = null;\n    };\n\n    /**\n     * callback for script loads, used to check status of loading.\n     *\n     * @param {Event} evt the event from the browser for the script\n     * that was loaded.\n     *\n     * @private\n     */\n    req.onScriptLoad = function (evt) {\n        //Using currentTarget instead of target for Firefox 2.0's sake. Not\n        //all old browsers will be supported, but this one was easy enough\n        //to support and still makes sense.\n        var node = evt.currentTarget || evt.srcElement, contextName, moduleName,\n            context;\n\n        if (evt.type === \"load\" || (node && readyRegExp.test(node.readyState))) {\n            //Reset interactive script so a script node is not held onto for\n            //to long.\n            interactiveScript = null;\n\n            //Pull out the name of the module and the context.\n            contextName = node.getAttribute(\"data-requirecontext\");\n            moduleName = node.getAttribute(\"data-requiremodule\");\n            context = contexts[contextName];\n\n            contexts[contextName].completeLoad(moduleName);\n\n            //Clean up script binding. Favor detachEvent because of IE9\n            //issue, see attachEvent/addEventListener comment elsewhere\n            //in this file.\n            if (node.detachEvent && !isOpera) {\n                //Probably IE. If not it will throw an error, which will be\n                //useful to know.\n                node.detachEvent(\"onreadystatechange\", req.onScriptLoad);\n            } else {\n                node.removeEventListener(\"load\", req.onScriptLoad, false);\n            }\n        }\n    };\n\n    /**\n     * Attaches the script represented by the URL to the current\n     * environment. Right now only supports browser loading,\n     * but can be redefined in other environments to do the right thing.\n     * @param {String} url the url of the script to attach.\n     * @param {Object} context the context that wants the script.\n     * @param {moduleName} the name of the module that is associated with the script.\n     * @param {Function} [callback] optional callback, defaults to require.onScriptLoad\n     * @param {String} [type] optional type, defaults to text/javascript\n     * @param {Function} [fetchOnlyFunction] optional function to indicate the script node\n     * should be set up to fetch the script but do not attach it to the DOM\n     * so that it can later be attached to execute it. This is a way for the\n     * order plugin to support ordered loading in IE. Once the script is fetched,\n     * but not executed, the fetchOnlyFunction will be called.\n     */\n    req.attach = function (url, context, moduleName, callback, type, fetchOnlyFunction) {\n        var node;\n        if (isBrowser) {\n            //In the browser so use a script tag\n            callback = callback || req.onScriptLoad;\n            node = context && context.config && context.config.xhtml ?\n                    document.createElementNS(\"http://www.w3.org/1999/xhtml\", \"html:script\") :\n                    document.createElement(\"script\");\n            node.type = type || (context && context.config.scriptType) ||\n                        \"text/javascript\";\n            node.charset = \"utf-8\";\n            //Use async so Gecko does not block on executing the script if something\n            //like a long-polling comet tag is being run first. Gecko likes\n            //to evaluate scripts in DOM order, even for dynamic scripts.\n            //It will fetch them async, but only evaluate the contents in DOM\n            //order, so a long-polling script tag can delay execution of scripts\n            //after it. But telling Gecko we expect async gets us the behavior\n            //we want -- execute it whenever it is finished downloading. Only\n            //Helps Firefox 3.6+\n            //Allow some URLs to not be fetched async. Mostly helps the order!\n            //plugin\n            node.async = !s.skipAsync[url];\n\n            if (context) {\n                node.setAttribute(\"data-requirecontext\", context.contextName);\n            }\n            node.setAttribute(\"data-requiremodule\", moduleName);\n\n            //Set up load listener. Test attachEvent first because IE9 has\n            //a subtle issue in its addEventListener and script onload firings\n            //that do not match the behavior of all other browsers with\n            //addEventListener support, which fire the onload event for a\n            //script right after the script execution. See:\n            //https://connect.microsoft.com/IE/feedback/details/648057/script-onload-event-is-not-fired-immediately-after-script-execution\n            //UNFORTUNATELY Opera implements attachEvent but does not follow the script\n            //script execution mode.\n            if (node.attachEvent && !isOpera) {\n                //Probably IE. IE (at least 6-8) do not fire\n                //script onload right after executing the script, so\n                //we cannot tie the anonymous define call to a name.\n                //However, IE reports the script as being in \"interactive\"\n                //readyState at the time of the define call.\n                useInteractive = true;\n\n\n                if (fetchOnlyFunction) {\n                    //Need to use old school onreadystate here since\n                    //when the event fires and the node is not attached\n                    //to the DOM, the evt.srcElement is null, so use\n                    //a closure to remember the node.\n                    node.onreadystatechange = function (evt) {\n                        //Script loaded but not executed.\n                        //Clear loaded handler, set the real one that\n                        //waits for script execution.\n                        if (node.readyState === 'loaded') {\n                            node.onreadystatechange = null;\n                            node.attachEvent(\"onreadystatechange\", callback);\n                            fetchOnlyFunction(node);\n                        }\n                    };\n                } else {\n                    node.attachEvent(\"onreadystatechange\", callback);\n                }\n            } else {\n                node.addEventListener(\"load\", callback, false);\n            }\n            node.src = url;\n\n            //Fetch only means waiting to attach to DOM after loaded.\n            if (!fetchOnlyFunction) {\n                req.addScriptToDom(node);\n            }\n\n            return node;\n        } else if (isWebWorker) {\n            //In a web worker, use importScripts. This is not a very\n            //efficient use of importScripts, importScripts will block until\n            //its script is downloaded and evaluated. However, if web workers\n            //are in play, the expectation that a build has been done so that\n            //only one script needs to be loaded anyway. This may need to be\n            //reevaluated if other use cases become common.\n            importScripts(url);\n\n            //Account for anonymous modules\n            context.completeLoad(moduleName);\n        }\n        return null;\n    };\n\n    //Look for a data-main script attribute, which could also adjust the baseUrl.\n    if (isBrowser) {\n        //Figure out baseUrl. Get it from the script tag with require.js in it.\n        scripts = document.getElementsByTagName(\"script\");\n\n        for (globalI = scripts.length - 1; globalI > -1 && (script = scripts[globalI]); globalI--) {\n            //Set the \"head\" where we can append children by\n            //using the script's parent.\n            if (!head) {\n                head = script.parentNode;\n            }\n\n            //Look for a data-main attribute to set main script for the page\n            //to load. If it is there, the path to data main becomes the\n            //baseUrl, if it is not already set.\n            if ((dataMain = script.getAttribute('data-main'))) {\n                if (!cfg.baseUrl) {\n                    //Pull off the directory of data-main for use as the\n                    //baseUrl.\n                    src = dataMain.split('/');\n                    mainScript = src.pop();\n                    subPath = src.length ? src.join('/')  + '/' : './';\n\n                    //Set final config.\n                    cfg.baseUrl = subPath;\n                    //Strip off any trailing .js since dataMain is now\n                    //like a module name.\n                    dataMain = mainScript.replace(jsSuffixRegExp, '');\n                }\n\n                //Put the data-main script in the files to load.\n                cfg.deps = cfg.deps ? cfg.deps.concat(dataMain) : [dataMain];\n\n                break;\n            }\n        }\n    }\n\n    //See if there is nothing waiting across contexts, and if not, trigger\n    //resourcesReady.\n    req.checkReadyState = function () {\n        var contexts = s.contexts, prop;\n        for (prop in contexts) {\n            if (!(prop in empty)) {\n                if (contexts[prop].waitCount) {\n                    return;\n                }\n            }\n        }\n        req.resourcesReady(true);\n    };\n\n    /**\n     * Internal function that is triggered whenever all scripts/resources\n     * have been loaded by the loader. Can be overridden by other, for\n     * instance the domReady plugin, which wants to know when all resources\n     * are loaded.\n     */\n    req.resourcesReady = function (isReady) {\n        var contexts, context, prop;\n\n        //First, set the public variable indicating that resources are loading.\n        req.resourcesDone = isReady;\n\n        if (req.resourcesDone) {\n            //If jQuery with DOM ready delayed, release it now.\n            contexts = s.contexts;\n            for (prop in contexts) {\n                if (!(prop in empty)) {\n                    context = contexts[prop];\n                    if (context.jQueryIncremented) {\n                        jQueryHoldReady(context.jQuery, false);\n                        context.jQueryIncremented = false;\n                    }\n                }\n            }\n        }\n    };\n\n    //FF < 3.6 readyState fix. Needed so that domReady plugin\n    //works well in that environment, since require.js is normally\n    //loaded via an HTML script tag so it will be there before window load,\n    //where the domReady plugin is more likely to be loaded after window load.\n    req.pageLoaded = function () {\n        if (document.readyState !== \"complete\") {\n            document.readyState = \"complete\";\n        }\n    };\n    if (isBrowser) {\n        if (document.addEventListener) {\n            if (!document.readyState) {\n                document.readyState = \"loading\";\n                window.addEventListener(\"load\", req.pageLoaded, false);\n            }\n        }\n    }\n\n    //Set up default context. If require was a configuration object, use that as base config.\n    req(cfg);\n\n    //If modules are built into require.js, then need to make sure dependencies are\n    //traced. Use a setTimeout in the browser world, to allow all the modules to register\n    //themselves. In a non-browser env, assume that modules are not built into require.js,\n    //which seems odd to do on the server.\n    if (req.isAsync && typeof setTimeout !== \"undefined\") {\n        ctx = s.contexts[(cfg.context || defContextName)];\n        //Indicate that the script that includes require() is still loading,\n        //so that require()'d dependencies are not traced until the end of the\n        //file is parsed (approximated via the setTimeout call).\n        ctx.requireWait = true;\n        setTimeout(function () {\n            ctx.requireWait = false;\n\n            if (!ctx.scriptCount) {\n                ctx.resume();\n            }\n            req.checkReadyState();\n        }, 0);\n    }\n}());\n/*!\n * jQuery JavaScript Library v1.7.1\n * http://jquery.com/\n *\n * Copyright 2011, John Resig\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n * Copyright 2011, The Dojo Foundation\n * Released under the MIT, BSD, and GPL Licenses.\n *\n * Date: Mon Nov 21 21:11:03 2011 -0500\n */\n(function( window, undefined ) {\n\n// Use the correct document accordingly with window argument (sandbox)\nvar document = window.document,\n\tnavigator = window.navigator,\n\tlocation = window.location;\nvar jQuery = (function() {\n\n// Define a local copy of jQuery\nvar jQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$,\n\n\t// A central reference to the root jQuery(document)\n\trootjQuery,\n\n\t// A simple way to check for HTML strings or ID strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\tquickExpr = /^(?:[^#<]*(<[\\w\\W]+>)[^>]*$|#([\\w\\-]*)$)/,\n\n\t// Check if a string has a non-whitespace character in it\n\trnotwhite = /\\S/,\n\n\t// Used for trimming whitespace\n\ttrimLeft = /^\\s+/,\n\ttrimRight = /\\s+$/,\n\n\t// Match a standalone tag\n\trsingleTag = /^<(\\w+)\\s*\\/?>(?:<\\/\\1>)?$/,\n\n\t// JSON RegExp\n\trvalidchars = /^[\\],:{}\\s]*$/,\n\trvalidescape = /\\\\(?:[\"\\\\\\/bfnrt]|u[0-9a-fA-F]{4})/g,\n\trvalidtokens = /\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g,\n\trvalidbraces = /(?:^|:|,)(?:\\s*\\[)+/g,\n\n\t// Useragent RegExp\n\trwebkit = /(webkit)[ \\/]([\\w.]+)/,\n\tropera = /(opera)(?:.*version)?[ \\/]([\\w.]+)/,\n\trmsie = /(msie) ([\\w.]+)/,\n\trmozilla = /(mozilla)(?:.*? rv:([\\w.]+))?/,\n\n\t// Matches dashed string for camelizing\n\trdashAlpha = /-([a-z]|[0-9])/ig,\n\trmsPrefix = /^-ms-/,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn ( letter + \"\" ).toUpperCase();\n\t},\n\n\t// Keep a UserAgent string for use with jQuery.browser\n\tuserAgent = navigator.userAgent,\n\n\t// For matching the engine and version of the browser\n\tbrowserMatch,\n\n\t// The deferred used on DOM ready\n\treadyList,\n\n\t// The ready event handler\n\tDOMContentLoaded,\n\n\t// Save a reference to some core methods\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\tpush = Array.prototype.push,\n\tslice = Array.prototype.slice,\n\ttrim = String.prototype.trim,\n\tindexOf = Array.prototype.indexOf,\n\n\t// [[Class]] -> type pairs\n\tclass2type = {};\n\njQuery.fn = jQuery.prototype = {\n\tconstructor: jQuery,\n\tinit: function( selector, context, rootjQuery ) {\n\t\tvar match, elem, ret, doc;\n\n\t\t// Handle $(\"\"), $(null), or $(undefined)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle $(DOMElement)\n\t\tif ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\t\t}\n\n\t\t// The body element only exists once, optimize finding it\n\t\tif ( selector === \"body\" && !context && document.body ) {\n\t\t\tthis.context = document;\n\t\t\tthis[0] = document.body;\n\t\t\tthis.selector = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\t// Are we dealing with HTML string or an ID?\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = quickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Verify a match, and that no context was specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\t\t\t\t\tdoc = ( context ? context.ownerDocument || context : document );\n\n\t\t\t\t\t// If a single string is passed in and it's a single tag\n\t\t\t\t\t// just do a createElement and skip the rest\n\t\t\t\t\tret = rsingleTag.exec( selector );\n\n\t\t\t\t\tif ( ret ) {\n\t\t\t\t\t\tif ( jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\t\tselector = [ document.createElement( ret[1] ) ];\n\t\t\t\t\t\t\tjQuery.fn.attr.call( selector, context, true );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tselector = [ doc.createElement( ret[1] ) ];\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tret = jQuery.buildFragment( [ match[1] ], [ doc ] );\n\t\t\t\t\t\tselector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.merge( this, selector );\n\n\t\t\t\t// HANDLE: $(\"#id\")\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn rootjQuery.ready( selector );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t},\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The current version of jQuery being used\n\tjquery: \"1.7.1\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\t// The number of elements contained in the matched element set\n\tsize: function() {\n\t\treturn this.length;\n\t},\n\n\ttoArray: function() {\n\t\treturn slice.call( this, 0 );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num == null ?\n\n\t\t\t// Return a 'clean' array\n\t\t\tthis.toArray() :\n\n\t\t\t// Return just the object\n\t\t\t( num < 0 ? this[ this.length + num ] : this[ num ] );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems, name, selector ) {\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = this.constructor();\n\n\t\tif ( jQuery.isArray( elems ) ) {\n\t\t\tpush.apply( ret, elems );\n\n\t\t} else {\n\t\t\tjQuery.merge( ret, elems );\n\t\t}\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\tret.context = this.context;\n\n\t\tif ( name === \"find\" ) {\n\t\t\tret.selector = this.selector + ( this.selector ? \" \" : \"\" ) + selector;\n\t\t} else if ( name ) {\n\t\t\tret.selector = this.selector + \".\" + name + \"(\" + selector + \")\";\n\t\t}\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tready: function( fn ) {\n\t\t// Attach the listeners\n\t\tjQuery.bindReady();\n\n\t\t// Add the callback\n\t\treadyList.add( fn );\n\n\t\treturn this;\n\t},\n\n\teq: function( i ) {\n\t\ti = +i;\n\t\treturn i === -1 ?\n\t\t\tthis.slice( i ) :\n\t\t\tthis.slice( i, i + 1 );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ),\n\t\t\t\"slice\", slice.call(arguments).join(\",\") );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: [].sort,\n\tsplice: [].splice\n};\n\n// Give the init function the jQuery prototype for later instantiation\njQuery.fn.init.prototype = jQuery.fn;\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\t\ttarget = arguments[1] || {};\n\t\t// skip the boolean and the target\n\t\ti = 2;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( length === i ) {\n\t\ttarget = this;\n\t\t--i;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\tnoConflict: function( deep ) {\n\t\tif ( window.$ === jQuery ) {\n\t\t\twindow.$ = _$;\n\t\t}\n\n\t\tif ( deep && window.jQuery === jQuery ) {\n\t\t\twindow.jQuery = _jQuery;\n\t\t}\n\n\t\treturn jQuery;\n\t},\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\t\t// Either a released hold or an DOMready/load event and not yet ready\n\t\tif ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) {\n\t\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\t\tif ( !document.body ) {\n\t\t\t\treturn setTimeout( jQuery.ready, 1 );\n\t\t\t}\n\n\t\t\t// Remember that the DOM is ready\n\t\t\tjQuery.isReady = true;\n\n\t\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If there are functions bound, to execute\n\t\t\treadyList.fireWith( document, [ jQuery ] );\n\n\t\t\t// Trigger any bound ready events\n\t\t\tif ( jQuery.fn.trigger ) {\n\t\t\t\tjQuery( document ).trigger( \"ready\" ).off( \"ready\" );\n\t\t\t}\n\t\t}\n\t},\n\n\tbindReady: function() {\n\t\tif ( readyList ) {\n\t\t\treturn;\n\t\t}\n\n\t\treadyList = jQuery.Callbacks( \"once memory\" );\n\n\t\t// Catch cases where $(document).ready() is called after the\n\t\t// browser event has already occurred.\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\treturn setTimeout( jQuery.ready, 1 );\n\t\t}\n\n\t\t// Mozilla, Opera and webkit nightlies currently support this event\n\t\tif ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", DOMContentLoaded, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", jQuery.ready, false );\n\n\t\t// If IE event model is used\n\t\t} else if ( document.attachEvent ) {\n\t\t\t// ensure firing before onload,\n\t\t\t// maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", DOMContentLoaded );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", jQuery.ready );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar toplevel = false;\n\n\t\t\ttry {\n\t\t\t\ttoplevel = window.frameElement == null;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( document.documentElement.doScroll && toplevel ) {\n\t\t\t\tdoScrollCheck();\n\t\t\t}\n\t\t}\n\t},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\t// A crude way of determining if an object is a window\n\tisWindow: function( obj ) {\n\t\treturn obj && typeof obj === \"object\" && \"setInterval\" in obj;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\treturn !isNaN( parseFloat(obj) ) && isFinite( obj );\n\t},\n\n\ttype: function( obj ) {\n\t\treturn obj == null ?\n\t\t\tString( obj ) :\n\t\t\tclass2type[ toString.call(obj) ] || \"object\";\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\n\t\tvar key;\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tfor ( var name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tparseJSON: function( data ) {\n\t\tif ( typeof data !== \"string\" || !data ) {\n\t\t\treturn null;\n\t\t}\n\n\t\t// Make sure leading/trailing whitespace is removed (IE can't handle it)\n\t\tdata = jQuery.trim( data );\n\n\t\t// Attempt to parse using the native JSON parser first\n\t\tif ( window.JSON && window.JSON.parse ) {\n\t\t\treturn window.JSON.parse( data );\n\t\t}\n\n\t\t// Make sure the incoming data is actual JSON\n\t\t// Logic borrowed from http://json.org/json2.js\n\t\tif ( rvalidchars.test( data.replace( rvalidescape, \"@\" )\n\t\t\t.replace( rvalidtokens, \"]\" )\n\t\t\t.replace( rvalidbraces, \"\")) ) {\n\n\t\t\treturn ( new Function( \"return \" + data ) )();\n\n\t\t}\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n\t},\n\n\t// Cross-browser xml parsing\n\tparseXML: function( data ) {\n\t\tvar xml, tmp;\n\t\ttry {\n\t\t\tif ( window.DOMParser ) { // Standard\n\t\t\t\ttmp = new DOMParser();\n\t\t\t\txml = tmp.parseFromString( data , \"text/xml\" );\n\t\t\t} else { // IE\n\t\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\t\txml.async = \"false\";\n\t\t\t\txml.loadXML( data );\n\t\t\t}\n\t\t} catch( e ) {\n\t\t\txml = undefined;\n\t\t}\n\t\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\t\tjQuery.error( \"Invalid XML: \" + data );\n\t\t}\n\t\treturn xml;\n\t},\n\n\tnoop: function() {},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && rnotwhite.test( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( object, callback, args ) {\n\t\tvar name, i = 0,\n\t\t\tlength = object.length,\n\t\t\tisObj = length === undefined || jQuery.isFunction( object );\n\n\t\tif ( args ) {\n\t\t\tif ( isObj ) {\n\t\t\t\tfor ( name in object ) {\n\t\t\t\t\tif ( callback.apply( object[ name ], args ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( ; i < length; ) {\n\t\t\t\t\tif ( callback.apply( object[ i++ ], args ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isObj ) {\n\t\t\t\tfor ( name in object ) {\n\t\t\t\t\tif ( callback.call( object[ name ], name, object[ name ] ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( ; i < length; ) {\n\t\t\t\t\tif ( callback.call( object[ i ], i, object[ i++ ] ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn object;\n\t},\n\n\t// Use native String.trim function wherever possible\n\ttrim: trim ?\n\t\tfunction( text ) {\n\t\t\treturn text == null ?\n\t\t\t\t\"\" :\n\t\t\t\ttrim.call( text );\n\t\t} :\n\n\t\t// Otherwise use our own trimming functionality\n\t\tfunction( text ) {\n\t\t\treturn text == null ?\n\t\t\t\t\"\" :\n\t\t\t\ttext.toString().replace( trimLeft, \"\" ).replace( trimRight, \"\" );\n\t\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( array, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( array != null ) {\n\t\t\t// The window, strings (and functions) also have 'length'\n\t\t\t// Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930\n\t\t\tvar type = jQuery.type( array );\n\n\t\t\tif ( array.length == null || type === \"string\" || type === \"function\" || type === \"regexp\" || jQuery.isWindow( array ) ) {\n\t\t\t\tpush.call( ret, array );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( ret, array );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, array, i ) {\n\t\tvar len;\n\n\t\tif ( array ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( array, elem, i );\n\t\t\t}\n\n\t\t\tlen = array.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in array && array[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar i = first.length,\n\t\t\tj = 0;\n\n\t\tif ( typeof second.length === \"number\" ) {\n\t\t\tfor ( var l = second.length; j < l; j++ ) {\n\t\t\t\tfirst[ i++ ] = second[ j ];\n\t\t\t}\n\n\t\t} else {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, inv ) {\n\t\tvar ret = [], retVal;\n\t\tinv = !!inv;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( var i = 0, length = elems.length; i < length; i++ ) {\n\t\t\tretVal = !!callback( elems[ i ], i );\n\t\t\tif ( inv !== retVal ) {\n\t\t\t\tret.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value, key, ret = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\t// jquery objects are treated as arrays\n\t\t\tisArray = elems instanceof jQuery || length !== undefined && typeof length === \"number\" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ;\n\n\t\t// Go through the array, translating each of the items to their\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret[ ret.length ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( key in elems ) {\n\t\t\t\tvalue = callback( elems[ key ], key, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret[ ret.length ] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn ret.concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tif ( typeof context === \"string\" ) {\n\t\t\tvar tmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\tvar args = slice.call( arguments, 2 ),\n\t\t\tproxy = function() {\n\t\t\t\treturn fn.apply( context, args.concat( slice.call( arguments ) ) );\n\t\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\t// Mutifunctional method to get and set values to a collection\n\t// The value/s can optionally be executed if it's a function\n\taccess: function( elems, key, value, exec, fn, pass ) {\n\t\tvar length = elems.length;\n\n\t\t// Setting many attributes\n\t\tif ( typeof key === \"object\" ) {\n\t\t\tfor ( var k in key ) {\n\t\t\t\tjQuery.access( elems, k, key[k], exec, fn, value );\n\t\t\t}\n\t\t\treturn elems;\n\t\t}\n\n\t\t// Setting one attribute\n\t\tif ( value !== undefined ) {\n\t\t\t// Optionally, function values get executed if exec is true\n\t\t\texec = !pass && exec && jQuery.isFunction(value);\n\n\t\t\tfor ( var i = 0; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass );\n\t\t\t}\n\n\t\t\treturn elems;\n\t\t}\n\n\t\t// Getting an attribute\n\t\treturn length ? fn( elems[0], key ) : undefined;\n\t},\n\n\tnow: function() {\n\t\treturn ( new Date() ).getTime();\n\t},\n\n\t// Use of jQuery.browser is frowned upon.\n\t// More details: http://docs.jquery.com/Utilities/jQuery.browser\n\tuaMatch: function( ua ) {\n\t\tua = ua.toLowerCase();\n\n\t\tvar match = rwebkit.exec( ua ) ||\n\t\t\tropera.exec( ua ) ||\n\t\t\trmsie.exec( ua ) ||\n\t\t\tua.indexOf(\"compatible\") < 0 && rmozilla.exec( ua ) ||\n\t\t\t[];\n\n\t\treturn { browser: match[1] || \"\", version: match[2] || \"0\" };\n\t},\n\n\tsub: function() {\n\t\tfunction jQuerySub( selector, context ) {\n\t\t\treturn new jQuerySub.fn.init( selector, context );\n\t\t}\n\t\tjQuery.extend( true, jQuerySub, this );\n\t\tjQuerySub.superclass = this;\n\t\tjQuerySub.fn = jQuerySub.prototype = this();\n\t\tjQuerySub.fn.constructor = jQuerySub;\n\t\tjQuerySub.sub = this.sub;\n\t\tjQuerySub.fn.init = function init( selector, context ) {\n\t\t\tif ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {\n\t\t\t\tcontext = jQuerySub( context );\n\t\t\t}\n\n\t\t\treturn jQuery.fn.init.call( this, selector, context, rootjQuerySub );\n\t\t};\n\t\tjQuerySub.fn.init.prototype = jQuerySub.fn;\n\t\tvar rootjQuerySub = jQuerySub(document);\n\t\treturn jQuerySub;\n\t},\n\n\tbrowser: {}\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nbrowserMatch = jQuery.uaMatch( userAgent );\nif ( browserMatch.browser ) {\n\tjQuery.browser[ browserMatch.browser ] = true;\n\tjQuery.browser.version = browserMatch.version;\n}\n\n// Deprecated, use jQuery.browser.webkit instead\nif ( jQuery.browser.webkit ) {\n\tjQuery.browser.safari = true;\n}\n\n// IE doesn't match non-breaking spaces with \\s\nif ( rnotwhite.test( \"\\xA0\" ) ) {\n\ttrimLeft = /^[\\s\\xA0]+/;\n\ttrimRight = /[\\s\\xA0]+$/;\n}\n\n// All jQuery objects should point back to these\nrootjQuery = jQuery(document);\n\n// Cleanup functions for the document ready method\nif ( document.addEventListener ) {\n\tDOMContentLoaded = function() {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", DOMContentLoaded, false );\n\t\tjQuery.ready();\n\t};\n\n} else if ( document.attachEvent ) {\n\tDOMContentLoaded = function() {\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\tdocument.detachEvent( \"onreadystatechange\", DOMContentLoaded );\n\t\t\tjQuery.ready();\n\t\t}\n\t};\n}\n\n// The DOM ready check for Internet Explorer\nfunction doScrollCheck() {\n\tif ( jQuery.isReady ) {\n\t\treturn;\n\t}\n\n\ttry {\n\t\t// If IE is used, use the trick by Diego Perini\n\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\tdocument.documentElement.doScroll(\"left\");\n\t} catch(e) {\n\t\tsetTimeout( doScrollCheck, 1 );\n\t\treturn;\n\t}\n\n\t// and execute any waiting functions\n\tjQuery.ready();\n}\n\nreturn jQuery;\n\n})();\n\n\n// String to Object flags format cache\nvar flagsCache = {};\n\n// Convert String-formatted flags into Object-formatted ones and store in cache\nfunction createFlags( flags ) {\n\tvar object = flagsCache[ flags ] = {},\n\t\ti, length;\n\tflags = flags.split( /\\s+/ );\n\tfor ( i = 0, length = flags.length; i < length; i++ ) {\n\t\tobject[ flags[i] ] = true;\n\t}\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\tflags:\tan optional list of space-separated flags that will change how\n *\t\t\tthe callback list behaves\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible flags:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( flags ) {\n\n\t// Convert flags from String-formatted to Object-formatted\n\t// (we check in cache first)\n\tflags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {};\n\n\tvar // Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = [],\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list is currently firing\n\t\tfiring,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// Add one or several callbacks to the list\n\t\tadd = function( args ) {\n\t\t\tvar i,\n\t\t\t\tlength,\n\t\t\t\telem,\n\t\t\t\ttype,\n\t\t\t\tactual;\n\t\t\tfor ( i = 0, length = args.length; i < length; i++ ) {\n\t\t\t\telem = args[ i ];\n\t\t\t\ttype = jQuery.type( elem );\n\t\t\t\tif ( type === \"array\" ) {\n\t\t\t\t\t// Inspect recursively\n\t\t\t\t\tadd( elem );\n\t\t\t\t} else if ( type === \"function\" ) {\n\t\t\t\t\t// Add if not in unique mode and callback is not in\n\t\t\t\t\tif ( !flags.unique || !self.has( elem ) ) {\n\t\t\t\t\t\tlist.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Fire callbacks\n\t\tfire = function( context, args ) {\n\t\t\targs = args || [];\n\t\t\tmemory = !flags.memory || [ context, args ];\n\t\t\tfiring = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) {\n\t\t\t\t\tmemory = true; // Mark as halted\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( !flags.once ) {\n\t\t\t\t\tif ( stack && stack.length ) {\n\t\t\t\t\t\tmemory = stack.shift();\n\t\t\t\t\t\tself.fireWith( memory[ 0 ], memory[ 1 ] );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory === true ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t} else {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar length = list.length;\n\t\t\t\t\tadd( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away, unless previous\n\t\t\t\t\t// firing was halted (stopOnFalse)\n\t\t\t\t\t} else if ( memory && memory !== true ) {\n\t\t\t\t\t\tfiringStart = length;\n\t\t\t\t\t\tfire( memory[ 0 ], memory[ 1 ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar args = arguments,\n\t\t\t\t\t\targIndex = 0,\n\t\t\t\t\t\targLength = args.length;\n\t\t\t\t\tfor ( ; argIndex < argLength ; argIndex++ ) {\n\t\t\t\t\t\tfor ( var i = 0; i < list.length; i++ ) {\n\t\t\t\t\t\t\tif ( args[ argIndex ] === list[ i ] ) {\n\t\t\t\t\t\t\t\t// Handle firingIndex and firingLength\n\t\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\t\tif ( i <= firingLength ) {\n\t\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t\t\tif ( i <= firingIndex ) {\n\t\t\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Remove the element\n\t\t\t\t\t\t\t\tlist.splice( i--, 1 );\n\t\t\t\t\t\t\t\t// If we have some unicity property then\n\t\t\t\t\t\t\t\t// we only need to do this once\n\t\t\t\t\t\t\t\tif ( flags.unique ) {\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Control if a given callback is in the list\n\t\t\thas: function( fn ) {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar i = 0,\n\t\t\t\t\t\tlength = list.length;\n\t\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\t\tif ( fn === list[ i ] ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory || memory === true ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tif ( !flags.once ) {\n\t\t\t\t\t\t\tstack.push( [ context, args ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if ( !( flags.once && memory ) ) {\n\t\t\t\t\t\tfire( context, args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!memory;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\n\n\nvar // Static reference to slice\n\tsliceDeferred = [].slice;\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar doneList = jQuery.Callbacks( \"once memory\" ),\n\t\t\tfailList = jQuery.Callbacks( \"once memory\" ),\n\t\t\tprogressList = jQuery.Callbacks( \"memory\" ),\n\t\t\tstate = \"pending\",\n\t\t\tlists = {\n\t\t\t\tresolve: doneList,\n\t\t\t\treject: failList,\n\t\t\t\tnotify: progressList\n\t\t\t},\n\t\t\tpromise = {\n\t\t\t\tdone: doneList.add,\n\t\t\t\tfail: failList.add,\n\t\t\t\tprogress: progressList.add,\n\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\n\t\t\t\t// Deprecated\n\t\t\t\tisResolved: doneList.fired,\n\t\t\t\tisRejected: failList.fired,\n\n\t\t\t\tthen: function( doneCallbacks, failCallbacks, progressCallbacks ) {\n\t\t\t\t\tdeferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tpipe: function( fnDone, fnFail, fnProgress ) {\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( {\n\t\t\t\t\t\t\tdone: [ fnDone, \"resolve\" ],\n\t\t\t\t\t\t\tfail: [ fnFail, \"reject\" ],\n\t\t\t\t\t\t\tprogress: [ fnProgress, \"notify\" ]\n\t\t\t\t\t\t}, function( handler, data ) {\n\t\t\t\t\t\t\tvar fn = data[ 0 ],\n\t\t\t\t\t\t\t\taction = data[ 1 ],\n\t\t\t\t\t\t\t\treturned;\n\t\t\t\t\t\t\tif ( jQuery.isFunction( fn ) ) {\n\t\t\t\t\t\t\t\tdeferred[ handler ](function() {\n\t\t\t\t\t\t\t\t\treturned = fn.apply( this, arguments );\n\t\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\t\treturned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify );\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tnewDefer[ action + \"With\" ]( this === deferred ? newDefer : this, [ returned ] );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tdeferred[ handler ]( newDefer[ action ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\tif ( obj == null ) {\n\t\t\t\t\t\tobj = promise;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfor ( var key in promise ) {\n\t\t\t\t\t\t\tobj[ key ] = promise[ key ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn obj;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = promise.promise({}),\n\t\t\tkey;\n\n\t\tfor ( key in lists ) {\n\t\t\tdeferred[ key ] = lists[ key ].fire;\n\t\t\tdeferred[ key + \"With\" ] = lists[ key ].fireWith;\n\t\t}\n\n\t\t// Handle state\n\t\tdeferred.done( function() {\n\t\t\tstate = \"resolved\";\n\t\t}, failList.disable, progressList.lock ).fail( function() {\n\t\t\tstate = \"rejected\";\n\t\t}, doneList.disable, progressList.lock );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( firstParam ) {\n\t\tvar args = sliceDeferred.call( arguments, 0 ),\n\t\t\ti = 0,\n\t\t\tlength = args.length,\n\t\t\tpValues = new Array( length ),\n\t\t\tcount = length,\n\t\t\tpCount = length,\n\t\t\tdeferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ?\n\t\t\t\tfirstParam :\n\t\t\t\tjQuery.Deferred(),\n\t\t\tpromise = deferred.promise();\n\t\tfunction resolveFunc( i ) {\n\t\t\treturn function( value ) {\n\t\t\t\targs[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value;\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdeferred.resolveWith( deferred, args );\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\tfunction progressFunc( i ) {\n\t\t\treturn function( value ) {\n\t\t\t\tpValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value;\n\t\t\t\tdeferred.notifyWith( promise, pValues );\n\t\t\t};\n\t\t}\n\t\tif ( length > 1 ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) {\n\t\t\t\t\targs[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) );\n\t\t\t\t} else {\n\t\t\t\t\t--count;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( !count ) {\n\t\t\t\tdeferred.resolveWith( deferred, args );\n\t\t\t}\n\t\t} else if ( deferred !== firstParam ) {\n\t\t\tdeferred.resolveWith( deferred, length ? [ firstParam ] : [] );\n\t\t}\n\t\treturn promise;\n\t}\n});\n\n\n\n\njQuery.support = (function() {\n\n\tvar support,\n\t\tall,\n\t\ta,\n\t\tselect,\n\t\topt,\n\t\tinput,\n\t\tmarginDiv,\n\t\tfragment,\n\t\ttds,\n\t\tevents,\n\t\teventName,\n\t\ti,\n\t\tisSupported,\n\t\tdiv = document.createElement( \"div\" ),\n\t\tdocumentElement = document.documentElement;\n\n\t// Preliminary tests\n\tdiv.setAttribute(\"className\", \"t\");\n\tdiv.innerHTML = \"   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>\";\n\n\tall = div.getElementsByTagName( \"*\" );\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\n\t// Can't get basic test support\n\tif ( !all || !all.length || !a ) {\n\t\treturn {};\n\t}\n\n\t// First batch of supports tests\n\tselect = document.createElement( \"select\" );\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName( \"input\" )[ 0 ];\n\n\tsupport = {\n\t\t// IE strips leading whitespace when .innerHTML is used\n\t\tleadingWhitespace: ( div.firstChild.nodeType === 3 ),\n\n\t\t// Make sure that tbody elements aren't automatically inserted\n\t\t// IE will insert them into empty tables\n\t\ttbody: !div.getElementsByTagName(\"tbody\").length,\n\n\t\t// Make sure that link elements get serialized correctly by innerHTML\n\t\t// This requires a wrapper element in IE\n\t\thtmlSerialize: !!div.getElementsByTagName(\"link\").length,\n\n\t\t// Get the style information from getAttribute\n\t\t// (IE uses .cssText instead)\n\t\tstyle: /top/.test( a.getAttribute(\"style\") ),\n\n\t\t// Make sure that URLs aren't manipulated\n\t\t// (IE normalizes it by default)\n\t\threfNormalized: ( a.getAttribute(\"href\") === \"/a\" ),\n\n\t\t// Make sure that element opacity exists\n\t\t// (IE uses filter instead)\n\t\t// Use a regex to work around a WebKit issue. See #5145\n\t\topacity: /^0.55/.test( a.style.opacity ),\n\n\t\t// Verify style float existence\n\t\t// (IE uses styleFloat instead of cssFloat)\n\t\tcssFloat: !!a.style.cssFloat,\n\n\t\t// Make sure that if no value is specified for a checkbox\n\t\t// that it defaults to \"on\".\n\t\t// (WebKit defaults to \"\" instead)\n\t\tcheckOn: ( input.value === \"on\" ),\n\n\t\t// Make sure that a selected-by-default option has a working selected property.\n\t\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\t\toptSelected: opt.selected,\n\n\t\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\t\tgetSetAttribute: div.className !== \"t\",\n\n\t\t// Tests for enctype support on a form(#6743)\n\t\tenctype: !!document.createElement(\"form\").enctype,\n\n\t\t// Makes sure cloning an html5 element does not cause problems\n\t\t// Where outerHTML is undefined, this still works\n\t\thtml5Clone: document.createElement(\"nav\").cloneNode( true ).outerHTML !== \"<:nav></:nav>\",\n\n\t\t// Will be defined later\n\t\tsubmitBubbles: true,\n\t\tchangeBubbles: true,\n\t\tfocusinBubbles: false,\n\t\tdeleteExpando: true,\n\t\tnoCloneEvent: true,\n\t\tinlineBlockNeedsLayout: false,\n\t\tshrinkWrapBlocks: false,\n\t\treliableMarginRight: true\n\t};\n\n\t// Make sure checked status is properly cloned\n\tinput.checked = true;\n\tsupport.noCloneChecked = input.cloneNode( true ).checked;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Test to see if it's possible to delete an expando from an element\n\t// Fails in Internet Explorer\n\ttry {\n\t\tdelete div.test;\n\t} catch( e ) {\n\t\tsupport.deleteExpando = false;\n\t}\n\n\tif ( !div.addEventListener && div.attachEvent && div.fireEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\t// Cloning a node shouldn't copy over any\n\t\t\t// bound event handlers (IE does this)\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\t\tdiv.cloneNode( true ).fireEvent( \"onclick\" );\n\t}\n\n\t// Check if a radio maintains its value\n\t// after being appended to the DOM\n\tinput = document.createElement(\"input\");\n\tinput.value = \"t\";\n\tinput.setAttribute(\"type\", \"radio\");\n\tsupport.radioValue = input.value === \"t\";\n\n\tinput.setAttribute(\"checked\", \"checked\");\n\tdiv.appendChild( input );\n\tfragment = document.createDocumentFragment();\n\tfragment.appendChild( div.lastChild );\n\n\t// WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tsupport.appendChecked = input.checked;\n\n\tfragment.removeChild( input );\n\tfragment.appendChild( div );\n\n\tdiv.innerHTML = \"\";\n\n\t// Check if div with explicit width and no margin-right incorrectly\n\t// gets computed margin-right based on width of container. For more\n\t// info see bug #3333\n\t// Fails in WebKit before Feb 2011 nightlies\n\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\tif ( window.getComputedStyle ) {\n\t\tmarginDiv = document.createElement( \"div\" );\n\t\tmarginDiv.style.width = \"0\";\n\t\tmarginDiv.style.marginRight = \"0\";\n\t\tdiv.style.width = \"2px\";\n\t\tdiv.appendChild( marginDiv );\n\t\tsupport.reliableMarginRight =\n\t\t\t( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0;\n\t}\n\n\t// Technique from Juriy Zaytsev\n\t// http://perfectionkills.com/detecting-event-support-without-browser-sniffing/\n\t// We only care about the case where non-standard event systems\n\t// are used, namely in IE. Short-circuiting here helps us to\n\t// avoid an eval call (in setAttribute) which can cause CSP\n\t// to go haywire. See: https://developer.mozilla.org/en/Security/CSP\n\tif ( div.attachEvent ) {\n\t\tfor( i in {\n\t\t\tsubmit: 1,\n\t\t\tchange: 1,\n\t\t\tfocusin: 1\n\t\t}) {\n\t\t\teventName = \"on\" + i;\n\t\t\tisSupported = ( eventName in div );\n\t\t\tif ( !isSupported ) {\n\t\t\t\tdiv.setAttribute( eventName, \"return;\" );\n\t\t\t\tisSupported = ( typeof div[ eventName ] === \"function\" );\n\t\t\t}\n\t\t\tsupport[ i + \"Bubbles\" ] = isSupported;\n\t\t}\n\t}\n\n\tfragment.removeChild( div );\n\n\t// Null elements to avoid leaks in IE\n\tfragment = select = opt = marginDiv = div = input = null;\n\n\t// Run tests that need a body at doc ready\n\tjQuery(function() {\n\t\tvar container, outer, inner, table, td, offsetSupport,\n\t\t\tconMarginTop, ptlm, vb, style, html,\n\t\t\tbody = document.getElementsByTagName(\"body\")[0];\n\n\t\tif ( !body ) {\n\t\t\t// Return for frameset docs that don't have a body\n\t\t\treturn;\n\t\t}\n\n\t\tconMarginTop = 1;\n\t\tptlm = \"position:absolute;top:0;left:0;width:1px;height:1px;margin:0;\";\n\t\tvb = \"visibility:hidden;border:0;\";\n\t\tstyle = \"style='\" + ptlm + \"border:5px solid #000;padding:0;'\";\n\t\thtml = \"<div \" + style + \"><div></div></div>\" +\n\t\t\t\"<table \" + style + \" cellpadding='0' cellspacing='0'>\" +\n\t\t\t\"<tr><td></td></tr></table>\";\n\n\t\tcontainer = document.createElement(\"div\");\n\t\tcontainer.style.cssText = vb + \"width:0;height:0;position:static;top:0;margin-top:\" + conMarginTop + \"px\";\n\t\tbody.insertBefore( container, body.firstChild );\n\n\t\t// Construct the test element\n\t\tdiv = document.createElement(\"div\");\n\t\tcontainer.appendChild( div );\n\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\t// (only IE 8 fails this test)\n\t\tdiv.innerHTML = \"<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>\";\n\t\ttds = div.getElementsByTagName( \"td\" );\n\t\tisSupported = ( tds[ 0 ].offsetHeight === 0 );\n\n\t\ttds[ 0 ].style.display = \"\";\n\t\ttds[ 1 ].style.display = \"none\";\n\n\t\t// Check if empty table cells still have offsetWidth/Height\n\t\t// (IE <= 8 fail this test)\n\t\tsupport.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 );\n\n\t\t// Figure out if the W3C box model works as expected\n\t\tdiv.innerHTML = \"\";\n\t\tdiv.style.width = div.style.paddingLeft = \"1px\";\n\t\tjQuery.boxModel = support.boxModel = div.offsetWidth === 2;\n\n\t\tif ( typeof div.style.zoom !== \"undefined\" ) {\n\t\t\t// Check if natively block-level elements act like inline-block\n\t\t\t// elements when setting their display to 'inline' and giving\n\t\t\t// them layout\n\t\t\t// (IE < 8 does this)\n\t\t\tdiv.style.display = \"inline\";\n\t\t\tdiv.style.zoom = 1;\n\t\t\tsupport.inlineBlockNeedsLayout = ( div.offsetWidth === 2 );\n\n\t\t\t// Check if elements with layout shrink-wrap their children\n\t\t\t// (IE 6 does this)\n\t\t\tdiv.style.display = \"\";\n\t\t\tdiv.innerHTML = \"<div style='width:4px;'></div>\";\n\t\t\tsupport.shrinkWrapBlocks = ( div.offsetWidth !== 2 );\n\t\t}\n\n\t\tdiv.style.cssText = ptlm + vb;\n\t\tdiv.innerHTML = html;\n\n\t\touter = div.firstChild;\n\t\tinner = outer.firstChild;\n\t\ttd = outer.nextSibling.firstChild.firstChild;\n\n\t\toffsetSupport = {\n\t\t\tdoesNotAddBorder: ( inner.offsetTop !== 5 ),\n\t\t\tdoesAddBorderForTableAndCells: ( td.offsetTop === 5 )\n\t\t};\n\n\t\tinner.style.position = \"fixed\";\n\t\tinner.style.top = \"20px\";\n\n\t\t// safari subtracts parent border width here which is 5px\n\t\toffsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 );\n\t\tinner.style.position = inner.style.top = \"\";\n\n\t\touter.style.overflow = \"hidden\";\n\t\touter.style.position = \"relative\";\n\n\t\toffsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 );\n\t\toffsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop );\n\n\t\tbody.removeChild( container );\n\t\tdiv  = container = null;\n\n\t\tjQuery.extend( support, offsetSupport );\n\t});\n\n\treturn support;\n})();\n\n\n\n\nvar rbrace = /^(?:\\{.*\\}|\\[.*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\njQuery.extend({\n\tcache: {},\n\n\t// Please use with caution\n\tuuid: 0,\n\n\t// Unique for each copy of jQuery on the page\n\t// Non-digits removed to match rinlinejQuery\n\texpando: \"jQuery\" + ( jQuery.fn.jquery + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// The following elements throw uncatchable exceptions if you\n\t// attempt to add expando properties to them.\n\tnoData: {\n\t\t\"embed\": true,\n\t\t// Ban all objects except for Flash (which handle expandos)\n\t\t\"object\": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\",\n\t\t\"applet\": true\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data, pvt /* Internal Use Only */ ) {\n\t\tif ( !jQuery.acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar privateCache, thisCache, ret,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tgetByName = typeof name === \"string\",\n\n\t\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t\t// can't GC object references properly across the DOM-JS boundary\n\t\t\tisNode = elem.nodeType,\n\n\t\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t\t// attached directly to the object so GC can occur automatically\n\t\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey,\n\t\t\tisEvents = name === \"events\";\n\n\t\t// Avoid doing any more work than we need to when trying to get data on an\n\t\t// object that has no data at all\n\t\tif ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( !id ) {\n\t\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t\t// ends up in the global cache\n\t\t\tif ( isNode ) {\n\t\t\t\telem[ internalKey ] = id = ++jQuery.uuid;\n\t\t\t} else {\n\t\t\t\tid = internalKey;\n\t\t\t}\n\t\t}\n\n\t\tif ( !cache[ id ] ) {\n\t\t\tcache[ id ] = {};\n\n\t\t\t// Avoids exposing jQuery metadata on plain JS objects when the object\n\t\t\t// is serialized using JSON.stringify\n\t\t\tif ( !isNode ) {\n\t\t\t\tcache[ id ].toJSON = jQuery.noop;\n\t\t\t}\n\t\t}\n\n\t\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t\t// shallow copied over onto the existing cache\n\t\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\t\tif ( pvt ) {\n\t\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t\t} else {\n\t\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t\t}\n\t\t}\n\n\t\tprivateCache = thisCache = cache[ id ];\n\n\t\t// jQuery data() is stored in a separate object inside the object's internal data\n\t\t// cache in order to avoid key collisions between internal data and user-defined\n\t\t// data.\n\t\tif ( !pvt ) {\n\t\t\tif ( !thisCache.data ) {\n\t\t\t\tthisCache.data = {};\n\t\t\t}\n\n\t\t\tthisCache = thisCache.data;\n\t\t}\n\n\t\tif ( data !== undefined ) {\n\t\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t\t}\n\n\t\t// Users should not attempt to inspect the internal events object using jQuery.data,\n\t\t// it is undocumented and subject to change. But does anyone listen? No.\n\t\tif ( isEvents && !thisCache[ name ] ) {\n\t\t\treturn privateCache.events;\n\t\t}\n\n\t\t// Check for both converted-to-camel and non-converted data property names\n\t\t// If a data property was specified\n\t\tif ( getByName ) {\n\n\t\t\t// First Try to find as-is property data\n\t\t\tret = thisCache[ name ];\n\n\t\t\t// Test for null|undefined property data\n\t\t\tif ( ret == null ) {\n\n\t\t\t\t// Try to find the camelCased property\n\t\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t\t}\n\t\t} else {\n\t\t\tret = thisCache;\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tremoveData: function( elem, name, pvt /* Internal Use Only */ ) {\n\t\tif ( !jQuery.acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar thisCache, i, l,\n\n\t\t\t// Reference to internal data cache key\n\t\t\tinternalKey = jQuery.expando,\n\n\t\t\tisNode = elem.nodeType,\n\n\t\t\t// See jQuery.data for more information\n\t\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t\t// See jQuery.data for more information\n\t\t\tid = isNode ? elem[ internalKey ] : internalKey;\n\n\t\t// If there is already no cache entry for this object, there is no\n\t\t// purpose in continuing\n\t\tif ( !cache[ id ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( name ) {\n\n\t\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\t\tif ( thisCache ) {\n\n\t\t\t\t// Support array or space separated string names for data keys\n\t\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tname = name.split( \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tfor ( i = 0, l = name.length; i < l; i++ ) {\n\t\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t\t}\n\n\t\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t\t// and let the cache object itself get destroyed\n\t\t\t\tif ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// See jQuery.data for more information\n\t\tif ( !pvt ) {\n\t\t\tdelete cache[ id ].data;\n\n\t\t\t// Don't destroy the parent cache unless the internal data object\n\t\t\t// had been the only thing left in it\n\t\t\tif ( !isEmptyDataObject(cache[ id ]) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\t// Browsers that fail expando deletion also refuse to delete expandos on\n\t\t// the window, but it will allow it on all other JS objects; other browsers\n\t\t// don't care\n\t\t// Ensure that `cache` is not a window object #10080\n\t\tif ( jQuery.support.deleteExpando || !cache.setInterval ) {\n\t\t\tdelete cache[ id ];\n\t\t} else {\n\t\t\tcache[ id ] = null;\n\t\t}\n\n\t\t// We destroyed the cache and need to eliminate the expando on the node to avoid\n\t\t// false lookups in the cache for entries that no longer exist\n\t\tif ( isNode ) {\n\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t// we must handle all of these cases\n\t\t\tif ( jQuery.support.deleteExpando ) {\n\t\t\t\tdelete elem[ internalKey ];\n\t\t\t} else if ( elem.removeAttribute ) {\n\t\t\t\telem.removeAttribute( internalKey );\n\t\t\t} else {\n\t\t\t\telem[ internalKey ] = null;\n\t\t\t}\n\t\t}\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn jQuery.data( elem, name, data, true );\n\t},\n\n\t// A method for determining if a DOM node can handle the data expando\n\tacceptData: function( elem ) {\n\t\tif ( elem.nodeName ) {\n\t\t\tvar match = jQuery.noData[ elem.nodeName.toLowerCase() ];\n\n\t\t\tif ( match ) {\n\t\t\t\treturn !(match === true || elem.getAttribute(\"classid\") !== match);\n\t\t\t}\n\t\t}\n\n\t\treturn true;\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar parts, attr, name,\n\t\t\tdata = null;\n\n\t\tif ( typeof key === \"undefined\" ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( this[0] );\n\n\t\t\t\tif ( this[0].nodeType === 1 && !jQuery._data( this[0], \"parsedAttrs\" ) ) {\n\t\t\t\t\tattr = this[0].attributes;\n\t\t\t\t\tfor ( var i = 0, l = attr.length; i < l; i++ ) {\n\t\t\t\t\t\tname = attr[i].name;\n\n\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\tname = jQuery.camelCase( name.substring(5) );\n\n\t\t\t\t\t\t\tdataAttr( this[0], name, data[ name ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( this[0], \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\n\t\t} else if ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\tparts = key.split(\".\");\n\t\tparts[1] = parts[1] ? \".\" + parts[1] : \"\";\n\n\t\tif ( value === undefined ) {\n\t\t\tdata = this.triggerHandler(\"getData\" + parts[1] + \"!\", [parts[0]]);\n\n\t\t\t// Try to fetch any internally stored data first\n\t\t\tif ( data === undefined && this.length ) {\n\t\t\t\tdata = jQuery.data( this[0], key );\n\t\t\t\tdata = dataAttr( this[0], key, data );\n\t\t\t}\n\n\t\t\treturn data === undefined && parts[1] ?\n\t\t\t\tthis.data( parts[0] ) :\n\t\t\t\tdata;\n\n\t\t} else {\n\t\t\treturn this.each(function() {\n\t\t\t\tvar self = jQuery( this ),\n\t\t\t\t\targs = [ parts[0], value ];\n\n\t\t\t\tself.triggerHandler( \"setData\" + parts[1] + \"!\", args );\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t\tself.triggerHandler( \"changeData\" + parts[1] + \"!\", args );\n\t\t\t});\n\t\t}\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\tdata === \"false\" ? false :\n\t\t\t\tdata === \"null\" ? null :\n\t\t\t\tjQuery.isNumeric( data ) ? parseFloat( data ) :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tfor ( var name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\n\n\n\nfunction handleQueueMarkDefer( elem, type, src ) {\n\tvar deferDataKey = type + \"defer\",\n\t\tqueueDataKey = type + \"queue\",\n\t\tmarkDataKey = type + \"mark\",\n\t\tdefer = jQuery._data( elem, deferDataKey );\n\tif ( defer &&\n\t\t( src === \"queue\" || !jQuery._data(elem, queueDataKey) ) &&\n\t\t( src === \"mark\" || !jQuery._data(elem, markDataKey) ) ) {\n\t\t// Give room for hard-coded callbacks to fire first\n\t\t// and eventually mark/queue something else on the element\n\t\tsetTimeout( function() {\n\t\t\tif ( !jQuery._data( elem, queueDataKey ) &&\n\t\t\t\t!jQuery._data( elem, markDataKey ) ) {\n\t\t\t\tjQuery.removeData( elem, deferDataKey, true );\n\t\t\t\tdefer.fire();\n\t\t\t}\n\t\t}, 0 );\n\t}\n}\n\njQuery.extend({\n\n\t_mark: function( elem, type ) {\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"mark\";\n\t\t\tjQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 );\n\t\t}\n\t},\n\n\t_unmark: function( force, elem, type ) {\n\t\tif ( force !== true ) {\n\t\t\ttype = elem;\n\t\t\telem = force;\n\t\t\tforce = false;\n\t\t}\n\t\tif ( elem ) {\n\t\t\ttype = type || \"fx\";\n\t\t\tvar key = type + \"mark\",\n\t\t\t\tcount = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 );\n\t\t\tif ( count ) {\n\t\t\t\tjQuery._data( elem, key, count );\n\t\t\t} else {\n\t\t\t\tjQuery.removeData( elem, key, true );\n\t\t\t\thandleQueueMarkDefer( elem, type, \"mark\" );\n\t\t\t}\n\t\t}\n\t},\n\n\tqueue: function( elem, type, data ) {\n\t\tvar q;\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tq = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !q || jQuery.isArray(data) ) {\n\t\t\t\t\tq = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tq.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn q || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tfn = queue.shift(),\n\t\t\thooks = {};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\tjQuery._data( elem, type + \".run\", hooks );\n\t\t\tfn.call( elem, function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t}, hooks );\n\t\t}\n\n\t\tif ( !queue.length ) {\n\t\t\tjQuery.removeData( elem, type + \"queue \" + type + \".run\", true );\n\t\t\thandleQueueMarkDefer( elem, type, \"queue\" );\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t}\n\n\t\tif ( data === undefined ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\t// Based off of the plugin by Clint Helfers, with permission.\n\t// http://blindsignals.com/index.php/2009/07/jquery-delay/\n\tdelay: function( time, type ) {\n\t\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\t\ttype = type || \"fx\";\n\n\t\treturn this.queue( type, function( next, hooks ) {\n\t\t\tvar timeout = setTimeout( next, time );\n\t\t\thooks.stop = function() {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t};\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, object ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobject = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\t\tvar defer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = elements.length,\n\t\t\tcount = 1,\n\t\t\tdeferDataKey = type + \"defer\",\n\t\t\tqueueDataKey = type + \"queue\",\n\t\t\tmarkDataKey = type + \"mark\",\n\t\t\ttmp;\n\t\tfunction resolve() {\n\t\t\tif ( !( --count ) ) {\n\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t}\n\t\t}\n\t\twhile( i-- ) {\n\t\t\tif (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) ||\n\t\t\t\t\t( jQuery.data( elements[ i ], queueDataKey, undefined, true ) ||\n\t\t\t\t\t\tjQuery.data( elements[ i ], markDataKey, undefined, true ) ) &&\n\t\t\t\t\tjQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( \"once memory\" ), true ) )) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise();\n\t}\n});\n\n\n\n\nvar rclass = /[\\n\\t\\r]/g,\n\trspace = /\\s+/,\n\trreturn = /\\r/g,\n\trtype = /^(?:button|input)$/i,\n\trfocusable = /^(?:button|input|object|select|textarea)$/i,\n\trclickable = /^a(?:rea)?$/i,\n\trboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,\n\tgetSetAttribute = jQuery.support.getSetAttribute,\n\tnodeHook, boolHook, fixSpecified;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn jQuery.access( this, name, value, true, jQuery.attr );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t},\n\n\tprop: function( name, value ) {\n\t\treturn jQuery.access( this, name, value, true, jQuery.prop );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t},\n\n\taddClass: function( value ) {\n\t\tvar classNames, i, l, elem,\n\t\t\tsetClass, c, cl;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call(this, j, this.className) );\n\t\t\t});\n\t\t}\n\n\t\tif ( value && typeof value === \"string\" ) {\n\t\t\tclassNames = value.split( rspace );\n\n\t\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\tif ( !elem.className && classNames.length === 1 ) {\n\t\t\t\t\t\telem.className = value;\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetClass = \" \" + elem.className + \" \";\n\n\t\t\t\t\t\tfor ( c = 0, cl = classNames.length; c < cl; c++ ) {\n\t\t\t\t\t\t\tif ( !~setClass.indexOf( \" \" + classNames[ c ] + \" \" ) ) {\n\t\t\t\t\t\t\t\tsetClass += classNames[ c ] + \" \";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telem.className = jQuery.trim( setClass );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classNames, i, l, elem, className, c, cl;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call(this, j, this.className) );\n\t\t\t});\n\t\t}\n\n\t\tif ( (value && typeof value === \"string\") || value === undefined ) {\n\t\t\tclassNames = ( value || \"\" ).split( rspace );\n\n\t\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.nodeType === 1 && elem.className ) {\n\t\t\t\t\tif ( value ) {\n\t\t\t\t\t\tclassName = (\" \" + elem.className + \" \").replace( rclass, \" \" );\n\t\t\t\t\t\tfor ( c = 0, cl = classNames.length; c < cl; c++ ) {\n\t\t\t\t\t\t\tclassName = className.replace(\" \" + classNames[ c ] + \" \", \" \");\n\t\t\t\t\t\t}\n\t\t\t\t\t\telem.className = jQuery.trim( className );\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem.className = \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisBool = typeof stateVal === \"boolean\";\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tstate = stateVal,\n\t\t\t\t\tclassNames = value.split( rspace );\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space seperated list\n\t\t\t\t\tstate = isBool ? state : !self.hasClass( className );\n\t\t\t\t\tself[ state ? \"addClass\" : \"removeClass\" ]( className );\n\t\t\t\t}\n\n\t\t\t} else if ( type === \"undefined\" || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// toggle whole className\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) > -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.nodeName.toLowerCase() ] || jQuery.valHooks[ elem.type ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar self = jQuery(this), val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, self.val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map(val, function ( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.nodeName.toLowerCase() ] || jQuery.valHooks[ this.type ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// attributes.value is undefined in Blackberry 4.7 but\n\t\t\t\t// uses .value. See #6932\n\t\t\t\tvar val = elem.attributes.value;\n\t\t\t\treturn !val || val.specified ? elem.value : elem.text;\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, i, max, option,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tvalues = [],\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tone = elem.type === \"select-one\";\n\n\t\t\t\t// Nothing was selected\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\ti = one ? index : 0;\n\t\t\t\tmax = one ? index + 1 : options.length;\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\tif ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null) &&\n\t\t\t\t\t\t\t(!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" )) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fixes Bug #2551 -- select.val() broken in IE after form.reset()\n\t\t\t\tif ( one && !values.length && options.length ) {\n\t\t\t\t\treturn jQuery( options[ index ] ).val();\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar values = jQuery.makeArray( value );\n\n\t\t\t\tjQuery(elem).find(\"option\").each(function() {\n\t\t\t\t\tthis.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;\n\t\t\t\t});\n\n\t\t\t\tif ( !values.length ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t},\n\n\tattrFn: {\n\t\tval: true,\n\t\tcss: true,\n\t\thtml: true,\n\t\ttext: true,\n\t\tdata: true,\n\t\twidth: true,\n\t\theight: true,\n\t\toffset: true\n\t},\n\n\tattr: function( elem, name, value, pass ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( pass && name in jQuery.attrFn ) {\n\t\t\treturn jQuery( elem )[ name ]( value );\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( notxml ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\n\t\t\t} else if ( hooks && \"set\" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, \"\" + value );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\n\t\t\tret = elem.getAttribute( name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret === null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar propName, attrNames, name, l,\n\t\t\ti = 0;\n\n\t\tif ( value && elem.nodeType === 1 ) {\n\t\t\tattrNames = value.toLowerCase().split( rspace );\n\t\t\tl = attrNames.length;\n\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tname = attrNames[ i ];\n\n\t\t\t\tif ( name ) {\n\t\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\n\t\t\t\t\t// Set corresponding property to false for boolean attributes\n\t\t\t\t\tif ( rboolean.test( name ) && propName in elem ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\t// We can't allow the type property to be changed (since it causes problems in IE)\n\t\t\t\tif ( rtype.test( elem.nodeName ) && elem.parentNode ) {\n\t\t\t\t\tjQuery.error( \"type property can't be changed\" );\n\t\t\t\t} else if ( !jQuery.support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to it's default in case type is set after value\n\t\t\t\t\t// This is for element creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Use the value property for back compat\n\t\t// Use the nodeHook for button elements in IE6/7 (#1954)\n\t\tvalue: {\n\t\t\tget: function( elem, name ) {\n\t\t\t\tif ( nodeHook && jQuery.nodeName( elem, \"button\" ) ) {\n\t\t\t\t\treturn nodeHook.get( elem, name );\n\t\t\t\t}\n\t\t\t\treturn name in elem ?\n\t\t\t\t\telem.value :\n\t\t\t\t\tnull;\n\t\t\t},\n\t\t\tset: function( elem, value, name ) {\n\t\t\t\tif ( nodeHook && jQuery.nodeName( elem, \"button\" ) ) {\n\t\t\t\t\treturn nodeHook.set( elem, value, name );\n\t\t\t\t}\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.value = value;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\ttabindex: \"tabIndex\",\n\t\treadonly: \"readOnly\",\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\",\n\t\tmaxlength: \"maxLength\",\n\t\tcellspacing: \"cellSpacing\",\n\t\tcellpadding: \"cellPadding\",\n\t\trowspan: \"rowSpan\",\n\t\tcolspan: \"colSpan\",\n\t\tusemap: \"useMap\",\n\t\tframeborder: \"frameBorder\",\n\t\tcontenteditable: \"contentEditable\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\treturn ( elem[ name ] = value );\n\t\t\t}\n\n\t\t} else {\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\treturn elem[ name ];\n\t\t\t}\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\tvar attributeNode = elem.getAttributeNode(\"tabindex\");\n\n\t\t\t\treturn attributeNode && attributeNode.specified ?\n\t\t\t\t\tparseInt( attributeNode.value, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\tundefined;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional)\njQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex;\n\n// Hook for boolean attributes\nboolHook = {\n\tget: function( elem, name ) {\n\t\t// Align boolean attributes with corresponding properties\n\t\t// Fall back to attribute presence where some booleans are not supported\n\t\tvar attrNode,\n\t\t\tproperty = jQuery.prop( elem, name );\n\t\treturn property === true || typeof property !== \"boolean\" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?\n\t\t\tname.toLowerCase() :\n\t\t\tundefined;\n\t},\n\tset: function( elem, value, name ) {\n\t\tvar propName;\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\t// value is true since we know at this point it's type boolean and not false\n\t\t\t// Set boolean attributes to the same name and set the DOM property\n\t\t\tpropName = jQuery.propFix[ name ] || name;\n\t\t\tif ( propName in elem ) {\n\t\t\t\t// Only set the IDL specifically if it already exists on the element\n\t\t\t\telem[ propName ] = true;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, name.toLowerCase() );\n\t\t}\n\t\treturn name;\n\t}\n};\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\tfixSpecified = {\n\t\tname: true,\n\t\tid: true\n\t};\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = jQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret;\n\t\t\tret = elem.getAttributeNode( name );\n\t\t\treturn ret && ( fixSpecified[ name ] ? ret.nodeValue !== \"\" : ret.specified ) ?\n\t\t\t\tret.nodeValue :\n\t\t\t\tundefined;\n\t\t},\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\tret = document.createAttribute( name );\n\t\t\t\telem.setAttributeNode( ret );\n\t\t\t}\n\t\t\treturn ( ret.nodeValue = value + \"\" );\n\t\t}\n\t};\n\n\t// Apply the nodeHook to tabindex\n\tjQuery.attrHooks.tabindex.set = nodeHook.set;\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tget: nodeHook.get,\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( value === \"\" ) {\n\t\t\t\tvalue = \"false\";\n\t\t\t}\n\t\t\tnodeHook.set( elem, value, name );\n\t\t}\n\t};\n}\n\n\n// Some attributes require a special call on IE\nif ( !jQuery.support.hrefNormalized ) {\n\tjQuery.each([ \"href\", \"src\", \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar ret = elem.getAttribute( name, 2 );\n\t\t\t\treturn ret === null ? undefined : ret;\n\t\t\t}\n\t\t});\n\t});\n}\n\nif ( !jQuery.support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Normalize to lowercase since IE uppercases css property names\n\t\t\treturn elem.style.cssText.toLowerCase() || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = \"\" + value );\n\t\t}\n\t};\n}\n\n// Safari mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !jQuery.support.optSelected ) {\n\tjQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t});\n}\n\n// IE6/7 call enctype encoding\nif ( !jQuery.support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n// Radios and checkboxes getter/setter\nif ( !jQuery.support.checkOn ) {\n\tjQuery.each([ \"radio\", \"checkbox\" ], function() {\n\t\tjQuery.valHooks[ this ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\t// Handle the case where in Webkit \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t\t}\n\t\t};\n\t});\n}\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t});\n});\n\n\n\n\nvar rformElems = /^(?:textarea|input|select)$/i,\n\trtypenamespace = /^([^\\.]*)?(?:\\.(.+))?$/,\n\trhoverHack = /\\bhover(\\.\\S+)?\\b/,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trquickIs = /^(\\w*)(?:#([\\w\\-]+))?(?:\\.([\\w\\-]+))?$/,\n\tquickParse = function( selector ) {\n\t\tvar quick = rquickIs.exec( selector );\n\t\tif ( quick ) {\n\t\t\t//   0  1    2   3\n\t\t\t// [ _, tag, id, class ]\n\t\t\tquick[1] = ( quick[1] || \"\" ).toLowerCase();\n\t\t\tquick[3] = quick[3] && new RegExp( \"(?:^|\\\\s)\" + quick[3] + \"(?:\\\\s|$)\" );\n\t\t}\n\t\treturn quick;\n\t},\n\tquickIs = function( elem, m ) {\n\t\tvar attrs = elem.attributes || {};\n\t\treturn (\n\t\t\t(!m[1] || elem.nodeName.toLowerCase() === m[1]) &&\n\t\t\t(!m[2] || (attrs.id || {}).value === m[2]) &&\n\t\t\t(!m[3] || m[3].test( (attrs[ \"class\" ] || {}).value ))\n\t\t);\n\t},\n\thoverHack = function( events ) {\n\t\treturn jQuery.event.special.hover ? events : events.replace( rhoverHack, \"mouseenter$1 mouseleave$1\" );\n\t};\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar elemData, eventHandle, events,\n\t\t\tt, tns, type, namespaces, handleObj,\n\t\t\thandleObjIn, quick, handlers, special;\n\n\t\t// Don't attach events to noData or text/comment nodes (allow plain objects tho)\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tevents = elemData.events;\n\t\tif ( !events ) {\n\t\t\telemData.events = events = {};\n\t\t}\n\t\teventHandle = elemData.handle;\n\t\tif ( !eventHandle ) {\n\t\t\telemData.handle = eventHandle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\t// jQuery(...).bind(\"mouseover mouseout\", fn);\n\t\ttypes = jQuery.trim( hoverHack(types) ).split( \" \" );\n\t\tfor ( t = 0; t < types.length; t++ ) {\n\n\t\t\ttns = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = tns[1];\n\t\t\tnamespaces = ( tns[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: tns[1],\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tquick: quickParse( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\thandlers = events[ type ];\n\t\t\tif ( !handlers ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\tglobal: {},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar elemData = jQuery.hasData( elem ) && jQuery._data( elem ),\n\t\t\tt, tns, type, origType, namespaces, origCount,\n\t\t\tj, events, special, handle, eventType, handleObj;\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = jQuery.trim( hoverHack( types || \"\" ) ).split(\" \");\n\t\tfor ( t = 0; t < types.length; t++ ) {\n\t\t\ttns = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tns[1];\n\t\t\tnamespaces = tns[2];\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector? special.delegateType : special.bindType ) || type;\n\t\t\teventType = events[ type ] || [];\n\t\t\torigCount = eventType.length;\n\t\t\tnamespaces = namespaces ? new RegExp(\"(^|\\\\.)\" + namespaces.split(\".\").sort().join(\"\\\\.(?:.*\\\\.)?\") + \"(\\\\.|$)\") : null;\n\n\t\t\t// Remove matching events\n\t\t\tfor ( j = 0; j < eventType.length; j++ ) {\n\t\t\t\thandleObj = eventType[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t ( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t ( !namespaces || namespaces.test( handleObj.namespace ) ) &&\n\t\t\t\t\t ( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\teventType.splice( j--, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\teventType.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( eventType.length === 0 && origCount !== eventType.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\thandle = elemData.handle;\n\t\t\tif ( handle ) {\n\t\t\t\thandle.elem = null;\n\t\t\t}\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery.removeData( elem, [ \"events\", \"handle\" ], true );\n\t\t}\n\t},\n\n\t// Events that are safe to short-circuit if no handlers are attached.\n\t// Native DOM events should not be added, they may have inline handlers.\n\tcustomEvent: {\n\t\t\"getData\": true,\n\t\t\"setData\": true,\n\t\t\"changeData\": true\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Event object or event type\n\t\tvar type = event.type || event,\n\t\t\tnamespaces = [],\n\t\t\tcache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType;\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \"!\" ) >= 0 ) {\n\t\t\t// Exclusive events trigger only for the exact event (no namespaces)\n\t\t\ttype = type.slice(0, -1);\n\t\t\texclusive = true;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\n\t\tif ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) {\n\t\t\t// No jQuery handlers for this event type, and it can't have inline handlers\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an Event, Object, or just an event type string\n\t\tevent = typeof event === \"object\" ?\n\t\t\t// jQuery.Event object\n\t\t\tevent[ jQuery.expando ] ? event :\n\t\t\t// Object literal\n\t\t\tnew jQuery.Event( type, event ) :\n\t\t\t// Just the event type (string)\n\t\t\tnew jQuery.Event( type );\n\n\t\tevent.type = type;\n\t\tevent.isTrigger = true;\n\t\tevent.exclusive = exclusive;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.namespace_re = event.namespace? new RegExp(\"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.)?\") + \"(\\\\.|$)\") : null;\n\t\tontype = type.indexOf( \":\" ) < 0 ? \"on\" + type : \"\";\n\n\t\t// Handle a global trigger\n\t\tif ( !elem ) {\n\n\t\t\t// TODO: Stop taunting the data cache; remove global events and always attach to document\n\t\t\tcache = jQuery.cache;\n\t\t\tfor ( i in cache ) {\n\t\t\t\tif ( cache[ i ].events && cache[ i ].events[ type ] ) {\n\t\t\t\t\tjQuery.event.trigger( event, data, cache[ i ].handle.elem, true );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data != null ? jQuery.makeArray( data ) : [];\n\t\tdata.unshift( event );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\teventPath = [[ elem, special.bindType || type ]];\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tcur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode;\n\t\t\told = null;\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push([ cur, bubbleType ]);\n\t\t\t\told = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( old && old === elem.ownerDocument ) {\n\t\t\t\teventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]);\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\tfor ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) {\n\n\t\t\tcur = eventPath[i][0];\n\t\t\tevent.type = eventPath[i][1];\n\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\t\t\t// Note that this is a bare JS function and not a jQuery handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) &&\n\t\t\t\t!(type === \"click\" && jQuery.nodeName( elem, \"a\" )) && jQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486)\n\t\t\t\tif ( ontype && elem[ type ] && ((type !== \"focus\" && type !== \"blur\") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\told = elem[ ontype ];\n\n\t\t\t\t\tif ( old ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\telem[ type ]();\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( old ) {\n\t\t\t\t\t\telem[ ontype ] = old;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event || window.event );\n\n\t\tvar handlers = ( (jQuery._data( this, \"events\" ) || {} )[ event.type ] || []),\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\targs = [].slice.call( arguments, 0 ),\n\t\t\trun_all = !event.exclusive && !event.namespace,\n\t\t\thandlerQueue = [],\n\t\t\ti, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related;\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Determine handlers that should run if there are delegated events\n\t\t// Avoid disabled elements in IE (#6911) and non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && !event.target.disabled && !(event.button && event.type === \"click\") ) {\n\n\t\t\t// Pregenerate a single jQuery object for reuse with .is()\n\t\t\tjqcur = jQuery(this);\n\t\t\tjqcur.context = this.ownerDocument || this;\n\n\t\t\tfor ( cur = event.target; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\tselMatch = {};\n\t\t\t\tmatches = [];\n\t\t\t\tjqcur[0] = cur;\n\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\thandleObj = handlers[ i ];\n\t\t\t\t\tsel = handleObj.selector;\n\n\t\t\t\t\tif ( selMatch[ sel ] === undefined ) {\n\t\t\t\t\t\tselMatch[ sel ] = (\n\t\t\t\t\t\t\thandleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel )\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\tif ( selMatch[ sel ] ) {\n\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif ( matches.length ) {\n\t\t\t\t\thandlerQueue.push({ elem: cur, matches: matches });\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( handlers.length > delegateCount ) {\n\t\t\thandlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\tfor ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) {\n\t\t\tmatched = handlerQueue[ i ];\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tfor ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) {\n\t\t\t\thandleObj = matched.matches[ j ];\n\n\t\t\t\t// Triggered event must either 1) be non-exclusive and have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.data = handleObj.data;\n\t\t\t\t\tevent.handleObj = handleObj;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tevent.result = ret;\n\t\t\t\t\t\tif ( ret === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\t// *** attrChange attrName relatedNode srcElement  are not normalized, non-W3C, deprecated, will be removed in 1.8 ***\n\tprops: \"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar eventDoc, doc, body,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = jQuery.event.fixHooks[ event.type ] || {},\n\t\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = jQuery.Event( originalEvent );\n\n\t\tfor ( i = copy.length; i; ) {\n\t\t\tprop = copy[ --i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Fix target property, if necessary (#1925, IE 6/7/8 & Safari2)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Target should not be a text node (#504, Safari)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8)\n\t\tif ( event.metaKey === undefined ) {\n\t\t\tevent.metaKey = event.ctrlKey;\n\t\t}\n\n\t\treturn fixHook.filter? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\tspecial: {\n\t\tready: {\n\t\t\t// Make sure the ready event is setup\n\t\t\tsetup: jQuery.bindReady\n\t\t},\n\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\n\t\tfocus: {\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tsetup: function( data, namespaces, eventHandle ) {\n\t\t\t\t// We only want to do this special case on windows\n\t\t\t\tif ( jQuery.isWindow( this ) ) {\n\t\t\t\t\tthis.onbeforeunload = eventHandle;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tteardown: function( namespaces, eventHandle ) {\n\t\t\t\tif ( this.onbeforeunload === eventHandle ) {\n\t\t\t\t\tthis.onbeforeunload = null;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{ type: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\n// Some plugins are using, but it's undocumented/deprecated and will be removed.\n// The 1.7 special event interface should provide all the hooks needed now.\njQuery.event.handle = jQuery.event.dispatch;\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.detachEvent ) {\n\t\t\telem.detachEvent( \"on\" + type, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false ||\n\t\t\tsrc.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\nfunction returnFalse() {\n\treturn false;\n}\nfunction returnTrue() {\n\treturn true;\n}\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tpreventDefault: function() {\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tvar e = this.originalEvent;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// if preventDefault exists run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// otherwise set the returnValue property of the original event to false (IE)\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tvar e = this.originalEvent;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// if stopPropagation exists run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t\t// otherwise set the cancelBubble property of the original event to true (IE)\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\t\tthis.stopPropagation();\n\t},\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar target = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj,\n\t\t\t\tselector = handleObj.selector,\n\t\t\t\tret;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !jQuery.support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !form._submit_attached ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tform._submit_attached = true;\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !jQuery.support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !elem._change_attached ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\telem._change_attached = true;\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !jQuery.support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler while someone wants focusin/focusout\n\t\tvar attaches = 0,\n\t\t\thandler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tif ( attaches++ === 0 ) {\n\t\t\t\t\tdocument.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tif ( --attaches === 0 ) {\n\t\t\t\t\tdocument.removeEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar origFn, type;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on.call( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\tvar handleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace? handleObj.type + \".\" + handleObj.namespace : handleObj.type,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( var type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tlive: function( types, data, fn ) {\n\t\tjQuery( this.context ).on( types, this.selector, data, fn );\n\t\treturn this;\n\t},\n\tdie: function( types, fn ) {\n\t\tjQuery( this.context ).off( types, this.selector || \"**\", fn );\n\t\treturn this;\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length == 1? this.off( selector, \"**\" ) : this.off( types, selector, fn );\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tif ( this[0] ) {\n\t\t\treturn jQuery.event.trigger( type, data, this[0], true );\n\t\t}\n\t},\n\n\ttoggle: function( fn ) {\n\t\t// Save reference to arguments for access in closure\n\t\tvar args = arguments,\n\t\t\tguid = fn.guid || jQuery.guid++,\n\t\t\ti = 0,\n\t\t\ttoggler = function( event ) {\n\t\t\t\t// Figure out which function to execute\n\t\t\t\tvar lastToggle = ( jQuery._data( this, \"lastToggle\" + fn.guid ) || 0 ) % i;\n\t\t\t\tjQuery._data( this, \"lastToggle\" + fn.guid, lastToggle + 1 );\n\n\t\t\t\t// Make sure that clicks stop\n\t\t\t\tevent.preventDefault();\n\n\t\t\t\t// and execute the function\n\t\t\t\treturn args[ lastToggle ].apply( this, arguments ) || false;\n\t\t\t};\n\n\t\t// link all the functions, so any of them can unbind this click handler\n\t\ttoggler.guid = guid;\n\t\twhile ( i < args.length ) {\n\t\t\targs[ i++ ].guid = guid;\n\t\t}\n\n\t\treturn this.click( toggler );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n});\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\tif ( fn == null ) {\n\t\t\tfn = data;\n\t\t\tdata = null;\n\t\t}\n\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n\n\tif ( jQuery.attrFn ) {\n\t\tjQuery.attrFn[ name ] = true;\n\t}\n\n\tif ( rkeyEvent.test( name ) ) {\n\t\tjQuery.event.fixHooks[ name ] = jQuery.event.keyHooks;\n\t}\n\n\tif ( rmouseEvent.test( name ) ) {\n\t\tjQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks;\n\t}\n});\n\n\n\n/*!\n * Sizzle CSS Selector Engine\n *  Copyright 2011, The Dojo Foundation\n *  Released under the MIT, BSD, and GPL Licenses.\n *  More information: http://sizzlejs.com/\n */\n(function(){\n\nvar chunker = /((?:\\((?:\\([^()]+\\)|[^()]+)+\\)|\\[(?:\\[[^\\[\\]]*\\]|['\"][^'\"]*['\"]|[^\\[\\]'\"]+)+\\]|\\\\.|[^ >+~,(\\[\\\\]+)+|[>+~])(\\s*,\\s*)?((?:.|\\r|\\n)*)/g,\n\texpando = \"sizcache\" + (Math.random() + '').replace('.', ''),\n\tdone = 0,\n\ttoString = Object.prototype.toString,\n\thasDuplicate = false,\n\tbaseHasDuplicate = true,\n\trBackslash = /\\\\/g,\n\trReturn = /\\r\\n/g,\n\trNonWord = /\\W/;\n\n// Here we check if the JavaScript engine is using some sort of\n// optimization where it does not always call our comparision\n// function. If that is the case, discard the hasDuplicate value.\n//   Thus far that includes Google Chrome.\n[0, 0].sort(function() {\n\tbaseHasDuplicate = false;\n\treturn 0;\n});\n\nvar Sizzle = function( selector, context, results, seed ) {\n\tresults = results || [];\n\tcontext = context || document;\n\n\tvar origContext = context;\n\n\tif ( context.nodeType !== 1 && context.nodeType !== 9 ) {\n\t\treturn [];\n\t}\n\t\n\tif ( !selector || typeof selector !== \"string\" ) {\n\t\treturn results;\n\t}\n\n\tvar m, set, checkSet, extra, ret, cur, pop, i,\n\t\tprune = true,\n\t\tcontextXML = Sizzle.isXML( context ),\n\t\tparts = [],\n\t\tsoFar = selector;\n\t\n\t// Reset the position of the chunker regexp (start from head)\n\tdo {\n\t\tchunker.exec( \"\" );\n\t\tm = chunker.exec( soFar );\n\n\t\tif ( m ) {\n\t\t\tsoFar = m[3];\n\t\t\n\t\t\tparts.push( m[1] );\n\t\t\n\t\t\tif ( m[2] ) {\n\t\t\t\textra = m[3];\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t} while ( m );\n\n\tif ( parts.length > 1 && origPOS.exec( selector ) ) {\n\n\t\tif ( parts.length === 2 && Expr.relative[ parts[0] ] ) {\n\t\t\tset = posProcess( parts[0] + parts[1], context, seed );\n\n\t\t} else {\n\t\t\tset = Expr.relative[ parts[0] ] ?\n\t\t\t\t[ context ] :\n\t\t\t\tSizzle( parts.shift(), context );\n\n\t\t\twhile ( parts.length ) {\n\t\t\t\tselector = parts.shift();\n\n\t\t\t\tif ( Expr.relative[ selector ] ) {\n\t\t\t\t\tselector += parts.shift();\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tset = posProcess( selector, set, seed );\n\t\t\t}\n\t\t}\n\n\t} else {\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\t// (but not if it'll be faster if the inner selector is an ID)\n\t\tif ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML &&\n\t\t\t\tExpr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) {\n\n\t\t\tret = Sizzle.find( parts.shift(), context, contextXML );\n\t\t\tcontext = ret.expr ?\n\t\t\t\tSizzle.filter( ret.expr, ret.set )[0] :\n\t\t\t\tret.set[0];\n\t\t}\n\n\t\tif ( context ) {\n\t\t\tret = seed ?\n\t\t\t\t{ expr: parts.pop(), set: makeArray(seed) } :\n\t\t\t\tSizzle.find( parts.pop(), parts.length === 1 && (parts[0] === \"~\" || parts[0] === \"+\") && context.parentNode ? context.parentNode : context, contextXML );\n\n\t\t\tset = ret.expr ?\n\t\t\t\tSizzle.filter( ret.expr, ret.set ) :\n\t\t\t\tret.set;\n\n\t\t\tif ( parts.length > 0 ) {\n\t\t\t\tcheckSet = makeArray( set );\n\n\t\t\t} else {\n\t\t\t\tprune = false;\n\t\t\t}\n\n\t\t\twhile ( parts.length ) {\n\t\t\t\tcur = parts.pop();\n\t\t\t\tpop = cur;\n\n\t\t\t\tif ( !Expr.relative[ cur ] ) {\n\t\t\t\t\tcur = \"\";\n\t\t\t\t} else {\n\t\t\t\t\tpop = parts.pop();\n\t\t\t\t}\n\n\t\t\t\tif ( pop == null ) {\n\t\t\t\t\tpop = context;\n\t\t\t\t}\n\n\t\t\t\tExpr.relative[ cur ]( checkSet, pop, contextXML );\n\t\t\t}\n\n\t\t} else {\n\t\t\tcheckSet = parts = [];\n\t\t}\n\t}\n\n\tif ( !checkSet ) {\n\t\tcheckSet = set;\n\t}\n\n\tif ( !checkSet ) {\n\t\tSizzle.error( cur || selector );\n\t}\n\n\tif ( toString.call(checkSet) === \"[object Array]\" ) {\n\t\tif ( !prune ) {\n\t\t\tresults.push.apply( results, checkSet );\n\n\t\t} else if ( context && context.nodeType === 1 ) {\n\t\t\tfor ( i = 0; checkSet[i] != null; i++ ) {\n\t\t\t\tif ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) {\n\t\t\t\t\tresults.push( set[i] );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\t\t\tfor ( i = 0; checkSet[i] != null; i++ ) {\n\t\t\t\tif ( checkSet[i] && checkSet[i].nodeType === 1 ) {\n\t\t\t\t\tresults.push( set[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t} else {\n\t\tmakeArray( checkSet, results );\n\t}\n\n\tif ( extra ) {\n\t\tSizzle( extra, origContext, results, seed );\n\t\tSizzle.uniqueSort( results );\n\t}\n\n\treturn results;\n};\n\nSizzle.uniqueSort = function( results ) {\n\tif ( sortOrder ) {\n\t\thasDuplicate = baseHasDuplicate;\n\t\tresults.sort( sortOrder );\n\n\t\tif ( hasDuplicate ) {\n\t\t\tfor ( var i = 1; i < results.length; i++ ) {\n\t\t\t\tif ( results[i] === results[ i - 1 ] ) {\n\t\t\t\t\tresults.splice( i--, 1 );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn results;\n};\n\nSizzle.matches = function( expr, set ) {\n\treturn Sizzle( expr, null, null, set );\n};\n\nSizzle.matchesSelector = function( node, expr ) {\n\treturn Sizzle( expr, null, null, [node] ).length > 0;\n};\n\nSizzle.find = function( expr, context, isXML ) {\n\tvar set, i, len, match, type, left;\n\n\tif ( !expr ) {\n\t\treturn [];\n\t}\n\n\tfor ( i = 0, len = Expr.order.length; i < len; i++ ) {\n\t\ttype = Expr.order[i];\n\t\t\n\t\tif ( (match = Expr.leftMatch[ type ].exec( expr )) ) {\n\t\t\tleft = match[1];\n\t\t\tmatch.splice( 1, 1 );\n\n\t\t\tif ( left.substr( left.length - 1 ) !== \"\\\\\" ) {\n\t\t\t\tmatch[1] = (match[1] || \"\").replace( rBackslash, \"\" );\n\t\t\t\tset = Expr.find[ type ]( match, context, isXML );\n\n\t\t\t\tif ( set != null ) {\n\t\t\t\t\texpr = expr.replace( Expr.match[ type ], \"\" );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( !set ) {\n\t\tset = typeof context.getElementsByTagName !== \"undefined\" ?\n\t\t\tcontext.getElementsByTagName( \"*\" ) :\n\t\t\t[];\n\t}\n\n\treturn { set: set, expr: expr };\n};\n\nSizzle.filter = function( expr, set, inplace, not ) {\n\tvar match, anyFound,\n\t\ttype, found, item, filter, left,\n\t\ti, pass,\n\t\told = expr,\n\t\tresult = [],\n\t\tcurLoop = set,\n\t\tisXMLFilter = set && set[0] && Sizzle.isXML( set[0] );\n\n\twhile ( expr && set.length ) {\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) {\n\t\t\t\tfilter = Expr.filter[ type ];\n\t\t\t\tleft = match[1];\n\n\t\t\t\tanyFound = false;\n\n\t\t\t\tmatch.splice(1,1);\n\n\t\t\t\tif ( left.substr( left.length - 1 ) === \"\\\\\" ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( curLoop === result ) {\n\t\t\t\t\tresult = [];\n\t\t\t\t}\n\n\t\t\t\tif ( Expr.preFilter[ type ] ) {\n\t\t\t\t\tmatch = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter );\n\n\t\t\t\t\tif ( !match ) {\n\t\t\t\t\t\tanyFound = found = true;\n\n\t\t\t\t\t} else if ( match === true ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( match ) {\n\t\t\t\t\tfor ( i = 0; (item = curLoop[i]) != null; i++ ) {\n\t\t\t\t\t\tif ( item ) {\n\t\t\t\t\t\t\tfound = filter( item, match, i, curLoop );\n\t\t\t\t\t\t\tpass = not ^ found;\n\n\t\t\t\t\t\t\tif ( inplace && found != null ) {\n\t\t\t\t\t\t\t\tif ( pass ) {\n\t\t\t\t\t\t\t\t\tanyFound = true;\n\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcurLoop[i] = false;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t} else if ( pass ) {\n\t\t\t\t\t\t\t\tresult.push( item );\n\t\t\t\t\t\t\t\tanyFound = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( found !== undefined ) {\n\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\tcurLoop = result;\n\t\t\t\t\t}\n\n\t\t\t\t\texpr = expr.replace( Expr.match[ type ], \"\" );\n\n\t\t\t\t\tif ( !anyFound ) {\n\t\t\t\t\t\treturn [];\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Improper expression\n\t\tif ( expr === old ) {\n\t\t\tif ( anyFound == null ) {\n\t\t\t\tSizzle.error( expr );\n\n\t\t\t} else {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\told = expr;\n\t}\n\n\treturn curLoop;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Utility function for retreiving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\nvar getText = Sizzle.getText = function( elem ) {\n    var i, node,\n\t\tnodeType = elem.nodeType,\n\t\tret = \"\";\n\n\tif ( nodeType ) {\n\t\tif ( nodeType === 1 || nodeType === 9 ) {\n\t\t\t// Use textContent || innerText for elements\n\t\t\tif ( typeof elem.textContent === 'string' ) {\n\t\t\t\treturn elem.textContent;\n\t\t\t} else if ( typeof elem.innerText === 'string' ) {\n\t\t\t\t// Replace IE's carriage returns\n\t\t\t\treturn elem.innerText.replace( rReturn, '' );\n\t\t\t} else {\n\t\t\t\t// Traverse it's children\n\t\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling) {\n\t\t\t\t\tret += getText( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\t\treturn elem.nodeValue;\n\t\t}\n\t} else {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\tfor ( i = 0; (node = elem[i]); i++ ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tif ( node.nodeType !== 8 ) {\n\t\t\t\tret += getText( node );\n\t\t\t}\n\t\t}\n\t}\n\treturn ret;\n};\n\nvar Expr = Sizzle.selectors = {\n\torder: [ \"ID\", \"NAME\", \"TAG\" ],\n\n\tmatch: {\n\t\tID: /#((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)/,\n\t\tCLASS: /\\.((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)/,\n\t\tNAME: /\\[name=['\"]*((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)['\"]*\\]/,\n\t\tATTR: /\\[\\s*((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)\\s*(?:(\\S?=)\\s*(?:(['\"])(.*?)\\3|(#?(?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)*)|)|)\\s*\\]/,\n\t\tTAG: /^((?:[\\w\\u00c0-\\uFFFF\\*\\-]|\\\\.)+)/,\n\t\tCHILD: /:(only|nth|last|first)-child(?:\\(\\s*(even|odd|(?:[+\\-]?\\d+|(?:[+\\-]?\\d*)?n\\s*(?:[+\\-]\\s*\\d+)?))\\s*\\))?/,\n\t\tPOS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\\((\\d*)\\))?(?=[^\\-]|$)/,\n\t\tPSEUDO: /:((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)(?:\\((['\"]?)((?:\\([^\\)]+\\)|[^\\(\\)]*)+)\\2\\))?/\n\t},\n\n\tleftMatch: {},\n\n\tattrMap: {\n\t\t\"class\": \"className\",\n\t\t\"for\": \"htmlFor\"\n\t},\n\n\tattrHandle: {\n\t\thref: function( elem ) {\n\t\t\treturn elem.getAttribute( \"href\" );\n\t\t},\n\t\ttype: function( elem ) {\n\t\t\treturn elem.getAttribute( \"type\" );\n\t\t}\n\t},\n\n\trelative: {\n\t\t\"+\": function(checkSet, part){\n\t\t\tvar isPartStr = typeof part === \"string\",\n\t\t\t\tisTag = isPartStr && !rNonWord.test( part ),\n\t\t\t\tisPartStrNotTag = isPartStr && !isTag;\n\n\t\t\tif ( isTag ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t}\n\n\t\t\tfor ( var i = 0, l = checkSet.length, elem; i < l; i++ ) {\n\t\t\t\tif ( (elem = checkSet[i]) ) {\n\t\t\t\t\twhile ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {}\n\n\t\t\t\t\tcheckSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ?\n\t\t\t\t\t\telem || false :\n\t\t\t\t\t\telem === part;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( isPartStrNotTag ) {\n\t\t\t\tSizzle.filter( part, checkSet, true );\n\t\t\t}\n\t\t},\n\n\t\t\">\": function( checkSet, part ) {\n\t\t\tvar elem,\n\t\t\t\tisPartStr = typeof part === \"string\",\n\t\t\t\ti = 0,\n\t\t\t\tl = checkSet.length;\n\n\t\t\tif ( isPartStr && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\telem = checkSet[i];\n\n\t\t\t\t\tif ( elem ) {\n\t\t\t\t\t\tvar parent = elem.parentNode;\n\t\t\t\t\t\tcheckSet[i] = parent.nodeName.toLowerCase() === part ? parent : false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\telem = checkSet[i];\n\n\t\t\t\t\tif ( elem ) {\n\t\t\t\t\t\tcheckSet[i] = isPartStr ?\n\t\t\t\t\t\t\telem.parentNode :\n\t\t\t\t\t\t\telem.parentNode === part;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( isPartStr ) {\n\t\t\t\t\tSizzle.filter( part, checkSet, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t\"\": function(checkSet, part, isXML){\n\t\t\tvar nodeCheck,\n\t\t\t\tdoneName = done++,\n\t\t\t\tcheckFn = dirCheck;\n\n\t\t\tif ( typeof part === \"string\" && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t\tnodeCheck = part;\n\t\t\t\tcheckFn = dirNodeCheck;\n\t\t\t}\n\n\t\t\tcheckFn( \"parentNode\", part, doneName, checkSet, nodeCheck, isXML );\n\t\t},\n\n\t\t\"~\": function( checkSet, part, isXML ) {\n\t\t\tvar nodeCheck,\n\t\t\t\tdoneName = done++,\n\t\t\t\tcheckFn = dirCheck;\n\n\t\t\tif ( typeof part === \"string\" && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t\tnodeCheck = part;\n\t\t\t\tcheckFn = dirNodeCheck;\n\t\t\t}\n\n\t\t\tcheckFn( \"previousSibling\", part, doneName, checkSet, nodeCheck, isXML );\n\t\t}\n\t},\n\n\tfind: {\n\t\tID: function( match, context, isXML ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && !isXML ) {\n\t\t\t\tvar m = context.getElementById(match[1]);\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [m] : [];\n\t\t\t}\n\t\t},\n\n\t\tNAME: function( match, context ) {\n\t\t\tif ( typeof context.getElementsByName !== \"undefined\" ) {\n\t\t\t\tvar ret = [],\n\t\t\t\t\tresults = context.getElementsByName( match[1] );\n\n\t\t\t\tfor ( var i = 0, l = results.length; i < l; i++ ) {\n\t\t\t\t\tif ( results[i].getAttribute(\"name\") === match[1] ) {\n\t\t\t\t\t\tret.push( results[i] );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn ret.length === 0 ? null : ret;\n\t\t\t}\n\t\t},\n\n\t\tTAG: function( match, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( match[1] );\n\t\t\t}\n\t\t}\n\t},\n\tpreFilter: {\n\t\tCLASS: function( match, curLoop, inplace, result, not, isXML ) {\n\t\t\tmatch = \" \" + match[1].replace( rBackslash, \"\" ) + \" \";\n\n\t\t\tif ( isXML ) {\n\t\t\t\treturn match;\n\t\t\t}\n\n\t\t\tfor ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) {\n\t\t\t\tif ( elem ) {\n\t\t\t\t\tif ( not ^ (elem.className && (\" \" + elem.className + \" \").replace(/[\\t\\n\\r]/g, \" \").indexOf(match) >= 0) ) {\n\t\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\t\tresult.push( elem );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if ( inplace ) {\n\t\t\t\t\t\tcurLoop[i] = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\tID: function( match ) {\n\t\t\treturn match[1].replace( rBackslash, \"\" );\n\t\t},\n\n\t\tTAG: function( match, curLoop ) {\n\t\t\treturn match[1].replace( rBackslash, \"\" ).toLowerCase();\n\t\t},\n\n\t\tCHILD: function( match ) {\n\t\t\tif ( match[1] === \"nth\" ) {\n\t\t\t\tif ( !match[2] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\tmatch[2] = match[2].replace(/^\\+|\\s*/g, '');\n\n\t\t\t\t// parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6'\n\t\t\t\tvar test = /(-?)(\\d*)(?:n([+\\-]?\\d*))?/.exec(\n\t\t\t\t\tmatch[2] === \"even\" && \"2n\" || match[2] === \"odd\" && \"2n+1\" ||\n\t\t\t\t\t!/\\D/.test( match[2] ) && \"0n+\" + match[2] || match[2]);\n\n\t\t\t\t// calculate the numbers (first)n+(last) including if they are negative\n\t\t\t\tmatch[2] = (test[1] + (test[2] || 1)) - 0;\n\t\t\t\tmatch[3] = test[3] - 0;\n\t\t\t}\n\t\t\telse if ( match[2] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\t// TODO: Move to normal caching system\n\t\t\tmatch[0] = done++;\n\n\t\t\treturn match;\n\t\t},\n\n\t\tATTR: function( match, curLoop, inplace, result, not, isXML ) {\n\t\t\tvar name = match[1] = match[1].replace( rBackslash, \"\" );\n\t\t\t\n\t\t\tif ( !isXML && Expr.attrMap[name] ) {\n\t\t\t\tmatch[1] = Expr.attrMap[name];\n\t\t\t}\n\n\t\t\t// Handle if an un-quoted value was used\n\t\t\tmatch[4] = ( match[4] || match[5] || \"\" ).replace( rBackslash, \"\" );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[4] = \" \" + match[4] + \" \";\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\tPSEUDO: function( match, curLoop, inplace, result, not ) {\n\t\t\tif ( match[1] === \"not\" ) {\n\t\t\t\t// If we're dealing with a complex expression, or a simple one\n\t\t\t\tif ( ( chunker.exec(match[3]) || \"\" ).length > 1 || /^\\w/.test(match[3]) ) {\n\t\t\t\t\tmatch[3] = Sizzle(match[3], null, null, curLoop);\n\n\t\t\t\t} else {\n\t\t\t\t\tvar ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not);\n\n\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\tresult.push.apply( result, ret );\n\t\t\t\t\t}\n\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t} else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\t\n\t\t\treturn match;\n\t\t},\n\n\t\tPOS: function( match ) {\n\t\t\tmatch.unshift( true );\n\n\t\t\treturn match;\n\t\t}\n\t},\n\t\n\tfilters: {\n\t\tenabled: function( elem ) {\n\t\t\treturn elem.disabled === false && elem.type !== \"hidden\";\n\t\t},\n\n\t\tdisabled: function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\tchecked: function( elem ) {\n\t\t\treturn elem.checked === true;\n\t\t},\n\t\t\n\t\tselected: function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\t\t\t\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\tparent: function( elem ) {\n\t\t\treturn !!elem.firstChild;\n\t\t},\n\n\t\tempty: function( elem ) {\n\t\t\treturn !elem.firstChild;\n\t\t},\n\n\t\thas: function( elem, i, match ) {\n\t\t\treturn !!Sizzle( match[3], elem ).length;\n\t\t},\n\n\t\theader: function( elem ) {\n\t\t\treturn (/h\\d/i).test( elem.nodeName );\n\t\t},\n\n\t\ttext: function( elem ) {\n\t\t\tvar attr = elem.getAttribute( \"type\" ), type = elem.type;\n\t\t\t// IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) \n\t\t\t// use getAttribute instead to test this case\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"text\" === type && ( attr === type || attr === null );\n\t\t},\n\n\t\tradio: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"radio\" === elem.type;\n\t\t},\n\n\t\tcheckbox: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"checkbox\" === elem.type;\n\t\t},\n\n\t\tfile: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"file\" === elem.type;\n\t\t},\n\n\t\tpassword: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"password\" === elem.type;\n\t\t},\n\n\t\tsubmit: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn (name === \"input\" || name === \"button\") && \"submit\" === elem.type;\n\t\t},\n\n\t\timage: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"image\" === elem.type;\n\t\t},\n\n\t\treset: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn (name === \"input\" || name === \"button\") && \"reset\" === elem.type;\n\t\t},\n\n\t\tbutton: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && \"button\" === elem.type || name === \"button\";\n\t\t},\n\n\t\tinput: function( elem ) {\n\t\t\treturn (/input|select|textarea|button/i).test( elem.nodeName );\n\t\t},\n\n\t\tfocus: function( elem ) {\n\t\t\treturn elem === elem.ownerDocument.activeElement;\n\t\t}\n\t},\n\tsetFilters: {\n\t\tfirst: function( elem, i ) {\n\t\t\treturn i === 0;\n\t\t},\n\n\t\tlast: function( elem, i, match, array ) {\n\t\t\treturn i === array.length - 1;\n\t\t},\n\n\t\teven: function( elem, i ) {\n\t\t\treturn i % 2 === 0;\n\t\t},\n\n\t\todd: function( elem, i ) {\n\t\t\treturn i % 2 === 1;\n\t\t},\n\n\t\tlt: function( elem, i, match ) {\n\t\t\treturn i < match[3] - 0;\n\t\t},\n\n\t\tgt: function( elem, i, match ) {\n\t\t\treturn i > match[3] - 0;\n\t\t},\n\n\t\tnth: function( elem, i, match ) {\n\t\t\treturn match[3] - 0 === i;\n\t\t},\n\n\t\teq: function( elem, i, match ) {\n\t\t\treturn match[3] - 0 === i;\n\t\t}\n\t},\n\tfilter: {\n\t\tPSEUDO: function( elem, match, i, array ) {\n\t\t\tvar name = match[1],\n\t\t\t\tfilter = Expr.filters[ name ];\n\n\t\t\tif ( filter ) {\n\t\t\t\treturn filter( elem, i, match, array );\n\n\t\t\t} else if ( name === \"contains\" ) {\n\t\t\t\treturn (elem.textContent || elem.innerText || getText([ elem ]) || \"\").indexOf(match[3]) >= 0;\n\n\t\t\t} else if ( name === \"not\" ) {\n\t\t\t\tvar not = match[3];\n\n\t\t\t\tfor ( var j = 0, l = not.length; j < l; j++ ) {\n\t\t\t\t\tif ( not[j] === elem ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn true;\n\n\t\t\t} else {\n\t\t\t\tSizzle.error( name );\n\t\t\t}\n\t\t},\n\n\t\tCHILD: function( elem, match ) {\n\t\t\tvar first, last,\n\t\t\t\tdoneName, parent, cache,\n\t\t\t\tcount, diff,\n\t\t\t\ttype = match[1],\n\t\t\t\tnode = elem;\n\n\t\t\tswitch ( type ) {\n\t\t\t\tcase \"only\":\n\t\t\t\tcase \"first\":\n\t\t\t\t\twhile ( (node = node.previousSibling) )\t {\n\t\t\t\t\t\tif ( node.nodeType === 1 ) { \n\t\t\t\t\t\t\treturn false; \n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( type === \"first\" ) { \n\t\t\t\t\t\treturn true; \n\t\t\t\t\t}\n\n\t\t\t\t\tnode = elem;\n\n\t\t\t\tcase \"last\":\n\t\t\t\t\twhile ( (node = node.nextSibling) )\t {\n\t\t\t\t\t\tif ( node.nodeType === 1 ) { \n\t\t\t\t\t\t\treturn false; \n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn true;\n\n\t\t\t\tcase \"nth\":\n\t\t\t\t\tfirst = match[2];\n\t\t\t\t\tlast = match[3];\n\n\t\t\t\t\tif ( first === 1 && last === 0 ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tdoneName = match[0];\n\t\t\t\t\tparent = elem.parentNode;\n\t\n\t\t\t\t\tif ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) {\n\t\t\t\t\t\tcount = 0;\n\t\t\t\t\t\t\n\t\t\t\t\t\tfor ( node = parent.firstChild; node; node = node.nextSibling ) {\n\t\t\t\t\t\t\tif ( node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\tnode.nodeIndex = ++count;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} \n\n\t\t\t\t\t\tparent[ expando ] = doneName;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tdiff = elem.nodeIndex - last;\n\n\t\t\t\t\tif ( first === 0 ) {\n\t\t\t\t\t\treturn diff === 0;\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tID: function( elem, match ) {\n\t\t\treturn elem.nodeType === 1 && elem.getAttribute(\"id\") === match;\n\t\t},\n\n\t\tTAG: function( elem, match ) {\n\t\t\treturn (match === \"*\" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match;\n\t\t},\n\t\t\n\t\tCLASS: function( elem, match ) {\n\t\t\treturn (\" \" + (elem.className || elem.getAttribute(\"class\")) + \" \")\n\t\t\t\t.indexOf( match ) > -1;\n\t\t},\n\n\t\tATTR: function( elem, match ) {\n\t\t\tvar name = match[1],\n\t\t\t\tresult = Sizzle.attr ?\n\t\t\t\t\tSizzle.attr( elem, name ) :\n\t\t\t\t\tExpr.attrHandle[ name ] ?\n\t\t\t\t\tExpr.attrHandle[ name ]( elem ) :\n\t\t\t\t\telem[ name ] != null ?\n\t\t\t\t\t\telem[ name ] :\n\t\t\t\t\t\telem.getAttribute( name ),\n\t\t\t\tvalue = result + \"\",\n\t\t\t\ttype = match[2],\n\t\t\t\tcheck = match[4];\n\n\t\t\treturn result == null ?\n\t\t\t\ttype === \"!=\" :\n\t\t\t\t!type && Sizzle.attr ?\n\t\t\t\tresult != null :\n\t\t\t\ttype === \"=\" ?\n\t\t\t\tvalue === check :\n\t\t\t\ttype === \"*=\" ?\n\t\t\t\tvalue.indexOf(check) >= 0 :\n\t\t\t\ttype === \"~=\" ?\n\t\t\t\t(\" \" + value + \" \").indexOf(check) >= 0 :\n\t\t\t\t!check ?\n\t\t\t\tvalue && result !== false :\n\t\t\t\ttype === \"!=\" ?\n\t\t\t\tvalue !== check :\n\t\t\t\ttype === \"^=\" ?\n\t\t\t\tvalue.indexOf(check) === 0 :\n\t\t\t\ttype === \"$=\" ?\n\t\t\t\tvalue.substr(value.length - check.length) === check :\n\t\t\t\ttype === \"|=\" ?\n\t\t\t\tvalue === check || value.substr(0, check.length + 1) === check + \"-\" :\n\t\t\t\tfalse;\n\t\t},\n\n\t\tPOS: function( elem, match, i, array ) {\n\t\t\tvar name = match[2],\n\t\t\t\tfilter = Expr.setFilters[ name ];\n\n\t\t\tif ( filter ) {\n\t\t\t\treturn filter( elem, i, match, array );\n\t\t\t}\n\t\t}\n\t}\n};\n\nvar origPOS = Expr.match.POS,\n\tfescape = function(all, num){\n\t\treturn \"\\\\\" + (num - 0 + 1);\n\t};\n\nfor ( var type in Expr.match ) {\n\tExpr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\\[]*\\])(?![^\\(]*\\))/.source) );\n\tExpr.leftMatch[ type ] = new RegExp( /(^(?:.|\\r|\\n)*?)/.source + Expr.match[ type ].source.replace(/\\\\(\\d+)/g, fescape) );\n}\n\nvar makeArray = function( array, results ) {\n\tarray = Array.prototype.slice.call( array, 0 );\n\n\tif ( results ) {\n\t\tresults.push.apply( results, array );\n\t\treturn results;\n\t}\n\t\n\treturn array;\n};\n\n// Perform a simple check to determine if the browser is capable of\n// converting a NodeList to an array using builtin methods.\n// Also verifies that the returned array holds DOM nodes\n// (which is not the case in the Blackberry browser)\ntry {\n\tArray.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType;\n\n// Provide a fallback method if it does not work\n} catch( e ) {\n\tmakeArray = function( array, results ) {\n\t\tvar i = 0,\n\t\t\tret = results || [];\n\n\t\tif ( toString.call(array) === \"[object Array]\" ) {\n\t\t\tArray.prototype.push.apply( ret, array );\n\n\t\t} else {\n\t\t\tif ( typeof array.length === \"number\" ) {\n\t\t\t\tfor ( var l = array.length; i < l; i++ ) {\n\t\t\t\t\tret.push( array[i] );\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\tfor ( ; array[i]; i++ ) {\n\t\t\t\t\tret.push( array[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n}\n\nvar sortOrder, siblingCheck;\n\nif ( document.documentElement.compareDocumentPosition ) {\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tif ( !a.compareDocumentPosition || !b.compareDocumentPosition ) {\n\t\t\treturn a.compareDocumentPosition ? -1 : 1;\n\t\t}\n\n\t\treturn a.compareDocumentPosition(b) & 4 ? -1 : 1;\n\t};\n\n} else {\n\tsortOrder = function( a, b ) {\n\t\t// The nodes are identical, we can exit early\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\n\t\t// Fallback to using sourceIndex (in IE) if it's available on both nodes\n\t\t} else if ( a.sourceIndex && b.sourceIndex ) {\n\t\t\treturn a.sourceIndex - b.sourceIndex;\n\t\t}\n\n\t\tvar al, bl,\n\t\t\tap = [],\n\t\t\tbp = [],\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tcur = aup;\n\n\t\t// If the nodes are siblings (or identical) we can do a quick check\n\t\tif ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\n\t\t// If no parents were found then the nodes are disconnected\n\t\t} else if ( !aup ) {\n\t\t\treturn -1;\n\n\t\t} else if ( !bup ) {\n\t\t\treturn 1;\n\t\t}\n\n\t\t// Otherwise they're somewhere else in the tree so we need\n\t\t// to build up a full list of the parentNodes for comparison\n\t\twhile ( cur ) {\n\t\t\tap.unshift( cur );\n\t\t\tcur = cur.parentNode;\n\t\t}\n\n\t\tcur = bup;\n\n\t\twhile ( cur ) {\n\t\t\tbp.unshift( cur );\n\t\t\tcur = cur.parentNode;\n\t\t}\n\n\t\tal = ap.length;\n\t\tbl = bp.length;\n\n\t\t// Start walking down the tree looking for a discrepancy\n\t\tfor ( var i = 0; i < al && i < bl; i++ ) {\n\t\t\tif ( ap[i] !== bp[i] ) {\n\t\t\t\treturn siblingCheck( ap[i], bp[i] );\n\t\t\t}\n\t\t}\n\n\t\t// We ended someplace up the tree so do a sibling check\n\t\treturn i === al ?\n\t\t\tsiblingCheck( a, bp[i], -1 ) :\n\t\t\tsiblingCheck( ap[i], b, 1 );\n\t};\n\n\tsiblingCheck = function( a, b, ret ) {\n\t\tif ( a === b ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tvar cur = a.nextSibling;\n\n\t\twhile ( cur ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\tcur = cur.nextSibling;\n\t\t}\n\n\t\treturn 1;\n\t};\n}\n\n// Check to see if the browser returns elements by name when\n// querying by getElementById (and provide a workaround)\n(function(){\n\t// We're going to inject a fake input element with a specified name\n\tvar form = document.createElement(\"div\"),\n\t\tid = \"script\" + (new Date()).getTime(),\n\t\troot = document.documentElement;\n\n\tform.innerHTML = \"<a name='\" + id + \"'/>\";\n\n\t// Inject it into the root element, check its status, and remove it quickly\n\troot.insertBefore( form, root.firstChild );\n\n\t// The workaround has to do additional checks after a getElementById\n\t// Which slows things down for other browsers (hence the branching)\n\tif ( document.getElementById( id ) ) {\n\t\tExpr.find.ID = function( match, context, isXML ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && !isXML ) {\n\t\t\t\tvar m = context.getElementById(match[1]);\n\n\t\t\t\treturn m ?\n\t\t\t\t\tm.id === match[1] || typeof m.getAttributeNode !== \"undefined\" && m.getAttributeNode(\"id\").nodeValue === match[1] ?\n\t\t\t\t\t\t[m] :\n\t\t\t\t\t\tundefined :\n\t\t\t\t\t[];\n\t\t\t}\n\t\t};\n\n\t\tExpr.filter.ID = function( elem, match ) {\n\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\n\t\t\treturn elem.nodeType === 1 && node && node.nodeValue === match;\n\t\t};\n\t}\n\n\troot.removeChild( form );\n\n\t// release memory in IE\n\troot = form = null;\n})();\n\n(function(){\n\t// Check to see if the browser returns only elements\n\t// when doing getElementsByTagName(\"*\")\n\n\t// Create a fake element\n\tvar div = document.createElement(\"div\");\n\tdiv.appendChild( document.createComment(\"\") );\n\n\t// Make sure no comments are found\n\tif ( div.getElementsByTagName(\"*\").length > 0 ) {\n\t\tExpr.find.TAG = function( match, context ) {\n\t\t\tvar results = context.getElementsByTagName( match[1] );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( match[1] === \"*\" ) {\n\t\t\t\tvar tmp = [];\n\n\t\t\t\tfor ( var i = 0; results[i]; i++ ) {\n\t\t\t\t\tif ( results[i].nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( results[i] );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tresults = tmp;\n\t\t\t}\n\n\t\t\treturn results;\n\t\t};\n\t}\n\n\t// Check to see if an attribute returns normalized href attributes\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\n\tif ( div.firstChild && typeof div.firstChild.getAttribute !== \"undefined\" &&\n\t\t\tdiv.firstChild.getAttribute(\"href\") !== \"#\" ) {\n\n\t\tExpr.attrHandle.href = function( elem ) {\n\t\t\treturn elem.getAttribute( \"href\", 2 );\n\t\t};\n\t}\n\n\t// release memory in IE\n\tdiv = null;\n})();\n\nif ( document.querySelectorAll ) {\n\t(function(){\n\t\tvar oldSizzle = Sizzle,\n\t\t\tdiv = document.createElement(\"div\"),\n\t\t\tid = \"__sizzle__\";\n\n\t\tdiv.innerHTML = \"<p class='TEST'></p>\";\n\n\t\t// Safari can't handle uppercase or unicode characters when\n\t\t// in quirks mode.\n\t\tif ( div.querySelectorAll && div.querySelectorAll(\".TEST\").length === 0 ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tSizzle = function( query, context, extra, seed ) {\n\t\t\tcontext = context || document;\n\n\t\t\t// Only use querySelectorAll on non-XML documents\n\t\t\t// (ID selectors don't work in non-HTML documents)\n\t\t\tif ( !seed && !Sizzle.isXML(context) ) {\n\t\t\t\t// See if we find a selector to speed up\n\t\t\t\tvar match = /^(\\w+$)|^\\.([\\w\\-]+$)|^#([\\w\\-]+$)/.exec( query );\n\t\t\t\t\n\t\t\t\tif ( match && (context.nodeType === 1 || context.nodeType === 9) ) {\n\t\t\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t\t\tif ( match[1] ) {\n\t\t\t\t\t\treturn makeArray( context.getElementsByTagName( query ), extra );\n\t\t\t\t\t\n\t\t\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t\t\t} else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) {\n\t\t\t\t\t\treturn makeArray( context.getElementsByClassName( match[2] ), extra );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( context.nodeType === 9 ) {\n\t\t\t\t\t// Speed-up: Sizzle(\"body\")\n\t\t\t\t\t// The body element only exists once, optimize finding it\n\t\t\t\t\tif ( query === \"body\" && context.body ) {\n\t\t\t\t\t\treturn makeArray( [ context.body ], extra );\n\t\t\t\t\t\t\n\t\t\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\t\t\t} else if ( match && match[3] ) {\n\t\t\t\t\t\tvar elem = context.getElementById( match[3] );\n\n\t\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === match[3] ) {\n\t\t\t\t\t\t\t\treturn makeArray( [ elem ], extra );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn makeArray( [], extra );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\ttry {\n\t\t\t\t\t\treturn makeArray( context.querySelectorAll(query), extra );\n\t\t\t\t\t} catch(qsaError) {}\n\n\t\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t\t// IE 8 doesn't work on object elements\n\t\t\t\t} else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\t\tvar oldContext = context,\n\t\t\t\t\t\told = context.getAttribute( \"id\" ),\n\t\t\t\t\t\tnid = old || id,\n\t\t\t\t\t\thasParent = context.parentNode,\n\t\t\t\t\t\trelativeHierarchySelector = /^\\s*[+~]/.test( query );\n\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnid = nid.replace( /'/g, \"\\\\$&\" );\n\t\t\t\t\t}\n\t\t\t\t\tif ( relativeHierarchySelector && hasParent ) {\n\t\t\t\t\t\tcontext = context.parentNode;\n\t\t\t\t\t}\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tif ( !relativeHierarchySelector || hasParent ) {\n\t\t\t\t\t\t\treturn makeArray( context.querySelectorAll( \"[id='\" + nid + \"'] \" + query ), extra );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} catch(pseudoError) {\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\t\toldContext.removeAttribute( \"id\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\n\t\t\treturn oldSizzle(query, context, extra, seed);\n\t\t};\n\n\t\tfor ( var prop in oldSizzle ) {\n\t\t\tSizzle[ prop ] = oldSizzle[ prop ];\n\t\t}\n\n\t\t// release memory in IE\n\t\tdiv = null;\n\t})();\n}\n\n(function(){\n\tvar html = document.documentElement,\n\t\tmatches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector;\n\n\tif ( matches ) {\n\t\t// Check to see if it's possible to do matchesSelector\n\t\t// on a disconnected node (IE 9 fails this)\n\t\tvar disconnectedMatch = !matches.call( document.createElement( \"div\" ), \"div\" ),\n\t\t\tpseudoWorks = false;\n\n\t\ttry {\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( document.documentElement, \"[test!='']:sizzle\" );\n\t\n\t\t} catch( pseudoError ) {\n\t\t\tpseudoWorks = true;\n\t\t}\n\n\t\tSizzle.matchesSelector = function( node, expr ) {\n\t\t\t// Make sure that attribute selectors are quoted\n\t\t\texpr = expr.replace(/\\=\\s*([^'\"\\]]*)\\s*\\]/g, \"='$1']\");\n\n\t\t\tif ( !Sizzle.isXML( node ) ) {\n\t\t\t\ttry { \n\t\t\t\t\tif ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) {\n\t\t\t\t\t\tvar ret = matches.call( node, expr );\n\n\t\t\t\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\t\t\t\tif ( ret || !disconnectedMatch ||\n\t\t\t\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t\t\t\t// fragment in IE 9, so check for that\n\t\t\t\t\t\t\t\tnode.document && node.document.nodeType !== 11 ) {\n\t\t\t\t\t\t\treturn ret;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\treturn Sizzle(expr, null, null, [node]).length > 0;\n\t\t};\n\t}\n})();\n\n(function(){\n\tvar div = document.createElement(\"div\");\n\n\tdiv.innerHTML = \"<div class='test e'></div><div class='test'></div>\";\n\n\t// Opera can't find a second classname (in 9.6)\n\t// Also, make sure that getElementsByClassName actually exists\n\tif ( !div.getElementsByClassName || div.getElementsByClassName(\"e\").length === 0 ) {\n\t\treturn;\n\t}\n\n\t// Safari caches class attributes, doesn't catch changes (in 3.2)\n\tdiv.lastChild.className = \"e\";\n\n\tif ( div.getElementsByClassName(\"e\").length === 1 ) {\n\t\treturn;\n\t}\n\t\n\tExpr.order.splice(1, 0, \"CLASS\");\n\tExpr.find.CLASS = function( match, context, isXML ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && !isXML ) {\n\t\t\treturn context.getElementsByClassName(match[1]);\n\t\t}\n\t};\n\n\t// release memory in IE\n\tdiv = null;\n})();\n\nfunction dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {\n\tfor ( var i = 0, l = checkSet.length; i < l; i++ ) {\n\t\tvar elem = checkSet[i];\n\n\t\tif ( elem ) {\n\t\t\tvar match = false;\n\n\t\t\telem = elem[dir];\n\n\t\t\twhile ( elem ) {\n\t\t\t\tif ( elem[ expando ] === doneName ) {\n\t\t\t\t\tmatch = checkSet[elem.sizset];\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeType === 1 && !isXML ){\n\t\t\t\t\telem[ expando ] = doneName;\n\t\t\t\t\telem.sizset = i;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeName.toLowerCase() === cur ) {\n\t\t\t\t\tmatch = elem;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\telem = elem[dir];\n\t\t\t}\n\n\t\t\tcheckSet[i] = match;\n\t\t}\n\t}\n}\n\nfunction dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {\n\tfor ( var i = 0, l = checkSet.length; i < l; i++ ) {\n\t\tvar elem = checkSet[i];\n\n\t\tif ( elem ) {\n\t\t\tvar match = false;\n\t\t\t\n\t\t\telem = elem[dir];\n\n\t\t\twhile ( elem ) {\n\t\t\t\tif ( elem[ expando ] === doneName ) {\n\t\t\t\t\tmatch = checkSet[elem.sizset];\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\tif ( !isXML ) {\n\t\t\t\t\t\telem[ expando ] = doneName;\n\t\t\t\t\t\telem.sizset = i;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( typeof cur !== \"string\" ) {\n\t\t\t\t\t\tif ( elem === cur ) {\n\t\t\t\t\t\t\tmatch = true;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if ( Sizzle.filter( cur, [elem] ).length > 0 ) {\n\t\t\t\t\t\tmatch = elem;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\telem = elem[dir];\n\t\t\t}\n\n\t\t\tcheckSet[i] = match;\n\t\t}\n\t}\n}\n\nif ( document.documentElement.contains ) {\n\tSizzle.contains = function( a, b ) {\n\t\treturn a !== b && (a.contains ? a.contains(b) : true);\n\t};\n\n} else if ( document.documentElement.compareDocumentPosition ) {\n\tSizzle.contains = function( a, b ) {\n\t\treturn !!(a.compareDocumentPosition(b) & 16);\n\t};\n\n} else {\n\tSizzle.contains = function() {\n\t\treturn false;\n\t};\n}\n\nSizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833) \n\tvar documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;\n\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\nvar posProcess = function( selector, context, seed ) {\n\tvar match,\n\t\ttmpSet = [],\n\t\tlater = \"\",\n\t\troot = context.nodeType ? [context] : context;\n\n\t// Position selectors must be done after the filter\n\t// And so must :not(positional) so we move all PSEUDOs to the end\n\twhile ( (match = Expr.match.PSEUDO.exec( selector )) ) {\n\t\tlater += match[0];\n\t\tselector = selector.replace( Expr.match.PSEUDO, \"\" );\n\t}\n\n\tselector = Expr.relative[selector] ? selector + \"*\" : selector;\n\n\tfor ( var i = 0, l = root.length; i < l; i++ ) {\n\t\tSizzle( selector, root[i], tmpSet, seed );\n\t}\n\n\treturn Sizzle.filter( later, tmpSet );\n};\n\n// EXPOSE\n// Override sizzle attribute retrieval\nSizzle.attr = jQuery.attr;\nSizzle.selectors.attrMap = {};\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.filters;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n})();\n\n\nvar runtil = /Until$/,\n\trparentsprev = /^(?:parents|prevUntil|prevAll)/,\n\t// Note: This RegExp should be improved, or likely pulled from Sizzle\n\trmultiselector = /,/,\n\tisSimple = /^.[^:#\\[\\.,]*$/,\n\tslice = Array.prototype.slice,\n\tPOS = jQuery.expr.match.POS,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar self = this,\n\t\t\ti, l;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0, l = self.length; i < l; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tvar ret = this.pushStack( \"\", \"find\", selector ),\n\t\t\tlength, n, r;\n\n\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\tlength = ret.length;\n\t\t\tjQuery.find( selector, this[i], ret );\n\n\t\t\tif ( i > 0 ) {\n\t\t\t\t// Make sure that the results are unique\n\t\t\t\tfor ( n = length; n < ret.length; n++ ) {\n\t\t\t\t\tfor ( r = 0; r < length; r++ ) {\n\t\t\t\t\t\tif ( ret[r] === ret[n] ) {\n\t\t\t\t\t\t\tret.splice(n--, 1);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\thas: function( target ) {\n\t\tvar targets = jQuery( target );\n\t\treturn this.filter(function() {\n\t\t\tfor ( var i = 0, l = targets.length; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector, false), \"not\", selector);\n\t},\n\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector, true), \"filter\", selector );\n\t},\n\n\tis: function( selector ) {\n\t\treturn !!selector && ( \n\t\t\ttypeof selector === \"string\" ?\n\t\t\t\t// If this is a positional selector, check membership in the returned set\n\t\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\t\tPOS.test( selector ) ? \n\t\t\t\t\tjQuery( selector, this.context ).index( this[0] ) >= 0 :\n\t\t\t\t\tjQuery.filter( selector, this ).length > 0 :\n\t\t\t\tthis.filter( selector ).length > 0 );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar ret = [], i, l, cur = this[0];\n\t\t\n\t\t// Array (deprecated as of jQuery 1.7)\n\t\tif ( jQuery.isArray( selectors ) ) {\n\t\t\tvar level = 1;\n\n\t\t\twhile ( cur && cur.ownerDocument && cur !== context ) {\n\t\t\t\tfor ( i = 0; i < selectors.length; i++ ) {\n\n\t\t\t\t\tif ( jQuery( cur ).is( selectors[ i ] ) ) {\n\t\t\t\t\t\tret.push({ selector: selectors[ i ], elem: cur, level: level });\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcur = cur.parentNode;\n\t\t\t\tlevel++;\n\t\t\t}\n\n\t\t\treturn ret;\n\t\t}\n\n\t\t// String\n\t\tvar pos = POS.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\tcur = this[i];\n\n\t\t\twhile ( cur ) {\n\t\t\t\tif ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) {\n\t\t\t\t\tret.push( cur );\n\t\t\t\t\tbreak;\n\n\t\t\t\t} else {\n\t\t\t\t\tcur = cur.parentNode;\n\t\t\t\t\tif ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tret = ret.length > 1 ? jQuery.unique( ret ) : ret;\n\n\t\treturn this.pushStack( ret, \"closest\", selectors );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\tvar set = typeof selector === \"string\" ?\n\t\t\t\tjQuery( selector, context ) :\n\t\t\t\tjQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),\n\t\t\tall = jQuery.merge( this.get(), set );\n\n\t\treturn this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?\n\t\t\tall :\n\t\t\tjQuery.unique( all ) );\n\t},\n\n\tandSelf: function() {\n\t\treturn this.add( this.prevObject );\n\t}\n});\n\n// A painfully simple check to see if an element is disconnected\n// from a document (should be improved, where feasible).\nfunction isDisconnected( node ) {\n\treturn !node || !node.parentNode || node.parentNode.nodeType === 11;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn jQuery.nth( elem, 2, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn jQuery.nth( elem, 2, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( elem.parentNode.firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.makeArray( elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( !runtil.test( name ) ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret;\n\n\t\tif ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) {\n\t\t\tret = ret.reverse();\n\t\t}\n\n\t\treturn this.pushStack( ret, name, slice.call( arguments ).join(\",\") );\n\t};\n});\n\njQuery.extend({\n\tfilter: function( expr, elems, not ) {\n\t\tif ( not ) {\n\t\t\texpr = \":not(\" + expr + \")\";\n\t\t}\n\n\t\treturn elems.length === 1 ?\n\t\t\tjQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] :\n\t\t\tjQuery.find.matches(expr, elems);\n\t},\n\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tnth: function( cur, result, dir, elem ) {\n\t\tresult = result || 1;\n\t\tvar num = 0;\n\n\t\tfor ( ; cur; cur = cur[dir] ) {\n\t\t\tif ( cur.nodeType === 1 && ++num === result ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\treturn cur;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, keep ) {\n\n\t// Can't pass null or undefined to indexOf in Firefox 4\n\t// Set to 0 to skip string check\n\tqualifier = qualifier || 0;\n\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep(elements, function( elem, i ) {\n\t\t\tvar retVal = !!qualifier.call( elem, i, elem );\n\t\t\treturn retVal === keep;\n\t\t});\n\n\t} else if ( qualifier.nodeType ) {\n\t\treturn jQuery.grep(elements, function( elem, i ) {\n\t\t\treturn ( elem === qualifier ) === keep;\n\t\t});\n\n\t} else if ( typeof qualifier === \"string\" ) {\n\t\tvar filtered = jQuery.grep(elements, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t});\n\n\t\tif ( isSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter(qualifier, filtered, !keep);\n\t\t} else {\n\t\t\tqualifier = jQuery.filter( qualifier, filtered );\n\t\t}\n\t}\n\n\treturn jQuery.grep(elements, function( elem, i ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;\n\t});\n}\n\n\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:\\d+|null)\"/g,\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/ig,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style)/i,\n\trnocache = /<(?:script|object|embed|option|style)/i,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")\", \"i\"),\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /\\/(java|ecma)script/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|\\-\\-)/,\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\t_default: [ 0, \"\", \"\" ]\n\t},\n\tsafeFragment = createSafeFragment( document );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// IE can't serialize <link> and <script> tags normally\nif ( !jQuery.support.htmlSerialize ) {\n\twrapMap._default = [ 1, \"div<div>\", \"</div>\" ];\n}\n\njQuery.fn.extend({\n\ttext: function( text ) {\n\t\tif ( jQuery.isFunction(text) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tvar self = jQuery( this );\n\n\t\t\t\tself.text( text.call(this, i, self.text()) );\n\t\t\t});\n\t\t}\n\n\t\tif ( typeof text !== \"object\" && text !== undefined ) {\n\t\t\treturn this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );\n\t\t}\n\n\t\treturn jQuery.text( this );\n\t},\n\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip(arguments, true, function( elem ) {\n\t\t\tif ( this.nodeType === 1 ) {\n\t\t\t\tthis.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip(arguments, true, function( elem ) {\n\t\t\tif ( this.nodeType === 1 ) {\n\t\t\t\tthis.insertBefore( elem, this.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\treturn this.domManip(arguments, false, function( elem ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t});\n\t\t} else if ( arguments.length ) {\n\t\t\tvar set = jQuery.clean( arguments );\n\t\t\tset.push.apply( set, this.toArray() );\n\t\t\treturn this.pushStack( set, \"before\", arguments );\n\t\t}\n\t},\n\n\tafter: function() {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\treturn this.domManip(arguments, false, function( elem ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t});\n\t\t} else if ( arguments.length ) {\n\t\t\tvar set = this.pushStack( this, \"after\", arguments );\n\t\t\tset.push.apply( set, jQuery.clean(arguments) );\n\t\t\treturn set;\n\t\t}\n\t},\n\n\t// keepData is for internal use only--do not document\n\tremove: function( selector, keepData ) {\n\t\tfor ( var i = 0, elem; (elem = this[i]) != null; i++ ) {\n\t\t\tif ( !selector || jQuery.filter( selector, [ elem ] ).length ) {\n\t\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\t\tjQuery.cleanData( elem.getElementsByTagName(\"*\") );\n\t\t\t\t\tjQuery.cleanData( [ elem ] );\n\t\t\t\t}\n\n\t\t\t\tif ( elem.parentNode ) {\n\t\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tfor ( var i = 0, elem; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( elem.getElementsByTagName(\"*\") );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function () {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\tif ( value === undefined ) {\n\t\t\treturn this[0] && this[0].nodeType === 1 ?\n\t\t\t\tthis[0].innerHTML.replace(rinlinejQuery, \"\") :\n\t\t\t\tnull;\n\n\t\t// See if we can take a shortcut and just use innerHTML\n\t\t} else if ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t(jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&\n\t\t\t!wrapMap[ (rtagName.exec( value ) || [\"\", \"\"])[1].toLowerCase() ] ) {\n\n\t\t\tvalue = value.replace(rxhtmlTag, \"<$1></$2>\");\n\n\t\t\ttry {\n\t\t\t\tfor ( var i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\tif ( this[i].nodeType === 1 ) {\n\t\t\t\t\t\tjQuery.cleanData( this[i].getElementsByTagName(\"*\") );\n\t\t\t\t\t\tthis[i].innerHTML = value;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t} catch(e) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\n\t\t} else if ( jQuery.isFunction( value ) ) {\n\t\t\tthis.each(function(i){\n\t\t\t\tvar self = jQuery( this );\n\n\t\t\t\tself.html( value.call(this, i, self.html()) );\n\t\t\t});\n\n\t\t} else {\n\t\t\tthis.empty().append( value );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\treplaceWith: function( value ) {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\t// Make sure that the elements are removed from the DOM before they are inserted\n\t\t\t// this can help fix replacing a parent with child elements\n\t\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\t\treturn this.each(function(i) {\n\t\t\t\t\tvar self = jQuery(this), old = self.html();\n\t\t\t\t\tself.replaceWith( value.call( this, i, old ) );\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif ( typeof value !== \"string\" ) {\n\t\t\t\tvalue = jQuery( value ).detach();\n\t\t\t}\n\n\t\t\treturn this.each(function() {\n\t\t\t\tvar next = this.nextSibling,\n\t\t\t\t\tparent = this.parentNode;\n\n\t\t\t\tjQuery( this ).remove();\n\n\t\t\t\tif ( next ) {\n\t\t\t\t\tjQuery(next).before( value );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery(parent).append( value );\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\treturn this.length ?\n\t\t\t\tthis.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), \"replaceWith\", value ) :\n\t\t\t\tthis;\n\t\t}\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, table, callback ) {\n\t\tvar results, first, fragment, parent,\n\t\t\tvalue = args[0],\n\t\t\tscripts = [];\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === \"string\" && rchecked.test( value ) ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery(this).domManip( args, table, callback, true );\n\t\t\t});\n\t\t}\n\n\t\tif ( jQuery.isFunction(value) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tvar self = jQuery(this);\n\t\t\t\targs[0] = value.call(this, i, table ? self.html() : undefined);\n\t\t\t\tself.domManip( args, table, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\tparent = value && value.parentNode;\n\n\t\t\t// If we're in a fragment, just use that instead of building a new one\n\t\t\tif ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) {\n\t\t\t\tresults = { fragment: parent };\n\n\t\t\t} else {\n\t\t\t\tresults = jQuery.buildFragment( args, this, scripts );\n\t\t\t}\n\n\t\t\tfragment = results.fragment;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfirst = fragment = fragment.firstChild;\n\t\t\t} else {\n\t\t\t\tfirst = fragment.firstChild;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\ttable = table && jQuery.nodeName( first, \"tr\" );\n\n\t\t\t\tfor ( var i = 0, l = this.length, lastIndex = l - 1; i < l; i++ ) {\n\t\t\t\t\tcallback.call(\n\t\t\t\t\t\ttable ?\n\t\t\t\t\t\t\troot(this[i], first) :\n\t\t\t\t\t\t\tthis[i],\n\t\t\t\t\t\t// Make sure that we do not leak memory by inadvertently discarding\n\t\t\t\t\t\t// the original fragment (which might have attached data) instead of\n\t\t\t\t\t\t// using it; in addition, use the original fragment object for the last\n\t\t\t\t\t\t// item instead of first because it can end up being emptied incorrectly\n\t\t\t\t\t\t// in certain situations (Bug #8070).\n\t\t\t\t\t\t// Fragments from the fragment cache must always be cloned and never used\n\t\t\t\t\t\t// in place.\n\t\t\t\t\t\tresults.cacheable || ( l > 1 && i < lastIndex ) ?\n\t\t\t\t\t\t\tjQuery.clone( fragment, true, true ) :\n\t\t\t\t\t\t\tfragment\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( scripts.length ) {\n\t\t\t\tjQuery.each( scripts, evalScript );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\nfunction root( elem, cur ) {\n\treturn jQuery.nodeName(elem, \"table\") ?\n\t\t(elem.getElementsByTagName(\"tbody\")[0] ||\n\t\telem.appendChild(elem.ownerDocument.createElement(\"tbody\"))) :\n\t\telem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type + ( events[ type ][ i ].namespace ? \".\" : \"\" ) + events[ type ][ i ].namespace, events[ type ][ i ], events[ type ][ i ].data );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction cloneFixAttributes( src, dest ) {\n\tvar nodeName;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// clearAttributes removes the attributes, which we don't want,\n\t// but also removes the attachEvent events, which we *do* want\n\tif ( dest.clearAttributes ) {\n\t\tdest.clearAttributes();\n\t}\n\n\t// mergeAttributes, in contrast, only merges back on the\n\t// original attributes, not the events\n\tif ( dest.mergeAttributes ) {\n\t\tdest.mergeAttributes( src );\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 fail to clone children inside object elements that use\n\t// the proprietary classid attribute value (rather than the type\n\t// attribute) to identify the type of content to display\n\tif ( nodeName === \"object\" ) {\n\t\tdest.outerHTML = src.outerHTML;\n\n\t} else if ( nodeName === \"input\" && (src.type === \"checkbox\" || src.type === \"radio\") ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\t\tif ( src.checked ) {\n\t\t\tdest.defaultChecked = dest.checked = src.checked;\n\t\t}\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n\n\t// Event data gets referenced instead of copied if the expando\n\t// gets copied too\n\tdest.removeAttribute( jQuery.expando );\n}\n\njQuery.buildFragment = function( args, nodes, scripts ) {\n\tvar fragment, cacheable, cacheresults, doc,\n\tfirst = args[ 0 ];\n\n\t// nodes may contain either an explicit document object,\n\t// a jQuery collection or context object.\n\t// If nodes[0] contains a valid object to assign to doc\n\tif ( nodes && nodes[0] ) {\n\t\tdoc = nodes[0].ownerDocument || nodes[0];\n\t}\n\n\t// Ensure that an attr object doesn't incorrectly stand in as a document object\n\t// Chrome and Firefox seem to allow this to occur and will throw exception\n\t// Fixes #8950\n\tif ( !doc.createDocumentFragment ) {\n\t\tdoc = document;\n\t}\n\n\t// Only cache \"small\" (1/2 KB) HTML strings that are associated with the main document\n\t// Cloning options loses the selected state, so don't cache them\n\t// IE 6 doesn't like it when you put <object> or <embed> elements in a fragment\n\t// Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache\n\t// Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501\n\tif ( args.length === 1 && typeof first === \"string\" && first.length < 512 && doc === document &&\n\t\tfirst.charAt(0) === \"<\" && !rnocache.test( first ) &&\n\t\t(jQuery.support.checkClone || !rchecked.test( first )) &&\n\t\t(jQuery.support.html5Clone || !rnoshimcache.test( first )) ) {\n\n\t\tcacheable = true;\n\n\t\tcacheresults = jQuery.fragments[ first ];\n\t\tif ( cacheresults && cacheresults !== 1 ) {\n\t\t\tfragment = cacheresults;\n\t\t}\n\t}\n\n\tif ( !fragment ) {\n\t\tfragment = doc.createDocumentFragment();\n\t\tjQuery.clean( args, doc, fragment, scripts );\n\t}\n\n\tif ( cacheable ) {\n\t\tjQuery.fragments[ first ] = cacheresults ? fragment : 1;\n\t}\n\n\treturn { fragment: fragment, cacheable: cacheable };\n};\n\njQuery.fragments = {};\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar ret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tparent = this.length === 1 && this[0].parentNode;\n\n\t\tif ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) {\n\t\t\tinsert[ original ]( this[0] );\n\t\t\treturn this;\n\n\t\t} else {\n\t\t\tfor ( var i = 0, l = insert.length; i < l; i++ ) {\n\t\t\t\tvar elems = ( i > 0 ? this.clone(true) : this ).get();\n\t\t\t\tjQuery( insert[i] )[ original ]( elems );\n\t\t\t\tret = ret.concat( elems );\n\t\t\t}\n\n\t\t\treturn this.pushStack( ret, name, insert.selector );\n\t\t}\n\t};\n});\n\nfunction getAll( elem ) {\n\tif ( typeof elem.getElementsByTagName !== \"undefined\" ) {\n\t\treturn elem.getElementsByTagName( \"*\" );\n\n\t} else if ( typeof elem.querySelectorAll !== \"undefined\" ) {\n\t\treturn elem.querySelectorAll( \"*\" );\n\n\t} else {\n\t\treturn [];\n\t}\n}\n\n// Used in clean, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( elem.type === \"checkbox\" || elem.type === \"radio\" ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n// Finds all inputs and passes them to fixDefaultChecked\nfunction findInputs( elem ) {\n\tvar nodeName = ( elem.nodeName || \"\" ).toLowerCase();\n\tif ( nodeName === \"input\" ) {\n\t\tfixDefaultChecked( elem );\n\t// Skip scripts, get other children\n\t} else if ( nodeName !== \"script\" && typeof elem.getElementsByTagName !== \"undefined\" ) {\n\t\tjQuery.grep( elem.getElementsByTagName(\"input\"), fixDefaultChecked );\n\t}\n}\n\n// Derived From: http://www.iecss.com/shimprove/javascript/shimprove.1-0-1.js\nfunction shimCloneNode( elem ) {\n\tvar div = document.createElement( \"div\" );\n\tsafeFragment.appendChild( div );\n\n\tdiv.innerHTML = elem.outerHTML;\n\treturn div.firstChild;\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar srcElements,\n\t\t\tdestElements,\n\t\t\ti,\n\t\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t\tclone = jQuery.support.html5Clone || !rnoshimcache.test( \"<\" + elem.nodeName ) ?\n\t\t\t\telem.cloneNode( true ) :\n\t\t\t\tshimCloneNode( elem );\n\n\t\tif ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\t\t\t// IE copies events bound via attachEvent when using cloneNode.\n\t\t\t// Calling detachEvent on the clone will also remove the events\n\t\t\t// from the original. In order to get around this, we use some\n\t\t\t// proprietary methods to clear the events. Thanks to MooTools\n\t\t\t// guys for this hotness.\n\n\t\t\tcloneFixAttributes( elem, clone );\n\n\t\t\t// Using Sizzle here is crazy slow, so we use getElementsByTagName instead\n\t\t\tsrcElements = getAll( elem );\n\t\t\tdestElements = getAll( clone );\n\n\t\t\t// Weird iteration because IE will replace the length property\n\t\t\t// with an element if you are cloning the body and one of the\n\t\t\t// elements on the page has a name or id of \"length\"\n\t\t\tfor ( i = 0; srcElements[i]; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tcloneFixAttributes( srcElements[i], destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tcloneCopyEvent( elem, clone );\n\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = getAll( elem );\n\t\t\t\tdestElements = getAll( clone );\n\n\t\t\t\tfor ( i = 0; srcElements[i]; ++i ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[i], destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tsrcElements = destElements = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tclean: function( elems, context, fragment, scripts ) {\n\t\tvar checkScriptType;\n\n\t\tcontext = context || document;\n\n\t\t// !context.createElement fails in IE with an error but returns typeof 'object'\n\t\tif ( typeof context.createElement === \"undefined\" ) {\n\t\t\tcontext = context.ownerDocument || context[0] && context[0].ownerDocument || document;\n\t\t}\n\n\t\tvar ret = [], j;\n\n\t\tfor ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( typeof elem === \"number\" ) {\n\t\t\t\telem += \"\";\n\t\t\t}\n\n\t\t\tif ( !elem ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Convert html string into DOM nodes\n\t\t\tif ( typeof elem === \"string\" ) {\n\t\t\t\tif ( !rhtml.test( elem ) ) {\n\t\t\t\t\telem = context.createTextNode( elem );\n\t\t\t\t} else {\n\t\t\t\t\t// Fix \"XHTML\"-style tags in all browsers\n\t\t\t\t\telem = elem.replace(rxhtmlTag, \"<$1></$2>\");\n\n\t\t\t\t\t// Trim whitespace, otherwise indexOf won't work as expected\n\t\t\t\t\tvar tag = ( rtagName.exec( elem ) || [\"\", \"\"] )[1].toLowerCase(),\n\t\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default,\n\t\t\t\t\t\tdepth = wrap[0],\n\t\t\t\t\t\tdiv = context.createElement(\"div\");\n\n\t\t\t\t\t// Append wrapper element to unknown element safe doc fragment\n\t\t\t\t\tif ( context === document ) {\n\t\t\t\t\t\t// Use the fragment we've already created for this document\n\t\t\t\t\t\tsafeFragment.appendChild( div );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Use a fragment created with the owner document\n\t\t\t\t\t\tcreateSafeFragment( context ).appendChild( div );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Go to html and back, then peel off extra wrappers\n\t\t\t\t\tdiv.innerHTML = wrap[1] + elem + wrap[2];\n\n\t\t\t\t\t// Move to the right depth\n\t\t\t\t\twhile ( depth-- ) {\n\t\t\t\t\t\tdiv = div.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !jQuery.support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\tvar hasBody = rtbody.test(elem),\n\t\t\t\t\t\t\ttbody = tag === \"table\" && !hasBody ?\n\t\t\t\t\t\t\t\tdiv.firstChild && div.firstChild.childNodes :\n\n\t\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\t\twrap[1] === \"<table>\" && !hasBody ?\n\t\t\t\t\t\t\t\t\tdiv.childNodes :\n\t\t\t\t\t\t\t\t\t[];\n\n\t\t\t\t\t\tfor ( j = tbody.length - 1; j >= 0 ; --j ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( tbody[ j ], \"tbody\" ) && !tbody[ j ].childNodes.length ) {\n\t\t\t\t\t\t\t\ttbody[ j ].parentNode.removeChild( tbody[ j ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// IE completely kills leading whitespace when innerHTML is used\n\t\t\t\t\tif ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tdiv.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\telem = div.childNodes;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Resets defaultChecked for any radios and checkboxes\n\t\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\t\tvar len;\n\t\t\tif ( !jQuery.support.appendChecked ) {\n\t\t\t\tif ( elem[0] && typeof (len = elem.length) === \"number\" ) {\n\t\t\t\t\tfor ( j = 0; j < len; j++ ) {\n\t\t\t\t\t\tfindInputs( elem[j] );\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tfindInputs( elem );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( elem.nodeType ) {\n\t\t\t\tret.push( elem );\n\t\t\t} else {\n\t\t\t\tret = jQuery.merge( ret, elem );\n\t\t\t}\n\t\t}\n\n\t\tif ( fragment ) {\n\t\t\tcheckScriptType = function( elem ) {\n\t\t\t\treturn !elem.type || rscriptType.test( elem.type );\n\t\t\t};\n\t\t\tfor ( i = 0; ret[i]; i++ ) {\n\t\t\t\tif ( scripts && jQuery.nodeName( ret[i], \"script\" ) && (!ret[i].type || ret[i].type.toLowerCase() === \"text/javascript\") ) {\n\t\t\t\t\tscripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );\n\n\t\t\t\t} else {\n\t\t\t\t\tif ( ret[i].nodeType === 1 ) {\n\t\t\t\t\t\tvar jsTags = jQuery.grep( ret[i].getElementsByTagName( \"script\" ), checkScriptType );\n\n\t\t\t\t\t\tret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );\n\t\t\t\t\t}\n\t\t\t\t\tfragment.appendChild( ret[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, id,\n\t\t\tcache = jQuery.cache,\n\t\t\tspecial = jQuery.event.special,\n\t\t\tdeleteExpando = jQuery.support.deleteExpando;\n\n\t\tfor ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tid = elem[ jQuery.expando ];\n\n\t\t\tif ( id ) {\n\t\t\t\tdata = cache[ id ];\n\n\t\t\t\tif ( data && data.events ) {\n\t\t\t\t\tfor ( var type in data.events ) {\n\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Null the DOM reference to avoid IE6/7/8 leak (#7054)\n\t\t\t\t\tif ( data.handle ) {\n\t\t\t\t\t\tdata.handle.elem = null;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\tdelete elem[ jQuery.expando ];\n\n\t\t\t\t} else if ( elem.removeAttribute ) {\n\t\t\t\t\telem.removeAttribute( jQuery.expando );\n\t\t\t\t}\n\n\t\t\t\tdelete cache[ id ];\n\t\t\t}\n\t\t}\n\t}\n});\n\nfunction evalScript( i, elem ) {\n\tif ( elem.src ) {\n\t\tjQuery.ajax({\n\t\t\turl: elem.src,\n\t\t\tasync: false,\n\t\t\tdataType: \"script\"\n\t\t});\n\t} else {\n\t\tjQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || \"\" ).replace( rcleanScript, \"/*$0*/\" ) );\n\t}\n\n\tif ( elem.parentNode ) {\n\t\telem.parentNode.removeChild( elem );\n\t}\n}\n\n\n\n\nvar ralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity=([^)]*)/,\n\t// fixed for IE9, see #8346\n\trupper = /([A-Z]|^ms)/g,\n\trnumpx = /^-?\\d+(?:px)?$/i,\n\trnum = /^-?\\d/,\n\trrelNum = /^([\\-+])=([\\-+.\\de]+)/,\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssWidth = [ \"Left\", \"Right\" ],\n\tcssHeight = [ \"Top\", \"Bottom\" ],\n\tcurCSS,\n\n\tgetComputedStyle,\n\tcurrentStyle;\n\njQuery.fn.css = function( name, value ) {\n\t// Setting 'undefined' is a no-op\n\tif ( arguments.length === 2 && value === undefined ) {\n\t\treturn this;\n\t}\n\n\treturn jQuery.access( this, name, value, true, function( elem, name, value ) {\n\t\treturn value !== undefined ?\n\t\t\tjQuery.style( elem, name, value ) :\n\t\t\tjQuery.css( elem, name );\n\t});\n};\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\", \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\n\t\t\t\t} else {\n\t\t\t\t\treturn elem.style.opacity;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Exclude the following css properties to add px\n\tcssNumber: {\n\t\t\"fillOpacity\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": jQuery.support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, origName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style, hooks = jQuery.cssHooks[ origName ];\n\n\t\tname = jQuery.cssProps[ origName ] || origName;\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( +( ret[1] + 1) * +ret[2] ) + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that NaN and null values aren't set. See: #7116\n\t\t\tif ( value == null || type === \"number\" && isNaN( value ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value )) !== undefined ) {\n\t\t\t\t// Wrapped to prevent IE from throwing errors when 'invalid' values are provided\n\t\t\t\t// Fixes bug #5509\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra ) {\n\t\tvar ret, hooks;\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.camelCase( name );\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tname = jQuery.cssProps[ name ] || name;\n\n\t\t// cssFloat needs a special treatment\n\t\tif ( name === \"cssFloat\" ) {\n\t\t\tname = \"float\";\n\t\t}\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, true, extra )) !== undefined ) {\n\t\t\treturn ret;\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\t} else if ( curCSS ) {\n\t\t\treturn curCSS( elem, name );\n\t\t}\n\t},\n\n\t// A method for quickly swapping in/out CSS properties to get correct calculations\n\tswap: function( elem, options, callback ) {\n\t\tvar old = {};\n\n\t\t// Remember the old values, and insert the new ones\n\t\tfor ( var name in options ) {\n\t\t\told[ name ] = elem.style[ name ];\n\t\t\telem.style[ name ] = options[ name ];\n\t\t}\n\n\t\tcallback.call( elem );\n\n\t\t// Revert the old values\n\t\tfor ( name in options ) {\n\t\t\telem.style[ name ] = old[ name ];\n\t\t}\n\t}\n});\n\n// DEPRECATED, Use jQuery.css() instead\njQuery.curCSS = jQuery.css;\n\njQuery.each([\"height\", \"width\"], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tvar val;\n\n\t\t\tif ( computed ) {\n\t\t\t\tif ( elem.offsetWidth !== 0 ) {\n\t\t\t\t\treturn getWH( elem, name, extra );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\tval = getWH( elem, name, extra );\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\treturn val;\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tif ( rnumpx.test( value ) ) {\n\t\t\t\t// ignore negative width and height values #1599\n\t\t\t\tvalue = parseFloat( value );\n\n\t\t\t\tif ( value >= 0 ) {\n\t\t\t\t\treturn value + \"px\";\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n});\n\nif ( !jQuery.support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( parseFloat( RegExp.$1 ) / 100 ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\tif ( value >= 1 && jQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there there is no filter style applied in a css rule, we are done\n\t\t\t\tif ( currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery(function() {\n\t// This hook cannot be added until DOM ready because the support test\n\t// for it is not run until after DOM ready\n\tif ( !jQuery.support.reliableMarginRight ) {\n\t\tjQuery.cssHooks.marginRight = {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\t\tvar ret;\n\t\t\t\tjQuery.swap( elem, { \"display\": \"inline-block\" }, function() {\n\t\t\t\t\tif ( computed ) {\n\t\t\t\t\t\tret = curCSS( elem, \"margin-right\", \"marginRight\" );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tret = elem.style.marginRight;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t};\n\t}\n});\n\nif ( document.defaultView && document.defaultView.getComputedStyle ) {\n\tgetComputedStyle = function( elem, name ) {\n\t\tvar ret, defaultView, computedStyle;\n\n\t\tname = name.replace( rupper, \"-$1\" ).toLowerCase();\n\n\t\tif ( (defaultView = elem.ownerDocument.defaultView) &&\n\t\t\t\t(computedStyle = defaultView.getComputedStyle( elem, null )) ) {\n\t\t\tret = computedStyle.getPropertyValue( name );\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument.documentElement, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n}\n\nif ( document.documentElement.currentStyle ) {\n\tcurrentStyle = function( elem, name ) {\n\t\tvar left, rsLeft, uncomputed,\n\t\t\tret = elem.currentStyle && elem.currentStyle[ name ],\n\t\t\tstyle = elem.style;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret === null && style && (uncomputed = style[ name ]) ) {\n\t\t\tret = uncomputed;\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\tif ( !rnumpx.test( ret ) && rnum.test( ret ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trsLeft = elem.runtimeStyle && elem.runtimeStyle.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\telem.runtimeStyle.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ( ret || 0 );\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\telem.runtimeStyle.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\treturn ret === \"\" ? \"auto\" : ret;\n\t};\n}\n\ncurCSS = getComputedStyle || currentStyle;\n\nfunction getWH( elem, name, extra ) {\n\n\t// Start with offset property\n\tvar val = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\twhich = name === \"width\" ? cssWidth : cssHeight,\n\t\ti = 0,\n\t\tlen = which.length;\n\n\tif ( val > 0 ) {\n\t\tif ( extra !== \"border\" ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tif ( !extra ) {\n\t\t\t\t\tval -= parseFloat( jQuery.css( elem, \"padding\" + which[ i ] ) ) || 0;\n\t\t\t\t}\n\t\t\t\tif ( extra === \"margin\" ) {\n\t\t\t\t\tval += parseFloat( jQuery.css( elem, extra + which[ i ] ) ) || 0;\n\t\t\t\t} else {\n\t\t\t\t\tval -= parseFloat( jQuery.css( elem, \"border\" + which[ i ] + \"Width\" ) ) || 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn val + \"px\";\n\t}\n\n\t// Fall back to computed then uncomputed css if necessary\n\tval = curCSS( elem, name, name );\n\tif ( val < 0 || val == null ) {\n\t\tval = elem.style[ name ] || 0;\n\t}\n\t// Normalize \"\", auto, and prepare for extra\n\tval = parseFloat( val ) || 0;\n\n\t// Add padding, border, margin\n\tif ( extra ) {\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tval += parseFloat( jQuery.css( elem, \"padding\" + which[ i ] ) ) || 0;\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += parseFloat( jQuery.css( elem, \"border\" + which[ i ] + \"Width\" ) ) || 0;\n\t\t\t}\n\t\t\tif ( extra === \"margin\" ) {\n\t\t\t\tval += parseFloat( jQuery.css( elem, extra + which[ i ] ) ) || 0;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val + \"px\";\n}\n\nif ( jQuery.expr && jQuery.expr.filters ) {\n\tjQuery.expr.filters.hidden = function( elem ) {\n\t\tvar width = elem.offsetWidth,\n\t\t\theight = elem.offsetHeight;\n\n\t\treturn ( width === 0 && height === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n\t};\n\n\tjQuery.expr.filters.visible = function( elem ) {\n\t\treturn !jQuery.expr.filters.hidden( elem );\n\t};\n}\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trhash = /#.*$/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\trinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app\\-storage|.+\\-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trquery = /\\?/,\n\trscript = /<script\\b[^<]*(?:(?!<\\/script>)<[^<]*)*<\\/script>/gi,\n\trselectTextarea = /^(?:select|textarea)/i,\n\trspacesAjax = /\\s+/,\n\trts = /([?&])_=[^&]*/,\n\trurl = /^([\\w\\+\\.\\-]+:)(?:\\/\\/([^\\/?#:]*)(?::(\\d+))?)?/,\n\n\t// Keep a copy of the old load method\n\t_load = jQuery.fn.load,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Document location\n\tajaxLocation,\n\n\t// Document location segments\n\tajaxLocParts,\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = [\"*/\"] + [\"*\"];\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\tvar dataTypes = dataTypeExpression.toLowerCase().split( rspacesAjax ),\n\t\t\t\ti = 0,\n\t\t\t\tlength = dataTypes.length,\n\t\t\t\tdataType,\n\t\t\t\tlist,\n\t\t\t\tplaceBefore;\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tdataType = dataTypes[ i ];\n\t\t\t\t// We control if we're asked to add before\n\t\t\t\t// any existing element\n\t\t\t\tplaceBefore = /^\\+/.test( dataType );\n\t\t\t\tif ( placeBefore ) {\n\t\t\t\t\tdataType = dataType.substr( 1 ) || \"*\";\n\t\t\t\t}\n\t\t\t\tlist = structure[ dataType ] = structure[ dataType ] || [];\n\t\t\t\t// then we add to the structure accordingly\n\t\t\t\tlist[ placeBefore ? \"unshift\" : \"push\" ]( func );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR,\n\t\tdataType /* internal */, inspected /* internal */ ) {\n\n\tdataType = dataType || options.dataTypes[ 0 ];\n\tinspected = inspected || {};\n\n\tinspected[ dataType ] = true;\n\n\tvar list = structure[ dataType ],\n\t\ti = 0,\n\t\tlength = list ? list.length : 0,\n\t\texecuteOnly = ( structure === prefilters ),\n\t\tselection;\n\n\tfor ( ; i < length && ( executeOnly || !selection ); i++ ) {\n\t\tselection = list[ i ]( options, originalOptions, jqXHR );\n\t\t// If we got redirected to another dataType\n\t\t// we try there if executing only and not done already\n\t\tif ( typeof selection === \"string\" ) {\n\t\t\tif ( !executeOnly || inspected[ selection ] ) {\n\t\t\t\tselection = undefined;\n\t\t\t} else {\n\t\t\t\toptions.dataTypes.unshift( selection );\n\t\t\t\tselection = inspectPrefiltersOrTransports(\n\t\t\t\t\t\tstructure, options, originalOptions, jqXHR, selection, inspected );\n\t\t\t}\n\t\t}\n\t}\n\t// If we're only executing or nothing was selected\n\t// we try the catchall dataType if not done already\n\tif ( ( executeOnly || !selection ) && !inspected[ \"*\" ] ) {\n\t\tselection = inspectPrefiltersOrTransports(\n\t\t\t\tstructure, options, originalOptions, jqXHR, \"*\", inspected );\n\t}\n\t// unnecessary when only executing (prefilters)\n\t// but it'll be ignored by the caller in that case\n\treturn selection;\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n}\n\njQuery.fn.extend({\n\tload: function( url, params, callback ) {\n\t\tif ( typeof url !== \"string\" && _load ) {\n\t\t\treturn _load.apply( this, arguments );\n\n\t\t// Don't do a request if no elements are being requested\n\t\t} else if ( !this.length ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tvar off = url.indexOf( \" \" );\n\t\tif ( off >= 0 ) {\n\t\t\tvar selector = url.slice( off, url.length );\n\t\t\turl = url.slice( 0, off );\n\t\t}\n\n\t\t// Default to a GET request\n\t\tvar type = \"GET\";\n\n\t\t// If the second parameter was provided\n\t\tif ( params ) {\n\t\t\t// If it's a function\n\t\t\tif ( jQuery.isFunction( params ) ) {\n\t\t\t\t// We assume that it's the callback\n\t\t\t\tcallback = params;\n\t\t\t\tparams = undefined;\n\n\t\t\t// Otherwise, build a param string\n\t\t\t} else if ( typeof params === \"object\" ) {\n\t\t\t\tparams = jQuery.param( params, jQuery.ajaxSettings.traditional );\n\t\t\t\ttype = \"POST\";\n\t\t\t}\n\t\t}\n\n\t\tvar self = this;\n\n\t\t// Request the remote document\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params,\n\t\t\t// Complete callback (responseText is used internally)\n\t\t\tcomplete: function( jqXHR, status, responseText ) {\n\t\t\t\t// Store the response as specified by the jqXHR object\n\t\t\t\tresponseText = jqXHR.responseText;\n\t\t\t\t// If successful, inject the HTML into all the matched elements\n\t\t\t\tif ( jqXHR.isResolved() ) {\n\t\t\t\t\t// #4825: Get the actual response in case\n\t\t\t\t\t// a dataFilter is present in ajaxSettings\n\t\t\t\t\tjqXHR.done(function( r ) {\n\t\t\t\t\t\tresponseText = r;\n\t\t\t\t\t});\n\t\t\t\t\t// See if a selector was specified\n\t\t\t\t\tself.html( selector ?\n\t\t\t\t\t\t// Create a dummy div to hold the results\n\t\t\t\t\t\tjQuery(\"<div>\")\n\t\t\t\t\t\t\t// inject the contents of the document in, removing the scripts\n\t\t\t\t\t\t\t// to avoid any 'Permission Denied' errors in IE\n\t\t\t\t\t\t\t.append(responseText.replace(rscript, \"\"))\n\n\t\t\t\t\t\t\t// Locate the specified elements\n\t\t\t\t\t\t\t.find(selector) :\n\n\t\t\t\t\t\t// If not, just inject the full result\n\t\t\t\t\t\tresponseText );\n\t\t\t\t}\n\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tself.each( callback, [ responseText, status, jqXHR ] );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\treturn this;\n\t},\n\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\n\tserializeArray: function() {\n\t\treturn this.map(function(){\n\t\t\treturn this.elements ? jQuery.makeArray( this.elements ) : this;\n\t\t})\n\t\t.filter(function(){\n\t\t\treturn this.name && !this.disabled &&\n\t\t\t\t( this.checked || rselectTextarea.test( this.nodeName ) ||\n\t\t\t\t\trinput.test( this.type ) );\n\t\t})\n\t\t.map(function( i, elem ){\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val, i ){\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( \"ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend\".split( \" \" ), function( i, o ){\n\tjQuery.fn[ o ] = function( f ){\n\t\treturn this.on( o, f );\n\t};\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\ttype: method,\n\t\t\turl: url,\n\t\t\tdata: data,\n\t\t\tsuccess: callback,\n\t\t\tdataType: type\n\t\t});\n\t};\n});\n\njQuery.extend({\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\tif ( settings ) {\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( target, jQuery.ajaxSettings );\n\t\t} else {\n\t\t\t// Extending ajaxSettings\n\t\t\tsettings = target;\n\t\t\ttarget = jQuery.ajaxSettings;\n\t\t}\n\t\tajaxExtend( target, settings );\n\t\treturn target;\n\t},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\ttype: \"GET\",\n\t\tcontentType: \"application/x-www-form-urlencoded\",\n\t\tprocessData: true,\n\t\tasync: true,\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\thtml: \"text/html\",\n\t\t\ttext: \"text/plain\",\n\t\t\tjson: \"application/json, text/javascript\",\n\t\t\t\"*\": allTypes\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\"\n\t\t},\n\n\t\t// List of data converters\n\t\t// 1) key format is \"source_type destination_type\" (a single space in-between)\n\t\t// 2) the catchall symbol \"*\" can be used for source_type\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": window.String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\tcontext: true,\n\t\t\turl: true\n\t\t}\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events\n\t\t\t// It's the callbackContext if one was provided in the options\n\t\t\t// and if it's a DOM node or a jQuery collection\n\t\t\tglobalEventContext = callbackContext !== s &&\n\t\t\t\t( callbackContext.nodeType || callbackContext instanceof jQuery ) ?\n\t\t\t\t\t\tjQuery( callbackContext ) : jQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// ifModified key\n\t\t\tifModifiedKey,\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\t\t\t// transport\n\t\t\ttransport,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\t\t\t// Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match === undefined ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tstatusText = statusText || \"abort\";\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( statusText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, statusText );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\turl : s.url\n\t\t\t};\n\n\t\t// Callback for when everything is done\n\t\t// It is defined here because jslint complains if it is declared\n\t\t// at the end of the function (which would be more logical and readable)\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\tvar isSuccess,\n\t\t\t\tsuccess,\n\t\t\t\terror,\n\t\t\t\tstatusText = nativeStatusText,\n\t\t\t\tresponse = responses ? ajaxHandleResponses( s, jqXHR, responses ) : undefined,\n\t\t\t\tlastModified,\n\t\t\t\tetag;\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( status >= 200 && status < 300 || status === 304 ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\n\t\t\t\t\tif ( ( lastModified = jqXHR.getResponseHeader( \"Last-Modified\" ) ) ) {\n\t\t\t\t\t\tjQuery.lastModified[ ifModifiedKey ] = lastModified;\n\t\t\t\t\t}\n\t\t\t\t\tif ( ( etag = jqXHR.getResponseHeader( \"Etag\" ) ) ) {\n\t\t\t\t\t\tjQuery.etag[ ifModifiedKey ] = etag;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If not modified\n\t\t\t\tif ( status === 304 ) {\n\n\t\t\t\t\tstatusText = \"notmodified\";\n\t\t\t\t\tisSuccess = true;\n\n\t\t\t\t// If we have data\n\t\t\t\t} else {\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tsuccess = ajaxConvert( s, response );\n\t\t\t\t\t\tstatusText = \"success\";\n\t\t\t\t\t\tisSuccess = true;\n\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t// We have a parsererror\n\t\t\t\t\t\tstatusText = \"parsererror\";\n\t\t\t\t\t\terror = e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( !statusText || status ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = \"\" + ( nativeStatusText || statusText );\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajax\" + ( isSuccess ? \"Success\" : \"Error\" ),\n\t\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\t\tjqXHR.complete = completeDeferred.add;\n\n\t\t// Status-dependent callbacks\n\t\tjqXHR.statusCode = function( map ) {\n\t\t\tif ( map ) {\n\t\t\t\tvar tmp;\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tfor ( tmp in map ) {\n\t\t\t\t\t\tstatusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\ttmp = map[ jqXHR.status ];\n\t\t\t\t\tjqXHR.then( tmp, tmp );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn this;\n\t\t};\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().split( rspacesAjax );\n\n\t\t// Determine if a cross-domain request is in order\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] != ajaxLocParts[ 1 ] || parts[ 2 ] != ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? 80 : 443 ) ) !=\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? 80 : 443 ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefiler, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\tfireGlobals = s.global;\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.data;\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Get ifModifiedKey before adding the anti-cache parameter\n\t\t\tifModifiedKey = s.url;\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\n\t\t\t\tvar ts = jQuery.now(),\n\t\t\t\t\t// try replacing _= if it is there\n\t\t\t\t\tret = s.url.replace( rts, \"$1_=\" + ts );\n\n\t\t\t\t// if nothing was replaced, add timestamp to the end\n\t\t\t\ts.url = ret + ( ( ret === s.url ) ? ( rquery.test( s.url ) ? \"&\" : \"?\" ) + \"_=\" + ts : \"\" );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tifModifiedKey = ifModifiedKey || s.url;\n\t\t\tif ( jQuery.lastModified[ ifModifiedKey ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ ifModifiedKey ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ ifModifiedKey ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ ifModifiedKey ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t\t// Abort if not done already\n\t\t\t\tjqXHR.abort();\n\t\t\t\treturn false;\n\n\t\t}\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout( function(){\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch (e) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\t// Serialize an array of form elements or a set of\n\t// key/values into a query string\n\tparam: function( a, traditional ) {\n\t\tvar s = [],\n\t\t\tadd = function( key, value ) {\n\t\t\t\t// If value is a function, invoke it and return its value\n\t\t\t\tvalue = jQuery.isFunction( value ) ? value() : value;\n\t\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t\t};\n\n\t\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\t\tif ( traditional === undefined ) {\n\t\t\ttraditional = jQuery.ajaxSettings.traditional;\n\t\t}\n\n\t\t// If an array was passed in, assume that it is an array of form elements.\n\t\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t\t// Serialize the form elements\n\t\t\tjQuery.each( a, function() {\n\t\t\t\tadd( this.name, this.value );\n\t\t\t});\n\n\t\t} else {\n\t\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t\t// did it), otherwise encode params recursively.\n\t\t\tfor ( var prefix in a ) {\n\t\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t\t}\n\t\t}\n\n\t\t// Return the resulting serialization\n\t\treturn s.join( \"&\" ).replace( r20, \"+\" );\n\t}\n});\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// If array item is non-scalar (array or object), encode its\n\t\t\t\t// numeric index to resolve deserialization ambiguity issues.\n\t\t\t\t// Note that rack (as of 1.0.0) can't currently deserialize\n\t\t\t\t// nested arrays properly, and attempting to do so may cause\n\t\t\t\t// a server error. Possible fixes are to modify rack's\n\t\t\t\t// deserialization algorithm or to provide an option or flag\n\t\t\t\t// to force array serialization to be shallow.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" || jQuery.isArray(v) ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && obj != null && typeof obj === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( var name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// This is still on the jQuery object... for now\n// Want to move this to jQuery.ajax some day\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {}\n\n});\n\n/* Handles responses to an ajax request:\n * - sets all responseXXX fields accordingly\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar contents = s.contents,\n\t\tdataTypes = s.dataTypes,\n\t\tresponseFields = s.responseFields,\n\t\tct,\n\t\ttype,\n\t\tfinalDataType,\n\t\tfirstDataType;\n\n\t// Fill responseXXX fields\n\tfor ( type in responseFields ) {\n\t\tif ( type in responses ) {\n\t\t\tjqXHR[ responseFields[type] ] = responses[ type ];\n\t\t}\n\t}\n\n\t// Remove auto dataType and get content-type in the process\n\twhile( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"content-type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n// Chain conversions given the request and the original response\nfunction ajaxConvert( s, response ) {\n\n\t// Apply the dataFilter if provided\n\tif ( s.dataFilter ) {\n\t\tresponse = s.dataFilter( response, s.dataType );\n\t}\n\n\tvar dataTypes = s.dataTypes,\n\t\tconverters = {},\n\t\ti,\n\t\tkey,\n\t\tlength = dataTypes.length,\n\t\ttmp,\n\t\t// Current and previous dataTypes\n\t\tcurrent = dataTypes[ 0 ],\n\t\tprev,\n\t\t// Conversion expression\n\t\tconversion,\n\t\t// Conversion function\n\t\tconv,\n\t\t// Conversion functions (transitive conversion)\n\t\tconv1,\n\t\tconv2;\n\n\t// For each dataType in the chain\n\tfor ( i = 1; i < length; i++ ) {\n\n\t\t// Create converters map\n\t\t// with lowercased keys\n\t\tif ( i === 1 ) {\n\t\t\tfor ( key in s.converters ) {\n\t\t\t\tif ( typeof key === \"string\" ) {\n\t\t\t\t\tconverters[ key.toLowerCase() ] = s.converters[ key ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Get the dataTypes\n\t\tprev = current;\n\t\tcurrent = dataTypes[ i ];\n\n\t\t// If current is auto dataType, update it to prev\n\t\tif ( current === \"*\" ) {\n\t\t\tcurrent = prev;\n\t\t// If no auto and dataTypes are actually different\n\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t// Get the converter\n\t\t\tconversion = prev + \" \" + current;\n\t\t\tconv = converters[ conversion ] || converters[ \"* \" + current ];\n\n\t\t\t// If there is no direct converter, search transitively\n\t\t\tif ( !conv ) {\n\t\t\t\tconv2 = undefined;\n\t\t\t\tfor ( conv1 in converters ) {\n\t\t\t\t\ttmp = conv1.split( \" \" );\n\t\t\t\t\tif ( tmp[ 0 ] === prev || tmp[ 0 ] === \"*\" ) {\n\t\t\t\t\t\tconv2 = converters[ tmp[1] + \" \" + current ];\n\t\t\t\t\t\tif ( conv2 ) {\n\t\t\t\t\t\t\tconv1 = converters[ conv1 ];\n\t\t\t\t\t\t\tif ( conv1 === true ) {\n\t\t\t\t\t\t\t\tconv = conv2;\n\t\t\t\t\t\t\t} else if ( conv2 === true ) {\n\t\t\t\t\t\t\t\tconv = conv1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t// If we found no converter, dispatch an error\n\t\t\tif ( !( conv || conv2 ) ) {\n\t\t\t\tjQuery.error( \"No conversion from \" + conversion.replace(\" \",\" to \") );\n\t\t\t}\n\t\t\t// If found converter is not an equivalence\n\t\t\tif ( conv !== true ) {\n\t\t\t\t// Convert with 1 or 2 converters accordingly\n\t\t\t\tresponse = conv ? conv( response ) : conv2( conv1(response) );\n\t\t\t}\n\t\t}\n\t}\n\treturn response;\n}\n\n\n\n\nvar jsc = jQuery.now(),\n\tjsre = /(\\=)\\?(&|$)|\\?\\?/i;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\treturn jQuery.expando + \"_\" + ( jsc++ );\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar inspectData = s.contentType === \"application/x-www-form-urlencoded\" &&\n\t\t( typeof s.data === \"string\" );\n\n\tif ( s.dataTypes[ 0 ] === \"jsonp\" ||\n\t\ts.jsonp !== false && ( jsre.test( s.url ) ||\n\t\t\t\tinspectData && jsre.test( s.data ) ) ) {\n\n\t\tvar responseContainer,\n\t\t\tjsonpCallback = s.jsonpCallback =\n\t\t\t\tjQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback,\n\t\t\tprevious = window[ jsonpCallback ],\n\t\t\turl = s.url,\n\t\t\tdata = s.data,\n\t\t\treplace = \"$1\" + jsonpCallback + \"$2\";\n\n\t\tif ( s.jsonp !== false ) {\n\t\t\turl = url.replace( jsre, replace );\n\t\t\tif ( s.url === url ) {\n\t\t\t\tif ( inspectData ) {\n\t\t\t\t\tdata = data.replace( jsre, replace );\n\t\t\t\t}\n\t\t\t\tif ( s.data === data ) {\n\t\t\t\t\t// Add callback manually\n\t\t\t\t\turl += (/\\?/.test( url ) ? \"&\" : \"?\") + s.jsonp + \"=\" + jsonpCallback;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ts.url = url;\n\t\ts.data = data;\n\n\t\t// Install callback\n\t\twindow[ jsonpCallback ] = function( response ) {\n\t\t\tresponseContainer = [ response ];\n\t\t};\n\n\t\t// Clean-up function\n\t\tjqXHR.always(function() {\n\t\t\t// Set callback back to previous value\n\t\t\twindow[ jsonpCallback ] = previous;\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( previous ) ) {\n\t\t\t\twindow[ jsonpCallback ]( responseContainer[ 0 ] );\n\t\t\t}\n\t\t});\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( jsonpCallback + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /javascript|ecmascript/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || document.getElementsByTagName( \"head\" )[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement( \"script\" );\n\n\t\t\t\tscript.async = \"async\";\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( head && script.parentNode ) {\n\t\t\t\t\t\t\thead.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = undefined;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t\t// Use insertBefore instead of appendChild  to circumvent an IE6 bug.\n\t\t\t\t// This arises when a base node is used (#2709 and #4378).\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( 0, 1 );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar // #5280: Internet Explorer will keep connections alive if we don't abort on unload\n\txhrOnUnloadAbort = window.ActiveXObject ? function() {\n\t\t// Abort all pending requests\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( 0, 1 );\n\t\t}\n\t} : false,\n\txhrId = 0,\n\txhrCallbacks;\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject ?\n\t/* Microsoft failed to properly\n\t * implement the XMLHttpRequest in IE7 (can't request local files),\n\t * so we use the ActiveXObject when it is available\n\t * Additionally XMLHttpRequest can be disabled in IE7/IE8 so\n\t * we need a fallback.\n\t */\n\tfunction() {\n\t\treturn !this.isLocal && createStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\n// Determine support properties\n(function( xhr ) {\n\tjQuery.extend( jQuery.support, {\n\t\tajax: !!xhr,\n\t\tcors: !!xhr && ( \"withCredentials\" in xhr )\n\t});\n})( jQuery.ajaxSettings.xhr() );\n\n// Create transport if the browser can provide an xhr\nif ( jQuery.support.ajax ) {\n\n\tjQuery.ajaxTransport(function( s ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !s.crossDomain || jQuery.support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\n\t\t\t\t\t// Get a new xhr\n\t\t\t\t\tvar xhr = s.xhr(),\n\t\t\t\t\t\thandle,\n\t\t\t\t\t\ti;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\t// Passing null username, generates a login popup on Opera (#2865)\n\t\t\t\t\tif ( s.username ) {\n\t\t\t\t\t\txhr.open( s.type, s.url, s.async, s.username, s.password );\n\t\t\t\t\t} else {\n\t\t\t\t\t\txhr.open( s.type, s.url, s.async );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( s.xhrFields ) {\n\t\t\t\t\t\tfor ( i in s.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = s.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( s.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( s.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !s.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Need an extra try/catch for cross domain requests in Firefox 3\n\t\t\t\t\ttry {\n\t\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch( _ ) {}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( s.hasContent && s.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\n\t\t\t\t\t\tvar status,\n\t\t\t\t\t\t\tstatusText,\n\t\t\t\t\t\t\tresponseHeaders,\n\t\t\t\t\t\t\tresponses,\n\t\t\t\t\t\t\txml;\n\n\t\t\t\t\t\t// Firefox throws exceptions when accessing properties\n\t\t\t\t\t\t// of an xhr when a network error occured\n\t\t\t\t\t\t// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)\n\t\t\t\t\t\ttry {\n\n\t\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\n\t\t\t\t\t\t\t\t// Only called once\n\t\t\t\t\t\t\t\tcallback = undefined;\n\n\t\t\t\t\t\t\t\t// Do not keep as active anymore\n\t\t\t\t\t\t\t\tif ( handle ) {\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\t\t\t\t\t\t\t\t\tif ( xhrOnUnloadAbort ) {\n\t\t\t\t\t\t\t\t\t\tdelete xhrCallbacks[ handle ];\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// If it's an abort\n\t\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\t\t// Abort it manually if needed\n\t\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tstatus = xhr.status;\n\t\t\t\t\t\t\t\t\tresponseHeaders = xhr.getAllResponseHeaders();\n\t\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\t\txml = xhr.responseXML;\n\n\t\t\t\t\t\t\t\t\t// Construct response list\n\t\t\t\t\t\t\t\t\tif ( xml && xml.documentElement /* #4958 */ ) {\n\t\t\t\t\t\t\t\t\t\tresponses.xml = xml;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\n\t\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\t\tif ( !status && s.isLocal && !s.crossDomain ) {\n\t\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} catch( firefoxAccessException ) {\n\t\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\t\tcomplete( -1, firefoxAccessException );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, responseHeaders );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// if we're in sync mode or it's in cache\n\t\t\t\t\t// and has been retrieved directly (IE6 & IE7)\n\t\t\t\t\t// we need to manually fire the callback\n\t\t\t\t\tif ( !s.async || xhr.readyState === 4 ) {\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else {\n\t\t\t\t\t\thandle = ++xhrId;\n\t\t\t\t\t\tif ( xhrOnUnloadAbort ) {\n\t\t\t\t\t\t\t// Create the active xhrs callbacks list if needed\n\t\t\t\t\t\t\t// and attach the unload handler\n\t\t\t\t\t\t\tif ( !xhrCallbacks ) {\n\t\t\t\t\t\t\t\txhrCallbacks = {};\n\t\t\t\t\t\t\t\tjQuery( window ).unload( xhrOnUnloadAbort );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// Add to list of active xhrs callbacks\n\t\t\t\t\t\t\txhrCallbacks[ handle ] = callback;\n\t\t\t\t\t\t}\n\t\t\t\t\t\txhr.onreadystatechange = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback(0,1);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n\n\n\nvar elemdisplay = {},\n\tiframe, iframeDoc,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = /^([+\\-]=)?([\\d+.\\-]+)([a-z%]*)$/i,\n\ttimerId,\n\tfxAttrs = [\n\t\t// height animations\n\t\t[ \"height\", \"marginTop\", \"marginBottom\", \"paddingTop\", \"paddingBottom\" ],\n\t\t// width animations\n\t\t[ \"width\", \"marginLeft\", \"marginRight\", \"paddingLeft\", \"paddingRight\" ],\n\t\t// opacity animations\n\t\t[ \"opacity\" ]\n\t],\n\tfxNow;\n\njQuery.fn.extend({\n\tshow: function( speed, easing, callback ) {\n\t\tvar elem, display;\n\n\t\tif ( speed || speed === 0 ) {\n\t\t\treturn this.animate( genFx(\"show\", 3), speed, easing, callback );\n\n\t\t} else {\n\t\t\tfor ( var i = 0, j = this.length; i < j; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = elem.style.display;\n\n\t\t\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t\t\t// being hidden by cascaded rules or not\n\t\t\t\t\tif ( !jQuery._data(elem, \"olddisplay\") && display === \"none\" ) {\n\t\t\t\t\t\tdisplay = elem.style.display = \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set elements which have been overridden with display: none\n\t\t\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t\t\t// for such an element\n\t\t\t\t\tif ( display === \"\" && jQuery.css(elem, \"display\") === \"none\" ) {\n\t\t\t\t\t\tjQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set the display of most of the elements in a second loop\n\t\t\t// to avoid the constant reflow\n\t\t\tfor ( i = 0; i < j; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = elem.style.display;\n\n\t\t\t\t\tif ( display === \"\" || display === \"none\" ) {\n\t\t\t\t\t\telem.style.display = jQuery._data( elem, \"olddisplay\" ) || \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn this;\n\t\t}\n\t},\n\n\thide: function( speed, easing, callback ) {\n\t\tif ( speed || speed === 0 ) {\n\t\t\treturn this.animate( genFx(\"hide\", 3), speed, easing, callback);\n\n\t\t} else {\n\t\t\tvar elem, display,\n\t\t\t\ti = 0,\n\t\t\t\tj = this.length;\n\n\t\t\tfor ( ; i < j; i++ ) {\n\t\t\t\telem = this[i];\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t\t\t\tif ( display !== \"none\" && !jQuery._data( elem, \"olddisplay\" ) ) {\n\t\t\t\t\t\tjQuery._data( elem, \"olddisplay\", display );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set the display of the elements in a second loop\n\t\t\t// to avoid the constant reflow\n\t\t\tfor ( i = 0; i < j; i++ ) {\n\t\t\t\tif ( this[i].style ) {\n\t\t\t\t\tthis[i].style.display = \"none\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn this;\n\t\t}\n\t},\n\n\t// Save the old toggle function\n\t_toggle: jQuery.fn.toggle,\n\n\ttoggle: function( fn, fn2, callback ) {\n\t\tvar bool = typeof fn === \"boolean\";\n\n\t\tif ( jQuery.isFunction(fn) && jQuery.isFunction(fn2) ) {\n\t\t\tthis._toggle.apply( this, arguments );\n\n\t\t} else if ( fn == null || bool ) {\n\t\t\tthis.each(function() {\n\t\t\t\tvar state = bool ? fn : jQuery(this).is(\":hidden\");\n\t\t\t\tjQuery(this)[ state ? \"show\" : \"hide\" ]();\n\t\t\t});\n\n\t\t} else {\n\t\t\tthis.animate(genFx(\"toggle\", 3), fn, fn2, callback);\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tfadeTo: function( speed, to, easing, callback ) {\n\t\treturn this.filter(\":hidden\").css(\"opacity\", 0).show().end()\n\t\t\t\t\t.animate({opacity: to}, speed, easing, callback);\n\t},\n\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar optall = jQuery.speed( speed, easing, callback );\n\n\t\tif ( jQuery.isEmptyObject( prop ) ) {\n\t\t\treturn this.each( optall.complete, [ false ] );\n\t\t}\n\n\t\t// Do not change referenced properties as per-property easing will be lost\n\t\tprop = jQuery.extend( {}, prop );\n\n\t\tfunction doAnimation() {\n\t\t\t// XXX 'this' does not always have a nodeName when running the\n\t\t\t// test suite\n\n\t\t\tif ( optall.queue === false ) {\n\t\t\t\tjQuery._mark( this );\n\t\t\t}\n\n\t\t\tvar opt = jQuery.extend( {}, optall ),\n\t\t\t\tisElement = this.nodeType === 1,\n\t\t\t\thidden = isElement && jQuery(this).is(\":hidden\"),\n\t\t\t\tname, val, p, e,\n\t\t\t\tparts, start, end, unit,\n\t\t\t\tmethod;\n\n\t\t\t// will store per property easing and be used to determine when an animation is complete\n\t\t\topt.animatedProperties = {};\n\n\t\t\tfor ( p in prop ) {\n\n\t\t\t\t// property name normalization\n\t\t\t\tname = jQuery.camelCase( p );\n\t\t\t\tif ( p !== name ) {\n\t\t\t\t\tprop[ name ] = prop[ p ];\n\t\t\t\t\tdelete prop[ p ];\n\t\t\t\t}\n\n\t\t\t\tval = prop[ name ];\n\n\t\t\t\t// easing resolution: per property > opt.specialEasing > opt.easing > 'swing' (default)\n\t\t\t\tif ( jQuery.isArray( val ) ) {\n\t\t\t\t\topt.animatedProperties[ name ] = val[ 1 ];\n\t\t\t\t\tval = prop[ name ] = val[ 0 ];\n\t\t\t\t} else {\n\t\t\t\t\topt.animatedProperties[ name ] = opt.specialEasing && opt.specialEasing[ name ] || opt.easing || 'swing';\n\t\t\t\t}\n\n\t\t\t\tif ( val === \"hide\" && hidden || val === \"show\" && !hidden ) {\n\t\t\t\t\treturn opt.complete.call( this );\n\t\t\t\t}\n\n\t\t\t\tif ( isElement && ( name === \"height\" || name === \"width\" ) ) {\n\t\t\t\t\t// Make sure that nothing sneaks out\n\t\t\t\t\t// Record all 3 overflow attributes because IE does not\n\t\t\t\t\t// change the overflow attribute when overflowX and\n\t\t\t\t\t// overflowY are set to the same value\n\t\t\t\t\topt.overflow = [ this.style.overflow, this.style.overflowX, this.style.overflowY ];\n\n\t\t\t\t\t// Set display property to inline-block for height/width\n\t\t\t\t\t// animations on inline elements that are having width/height animated\n\t\t\t\t\tif ( jQuery.css( this, \"display\" ) === \"inline\" &&\n\t\t\t\t\t\t\tjQuery.css( this, \"float\" ) === \"none\" ) {\n\n\t\t\t\t\t\t// inline-level elements accept inline-block;\n\t\t\t\t\t\t// block-level elements need to be inline with layout\n\t\t\t\t\t\tif ( !jQuery.support.inlineBlockNeedsLayout || defaultDisplay( this.nodeName ) === \"inline\" ) {\n\t\t\t\t\t\t\tthis.style.display = \"inline-block\";\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthis.style.zoom = 1;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( opt.overflow != null ) {\n\t\t\t\tthis.style.overflow = \"hidden\";\n\t\t\t}\n\n\t\t\tfor ( p in prop ) {\n\t\t\t\te = new jQuery.fx( this, opt, p );\n\t\t\t\tval = prop[ p ];\n\n\t\t\t\tif ( rfxtypes.test( val ) ) {\n\n\t\t\t\t\t// Tracks whether to show or hide based on private\n\t\t\t\t\t// data attached to the element\n\t\t\t\t\tmethod = jQuery._data( this, \"toggle\" + p ) || ( val === \"toggle\" ? hidden ? \"show\" : \"hide\" : 0 );\n\t\t\t\t\tif ( method ) {\n\t\t\t\t\t\tjQuery._data( this, \"toggle\" + p, method === \"show\" ? \"hide\" : \"show\" );\n\t\t\t\t\t\te[ method ]();\n\t\t\t\t\t} else {\n\t\t\t\t\t\te[ val ]();\n\t\t\t\t\t}\n\n\t\t\t\t} else {\n\t\t\t\t\tparts = rfxnum.exec( val );\n\t\t\t\t\tstart = e.cur();\n\n\t\t\t\t\tif ( parts ) {\n\t\t\t\t\t\tend = parseFloat( parts[2] );\n\t\t\t\t\t\tunit = parts[3] || ( jQuery.cssNumber[ p ] ? \"\" : \"px\" );\n\n\t\t\t\t\t\t// We need to compute starting value\n\t\t\t\t\t\tif ( unit !== \"px\" ) {\n\t\t\t\t\t\t\tjQuery.style( this, p, (end || 1) + unit);\n\t\t\t\t\t\t\tstart = ( (end || 1) / e.cur() ) * start;\n\t\t\t\t\t\t\tjQuery.style( this, p, start + unit);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\t\t\tif ( parts[1] ) {\n\t\t\t\t\t\t\tend = ( (parts[ 1 ] === \"-=\" ? -1 : 1) * end ) + start;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\te.custom( start, end, unit );\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\te.custom( start, val, \"\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// For JS strict compliance\n\t\t\treturn true;\n\t\t}\n\n\t\treturn optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\thadTimers = false,\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\t// clear marker counters if we know they won't be\n\t\t\tif ( !gotoEnd ) {\n\t\t\t\tjQuery._unmark( true, this );\n\t\t\t}\n\n\t\t\tfunction stopQueue( elem, data, index ) {\n\t\t\t\tvar hooks = data[ index ];\n\t\t\t\tjQuery.removeData( elem, index, true );\n\t\t\t\thooks.stop( gotoEnd );\n\t\t\t}\n\n\t\t\tif ( type == null ) {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && index.indexOf(\".run\") === index.length - 4 ) {\n\t\t\t\t\t\tstopQueue( this, data, index );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if ( data[ index = type + \".run\" ] && data[ index ].stop ){\n\t\t\t\tstopQueue( this, data, index );\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\tif ( gotoEnd ) {\n\n\t\t\t\t\t\t// force the next step to be the last\n\t\t\t\t\t\ttimers[ index ]( true );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttimers[ index ].saveState();\n\t\t\t\t\t}\n\t\t\t\t\thadTimers = true;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( !( gotoEnd && hadTimers ) ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t}\n\n});\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout( clearFxNow, 0 );\n\treturn ( fxNow = jQuery.now() );\n}\n\nfunction clearFxNow() {\n\tfxNow = undefined;\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, num ) {\n\tvar obj = {};\n\n\tjQuery.each( fxAttrs.concat.apply([], fxAttrs.slice( 0, num )), function() {\n\t\tobj[ this ] = type;\n\t});\n\n\treturn obj;\n}\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx( \"show\", 1 ),\n\tslideUp: genFx( \"hide\", 1 ),\n\tslideToggle: genFx( \"toggle\", 1 ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.extend({\n\tspeed: function( speed, easing, fn ) {\n\t\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\t\tcomplete: fn || !fn && easing ||\n\t\t\t\tjQuery.isFunction( speed ) && speed,\n\t\t\tduration: speed,\n\t\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t\t};\n\n\t\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\t\tif ( opt.queue == null || opt.queue === true ) {\n\t\t\topt.queue = \"fx\";\n\t\t}\n\n\t\t// Queueing\n\t\topt.old = opt.complete;\n\n\t\topt.complete = function( noUnmark ) {\n\t\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\t\topt.old.call( this );\n\t\t\t}\n\n\t\t\tif ( opt.queue ) {\n\t\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t\t} else if ( noUnmark !== false ) {\n\t\t\t\tjQuery._unmark( this );\n\t\t\t}\n\t\t};\n\n\t\treturn opt;\n\t},\n\n\teasing: {\n\t\tlinear: function( p, n, firstNum, diff ) {\n\t\t\treturn firstNum + diff * p;\n\t\t},\n\t\tswing: function( p, n, firstNum, diff ) {\n\t\t\treturn ( ( -Math.cos( p*Math.PI ) / 2 ) + 0.5 ) * diff + firstNum;\n\t\t}\n\t},\n\n\ttimers: [],\n\n\tfx: function( elem, options, prop ) {\n\t\tthis.options = options;\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\n\t\toptions.orig = options.orig || {};\n\t}\n\n});\n\njQuery.fx.prototype = {\n\t// Simple function for setting a style value\n\tupdate: function() {\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\t( jQuery.fx.step[ this.prop ] || jQuery.fx.step._default )( this );\n\t},\n\n\t// Get the current size\n\tcur: function() {\n\t\tif ( this.elem[ this.prop ] != null && (!this.elem.style || this.elem.style[ this.prop ] == null) ) {\n\t\t\treturn this.elem[ this.prop ];\n\t\t}\n\n\t\tvar parsed,\n\t\t\tr = jQuery.css( this.elem, this.prop );\n\t\t// Empty strings, null, undefined and \"auto\" are converted to 0,\n\t\t// complex values such as \"rotate(1rad)\" are returned as is,\n\t\t// simple values such as \"10px\" are parsed to Float.\n\t\treturn isNaN( parsed = parseFloat( r ) ) ? !r || r === \"auto\" ? 0 : r : parsed;\n\t},\n\n\t// Start an animation from one number to another\n\tcustom: function( from, to, unit ) {\n\t\tvar self = this,\n\t\t\tfx = jQuery.fx;\n\n\t\tthis.startTime = fxNow || createFxNow();\n\t\tthis.end = to;\n\t\tthis.now = this.start = from;\n\t\tthis.pos = this.state = 0;\n\t\tthis.unit = unit || this.unit || ( jQuery.cssNumber[ this.prop ] ? \"\" : \"px\" );\n\n\t\tfunction t( gotoEnd ) {\n\t\t\treturn self.step( gotoEnd );\n\t\t}\n\n\t\tt.queue = this.options.queue;\n\t\tt.elem = this.elem;\n\t\tt.saveState = function() {\n\t\t\tif ( self.options.hide && jQuery._data( self.elem, \"fxshow\" + self.prop ) === undefined ) {\n\t\t\t\tjQuery._data( self.elem, \"fxshow\" + self.prop, self.start );\n\t\t\t}\n\t\t};\n\n\t\tif ( t() && jQuery.timers.push(t) && !timerId ) {\n\t\t\ttimerId = setInterval( fx.tick, fx.interval );\n\t\t}\n\t},\n\n\t// Simple 'show' function\n\tshow: function() {\n\t\tvar dataShow = jQuery._data( this.elem, \"fxshow\" + this.prop );\n\n\t\t// Remember where we started, so that we can go back to it later\n\t\tthis.options.orig[ this.prop ] = dataShow || jQuery.style( this.elem, this.prop );\n\t\tthis.options.show = true;\n\n\t\t// Begin the animation\n\t\t// Make sure that we start at a small width/height to avoid any flash of content\n\t\tif ( dataShow !== undefined ) {\n\t\t\t// This show is picking up where a previous hide or show left off\n\t\t\tthis.custom( this.cur(), dataShow );\n\t\t} else {\n\t\t\tthis.custom( this.prop === \"width\" || this.prop === \"height\" ? 1 : 0, this.cur() );\n\t\t}\n\n\t\t// Start by showing the element\n\t\tjQuery( this.elem ).show();\n\t},\n\n\t// Simple 'hide' function\n\thide: function() {\n\t\t// Remember where we started, so that we can go back to it later\n\t\tthis.options.orig[ this.prop ] = jQuery._data( this.elem, \"fxshow\" + this.prop ) || jQuery.style( this.elem, this.prop );\n\t\tthis.options.hide = true;\n\n\t\t// Begin the animation\n\t\tthis.custom( this.cur(), 0 );\n\t},\n\n\t// Each step of an animation\n\tstep: function( gotoEnd ) {\n\t\tvar p, n, complete,\n\t\t\tt = fxNow || createFxNow(),\n\t\t\tdone = true,\n\t\t\telem = this.elem,\n\t\t\toptions = this.options;\n\n\t\tif ( gotoEnd || t >= options.duration + this.startTime ) {\n\t\t\tthis.now = this.end;\n\t\t\tthis.pos = this.state = 1;\n\t\t\tthis.update();\n\n\t\t\toptions.animatedProperties[ this.prop ] = true;\n\n\t\t\tfor ( p in options.animatedProperties ) {\n\t\t\t\tif ( options.animatedProperties[ p ] !== true ) {\n\t\t\t\t\tdone = false;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( done ) {\n\t\t\t\t// Reset the overflow\n\t\t\t\tif ( options.overflow != null && !jQuery.support.shrinkWrapBlocks ) {\n\n\t\t\t\t\tjQuery.each( [ \"\", \"X\", \"Y\" ], function( index, value ) {\n\t\t\t\t\t\telem.style[ \"overflow\" + value ] = options.overflow[ index ];\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\t// Hide the element if the \"hide\" operation was done\n\t\t\t\tif ( options.hide ) {\n\t\t\t\t\tjQuery( elem ).hide();\n\t\t\t\t}\n\n\t\t\t\t// Reset the properties, if the item has been hidden or shown\n\t\t\t\tif ( options.hide || options.show ) {\n\t\t\t\t\tfor ( p in options.animatedProperties ) {\n\t\t\t\t\t\tjQuery.style( elem, p, options.orig[ p ] );\n\t\t\t\t\t\tjQuery.removeData( elem, \"fxshow\" + p, true );\n\t\t\t\t\t\t// Toggle data is no longer needed\n\t\t\t\t\t\tjQuery.removeData( elem, \"toggle\" + p, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Execute the complete function\n\t\t\t\t// in the event that the complete function throws an exception\n\t\t\t\t// we must ensure it won't be called twice. #5684\n\n\t\t\t\tcomplete = options.complete;\n\t\t\t\tif ( complete ) {\n\n\t\t\t\t\toptions.complete = false;\n\t\t\t\t\tcomplete.call( elem );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn false;\n\n\t\t} else {\n\t\t\t// classical easing cannot be used with an Infinity duration\n\t\t\tif ( options.duration == Infinity ) {\n\t\t\t\tthis.now = t;\n\t\t\t} else {\n\t\t\t\tn = t - this.startTime;\n\t\t\t\tthis.state = n / options.duration;\n\n\t\t\t\t// Perform the easing function, defaults to swing\n\t\t\t\tthis.pos = jQuery.easing[ options.animatedProperties[this.prop] ]( this.state, n, 0, 1, options.duration );\n\t\t\t\tthis.now = this.start + ( (this.end - this.start) * this.pos );\n\t\t\t}\n\t\t\t// Perform the next step of the animation\n\t\t\tthis.update();\n\t\t}\n\n\t\treturn true;\n\t}\n};\n\njQuery.extend( jQuery.fx, {\n\ttick: function() {\n\t\tvar timer,\n\t\t\ttimers = jQuery.timers,\n\t\t\ti = 0;\n\n\t\tfor ( ; i < timers.length; i++ ) {\n\t\t\ttimer = timers[ i ];\n\t\t\t// Checks the timer has not already been removed\n\t\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\t\ttimers.splice( i--, 1 );\n\t\t\t}\n\t\t}\n\n\t\tif ( !timers.length ) {\n\t\t\tjQuery.fx.stop();\n\t\t}\n\t},\n\n\tinterval: 13,\n\n\tstop: function() {\n\t\tclearInterval( timerId );\n\t\ttimerId = null;\n\t},\n\n\tspeeds: {\n\t\tslow: 600,\n\t\tfast: 200,\n\t\t// Default speed\n\t\t_default: 400\n\t},\n\n\tstep: {\n\t\topacity: function( fx ) {\n\t\t\tjQuery.style( fx.elem, \"opacity\", fx.now );\n\t\t},\n\n\t\t_default: function( fx ) {\n\t\t\tif ( fx.elem.style && fx.elem.style[ fx.prop ] != null ) {\n\t\t\t\tfx.elem.style[ fx.prop ] = fx.now + fx.unit;\n\t\t\t} else {\n\t\t\t\tfx.elem[ fx.prop ] = fx.now;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Adds width/height step functions\n// Do not set anything below 0\njQuery.each([ \"width\", \"height\" ], function( i, prop ) {\n\tjQuery.fx.step[ prop ] = function( fx ) {\n\t\tjQuery.style( fx.elem, prop, Math.max(0, fx.now) + fx.unit );\n\t};\n});\n\nif ( jQuery.expr && jQuery.expr.filters ) {\n\tjQuery.expr.filters.animated = function( elem ) {\n\t\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\t\treturn elem === fn.elem;\n\t\t}).length;\n\t};\n}\n\n// Try to restore the default display value of an element\nfunction defaultDisplay( nodeName ) {\n\n\tif ( !elemdisplay[ nodeName ] ) {\n\n\t\tvar body = document.body,\n\t\t\telem = jQuery( \"<\" + nodeName + \">\" ).appendTo( body ),\n\t\t\tdisplay = elem.css( \"display\" );\n\t\telem.remove();\n\n\t\t// If the simple way fails,\n\t\t// get element's real default display by attaching it to a temp iframe\n\t\tif ( display === \"none\" || display === \"\" ) {\n\t\t\t// No iframe to use yet, so create it\n\t\t\tif ( !iframe ) {\n\t\t\t\tiframe = document.createElement( \"iframe\" );\n\t\t\t\tiframe.frameBorder = iframe.width = iframe.height = 0;\n\t\t\t}\n\n\t\t\tbody.appendChild( iframe );\n\n\t\t\t// Create a cacheable copy of the iframe document on first call.\n\t\t\t// IE and Opera will allow us to reuse the iframeDoc without re-writing the fake HTML\n\t\t\t// document to it; WebKit & Firefox won't allow reusing the iframe document.\n\t\t\tif ( !iframeDoc || !iframe.createElement ) {\n\t\t\t\tiframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document;\n\t\t\t\tiframeDoc.write( ( document.compatMode === \"CSS1Compat\" ? \"<!doctype html>\" : \"\" ) + \"<html><body>\" );\n\t\t\t\tiframeDoc.close();\n\t\t\t}\n\n\t\t\telem = iframeDoc.createElement( nodeName );\n\n\t\t\tiframeDoc.body.appendChild( elem );\n\n\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\tbody.removeChild( iframe );\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn elemdisplay[ nodeName ];\n}\n\n\n\n\nvar rtable = /^t(?:able|d|h)$/i,\n\trroot = /^(?:body|html)$/i;\n\nif ( \"getBoundingClientRect\" in document.documentElement ) {\n\tjQuery.fn.offset = function( options ) {\n\t\tvar elem = this[0], box;\n\n\t\tif ( options ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t});\n\t\t}\n\n\t\tif ( !elem || !elem.ownerDocument ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tif ( elem === elem.ownerDocument.body ) {\n\t\t\treturn jQuery.offset.bodyOffset( elem );\n\t\t}\n\n\t\ttry {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t} catch(e) {}\n\n\t\tvar doc = elem.ownerDocument,\n\t\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure we're not dealing with a disconnected DOM node\n\t\tif ( !box || !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box ? { top: box.top, left: box.left } : { top: 0, left: 0 };\n\t\t}\n\n\t\tvar body = doc.body,\n\t\t\twin = getWindow(doc),\n\t\t\tclientTop  = docElem.clientTop  || body.clientTop  || 0,\n\t\t\tclientLeft = docElem.clientLeft || body.clientLeft || 0,\n\t\t\tscrollTop  = win.pageYOffset || jQuery.support.boxModel && docElem.scrollTop  || body.scrollTop,\n\t\t\tscrollLeft = win.pageXOffset || jQuery.support.boxModel && docElem.scrollLeft || body.scrollLeft,\n\t\t\ttop  = box.top  + scrollTop  - clientTop,\n\t\t\tleft = box.left + scrollLeft - clientLeft;\n\n\t\treturn { top: top, left: left };\n\t};\n\n} else {\n\tjQuery.fn.offset = function( options ) {\n\t\tvar elem = this[0];\n\n\t\tif ( options ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t});\n\t\t}\n\n\t\tif ( !elem || !elem.ownerDocument ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tif ( elem === elem.ownerDocument.body ) {\n\t\t\treturn jQuery.offset.bodyOffset( elem );\n\t\t}\n\n\t\tvar computedStyle,\n\t\t\toffsetParent = elem.offsetParent,\n\t\t\tprevOffsetParent = elem,\n\t\t\tdoc = elem.ownerDocument,\n\t\t\tdocElem = doc.documentElement,\n\t\t\tbody = doc.body,\n\t\t\tdefaultView = doc.defaultView,\n\t\t\tprevComputedStyle = defaultView ? defaultView.getComputedStyle( elem, null ) : elem.currentStyle,\n\t\t\ttop = elem.offsetTop,\n\t\t\tleft = elem.offsetLeft;\n\n\t\twhile ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) {\n\t\t\tif ( jQuery.support.fixedPosition && prevComputedStyle.position === \"fixed\" ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tcomputedStyle = defaultView ? defaultView.getComputedStyle(elem, null) : elem.currentStyle;\n\t\t\ttop  -= elem.scrollTop;\n\t\t\tleft -= elem.scrollLeft;\n\n\t\t\tif ( elem === offsetParent ) {\n\t\t\t\ttop  += elem.offsetTop;\n\t\t\t\tleft += elem.offsetLeft;\n\n\t\t\t\tif ( jQuery.support.doesNotAddBorder && !(jQuery.support.doesAddBorderForTableAndCells && rtable.test(elem.nodeName)) ) {\n\t\t\t\t\ttop  += parseFloat( computedStyle.borderTopWidth  ) || 0;\n\t\t\t\t\tleft += parseFloat( computedStyle.borderLeftWidth ) || 0;\n\t\t\t\t}\n\n\t\t\t\tprevOffsetParent = offsetParent;\n\t\t\t\toffsetParent = elem.offsetParent;\n\t\t\t}\n\n\t\t\tif ( jQuery.support.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== \"visible\" ) {\n\t\t\t\ttop  += parseFloat( computedStyle.borderTopWidth  ) || 0;\n\t\t\t\tleft += parseFloat( computedStyle.borderLeftWidth ) || 0;\n\t\t\t}\n\n\t\t\tprevComputedStyle = computedStyle;\n\t\t}\n\n\t\tif ( prevComputedStyle.position === \"relative\" || prevComputedStyle.position === \"static\" ) {\n\t\t\ttop  += body.offsetTop;\n\t\t\tleft += body.offsetLeft;\n\t\t}\n\n\t\tif ( jQuery.support.fixedPosition && prevComputedStyle.position === \"fixed\" ) {\n\t\t\ttop  += Math.max( docElem.scrollTop, body.scrollTop );\n\t\t\tleft += Math.max( docElem.scrollLeft, body.scrollLeft );\n\t\t}\n\n\t\treturn { top: top, left: left };\n\t};\n}\n\njQuery.offset = {\n\n\tbodyOffset: function( body ) {\n\t\tvar top = body.offsetTop,\n\t\t\tleft = body.offsetLeft;\n\n\t\tif ( jQuery.support.doesNotIncludeMarginInBodyOffset ) {\n\t\t\ttop  += parseFloat( jQuery.css(body, \"marginTop\") ) || 0;\n\t\t\tleft += parseFloat( jQuery.css(body, \"marginLeft\") ) || 0;\n\t\t}\n\n\t\treturn { top: top, left: left };\n\t},\n\n\tsetOffset: function( elem, options, i ) {\n\t\tvar position = jQuery.css( elem, \"position\" );\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tvar curElem = jQuery( elem ),\n\t\t\tcurOffset = curElem.offset(),\n\t\t\tcurCSSTop = jQuery.css( elem, \"top\" ),\n\t\t\tcurCSSLeft = jQuery.css( elem, \"left\" ),\n\t\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) && jQuery.inArray(\"auto\", [curCSSTop, curCSSLeft]) > -1,\n\t\t\tprops = {}, curPosition = {}, curTop, curLeft;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\n\njQuery.fn.extend({\n\n\tposition: function() {\n\t\tif ( !this[0] ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tvar elem = this[0],\n\n\t\t// Get *real* offsetParent\n\t\toffsetParent = this.offsetParent(),\n\n\t\t// Get correct offsets\n\t\toffset       = this.offset(),\n\t\tparentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset();\n\n\t\t// Subtract element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\toffset.top  -= parseFloat( jQuery.css(elem, \"marginTop\") ) || 0;\n\t\toffset.left -= parseFloat( jQuery.css(elem, \"marginLeft\") ) || 0;\n\n\t\t// Add offsetParent borders\n\t\tparentOffset.top  += parseFloat( jQuery.css(offsetParent[0], \"borderTopWidth\") ) || 0;\n\t\tparentOffset.left += parseFloat( jQuery.css(offsetParent[0], \"borderLeftWidth\") ) || 0;\n\n\t\t// Subtract the two offsets\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top,\n\t\t\tleft: offset.left - parentOffset.left\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || document.body;\n\t\t\twhile ( offsetParent && (!rroot.test(offsetParent.nodeName) && jQuery.css(offsetParent, \"position\") === \"static\") ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent;\n\t\t});\n\t}\n});\n\n\n// Create scrollLeft and scrollTop methods\njQuery.each( [\"Left\", \"Top\"], function( i, name ) {\n\tvar method = \"scroll\" + name;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\tvar elem, win;\n\n\t\tif ( val === undefined ) {\n\t\t\telem = this[ 0 ];\n\n\t\t\tif ( !elem ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\twin = getWindow( elem );\n\n\t\t\t// Return the scroll offset\n\t\t\treturn win ? (\"pageXOffset\" in win) ? win[ i ? \"pageYOffset\" : \"pageXOffset\" ] :\n\t\t\t\tjQuery.support.boxModel && win.document.documentElement[ method ] ||\n\t\t\t\t\twin.document.body[ method ] :\n\t\t\t\telem[ method ];\n\t\t}\n\n\t\t// Set the scroll offset\n\t\treturn this.each(function() {\n\t\t\twin = getWindow( this );\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!i ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\t i ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\tthis[ method ] = val;\n\t\t\t}\n\t\t});\n\t};\n});\n\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\n\n\n\n// Create width, height, innerHeight, innerWidth, outerHeight and outerWidth methods\njQuery.each([ \"Height\", \"Width\" ], function( i, name ) {\n\n\tvar type = name.toLowerCase();\n\n\t// innerHeight and innerWidth\n\tjQuery.fn[ \"inner\" + name ] = function() {\n\t\tvar elem = this[0];\n\t\treturn elem ?\n\t\t\telem.style ?\n\t\t\tparseFloat( jQuery.css( elem, type, \"padding\" ) ) :\n\t\t\tthis[ type ]() :\n\t\t\tnull;\n\t};\n\n\t// outerHeight and outerWidth\n\tjQuery.fn[ \"outer\" + name ] = function( margin ) {\n\t\tvar elem = this[0];\n\t\treturn elem ?\n\t\t\telem.style ?\n\t\t\tparseFloat( jQuery.css( elem, type, margin ? \"margin\" : \"border\" ) ) :\n\t\t\tthis[ type ]() :\n\t\t\tnull;\n\t};\n\n\tjQuery.fn[ type ] = function( size ) {\n\t\t// Get window width or height\n\t\tvar elem = this[0];\n\t\tif ( !elem ) {\n\t\t\treturn size == null ? null : this;\n\t\t}\n\n\t\tif ( jQuery.isFunction( size ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tvar self = jQuery( this );\n\t\t\t\tself[ type ]( size.call( this, i, self[ type ]() ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode\n\t\t\t// 3rd condition allows Nokia support, as it supports the docElem prop but not CSS1Compat\n\t\t\tvar docElemProp = elem.document.documentElement[ \"client\" + name ],\n\t\t\t\tbody = elem.document.body;\n\t\t\treturn elem.document.compatMode === \"CSS1Compat\" && docElemProp ||\n\t\t\t\tbody && body[ \"client\" + name ] || docElemProp;\n\n\t\t// Get document width or height\n\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t// Either scroll[Width/Height] or offset[Width/Height], whichever is greater\n\t\t\treturn Math.max(\n\t\t\t\telem.documentElement[\"client\" + name],\n\t\t\t\telem.body[\"scroll\" + name], elem.documentElement[\"scroll\" + name],\n\t\t\t\telem.body[\"offset\" + name], elem.documentElement[\"offset\" + name]\n\t\t\t);\n\n\t\t// Get or set width or height on the element\n\t\t} else if ( size === undefined ) {\n\t\t\tvar orig = jQuery.css( elem, type ),\n\t\t\t\tret = parseFloat( orig );\n\n\t\t\treturn jQuery.isNumeric( ret ) ? ret : orig;\n\n\t\t// Set the width or height on the element (default to pixels if value is unitless)\n\t\t} else {\n\t\t\treturn this.css( type, typeof size === \"string\" ? size : size + \"px\" );\n\t\t}\n\t};\n\n});\n\n\n\n\n// Expose jQuery to the global object\nwindow.jQuery = window.$ = jQuery;\n\n// Expose jQuery as an AMD module, but only for AMD loaders that\n// understand the issues with loading multiple versions of jQuery\n// in a page that all might call define(). The loader will indicate\n// they have special allowances for multiple jQuery versions by\n// specifying define.amd.jQuery = true. Register as a named module,\n// since jQuery can be concatenated with other files that may use define,\n// but not use a proper concatenation script that understands anonymous\n// AMD modules. A named AMD is safest and most robust way to register.\n// Lowercase jquery is used because AMD module names are derived from\n// file names, and jQuery is normally delivered in a lowercase file name.\n// Do this after creating the global so that if an AMD module wants to call\n// noConflict to hide this version of jQuery, it will work.\nif ( typeof define === \"function\" && define.amd && define.amd.jQuery ) {\n\tdefine( \"jquery\", [], function () { return jQuery; } );\n}\n\n\n\n})( window );\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/analysis.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/analysis\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(analysis)$' ),\n  function( context )\n  {\n    var active_core = this.active_core;\n    var core_basepath = active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n \n    $.get\n    (\n      'tpl/analysis.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                \n        var analysis_element = $( '#analysis', content_element );\n        var analysis_form = $( 'form', analysis_element );\n        var analysis_result = $( '#analysis-result', analysis_element );\n        analysis_result.hide();\n\n        var verbose_link = $( '.verbose_output a', analysis_element );\n\n        var type_or_name = $( '#type_or_name', analysis_form );\n        var schema_browser_element = $( '#tor_schema' );\n        var schema_browser_path = app.core_menu.find( '.schema-browser a' ).attr( 'href' );\n        var schema_browser_map = { 'fieldname' : 'field', 'fieldtype' : 'type' };\n\n        type_or_name\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var info = $( this ).val().split( '=' );\n\n              schema_browser_element\n                .attr( 'href', schema_browser_path + '?' + schema_browser_map[info[0]] + '=' + info[1] );\n            }\n          );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/luke?wt=json&show=schema',\n            dataType : 'json',\n            context : type_or_name,\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .html( '<option value=\"\">Loading ... </option>' )\n                .addClass( 'loader' );\n            },\n            success : function( response, text_status, xhr )\n            {\n              var content = '';\n                            \n              var fields = [];\n              for( var field_name in response.schema.fields )\n              {\n                fields.push\n                (\n                  '<option value=\"fieldname=' + field_name + '\">' + field_name + '</option>'\n                );\n              }\n              if( 0 !== fields.length )\n              {\n                content += '<optgroup label=\"Fields\">' + \"\\n\";\n                content += fields.sort().join( \"\\n\" ) + \"\\n\";\n                content += '</optgroup>' + \"\\n\";\n              }\n                            \n              var types = [];\n              for( var type_name in response.schema.types )\n              {\n                types.push\n                (\n                  '<option value=\"fieldtype=' + type_name + '\">' + type_name + '</option>'\n                );\n              }\n              if( 0 !== types.length )\n              {\n                content += '<optgroup label=\"Types\">' + \"\\n\";\n                content += types.sort().join( \"\\n\" ) + \"\\n\";\n                content += '</optgroup>' + \"\\n\";\n              }\n                            \n              this\n                .html( content );\n\n              var defaultSearchField = 'fieldname\\=' + ( context.params['analysis.fieldname'] || response.schema.defaultSearchField );\n\n              if( context.params['analysis.fieldtype'] )\n              {\n                defaultSearchField = 'fieldtype\\=' + context.params['analysis.fieldtype'];\n              }\n\n              $( 'option[value=\"' + defaultSearchField + '\"]', this )\n                .attr( 'selected', 'selected' );\n\n              this\n                .chosen()\n                .trigger( 'change' );\n\n              var fields = 0;\n              for( var key in context.params )\n              {\n                if( 'string' === typeof context.params[key] )\n                {\n                  fields++;\n                  $( '[name=\"' + key + '\"]', analysis_form )\n                    .val( context.params[key].replace( /\\+/g, ' ' ) );\n                }\n              }\n\n              if( 'undefined' !== typeof context.params.verbose_output )\n              {\n                verbose_link.trigger( 'toggle', !!context.params.verbose_output.match( /^(1|true)$/ ) );\n              }\n\n              if( 0 !== fields )\n              {\n                analysis_form\n                  .trigger( 'execute' );\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n              this\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                        \n        $( '.analysis-error .head a', analysis_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.analysis-error' )\n                .toggleClass( 'expanded' );\n            }\n          );\n                        \n        var check_empty_spacer = function()\n        {\n          var spacer_holder = $( 'td.part.data.spacer .holder', analysis_result );\n\n          if( 0 === spacer_holder.size() )\n          {\n            return false;\n          }\n\n          var verbose_output = analysis_result.hasClass( 'verbose_output' );\n\n          spacer_holder\n            .each\n            (\n              function( index, element )\n              {\n                element = $( element );\n\n                if( verbose_output )\n                {\n                  var cell = element.parent();\n                  element.height( cell.height() );\n                }\n                else\n                {\n                  element.removeAttr( 'style' );\n                }\n              }\n            );\n        }\n                        \n        verbose_link\n          .die( 'toggle' )\n          .live\n          (\n            'toggle',\n            function( event, state )\n            {\n              $( this ).parent()\n                .toggleClass( 'active', state );\n                            \n              analysis_result\n                .toggleClass( 'verbose_output', state );\n                            \n              check_empty_spacer();\n            }\n          )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parent()\n                .toggleClass( 'active' );\n\n              analysis_form.trigger( 'submit' );\n            }\n          );\n\n        var button = $( 'button', analysis_form )\n\n        var compute_analysis_params = function()\n        {\n          var params = analysis_form.formToArray();\n                          \n          var type_or_name = $( '#type_or_name', analysis_form ).val().split( '=' );\n          params.push( { name: 'analysis.' + type_or_name[0], value: type_or_name[1] } );\n          params.push( { name: 'verbose_output', value: $( '.verbose_output', analysis_element ).hasClass( 'active' ) ? 1 : 0 } );\n\n          return params;\n        }\n                \n        analysis_form\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              var params = $.param( compute_analysis_params() )\n                            .replace( /[\\w\\.]+=\\+*(&)/g, '$1' ) // remove empty parameters\n                            .replace( /(&)+/, '$1' )            // reduce multiple ampersands\n                            .replace( /^&/, '' );               // remove leading ampersand\n\n              context.redirect( context.path.split( '?' ).shift() + '?' + params );\n              return false;\n            }\n          )\n          .die( 'execute' )\n          .live\n          (\n            'execute',\n            function( event )\n            {\n              var url = core_basepath + '/analysis/field?wt=json&analysis.showmatch=true&' + context.path.split( '?' ).pop();\n              url = url.replace( /&verbose_output=\\d/, '' );\n\n              $.ajax\n              (\n                {\n                  url : url,\n                  dataType : 'json',\n                  beforeSend : function( xhr, settings )\n                  {\n                    loader.show( $( 'span', button ) );\n                    button.attr( 'disabled', true );\n                  },\n                  success : function( response, status_text, xhr, form )\n                  {\n                    $( '.analysis-error', analysis_element )\n                      .hide();\n                                    \n                    analysis_result\n                      .empty()\n                      .show();\n                                    \n                    for( var name in response.analysis.field_names )\n                    {\n                      build_analysis_table( 'name', name, response.analysis.field_names[name] );\n                    }\n                                    \n                    for( var name in response.analysis.field_types )\n                    {\n                      build_analysis_table( 'type', name, response.analysis.field_types[name] );\n                    }\n\n                    check_empty_spacer();\n                  },\n                  error : function( xhr, text_status, error_thrown )\n                  {\n                    analysis_result\n                      .empty()\n                      .hide();\n\n                    if( 404 === xhr.status )\n                    {\n                      $( '#analysis-handler-missing', analysis_element )\n                        .show();\n                    }\n                    else\n                    {\n                      $( '#analysis-error', analysis_element )\n                        .show();\n\n                      var response = null;\n                      try\n                      {\n                        eval( 'response = ' + xhr.responseText + ';' );\n                      }\n                      catch( e )\n                      {\n                        console.error( e );\n                      }\n\n                      $( '#analysis-error .body', analysis_element )\n                        .text( response ? response.error.msg : xhr.responseText );\n                    }\n                  },\n                  complete : function()\n                  {\n                    loader.hide( $( 'span', button ) );\n                    button.removeAttr( 'disabled' );\n                  }\n                }\n              );\n            }\n          );\n\n          var generate_class_name = function( type )\n          {\n            var classes = [type];\n            if( 'text' !== type )\n            {\n              classes.push( 'verbose_output' );\n            }\n            return classes.join( ' ' );\n          }\n                    \n          var build_analysis_table = function( field_or_name, name, analysis_data )\n          {        \n            for( var type in analysis_data )\n            {\n              var type_length = analysis_data[type].length;\n              if( 0 !== type_length )\n              {\n                var global_elements_count = 0;\n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  if( 'string' === typeof analysis_data[type][i+1] )\n                  {\n                    analysis_data[type][i+1] = [{ 'text': analysis_data[type][i+1] }]\n                  }\n\n                  var tmp = {};\n                  var cols = analysis_data[type][i+1].filter\n                  (\n                    function( obj )\n                    {\n                      var obj_position = obj.position || 0;\n                      if( !tmp[obj_position] )\n                      {\n                        tmp[obj_position] = true;\n                        return true;\n                      }\n\n                      return false;\n                    }\n                  );\n\n                  global_elements_count = Math.max( global_elements_count, cols.length );\n                }\n\n                var content = '<div class=\"' + type + '\">' + \"\\n\";\n                content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                                \n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  var colspan = 1;\n                  var elements = analysis_data[type][i+1];\n                  var elements_count = global_elements_count;\n                  \n                  if( !elements[0] || !elements[0].positionHistory )\n                  {\n                    colspan = elements_count;\n                    elements_count = 1;\n                  }\n\n                  var legend = [];\n                  for( var key in elements[0] )\n                  {\n                    var key_parts = key.split( '#' );\n                    var used_key = key_parts.pop();\n                    var short_key = used_key;\n\n                    if( 1 === key_parts.length )\n                    {\n                      used_key = '<abbr title=\"' + key + '\">' + used_key + '</abbr>';\n                    }\n\n                    if( 'positionHistory' === short_key || 'match' === short_key )\n                    {\n                      continue;\n                    }\n\n                    legend.push\n                    (\n                      '<tr class=\"' + generate_class_name( short_key ) + '\">' +\n                      '<td>' + used_key + '</td>' +\n                      '</tr>'\n                    );\n                  }\n\n                  content += '<tbody>' + \"\\n\";\n                  content += '<tr class=\"step\">' + \"\\n\";\n\n                    // analyzer\n                    var analyzer_name = analysis_data[type][i].replace( /(\\$1)+$/g, '' );\n\n                    var analyzer_short = -1 !== analyzer_name.indexOf( '$' )\n                                       ? analyzer_name.split( '$' )[1]\n                                       : analyzer_name.split( '.' ).pop();\n                    analyzer_short = analyzer_short.match( /[A-Z]/g ).join( '' );\n\n                    content += '<td class=\"part analyzer\"><div>' + \"\\n\";\n                    content += '<abbr title=\"' + analysis_data[type][i].esc() + '\">' + \"\\n\";\n                    content += analyzer_short.esc() + '</abbr></div></td>' + \"\\n\";\n\n                    // legend\n                    content += '<td class=\"part legend\"><div class=\"holder\">' + \"\\n\";\n                    content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                    content += '<tr><td>' + \"\\n\";\n                    content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                    content += legend.join( \"\\n\" ) + \"\\n\";\n                    content += '</table></td></tr></table></td>' + \"\\n\";\n\n                    // data\n                    var cell_content = '<td class=\"part data spacer\" colspan=\"' + colspan + '\"><div class=\"holder\">&nbsp;</div></td>';\n                    var cells = new Array( elements_count + 1 ).join( cell_content );\n                    content += cells + \"\\n\";\n\n                  content += '</tr>' + \"\\n\";\n                  content += '</tbody>' + \"\\n\";\n                }\n                content += '</table>' + \"\\n\";\n                content += '</div>' + \"\\n\";\n\n                $( '.' + type, analysis_result )\n                  .remove();\n\n                analysis_result\n                  .append( content );\n                                \n                var analysis_result_type = $( '.' + type, analysis_result );\n\n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  for( var j = 0; j < analysis_data[type][i+1].length; j += 1 )\n                  {\n                    var pos = analysis_data[type][i+1][j].positionHistory\n                        ? analysis_data[type][i+1][j].positionHistory[0]\n                        : 1;\n                    var selector = 'tr.step:eq(' + ( i / 2 ) +') '\n                                 + 'td.data:eq(' + ( pos - 1 ) + ') '\n                                 + '.holder';\n                    var cell = $( selector, analysis_result_type );\n\n                    cell.parent()\n                      .removeClass( 'spacer' );\n\n                    var table = $( 'table tr.details', cell );\n                    if( 0 === table.size() )\n                    {\n                      cell\n                        .html\n                        (\n                          '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \n                          '<tr class=\"details\"></tr></table>'\n                        );\n                      var table = $( 'table tr.details', cell );\n                    }\n\n                    var tokens = [];\n                    for( var key in analysis_data[type][i+1][j] )\n                    {\n                      var short_key = key.split( '#' ).pop();\n                                            \n                      if( 'positionHistory' === short_key || 'match' === short_key )\n                      {\n                        continue;\n                      }\n\n                      var classes = [];\n                      classes.push( generate_class_name( short_key ) );\n\n                      var data = analysis_data[type][i+1][j][key];\n                      if( 'object' === typeof data && data instanceof Array )\n                      {\n                        data = data.join( ' ' );\n                      }\n                      if( 'string' === typeof data )\n                      {\n                        data = data.esc();\n                      }\n\n                      if( null === data || 0 === data.length )\n                      {\n                        classes.push( 'empty' );\n                        data = '&empty;';\n                      }\n\n                      if( analysis_data[type][i+1][j].match && \n                        ( 'text' === short_key || 'raw_bytes' === short_key ) )\n                      {\n                        classes.push( 'match' );\n                      }\n\n                      tokens.push\n                      (\n                        '<tr class=\"' + classes.join( ' ' ) + '\">' +\n                        '<td>' + data + '</td>' +\n                        '</tr>'\n                      );\n                    }\n                    table\n                      .append\n                      (\n                        '<td class=\"details\">' +\n                        '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' +\n                        tokens.join( \"\\n\" ) +\n                        '</table></td>'\n                      );\n                  }\n                }\n                \n              }\n            }\n          }\n                    \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/app.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar loader = {\n    \n  show : function( element )\n  {\n    $( element )\n      .addClass( 'loader' );\n  },\n    \n  hide : function( element )\n  {\n    $( element )\n      .removeClass( 'loader' );\n  }\n    \n};\n\nNumber.prototype.esc = function()\n{\n  return new String( this ).esc();\n}\n\nString.prototype.esc = function()\n{\n  return this.replace( /</g, '&lt;' ).replace( />/g, '&gt;' );\n}\n\nSolrDate = function( date )\n{\n  // [\"Sat Mar 03 11:00:00 CET 2012\", \"Sat\", \"Mar\", \"03\", \"11:00:00\", \"CET\", \"2012\"]\n  var parts = date.match( /^(\\w+)\\s+(\\w+)\\s+(\\d+)\\s+(\\d+\\:\\d+\\:\\d+)\\s+(\\w+)\\s+(\\d+)$/ );\n    \n  // \"Sat Mar 03 2012 10:37:33\"\n  return new Date( parts[1] + ' ' + parts[2] + ' ' + parts[3] + ' ' + parts[6] + ' ' + parts[4] );\n}\n\nvar sammy = $.sammy\n(\n  function()\n  {\n    this.bind\n    (\n      'run',\n      function( event, config )\n      {\n        if( 0 === config.start_url.length )\n        {\n          location.href = '#/';\n          return false;\n        }\n      }\n    );\n\n    this.bind\n    (\n      'error',\n      function( message, original_error )\n      {\n        alert( original_error.message );\n      }\n    );\n        \n    // activate_core\n    this.before\n    (\n      {},\n      function( context )\n      {\n        app.clear_timeout();\n\n        var menu_wrapper = $( '#menu-wrapper' );\n\n        $( 'li[id].active', menu_wrapper )\n          .removeClass( 'active' );\n                \n        $( 'li.active', menu_wrapper )\n          .removeClass( 'active' );\n\n        // global dashboard doesn't have params.splat\n        if( !this.params.splat )\n        {\n          this.params.splat = [ '~index' ];\n        }\n\n        var selector = '~' === this.params.splat[0][0]\n                     ? '#' + this.params.splat[0].replace( /^~/, '' ) + '.global'\n                     : '#core-selector #' + this.params.splat[0].replace( /\\./g, '__' );\n\n        var active_element = $( selector, menu_wrapper );\n                  \n        if( 0 === active_element.size() )\n        {\n          this.app.error( 'There exists no core with name \"' + this.params.splat[0] + '\"' );\n          return false;\n        }\n\n        if( active_element.hasClass( 'global' ) )\n        {\n          active_element\n            .addClass( 'active' );\n\n          if( this.params.splat[1] )\n          {\n            $( '.' + this.params.splat[1], active_element )\n              .addClass( 'active' );\n          }\n\n          $( '#core-selector option[selected]' )\n            .removeAttr( 'selected' )\n            .trigger( 'liszt:updated' );\n\n          $( '#core-selector .chzn-container > a' )\n            .addClass( 'chzn-default' );\n        }\n        else\n        {\n          active_element\n            .attr( 'selected', 'selected' )\n            .trigger( 'liszt:updated' );\n\n          if( !this.params.splat[1] )\n          {\n            this.params.splat[1] = 'overview';\n          }\n\n          $( '#core-menu .' + this.params.splat[1] )\n            .addClass( 'active' );\n\n          this.active_core = active_element;\n        }\n      }\n    );\n  }\n);\n\nvar solr_admin = function( app_config )\n{\n  that = this,\n\n  menu_element = null,\n\n  is_multicore = null,\n  cores_data = null,\n  active_core = null,\n  environment_basepath = null,\n    \n  config = app_config,\n  params = null,\n  dashboard_values = null,\n  schema_browser_data = null,\n\n  plugin_data = null,\n    \n  this.menu_element = $( '#core-selector select' );\n  this.core_menu = $( '#core-menu ul' );\n\n  this.config = config;\n  this.timeout = null;\n\n  this.core_regex_base = '^#\\\\/([\\\\w\\\\d-\\\\.]+)';\n\n  browser = {\n    locale : null,\n    language : null,\n    country : null\n  };\n\n  show_global_error = function( error )\n  {\n    var main = $( '#main' );\n\n    $( 'div[id$=\"-wrapper\"]', main )\n      .remove();\n\n    main\n      .addClass( 'error' )\n      .append( error );\n\n    var pre_tags = $( 'pre', main );\n    if( 0 !== pre_tags.size() )\n    {\n      hljs.highlightBlock( pre_tags.get(0) ); \n    }\n  };\n\n  sort_cores_data = function sort_cores_data( cores_status )\n  {\n    // build array of core-names for sorting\n    var core_names = [];\n    for( var core_name in cores_status )\n    {\n      core_names.push( core_name );\n    }\n    core_names.sort();\n\n    var core_count = core_names.length;\n    var cores = {};\n\n    for( var i = 0; i < core_count; i++ )\n    {\n      var core_name = core_names[i];\n      cores[core_name] = cores_status[core_name];\n    }\n\n    return cores;\n  };\n\n  this.set_cores_data = function set_cores_data( cores )\n  {\n    that.cores_data = sort_cores_data( cores.status );\n    \n    that.menu_element\n      .empty();\n\n    var core_list = [];\n    core_list.push( '<option></option>' );\n\n    var core_count = 0;\n    for( var core_name in that.cores_data )\n    {\n      core_count++;\n      var core_path = config.solr_path + '/' + core_name;\n      var classes = [];\n\n      if( !environment_basepath )\n      {\n        environment_basepath = core_path;\n      }\n\n      if( cores.status[core_name]['isDefaultCore'] )\n      {\n        classes.push( 'default' );\n      }\n\n      var core_tpl = '<option '\n                   + '    id=\"' + core_name.replace( /\\./g, '__' ) + '\" '\n                   + '    class=\"' + classes.join( ' ' ) + '\"'\n                   + '    data-basepath=\"' + core_path + '\"'\n                   + '    schema=\"' + cores.status[core_name]['schema'] + '\"'\n                   + '    config=\"' + cores.status[core_name]['config'] + '\"'\n                   + '    value=\"#/' + core_name + '\"'\n                   + '    title=\"' + core_name + '\"'\n                   + '>' \n                   + core_name \n                   + '</option>';\n\n      core_list.push( core_tpl );\n    }\n\n    that.menu_element\n      .append( core_list.join( \"\\n\" ) );\n\n    if( cores.initFailures )\n    {\n      var failures = [];\n      for( var core_name in cores.initFailures )\n      {\n        failures.push\n        (\n          '<li>' +\n            '<strong>' + core_name.esc() + ':</strong>' + \"\\n\" +\n            cores.initFailures[core_name].esc() + \"\\n\" +\n          '</li>'\n        );\n      }\n\n      if( 0 !== failures.length )\n      {\n        var init_failures = $( '#init-failures' );\n\n        init_failures.show();\n        $( 'ul', init_failures ).html( failures.join( \"\\n\" ) );\n      }\n    }\n\n    if( 0 === core_count )\n    {\n      show_global_error\n      ( \n        '<div class=\"message\">There are no SolrCores running. <br/> Using the Solr Admin UI currently requires at least one SolrCore.</div>'\n      );\n    } // else: we have at least one core....\n  };\n\n  this.run = function()\n  {\n    var navigator_language = navigator.userLanguage || navigator.language;\n    var language_match = navigator_language.match( /^(\\w{2})([-_](\\w{2}))?$/ );\n    if( language_match )\n    {\n      if( language_match[1] )\n      {\n        browser.language = language_match[1].toLowerCase();\n      }\n      if( language_match[3] )\n      {\n        browser.country = language_match[3].toUpperCase();\n      }\n      if( language_match[1] && language_match[3] )\n      {\n        browser.locale = browser.language + '_' + browser.country\n      }\n    }\n\n    $.ajax\n    (\n      {\n        url : config.solr_path + config.core_admin_path + '?wt=json&indexInfo=false',\n        dataType : 'json',\n        beforeSend : function( arr, form, options )\n        {               \n          $( '#content' )\n            .html( '<div id=\"index\"><div class=\"loader\">Loading ...</div></div>' );\n        },\n        success : function( response )\n        {\n          that.set_cores_data( response );\n\n          that.menu_element\n            .chosen()\n            .off( 'change' )\n            .on\n            (\n              'change',\n              function( event )\n              {\n                location.href = $( 'option:selected', this ).val();\n                return false;\n              }\n            )\n            .on\n            (\n              'liszt:updated',\n              function( event )\n              {\n                var core_name = $( 'option:selected', this ).text();\n\n                if( core_name )\n                {\n                  that.core_menu\n                    .html\n                    (\n                      '<li class=\"overview\"><a href=\"#/' + core_name + '\"><span>Overview</span></a></li>' + \"\\n\" +\n                      '<li class=\"ping\"><a rel=\"' + that.config.solr_path + '/' + core_name + '/admin/ping\"><span>Ping</span></a></li>' + \"\\n\" +\n                      '<li class=\"query\"><a href=\"#/' + core_name + '/query\"><span>Query</span></a></li>' + \"\\n\" +\n                      '<li class=\"schema\"><a href=\"#/' + core_name + '/schema\"><span>Schema</span></a></li>' + \"\\n\" +\n                      '<li class=\"config\"><a href=\"#/' + core_name + '/config\"><span>Config</span></a></li>' + \"\\n\" +\n                      '<li class=\"replication\"><a href=\"#/' + core_name + '/replication\"><span>Replication</span></a></li>' + \"\\n\" +\n                      '<li class=\"analysis\"><a href=\"#/' + core_name + '/analysis\"><span>Analysis</span></a></li>' + \"\\n\" +\n                      '<li class=\"schema-browser\"><a href=\"#/' + core_name + '/schema-browser\"><span>Schema Browser</span></a></li>' + \"\\n\" + \n                      '<li class=\"plugins\"><a href=\"#/' + core_name + '/plugins\"><span>Plugins / Stats</span></a></li>' + \"\\n\" +\n                      '<li class=\"dataimport\"><a href=\"#/' + core_name + '/dataimport\"><span>Dataimport</span></a></li>' + \"\\n\"\n                    )\n                    .show();\n                }\n                else\n                {\n                  that.core_menu\n                    .hide()\n                    .empty();\n                }\n              }\n            );\n\n          for( var core_name in response.status )\n          {\n            var core_path = config.solr_path + '/' + core_name;\n            if( !environment_basepath )\n            {\n              environment_basepath = core_path;\n            }\n          }\n\n          var system_url = environment_basepath + '/admin/system?wt=json';\n          $.ajax\n          (\n            {\n              url : system_url,\n              dataType : 'json',\n              beforeSend : function( arr, form, options )\n              {\n              },\n              success : function( response )\n              {\n                that.dashboard_values = response;\n\n                var environment_args = null;\n                var cloud_args = null;\n\n                if( response.jvm && response.jvm.jmx && response.jvm.jmx.commandLineArgs )\n                {\n                  var command_line_args = response.jvm.jmx.commandLineArgs.join( ' | ' );\n\n                  environment_args = command_line_args.match( /-Dsolr.environment=((dev|test|prod)?[\\w\\d]*)/i );\n                }\n\n                if( response.mode )\n                {\n                  cloud_args = response.mode.match( /solrcloud/i );\n                }\n                \n                // title\n\n                $( 'title', document )\n                  .append( ' (' + response.core.host + ')' );\n\n                // environment\n\n                var wrapper = $( '#wrapper' );\n                var environment_element = $( '#environment' );\n                if( environment_args )\n                {\n                  wrapper\n                    .addClass( 'has-environment' );\n\n                  if( environment_args[1] )\n                  {\n                    environment_element\n                      .html( environment_args[1] );\n                  }\n\n                  if( environment_args[2] )\n                  {\n                    environment_element\n                      .addClass( environment_args[2] );\n                  }\n                }\n                else\n                {\n                  wrapper\n                    .removeClass( 'has-environment' );\n                }\n\n                // cloud\n\n                var cloud_nav_element = $( '#menu #cloud' );\n                if( cloud_args )\n                {\n                  cloud_nav_element\n                    .show();\n                }\n\n                // sammy\n\n                sammy.run( location.hash );\n              },\n              error : function()\n              {\n                show_global_error\n                (\n                  '<div class=\"message\"><p>Unable to load environment info from <code>' + system_url.esc() + '</code>.</p>' +\n                  '<p>This interface requires that you activate the admin request handlers in all SolrCores by adding the ' +\n                  'following configuration to your <code>solrconfig.xml</code>:</p></div>' + \"\\n\" +\n\n                  '<div class=\"code\"><pre class=\"syntax language-xml\"><code>' +\n                  '<!-- Admin Handlers - This will register all the standard admin RequestHandlers. -->'.esc() + \"\\n\" +\n                  '<requestHandler name=\"/admin/\" class=\"solr.admin.AdminHandlers\" />'.esc() +\n                  '</code></pre></div>'\n                );\n              },\n              complete : function()\n              {\n                loader.hide( this );\n              }\n            }\n          );\n        },\n        error : function()\n        {\n        },\n        complete : function()\n        {\n        }\n      }\n    );\n  };\n\n  this.convert_duration_to_seconds = function convert_duration_to_seconds( str )\n  {\n    var seconds = 0;\n    var arr = new String( str || '' ).split( '.' );\n    var parts = arr[0].split( ':' ).reverse();\n    var parts_count = parts.length;\n\n    for( var i = 0; i < parts_count; i++ )\n    {\n      seconds += ( parseInt( parts[i], 10 ) || 0 ) * Math.pow( 60, i );\n    }\n\n    // treat more or equal than .5 as additional second\n    if( arr[1] && 5 <= parseInt( arr[1][0], 10 ) )\n    {\n      seconds++;\n    }\n\n    return seconds;\n  };\n\n  this.convert_seconds_to_readable_time = function convert_seconds_to_readable_time( seconds )\n  {\n    seconds = parseInt( seconds || 0, 10 );\n    var minutes = Math.floor( seconds / 60 );\n    var hours = Math.floor( minutes / 60 );\n\n    var text = [];\n    if( 0 !== hours )\n    {\n      text.push( hours + 'h' );\n      seconds -= hours * 60 * 60;\n      minutes -= hours * 60;\n    }\n\n    if( 0 !== minutes )\n    {\n      text.push( minutes + 'm' );\n      seconds -= minutes * 60;\n    }\n\n    if( 0 !== seconds )\n    {\n      text.push( ( '0' + seconds ).substr( -2 ) + 's' );\n    }\n\n    return text.join( ' ' );\n  };\n\n  this.clear_timeout = function clear_timeout()\n  {\n    if( !app.timeout )\n    {\n      return false;\n    }\n\n    console.debug( 'Clearing Timeout #' + this.timeout );\n    clearTimeout( this.timeout );\n    this.timeout = null;\n  };\n\n  this.format_json = function format_json( json_str )\n  {\n    if( JSON.stringify && JSON.parse )\n    {\n      json_str = JSON.stringify( JSON.parse( json_str ), undefined, 2 );\n    }\n\n    return json_str;\n  };\n\n  this.format_number = function format_number( number )\n  {\n    var sep = {\n      'de_CH' : '\\'',\n      'de' : '.',\n      'en' : ',',\n      'es' : '.',\n      'it' : '.',\n      'ja' : ',',\n      'sv' : ' ',\n      'tr' : '.',\n      '_' : '' // fallback\n    };\n\n    return ( number || 0 ).toString().replace\n    (\n      /\\B(?=(\\d{3})+(?!\\d))/g,\n      sep[ browser.locale ] || sep[ browser.language ] || sep['_']\n    );\n  };\n\n};\n\n$.ajaxSetup( { cache: false } );\nvar app = new solr_admin( app_config );\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/cloud.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar zk_error = function zk_error( xhr, text_status, error_thrown )\n{\n  var zk = null;\n  try\n  {\n    eval( 'zk = ' + xhr.responseText + ';' );\n  }\n  catch( e ) {}\n\n  var message = '<p class=\"txt\">Loading of \"<code>' + xhr.url + '</code>\" '\n              + 'failed (HTTP-Status <code>' + xhr.status + '</code>)</p>' + \"\\n\";\n\n  if( zk.error )\n  {\n    message += '<p class=\"msg\">\"' + zk.error.esc() + '\"</p>' + \"\\n\";\n  }\n  \n  this.closest( '#cloud' )\n    .html( '<div class=\"block\" id=\"error\">' + message + '</div>' );\n};\n\nvar init_debug = function( cloud_element )\n{\n  var debug_element = $( '#debug', cloud_element );\n  var debug_button = $( '#menu #cloud .dump a' );\n\n  var clipboard_element = $( '.clipboard', debug_element );\n  var clipboard_button = $( 'a', clipboard_element );\n\n  debug_button\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        debug_element.trigger( 'show' );\n        return false;\n      }\n    );\n\n  $( '.close', debug_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        debug_element.trigger( 'hide' );\n        return false;\n      }\n    );\n\n  $( '.clipboard', debug_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        return false;\n      }\n    );\n\n  debug_element\n    .die( 'show' )\n    .live\n    (\n      'show',\n      function( event )\n      {\n        debug_element.show();\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json&dump=true',\n            dataType : 'text',\n            context : debug_element,\n            beforeSend : function( xhr, settings )\n            {\n              $( '.debug', debug_element )\n                .html( '<span class=\"loader\">Loading Dump ...</span>' );\n\n              ZeroClipboard.setMoviePath( 'img/ZeroClipboard.swf' );\n\n              clipboard_client = new ZeroClipboard.Client();\n                              \n              clipboard_client.addEventListener\n              (\n                'load',\n                function( client )\n                {\n                }\n              );\n\n              clipboard_client.addEventListener\n              (\n                'complete',\n                function( client, text )\n                {\n                  clipboard_element\n                    .addClass( 'copied' );\n\n                  clipboard_button\n                    .data( 'text', clipboard_button.text() )\n                    .text( clipboard_button.data( 'copied' ) );\n                }\n              );\n            },\n            success : function( response, text_status, xhr )\n            {\n              clipboard_client.glue\n              (\n                clipboard_element.get(0),\n                clipboard_button.get(0)\n              );\n\n              clipboard_client.setText( response.replace( /\\\\/g, '\\\\\\\\' ) );\n\n              $( '.debug', debug_element )\n                .removeClass( 'loader' )\n                .text( response );\n            },\n            error : function( xhr, text_status, error_thrown )\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      }\n    )\n    .die( 'hide' )\n    .live\n    (\n      'hide',\n      function( event )\n      {\n        $( '.debug', debug_element )\n          .empty();\n\n        clipboard_element\n          .removeClass( 'copied' );\n\n        clipboard_button\n          .data( 'copied', clipboard_button.text() )\n          .text( clipboard_button.data( 'text' ) );\n\n        clipboard_client.destroy();\n\n        debug_element.hide();\n      }\n    );\n};\n\nvar helper_path_class = function( p )\n{\n  var classes = [ 'link' ];\n  classes.push( 'lvl-' + p.target.depth );\n\n  if( p.target.data && p.target.data.leader )\n  {\n    classes.push( 'leader' );\n  }\n\n  if( p.target.data && p.target.data.state )\n  {\n    classes.push( p.target.data.state );\n  }\n\n  return classes.join( ' ' );\n};\n\nvar helper_node_class = function( d )\n{\n  var classes = [ 'node' ];\n  classes.push( 'lvl-' + d.depth );\n\n  if( d.data && d.data.leader )\n  {\n    classes.push( 'leader' );\n  }\n\n  if( d.data && d.data.state )\n  {\n    classes.push( d.data.state );\n  }\n\n  return classes.join( ' ' );\n};\n\nvar helper_data = {\n  protocol: [],\n  host: [],\n  hostname: [],\n  port: [],\n  pathname: []\n};\n\nvar helper_node_text = function( d )\n{\n  if( !d.data || !d.data.uri )\n  {\n    return d.name;\n  }\n\n  var name = d.data.uri.hostname;\n\n  if( 1 !== helper_data.protocol.length )\n  {\n    name = d.data.uri.protocol + '//' + name;\n  }\n\n  if( 1 !== helper_data.port.length )\n  {\n    name += ':' + d.data.uri.port;\n  }\n\n  if( 1 !== helper_data.pathname.length )\n  {\n    name += d.data.uri.pathname;\n  }\n\n  return name;\n};\n\nvar generate_graph = function( graph_element, graph_data, leaf_count )\n{\n  var w = graph_element.width(),\n      h = leaf_count * 20;\n\n  var tree = d3.layout.tree()\n    .size([h, w - 400]);\n\n  var diagonal = d3.svg.diagonal()\n    .projection(function(d) { return [d.y, d.x]; });\n\n  var vis = d3.select( '#canvas' ).append( 'svg' )\n    .attr( 'width', w )\n    .attr( 'height', h)\n    .append( 'g' )\n      .attr( 'transform', 'translate(100, 0)' );\n\n  var nodes = tree.nodes( graph_data );\n\n  var link = vis.selectAll( 'path.link' )\n    .data( tree.links( nodes ) )\n    .enter().append( 'path' )\n      .attr( 'class', helper_path_class )\n      .attr( 'd', diagonal );\n\n  var node = vis.selectAll( 'g.node' )\n    .data( nodes )\n    .enter().append( 'g' )\n      .attr( 'class', helper_node_class )\n      .attr( 'transform', function(d) { return 'translate(' + d.y + ',' + d.x + ')'; } )\n\n  node.append( 'circle' )\n    .attr( 'r', 4.5 );\n\n  node.append( 'text' )\n    .attr( 'dx', function( d ) { return 0 === d.depth ? -8 : 8; } )\n    .attr( 'dy', function( d ) { return 5; } )\n    .attr( 'text-anchor', function( d ) { return 0 === d.depth ? 'end' : 'start'; } )\n    .attr( 'data-href', function( d ) { return d.name; } )\n    .text( helper_node_text );\n\n  $( 'text[data-href*=\"//\"]', graph_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function()\n      {\n        location.href = $( this ).data( 'href' );\n      }\n    );\n};\n\nvar generate_rgraph = function( graph_element, graph_data, leaf_count )\n{\n  var max_val = Math.min( graph_element.width(), $( 'body' ).height() )\n  var r = max_val / 2;\n\n  var cluster = d3.layout.cluster()\n    .size([360, r - 160]);\n\n  var diagonal = d3.svg.diagonal.radial()\n    .projection(function(d) { return [d.y, d.x / 180 * Math.PI]; });\n\n  var vis = d3.select( '#canvas' ).append( 'svg' )\n    .attr( 'width', r * 2 )\n    .attr( 'height', r * 2 )\n    .append( 'g' )\n      .attr( 'transform', 'translate(' + r + ',' + r + ')' );\n\n  var nodes = cluster.nodes( graph_data );\n\n  var link = vis.selectAll( 'path.link' )\n    .data( cluster.links( nodes ) )\n    .enter().append( 'path' )\n      .attr( 'class', helper_path_class )\n      .attr( 'd', diagonal );\n\n  var node = vis.selectAll( 'g.node' )\n    .data( nodes )\n    .enter().append( 'g' )\n      .attr( 'class', helper_node_class )\n      .attr( 'transform', function(d) { return 'rotate(' + (d.x - 90) + ')translate(' + d.y + ')'; } )\n\n  node.append( 'circle' )\n    .attr( 'r', 4.5 );\n\n  node.append( 'text' )\n    .attr( 'dx', function(d) { return d.x < 180 ? 8 : -8; } )\n    .attr( 'dy', '.31em' )\n    .attr( 'text-anchor', function(d) { return d.x < 180 ? 'start' : 'end'; } )\n    .attr( 'transform', function(d) { return d.x < 180 ? null : 'rotate(180)'; } )\n    .attr( 'data-href', function( d ) { return d.name; } )\n    .text( helper_node_text );\n\n  $( 'text[data-href*=\"//\"]', graph_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function()\n      {\n        location.href = $( this ).data( 'href' );\n      }\n    );\n};\n\nvar prepare_graph = function( graph_element, callback )\n{\n  $.ajax\n  (\n    {\n      url : app.config.solr_path + '/zookeeper?wt=json&path=%2Flive_nodes',\n      dataType : 'json',\n      success : function( response, text_status, xhr )\n      {\n        var live_nodes = {};\n        for( var c in response.tree[0].children )\n        {\n          live_nodes[response.tree[0].children[c].data.title] = true;\n        }\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json&detail=true&path=%2Fclusterstate.json',\n            dataType : 'json',\n            context : graph_element,\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .show();\n            },\n            success : function( response, text_status, xhr )\n            {\n              var state = null;\n              eval( 'state = ' + response.znode.data + ';' );\n              \n              var leaf_count = 0;\n              var graph_data = {\n                name: null,\n                children : []\n              };\n\n              for( var c in state )\n              {\n                var shards = [];\n                for( var s in state[c].shards )\n                {\n                  var nodes = [];\n                  for( var n in state[c].shards[s].replicas )\n                  {\n                    leaf_count++;\n                    var replica = state[c].shards[s].replicas[n]\n\n                    var uri = replica.base_url;\n                    var parts = uri.match( /^(\\w+:)\\/\\/(([\\w\\d\\.-]+)(:(\\d+))?)(.+)$/ );\n                    var uri_parts = {\n                      protocol: parts[1],\n                      host: parts[2],\n                      hostname: parts[3],\n                      port: parseInt( parts[5] || 80, 10 ),\n                      pathname: parts[6]\n                    };\n                    \n                    helper_data.protocol.push( uri_parts.protocol );\n                    helper_data.host.push( uri_parts.host );\n                    helper_data.hostname.push( uri_parts.hostname );\n                    helper_data.port.push( uri_parts.port );\n                    helper_data.pathname.push( uri_parts.pathname );\n\n                    var status = replica.state;\n\n                    if( !live_nodes[replica.node_name] )\n                    {\n                      status = 'gone';\n                    }\n\n                    var node = {\n                      name: uri,\n                      data: {\n                        type : 'node',\n                        state : status,\n                        leader : 'true' === replica.leader,\n                        uri : uri_parts\n                      }\n                    };\n                    nodes.push( node );\n                  }\n\n                  var shard = {\n                    name: s,\n                    data: {\n                      type : 'shard'\n                    },\n                    children: nodes\n                  };\n                  shards.push( shard );\n                }\n\n                var collection = {\n                  name: c,\n                  data: {\n                    type : 'collection'\n                  },\n                  children: shards\n                };\n                graph_data.children.push( collection );\n              }\n              \n              helper_data.protocol = $.unique( helper_data.protocol );\n              helper_data.host = $.unique( helper_data.host );\n              helper_data.hostname = $.unique( helper_data.hostname );\n              helper_data.port = $.unique( helper_data.port );\n              helper_data.pathname = $.unique( helper_data.pathname );\n\n              callback( graph_element, graph_data, leaf_count );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n\n};\n\nvar init_graph = function( graph_element )\n{\n  prepare_graph\n  (\n    graph_element,\n    function( graph_element, graph_data, leaf_count )\n    {\n      generate_graph( graph_element, graph_data, leaf_count );\n    }\n  );\n}\n\nvar init_rgraph = function( graph_element )\n{\n  prepare_graph\n  (\n    graph_element,\n    function( graph_element, graph_data, leaf_count )\n    {\n      generate_rgraph( graph_element, graph_data, leaf_count );\n    }\n  );\n}\n\nvar init_tree = function( tree_element )\n{\n  $.ajax\n  (\n    {\n      url : app.config.solr_path + '/zookeeper?wt=json',\n      dataType : 'json',\n      context : tree_element,\n      beforeSend : function( xhr, settings )\n      {\n        this\n          .show();\n      },\n      success : function( response, text_status, xhr )\n      {\n        var self = this;\n                      \n        $( '#tree', this )\n          .jstree\n          (\n            {\n              \"plugins\" : [ \"json_data\" ],\n              \"json_data\" : {\n                \"data\" : response.tree,\n                \"progressive_render\" : true\n              },\n              \"core\" : {\n                \"animation\" : 0\n              }\n            }\n          )\n          .jstree\n          (\n            'open_node',\n            'li:first'\n          );\n\n        var tree_links = $( '#tree a', this );\n\n        tree_links\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( 'a.active', $( this ).parents( '#tree' ) )\n                .removeClass( 'active' );\n                                  \n              $( this )\n                .addClass( 'active' );\n\n              tree_element\n                .addClass( 'show' );\n\n              var file_content = $( '#file-content' );\n\n              $( 'a.close', file_content )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    $( '#tree a.active' )\n                      .removeClass( 'active' );\n                                      \n                    tree_element\n                      .removeClass( 'show' );\n\n                    return false;\n                  }\n                );\n\n              $.ajax\n              (\n                {\n                  url : this.href,\n                  dataType : 'json',\n                  context : file_content,\n                  beforeSend : function( xhr, settings )\n                  {\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    var props = [];\n                    for( var key in response.znode.prop )\n                    {\n                      props.push\n                      (\n                        '<li><dl class=\"clearfix\">' + \"\\n\" +\n                          '<dt>' + key.esc() + '</dt>' + \"\\n\" +\n                          '<dd>' + response.znode.prop[key].esc() + '</dd>' + \"\\n\" +\n                        '</dl></li>'\n                      );\n                    }\n\n                    $( '#prop ul', this )\n                      .empty()\n                      .html( props.join( \"\\n\" ) );\n\n                    $( '#prop ul li:odd', this )\n                      .addClass( 'odd' );\n\n                    var data_element = $( '#data', this );\n\n                    var highlight = false;\n                    var data = '<em>File \"' + response.znode.path + '\" has no Content</em>';\n\n                    if( response.znode.data )\n                    {\n                      var classes = '';\n                      var path = response.znode.path.split( '.' );\n                      \n                      if( 1 < path.length )\n                      {\n                        highlight = true;\n                        classes = 'syntax language-' + path.pop().esc();\n                      }\n\n                      data = '<pre class=\"' + classes + '\">'\n                           + response.znode.data.esc()\n                           + '</pre>';\n                    }\n                               \n\n                    data_element\n                        .show()\n                        .html( data );\n\n                    if( highlight )\n                    {\n                      hljs.highlightBlock( data_element.get(0) );\n                    }\n                    \n                  },\n                  error : function( xhr, text_status, error_thrown)\n                  {\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                  }\n                }\n              );\n\n              return false;\n            }\n          );\n      },\n      error : zk_error,\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n};\n\n// #/~cloud\nsammy.get\n(\n  /^#\\/(~cloud)$/,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/cloud.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var cloud_element = $( '#cloud', content_element );\n        var navigation_element = $( '#menu #cloud' );\n\n        init_debug( cloud_element );\n\n        $( '.tree', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_tree( $( '#tree-content', cloud_element ) );\n            }\n          );\n\n        $( '.graph', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_graph( $( '#graph-content', cloud_element ) );\n            }\n          );\n\n        $( '.rgraph', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_rgraph( $( '#graph-content', cloud_element ) );\n            }\n          );\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json',\n            dataType : 'json',\n            context : cloud_element,\n            success : function( response, text_status, xhr )\n            {\n              $( 'a[href=\"' + context.path + '\"]', navigation_element )\n                .trigger( 'activate' );\n            },\n            error : zk_error\n          }\n        );\n        \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/cores.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nsammy.bind\n(\n  'cores_load_data',\n  function( event, params )\n  {\n    $.ajax\n    (\n      {\n        url : app.config.solr_path + app.config.core_admin_path + '?wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          app.set_cores_data( response );\n          params.callback( app.cores_data );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\nsammy.bind\n(\n  'cores_build_navigation',\n  function( event, params )\n  {\n    var navigation_content = ['<ul>'];\n\n    for( var core in params.cores )\n    {\n      var core_name = core;\n      if( !core_name )\n      {\n        core_name = '<em>(empty)</em>';\n      }\n      navigation_content.push( '<li><a href=\"' + params.basepath + core + '\">' + core_name + '</a></li>' );\n    }\n\n    params.navigation_element\n      .html( navigation_content.join( \"\\n\" ) );\n        \n    $( 'a[href=\"' + params.basepath + params.current_core + '\"]', params.navigation_element ).parent()\n      .addClass( 'current' );\n  }\n);\n\nsammy.bind\n(\n  'cores_load_template',\n  function( event, params )\n  {\n    if( app.cores_template )\n    {\n      params.callback();\n      return true;\n    }\n\n    $.get\n    (\n      'tpl/cores.html',\n      function( template )\n      {\n        params.content_element\n          .html( template );\n             \n        app.cores_template = template;   \n        params.callback();\n      }\n    );\n  }\n);\n\n// #/~cores\nsammy.get\n(\n  /^#\\/(~cores)$/,\n  function( context )\n  {\n    delete app.cores_template;\n\n    sammy.trigger\n    (\n      'cores_load_data',\n      {\n        callback :  function( cores )\n        {\n          var first_core = null;\n          for( var key in cores )\n          {\n            if( !first_core )\n            {\n              first_core = key;\n            }\n            continue;\n          }\n          context.redirect( context.path + '/' + first_core );\n        }\n      }\n    );\n  }\n);\n\n// #/~cores\nsammy.get\n(\n  /^#\\/(~cores)\\//,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    var path_parts = this.path.match( /^(.+\\/~cores\\/)(.*)$/ );\n    var current_core = path_parts[2];\n\n    sammy.trigger\n    (\n      'cores_load_data',\n      {\n        callback : function( cores )\n        {\n          sammy.trigger\n          (\n            'cores_load_template',\n            {\n              content_element : content_element,\n              callback : function()\n              {\n                var cores_element = $( '#cores', content_element );\n                var navigation_element = $( '#navigation', cores_element );\n                var data_element = $( '#data', cores_element );\n                var core_data_element = $( '#core-data', data_element );\n                var index_data_element = $( '#index-data', data_element );\n\n                sammy.trigger\n                (\n                  'cores_build_navigation',\n                  {\n                    cores : cores,\n                    basepath : path_parts[1],\n                    current_core : current_core,\n                    navigation_element : navigation_element\n                  }\n                );\n\n                var core_data = cores[current_core];\n                var core_basepath = $( '#' + current_core, app.menu_element ).attr( 'data-basepath' );\n\n                // core-data\n\n                $( '.startTime dd', core_data_element )\n                  .html( core_data.startTime );\n\n                $( '.instanceDir dd', core_data_element )\n                  .html( core_data.instanceDir );\n\n                $( '.dataDir dd', core_data_element )\n                  .html( core_data.dataDir );\n\n                // index-data\n\n                $( '.lastModified dd', index_data_element )\n                  .html( core_data.index.lastModified || '-' );\n\n                $( '.version dd', index_data_element )\n                  .html( core_data.index.version );\n\n                $( '.numDocs dd', index_data_element )\n                  .html( core_data.index.numDocs );\n\n                $( '.maxDoc dd', index_data_element )\n                  .html( core_data.index.maxDoc );\n                \n                $( '.deletedDocs dd', index_data_element )\n                  .html( core_data.index.deletedDocs || '-' );\n\n                $( '.optimized dd', index_data_element )\n                  .addClass( !core_data.index.hasDeletions ? 'ico-1' : 'ico-0' );\n\n                $( '#actions #optimize', cores_element )\n                  .show();\n\n                $( '.optimized dd span', index_data_element )\n                  .html( !core_data.index.hasDeletions ? 'yes' : 'no' );\n\n                $( '.current dd', index_data_element )\n                  .addClass( core_data.index.current ? 'ico-1' : 'ico-0' );\n\n                $( '.current dd span', index_data_element )\n                  .html( core_data.index.current ? 'yes' : 'no' );\n\n                $( '.directory dd', index_data_element )\n                  .html\n                  (\n                    core_data.index.directory\n                      .replace( /:/g, ':&#8203;' )\n                      .replace( /@/g, '@&#8203;' )\n                  );\n\n                var core_names = [];\n                var core_selects = $( '#actions select', cores_element );\n\n                for( var key in cores )\n                {\n                  core_names.push( '<option value=\"' + key + '\">' + key + '</option>' )\n                }\n\n                core_selects\n                  .html( core_names.join( \"\\n\") );\n\n                $( 'option[value=\"' + current_core + '\"]', core_selects.filter( '.other' ) )\n                  .remove();\n                \n                $( 'input[data-core=\"current\"]', cores_element )\n                  .val( current_core );\n\n                // layout\n\n                var ui_block = $( '#ui-block' );\n                var actions_element = $( '.actions', cores_element );\n                var div_action = $( 'div.action', actions_element );\n\n                ui_block\n                  .css( 'opacity', 0.7 )\n                  .width( cores_element.width() + 10 )\n                  .height( cores_element.height() );\n\n                if( $( '#cloud.global' ).is( ':visible' ) )\n                {\n                  $( '.cloud', div_action )\n                    .show();\n                }\n\n                $( 'button.action', actions_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      var self = $( this );\n\n                      self\n                        .toggleClass( 'open' );\n\n                      $( '.action.' + self.attr( 'id' ), actions_element )\n                        .trigger( 'open' );\n\n                      return false;\n                    }\n                  );\n\n                div_action\n                  .die( 'close' )\n                  .live\n                  (\n                    'close',\n                    function( event )\n                    {\n                      div_action.hide();\n                      ui_block.hide();\n                    }\n                  )\n                  .die( 'open' )\n                  .live\n                  (\n                    'open',\n                    function( event )\n                    {\n                      var self = $( this );\n                      var rel = $( '#' + self.data( 'rel' ) );\n\n                      self\n                        .trigger( 'close' )\n                        .show()\n                        .css( 'left', rel.position().left );\n                      \n                      ui_block\n                        .show();\n                    }\n                  );\n\n                $( 'form button.reset', actions_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $( this ).closest( 'div.action' )\n                        .trigger( 'close' );\n                    }\n                  );\n\n                var form_callback = {\n\n                  rename : function( form, response )\n                  {\n                    var url = path_parts[1] + $( 'input[name=\"other\"]', form ).val();\n                    context.redirect( url );\n                  }\n\n                };\n\n                $( 'form', div_action )\n                  .ajaxForm\n                  (\n                    {\n                      url : app.config.solr_path + app.config.core_admin_path + '?wt=json&indexInfo=false',\n                      dataType : 'json',\n                      beforeSubmit : function( array, form, options )\n                      {\n                        $( 'button[type=\"submit\"] span', form )\n                          .addClass( 'loader' );\n                      },\n                      success : function( response, status_text, xhr, form )\n                      {\n                        var action = $( 'input[name=\"action\"]', form ).val().toLowerCase();\n\n                        delete app.cores_data;\n\n                        if( form_callback[action] )\n                        {\n                         form_callback[action]( form, response ); \n                        }\n                        else\n                        {\n                          sammy.refresh();\n                        }\n\n                        $( 'button.reset', form )\n                          .trigger( 'click' );\n                      },\n                      error : function( xhr, text_status, error_thrown )\n                      {\n                        var response = null;\n                        eval( 'response = ' + xhr.responseText + ';' );\n\n                        var error_elem = $( '.error', div_action.filter( ':visible' ) );\n                        error_elem.show();\n                        $( 'span', error_elem ).text( response.error.msg );\n                      },\n                      complete : function()\n                      {\n                        $( 'button span.loader', actions_element )\n                          .removeClass( 'loader' );\n                      }\n                    }\n                  );\n\n                var reload_button = $( '#actions #reload', cores_element );\n                reload_button\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $.ajax\n                      (\n                        {\n                          url : app.config.solr_path + app.config.core_admin_path + '?wt=json&action=RELOAD&core=' + current_core,\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            this\n                              .addClass( 'success' );\n\n                            delete app.cores_data;\n                            sammy.refresh();\n\n                            window.setTimeout\n                            (\n                              function()\n                              {\n                                reload_button\n                                  .removeClass( 'success' );\n                              },\n                              1000\n                            );\n                          },\n                          error : function( xhr, text_status, error_thrown )\n                          {\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n                                \n                $( '#actions #unload', cores_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      var ret = confirm( 'Do you really want to unload Core \"' + current_core + '\"?' );\n                      if( !ret )\n                      {\n                        return false;\n                      }\n\n                      $.ajax\n                      (\n                        {\n                          url : app.config.solr_path + app.config.core_admin_path + '?wt=json&action=UNLOAD&core=' + current_core,\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            delete app.cores_data;\n                            context.redirect( path_parts[1].substr( 0, path_parts[1].length - 1 ) );\n                          },\n                          error : function( xhr, text_status, error_thrown )\n                          {\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n\n                var optimize_button = $( '#actions #optimize', cores_element );\n                optimize_button\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $.ajax\n                      (\n                        {\n                          url : core_basepath + '/update?optimize=true&waitFlush=true&wt=json',\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            this\n                              .addClass( 'success' );\n\n                            window.setTimeout\n                            (\n                              function()\n                              {\n                                optimize_button\n                                  .removeClass( 'success' );\n                              },\n                              1000\n                            );\n                                                        \n                            $( '.optimized dd.ico-0', index_data_element )\n                              .removeClass( 'ico-0' )\n                              .addClass( 'ico-1' );\n                          },\n                          error : function( xhr, text_status, error_thrown)\n                          {\n                            console.warn( 'd0h, optimize broken!' );\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n\n                $( '.timeago', data_element )\n                  .timeago();\n\n                $( 'ul', data_element )\n                  .each\n                  (\n                    function( i, element )\n                    {\n                      $( 'li:odd', element )\n                        .addClass( 'odd' );\n                    }\n                  )\n              }\n            }\n          );\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/dashboard.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar set_healthcheck_status = function( status )\n{\n  var hc_button = $( '.healthcheck-status' )\n  if ( status == 'enable' )\n  {\n    hc_button.parents( 'dd' )\n      .removeClass( 'ico-0' )\n      .addClass( 'ico-1' );\n    hc_button\n      .addClass( 'enabled' )\n      .html( 'disable ping' );\n  } else {\n    hc_button.parents( 'dd' )\n      .removeClass( 'ico-1')\n      .addClass( 'ico-0' );\n    hc_button\n      .removeClass( 'enabled' )\n      .html( 'enable ping' );\n  }\n};\n\n// #/:core\nsammy.get\n(\n  new RegExp( app.core_regex_base + '$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    content_element\n      .removeClass( 'single' );\n    \n    if( !app.core_menu.data( 'admin-extra-loaded' ) )\n    {\n      app.core_menu.data( 'admin-extra-loaded', new Date() );\n\n      $.get\n      (\n        core_basepath + '/admin/file/?file=admin-extra.menu-top.html&contentType=text/html;charset=utf-8',\n        function( menu_extra )\n        {\n          app.core_menu\n            .prepend( menu_extra );\n        }\n      );\n      \n      $.get\n      (\n        core_basepath + '/admin/file/?file=admin-extra.menu-bottom.html&contentType=text/html;charset=utf-8',\n        function( menu_extra )\n        {\n          app.core_menu\n            .append( menu_extra );\n        }\n      );\n    }\n        \n    $.get\n    (\n      'tpl/dashboard.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                    \n        var dashboard_element = $( '#dashboard' );\n                                     \n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/luke?wt=json&show=index&numTerms=0',\n            dataType : 'json',\n            context : $( '#statistics', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading ...' );\n                            \n              $( '.content' )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( '.content', this )\n                .show();\n                                \n              var data = {\n                'index_num-docs' : response['index']['numDocs'],\n                'index_max-doc' : response['index']['maxDoc'],\n                'index_deleted-docs' : response['index']['deletedDocs'],\n                'index_version' : response['index']['version'],\n                'index_segmentCount' : response['index']['segmentCount'],\n                'index_last-modified' : response['index']['lastModified']\n              };\n                            \n              for( var key in data )\n              {\n                $( '.' + key, this )\n                  .show();\n                                \n                $( '.value.' + key, this )\n                  .html( data[key] );\n              }\n\n              var optimized_element = $( '.value.index_optimized', this );\n              if( !response['index']['hasDeletions'] )\n              {\n                optimized_element\n                  .addClass( 'ico-1' );\n\n                $( 'span', optimized_element )\n                  .html( 'yes' );\n              }\n              else\n              {\n                optimized_element\n                  .addClass( 'ico-0' );\n\n                $( 'span', optimized_element )\n                  .html( 'no' );\n              }\n\n              var current_element = $( '.value.index_current', this );\n              if( response['index']['current'] )\n              {\n                current_element\n                  .addClass( 'ico-1' );\n\n                $( 'span', current_element )\n                  .html( 'yes' );\n              }\n              else\n              {\n                current_element\n                  .addClass( 'ico-0' );\n\n                $( 'span', current_element )\n                  .html( 'no' );\n              }\n\n              $( 'a', optimized_element )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {                        \n                    $.ajax\n                    (\n                      {\n                      url : core_basepath + '/update?optimize=true&waitFlush=true&wt=json',\n                      dataType : 'json',\n                      context : $( this ),\n                      beforeSend : function( xhr, settings )\n                      {\n                        this\n                          .addClass( 'loader' );\n                      },\n                      success : function( response, text_status, xhr )\n                      {\n                        this.parents( 'dd' )\n                          .removeClass( 'ico-0' )\n                          .addClass( 'ico-1' );\n                      },\n                      error : function( xhr, text_status, error_thrown)\n                      {\n                        console.warn( 'd0h, optimize broken!' );\n                      },\n                      complete : function( xhr, text_status )\n                      {\n                        this\n                          .removeClass( 'loader' );\n                      }\n                      }\n                    );\n                  }\n                );\n\n              $( '.timeago', this )\n                                 .timeago();\n            },\n            error : function( xhr, text_status, error_thrown )\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Luke is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n        $.ajax\n        (\n          {\n            url : core_basepath + '/replication?command=details&wt=json',\n            dataType : 'json',\n            context : $( '#replication', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n\n              $( '.content', this )\n                .show();\n                            \n              $( '.replication', context.active_core )\n                .show();\n                            \n              var data = response.details;\n              var is_slave = 'undefined' !== typeof( data.slave );\n              var headline = $( 'h2 span', this );\n              var details_element = $( '#details', this );\n              var current_type_element = $( ( is_slave ? '.slave' : '.masterSearch' ), this );\n              var master_data = is_slave ? data.slave.masterDetails : data;\n\n              if( is_slave )\n              {\n                this\n                  .addClass( 'slave' );\n                                \n                headline\n                  .html( headline.html() + ' (Slave)' );\n              }\n              else\n              {\n                this\n                  .addClass( 'master' );\n                                \n                headline\n                  .html( headline.html() + ' (Master)' );\n              }\n\n              // the currently searchable commit regardless of type\n              $( '.version div', current_type_element )\n                .html( data.indexVersion );\n              $( '.generation div', current_type_element )\n                .html( data.generation );\n              $( '.size div', current_type_element )\n                .html( data.indexSize );\n                            \n              // what's replicable on the master\n              var master_element = $( '.master', details_element );\n              $( '.version div', master_element )\n                .html( master_data.master.replicableVersion || '-' );\n              $( '.generation div', master_element )\n                .html( master_data.master.replicableGeneration || '-' );\n              $( '.size div', master_element )\n                .html( \"-\" );\n\n              if( is_slave )\n              {\n                var master_element = $( '.masterSearch', details_element );\n                $( '.version div', master_element )\n                  .html( data.slave.masterDetails.indexVersion );\n                $( '.generation div', master_element )\n                  .html( data.slave.masterDetails.generation );\n                $( '.size div', master_element )\n                  .html( data.slave.masterDetails.indexSize );\n                                \n                // warnings if slave version|gen doesn't match what's replicable\n                if( data.indexVersion !== master_data.master.replicableVersion )\n                {\n                  $( '.version', details_element )\n                    .addClass( 'diff' );\n                }\n                else\n                {\n                  $( '.version', details_element )\n                    .removeClass( 'diff' );\n                }\n                                \n                if( data.generation !== master_data.master.replicableGeneration )\n                {\n                  $( '.generation', details_element )\n                    .addClass( 'diff' );\n                }\n                else\n                {\n                  $( '.generation', details_element )\n                    .removeClass( 'diff' );\n                }\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Replication is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/dataimport?command=details&wt=json',\n            dataType : 'json',\n            context : $( '#dataimport', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n\n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( 'dl', this )\n                .show();\n                            \n              var data = {\n                'status' : response['status'],\n                'info' : response['statusMessages']['']\n              };\n                            \n              for( var key in data )\n              {\n                $( '.' + key, this )\n                  .show();\n                                \n                $( '.value.' + key, this )\n                  .html( data[key] );\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Dataimport is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/file/?file=admin-extra.html',\n            dataType : 'html',\n            context : $( '#admin-extra', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .hide()\n                .empty();\n\n              $( '.content', this )\n                .show()\n                .html( response );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'We found no \"admin-extra.html\" file.' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/ping?action=status&wt=json',\n            dataType : 'json',\n            context : $( '#healthcheck', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( '.content', this )\n                .show();\n\n              var status_element = $( '.value.status', this );\n              var toggle_button = $( '.healthcheck-status', this );\n              var status = response['status'];\n              $( 'span', status_element ).html( status );\n\n              var action = ( response['status'] == 'enabled' ) ? 'enable' : 'disable';  \n              set_healthcheck_status(action);\n\n              if( response['status'] == 'enabled' )\n              {\n                status_element\n                  .addClass( 'ico-1' );\n                toggle_button\n                  .addClass( 'enabled' );\n              }\n              else\n              {\n                status_element\n                  .addClass( 'ico-0' );\n              }\n              \n              $( '.healthcheck-status', status_element )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {                      \n                    var action = $(this).hasClass( 'enabled' ) ? 'disable' : 'enable';  \n                    $.ajax\n                    (\n                      {\n                        url : core_basepath + '/admin/ping?action=' + action + '&wt=json',\n                        dataType : 'json',\n                        context : $( this ),\n                        beforeSend : function( xhr, settings )\n                        {\n                          this\n                            .addClass( 'loader' );\n                        },\n                        success : function( response, text_status, xhr )\n                        {\n                          set_healthcheck_status(action);\n                        },\n                        error : function( xhr, text_status, error_thrown)\n                        {\n                          console.warn( 'd0h, enable broken!' );\n                        },\n                        complete : function( xhr, text_status )\n                        {\n                          this\n                            .removeClass( 'loader' );\n                        }\n                      }\n                    );\n                  }\n                );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Ping request handler is not configured with a healthcheck file.' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/dataimport.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar dataimport_timeout = 2000;\nvar cookie_dataimport_autorefresh = 'dataimport_autorefresh';\n\nsammy.bind\n(\n  'dataimport_queryhandler_load',\n  function( event, params )\n  {\n    var core_basepath = params.active_core.attr( 'data-basepath' );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/mbeans?cat=QUERYHANDLER&wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          var handlers = response['solr-mbeans'][1];\n          var dataimport_handlers = [];\n          for( var key in handlers )\n          {\n            if( handlers[key]['class'] !== key &&\n              handlers[key]['class'] === 'org.apache.solr.handler.dataimport.DataImportHandler' )\n            {\n              dataimport_handlers.push( key );\n            }\n          }\n          params.callback( dataimport_handlers );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\n// #/:core/dataimport\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(dataimport)$' ),\n  function( context )\n  {\n    sammy.trigger\n    (\n      'dataimport_queryhandler_load',\n      {\n        active_core : this.active_core,\n        callback :  function( dataimport_handlers )\n        {\n          if( 0 === dataimport_handlers.length )\n          {\n            $( '#content' )\n              .html( 'sorry, no dataimport-handler defined!' );\n\n            return false;\n          }\n\n          context.redirect( context.path + '/' + dataimport_handlers[0] );\n        }\n      }\n    );\n  }\n);\n\n// #/:core/dataimport\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(dataimport)\\\\/' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    var path_parts = this.path.match( /^(.+\\/dataimport\\/)(.*)$/ );\n    var handler_url = core_basepath + path_parts[2];\n        \n    $( 'li.dataimport', this.active_core )\n      .addClass( 'active' );\n\n    $.get\n    (\n      'tpl/dataimport.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var dataimport_element = $( '#dataimport', content_element );\n        var form_element = $( '#form', dataimport_element );\n        var config_element = $( '#config', dataimport_element );\n        var error_element = $( '#error', dataimport_element );\n        var debug_response_element = $( '#debug_response', dataimport_element );\n\n        var autorefresh_status = false;\n        var debug_mode = false;\n\n        // handler\n\n        sammy.trigger\n        (\n          'dataimport_queryhandler_load',\n          {\n            active_core : context.active_core,\n            callback :  function( dataimport_handlers )\n            {\n              var handlers_element = $( '#navigation ul', form_element );\n              var handlers = [];\n\n              for( var i = 0; i < dataimport_handlers.length; i++ )\n              {\n                handlers.push\n                (\n                    '<li><a href=\"' + path_parts[1] + dataimport_handlers[i] + '\">' +\n                    dataimport_handlers[i] +\n                    '</a></li>'\n                );\n              }\n\n              $( handlers_element )\n                .html( handlers.join( \"\\n\") ) ;\n                            \n              $( 'a[href=\"' + context.path + '\"]', handlers_element ).closest( 'li' )\n                .addClass( 'current' );\n\n              $( 'form', form_element )\n                .show();\n            }\n          }\n        );\n\n        // config\n\n        function dataimport_fetch_config()\n        {\n          $.ajax\n          (\n            {\n              url : handler_url + '?command=show-config&indent=true',\n              dataType : 'xml',\n              context : $( '#dataimport_config', config_element ),\n              beforeSend : function( xhr, settings )\n              {\n                error_element\n                  .empty()\n                  .hide();\n              },\n              success : function( config, text_status, xhr )\n              {\n                dataimport_element\n                  .removeClass( 'error' );\n\n                config_element\n                  .addClass( 'hidden' );\n\n                var entities = [ '<option value=\"\"></option>' ];\n\n                $( 'document > entity', config )\n                  .each\n                  (\n                    function( i, element )\n                    {\n                      entities.push( '<option>' + $( element ).attr( 'name' ).esc() + '</option>' );\n                    }\n                  );\n                                \n                $( '#entity', form_element )\n                  .html( entities.join( \"\\n\" ) );\n\n                $( '.editable textarea', this )\n                  .val( xhr.responseText.replace( /\\n+$/, '' ) );\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                if( 'parsererror' === error_thrown )\n                {\n                  dataimport_element\n                    .addClass( 'error' );\n                                    \n                  error_element\n                    .text( 'Dataimport XML-Configuration is not valid' )\n                    .show();\n\n                  config_element\n                    .removeClass( 'hidden' );\n                }\n              },\n              complete : function( xhr, text_status )\n              {\n                var code = $(\n                  '<pre class=\"syntax language-xml\"><code>' +\n                  xhr.responseText.esc() +\n                  '</code></pre>'\n                );\n                $( '.formatted', this ).html( code );\n\n                if( 'success' === text_status )\n                {\n                  hljs.highlightBlock( code.get(0) );\n                }\n              }\n            }\n          );\n        }\n        dataimport_fetch_config();\n\n        $( '.block .toggle', dataimport_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.block' )\n                .toggleClass( 'hidden' );\n                            \n              return false;\n            }\n          )\n\n        var reload_config_element = $( '.reload_config', config_element );\n        reload_config_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $.ajax\n              (\n                {\n                  url : handler_url + '?command=reload-config',\n                  dataType : 'xml',\n                  context: $( this ),\n                  beforeSend : function( xhr, settings )\n                  {\n                    this\n                      .removeClass( 'error' )\n                      .addClass( 'loader' );\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    this\n                      .addClass( 'success' );\n\n                    window.setTimeout\n                    (\n                      function()\n                      {\n                        reload_config_element\n                          .removeClass( 'success' );\n                      },\n                      5000\n                    );\n                  },\n                  error : function( xhr, text_status, error_thrown )\n                  {\n                    this\n                      .addClass( 'error' );\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                    this\n                      .removeClass( 'loader' );\n                                        \n                    dataimport_fetch_config();\n                  }\n                }\n              );\n              return false;\n            }\n          );\n\n        var debug_mode_element = $( '.debug_mode', config_element );\n        debug_mode_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var self = $( this );\n              var block = self.closest( '.block' )\n\n              var debug_checkbox = $( 'input[name=\"debug\"]', form_element );\n              var submit_span = $( 'button[type=\"submit\"] span', form_element );\n\n              debug_mode = !debug_mode;\n\n              block.toggleClass( 'debug_mode', debug_mode );\n\n              if( debug_mode )\n              {\n                block.removeClass( 'hidden' );\n\n                debug_checkbox\n                  .attr( 'checked', 'checked' )\n                  .trigger( 'change' );\n                  \n                submit_span\n                  .data( 'original', submit_span.text() )\n                  .text( submit_span.data( 'debugmode' ) );\n\n                $( 'textarea', block )\n                  .autogrow()\n              }\n              else\n              {\n                submit_span\n                  .text( submit_span.data( 'original' ) )\n                  .removeData( 'original' );\n              }\n            }\n          );\n\n        // abort\n\n        var abort_import_element = $( '.abort-import', dataimport_element );\n        abort_import_element\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              var span_element = $( 'span', this );\n\n              $.ajax\n              (\n                {\n                  url : handler_url + '?command=abort&wt=json',\n                  dataType : 'json',\n                  type: 'POST',\n                  context: $( this ),\n                  beforeSend : function( xhr, settings )\n                  {\n                    span_element\n                      .addClass( 'loader' );\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    span_element\n                      .data( 'original', span_element.text() )\n                      .text( span_element.data( 'aborting' ) );\n\n                    this\n                      .removeClass( 'warn' )\n                      .addClass( 'success' );\n\n                    window.setTimeout\n                    (\n                      function()\n                      {\n                        $( 'span', abort_import_element )\n                          .removeClass( 'loader' )\n                          .text( span_element.data( 'original' ) )\n                          .removeData( 'original' );\n\n                        abort_import_element\n                          .removeClass( 'success' )\n                          .addClass( 'warn' );\n                      },\n                      dataimport_timeout * 2\n                    );\n\n                    dataimport_fetch_status();\n                  }\n                }\n              );\n              return false;\n            }\n          );\n\n        // state\n\n        var status_button = $( 'form button.refresh-status', form_element );\n\n        status_button\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              dataimport_fetch_status();\n              return false;\n            }\n          )\n          .trigger( 'click' );\n                \n        function dataimport_fetch_status( clear_timeout )\n        {\n          if( clear_timeout )\n          {\n            app.clear_timeout();\n          }\n\n          $.ajax\n          (\n            {\n              url : handler_url + '?command=status&indent=true&wt=json',\n              dataType : 'json',\n              beforeSend : function( xhr, settings )\n              {\n                $( 'span', status_button )\n                  .addClass( 'loader' );\n              },\n              success : function( response, text_status, xhr )\n              {\n                var state_element = $( '#current_state', content_element );\n\n                var status = response.status;\n                var rollback_time = response.statusMessages.Rolledback || null;\n                var abort_time = response.statusMessages.Aborted || null;\n                \n                var messages = response.statusMessages;\n                var messages_count = 0;\n                for( var key in messages ) { messages_count++; }\n\n                function dataimport_compute_details( response, details_element, elapsed_seconds )\n                {\n                  details_element\n                    .show();\n\n                  // --\n\n                  var document_config = {\n                    'Requests' : 'Total Requests made to DataSource',\n                    'Fetched' : 'Total Rows Fetched',\n                    'Skipped' : 'Total Documents Skipped',\n                    'Processed' : 'Total Documents Processed'\n                  };\n\n                  var document_details = [];\n                  for( var key in document_config )\n                  {\n                    var value = parseInt( response.statusMessages[document_config[key]], 10 );\n\n                    var detail = '<abbr title=\"' + document_config[key].esc() + '\">' + key.esc() + '</abbr>: ' +  app.format_number( value ).esc();\n                    if( elapsed_seconds && 'skipped' !== key.toLowerCase() )\n                    {\n                      detail += ' <span>(' + app.format_number( Math.round( value / elapsed_seconds ) ).esc() + '/s)</span>'\n                    }\n\n                    document_details.push( detail );\n                  };\n\n                  $( '.docs', details_element )\n                    .html( document_details.join( ', ' ) );\n\n                  // --\n\n                  var dates_config = {\n                      'Started' : 'Full Dump Started',\n                      'Aborted' : 'Aborted',\n                      'Rolledback' : 'Rolledback'\n                  };\n\n                  var dates_details = [];\n                  for( var key in dates_config )\n                  {\n                    var value = response.statusMessages[dates_config[key]];\n\n                    if( value )\n                    {\n                      var detail = '<abbr title=\"' + dates_config[key].esc() + '\">' + key.esc() + '</abbr>: '\n                                 + '<abbr class=\"time\">' +  value.esc() + '</abbr>';\n                      dates_details.push( detail );                      \n                    }\n                  };\n\n                  var dates_element = $( '.dates', details_element );\n\n                  dates_element\n                    .html( dates_details.join( ', ' ) );\n\n                  $( '.time', dates_element )\n                    .removeData( 'timeago' )\n                    .timeago();\n                };\n\n                var get_time_taken = function get_default_time_taken()\n                {\n                  var time_taken_text = response.statusMessages['Time taken'];\n                  return app.convert_duration_to_seconds( time_taken_text );\n                };\n\n                var get_default_info_text = function default_info_text()\n                {\n                  var info_text = response.statusMessages[''] || '';\n\n                  // format numbers included in status nicely\n                  info_text = info_text.replace\n                  (\n                    /\\d{4,}/g,\n                    function( match, position, string )\n                    {\n                      return app.format_number( parseInt( match, 10 ) );\n                    }\n                  );\n\n                  var time_taken_text = app.convert_seconds_to_readable_time( get_time_taken() );\n                  if( time_taken_text )\n                  {\n                    info_text += ' (Duration: ' + time_taken_text.esc() + ')';\n                  }\n\n                  return info_text;\n                };\n\n                var show_info = function show_info( info_text, elapsed_seconds )\n                {\n                  $( '.info strong', state_element )\n                    .text( info_text || get_default_info_text() );\n\n                  $( '.info .details', state_element )\n                    .hide();\n                };\n\n                var show_full_info = function show_full_info( info_text, elapsed_seconds )\n                {\n                  show_info( info_text, elapsed_seconds );\n\n                  dataimport_compute_details\n                  (\n                    response,\n                    $( '.info .details', state_element ),\n                    elapsed_seconds || get_time_taken()\n                  );\n                };\n\n                state_element\n                  .removeAttr( 'class' );\n\n                var current_time = new Date();\n                $( '.last_update abbr', state_element )\n                  .text( current_time.toTimeString().split( ' ' ).shift() )\n                  .attr( 'title', current_time.toUTCString() );\n\n                $( '.info', state_element )\n                  .removeClass( 'loader' );\n\n                if( 'busy' === status )\n                {\n                  state_element\n                    .addClass( 'indexing' );\n\n                  if( autorefresh_status )\n                  {\n                    $( '.info', state_element )\n                      .addClass( 'loader' );\n                  }\n\n                  var time_elapsed_text = response.statusMessages['Time Elapsed'];\n                  var elapsed_seconds = app.convert_duration_to_seconds( time_elapsed_text );\n                  time_elapsed_text = app.convert_seconds_to_readable_time( elapsed_seconds );\n\n                  var info_text = time_elapsed_text\n                                ? 'Indexing since ' + time_elapsed_text\n                                : 'Indexing ...';\n\n                  show_full_info( info_text, elapsed_seconds );\n                }\n                else if( rollback_time )\n                {\n                  state_element\n                    .addClass( 'failure' );\n\n                  show_full_info();\n                }\n                else if( abort_time )\n                {\n                  state_element\n                    .addClass( 'aborted' );\n\n                  show_full_info( 'Aborting current Import ...' );\n                }\n                else if( 'idle' === status && 0 !== messages_count )\n                {\n                  state_element\n                    .addClass( 'success' );\n\n                  show_full_info();\n                }\n                else \n                {\n                  state_element\n                    .addClass( 'idle' );\n\n                  show_info( 'No information available (idle)' );\n                }\n\n                // show raw status\n\n                var code = $(\n                  '<pre class=\"syntax language-json\"><code>' +\n                  app.format_json( xhr.responseText ).esc() +\n                  '</code></pre>'\n                );\n\n                $( '#raw_output_container', content_element ).html( code );\n                hljs.highlightBlock( code.get(0) );\n\n                if( !app.timeout && autorefresh_status )\n                {\n                  app.timeout = window.setTimeout\n                  (\n                    function()\n                    {\n                      dataimport_fetch_status( true )\n                    },\n                    dataimport_timeout\n                  );\n                }\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                console.debug( arguments );\n\n                reload_config_element\n                  .addClass( 'error' );\n              },\n              complete : function( xhr, text_status )\n              {\n                $( 'span', status_button )\n                  .removeClass( 'loader' )\n                  .addClass( 'success' );\n\n                window.setTimeout\n                (\n                  function()\n                  {\n                    $( 'span', status_button )\n                      .removeClass( 'success' );\n                  },\n                  dataimport_timeout / 2\n                );\n              }\n            }\n          );\n        }\n\n        // form\n\n        var form = $( 'form', form_element );\n\n        form\n          .ajaxForm\n          (\n            {\n              url : handler_url,\n              data : {\n                wt : 'json',\n                indent : 'true'\n              },\n              dataType : 'json',\n              type: 'POST',\n              beforeSend : function( xhr, settings )\n              {\n                $( 'button[type=\"submit\"] span', form_element )\n                  .addClass( 'loader' );\n\n                error_element\n                  .empty()\n                  .hide();\n              },\n              beforeSubmit : function( array, form, options )\n              {\n                var entity = $( '#entity', form ).val();\n                if( entity.length )\n                {\n                  array.push( { name : 'entity', value: entity } );\n                }\n\n                var start = parseInt( $( '#start', form ).val(), 10 );\n                if( start )\n                {\n                  array.push( { name : 'start', value: start } );\n                }\n\n                var rows = parseInt( $( '#rows', form ).val(), 10 );\n                if( rows )\n                {\n                  array.push( { name : 'rows', value: rows } );\n                }\n\n                $( 'input:checkbox', form ).not( ':checked' )\n                  .each( function( i, input )\n                  {\n                    array.push( { name: input.name, value: 'false' } );\n                  }\n                );\n\n                var custom_parameters = $( '#custom_parameters', form ).val();\n                if( custom_parameters.length )\n                {\n                  var params = custom_parameters.split( '&' );\n                  for( var i in params )\n                  {\n                    var tmp = params[i].split( '=' );\n                    array.push( { name : tmp[0], value: tmp[1] } );\n                  }\n                }\n\n                if( debug_mode )\n                {\n                  array.push( { name: 'dataConfig', value: $( '#dataimport_config .editable textarea' ).val() } );\n                }\n              },\n              success : function( response, text_status, xhr )\n              {\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                var response = null;\n                try\n                {\n                  eval( 'response = ' + xhr.responseText + ';' );\n                }\n                catch( e ){}\n\n                error_element\n                  .text( response.error.msg || 'Unknown Error (Exception w/o Message)' )\n                  .show();\n              },\n              complete : function( xhr, text_status )\n              {\n                $( 'button[type=\"submit\"] span', form_element )\n                  .removeClass( 'loader' );\n\n                var debug = $( 'input[name=\"debug\"]:checked', form );\n                if( 0 !== debug.size() )\n                {\n                  var code = $(\n                    '<pre class=\"syntax language-json\"><code>' +\n                    app.format_json( xhr.responseText ).esc() +\n                    '</code></pre>'\n                  );\n\n                  $( '.content', debug_response_element ).html( code );\n                  hljs.highlightBlock( code.get(0) );\n                }\n\n                dataimport_fetch_status();\n              }\n            }\n          );\n\n        $( 'input[name=\"debug\"]', form )\n          .off( 'change' )\n          .on\n          (\n            'change',\n            function( event )\n            {\n              debug_response_element.toggle( this.checked );\n            }\n          );\n\n        $( '#auto-refresh-status a', form_element )\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              $.cookie( cookie_dataimport_autorefresh, $.cookie( cookie_dataimport_autorefresh ) ? null : true );\n              $( this ).trigger( 'state' );\n\n              dataimport_fetch_status();\n\n              return false;\n            }\n          )\n          .off( 'state' )\n          .on\n          (\n            'state',\n            function( event )\n            {\n              autorefresh_status = !!$.cookie( cookie_dataimport_autorefresh );\n\n              $.cookie( cookie_dataimport_autorefresh )\n                ? $( this ).addClass( 'on' )\n                : $( this ).removeClass( 'on' );\n            }\n          )\n          .trigger( 'state' );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/file.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/schema, #/:core/config\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(schema|config)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n\tvar filetype = context.params.splat[1]; // either schema or config\t\n\tvar filename = this.active_core.attr( filetype );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + \"/admin/file?file=\" + filename + \"&contentType=text/xml;charset=utf-8\",\n        dataType : 'xml',\n        context : $( '#content' ),\n        beforeSend : function( xhr, settings )\n        {\n          this\n          .html( '<div class=\"loader\">Loading ...</div>' );\n        },\n        complete : function( xhr, text_status )\n        {\n          var code = $(\n            '<pre class=\"syntax language-xml\"><code>' +\n            xhr.responseText.esc() +\n            '</code></pre>'\n          );\n          this.html( code );\n\n          if( 'success' === text_status )\n          {\n            hljs.highlightBlock( code.get(0) );\n          }\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/index.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar parse_memory_value = function( value )\n{\n  if( value !== Number( value ) )\n  {\n    var units = 'BKMGTPEZY';\n    var match = value.match( /^(\\d+([,\\.]\\d+)?) (\\w)\\w?$/ );\n    var value = parseFloat( match[1] ) * Math.pow( 1024, units.indexOf( match[3].toUpperCase() ) );\n  }\n    \n  return value;\n};\n\nvar generate_bar = function( bar_container, bar_data, convert_label_values )\n{\n  bar_holder = $( '.bar-holder', bar_container );\n\n  var bar_level = 1;\n  var max_width = Math.round( $( '.bar-max', bar_holder ).width() );\n  $( '.bar-max.val', bar_holder ).text( bar_data['max'] );\n    \n  bar_level++;\n  $( '.bar-total.bar', bar_holder ).width( new String( (bar_data['total']/bar_data['max'])*100 ) + '%' );\n  $( '.bar-total.val', bar_holder ).text( bar_data['total'] );\n\n  if( bar_data['used'] )\n  {\n    bar_level++;\n    $( '.bar-used.bar', bar_holder ).width( new String( (bar_data['used']/bar_data['total'])*100 ) + '%' );\n    $( '.bar-used.val', bar_holder ).text( bar_data['used'] );\n  }\n\n  bar_holder\n    .addClass( 'bar-lvl-' + bar_level );\n\n  var percentage = ( ( ( bar_data['used'] || bar_data['total'] ) / bar_data['max'] ) * 100 ).toFixed(1);\n        \n  var hl = $( '[data-desc=\"' + bar_container.attr( 'id' ) + '\"]' );\n\n  $( '.bar-desc', hl )\n    .remove();\n\n  hl\n    .append( ' <small class=\"bar-desc\">' + percentage + '%</small>' );\n\n  if( !!convert_label_values )\n  {\n    $( '.val', bar_holder )\n      .each\n      (\n        function()\n        {\n          var self = $( this );\n\n          var unit = null;\n          var byte_value = parseInt( self.html() );\n\n          self\n            .attr( 'title', 'raw: ' + byte_value + ' B' );\n\n          byte_value /= 1024;\n          byte_value /= 1024;\n          unit = 'MB';\n\n          if( 1024 <= byte_value )\n          {\n            byte_value /= 1024;\n            unit = 'GB';\n          }\n\n          byte_value = byte_value.toFixed( 2 ) + ' ' + unit;\n\n          self\n            .text( byte_value );\n        }\n      );\n  }\n};\n\nvar system_info = function( element, system_data )\n{\n  // -- usage\n\n  var load_average = ( system_data['system']['uptime'] || '' ).match( /load averages?: (\\d+[.,]\\d\\d),? (\\d+[.,]\\d\\d),? (\\d+[.,]\\d\\d)/ );\n  if( load_average )\n  {\n    var hl = $( '#system h2', element );\n\n    $( '.bar-desc', hl )\n      .remove();\n\n    hl\n      .append( ' <small class=\"bar-desc\">' + load_average.slice( 1 ).join( '  ' ).replace( /,/g, '.' ).esc() + '</small>' );\n  }\n\n  // -- physical-memory-bar\n    \n  var bar_holder = $( '#physical-memory-bar', element );\n  if( system_data['system']['totalPhysicalMemorySize'] === undefined || system_data['system']['freePhysicalMemorySize'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['totalPhysicalMemorySize'] ),\n      'total' : parse_memory_value( system_data['system']['totalPhysicalMemorySize'] - system_data['system']['freePhysicalMemorySize'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n  // -- swap-space-bar\n    \n  var bar_holder = $( '#swap-space-bar', element );\n  if( system_data['system']['totalSwapSpaceSize'] === undefined || system_data['system']['freeSwapSpaceSize'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['totalSwapSpaceSize'] ),\n      'total' : parse_memory_value( system_data['system']['totalSwapSpaceSize'] - system_data['system']['freeSwapSpaceSize'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n  // -- file-descriptor-bar\n    \n  var bar_holder = $( '#file-descriptor-bar', element );\n  if( system_data['system']['maxFileDescriptorCount'] === undefined || system_data['system']['openFileDescriptorCount'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['maxFileDescriptorCount'] ),\n      'total' : parse_memory_value( system_data['system']['openFileDescriptorCount'] )\n    };\n\n    generate_bar( bar_holder, bar_data );\n  }\n\n  0 === $( '#system div[id$=\"-bar\"]:visible', element ).size()\n    ? $( '#system .no-info', element ).show()\n    : $( '#system .no-info', element ).hide();\n\n  // -- memory-bar\n\n  var bar_holder = $( '#jvm-memory-bar', element );\n  if( system_data['jvm']['memory'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var jvm_memory = $.extend\n    (\n      {\n        'free' : null,\n        'total' : null,\n        'max' : null,\n        'used' : null,\n        'raw' : {\n          'free' : null,\n          'total' : null,\n          'max' : null,\n          'used' : null,\n          'used%' : null\n        }\n      },\n      system_data['jvm']['memory']\n    );\n\n    var bar_data = {\n      'max' : parse_memory_value( jvm_memory['raw']['max'] || jvm_memory['max'] ),\n      'total' : parse_memory_value( jvm_memory['raw']['total'] || jvm_memory['total'] ),\n      'used' : parse_memory_value( jvm_memory['raw']['used'] || jvm_memory['used'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n}\n\n// #/\nsammy.get\n(\n  /^#\\/$/,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    content_element\n      .html( '<div id=\"index\"></div>' );\n\n    $.ajax\n    (\n      {\n        url : 'tpl/index.html',\n        context : $( '#index', content_element ),\n        beforeSend : function( arr, form, options )\n        {\n        },\n        success : function( template )\n        {\n          var self = this;\n\n          this\n            .html( template );\n    \n          var data = {\n            'start_time' : app.dashboard_values['jvm']['jmx']['startTime'],\n            'host' : app.dashboard_values['core']['host'] || '-',\n            'dir_instance' : app.dashboard_values['core']['directory']['instance'],\n            'dir_data' : app.dashboard_values['core']['directory']['data'],\n            'dir_index' : app.dashboard_values['core']['directory']['index'],\n            'jvm_version' : app.dashboard_values['jvm']['name'] + ' (' + app.dashboard_values['jvm']['version'] + ')',\n            'processors' : app.dashboard_values['jvm']['processors'],\n            'solr_spec_version' : app.dashboard_values['lucene']['solr-spec-version'] || '-',\n            'solr_impl_version' : app.dashboard_values['lucene']['solr-impl-version'] || '-',\n            'lucene_spec_version' : app.dashboard_values['lucene']['lucene-spec-version'] || '-',\n            'lucene_impl_version' : app.dashboard_values['lucene']['lucene-impl-version'] || '-'\n          };\n\n          if( app.dashboard_values['core']['directory']['cwd'] )\n          {\n            data['dir_cwd'] = app.dashboard_values['core']['directory']['cwd'];\n          }\n    \n          for( var key in data )\n          {                                                        \n            var value_element = $( '.' + key + ' dd', this );\n\n            value_element\n              .text( data[key].esc() );\n                        \n            value_element.closest( 'li' )\n              .show();\n          }\n\n          var commandLineArgs = app.dashboard_values['jvm']['jmx']['commandLineArgs'];\n          if( 0 !== commandLineArgs.length )\n          {\n            var cmd_arg_element = $( '.command_line_args dt', this );\n            var cmd_arg_key_element = $( '.command_line_args dt', this );\n            var cmd_arg_element = $( '.command_line_args dd', this );\n\n            for( var key in commandLineArgs )\n            {\n              cmd_arg_element = cmd_arg_element.clone();\n              cmd_arg_element.text( commandLineArgs[key] );\n\n              cmd_arg_key_element\n                .after( cmd_arg_element );\n            }\n\n            cmd_arg_key_element.closest( 'li' )\n              .show();\n\n            $( '.command_line_args dd:last', this )\n              .remove();\n\n            $( '.command_line_args dd:odd', this )\n              .addClass( 'odd' );\n          }\n\n          $( '.timeago', this )\n            .timeago();\n\n          $( '.index-left .block li:visible:odd', this )\n            .addClass( 'odd' );\n                    \n          // -- system_info\n\n          system_info( this, app.dashboard_values );\n\n          $( '#system a.reload', this )\n            .die( 'click' )\n            .live\n            (\n              'click',\n              function( event )\n              {\n                $.ajax\n                (\n                  {\n                    url : environment_basepath + '/admin/system?wt=json',\n                    dataType : 'json',\n                    context : this,\n                    beforeSend : function( arr, form, options )\n                    {\n                      loader.show( this );\n                    },\n                    success : function( response )\n                    {\n                      system_info( self, response );\n                    },\n                    error : function()\n                    {\n                    },\n                    complete : function()\n                    {\n                      loader.hide( this );\n                    }\n                  }\n                );\n\n                return false;\n              }\n            );\n        },\n        error : function( xhr, text_status, error_thrown )\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/java-properties.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/~java-properties\nsammy.get\n(\n  /^#\\/(~java-properties)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    content_element\n      .html( '<div id=\"java-properties\"></div>' );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/properties?wt=json',\n        dataType : 'json',\n        context : $( '#java-properties', content_element ),\n        beforeSend : function( xhr, settings )\n        {\n          this\n            .html( '<div class=\"loader\">Loading ...</div>' );\n        },\n        success : function( response, text_status, xhr )\n        {\n          var system_properties = response['system.properties'];\n          var properties_data = {};\n          var properties_content = [];\n          var properties_order = [];\n\n          var workaround = xhr.responseText.match( /\"(line\\.separator)\"\\s*:\\s*\"(.+?)\"/ );\n          if( workaround && workaround[2] )\n          {\n            system_properties[workaround[1]] = workaround[2];\n          }\n\n          for( var key in system_properties )\n          {\n            var displayed_key = key.replace( /\\./g, '.&#8203;' );\n            var displayed_value = [ system_properties[key] ];\n            var item_class = 'clearfix';\n\n            if( -1 !== key.indexOf( '.path' ) || -1 !== key.indexOf( '.dirs' ) )\n            {\n              displayed_value = system_properties[key].split( system_properties['path.separator'] );\n              if( 1 < displayed_value.length )\n              {\n                item_class += ' multi';\n              }\n            }\n\n            var item_content = '<li><dl class=\"' + item_class + '\">' + \"\\n\"\n                             + '<dt>' + displayed_key.esc() + '</dt>' + \"\\n\";\n\n            for( var i in displayed_value )\n            {\n              item_content += '<dd>' + displayed_value[i].esc() + '</dd>' + \"\\n\";\n            }\n\n            item_content += '</dl></li>';\n\n            properties_data[key] = item_content;\n            properties_order.push( key );\n          }\n\n          properties_order.sort();\n          for( var i in properties_order )\n          {\n            properties_content.push( properties_data[properties_order[i]] );\n          }\n\n          this\n            .html( '<ul>' + properties_content.join( \"\\n\" ) + '</ul>' );\n                    \n          $( 'li:odd', this )\n            .addClass( 'odd' );\n                    \n          $( '.multi dd:odd', this )\n            .addClass( 'odd' );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/logging.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar loglevel_path = null;\nvar frame_element = null;\n\nvar logging_handler = function( response, text_status, xhr )\n{\n  var self = this;\n  var loggers = response.loggers;\n\n  var levels = '<div class=\"selector-holder\"><div class=\"selector\">' + \"\\n\"\n             + '<a class=\"trigger\"><span><em>null</em></span></a>' + \"\\n\"\n             + '<ul>' + \"\\n\";\n\n  for( var key in response.levels )\n  {\n    var level = response.levels[key].esc();\n    levels += '<li><a href=\"#\" data-level=\"' + level + '\">' + level + '</a></li>' + \"\\n\";\n  }\n\n  levels += '<li class=\"unset\"><a href=\"#\" data-level=\"unset\">UNSET</a></li>' + \"\\n\"\n         + '</ul>' + \"\\n\"\n         + '<a class=\"close\"><span>[x]</span></a>' + \"\\n\"\n         + '</div></div>';\n\n  var logger_tree = function( filter )\n  {\n    var logger_content = '';\n    var filter_regex = new RegExp( '^' + filter + '\\\\.\\\\w+$' );\n\n    for( var i in loggers )\n    {\n      var logger = loggers[i];\n      var continue_matcher = false;\n\n      if( !filter )\n      {\n        continue_matcher = logger.name.indexOf( '.' ) !== -1;\n      }\n      else\n      {\n        continue_matcher = !logger.name.match( filter_regex );\n      }\n\n      if( continue_matcher )\n      {\n        continue;\n      }\n\n      var logger_class = '';\n\n      if( logger.set )\n      {\n        logger_class = 'set';\n      }\n            \n      if( !logger.level )\n      {\n        logger_class = 'null';\n      }\n\n      var logger_name = logger.name.split( '.' );\n      var display_name = logger_name.pop();\n\n      var leaf_class = 'jstree-leaf';\n      if( logger.level )\n      {\n        leaf_class += ' level-' + logger.level.esc().toLowerCase();\n      }\n\n      logger_content += '<li class=\"' + leaf_class + '\" data-logger=\"' + logger.name.esc() + '\">';\n      logger_content += '<ins class=\"trigger jstree-icon\">&nbsp;</ins>' + \"\\n\";\n      logger_content += '<a href=\"#\" class=\"trigger '+ logger_class + '\"' ;\n\n      if( logger.level )\n      {\n        logger_content += 'rel=\"' + logger.level.esc() + '\" ';\n      }\n            \n      logger_content += 'title=\"' + logger.name.esc() + '\">' + \"\\n\";\n\n      if( 0 !== logger_name.length )\n      {\n        logger_content += '<span class=\"ns\">' + logger_name.join( '.' ).esc() + '.</span>';\n      }\n\n      logger_content += '<span class=\"name\">' + display_name.esc() + '</span>' + \"\\n\";\n      logger_content += '</a>';\n\n      logger_content += levels;\n\n      var child_logger_content = logger_tree( logger.name );\n      if( child_logger_content )\n      {\n        logger_content += '<ul>';\n        logger_content += child_logger_content;\n        logger_content += '</ul>';\n      }\n\n      logger_content += '</li>';\n    }\n\n    return logger_content;\n  };\n\n  var logger_content = '<div class=\"block\">' + \"\\n\"\n                     + '<h2><span>' + response.watcher.esc() + '</span></h2>' + \"\\n\"\n                     + '<ul class=\"tree jstree\">' + logger_tree( null ) + '</ul>' + \"\\n\"\n                     + '</div>';\n\n  self\n    .html( logger_content );\n\n  self\n    .die( 'clear' )\n    .live\n    (\n      'clear',\n      function( event )\n      {\n        $( '.open', this )\n          .removeClass( 'open' );\n      }\n    );\n\n  $( 'li:last-child', this )\n    .addClass( 'jstree-last' );\n\n  $( 'li.jstree-leaf > a', this )\n    .each\n    (\n      function( index, element )\n      {\n        element = $( element );\n        var level = element.attr( 'rel' );\n\n        if( level )\n        {\n          var selector = $( '.selector-holder', element.closest( 'li' ) );\n\n          var trigger = $( 'a.trigger', selector );\n\n          trigger\n            .text( level.esc() );\n\n          if( element.hasClass( 'set' ) )\n          {\n            trigger.first()\n              .addClass( 'set' );\n          }\n\n          $( 'ul a[data-level=\"' + level + '\"]', selector ).first()\n            .addClass( 'level' );\n        }\n      }\n    )\n\n  $( '.trigger', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        self.trigger( 'clear' );\n\n        $( '.selector-holder', $( this ).parents( 'li' ).first() ).first()\n          .trigger( 'toggle' );\n\n        return false;\n      }\n    );\n\n  $( '.selector .close', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        self.trigger( 'clear' );\n        return false;\n      }\n    );\n    \n  $( '.selector-holder', this )\n    .die( 'toggle')\n    .live\n    (\n      'toggle',\n      function( event )\n      {\n        var row = $( this ).closest( 'li' );\n\n        $( 'a:first', row )\n          .toggleClass( 'open' );\n\n        $( '.selector-holder:first', row )\n          .toggleClass( 'open' );\n      }\n    );\n\n  $( '.selector ul a', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        var element = $( this );\n\n        $.ajax\n        (\n          {\n            url : loglevel_path,\n            dataType : 'json',\n            data : {\n              'wt' : 'json',\n              'set' : $( this ).parents( 'li[data-logger]' ).data( 'logger' ) + ':' + element.data( 'level' )\n            },\n            type : 'POST',\n            context : self,\n            beforeSend : function( xhr, settings )\n            {\n              element\n                .addClass( 'loader' );\n            },\n            success : logging_handler\n          }\n        );\n\n        return false;\n      }\n    );\n\n};\n\nvar format_time = function( time )\n{\n  time = time ? new Date( time ) : new Date();\n  return '<abbr title=\"' + time.toLocaleString().esc() + '\">' + time.toTimeString().split( ' ' ).shift().esc() + '</abbr>';\n}\n\nvar load_logging_viewer = function()\n{\n  var table = $( 'table', frame_element );\n  var state = $( '#state', frame_element );\n  var since = table.data( 'latest' ) || 0;\n  var sticky_mode = null;\n\n  $.ajax\n  (\n    {\n      url : loglevel_path + '?wt=json&since=' + since,\n      dataType : 'json',\n      beforeSend : function( xhr, settings )\n      {\n        // initial request\n        if( 0 === since )\n        {\n          sticky_mode = true;\n        }\n\n        // state element is in viewport\n        else if( state.position().top <= $( window ).scrollTop() + $( window ).height() - ( $( 'body' ).height() - state.position().top ) )\n        {\n          sticky_mode = true;\n        }\n\n        else\n        {\n          sticky_mode = false;\n        }\n      },\n      success : function( response, text_status, xhr )\n      {\n        var docs = response.history.docs;\n        var docs_count = docs.length;\n\n        var table = $( 'table', frame_element );\n\n        $( 'h2 span', frame_element )\n          .text( response.watcher.esc() );\n\n        state\n          .html( 'Last Check: ' + format_time() );\n\n        app.timeout = setTimeout\n        (\n          load_logging_viewer,\n          10000\n        );\n\n        if( 0 === docs_count )\n        {\n          table.trigger( 'update' );\n          return false;\n        }\n\n        var content = '<tbody>';\n\n        for( var i = 0; i < docs_count; i++ )\n        {\n          var doc = docs[i];\n\n          if( 1 === doc.time.length )\n          {\n            for( var key in doc )\n            {\n              doc[key] = doc[key][0];\n            }\n          }\n\n          if( !doc.trace )\n          {\n            var lines = doc.message.split( \"\\n\" );\n            if( 1 < lines.length )\n            {\n              doc.message = lines[0];\n              doc.trace = doc.message;\n              delete lines;\n            }\n          }\n\n          var has_trace = 'undefined' !== typeof( doc.trace );\n\n          doc.logger = '<abbr title=\"' + doc.logger.esc() + '\">' + doc.logger.split( '.' ).pop().esc() + '</abbr>';\n\n          var classes = [ 'level-' + doc.level.toLowerCase().esc() ];\n          if( has_trace )\n          {\n            classes.push( 'has-trace' );\n          }\n\n          content += '<tr class=\"' + classes.join( ' ' ) + '\">' + \"\\n\";\n            content += '<td class=\"span\"><a><span>' + format_time( doc.time ) + '</span></a></td>' + \"\\n\";\n            content += '<td class=\"level span\"><a><span>' + doc.level.esc() + '</span></span></a></td>' + \"\\n\";\n            content += '<td class=\"span\"><a><span>' + doc.logger + '</span></a></td>' + \"\\n\";\n            content += '<td class=\"message span\"><a><span>' + doc.message.replace( /,/g, ',&#8203;' ).esc() + '</span></a></td>' + \"\\n\";\n          content += '</tr>' + \"\\n\";\n\n          if( has_trace )\n          {\n            content += '<tr class=\"trace\">' + \"\\n\";\n              \n              // (1) with colspan\n              content += '<td colspan=\"4\"><pre>' + doc.trace.esc() + '</pre></td>' + \"\\n\";\n              \n              // (2) without colspan\n              //content += '<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';\n              //content += '<td>' + doc.trace.esc().replace( /\\n/g, '<br>' ) + '</td>' + \"\\n\";\n\n            content += '</tr>' + \"\\n\";\n          }\n\n        }\n\n        content += '</tbody>';\n\n        $( 'table', frame_element )\n          .append( content );\n\n        table\n          .data( 'latest', response.info.last )\n          .removeClass( 'has-data' )\n          .trigger( 'update' );\n\n        if( sticky_mode )\n        {\n          $( 'body' )\n            .animate\n            (\n                { scrollTop: state.position().top },\n                1000\n            );\n        }\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n}\n\n// #/~logging\nsammy.get\n(\n  /^#\\/(~logging)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    loglevel_path = core_basepath + '/admin/logging';\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/logging.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        frame_element = $( '#frame', content_element );\n        frame_element\n          .html\n          (\n            '<div id=\"viewer\">' + \"\\n\" +\n              '<div class=\"block\">' + \"\\n\" +\n                '<h2><span>&nbsp;</span></h2>' + \"\\n\" +\n              '</div>' + \"\\n\" +\n              '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">' + \"\\n\" +\n                '<thead>' + \"\\n\" +\n                  '<tr>' + \"\\n\" +\n                    '<th class=\"time\">Time</th>' + \"\\n\" +\n                    '<th class=\"level\">Level</th>' + \"\\n\" +\n                    '<th class=\"logger\">Logger</th>' + \"\\n\" +\n                    '<th class=\"message\">Message</th>' + \"\\n\" +\n                  '</tr>' + \"\\n\" +\n                '</thead>' + \"\\n\" +\n                '<tfoot>' + \"\\n\" +\n                  '<tr>' + \"\\n\" +\n                    '<td colspan=\"4\">No Events available</td>' + \"\\n\" +\n                  '</tr>' + \"\\n\" +\n                '</thead>' + \"\\n\" +\n              '</table>' + \"\\n\" +\n              '<div id=\"state\" class=\"loader\">&nbsp;</div>' + \"\\n\" +\n            '</div>'\n          );\n\n        var table = $( 'table', frame_element );\n\n        table\n          .die( 'update' )\n          .live\n          (\n            'update',\n            function( event )\n            {\n              var table = $( this );\n              var tbody = $( 'tbody', table );\n\n              0 !== tbody.size()\n                ? table.addClass( 'has-data' )\n                : table.removeClass( 'has-data' );\n\n              return false;\n            }\n          );\n\n        load_logging_viewer();\n\n        $( '.has-trace a', table )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).closest( 'tr' )\n                .toggleClass( 'open' )\n                .next().toggle();\n\n              return false;\n            }\n          );\n      }\n    );\n  }\n);\n\n// #/~logging/level\nsammy.get\n(\n  /^#\\/(~logging)\\/level$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    loglevel_path = core_basepath + '/admin/logging';\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/logging.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        $( '#menu a[href=\"' + context.path + '\"]' )\n          .parent().addClass( 'active' );\n                      \n        $.ajax\n        (\n          {\n            url : loglevel_path + '?wt=json',\n            dataType : 'json',\n            context : $( '#frame', content_element ),\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .html( '<div class=\"loader\">Loading ...</div>' );\n            },\n            success : logging_handler\n          }\n        );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/ping.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n$( '.ping a', app.core_menu )\n  .live\n  (\n    'click',\n    function( event )\n    {\n      $.ajax\n      (\n        {\n          url : $( this ).attr( 'rel' ) + '?wt=json&ts=' + (new Date).getTime(),\n          dataType : 'json',\n          context: this,\n          beforeSend : function( arr, form, options )\n          {\n            loader.show( this );\n          },\n          success : function( response, text_status, xhr )\n          {\n            $( this )\n              .removeAttr( 'title' );\n                        \n            $( this ).parents( 'li' )\n              .removeClass( 'error' );\n                            \n            var qtime_element = $( '.qtime', this );\n                        \n            if( 0 === qtime_element.size() )\n            {\n              qtime_element = $( '<small class=\"qtime\"> (<span></span>)</small>' );\n                            \n              $( this )\n                .append( qtime_element );\n            }\n                        \n            $( 'span', qtime_element )\n              .html( response.responseHeader.QTime + 'ms' );\n          },\n          error : function( xhr, text_status, error_thrown )\n          {\n            $( this )\n              .attr( 'title', '/admin/ping is not configured (' + xhr.status + ': ' + error_thrown + ')' );\n                        \n            $( this ).parents( 'li' )\n              .addClass( 'error' );\n          },\n          complete : function( xhr, text_status )\n          {\n            loader.hide( this );\n          }\n        }\n      );\n            \n      return false;\n    }\n  );"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/plugins.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar core_basepath = null;\nvar content_element = null;\nvar selected_type = null;\nvar context_path = null;\nvar active_context = null;\nvar changes = null;\nvar reference_xml = null;\n\nvar compute_plugin_data = function( response, changeset )\n{\n  var types = [];\n  var sort_table = {};\n  var plugin_data = {};\n\n  var types_obj = {};\n  var plugin_key = null;\n\n  changes = { count : {}, list : {} }\n\n  for( var i = 0; i < response['solr-mbeans'].length; i++ )\n  {\n    if( !( i % 2 ) )\n    {\n      plugin_key = response['solr-mbeans'][i];\n    }\n    else\n    {\n      plugin_data[plugin_key] = response['solr-mbeans'][i];\n    }\n  }\n\n  for( var key in plugin_data )\n  {\n    sort_table[key] = {\n      url : [],\n      component : [],\n      handler : []\n    };\n    for( var part_key in plugin_data[key] )\n    {\n      if( plugin_data[key][part_key]['_changed_'] )\n      {\n        delete plugin_data[key][part_key]['_changed_'];\n\n        changes.count[key] = changes.count[key] || 0;\n        changes.count[key]++;\n\n        changes.list[key] = changes.list[key] || {};\n        changes.list[key][part_key] = true;\n      }\n\n      if( 0 < part_key.indexOf( '.' ) )\n      {\n        types_obj[key] = true;\n        sort_table[key]['handler'].push( part_key );\n      }\n      else if( 0 === part_key.indexOf( '/' ) )\n      {\n        types_obj[key] = true;\n        sort_table[key]['url'].push( part_key );\n      }\n      else\n      {\n        types_obj[key] = true;\n        sort_table[key]['component'].push( part_key );\n      }\n    }\n  }\n\n  for( var type in types_obj )\n  {\n    types.push( type );\n  }\n  types.sort();\n\n  return {\n    'plugin_data' : plugin_data,\n    'sort_table' : sort_table,\n    'types' : types\n  };\n};\n\nvar render_plugin_data = function( plugin_data, plugin_sort, types )\n{\n  var frame_element = $( '#frame', content_element );\n  var navigation_element = $( '#navigation ul', content_element );\n\n  var navigation_content = [];\n  for( var i = 0; i < types.length; i++ )\n  {\n    var type_url = active_context.params.splat[0] + '/' + active_context.params.splat[1] + '/' + types[i].toLowerCase();\n\n    var navigation_markup = '<li class=\"' + types[i].toLowerCase().esc() + '\">' +\n                            '<a href=\"#/' + type_url + '\" rel=\"' + types[i].esc() + '\">' + types[i].esc();\n\n    if( changes.count[types[i]] )\n    {\n      navigation_markup += ' <span>' + changes.count[types[i]].esc() + '</span>';\n    }\n\n    navigation_markup += '</a>' +\n                         '</li>';\n\n    navigation_content.push( navigation_markup );\n  }\n\n  navigation_content.push( '<li class=\"PLUGINCHANGES\"><a href=\"#\">Watch Changes</a></li>' );\n  navigation_content.push( '<li class=\"RELOAD\"><a href=\"#\" onClick=\"window.location.reload()\">Refresh Values</a></li>' );\n\n  navigation_element\n    .html( navigation_content.join( \"\\n\" ) );\n    \n  $( '.PLUGINCHANGES a', navigation_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      { \n        load_reference_xml();\n        \n        changes = { count : {}, list : {} }\n        $( 'a > span', navigation_element ).remove();\n        $( '.entry.changed', frame_element ).removeClass( 'changed' );\n\n        $.blockUI\n        (\n          {\n            message: $('#recording'),\n            css: { width: '450px' }\n          }\n        );\n\n        return false;\n      }\n    ); \n\n  $( '#recording button' )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      { \n        $.ajax\n        (\n          {\n            type: 'POST',\n            url: core_basepath + '/admin/mbeans',\n            dataType : 'json',\n            data: { \n              'stats': 'true',\n              'wt': 'json', \n              'diff': 'true',\n              'all': 'true',\n              'stream.body': reference_xml \n            },\n            success : function( response, text_status, xhr )\n            {\n              load_reference_xml();\n\n              app.plugin_data = compute_plugin_data( response );\n              render_plugin_data( app.plugin_data.plugin_data, app.plugin_data.sort_table, app.plugin_data.types );\n            }\n          }\n        );\n        $.unblockUI();\n        return false;\n      }\n    ); \n              \n  $( 'a[href=\"' + context_path + '\"]', navigation_element )\n    .parent().addClass( 'current' );\n            \n  var content = '<ul>';\n  for( var sort_key in plugin_sort[selected_type] )\n  {\n    plugin_sort[selected_type][sort_key].sort();\n    var plugin_type_length = plugin_sort[selected_type][sort_key].length;\n                \n    for( var i = 0; i < plugin_type_length; i++ )\n    {\n      var bean = plugin_sort[selected_type][sort_key][i];\n      var classes = [ 'entry' ];\n\n      if( changes.list[selected_type] && changes.list[selected_type][bean] )\n      {\n        classes.push( 'changed' );\n      }\n\n      content += '<li class=\"' + classes.join( ' ' ) + '\">' + \"\\n\";\n      content += '<a href=\"' + context_path + '?entry=' + bean.esc() + '\" data-bean=\"' + bean.esc() + '\">';\n      content += '<span>' + bean.esc() + '</span>';\n      content += '</a>' + \"\\n\";\n      content += '<ul class=\"detail\">' + \"\\n\";\n                    \n      var details = plugin_data[selected_type][ plugin_sort[selected_type][sort_key][i] ];\n      for( var detail_key in details )\n      {\n        if( 'stats' !== detail_key )\n        {\n          var detail_value = details[detail_key];\n\n          if( 'description' === detail_key )\n          {\n            // Link component list to their MBeans page\n            if(detail_value.match(/^Search using components: /)) {\n              var idx = detail_value.indexOf(':');\n              var url = '#/'+active_context.params.splat[0]+'/plugins/other?entry=';\n              var tmp = 'Search using components:<ul>';\n              $.each(detail_value.substr(idx+1).split(\",\"), function(index, value) { \n                value = $.trim(value);\n                tmp += '<li><a href=\"'+url+value+'\" class=\"linker\">'+value+\"</a></li>\";\n              });\n              tmp += \"</ul>\";\n              detail_value = tmp;\n            }\n          }\n\n          content += '<li><dl class=\"clearfix\">' + \"\\n\";\n          content += '<dt>' + detail_key + ':</dt>' + \"\\n\";\n          if($.isArray(detail_value)) {\n            $.each(detail_value, function(index, value) { \n              content += '<dd>' + value + '</dd>' + \"\\n\";\n            });\n          }\n          else {\n            content += '<dd>' + detail_value + '</dd>' + \"\\n\";\n          }\n          content += '</dl></li>' + \"\\n\";\n        }\n        else if( 'stats' === detail_key && details[detail_key] )\n        {\n          content += '<li class=\"stats clearfix\">' + \"\\n\";\n          content += '<span>' + detail_key + ':</span>' + \"\\n\";\n          content += '<ul>' + \"\\n\";\n\n          for( var stats_key in details[detail_key] )\n          {\n            var stats_value = new String( details[detail_key][stats_key] );\n            stats_value = stats_value.replace( /([\\(@])/g, '$1&#8203;' );\n\n            content += '<li><dl class=\"clearfix\">' + \"\\n\";\n            content += '<dt>' + stats_key + ':</dt>' + \"\\n\";\n            content += '<dd>' + stats_value + '</dd>' + \"\\n\";\n            content += '</dl></li>' + \"\\n\";\n          }\n\n          content += '</ul></li>' + \"\\n\";\n        }\n      }\n                    \n      content += '</ul>' + \"\\n\";\n    }\n  }\n  content += '</ul>' + \"\\n\";\n\n  frame_element\n    .html( content );\n\n  \n  var path = active_context.path.split( '?entry=' );\n  var entries = ( path[1] || '' ).split( ',' );\n  \n  var entry_count = entries.length;\n  for( var i = 0; i < entry_count; i++ )\n  {\n    $( 'a[data-bean=\"' + entries[i] + '\"]', frame_element )\n      .parent().addClass( 'expanded' );\n  }\n\n  $( 'a', frame_element )\n    .off( 'click' )\n    .on\n    (\n      'click',\n      function( event )\n      { \n        var self = $( this );\n        var bean = self.data( 'bean' );\n\n        var split = '?entry=';\n        var path = active_context.path.split( split );\n        var entry = ( path[1] || '' );\n\n        var regex = new RegExp( bean.replace( /\\//g, '\\\\/' ) + '(,|$)' );\n        var match = regex.test( entry );\n\n        var url = path[0] + split;\n\n        url += match\n             ? entry.replace( regex, '' )\n             : entry + ',' + bean;\n\n        url = url.replace( /=,/, '=' );\n        url = url.replace( /,$/, '' );\n        url = url.replace( /\\?entry=$/, '' );\n\n        active_context.redirect( url );\n        return false;\n      }\n    );\n  \n  // Try to make links for anything with http (but leave the rest alone)\n  $( '.detail dd' ).each(function(index) {\n    var txt = $(this).html();\n    if(txt.indexOf(\"http\") >= 0) {\n      $(this).linker({\n         className : 'linker'\n      });\n    }\n  });\n  \n  // Add invisible whitespace after each slash\n  $( '.detail a.linker' ).each(function(index) {\n    $(this).html( $(this).html().replace( /\\//g, '/&#8203;' ) );\n  });\n  \n            \n  $( '.entry', frame_element )\n    .each\n    (\n      function( i, entry )\n      {\n        $( '.detail > li', entry ).not( '.stats' ).filter( ':even' )\n          .addClass( 'odd' );\n\n        $( '.stats li:odd', entry )\n          .addClass( 'odd' );\n      }\n    );\n};\n\nvar load_reference_xml = function()\n{\n  $.ajax\n  (\n    {\n      type: 'GET',\n      url: core_basepath + '/admin/mbeans?stats=true&wt=xml',\n      dataType : 'text',\n      success: function( data )\n      {\n        reference_xml = data;\n      }\n    }\n  );\n}\n\nsammy.bind\n(\n  'plugins_load',\n  function( event, params )\n  {\n    var callback = function()\n    {\n      params.callback( app.plugin_data.plugin_data, app.plugin_data.sort_table, app.plugin_data.types );\n    }\n        \n    if( app.plugin_data )\n    {\n      callback( app.plugin_data );\n      return true;\n    }\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/mbeans?stats=true&wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          app.plugin_data = compute_plugin_data( response );\n\n          $.get\n          (\n            'tpl/plugins.html',\n            function( template )\n            {\n              $( '#content' )\n                .html( template );\n                            \n              callback( app.plugin_data );\n            }\n          );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\n// #/:core/plugins/$type\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(plugins)\\\\/(\\\\w+)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    content_element = $( '#content' );\n    selected_type = context.params.splat[2].toUpperCase();\n    context_path = context.path.split( '?' ).shift();\n    active_context = context;\n    \n    sammy.trigger\n    (\n      'plugins_load',\n      {\n        active_core : this.active_core,\n        callback : render_plugin_data\n      }\n    );                \n  }\n);\n\n// #/:core/plugins\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(plugins)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    delete app.plugin_data;\n\n    sammy.trigger\n    (\n      'plugins_load',\n      {\n        active_core : this.active_core,\n        callback :  function( plugin_data, plugin_sort, types )\n        {\n          context.redirect( context.path + '/' + types[0].toLowerCase() );\n        }\n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/query.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/query\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(query)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    $.get\n    (\n      'tpl/query.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var query_element = $( '#query', content_element );\n        var query_form = $( '#form form', query_element );\n        var url_element = $( '#url', query_element );\n        var result_element = $( '#result', query_element );\n        var response_element = $( '#response', result_element );\n\n        url_element\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var wt = $( '[name=\"wt\"]', query_form ).val();\n\n              var content_generator = {\n\n                _default : function( xhr )\n                {\n                  return xhr.responseText.esc();\n                },\n\n                json : function( xhr )\n                {\n                  return app.format_json( xhr.responseText );\n                }\n\n              };\n\n              $.ajax\n              (\n                {\n                  url : this.href,\n                  dataType : wt,\n                  context : response_element,\n                  beforeSend : function( xhr, settings )\n                  {\n                    this\n                     .html( '<div class=\"loader\">Loading ...</div>' );\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                    var code = $(\n                      '<pre class=\"syntax language-' + wt + '\"><code>' +\n                      ( content_generator[wt] || content_generator['_default'] )( xhr ) +\n                      '</code></pre>'\n                    );\n                    this.html( code );\n\n                    if( 'success' === text_status )\n                    {\n                      hljs.highlightBlock( code.get(0) );\n                    }\n                  }\n                }\n              );\n            }\n          )\n\n        $( '.optional legend input[type=checkbox]', query_form )\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var fieldset = $( this ).parents( 'fieldset' );\n\n              this.checked\n                ? fieldset.addClass( 'expanded' )\n                : fieldset.removeClass( 'expanded' );\n            }\n          );\n\n        query_form\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              var form_values = [];\n \n              var add_to_form_values = function add_to_form_values( fields )\n              {\n                 for( var i in fields )\n                 {\n                  if( !fields[i].value || 0 === fields[i].value.length )\n                  {\n                    continue;\n                  }\n \n                  form_values.push( fields[i] );\n                 }\n              };\n \n              var fieldsets = $( '> fieldset', query_form );\n \n              var fields = fieldsets.first().formToArray( true );\n              add_to_form_values( fields );\n\n              fieldsets.not( '.common' )\n                .each\n                (\n                  function( i, set )\n                  {\n                    if( $( 'legend input', set ).is( ':checked' ) )\n                    {\n                      var fields = $( set ).formToArray( true );\n                      add_to_form_values( fields );\n                    }\n                  }\n                );\n\n              var handler_path = $( '#qt', query_form ).val();\n              if( '/' !== handler_path[0] )\n              {\n                form_values.push( { name : 'qt', value : handler_path.esc() } );\n                handler_path = '/select';\n              }\n\n              var query_url = window.location.protocol + '//' + window.location.host\n                            + core_basepath + handler_path + '?' + $.param( form_values );\n\n              var custom_parameters = $( '#custom_parameters', query_form ).val();\n              if( custom_parameters && 0 !== custom_parameters.length )\n              {\n                query_url += '&' + custom_parameters.replace( /^&/, '' ); \n              }\n\n              url_element\n                .attr( 'href', query_url )\n                .text( query_url )\n                .trigger( 'change' );\n                            \n              result_element\n                .show();\n                            \n              return false;\n            }\n          );\n\n        var fields = 0;\n        for( var key in context.params )\n        {\n          if( 'string' === typeof context.params[key] )\n          {\n            fields++;\n            $( '[name=\"' + key + '\"]', query_form )\n              .val( context.params[key] );\n          }\n        }\n\n        if( 0 !== fields )\n        {\n          query_form\n            .trigger( 'submit' );\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/replication.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar timer_element = null;\nvar timer_timeout = null;\n\nvar core_basepath = null;\nvar navigation_element = null;\nvar replication_element = null;\n\nvar init_timer = function( next_tick )\n{\n  if( timer_timeout )\n  {\n    window.clearTimeout( timer_timeout );\n  }\n  update_timer( next_tick );\n}\n\nvar update_timer = function( next_tick )\n{\n  if( 0 === next_tick )\n  {\n    replication_fetch_status();\n    return false;\n  }\n\n  $( 'p .tick', timer_element )\n    .text( app.convert_seconds_to_readable_time( next_tick ) );\n\n  timer_timeout = window.setTimeout\n  (\n    'update_timer( ' + --next_tick + ' )',\n    1000\n  );\n}\n\nvar clear_timer = function()\n{\n  if( timer_timeout )\n  {\n    window.clearTimeout( timer_timeout );\n    timer_element.hide();\n  }\n}\n\nvar replication_fetch_status = function()\n{\n  $.ajax\n  (\n    {\n      url : core_basepath + '/replication?command=details&wt=json',\n      dataType : 'json',\n      beforeSend : function( xhr, settings )\n      {\n        $( '.refresh-status span', navigation_element )\n          .addClass( 'loader' );\n\n        clear_timer();\n      },\n      success : function( response, text_status, xhr )\n      {\n        $( '.refresh-status span', navigation_element )\n          .removeClass( 'loader' );\n                \n        var data = response.details;\n        var is_slave = 'true' === data.isSlave;\n\n        replication_element\n          .addClass( is_slave ? 'slave' : 'master' );\n\n        if( is_slave )\n        {\n          var error_element = $( '#error', replication_element );\n\n          if( data.slave.ERROR )\n          {\n            error_element\n              .html( data.slave.ERROR )\n              .show();\n          }\n          else\n          {\n            error_element\n              .hide()\n              .empty();\n          }\n\n          var progress_element = $( '#progress', replication_element );\n\n          var start_element = $( '#start', progress_element );\n          $( 'span', start_element )\n            .text( data.slave.replicationStartTime );\n\n          var eta_element = $( '#eta', progress_element );\n          $( 'span', eta_element )\n            .text( app.convert_seconds_to_readable_time( data.slave.timeRemaining ) );\n\n          var bar_element = $( '#bar', progress_element );\n          $( '.files span', bar_element )\n            .text( data.slave.numFilesToDownload );\n          $( '.size span', bar_element )\n            .text( data.slave.bytesToDownload );\n\n          var speed_element = $( '#speed', progress_element );\n          $( 'span', speed_element )\n            .text( data.slave.downloadSpeed );\n\n          var done_element = $( '#done', progress_element );\n          $( '.files span', done_element )\n            .text( data.slave.numFilesDownloaded );\n          $( '.size span', done_element )\n            .text( data.slave.bytesDownloaded );\n          $( '.percent span', done_element )\n            .text( parseInt(data.slave.totalPercent ) );\n\n          var percent = parseInt( data.slave.totalPercent );\n          if( 0 === percent )\n          {\n            done_element\n              .css( 'width', '1px' ); \n          }\n          else\n          {\n            done_element\n              .css( 'width', percent + '%' );\n          }\n\n          var current_file_element = $( '#current-file', replication_element );\n          $( '.file', current_file_element )\n            .text( data.slave.currentFile );\n          $( '.done', current_file_element )\n            .text( data.slave.currentFileSizeDownloaded );\n          $( '.total', current_file_element )\n            .text( data.slave.currentFileSize );\n          $( '.percent', current_file_element )\n            .text( parseInt( data.slave.currentFileSizePercent ) );\n\n          if( !data.slave.indexReplicatedAtList )\n          {\n            data.slave.indexReplicatedAtList = [];\n          }\n\n          if( !data.slave.replicationFailedAtList )\n          {\n            data.slave.replicationFailedAtList = [];\n          }\n\n          var iterations_element = $( '#iterations', replication_element );\n          var iterations_list = $( '.iterations ul', iterations_element );\n\n          var iterations_data = [];\n          var iterations_obj = {};\n\n          for( var i in data.slave.indexReplicatedAtList )\n          {\n            var date = data.slave.indexReplicatedAtList[i];\n            if( !iterations_obj[date] )\n            {\n              iterations_obj[date] = true;\n              iterations_data.push( date );\n            }\n          }\n\n          for( var i in data.slave.replicationFailedAtList )\n          {\n            var date = data.slave.replicationFailedAtList[i];\n            if( !iterations_obj[date] )\n            {\n              iterations_obj[date] = true;\n              iterations_data.push( date );\n            }\n          }\n\n          iterations_data.sort().reverse();\n\n          if( 0 !== iterations_data.length )\n          {\n            var iterations = [];\n            for( var i = 0; i < iterations_data.length; i++ )\n            {\n              iterations.push( '<li data-date=\"' + iterations_data[i] + '\">' + iterations_data[i] + '</li>' );\n            }\n                        \n            iterations_list\n              .html( iterations.join( \"\\n\" ) )\n              .show();\n                        \n            $( data.slave.indexReplicatedAtList )\n              .each\n              (\n                function( key, value )\n                {\n                  $( 'li[data-date=\"' + value + '\"]', iterations_list )\n                    .addClass( 'replicated' );\n                }\n              );\n                        \n            if( data.slave.indexReplicatedAt )\n            {\n              $( 'li[data-date=\"' + data.slave.indexReplicatedAt + '\"]', iterations_list )\n                .addClass( 'latest' );\n            }\n                        \n            $( data.slave.replicationFailedAtList )\n              .each\n              (\n                function( key, value )\n                {\n                  $( 'li[data-date=\"' + value + '\"]', iterations_list )\n                    .addClass( 'failed' );\n                }\n              );\n                        \n            if( data.slave.replicationFailedAt )\n            {\n              $( 'li[data-date=\"' + data.slave.replicationFailedAt + '\"]', iterations_list )\n                .addClass( 'latest' );\n            }\n\n            if( 0 !== $( 'li:hidden', iterations_list ).size() )\n            {\n              $( 'a', iterations_element )\n                .show();\n            }\n            else\n            {\n              $( 'a', iterations_element )\n                .hide();\n            }\n          }\n        }\n\n        var details_element = $( '#details', replication_element );\n        var current_type_element = $( ( is_slave ? '.slave' : '.masterSearch' ), details_element );\n        var master_data = is_slave ? data.slave.masterDetails : data;\n\n        // the currently searchable commit regardless of type\n        $( '.version div', current_type_element )\n          .html( data.indexVersion );\n        $( '.generation div', current_type_element )\n          .html( data.generation );\n        $( '.size div', current_type_element )\n          .html( data.indexSize );\n\n        // what's replicable on the master\n        var master_element = $( '.master', details_element );\n        $( '.version div', master_element )\n          .html( master_data.master.replicableVersion || '-' );\n        $( '.generation div', master_element )\n          .html( master_data.master.replicableGeneration || '-' );\n        $( '.size div', master_element )\n          .html( \"-\" );\n                \n        if( is_slave )\n        {\n          // what's searchable on the master\n          var master_searchable = $( '.masterSearch', details_element );\n          $( '.version div', master_searchable )\n            .html( master_data.indexVersion );\n          $( '.generation div', master_searchable )\n            .html( master_data.generation );\n          $( '.size div', master_searchable )\n            .html( master_data.indexSize );\n \n          // warnings if slave version|gen doesn't match what's replicable\n          if( data.indexVersion !== master_data.master.replicableVersion )\n          {\n            $( '.version', details_element )\n              .addClass( 'diff' );\n          }\n          else\n          {\n            $( '.version', details_element )\n              .removeClass( 'diff' );\n          }\n                    \n          if( data.generation !== master_data.master.replicableGeneration )\n          {\n            $( '.generation', details_element )\n              .addClass( 'diff' );\n          }\n          else\n          {\n            $( '.generation', details_element )\n              .removeClass( 'diff' );\n          }\n        }\n\n        if( is_slave )\n        {\n          var settings_element = $( '#settings', replication_element );\n\n          if( data.slave.masterUrl )\n          {\n            $( '.masterUrl dd', settings_element )\n              .html( response.details.slave.masterUrl )\n              .parents( 'li' ).show();\n          }\n\n          var polling_content = '&nbsp;';\n          var polling_ico = 'ico-1';\n\n          if( 'true' === data.slave.isPollingDisabled )\n          {\n            polling_ico = 'ico-0';\n\n            $( '.disable-polling', navigation_element ).hide();\n            $( '.enable-polling', navigation_element ).show();\n          }\n          else\n          {\n            $( '.disable-polling', navigation_element ).show();\n            $( '.enable-polling', navigation_element ).hide();\n\n            if( data.slave.pollInterval )\n            {\n              polling_content = '(interval: ' + data.slave.pollInterval + ')';\n            }\n          }\n\n          $( '.isPollingDisabled dd', settings_element )\n            .removeClass( 'ico-0' )\n            .removeClass( 'ico-1' )\n            .addClass( polling_ico )\n            .html( polling_content )\n            .parents( 'li' ).show();\n                \n          if( 'true' === data.slave.isReplicating )\n          {\n            replication_element\n              .addClass( 'replicating' );\n                        \n            $( '.replicate-now', navigation_element ).hide();\n            $( '.abort-replication', navigation_element ).show();\n                        \n            window.setTimeout( replication_fetch_status, 1000 );\n          }\n          else\n          {\n            replication_element\n              .removeClass( 'replicating' );\n                        \n            $( '.replicate-now', navigation_element ).show();\n            $( '.abort-replication', navigation_element ).hide();\n\n\n            if( 'false' === data.slave.isPollingDisabled && data.slave.pollInterval )\n            {\n              timer_element = $( '.timer', navigation_element );\n              approx_element = $( '.approx', timer_element );\n\n              var next_tick = app.convert_duration_to_seconds( data.slave.pollInterval );\n              approx_element.show();\n\n              if( data.slave.nextExecutionAt )\n              {\n                var nextExecutionAt = new SolrDate( data.slave.nextExecutionAt );\n                var currentDate = new SolrDate( data.slave.currentDate );\n\n                if( nextExecutionAt.getTime() > currentDate.getTime() )\n                {\n                  next_tick = ( nextExecutionAt.getTime() - currentDate.getTime() ) / 1000;\n                  approx_element.hide();\n\n                  $( 'small', timer_element )\n                    .text( data.slave.nextExecutionAt )\n                    .show();\n                }\n              }\n\n              init_timer( next_tick );\n\n              timer_element\n                .show();\n            }\n          }\n        }\n\n        var master_settings_element = $( '#master-settings', replication_element );\n        var master_data = is_slave ? data.slave.masterDetails.master : data.master;\n\n        var replication_icon = 'ico-0';\n        if( 'true' === master_data.replicationEnabled )\n        {\n          replication_icon = 'ico-1';\n\n          $( '.disable-replication', navigation_element ).show();\n          $( '.enable-replication', navigation_element ).hide();\n        }\n        else\n        {\n          $( '.disable-replication', navigation_element ).hide();\n          $( '.enable-replication', navigation_element ).show();\n        }\n\n        $( '.replicationEnabled dd', master_settings_element )\n          .removeClass( 'ico-0' )\n          .removeClass( 'ico-1' )\n          .addClass( replication_icon )\n          .parents( 'li' ).show();\n\n        $( '.replicateAfter dd', master_settings_element )\n          .html( master_data.replicateAfter.join( ', ' ) )\n          .parents( 'li' ).show();\n\n        if( master_data.confFiles )\n        {\n          var conf_files = [];\n          var conf_data = master_data.confFiles.split( ',' );\n                    \n          for( var i = 0; i < conf_data.length; i++ )\n          {\n            var item = conf_data[i];\n\n            if( - 1 !== item.indexOf( ':' ) )\n            {\n              info = item.split( ':' );\n              item = '<abbr title=\"' + info[0] + ' » ' + info[1] + '\">' + ( is_slave ? info[1] : info[0] ) + '</abbr>';\n            }\n\n            conf_files.push( item );\n          }\n\n          $( '.confFiles dd', master_settings_element )\n            .html( conf_files.join( ', ' ) )\n            .parents( 'li' ).show();\n        }\n\n\n        $( '.block', replication_element ).last()\n          .addClass( 'last' );\n      },\n      error : function( xhr, text_status, error_thrown )\n      {\n        $( '#content' )\n          .html( 'sorry, no replication-handler defined!' );\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n}\n\n// #/:core/replication\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(replication)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    $.get\n    (\n      'tpl/replication.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                \n        replication_element = $( '#replication', content_element );\n        navigation_element = $( '#navigation', replication_element );\n\n        replication_fetch_status();\n\n        $( '#iterations a', content_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.iterations' )\n                .toggleClass( 'expanded' );\n                            \n              return false;\n            }\n          );\n\n        $( 'button', navigation_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var button = $( this );\n              var command = button.data( 'command' );\n\n              if( button.hasClass( 'refresh-status' ) && !button.hasClass( 'loader' ) )\n              {\n                replication_fetch_status();\n              }\n              else if( command )\n              {\n                $.get\n                (\n                  core_basepath + '/replication?command=' + command + '&wt=json',\n                  function()\n                  {\n                    replication_fetch_status();\n                  }\n                );\n              }\n              return false;\n            }\n          );\n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/schema-browser.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar current_core = null;\nvar cookie_schema_browser_autoload = 'schema-browser_autoload';\n\nvar luke_array_to_struct = function( array )\n{\n  var struct = {\n    keys : [],\n    values : []\n  };\n  for( var i = 0; i < array.length; i += 2 )\n  {\n    struct.keys.push( array[i] );\n    struct.values.push( array[i+1] );\n  }\n  return struct;\n}\n\nvar luke_array_to_hash = function( array )\n{\n  var hash = {};\n  for( var i = 0; i < array.length; i += 2 )\n  {\n    hash[ array[i] ] = array[i+1];\n  }\n  return hash;\n}\n\nvar load_terminfo = function( trigger_element, core_basepath, field, data_element, terminfo_element )\n{\n  var luke_url = core_basepath + '/admin/luke?wt=json&fl=' + field;\n  var topterms_count_element = $( '.topterms-holder .head input', terminfo_element );\n\n  var term_load_count = parseInt( topterms_count_element.val(), 10 );\n  if( term_load_count )\n  {\n    luke_url += '&numTerms=' + term_load_count;\n  }\n\n  $.ajax\n  (\n    {\n      url : luke_url,\n      dataType : 'json',\n      context : terminfo_element,\n      beforeSend : function( xhr, settings )\n      {\n        $( 'span', trigger_element )\n          .addClass( 'loader' );\n      },\n      success : function( response, text_status, xhr )\n      {\n        var additional_styles = [];\n        var field_data = response.fields[field];\n\n        if( !field_data || !( field_data.topTerms && field_data.histogram ) )\n        {\n          terminfo_element\n            .addClass( 'disabled' );\n\n          return false;\n        }\n\n        var get_width = function get_width()\n        {\n          return $( this ).width();\n        }\n\n        var topterms_holder_element = $( '.topterms-holder', data_element );\n        var histogram_holder_element = $( '.histogram-holder', data_element );\n\n        if( !field_data.topTerms )\n        {\n          topterms_holder_element\n            .hide();\n        }\n        else\n        {\n          topterms_holder_element\n            .show();\n\n          var topterms_table_element = $( 'ul', topterms_holder_element );\n\n          var topterms = field_data.topTerms;\n          var topterms_count = topterms.length;\n                    \n          var topterms_content = '';\n          var topterms_frq_last = null;\n\n          for( var i = 0; i < topterms_count; i += 2 )\n          {\n            if( topterms_frq_last !== topterms[i+1] )\n            {\n              if( topterms_frq_last )\n              {\n                topterms_content += '</ul></li>' + \"\\n\";\n              }\n\n              topterms_frq_last = topterms[i+1];\n              topterms_content += '<li class=\"clearfix\">'\n                               +  '<p><span>' + app.format_number( topterms_frq_last ) + '</span></p>' + \"\\n\"\n                               +  '<ul>' + \"\\n\";\n            }\n\n            var target = '#/' + current_core + '/query?q=' + field.esc() + ':' + encodeURIComponent( '\"' + topterms[i] + '\"' );\n            topterms_content += '<li><a href=\"' + target + '\">' + topterms[i].esc() + '</a></li>' + \"\\n\";\n          }\n\n          topterms_content += '</li>';\n\n          topterms_count = topterms_count / 2;\n\n          $( 'input', trigger_element )\n            .val( topterms_count );\n\n          topterms_table_element\n            .html( topterms_content );\n\n          var max_width = 10 + Math.max.apply( Math, $( 'p', topterms_table_element ).map( get_width ).get() );\n          additional_styles.push\n          (\n            topterms_table_element.selector + ' p { width: ' + max_width + 'px !important; }' + \"\\n\" +\n            topterms_table_element.selector + ' ul { margin-left: ' + ( max_width + 5 ) + 'px !important; }'\n          );\n\n          topterms_count_element\n            .val( topterms_count );\n\n          $( 'p.head .max', topterms_holder_element )\n            .html( field_data.distinct );\n\n          $( 'p.head #query_link', topterms_holder_element )\n            .attr( 'href', '#/' + current_core + '/query?q=' + field.esc() + ':[* TO *]' );\n\n          $( 'ul li:even', topterms_table_element )\n            .addClass( 'odd' );\n        }\n\n        if( !field_data.histogram )\n        {\n          histogram_holder_element\n            .hide();\n        }\n        else\n        {\n          histogram_holder_element\n            .show();\n\n          var histogram_values = luke_array_to_hash( field_data.histogram );\n          var histogram_entries = [];\n          \n          var histogram_max = null;\n          for( var key in histogram_values )\n          {\n            histogram_max = Math.max( histogram_max, histogram_values[key] );\n          }\n\n          for( var key in histogram_values )\n          {\n            histogram_entries.push\n            (\n              '<li>' + \"\\n\" +\n              '  <dl class=\"clearfix\" style=\"width: ' +  ( ( histogram_values[key] / histogram_max ) * 100 ) + '%;\">' + \"\\n\" +\n              '    <dt><span>' + app.format_number( key ) + '</span></dt>' + \"\\n\" +\n              '    <dd><span>' + app.format_number( histogram_values[key] ) + '</span></dd>' + \"\\n\" +\n              '  </dl>' + \"\\n\" +\n              '</li>'\n            );\n          }\n\n          $( 'ul', histogram_holder_element )\n            .html( histogram_entries.join( \"\\n\" ) );\n\n          $( 'ul li:even', histogram_holder_element )\n            .addClass( 'odd' );\n\n          var max_width = 10 + Math.max.apply( Math, $( 'dt', histogram_holder_element ).map( get_width ).get() );\n          additional_styles.push\n          (\n            histogram_holder_element.selector + ' ul { margin-left: ' + max_width + 'px !important; }' + \"\\n\" +\n            histogram_holder_element.selector + ' li dt { left: ' + ( max_width * -1 ) + 'px !important; width: ' + max_width + 'px !important; }'\n          );\n        }\n\n        if( additional_styles )\n        {\n          terminfo_element\n            .prepend( '<style type=\"text/css\">' + additional_styles.join( \"\\n\" ) + '</style>' );\n        }\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n        terminfo_element\n          .addClass( 'disabled' );\n      },\n      complete : function( xhr, text_status )\n      {\n        $( 'span', trigger_element )\n          .removeClass( 'loader' );\n      }\n    }\n  );\n}\n\nsammy.bind\n(\n  'schema_browser_navi',\n  function( event, params )\n  {\n    var related_navigation_element = $( '#related dl#f-df-t', params.schema_browser_element );\n    var related_navigation_meta = $( '#related dl.ukf-dsf', params.schema_browser_element );\n    var related_select_element = $( '#related select', params.schema_browser_element )\n    var type = 'index';\n\n    var sammy_basepath = app.core_menu.find( '.active a' ).attr( 'href' );\n        \n    if( !related_navigation_meta.hasClass( 'done' ) )\n    {\n      if( app.schema_browser_data.unique_key_field )\n      {\n        $( '.unique-key-field', related_navigation_meta )\n          .show()\n          .after\n          (\n            '<dd class=\"unique-key-field\"><a href=\"' + sammy_basepath + '?field=' +\n            app.schema_browser_data.unique_key_field + '\">' +\n            app.schema_browser_data.unique_key_field + '</a></dd>'\n          );\n      }\n\n      if( app.schema_browser_data.default_search_field )\n      {\n        $( '.default-search-field', related_navigation_meta )\n          .show()\n          .after\n          (\n            '<dd class=\"default-search-field\"><a href=\"' + sammy_basepath + '?field=' +\n            app.schema_browser_data.default_search_field + '\">' +\n            app.schema_browser_data.default_search_field + '</a></dd>'\n          );\n      }\n\n      related_navigation_meta\n        .addClass( 'done' );\n    }\n\n    if( params.route_params )\n    {\n      var type = params.route_params.type;\n      var value = params.route_params.value;\n\n      var navigation_data = {\n        'fields' : [],\n        'copyfield_source' : [],\n        'copyfield_dest' : [],\n        'dynamic_fields' : [],\n        'types' : []\n      }\n\n      $( 'option[value=\"' + params.route_params.path + '\"]', related_select_element )\n        .attr( 'selected', 'selected' );\n\n      related_select_element\n        .trigger( 'liszt:updated' );\n\n      if( 'field' === type )\n      {\n        navigation_data.fields.push( value );\n\n        if( app.schema_browser_data.relations.f_t[value] )\n        {\n          navigation_data.types.push( app.schema_browser_data.relations.f_t[value] );\n        }\n\n        if( app.schema_browser_data.relations.f_df[value] )\n        {\n          navigation_data.dynamic_fields.push( app.schema_browser_data.relations.f_df[value] );\n        }\n\n        if( app.schema_browser_data.fields[value].copySources && 0 !== app.schema_browser_data.fields[value].copySources.length )\n        {\n          navigation_data.copyfield_source = app.schema_browser_data.fields[value].copySources;\n        }\n\n        if( app.schema_browser_data.fields[value].copyDests && 0 !== app.schema_browser_data.fields[value].copyDests.length )\n        {\n          navigation_data.copyfield_dest = app.schema_browser_data.fields[value].copyDests;\n        }\n      }\n      else if( 'dynamic-field' === type )\n      {\n        navigation_data.dynamic_fields.push( value );\n        navigation_data.types.push( app.schema_browser_data.relations.df_t[value] );\n\n        if( app.schema_browser_data.relations.df_f[value] )\n        {\n          navigation_data.fields = app.schema_browser_data.relations.df_f[value];\n        }\n      }\n      else if( 'type' === type )\n      {\n        navigation_data.types.push( value );\n                \n        if( app.schema_browser_data.relations.t_f[value] )\n        {\n          navigation_data.fields = app.schema_browser_data.relations.t_f[value];\n        }\n                \n        if( app.schema_browser_data.relations.t_df[value] )\n        {\n          navigation_data.dynamic_fields = app.schema_browser_data.relations.t_df[value];\n        }\n      }\n\n      var navigation_content = '';\n\n      if( 0 !== navigation_data.fields.length )\n      {\n        navigation_data.fields.sort();\n        navigation_content += '<dt class=\"field\">Field</dt>' + \"\\n\";\n        for( var i in navigation_data.fields )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.fields[i];\n          navigation_content += '<dd class=\"field\"><a href=\"' + href + '\">' + navigation_data.fields[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.copyfield_source.length )\n      {\n        navigation_data.copyfield_source.sort();\n        navigation_content += '<dt class=\"copyfield\">Copied from</dt>' + \"\\n\";\n        for( var i in navigation_data.copyfield_source )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.copyfield_source[i];\n          navigation_content += '<dd class=\"copyfield\"><a href=\"' + href + '\">' + navigation_data.copyfield_source[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.copyfield_dest.length )\n      {\n        navigation_data.copyfield_dest.sort();\n        navigation_content += '<dt class=\"copyfield\">Copied to</dt>' + \"\\n\";\n        for( var i in navigation_data.copyfield_dest )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.copyfield_dest[i];\n          navigation_content += '<dd class=\"copyfield\"><a href=\"' + href + '\">' + navigation_data.copyfield_dest[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.dynamic_fields.length )\n      {\n        navigation_data.dynamic_fields.sort();\n        navigation_content += '<dt class=\"dynamic-field\">Dynamic Field</dt>' + \"\\n\";\n        for( var i in navigation_data.dynamic_fields )\n        {\n          var href = sammy_basepath + '?dynamic-field=' + navigation_data.dynamic_fields[i];\n          navigation_content += '<dd class=\"dynamic-field\"><a href=\"' + href + '\">' + navigation_data.dynamic_fields[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.types.length )\n      {\n        navigation_data.types.sort();\n        navigation_content += '<dt class=\"type\">Type</dt>' + \"\\n\";\n        for( var i in navigation_data.types )\n        {\n          var href = sammy_basepath + '?type=' + navigation_data.types[i];\n          navigation_content += '<dd class=\"type\"><a href=\"' + href + '\">' + navigation_data.types[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      related_navigation_element\n        .show()\n        .attr( 'class', type )\n        .html( navigation_content );\n    }\n    else\n    {\n      related_navigation_element\n        .hide();\n            \n      $( 'option:selected', related_select_element )\n        .removeAttr( 'selected' );\n    }\n\n    if( 'field' === type && value === app.schema_browser_data.unique_key_field )\n    {\n      $( '.unique-key-field', related_navigation_meta )\n        .addClass( 'active' );\n    }\n    else\n    {\n      $( '.unique-key-field', related_navigation_meta )\n        .removeClass( 'active' );\n    }\n\n    if( 'field' === type && value === app.schema_browser_data.default_search_field )\n    {\n      $( '.default-search-field', related_navigation_meta )\n        .addClass( 'active' );\n    }\n    else\n    {\n      $( '.default-search-field', related_navigation_meta )\n        .removeClass( 'active' );\n    }\n\n    if( params.callback )\n    {\n      params.callback( app.schema_browser_data, $( '#data', params.schema_browser_element ) );\n    }\n  }\n);\n\nsammy.bind\n(\n  'schema_browser_load',\n  function( event, params )\n  {\n    var core_basepath = params.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    if( app.schema_browser_data )\n    {\n      params.schema_browser_element = $( '#schema-browser', content_element );\n\n      sammy.trigger\n      (\n        'schema_browser_navi',\n        params\n      );\n    }\n    else\n    {\n      content_element\n        .html( '<div id=\"schema-browser\"><div class=\"loader\">Loading ...</div></div>' );\n            \n      $.ajax\n      (\n        {\n          url : core_basepath + '/admin/luke?numTerms=0&wt=json',\n          dataType : 'json',\n          beforeSend : function( xhr, settings )\n          {\n          },\n          success : function( response, text_status, xhr )\n          {\n            app.schema_browser_data = {\n            default_search_field : null,\n            unique_key_field : null,\n            key : {},\n            fields : {},\n            dynamic_fields : {},\n            types : {},\n            relations : {\n              f_df : {},\n              f_t  : {},\n              df_f : {},\n              df_t : {},\n              t_f  : {},\n              t_df : {}\n            }\n            };\n\n            app.schema_browser_data.fields = response.fields;\n            app.schema_browser_data.key = response.info.key;\n\n            $.ajax\n            (\n            {\n              url : core_basepath + '/admin/luke?show=schema&wt=json',\n              dataType : 'json',\n              beforeSend : function( xhr, settings )\n              {\n              },\n              success : function( response, text_status, xhr )\n              {\n                app.schema_browser_data.default_search_field = response.schema.defaultSearchField;\n                app.schema_browser_data.unique_key_field = response.schema.uniqueKeyField;\n\n                app.schema_browser_data.dynamic_fields = response.schema.dynamicFields;\n                app.schema_browser_data.types = response.schema.types;\n\n                for( var field in response.schema.fields )\n                {\n                  app.schema_browser_data.fields[field] = $.extend\n                  (\n                    {},\n                    app.schema_browser_data.fields[field],\n                    response.schema.fields[field]\n                  );\n                }\n\n                for( var field in app.schema_browser_data.fields )\n                {\n                  var copy_dests = app.schema_browser_data.fields[field].copyDests;\n                  for( var i in copy_dests )\n                  {\n                    var copy_dest = copy_dests[i];\n                    if( !app.schema_browser_data.fields[copy_dest] )\n                    {\n                      app.schema_browser_data.fields[copy_dest] = {\n                        partial : true,\n                        copySources : []\n                      };\n                    }\n\n                    if( app.schema_browser_data.fields[copy_dest].partial )\n                    {\n                      app.schema_browser_data.fields[copy_dest].copySources.push( field );\n                    }\n                  }\n\n                  var copy_sources = app.schema_browser_data.fields[field].copySources;\n                  for( var i in copy_sources )\n                  {\n                    var copy_source = copy_sources[i];\n                    if( !app.schema_browser_data.fields[copy_source] )\n                    {\n                      app.schema_browser_data.fields[copy_source] = {\n                        partial : true,\n                        copyDests : []\n                      };\n                    }\n\n                    if( app.schema_browser_data.fields[copy_source].partial )\n                    {\n                      app.schema_browser_data.fields[copy_source].copyDests.push( field );\n                    }\n                  }\n\n                  app.schema_browser_data.relations.f_t[field] = app.schema_browser_data.fields[field].type;\n\n                  if( !app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type] )\n                  {\n                    app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type] = [];\n                  }\n                  app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type].push( field );\n\n                  if( app.schema_browser_data.fields[field].dynamicBase )\n                  {\n                    app.schema_browser_data.relations.f_df[field] = app.schema_browser_data.fields[field].dynamicBase;\n\n                    if( !app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase] )\n                    {\n                      app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase] = [];\n                    }\n                    app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase].push( field );\n                  }\n                }\n\n                for( var dynamic_field in app.schema_browser_data.dynamic_fields )\n                {\n                  app.schema_browser_data.relations.df_t[dynamic_field] = app.schema_browser_data.dynamic_fields[dynamic_field].type;\n\n                  if( !app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type] )\n                  {\n                    app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type] = [];\n                  }\n                  app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type].push( dynamic_field );\n                }\n\n                $.get\n                (\n                  'tpl/schema-browser.html',\n                  function( template )\n                  {\n                    content_element\n                      .html( template );\n                                            \n                    var schema_browser_element = $( '#schema-browser', content_element );\n                    var related_element = $( '#related', schema_browser_element );\n                    var related_select_element = $( 'select', related_element );\n                    var data_element = $( '#data', schema_browser_element );\n\n                    var related_options = '';\n                                            \n                    var fields = [];\n                    for( var field_name in app.schema_browser_data.fields )\n                    {\n                      fields.push\n                      (\n                        '<option value=\"?field=' + field_name + '\">' + field_name + '</option>'\n                      );\n                    }\n                    if( 0 !== fields.length )\n                    {\n                      fields.sort();\n                      related_options += '<optgroup label=\"Fields\">' + \"\\n\";\n                      related_options += fields.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n                                            \n                    var dynamic_fields = [];\n                    for( var type_name in app.schema_browser_data.dynamic_fields )\n                    {\n                      dynamic_fields.push\n                      (\n                        '<option value=\"?dynamic-field=' + type_name + '\">' + type_name + '</option>'\n                      );\n                    }\n                    if( 0 !== dynamic_fields.length )\n                    {\n                      dynamic_fields.sort();\n                      related_options += '<optgroup label=\"DynamicFields\">' + \"\\n\";\n                      related_options += dynamic_fields.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n                                            \n                    var types = [];\n                    for( var type_name in app.schema_browser_data.types )\n                    {\n                      types.push\n                      (\n                        '<option value=\"?type=' + type_name + '\">' + type_name + '</option>'\n                      );\n                    }\n                    if( 0 !== types.length )\n                    {\n                      types.sort();\n                      related_options += '<optgroup label=\"Types\">' + \"\\n\";\n                      related_options += types.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n\n                    related_select_element\n                      .attr( 'rel', app.core_menu.find( '.active a' ).attr( 'href' ) )\n                      .append( related_options )\n                      .chosen();\n                                            \n                    related_select_element\n                      .die( 'change' )\n                      .live\n                      (\n                        'change',\n                        function( event )\n                        {\n                          var select_element = $( this );\n                          var option_element = $( 'option:selected', select_element );\n\n                          location.href = select_element.attr( 'rel' ) + option_element.val();\n                          return false;\n                        }\n                      );\n\n                    params.schema_browser_element = schema_browser_element;\n                    sammy.trigger\n                    (\n                      'schema_browser_navi',\n                      params\n                    );\n                  }\n                );\n              },\n              error : function( xhr, text_status, error_thrown)\n              {\n              },\n              complete : function( xhr, text_status )\n              {\n              }\n            }\n            );\n\n          },\n          error : function( xhr, text_status, error_thrown)\n          {\n          },\n          complete : function( xhr, text_status )\n          {\n          }\n        }\n      );\n    }\n  }\n);\n\n// #/:core/schema-browser\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(schema-browser)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    current_core = context.params.splat[0];\n\n    var trigger_params = {\n      active_core : this.active_core\n    };\n\n    var path = context.path.split( '?' );\n    if( path && path[1] )\n    {\n      var param = path[1].split( '=' );\n      trigger_params.route_params =  {\n        path : '?' + path[1],\n        type : param[0],\n        value : param[1]\n      }\n\n      trigger_params.callback = function( schema_browser_data, data_element )\n      {\n        var field = trigger_params.route_params.value;\n\n        var type = trigger_params.route_params.type;\n        var is_f = 'field' === type;\n        var is_df = 'dynamic-field' === type;\n        var is_t = 'type' === type;\n                \n        var options_element = $( '.options', data_element );\n        var sammy_basepath = context.path.indexOf( '/', context.path.indexOf( '/', 2 ) + 1 );\n\n        data_element\n          .show();\n\n        // -- head\n\n        var head_element = $( '.head', data_element );\n        if( is_f )\n        {\n          $( '.type', head_element ).html( 'Field' );\n        }\n        else if( is_df )\n        {\n          $( '.type', head_element ).html( 'Dynamic Field' );\n        }\n        else if( is_t )\n        {\n          $( '.type', head_element ).html( 'Type' );\n        }\n        $( '.name', head_element ).html( field.esc() );\n\n\n        var partial_state = false;\n        if( is_f )\n        {\n          partial_state = !!schema_browser_data.fields[field].partial;\n        }\n\n        $( '.partial', data_element )\n          .toggle( partial_state );\n\n        // -- docs\n        var docs_element = $( 'dt.docs', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].docs )\n        {\n          $( 'dd.docs', options_element )\n            .remove();\n\n          var target = '#/' + current_core + '/query?q=' + field.esc() + ':[* TO *]';\n          docs_element\n            .show()\n            .after( \n             '<dd class=\"docs\">'+\n               '<a href=\"'+target+'\">' + schema_browser_data.fields[field].docs + '</a>' +\n             '</dd>' );\n        }\n        else\n        {\n          $( '.docs', options_element )\n            .hide();\n        }\n\n        // -- distinct \n        var distinct_element = $( 'dt.distinct', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].distinct )\n        {\n          $( 'dd.distinct', options_element )\n            .remove();\n\n          distinct_element\n            .show()\n            .after( '<dd class=\"distinct\">' + schema_browser_data.fields[field].distinct + '</dd>' );\n        }\n        else\n        {\n          $( '.distinct', options_element )\n            .hide();\n        }\n\n        // -- position-increment-gap \n        var pig_element = $( 'dt.position-increment-gap', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].positionIncrementGap )\n        {\n          $( 'dd.position-increment-gap', options_element )\n            .remove();\n\n          pig_element\n            .show()\n            .after( '<dd class=\"position-increment-gap\">' + schema_browser_data.fields[field].positionIncrementGap + '</dd>' );\n        }\n        else\n        {\n          $( '.position-increment-gap', options_element )\n            .hide();\n        }\n\n        var similarity_element = $( 'dt.similarity', options_element );\n        if ( is_t && schema_browser_data.types[field] && schema_browser_data.types[field].similarity ) {\n            var similarity = schema_browser_data.types[field].similarity\n            if (similarity.details && similarity.className) {\n                $( 'dd.similarity', options_element ).remove();\n                similarity_element\n                    .show()\n                    .after(['<dd class=\"similarity\">', similarity.details.esc(), ' (', similarity.className.esc(), ') </dd>'].join(\"\"));\n            }\n        } else {\n            $( '.similarity', options_element ).hide();\n        }\n\n\n        // -- flags table\n        var flags_table = $( 'table.flags', data_element );\n\n        var flags_arr = [];\n        for( var key in schema_browser_data.key )\n        {\n          flags_arr.push( '<th data-key=\"' + key + '\">' + schema_browser_data.key[key] + '</th>' );\n        }\n\n        $( 'thead tr', flags_table )\n          .append( flags_arr.join( \"\\n\" ) );\n\n\n        var flags_body = $( 'tbody', flags_table );\n        flags_body.empty();\n\n        var generate_flags_row = function generate_flags_row( flags_str, title )\n        {\n          var flags_arr = [ '<th>' + title.esc() + '</th>' ];\n\n          if( 0 === flags_str.indexOf( '(' ) )\n          {\n            flags_arr.push( '<td colspan=\"2\" class=\"text\">' + flags_str + '</td>' );\n          }\n          else\n          {\n            var i = 0;\n            for( var key in schema_browser_data.key )\n            {\n              var flag_match = key === flags_str[i];\n\n              var flag_cell = '<td '\n                            + ' data-key=\"' + key + '\"'\n                            + ' class=\"' + ( flag_match ? 'check' : '' ) + '\"'\n                            + '>'\n                            + ( flag_match ? '<span>√</span>' : '&nbsp;' )\n                            + '</td>';\n\n              flags_arr.push( flag_cell );\n              i++;\n            }\n          }\n\n          flags_body\n            .append( '<tr>' + flags_arr.join( \"\\n\" ) + '</tr>' );\n        };\n\n        var flags = null;\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].flags )\n        {\n          flags = schema_browser_data.fields[field].flags;\n        }\n        else if( is_df && schema_browser_data.dynamic_fields[field] && schema_browser_data.dynamic_fields[field].flags )\n        {\n          flags = schema_browser_data.dynamic_fields[field].flags;\n        }\n\n        if( flags )\n        {\n          generate_flags_row( flags, 'Properties' );\n        }\n\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].schema )\n        {\n          generate_flags_row( schema_browser_data.fields[field].schema, 'Schema' );\n        }\n\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].index )\n        {\n          generate_flags_row( schema_browser_data.fields[field].index, 'Index' );\n        }\n\n\n        if( 0 !== $( 'tr', flags_body ).size() )\n        {\n          var col_count = 0;\n          for( var key in schema_browser_data.key )\n          {\n            var cols = $( '[data-key=\"' + key + '\"]', flags_table );\n            \n            var col_used = 0 !== cols.filter( '.check' ).size();\n            col_count += col_used;\n\n            cols.toggle( col_used );\n          }\n\n          $( 'td[colspan]', flags_body )\n            .attr( 'colspan', col_count );\n\n          flags_table.show();\n        }\n        else\n        {\n          flags_table.hide();\n        }\n\n        var analyzer_element = $( '.analyzer', data_element );\n        var analyzer_data = null;\n\n        var analysis_link = false;\n        var analysis_link_elements = $( 'p a', analyzer_element );\n        var analysis_target = '#/' + current_core + '/analysis?';\n\n        if( is_f )\n        {\n          analyzer_data = schema_browser_data.types[schema_browser_data.relations.f_t[field]];\n\n          analysis_link = true;\n          analysis_target += 'analysis.fieldname=' + field;\n        }\n        else if( is_df )\n        {\n          analyzer_data = schema_browser_data.types[schema_browser_data.relations.df_t[field]];\n        }\n        else if( is_t )\n        {\n          analyzer_data = schema_browser_data.types[field];\n          \n          analysis_link = true;\n          analysis_target += 'analysis.fieldtype=' + field;\n        }\n\n        if( analysis_link )\n        {\n          analysis_link_elements\n            .addClass( 'analysis' )\n            .attr( 'href', analysis_target );\n        }\n        else\n        {\n          analysis_link_elements\n            .removeClass( 'analysis' )\n            .removeAttr( 'href' );\n        }\n\n\n        if( analyzer_data )\n        {\n          var transform_analyzer_data_into_list = function( analyzer_data )\n          {\n            var args = [];\n            for( var key in analyzer_data.args )\n            {\n              var arg_class = '';\n              var arg_content = '';\n\n              if( 'true' === analyzer_data.args[key] || '1' === analyzer_data.args[key] )\n              {\n                arg_class = 'ico-1';\n                arg_content = key;\n              }\n              else if( 'false' === analyzer_data.args[key] || '0' === analyzer_data.args[key] )\n              {\n                arg_class = 'ico-0';\n                arg_content = key;\n              }\n              else\n              {\n                arg_content = key + ': ';\n\n                if( 'synonyms' === key || 'words' === key )\n                {\n                  // @TODO: set link target for file\n                  arg_content += '<a>' + analyzer_data.args[key] + '</a>';\n                }\n                else\n                {\n                  arg_content += analyzer_data.args[key];\n                }\n              }\n\n              args.push( '<dd class=\"' + arg_class + '\">' + arg_content + '</dd>' );\n            }\n\n            var list_content = '<dt>' + analyzer_data.className + '</dt>';\n            if( 0 !== args.length )\n            {\n              args.sort();\n              list_content += args.join( \"\\n\" );\n            }\n\n            return list_content;\n          }\n\n          // -- field-type\n          var field_type_element = $( 'dt.field-type', options_element );\n\n          $( 'dd.field-type', options_element )\n            .remove();\n\n          field_type_element\n            .show()\n            .after( '<dd class=\"field-type\">' + analyzer_data.className + '</dd>' );\n\n          $( '.toggle', analyzer_element )\n            .die( 'click' )\n            .live\n            (\n              'click',\n              function( event )\n              {\n                $( this ).closest( 'li' )\n                  .toggleClass( 'open' );\n\n                return false;\n              }\n            );\n\n          for( var key in analyzer_data )\n          {\n            var key_match = key.match( /^(.+)Analyzer$/ );\n            if( !key_match )\n            {\n              continue;\n            }\n\n            var analyzer_key_element = $( '.' + key_match[1], analyzer_element );\n            var analyzer_key_data = analyzer_data[key];\n\n            analyzer_element.show();\n            analyzer_key_element.show();\n\n            $( 'ul li', analyzer_key_element )\n            .removeClass( 'data' )\n            .hide();\n\n            for( var type in analyzer_key_data )\n            {\n              if( 'object' !== typeof analyzer_key_data[type] )\n              {\n                continue;\n              }\n\n              var type_element = $( '.' + type, analyzer_key_element );\n              var type_content = [];\n\n              type_element\n                .addClass( 'data' )\n                .show();\n\n              if( analyzer_key_data[type].className )\n              {\n                type_content.push( transform_analyzer_data_into_list( analyzer_key_data[type] ) );\n              }\n              else\n              {\n                for( var entry in analyzer_key_data[type] )\n                {\n                  type_content.push( transform_analyzer_data_into_list( analyzer_key_data[type][entry] ) );\n                }\n              }\n\n              $( 'dl', type_element )\n                .empty()\n                .append( type_content.join( \"\\n\" ) );\n            }\n\n            var name_element = $( 'dl:first dt a', analyzer_key_element );\n            if( analyzer_key_data.className )\n            {\n              name_element\n                .html( analyzer_key_data.className );\n            }\n\n            0 === $( 'ul li.data', analyzer_key_element ).size()\n            ? name_element.removeClass( 'toggle' )\n            : name_element.addClass( 'toggle' );\n          }\n        }\n\n        var terminfo_element = $( '.terminfo-holder', data_element );\n\n        terminfo_element\n          .removeClass( 'disabled' )\n          .removeClass( 'loaded' );\n\n        var trigger_element = $( '.trigger button', terminfo_element );\n        var form_element = $( 'form', terminfo_element );\n\n        trigger_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              form_element\n                .trigger( 'submit' );\n\n              return false;\n            }\n          );\n\n        form_element\n          .clearForm()\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              load_terminfo( trigger_element, core_basepath, field, data_element, terminfo_element );\n\n              terminfo_element\n                .addClass( 'loaded' );\n\n              return false;\n            }\n          );\n\n        $( '.max-holder', terminfo_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var element = $( this );\n\n              $( 'input', element.closest( 'form' ) )\n                .val( $( '.max', element ).text() );\n\n              form_element\n                .trigger( 'submit' );\n\n              return false;\n            }\n          );\n\n        $( '.trigger .autoload', terminfo_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $.cookie( cookie_schema_browser_autoload, $.cookie( cookie_schema_browser_autoload ) ? null : true );\n              $( this ).trigger( 'state' );\n\n              return false;\n            }\n          )\n          .die( 'state' )\n          .live\n          (\n            'state',\n            function( event )\n            {\n              $.cookie( cookie_schema_browser_autoload )\n                ? $( this ).addClass( 'on' )\n                : $( this ).removeClass( 'on' );\n            }\n          )\n          .die( 'init' )\n          .live\n          (\n            'init',\n            function( event )\n            {\n              if( !$.cookie( cookie_schema_browser_autoload ) )\n              {\n                return false;\n              }\n\n              $( this ).trigger( 'state' );\n              trigger_element.trigger( 'click' );\n            }\n          )\n          .trigger( 'init' );\n\n        $( 'div[class$=\"-holder\"]', terminfo_element )\n          .hide();\n\n        if( !is_f )\n        {\n          terminfo_element\n            .hide();\n        }\n        else\n        {\n          terminfo_element\n            .show();\n        }\n      }\n    }\n    else\n    {\n      trigger_params.callback = function( schema_browser_data, data_element )\n      {\n        data_element\n          .hide();\n      };\n    }\n\n    delete app.schema_browser_data;\n\n    sammy.trigger\n    (\n      'schema_browser_load',\n      trigger_params\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/js/scripts/threads.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/~threads\nsammy.get\n(\n  /^#\\/(~threads)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/threads.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/threads?wt=json',\n            dataType : 'json',\n            context : $( '#threads', content_element ),\n            beforeSend : function( xhr, settings )\n            {\n            },\n            success : function( response, text_status, xhr )\n            {\n              var self = this;\n\n              var threadDumpData = response.system.threadDump;\n              var threadDumpContent = [];\n              var c = 0;\n              for( var i = 1; i < threadDumpData.length; i += 2 )\n              {\n                var state = threadDumpData[i].state.esc();\n                var name = '<a title=\"' + state +'\"><span>' + threadDumpData[i].name.esc() + ' (' + threadDumpData[i].id.esc() + ')</span></a>';\n\n                var classes = [state];\n                var details = '';\n\n                if( 0 !== c % 2 )\n                {\n                  classes.push( 'odd' );\n                }\n\n                if( threadDumpData[i].lock )\n                {\n                  classes.push( 'lock' );\n                  name += \"\\n\" + '<p title=\"Waiting on\">' + threadDumpData[i].lock.esc() + '</p>';\n                }\n\n                if( threadDumpData[i].stackTrace && 0 !== threadDumpData[i].stackTrace.length )\n                {\n                  classes.push( 'stacktrace' );\n\n                  var stack_trace = threadDumpData[i].stackTrace\n                            .join( '###' )\n                            .esc()\n                            .replace( /\\(/g, '&#8203;(' )\n                            .replace( /###/g, '</li><li>' );\n\n                  name += '<div>' + \"\\n\"\n                       + '<ul>' + \"\\n\"\n                       + '<li>' + stack_trace + '</li>'\n                       + '</ul>' + \"\\n\"\n                       + '</div>';\n                }\n\n                var item = '<tr class=\"' + classes.join( ' ' ) +'\">' + \"\\n\"\n                         + '<td class=\"name\">' + name + '</td>' + \"\\n\"\n                         + '<td class=\"time\">' + threadDumpData[i].cpuTime.esc() + '<br>' + threadDumpData[i].userTime.esc() + '</td>' + \"\\n\"\n                         + '</tr>';\n                                \n                threadDumpContent.push( item );\n                c++;\n              }\n\n              var threadDumpBody = $( '#thread-dump tbody', this );\n\n              threadDumpBody\n                .html( threadDumpContent.join( \"\\n\" ) );\n                            \n              $( '.name a', threadDumpBody )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    $( this ).closest( 'tr' )\n                      .toggleClass( 'open' );\n                  }\n                );\n                            \n              $( '.controls a', this )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    var threads_element = $( self );\n                    var is_collapsed = threads_element.hasClass( 'collapsed' );\n                    var thread_rows = $( 'tr', threads_element );\n\n                    thread_rows\n                      .each\n                      (\n                        function( index, element )\n                        {\n                          if( is_collapsed )\n                          {\n                            $( element )\n                              .addClass( 'open' );\n                          }\n                          else\n                          {\n                            $( element )\n                              .removeClass( 'open' );\n                          }\n                        }\n                      );\n\n                    threads_element\n                      .toggleClass( 'collapsed' )\n                      .toggleClass( 'expanded' );\n                  }\n                );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/analysis.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"analysis\">\n\n  <div class=\"block analysis-error\" id=\"analysis-handler-missing\">\n\n    <div class=\"head\">This Functionality requires the <code>/analysis/field</code> Handler to be registered and active!</div>\n\n  </div>\n\n  <div class=\"block analysis-error\" id=\"analysis-error\">\n\n    <div class=\"body\"></div>\n\n  </div>\n\n  <div id=\"analysis-holder\">\n\n    <div id=\"field-analysis\">\n              \n      <form method=\"get\">\n                \n        <ul class=\"clearfix\">\n                    \n          <li class=\"index\">\n                        \n            <label for=\"analysis_fieldvalue_index\">Field Value (Index)</label>\n            <textarea name=\"analysis.fieldvalue\" id=\"analysis_fieldvalue_index\"></textarea>\n                        \n          </li>\n                    \n          <li class=\"query\">\n                        \n            <label for=\"analysis_fieldvalue_query\">Field Value (Query)</label>\n            <textarea name=\"analysis.query\" id=\"analysis_fieldvalue_query\"></textarea>\n                        \n          </li>\n\n          <li class=\"settings-holder clearfix\">\n            <div class=\"settings clearfix\">\n\n              <label for=\"type_or_name\">Analyse Fieldname / FieldType:</label>\n              <select id=\"type_or_name\"></select>\n              <a id=\"tor_schema\" href=\"#\"><span>Schema Browser</span>&nbsp;</a>\n\n              <div class=\"buttons clearfix\">\n\n                <button type=\"submit\"><span>Analyse Values</span></button>\n\n                <div class=\"verbose_output active\">\n                  <a>Verbose Output</a>\n                </div>\n\n              </div>\n\n            </div>\n          </li>\n                    \n        </ul>\n                \n      </form>\n            \n    </div>\n        \n    <div id=\"analysis-result\" class=\"clearfix verbose_output\"></div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/cloud.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"cloud\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"tree-content\" class=\"content clearfix\">\n\n      <div id=\"tree\" class=\"tree\">#tree</div>\n      <div id=\"file-content\" class=\"clearfix\">\n\n        <div id=\"prop\">\n          <ul></ul>\n        </div>\n\n        <div id=\"data\"></div>\n\n        <a class=\"close\"><span>[x]</span></a>\n\n      </div>\n\n    </div>\n\n    <div id=\"graph-content\" class=\"content clearfix\">\n\n      <div id=\"canvas\"></div>\n\n      <div id=\"legend\">\n        <ul>\n          <li class=\"leader\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Leader</li>\n          <li class=\"active\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Active</li>\n          <li class=\"recovering\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Recovering</li>\n          <li class=\"down\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Down</li>\n          <li class=\"recovery_failed\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Recovery Failed</li>\n          <li class=\"gone\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Gone</li>\n        </ul>\n      </div>\n\n    </div>\n\n  </div>\n\n  <div id=\"debug\">\n    <ul class=\"clearfix\">\n      <li class=\"clipboard\"><a href=\"#\" data-copied=\"Copied to Clipboard!\">Copy to Clipboard (BUGGY!)</a></li>\n      <li class=\"close\"><a href=\"#\">Close</a></li>\n    </ul>\n    <pre class=\"debug\"></pre>\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/cores.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"cores\" class=\"clearfix\">\n\n  <div id=\"ui-block\">&nbsp;</div>\n\n  <div id=\"frame\">\n\n    <div id=\"actions\" class=\"actions clearfix\">\n      \n      <button id=\"add\" class=\"action\"><span>Add Core</span></button>\n      <button id=\"unload\" class=\"warn\"><span>Unload</span></button>\n      <button id=\"rename\" class=\"action\"><span>Rename</span></button>\n      <button id=\"swap\" class=\"action\"><span>Swap</span></button>\n      <button id=\"reload\"><span>Reload</span></button>\n      <button id=\"optimize\"><span>Optimize</span></button>\n\n      <div class=\"action add\" data-rel=\"add\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"CREATE\">\n\n          <p class=\"clearfix\"><label for=\"add_name\">name:</label>\n          <input type=\"text\" name=\"name\" id=\"add_name\" value=\"new_core\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_instanceDir\">instanceDir:</label>\n          <input type=\"text\" name=\"instanceDir\" id=\"add_instanceDir\" value=\"new_core\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_dataDir\">dataDir:</label>\n          <input type=\"text\" name=\"dataDir\" id=\"dataDir\" value=\"data\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_config\">config:</label>\n          <input type=\"text\" name=\"config\" id=\"add_config\" value=\"solrconfig.xml\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_schema\">schema:</label>\n          <input type=\"text\" name=\"schema\" id=\"add_schema\" value=\"schema.xml\"></p>\n\n          <div class=\"cloud\">\n\n            <p class=\"clearfix\"><label for=\"add_collection\">collection:</label>\n            <input type=\"text\" name=\"collection\" id=\"add_collection\"></p>\n\n            <p class=\"clearfix\"><label for=\"add_shard\">shard:</label>\n            <input type=\"text\" name=\"shard\" id=\"shard\"></p>\n\n          </div>\n\n          <p class=\"clearfix error\">\n\n            <span></span>\n\n          </p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Add Core</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n      <div class=\"action rename\" data-rel=\"rename\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"RENAME\">\n          <input type=\"hidden\" name=\"core\" data-core=\"current\">\n\n          <p class=\"clearfix\"><label for=\"rename_other\">New Name:</label>\n          <input type=\"text\" name=\"other\" data-core=\"current\" id=\"rename_other\"></p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Rename Core</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n      <div class=\"action swap\" data-rel=\"swap\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"SWAP\">\n\n          <p class=\"clearfix\"><label for=\"swap_core\">this:</label>\n          <input type=\"text\" id=\"swap_core\" name=\"core\" data-core=\"current\" readonly=\"readonly\"></p>\n\n          <p class=\"clearfix\"><label for=\"swap_other\">and:</label>\n          <select name=\"other\" id=\"swap_other\" name=\"other\" class=\"other\">\n          </select></p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Swap Cores</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n    </div>\n\n    <div id=\"data\">\n\n      <div class=\"block\" id=\"core-data\">\n\n          <h2><span>Core</span></h2>\n          \n          <div class=\"message-container\">\n              <div class=\"message\"></div>\n          </div>\n\n          <div class=\"content\">\n\n          <ul>\n\n            <li class=\"startTime\"><dl class=\"clearfix\">\n              <dt><span>startTime:</span></dt>\n                <dd class=\"timeago\"></dd>\n            </dl></li>\n\n            <li class=\"instanceDir\"><dl class=\"clearfix\">\n              <dt><span>instanceDir:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"dataDir\"><dl class=\"clearfix\">\n              <dt><span>dataDir:</span></dt>\n                <dd></dd>\n            </dl></li>\n        \n          </ul>\n        \n        </div>\n      </div>\n\n      <div class=\"block\" id=\"index-data\">\n\n          <h2><span>Index</span></h2>\n          \n          <div class=\"message-container\">\n              <div class=\"message\"></div>\n          </div>\n\n          <div class=\"content\">\n          \n          <ul>\n\n            <li class=\"lastModified\"><dl class=\"clearfix\">\n              <dt><span>lastModified:</span></dt>\n                <dd class=\"timeago\"></dd>\n            </dl></li>\n\n            <li class=\"version\"><dl class=\"clearfix\">\n              <dt><span>version:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"numDocs\"><dl class=\"clearfix\">\n              <dt><span>numDocs:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"maxDoc\"><dl class=\"clearfix\">\n              <dt><span>maxDoc:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"deletedDocs\"><dl class=\"clearfix\">\n              <dt><span>deletedDocs:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"optimized\"><dl class=\"clearfix\">\n              <dt><span>optimized:</span></dt>\n                <dd class=\"ico\"><span></span></dd>\n            </dl></li>\n\n            <li class=\"current\"><dl class=\"clearfix\">\n              <dt><span>current:</span></dt>\n                <dd class=\"ico\"><span></span></dd>\n            </dl></li>\n\n            <li class=\"directory\"><dl class=\"clearfix\">\n              <dt><span>directory:</span></dt>\n                <dd></dd>\n            </dl></li>\n          \n          </ul>\n        \n        </div>\n      </div>\n\n    </div>\n  \n  </div>\n\n  <div id=\"navigation\" class=\"clearfix\">\n  \n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/dashboard.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"dashboard\">\n\n  <div class=\"clearfix\">\n\n    <div class=\"block fieldlist\" id=\"statistics\">\n\n      <h2><span>Statistics</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n                \n        <dl>\n                    \n          <dt class=\"index_last-modified\">Last Modified:</dt>\n            <dd class=\"index_last-modified value timeago\"></dd>\n\n          <dt class=\"index_num-docs\">Num Docs:</dt>\n            <dd class=\"index_num-docs value\"></dd>\n\n          <dt class=\"index_max-doc\">Max Doc:</dt>\n            <dd class=\"index_max-doc value\"></dd>\n\n          <dt class=\"index_deleted-docs\">Deleted Docs:</dt>\n            <dd class=\"index_deleted-docs value\"></dd>\n\n          <dt class=\"index_version\">Version:</dt>\n            <dd class=\"index_version value\"></dd>\n\n          <dt class=\"index_segmentCount\">Segment Count:</dt>\n            <dd class=\"index_segmentCount value\"></dd>\n\n          <dt class=\"index_optimized\">Optimized:</dt>\n            <dd class=\"index_optimized value ico\"><span></span>\n            <a>optimize now</a></dd>\n\n          <dt class=\"index_current\">Current:</dt>\n            <dd class=\"index_current value ico\"><span></span></dd>\n                        \n        </dl>\n           \n      </div>\n    </div>\n\n    <div class=\"block\" id=\"admin-extra\">\n\n      <h2><span>Admin Extra</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n      </div>\n        \n    </div>\n\n  </div>\n  <div class=\"clearfix\">\n\n    <div class=\"block\" id=\"replication\">\n\n      <h2><span class=\"is-replicating\">Replication</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content clearfix\"id=\"details\">\n\n        <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n\n          <thead>\n\n            <tr>\n                            \n              <td><span>Index</span></td>\n              <th>Version</th>\n              <th><abbr title=\"Generation\">Gen</abbr></th>\n              <th>Size</th>\n                        \n            </tr>\n                    \n          </thead>\n          <tbody>\n\n            <tr class=\"masterSearch\">\n\n              <th>Master (Searching)</th>\n              <td class=\"version\"><div>x</div></td>\n              <td class=\"generation\"><div>y</div></td>\n              <td class=\"size\"><div>z</div></td>\n\n            </tr>\n\n            <tr class=\"master\">\n\n              <th>Master (Replicable)</th>\n              <td class=\"version\"><div>x</div></td>\n              <td class=\"generation\"><div>y</div></td>\n              <td class=\"size\"><div>z</div></td>\n\n            </tr>\n\n            <tr class=\"slave slaveOnly\">\n\n              <th>Slave (Searching)</th>\n              <td class=\"version\"><div>a</div></td>\n              <td class=\"generation\"><div>c</div></td>\n              <td class=\"size\"><div>c</div></td>\n\n            </tr>\n\n          </tbody>\n\n        </table>\n            \n      </div>\n    </div>\n\n    <div class=\"block\" id=\"dataimport\">\n\n      <h2><span>Dataimport</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\"></div>\n    </div>\n\n  </div>\n  \n    <div class=\"block fieldlist\" id=\"healthcheck\">\n\n      <h2><span>Healthcheck</span></h2>\n\n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n        <dl>\n                    \n          <dt class=\"status\">Status:</dt>\n          <dd class=\"status value ico\">\n            <button class=\"healthcheck-status\">Healthcheck Status</button>\n          </dd>\n        </dl>\n      </div>\n\n    </div>\n\n  </div>\n  \n\n</div>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/dataimport.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"dataimport\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"error\"></div>\n\n    <div id=\"current_state\">\n\n      <p class=\"last_update\">Last Update: <abbr>Unknown</abbr></p>\n      <div class=\"info\">\n\n        <strong></strong>\n        <div class=\"details\">\n          <div class=\"docs\"></div>\n          <div class=\"dates\"></div>\n        </div>\n\n        <button class=\"abort-import warn\"><span data-aborting=\"Aborting Import\">Abort Import</span></button>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"raw_output\">\n\n      <h2>\n        <a class=\"toggle\"><span>Raw Status-Output</span></a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <div id=\"raw_output_container\"></div>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"config\">\n\n      <h2 class=\"clearfix\">\n        <a class=\"toggle\"><span>Configuration</span></a>\n        <a class=\"r reload_config\" title=\"Reload Configuration\">Reload</a>\n        <a class=\"r debug_mode\">Debug-Mode</a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <div id=\"dataimport_config\">\n\n          <div class=\"formatted\">\n\n            <div class=\"loader\">Loading ...</div>\n          \n          </div>\n\n          <div class=\"editable\">\n\n            <textarea></textarea>\n          \n          </div>\n\n        </div>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"debug_response\">\n\n      <h2>\n        <a class=\"toggle\"><span>Raw Debug-Response</span></a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <em>No Request executed</em>\n\n      </div>\n    \n    </div>\n  \n  </div>\n\n  <div id=\"form\">\n\n    <div id=\"navigation\">\n\n      <ul></ul>\n\n    </div>\n\n    <form action=\"#\" method=\"get\">\n\n      <label for=\"command\">\n        <a rel=\"help\">Command</a>\n      </label>\n      <select name=\"command\" id=\"command\">\n        <option>full-import</option>\n        <option>delta-import</option>\n      </select>\n\n      <label for=\"verbose\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"verbose\" id=\"verbose\" value=\"true\">\n        <a rel=\"help\">Verbose</a>\n      </label>\n\n      <label for=\"clean\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"clean\" id=\"clean\" value=\"true\">\n        <a rel=\"help\">Clean</a>\n      </label>\n\n      <label for=\"commit\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"commit\" id=\"commit\" value=\"true\">\n        <a rel=\"help\">Commit</a>\n      </label>\n\n      <label for=\"optimize\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"optimize\" id=\"optimize\" value=\"true\">\n        <a rel=\"help\">Optimize</a>\n      </label>\n\n      <label for=\"debug\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"debug\" id=\"debug\" value=\"true\">\n        <a rel=\"help\">Debug</a>\n      </label>\n\n      <label for=\"entity\">\n        <a rel=\"help\">Entity</a>\n      </label>\n      <select id=\"entity\"></select>\n\n      <label for=\"start\">\n        <a rel=\"help\">Start</a>,\n        <a rel=\"help\">Rows</a>\n      </label>\n      <div class=\"clearfix\">\n        <input type=\"text\" id=\"start\" placeholder=\"0\">\n        <input type=\"text\" id=\"rows\" placeholder=\"10\">\n      </div>\n\n      <label for=\"custom_parameters\">\n        <a rel=\"help\">Custom Parameters</a>\n      </label>\n      <input type=\"text\" id=\"custom_parameters\" value=\"\" placeholder=\"key1=val1&amp;key2=val2\">\n\n      <button class=\"execute\" type=\"submit\"><span data-debugmode=\"Execute with this Configuration →\">Execute</span></button>\n      <button class=\"refresh-status\"><span>Refresh Status</span></button>\n    \n    </form>\n\n    <p id=\"auto-refresh-status\"><a>Auto-Refresh Status</a></p>\n  \n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/index.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"index\" class=\"clearfix\">\n\n  <div class=\"clearfix\">\n\n    <div class=\"index-left\">\n\n      <div class=\"block\" id=\"instance\">\n\n          <h2><span>Instance</span></h2>\n\n          <div class=\"content\">\n\n            <ul class=\"data\">\n\n              <li class=\"start_time\"><dl class=\"clearfix\">\n                <dt><span>Start</span></dt>\n                  <dd class=\"timeago\"></dd>\n              </dl></li>\n\n              <li class=\"host\"><dl class=\"clearfix\">\n                <dt><span>Host</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_cwd\"><dl class=\"clearfix\">\n                <dt><span>CWD</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_instance\"><dl class=\"clearfix\">\n                <dt><span>Instance</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_data\"><dl class=\"clearfix\">\n                <dt><span>Data</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_index\"><dl class=\"clearfix\">\n                <dt><span>Index</span></dt>\n                <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n      <div class=\"block\" id=\"versions\">\n\n          <h2><span>Versions</span></h2>\n\n          <div class=\"content\">\n\n            <ul class=\"data\">\n\n              <li class=\"solr solr_spec_version\"><dl class=\"clearfix\">\n                <dt><span>solr-spec</span></dt>\n                  <dd></dd>\n              </dl></li>\n              \n              <li class=\"solr_impl_version\"><dl class=\"clearfix\">\n                <dt class=\"\"><span>solr-impl</span></dt>\n                  <dd></dd>\n              </dl></li>\n              \n              <li class=\"lucene lucene_spec_version\"><dl class=\"clearfix\">\n                <dt><span>lucene-spec</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"lucene_impl_version\"><dl class=\"clearfix\">            \n                <dt><span>lucene-impl</span></dt>\n                  <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n    </div>\n      \n    <div class=\"index-right\">\n\n      <div class=\"block\" id=\"system\">\n\n          <h2><span>System</span></h2>\n          <a class=\"reload\"><span>reload</span></a>\n\n          <div class=\"content\">\n\n            <div id=\"physical-memory-bar\">\n\n              <p data-desc=\"physical-memory-bar\">Physical Memory</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n            <div id=\"swap-space-bar\">\n\n              <p data-desc=\"swap-space-bar\">Swap Space</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n          <div id=\"file-descriptor-bar\">\n\n              <p data-desc=\"file-descriptor-bar\">File Descriptor Count</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n            <p class=\"no-info\">Sorry, no information available</p>\n\n          </div>\n\n      </div>\n\n    </div>\n\n  </div>\n\n  <div class=\"clearfix\">\n\n    <div class=\"index-left\">\n\n      <div class=\"block\" id=\"jvm\">\n\n          <h2><span>JVM</span></h2>\n\n          <div class=\"content clearfix\">\n\n            <ul class=\"data\">\n\n              <li class=\"jvm_version\"><dl class=\"clearfix\">            \n                <dt><span>Runtime</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"processors\"><dl class=\"clearfix\">            \n                <dt><span>Processors</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"command_line_args\"><dl class=\"clearfix\">\n                <dt><span>Args</span></dt>\n                <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n    </div>\n    <div class=\"index-right\">\n\n      <div class=\"block\" id=\"jvm-memory\">\n\n          <h2><span data-desc=\"jvm-memory-bar\">JVM-Memory</span></h2>\n\n          <div class=\"content\">\n\n            <div id=\"jvm-memory-bar\">\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                    <div class=\"bar-used bar\">\n                      <span class=\"bar-used val\"></span>\n\n                    </div>\n\n                  </div>\n\n                </div>\n\n              </div>\n            </div>\n\n          </div>\n\n      </div>\n\n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/logging.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"logging\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n  </div>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/plugins.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"plugins\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n  </div>\n\n  <div id=\"navigation\" class=\"clearfix\">\n\n    <ul>\n    </ul>\n  \n  </div>\n\n  <div id=\"recording\">\n    <div class=\"wrapper clearfix\">\n\n      <p class=\"loader\">Watching for Changes</p>\n      <button class=\"primary\">Stop &amp; Show Changes</button>\n\n    </div>\n  </div> \n\n</div>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/query.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"query\" class=\"clearfix\">\n\n  <div id=\"form\">\n\n    <form action=\"#\" method=\"get\">\n\n      <label for=\"qt\">\n        <a rel=\"help\">Request-Handler (qt)</a>\n      </label>\n      <input type=\"text\" id=\"qt\" value=\"/select\" title=\"Request handler in solrconfig.xml.\">\n\n      <fieldset class=\"common\">\n        <legend>common</legend>\n        <div class=\"fieldset\">\n\n        <label for=\"q\">\n          q\n        </label>\n        <textarea name=\"q\" id=\"q\" title=\"The query string.\">*:*</textarea>\n\n        <label for=\"fq\">\n          <a rel=\"help\">fq</a>\n        </label>\n        <input type=\"text\" id=\"fq\" name=\"fq\" class=\"multiple\" title=\"Filter query.\">\n\n        <label for=\"sort\">\n          <a rel=\"help\">sort</a>\n        </label>\n        <input type=\"text\" id=\"sort\" name=\"sort\" class=\"multiple\" title=\"Sort field or function with asc|desc.\">\n\n        <label for=\"start\">\n          <a rel=\"help\">start</a>,\n          <a rel=\"help\">rows</a>\n        </label>\n        <div class=\"clearfix\">\n          <input type=\"text\" name=\"start\" id=\"start\" placeholder=\"0\" pattern=\"[0-9]+\" title=\"Number of leading documents to skip. (Integer)\">\n          <input type=\"text\" name=\"rows\" id=\"rows\" placeholder=\"10\" pattern=\"[0-9]+\" title=\"Number of documents to return after 'start'. (Integer)\">\n        </div>\n\n        <label for=\"fl\">\n          <a rel=\"help\">fl</a>\n        </label>\n        <input type=\"text\" name=\"fl\" id=\"fl\" value=\"\" title=\"Field list, comma separated.\">\n\n        <label for=\"df\">\n          <a rel=\"help\">df</a>\n        </label>\n        <input type=\"text\" name=\"df\" id=\"df\" value=\"\" title=\"Default search field\">\n\n        <label for=\"custom_parameters\">\n          <a rel=\"help\">Raw Query Parameters</a>\n        </label>\n        <input type=\"text\" id=\"custom_parameters\" value=\"\" placeholder=\"key1=val1&amp;key2=val2\">\n\n        <label for=\"wt\">\n          <a rel=\"help\">wt</a>\n        </label>\n        <select name=\"wt\" id=\"wt\" title=\"The writer type (response format).\">\n          <option>xml</option>\n          <option>json</option>\n          <option>python</option>\n          <option>ruby</option>\n          <option>php</option>\n          <option>csv</option>\n        </select>\n\n        <label for=\"indent\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"indent\" id=\"indent\" value=\"true\" title=\"Indent results.\" checked=\"checked\">\n          <a rel=\"help\">indent</a>\n        </label>\n\n        <label for=\"debugQuery\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"debugQuery\" id=\"debugQuery\" value=\"true\" title=\"Show timing and diagnostics.\">\n          <a rel=\"help\">debugQuery</a>\n        </label>\n\n        </div>\n      </fieldset>\n\n      <fieldset class=\"dismax optional\">\n        <legend>\n          <label for=\"dismax\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"defType\" id=\"dismax\" value=\"dismax\">\n            dismax\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"q_alt\">q.alt</label>\n        <input type=\"text\" name=\"q.alt\" id=\"q_alt\" title=\"Alternate query when 'q' is absent.\">\n\n        <label for=\"qf\">qf</label>\n        <input type=\"text\" name=\"qf\" id=\"qf\" title=\"Query fields with optional boosts.\">\n\n        <label for=\"mm\">mm</label>\n        <input type=\"text\" name=\"mm\" id=\"mm\" title=\"Min-should-match expression.\">\n\n        <label for=\"pf\">pf</label>\n        <input type=\"text\" name=\"pf\" id=\"pf\" title=\"Phrase boosted fields.\">\n\n        <label for=\"ps\">ps</label>\n        <input type=\"text\" name=\"ps\" id=\"ps\" title=\"Phrase boost slop.\">\n\n        <label for=\"qs\">qs</label>\n        <input type=\"text\" name=\"qs\" id=\"qs\" title=\"Query string phrase slop.\">\n\n        <label for=\"tie\">tie</label>\n        <input type=\"text\" name=\"tie\" id=\"tie\" title=\"Score tie-breaker. Try 0.1.\">\n\n        <label for=\"bq\">bq</label>\n        <input type=\"text\" name=\"bq\" id=\"bq\" title=\"Boost query.\">\n\n        <label for=\"bf\">bf</label>\n        <input type=\"text\" name=\"bf\" id=\"bf\" title=\"Boost function (added).\">\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"edismax optional\">\n        <legend>\n          <label for=\"edismax\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"defType\" id=\"edismax\" value=\"edismax\">\n            <strong>e</strong>dismax\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"edismax_q_alt\">q.alt</label>\n        <input type=\"text\" name=\"q.alt\" id=\"edismax_q_alt\"  title=\"Alternate query when 'q' is absent.\">\n\n        <label for=\"edismax_qf\">qf</label>\n        <input type=\"text\" name=\"qf\" id=\"edismax_qf\" title=\"Query fields with optional boosts.\">\n\n        <label for=\"edismax_mm\">mm</label>\n        <input type=\"text\" name=\"mm\" id=\"edismax_mm\" title=\"Min-should-match expression.\">\n\n        <label for=\"edismax_pf\">pf</label>\n        <input type=\"text\" name=\"pf\" id=\"edismax_pf\" title=\"Phrase boosted fields.\">\n\n        <label for=\"edismax_ps\">ps</label>\n        <input type=\"text\" name=\"ps\" id=\"edismax_ps\" title=\"Phrase boost slop.\">\n\n        <label for=\"edismax_qs\">qs</label>\n        <input type=\"text\" name=\"qs\" id=\"edismax_qs\" title=\"Query string phrase slop.\">\n\n        <label for=\"edismax_tie\">tie</label>\n        <input type=\"text\" name=\"tie\" id=\"edismax_tie\" title=\"Score tie-breaker. Try 0.1.\">\n\n        <label for=\"edismax_bq\">bq</label>\n        <input type=\"text\" name=\"bq\" id=\"edismax_bq\" title=\"Boost query.\">\n\n        <label for=\"edismax_bf\">bf</label>\n        <input type=\"text\" name=\"bf\" id=\"edismax_bf\" title=\"Boost function (added).\">\n\n        <label for=\"edismax_uf\" title=\"User Fields\">uf</label>\n        <input type=\"text\" name=\"uf\" id=\"edismax_uf\">\n\n        <label for=\"edismax_pf2\" title=\"bigram phrase boost fields\">pf2</label>\n        <input type=\"text\" name=\"pf2\" id=\"edismax_pf2\">\n\n        <label for=\"edismax_pf3\" title=\"trigram phrase boost fields\">pf3</label>\n        <input type=\"text\" name=\"pf3\" id=\"edismax_pf3\">\n\n        <label for=\"edismax_ps2\" title=\"phrase slop for bigram phrases\">ps2</label>\n        <input type=\"text\" name=\"ps2\" id=\"edismax_ps2\">\n\n        <label for=\"edismax_ps3\" title=\"phrase slop for trigram phrases\">ps3</label>\n        <input type=\"text\" name=\"ps3\" id=\"edismax_ps3\">\n\n        <label for=\"edismax_boost\" title=\"multiplicative boost function\">boost</label>\n        <input type=\"text\" name=\"boost\" id=\"edismax_boost\">\n\n        <label for=\"edismax_stopwords\" class=\"checkbox\" title=\"remove stopwords from mandatory 'matching' component\">\n          <input type=\"checkbox\" name=\"stopwords\" id=\"edismax_stopwords\" value=\"true\" checked=\"checked\">\n          stopwords\n        </label>\n\n        <label for=\"edismax_lowercaseOperators\" class=\"checkbox\" title=\"Enable lower-case 'and' and 'or' as operators\">\n          <input type=\"checkbox\" name=\"lowercaseOperators\" id=\"edismax_lowercaseOperators\" value=\"true\" checked=\"checked\">\n          lowercaseOperators\n        </label>\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"hl optional\">\n        <legend>\n          <label for=\"hl\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"hl\" id=\"hl\" value=\"true\" title=\"Enable highlighting.\">\n            hl\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"hl_fl\">hl.fl</label>\n        <input type=\"text\" name=\"hl.fl\" id=\"hl_fl\" value=\"\" title=\"Fields to highlight on.\">\n\n        <label for=\"hl_simple_pre\">hl.simple.pre</label>\n        <input type=\"text\" name=\"hl.simple.pre\" id=\"hl_simple_pre\" value=\"<em>\">\n\n        <label for=\"hl_simple_post\">hl.simple.post</label>\n        <input type=\"text\" name=\"hl.simple.post\" id=\"hl_simple_post\" value=\"</em>\">\n\n        <label for=\"hl_requireFieldMatch\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.requireFieldMatch\" id=\"hl_requireFieldMatch\" value=\"true\">\n          hl.requireFieldMatch\n        </label>\n\n        <label for=\"hl_usePhraseHighlighter\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.usePhraseHighlighter\" id=\"hl_usePhraseHighlighter\" value=\"true\">\n          hl.usePhraseHighlighter\n        </label>\n\n        <label for=\"hl_highlightMultiTerm\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.highlightMultiTerm\" id=\"hl_highlightMultiTerm\" value=\"true\">\n          hl.highlightMultiTerm\n        </label>\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"facet optional\">\n        <legend>\n          <label for=\"facet\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"facet\" id=\"facet\" value=\"true\">\n            facet\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"facet_query\">facet.query</label>\n        <textarea name=\"facet.query\" id=\"facet_query\"></textarea>\n\n        <label for=\"facet_field\">facet.field</label>\n        <input type=\"text\" name=\"facet.field\" id=\"facet_field\">\n\n        <label for=\"facet_prefix\">facet.prefix</label>\n        <input type=\"text\" name=\"facet.prefix\" id=\"facet_prefix\">\n\n        </div>\n      </fieldset>\n\n      <fieldset class=\"spatial optional\">\n        <legend>\n          <label for=\"spatial\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"spatial\" id=\"spatial\" value=\"true\">\n            spatial\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"pt\">pt</label>\n        <input type=\"text\" name=\"pt\" id=\"pt\">\n\n        <label for=\"sfield\">sfield</label>\n        <input type=\"text\" name=\"sfield\" id=\"sfield\">\n\n        <label for=\"d\">d</label>\n        <input type=\"text\" name=\"d\" id=\"d\">\n        \n        </div>\n      </fieldset>\n\n      <fieldset class=\"spellcheck optional\">\n        <legend>\n          <label for=\"spellcheck\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"spellcheck\" id=\"spellcheck\" value=\"true\">\n            spellcheck\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"spellcheck_build\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.build\" id=\"spellcheck_build\" value=\"true\">\n          spellcheck.build\n        </label>\n\n        <label for=\"spellcheck_reload\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.reload\" id=\"spellcheck_reload\" value=\"true\">\n          spellcheck.reload\n        </label>\n\n        <label for=\"spellcheck_q\">spellcheck.q</label>\n        <input type=\"text\" name=\"spellcheck.q\" id=\"spellcheck_q\">\n\n        <label for=\"spellcheck_dictionary\">spellcheck.dictionary</label>\n        <input type=\"text\" name=\"spellcheck.dictionary\" id=\"spellcheck_dictionary\">\n\n        <label for=\"spellcheck_count\">spellcheck.count</label>\n        <input type=\"text\" name=\"spellcheck.count\" id=\"spellcheck_count\">\n\n        <label for=\"spellcheck_onlyMorePopular\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.onlyMorePopular\" id=\"spellcheck_onlyMorePopular\" value=\"true\">\n          spellcheck.onlyMorePopular\n        </label>\n\n        <label for=\"spellcheck_extendedResults\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.extendedResults\" id=\"spellcheck_extendedResults\" value=\"true\">\n          spellcheck.extendedResults\n        </label>\n\n        <label for=\"spellcheck_collate\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.collate\" id=\"spellcheck_collate\" value=\"true\">\n          spellcheck.collate\n        </label>\n\n        <label for=\"spellcheck_maxCollations\">spellcheck.maxCollations</label>\n        <input type=\"text\" name=\"spellcheck.maxCollations\" id=\"spellcheck_maxCollations\">\n\n        <label for=\"spellcheck_maxCollationTries\">spellcheck.maxCollationTries</label>\n        <input type=\"text\" name=\"spellcheck.maxCollationTries\" id=\"spellcheck_maxCollationTries\">\n\n        <label for=\"spellcheck_accuracy\">spellcheck.accuracy</label>\n        <input type=\"text\" name=\"spellcheck.accuracy\" id=\"spellcheck_accuracy\">\n      \n      </fieldset>\n\n\n      <button type=\"submit\">Execute Query</button>\n\n    </form>\n\n  </div>\n\n  <div id=\"result\">\n\n    <a id=\"url\" href=\"#\"></a>\n\n    <div id=\"response\">\n\n      <iframe src=\"about:blank\"></iframe>\n    \n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/replication.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"replication\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"error\"></div>\n\n    <div class=\"replicating block\">\n\n      <div id=\"progress\">\n\n        <div id=\"start\"><div class=\"info\">\n\n          <span>Wed May 11 19:41:48 UTC 2011</span>\n                \n        </div></div>\n\n        <div id=\"speed\"><div class=\"info\">\n\n          <span>5.1 MB</span>/s\n                \n        </div></div>\n\n        <div id=\"bar\">\n\n          <div id=\"bar-info\"><div class=\"info\">\n\n            <div class=\"files\"><span>24</span> Files</div>\n            <div class=\"size\"><span>226.85 MB</span></div>\n\n          </div></div>\n\n          <div id=\"eta\"><div class=\"info\">\n\n            ETA: <span>25s</span>\n                    \n          </div></div>\n\n          <div id=\"done\" style=\"width: 20.0%;\">\n\n            <div class=\"percent\">\n\n              <span>20</span>%\n\n            </div>\n\n            <div id=\"done-info\"><div class=\"info\">\n\n              <div class=\"files\"><span>2</span> Files</div>\n              <div class=\"size\"><span>91.76 MB</span></div>\n\n            </div></div>\n\n          </div>\n\n        </div>\n\n      </div>\n\n      <div id=\"current-file\" class=\"clearfix\">\n\n        <div class=\"label\"><span class=\"loader\">Current File:</span></div>\n        <div class=\"file\">_a.fdt</div>\n        <div class=\"progress\">\n          <span class=\"done\">84 MB</span> / <span class=\"total\">102.98 MB</span> [<span class=\"percent\">81</span>%]\n        </div>\n\n      </div>\n        \n    </div>\n\n    <div id=\"iterations\" class=\"slaveOnly block clearfix\">\n\n      <div class=\"label\"><span class=\"\">Iterations:</span></div>\n      <div class=\"iterations\">\n        <ul>\n        </ul>\n        <a>\n          <span class=\"expand\">Show all Iterations</span>\n          <span class=\"collapse\">Hide past Iterations</span>\n        </a>\n      </div>\n        \n    </div>\n\n    <div id=\"details\" class=\"block clearfix\">\n\n      <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n\n        <thead>\n\n          <tr>\n                        \n            <td><span>Index</span></td>\n            <th>Version</th>\n            <th><abbr title=\"Generation\">Gen</abbr></th>\n            <th>Size</th>\n                    \n          </tr>\n                \n        </thead>\n        <tbody>\n\n          <tr class=\"masterSearch\">\n\n            <th>Master (Searching)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n          <tr class=\"master\">\n\n            <th>Master (Replicable)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n          <tr class=\"slave slaveOnly\">\n\n            <th>Slave (Searching)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n        </tbody>\n\n      </table>\n\n    </div>\n\n    <div id=\"settings\" class=\"settings block clearfix slaveOnly\">\n\n      <div class=\"label\"><span>Settings:</span></div>\n      <ul>\n        <li class=\"masterUrl\"><dl class=\"clearfix\">\n          <dt>master url:</dt>\n            <dd></dd>\n        </dl></li>\n        <li class=\"isPollingDisabled\"><dl class=\"clearfix\">\n          <dt>polling enable:</dt>\n            <dd class=\"ico\">&nbsp;</dd>\n        </dl></li>\n      </ul>\n        \n    </div>\n\n    <div id=\"master-settings\" class=\"settings block clearfix\">\n\n      <div class=\"label\"><span>Settings (Master):</span></div>\n      <ul>\n        <li class=\"replicationEnabled\"><dl class=\"clearfix\">\n          <dt>replication enable:</dt>\n            <dd class=\"ico\">&nbsp;</dd>\n        </dl></li>\n        <li class=\"replicateAfter\"><dl class=\"clearfix\">\n          <dt>replicateAfter:</dt>\n            <dd></dd>\n        </dl></li>\n        <li class=\"confFiles\"><dl class=\"clearfix\">\n          <dt>confFiles:</dt>\n            <dd></dd>\n        </dl></li>\n      </ul>\n        \n    </div>\n    \n  </div>\n\n  <div id=\"navigation\">\n\n    <div class=\"timer\">\n\n      <p>Next Run: <span class=\"approx\">~</span><span class=\"tick\">15m 8s</span></p>\n      <small>Sat Mar 03 11:00:00 CET 2012</smalL>\n\n    </div>\n\n    <button class=\"refresh-status\"><span>Refresh Status</span></button>\n\n    <div class=\"slaveOnly\">        \n      <button class=\"optional replicate-now primary\" data-command=\"fetchindex\"><span>Replicate now</span></button>\n      <button class=\"optional abort-replication warn\" data-command=\"abortfetch\"><span>Abort Replication</span></button>\n\n      <button class=\"optional disable-polling\" data-command=\"disablepoll\"><span>Disable Polling</span></button>\n      <button class=\"optional enable-polling\" data-command=\"enablepoll\"><span>Enable Polling</span></button>\n    </div>\n\n    <div class=\"masterOnly\">\n      <button class=\"optional disable-replication warn\" data-command=\"disablereplication\"><span>Disable Replication<span></button>\n      <button class=\"optional enable-replication warn\" data-command=\"enablereplication\"><span>Enable Replication<span></button>\n    </div>\n    \n  </div>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/schema-browser.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"schema-browser\" class=\"loaded\">\n\n  <div class=\"clearfix\">\n\n    <div id=\"data\">\n\n      <div id=\"field\">\n\n        <div class=\"field-options\">\n\n          <div class=\"block head\">\n            <h2>\n              <span class=\"type\"></span>:\n              <span class=\"name\"></span>\n            </h2>\n          </div>\n\n          <div class=\"partial\">\n\n            <p>Because your Index is empty, we have not enough Information about this Field</p>\n\n          </div>\n\n          <dl class=\"options clearfix\">\n\n            <dt class=\"field-type\">Field-Type:</dt>\n\n            <dt class=\"similarity\">Similarity:</dt>\n\n            <dt class=\"position-increment-gap\"><abbr title=\"Position Increment Gap\">PI Gap</abbr>:</dt>\n\n            <dt class=\"docs\">Docs:</dt>\n\n            <dt class=\"distinct\">Distinct:</dt>\n                        \n          </dl>\n\n          <table class=\"flags\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n\n            <thead>\n\n              <tr>\n\n                <td>Flags:</td>\n\n              </tr>\n\n            </thead>\n\n            <tbody>\n\n            </tbody>\n\n          </table>\n\n          <ul class=\"analyzer\">\n            <li class=\"clearfix index\">\n\n              <p><a><span>Index&nbsp;Analyzer:</span></a></p>\n              <dl>\n                <dt><a class=\"toggle\"></a></dt>\n              </dl>\n\n              <ul>\n                <li class=\"clearfix charFilters\">\n                  <p>Char Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix tokenizer\">\n                  <p>Tokenizer:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix filters\">\n                  <p>Token Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n              </ul>\n                            \n            </li>\n            <li class=\"clearfix query\">\n\n              <p><a><span>Query&nbsp;Analyzer:</span></a></p>\n              <dl>\n                <dt><a class=\"toggle\"></a></dt>\n              </dl>\n\n              <ul>\n                <li class=\"clearfix charFilters\">\n                  <p>Char Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix tokenizer\">\n                  <p>Tokenizer:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix filters\">\n                  <p>Token Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n              </ul>\n                            \n            </li>\n          </ul>\n\n        </div>\n\n        <div class=\"terminfo-holder clearfix\">\n\n          <div class=\"trigger\">\n\n            <button class=\"submit\"><span>Load Term Info</span></button>\n\n            <a class=\"autoload\" title=\"Automatically load Term Info?\"><span>Autoload</span></a>\n\n          </div>\n\n          <p class=\"status\">Sorry, no Term Info available :(</p>\n\n          <div class=\"topterms-holder\">\n\n            <form>\n            <p class=\"head\">\n              <input type=\"text\">\n              <a class=\"max-holder\" title=\"Load all Top-Terms\">/<span class=\"max\"></span></a> Top-Terms:\n              <a id=\"query_link\" href=\"#\"><span>Query</span>&nbsp;</a>\n            </p>\n            </form>\n\n            <ul>\n\n            </ul>\n\n          </div>\n\n          <div class=\"histogram-holder\">\n\n            <p class=\"head\">Histogram:</p>\n\n            <ul></ul>\n\n          </div>\n\n        </div>\n\n      </div>\n\n    </div>\n\n    <div id=\"related\">\n\n      <select>\n        <option value=\"\" selected=\"selected\">Please select ...</option>\n      </select>\n\n      <dl id=\"f-df-t\">\n      </dl>\n\n      <dl class=\"ukf-dsf\">\n\n        <dt class=\"unique-key-field\">Unique Key Field</dt>\n\n        <dt class=\"default-search-field\">Default Search Field</dt>\n            \n      </dl>   \n\n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/paraphrase/solr-webapp/webapp/tpl/threads.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"threads\" class=\"collapsed\">\n\n  <div class=\"controls\">\n    <a>\n      <span class=\"expand\">Show all Stacktraces</span>\n      <span class=\"collapse\">Hide all Stacktraces</span>\n    </a>\n  </div>\n\n  <div id=\"thread-dump\">\n\n    <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n\n      <thead>\n\n        <tr>\n\n          <th class=\"name\">name</th>\n          <th class=\"time\">cpuTime / userTime</th>\n                \n        </tr>\n\n      </thead>\n\n      <tbody>\n\n      </tbody>\n\n    </table>\n    \n  </div>\n\n  <div class=\"controls\">\n    <a>\n      <span class=\"expand\">Show all Stacktraces</span>\n      <span class=\"collapse\">Hide all Stacktraces</span>\n    </a>\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nSolr example\n------------\n\nThis directory contains an instance of the Jetty Servlet container setup to \nrun Solr using an example configuration.\n\nTo run this example:\n\n  java -jar start.jar\n\nin this example directory, and when Solr is started connect to \n\n  http://localhost:8983/solr/\n\nTo add documents to the index, use the post.jar (or post.sh script) in\nthe example/exampledocs subdirectory (while Solr is running), for example:\n\n     cd exampledocs\n     java -jar post.jar *.xml\nOr:  sh post.sh *.xml\n\nFor more information about this example please read...\n\n * example/solr/README.txt\n   For more information about the \"Solr Home\" and Solr specific configuration\n * http://lucene.apache.org/solr/tutorial.html\n   For a Tutorial using this example configuration\n * http://wiki.apache.org/solr/SolrResources \n   For a list of other tutorials and introductory articles.\n\nNotes About These Examples\n--------------------------\n\n* SolrHome *\n\nBy default, start.jar starts Solr in Jetty using the default Solr Home\ndirectory of \"./solr/\" (relative to the working directory of hte servlet \ncontainer).  To run other example configurations, you can specify the \nsolr.solr.home system property when starting jetty...\n\n  java -Dsolr.solr.home=multicore -jar start.jar\n  java -Dsolr.solr.home=example-DIH/solr -jar start.jar\n\n* References to Jar Files Outside This Directory *\n\nVarious example SolrHome dirs contained in this directory may use \"<lib>\"\nstatements in the solrconfig.xml file to reference plugin jars outside of \nthis directory for loading \"contrib\" plugins via relative paths.  \n\nIf you make a copy of this example server and wish to use the \nExtractingRequestHandler (SolrCell), DataImportHandler (DIH), UIMA, the \nclustering component, or any other modules in \"contrib\", you will need to \ncopy the required jars or update the paths to those jars in your \nsolrconfig.xml.\n\n* Logging *\n\nBy default, Jetty & Solr will log to the console a logs/solr.log. This can be convenient when \nfirst getting started, but eventually you will want to log just to a file. To \nconfigure logging, edit the log4j.properties file in \"resources\".\n \nIt is also possible to setup log4j or other popular logging frameworks.\n\n"
  },
  {
    "path": "oqa-solr/relsyn/cloud-scripts/zkcli.bat",
    "content": "REM You can override pass the following parameters to this script:\r\nREM \r\n\r\nset JVM=java\r\n\r\nREM  Find location of this script\r\n\r\nset SDIR=%~dp0\r\nif \"%SDIR:~-1%\"==\"\\\" set SDIR=%SDIR:~0,-1%\r\n\r\n     \r\n\"%JVM%\" -classpath \"%SDIR%\\..\\solr-webapp\\webapp\\WEB-INF\\lib\\*;%SDIR%\\..\\lib\\ext\" org.apache.solr.cloud.ZkCLI %*\r\n"
  },
  {
    "path": "oqa-solr/relsyn/cloud-scripts/zkcli.sh",
    "content": "#!/usr/bin/env bash\n\n# You can override pass the following parameters to this script:\n# \n\nJVM=\"java\"\n\n# Find location of this script\n\nsdir=\"`dirname \\\"$0\\\"`\"\n\n\n$JVM  -classpath \"$sdir/../solr-webapp/webapp/WEB-INF/lib/*:$sdir/../lib/ext/*\" org.apache.solr.cloud.ZkCLI ${1+\"$@\"}\n\n"
  },
  {
    "path": "oqa-solr/relsyn/contexts/solr-jetty-context.xml",
    "content": "<?xml version=\"1.0\"?>\n<!DOCTYPE Configure PUBLIC \"-//Jetty//Configure//EN\" \"http://www.eclipse.org/jetty/configure.dtd\">\n<Configure class=\"org.eclipse.jetty.webapp.WebAppContext\">\n  <Set name=\"contextPath\"><SystemProperty name=\"hostContext\" default=\"/solr\"/></Set>\n  <Set name=\"war\"><SystemProperty name=\"jetty.home\"/>/webapps/solr.war</Set>\n  <Set name=\"defaultsDescriptor\"><SystemProperty name=\"jetty.home\"/>/etc/webdefault.xml</Set>\n  <Set name=\"tempDirectory\"><Property name=\"jetty.home\" default=\".\"/>/solr-webapp</Set>\n</Configure>\n"
  },
  {
    "path": "oqa-solr/relsyn/etc/create-solrtest.keystore.sh",
    "content": "#!/bin/bash -ex\n\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n############\n \n# This script shows how the solrtest.keystore file used for solr tests \n# and these example configs was generated.\n#\n# Running this script should only be necessary if the keystore file\n# needs to be replaced, which shouldn't be required until sometime around\n# the year 4751.\n#\n# NOTE: the \"-ext\" option used in the \"keytool\" command requires that you have\n# the java7 version of keytool, but the generated key will work with any \n# version of java\n\necho \"### remove old keystore\"\nrm -f solrtest.keystore\n\necho \"### create keystore and keys\"\nkeytool -keystore solrtest.keystore -storepass \"secret\" -alias solrtest -keypass \"secret\" -genkey -keyalg RSA -dname \"cn=localhost, ou=SolrTest, o=lucene.apache.org, c=US\" -ext \"san=ip:127.0.0.1\" -validity 999999\n\n\n"
  },
  {
    "path": "oqa-solr/relsyn/etc/jetty.xml",
    "content": "<?xml version=\"1.0\"?>\n<!DOCTYPE Configure PUBLIC \"-//Jetty//Configure//EN\" \"http://www.eclipse.org/jetty/configure.dtd\">\n\n<!-- =============================================================== -->\n<!-- Configure the Jetty Server                                      -->\n<!--                                                                 -->\n<!-- Documentation of this file format can be found at:              -->\n<!-- http://wiki.eclipse.org/Jetty/Reference/jetty.xml_syntax        -->\n<!--                                                                 -->\n<!-- =============================================================== -->\n\n\n<Configure id=\"Server\" class=\"org.eclipse.jetty.server.Server\">\n\n    <!-- =========================================================== -->\n    <!-- Server Thread Pool                                          -->\n    <!-- =========================================================== -->\n    <Set name=\"ThreadPool\">\n      <!-- Default queued blocking threadpool -->\n      <New class=\"org.eclipse.jetty.util.thread.QueuedThreadPool\">\n        <Set name=\"minThreads\">10</Set>\n        <Set name=\"maxThreads\">10000</Set>\n        <Set name=\"detailedDump\">false</Set>\n      </New>\n    </Set>\n\n    <!-- =========================================================== -->\n    <!-- Set connectors                                              -->\n    <!-- =========================================================== -->\n\n  <!--\n    <Call name=\"addConnector\">\n      <Arg>\n          <New class=\"org.eclipse.jetty.server.nio.SelectChannelConnector\">\n            <Set name=\"host\"><SystemProperty name=\"jetty.host\" /></Set>\n            <Set name=\"port\"><SystemProperty name=\"jetty.port\" default=\"8983\"/></Set>\n            <Set name=\"maxIdleTime\">50000</Set>\n            <Set name=\"Acceptors\">2</Set>\n            <Set name=\"statsOn\">false</Set>\n            <Set name=\"confidentialPort\">8443</Set>\n\t    <Set name=\"lowResourcesConnections\">5000</Set>\n\t    <Set name=\"lowResourcesMaxIdleTime\">5000</Set>\n          </New>\n      </Arg>\n    </Call>\n  -->\n\n    <!-- This connector is currently being used for Solr because it\n          showed better performance than nio.SelectChannelConnector\n          for typical Solr requests.  -->\n    <Call name=\"addConnector\">\n      <Arg>\n          <New class=\"org.eclipse.jetty.server.bio.SocketConnector\">\n            <Call class=\"java.lang.System\" name=\"setProperty\"> <Arg>log4j.configuration</Arg> <Arg>etc/log4j.properties</Arg> </Call>\n            <Set name=\"host\"><SystemProperty name=\"jetty.host\" /></Set>\n            <Set name=\"port\"><SystemProperty name=\"jetty.port\" default=\"8983\"/></Set>\n            <Set name=\"maxIdleTime\">50000</Set>\n            <Set name=\"lowResourceMaxIdleTime\">1500</Set>\n            <Set name=\"statsOn\">false</Set>\n          </New>\n      </Arg>\n    </Call>\n\n    <!-- if the connector below is uncommented, then jetty will also accept SSL\n         connections on port 8984, using a self signed certificate and can \n         optionally require the client to authenticate with a certificate. \n         (which can be the same as the server certificate_\n         \n         # Run solr example with SSL on port 8984\n         java -jar start.jar\n         # \n         # Run post.jar so that it trusts the server cert...\n         java -Djavax.net.ssl.trustStore=../etc/solrtest.keystore -Durl=https://localhost:8984/solr/update -jar post.jar *.xml\n\n         # Run solr example with SSL requiring client certs on port 8984\n         java -Djetty.ssl.clientAuth=true -jar start.jar\n         #\n         # Run post.jar so that it trusts the server cert, \n         # and authenticates with a client cert\n         java -Djavax.net.ssl.keyStorePassword=secret -Djavax.net.ssl.keyStore=../etc/solrtest.keystore -Djavax.net.ssl.trustStore=../etc/solrtest.keystore -Durl=https://localhost:8984/solr/update -jar post.jar *.xml\n\n    -->\n    <!--\n    <Call name=\"addConnector\">\n      <Arg>\n        <New class=\"org.eclipse.jetty.server.ssl.SslSelectChannelConnector\">\n          <Arg>\n            <New class=\"org.eclipse.jetty.http.ssl.SslContextFactory\">\n              <Set name=\"keyStore\"><SystemProperty name=\"jetty.home\" default=\".\"/>/etc/solrtest.keystore</Set>\n              <Set name=\"keyStorePassword\">secret</Set>\n              <Set name=\"needClientAuth\"><SystemProperty name=\"jetty.ssl.clientAuth\" default=\"false\"/></Set>\n            </New>\n          </Arg>\n          <Set name=\"port\"><SystemProperty name=\"jetty.ssl.port\" default=\"8984\"/></Set>\n          <Set name=\"maxIdleTime\">30000</Set>\n        </New>\n      </Arg>\n    </Call>\n    -->\n\n    <!-- =========================================================== -->\n    <!-- Set handler Collection Structure                            --> \n    <!-- =========================================================== -->\n    <Set name=\"handler\">\n      <New id=\"Handlers\" class=\"org.eclipse.jetty.server.handler.HandlerCollection\">\n        <Set name=\"handlers\">\n         <Array type=\"org.eclipse.jetty.server.Handler\">\n           <Item>\n             <New id=\"Contexts\" class=\"org.eclipse.jetty.server.handler.ContextHandlerCollection\"/>\n           </Item>\n           <Item>\n             <New id=\"DefaultHandler\" class=\"org.eclipse.jetty.server.handler.DefaultHandler\"/>\n           </Item>\n           <Item>\n             <New id=\"RequestLog\" class=\"org.eclipse.jetty.server.handler.RequestLogHandler\"/>\n           </Item>\n         </Array>\n        </Set>\n      </New>\n    </Set>\n    \n    <!-- =========================================================== -->\n    <!-- Configure Request Log                                       -->\n    <!-- =========================================================== -->\n    <!-- \n    <Ref id=\"Handlers\">\n      <Call name=\"addHandler\">\n        <Arg>\n          <New id=\"RequestLog\" class=\"org.eclipse.jetty.server.handler.RequestLogHandler\">\n            <Set name=\"requestLog\">\n              <New id=\"RequestLogImpl\" class=\"org.eclipse.jetty.server.NCSARequestLog\">\n                <Set name=\"filename\">\n                   logs/request.yyyy_mm_dd.log\n                </Set>\n                <Set name=\"filenameDateFormat\">yyyy_MM_dd</Set>\n                <Set name=\"retainDays\">90</Set>\n                <Set name=\"append\">true</Set>\n                <Set name=\"extended\">false</Set>\n                <Set name=\"logCookies\">false</Set>\n                <Set name=\"LogTimeZone\">UTC</Set>\n              </New>\n            </Set>\n          </New>\n        </Arg>\n      </Call>\n    </Ref>\n    -->\n\n    <!-- =========================================================== -->\n    <!-- extra options                                               -->\n    <!-- =========================================================== -->\n    <Set name=\"stopAtShutdown\">true</Set>\n    <Set name=\"sendServerVersion\">false</Set>\n    <Set name=\"sendDateHeader\">false</Set>\n    <Set name=\"gracefulShutdown\">1000</Set>\n    <Set name=\"dumpAfterStart\">false</Set>\n    <Set name=\"dumpBeforeStop\">false</Set>\n\n\n\n\n    <Call name=\"addBean\">\n      <Arg>\n        <New id=\"DeploymentManager\" class=\"org.eclipse.jetty.deploy.DeploymentManager\">\n          <Set name=\"contexts\">\n            <Ref id=\"Contexts\" />\n          </Set>\n          <Call name=\"setContextAttribute\">\n            <Arg>org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern</Arg>\n            <Arg>.*/servlet-api-[^/]*\\.jar$</Arg>\n          </Call>\n          \n          \n          <!-- Add a customize step to the deployment lifecycle -->\n          <!-- uncomment and replace DebugBinding with your extended AppLifeCycle.Binding class \n          <Call name=\"insertLifeCycleNode\">\n            <Arg>deployed</Arg>\n            <Arg>starting</Arg>\n            <Arg>customise</Arg>\n          </Call>\n          <Call name=\"addLifeCycleBinding\">\n            <Arg>\n              <New class=\"org.eclipse.jetty.deploy.bindings.DebugBinding\">\n                <Arg>customise</Arg>\n              </New>\n            </Arg>\n          </Call>\n          -->\n          \n        </New>\n      </Arg>\n    </Call>\n    \n    <Ref id=\"DeploymentManager\">\n      <Call name=\"addAppProvider\">\n        <Arg>\n          <New class=\"org.eclipse.jetty.deploy.providers.ContextProvider\">\n            <Set name=\"monitoredDirName\"><SystemProperty name=\"jetty.home\" default=\".\"/>/contexts</Set>\n            <Set name=\"scanInterval\">0</Set>\n          </New>\n        </Arg>\n      </Call>\n    </Ref>\n\n</Configure>\n"
  },
  {
    "path": "oqa-solr/relsyn/etc/logging.properties",
    "content": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\n# To use this log config, start solr with the following system property: \n# -Djava.util.logging.config.file=etc/logging.properties\n\n## Default global logging level:\n.level = INFO\n\n## Log every update command (add, delete, commit, ...)\n#org.apache.solr.update.processor.LogUpdateProcessor.level = FINE\n\n## Where to log (space separated list).\nhandlers = java.util.logging.FileHandler\n\njava.util.logging.FileHandler.level = FINE\n\njava.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter\n\n# 1 GB limit per file\njava.util.logging.FileHandler.limit = 1073741824\n\n# Log to the logs directory, with log files named solrxxx.log\njava.util.logging.FileHandler.pattern = ./logs/solr%u.log"
  },
  {
    "path": "oqa-solr/relsyn/etc/webdefault.xml",
    "content": "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n\n  <!-- ===================================================================== -->\n  <!-- This file contains the default descriptor for web applications.       -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->\n  <!-- The intent of this descriptor is to include jetty specific or common  -->\n  <!-- configuration for all webapps.   If a context has a webdefault.xml    -->\n  <!-- descriptor, it is applied before the contexts own web.xml file        -->\n  <!--                                                                       -->\n  <!-- A context may be assigned a default descriptor by:                    -->\n  <!--  + Calling WebApplicationContext.setDefaultsDescriptor                -->\n  <!--  + Passed an arg to addWebApplications                                -->\n  <!--                                                                       -->\n  <!-- This file is used both as the resource within the jetty.jar (which is -->\n  <!-- used as the default if no explicit defaults descriptor is set) and it -->\n  <!-- is copied to the etc directory of the Jetty distro and explicitly     -->\n  <!-- by the jetty.xml file.                                                -->\n  <!--                                                                       -->\n  <!-- ===================================================================== -->\n<web-app\n  xmlns=\"http://java.sun.com/xml/ns/javaee\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd\"\n  metadata-complete=\"true\"\n  version=\"2.5\"\n>\n\n  <description>\n    Default web.xml file.  \n    This file is applied to a Web application before it's own WEB_INF/web.xml file\n  </description>\n\n  <!-- ==================================================================== -->\n  <!-- Removes static references to beans from javax.el.BeanELResolver to   -->\n  <!-- ensure webapp classloader can be released on undeploy                -->\n  <!-- ==================================================================== -->\n  <listener>\n   <listener-class>org.eclipse.jetty.servlet.listener.ELContextCleaner</listener-class>\n  </listener>\n  \n  <!-- ==================================================================== -->\n  <!-- Removes static cache of Methods from java.beans.Introspector to      -->\n  <!-- ensure webapp classloader can be released on undeploy                -->\n  <!-- ==================================================================== -->  \n  <listener>\n   <listener-class>org.eclipse.jetty.servlet.listener.IntrospectorCleaner</listener-class>\n  </listener>\n  \n\n  <!-- ==================================================================== -->\n  <!-- Context params to control Session Cookies                            -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!--\n    UNCOMMENT TO ACTIVATE <context-param> <param-name>org.eclipse.jetty.servlet.SessionDomain</param-name> <param-value>127.0.0.1</param-value> </context-param> <context-param>\n    <param-name>org.eclipse.jetty.servlet.SessionPath</param-name> <param-value>/</param-value> </context-param> <context-param> <param-name>org.eclipse.jetty.servlet.MaxAge</param-name>\n    <param-value>-1</param-value> </context-param>\n  -->\n\n  <!-- ==================================================================== -->\n  <!-- The default servlet.                                                 -->\n  <!-- This servlet, normally mapped to /, provides the handling for static -->\n  <!-- content, OPTIONS and TRACE methods for the context.                  -->\n  <!-- The following initParameters are supported:                          -->\n  <!--  \n *  acceptRanges      If true, range requests and responses are\n *                    supported\n *\n *  dirAllowed        If true, directory listings are returned if no\n *                    welcome file is found. Else 403 Forbidden.\n *\n *  welcomeServlets   If true, attempt to dispatch to welcome files\n *                    that are servlets, but only after no matching static\n *                    resources could be found. If false, then a welcome\n *                    file must exist on disk. If \"exact\", then exact\n *                    servlet matches are supported without an existing file.\n *                    Default is true.\n *\n *                    This must be false if you want directory listings,\n *                    but have index.jsp in your welcome file list.\n *\n *  redirectWelcome   If true, welcome files are redirected rather than\n *                    forwarded to.\n *\n *  gzip              If set to true, then static content will be served as\n *                    gzip content encoded if a matching resource is\n *                    found ending with \".gz\"\n *\n *  resourceBase      Set to replace the context resource base\n *\n *  resourceCache     If set, this is a context attribute name, which the servlet \n *                    will use to look for a shared ResourceCache instance. \n *                        \n *  relativeResourceBase\n *                    Set with a pathname relative to the base of the\n *                    servlet context root. Useful for only serving static content out\n *                    of only specific subdirectories.\n *\n *  aliases           If True, aliases of resources are allowed (eg. symbolic\n *                    links and caps variations). May bypass security constraints.\n *\n *  maxCacheSize      The maximum total size of the cache or 0 for no cache.\n *  maxCachedFileSize The maximum size of a file to cache\n *  maxCachedFiles    The maximum number of files to cache\n *\n *  useFileMappedBuffer\n *                    If set to true, it will use mapped file buffer to serve static content\n *                    when using NIO connector. Setting this value to false means that\n *                    a direct buffer will be used instead of a mapped file buffer.\n *                    By default, this is set to true.\n *\n *  cacheControl      If set, all static content will have this value set as the cache-control\n *                    header.\n -->\n \n \n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <servlet>\n    <servlet-name>default</servlet-name>\n    <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>\n    <init-param>\n      <param-name>aliases</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>acceptRanges</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>dirAllowed</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>welcomeServlets</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>redirectWelcome</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCacheSize</param-name>\n      <param-value>256000000</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCachedFileSize</param-name>\n      <param-value>200000000</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCachedFiles</param-name>\n      <param-value>2048</param-value>\n    </init-param>\n    <init-param>\n      <param-name>gzip</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>useFileMappedBuffer</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <!--\n    <init-param>\n      <param-name>resourceCache</param-name>\n      <param-value>resourceCache</param-value>\n    </init-param>\n    -->\n    <!--\n    <init-param>\n      <param-name>cacheControl</param-name>\n      <param-value>max-age=3600,public</param-value>\n    </init-param>\n    -->\n    <load-on-startup>0</load-on-startup>\n  </servlet>\n\n  <servlet-mapping>\n    <servlet-name>default</servlet-name>\n    <url-pattern>/</url-pattern>\n  </servlet-mapping>\n\n\n  <!-- ==================================================================== -->\n  <!-- JSP Servlet                                                          -->\n  <!-- This is the jasper JSP servlet from the jakarta project              -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!-- The JSP page compiler and execution servlet, which is the mechanism  -->\n  <!-- used by Glassfish to support JSP pages.  Traditionally, this servlet -->\n  <!-- is mapped to URL patterh \"*.jsp\".  This servlet supports the         -->\n  <!-- following initialization parameters (default values are in square    -->\n  <!-- brackets):                                                           -->\n  <!--                                                                      -->\n  <!--   checkInterval       If development is false and reloading is true, -->\n  <!--                       background compiles are enabled. checkInterval -->\n  <!--                       is the time in seconds between checks to see   -->\n  <!--                       if a JSP page needs to be recompiled. [300]    -->\n  <!--                                                                      -->\n  <!--   compiler            Which compiler Ant should use to compile JSP   -->\n  <!--                       pages.  See the Ant documenation for more      -->\n  <!--                       information. [javac]                           -->\n  <!--                                                                      -->\n  <!--   classdebuginfo      Should the class file be compiled with         -->\n  <!--                       debugging information?  [true]                 -->\n  <!--                                                                      -->\n  <!--   classpath           What class path should I use while compiling   -->\n  <!--                       generated servlets?  [Created dynamically      -->\n  <!--                       based on the current web application]          -->\n  <!--                       Set to ? to make the container explicitly set  -->\n  <!--                       this parameter.                                -->\n  <!--                                                                      -->\n  <!--   development         Is Jasper used in development mode (will check -->\n  <!--                       for JSP modification on every access)?  [true] -->\n  <!--                                                                      -->\n  <!--   enablePooling       Determines whether tag handler pooling is      -->\n  <!--                       enabled  [true]                                -->\n  <!--                                                                      -->\n  <!--   fork                Tell Ant to fork compiles of JSP pages so that -->\n  <!--                       a separate JVM is used for JSP page compiles   -->\n  <!--                       from the one Tomcat is running in. [true]      -->\n  <!--                                                                      -->\n  <!--   ieClassId           The class-id value to be sent to Internet      -->\n  <!--                       Explorer when using <jsp:plugin> tags.         -->\n  <!--                       [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93]   -->\n  <!--                                                                      -->\n  <!--   javaEncoding        Java file encoding to use for generating java  -->\n  <!--                       source files. [UTF-8]                          -->\n  <!--                                                                      -->\n  <!--   keepgenerated       Should we keep the generated Java source code  -->\n  <!--                       for each page instead of deleting it? [true]   -->\n  <!--                                                                      -->\n  <!--   logVerbosityLevel   The level of detailed messages to be produced  -->\n  <!--                       by this servlet.  Increasing levels cause the  -->\n  <!--                       generation of more messages.  Valid values are -->\n  <!--                       FATAL, ERROR, WARNING, INFORMATION, and DEBUG. -->\n  <!--                       [WARNING]                                      -->\n  <!--                                                                      -->\n  <!--   mappedfile          Should we generate static content with one     -->\n  <!--                       print statement per input line, to ease        -->\n  <!--                       debugging?  [false]                            -->\n  <!--                                                                      -->\n  <!--                                                                      -->\n  <!--   reloading           Should Jasper check for modified JSPs?  [true] -->\n  <!--                                                                      -->\n  <!--   suppressSmap        Should the generation of SMAP info for JSR45   -->\n  <!--                       debugging be suppressed?  [false]              -->\n  <!--                                                                      -->\n  <!--   dumpSmap            Should the SMAP info for JSR45 debugging be    -->\n  <!--                       dumped to a file? [false]                      -->\n  <!--                       False if suppressSmap is true                  -->\n  <!--                                                                      -->\n  <!--   scratchdir          What scratch directory should we use when      -->\n  <!--                       compiling JSP pages?  [default work directory  -->\n  <!--                       for the current web application]               -->\n  <!--                                                                      -->\n  <!--   tagpoolMaxSize      The maximum tag handler pool size  [5]         -->\n  <!--                                                                      -->\n  <!--   xpoweredBy          Determines whether X-Powered-By response       -->\n  <!--                       header is added by generated servlet  [false]  -->\n  <!--                                                                      -->\n  <!-- If you wish to use Jikes to compile JSP pages:                       -->\n  <!--   Set the init parameter \"compiler\" to \"jikes\".  Define              -->\n  <!--   the property \"-Dbuild.compiler.emacs=true\" when starting Jetty     -->\n  <!--   to cause Jikes to emit error messages in a format compatible with  -->\n  <!--   Jasper.                                                            -->\n  <!--   If you get an error reporting that jikes can't use UTF-8 encoding, -->\n  <!--   try setting the init parameter \"javaEncoding\" to \"ISO-8859-1\".     -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <servlet\n    id=\"jsp\"\n  >\n    <servlet-name>jsp</servlet-name>\n    <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>\n    <init-param>\n      <param-name>logVerbosityLevel</param-name>\n      <param-value>DEBUG</param-value>\n    </init-param>\n    <init-param>\n      <param-name>fork</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>xpoweredBy</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <!--  \n    <init-param>\n        <param-name>classpath</param-name>\n        <param-value>?</param-value>\n    </init-param>\n    -->\n    <load-on-startup>0</load-on-startup>\n  </servlet>\n\n  <servlet-mapping>\n    <servlet-name>jsp</servlet-name>\n    <url-pattern>*.jsp</url-pattern>\n    <url-pattern>*.jspf</url-pattern>\n    <url-pattern>*.jspx</url-pattern>\n    <url-pattern>*.xsp</url-pattern>\n    <url-pattern>*.JSP</url-pattern>\n    <url-pattern>*.JSPF</url-pattern>\n    <url-pattern>*.JSPX</url-pattern>\n    <url-pattern>*.XSP</url-pattern>\n  </servlet-mapping>\n\n  <!-- ==================================================================== -->\n  <!-- Dynamic Servlet Invoker.                                             -->\n  <!-- This servlet invokes anonymous servlets that have not been defined   -->\n  <!-- in the web.xml or by other means. The first element of the pathInfo  -->\n  <!-- of a request passed to the envoker is treated as a servlet name for  -->\n  <!-- an existing servlet, or as a class name of a new servlet.            -->\n  <!-- This servlet is normally mapped to /servlet/*                        -->\n  <!-- This servlet support the following initParams:                       -->\n  <!--                                                                      -->\n  <!--  nonContextServlets       If false, the invoker can only load        -->\n  <!--                           servlets from the contexts classloader.    -->\n  <!--                           This is false by default and setting this  -->\n  <!--                           to true may have security implications.    -->\n  <!--                                                                      -->\n  <!--  verbose                  If true, log dynamic loads                 -->\n  <!--                                                                      -->\n  <!--  *                        All other parameters are copied to the     -->\n  <!--                           each dynamic servlet as init parameters    -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!--\n    Uncomment for dynamic invocation <servlet> <servlet-name>invoker</servlet-name> <servlet-class>org.eclipse.jetty.servlet.Invoker</servlet-class> <init-param> <param-name>verbose</param-name>\n    <param-value>false</param-value> </init-param> <init-param> <param-name>nonContextServlets</param-name> <param-value>false</param-value> </init-param> <init-param>\n    <param-name>dynamicParam</param-name> <param-value>anyValue</param-value> </init-param> <load-on-startup>0</load-on-startup> </servlet> <servlet-mapping> <servlet-name>invoker</servlet-name>\n    <url-pattern>/servlet/*</url-pattern> </servlet-mapping>\n  -->\n\n\n\n  <!-- ==================================================================== -->\n  <session-config>\n    <session-timeout>30</session-timeout>\n  </session-config>\n\n  <!-- ==================================================================== -->\n  <!-- Default MIME mappings                                                -->\n  <!-- The default MIME mappings are provided by the mime.properties        -->\n  <!-- resource in the org.eclipse.jetty.server.jar file.  Additional or modified  -->\n  <!-- mappings may be specified here                                       -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!-- UNCOMMENT TO ACTIVATE\n  <mime-mapping>\n    <extension>mysuffix</extension>\n    <mime-type>mymime/type</mime-type>\n  </mime-mapping>\n  -->\n\n  <!-- ==================================================================== -->\n  <welcome-file-list>\n    <welcome-file>index.html</welcome-file>\n    <welcome-file>index.htm</welcome-file>\n    <welcome-file>index.jsp</welcome-file>\n  </welcome-file-list>\n\n  <!-- ==================================================================== -->\n  <locale-encoding-mapping-list>\n    <locale-encoding-mapping>\n      <locale>ar</locale>\n      <encoding>ISO-8859-6</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>be</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>bg</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ca</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>cs</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>da</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>de</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>el</locale>\n      <encoding>ISO-8859-7</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>en</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>es</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>et</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>fi</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>fr</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>hr</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>hu</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>is</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>it</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>iw</locale>\n      <encoding>ISO-8859-8</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ja</locale>\n      <encoding>Shift_JIS</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ko</locale>\n      <encoding>EUC-KR</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>lt</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>lv</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>mk</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>nl</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>no</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>pl</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>pt</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ro</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ru</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sh</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sk</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sl</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sq</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sr</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sv</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>tr</locale>\n      <encoding>ISO-8859-9</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>uk</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>zh</locale>\n      <encoding>GB2312</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>zh_TW</locale>\n      <encoding>Big5</encoding>\n    </locale-encoding-mapping>\n  </locale-encoding-mapping-list>\n\n  <security-constraint>\n    <web-resource-collection>\n      <web-resource-name>Disable TRACE</web-resource-name>\n      <url-pattern>/</url-pattern>\n      <http-method>TRACE</http-method>\n    </web-resource-collection>\n    <auth-constraint/>\n  </security-constraint>\n\n</web-app>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nSolr DataImportHandler example configuration\n--------------------------------------------\n\nChange to the parent (example) directory. Start solr by executing the following command \n\n> cd ..\n> java -Dsolr.solr.home=\"./example-DIH/solr/\" -jar start.jar\n\nin this directory, and when Solr is started connect to \n\n  http://localhost:8983/solr/\n\nTo import data from the hsqldb database, connect to\n\n  http://localhost:8983/solr/db/dataimport?command=full-import\n\nTo import data from the slashdot feed, connect to\n\n  http://localhost:8983/solr/rss/dataimport?command=full-import\n\nTo import data from your imap server\n\n1. Edit the example-DIH/solr/mail/conf/data-config.xml and add details about username, password, imap server\n2. Connect to http://localhost:8983/solr/mail/dataimport?command=full-import\n\nTo copy data from db Solr core, connect to\n\n http://localhost:8983/solr/solr/dataimport?command=full-import\n\nSee also README.txt in the solr subdirectory, and check\nhttp://wiki.apache.org/solr/DataImportHandler for detailed\nusage guide and tutorial.\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/hsqldb/ex.log",
    "content": "/*C1*/SET SCHEMA PUBLIC\nCONNECT USER SA\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/hsqldb/ex.properties",
    "content": "#HSQL Database Engine 1.8.0.5\n#Fri Aug 29 10:24:33 IST 2008\nhsqldb.script_format=0\nruntime.gc_interval=0\nsql.enforce_strict_size=false\nhsqldb.cache_size_scale=8\nreadonly=false\nhsqldb.nio_data_file=true\nhsqldb.cache_scale=14\nversion=1.8.0\nhsqldb.default_table_type=memory\nhsqldb.cache_file_scale=1\nhsqldb.log_size=200\nmodified=yes\nhsqldb.cache_version=1.7.0\nhsqldb.original_version=1.8.0\nhsqldb.compatible_version=1.8.0\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/hsqldb/ex.script",
    "content": "CREATE SCHEMA PUBLIC AUTHORIZATION DBA\nCREATE CACHED TABLE ITEM(ID CHAR(8),NAME VARCHAR(100),MANU VARCHAR(50),WEIGHT REAL,PRICE REAL,POPULARITY INTEGER,INCLUDES VARCHAR(200),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE FEATURE(ITEM_ID CHAR(8),DESCRIPTION VARCHAR(200),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE CATEGORY(ID INTEGER,DESCRIPTION VARCHAR(30),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE ITEM_CATEGORY(ITEM_ID CHAR(8),CATEGORY_ID INTEGER,LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nSET TABLE ITEM INDEX'15056 0'\nSET TABLE FEATURE INDEX'22424 0'\nSET TABLE CATEGORY INDEX'18856 0'\nSET TABLE ITEM_CATEGORY INDEX'17328 0'\nCREATE USER SA PASSWORD \"\"\nGRANT DBA TO SA\nSET WRITE_DELAY 20\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/db-data-config.xml",
    "content": "<dataConfig>\n    <dataSource driver=\"org.hsqldb.jdbcDriver\" url=\"jdbc:hsqldb:./example-DIH/hsqldb/ex\" user=\"sa\" />\n    <document>\n        <entity name=\"item\" query=\"select * from item\"\n                deltaQuery=\"select id from item where last_modified > '${dataimporter.last_index_time}'\">\n            <field column=\"NAME\" name=\"name\" />\n\n            <entity name=\"feature\"  \n                    query=\"select DESCRIPTION from FEATURE where ITEM_ID='${item.ID}'\"\n                    deltaQuery=\"select ITEM_ID from FEATURE where last_modified > '${dataimporter.last_index_time}'\"\n                    parentDeltaQuery=\"select ID from item where ID=${feature.ITEM_ID}\">\n                <field name=\"features\" column=\"DESCRIPTION\" />\n            </entity>\n            \n            <entity name=\"item_category\"\n                    query=\"select CATEGORY_ID from item_category where ITEM_ID='${item.ID}'\"\n                    deltaQuery=\"select ITEM_ID, CATEGORY_ID from item_category where last_modified > '${dataimporter.last_index_time}'\"\n                    parentDeltaQuery=\"select ID from item where ID=${item_category.ITEM_ID}\">\n                <entity name=\"category\"\n                        query=\"select DESCRIPTION from category where ID = '${item_category.CATEGORY_ID}'\"\n                        deltaQuery=\"select ID from category where last_modified > '${dataimporter.last_index_time}'\"\n                        parentDeltaQuery=\"select ITEM_ID, CATEGORY_ID from item_category where CATEGORY_ID=${category.ID}\">\n                    <field column=\"description\" name=\"cat\" />\n                </entity>\n            </entity>\n        </entity>\n    </document>\n</dataConfig>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"db\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n   <field name=\"id\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" multiValued=\"false\" /> \n   <field name=\"sku\" type=\"textTight\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"name\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"nameSort\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"alphaNameSort\" type=\"alphaOnlySort\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"manu\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"cat\" type=\"text_ws\" indexed=\"true\" stored=\"true\" multiValued=\"true\" omitNorms=\"true\" termVectors=\"true\" />\n   <field name=\"features\" type=\"text\" indexed=\"true\" stored=\"true\" multiValued=\"true\"/>\n   <field name=\"includes\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n\n   <field name=\"weight\" type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"price\"  type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <!-- \"default\" values can be specified for fields, indicating which\n        value should be used if no value is specified when adding a document.\n     -->\n   <field name=\"popularity\" type=\"sint\" indexed=\"true\" stored=\"true\" default=\"0\"/>\n   <field name=\"inStock\" type=\"boolean\" indexed=\"true\" stored=\"true\"/>\n\n   <!-- Some sample docs exists solely to demonstrate the spellchecker\n        functionality, this is the only field they container.\n        Typically you might build the spellchecker of \"catchall\" type field\n        containing all of the text in each document\n     -->\n   <field name=\"word\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n\n   \n   <!-- catchall field, containing all other searchable text fields (implemented\n        via copyField further on in this schema  -->\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\"/>\n\n   <!-- non-tokenized version of manufacturer to make it easier to sort or group\n        results by manufacturer.  copied from \"manu\" via copyField -->\n   <field name=\"manu_exact\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n\n   <!-- Dynamic field definitions.  If a field name is not found, dynamicFields\n        will be used if the name matches any of the patterns.\n        RESTRICTION: the glob-like pattern in the name attribute must have\n        a \"*\" only at the start or the end.\n        EXAMPLE:  name=\"*_i\" will match any field ending in _i (like myid_i, z_i)\n        Longer patterns will be matched first.  if equal size patterns\n        both match, the first appearing in the schema will be used.  -->\n   <dynamicField name=\"*_i\"  type=\"sint\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_s\"  type=\"string\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_l\"  type=\"slong\"   indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_t\"  type=\"text\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_b\"  type=\"boolean\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_f\"  type=\"sfloat\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_d\"  type=\"sdouble\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_dt\" type=\"date\"    indexed=\"true\"  stored=\"true\"/>\n\n   <dynamicField name=\"random*\" type=\"random\" />\n\n   <!-- uncomment the following to ignore any fields that don't already match an existing \n        field name or dynamic field, rather than reporting them as an error. \n        alternately, change the type=\"ignored\" to some other type e.g. \"text\" if you want \n        unknown fields indexed and/or stored by default --> \n   <!--dynamicField name=\"*\" type=\"ignored\" multiValued=\"true\" /-->\n   \n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n  <!-- copyField commands copy one field to another at the time a document\n        is added to the index.  It's used either to index the same field differently,\n        or to add multiple fields to the same field for easier/faster searching.  -->\n   <copyField source=\"id\" dest=\"sku\"/>\n\n   <copyField source=\"cat\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"nameSort\"/>\n   <copyField source=\"name\" dest=\"alphaNameSort\"/>\n   <copyField source=\"manu\" dest=\"text\"/>\n   <copyField source=\"features\" dest=\"text\"/>\n   <copyField source=\"includes\" dest=\"text\"/>\n\n   <copyField source=\"manu\" dest=\"manu_exact\"/>\n\n <!-- Similarity is the scoring routine for each document vs. a query.\n      A custom similarity may be specified here, but the default is fine\n      for most applications.  -->\n <!-- <similarity class=\"org.apache.lucene.search.similarities.DefaultSimilarity\"/> -->\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n    \t<str name=\"config\">db-data-config.xml</str>\n    </lst>\n  </requestHandler>\n   \n  \n  \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\\"']{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/xslt/example.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to HTML\n -->\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'\n>\n\n  <xsl:output media-type=\"text/html; charset=UTF-8\" encoding=\"UTF-8\"/> \n  \n  <xsl:variable name=\"title\" select=\"concat('Solr search results (',response/result/@numFound,' documents)')\"/>\n  \n  <xsl:template match='/'>\n    <html>\n      <head>\n        <title><xsl:value-of select=\"$title\"/></title>\n        <xsl:call-template name=\"css\"/>\n      </head>\n      <body>\n        <h1><xsl:value-of select=\"$title\"/></h1>\n        <div class=\"note\">\n          This has been formatted by the sample \"example.xsl\" transform -\n          use your own XSLT to get a nicer page\n        </div>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n      </body>\n    </html>\n  </xsl:template>\n  \n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <div class=\"doc\">\n      <table width=\"100%\">\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n      </table>\n    </div>\n  </xsl:template>\n\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n    <xsl:param name=\"pos\"></xsl:param>\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n\n        <xsl:if test=\"boolean(//lst[@name='explain'])\">\n          <xsl:element name=\"a\">\n            <!-- can't allow whitespace here -->\n            <xsl:attribute name=\"href\">javascript:toggle(\"<xsl:value-of select=\"concat('exp-',$pos)\" />\");</xsl:attribute>?</xsl:element>\n          <br/>\n          <xsl:element name=\"div\">\n            <xsl:attribute name=\"class\">exp</xsl:attribute>\n            <xsl:attribute name=\"id\">\n              <xsl:value-of select=\"concat('exp-',$pos)\" />\n            </xsl:attribute>\n            <xsl:value-of select=\"//lst[@name='explain']/str[position()=$pos]\"/>\n          </xsl:element>\n        </xsl:if>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <ul>\n        <xsl:for-each select=\"*\">\n          <li><xsl:value-of select=\".\"/></li>\n        </xsl:for-each>\n        </ul>\n      </td>\n    </tr>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n  \n  <xsl:template name=\"css\">\n    <script>\n      function toggle(id) {\n        var obj = document.getElementById(id);\n        obj.style.display = (obj.style.display != 'block') ? 'block' : 'none';\n      }\n    </script>\n    <style type=\"text/css\">\n      body { font-family: \"Lucida Grande\", sans-serif }\n      td.name { font-style: italic; font-size:80%; }\n      td { vertical-align: top; }\n      ul { margin: 0px; margin-left: 1em; padding: 0px; }\n      .note { font-size:80%; }\n      .doc { margin-top: 1em; border-top: solid grey 1px; }\n      .exp { display: none; font-family: monospace; white-space: pre; }\n    </style>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/xslt/example_atom.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to Atom\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output method=\"xml\" encoding=\"utf-8\" />\n\n  <xsl:template match='/'>\n    <xsl:variable name=\"query\" select=\"response/lst[@name='responseHeader']/lst[@name='params']/str[@name='q']\"/>\n    <feed xmlns=\"http://www.w3.org/2005/Atom\">\n      <title>Example Solr Atom 1.0 Feed</title>\n      <subtitle>\n       This has been formatted by the sample \"example_atom.xsl\" transform -\n       use your own XSLT to get a nicer Atom feed.\n      </subtitle>\n      <author>\n        <name>Apache Solr</name>\n        <email>solr-user@lucene.apache.org</email>\n      </author>\n      <link rel=\"self\" type=\"application/atom+xml\" \n            href=\"http://localhost:8983/solr/q={$query}&amp;wt=xslt&amp;tr=atom.xsl\"/>\n      <updated>\n        <xsl:value-of select=\"response/result/doc[position()=1]/date[@name='timestamp']\"/>\n      </updated>\n      <id>tag:localhost,2007:example</id>\n      <xsl:apply-templates select=\"response/result/doc\"/>\n    </feed>\n  </xsl:template>\n    \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <entry>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link href=\"http://localhost:8983/solr/select?q={$id}\"/>\n      <id>tag:localhost,2007:<xsl:value-of select=\"$id\"/></id>\n      <summary><xsl:value-of select=\"arr[@name='features']\"/></summary>\n      <updated><xsl:value-of select=\"date[@name='timestamp']\"/></updated>\n    </entry>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/xslt/example_rss.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to RSS\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output method=\"xml\" encoding=\"utf-8\" />\n  <xsl:template match='/'>\n    <rss version=\"2.0\">\n       <channel>\n\t <title>Example Solr RSS 2.0 Feed</title>\n         <link>http://localhost:8983/solr</link>\n         <description>\n          This has been formatted by the sample \"example_rss.xsl\" transform -\n          use your own XSLT to get a nicer RSS feed.\n         </description>\n         <language>en-us</language>\n         <docs>http://localhost:8983/solr</docs>\n         <xsl:apply-templates select=\"response/result/doc\"/>\n       </channel>\n    </rss>\n  </xsl:template>\n  \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <xsl:variable name=\"timestamp\" select=\"date[@name='timestamp']\"/>\n    <item>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </link>\n      <description>\n        <xsl:value-of select=\"arr[@name='features']\"/>\n      </description>\n      <pubDate><xsl:value-of select=\"$timestamp\"/></pubDate>\n      <guid>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </guid>\n    </item>\n  </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/db/conf/xslt/luke.xsl",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See the NOTICE file distributed with\n    this work for additional information regarding copyright ownership.\n    The ASF licenses this file to You under the Apache License, Version 2.0\n    (the \"License\"); you may not use this file except in compliance with\n    the License.  You may obtain a copy of the License at\n    \n    http://www.apache.org/licenses/LICENSE-2.0\n    \n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n-->\n\n\n<!-- \n  Display the luke request handler with graphs\n -->\n<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n    xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:svg=\"http://www.w3.org/2000/svg\" version=\"1.0\">\n    <xsl:output method=\"xml\" doctype-public=\"-//W3C//DTD XHTML 1.0 Strict//EN\"\n        doctype-system=\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\" encoding=\"UTF-8\"/>\n\n    <xsl:variable name=\"title\">Solr Luke Request Handler Response</xsl:variable>\n\n    <xsl:template match=\"/\">\n        <html xmlns=\"http://www.w3.org/1999/xhtml\">\n            <head>\n                <title>\n                    <xsl:value-of select=\"$title\"/>\n                </title>\n                <!-- <xsl:call-template name=\"svg_ie_workaround\"/> -->\n                <xsl:call-template name=\"css\"/>\n                <meta http-equiv=\"Content-Type\" content=\"application/xhtml+xml; charset=UTF-8\"/>\n            </head>\n            <body>\n                <h1>\n                    <xsl:value-of select=\"$title\"/>\n                </h1>\n                <div class=\"doc\">\n                    <ul>\n                        <xsl:if test=\"response/lst[@name='index']\">\n                            <li>\n                                <a href=\"#index\">Index Statistics</a>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='fields']\">\n                            <li>\n                                <a href=\"#fields\">Field Statistics</a>\n                            </li>\n                            <li>\n                                <ul>\n                                    <xsl:for-each select=\"response/lst[@name='fields']/lst\">\n                                        <li>\n                                            <a href=\"#{@name}\">\n                                                <xsl:value-of select=\"@name\"/>\n                                            </a>\n                                        </li>\n                                    </xsl:for-each>\n                                </ul>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='doc']\">\n                            <li>\n                                <a href=\"#doc\">Document statistics</a>\n                            </li>\n                        </xsl:if>\n                    </ul>\n                </div>\n                <xsl:if test=\"response/lst[@name='index']\">\n                    <h2><a name=\"index\"/>Index statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='index']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='fields']\">\n                    <h2><a name=\"fields\"/>Field statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='fields']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='doc']\">\n                    <h2><a name=\"doc\"/>Document statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='doc']\"/>\n                </xsl:if>\n            </body>\n        </html>\n    </xsl:template>\n\n    <xsl:template match=\"lst\">\n        <xsl:if test=\"parent::lst\">\n            <tr>\n                <td colspan=\"2\">\n                    <div class=\"doc\">\n                        <xsl:call-template name=\"list\"/>\n                    </div>\n                </td>\n            </tr>\n        </xsl:if>\n        <xsl:if test=\"not(parent::lst)\">\n            <div class=\"doc\">\n                <xsl:call-template name=\"list\"/>\n            </div>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"list\">\n        <xsl:if test=\"count(child::*)>0\">\n            <table>\n                <thead>\n                    <tr>\n                        <th colspan=\"2\">\n                            <p>\n                                <a name=\"{@name}\"/>\n                            </p>\n                            <xsl:value-of select=\"@name\"/>\n                        </th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <xsl:choose>\n                        <xsl:when\n                            test=\"@name='histogram' and not(system-property('xsl:vendor')='Microsoft')\">\n                            <tr>\n                                <td colspan=\"2\">\n                                    <xsl:call-template name=\"histogram\"/>\n                                </td>\n                            </tr>\n                        </xsl:when>\n                        <xsl:otherwise>\n                            <xsl:apply-templates/>\n                        </xsl:otherwise>\n                    </xsl:choose>\n                </tbody>\n            </table>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"histogram\">\n        <div class=\"doc\">\n            <xsl:call-template name=\"barchart\">\n                <xsl:with-param name=\"xoffset\">5</xsl:with-param>\n                <xsl:with-param name=\"yoffset\">5</xsl:with-param>\n                <xsl:with-param name=\"iwidth\">800</xsl:with-param>\n                <xsl:with-param name=\"iheight\">600</xsl:with-param>\n                <xsl:with-param name=\"fill\">blue</xsl:with-param>\n            </xsl:call-template>\n        </div>\n    </xsl:template>\n\n    <xsl:template name=\"barchart\">\n        <xsl:param name=\"xoffset\"/>\n        <xsl:param name=\"yoffset\"/>\n        <xsl:param name=\"iwidth\"/>\n        <xsl:param name=\"iheight\"/>\n        <xsl:param name=\"fill\"/>\n        <svg:svg viewBox=\"0 0 {$iwidth} {$iheight}\">\n            <xsl:if test=\"system-property('xsl:vendor')='Opera' or system-property('xsl:vendor')='libxslt'\">\n                <xsl:attribute name=\"width\"><xsl:value-of select=\"$iwidth\"/></xsl:attribute>\n                <xsl:attribute name=\"height\"><xsl:value-of select=\"$iwidth\"/></xsl:attribute>\n            </xsl:if>\n            <xsl:variable name=\"x\" select=\"$xoffset + 5\"/>\n            <xsl:variable name=\"y\" select=\"$yoffset + 5\"/>\n            <xsl:variable name=\"width\" select=\"$iwidth - 10\"/>\n            <xsl:variable name=\"height\" select=\"$iheight - 30\"/>\n            <xsl:variable name=\"max\">\n                <xsl:for-each select=\"int\">\n                    <xsl:sort data-type=\"number\" order=\"descending\"/>\n                    <xsl:if test=\"position()=1\">\n                        <xsl:value-of select=\".\"/>\n                    </xsl:if>\n                </xsl:for-each>\n            </xsl:variable>\n            <xsl:variable name=\"yRatio\" select=\"$height div $max\"/>\n            <xsl:variable name=\"xRatio\" select=\"$width div count(int)\"/>\n            <svg:g>\n                <xsl:for-each select=\"int\">\n                    <svg:rect stroke=\"none\" x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio}\"\n                        y=\"{($y + $height) - number(.) * $yRatio}\" width=\"{0.8 * $xRatio}\"\n                        height=\"{number(.) * $yRatio}\" fill=\"{$fill}\"/>\n                    <xsl:variable name=\"yboost\">\n                        <xsl:choose>\n                            <xsl:when\n                                test=\"($y + $height) - number(.) * $yRatio +40 &gt; $iheight\"\n                                >-25</xsl:when>\n                            <xsl:otherwise>0</xsl:otherwise>\n                        </xsl:choose>\n                    </xsl:variable>\n                    <svg:text\n                        x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio + (($xRatio * 0.8) div 2)}\"\n                        y=\"{($y + $height) - number(.) * $yRatio +20 + number($yboost)}\"\n                        text-anchor=\"middle\" style=\"fill: red; font-size: 8px;\">\n                        <xsl:value-of select=\".\"/>\n                    </svg:text>\n                    <svg:text\n                        x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio + (($xRatio * 0.8) div 2)}\"\n                        y=\"{$y + $height + 20}\" text-anchor=\"middle\" style=\"fill: black; font-size: 8px;\">\n                        <xsl:value-of select=\"@name\"/>\n                    </svg:text>\n                </xsl:for-each>\n            </svg:g>\n        </svg:svg>\n    </xsl:template>\n\n    <xsl:template name=\"keyvalue\">\n        <xsl:choose>\n            <xsl:when test=\"@name\">\n                <tr>\n                    <td class=\"name\">\n                        <xsl:value-of select=\"@name\"/>\n                    </td>\n                    <td class=\"value\">\n                        <xsl:value-of select=\".\"/>\n                    </td>\n                </tr>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:value-of select=\".\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template match=\"int|bool|long|float|double|uuid|date\">\n        <xsl:call-template name=\"keyvalue\"/>\n    </xsl:template>\n\n    <xsl:template match=\"arr\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <ul>\n                    <xsl:for-each select=\"child::*\">\n                        <li>\n                            <xsl:apply-templates/>\n                        </li>\n                    </xsl:for-each>\n                </ul>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template match=\"str\">\n        <xsl:choose>\n            <xsl:when test=\"@name='schema' or @name='index' or @name='flags'\">\n                <xsl:call-template name=\"schema\"/>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:call-template name=\"keyvalue\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template name=\"schema\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <xsl:if test=\"contains(.,'unstored')\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n                <xsl:if test=\"not(contains(.,'unstored'))\">\n                    <xsl:call-template name=\"infochar2string\">\n                        <xsl:with-param name=\"charList\">\n                            <xsl:value-of select=\".\"/>\n                        </xsl:with-param>\n                    </xsl:call-template>\n                </xsl:if>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template name=\"infochar2string\">\n        <xsl:param name=\"i\">1</xsl:param>\n        <xsl:param name=\"charList\"/>\n\n        <xsl:variable name=\"char\">\n            <xsl:value-of select=\"substring($charList,$i,1)\"/>\n        </xsl:variable>\n        <xsl:choose>\n            <xsl:when test=\"$char='I'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='I']\"/> - </xsl:when>\n            <xsl:when test=\"$char='T'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='T']\"/> - </xsl:when>\n            <xsl:when test=\"$char='S'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='S']\"/> - </xsl:when>\n            <xsl:when test=\"$char='M'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='M']\"/> - </xsl:when>\n            <xsl:when test=\"$char='V'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='V']\"/> - </xsl:when>\n            <xsl:when test=\"$char='o'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='o']\"/> - </xsl:when>\n            <xsl:when test=\"$char='p'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='p']\"/> - </xsl:when>\n            <xsl:when test=\"$char='O'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='O']\"/> - </xsl:when>\n            <xsl:when test=\"$char='L'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='L']\"/> - </xsl:when>\n            <xsl:when test=\"$char='B'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='B']\"/> - </xsl:when>\n            <xsl:when test=\"$char='C'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='C']\"/> - </xsl:when>\n            <xsl:when test=\"$char='f'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='f']\"/> - </xsl:when>\n            <xsl:when test=\"$char='l'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='l']\"/> -\n            </xsl:when>\n        </xsl:choose>\n\n        <xsl:if test=\"not($i>=string-length($charList))\">\n            <xsl:call-template name=\"infochar2string\">\n                <xsl:with-param name=\"i\">\n                    <xsl:value-of select=\"$i+1\"/>\n                </xsl:with-param>\n                <xsl:with-param name=\"charList\">\n                    <xsl:value-of select=\"$charList\"/>\n                </xsl:with-param>\n            </xsl:call-template>\n        </xsl:if>\n    </xsl:template>\n    <xsl:template name=\"css\">\n        <style type=\"text/css\">\n            <![CDATA[\n            body { font-family: \"Lucida Grande\", sans-serif }\n            td.name {font-style: italic; font-size:80%; }\n            th { font-style: italic; font-size: 80%; background-color: lightgrey; }\n            td { vertical-align: top; }\n            ul { margin: 0px; margin-left: 1em; padding: 0px; }\n            table { width: 100%; border-collapse: collapse; }\n            .note { font-size:80%; }\n            .doc { margin: 0.5em; border: solid grey 1px; }\n            .exp { display: none; font-family: monospace; white-space: pre; }\n            ]]>\n        </style>\n    </xsl:template>\n    <xsl:template name=\"svg_ie_workaround\">\n        <xsl:if test=\"system-property('xsl:vendor')='Microsoft'\">\n            <object id=\"AdobeSVG\" classid=\"clsid:78156a80-c6a1-4bbf-8e6a-3cd390eeb4e2\"/>\n            <xsl:processing-instruction name=\"import\">namespace=\"svg\"\n            implementation=\"#AdobeSVG\"</xsl:processing-instruction>\n        </xsl:if>\n    </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/data-config.xml",
    "content": "<dataConfig>\n  <document>\n      <!--\n        Note - In order to index attachments, set processAttachement=\"true\" and drop\n        Tika and its dependencies to example-DIH/solr/mail/lib directory\n       -->\n      <entity processor=\"MailEntityProcessor\" user=\"email@gmail.com\"\n            password=\"password\" host=\"imap.gmail.com\" protocol=\"imaps\"\n            fetchMailsSince=\"2009-09-20 00:00:00\" batchSize=\"20\" folders=\"inbox\" processAttachement=\"false\"\n            name=\"sample_entity\"/>\n  </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default)\n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n\n NOTE: this schema includes many optional features and should not\n be used for benchmarking.\n-->\n\n<schema name=\"example\" version=\"1.2\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.2\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default\n       1.2: omitTf attribute introduced, true by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.\n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->\n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime\n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n\n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!--\n          Numeric field types that manipulate the value into trie encoded strings which are not\n          human readable in the internal form. Range searches on such fields use the fast Trie Range Queries\n          which are much faster than range searches on the SortableNumberField types.\n\n          For the fast range search to work, trie fields must be indexed. Trie fields are <b>not</b> sortable\n          in numerical order. Also, they cannot be used in function queries. If one needs sorting as well as\n          fast range search, one should create a copy field specifically for sorting. Same workaround is\n          suggested for using trie fields in function queries as well.\n\n          For each number being added to this field, multiple terms are generated as per the algorithm described in\n          org.apache.lucene.search.trie package description. The possible number of terms depend on the precisionStep\n          attribute and increase dramatically with higher precision steps (factor 2**precisionStep). The default\n          value of precisionStep is 8.\n\n          Note that if you use a precisionStep of 32 for int/float and 64 for long/double, then multiple terms\n          will not be generated, range search will be no faster than any other number field,\n          but sorting will be possible.\n     -->\n    <fieldType name=\"tint\" class=\"solr.TrieField\" type=\"integer\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tfloat\" class=\"solr.TrieField\" type=\"float\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tlong\" class=\"solr.TrieField\" type=\"long\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tdouble\" class=\"solr.TrieField\" type=\"double\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n    <fieldType name=\"tdouble4\" class=\"solr.TrieField\" type=\"double\" precisionStep=\"4\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n    <!--\n          This date field manipulates the value into a trie encoded strings for fast range searches. They follow the\n          same format and semantics as the normal DateField and support the date math syntax except that they are\n          not sortable and cannot be used in function queries.\n    -->\n    <fieldType name=\"tdate\" class=\"solr.TrieField\" type=\"date\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting\n         purposes.  The ordering is generated based on the field name\n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.\n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n          add enablePositionIncrements=true in both the index and query\n          analyzers to leave a 'gap' for more accurate phrase queries.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"stopwords.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"stopwords.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!--\n     Setup simple analysis for spell checking\n     -->\n    <fieldType name=\"textSpell\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- charFilter + \"CharStream aware\" WhitespaceTokenizer  -->\n    <!--\n    <fieldType name=\"textCharNorm\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <charFilter class=\"solr.MappingCharFilterFactory\" mapping=\"mapping-ISOLatin1Accent.txt\"/>\n        <tokenizer class=\"solr.CharStreamAwareWhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n    -->\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string,\n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n\n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n\n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <fieldtype name=\"phonetic\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.DoubleMetaphoneFilterFactory\" inject=\"false\"/>\n      </analyzer>\n    </fieldtype>\n\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to\n         them will be ignored outright\n     -->\n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" />\n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for\n       best performance.\n     termPositions: Store position information with the term vector.  This will increase storage costs.\n     termOffsets: Store offset information with the term vector. This will increase storage costs.\n   -->\n\n   <field name=\"messageId\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" omitNorms=\"true\" />\n   <field name=\"subject\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" />\n   <field name=\"from\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"sentDate\" type=\"date\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"xMailer\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n\n   <field name=\"allTo\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"flags\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"content\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"attachment\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"attachmentNames\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n\n   <field name=\"catchAllField\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n\n </fields>\n\n  <copyField source=\"content\" dest=\"catchAllField\"/>\n  <copyField source=\"attachmentNames\" dest=\"catchAllField\"/>\n  <copyField source=\"attachment\" dest=\"catchAllField\"/>\n  <copyField source=\"subject\" dest=\"catchAllField\"/>\n  <copyField source=\"allTo\" dest=\"catchAllField\"/>\n\n  <!-- The unique key, Note that some mail servers may not send the message-id or they may send duplicate ones -->\n  <uniqueKey>messageId</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>catchAllField</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!--\n      NOTE: In order to reduce Jar duplication, dataimporthandler-extras \n      explicitly requires the deps from contrib/extraction.\n      See https://issues.apache.org/jira/browse/SOLR-3848\n  -->\n  <lib dir=\"../../../../contrib/extraction/lib\" />\n\n  <lib dir=\"../../../../contrib/dataimporthandler/lib/\" regex=\".*jar$\" />\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n  \n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!--\tEnables JMX if and only if an existing MBeanServer is found, use\n  \t\tthis if you want to configure JMX through JVM parameters. Remove\n  \t\tthis to disable exposing Solr configuration and statistics to JMX.\n\n\t\tIf you want to connect to a particular server, specify the agentId\n\t\te.g. <jmx agentId=\"myAgent\" />\n\n\t\tIf you want to start a new MBeanServer, specify the serviceUrl\n\t\te.g <jmx serviceUrl=\"service:jmx:rmi:///jndi/rmi://localhost:9999/solr\" />\n\n\t\tFor more details see http://wiki.apache.org/solr/SolrJmx\n  -->\n  <jmx />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit>\n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime>\n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies\n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n\n    <!-- There are two implementations of cache available for Solr,\n         LRUCache, based on a synchronized LinkedHashMap, and\n         FastLRUCache, based on a ConcurrentHashMap.  FastLRUCache has faster gets\n         and slower puts in single threaded operation and thus is generally faster\n         than LRUCache when the hit ratio of the cache is high (> 75%), and may be\n         faster under other scenarios on multi-cpu systems. -->\n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation LRUCache or FastLRUCache\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.FastLRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"128\"/>\n\n    <!-- Cache used to hold field values that are quickly accessible\n         by document id.  The fieldValueCache is created by default\n         even if not configured here.\n      <fieldValueCache\n        class=\"solr.FastLRUCache\"\n        size=\"512\"\n        autowarmCount=\"128\"\n        showItems=\"32\"\n      />\n    -->\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"32\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n\n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">fast_warm</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static firstSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>2</maxWarmingSearchers>\n\n  </query>\n\n  <!--\n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"true\" multipartUploadLimitInKB=\"2048000\" formdataUploadLimitInKB=\"2048\" />\n\n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n\n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <!-- <httpCaching never304=\"true\"> -->\n    <httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\">\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n\n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n\n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n\n\n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the\n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.SearchHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!--\n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n<!-- Please refer to http://wiki.apache.org/solr/SolrReplication for details on configuring replication -->\n<!--Master config-->\n<!--\n<requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" >\n    <lst name=\"master\">\n        <str name=\"replicateAfter\">commit</str>\n         <str name=\"confFiles\">schema.xml,stopwords.txt</str>\n    </lst>\n</requestHandler>\n-->\n<!-- Slave config-->\n<!--\n<requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\">\n    <lst name=\"slave\">\n        <str name=\"masterUrl\">http://localhost:8983/solr/replication</str>\n        <str name=\"pollInterval\">00:00:60</str>\n     </lst>\n</requestHandler>\n-->\n\n  <!-- DisMaxRequestHandler allows easy searching across multiple fields\n       for simple user-entered phrases.  It's implementation is now\n       just the standard SearchHandler with a default query parser\n       of \"dismax\".\n       see http://wiki.apache.org/solr/DisMaxRequestHandler\n   -->\n  <requestHandler name=\"dismax\" class=\"solr.SearchHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"defType\">dismax</str>\n     <str name=\"echoParams\">explicit</str>\n     <float name=\"tie\">0.01</float>\n     <str name=\"qf\">\n        text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n     </str>\n     <str name=\"pf\">\n        text^0.2 features^1.1 name^1.5 manu^1.4 manu_exact^1.9\n     </str>\n     <str name=\"bf\">\n        ord(popularity)^0.5 recip(rord(price),1,1000,1000)^0.3\n     </str>\n     <str name=\"fl\">\n        id,name,price,score\n     </str>\n     <str name=\"mm\">\n        2&lt;-1 5&lt;-2 6&lt;90%\n     </str>\n     <int name=\"ps\">100</int>\n     <str name=\"q.alt\">*:*</str>\n     <!-- example highlighter config, enable per-query with hl=true -->\n     <str name=\"hl.fl\">text features name</str>\n     <!-- for this field, we want no fragmenting, just highlighting -->\n     <str name=\"f.name.hl.fragsize\">0</str>\n     <!-- instructs Solr to return the field itself if no query terms are\n          found -->\n     <str name=\"f.name.hl.alternateField\">name</str>\n     <str name=\"f.text.hl.fragmenter\">regex</str> <!-- defined below -->\n    </lst>\n  </requestHandler>\n\n  <!-- Note how you can register the same handler multiple times with\n       different names (and different init parameters)\n    -->\n  <requestHandler name=\"partitioned\" class=\"solr.SearchHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"defType\">dismax</str>\n     <str name=\"echoParams\">explicit</str>\n     <str name=\"qf\">text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0</str>\n     <str name=\"mm\">2&lt;-1 5&lt;-2 6&lt;90%</str>\n     <!-- This is an example of using Date Math to specify a constantly\n          moving date range in a config...\n       -->\n     <str name=\"bq\">incubationdate_dt:[* TO NOW/DAY-1MONTH]^2.2</str>\n    </lst>\n    <!-- In addition to defaults, \"appends\" params can be specified\n         to identify values which should be appended to the list of\n         multi-val params from the query (or the existing \"defaults\").\n\n         In this example, the param \"fq=instock:true\" will be appended to\n         any query time fq params the user may specify, as a mechanism for\n         partitioning the index, independent of any user selected filtering\n         that may also be desired (perhaps as a result of faceted searching).\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"appends\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <lst name=\"appends\">\n      <str name=\"fq\">inStock:true</str>\n    </lst>\n    <!-- \"invariants\" are a way of letting the Solr maintainer lock down\n         the options available to Solr clients.  Any params values\n         specified here are used regardless of what values may be specified\n         in either the query, the \"defaults\", or the \"appends\" params.\n\n         In this example, the facet.field and facet.query params are fixed,\n         limiting the facets clients can use.  Faceting is not turned on by\n         default - but if the client does specify facet=true in the request,\n         these are the only facets they will be able to see counts for;\n         regardless of what other facet.field or facet.query params they\n         may specify.\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"invariants\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <lst name=\"invariants\">\n      <str name=\"facet.field\">cat</str>\n      <str name=\"facet.field\">manu_exact</str>\n      <str name=\"facet.query\">price:[* TO 500]</str>\n      <str name=\"facet.query\">price:[500 TO *]</str>\n    </lst>\n  </requestHandler>\n\n\n  <!--\n   Search components are registered to SolrCore and used by Search Handlers\n\n   By default, the following components are avaliable:\n\n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"stats\"     class=\"org.apache.solr.handler.component.StatsComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n\n   Default configuration in a requestHandler would look like:\n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>stats</str>\n      <str>debug</str>\n    </arr>\n\n    If you register a searchComponent to one of the standard names, that will be used instead.\n    To insert components before or after the 'standard' components, use:\n\n    <arr name=\"first-components\">\n      <str>myFirstComponentName</str>\n    </arr>\n\n    <arr name=\"last-components\">\n      <str>myLastComponentName</str>\n    </arr>\n  -->\n\n   <!-- The spell check component can return a list of alternative spelling\n  suggestions.  -->\n  <searchComponent name=\"spellcheck\" class=\"solr.SpellCheckComponent\">\n\n    <str name=\"queryAnalyzerFieldType\">textSpell</str>\n\n    <lst name=\"spellchecker\">\n      <str name=\"name\">default</str>\n      <str name=\"field\">spell</str>\n      <str name=\"spellcheckIndexDir\">./spellchecker1</str>\n\n    </lst>\n    <lst name=\"spellchecker\">\n      <str name=\"name\">jarowinkler</str>\n      <str name=\"field\">spell</str>\n      <!-- Use a different Distance Measure -->\n      <str name=\"distanceMeasure\">org.apache.lucene.search.spell.JaroWinklerDistance</str>\n      <str name=\"spellcheckIndexDir\">./spellchecker2</str>\n\n    </lst>\n\n    <lst name=\"spellchecker\">\n      <str name=\"classname\">solr.FileBasedSpellChecker</str>\n      <str name=\"name\">file</str>\n      <str name=\"sourceLocation\">spellings.txt</str>\n      <str name=\"characterEncoding\">UTF-8</str>\n      <str name=\"spellcheckIndexDir\">./spellcheckerFile</str>\n    </lst>\n  </searchComponent>\n\n  <!-- A request handler utilizing the spellcheck component.\n  ################################################################################################\n  NOTE: This is purely as an example.  The whole purpose of the SpellCheckComponent is to hook it into\n  the request handler that handles (i.e. the standard or dismax SearchHandler)\n  queries such that a separate request is not needed to get suggestions.\n\n  IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM!\n  ################################################################################################\n  -->\n  <requestHandler name=\"/spellCheckCompRH\" class=\"solr.SearchHandler\">\n    <lst name=\"defaults\">\n      <!-- omp = Only More Popular -->\n      <str name=\"spellcheck.onlyMorePopular\">false</str>\n      <!-- exr = Extended Results -->\n      <str name=\"spellcheck.extendedResults\">false</str>\n      <!--  The number of suggestions to return -->\n      <str name=\"spellcheck.count\">1</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>spellcheck</str>\n    </arr>\n  </requestHandler>\n\n  <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n      <str name=\"config\">data-config.xml</str>\n    </lst>\n  </requestHandler>\n\n  <searchComponent name=\"tvComponent\" class=\"org.apache.solr.handler.component.TermVectorComponent\"/>\n  <!-- A Req Handler for working with the tvComponent.  This is purely as an example.\n  You will likely want to add the component to your already specified request handlers. -->\n  <requestHandler name=\"tvrh\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <bool name=\"tv\">true</bool>\n    </lst>\n    <arr name=\"last-components\">\n      <str>tvComponent</str>\n    </arr>\n  </requestHandler>\n\n  <searchComponent name=\"termsComp\" class=\"org.apache.solr.handler.component.TermsComponent\"/>\n\n  <requestHandler name=\"/autoSuggest\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <arr name=\"components\">\n      <str>termsComp</str>\n    </arr>\n  </requestHandler>\n\n\n  <!-- Update request handler.\n\n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in\n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n\n       To enable solr1.1 behavior, remove the /update handler or change its path\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!--\n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding\n   this single handler is equivalent to registering:\n\n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n\n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str>\n     <str name=\"hidden\">anotherfile.txt</str>\n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n\n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n\n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float>\n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n    </lst>\n   </fragmenter>\n\n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n\n  <!-- An example dedup update processor that creates the \"id\" field on the fly\n       based on the hash code of some other fields.  This example has overwriteDupes\n       set to false since we are using the id field as the signatureField and Solr\n       will maintain uniqueness based on that anyway. -->\n  <!--\n  <updateRequestProcessorChain name=\"dedupe\">\n    <processor class=\"org.apache.solr.update.processor.SignatureUpdateProcessorFactory\">\n      <bool name=\"enabled\">true</bool>\n      <str name=\"signatureField\">id</str>\n      <bool name=\"overwriteDupes\">false</bool>\n      <str name=\"fields\">name,features,cat</str>\n      <str name=\"signatureClass\">org.apache.solr.update.processor.Lookup3Signature</str>\n    </processor>\n    <processor class=\"solr.LogUpdateProcessorFactory\" />\n    <processor class=\"solr.RunUpdateProcessorFactory\" />\n  </updateRequestProcessorChain>\n  -->\n\n\n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified\n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.\n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter>\n\n\n  <!-- example of registering a query parser\n  <queryParser name=\"lucene\" class=\"org.apache.solr.search.LuceneQParserPlugin\"/>\n  -->\n\n  <!-- example of registering a custom function parser\n  <valueSourceParser name=\"myfunc\" class=\"com.mycompany.MyValueSourceParser\" />\n  -->\n\n  <!-- config for the admin interface -->\n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/mail/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/rss-data-config.xml",
    "content": "<dataConfig>\n    <dataSource type=\"URLDataSource\" />\n    <document>\n        <entity name=\"slashdot\"\n                pk=\"link\"\n                url=\"http://rss.slashdot.org/Slashdot/slashdot\"\n                processor=\"XPathEntityProcessor\"\n                forEach=\"/rss/channel | /rss/item\"\n                transformer=\"DateFormatTransformer\">\n\t\t\t\t\n            <field column=\"source\" xpath=\"/rss/channel/title\" commonField=\"true\" />\n            <field column=\"source-link\" xpath=\"/rss/channel/link\" commonField=\"true\" />\n            <field column=\"subject\" xpath=\"/rss/channel/subject\" commonField=\"true\" />\n\t\t\t\n            <field column=\"title\" xpath=\"/rss/item/title\" />\n            <field column=\"link\" xpath=\"/rss/item/link\" />\n            <field column=\"description\" xpath=\"/rss/item/description\" />\n            <field column=\"creator\" xpath=\"/rss/item/creator\" />\n            <field column=\"item-subject\" xpath=\"/rss/item/subject\" />\n            <field column=\"date\" xpath=\"/rss/item/date\" dateTimeFormat=\"yyyy-MM-dd'T'HH:mm:ss\" />\n            <field column=\"slash-department\" xpath=\"/rss/item/department\" />\n            <field column=\"slash-section\" xpath=\"/rss/item/section\" />\n            <field column=\"slash-comments\" xpath=\"/rss/item/comments\" />\n        </entity>\n    </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"rss\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n    <fieldtype name=\"html\" stored=\"true\" indexed=\"true\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n        <charFilter class=\"solr.HTMLStripCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <charFilter class=\"solr.HTMLStripCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldtype>\n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n\t<field name=\"source\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"source-link\" type=\"string\" indexed=\"false\" stored=\"true\" />\n\t\n\t<field name=\"subject\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"title\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"link\" type=\"string\" indexed=\"true\" stored=\"true\" multiValued=\"false\" />\n\t<field name=\"description\" type=\"html\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"creator\" type=\"string\" indexed=\"false\" stored=\"true\" />\n\t<field name=\"item-subject\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"date\" type=\"date\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-department\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-section\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-comments\" type=\"sint\" indexed=\"true\" stored=\"true\" />\n\t\n\t<field name=\"all_text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\" />\n\t<copyField source=\"source\" dest=\"all_text\" />\n\t<copyField source=\"subject\" dest=\"all_text\" />\n\t<copyField source=\"title\" dest=\"all_text\" />\n\t<copyField source=\"description\" dest=\"all_text\" />\n\t<copyField source=\"creator\" dest=\"all_text\" />\n\t<copyField source=\"item-subject\" dest=\"all_text\" />\n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>link</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>all_text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\"\n   \tclass=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n   \t<lst name=\"defaults\">\n   \t\t<str name=\"config\">rss-data-config.xml</str>\n   \t</lst>\n   </requestHandler>  \n  \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter-->\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/rss/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"solr\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n   <field name=\"id\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" multiValued=\"false\" /> \n   <field name=\"sku\" type=\"textTight\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"name\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"nameSort\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"alphaNameSort\" type=\"alphaOnlySort\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"manu\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"cat\" type=\"text_ws\" indexed=\"true\" stored=\"true\" multiValued=\"true\" omitNorms=\"true\" termVectors=\"true\" />\n   <field name=\"features\" type=\"text\" indexed=\"true\" stored=\"true\" multiValued=\"true\"/>\n   <field name=\"includes\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n\n   <field name=\"weight\" type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"price\"  type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <!-- \"default\" values can be specified for fields, indicating which\n        value should be used if no value is specified when adding a document.\n     -->\n   <field name=\"popularity\" type=\"sint\" indexed=\"true\" stored=\"true\" default=\"0\"/>\n   <field name=\"inStock\" type=\"boolean\" indexed=\"true\" stored=\"true\"/>\n\n   <!-- Some sample docs exists solely to demonstrate the spellchecker\n        functionality, this is the only field they container.\n        Typically you might build the spellchecker of \"catchall\" type field\n        containing all of the text in each document\n     -->\n   <field name=\"word\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n\n   \n   <!-- catchall field, containing all other searchable text fields (implemented\n        via copyField further on in this schema  -->\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\"/>\n\n   <!-- non-tokenized version of manufacturer to make it easier to sort or group\n        results by manufacturer.  copied from \"manu\" via copyField -->\n   <field name=\"manu_exact\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n\n   <!-- Dynamic field definitions.  If a field name is not found, dynamicFields\n        will be used if the name matches any of the patterns.\n        RESTRICTION: the glob-like pattern in the name attribute must have\n        a \"*\" only at the start or the end.\n        EXAMPLE:  name=\"*_i\" will match any field ending in _i (like myid_i, z_i)\n        Longer patterns will be matched first.  if equal size patterns\n        both match, the first appearing in the schema will be used.  -->\n   <dynamicField name=\"*_i\"  type=\"sint\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_s\"  type=\"string\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_l\"  type=\"slong\"   indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_t\"  type=\"text\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_b\"  type=\"boolean\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_f\"  type=\"sfloat\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_d\"  type=\"sdouble\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_dt\" type=\"date\"    indexed=\"true\"  stored=\"true\"/>\n\n   <dynamicField name=\"random*\" type=\"random\" />\n\n   <!-- uncomment the following to ignore any fields that don't already match an existing \n        field name or dynamic field, rather than reporting them as an error. \n        alternately, change the type=\"ignored\" to some other type e.g. \"text\" if you want \n        unknown fields indexed and/or stored by default --> \n   <!--dynamicField name=\"*\" type=\"ignored\" multiValued=\"true\" /-->\n   \n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n  <!-- copyField commands copy one field to another at the time a document\n        is added to the index.  It's used either to index the same field differently,\n        or to add multiple fields to the same field for easier/faster searching.  -->\n   <copyField source=\"id\" dest=\"sku\"/>\n\n   <copyField source=\"cat\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"nameSort\"/>\n   <copyField source=\"name\" dest=\"alphaNameSort\"/>\n   <copyField source=\"manu\" dest=\"text\"/>\n   <copyField source=\"features\" dest=\"text\"/>\n   <copyField source=\"includes\" dest=\"text\"/>\n\n   <copyField source=\"manu\" dest=\"manu_exact\"/>\n\n <!-- Similarity is the scoring routine for each document vs. a query.\n      A custom similarity may be specified here, but the default is fine\n      for most applications.  -->\n <!-- <similarity class=\"org.apache.lucene.search.similarities.DefaultSimilarity\"/> -->\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/solr-data-config.xml",
    "content": "<!--\n  Licensed to the Apache Software Foundation (ASF) under one or more\n  contributor license agreements.  See the NOTICE file distributed with\n  this work for additional information regarding copyright ownership.\n  The ASF licenses this file to You under the Apache License, Version 2.0\n  (the \"License\"); you may not use this file except in compliance with\n  the License.  You may obtain a copy of the License at\n\n      http://www.apache.org/licenses/LICENSE-2.0\n\n  Unless required by applicable law or agreed to in writing, software\n  distributed under the License is distributed on an \"AS IS\" BASIS,\n  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  See the License for the specific language governing permissions and\n  limitations under the License.\n  -->\n\n<dataConfig>\n  <document>\n    <entity name=\"sep\" processor=\"SolrEntityProcessor\" url=\"http://127.0.0.1:8983/solr/db \" query=\"*:*\"/>\n  </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n    \t<str name=\"config\">solr-data-config.xml</str>\n    </lst>\n   </requestHandler>\n\n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\\"']{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<solr sharedLib=\"lib\" persistent=\"true\">\n\t<cores adminPath=\"/admin/cores\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\">\n\t\t<core default=\"true\" instanceDir=\"db\" name=\"db\"/>\n\t\t<core default=\"false\" instanceDir=\"rss\" name=\"rss\"/>\n\t\t<core default=\"false\" instanceDir=\"mail\" name=\"mail\"/>\n\t\t<core default=\"false\" instanceDir=\"tika\" name=\"tika\"/>\n    <core default=\"false\" instanceDir=\"solr\" name=\"solr\"/>\n\t</cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/tika/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/tika/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/tika/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/tika/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"test\" version=\"1.2\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!--<filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>-->\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!--<filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>-->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!--<filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>-->\n        <!--<filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>-->\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!--<filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>-->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <field name=\"title\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"author\" type=\"string\" indexed=\"true\" stored=\"true\" />\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"true\" />\n   \n </fields>\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/tika/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!--\n      NOTE: In order to reduce Jar duplication, dataimporthandler-extras \n      explicitly requires the deps from contrib/extraction.\n      See https://issues.apache.org/jira/browse/SOLR-3848\n  -->\n  <lib dir=\"../../../../contrib/extraction/lib\" />\n\n  <lib dir=\"../../../../contrib/dataimporthandler/lib/\" regex=\".*jar$\" />\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n  \n  <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n\t\t<str name=\"config\">tika-data-config.xml</str>\n\t</lst>\n  </requestHandler>\n    \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\" >\n    <!--\n    <str name=\"update.processor.class\">org.apache.solr.handler.UpdateRequestProcessor</str>\n    -->\n  </requestHandler>\n  \n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/example-DIH/solr/tika/conf/tika-data-config.xml",
    "content": "<dataConfig>\n    <dataSource type=\"BinFileDataSource\" />\n    <document>\n        <entity name=\"tika-test\" processor=\"TikaEntityProcessor\"\n                url=\"../contrib/extraction/src/test-files/extraction/solr-word.pdf\" format=\"text\">\n                <field column=\"Author\" name=\"author\" meta=\"true\"/>\n                <field column=\"title\" name=\"title\" meta=\"true\"/>\n                <field column=\"text\" name=\"text\"/>\n        </entity>\n    </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/books.csv",
    "content": "id,cat,name,price,inStock,author,series_t,sequence_i,genre_s\n0553573403,book,A Game of Thrones,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",1,fantasy\n0553579908,book,A Clash of Kings,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",2,fantasy\n055357342X,book,A Storm of Swords,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",3,fantasy\n0553293354,book,Foundation,7.99,true,Isaac Asimov,Foundation Novels,1,scifi\n0812521390,book,The Black Company,6.99,false,Glen Cook,The Chronicles of The Black Company,1,fantasy\n0812550706,book,Ender's Game,6.99,true,Orson Scott Card,Ender,1,scifi\n0441385532,book,Jhereg,7.95,false,Steven Brust,Vlad Taltos,1,fantasy\n0380014300,book,Nine Princes In Amber,6.99,true,Roger Zelazny,the Chronicles of Amber,1,fantasy\n0805080481,book,The Book of Three,5.99,true,Lloyd Alexander,The Chronicles of Prydain,1,fantasy\n080508049X,book,The Black Cauldron,5.99,true,Lloyd Alexander,The Chronicles of Prydain,2,fantasy\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/books.json",
    "content": "[\n  {\n    \"id\" : \"978-0641723445\",\n    \"cat\" : [\"book\",\"hardcover\"],\n    \"name\" : \"The Lightning Thief\",\n    \"author\" : \"Rick Riordan\",\n    \"series_t\" : \"Percy Jackson and the Olympians\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 12.50,\n    \"pages_i\" : 384\n  }\n,\n  {\n    \"id\" : \"978-1423103349\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"The Sea of Monsters\",\n    \"author\" : \"Rick Riordan\",\n    \"series_t\" : \"Percy Jackson and the Olympians\",\n    \"sequence_i\" : 2,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 6.49,\n    \"pages_i\" : 304\n  }\n,\n  {\n    \"id\" : \"978-1857995879\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"Sophie's World : The Greek Philosophers\",\n    \"author\" : \"Jostein Gaarder\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 3.07,\n    \"pages_i\" : 64\n  }\n,\n  {\n    \"id\" : \"978-1933988177\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"Lucene in Action, Second Edition\",\n    \"author\" : \"Michael McCandless\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"IT\",\n    \"inStock\" : true,\n    \"price\" : 30.50,\n    \"pages_i\" : 475\n  }\n]\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/gb18030-example.xml",
    "content": "<?xml version=\"1.0\" encoding=\"GB18030\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n  <doc>\n    <field name=\"id\">GB18030TEST</field>\n    <field name=\"name\">Test with some GB18030 encoded characters</field>\n    <field name=\"features\">No accents here</field>\n    <field name=\"features\">һ</field>\n    <field name=\"features\">This is a feature (translated)</field>\n    <field name=\"features\">ļǺй</field>\n    <field name=\"features\">This document is very shiny (translated)</field>\n    <field name=\"price\">0</field>\n    <field name=\"inStock\">true</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/hd.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">SP2514N</field>\n  <field name=\"name\">Samsung SpinPoint P120 SP2514N - hard drive - 250 GB - ATA-133</field>\n  <field name=\"manu\">Samsung Electronics Co. Ltd.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">samsung</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">hard drive</field>\n  <field name=\"features\">7200RPM, 8MB cache, IDE Ultra ATA-133</field>\n  <field name=\"features\">NoiseGuard, SilentSeek technology, Fluid Dynamic Bearing (FDB) motor</field>\n  <field name=\"price\">92</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n  <!-- Near Oklahoma city -->\n  <field name=\"store\">35.0752,-97.032</field>\n</doc>\n\n<doc>\n  <field name=\"id\">6H500F0</field>\n  <field name=\"name\">Maxtor DiamondMax 11 - hard drive - 500 GB - SATA-300</field>\n  <field name=\"manu\">Maxtor Corp.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">maxtor</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">hard drive</field>\n  <field name=\"features\">SATA 3.0Gb/s, NCQ</field>\n  <field name=\"features\">8.5ms seek</field>\n  <field name=\"features\">16MB cache</field>\n  <field name=\"price\">350</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.17614,-93.87341</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n</doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/ipod_other.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n\n<doc>\n  <field name=\"id\">F8V7067-APL-KIT</field>\n  <field name=\"name\">Belkin Mobile Power Cord for iPod w/ Dock</field>\n  <field name=\"manu\">Belkin</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">belkin</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">connector</field>\n  <field name=\"features\">car power adapter, white</field>\n  <field name=\"weight\">4</field>\n  <field name=\"price\">19.95</field>\n  <field name=\"popularity\">1</field>\n  <field name=\"inStock\">false</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18014,-93.87741</field>\n  <field name=\"manufacturedate_dt\">2005-08-01T16:30:25Z</field>\n</doc>\n\n<doc>\n  <field name=\"id\">IW-02</field>\n  <field name=\"name\">iPod &amp; iPod Mini USB 2.0 Cable</field>\n  <field name=\"manu\">Belkin</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">belkin</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">connector</field>\n  <field name=\"features\">car power adapter for iPod, white</field>\n  <field name=\"weight\">2</field>\n  <field name=\"price\">11.50</field>\n  <field name=\"popularity\">1</field>\n  <field name=\"inStock\">false</field>\n  <!-- San Francisco store -->\n  <field name=\"store\">37.7752,-122.4232</field>\n  <field name=\"manufacturedate_dt\">2006-02-14T23:55:59Z</field>\n</doc>\n\n\n</add>\n\n\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/ipod_video.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">MA147LL/A</field>\n  <field name=\"name\">Apple 60 GB iPod with Video Playback Black</field>\n  <field name=\"manu\">Apple Computer Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">apple</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">music</field>\n  <field name=\"features\">iTunes, Podcasts, Audiobooks</field>\n  <field name=\"features\">Stores up to 15,000 songs, 25,000 photos, or 150 hours of video</field>\n  <field name=\"features\">2.5-inch, 320x240 color TFT LCD display with LED backlight</field>\n  <field name=\"features\">Up to 20 hours of battery life</field>\n  <field name=\"features\">Plays AAC, MP3, WAV, AIFF, Audible, Apple Lossless, H.264 video</field>\n  <field name=\"features\">Notes, Calendar, Phone book, Hold button, Date display, Photo wallet, Built-in games, JPEG photo playback, Upgradeable firmware, USB 2.0 compatibility, Playback speed control, Rechargeable capability, Battery level indication</field>\n  <field name=\"includes\">earbud headphones, USB cable</field>\n  <field name=\"weight\">5.5</field>\n  <field name=\"price\">399.00</field>\n  <field name=\"popularity\">10</field>\n  <field name=\"inStock\">true</field>\n  <!-- Dodge City store -->\n  <field name=\"store\">37.7752,-100.0232</field>\n  <field name=\"manufacturedate_dt\">2005-10-12T08:00:00Z</field>\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/manufacturers.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n  <doc>\n    <field name=\"id\">adata</field>\n    <field name=\"compName_s\">A-Data Technology</field>\n    <field name=\"address_s\">46221 Landing Parkway Fremont, CA 94538</field>\n  </doc>\n  <doc>\n    <field name=\"id\">apple</field>\n    <field name=\"compName_s\">Apple</field>\n    <field name=\"address_s\">1 Infinite Way, Cupertino CA</field>\n  </doc>\n  <doc>\n    <field name=\"id\">asus</field>\n    <field name=\"compName_s\">ASUS Computer</field>\n    <field name=\"address_s\">800 Corporate Way Fremont, CA 94539</field>\n  </doc>\n  <doc>\n    <field name=\"id\">ati</field>\n    <field name=\"compName_s\">ATI Technologies</field>\n    <field name=\"address_s\">33 Commerce Valley Drive East Thornhill, ON L3T 7N6 Canada</field>\n  </doc>\n  <doc>\n    <field name=\"id\">belkin</field>\n    <field name=\"compName_s\">Belkin</field>\n    <field name=\"address_s\">12045 E. Waterfront Drive Playa Vista, CA 90094</field>\n  </doc>\n  <doc>\n    <field name=\"id\">canon</field>\n    <field name=\"compName_s\">Canon, Inc.</field>\n    <field name=\"address_s\">One Canon Plaza Lake Success, NY 11042</field>\n  </doc>\n  <doc>\n    <field name=\"id\">corsair</field>\n    <field name=\"compName_s\">Corsair Microsystems</field>\n    <field name=\"address_s\">46221 Landing Parkway Fremont, CA 94538</field>\n  </doc>\n  <doc>\n    <field name=\"id\">dell</field>\n    <field name=\"compName_s\">Dell, Inc.</field>\n    <field name=\"address_s\">One Dell Way Round Rock, Texas 78682</field>\n  </doc>\n  <doc>\n    <field name=\"id\">maxtor</field>\n    <field name=\"compName_s\">Maxtor Corporation</field>\n    <field name=\"address_s\">920 Disc Drive Scotts Valley, CA 95066</field>\n  </doc>\n  <doc>\n    <field name=\"id\">samsung</field>\n    <field name=\"compName_s\">Samsung Electronics Co. Ltd.</field>\n    <field name=\"address_s\">105 Challenger Rd. Ridgefield Park, NJ 07660-0511</field>\n  </doc>\n  <doc>\n    <field name=\"id\">viewsonic</field>\n    <field name=\"compName_s\">ViewSonic Corp</field>\n    <field name=\"address_s\">381 Brea Canyon Road Walnut, CA 91789-0708</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/mem.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">TWINX2048-3200PRO</field>\n  <field name=\"name\">CORSAIR  XMS 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) Dual Channel Kit System Memory - Retail</field>\n  <field name=\"manu\">Corsair Microsystems Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"features\">CAS latency 2,\t2-3-3-6 timing, 2.75v, unbuffered, heat-spreader</field>\n  <field name=\"price\">185</field>\n  <field name=\"popularity\">5</field>\n  <field name=\"inStock\">true</field>\n  <!-- San Francisco store -->\n  <field name=\"store\">37.7752,-122.4232</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <!-- a field for testing payload tagged text via DelimitedPayloadTokenFilter -->\n  <field name=\"payloads\">electronics|6.0 memory|3.0</field>\n</doc>\n\n<doc>\n  <field name=\"id\">VS1GB400C3</field>\n  <field name=\"name\">CORSAIR ValueSelect 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - Retail</field>\n  <field name=\"manu\">Corsair Microsystems Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"price\">74.99</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">true</field>\n  <!-- Dodge City store -->\n  <field name=\"store\">37.7752,-100.0232</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <field name=\"payloads\">electronics|4.0 memory|2.0</field>\n</doc>\n\n<doc>\n  <field name=\"id\">VDBDB1A16</field>\n  <field name=\"name\">A-DATA V-Series 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - OEM</field>\n  <field name=\"manu\">A-DATA Technology Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"features\">CAS latency 3,\t 2.7v</field>\n  <!-- note: price & popularity is missing on this one -->\n  <field name=\"popularity\">0</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18414,-93.88141</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <field name=\"payloads\">electronics|0.9 memory|0.1</field>\n</doc>\n\n</add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/money.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- Example documents utilizing the CurrencyField type -->\n<add>\n<doc>\n  <field name=\"id\">USD</field>\n  <field name=\"name\">One Dollar</field>\n  <field name=\"manu\">Bank of America</field>\n  <field name=\"manu_id_s\">boa</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,USD</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">EUR</field>\n  <field name=\"name\">One Euro</field>\n  <field name=\"manu\">European Union</field>\n  <field name=\"manu_id_s\">eu</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,EUR</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">GBP</field>\n  <field name=\"name\">One British Pound</field>\n  <field name=\"manu\">U.K.</field>\n  <field name=\"manu_id_s\">uk</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,GBP</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">NOK</field>\n  <field name=\"name\">One Krone</field>\n  <field name=\"manu\">Bank of Norway</field>\n  <field name=\"manu_id_s\">nor</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,NOK</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n</add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/monitor.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">3007WFP</field>\n  <field name=\"name\">Dell Widescreen UltraSharp 3007WFP</field>\n  <field name=\"manu\">Dell, Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">dell</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">monitor</field>\n  <field name=\"features\">30\" TFT active matrix LCD, 2560 x 1600, .25mm dot pitch, 700:1 contrast</field>\n  <field name=\"includes\">USB cable</field>\n  <field name=\"weight\">401.6</field>\n  <field name=\"price\">2199</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">43.17614,-90.57341</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/monitor2.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">VA902B</field>\n  <field name=\"name\">ViewSonic VA902B - flat panel display - TFT - 19\"</field>\n  <field name=\"manu\">ViewSonic Corp.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">viewsonic</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">monitor</field>\n  <field name=\"features\">19\" TFT active matrix LCD, 8ms response time, 1280 x 1024 native resolution</field>\n  <field name=\"weight\">190.4</field>\n  <field name=\"price\">279.95</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18814,-93.88541</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/mp500.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">0579B002</field>\n  <field name=\"name\">Canon PIXMA MP500 All-In-One Photo Printer</field>\n  <field name=\"manu\">Canon Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">canon</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">multifunction printer</field>\n  <field name=\"cat\">printer</field>\n  <field name=\"cat\">scanner</field>\n  <field name=\"cat\">copier</field>\n  <field name=\"features\">Multifunction ink-jet color photo printer</field>\n  <field name=\"features\">Flatbed scanner, optical scan resolution of 1,200 x 2,400 dpi</field>\n  <field name=\"features\">2.5\" color LCD preview screen</field>\n  <field name=\"features\">Duplex Copying</field>\n  <field name=\"features\">Printing speed up to 29ppm black, 19ppm color</field>\n  <field name=\"features\">Hi-Speed USB</field>\n  <field name=\"features\">memory card: CompactFlash, Micro Drive, SmartMedia, Memory Stick, Memory Stick Pro, SD Card, and MultiMediaCard</field>\n  <field name=\"weight\">352</field>\n  <field name=\"price\">179.99</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.19214,-93.89941</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/post.sh",
    "content": "#!/bin/sh\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nFILES=$*\nURL=http://localhost:8983/solr/update\n\nfor f in $FILES; do\n  echo Posting file $f to $URL\n  curl $URL --data-binary @$f -H 'Content-type:application/xml' \n  echo\ndone\n\n#send the commit command to make sure all the changes are flushed and visible\n#curl $URL --data-binary '<commit softCommit=true/>' -H 'Content-type:application/xml'\n\ncurl \"$URL?softCommit=true\"\necho\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/sd500.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">9885A004</field>\n  <field name=\"name\">Canon PowerShot SD500</field>\n  <field name=\"manu\">Canon Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">canon</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">camera</field>\n  <field name=\"features\">3x zoop, 7.1 megapixel Digital ELPH</field>\n  <field name=\"features\">movie clips up to 640x480 @30 fps</field>\n  <field name=\"features\">2.0\" TFT LCD, 118,000 pixels</field>\n  <field name=\"features\">built in flash, red-eye reduction</field>\n  <field name=\"includes\">32MB SD card, USB cable, AV cable, battery</field>\n  <field name=\"weight\">6.4</field>\n  <field name=\"price\">329.95</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.19614,-93.90341</field>\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/solr.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">SOLR1000</field>\n  <field name=\"name\">Solr, the Enterprise Search Server</field>\n  <field name=\"manu\">Apache Software Foundation</field>\n  <field name=\"cat\">software</field>\n  <field name=\"cat\">search</field>\n  <field name=\"features\">Advanced Full-Text Search Capabilities using Lucene</field>\n  <field name=\"features\">Optimized for High Volume Web Traffic</field>\n  <field name=\"features\">Standards Based Open Interfaces - XML and HTTP</field>\n  <field name=\"features\">Comprehensive HTML Administration Interfaces</field>\n  <field name=\"features\">Scalability - Efficient Replication to other Solr Search Servers</field>\n  <field name=\"features\">Flexible and Adaptable with XML configuration and Schema</field>\n  <field name=\"features\">Good unicode support: h&#xE9;llo (hello with an accent over the e)</field>\n  <field name=\"price\">0</field>\n  <field name=\"popularity\">10</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"incubationdate_dt\">2006-01-17T00:00:00.000Z</field>\n</doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/test_utf8.sh",
    "content": "#!/bin/sh\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#Test script to tell if the server is accepting UTF-8\n#The python writer currently escapes non-ascii chars, so it's good for testing\n\nURL=http://localhost:8983/solr\n\nif [ ! -z $1 ]; then\n  URL=$1\nfi\n\ncurl \"$URL/select?q=hello&params=explicit&wt=python\" 2> /dev/null | grep 'hello' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"Solr server is up.\"\nelse\n  echo \"ERROR: Could not curl to Solr - is curl installed? Is Solr not running?\"\n  exit 1\nfi\n\ncurl \"$URL/select?q=h%C3%A9llo&echoParams=explicit&wt=python\" 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP GET is accepting UTF-8\"\nelse\n  echo \"ERROR: HTTP GET is not accepting UTF-8\"\nfi\n\ncurl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST is accepting UTF-8\"\nelse\n  echo \"ERROR: HTTP POST is not accepting UTF-8\"\nfi\n\ncurl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST defaults to UTF-8\"\nelse\n  echo \"HTTP POST does not default to UTF-8\"\nfi\n\n\n#A unicode character outside of the BMP (a circle with an x inside)\nCHAR=\"𐌈\"\nCODEPOINT='0x10308'\n#URL encoded UTF8 of the codepoint\nURL_UTF8='%F0%90%8C%88'\n#expected return of the python writer (currently uses UTF-16 surrogates)\nEXPECTED='\\\\ud800\\\\udf08'\n\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python\" 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP GET is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP GET is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\ncurl $URL/select --data-binary \"q=$URL_UTF8&echoParams=explicit&wt=python\"  -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP POST is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python\" --data-binary '' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST + URL params is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP POST + URL params is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\n#curl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=json\" 2> /dev/null | od -tx1 -w1000 | sed 's/ //g' | grep 'f4808198' > /dev/null 2>&1\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=json\" 2> /dev/null | grep \"$CHAR\" > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"Response correctly returns UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: Response can't return UTF-8 beyond the basic multilingual plane\"\nfi\n\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/utf8-example.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- \n  After posting this to SOLR with post.sh, searching for \"êâîôû\" from \n  the solr/admin/ search page must return this document.\n -->\n\n<add>\n  <doc>\n    <field name=\"id\">UTF8TEST</field>\n    <field name=\"name\">Test with some UTF-8 encoded characters</field>\n    <field name=\"manu\">Apache Software Foundation</field>\n    <field name=\"cat\">software</field>\n    <field name=\"cat\">search</field>\n    <field name=\"features\">No accents here</field>\n    <field name=\"features\">This is an e acute: é</field>\n    <field name=\"features\">eaiou with circumflexes: êâîôû</field>\n    <field name=\"features\">eaiou with umlauts: ëäïöü</field>\n    <field name=\"features\">tag with escaped chars: &lt;nicetag/&gt;</field>\n    <field name=\"features\">escaped ampersand: Bonnie &amp; Clyde</field>\n    <field name=\"features\">Outside the BMP:𐌈 codepoint=10308, a circle with an x inside. UTF8=f0908c88 UTF16=d800 df08</field>\n    <field name=\"price\">0</field>\n    <field name=\"inStock\">true</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/exampledocs/vidcard.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">EN7800GTX/2DHTV/256M</field>\n  <field name=\"name\">ASUS Extreme N7800GTX/2DHTV (256 MB)</field>\n  <!-- Denormalized -->\n  <field name=\"manu\">ASUS Computer Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">asus</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">graphics card</field>\n  <field name=\"features\">NVIDIA GeForce 7800 GTX GPU/VPU clocked at 486MHz</field>\n  <field name=\"features\">256MB GDDR3 Memory clocked at 1.35GHz</field>\n  <field name=\"features\">PCI Express x16</field>\n  <field name=\"features\">Dual DVI connectors, HDTV out, video input</field>\n  <field name=\"features\">OpenGL 2.0, DirectX 9.0</field>\n  <field name=\"weight\">16</field>\n  <field name=\"price\">479.95</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"store\">40.7143,-74.006</field>\n  <field name=\"inStock\">false</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z/DAY</field>\n</doc>\n  <!-- yes, you can add more than one document at a time -->\n<doc>\n  <field name=\"id\">100-435805</field>\n  <field name=\"name\">ATI Radeon X1900 XTX 512 MB PCIE Video Card</field>\n  <field name=\"manu\">ATI Technologies</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">ati</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">graphics card</field>\n  <field name=\"features\">ATI RADEON X1900 GPU/VPU clocked at 650MHz</field>\n  <field name=\"features\">512MB GDDR3 SDRAM clocked at 1.55GHz</field>\n  <field name=\"features\">PCI Express x16</field>\n  <field name=\"features\">dual DVI, HDTV, svideo, composite out</field>\n  <field name=\"features\">OpenGL 2.0, DirectX 9.0</field>\n  <field name=\"weight\">48</field>\n  <field name=\"price\">649.99</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">false</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z/DAY</field>\n  <!-- NYC store -->\n  <field name=\"store\">40.7143,-74.006</field>\n</doc>\n</add>\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/README.txt",
    "content": "This is an alternative setup structure to support multiple cores.\n\nTo run this configuration, start jetty in the example/ directory using:\n\njava -Dsolr.solr.home=multicore -jar start.jar\n\nFor general examples on standard solr configuration, see the \"solr\" directory.\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/core0/conf/schema.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<schema name=\"example core zero\" version=\"1.1\">\n  <types>\n   <fieldtype name=\"string\"  class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n   <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n  </types>\n\n <fields>   \n  <!-- general -->\n  <field name=\"id\"        type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" required=\"true\"/>\n  <field name=\"type\"      type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"name\"      type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"core0\"     type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"_version_\" type=\"long\"     indexed=\"true\"  stored=\"true\"/>\n </fields>\n\n <!-- field to use to determine and enforce document uniqueness. -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>name</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n</schema>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/core0/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is a stripped down config file used for a simple example...  \n It is *not* a good example to work from. \n-->\n<config>\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n  <!--  The DirectoryFactory to use for indexes.\n        solr.StandardDirectoryFactory, the default, is filesystem based.\n        solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->\n  <directoryFactory name=\"DirectoryFactory\" class=\"${solr.directoryFactory:solr.StandardDirectoryFactory}\"/>\n\n  <dataDir>${solr.core0.data.dir:}</dataDir>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n    <updateLog>\n      <str name=\"dir\">${solr.core0.data.dir:}</str>\n    </updateLog>\n  </updateHandler>\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields \n    of any document, without the need to commit or open a new searcher. The current \n    implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n    <lst name=\"defaults\">\n      <str name=\"omitHeader\">true</str>\n    </lst>\n  </requestHandler>  \n  \n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" startup=\"lazy\" /> \n\n  <requestDispatcher handleSelect=\"true\" >\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n  </requestDispatcher>\n  \n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\" />\n  <requestHandler name=\"/analysis/field\" startup=\"lazy\" class=\"solr.FieldAnalysisRequestHandler\" />\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n     \n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n  </requestHandler>\n   \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/core1/conf/schema.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<schema name=\"example core one\" version=\"1.1\">\n  <types>\n   <fieldtype name=\"string\"  class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n   <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n  </types>\n\n <fields>   \n  <!-- general -->\n  <field name=\"id\"        type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" required=\"true\"/>\n  <field name=\"type\"      type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"name\"      type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"core1\"     type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" />\n  <field name=\"_version_\" type=\"long\"      indexed=\"true\"  stored=\"true\"/>\n </fields>\n\n <!-- field to use to determine and enforce document uniqueness. -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>name</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n</schema>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/core1/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is a stripped down config file used for a simple example...  \n It is *not* a good example to work from. \n-->\n<config>\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n  <!--  The DirectoryFactory to use for indexes.\n        solr.StandardDirectoryFactory, the default, is filesystem based.\n        solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->\n  <directoryFactory name=\"DirectoryFactory\" class=\"${solr.directoryFactory:solr.StandardDirectoryFactory}\"/>\n\n  <dataDir>${solr.core1.data.dir:}</dataDir>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n    <updateLog>\n      <str name=\"dir\">${solr.core1.data.dir:}</str>\n    </updateLog>\n  </updateHandler>\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields \n    of any document, without the need to commit or open a new searcher. The current \n    implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n    <lst name=\"defaults\">\n      <str name=\"omitHeader\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" startup=\"lazy\" /> \n\n  <requestDispatcher handleSelect=\"true\" >\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n  </requestDispatcher>\n  \n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\" />\n  <requestHandler name=\"/analysis/field\" startup=\"lazy\" class=\"solr.FieldAnalysisRequestHandler\" />\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n  </requestHandler>\n\n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/exampledocs/ipod_other.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n\n<doc>\n  <field name=\"id\">F8V7067-APL-KIT</field>\n  <field name=\"name\">Belkin Mobile Power Cord for iPod w/ Dock</field>\n</doc>\n\n<doc>\n  <field name=\"id\">IW-02</field>\n  <field name=\"name\">iPod &amp; iPod Mini USB 2.0 Cable</field>\n</doc>\n\n\n</add>\n\n\n\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/exampledocs/ipod_video.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">MA147LL/A</field>\n  <field name=\"name\">Apple 60 GB iPod with Video Playback Black</field>\n\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n All (relative) paths are relative to the installation path\n  \n  persistent: Save changes made via the API to this file\n  sharedLib: path to a lib directory that will be shared across all cores\n-->\n<solr persistent=\"false\">\n\n  <!--\n  adminPath: RequestHandler path to manage cores.  \n    If 'null' (or absent), cores will not be manageable via request handler\n  -->\n  <cores adminPath=\"/admin/cores\" host=\"${host:}\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\">\n    <core name=\"core0\" instanceDir=\"core0\" />\n    <core name=\"core1\" instanceDir=\"core1\" />\n  </cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/relsyn/multicore/zoo.cfg",
    "content": "# The number of milliseconds of each tick\ntickTime=2000\n# The number of ticks that the initial\n# synchronization phase can take\ninitLimit=10\n# The number of ticks that can pass between\n# sending a request and getting an acknowledgement\nsyncLimit=5\n\n# the directory where the snapshot is stored.\n# dataDir=/opt/zookeeper/data\n# NOTE: Solr defaults the dataDir to <solrHome>/zoo_data\n\n# the port at which the clients will connect\n# clientPort=2181\n# NOTE: Solr sets this based on zkRun / zkHost params\n\n"
  },
  {
    "path": "oqa-solr/relsyn/resources/log4j.properties",
    "content": "#  Logging level\nlog4j.rootLogger=INFO, file, CONSOLE\n\nlog4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender\n\nlog4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout\nlog4j.appender.CONSOLE.layout.ConversionPattern=%-4r [%t] %-5p %c %x \\u2013 %m%n\n\n#- size rotation with log cleanup.\nlog4j.appender.file=org.apache.log4j.RollingFileAppender\nlog4j.appender.file.MaxFileSize=4MB\nlog4j.appender.file.MaxBackupIndex=9\n\n#- File to log to and log format\nlog4j.appender.file.File=logs/solr.log\nlog4j.appender.file.layout=org.apache.log4j.PatternLayout\nlog4j.appender.file.layout.ConversionPattern=%-5p - %d{yyyy-MM-dd HH:mm:ss.SSS}; %C; %m\\n\n\nlog4j.logger.org.apache.zookeeper=WARN"
  },
  {
    "path": "oqa-solr/relsyn/solr/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\nExample Solr Home Directory\n=============================\n\nThis directory is provided as an example of what a \"Solr Home\" directory\nshould look like.\n\nIt's not strictly necessary that you copy all of the files in this\ndirectory when setting up a new instance of Solr, but it is recommended.\n\n\nBasic Directory Structure\n-------------------------\n\nThe Solr Home directory typically contains the following...\n\n* solr.xml *\n\nThis is the primary configuration file Solr looks for when starting.\nThis file specifies the list of \"SolrCores\" it should load, and high \nlevel configuration options that should be used for all SolrCores.\n\nPlease see the comments in ./solr.xml for more details.\n\nIf no solr.xml file is found, then Solr assumes that there should be\na single SolrCore named \"collection1\" and that the \"Instance Directory\" \nfor collection1 should be the same as the Solr Home Directory.\n\n* Individual SolrCore Instance Directories *\n\nAlthough solr.xml can be configured to look for SolrCore Instance Directories \nin any path, simple sub-directories of the Solr Home Dir using relative paths \nare common for many installations.  In this directory you can see the \n\"./collection1\" Instance Directory.\n\n* A Shared 'lib' Directory *\n\nAlthough solr.xml can be configured with an optional \"sharedLib\" attribute \nthat can point to any path, it is common to use a \"./lib\" sub-directory of the \nSolr Home Directory.\n\n* ZooKeeper Files *\n\nWhen using SolrCloud using the embedded ZooKeeper option for Solr, it is \ncommon to have a \"zoo.cfg\" file and \"zoo_data\" directories in the Solr Home \nDirectory.  Please see the SolrCloud wiki page for more details...\n\nhttps://wiki.apache.org/solr/SolrCloud\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\nExample SolrCore Instance Directory\n=============================\n\nThis directory is provided as an example of what an \"Instance Directory\"\nshould look like for a SolrCore\n\nIt's not strictly necessary that you copy all of the files in this\ndirectory when setting up a new SolrCores, but it is recommended.\n\n\nBasic Directory Structure\n-------------------------\n\nThe Solr Home directory typically contains the following sub-directories...\n\n   conf/\n        This directory is mandatory and must contain your solrconfig.xml\n        and schema.xml.  Any other optional configuration files would also \n        be kept here.\n\n   data/\n        This directory is the default location where Solr will keep your\n        index, and is used by the replication scripts for dealing with\n        snapshots.  You can override this location in the \n        conf/solrconfig.xml.  Solr will create this directory if it does not \n        already exist.\n\n   lib/\n        This directory is optional.  If it exists, Solr will load any Jars\n        found in this directory and use them to resolve any \"plugins\"\n        specified in your solrconfig.xml or schema.xml (ie: Analyzers,\n        Request Handlers, etc...).  Alternatively you can use the <lib>\n        syntax in conf/solrconfig.xml to direct Solr to your plugins.  See \n        the example conf/solrconfig.xml file for details.\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top-\nright box of the cores overview page. Uncomment this as an example to \nsee there the content will show up.\n\n<img src=\"img/ico/construction.png\"> This line will appear at the top-\nright box on collection1's Overview\n-->\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/admin-extra.menu-bottom.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- admin-extra.menu-bottom.html -->\n<!--\n<li>\n  <a href=\"#\" style=\"background-image: url(img/ico/construction.png);\">\n    LAST ITEM\n  </a>\n</li>\n-->\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/admin-extra.menu-top.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- admin-extra.menu-top.html -->\n<!--\n<li>\n  <a href=\"#\" style=\"background-image: url(img/ico/construction.png);\">\n    FIRST ITEM\n  </a>\n</li>\n-->\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/currency.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- Example exchange rates file for CurrencyField type named \"currency\" in example schema -->\n\n<currencyConfig version=\"1.0\">\n  <rates>\n    <!-- Updated from http://www.exchangerate.com/ at 2011-09-27 -->\n    <rate from=\"USD\" to=\"ARS\" rate=\"4.333871\" comment=\"ARGENTINA Peso\" />\n    <rate from=\"USD\" to=\"AUD\" rate=\"1.025768\" comment=\"AUSTRALIA Dollar\" />\n    <rate from=\"USD\" to=\"EUR\" rate=\"0.743676\" comment=\"European Euro\" />\n    <rate from=\"USD\" to=\"BRL\" rate=\"1.881093\" comment=\"BRAZIL Real\" />\n    <rate from=\"USD\" to=\"CAD\" rate=\"1.030815\" comment=\"CANADA Dollar\" />\n    <rate from=\"USD\" to=\"CLP\" rate=\"519.0996\" comment=\"CHILE Peso\" />\n    <rate from=\"USD\" to=\"CNY\" rate=\"6.387310\" comment=\"CHINA Yuan\" />\n    <rate from=\"USD\" to=\"CZK\" rate=\"18.47134\" comment=\"CZECH REP. Koruna\" />\n    <rate from=\"USD\" to=\"DKK\" rate=\"5.515436\" comment=\"DENMARK Krone\" />\n    <rate from=\"USD\" to=\"HKD\" rate=\"7.801922\" comment=\"HONG KONG Dollar\" />\n    <rate from=\"USD\" to=\"HUF\" rate=\"215.6169\" comment=\"HUNGARY Forint\" />\n    <rate from=\"USD\" to=\"ISK\" rate=\"118.1280\" comment=\"ICELAND Krona\" />\n    <rate from=\"USD\" to=\"INR\" rate=\"49.49088\" comment=\"INDIA Rupee\" />\n    <rate from=\"USD\" to=\"XDR\" rate=\"0.641358\" comment=\"INTNL MON. FUND SDR\" />\n    <rate from=\"USD\" to=\"ILS\" rate=\"3.709739\" comment=\"ISRAEL Sheqel\" />\n    <rate from=\"USD\" to=\"JPY\" rate=\"76.32419\" comment=\"JAPAN Yen\" />\n    <rate from=\"USD\" to=\"KRW\" rate=\"1169.173\" comment=\"KOREA (SOUTH) Won\" />\n    <rate from=\"USD\" to=\"KWD\" rate=\"0.275142\" comment=\"KUWAIT Dinar\" />\n    <rate from=\"USD\" to=\"MXN\" rate=\"13.85895\" comment=\"MEXICO Peso\" />\n    <rate from=\"USD\" to=\"NZD\" rate=\"1.285159\" comment=\"NEW ZEALAND Dollar\" />\n    <rate from=\"USD\" to=\"NOK\" rate=\"5.859035\" comment=\"NORWAY Krone\" />\n    <rate from=\"USD\" to=\"PKR\" rate=\"87.57007\" comment=\"PAKISTAN Rupee\" />\n    <rate from=\"USD\" to=\"PEN\" rate=\"2.730683\" comment=\"PERU Sol\" />\n    <rate from=\"USD\" to=\"PHP\" rate=\"43.62039\" comment=\"PHILIPPINES Peso\" />\n    <rate from=\"USD\" to=\"PLN\" rate=\"3.310139\" comment=\"POLAND Zloty\" />\n    <rate from=\"USD\" to=\"RON\" rate=\"3.100932\" comment=\"ROMANIA Leu\" />\n    <rate from=\"USD\" to=\"RUB\" rate=\"32.14663\" comment=\"RUSSIA Ruble\" />\n    <rate from=\"USD\" to=\"SAR\" rate=\"3.750465\" comment=\"SAUDI ARABIA Riyal\" />\n    <rate from=\"USD\" to=\"SGD\" rate=\"1.299352\" comment=\"SINGAPORE Dollar\" />\n    <rate from=\"USD\" to=\"ZAR\" rate=\"8.329761\" comment=\"SOUTH AFRICA Rand\" />\n    <rate from=\"USD\" to=\"SEK\" rate=\"6.883442\" comment=\"SWEDEN Krona\" />\n    <rate from=\"USD\" to=\"CHF\" rate=\"0.906035\" comment=\"SWITZERLAND Franc\" />\n    <rate from=\"USD\" to=\"TWD\" rate=\"30.40283\" comment=\"TAIWAN Dollar\" />\n    <rate from=\"USD\" to=\"THB\" rate=\"30.89487\" comment=\"THAILAND Baht\" />\n    <rate from=\"USD\" to=\"AED\" rate=\"3.672955\" comment=\"U.A.E. Dirham\" />\n    <rate from=\"USD\" to=\"UAH\" rate=\"7.988582\" comment=\"UKRAINE Hryvnia\" />\n    <rate from=\"USD\" to=\"GBP\" rate=\"0.647910\" comment=\"UNITED KINGDOM Pound\" />\n    \n    <!-- Cross-rates for some common currencies -->\n    <rate from=\"EUR\" to=\"GBP\" rate=\"0.869914\" />  \n    <rate from=\"EUR\" to=\"NOK\" rate=\"7.800095\" />  \n    <rate from=\"GBP\" to=\"NOK\" rate=\"8.966508\" />  \n  </rates>\n</currencyConfig>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n\n   See http://wiki.apache.org/solr/QueryElevationComponent for more info\n\n-->\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/contractions_ca.txt",
    "content": "# Set of Catalan contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nd\nl\nm\nn\ns\nt\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/contractions_fr.txt",
    "content": "# Set of French contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nl\nm\nt\nqu\nn\ns\nj\nd\nc\njusqu\nquoiqu\nlorsqu\npuisqu\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/contractions_ga.txt",
    "content": "# Set of Irish contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nd\nm\nb\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/contractions_it.txt",
    "content": "# Set of Italian contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nc\nl \nall \ndall \ndell \nnell \nsull \ncoll \npell \ngl \nagl \ndagl \ndegl \nnegl \nsugl \nun \nm \nt \ns \nv \nd\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/hyphenations_ga.txt",
    "content": "# Set of Irish hyphenations for StopFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nh\nn\nt\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stemdict_nl.txt",
    "content": "# Set of overrides for the dutch stemmer\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nfiets\tfiets\nbromfiets\tbromfiets\nei\teier\nkind\tkinder\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stoptags_ja.txt",
    "content": "#\n# This file defines a Japanese stoptag set for JapanesePartOfSpeechStopFilter.\n#\n# Any token with a part-of-speech tag that exactly matches those defined in this\n# file are removed from the token stream.\n#\n# Set your own stoptags by uncommenting the lines below.  Note that comments are\n# not allowed on the same line as a stoptag.  See LUCENE-3745 for frequency lists,\n# etc. that can be useful for building you own stoptag set.\n#\n# The entire possible tagset is provided below for convenience.\n#\n#####\n#  noun: unclassified nouns\n#名詞\n#\n#  noun-common: Common nouns or nouns where the sub-classification is undefined\n#名詞-一般\n#\n#  noun-proper: Proper nouns where the sub-classification is undefined \n#名詞-固有名詞\n#\n#  noun-proper-misc: miscellaneous proper nouns\n#名詞-固有名詞-一般\n#\n#  noun-proper-person: Personal names where the sub-classification is undefined\n#名詞-固有名詞-人名\n#\n#  noun-proper-person-misc: names that cannot be divided into surname and \n#  given name; foreign names; names where the surname or given name is unknown.\n#  e.g. お市の方\n#名詞-固有名詞-人名-一般\n#\n#  noun-proper-person-surname: Mainly Japanese surnames.\n#  e.g. 山田\n#名詞-固有名詞-人名-姓\n#\n#  noun-proper-person-given_name: Mainly Japanese given names.\n#  e.g. 太郎\n#名詞-固有名詞-人名-名\n#\n#  noun-proper-organization: Names representing organizations.\n#  e.g. 通産省, NHK\n#名詞-固有名詞-組織\n#\n#  noun-proper-place: Place names where the sub-classification is undefined\n#名詞-固有名詞-地域\n#\n#  noun-proper-place-misc: Place names excluding countries.\n#  e.g. アジア, バルセロナ, 京都\n#名詞-固有名詞-地域-一般\n#\n#  noun-proper-place-country: Country names. \n#  e.g. 日本, オーストラリア\n#名詞-固有名詞-地域-国\n#\n#  noun-pronoun: Pronouns where the sub-classification is undefined\n#名詞-代名詞\n#\n#  noun-pronoun-misc: miscellaneous pronouns: \n#  e.g. それ, ここ, あいつ, あなた, あちこち, いくつ, どこか, なに, みなさん, みんな, わたくし, われわれ\n#名詞-代名詞-一般\n#\n#  noun-pronoun-contraction: Spoken language contraction made by combining a \n#  pronoun and the particle 'wa'.\n#  e.g. ありゃ, こりゃ, こりゃあ, そりゃ, そりゃあ \n#名詞-代名詞-縮約\n#\n#  noun-adverbial: Temporal nouns such as names of days or months that behave \n#  like adverbs. Nouns that represent amount or ratios and can be used adverbially,\n#  e.g. 金曜, 一月, 午後, 少量\n#名詞-副詞可能\n#\n#  noun-verbal: Nouns that take arguments with case and can appear followed by \n#  'suru' and related verbs (する, できる, なさる, くださる)\n#  e.g. インプット, 愛着, 悪化, 悪戦苦闘, 一安心, 下取り\n#名詞-サ変接続\n#\n#  noun-adjective-base: The base form of adjectives, words that appear before な (\"na\")\n#  e.g. 健康, 安易, 駄目, だめ\n#名詞-形容動詞語幹\n#\n#  noun-numeric: Arabic numbers, Chinese numerals, and counters like 何 (回), 数.\n#  e.g. 0, 1, 2, 何, 数, 幾\n#名詞-数\n#\n#  noun-affix: noun affixes where the sub-classification is undefined\n#名詞-非自立\n#\n#  noun-affix-misc: Of adnominalizers, the case-marker の (\"no\"), and words that \n#  attach to the base form of inflectional words, words that cannot be classified \n#  into any of the other categories below. This category includes indefinite nouns.\n#  e.g. あかつき, 暁, かい, 甲斐, 気, きらい, 嫌い, くせ, 癖, こと, 事, ごと, 毎, しだい, 次第, \n#       順, せい, 所為, ついで, 序で, つもり, 積もり, 点, どころ, の, はず, 筈, はずみ, 弾み, \n#       拍子, ふう, ふり, 振り, ほう, 方, 旨, もの, 物, 者, ゆえ, 故, ゆえん, 所以, わけ, 訳,\n#       わり, 割り, 割, ん-口語/, もん-口語/\n#名詞-非自立-一般\n#\n#  noun-affix-adverbial: noun affixes that that can behave as adverbs.\n#  e.g. あいだ, 間, あげく, 挙げ句, あと, 後, 余り, 以外, 以降, 以後, 以上, 以前, 一方, うえ, \n#       上, うち, 内, おり, 折り, かぎり, 限り, きり, っきり, 結果, ころ, 頃, さい, 際, 最中, さなか, \n#       最中, じたい, 自体, たび, 度, ため, 為, つど, 都度, とおり, 通り, とき, 時, ところ, 所, \n#       とたん, 途端, なか, 中, のち, 後, ばあい, 場合, 日, ぶん, 分, ほか, 他, まえ, 前, まま, \n#       儘, 侭, みぎり, 矢先\n#名詞-非自立-副詞可能\n#\n#  noun-affix-aux: noun affixes treated as 助動詞 (\"auxiliary verb\") in school grammars \n#  with the stem よう(だ) (\"you(da)\").\n#  e.g.  よう, やう, 様 (よう)\n#名詞-非自立-助動詞語幹\n#  \n#  noun-affix-adjective-base: noun affixes that can connect to the indeclinable\n#  connection form な (aux \"da\").\n#  e.g. みたい, ふう\n#名詞-非自立-形容動詞語幹\n#\n#  noun-special: special nouns where the sub-classification is undefined.\n#名詞-特殊\n#\n#  noun-special-aux: The そうだ (\"souda\") stem form that is used for reporting news, is \n#  treated as 助動詞 (\"auxiliary verb\") in school grammars, and attach to the base \n#  form of inflectional words.\n#  e.g. そう\n#名詞-特殊-助動詞語幹\n#\n#  noun-suffix: noun suffixes where the sub-classification is undefined.\n#名詞-接尾\n#\n#  noun-suffix-misc: Of the nouns or stem forms of other parts of speech that connect \n#  to ガル or タイ and can combine into compound nouns, words that cannot be classified into\n#  any of the other categories below. In general, this category is more inclusive than \n#  接尾語 (\"suffix\") and is usually the last element in a compound noun.\n#  e.g. おき, かた, 方, 甲斐 (がい), がかり, ぎみ, 気味, ぐるみ, (～した) さ, 次第, 済 (ず) み,\n#       よう, (でき)っこ, 感, 観, 性, 学, 類, 面, 用\n#名詞-接尾-一般\n#\n#  noun-suffix-person: Suffixes that form nouns and attach to person names more often\n#  than other nouns.\n#  e.g. 君, 様, 著\n#名詞-接尾-人名\n#\n#  noun-suffix-place: Suffixes that form nouns and attach to place names more often \n#  than other nouns.\n#  e.g. 町, 市, 県\n#名詞-接尾-地域\n#\n#  noun-suffix-verbal: Of the suffixes that attach to nouns and form nouns, those that \n#  can appear before スル (\"suru\").\n#  e.g. 化, 視, 分け, 入り, 落ち, 買い\n#名詞-接尾-サ変接続\n#\n#  noun-suffix-aux: The stem form of そうだ (様態) that is used to indicate conditions, \n#  is treated as 助動詞 (\"auxiliary verb\") in school grammars, and attach to the \n#  conjunctive form of inflectional words.\n#  e.g. そう\n#名詞-接尾-助動詞語幹\n#\n#  noun-suffix-adjective-base: Suffixes that attach to other nouns or the conjunctive \n#  form of inflectional words and appear before the copula だ (\"da\").\n#  e.g. 的, げ, がち\n#名詞-接尾-形容動詞語幹\n#\n#  noun-suffix-adverbial: Suffixes that attach to other nouns and can behave as adverbs.\n#  e.g. 後 (ご), 以後, 以降, 以前, 前後, 中, 末, 上, 時 (じ)\n#名詞-接尾-副詞可能\n#\n#  noun-suffix-classifier: Suffixes that attach to numbers and form nouns. This category \n#  is more inclusive than 助数詞 (\"classifier\") and includes common nouns that attach \n#  to numbers.\n#  e.g. 個, つ, 本, 冊, パーセント, cm, kg, カ月, か国, 区画, 時間, 時半\n#名詞-接尾-助数詞\n#\n#  noun-suffix-special: Special suffixes that mainly attach to inflecting words.\n#  e.g. (楽し) さ, (考え) 方\n#名詞-接尾-特殊\n#\n#  noun-suffix-conjunctive: Nouns that behave like conjunctions and join two words \n#  together.\n#  e.g. (日本) 対 (アメリカ), 対 (アメリカ), (3) 対 (5), (女優) 兼 (主婦)\n#名詞-接続詞的\n#\n#  noun-verbal_aux: Nouns that attach to the conjunctive particle て (\"te\") and are \n#  semantically verb-like.\n#  e.g. ごらん, ご覧, 御覧, 頂戴\n#名詞-動詞非自立的\n#\n#  noun-quotation: text that cannot be segmented into words, proverbs, Chinese poetry, \n#  dialects, English, etc. Currently, the only entry for 名詞 引用文字列 (\"noun quotation\") \n#  is いわく (\"iwaku\").\n#名詞-引用文字列\n#\n#  noun-nai_adjective: Words that appear before the auxiliary verb ない (\"nai\") and\n#  behave like an adjective.\n#  e.g. 申し訳, 仕方, とんでも, 違い\n#名詞-ナイ形容詞語幹\n#\n#####\n#  prefix: unclassified prefixes\n#接頭詞\n#\n#  prefix-nominal: Prefixes that attach to nouns (including adjective stem forms) \n#  excluding numerical expressions.\n#  e.g. お (水), 某 (氏), 同 (社), 故 (～氏), 高 (品質), お (見事), ご (立派)\n#接頭詞-名詞接続\n#\n#  prefix-verbal: Prefixes that attach to the imperative form of a verb or a verb\n#  in conjunctive form followed by なる/なさる/くださる.\n#  e.g. お (読みなさい), お (座り)\n#接頭詞-動詞接続\n#\n#  prefix-adjectival: Prefixes that attach to adjectives.\n#  e.g. お (寒いですねえ), バカ (でかい)\n#接頭詞-形容詞接続\n#\n#  prefix-numerical: Prefixes that attach to numerical expressions.\n#  e.g. 約, およそ, 毎時\n#接頭詞-数接続\n#\n#####\n#  verb: unclassified verbs\n#動詞\n#\n#  verb-main:\n#動詞-自立\n#\n#  verb-auxiliary:\n#動詞-非自立\n#\n#  verb-suffix:\n#動詞-接尾\n#\n#####\n#  adjective: unclassified adjectives\n#形容詞\n#\n#  adjective-main:\n#形容詞-自立\n#\n#  adjective-auxiliary:\n#形容詞-非自立\n#\n#  adjective-suffix:\n#形容詞-接尾\n#\n#####\n#  adverb: unclassified adverbs\n#副詞\n#\n#  adverb-misc: Words that can be segmented into one unit and where adnominal \n#  modification is not possible.\n#  e.g. あいかわらず, 多分\n#副詞-一般\n#\n#  adverb-particle_conjunction: Adverbs that can be followed by の, は, に, \n#  な, する, だ, etc.\n#  e.g. こんなに, そんなに, あんなに, なにか, なんでも\n#副詞-助詞類接続\n#\n#####\n#  adnominal: Words that only have noun-modifying forms.\n#  e.g. この, その, あの, どの, いわゆる, なんらかの, 何らかの, いろんな, こういう, そういう, ああいう, \n#       どういう, こんな, そんな, あんな, どんな, 大きな, 小さな, おかしな, ほんの, たいした, \n#       「(, も) さる (ことながら)」, 微々たる, 堂々たる, 単なる, いかなる, 我が」「同じ, 亡き\n#連体詞\n#\n#####\n#  conjunction: Conjunctions that can occur independently.\n#  e.g. が, けれども, そして, じゃあ, それどころか\n接続詞\n#\n#####\n#  particle: unclassified particles.\n助詞\n#\n#  particle-case: case particles where the subclassification is undefined.\n助詞-格助詞\n#\n#  particle-case-misc: Case particles.\n#  e.g. から, が, で, と, に, へ, より, を, の, にて\n助詞-格助詞-一般\n#\n#  particle-case-quote: the \"to\" that appears after nouns, a person’s speech, \n#  quotation marks, expressions of decisions from a meeting, reasons, judgements,\n#  conjectures, etc.\n#  e.g. ( だ) と (述べた.), ( である) と (して執行猶予...)\n助詞-格助詞-引用\n#\n#  particle-case-compound: Compounds of particles and verbs that mainly behave \n#  like case particles.\n#  e.g. という, といった, とかいう, として, とともに, と共に, でもって, にあたって, に当たって, に当って,\n#       にあたり, に当たり, に当り, に当たる, にあたる, において, に於いて,に於て, における, に於ける, \n#       にかけ, にかけて, にかんし, に関し, にかんして, に関して, にかんする, に関する, に際し, \n#       に際して, にしたがい, に従い, に従う, にしたがって, に従って, にたいし, に対し, にたいして, \n#       に対して, にたいする, に対する, について, につき, につけ, につけて, につれ, につれて, にとって,\n#       にとり, にまつわる, によって, に依って, に因って, により, に依り, に因り, による, に依る, に因る, \n#       にわたって, にわたる, をもって, を以って, を通じ, を通じて, を通して, をめぐって, をめぐり, をめぐる,\n#       って-口語/, ちゅう-関西弁「という」/, (何) ていう (人)-口語/, っていう-口語/, といふ, とかいふ\n助詞-格助詞-連語\n#\n#  particle-conjunctive:\n#  e.g. から, からには, が, けれど, けれども, けど, し, つつ, て, で, と, ところが, どころか, とも, ども, \n#       ながら, なり, ので, のに, ば, ものの, や ( した), やいなや, (ころん) じゃ(いけない)-口語/, \n#       (行っ) ちゃ(いけない)-口語/, (言っ) たって (しかたがない)-口語/, (それがなく)ったって (平気)-口語/\n助詞-接続助詞\n#\n#  particle-dependency:\n#  e.g. こそ, さえ, しか, すら, は, も, ぞ\n助詞-係助詞\n#\n#  particle-adverbial:\n#  e.g. がてら, かも, くらい, 位, ぐらい, しも, (学校) じゃ(これが流行っている)-口語/, \n#       (それ)じゃあ (よくない)-口語/, ずつ, (私) なぞ, など, (私) なり (に), (先生) なんか (大嫌い)-口語/,\n#       (私) なんぞ, (先生) なんて (大嫌い)-口語/, のみ, だけ, (私) だって-口語/, だに, \n#       (彼)ったら-口語/, (お茶) でも (いかが), 等 (とう), (今後) とも, ばかり, ばっか-口語/, ばっかり-口語/,\n#       ほど, 程, まで, 迄, (誰) も (が)([助詞-格助詞] および [助詞-係助詞] の前に位置する「も」)\n助詞-副助詞\n#\n#  particle-interjective: particles with interjective grammatical roles.\n#  e.g. (松島) や\n助詞-間投助詞\n#\n#  particle-coordinate:\n#  e.g. と, たり, だの, だり, とか, なり, や, やら\n助詞-並立助詞\n#\n#  particle-final:\n#  e.g. かい, かしら, さ, ぜ, (だ)っけ-口語/, (とまってる) で-方言/, な, ナ, なあ-口語/, ぞ, ね, ネ, \n#       ねぇ-口語/, ねえ-口語/, ねん-方言/, の, のう-口語/, や, よ, ヨ, よぉ-口語/, わ, わい-口語/\n助詞-終助詞\n#\n#  particle-adverbial/conjunctive/final: The particle \"ka\" when unknown whether it is \n#  adverbial, conjunctive, or sentence final. For example:\n#       (a) 「A か B か」. Ex:「(国内で運用する) か,(海外で運用する) か (.)」\n#       (b) Inside an adverb phrase. Ex:「(幸いという) か (, 死者はいなかった.)」\n#           「(祈りが届いたせい) か (, 試験に合格した.)」\n#       (c) 「かのように」. Ex:「(何もなかった) か (のように振る舞った.)」\n#  e.g. か\n助詞-副助詞／並立助詞／終助詞\n#\n#  particle-adnominalizer: The \"no\" that attaches to nouns and modifies \n#  non-inflectional words.\n助詞-連体化\n#\n#  particle-adnominalizer: The \"ni\" and \"to\" that appear following nouns and adverbs \n#  that are giongo, giseigo, or gitaigo.\n#  e.g. に, と\n助詞-副詞化\n#\n#  particle-special: A particle that does not fit into one of the above classifications. \n#  This includes particles that are used in Tanka, Haiku, and other poetry.\n#  e.g. かな, けむ, ( しただろう) に, (あんた) にゃ(わからん), (俺) ん (家)\n助詞-特殊\n#\n#####\n#  auxiliary-verb:\n助動詞\n#\n#####\n#  interjection: Greetings and other exclamations.\n#  e.g. おはよう, おはようございます, こんにちは, こんばんは, ありがとう, どうもありがとう, ありがとうございます, \n#       いただきます, ごちそうさま, さよなら, さようなら, はい, いいえ, ごめん, ごめんなさい\n#感動詞\n#\n#####\n#  symbol: unclassified Symbols.\n記号\n#\n#  symbol-misc: A general symbol not in one of the categories below.\n#  e.g. [○◎@$〒→+]\n記号-一般\n#\n#  symbol-comma: Commas\n#  e.g. [,、]\n記号-読点\n#\n#  symbol-period: Periods and full stops.\n#  e.g. [.．。]\n記号-句点\n#\n#  symbol-space: Full-width whitespace.\n記号-空白\n#\n#  symbol-open_bracket:\n#  e.g. [({‘“『【]\n記号-括弧開\n#\n#  symbol-close_bracket:\n#  e.g. [)}’”』」】]\n記号-括弧閉\n#\n#  symbol-alphabetic:\n#記号-アルファベット\n#\n#####\n#  other: unclassified other\n#その他\n#\n#  other-interjection: Words that are hard to classify as noun-suffixes or \n#  sentence-final particles.\n#  e.g. (だ)ァ\nその他-間投\n#\n#####\n#  filler: Aizuchi that occurs during a conversation or sounds inserted as filler.\n#  e.g. あの, うんと, えと\nフィラー\n#\n#####\n#  non-verbal: non-verbal sound.\n非言語音\n#\n#####\n#  fragment:\n#語断片\n#\n#####\n#  unknown: unknown part of speech.\n#未知語\n#\n##### End of file\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_ar.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\n# Cleaned on October 11, 2009 (not normalized, so use before normalization)\n# This means that when modifying this list, you might need to add some \n# redundant entries, for example containing forms with both أ and ا\nمن\nومن\nمنها\nمنه\nفي\nوفي\nفيها\nفيه\nو\nف\nثم\nاو\nأو\nب\nبها\nبه\nا\nأ\nاى\nاي\nأي\nأى\nلا\nولا\nالا\nألا\nإلا\nلكن\nما\nوما\nكما\nفما\nعن\nمع\nاذا\nإذا\nان\nأن\nإن\nانها\nأنها\nإنها\nانه\nأنه\nإنه\nبان\nبأن\nفان\nفأن\nوان\nوأن\nوإن\nالتى\nالتي\nالذى\nالذي\nالذين\nالى\nالي\nإلى\nإلي\nعلى\nعليها\nعليه\nاما\nأما\nإما\nايضا\nأيضا\nكل\nوكل\nلم\nولم\nلن\nولن\nهى\nهي\nهو\nوهى\nوهي\nوهو\nفهى\nفهي\nفهو\nانت\nأنت\nلك\nلها\nله\nهذه\nهذا\nتلك\nذلك\nهناك\nكانت\nكان\nيكون\nتكون\nوكانت\nوكان\nغير\nبعض\nقد\nنحو\nبين\nبينما\nمنذ\nضمن\nحيث\nالان\nالآن\nخلال\nبعد\nقبل\nحتى\nعند\nعندما\nلدى\nجميع\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_bg.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\nа\nаз\nако\nала\nбе\nбез\nбеше\nби\nбил\nбила\nбили\nбило\nблизо\nбъдат\nбъде\nбяха\nв\nвас\nваш\nваша\nвероятно\nвече\nвзема\nви\nвие\nвинаги\nвсе\nвсеки\nвсички\nвсичко\nвсяка\nвъв\nвъпреки\nвърху\nг\nги\nглавно\nго\nд\nда\nдали\nдо\nдокато\nдокога\nдори\nдосега\nдоста\nе\nедва\nедин\nето\nза\nзад\nзаедно\nзаради\nзасега\nзатова\nзащо\nзащото\nи\nиз\nили\nим\nима\nимат\nиска\nй\nказа\nкак\nкаква\nкакво\nкакто\nкакъв\nкато\nкога\nкогато\nкоето\nкоито\nкой\nкойто\nколко\nкоято\nкъде\nкъдето\nкъм\nли\nм\nме\nмежду\nмен\nми\nмнозина\nмога\nмогат\nможе\nмоля\nмомента\nму\nн\nна\nнад\nназад\nнай\nнаправи\nнапред\nнапример\nнас\nне\nнего\nнея\nни\nние\nникой\nнито\nно\nнякои\nнякой\nняма\nобаче\nоколо\nосвен\nособено\nот\nотгоре\nотново\nоще\nпак\nпо\nповече\nповечето\nпод\nпоне\nпоради\nпосле\nпочти\nправи\nпред\nпреди\nпрез\nпри\nпък\nпърво\nс\nса\nсамо\nсе\nсега\nси\nскоро\nслед\nсме\nспоред\nсред\nсрещу\nсте\nсъм\nсъс\nсъщо\nт\nтази\nтака\nтакива\nтакъв\nтам\nтвой\nте\nтези\nти\nтн\nто\nтова\nтогава\nтози\nтой\nтолкова\nточно\nтрябва\nтук\nтъй\nтя\nтях\nу\nхаресва\nч\nче\nчесто\nчрез\nще\nщом\nя\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_ca.txt",
    "content": "# Catalan stopwords from http://github.com/vcl/cue.language (Apache 2 Licensed)\na\nabans\nací\nah\naixí\naixò\nal\nals\naleshores\nalgun\nalguna\nalgunes\nalguns\nalhora\nallà\nallí\nallò\naltra\naltre\naltres\namb\nambdós\nambdues\napa\naquell\naquella\naquelles\naquells\naquest\naquesta\naquestes\naquests\naquí\nbaix\ncada\ncadascú\ncadascuna\ncadascunes\ncadascuns\ncom\ncontra\nd'un\nd'una\nd'unes\nd'uns\ndalt\nde\ndel\ndels\ndes\ndesprés\ndins\ndintre\ndonat\ndoncs\ndurant\ne\neh\nel\nels\nem\nen\nencara\nens\nentre\nérem\neren\néreu\nes\nés\nesta\nestà\nestàvem\nestaven\nestàveu\nesteu\net\netc\nets\nfins\nfora\ngairebé\nha\nhan\nhas\nhavia\nhe\nhem\nheu\nhi \nho\ni\nigual\niguals\nja\nl'hi\nla\nles\nli\nli'n\nllavors\nm'he\nma\nmal\nmalgrat\nmateix\nmateixa\nmateixes\nmateixos\nme\nmentre\nmés\nmeu\nmeus\nmeva\nmeves\nmolt\nmolta\nmoltes\nmolts\nmon\nmons\nn'he\nn'hi\nne\nni\nno\nnogensmenys\nnomés\nnosaltres\nnostra\nnostre\nnostres\no\noh\noi\non\npas\npel\npels\nper\nperò\nperquè\npoc \npoca\npocs\npoques\npotser\npropi\nqual\nquals\nquan\nquant \nque\nquè\nquelcom\nqui\nquin\nquina\nquines\nquins\ns'ha\ns'han\nsa\nsemblant\nsemblants\nses\nseu \nseus\nseva\nseva\nseves\nsi\nsobre\nsobretot\nsóc\nsolament\nsols\nson \nsón\nsons \nsota\nsou\nt'ha\nt'han\nt'he\nta\ntal\ntambé\ntampoc\ntan\ntant\ntanta\ntantes\nteu\nteus\nteva\nteves\nton\ntons\ntot\ntota\ntotes\ntots\nun\nuna\nunes\nuns\nus\nva\nvaig\nvam\nvan\nvas\nveu\nvosaltres\nvostra\nvostre\nvostres\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_cz.txt",
    "content": "a\ns\nk\no\ni\nu\nv\nz\ndnes\ncz\ntímto\nbudeš\nbudem\nbyli\njseš\nmůj\nsvým\nta\ntomto\ntohle\ntuto\ntyto\njej\nzda\nproč\nmáte\ntato\nkam\ntohoto\nkdo\nkteří\nmi\nnám\ntom\ntomuto\nmít\nnic\nproto\nkterou\nbyla\ntoho\nprotože\nasi\nho\nnaši\nnapište\nre\ncož\ntím\ntakže\nsvých\njejí\nsvými\njste\naj\ntu\ntedy\nteto\nbylo\nkde\nke\npravé\nji\nnad\nnejsou\nči\npod\ntéma\nmezi\npřes\nty\npak\nvám\nani\nkdyž\nvšak\nneg\njsem\ntento\nčlánku\nčlánky\naby\njsme\npřed\npta\njejich\nbyl\nještě\naž\nbez\ntaké\npouze\nprvní\nvaše\nkterá\nnás\nnový\ntipy\npokud\nmůže\nstrana\njeho\nsvé\njiné\nzprávy\nnové\nnení\nvás\njen\npodle\nzde\nuž\nbýt\nvíce\nbude\njiž\nnež\nkterý\nby\nkteré\nco\nnebo\nten\ntak\nmá\npři\nod\npo\njsou\njak\ndalší\nale\nsi\nse\nve\nto\njako\nza\nzpět\nze\ndo\npro\nje\nna\natd\natp\njakmile\npřičemž\njá\non\nona\nono\noni\nony\nmy\nvy\njí\nji\nmě\nmne\njemu\ntomu\ntěm\ntěmu\nněmu\nněmuž\njehož\njíž\njelikož\njež\njakož\nnačež\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_da.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/danish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Danish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n\nog           | and\ni            | in\njeg          | I\ndet          | that (dem. pronoun)/it (pers. pronoun)\nat           | that (in front of a sentence)/to (with infinitive)\nen           | a/an\nden          | it (pers. pronoun)/that (dem. pronoun)\ntil          | to/at/for/until/against/by/of/into, more\ner           | present tense of \"to be\"\nsom          | who, as\npå           | on/upon/in/on/at/to/after/of/with/for, on\nde           | they\nmed          | with/by/in, along\nhan          | he\naf           | of/by/from/off/for/in/with/on, off\nfor          | at/for/to/from/by/of/ago, in front/before, because\nikke         | not\nder          | who/which, there/those\nvar          | past tense of \"to be\"\nmig          | me/myself\nsig          | oneself/himself/herself/itself/themselves\nmen          | but\net           | a/an/one, one (number), someone/somebody/one\nhar          | present tense of \"to have\"\nom           | round/about/for/in/a, about/around/down, if\nvi           | we\nmin          | my\nhavde        | past tense of \"to have\"\nham          | him\nhun          | she\nnu           | now\nover         | over/above/across/by/beyond/past/on/about, over/past\nda           | then, when/as/since\nfra          | from/off/since, off, since\ndu           | you\nud           | out\nsin          | his/her/its/one's\ndem          | them\nos           | us/ourselves\nop           | up\nman          | you/one\nhans         | his\nhvor         | where\neller        | or\nhvad         | what\nskal         | must/shall etc.\nselv         | myself/youself/herself/ourselves etc., even\nher          | here\nalle         | all/everyone/everybody etc.\nvil          | will (verb)\nblev         | past tense of \"to stay/to remain/to get/to become\"\nkunne        | could\nind          | in\nnår          | when\nvære         | present tense of \"to be\"\ndog          | however/yet/after all\nnoget        | something\nville        | would\njo           | you know/you see (adv), yes\nderes        | their/theirs\nefter        | after/behind/according to/for/by/from, later/afterwards\nned          | down\nskulle       | should\ndenne        | this\nend          | than\ndette        | this\nmit          | my/mine\nogså         | also\nunder        | under/beneath/below/during, below/underneath\nhave         | have\ndig          | you\nanden        | other\nhende        | her\nmine         | my\nalt          | everything\nmeget        | much/very, plenty of\nsit          | his, her, its, one's\nsine         | his, her, its, one's\nvor          | our\nmod          | against\ndisse        | these\nhvis         | if\ndin          | your/yours\nnogle        | some\nhos          | by/at\nblive        | be/become\nmange        | many\nad           | by/through\nbliver       | present tense of \"to be/to become\"\nhendes       | her/hers\nværet        | be\nthi          | for (conj)\njer          | you\nsådan        | such, like this/like that\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_de.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/german/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A German stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | The number of forms in this list is reduced significantly by passing it\n | through the German stemmer.\n\n\naber           |  but\n\nalle           |  all\nallem\nallen\naller\nalles\n\nals            |  than, as\nalso           |  so\nam             |  an + dem\nan             |  at\n\nander          |  other\nandere\nanderem\nanderen\nanderer\nanderes\nanderm\nandern\nanderr\nanders\n\nauch           |  also\nauf            |  on\naus            |  out of\nbei            |  by\nbin            |  am\nbis            |  until\nbist           |  art\nda             |  there\ndamit          |  with it\ndann           |  then\n\nder            |  the\nden\ndes\ndem\ndie\ndas\n\ndaß            |  that\n\nderselbe       |  the same\nderselben\ndenselben\ndesselben\ndemselben\ndieselbe\ndieselben\ndasselbe\n\ndazu           |  to that\n\ndein           |  thy\ndeine\ndeinem\ndeinen\ndeiner\ndeines\n\ndenn           |  because\n\nderer          |  of those\ndessen         |  of him\n\ndich           |  thee\ndir            |  to thee\ndu             |  thou\n\ndies           |  this\ndiese\ndiesem\ndiesen\ndieser\ndieses\n\n\ndoch           |  (several meanings)\ndort           |  (over) there\n\n\ndurch          |  through\n\nein            |  a\neine\neinem\neinen\neiner\neines\n\neinig          |  some\neinige\neinigem\neinigen\neiniger\neiniges\n\neinmal         |  once\n\ner             |  he\nihn            |  him\nihm            |  to him\n\nes             |  it\netwas          |  something\n\neuer           |  your\neure\neurem\neuren\neurer\neures\n\nfür            |  for\ngegen          |  towards\ngewesen        |  p.p. of sein\nhab            |  have\nhabe           |  have\nhaben          |  have\nhat            |  has\nhatte          |  had\nhatten         |  had\nhier           |  here\nhin            |  there\nhinter         |  behind\n\nich            |  I\nmich           |  me\nmir            |  to me\n\n\nihr            |  you, to her\nihre\nihrem\nihren\nihrer\nihres\neuch           |  to you\n\nim             |  in + dem\nin             |  in\nindem          |  while\nins            |  in + das\nist            |  is\n\njede           |  each, every\njedem\njeden\njeder\njedes\n\njene           |  that\njenem\njenen\njener\njenes\n\njetzt          |  now\nkann           |  can\n\nkein           |  no\nkeine\nkeinem\nkeinen\nkeiner\nkeines\n\nkönnen         |  can\nkönnte         |  could\nmachen         |  do\nman            |  one\n\nmanche         |  some, many a\nmanchem\nmanchen\nmancher\nmanches\n\nmein           |  my\nmeine\nmeinem\nmeinen\nmeiner\nmeines\n\nmit            |  with\nmuss           |  must\nmusste         |  had to\nnach           |  to(wards)\nnicht          |  not\nnichts         |  nothing\nnoch           |  still, yet\nnun            |  now\nnur            |  only\nob             |  whether\noder           |  or\nohne           |  without\nsehr           |  very\n\nsein           |  his\nseine\nseinem\nseinen\nseiner\nseines\n\nselbst         |  self\nsich           |  herself\n\nsie            |  they, she\nihnen          |  to them\n\nsind           |  are\nso             |  so\n\nsolche         |  such\nsolchem\nsolchen\nsolcher\nsolches\n\nsoll           |  shall\nsollte         |  should\nsondern        |  but\nsonst          |  else\nüber           |  over\num             |  about, around\nund            |  and\n\nuns            |  us\nunse\nunsem\nunsen\nunser\nunses\n\nunter          |  under\nviel           |  much\nvom            |  von + dem\nvon            |  from\nvor            |  before\nwährend        |  while\nwar            |  was\nwaren          |  were\nwarst          |  wast\nwas            |  what\nweg            |  away, off\nweil           |  because\nweiter         |  further\n\nwelche         |  which\nwelchem\nwelchen\nwelcher\nwelches\n\nwenn           |  when\nwerde          |  will\nwerden         |  will\nwie            |  how\nwieder         |  again\nwill           |  want\nwir            |  we\nwird           |  will\nwirst          |  willst\nwo             |  where\nwollen         |  want\nwollte         |  wanted\nwürde          |  would\nwürden         |  would\nzu             |  to\nzum            |  zu + dem\nzur            |  zu + der\nzwar           |  indeed\nzwischen       |  between\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_el.txt",
    "content": "# Lucene Greek Stopwords list\n# Note: by default this file is used after GreekLowerCaseFilter,\n# so when modifying this file use 'σ' instead of 'ς' \nο\nη\nτο\nοι\nτα\nτου\nτησ\nτων\nτον\nτην\nκαι \nκι\nκ\nειμαι\nεισαι\nειναι\nειμαστε\nειστε\nστο\nστον\nστη\nστην\nμα\nαλλα\nαπο\nγια\nπροσ\nμε\nσε\nωσ\nπαρα\nαντι\nκατα\nμετα\nθα\nνα\nδε\nδεν\nμη\nμην\nεπι\nενω\nεαν\nαν\nτοτε\nπου\nπωσ\nποιοσ\nποια\nποιο\nποιοι\nποιεσ\nποιων\nποιουσ\nαυτοσ\nαυτη\nαυτο\nαυτοι\nαυτων\nαυτουσ\nαυτεσ\nαυτα\nεκεινοσ\nεκεινη\nεκεινο\nεκεινοι\nεκεινεσ\nεκεινα\nεκεινων\nεκεινουσ\nοπωσ\nομωσ\nισωσ\nοσο\nοτι\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_en.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n# Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\nsuch\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_es.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/spanish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Spanish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n\n | The following is a ranked list (commonest to rarest) of stopwords\n | deriving from a large sample of text.\n\n | Extra words have been added at the end.\n\nde             |  from, of\nla             |  the, her\nque            |  who, that\nel             |  the\nen             |  in\ny              |  and\na              |  to\nlos            |  the, them\ndel            |  de + el\nse             |  himself, from him etc\nlas            |  the, them\npor            |  for, by, etc\nun             |  a\npara           |  for\ncon            |  with\nno             |  no\nuna            |  a\nsu             |  his, her\nal             |  a + el\n  | es         from SER\nlo             |  him\ncomo           |  how\nmás            |  more\npero           |  pero\nsus            |  su plural\nle             |  to him, her\nya             |  already\no              |  or\n  | fue        from SER\neste           |  this\n  | ha         from HABER\nsí             |  himself etc\nporque         |  because\nesta           |  this\n  | son        from SER\nentre          |  between\n  | está     from ESTAR\ncuando         |  when\nmuy            |  very\nsin            |  without\nsobre          |  on\n  | ser        from SER\n  | tiene      from TENER\ntambién        |  also\nme             |  me\nhasta          |  until\nhay            |  there is/are\ndonde          |  where\n  | han        from HABER\nquien          |  whom, that\n  | están      from ESTAR\n  | estado     from ESTAR\ndesde          |  from\ntodo           |  all\nnos            |  us\ndurante        |  during\n  | estados    from ESTAR\ntodos          |  all\nuno            |  a\nles            |  to them\nni             |  nor\ncontra         |  against\notros          |  other\n  | fueron     from SER\nese            |  that\neso            |  that\n  | había      from HABER\nante           |  before\nellos          |  they\ne              |  and (variant of y)\nesto           |  this\nmí             |  me\nantes          |  before\nalgunos        |  some\nqué            |  what?\nunos           |  a\nyo             |  I\notro           |  other\notras          |  other\notra           |  other\nél             |  he\ntanto          |  so much, many\nesa            |  that\nestos          |  these\nmucho          |  much, many\nquienes        |  who\nnada           |  nothing\nmuchos         |  many\ncual           |  who\n  | sea        from SER\npoco           |  few\nella           |  she\nestar          |  to be\n  | haber      from HABER\nestas          |  these\n  | estaba     from ESTAR\n  | estamos    from ESTAR\nalgunas        |  some\nalgo           |  something\nnosotros       |  we\n\n      | other forms\n\nmi             |  me\nmis            |  mi plural\ntú             |  thou\nte             |  thee\nti             |  thee\ntu             |  thy\ntus            |  tu plural\nellas          |  they\nnosotras       |  we\nvosotros       |  you\nvosotras       |  you\nos             |  you\nmío            |  mine\nmía            |\nmíos           |\nmías           |\ntuyo           |  thine\ntuya           |\ntuyos          |\ntuyas          |\nsuyo           |  his, hers, theirs\nsuya           |\nsuyos          |\nsuyas          |\nnuestro        |  ours\nnuestra        |\nnuestros       |\nnuestras       |\nvuestro        |  yours\nvuestra        |\nvuestros       |\nvuestras       |\nesos           |  those\nesas           |  those\n\n               | forms of estar, to be (not including the infinitive):\nestoy\nestás\nestá\nestamos\nestáis\nestán\nesté\nestés\nestemos\nestéis\nestén\nestaré\nestarás\nestará\nestaremos\nestaréis\nestarán\nestaría\nestarías\nestaríamos\nestaríais\nestarían\nestaba\nestabas\nestábamos\nestabais\nestaban\nestuve\nestuviste\nestuvo\nestuvimos\nestuvisteis\nestuvieron\nestuviera\nestuvieras\nestuviéramos\nestuvierais\nestuvieran\nestuviese\nestuvieses\nestuviésemos\nestuvieseis\nestuviesen\nestando\nestado\nestada\nestados\nestadas\nestad\n\n               | forms of haber, to have (not including the infinitive):\nhe\nhas\nha\nhemos\nhabéis\nhan\nhaya\nhayas\nhayamos\nhayáis\nhayan\nhabré\nhabrás\nhabrá\nhabremos\nhabréis\nhabrán\nhabría\nhabrías\nhabríamos\nhabríais\nhabrían\nhabía\nhabías\nhabíamos\nhabíais\nhabían\nhube\nhubiste\nhubo\nhubimos\nhubisteis\nhubieron\nhubiera\nhubieras\nhubiéramos\nhubierais\nhubieran\nhubiese\nhubieses\nhubiésemos\nhubieseis\nhubiesen\nhabiendo\nhabido\nhabida\nhabidos\nhabidas\n\n               | forms of ser, to be (not including the infinitive):\nsoy\neres\nes\nsomos\nsois\nson\nsea\nseas\nseamos\nseáis\nsean\nseré\nserás\nserá\nseremos\nseréis\nserán\nsería\nserías\nseríamos\nseríais\nserían\nera\neras\néramos\nerais\neran\nfui\nfuiste\nfue\nfuimos\nfuisteis\nfueron\nfuera\nfueras\nfuéramos\nfuerais\nfueran\nfuese\nfueses\nfuésemos\nfueseis\nfuesen\nsiendo\nsido\n  |  sed also means 'thirst'\n\n               | forms of tener, to have (not including the infinitive):\ntengo\ntienes\ntiene\ntenemos\ntenéis\ntienen\ntenga\ntengas\ntengamos\ntengáis\ntengan\ntendré\ntendrás\ntendrá\ntendremos\ntendréis\ntendrán\ntendría\ntendrías\ntendríamos\ntendríais\ntendrían\ntenía\ntenías\nteníamos\nteníais\ntenían\ntuve\ntuviste\ntuvo\ntuvimos\ntuvisteis\ntuvieron\ntuviera\ntuvieras\ntuviéramos\ntuvierais\ntuvieran\ntuviese\ntuvieses\ntuviésemos\ntuvieseis\ntuviesen\nteniendo\ntenido\ntenida\ntenidos\ntenidas\ntened\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_eu.txt",
    "content": "# example set of basque stopwords\nal\nanitz\narabera\nasko\nbaina\nbat\nbatean\nbatek\nbati\nbatzuei\nbatzuek\nbatzuetan\nbatzuk\nbera\nberaiek\nberau\nberauek\nbere\nberori\nberoriek\nbeste\nbezala\nda\ndago\ndira\nditu\ndu\ndute\nedo\negin\nere\neta\neurak\nez\ngainera\ngu\ngutxi\nguzti\nhaiei\nhaiek\nhaietan\nhainbeste\nhala\nhan\nhandik\nhango\nhara\nhari\nhark\nhartan\nhau\nhauei\nhauek\nhauetan\nhemen\nhemendik\nhemengo\nhi\nhona\nhonek\nhonela\nhonetan\nhoni\nhor\nhori\nhoriei\nhoriek\nhorietan\nhorko\nhorra\nhorrek\nhorrela\nhorretan\nhorri\nhortik\nhura\nizan\nni\nnoiz\nnola\nnon\nnondik\nnongo\nnor\nnora\nze\nzein\nzen\nzenbait\nzenbat\nzer\nzergatik\nziren\nzituen\nzu\nzuek\nzuen\nzuten\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_fa.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\n# Note: by default this file is used after normalization, so when adding entries\n# to this file, use the arabic 'ي' instead of 'ی'\nانان\nنداشته\nسراسر\nخياه\nايشان\nوي\nتاكنون\nبيشتري\nدوم\nپس\nناشي\nوگو\nيا\nداشتند\nسپس\nهنگام\nهرگز\nپنج\nنشان\nامسال\nديگر\nگروهي\nشدند\nچطور\nده\nو\nدو\nنخستين\nولي\nچرا\nچه\nوسط\nه\nكدام\nقابل\nيك\nرفت\nهفت\nهمچنين\nدر\nهزار\nبله\nبلي\nشايد\nاما\nشناسي\nگرفته\nدهد\nداشته\nدانست\nداشتن\nخواهيم\nميليارد\nوقتيكه\nامد\nخواهد\nجز\nاورده\nشده\nبلكه\nخدمات\nشدن\nبرخي\nنبود\nبسياري\nجلوگيري\nحق\nكردند\nنوعي\nبعري\nنكرده\nنظير\nنبايد\nبوده\nبودن\nداد\nاورد\nهست\nجايي\nشود\nدنبال\nداده\nبايد\nسابق\nهيچ\nهمان\nانجا\nكمتر\nكجاست\nگردد\nكسي\nتر\nمردم\nتان\nدادن\nبودند\nسري\nجدا\nندارند\nمگر\nيكديگر\nدارد\nدهند\nبنابراين\nهنگامي\nسمت\nجا\nانچه\nخود\nدادند\nزياد\nدارند\nاثر\nبدون\nبهترين\nبيشتر\nالبته\nبه\nبراساس\nبيرون\nكرد\nبعضي\nگرفت\nتوي\nاي\nميليون\nاو\nجريان\nتول\nبر\nمانند\nبرابر\nباشيم\nمدتي\nگويند\nاكنون\nتا\nتنها\nجديد\nچند\nبي\nنشده\nكردن\nكردم\nگويد\nكرده\nكنيم\nنمي\nنزد\nروي\nقصد\nفقط\nبالاي\nديگران\nاين\nديروز\nتوسط\nسوم\nايم\nدانند\nسوي\nاستفاده\nشما\nكنار\nداريم\nساخته\nطور\nامده\nرفته\nنخست\nبيست\nنزديك\nطي\nكنيد\nاز\nانها\nتمامي\nداشت\nيكي\nطريق\nاش\nچيست\nروب\nنمايد\nگفت\nچندين\nچيزي\nتواند\nام\nايا\nبا\nان\nايد\nترين\nاينكه\nديگري\nراه\nهايي\nبروز\nهمچنان\nپاعين\nكس\nحدود\nمختلف\nمقابل\nچيز\nگيرد\nندارد\nضد\nهمچون\nسازي\nشان\nمورد\nباره\nمرسي\nخويش\nبرخوردار\nچون\nخارج\nشش\nهنوز\nتحت\nضمن\nهستيم\nگفته\nفكر\nبسيار\nپيش\nبراي\nروزهاي\nانكه\nنخواهد\nبالا\nكل\nوقتي\nكي\nچنين\nكه\nگيري\nنيست\nاست\nكجا\nكند\nنيز\nيابد\nبندي\nحتي\nتوانند\nعقب\nخواست\nكنند\nبين\nتمام\nهمه\nما\nباشند\nمثل\nشد\nاري\nباشد\nاره\nطبق\nبعد\nاگر\nصورت\nغير\nجاي\nبيش\nريزي\nاند\nزيرا\nچگونه\nبار\nلطفا\nمي\nدرباره\nمن\nديده\nهمين\nگذاري\nبرداري\nعلت\nگذاشته\nهم\nفوق\nنه\nها\nشوند\nاباد\nهمواره\nهر\nاول\nخواهند\nچهار\nنام\nامروز\nمان\nهاي\nقبل\nكنم\nسعي\nتازه\nرا\nهستند\nزير\nجلوي\nعنوان\nبود\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_fi.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/finnish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n \n| forms of BE\n\nolla\nolen\nolet\non\nolemme\nolette\novat\nole        | negative form\n\noli\nolisi\nolisit\nolisin\nolisimme\nolisitte\nolisivat\nolit\nolin\nolimme\nolitte\nolivat\nollut\nolleet\n\nen         | negation\net\nei\nemme\nette\neivät\n\n|Nom   Gen    Acc    Part   Iness   Elat    Illat  Adess   Ablat   Allat   Ess    Trans\nminä   minun  minut  minua  minussa minusta minuun minulla minulta minulle               | I\nsinä   sinun  sinut  sinua  sinussa sinusta sinuun sinulla sinulta sinulle               | you\nhän    hänen  hänet  häntä  hänessä hänestä häneen hänellä häneltä hänelle               | he she\nme     meidän meidät meitä  meissä  meistä  meihin meillä  meiltä  meille                | we\nte     teidän teidät teitä  teissä  teistä  teihin teillä  teiltä  teille                | you\nhe     heidän heidät heitä  heissä  heistä  heihin heillä  heiltä  heille                | they\n\ntämä   tämän         tätä   tässä   tästä   tähän  tallä   tältä   tälle   tänä   täksi  | this\ntuo    tuon          tuotä  tuossa  tuosta  tuohon tuolla  tuolta  tuolle  tuona  tuoksi | that\nse     sen           sitä   siinä   siitä   siihen sillä   siltä   sille   sinä   siksi  | it\nnämä   näiden        näitä  näissä  näistä  näihin näillä  näiltä  näille  näinä  näiksi | these\nnuo    noiden        noita  noissa  noista  noihin noilla  noilta  noille  noina  noiksi | those\nne     niiden        niitä  niissä  niistä  niihin niillä  niiltä  niille  niinä  niiksi | they\n\nkuka   kenen kenet   ketä   kenessä kenestä keneen kenellä keneltä kenelle kenenä keneksi| who\nketkä  keiden ketkä  keitä  keissä  keistä  keihin keillä  keiltä  keille  keinä  keiksi | (pl)\nmikä   minkä minkä   mitä   missä   mistä   mihin  millä   miltä   mille   minä   miksi  | which what\nmitkä                                                                                    | (pl)\n\njoka   jonka         jota   jossa   josta   johon  jolla   jolta   jolle   jona   joksi  | who which\njotka  joiden        joita  joissa  joista  joihin joilla  joilta  joille  joina  joiksi | (pl)\n\n| conjunctions\n\nettä   | that\nja     | and\njos    | if\nkoska  | because\nkuin   | than\nmutta  | but\nniin   | so\nsekä   | and\nsillä  | for\ntai    | or\nvaan   | but\nvai    | or\nvaikka | although\n\n\n| prepositions\n\nkanssa  | with\nmukaan  | according to\nnoin    | about\npoikki  | across\nyli     | over, across\n\n| other\n\nkun    | when\nniin   | so\nnyt    | now\nitse   | self\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_fr.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/french/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A French stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\nau             |  a + le\naux            |  a + les\navec           |  with\nce             |  this\nces            |  these\ndans           |  with\nde             |  of\ndes            |  de + les\ndu             |  de + le\nelle           |  she\nen             |  `of them' etc\net             |  and\neux            |  them\nil             |  he\nje             |  I\nla             |  the\nle             |  the\nleur           |  their\nlui            |  him\nma             |  my (fem)\nmais           |  but\nme             |  me\nmême           |  same; as in moi-même (myself) etc\nmes            |  me (pl)\nmoi            |  me\nmon            |  my (masc)\nne             |  not\nnos            |  our (pl)\nnotre          |  our\nnous           |  we\non             |  one\nou             |  where\npar            |  by\npas            |  not\npour           |  for\nqu             |  que before vowel\nque            |  that\nqui            |  who\nsa             |  his, her (fem)\nse             |  oneself\nses            |  his (pl)\nson            |  his, her (masc)\nsur            |  on\nta             |  thy (fem)\nte             |  thee\ntes            |  thy (pl)\ntoi            |  thee\nton            |  thy (masc)\ntu             |  thou\nun             |  a\nune            |  a\nvos            |  your (pl)\nvotre          |  your\nvous           |  you\n\n               |  single letter forms\n\nc              |  c'\nd              |  d'\nj              |  j'\nl              |  l'\nà              |  to, at\nm              |  m'\nn              |  n'\ns              |  s'\nt              |  t'\ny              |  there\n\n               | forms of être (not including the infinitive):\nété\nétée\nétées\nétés\nétant\nsuis\nes\nest\nsommes\nêtes\nsont\nserai\nseras\nsera\nserons\nserez\nseront\nserais\nserait\nserions\nseriez\nseraient\nétais\nétait\nétions\nétiez\nétaient\nfus\nfut\nfûmes\nfûtes\nfurent\nsois\nsoit\nsoyons\nsoyez\nsoient\nfusse\nfusses\nfût\nfussions\nfussiez\nfussent\n\n               | forms of avoir (not including the infinitive):\nayant\neu\neue\neues\neus\nai\nas\navons\navez\nont\naurai\nauras\naura\naurons\naurez\nauront\naurais\naurait\naurions\nauriez\nauraient\navais\navait\navions\naviez\navaient\neut\neûmes\neûtes\neurent\naie\naies\nait\nayons\nayez\naient\neusse\neusses\neût\neussions\neussiez\neussent\n\n               | Later additions (from Jean-Christophe Deschamps)\nceci           |  this\ncela           |  that\ncelà           |  that\ncet            |  this\ncette          |  this\nici            |  here\nils            |  they\nles            |  the (pl)\nleurs          |  their (pl)\nquel           |  which\nquels          |  which\nquelle         |  which\nquelles        |  which\nsans           |  without\nsoi            |  oneself\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_ga.txt",
    "content": "\na\nach\nag\nagus\nan\naon\nar\narna\nas\nb'\nba\nbeirt\nbhúr\ncaoga\nceathair\nceathrar\nchomh\nchtó\nchuig\nchun\ncois\ncéad\ncúig\ncúigear\nd'\ndaichead\ndar\nde\ndeich\ndeichniúr\nden\ndhá\ndo\ndon\ndtí\ndá\ndár\ndó\nfaoi\nfaoin\nfaoina\nfaoinár\nfara\nfiche\ngach\ngan\ngo\ngur\nhaon\nhocht\ni\niad\nidir\nin\nina\nins\ninár\nis\nle\nleis\nlena\nlenár\nm'\nmar\nmo\nmé\nna\nnach\nnaoi\nnaonúr\nná\nní\nníor\nnó\nnócha\nocht\nochtar\nos\nroimh\nsa\nseacht\nseachtar\nseachtó\nseasca\nseisear\nsiad\nsibh\nsinn\nsna\nsé\nsí\ntar\nthar\nthú\ntriúr\ntrí\ntrína\ntrínár\ntríocha\ntú\num\nár\né\néis\ní\nó\nón\nóna\nónár\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_gl.txt",
    "content": "# galican stopwords\na\naínda\nalí\naquel\naquela\naquelas\naqueles\naquilo\naquí\nao\naos\nas\nasí\ná\nben\ncando\nche\nco\ncoa\ncomigo\ncon\nconnosco\ncontigo\nconvosco\ncoas\ncos\ncun\ncuns\ncunha\ncunhas\nda\ndalgunha\ndalgunhas\ndalgún\ndalgúns\ndas\nde\ndel\ndela\ndelas\ndeles\ndesde\ndeste\ndo\ndos\ndun\nduns\ndunha\ndunhas\ne\nel\nela\nelas\neles\nen\nera\neran\nesa\nesas\nese\neses\nesta\nestar\nestaba\nestá\nestán\neste\nestes\nestiven\nestou\neu\né\nfacer\nfoi\nforon\nfun\nhabía\nhai\niso\nisto\nla\nlas\nlle\nlles\nlo\nlos\nmais\nme\nmeu\nmeus\nmin\nmiña\nmiñas\nmoi\nna\nnas\nneste\nnin\nno\nnon\nnos\nnosa\nnosas\nnoso\nnosos\nnós\nnun\nnunha\nnuns\nnunhas\no\nos\nou\nó\nós\npara\npero\npode\npois\npola\npolas\npolo\npolos\npor\nque\nse\nsenón\nser\nseu\nseus\nsexa\nsido\nsobre\nsúa\nsúas\ntamén\ntan\nte\nten\nteñen\nteño\nter\nteu\nteus\nti\ntido\ntiña\ntiven\ntúa\ntúas\nun\nunha\nunhas\nuns\nvos\nvosa\nvosas\nvoso\nvosos\nvós\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_hi.txt",
    "content": "# Also see http://www.opensource.org/licenses/bsd-license.html\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# This file was created by Jacques Savoy and is distributed under the BSD license.\n# Note: by default this file also contains forms normalized by HindiNormalizer \n# for spelling variation (see section below), such that it can be used whether or \n# not you enable that feature. When adding additional entries to this list,\n# please add the normalized form as well. \nअंदर\nअत\nअपना\nअपनी\nअपने\nअभी\nआदि\nआप\nइत्यादि\nइन \nइनका\nइन्हीं\nइन्हें\nइन्हों\nइस\nइसका\nइसकी\nइसके\nइसमें\nइसी\nइसे\nउन\nउनका\nउनकी\nउनके\nउनको\nउन्हीं\nउन्हें\nउन्हों\nउस\nउसके\nउसी\nउसे\nएक\nएवं\nएस\nऐसे\nऔर\nकई\nकर\nकरता\nकरते\nकरना\nकरने\nकरें\nकहते\nकहा\nका\nकाफ़ी\nकि\nकितना\nकिन्हें\nकिन्हों\nकिया\nकिर\nकिस\nकिसी\nकिसे\nकी\nकुछ\nकुल\nके\nको\nकोई\nकौन\nकौनसा\nगया\nघर\nजब\nजहाँ\nजा\nजितना\nजिन\nजिन्हें\nजिन्हों\nजिस\nजिसे\nजीधर\nजैसा\nजैसे\nजो\nतक\nतब\nतरह\nतिन\nतिन्हें\nतिन्हों\nतिस\nतिसे\nतो\nथा\nथी\nथे\nदबारा\nदिया\nदुसरा\nदूसरे\nदो\nद्वारा\nन\nनहीं\nना\nनिहायत\nनीचे\nने\nपर\nपर  \nपहले\nपूरा\nपे\nफिर\nबनी\nबही\nबहुत\nबाद\nबाला\nबिलकुल\nभी\nभीतर\nमगर\nमानो\nमे\nमें\nयदि\nयह\nयहाँ\nयही\nया\nयिह \nये\nरखें\nरहा\nरहे\nऱ्वासा\nलिए\nलिये\nलेकिन\nव\nवर्ग\nवह\nवह \nवहाँ\nवहीं\nवाले\nवुह \nवे\nवग़ैरह\nसंग\nसकता\nसकते\nसबसे\nसभी\nसाथ\nसाबुत\nसाभ\nसारा\nसे\nसो\nही\nहुआ\nहुई\nहुए\nहै\nहैं\nहो\nहोता\nहोती\nहोते\nहोना\nहोने\n# additional normalized forms of the above\nअपनि\nजेसे\nहोति\nसभि\nतिंहों\nइंहों\nदवारा\nइसि\nकिंहें\nथि\nउंहों\nओर\nजिंहें\nवहिं\nअभि\nबनि\nहि\nउंहिं\nउंहें\nहें\nवगेरह\nएसे\nरवासा\nकोन\nनिचे\nकाफि\nउसि\nपुरा\nभितर\nहे\nबहि\nवहां\nकोइ\nयहां\nजिंहों\nतिंहें\nकिसि\nकइ\nयहि\nइंहिं\nजिधर\nइंहें\nअदि\nइतयादि\nहुइ\nकोनसा\nइसकि\nदुसरे\nजहां\nअप\nकिंहों\nउनकि\nभि\nवरग\nहुअ\nजेसा\nनहिं\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_hu.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/hungarian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n \n| Hungarian stop word list\n| prepared by Anna Tordai\n\na\nahogy\nahol\naki\nakik\nakkor\nalatt\náltal\náltalában\namely\namelyek\namelyekben\namelyeket\namelyet\namelynek\nami\namit\namolyan\namíg\namikor\nát\nabban\nahhoz\nannak\narra\narról\naz\nazok\nazon\nazt\nazzal\nazért\naztán\nazután\nazonban\nbár\nbe\nbelül\nbenne\ncikk\ncikkek\ncikkeket\ncsak\nde\ne\neddig\negész\negy\negyes\negyetlen\negyéb\negyik\negyre\nekkor\nel\nelég\nellen\nelő\nelőször\nelőtt\nelső\nén\néppen\nebben\nehhez\nemilyen\nennek\nerre\nez\nezt\nezek\nezen\nezzel\nezért\nés\nfel\nfelé\nhanem\nhiszen\nhogy\nhogyan\nigen\nígy\nilletve\nill.\nill\nilyen\nilyenkor\nison\nismét\nitt\njó\njól\njobban\nkell\nkellett\nkeresztül\nkeressünk\nki\nkívül\nközött\nközül\nlegalább\nlehet\nlehetett\nlegyen\nlenne\nlenni\nlesz\nlett\nmaga\nmagát\nmajd\nmajd\nmár\nmás\nmásik\nmeg\nmég\nmellett\nmert\nmely\nmelyek\nmi\nmit\nmíg\nmiért\nmilyen\nmikor\nminden\nmindent\nmindenki\nmindig\nmint\nmintha\nmivel\nmost\nnagy\nnagyobb\nnagyon\nne\nnéha\nnekem\nneki\nnem\nnéhány\nnélkül\nnincs\nolyan\nott\nössze\nő\nők\nőket\npedig\npersze\nrá\ns\nsaját\nsem\nsemmi\nsok\nsokat\nsokkal\nszámára\nszemben\nszerint\nszinte\ntalán\ntehát\nteljes\ntovább\ntovábbá\ntöbb\núgy\nugyanis\núj\nújabb\nújra\nután\nutána\nutolsó\nvagy\nvagyis\nvalaki\nvalami\nvalamint\nvaló\nvagyok\nvan\nvannak\nvolt\nvoltam\nvoltak\nvoltunk\nvissza\nvele\nviszont\nvolna\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_hy.txt",
    "content": "# example set of Armenian stopwords.\nայդ\nայլ\nայն\nայս\nդու\nդուք\nեմ\nեն\nենք\nես\nեք\nէ\nէի\nէին\nէինք\nէիր\nէիք\nէր\nըստ\nթ\nի\nին\nիսկ\nիր\nկամ\nհամար\nհետ\nհետո\nմենք\nմեջ\nմի\nն\nնա\nնաև\nնրա\nնրանք\nոր\nորը\nորոնք\nորպես\nու\nում\nպիտի\nվրա\nև\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_id.txt",
    "content": "# from appendix D of: A Study of Stemming Effects on Information\n# Retrieval in Bahasa Indonesia\nada\nadanya\nadalah\nadapun\nagak\nagaknya\nagar\nakan\nakankah\nakhirnya\naku\nakulah\namat\namatlah\nanda\nandalah\nantar\ndiantaranya\nantara\nantaranya\ndiantara\napa\napaan\nmengapa\napabila\napakah\napalagi\napatah\natau\nataukah\nataupun\nbagai\nbagaikan\nsebagai\nsebagainya\nbagaimana\nbagaimanapun\nsebagaimana\nbagaimanakah\nbagi\nbahkan\nbahwa\nbahwasanya\nsebaliknya\nbanyak\nsebanyak\nbeberapa\nseberapa\nbegini\nbeginian\nbeginikah\nbeginilah\nsebegini\nbegitu\nbegitukah\nbegitulah\nbegitupun\nsebegitu\nbelum\nbelumlah\nsebelum\nsebelumnya\nsebenarnya\nberapa\nberapakah\nberapalah\nberapapun\nbetulkah\nsebetulnya\nbiasa\nbiasanya\nbila\nbilakah\nbisa\nbisakah\nsebisanya\nboleh\nbolehkah\nbolehlah\nbuat\nbukan\nbukankah\nbukanlah\nbukannya\ncuma\npercuma\ndahulu\ndalam\ndan\ndapat\ndari\ndaripada\ndekat\ndemi\ndemikian\ndemikianlah\nsedemikian\ndengan\ndepan\ndi\ndia\ndialah\ndini\ndiri\ndirinya\nterdiri\ndong\ndulu\nenggak\nenggaknya\nentah\nentahlah\nterhadap\nterhadapnya\nhal\nhampir\nhanya\nhanyalah\nharus\nharuslah\nharusnya\nseharusnya\nhendak\nhendaklah\nhendaknya\nhingga\nsehingga\nia\nialah\nibarat\ningin\ninginkah\ninginkan\nini\ninikah\ninilah\nitu\nitukah\nitulah\njangan\njangankan\njanganlah\njika\njikalau\njuga\njustru\nkala\nkalau\nkalaulah\nkalaupun\nkalian\nkami\nkamilah\nkamu\nkamulah\nkan\nkapan\nkapankah\nkapanpun\ndikarenakan\nkarena\nkarenanya\nke\nkecil\nkemudian\nkenapa\nkepada\nkepadanya\nketika\nseketika\nkhususnya\nkini\nkinilah\nkiranya\nsekiranya\nkita\nkitalah\nkok\nlagi\nlagian\nselagi\nlah\nlain\nlainnya\nmelainkan\nselaku\nlalu\nmelalui\nterlalu\nlama\nlamanya\nselama\nselama\nselamanya\nlebih\nterlebih\nbermacam\nmacam\nsemacam\nmaka\nmakanya\nmakin\nmalah\nmalahan\nmampu\nmampukah\nmana\nmanakala\nmanalagi\nmasih\nmasihkah\nsemasih\nmasing\nmau\nmaupun\nsemaunya\nmemang\nmereka\nmerekalah\nmeski\nmeskipun\nsemula\nmungkin\nmungkinkah\nnah\nnamun\nnanti\nnantinya\nnyaris\noleh\nolehnya\nseorang\nseseorang\npada\npadanya\npadahal\npaling\nsepanjang\npantas\nsepantasnya\nsepantasnyalah\npara\npasti\npastilah\nper\npernah\npula\npun\nmerupakan\nrupanya\nserupa\nsaat\nsaatnya\nsesaat\nsaja\nsajalah\nsaling\nbersama\nsama\nsesama\nsambil\nsampai\nsana\nsangat\nsangatlah\nsaya\nsayalah\nse\nsebab\nsebabnya\nsebuah\ntersebut\ntersebutlah\nsedang\nsedangkan\nsedikit\nsedikitnya\nsegala\nsegalanya\nsegera\nsesegera\nsejak\nsejenak\nsekali\nsekalian\nsekalipun\nsesekali\nsekaligus\nsekarang\nsekarang\nsekitar\nsekitarnya\nsela\nselain\nselalu\nseluruh\nseluruhnya\nsemakin\nsementara\nsempat\nsemua\nsemuanya\nsendiri\nsendirinya\nseolah\nseperti\nsepertinya\nsering\nseringnya\nserta\nsiapa\nsiapakah\nsiapapun\ndisini\ndisinilah\nsini\nsinilah\nsesuatu\nsesuatunya\nsuatu\nsesudah\nsesudahnya\nsudah\nsudahkah\nsudahlah\nsupaya\ntadi\ntadinya\ntak\ntanpa\nsetelah\ntelah\ntentang\ntentu\ntentulah\ntentunya\ntertentu\nseterusnya\ntapi\ntetapi\nsetiap\ntiap\nsetidaknya\ntidak\ntidakkah\ntidaklah\ntoh\nwaduh\nwah\nwahai\nsewaktu\nwalau\nwalaupun\nwong\nyaitu\nyakni\nyang\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_it.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/italian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | An Italian stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\nad             |  a (to) before vowel\nal             |  a + il\nallo           |  a + lo\nai             |  a + i\nagli           |  a + gli\nall            |  a + l'\nagl            |  a + gl'\nalla           |  a + la\nalle           |  a + le\ncon            |  with\ncol            |  con + il\ncoi            |  con + i (forms collo, cogli etc are now very rare)\nda             |  from\ndal            |  da + il\ndallo          |  da + lo\ndai            |  da + i\ndagli          |  da + gli\ndall           |  da + l'\ndagl           |  da + gll'\ndalla          |  da + la\ndalle          |  da + le\ndi             |  of\ndel            |  di + il\ndello          |  di + lo\ndei            |  di + i\ndegli          |  di + gli\ndell           |  di + l'\ndegl           |  di + gl'\ndella          |  di + la\ndelle          |  di + le\nin             |  in\nnel            |  in + el\nnello          |  in + lo\nnei            |  in + i\nnegli          |  in + gli\nnell           |  in + l'\nnegl           |  in + gl'\nnella          |  in + la\nnelle          |  in + le\nsu             |  on\nsul            |  su + il\nsullo          |  su + lo\nsui            |  su + i\nsugli          |  su + gli\nsull           |  su + l'\nsugl           |  su + gl'\nsulla          |  su + la\nsulle          |  su + le\nper            |  through, by\ntra            |  among\ncontro         |  against\nio             |  I\ntu             |  thou\nlui            |  he\nlei            |  she\nnoi            |  we\nvoi            |  you\nloro           |  they\nmio            |  my\nmia            |\nmiei           |\nmie            |\ntuo            |\ntua            |\ntuoi           |  thy\ntue            |\nsuo            |\nsua            |\nsuoi           |  his, her\nsue            |\nnostro         |  our\nnostra         |\nnostri         |\nnostre         |\nvostro         |  your\nvostra         |\nvostri         |\nvostre         |\nmi             |  me\nti             |  thee\nci             |  us, there\nvi             |  you, there\nlo             |  him, the\nla             |  her, the\nli             |  them\nle             |  them, the\ngli            |  to him, the\nne             |  from there etc\nil             |  the\nun             |  a\nuno            |  a\nuna            |  a\nma             |  but\ned             |  and\nse             |  if\nperché         |  why, because\nanche          |  also\ncome           |  how\ndov            |  where (as dov')\ndove           |  where\nche            |  who, that\nchi            |  who\ncui            |  whom\nnon            |  not\npiù            |  more\nquale          |  who, that\nquanto         |  how much\nquanti         |\nquanta         |\nquante         |\nquello         |  that\nquelli         |\nquella         |\nquelle         |\nquesto         |  this\nquesti         |\nquesta         |\nqueste         |\nsi             |  yes\ntutto          |  all\ntutti          |  all\n\n               |  single letter forms:\n\na              |  at\nc              |  as c' for ce or ci\ne              |  and\ni              |  the\nl              |  as l'\no              |  or\n\n               | forms of avere, to have (not including the infinitive):\n\nho\nhai\nha\nabbiamo\navete\nhanno\nabbia\nabbiate\nabbiano\navrò\navrai\navrà\navremo\navrete\navranno\navrei\navresti\navrebbe\navremmo\navreste\navrebbero\navevo\navevi\naveva\navevamo\navevate\navevano\nebbi\navesti\nebbe\navemmo\naveste\nebbero\navessi\navesse\navessimo\navessero\navendo\navuto\navuta\navuti\navute\n\n               | forms of essere, to be (not including the infinitive):\nsono\nsei\nè\nsiamo\nsiete\nsia\nsiate\nsiano\nsarò\nsarai\nsarà\nsaremo\nsarete\nsaranno\nsarei\nsaresti\nsarebbe\nsaremmo\nsareste\nsarebbero\nero\neri\nera\neravamo\neravate\nerano\nfui\nfosti\nfu\nfummo\nfoste\nfurono\nfossi\nfosse\nfossimo\nfossero\nessendo\n\n               | forms of fare, to do (not including the infinitive, fa, fat-):\nfaccio\nfai\nfacciamo\nfanno\nfaccia\nfacciate\nfacciano\nfarò\nfarai\nfarà\nfaremo\nfarete\nfaranno\nfarei\nfaresti\nfarebbe\nfaremmo\nfareste\nfarebbero\nfacevo\nfacevi\nfaceva\nfacevamo\nfacevate\nfacevano\nfeci\nfacesti\nfece\nfacemmo\nfaceste\nfecero\nfacessi\nfacesse\nfacessimo\nfacessero\nfacendo\n\n               | forms of stare, to be (not including the infinitive):\nsto\nstai\nsta\nstiamo\nstanno\nstia\nstiate\nstiano\nstarò\nstarai\nstarà\nstaremo\nstarete\nstaranno\nstarei\nstaresti\nstarebbe\nstaremmo\nstareste\nstarebbero\nstavo\nstavi\nstava\nstavamo\nstavate\nstavano\nstetti\nstesti\nstette\nstemmo\nsteste\nstettero\nstessi\nstesse\nstessimo\nstessero\nstando\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_ja.txt",
    "content": "#\n# This file defines a stopword set for Japanese.\n#\n# This set is made up of hand-picked frequent terms from segmented Japanese Wikipedia.\n# Punctuation characters and frequent kanji have mostly been left out.  See LUCENE-3745\n# for frequency lists, etc. that can be useful for making your own set (if desired)\n#\n# Note that there is an overlap between these stopwords and the terms stopped when used\n# in combination with the JapanesePartOfSpeechStopFilter.  When editing this file, note\n# that comments are not allowed on the same line as stopwords.\n#\n# Also note that stopping is done in a case-insensitive manner.  Change your StopFilter\n# configuration if you need case-sensitive stopping.  Lastly, note that stopping is done\n# using the same character width as the entries in this file.  Since this StopFilter is\n# normally done after a CJKWidthFilter in your chain, you would usually want your romaji\n# entries to be in half-width and your kana entries to be in full-width.\n#\nの\nに\nは\nを\nた\nが\nで\nて\nと\nし\nれ\nさ\nある\nいる\nも\nする\nから\nな\nこと\nとして\nい\nや\nれる\nなど\nなっ\nない\nこの\nため\nその\nあっ\nよう\nまた\nもの\nという\nあり\nまで\nられ\nなる\nへ\nか\nだ\nこれ\nによって\nにより\nおり\nより\nによる\nず\nなり\nられる\nにおいて\nば\nなかっ\nなく\nしかし\nについて\nせ\nだっ\nその後\nできる\nそれ\nう\nので\nなお\nのみ\nでき\nき\nつ\nにおける\nおよび\nいう\nさらに\nでも\nら\nたり\nその他\nに関する\nたち\nます\nん\nなら\nに対して\n特に\nせる\n及び\nこれら\nとき\nでは\nにて\nほか\nながら\nうち\nそして\nとともに\nただし\nかつて\nそれぞれ\nまたは\nお\nほど\nものの\nに対する\nほとんど\nと共に\nといった\nです\nとも\nところ\nここ\n##### End of file\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_lv.txt",
    "content": "# Set of Latvian stopwords from A Stemming Algorithm for Latvian, Karlis Kreslins\n# the original list of over 800 forms was refined: \n#   pronouns, adverbs, interjections were removed\n# \n# prepositions\naiz\nap\nar\napakš\nārpus\naugšpus\nbez\ncaur\ndēļ\ngar\niekš\niz\nkopš\nlabad\nlejpus\nlīdz\nno\notrpus\npa\npar\npār\npēc\npie\npirms\npret\npriekš\nstarp\nšaipus\nuz\nviņpus\nvirs\nvirspus\nzem\napakšpus\n# Conjunctions\nun\nbet\njo\nja\nka\nlai\ntomēr\ntikko\nturpretī\narī\nkaut\ngan\ntādēļ\ntā\nne\ntikvien\nvien\nkā\nir\nte\nvai\nkamēr\n# Particles\nar\ndiezin\ndroši\ndiemžēl\nnebūt\nik\nit\ntaču\nnu\npat\ntiklab\niekšpus\nnedz\ntik\nnevis\nturpretim\njeb\niekam\niekām\niekāms\nkolīdz\nlīdzko\ntiklīdz\njebšu\ntālab\ntāpēc\nnekā\nitin\njā\njau\njel\nnē\nnezin\ntad\ntikai\nvis\ntak\niekams\nvien\n# modal verbs\nbūt  \nbiju \nbiji\nbija\nbijām\nbijāt\nesmu\nesi\nesam\nesat \nbūšu     \nbūsi\nbūs\nbūsim\nbūsiet\ntikt\ntiku\ntiki\ntika\ntikām\ntikāt\ntieku\ntiec\ntiek\ntiekam\ntiekat\ntikšu\ntiks\ntiksim\ntiksiet\ntapt\ntapi\ntapāt\ntopat\ntapšu\ntapsi\ntaps\ntapsim\ntapsiet\nkļūt\nkļuvu\nkļuvi\nkļuva\nkļuvām\nkļuvāt\nkļūstu\nkļūsti\nkļūst\nkļūstam\nkļūstat\nkļūšu\nkļūsi\nkļūs\nkļūsim\nkļūsiet\n# verbs\nvarēt\nvarēju\nvarējām\nvarēšu\nvarēsim\nvar\nvarēji\nvarējāt\nvarēsi\nvarēsiet\nvarat\nvarēja\nvarēs\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_nl.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/dutch/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Dutch stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large sample of Dutch text.\n\n | Dutch stop words frequently exhibit homonym clashes. These are indicated\n | clearly below.\n\nde             |  the\nen             |  and\nvan            |  of, from\nik             |  I, the ego\nte             |  (1) chez, at etc, (2) to, (3) too\ndat            |  that, which\ndie            |  that, those, who, which\nin             |  in, inside\neen            |  a, an, one\nhij            |  he\nhet            |  the, it\nniet           |  not, nothing, naught\nzijn           |  (1) to be, being, (2) his, one's, its\nis             |  is\nwas            |  (1) was, past tense of all persons sing. of 'zijn' (to be) (2) wax, (3) the washing, (4) rise of river\nop             |  on, upon, at, in, up, used up\naan            |  on, upon, to (as dative)\nmet            |  with, by\nals            |  like, such as, when\nvoor           |  (1) before, in front of, (2) furrow\nhad            |  had, past tense all persons sing. of 'hebben' (have)\ner             |  there\nmaar           |  but, only\nom             |  round, about, for etc\nhem            |  him\ndan            |  then\nzou            |  should/would, past tense all persons sing. of 'zullen'\nof             |  or, whether, if\nwat            |  what, something, anything\nmijn           |  possessive and noun 'mine'\nmen            |  people, 'one'\ndit            |  this\nzo             |  so, thus, in this way\ndoor           |  through by\nover           |  over, across\nze             |  she, her, they, them\nzich           |  oneself\nbij            |  (1) a bee, (2) by, near, at\nook            |  also, too\ntot            |  till, until\nje             |  you\nmij            |  me\nuit            |  out of, from\nder            |  Old Dutch form of 'van der' still found in surnames\ndaar           |  (1) there, (2) because\nhaar           |  (1) her, their, them, (2) hair\nnaar           |  (1) unpleasant, unwell etc, (2) towards, (3) as\nheb            |  present first person sing. of 'to have'\nhoe            |  how, why\nheeft          |  present third person sing. of 'to have'\nhebben         |  'to have' and various parts thereof\ndeze           |  this\nu              |  you\nwant           |  (1) for, (2) mitten, (3) rigging\nnog            |  yet, still\nzal            |  'shall', first and third person sing. of verb 'zullen' (will)\nme             |  me\nzij            |  she, they\nnu             |  now\nge             |  'thou', still used in Belgium and south Netherlands\ngeen           |  none\nomdat          |  because\niets           |  something, somewhat\nworden         |  to become, grow, get\ntoch           |  yet, still\nal             |  all, every, each\nwaren          |  (1) 'were' (2) to wander, (3) wares, (3)\nveel           |  much, many\nmeer           |  (1) more, (2) lake\ndoen           |  to do, to make\ntoen           |  then, when\nmoet           |  noun 'spot/mote' and present form of 'to must'\nben            |  (1) am, (2) 'are' in interrogative second person singular of 'to be'\nzonder         |  without\nkan            |  noun 'can' and present form of 'to be able'\nhun            |  their, them\ndus            |  so, consequently\nalles          |  all, everything, anything\nonder          |  under, beneath\nja             |  yes, of course\neens           |  once, one day\nhier           |  here\nwie            |  who\nwerd           |  imperfect third person sing. of 'become'\naltijd         |  always\ndoch           |  yet, but etc\nwordt          |  present third person sing. of 'become'\nwezen          |  (1) to be, (2) 'been' as in 'been fishing', (3) orphans\nkunnen         |  to be able\nons            |  us/our\nzelf           |  self\ntegen          |  against, towards, at\nna             |  after, near\nreeds          |  already\nwil            |  (1) present tense of 'want', (2) 'will', noun, (3) fender\nkon            |  could; past tense of 'to be able'\nniets          |  nothing\nuw             |  your\niemand         |  somebody\ngeweest        |  been; past participle of 'be'\nandere         |  other\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_no.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/norwegian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Norwegian stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This stop word list is for the dominant bokmål dialect. Words unique\n | to nynorsk are marked *.\n\n | Revised by Jan Bruusgaard <Jan.Bruusgaard@ssb.no>, Jan 2005\n\nog             | and\ni              | in\njeg            | I\ndet            | it/this/that\nat             | to (w. inf.)\nen             | a/an\net             | a/an\nden            | it/this/that\ntil            | to\ner             | is/am/are\nsom            | who/that\npå             | on\nde             | they / you(formal)\nmed            | with\nhan            | he\nav             | of\nikke           | not\nikkje          | not *\nder            | there\nså             | so\nvar            | was/were\nmeg            | me\nseg            | you\nmen            | but\nett            | one\nhar            | have\nom             | about\nvi             | we\nmin            | my\nmitt           | my\nha             | have\nhadde          | had\nhun            | she\nnå             | now\nover           | over\nda             | when/as\nved            | by/know\nfra            | from\ndu             | you\nut             | out\nsin            | your\ndem            | them\noss            | us\nopp            | up\nman            | you/one\nkan            | can\nhans           | his\nhvor           | where\neller          | or\nhva            | what\nskal           | shall/must\nselv           | self (reflective)\nsjøl           | self (reflective)\nher            | here\nalle           | all\nvil            | will\nbli            | become\nble            | became\nblei           | became *\nblitt          | have become\nkunne          | could\ninn            | in\nnår            | when\nvære           | be\nkom            | come\nnoen           | some\nnoe            | some\nville          | would\ndere           | you\nsom            | who/which/that\nderes          | their/theirs\nkun            | only/just\nja             | yes\netter          | after\nned            | down\nskulle         | should\ndenne          | this\nfor            | for/because\ndeg            | you\nsi             | hers/his\nsine           | hers/his\nsitt           | hers/his\nmot            | against\nå              | to\nmeget          | much\nhvorfor        | why\ndette          | this\ndisse          | these/those\nuten           | without\nhvordan        | how\ningen          | none\ndin            | your\nditt           | your\nblir           | become\nsamme          | same\nhvilken        | which\nhvilke         | which (plural)\nsånn           | such a\ninni           | inside/within\nmellom         | between\nvår            | our\nhver           | each\nhvem           | who\nvors           | us/ours\nhvis           | whose\nbåde           | both\nbare           | only/just\nenn            | than\nfordi          | as/because\nfør            | before\nmange          | many\nogså           | also\nslik           | just\nvært           | been\nvære           | to be\nbåe            | both *\nbegge          | both\nsiden          | since\ndykk           | your *\ndykkar         | yours *\ndei            | they *\ndeira          | them *\ndeires         | theirs *\ndeim           | them *\ndi             | your (fem.) *\ndå             | as/when *\neg             | I *\nein            | a/an *\neit            | a/an *\neitt           | a/an *\nelles          | or *\nhonom          | he *\nhjå            | at *\nho             | she *\nhoe            | she *\nhenne          | her\nhennar         | her/hers\nhennes         | hers\nhoss           | how *\nhossen         | how *\nikkje          | not *\ningi           | noone *\ninkje          | noone *\nkorleis        | how *\nkorso          | how *\nkva            | what/which *\nkvar           | where *\nkvarhelst      | where *\nkven           | who/whom *\nkvi            | why *\nkvifor         | why *\nme             | we *\nmedan          | while *\nmi             | my *\nmine           | my *\nmykje          | much *\nno             | now *\nnokon          | some (masc./neut.) *\nnoka           | some (fem.) *\nnokor          | some *\nnoko           | some *\nnokre          | some *\nsi             | his/hers *\nsia            | since *\nsidan          | since *\nso             | so *\nsomt           | some *\nsomme          | some *\num             | about*\nupp            | up *\nvere           | be *\nvore           | was *\nverte          | become *\nvort           | become *\nvarte          | became *\nvart           | became *\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_pt.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/portuguese/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Portuguese stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n\n | The following is a ranked list (commonest to rarest) of stopwords\n | deriving from a large sample of text.\n\n | Extra words have been added at the end.\n\nde             |  of, from\na              |  the; to, at; her\no              |  the; him\nque            |  who, that\ne              |  and\ndo             |  de + o\nda             |  de + a\nem             |  in\num             |  a\npara           |  for\n  | é          from SER\ncom            |  with\nnão            |  not, no\numa            |  a\nos             |  the; them\nno             |  em + o\nse             |  himself etc\nna             |  em + a\npor            |  for\nmais           |  more\nas             |  the; them\ndos            |  de + os\ncomo           |  as, like\nmas            |  but\n  | foi        from SER\nao             |  a + o\nele            |  he\ndas            |  de + as\n  | tem        from TER\nà              |  a + a\nseu            |  his\nsua            |  her\nou             |  or\n  | ser        from SER\nquando         |  when\nmuito          |  much\n  | há         from HAV\nnos            |  em + os; us\njá             |  already, now\n  | está       from EST\neu             |  I\ntambém         |  also\nsó             |  only, just\npelo           |  per + o\npela           |  per + a\naté            |  up to\nisso           |  that\nela            |  he\nentre          |  between\n  | era        from SER\ndepois         |  after\nsem            |  without\nmesmo          |  same\naos            |  a + os\n  | ter        from TER\nseus           |  his\nquem           |  whom\nnas            |  em + as\nme             |  me\nesse           |  that\neles           |  they\n  | estão      from EST\nvocê           |  you\n  | tinha      from TER\n  | foram      from SER\nessa           |  that\nnum            |  em + um\nnem            |  nor\nsuas           |  her\nmeu            |  my\nàs             |  a + as\nminha          |  my\n  | têm        from TER\nnuma           |  em + uma\npelos          |  per + os\nelas           |  they\n  | havia      from HAV\n  | seja       from SER\nqual           |  which\n  | será       from SER\nnós            |  we\n  | tenho      from TER\nlhe            |  to him, her\ndeles          |  of them\nessas          |  those\nesses          |  those\npelas          |  per + as\neste           |  this\n  | fosse      from SER\ndele           |  of him\n\n | other words. There are many contractions such as naquele = em+aquele,\n | mo = me+o, but they are rare.\n | Indefinite article plural forms are also rare.\n\ntu             |  thou\nte             |  thee\nvocês          |  you (plural)\nvos            |  you\nlhes           |  to them\nmeus           |  my\nminhas\nteu            |  thy\ntua\nteus\ntuas\nnosso          | our\nnossa\nnossos\nnossas\n\ndela           |  of her\ndelas          |  of them\n\nesta           |  this\nestes          |  these\nestas          |  these\naquele         |  that\naquela         |  that\naqueles        |  those\naquelas        |  those\nisto           |  this\naquilo         |  that\n\n               | forms of estar, to be (not including the infinitive):\nestou\nestá\nestamos\nestão\nestive\nesteve\nestivemos\nestiveram\nestava\nestávamos\nestavam\nestivera\nestivéramos\nesteja\nestejamos\nestejam\nestivesse\nestivéssemos\nestivessem\nestiver\nestivermos\nestiverem\n\n               | forms of haver, to have (not including the infinitive):\nhei\nhá\nhavemos\nhão\nhouve\nhouvemos\nhouveram\nhouvera\nhouvéramos\nhaja\nhajamos\nhajam\nhouvesse\nhouvéssemos\nhouvessem\nhouver\nhouvermos\nhouverem\nhouverei\nhouverá\nhouveremos\nhouverão\nhouveria\nhouveríamos\nhouveriam\n\n               | forms of ser, to be (not including the infinitive):\nsou\nsomos\nsão\nera\néramos\neram\nfui\nfoi\nfomos\nforam\nfora\nfôramos\nseja\nsejamos\nsejam\nfosse\nfôssemos\nfossem\nfor\nformos\nforem\nserei\nserá\nseremos\nserão\nseria\nseríamos\nseriam\n\n               | forms of ter, to have (not including the infinitive):\ntenho\ntem\ntemos\ntém\ntinha\ntínhamos\ntinham\ntive\nteve\ntivemos\ntiveram\ntivera\ntivéramos\ntenha\ntenhamos\ntenham\ntivesse\ntivéssemos\ntivessem\ntiver\ntivermos\ntiverem\nterei\nterá\nteremos\nterão\nteria\nteríamos\nteriam\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_ro.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\nacea\naceasta\naceastă\naceea\nacei\naceia\nacel\nacela\nacele\nacelea\nacest\nacesta\naceste\nacestea\naceşti\naceştia\nacolo\nacum\nai\naia\naibă\naici\nal\năla\nale\nalea\nălea\naltceva\naltcineva\nam\nar\nare\naş\naşadar\nasemenea\nasta\năsta\nastăzi\nastea\năstea\năştia\nasupra\naţi\nau\navea\navem\naveţi\nazi\nbine\nbucur\nbună\nca\ncă\ncăci\ncând\ncare\ncărei\ncăror\ncărui\ncât\ncâte\ncâţi\ncătre\ncâtva\nce\ncel\nceva\nchiar\ncînd\ncine\ncineva\ncît\ncîte\ncîţi\ncîtva\ncontra\ncu\ncum\ncumva\ncurând\ncurînd\nda\ndă\ndacă\ndar\ndatorită\nde\ndeci\ndeja\ndeoarece\ndeparte\ndeşi\ndin\ndinaintea\ndintr\ndintre\ndrept\ndupă\nea\nei\nel\nele\neram\neste\neşti\neu\nface\nfără\nfi\nfie\nfiecare\nfii\nfim\nfiţi\niar\nieri\nîi\nîl\nîmi\nîmpotriva\nîn \nînainte\nînaintea\nîncât\nîncît\nîncotro\nîntre\nîntrucât\nîntrucît\nîţi\nla\nlângă\nle\nli\nlîngă\nlor\nlui\nmă\nmâine\nmea\nmei\nmele\nmereu\nmeu\nmi\nmine\nmult\nmultă\nmulţi\nne\nnicăieri\nnici\nnimeni\nnişte\nnoastră\nnoastre\nnoi\nnoştri\nnostru\nnu\nori\noricând\noricare\noricât\norice\noricînd\noricine\noricît\noricum\noriunde\npână\npe\npentru\npeste\npînă\npoate\npot\nprea\nprima\nprimul\nprin\nprintr\nsa\nsă\nsăi\nsale\nsau\nsău\nse\nşi\nsînt\nsîntem\nsînteţi\nspre\nsub\nsunt\nsuntem\nsunteţi\nta\ntăi\ntale\ntău\nte\nţi\nţie\ntine\ntoată\ntoate\ntot\ntoţi\ntotuşi\ntu\nun\nuna\nunde\nundeva\nunei\nunele\nuneori\nunor\nvă\nvi\nvoastră\nvoastre\nvoi\nvoştri\nvostru\nvouă\nvreo\nvreun\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_ru.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/russian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | a russian stop word list. comments begin with vertical bar. each stop\n | word is at the start of a line.\n\n | this is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n | letter `ё' is translated to `е'.\n\nи              | and\nв              | in/into\nво             | alternative form\nне             | not\nчто            | what/that\nон             | he\nна             | on/onto\nя              | i\nс              | from\nсо             | alternative form\nкак            | how\nа              | milder form of `no' (but)\nто             | conjunction and form of `that'\nвсе            | all\nона            | she\nтак            | so, thus\nего            | him\nно             | but\nда             | yes/and\nты             | thou\nк              | towards, by\nу              | around, chez\nже             | intensifier particle\nвы             | you\nза             | beyond, behind\nбы             | conditional/subj. particle\nпо             | up to, along\nтолько         | only\nее             | her\nмне            | to me\nбыло           | it was\nвот            | here is/are, particle\nот             | away from\nменя           | me\nеще            | still, yet, more\nнет            | no, there isnt/arent\nо              | about\nиз             | out of\nему            | to him\nтеперь         | now\nкогда          | when\nдаже           | even\nну             | so, well\nвдруг          | suddenly\nли             | interrogative particle\nесли           | if\nуже            | already, but homonym of `narrower'\nили            | or\nни             | neither\nбыть           | to be\nбыл            | he was\nнего           | prepositional form of его\nдо             | up to\nвас            | you accusative\nнибудь         | indef. suffix preceded by hyphen\nопять          | again\nуж             | already, but homonym of `adder'\nвам            | to you\nсказал         | he said\nведь           | particle `after all'\nтам            | there\nпотом          | then\nсебя           | oneself\nничего         | nothing\nей             | to her\nможет          | usually with `быть' as `maybe'\nони            | they\nтут            | here\nгде            | where\nесть           | there is/are\nнадо           | got to, must\nней            | prepositional form of  ей\nдля            | for\nмы             | we\nтебя           | thee\nих             | them, their\nчем            | than\nбыла           | she was\nсам            | self\nчтоб           | in order to\nбез            | without\nбудто          | as if\nчеловек        | man, person, one\nчего           | genitive form of `what'\nраз            | once\nтоже           | also\nсебе           | to oneself\nпод            | beneath\nжизнь          | life\nбудет          | will be\nж              | short form of intensifer particle `же'\nтогда          | then\nкто            | who\nэтот           | this\nговорил        | was saying\nтого           | genitive form of `that'\nпотому         | for that reason\nэтого          | genitive form of `this'\nкакой          | which\nсовсем         | altogether\nним            | prepositional form of `его', `они'\nздесь          | here\nэтом           | prepositional form of `этот'\nодин           | one\nпочти          | almost\nмой            | my\nтем            | instrumental/dative plural of `тот', `то'\nчтобы          | full form of `in order that'\nнее            | her (acc.)\nкажется        | it seems\nсейчас         | now\nбыли           | they were\nкуда           | where to\nзачем          | why\nсказать        | to say\nвсех           | all (acc., gen. preposn. plural)\nникогда        | never\nсегодня        | today\nможно          | possible, one can\nпри            | by\nнаконец        | finally\nдва            | two\nоб             | alternative form of `о', about\nдругой         | another\nхоть           | even\nпосле          | after\nнад            | above\nбольше         | more\nтот            | that one (masc.)\nчерез          | across, in\nэти            | these\nнас            | us\nпро            | about\nвсего          | in all, only, of all\nних            | prepositional form of `они' (they)\nкакая          | which, feminine\nмного          | lots\nразве          | interrogative particle\nсказала        | she said\nтри            | three\nэту            | this, acc. fem. sing.\nмоя            | my, feminine\nвпрочем        | moreover, besides\nхорошо         | good\nсвою           | ones own, acc. fem. sing.\nэтой           | oblique form of `эта', fem. `this'\nперед          | in front of\nиногда         | sometimes\nлучше          | better\nчуть           | a little\nтом            | preposn. form of `that one'\nнельзя         | one must not\nтакой          | such a one\nим             | to them\nболее          | more\nвсегда         | always\nконечно        | of course\nвсю            | acc. fem. sing of `all'\nмежду          | between\n\n\n  | b: some paradigms\n  |\n  | personal pronouns\n  |\n  | я  меня  мне  мной  [мною]\n  | ты  тебя  тебе  тобой  [тобою]\n  | он  его  ему  им  [него, нему, ним]\n  | она  ее  эи  ею  [нее, нэи, нею]\n  | оно  его  ему  им  [него, нему, ним]\n  |\n  | мы  нас  нам  нами\n  | вы  вас  вам  вами\n  | они  их  им  ими  [них, ним, ними]\n  |\n  |   себя  себе  собой   [собою]\n  |\n  | demonstrative pronouns: этот (this), тот (that)\n  |\n  | этот  эта  это  эти\n  | этого  эты  это  эти\n  | этого  этой  этого  этих\n  | этому  этой  этому  этим\n  | этим  этой  этим  [этою]  этими\n  | этом  этой  этом  этих\n  |\n  | тот  та  то  те\n  | того  ту  то  те\n  | того  той  того  тех\n  | тому  той  тому  тем\n  | тем  той  тем  [тою]  теми\n  | том  той  том  тех\n  |\n  | determinative pronouns\n  |\n  | (a) весь (all)\n  |\n  | весь  вся  все  все\n  | всего  всю  все  все\n  | всего  всей  всего  всех\n  | всему  всей  всему  всем\n  | всем  всей  всем  [всею]  всеми\n  | всем  всей  всем  всех\n  |\n  | (b) сам (himself etc)\n  |\n  | сам  сама  само  сами\n  | самого саму  само  самих\n  | самого самой самого  самих\n  | самому самой самому  самим\n  | самим  самой  самим  [самою]  самими\n  | самом самой самом  самих\n  |\n  | stems of verbs `to be', `to have', `to do' and modal\n  |\n  | быть  бы  буд  быв  есть  суть\n  | име\n  | дел\n  | мог   мож  мочь\n  | уме\n  | хоч  хот\n  | долж\n  | можн\n  | нужн\n  | нельзя\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_sv.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/swedish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Swedish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n | Swedish stop words occasionally exhibit homonym clashes. For example\n |  så = so, but also seed. These are indicated clearly below.\n\noch            | and\ndet            | it, this/that\natt            | to (with infinitive)\ni              | in, at\nen             | a\njag            | I\nhon            | she\nsom            | who, that\nhan            | he\npå             | on\nden            | it, this/that\nmed            | with\nvar            | where, each\nsig            | him(self) etc\nför            | for\nså             | so (also: seed)\ntill           | to\när             | is\nmen            | but\nett            | a\nom             | if; around, about\nhade           | had\nde             | they, these/those\nav             | of\nicke           | not, no\nmig            | me\ndu             | you\nhenne          | her\ndå             | then, when\nsin            | his\nnu             | now\nhar            | have\ninte           | inte någon = no one\nhans           | his\nhonom          | him\nskulle         | 'sake'\nhennes         | her\ndär            | there\nmin            | my\nman            | one (pronoun)\nej             | nor\nvid            | at, by, on (also: vast)\nkunde          | could\nnågot          | some etc\nfrån           | from, off\nut             | out\nnär            | when\nefter          | after, behind\nupp            | up\nvi             | we\ndem            | them\nvara           | be\nvad            | what\növer           | over\nän             | than\ndig            | you\nkan            | can\nsina           | his\nhär            | here\nha             | have\nmot            | towards\nalla           | all\nunder          | under (also: wonder)\nnågon          | some etc\neller          | or (else)\nallt           | all\nmycket         | much\nsedan          | since\nju             | why\ndenna          | this/that\nsjälv          | myself, yourself etc\ndetta          | this/that\nåt             | to\nutan           | without\nvarit          | was\nhur            | how\ningen          | no\nmitt           | my\nni             | you\nbli            | to be, become\nblev           | from bli\noss            | us\ndin            | thy\ndessa          | these/those\nnågra          | some etc\nderas          | their\nblir           | from bli\nmina           | my\nsamma          | (the) same\nvilken         | who, that\ner             | you, your\nsådan          | such a\nvår            | our\nblivit         | from bli\ndess           | its\ninom           | within\nmellan         | between\nsådant         | such a\nvarför         | why\nvarje          | each\nvilka          | who, that\nditt           | thy\nvem            | who\nvilket         | who, that\nsitta          | his\nsådana         | such a\nvart           | each\ndina           | thy\nvars           | whose\nvårt           | our\nvåra           | our\nert            | your\nera            | your\nvilkas         | whose\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_th.txt",
    "content": "# Thai stopwords from:\n# \"Opinion Detection in Thai Political News Columns\n# Based on Subjectivity Analysis\"\n# Khampol Sukhum, Supot Nitsuwat, and Choochart Haruechaiyasak\nไว้\nไม่\nไป\nได้\nให้\nใน\nโดย\nแห่ง\nแล้ว\nและ\nแรก\nแบบ\nแต่\nเอง\nเห็น\nเลย\nเริ่ม\nเรา\nเมื่อ\nเพื่อ\nเพราะ\nเป็นการ\nเป็น\nเปิดเผย\nเปิด\nเนื่องจาก\nเดียวกัน\nเดียว\nเช่น\nเฉพาะ\nเคย\nเข้า\nเขา\nอีก\nอาจ\nอะไร\nออก\nอย่าง\nอยู่\nอยาก\nหาก\nหลาย\nหลังจาก\nหลัง\nหรือ\nหนึ่ง\nส่วน\nส่ง\nสุด\nสําหรับ\nว่า\nวัน\nลง\nร่วม\nราย\nรับ\nระหว่าง\nรวม\nยัง\nมี\nมาก\nมา\nพร้อม\nพบ\nผ่าน\nผล\nบาง\nน่า\nนี้\nนํา\nนั้น\nนัก\nนอกจาก\nทุก\nที่สุด\nที่\nทําให้\nทํา\nทาง\nทั้งนี้\nทั้ง\nถ้า\nถูก\nถึง\nต้อง\nต่างๆ\nต่าง\nต่อ\nตาม\nตั้งแต่\nตั้ง\nด้าน\nด้วย\nดัง\nซึ่ง\nช่วง\nจึง\nจาก\nจัด\nจะ\nคือ\nความ\nครั้ง\nคง\nขึ้น\nของ\nขอ\nขณะ\nก่อน\nก็\nการ\nกับ\nกัน\nกว่า\nกล่าว\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/stopwords_tr.txt",
    "content": "# Turkish stopwords from LUCENE-559\n# merged with the list from \"Information Retrieval on Turkish Texts\"\n#   (http://www.users.muohio.edu/canf/papers/JASIST2008offPrint.pdf)\nacaba\naltmış\naltı\nama\nancak\narada\naslında\nayrıca\nbana\nbazı\nbelki\nben\nbenden\nbeni\nbenim\nberi\nbeş\nbile\nbin\nbir\nbirçok\nbiri\nbirkaç\nbirkez\nbirşey\nbirşeyi\nbiz\nbize\nbizden\nbizi\nbizim\nböyle\nböylece\nbu\nbuna\nbunda\nbundan\nbunlar\nbunları\nbunların\nbunu\nbunun\nburada\nçok\nçünkü\nda\ndaha\ndahi\nde\ndefa\ndeğil\ndiğer\ndiye\ndoksan\ndokuz\ndolayı\ndolayısıyla\ndört\nedecek\neden\nederek\nedilecek\nediliyor\nedilmesi\nediyor\neğer\nelli\nen\netmesi\netti\nettiği\nettiğini\ngibi\ngöre\nhalen\nhangi\nhatta\nhem\nhenüz\nhep\nhepsi\nher\nherhangi\nherkesin\nhiç\nhiçbir\niçin\niki\nile\nilgili\nise\nişte\nitibaren\nitibariyle\nkadar\nkarşın\nkatrilyon\nkendi\nkendilerine\nkendini\nkendisi\nkendisine\nkendisini\nkez\nki\nkim\nkimden\nkime\nkimi\nkimse\nkırk\nmilyar\nmilyon\nmu\nmü\nmı\nnasıl\nne\nneden\nnedenle\nnerde\nnerede\nnereye\nniye\nniçin\no\nolan\nolarak\noldu\nolduğu\nolduğunu\nolduklarını\nolmadı\nolmadığı\nolmak\nolması\nolmayan\nolmaz\nolsa\nolsun\nolup\nolur\nolursa\noluyor\non\nona\nondan\nonlar\nonlardan\nonları\nonların\nonu\nonun\notuz\noysa\nöyle\npek\nrağmen\nsadece\nsanki\nsekiz\nseksen\nsen\nsenden\nseni\nsenin\nsiz\nsizden\nsizi\nsizin\nşey\nşeyden\nşeyi\nşeyler\nşöyle\nşu\nşuna\nşunda\nşundan\nşunları\nşunu\ntarafından\ntrilyon\ntüm\nüç\nüzere\nvar\nvardı\nve\nveya\nya\nyani\nyapacak\nyapılan\nyapılması\nyapıyor\nyapmak\nyaptı\nyaptığı\nyaptığını\nyaptıkları\nyedi\nyerine\nyetmiş\nyine\nyirmi\nyoksa\nyüz\nzaten\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/lang/userdict_ja.txt",
    "content": "#\n# This is a sample user dictionary for Kuromoji (JapaneseTokenizer)\n#\n# Add entries to this file in order to override the statistical model in terms\n# of segmentation, readings and part-of-speech tags.  Notice that entries do\n# not have weights since they are always used when found.  This is by-design\n# in order to maximize ease-of-use.\n#\n# Entries are defined using the following CSV format:\n#  <text>,<token 1> ... <token n>,<reading 1> ... <reading n>,<part-of-speech tag>\n#\n# Notice that a single half-width space separates tokens and readings, and\n# that the number tokens and readings must match exactly.\n#\n# Also notice that multiple entries with the same <text> is undefined.\n#\n# Whitespace only lines are ignored.  Comments are not allowed on entry lines.\n#\n\n# Custom segmentation for kanji compounds\n日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞\n関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,カスタム名詞\n\n# Custom segmentation for compound katakana\nトートバッグ,トート バッグ,トート バッグ,かずカナ名詞\nショルダーバッグ,ショルダー バッグ,ショルダー バッグ,かずカナ名詞\n\n# Custom reading for former sumo wrestler\n朝青龍,朝青龍,アサショウリュウ,カスタム人名\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/mapping-FoldToASCII.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\n# This map converts alphabetic, numeric, and symbolic Unicode characters\n# which are not in the first 127 ASCII characters (the \"Basic Latin\" Unicode\n# block) into their ASCII equivalents, if one exists.\n#\n# Characters from the following Unicode blocks are converted; however, only\n# those characters with reasonable ASCII alternatives are converted:\n#\n# - C1 Controls and Latin-1 Supplement: http://www.unicode.org/charts/PDF/U0080.pdf\n# - Latin Extended-A: http://www.unicode.org/charts/PDF/U0100.pdf\n# - Latin Extended-B: http://www.unicode.org/charts/PDF/U0180.pdf\n# - Latin Extended Additional: http://www.unicode.org/charts/PDF/U1E00.pdf\n# - Latin Extended-C: http://www.unicode.org/charts/PDF/U2C60.pdf\n# - Latin Extended-D: http://www.unicode.org/charts/PDF/UA720.pdf\n# - IPA Extensions: http://www.unicode.org/charts/PDF/U0250.pdf\n# - Phonetic Extensions: http://www.unicode.org/charts/PDF/U1D00.pdf\n# - Phonetic Extensions Supplement: http://www.unicode.org/charts/PDF/U1D80.pdf\n# - General Punctuation: http://www.unicode.org/charts/PDF/U2000.pdf\n# - Superscripts and Subscripts: http://www.unicode.org/charts/PDF/U2070.pdf\n# - Enclosed Alphanumerics: http://www.unicode.org/charts/PDF/U2460.pdf\n# - Dingbats: http://www.unicode.org/charts/PDF/U2700.pdf\n# - Supplemental Punctuation: http://www.unicode.org/charts/PDF/U2E00.pdf\n# - Alphabetic Presentation Forms: http://www.unicode.org/charts/PDF/UFB00.pdf\n# - Halfwidth and Fullwidth Forms: http://www.unicode.org/charts/PDF/UFF00.pdf\n#  \n# See: http://en.wikipedia.org/wiki/Latin_characters_in_Unicode\n#\n# The set of character conversions supported by this map is a superset of\n# those supported by the map represented by mapping-ISOLatin1Accent.txt.\n#\n# See the bottom of this file for the Perl script used to generate the contents\n# of this file (without this header) from ASCIIFoldingFilter.java.\n\n\n# Syntax:\n#   \"source\" => \"target\"\n#     \"source\".length() > 0 (source cannot be empty.)\n#     \"target\".length() >= 0 (target can be empty.)\n\n\n# À  [LATIN CAPITAL LETTER A WITH GRAVE]\n\"\\u00C0\" => \"A\"\n\n# Á  [LATIN CAPITAL LETTER A WITH ACUTE]\n\"\\u00C1\" => \"A\"\n\n# Â  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX]\n\"\\u00C2\" => \"A\"\n\n# Ã  [LATIN CAPITAL LETTER A WITH TILDE]\n\"\\u00C3\" => \"A\"\n\n# Ä  [LATIN CAPITAL LETTER A WITH DIAERESIS]\n\"\\u00C4\" => \"A\"\n\n# Å  [LATIN CAPITAL LETTER A WITH RING ABOVE]\n\"\\u00C5\" => \"A\"\n\n# Ā  [LATIN CAPITAL LETTER A WITH MACRON]\n\"\\u0100\" => \"A\"\n\n# Ă  [LATIN CAPITAL LETTER A WITH BREVE]\n\"\\u0102\" => \"A\"\n\n# Ą  [LATIN CAPITAL LETTER A WITH OGONEK]\n\"\\u0104\" => \"A\"\n\n# Ə  http://en.wikipedia.org/wiki/Schwa  [LATIN CAPITAL LETTER SCHWA]\n\"\\u018F\" => \"A\"\n\n# Ǎ  [LATIN CAPITAL LETTER A WITH CARON]\n\"\\u01CD\" => \"A\"\n\n# Ǟ  [LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON]\n\"\\u01DE\" => \"A\"\n\n# Ǡ  [LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON]\n\"\\u01E0\" => \"A\"\n\n# Ǻ  [LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE]\n\"\\u01FA\" => \"A\"\n\n# Ȁ  [LATIN CAPITAL LETTER A WITH DOUBLE GRAVE]\n\"\\u0200\" => \"A\"\n\n# Ȃ  [LATIN CAPITAL LETTER A WITH INVERTED BREVE]\n\"\\u0202\" => \"A\"\n\n# Ȧ  [LATIN CAPITAL LETTER A WITH DOT ABOVE]\n\"\\u0226\" => \"A\"\n\n# Ⱥ  [LATIN CAPITAL LETTER A WITH STROKE]\n\"\\u023A\" => \"A\"\n\n# ᴀ  [LATIN LETTER SMALL CAPITAL A]\n\"\\u1D00\" => \"A\"\n\n# Ḁ  [LATIN CAPITAL LETTER A WITH RING BELOW]\n\"\\u1E00\" => \"A\"\n\n# Ạ  [LATIN CAPITAL LETTER A WITH DOT BELOW]\n\"\\u1EA0\" => \"A\"\n\n# Ả  [LATIN CAPITAL LETTER A WITH HOOK ABOVE]\n\"\\u1EA2\" => \"A\"\n\n# Ấ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EA4\" => \"A\"\n\n# Ầ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EA6\" => \"A\"\n\n# Ẩ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EA8\" => \"A\"\n\n# Ẫ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE]\n\"\\u1EAA\" => \"A\"\n\n# Ậ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EAC\" => \"A\"\n\n# Ắ  [LATIN CAPITAL LETTER A WITH BREVE AND ACUTE]\n\"\\u1EAE\" => \"A\"\n\n# Ằ  [LATIN CAPITAL LETTER A WITH BREVE AND GRAVE]\n\"\\u1EB0\" => \"A\"\n\n# Ẳ  [LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE]\n\"\\u1EB2\" => \"A\"\n\n# Ẵ  [LATIN CAPITAL LETTER A WITH BREVE AND TILDE]\n\"\\u1EB4\" => \"A\"\n\n# Ặ  [LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW]\n\"\\u1EB6\" => \"A\"\n\n# Ⓐ  [CIRCLED LATIN CAPITAL LETTER A]\n\"\\u24B6\" => \"A\"\n\n# Ａ  [FULLWIDTH LATIN CAPITAL LETTER A]\n\"\\uFF21\" => \"A\"\n\n# à  [LATIN SMALL LETTER A WITH GRAVE]\n\"\\u00E0\" => \"a\"\n\n# á  [LATIN SMALL LETTER A WITH ACUTE]\n\"\\u00E1\" => \"a\"\n\n# â  [LATIN SMALL LETTER A WITH CIRCUMFLEX]\n\"\\u00E2\" => \"a\"\n\n# ã  [LATIN SMALL LETTER A WITH TILDE]\n\"\\u00E3\" => \"a\"\n\n# ä  [LATIN SMALL LETTER A WITH DIAERESIS]\n\"\\u00E4\" => \"a\"\n\n# å  [LATIN SMALL LETTER A WITH RING ABOVE]\n\"\\u00E5\" => \"a\"\n\n# ā  [LATIN SMALL LETTER A WITH MACRON]\n\"\\u0101\" => \"a\"\n\n# ă  [LATIN SMALL LETTER A WITH BREVE]\n\"\\u0103\" => \"a\"\n\n# ą  [LATIN SMALL LETTER A WITH OGONEK]\n\"\\u0105\" => \"a\"\n\n# ǎ  [LATIN SMALL LETTER A WITH CARON]\n\"\\u01CE\" => \"a\"\n\n# ǟ  [LATIN SMALL LETTER A WITH DIAERESIS AND MACRON]\n\"\\u01DF\" => \"a\"\n\n# ǡ  [LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON]\n\"\\u01E1\" => \"a\"\n\n# ǻ  [LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE]\n\"\\u01FB\" => \"a\"\n\n# ȁ  [LATIN SMALL LETTER A WITH DOUBLE GRAVE]\n\"\\u0201\" => \"a\"\n\n# ȃ  [LATIN SMALL LETTER A WITH INVERTED BREVE]\n\"\\u0203\" => \"a\"\n\n# ȧ  [LATIN SMALL LETTER A WITH DOT ABOVE]\n\"\\u0227\" => \"a\"\n\n# ɐ  [LATIN SMALL LETTER TURNED A]\n\"\\u0250\" => \"a\"\n\n# ə  [LATIN SMALL LETTER SCHWA]\n\"\\u0259\" => \"a\"\n\n# ɚ  [LATIN SMALL LETTER SCHWA WITH HOOK]\n\"\\u025A\" => \"a\"\n\n# ᶏ  [LATIN SMALL LETTER A WITH RETROFLEX HOOK]\n\"\\u1D8F\" => \"a\"\n\n# ᶕ  [LATIN SMALL LETTER SCHWA WITH RETROFLEX HOOK]\n\"\\u1D95\" => \"a\"\n\n# ạ  [LATIN SMALL LETTER A WITH RING BELOW]\n\"\\u1E01\" => \"a\"\n\n# ả  [LATIN SMALL LETTER A WITH RIGHT HALF RING]\n\"\\u1E9A\" => \"a\"\n\n# ạ  [LATIN SMALL LETTER A WITH DOT BELOW]\n\"\\u1EA1\" => \"a\"\n\n# ả  [LATIN SMALL LETTER A WITH HOOK ABOVE]\n\"\\u1EA3\" => \"a\"\n\n# ấ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EA5\" => \"a\"\n\n# ầ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EA7\" => \"a\"\n\n# ẩ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EA9\" => \"a\"\n\n# ẫ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE]\n\"\\u1EAB\" => \"a\"\n\n# ậ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EAD\" => \"a\"\n\n# ắ  [LATIN SMALL LETTER A WITH BREVE AND ACUTE]\n\"\\u1EAF\" => \"a\"\n\n# ằ  [LATIN SMALL LETTER A WITH BREVE AND GRAVE]\n\"\\u1EB1\" => \"a\"\n\n# ẳ  [LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE]\n\"\\u1EB3\" => \"a\"\n\n# ẵ  [LATIN SMALL LETTER A WITH BREVE AND TILDE]\n\"\\u1EB5\" => \"a\"\n\n# ặ  [LATIN SMALL LETTER A WITH BREVE AND DOT BELOW]\n\"\\u1EB7\" => \"a\"\n\n# ₐ  [LATIN SUBSCRIPT SMALL LETTER A]\n\"\\u2090\" => \"a\"\n\n# ₔ  [LATIN SUBSCRIPT SMALL LETTER SCHWA]\n\"\\u2094\" => \"a\"\n\n# ⓐ  [CIRCLED LATIN SMALL LETTER A]\n\"\\u24D0\" => \"a\"\n\n# ⱥ  [LATIN SMALL LETTER A WITH STROKE]\n\"\\u2C65\" => \"a\"\n\n# Ɐ  [LATIN CAPITAL LETTER TURNED A]\n\"\\u2C6F\" => \"a\"\n\n# ａ  [FULLWIDTH LATIN SMALL LETTER A]\n\"\\uFF41\" => \"a\"\n\n# Ꜳ  [LATIN CAPITAL LETTER AA]\n\"\\uA732\" => \"AA\"\n\n# Æ  [LATIN CAPITAL LETTER AE]\n\"\\u00C6\" => \"AE\"\n\n# Ǣ  [LATIN CAPITAL LETTER AE WITH MACRON]\n\"\\u01E2\" => \"AE\"\n\n# Ǽ  [LATIN CAPITAL LETTER AE WITH ACUTE]\n\"\\u01FC\" => \"AE\"\n\n# ᴁ  [LATIN LETTER SMALL CAPITAL AE]\n\"\\u1D01\" => \"AE\"\n\n# Ꜵ  [LATIN CAPITAL LETTER AO]\n\"\\uA734\" => \"AO\"\n\n# Ꜷ  [LATIN CAPITAL LETTER AU]\n\"\\uA736\" => \"AU\"\n\n# Ꜹ  [LATIN CAPITAL LETTER AV]\n\"\\uA738\" => \"AV\"\n\n# Ꜻ  [LATIN CAPITAL LETTER AV WITH HORIZONTAL BAR]\n\"\\uA73A\" => \"AV\"\n\n# Ꜽ  [LATIN CAPITAL LETTER AY]\n\"\\uA73C\" => \"AY\"\n\n# ⒜  [PARENTHESIZED LATIN SMALL LETTER A]\n\"\\u249C\" => \"(a)\"\n\n# ꜳ  [LATIN SMALL LETTER AA]\n\"\\uA733\" => \"aa\"\n\n# æ  [LATIN SMALL LETTER AE]\n\"\\u00E6\" => \"ae\"\n\n# ǣ  [LATIN SMALL LETTER AE WITH MACRON]\n\"\\u01E3\" => \"ae\"\n\n# ǽ  [LATIN SMALL LETTER AE WITH ACUTE]\n\"\\u01FD\" => \"ae\"\n\n# ᴂ  [LATIN SMALL LETTER TURNED AE]\n\"\\u1D02\" => \"ae\"\n\n# ꜵ  [LATIN SMALL LETTER AO]\n\"\\uA735\" => \"ao\"\n\n# ꜷ  [LATIN SMALL LETTER AU]\n\"\\uA737\" => \"au\"\n\n# ꜹ  [LATIN SMALL LETTER AV]\n\"\\uA739\" => \"av\"\n\n# ꜻ  [LATIN SMALL LETTER AV WITH HORIZONTAL BAR]\n\"\\uA73B\" => \"av\"\n\n# ꜽ  [LATIN SMALL LETTER AY]\n\"\\uA73D\" => \"ay\"\n\n# Ɓ  [LATIN CAPITAL LETTER B WITH HOOK]\n\"\\u0181\" => \"B\"\n\n# Ƃ  [LATIN CAPITAL LETTER B WITH TOPBAR]\n\"\\u0182\" => \"B\"\n\n# Ƀ  [LATIN CAPITAL LETTER B WITH STROKE]\n\"\\u0243\" => \"B\"\n\n# ʙ  [LATIN LETTER SMALL CAPITAL B]\n\"\\u0299\" => \"B\"\n\n# ᴃ  [LATIN LETTER SMALL CAPITAL BARRED B]\n\"\\u1D03\" => \"B\"\n\n# Ḃ  [LATIN CAPITAL LETTER B WITH DOT ABOVE]\n\"\\u1E02\" => \"B\"\n\n# Ḅ  [LATIN CAPITAL LETTER B WITH DOT BELOW]\n\"\\u1E04\" => \"B\"\n\n# Ḇ  [LATIN CAPITAL LETTER B WITH LINE BELOW]\n\"\\u1E06\" => \"B\"\n\n# Ⓑ  [CIRCLED LATIN CAPITAL LETTER B]\n\"\\u24B7\" => \"B\"\n\n# Ｂ  [FULLWIDTH LATIN CAPITAL LETTER B]\n\"\\uFF22\" => \"B\"\n\n# ƀ  [LATIN SMALL LETTER B WITH STROKE]\n\"\\u0180\" => \"b\"\n\n# ƃ  [LATIN SMALL LETTER B WITH TOPBAR]\n\"\\u0183\" => \"b\"\n\n# ɓ  [LATIN SMALL LETTER B WITH HOOK]\n\"\\u0253\" => \"b\"\n\n# ᵬ  [LATIN SMALL LETTER B WITH MIDDLE TILDE]\n\"\\u1D6C\" => \"b\"\n\n# ᶀ  [LATIN SMALL LETTER B WITH PALATAL HOOK]\n\"\\u1D80\" => \"b\"\n\n# ḃ  [LATIN SMALL LETTER B WITH DOT ABOVE]\n\"\\u1E03\" => \"b\"\n\n# ḅ  [LATIN SMALL LETTER B WITH DOT BELOW]\n\"\\u1E05\" => \"b\"\n\n# ḇ  [LATIN SMALL LETTER B WITH LINE BELOW]\n\"\\u1E07\" => \"b\"\n\n# ⓑ  [CIRCLED LATIN SMALL LETTER B]\n\"\\u24D1\" => \"b\"\n\n# ｂ  [FULLWIDTH LATIN SMALL LETTER B]\n\"\\uFF42\" => \"b\"\n\n# ⒝  [PARENTHESIZED LATIN SMALL LETTER B]\n\"\\u249D\" => \"(b)\"\n\n# Ç  [LATIN CAPITAL LETTER C WITH CEDILLA]\n\"\\u00C7\" => \"C\"\n\n# Ć  [LATIN CAPITAL LETTER C WITH ACUTE]\n\"\\u0106\" => \"C\"\n\n# Ĉ  [LATIN CAPITAL LETTER C WITH CIRCUMFLEX]\n\"\\u0108\" => \"C\"\n\n# Ċ  [LATIN CAPITAL LETTER C WITH DOT ABOVE]\n\"\\u010A\" => \"C\"\n\n# Č  [LATIN CAPITAL LETTER C WITH CARON]\n\"\\u010C\" => \"C\"\n\n# Ƈ  [LATIN CAPITAL LETTER C WITH HOOK]\n\"\\u0187\" => \"C\"\n\n# Ȼ  [LATIN CAPITAL LETTER C WITH STROKE]\n\"\\u023B\" => \"C\"\n\n# ʗ  [LATIN LETTER STRETCHED C]\n\"\\u0297\" => \"C\"\n\n# ᴄ  [LATIN LETTER SMALL CAPITAL C]\n\"\\u1D04\" => \"C\"\n\n# Ḉ  [LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE]\n\"\\u1E08\" => \"C\"\n\n# Ⓒ  [CIRCLED LATIN CAPITAL LETTER C]\n\"\\u24B8\" => \"C\"\n\n# Ｃ  [FULLWIDTH LATIN CAPITAL LETTER C]\n\"\\uFF23\" => \"C\"\n\n# ç  [LATIN SMALL LETTER C WITH CEDILLA]\n\"\\u00E7\" => \"c\"\n\n# ć  [LATIN SMALL LETTER C WITH ACUTE]\n\"\\u0107\" => \"c\"\n\n# ĉ  [LATIN SMALL LETTER C WITH CIRCUMFLEX]\n\"\\u0109\" => \"c\"\n\n# ċ  [LATIN SMALL LETTER C WITH DOT ABOVE]\n\"\\u010B\" => \"c\"\n\n# č  [LATIN SMALL LETTER C WITH CARON]\n\"\\u010D\" => \"c\"\n\n# ƈ  [LATIN SMALL LETTER C WITH HOOK]\n\"\\u0188\" => \"c\"\n\n# ȼ  [LATIN SMALL LETTER C WITH STROKE]\n\"\\u023C\" => \"c\"\n\n# ɕ  [LATIN SMALL LETTER C WITH CURL]\n\"\\u0255\" => \"c\"\n\n# ḉ  [LATIN SMALL LETTER C WITH CEDILLA AND ACUTE]\n\"\\u1E09\" => \"c\"\n\n# ↄ  [LATIN SMALL LETTER REVERSED C]\n\"\\u2184\" => \"c\"\n\n# ⓒ  [CIRCLED LATIN SMALL LETTER C]\n\"\\u24D2\" => \"c\"\n\n# Ꜿ  [LATIN CAPITAL LETTER REVERSED C WITH DOT]\n\"\\uA73E\" => \"c\"\n\n# ꜿ  [LATIN SMALL LETTER REVERSED C WITH DOT]\n\"\\uA73F\" => \"c\"\n\n# ｃ  [FULLWIDTH LATIN SMALL LETTER C]\n\"\\uFF43\" => \"c\"\n\n# ⒞  [PARENTHESIZED LATIN SMALL LETTER C]\n\"\\u249E\" => \"(c)\"\n\n# Ð  [LATIN CAPITAL LETTER ETH]\n\"\\u00D0\" => \"D\"\n\n# Ď  [LATIN CAPITAL LETTER D WITH CARON]\n\"\\u010E\" => \"D\"\n\n# Đ  [LATIN CAPITAL LETTER D WITH STROKE]\n\"\\u0110\" => \"D\"\n\n# Ɖ  [LATIN CAPITAL LETTER AFRICAN D]\n\"\\u0189\" => \"D\"\n\n# Ɗ  [LATIN CAPITAL LETTER D WITH HOOK]\n\"\\u018A\" => \"D\"\n\n# Ƌ  [LATIN CAPITAL LETTER D WITH TOPBAR]\n\"\\u018B\" => \"D\"\n\n# ᴅ  [LATIN LETTER SMALL CAPITAL D]\n\"\\u1D05\" => \"D\"\n\n# ᴆ  [LATIN LETTER SMALL CAPITAL ETH]\n\"\\u1D06\" => \"D\"\n\n# Ḋ  [LATIN CAPITAL LETTER D WITH DOT ABOVE]\n\"\\u1E0A\" => \"D\"\n\n# Ḍ  [LATIN CAPITAL LETTER D WITH DOT BELOW]\n\"\\u1E0C\" => \"D\"\n\n# Ḏ  [LATIN CAPITAL LETTER D WITH LINE BELOW]\n\"\\u1E0E\" => \"D\"\n\n# Ḑ  [LATIN CAPITAL LETTER D WITH CEDILLA]\n\"\\u1E10\" => \"D\"\n\n# Ḓ  [LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW]\n\"\\u1E12\" => \"D\"\n\n# Ⓓ  [CIRCLED LATIN CAPITAL LETTER D]\n\"\\u24B9\" => \"D\"\n\n# Ꝺ  [LATIN CAPITAL LETTER INSULAR D]\n\"\\uA779\" => \"D\"\n\n# Ｄ  [FULLWIDTH LATIN CAPITAL LETTER D]\n\"\\uFF24\" => \"D\"\n\n# ð  [LATIN SMALL LETTER ETH]\n\"\\u00F0\" => \"d\"\n\n# ď  [LATIN SMALL LETTER D WITH CARON]\n\"\\u010F\" => \"d\"\n\n# đ  [LATIN SMALL LETTER D WITH STROKE]\n\"\\u0111\" => \"d\"\n\n# ƌ  [LATIN SMALL LETTER D WITH TOPBAR]\n\"\\u018C\" => \"d\"\n\n# ȡ  [LATIN SMALL LETTER D WITH CURL]\n\"\\u0221\" => \"d\"\n\n# ɖ  [LATIN SMALL LETTER D WITH TAIL]\n\"\\u0256\" => \"d\"\n\n# ɗ  [LATIN SMALL LETTER D WITH HOOK]\n\"\\u0257\" => \"d\"\n\n# ᵭ  [LATIN SMALL LETTER D WITH MIDDLE TILDE]\n\"\\u1D6D\" => \"d\"\n\n# ᶁ  [LATIN SMALL LETTER D WITH PALATAL HOOK]\n\"\\u1D81\" => \"d\"\n\n# ᶑ  [LATIN SMALL LETTER D WITH HOOK AND TAIL]\n\"\\u1D91\" => \"d\"\n\n# ḋ  [LATIN SMALL LETTER D WITH DOT ABOVE]\n\"\\u1E0B\" => \"d\"\n\n# ḍ  [LATIN SMALL LETTER D WITH DOT BELOW]\n\"\\u1E0D\" => \"d\"\n\n# ḏ  [LATIN SMALL LETTER D WITH LINE BELOW]\n\"\\u1E0F\" => \"d\"\n\n# ḑ  [LATIN SMALL LETTER D WITH CEDILLA]\n\"\\u1E11\" => \"d\"\n\n# ḓ  [LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW]\n\"\\u1E13\" => \"d\"\n\n# ⓓ  [CIRCLED LATIN SMALL LETTER D]\n\"\\u24D3\" => \"d\"\n\n# ꝺ  [LATIN SMALL LETTER INSULAR D]\n\"\\uA77A\" => \"d\"\n\n# ｄ  [FULLWIDTH LATIN SMALL LETTER D]\n\"\\uFF44\" => \"d\"\n\n# Ǆ  [LATIN CAPITAL LETTER DZ WITH CARON]\n\"\\u01C4\" => \"DZ\"\n\n# Ǳ  [LATIN CAPITAL LETTER DZ]\n\"\\u01F1\" => \"DZ\"\n\n# ǅ  [LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON]\n\"\\u01C5\" => \"Dz\"\n\n# ǲ  [LATIN CAPITAL LETTER D WITH SMALL LETTER Z]\n\"\\u01F2\" => \"Dz\"\n\n# ⒟  [PARENTHESIZED LATIN SMALL LETTER D]\n\"\\u249F\" => \"(d)\"\n\n# ȸ  [LATIN SMALL LETTER DB DIGRAPH]\n\"\\u0238\" => \"db\"\n\n# ǆ  [LATIN SMALL LETTER DZ WITH CARON]\n\"\\u01C6\" => \"dz\"\n\n# ǳ  [LATIN SMALL LETTER DZ]\n\"\\u01F3\" => \"dz\"\n\n# ʣ  [LATIN SMALL LETTER DZ DIGRAPH]\n\"\\u02A3\" => \"dz\"\n\n# ʥ  [LATIN SMALL LETTER DZ DIGRAPH WITH CURL]\n\"\\u02A5\" => \"dz\"\n\n# È  [LATIN CAPITAL LETTER E WITH GRAVE]\n\"\\u00C8\" => \"E\"\n\n# É  [LATIN CAPITAL LETTER E WITH ACUTE]\n\"\\u00C9\" => \"E\"\n\n# Ê  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX]\n\"\\u00CA\" => \"E\"\n\n# Ë  [LATIN CAPITAL LETTER E WITH DIAERESIS]\n\"\\u00CB\" => \"E\"\n\n# Ē  [LATIN CAPITAL LETTER E WITH MACRON]\n\"\\u0112\" => \"E\"\n\n# Ĕ  [LATIN CAPITAL LETTER E WITH BREVE]\n\"\\u0114\" => \"E\"\n\n# Ė  [LATIN CAPITAL LETTER E WITH DOT ABOVE]\n\"\\u0116\" => \"E\"\n\n# Ę  [LATIN CAPITAL LETTER E WITH OGONEK]\n\"\\u0118\" => \"E\"\n\n# Ě  [LATIN CAPITAL LETTER E WITH CARON]\n\"\\u011A\" => \"E\"\n\n# Ǝ  [LATIN CAPITAL LETTER REVERSED E]\n\"\\u018E\" => \"E\"\n\n# Ɛ  [LATIN CAPITAL LETTER OPEN E]\n\"\\u0190\" => \"E\"\n\n# Ȅ  [LATIN CAPITAL LETTER E WITH DOUBLE GRAVE]\n\"\\u0204\" => \"E\"\n\n# Ȇ  [LATIN CAPITAL LETTER E WITH INVERTED BREVE]\n\"\\u0206\" => \"E\"\n\n# Ȩ  [LATIN CAPITAL LETTER E WITH CEDILLA]\n\"\\u0228\" => \"E\"\n\n# Ɇ  [LATIN CAPITAL LETTER E WITH STROKE]\n\"\\u0246\" => \"E\"\n\n# ᴇ  [LATIN LETTER SMALL CAPITAL E]\n\"\\u1D07\" => \"E\"\n\n# Ḕ  [LATIN CAPITAL LETTER E WITH MACRON AND GRAVE]\n\"\\u1E14\" => \"E\"\n\n# Ḗ  [LATIN CAPITAL LETTER E WITH MACRON AND ACUTE]\n\"\\u1E16\" => \"E\"\n\n# Ḙ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW]\n\"\\u1E18\" => \"E\"\n\n# Ḛ  [LATIN CAPITAL LETTER E WITH TILDE BELOW]\n\"\\u1E1A\" => \"E\"\n\n# Ḝ  [LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE]\n\"\\u1E1C\" => \"E\"\n\n# Ẹ  [LATIN CAPITAL LETTER E WITH DOT BELOW]\n\"\\u1EB8\" => \"E\"\n\n# Ẻ  [LATIN CAPITAL LETTER E WITH HOOK ABOVE]\n\"\\u1EBA\" => \"E\"\n\n# Ẽ  [LATIN CAPITAL LETTER E WITH TILDE]\n\"\\u1EBC\" => \"E\"\n\n# Ế  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EBE\" => \"E\"\n\n# Ề  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EC0\" => \"E\"\n\n# Ể  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EC2\" => \"E\"\n\n# Ễ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE]\n\"\\u1EC4\" => \"E\"\n\n# Ệ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EC6\" => \"E\"\n\n# Ⓔ  [CIRCLED LATIN CAPITAL LETTER E]\n\"\\u24BA\" => \"E\"\n\n# ⱻ  [LATIN LETTER SMALL CAPITAL TURNED E]\n\"\\u2C7B\" => \"E\"\n\n# Ｅ  [FULLWIDTH LATIN CAPITAL LETTER E]\n\"\\uFF25\" => \"E\"\n\n# è  [LATIN SMALL LETTER E WITH GRAVE]\n\"\\u00E8\" => \"e\"\n\n# é  [LATIN SMALL LETTER E WITH ACUTE]\n\"\\u00E9\" => \"e\"\n\n# ê  [LATIN SMALL LETTER E WITH CIRCUMFLEX]\n\"\\u00EA\" => \"e\"\n\n# ë  [LATIN SMALL LETTER E WITH DIAERESIS]\n\"\\u00EB\" => \"e\"\n\n# ē  [LATIN SMALL LETTER E WITH MACRON]\n\"\\u0113\" => \"e\"\n\n# ĕ  [LATIN SMALL LETTER E WITH BREVE]\n\"\\u0115\" => \"e\"\n\n# ė  [LATIN SMALL LETTER E WITH DOT ABOVE]\n\"\\u0117\" => \"e\"\n\n# ę  [LATIN SMALL LETTER E WITH OGONEK]\n\"\\u0119\" => \"e\"\n\n# ě  [LATIN SMALL LETTER E WITH CARON]\n\"\\u011B\" => \"e\"\n\n# ǝ  [LATIN SMALL LETTER TURNED E]\n\"\\u01DD\" => \"e\"\n\n# ȅ  [LATIN SMALL LETTER E WITH DOUBLE GRAVE]\n\"\\u0205\" => \"e\"\n\n# ȇ  [LATIN SMALL LETTER E WITH INVERTED BREVE]\n\"\\u0207\" => \"e\"\n\n# ȩ  [LATIN SMALL LETTER E WITH CEDILLA]\n\"\\u0229\" => \"e\"\n\n# ɇ  [LATIN SMALL LETTER E WITH STROKE]\n\"\\u0247\" => \"e\"\n\n# ɘ  [LATIN SMALL LETTER REVERSED E]\n\"\\u0258\" => \"e\"\n\n# ɛ  [LATIN SMALL LETTER OPEN E]\n\"\\u025B\" => \"e\"\n\n# ɜ  [LATIN SMALL LETTER REVERSED OPEN E]\n\"\\u025C\" => \"e\"\n\n# ɝ  [LATIN SMALL LETTER REVERSED OPEN E WITH HOOK]\n\"\\u025D\" => \"e\"\n\n# ɞ  [LATIN SMALL LETTER CLOSED REVERSED OPEN E]\n\"\\u025E\" => \"e\"\n\n# ʚ  [LATIN SMALL LETTER CLOSED OPEN E]\n\"\\u029A\" => \"e\"\n\n# ᴈ  [LATIN SMALL LETTER TURNED OPEN E]\n\"\\u1D08\" => \"e\"\n\n# ᶒ  [LATIN SMALL LETTER E WITH RETROFLEX HOOK]\n\"\\u1D92\" => \"e\"\n\n# ᶓ  [LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK]\n\"\\u1D93\" => \"e\"\n\n# ᶔ  [LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK]\n\"\\u1D94\" => \"e\"\n\n# ḕ  [LATIN SMALL LETTER E WITH MACRON AND GRAVE]\n\"\\u1E15\" => \"e\"\n\n# ḗ  [LATIN SMALL LETTER E WITH MACRON AND ACUTE]\n\"\\u1E17\" => \"e\"\n\n# ḙ  [LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW]\n\"\\u1E19\" => \"e\"\n\n# ḛ  [LATIN SMALL LETTER E WITH TILDE BELOW]\n\"\\u1E1B\" => \"e\"\n\n# ḝ  [LATIN SMALL LETTER E WITH CEDILLA AND BREVE]\n\"\\u1E1D\" => \"e\"\n\n# ẹ  [LATIN SMALL LETTER E WITH DOT BELOW]\n\"\\u1EB9\" => \"e\"\n\n# ẻ  [LATIN SMALL LETTER E WITH HOOK ABOVE]\n\"\\u1EBB\" => \"e\"\n\n# ẽ  [LATIN SMALL LETTER E WITH TILDE]\n\"\\u1EBD\" => \"e\"\n\n# ế  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EBF\" => \"e\"\n\n# ề  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EC1\" => \"e\"\n\n# ể  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EC3\" => \"e\"\n\n# ễ  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE]\n\"\\u1EC5\" => \"e\"\n\n# ệ  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EC7\" => \"e\"\n\n# ₑ  [LATIN SUBSCRIPT SMALL LETTER E]\n\"\\u2091\" => \"e\"\n\n# ⓔ  [CIRCLED LATIN SMALL LETTER E]\n\"\\u24D4\" => \"e\"\n\n# ⱸ  [LATIN SMALL LETTER E WITH NOTCH]\n\"\\u2C78\" => \"e\"\n\n# ｅ  [FULLWIDTH LATIN SMALL LETTER E]\n\"\\uFF45\" => \"e\"\n\n# ⒠  [PARENTHESIZED LATIN SMALL LETTER E]\n\"\\u24A0\" => \"(e)\"\n\n# Ƒ  [LATIN CAPITAL LETTER F WITH HOOK]\n\"\\u0191\" => \"F\"\n\n# Ḟ  [LATIN CAPITAL LETTER F WITH DOT ABOVE]\n\"\\u1E1E\" => \"F\"\n\n# Ⓕ  [CIRCLED LATIN CAPITAL LETTER F]\n\"\\u24BB\" => \"F\"\n\n# ꜰ  [LATIN LETTER SMALL CAPITAL F]\n\"\\uA730\" => \"F\"\n\n# Ꝼ  [LATIN CAPITAL LETTER INSULAR F]\n\"\\uA77B\" => \"F\"\n\n# ꟻ  [LATIN EPIGRAPHIC LETTER REVERSED F]\n\"\\uA7FB\" => \"F\"\n\n# Ｆ  [FULLWIDTH LATIN CAPITAL LETTER F]\n\"\\uFF26\" => \"F\"\n\n# ƒ  [LATIN SMALL LETTER F WITH HOOK]\n\"\\u0192\" => \"f\"\n\n# ᵮ  [LATIN SMALL LETTER F WITH MIDDLE TILDE]\n\"\\u1D6E\" => \"f\"\n\n# ᶂ  [LATIN SMALL LETTER F WITH PALATAL HOOK]\n\"\\u1D82\" => \"f\"\n\n# ḟ  [LATIN SMALL LETTER F WITH DOT ABOVE]\n\"\\u1E1F\" => \"f\"\n\n# ẛ  [LATIN SMALL LETTER LONG S WITH DOT ABOVE]\n\"\\u1E9B\" => \"f\"\n\n# ⓕ  [CIRCLED LATIN SMALL LETTER F]\n\"\\u24D5\" => \"f\"\n\n# ꝼ  [LATIN SMALL LETTER INSULAR F]\n\"\\uA77C\" => \"f\"\n\n# ｆ  [FULLWIDTH LATIN SMALL LETTER F]\n\"\\uFF46\" => \"f\"\n\n# ⒡  [PARENTHESIZED LATIN SMALL LETTER F]\n\"\\u24A1\" => \"(f)\"\n\n# ﬀ  [LATIN SMALL LIGATURE FF]\n\"\\uFB00\" => \"ff\"\n\n# ﬃ  [LATIN SMALL LIGATURE FFI]\n\"\\uFB03\" => \"ffi\"\n\n# ﬄ  [LATIN SMALL LIGATURE FFL]\n\"\\uFB04\" => \"ffl\"\n\n# ﬁ  [LATIN SMALL LIGATURE FI]\n\"\\uFB01\" => \"fi\"\n\n# ﬂ  [LATIN SMALL LIGATURE FL]\n\"\\uFB02\" => \"fl\"\n\n# Ĝ  [LATIN CAPITAL LETTER G WITH CIRCUMFLEX]\n\"\\u011C\" => \"G\"\n\n# Ğ  [LATIN CAPITAL LETTER G WITH BREVE]\n\"\\u011E\" => \"G\"\n\n# Ġ  [LATIN CAPITAL LETTER G WITH DOT ABOVE]\n\"\\u0120\" => \"G\"\n\n# Ģ  [LATIN CAPITAL LETTER G WITH CEDILLA]\n\"\\u0122\" => \"G\"\n\n# Ɠ  [LATIN CAPITAL LETTER G WITH HOOK]\n\"\\u0193\" => \"G\"\n\n# Ǥ  [LATIN CAPITAL LETTER G WITH STROKE]\n\"\\u01E4\" => \"G\"\n\n# ǥ  [LATIN SMALL LETTER G WITH STROKE]\n\"\\u01E5\" => \"G\"\n\n# Ǧ  [LATIN CAPITAL LETTER G WITH CARON]\n\"\\u01E6\" => \"G\"\n\n# ǧ  [LATIN SMALL LETTER G WITH CARON]\n\"\\u01E7\" => \"G\"\n\n# Ǵ  [LATIN CAPITAL LETTER G WITH ACUTE]\n\"\\u01F4\" => \"G\"\n\n# ɢ  [LATIN LETTER SMALL CAPITAL G]\n\"\\u0262\" => \"G\"\n\n# ʛ  [LATIN LETTER SMALL CAPITAL G WITH HOOK]\n\"\\u029B\" => \"G\"\n\n# Ḡ  [LATIN CAPITAL LETTER G WITH MACRON]\n\"\\u1E20\" => \"G\"\n\n# Ⓖ  [CIRCLED LATIN CAPITAL LETTER G]\n\"\\u24BC\" => \"G\"\n\n# Ᵹ  [LATIN CAPITAL LETTER INSULAR G]\n\"\\uA77D\" => \"G\"\n\n# Ꝿ  [LATIN CAPITAL LETTER TURNED INSULAR G]\n\"\\uA77E\" => \"G\"\n\n# Ｇ  [FULLWIDTH LATIN CAPITAL LETTER G]\n\"\\uFF27\" => \"G\"\n\n# ĝ  [LATIN SMALL LETTER G WITH CIRCUMFLEX]\n\"\\u011D\" => \"g\"\n\n# ğ  [LATIN SMALL LETTER G WITH BREVE]\n\"\\u011F\" => \"g\"\n\n# ġ  [LATIN SMALL LETTER G WITH DOT ABOVE]\n\"\\u0121\" => \"g\"\n\n# ģ  [LATIN SMALL LETTER G WITH CEDILLA]\n\"\\u0123\" => \"g\"\n\n# ǵ  [LATIN SMALL LETTER G WITH ACUTE]\n\"\\u01F5\" => \"g\"\n\n# ɠ  [LATIN SMALL LETTER G WITH HOOK]\n\"\\u0260\" => \"g\"\n\n# ɡ  [LATIN SMALL LETTER SCRIPT G]\n\"\\u0261\" => \"g\"\n\n# ᵷ  [LATIN SMALL LETTER TURNED G]\n\"\\u1D77\" => \"g\"\n\n# ᵹ  [LATIN SMALL LETTER INSULAR G]\n\"\\u1D79\" => \"g\"\n\n# ᶃ  [LATIN SMALL LETTER G WITH PALATAL HOOK]\n\"\\u1D83\" => \"g\"\n\n# ḡ  [LATIN SMALL LETTER G WITH MACRON]\n\"\\u1E21\" => \"g\"\n\n# ⓖ  [CIRCLED LATIN SMALL LETTER G]\n\"\\u24D6\" => \"g\"\n\n# ꝿ  [LATIN SMALL LETTER TURNED INSULAR G]\n\"\\uA77F\" => \"g\"\n\n# ｇ  [FULLWIDTH LATIN SMALL LETTER G]\n\"\\uFF47\" => \"g\"\n\n# ⒢  [PARENTHESIZED LATIN SMALL LETTER G]\n\"\\u24A2\" => \"(g)\"\n\n# Ĥ  [LATIN CAPITAL LETTER H WITH CIRCUMFLEX]\n\"\\u0124\" => \"H\"\n\n# Ħ  [LATIN CAPITAL LETTER H WITH STROKE]\n\"\\u0126\" => \"H\"\n\n# Ȟ  [LATIN CAPITAL LETTER H WITH CARON]\n\"\\u021E\" => \"H\"\n\n# ʜ  [LATIN LETTER SMALL CAPITAL H]\n\"\\u029C\" => \"H\"\n\n# Ḣ  [LATIN CAPITAL LETTER H WITH DOT ABOVE]\n\"\\u1E22\" => \"H\"\n\n# Ḥ  [LATIN CAPITAL LETTER H WITH DOT BELOW]\n\"\\u1E24\" => \"H\"\n\n# Ḧ  [LATIN CAPITAL LETTER H WITH DIAERESIS]\n\"\\u1E26\" => \"H\"\n\n# Ḩ  [LATIN CAPITAL LETTER H WITH CEDILLA]\n\"\\u1E28\" => \"H\"\n\n# Ḫ  [LATIN CAPITAL LETTER H WITH BREVE BELOW]\n\"\\u1E2A\" => \"H\"\n\n# Ⓗ  [CIRCLED LATIN CAPITAL LETTER H]\n\"\\u24BD\" => \"H\"\n\n# Ⱨ  [LATIN CAPITAL LETTER H WITH DESCENDER]\n\"\\u2C67\" => \"H\"\n\n# Ⱶ  [LATIN CAPITAL LETTER HALF H]\n\"\\u2C75\" => \"H\"\n\n# Ｈ  [FULLWIDTH LATIN CAPITAL LETTER H]\n\"\\uFF28\" => \"H\"\n\n# ĥ  [LATIN SMALL LETTER H WITH CIRCUMFLEX]\n\"\\u0125\" => \"h\"\n\n# ħ  [LATIN SMALL LETTER H WITH STROKE]\n\"\\u0127\" => \"h\"\n\n# ȟ  [LATIN SMALL LETTER H WITH CARON]\n\"\\u021F\" => \"h\"\n\n# ɥ  [LATIN SMALL LETTER TURNED H]\n\"\\u0265\" => \"h\"\n\n# ɦ  [LATIN SMALL LETTER H WITH HOOK]\n\"\\u0266\" => \"h\"\n\n# ʮ  [LATIN SMALL LETTER TURNED H WITH FISHHOOK]\n\"\\u02AE\" => \"h\"\n\n# ʯ  [LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL]\n\"\\u02AF\" => \"h\"\n\n# ḣ  [LATIN SMALL LETTER H WITH DOT ABOVE]\n\"\\u1E23\" => \"h\"\n\n# ḥ  [LATIN SMALL LETTER H WITH DOT BELOW]\n\"\\u1E25\" => \"h\"\n\n# ḧ  [LATIN SMALL LETTER H WITH DIAERESIS]\n\"\\u1E27\" => \"h\"\n\n# ḩ  [LATIN SMALL LETTER H WITH CEDILLA]\n\"\\u1E29\" => \"h\"\n\n# ḫ  [LATIN SMALL LETTER H WITH BREVE BELOW]\n\"\\u1E2B\" => \"h\"\n\n# ẖ  [LATIN SMALL LETTER H WITH LINE BELOW]\n\"\\u1E96\" => \"h\"\n\n# ⓗ  [CIRCLED LATIN SMALL LETTER H]\n\"\\u24D7\" => \"h\"\n\n# ⱨ  [LATIN SMALL LETTER H WITH DESCENDER]\n\"\\u2C68\" => \"h\"\n\n# ⱶ  [LATIN SMALL LETTER HALF H]\n\"\\u2C76\" => \"h\"\n\n# ｈ  [FULLWIDTH LATIN SMALL LETTER H]\n\"\\uFF48\" => \"h\"\n\n# Ƕ  http://en.wikipedia.org/wiki/Hwair  [LATIN CAPITAL LETTER HWAIR]\n\"\\u01F6\" => \"HV\"\n\n# ⒣  [PARENTHESIZED LATIN SMALL LETTER H]\n\"\\u24A3\" => \"(h)\"\n\n# ƕ  [LATIN SMALL LETTER HV]\n\"\\u0195\" => \"hv\"\n\n# Ì  [LATIN CAPITAL LETTER I WITH GRAVE]\n\"\\u00CC\" => \"I\"\n\n# Í  [LATIN CAPITAL LETTER I WITH ACUTE]\n\"\\u00CD\" => \"I\"\n\n# Î  [LATIN CAPITAL LETTER I WITH CIRCUMFLEX]\n\"\\u00CE\" => \"I\"\n\n# Ï  [LATIN CAPITAL LETTER I WITH DIAERESIS]\n\"\\u00CF\" => \"I\"\n\n# Ĩ  [LATIN CAPITAL LETTER I WITH TILDE]\n\"\\u0128\" => \"I\"\n\n# Ī  [LATIN CAPITAL LETTER I WITH MACRON]\n\"\\u012A\" => \"I\"\n\n# Ĭ  [LATIN CAPITAL LETTER I WITH BREVE]\n\"\\u012C\" => \"I\"\n\n# Į  [LATIN CAPITAL LETTER I WITH OGONEK]\n\"\\u012E\" => \"I\"\n\n# İ  [LATIN CAPITAL LETTER I WITH DOT ABOVE]\n\"\\u0130\" => \"I\"\n\n# Ɩ  [LATIN CAPITAL LETTER IOTA]\n\"\\u0196\" => \"I\"\n\n# Ɨ  [LATIN CAPITAL LETTER I WITH STROKE]\n\"\\u0197\" => \"I\"\n\n# Ǐ  [LATIN CAPITAL LETTER I WITH CARON]\n\"\\u01CF\" => \"I\"\n\n# Ȉ  [LATIN CAPITAL LETTER I WITH DOUBLE GRAVE]\n\"\\u0208\" => \"I\"\n\n# Ȋ  [LATIN CAPITAL LETTER I WITH INVERTED BREVE]\n\"\\u020A\" => \"I\"\n\n# ɪ  [LATIN LETTER SMALL CAPITAL I]\n\"\\u026A\" => \"I\"\n\n# ᵻ  [LATIN SMALL CAPITAL LETTER I WITH STROKE]\n\"\\u1D7B\" => \"I\"\n\n# Ḭ  [LATIN CAPITAL LETTER I WITH TILDE BELOW]\n\"\\u1E2C\" => \"I\"\n\n# Ḯ  [LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE]\n\"\\u1E2E\" => \"I\"\n\n# Ỉ  [LATIN CAPITAL LETTER I WITH HOOK ABOVE]\n\"\\u1EC8\" => \"I\"\n\n# Ị  [LATIN CAPITAL LETTER I WITH DOT BELOW]\n\"\\u1ECA\" => \"I\"\n\n# Ⓘ  [CIRCLED LATIN CAPITAL LETTER I]\n\"\\u24BE\" => \"I\"\n\n# ꟾ  [LATIN EPIGRAPHIC LETTER I LONGA]\n\"\\uA7FE\" => \"I\"\n\n# Ｉ  [FULLWIDTH LATIN CAPITAL LETTER I]\n\"\\uFF29\" => \"I\"\n\n# ì  [LATIN SMALL LETTER I WITH GRAVE]\n\"\\u00EC\" => \"i\"\n\n# í  [LATIN SMALL LETTER I WITH ACUTE]\n\"\\u00ED\" => \"i\"\n\n# î  [LATIN SMALL LETTER I WITH CIRCUMFLEX]\n\"\\u00EE\" => \"i\"\n\n# ï  [LATIN SMALL LETTER I WITH DIAERESIS]\n\"\\u00EF\" => \"i\"\n\n# ĩ  [LATIN SMALL LETTER I WITH TILDE]\n\"\\u0129\" => \"i\"\n\n# ī  [LATIN SMALL LETTER I WITH MACRON]\n\"\\u012B\" => \"i\"\n\n# ĭ  [LATIN SMALL LETTER I WITH BREVE]\n\"\\u012D\" => \"i\"\n\n# į  [LATIN SMALL LETTER I WITH OGONEK]\n\"\\u012F\" => \"i\"\n\n# ı  [LATIN SMALL LETTER DOTLESS I]\n\"\\u0131\" => \"i\"\n\n# ǐ  [LATIN SMALL LETTER I WITH CARON]\n\"\\u01D0\" => \"i\"\n\n# ȉ  [LATIN SMALL LETTER I WITH DOUBLE GRAVE]\n\"\\u0209\" => \"i\"\n\n# ȋ  [LATIN SMALL LETTER I WITH INVERTED BREVE]\n\"\\u020B\" => \"i\"\n\n# ɨ  [LATIN SMALL LETTER I WITH STROKE]\n\"\\u0268\" => \"i\"\n\n# ᴉ  [LATIN SMALL LETTER TURNED I]\n\"\\u1D09\" => \"i\"\n\n# ᵢ  [LATIN SUBSCRIPT SMALL LETTER I]\n\"\\u1D62\" => \"i\"\n\n# ᵼ  [LATIN SMALL LETTER IOTA WITH STROKE]\n\"\\u1D7C\" => \"i\"\n\n# ᶖ  [LATIN SMALL LETTER I WITH RETROFLEX HOOK]\n\"\\u1D96\" => \"i\"\n\n# ḭ  [LATIN SMALL LETTER I WITH TILDE BELOW]\n\"\\u1E2D\" => \"i\"\n\n# ḯ  [LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE]\n\"\\u1E2F\" => \"i\"\n\n# ỉ  [LATIN SMALL LETTER I WITH HOOK ABOVE]\n\"\\u1EC9\" => \"i\"\n\n# ị  [LATIN SMALL LETTER I WITH DOT BELOW]\n\"\\u1ECB\" => \"i\"\n\n# ⁱ  [SUPERSCRIPT LATIN SMALL LETTER I]\n\"\\u2071\" => \"i\"\n\n# ⓘ  [CIRCLED LATIN SMALL LETTER I]\n\"\\u24D8\" => \"i\"\n\n# ｉ  [FULLWIDTH LATIN SMALL LETTER I]\n\"\\uFF49\" => \"i\"\n\n# Ĳ  [LATIN CAPITAL LIGATURE IJ]\n\"\\u0132\" => \"IJ\"\n\n# ⒤  [PARENTHESIZED LATIN SMALL LETTER I]\n\"\\u24A4\" => \"(i)\"\n\n# ĳ  [LATIN SMALL LIGATURE IJ]\n\"\\u0133\" => \"ij\"\n\n# Ĵ  [LATIN CAPITAL LETTER J WITH CIRCUMFLEX]\n\"\\u0134\" => \"J\"\n\n# Ɉ  [LATIN CAPITAL LETTER J WITH STROKE]\n\"\\u0248\" => \"J\"\n\n# ᴊ  [LATIN LETTER SMALL CAPITAL J]\n\"\\u1D0A\" => \"J\"\n\n# Ⓙ  [CIRCLED LATIN CAPITAL LETTER J]\n\"\\u24BF\" => \"J\"\n\n# Ｊ  [FULLWIDTH LATIN CAPITAL LETTER J]\n\"\\uFF2A\" => \"J\"\n\n# ĵ  [LATIN SMALL LETTER J WITH CIRCUMFLEX]\n\"\\u0135\" => \"j\"\n\n# ǰ  [LATIN SMALL LETTER J WITH CARON]\n\"\\u01F0\" => \"j\"\n\n# ȷ  [LATIN SMALL LETTER DOTLESS J]\n\"\\u0237\" => \"j\"\n\n# ɉ  [LATIN SMALL LETTER J WITH STROKE]\n\"\\u0249\" => \"j\"\n\n# ɟ  [LATIN SMALL LETTER DOTLESS J WITH STROKE]\n\"\\u025F\" => \"j\"\n\n# ʄ  [LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK]\n\"\\u0284\" => \"j\"\n\n# ʝ  [LATIN SMALL LETTER J WITH CROSSED-TAIL]\n\"\\u029D\" => \"j\"\n\n# ⓙ  [CIRCLED LATIN SMALL LETTER J]\n\"\\u24D9\" => \"j\"\n\n# ⱼ  [LATIN SUBSCRIPT SMALL LETTER J]\n\"\\u2C7C\" => \"j\"\n\n# ｊ  [FULLWIDTH LATIN SMALL LETTER J]\n\"\\uFF4A\" => \"j\"\n\n# ⒥  [PARENTHESIZED LATIN SMALL LETTER J]\n\"\\u24A5\" => \"(j)\"\n\n# Ķ  [LATIN CAPITAL LETTER K WITH CEDILLA]\n\"\\u0136\" => \"K\"\n\n# Ƙ  [LATIN CAPITAL LETTER K WITH HOOK]\n\"\\u0198\" => \"K\"\n\n# Ǩ  [LATIN CAPITAL LETTER K WITH CARON]\n\"\\u01E8\" => \"K\"\n\n# ᴋ  [LATIN LETTER SMALL CAPITAL K]\n\"\\u1D0B\" => \"K\"\n\n# Ḱ  [LATIN CAPITAL LETTER K WITH ACUTE]\n\"\\u1E30\" => \"K\"\n\n# Ḳ  [LATIN CAPITAL LETTER K WITH DOT BELOW]\n\"\\u1E32\" => \"K\"\n\n# Ḵ  [LATIN CAPITAL LETTER K WITH LINE BELOW]\n\"\\u1E34\" => \"K\"\n\n# Ⓚ  [CIRCLED LATIN CAPITAL LETTER K]\n\"\\u24C0\" => \"K\"\n\n# Ⱪ  [LATIN CAPITAL LETTER K WITH DESCENDER]\n\"\\u2C69\" => \"K\"\n\n# Ꝁ  [LATIN CAPITAL LETTER K WITH STROKE]\n\"\\uA740\" => \"K\"\n\n# Ꝃ  [LATIN CAPITAL LETTER K WITH DIAGONAL STROKE]\n\"\\uA742\" => \"K\"\n\n# Ꝅ  [LATIN CAPITAL LETTER K WITH STROKE AND DIAGONAL STROKE]\n\"\\uA744\" => \"K\"\n\n# Ｋ  [FULLWIDTH LATIN CAPITAL LETTER K]\n\"\\uFF2B\" => \"K\"\n\n# ķ  [LATIN SMALL LETTER K WITH CEDILLA]\n\"\\u0137\" => \"k\"\n\n# ƙ  [LATIN SMALL LETTER K WITH HOOK]\n\"\\u0199\" => \"k\"\n\n# ǩ  [LATIN SMALL LETTER K WITH CARON]\n\"\\u01E9\" => \"k\"\n\n# ʞ  [LATIN SMALL LETTER TURNED K]\n\"\\u029E\" => \"k\"\n\n# ᶄ  [LATIN SMALL LETTER K WITH PALATAL HOOK]\n\"\\u1D84\" => \"k\"\n\n# ḱ  [LATIN SMALL LETTER K WITH ACUTE]\n\"\\u1E31\" => \"k\"\n\n# ḳ  [LATIN SMALL LETTER K WITH DOT BELOW]\n\"\\u1E33\" => \"k\"\n\n# ḵ  [LATIN SMALL LETTER K WITH LINE BELOW]\n\"\\u1E35\" => \"k\"\n\n# ⓚ  [CIRCLED LATIN SMALL LETTER K]\n\"\\u24DA\" => \"k\"\n\n# ⱪ  [LATIN SMALL LETTER K WITH DESCENDER]\n\"\\u2C6A\" => \"k\"\n\n# ꝁ  [LATIN SMALL LETTER K WITH STROKE]\n\"\\uA741\" => \"k\"\n\n# ꝃ  [LATIN SMALL LETTER K WITH DIAGONAL STROKE]\n\"\\uA743\" => \"k\"\n\n# ꝅ  [LATIN SMALL LETTER K WITH STROKE AND DIAGONAL STROKE]\n\"\\uA745\" => \"k\"\n\n# ｋ  [FULLWIDTH LATIN SMALL LETTER K]\n\"\\uFF4B\" => \"k\"\n\n# ⒦  [PARENTHESIZED LATIN SMALL LETTER K]\n\"\\u24A6\" => \"(k)\"\n\n# Ĺ  [LATIN CAPITAL LETTER L WITH ACUTE]\n\"\\u0139\" => \"L\"\n\n# Ļ  [LATIN CAPITAL LETTER L WITH CEDILLA]\n\"\\u013B\" => \"L\"\n\n# Ľ  [LATIN CAPITAL LETTER L WITH CARON]\n\"\\u013D\" => \"L\"\n\n# Ŀ  [LATIN CAPITAL LETTER L WITH MIDDLE DOT]\n\"\\u013F\" => \"L\"\n\n# Ł  [LATIN CAPITAL LETTER L WITH STROKE]\n\"\\u0141\" => \"L\"\n\n# Ƚ  [LATIN CAPITAL LETTER L WITH BAR]\n\"\\u023D\" => \"L\"\n\n# ʟ  [LATIN LETTER SMALL CAPITAL L]\n\"\\u029F\" => \"L\"\n\n# ᴌ  [LATIN LETTER SMALL CAPITAL L WITH STROKE]\n\"\\u1D0C\" => \"L\"\n\n# Ḷ  [LATIN CAPITAL LETTER L WITH DOT BELOW]\n\"\\u1E36\" => \"L\"\n\n# Ḹ  [LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON]\n\"\\u1E38\" => \"L\"\n\n# Ḻ  [LATIN CAPITAL LETTER L WITH LINE BELOW]\n\"\\u1E3A\" => \"L\"\n\n# Ḽ  [LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW]\n\"\\u1E3C\" => \"L\"\n\n# Ⓛ  [CIRCLED LATIN CAPITAL LETTER L]\n\"\\u24C1\" => \"L\"\n\n# Ⱡ  [LATIN CAPITAL LETTER L WITH DOUBLE BAR]\n\"\\u2C60\" => \"L\"\n\n# Ɫ  [LATIN CAPITAL LETTER L WITH MIDDLE TILDE]\n\"\\u2C62\" => \"L\"\n\n# Ꝇ  [LATIN CAPITAL LETTER BROKEN L]\n\"\\uA746\" => \"L\"\n\n# Ꝉ  [LATIN CAPITAL LETTER L WITH HIGH STROKE]\n\"\\uA748\" => \"L\"\n\n# Ꞁ  [LATIN CAPITAL LETTER TURNED L]\n\"\\uA780\" => \"L\"\n\n# Ｌ  [FULLWIDTH LATIN CAPITAL LETTER L]\n\"\\uFF2C\" => \"L\"\n\n# ĺ  [LATIN SMALL LETTER L WITH ACUTE]\n\"\\u013A\" => \"l\"\n\n# ļ  [LATIN SMALL LETTER L WITH CEDILLA]\n\"\\u013C\" => \"l\"\n\n# ľ  [LATIN SMALL LETTER L WITH CARON]\n\"\\u013E\" => \"l\"\n\n# ŀ  [LATIN SMALL LETTER L WITH MIDDLE DOT]\n\"\\u0140\" => \"l\"\n\n# ł  [LATIN SMALL LETTER L WITH STROKE]\n\"\\u0142\" => \"l\"\n\n# ƚ  [LATIN SMALL LETTER L WITH BAR]\n\"\\u019A\" => \"l\"\n\n# ȴ  [LATIN SMALL LETTER L WITH CURL]\n\"\\u0234\" => \"l\"\n\n# ɫ  [LATIN SMALL LETTER L WITH MIDDLE TILDE]\n\"\\u026B\" => \"l\"\n\n# ɬ  [LATIN SMALL LETTER L WITH BELT]\n\"\\u026C\" => \"l\"\n\n# ɭ  [LATIN SMALL LETTER L WITH RETROFLEX HOOK]\n\"\\u026D\" => \"l\"\n\n# ᶅ  [LATIN SMALL LETTER L WITH PALATAL HOOK]\n\"\\u1D85\" => \"l\"\n\n# ḷ  [LATIN SMALL LETTER L WITH DOT BELOW]\n\"\\u1E37\" => \"l\"\n\n# ḹ  [LATIN SMALL LETTER L WITH DOT BELOW AND MACRON]\n\"\\u1E39\" => \"l\"\n\n# ḻ  [LATIN SMALL LETTER L WITH LINE BELOW]\n\"\\u1E3B\" => \"l\"\n\n# ḽ  [LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW]\n\"\\u1E3D\" => \"l\"\n\n# ⓛ  [CIRCLED LATIN SMALL LETTER L]\n\"\\u24DB\" => \"l\"\n\n# ⱡ  [LATIN SMALL LETTER L WITH DOUBLE BAR]\n\"\\u2C61\" => \"l\"\n\n# ꝇ  [LATIN SMALL LETTER BROKEN L]\n\"\\uA747\" => \"l\"\n\n# ꝉ  [LATIN SMALL LETTER L WITH HIGH STROKE]\n\"\\uA749\" => \"l\"\n\n# ꞁ  [LATIN SMALL LETTER TURNED L]\n\"\\uA781\" => \"l\"\n\n# ｌ  [FULLWIDTH LATIN SMALL LETTER L]\n\"\\uFF4C\" => \"l\"\n\n# Ǉ  [LATIN CAPITAL LETTER LJ]\n\"\\u01C7\" => \"LJ\"\n\n# Ỻ  [LATIN CAPITAL LETTER MIDDLE-WELSH LL]\n\"\\u1EFA\" => \"LL\"\n\n# ǈ  [LATIN CAPITAL LETTER L WITH SMALL LETTER J]\n\"\\u01C8\" => \"Lj\"\n\n# ⒧  [PARENTHESIZED LATIN SMALL LETTER L]\n\"\\u24A7\" => \"(l)\"\n\n# ǉ  [LATIN SMALL LETTER LJ]\n\"\\u01C9\" => \"lj\"\n\n# ỻ  [LATIN SMALL LETTER MIDDLE-WELSH LL]\n\"\\u1EFB\" => \"ll\"\n\n# ʪ  [LATIN SMALL LETTER LS DIGRAPH]\n\"\\u02AA\" => \"ls\"\n\n# ʫ  [LATIN SMALL LETTER LZ DIGRAPH]\n\"\\u02AB\" => \"lz\"\n\n# Ɯ  [LATIN CAPITAL LETTER TURNED M]\n\"\\u019C\" => \"M\"\n\n# ᴍ  [LATIN LETTER SMALL CAPITAL M]\n\"\\u1D0D\" => \"M\"\n\n# Ḿ  [LATIN CAPITAL LETTER M WITH ACUTE]\n\"\\u1E3E\" => \"M\"\n\n# Ṁ  [LATIN CAPITAL LETTER M WITH DOT ABOVE]\n\"\\u1E40\" => \"M\"\n\n# Ṃ  [LATIN CAPITAL LETTER M WITH DOT BELOW]\n\"\\u1E42\" => \"M\"\n\n# Ⓜ  [CIRCLED LATIN CAPITAL LETTER M]\n\"\\u24C2\" => \"M\"\n\n# Ɱ  [LATIN CAPITAL LETTER M WITH HOOK]\n\"\\u2C6E\" => \"M\"\n\n# ꟽ  [LATIN EPIGRAPHIC LETTER INVERTED M]\n\"\\uA7FD\" => \"M\"\n\n# ꟿ  [LATIN EPIGRAPHIC LETTER ARCHAIC M]\n\"\\uA7FF\" => \"M\"\n\n# Ｍ  [FULLWIDTH LATIN CAPITAL LETTER M]\n\"\\uFF2D\" => \"M\"\n\n# ɯ  [LATIN SMALL LETTER TURNED M]\n\"\\u026F\" => \"m\"\n\n# ɰ  [LATIN SMALL LETTER TURNED M WITH LONG LEG]\n\"\\u0270\" => \"m\"\n\n# ɱ  [LATIN SMALL LETTER M WITH HOOK]\n\"\\u0271\" => \"m\"\n\n# ᵯ  [LATIN SMALL LETTER M WITH MIDDLE TILDE]\n\"\\u1D6F\" => \"m\"\n\n# ᶆ  [LATIN SMALL LETTER M WITH PALATAL HOOK]\n\"\\u1D86\" => \"m\"\n\n# ḿ  [LATIN SMALL LETTER M WITH ACUTE]\n\"\\u1E3F\" => \"m\"\n\n# ṁ  [LATIN SMALL LETTER M WITH DOT ABOVE]\n\"\\u1E41\" => \"m\"\n\n# ṃ  [LATIN SMALL LETTER M WITH DOT BELOW]\n\"\\u1E43\" => \"m\"\n\n# ⓜ  [CIRCLED LATIN SMALL LETTER M]\n\"\\u24DC\" => \"m\"\n\n# ｍ  [FULLWIDTH LATIN SMALL LETTER M]\n\"\\uFF4D\" => \"m\"\n\n# ⒨  [PARENTHESIZED LATIN SMALL LETTER M]\n\"\\u24A8\" => \"(m)\"\n\n# Ñ  [LATIN CAPITAL LETTER N WITH TILDE]\n\"\\u00D1\" => \"N\"\n\n# Ń  [LATIN CAPITAL LETTER N WITH ACUTE]\n\"\\u0143\" => \"N\"\n\n# Ņ  [LATIN CAPITAL LETTER N WITH CEDILLA]\n\"\\u0145\" => \"N\"\n\n# Ň  [LATIN CAPITAL LETTER N WITH CARON]\n\"\\u0147\" => \"N\"\n\n# Ŋ  http://en.wikipedia.org/wiki/Eng_(letter)  [LATIN CAPITAL LETTER ENG]\n\"\\u014A\" => \"N\"\n\n# Ɲ  [LATIN CAPITAL LETTER N WITH LEFT HOOK]\n\"\\u019D\" => \"N\"\n\n# Ǹ  [LATIN CAPITAL LETTER N WITH GRAVE]\n\"\\u01F8\" => \"N\"\n\n# Ƞ  [LATIN CAPITAL LETTER N WITH LONG RIGHT LEG]\n\"\\u0220\" => \"N\"\n\n# ɴ  [LATIN LETTER SMALL CAPITAL N]\n\"\\u0274\" => \"N\"\n\n# ᴎ  [LATIN LETTER SMALL CAPITAL REVERSED N]\n\"\\u1D0E\" => \"N\"\n\n# Ṅ  [LATIN CAPITAL LETTER N WITH DOT ABOVE]\n\"\\u1E44\" => \"N\"\n\n# Ṇ  [LATIN CAPITAL LETTER N WITH DOT BELOW]\n\"\\u1E46\" => \"N\"\n\n# Ṉ  [LATIN CAPITAL LETTER N WITH LINE BELOW]\n\"\\u1E48\" => \"N\"\n\n# Ṋ  [LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW]\n\"\\u1E4A\" => \"N\"\n\n# Ⓝ  [CIRCLED LATIN CAPITAL LETTER N]\n\"\\u24C3\" => \"N\"\n\n# Ｎ  [FULLWIDTH LATIN CAPITAL LETTER N]\n\"\\uFF2E\" => \"N\"\n\n# ñ  [LATIN SMALL LETTER N WITH TILDE]\n\"\\u00F1\" => \"n\"\n\n# ń  [LATIN SMALL LETTER N WITH ACUTE]\n\"\\u0144\" => \"n\"\n\n# ņ  [LATIN SMALL LETTER N WITH CEDILLA]\n\"\\u0146\" => \"n\"\n\n# ň  [LATIN SMALL LETTER N WITH CARON]\n\"\\u0148\" => \"n\"\n\n# ŉ  [LATIN SMALL LETTER N PRECEDED BY APOSTROPHE]\n\"\\u0149\" => \"n\"\n\n# ŋ  http://en.wikipedia.org/wiki/Eng_(letter)  [LATIN SMALL LETTER ENG]\n\"\\u014B\" => \"n\"\n\n# ƞ  [LATIN SMALL LETTER N WITH LONG RIGHT LEG]\n\"\\u019E\" => \"n\"\n\n# ǹ  [LATIN SMALL LETTER N WITH GRAVE]\n\"\\u01F9\" => \"n\"\n\n# ȵ  [LATIN SMALL LETTER N WITH CURL]\n\"\\u0235\" => \"n\"\n\n# ɲ  [LATIN SMALL LETTER N WITH LEFT HOOK]\n\"\\u0272\" => \"n\"\n\n# ɳ  [LATIN SMALL LETTER N WITH RETROFLEX HOOK]\n\"\\u0273\" => \"n\"\n\n# ᵰ  [LATIN SMALL LETTER N WITH MIDDLE TILDE]\n\"\\u1D70\" => \"n\"\n\n# ᶇ  [LATIN SMALL LETTER N WITH PALATAL HOOK]\n\"\\u1D87\" => \"n\"\n\n# ṅ  [LATIN SMALL LETTER N WITH DOT ABOVE]\n\"\\u1E45\" => \"n\"\n\n# ṇ  [LATIN SMALL LETTER N WITH DOT BELOW]\n\"\\u1E47\" => \"n\"\n\n# ṉ  [LATIN SMALL LETTER N WITH LINE BELOW]\n\"\\u1E49\" => \"n\"\n\n# ṋ  [LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW]\n\"\\u1E4B\" => \"n\"\n\n# ⁿ  [SUPERSCRIPT LATIN SMALL LETTER N]\n\"\\u207F\" => \"n\"\n\n# ⓝ  [CIRCLED LATIN SMALL LETTER N]\n\"\\u24DD\" => \"n\"\n\n# ｎ  [FULLWIDTH LATIN SMALL LETTER N]\n\"\\uFF4E\" => \"n\"\n\n# Ǌ  [LATIN CAPITAL LETTER NJ]\n\"\\u01CA\" => \"NJ\"\n\n# ǋ  [LATIN CAPITAL LETTER N WITH SMALL LETTER J]\n\"\\u01CB\" => \"Nj\"\n\n# ⒩  [PARENTHESIZED LATIN SMALL LETTER N]\n\"\\u24A9\" => \"(n)\"\n\n# ǌ  [LATIN SMALL LETTER NJ]\n\"\\u01CC\" => \"nj\"\n\n# Ò  [LATIN CAPITAL LETTER O WITH GRAVE]\n\"\\u00D2\" => \"O\"\n\n# Ó  [LATIN CAPITAL LETTER O WITH ACUTE]\n\"\\u00D3\" => \"O\"\n\n# Ô  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX]\n\"\\u00D4\" => \"O\"\n\n# Õ  [LATIN CAPITAL LETTER O WITH TILDE]\n\"\\u00D5\" => \"O\"\n\n# Ö  [LATIN CAPITAL LETTER O WITH DIAERESIS]\n\"\\u00D6\" => \"O\"\n\n# Ø  [LATIN CAPITAL LETTER O WITH STROKE]\n\"\\u00D8\" => \"O\"\n\n# Ō  [LATIN CAPITAL LETTER O WITH MACRON]\n\"\\u014C\" => \"O\"\n\n# Ŏ  [LATIN CAPITAL LETTER O WITH BREVE]\n\"\\u014E\" => \"O\"\n\n# Ő  [LATIN CAPITAL LETTER O WITH DOUBLE ACUTE]\n\"\\u0150\" => \"O\"\n\n# Ɔ  [LATIN CAPITAL LETTER OPEN O]\n\"\\u0186\" => \"O\"\n\n# Ɵ  [LATIN CAPITAL LETTER O WITH MIDDLE TILDE]\n\"\\u019F\" => \"O\"\n\n# Ơ  [LATIN CAPITAL LETTER O WITH HORN]\n\"\\u01A0\" => \"O\"\n\n# Ǒ  [LATIN CAPITAL LETTER O WITH CARON]\n\"\\u01D1\" => \"O\"\n\n# Ǫ  [LATIN CAPITAL LETTER O WITH OGONEK]\n\"\\u01EA\" => \"O\"\n\n# Ǭ  [LATIN CAPITAL LETTER O WITH OGONEK AND MACRON]\n\"\\u01EC\" => \"O\"\n\n# Ǿ  [LATIN CAPITAL LETTER O WITH STROKE AND ACUTE]\n\"\\u01FE\" => \"O\"\n\n# Ȍ  [LATIN CAPITAL LETTER O WITH DOUBLE GRAVE]\n\"\\u020C\" => \"O\"\n\n# Ȏ  [LATIN CAPITAL LETTER O WITH INVERTED BREVE]\n\"\\u020E\" => \"O\"\n\n# Ȫ  [LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON]\n\"\\u022A\" => \"O\"\n\n# Ȭ  [LATIN CAPITAL LETTER O WITH TILDE AND MACRON]\n\"\\u022C\" => \"O\"\n\n# Ȯ  [LATIN CAPITAL LETTER O WITH DOT ABOVE]\n\"\\u022E\" => \"O\"\n\n# Ȱ  [LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON]\n\"\\u0230\" => \"O\"\n\n# ᴏ  [LATIN LETTER SMALL CAPITAL O]\n\"\\u1D0F\" => \"O\"\n\n# ᴐ  [LATIN LETTER SMALL CAPITAL OPEN O]\n\"\\u1D10\" => \"O\"\n\n# Ṍ  [LATIN CAPITAL LETTER O WITH TILDE AND ACUTE]\n\"\\u1E4C\" => \"O\"\n\n# Ṏ  [LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS]\n\"\\u1E4E\" => \"O\"\n\n# Ṑ  [LATIN CAPITAL LETTER O WITH MACRON AND GRAVE]\n\"\\u1E50\" => \"O\"\n\n# Ṓ  [LATIN CAPITAL LETTER O WITH MACRON AND ACUTE]\n\"\\u1E52\" => \"O\"\n\n# Ọ  [LATIN CAPITAL LETTER O WITH DOT BELOW]\n\"\\u1ECC\" => \"O\"\n\n# Ỏ  [LATIN CAPITAL LETTER O WITH HOOK ABOVE]\n\"\\u1ECE\" => \"O\"\n\n# Ố  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE]\n\"\\u1ED0\" => \"O\"\n\n# Ồ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE]\n\"\\u1ED2\" => \"O\"\n\n# Ổ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1ED4\" => \"O\"\n\n# Ỗ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE]\n\"\\u1ED6\" => \"O\"\n\n# Ộ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1ED8\" => \"O\"\n\n# Ớ  [LATIN CAPITAL LETTER O WITH HORN AND ACUTE]\n\"\\u1EDA\" => \"O\"\n\n# Ờ  [LATIN CAPITAL LETTER O WITH HORN AND GRAVE]\n\"\\u1EDC\" => \"O\"\n\n# Ở  [LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE]\n\"\\u1EDE\" => \"O\"\n\n# Ỡ  [LATIN CAPITAL LETTER O WITH HORN AND TILDE]\n\"\\u1EE0\" => \"O\"\n\n# Ợ  [LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW]\n\"\\u1EE2\" => \"O\"\n\n# Ⓞ  [CIRCLED LATIN CAPITAL LETTER O]\n\"\\u24C4\" => \"O\"\n\n# Ꝋ  [LATIN CAPITAL LETTER O WITH LONG STROKE OVERLAY]\n\"\\uA74A\" => \"O\"\n\n# Ꝍ  [LATIN CAPITAL LETTER O WITH LOOP]\n\"\\uA74C\" => \"O\"\n\n# Ｏ  [FULLWIDTH LATIN CAPITAL LETTER O]\n\"\\uFF2F\" => \"O\"\n\n# ò  [LATIN SMALL LETTER O WITH GRAVE]\n\"\\u00F2\" => \"o\"\n\n# ó  [LATIN SMALL LETTER O WITH ACUTE]\n\"\\u00F3\" => \"o\"\n\n# ô  [LATIN SMALL LETTER O WITH CIRCUMFLEX]\n\"\\u00F4\" => \"o\"\n\n# õ  [LATIN SMALL LETTER O WITH TILDE]\n\"\\u00F5\" => \"o\"\n\n# ö  [LATIN SMALL LETTER O WITH DIAERESIS]\n\"\\u00F6\" => \"o\"\n\n# ø  [LATIN SMALL LETTER O WITH STROKE]\n\"\\u00F8\" => \"o\"\n\n# ō  [LATIN SMALL LETTER O WITH MACRON]\n\"\\u014D\" => \"o\"\n\n# ŏ  [LATIN SMALL LETTER O WITH BREVE]\n\"\\u014F\" => \"o\"\n\n# ő  [LATIN SMALL LETTER O WITH DOUBLE ACUTE]\n\"\\u0151\" => \"o\"\n\n# ơ  [LATIN SMALL LETTER O WITH HORN]\n\"\\u01A1\" => \"o\"\n\n# ǒ  [LATIN SMALL LETTER O WITH CARON]\n\"\\u01D2\" => \"o\"\n\n# ǫ  [LATIN SMALL LETTER O WITH OGONEK]\n\"\\u01EB\" => \"o\"\n\n# ǭ  [LATIN SMALL LETTER O WITH OGONEK AND MACRON]\n\"\\u01ED\" => \"o\"\n\n# ǿ  [LATIN SMALL LETTER O WITH STROKE AND ACUTE]\n\"\\u01FF\" => \"o\"\n\n# ȍ  [LATIN SMALL LETTER O WITH DOUBLE GRAVE]\n\"\\u020D\" => \"o\"\n\n# ȏ  [LATIN SMALL LETTER O WITH INVERTED BREVE]\n\"\\u020F\" => \"o\"\n\n# ȫ  [LATIN SMALL LETTER O WITH DIAERESIS AND MACRON]\n\"\\u022B\" => \"o\"\n\n# ȭ  [LATIN SMALL LETTER O WITH TILDE AND MACRON]\n\"\\u022D\" => \"o\"\n\n# ȯ  [LATIN SMALL LETTER O WITH DOT ABOVE]\n\"\\u022F\" => \"o\"\n\n# ȱ  [LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON]\n\"\\u0231\" => \"o\"\n\n# ɔ  [LATIN SMALL LETTER OPEN O]\n\"\\u0254\" => \"o\"\n\n# ɵ  [LATIN SMALL LETTER BARRED O]\n\"\\u0275\" => \"o\"\n\n# ᴖ  [LATIN SMALL LETTER TOP HALF O]\n\"\\u1D16\" => \"o\"\n\n# ᴗ  [LATIN SMALL LETTER BOTTOM HALF O]\n\"\\u1D17\" => \"o\"\n\n# ᶗ  [LATIN SMALL LETTER OPEN O WITH RETROFLEX HOOK]\n\"\\u1D97\" => \"o\"\n\n# ṍ  [LATIN SMALL LETTER O WITH TILDE AND ACUTE]\n\"\\u1E4D\" => \"o\"\n\n# ṏ  [LATIN SMALL LETTER O WITH TILDE AND DIAERESIS]\n\"\\u1E4F\" => \"o\"\n\n# ṑ  [LATIN SMALL LETTER O WITH MACRON AND GRAVE]\n\"\\u1E51\" => \"o\"\n\n# ṓ  [LATIN SMALL LETTER O WITH MACRON AND ACUTE]\n\"\\u1E53\" => \"o\"\n\n# ọ  [LATIN SMALL LETTER O WITH DOT BELOW]\n\"\\u1ECD\" => \"o\"\n\n# ỏ  [LATIN SMALL LETTER O WITH HOOK ABOVE]\n\"\\u1ECF\" => \"o\"\n\n# ố  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE]\n\"\\u1ED1\" => \"o\"\n\n# ồ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE]\n\"\\u1ED3\" => \"o\"\n\n# ổ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1ED5\" => \"o\"\n\n# ỗ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE]\n\"\\u1ED7\" => \"o\"\n\n# ộ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1ED9\" => \"o\"\n\n# ớ  [LATIN SMALL LETTER O WITH HORN AND ACUTE]\n\"\\u1EDB\" => \"o\"\n\n# ờ  [LATIN SMALL LETTER O WITH HORN AND GRAVE]\n\"\\u1EDD\" => \"o\"\n\n# ở  [LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE]\n\"\\u1EDF\" => \"o\"\n\n# ỡ  [LATIN SMALL LETTER O WITH HORN AND TILDE]\n\"\\u1EE1\" => \"o\"\n\n# ợ  [LATIN SMALL LETTER O WITH HORN AND DOT BELOW]\n\"\\u1EE3\" => \"o\"\n\n# ₒ  [LATIN SUBSCRIPT SMALL LETTER O]\n\"\\u2092\" => \"o\"\n\n# ⓞ  [CIRCLED LATIN SMALL LETTER O]\n\"\\u24DE\" => \"o\"\n\n# ⱺ  [LATIN SMALL LETTER O WITH LOW RING INSIDE]\n\"\\u2C7A\" => \"o\"\n\n# ꝋ  [LATIN SMALL LETTER O WITH LONG STROKE OVERLAY]\n\"\\uA74B\" => \"o\"\n\n# ꝍ  [LATIN SMALL LETTER O WITH LOOP]\n\"\\uA74D\" => \"o\"\n\n# ｏ  [FULLWIDTH LATIN SMALL LETTER O]\n\"\\uFF4F\" => \"o\"\n\n# Œ  [LATIN CAPITAL LIGATURE OE]\n\"\\u0152\" => \"OE\"\n\n# ɶ  [LATIN LETTER SMALL CAPITAL OE]\n\"\\u0276\" => \"OE\"\n\n# Ꝏ  [LATIN CAPITAL LETTER OO]\n\"\\uA74E\" => \"OO\"\n\n# Ȣ  http://en.wikipedia.org/wiki/OU  [LATIN CAPITAL LETTER OU]\n\"\\u0222\" => \"OU\"\n\n# ᴕ  [LATIN LETTER SMALL CAPITAL OU]\n\"\\u1D15\" => \"OU\"\n\n# ⒪  [PARENTHESIZED LATIN SMALL LETTER O]\n\"\\u24AA\" => \"(o)\"\n\n# œ  [LATIN SMALL LIGATURE OE]\n\"\\u0153\" => \"oe\"\n\n# ᴔ  [LATIN SMALL LETTER TURNED OE]\n\"\\u1D14\" => \"oe\"\n\n# ꝏ  [LATIN SMALL LETTER OO]\n\"\\uA74F\" => \"oo\"\n\n# ȣ  http://en.wikipedia.org/wiki/OU  [LATIN SMALL LETTER OU]\n\"\\u0223\" => \"ou\"\n\n# Ƥ  [LATIN CAPITAL LETTER P WITH HOOK]\n\"\\u01A4\" => \"P\"\n\n# ᴘ  [LATIN LETTER SMALL CAPITAL P]\n\"\\u1D18\" => \"P\"\n\n# Ṕ  [LATIN CAPITAL LETTER P WITH ACUTE]\n\"\\u1E54\" => \"P\"\n\n# Ṗ  [LATIN CAPITAL LETTER P WITH DOT ABOVE]\n\"\\u1E56\" => \"P\"\n\n# Ⓟ  [CIRCLED LATIN CAPITAL LETTER P]\n\"\\u24C5\" => \"P\"\n\n# Ᵽ  [LATIN CAPITAL LETTER P WITH STROKE]\n\"\\u2C63\" => \"P\"\n\n# Ꝑ  [LATIN CAPITAL LETTER P WITH STROKE THROUGH DESCENDER]\n\"\\uA750\" => \"P\"\n\n# Ꝓ  [LATIN CAPITAL LETTER P WITH FLOURISH]\n\"\\uA752\" => \"P\"\n\n# Ꝕ  [LATIN CAPITAL LETTER P WITH SQUIRREL TAIL]\n\"\\uA754\" => \"P\"\n\n# Ｐ  [FULLWIDTH LATIN CAPITAL LETTER P]\n\"\\uFF30\" => \"P\"\n\n# ƥ  [LATIN SMALL LETTER P WITH HOOK]\n\"\\u01A5\" => \"p\"\n\n# ᵱ  [LATIN SMALL LETTER P WITH MIDDLE TILDE]\n\"\\u1D71\" => \"p\"\n\n# ᵽ  [LATIN SMALL LETTER P WITH STROKE]\n\"\\u1D7D\" => \"p\"\n\n# ᶈ  [LATIN SMALL LETTER P WITH PALATAL HOOK]\n\"\\u1D88\" => \"p\"\n\n# ṕ  [LATIN SMALL LETTER P WITH ACUTE]\n\"\\u1E55\" => \"p\"\n\n# ṗ  [LATIN SMALL LETTER P WITH DOT ABOVE]\n\"\\u1E57\" => \"p\"\n\n# ⓟ  [CIRCLED LATIN SMALL LETTER P]\n\"\\u24DF\" => \"p\"\n\n# ꝑ  [LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER]\n\"\\uA751\" => \"p\"\n\n# ꝓ  [LATIN SMALL LETTER P WITH FLOURISH]\n\"\\uA753\" => \"p\"\n\n# ꝕ  [LATIN SMALL LETTER P WITH SQUIRREL TAIL]\n\"\\uA755\" => \"p\"\n\n# ꟼ  [LATIN EPIGRAPHIC LETTER REVERSED P]\n\"\\uA7FC\" => \"p\"\n\n# ｐ  [FULLWIDTH LATIN SMALL LETTER P]\n\"\\uFF50\" => \"p\"\n\n# ⒫  [PARENTHESIZED LATIN SMALL LETTER P]\n\"\\u24AB\" => \"(p)\"\n\n# Ɋ  [LATIN CAPITAL LETTER SMALL Q WITH HOOK TAIL]\n\"\\u024A\" => \"Q\"\n\n# Ⓠ  [CIRCLED LATIN CAPITAL LETTER Q]\n\"\\u24C6\" => \"Q\"\n\n# Ꝗ  [LATIN CAPITAL LETTER Q WITH STROKE THROUGH DESCENDER]\n\"\\uA756\" => \"Q\"\n\n# Ꝙ  [LATIN CAPITAL LETTER Q WITH DIAGONAL STROKE]\n\"\\uA758\" => \"Q\"\n\n# Ｑ  [FULLWIDTH LATIN CAPITAL LETTER Q]\n\"\\uFF31\" => \"Q\"\n\n# ĸ  http://en.wikipedia.org/wiki/Kra_(letter)  [LATIN SMALL LETTER KRA]\n\"\\u0138\" => \"q\"\n\n# ɋ  [LATIN SMALL LETTER Q WITH HOOK TAIL]\n\"\\u024B\" => \"q\"\n\n# ʠ  [LATIN SMALL LETTER Q WITH HOOK]\n\"\\u02A0\" => \"q\"\n\n# ⓠ  [CIRCLED LATIN SMALL LETTER Q]\n\"\\u24E0\" => \"q\"\n\n# ꝗ  [LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER]\n\"\\uA757\" => \"q\"\n\n# ꝙ  [LATIN SMALL LETTER Q WITH DIAGONAL STROKE]\n\"\\uA759\" => \"q\"\n\n# ｑ  [FULLWIDTH LATIN SMALL LETTER Q]\n\"\\uFF51\" => \"q\"\n\n# ⒬  [PARENTHESIZED LATIN SMALL LETTER Q]\n\"\\u24AC\" => \"(q)\"\n\n# ȹ  [LATIN SMALL LETTER QP DIGRAPH]\n\"\\u0239\" => \"qp\"\n\n# Ŕ  [LATIN CAPITAL LETTER R WITH ACUTE]\n\"\\u0154\" => \"R\"\n\n# Ŗ  [LATIN CAPITAL LETTER R WITH CEDILLA]\n\"\\u0156\" => \"R\"\n\n# Ř  [LATIN CAPITAL LETTER R WITH CARON]\n\"\\u0158\" => \"R\"\n\n# Ȓ  [LATIN CAPITAL LETTER R WITH DOUBLE GRAVE]\n\"\\u0210\" => \"R\"\n\n# Ȓ  [LATIN CAPITAL LETTER R WITH INVERTED BREVE]\n\"\\u0212\" => \"R\"\n\n# Ɍ  [LATIN CAPITAL LETTER R WITH STROKE]\n\"\\u024C\" => \"R\"\n\n# ʀ  [LATIN LETTER SMALL CAPITAL R]\n\"\\u0280\" => \"R\"\n\n# ʁ  [LATIN LETTER SMALL CAPITAL INVERTED R]\n\"\\u0281\" => \"R\"\n\n# ᴙ  [LATIN LETTER SMALL CAPITAL REVERSED R]\n\"\\u1D19\" => \"R\"\n\n# ᴚ  [LATIN LETTER SMALL CAPITAL TURNED R]\n\"\\u1D1A\" => \"R\"\n\n# Ṙ  [LATIN CAPITAL LETTER R WITH DOT ABOVE]\n\"\\u1E58\" => \"R\"\n\n# Ṛ  [LATIN CAPITAL LETTER R WITH DOT BELOW]\n\"\\u1E5A\" => \"R\"\n\n# Ṝ  [LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON]\n\"\\u1E5C\" => \"R\"\n\n# Ṟ  [LATIN CAPITAL LETTER R WITH LINE BELOW]\n\"\\u1E5E\" => \"R\"\n\n# Ⓡ  [CIRCLED LATIN CAPITAL LETTER R]\n\"\\u24C7\" => \"R\"\n\n# Ɽ  [LATIN CAPITAL LETTER R WITH TAIL]\n\"\\u2C64\" => \"R\"\n\n# Ꝛ  [LATIN CAPITAL LETTER R ROTUNDA]\n\"\\uA75A\" => \"R\"\n\n# Ꞃ  [LATIN CAPITAL LETTER INSULAR R]\n\"\\uA782\" => \"R\"\n\n# Ｒ  [FULLWIDTH LATIN CAPITAL LETTER R]\n\"\\uFF32\" => \"R\"\n\n# ŕ  [LATIN SMALL LETTER R WITH ACUTE]\n\"\\u0155\" => \"r\"\n\n# ŗ  [LATIN SMALL LETTER R WITH CEDILLA]\n\"\\u0157\" => \"r\"\n\n# ř  [LATIN SMALL LETTER R WITH CARON]\n\"\\u0159\" => \"r\"\n\n# ȑ  [LATIN SMALL LETTER R WITH DOUBLE GRAVE]\n\"\\u0211\" => \"r\"\n\n# ȓ  [LATIN SMALL LETTER R WITH INVERTED BREVE]\n\"\\u0213\" => \"r\"\n\n# ɍ  [LATIN SMALL LETTER R WITH STROKE]\n\"\\u024D\" => \"r\"\n\n# ɼ  [LATIN SMALL LETTER R WITH LONG LEG]\n\"\\u027C\" => \"r\"\n\n# ɽ  [LATIN SMALL LETTER R WITH TAIL]\n\"\\u027D\" => \"r\"\n\n# ɾ  [LATIN SMALL LETTER R WITH FISHHOOK]\n\"\\u027E\" => \"r\"\n\n# ɿ  [LATIN SMALL LETTER REVERSED R WITH FISHHOOK]\n\"\\u027F\" => \"r\"\n\n# ᵣ  [LATIN SUBSCRIPT SMALL LETTER R]\n\"\\u1D63\" => \"r\"\n\n# ᵲ  [LATIN SMALL LETTER R WITH MIDDLE TILDE]\n\"\\u1D72\" => \"r\"\n\n# ᵳ  [LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE]\n\"\\u1D73\" => \"r\"\n\n# ᶉ  [LATIN SMALL LETTER R WITH PALATAL HOOK]\n\"\\u1D89\" => \"r\"\n\n# ṙ  [LATIN SMALL LETTER R WITH DOT ABOVE]\n\"\\u1E59\" => \"r\"\n\n# ṛ  [LATIN SMALL LETTER R WITH DOT BELOW]\n\"\\u1E5B\" => \"r\"\n\n# ṝ  [LATIN SMALL LETTER R WITH DOT BELOW AND MACRON]\n\"\\u1E5D\" => \"r\"\n\n# ṟ  [LATIN SMALL LETTER R WITH LINE BELOW]\n\"\\u1E5F\" => \"r\"\n\n# ⓡ  [CIRCLED LATIN SMALL LETTER R]\n\"\\u24E1\" => \"r\"\n\n# ꝛ  [LATIN SMALL LETTER R ROTUNDA]\n\"\\uA75B\" => \"r\"\n\n# ꞃ  [LATIN SMALL LETTER INSULAR R]\n\"\\uA783\" => \"r\"\n\n# ｒ  [FULLWIDTH LATIN SMALL LETTER R]\n\"\\uFF52\" => \"r\"\n\n# ⒭  [PARENTHESIZED LATIN SMALL LETTER R]\n\"\\u24AD\" => \"(r)\"\n\n# Ś  [LATIN CAPITAL LETTER S WITH ACUTE]\n\"\\u015A\" => \"S\"\n\n# Ŝ  [LATIN CAPITAL LETTER S WITH CIRCUMFLEX]\n\"\\u015C\" => \"S\"\n\n# Ş  [LATIN CAPITAL LETTER S WITH CEDILLA]\n\"\\u015E\" => \"S\"\n\n# Š  [LATIN CAPITAL LETTER S WITH CARON]\n\"\\u0160\" => \"S\"\n\n# Ș  [LATIN CAPITAL LETTER S WITH COMMA BELOW]\n\"\\u0218\" => \"S\"\n\n# Ṡ  [LATIN CAPITAL LETTER S WITH DOT ABOVE]\n\"\\u1E60\" => \"S\"\n\n# Ṣ  [LATIN CAPITAL LETTER S WITH DOT BELOW]\n\"\\u1E62\" => \"S\"\n\n# Ṥ  [LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE]\n\"\\u1E64\" => \"S\"\n\n# Ṧ  [LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE]\n\"\\u1E66\" => \"S\"\n\n# Ṩ  [LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE]\n\"\\u1E68\" => \"S\"\n\n# Ⓢ  [CIRCLED LATIN CAPITAL LETTER S]\n\"\\u24C8\" => \"S\"\n\n# ꜱ  [LATIN LETTER SMALL CAPITAL S]\n\"\\uA731\" => \"S\"\n\n# ꞅ  [LATIN SMALL LETTER INSULAR S]\n\"\\uA785\" => \"S\"\n\n# Ｓ  [FULLWIDTH LATIN CAPITAL LETTER S]\n\"\\uFF33\" => \"S\"\n\n# ś  [LATIN SMALL LETTER S WITH ACUTE]\n\"\\u015B\" => \"s\"\n\n# ŝ  [LATIN SMALL LETTER S WITH CIRCUMFLEX]\n\"\\u015D\" => \"s\"\n\n# ş  [LATIN SMALL LETTER S WITH CEDILLA]\n\"\\u015F\" => \"s\"\n\n# š  [LATIN SMALL LETTER S WITH CARON]\n\"\\u0161\" => \"s\"\n\n# ſ  http://en.wikipedia.org/wiki/Long_S  [LATIN SMALL LETTER LONG S]\n\"\\u017F\" => \"s\"\n\n# ș  [LATIN SMALL LETTER S WITH COMMA BELOW]\n\"\\u0219\" => \"s\"\n\n# ȿ  [LATIN SMALL LETTER S WITH SWASH TAIL]\n\"\\u023F\" => \"s\"\n\n# ʂ  [LATIN SMALL LETTER S WITH HOOK]\n\"\\u0282\" => \"s\"\n\n# ᵴ  [LATIN SMALL LETTER S WITH MIDDLE TILDE]\n\"\\u1D74\" => \"s\"\n\n# ᶊ  [LATIN SMALL LETTER S WITH PALATAL HOOK]\n\"\\u1D8A\" => \"s\"\n\n# ṡ  [LATIN SMALL LETTER S WITH DOT ABOVE]\n\"\\u1E61\" => \"s\"\n\n# ṣ  [LATIN SMALL LETTER S WITH DOT BELOW]\n\"\\u1E63\" => \"s\"\n\n# ṥ  [LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE]\n\"\\u1E65\" => \"s\"\n\n# ṧ  [LATIN SMALL LETTER S WITH CARON AND DOT ABOVE]\n\"\\u1E67\" => \"s\"\n\n# ṩ  [LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE]\n\"\\u1E69\" => \"s\"\n\n# ẜ  [LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE]\n\"\\u1E9C\" => \"s\"\n\n# ẝ  [LATIN SMALL LETTER LONG S WITH HIGH STROKE]\n\"\\u1E9D\" => \"s\"\n\n# ⓢ  [CIRCLED LATIN SMALL LETTER S]\n\"\\u24E2\" => \"s\"\n\n# Ꞅ  [LATIN CAPITAL LETTER INSULAR S]\n\"\\uA784\" => \"s\"\n\n# ｓ  [FULLWIDTH LATIN SMALL LETTER S]\n\"\\uFF53\" => \"s\"\n\n# ẞ  [LATIN CAPITAL LETTER SHARP S]\n\"\\u1E9E\" => \"SS\"\n\n# ⒮  [PARENTHESIZED LATIN SMALL LETTER S]\n\"\\u24AE\" => \"(s)\"\n\n# ß  [LATIN SMALL LETTER SHARP S]\n\"\\u00DF\" => \"ss\"\n\n# ﬆ  [LATIN SMALL LIGATURE ST]\n\"\\uFB06\" => \"st\"\n\n# Ţ  [LATIN CAPITAL LETTER T WITH CEDILLA]\n\"\\u0162\" => \"T\"\n\n# Ť  [LATIN CAPITAL LETTER T WITH CARON]\n\"\\u0164\" => \"T\"\n\n# Ŧ  [LATIN CAPITAL LETTER T WITH STROKE]\n\"\\u0166\" => \"T\"\n\n# Ƭ  [LATIN CAPITAL LETTER T WITH HOOK]\n\"\\u01AC\" => \"T\"\n\n# Ʈ  [LATIN CAPITAL LETTER T WITH RETROFLEX HOOK]\n\"\\u01AE\" => \"T\"\n\n# Ț  [LATIN CAPITAL LETTER T WITH COMMA BELOW]\n\"\\u021A\" => \"T\"\n\n# Ⱦ  [LATIN CAPITAL LETTER T WITH DIAGONAL STROKE]\n\"\\u023E\" => \"T\"\n\n# ᴛ  [LATIN LETTER SMALL CAPITAL T]\n\"\\u1D1B\" => \"T\"\n\n# Ṫ  [LATIN CAPITAL LETTER T WITH DOT ABOVE]\n\"\\u1E6A\" => \"T\"\n\n# Ṭ  [LATIN CAPITAL LETTER T WITH DOT BELOW]\n\"\\u1E6C\" => \"T\"\n\n# Ṯ  [LATIN CAPITAL LETTER T WITH LINE BELOW]\n\"\\u1E6E\" => \"T\"\n\n# Ṱ  [LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW]\n\"\\u1E70\" => \"T\"\n\n# Ⓣ  [CIRCLED LATIN CAPITAL LETTER T]\n\"\\u24C9\" => \"T\"\n\n# Ꞇ  [LATIN CAPITAL LETTER INSULAR T]\n\"\\uA786\" => \"T\"\n\n# Ｔ  [FULLWIDTH LATIN CAPITAL LETTER T]\n\"\\uFF34\" => \"T\"\n\n# ţ  [LATIN SMALL LETTER T WITH CEDILLA]\n\"\\u0163\" => \"t\"\n\n# ť  [LATIN SMALL LETTER T WITH CARON]\n\"\\u0165\" => \"t\"\n\n# ŧ  [LATIN SMALL LETTER T WITH STROKE]\n\"\\u0167\" => \"t\"\n\n# ƫ  [LATIN SMALL LETTER T WITH PALATAL HOOK]\n\"\\u01AB\" => \"t\"\n\n# ƭ  [LATIN SMALL LETTER T WITH HOOK]\n\"\\u01AD\" => \"t\"\n\n# ț  [LATIN SMALL LETTER T WITH COMMA BELOW]\n\"\\u021B\" => \"t\"\n\n# ȶ  [LATIN SMALL LETTER T WITH CURL]\n\"\\u0236\" => \"t\"\n\n# ʇ  [LATIN SMALL LETTER TURNED T]\n\"\\u0287\" => \"t\"\n\n# ʈ  [LATIN SMALL LETTER T WITH RETROFLEX HOOK]\n\"\\u0288\" => \"t\"\n\n# ᵵ  [LATIN SMALL LETTER T WITH MIDDLE TILDE]\n\"\\u1D75\" => \"t\"\n\n# ṫ  [LATIN SMALL LETTER T WITH DOT ABOVE]\n\"\\u1E6B\" => \"t\"\n\n# ṭ  [LATIN SMALL LETTER T WITH DOT BELOW]\n\"\\u1E6D\" => \"t\"\n\n# ṯ  [LATIN SMALL LETTER T WITH LINE BELOW]\n\"\\u1E6F\" => \"t\"\n\n# ṱ  [LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW]\n\"\\u1E71\" => \"t\"\n\n# ẗ  [LATIN SMALL LETTER T WITH DIAERESIS]\n\"\\u1E97\" => \"t\"\n\n# ⓣ  [CIRCLED LATIN SMALL LETTER T]\n\"\\u24E3\" => \"t\"\n\n# ⱦ  [LATIN SMALL LETTER T WITH DIAGONAL STROKE]\n\"\\u2C66\" => \"t\"\n\n# ｔ  [FULLWIDTH LATIN SMALL LETTER T]\n\"\\uFF54\" => \"t\"\n\n# Þ  [LATIN CAPITAL LETTER THORN]\n\"\\u00DE\" => \"TH\"\n\n# Ꝧ  [LATIN CAPITAL LETTER THORN WITH STROKE THROUGH DESCENDER]\n\"\\uA766\" => \"TH\"\n\n# Ꜩ  [LATIN CAPITAL LETTER TZ]\n\"\\uA728\" => \"TZ\"\n\n# ⒯  [PARENTHESIZED LATIN SMALL LETTER T]\n\"\\u24AF\" => \"(t)\"\n\n# ʨ  [LATIN SMALL LETTER TC DIGRAPH WITH CURL]\n\"\\u02A8\" => \"tc\"\n\n# þ  [LATIN SMALL LETTER THORN]\n\"\\u00FE\" => \"th\"\n\n# ᵺ  [LATIN SMALL LETTER TH WITH STRIKETHROUGH]\n\"\\u1D7A\" => \"th\"\n\n# ꝧ  [LATIN SMALL LETTER THORN WITH STROKE THROUGH DESCENDER]\n\"\\uA767\" => \"th\"\n\n# ʦ  [LATIN SMALL LETTER TS DIGRAPH]\n\"\\u02A6\" => \"ts\"\n\n# ꜩ  [LATIN SMALL LETTER TZ]\n\"\\uA729\" => \"tz\"\n\n# Ù  [LATIN CAPITAL LETTER U WITH GRAVE]\n\"\\u00D9\" => \"U\"\n\n# Ú  [LATIN CAPITAL LETTER U WITH ACUTE]\n\"\\u00DA\" => \"U\"\n\n# Û  [LATIN CAPITAL LETTER U WITH CIRCUMFLEX]\n\"\\u00DB\" => \"U\"\n\n# Ü  [LATIN CAPITAL LETTER U WITH DIAERESIS]\n\"\\u00DC\" => \"U\"\n\n# Ũ  [LATIN CAPITAL LETTER U WITH TILDE]\n\"\\u0168\" => \"U\"\n\n# Ū  [LATIN CAPITAL LETTER U WITH MACRON]\n\"\\u016A\" => \"U\"\n\n# Ŭ  [LATIN CAPITAL LETTER U WITH BREVE]\n\"\\u016C\" => \"U\"\n\n# Ů  [LATIN CAPITAL LETTER U WITH RING ABOVE]\n\"\\u016E\" => \"U\"\n\n# Ű  [LATIN CAPITAL LETTER U WITH DOUBLE ACUTE]\n\"\\u0170\" => \"U\"\n\n# Ų  [LATIN CAPITAL LETTER U WITH OGONEK]\n\"\\u0172\" => \"U\"\n\n# Ư  [LATIN CAPITAL LETTER U WITH HORN]\n\"\\u01AF\" => \"U\"\n\n# Ǔ  [LATIN CAPITAL LETTER U WITH CARON]\n\"\\u01D3\" => \"U\"\n\n# Ǖ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON]\n\"\\u01D5\" => \"U\"\n\n# Ǘ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE]\n\"\\u01D7\" => \"U\"\n\n# Ǚ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON]\n\"\\u01D9\" => \"U\"\n\n# Ǜ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE]\n\"\\u01DB\" => \"U\"\n\n# Ȕ  [LATIN CAPITAL LETTER U WITH DOUBLE GRAVE]\n\"\\u0214\" => \"U\"\n\n# Ȗ  [LATIN CAPITAL LETTER U WITH INVERTED BREVE]\n\"\\u0216\" => \"U\"\n\n# Ʉ  [LATIN CAPITAL LETTER U BAR]\n\"\\u0244\" => \"U\"\n\n# ᴜ  [LATIN LETTER SMALL CAPITAL U]\n\"\\u1D1C\" => \"U\"\n\n# ᵾ  [LATIN SMALL CAPITAL LETTER U WITH STROKE]\n\"\\u1D7E\" => \"U\"\n\n# Ṳ  [LATIN CAPITAL LETTER U WITH DIAERESIS BELOW]\n\"\\u1E72\" => \"U\"\n\n# Ṵ  [LATIN CAPITAL LETTER U WITH TILDE BELOW]\n\"\\u1E74\" => \"U\"\n\n# Ṷ  [LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW]\n\"\\u1E76\" => \"U\"\n\n# Ṹ  [LATIN CAPITAL LETTER U WITH TILDE AND ACUTE]\n\"\\u1E78\" => \"U\"\n\n# Ṻ  [LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS]\n\"\\u1E7A\" => \"U\"\n\n# Ụ  [LATIN CAPITAL LETTER U WITH DOT BELOW]\n\"\\u1EE4\" => \"U\"\n\n# Ủ  [LATIN CAPITAL LETTER U WITH HOOK ABOVE]\n\"\\u1EE6\" => \"U\"\n\n# Ứ  [LATIN CAPITAL LETTER U WITH HORN AND ACUTE]\n\"\\u1EE8\" => \"U\"\n\n# Ừ  [LATIN CAPITAL LETTER U WITH HORN AND GRAVE]\n\"\\u1EEA\" => \"U\"\n\n# Ử  [LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE]\n\"\\u1EEC\" => \"U\"\n\n# Ữ  [LATIN CAPITAL LETTER U WITH HORN AND TILDE]\n\"\\u1EEE\" => \"U\"\n\n# Ự  [LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW]\n\"\\u1EF0\" => \"U\"\n\n# Ⓤ  [CIRCLED LATIN CAPITAL LETTER U]\n\"\\u24CA\" => \"U\"\n\n# Ｕ  [FULLWIDTH LATIN CAPITAL LETTER U]\n\"\\uFF35\" => \"U\"\n\n# ù  [LATIN SMALL LETTER U WITH GRAVE]\n\"\\u00F9\" => \"u\"\n\n# ú  [LATIN SMALL LETTER U WITH ACUTE]\n\"\\u00FA\" => \"u\"\n\n# û  [LATIN SMALL LETTER U WITH CIRCUMFLEX]\n\"\\u00FB\" => \"u\"\n\n# ü  [LATIN SMALL LETTER U WITH DIAERESIS]\n\"\\u00FC\" => \"u\"\n\n# ũ  [LATIN SMALL LETTER U WITH TILDE]\n\"\\u0169\" => \"u\"\n\n# ū  [LATIN SMALL LETTER U WITH MACRON]\n\"\\u016B\" => \"u\"\n\n# ŭ  [LATIN SMALL LETTER U WITH BREVE]\n\"\\u016D\" => \"u\"\n\n# ů  [LATIN SMALL LETTER U WITH RING ABOVE]\n\"\\u016F\" => \"u\"\n\n# ű  [LATIN SMALL LETTER U WITH DOUBLE ACUTE]\n\"\\u0171\" => \"u\"\n\n# ų  [LATIN SMALL LETTER U WITH OGONEK]\n\"\\u0173\" => \"u\"\n\n# ư  [LATIN SMALL LETTER U WITH HORN]\n\"\\u01B0\" => \"u\"\n\n# ǔ  [LATIN SMALL LETTER U WITH CARON]\n\"\\u01D4\" => \"u\"\n\n# ǖ  [LATIN SMALL LETTER U WITH DIAERESIS AND MACRON]\n\"\\u01D6\" => \"u\"\n\n# ǘ  [LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE]\n\"\\u01D8\" => \"u\"\n\n# ǚ  [LATIN SMALL LETTER U WITH DIAERESIS AND CARON]\n\"\\u01DA\" => \"u\"\n\n# ǜ  [LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE]\n\"\\u01DC\" => \"u\"\n\n# ȕ  [LATIN SMALL LETTER U WITH DOUBLE GRAVE]\n\"\\u0215\" => \"u\"\n\n# ȗ  [LATIN SMALL LETTER U WITH INVERTED BREVE]\n\"\\u0217\" => \"u\"\n\n# ʉ  [LATIN SMALL LETTER U BAR]\n\"\\u0289\" => \"u\"\n\n# ᵤ  [LATIN SUBSCRIPT SMALL LETTER U]\n\"\\u1D64\" => \"u\"\n\n# ᶙ  [LATIN SMALL LETTER U WITH RETROFLEX HOOK]\n\"\\u1D99\" => \"u\"\n\n# ṳ  [LATIN SMALL LETTER U WITH DIAERESIS BELOW]\n\"\\u1E73\" => \"u\"\n\n# ṵ  [LATIN SMALL LETTER U WITH TILDE BELOW]\n\"\\u1E75\" => \"u\"\n\n# ṷ  [LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW]\n\"\\u1E77\" => \"u\"\n\n# ṹ  [LATIN SMALL LETTER U WITH TILDE AND ACUTE]\n\"\\u1E79\" => \"u\"\n\n# ṻ  [LATIN SMALL LETTER U WITH MACRON AND DIAERESIS]\n\"\\u1E7B\" => \"u\"\n\n# ụ  [LATIN SMALL LETTER U WITH DOT BELOW]\n\"\\u1EE5\" => \"u\"\n\n# ủ  [LATIN SMALL LETTER U WITH HOOK ABOVE]\n\"\\u1EE7\" => \"u\"\n\n# ứ  [LATIN SMALL LETTER U WITH HORN AND ACUTE]\n\"\\u1EE9\" => \"u\"\n\n# ừ  [LATIN SMALL LETTER U WITH HORN AND GRAVE]\n\"\\u1EEB\" => \"u\"\n\n# ử  [LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE]\n\"\\u1EED\" => \"u\"\n\n# ữ  [LATIN SMALL LETTER U WITH HORN AND TILDE]\n\"\\u1EEF\" => \"u\"\n\n# ự  [LATIN SMALL LETTER U WITH HORN AND DOT BELOW]\n\"\\u1EF1\" => \"u\"\n\n# ⓤ  [CIRCLED LATIN SMALL LETTER U]\n\"\\u24E4\" => \"u\"\n\n# ｕ  [FULLWIDTH LATIN SMALL LETTER U]\n\"\\uFF55\" => \"u\"\n\n# ⒰  [PARENTHESIZED LATIN SMALL LETTER U]\n\"\\u24B0\" => \"(u)\"\n\n# ᵫ  [LATIN SMALL LETTER UE]\n\"\\u1D6B\" => \"ue\"\n\n# Ʋ  [LATIN CAPITAL LETTER V WITH HOOK]\n\"\\u01B2\" => \"V\"\n\n# Ʌ  [LATIN CAPITAL LETTER TURNED V]\n\"\\u0245\" => \"V\"\n\n# ᴠ  [LATIN LETTER SMALL CAPITAL V]\n\"\\u1D20\" => \"V\"\n\n# Ṽ  [LATIN CAPITAL LETTER V WITH TILDE]\n\"\\u1E7C\" => \"V\"\n\n# Ṿ  [LATIN CAPITAL LETTER V WITH DOT BELOW]\n\"\\u1E7E\" => \"V\"\n\n# Ỽ  [LATIN CAPITAL LETTER MIDDLE-WELSH V]\n\"\\u1EFC\" => \"V\"\n\n# Ⓥ  [CIRCLED LATIN CAPITAL LETTER V]\n\"\\u24CB\" => \"V\"\n\n# Ꝟ  [LATIN CAPITAL LETTER V WITH DIAGONAL STROKE]\n\"\\uA75E\" => \"V\"\n\n# Ꝩ  [LATIN CAPITAL LETTER VEND]\n\"\\uA768\" => \"V\"\n\n# Ｖ  [FULLWIDTH LATIN CAPITAL LETTER V]\n\"\\uFF36\" => \"V\"\n\n# ʋ  [LATIN SMALL LETTER V WITH HOOK]\n\"\\u028B\" => \"v\"\n\n# ʌ  [LATIN SMALL LETTER TURNED V]\n\"\\u028C\" => \"v\"\n\n# ᵥ  [LATIN SUBSCRIPT SMALL LETTER V]\n\"\\u1D65\" => \"v\"\n\n# ᶌ  [LATIN SMALL LETTER V WITH PALATAL HOOK]\n\"\\u1D8C\" => \"v\"\n\n# ṽ  [LATIN SMALL LETTER V WITH TILDE]\n\"\\u1E7D\" => \"v\"\n\n# ṿ  [LATIN SMALL LETTER V WITH DOT BELOW]\n\"\\u1E7F\" => \"v\"\n\n# ⓥ  [CIRCLED LATIN SMALL LETTER V]\n\"\\u24E5\" => \"v\"\n\n# ⱱ  [LATIN SMALL LETTER V WITH RIGHT HOOK]\n\"\\u2C71\" => \"v\"\n\n# ⱴ  [LATIN SMALL LETTER V WITH CURL]\n\"\\u2C74\" => \"v\"\n\n# ꝟ  [LATIN SMALL LETTER V WITH DIAGONAL STROKE]\n\"\\uA75F\" => \"v\"\n\n# ｖ  [FULLWIDTH LATIN SMALL LETTER V]\n\"\\uFF56\" => \"v\"\n\n# Ꝡ  [LATIN CAPITAL LETTER VY]\n\"\\uA760\" => \"VY\"\n\n# ⒱  [PARENTHESIZED LATIN SMALL LETTER V]\n\"\\u24B1\" => \"(v)\"\n\n# ꝡ  [LATIN SMALL LETTER VY]\n\"\\uA761\" => \"vy\"\n\n# Ŵ  [LATIN CAPITAL LETTER W WITH CIRCUMFLEX]\n\"\\u0174\" => \"W\"\n\n# Ƿ  http://en.wikipedia.org/wiki/Wynn  [LATIN CAPITAL LETTER WYNN]\n\"\\u01F7\" => \"W\"\n\n# ᴡ  [LATIN LETTER SMALL CAPITAL W]\n\"\\u1D21\" => \"W\"\n\n# Ẁ  [LATIN CAPITAL LETTER W WITH GRAVE]\n\"\\u1E80\" => \"W\"\n\n# Ẃ  [LATIN CAPITAL LETTER W WITH ACUTE]\n\"\\u1E82\" => \"W\"\n\n# Ẅ  [LATIN CAPITAL LETTER W WITH DIAERESIS]\n\"\\u1E84\" => \"W\"\n\n# Ẇ  [LATIN CAPITAL LETTER W WITH DOT ABOVE]\n\"\\u1E86\" => \"W\"\n\n# Ẉ  [LATIN CAPITAL LETTER W WITH DOT BELOW]\n\"\\u1E88\" => \"W\"\n\n# Ⓦ  [CIRCLED LATIN CAPITAL LETTER W]\n\"\\u24CC\" => \"W\"\n\n# Ⱳ  [LATIN CAPITAL LETTER W WITH HOOK]\n\"\\u2C72\" => \"W\"\n\n# Ｗ  [FULLWIDTH LATIN CAPITAL LETTER W]\n\"\\uFF37\" => \"W\"\n\n# ŵ  [LATIN SMALL LETTER W WITH CIRCUMFLEX]\n\"\\u0175\" => \"w\"\n\n# ƿ  http://en.wikipedia.org/wiki/Wynn  [LATIN LETTER WYNN]\n\"\\u01BF\" => \"w\"\n\n# ʍ  [LATIN SMALL LETTER TURNED W]\n\"\\u028D\" => \"w\"\n\n# ẁ  [LATIN SMALL LETTER W WITH GRAVE]\n\"\\u1E81\" => \"w\"\n\n# ẃ  [LATIN SMALL LETTER W WITH ACUTE]\n\"\\u1E83\" => \"w\"\n\n# ẅ  [LATIN SMALL LETTER W WITH DIAERESIS]\n\"\\u1E85\" => \"w\"\n\n# ẇ  [LATIN SMALL LETTER W WITH DOT ABOVE]\n\"\\u1E87\" => \"w\"\n\n# ẉ  [LATIN SMALL LETTER W WITH DOT BELOW]\n\"\\u1E89\" => \"w\"\n\n# ẘ  [LATIN SMALL LETTER W WITH RING ABOVE]\n\"\\u1E98\" => \"w\"\n\n# ⓦ  [CIRCLED LATIN SMALL LETTER W]\n\"\\u24E6\" => \"w\"\n\n# ⱳ  [LATIN SMALL LETTER W WITH HOOK]\n\"\\u2C73\" => \"w\"\n\n# ｗ  [FULLWIDTH LATIN SMALL LETTER W]\n\"\\uFF57\" => \"w\"\n\n# ⒲  [PARENTHESIZED LATIN SMALL LETTER W]\n\"\\u24B2\" => \"(w)\"\n\n# Ẋ  [LATIN CAPITAL LETTER X WITH DOT ABOVE]\n\"\\u1E8A\" => \"X\"\n\n# Ẍ  [LATIN CAPITAL LETTER X WITH DIAERESIS]\n\"\\u1E8C\" => \"X\"\n\n# Ⓧ  [CIRCLED LATIN CAPITAL LETTER X]\n\"\\u24CD\" => \"X\"\n\n# Ｘ  [FULLWIDTH LATIN CAPITAL LETTER X]\n\"\\uFF38\" => \"X\"\n\n# ᶍ  [LATIN SMALL LETTER X WITH PALATAL HOOK]\n\"\\u1D8D\" => \"x\"\n\n# ẋ  [LATIN SMALL LETTER X WITH DOT ABOVE]\n\"\\u1E8B\" => \"x\"\n\n# ẍ  [LATIN SMALL LETTER X WITH DIAERESIS]\n\"\\u1E8D\" => \"x\"\n\n# ₓ  [LATIN SUBSCRIPT SMALL LETTER X]\n\"\\u2093\" => \"x\"\n\n# ⓧ  [CIRCLED LATIN SMALL LETTER X]\n\"\\u24E7\" => \"x\"\n\n# ｘ  [FULLWIDTH LATIN SMALL LETTER X]\n\"\\uFF58\" => \"x\"\n\n# ⒳  [PARENTHESIZED LATIN SMALL LETTER X]\n\"\\u24B3\" => \"(x)\"\n\n# Ý  [LATIN CAPITAL LETTER Y WITH ACUTE]\n\"\\u00DD\" => \"Y\"\n\n# Ŷ  [LATIN CAPITAL LETTER Y WITH CIRCUMFLEX]\n\"\\u0176\" => \"Y\"\n\n# Ÿ  [LATIN CAPITAL LETTER Y WITH DIAERESIS]\n\"\\u0178\" => \"Y\"\n\n# Ƴ  [LATIN CAPITAL LETTER Y WITH HOOK]\n\"\\u01B3\" => \"Y\"\n\n# Ȳ  [LATIN CAPITAL LETTER Y WITH MACRON]\n\"\\u0232\" => \"Y\"\n\n# Ɏ  [LATIN CAPITAL LETTER Y WITH STROKE]\n\"\\u024E\" => \"Y\"\n\n# ʏ  [LATIN LETTER SMALL CAPITAL Y]\n\"\\u028F\" => \"Y\"\n\n# Ẏ  [LATIN CAPITAL LETTER Y WITH DOT ABOVE]\n\"\\u1E8E\" => \"Y\"\n\n# Ỳ  [LATIN CAPITAL LETTER Y WITH GRAVE]\n\"\\u1EF2\" => \"Y\"\n\n# Ỵ  [LATIN CAPITAL LETTER Y WITH DOT BELOW]\n\"\\u1EF4\" => \"Y\"\n\n# Ỷ  [LATIN CAPITAL LETTER Y WITH HOOK ABOVE]\n\"\\u1EF6\" => \"Y\"\n\n# Ỹ  [LATIN CAPITAL LETTER Y WITH TILDE]\n\"\\u1EF8\" => \"Y\"\n\n# Ỿ  [LATIN CAPITAL LETTER Y WITH LOOP]\n\"\\u1EFE\" => \"Y\"\n\n# Ⓨ  [CIRCLED LATIN CAPITAL LETTER Y]\n\"\\u24CE\" => \"Y\"\n\n# Ｙ  [FULLWIDTH LATIN CAPITAL LETTER Y]\n\"\\uFF39\" => \"Y\"\n\n# ý  [LATIN SMALL LETTER Y WITH ACUTE]\n\"\\u00FD\" => \"y\"\n\n# ÿ  [LATIN SMALL LETTER Y WITH DIAERESIS]\n\"\\u00FF\" => \"y\"\n\n# ŷ  [LATIN SMALL LETTER Y WITH CIRCUMFLEX]\n\"\\u0177\" => \"y\"\n\n# ƴ  [LATIN SMALL LETTER Y WITH HOOK]\n\"\\u01B4\" => \"y\"\n\n# ȳ  [LATIN SMALL LETTER Y WITH MACRON]\n\"\\u0233\" => \"y\"\n\n# ɏ  [LATIN SMALL LETTER Y WITH STROKE]\n\"\\u024F\" => \"y\"\n\n# ʎ  [LATIN SMALL LETTER TURNED Y]\n\"\\u028E\" => \"y\"\n\n# ẏ  [LATIN SMALL LETTER Y WITH DOT ABOVE]\n\"\\u1E8F\" => \"y\"\n\n# ẙ  [LATIN SMALL LETTER Y WITH RING ABOVE]\n\"\\u1E99\" => \"y\"\n\n# ỳ  [LATIN SMALL LETTER Y WITH GRAVE]\n\"\\u1EF3\" => \"y\"\n\n# ỵ  [LATIN SMALL LETTER Y WITH DOT BELOW]\n\"\\u1EF5\" => \"y\"\n\n# ỷ  [LATIN SMALL LETTER Y WITH HOOK ABOVE]\n\"\\u1EF7\" => \"y\"\n\n# ỹ  [LATIN SMALL LETTER Y WITH TILDE]\n\"\\u1EF9\" => \"y\"\n\n# ỿ  [LATIN SMALL LETTER Y WITH LOOP]\n\"\\u1EFF\" => \"y\"\n\n# ⓨ  [CIRCLED LATIN SMALL LETTER Y]\n\"\\u24E8\" => \"y\"\n\n# ｙ  [FULLWIDTH LATIN SMALL LETTER Y]\n\"\\uFF59\" => \"y\"\n\n# ⒴  [PARENTHESIZED LATIN SMALL LETTER Y]\n\"\\u24B4\" => \"(y)\"\n\n# Ź  [LATIN CAPITAL LETTER Z WITH ACUTE]\n\"\\u0179\" => \"Z\"\n\n# Ż  [LATIN CAPITAL LETTER Z WITH DOT ABOVE]\n\"\\u017B\" => \"Z\"\n\n# Ž  [LATIN CAPITAL LETTER Z WITH CARON]\n\"\\u017D\" => \"Z\"\n\n# Ƶ  [LATIN CAPITAL LETTER Z WITH STROKE]\n\"\\u01B5\" => \"Z\"\n\n# Ȝ  http://en.wikipedia.org/wiki/Yogh  [LATIN CAPITAL LETTER YOGH]\n\"\\u021C\" => \"Z\"\n\n# Ȥ  [LATIN CAPITAL LETTER Z WITH HOOK]\n\"\\u0224\" => \"Z\"\n\n# ᴢ  [LATIN LETTER SMALL CAPITAL Z]\n\"\\u1D22\" => \"Z\"\n\n# Ẑ  [LATIN CAPITAL LETTER Z WITH CIRCUMFLEX]\n\"\\u1E90\" => \"Z\"\n\n# Ẓ  [LATIN CAPITAL LETTER Z WITH DOT BELOW]\n\"\\u1E92\" => \"Z\"\n\n# Ẕ  [LATIN CAPITAL LETTER Z WITH LINE BELOW]\n\"\\u1E94\" => \"Z\"\n\n# Ⓩ  [CIRCLED LATIN CAPITAL LETTER Z]\n\"\\u24CF\" => \"Z\"\n\n# Ⱬ  [LATIN CAPITAL LETTER Z WITH DESCENDER]\n\"\\u2C6B\" => \"Z\"\n\n# Ꝣ  [LATIN CAPITAL LETTER VISIGOTHIC Z]\n\"\\uA762\" => \"Z\"\n\n# Ｚ  [FULLWIDTH LATIN CAPITAL LETTER Z]\n\"\\uFF3A\" => \"Z\"\n\n# ź  [LATIN SMALL LETTER Z WITH ACUTE]\n\"\\u017A\" => \"z\"\n\n# ż  [LATIN SMALL LETTER Z WITH DOT ABOVE]\n\"\\u017C\" => \"z\"\n\n# ž  [LATIN SMALL LETTER Z WITH CARON]\n\"\\u017E\" => \"z\"\n\n# ƶ  [LATIN SMALL LETTER Z WITH STROKE]\n\"\\u01B6\" => \"z\"\n\n# ȝ  http://en.wikipedia.org/wiki/Yogh  [LATIN SMALL LETTER YOGH]\n\"\\u021D\" => \"z\"\n\n# ȥ  [LATIN SMALL LETTER Z WITH HOOK]\n\"\\u0225\" => \"z\"\n\n# ɀ  [LATIN SMALL LETTER Z WITH SWASH TAIL]\n\"\\u0240\" => \"z\"\n\n# ʐ  [LATIN SMALL LETTER Z WITH RETROFLEX HOOK]\n\"\\u0290\" => \"z\"\n\n# ʑ  [LATIN SMALL LETTER Z WITH CURL]\n\"\\u0291\" => \"z\"\n\n# ᵶ  [LATIN SMALL LETTER Z WITH MIDDLE TILDE]\n\"\\u1D76\" => \"z\"\n\n# ᶎ  [LATIN SMALL LETTER Z WITH PALATAL HOOK]\n\"\\u1D8E\" => \"z\"\n\n# ẑ  [LATIN SMALL LETTER Z WITH CIRCUMFLEX]\n\"\\u1E91\" => \"z\"\n\n# ẓ  [LATIN SMALL LETTER Z WITH DOT BELOW]\n\"\\u1E93\" => \"z\"\n\n# ẕ  [LATIN SMALL LETTER Z WITH LINE BELOW]\n\"\\u1E95\" => \"z\"\n\n# ⓩ  [CIRCLED LATIN SMALL LETTER Z]\n\"\\u24E9\" => \"z\"\n\n# ⱬ  [LATIN SMALL LETTER Z WITH DESCENDER]\n\"\\u2C6C\" => \"z\"\n\n# ꝣ  [LATIN SMALL LETTER VISIGOTHIC Z]\n\"\\uA763\" => \"z\"\n\n# ｚ  [FULLWIDTH LATIN SMALL LETTER Z]\n\"\\uFF5A\" => \"z\"\n\n# ⒵  [PARENTHESIZED LATIN SMALL LETTER Z]\n\"\\u24B5\" => \"(z)\"\n\n# ⁰  [SUPERSCRIPT ZERO]\n\"\\u2070\" => \"0\"\n\n# ₀  [SUBSCRIPT ZERO]\n\"\\u2080\" => \"0\"\n\n# ⓪  [CIRCLED DIGIT ZERO]\n\"\\u24EA\" => \"0\"\n\n# ⓿  [NEGATIVE CIRCLED DIGIT ZERO]\n\"\\u24FF\" => \"0\"\n\n# ０  [FULLWIDTH DIGIT ZERO]\n\"\\uFF10\" => \"0\"\n\n# ¹  [SUPERSCRIPT ONE]\n\"\\u00B9\" => \"1\"\n\n# ₁  [SUBSCRIPT ONE]\n\"\\u2081\" => \"1\"\n\n# ①  [CIRCLED DIGIT ONE]\n\"\\u2460\" => \"1\"\n\n# ⓵  [DOUBLE CIRCLED DIGIT ONE]\n\"\\u24F5\" => \"1\"\n\n# ❶  [DINGBAT NEGATIVE CIRCLED DIGIT ONE]\n\"\\u2776\" => \"1\"\n\n# ➀  [DINGBAT CIRCLED SANS-SERIF DIGIT ONE]\n\"\\u2780\" => \"1\"\n\n# ➊  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ONE]\n\"\\u278A\" => \"1\"\n\n# １  [FULLWIDTH DIGIT ONE]\n\"\\uFF11\" => \"1\"\n\n# ⒈  [DIGIT ONE FULL STOP]\n\"\\u2488\" => \"1.\"\n\n# ⑴  [PARENTHESIZED DIGIT ONE]\n\"\\u2474\" => \"(1)\"\n\n# ²  [SUPERSCRIPT TWO]\n\"\\u00B2\" => \"2\"\n\n# ₂  [SUBSCRIPT TWO]\n\"\\u2082\" => \"2\"\n\n# ②  [CIRCLED DIGIT TWO]\n\"\\u2461\" => \"2\"\n\n# ⓶  [DOUBLE CIRCLED DIGIT TWO]\n\"\\u24F6\" => \"2\"\n\n# ❷  [DINGBAT NEGATIVE CIRCLED DIGIT TWO]\n\"\\u2777\" => \"2\"\n\n# ➁  [DINGBAT CIRCLED SANS-SERIF DIGIT TWO]\n\"\\u2781\" => \"2\"\n\n# ➋  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT TWO]\n\"\\u278B\" => \"2\"\n\n# ２  [FULLWIDTH DIGIT TWO]\n\"\\uFF12\" => \"2\"\n\n# ⒉  [DIGIT TWO FULL STOP]\n\"\\u2489\" => \"2.\"\n\n# ⑵  [PARENTHESIZED DIGIT TWO]\n\"\\u2475\" => \"(2)\"\n\n# ³  [SUPERSCRIPT THREE]\n\"\\u00B3\" => \"3\"\n\n# ₃  [SUBSCRIPT THREE]\n\"\\u2083\" => \"3\"\n\n# ③  [CIRCLED DIGIT THREE]\n\"\\u2462\" => \"3\"\n\n# ⓷  [DOUBLE CIRCLED DIGIT THREE]\n\"\\u24F7\" => \"3\"\n\n# ❸  [DINGBAT NEGATIVE CIRCLED DIGIT THREE]\n\"\\u2778\" => \"3\"\n\n# ➂  [DINGBAT CIRCLED SANS-SERIF DIGIT THREE]\n\"\\u2782\" => \"3\"\n\n# ➌  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT THREE]\n\"\\u278C\" => \"3\"\n\n# ３  [FULLWIDTH DIGIT THREE]\n\"\\uFF13\" => \"3\"\n\n# ⒊  [DIGIT THREE FULL STOP]\n\"\\u248A\" => \"3.\"\n\n# ⑶  [PARENTHESIZED DIGIT THREE]\n\"\\u2476\" => \"(3)\"\n\n# ⁴  [SUPERSCRIPT FOUR]\n\"\\u2074\" => \"4\"\n\n# ₄  [SUBSCRIPT FOUR]\n\"\\u2084\" => \"4\"\n\n# ④  [CIRCLED DIGIT FOUR]\n\"\\u2463\" => \"4\"\n\n# ⓸  [DOUBLE CIRCLED DIGIT FOUR]\n\"\\u24F8\" => \"4\"\n\n# ❹  [DINGBAT NEGATIVE CIRCLED DIGIT FOUR]\n\"\\u2779\" => \"4\"\n\n# ➃  [DINGBAT CIRCLED SANS-SERIF DIGIT FOUR]\n\"\\u2783\" => \"4\"\n\n# ➍  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FOUR]\n\"\\u278D\" => \"4\"\n\n# ４  [FULLWIDTH DIGIT FOUR]\n\"\\uFF14\" => \"4\"\n\n# ⒋  [DIGIT FOUR FULL STOP]\n\"\\u248B\" => \"4.\"\n\n# ⑷  [PARENTHESIZED DIGIT FOUR]\n\"\\u2477\" => \"(4)\"\n\n# ⁵  [SUPERSCRIPT FIVE]\n\"\\u2075\" => \"5\"\n\n# ₅  [SUBSCRIPT FIVE]\n\"\\u2085\" => \"5\"\n\n# ⑤  [CIRCLED DIGIT FIVE]\n\"\\u2464\" => \"5\"\n\n# ⓹  [DOUBLE CIRCLED DIGIT FIVE]\n\"\\u24F9\" => \"5\"\n\n# ❺  [DINGBAT NEGATIVE CIRCLED DIGIT FIVE]\n\"\\u277A\" => \"5\"\n\n# ➄  [DINGBAT CIRCLED SANS-SERIF DIGIT FIVE]\n\"\\u2784\" => \"5\"\n\n# ➎  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FIVE]\n\"\\u278E\" => \"5\"\n\n# ５  [FULLWIDTH DIGIT FIVE]\n\"\\uFF15\" => \"5\"\n\n# ⒌  [DIGIT FIVE FULL STOP]\n\"\\u248C\" => \"5.\"\n\n# ⑸  [PARENTHESIZED DIGIT FIVE]\n\"\\u2478\" => \"(5)\"\n\n# ⁶  [SUPERSCRIPT SIX]\n\"\\u2076\" => \"6\"\n\n# ₆  [SUBSCRIPT SIX]\n\"\\u2086\" => \"6\"\n\n# ⑥  [CIRCLED DIGIT SIX]\n\"\\u2465\" => \"6\"\n\n# ⓺  [DOUBLE CIRCLED DIGIT SIX]\n\"\\u24FA\" => \"6\"\n\n# ❻  [DINGBAT NEGATIVE CIRCLED DIGIT SIX]\n\"\\u277B\" => \"6\"\n\n# ➅  [DINGBAT CIRCLED SANS-SERIF DIGIT SIX]\n\"\\u2785\" => \"6\"\n\n# ➏  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SIX]\n\"\\u278F\" => \"6\"\n\n# ６  [FULLWIDTH DIGIT SIX]\n\"\\uFF16\" => \"6\"\n\n# ⒍  [DIGIT SIX FULL STOP]\n\"\\u248D\" => \"6.\"\n\n# ⑹  [PARENTHESIZED DIGIT SIX]\n\"\\u2479\" => \"(6)\"\n\n# ⁷  [SUPERSCRIPT SEVEN]\n\"\\u2077\" => \"7\"\n\n# ₇  [SUBSCRIPT SEVEN]\n\"\\u2087\" => \"7\"\n\n# ⑦  [CIRCLED DIGIT SEVEN]\n\"\\u2466\" => \"7\"\n\n# ⓻  [DOUBLE CIRCLED DIGIT SEVEN]\n\"\\u24FB\" => \"7\"\n\n# ❼  [DINGBAT NEGATIVE CIRCLED DIGIT SEVEN]\n\"\\u277C\" => \"7\"\n\n# ➆  [DINGBAT CIRCLED SANS-SERIF DIGIT SEVEN]\n\"\\u2786\" => \"7\"\n\n# ➐  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN]\n\"\\u2790\" => \"7\"\n\n# ７  [FULLWIDTH DIGIT SEVEN]\n\"\\uFF17\" => \"7\"\n\n# ⒎  [DIGIT SEVEN FULL STOP]\n\"\\u248E\" => \"7.\"\n\n# ⑺  [PARENTHESIZED DIGIT SEVEN]\n\"\\u247A\" => \"(7)\"\n\n# ⁸  [SUPERSCRIPT EIGHT]\n\"\\u2078\" => \"8\"\n\n# ₈  [SUBSCRIPT EIGHT]\n\"\\u2088\" => \"8\"\n\n# ⑧  [CIRCLED DIGIT EIGHT]\n\"\\u2467\" => \"8\"\n\n# ⓼  [DOUBLE CIRCLED DIGIT EIGHT]\n\"\\u24FC\" => \"8\"\n\n# ❽  [DINGBAT NEGATIVE CIRCLED DIGIT EIGHT]\n\"\\u277D\" => \"8\"\n\n# ➇  [DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT]\n\"\\u2787\" => \"8\"\n\n# ➑  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT EIGHT]\n\"\\u2791\" => \"8\"\n\n# ８  [FULLWIDTH DIGIT EIGHT]\n\"\\uFF18\" => \"8\"\n\n# ⒏  [DIGIT EIGHT FULL STOP]\n\"\\u248F\" => \"8.\"\n\n# ⑻  [PARENTHESIZED DIGIT EIGHT]\n\"\\u247B\" => \"(8)\"\n\n# ⁹  [SUPERSCRIPT NINE]\n\"\\u2079\" => \"9\"\n\n# ₉  [SUBSCRIPT NINE]\n\"\\u2089\" => \"9\"\n\n# ⑨  [CIRCLED DIGIT NINE]\n\"\\u2468\" => \"9\"\n\n# ⓽  [DOUBLE CIRCLED DIGIT NINE]\n\"\\u24FD\" => \"9\"\n\n# ❾  [DINGBAT NEGATIVE CIRCLED DIGIT NINE]\n\"\\u277E\" => \"9\"\n\n# ➈  [DINGBAT CIRCLED SANS-SERIF DIGIT NINE]\n\"\\u2788\" => \"9\"\n\n# ➒  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT NINE]\n\"\\u2792\" => \"9\"\n\n# ９  [FULLWIDTH DIGIT NINE]\n\"\\uFF19\" => \"9\"\n\n# ⒐  [DIGIT NINE FULL STOP]\n\"\\u2490\" => \"9.\"\n\n# ⑼  [PARENTHESIZED DIGIT NINE]\n\"\\u247C\" => \"(9)\"\n\n# ⑩  [CIRCLED NUMBER TEN]\n\"\\u2469\" => \"10\"\n\n# ⓾  [DOUBLE CIRCLED NUMBER TEN]\n\"\\u24FE\" => \"10\"\n\n# ❿  [DINGBAT NEGATIVE CIRCLED NUMBER TEN]\n\"\\u277F\" => \"10\"\n\n# ➉  [DINGBAT CIRCLED SANS-SERIF NUMBER TEN]\n\"\\u2789\" => \"10\"\n\n# ➓  [DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN]\n\"\\u2793\" => \"10\"\n\n# ⒑  [NUMBER TEN FULL STOP]\n\"\\u2491\" => \"10.\"\n\n# ⑽  [PARENTHESIZED NUMBER TEN]\n\"\\u247D\" => \"(10)\"\n\n# ⑪  [CIRCLED NUMBER ELEVEN]\n\"\\u246A\" => \"11\"\n\n# ⓫  [NEGATIVE CIRCLED NUMBER ELEVEN]\n\"\\u24EB\" => \"11\"\n\n# ⒒  [NUMBER ELEVEN FULL STOP]\n\"\\u2492\" => \"11.\"\n\n# ⑾  [PARENTHESIZED NUMBER ELEVEN]\n\"\\u247E\" => \"(11)\"\n\n# ⑫  [CIRCLED NUMBER TWELVE]\n\"\\u246B\" => \"12\"\n\n# ⓬  [NEGATIVE CIRCLED NUMBER TWELVE]\n\"\\u24EC\" => \"12\"\n\n# ⒓  [NUMBER TWELVE FULL STOP]\n\"\\u2493\" => \"12.\"\n\n# ⑿  [PARENTHESIZED NUMBER TWELVE]\n\"\\u247F\" => \"(12)\"\n\n# ⑬  [CIRCLED NUMBER THIRTEEN]\n\"\\u246C\" => \"13\"\n\n# ⓭  [NEGATIVE CIRCLED NUMBER THIRTEEN]\n\"\\u24ED\" => \"13\"\n\n# ⒔  [NUMBER THIRTEEN FULL STOP]\n\"\\u2494\" => \"13.\"\n\n# ⒀  [PARENTHESIZED NUMBER THIRTEEN]\n\"\\u2480\" => \"(13)\"\n\n# ⑭  [CIRCLED NUMBER FOURTEEN]\n\"\\u246D\" => \"14\"\n\n# ⓮  [NEGATIVE CIRCLED NUMBER FOURTEEN]\n\"\\u24EE\" => \"14\"\n\n# ⒕  [NUMBER FOURTEEN FULL STOP]\n\"\\u2495\" => \"14.\"\n\n# ⒁  [PARENTHESIZED NUMBER FOURTEEN]\n\"\\u2481\" => \"(14)\"\n\n# ⑮  [CIRCLED NUMBER FIFTEEN]\n\"\\u246E\" => \"15\"\n\n# ⓯  [NEGATIVE CIRCLED NUMBER FIFTEEN]\n\"\\u24EF\" => \"15\"\n\n# ⒖  [NUMBER FIFTEEN FULL STOP]\n\"\\u2496\" => \"15.\"\n\n# ⒂  [PARENTHESIZED NUMBER FIFTEEN]\n\"\\u2482\" => \"(15)\"\n\n# ⑯  [CIRCLED NUMBER SIXTEEN]\n\"\\u246F\" => \"16\"\n\n# ⓰  [NEGATIVE CIRCLED NUMBER SIXTEEN]\n\"\\u24F0\" => \"16\"\n\n# ⒗  [NUMBER SIXTEEN FULL STOP]\n\"\\u2497\" => \"16.\"\n\n# ⒃  [PARENTHESIZED NUMBER SIXTEEN]\n\"\\u2483\" => \"(16)\"\n\n# ⑰  [CIRCLED NUMBER SEVENTEEN]\n\"\\u2470\" => \"17\"\n\n# ⓱  [NEGATIVE CIRCLED NUMBER SEVENTEEN]\n\"\\u24F1\" => \"17\"\n\n# ⒘  [NUMBER SEVENTEEN FULL STOP]\n\"\\u2498\" => \"17.\"\n\n# ⒄  [PARENTHESIZED NUMBER SEVENTEEN]\n\"\\u2484\" => \"(17)\"\n\n# ⑱  [CIRCLED NUMBER EIGHTEEN]\n\"\\u2471\" => \"18\"\n\n# ⓲  [NEGATIVE CIRCLED NUMBER EIGHTEEN]\n\"\\u24F2\" => \"18\"\n\n# ⒙  [NUMBER EIGHTEEN FULL STOP]\n\"\\u2499\" => \"18.\"\n\n# ⒅  [PARENTHESIZED NUMBER EIGHTEEN]\n\"\\u2485\" => \"(18)\"\n\n# ⑲  [CIRCLED NUMBER NINETEEN]\n\"\\u2472\" => \"19\"\n\n# ⓳  [NEGATIVE CIRCLED NUMBER NINETEEN]\n\"\\u24F3\" => \"19\"\n\n# ⒚  [NUMBER NINETEEN FULL STOP]\n\"\\u249A\" => \"19.\"\n\n# ⒆  [PARENTHESIZED NUMBER NINETEEN]\n\"\\u2486\" => \"(19)\"\n\n# ⑳  [CIRCLED NUMBER TWENTY]\n\"\\u2473\" => \"20\"\n\n# ⓴  [NEGATIVE CIRCLED NUMBER TWENTY]\n\"\\u24F4\" => \"20\"\n\n# ⒛  [NUMBER TWENTY FULL STOP]\n\"\\u249B\" => \"20.\"\n\n# ⒇  [PARENTHESIZED NUMBER TWENTY]\n\"\\u2487\" => \"(20)\"\n\n# «  [LEFT-POINTING DOUBLE ANGLE QUOTATION MARK]\n\"\\u00AB\" => \"\\\"\"\n\n# »  [RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK]\n\"\\u00BB\" => \"\\\"\"\n\n# “  [LEFT DOUBLE QUOTATION MARK]\n\"\\u201C\" => \"\\\"\"\n\n# ”  [RIGHT DOUBLE QUOTATION MARK]\n\"\\u201D\" => \"\\\"\"\n\n# „  [DOUBLE LOW-9 QUOTATION MARK]\n\"\\u201E\" => \"\\\"\"\n\n# ″  [DOUBLE PRIME]\n\"\\u2033\" => \"\\\"\"\n\n# ‶  [REVERSED DOUBLE PRIME]\n\"\\u2036\" => \"\\\"\"\n\n# ❝  [HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT]\n\"\\u275D\" => \"\\\"\"\n\n# ❞  [HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT]\n\"\\u275E\" => \"\\\"\"\n\n# ❮  [HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT]\n\"\\u276E\" => \"\\\"\"\n\n# ❯  [HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT]\n\"\\u276F\" => \"\\\"\"\n\n# ＂  [FULLWIDTH QUOTATION MARK]\n\"\\uFF02\" => \"\\\"\"\n\n# ‘  [LEFT SINGLE QUOTATION MARK]\n\"\\u2018\" => \"\\'\"\n\n# ’  [RIGHT SINGLE QUOTATION MARK]\n\"\\u2019\" => \"\\'\"\n\n# ‚  [SINGLE LOW-9 QUOTATION MARK]\n\"\\u201A\" => \"\\'\"\n\n# ‛  [SINGLE HIGH-REVERSED-9 QUOTATION MARK]\n\"\\u201B\" => \"\\'\"\n\n# ′  [PRIME]\n\"\\u2032\" => \"\\'\"\n\n# ‵  [REVERSED PRIME]\n\"\\u2035\" => \"\\'\"\n\n# ‹  [SINGLE LEFT-POINTING ANGLE QUOTATION MARK]\n\"\\u2039\" => \"\\'\"\n\n# ›  [SINGLE RIGHT-POINTING ANGLE QUOTATION MARK]\n\"\\u203A\" => \"\\'\"\n\n# ❛  [HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT]\n\"\\u275B\" => \"\\'\"\n\n# ❜  [HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT]\n\"\\u275C\" => \"\\'\"\n\n# ＇  [FULLWIDTH APOSTROPHE]\n\"\\uFF07\" => \"\\'\"\n\n# ‐  [HYPHEN]\n\"\\u2010\" => \"-\"\n\n# ‑  [NON-BREAKING HYPHEN]\n\"\\u2011\" => \"-\"\n\n# ‒  [FIGURE DASH]\n\"\\u2012\" => \"-\"\n\n# –  [EN DASH]\n\"\\u2013\" => \"-\"\n\n# —  [EM DASH]\n\"\\u2014\" => \"-\"\n\n# ⁻  [SUPERSCRIPT MINUS]\n\"\\u207B\" => \"-\"\n\n# ₋  [SUBSCRIPT MINUS]\n\"\\u208B\" => \"-\"\n\n# －  [FULLWIDTH HYPHEN-MINUS]\n\"\\uFF0D\" => \"-\"\n\n# ⁅  [LEFT SQUARE BRACKET WITH QUILL]\n\"\\u2045\" => \"[\"\n\n# ❲  [LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT]\n\"\\u2772\" => \"[\"\n\n# ［  [FULLWIDTH LEFT SQUARE BRACKET]\n\"\\uFF3B\" => \"[\"\n\n# ⁆  [RIGHT SQUARE BRACKET WITH QUILL]\n\"\\u2046\" => \"]\"\n\n# ❳  [LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT]\n\"\\u2773\" => \"]\"\n\n# ］  [FULLWIDTH RIGHT SQUARE BRACKET]\n\"\\uFF3D\" => \"]\"\n\n# ⁽  [SUPERSCRIPT LEFT PARENTHESIS]\n\"\\u207D\" => \"(\"\n\n# ₍  [SUBSCRIPT LEFT PARENTHESIS]\n\"\\u208D\" => \"(\"\n\n# ❨  [MEDIUM LEFT PARENTHESIS ORNAMENT]\n\"\\u2768\" => \"(\"\n\n# ❪  [MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT]\n\"\\u276A\" => \"(\"\n\n# （  [FULLWIDTH LEFT PARENTHESIS]\n\"\\uFF08\" => \"(\"\n\n# ⸨  [LEFT DOUBLE PARENTHESIS]\n\"\\u2E28\" => \"((\"\n\n# ⁾  [SUPERSCRIPT RIGHT PARENTHESIS]\n\"\\u207E\" => \")\"\n\n# ₎  [SUBSCRIPT RIGHT PARENTHESIS]\n\"\\u208E\" => \")\"\n\n# ❩  [MEDIUM RIGHT PARENTHESIS ORNAMENT]\n\"\\u2769\" => \")\"\n\n# ❫  [MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT]\n\"\\u276B\" => \")\"\n\n# ）  [FULLWIDTH RIGHT PARENTHESIS]\n\"\\uFF09\" => \")\"\n\n# ⸩  [RIGHT DOUBLE PARENTHESIS]\n\"\\u2E29\" => \"))\"\n\n# ❬  [MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u276C\" => \"<\"\n\n# ❰  [HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u2770\" => \"<\"\n\n# ＜  [FULLWIDTH LESS-THAN SIGN]\n\"\\uFF1C\" => \"<\"\n\n# ❭  [MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u276D\" => \">\"\n\n# ❱  [HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u2771\" => \">\"\n\n# ＞  [FULLWIDTH GREATER-THAN SIGN]\n\"\\uFF1E\" => \">\"\n\n# ❴  [MEDIUM LEFT CURLY BRACKET ORNAMENT]\n\"\\u2774\" => \"{\"\n\n# ｛  [FULLWIDTH LEFT CURLY BRACKET]\n\"\\uFF5B\" => \"{\"\n\n# ❵  [MEDIUM RIGHT CURLY BRACKET ORNAMENT]\n\"\\u2775\" => \"}\"\n\n# ｝  [FULLWIDTH RIGHT CURLY BRACKET]\n\"\\uFF5D\" => \"}\"\n\n# ⁺  [SUPERSCRIPT PLUS SIGN]\n\"\\u207A\" => \"+\"\n\n# ₊  [SUBSCRIPT PLUS SIGN]\n\"\\u208A\" => \"+\"\n\n# ＋  [FULLWIDTH PLUS SIGN]\n\"\\uFF0B\" => \"+\"\n\n# ⁼  [SUPERSCRIPT EQUALS SIGN]\n\"\\u207C\" => \"=\"\n\n# ₌  [SUBSCRIPT EQUALS SIGN]\n\"\\u208C\" => \"=\"\n\n# ＝  [FULLWIDTH EQUALS SIGN]\n\"\\uFF1D\" => \"=\"\n\n# ！  [FULLWIDTH EXCLAMATION MARK]\n\"\\uFF01\" => \"!\"\n\n# ‼  [DOUBLE EXCLAMATION MARK]\n\"\\u203C\" => \"!!\"\n\n# ⁉  [EXCLAMATION QUESTION MARK]\n\"\\u2049\" => \"!?\"\n\n# ＃  [FULLWIDTH NUMBER SIGN]\n\"\\uFF03\" => \"#\"\n\n# ＄  [FULLWIDTH DOLLAR SIGN]\n\"\\uFF04\" => \"$\"\n\n# ⁒  [COMMERCIAL MINUS SIGN]\n\"\\u2052\" => \"%\"\n\n# ％  [FULLWIDTH PERCENT SIGN]\n\"\\uFF05\" => \"%\"\n\n# ＆  [FULLWIDTH AMPERSAND]\n\"\\uFF06\" => \"&\"\n\n# ⁎  [LOW ASTERISK]\n\"\\u204E\" => \"*\"\n\n# ＊  [FULLWIDTH ASTERISK]\n\"\\uFF0A\" => \"*\"\n\n# ，  [FULLWIDTH COMMA]\n\"\\uFF0C\" => \",\"\n\n# ．  [FULLWIDTH FULL STOP]\n\"\\uFF0E\" => \".\"\n\n# ⁄  [FRACTION SLASH]\n\"\\u2044\" => \"/\"\n\n# ／  [FULLWIDTH SOLIDUS]\n\"\\uFF0F\" => \"/\"\n\n# ：  [FULLWIDTH COLON]\n\"\\uFF1A\" => \":\"\n\n# ⁏  [REVERSED SEMICOLON]\n\"\\u204F\" => \";\"\n\n# ；  [FULLWIDTH SEMICOLON]\n\"\\uFF1B\" => \";\"\n\n# ？  [FULLWIDTH QUESTION MARK]\n\"\\uFF1F\" => \"?\"\n\n# ⁇  [DOUBLE QUESTION MARK]\n\"\\u2047\" => \"??\"\n\n# ⁈  [QUESTION EXCLAMATION MARK]\n\"\\u2048\" => \"?!\"\n\n# ＠  [FULLWIDTH COMMERCIAL AT]\n\"\\uFF20\" => \"@\"\n\n# ＼  [FULLWIDTH REVERSE SOLIDUS]\n\"\\uFF3C\" => \"\\\\\"\n\n# ‸  [CARET]\n\"\\u2038\" => \"^\"\n\n# ＾  [FULLWIDTH CIRCUMFLEX ACCENT]\n\"\\uFF3E\" => \"^\"\n\n# ＿  [FULLWIDTH LOW LINE]\n\"\\uFF3F\" => \"_\"\n\n# ⁓  [SWUNG DASH]\n\"\\u2053\" => \"~\"\n\n# ～  [FULLWIDTH TILDE]\n\"\\uFF5E\" => \"~\"\n\n################################################################\n# Below is the Perl script used to generate the above mappings #\n# from ASCIIFoldingFilter.java:                                #\n################################################################\n#\n# #!/usr/bin/perl\n#\n# use warnings;\n# use strict;\n# \n# my @source_chars = ();\n# my @source_char_descriptions = ();\n# my $target = '';\n# \n# while (<>) {\n#   if (/case\\s+'(\\\\u[A-F0-9]+)':\\s*\\/\\/\\s*(.*)/i) {\n#     push @source_chars, $1;\n#\t  push @source_char_descriptions, $2;\n#\t  next;\n#   }\n#   if (/output\\[[^\\]]+\\]\\s*=\\s*'(\\\\'|\\\\\\\\|.)'/) {\n#     $target .= $1;\n#     next;\n#   }\n#   if (/break;/) {\n#     $target = \"\\\\\\\"\" if ($target eq '\"');\n#     for my $source_char_num (0..$#source_chars) {\n#\t    print \"# $source_char_descriptions[$source_char_num]\\n\";\n#\t    print \"\\\"$source_chars[$source_char_num]\\\" => \\\"$target\\\"\\n\\n\";\n#\t  }\n#\t  @source_chars = ();\n#\t  @source_char_descriptions = ();\n#\t  $target = '';\n#   }\n# }\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/mapping-ISOLatin1Accent.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Syntax:\n#   \"source\" => \"target\"\n#     \"source\".length() > 0 (source cannot be empty.)\n#     \"target\".length() >= 0 (target can be empty.)\n\n# example:\n#   \"À\" => \"A\"\n#   \"\\u00C0\" => \"A\"\n#   \"\\u00C0\" => \"\\u0041\"\n#   \"ß\" => \"ss\"\n#   \"\\t\" => \" \"\n#   \"\\n\" => \"\"\n\n# À => A\n\"\\u00C0\" => \"A\"\n\n# Á => A\n\"\\u00C1\" => \"A\"\n\n# Â => A\n\"\\u00C2\" => \"A\"\n\n# Ã => A\n\"\\u00C3\" => \"A\"\n\n# Ä => A\n\"\\u00C4\" => \"A\"\n\n# Å => A\n\"\\u00C5\" => \"A\"\n\n# Æ => AE\n\"\\u00C6\" => \"AE\"\n\n# Ç => C\n\"\\u00C7\" => \"C\"\n\n# È => E\n\"\\u00C8\" => \"E\"\n\n# É => E\n\"\\u00C9\" => \"E\"\n\n# Ê => E\n\"\\u00CA\" => \"E\"\n\n# Ë => E\n\"\\u00CB\" => \"E\"\n\n# Ì => I\n\"\\u00CC\" => \"I\"\n\n# Í => I\n\"\\u00CD\" => \"I\"\n\n# Î => I\n\"\\u00CE\" => \"I\"\n\n# Ï => I\n\"\\u00CF\" => \"I\"\n\n# Ĳ => IJ\n\"\\u0132\" => \"IJ\"\n\n# Ð => D\n\"\\u00D0\" => \"D\"\n\n# Ñ => N\n\"\\u00D1\" => \"N\"\n\n# Ò => O\n\"\\u00D2\" => \"O\"\n\n# Ó => O\n\"\\u00D3\" => \"O\"\n\n# Ô => O\n\"\\u00D4\" => \"O\"\n\n# Õ => O\n\"\\u00D5\" => \"O\"\n\n# Ö => O\n\"\\u00D6\" => \"O\"\n\n# Ø => O\n\"\\u00D8\" => \"O\"\n\n# Œ => OE\n\"\\u0152\" => \"OE\"\n\n# Þ\n\"\\u00DE\" => \"TH\"\n\n# Ù => U\n\"\\u00D9\" => \"U\"\n\n# Ú => U\n\"\\u00DA\" => \"U\"\n\n# Û => U\n\"\\u00DB\" => \"U\"\n\n# Ü => U\n\"\\u00DC\" => \"U\"\n\n# Ý => Y\n\"\\u00DD\" => \"Y\"\n\n# Ÿ => Y\n\"\\u0178\" => \"Y\"\n\n# à => a\n\"\\u00E0\" => \"a\"\n\n# á => a\n\"\\u00E1\" => \"a\"\n\n# â => a\n\"\\u00E2\" => \"a\"\n\n# ã => a\n\"\\u00E3\" => \"a\"\n\n# ä => a\n\"\\u00E4\" => \"a\"\n\n# å => a\n\"\\u00E5\" => \"a\"\n\n# æ => ae\n\"\\u00E6\" => \"ae\"\n\n# ç => c\n\"\\u00E7\" => \"c\"\n\n# è => e\n\"\\u00E8\" => \"e\"\n\n# é => e\n\"\\u00E9\" => \"e\"\n\n# ê => e\n\"\\u00EA\" => \"e\"\n\n# ë => e\n\"\\u00EB\" => \"e\"\n\n# ì => i\n\"\\u00EC\" => \"i\"\n\n# í => i\n\"\\u00ED\" => \"i\"\n\n# î => i\n\"\\u00EE\" => \"i\"\n\n# ï => i\n\"\\u00EF\" => \"i\"\n\n# ĳ => ij\n\"\\u0133\" => \"ij\"\n\n# ð => d\n\"\\u00F0\" => \"d\"\n\n# ñ => n\n\"\\u00F1\" => \"n\"\n\n# ò => o\n\"\\u00F2\" => \"o\"\n\n# ó => o\n\"\\u00F3\" => \"o\"\n\n# ô => o\n\"\\u00F4\" => \"o\"\n\n# õ => o\n\"\\u00F5\" => \"o\"\n\n# ö => o\n\"\\u00F6\" => \"o\"\n\n# ø => o\n\"\\u00F8\" => \"o\"\n\n# œ => oe\n\"\\u0153\" => \"oe\"\n\n# ß => ss\n\"\\u00DF\" => \"ss\"\n\n# þ => th\n\"\\u00FE\" => \"th\"\n\n# ù => u\n\"\\u00F9\" => \"u\"\n\n# ú => u\n\"\\u00FA\" => \"u\"\n\n# û => u\n\"\\u00FB\" => \"u\"\n\n# ü => u\n\"\\u00FC\" => \"u\"\n\n# ý => y\n\"\\u00FD\" => \"y\"\n\n# ÿ => y\n\"\\u00FF\" => \"y\"\n\n# ﬀ => ff\n\"\\uFB00\" => \"ff\"\n\n# ﬁ => fi\n\"\\uFB01\" => \"fi\"\n\n# ﬂ => fl\n\"\\uFB02\" => \"fl\"\n\n# ﬃ => ffi\n\"\\uFB03\" => \"ffi\"\n\n# ﬄ => ffl\n\"\\uFB04\" => \"ffl\"\n\n# ﬅ => ft\n\"\\uFB05\" => \"ft\"\n\n# ﬆ => st\n\"\\uFB06\" => \"st\"\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n\n PERFORMANCE NOTE: this schema includes many optional features and should not\n be used for benchmarking.  To improve performance one could\n  - set stored=\"false\" for all fields possible (esp large fields) when you\n    only need to search on the field but don't need to return the original\n    value.\n  - set indexed=\"false\" if you don't need to search on the field, but only\n    return the field as a result of searching on other indexed fields.\n  - remove all unneeded copyField statements\n  - for best index size and searching performance, set \"index\" to false\n    for all general text fields, use copyField to copy them to the\n    catchall \"text\" field, and use that for searching.\n  - For maximum indexing performance, use the StreamingUpdateSolrServer\n    java client.\n  - Remember to run the JVM in server mode, and use a higher logging level\n    that avoids logging every request\n-->\n\n<schema name=\"example\" version=\"1.5\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       version=\"x.y\" is Solr's version number for the schema syntax and \n       semantics.  It should not normally be changed by applications.\n\n       1.0: multiValued attribute did not exist, all fields are multiValued \n            by nature\n       1.1: multiValued attribute introduced, false by default \n       1.2: omitTermFreqAndPositions attribute introduced, true by default \n            except for text fields.\n       1.3: removed optional field compress feature\n       1.4: autoGeneratePhraseQueries attribute introduced to drive QueryParser\n            behavior when a single string produces multiple tokens.  Defaults \n            to off for version >= 1.4\n       1.5: omitNorms defaults to true for primitive field types \n            (int, float, boolean, string...)\n     -->\n\n <fields>\n   <field name=\"id\" type=\"lowercase\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"rel1\" type=\"text_general\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"rel2\" type=\"text_general\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"inverted\" type=\"boolean\" indexed=\"false\" stored=\"true\" required=\"true\"/>\n   <field name=\"rel1_exact\" type=\"lowercase\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"rel2_exact\" type=\"lowercase\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"pmi\" type=\"float\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n   <field name=\"joint_count\" type=\"float\" indexed=\"false\" stored=\"true\" required=\"true\"/>\n   <field name=\"marg_count1\" type=\"float\" indexed=\"false\" stored=\"true\" required=\"true\"/>\n   <field name=\"marg_count2\" type=\"float\" indexed=\"false\" stored=\"true\" required=\"true\"/>\n   <field name=\"namespace\" type=\"string\" indexed=\"false\" stored=\"false\" required=\"false\"/>\n   <field name=\"_version_\" type=\"long\" indexed=\"true\"  stored=\"true\"/>\n </fields>\n\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>id</uniqueKey>\n   <copyField source=\"rel1\" dest=\"rel1_exact\"/>\n   <copyField source=\"rel2\" dest=\"rel2_exact\"/>\n\n <!-- DEPRECATED: The defaultSearchField is consulted by various query parsers when\n  parsing a query string that isn't explicit about the field.  Machine (non-user)\n  generated queries are best made explicit, or they can use the \"df\" request parameter\n  which takes precedence over this.\n  Note: Un-commenting defaultSearchField will be insufficient if your request handler\n  in solrconfig.xml defines \"df\", which takes precedence. That would need to be removed.\n <defaultSearchField>text</defaultSearchField> -->\n\n <!-- DEPRECATED: The defaultOperator (AND|OR) is consulted by various query parsers\n  when parsing a query string to determine if a clause of the query should be marked as\n  required or optional, assuming the clause isn't already marked by some operator.\n  The default is OR, which is generally assumed so it is not a good idea to change it\n  globally here.  The \"q.op\" request parameter takes precedence over this.\n <solrQueryParser defaultOperator=\"OR\"/> -->\n\n  <!-- copyField commands copy one field to another at the time a document\n        is added to the index.  It's used either to index the same field differently,\n        or to add multiple fields to the same field for easier/faster searching.  -->\n\n \n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in a\n       standard package such as org.apache.solr.analysis\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.\n       It supports doc values but in that case the field needs to be\n       single-valued and either required or have a default value.\n      -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" />\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\"/>\n\n    <!-- sortMissingLast and sortMissingFirst attributes are optional attributes are\n         currently supported on types that are sorted internally as strings\n         and on numeric types.\n\t     This includes \"string\",\"boolean\", and, as of 3.5 (and 4.x),\n\t     int, float, long, date, double, including the \"Trie\" variants.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n    <!--\n      Default numeric field types. For faster range queries, consider the tint/tfloat/tlong/tdouble types.\n\n      These fields support doc values, but they require the field to be\n      single-valued and either be required or have a default value.\n    -->\n    <fieldType name=\"int\" class=\"solr.TrieIntField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"float\" class=\"solr.TrieFloatField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"double\" class=\"solr.TrieDoubleField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n\n    <!--\n     Numeric field types that index each value at various levels of precision\n     to accelerate range queries when the number of values between the range\n     endpoints is large. See the javadoc for NumericRangeQuery for internal\n     implementation details.\n\n     Smaller precisionStep values (specified in bits) will lead to more tokens\n     indexed per value, slightly larger index size, and faster range queries.\n     A precisionStep of 0 disables indexing at different precision levels.\n    -->\n    <fieldType name=\"tint\" class=\"solr.TrieIntField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tfloat\" class=\"solr.TrieFloatField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tlong\" class=\"solr.TrieLongField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tdouble\" class=\"solr.TrieDoubleField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n\n         Note: For faster range queries, consider the tdate type\n      -->\n    <fieldType name=\"date\" class=\"solr.TrieDateField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n\n    <!-- A Trie based date field for faster date range queries and date faceting. -->\n    <fieldType name=\"tdate\" class=\"solr.TrieDateField\" precisionStep=\"6\" positionIncrementGap=\"0\"/>\n\n\n    <!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->\n    <fieldtype name=\"binary\" class=\"solr.BinaryField\"/>\n\n    <!--\n      Note:\n      These should only be used for compatibility with existing indexes (created with lucene or older Solr versions).\n      Use Trie based fields instead. As of Solr 3.5 and 4.x, Trie based fields support sortMissingFirst/Last\n      \n      Plain numeric field types that store and index the text\n      value verbatim (and hence don't correctly support range queries, since the\n      lexicographic ordering isn't equal to the numeric ordering)\n    -->\n    <fieldType name=\"pint\" class=\"solr.IntField\"/>\n    <fieldType name=\"plong\" class=\"solr.LongField\"/>\n    <fieldType name=\"pfloat\" class=\"solr.FloatField\"/>\n    <fieldType name=\"pdouble\" class=\"solr.DoubleField\"/>\n    <fieldType name=\"pdate\" class=\"solr.DateField\" sortMissingLast=\"true\"/>\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate pseudo-random orderings of your docs for sorting \n         or function purposes.  The ordering is generated based on the field\n         name and the version of the index. As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want different psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the field name in the request.\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element.\n         Example:\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A general text field that has reasonable, generic\n         cross-language defaults: it tokenizes with StandardTokenizer,\n\t removes stop words from case-insensitive \"stopwords.txt\"\n\t (empty by default), and down cases.  At query time only, it\n\t also applies synonyms. -->\n\n    <fieldType name=\"text_general\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" />\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" />\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field with defaults appropriate for English: it\n         tokenizes with StandardTokenizer, removes English stop words\n         (lang/stopwords_en.txt), down cases, protects words from protwords.txt, and\n         finally applies Porter's stemming.  The query time analyzer\n         also applies synonyms from synonyms.txt. -->\n    <fieldType name=\"text_en\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n\t<filter class=\"solr.EnglishPossessiveFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n\t<!-- Optionally you may want to use this less aggressive stemmer instead of PorterStemFilterFactory:\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n\t-->\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n\t<filter class=\"solr.EnglishPossessiveFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n\t<!-- Optionally you may want to use this less aggressive stemmer instead of PorterStemFilterFactory:\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n\t-->\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field with defaults appropriate for English, plus\n\t aggressive word-splitting and autophrase features enabled.\n\t This field is just like text_en, except it adds\n\t WordDelimiterFilter to enable splitting and matching of\n\t words on case-change, alpha numeric boundaries, and\n\t non-alphanumeric chars.  This means certain compound word\n\t cases will work, for example query \"wi fi\" will match\n\t document \"WiFi\" or \"wi-fi\".\n        -->\n    <fieldType name=\"text_en_splitting\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"true\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"text_en_splitting_tight\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"true\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_en.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <!-- this filter can remove any duplicate tokens that appear at the same position - sometimes\n             possible with WordDelimiterFilter in conjuncton with stemming. -->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Just like text_general except it reverses the characters of\n\t each token, to enable more efficient leading wildcard queries. -->\n    <fieldType name=\"text_general_rev\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ReversedWildcardFilterFactory\" withOriginal=\"true\"\n           maxPosAsterisk=\"3\" maxPosQuestion=\"2\" maxFractionAsterisk=\"0.33\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- charFilter + WhitespaceTokenizer  -->\n    <!--\n    <fieldType name=\"text_char_norm\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <charFilter class=\"solr.MappingCharFilterFactory\" mapping=\"mapping-ISOLatin1Accent.txt\"/>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n    -->\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back references to portions of the original\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             information on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n    \n    <fieldtype name=\"phonetic\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.DoubleMetaphoneFilterFactory\" inject=\"false\"/>\n      </analyzer>\n    </fieldtype>\n\n    <fieldtype name=\"payloads\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!--\n        The DelimitedPayloadTokenFilter can put payloads on tokens... for example,\n        a token of \"foo|1.4\"  would be indexed as \"foo\" with a payload of 1.4f\n        Attributes of the DelimitedPayloadTokenFilterFactory : \n         \"delimiter\" - a one character delimiter. Default is | (pipe)\n\t \"encoder\" - how to encode the following value into a playload\n\t    float -> org.apache.lucene.analysis.payloads.FloatEncoder,\n\t    integer -> o.a.l.a.p.IntegerEncoder\n\t    identity -> o.a.l.a.p.IdentityEncoder\n            Fully Qualified class name implementing PayloadEncoder, Encoder must have a no arg constructor.\n         -->\n        <filter class=\"solr.DelimitedPayloadTokenFilterFactory\" encoder=\"float\"/>\n      </analyzer>\n    </fieldtype>\n\n    <!-- lowercases the entire field value, keeping it as a single token.  -->\n    <fieldType name=\"lowercase\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n      </analyzer>\n    </fieldType>\n\n    <!-- \n      Example of using PathHierarchyTokenizerFactory at index time, so\n      queries for paths match documents at that path, or in descendent paths\n    -->\n    <fieldType name=\"descendent_path\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n\t<tokenizer class=\"solr.PathHierarchyTokenizerFactory\" delimiter=\"/\" />\n      </analyzer>\n      <analyzer type=\"query\">\n\t<tokenizer class=\"solr.KeywordTokenizerFactory\" />\n      </analyzer>\n    </fieldType>\n    <!-- \n      Example of using PathHierarchyTokenizerFactory at query time, so\n      queries for paths match documents at that path, or in ancestor paths\n    -->\n    <fieldType name=\"ancestor_path\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n\t<tokenizer class=\"solr.KeywordTokenizerFactory\" />\n      </analyzer>\n      <analyzer type=\"query\">\n\t<tokenizer class=\"solr.PathHierarchyTokenizerFactory\" delimiter=\"/\" />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed,\n         any data added to them will be ignored outright.  --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" multiValued=\"true\" class=\"solr.StrField\" />\n\n    <!-- This point type indexes the coordinates as separate fields (subFields)\n      If subFieldType is defined, it references a type, and a dynamic field\n      definition is created matching *___<typename>.  Alternately, if \n      subFieldSuffix is defined, that is used to create the subFields.\n      Example: if subFieldType=\"double\", then the coordinates would be\n        indexed in fields myloc_0___double,myloc_1___double.\n      Example: if subFieldSuffix=\"_d\" then the coordinates would be indexed\n        in fields myloc_0_d,myloc_1_d\n      The subFields are an implementation detail of the fieldType, and end\n      users normally should not need to know about them.\n     -->\n    <fieldType name=\"point\" class=\"solr.PointType\" dimension=\"2\" subFieldSuffix=\"_d\"/>\n\n    <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->\n    <fieldType name=\"location\" class=\"solr.LatLonType\" subFieldSuffix=\"_coordinate\"/>\n\n    <!-- An alternative geospatial field type new to Solr 4.  It supports multiValued and polygon shapes.\n      For more information about this and other Spatial fields new to Solr 4, see:\n      http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4\n    -->\n    <fieldType name=\"location_rpt\" class=\"solr.SpatialRecursivePrefixTreeFieldType\"\n        geo=\"true\" distErrPct=\"0.025\" maxDistErr=\"0.000009\" units=\"degrees\" />\n\n   <!-- Money/currency field type. See http://wiki.apache.org/solr/MoneyFieldType\n        Parameters:\n          defaultCurrency: Specifies the default currency if none specified. Defaults to \"USD\"\n          precisionStep:   Specifies the precisionStep for the TrieLong field used for the amount\n          providerClass:   Lets you plug in other exchange provider backend:\n                           solr.FileExchangeRateProvider is the default and takes one parameter:\n                             currencyConfig: name of an xml file holding exchange rates\n                           solr.OpenExchangeRatesOrgProvider uses rates from openexchangerates.org:\n                             ratesFileLocation: URL or path to rates JSON file (default latest.json on the web)\n                             refreshInterval: Number of minutes between each rates fetch (default: 1440, min: 60)\n   -->\n    <fieldType name=\"currency\" class=\"solr.CurrencyField\" precisionStep=\"8\" defaultCurrency=\"USD\" currencyConfig=\"currency.xml\" />\n             \n\n\n   <!-- some examples for different languages (generally ordered by ISO code) -->\n\n    <!-- Arabic -->\n    <fieldType name=\"text_ar\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- for any non-arabic -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ar.txt\" />\n        <!-- normalizes ﻯ to ﻱ, etc -->\n        <filter class=\"solr.ArabicNormalizationFilterFactory\"/>\n        <filter class=\"solr.ArabicStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Bulgarian -->\n    <fieldType name=\"text_bg\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/> \n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_bg.txt\" /> \n        <filter class=\"solr.BulgarianStemFilterFactory\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- Catalan -->\n    <fieldType name=\"text_ca\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_ca.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ca.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Catalan\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- CJK bigram (see text_ja for a Japanese configuration using morphological analysis) -->\n    <fieldType name=\"text_cjk\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- normalize width before bigram, as e.g. half-width dakuten combine  -->\n        <filter class=\"solr.CJKWidthFilterFactory\"/>\n        <!-- for any non-CJK -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.CJKBigramFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Czech -->\n    <fieldType name=\"text_cz\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_cz.txt\" />\n        <filter class=\"solr.CzechStemFilterFactory\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- Danish -->\n    <fieldType name=\"text_da\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_da.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Danish\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- German -->\n    <fieldType name=\"text_de\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_de.txt\" format=\"snowball\" />\n        <filter class=\"solr.GermanNormalizationFilterFactory\"/>\n        <filter class=\"solr.GermanLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.GermanMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"German2\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Greek -->\n    <fieldType name=\"text_el\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- greek specific lowercase for sigma -->\n        <filter class=\"solr.GreekLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"false\" words=\"lang/stopwords_el.txt\" />\n        <filter class=\"solr.GreekStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Spanish -->\n    <fieldType name=\"text_es\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_es.txt\" format=\"snowball\" />\n        <filter class=\"solr.SpanishLightStemFilterFactory\"/>\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Spanish\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Basque -->\n    <fieldType name=\"text_eu\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_eu.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Basque\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Persian -->\n    <fieldType name=\"text_fa\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <!-- for ZWNJ -->\n        <charFilter class=\"solr.PersianCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ArabicNormalizationFilterFactory\"/>\n        <filter class=\"solr.PersianNormalizationFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fa.txt\" />\n      </analyzer>\n    </fieldType>\n    \n    <!-- Finnish -->\n    <fieldType name=\"text_fi\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fi.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Finnish\"/>\n        <!-- less aggressive: <filter class=\"solr.FinnishLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- French -->\n    <fieldType name=\"text_fr\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_fr.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fr.txt\" format=\"snowball\" />\n        <filter class=\"solr.FrenchLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.FrenchMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"French\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Irish -->\n    <fieldType name=\"text_ga\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes d', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_ga.txt\"/>\n        <!-- removes n-, etc. position increments is intentionally false! -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/hyphenations_ga.txt\"/>\n        <filter class=\"solr.IrishLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ga.txt\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Irish\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Galician -->\n    <fieldType name=\"text_gl\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_gl.txt\" />\n        <filter class=\"solr.GalicianStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.GalicianMinimalStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Hindi -->\n    <fieldType name=\"text_hi\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!-- normalizes unicode representation -->\n        <filter class=\"solr.IndicNormalizationFilterFactory\"/>\n        <!-- normalizes variation in spelling -->\n        <filter class=\"solr.HindiNormalizationFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hi.txt\" />\n        <filter class=\"solr.HindiStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Hungarian -->\n    <fieldType name=\"text_hu\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hu.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Hungarian\"/>\n        <!-- less aggressive: <filter class=\"solr.HungarianLightStemFilterFactory\"/> -->   \n      </analyzer>\n    </fieldType>\n    \n    <!-- Armenian -->\n    <fieldType name=\"text_hy\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hy.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Armenian\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Indonesian -->\n    <fieldType name=\"text_id\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_id.txt\" />\n        <!-- for a less aggressive approach (only inflectional suffixes), set stemDerivational to false -->\n        <filter class=\"solr.IndonesianStemFilterFactory\" stemDerivational=\"true\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Italian -->\n    <fieldType name=\"text_it\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_it.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_it.txt\" format=\"snowball\" />\n        <filter class=\"solr.ItalianLightStemFilterFactory\"/>\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Italian\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Japanese using morphological analysis (see text_cjk for a configuration using bigramming)\n\n         NOTE: If you want to optimize search for precision, use default operator AND in your query\n         parser config with <solrQueryParser defaultOperator=\"AND\"/> further down in this file.  Use \n         OR if you would like to optimize for recall (default).\n    -->\n    <fieldType name=\"text_ja\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"false\">\n      <analyzer>\n      <!-- Kuromoji Japanese morphological analyzer/tokenizer (JapaneseTokenizer)\n\n           Kuromoji has a search mode (default) that does segmentation useful for search.  A heuristic\n           is used to segment compounds into its parts and the compound itself is kept as synonym.\n\n           Valid values for attribute mode are:\n              normal: regular segmentation\n              search: segmentation useful for search with synonyms compounds (default)\n            extended: same as search mode, but unigrams unknown words (experimental)\n\n           For some applications it might be good to use search mode for indexing and normal mode for\n           queries to reduce recall and prevent parts of compounds from being matched and highlighted.\n           Use <analyzer type=\"index\"> and <analyzer type=\"query\"> for this and mode normal in query.\n\n           Kuromoji also has a convenient user dictionary feature that allows overriding the statistical\n           model with your own entries for segmentation, part-of-speech tags and readings without a need\n           to specify weights.  Notice that user dictionaries have not been subject to extensive testing.\n\n           User dictionary attributes are:\n                     userDictionary: user dictionary filename\n             userDictionaryEncoding: user dictionary encoding (default is UTF-8)\n\n           See lang/userdict_ja.txt for a sample user dictionary file.\n\n           Punctuation characters are discarded by default.  Use discardPunctuation=\"false\" to keep them.\n\n           See http://wiki.apache.org/solr/JapaneseLanguageSupport for more on Japanese language support.\n        -->\n        <tokenizer class=\"solr.JapaneseTokenizerFactory\" mode=\"search\"/>\n        <!--<tokenizer class=\"solr.JapaneseTokenizerFactory\" mode=\"search\" userDictionary=\"lang/userdict_ja.txt\"/>-->\n        <!-- Reduces inflected verbs and adjectives to their base/dictionary forms (辞書形) -->\n        <filter class=\"solr.JapaneseBaseFormFilterFactory\"/>\n        <!-- Removes tokens with certain part-of-speech tags -->\n        <filter class=\"solr.JapanesePartOfSpeechStopFilterFactory\" tags=\"lang/stoptags_ja.txt\" />\n        <!-- Normalizes full-width romaji to half-width and half-width kana to full-width (Unicode NFKC subset) -->\n        <filter class=\"solr.CJKWidthFilterFactory\"/>\n        <!-- Removes common tokens typically not useful for search, but have a negative effect on ranking -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ja.txt\" />\n        <!-- Normalizes common katakana spelling variations by removing any last long sound character (U+30FC) -->\n        <filter class=\"solr.JapaneseKatakanaStemFilterFactory\" minimumLength=\"4\"/>\n        <!-- Lower-cases romaji characters -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Latvian -->\n    <fieldType name=\"text_lv\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_lv.txt\" />\n        <filter class=\"solr.LatvianStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Dutch -->\n    <fieldType name=\"text_nl\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_nl.txt\" format=\"snowball\" />\n        <filter class=\"solr.StemmerOverrideFilterFactory\" dictionary=\"lang/stemdict_nl.txt\" ignoreCase=\"false\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Dutch\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Norwegian -->\n    <fieldType name=\"text_no\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_no.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Norwegian\"/>\n        <!-- less aggressive: <filter class=\"solr.NorwegianLightStemFilterFactory\" variant=\"nb\"/> -->\n        <!-- singular/plural: <filter class=\"solr.NorwegianMinimalStemFilterFactory\" variant=\"nb\"/> -->\n        <!-- The \"light\" and \"minimal\" stemmers support variants: nb=Bokmål, nn=Nynorsk, no=Both -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Portuguese -->\n    <fieldType name=\"text_pt\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_pt.txt\" format=\"snowball\" />\n        <filter class=\"solr.PortugueseLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.PortugueseMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Portuguese\"/> -->\n        <!-- most aggressive: <filter class=\"solr.PortugueseStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Romanian -->\n    <fieldType name=\"text_ro\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ro.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Romanian\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Russian -->\n    <fieldType name=\"text_ru\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ru.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Russian\"/>\n        <!-- less aggressive: <filter class=\"solr.RussianLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Swedish -->\n    <fieldType name=\"text_sv\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_sv.txt\" format=\"snowball\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Swedish\"/>\n        <!-- less aggressive: <filter class=\"solr.SwedishLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Thai -->\n    <fieldType name=\"text_th\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ThaiWordFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_th.txt\" />\n      </analyzer>\n    </fieldType>\n    \n    <!-- Turkish -->\n    <fieldType name=\"text_tr\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.TurkishLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"false\" words=\"lang/stopwords_tr.txt\" />\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Turkish\"/>\n      </analyzer>\n    </fieldType>\n\n </types>\n  \n  <!-- Similarity is the scoring routine for each document vs. a query.\n       A custom Similarity or SimilarityFactory may be specified here, but \n       the default is fine for most applications.  \n       For more info: http://wiki.apache.org/solr/SchemaXml#Similarity\n    -->\n  <!--\n     <similarity class=\"com.example.solr.CustomSimilarityFactory\">\n       <str name=\"paramkey\">param value</str>\n     </similarity>\n    -->\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- \n     For more details about configurations options that may appear in\n     this file, see http://wiki.apache.org/solr/SolrConfigXml. \n-->\n<config>\n  <!-- In all configuration below, a prefix of \"solr.\" for class names\n       is an alias that causes solr to search appropriate packages,\n       including org.apache.solr.(search|update|request|core|analysis)\n\n       You may also specify a fully qualified Java classname if you\n       have your own custom plugins.\n    -->\n\n  <!-- Controls what version of Lucene various components of Solr\n       adhere to.  Generally, you want to use the latest version to\n       get all bug fixes and improvements. It is highly recommended\n       that you fully re-index after changing this setting as it can\n       affect both how text is indexed and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!-- <lib/> directives can be used to instruct Solr to load an Jars\n       identified and use them to resolve any \"plugins\" specified in\n       your solrconfig.xml or schema.xml (ie: Analyzers, Request\n       Handlers, etc...).\n\n       All directories and paths are resolved relative to the\n       instanceDir.\n\n       Please note that <lib/> directives are processed in the order\n       that they appear in your solrconfig.xml file, and are \"stacked\" \n       on top of each other when building a ClassLoader - so if you have \n       plugin jars with dependencies on other jars, the \"lower level\" \n       dependency jars should be loaded first.\n\n       If a \"./lib\" directory exists in your instanceDir, all files\n       found in it are included as if you had used the following\n       syntax...\n       \n              <lib dir=\"./lib\" />\n    -->\n\n  <!-- A 'dir' option by itself adds any files found in the directory \n       to the classpath, this is useful for including all jars in a\n       directory.\n\n       When a 'regex' is specified in addition to a 'dir', only the\n       files in that directory which completely match the regex\n       (anchored on both ends) will be included.\n\n       The examples below can be used to load some solr-contribs along \n       with their external dependencies.\n    -->\n  <lib dir=\"../../../contrib/extraction/lib\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-cell-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/clustering/lib/\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-clustering-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/langid/lib/\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-langid-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/velocity/lib\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-velocity-\\d.*\\.jar\" />\n\n  <!-- If a 'dir' option (with or without a regex) is used and nothing\n       is found that matches, a warning will be logged.\n    -->\n  <lib dir=\"/non/existent/dir/yields/warning\" /> \n\n  <!-- an exact 'path' can be used instead of a 'dir' to specify a \n       specific jar file.  This will cause a serious error to be logged \n       if it can't be loaded.\n    -->\n  <!--\n     <lib path=\"../a-jar-that-does-not-exist.jar\" /> \n  -->\n  \n  <!-- Data Directory\n\n       Used to specify an alternate directory to hold all index data\n       other than the default ./data under the Solr home.  If\n       replication is in use, this should match the replication\n       configuration.\n    -->\n  <dataDir>${solr.data.dir:}</dataDir>\n\n\n  <!-- The DirectoryFactory to use for indexes.\n       \n       solr.StandardDirectoryFactory is filesystem\n       based and tries to pick the best implementation for the current\n       JVM and platform.  solr.NRTCachingDirectoryFactory, the default,\n       wraps solr.StandardDirectoryFactory and caches small files in memory\n       for better NRT performance.\n\n       One can force a particular implementation via solr.MMapDirectoryFactory,\n       solr.NIOFSDirectoryFactory, or solr.SimpleFSDirectoryFactory.\n\n       solr.RAMDirectoryFactory is memory based, not\n       persistent, and doesn't work with replication.\n    -->\n  <directoryFactory name=\"DirectoryFactory\" \n                    class=\"${solr.directoryFactory:solr.NRTCachingDirectoryFactory}\"/> \n\n  <!-- The CodecFactory for defining the format of the inverted index.\n       The default implementation is SchemaCodecFactory, which is the official Lucene\n       index format, but hooks into the schema to provide per-field customization of\n       the postings lists and per-document values in the fieldType element\n       (postingsFormat/docValuesFormat). Note that most of the alternative implementations\n       are experimental, so if you choose to customize the index format, its a good\n       idea to convert back to the official format e.g. via IndexWriter.addIndexes(IndexReader)\n       before upgrading to a newer version to avoid unnecessary reindexing.\n  -->\n  <codecFactory class=\"solr.SchemaCodecFactory\"/>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n       Index Config - These settings control low-level behavior of indexing\n       Most example settings here show the default value, but are commented\n       out, to more easily see where customizations have been made.\n       \n       Note: This replaces <indexDefaults> and <mainIndex> from older versions\n       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->\n  <indexConfig>\n    <!-- maxFieldLength was removed in 4.0. To get similar behavior, include a \n         LimitTokenCountFilterFactory in your fieldType definition. E.g. \n     <filter class=\"solr.LimitTokenCountFilterFactory\" maxTokenCount=\"10000\"/>\n    -->\n    <!-- Maximum time to wait for a write lock (ms) for an IndexWriter. Default: 1000 -->\n    <!-- <writeLockTimeout>1000</writeLockTimeout>  -->\n\n    <!-- The maximum number of simultaneous threads that may be\n         indexing documents at once in IndexWriter; if more than this\n         many threads arrive they will wait for others to finish.\n         Default in Solr/Lucene is 8. -->\n    <!-- <maxIndexingThreads>8</maxIndexingThreads>  -->\n\n    <!-- Expert: Enabling compound file will use less files for the index, \n         using fewer file descriptors on the expense of performance decrease. \n         Default in Lucene is \"true\". Default in Solr is \"false\" (since 3.6) -->\n    <!-- <useCompoundFile>false</useCompoundFile> -->\n\n    <!-- ramBufferSizeMB sets the amount of RAM that may be used by Lucene\n         indexing for buffering added documents and deletions before they are\n         flushed to the Directory.\n         maxBufferedDocs sets a limit on the number of documents buffered\n         before flushing.\n         If both ramBufferSizeMB and maxBufferedDocs is set, then\n         Lucene will flush based on whichever limit is hit first.  -->\n    <!-- <ramBufferSizeMB>100</ramBufferSizeMB> -->\n    <!-- <maxBufferedDocs>1000</maxBufferedDocs> -->\n\n    <!-- Expert: Merge Policy \n         The Merge Policy in Lucene controls how merging of segments is done.\n         The default since Solr/Lucene 3.3 is TieredMergePolicy.\n         The default since Lucene 2.3 was the LogByteSizeMergePolicy,\n         Even older versions of Lucene used LogDocMergePolicy.\n      -->\n    <!--\n        <mergePolicy class=\"org.apache.lucene.index.TieredMergePolicy\">\n          <int name=\"maxMergeAtOnce\">10</int>\n          <int name=\"segmentsPerTier\">10</int>\n        </mergePolicy>\n      -->\n       \n    <!-- Merge Factor\n         The merge factor controls how many segments will get merged at a time.\n         For TieredMergePolicy, mergeFactor is a convenience parameter which\n         will set both MaxMergeAtOnce and SegmentsPerTier at once.\n         For LogByteSizeMergePolicy, mergeFactor decides how many new segments\n         will be allowed before they are merged into one.\n         Default is 10 for both merge policies.\n      -->\n    <!-- \n    <mergeFactor>10</mergeFactor>\n      -->\n\n    <!-- Expert: Merge Scheduler\n         The Merge Scheduler in Lucene controls how merges are\n         performed.  The ConcurrentMergeScheduler (Lucene 2.3 default)\n         can perform merges in the background using separate threads.\n         The SerialMergeScheduler (Lucene 2.2 default) does not.\n     -->\n    <!-- \n       <mergeScheduler class=\"org.apache.lucene.index.ConcurrentMergeScheduler\"/>\n       -->\n\n    <!-- LockFactory \n\n         This option specifies which Lucene LockFactory implementation\n         to use.\n      \n         single = SingleInstanceLockFactory - suggested for a\n                  read-only index or when there is no possibility of\n                  another process trying to modify the index.\n         native = NativeFSLockFactory - uses OS native file locking.\n                  Do not use when multiple solr webapps in the same\n                  JVM are attempting to share a single index.\n         simple = SimpleFSLockFactory  - uses a plain file for locking\n\n         Defaults: 'native' is default for Solr3.6 and later, otherwise\n                   'simple' is the default\n\n         More details on the nuances of each LockFactory...\n         http://wiki.apache.org/lucene-java/AvailableLockFactories\n    -->\n    <lockType>${solr.lock.type:native}</lockType>\n\n    <!-- Unlock On Startup\n\n         If true, unlock any held write or commit locks on startup.\n         This defeats the locking mechanism that allows multiple\n         processes to safely access a lucene index, and should be used\n         with care. Default is \"false\".\n\n         This is not needed if lock type is 'single'\n     -->\n    <!--\n    <unlockOnStartup>false</unlockOnStartup>\n      -->\n    \n    <!-- Expert: Controls how often Lucene loads terms into memory\n         Default is 128 and is likely good for most everyone.\n      -->\n    <!-- <termIndexInterval>128</termIndexInterval> -->\n\n    <!-- If true, IndexReaders will be reopened (often more efficient)\n         instead of closed and then opened. Default: true\n      -->\n    <!-- \n    <reopenReaders>true</reopenReaders>\n      -->\n\n    <!-- Commit Deletion Policy\n         Custom deletion policies can be specified here. The class must\n         implement org.apache.lucene.index.IndexDeletionPolicy.\n\n         The default Solr IndexDeletionPolicy implementation supports\n         deleting index commit points on number of commits, age of\n         commit point and optimized status.\n         \n         The latest commit point should always be preserved regardless\n         of the criteria.\n    -->\n    <!-- \n    <deletionPolicy class=\"solr.SolrDeletionPolicy\">\n    -->\n      <!-- The number of commit points to be kept -->\n      <!-- <str name=\"maxCommitsToKeep\">1</str> -->\n      <!-- The number of optimized commit points to be kept -->\n      <!-- <str name=\"maxOptimizedCommitsToKeep\">0</str> -->\n      <!--\n          Delete all commit points once they have reached the given age.\n          Supports DateMathParser syntax e.g.\n        -->\n      <!--\n         <str name=\"maxCommitAge\">30MINUTES</str>\n         <str name=\"maxCommitAge\">1DAY</str>\n      -->\n    <!-- \n    </deletionPolicy>\n    -->\n\n    <!-- Lucene Infostream\n       \n         To aid in advanced debugging, Lucene provides an \"InfoStream\"\n         of detailed information when indexing.\n\n         Setting The value to true will instruct the underlying Lucene\n         IndexWriter to write its debugging info the specified file\n      -->\n     <!-- <infoStream file=\"INFOSTREAM.txt\">false</infoStream> --> \n  </indexConfig>\n\n\n  <!-- JMX\n       \n       This example enables JMX if and only if an existing MBeanServer\n       is found, use this if you want to configure JMX through JVM\n       parameters. Remove this to disable exposing Solr configuration\n       and statistics to JMX.\n\n       For more details see http://wiki.apache.org/solr/SolrJmx\n    -->\n  <jmx />\n  <!-- If you want to connect to a particular server, specify the\n       agentId \n    -->\n  <!-- <jmx agentId=\"myAgent\" /> -->\n  <!-- If you want to start a new MBeanServer, specify the serviceUrl -->\n  <!-- <jmx serviceUrl=\"service:jmx:rmi:///jndi/rmi://localhost:9999/solr\"/>\n    -->\n\n  <!-- The default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- Enables a transaction log, used for real-time get, durability, and\n         and solr cloud replica recovery.  The log can grow as big as\n         uncommitted changes to the index, so use of a hard autoCommit\n         is recommended (see below).\n         \"dir\" - the target directory for transaction logs, defaults to the\n                solr data directory.  --> \n    <updateLog>\n      <str name=\"dir\">${solr.ulog.dir:}</str>\n    </updateLog>\n \n    <!-- AutoCommit\n\n         Perform a hard commit automatically under certain conditions.\n         Instead of enabling autoCommit, consider using \"commitWithin\"\n         when adding documents. \n\n         http://wiki.apache.org/solr/UpdateXmlMessages\n\n         maxDocs - Maximum number of documents to add since the last\n                   commit before automatically triggering a new commit.\n\n         maxTime - Maximum amount of time in ms that is allowed to pass\n                   since a document was added before automatically\n                   triggering a new commit. \n         openSearcher - if false, the commit causes recent index changes\n           to be flushed to stable storage, but does not cause a new\n           searcher to be opened to make those changes visible.\n\n         If the updateLog is enabled, then it's highly recommended to\n         have some sort of hard autoCommit to limit the log size.\n      -->\n     <autoCommit> \n       <maxTime>15000</maxTime> \n       <openSearcher>false</openSearcher> \n     </autoCommit>\n\n    <!-- softAutoCommit is like autoCommit except it causes a\n         'soft' commit which only ensures that changes are visible\n         but does not ensure that data is synced to disk.  This is\n         faster and more near-realtime friendly than a hard commit.\n      -->\n     <!--\n       <autoSoftCommit> \n         <maxTime>1000</maxTime> \n       </autoSoftCommit>\n      -->\n\n    <!-- Update Related Event Listeners\n         \n         Various IndexWriter related events can trigger Listeners to\n         take actions.\n\n         postCommit - fired after every commit or optimize command\n         postOptimize - fired after every optimize command\n      -->\n    <!-- The RunExecutableListener executes an external command from a\n         hook such as postCommit or postOptimize.\n         \n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. (default=\".\")\n         wait - the calling thread waits until the executable returns. \n                (default=\"true\")\n         args - the arguments to pass to the program.  (default is none)\n         env - environment variables to set.  (default is none)\n      -->\n    <!-- This example shows how RunExecutableListener could be used\n         with the script based replication...\n         http://wiki.apache.org/solr/CollectionDistribution\n      -->\n    <!--\n       <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n         <str name=\"exe\">solr/bin/snapshooter</str>\n         <str name=\"dir\">.</str>\n         <bool name=\"wait\">true</bool>\n         <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n         <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n       </listener>\n      -->\n\n  </updateHandler>\n  \n  <!-- IndexReaderFactory\n\n       Use the following format to specify a custom IndexReaderFactory,\n       which allows for alternate IndexReader implementations.\n\n       ** Experimental Feature **\n\n       Please note - Using a custom IndexReaderFactory may prevent\n       certain other features from working. The API to\n       IndexReaderFactory may change without warning or may even be\n       removed from future releases if the problems cannot be\n       resolved.\n\n\n       ** Features that may not work with custom IndexReaderFactory **\n\n       The ReplicationHandler assumes a disk-resident index. Using a\n       custom IndexReader implementation may cause incompatibility\n       with ReplicationHandler and may cause replication to not work\n       correctly. See SOLR-1366 for details.\n\n    -->\n  <!--\n  <indexReaderFactory name=\"IndexReaderFactory\" class=\"package.class\">\n    <str name=\"someArg\">Some Value</str>\n  </indexReaderFactory >\n  -->\n  <!-- By explicitly declaring the Factory, the termIndexDivisor can\n       be specified.\n    -->\n  <!--\n     <indexReaderFactory name=\"IndexReaderFactory\" \n                         class=\"solr.StandardIndexReaderFactory\">\n       <int name=\"setTermIndexDivisor\">12</int>\n     </indexReaderFactory >\n    -->\n\n  <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n       Query section - these settings control query time things like caches\n       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->\n  <query>\n    <!-- Max Boolean Clauses\n\n         Maximum number of clauses in each BooleanQuery,  an exception\n         is thrown if exceeded.\n\n         ** WARNING **\n         \n         This option actually modifies a global Lucene property that\n         will affect all SolrCores.  If multiple solrconfig.xml files\n         disagree on this property, the value at any given moment will\n         be based on the last SolrCore to be initialized.\n         \n      -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n\n    <!-- Solr Internal Query Caches\n\n         There are two implementations of cache available for Solr,\n         LRUCache, based on a synchronized LinkedHashMap, and\n         FastLRUCache, based on a ConcurrentHashMap.  \n\n         FastLRUCache has faster gets and slower puts in single\n         threaded operation and thus is generally faster than LRUCache\n         when the hit ratio of the cache is high (> 75%), and may be\n         faster under other scenarios on multi-cpu systems.\n    -->\n\n    <!-- Filter Cache\n\n         Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.  When a\n         new searcher is opened, its caches may be prepopulated or\n         \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For\n         LRUCache, the autowarmed items will be the most recently\n         accessed items.\n\n         Parameters:\n           class - the SolrCache implementation LRUCache or\n               (LRUCache or FastLRUCache)\n           size - the maximum number of entries in the cache\n           initialSize - the initial capacity (number of entries) of\n               the cache.  (see java.util.HashMap)\n           autowarmCount - the number of entries to prepopulate from\n               and old cache.  \n      -->\n    <filterCache class=\"solr.FastLRUCache\"\n                 size=\"512\"\n                 initialSize=\"512\"\n                 autowarmCount=\"0\"/>\n\n    <!-- Query Result Cache\n         \n         Caches results of searches - ordered lists of document ids\n         (DocList) based on a query, a sort, and the range of documents requested.  \n      -->\n    <queryResultCache class=\"solr.LRUCache\"\n                     size=\"512\"\n                     initialSize=\"512\"\n                     autowarmCount=\"0\"/>\n   \n    <!-- Document Cache\n\n         Caches Lucene Document objects (the stored fields for each\n         document).  Since Lucene internal document ids are transient,\n         this cache will not be autowarmed.  \n      -->\n    <documentCache class=\"solr.LRUCache\"\n                   size=\"512\"\n                   initialSize=\"512\"\n                   autowarmCount=\"0\"/>\n    \n    <!-- Field Value Cache\n         \n         Cache used to hold field values that are quickly accessible\n         by document id.  The fieldValueCache is created by default\n         even if not configured here.\n      -->\n    <!--\n       <fieldValueCache class=\"solr.FastLRUCache\"\n                        size=\"512\"\n                        autowarmCount=\"128\"\n                        showItems=\"32\" />\n      -->\n\n    <!-- Custom Cache\n\n         Example of a generic cache.  These caches may be accessed by\n         name through SolrIndexSearcher.getCache(),cacheLookup(), and\n         cacheInsert().  The purpose is to enable easy caching of\n         user/application level data.  The regenerator argument should\n         be specified as an implementation of solr.CacheRegenerator \n         if autowarming is desired.  \n      -->\n    <!--\n       <cache name=\"myUserCache\"\n              class=\"solr.LRUCache\"\n              size=\"4096\"\n              initialSize=\"1024\"\n              autowarmCount=\"1024\"\n              regenerator=\"com.mycompany.MyRegenerator\"\n              />\n      -->\n\n\n    <!-- Lazy Field Loading\n\n         If true, stored fields that are not requested will be loaded\n         lazily.  This can result in a significant speed improvement\n         if the usual case is to not load all stored fields,\n         especially if the skipped fields are large compressed text\n         fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n   <!-- Use Filter For Sorted Query\n\n        A possible optimization that attempts to use a filter to\n        satisfy a search.  If the requested sort does not include\n        score, then the filterCache will be checked for a filter\n        matching the query. If found, the filter will be used as the\n        source of document ids, and then the sort will be applied to\n        that.\n\n        For most situations, this will not be useful unless you\n        frequently get the same search repeatedly with different sort\n        options, and none of them ever use \"score\"\n     -->\n   <!--\n      <useFilterForSortedQuery>true</useFilterForSortedQuery>\n     -->\n\n   <!-- Result Window Size\n\n        An optimization for use with the queryResultCache.  When a search\n        is requested, a superset of the requested number of document ids\n        are collected.  For example, if a search for a particular query\n        requests matching documents 10 through 19, and queryWindowSize is 50,\n        then documents 0 through 49 will be collected and cached.  Any further\n        requests in that range can be satisfied via the cache.  \n     -->\n   <queryResultWindowSize>20</queryResultWindowSize>\n\n   <!-- Maximum number of documents to cache for any entry in the\n        queryResultCache. \n     -->\n   <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n   <!-- Query Related Event Listeners\n\n        Various IndexSearcher related events can trigger Listeners to\n        take actions.\n\n        newSearcher - fired whenever a new searcher is being prepared\n        and there is a current searcher handling requests (aka\n        registered).  It can be used to prime certain caches to\n        prevent long request times for certain requests.\n\n        firstSearcher - fired whenever a new searcher is being\n        prepared but there is no current registered searcher to handle\n        requests or to gain autowarming data from.\n\n        \n     -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. \n      -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <!--\n           <lst><str name=\"q\">solr</str><str name=\"sort\">price asc</str></lst>\n           <lst><str name=\"q\">rocks</str><str name=\"sort\">weight asc</str></lst>\n          -->\n      </arr>\n    </listener>\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst>\n          <str name=\"q\">static firstSearcher warming in solrconfig.xml</str>\n        </lst>\n      </arr>\n    </listener>\n\n    <!-- Use Cold Searcher\n\n         If a search request comes in and there is no current\n         registered searcher, then immediately register the still\n         warming searcher and use it.  If \"false\" then all requests\n         will block until the first searcher is done warming.\n      -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Max Warming Searchers\n         \n         Maximum number of searchers that may be warming in the\n         background concurrently.  An error is returned if this limit\n         is exceeded.\n\n         Recommend values of 1-2 for read-only slaves, higher for\n         masters w/o cache warming.\n      -->\n    <maxWarmingSearchers>2</maxWarmingSearchers>\n\n  </query>\n\n\n  <!-- Request Dispatcher\n\n       This section contains instructions for how the SolrDispatchFilter\n       should behave when processing requests for this SolrCore.\n\n       handleSelect is a legacy option that affects the behavior of requests\n       such as /select?qt=XXX\n\n       handleSelect=\"true\" will cause the SolrDispatchFilter to process\n       the request and dispatch the query to a handler specified by the \n       \"qt\" param, assuming \"/select\" isn't already registered.\n\n       handleSelect=\"false\" will cause the SolrDispatchFilter to\n       ignore \"/select\" requests, resulting in a 404 unless a handler\n       is explicitly registered with the name \"/select\"\n\n       handleSelect=\"true\" is not recommended for new users, but is the default\n       for backwards compatibility\n    -->\n  <requestDispatcher handleSelect=\"false\" >\n    <!-- Request Parsing\n\n         These settings indicate how Solr Requests may be parsed, and\n         what restrictions may be placed on the ContentStreams from\n         those requests\n\n         enableRemoteStreaming - enables use of the stream.file\n         and stream.url parameters for specifying remote streams.\n\n         multipartUploadLimitInKB - specifies the max size (in KiB) of\n         Multipart File Uploads that Solr will allow in a Request.\n         \n         formdataUploadLimitInKB - specifies the max size (in KiB) of\n         form data (application/x-www-form-urlencoded) sent via\n         POST. You can use POST to pass request parameters not\n         fitting into the URL.\n         \n         *** WARNING ***\n         The settings below authorize Solr to fetch remote files, You\n         should make sure your system has some authentication before\n         using enableRemoteStreaming=\"true\"\n\n      --> \n    <requestParsers enableRemoteStreaming=\"true\" \n                    multipartUploadLimitInKB=\"2048000\"\n                    formdataUploadLimitInKB=\"2048\"/>\n\n    <!-- HTTP Caching\n\n         Set HTTP caching related parameters (for proxy caches and clients).\n\n         The options below instruct Solr not to output any HTTP Caching\n         related headers\n      -->\n    <httpCaching never304=\"true\" />\n    <!-- If you include a <cacheControl> directive, it will be used to\n         generate a Cache-Control header (as well as an Expires header\n         if the value contains \"max-age=\")\n         \n         By default, no Cache-Control header is generated.\n         \n         You can use the <cacheControl> option even if you have set\n         never304=\"true\"\n      -->\n    <!--\n       <httpCaching never304=\"true\" >\n         <cacheControl>max-age=30, public</cacheControl> \n       </httpCaching>\n      -->\n    <!-- To enable Solr to respond with automatically generated HTTP\n         Caching headers, and to response to Cache Validation requests\n         correctly, set the value of never304=\"false\"\n         \n         This will cause Solr to generate Last-Modified and ETag\n         headers based on the properties of the Index.\n\n         The following options can also be specified to affect the\n         values of these headers...\n\n         lastModFrom - the default value is \"openTime\" which means the\n         Last-Modified value (and validation against If-Modified-Since\n         requests) will all be relative to when the current Searcher\n         was opened.  You can change it to lastModFrom=\"dirLastMod\" if\n         you want the value to exactly correspond to when the physical\n         index was last modified.\n\n         etagSeed=\"...\" is an option you can change to force the ETag\n         header (and validation against If-None-Match requests) to be\n         different even if the index has not changed (ie: when making\n         significant changes to your config file)\n\n         (lastModifiedFrom and etagSeed are both ignored if you use\n         the never304=\"true\" option)\n      -->\n    <!--\n       <httpCaching lastModifiedFrom=\"openTime\"\n                    etagSeed=\"Solr\">\n         <cacheControl>max-age=30, public</cacheControl> \n       </httpCaching>\n      -->\n  </requestDispatcher>\n\n  <!-- Request Handlers \n\n       http://wiki.apache.org/solr/SolrRequestHandler\n\n       Incoming queries will be dispatched to a specific handler by name\n       based on the path specified in the request.\n\n       Legacy behavior: If the request path uses \"/select\" but no Request\n       Handler has that name, and if handleSelect=\"true\" has been specified in\n       the requestDispatcher, then the Request Handler is dispatched based on\n       the qt parameter.  Handlers without a leading '/' are accessed this way\n       like so: http://host/app/[core/]select?qt=name  If no qt is\n       given, then the requestHandler that declares default=\"true\" will be\n       used or the one named \"standard\".\n\n       If a Request Handler is declared with startup=\"lazy\", then it will\n       not be initialized until the first request that uses it.\n\n    -->\n  <!-- SearchHandler\n\n       http://wiki.apache.org/solr/SearchHandler\n\n       For processing Search Queries, the primary Request Handler\n       provided with Solr is \"SearchHandler\" It delegates to a sequent\n       of SearchComponents (see below) and supports distributed\n       queries across multiple shards\n    -->\n  <requestHandler name=\"/select\" class=\"solr.SearchHandler\">\n    <!-- default values for query parameters can be specified, these\n         will be overridden by parameters in the request\n      -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <int name=\"rows\">10</int>\n       <str name=\"df\">rel</str>\n     </lst>\n    <!-- In addition to defaults, \"appends\" params can be specified\n         to identify values which should be appended to the list of\n         multi-val params from the query (or the existing \"defaults\").\n      -->\n    <!-- In this example, the param \"fq=instock:true\" would be appended to\n         any query time fq params the user may specify, as a mechanism for\n         partitioning the index, independent of any user selected filtering\n         that may also be desired (perhaps as a result of faceted searching).\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"appends\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <!--\n       <lst name=\"appends\">\n         <str name=\"fq\">inStock:true</str>\n       </lst>\n      -->\n    <!-- \"invariants\" are a way of letting the Solr maintainer lock down\n         the options available to Solr clients.  Any params values\n         specified here are used regardless of what values may be specified\n         in either the query, the \"defaults\", or the \"appends\" params.\n\n         In this example, the facet.field and facet.query params would\n         be fixed, limiting the facets clients can use.  Faceting is\n         not turned on by default - but if the client does specify\n         facet=true in the request, these are the only facets they\n         will be able to see counts for; regardless of what other\n         facet.field or facet.query params they may specify.\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"invariants\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <!--\n       <lst name=\"invariants\">\n         <str name=\"facet.field\">cat</str>\n         <str name=\"facet.field\">manu_exact</str>\n         <str name=\"facet.query\">price:[* TO 500]</str>\n         <str name=\"facet.query\">price:[500 TO *]</str>\n       </lst>\n      -->\n    <!-- If the default list of SearchComponents is not desired, that\n         list can either be overridden completely, or components can be\n         prepended or appended to the default list.  (see below)\n      -->\n    <!--\n       <arr name=\"components\">\n         <str>nameOfCustomComponent1</str>\n         <str>nameOfCustomComponent2</str>\n       </arr>\n      -->\n    </requestHandler>\n\n  <!-- A request handler that returns indented JSON by default -->\n  <requestHandler name=\"/query\" class=\"solr.SearchHandler\">\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <str name=\"wt\">json</str>\n       <str name=\"indent\">true</str>\n       <str name=\"df\">rel</str>\n     </lst>\n  </requestHandler>\n\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields of\n       any document, without the need to commit or open a new searcher.  The\n       current implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n     <lst name=\"defaults\">\n       <str name=\"omitHeader\">true</str>\n       <str name=\"wt\">json</str>\n       <str name=\"indent\">true</str>\n     </lst>\n  </requestHandler>\n\n \n  <!-- A Robust Example \n       \n       This example SearchHandler declaration shows off usage of the\n       SearchHandler with many defaults declared\n\n       Note that multiple instances of the same Request Handler\n       (SearchHandler) can be registered multiple times with different\n       names (and different init parameters)\n    -->\n  <requestHandler name=\"/browse\" class=\"solr.SearchHandler\">\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n\n       <!-- VelocityResponseWriter settings -->\n       <str name=\"wt\">velocity</str>\n       <str name=\"v.template\">browse</str>\n       <str name=\"v.layout\">layout</str>\n       <str name=\"title\">Solritas</str>\n\n       <!-- Query settings -->\n       <str name=\"defType\">edismax</str>\n       <str name=\"qf\">\n          text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n          title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0\n       </str>\n       <str name=\"df\">rel</str>\n       <str name=\"mm\">100%</str>\n       <str name=\"q.alt\">*:*</str>\n       <str name=\"rows\">10</str>\n       <str name=\"fl\">*,score</str>\n\n       <str name=\"mlt.qf\">\n         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n         title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0\n       </str>\n       <str name=\"mlt.fl\">text,features,name,sku,id,manu,cat,title,description,keywords,author,resourcename</str>\n       <int name=\"mlt.count\">3</int>\n\n       <!-- Faceting defaults -->\n       <str name=\"facet\">on</str>\n       <str name=\"facet.field\">cat</str>\n       <str name=\"facet.field\">manu_exact</str>\n       <str name=\"facet.field\">content_type</str>\n       <str name=\"facet.field\">author_s</str>\n       <str name=\"facet.query\">ipod</str>\n       <str name=\"facet.query\">GB</str>\n       <str name=\"facet.mincount\">1</str>\n       <str name=\"facet.pivot\">cat,inStock</str>\n       <str name=\"facet.range.other\">after</str>\n       <str name=\"facet.range\">price</str>\n       <int name=\"f.price.facet.range.start\">0</int>\n       <int name=\"f.price.facet.range.end\">600</int>\n       <int name=\"f.price.facet.range.gap\">50</int>\n       <str name=\"facet.range\">popularity</str>\n       <int name=\"f.popularity.facet.range.start\">0</int>\n       <int name=\"f.popularity.facet.range.end\">10</int>\n       <int name=\"f.popularity.facet.range.gap\">3</int>\n       <str name=\"facet.range\">manufacturedate_dt</str>\n       <str name=\"f.manufacturedate_dt.facet.range.start\">NOW/YEAR-10YEARS</str>\n       <str name=\"f.manufacturedate_dt.facet.range.end\">NOW</str>\n       <str name=\"f.manufacturedate_dt.facet.range.gap\">+1YEAR</str>\n       <str name=\"f.manufacturedate_dt.facet.range.other\">before</str>\n       <str name=\"f.manufacturedate_dt.facet.range.other\">after</str>\n\n       <!-- Highlighting defaults -->\n       <str name=\"hl\">on</str>\n       <str name=\"hl.fl\">content features title name</str>\n       <str name=\"hl.encoder\">html</str>\n       <str name=\"hl.simple.pre\">&lt;b&gt;</str>\n       <str name=\"hl.simple.post\">&lt;/b&gt;</str>\n       <str name=\"f.title.hl.fragsize\">0</str>\n       <str name=\"f.title.hl.alternateField\">title</str>\n       <str name=\"f.name.hl.fragsize\">0</str>\n       <str name=\"f.name.hl.alternateField\">name</str>\n       <str name=\"f.content.hl.snippets\">3</str>\n       <str name=\"f.content.hl.fragsize\">200</str>\n       <str name=\"f.content.hl.alternateField\">content</str>\n       <str name=\"f.content.hl.maxAlternateFieldLength\">750</str>\n\n       <!-- Spell checking defaults -->\n       <str name=\"spellcheck\">on</str>\n       <str name=\"spellcheck.extendedResults\">false</str>       \n       <str name=\"spellcheck.count\">5</str>\n       <str name=\"spellcheck.alternativeTermCount\">2</str>\n       <str name=\"spellcheck.maxResultsForSuggest\">5</str>       \n       <str name=\"spellcheck.collate\">true</str>\n       <str name=\"spellcheck.collateExtendedResults\">true</str>  \n       <str name=\"spellcheck.maxCollationTries\">5</str>\n       <str name=\"spellcheck.maxCollations\">3</str>           \n     </lst>\n\n     <!-- append spellchecking to our list of components -->\n     <arr name=\"last-components\">\n       <str>spellcheck</str>\n     </arr>\n  </requestHandler>\n\n\n  <!-- Update Request Handler.  \n       \n       http://wiki.apache.org/solr/UpdateXmlMessages\n\n       The canonical Request Handler for Modifying the Index through\n       commands specified using XML, JSON, CSV, or JAVABIN\n\n       Note: Since solr1.1 requestHandlers requires a valid content\n       type header if posted in the body. For example, curl now\n       requires: -H 'Content-type:text/xml; charset=utf-8'\n       \n       To override the request content type and force a specific \n       Content-type, use the request parameter: \n         ?update.contentType=text/csv\n       \n       This handler will pick a response format to match the input\n       if the 'wt' parameter is not explicit\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\">\n    <!-- See below for information on defining \n         updateRequestProcessorChains that can be used by name \n         on each Update Request\n      -->\n    <!--\n       <lst name=\"defaults\">\n         <str name=\"update.chain\">dedupe</str>\n       </lst>\n       -->\n  </requestHandler>\n\n  <!-- for back compat with clients using /update/json and /update/csv -->  \n  <requestHandler name=\"/update/json\" class=\"solr.JsonUpdateRequestHandler\">\n        <lst name=\"defaults\">\n         <str name=\"stream.contentType\">application/json</str>\n       </lst>\n  </requestHandler>\n  <requestHandler name=\"/update/csv\" class=\"solr.CSVRequestHandler\">\n        <lst name=\"defaults\">\n         <str name=\"stream.contentType\">application/csv</str>\n       </lst>\n  </requestHandler>\n\n  <!-- Solr Cell Update Request Handler\n\n       http://wiki.apache.org/solr/ExtractingRequestHandler \n\n    -->\n  <requestHandler name=\"/update/extract\" \n                  startup=\"lazy\"\n                  class=\"solr.extraction.ExtractingRequestHandler\" >\n    <lst name=\"defaults\">\n      <str name=\"lowernames\">true</str>\n      <str name=\"uprefix\">ignored_</str>\n\n      <!-- capture link hrefs but ignore div attributes -->\n      <str name=\"captureAttr\">true</str>\n      <str name=\"fmap.a\">links</str>\n      <str name=\"fmap.div\">ignored_</str>\n    </lst>\n  </requestHandler>\n\n\n  <!-- Field Analysis Request Handler\n\n       RequestHandler that provides much the same functionality as\n       analysis.jsp. Provides the ability to specify multiple field\n       types and field names in the same request and outputs\n       index-time and query-time analysis for each of them.\n\n       Request parameters are:\n       analysis.fieldname - field name whose analyzers are to be used\n\n       analysis.fieldtype - field type whose analyzers are to be used\n       analysis.fieldvalue - text for index-time analysis\n       q (or analysis.q) - text for query time analysis\n       analysis.showmatch (true|false) - When set to true and when\n           query analysis is performed, the produced tokens of the\n           field value analysis will be marked as \"matched\" for every\n           token that is produces by the query analysis\n   -->\n  <requestHandler name=\"/analysis/field\" \n                  startup=\"lazy\"\n                  class=\"solr.FieldAnalysisRequestHandler\" />\n\n\n  <!-- Document Analysis Handler\n\n       http://wiki.apache.org/solr/AnalysisRequestHandler\n\n       An analysis handler that provides a breakdown of the analysis\n       process of provided documents. This handler expects a (single)\n       content stream with the following format:\n\n       <docs>\n         <doc>\n           <field name=\"id\">1</field>\n           <field name=\"name\">The Name</field>\n           <field name=\"text\">The Text Value</field>\n         </doc>\n         <doc>...</doc>\n         <doc>...</doc>\n         ...\n       </docs>\n\n    Note: Each document must contain a field which serves as the\n    unique key. This key is used in the returned response to associate\n    an analysis breakdown to the analyzed document.\n\n    Like the FieldAnalysisRequestHandler, this handler also supports\n    query analysis by sending either an \"analysis.query\" or \"q\"\n    request parameter that holds the query text to be analyzed. It\n    also supports the \"analysis.showmatch\" parameter which when set to\n    true, all field tokens that match the query tokens will be marked\n    as a \"match\". \n  -->\n  <requestHandler name=\"/analysis/document\" \n                  class=\"solr.DocumentAnalysisRequestHandler\" \n                  startup=\"lazy\" />\n\n  <!-- Admin Handlers\n\n       Admin Handlers - This will register all the standard admin\n       RequestHandlers.  \n    -->\n  <requestHandler name=\"/admin/\" \n                  class=\"solr.admin.AdminHandlers\" />\n  <!-- This single handler is equivalent to the following... -->\n  <!--\n     <requestHandler name=\"/admin/luke\"       class=\"solr.admin.LukeRequestHandler\" />\n     <requestHandler name=\"/admin/system\"     class=\"solr.admin.SystemInfoHandler\" />\n     <requestHandler name=\"/admin/plugins\"    class=\"solr.admin.PluginInfoHandler\" />\n     <requestHandler name=\"/admin/threads\"    class=\"solr.admin.ThreadDumpHandler\" />\n     <requestHandler name=\"/admin/properties\" class=\"solr.admin.PropertiesRequestHandler\" />\n     <requestHandler name=\"/admin/file\"       class=\"solr.admin.ShowFileRequestHandler\" >\n    -->\n  <!-- If you wish to hide files under ${solr.home}/conf, explicitly\n       register the ShowFileRequestHandler using: \n    -->\n  <!--\n     <requestHandler name=\"/admin/file\" \n                     class=\"solr.admin.ShowFileRequestHandler\" >\n       <lst name=\"invariants\">\n         <str name=\"hidden\">synonyms.txt</str> \n         <str name=\"hidden\">anotherfile.txt</str> \n       </lst>\n     </requestHandler>\n    -->\n\n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n\n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> \n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <!-- Solr Replication\n\n       The SolrReplicationHandler supports replicating indexes from a\n       \"master\" used for indexing and \"slaves\" used for queries.\n\n       http://wiki.apache.org/solr/SolrReplication \n\n       It is also necessary for SolrCloud to function (in Cloud mode, the\n       replication handler is used to bulk transfer segments when nodes \n       are added or need to recover).\n\n       https://wiki.apache.org/solr/SolrCloud/\n    -->\n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" > \n    <!--\n       To enable simple master/slave replication, uncomment one of the \n       sections below, depending on whether this solr instance should be\n       the \"master\" or a \"slave\".  If this instance is a \"slave\" you will \n       also need to fill in the masterUrl to point to a real machine.\n    -->\n    <!--\n       <lst name=\"master\">\n         <str name=\"replicateAfter\">commit</str>\n         <str name=\"replicateAfter\">startup</str>\n         <str name=\"confFiles\">schema.xml,stopwords.txt</str>\n       </lst>\n    -->\n    <!--\n       <lst name=\"slave\">\n         <str name=\"masterUrl\">http://your-master-hostname:8983/solr</str>\n         <str name=\"pollInterval\">00:00:60</str>\n       </lst>\n    -->\n  </requestHandler>\n\n  <!-- Search Components\n\n       Search components are registered to SolrCore and used by \n       instances of SearchHandler (which can access them by name)\n       \n       By default, the following components are available:\n       \n       <searchComponent name=\"query\"     class=\"solr.QueryComponent\" />\n       <searchComponent name=\"facet\"     class=\"solr.FacetComponent\" />\n       <searchComponent name=\"mlt\"       class=\"solr.MoreLikeThisComponent\" />\n       <searchComponent name=\"highlight\" class=\"solr.HighlightComponent\" />\n       <searchComponent name=\"stats\"     class=\"solr.StatsComponent\" />\n       <searchComponent name=\"debug\"     class=\"solr.DebugComponent\" />\n   \n       Default configuration in a requestHandler would look like:\n\n       <arr name=\"components\">\n         <str>query</str>\n         <str>facet</str>\n         <str>mlt</str>\n         <str>highlight</str>\n         <str>stats</str>\n         <str>debug</str>\n       </arr>\n\n       If you register a searchComponent to one of the standard names, \n       that will be used instead of the default.\n\n       To insert components before or after the 'standard' components, use:\n    \n       <arr name=\"first-components\">\n         <str>myFirstComponentName</str>\n       </arr>\n    \n       <arr name=\"last-components\">\n         <str>myLastComponentName</str>\n       </arr>\n\n       NOTE: The component registered with the name \"debug\" will\n       always be executed after the \"last-components\" \n       \n     -->\n  \n   <!-- Spell Check\n\n        The spell check component can return a list of alternative spelling\n        suggestions.  \n\n        http://wiki.apache.org/solr/SpellCheckComponent\n     -->\n  <searchComponent name=\"spellcheck\" class=\"solr.SpellCheckComponent\">\n\n    <str name=\"queryAnalyzerFieldType\">text_general</str>\n\n    <!-- Multiple \"Spell Checkers\" can be declared and used by this\n         component\n      -->\n\n    <!-- a spellchecker built from a field of the main index -->\n    <lst name=\"spellchecker\">\n      <str name=\"name\">default</str>\n      <str name=\"field\">rel</str>\n      <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n      <!-- the spellcheck distance measure used, the default is the internal levenshtein -->\n      <str name=\"distanceMeasure\">internal</str>\n      <!-- minimum accuracy needed to be considered a valid spellcheck suggestion -->\n      <float name=\"accuracy\">0.5</float>\n      <!-- the maximum #edits we consider when enumerating terms: can be 1 or 2 -->\n      <int name=\"maxEdits\">2</int>\n      <!-- the minimum shared prefix when enumerating terms -->\n      <int name=\"minPrefix\">1</int>\n      <!-- maximum number of inspections per result. -->\n      <int name=\"maxInspections\">5</int>\n      <!-- minimum length of a query term to be considered for correction -->\n      <int name=\"minQueryLength\">4</int>\n      <!-- maximum threshold of documents a query term can appear to be considered for correction -->\n      <float name=\"maxQueryFrequency\">0.01</float>\n      <!-- uncomment this to require suggestions to occur in 1% of the documents\n      \t<float name=\"thresholdTokenFrequency\">.01</float>\n      -->\n    </lst>\n    \n    <!-- a spellchecker that can break or combine words.  See \"/spell\" handler below for usage -->\n    <lst name=\"spellchecker\">\n      <str name=\"name\">wordbreak</str>\n      <str name=\"classname\">solr.WordBreakSolrSpellChecker</str>      \n      <str name=\"field\">name</str>\n      <str name=\"combineWords\">true</str>\n      <str name=\"breakWords\">true</str>\n      <int name=\"maxChanges\">10</int>\n    </lst>\n\n    <!-- a spellchecker that uses a different distance measure -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"name\">jarowinkler</str>\n         <str name=\"field\">spell</str>\n         <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n         <str name=\"distanceMeasure\">\n           org.apache.lucene.search.spell.JaroWinklerDistance\n         </str>\n       </lst>\n     -->\n\n    <!-- a spellchecker that use an alternate comparator \n\n         comparatorClass be one of:\n          1. score (default)\n          2. freq (Frequency first, then score)\n          3. A fully qualified class name\n      -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"name\">freq</str>\n         <str name=\"field\">lowerfilt</str>\n         <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n         <str name=\"comparatorClass\">freq</str>\n      -->\n\n    <!-- A spellchecker that reads the list of words from a file -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"classname\">solr.FileBasedSpellChecker</str>\n         <str name=\"name\">file</str>\n         <str name=\"sourceLocation\">spellings.txt</str>\n         <str name=\"characterEncoding\">UTF-8</str>\n         <str name=\"spellcheckIndexDir\">spellcheckerFile</str>\n       </lst>\n      -->\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the spellcheck component.  \n\n       NOTE: This is purely as an example.  The whole purpose of the\n       SpellCheckComponent is to hook it into the request handler that\n       handles your normal user queries so that a separate request is\n       not needed to get suggestions.\n\n       IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS\n       NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM!\n       \n       See http://wiki.apache.org/solr/SpellCheckComponent for details\n       on the request parameters.\n    -->\n  <requestHandler name=\"/spell\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"df\">rel</str>\n      <!-- Solr will use suggestions from both the 'default' spellchecker\n           and from the 'wordbreak' spellchecker and combine them.\n           collations (re-written queries) can include a combination of\n           corrections from both spellcheckers -->\n      <str name=\"spellcheck.dictionary\">default</str>\n      <str name=\"spellcheck.dictionary\">wordbreak</str>\n      <str name=\"spellcheck\">on</str>\n      <str name=\"spellcheck.extendedResults\">true</str>       \n      <str name=\"spellcheck.count\">10</str>\n      <str name=\"spellcheck.alternativeTermCount\">5</str>\n      <str name=\"spellcheck.maxResultsForSuggest\">5</str>       \n      <str name=\"spellcheck.collate\">true</str>\n      <str name=\"spellcheck.collateExtendedResults\">true</str>  \n      <str name=\"spellcheck.maxCollationTries\">10</str>\n      <str name=\"spellcheck.maxCollations\">5</str>         \n    </lst>\n    <arr name=\"last-components\">\n      <str>spellcheck</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Term Vector Component\n\n       http://wiki.apache.org/solr/TermVectorComponent\n    -->\n  <searchComponent name=\"tvComponent\" class=\"solr.TermVectorComponent\"/>\n\n  <!-- A request handler for demonstrating the term vector component\n\n       This is purely as an example.\n\n       In reality you will likely want to add the component to your \n       already specified request handlers. \n    -->\n  <requestHandler name=\"/tvrh\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"df\">rel</str>\n      <bool name=\"tv\">true</bool>\n    </lst>\n    <arr name=\"last-components\">\n      <str>tvComponent</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Clustering Component\n\n       http://wiki.apache.org/solr/ClusteringComponent\n\n       You'll need to set the solr.clustering.enabled system property\n       when running solr to run with clustering enabled:\n\n            java -Dsolr.clustering.enabled=true -jar start.jar\n\n    -->\n  <searchComponent name=\"clustering\"\n                   enable=\"${solr.clustering.enabled:false}\"\n                   class=\"solr.clustering.ClusteringComponent\" >\n    <!-- Declare an engine -->\n    <lst name=\"engine\">\n      <!-- The name, only one can be named \"default\" -->\n      <str name=\"name\">default</str>\n\n      <!-- Class name of Carrot2 clustering algorithm.\n\n           Currently available algorithms are:\n           \n           * org.carrot2.clustering.lingo.LingoClusteringAlgorithm\n           * org.carrot2.clustering.stc.STCClusteringAlgorithm\n           * org.carrot2.clustering.kmeans.BisectingKMeansClusteringAlgorithm\n           \n           See http://project.carrot2.org/algorithms.html for the\n           algorithm's characteristics.\n        -->\n      <str name=\"carrot.algorithm\">org.carrot2.clustering.lingo.LingoClusteringAlgorithm</str>\n\n      <!-- Overriding values for Carrot2 default algorithm attributes.\n\n           For a description of all available attributes, see:\n           http://download.carrot2.org/stable/manual/#chapter.components.\n           Use attribute key as name attribute of str elements\n           below. These can be further overridden for individual\n           requests by specifying attribute key as request parameter\n           name and attribute value as parameter value.\n        -->\n      <str name=\"LingoClusteringAlgorithm.desiredClusterCountBase\">20</str>\n\n      <!-- Location of Carrot2 lexical resources.\n\n           A directory from which to load Carrot2-specific stop words\n           and stop labels. Absolute or relative to Solr config directory.\n           If a specific resource (e.g. stopwords.en) is present in the\n           specified dir, it will completely override the corresponding\n           default one that ships with Carrot2.\n\n           For an overview of Carrot2 lexical resources, see:\n           http://download.carrot2.org/head/manual/#chapter.lexical-resources\n        -->\n      <str name=\"carrot.lexicalResourcesDir\">clustering/carrot2</str>\n\n      <!-- The language to assume for the documents.\n\n           For a list of allowed values, see:\n           http://download.carrot2.org/stable/manual/#section.attribute.lingo.MultilingualClustering.defaultLanguage\n       -->\n      <str name=\"MultilingualClustering.defaultLanguage\">ENGLISH</str>\n    </lst>\n    <lst name=\"engine\">\n      <str name=\"name\">stc</str>\n      <str name=\"carrot.algorithm\">org.carrot2.clustering.stc.STCClusteringAlgorithm</str>\n    </lst>\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the clustering component\n\n       This is purely as an example.\n\n       In reality you will likely want to add the component to your \n       already specified request handlers. \n    -->\n  <requestHandler name=\"/clustering\"\n                  startup=\"lazy\"\n                  enable=\"${solr.clustering.enabled:false}\"\n                  class=\"solr.SearchHandler\">\n    <lst name=\"defaults\">\n      <bool name=\"clustering\">true</bool>\n      <str name=\"clustering.engine\">default</str>\n      <bool name=\"clustering.results\">true</bool>\n      <!-- The title field -->\n      <str name=\"carrot.title\">name</str>\n      <str name=\"carrot.url\">id</str>\n      <!-- The field to cluster on -->\n       <str name=\"carrot.snippet\">features</str>\n       <!-- produce summaries -->\n       <bool name=\"carrot.produceSummary\">true</bool>\n       <!-- the maximum number of labels per cluster -->\n       <!--<int name=\"carrot.numDescriptions\">5</int>-->\n       <!-- produce sub clusters -->\n       <bool name=\"carrot.outputSubClusters\">false</bool>\n       \n       <str name=\"defType\">edismax</str>\n       <str name=\"qf\">\n         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n       </str>\n       <str name=\"q.alt\">*:*</str>\n       <str name=\"rows\">10</str>\n       <str name=\"fl\">*,score</str>\n    </lst>     \n    <arr name=\"last-components\">\n      <str>clustering</str>\n    </arr>\n  </requestHandler>\n  \n  <!-- Terms Component\n\n       http://wiki.apache.org/solr/TermsComponent\n\n       A component to return terms and document frequency of those\n       terms\n    -->\n  <searchComponent name=\"terms\" class=\"solr.TermsComponent\"/>\n\n  <!-- A request handler for demonstrating the terms component -->\n  <requestHandler name=\"/terms\" class=\"solr.SearchHandler\" startup=\"lazy\">\n     <lst name=\"defaults\">\n      <bool name=\"terms\">true</bool>\n      <bool name=\"distrib\">false</bool>\n    </lst>     \n    <arr name=\"components\">\n      <str>terms</str>\n    </arr>\n  </requestHandler>\n\n\n  <!-- Query Elevation Component\n\n       http://wiki.apache.org/solr/QueryElevationComponent\n\n       a search component that enables you to configure the top\n       results for a given query regardless of the normal lucene\n       scoring.\n    -->\n  <searchComponent name=\"elevator\" class=\"solr.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the elevator component -->\n  <requestHandler name=\"/elevate\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n      <str name=\"df\">rel</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Highlighting Component\n\n       http://wiki.apache.org/solr/HighlightingParameters\n    -->\n  <searchComponent class=\"solr.HighlightComponent\" name=\"highlight\">\n    <highlighting>\n      <!-- Configure the standard fragmenter -->\n      <!-- This could most likely be commented out in the \"default\" case -->\n      <fragmenter name=\"gap\" \n                  default=\"true\"\n                  class=\"solr.highlight.GapFragmenter\">\n        <lst name=\"defaults\">\n          <int name=\"hl.fragsize\">100</int>\n        </lst>\n      </fragmenter>\n\n      <!-- A regular-expression-based fragmenter \n           (for sentence extraction) \n        -->\n      <fragmenter name=\"regex\" \n                  class=\"solr.highlight.RegexFragmenter\">\n        <lst name=\"defaults\">\n          <!-- slightly smaller fragsizes work better because of slop -->\n          <int name=\"hl.fragsize\">70</int>\n          <!-- allow 50% slop on fragment sizes -->\n          <float name=\"hl.regex.slop\">0.5</float>\n          <!-- a basic sentence pattern -->\n          <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n        </lst>\n      </fragmenter>\n\n      <!-- Configure the standard formatter -->\n      <formatter name=\"html\" \n                 default=\"true\"\n                 class=\"solr.highlight.HtmlFormatter\">\n        <lst name=\"defaults\">\n          <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n          <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n        </lst>\n      </formatter>\n\n      <!-- Configure the standard encoder -->\n      <encoder name=\"html\" \n               class=\"solr.highlight.HtmlEncoder\" />\n\n      <!-- Configure the standard fragListBuilder -->\n      <fragListBuilder name=\"simple\" \n                       class=\"solr.highlight.SimpleFragListBuilder\"/>\n      \n      <!-- Configure the single fragListBuilder -->\n      <fragListBuilder name=\"single\" \n                       class=\"solr.highlight.SingleFragListBuilder\"/>\n      \n      <!-- Configure the weighted fragListBuilder -->\n      <fragListBuilder name=\"weighted\" \n                       default=\"true\"\n                       class=\"solr.highlight.WeightedFragListBuilder\"/>\n      \n      <!-- default tag FragmentsBuilder -->\n      <fragmentsBuilder name=\"default\" \n                        default=\"true\"\n                        class=\"solr.highlight.ScoreOrderFragmentsBuilder\">\n        <!-- \n        <lst name=\"defaults\">\n          <str name=\"hl.multiValuedSeparatorChar\">/</str>\n        </lst>\n        -->\n      </fragmentsBuilder>\n\n      <!-- multi-colored tag FragmentsBuilder -->\n      <fragmentsBuilder name=\"colored\" \n                        class=\"solr.highlight.ScoreOrderFragmentsBuilder\">\n        <lst name=\"defaults\">\n          <str name=\"hl.tag.pre\"><![CDATA[\n               <b style=\"background:yellow\">,<b style=\"background:lawgreen\">,\n               <b style=\"background:aquamarine\">,<b style=\"background:magenta\">,\n               <b style=\"background:palegreen\">,<b style=\"background:coral\">,\n               <b style=\"background:wheat\">,<b style=\"background:khaki\">,\n               <b style=\"background:lime\">,<b style=\"background:deepskyblue\">]]></str>\n          <str name=\"hl.tag.post\"><![CDATA[</b>]]></str>\n        </lst>\n      </fragmentsBuilder>\n      \n      <boundaryScanner name=\"default\" \n                       default=\"true\"\n                       class=\"solr.highlight.SimpleBoundaryScanner\">\n        <lst name=\"defaults\">\n          <str name=\"hl.bs.maxScan\">10</str>\n          <str name=\"hl.bs.chars\">.,!? &#9;&#10;&#13;</str>\n        </lst>\n      </boundaryScanner>\n      \n      <boundaryScanner name=\"breakIterator\" \n                       class=\"solr.highlight.BreakIteratorBoundaryScanner\">\n        <lst name=\"defaults\">\n          <!-- type should be one of CHARACTER, WORD(default), LINE and SENTENCE -->\n          <str name=\"hl.bs.type\">WORD</str>\n          <!-- language and country are used when constructing Locale object.  -->\n          <!-- And the Locale object will be used when getting instance of BreakIterator -->\n          <str name=\"hl.bs.language\">en</str>\n          <str name=\"hl.bs.country\">US</str>\n        </lst>\n      </boundaryScanner>\n    </highlighting>\n  </searchComponent>\n\n  <!-- Update Processors\n\n       Chains of Update Processor Factories for dealing with Update\n       Requests can be declared, and then used by name in Update\n       Request Processors\n\n       http://wiki.apache.org/solr/UpdateRequestProcessor\n\n    --> \n  <!-- Deduplication\n\n       An example dedup update processor that creates the \"id\" field\n       on the fly based on the hash code of some other fields.  This\n       example has overwriteDupes set to false since we are using the\n       id field as the signatureField and Solr will maintain\n       uniqueness based on that anyway.  \n       \n    -->\n  <!--\n     <updateRequestProcessorChain name=\"dedupe\">\n       <processor class=\"solr.processor.SignatureUpdateProcessorFactory\">\n         <bool name=\"enabled\">true</bool>\n         <str name=\"signatureField\">id</str>\n         <bool name=\"overwriteDupes\">false</bool>\n         <str name=\"fields\">name,features,cat</str>\n         <str name=\"signatureClass\">solr.processor.Lookup3Signature</str>\n       </processor>\n       <processor class=\"solr.LogUpdateProcessorFactory\" />\n       <processor class=\"solr.RunUpdateProcessorFactory\" />\n     </updateRequestProcessorChain>\n    -->\n  \n  <!-- Language identification\n\n       This example update chain identifies the language of the incoming\n       documents using the langid contrib. The detected language is\n       written to field language_s. No field name mapping is done.\n       The fields used for detection are text, title, subject and description,\n       making this example suitable for detecting languages form full-text\n       rich documents injected via ExtractingRequestHandler.\n       See more about langId at http://wiki.apache.org/solr/LanguageDetection\n    -->\n    <!--\n     <updateRequestProcessorChain name=\"langid\">\n       <processor class=\"org.apache.solr.update.processor.TikaLanguageIdentifierUpdateProcessorFactory\">\n         <str name=\"langid.fl\">text,title,subject,description</str>\n         <str name=\"langid.langField\">language_s</str>\n         <str name=\"langid.fallback\">en</str>\n       </processor>\n       <processor class=\"solr.LogUpdateProcessorFactory\" />\n       <processor class=\"solr.RunUpdateProcessorFactory\" />\n     </updateRequestProcessorChain>\n    -->\n\n  <!-- Script update processor\n\n    This example hooks in an update processor implemented using JavaScript.\n\n    See more about the script update processor at http://wiki.apache.org/solr/ScriptUpdateProcessor\n  -->\n  <!--\n    <updateRequestProcessorChain name=\"script\">\n      <processor class=\"solr.StatelessScriptUpdateProcessorFactory\">\n        <str name=\"script\">update-script.js</str>\n        <lst name=\"params\">\n          <str name=\"config_param\">example config parameter</str>\n        </lst>\n      </processor>\n      <processor class=\"solr.RunUpdateProcessorFactory\" />\n    </updateRequestProcessorChain>\n  -->\n \n  <!-- Response Writers\n\n       http://wiki.apache.org/solr/QueryResponseWriter\n\n       Request responses will be written using the writer specified by\n       the 'wt' request parameter matching the name of a registered\n       writer.\n\n       The \"default\" writer is the default and will be used if 'wt' is\n       not specified in the request.\n    -->\n  <!-- The following response writers are implicitly configured unless\n       overridden...\n    -->\n  <!--\n     <queryResponseWriter name=\"xml\" \n                          default=\"true\"\n                          class=\"solr.XMLResponseWriter\" />\n     <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n     <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n     <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n     <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n     <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n     <queryResponseWriter name=\"csv\" class=\"solr.CSVResponseWriter\"/>\n     <queryResponseWriter name=\"schema.xml\" class=\"solr.SchemaXmlResponseWriter\"/>\n    -->\n\n  <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\">\n     <!-- For the purposes of the tutorial, JSON responses are written as\n      plain text so that they are easy to read in *any* browser.\n      If you expect a MIME type of \"application/json\" just remove this override.\n     -->\n    <str name=\"content-type\">text/plain; charset=UTF-8</str>\n  </queryResponseWriter>\n  \n  <!--\n     Custom response writers can be declared as needed...\n    -->\n    <queryResponseWriter name=\"velocity\" class=\"solr.VelocityResponseWriter\" startup=\"lazy\"/>\n  \n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n    -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter>\n\n  <!-- Query Parsers\n\n       http://wiki.apache.org/solr/SolrQuerySyntax\n\n       Multiple QParserPlugins can be registered by name, and then\n       used in either the \"defType\" param for the QueryComponent (used\n       by SearchHandler) or in LocalParams\n    -->\n  <!-- example of registering a query parser -->\n  <!--\n     <queryParser name=\"myparser\" class=\"com.mycompany.MyQParserPlugin\"/>\n    -->\n\n  <!-- Function Parsers\n\n       http://wiki.apache.org/solr/FunctionQuery\n\n       Multiple ValueSourceParsers can be registered by name, and then\n       used as function names when using the \"func\" QParser.\n    -->\n  <!-- example of registering a custom function parser  -->\n  <!--\n     <valueSourceParser name=\"myfunc\" \n                        class=\"com.mycompany.MyValueSourceParser\" />\n    -->\n    \n  \n  <!-- Document Transformers\n       http://wiki.apache.org/solr/DocTransformers\n    -->\n  <!--\n     Could be something like:\n     <transformer name=\"db\" class=\"com.mycompany.LoadFromDatabaseTransformer\" >\n       <int name=\"connection\">jdbc://....</int>\n     </transformer>\n     \n     To add a constant value to all docs, use:\n     <transformer name=\"mytrans2\" class=\"org.apache.solr.response.transform.ValueAugmenterFactory\" >\n       <int name=\"value\">5</int>\n     </transformer>\n     \n     If you want the user to still be able to change it with _value:something_ use this:\n     <transformer name=\"mytrans3\" class=\"org.apache.solr.response.transform.ValueAugmenterFactory\" >\n       <double name=\"defaultValue\">5</double>\n     </transformer>\n\n      If you are using the QueryElevationComponent, you may wish to mark documents that get boosted.  The\n      EditorialMarkerFactory will do exactly that:\n     <transformer name=\"qecBooster\" class=\"org.apache.solr.response.transform.EditorialMarkerFactory\" />\n    -->\n    \n\n  <!-- Legacy config for the admin interface -->\n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/spellings.txt",
    "content": "pizza\nhistory"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaafoo => aaabar\nbbbfoo => bbbfoo bbbbar\ncccfoo => cccbar cccbaz\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/update-script.js",
    "content": "/*\n  This is a basic skeleton JavaScript update processor.\n\n  In order for this to be executed, it must be properly wired into solrconfig.xml; by default it is commented out in\n  the example solrconfig.xml and must be uncommented to be enabled.\n\n  See http://wiki.apache.org/solr/ScriptUpdateProcessor for more details.\n*/\n\nfunction processAdd(cmd) {\n\n  doc = cmd.solrDoc;  // org.apache.solr.common.SolrInputDocument\n  id = doc.getFieldValue(\"id\");\n  logger.info(\"update-script#processAdd: id=\" + id);\n\n// Set a field value:\n//  doc.setField(\"foo_s\", \"whatever\");\n\n// Get a configuration parameter:\n//  config_param = params.get('config_param');  // \"params\" only exists if processor configured with <lst name=\"params\">\n\n// Get a request parameter:\n// some_param = req.getParams().get(\"some_param\")\n\n// Add a field of field names that match a pattern:\n//   - Potentially useful to determine the fields/attributes represented in a result set, via faceting on field_name_ss\n//  field_names = doc.getFieldNames().toArray();\n//  for(i=0; i < field_names.length; i++) {\n//    field_name = field_names[i];\n//    if (/attr_.*/.test(field_name)) { doc.addField(\"attribute_ss\", field_names[i]); }\n//  }\n\n}\n\nfunction processDelete(cmd) {\n  // no-op\n}\n\nfunction processMergeIndexes(cmd) {\n  // no-op\n}\n\nfunction processCommit(cmd) {\n  // no-op\n}\n\nfunction processRollback(cmd) {\n  // no-op\n}\n\nfunction finish() {\n  // no-op\n}\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/VM_global_library.vm",
    "content": "\n#macro(param $key)$request.params.get($key)#end\n\n#macro(url_root)/solr#end\n\n## TODO: s/url_for_solr/url_for_core/ and s/url_root/url_for_solr/\n#macro(core_name)$request.core.name#end\n#macro(url_for_solr)#{url_root}#if($request.core.name != \"\")/$request.core.name#end#end\n#macro(url_for_home)#url_for_solr/browse#end\n\n#macro(q)&q=$!{esc.url($params.get('q'))}#end\n\n#macro(fqs $p)#foreach($fq in $p)#if($velocityCount>1)&#{end}fq=$esc.url($fq)#end#end\n\n#macro(debug)#if($request.params.get('debugQuery'))&debugQuery=true#end#end\n\n#macro(boostPrice)#if($request.params.get('bf') == 'price')&bf=price#end#end        \n\n#macro(annotate)#if($request.params.get('annotateBrowse'))&annotateBrowse=true#end#end\n\n#macro(annTitle $msg)#if($annotate == true)title=\"$msg\"#end#end\n\n#macro(spatial)#if($request.params.get('sfield'))&sfield=store#end#if($request.params.get('pt'))&pt=$request.params.get('pt')#end#if($request.params.get('d'))&d=$request.params.get('d')#end#end\n\n#macro(qOpts)#set($queryOpts = $request.params.get(\"queryOpts\"))#if($queryOpts && $queryOpts != \"\")&queryOpts=$queryOpts#end#end\n\n#macro(group)#if($request.params.getBool(\"group\") == true)&group=true#end#if($request.params.get(\"group.field\"))#foreach($grp in $request.params.getParams('group.field'))&group.field=$grp#end#end#end\n\n#macro(sort $p)#if($p)#foreach($s in $p)&sort=$esc.url($s)#end#end#end\n\n#macro(lensNoQ)?#if($request.params.getParams('fq') and $list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#sort($request.params.getParams('sort'))#debug#boostPrice#annotate#spatial#qOpts#group#end\n#macro(lens)#lensNoQ#q#end\n        \n\n#macro(url_for_lens)#{url_for_home}#lens#end\n\n#macro(url_for_start $start)#url_for_home#lens&start=$start#end\n\n#macro(url_for_filters $p)#url_for_home?#q#boostPrice#spatial#qOpts#if($list.size($p) > 0)&#fqs($p)#end#debug#end\n\n#macro(url_for_nested_facet_query $field)#url_for_home#lens&fq=$esc.url($field)#end\n\n## TODO: convert to use {!raw f=$field}$value (with escaping of course)\n#macro(url_for_facet_filter $field $value)#url_for_home#lens&fq=$esc.url($field):%22$esc.url($value)%22#end\n\n#macro(url_for_facet_date_filter $field $value)#url_for_home#lens&fq=$esc.url($field):$esc.url($value)#end\n\n#macro(url_for_facet_range_filter $field $value)#url_for_home#lens&fq=$esc.url($field):$esc.url($value)#end\n\n\n#macro(link_to_previous_page $text)\n  #if($page.current_page_number > 1)\n    #set($prev_start = $page.start - $page.results_per_page)\n    <a class=\"prev-page\" href=\"#url_for_start($prev_start)\">$text</a>\n  #end\n#end\n\n#macro(link_to_next_page $text)\n  #if($page.current_page_number < $page.page_count)\n    #set($next_start = $page.start + $page.results_per_page)\n    <a class=\"next-page\" href=\"#url_for_start($next_start)\">$text</a>\n  #end\n#end\n\n#macro(link_to_page $page_number $text)\n  #if($page_number == $page.current_page_number)\n    $text\n  #else\n    #if($page_number <= $page.page_count)\n      #set($page_start = $page_number * $page.results_per_page - $page.results_per_page)\n      <a class=\"page\" href=\"#url_for_start($page_start)\">$text</a>\n    #end\n  #end\n#end\n\n#macro(display_facet_query $field, $display, $fieldName)\n  #if($field.size() > 0)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n    #foreach ($facet in $field)\n      #if ($facet.value > 0)\n        #set($facetURL = \"#url_for_nested_facet_query($facet.key)\")\n        #if ($facetURL != '')\n          <li><a href=\"$facetURL\">$facet.key</a> ($facet.value)</li>\n        #end\n      #end\n    #end\n    </ul>\n  #end      \n#end\n\n\n#macro(display_facet_range $field, $display, $fieldName, $start, $end, $gap, $before, $after)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n    #if($before && $before != \"\")\n      #set($value = \"[* TO \" + \"#format_value($start)\" + \"}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      <li><a href=\"$facetURL\">Less than #format_value($start)</a> ($before)</li>\n    #end\n    #foreach ($facet in $field)\n      #set($rangeEnd = \"#range_get_to_value($facet.key, $gap)\")\n      #set($value = \"[\" + $facet.key + \" TO \" + $rangeEnd + \"}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      #if ($facetURL != '')\n        <li><a href=\"$facetURL\">$facet.key - #format_value($rangeEnd)</a> ($facet.value)</li>\n      #end\n    #end\n    #if($end && $end != \"\" && $after > 0)\n      #set($value = \"[\" + \"#format_value($end)\" + \" TO *}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      <li><a href=\"$facetURL\">More than #format_value($end)</a> ($after)</li>\n    #end\n    </ul>\n#end\n\n## $pivots is a list of facet_pivot\n#macro(display_facet_pivot $pivots, $display)\n  #if($pivots.size() > 0)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n      #foreach ($pivot in $pivots)\n        #foreach ($entry in $pivot.value)\n          <a href=\"#url_for_facet_filter($entry.field, $entry.value)\">$entry.field::$entry.value</a> ($entry.count)\n          <ul>\n            #foreach($nest in $entry.pivot)\n              <a href=\"#url_for_facet_filter($entry.field, $entry.value)&fq=$esc.url($nest.field):%22$esc.url($nest.value)%22\">$nest.field::$nest.value</a> ($nest.count)\n            #end\n          </ul>\n        #end\n      #end\n    </ul>\n  #end\n#end\n\n#macro(field $f)\n  #if($response.response.highlighting.get($docId).get($f).get(0))\n    #set($pad = \"\")\n    #foreach($v in $response.response.highlighting.get($docId).get($f))\n$pad$v##\n      #set($pad = \" ... \")\n    #end\n  #else\n    #foreach($v in $doc.getFieldValues($f))\n$v##\n    #end\n  #end\n#end  \n\n#macro(utc_date $theDate)\n$date.format(\"yyyy-MM-dd'T'HH:mm:ss'Z'\",$theDate,$date.getLocale(),$date.getTimeZone().getTimeZone(\"UTC\"))##\n#end\n\n#macro(format_value $val)\n#if(${val.class.name} == \"java.util.Date\")\n#utc_date($val)##\n#else\n$val##\n#end\n#end\n\n#macro(range_get_to_value $inval, $gapval)\n#if(${gapval.class.name} == \"java.lang.String\")\n$inval$gapval##\n#elseif(${gapval.class.name} == \"java.lang.Float\" || ${inval.class.name} == \"java.lang.Float\")\n$math.toDouble($math.add($inval,$gapval))##\n#else\n$math.add($inval,$gapval)##\n#end\n#end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/browse.vm",
    "content": "#set($searcher=$request.searcher)\n#set($params=$request.params)\n#set($clusters = $response.response.clusters)\n#set($mltResults = $response.response.get(\"moreLikeThis\"))\n#set($annotate = $params.get(\"annotateBrowse\"))\n#parse('query.vm')\n#parse('did_you_mean.vm')\n\n<div class=\"navigators\">\n  #parse(\"facets.vm\")\n</div>\n\n<div class=\"pagination\">\n  #if($response.response.get('grouped'))\n    <span><span class=\"results-found\">$response.response.get('grouped').size() group(s)</span> found in ${response.responseHeader.QTime} ms</span>\n  #else<span><span class=\"results-found\">$page.results_found</span> results found in ${response.responseHeader.QTime} ms</span>\n  Page <span class=\"page-num\">$page.current_page_number</span> of <span\n        class=\"page-count\">$page.page_count</span>#end\n</div>\n\n<div class=\"error\">\n  #if(${response.response.error.code})\n    <h1>ERROR ${response.response.error.code}</h1>\n    ${response.response.error.msg}\n  #end\n</div>\n\n<div class=\"results\">\n  #if($response.response.get('grouped'))\n    #foreach($grouping in $response.response.get('grouped'))\n      #parse(\"hitGrouped.vm\")\n    #end\n  #else\n    #foreach($doc in $response.results)\n      #parse(\"hit.vm\")\n    #end\n  #end\n</div>\n\n<div class=\"pagination\">\n  #if($response.response.get('grouped'))\n  #else\n  #link_to_previous_page(\"previous\")\n  <span class=\"results-found\">$page.results_found</span> results found.\n  Page <span class=\"page-num\">$page.current_page_number</span> of <span\n        class=\"page-count\">$page.page_count</span>\n  #link_to_next_page(\"next\")\n  #end\n  <br/>\n</div>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/cluster.vm",
    "content": "<h2 #annTitle(\"Clusters generated by Carrot2 using the /clustering RequestHandler\")>Clusters</h2>\n<div id=\"clusters\">\n  Run Solr with java -Dsolr.clustering.enabled=true -jar start.jar to see results\n</div>\n<script type=\"text/javascript\">\n\n  $('#clusters').load(\"#url_for_solr/clustering#lens\",\n    {'wt':'velocity', 'v.template':\"clusterResults\"});\n</script>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/clusterResults.vm",
    "content": "#foreach ($clusters in $response.response.clusters)\n    #set($labels = $clusters.get('labels'))\n    #set($docs = $clusters.get('docs'))\n    <h3>#foreach ($label in $labels)$label#if( $foreach.hasNext ),#end#end</h3>\n        <ol>\n        #foreach ($cluDoc in $docs)\n          <li><a href=\"#url_for_home?q=id:$cluDoc\">$cluDoc</a></li>\n        #end\n        </ol>\n        \n    \n#end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/debug.vm",
    "content": "#if($params.getBool(\"debugQuery\",false))\n  <a href=\"#\" onclick='jQuery(this).siblings(\"pre\").toggle(); return false;'>toggle explain</a>\n  <pre style=\"display:none\">$response.getExplainMap().get($doc.getFirstValue('id'))</pre>\n  <a href=\"#\" onclick='jQuery(this).siblings(\"pre2\").toggle(); return false;'>toggle all fields</a>\n  <pre2 style=\"display:none\">\n  #foreach($fieldname in $doc.fieldNames)\n     <br>\n       <span class=\"field-name\">$fieldname :</span>\n       <span>\n       #foreach($value in $doc.getFieldValues($fieldname))\n         $esc.html($value)\n       #end\n       </span>\n  #end\n   </br>\n  </pre2>\n#end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/did_you_mean.vm",
    "content": "#set($dym = $response.response.spellcheck.suggestions.collation.collationQuery)\n#if($dym)\n  Did you mean <a href=\"#{url_for_home}#{lensNoQ}&q=$esc.url($dym)\">$esc.html($dym)</a>?\n#end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/facet_fields.vm",
    "content": "#if($response.facetFields)\n    <h2 #annTitle(\"Facets generated by adding &facet.field= to the request\")>Field Facets</h2>\n    #foreach($field in $response.facetFields)\n      ## Hide facets without value\n      #if($field.values.size() > 0)\n      <span class=\"facet-field\">$field.name</span>\n\n      <ul>\n        #foreach($facet in $field.values)\n            <li><a href=\"#url_for_facet_filter($field.name, $facet.name)\">$facet.name</a> ($facet.count)</li>\n        #end\n      </ul>\n      #end\n    #end\n  #end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/facet_pivot.vm",
    "content": "<h2 #annTitle(\"Facets generated by adding &facet.pivot= to the request\")>Pivot Facets</h2>\n#set($pivot = $response.response.facet_counts.facet_pivot)\n#display_facet_pivot($pivot, \"\")\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/facet_queries.vm",
    "content": "#set($field = $response.response.facet_counts.facet_queries)\n<h2 #annTitle(\"Facets generated by adding &facet.query= to the request\")>Query Facets</h2>        \n#display_facet_query($field, \"\", \"\")"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/facet_ranges.vm",
    "content": "<h2 #annTitle(\"Facets generated by adding &facet.range= to the request\")>Range Facets</h2>\n#foreach ($field in $response.response.facet_counts.facet_ranges)\n  ## Hide facets without value\n  #if($field.value.counts.size() > 0)\n\t#set($name = $field.key)\n\t#set($display = $name)\n\t#set($f = $field.value.counts)\n\t#set($start = $field.value.start)\n\t#set($end = $field.value.end)\n\t#set($gap = $field.value.gap)\n\t#set($before = $field.value.before)\n\t#set($after = $field.value.after)\n\t#display_facet_range($f, $display, $name, $start, $end, $gap, $before, $after)\n  #end\n#end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/facets.vm",
    "content": "#parse('facet_fields.vm')\n#parse('facet_queries.vm')\n#parse('facet_ranges.vm')\n#parse('facet_pivot.vm')\n#parse('cluster.vm')"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/footer.vm",
    "content": "<hr/>\n<div>\n  <span>Options:</span>\n  #if($request.params.get('debugQuery'))\n  <a href=\"#url_for_home?#q#if($list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end\">disable debug</a>\n  #else\n  <a href=\"#url_for_lens&debugQuery=true&fl=*,score\">enable debug</a>\n  #end\n  #if($annotate)\n  <a href=\"#url_for_home?#q#if($list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#boostPrice\">disable annotation</a>\n  #else\n  <a href=\"#url_for_lens&annotateBrowse=true\">enable annotation</a>\n  #end\n  <a #annTitle(\"Click to switch to an XML response: &wt=xml\") href=\"#url_for_lens&wt=xml#if($request.params.get('debugQuery'))&debugQuery=true#end\">XML</a></div>\n<div>Generated by <a href=\"http://wiki.apache.org/solr/VelocityResponseWriter\">VelocityResponseWriter</a></div>\n<div><span>Documentation: </span> <a href=\"http://lucene.apache.org/solr\">Solr Home Page</a>, <a href=\"http://wiki.apache.org/solr\">Solr Wiki</a></div>\n<div>Disclaimer: The locations displayed in this demonstration are purely fictional.  It is more than likely that no store with the items listed actually exists at that location!</div>        "
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/head.vm",
    "content": "\n    ## An example of using an arbitrary request parameter\n    <title>#param('title')</title>\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"/>\n\n  <script type=\"text/javascript\" src=\"#{url_root}/js/lib/jquery-1.7.2.min.js\"></script>\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"#{url_for_solr}/admin/file?file=/velocity/main.css&contentType=text/css\"/>\n  <link rel=\"stylesheet\" href=\"#{url_for_solr}/admin/file?file=/velocity/jquery.autocomplete.css&contentType=text/css\" type=\"text/css\" />\n  <script type=\"text/javascript\" src=\"#{url_for_solr}/admin/file?file=/velocity/jquery.autocomplete.js&contentType=text/javascript\"></script>\n\n\n    <script>\n    $(document).ready(function(){\n      $(\"\\#q\").autocomplete('#{url_for_solr}/terms', {  ## backslash escaped #q as that is a macro defined in VM_global_library.vm\n           extraParams:{\n             'terms.prefix': function() { return $(\"\\#q\").val();},\n             'terms.sort': 'count',\n             'terms.fl': 'name',\n             'wt': 'velocity',\n             'v.template': 'suggest'\n           }\n         }\n      ).keydown(function(e){\n        if (e.keyCode === 13){\n          $(\"#query-form\").trigger('submit');\n        }\n      });\n\n      // http://localhost:8983/solr/terms?terms.fl=name&terms.prefix=i&terms.sort=count\n    });\n\n    </script>"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/header.vm",
    "content": "<div id=\"head\">\n  <span ><a href=\"#url_for_home#if($request.params.get('debugQuery'))?debugQuery=true#end\"><img src=\"#{url_root}/img/solr.png\" id=\"logo\"/></a></span>\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/hit.vm",
    "content": "#set($docId = $doc.getFieldValue('id'))\n\n<div class=\"result-document\">\n#if($doc.getFieldValue('name'))\n  #parse(\"product-doc.vm\")\n#elseif($doc.getFieldValue('compName_s'))\n  #parse(\"join-doc.vm\")\n#else\n  #parse(\"richtext-doc.vm\")\n#end\n</div>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/hitGrouped.vm",
    "content": "<div class=\"result-document\">\n  <div class=\"result-title\"><b>$grouping.key</b></div>\n  <div>Total Matches in Group: $grouping.value.matches</div>\n  <div>#foreach ($group in $grouping.value.groups)\n    <div class=\"group-value\">$group.groupValue <span #annTitle(\"The count of the number of documents in this group\")>($group.doclist.numFound)</span></div>\n    <div class=\"group-doclist\" #annTitle(\"Contains the top scoring documents in the group\")>\n      #foreach ($doc in $group.doclist)\n        #set($docId = $doc.getFieldValue('id'))\n        #if($doc.getFieldValue('name'))\n          #parse(\"product-doc.vm\")\n        #elseif($doc.getFieldValue('compName_s'))\n          #parse(\"join-doc.vm\")\n        #else\n          #parse(\"richtext-doc.vm\")\n        #end\n      #end\n    </div>\n    #end</div>\n  </div>\n  #if($params.getBool(\"debugQuery\",false))\n    <a href=\"#\" onclick='jQuery(this).siblings(\"pre\").toggle(); return false;'>toggle explain</a>\n    <pre style=\"display:none\">$response.getExplainMap().get($doc.getFirstValue('id'))</pre>\n  #end\n</div>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/join-doc.vm",
    "content": "<div class=\"result-title\"><b>#field('compName_s')</b></div>\n<div>Id: #field('id') (company-details document for <a href=\"http://wiki.apache.org/solr/Join\" target=\"_new\">join</a>)</div>\n<div>Address: #field('address_s')</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/jquery.autocomplete.css",
    "content": ".ac_results {\n\tpadding: 0px;\n\tborder: 1px solid black;\n\tbackground-color: white;\n\toverflow: hidden;\n\tz-index: 99999;\n}\n\n.ac_results ul {\n\twidth: 100%;\n\tlist-style-position: outside;\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.ac_results li {\n\tmargin: 0px;\n\tpadding: 2px 5px;\n\tcursor: default;\n\tdisplay: block;\n\t/* \n\tif width will be 100% horizontal scrollbar will apear \n\twhen scroll mode will be used\n\t*/\n\t/*width: 100%;*/\n\tfont: menu;\n\tfont-size: 12px;\n\t/* \n\tit is very important, if line-height not setted or setted \n\tin relative units scroll will be broken in firefox\n\t*/\n\tline-height: 16px;\n\toverflow: hidden;\n}\n\n.ac_loading {\n\tbackground: white url('indicator.gif') right center no-repeat;\n}\n\n.ac_odd {\n\tbackground-color: #eee;\n}\n\n.ac_over {\n\tbackground-color: #0A246A;\n\tcolor: white;\n}\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/jquery.autocomplete.js",
    "content": "/*\n * Autocomplete - jQuery plugin 1.1pre\n *\n * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer\n *\n * Dual licensed under the MIT and GPL licenses:\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n *\n * Revision: $Id: jquery.autocomplete.js 5785 2008-07-12 10:37:33Z joern.zaefferer $\n *\n */\n\n;(function($) {\n\t\n$.fn.extend({\n\tautocomplete: function(urlOrData, options) {\n\t\tvar isUrl = typeof urlOrData == \"string\";\n\t\toptions = $.extend({}, $.Autocompleter.defaults, {\n\t\t\turl: isUrl ? urlOrData : null,\n\t\t\tdata: isUrl ? null : urlOrData,\n\t\t\tdelay: isUrl ? $.Autocompleter.defaults.delay : 10,\n\t\t\tmax: options && !options.scroll ? 10 : 150\n\t\t}, options);\n\t\t\n\t\t// if highlight is set to false, replace it with a do-nothing function\n\t\toptions.highlight = options.highlight || function(value) { return value; };\n\t\t\n\t\t// if the formatMatch option is not specified, then use formatItem for backwards compatibility\n\t\toptions.formatMatch = options.formatMatch || options.formatItem;\n\t\t\n\t\treturn this.each(function() {\n\t\t\tnew $.Autocompleter(this, options);\n\t\t});\n\t},\n\tresult: function(handler) {\n\t\treturn this.bind(\"result\", handler);\n\t},\n\tsearch: function(handler) {\n\t\treturn this.trigger(\"search\", [handler]);\n\t},\n\tflushCache: function() {\n\t\treturn this.trigger(\"flushCache\");\n\t},\n\tsetOptions: function(options){\n\t\treturn this.trigger(\"setOptions\", [options]);\n\t},\n\tunautocomplete: function() {\n\t\treturn this.trigger(\"unautocomplete\");\n\t}\n});\n\n$.Autocompleter = function(input, options) {\n\n\tvar KEY = {\n\t\tUP: 38,\n\t\tDOWN: 40,\n\t\tDEL: 46,\n\t\tTAB: 9,\n\t\tRETURN: 13,\n\t\tESC: 27,\n\t\tCOMMA: 188,\n\t\tPAGEUP: 33,\n\t\tPAGEDOWN: 34,\n\t\tBACKSPACE: 8\n\t};\n\n\t// Create $ object for input element\n\tvar $input = $(input).attr(\"autocomplete\", \"off\").addClass(options.inputClass);\n\n\tvar timeout;\n\tvar previousValue = \"\";\n\tvar cache = $.Autocompleter.Cache(options);\n\tvar hasFocus = 0;\n\tvar lastKeyPressCode;\n\tvar config = {\n\t\tmouseDownOnSelect: false\n\t};\n\tvar select = $.Autocompleter.Select(options, input, selectCurrent, config);\n\t\n\tvar blockSubmit;\n\t\n\t// prevent form submit in opera when selecting with return key\n\t$.browser.opera && $(input.form).bind(\"submit.autocomplete\", function() {\n\t\tif (blockSubmit) {\n\t\t\tblockSubmit = false;\n\t\t\treturn false;\n\t\t}\n\t});\n\t\n\t// only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all\n\t$input.bind(($.browser.opera ? \"keypress\" : \"keydown\") + \".autocomplete\", function(event) {\n\t\t// track last key pressed\n\t\tlastKeyPressCode = event.keyCode;\n\t\tswitch(event.keyCode) {\n\t\t\n\t\t\tcase KEY.UP:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.prev();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.DOWN:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.next();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.PAGEUP:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.pageUp();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.PAGEDOWN:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.pageDown();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\t// matches also semicolon\n\t\t\tcase options.multiple && $.trim(options.multipleSeparator) == \",\" && KEY.COMMA:\n\t\t\tcase KEY.TAB:\n\t\t\tcase KEY.RETURN:\n\t\t\t\tif( selectCurrent() ) {\n\t\t\t\t\t// stop default to prevent a form submit, Opera needs special handling\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tblockSubmit = true;\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.ESC:\n\t\t\t\tselect.hide();\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tdefault:\n\t\t\t\tclearTimeout(timeout);\n\t\t\t\ttimeout = setTimeout(onChange, options.delay);\n\t\t\t\tbreak;\n\t\t}\n\t}).focus(function(){\n\t\t// track whether the field has focus, we shouldn't process any\n\t\t// results if the field no longer has focus\n\t\thasFocus++;\n\t}).blur(function() {\n\t\thasFocus = 0;\n\t\tif (!config.mouseDownOnSelect) {\n\t\t\thideResults();\n\t\t}\n\t}).click(function() {\n\t\t// show select when clicking in a focused field\n\t\tif ( hasFocus++ > 1 && !select.visible() ) {\n\t\t\tonChange(0, true);\n\t\t}\n\t}).bind(\"search\", function() {\n\t\t// TODO why not just specifying both arguments?\n\t\tvar fn = (arguments.length > 1) ? arguments[1] : null;\n\t\tfunction findValueCallback(q, data) {\n\t\t\tvar result;\n\t\t\tif( data && data.length ) {\n\t\t\t\tfor (var i=0; i < data.length; i++) {\n\t\t\t\t\tif( data[i].result.toLowerCase() == q.toLowerCase() ) {\n\t\t\t\t\t\tresult = data[i];\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif( typeof fn == \"function\" ) fn(result);\n\t\t\telse $input.trigger(\"result\", result && [result.data, result.value]);\n\t\t}\n\t\t$.each(trimWords($input.val()), function(i, value) {\n\t\t\trequest(value, findValueCallback, findValueCallback);\n\t\t});\n\t}).bind(\"flushCache\", function() {\n\t\tcache.flush();\n\t}).bind(\"setOptions\", function() {\n\t\t$.extend(options, arguments[1]);\n\t\t// if we've updated the data, repopulate\n\t\tif ( \"data\" in arguments[1] )\n\t\t\tcache.populate();\n\t}).bind(\"unautocomplete\", function() {\n\t\tselect.unbind();\n\t\t$input.unbind();\n\t\t$(input.form).unbind(\".autocomplete\");\n\t});\n\t\n\t\n\tfunction selectCurrent() {\n\t\tvar selected = select.selected();\n\t\tif( !selected )\n\t\t\treturn false;\n\t\t\n\t\tvar v = selected.result;\n\t\tpreviousValue = v;\n\t\t\n\t\tif ( options.multiple ) {\n\t\t\tvar words = trimWords($input.val());\n\t\t\tif ( words.length > 1 ) {\n\t\t\t\tv = words.slice(0, words.length - 1).join( options.multipleSeparator ) + options.multipleSeparator + v;\n\t\t\t}\n\t\t\tv += options.multipleSeparator;\n\t\t}\n\t\t\n\t\t$input.val(v);\n\t\thideResultsNow();\n\t\t$input.trigger(\"result\", [selected.data, selected.value]);\n\t\treturn true;\n\t}\n\t\n\tfunction onChange(crap, skipPrevCheck) {\n\t\tif( lastKeyPressCode == KEY.DEL ) {\n\t\t\tselect.hide();\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tvar currentValue = $input.val();\n\t\t\n\t\tif ( !skipPrevCheck && currentValue == previousValue )\n\t\t\treturn;\n\t\t\n\t\tpreviousValue = currentValue;\n\t\t\n\t\tcurrentValue = lastWord(currentValue);\n\t\tif ( currentValue.length >= options.minChars) {\n\t\t\t$input.addClass(options.loadingClass);\n\t\t\tif (!options.matchCase)\n\t\t\t\tcurrentValue = currentValue.toLowerCase();\n\t\t\trequest(currentValue, receiveData, hideResultsNow);\n\t\t} else {\n\t\t\tstopLoading();\n\t\t\tselect.hide();\n\t\t}\n\t};\n\t\n\tfunction trimWords(value) {\n\t\tif ( !value ) {\n\t\t\treturn [\"\"];\n\t\t}\n\t\tvar words = value.split( options.multipleSeparator );\n\t\tvar result = [];\n\t\t$.each(words, function(i, value) {\n\t\t\tif ( $.trim(value) )\n\t\t\t\tresult[i] = $.trim(value);\n\t\t});\n\t\treturn result;\n\t}\n\t\n\tfunction lastWord(value) {\n\t\tif ( !options.multiple )\n\t\t\treturn value;\n\t\tvar words = trimWords(value);\n\t\treturn words[words.length - 1];\n\t}\n\t\n\t// fills in the input box w/the first match (assumed to be the best match)\n\t// q: the term entered\n\t// sValue: the first matching result\n\tfunction autoFill(q, sValue){\n\t\t// autofill in the complete box w/the first match as long as the user hasn't entered in more data\n\t\t// if the last user key pressed was backspace, don't autofill\n\t\tif( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) {\n\t\t\t// fill in the value (keep the case the user has typed)\n\t\t\t$input.val($input.val() + sValue.substring(lastWord(previousValue).length));\n\t\t\t// select the portion of the value not typed by the user (so the next character will erase)\n\t\t\t$.Autocompleter.Selection(input, previousValue.length, previousValue.length + sValue.length);\n\t\t}\n\t};\n\n\tfunction hideResults() {\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(hideResultsNow, 200);\n\t};\n\n\tfunction hideResultsNow() {\n\t\tvar wasVisible = select.visible();\n\t\tselect.hide();\n\t\tclearTimeout(timeout);\n\t\tstopLoading();\n\t\tif (options.mustMatch) {\n\t\t\t// call search and run callback\n\t\t\t$input.search(\n\t\t\t\tfunction (result){\n\t\t\t\t\t// if no value found, clear the input box\n\t\t\t\t\tif( !result ) {\n\t\t\t\t\t\tif (options.multiple) {\n\t\t\t\t\t\t\tvar words = trimWords($input.val()).slice(0, -1);\n\t\t\t\t\t\t\t$input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : \"\") );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t$input.val( \"\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t\tif (wasVisible)\n\t\t\t// position cursor at end of input field\n\t\t\t$.Autocompleter.Selection(input, input.value.length, input.value.length);\n\t};\n\n\tfunction receiveData(q, data) {\n\t\tif ( data && data.length && hasFocus ) {\n\t\t\tstopLoading();\n\t\t\tselect.display(data, q);\n\t\t\tautoFill(q, data[0].value);\n\t\t\tselect.show();\n\t\t} else {\n\t\t\thideResultsNow();\n\t\t}\n\t};\n\n\tfunction request(term, success, failure) {\n\t\tif (!options.matchCase)\n\t\t\tterm = term.toLowerCase();\n\t\tvar data = cache.load(term);\n\t\tdata = null; // Avoid buggy cache and go to Solr every time \n\t\t// recieve the cached data\n\t\tif (data && data.length) {\n\t\t\tsuccess(term, data);\n\t\t// if an AJAX url has been supplied, try loading the data now\n\t\t} else if( (typeof options.url == \"string\") && (options.url.length > 0) ){\n\t\t\t\n\t\t\tvar extraParams = {\n\t\t\t\ttimestamp: +new Date()\n\t\t\t};\n\t\t\t$.each(options.extraParams, function(key, param) {\n\t\t\t\textraParams[key] = typeof param == \"function\" ? param() : param;\n\t\t\t});\n\t\t\t\n\t\t\t$.ajax({\n\t\t\t\t// try to leverage ajaxQueue plugin to abort previous requests\n\t\t\t\tmode: \"abort\",\n\t\t\t\t// limit abortion to this input\n\t\t\t\tport: \"autocomplete\" + input.name,\n\t\t\t\tdataType: options.dataType,\n\t\t\t\turl: options.url,\n\t\t\t\tdata: $.extend({\n\t\t\t\t\tq: lastWord(term),\n\t\t\t\t\tlimit: options.max\n\t\t\t\t}, extraParams),\n\t\t\t\tsuccess: function(data) {\n\t\t\t\t\tvar parsed = options.parse && options.parse(data) || parse(data);\n\t\t\t\t\tcache.add(term, parsed);\n\t\t\t\t\tsuccess(term, parsed);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\t// if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match\n\t\t\tselect.emptyList();\n\t\t\tfailure(term);\n\t\t}\n\t};\n\t\n\tfunction parse(data) {\n\t\tvar parsed = [];\n\t\tvar rows = data.split(\"\\n\");\n\t\tfor (var i=0; i < rows.length; i++) {\n\t\t\tvar row = $.trim(rows[i]);\n\t\t\tif (row) {\n\t\t\t\trow = row.split(\"|\");\n\t\t\t\tparsed[parsed.length] = {\n\t\t\t\t\tdata: row,\n\t\t\t\t\tvalue: row[0],\n\t\t\t\t\tresult: options.formatResult && options.formatResult(row, row[0]) || row[0]\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t\treturn parsed;\n\t};\n\n\tfunction stopLoading() {\n\t\t$input.removeClass(options.loadingClass);\n\t};\n\n};\n\n$.Autocompleter.defaults = {\n\tinputClass: \"ac_input\",\n\tresultsClass: \"ac_results\",\n\tloadingClass: \"ac_loading\",\n\tminChars: 1,\n\tdelay: 400,\n\tmatchCase: false,\n\tmatchSubset: true,\n\tmatchContains: false,\n\tcacheLength: 10,\n\tmax: 100,\n\tmustMatch: false,\n\textraParams: {},\n\tselectFirst: false,\n\tformatItem: function(row) { return row[0]; },\n\tformatMatch: null,\n\tautoFill: false,\n\twidth: 0,\n\tmultiple: false,\n\tmultipleSeparator: \", \",\n\thighlight: function(value, term) {\n\t\treturn value.replace(new RegExp(\"(?![^&;]+;)(?!<[^<>]*)(\" + term.replace(/([\\^\\$\\(\\)\\[\\]\\{\\}\\*\\.\\+\\?\\|\\\\])/gi, \"\\\\$1\") + \")(?![^<>]*>)(?![^&;]+;)\", \"gi\"), \"<strong>$1</strong>\");\n\t},\n    scroll: true,\n    scrollHeight: 180\n};\n\n$.Autocompleter.Cache = function(options) {\n\n\tvar data = {};\n\tvar length = 0;\n\t\n\tfunction matchSubset(s, sub) {\n\t\tif (!options.matchCase) \n\t\t\ts = s.toLowerCase();\n\t\tvar i = s.indexOf(sub);\n\t\tif (options.matchContains == \"word\"){\n\t\t\ti = s.toLowerCase().search(\"\\\\b\" + sub.toLowerCase());\n\t\t}\n\t\tif (i == -1) return false;\n\t\treturn i == 0 || options.matchContains;\n\t};\n\t\n\tfunction add(q, value) {\n\t\tif (length > options.cacheLength){\n\t\t\tflush();\n\t\t}\n\t\tif (!data[q]){ \n\t\t\tlength++;\n\t\t}\n\t\tdata[q] = value;\n\t}\n\t\n\tfunction populate(){\n\t\tif( !options.data ) return false;\n\t\t// track the matches\n\t\tvar stMatchSets = {},\n\t\t\tnullData = 0;\n\n\t\t// no url was specified, we need to adjust the cache length to make sure it fits the local data store\n\t\tif( !options.url ) options.cacheLength = 1;\n\t\t\n\t\t// track all options for minChars = 0\n\t\tstMatchSets[\"\"] = [];\n\t\t\n\t\t// loop through the array and create a lookup structure\n\t\tfor ( var i = 0, ol = options.data.length; i < ol; i++ ) {\n\t\t\tvar rawValue = options.data[i];\n\t\t\t// if rawValue is a string, make an array otherwise just reference the array\n\t\t\trawValue = (typeof rawValue == \"string\") ? [rawValue] : rawValue;\n\t\t\t\n\t\t\tvar value = options.formatMatch(rawValue, i+1, options.data.length);\n\t\t\tif ( value === false )\n\t\t\t\tcontinue;\n\t\t\t\t\n\t\t\tvar firstChar = value.charAt(0).toLowerCase();\n\t\t\t// if no lookup array for this character exists, look it up now\n\t\t\tif( !stMatchSets[firstChar] ) \n\t\t\t\tstMatchSets[firstChar] = [];\n\n\t\t\t// if the match is a string\n\t\t\tvar row = {\n\t\t\t\tvalue: value,\n\t\t\t\tdata: rawValue,\n\t\t\t\tresult: options.formatResult && options.formatResult(rawValue) || value\n\t\t\t};\n\t\t\t\n\t\t\t// push the current match into the set list\n\t\t\tstMatchSets[firstChar].push(row);\n\n\t\t\t// keep track of minChars zero items\n\t\t\tif ( nullData++ < options.max ) {\n\t\t\t\tstMatchSets[\"\"].push(row);\n\t\t\t}\n\t\t};\n\n\t\t// add the data items to the cache\n\t\t$.each(stMatchSets, function(i, value) {\n\t\t\t// increase the cache size\n\t\t\toptions.cacheLength++;\n\t\t\t// add to the cache\n\t\t\tadd(i, value);\n\t\t});\n\t}\n\t\n\t// populate any existing data\n\tsetTimeout(populate, 25);\n\t\n\tfunction flush(){\n\t\tdata = {};\n\t\tlength = 0;\n\t}\n\t\n\treturn {\n\t\tflush: flush,\n\t\tadd: add,\n\t\tpopulate: populate,\n\t\tload: function(q) {\n\t\t\tif (!options.cacheLength || !length)\n\t\t\t\treturn null;\n\t\t\t/* \n\t\t\t * if dealing w/local data and matchContains than we must make sure\n\t\t\t * to loop through all the data collections looking for matches\n\t\t\t */\n\t\t\tif( !options.url && options.matchContains ){\n\t\t\t\t// track all matches\n\t\t\t\tvar csub = [];\n\t\t\t\t// loop through all the data grids for matches\n\t\t\t\tfor( var k in data ){\n\t\t\t\t\t// don't search through the stMatchSets[\"\"] (minChars: 0) cache\n\t\t\t\t\t// this prevents duplicates\n\t\t\t\t\tif( k.length > 0 ){\n\t\t\t\t\t\tvar c = data[k];\n\t\t\t\t\t\t$.each(c, function(i, x) {\n\t\t\t\t\t\t\t// if we've got a match, add it to the array\n\t\t\t\t\t\t\tif (matchSubset(x.value, q)) {\n\t\t\t\t\t\t\t\tcsub.push(x);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t\t\treturn csub;\n\t\t\t} else \n\t\t\t// if the exact item exists, use it\n\t\t\tif (data[q]){\n\t\t\t\treturn data[q];\n\t\t\t} else\n\t\t\tif (options.matchSubset) {\n\t\t\t\tfor (var i = q.length - 1; i >= options.minChars; i--) {\n\t\t\t\t\tvar c = data[q.substr(0, i)];\n\t\t\t\t\tif (c) {\n\t\t\t\t\t\tvar csub = [];\n\t\t\t\t\t\t$.each(c, function(i, x) {\n\t\t\t\t\t\t\tif (matchSubset(x.value, q)) {\n\t\t\t\t\t\t\t\tcsub[csub.length] = x;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t\treturn csub;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n};\n\n$.Autocompleter.Select = function (options, input, select, config) {\n\tvar CLASSES = {\n\t\tACTIVE: \"ac_over\"\n\t};\n\t\n\tvar listItems,\n\t\tactive = -1,\n\t\tdata,\n\t\tterm = \"\",\n\t\tneedsInit = true,\n\t\telement,\n\t\tlist;\n\t\n\t// Create results\n\tfunction init() {\n\t\tif (!needsInit)\n\t\t\treturn;\n\t\telement = $(\"<div/>\")\n\t\t.hide()\n\t\t.addClass(options.resultsClass)\n\t\t.css(\"position\", \"absolute\")\n\t\t.appendTo(document.body);\n\t\n\t\tlist = $(\"<ul/>\").appendTo(element).mouseover( function(event) {\n\t\t\tif(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') {\n\t            active = $(\"li\", list).removeClass(CLASSES.ACTIVE).index(target(event));\n\t\t\t    $(target(event)).addClass(CLASSES.ACTIVE);            \n\t        }\n\t\t}).click(function(event) {\n\t\t\t$(target(event)).addClass(CLASSES.ACTIVE);\n\t\t\tselect();\n\t\t\t// TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus\n\t\t\tinput.focus();\n\t\t\treturn false;\n\t\t}).mousedown(function() {\n\t\t\tconfig.mouseDownOnSelect = true;\n\t\t}).mouseup(function() {\n\t\t\tconfig.mouseDownOnSelect = false;\n\t\t});\n\t\t\n\t\tif( options.width > 0 )\n\t\t\telement.css(\"width\", options.width);\n\t\t\t\n\t\tneedsInit = false;\n\t} \n\t\n\tfunction target(event) {\n\t\tvar element = event.target;\n\t\twhile(element && element.tagName != \"LI\")\n\t\t\telement = element.parentNode;\n\t\t// more fun with IE, sometimes event.target is empty, just ignore it then\n\t\tif(!element)\n\t\t\treturn [];\n\t\treturn element;\n\t}\n\n\tfunction moveSelect(step) {\n\t\tlistItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE);\n\t\tmovePosition(step);\n        var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE);\n        if(options.scroll) {\n            var offset = 0;\n            listItems.slice(0, active).each(function() {\n\t\t\t\toffset += this.offsetHeight;\n\t\t\t});\n            if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) {\n                list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight());\n            } else if(offset < list.scrollTop()) {\n                list.scrollTop(offset);\n            }\n        }\n\t};\n\t\n\tfunction movePosition(step) {\n\t\tactive += step;\n\t\tif (active < 0) {\n\t\t\tactive = listItems.size() - 1;\n\t\t} else if (active >= listItems.size()) {\n\t\t\tactive = 0;\n\t\t}\n\t}\n\t\n\tfunction limitNumberOfItems(available) {\n\t\treturn options.max && options.max < available\n\t\t\t? options.max\n\t\t\t: available;\n\t}\n\t\n\tfunction fillList() {\n\t\tlist.empty();\n\t\tvar max = limitNumberOfItems(data.length);\n\t\tfor (var i=0; i < max; i++) {\n\t\t\tif (!data[i])\n\t\t\t\tcontinue;\n\t\t\tvar formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term);\n\t\t\tif ( formatted === false )\n\t\t\t\tcontinue;\n\t\t\tvar li = $(\"<li/>\").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? \"ac_even\" : \"ac_odd\").appendTo(list)[0];\n\t\t\t$.data(li, \"ac_data\", data[i]);\n\t\t}\n\t\tlistItems = list.find(\"li\");\n\t\tif ( options.selectFirst ) {\n\t\t\tlistItems.slice(0, 1).addClass(CLASSES.ACTIVE);\n\t\t\tactive = 0;\n\t\t}\n\t\t// apply bgiframe if available\n\t\tif ( $.fn.bgiframe )\n\t\t\tlist.bgiframe();\n\t}\n\t\n\treturn {\n\t\tdisplay: function(d, q) {\n\t\t\tinit();\n\t\t\tdata = d;\n\t\t\tterm = q;\n\t\t\tfillList();\n\t\t},\n\t\tnext: function() {\n\t\t\tmoveSelect(1);\n\t\t},\n\t\tprev: function() {\n\t\t\tmoveSelect(-1);\n\t\t},\n\t\tpageUp: function() {\n\t\t\tif (active != 0 && active - 8 < 0) {\n\t\t\t\tmoveSelect( -active );\n\t\t\t} else {\n\t\t\t\tmoveSelect(-8);\n\t\t\t}\n\t\t},\n\t\tpageDown: function() {\n\t\t\tif (active != listItems.size() - 1 && active + 8 > listItems.size()) {\n\t\t\t\tmoveSelect( listItems.size() - 1 - active );\n\t\t\t} else {\n\t\t\t\tmoveSelect(8);\n\t\t\t}\n\t\t},\n\t\thide: function() {\n\t\t\telement && element.hide();\n\t\t\tlistItems && listItems.removeClass(CLASSES.ACTIVE);\n\t\t\tactive = -1;\n\t\t},\n\t\tvisible : function() {\n\t\t\treturn element && element.is(\":visible\");\n\t\t},\n\t\tcurrent: function() {\n\t\t\treturn this.visible() && (listItems.filter(\".\" + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]);\n\t\t},\n\t\tshow: function() {\n\t\t\tvar offset = $(input).offset();\n\t\t\telement.css({\n\t\t\t\twidth: typeof options.width == \"string\" || options.width > 0 ? options.width : $(input).width(),\n\t\t\t\ttop: offset.top + input.offsetHeight,\n\t\t\t\tleft: offset.left\n\t\t\t}).show();\n            if(options.scroll) {\n                list.scrollTop(0);\n                list.css({\n\t\t\t\t\tmaxHeight: options.scrollHeight,\n\t\t\t\t\toverflow: 'auto'\n\t\t\t\t});\n\t\t\t\t\n                if($.browser.msie && typeof document.body.style.maxHeight === \"undefined\") {\n\t\t\t\t\tvar listHeight = 0;\n\t\t\t\t\tlistItems.each(function() {\n\t\t\t\t\t\tlistHeight += this.offsetHeight;\n\t\t\t\t\t});\n\t\t\t\t\tvar scrollbarsVisible = listHeight > options.scrollHeight;\n                    list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight );\n\t\t\t\t\tif (!scrollbarsVisible) {\n\t\t\t\t\t\t// IE doesn't recalculate width when scrollbar disappears\n\t\t\t\t\t\tlistItems.width( list.width() - parseInt(listItems.css(\"padding-left\")) - parseInt(listItems.css(\"padding-right\")) );\n\t\t\t\t\t}\n                }\n                \n            }\n\t\t},\n\t\tselected: function() {\n\t\t\tvar selected = listItems && listItems.filter(\".\" + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);\n\t\t\treturn selected && selected.length && $.data(selected[0], \"ac_data\");\n\t\t},\n\t\temptyList: function (){\n\t\t\tlist && list.empty();\n\t\t},\n\t\tunbind: function() {\n\t\t\telement && element.remove();\n\t\t}\n\t};\n};\n\n$.Autocompleter.Selection = function(field, start, end) {\n\tif( field.createTextRange ){\n\t\tvar selRange = field.createTextRange();\n\t\tselRange.collapse(true);\n\t\tselRange.moveStart(\"character\", start);\n\t\tselRange.moveEnd(\"character\", end);\n\t\tselRange.select();\n\t} else if( field.setSelectionRange ){\n\t\tfield.setSelectionRange(start, end);\n\t} else {\n\t\tif( field.selectionStart ){\n\t\t\tfield.selectionStart = start;\n\t\t\tfield.selectionEnd = end;\n\t\t}\n\t}\n\tfield.focus();\n};\n\n})(jQuery);"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/layout.vm",
    "content": "<html>\n<head>\n  #parse(\"head.vm\")\n</head>\n  <body>\n    <div id=\"admin\"><a href=\"#url_root/#/#core_name\">Solr Admin</a></div>\n    <div id=\"header\">\n      #parse(\"header.vm\")\n    </div>\n    <div id=\"tabs\">\n      #parse(\"tabs.vm\")\n    </div>\n    <div id=\"content\">\n      $content\n    </div>\n    <div id=\"footer\">\n      #parse(\"footer.vm\")\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/main.css",
    "content": "#admin{\n  text-align: right;\n  vertical-align: top; \n}\n\n#head{\n  width: 100%;\n}\n.array-field {\n  border: 2px solid #474747;\n  background: #FFE9D8;\n  padding: 5px;\n  margin: 5px;\n}\n\n.array-field-list li {\n  list-style: circle;\n  margin-left: 20px;\n}\n\n.parsed_query_header {\n  font-family: Helvetica, Arial, sans-serif;\n  font-size: 10pt;\n  font-weight: bold;\n}\n\n.parsed_query {\n  font-family: Courier, Courier New, monospaced;\n  font-size: 10pt;\n  font-weight: normal;\n}\n\nbody {\n  font-family: Helvetica, Arial, sans-serif;\n  font-size: 10pt;\n}\n\na {\n  color: #43a4b1;\n}\n\n.navigators {\n  float: left;\n  margin: 5px;\n  margin-top: 0px;\n  width: 185px;\n  padding: 5px;\n  top: -20px;\n  position: relative;  \n}\n\n.navigators h2 {\n  background: #FEC293;\n  border: 1px solid #ce9d77;\n  padding: 5px;\n}\n\n.navigators ul {\n  list-style: none;\n  margin: 0;\n  margin-bottom: 5px;\n  margin-top: 5px;\n  padding-left: 10px;\n}\n\n.navigators ul li {\n  color: #999;\n  padding: 2px;\n}\n\n\n\n.facet-field {\n  font-weight: bold;\n}\n\n.highlight {\n  color: white;\n  background-color: gray;\n  border: 1px black solid;\n}\n\n.highlight-box {\n  margin-left: 15px;\n}\n\n.field-name {\n  font-weight: bold;\n}\n\n.highlighted-facet-field {\n  background: white;\n}\n\n.constraints {\n  margin-top: 10px;\n}\n\n#query-form{\n  width: 80%;\n}\n\n\n\n.query-box, .constraints {\n  padding: 5px;\n  margin: 5px;\n  font-weight: normal;\n  font-size: 24px;\n  letter-spacing: 0.08em;\n}\n\n.query-box #q {\n  margin-left: 8px;\n  width: 60%;\n  height: 50px;\n  border: 1px solid #999;\n  font-size: 1em;\n  padding: 0.4em;\n}\n\n.query-box {\n  \n}\n\n.query-boost {\n  \n  top: 10px;\n  left: 50px;\n  position: relative;\n  font-size: 0.8em;\n}\n\n.query-box .inputs{\n  left: 180px;\n  position: relative;\n  \n}\n\n#logo {\n  margin: 10px;\n  border-style: none;\n}\n\n.pagination {\n  padding-left: 33%;\n  background: #eee;\n  margin: 5px;\n  margin-left: 210px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n.result-document {\n  border: 1px solid #999;\n  padding: 5px;\n  margin: 5px;\n  margin-left: 210px;\n  margin-bottom: 15px;\n}\n\n.result-document div{\n  padding: 5px;\n}\n\n.result-title{\n  width:60%;\n}\n\n.result-body{\n  background: #ddd;\n}\n\n.mlt{\n  \n}\n\n.map{\n  float: right;\n  position: relative;\n  top: -25px;  \n}\n\n.result-document:nth-child(2n+1) {\n  background-color: #eee;\n}\n\n\n.selected-facet-field {\n  font-weight: bold;\n}\n\nli.show {\n  list-style: disc;\n}\n\n.group-value{\n  font-weight: bold;\n}\n\n.error {\n  color: white;\n  background-color: red;\n  left: 210px;\n  width:80%;\n  position: relative;\n\n}\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/product-doc.vm",
    "content": "<div class=\"result-title\"><b>#field('name')</b><span class=\"mlt\">   #if($params.getBool('mlt', false) == false)<a href=\"#lensNoQ&q=id:$docId&mlt=true\">More Like This</a>#end</span></div>\n##do we have a physical store for this product\n#set($store = $doc.getFieldValue('store'))\n#if($store)<div class=\"map\"><img src=\"http://maps.google.com/maps/api/staticmap?&zoom=12&size=150x80&maptype=roadmap&markers=$doc.getFieldValue('store')&sensor=false\" /><div><small><a target=\"_map\" href=\"http://maps.google.com/?q=$store&amp;source=embed\">Larger Map</a></small></div></div>#end\n<div>Id: #field('id')</div>\n<div>Price: #field('price_c')</div>\n<div>Features: #field('features')</div>\n<div>In Stock: #field('inStock')</div>\n<div class=\"mlt\">\n  #set($mlt = $mltResults.get($docId))\n  #set($mltOn = $params.getBool('mlt'))\n  #if($mltOn == true)<div class=\"field-name\">Similar Items</div>#end\n  #if ($mltOn && $mlt && $mlt.size() > 0)\n  <ul>\n    #foreach($mltHit in $mlt)\n      #set($mltId = $mltHit.getFieldValue('id'))\n      <li><div><a href=\"#url_for_home?q=id:$mltId\">$mltId</a></div><div><span class=\"field-name\">Name:</span> $mltHit.getFieldValue('name')</div>\n        <div><span class=\"field-name\">Price:</span> $!number.currency($mltHit.getFieldValue('price')) <span class=\"field-name\">In Stock:</span> $mltHit.getFieldValue('inStock')</div>\n\n      </li>\n    #end\n  </ul>\n  #elseif($mltOn && $mlt.size() == 0)\n    <div>No Similar Items Found</div>\n  #end\n</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/query.vm",
    "content": "<div class=\"query-box\">\n  <form id=\"query-form\" action=\"#{url_for_home}\" method=\"GET\">\n    <div class=\"inputs\">\n      <span #annTitle(\"Add the query using the &q= parameter\")>Find: <input type=\"text\" id=\"q\" name=\"q\" value=\"$!esc.html($params.get('q'))\"/> <input type=\"submit\" id=\"querySubmit\"/> <input type=\"reset\"/></span>\n      <div class=\"query-boost\"><span #annTitle(\"Add the boost function &bf=price to the query\")><input type=\"checkbox\" name=\"bf\" value=\"price\" #if($request.params.get('bf') == 'price')checked=\"true\"#end>Boost by Price</input></span>\n      #parse(\"querySpatial.vm\")\n      #parse(\"queryGroup.vm\")\n      </div>\n  </div>\n\n    #if($request.params.get('debugQuery'))\n      <input type=\"hidden\" name=\"debugQuery\" value=\"true\"/>\n    #end\n    #if($annotate == true)\n      <input type=\"hidden\" name=\"annotateBrowse\" value=\"true\"/>\n    #end\n    #foreach($fq in $request.params.getParams('fq'))\n      #if ($fq != \"{!bbox}\")\n        <input type=\"hidden\" name=\"fq\" id=\"allFQs\" value=\"$esc.html($fq)\"/>\n      #end\n    #end\n    <div class=\"constraints\" #annTitle(\"Lists out the &fq filters.  Click to remove.\")>\n      #foreach($fq in $params.getParams('fq'))\n        #set($previous_fq_count=$velocityCount - 1)\n        #if($fq != '')\n        &gt; <a style=\"{text-decoration: line-through;}\" href=\"#url_for_filters($request.params.getParams('fq').subList(0,$previous_fq_count))\">$fq</a>\n        #end\n      #end\n    </div>\n    <div class=\"parsed_query_header\">\n     #if($request.params.get('debugQuery'))\n        <a href=\"#\" onclick='jQuery(this).siblings(\"div\").toggle(); return false;'>toggle parsed query</a>\n        <div class=\"parsed_query\" style=\"display:none\">$response.response.debug.parsedquery</div>\n      #end\n      #set($queryOpts = $request.params.get(\"queryOpts\"))\n      #if($queryOpts && $queryOpts != \"\")\n        <input type=\"hidden\" name=\"queryOpts\" value=\"$queryOpts\"/>\n      #end\n    </div>\n  </form>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/queryGroup.vm",
    "content": "#set($queryOpts = $params.get(\"queryOpts\"))\n#if($queryOpts == \"group\")\n<div>\n        #set($groupF = $request.params.get('group.field'))\n        <label #annTitle(\"Add the &group.field parameter. Multiselect is supported\")>Group By:\n          <select id=\"group\" name=\"group.field\" multiple=\"true\">\n            ##TODO: Handle multiple selects correctly\n            <option value=\"none\"\n            #if($groupF == '')selected=\"true\"#end>No Group</option>\n            <option value=\"manu_exact\"\n            #if($groupF == 'manu_exact')selected=\"true\"#end>Manufacturer</option>\n            <option value=\"popularity\"\n            #if($groupF == 'popularity')selected=\"true\"#end>Popularity</option>\n          </select>\n        </label>  \n<input type=\"hidden\" name=\"group\" value=\"true\"/>\n</div>\n\n#end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/querySpatial.vm",
    "content": "#set($queryOpts = $params.get(\"queryOpts\"))\n#if($queryOpts == \"spatial\")\n<div>\n        #set($loc = $request.params.get('pt'))\n        #set($dist = $request.params.get('d', \"10\"))\n        <label #annTitle(\"Add the &pt parameter\")>Location Filter:\n          <select id=\"pt\" name=\"pt\">\n            <option value=\"none\"\n            #if($loc == '')selected=\"true\"#end>No Filter</option>\n            <option value=\"45.17614,-93.87341\"\n            #if($loc == '45.17614,-93.87341')selected=\"true\"#end>Buffalo, MN</option>\n            <option value=\"37.7752,-100.0232\"\n            #if($loc == '37.7752,-100.0232')selected=\"true\"#end>Dodge City, KS</option>\n            <option value=\"35.0752,-97.032\"\n            #if($loc == '35.0752,-97.032')selected=\"true\"#end>Oklahoma City, OK</option>\n            <option value=\"37.7752,-122.4232\"\n            #if($loc == '37.7752,-122.4232')selected=\"true\"#end>San Francisco CA</option>\n          </select>\n  </label>\n  <span #annTitle(\"Add the &d parameter\")>Distance (KM): <input id=\"d\" name=\"d\" type=\"text\" size=\"6\"\n                                                                value=\"#if($dist != '')${dist}#{else}10#end\"/></span>\n<input type=\"hidden\" name=\"sfield\" value=\"store\"/>\n<input type=\"hidden\" id=\"spatialFQ\" name=\"fq\" value=\"\"/>\n<input type=\"hidden\" name=\"queryOpts\" value=\"spatial\"/>        \n</div>\n<script type=\"text/javascript\">\n  $('#query-form').submit(function() {\n    if ($(\"#pt\").val() != \"none\") {\n      $(\"#spatialFQ\").val(\"{!bbox}\");\n    }\n    $fqs = $(\"#allFQs\").val();\n    $fqs = $fqs.replace(\"{!bbox}\", \"\");\n    if ($fqs == ''){\n      $(\"#allFQs\").remove();\n    }\n    $(\"#allFQs\").val($fqs);\n    return true;\n    });\n</script>\n#end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/richtext-doc.vm",
    "content": "## Mimetype to extension map for detecting file type and show icon\n## List of types match the icons in /solr/img/filetypes\n#set($extMap = {\"application/x-7z-compressed\": \"7z\",\n                 \"application/postscript\": \"ai\",\n                 \"application/pgp-signature\": \"asc\",\n                 \"application/octet-stream\": \"bin\",\n                 \"application/x-bzip2\": \"bz2\",\n                 \"text/x-c\": \"c\",\n                 \"application/vnd.ms-htmlhelp\": \"chm\",\n                 \"application/java-vm\": \"class\",\n                 \"text/css\": \"css\",\n                 \"text/csv\": \"csv\",\n                 \"application/x-debian-package\": \"deb\",\n                 \"application/msword\": \"doc\",\n                 \"message/rfc822\": \"eml\",\n                 \"image/gif\": \"gif\",\n                 \"application/winhlp\": \"hlp\",\n                 \"text/html\": \"html\",\n                 \"application/java-archive\": \"jar\",\n                 \"text/x-java-source\": \"java\",\n                 \"image/jpeg\": \"jpeg\",\n                 \"application/javascript\": \"js\",\n                 \"application/vnd.oasis.opendocument.chart\": \"odc\",\n                 \"application/vnd.oasis.opendocument.formula\": \"odf\",\n                 \"application/vnd.oasis.opendocument.graphics\": \"odg\",\n                 \"application/vnd.oasis.opendocument.image\": \"odi\",\n                 \"application/vnd.oasis.opendocument.presentation\": \"odp\",\n                 \"application/vnd.oasis.opendocument.spreadsheet\": \"ods\",\n                 \"application/vnd.oasis.opendocument.text\": \"odt\",\n                 \"application/pdf\": \"pdf\",\n                 \"application/pgp-encrypted\": \"pgp\",\n                 \"image/png\": \"png\",\n                 \"application/vnd.ms-powerpoint\": \"ppt\",\n                 \"audio/x-pn-realaudio\": \"ram\",\n                 \"application/x-rar-compressed\": \"rar\",\n                 \"application/vnd.rn-realmedia\": \"rm\",\n                 \"application/rtf\": \"rtf\",\n                 \"application/x-shockwave-flash\": \"swf\",\n                 \"application/vnd.sun.xml.calc\": \"sxc\",\n                 \"application/vnd.sun.xml.draw\": \"sxd\",\n                 \"application/vnd.sun.xml.impress\": \"sxi\",\n                 \"application/vnd.sun.xml.writer\": \"sxw\",\n                 \"application/x-tar\": \"tar\",\n                 \"application/x-tex\": \"tex\",\n                 \"text/plain\": \"txt\",\n                 \"text/x-vcard\": \"vcf\",\n                 \"application/vnd.visio\": \"vsd\",\n                 \"audio/x-wav\": \"wav\",\n                 \"audio/x-ms-wma\": \"wma\",\n                 \"video/x-ms-wmv\": \"wmv\",\n                 \"application/vnd.ms-excel\": \"xls\",\n                 \"application/xml\": \"xml\",\n                 \"application/x-xpinstall\": \"xpi\",\n                 \"application/zip\": \"zip\"})\n\n\n#if($doc.getFieldValue('title'))\n  #set($title = $esc.html($doc.getFirstValue('title')))\n#else\n  #set($title = \"[\"+$doc.getFieldValue('id')+\"]\")\n#end\n#if($doc.getFieldValue('url'))\n  #set($url = $doc.getFieldValue('url'))\n#elseif($doc.getFieldValue('resourcename'))\n  #set($url = \"file:///$doc.getFieldValue('resourcename')\")\n#else\n  #set($url = \"$doc.getFieldValue('id')\")\n#end\n#set($supportedtypes = \"7z;ai;aiff;asc;audio;bin;bz2;c;cfc;cfm;chm;class;conf;cpp;cs;css;csv;deb;divx;doc;dot;eml;enc;file;gif;gz;hlp;htm;html;image;iso;jar;java;jpeg;jpg;js;lua;m;mm;mov;mp3;mpg;odc;odf;odg;odi;odp;ods;odt;ogg;pdf;pgp;php;pl;png;ppt;ps;py;ram;rar;rb;rm;rpm;rtf;sig;sql;swf;sxc;sxd;sxi;sxw;tar;tex;tgz;txt;vcf;video;vsd;wav;wma;wmv;xls;xml;xpi;xvid;zip\")\n#set($ct = $list.get($doc.getFirstValue('content_type').split(\";\"),0))\n#set($filename = $doc.getFieldValue('resourcename'))\n\n#set($filetype = false)\n#set($filetype = $extMap.get($ct))\n##TODO: falling back to file extension is convenient, except when you don't have an icon for that extension\n##      example \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\" document\n##        with a .docx extension.  It'd be nice to fall back to an \"unknown\" or the existing \"file\" type\n##      We sort of do this below, but only if the filename has no extension (anything after the last dot).\n#if(!$filetype)#set($filetype = $filename.substring($filename.lastIndexOf(\".\")).substring(1))#end\n##if(!$filetype)#set($filetype = \"file\")#end\n##if(!$supportedtypes.contains($filetype))#set($filetype = \"file\")#end\n<div class=\"result-title\">\n## Small file type icons from http://www.splitbrain.org/projects/file_icons (public domain)\n<img src=\"#{url_root}/img/filetypes/${filetype}.png\" align=\"center\">\n<a href=\"${url}\" target=\"_blank\"><b>$title</b></a><span class=\"mlt\">   #if($params.getBool('mlt', false) == false)<a href=\"#lensNoQ&q=id:%22$docId%22&mlt=true\">More Like This</a>#end</span></div>\n<div>Id: #field('id')</div>\n<div>\n#if($doc.getFieldValue('resourcename'))Resource name: $filename \n#elseif($url)URL: $url\n#end\n#if($ct) ($ct)#end\n</div>\n#if($doc.getFieldValue('author'))<div>Author: #field('author')</div>#end\n#if($doc.getFieldValue('last_modified'))<div>last-modified: #field('last_modified')</div>#end\n<div class=\"result-body\">#field('content')</div>\n<div class=\"mlt\">\n  #set($mlt = $mltResults.get($docId))\n  #set($mltOn = $params.getBool('mlt'))\n  #if($mltOn == true)<div class=\"field-name\">Similar Items</div>#end\n  #if ($mltOn && $mlt && $mlt.size() > 0)\n  <ul>\n    #foreach($mltHit in $mlt)\n      #set($mltId = $mltHit.getFieldValue('id'))\n      <li><div><a href=\"#url_for_home?q=id:$mltId\">$mltId</a></div><div><span class=\"field-name\">Title:</span> $mltHit.getFieldValue('title')</div>\n        <div><span class=\"field-name\">Author:</span> $mltHit.getFieldValue('author') <span class=\"field-name\">Description:</span> $mltHit.getFieldValue('description')</div>\n\n      </li>\n    #end\n  </ul>\n  #elseif($mltOn && $mlt.size() == 0)\n    <div>No Similar Items Found</div>\n  #end\n</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/suggest.vm",
    "content": "#foreach($t in $response.response.terms.name)\n$t.key\n#end"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/velocity/tabs.vm",
    "content": "##TODO: Make some nice tabs here\n#set($queryOpts = $params.get(\"queryOpts\"))\n<span #annTitle(\"Click the link to demonstrate various Solr capabilities\")><span>Examples: </span><span class=\"tab\">#if($queryOpts && $queryOpts != \"\")<a href=\"#url_for_home/?#debug#annotate\">Simple</a>#{else}Simple#end</span>\n<span class=\"tab\">#if($queryOpts == \"spatial\")Spatial#else<a href=\"#url_for_home?&queryOpts=spatial#debug#annotate\">Spatial</a>#end</span>\n<span class=\"tab\">#if($queryOpts == \"group\")Group By#else<a href=\"#url_for_home?#debug#annotate&queryOpts=group&group=true&group.field=manu_exact\">Group By</a>#end</span></span>\n<hr/>        "
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/xslt/example.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to HTML\n -->\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'\n>\n\n  <xsl:output media-type=\"text/html\" encoding=\"UTF-8\"/> \n  \n  <xsl:variable name=\"title\" select=\"concat('Solr search results (',response/result/@numFound,' documents)')\"/>\n  \n  <xsl:template match='/'>\n    <html>\n      <head>\n        <title><xsl:value-of select=\"$title\"/></title>\n        <xsl:call-template name=\"css\"/>\n      </head>\n      <body>\n        <h1><xsl:value-of select=\"$title\"/></h1>\n        <div class=\"note\">\n          This has been formatted by the sample \"example.xsl\" transform -\n          use your own XSLT to get a nicer page\n        </div>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n      </body>\n    </html>\n  </xsl:template>\n  \n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <div class=\"doc\">\n      <table width=\"100%\">\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n      </table>\n    </div>\n  </xsl:template>\n\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n    <xsl:param name=\"pos\"></xsl:param>\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n\n        <xsl:if test=\"boolean(//lst[@name='explain'])\">\n          <xsl:element name=\"a\">\n            <!-- can't allow whitespace here -->\n            <xsl:attribute name=\"href\">javascript:toggle(\"<xsl:value-of select=\"concat('exp-',$pos)\" />\");</xsl:attribute>?</xsl:element>\n          <br/>\n          <xsl:element name=\"div\">\n            <xsl:attribute name=\"class\">exp</xsl:attribute>\n            <xsl:attribute name=\"id\">\n              <xsl:value-of select=\"concat('exp-',$pos)\" />\n            </xsl:attribute>\n            <xsl:value-of select=\"//lst[@name='explain']/str[position()=$pos]\"/>\n          </xsl:element>\n        </xsl:if>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <ul>\n        <xsl:for-each select=\"*\">\n          <li><xsl:value-of select=\".\"/></li>\n        </xsl:for-each>\n        </ul>\n      </td>\n    </tr>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n  \n  <xsl:template name=\"css\">\n    <script>\n      function toggle(id) {\n        var obj = document.getElementById(id);\n        obj.style.display = (obj.style.display != 'block') ? 'block' : 'none';\n      }\n    </script>\n    <style type=\"text/css\">\n      body { font-family: \"Lucida Grande\", sans-serif }\n      td.name { font-style: italic; font-size:80%; }\n      td { vertical-align: top; }\n      ul { margin: 0px; margin-left: 1em; padding: 0px; }\n      .note { font-size:80%; }\n      .doc { margin-top: 1em; border-top: solid grey 1px; }\n      .exp { display: none; font-family: monospace; white-space: pre; }\n    </style>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/xslt/example_atom.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to Atom\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output\n       method=\"xml\"\n       encoding=\"utf-8\"\n       media-type=\"application/xml\"\n  />\n\n  <xsl:template match='/'>\n    <xsl:variable name=\"query\" select=\"response/lst[@name='responseHeader']/lst[@name='params']/str[@name='q']\"/>\n    <feed xmlns=\"http://www.w3.org/2005/Atom\">\n      <title>Example Solr Atom 1.0 Feed</title>\n      <subtitle>\n       This has been formatted by the sample \"example_atom.xsl\" transform -\n       use your own XSLT to get a nicer Atom feed.\n      </subtitle>\n      <author>\n        <name>Apache Solr</name>\n        <email>solr-user@lucene.apache.org</email>\n      </author>\n      <link rel=\"self\" type=\"application/atom+xml\" \n            href=\"http://localhost:8983/solr/q={$query}&amp;wt=xslt&amp;tr=atom.xsl\"/>\n      <updated>\n        <xsl:value-of select=\"response/result/doc[position()=1]/date[@name='timestamp']\"/>\n      </updated>\n      <id>tag:localhost,2007:example</id>\n      <xsl:apply-templates select=\"response/result/doc\"/>\n    </feed>\n  </xsl:template>\n    \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <entry>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link href=\"http://localhost:8983/solr/select?q={$id}\"/>\n      <id>tag:localhost,2007:<xsl:value-of select=\"$id\"/></id>\n      <summary><xsl:value-of select=\"arr[@name='features']\"/></summary>\n      <updated><xsl:value-of select=\"date[@name='timestamp']\"/></updated>\n    </entry>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/xslt/example_rss.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to RSS\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output\n       method=\"xml\"\n       encoding=\"utf-8\"\n       media-type=\"application/xml\"\n  />\n  <xsl:template match='/'>\n    <rss version=\"2.0\">\n       <channel>\n\t <title>Example Solr RSS 2.0 Feed</title>\n         <link>http://localhost:8983/solr</link>\n         <description>\n          This has been formatted by the sample \"example_rss.xsl\" transform -\n          use your own XSLT to get a nicer RSS feed.\n         </description>\n         <language>en-us</language>\n         <docs>http://localhost:8983/solr</docs>\n         <xsl:apply-templates select=\"response/result/doc\"/>\n       </channel>\n    </rss>\n  </xsl:template>\n  \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <xsl:variable name=\"timestamp\" select=\"date[@name='timestamp']\"/>\n    <item>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </link>\n      <description>\n        <xsl:value-of select=\"arr[@name='features']\"/>\n      </description>\n      <pubDate><xsl:value-of select=\"$timestamp\"/></pubDate>\n      <guid>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </guid>\n    </item>\n  </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/xslt/luke.xsl",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See the NOTICE file distributed with\n    this work for additional information regarding copyright ownership.\n    The ASF licenses this file to You under the Apache License, Version 2.0\n    (the \"License\"); you may not use this file except in compliance with\n    the License.  You may obtain a copy of the License at\n    \n    http://www.apache.org/licenses/LICENSE-2.0\n    \n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n-->\n\n\n<!-- \n  Display the luke request handler with graphs\n -->\n<xsl:stylesheet\n    xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n    xmlns=\"http://www.w3.org/1999/xhtml\"\n    version=\"1.0\"\n    >\n    <xsl:output\n        method=\"html\"\n        encoding=\"UTF-8\"\n        media-type=\"text/html\"\n        doctype-public=\"-//W3C//DTD XHTML 1.0 Strict//EN\"\n        doctype-system=\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"\n    />\n\n    <xsl:variable name=\"title\">Solr Luke Request Handler Response</xsl:variable>\n\n    <xsl:template match=\"/\">\n        <html xmlns=\"http://www.w3.org/1999/xhtml\">\n            <head>\n                <link rel=\"stylesheet\" type=\"text/css\" href=\"solr-admin.css\"/>\n                <link rel=\"icon\" href=\"favicon.ico\" type=\"image/ico\"/>\n                <link rel=\"shortcut icon\" href=\"favicon.ico\" type=\"image/ico\"/>\n                <title>\n                    <xsl:value-of select=\"$title\"/>\n                </title>\n                <xsl:call-template name=\"css\"/>\n\n            </head>\n            <body>\n                <h1>\n                    <xsl:value-of select=\"$title\"/>\n                </h1>\n                <div class=\"doc\">\n                    <ul>\n                        <xsl:if test=\"response/lst[@name='index']\">\n                            <li>\n                                <a href=\"#index\">Index Statistics</a>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='fields']\">\n                            <li>\n                                <a href=\"#fields\">Field Statistics</a>\n                                <ul>\n                                    <xsl:for-each select=\"response/lst[@name='fields']/lst\">\n                                        <li>\n                                            <a href=\"#{@name}\">\n                                                <xsl:value-of select=\"@name\"/>\n                                            </a>\n                                        </li>\n                                    </xsl:for-each>\n                                </ul>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='doc']\">\n                            <li>\n                                <a href=\"#doc\">Document statistics</a>\n                            </li>\n                        </xsl:if>\n                    </ul>\n                </div>\n                <xsl:if test=\"response/lst[@name='index']\">\n                    <h2><a name=\"index\"/>Index Statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='index']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='fields']\">\n                    <h2><a name=\"fields\"/>Field Statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='fields']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='doc']\">\n                    <h2><a name=\"doc\"/>Document statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='doc']\"/>\n                </xsl:if>\n            </body>\n        </html>\n    </xsl:template>\n\n    <xsl:template match=\"lst\">\n        <xsl:if test=\"parent::lst\">\n            <tr>\n                <td colspan=\"2\">\n                    <div class=\"doc\">\n                        <xsl:call-template name=\"list\"/>\n                    </div>\n                </td>\n            </tr>\n        </xsl:if>\n        <xsl:if test=\"not(parent::lst)\">\n            <div class=\"doc\">\n                <xsl:call-template name=\"list\"/>\n            </div>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"list\">\n        <xsl:if test=\"count(child::*)>0\">\n            <table>\n                <thead>\n                    <tr>\n                        <th colspan=\"2\">\n                            <p>\n                                <a name=\"{@name}\"/>\n                            </p>\n                            <xsl:value-of select=\"@name\"/>\n                        </th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <xsl:choose>\n                        <xsl:when\n                            test=\"@name='histogram'\">\n                            <tr>\n                                <td colspan=\"2\">\n                                    <xsl:call-template name=\"histogram\"/>\n                                </td>\n                            </tr>\n                        </xsl:when>\n                        <xsl:otherwise>\n                            <xsl:apply-templates/>\n                        </xsl:otherwise>\n                    </xsl:choose>\n                </tbody>\n            </table>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"histogram\">\n        <div class=\"doc\">\n            <xsl:call-template name=\"barchart\">\n                <xsl:with-param name=\"max_bar_width\">50</xsl:with-param>\n                <xsl:with-param name=\"iwidth\">800</xsl:with-param>\n                <xsl:with-param name=\"iheight\">160</xsl:with-param>\n                <xsl:with-param name=\"fill\">blue</xsl:with-param>\n            </xsl:call-template>\n        </div>\n    </xsl:template>\n\n    <xsl:template name=\"barchart\">\n        <xsl:param name=\"max_bar_width\"/>\n        <xsl:param name=\"iwidth\"/>\n        <xsl:param name=\"iheight\"/>\n        <xsl:param name=\"fill\"/>\n        <xsl:variable name=\"max\">\n            <xsl:for-each select=\"int\">\n                <xsl:sort data-type=\"number\" order=\"descending\"/>\n                <xsl:if test=\"position()=1\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n            </xsl:for-each>\n        </xsl:variable>\n        <xsl:variable name=\"bars\">\n           <xsl:value-of select=\"count(int)\"/>\n        </xsl:variable>\n        <xsl:variable name=\"bar_width\">\n           <xsl:choose>\n             <xsl:when test=\"$max_bar_width &lt; ($iwidth div $bars)\">\n               <xsl:value-of select=\"$max_bar_width\"/>\n             </xsl:when>\n             <xsl:otherwise>\n               <xsl:value-of select=\"$iwidth div $bars\"/>\n             </xsl:otherwise>\n           </xsl:choose>\n        </xsl:variable>\n        <table class=\"histogram\">\n           <tbody>\n              <tr>\n                <xsl:for-each select=\"int\">\n                   <td>\n                 <xsl:value-of select=\".\"/>\n                 <div class=\"histogram\">\n                  <xsl:attribute name=\"style\">background-color: <xsl:value-of select=\"$fill\"/>; width: <xsl:value-of select=\"$bar_width\"/>px; height: <xsl:value-of select=\"($iheight*number(.)) div $max\"/>px;</xsl:attribute>\n                 </div>\n                   </td> \n                </xsl:for-each>\n              </tr>\n              <tr>\n                <xsl:for-each select=\"int\">\n                   <td>\n                       <xsl:value-of select=\"@name\"/>\n                   </td>\n                </xsl:for-each>\n              </tr>\n           </tbody>\n        </table>\n    </xsl:template>\n\n    <xsl:template name=\"keyvalue\">\n        <xsl:choose>\n            <xsl:when test=\"@name\">\n                <tr>\n                    <td class=\"name\">\n                        <xsl:value-of select=\"@name\"/>\n                    </td>\n                    <td class=\"value\">\n                        <xsl:value-of select=\".\"/>\n                    </td>\n                </tr>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:value-of select=\".\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template match=\"int|bool|long|float|double|uuid|date\">\n        <xsl:call-template name=\"keyvalue\"/>\n    </xsl:template>\n\n    <xsl:template match=\"arr\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <ul>\n                    <xsl:for-each select=\"child::*\">\n                        <li>\n                            <xsl:apply-templates/>\n                        </li>\n                    </xsl:for-each>\n                </ul>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template match=\"str\">\n        <xsl:choose>\n            <xsl:when test=\"@name='schema' or @name='index' or @name='flags'\">\n                <xsl:call-template name=\"schema\"/>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:call-template name=\"keyvalue\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template name=\"schema\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <xsl:if test=\"contains(.,'unstored')\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n                <xsl:if test=\"not(contains(.,'unstored'))\">\n                    <xsl:call-template name=\"infochar2string\">\n                        <xsl:with-param name=\"charList\">\n                            <xsl:value-of select=\".\"/>\n                        </xsl:with-param>\n                    </xsl:call-template>\n                </xsl:if>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template name=\"infochar2string\">\n        <xsl:param name=\"i\">1</xsl:param>\n        <xsl:param name=\"charList\"/>\n\n        <xsl:variable name=\"char\">\n            <xsl:value-of select=\"substring($charList,$i,1)\"/>\n        </xsl:variable>\n        <xsl:choose>\n            <xsl:when test=\"$char='I'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='I']\"/> - </xsl:when>\n            <xsl:when test=\"$char='T'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='T']\"/> - </xsl:when>\n            <xsl:when test=\"$char='S'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='S']\"/> - </xsl:when>\n            <xsl:when test=\"$char='M'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='M']\"/> - </xsl:when>\n            <xsl:when test=\"$char='V'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='V']\"/> - </xsl:when>\n            <xsl:when test=\"$char='o'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='o']\"/> - </xsl:when>\n            <xsl:when test=\"$char='p'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='p']\"/> - </xsl:when>\n            <xsl:when test=\"$char='O'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='O']\"/> - </xsl:when>\n            <xsl:when test=\"$char='L'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='L']\"/> - </xsl:when>\n            <xsl:when test=\"$char='B'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='B']\"/> - </xsl:when>\n            <xsl:when test=\"$char='C'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='C']\"/> - </xsl:when>\n            <xsl:when test=\"$char='f'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='f']\"/> - </xsl:when>\n            <xsl:when test=\"$char='l'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='l']\"/> -\n            </xsl:when>\n        </xsl:choose>\n\n        <xsl:if test=\"not($i>=string-length($charList))\">\n            <xsl:call-template name=\"infochar2string\">\n                <xsl:with-param name=\"i\">\n                    <xsl:value-of select=\"$i+1\"/>\n                </xsl:with-param>\n                <xsl:with-param name=\"charList\">\n                    <xsl:value-of select=\"$charList\"/>\n                </xsl:with-param>\n            </xsl:call-template>\n        </xsl:if>\n    </xsl:template>\n    <xsl:template name=\"css\">\n        <style type=\"text/css\">\n            <![CDATA[\n            td.name {font-style: italic; font-size:80%; }\n            .doc { margin: 0.5em; border: solid grey 1px; }\n            .exp { display: none; font-family: monospace; white-space: pre; }\n            div.histogram { background: none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;}\n            table.histogram { width: auto; vertical-align: bottom; }\n            table.histogram td, table.histogram th { text-align: center; vertical-align: bottom; border-bottom: 1px solid #ff9933; width: auto; }\n            ]]>\n        </style>\n    </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/relsyn/conf/xslt/updateXml.xsl",
    "content": "<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!--\n  Simple transform of Solr query response into Solr Update XML compliant XML.\n  When used in the xslt response writer you will get UpdaateXML as output.\n  But you can also store a query response XML to disk and feed this XML to\n  the XSLTUpdateRequestHandler to index the content. Provided as example only.\n  See http://wiki.apache.org/solr/XsltUpdateRequestHandler for more info\n -->\n<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n  <xsl:output media-type=\"text/xml\" method=\"xml\" indent=\"yes\"/>\n\n  <xsl:template match='/'>\n    <add>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n    </add>\n  </xsl:template>\n  \n  <!-- Ignore score (makes no sense to index) -->\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n  </xsl:template>\n\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <doc>\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n    </doc>\n  </xsl:template>\n\n  <!-- Flatten arrays to duplicate field lines -->\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n      <xsl:variable name=\"fn\" select=\"@name\"/>\n      \n      <xsl:for-each select=\"*\">\n\t\t<xsl:element name=\"field\">\n\t\t    <xsl:attribute name=\"name\"><xsl:value-of select=\"$fn\"/></xsl:attribute>\n\t        <xsl:value-of select=\".\"/>\n\t\t</xsl:element>\n      </xsl:for-each>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n      <xsl:variable name=\"fn\" select=\"@name\"/>\n\n\t<xsl:element name=\"field\">\n\t    <xsl:attribute name=\"name\"><xsl:value-of select=\"$fn\"/></xsl:attribute>\n        <xsl:value-of select=\".\"/>\n\t</xsl:element>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n   This is an example of a simple \"solr.xml\" file for configuring one or \n   more Solr Cores, as well as allowing Cores to be added, removed, and \n   reloaded via HTTP requests.\n\n   More information about options available in this configuration file, \n   and Solr Core administration can be found online:\n   http://wiki.apache.org/solr/CoreAdmin\n-->\n\n<!--\n All (relative) paths are relative to the Solr Home Directory\n  \n  persistent: Save changes made via the API to this file\n  sharedLib: path to a lib directory that will be shared across all cores\n-->\n<solr persistent=\"true\">\n\t<!-- by default, this is 50 @ WARN\n  <logging enabled=\"true\">\n  \t<watcher size=\"100\" threshold=\"INFO\" />\n  </logging>\n   -->\n\n  <!--\n  adminPath: RequestHandler path to manage cores.  \n    If 'null' (or absent), cores will not be manageable via request handler\n  defaultCoreName: (optional) core to use when no core name is specified in an access url\n    \n  All of the attributes in cores after defaultCoreName only apply when running in SolrCloud mode.\n  You can read more about SolrCloud mode at http://wiki.apache.org/solr/SolrCloud\n  -->\n  <cores adminPath=\"/admin/cores\" defaultCoreName=\"collection1\" host=\"${host:}\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\" zkClientTimeout=\"${zkClientTimeout:15000}\">\n    <core name=\"relsyn\" instanceDir=\"relsyn\" />\n  </cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr/zoo.cfg",
    "content": "# The number of milliseconds of each tick\ntickTime=2000\n# The number of ticks that the initial\n# synchronization phase can take\ninitLimit=10\n# The number of ticks that can pass between\n# sending a request and getting an acknowledgement\nsyncLimit=5\n\n# the directory where the snapshot is stored.\n# dataDir=/opt/zookeeper/data\n# NOTE: Solr defaults the dataDir to <solrHome>/zoo_data\n\n# the port at which the clients will connect\n# clientPort=2181\n# NOTE: Solr sets this based on zkRun / zkHost params\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/META-INF/LICENSE.txt",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n==========================================================================\nThe following license applies to the JQuery JavaScript library\n--------------------------------------------------------------------------\nCopyright (c) 2010 John Resig, http://jquery.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/META-INF/MANIFEST.MF",
    "content": "Manifest-Version: 1.0\r\nImplementation-Vendor: The Apache Software Foundation\r\nAnt-Version: Apache Ant 1.8.2\r\nImplementation-Title: org.apache.solr\r\nImplementation-Version: 4.3.0 1477023 - simonw - 2013-04-29 15:10:07\r\nSpecification-Vendor: The Apache Software Foundation\r\nSpecification-Title: Apache Solr Search Server\r\nCreated-By: 1.6.0_45-b06-451-11M4406 (Apple Inc.)\r\nSpecification-Version: 4.3.0\r\nExtension-Name: org.apache.solr\r\nX-Compile-Source-JDK: 1.6\r\nX-Compile-Target-JDK: 1.6\r\n\r\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/META-INF/NOTICE.txt",
    "content": "==============================================================\n Apache Solr\n Copyright 2006-2013 The Apache Software Foundation\n==============================================================\n\nThis product includes software developed by\nThe Apache Software Foundation (http://www.apache.org/).\n\nIncludes software from other Apache Software Foundation projects,\nincluding, but not limited to:\n  - Apache Lucene Java\n  - Apache Commons\n  - Apache Geronimo (stax API)\n\nThis product includes the JQuery JavaScript library created by John Resig.\nCopyright (c) 2010 John Resig, http://jquery.com/\n\nThis product includes the D3.js JavaScript library created by Michael Bostock.\nCopyright (c) 2012, Michael Bostock, https://github.com/mbostock/d3\n\nThis product includes the highlight.js Javascript library created by Ivan Sagalaev\nCopyright (c) 2006, Ivan Sagalaev, https://github.com/isagalaev/highlight.js\n\nstax-utils library: https://stax-utils.dev.java.net/\nCopyright (c) 2004, Christian Niles, unit12.net\nCopyright (c) 2004, Sun Microsystems, Inc.\nCopyright (c) 2006, John Kristian \nLicense: The BSD License (http://www.opensource.org/licenses/bsd-license.php)\n\nJavaMail API 1.4.1: https://glassfish.dev.java.net/javaee5/mail/\nLicense: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html)\n\nJavaBeans Activation Framework (JAF): http://java.sun.com/products/javabeans/jaf/index.jsp\nLicense: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html)\n\nHSQL Database (HSQLDB): http://hsqldb.org/\nLicense: http://hsqldb.org/web/hsqlLicense.html\n\n=========================================================================\n==  Apache Lucene Notice                                               ==\n=========================================================================\n\nApache Lucene\nCopyright 2013 The Apache Software Foundation\n\nThis product includes software developed by\nThe Apache Software Foundation (http://www.apache.org/).\n\nIncludes software from other Apache Software Foundation projects,\nincluding, but not limited to:\n - Apache Ant\n - Apache Jakarta Regexp\n - Apache Commons\n - Apache Xerces\n\nICU4J, (under analysis/icu) is licensed under an MIT styles license\nand Copyright (c) 1995-2008 International Business Machines Corporation and others\n\nSome data files (under analysis/icu/src/data) are derived from Unicode data such\nas the Unicode Character Database. See http://unicode.org/copyright.html for more\ndetails.\n\nBrics Automaton (under core/src/java/org/apache/lucene/util/automaton) is \nBSD-licensed, created by Anders Møller. See http://www.brics.dk/automaton/\n\nThe levenshtein automata tables (under core/src/java/org/apache/lucene/util/automaton) were\nautomatically generated with the moman/finenight FSA library, created by\nJean-Philippe Barrette-LaPierre. This library is available under an MIT license,\nsee http://sites.google.com/site/rrettesite/moman and \nhttp://bitbucket.org/jpbarrette/moman/overview/\n\nThe class org.apache.lucene.util.SorterTemplate was inspired by CGLIB's class\nwith the same name. The implementation part is mainly done using pre-existing\nLucene sorting code. In-place stable mergesort was borrowed from CGLIB,\nwhich is Apache-licensed.\n\nThe class org.apache.lucene.util.WeakIdentityMap was derived from\nthe Apache CXF project and is Apache License 2.0.\n\nThe Google Code Prettify is Apache License 2.0.\nSee http://code.google.com/p/google-code-prettify/\n\nJUnit (junit-4.10) is licensed under the Common Public License v. 1.0\nSee http://junit.sourceforge.net/cpl-v10.html\n\nThis product includes code (JaspellTernarySearchTrie) from Java Spelling Checkin\ng Package (jaspell): http://jaspell.sourceforge.net/\nLicense: The BSD License (http://www.opensource.org/licenses/bsd-license.php)\n\nThe snowball stemmers in\n  analysis/common/src/java/net/sf/snowball\nwere developed by Martin Porter and Richard Boulton.\nThe snowball stopword lists in\n  analysis/common/src/resources/org/apache/lucene/analysis/snowball\nwere developed by Martin Porter and Richard Boulton.\nThe full snowball package is available from\n  http://snowball.tartarus.org/\n\nThe KStem stemmer in\n  analysis/common/src/org/apache/lucene/analysis/en\nwas developed by Bob Krovetz and Sergio Guzman-Lara (CIIR-UMass Amherst)\nunder the BSD-license.\n\nThe Arabic,Persian,Romanian,Bulgarian, and Hindi analyzers (common) come with a default\nstopword list that is BSD-licensed created by Jacques Savoy.  These files reside in:\nanalysis/common/src/resources/org/apache/lucene/analysis/ar/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/ro/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/bg/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/hi/stopwords.txt\nSee http://members.unine.ch/jacques.savoy/clef/index.html.\n\nThe German,Spanish,Finnish,French,Hungarian,Italian,Portuguese,Russian and Swedish light stemmers\n(common) are based on BSD-licensed reference implementations created by Jacques Savoy and\nLjiljana Dolamic. These files reside in:\nanalysis/common/src/java/org/apache/lucene/analysis/de/GermanLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/de/GermanMinimalStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/es/SpanishLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fi/FinnishLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fr/FrenchLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fr/FrenchMinimalStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/hu/HungarianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/it/ItalianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/pt/PortugueseLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/ru/RussianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/sv/SwedishLightStemmer.java\n\nThe Stempel analyzer (stempel) includes BSD-licensed software developed \nby the Egothor project http://egothor.sf.net/, created by Leo Galambos, Martin Kvapil,\nand Edmond Nolan.\n\nThe Polish analyzer (stempel) comes with a default\nstopword list that is BSD-licensed created by the Carrot2 project. The file resides\nin stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.\nSee http://project.carrot2.org/license.html.\n\nThe SmartChineseAnalyzer source code (smartcn) was\nprovided by Xiaoping Gao and copyright 2009 by www.imdict.net.\n\nWordBreakTestUnicode_*.java (under modules/analysis/common/src/test/) \nis derived from Unicode data such as the Unicode Character Database. \nSee http://unicode.org/copyright.html for more details.\n\nThe Morfologik analyzer (morfologik) includes BSD-licensed software\ndeveloped by Dawid Weiss and Marcin Miłkowski (http://morfologik.blogspot.com/).\n\nMorfologik uses data from Polish ispell/myspell dictionary\n(http://www.sjp.pl/slownik/en/) licenced on the terms of (inter alia)\nLGPL and Creative Commons ShareAlike.\n\nMorfologic includes data from BSD-licensed dictionary of Polish (SGJP)\n(http://sgjp.pl/morfeusz/)\n\nServlet-api.jar is under the CDDL license, the original source\ncode for this can be found at http://www.eclipse.org/jetty/downloads.php\n\n===========================================================================\nKuromoji Japanese Morphological Analyzer - Apache Lucene Integration\n===========================================================================\n\nThis software includes a binary and/or source version of data from\n\n  mecab-ipadic-2.7.0-20070801\n\nwhich can be obtained from\n\n  http://atilika.com/releases/mecab-ipadic/mecab-ipadic-2.7.0-20070801.tar.gz\n\nor\n\n  http://jaist.dl.sourceforge.net/project/mecab/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz\n\n===========================================================================\nmecab-ipadic-2.7.0-20070801 Notice\n===========================================================================\n\nNara Institute of Science and Technology (NAIST),\nthe copyright holders, disclaims all warranties with regard to this\nsoftware, including all implied warranties of merchantability and\nfitness, in no event shall NAIST be liable for\nany special, indirect or consequential damages or any damages\nwhatsoever resulting from loss of use, data or profits, whether in an\naction of contract, negligence or other tortuous action, arising out\nof or in connection with the use or performance of this software.\n\nA large portion of the dictionary entries\noriginate from ICOT Free Software.  The following conditions for ICOT\nFree Software applies to the current dictionary as well.\n\nEach User may also freely distribute the Program, whether in its\noriginal form or modified, to any third party or parties, PROVIDED\nthat the provisions of Section 3 (\"NO WARRANTY\") will ALWAYS appear\non, or be attached to, the Program, which is distributed substantially\nin the same form as set out herein and that such intended\ndistribution, if actually made, will neither violate or otherwise\ncontravene any of the laws and regulations of the countries having\njurisdiction over the User or the intended distribution itself.\n\nNO WARRANTY\n\nThe program was produced on an experimental basis in the course of the\nresearch and development conducted during the project and is provided\nto users as so produced on an experimental basis.  Accordingly, the\nprogram is provided without any warranty whatsoever, whether express,\nimplied, statutory or otherwise.  The term \"warranty\" used herein\nincludes, but is not limited to, any warranty of the quality,\nperformance, merchantability and fitness for a particular purpose of\nthe program and the nonexistence of any infringement or violation of\nany right of any third party.\n\nEach user of the program will agree and understand, and be deemed to\nhave agreed and understood, that there is no warranty whatsoever for\nthe program and, accordingly, the entire risk arising from or\notherwise connected with the program is assumed by the user.\n\nTherefore, neither ICOT, the copyright holder, or any other\norganization that participated in or was otherwise related to the\ndevelopment of the program and their respective officials, directors,\nofficers and other employees shall be held liable for any and all\ndamages, including, without limitation, general, special, incidental\nand consequential damages, arising out of or otherwise in connection\nwith the use or inability to use the program or any product, material\nor result produced or otherwise obtained by using the program,\nregardless of whether they have been advised of, or otherwise had\nknowledge of, the possibility of such damages at any time during the\nproject or thereafter.  Each user will be deemed to have agreed to the\nforegoing by his or her commencement of use of the program.  The term\n\"use\" as used herein includes, but is not limited to, the use,\nmodification, copying and distribution of the program and the\nproduction of secondary products from the program.\n\nIn the case where the program, whether in its original form or\nmodified, was distributed or delivered to or received by a user from\nany person, organization or entity other than ICOT, unless it makes or\ngrants independently of ICOT any specific warranty to the user in\nwriting, such person, organization or entity, will also be exempted\nfrom and not be held liable to the user for any such damages as noted\nabove as far as the program is concerned.\n---\n\nThis product includes/uses software, Woodstox (http://woodstox.codehaus.org),\ndeveloped by Codehaus  (http://www.codehaus.org/)\nLicense: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)\n=========================================================================\n==  Woodstox Notice                                                    ==\n=========================================================================\nThis product currently only contains code developed by authors\nof specific components, as identified by the source code files.\n\nSince product implements StAX API, it has dependencies to StAX API\nclasses.\n\nFor additional credits (generally to people who reported problems)\nsee CREDITS file.\n---\n\nThis product includes software developed by the Eclipse Foundation\n(specifically, Jetty, the bundled servlet container in example),\navailable under the Apache 2 License.\n\nServlet-api.jar is under the CDDL license, the original source\ncode for this can be found at http://www.eclipse.org/jetty/downloads.php\n\n=========================================================================\n==  SLF4J Notice -- http://www.slf4j.org/license.html                  ==\n=========================================================================\n\nCopyright (c) 2004-2008 QOS.ch\nAll rights reserved.\n\nPermission is hereby granted, free  of charge, to any person obtaining\na  copy  of this  software  and  associated  documentation files  (the\n\"Software\"), to  deal in  the Software without  restriction, including\nwithout limitation  the rights to  use, copy, modify,  merge, publish,\ndistribute,  sublicense, and/or sell  copies of  the Software,  and to\npermit persons to whom the Software  is furnished to do so, subject to\nthe following conditions:\n\nThe  above  copyright  notice  and  this permission  notice  shall  be\nincluded in all copies or substantial portions of the Software.\n\nTHE  SOFTWARE IS  PROVIDED  \"AS  IS\", WITHOUT  WARRANTY  OF ANY  KIND,\nEXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF\nMERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n=========================================================================\n==  Apache Tika Notices                                                ==\n=========================================================================\n\nThe following notices apply to contrib/extraction:\n\nThis product includes software developed by the following copyright owners:\n\nCopyright (c) 2000-2006 The Legion Of The Bouncy Castle\n(http://www.bouncycastle.org)\n\nCopyright (c) 2003-2005, www.pdfbox.org\n\nCopyright (c) 2003-2005, www.fontbox.org\n\nCopyright (c) 1995-2005 International Business Machines Corporation and others\n\nCopyright (c) 2000-2005 INRIA, France Telecom\n\nCopyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.\n\nCopyright 2004 Sun Microsystems, Inc. (Rome JAR)\n\nCopyright 2002-2008 by John Cowan (TagSoup -- http://ccil.org/~cowan/XML/tagsoup/)\n\nCopyright (C) 1994-2007 by the Xiph.org Foundation, http://www.xiph.org/ (OggVorbis)\n\nCopyright 2012 Kohei Taketa juniversalchardet (http://code.google.com/p/juniversalchardet/)\n\nLasse Collin and others, XZ for Java (http://tukaani.org/xz/java.html)\n\n=========================================================================\n==  Language Detection Notices                                         ==\n=========================================================================\n\nThe following notices apply to contrib/langid:\n\nThis product includes software developed by Cybozu Labs, Inc.\n(c)2010 All rights reserved by Cybozu Labs, Inc.\nhttp://code.google.com/p/language-detection/\n\nThis product includes software developed by the Jsonic project:\nhttp://sourceforge.jp/projects/jsonic/\n\n=========================================================================\n==     Carrot2 Notice                                                  ==\n=========================================================================\nCopyright (C) 2002-2010, Dawid Weiss, Stanislaw Osinski.\nPortions (C) Contributors listed in \"carrot2.CONTRIBUTORS\" file.\nAll rights reserved.\n\nThis product includes software developed by the Carrot2 Project.\n\nSee http://project.carrot2.org/\n\n=========================================================================\n==     Guava Notice                                                    ==\n=========================================================================\n\nCopyright (C) 2009 Google Inc.\n\nThis product includes software developed by the Google Guava project.\n\nSee http://code.google.com/p/guava-libraries/\n\n=========================================================================\n==     Prettify Notice                                                 ==\n=========================================================================\n\nCopyright (C) 2009 Google Inc.\n\nThis product includes software developed by the Google Prettify project.\n\nSee http://code.google.com/p/google-code-prettify/\n\n=========================================================================\n==     Jackson Notice                                                  ==\n=========================================================================\nCopyright 2010 FasterXML, LLC\n\nThis product includes software developed by the Jackson project.\n\nSee http://jackson.codehaus.org/\n\n=========================================================================\n==     HSQLDB Notice                                                   ==\n=========================================================================\n\nFor content, code, and products originally developed by Thomas Mueller and the Hypersonic SQL Group:\n\nCopyright (c) 1995-2000 by the Hypersonic SQL Group.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\nNeither the name of the Hypersonic SQL Group nor the names of its\ncontributors may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL GROUP,\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis software consists of voluntary contributions made by many individuals on behalf of the\nHypersonic SQL Group.\n\nFor work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt):\n\nCopyright (c) 2001-2005, The HSQL Development Group\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\nNeither the name of the HSQL Development Group nor the names of its\ncontributors may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis product includes tests written with EasyMock Copyright 2001-2007\nTammo Freese (http://www.easymock.org/)\n\n==========================================================================\nThe following license applies to easymock-2.2.jar\n--------------------------------------------------------------------------\nEasyMock 2 License (MIT License)\nCopyright (c) 2001-2007 OFFIS, Tammo Freese.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of \nthis software and associated documentation files (the \"Software\"), to deal in \nthe Software without restriction, including without limitation the rights to \nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies \nof the Software, and to permit persons to whom the Software is furnished to do \nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all \ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE \nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE \nSOFTWARE. \n\n==========================================================================\nThe following license applies to stax-utils.jar\n--------------------------------------------------------------------------\nCopyright (c) 2004, Christian Niles, unit12.net\nCopyright (c) 2004, Sun Microsystems, Inc.\nCopyright (c) 2006, John Kristian \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n    * Redistributions of source code must retain the above copyright\n      notice, this list of conditions and the following disclaimer.\n\n    * Redistributions in binary form must reproduce the above\n      copyright notice, this list of conditions and the following\n      disclaimer in the documentation and/or other materials provided\n      with the distribution.\n\n    * Neither the name of the listed copyright holders nor the names\n      of its contributors may be used to endorse or promote products\n      derived from this software without specific prior written\n      permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n=========================================================================\n==     Restlet Notice                                                  ==\n=========================================================================\n\nCopyright (C) 2005-2013 Restlet S.A.S.\n\nRestlet is a registered trademark of Restlet S.A.S.\n\nThis product contains software developed by the Restlet project.\n\nSee http://www.restlet.org/\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/WEB-INF/web.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n<web-app xmlns=\"http://java.sun.com/xml/ns/javaee\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd\"\n         version=\"2.5\"\n         metadata-complete=\"true\"\n>\n\n\n  <!-- Uncomment if you are trying to use a Resin version before 3.0.19.\n    Their XML implementation isn't entirely compatible with Xerces.\n    Below are the implementations to use with Sun's JVM.\n  <system-property javax.xml.xpath.XPathFactory=\n             \"com.sun.org.apache.xpath.internal.jaxp.XPathFactoryImpl\"/>\n  <system-property javax.xml.parsers.DocumentBuilderFactory=\n             \"com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl\"/>\n  <system-property javax.xml.parsers.SAXParserFactory=\n             \"com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl\"/>\n   -->\n\n  <!-- People who want to hardcode their \"Solr Home\" directly into the\n       WAR File can set the JNDI property here...\n   -->\n  <!--\n    <env-entry>\n       <env-entry-name>solr/home</env-entry-name>\n       <env-entry-value>/put/your/solr/home/here</env-entry-value>\n       <env-entry-type>java.lang.String</env-entry-type>\n    </env-entry>\n   -->\n   \n  <!-- Any path (name) registered in solrconfig.xml will be sent to that filter -->\n  <filter>\n    <filter-name>SolrRequestFilter</filter-name>\n    <filter-class>org.apache.solr.servlet.SolrDispatchFilter</filter-class>\n    <!-- If you are wiring Solr into a larger web application which controls\n         the web context root, you will probably want to mount Solr under\n         a path prefix (app.war with /app/solr mounted into it, for example).\n         You will need to put this prefix in front of the SolrDispatchFilter\n         url-pattern mapping too (/solr/*), and also on any paths for\n         legacy Solr servlet mappings you may be using.\n         For the Admin UI to work properly in a path-prefixed configuration,\n         the admin folder containing the resources needs to be under the app context root\n         named to match the path-prefix.  For example:\n\n            .war\n               xxx\n                 js\n                   main.js\n    -->\n    <!--\n    <init-param>\n      <param-name>path-prefix</param-name>\n      <param-value>/xxx</param-value>\n    </init-param>\n    -->\n  </filter>\n\n  <filter-mapping>\n    <!--\n      NOTE: When using multicore, /admin JSP URLs with a core specified\n      such as /solr/coreName/admin/stats.jsp get forwarded by a\n      RequestDispatcher to /solr/admin/stats.jsp with the specified core\n      put into request scope keyed as \"org.apache.solr.SolrCore\".\n\n      It is unnecessary, and potentially problematic, to have the SolrDispatchFilter\n      configured to also filter on forwards.  Do not configure\n      this dispatcher as <dispatcher>FORWARD</dispatcher>.\n    -->\n    <filter-name>SolrRequestFilter</filter-name>\n    <url-pattern>/*</url-pattern>\n  </filter-mapping>\n\n  <servlet>\n    <servlet-name>Zookeeper</servlet-name>\n    <servlet-class>org.apache.solr.servlet.ZookeeperInfoServlet</servlet-class>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>LoadAdminUI</servlet-name>\n    <servlet-class>org.apache.solr.servlet.LoadAdminUiServlet</servlet-class>\n  </servlet>\n  \n  <!-- Remove in Solr 5.0 -->\n  <!-- This sends SC_MOVED_PERMANENTLY (301) for resources that changed in 4.0 -->\n  <servlet>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/#/</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>RedirectOldZookeeper</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/zookeeper</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>RedirectLogging</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/#/~logging</param-value>\n    </init-param>\n  </servlet>\n\n  <servlet>\n    <servlet-name>SolrRestApi</servlet-name>\n    <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class>\n    <init-param>\n      <param-name>org.restlet.application</param-name>\n      <param-value>org.apache.solr.rest.SolrRestApi</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet-mapping>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <url-pattern>/admin/</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <url-pattern>/admin</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectOldZookeeper</servlet-name>\n    <url-pattern>/zookeeper.jsp</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectLogging</servlet-name>\n    <url-pattern>/logging</url-pattern>\n  </servlet-mapping>\n\n  <!-- Servlet Mapping -->\n  <servlet-mapping>\n    <servlet-name>Zookeeper</servlet-name>\n    <url-pattern>/zookeeper</url-pattern>\n  </servlet-mapping>\n  \n  <servlet-mapping>\n    <servlet-name>LoadAdminUI</servlet-name>\n    <url-pattern>/admin.html</url-pattern>\n  </servlet-mapping>\n\n  <servlet-mapping>\n    <servlet-name>SolrRestApi</servlet-name>\n    <url-pattern>/schema/*</url-pattern>\n  </servlet-mapping>\n  \n  <mime-mapping>\n    <extension>.xsl</extension>\n    <!-- per http://www.w3.org/TR/2006/PR-xslt20-20061121/ -->\n    <mime-type>application/xslt+xml</mime-type>\n  </mime-mapping>\n\n  <welcome-file-list>\n    <welcome-file>admin.html</welcome-file>\n  </welcome-file-list>\n\n</web-app>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/WEB-INF/weblogic.xml",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<weblogic-web-app\n    xmlns=\"http://www.bea.com/ns/weblogic/90\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd\">\n\n    <container-descriptor>\n\t<filter-dispatched-requests-enabled>false</filter-dispatched-requests-enabled>\n    </container-descriptor>\n\n</weblogic-web-app>\n\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/admin.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n<html>\n\n<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n\n<head>\n    \n  <title>Solr Admin</title>\n    \n  <link rel=\"icon\" type=\"image/ico\" href=\"img/favicon.ico?_=${version}\">\n\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/common.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/analysis.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/cloud.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/cores.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/dashboard.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/dataimport.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/index.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/java-properties.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/logging.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/menu.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/plugins.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/query.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/replication.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/schema-browser.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/threads.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/chosen.css?_=${version}\">\n    \n  <script type=\"text/javascript\">\n    \n  var app_config = {};\n    \n  app_config.solr_path = '${contextPath}';\n  app_config.core_admin_path = '${adminPath}';\n    \n  </script>\n    \n</head>\n<body>\n    \n  <div id=\"wrapper\">\n    \n    <div id=\"header\">\n            \n      <a href=\"./\" id=\"solr\"><span>Apache SOLR</span></a>\n\n      <p id=\"environment\">&nbsp;</p>\n\n    </div>\n\n    <div id=\"main\" class=\"clearfix\">\n    \n      <div id=\"init-failures\">\n\n          <h2>SolrCore Initialization Failures</h2>\n          <ul></ul>\n          <p>Please check your logs for more information</p>\n                \n      </div>\n\n      <div id=\"content-wrapper\">\n        <div id=\"content\">\n                  \n          &nbsp;\n                  \n        </div>\n      </div>\n            \n      <div id=\"menu-wrapper\">\n        <div>\n                  \n          <ul id=\"menu\">\n\n            <li id=\"index\" class=\"global\"><p><a href=\"#/\">Dashboard</a></p></li>\n\n            <li id=\"logging\" class=\"global\"><p><a href=\"#/~logging\">Logging</a></p>\n              <ul>\n                <li class=\"level\"><a href=\"#/~logging/level\">Level</a></li>\n              </ul>\n            </li>\n\n            <li id=\"cloud\" class=\"global optional\"><p><a href=\"#/~cloud\">Cloud</a></p>\n              <ul>\n                <li class=\"tree\"><a href=\"#/~cloud?view=tree\">Tree</a></li>\n                <li class=\"graph\"><a href=\"#/~cloud\">Graph</a></li>\n                <li class=\"rgraph\"><a href=\"#/~cloud?view=rgraph\">Graph (Radial)</a></li>\n                <li class=\"dump\"><a href=\"#/~cloud\">Dump</a></li>\n              </ul>\n            </li>\n\n            <li id=\"cores\" class=\"global\"><p><a href=\"#/~cores\">Core Admin</a></p></li>\n\n            <li id=\"java-properties\" class=\"global\"><p><a href=\"#/~java-properties\">Java Properties</a></li>\n\n            <li id=\"threads\" class=\"global\"><p><a href=\"#/~threads\">Thread Dump</a></p></li>\n            \n          </ul>\n\n          <div id=\"core-selector\">\n            <select data-placeholder=\"Core Selector\"></select>\n          </div>\n          <div id=\"core-menu\">\n            <ul></ul>\n          </div>\n                  \n        </div>\n      </div>\n            \n      <div id=\"meta\">\n                \n        <ul>\n                    \n          <li class=\"documentation\"><a href=\"http://lucene.apache.org/solr/\"><span>Documentation</span></a></li>\n          <li class=\"issues\"><a href=\"http://issues.apache.org/jira/browse/SOLR\"><span>Issue Tracker</span></a></li>\n          <li class=\"irc\"><a href=\"http://webchat.freenode.net/?channels=#solr\"><span>IRC Channel</span></a></li>\n          <li class=\"mailinglist\"><a href=\"http://wiki.apache.org/solr/UsingMailingLists\"><span>Community forum</span></a></li>\n          <li class=\"wiki-query-syntax\"><a href=\"http://wiki.apache.org/solr/SolrQuerySyntax\"><span>Solr Query Syntax</span></a></li>\n                    \n        </ul>\n                \n      </div>\n            \n    </div>\n    \n  </div>\n  \n  <script type=\"text/javascript\"> var require = { urlArgs: '_=${version}' }; </script>\n  <script src=\"js/require.js?_=${version}\" data-main=\"js/main\"></script>\n\n</body>\n</html>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/chosen.css",
    "content": "/* @group Base */\n.chzn-container {\n  font-size: 13px;\n  position: relative;\n  display: inline-block;\n  zoom: 1;\n  *display: inline;\n}\n.chzn-container .chzn-drop {\n  background: #fff;\n  border: 1px solid #aaa;\n  border-top: 0;\n  position: absolute;\n  top: 29px;\n  left: 0;\n  -webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);\n  -moz-box-shadow   : 0 4px 5px rgba(0,0,0,.15);\n  -o-box-shadow     : 0 4px 5px rgba(0,0,0,.15);\n  box-shadow        : 0 4px 5px rgba(0,0,0,.15);\n  z-index: 999;\n}\n/* @end */\n\n/* @group Single Chosen */\n.chzn-container-single .chzn-single {\n  background-color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0 );   \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));\n  background-image: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -ms-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); \n  -webkit-border-radius: 5px;\n  -moz-border-radius   : 5px;\n  border-radius        : 5px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n  border: 1px solid #aaaaaa;\n  -webkit-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  -moz-box-shadow   : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  box-shadow        : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  display: block;\n  overflow: hidden;\n  white-space: nowrap;\n  position: relative;\n  height: 23px;\n  line-height: 24px;\n  padding: 0 0 0 8px;\n  color: #444444;\n  text-decoration: none;\n}\n.chzn-container-single .chzn-default {\n\tcolor: #999;\n}\n.chzn-container-single .chzn-single span {\n  margin-right: 26px;\n  display: block;\n  overflow: hidden;\n  white-space: nowrap;\n  -o-text-overflow: ellipsis;\n  -ms-text-overflow: ellipsis;\n  text-overflow: ellipsis;\n}\n.chzn-container-single .chzn-single abbr {\n  display: block;\n  position: absolute;\n  right: 26px;\n  top: 6px;\n  width: 12px;\n  height: 13px;\n  font-size: 1px;\n  background: url(../img/chosen-sprite.png) right top no-repeat;\n}\n.chzn-container-single .chzn-single abbr:hover {\n  background-position: right -11px;\n}\n.chzn-container-single .chzn-single div {\n  position: absolute;\n  right: 0;\n  top: 0;\n  display: block;\n  height: 100%;\n  width: 18px;\n}\n.chzn-container-single .chzn-single div b {\n  background: url('../img/chosen-sprite.png') no-repeat 0 0;\n  display: block;\n  width: 100%;\n  height: 100%;\n}\n.chzn-container-single .chzn-search {\n  padding: 3px 4px;\n  position: relative;\n  margin: 0;\n  white-space: nowrap;\n  z-index: 1010;\n}\n.chzn-container-single .chzn-search input {\n  background: #fff url('../img/chosen-sprite.png') no-repeat 100% -22px;\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  margin: 1px 0;\n  padding: 4px 20px 4px 5px;\n  outline: 0;\n  border: 1px solid #aaa;\n  font-family: sans-serif;\n  font-size: 1em;\n}\n.chzn-container-single .chzn-drop {\n  -webkit-border-radius: 0 0 4px 4px;\n  -moz-border-radius   : 0 0 4px 4px;\n  border-radius        : 0 0 4px 4px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n}\n/* @end */\n\n.chzn-container-single-nosearch .chzn-search input {\n  position: absolute;\n  left: -9000px;\n}\n\n/* @group Multi Chosen */\n.chzn-container-multi .chzn-choices {\n  background-color: #fff;\n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  border: 1px solid #aaa;\n  margin: 0;\n  padding: 0;\n  cursor: text;\n  overflow: hidden;\n  height: auto !important;\n  height: 1%;\n  position: relative;\n}\n.chzn-container-multi .chzn-choices li {\n  float: left;\n  list-style: none;\n}\n.chzn-container-multi .chzn-choices .search-field {\n  white-space: nowrap;\n  margin: 0;\n  padding: 0;\n}\n.chzn-container-multi .chzn-choices .search-field input {\n  color: #666;\n  background: transparent !important;\n  border: 0 !important;\n  font-family: sans-serif;\n  font-size: 100%;\n  height: 15px;\n  padding: 5px;\n  margin: 1px 0;\n  outline: 0;\n  -webkit-box-shadow: none;\n  -moz-box-shadow   : none;\n  -o-box-shadow     : none;\n  box-shadow        : none;\n}\n.chzn-container-multi .chzn-choices .search-field .default {\n  color: #999;\n}\n.chzn-container-multi .chzn-choices .search-choice {\n  -webkit-border-radius: 3px;\n  -moz-border-radius   : 3px;\n  border-radius        : 3px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n  background-color: #e4e4e4;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 ); \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));\n  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); \n  -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  -moz-box-shadow   : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  box-shadow        : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  color: #333;\n  border: 1px solid #aaaaaa;\n  line-height: 13px;\n  padding: 3px 20px 3px 5px;\n  margin: 3px 0 3px 5px;\n  position: relative;\n  cursor: default;\n}\n.chzn-container-multi .chzn-choices .search-choice-focus {\n  background: #d4d4d4;\n}\n.chzn-container-multi .chzn-choices .search-choice .search-choice-close {\n  display: block;\n  position: absolute;\n  right: 3px;\n  top: 4px;\n  width: 12px;\n  height: 13px;\n  font-size: 1px;\n  background: url(../img/chosen-sprite.png) right top no-repeat;\n}\n.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {\n  background-position: right -11px;\n}\n.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close {\n  background-position: right -11px;\n}\n/* @end */\n\n/* @group Results */\n.chzn-container .chzn-results {\n  margin: 0 4px 4px 0;\n  max-height: 240px;\n  padding: 0 0 0 4px;\n  position: relative;\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.chzn-container-multi .chzn-results {\n  margin: -1px 0 0;\n  padding: 0;\n}\n.chzn-container .chzn-results li {\n  display: none;\n  line-height: 15px;\n  padding: 5px 6px;\n  margin: 0;\n  list-style: none;\n}\n.chzn-container .chzn-results .active-result {\n  cursor: pointer;\n  display: list-item;\n}\n.chzn-container .chzn-results .highlighted {\n  background-color: #3875d7;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0 );  \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));\n  background-image: -webkit-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -moz-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -o-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -ms-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  color: #fff;\n}\n.chzn-container .chzn-results li em {\n  background: #feffde;\n  font-style: normal;\n}\n.chzn-container .chzn-results .highlighted em {\n  background: transparent;\n}\n.chzn-container .chzn-results .no-results {\n  background: #f4f4f4;\n  display: list-item;\n}\n.chzn-container .chzn-results .group-result {\n  cursor: default;\n  color: #999;\n  font-weight: bold;\n}\n.chzn-container .chzn-results .group-option {\n  padding-left: 15px;\n}\n.chzn-container-multi .chzn-drop .result-selected {\n  display: none;\n}\n.chzn-container .chzn-results-scroll {\n  background: white;\n  margin: 0 4px;\n  position: absolute;\n  text-align: center;\n  width: 321px; /* This should by dynamic with js */\n  z-index: 1;\n}\n.chzn-container .chzn-results-scroll span {\n  display: inline-block;\n  height: 17px;\n  text-indent: -5000px;\n  width: 9px;\n}\n.chzn-container .chzn-results-scroll-down {\n  bottom: 0;\n}\n.chzn-container .chzn-results-scroll-down span {\n  background: url('../img/chosen-sprite.png') no-repeat -4px -3px;\n}\n.chzn-container .chzn-results-scroll-up span {\n  background: url('../img/chosen-sprite.png') no-repeat -22px -3px;\n}\n/* @end */\n\n/* @group Active  */\n.chzn-container-active .chzn-single {\n  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);\n  -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);\n  -o-box-shadow     : 0 0 5px rgba(0,0,0,.3);\n  box-shadow        : 0 0 5px rgba(0,0,0,.3);\n  border: 1px solid #5897fb;\n}\n.chzn-container-active .chzn-single-with-drop {\n  border: 1px solid #aaa;\n  -webkit-box-shadow: 0 1px 0 #fff inset;\n  -moz-box-shadow   : 0 1px 0 #fff inset;\n  -o-box-shadow     : 0 1px 0 #fff inset;\n  box-shadow        : 0 1px 0 #fff inset;\n  background-color: #eee;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );\n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));\n  background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -ms-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  -webkit-border-bottom-left-radius : 0;\n  -webkit-border-bottom-right-radius: 0;\n  -moz-border-radius-bottomleft : 0;\n  -moz-border-radius-bottomright: 0;\n  border-bottom-left-radius : 0;\n  border-bottom-right-radius: 0;\n}\n.chzn-container-active .chzn-single-with-drop div {\n  background: transparent;\n  border-left: none;\n}\n.chzn-container-active .chzn-single-with-drop div b {\n  background-position: -18px 1px;\n}\n.chzn-container-active .chzn-choices {\n  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);\n  -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);\n  -o-box-shadow     : 0 0 5px rgba(0,0,0,.3);\n  box-shadow        : 0 0 5px rgba(0,0,0,.3);\n  border: 1px solid #5897fb;\n}\n.chzn-container-active .chzn-choices .search-field input {\n  color: #111 !important;\n}\n/* @end */\n\n/* @group Disabled Support */\n.chzn-disabled {\n  cursor: default;\n  opacity:0.5 !important;\n}\n.chzn-disabled .chzn-single {\n  cursor: default;\n}\n.chzn-disabled .chzn-choices .search-choice .search-choice-close {\n  cursor: default;\n}\n\n/* @group Right to Left */\n.chzn-rtl { text-align: right; }\n.chzn-rtl .chzn-single { padding: 0 8px 0 0; overflow: visible; }\n.chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; direction: rtl; }\n\n.chzn-rtl .chzn-single div { left: 3px; right: auto; }\n.chzn-rtl .chzn-single abbr {\n  left: 26px;\n  right: auto;\n}\n.chzn-rtl .chzn-choices .search-field input { direction: rtl; }\n.chzn-rtl .chzn-choices li { float: right; }\n.chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin: 3px 5px 3px 0; }\n.chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; right: auto; background-position: right top;}\n.chzn-rtl.chzn-container-single .chzn-results { margin: 0 0 4px 4px; padding: 0 4px 0 0; }\n.chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 15px; }\n.chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; }\n.chzn-rtl .chzn-search input {\n  background: #fff url('../img/chosen-sprite.png') no-repeat -38px -22px;\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);  \n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  padding: 4px 5px 4px 20px;\n  direction: rtl;\n}\n/* @end */\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/analysis.css",
    "content": "#content #analysis-holder\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 50% 0;\n  background-repeat: repeat-y;\n}\n\n#content #analysis #field-analysis\n{\n  margin-bottom: 0;\n}\n\n#content #analysis #field-analysis .content\n{\n  padding-bottom: 0;\n}\n\n#content #analysis .settings-holder\n{\n  clear: both;\n  padding-top: 15px;\n}\n\n#content #analysis .settings\n{\n  background-color: #fff;\n  border-top: 1px solid #fafafa;\n  border-bottom: 1px solid #fafafa;\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n#content #analysis .settings select.loader\n{\n  background-position: 3px 50%;\n  padding-left: 21px;\n}\n\n#content #analysis .settings select optgroup\n{\n  font-style: normal;\n  padding: 5px;\n}\n\n#content #analysis .settings select option\n{\n  padding-left: 10px;\n}\n\n#content #analysis .settings #tor_schema\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  margin-left: 5px;\n  padding-left: 21px;\n}\n\n#content #analysis .settings #tor_schema:hover\n{\n  background-image: url( ../../img/ico/question.png );\n}\n\n#content #analysis .settings #tor_schema span\n{\n  display: none;\n}\n\n#content #analysis .settings #tor_schema:hover span\n{\n  display: inline;\n}\n\n#content #analysis .settings .buttons\n{\n  float: right;\n  width: 47%;\n}\n\n#content #analysis .settings button\n{\n  float: right;\n}\n\n#content #analysis .settings button span\n{\n  background-image: url( ../../img/ico/funnel.png );\n}\n\n#content #analysis .settings .verbose_output\n{\n  float: left;\n  width: auto;\n}\n\n#content #analysis .settings .verbose_output a\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #999;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #analysis .settings .verbose_output.active a\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n}\n\n#content #analysis .index label,\n#content #analysis .query label\n{\n  display: block;\n}\n\n#content #analysis .index textarea,\n#content #analysis .query textarea\n{\n  display: block;\n  width: 100%;\n}\n\n#content #analysis .index\n{\n  float: left;\n  margin-right: 0.5%;\n  min-width: 47%;\n  max-width: 99%;\n}\n\n#content #analysis .query\n{\n  float: right;\n  margin-left: 0.5%;\n  min-width: 47%;\n  max-width: 99%;\n}\n\n#content #analysis .analysis-error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #analysis .analysis-error .head a\n{\n  color: #fff;\n  cursor: auto;\n}\n\n#content #analysis #analysis-result\n{\n  overflow: auto;\n}\n\n#content #analysis #analysis-result .index,\n#content #analysis #analysis-result .query\n{\n  background-color: #fff;\n  padding-top: 20px;\n}\n\n#content #analysis #analysis-result table\n{\n  border-collapse: collapse;\n}\n\n#content #analysis #analysis-result td\n{\n  vertical-align: top;\n  white-space: nowrap;\n}\n\n#content #analysis #analysis-result td.part.analyzer div,\n#content #analysis #analysis-result td.part.spacer .holder,\n#content #analysis #analysis-result td td td\n{\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n\n#content #analysis #analysis-result td.legend,\n#content #analysis #analysis-result td.data tr.verbose_output\n{\n  display: none;\n}\n\n#content #analysis #analysis-result.verbose_output td.legend\n{\n  display: table-cell;\n}\n\n#content #analysis #analysis-result.verbose_output td.data tr.verbose_output\n{\n  display: table-row;\n}\n\n#content #analysis #analysis-result .match\n{\n  background-color: #e9eff7;\n  background-color: #f2f2ff;\n}\n\n#content #analysis #analysis-result td.part\n{\n  padding-bottom: 10px;\n}\n\n#content #analysis #analysis-result td.part.analyzer div\n{\n  border-right: 1px solid #f0f0f0;\n  padding-right: 10px;\n}\n\n#content #analysis #analysis-result td.part.analyzer abbr\n{\n  color: #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend .holder,\n#content #analysis #analysis-result td.part.data .holder\n{\n  padding-left: 10px;\n  padding-right: 10px;\n  border-right: 1px solid #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend td\n{\n  color: #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend .holder\n{\n  border-right-color: #f0f0f0;\n}\n\n#content #analysis #analysis-result td.part.data:last-child .holder\n{\n  padding-right: 0;\n  border-right: 0;\n}\n\n#content #analysis #analysis-result td.details \n{\n  padding-left: 10px;\n  padding-right: 10px;\n  border-left: 1px solid #f0f0f0;\n  border-right: 1px solid #f0f0f0;\n}\n\n#content #analysis #analysis-result td.details:first-child\n{\n  padding-left: 0;\n  border-left: 0;\n}\n\n#content #analysis #analysis-result td.details:last-child\n{\n  padding-right: 0;\n  border-right: 0;\n}\n\n#content #analysis #analysis-result td.details tr.empty td\n{\n  color: #f0f0f0;\n}\n\n#content #analysis #analysis-result td.details tr.raw_bytes td\n{\n  letter-spacing: -1px;\n}\n\n#content #analysis #analysis-result .part table table td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #analysis #analysis-result .part table table tr:first-child td\n{\n  border-top: 0;\n}\n\n#content #analysis #field-analysis h2 { background-image: url( ../../img/ico/receipt.png ); }\n#content #analysis .analysis-result h2 { background-image: url( ../../img/ico/receipt-invoice.png ); }"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/cloud.css",
    "content": "#content #cloud\n{\n  position: relative;\n}\n\n#content #cloud #frame .content\n{\n  display: none;\n}\n\n#content #cloud .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #cloud #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 12px;\n  color: #fff;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #cloud #error .msg\n{\n  font-style: italic;\n  font-weight: normal;\n  margin-top: 10px;\n}\n\n#content #cloud #debug\n{\n  background-color: #fff;\n  box-shadow: 0px 0px 10px #c0c0c0;\n  -moz-box-shadow: 0px 0px 10px #c0c0c0;\n  -webkit-box-shadow: 0px 0px 10px #c0c0c0;\n  display: none;\n  padding: 20px;\n  position: absolute;\n  left: 50px;\n  top: 10px;\n}\n\n#content #cloud #debug ul\n{\n  margin-bottom: 5px;\n}\n\n#content #cloud #debug ul a\n{\n  background-position: 4px 50%;\n  border-right: 0;\n  display: block;\n  padding: 2px 4px;\n  padding-left: 25px;\n}\n\n#content #cloud #debug ul a:hover,\n#content #cloud #debug ul a.hover\n{\n  background-color: #f0f0f0;\n}\n\n#content #cloud #debug .clipboard\n{\n  float: left;\n  position: relative;\n}\n\n#content #cloud #debug .clipboard a\n{\n  background-image: url( ../../img/ico/clipboard-paste.png );\n  z-index: 98;\n}\n\n#content #cloud #debug .clipboard a:hover,\n#content #cloud #debug .clipboard a.hover,\n#content #cloud #debug .clipboard.copied a\n{\n  background-image: url( ../../img/ico/clipboard-paste-document-text.png );\n}\n\n#content #cloud #debug .close\n{\n  float: right;\n}\n\n#content #cloud #debug .close a\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  padding-left: 21px;\n}\n\n#content #cloud #debug .close a:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #cloud #debug .debug\n{\n  border: 1px solid #f0f0f0;\n  max-height: 350px;\n  overflow: auto;\n  padding: 5px;\n  width: 500px;\n}\n\n#content #cloud #debug .debug .loader\n{\n  background-position: 5px 50%;\n  display: block;\n  padding: 10px 26px;\n}\n\n#content #cloud .content\n{\n  padding-left: 0;\n  padding-right: 0;\n}\n\n#content #cloud .content.show\n{\n  background-image: url( ../../img/div.gif );\n  background-repeat: repeat-y;\n  background-position: 31% 0;\n}\n\n#content #cloud #tree\n{\n  float: left;\n  width: 30%;\n}\n\n#content #cloud .show #tree\n{\n  overflow: hidden;\n}\n\n#content #cloud #file-content\n{\n  display: none;\n  float: right;\n  position: relative;\n  width: 68%;\n  min-height: 100px\n}\n\n#content #cloud .show #file-content\n{\n  display: block;\n}\n\n#content #cloud #file-content .close\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 50% 50%;\n  display: block;\n  height: 20px;\n  position: absolute;\n  right: 0;\n  top: 0;\n  width: 20px;\n}\n\n#content #cloud #file-content .close:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #cloud #file-content .close span\n{\n  display: none;\n}\n\n#content #cloud #file-content #data\n{\n  border-top: 1px solid #c0c0c0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #cloud #file-content #data pre\n{\n  display: block;\n  max-height: 600px;\n  overflow: auto;\n}\n\n#content #cloud #file-content #data em\n{\n  color: #c0c0c0;\n}\n\n#content #cloud #file-content #prop\n{\n}\n\n#content #cloud #file-content li\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #cloud #file-content li.odd\n{\n  background-color: #F8F8F8;\n}\n\n#content #cloud #file-content li dt\n{\n  float: left;\n  width: 19%;\n}\n\n#content #cloud #file-content li dd\n{\n  float: right;\n  width: 80%;\n}\n\n/* tree */\n\n#content #cloud .tree a.active\n{\n  background-color: #f0f0f0;\n  color: #00f;\n}\n\n#content #cloud #legend\n{\n  border: 1px solid #f0f0f0;\n  padding: 10px;\n  position: absolute;\n  right: 0;\n  bottom: 0;\n}\n\n#content #cloud #legend li\n{\n  padding-left: 15px;\n  position: relative;\n}\n\n#content #cloud #legend li svg\n{\n  position: absolute;\n  left: 0;\n  top: 2px;\n}\n\n#content #graph-content\n{\n  min-height: 400px;\n}\n\n#content #graph-content .node\n{\n  fill: #333;\n}\n\n#content #cloud #legend circle,\n#content #graph-content .node circle\n{\n  fill: #fff;\n  stroke: #c0c0c0;\n  stroke-width: 1.5px;\n}\n\n#content #graph-content .node.lvl-3 text\n{\n  cursor: pointer;\n}\n\n#content #graph-content .node.lvl-3:hover circle\n{\n  stroke: #000 !important;\n}\n\n#content #graph-content .node.lvl-3:hover text\n{\n  fill: #000 !important;\n}\n\n#content #graph-content .link\n{\n  fill: none;\n  stroke: #e0e0e0;\n  stroke-width: 1.5px;\n}\n\n#content #cloud #legend .gone circle,\n#content #graph-content .node.gone circle,\n#content #graph-content .link.gone\n{\n  stroke: #f0f0f0;\n}\n\n#content #graph-content .node.gone text\n{\n  fill: #f0f0f0;\n}\n\n#content #cloud #legend ul .gone\n{\n  color: #e0e0e0;\n}\n\n#content #cloud #legend .recovery_failed,\n#content #cloud #legend .recovery_failed circle,\n#content #graph-content .node.recovery_failed circle\n{\n  color: #C43C35;\n  stroke: #C43C35;\n}\n\n#content #graph-content .node.recovery_failed text\n{\n  fill: #C43C35;\n}\n\n#content #cloud #legend .down,\n#content #cloud #legend .down circle,\n#content #graph-content .node.down circle\n{\n  color: #c48f00;\n  stroke: #c48f00;\n}\n\n#content #graph-content .node.down text\n{\n  fill: #c48f00;\n}\n\n#content #cloud #legend .recovering,\n#content #cloud #legend .recovering circle,\n#content #graph-content .node.recovering circle\n{\n  color: #d5dd00;\n  stroke: #d5dd00;\n}\n\n#content #graph-content .node.recovering text\n{\n  fill: #d5dd00;\n}\n\n#content #cloud #legend .active,\n#content #cloud #legend .active circle,\n#content #graph-content .node.active circle\n{\n  color: #57A957;\n  stroke: #57A957;\n}\n\n#content #graph-content .node.active text\n{\n  fill: #57A957;\n}\n\n#content #cloud #legend .leader circle,\n#content #graph-content .node.leader circle\n{\n  fill: #000;\n}\n\n#content #cloud #legend .leader circle\n{\n  stroke: #fff;\n}\n\n#content #graph-content .link.lvl-2,\n#content #graph-content .link.leader\n{\n  stroke: #c0c0c0;\n}\n\n#content #graph-content .node.lvl-0 circle\n{\n  stroke: #fff;\n}\n\n#content #graph-content .link.lvl-1\n{\n  stroke: #fff;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/common.css",
    "content": "*\n{\n  background-repeat: no-repeat;\n  margin: 0;\n  padding: 0;\n}\n\nbody, h1, h2, h3, h4, h5, h6, a, button, input, select, option, textarea, th, td\n{\n  color: #333;\n  font: 12px/1.6em \"Lucida Grande\", \"DejaVu Sans\", \"Bitstream Vera Sans\", Verdana, Arial, sans-serif;\n}\n\nbody\n{\n  padding: 30px;\n  text-align: center;\n}\n\na, button\n{\n  cursor: pointer;\n}\n\ninput, select, textarea\n{\n  border: 1px solid #c0c0c0;\n  padding: 2px;\n}\n\ninput[readonly=readonly]\n{\n  border-color: #f0f0f0;\n}\n\nbutton\n{\n  background-color: #e6e6e6;\n  background-repeat: no-repeat;\n  background-image: -webkit-gradient( linear, 0 0, 0 100%, from( #ffffff ), color-stop( 25%, #ffffff ), to( #e6e6e6 ) );\n  background-image: -webkit-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -moz-linear-gradient( top, #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -ms-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -o-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0 );\n  border: 1px solid #ccc;\n  border-bottom-color: #bbb;\n  -moz-border-radius: 4px;\n  -webkit-border-radius: 4px;\n  -khtml-border-radius: 4px;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  -moz-box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  color: #333;\n  cursor: pointer;\n  display: inline-block;\n  padding: 4px 7px 5px;\n  overflow: visible;\n  text-shadow: 0 1px 1px rgba( 255, 255, 255, 0.75 );\n  -webkit-transition: 0.1s linear background-image;\n  -moz-transition: 0.1s linear background-image;\n  -ms-transition: 0.1s linear background-image;\n  -o-transition: 0.1s linear background-image;\n  transition: 0.1s linear background-image;\n}\n\nbutton span\n{\n  background-position: 0 50%;\n  display: block;\n  padding-left: 21px;\n}\n\nbutton[type=submit], button.primary\n{\n  background-color: #0064cd;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #049cdb ), to( #0064cd ) );\n  background-image: -moz-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -ms-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #049cdb ), color-stop( 100%, #0064cd ) );\n  background-image: -webkit-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -o-linear-gradient( top, #049cdb, #0064cd );\n  background-image: linear-gradient( top, #049cdb, #0064cd );\n  border-color: #0064cd #0064cd #003f81;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0 );\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n\nbutton.success\n{\n  background-color: #57a957;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #62c462 ), to( #57a957 ) );\n  background-image: -moz-linear-gradient( top, #62c462, #57a957 );\n  background-image: -ms-linear-gradient( top, #62c462, #57a957 );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #62c462 ), color-stop( 100%, #57a957 ) );\n  background-image: -webkit-linear-gradient( top, #62c462, #57a957 );\n  background-image: -o-linear-gradient( top, #62c462, #57a957 );\n  background-image: linear-gradient( top, #62c462, #57a957 );\n  border-color: #57a957 #57a957 #3d773d;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62c462', endColorstr='#57a957', GradientType=0 );\n  color: #ffffff;\n  text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.25 );\n}\n\nbutton.warn\n{\n  background-color: #c43c35;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #ee5f5b ), to( #c43c35 ) );\n  background-image: -moz-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -ms-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #ee5f5b ), color-stop( 100%, #c43c35 ) );\n  background-image: -webkit-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -o-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: linear-gradient( top, #ee5f5b, #c43c35 );\n  border-color: #c43c35 #c43c35 #882a25;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0 );\n  text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.25 );\n}\n\na\n{\n  text-decoration: none;\n}\n\npre\n{\n  color: #333;\n  text-align: left;\n}\n\nabbr\n{\n  cursor: help;\n}\n\nul\n{\n  list-style: none;\n}\n\n.clearfix:after { clear: both; content: \".\"; display: block; font-size: 0; height: 0; visibility: hidden; }\n.clearfix       { display: block; }\n\n.loader\n{\n  background-image: url( ../../img/loader.gif ) !important;\n}\n\n.loader-light\n{\n  background-image: url( ../../img/loader-light.gif ) !important;\n}\n\n#wrapper\n{\n  position: relative;\n  margin: 0 auto;\n  margin-bottom: 30px;\n  text-align: left;\n}\n\n#header\n{\n  padding-bottom: 10px;\n  position: fixed;\n  z-index: 42;\n}\n\n#header #solr\n{\n  background-image: url( ../../img/solr.png );\n  display: block;\n  height: 78px;\n  width: 150px;\n}\n\n#header #solr span\n{\n  display: none;\n}\n\n#main\n{\n  min-width: 750px;\n  position: relative;\n}\n\n#main.error\n{\n  border: 0;\n  min-height: 0;\n  padding-top: 20px;\n}\n\n#main.error .message\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  font-weight: bold;\n  margin-left: 150px;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#main.error .code\n{\n  border: 1px solid #c0c0c0;\n  padding: 5px;\n}\n\n#meta\n{\n  position: absolute;\n  bottom: -26px;\n  right: 0;\n}\n\n#meta li\n{\n  float: left;\n}\n\n#meta li a\n{\n  background-position: 10px 50%;\n  display: block;\n  height: 25px;\n  line-height: 25px;\n  padding-left: 31px;\n  padding-right: 10px;\n}\n\n#meta li a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#meta .documentation a { background-image: url( ../../img/ico/document-text.png ); }\n#meta .issues a { background-image: url( ../../img/ico/bug.png ); }\n#meta .irc a { background-image: url( ../../img/ico/users.png ); }\n#meta .mailinglist a { background-image: url( ../../img/ico/mail.png ); }\n#meta .wiki-query-syntax a { background-image: url( ../../img/ico/script-code.png ); }\n\n#environment\n{\n  background-image: url( ../../img/ico/box.png );\n  background-position: 5px 50%;\n  display: none;\n  font-weight: bold;\n  margin-top: 10px;\n  padding: 5px 10px;\n  padding-left: 26px;\n}\n\n.has-environment #environment\n{\n  display: block;\n}\n\n#environment.prod\n{\n  background-color: #c37f7f;\n  color: #fff;\n}\n\n#environment.test\n{\n  background-color: #f5f5b2;\n}\n\n#environment.dev\n{\n  background-color: #cce7cc;\n}\n\n#init-failures\n{\n  border: 1px solid #f00;\n  display: none;\n  margin-left: 150px;\n  margin-bottom: 20px;\n}\n\n#init-failures h2,\n#init-failures ul,\n#init-failures p\n{\n  padding: 10px;\n}\n\n#init-failures h2\n{\n  background-color: #f00;\n  color: #fff;\n  font-weight: bold;\n}\n\n#init-failures p\n{\n  color: #c0c0c0;\n  padding-top: 0;\n}\n\n#content-wrapper\n{\n  margin-left: 150px;\n  border: 1px solid #c0c0c0;\n  min-height: 500px;\n}\n\n#content\n{\n  padding: 10px;\n}\n\n#content > .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content iframe\n{\n  border: 0;\n  display: block;\n  min-height: 400px;\n  width: 100%;\n}\n\n#content .block\n{\n  margin-bottom: 10px;\n}\n\n#content .block h2\n{\n  background-color: #fafafa;\n  background-position: 5px 50%;\n  border-bottom: 1px solid #f0f0f0;\n  font-weight: bold;\n  padding: 5px;\n  padding-left: 26px;\n}\n\n#content .block.disabled,\n#content .block.disabled h2\n{\n  color: #c0c0c0;\n}\n\n#content .block .message,\n#content .block .content\n{\n  padding: 5px;\n}\n\n#content .block .message\n{\n  display: none;\n}\n\n/* syntax */\n\npre.syntax\n{\n  overflow: auto;\n}\n\npre.syntax code\n{\n  display: block;\n  color: #000;\n}\n\npre.syntax .comment,\npre.syntax .template_comment,\npre.syntax .diff .header,\npre.syntax .javadoc\n{\n  color: #998;\n  font-style: italic;\n}\n\npre.syntax .keyword,\npre.syntax .css .rule .keyword,\npre.syntax .winutils,\npre.syntax .javascript .title,\npre.syntax .lisp .title,\npre.syntax .subst\n{\n  color: #000;\n  font-weight: bold;\n}\n\npre.syntax .number,\npre.syntax .hexcolor\n{\n  color: #40a070;\n}\n\npre.syntax.language-json .number\n{\n  color: blue;\n}\n\npre.syntax.language-json .literal\n{\n  color: firebrick;\n}\n\npre.syntax .string,\npre.syntax .tag .value,\npre.syntax .phpdoc,\npre.syntax .tex .formula\n{\n  color: #d14;\n}\n\npre.syntax.language-json .string\n{\n  color: green;\n}\n\npre.syntax .title,\npre.syntax .id\n{\n  color: #900;\n  font-weight: bold;\n}\n\npre.syntax .javascript .title,\npre.syntax .lisp .title,\npre.syntax .subst\n{\n  font-weight: normal;\n}\n\npre.syntax .class .title,\npre.syntax .tex .command\n{\n  color: #458;\n  font-weight: bold;\n}\n\npre.syntax .tag,\npre.syntax .css .keyword,\npre.syntax .html .keyword,\npre.syntax .tag .title,\npre.syntax .django .tag .keyword\n{\n  color: #000080;\n  font-weight: normal;\n}\n\npre.syntax .attribute,\npre.syntax .variable,\npre.syntax .instancevar,\npre.syntax .lisp .body\n{\n  color: #008080;\n}\n\npre.syntax.language-json .attribute\n{\n  color: black;\n  font-weight: bold;\n}\n\npre.syntax .regexp\n{\n  color: #009926;\n}\n\npre.syntax .class\n{\n  color: #458;\n  font-weight: bold;\n}\n\npre.syntax .symbol,\npre.syntax .ruby .symbol .string,\npre.syntax .ruby .symbol .keyword,\npre.syntax .ruby .symbol .keymethods,\npre.syntax .lisp .keyword,\npre.syntax .tex .special\n{\n  color: #990073;\n}\n\npre.syntax .builtin,\npre.syntax .built_in,\npre.syntax .lisp .title\n{\n  color: #0086b3;\n}\n\npre.syntax .preprocessor,\npre.syntax .pi,\npre.syntax .doctype,\npre.syntax .shebang,\npre.syntax .cdata\n{\n  color: #999;\n  font-weight: bold;\n}\n\npre.syntax .deletion\n{\n  background: #fdd;\n}\n\npre.syntax .addition\n{\n  background: #dfd;\n}\n\npre.syntax .diff .change\n{\n  background: #0086b3;\n}\n\npre.syntax .chunk\n{\n  color: #aaa;\n}\n\npre.syntax .tex .formula\n{\n  opacity: 0.5;\n}\n\n#content .tree li, \n#content .tree ins\n{\n  background-color: transparent;\n  background-image: url( ../../img/tree.png );\n  background-repeat: no-repeat; \n}\n\n#content .tree li\n{\n  background-position: -54px 0;\n  background-repeat: repeat-y;\n  line-height: 22px;\n}\n\n#content .tree li.jstree-last\n{\n  background:transparent;\n}\n\n#content .tree .jstree-open > ins\n{\n  background-position: -36px 0;\n}\n\n#content .tree .jstree-closed > ins\n{\n  background-position: -18px 0;\n}\n\n#content .tree .jstree-leaf > ins\n{\n  background-position: 0 0;\n}\n\n#content .tree .jstree-hovered\n{\n  background:#e7f4f9; border:1px solid #d8f0fa; padding:0 2px 0 1px;\n}\n\n#content .tree .jstree-clicked\n{\n  background:#beebff; border:1px solid #99defd; padding:0 2px 0 1px;\n}\n\n#content .tree a .jstree-icon\n{\n  background-image: url( ../../img/ico/folder.png );\n}\n\n#content .tree .jstree-leaf a .jstree-icon\n{\n  background-image: url( ../../img/ico/document-text.png );\n}\n\n#content .tree .jstree-search\n{\n  font-style:italic;\n}\n\n#content .tree a.jstree-search\n{\n  color:aqua;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/cores.css",
    "content": "#content #cores\n{\n  position: relative;\n}\n\n#content #cores #ui-block\n{\n  background-color: #fff;\n  height: 200px;\n  display: none;\n  position: absolute;\n  left: -5px;\n  top: 35px;\n  width: 500px;\n}\n\n#content #cores #frame\n{\n  float: right;\n  width: 86%;\n}\n\n#content #cores #navigation\n{\n  padding-top: 50px;\n  width: 12%;\n}\n\n#content #cores #navigation a\n{\n  padding-left: 5px;\n}\n\n#content #cores #frame .actions\n{\n  margin-bottom: 20px;\n}\n\n#content #cores .actions div.action\n{\n  width: 300px;\n}\n\n#content #cores .actions div.action .cloud\n{\n  display: none;\n}\n\n#content #cores .actions form .error\n{\n  color: #800;\n  display: none;\n}\n\n#content #cores .actions form p\n{\n  padding-bottom: 8px;\n}\n\n#content #cores .actions form label\n{\n  float: left;\n  padding-top: 3px;\n  padding-bottom: 3px;\n  text-align: right;\n  width: 25%;\n}\n\n#content #cores .actions form input,\n#content #cores .actions form select,\n#content #cores .actions form .buttons,\n#content #cores .actions form .error span\n{\n  float: right;\n  width: 73%;\n}\n\n#content #cores .actions form .buttons\n{\n  padding-top: 10px;\n}\n\n#content #cores .actions form button.submit\n{\n  margin-right: 20px;\n}\n\n#content #cores .actions form button.submit span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #cores .actions form button.reset span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #cores .actions #add\n{\n  left: 0;\n  position: absolute;\n}\n\n#content #cores .actions #add span\n{\n  background-image: url( ../../img/ico/plus-button.png );\n}\n\n#content #cores .actions #unload\n{\n  margin-right: 20px;\n}\n\n#content #cores .actions #unload span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #cores .actions #reload span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #cores .actions #rename span\n{\n  background-image: url( ../../img/ico/ui-text-field-select.png );\n}\n\n#content #cores .actions #swap span\n{\n  background-image: url( ../../img/ico/arrow-switch.png );\n}\n\n#content #cores .actions #optimize\n{\n  display: none;\n}\n\n#content #cores .actions #optimize span\n{\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n}\n\n#content #cores .actions div.action\n{\n  background-color: #fff;\n  border: 1px solid #f0f0f0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  display: none;\n  position: absolute;\n  left: -50px;\n  top: 40;\n  padding: 10px;\n}\n\n#content #cores #data #core-data h2 { background-image: url( ../../img/ico/box.png ); }\n#content #cores #data #index-data h2 { background-image: url( ../../img/ico/chart.png ); }\n\n#content #cores #data #index-data\n{\n  margin-top: 10px;\n}\n\n#content #cores #data li\n{\n  padding-bottom: 3px;\n  padding-top: 3px;\n}\n\n#content #cores #data li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #cores #data li dt\n{\n  float: left;\n  width: 17%;\n}\n\n#content #cores #data li dd\n{\n  float: right;\n  width: 82%;\n}\n\n#content #cores #data li dd.ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n}\n\n#content #cores #data li dd.ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #cores #data li dd.ico span\n{\n  display: none;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/dashboard.css",
    "content": "#content #dashboard .block\n{\n  background-image: none;\n  width: 49%;\n}\n\n#content #dashboard .fieldlist\n{\n  float: left;\n}\n\n#content #dashboard .fieldlist dt,\n#content #dashboard .fieldlist dd\n{\n  display: block;\n  float: left;\n}\n\n#content #dashboard .fieldlist dt\n{\n  clear: left;\n  margin-right: 2%;\n  text-align: right;\n  width: 23%;\n}\n\n#content #dashboard .fieldlist dd\n{\n  width: 74%;\n}\n\n#content #dashboard .fieldlist .index_optimized\n{\n  margin-top: 10px;\n}\n\n#content #dashboard .fieldlist .ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n}\n\n#content #dashboard .fieldlist .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dashboard .fieldlist .ico span\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_optimized.value a\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_optimized.value.ico-0 a\n{\n  background-color: #f0f0f0;\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n  background-position: 5px 50%;\n  border: 1px solid #c0c0c0;\n  display: block;\n  float: left;\n  margin-left: 50px;\n  padding: 1px 5px;\n  padding-left: 26px;\n}\n\n#content #dashboard #statistics .index_has-deletions\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_has-deletions.value.ico-0\n{\n  background-image: url( ../../img/ico/tick-red.png );\n}\n\n#content #dashboard #replication\n{\n  float: left;\n}\n\n#content #dashboard #replication .is-replicating\n{\n  background-position: 99% 50%;\n  display: block;\n}\n\n#content #dashboard #replication #details table thead td span\n{\n  display: none;\n}\n\n#content #dashboard #dataimport\n{\n  float: right;\n}\n\n\n#content #dashboard #admin-extra\n{\n  float: right;\n}\n\n#content #dashboard #system h2 { background-image: url( ../../img/ico/server.png ); }\n#content #dashboard #statistics h2 { background-image: url( ../../img/ico/chart.png ); }\n#content #dashboard #replication h2 { background-image: url( ../../img/ico/node.png ); }\n#content #dashboard #replication.master h2 { background-image: url( ../../img/ico/node-master.png ); }\n#content #dashboard #replication.slave h2 { background-image: url( ../../img/ico/node-slave.png ); }\n#content #dashboard #dataimport h2 { background-image: url( ../../img/ico/document-import.png ); }\n#content #dashboard #admin-extra h2 { background-image: url( ../../img/ico/plus-button.png ); }\n\n#content #dashboard #healthcheck .ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n  padding-left: 20px;\n  width: 60%;\n}\n\n#content #dashboard #healthcheck .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/dataimport.css",
    "content": "#content #dataimport\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #dataimport #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #dataimport #form\n{\n  float: left;\n  width: 20%;\n}\n\n#content #dataimport #form #navigation\n{\n  border-right: 0;\n}\n\n#content #dataimport #form #navigation a\n{\n  background-image: url( ../../img/ico/status-offline.png );\n}\n\n#content #dataimport #form #navigation .current a\n{\n  background-image: url( ../../img/ico/status.png );\n}\n\n#content #dataimport #form form\n{\n  display: none;\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 5px;\n}\n\n#content #dataimport.error #form form\n{\n  display: none !important;\n}\n\n#content #dataimport #form label\n{\n  cursor: pointer;\n  display: block;\n  margin-top: 5px;\n}\n\n#content #dataimport #form input,\n#content #dataimport #form select,\n#content #dataimport #form textarea\n{\n  margin-bottom: 2px;\n  width: 100%;\n}\n\n#content #dataimport #form input\n{\n  width: 98%;\n}\n\n#content #dataimport #form button\n{\n  margin-top: 10px;\n}\n\n#content #dataimport #form .execute span\n{\n  background-image: url( ../../img/ico/document-import.png );\n}\n\n#content #dataimport #form .refresh-status span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #dataimport #form .refresh-status span.success\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #form #start\n{\n  float: left;\n  width: 47%;\n}\n\n#content #dataimport #form #rows\n{\n  float: right;\n  width: 47%;\n}\n\n#content #dataimport #form .checkbox input\n{\n  margin-bottom: 0;\n  width: auto;\n}\n\n#content #dataimport #form #auto-refresh-status\n{\n  margin-top: 20px;\n}\n\n#content #dataimport #form #auto-refresh-status a\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #dataimport #form #auto-refresh-status a.on,\n#content #dataimport #form #auto-refresh-status a:hover\n{\n  color: #333;\n}\n\n#content #dataimport #form #auto-refresh-status a.on\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n}\n\n#content #dataimport #current_state\n{\n  padding: 10px;\n  margin-bottom: 20px;\n}\n\n#content #dataimport.error #current_state\n{\n  display: none !important;\n}\n\n#content #dataimport #current_state .last_update,\n#content #dataimport #current_state .info\n{\n  display: block;\n  padding-left: 21px;\n}\n\n#content #dataimport #current_state .last_update\n{\n  color: #c0c0c0;\n  font-size: 11px;\n}\n\n#content #dataimport #current_state .info\n{\n  background-position: 0 1px;\n  position: relative;\n}\n\n#content #dataimport #current_state .info .details span\n{\n  color: #c0c0c0;\n}\n\n#content #dataimport #current_state .info .abort-import\n{\n  display: none;\n  position: absolute;\n  right: 0px;\n  top: 0px;\n}\n\n#content #dataimport #current_state .info .abort-import span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #dataimport #current_state .info .abort-import.success span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #current_state.indexing\n{\n  background-color: #f9f9f9;\n}\n\n#content #dataimport #current_state.indexing .info\n{\n  background-image: url( ../../img/ico/hourglass.png );\n}\n\n#content #dataimport #current_state.indexing .info .abort-import\n{\n  display: block;\n}\n\n#content #dataimport #current_state.success\n{\n  background-color: #e6f3e6;\n}\n\n#content #dataimport #current_state.success .info\n{\n  background-image: url( ../../img/ico/tick-circle.png );\n}\n\n#content #dataimport #current_state.success .info strong\n{\n  color: #080;\n}\n\n#content #dataimport #current_state.aborted\n{\n  background-color: #f3e6e6;\n}\n\n#content #dataimport #current_state.aborted .info\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #dataimport #current_state.aborted .info strong\n{\n  color: #800;\n}\n\n#content #dataimport #current_state.failure\n{\n  background-color: #f3e6e6;\n}\n\n#content #dataimport #current_state.failure .info\n{\n  background-image: url( ../../img/ico/cross-button.png );\n}\n\n#content #dataimport #current_state.failure .info strong\n{\n  color: #800;\n}\n\n#content #dataimport #current_state.idle\n{\n  background-color: #e6e6ff;\n}\n\n#content #dataimport #current_state.idle .info\n{\n  background-image: url( ../../img/ico/information.png );\n}\n\n#content #dataimport #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #dataimport .block h2\n{\n  border-color: #c0c0c0;\n  padding-left: 5px;\n  position: relative;\n}\n\n#content #dataimport .block.hidden h2\n{\n  border-color: #fafafa;\n}\n\n#content #dataimport .block h2 a.toggle\n{\n  background-image: url( ../../img/ico/toggle-small.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #dataimport .block.hidden h2 a.toggle\n{\n  background-image: url( ../../img/ico/toggle-small-expand.png );\n}\n\n#content #dataimport #config h2 a.r\n{\n  background-position: 3px 50%;\n  display: block;\n  float: right;\n  margin-left: 10px;\n  padding-left: 24px;\n  padding-right: 3px;\n}\n\n#content #dataimport #config h2 a.reload_config\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #dataimport #config h2 a.reload_config.success\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #config h2 a.reload_config.error\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #dataimport #config h2 a.debug_mode\n{\n  background-image: url( ../../img/ico/hammer.png );\n  color: #c0c0c0;\n}\n\n#content #dataimport #config.debug_mode h2 a.debug_mode\n{\n  background-color: #ff0;\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n  color: #333;\n}\n\n#content #dataimport .block.hidden .content\n{\n  display: none;\n}\n\n#content #dataimport #config .content\n{\n  padding: 5px 2px;\n}\n\n#content #dataimport #dataimport_config .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #dataimport #dataimport_config .formatted\n{\n  border: 1px solid #fff;\n  display: block;\n  padding: 2px;\n}\n\n#content #dataimport .debug_mode #dataimport_config .formatted\n{\n  display: none;\n}\n\n#content #dataimport #dataimport_config .editable\n{\n  display: none;\n}\n\n#content #dataimport .debug_mode #dataimport_config .editable\n{\n  display: block;\n}\n\n#content #dataimport #dataimport_config .editable textarea\n{\n  font-family: monospace;\n  height: 120px;\n  min-height: 60px;\n  width: 100%;\n}\n\n#content #dataimport #debug_response\n{\n  display: none;\n}\n\n#content #dataimport #debug_response em\n{\n  color: #c0c0c0;\n  font-style: normal;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/index.css",
    "content": "#content #index .bar-desc\n{\n  color: #c0c0c0;\n  font-weight: normal;\n  margin-left: 10px;\n  white-space: pre;\n}\n\n#content #index .bar-holder\n{\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  height: 35px;\n}\n\n#content #index .bar-holder .bar\n{\n  height: 100%;\n  position: relative;\n}\n\n#content #index .bar-holder div .val\n{\n  border-right: 1px solid #f00;\n  display: block;\n  padding-right: 5px;\n  position: absolute;\n  right: 0;\n  top: 35px;\n  white-space: nowrap;\n}\n\n#content #index .bar-holder .bar-max.bar\n{\n  background-color: #f0f0f0;\n}\n\n#content #index .bar-holder .bar-max.val\n{\n  border-color: #f0f0f0;\n  color: #d6d6d6;\n}\n\n#content #index .bar-holder .bar-total.bar\n{\n  background-color: #c0c0c0;\n}\n\n#content #index .bar-holder .bar-total.val\n{\n  border-color: #c0c0c0;\n  color: #c0c0c0;\n}\n\n#content #index .bar-holder .bar-used.bar\n{\n  background-color: #969696;\n}\n\n#content #index .bar-holder .bar-used.val\n{\n  border-color: #969696;\n  color: #969696;\n}\n\n#content #index .bar-holder.bar-lvl-2 .bar-max.val { padding-top: 25px; }\n#content #index .bar-holder.bar-lvl-2 .bar-total.val { padding-top: 5px; }\n#content #index .bar-holder.bar-lvl-2 { margin-bottom: 45px; }\n\n#content #index .bar-holder.bar-lvl-3 .bar-max.val { padding-top: 45px; }\n#content #index .bar-holder.bar-lvl-3 .bar-total.val { padding-top: 25px; }\n#content #index .bar-holder.bar-lvl-3 .bar-used.val { padding-top: 5px; }\n#content #index .bar-holder.bar-lvl-3 { margin-bottom: 65px; }\n\n#content #index .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #index .index-left\n{\n  float: left;\n  width: 55%;\n}\n\n#content #index .index-right\n{\n  float: right;\n  width: 40%;\n}\n\n#content #index .data li\n{\n  display: none;\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #index .data li dt\n{\n  float: left;\n  white-space: nowrap;\n  width: 20%;\n}\n\n#content #index .data li dd\n{\n  float: right;\n  text-overflow: ellipsis;\n  overflow: hidden;\n  white-space: nowrap;\n  width: 80%\n}\n\n#content #index .data li dd.odd\n{\n  color: #999;\n}\n\n#content #index .data dt span\n{\n  background-position: 1px 50%;\n  display: block;\n  padding-left: 22px;\n}\n\n#content #index #instance h2 { background-image: url( ../../img/ico/server.png ); }\n#content #index #instance .start_time dt span { background-image: url( ../../img/ico/clock-select.png ); }\n#content #index #instance .host dt span { background-image: url( ../../img/ico/globe.png ); }\n#content #index #instance .dir dt span { background-image: url( ../../img/ico/folder.png ); }\n\n#content #index #versions h2 { background-image: url( ../../img/ico/property.png ); }\n#content #index #versions .solr span { background-image: url( ../../img/solr-ico.png ); }\n#content #index #versions .lucene span { background-image: url( ../../img/lucene-ico.png ); }\n\n#content #index #jvm h2 { background-image: url( ../../img/ico/jar.png ); }\n#content #index #jvm .jvm_version dt span { background-image: url( ../../img/ico/jar.png ); }\n#content #index #jvm .processors dt span { background-image: url( ../../img/ico/processor.png ); }\n#content #index #jvm .command_line_args dt span { background-image: url( ../../img/ico/terminal.png ); }\n\n#content #index #system h2 { background-image: url( ../../img/ico/system-monitor.png ); }\n\n#content #index #system\n{\n  position: relative;\n}\n\n#content #index #system .reload\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n  background-position: 50% 50%;\n  display: block;\n  height: 30px;\n  position: absolute;\n  right: 0;\n  top: 0;\n  width: 30px;\n}\n\n#content #index #system .reload.loader\n{\n  padding-left: 0;\n}\n\n#content #index #system .reload span\n{\n  display: none;\n}\n\n#content #index #system .content p\n{\n  margin-top: 10px;\n  margin-bottom: 5px;\n}\n\n#content #index #system .content .no-info\n{\n  color: #c0c0c0;\n  display: none;\n  font-style: italic;\n}\n\n#content #index #jvm-memory h2 { background-image: url( ../../img/ico/memory.png ); }\n\n#content #index #jvm-memory-bar\n{\n  margin-top: 20px;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/java-properties.css",
    "content": "#content #java-properties .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;   \n}\n\n#content #java-properties li\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #java-properties li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #java-properties li dt\n{\n  float: left;\n  width: 29%;\n}\n\n#content #java-properties li dd\n{\n  float: right;\n  width: 70%\n}\n\n#content #java-properties li dd.odd\n{\n  color: #999;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/logging.css",
    "content": "#content #logging .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #logging .block h2\n{\n  background-image: url( ../../img/ico/document-text.png );\n  margin-bottom: 10px;\n}\n\n#content #logging .block h2 span span\n{\n  color: #c0c0c0;\n  font-weight: normal;\n  margin-left: 10px;\n}\n\n#content #logging #viewer\n{\n  position: relative;\n}\n\n#content #logging #viewer #state\n{\n  background-position: 0 50%;\n  color: #c0c0c0;\n  margin-top: 20px;\n  padding-left: 21px;\n}\n\n#content #logging #viewer table\n{\n  border-collapse: collapse;\n  width: 100%;\n}\n\n#content #logging #viewer th,\n#content #logging #viewer td a,\n#content #logging #viewer tbody .trace td\n{\n  padding: 3px 10px;\n}\n\n#content #logging #viewer td\n{\n  vertical-align: top;\n}\n\n#content #logging #viewer td a\n{\n  display: block;\n}\n\n#content #logging #viewer thead th\n{\n  font-weight: bold;\n  text-align: left;\n}\n\n#content #logging #viewer tbody td,\n#content #logging #viewer tfoot td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #logging #viewer thead th.message\n{\n  width:100%;\n}\n\n#content #logging #viewer tbody td.span a\n{\n  padding-left: 0;\n  padding-right: 0;\n}\n\n#content #logging #viewer tbody span\n{\n  display: block;\n  padding-left: 10px;\n  padding-right: 10px;\n}\n\n#content #logging #viewer tbody .level-info .level span { background-color: #ebf5eb; }\n#content #logging #viewer tbody .level-warning     span { background-color: #FFD930; }\n#content #logging #viewer tbody .level-severe     span  { background-color: #c43c35; color: #fff; }\n\n#content #logging #viewer tbody .level-debug  span  { background-color: #ebf5eb; }\n#content #logging #viewer tbody .level-warn   span  { background-color: #FFD930; }\n#content #logging #viewer tbody .level-error  span  { background-color: #FF6130; }\n#content #logging #viewer tbody .level-fatal  span  { background-color: #c43c35; }\n\n#content #logging #viewer tbody .has-trace a\n{\n  cursor: pointer;\n}\n\n#content #logging #viewer tbody .has-trace a:hover\n{\n  color: #008;\n}\n\n#content #logging #viewer tbody .has-trace .message a\n{\n  background-image: url( ../../img/ico/information.png );\n  background-position: 100% 50%;\n  display: block;\n  padding-right: 21px;\n}\n\n#content #logging #viewer tbody .has-trace.open .message a\n{\n  background-image: url( ../../img/ico/information-white.png );\n}\n\n#content #logging #viewer tbody .trace\n{\n  display: none;\n}\n\n#content #logging #viewer tbody .trace td\n{\n  border-top: 0;\n  color: #c0c0c0;\n}\n\n#content #logging #viewer .has-data tfoot\n{\n  display: none;\n}\n\n#content #logging #viewer tfoot td\n{\n  color: #c0c0c0;\n}\n\n#content #logging .jstree > li\n{\n  margin-left: 0;\n}\n\n#content #logging .jstree li\n{\n  position: relative;\n}\n\n#content #logging .jstree .level-finest  { background-color: #d5e5fc; }\n#content #logging .jstree .level-fine    { background-color: #d5fafc; }\n#content #logging .jstree .level-config  { background-color: #e6fded; }\n#content #logging .jstree .level-info    { background-color: #fafcd7; }\n#content #logging .jstree .level-warning { background-color: #fcecd5; }\n#content #logging .jstree .level-severe  { background-color: #fcdcda; }\n#content #logging .jstree .level-off     { background-color: #ffffff; }\n\n/* Log4j */\n#content #logging .jstree .level-all     { background-color: #9EDAFF; }\n#content #logging .jstree .level-trace   { background-color: #d5e5fc; }\n#content #logging .jstree .level-debug   { background-color: #d5fafc; }\n#content #logging .jstree .level-warn    { background-color: #e6fded; }\n#content #logging .jstree .level-error   { background-color: #fcecd5; }\n#content #logging .jstree .level-fatal   { background-color: #fcdcda; }\n\n\n#content #logging .jstree a\n{\n  height: 17px;\n  line-height: 17px;\n  padding: 0;\n  width: 90%;\n}\n\n#content #logging .jstree a:hover\n{\n  color: #008;\n}\n\n#content #logging .jstree a span.ns\n{\n  display: none;\n}\n\n#content #logging.ns .jstree a span.ns\n{\n  display: inline;\n}\n\n#content #logging .jstree a span.name\n{\n  background-position: 100% 50%;\n  cursor: pointer;\n  padding-right: 21px;\n}\n\n#content #logging .jstree a.trigger.set\n{\n  font-weight: bold;\n}\n\n#content #logging .jstree a:hover span.name\n{\n  background-image: url( ../../img/ico/pencil-small.png );\n}\n\n#content #logging .jstree .selector-holder\n{\n  position: absolute;\n  top: -2px;\n  z-index: 700;\n}\n\n#content #logging .jstree .selector-holder.open\n{\n  background-color: #fff;\n  margin-left: -19px;\n  z-index: 800;\n}\n\n#content #logging .jstree li .selector-holder { left: 440px; }\n#content #logging .jstree li li .selector-holder { left: 422px; }\n#content #logging .jstree li li li .selector-holder { left: 404px; }\n#content #logging .jstree li li li li .selector-holder { left: 386px; }\n#content #logging .jstree li li li li li .selector-holder { left: 368px; }\n#content #logging .jstree li li li li li li .selector-holder { left: 350px; }\n#content #logging .jstree li li li li li li li .selector-holder { left: 332px; }\n\n#content #logging .jstree .selector\n{\n  border: 1px solid transparent;\n  position: relative;\n}\n\n#content #logging .jstree .open .selector\n{\n  border-color: #f0f0f0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n}\n\n#content #logging .jstree .selector a\n{\n  display: block;\n  padding: 2px;\n  width: auto;\n}\n\n#content #logging .jstree .selector .close\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector .close\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 50% 50%;\n  display: block;\n  position: absolute;\n  right: -25px;\n  top: 0;\n  width: 20px;\n}\n\n#content #logging .jstree .open .selector .close:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #logging .jstree .open .selector .close span\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector a.trigger\n{\n  display: none;\n}\n\n#content #logging .jstree .selector ul\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector ul\n{\n  display: block;\n}\n\n#content #logging .jstree .selector ul li\n{\n  background: none;\n  margin-left: 0;\n}\n\n#content #logging .jstree .selector ul li a\n{\n  background-image: url( ../../img/ico/ui-radio-button-uncheck.png );\n  background-position: 2px 50%;\n  padding-left: 21px;\n}\n\n#content #logging .jstree .selector ul li a.level\n{\n  background-color: #f0f0f0;\n}\n\n#content #logging .jstree .selector ul li a:hover\n{\n  background-image: url( ../../img/ico/ui-radio-button.png );\n}\n\n#content #logging .jstree .selector li.unset\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #logging .jstree .selector li.unset a\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 4px 50%;\n}\n\n#content #logging .jstree .selector li.unset a:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n  color: #800;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/menu.css",
    "content": "#menu-wrapper\n{\n  position: fixed;\n  top: 120px;\n  width: 150px;\n}\n\n.has-environment #menu-wrapper\n{\n  top: 160px;\n}\n\n#menu-wrapper a\n{\n  display: block;\n  padding: 4px 2px;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n\n#core-selector\n{\n  margin-top: 20px;\n  padding-right: 10px;\n}\n\n#core-selector a\n{\n  padding: 0;\n  padding-left: 8px;\n}\n\n#core-selector select\n{\n  width: 100%;\n}\n\n#menu-wrapper .active p\n{\n  background-color: #fafafa;\n  border-color: #c0c0c0;\n}\n\n#menu-wrapper p a,\n#menu a\n{\n  background-position: 5px 50%;\n  padding-left: 26px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n#menu-wrapper p a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#menu-wrapper .active p a\n{\n  background-color: #c0c0c0;\n  font-weight: bold;\n}\n\n#menu p.loader\n{\n  background-position: 5px 50%;\n  color: #c0c0c0;\n  margin-top: 5px;\n  padding-left: 26px;\n}\n\n#menu p a small\n{\n  color: #b5b5b5;\n  font-weight: normal;\n}\n\n#menu p a small span.txt\n{\n  display: none;\n}\n\n#menu p a small:hover span.txt\n{\n  display: inline;\n}\n\n#menu .busy\n{\n  border-right-color: #f6f5d9;\n}\n\n#menu .busy p a\n{\n  background-color: #f6f5d9;\n  background-image: url( ../../img/ico/status-away.png );\n}\n\n#menu .offline\n{\n  border-right-color: #eccfcf;\n}\n\n#menu .offline p a\n{\n  background-color: #eccfcf;\n  background-image: url( ../../img/ico/status-busy.png );\n}\n\n#menu .online\n{\n  border-right-color: #cfecd3;\n}\n\n#menu .online p a\n{\n  background-color: #cfecd3;\n  background-image: url( ../../img/ico/status.png );\n}\n\n#menu .ping small\n{\n  color: #000\n}\n\n#menu li\n{\n  border-bottom: 1px solid #f0f0f0;\n}\n\n#menu li:last-child\n{\n  border-bottom: 0;\n}\n\n#menu li.optional\n{\n  display: none;\n}\n\n#core-menu p\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#core-menu li:first-child p\n{\n  border-top: 0;\n}\n\n#core-menu p a\n{\n  background-image: url( ../../img/ico/status-offline.png );\n}\n\n#core-menu .active p a\n{\n  background-image: url( ../../img/ico/box.png );\n}\n\n#core-menu ul,\n#menu ul\n{\n  display: none;\n  padding-top: 5px;\n  padding-bottom: 10px;\n}\n\n#core-menu .active ul,\n#menu .active ul\n{\n  display: block;\n}\n\n#menu ul li\n{\n  border-bottom: 0;\n}\n\n#core-menu ul li a,\n#menu ul li a\n{\n  background-position: 7px 50%;\n  border-bottom: 1px solid #f0f0f0;\n  color: #bbb;\n  margin-left: 15px;\n  padding-left: 26px;\n}\n\n#core-menu ul li:last-child a,\n#menu ul li:last-child a\n{\n  border-bottom: 0;\n}\n\n#core-menu ul li a:hover,\n#menu ul li a:hover\n{\n  background-color: #f0f0f0;\n  color: #333;\n}\n\n#core-menu ul li.active a,\n#menu ul li.active a\n{\n  background-color: #d0d0d0;\n  border-color: #d0d0d0;\n  color: #333;\n}\n\n#menu #index.global p a { background-image: url( ../../img/ico/dashboard.png ); }\n\n#menu #logging.global p a { background-image: url( ../../img/ico/inbox-document-text.png ); }\n#menu #logging.global .level a { background-image: url( ../../img/ico/gear.png ); }\n\n#menu #java-properties.global p a { background-image: url( ../../img/ico/jar.png ); }\n\n#menu #threads.global p a { background-image: url( ../../img/ico/ui-accordion.png ); }\n\n#menu #cores.global p a { background-image: url( ../../img/ico/databases.png ); }\n\n#menu #cloud.global p a { background-image: url( ../../img/ico/network-cloud.png ); }\n#menu #cloud.global .tree a { background-image: url( ../../img/ico/folder-tree.png ); }\n#menu #cloud.global .graph a { background-image: url( ../../img/ico/molecule.png ); }\n#menu #cloud.global .rgraph a { background-image: url( ../../img/ico/asterisk.png ); }\n#menu #cloud.global .dump a { background-image: url( ../../img/ico/download-cloud.png ); }\n\n#core-menu .ping.error a\n{\n  \n  background-color: #ffcccc;\n  background-image: url( ../../img/ico/system-monitor--exclamation.png );\n  border-color: #ffcccc;\n  cursor: help;\n}\n\n#core-menu .overview a { background-image: url( ../../img/ico/home.png ); }\n#core-menu .query a { background-image: url( ../../img/ico/magnifier.png ); }\n#core-menu .schema a { background-image: url( ../../img/ico/table.png ); }\n#core-menu .config a { background-image: url( ../../img/ico/gear.png ); }\n#core-menu .analysis a { background-image: url( ../../img/ico/funnel.png ); }\n#core-menu .schema-browser a { background-image: url( ../../img/ico/book-open-text.png ); }\n#core-menu .replication a { background-image: url( ../../img/ico/node.png ); }\n#core-menu .distribution a { background-image: url( ../../img/ico/node-select.png ); }\n#core-menu .ping a { background-image: url( ../../img/ico/system-monitor.png ); }\n#core-menu .logging a { background-image: url( ../../img/ico/inbox-document-text.png ); }\n#core-menu .plugins a { background-image: url( ../../img/ico/block.png ); }\n#core-menu .dataimport a { background-image: url( ../../img/ico/document-import.png ); }\n\n\n#content #navigation\n{\n  border-right: 1px solid #e0e0e0;\n}\n\n#content #navigation a\n{\n  display: block;\n  padding: 4px 2px;\n}\n\n#content #navigation .current\n{\n  border-color: #e0e0e0;\n}\n\n#content #navigation a\n{\n  background-position: 5px 50%;\n  padding-left: 26px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n\n#content #navigation a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#content #navigation .current a\n{\n  background-color: #e0e0e0;\n  font-weight: bold;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/plugins.css",
    "content": "#content #plugins #navigation\n{\n  width: 20%;\n}\n\n#content #plugins #navigation .cache a { background-image: url( ../../img/ico/disk-black.png ); }\n#content #plugins #navigation .core a { background-image: url( ../../img/ico/wooden-box.png ); }\n#content #plugins #navigation .other a { background-image: url( ../../img/ico/zone.png ); }\n#content #plugins #navigation .highlighting a { background-image: url( ../../img/ico/highlighter-text.png ); }\n#content #plugins #navigation .updatehandler a{ background-image: url( ../../img/ico/arrow-circle.png ); }\n#content #plugins #navigation .queryhandler a { background-image: url( ../../img/ico/magnifier.png ); }\n\n#content #plugins #navigation .PLUGINCHANGES { margin-top: 20px; }\n#content #plugins #navigation .PLUGINCHANGES a { background-image: url( ../../img/ico/eye.png ); }\n#content #plugins #navigation .RELOAD a { background-image: url( ../../img/ico/arrow-circle.png ); }\n\n\n#content #plugins #navigation a\n{\n  position: relative;\n}\n\n#content #plugins #navigation a span\n{\n  background-color: #bba500;\n  border-radius: 5px;\n  color: #fff;\n  font-size: 10px;\n  font-weight: normal;\n  line-height: 1.4em;\n  padding-left: 4px;\n  padding-right: 4px;\n  position: absolute;\n  right: 5px;\n  top: 7px;\n}\n\n#content #plugins #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #plugins #frame .entry\n{\n  margin-bottom: 10px;\n}\n\n#content #plugins #frame .entry:last-child\n{\n  margin-bottom: 0;\n}\n\n#content #plugins #frame .entry a\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 0 50%;\n  display: block;\n  font-weight: bold;\n  padding-left: 21px;\n}\n\n#content #plugins #frame .entry.changed a span\n{\n  color: #bba500;\n}\n\n#content #plugins #frame .entry.expanded a\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #plugins #frame .entry.expanded ul\n{\n  display: block;\n}\n\n#content #plugins #frame .entry ul\n{\n  border-left: 9px solid #f0f3ff;\n  display: none;\n  margin-left: 3px;\n  padding-top: 5px;\n  padding-left: 10px;\n}\n\n#content #plugins #frame .entry li\n{\n  padding-top: 2px;\n  padding-bottom: 2px;\n}\n\n#content #plugins #frame .entry li.stats\n{\n  border-top: 1px solid #c0c0c0;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #plugins #frame .entry li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #plugins #frame .entry dt,\n#content #plugins #frame .entry .stats span\n{\n  float: left;\n  width: 11%;\n}\n\n#content #plugins #frame .entry dd,\n#content #plugins #frame .entry .stats ul\n{\n  float: right;\n  width: 88%;\n}\n\n#content #plugins #frame .entry .stats ul\n{\n  border-left: 0;\n  margin: 0;\n  padding: 0;\n}\n\n#content #plugins #frame .entry .stats dt\n{\n  width: 27%;\n}\n\n#content #plugins #frame .entry .stats dd\n{\n  width: 72%;\n}\n\n#content #plugins #frame .entry.expanded a.linker {\n  background-image: none;\n  background-position: 0 0;\n  display: inline;\n  font-weight: normal;\n  padding:0px;\n}\n\n#content #plugins #frame .entry.expanded a.linker:hover {\n  background-color:#F0F3FF;\n}\n\n#recording\n{\n  display: none;\n}\n\n#recording .wrapper\n{\n  padding: 30px;\n}\n\n#recording p\n{\n  background-position: 0 50%;\n  float: left;\n  padding-left: 21px;\n  padding-top: 7px;\n  padding-bottom: 7px;\n}\n\n#recording button\n{\n  float: right;\n}\n\n#recording button span\n{\n  background-image: url( ../../img/ico/new-text.png );\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/query.css",
    "content": "#content #query\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 22% 0;\n  background-repeat: repeat-y;\n}\n\n#content #query #form\n{\n  float: left;\n  width: 21%;\n}\n\n#content #query #form label\n{\n  cursor: pointer;\n  display: block;\n  margin-top: 5px;\n}\n\n#content #query #form input,\n#content #query #form select,\n#content #query #form textarea\n{\n  margin-bottom: 2px;\n  width: 100%;\n}\n\n#content #query #form input,\n#content #query #form textarea\n{\n  width: 98%;\n}\n\n#content #query #form #start\n{\n  float: left;\n  width: 45%;\n}\n\n#content #query #form #rows\n{\n  float: right;\n  width: 45%;\n}\n\n#content #query #form .checkbox input\n{\n  margin-bottom: 0;\n  width: auto;\n}\n\n#content #query #form fieldset,\n#content #query #form .optional.expanded\n{\n  border: 1px solid #fff;\n  border-top: 1px solid #c0c0c0;\n  margin-bottom: 5px;\n}\n\n#content #query #form fieldset.common\n{\n  margin-top: 10px;\n}\n\n#content #query #form fieldset legend,\n#content #query #form .optional.expanded legend\n{\n  display: block;\n  margin-left: 10px;\n  padding: 0px 5px;\n}\n\n#content #query #form fieldset legend label\n{\n  margin-top: 0;\n}\n\n#content #query #form fieldset .fieldset\n{\n  border-bottom: 1px solid #f0f0f0;\n  margin-bottom: 5px;\n  padding-bottom: 10px;\n}\n\n#content #query #form .optional\n{\n  border: 0;\n}\n\n#content #query #form .optional .fieldset\n{\n  display: none;\n}\n\n#content #query #form .optional legend\n{\n  margin-left: 0;\n  padding-left: 0;\n}\n\n#content #query #form .optional.expanded .fieldset\n{\n  display: block;\n}\n\n#content #query #result\n{\n  display: none;\n  float: right;\n  width: 77%;\n}\n\n#content #query #result #url\n{\n  margin-bottom: 10px;\n  background-image: url( ../../img/ico/ui-address-bar.png );\n  background-position: 5px 50%;\n  border: 1px solid #f0f0f0;\n  box-shadow: 1px 1px 0 #f0f0f0;\n  -moz-box-shadow: 1px 1px 0 #f0f0f0;\n  -webkit-box-shadow: 1px 1px 0 #f0f0f0;\n  color: #c0c0c0;\n  display: block;\n  overflow: hidden;\n  padding: 5px;\n  padding-left: 26px;\n  white-space: nowrap;\n}\n\n#content #query #result #url:focus,\n#content #query #result #url:hover\n{\n  border-color: #c0c0c0;\n  box-shadow: 1px 1px 0 #d8d8d8;\n  -moz-box-shadow: 1px 1px 0 #d8d8d8;\n  -webkit-box-shadow: 1px 1px 0 #d8d8d8;\n  color: #333;\n}\n\n#content #query #result #response\n{\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/replication.css",
    "content": "#content #replication\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #replication #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #replication #navigation\n{\n  border-right: 0;\n  float: left;\n  width: 20%;\n}\n\n#content #replication #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #replication .block\n{\n  border-bottom: 1px solid #c0c0c0;\n  margin-bottom: 20px;\n  padding-bottom: 20px;\n}\n\n#content #replication .block.last\n{\n  border-bottom: 0;\n}\n\n#content #replication .masterOnly,\n#content #replication .slaveOnly\n{\n  display: none;\n}\n\n#content #replication.master .masterOnly\n{\n  display: block;\n}\n\n#content #replication.slave .slaveOnly\n{\n  display: block;\n}\n\n#content #replication .replicating\n{\n  display: none;\n}\n\n#content #replication.replicating .replicating\n{\n  display: block;\n}\n\n#content #replication #progress\n{\n  padding-bottom: 80px;\n  position: relative;\n}\n\n#content #replication #progress .info\n{\n  padding: 5px;\n}\n\n#content #replication #progress #start\n{\n  margin-left: 100px;\n  border-left: 1px solid #c0c0c0;\n}\n\n#content #replication #progress #bar\n{\n  background-color: #f0f0f0;\n  margin-left: 100px;\n  margin-right: 100px;\n  position: relative;\n}\n\n#content #replication #progress #bar #bar-info,\n#content #replication #progress #bar #eta\n{\n  position: absolute;\n  right: -100px;\n  width: 100px;\n}\n\n#content #replication #progress #bar #bar-info\n{\n  border-left: 1px solid #f0f0f0;\n  margin-top: 30px;\n}\n\n#content #replication #progress #eta .info\n{\n  color: #c0c0c0;\n  height: 30px;\n  line-height: 30px;\n  padding-top: 0;\n  padding-bottom: 0;\n}\n\n#content #replication #progress #speed\n{\n  color: #c0c0c0;\n  position: absolute;\n  right: 100px;\n  top: 0;\n}\n\n#content #replication #progress #bar #done\n{\n  background-color: #c0c0c0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  height: 30px;\n  position: relative;\n}\n\n#content #replication #progress #bar #done .percent\n{\n  font-weight: bold;\n  height: 30px;\n  line-height: 30px;\n  padding-left: 5px;\n  padding-right: 5px;\n  position: absolute;\n  right: 0;\n  text-align: right;\n}\n\n#content #replication #progress #bar #done #done-info\n{\n  border-right: 1px solid #c0c0c0;\n  position: absolute;\n  right: 0;\n  margin-top: 30px;\n  text-align: right;\n  width: 100px;\n}\n\n#content #replication #progress #bar #done #done-info .percent\n{\n  font-weight: bold;\n}\n\n#content #replication .block .label,\n#content #replication #current-file .file,\n#content #replication #current-file .progress,\n#content #replication #iterations .iterations\n{\n  float: left;\n}\n\n#content #replication .block .label\n{\n  width: 100px;\n}\n\n#content #replication .block .label span\n{\n  display: block;\n  padding-left: 21px;\n}\n\n#content #replication #current-file\n{\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #replication #current-file .progress\n{\n  color: #c0c0c0;\n  margin-left: 20px;\n}\n\n#content #replication #iterations .label span\n{\n  background-image: url( ../../img/ico/node-design.png );\n}\n\n#content #replication #iterations .iterations li\n{\n  background-position: 100% 50%;\n  display: none;\n  padding-right: 21px;\n}\n\n#content #replication #iterations .iterations.expanded li\n{\n  display: block;\n}\n\n#content #replication #iterations .iterations .latest\n{\n  display: block;\n}\n\n#content #replication #iterations .iterations .replicated\n{\n  color: #80c480;\n}\n\n#content #replication #iterations .iterations ul:hover .replicated,\n#content #replication #iterations .iterations .replicated.latest\n{\n  color: #080;\n}\n\n#content #replication #iterations .iterations .replicated.latest\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #iterations .iterations .failed\n{\n  color: #c48080;\n}\n\n#content #replication #iterations .iterations ul:hover .failed,\n#content #replication #iterations .iterations .failed.latest\n{\n  color: #800;\n}\n\n#content #replication #iterations .iterations .failed.latest\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #iterations .iterations a\n{\n  border-top: 1px solid #f0f0f0;\n  display: none;\n  margin-top: 2px;\n  padding-top: 2px;\n}\n\n#content #replication #iterations .iterations a span\n{\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: none;\n  padding-left: 21px;\n}\n\n#content #replication #iterations .iterations a span.expand\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  display: block;\n}\n\n#content #replication #iterations .iterations.expanded a span.expand\n{\n  display: none;\n}\n\n#content #replication #iterations .iterations.expanded a span.collapse\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n  display: block;\n}\n\n#content #replication #details table\n{\n  margin-left: 20px;\n  border-collapse: collapse;\n}\n\n#content #replication #details table th\n{\n  text-align: left;\n}\n\n#content #replication.slave #details table .slaveOnly\n{\n  display: table-row;\n}\n\n#content #replication #details table thead th\n{\n  color: #c0c0c0;\n}\n\n#content #replication #details table thead th,\n#content #replication #details table tbody td\n{\n  padding-right: 20px;\n}\n\n#content #replication #details table thead td,\n#content #replication #details table thead th,\n#content #replication #details table tbody th,\n#content #replication #details table tbody td div\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #replication #details table tbody td,\n#content #replication #details table tbody th\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #replication #details table thead td\n{\n  width: 100px;\n}\n\n#content #replication #details table thead td span\n{\n  background-image: url( ../../img/ico/clipboard-list.png );\n  background-position: 0 50%;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #replication #details table tbody th\n{\n  padding-right: 10px;\n  text-align: right;\n  white-space: nowrap;\n}\n\n#content #replication #details table tbody .size\n{\n  text-align: right;\n  white-space: nowrap;\n}\n\n#content #replication #details table tbody .generation div\n{\n  text-align: center;\n}\n\n#content #replication #details table tbody .diff div\n{\n  background-color: #fcfcc9;\n  padding-left: 1px;\n  padding-right: 1px;\n}\n\n#content #replication .settings .label span\n{\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n}\n\n#content #replication .settings ul,\n#content #replication .settings dl dt,\n#content #replication .settings dl dd\n{\n  float: left;\n}\n\n#content #replication .settings ul li\n{\n  border-top: 1px solid #f0f0f0;\n  display: none;\n  padding-top: 3px;\n  padding-top: 3px;\n}\n\n#content #replication .settings ul li:first-child\n{\n  border-top: 0;\n  padding-top: 0;\n}\n\n#content #replication .settings dl dt\n{\n  clear: left;\n  margin-right: 5px;\n  width: 120px;\n}\n\n#content #replication .settings dl .ico\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #replication .settings dl .ico.ico-0\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #replication .settings dl .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication .timer\n{\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  display: none;\n  margin-bottom: 20px;\n  padding: 10px;\n}\n\n#content #replication .timer p,\n#content #replication .timer small\n{\n  padding-left: 21px;\n}\n\n#content #replication .timer p\n{\n  background-image: url( ../../img/ico/clock-select-remain.png );\n  background-position: 0 50%;\n}\n\n#content #replication .timer p .approx\n{\n  color: #c0c0c0;\n  margin-right: 1px;\n}\n\n#content #replication .timer p .tick\n{\n  font-weight: bold;\n}\n\n#content #replication .timer small\n{\n  color: #c0c0c0;\n  display: none;\n}\n\n#content #replication #navigation button\n{\n  display: block;\n  margin-bottom: 10px;\n}\n\n#content #replication #navigation button.optional\n{\n  display: none;\n}\n\n#content #replication #navigation .replicate-now span\n{\n  background-image: url( ../../img/ico/document-convert.png );\n}\n\n#content #replication #navigation .abort-replication span\n{\n  background-image: url( ../../img/ico/hand.png );\n}\n\n#content #replication #navigation .disable-polling span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #navigation .enable-polling span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #navigation .disable-replication span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #navigation .enable-replication span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #navigation .refresh-status span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/schema-browser.css",
    "content": "#content #schema-browser .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;   \n}\n\n#content #schema-browser.loaded\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #schema-browser #data\n{\n  float: right;\n  width: 78%;\n}\n\n#content #schema-browser #related\n{\n  float: left;\n  width: 20%;\n}\n\n#content #schema-browser #related select\n{\n  width: 100%;\n}\n\n#content #schema-browser #related select optgroup\n{\n  font-style: normal;\n  padding: 5px;\n}\n\n#content #schema-browser #related select option\n{\n  padding-left: 10px;\n}\n\n#content #schema-browser #related #f-df-t\n{\n  border-bottom: 1px solid #f0f0f0;\n  padding-bottom: 15px;\n}\n\n#content #schema-browser #related .ukf-dsf dt\n{\n  display: none;\n}\n\n#content #schema-browser #related dl\n{\n  margin-top: 15px;\n}\n\n#content #schema-browser #related dl dt,\n#content #schema-browser #related dl dd a\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #related dl dt\n{\n  font-weight: bold;\n  margin-top: 5px;\n}\n\n#content #schema-browser #related dl dd a\n{\n  display: block;\n  padding-left: 10px;\n}\n\n#content #schema-browser #related dl dd a:hover\n{\n  background-color: #f8f8f8;\n}\n\n#content #schema-browser #related .field .field,\n#content #schema-browser #related .field .field a,\n#content #schema-browser #related .dynamic-field .dynamic-field,\n#content #schema-browser #related .dynamic-field .dynamic-field a,\n#content #schema-browser #related .type .type,\n#content #schema-browser #related .type .type a,\n#content #schema-browser #related .active,\n#content #schema-browser #related .active a\n{\n  color: #333;\n}\n\n#content #schema-browser #related .copyfield,\n#content #schema-browser #related .copyfield a\n{\n  color: #666;\n}\n\n#content #schema-browser #data\n{\n  display: none;\n}\n\n#content #schema-browser #data #index dt\n{\n  display: none;\n  float: left;\n  margin-right: 5px;\n  width: 150px;\n}\n\n#content #schema-browser #data #field .field-options\n{\n  margin-bottom: 10px;\n}\n\n#content #schema-browser #data #field .field-options .head h2\n{\n  padding-left: 5px;\n}\n\n#content #schema-browser #data #field .partial\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .partial p\n{\n  background-image: url( ../../img/ico/exclamation-button.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .options dt,\n#content #schema-browser #data #field .field-options .options dd\n{\n  float: left;\n}\n\n#content #schema-browser #data #field .field-options .options dt\n{\n  clear: left;\n  display: none;\n  margin-right: 5px;\n  width: 100px;\n}\n\n#content #schema-browser #data #field .field-options .flags\n{\n  margin-top: 10px;\n  margin-bottom: 20px;\n}\n\n#content #schema-browser #data #field .field-options .flags thead td\n{\n  color: #c0c0c0;\n  padding-right: 5px;\n  width: 100px;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody td,\n#content #schema-browser #data #field .field-options .flags th\n{\n  padding: 2px 5px;\n}\n\n#content #schema-browser #data #field .field-options .flags thead td,\n#content #schema-browser #data #field .field-options .flags tbody th\n{\n  padding-left: 0;\n}\n\n#content #schema-browser #data #field .field-options .flags thead th,\n#content #schema-browser #data #field .field-options .flags tbody td\n{\n  border-left: 1px solid #f0f0f0;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody th,\n#content #schema-browser #data #field .field-options .flags tbody td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .check\n{\n  background-color: #fafdfa;\n  background-image: url( ../../img/ico/tick.png );\n  background-position: 50% 50%;\n  text-align: center;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .check span\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .text\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .field-options .analyzer,\n#content #schema-browser #data #field .field-options .analyzer li,\n#content #schema-browser #data #field .field-options .analyzer ul,\n#content #schema-browser #data #field .field-options .analyzer ul li\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p,\n#content #schema-browser #data #field .field-options .analyzer dl\n{\n  float: left;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p\n{\n  margin-right: 5px;\n  text-align: right;\n  width: 125px;\n  white-space: pre;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a\n{\n  cursor: auto;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis\n{\n  cursor: pointer;\n  display: block;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis span\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis:hover span\n{\n  background-image: url( ../../img/ico/question.png );\n  color: #008;\n}\n\n#content #schema-browser #data #field .field-options .analyzer a\n{\n  cursor: auto;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .toggle\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 100% 50%;\n  cursor: pointer;\n  display: block;\n  padding-right: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .open .toggle\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #schema-browser #data #field .field-options .analyzer li\n{\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul\n{\n  clear: left;\n  display: none;\n  margin-left: 55px;\n  padding-top: 5px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .open ul\n{\n  display: block;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul li\n{\n  border-top: 1px solid #f8f8f8;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul p\n{\n  color: #999;\n  margin-right: 5px;\n  text-align: right;\n  width: 70px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd\n{\n  margin-left: 20px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd\n{\n  background-image: url( ../../img/ico/document-list.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd.ico-0\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #schema-browser #data #field .head\n{\n  margin-bottom: 5px;\n}\n\n#content #schema-browser #data #field .terminfo-holder\n{\n  border-top: 1px solid #c0c0c0;\n  padding-top: 10px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger\n{\n  float: left;\n  width: 140px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger button span\n{\n  background-image: url( ../../img/ico/information.png );\n}\n\n#content #schema-browser #data #field .terminfo-holder .status\n{\n  border-left: 1px solid #f0f0f0;\n  display: none;\n  float: left;\n  padding-left: 20px;\n  padding-right: 20px;\n}\n\n#content #schema-browser #data #field .terminfo-holder.disabled .trigger button span\n{\n  background-image: url( ../../img/ico/prohibition.png );\n}\n\n#content #schema-browser #data #field .terminfo-holder.disabled .status\n{\n  display: block;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .terminfo-holder.loaded .trigger .autoload\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: block;\n  margin-top: 10px;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload:hover\n{\n  color: #008;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload.on\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n  color: #333;\n}\n\n#content #schema-browser #data #field .topterms-holder,\n#content #schema-browser #data #field .histogram-holder\n{\n  border-left: 1px solid #f0f0f0;\n  display: none;\n  float: left;\n  padding-left: 20px;\n  padding-right: 20px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head input\n{\n  height: 18px;\n  line-height: 16px;\n  text-align: right;\n  width: 30px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head .max-holder\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .topterms-holder .head .max-holder:hover .max\n{\n  color: #008;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  padding-left: 21px;\n  margin-left: 5px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link:hover\n{\n  background-image: url( ../../img/ico/question.png );\n}\n\n\n#content #schema-browser #data #field .topterms-holder .head #query_link span\n{\n  visibility: hidden;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link:hover span\n{\n  visibility: visible;\n}\n\n#content #schema-browser .topterms-holder li\n{\n  border-top: 1px solid  #999;\n  margin-bottom: 5px;\n}\n\n/* possible overwrite with inline style */\n#content #schema-browser .topterms-holder li p\n{\n  background-color:  #999;\n  color: #fff;\n  float: left;\n}\n\n#content #schema-browser .topterms-holder li p span\n{\n  display: block;\n  padding-right: 2px;\n  text-align: right;\n}\n\n/* possible overwrite with inline style */\n#content #schema-browser .topterms-holder li ul\n{\n  margin-left: 30px;\n}\n\n#content #schema-browser .topterms-holder li li\n{\n  border-top: 0;\n  margin-bottom: 0;\n  white-space: nowrap;\n}\n\n#content #schema-browser .topterms-holder li li.odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #schema-browser .topterms-holder li li a\n{\n  display: block;\n  padding-left: 2px;\n  padding-right: 2px;\n}\n\n#content #schema-browser .topterms-holder li li a:hover\n{\n  background-color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .histogram-holder ul\n{\n  margin-left: 25px;\n}\n\n#content #schema-browser #data #field .histogram-holder li\n{\n  margin-bottom: 2px;\n  position: relative;\n  width: 150px;\n}\n\n#content #schema-browser #data #field .histogram-holder li.odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #schema-browser #data #field .histogram-holder li dl,\n#content #schema-browser #data #field .histogram-holder li dt\n{\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dl\n{\n  background-color: #c0c0c0;\n  min-width: 1px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dt\n{\n  color: #a0a0a0;\n  position: absolute;\n  overflow: hidden;\n  left: -25px;\n  top: 0px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dt span\n{\n  display: block;\n  padding-right: 4px;\n  text-align: right;\n}\n\n#content #schema-browser #data #field .histogram-holder li dd\n{\n  clear: left;\n  float: left;\n  margin-left: 2px;\n  white-space: nowrap;\n}\n\n#content #schema-browser #data #field .histogram-holder li:hover dl\n{\n  background-color: #b0b0b0;\n}\n\n#content #schema-browser #data #field .histogram-holder li:hover dt\n{\n  color: #333;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/css/styles/threads.css",
    "content": "#content #threads .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump table\n{\n  border-collapse: collapse;\n  width: 100%;\n}\n\n#content #threads #thread-dump table .spacer,\n#content #threads #thread-dump tbody .state\n{\n  background-color: #fff;\n}\n\n#content #threads #thread-dump table th,\n#content #threads #thread-dump table td\n{\n  padding: 5px 3px;\n  vertical-align: top;\n}\n\n#content #threads #thread-dump thead th\n{\n  background-color: #c8c8c8;\n  font-weight: bold;\n  text-align: left;\n}\n\n#content #threads #thread-dump thead th.name\n{\n  width: 85%;\n}\n\n#content #threads #thread-dump thead th.time\n{\n  text-align: right;\n  width: 15%;\n}\n\n#content #threads #thread-dump tbody .odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #threads #thread-dump tbody .RUNNABLE a\n{\n  background-image: url( ../../img/ico/tick-circle.png );\n}\n\n#content #threads #thread-dump tbody .WAITING a,\n#content #threads #thread-dump tbody .TIMED_WAITING .a\n{\n  background-image: url( ../../img/ico/hourglass.png );\n}\n\n#content #threads #thread-dump tbody .WAITING.lock a,\n#content #threads #thread-dump tbody .TIMED_WAITING.lock a\n{\n  background-image: url( ../../img/ico/hourglass--exclamation.png );\n}\n\n#content #threads #thread-dump tbody .name a\n{\n  background-position: 0 50%;\n  cursor: auto;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump tbody .stacktrace .name a\n{\n  cursor: pointer;\n}\n\n#content #threads #thread-dump tbody .stacktrace .name a span\n{    \n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 100% 50%;\n  padding-right: 21px;\n}\n\n#content #threads #thread-dump tbody .stacktrace.open .name a span\n{   \n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #threads #thread-dump tbody .name p\n{\n  background-image: url( ../../img/ico/arrow-000-small.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  font-size: 11px;\n  margin-left: 21px;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump tbody .name div\n{\n  border-top: 1px solid #c0c0c0;\n  display: none;\n  margin-left: 21px;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #threads #thread-dump tbody .open .name div\n{\n  display: block;\n}\n\n#content #threads #thread-dump tbody .name ul\n{\n  list-style-type: disc;\n  margin-left: 0.7em;\n  padding-left: 0.7em;\n}\n\n#content #threads #thread-dump tbody .time\n{\n  text-align: right;\n}\n\n#content #threads #thread-dump tbody .details\n{\n  display: none;\n}\n\n#content #threads .controls\n{\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n#content #threads .controls a\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  padding-left: 21px;\n}\n\n#content #threads.expanded .controls a\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #threads.expanded .controls .expand,\n#content #threads.collapsed .controls .collapse\n{\n  display: none;\n}"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/img/filetypes/README",
    "content": "http://www.splitbrain.org/projects/file_icons\n\nReleased to the Public Domain\nFree to use. Provided as is. No warranties.\n\nNote: The big majority of icons where created by the creators listed\n      below. Only a few ones where found on the net. They were too\n      widespread to determine the original author and thus were\n      considered public domain.\n      If you are the author of one of those icons just send a short\n      mail to either be included in the list below or have the icon\n      removed from the package.\n\nCreators:\n\n  Andreas Gohr <andi@splitbrain.org>\n  Michael Klier <chi@chimeric.de>\n  Andreas Barton <andreas.barton@web.de>\n  Hubert Chathi <hubert@uhoreg.ca>\n  Johan Koehne <johankohne@gmail.com>\n  Rudi von Staden <rudivs@iafrica.com>\n  Daniel Darvish <ddarvish@hibm.org>\n  Andy Pascall <apascall@engineering.ucsb.edu>\n  Seth <seth.holcomb@gmail.com>\n  David Carella <david.carella@gmail.com>\n  Tom N. Harris <telliamed@fastmail.us>\n  Brandon Carmon Colvin <b.carmon.colvin@gmail.com>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/ZeroClipboard.js",
    "content": "// Simple Set Clipboard System\n// Author: Joseph Huckaby\n\nvar ZeroClipboard = {\n\t\n\tversion: \"1.0.7\",\n\tclients: {}, // registered upload clients on page, indexed by id\n\tmoviePath: 'ZeroClipboard.swf', // URL to movie\n\tnextId: 1, // ID of next movie\n\t\n\t$: function(thingy) {\n\t\t// simple DOM lookup utility function\n\t\tif (typeof(thingy) == 'string') thingy = document.getElementById(thingy);\n\t\tif (!thingy.addClass) {\n\t\t\t// extend element with a few useful methods\n\t\t\tthingy.hide = function() { this.style.display = 'none'; };\n\t\t\tthingy.show = function() { this.style.display = ''; };\n\t\t\tthingy.addClass = function(name) { this.removeClass(name); this.className += ' ' + name; };\n\t\t\tthingy.removeClass = function(name) {\n\t\t\t\tvar classes = this.className.split(/\\s+/);\n\t\t\t\tvar idx = -1;\n\t\t\t\tfor (var k = 0; k < classes.length; k++) {\n\t\t\t\t\tif (classes[k] == name) { idx = k; k = classes.length; }\n\t\t\t\t}\n\t\t\t\tif (idx > -1) {\n\t\t\t\t\tclasses.splice( idx, 1 );\n\t\t\t\t\tthis.className = classes.join(' ');\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tthingy.hasClass = function(name) {\n\t\t\t\treturn !!this.className.match( new RegExp(\"\\\\s*\" + name + \"\\\\s*\") );\n\t\t\t};\n\t\t}\n\t\treturn thingy;\n\t},\n\t\n\tsetMoviePath: function(path) {\n\t\t// set path to ZeroClipboard.swf\n\t\tthis.moviePath = path;\n\t},\n\t\n\tdispatch: function(id, eventName, args) {\n\t\t// receive event from flash movie, send to client\t\t\n\t\tvar client = this.clients[id];\n\t\tif (client) {\n\t\t\tclient.receiveEvent(eventName, args);\n\t\t}\n\t},\n\t\n\tregister: function(id, client) {\n\t\t// register new client to receive events\n\t\tthis.clients[id] = client;\n\t},\n\t\n\tgetDOMObjectPosition: function(obj, stopObj) {\n\t\t// get absolute coordinates for dom element\n\t\tvar info = {\n\t\t\tleft: 0, \n\t\t\ttop: 0, \n\t\t\twidth: obj.width ? obj.width : obj.offsetWidth, \n\t\t\theight: obj.height ? obj.height : obj.offsetHeight\n\t\t};\n\n\t\twhile (obj && (obj != stopObj)) {\n\t\t\tinfo.left += obj.offsetLeft;\n\t\t\tinfo.top += obj.offsetTop;\n\t\t\tobj = obj.offsetParent;\n\t\t}\n\n\t\treturn info;\n\t},\n\t\n\tClient: function(elem) {\n\t\t// constructor for new simple upload client\n\t\tthis.handlers = {};\n\t\t\n\t\t// unique ID\n\t\tthis.id = ZeroClipboard.nextId++;\n\t\tthis.movieId = 'ZeroClipboardMovie_' + this.id;\n\t\t\n\t\t// register client with singleton to receive flash events\n\t\tZeroClipboard.register(this.id, this);\n\t\t\n\t\t// create movie\n\t\tif (elem) this.glue(elem);\n\t}\n};\n\nZeroClipboard.Client.prototype = {\n\t\n\tid: 0, // unique ID for us\n\tready: false, // whether movie is ready to receive events or not\n\tmovie: null, // reference to movie object\n\tclipText: '', // text to copy to clipboard\n\thandCursorEnabled: true, // whether to show hand cursor, or default pointer cursor\n\tcssEffects: true, // enable CSS mouse effects on dom container\n\thandlers: null, // user event handlers\n\t\n\tglue: function(elem, appendElem, stylesToAdd) {\n\t\t// glue to DOM element\n\t\t// elem can be ID or actual DOM element object\n\t\tthis.domElement = ZeroClipboard.$(elem);\n\t\t\n\t\t// float just above object, or zIndex 99 if dom element isn't set\n\t\tvar zIndex = 99;\n\t\tif (this.domElement.style.zIndex) {\n\t\t\tzIndex = parseInt(this.domElement.style.zIndex, 10) + 1;\n\t\t}\n\t\t\n\t\tif (typeof(appendElem) == 'string') {\n\t\t\tappendElem = ZeroClipboard.$(appendElem);\n\t\t}\n\t\telse if (typeof(appendElem) == 'undefined') {\n\t\t\tappendElem = document.getElementsByTagName('body')[0];\n\t\t}\n\t\t\n\t\t// find X/Y position of domElement\n\t\tvar box = ZeroClipboard.getDOMObjectPosition(this.domElement, appendElem);\n\t\t\n\t\t// create floating DIV above element\n\t\tthis.div = document.createElement('div');\n\t\tvar style = this.div.style;\n\t\tstyle.position = 'absolute';\n\t\tstyle.left = '' + box.left + 'px';\n\t\tstyle.top = '' + box.top + 'px';\n\t\tstyle.width = '' + box.width + 'px';\n\t\tstyle.height = '' + box.height + 'px';\n\t\tstyle.zIndex = zIndex;\n\n\t\tstyle.left = '0px';\n\t\tstyle.top = '0px';\n\t\t\n\t\tif (typeof(stylesToAdd) == 'object') {\n\t\t\tfor (addedStyle in stylesToAdd) {\n\t\t\t\tstyle[addedStyle] = stylesToAdd[addedStyle];\n\t\t\t}\n\t\t}\n\t\t\n\t\t// style.backgroundColor = '#f00'; // debug\n\t\t\n\t\tappendElem.appendChild(this.div);\n\t\t\n\t\tthis.div.innerHTML = this.getHTML( box.width, box.height );\n\t},\n\t\n\tgetHTML: function(width, height) {\n\t\t// return HTML for movie\n\t\tvar html = '';\n\t\tvar flashvars = 'id=' + this.id + \n\t\t\t'&width=' + width + \n\t\t\t'&height=' + height;\n\t\t\t\n\t\tif (navigator.userAgent.match(/MSIE/)) {\n\t\t\t// IE gets an OBJECT tag\n\t\t\tvar protocol = location.href.match(/^https/i) ? 'https://' : 'http://';\n\t\t\thtml += '<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"'+protocol+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\"'+width+'\" height=\"'+height+'\" id=\"'+this.movieId+'\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"always\" /><param name=\"allowFullScreen\" value=\"false\" /><param name=\"movie\" value=\"'+ZeroClipboard.moviePath+'\" /><param name=\"loop\" value=\"false\" /><param name=\"menu\" value=\"false\" /><param name=\"quality\" value=\"best\" /><param name=\"bgcolor\" value=\"#ffffff\" /><param name=\"flashvars\" value=\"'+flashvars+'\"/><param name=\"wmode\" value=\"transparent\"/></object>';\n\t\t}\n\t\telse {\n\t\t\t// all other browsers get an EMBED tag\n\t\t\thtml += '<embed id=\"'+this.movieId+'\" src=\"'+ZeroClipboard.moviePath+'\" loop=\"false\" menu=\"false\" quality=\"best\" bgcolor=\"#ffffff\" width=\"'+width+'\" height=\"'+height+'\" name=\"'+this.movieId+'\" align=\"middle\" allowScriptAccess=\"always\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" flashvars=\"'+flashvars+'\" wmode=\"transparent\" />';\n\t\t}\n\t\treturn html;\n\t},\n\t\n\thide: function() {\n\t\t// temporarily hide floater offscreen\n\t\tif (this.div) {\n\t\t\tthis.div.style.left = '-2000px';\n\t\t}\n\t},\n\t\n\tshow: function() {\n\t\t// show ourselves after a call to hide()\n\t\tthis.reposition();\n\t},\n\t\n\tdestroy: function() {\n\t\t// destroy control and floater\n\t\tif (this.domElement && this.div) {\n\t\t\tthis.hide();\n\t\t\tthis.div.innerHTML = '';\n\t\t\t\n\t\t\tvar body = document.getElementsByTagName('body')[0];\n\t\t\ttry { body.removeChild( this.div ); } catch(e) {;}\n\t\t\t\n\t\t\tthis.domElement = null;\n\t\t\tthis.div = null;\n\t\t}\n\t},\n\t\n\treposition: function(elem) {\n\t\t// reposition our floating div, optionally to new container\n\t\t// warning: container CANNOT change size, only position\n\t\tif (elem) {\n\t\t\tthis.domElement = ZeroClipboard.$(elem);\n\t\t\tif (!this.domElement) this.hide();\n\t\t}\n\n\t\tconsole.debug( this.domElement, this.div );\n\t\t\n\t\tif (this.domElement && this.div) {\n\t\t\tvar box = ZeroClipboard.getDOMObjectPosition(this.domElement);\n\t\t\tconsole.debug( box );\n\t\t\tvar style = this.div.style;\n\t\t\tstyle.left = '' + box.left + 'px';\n\t\t\tstyle.top = '' + box.top + 'px';\n\t\t}\n\t},\n\t\n\tsetText: function(newText) {\n\t\t// set text to be copied to clipboard\n\t\tthis.clipText = newText;\n\t\tif (this.ready) this.movie.setText(newText);\n\t},\n\t\n\taddEventListener: function(eventName, func) {\n\t\t// add user event listener for event\n\t\t// event types: load, queueStart, fileStart, fileComplete, queueComplete, progress, error, cancel\n\t\teventName = eventName.toString().toLowerCase().replace(/^on/, '');\n\t\tif (!this.handlers[eventName]) this.handlers[eventName] = [];\n\t\tthis.handlers[eventName].push(func);\n\t},\n\t\n\tsetHandCursor: function(enabled) {\n\t\t// enable hand cursor (true), or default arrow cursor (false)\n\t\tthis.handCursorEnabled = enabled;\n\t\tif (this.ready) this.movie.setHandCursor(enabled);\n\t},\n\t\n\tsetCSSEffects: function(enabled) {\n\t\t// enable or disable CSS effects on DOM container\n\t\tthis.cssEffects = !!enabled;\n\t},\n\t\n\treceiveEvent: function(eventName, args) {\n\t\t// receive event from flash\n\t\teventName = eventName.toString().toLowerCase().replace(/^on/, '');\n\t\t\t\t\n\t\t// special behavior for certain events\n\t\tswitch (eventName) {\n\t\t\tcase 'load':\n\t\t\t\t// movie claims it is ready, but in IE this isn't always the case...\n\t\t\t\t// bug fix: Cannot extend EMBED DOM elements in Firefox, must use traditional function\n\t\t\t\tthis.movie = document.getElementById(this.movieId);\n\t\t\t\tif (!this.movie) {\n\t\t\t\t\tvar self = this;\n\t\t\t\t\tsetTimeout( function() { self.receiveEvent('load', null); }, 1 );\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// firefox on pc needs a \"kick\" in order to set these in certain cases\n\t\t\t\tif (!this.ready && navigator.userAgent.match(/Firefox/) && navigator.userAgent.match(/Windows/)) {\n\t\t\t\t\tvar self = this;\n\t\t\t\t\tsetTimeout( function() { self.receiveEvent('load', null); }, 100 );\n\t\t\t\t\tthis.ready = true;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tthis.ready = true;\n\t\t\t\tthis.movie.setText( this.clipText );\n\t\t\t\tthis.movie.setHandCursor( this.handCursorEnabled );\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseover':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.addClass('hover');\n\t\t\t\t\tif (this.recoverActive) this.domElement.addClass('active');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseout':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.recoverActive = false;\n\t\t\t\t\tif (this.domElement.hasClass('active')) {\n\t\t\t\t\t\tthis.domElement.removeClass('active');\n\t\t\t\t\t\tthis.recoverActive = true;\n\t\t\t\t\t}\n\t\t\t\t\tthis.domElement.removeClass('hover');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mousedown':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.addClass('active');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseup':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.removeClass('active');\n\t\t\t\t\tthis.recoverActive = false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t} // switch eventName\n\t\t\n\t\tif (this.handlers[eventName]) {\n\t\t\tfor (var idx = 0, len = this.handlers[eventName].length; idx < len; idx++) {\n\t\t\t\tvar func = this.handlers[eventName][idx];\n\t\t\t\n\t\t\t\tif (typeof(func) == 'function') {\n\t\t\t\t\t// actual function reference\n\t\t\t\t\tfunc(this, args);\n\t\t\t\t}\n\t\t\t\telse if ((typeof(func) == 'object') && (func.length == 2)) {\n\t\t\t\t\t// PHP style object + method, i.e. [myObject, 'myMethod']\n\t\t\t\t\tfunc[0][ func[1] ](this, args);\n\t\t\t\t}\n\t\t\t\telse if (typeof(func) == 'string') {\n\t\t\t\t\t// name of function\n\t\t\t\t\twindow[func](this, args);\n\t\t\t\t}\n\t\t\t} // foreach event handler defined\n\t\t} // user defined handler for event\n\t}\n\t\n};\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/chosen.js",
    "content": "// Chosen, a Select Box Enhancer for jQuery and Protoype\n// by Patrick Filler for Harvest, http://getharvest.com\n// \n// Version 0.9.8\n// Full source at https://github.com/harvesthq/chosen\n// Copyright (c) 2011 Harvest http://getharvest.com\n\n// MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md\n// This file is generated by `cake build`, do not edit it by hand.\n(function() {\n  var SelectParser;\n\n  SelectParser = (function() {\n\n    function SelectParser() {\n      this.options_index = 0;\n      this.parsed = [];\n    }\n\n    SelectParser.prototype.add_node = function(child) {\n      if (child.nodeName === \"OPTGROUP\") {\n        return this.add_group(child);\n      } else {\n        return this.add_option(child);\n      }\n    };\n\n    SelectParser.prototype.add_group = function(group) {\n      var group_position, option, _i, _len, _ref, _results;\n      group_position = this.parsed.length;\n      this.parsed.push({\n        array_index: group_position,\n        group: true,\n        label: group.label,\n        children: 0,\n        disabled: group.disabled\n      });\n      _ref = group.childNodes;\n      _results = [];\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        option = _ref[_i];\n        _results.push(this.add_option(option, group_position, group.disabled));\n      }\n      return _results;\n    };\n\n    SelectParser.prototype.add_option = function(option, group_position, group_disabled) {\n      if (option.nodeName === \"OPTION\") {\n        if (option.text !== \"\") {\n          if (group_position != null) this.parsed[group_position].children += 1;\n          this.parsed.push({\n            array_index: this.parsed.length,\n            options_index: this.options_index,\n            value: option.value,\n            text: option.text,\n            html: option.innerHTML,\n            selected: option.selected,\n            disabled: group_disabled === true ? group_disabled : option.disabled,\n            group_array_index: group_position,\n            classes: option.className,\n            style: option.style.cssText\n          });\n        } else {\n          this.parsed.push({\n            array_index: this.parsed.length,\n            options_index: this.options_index,\n            empty: true\n          });\n        }\n        return this.options_index += 1;\n      }\n    };\n\n    return SelectParser;\n\n  })();\n\n  SelectParser.select_to_array = function(select) {\n    var child, parser, _i, _len, _ref;\n    parser = new SelectParser();\n    _ref = select.childNodes;\n    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n      child = _ref[_i];\n      parser.add_node(child);\n    }\n    return parser.parsed;\n  };\n\n  this.SelectParser = SelectParser;\n\n}).call(this);\n\n/*\nChosen source: generate output using 'cake build'\nCopyright (c) 2011 by Harvest\n*/\n\n(function() {\n  var AbstractChosen, root;\n\n  root = this;\n\n  AbstractChosen = (function() {\n\n    function AbstractChosen(form_field, options) {\n      this.form_field = form_field;\n      this.options = options != null ? options : {};\n      this.set_default_values();\n      this.is_multiple = this.form_field.multiple;\n      this.default_text_default = this.is_multiple ? \"Select Some Options\" : \"Select an Option\";\n      this.setup();\n      this.set_up_html();\n      this.register_observers();\n      this.finish_setup();\n    }\n\n    AbstractChosen.prototype.set_default_values = function() {\n      var _this = this;\n      this.click_test_action = function(evt) {\n        return _this.test_active_click(evt);\n      };\n      this.activate_action = function(evt) {\n        return _this.activate_field(evt);\n      };\n      this.active_field = false;\n      this.mouse_on_container = false;\n      this.results_showing = false;\n      this.result_highlighted = null;\n      this.result_single_selected = null;\n      this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === \"\" ? this.options.allow_single_deselect : false;\n      this.disable_search_threshold = this.options.disable_search_threshold || 0;\n      this.search_contains = this.options.search_contains || false;\n      this.choices = 0;\n      return this.results_none_found = this.options.no_results_text || \"No results match\";\n    };\n\n    AbstractChosen.prototype.mouse_enter = function() {\n      return this.mouse_on_container = true;\n    };\n\n    AbstractChosen.prototype.mouse_leave = function() {\n      return this.mouse_on_container = false;\n    };\n\n    AbstractChosen.prototype.input_focus = function(evt) {\n      var _this = this;\n      if (!this.active_field) {\n        return setTimeout((function() {\n          return _this.container_mousedown();\n        }), 50);\n      }\n    };\n\n    AbstractChosen.prototype.input_blur = function(evt) {\n      var _this = this;\n      if (!this.mouse_on_container) {\n        this.active_field = false;\n        return setTimeout((function() {\n          return _this.blur_test();\n        }), 100);\n      }\n    };\n\n    AbstractChosen.prototype.result_add_option = function(option) {\n      var classes, style;\n      if (!option.disabled) {\n        option.dom_id = this.container_id + \"_o_\" + option.array_index;\n        classes = option.selected && this.is_multiple ? [] : [\"active-result\"];\n        if (option.selected) classes.push(\"result-selected\");\n        if (option.group_array_index != null) classes.push(\"group-option\");\n        if (option.classes !== \"\") classes.push(option.classes);\n        style = option.style.cssText !== \"\" ? \" style=\\\"\" + option.style + \"\\\"\" : \"\";\n        return '<li id=\"' + option.dom_id + '\" class=\"' + classes.join(' ') + '\"' + style + '>' + option.html + '</li>';\n      } else {\n        return \"\";\n      }\n    };\n\n    AbstractChosen.prototype.results_update_field = function() {\n      this.result_clear_highlight();\n      this.result_single_selected = null;\n      return this.results_build();\n    };\n\n    AbstractChosen.prototype.results_toggle = function() {\n      if (this.results_showing) {\n        return this.results_hide();\n      } else {\n        return this.results_show();\n      }\n    };\n\n    AbstractChosen.prototype.results_search = function(evt) {\n      if (this.results_showing) {\n        return this.winnow_results();\n      } else {\n        return this.results_show();\n      }\n    };\n\n    AbstractChosen.prototype.keyup_checker = function(evt) {\n      var stroke, _ref;\n      stroke = (_ref = evt.which) != null ? _ref : evt.keyCode;\n      this.search_field_scale();\n      switch (stroke) {\n        case 8:\n          if (this.is_multiple && this.backstroke_length < 1 && this.choices > 0) {\n            return this.keydown_backstroke();\n          } else if (!this.pending_backstroke) {\n            this.result_clear_highlight();\n            return this.results_search();\n          }\n          break;\n        case 13:\n          evt.preventDefault();\n          if (this.results_showing) return this.result_select(evt);\n          break;\n        case 27:\n          if (this.results_showing) this.results_hide();\n          return true;\n        case 9:\n        case 38:\n        case 40:\n        case 16:\n        case 91:\n        case 17:\n          break;\n        default:\n          return this.results_search();\n      }\n    };\n\n    AbstractChosen.prototype.generate_field_id = function() {\n      var new_id;\n      new_id = this.generate_random_id();\n      this.form_field.id = new_id;\n      return new_id;\n    };\n\n    AbstractChosen.prototype.generate_random_char = function() {\n      var chars, newchar, rand;\n      chars = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZ\";\n      rand = Math.floor(Math.random() * chars.length);\n      return newchar = chars.substring(rand, rand + 1);\n    };\n\n    return AbstractChosen;\n\n  })();\n\n  root.AbstractChosen = AbstractChosen;\n\n}).call(this);\n\n/*\nChosen source: generate output using 'cake build'\nCopyright (c) 2011 by Harvest\n*/\n\n(function() {\n  var $, Chosen, get_side_border_padding, root,\n    __hasProp = Object.prototype.hasOwnProperty,\n    __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor; child.__super__ = parent.prototype; return child; };\n\n  root = this;\n\n  $ = jQuery;\n\n  $.fn.extend({\n    chosen: function(options) {\n      if ($.browser.msie && ($.browser.version === \"6.0\" || $.browser.version === \"7.0\")) {\n        return this;\n      }\n      return $(this).each(function(input_field) {\n        if (!($(this)).hasClass(\"chzn-done\")) return new Chosen(this, options);\n      });\n    }\n  });\n\n  Chosen = (function(_super) {\n\n    __extends(Chosen, _super);\n\n    function Chosen() {\n      Chosen.__super__.constructor.apply(this, arguments);\n    }\n\n    Chosen.prototype.setup = function() {\n      this.form_field_jq = $(this.form_field);\n      return this.is_rtl = this.form_field_jq.hasClass(\"chzn-rtl\");\n    };\n\n    Chosen.prototype.finish_setup = function() {\n      return this.form_field_jq.addClass(\"chzn-done\");\n    };\n\n    Chosen.prototype.set_up_html = function() {\n      var container_div, dd_top, dd_width, sf_width;\n      this.container_id = this.form_field.id.length ? this.form_field.id.replace(/(:|\\.)/g, '_') : this.generate_field_id();\n      this.container_id += \"_chzn\";\n      this.f_width = this.form_field_jq.outerWidth();\n      this.default_text = this.form_field_jq.data('placeholder') ? this.form_field_jq.data('placeholder') : this.default_text_default;\n      container_div = $(\"<div />\", {\n        id: this.container_id,\n        \"class\": \"chzn-container\" + (this.is_rtl ? ' chzn-rtl' : ''),\n        style: 'width: ' + this.f_width + 'px;'\n      });\n      if (this.is_multiple) {\n        container_div.html('<ul class=\"chzn-choices\"><li class=\"search-field\"><input type=\"text\" value=\"' + this.default_text + '\" class=\"default\" autocomplete=\"off\" style=\"width:25px;\" /></li></ul><div class=\"chzn-drop\" style=\"left:-9000px;\"><ul class=\"chzn-results\"></ul></div>');\n      } else {\n        container_div.html('<a href=\"javascript:void(0)\" class=\"chzn-single chzn-default\"><span>' + this.default_text + '</span><div><b></b></div></a><div class=\"chzn-drop\" style=\"left:-9000px;\"><div class=\"chzn-search\"><input type=\"search\" autocomplete=\"off\" /></div><ul class=\"chzn-results\"></ul></div>');\n      }\n      this.form_field_jq.hide().after(container_div);\n      this.container = $('#' + this.container_id);\n      this.container.addClass(\"chzn-container-\" + (this.is_multiple ? \"multi\" : \"single\"));\n      this.dropdown = this.container.find('div.chzn-drop').first();\n      dd_top = this.container.height();\n      dd_width = this.f_width - get_side_border_padding(this.dropdown);\n      this.dropdown.css({\n        \"width\": dd_width + \"px\",\n        \"top\": dd_top + \"px\"\n      });\n      this.search_field = this.container.find('input').first();\n      this.search_results = this.container.find('ul.chzn-results').first();\n      this.search_field_scale();\n      this.search_no_results = this.container.find('li.no-results').first();\n      if (this.is_multiple) {\n        this.search_choices = this.container.find('ul.chzn-choices').first();\n        this.search_container = this.container.find('li.search-field').first();\n      } else {\n        this.search_container = this.container.find('div.chzn-search').first();\n        this.selected_item = this.container.find('.chzn-single').first();\n        sf_width = dd_width - get_side_border_padding(this.search_container) - get_side_border_padding(this.search_field);\n        sf_width = dd_width - get_side_border_padding(this.search_container);\n        this.search_field.css({\n          \"width\": sf_width + \"px\"\n        });\n      }\n      this.results_build();\n      this.set_tab_index();\n      return this.form_field_jq.trigger(\"liszt:ready\", {\n        chosen: this\n      });\n    };\n\n    Chosen.prototype.register_observers = function() {\n      var _this = this;\n      this.container.mousedown(function(evt) {\n        return _this.container_mousedown(evt);\n      });\n      this.container.mouseup(function(evt) {\n        return _this.container_mouseup(evt);\n      });\n      this.container.mouseenter(function(evt) {\n        return _this.mouse_enter(evt);\n      });\n      this.container.mouseleave(function(evt) {\n        return _this.mouse_leave(evt);\n      });\n      this.search_results.mouseup(function(evt) {\n        return _this.search_results_mouseup(evt);\n      });\n      this.search_results.mouseover(function(evt) {\n        return _this.search_results_mouseover(evt);\n      });\n      this.search_results.mouseout(function(evt) {\n        return _this.search_results_mouseout(evt);\n      });\n      this.form_field_jq.bind(\"liszt:updated\", function(evt) {\n        return _this.results_update_field(evt);\n      });\n      this.search_field.blur(function(evt) {\n        return _this.input_blur(evt);\n      });\n      this.search_field.keyup(function(evt) {\n        return _this.keyup_checker(evt);\n      });\n      this.search_field.keydown(function(evt) {\n        return _this.keydown_checker(evt);\n      });\n      if (this.is_multiple) {\n        this.search_choices.click(function(evt) {\n          return _this.choices_click(evt);\n        });\n        return this.search_field.focus(function(evt) {\n          return _this.input_focus(evt);\n        });\n      } else {\n        return this.container.click(function(evt) {\n          return evt.preventDefault();\n        });\n      }\n    };\n\n    Chosen.prototype.search_field_disabled = function() {\n      this.is_disabled = this.form_field_jq[0].disabled;\n      if (this.is_disabled) {\n        this.container.addClass('chzn-disabled');\n        this.search_field[0].disabled = true;\n        if (!this.is_multiple) {\n          this.selected_item.unbind(\"focus\", this.activate_action);\n        }\n        return this.close_field();\n      } else {\n        this.container.removeClass('chzn-disabled');\n        this.search_field[0].disabled = false;\n        if (!this.is_multiple) {\n          return this.selected_item.bind(\"focus\", this.activate_action);\n        }\n      }\n    };\n\n    Chosen.prototype.container_mousedown = function(evt) {\n      var target_closelink;\n      if (!this.is_disabled) {\n        target_closelink = evt != null ? ($(evt.target)).hasClass(\"search-choice-close\") : false;\n        if (evt && evt.type === \"mousedown\" && !this.results_showing) {\n          evt.stopPropagation();\n        }\n        if (!this.pending_destroy_click && !target_closelink) {\n          if (!this.active_field) {\n            if (this.is_multiple) this.search_field.val(\"\");\n            $(document).click(this.click_test_action);\n            this.results_show();\n          } else if (!this.is_multiple && evt && (($(evt.target)[0] === this.selected_item[0]) || $(evt.target).parents(\"a.chzn-single\").length)) {\n            evt.preventDefault();\n            this.results_toggle();\n          }\n          return this.activate_field();\n        } else {\n          return this.pending_destroy_click = false;\n        }\n      }\n    };\n\n    Chosen.prototype.container_mouseup = function(evt) {\n      if (evt.target.nodeName === \"ABBR\") return this.results_reset(evt);\n    };\n\n    Chosen.prototype.blur_test = function(evt) {\n      if (!this.active_field && this.container.hasClass(\"chzn-container-active\")) {\n        return this.close_field();\n      }\n    };\n\n    Chosen.prototype.close_field = function() {\n      $(document).unbind(\"click\", this.click_test_action);\n      if (!this.is_multiple) {\n        this.selected_item.attr(\"tabindex\", this.search_field.attr(\"tabindex\"));\n        this.search_field.attr(\"tabindex\", -1);\n      }\n      this.active_field = false;\n      this.results_hide();\n      this.container.removeClass(\"chzn-container-active\");\n      this.winnow_results_clear();\n      this.clear_backstroke();\n      this.show_search_field_default();\n      return this.search_field_scale();\n    };\n\n    Chosen.prototype.activate_field = function() {\n      if (!this.is_multiple && !this.active_field) {\n        this.search_field.attr(\"tabindex\", this.selected_item.attr(\"tabindex\"));\n        this.selected_item.attr(\"tabindex\", -1);\n      }\n      this.container.addClass(\"chzn-container-active\");\n      this.active_field = true;\n      this.search_field.val(this.search_field.val());\n      return this.search_field.focus();\n    };\n\n    Chosen.prototype.test_active_click = function(evt) {\n      if ($(evt.target).parents('#' + this.container_id).length) {\n        return this.active_field = true;\n      } else {\n        return this.close_field();\n      }\n    };\n\n    Chosen.prototype.results_build = function() {\n      var content, data, _i, _len, _ref;\n      this.parsing = true;\n      this.results_data = root.SelectParser.select_to_array(this.form_field);\n      if (this.is_multiple && this.choices > 0) {\n        this.search_choices.find(\"li.search-choice\").remove();\n        this.choices = 0;\n      } else if (!this.is_multiple) {\n        this.selected_item.find(\"span\").text(this.default_text);\n        if (this.form_field.options.length <= this.disable_search_threshold) {\n          this.container.addClass(\"chzn-container-single-nosearch\");\n        } else {\n          this.container.removeClass(\"chzn-container-single-nosearch\");\n        }\n      }\n      content = '';\n      _ref = this.results_data;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        data = _ref[_i];\n        if (data.group) {\n          content += this.result_add_group(data);\n        } else if (!data.empty) {\n          content += this.result_add_option(data);\n          if (data.selected && this.is_multiple) {\n            this.choice_build(data);\n          } else if (data.selected && !this.is_multiple) {\n            this.selected_item.removeClass(\"chzn-default\").find(\"span\").text(data.text);\n            if (this.allow_single_deselect) this.single_deselect_control_build();\n          }\n        }\n      }\n      this.search_field_disabled();\n      this.show_search_field_default();\n      this.search_field_scale();\n      this.search_results.html(content);\n      return this.parsing = false;\n    };\n\n    Chosen.prototype.result_add_group = function(group) {\n      if (!group.disabled) {\n        group.dom_id = this.container_id + \"_g_\" + group.array_index;\n        return '<li id=\"' + group.dom_id + '\" class=\"group-result\">' + $(\"<div />\").text(group.label).html() + '</li>';\n      } else {\n        return \"\";\n      }\n    };\n\n    Chosen.prototype.result_do_highlight = function(el) {\n      var high_bottom, high_top, maxHeight, visible_bottom, visible_top;\n      if (el.length) {\n        this.result_clear_highlight();\n        this.result_highlight = el;\n        this.result_highlight.addClass(\"highlighted\");\n        maxHeight = parseInt(this.search_results.css(\"maxHeight\"), 10);\n        visible_top = this.search_results.scrollTop();\n        visible_bottom = maxHeight + visible_top;\n        high_top = this.result_highlight.position().top + this.search_results.scrollTop();\n        high_bottom = high_top + this.result_highlight.outerHeight();\n        if (high_bottom >= visible_bottom) {\n          return this.search_results.scrollTop((high_bottom - maxHeight) > 0 ? high_bottom - maxHeight : 0);\n        } else if (high_top < visible_top) {\n          return this.search_results.scrollTop(high_top);\n        }\n      }\n    };\n\n    Chosen.prototype.result_clear_highlight = function() {\n      if (this.result_highlight) this.result_highlight.removeClass(\"highlighted\");\n      return this.result_highlight = null;\n    };\n\n    Chosen.prototype.results_show = function() {\n      var dd_top;\n      if (!this.is_multiple) {\n        this.selected_item.addClass(\"chzn-single-with-drop\");\n        if (this.result_single_selected) {\n          this.result_do_highlight(this.result_single_selected);\n        }\n      }\n      dd_top = this.is_multiple ? this.container.height() : this.container.height() - 1;\n      this.dropdown.css({\n        \"top\": dd_top + \"px\",\n        \"left\": 0\n      });\n      this.results_showing = true;\n      this.search_field.focus();\n      this.search_field.val(this.search_field.val());\n      return this.winnow_results();\n    };\n\n    Chosen.prototype.results_hide = function() {\n      if (!this.is_multiple) {\n        this.selected_item.removeClass(\"chzn-single-with-drop\");\n      }\n      this.result_clear_highlight();\n      this.dropdown.css({\n        \"left\": \"-9000px\"\n      });\n      return this.results_showing = false;\n    };\n\n    Chosen.prototype.set_tab_index = function(el) {\n      var ti;\n      if (this.form_field_jq.attr(\"tabindex\")) {\n        ti = this.form_field_jq.attr(\"tabindex\");\n        this.form_field_jq.attr(\"tabindex\", -1);\n        if (this.is_multiple) {\n          return this.search_field.attr(\"tabindex\", ti);\n        } else {\n          this.selected_item.attr(\"tabindex\", ti);\n          return this.search_field.attr(\"tabindex\", -1);\n        }\n      }\n    };\n\n    Chosen.prototype.show_search_field_default = function() {\n      if (this.is_multiple && this.choices < 1 && !this.active_field) {\n        this.search_field.val(this.default_text);\n        return this.search_field.addClass(\"default\");\n      } else {\n        this.search_field.val(\"\");\n        return this.search_field.removeClass(\"default\");\n      }\n    };\n\n    Chosen.prototype.search_results_mouseup = function(evt) {\n      var target;\n      target = $(evt.target).hasClass(\"active-result\") ? $(evt.target) : $(evt.target).parents(\".active-result\").first();\n      if (target.length) {\n        this.result_highlight = target;\n        return this.result_select(evt);\n      }\n    };\n\n    Chosen.prototype.search_results_mouseover = function(evt) {\n      var target;\n      target = $(evt.target).hasClass(\"active-result\") ? $(evt.target) : $(evt.target).parents(\".active-result\").first();\n      if (target) return this.result_do_highlight(target);\n    };\n\n    Chosen.prototype.search_results_mouseout = function(evt) {\n      if ($(evt.target).hasClass(\"active-result\" || $(evt.target).parents('.active-result').first())) {\n        return this.result_clear_highlight();\n      }\n    };\n\n    Chosen.prototype.choices_click = function(evt) {\n      evt.preventDefault();\n      if (this.active_field && !($(evt.target).hasClass(\"search-choice\" || $(evt.target).parents('.search-choice').first)) && !this.results_showing) {\n        return this.results_show();\n      }\n    };\n\n    Chosen.prototype.choice_build = function(item) {\n      var choice_id, link,\n        _this = this;\n      choice_id = this.container_id + \"_c_\" + item.array_index;\n      this.choices += 1;\n      this.search_container.before('<li class=\"search-choice\" id=\"' + choice_id + '\"><span>' + item.html + '</span><a href=\"javascript:void(0)\" class=\"search-choice-close\" rel=\"' + item.array_index + '\"></a></li>');\n      link = $('#' + choice_id).find(\"a\").first();\n      return link.click(function(evt) {\n        return _this.choice_destroy_link_click(evt);\n      });\n    };\n\n    Chosen.prototype.choice_destroy_link_click = function(evt) {\n      evt.preventDefault();\n      if (!this.is_disabled) {\n        this.pending_destroy_click = true;\n        return this.choice_destroy($(evt.target));\n      } else {\n        return evt.stopPropagation;\n      }\n    };\n\n    Chosen.prototype.choice_destroy = function(link) {\n      this.choices -= 1;\n      this.show_search_field_default();\n      if (this.is_multiple && this.choices > 0 && this.search_field.val().length < 1) {\n        this.results_hide();\n      }\n      this.result_deselect(link.attr(\"rel\"));\n      return link.parents('li').first().remove();\n    };\n\n    Chosen.prototype.results_reset = function(evt) {\n      this.form_field.options[0].selected = true;\n      this.selected_item.find(\"span\").text(this.default_text);\n      if (!this.is_multiple) this.selected_item.addClass(\"chzn-default\");\n      this.show_search_field_default();\n      $(evt.target).remove();\n      this.form_field_jq.trigger(\"change\");\n      if (this.active_field) return this.results_hide();\n    };\n\n    Chosen.prototype.result_select = function(evt) {\n      var high, high_id, item, position;\n      if (this.result_highlight) {\n        high = this.result_highlight;\n        high_id = high.attr(\"id\");\n        this.result_clear_highlight();\n        if (this.is_multiple) {\n          this.result_deactivate(high);\n        } else {\n          this.search_results.find(\".result-selected\").removeClass(\"result-selected\");\n          this.result_single_selected = high;\n          this.selected_item.removeClass(\"chzn-default\");\n        }\n        high.addClass(\"result-selected\");\n        position = high_id.substr(high_id.lastIndexOf(\"_\") + 1);\n        item = this.results_data[position];\n        item.selected = true;\n        this.form_field.options[item.options_index].selected = true;\n        if (this.is_multiple) {\n          this.choice_build(item);\n        } else {\n          this.selected_item.find(\"span\").first().text(item.text);\n          if (this.allow_single_deselect) this.single_deselect_control_build();\n        }\n        if (!(evt.metaKey && this.is_multiple)) this.results_hide();\n        this.search_field.val(\"\");\n        this.form_field_jq.trigger(\"change\");\n        return this.search_field_scale();\n      }\n    };\n\n    Chosen.prototype.result_activate = function(el) {\n      return el.addClass(\"active-result\");\n    };\n\n    Chosen.prototype.result_deactivate = function(el) {\n      return el.removeClass(\"active-result\");\n    };\n\n    Chosen.prototype.result_deselect = function(pos) {\n      var result, result_data;\n      result_data = this.results_data[pos];\n      result_data.selected = false;\n      this.form_field.options[result_data.options_index].selected = false;\n      result = $(\"#\" + this.container_id + \"_o_\" + pos);\n      result.removeClass(\"result-selected\").addClass(\"active-result\").show();\n      this.result_clear_highlight();\n      this.winnow_results();\n      this.form_field_jq.trigger(\"change\");\n      return this.search_field_scale();\n    };\n\n    Chosen.prototype.single_deselect_control_build = function() {\n      if (this.allow_single_deselect && this.selected_item.find(\"abbr\").length < 1) {\n        return this.selected_item.find(\"span\").first().after(\"<abbr class=\\\"search-choice-close\\\"></abbr>\");\n      }\n    };\n\n    Chosen.prototype.winnow_results = function() {\n      var found, option, part, parts, regex, regexAnchor, result, result_id, results, searchText, startpos, text, zregex, _i, _j, _len, _len2, _ref;\n      this.no_results_clear();\n      results = 0;\n      searchText = this.search_field.val() === this.default_text ? \"\" : $('<div/>').text($.trim(this.search_field.val())).html();\n      regexAnchor = this.search_contains ? \"\" : \"^\";\n      regex = new RegExp(regexAnchor + searchText.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, \"\\\\$&\"), 'i');\n      zregex = new RegExp(searchText.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, \"\\\\$&\"), 'i');\n      _ref = this.results_data;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        option = _ref[_i];\n        if (!option.disabled && !option.empty) {\n          if (option.group) {\n            $('#' + option.dom_id).css('display', 'none');\n          } else if (!(this.is_multiple && option.selected)) {\n            found = false;\n            result_id = option.dom_id;\n            result = $(\"#\" + result_id);\n            if (regex.test(option.html)) {\n              found = true;\n              results += 1;\n            } else if (option.html.indexOf(\" \") >= 0 || option.html.indexOf(\"[\") === 0) {\n              parts = option.html.replace(/\\[|\\]/g, \"\").split(\" \");\n              if (parts.length) {\n                for (_j = 0, _len2 = parts.length; _j < _len2; _j++) {\n                  part = parts[_j];\n                  if (regex.test(part)) {\n                    found = true;\n                    results += 1;\n                  }\n                }\n              }\n            }\n            if (found) {\n              if (searchText.length) {\n                startpos = option.html.search(zregex);\n                text = option.html.substr(0, startpos + searchText.length) + '</em>' + option.html.substr(startpos + searchText.length);\n                text = text.substr(0, startpos) + '<em>' + text.substr(startpos);\n              } else {\n                text = option.html;\n              }\n              result.html(text);\n              this.result_activate(result);\n              if (option.group_array_index != null) {\n                $(\"#\" + this.results_data[option.group_array_index].dom_id).css('display', 'list-item');\n              }\n            } else {\n              if (this.result_highlight && result_id === this.result_highlight.attr('id')) {\n                this.result_clear_highlight();\n              }\n              this.result_deactivate(result);\n            }\n          }\n        }\n      }\n      if (results < 1 && searchText.length) {\n        return this.no_results(searchText);\n      } else {\n        return this.winnow_results_set_highlight();\n      }\n    };\n\n    Chosen.prototype.winnow_results_clear = function() {\n      var li, lis, _i, _len, _results;\n      this.search_field.val(\"\");\n      lis = this.search_results.find(\"li\");\n      _results = [];\n      for (_i = 0, _len = lis.length; _i < _len; _i++) {\n        li = lis[_i];\n        li = $(li);\n        if (li.hasClass(\"group-result\")) {\n          _results.push(li.css('display', 'auto'));\n        } else if (!this.is_multiple || !li.hasClass(\"result-selected\")) {\n          _results.push(this.result_activate(li));\n        } else {\n          _results.push(void 0);\n        }\n      }\n      return _results;\n    };\n\n    Chosen.prototype.winnow_results_set_highlight = function() {\n      var do_high, selected_results;\n      if (!this.result_highlight) {\n        selected_results = !this.is_multiple ? this.search_results.find(\".result-selected.active-result\") : [];\n        do_high = selected_results.length ? selected_results.first() : this.search_results.find(\".active-result\").first();\n        if (do_high != null) return this.result_do_highlight(do_high);\n      }\n    };\n\n    Chosen.prototype.no_results = function(terms) {\n      var no_results_html;\n      no_results_html = $('<li class=\"no-results\">' + this.results_none_found + ' \"<span></span>\"</li>');\n      no_results_html.find(\"span\").first().html(terms);\n      return this.search_results.append(no_results_html);\n    };\n\n    Chosen.prototype.no_results_clear = function() {\n      return this.search_results.find(\".no-results\").remove();\n    };\n\n    Chosen.prototype.keydown_arrow = function() {\n      var first_active, next_sib;\n      if (!this.result_highlight) {\n        first_active = this.search_results.find(\"li.active-result\").first();\n        if (first_active) this.result_do_highlight($(first_active));\n      } else if (this.results_showing) {\n        next_sib = this.result_highlight.nextAll(\"li.active-result\").first();\n        if (next_sib) this.result_do_highlight(next_sib);\n      }\n      if (!this.results_showing) return this.results_show();\n    };\n\n    Chosen.prototype.keyup_arrow = function() {\n      var prev_sibs;\n      if (!this.results_showing && !this.is_multiple) {\n        return this.results_show();\n      } else if (this.result_highlight) {\n        prev_sibs = this.result_highlight.prevAll(\"li.active-result\");\n        if (prev_sibs.length) {\n          return this.result_do_highlight(prev_sibs.first());\n        } else {\n          if (this.choices > 0) this.results_hide();\n          return this.result_clear_highlight();\n        }\n      }\n    };\n\n    Chosen.prototype.keydown_backstroke = function() {\n      if (this.pending_backstroke) {\n        this.choice_destroy(this.pending_backstroke.find(\"a\").first());\n        return this.clear_backstroke();\n      } else {\n        this.pending_backstroke = this.search_container.siblings(\"li.search-choice\").last();\n        return this.pending_backstroke.addClass(\"search-choice-focus\");\n      }\n    };\n\n    Chosen.prototype.clear_backstroke = function() {\n      if (this.pending_backstroke) {\n        this.pending_backstroke.removeClass(\"search-choice-focus\");\n      }\n      return this.pending_backstroke = null;\n    };\n\n    Chosen.prototype.keydown_checker = function(evt) {\n      var stroke, _ref;\n      stroke = (_ref = evt.which) != null ? _ref : evt.keyCode;\n      this.search_field_scale();\n      if (stroke !== 8 && this.pending_backstroke) this.clear_backstroke();\n      switch (stroke) {\n        case 8:\n          this.backstroke_length = this.search_field.val().length;\n          break;\n        case 9:\n          if (this.results_showing && !this.is_multiple) this.result_select(evt);\n          this.mouse_on_container = false;\n          break;\n        case 13:\n          evt.preventDefault();\n          break;\n        case 38:\n          evt.preventDefault();\n          this.keyup_arrow();\n          break;\n        case 40:\n          this.keydown_arrow();\n          break;\n      }\n    };\n\n    Chosen.prototype.search_field_scale = function() {\n      var dd_top, div, h, style, style_block, styles, w, _i, _len;\n      if (this.is_multiple) {\n        h = 0;\n        w = 0;\n        style_block = \"position:absolute; left: -1000px; top: -1000px; display:none;\";\n        styles = ['font-size', 'font-style', 'font-weight', 'font-family', 'line-height', 'text-transform', 'letter-spacing'];\n        for (_i = 0, _len = styles.length; _i < _len; _i++) {\n          style = styles[_i];\n          style_block += style + \":\" + this.search_field.css(style) + \";\";\n        }\n        div = $('<div />', {\n          'style': style_block\n        });\n        div.text(this.search_field.val());\n        $('body').append(div);\n        w = div.width() + 25;\n        div.remove();\n        if (w > this.f_width - 10) w = this.f_width - 10;\n        this.search_field.css({\n          'width': w + 'px'\n        });\n        dd_top = this.container.height();\n        return this.dropdown.css({\n          \"top\": dd_top + \"px\"\n        });\n      }\n    };\n\n    Chosen.prototype.generate_random_id = function() {\n      var string;\n      string = \"sel\" + this.generate_random_char() + this.generate_random_char() + this.generate_random_char();\n      while ($(\"#\" + string).length > 0) {\n        string += this.generate_random_char();\n      }\n      return string;\n    };\n\n    return Chosen;\n\n  })(AbstractChosen);\n\n  get_side_border_padding = function(elmt) {\n    var side_border_padding;\n    return side_border_padding = elmt.outerWidth() - elmt.width();\n  };\n\n  root.get_side_border_padding = get_side_border_padding;\n\n}).call(this);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/console.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nwindow.console = window.console || {};\n\nvar names = [\"log\", \"debug\", \"info\", \"warn\", \"error\",\n    \"assert\", \"dir\", \"dirxml\", \"group\", \"groupEnd\", \"time\",\n    \"timeEnd\", \"count\", \"trace\", \"profile\", \"profileEnd\"];\n\nvar i = 0;\nvar l = names.length;\nfor( i = 0; i < l; i++ )\n{\n  window.console[names[i]] = window.console[names[i]] || function() {};\n}\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/d3.js",
    "content": "(function(){if (!Date.now) Date.now = function() {\n  return +new Date;\n};\ntry {\n  document.createElement(\"div\").style.setProperty(\"opacity\", 0, \"\");\n} catch (error) {\n  var d3_style_prototype = CSSStyleDeclaration.prototype,\n      d3_style_setProperty = d3_style_prototype.setProperty;\n  d3_style_prototype.setProperty = function(name, value, priority) {\n    d3_style_setProperty.call(this, name, value + \"\", priority);\n  };\n}\nd3 = {version: \"2.8.1\"}; // semver\nfunction d3_class(ctor, properties) {\n  try {\n    for (var key in properties) {\n      Object.defineProperty(ctor.prototype, key, {\n        value: properties[key],\n        enumerable: false\n      });\n    }\n  } catch (e) {\n    ctor.prototype = properties;\n  }\n}\nvar d3_array = d3_arraySlice; // conversion for NodeLists\n\nfunction d3_arrayCopy(pseudoarray) {\n  var i = -1, n = pseudoarray.length, array = [];\n  while (++i < n) array.push(pseudoarray[i]);\n  return array;\n}\n\nfunction d3_arraySlice(pseudoarray) {\n  return Array.prototype.slice.call(pseudoarray);\n}\n\ntry {\n  d3_array(document.documentElement.childNodes)[0].nodeType;\n} catch(e) {\n  d3_array = d3_arrayCopy;\n}\n\nvar d3_arraySubclass = [].__proto__?\n\n// Until ECMAScript supports array subclassing, prototype injection works well.\nfunction(array, prototype) {\n  array.__proto__ = prototype;\n}:\n\n// And if your browser doesn't support __proto__, we'll use direct extension.\nfunction(array, prototype) {\n  for (var property in prototype) array[property] = prototype[property];\n};\nd3.map = function(object) {\n  var map = new d3_Map;\n  for (var key in object) map.set(key, object[key]);\n  return map;\n};\n\nfunction d3_Map() {}\n\nd3_class(d3_Map, {\n  has: function(key) {\n    return d3_map_prefix + key in this;\n  },\n  get: function(key) {\n    return this[d3_map_prefix + key];\n  },\n  set: function(key, value) {\n    return this[d3_map_prefix + key] = value;\n  },\n  remove: function(key) {\n    key = d3_map_prefix + key;\n    return key in this && delete this[key];\n  },\n  keys: function() {\n    var keys = [];\n    this.forEach(function(key) { keys.push(key); });\n    return keys;\n  },\n  values: function() {\n    var values = [];\n    this.forEach(function(key, value) { values.push(value); });\n    return values;\n  },\n  entries: function() {\n    var entries = [];\n    this.forEach(function(key, value) { entries.push({key: key, value: value}); });\n    return entries;\n  },\n  forEach: function(f) {\n    for (var key in this) {\n      if (key.charCodeAt(0) === d3_map_prefixCode) {\n        f.call(this, key.substring(1), this[key]);\n      }\n    }\n  }\n});\n\nvar d3_map_prefix = \"\\0\", // prevent collision with built-ins\n    d3_map_prefixCode = d3_map_prefix.charCodeAt(0);\nfunction d3_this() {\n  return this;\n}\nd3.functor = function(v) {\n  return typeof v === \"function\" ? v : function() { return v; };\n};\n// Copies a variable number of methods from source to target.\nd3.rebind = function(target, source) {\n  var i = 1, n = arguments.length, method;\n  while (++i < n) target[method = arguments[i]] = d3_rebind(target, source, source[method]);\n  return target;\n};\n\n// Method is assumed to be a standard D3 getter-setter:\n// If passed with no arguments, gets the value.\n// If passed with arguments, sets the value and returns the target.\nfunction d3_rebind(target, source, method) {\n  return function() {\n    var value = method.apply(source, arguments);\n    return arguments.length ? target : value;\n  };\n}\nd3.ascending = function(a, b) {\n  return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;\n};\nd3.descending = function(a, b) {\n  return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;\n};\nd3.mean = function(array, f) {\n  var n = array.length,\n      a,\n      m = 0,\n      i = -1,\n      j = 0;\n  if (arguments.length === 1) {\n    while (++i < n) if (d3_number(a = array[i])) m += (a - m) / ++j;\n  } else {\n    while (++i < n) if (d3_number(a = f.call(array, array[i], i))) m += (a - m) / ++j;\n  }\n  return j ? m : undefined;\n};\nd3.median = function(array, f) {\n  if (arguments.length > 1) array = array.map(f);\n  array = array.filter(d3_number);\n  return array.length ? d3.quantile(array.sort(d3.ascending), .5) : undefined;\n};\nd3.min = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = array[i]) != null && a > b) a = b;\n  } else {\n    while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null && a > b) a = b;\n  }\n  return a;\n};\nd3.max = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = array[i]) != null && b > a) a = b;\n  } else {\n    while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null && b > a) a = b;\n  }\n  return a;\n};\nd3.extent = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b,\n      c;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = c = array[i]) == null || a != a)) a = c = undefined;\n    while (++i < n) if ((b = array[i]) != null) {\n      if (a > b) a = b;\n      if (c < b) c = b;\n    }\n  } else {\n    while (++i < n && ((a = c = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null) {\n      if (a > b) a = b;\n      if (c < b) c = b;\n    }\n  }\n  return [a, c];\n};\nd3.random = {\n  normal: function(mean, deviation) {\n    if (arguments.length < 2) deviation = 1;\n    if (arguments.length < 1) mean = 0;\n    return function() {\n      var x, y, r;\n      do {\n        x = Math.random() * 2 - 1;\n        y = Math.random() * 2 - 1;\n        r = x * x + y * y;\n      } while (!r || r > 1);\n      return mean + deviation * x * Math.sqrt(-2 * Math.log(r) / r);\n    };\n  }\n};\nfunction d3_number(x) {\n  return x != null && !isNaN(x);\n}\nd3.sum = function(array, f) {\n  var s = 0,\n      n = array.length,\n      a,\n      i = -1;\n\n  if (arguments.length === 1) {\n    while (++i < n) if (!isNaN(a = +array[i])) s += a;\n  } else {\n    while (++i < n) if (!isNaN(a = +f.call(array, array[i], i))) s += a;\n  }\n\n  return s;\n};\n// R-7 per <http://en.wikipedia.org/wiki/Quantile>\nd3.quantile = function(values, p) {\n  var H = (values.length - 1) * p + 1,\n      h = Math.floor(H),\n      v = values[h - 1],\n      e = H - h;\n  return e ? v + e * (values[h] - v) : v;\n};\nd3.transpose = function(matrix) {\n  return d3.zip.apply(d3, matrix);\n};\nd3.zip = function() {\n  if (!(n = arguments.length)) return [];\n  for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m;) {\n    for (var j = -1, n, zip = zips[i] = new Array(n); ++j < n;) {\n      zip[j] = arguments[j][i];\n    }\n  }\n  return zips;\n};\n\nfunction d3_zipLength(d) {\n  return d.length;\n}\nd3.bisector = function(f) {\n  return {\n    left: function(a, x, lo, hi) {\n      if (arguments.length < 3) lo = 0;\n      if (arguments.length < 4) hi = a.length;\n      while (lo < hi) {\n        var mid = lo + hi >> 1;\n        if (f.call(a, a[mid], mid) < x) lo = mid + 1;\n        else hi = mid;\n      }\n      return lo;\n    },\n    right: function(a, x, lo, hi) {\n      if (arguments.length < 3) lo = 0;\n      if (arguments.length < 4) hi = a.length;\n      while (lo < hi) {\n        var mid = lo + hi >> 1;\n        if (x < f.call(a, a[mid], mid)) hi = mid;\n        else lo = mid + 1;\n      }\n      return lo;\n    }\n  };\n};\n\nvar d3_bisector = d3.bisector(function(d) { return d; });\nd3.bisectLeft = d3_bisector.left;\nd3.bisect = d3.bisectRight = d3_bisector.right;\nd3.first = function(array, f) {\n  var i = 0,\n      n = array.length,\n      a = array[0],\n      b;\n  if (arguments.length === 1) f = d3.ascending;\n  while (++i < n) {\n    if (f.call(array, a, b = array[i]) > 0) {\n      a = b;\n    }\n  }\n  return a;\n};\nd3.last = function(array, f) {\n  var i = 0,\n      n = array.length,\n      a = array[0],\n      b;\n  if (arguments.length === 1) f = d3.ascending;\n  while (++i < n) {\n    if (f.call(array, a, b = array[i]) <= 0) {\n      a = b;\n    }\n  }\n  return a;\n};\nd3.nest = function() {\n  var nest = {},\n      keys = [],\n      sortKeys = [],\n      sortValues,\n      rollup;\n\n  function map(array, depth) {\n    if (depth >= keys.length) return rollup\n        ? rollup.call(nest, array) : (sortValues\n        ? array.sort(sortValues)\n        : array);\n\n    var i = -1,\n        n = array.length,\n        key = keys[depth++],\n        keyValue,\n        object,\n        valuesByKey = new d3_Map,\n        values,\n        o = {};\n\n    while (++i < n) {\n      if (values = valuesByKey.get(keyValue = key(object = array[i]))) {\n        values.push(object);\n      } else {\n        valuesByKey.set(keyValue, [object]);\n      }\n    }\n\n    valuesByKey.forEach(function(keyValue) {\n      o[keyValue] = map(valuesByKey.get(keyValue), depth);\n    });\n\n    return o;\n  }\n\n  function entries(map, depth) {\n    if (depth >= keys.length) return map;\n\n    var a = [],\n        sortKey = sortKeys[depth++],\n        key;\n\n    for (key in map) {\n      a.push({key: key, values: entries(map[key], depth)});\n    }\n\n    if (sortKey) a.sort(function(a, b) {\n      return sortKey(a.key, b.key);\n    });\n\n    return a;\n  }\n\n  nest.map = function(array) {\n    return map(array, 0);\n  };\n\n  nest.entries = function(array) {\n    return entries(map(array, 0), 0);\n  };\n\n  nest.key = function(d) {\n    keys.push(d);\n    return nest;\n  };\n\n  // Specifies the order for the most-recently specified key.\n  // Note: only applies to entries. Map keys are unordered!\n  nest.sortKeys = function(order) {\n    sortKeys[keys.length - 1] = order;\n    return nest;\n  };\n\n  // Specifies the order for leaf values.\n  // Applies to both maps and entries array.\n  nest.sortValues = function(order) {\n    sortValues = order;\n    return nest;\n  };\n\n  nest.rollup = function(f) {\n    rollup = f;\n    return nest;\n  };\n\n  return nest;\n};\nd3.keys = function(map) {\n  var keys = [];\n  for (var key in map) keys.push(key);\n  return keys;\n};\nd3.values = function(map) {\n  var values = [];\n  for (var key in map) values.push(map[key]);\n  return values;\n};\nd3.entries = function(map) {\n  var entries = [];\n  for (var key in map) entries.push({key: key, value: map[key]});\n  return entries;\n};\nd3.permute = function(array, indexes) {\n  var permutes = [],\n      i = -1,\n      n = indexes.length;\n  while (++i < n) permutes[i] = array[indexes[i]];\n  return permutes;\n};\nd3.merge = function(arrays) {\n  return Array.prototype.concat.apply([], arrays);\n};\nd3.split = function(array, f) {\n  var arrays = [],\n      values = [],\n      value,\n      i = -1,\n      n = array.length;\n  if (arguments.length < 2) f = d3_splitter;\n  while (++i < n) {\n    if (f.call(values, value = array[i], i)) {\n      values = [];\n    } else {\n      if (!values.length) arrays.push(values);\n      values.push(value);\n    }\n  }\n  return arrays;\n};\n\nfunction d3_splitter(d) {\n  return d == null;\n}\nfunction d3_collapse(s) {\n  return s.replace(/(^\\s+)|(\\s+$)/g, \"\").replace(/\\s+/g, \" \");\n}\nd3.range = function(start, stop, step) {\n  if (arguments.length < 3) {\n    step = 1;\n    if (arguments.length < 2) {\n      stop = start;\n      start = 0;\n    }\n  }\n  if ((stop - start) / step === Infinity) throw new Error(\"infinite range\");\n  var range = [],\n       k = d3_range_integerScale(Math.abs(step)),\n       i = -1,\n       j;\n  start *= k, stop *= k, step *= k;\n  if (step < 0) while ((j = start + step * ++i) > stop) range.push(j / k);\n  else while ((j = start + step * ++i) < stop) range.push(j / k);\n  return range;\n};\n\nfunction d3_range_integerScale(x) {\n  var k = 1;\n  while (x * k % 1) k *= 10;\n  return k;\n}\nd3.requote = function(s) {\n  return s.replace(d3_requote_re, \"\\\\$&\");\n};\n\nvar d3_requote_re = /[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g;\nd3.round = function(x, n) {\n  return n\n      ? Math.round(x * (n = Math.pow(10, n))) / n\n      : Math.round(x);\n};\nd3.xhr = function(url, mime, callback) {\n  var req = new XMLHttpRequest;\n  if (arguments.length < 3) callback = mime, mime = null;\n  else if (mime && req.overrideMimeType) req.overrideMimeType(mime);\n  req.open(\"GET\", url, true);\n  if (mime) req.setRequestHeader(\"Accept\", mime);\n  req.onreadystatechange = function() {\n    if (req.readyState === 4) callback(req.status < 300 ? req : null);\n  };\n  req.send(null);\n};\nd3.text = function(url, mime, callback) {\n  function ready(req) {\n    callback(req && req.responseText);\n  }\n  if (arguments.length < 3) {\n    callback = mime;\n    mime = null;\n  }\n  d3.xhr(url, mime, ready);\n};\nd3.json = function(url, callback) {\n  d3.text(url, \"application/json\", function(text) {\n    callback(text ? JSON.parse(text) : null);\n  });\n};\nd3.html = function(url, callback) {\n  d3.text(url, \"text/html\", function(text) {\n    if (text != null) { // Treat empty string as valid HTML.\n      var range = document.createRange();\n      range.selectNode(document.body);\n      text = range.createContextualFragment(text);\n    }\n    callback(text);\n  });\n};\nd3.xml = function(url, mime, callback) {\n  function ready(req) {\n    callback(req && req.responseXML);\n  }\n  if (arguments.length < 3) {\n    callback = mime;\n    mime = null;\n  }\n  d3.xhr(url, mime, ready);\n};\nvar d3_nsPrefix = {\n  svg: \"http://www.w3.org/2000/svg\",\n  xhtml: \"http://www.w3.org/1999/xhtml\",\n  xlink: \"http://www.w3.org/1999/xlink\",\n  xml: \"http://www.w3.org/XML/1998/namespace\",\n  xmlns: \"http://www.w3.org/2000/xmlns/\"\n};\n\nd3.ns = {\n  prefix: d3_nsPrefix,\n  qualify: function(name) {\n    var i = name.indexOf(\":\"),\n        prefix = name;\n    if (i >= 0) {\n      prefix = name.substring(0, i);\n      name = name.substring(i + 1);\n    }\n    return d3_nsPrefix.hasOwnProperty(prefix)\n        ? {space: d3_nsPrefix[prefix], local: name}\n        : name;\n  }\n};\nd3.dispatch = function() {\n  var dispatch = new d3_dispatch,\n      i = -1,\n      n = arguments.length;\n  while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);\n  return dispatch;\n};\n\nfunction d3_dispatch() {}\n\nd3_dispatch.prototype.on = function(type, listener) {\n  var i = type.indexOf(\".\"),\n      name = \"\";\n\n  // Extract optional namespace, e.g., \"click.foo\"\n  if (i > 0) {\n    name = type.substring(i + 1);\n    type = type.substring(0, i);\n  }\n\n  return arguments.length < 2\n      ? this[type].on(name)\n      : this[type].on(name, listener);\n};\n\nfunction d3_dispatch_event(dispatch) {\n  var listeners = [],\n      listenerByName = new d3_Map;\n\n  function event() {\n    var z = listeners, // defensive reference\n        i = -1,\n        n = z.length,\n        l;\n    while (++i < n) if (l = z[i].on) l.apply(this, arguments);\n    return dispatch;\n  }\n\n  event.on = function(name, listener) {\n    var l = listenerByName.get(name),\n        i;\n\n    // return the current listener, if any\n    if (arguments.length < 2) return l && l.on;\n\n    // remove the old listener, if any (with copy-on-write)\n    if (l) {\n      l.on = null;\n      listeners = listeners.slice(0, i = listeners.indexOf(l)).concat(listeners.slice(i + 1));\n      listenerByName.remove(name);\n    }\n\n    // add the new listener, if any\n    if (listener) listeners.push(listenerByName.set(name, {on: listener}));\n\n    return dispatch;\n  };\n\n  return event;\n}\n// TODO align\nd3.format = function(specifier) {\n  var match = d3_format_re.exec(specifier),\n      fill = match[1] || \" \",\n      sign = match[3] || \"\",\n      zfill = match[5],\n      width = +match[6],\n      comma = match[7],\n      precision = match[8],\n      type = match[9],\n      scale = 1,\n      suffix = \"\",\n      integer = false;\n\n  if (precision) precision = +precision.substring(1);\n\n  if (zfill) {\n    fill = \"0\"; // TODO align = \"=\";\n    if (comma) width -= Math.floor((width - 1) / 4);\n  }\n\n  switch (type) {\n    case \"n\": comma = true; type = \"g\"; break;\n    case \"%\": scale = 100; suffix = \"%\"; type = \"f\"; break;\n    case \"p\": scale = 100; suffix = \"%\"; type = \"r\"; break;\n    case \"d\": integer = true; precision = 0; break;\n    case \"s\": scale = -1; type = \"r\"; break;\n  }\n\n  // If no precision is specified for r, fallback to general notation.\n  if (type == \"r\" && !precision) type = \"g\";\n\n  type = d3_format_types.get(type) || d3_format_typeDefault;\n\n  return function(value) {\n\n    // Return the empty string for floats formatted as ints.\n    if (integer && (value % 1)) return \"\";\n\n    // Convert negative to positive, and record the sign prefix.\n    var negative = (value < 0) && (value = -value) ? \"\\u2212\" : sign;\n\n    // Apply the scale, computing it from the value's exponent for si format.\n    if (scale < 0) {\n      var prefix = d3.formatPrefix(value, precision);\n      value *= prefix.scale;\n      suffix = prefix.symbol;\n    } else {\n      value *= scale;\n    }\n\n    // Convert to the desired precision.\n    value = type(value, precision);\n\n    // If the fill character is 0, the sign and group is applied after the fill.\n    if (zfill) {\n      var length = value.length + negative.length;\n      if (length < width) value = new Array(width - length + 1).join(fill) + value;\n      if (comma) value = d3_format_group(value);\n      value = negative + value;\n    }\n\n    // Otherwise (e.g., space-filling), the sign and group is applied before.\n    else {\n      if (comma) value = d3_format_group(value);\n      value = negative + value;\n      var length = value.length;\n      if (length < width) value = new Array(width - length + 1).join(fill) + value;\n    }\n\n    return value + suffix;\n  };\n};\n\n// [[fill]align][sign][#][0][width][,][.precision][type]\nvar d3_format_re = /(?:([^{])?([<>=^]))?([+\\- ])?(#)?(0)?([0-9]+)?(,)?(\\.[0-9]+)?([a-zA-Z%])?/;\n\nvar d3_format_types = d3.map({\n  g: function(x, p) { return x.toPrecision(p); },\n  e: function(x, p) { return x.toExponential(p); },\n  f: function(x, p) { return x.toFixed(p); },\n  r: function(x, p) { return d3.round(x, p = d3_format_precision(x, p)).toFixed(Math.max(0, Math.min(20, p))); }\n});\n\nfunction d3_format_precision(x, p) {\n  return p - (x ? 1 + Math.floor(Math.log(x + Math.pow(10, 1 + Math.floor(Math.log(x) / Math.LN10) - p)) / Math.LN10) : 1);\n}\n\nfunction d3_format_typeDefault(x) {\n  return x + \"\";\n}\n\n// Apply comma grouping for thousands.\nfunction d3_format_group(value) {\n  var i = value.lastIndexOf(\".\"),\n      f = i >= 0 ? value.substring(i) : (i = value.length, \"\"),\n      t = [];\n  while (i > 0) t.push(value.substring(i -= 3, i + 3));\n  return t.reverse().join(\",\") + f;\n}\nvar d3_formatPrefixes = [\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"μ\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map(d3_formatPrefix);\n\nd3.formatPrefix = function(value, precision) {\n  var i = 0;\n  if (value) {\n    if (value < 0) value *= -1;\n    if (precision) value = d3.round(value, d3_format_precision(value, precision));\n    i = 1 + Math.floor(1e-12 + Math.log(value) / Math.LN10);\n    i = Math.max(-24, Math.min(24, Math.floor((i <= 0 ? i + 1 : i - 1) / 3) * 3));\n  }\n  return d3_formatPrefixes[8 + i / 3];\n};\n\nfunction d3_formatPrefix(d, i) {\n  return {\n    scale: Math.pow(10, (8 - i) * 3),\n    symbol: d\n  };\n}\n\n/*\n * TERMS OF USE - EASING EQUATIONS\n *\n * Open source under the BSD License.\n *\n * Copyright 2001 Robert Penner\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * - Redistributions of source code must retain the above copyright notice, this\n *   list of conditions and the following disclaimer.\n *\n * - Redistributions in binary form must reproduce the above copyright notice,\n *   this list of conditions and the following disclaimer in the documentation\n *   and/or other materials provided with the distribution.\n *\n * - Neither the name of the author nor the names of contributors may be used to\n *   endorse or promote products derived from this software without specific\n *   prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n */\n\nvar d3_ease_quad = d3_ease_poly(2),\n    d3_ease_cubic = d3_ease_poly(3),\n    d3_ease_default = function() { return d3_ease_identity; };\n\nvar d3_ease = d3.map({\n  linear: d3_ease_default,\n  poly: d3_ease_poly,\n  quad: function() { return d3_ease_quad; },\n  cubic: function() { return d3_ease_cubic; },\n  sin: function() { return d3_ease_sin; },\n  exp: function() { return d3_ease_exp; },\n  circle: function() { return d3_ease_circle; },\n  elastic: d3_ease_elastic,\n  back: d3_ease_back,\n  bounce: function() { return d3_ease_bounce; }\n});\n\nvar d3_ease_mode = d3.map({\n  \"in\": d3_ease_identity,\n  \"out\": d3_ease_reverse,\n  \"in-out\": d3_ease_reflect,\n  \"out-in\": function(f) { return d3_ease_reflect(d3_ease_reverse(f)); }\n});\n\nd3.ease = function(name) {\n  var i = name.indexOf(\"-\"),\n      t = i >= 0 ? name.substring(0, i) : name,\n      m = i >= 0 ? name.substring(i + 1) : \"in\";\n  t = d3_ease.get(t) || d3_ease_default;\n  m = d3_ease_mode.get(m) || d3_ease_identity;\n  return d3_ease_clamp(m(t.apply(null, Array.prototype.slice.call(arguments, 1))));\n};\n\nfunction d3_ease_clamp(f) {\n  return function(t) {\n    return t <= 0 ? 0 : t >= 1 ? 1 : f(t);\n  };\n}\n\nfunction d3_ease_reverse(f) {\n  return function(t) {\n    return 1 - f(1 - t);\n  };\n}\n\nfunction d3_ease_reflect(f) {\n  return function(t) {\n    return .5 * (t < .5 ? f(2 * t) : (2 - f(2 - 2 * t)));\n  };\n}\n\nfunction d3_ease_identity(t) {\n  return t;\n}\n\nfunction d3_ease_poly(e) {\n  return function(t) {\n    return Math.pow(t, e);\n  };\n}\n\nfunction d3_ease_sin(t) {\n  return 1 - Math.cos(t * Math.PI / 2);\n}\n\nfunction d3_ease_exp(t) {\n  return Math.pow(2, 10 * (t - 1));\n}\n\nfunction d3_ease_circle(t) {\n  return 1 - Math.sqrt(1 - t * t);\n}\n\nfunction d3_ease_elastic(a, p) {\n  var s;\n  if (arguments.length < 2) p = 0.45;\n  if (arguments.length < 1) { a = 1; s = p / 4; }\n  else s = p / (2 * Math.PI) * Math.asin(1 / a);\n  return function(t) {\n    return 1 + a * Math.pow(2, 10 * -t) * Math.sin((t - s) * 2 * Math.PI / p);\n  };\n}\n\nfunction d3_ease_back(s) {\n  if (!s) s = 1.70158;\n  return function(t) {\n    return t * t * ((s + 1) * t - s);\n  };\n}\n\nfunction d3_ease_bounce(t) {\n  return t < 1 / 2.75 ? 7.5625 * t * t\n      : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75\n      : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375\n      : 7.5625 * (t -= 2.625 / 2.75) * t + .984375;\n}\nd3.event = null;\n\nfunction d3_eventCancel() {\n  d3.event.stopPropagation();\n  d3.event.preventDefault();\n}\n\nfunction d3_eventSource() {\n  var e = d3.event, s;\n  while (s = e.sourceEvent) e = s;\n  return e;\n}\n\n// Like d3.dispatch, but for custom events abstracting native UI events. These\n// events have a target component (such as a brush), a target element (such as\n// the svg:g element containing the brush) and the standard arguments `d` (the\n// target element's data) and `i` (the selection index of the target element).\nfunction d3_eventDispatch(target) {\n  var dispatch = new d3_dispatch,\n      i = 0,\n      n = arguments.length;\n\n  while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);\n\n  // Creates a dispatch context for the specified `thiz` (typically, the target\n  // DOM element that received the source event) and `argumentz` (typically, the\n  // data `d` and index `i` of the target element). The returned function can be\n  // used to dispatch an event to any registered listeners; the function takes a\n  // single argument as input, being the event to dispatch. The event must have\n  // a \"type\" attribute which corresponds to a type registered in the\n  // constructor. This context will automatically populate the \"sourceEvent\" and\n  // \"target\" attributes of the event, as well as setting the `d3.event` global\n  // for the duration of the notification.\n  dispatch.of = function(thiz, argumentz) {\n    return function(e1) {\n      try {\n        var e0 =\n        e1.sourceEvent = d3.event;\n        e1.target = target;\n        d3.event = e1;\n        dispatch[e1.type].apply(thiz, argumentz);\n      } finally {\n        d3.event = e0;\n      }\n    };\n  };\n\n  return dispatch;\n}\nd3.interpolate = function(a, b) {\n  var i = d3.interpolators.length, f;\n  while (--i >= 0 && !(f = d3.interpolators[i](a, b)));\n  return f;\n};\n\nd3.interpolateNumber = function(a, b) {\n  b -= a;\n  return function(t) { return a + b * t; };\n};\n\nd3.interpolateRound = function(a, b) {\n  b -= a;\n  return function(t) { return Math.round(a + b * t); };\n};\n\nd3.interpolateString = function(a, b) {\n  var m, // current match\n      i, // current index\n      j, // current index (for coallescing)\n      s0 = 0, // start index of current string prefix\n      s1 = 0, // end index of current string prefix\n      s = [], // string constants and placeholders\n      q = [], // number interpolators\n      n, // q.length\n      o;\n\n  // Reset our regular expression!\n  d3_interpolate_number.lastIndex = 0;\n\n  // Find all numbers in b.\n  for (i = 0; m = d3_interpolate_number.exec(b); ++i) {\n    if (m.index) s.push(b.substring(s0, s1 = m.index));\n    q.push({i: s.length, x: m[0]});\n    s.push(null);\n    s0 = d3_interpolate_number.lastIndex;\n  }\n  if (s0 < b.length) s.push(b.substring(s0));\n\n  // Find all numbers in a.\n  for (i = 0, n = q.length; (m = d3_interpolate_number.exec(a)) && i < n; ++i) {\n    o = q[i];\n    if (o.x == m[0]) { // The numbers match, so coallesce.\n      if (o.i) {\n        if (s[o.i + 1] == null) { // This match is followed by another number.\n          s[o.i - 1] += o.x;\n          s.splice(o.i, 1);\n          for (j = i + 1; j < n; ++j) q[j].i--;\n        } else { // This match is followed by a string, so coallesce twice.\n          s[o.i - 1] += o.x + s[o.i + 1];\n          s.splice(o.i, 2);\n          for (j = i + 1; j < n; ++j) q[j].i -= 2;\n        }\n      } else {\n          if (s[o.i + 1] == null) { // This match is followed by another number.\n          s[o.i] = o.x;\n        } else { // This match is followed by a string, so coallesce twice.\n          s[o.i] = o.x + s[o.i + 1];\n          s.splice(o.i + 1, 1);\n          for (j = i + 1; j < n; ++j) q[j].i--;\n        }\n      }\n      q.splice(i, 1);\n      n--;\n      i--;\n    } else {\n      o.x = d3.interpolateNumber(parseFloat(m[0]), parseFloat(o.x));\n    }\n  }\n\n  // Remove any numbers in b not found in a.\n  while (i < n) {\n    o = q.pop();\n    if (s[o.i + 1] == null) { // This match is followed by another number.\n      s[o.i] = o.x;\n    } else { // This match is followed by a string, so coallesce twice.\n      s[o.i] = o.x + s[o.i + 1];\n      s.splice(o.i + 1, 1);\n    }\n    n--;\n  }\n\n  // Special optimization for only a single match.\n  if (s.length === 1) {\n    return s[0] == null ? q[0].x : function() { return b; };\n  }\n\n  // Otherwise, interpolate each of the numbers and rejoin the string.\n  return function(t) {\n    for (i = 0; i < n; ++i) s[(o = q[i]).i] = o.x(t);\n    return s.join(\"\");\n  };\n};\n\nd3.interpolateTransform = function(a, b) {\n  var s = [], // string constants and placeholders\n      q = [], // number interpolators\n      n,\n      A = d3.transform(a),\n      B = d3.transform(b),\n      ta = A.translate,\n      tb = B.translate,\n      ra = A.rotate,\n      rb = B.rotate,\n      wa = A.skew,\n      wb = B.skew,\n      ka = A.scale,\n      kb = B.scale;\n\n  if (ta[0] != tb[0] || ta[1] != tb[1]) {\n    s.push(\"translate(\", null, \",\", null, \")\");\n    q.push({i: 1, x: d3.interpolateNumber(ta[0], tb[0])}, {i: 3, x: d3.interpolateNumber(ta[1], tb[1])});\n  } else if (tb[0] || tb[1]) {\n    s.push(\"translate(\" + tb + \")\");\n  } else {\n    s.push(\"\");\n  }\n\n  if (ra != rb) {\n    q.push({i: s.push(s.pop() + \"rotate(\", null, \")\") - 2, x: d3.interpolateNumber(ra, rb)});\n  } else if (rb) {\n    s.push(s.pop() + \"rotate(\" + rb + \")\");\n  }\n\n  if (wa != wb) {\n    q.push({i: s.push(s.pop() + \"skewX(\", null, \")\") - 2, x: d3.interpolateNumber(wa, wb)});\n  } else if (wb) {\n    s.push(s.pop() + \"skewX(\" + wb + \")\");\n  }\n\n  if (ka[0] != kb[0] || ka[1] != kb[1]) {\n    n = s.push(s.pop() + \"scale(\", null, \",\", null, \")\");\n    q.push({i: n - 4, x: d3.interpolateNumber(ka[0], kb[0])}, {i: n - 2, x: d3.interpolateNumber(ka[1], kb[1])});\n  } else if (kb[0] != 1 || kb[1] != 1) {\n    s.push(s.pop() + \"scale(\" + kb + \")\");\n  }\n\n  n = q.length;\n  return function(t) {\n    var i = -1, o;\n    while (++i < n) s[(o = q[i]).i] = o.x(t);\n    return s.join(\"\");\n  };\n};\n\nd3.interpolateRgb = function(a, b) {\n  a = d3.rgb(a);\n  b = d3.rgb(b);\n  var ar = a.r,\n      ag = a.g,\n      ab = a.b,\n      br = b.r - ar,\n      bg = b.g - ag,\n      bb = b.b - ab;\n  return function(t) {\n    return \"#\"\n        + d3_rgb_hex(Math.round(ar + br * t))\n        + d3_rgb_hex(Math.round(ag + bg * t))\n        + d3_rgb_hex(Math.round(ab + bb * t));\n  };\n};\n\n// interpolates HSL space, but outputs RGB string (for compatibility)\nd3.interpolateHsl = function(a, b) {\n  a = d3.hsl(a);\n  b = d3.hsl(b);\n  var h0 = a.h,\n      s0 = a.s,\n      l0 = a.l,\n      h1 = b.h - h0,\n      s1 = b.s - s0,\n      l1 = b.l - l0;\n  return function(t) {\n    return d3_hsl_rgb(h0 + h1 * t, s0 + s1 * t, l0 + l1 * t).toString();\n  };\n};\n\nd3.interpolateArray = function(a, b) {\n  var x = [],\n      c = [],\n      na = a.length,\n      nb = b.length,\n      n0 = Math.min(a.length, b.length),\n      i;\n  for (i = 0; i < n0; ++i) x.push(d3.interpolate(a[i], b[i]));\n  for (; i < na; ++i) c[i] = a[i];\n  for (; i < nb; ++i) c[i] = b[i];\n  return function(t) {\n    for (i = 0; i < n0; ++i) c[i] = x[i](t);\n    return c;\n  };\n};\n\nd3.interpolateObject = function(a, b) {\n  var i = {},\n      c = {},\n      k;\n  for (k in a) {\n    if (k in b) {\n      i[k] = d3_interpolateByName(k)(a[k], b[k]);\n    } else {\n      c[k] = a[k];\n    }\n  }\n  for (k in b) {\n    if (!(k in a)) {\n      c[k] = b[k];\n    }\n  }\n  return function(t) {\n    for (k in i) c[k] = i[k](t);\n    return c;\n  };\n}\n\nvar d3_interpolate_number = /[-+]?(?:\\d*\\.?\\d+)(?:[eE][-+]?\\d+)?/g;\n\nfunction d3_interpolateByName(n) {\n  return n == \"transform\"\n      ? d3.interpolateTransform\n      : d3.interpolate;\n}\n\nd3.interpolators = [\n  d3.interpolateObject,\n  function(a, b) { return (b instanceof Array) && d3.interpolateArray(a, b); },\n  function(a, b) { return (typeof a === \"string\" || typeof b === \"string\") && d3.interpolateString(a + \"\", b + \"\"); },\n  function(a, b) { return (typeof b === \"string\" ? d3_rgb_names.has(b) || /^(#|rgb\\(|hsl\\()/.test(b) : b instanceof d3_Rgb || b instanceof d3_Hsl) && d3.interpolateRgb(a, b); },\n  function(a, b) { return !isNaN(a = +a) && !isNaN(b = +b) && d3.interpolateNumber(a, b); }\n];\nfunction d3_uninterpolateNumber(a, b) {\n  b = b - (a = +a) ? 1 / (b - a) : 0;\n  return function(x) { return (x - a) * b; };\n}\n\nfunction d3_uninterpolateClamp(a, b) {\n  b = b - (a = +a) ? 1 / (b - a) : 0;\n  return function(x) { return Math.max(0, Math.min(1, (x - a) * b)); };\n}\nd3.rgb = function(r, g, b) {\n  return arguments.length === 1\n      ? (r instanceof d3_Rgb ? d3_rgb(r.r, r.g, r.b)\n      : d3_rgb_parse(\"\" + r, d3_rgb, d3_hsl_rgb))\n      : d3_rgb(~~r, ~~g, ~~b);\n};\n\nfunction d3_rgb(r, g, b) {\n  return new d3_Rgb(r, g, b);\n}\n\nfunction d3_Rgb(r, g, b) {\n  this.r = r;\n  this.g = g;\n  this.b = b;\n}\n\nd3_Rgb.prototype.brighter = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  var r = this.r,\n      g = this.g,\n      b = this.b,\n      i = 30;\n  if (!r && !g && !b) return d3_rgb(i, i, i);\n  if (r && r < i) r = i;\n  if (g && g < i) g = i;\n  if (b && b < i) b = i;\n  return d3_rgb(\n      Math.min(255, Math.floor(r / k)),\n      Math.min(255, Math.floor(g / k)),\n      Math.min(255, Math.floor(b / k)));\n};\n\nd3_Rgb.prototype.darker = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_rgb(\n      Math.floor(k * this.r),\n      Math.floor(k * this.g),\n      Math.floor(k * this.b));\n};\n\nd3_Rgb.prototype.hsl = function() {\n  return d3_rgb_hsl(this.r, this.g, this.b);\n};\n\nd3_Rgb.prototype.toString = function() {\n  return \"#\" + d3_rgb_hex(this.r) + d3_rgb_hex(this.g) + d3_rgb_hex(this.b);\n};\n\nfunction d3_rgb_hex(v) {\n  return v < 0x10\n      ? \"0\" + Math.max(0, v).toString(16)\n      : Math.min(255, v).toString(16);\n}\n\nfunction d3_rgb_parse(format, rgb, hsl) {\n  var r = 0, // red channel; int in [0, 255]\n      g = 0, // green channel; int in [0, 255]\n      b = 0, // blue channel; int in [0, 255]\n      m1, // CSS color specification match\n      m2, // CSS color specification type (e.g., rgb)\n      name;\n\n  /* Handle hsl, rgb. */\n  m1 = /([a-z]+)\\((.*)\\)/i.exec(format);\n  if (m1) {\n    m2 = m1[2].split(\",\");\n    switch (m1[1]) {\n      case \"hsl\": {\n        return hsl(\n          parseFloat(m2[0]), // degrees\n          parseFloat(m2[1]) / 100, // percentage\n          parseFloat(m2[2]) / 100 // percentage\n        );\n      }\n      case \"rgb\": {\n        return rgb(\n          d3_rgb_parseNumber(m2[0]),\n          d3_rgb_parseNumber(m2[1]),\n          d3_rgb_parseNumber(m2[2])\n        );\n      }\n    }\n  }\n\n  /* Named colors. */\n  if (name = d3_rgb_names.get(format)) return rgb(name.r, name.g, name.b);\n\n  /* Hexadecimal colors: #rgb and #rrggbb. */\n  if (format != null && format.charAt(0) === \"#\") {\n    if (format.length === 4) {\n      r = format.charAt(1); r += r;\n      g = format.charAt(2); g += g;\n      b = format.charAt(3); b += b;\n    } else if (format.length === 7) {\n      r = format.substring(1, 3);\n      g = format.substring(3, 5);\n      b = format.substring(5, 7);\n    }\n    r = parseInt(r, 16);\n    g = parseInt(g, 16);\n    b = parseInt(b, 16);\n  }\n\n  return rgb(r, g, b);\n}\n\nfunction d3_rgb_hsl(r, g, b) {\n  var min = Math.min(r /= 255, g /= 255, b /= 255),\n      max = Math.max(r, g, b),\n      d = max - min,\n      h,\n      s,\n      l = (max + min) / 2;\n  if (d) {\n    s = l < .5 ? d / (max + min) : d / (2 - max - min);\n    if (r == max) h = (g - b) / d + (g < b ? 6 : 0);\n    else if (g == max) h = (b - r) / d + 2;\n    else h = (r - g) / d + 4;\n    h *= 60;\n  } else {\n    s = h = 0;\n  }\n  return d3_hsl(h, s, l);\n}\n\nfunction d3_rgb_parseNumber(c) { // either integer or percentage\n  var f = parseFloat(c);\n  return c.charAt(c.length - 1) === \"%\" ? Math.round(f * 2.55) : f;\n}\n\nvar d3_rgb_names = d3.map({\n  aliceblue: \"#f0f8ff\",\n  antiquewhite: \"#faebd7\",\n  aqua: \"#00ffff\",\n  aquamarine: \"#7fffd4\",\n  azure: \"#f0ffff\",\n  beige: \"#f5f5dc\",\n  bisque: \"#ffe4c4\",\n  black: \"#000000\",\n  blanchedalmond: \"#ffebcd\",\n  blue: \"#0000ff\",\n  blueviolet: \"#8a2be2\",\n  brown: \"#a52a2a\",\n  burlywood: \"#deb887\",\n  cadetblue: \"#5f9ea0\",\n  chartreuse: \"#7fff00\",\n  chocolate: \"#d2691e\",\n  coral: \"#ff7f50\",\n  cornflowerblue: \"#6495ed\",\n  cornsilk: \"#fff8dc\",\n  crimson: \"#dc143c\",\n  cyan: \"#00ffff\",\n  darkblue: \"#00008b\",\n  darkcyan: \"#008b8b\",\n  darkgoldenrod: \"#b8860b\",\n  darkgray: \"#a9a9a9\",\n  darkgreen: \"#006400\",\n  darkgrey: \"#a9a9a9\",\n  darkkhaki: \"#bdb76b\",\n  darkmagenta: \"#8b008b\",\n  darkolivegreen: \"#556b2f\",\n  darkorange: \"#ff8c00\",\n  darkorchid: \"#9932cc\",\n  darkred: \"#8b0000\",\n  darksalmon: \"#e9967a\",\n  darkseagreen: \"#8fbc8f\",\n  darkslateblue: \"#483d8b\",\n  darkslategray: \"#2f4f4f\",\n  darkslategrey: \"#2f4f4f\",\n  darkturquoise: \"#00ced1\",\n  darkviolet: \"#9400d3\",\n  deeppink: \"#ff1493\",\n  deepskyblue: \"#00bfff\",\n  dimgray: \"#696969\",\n  dimgrey: \"#696969\",\n  dodgerblue: \"#1e90ff\",\n  firebrick: \"#b22222\",\n  floralwhite: \"#fffaf0\",\n  forestgreen: \"#228b22\",\n  fuchsia: \"#ff00ff\",\n  gainsboro: \"#dcdcdc\",\n  ghostwhite: \"#f8f8ff\",\n  gold: \"#ffd700\",\n  goldenrod: \"#daa520\",\n  gray: \"#808080\",\n  green: \"#008000\",\n  greenyellow: \"#adff2f\",\n  grey: \"#808080\",\n  honeydew: \"#f0fff0\",\n  hotpink: \"#ff69b4\",\n  indianred: \"#cd5c5c\",\n  indigo: \"#4b0082\",\n  ivory: \"#fffff0\",\n  khaki: \"#f0e68c\",\n  lavender: \"#e6e6fa\",\n  lavenderblush: \"#fff0f5\",\n  lawngreen: \"#7cfc00\",\n  lemonchiffon: \"#fffacd\",\n  lightblue: \"#add8e6\",\n  lightcoral: \"#f08080\",\n  lightcyan: \"#e0ffff\",\n  lightgoldenrodyellow: \"#fafad2\",\n  lightgray: \"#d3d3d3\",\n  lightgreen: \"#90ee90\",\n  lightgrey: \"#d3d3d3\",\n  lightpink: \"#ffb6c1\",\n  lightsalmon: \"#ffa07a\",\n  lightseagreen: \"#20b2aa\",\n  lightskyblue: \"#87cefa\",\n  lightslategray: \"#778899\",\n  lightslategrey: \"#778899\",\n  lightsteelblue: \"#b0c4de\",\n  lightyellow: \"#ffffe0\",\n  lime: \"#00ff00\",\n  limegreen: \"#32cd32\",\n  linen: \"#faf0e6\",\n  magenta: \"#ff00ff\",\n  maroon: \"#800000\",\n  mediumaquamarine: \"#66cdaa\",\n  mediumblue: \"#0000cd\",\n  mediumorchid: \"#ba55d3\",\n  mediumpurple: \"#9370db\",\n  mediumseagreen: \"#3cb371\",\n  mediumslateblue: \"#7b68ee\",\n  mediumspringgreen: \"#00fa9a\",\n  mediumturquoise: \"#48d1cc\",\n  mediumvioletred: \"#c71585\",\n  midnightblue: \"#191970\",\n  mintcream: \"#f5fffa\",\n  mistyrose: \"#ffe4e1\",\n  moccasin: \"#ffe4b5\",\n  navajowhite: \"#ffdead\",\n  navy: \"#000080\",\n  oldlace: \"#fdf5e6\",\n  olive: \"#808000\",\n  olivedrab: \"#6b8e23\",\n  orange: \"#ffa500\",\n  orangered: \"#ff4500\",\n  orchid: \"#da70d6\",\n  palegoldenrod: \"#eee8aa\",\n  palegreen: \"#98fb98\",\n  paleturquoise: \"#afeeee\",\n  palevioletred: \"#db7093\",\n  papayawhip: \"#ffefd5\",\n  peachpuff: \"#ffdab9\",\n  peru: \"#cd853f\",\n  pink: \"#ffc0cb\",\n  plum: \"#dda0dd\",\n  powderblue: \"#b0e0e6\",\n  purple: \"#800080\",\n  red: \"#ff0000\",\n  rosybrown: \"#bc8f8f\",\n  royalblue: \"#4169e1\",\n  saddlebrown: \"#8b4513\",\n  salmon: \"#fa8072\",\n  sandybrown: \"#f4a460\",\n  seagreen: \"#2e8b57\",\n  seashell: \"#fff5ee\",\n  sienna: \"#a0522d\",\n  silver: \"#c0c0c0\",\n  skyblue: \"#87ceeb\",\n  slateblue: \"#6a5acd\",\n  slategray: \"#708090\",\n  slategrey: \"#708090\",\n  snow: \"#fffafa\",\n  springgreen: \"#00ff7f\",\n  steelblue: \"#4682b4\",\n  tan: \"#d2b48c\",\n  teal: \"#008080\",\n  thistle: \"#d8bfd8\",\n  tomato: \"#ff6347\",\n  turquoise: \"#40e0d0\",\n  violet: \"#ee82ee\",\n  wheat: \"#f5deb3\",\n  white: \"#ffffff\",\n  whitesmoke: \"#f5f5f5\",\n  yellow: \"#ffff00\",\n  yellowgreen: \"#9acd32\"\n});\n\nd3_rgb_names.forEach(function(key, value) {\n  d3_rgb_names.set(key, d3_rgb_parse(value, d3_rgb, d3_hsl_rgb));\n});\nd3.hsl = function(h, s, l) {\n  return arguments.length === 1\n      ? (h instanceof d3_Hsl ? d3_hsl(h.h, h.s, h.l)\n      : d3_rgb_parse(\"\" + h, d3_rgb_hsl, d3_hsl))\n      : d3_hsl(+h, +s, +l);\n};\n\nfunction d3_hsl(h, s, l) {\n  return new d3_Hsl(h, s, l);\n}\n\nfunction d3_Hsl(h, s, l) {\n  this.h = h;\n  this.s = s;\n  this.l = l;\n}\n\nd3_Hsl.prototype.brighter = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_hsl(this.h, this.s, this.l / k);\n};\n\nd3_Hsl.prototype.darker = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_hsl(this.h, this.s, k * this.l);\n};\n\nd3_Hsl.prototype.rgb = function() {\n  return d3_hsl_rgb(this.h, this.s, this.l);\n};\n\nd3_Hsl.prototype.toString = function() {\n  return this.rgb().toString();\n};\n\nfunction d3_hsl_rgb(h, s, l) {\n  var m1,\n      m2;\n\n  /* Some simple corrections for h, s and l. */\n  h = h % 360; if (h < 0) h += 360;\n  s = s < 0 ? 0 : s > 1 ? 1 : s;\n  l = l < 0 ? 0 : l > 1 ? 1 : l;\n\n  /* From FvD 13.37, CSS Color Module Level 3 */\n  m2 = l <= .5 ? l * (1 + s) : l + s - l * s;\n  m1 = 2 * l - m2;\n\n  function v(h) {\n    if (h > 360) h -= 360;\n    else if (h < 0) h += 360;\n    if (h < 60) return m1 + (m2 - m1) * h / 60;\n    if (h < 180) return m2;\n    if (h < 240) return m1 + (m2 - m1) * (240 - h) / 60;\n    return m1;\n  }\n\n  function vv(h) {\n    return Math.round(v(h) * 255);\n  }\n\n  return d3_rgb(vv(h + 120), vv(h), vv(h - 120));\n}\nfunction d3_selection(groups) {\n  d3_arraySubclass(groups, d3_selectionPrototype);\n  return groups;\n}\n\nvar d3_select = function(s, n) { return n.querySelector(s); },\n    d3_selectAll = function(s, n) { return n.querySelectorAll(s); },\n    d3_selectRoot = document.documentElement,\n    d3_selectMatcher = d3_selectRoot.matchesSelector || d3_selectRoot.webkitMatchesSelector || d3_selectRoot.mozMatchesSelector || d3_selectRoot.msMatchesSelector || d3_selectRoot.oMatchesSelector,\n    d3_selectMatches = function(n, s) { return d3_selectMatcher.call(n, s); };\n\n// Prefer Sizzle, if available.\nif (typeof Sizzle === \"function\") {\n  d3_select = function(s, n) { return Sizzle(s, n)[0]; };\n  d3_selectAll = function(s, n) { return Sizzle.uniqueSort(Sizzle(s, n)); };\n  d3_selectMatches = Sizzle.matchesSelector;\n}\n\nvar d3_selectionPrototype = [];\n\nd3.selection = function() {\n  return d3_selectionRoot;\n};\n\nd3.selection.prototype = d3_selectionPrototype;\nd3_selectionPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      group,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selector(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = (group = this[j]).parentNode;\n    for (var i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroup.push(subnode = selector.call(node, node.__data__, i));\n        if (subnode && \"__data__\" in node) subnode.__data__ = node.__data__;\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_selector(selector) {\n  return function() {\n    return d3_select(selector, this);\n  };\n}\nd3_selectionPrototype.selectAll = function(selector) {\n  var subgroups = [],\n      subgroup,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selectorAll(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroups.push(subgroup = d3_array(selector.call(node, node.__data__, i)));\n        subgroup.parentNode = node;\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_selectorAll(selector) {\n  return function() {\n    return d3_selectAll(selector, this);\n  };\n}\nd3_selectionPrototype.attr = function(name, value) {\n  name = d3.ns.qualify(name);\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) {\n    var node = this.node();\n    return name.local\n        ? node.getAttributeNS(name.space, name.local)\n        : node.getAttribute(name);\n  }\n\n  function attrNull() {\n    this.removeAttribute(name);\n  }\n\n  function attrNullNS() {\n    this.removeAttributeNS(name.space, name.local);\n  }\n\n  function attrConstant() {\n    this.setAttribute(name, value);\n  }\n\n  function attrConstantNS() {\n    this.setAttributeNS(name.space, name.local, value);\n  }\n\n  function attrFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.removeAttribute(name);\n    else this.setAttribute(name, x);\n  }\n\n  function attrFunctionNS() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.removeAttributeNS(name.space, name.local);\n    else this.setAttributeNS(name.space, name.local, x);\n  }\n\n  return this.each(value == null\n      ? (name.local ? attrNullNS : attrNull) : (typeof value === \"function\"\n      ? (name.local ? attrFunctionNS : attrFunction)\n      : (name.local ? attrConstantNS : attrConstant)));\n};\nd3_selectionPrototype.classed = function(name, value) {\n  var names = name.split(d3_selection_classedWhitespace),\n      n = names.length,\n      i = -1;\n  if (arguments.length > 1) {\n    while (++i < n) d3_selection_classed.call(this, names[i], value);\n    return this;\n  } else {\n    while (++i < n) if (!d3_selection_classed.call(this, names[i])) return false;\n    return true;\n  }\n};\n\nvar d3_selection_classedWhitespace = /\\s+/g;\n\nfunction d3_selection_classed(name, value) {\n  var re = new RegExp(\"(^|\\\\s+)\" + d3.requote(name) + \"(\\\\s+|$)\", \"g\");\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) {\n    var node = this.node();\n    if (c = node.classList) return c.contains(name);\n    var c = node.className;\n    re.lastIndex = 0;\n    return re.test(c.baseVal != null ? c.baseVal : c);\n  }\n\n  function classedAdd() {\n    if (c = this.classList) return c.add(name);\n    var c = this.className,\n        cb = c.baseVal != null,\n        cv = cb ? c.baseVal : c;\n    re.lastIndex = 0;\n    if (!re.test(cv)) {\n      cv = d3_collapse(cv + \" \" + name);\n      if (cb) c.baseVal = cv;\n      else this.className = cv;\n    }\n  }\n\n  function classedRemove() {\n    if (c = this.classList) return c.remove(name);\n    var c = this.className,\n        cb = c.baseVal != null,\n        cv = cb ? c.baseVal : c;\n    cv = d3_collapse(cv.replace(re, \" \"));\n    if (cb) c.baseVal = cv;\n    else this.className = cv;\n  }\n\n  function classedFunction() {\n    (value.apply(this, arguments)\n        ? classedAdd\n        : classedRemove).call(this);\n  }\n\n  return this.each(typeof value === \"function\"\n      ? classedFunction : value\n      ? classedAdd\n      : classedRemove);\n}\nd3_selectionPrototype.style = function(name, value, priority) {\n  if (arguments.length < 3) priority = \"\";\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) return window\n      .getComputedStyle(this.node(), null)\n      .getPropertyValue(name);\n\n  function styleNull() {\n    this.style.removeProperty(name);\n  }\n\n  function styleConstant() {\n    this.style.setProperty(name, value, priority);\n  }\n\n  function styleFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.style.removeProperty(name);\n    else this.style.setProperty(name, x, priority);\n  }\n\n  return this.each(value == null\n      ? styleNull : (typeof value === \"function\"\n      ? styleFunction : styleConstant));\n};\nd3_selectionPrototype.property = function(name, value) {\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) return this.node()[name];\n\n  function propertyNull() {\n    delete this[name];\n  }\n\n  function propertyConstant() {\n    this[name] = value;\n  }\n\n  function propertyFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) delete this[name];\n    else this[name] = x;\n  }\n\n  return this.each(value == null\n      ? propertyNull : (typeof value === \"function\"\n      ? propertyFunction : propertyConstant));\n};\nd3_selectionPrototype.text = function(value) {\n  return arguments.length < 1\n      ? this.node().textContent : this.each(typeof value === \"function\"\n      ? function() { var v = value.apply(this, arguments); this.textContent = v == null ? \"\" : v; } : value == null\n      ? function() { this.textContent = \"\"; }\n      : function() { this.textContent = value; });\n};\nd3_selectionPrototype.html = function(value) {\n  return arguments.length < 1\n      ? this.node().innerHTML : this.each(typeof value === \"function\"\n      ? function() { var v = value.apply(this, arguments); this.innerHTML = v == null ? \"\" : v; } : value == null\n      ? function() { this.innerHTML = \"\"; }\n      : function() { this.innerHTML = value; });\n};\n// TODO append(node)?\n// TODO append(function)?\nd3_selectionPrototype.append = function(name) {\n  name = d3.ns.qualify(name);\n\n  function append() {\n    return this.appendChild(document.createElementNS(this.namespaceURI, name));\n  }\n\n  function appendNS() {\n    return this.appendChild(document.createElementNS(name.space, name.local));\n  }\n\n  return this.select(name.local ? appendNS : append);\n};\n// TODO insert(node, function)?\n// TODO insert(function, string)?\n// TODO insert(function, function)?\nd3_selectionPrototype.insert = function(name, before) {\n  name = d3.ns.qualify(name);\n\n  function insert() {\n    return this.insertBefore(\n        document.createElementNS(this.namespaceURI, name),\n        d3_select(before, this));\n  }\n\n  function insertNS() {\n    return this.insertBefore(\n        document.createElementNS(name.space, name.local),\n        d3_select(before, this));\n  }\n\n  return this.select(name.local ? insertNS : insert);\n};\n// TODO remove(selector)?\n// TODO remove(node)?\n// TODO remove(function)?\nd3_selectionPrototype.remove = function() {\n  return this.each(function() {\n    var parent = this.parentNode;\n    if (parent) parent.removeChild(this);\n  });\n};\nd3_selectionPrototype.data = function(value, key) {\n  var i = -1,\n      n = this.length,\n      group,\n      node;\n\n  // If no value is specified, return the first value.\n  if (!arguments.length) {\n    value = new Array(n = (group = this[0]).length);\n    while (++i < n) {\n      if (node = group[i]) {\n        value[i] = node.__data__;\n      }\n    }\n    return value;\n  }\n\n  function bind(group, groupData) {\n    var i,\n        n = group.length,\n        m = groupData.length,\n        n0 = Math.min(n, m),\n        n1 = Math.max(n, m),\n        updateNodes = [],\n        enterNodes = [],\n        exitNodes = [],\n        node,\n        nodeData;\n\n    if (key) {\n      var nodeByKeyValue = new d3_Map,\n          keyValues = [],\n          keyValue,\n          j = groupData.length;\n\n      for (i = -1; ++i < n;) {\n        keyValue = key.call(node = group[i], node.__data__, i);\n        if (nodeByKeyValue.has(keyValue)) {\n          exitNodes[j++] = node; // duplicate key\n        } else {\n          nodeByKeyValue.set(keyValue, node);\n        }\n        keyValues.push(keyValue);\n      }\n\n      for (i = -1; ++i < m;) {\n        keyValue = key.call(groupData, nodeData = groupData[i], i)\n        if (nodeByKeyValue.has(keyValue)) {\n          updateNodes[i] = node = nodeByKeyValue.get(keyValue);\n          node.__data__ = nodeData;\n          enterNodes[i] = exitNodes[i] = null;\n        } else {\n          enterNodes[i] = d3_selection_dataNode(nodeData);\n          updateNodes[i] = exitNodes[i] = null;\n        }\n        nodeByKeyValue.remove(keyValue);\n      }\n\n      for (i = -1; ++i < n;) {\n        if (nodeByKeyValue.has(keyValues[i])) {\n          exitNodes[i] = group[i];\n        }\n      }\n    } else {\n      for (i = -1; ++i < n0;) {\n        node = group[i];\n        nodeData = groupData[i];\n        if (node) {\n          node.__data__ = nodeData;\n          updateNodes[i] = node;\n          enterNodes[i] = exitNodes[i] = null;\n        } else {\n          enterNodes[i] = d3_selection_dataNode(nodeData);\n          updateNodes[i] = exitNodes[i] = null;\n        }\n      }\n      for (; i < m; ++i) {\n        enterNodes[i] = d3_selection_dataNode(groupData[i]);\n        updateNodes[i] = exitNodes[i] = null;\n      }\n      for (; i < n1; ++i) {\n        exitNodes[i] = group[i];\n        enterNodes[i] = updateNodes[i] = null;\n      }\n    }\n\n    enterNodes.update\n        = updateNodes;\n\n    enterNodes.parentNode\n        = updateNodes.parentNode\n        = exitNodes.parentNode\n        = group.parentNode;\n\n    enter.push(enterNodes);\n    update.push(updateNodes);\n    exit.push(exitNodes);\n  }\n\n  var enter = d3_selection_enter([]),\n      update = d3_selection([]),\n      exit = d3_selection([]);\n\n  if (typeof value === \"function\") {\n    while (++i < n) {\n      bind(group = this[i], value.call(group, group.parentNode.__data__, i));\n    }\n  } else {\n    while (++i < n) {\n      bind(group = this[i], value);\n    }\n  }\n\n  update.enter = function() { return enter; };\n  update.exit = function() { return exit; };\n  return update;\n};\n\nfunction d3_selection_dataNode(data) {\n  return {__data__: data};\n}\nd3_selectionPrototype.datum =\nd3_selectionPrototype.map = function(value) {\n  return arguments.length < 1\n      ? this.property(\"__data__\")\n      : this.property(\"__data__\", value);\n};\nd3_selectionPrototype.filter = function(filter) {\n  var subgroups = [],\n      subgroup,\n      group,\n      node;\n\n  if (typeof filter !== \"function\") filter = d3_selection_filter(filter);\n\n  for (var j = 0, m = this.length; j < m; j++) {\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = (group = this[j]).parentNode;\n    for (var i = 0, n = group.length; i < n; i++) {\n      if ((node = group[i]) && filter.call(node, node.__data__, i)) {\n        subgroup.push(node);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_filter(selector) {\n  return function() {\n    return d3_selectMatches(this, selector);\n  };\n}\nd3_selectionPrototype.order = function() {\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = group.length - 1, next = group[i], node; --i >= 0;) {\n      if (node = group[i]) {\n        if (next && next !== node.nextSibling) next.parentNode.insertBefore(node, next);\n        next = node;\n      }\n    }\n  }\n  return this;\n};\nd3_selectionPrototype.sort = function(comparator) {\n  comparator = d3_selection_sortComparator.apply(this, arguments);\n  for (var j = -1, m = this.length; ++j < m;) this[j].sort(comparator);\n  return this.order();\n};\n\nfunction d3_selection_sortComparator(comparator) {\n  if (!arguments.length) comparator = d3.ascending;\n  return function(a, b) {\n    return comparator(a && a.__data__, b && b.__data__);\n  };\n}\n// type can be namespaced, e.g., \"click.foo\"\n// listener can be null for removal\nd3_selectionPrototype.on = function(type, listener, capture) {\n  if (arguments.length < 3) capture = false;\n\n  // parse the type specifier\n  var name = \"__on\" + type, i = type.indexOf(\".\");\n  if (i > 0) type = type.substring(0, i);\n\n  // if called with only one argument, return the current listener\n  if (arguments.length < 2) return (i = this.node()[name]) && i._;\n\n  // remove the old event listener, and add the new event listener\n  return this.each(function(d, i) {\n    var node = this,\n        o = node[name];\n\n    // remove the old listener, if any (using the previously-set capture)\n    if (o) {\n      node.removeEventListener(type, o, o.$);\n      delete node[name];\n    }\n\n    // add the new listener, if any (remembering the capture flag)\n    if (listener) {\n      node.addEventListener(type, node[name] = l, l.$ = capture);\n      l._ = listener; // stash the unwrapped listener for get\n    }\n\n    // wrapped event listener that preserves i\n    function l(e) {\n      var o = d3.event; // Events can be reentrant (e.g., focus).\n      d3.event = e;\n      try {\n        listener.call(node, node.__data__, i);\n      } finally {\n        d3.event = o;\n      }\n    }\n  });\n};\nd3_selectionPrototype.each = function(callback) {\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      var node = group[i];\n      if (node) callback.call(node, node.__data__, i, j);\n    }\n  }\n  return this;\n};\n//\n// Note: assigning to the arguments array simultaneously changes the value of\n// the corresponding argument!\n//\n// TODO The `this` argument probably shouldn't be the first argument to the\n// callback, anyway, since it's redundant. However, that will require a major\n// version bump due to backwards compatibility, so I'm not changing it right\n// away.\n//\nd3_selectionPrototype.call = function(callback) {\n  callback.apply(this, (arguments[0] = this, arguments));\n  return this;\n};\nd3_selectionPrototype.empty = function() {\n  return !this.node();\n};\nd3_selectionPrototype.node = function(callback) {\n  for (var j = 0, m = this.length; j < m; j++) {\n    for (var group = this[j], i = 0, n = group.length; i < n; i++) {\n      var node = group[i];\n      if (node) return node;\n    }\n  }\n  return null;\n};\nd3_selectionPrototype.transition = function() {\n  var subgroups = [],\n      subgroup,\n      node;\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      subgroup.push((node = group[i]) ? {node: node, delay: d3_transitionDelay, duration: d3_transitionDuration} : null);\n    }\n  }\n\n  return d3_transition(subgroups, d3_transitionId || ++d3_transitionNextId, Date.now());\n};\nvar d3_selectionRoot = d3_selection([[document]]);\n\nd3_selectionRoot[0].parentNode = d3_selectRoot;\n\n// TODO fast singleton implementation!\n// TODO select(function)\nd3.select = function(selector) {\n  return typeof selector === \"string\"\n      ? d3_selectionRoot.select(selector)\n      : d3_selection([[selector]]); // assume node\n};\n\n// TODO selectAll(function)\nd3.selectAll = function(selector) {\n  return typeof selector === \"string\"\n      ? d3_selectionRoot.selectAll(selector)\n      : d3_selection([d3_array(selector)]); // assume node[]\n};\nfunction d3_selection_enter(selection) {\n  d3_arraySubclass(selection, d3_selection_enterPrototype);\n  return selection;\n}\n\nvar d3_selection_enterPrototype = [];\n\nd3.selection.enter = d3_selection_enter;\nd3.selection.enter.prototype = d3_selection_enterPrototype;\n\nd3_selection_enterPrototype.append = d3_selectionPrototype.append;\nd3_selection_enterPrototype.insert = d3_selectionPrototype.insert;\nd3_selection_enterPrototype.empty = d3_selectionPrototype.empty;\nd3_selection_enterPrototype.node = d3_selectionPrototype.node;\nd3_selection_enterPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      upgroup,\n      group,\n      node;\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    upgroup = (group = this[j]).update;\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = group.parentNode;\n    for (var i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroup.push(upgroup[i] = subnode = selector.call(group.parentNode, node.__data__, i));\n        subnode.__data__ = node.__data__;\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\nfunction d3_transition(groups, id, time) {\n  d3_arraySubclass(groups, d3_transitionPrototype);\n\n  var tweens = new d3_Map,\n      event = d3.dispatch(\"start\", \"end\"),\n      ease = d3_transitionEase;\n\n  groups.id = id;\n\n  groups.time = time;\n\n  groups.tween = function(name, tween) {\n    if (arguments.length < 2) return tweens.get(name);\n    if (tween == null) tweens.remove(name);\n    else tweens.set(name, tween);\n    return groups;\n  };\n\n  groups.ease = function(value) {\n    if (!arguments.length) return ease;\n    ease = typeof value === \"function\" ? value : d3.ease.apply(d3, arguments);\n    return groups;\n  };\n\n  groups.each = function(type, listener) {\n    if (arguments.length < 2) return d3_transition_each.call(groups, type);\n    event.on(type, listener);\n    return groups;\n  };\n\n  d3.timer(function(elapsed) {\n    groups.each(function(d, i, j) {\n      var tweened = [],\n          node = this,\n          delay = groups[j][i].delay,\n          duration = groups[j][i].duration,\n          lock = node.__transition__ || (node.__transition__ = {active: 0, count: 0});\n\n      ++lock.count;\n\n      delay <= elapsed ? start(elapsed) : d3.timer(start, delay, time);\n\n      function start(elapsed) {\n        if (lock.active > id) return stop();\n        lock.active = id;\n\n        tweens.forEach(function(key, value) {\n          if (tween = value.call(node, d, i)) {\n            tweened.push(tween);\n          }\n        });\n\n        event.start.call(node, d, i);\n        if (!tick(elapsed)) d3.timer(tick, 0, time);\n        return 1;\n      }\n\n      function tick(elapsed) {\n        if (lock.active !== id) return stop();\n\n        var t = (elapsed - delay) / duration,\n            e = ease(t),\n            n = tweened.length;\n\n        while (n > 0) {\n          tweened[--n].call(node, e);\n        }\n\n        if (t >= 1) {\n          stop();\n          d3_transitionId = id;\n          event.end.call(node, d, i);\n          d3_transitionId = 0;\n          return 1;\n        }\n      }\n\n      function stop() {\n        if (!--lock.count) delete node.__transition__;\n        return 1;\n      }\n    });\n    return 1;\n  }, 0, time);\n\n  return groups;\n}\n\nvar d3_transitionRemove = {};\n\nfunction d3_transitionNull(d, i, a) {\n  return a != \"\" && d3_transitionRemove;\n}\n\nfunction d3_transitionTween(name, b) {\n  var interpolate = d3_interpolateByName(name);\n\n  function transitionFunction(d, i, a) {\n    var v = b.call(this, d, i);\n    return v == null\n        ? a != \"\" && d3_transitionRemove\n        : a != v && interpolate(a, v);\n  }\n\n  function transitionString(d, i, a) {\n    return a != b && interpolate(a, b);\n  }\n\n  return typeof b === \"function\" ? transitionFunction\n      : b == null ? d3_transitionNull\n      : (b += \"\", transitionString);\n}\n\nvar d3_transitionPrototype = [],\n    d3_transitionNextId = 0,\n    d3_transitionId = 0,\n    d3_transitionDefaultDelay = 0,\n    d3_transitionDefaultDuration = 250,\n    d3_transitionDefaultEase = d3.ease(\"cubic-in-out\"),\n    d3_transitionDelay = d3_transitionDefaultDelay,\n    d3_transitionDuration = d3_transitionDefaultDuration,\n    d3_transitionEase = d3_transitionDefaultEase;\n\nd3_transitionPrototype.call = d3_selectionPrototype.call;\n\nd3.transition = function(selection) {\n  return arguments.length\n      ? (d3_transitionId ? selection.transition() : selection)\n      : d3_selectionRoot.transition();\n};\n\nd3.transition.prototype = d3_transitionPrototype;\nd3_transitionPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selector(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if ((node = group[i]) && (subnode = selector.call(node.node, node.node.__data__, i))) {\n        if (\"__data__\" in node.node) subnode.__data__ = node.node.__data__;\n        subgroup.push({node: subnode, delay: node.delay, duration: node.duration});\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_transition(subgroups, this.id, this.time).ease(this.ease());\n};\nd3_transitionPrototype.selectAll = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnodes,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selectorAll(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subnodes = selector.call(node.node, node.node.__data__, i);\n        subgroups.push(subgroup = []);\n        for (var k = -1, o = subnodes.length; ++k < o;) {\n          subgroup.push({node: subnodes[k], delay: node.delay, duration: node.duration});\n        }\n      }\n    }\n  }\n\n  return d3_transition(subgroups, this.id, this.time).ease(this.ease());\n};\nd3_transitionPrototype.attr = function(name, value) {\n  return this.attrTween(name, d3_transitionTween(name, value));\n};\n\nd3_transitionPrototype.attrTween = function(nameNS, tween) {\n  var name = d3.ns.qualify(nameNS);\n\n  function attrTween(d, i) {\n    var f = tween.call(this, d, i, this.getAttribute(name));\n    return f === d3_transitionRemove\n        ? (this.removeAttribute(name), null)\n        : f && function(t) { this.setAttribute(name, f(t)); };\n  }\n\n  function attrTweenNS(d, i) {\n    var f = tween.call(this, d, i, this.getAttributeNS(name.space, name.local));\n    return f === d3_transitionRemove\n        ? (this.removeAttributeNS(name.space, name.local), null)\n        : f && function(t) { this.setAttributeNS(name.space, name.local, f(t)); };\n  }\n\n  return this.tween(\"attr.\" + nameNS, name.local ? attrTweenNS : attrTween);\n};\nd3_transitionPrototype.style = function(name, value, priority) {\n  if (arguments.length < 3) priority = \"\";\n  return this.styleTween(name, d3_transitionTween(name, value), priority);\n};\n\nd3_transitionPrototype.styleTween = function(name, tween, priority) {\n  if (arguments.length < 3) priority = \"\";\n  return this.tween(\"style.\" + name, function(d, i) {\n    var f = tween.call(this, d, i, window.getComputedStyle(this, null).getPropertyValue(name));\n    return f === d3_transitionRemove\n        ? (this.style.removeProperty(name), null)\n        : f && function(t) { this.style.setProperty(name, f(t), priority); };\n  });\n};\nd3_transitionPrototype.text = function(value) {\n  return this.tween(\"text\", function(d, i) {\n    this.textContent = typeof value === \"function\"\n        ? value.call(this, d, i)\n        : value;\n  });\n};\nd3_transitionPrototype.remove = function() {\n  return this.each(\"end.transition\", function() {\n    var p;\n    if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this);\n  });\n};\nd3_transitionPrototype.delay = function(value) {\n  var groups = this;\n  return groups.each(typeof value === \"function\"\n      ? function(d, i, j) { groups[j][i].delay = value.apply(this, arguments) | 0; }\n      : (value = value | 0, function(d, i, j) { groups[j][i].delay = value; }));\n};\nd3_transitionPrototype.duration = function(value) {\n  var groups = this;\n  return groups.each(typeof value === \"function\"\n      ? function(d, i, j) { groups[j][i].duration = Math.max(1, value.apply(this, arguments) | 0); }\n      : (value = Math.max(1, value | 0), function(d, i, j) { groups[j][i].duration = value; }));\n};\nfunction d3_transition_each(callback) {\n  var id = d3_transitionId,\n      ease = d3_transitionEase,\n      delay = d3_transitionDelay,\n      duration = d3_transitionDuration;\n\n  d3_transitionId = this.id;\n  d3_transitionEase = this.ease();\n  for (var j = 0, m = this.length; j < m; j++) {\n    for (var group = this[j], i = 0, n = group.length; i < n; i++) {\n      var node = group[i];\n      if (node) {\n        d3_transitionDelay = this[j][i].delay;\n        d3_transitionDuration = this[j][i].duration;\n        callback.call(node = node.node, node.__data__, i, j);\n      }\n    }\n  }\n\n  d3_transitionId = id;\n  d3_transitionEase = ease;\n  d3_transitionDelay = delay;\n  d3_transitionDuration = duration;\n  return this;\n}\nd3_transitionPrototype.transition = function() {\n  return this.select(d3_this);\n};\nvar d3_timer_queue = null,\n    d3_timer_interval, // is an interval (or frame) active?\n    d3_timer_timeout; // is a timeout active?\n\n// The timer will continue to fire until callback returns true.\nd3.timer = function(callback, delay, then) {\n  var found = false,\n      t0,\n      t1 = d3_timer_queue;\n\n  if (arguments.length < 3) {\n    if (arguments.length < 2) delay = 0;\n    else if (!isFinite(delay)) return;\n    then = Date.now();\n  }\n\n  // See if the callback's already in the queue.\n  while (t1) {\n    if (t1.callback === callback) {\n      t1.then = then;\n      t1.delay = delay;\n      found = true;\n      break;\n    }\n    t0 = t1;\n    t1 = t1.next;\n  }\n\n  // Otherwise, add the callback to the queue.\n  if (!found) d3_timer_queue = {\n    callback: callback,\n    then: then,\n    delay: delay,\n    next: d3_timer_queue\n  };\n\n  // Start animatin'!\n  if (!d3_timer_interval) {\n    d3_timer_timeout = clearTimeout(d3_timer_timeout);\n    d3_timer_interval = 1;\n    d3_timer_frame(d3_timer_step);\n  }\n}\n\nfunction d3_timer_step() {\n  var elapsed,\n      now = Date.now(),\n      t1 = d3_timer_queue;\n\n  while (t1) {\n    elapsed = now - t1.then;\n    if (elapsed >= t1.delay) t1.flush = t1.callback(elapsed);\n    t1 = t1.next;\n  }\n\n  var delay = d3_timer_flush() - now;\n  if (delay > 24) {\n    if (isFinite(delay)) {\n      clearTimeout(d3_timer_timeout);\n      d3_timer_timeout = setTimeout(d3_timer_step, delay);\n    }\n    d3_timer_interval = 0;\n  } else {\n    d3_timer_interval = 1;\n    d3_timer_frame(d3_timer_step);\n  }\n}\n\nd3.timer.flush = function() {\n  var elapsed,\n      now = Date.now(),\n      t1 = d3_timer_queue;\n\n  while (t1) {\n    elapsed = now - t1.then;\n    if (!t1.delay) t1.flush = t1.callback(elapsed);\n    t1 = t1.next;\n  }\n\n  d3_timer_flush();\n};\n\n// Flush after callbacks, to avoid concurrent queue modification.\nfunction d3_timer_flush() {\n  var t0 = null,\n      t1 = d3_timer_queue,\n      then = Infinity;\n  while (t1) {\n    if (t1.flush) {\n      t1 = t0 ? t0.next = t1.next : d3_timer_queue = t1.next;\n    } else {\n      then = Math.min(then, t1.then + t1.delay);\n      t1 = (t0 = t1).next;\n    }\n  }\n  return then;\n}\n\nvar d3_timer_frame = window.requestAnimationFrame\n    || window.webkitRequestAnimationFrame\n    || window.mozRequestAnimationFrame\n    || window.oRequestAnimationFrame\n    || window.msRequestAnimationFrame\n    || function(callback) { setTimeout(callback, 17); };\nd3.transform = function(string) {\n  var g = document.createElementNS(d3.ns.prefix.svg, \"g\"),\n      identity = {a: 1, b: 0, c: 0, d: 1, e: 0, f: 0};\n  return (d3.transform = function(string) {\n    g.setAttribute(\"transform\", string);\n    var t = g.transform.baseVal.consolidate();\n    return new d3_transform(t ? t.matrix : identity);\n  })(string);\n};\n\n// Compute x-scale and normalize the first row.\n// Compute shear and make second row orthogonal to first.\n// Compute y-scale and normalize the second row.\n// Finally, compute the rotation.\nfunction d3_transform(m) {\n  var r0 = [m.a, m.b],\n      r1 = [m.c, m.d],\n      kx = d3_transformNormalize(r0),\n      kz = d3_transformDot(r0, r1),\n      ky = d3_transformNormalize(d3_transformCombine(r1, r0, -kz)) || 0;\n  if (r0[0] * r1[1] < r1[0] * r0[1]) {\n    r0[0] *= -1;\n    r0[1] *= -1;\n    kx *= -1;\n    kz *= -1;\n  }\n  this.rotate = (kx ? Math.atan2(r0[1], r0[0]) : Math.atan2(-r1[0], r1[1])) * d3_transformDegrees;\n  this.translate = [m.e, m.f];\n  this.scale = [kx, ky];\n  this.skew = ky ? Math.atan2(kz, ky) * d3_transformDegrees : 0;\n};\n\nd3_transform.prototype.toString = function() {\n  return \"translate(\" + this.translate\n      + \")rotate(\" + this.rotate\n      + \")skewX(\" + this.skew\n      + \")scale(\" + this.scale\n      + \")\";\n};\n\nfunction d3_transformDot(a, b) {\n  return a[0] * b[0] + a[1] * b[1];\n}\n\nfunction d3_transformNormalize(a) {\n  var k = Math.sqrt(d3_transformDot(a, a));\n  if (k) {\n    a[0] /= k;\n    a[1] /= k;\n  }\n  return k;\n}\n\nfunction d3_transformCombine(a, b, k) {\n  a[0] += k * b[0];\n  a[1] += k * b[1];\n  return a;\n}\n\nvar d3_transformDegrees = 180 / Math.PI;\nd3.mouse = function(container) {\n  return d3_mousePoint(container, d3_eventSource());\n};\n\n// https://bugs.webkit.org/show_bug.cgi?id=44083\nvar d3_mouse_bug44083 = /WebKit/.test(navigator.userAgent) ? -1 : 0;\n\nfunction d3_mousePoint(container, e) {\n  var svg = container.ownerSVGElement || container;\n  if (svg.createSVGPoint) {\n    var point = svg.createSVGPoint();\n    if ((d3_mouse_bug44083 < 0) && (window.scrollX || window.scrollY)) {\n      svg = d3.select(document.body)\n        .append(\"svg\")\n          .style(\"position\", \"absolute\")\n          .style(\"top\", 0)\n          .style(\"left\", 0);\n      var ctm = svg[0][0].getScreenCTM();\n      d3_mouse_bug44083 = !(ctm.f || ctm.e);\n      svg.remove();\n    }\n    if (d3_mouse_bug44083) {\n      point.x = e.pageX;\n      point.y = e.pageY;\n    } else {\n      point.x = e.clientX;\n      point.y = e.clientY;\n    }\n    point = point.matrixTransform(container.getScreenCTM().inverse());\n    return [point.x, point.y];\n  }\n  var rect = container.getBoundingClientRect();\n  return [e.clientX - rect.left - container.clientLeft, e.clientY - rect.top - container.clientTop];\n};\nd3.touches = function(container, touches) {\n  if (arguments.length < 2) touches = d3_eventSource().touches;\n  return touches ? d3_array(touches).map(function(touch) {\n    var point = d3_mousePoint(container, touch);\n    point.identifier = touch.identifier;\n    return point;\n  }) : [];\n};\nfunction d3_noop() {}\nd3.scale = {};\n\nfunction d3_scaleExtent(domain) {\n  var start = domain[0], stop = domain[domain.length - 1];\n  return start < stop ? [start, stop] : [stop, start];\n}\n\nfunction d3_scaleRange(scale) {\n  return scale.rangeExtent ? scale.rangeExtent() : d3_scaleExtent(scale.range());\n}\nfunction d3_scale_nice(domain, nice) {\n  var i0 = 0,\n      i1 = domain.length - 1,\n      x0 = domain[i0],\n      x1 = domain[i1],\n      dx;\n\n  if (x1 < x0) {\n    dx = i0; i0 = i1; i1 = dx;\n    dx = x0; x0 = x1; x1 = dx;\n  }\n\n  if (dx = x1 - x0) {\n    nice = nice(dx);\n    domain[i0] = nice.floor(x0);\n    domain[i1] = nice.ceil(x1);\n  }\n\n  return domain;\n}\n\nfunction d3_scale_niceDefault() {\n  return Math;\n}\nd3.scale.linear = function() {\n  return d3_scale_linear([0, 1], [0, 1], d3.interpolate, false);\n};\n\nfunction d3_scale_linear(domain, range, interpolate, clamp) {\n  var output,\n      input;\n\n  function rescale() {\n    var linear = Math.min(domain.length, range.length) > 2 ? d3_scale_polylinear : d3_scale_bilinear,\n        uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber;\n    output = linear(domain, range, uninterpolate, interpolate);\n    input = linear(range, domain, uninterpolate, d3.interpolate);\n    return scale;\n  }\n\n  function scale(x) {\n    return output(x);\n  }\n\n  // Note: requires range is coercible to number!\n  scale.invert = function(y) {\n    return input(y);\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.map(Number);\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.rangeRound = function(x) {\n    return scale.range(x).interpolate(d3.interpolateRound);\n  };\n\n  scale.clamp = function(x) {\n    if (!arguments.length) return clamp;\n    clamp = x;\n    return rescale();\n  };\n\n  scale.interpolate = function(x) {\n    if (!arguments.length) return interpolate;\n    interpolate = x;\n    return rescale();\n  };\n\n  scale.ticks = function(m) {\n    return d3_scale_linearTicks(domain, m);\n  };\n\n  scale.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(domain, m);\n  };\n\n  scale.nice = function() {\n    d3_scale_nice(domain, d3_scale_linearNice);\n    return rescale();\n  };\n\n  scale.copy = function() {\n    return d3_scale_linear(domain, range, interpolate, clamp);\n  };\n\n  return rescale();\n}\n\nfunction d3_scale_linearRebind(scale, linear) {\n  return d3.rebind(scale, linear, \"range\", \"rangeRound\", \"interpolate\", \"clamp\");\n}\n\nfunction d3_scale_linearNice(dx) {\n  dx = Math.pow(10, Math.round(Math.log(dx) / Math.LN10) - 1);\n  return {\n    floor: function(x) { return Math.floor(x / dx) * dx; },\n    ceil: function(x) { return Math.ceil(x / dx) * dx; }\n  };\n}\n\nfunction d3_scale_linearTickRange(domain, m) {\n  var extent = d3_scaleExtent(domain),\n      span = extent[1] - extent[0],\n      step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)),\n      err = m / span * step;\n\n  // Filter ticks to get closer to the desired count.\n  if (err <= .15) step *= 10;\n  else if (err <= .35) step *= 5;\n  else if (err <= .75) step *= 2;\n\n  // Round start and stop values to step interval.\n  extent[0] = Math.ceil(extent[0] / step) * step;\n  extent[1] = Math.floor(extent[1] / step) * step + step * .5; // inclusive\n  extent[2] = step;\n  return extent;\n}\n\nfunction d3_scale_linearTicks(domain, m) {\n  return d3.range.apply(d3, d3_scale_linearTickRange(domain, m));\n}\n\nfunction d3_scale_linearTickFormat(domain, m) {\n  return d3.format(\",.\" + Math.max(0, -Math.floor(Math.log(d3_scale_linearTickRange(domain, m)[2]) / Math.LN10 + .01)) + \"f\");\n}\nfunction d3_scale_bilinear(domain, range, uninterpolate, interpolate) {\n  var u = uninterpolate(domain[0], domain[1]),\n      i = interpolate(range[0], range[1]);\n  return function(x) {\n    return i(u(x));\n  };\n}\nfunction d3_scale_polylinear(domain, range, uninterpolate, interpolate) {\n  var u = [],\n      i = [],\n      j = 0,\n      k = Math.min(domain.length, range.length) - 1;\n\n  // Handle descending domains.\n  if (domain[k] < domain[0]) {\n    domain = domain.slice().reverse();\n    range = range.slice().reverse();\n  }\n\n  while (++j <= k) {\n    u.push(uninterpolate(domain[j - 1], domain[j]));\n    i.push(interpolate(range[j - 1], range[j]));\n  }\n\n  return function(x) {\n    var j = d3.bisect(domain, x, 1, k) - 1;\n    return i[j](u[j](x));\n  };\n}\nd3.scale.log = function() {\n  return d3_scale_log(d3.scale.linear(), d3_scale_logp);\n};\n\nfunction d3_scale_log(linear, log) {\n  var pow = log.pow;\n\n  function scale(x) {\n    return linear(log(x));\n  }\n\n  scale.invert = function(x) {\n    return pow(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(pow);\n    log = x[0] < 0 ? d3_scale_logn : d3_scale_logp;\n    pow = log.pow;\n    linear.domain(x.map(log));\n    return scale;\n  };\n\n  scale.nice = function() {\n    linear.domain(d3_scale_nice(linear.domain(), d3_scale_niceDefault));\n    return scale;\n  };\n\n  scale.ticks = function() {\n    var extent = d3_scaleExtent(linear.domain()),\n        ticks = [];\n    if (extent.every(isFinite)) {\n      var i = Math.floor(extent[0]),\n          j = Math.ceil(extent[1]),\n          u = pow(extent[0]),\n          v = pow(extent[1]);\n      if (log === d3_scale_logn) {\n        ticks.push(pow(i));\n        for (; i++ < j;) for (var k = 9; k > 0; k--) ticks.push(pow(i) * k);\n      } else {\n        for (; i < j; i++) for (var k = 1; k < 10; k++) ticks.push(pow(i) * k);\n        ticks.push(pow(i));\n      }\n      for (i = 0; ticks[i] < u; i++) {} // strip small values\n      for (j = ticks.length; ticks[j - 1] > v; j--) {} // strip big values\n      ticks = ticks.slice(i, j);\n    }\n    return ticks;\n  };\n\n  scale.tickFormat = function(n, format) {\n    if (arguments.length < 2) format = d3_scale_logFormat;\n    if (arguments.length < 1) return format;\n    var k = n / scale.ticks().length,\n        f = log === d3_scale_logn ? (e = -1e-12, Math.floor) : (e = 1e-12, Math.ceil),\n        e;\n    return function(d) {\n      return d / pow(f(log(d) + e)) < k ? format(d) : \"\";\n    };\n  };\n\n  scale.copy = function() {\n    return d3_scale_log(linear.copy(), log);\n  };\n\n  return d3_scale_linearRebind(scale, linear);\n}\n\nvar d3_scale_logFormat = d3.format(\".0e\");\n\nfunction d3_scale_logp(x) {\n  return Math.log(x < 0 ? 0 : x) / Math.LN10;\n}\n\nfunction d3_scale_logn(x) {\n  return -Math.log(x > 0 ? 0 : -x) / Math.LN10;\n}\n\nd3_scale_logp.pow = function(x) {\n  return Math.pow(10, x);\n};\n\nd3_scale_logn.pow = function(x) {\n  return -Math.pow(10, -x);\n};\nd3.scale.pow = function() {\n  return d3_scale_pow(d3.scale.linear(), 1);\n};\n\nfunction d3_scale_pow(linear, exponent) {\n  var powp = d3_scale_powPow(exponent),\n      powb = d3_scale_powPow(1 / exponent);\n\n  function scale(x) {\n    return linear(powp(x));\n  }\n\n  scale.invert = function(x) {\n    return powb(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(powb);\n    linear.domain(x.map(powp));\n    return scale;\n  };\n\n  scale.ticks = function(m) {\n    return d3_scale_linearTicks(scale.domain(), m);\n  };\n\n  scale.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(scale.domain(), m);\n  };\n\n  scale.nice = function() {\n    return scale.domain(d3_scale_nice(scale.domain(), d3_scale_linearNice));\n  };\n\n  scale.exponent = function(x) {\n    if (!arguments.length) return exponent;\n    var domain = scale.domain();\n    powp = d3_scale_powPow(exponent = x);\n    powb = d3_scale_powPow(1 / exponent);\n    return scale.domain(domain);\n  };\n\n  scale.copy = function() {\n    return d3_scale_pow(linear.copy(), exponent);\n  };\n\n  return d3_scale_linearRebind(scale, linear);\n}\n\nfunction d3_scale_powPow(e) {\n  return function(x) {\n    return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e);\n  };\n}\nd3.scale.sqrt = function() {\n  return d3.scale.pow().exponent(.5);\n};\nd3.scale.ordinal = function() {\n  return d3_scale_ordinal([], {t: \"range\", x: []});\n};\n\nfunction d3_scale_ordinal(domain, ranger) {\n  var index,\n      range,\n      rangeBand;\n\n  function scale(x) {\n    return range[((index.get(x) || index.set(x, domain.push(x))) - 1) % range.length];\n  }\n\n  function steps(start, step) {\n    return d3.range(domain.length).map(function(i) { return start + step * i; });\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = [];\n    index = new d3_Map;\n    var i = -1, n = x.length, xi;\n    while (++i < n) if (!index.has(xi = x[i])) index.set(xi, domain.push(xi));\n    return scale[ranger.t](ranger.x, ranger.p);\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    rangeBand = 0;\n    ranger = {t: \"range\", x: x};\n    return scale;\n  };\n\n  scale.rangePoints = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var start = x[0],\n        stop = x[1],\n        step = (stop - start) / (domain.length - 1 + padding);\n    range = steps(domain.length < 2 ? (start + stop) / 2 : start + step * padding / 2, step);\n    rangeBand = 0;\n    ranger = {t: \"rangePoints\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeBands = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var reverse = x[1] < x[0],\n        start = x[reverse - 0],\n        stop = x[1 - reverse],\n        step = (stop - start) / (domain.length + padding);\n    range = steps(start + step * padding, step);\n    if (reverse) range.reverse();\n    rangeBand = step * (1 - padding);\n    ranger = {t: \"rangeBands\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeRoundBands = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var reverse = x[1] < x[0],\n        start = x[reverse - 0],\n        stop = x[1 - reverse],\n        step = Math.floor((stop - start) / (domain.length + padding)),\n        error = stop - start - (domain.length - padding) * step;\n    range = steps(start + Math.round(error / 2), step);\n    if (reverse) range.reverse();\n    rangeBand = Math.round(step * (1 - padding));\n    ranger = {t: \"rangeRoundBands\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeBand = function() {\n    return rangeBand;\n  };\n\n  scale.rangeExtent = function() {\n    return d3_scaleExtent(ranger.x);\n  };\n\n  scale.copy = function() {\n    return d3_scale_ordinal(domain, ranger);\n  };\n\n  return scale.domain(domain);\n}\n/*\n * This product includes color specifications and designs developed by Cynthia\n * Brewer (http://colorbrewer.org/). See lib/colorbrewer for more information.\n */\n\nd3.scale.category10 = function() {\n  return d3.scale.ordinal().range(d3_category10);\n};\n\nd3.scale.category20 = function() {\n  return d3.scale.ordinal().range(d3_category20);\n};\n\nd3.scale.category20b = function() {\n  return d3.scale.ordinal().range(d3_category20b);\n};\n\nd3.scale.category20c = function() {\n  return d3.scale.ordinal().range(d3_category20c);\n};\n\nvar d3_category10 = [\n  \"#1f77b4\", \"#ff7f0e\", \"#2ca02c\", \"#d62728\", \"#9467bd\",\n  \"#8c564b\", \"#e377c2\", \"#7f7f7f\", \"#bcbd22\", \"#17becf\"\n];\n\nvar d3_category20 = [\n  \"#1f77b4\", \"#aec7e8\",\n  \"#ff7f0e\", \"#ffbb78\",\n  \"#2ca02c\", \"#98df8a\",\n  \"#d62728\", \"#ff9896\",\n  \"#9467bd\", \"#c5b0d5\",\n  \"#8c564b\", \"#c49c94\",\n  \"#e377c2\", \"#f7b6d2\",\n  \"#7f7f7f\", \"#c7c7c7\",\n  \"#bcbd22\", \"#dbdb8d\",\n  \"#17becf\", \"#9edae5\"\n];\n\nvar d3_category20b = [\n  \"#393b79\", \"#5254a3\", \"#6b6ecf\", \"#9c9ede\",\n  \"#637939\", \"#8ca252\", \"#b5cf6b\", \"#cedb9c\",\n  \"#8c6d31\", \"#bd9e39\", \"#e7ba52\", \"#e7cb94\",\n  \"#843c39\", \"#ad494a\", \"#d6616b\", \"#e7969c\",\n  \"#7b4173\", \"#a55194\", \"#ce6dbd\", \"#de9ed6\"\n];\n\nvar d3_category20c = [\n  \"#3182bd\", \"#6baed6\", \"#9ecae1\", \"#c6dbef\",\n  \"#e6550d\", \"#fd8d3c\", \"#fdae6b\", \"#fdd0a2\",\n  \"#31a354\", \"#74c476\", \"#a1d99b\", \"#c7e9c0\",\n  \"#756bb1\", \"#9e9ac8\", \"#bcbddc\", \"#dadaeb\",\n  \"#636363\", \"#969696\", \"#bdbdbd\", \"#d9d9d9\"\n];\nd3.scale.quantile = function() {\n  return d3_scale_quantile([], []);\n};\n\nfunction d3_scale_quantile(domain, range) {\n  var thresholds;\n\n  function rescale() {\n    var k = 0,\n        n = domain.length,\n        q = range.length;\n    thresholds = [];\n    while (++k < q) thresholds[k - 1] = d3.quantile(domain, k / q);\n    return scale;\n  }\n\n  function scale(x) {\n    if (isNaN(x = +x)) return NaN;\n    return range[d3.bisect(thresholds, x)];\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.filter(function(d) { return !isNaN(d); }).sort(d3.ascending);\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.quantiles = function() {\n    return thresholds;\n  };\n\n  scale.copy = function() {\n    return d3_scale_quantile(domain, range); // copy on write!\n  };\n\n  return rescale();\n}\nd3.scale.quantize = function() {\n  return d3_scale_quantize(0, 1, [0, 1]);\n};\n\nfunction d3_scale_quantize(x0, x1, range) {\n  var kx, i;\n\n  function scale(x) {\n    return range[Math.max(0, Math.min(i, Math.floor(kx * (x - x0))))];\n  }\n\n  function rescale() {\n    kx = range.length / (x1 - x0);\n    i = range.length - 1;\n    return scale;\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return [x0, x1];\n    x0 = +x[0];\n    x1 = +x[x.length - 1];\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.copy = function() {\n    return d3_scale_quantize(x0, x1, range); // copy on write\n  };\n\n  return rescale();\n}\nd3.scale.identity = function() {\n  return d3_scale_identity([0, 1]);\n};\n\nfunction d3_scale_identity(domain) {\n\n  function identity(x) { return +x; }\n\n  identity.invert = identity;\n\n  identity.domain = identity.range = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.map(identity);\n    return identity;\n  };\n\n  identity.ticks = function(m) {\n    return d3_scale_linearTicks(domain, m);\n  };\n\n  identity.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(domain, m);\n  };\n\n  identity.copy = function() {\n    return d3_scale_identity(domain);\n  };\n\n  return identity;\n}\nd3.svg = {};\nd3.svg.arc = function() {\n  var innerRadius = d3_svg_arcInnerRadius,\n      outerRadius = d3_svg_arcOuterRadius,\n      startAngle = d3_svg_arcStartAngle,\n      endAngle = d3_svg_arcEndAngle;\n\n  function arc() {\n    var r0 = innerRadius.apply(this, arguments),\n        r1 = outerRadius.apply(this, arguments),\n        a0 = startAngle.apply(this, arguments) + d3_svg_arcOffset,\n        a1 = endAngle.apply(this, arguments) + d3_svg_arcOffset,\n        da = (a1 < a0 && (da = a0, a0 = a1, a1 = da), a1 - a0),\n        df = da < Math.PI ? \"0\" : \"1\",\n        c0 = Math.cos(a0),\n        s0 = Math.sin(a0),\n        c1 = Math.cos(a1),\n        s1 = Math.sin(a1);\n    return da >= d3_svg_arcMax\n      ? (r0\n      ? \"M0,\" + r1\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + (-r1)\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + r1\n      + \"M0,\" + r0\n      + \"A\" + r0 + \",\" + r0 + \" 0 1,0 0,\" + (-r0)\n      + \"A\" + r0 + \",\" + r0 + \" 0 1,0 0,\" + r0\n      + \"Z\"\n      : \"M0,\" + r1\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + (-r1)\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + r1\n      + \"Z\")\n      : (r0\n      ? \"M\" + r1 * c0 + \",\" + r1 * s0\n      + \"A\" + r1 + \",\" + r1 + \" 0 \" + df + \",1 \" + r1 * c1 + \",\" + r1 * s1\n      + \"L\" + r0 * c1 + \",\" + r0 * s1\n      + \"A\" + r0 + \",\" + r0 + \" 0 \" + df + \",0 \" + r0 * c0 + \",\" + r0 * s0\n      + \"Z\"\n      : \"M\" + r1 * c0 + \",\" + r1 * s0\n      + \"A\" + r1 + \",\" + r1 + \" 0 \" + df + \",1 \" + r1 * c1 + \",\" + r1 * s1\n      + \"L0,0\"\n      + \"Z\");\n  }\n\n  arc.innerRadius = function(v) {\n    if (!arguments.length) return innerRadius;\n    innerRadius = d3.functor(v);\n    return arc;\n  };\n\n  arc.outerRadius = function(v) {\n    if (!arguments.length) return outerRadius;\n    outerRadius = d3.functor(v);\n    return arc;\n  };\n\n  arc.startAngle = function(v) {\n    if (!arguments.length) return startAngle;\n    startAngle = d3.functor(v);\n    return arc;\n  };\n\n  arc.endAngle = function(v) {\n    if (!arguments.length) return endAngle;\n    endAngle = d3.functor(v);\n    return arc;\n  };\n\n  arc.centroid = function() {\n    var r = (innerRadius.apply(this, arguments)\n        + outerRadius.apply(this, arguments)) / 2,\n        a = (startAngle.apply(this, arguments)\n        + endAngle.apply(this, arguments)) / 2 + d3_svg_arcOffset;\n    return [Math.cos(a) * r, Math.sin(a) * r];\n  };\n\n  return arc;\n};\n\nvar d3_svg_arcOffset = -Math.PI / 2,\n    d3_svg_arcMax = 2 * Math.PI - 1e-6;\n\nfunction d3_svg_arcInnerRadius(d) {\n  return d.innerRadius;\n}\n\nfunction d3_svg_arcOuterRadius(d) {\n  return d.outerRadius;\n}\n\nfunction d3_svg_arcStartAngle(d) {\n  return d.startAngle;\n}\n\nfunction d3_svg_arcEndAngle(d) {\n  return d.endAngle;\n}\nfunction d3_svg_line(projection) {\n  var x = d3_svg_lineX,\n      y = d3_svg_lineY,\n      interpolate = d3_svg_lineInterpolatorDefault,\n      interpolator = d3_svg_lineInterpolators.get(interpolate),\n      tension = .7;\n\n  function line(d) {\n    return d.length < 1 ? null : \"M\" + interpolator(projection(d3_svg_linePoints(this, d, x, y)), tension);\n  }\n\n  line.x = function(v) {\n    if (!arguments.length) return x;\n    x = v;\n    return line;\n  };\n\n  line.y = function(v) {\n    if (!arguments.length) return y;\n    y = v;\n    return line;\n  };\n\n  line.interpolate = function(v) {\n    if (!arguments.length) return interpolate;\n    if (!d3_svg_lineInterpolators.has(v += \"\")) v = d3_svg_lineInterpolatorDefault;\n    interpolator = d3_svg_lineInterpolators.get(interpolate = v);\n    return line;\n  };\n\n  line.tension = function(v) {\n    if (!arguments.length) return tension;\n    tension = v;\n    return line;\n  };\n\n  return line;\n}\n\nd3.svg.line = function() {\n  return d3_svg_line(Object);\n};\n\n// Converts the specified array of data into an array of points\n// (x-y tuples), by evaluating the specified `x` and `y` functions on each\n// data point. The `this` context of the evaluated functions is the specified\n// \"self\" object; each function is passed the current datum and index.\nfunction d3_svg_linePoints(self, d, x, y) {\n  var points = [],\n      i = -1,\n      n = d.length,\n      fx = typeof x === \"function\",\n      fy = typeof y === \"function\",\n      value;\n  if (fx && fy) {\n    while (++i < n) points.push([\n      x.call(self, value = d[i], i),\n      y.call(self, value, i)\n    ]);\n  } else if (fx) {\n    while (++i < n) points.push([x.call(self, d[i], i), y]);\n  } else if (fy) {\n    while (++i < n) points.push([x, y.call(self, d[i], i)]);\n  } else {\n    while (++i < n) points.push([x, y]);\n  }\n  return points;\n}\n\n// The default `x` property, which references d[0].\nfunction d3_svg_lineX(d) {\n  return d[0];\n}\n\n// The default `y` property, which references d[1].\nfunction d3_svg_lineY(d) {\n  return d[1];\n}\n\nvar d3_svg_lineInterpolatorDefault = \"linear\";\n\n// The various interpolators supported by the `line` class.\nvar d3_svg_lineInterpolators = d3.map({\n  \"linear\": d3_svg_lineLinear,\n  \"step-before\": d3_svg_lineStepBefore,\n  \"step-after\": d3_svg_lineStepAfter,\n  \"basis\": d3_svg_lineBasis,\n  \"basis-open\": d3_svg_lineBasisOpen,\n  \"basis-closed\": d3_svg_lineBasisClosed,\n  \"bundle\": d3_svg_lineBundle,\n  \"cardinal\": d3_svg_lineCardinal,\n  \"cardinal-open\": d3_svg_lineCardinalOpen,\n  \"cardinal-closed\": d3_svg_lineCardinalClosed,\n  \"monotone\": d3_svg_lineMonotone\n});\n\n// Linear interpolation; generates \"L\" commands.\nfunction d3_svg_lineLinear(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"L\", (p = points[i])[0], \",\", p[1]);\n  return path.join(\"\");\n}\n\n// Step interpolation; generates \"H\" and \"V\" commands.\nfunction d3_svg_lineStepBefore(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"V\", (p = points[i])[1], \"H\", p[0]);\n  return path.join(\"\");\n}\n\n// Step interpolation; generates \"H\" and \"V\" commands.\nfunction d3_svg_lineStepAfter(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"H\", (p = points[i])[0], \"V\", p[1]);\n  return path.join(\"\");\n}\n\n// Open cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinalOpen(points, tension) {\n  return points.length < 4\n      ? d3_svg_lineLinear(points)\n      : points[1] + d3_svg_lineHermite(points.slice(1, points.length - 1),\n        d3_svg_lineCardinalTangents(points, tension));\n}\n\n// Closed cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinalClosed(points, tension) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] + d3_svg_lineHermite((points.push(points[0]), points),\n        d3_svg_lineCardinalTangents([points[points.length - 2]]\n        .concat(points, [points[1]]), tension));\n}\n\n// Cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinal(points, tension, closed) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] + d3_svg_lineHermite(points,\n        d3_svg_lineCardinalTangents(points, tension));\n}\n\n// Hermite spline construction; generates \"C\" commands.\nfunction d3_svg_lineHermite(points, tangents) {\n  if (tangents.length < 1\n      || (points.length != tangents.length\n      && points.length != tangents.length + 2)) {\n    return d3_svg_lineLinear(points);\n  }\n\n  var quad = points.length != tangents.length,\n      path = \"\",\n      p0 = points[0],\n      p = points[1],\n      t0 = tangents[0],\n      t = t0,\n      pi = 1;\n\n  if (quad) {\n    path += \"Q\" + (p[0] - t0[0] * 2 / 3) + \",\" + (p[1] - t0[1] * 2 / 3)\n        + \",\" + p[0] + \",\" + p[1];\n    p0 = points[1];\n    pi = 2;\n  }\n\n  if (tangents.length > 1) {\n    t = tangents[1];\n    p = points[pi];\n    pi++;\n    path += \"C\" + (p0[0] + t0[0]) + \",\" + (p0[1] + t0[1])\n        + \",\" + (p[0] - t[0]) + \",\" + (p[1] - t[1])\n        + \",\" + p[0] + \",\" + p[1];\n    for (var i = 2; i < tangents.length; i++, pi++) {\n      p = points[pi];\n      t = tangents[i];\n      path += \"S\" + (p[0] - t[0]) + \",\" + (p[1] - t[1])\n          + \",\" + p[0] + \",\" + p[1];\n    }\n  }\n\n  if (quad) {\n    var lp = points[pi];\n    path += \"Q\" + (p[0] + t[0] * 2 / 3) + \",\" + (p[1] + t[1] * 2 / 3)\n        + \",\" + lp[0] + \",\" + lp[1];\n  }\n\n  return path;\n}\n\n// Generates tangents for a cardinal spline.\nfunction d3_svg_lineCardinalTangents(points, tension) {\n  var tangents = [],\n      a = (1 - tension) / 2,\n      p0,\n      p1 = points[0],\n      p2 = points[1],\n      i = 1,\n      n = points.length;\n  while (++i < n) {\n    p0 = p1;\n    p1 = p2;\n    p2 = points[i];\n    tangents.push([a * (p2[0] - p0[0]), a * (p2[1] - p0[1])]);\n  }\n  return tangents;\n}\n\n// B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasis(points) {\n  if (points.length < 3) return d3_svg_lineLinear(points);\n  var i = 1,\n      n = points.length,\n      pi = points[0],\n      x0 = pi[0],\n      y0 = pi[1],\n      px = [x0, x0, x0, (pi = points[1])[0]],\n      py = [y0, y0, y0, pi[1]],\n      path = [x0, \",\", y0];\n  d3_svg_lineBasisBezier(path, px, py);\n  while (++i < n) {\n    pi = points[i];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  i = -1;\n  while (++i < 2) {\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\n// Open B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasisOpen(points) {\n  if (points.length < 4) return d3_svg_lineLinear(points);\n  var path = [],\n      i = -1,\n      n = points.length,\n      pi,\n      px = [0],\n      py = [0];\n  while (++i < 3) {\n    pi = points[i];\n    px.push(pi[0]);\n    py.push(pi[1]);\n  }\n  path.push(d3_svg_lineDot4(d3_svg_lineBasisBezier3, px)\n    + \",\" + d3_svg_lineDot4(d3_svg_lineBasisBezier3, py));\n  --i; while (++i < n) {\n    pi = points[i];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\n// Closed B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasisClosed(points) {\n  var path,\n      i = -1,\n      n = points.length,\n      m = n + 4,\n      pi,\n      px = [],\n      py = [];\n  while (++i < 4) {\n    pi = points[i % n];\n    px.push(pi[0]);\n    py.push(pi[1]);\n  }\n  path = [\n    d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), \",\",\n    d3_svg_lineDot4(d3_svg_lineBasisBezier3, py)\n  ];\n  --i; while (++i < m) {\n    pi = points[i % n];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\nfunction d3_svg_lineBundle(points, tension) {\n  var n = points.length - 1,\n      x0 = points[0][0],\n      y0 = points[0][1],\n      dx = points[n][0] - x0,\n      dy = points[n][1] - y0,\n      i = -1,\n      p,\n      t;\n  while (++i <= n) {\n    p = points[i];\n    t = i / n;\n    p[0] = tension * p[0] + (1 - tension) * (x0 + t * dx);\n    p[1] = tension * p[1] + (1 - tension) * (y0 + t * dy);\n  }\n  return d3_svg_lineBasis(points);\n}\n\n// Returns the dot product of the given four-element vectors.\nfunction d3_svg_lineDot4(a, b) {\n  return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3];\n}\n\n// Matrix to transform basis (b-spline) control points to bezier\n// control points. Derived from FvD 11.2.8.\nvar d3_svg_lineBasisBezier1 = [0, 2/3, 1/3, 0],\n    d3_svg_lineBasisBezier2 = [0, 1/3, 2/3, 0],\n    d3_svg_lineBasisBezier3 = [0, 1/6, 2/3, 1/6];\n\n// Pushes a \"C\" Bézier curve onto the specified path array, given the\n// two specified four-element arrays which define the control points.\nfunction d3_svg_lineBasisBezier(path, x, y) {\n  path.push(\n      \"C\", d3_svg_lineDot4(d3_svg_lineBasisBezier1, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier1, y),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier2, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier2, y),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier3, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier3, y));\n}\n\n// Computes the slope from points p0 to p1.\nfunction d3_svg_lineSlope(p0, p1) {\n  return (p1[1] - p0[1]) / (p1[0] - p0[0]);\n}\n\n// Compute three-point differences for the given points.\n// http://en.wikipedia.org/wiki/Cubic_Hermite_spline#Finite_difference\nfunction d3_svg_lineFiniteDifferences(points) {\n  var i = 0,\n      j = points.length - 1,\n      m = [],\n      p0 = points[0],\n      p1 = points[1],\n      d = m[0] = d3_svg_lineSlope(p0, p1);\n  while (++i < j) {\n    m[i] = d + (d = d3_svg_lineSlope(p0 = p1, p1 = points[i + 1]));\n  }\n  m[i] = d;\n  return m;\n}\n\n// Interpolates the given points using Fritsch-Carlson Monotone cubic Hermite\n// interpolation. Returns an array of tangent vectors. For details, see\n// http://en.wikipedia.org/wiki/Monotone_cubic_interpolation\nfunction d3_svg_lineMonotoneTangents(points) {\n  var tangents = [],\n      d,\n      a,\n      b,\n      s,\n      m = d3_svg_lineFiniteDifferences(points),\n      i = -1,\n      j = points.length - 1;\n\n  // The first two steps are done by computing finite-differences:\n  // 1. Compute the slopes of the secant lines between successive points.\n  // 2. Initialize the tangents at every point as the average of the secants.\n\n  // Then, for each segment…\n  while (++i < j) {\n    d = d3_svg_lineSlope(points[i], points[i + 1]);\n\n    // 3. If two successive yk = y{k + 1} are equal (i.e., d is zero), then set\n    // mk = m{k + 1} = 0 as the spline connecting these points must be flat to\n    // preserve monotonicity. Ignore step 4 and 5 for those k.\n\n    if (Math.abs(d) < 1e-6) {\n      m[i] = m[i + 1] = 0;\n    } else {\n      // 4. Let ak = mk / dk and bk = m{k + 1} / dk.\n      a = m[i] / d;\n      b = m[i + 1] / d;\n\n      // 5. Prevent overshoot and ensure monotonicity by restricting the\n      // magnitude of vector <ak, bk> to a circle of radius 3.\n      s = a * a + b * b;\n      if (s > 9) {\n        s = d * 3 / Math.sqrt(s);\n        m[i] = s * a;\n        m[i + 1] = s * b;\n      }\n    }\n  }\n\n  // Compute the normalized tangent vector from the slopes. Note that if x is\n  // not monotonic, it's possible that the slope will be infinite, so we protect\n  // against NaN by setting the coordinate to zero.\n  i = -1; while (++i <= j) {\n    s = (points[Math.min(j, i + 1)][0] - points[Math.max(0, i - 1)][0])\n      / (6 * (1 + m[i] * m[i]));\n    tangents.push([s || 0, m[i] * s || 0]);\n  }\n\n  return tangents;\n}\n\nfunction d3_svg_lineMonotone(points) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] +\n        d3_svg_lineHermite(points, d3_svg_lineMonotoneTangents(points));\n}\nd3.svg.line.radial = function() {\n  var line = d3_svg_line(d3_svg_lineRadial);\n  line.radius = line.x, delete line.x;\n  line.angle = line.y, delete line.y;\n  return line;\n};\n\nfunction d3_svg_lineRadial(points) {\n  var point,\n      i = -1,\n      n = points.length,\n      r,\n      a;\n  while (++i < n) {\n    point = points[i];\n    r = point[0];\n    a = point[1] + d3_svg_arcOffset;\n    point[0] = r * Math.cos(a);\n    point[1] = r * Math.sin(a);\n  }\n  return points;\n}\nfunction d3_svg_area(projection) {\n  var x0 = d3_svg_lineX,\n      x1 = d3_svg_lineX,\n      y0 = 0,\n      y1 = d3_svg_lineY,\n      interpolate,\n      i0,\n      i1,\n      tension = .7;\n\n  function area(d) {\n    if (d.length < 1) return null;\n    var points0 = d3_svg_linePoints(this, d, x0, y0),\n        points1 = d3_svg_linePoints(this, d, x0 === x1 ? d3_svg_areaX(points0) : x1, y0 === y1 ? d3_svg_areaY(points0) : y1);\n    return \"M\" + i0(projection(points1), tension)\n         + \"L\" + i1(projection(points0.reverse()), tension)\n         + \"Z\";\n  }\n\n  area.x = function(x) {\n    if (!arguments.length) return x1;\n    x0 = x1 = x;\n    return area;\n  };\n\n  area.x0 = function(x) {\n    if (!arguments.length) return x0;\n    x0 = x;\n    return area;\n  };\n\n  area.x1 = function(x) {\n    if (!arguments.length) return x1;\n    x1 = x;\n    return area;\n  };\n\n  area.y = function(y) {\n    if (!arguments.length) return y1;\n    y0 = y1 = y;\n    return area;\n  };\n\n  area.y0 = function(y) {\n    if (!arguments.length) return y0;\n    y0 = y;\n    return area;\n  };\n\n  area.y1 = function(y) {\n    if (!arguments.length) return y1;\n    y1 = y;\n    return area;\n  };\n\n  area.interpolate = function(x) {\n    if (!arguments.length) return interpolate;\n    if (!d3_svg_lineInterpolators.has(x += \"\")) x = d3_svg_lineInterpolatorDefault;\n    i0 = d3_svg_lineInterpolators.get(interpolate = x);\n    i1 = i0.reverse || i0;\n    return area;\n  };\n\n  area.tension = function(x) {\n    if (!arguments.length) return tension;\n    tension = x;\n    return area;\n  };\n\n  return area.interpolate(\"linear\");\n}\n\nd3_svg_lineStepBefore.reverse = d3_svg_lineStepAfter;\nd3_svg_lineStepAfter.reverse = d3_svg_lineStepBefore;\n\nd3.svg.area = function() {\n  return d3_svg_area(Object);\n};\n\nfunction d3_svg_areaX(points) {\n  return function(d, i) {\n    return points[i][0];\n  };\n}\n\nfunction d3_svg_areaY(points) {\n  return function(d, i) {\n    return points[i][1];\n  };\n}\nd3.svg.area.radial = function() {\n  var area = d3_svg_area(d3_svg_lineRadial);\n  area.radius = area.x, delete area.x;\n  area.innerRadius = area.x0, delete area.x0;\n  area.outerRadius = area.x1, delete area.x1;\n  area.angle = area.y, delete area.y;\n  area.startAngle = area.y0, delete area.y0;\n  area.endAngle = area.y1, delete area.y1;\n  return area;\n};\nd3.svg.chord = function() {\n  var source = d3_svg_chordSource,\n      target = d3_svg_chordTarget,\n      radius = d3_svg_chordRadius,\n      startAngle = d3_svg_arcStartAngle,\n      endAngle = d3_svg_arcEndAngle;\n\n  // TODO Allow control point to be customized.\n\n  function chord(d, i) {\n    var s = subgroup(this, source, d, i),\n        t = subgroup(this, target, d, i);\n    return \"M\" + s.p0\n      + arc(s.r, s.p1, s.a1 - s.a0) + (equals(s, t)\n      ? curve(s.r, s.p1, s.r, s.p0)\n      : curve(s.r, s.p1, t.r, t.p0)\n      + arc(t.r, t.p1, t.a1 - t.a0)\n      + curve(t.r, t.p1, s.r, s.p0))\n      + \"Z\";\n  }\n\n  function subgroup(self, f, d, i) {\n    var subgroup = f.call(self, d, i),\n        r = radius.call(self, subgroup, i),\n        a0 = startAngle.call(self, subgroup, i) + d3_svg_arcOffset,\n        a1 = endAngle.call(self, subgroup, i) + d3_svg_arcOffset;\n    return {\n      r: r,\n      a0: a0,\n      a1: a1,\n      p0: [r * Math.cos(a0), r * Math.sin(a0)],\n      p1: [r * Math.cos(a1), r * Math.sin(a1)]\n    };\n  }\n\n  function equals(a, b) {\n    return a.a0 == b.a0 && a.a1 == b.a1;\n  }\n\n  function arc(r, p, a) {\n    return \"A\" + r + \",\" + r + \" 0 \" + +(a > Math.PI) + \",1 \" + p;\n  }\n\n  function curve(r0, p0, r1, p1) {\n    return \"Q 0,0 \" + p1;\n  }\n\n  chord.radius = function(v) {\n    if (!arguments.length) return radius;\n    radius = d3.functor(v);\n    return chord;\n  };\n\n  chord.source = function(v) {\n    if (!arguments.length) return source;\n    source = d3.functor(v);\n    return chord;\n  };\n\n  chord.target = function(v) {\n    if (!arguments.length) return target;\n    target = d3.functor(v);\n    return chord;\n  };\n\n  chord.startAngle = function(v) {\n    if (!arguments.length) return startAngle;\n    startAngle = d3.functor(v);\n    return chord;\n  };\n\n  chord.endAngle = function(v) {\n    if (!arguments.length) return endAngle;\n    endAngle = d3.functor(v);\n    return chord;\n  };\n\n  return chord;\n};\n\nfunction d3_svg_chordSource(d) {\n  return d.source;\n}\n\nfunction d3_svg_chordTarget(d) {\n  return d.target;\n}\n\nfunction d3_svg_chordRadius(d) {\n  return d.radius;\n}\n\nfunction d3_svg_chordStartAngle(d) {\n  return d.startAngle;\n}\n\nfunction d3_svg_chordEndAngle(d) {\n  return d.endAngle;\n}\nd3.svg.diagonal = function() {\n  var source = d3_svg_chordSource,\n      target = d3_svg_chordTarget,\n      projection = d3_svg_diagonalProjection;\n\n  function diagonal(d, i) {\n    var p0 = source.call(this, d, i),\n        p3 = target.call(this, d, i),\n        m = (p0.y + p3.y) / 2,\n        p = [p0, {x: p0.x, y: m}, {x: p3.x, y: m}, p3];\n    p = p.map(projection);\n    return \"M\" + p[0] + \"C\" + p[1] + \" \" + p[2] + \" \" + p[3];\n  }\n\n  diagonal.source = function(x) {\n    if (!arguments.length) return source;\n    source = d3.functor(x);\n    return diagonal;\n  };\n\n  diagonal.target = function(x) {\n    if (!arguments.length) return target;\n    target = d3.functor(x);\n    return diagonal;\n  };\n\n  diagonal.projection = function(x) {\n    if (!arguments.length) return projection;\n    projection = x;\n    return diagonal;\n  };\n\n  return diagonal;\n};\n\nfunction d3_svg_diagonalProjection(d) {\n  return [d.x, d.y];\n}\nd3.svg.diagonal.radial = function() {\n  var diagonal = d3.svg.diagonal(),\n      projection = d3_svg_diagonalProjection,\n      projection_ = diagonal.projection;\n\n  diagonal.projection = function(x) {\n    return arguments.length\n        ? projection_(d3_svg_diagonalRadialProjection(projection = x))\n        : projection;\n  };\n\n  return diagonal;\n};\n\nfunction d3_svg_diagonalRadialProjection(projection) {\n  return function() {\n    var d = projection.apply(this, arguments),\n        r = d[0],\n        a = d[1] + d3_svg_arcOffset;\n    return [r * Math.cos(a), r * Math.sin(a)];\n  };\n}\nd3.svg.mouse = d3.mouse;\nd3.svg.touches = d3.touches;\nd3.svg.symbol = function() {\n  var type = d3_svg_symbolType,\n      size = d3_svg_symbolSize;\n\n  function symbol(d, i) {\n    return (d3_svg_symbols.get(type.call(this, d, i))\n        || d3_svg_symbolCircle)\n        (size.call(this, d, i));\n  }\n\n  symbol.type = function(x) {\n    if (!arguments.length) return type;\n    type = d3.functor(x);\n    return symbol;\n  };\n\n  // size of symbol in square pixels\n  symbol.size = function(x) {\n    if (!arguments.length) return size;\n    size = d3.functor(x);\n    return symbol;\n  };\n\n  return symbol;\n};\n\nfunction d3_svg_symbolSize() {\n  return 64;\n}\n\nfunction d3_svg_symbolType() {\n  return \"circle\";\n}\n\nfunction d3_svg_symbolCircle(size) {\n  var r = Math.sqrt(size / Math.PI);\n  return \"M0,\" + r\n      + \"A\" + r + \",\" + r + \" 0 1,1 0,\" + (-r)\n      + \"A\" + r + \",\" + r + \" 0 1,1 0,\" + r\n      + \"Z\";\n}\n\n// TODO cross-diagonal?\nvar d3_svg_symbols = d3.map({\n  \"circle\": d3_svg_symbolCircle,\n  \"cross\": function(size) {\n    var r = Math.sqrt(size / 5) / 2;\n    return \"M\" + -3 * r + \",\" + -r\n        + \"H\" + -r\n        + \"V\" + -3 * r\n        + \"H\" + r\n        + \"V\" + -r\n        + \"H\" + 3 * r\n        + \"V\" + r\n        + \"H\" + r\n        + \"V\" + 3 * r\n        + \"H\" + -r\n        + \"V\" + r\n        + \"H\" + -3 * r\n        + \"Z\";\n  },\n  \"diamond\": function(size) {\n    var ry = Math.sqrt(size / (2 * d3_svg_symbolTan30)),\n        rx = ry * d3_svg_symbolTan30;\n    return \"M0,\" + -ry\n        + \"L\" + rx + \",0\"\n        + \" 0,\" + ry\n        + \" \" + -rx + \",0\"\n        + \"Z\";\n  },\n  \"square\": function(size) {\n    var r = Math.sqrt(size) / 2;\n    return \"M\" + -r + \",\" + -r\n        + \"L\" + r + \",\" + -r\n        + \" \" + r + \",\" + r\n        + \" \" + -r + \",\" + r\n        + \"Z\";\n  },\n  \"triangle-down\": function(size) {\n    var rx = Math.sqrt(size / d3_svg_symbolSqrt3),\n        ry = rx * d3_svg_symbolSqrt3 / 2;\n    return \"M0,\" + ry\n        + \"L\" + rx +\",\" + -ry\n        + \" \" + -rx + \",\" + -ry\n        + \"Z\";\n  },\n  \"triangle-up\": function(size) {\n    var rx = Math.sqrt(size / d3_svg_symbolSqrt3),\n        ry = rx * d3_svg_symbolSqrt3 / 2;\n    return \"M0,\" + -ry\n        + \"L\" + rx +\",\" + ry\n        + \" \" + -rx + \",\" + ry\n        + \"Z\";\n  }\n});\n\nd3.svg.symbolTypes = d3_svg_symbols.keys();\n\nvar d3_svg_symbolSqrt3 = Math.sqrt(3),\n    d3_svg_symbolTan30 = Math.tan(30 * Math.PI / 180);\nd3.svg.axis = function() {\n  var scale = d3.scale.linear(),\n      orient = \"bottom\",\n      tickMajorSize = 6,\n      tickMinorSize = 6,\n      tickEndSize = 6,\n      tickPadding = 3,\n      tickArguments_ = [10],\n      tickValues = null,\n      tickFormat_,\n      tickSubdivide = 0;\n\n  function axis(g) {\n    g.each(function() {\n      var g = d3.select(this);\n\n      // Ticks, or domain values for ordinal scales.\n      var ticks = tickValues == null ? (scale.ticks ? scale.ticks.apply(scale, tickArguments_) : scale.domain()) : tickValues,\n          tickFormat = tickFormat_ == null ? (scale.tickFormat ? scale.tickFormat.apply(scale, tickArguments_) : String) : tickFormat_;\n\n      // Minor ticks.\n      var subticks = d3_svg_axisSubdivide(scale, ticks, tickSubdivide),\n          subtick = g.selectAll(\".minor\").data(subticks, String),\n          subtickEnter = subtick.enter().insert(\"line\", \"g\").attr(\"class\", \"tick minor\").style(\"opacity\", 1e-6),\n          subtickExit = d3.transition(subtick.exit()).style(\"opacity\", 1e-6).remove(),\n          subtickUpdate = d3.transition(subtick).style(\"opacity\", 1);\n\n      // Major ticks.\n      var tick = g.selectAll(\"g\").data(ticks, String),\n          tickEnter = tick.enter().insert(\"g\", \"path\").style(\"opacity\", 1e-6),\n          tickExit = d3.transition(tick.exit()).style(\"opacity\", 1e-6).remove(),\n          tickUpdate = d3.transition(tick).style(\"opacity\", 1),\n          tickTransform;\n\n      // Domain.\n      var range = d3_scaleRange(scale),\n          path = g.selectAll(\".domain\").data([0]),\n          pathEnter = path.enter().append(\"path\").attr(\"class\", \"domain\"),\n          pathUpdate = d3.transition(path);\n\n      // Stash a snapshot of the new scale, and retrieve the old snapshot.\n      var scale1 = scale.copy(),\n          scale0 = this.__chart__ || scale1;\n      this.__chart__ = scale1;\n\n      tickEnter.append(\"line\").attr(\"class\", \"tick\");\n      tickEnter.append(\"text\");\n      tickUpdate.select(\"text\").text(tickFormat);\n\n      switch (orient) {\n        case \"bottom\": {\n          tickTransform = d3_svg_axisX;\n          subtickEnter.attr(\"y2\", tickMinorSize);\n          subtickUpdate.attr(\"x2\", 0).attr(\"y2\", tickMinorSize);\n          tickEnter.select(\"line\").attr(\"y2\", tickMajorSize);\n          tickEnter.select(\"text\").attr(\"y\", Math.max(tickMajorSize, 0) + tickPadding);\n          tickUpdate.select(\"line\").attr(\"x2\", 0).attr(\"y2\", tickMajorSize);\n          tickUpdate.select(\"text\").attr(\"x\", 0).attr(\"y\", Math.max(tickMajorSize, 0) + tickPadding).attr(\"dy\", \".71em\").attr(\"text-anchor\", \"middle\");\n          pathUpdate.attr(\"d\", \"M\" + range[0] + \",\" + tickEndSize + \"V0H\" + range[1] + \"V\" + tickEndSize);\n          break;\n        }\n        case \"top\": {\n          tickTransform = d3_svg_axisX;\n          subtickEnter.attr(\"y2\", -tickMinorSize);\n          subtickUpdate.attr(\"x2\", 0).attr(\"y2\", -tickMinorSize);\n          tickEnter.select(\"line\").attr(\"y2\", -tickMajorSize);\n          tickEnter.select(\"text\").attr(\"y\", -(Math.max(tickMajorSize, 0) + tickPadding));\n          tickUpdate.select(\"line\").attr(\"x2\", 0).attr(\"y2\", -tickMajorSize);\n          tickUpdate.select(\"text\").attr(\"x\", 0).attr(\"y\", -(Math.max(tickMajorSize, 0) + tickPadding)).attr(\"dy\", \"0em\").attr(\"text-anchor\", \"middle\");\n          pathUpdate.attr(\"d\", \"M\" + range[0] + \",\" + -tickEndSize + \"V0H\" + range[1] + \"V\" + -tickEndSize);\n          break;\n        }\n        case \"left\": {\n          tickTransform = d3_svg_axisY;\n          subtickEnter.attr(\"x2\", -tickMinorSize);\n          subtickUpdate.attr(\"x2\", -tickMinorSize).attr(\"y2\", 0);\n          tickEnter.select(\"line\").attr(\"x2\", -tickMajorSize);\n          tickEnter.select(\"text\").attr(\"x\", -(Math.max(tickMajorSize, 0) + tickPadding));\n          tickUpdate.select(\"line\").attr(\"x2\", -tickMajorSize).attr(\"y2\", 0);\n          tickUpdate.select(\"text\").attr(\"x\", -(Math.max(tickMajorSize, 0) + tickPadding)).attr(\"y\", 0).attr(\"dy\", \".32em\").attr(\"text-anchor\", \"end\");\n          pathUpdate.attr(\"d\", \"M\" + -tickEndSize + \",\" + range[0] + \"H0V\" + range[1] + \"H\" + -tickEndSize);\n          break;\n        }\n        case \"right\": {\n          tickTransform = d3_svg_axisY;\n          subtickEnter.attr(\"x2\", tickMinorSize);\n          subtickUpdate.attr(\"x2\", tickMinorSize).attr(\"y2\", 0);\n          tickEnter.select(\"line\").attr(\"x2\", tickMajorSize);\n          tickEnter.select(\"text\").attr(\"x\", Math.max(tickMajorSize, 0) + tickPadding);\n          tickUpdate.select(\"line\").attr(\"x2\", tickMajorSize).attr(\"y2\", 0);\n          tickUpdate.select(\"text\").attr(\"x\", Math.max(tickMajorSize, 0) + tickPadding).attr(\"y\", 0).attr(\"dy\", \".32em\").attr(\"text-anchor\", \"start\");\n          pathUpdate.attr(\"d\", \"M\" + tickEndSize + \",\" + range[0] + \"H0V\" + range[1] + \"H\" + tickEndSize);\n          break;\n        }\n      }\n\n      // For quantitative scales:\n      // - enter new ticks from the old scale\n      // - exit old ticks to the new scale\n      if (scale.ticks) {\n        tickEnter.call(tickTransform, scale0);\n        tickUpdate.call(tickTransform, scale1);\n        tickExit.call(tickTransform, scale1);\n        subtickEnter.call(tickTransform, scale0);\n        subtickUpdate.call(tickTransform, scale1);\n        subtickExit.call(tickTransform, scale1);\n      }\n\n      // For ordinal scales:\n      // - any entering ticks are undefined in the old scale\n      // - any exiting ticks are undefined in the new scale\n      // Therefore, we only need to transition updating ticks.\n      else {\n        var dx = scale1.rangeBand() / 2, x = function(d) { return scale1(d) + dx; };\n        tickEnter.call(tickTransform, x);\n        tickUpdate.call(tickTransform, x);\n      }\n    });\n  }\n\n  axis.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = x;\n    return axis;\n  };\n\n  axis.orient = function(x) {\n    if (!arguments.length) return orient;\n    orient = x;\n    return axis;\n  };\n\n  axis.ticks = function() {\n    if (!arguments.length) return tickArguments_;\n    tickArguments_ = arguments;\n    return axis;\n  };\n\n  axis.tickValues = function(x) {\n    if (!arguments.length) return tickValues;\n    tickValues = x;\n    return axis;\n  };\n\n  axis.tickFormat = function(x) {\n    if (!arguments.length) return tickFormat_;\n    tickFormat_ = x;\n    return axis;\n  };\n\n  axis.tickSize = function(x, y, z) {\n    if (!arguments.length) return tickMajorSize;\n    var n = arguments.length - 1;\n    tickMajorSize = +x;\n    tickMinorSize = n > 1 ? +y : tickMajorSize;\n    tickEndSize = n > 0 ? +arguments[n] : tickMajorSize;\n    return axis;\n  };\n\n  axis.tickPadding = function(x) {\n    if (!arguments.length) return tickPadding;\n    tickPadding = +x;\n    return axis;\n  };\n\n  axis.tickSubdivide = function(x) {\n    if (!arguments.length) return tickSubdivide;\n    tickSubdivide = +x;\n    return axis;\n  };\n\n  return axis;\n};\n\nfunction d3_svg_axisX(selection, x) {\n  selection.attr(\"transform\", function(d) { return \"translate(\" + x(d) + \",0)\"; });\n}\n\nfunction d3_svg_axisY(selection, y) {\n  selection.attr(\"transform\", function(d) { return \"translate(0,\" + y(d) + \")\"; });\n}\n\nfunction d3_svg_axisSubdivide(scale, ticks, m) {\n  subticks = [];\n  if (m && ticks.length > 1) {\n    var extent = d3_scaleExtent(scale.domain()),\n        subticks,\n        i = -1,\n        n = ticks.length,\n        d = (ticks[1] - ticks[0]) / ++m,\n        j,\n        v;\n    while (++i < n) {\n      for (j = m; --j > 0;) {\n        if ((v = +ticks[i] - j * d) >= extent[0]) {\n          subticks.push(v);\n        }\n      }\n    }\n    for (--i, j = 0; ++j < m && (v = +ticks[i] + j * d) < extent[1];) {\n      subticks.push(v);\n    }\n  }\n  return subticks;\n}\nd3.svg.brush = function() {\n  var event = d3_eventDispatch(brush, \"brushstart\", \"brush\", \"brushend\"),\n      x = null, // x-scale, optional\n      y = null, // y-scale, optional\n      resizes = d3_svg_brushResizes[0],\n      extent = [[0, 0], [0, 0]], // [x0, y0], [x1, y1], in pixels (integers)\n      extentDomain; // the extent in data space, lazily created\n\n  function brush(g) {\n    g.each(function() {\n      var g = d3.select(this),\n          bg = g.selectAll(\".background\").data([0]),\n          fg = g.selectAll(\".extent\").data([0]),\n          tz = g.selectAll(\".resize\").data(resizes, String),\n          e;\n\n      // Prepare the brush container for events.\n      g\n          .style(\"pointer-events\", \"all\")\n          .on(\"mousedown.brush\", brushstart)\n          .on(\"touchstart.brush\", brushstart);\n\n      // An invisible, mouseable area for starting a new brush.\n      bg.enter().append(\"rect\")\n          .attr(\"class\", \"background\")\n          .style(\"visibility\", \"hidden\")\n          .style(\"cursor\", \"crosshair\");\n\n      // The visible brush extent; style this as you like!\n      fg.enter().append(\"rect\")\n          .attr(\"class\", \"extent\")\n          .style(\"cursor\", \"move\");\n\n      // More invisible rects for resizing the extent.\n      tz.enter().append(\"g\")\n          .attr(\"class\", function(d) { return \"resize \" + d; })\n          .style(\"cursor\", function(d) { return d3_svg_brushCursor[d]; })\n        .append(\"rect\")\n          .attr(\"x\", function(d) { return /[ew]$/.test(d) ? -3 : null; })\n          .attr(\"y\", function(d) { return /^[ns]/.test(d) ? -3 : null; })\n          .attr(\"width\", 6)\n          .attr(\"height\", 6)\n          .style(\"visibility\", \"hidden\");\n\n      // Show or hide the resizers.\n      tz.style(\"display\", brush.empty() ? \"none\" : null);\n\n      // Remove any superfluous resizers.\n      tz.exit().remove();\n\n      // Initialize the background to fill the defined range.\n      // If the range isn't defined, you can post-process.\n      if (x) {\n        e = d3_scaleRange(x);\n        bg.attr(\"x\", e[0]).attr(\"width\", e[1] - e[0]);\n        redrawX(g);\n      }\n      if (y) {\n        e = d3_scaleRange(y);\n        bg.attr(\"y\", e[0]).attr(\"height\", e[1] - e[0]);\n        redrawY(g);\n      }\n      redraw(g);\n    });\n  }\n\n  function redraw(g) {\n    g.selectAll(\".resize\").attr(\"transform\", function(d) {\n      return \"translate(\" + extent[+/e$/.test(d)][0] + \",\" + extent[+/^s/.test(d)][1] + \")\";\n    });\n  }\n\n  function redrawX(g) {\n    g.select(\".extent\").attr(\"x\", extent[0][0]);\n    g.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\", extent[1][0] - extent[0][0]);\n  }\n\n  function redrawY(g) {\n    g.select(\".extent\").attr(\"y\", extent[0][1]);\n    g.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\", extent[1][1] - extent[0][1]);\n  }\n\n  function brushstart() {\n    var target = this,\n        eventTarget = d3.select(d3.event.target),\n        event_ = event.of(target, arguments),\n        g = d3.select(target),\n        resizing = eventTarget.datum(),\n        resizingX = !/^(n|s)$/.test(resizing) && x,\n        resizingY = !/^(e|w)$/.test(resizing) && y,\n        dragging = eventTarget.classed(\"extent\"),\n        center,\n        origin = mouse(),\n        offset;\n\n    var w = d3.select(window)\n        .on(\"mousemove.brush\", brushmove)\n        .on(\"mouseup.brush\", brushend)\n        .on(\"touchmove.brush\", brushmove)\n        .on(\"touchend.brush\", brushend)\n        .on(\"keydown.brush\", keydown)\n        .on(\"keyup.brush\", keyup);\n\n    // If the extent was clicked on, drag rather than brush;\n    // store the point between the mouse and extent origin instead.\n    if (dragging) {\n      origin[0] = extent[0][0] - origin[0];\n      origin[1] = extent[0][1] - origin[1];\n    }\n\n    // If a resizer was clicked on, record which side is to be resized.\n    // Also, set the origin to the opposite side.\n    else if (resizing) {\n      var ex = +/w$/.test(resizing),\n          ey = +/^n/.test(resizing);\n      offset = [extent[1 - ex][0] - origin[0], extent[1 - ey][1] - origin[1]];\n      origin[0] = extent[ex][0];\n      origin[1] = extent[ey][1];\n    }\n\n    // If the ALT key is down when starting a brush, the center is at the mouse.\n    else if (d3.event.altKey) center = origin.slice();\n\n    // Propagate the active cursor to the body for the drag duration.\n    g.style(\"pointer-events\", \"none\").selectAll(\".resize\").style(\"display\", null);\n    d3.select(\"body\").style(\"cursor\", eventTarget.style(\"cursor\"));\n\n    // Notify listeners.\n    event_({type: \"brushstart\"});\n    brushmove();\n    d3_eventCancel();\n\n    function mouse() {\n      var touches = d3.event.changedTouches;\n      return touches ? d3.touches(target, touches)[0] : d3.mouse(target);\n    }\n\n    function keydown() {\n      if (d3.event.keyCode == 32) {\n        if (!dragging) {\n          center = null;\n          origin[0] -= extent[1][0];\n          origin[1] -= extent[1][1];\n          dragging = 2;\n        }\n        d3_eventCancel();\n      }\n    }\n\n    function keyup() {\n      if (d3.event.keyCode == 32 && dragging == 2) {\n        origin[0] += extent[1][0];\n        origin[1] += extent[1][1];\n        dragging = 0;\n        d3_eventCancel();\n      }\n    }\n\n    function brushmove() {\n      var point = mouse(),\n          moved = false;\n\n      // Preserve the offset for thick resizers.\n      if (offset) {\n        point[0] += offset[0];\n        point[1] += offset[1];\n      }\n\n      if (!dragging) {\n\n        // If needed, determine the center from the current extent.\n        if (d3.event.altKey) {\n          if (!center) center = [(extent[0][0] + extent[1][0]) / 2, (extent[0][1] + extent[1][1]) / 2];\n\n          // Update the origin, for when the ALT key is released.\n          origin[0] = extent[+(point[0] < center[0])][0];\n          origin[1] = extent[+(point[1] < center[1])][1];\n        }\n\n        // When the ALT key is released, we clear the center.\n        else center = null;\n      }\n\n      // Update the brush extent for each dimension.\n      if (resizingX && move1(point, x, 0)) {\n        redrawX(g);\n        moved = true;\n      }\n      if (resizingY && move1(point, y, 1)) {\n        redrawY(g);\n        moved = true;\n      }\n\n      // Final redraw and notify listeners.\n      if (moved) {\n        redraw(g);\n        event_({type: \"brush\", mode: dragging ? \"move\" : \"resize\"});\n      }\n    }\n\n    function move1(point, scale, i) {\n      var range = d3_scaleRange(scale),\n          r0 = range[0],\n          r1 = range[1],\n          position = origin[i],\n          size = extent[1][i] - extent[0][i],\n          min,\n          max;\n\n      // When dragging, reduce the range by the extent size and position.\n      if (dragging) {\n        r0 -= position;\n        r1 -= size + position;\n      }\n\n      // Clamp the point so that the extent fits within the range extent.\n      min = Math.max(r0, Math.min(r1, point[i]));\n\n      // Compute the new extent bounds.\n      if (dragging) {\n        max = (min += position) + size;\n      } else {\n\n        // If the ALT key is pressed, then preserve the center of the extent.\n        if (center) position = Math.max(r0, Math.min(r1, 2 * center[i] - min));\n\n        // Compute the min and max of the position and point.\n        if (position < min) {\n          max = min;\n          min = position;\n        } else {\n          max = position;\n        }\n      }\n\n      // Update the stored bounds.\n      if (extent[0][i] !== min || extent[1][i] !== max) {\n        extentDomain = null;\n        extent[0][i] = min;\n        extent[1][i] = max;\n        return true;\n      }\n    }\n\n    function brushend() {\n      brushmove();\n\n      // reset the cursor styles\n      g.style(\"pointer-events\", \"all\").selectAll(\".resize\").style(\"display\", brush.empty() ? \"none\" : null);\n      d3.select(\"body\").style(\"cursor\", null);\n\n      w .on(\"mousemove.brush\", null)\n        .on(\"mouseup.brush\", null)\n        .on(\"touchmove.brush\", null)\n        .on(\"touchend.brush\", null)\n        .on(\"keydown.brush\", null)\n        .on(\"keyup.brush\", null);\n\n      event_({type: \"brushend\"});\n      d3_eventCancel();\n    }\n  }\n\n  brush.x = function(z) {\n    if (!arguments.length) return x;\n    x = z;\n    resizes = d3_svg_brushResizes[!x << 1 | !y]; // fore!\n    return brush;\n  };\n\n  brush.y = function(z) {\n    if (!arguments.length) return y;\n    y = z;\n    resizes = d3_svg_brushResizes[!x << 1 | !y]; // fore!\n    return brush;\n  };\n\n  brush.extent = function(z) {\n    var x0, x1, y0, y1, t;\n\n    // Invert the pixel extent to data-space.\n    if (!arguments.length) {\n      z = extentDomain || extent;\n      if (x) {\n        x0 = z[0][0], x1 = z[1][0];\n        if (!extentDomain) {\n          x0 = extent[0][0], x1 = extent[1][0];\n          if (x.invert) x0 = x.invert(x0), x1 = x.invert(x1);\n          if (x1 < x0) t = x0, x0 = x1, x1 = t;\n        }\n      }\n      if (y) {\n        y0 = z[0][1], y1 = z[1][1];\n        if (!extentDomain) {\n          y0 = extent[0][1], y1 = extent[1][1];\n          if (y.invert) y0 = y.invert(y0), y1 = y.invert(y1);\n          if (y1 < y0) t = y0, y0 = y1, y1 = t;\n        }\n      }\n      return x && y ? [[x0, y0], [x1, y1]] : x ? [x0, x1] : y && [y0, y1];\n    }\n\n    // Scale the data-space extent to pixels.\n    extentDomain = [[0, 0], [0, 0]];\n    if (x) {\n      x0 = z[0], x1 = z[1];\n      if (y) x0 = x0[0], x1 = x1[0];\n      extentDomain[0][0] = x0, extentDomain[1][0] = x1;\n      if (x.invert) x0 = x(x0), x1 = x(x1);\n      if (x1 < x0) t = x0, x0 = x1, x1 = t;\n      extent[0][0] = x0 | 0, extent[1][0] = x1 | 0;\n    }\n    if (y) {\n      y0 = z[0], y1 = z[1];\n      if (x) y0 = y0[1], y1 = y1[1];\n      extentDomain[0][1] = y0, extentDomain[1][1] = y1;\n      if (y.invert) y0 = y(y0), y1 = y(y1);\n      if (y1 < y0) t = y0, y0 = y1, y1 = t;\n      extent[0][1] = y0 | 0, extent[1][1] = y1 | 0;\n    }\n\n    return brush;\n  };\n\n  brush.clear = function() {\n    extentDomain = null;\n    extent[0][0] =\n    extent[0][1] =\n    extent[1][0] =\n    extent[1][1] = 0;\n    return brush;\n  };\n\n  brush.empty = function() {\n    return (x && extent[0][0] === extent[1][0])\n        || (y && extent[0][1] === extent[1][1]);\n  };\n\n  return d3.rebind(brush, event, \"on\");\n};\n\nvar d3_svg_brushCursor = {\n  n: \"ns-resize\",\n  e: \"ew-resize\",\n  s: \"ns-resize\",\n  w: \"ew-resize\",\n  nw: \"nwse-resize\",\n  ne: \"nesw-resize\",\n  se: \"nwse-resize\",\n  sw: \"nesw-resize\"\n};\n\nvar d3_svg_brushResizes = [\n  [\"n\", \"e\", \"s\", \"w\", \"nw\", \"ne\", \"se\", \"sw\"],\n  [\"e\", \"w\"],\n  [\"n\", \"s\"],\n  []\n];\nd3.behavior = {};\n// TODO Track touch points by identifier.\n\nd3.behavior.drag = function() {\n  var event = d3_eventDispatch(drag, \"drag\", \"dragstart\", \"dragend\"),\n      origin = null;\n\n  function drag() {\n    this.on(\"mousedown.drag\", mousedown)\n        .on(\"touchstart.drag\", mousedown);\n  }\n\n  function mousedown() {\n    var target = this,\n        event_ = event.of(target, arguments),\n        eventTarget = d3.event.target,\n        offset,\n        origin_ = point(),\n        moved = 0;\n\n    var w = d3.select(window)\n        .on(\"mousemove.drag\", dragmove)\n        .on(\"touchmove.drag\", dragmove)\n        .on(\"mouseup.drag\", dragend, true)\n        .on(\"touchend.drag\", dragend, true);\n\n    if (origin) {\n      offset = origin.apply(target, arguments);\n      offset = [offset.x - origin_[0], offset.y - origin_[1]];\n    } else {\n      offset = [0, 0];\n    }\n\n    event_({type: \"dragstart\"});\n\n    function point() {\n      var p = target.parentNode,\n          t = d3.event.changedTouches;\n      return t ? d3.touches(p, t)[0] : d3.mouse(p);\n    }\n\n    function dragmove() {\n      if (!target.parentNode) return dragend(); // target removed from DOM\n\n      var p = point(),\n          dx = p[0] - origin_[0],\n          dy = p[1] - origin_[1];\n\n      moved |= dx | dy;\n      origin_ = p;\n      d3_eventCancel();\n\n      event_({type: \"drag\", x: p[0] + offset[0], y: p[1] + offset[1], dx: dx, dy: dy});\n    }\n\n    function dragend() {\n      event_({type: \"dragend\"});\n\n      // if moved, prevent the mouseup (and possibly click) from propagating\n      if (moved) {\n        d3_eventCancel();\n        if (d3.event.target === eventTarget) w.on(\"click.drag\", click, true);\n      }\n\n      w .on(\"mousemove.drag\", null)\n        .on(\"touchmove.drag\", null)\n        .on(\"mouseup.drag\", null)\n        .on(\"touchend.drag\", null);\n    }\n\n    // prevent the subsequent click from propagating (e.g., for anchors)\n    function click() {\n      d3_eventCancel();\n      w.on(\"click.drag\", null);\n    }\n  }\n\n  drag.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    return drag;\n  };\n\n  return d3.rebind(drag, event, \"on\");\n};\nd3.behavior.zoom = function() {\n  var translate = [0, 0],\n      translate0, // translate when we started zooming (to avoid drift)\n      scale = 1,\n      scale0, // scale when we started touching\n      scaleExtent = d3_behavior_zoomInfinity,\n      event = d3_eventDispatch(zoom, \"zoom\"),\n      x0,\n      x1,\n      y0,\n      y1,\n      touchtime; // time of last touchstart (to detect double-tap)\n\n  function zoom() {\n    this\n        .on(\"mousedown.zoom\", mousedown)\n        .on(\"mousewheel.zoom\", mousewheel)\n        .on(\"mousemove.zoom\", mousemove)\n        .on(\"DOMMouseScroll.zoom\", mousewheel)\n        .on(\"dblclick.zoom\", dblclick)\n        .on(\"touchstart.zoom\", touchstart)\n        .on(\"touchmove.zoom\", touchmove)\n        .on(\"touchend.zoom\", touchstart);\n  }\n\n  zoom.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = x.map(Number);\n    return zoom;\n  };\n\n  zoom.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return zoom;\n  };\n\n  zoom.scaleExtent = function(x) {\n    if (!arguments.length) return scaleExtent;\n    scaleExtent = x == null ? d3_behavior_zoomInfinity : x.map(Number);\n    return zoom;\n  };\n\n  zoom.x = function(z) {\n    if (!arguments.length) return x1;\n    x1 = z;\n    x0 = z.copy();\n    return zoom;\n  };\n\n  zoom.y = function(z) {\n    if (!arguments.length) return y1;\n    y1 = z;\n    y0 = z.copy();\n    return zoom;\n  };\n\n  function location(p) {\n    return [(p[0] - translate[0]) / scale, (p[1] - translate[1]) / scale];\n  }\n\n  function point(l) {\n    return [l[0] * scale + translate[0], l[1] * scale + translate[1]];\n  }\n\n  function scaleTo(s) {\n    scale = Math.max(scaleExtent[0], Math.min(scaleExtent[1], s));\n  }\n\n  function translateTo(p, l) {\n    l = point(l);\n    translate[0] += p[0] - l[0];\n    translate[1] += p[1] - l[1];\n  }\n\n  function dispatch(event) {\n    if (x1) x1.domain(x0.range().map(function(x) { return (x - translate[0]) / scale; }).map(x0.invert));\n    if (y1) y1.domain(y0.range().map(function(y) { return (y - translate[1]) / scale; }).map(y0.invert));\n    d3.event.preventDefault();\n    event({type: \"zoom\", scale: scale, translate: translate});\n  }\n\n  function mousedown() {\n    var target = this,\n        event_ = event.of(target, arguments),\n        eventTarget = d3.event.target,\n        moved = 0,\n        w = d3.select(window).on(\"mousemove.zoom\", mousemove).on(\"mouseup.zoom\", mouseup),\n        l = location(d3.mouse(target));\n\n    window.focus();\n    d3_eventCancel();\n\n    function mousemove() {\n      moved = 1;\n      translateTo(d3.mouse(target), l);\n      dispatch(event_);\n    }\n\n    function mouseup() {\n      if (moved) d3_eventCancel();\n      w.on(\"mousemove.zoom\", null).on(\"mouseup.zoom\", null);\n      if (moved && d3.event.target === eventTarget) w.on(\"click.zoom\", click);\n    }\n\n    function click() {\n      d3_eventCancel();\n      w.on(\"click.zoom\", null);\n    }\n  }\n\n  function mousewheel() {\n    if (!translate0) translate0 = location(d3.mouse(this));\n    scaleTo(Math.pow(2, d3_behavior_zoomDelta() * .002) * scale);\n    translateTo(d3.mouse(this), translate0);\n    dispatch(event.of(this, arguments));\n  }\n\n  function mousemove() {\n    translate0 = null;\n  }\n\n  function dblclick() {\n    var p = d3.mouse(this), l = location(p);\n    scaleTo(d3.event.shiftKey ? scale / 2 : scale * 2);\n    translateTo(p, l);\n    dispatch(event.of(this, arguments));\n  }\n\n  function touchstart() {\n    var touches = d3.touches(this),\n        now = Date.now();\n\n    scale0 = scale;\n    translate0 = {};\n    touches.forEach(function(t) { translate0[t.identifier] = location(t); });\n    d3_eventCancel();\n\n    if ((touches.length === 1) && (now - touchtime < 500)) { // dbltap\n      var p = touches[0], l = location(touches[0]);\n      scaleTo(scale * 2);\n      translateTo(p, l);\n      dispatch(event.of(this, arguments));\n    }\n    touchtime = now;\n  }\n\n  function touchmove() {\n    var touches = d3.touches(this),\n        p0 = touches[0],\n        l0 = translate0[p0.identifier];\n    if (p1 = touches[1]) {\n      var p1, l1 = translate0[p1.identifier];\n      p0 = [(p0[0] + p1[0]) / 2, (p0[1] + p1[1]) / 2];\n      l0 = [(l0[0] + l1[0]) / 2, (l0[1] + l1[1]) / 2];\n      scaleTo(d3.event.scale * scale0);\n    }\n    translateTo(p0, l0);\n    dispatch(event.of(this, arguments));\n  }\n\n  return d3.rebind(zoom, event, \"on\");\n};\n\nvar d3_behavior_zoomDiv, // for interpreting mousewheel events\n    d3_behavior_zoomInfinity = [0, Infinity]; // default scale extent\n\nfunction d3_behavior_zoomDelta() {\n\n  // mousewheel events are totally broken!\n  // https://bugs.webkit.org/show_bug.cgi?id=40441\n  // not only that, but Chrome and Safari differ in re. to acceleration!\n  if (!d3_behavior_zoomDiv) {\n    d3_behavior_zoomDiv = d3.select(\"body\").append(\"div\")\n        .style(\"visibility\", \"hidden\")\n        .style(\"top\", 0)\n        .style(\"height\", 0)\n        .style(\"width\", 0)\n        .style(\"overflow-y\", \"scroll\")\n      .append(\"div\")\n        .style(\"height\", \"2000px\")\n      .node().parentNode;\n  }\n\n  var e = d3.event, delta;\n  try {\n    d3_behavior_zoomDiv.scrollTop = 1000;\n    d3_behavior_zoomDiv.dispatchEvent(e);\n    delta = 1000 - d3_behavior_zoomDiv.scrollTop;\n  } catch (error) {\n    delta = e.wheelDelta || (-e.detail * 5);\n  }\n\n  return delta;\n}\nd3.layout = {};\n// Implements hierarchical edge bundling using Holten's algorithm. For each\n// input link, a path is computed that travels through the tree, up the parent\n// hierarchy to the least common ancestor, and then back down to the destination\n// node. Each path is simply an array of nodes.\nd3.layout.bundle = function() {\n  return function(links) {\n    var paths = [],\n        i = -1,\n        n = links.length;\n    while (++i < n) paths.push(d3_layout_bundlePath(links[i]));\n    return paths;\n  };\n};\n\nfunction d3_layout_bundlePath(link) {\n  var start = link.source,\n      end = link.target,\n      lca = d3_layout_bundleLeastCommonAncestor(start, end),\n      points = [start];\n  while (start !== lca) {\n    start = start.parent;\n    points.push(start);\n  }\n  var k = points.length;\n  while (end !== lca) {\n    points.splice(k, 0, end);\n    end = end.parent;\n  }\n  return points;\n}\n\nfunction d3_layout_bundleAncestors(node) {\n  var ancestors = [],\n      parent = node.parent;\n  while (parent != null) {\n    ancestors.push(node);\n    node = parent;\n    parent = parent.parent;\n  }\n  ancestors.push(node);\n  return ancestors;\n}\n\nfunction d3_layout_bundleLeastCommonAncestor(a, b) {\n  if (a === b) return a;\n  var aNodes = d3_layout_bundleAncestors(a),\n      bNodes = d3_layout_bundleAncestors(b),\n      aNode = aNodes.pop(),\n      bNode = bNodes.pop(),\n      sharedNode = null;\n  while (aNode === bNode) {\n    sharedNode = aNode;\n    aNode = aNodes.pop();\n    bNode = bNodes.pop();\n  }\n  return sharedNode;\n}\nd3.layout.chord = function() {\n  var chord = {},\n      chords,\n      groups,\n      matrix,\n      n,\n      padding = 0,\n      sortGroups,\n      sortSubgroups,\n      sortChords;\n\n  function relayout() {\n    var subgroups = {},\n        groupSums = [],\n        groupIndex = d3.range(n),\n        subgroupIndex = [],\n        k,\n        x,\n        x0,\n        i,\n        j;\n\n    chords = [];\n    groups = [];\n\n    // Compute the sum.\n    k = 0, i = -1; while (++i < n) {\n      x = 0, j = -1; while (++j < n) {\n        x += matrix[i][j];\n      }\n      groupSums.push(x);\n      subgroupIndex.push(d3.range(n));\n      k += x;\n    }\n\n    // Sort groups…\n    if (sortGroups) {\n      groupIndex.sort(function(a, b) {\n        return sortGroups(groupSums[a], groupSums[b]);\n      });\n    }\n\n    // Sort subgroups…\n    if (sortSubgroups) {\n      subgroupIndex.forEach(function(d, i) {\n        d.sort(function(a, b) {\n          return sortSubgroups(matrix[i][a], matrix[i][b]);\n        });\n      });\n    }\n\n    // Convert the sum to scaling factor for [0, 2pi].\n    // TODO Allow start and end angle to be specified.\n    // TODO Allow padding to be specified as percentage?\n    k = (2 * Math.PI - padding * n) / k;\n\n    // Compute the start and end angle for each group and subgroup.\n    // Note: Opera has a bug reordering object literal properties!\n    x = 0, i = -1; while (++i < n) {\n      x0 = x, j = -1; while (++j < n) {\n        var di = groupIndex[i],\n            dj = subgroupIndex[di][j],\n            v = matrix[di][dj],\n            a0 = x,\n            a1 = x += v * k;\n        subgroups[di + \"-\" + dj] = {\n          index: di,\n          subindex: dj,\n          startAngle: a0,\n          endAngle: a1,\n          value: v\n        };\n      }\n      groups.push({\n        index: di,\n        startAngle: x0,\n        endAngle: x,\n        value: (x - x0) / k\n      });\n      x += padding;\n    }\n\n    // Generate chords for each (non-empty) subgroup-subgroup link.\n    i = -1; while (++i < n) {\n      j = i - 1; while (++j < n) {\n        var source = subgroups[i + \"-\" + j],\n            target = subgroups[j + \"-\" + i];\n        if (source.value || target.value) {\n          chords.push(source.value < target.value\n              ? {source: target, target: source}\n              : {source: source, target: target});\n        }\n      }\n    }\n\n    if (sortChords) resort();\n  }\n\n  function resort() {\n    chords.sort(function(a, b) {\n      return sortChords(\n          (a.source.value + a.target.value) / 2,\n          (b.source.value + b.target.value) / 2);\n    });\n  }\n\n  chord.matrix = function(x) {\n    if (!arguments.length) return matrix;\n    n = (matrix = x) && matrix.length;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.padding = function(x) {\n    if (!arguments.length) return padding;\n    padding = x;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.sortGroups = function(x) {\n    if (!arguments.length) return sortGroups;\n    sortGroups = x;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.sortSubgroups = function(x) {\n    if (!arguments.length) return sortSubgroups;\n    sortSubgroups = x;\n    chords = null;\n    return chord;\n  };\n\n  chord.sortChords = function(x) {\n    if (!arguments.length) return sortChords;\n    sortChords = x;\n    if (chords) resort();\n    return chord;\n  };\n\n  chord.chords = function() {\n    if (!chords) relayout();\n    return chords;\n  };\n\n  chord.groups = function() {\n    if (!groups) relayout();\n    return groups;\n  };\n\n  return chord;\n};\n// A rudimentary force layout using Gauss-Seidel.\nd3.layout.force = function() {\n  var force = {},\n      event = d3.dispatch(\"start\", \"tick\", \"end\"),\n      size = [1, 1],\n      drag,\n      alpha,\n      friction = .9,\n      linkDistance = d3_layout_forceLinkDistance,\n      linkStrength = d3_layout_forceLinkStrength,\n      charge = -30,\n      gravity = .1,\n      theta = .8,\n      interval,\n      nodes = [],\n      links = [],\n      distances,\n      strengths,\n      charges;\n\n  function repulse(node) {\n    return function(quad, x1, y1, x2, y2) {\n      if (quad.point !== node) {\n        var dx = quad.cx - node.x,\n            dy = quad.cy - node.y,\n            dn = 1 / Math.sqrt(dx * dx + dy * dy);\n\n        /* Barnes-Hut criterion. */\n        if ((x2 - x1) * dn < theta) {\n          var k = quad.charge * dn * dn;\n          node.px -= dx * k;\n          node.py -= dy * k;\n          return true;\n        }\n\n        if (quad.point && isFinite(dn)) {\n          var k = quad.pointCharge * dn * dn;\n          node.px -= dx * k;\n          node.py -= dy * k;\n        }\n      }\n      return !quad.charge;\n    };\n  }\n\n  force.tick = function() {\n    // simulated annealing, basically\n    if ((alpha *= .99) < .005) {\n      event.end({type: \"end\", alpha: alpha = 0});\n      return true;\n    }\n\n    var n = nodes.length,\n        m = links.length,\n        q,\n        i, // current index\n        o, // current object\n        s, // current source\n        t, // current target\n        l, // current distance\n        k, // current force\n        x, // x-distance\n        y; // y-distance\n\n    // gauss-seidel relaxation for links\n    for (i = 0; i < m; ++i) {\n      o = links[i];\n      s = o.source;\n      t = o.target;\n      x = t.x - s.x;\n      y = t.y - s.y;\n      if (l = (x * x + y * y)) {\n        l = alpha * strengths[i] * ((l = Math.sqrt(l)) - distances[i]) / l;\n        x *= l;\n        y *= l;\n        t.x -= x * (k = s.weight / (t.weight + s.weight));\n        t.y -= y * k;\n        s.x += x * (k = 1 - k);\n        s.y += y * k;\n      }\n    }\n\n    // apply gravity forces\n    if (k = alpha * gravity) {\n      x = size[0] / 2;\n      y = size[1] / 2;\n      i = -1; if (k) while (++i < n) {\n        o = nodes[i];\n        o.x += (x - o.x) * k;\n        o.y += (y - o.y) * k;\n      }\n    }\n\n    // compute quadtree center of mass and apply charge forces\n    if (charge) {\n      d3_layout_forceAccumulate(q = d3.geom.quadtree(nodes), alpha, charges);\n      i = -1; while (++i < n) {\n        if (!(o = nodes[i]).fixed) {\n          q.visit(repulse(o));\n        }\n      }\n    }\n\n    // position verlet integration\n    i = -1; while (++i < n) {\n      o = nodes[i];\n      if (o.fixed) {\n        o.x = o.px;\n        o.y = o.py;\n      } else {\n        o.x -= (o.px - (o.px = o.x)) * friction;\n        o.y -= (o.py - (o.py = o.y)) * friction;\n      }\n    }\n\n    event.tick({type: \"tick\", alpha: alpha});\n  };\n\n  force.nodes = function(x) {\n    if (!arguments.length) return nodes;\n    nodes = x;\n    return force;\n  };\n\n  force.links = function(x) {\n    if (!arguments.length) return links;\n    links = x;\n    return force;\n  };\n\n  force.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return force;\n  };\n\n  force.linkDistance = function(x) {\n    if (!arguments.length) return linkDistance;\n    linkDistance = d3.functor(x);\n    return force;\n  };\n\n  // For backwards-compatibility.\n  force.distance = force.linkDistance;\n\n  force.linkStrength = function(x) {\n    if (!arguments.length) return linkStrength;\n    linkStrength = d3.functor(x);\n    return force;\n  };\n\n  force.friction = function(x) {\n    if (!arguments.length) return friction;\n    friction = x;\n    return force;\n  };\n\n  force.charge = function(x) {\n    if (!arguments.length) return charge;\n    charge = typeof x === \"function\" ? x : +x;\n    return force;\n  };\n\n  force.gravity = function(x) {\n    if (!arguments.length) return gravity;\n    gravity = x;\n    return force;\n  };\n\n  force.theta = function(x) {\n    if (!arguments.length) return theta;\n    theta = x;\n    return force;\n  };\n\n  force.alpha = function(x) {\n    if (!arguments.length) return alpha;\n\n    if (alpha) { // if we're already running\n      if (x > 0) alpha = x; // we might keep it hot\n      else alpha = 0; // or, next tick will dispatch \"end\"\n    } else if (x > 0) { // otherwise, fire it up!\n      event.start({type: \"start\", alpha: alpha = x});\n      d3.timer(force.tick);\n    }\n\n    return force;\n  };\n\n  force.start = function() {\n    var i,\n        j,\n        n = nodes.length,\n        m = links.length,\n        w = size[0],\n        h = size[1],\n        neighbors,\n        o;\n\n    for (i = 0; i < n; ++i) {\n      (o = nodes[i]).index = i;\n      o.weight = 0;\n    }\n\n    distances = [];\n    strengths = [];\n    for (i = 0; i < m; ++i) {\n      o = links[i];\n      if (typeof o.source == \"number\") o.source = nodes[o.source];\n      if (typeof o.target == \"number\") o.target = nodes[o.target];\n      distances[i] = linkDistance.call(this, o, i);\n      strengths[i] = linkStrength.call(this, o, i);\n      ++o.source.weight;\n      ++o.target.weight;\n    }\n\n    for (i = 0; i < n; ++i) {\n      o = nodes[i];\n      if (isNaN(o.x)) o.x = position(\"x\", w);\n      if (isNaN(o.y)) o.y = position(\"y\", h);\n      if (isNaN(o.px)) o.px = o.x;\n      if (isNaN(o.py)) o.py = o.y;\n    }\n\n    charges = [];\n    if (typeof charge === \"function\") {\n      for (i = 0; i < n; ++i) {\n        charges[i] = +charge.call(this, nodes[i], i);\n      }\n    } else {\n      for (i = 0; i < n; ++i) {\n        charges[i] = charge;\n      }\n    }\n\n    // initialize node position based on first neighbor\n    function position(dimension, size) {\n      var neighbors = neighbor(i),\n          j = -1,\n          m = neighbors.length,\n          x;\n      while (++j < m) if (!isNaN(x = neighbors[j][dimension])) return x;\n      return Math.random() * size;\n    }\n\n    // initialize neighbors lazily\n    function neighbor() {\n      if (!neighbors) {\n        neighbors = [];\n        for (j = 0; j < n; ++j) {\n          neighbors[j] = [];\n        }\n        for (j = 0; j < m; ++j) {\n          var o = links[j];\n          neighbors[o.source.index].push(o.target);\n          neighbors[o.target.index].push(o.source);\n        }\n      }\n      return neighbors[i];\n    }\n\n    return force.resume();\n  };\n\n  force.resume = function() {\n    return force.alpha(.1);\n  };\n\n  force.stop = function() {\n    return force.alpha(0);\n  };\n\n  // use `node.call(force.drag)` to make nodes draggable\n  force.drag = function() {\n    if (!drag) drag = d3.behavior.drag()\n        .origin(Object)\n        .on(\"dragstart\", dragstart)\n        .on(\"drag\", d3_layout_forceDrag)\n        .on(\"dragend\", d3_layout_forceDragEnd);\n\n    this.on(\"mouseover.force\", d3_layout_forceDragOver)\n        .on(\"mouseout.force\", d3_layout_forceDragOut)\n        .call(drag);\n  };\n\n  function dragstart(d) {\n    d3_layout_forceDragOver(d3_layout_forceDragNode = d);\n    d3_layout_forceDragForce = force;\n  }\n\n  return d3.rebind(force, event, \"on\");\n};\n\nvar d3_layout_forceDragForce,\n    d3_layout_forceDragNode;\n\nfunction d3_layout_forceDragOver(d) {\n  d.fixed |= 2;\n}\n\nfunction d3_layout_forceDragOut(d) {\n  if (d !== d3_layout_forceDragNode) d.fixed &= 1;\n}\n\nfunction d3_layout_forceDragEnd() {\n  d3_layout_forceDragNode.fixed &= 1;\n  d3_layout_forceDragForce = d3_layout_forceDragNode = null;\n}\n\nfunction d3_layout_forceDrag() {\n  d3_layout_forceDragNode.px = d3.event.x;\n  d3_layout_forceDragNode.py = d3.event.y;\n  d3_layout_forceDragForce.resume(); // restart annealing\n}\n\nfunction d3_layout_forceAccumulate(quad, alpha, charges) {\n  var cx = 0,\n      cy = 0;\n  quad.charge = 0;\n  if (!quad.leaf) {\n    var nodes = quad.nodes,\n        n = nodes.length,\n        i = -1,\n        c;\n    while (++i < n) {\n      c = nodes[i];\n      if (c == null) continue;\n      d3_layout_forceAccumulate(c, alpha, charges);\n      quad.charge += c.charge;\n      cx += c.charge * c.cx;\n      cy += c.charge * c.cy;\n    }\n  }\n  if (quad.point) {\n    // jitter internal nodes that are coincident\n    if (!quad.leaf) {\n      quad.point.x += Math.random() - .5;\n      quad.point.y += Math.random() - .5;\n    }\n    var k = alpha * charges[quad.point.index];\n    quad.charge += quad.pointCharge = k;\n    cx += k * quad.point.x;\n    cy += k * quad.point.y;\n  }\n  quad.cx = cx / quad.charge;\n  quad.cy = cy / quad.charge;\n}\n\nfunction d3_layout_forceLinkDistance(link) {\n  return 20;\n}\n\nfunction d3_layout_forceLinkStrength(link) {\n  return 1;\n}\nd3.layout.partition = function() {\n  var hierarchy = d3.layout.hierarchy(),\n      size = [1, 1]; // width, height\n\n  function position(node, x, dx, dy) {\n    var children = node.children;\n    node.x = x;\n    node.y = node.depth * dy;\n    node.dx = dx;\n    node.dy = dy;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n,\n          c,\n          d;\n      dx = node.value ? dx / node.value : 0;\n      while (++i < n) {\n        position(c = children[i], x, d = c.value * dx, dy);\n        x += d;\n      }\n    }\n  }\n\n  function depth(node) {\n    var children = node.children,\n        d = 0;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n;\n      while (++i < n) d = Math.max(d, depth(children[i]));\n    }\n    return 1 + d;\n  }\n\n  function partition(d, i) {\n    var nodes = hierarchy.call(this, d, i);\n    position(nodes[0], 0, size[0], size[1] / depth(nodes[0]));\n    return nodes;\n  }\n\n  partition.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return partition;\n  };\n\n  return d3_layout_hierarchyRebind(partition, hierarchy);\n};\nd3.layout.pie = function() {\n  var value = Number,\n      sort = d3_layout_pieSortByValue,\n      startAngle = 0,\n      endAngle = 2 * Math.PI;\n\n  function pie(data, i) {\n\n    // Compute the numeric values for each data element.\n    var values = data.map(function(d, i) { return +value.call(pie, d, i); });\n\n    // Compute the start angle.\n    var a = +(typeof startAngle === \"function\"\n        ? startAngle.apply(this, arguments)\n        : startAngle);\n\n    // Compute the angular scale factor: from value to radians.\n    var k = ((typeof endAngle === \"function\"\n        ? endAngle.apply(this, arguments)\n        : endAngle) - startAngle)\n        / d3.sum(values);\n\n    // Optionally sort the data.\n    var index = d3.range(data.length);\n    if (sort != null) index.sort(sort === d3_layout_pieSortByValue\n        ? function(i, j) { return values[j] - values[i]; }\n        : function(i, j) { return sort(data[i], data[j]); });\n\n    // Compute the arcs!\n    // They are stored in the original data's order.\n    var arcs = [];\n    index.forEach(function(i) {\n      arcs[i] = {\n        data: data[i],\n        value: d = values[i],\n        startAngle: a,\n        endAngle: a += d * k\n      };\n    });\n    return arcs;\n  }\n\n  /**\n   * Specifies the value function *x*, which returns a nonnegative numeric value\n   * for each datum. The default value function is `Number`. The value function\n   * is passed two arguments: the current datum and the current index.\n   */\n  pie.value = function(x) {\n    if (!arguments.length) return value;\n    value = x;\n    return pie;\n  };\n\n  /**\n   * Specifies a sort comparison operator *x*. The comparator is passed two data\n   * elements from the data array, a and b; it returns a negative value if a is\n   * less than b, a positive value if a is greater than b, and zero if a equals\n   * b.\n   */\n  pie.sort = function(x) {\n    if (!arguments.length) return sort;\n    sort = x;\n    return pie;\n  };\n\n  /**\n   * Specifies the overall start angle of the pie chart. Defaults to 0. The\n   * start angle can be specified either as a constant or as a function; in the\n   * case of a function, it is evaluated once per array (as opposed to per\n   * element).\n   */\n  pie.startAngle = function(x) {\n    if (!arguments.length) return startAngle;\n    startAngle = x;\n    return pie;\n  };\n\n  /**\n   * Specifies the overall end angle of the pie chart. Defaults to 2π. The\n   * end angle can be specified either as a constant or as a function; in the\n   * case of a function, it is evaluated once per array (as opposed to per\n   * element).\n   */\n  pie.endAngle = function(x) {\n    if (!arguments.length) return endAngle;\n    endAngle = x;\n    return pie;\n  };\n\n  return pie;\n};\n\nvar d3_layout_pieSortByValue = {};\n// data is two-dimensional array of x,y; we populate y0\nd3.layout.stack = function() {\n  var values = Object,\n      order = d3_layout_stackOrderDefault,\n      offset = d3_layout_stackOffsetZero,\n      out = d3_layout_stackOut,\n      x = d3_layout_stackX,\n      y = d3_layout_stackY;\n\n  function stack(data, index) {\n\n    // Convert series to canonical two-dimensional representation.\n    var series = data.map(function(d, i) {\n      return values.call(stack, d, i);\n    });\n\n    // Convert each series to canonical [[x,y]] representation.\n    var points = series.map(function(d, i) {\n      return d.map(function(v, i) {\n        return [x.call(stack, v, i), y.call(stack, v, i)];\n      });\n    });\n\n    // Compute the order of series, and permute them.\n    var orders = order.call(stack, points, index);\n    series = d3.permute(series, orders);\n    points = d3.permute(points, orders);\n\n    // Compute the baseline…\n    var offsets = offset.call(stack, points, index);\n\n    // And propagate it to other series.\n    var n = series.length,\n        m = series[0].length,\n        i,\n        j,\n        o;\n    for (j = 0; j < m; ++j) {\n      out.call(stack, series[0][j], o = offsets[j], points[0][j][1]);\n      for (i = 1; i < n; ++i) {\n        out.call(stack, series[i][j], o += points[i - 1][j][1], points[i][j][1]);\n      }\n    }\n\n    return data;\n  }\n\n  stack.values = function(x) {\n    if (!arguments.length) return values;\n    values = x;\n    return stack;\n  };\n\n  stack.order = function(x) {\n    if (!arguments.length) return order;\n    order = typeof x === \"function\" ? x : d3_layout_stackOrders.get(x) || d3_layout_stackOrderDefault;\n    return stack;\n  };\n\n  stack.offset = function(x) {\n    if (!arguments.length) return offset;\n    offset = typeof x === \"function\" ? x : d3_layout_stackOffsets.get(x) || d3_layout_stackOffsetZero;\n    return stack;\n  };\n\n  stack.x = function(z) {\n    if (!arguments.length) return x;\n    x = z;\n    return stack;\n  };\n\n  stack.y = function(z) {\n    if (!arguments.length) return y;\n    y = z;\n    return stack;\n  };\n\n  stack.out = function(z) {\n    if (!arguments.length) return out;\n    out = z;\n    return stack;\n  };\n\n  return stack;\n}\n\nfunction d3_layout_stackX(d) {\n  return d.x;\n}\n\nfunction d3_layout_stackY(d) {\n  return d.y;\n}\n\nfunction d3_layout_stackOut(d, y0, y) {\n  d.y0 = y0;\n  d.y = y;\n}\n\nvar d3_layout_stackOrders = d3.map({\n\n  \"inside-out\": function(data) {\n    var n = data.length,\n        i,\n        j,\n        max = data.map(d3_layout_stackMaxIndex),\n        sums = data.map(d3_layout_stackReduceSum),\n        index = d3.range(n).sort(function(a, b) { return max[a] - max[b]; }),\n        top = 0,\n        bottom = 0,\n        tops = [],\n        bottoms = [];\n    for (i = 0; i < n; ++i) {\n      j = index[i];\n      if (top < bottom) {\n        top += sums[j];\n        tops.push(j);\n      } else {\n        bottom += sums[j];\n        bottoms.push(j);\n      }\n    }\n    return bottoms.reverse().concat(tops);\n  },\n\n  \"reverse\": function(data) {\n    return d3.range(data.length).reverse();\n  },\n\n  \"default\": d3_layout_stackOrderDefault\n\n});\n\nvar d3_layout_stackOffsets = d3.map({\n\n  \"silhouette\": function(data) {\n    var n = data.length,\n        m = data[0].length,\n        sums = [],\n        max = 0,\n        i,\n        j,\n        o,\n        y0 = [];\n    for (j = 0; j < m; ++j) {\n      for (i = 0, o = 0; i < n; i++) o += data[i][j][1];\n      if (o > max) max = o;\n      sums.push(o);\n    }\n    for (j = 0; j < m; ++j) {\n      y0[j] = (max - sums[j]) / 2;\n    }\n    return y0;\n  },\n\n  \"wiggle\": function(data) {\n    var n = data.length,\n        x = data[0],\n        m = x.length,\n        max = 0,\n        i,\n        j,\n        k,\n        s1,\n        s2,\n        s3,\n        dx,\n        o,\n        o0,\n        y0 = [];\n    y0[0] = o = o0 = 0;\n    for (j = 1; j < m; ++j) {\n      for (i = 0, s1 = 0; i < n; ++i) s1 += data[i][j][1];\n      for (i = 0, s2 = 0, dx = x[j][0] - x[j - 1][0]; i < n; ++i) {\n        for (k = 0, s3 = (data[i][j][1] - data[i][j - 1][1]) / (2 * dx); k < i; ++k) {\n          s3 += (data[k][j][1] - data[k][j - 1][1]) / dx;\n        }\n        s2 += s3 * data[i][j][1];\n      }\n      y0[j] = o -= s1 ? s2 / s1 * dx : 0;\n      if (o < o0) o0 = o;\n    }\n    for (j = 0; j < m; ++j) y0[j] -= o0;\n    return y0;\n  },\n\n  \"expand\": function(data) {\n    var n = data.length,\n        m = data[0].length,\n        k = 1 / n,\n        i,\n        j,\n        o,\n        y0 = [];\n    for (j = 0; j < m; ++j) {\n      for (i = 0, o = 0; i < n; i++) o += data[i][j][1];\n      if (o) for (i = 0; i < n; i++) data[i][j][1] /= o;\n      else for (i = 0; i < n; i++) data[i][j][1] = k;\n    }\n    for (j = 0; j < m; ++j) y0[j] = 0;\n    return y0;\n  },\n\n  \"zero\": d3_layout_stackOffsetZero\n\n});\n\nfunction d3_layout_stackOrderDefault(data) {\n  return d3.range(data.length);\n}\n\nfunction d3_layout_stackOffsetZero(data) {\n  var j = -1,\n      m = data[0].length,\n      y0 = [];\n  while (++j < m) y0[j] = 0;\n  return y0;\n}\n\nfunction d3_layout_stackMaxIndex(array) {\n  var i = 1,\n      j = 0,\n      v = array[0][1],\n      k,\n      n = array.length;\n  for (; i < n; ++i) {\n    if ((k = array[i][1]) > v) {\n      j = i;\n      v = k;\n    }\n  }\n  return j;\n}\n\nfunction d3_layout_stackReduceSum(d) {\n  return d.reduce(d3_layout_stackSum, 0);\n}\n\nfunction d3_layout_stackSum(p, d) {\n  return p + d[1];\n}\nd3.layout.histogram = function() {\n  var frequency = true,\n      valuer = Number,\n      ranger = d3_layout_histogramRange,\n      binner = d3_layout_histogramBinSturges;\n\n  function histogram(data, i) {\n    var bins = [],\n        values = data.map(valuer, this),\n        range = ranger.call(this, values, i),\n        thresholds = binner.call(this, range, values, i),\n        bin,\n        i = -1,\n        n = values.length,\n        m = thresholds.length - 1,\n        k = frequency ? 1 : 1 / n,\n        x;\n\n    // Initialize the bins.\n    while (++i < m) {\n      bin = bins[i] = [];\n      bin.dx = thresholds[i + 1] - (bin.x = thresholds[i]);\n      bin.y = 0;\n    }\n\n    // Fill the bins, ignoring values outside the range.\n    i = -1; while(++i < n) {\n      x = values[i];\n      if ((x >= range[0]) && (x <= range[1])) {\n        bin = bins[d3.bisect(thresholds, x, 1, m) - 1];\n        bin.y += k;\n        bin.push(data[i]);\n      }\n    }\n\n    return bins;\n  }\n\n  // Specifies how to extract a value from the associated data. The default\n  // value function is `Number`, which is equivalent to the identity function.\n  histogram.value = function(x) {\n    if (!arguments.length) return valuer;\n    valuer = x;\n    return histogram;\n  };\n\n  // Specifies the range of the histogram. Values outside the specified range\n  // will be ignored. The argument `x` may be specified either as a two-element\n  // array representing the minimum and maximum value of the range, or as a\n  // function that returns the range given the array of values and the current\n  // index `i`. The default range is the extent (minimum and maximum) of the\n  // values.\n  histogram.range = function(x) {\n    if (!arguments.length) return ranger;\n    ranger = d3.functor(x);\n    return histogram;\n  };\n\n  // Specifies how to bin values in the histogram. The argument `x` may be\n  // specified as a number, in which case the range of values will be split\n  // uniformly into the given number of bins. Or, `x` may be an array of\n  // threshold values, defining the bins; the specified array must contain the\n  // rightmost (upper) value, thus specifying n + 1 values for n bins. Or, `x`\n  // may be a function which is evaluated, being passed the range, the array of\n  // values, and the current index `i`, returning an array of thresholds. The\n  // default bin function will divide the values into uniform bins using\n  // Sturges' formula.\n  histogram.bins = function(x) {\n    if (!arguments.length) return binner;\n    binner = typeof x === \"number\"\n        ? function(range) { return d3_layout_histogramBinFixed(range, x); }\n        : d3.functor(x);\n    return histogram;\n  };\n\n  // Specifies whether the histogram's `y` value is a count (frequency) or a\n  // probability (density). The default value is true.\n  histogram.frequency = function(x) {\n    if (!arguments.length) return frequency;\n    frequency = !!x;\n    return histogram;\n  };\n\n  return histogram;\n};\n\nfunction d3_layout_histogramBinSturges(range, values) {\n  return d3_layout_histogramBinFixed(range, Math.ceil(Math.log(values.length) / Math.LN2 + 1));\n}\n\nfunction d3_layout_histogramBinFixed(range, n) {\n  var x = -1,\n      b = +range[0],\n      m = (range[1] - b) / n,\n      f = [];\n  while (++x <= n) f[x] = m * x + b;\n  return f;\n}\n\nfunction d3_layout_histogramRange(values) {\n  return [d3.min(values), d3.max(values)];\n}\nd3.layout.hierarchy = function() {\n  var sort = d3_layout_hierarchySort,\n      children = d3_layout_hierarchyChildren,\n      value = d3_layout_hierarchyValue;\n\n  // Recursively compute the node depth and value.\n  // Also converts the data representation into a standard hierarchy structure.\n  function recurse(data, depth, nodes) {\n    var childs = children.call(hierarchy, data, depth),\n        node = d3_layout_hierarchyInline ? data : {data: data};\n    node.depth = depth;\n    nodes.push(node);\n    if (childs && (n = childs.length)) {\n      var i = -1,\n          n,\n          c = node.children = [],\n          v = 0,\n          j = depth + 1;\n      while (++i < n) {\n        d = recurse(childs[i], j, nodes);\n        d.parent = node;\n        c.push(d);\n        v += d.value;\n      }\n      if (sort) c.sort(sort);\n      if (value) node.value = v;\n    } else if (value) {\n      node.value = +value.call(hierarchy, data, depth) || 0;\n    }\n    return node;\n  }\n\n  // Recursively re-evaluates the node value.\n  function revalue(node, depth) {\n    var children = node.children,\n        v = 0;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n,\n          j = depth + 1;\n      while (++i < n) v += revalue(children[i], j);\n    } else if (value) {\n      v = +value.call(hierarchy, d3_layout_hierarchyInline ? node : node.data, depth) || 0;\n    }\n    if (value) node.value = v;\n    return v;\n  }\n\n  function hierarchy(d) {\n    var nodes = [];\n    recurse(d, 0, nodes);\n    return nodes;\n  }\n\n  hierarchy.sort = function(x) {\n    if (!arguments.length) return sort;\n    sort = x;\n    return hierarchy;\n  };\n\n  hierarchy.children = function(x) {\n    if (!arguments.length) return children;\n    children = x;\n    return hierarchy;\n  };\n\n  hierarchy.value = function(x) {\n    if (!arguments.length) return value;\n    value = x;\n    return hierarchy;\n  };\n\n  // Re-evaluates the `value` property for the specified hierarchy.\n  hierarchy.revalue = function(root) {\n    revalue(root, 0);\n    return root;\n  };\n\n  return hierarchy;\n};\n\n// A method assignment helper for hierarchy subclasses.\nfunction d3_layout_hierarchyRebind(object, hierarchy) {\n  d3.rebind(object, hierarchy, \"sort\", \"children\", \"value\");\n\n  // Add an alias for links, for convenience.\n  object.links = d3_layout_hierarchyLinks;\n\n  // If the new API is used, enabling inlining.\n  object.nodes = function(d) {\n    d3_layout_hierarchyInline = true;\n    return (object.nodes = object)(d);\n  };\n\n  return object;\n}\n\nfunction d3_layout_hierarchyChildren(d) {\n  return d.children;\n}\n\nfunction d3_layout_hierarchyValue(d) {\n  return d.value;\n}\n\nfunction d3_layout_hierarchySort(a, b) {\n  return b.value - a.value;\n}\n\n// Returns an array source+target objects for the specified nodes.\nfunction d3_layout_hierarchyLinks(nodes) {\n  return d3.merge(nodes.map(function(parent) {\n    return (parent.children || []).map(function(child) {\n      return {source: parent, target: child};\n    });\n  }));\n}\n\n// For backwards-compatibility, don't enable inlining by default.\nvar d3_layout_hierarchyInline = false;\nd3.layout.pack = function() {\n  var hierarchy = d3.layout.hierarchy().sort(d3_layout_packSort),\n      size = [1, 1];\n\n  function pack(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0];\n\n    // Recursively compute the layout.\n    root.x = 0;\n    root.y = 0;\n    d3_layout_packTree(root);\n\n    // Scale the layout to fit the requested size.\n    var w = size[0],\n        h = size[1],\n        k = 1 / Math.max(2 * root.r / w, 2 * root.r / h);\n    d3_layout_packTransform(root, w / 2, h / 2, k);\n\n    return nodes;\n  }\n\n  pack.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return pack;\n  };\n\n  return d3_layout_hierarchyRebind(pack, hierarchy);\n};\n\nfunction d3_layout_packSort(a, b) {\n  return a.value - b.value;\n}\n\nfunction d3_layout_packInsert(a, b) {\n  var c = a._pack_next;\n  a._pack_next = b;\n  b._pack_prev = a;\n  b._pack_next = c;\n  c._pack_prev = b;\n}\n\nfunction d3_layout_packSplice(a, b) {\n  a._pack_next = b;\n  b._pack_prev = a;\n}\n\nfunction d3_layout_packIntersects(a, b) {\n  var dx = b.x - a.x,\n      dy = b.y - a.y,\n      dr = a.r + b.r;\n  return dr * dr - dx * dx - dy * dy > .001; // within epsilon\n}\n\nfunction d3_layout_packCircle(nodes) {\n  var xMin = Infinity,\n      xMax = -Infinity,\n      yMin = Infinity,\n      yMax = -Infinity,\n      n = nodes.length,\n      a, b, c, j, k;\n\n  function bound(node) {\n    xMin = Math.min(node.x - node.r, xMin);\n    xMax = Math.max(node.x + node.r, xMax);\n    yMin = Math.min(node.y - node.r, yMin);\n    yMax = Math.max(node.y + node.r, yMax);\n  }\n\n  // Create node links.\n  nodes.forEach(d3_layout_packLink);\n\n  // Create first node.\n  a = nodes[0];\n  a.x = -a.r;\n  a.y = 0;\n  bound(a);\n\n  // Create second node.\n  if (n > 1) {\n    b = nodes[1];\n    b.x = b.r;\n    b.y = 0;\n    bound(b);\n\n    // Create third node and build chain.\n    if (n > 2) {\n      c = nodes[2];\n      d3_layout_packPlace(a, b, c);\n      bound(c);\n      d3_layout_packInsert(a, c);\n      a._pack_prev = c;\n      d3_layout_packInsert(c, b);\n      b = a._pack_next;\n\n      // Now iterate through the rest.\n      for (var i = 3; i < n; i++) {\n        d3_layout_packPlace(a, b, c = nodes[i]);\n\n        // Search for the closest intersection.\n        var isect = 0, s1 = 1, s2 = 1;\n        for (j = b._pack_next; j !== b; j = j._pack_next, s1++) {\n          if (d3_layout_packIntersects(j, c)) {\n            isect = 1;\n            break;\n          }\n        }\n        if (isect == 1) {\n          for (k = a._pack_prev; k !== j._pack_prev; k = k._pack_prev, s2++) {\n            if (d3_layout_packIntersects(k, c)) {\n              break;\n            }\n          }\n        }\n\n        // Update node chain.\n        if (isect) {\n          if (s1 < s2 || (s1 == s2 && b.r < a.r)) d3_layout_packSplice(a, b = j);\n          else d3_layout_packSplice(a = k, b);\n          i--;\n        } else {\n          d3_layout_packInsert(a, c);\n          b = c;\n          bound(c);\n        }\n      }\n    }\n  }\n\n  // Re-center the circles and return the encompassing radius.\n  var cx = (xMin + xMax) / 2,\n      cy = (yMin + yMax) / 2,\n      cr = 0;\n  for (var i = 0; i < n; i++) {\n    var node = nodes[i];\n    node.x -= cx;\n    node.y -= cy;\n    cr = Math.max(cr, node.r + Math.sqrt(node.x * node.x + node.y * node.y));\n  }\n\n  // Remove node links.\n  nodes.forEach(d3_layout_packUnlink);\n\n  return cr;\n}\n\nfunction d3_layout_packLink(node) {\n  node._pack_next = node._pack_prev = node;\n}\n\nfunction d3_layout_packUnlink(node) {\n  delete node._pack_next;\n  delete node._pack_prev;\n}\n\nfunction d3_layout_packTree(node) {\n  var children = node.children;\n  if (children && children.length) {\n    children.forEach(d3_layout_packTree);\n    node.r = d3_layout_packCircle(children);\n  } else {\n    node.r = Math.sqrt(node.value);\n  }\n}\n\nfunction d3_layout_packTransform(node, x, y, k) {\n  var children = node.children;\n  node.x = (x += k * node.x);\n  node.y = (y += k * node.y);\n  node.r *= k;\n  if (children) {\n    var i = -1, n = children.length;\n    while (++i < n) d3_layout_packTransform(children[i], x, y, k);\n  }\n}\n\nfunction d3_layout_packPlace(a, b, c) {\n  var db = a.r + c.r,\n      dx = b.x - a.x,\n      dy = b.y - a.y;\n  if (db && (dx || dy)) {\n    var da = b.r + c.r,\n        dc = Math.sqrt(dx * dx + dy * dy),\n        cos = Math.max(-1, Math.min(1, (db * db + dc * dc - da * da) / (2 * db * dc))),\n        theta = Math.acos(cos),\n        x = cos * (db /= dc),\n        y = Math.sin(theta) * db;\n    c.x = a.x + x * dx + y * dy;\n    c.y = a.y + x * dy - y * dx;\n  } else {\n    c.x = a.x + db;\n    c.y = a.y;\n  }\n}\n// Implements a hierarchical layout using the cluster (or dendrogram)\n// algorithm.\nd3.layout.cluster = function() {\n  var hierarchy = d3.layout.hierarchy().sort(null).value(null),\n      separation = d3_layout_treeSeparation,\n      size = [1, 1]; // width, height\n\n  function cluster(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0],\n        previousNode,\n        x = 0,\n        kx,\n        ky;\n\n    // First walk, computing the initial x & y values.\n    d3_layout_treeVisitAfter(root, function(node) {\n      var children = node.children;\n      if (children && children.length) {\n        node.x = d3_layout_clusterX(children);\n        node.y = d3_layout_clusterY(children);\n      } else {\n        node.x = previousNode ? x += separation(node, previousNode) : 0;\n        node.y = 0;\n        previousNode = node;\n      }\n    });\n\n    // Compute the left-most, right-most, and depth-most nodes for extents.\n    var left = d3_layout_clusterLeft(root),\n        right = d3_layout_clusterRight(root),\n        x0 = left.x - separation(left, right) / 2,\n        x1 = right.x + separation(right, left) / 2;\n\n    // Second walk, normalizing x & y to the desired size.\n    d3_layout_treeVisitAfter(root, function(node) {\n      node.x = (node.x - x0) / (x1 - x0) * size[0];\n      node.y = (1 - (root.y ? node.y / root.y : 1)) * size[1];\n    });\n\n    return nodes;\n  }\n\n  cluster.separation = function(x) {\n    if (!arguments.length) return separation;\n    separation = x;\n    return cluster;\n  };\n\n  cluster.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return cluster;\n  };\n\n  return d3_layout_hierarchyRebind(cluster, hierarchy);\n};\n\nfunction d3_layout_clusterY(children) {\n  return 1 + d3.max(children, function(child) {\n    return child.y;\n  });\n}\n\nfunction d3_layout_clusterX(children) {\n  return children.reduce(function(x, child) {\n    return x + child.x;\n  }, 0) / children.length;\n}\n\nfunction d3_layout_clusterLeft(node) {\n  var children = node.children;\n  return children && children.length ? d3_layout_clusterLeft(children[0]) : node;\n}\n\nfunction d3_layout_clusterRight(node) {\n  var children = node.children, n;\n  return children && (n = children.length) ? d3_layout_clusterRight(children[n - 1]) : node;\n}\n// Node-link tree diagram using the Reingold-Tilford \"tidy\" algorithm\nd3.layout.tree = function() {\n  var hierarchy = d3.layout.hierarchy().sort(null).value(null),\n      separation = d3_layout_treeSeparation,\n      size = [1, 1]; // width, height\n\n  function tree(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0];\n\n    function firstWalk(node, previousSibling) {\n      var children = node.children,\n          layout = node._tree;\n      if (children && (n = children.length)) {\n        var n,\n            firstChild = children[0],\n            previousChild,\n            ancestor = firstChild,\n            child,\n            i = -1;\n        while (++i < n) {\n          child = children[i];\n          firstWalk(child, previousChild);\n          ancestor = apportion(child, previousChild, ancestor);\n          previousChild = child;\n        }\n        d3_layout_treeShift(node);\n        var midpoint = .5 * (firstChild._tree.prelim + child._tree.prelim);\n        if (previousSibling) {\n          layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);\n          layout.mod = layout.prelim - midpoint;\n        } else {\n          layout.prelim = midpoint;\n        }\n      } else {\n        if (previousSibling) {\n          layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);\n        }\n      }\n    }\n\n    function secondWalk(node, x) {\n      node.x = node._tree.prelim + x;\n      var children = node.children;\n      if (children && (n = children.length)) {\n        var i = -1,\n            n;\n        x += node._tree.mod;\n        while (++i < n) {\n          secondWalk(children[i], x);\n        }\n      }\n    }\n\n    function apportion(node, previousSibling, ancestor) {\n      if (previousSibling) {\n        var vip = node,\n            vop = node,\n            vim = previousSibling,\n            vom = node.parent.children[0],\n            sip = vip._tree.mod,\n            sop = vop._tree.mod,\n            sim = vim._tree.mod,\n            som = vom._tree.mod,\n            shift;\n        while (vim = d3_layout_treeRight(vim), vip = d3_layout_treeLeft(vip), vim && vip) {\n          vom = d3_layout_treeLeft(vom);\n          vop = d3_layout_treeRight(vop);\n          vop._tree.ancestor = node;\n          shift = vim._tree.prelim + sim - vip._tree.prelim - sip + separation(vim, vip);\n          if (shift > 0) {\n            d3_layout_treeMove(d3_layout_treeAncestor(vim, node, ancestor), node, shift);\n            sip += shift;\n            sop += shift;\n          }\n          sim += vim._tree.mod;\n          sip += vip._tree.mod;\n          som += vom._tree.mod;\n          sop += vop._tree.mod;\n        }\n        if (vim && !d3_layout_treeRight(vop)) {\n          vop._tree.thread = vim;\n          vop._tree.mod += sim - sop;\n        }\n        if (vip && !d3_layout_treeLeft(vom)) {\n          vom._tree.thread = vip;\n          vom._tree.mod += sip - som;\n          ancestor = node;\n        }\n      }\n      return ancestor;\n    }\n\n    // Initialize temporary layout variables.\n    d3_layout_treeVisitAfter(root, function(node, previousSibling) {\n      node._tree = {\n        ancestor: node,\n        prelim: 0,\n        mod: 0,\n        change: 0,\n        shift: 0,\n        number: previousSibling ? previousSibling._tree.number + 1 : 0\n      };\n    });\n\n    // Compute the layout using Buchheim et al.'s algorithm.\n    firstWalk(root);\n    secondWalk(root, -root._tree.prelim);\n\n    // Compute the left-most, right-most, and depth-most nodes for extents.\n    var left = d3_layout_treeSearch(root, d3_layout_treeLeftmost),\n        right = d3_layout_treeSearch(root, d3_layout_treeRightmost),\n        deep = d3_layout_treeSearch(root, d3_layout_treeDeepest),\n        x0 = left.x - separation(left, right) / 2,\n        x1 = right.x + separation(right, left) / 2,\n        y1 = deep.depth || 1;\n\n    // Clear temporary layout variables; transform x and y.\n    d3_layout_treeVisitAfter(root, function(node) {\n      node.x = (node.x - x0) / (x1 - x0) * size[0];\n      node.y = node.depth / y1 * size[1];\n      delete node._tree;\n    });\n\n    return nodes;\n  }\n\n  tree.separation = function(x) {\n    if (!arguments.length) return separation;\n    separation = x;\n    return tree;\n  };\n\n  tree.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return tree;\n  };\n\n  return d3_layout_hierarchyRebind(tree, hierarchy);\n};\n\nfunction d3_layout_treeSeparation(a, b) {\n  return a.parent == b.parent ? 1 : 2;\n}\n\n// function d3_layout_treeSeparationRadial(a, b) {\n//   return (a.parent == b.parent ? 1 : 2) / a.depth;\n// }\n\nfunction d3_layout_treeLeft(node) {\n  var children = node.children;\n  return children && children.length ? children[0] : node._tree.thread;\n}\n\nfunction d3_layout_treeRight(node) {\n  var children = node.children,\n      n;\n  return children && (n = children.length) ? children[n - 1] : node._tree.thread;\n}\n\nfunction d3_layout_treeSearch(node, compare) {\n  var children = node.children;\n  if (children && (n = children.length)) {\n    var child,\n        n,\n        i = -1;\n    while (++i < n) {\n      if (compare(child = d3_layout_treeSearch(children[i], compare), node) > 0) {\n        node = child;\n      }\n    }\n  }\n  return node;\n}\n\nfunction d3_layout_treeRightmost(a, b) {\n  return a.x - b.x;\n}\n\nfunction d3_layout_treeLeftmost(a, b) {\n  return b.x - a.x;\n}\n\nfunction d3_layout_treeDeepest(a, b) {\n  return a.depth - b.depth;\n}\n\nfunction d3_layout_treeVisitAfter(node, callback) {\n  function visit(node, previousSibling) {\n    var children = node.children;\n    if (children && (n = children.length)) {\n      var child,\n          previousChild = null,\n          i = -1,\n          n;\n      while (++i < n) {\n        child = children[i];\n        visit(child, previousChild);\n        previousChild = child;\n      }\n    }\n    callback(node, previousSibling);\n  }\n  visit(node, null);\n}\n\nfunction d3_layout_treeShift(node) {\n  var shift = 0,\n      change = 0,\n      children = node.children,\n      i = children.length,\n      child;\n  while (--i >= 0) {\n    child = children[i]._tree;\n    child.prelim += shift;\n    child.mod += shift;\n    shift += child.shift + (change += child.change);\n  }\n}\n\nfunction d3_layout_treeMove(ancestor, node, shift) {\n  ancestor = ancestor._tree;\n  node = node._tree;\n  var change = shift / (node.number - ancestor.number);\n  ancestor.change += change;\n  node.change -= change;\n  node.shift += shift;\n  node.prelim += shift;\n  node.mod += shift;\n}\n\nfunction d3_layout_treeAncestor(vim, node, ancestor) {\n  return vim._tree.ancestor.parent == node.parent\n      ? vim._tree.ancestor\n      : ancestor;\n}\n// Squarified Treemaps by Mark Bruls, Kees Huizing, and Jarke J. van Wijk\n// Modified to support a target aspect ratio by Jeff Heer\nd3.layout.treemap = function() {\n  var hierarchy = d3.layout.hierarchy(),\n      round = Math.round,\n      size = [1, 1], // width, height\n      padding = null,\n      pad = d3_layout_treemapPadNull,\n      sticky = false,\n      stickies,\n      ratio = 0.5 * (1 + Math.sqrt(5)); // golden ratio\n\n  // Compute the area for each child based on value & scale.\n  function scale(children, k) {\n    var i = -1,\n        n = children.length,\n        child,\n        area;\n    while (++i < n) {\n      area = (child = children[i]).value * (k < 0 ? 0 : k);\n      child.area = isNaN(area) || area <= 0 ? 0 : area;\n    }\n  }\n\n  // Recursively arranges the specified node's children into squarified rows.\n  function squarify(node) {\n    var children = node.children;\n    if (children && children.length) {\n      var rect = pad(node),\n          row = [],\n          remaining = children.slice(), // copy-on-write\n          child,\n          best = Infinity, // the best row score so far\n          score, // the current row score\n          u = Math.min(rect.dx, rect.dy), // initial orientation\n          n;\n      scale(remaining, rect.dx * rect.dy / node.value);\n      row.area = 0;\n      while ((n = remaining.length) > 0) {\n        row.push(child = remaining[n - 1]);\n        row.area += child.area;\n        if ((score = worst(row, u)) <= best) { // continue with this orientation\n          remaining.pop();\n          best = score;\n        } else { // abort, and try a different orientation\n          row.area -= row.pop().area;\n          position(row, u, rect, false);\n          u = Math.min(rect.dx, rect.dy);\n          row.length = row.area = 0;\n          best = Infinity;\n        }\n      }\n      if (row.length) {\n        position(row, u, rect, true);\n        row.length = row.area = 0;\n      }\n      children.forEach(squarify);\n    }\n  }\n\n  // Recursively resizes the specified node's children into existing rows.\n  // Preserves the existing layout!\n  function stickify(node) {\n    var children = node.children;\n    if (children && children.length) {\n      var rect = pad(node),\n          remaining = children.slice(), // copy-on-write\n          child,\n          row = [];\n      scale(remaining, rect.dx * rect.dy / node.value);\n      row.area = 0;\n      while (child = remaining.pop()) {\n        row.push(child);\n        row.area += child.area;\n        if (child.z != null) {\n          position(row, child.z ? rect.dx : rect.dy, rect, !remaining.length);\n          row.length = row.area = 0;\n        }\n      }\n      children.forEach(stickify);\n    }\n  }\n\n  // Computes the score for the specified row, as the worst aspect ratio.\n  function worst(row, u) {\n    var s = row.area,\n        r,\n        rmax = 0,\n        rmin = Infinity,\n        i = -1,\n        n = row.length;\n    while (++i < n) {\n      if (!(r = row[i].area)) continue;\n      if (r < rmin) rmin = r;\n      if (r > rmax) rmax = r;\n    }\n    s *= s;\n    u *= u;\n    return s\n        ? Math.max((u * rmax * ratio) / s, s / (u * rmin * ratio))\n        : Infinity;\n  }\n\n  // Positions the specified row of nodes. Modifies `rect`.\n  function position(row, u, rect, flush) {\n    var i = -1,\n        n = row.length,\n        x = rect.x,\n        y = rect.y,\n        v = u ? round(row.area / u) : 0,\n        o;\n    if (u == rect.dx) { // horizontal subdivision\n      if (flush || v > rect.dy) v = rect.dy; // over+underflow\n      while (++i < n) {\n        o = row[i];\n        o.x = x;\n        o.y = y;\n        o.dy = v;\n        x += o.dx = Math.min(rect.x + rect.dx - x, v ? round(o.area / v) : 0);\n      }\n      o.z = true;\n      o.dx += rect.x + rect.dx - x; // rounding error\n      rect.y += v;\n      rect.dy -= v;\n    } else { // vertical subdivision\n      if (flush || v > rect.dx) v = rect.dx; // over+underflow\n      while (++i < n) {\n        o = row[i];\n        o.x = x;\n        o.y = y;\n        o.dx = v;\n        y += o.dy = Math.min(rect.y + rect.dy - y, v ? round(o.area / v) : 0);\n      }\n      o.z = false;\n      o.dy += rect.y + rect.dy - y; // rounding error\n      rect.x += v;\n      rect.dx -= v;\n    }\n  }\n\n  function treemap(d) {\n    var nodes = stickies || hierarchy(d),\n        root = nodes[0];\n    root.x = 0;\n    root.y = 0;\n    root.dx = size[0];\n    root.dy = size[1];\n    if (stickies) hierarchy.revalue(root);\n    scale([root], root.dx * root.dy / root.value);\n    (stickies ? stickify : squarify)(root);\n    if (sticky) stickies = nodes;\n    return nodes;\n  }\n\n  treemap.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return treemap;\n  };\n\n  treemap.padding = function(x) {\n    if (!arguments.length) return padding;\n\n    function padFunction(node) {\n      var p = x.call(treemap, node, node.depth);\n      return p == null\n          ? d3_layout_treemapPadNull(node)\n          : d3_layout_treemapPad(node, typeof p === \"number\" ? [p, p, p, p] : p);\n    }\n\n    function padConstant(node) {\n      return d3_layout_treemapPad(node, x);\n    }\n\n    var type;\n    pad = (padding = x) == null ? d3_layout_treemapPadNull\n        : (type = typeof x) === \"function\" ? padFunction\n        : type === \"number\" ? (x = [x, x, x, x], padConstant)\n        : padConstant;\n    return treemap;\n  };\n\n  treemap.round = function(x) {\n    if (!arguments.length) return round != Number;\n    round = x ? Math.round : Number;\n    return treemap;\n  };\n\n  treemap.sticky = function(x) {\n    if (!arguments.length) return sticky;\n    sticky = x;\n    stickies = null;\n    return treemap;\n  };\n\n  treemap.ratio = function(x) {\n    if (!arguments.length) return ratio;\n    ratio = x;\n    return treemap;\n  };\n\n  return d3_layout_hierarchyRebind(treemap, hierarchy);\n};\n\nfunction d3_layout_treemapPadNull(node) {\n  return {x: node.x, y: node.y, dx: node.dx, dy: node.dy};\n}\n\nfunction d3_layout_treemapPad(node, padding) {\n  var x = node.x + padding[3],\n      y = node.y + padding[0],\n      dx = node.dx - padding[1] - padding[3],\n      dy = node.dy - padding[0] - padding[2];\n  if (dx < 0) { x += dx / 2; dx = 0; }\n  if (dy < 0) { y += dy / 2; dy = 0; }\n  return {x: x, y: y, dx: dx, dy: dy};\n}\nd3.csv = function(url, callback) {\n  d3.text(url, \"text/csv\", function(text) {\n    callback(text && d3.csv.parse(text));\n  });\n};\nd3.csv.parse = function(text) {\n  var header;\n  return d3.csv.parseRows(text, function(row, i) {\n    if (i) {\n      var o = {}, j = -1, m = header.length;\n      while (++j < m) o[header[j]] = row[j];\n      return o;\n    } else {\n      header = row;\n      return null;\n    }\n  });\n};\n\nd3.csv.parseRows = function(text, f) {\n  var EOL = {}, // sentinel value for end-of-line\n      EOF = {}, // sentinel value for end-of-file\n      rows = [], // output rows\n      re = /\\r\\n|[,\\r\\n]/g, // field separator regex\n      n = 0, // the current line number\n      t, // the current token\n      eol; // is the current token followed by EOL?\n\n  re.lastIndex = 0; // work-around bug in FF 3.6\n\n  /** @private Returns the next token. */\n  function token() {\n    if (re.lastIndex >= text.length) return EOF; // special case: end of file\n    if (eol) { eol = false; return EOL; } // special case: end of line\n\n    // special case: quotes\n    var j = re.lastIndex;\n    if (text.charCodeAt(j) === 34) {\n      var i = j;\n      while (i++ < text.length) {\n        if (text.charCodeAt(i) === 34) {\n          if (text.charCodeAt(i + 1) !== 34) break;\n          i++;\n        }\n      }\n      re.lastIndex = i + 2;\n      var c = text.charCodeAt(i + 1);\n      if (c === 13) {\n        eol = true;\n        if (text.charCodeAt(i + 2) === 10) re.lastIndex++;\n      } else if (c === 10) {\n        eol = true;\n      }\n      return text.substring(j + 1, i).replace(/\"\"/g, \"\\\"\");\n    }\n\n    // common case\n    var m = re.exec(text);\n    if (m) {\n      eol = m[0].charCodeAt(0) !== 44;\n      return text.substring(j, m.index);\n    }\n    re.lastIndex = text.length;\n    return text.substring(j);\n  }\n\n  while ((t = token()) !== EOF) {\n    var a = [];\n    while ((t !== EOL) && (t !== EOF)) {\n      a.push(t);\n      t = token();\n    }\n    if (f && !(a = f(a, n++))) continue;\n    rows.push(a);\n  }\n\n  return rows;\n};\nd3.csv.format = function(rows) {\n  return rows.map(d3_csv_formatRow).join(\"\\n\");\n};\n\nfunction d3_csv_formatRow(row) {\n  return row.map(d3_csv_formatValue).join(\",\");\n}\n\nfunction d3_csv_formatValue(text) {\n  return /[\",\\n]/.test(text)\n      ? \"\\\"\" + text.replace(/\\\"/g, \"\\\"\\\"\") + \"\\\"\"\n      : text;\n}\nd3.geo = {};\n\nvar d3_geo_radians = Math.PI / 180;\n// TODO clip input coordinates on opposite hemisphere\nd3.geo.azimuthal = function() {\n  var mode = \"orthographic\", // or stereographic, gnomonic, equidistant or equalarea\n      origin,\n      scale = 200,\n      translate = [480, 250],\n      x0,\n      y0,\n      cy0,\n      sy0;\n\n  function azimuthal(coordinates) {\n    var x1 = coordinates[0] * d3_geo_radians - x0,\n        y1 = coordinates[1] * d3_geo_radians,\n        cx1 = Math.cos(x1),\n        sx1 = Math.sin(x1),\n        cy1 = Math.cos(y1),\n        sy1 = Math.sin(y1),\n        cc = mode !== \"orthographic\" ? sy0 * sy1 + cy0 * cy1 * cx1 : null,\n        c,\n        k = mode === \"stereographic\" ? 1 / (1 + cc)\n          : mode === \"gnomonic\" ? 1 / cc\n          : mode === \"equidistant\" ? (c = Math.acos(cc), c ? c / Math.sin(c) : 0)\n          : mode === \"equalarea\" ? Math.sqrt(2 / (1 + cc))\n          : 1,\n        x = k * cy1 * sx1,\n        y = k * (sy0 * cy1 * cx1 - cy0 * sy1);\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  azimuthal.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale,\n        p = Math.sqrt(x * x + y * y),\n        c = mode === \"stereographic\" ? 2 * Math.atan(p)\n          : mode === \"gnomonic\" ? Math.atan(p)\n          : mode === \"equidistant\" ? p\n          : mode === \"equalarea\" ? 2 * Math.asin(.5 * p)\n          : Math.asin(p),\n        sc = Math.sin(c),\n        cc = Math.cos(c);\n    return [\n      (x0 + Math.atan2(x * sc, p * cy0 * cc + y * sy0 * sc)) / d3_geo_radians,\n      Math.asin(cc * sy0 - (p ? (y * sc * cy0) / p : 0)) / d3_geo_radians\n    ];\n  };\n\n  azimuthal.mode = function(x) {\n    if (!arguments.length) return mode;\n    mode = x + \"\";\n    return azimuthal;\n  };\n\n  azimuthal.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    x0 = origin[0] * d3_geo_radians;\n    y0 = origin[1] * d3_geo_radians;\n    cy0 = Math.cos(y0);\n    sy0 = Math.sin(y0);\n    return azimuthal;\n  };\n\n  azimuthal.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return azimuthal;\n  };\n\n  azimuthal.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return azimuthal;\n  };\n\n  return azimuthal.origin([0, 0]);\n};\n// Derived from Tom Carden's Albers implementation for Protovis.\n// http://gist.github.com/476238\n// http://mathworld.wolfram.com/AlbersEqual-AreaConicProjection.html\n\nd3.geo.albers = function() {\n  var origin = [-98, 38],\n      parallels = [29.5, 45.5],\n      scale = 1000,\n      translate = [480, 250],\n      lng0, // d3_geo_radians * origin[0]\n      n,\n      C,\n      p0;\n\n  function albers(coordinates) {\n    var t = n * (d3_geo_radians * coordinates[0] - lng0),\n        p = Math.sqrt(C - 2 * n * Math.sin(d3_geo_radians * coordinates[1])) / n;\n    return [\n      scale * p * Math.sin(t) + translate[0],\n      scale * (p * Math.cos(t) - p0) + translate[1]\n    ];\n  }\n\n  albers.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale,\n        p0y = p0 + y,\n        t = Math.atan2(x, p0y),\n        p = Math.sqrt(x * x + p0y * p0y);\n    return [\n      (lng0 + t / n) / d3_geo_radians,\n      Math.asin((C - p * p * n * n) / (2 * n)) / d3_geo_radians\n    ];\n  };\n\n  function reload() {\n    var phi1 = d3_geo_radians * parallels[0],\n        phi2 = d3_geo_radians * parallels[1],\n        lat0 = d3_geo_radians * origin[1],\n        s = Math.sin(phi1),\n        c = Math.cos(phi1);\n    lng0 = d3_geo_radians * origin[0];\n    n = .5 * (s + Math.sin(phi2));\n    C = c * c + 2 * n * s;\n    p0 = Math.sqrt(C - 2 * n * Math.sin(lat0)) / n;\n    return albers;\n  }\n\n  albers.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = [+x[0], +x[1]];\n    return reload();\n  };\n\n  albers.parallels = function(x) {\n    if (!arguments.length) return parallels;\n    parallels = [+x[0], +x[1]];\n    return reload();\n  };\n\n  albers.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return albers;\n  };\n\n  albers.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return albers;\n  };\n\n  return reload();\n};\n\n// A composite projection for the United States, 960x500. The set of standard\n// parallels for each region comes from USGS, which is published here:\n// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers\n// TODO allow the composite projection to be rescaled?\nd3.geo.albersUsa = function() {\n  var lower48 = d3.geo.albers();\n\n  var alaska = d3.geo.albers()\n      .origin([-160, 60])\n      .parallels([55, 65]);\n\n  var hawaii = d3.geo.albers()\n      .origin([-160, 20])\n      .parallels([8, 18]);\n\n  var puertoRico = d3.geo.albers()\n      .origin([-60, 10])\n      .parallels([8, 18]);\n\n  function albersUsa(coordinates) {\n    var lon = coordinates[0],\n        lat = coordinates[1];\n    return (lat > 50 ? alaska\n        : lon < -140 ? hawaii\n        : lat < 21 ? puertoRico\n        : lower48)(coordinates);\n  }\n\n  albersUsa.scale = function(x) {\n    if (!arguments.length) return lower48.scale();\n    lower48.scale(x);\n    alaska.scale(x * .6);\n    hawaii.scale(x);\n    puertoRico.scale(x * 1.5);\n    return albersUsa.translate(lower48.translate());\n  };\n\n  albersUsa.translate = function(x) {\n    if (!arguments.length) return lower48.translate();\n    var dz = lower48.scale() / 1000,\n        dx = x[0],\n        dy = x[1];\n    lower48.translate(x);\n    alaska.translate([dx - 400 * dz, dy + 170 * dz]);\n    hawaii.translate([dx - 190 * dz, dy + 200 * dz]);\n    puertoRico.translate([dx + 580 * dz, dy + 430 * dz]);\n    return albersUsa;\n  };\n\n  return albersUsa.scale(lower48.scale());\n};\nd3.geo.bonne = function() {\n  var scale = 200,\n      translate = [480, 250],\n      x0, // origin longitude in radians\n      y0, // origin latitude in radians\n      y1, // parallel latitude in radians\n      c1; // cot(y1)\n\n  function bonne(coordinates) {\n    var x = coordinates[0] * d3_geo_radians - x0,\n        y = coordinates[1] * d3_geo_radians - y0;\n    if (y1) {\n      var p = c1 + y1 - y, E = x * Math.cos(y) / p;\n      x = p * Math.sin(E);\n      y = p * Math.cos(E) - c1;\n    } else {\n      x *= Math.cos(y);\n      y *= -1;\n    }\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  bonne.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    if (y1) {\n      var c = c1 + y, p = Math.sqrt(x * x + c * c);\n      y = c1 + y1 - p;\n      x = x0 + p * Math.atan2(x, c) / Math.cos(y);\n    } else {\n      y *= -1;\n      x /= Math.cos(y);\n    }\n    return [\n      x / d3_geo_radians,\n      y / d3_geo_radians\n    ];\n  };\n\n  // 90° for Werner, 0° for Sinusoidal\n  bonne.parallel = function(x) {\n    if (!arguments.length) return y1 / d3_geo_radians;\n    c1 = 1 / Math.tan(y1 = x * d3_geo_radians);\n    return bonne;\n  };\n\n  bonne.origin = function(x) {\n    if (!arguments.length) return [x0 / d3_geo_radians, y0 / d3_geo_radians];\n    x0 = x[0] * d3_geo_radians;\n    y0 = x[1] * d3_geo_radians;\n    return bonne;\n  };\n\n  bonne.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return bonne;\n  };\n\n  bonne.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return bonne;\n  };\n\n  return bonne.origin([0, 0]).parallel(45);\n};\nd3.geo.equirectangular = function() {\n  var scale = 500,\n      translate = [480, 250];\n\n  function equirectangular(coordinates) {\n    var x = coordinates[0] / 360,\n        y = -coordinates[1] / 360;\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  equirectangular.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    return [\n      360 * x,\n      -360 * y\n    ];\n  };\n\n  equirectangular.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return equirectangular;\n  };\n\n  equirectangular.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return equirectangular;\n  };\n\n  return equirectangular;\n};\nd3.geo.mercator = function() {\n  var scale = 500,\n      translate = [480, 250];\n\n  function mercator(coordinates) {\n    var x = coordinates[0] / 360,\n        y = -(Math.log(Math.tan(Math.PI / 4 + coordinates[1] * d3_geo_radians / 2)) / d3_geo_radians) / 360;\n    return [\n      scale * x + translate[0],\n      scale * Math.max(-.5, Math.min(.5, y)) + translate[1]\n    ];\n  }\n\n  mercator.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    return [\n      360 * x,\n      2 * Math.atan(Math.exp(-360 * y * d3_geo_radians)) / d3_geo_radians - 90\n    ];\n  };\n\n  mercator.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return mercator;\n  };\n\n  mercator.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return mercator;\n  };\n\n  return mercator;\n};\nfunction d3_geo_type(types, defaultValue) {\n  return function(object) {\n    return object && types.hasOwnProperty(object.type) ? types[object.type](object) : defaultValue;\n  };\n}\n/**\n * Returns a function that, given a GeoJSON object (e.g., a feature), returns\n * the corresponding SVG path. The function can be customized by overriding the\n * projection. Point features are mapped to circles with a default radius of\n * 4.5px; the radius can be specified either as a constant or a function that\n * is evaluated per object.\n */\nd3.geo.path = function() {\n  var pointRadius = 4.5,\n      pointCircle = d3_path_circle(pointRadius),\n      projection = d3.geo.albersUsa();\n\n  function path(d, i) {\n    if (typeof pointRadius === \"function\") {\n      pointCircle = d3_path_circle(pointRadius.apply(this, arguments));\n    }\n    return pathType(d) || null;\n  }\n\n  function project(coordinates) {\n    return projection(coordinates).join(\",\");\n  }\n\n  var pathType = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var path = [],\n          features = o.features,\n          i = -1, // features.index\n          n = features.length;\n      while (++i < n) path.push(pathType(features[i].geometry));\n      return path.join(\"\");\n    },\n\n    Feature: function(o) {\n      return pathType(o.geometry);\n    },\n\n    Point: function(o) {\n      return \"M\" + project(o.coordinates) + pointCircle;\n    },\n\n    MultiPoint: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length;\n      while (++i < n) path.push(\"M\", project(coordinates[i]), pointCircle);\n      return path.join(\"\");\n    },\n\n    LineString: function(o) {\n      var path = [\"M\"],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length;\n      while (++i < n) path.push(project(coordinates[i]), \"L\");\n      path.pop();\n      return path.join(\"\");\n    },\n\n    MultiLineString: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates.index\n          m; // subcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        m = subcoordinates.length;\n        path.push(\"M\");\n        while (++j < m) path.push(project(subcoordinates[j]), \"L\");\n        path.pop();\n      }\n      return path.join(\"\");\n    },\n\n    Polygon: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates.index\n          m; // subcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        if ((m = subcoordinates.length - 1) > 0) {\n          path.push(\"M\");\n          while (++j < m) path.push(project(subcoordinates[j]), \"L\");\n          path[path.length - 1] = \"Z\";\n        }\n      }\n      return path.join(\"\");\n    },\n\n    MultiPolygon: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates index\n          m, // subcoordinates.length\n          subsubcoordinates, // subcoordinates[j]\n          k, // subsubcoordinates index\n          p; // subsubcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        m = subcoordinates.length;\n        while (++j < m) {\n          subsubcoordinates = subcoordinates[j];\n          k = -1;\n          if ((p = subsubcoordinates.length - 1) > 0) {\n            path.push(\"M\");\n            while (++k < p) path.push(project(subsubcoordinates[k]), \"L\");\n            path[path.length - 1] = \"Z\";\n          }\n        }\n      }\n      return path.join(\"\");\n    },\n\n    GeometryCollection: function(o) {\n      var path = [],\n          geometries = o.geometries,\n          i = -1, // geometries index\n          n = geometries.length;\n      while (++i < n) path.push(pathType(geometries[i]));\n      return path.join(\"\");\n    }\n\n  });\n\n  var areaType = path.area = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var area = 0,\n          features = o.features,\n          i = -1, // features.index\n          n = features.length;\n      while (++i < n) area += areaType(features[i]);\n      return area;\n    },\n\n    Feature: function(o) {\n      return areaType(o.geometry);\n    },\n\n    Polygon: function(o) {\n      return polygonArea(o.coordinates);\n    },\n\n    MultiPolygon: function(o) {\n      var sum = 0,\n          coordinates = o.coordinates,\n          i = -1, // coordinates index\n          n = coordinates.length;\n      while (++i < n) sum += polygonArea(coordinates[i]);\n      return sum;\n    },\n\n    GeometryCollection: function(o) {\n      var sum = 0,\n          geometries = o.geometries,\n          i = -1, // geometries index\n          n = geometries.length;\n      while (++i < n) sum += areaType(geometries[i]);\n      return sum;\n    }\n\n  }, 0);\n\n  function polygonArea(coordinates) {\n    var sum = area(coordinates[0]), // exterior ring\n        i = 0, // coordinates.index\n        n = coordinates.length;\n    while (++i < n) sum -= area(coordinates[i]); // holes\n    return sum;\n  }\n\n  function polygonCentroid(coordinates) {\n    var polygon = d3.geom.polygon(coordinates[0].map(projection)), // exterior ring\n        area = polygon.area(),\n        centroid = polygon.centroid(area < 0 ? (area *= -1, 1) : -1),\n        x = centroid[0],\n        y = centroid[1],\n        z = area,\n        i = 0, // coordinates index\n        n = coordinates.length;\n    while (++i < n) {\n      polygon = d3.geom.polygon(coordinates[i].map(projection)); // holes\n      area = polygon.area();\n      centroid = polygon.centroid(area < 0 ? (area *= -1, 1) : -1);\n      x -= centroid[0];\n      y -= centroid[1];\n      z -= area;\n    }\n    return [x, y, 6 * z]; // weighted centroid\n  }\n\n  var centroidType = path.centroid = d3_geo_type({\n\n    // TODO FeatureCollection\n    // TODO Point\n    // TODO MultiPoint\n    // TODO LineString\n    // TODO MultiLineString\n    // TODO GeometryCollection\n\n    Feature: function(o) {\n      return centroidType(o.geometry);\n    },\n\n    Polygon: function(o) {\n      var centroid = polygonCentroid(o.coordinates);\n      return [centroid[0] / centroid[2], centroid[1] / centroid[2]];\n    },\n\n    MultiPolygon: function(o) {\n      var area = 0,\n          coordinates = o.coordinates,\n          centroid,\n          x = 0,\n          y = 0,\n          z = 0,\n          i = -1, // coordinates index\n          n = coordinates.length;\n      while (++i < n) {\n        centroid = polygonCentroid(coordinates[i]);\n        x += centroid[0];\n        y += centroid[1];\n        z += centroid[2];\n      }\n      return [x / z, y / z];\n    }\n\n  });\n\n  function area(coordinates) {\n    return Math.abs(d3.geom.polygon(coordinates.map(projection)).area());\n  }\n\n  path.projection = function(x) {\n    projection = x;\n    return path;\n  };\n\n  path.pointRadius = function(x) {\n    if (typeof x === \"function\") pointRadius = x;\n    else {\n      pointRadius = +x;\n      pointCircle = d3_path_circle(pointRadius);\n    }\n    return path;\n  };\n\n  return path;\n};\n\nfunction d3_path_circle(radius) {\n  return \"m0,\" + radius\n      + \"a\" + radius + \",\" + radius + \" 0 1,1 0,\" + (-2 * radius)\n      + \"a\" + radius + \",\" + radius + \" 0 1,1 0,\" + (+2 * radius)\n      + \"z\";\n}\n/**\n * Given a GeoJSON object, returns the corresponding bounding box. The bounding\n * box is represented by a two-dimensional array: [[left, bottom], [right,\n * top]], where left is the minimum longitude, bottom is the minimum latitude,\n * right is maximum longitude, and top is the maximum latitude.\n */\nd3.geo.bounds = function(feature) {\n  var left = Infinity,\n      bottom = Infinity,\n      right = -Infinity,\n      top = -Infinity;\n  d3_geo_bounds(feature, function(x, y) {\n    if (x < left) left = x;\n    if (x > right) right = x;\n    if (y < bottom) bottom = y;\n    if (y > top) top = y;\n  });\n  return [[left, bottom], [right, top]];\n};\n\nfunction d3_geo_bounds(o, f) {\n  if (d3_geo_boundsTypes.hasOwnProperty(o.type)) d3_geo_boundsTypes[o.type](o, f);\n}\n\nvar d3_geo_boundsTypes = {\n  Feature: d3_geo_boundsFeature,\n  FeatureCollection: d3_geo_boundsFeatureCollection,\n  GeometryCollection: d3_geo_boundsGeometryCollection,\n  LineString: d3_geo_boundsLineString,\n  MultiLineString: d3_geo_boundsMultiLineString,\n  MultiPoint: d3_geo_boundsLineString,\n  MultiPolygon: d3_geo_boundsMultiPolygon,\n  Point: d3_geo_boundsPoint,\n  Polygon: d3_geo_boundsPolygon\n};\n\nfunction d3_geo_boundsFeature(o, f) {\n  d3_geo_bounds(o.geometry, f);\n}\n\nfunction d3_geo_boundsFeatureCollection(o, f) {\n  for (var a = o.features, i = 0, n = a.length; i < n; i++) {\n    d3_geo_bounds(a[i].geometry, f);\n  }\n}\n\nfunction d3_geo_boundsGeometryCollection(o, f) {\n  for (var a = o.geometries, i = 0, n = a.length; i < n; i++) {\n    d3_geo_bounds(a[i], f);\n  }\n}\n\nfunction d3_geo_boundsLineString(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    f.apply(null, a[i]);\n  }\n}\n\nfunction d3_geo_boundsMultiLineString(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    for (var b = a[i], j = 0, m = b.length; j < m; j++) {\n      f.apply(null, b[j]);\n    }\n  }\n}\n\nfunction d3_geo_boundsMultiPolygon(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    for (var b = a[i][0], j = 0, m = b.length; j < m; j++) {\n      f.apply(null, b[j]);\n    }\n  }\n}\n\nfunction d3_geo_boundsPoint(o, f) {\n  f.apply(null, o.coordinates);\n}\n\nfunction d3_geo_boundsPolygon(o, f) {\n  for (var a = o.coordinates[0], i = 0, n = a.length; i < n; i++) {\n    f.apply(null, a[i]);\n  }\n}\n// TODO breakAtDateLine?\n\nd3.geo.circle = function() {\n  var origin = [0, 0],\n      degrees = 90 - 1e-2,\n      radians = degrees * d3_geo_radians,\n      arc = d3.geo.greatArc().target(Object);\n\n  function circle() {\n    // TODO render a circle as a Polygon\n  }\n\n  function visible(point) {\n    return arc.distance(point) < radians;\n  }\n\n  circle.clip = function(d) {\n    arc.source(typeof origin === \"function\" ? origin.apply(this, arguments) : origin);\n    return clipType(d);\n  };\n\n  var clipType = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var features = o.features.map(clipType).filter(Object);\n      return features && (o = Object.create(o), o.features = features, o);\n    },\n\n    Feature: function(o) {\n      var geometry = clipType(o.geometry);\n      return geometry && (o = Object.create(o), o.geometry = geometry, o);\n    },\n\n    Point: function(o) {\n      return visible(o.coordinates) && o;\n    },\n\n    MultiPoint: function(o) {\n      var coordinates = o.coordinates.filter(visible);\n      return coordinates.length && {\n        type: o.type,\n        coordinates: coordinates\n      };\n    },\n\n    LineString: function(o) {\n      var coordinates = clip(o.coordinates);\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    MultiLineString: function(o) {\n      var coordinates = o.coordinates.map(clip).filter(function(d) { return d.length; });\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    Polygon: function(o) {\n      var coordinates = o.coordinates.map(clip);\n      return coordinates[0].length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    MultiPolygon: function(o) {\n      var coordinates = o.coordinates.map(function(d) { return d.map(clip); }).filter(function(d) { return d[0].length; });\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    GeometryCollection: function(o) {\n      var geometries = o.geometries.map(clipType).filter(Object);\n      return geometries.length && (o = Object.create(o), o.geometries = geometries, o);\n    }\n\n  });\n\n  function clip(coordinates) {\n    var i = -1,\n        n = coordinates.length,\n        clipped = [],\n        p0,\n        p1,\n        p2,\n        d0,\n        d1;\n\n    while (++i < n) {\n      d1 = arc.distance(p2 = coordinates[i]);\n      if (d1 < radians) {\n        if (p1) clipped.push(d3_geo_greatArcInterpolate(p1, p2)((d0 - radians) / (d0 - d1)));\n        clipped.push(p2);\n        p0 = p1 = null;\n      } else {\n        p1 = p2;\n        if (!p0 && clipped.length) {\n          clipped.push(d3_geo_greatArcInterpolate(clipped[clipped.length - 1], p1)((radians - d0) / (d1 - d0)));\n          p0 = p1;\n        }\n      }\n      d0 = d1;\n    }\n\n    if (p1 && clipped.length) {\n      d1 = arc.distance(p2 = clipped[0]);\n      clipped.push(d3_geo_greatArcInterpolate(p1, p2)((d0 - radians) / (d0 - d1)));\n    }\n\n    return resample(clipped);\n  }\n\n  // Resample coordinates, creating great arcs between each.\n  function resample(coordinates) {\n    var i = 0,\n        n = coordinates.length,\n        j,\n        m,\n        resampled = n ? [coordinates[0]] : coordinates,\n        resamples,\n        origin = arc.source();\n\n    while (++i < n) {\n      resamples = arc.source(coordinates[i - 1])(coordinates[i]).coordinates;\n      for (j = 0, m = resamples.length; ++j < m;) resampled.push(resamples[j]);\n    }\n\n    arc.source(origin);\n    return resampled;\n  }\n\n  circle.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    return circle;\n  };\n\n  circle.angle = function(x) {\n    if (!arguments.length) return degrees;\n    radians = (degrees = +x) * d3_geo_radians;\n    return circle;\n  };\n\n  // Precision is specified in degrees.\n  circle.precision = function(x) {\n    if (!arguments.length) return arc.precision();\n    arc.precision(x);\n    return circle;\n  };\n\n  return circle;\n}\nd3.geo.greatArc = function() {\n  var source = d3_geo_greatArcSource,\n      target = d3_geo_greatArcTarget,\n      precision = 6 * d3_geo_radians;\n\n  function greatArc() {\n    var a = typeof source === \"function\" ? source.apply(this, arguments) : source,\n        b = typeof target === \"function\" ? target.apply(this, arguments) : target,\n        i = d3_geo_greatArcInterpolate(a, b),\n        dt = precision / i.d,\n        t = 0,\n        coordinates = [a];\n    while ((t += dt) < 1) coordinates.push(i(t));\n    coordinates.push(b);\n    return {\n      type: \"LineString\",\n      coordinates: coordinates\n    };\n  }\n\n  // Length returned in radians; multiply by radius for distance.\n  greatArc.distance = function() {\n    var a = typeof source === \"function\" ? source.apply(this, arguments) : source,\n        b = typeof target === \"function\" ? target.apply(this, arguments) : target;\n     return d3_geo_greatArcInterpolate(a, b).d;\n  };\n\n  greatArc.source = function(x) {\n    if (!arguments.length) return source;\n    source = x;\n    return greatArc;\n  };\n\n  greatArc.target = function(x) {\n    if (!arguments.length) return target;\n    target = x;\n    return greatArc;\n  };\n\n  // Precision is specified in degrees.\n  greatArc.precision = function(x) {\n    if (!arguments.length) return precision / d3_geo_radians;\n    precision = x * d3_geo_radians;\n    return greatArc;\n  };\n\n  return greatArc;\n};\n\nfunction d3_geo_greatArcSource(d) {\n  return d.source;\n}\n\nfunction d3_geo_greatArcTarget(d) {\n  return d.target;\n}\n\nfunction d3_geo_greatArcInterpolate(a, b) {\n  var x0 = a[0] * d3_geo_radians, cx0 = Math.cos(x0), sx0 = Math.sin(x0),\n      y0 = a[1] * d3_geo_radians, cy0 = Math.cos(y0), sy0 = Math.sin(y0),\n      x1 = b[0] * d3_geo_radians, cx1 = Math.cos(x1), sx1 = Math.sin(x1),\n      y1 = b[1] * d3_geo_radians, cy1 = Math.cos(y1), sy1 = Math.sin(y1),\n      d = interpolate.d = Math.acos(Math.max(-1, Math.min(1, sy0 * sy1 + cy0 * cy1 * Math.cos(x1 - x0)))),\n      sd = Math.sin(d);\n\n  // From http://williams.best.vwh.net/avform.htm#Intermediate\n  function interpolate(t) {\n    var A = Math.sin(d - (t *= d)) / sd,\n        B = Math.sin(t) / sd,\n        x = A * cy0 * cx0 + B * cy1 * cx1,\n        y = A * cy0 * sx0 + B * cy1 * sx1,\n        z = A * sy0       + B * sy1;\n    return [\n      Math.atan2(y, x) / d3_geo_radians,\n      Math.atan2(z, Math.sqrt(x * x + y * y)) / d3_geo_radians\n    ];\n  }\n\n  return interpolate;\n}\nd3.geo.greatCircle = d3.geo.circle;\nd3.geom = {};\n/**\n * Computes a contour for a given input grid function using the <a\n * href=\"http://en.wikipedia.org/wiki/Marching_squares\">marching\n * squares</a> algorithm. Returns the contour polygon as an array of points.\n *\n * @param grid a two-input function(x, y) that returns true for values\n * inside the contour and false for values outside the contour.\n * @param start an optional starting point [x, y] on the grid.\n * @returns polygon [[x1, y1], [x2, y2], …]\n */\nd3.geom.contour = function(grid, start) {\n  var s = start || d3_geom_contourStart(grid), // starting point\n      c = [],    // contour polygon\n      x = s[0],  // current x position\n      y = s[1],  // current y position\n      dx = 0,    // next x direction\n      dy = 0,    // next y direction\n      pdx = NaN, // previous x direction\n      pdy = NaN, // previous y direction\n      i = 0;\n\n  do {\n    // determine marching squares index\n    i = 0;\n    if (grid(x-1, y-1)) i += 1;\n    if (grid(x,   y-1)) i += 2;\n    if (grid(x-1, y  )) i += 4;\n    if (grid(x,   y  )) i += 8;\n\n    // determine next direction\n    if (i === 6) {\n      dx = pdy === -1 ? -1 : 1;\n      dy = 0;\n    } else if (i === 9) {\n      dx = 0;\n      dy = pdx === 1 ? -1 : 1;\n    } else {\n      dx = d3_geom_contourDx[i];\n      dy = d3_geom_contourDy[i];\n    }\n\n    // update contour polygon\n    if (dx != pdx && dy != pdy) {\n      c.push([x, y]);\n      pdx = dx;\n      pdy = dy;\n    }\n\n    x += dx;\n    y += dy;\n  } while (s[0] != x || s[1] != y);\n\n  return c;\n};\n\n// lookup tables for marching directions\nvar d3_geom_contourDx = [1, 0, 1, 1,-1, 0,-1, 1,0, 0,0,0,-1, 0,-1,NaN],\n    d3_geom_contourDy = [0,-1, 0, 0, 0,-1, 0, 0,1,-1,1,1, 0,-1, 0,NaN];\n\nfunction d3_geom_contourStart(grid) {\n  var x = 0,\n      y = 0;\n\n  // search for a starting point; begin at origin\n  // and proceed along outward-expanding diagonals\n  while (true) {\n    if (grid(x,y)) {\n      return [x,y];\n    }\n    if (x === 0) {\n      x = y + 1;\n      y = 0;\n    } else {\n      x = x - 1;\n      y = y + 1;\n    }\n  }\n}\n/**\n * Computes the 2D convex hull of a set of points using Graham's scanning\n * algorithm. The algorithm has been implemented as described in Cormen,\n * Leiserson, and Rivest's Introduction to Algorithms. The running time of\n * this algorithm is O(n log n), where n is the number of input points.\n *\n * @param vertices [[x1, y1], [x2, y2], …]\n * @returns polygon [[x1, y1], [x2, y2], …]\n */\nd3.geom.hull = function(vertices) {\n  if (vertices.length < 3) return [];\n\n  var len = vertices.length,\n      plen = len - 1,\n      points = [],\n      stack = [],\n      i, j, h = 0, x1, y1, x2, y2, u, v, a, sp;\n\n  // find the starting ref point: leftmost point with the minimum y coord\n  for (i=1; i<len; ++i) {\n    if (vertices[i][1] < vertices[h][1]) {\n      h = i;\n    } else if (vertices[i][1] == vertices[h][1]) {\n      h = (vertices[i][0] < vertices[h][0] ? i : h);\n    }\n  }\n\n  // calculate polar angles from ref point and sort\n  for (i=0; i<len; ++i) {\n    if (i === h) continue;\n    y1 = vertices[i][1] - vertices[h][1];\n    x1 = vertices[i][0] - vertices[h][0];\n    points.push({angle: Math.atan2(y1, x1), index: i});\n  }\n  points.sort(function(a, b) { return a.angle - b.angle; });\n\n  // toss out duplicate angles\n  a = points[0].angle;\n  v = points[0].index;\n  u = 0;\n  for (i=1; i<plen; ++i) {\n    j = points[i].index;\n    if (a == points[i].angle) {\n      // keep angle for point most distant from the reference\n      x1 = vertices[v][0] - vertices[h][0];\n      y1 = vertices[v][1] - vertices[h][1];\n      x2 = vertices[j][0] - vertices[h][0];\n      y2 = vertices[j][1] - vertices[h][1];\n      if ((x1*x1 + y1*y1) >= (x2*x2 + y2*y2)) {\n        points[i].index = -1;\n      } else {\n        points[u].index = -1;\n        a = points[i].angle;\n        u = i;\n        v = j;\n      }\n    } else {\n      a = points[i].angle;\n      u = i;\n      v = j;\n    }\n  }\n\n  // initialize the stack\n  stack.push(h);\n  for (i=0, j=0; i<2; ++j) {\n    if (points[j].index !== -1) {\n      stack.push(points[j].index);\n      i++;\n    }\n  }\n  sp = stack.length;\n\n  // do graham's scan\n  for (; j<plen; ++j) {\n    if (points[j].index === -1) continue; // skip tossed out points\n    while (!d3_geom_hullCCW(stack[sp-2], stack[sp-1], points[j].index, vertices)) {\n      --sp;\n    }\n    stack[sp++] = points[j].index;\n  }\n\n  // construct the hull\n  var poly = [];\n  for (i=0; i<sp; ++i) {\n    poly.push(vertices[stack[i]]);\n  }\n  return poly;\n}\n\n// are three points in counter-clockwise order?\nfunction d3_geom_hullCCW(i1, i2, i3, v) {\n  var t, a, b, c, d, e, f;\n  t = v[i1]; a = t[0]; b = t[1];\n  t = v[i2]; c = t[0]; d = t[1];\n  t = v[i3]; e = t[0]; f = t[1];\n  return ((f-b)*(c-a) - (d-b)*(e-a)) > 0;\n}\n// Note: requires coordinates to be counterclockwise and convex!\nd3.geom.polygon = function(coordinates) {\n\n  coordinates.area = function() {\n    var i = 0,\n        n = coordinates.length,\n        a = coordinates[n - 1][0] * coordinates[0][1],\n        b = coordinates[n - 1][1] * coordinates[0][0];\n    while (++i < n) {\n      a += coordinates[i - 1][0] * coordinates[i][1];\n      b += coordinates[i - 1][1] * coordinates[i][0];\n    }\n    return (b - a) * .5;\n  };\n\n  coordinates.centroid = function(k) {\n    var i = -1,\n        n = coordinates.length,\n        x = 0,\n        y = 0,\n        a,\n        b = coordinates[n - 1],\n        c;\n    if (!arguments.length) k = -1 / (6 * coordinates.area());\n    while (++i < n) {\n      a = b;\n      b = coordinates[i];\n      c = a[0] * b[1] - b[0] * a[1];\n      x += (a[0] + b[0]) * c;\n      y += (a[1] + b[1]) * c;\n    }\n    return [x * k, y * k];\n  };\n\n  // The Sutherland-Hodgman clipping algorithm.\n  coordinates.clip = function(subject) {\n    var input,\n        i = -1,\n        n = coordinates.length,\n        j,\n        m,\n        a = coordinates[n - 1],\n        b,\n        c,\n        d;\n    while (++i < n) {\n      input = subject.slice();\n      subject.length = 0;\n      b = coordinates[i];\n      c = input[(m = input.length) - 1];\n      j = -1;\n      while (++j < m) {\n        d = input[j];\n        if (d3_geom_polygonInside(d, a, b)) {\n          if (!d3_geom_polygonInside(c, a, b)) {\n            subject.push(d3_geom_polygonIntersect(c, d, a, b));\n          }\n          subject.push(d);\n        } else if (d3_geom_polygonInside(c, a, b)) {\n          subject.push(d3_geom_polygonIntersect(c, d, a, b));\n        }\n        c = d;\n      }\n      a = b;\n    }\n    return subject;\n  };\n\n  return coordinates;\n};\n\nfunction d3_geom_polygonInside(p, a, b) {\n  return (b[0] - a[0]) * (p[1] - a[1]) < (b[1] - a[1]) * (p[0] - a[0]);\n}\n\n// Intersect two infinite lines cd and ab.\nfunction d3_geom_polygonIntersect(c, d, a, b) {\n  var x1 = c[0], x2 = d[0], x3 = a[0], x4 = b[0],\n      y1 = c[1], y2 = d[1], y3 = a[1], y4 = b[1],\n      x13 = x1 - x3,\n      x21 = x2 - x1,\n      x43 = x4 - x3,\n      y13 = y1 - y3,\n      y21 = y2 - y1,\n      y43 = y4 - y3,\n      ua = (x43 * y13 - y43 * x13) / (y43 * x21 - x43 * y21);\n  return [x1 + ua * x21, y1 + ua * y21];\n}\n// Adapted from Nicolas Garcia Belmonte's JIT implementation:\n// http://blog.thejit.org/2010/02/12/voronoi-tessellation/\n// http://blog.thejit.org/assets/voronoijs/voronoi.js\n// See lib/jit/LICENSE for details.\n\n// Notes:\n//\n// This implementation does not clip the returned polygons, so if you want to\n// clip them to a particular shape you will need to do that either in SVG or by\n// post-processing with d3.geom.polygon's clip method.\n//\n// If any vertices are coincident or have NaN positions, the behavior of this\n// method is undefined. Most likely invalid polygons will be returned. You\n// should filter invalid points, and consolidate coincident points, before\n// computing the tessellation.\n\n/**\n * @param vertices [[x1, y1], [x2, y2], …]\n * @returns polygons [[[x1, y1], [x2, y2], …], …]\n */\nd3.geom.voronoi = function(vertices) {\n  var polygons = vertices.map(function() { return []; });\n\n  d3_voronoi_tessellate(vertices, function(e) {\n    var s1,\n        s2,\n        x1,\n        x2,\n        y1,\n        y2;\n    if (e.a === 1 && e.b >= 0) {\n      s1 = e.ep.r;\n      s2 = e.ep.l;\n    } else {\n      s1 = e.ep.l;\n      s2 = e.ep.r;\n    }\n    if (e.a === 1) {\n      y1 = s1 ? s1.y : -1e6;\n      x1 = e.c - e.b * y1;\n      y2 = s2 ? s2.y : 1e6;\n      x2 = e.c - e.b * y2;\n    } else {\n      x1 = s1 ? s1.x : -1e6;\n      y1 = e.c - e.a * x1;\n      x2 = s2 ? s2.x : 1e6;\n      y2 = e.c - e.a * x2;\n    }\n    var v1 = [x1, y1],\n        v2 = [x2, y2];\n    polygons[e.region.l.index].push(v1, v2);\n    polygons[e.region.r.index].push(v1, v2);\n  });\n\n  // Reconnect the polygon segments into counterclockwise loops.\n  return polygons.map(function(polygon, i) {\n    var cx = vertices[i][0],\n        cy = vertices[i][1];\n    polygon.forEach(function(v) {\n      v.angle = Math.atan2(v[0] - cx, v[1] - cy);\n    });\n    return polygon.sort(function(a, b) {\n      return a.angle - b.angle;\n    }).filter(function(d, i) {\n      return !i || (d.angle - polygon[i - 1].angle > 1e-10);\n    });\n  });\n};\n\nvar d3_voronoi_opposite = {\"l\": \"r\", \"r\": \"l\"};\n\nfunction d3_voronoi_tessellate(vertices, callback) {\n\n  var Sites = {\n    list: vertices\n      .map(function(v, i) {\n        return {\n          index: i,\n          x: v[0],\n          y: v[1]\n        };\n      })\n      .sort(function(a, b) {\n        return a.y < b.y ? -1\n          : a.y > b.y ? 1\n          : a.x < b.x ? -1\n          : a.x > b.x ? 1\n          : 0;\n      }),\n    bottomSite: null\n  };\n\n  var EdgeList = {\n    list: [],\n    leftEnd: null,\n    rightEnd: null,\n\n    init: function() {\n      EdgeList.leftEnd = EdgeList.createHalfEdge(null, \"l\");\n      EdgeList.rightEnd = EdgeList.createHalfEdge(null, \"l\");\n      EdgeList.leftEnd.r = EdgeList.rightEnd;\n      EdgeList.rightEnd.l = EdgeList.leftEnd;\n      EdgeList.list.unshift(EdgeList.leftEnd, EdgeList.rightEnd);\n    },\n\n    createHalfEdge: function(edge, side) {\n      return {\n        edge: edge,\n        side: side,\n        vertex: null,\n        \"l\": null,\n        \"r\": null\n      };\n    },\n\n    insert: function(lb, he) {\n      he.l = lb;\n      he.r = lb.r;\n      lb.r.l = he;\n      lb.r = he;\n    },\n\n    leftBound: function(p) {\n      var he = EdgeList.leftEnd;\n      do {\n        he = he.r;\n      } while (he != EdgeList.rightEnd && Geom.rightOf(he, p));\n      he = he.l;\n      return he;\n    },\n\n    del: function(he) {\n      he.l.r = he.r;\n      he.r.l = he.l;\n      he.edge = null;\n    },\n\n    right: function(he) {\n      return he.r;\n    },\n\n    left: function(he) {\n      return he.l;\n    },\n\n    leftRegion: function(he) {\n      return he.edge == null\n          ? Sites.bottomSite\n          : he.edge.region[he.side];\n    },\n\n    rightRegion: function(he) {\n      return he.edge == null\n          ? Sites.bottomSite\n          : he.edge.region[d3_voronoi_opposite[he.side]];\n    }\n  };\n\n  var Geom = {\n\n    bisect: function(s1, s2) {\n      var newEdge = {\n        region: {\"l\": s1, \"r\": s2},\n        ep: {\"l\": null, \"r\": null}\n      };\n\n      var dx = s2.x - s1.x,\n          dy = s2.y - s1.y,\n          adx = dx > 0 ? dx : -dx,\n          ady = dy > 0 ? dy : -dy;\n\n      newEdge.c = s1.x * dx + s1.y * dy\n          + (dx * dx + dy * dy) * .5;\n\n      if (adx > ady) {\n        newEdge.a = 1;\n        newEdge.b = dy / dx;\n        newEdge.c /= dx;\n      } else {\n        newEdge.b = 1;\n        newEdge.a = dx / dy;\n        newEdge.c /= dy;\n      }\n\n      return newEdge;\n    },\n\n    intersect: function(el1, el2) {\n      var e1 = el1.edge,\n          e2 = el2.edge;\n      if (!e1 || !e2 || (e1.region.r == e2.region.r)) {\n        return null;\n      }\n      var d = (e1.a * e2.b) - (e1.b * e2.a);\n      if (Math.abs(d) < 1e-10) {\n        return null;\n      }\n      var xint = (e1.c * e2.b - e2.c * e1.b) / d,\n          yint = (e2.c * e1.a - e1.c * e2.a) / d,\n          e1r = e1.region.r,\n          e2r = e2.region.r,\n          el,\n          e;\n      if ((e1r.y < e2r.y) ||\n         (e1r.y == e2r.y && e1r.x < e2r.x)) {\n        el = el1;\n        e = e1;\n      } else {\n        el = el2;\n        e = e2;\n      }\n      var rightOfSite = (xint >= e.region.r.x);\n      if ((rightOfSite && (el.side === \"l\")) ||\n        (!rightOfSite && (el.side === \"r\"))) {\n        return null;\n      }\n      return {\n        x: xint,\n        y: yint\n      };\n    },\n\n    rightOf: function(he, p) {\n      var e = he.edge,\n          topsite = e.region.r,\n          rightOfSite = (p.x > topsite.x);\n\n      if (rightOfSite && (he.side === \"l\")) {\n        return 1;\n      }\n      if (!rightOfSite && (he.side === \"r\")) {\n        return 0;\n      }\n      if (e.a === 1) {\n        var dyp = p.y - topsite.y,\n            dxp = p.x - topsite.x,\n            fast = 0,\n            above = 0;\n\n        if ((!rightOfSite && (e.b < 0)) ||\n          (rightOfSite && (e.b >= 0))) {\n          above = fast = (dyp >= e.b * dxp);\n        } else {\n          above = ((p.x + p.y * e.b) > e.c);\n          if (e.b < 0) {\n            above = !above;\n          }\n          if (!above) {\n            fast = 1;\n          }\n        }\n        if (!fast) {\n          var dxs = topsite.x - e.region.l.x;\n          above = (e.b * (dxp * dxp - dyp * dyp)) <\n            (dxs * dyp * (1 + 2 * dxp / dxs + e.b * e.b));\n\n          if (e.b < 0) {\n            above = !above;\n          }\n        }\n      } else /* e.b == 1 */ {\n        var yl = e.c - e.a * p.x,\n            t1 = p.y - yl,\n            t2 = p.x - topsite.x,\n            t3 = yl - topsite.y;\n\n        above = (t1 * t1) > (t2 * t2 + t3 * t3);\n      }\n      return he.side === \"l\" ? above : !above;\n    },\n\n    endPoint: function(edge, side, site) {\n      edge.ep[side] = site;\n      if (!edge.ep[d3_voronoi_opposite[side]]) return;\n      callback(edge);\n    },\n\n    distance: function(s, t) {\n      var dx = s.x - t.x,\n          dy = s.y - t.y;\n      return Math.sqrt(dx * dx + dy * dy);\n    }\n  };\n\n  var EventQueue = {\n    list: [],\n\n    insert: function(he, site, offset) {\n      he.vertex = site;\n      he.ystar = site.y + offset;\n      for (var i=0, list=EventQueue.list, l=list.length; i<l; i++) {\n        var next = list[i];\n        if (he.ystar > next.ystar ||\n          (he.ystar == next.ystar &&\n          site.x > next.vertex.x)) {\n          continue;\n        } else {\n          break;\n        }\n      }\n      list.splice(i, 0, he);\n    },\n\n    del: function(he) {\n      for (var i=0, ls=EventQueue.list, l=ls.length; i<l && (ls[i] != he); ++i) {}\n      ls.splice(i, 1);\n    },\n\n    empty: function() { return EventQueue.list.length === 0; },\n\n    nextEvent: function(he) {\n      for (var i=0, ls=EventQueue.list, l=ls.length; i<l; ++i) {\n        if (ls[i] == he) return ls[i+1];\n      }\n      return null;\n    },\n\n    min: function() {\n      var elem = EventQueue.list[0];\n      return {\n        x: elem.vertex.x,\n        y: elem.ystar\n      };\n    },\n\n    extractMin: function() {\n      return EventQueue.list.shift();\n    }\n  };\n\n  EdgeList.init();\n  Sites.bottomSite = Sites.list.shift();\n\n  var newSite = Sites.list.shift(), newIntStar;\n  var lbnd, rbnd, llbnd, rrbnd, bisector;\n  var bot, top, temp, p, v;\n  var e, pm;\n\n  while (true) {\n    if (!EventQueue.empty()) {\n      newIntStar = EventQueue.min();\n    }\n    if (newSite && (EventQueue.empty()\n      || newSite.y < newIntStar.y\n      || (newSite.y == newIntStar.y\n      && newSite.x < newIntStar.x))) { //new site is smallest\n      lbnd = EdgeList.leftBound(newSite);\n      rbnd = EdgeList.right(lbnd);\n      bot = EdgeList.rightRegion(lbnd);\n      e = Geom.bisect(bot, newSite);\n      bisector = EdgeList.createHalfEdge(e, \"l\");\n      EdgeList.insert(lbnd, bisector);\n      p = Geom.intersect(lbnd, bisector);\n      if (p) {\n        EventQueue.del(lbnd);\n        EventQueue.insert(lbnd, p, Geom.distance(p, newSite));\n      }\n      lbnd = bisector;\n      bisector = EdgeList.createHalfEdge(e, \"r\");\n      EdgeList.insert(lbnd, bisector);\n      p = Geom.intersect(bisector, rbnd);\n      if (p) {\n        EventQueue.insert(bisector, p, Geom.distance(p, newSite));\n      }\n      newSite = Sites.list.shift();\n    } else if (!EventQueue.empty()) { //intersection is smallest\n      lbnd = EventQueue.extractMin();\n      llbnd = EdgeList.left(lbnd);\n      rbnd = EdgeList.right(lbnd);\n      rrbnd = EdgeList.right(rbnd);\n      bot = EdgeList.leftRegion(lbnd);\n      top = EdgeList.rightRegion(rbnd);\n      v = lbnd.vertex;\n      Geom.endPoint(lbnd.edge, lbnd.side, v);\n      Geom.endPoint(rbnd.edge, rbnd.side, v);\n      EdgeList.del(lbnd);\n      EventQueue.del(rbnd);\n      EdgeList.del(rbnd);\n      pm = \"l\";\n      if (bot.y > top.y) {\n        temp = bot;\n        bot = top;\n        top = temp;\n        pm = \"r\";\n      }\n      e = Geom.bisect(bot, top);\n      bisector = EdgeList.createHalfEdge(e, pm);\n      EdgeList.insert(llbnd, bisector);\n      Geom.endPoint(e, d3_voronoi_opposite[pm], v);\n      p = Geom.intersect(llbnd, bisector);\n      if (p) {\n        EventQueue.del(llbnd);\n        EventQueue.insert(llbnd, p, Geom.distance(p, bot));\n      }\n      p = Geom.intersect(bisector, rrbnd);\n      if (p) {\n        EventQueue.insert(bisector, p, Geom.distance(p, bot));\n      }\n    } else {\n      break;\n    }\n  }//end while\n\n  for (lbnd = EdgeList.right(EdgeList.leftEnd);\n      lbnd != EdgeList.rightEnd;\n      lbnd = EdgeList.right(lbnd)) {\n    callback(lbnd.edge);\n  }\n}\n/**\n* @param vertices [[x1, y1], [x2, y2], …]\n* @returns triangles [[[x1, y1], [x2, y2], [x3, y3]], …]\n */\nd3.geom.delaunay = function(vertices) {\n  var edges = vertices.map(function() { return []; }),\n      triangles = [];\n\n  // Use the Voronoi tessellation to determine Delaunay edges.\n  d3_voronoi_tessellate(vertices, function(e) {\n    edges[e.region.l.index].push(vertices[e.region.r.index]);\n  });\n\n  // Reconnect the edges into counterclockwise triangles.\n  edges.forEach(function(edge, i) {\n    var v = vertices[i],\n        cx = v[0],\n        cy = v[1];\n    edge.forEach(function(v) {\n      v.angle = Math.atan2(v[0] - cx, v[1] - cy);\n    });\n    edge.sort(function(a, b) {\n      return a.angle - b.angle;\n    });\n    for (var j = 0, m = edge.length - 1; j < m; j++) {\n      triangles.push([v, edge[j], edge[j + 1]]);\n    }\n  });\n\n  return triangles;\n};\n// Constructs a new quadtree for the specified array of points. A quadtree is a\n// two-dimensional recursive spatial subdivision. This implementation uses\n// square partitions, dividing each square into four equally-sized squares. Each\n// point exists in a unique node; if multiple points are in the same position,\n// some points may be stored on internal nodes rather than leaf nodes. Quadtrees\n// can be used to accelerate various spatial operations, such as the Barnes-Hut\n// approximation for computing n-body forces, or collision detection.\nd3.geom.quadtree = function(points, x1, y1, x2, y2) {\n  var p,\n      i = -1,\n      n = points.length;\n\n  // Type conversion for deprecated API.\n  if (n && isNaN(points[0].x)) points = points.map(d3_geom_quadtreePoint);\n\n  // Allow bounds to be specified explicitly.\n  if (arguments.length < 5) {\n    if (arguments.length === 3) {\n      y2 = x2 = y1;\n      y1 = x1;\n    } else {\n      x1 = y1 = Infinity;\n      x2 = y2 = -Infinity;\n\n      // Compute bounds.\n      while (++i < n) {\n        p = points[i];\n        if (p.x < x1) x1 = p.x;\n        if (p.y < y1) y1 = p.y;\n        if (p.x > x2) x2 = p.x;\n        if (p.y > y2) y2 = p.y;\n      }\n\n      // Squarify the bounds.\n      var dx = x2 - x1,\n          dy = y2 - y1;\n      if (dx > dy) y2 = y1 + dx;\n      else x2 = x1 + dy;\n    }\n  }\n\n  // Recursively inserts the specified point p at the node n or one of its\n  // descendants. The bounds are defined by [x1, x2] and [y1, y2].\n  function insert(n, p, x1, y1, x2, y2) {\n    if (isNaN(p.x) || isNaN(p.y)) return; // ignore invalid points\n    if (n.leaf) {\n      var v = n.point;\n      if (v) {\n        // If the point at this leaf node is at the same position as the new\n        // point we are adding, we leave the point associated with the\n        // internal node while adding the new point to a child node. This\n        // avoids infinite recursion.\n        if ((Math.abs(v.x - p.x) + Math.abs(v.y - p.y)) < .01) {\n          insertChild(n, p, x1, y1, x2, y2);\n        } else {\n          n.point = null;\n          insertChild(n, v, x1, y1, x2, y2);\n          insertChild(n, p, x1, y1, x2, y2);\n        }\n      } else {\n        n.point = p;\n      }\n    } else {\n      insertChild(n, p, x1, y1, x2, y2);\n    }\n  }\n\n  // Recursively inserts the specified point p into a descendant of node n. The\n  // bounds are defined by [x1, x2] and [y1, y2].\n  function insertChild(n, p, x1, y1, x2, y2) {\n    // Compute the split point, and the quadrant in which to insert p.\n    var sx = (x1 + x2) * .5,\n        sy = (y1 + y2) * .5,\n        right = p.x >= sx,\n        bottom = p.y >= sy,\n        i = (bottom << 1) + right;\n\n    // Recursively insert into the child node.\n    n.leaf = false;\n    n = n.nodes[i] || (n.nodes[i] = d3_geom_quadtreeNode());\n\n    // Update the bounds as we recurse.\n    if (right) x1 = sx; else x2 = sx;\n    if (bottom) y1 = sy; else y2 = sy;\n    insert(n, p, x1, y1, x2, y2);\n  }\n\n  // Create the root node.\n  var root = d3_geom_quadtreeNode();\n\n  root.add = function(p) {\n    insert(root, p, x1, y1, x2, y2);\n  };\n\n  root.visit = function(f) {\n    d3_geom_quadtreeVisit(f, root, x1, y1, x2, y2);\n  };\n\n  // Insert all points.\n  points.forEach(root.add);\n  return root;\n};\n\nfunction d3_geom_quadtreeNode() {\n  return {\n    leaf: true,\n    nodes: [],\n    point: null\n  };\n}\n\nfunction d3_geom_quadtreeVisit(f, node, x1, y1, x2, y2) {\n  if (!f(node, x1, y1, x2, y2)) {\n    var sx = (x1 + x2) * .5,\n        sy = (y1 + y2) * .5,\n        children = node.nodes;\n    if (children[0]) d3_geom_quadtreeVisit(f, children[0], x1, y1, sx, sy);\n    if (children[1]) d3_geom_quadtreeVisit(f, children[1], sx, y1, x2, sy);\n    if (children[2]) d3_geom_quadtreeVisit(f, children[2], x1, sy, sx, y2);\n    if (children[3]) d3_geom_quadtreeVisit(f, children[3], sx, sy, x2, y2);\n  }\n}\n\nfunction d3_geom_quadtreePoint(p) {\n  return {\n    x: p[0],\n    y: p[1]\n  };\n}\nd3.time = {};\n\nvar d3_time = Date;\n\nfunction d3_time_utc() {\n  this._ = new Date(arguments.length > 1\n      ? Date.UTC.apply(this, arguments)\n      : arguments[0]);\n}\n\nd3_time_utc.prototype = {\n  getDate: function() { return this._.getUTCDate(); },\n  getDay: function() { return this._.getUTCDay(); },\n  getFullYear: function() { return this._.getUTCFullYear(); },\n  getHours: function() { return this._.getUTCHours(); },\n  getMilliseconds: function() { return this._.getUTCMilliseconds(); },\n  getMinutes: function() { return this._.getUTCMinutes(); },\n  getMonth: function() { return this._.getUTCMonth(); },\n  getSeconds: function() { return this._.getUTCSeconds(); },\n  getTime: function() { return this._.getTime(); },\n  getTimezoneOffset: function() { return 0; },\n  valueOf: function() { return this._.valueOf(); },\n  setDate: function() { d3_time_prototype.setUTCDate.apply(this._, arguments); },\n  setDay: function() { d3_time_prototype.setUTCDay.apply(this._, arguments); },\n  setFullYear: function() { d3_time_prototype.setUTCFullYear.apply(this._, arguments); },\n  setHours: function() { d3_time_prototype.setUTCHours.apply(this._, arguments); },\n  setMilliseconds: function() { d3_time_prototype.setUTCMilliseconds.apply(this._, arguments); },\n  setMinutes: function() { d3_time_prototype.setUTCMinutes.apply(this._, arguments); },\n  setMonth: function() { d3_time_prototype.setUTCMonth.apply(this._, arguments); },\n  setSeconds: function() { d3_time_prototype.setUTCSeconds.apply(this._, arguments); },\n  setTime: function() { d3_time_prototype.setTime.apply(this._, arguments); }\n};\n\nvar d3_time_prototype = Date.prototype;\nd3.time.format = function(template) {\n  var n = template.length;\n\n  function format(date) {\n    var string = [],\n        i = -1,\n        j = 0,\n        c,\n        f;\n    while (++i < n) {\n      if (template.charCodeAt(i) == 37) {\n        string.push(\n            template.substring(j, i),\n            (f = d3_time_formats[c = template.charAt(++i)])\n            ? f(date) : c);\n        j = i + 1;\n      }\n    }\n    string.push(template.substring(j, i));\n    return string.join(\"\");\n  }\n\n  format.parse = function(string) {\n    var d = {y: 1900, m: 0, d: 1, H: 0, M: 0, S: 0, L: 0},\n        i = d3_time_parse(d, template, string, 0);\n    if (i != string.length) return null;\n\n    // The am-pm flag is 0 for AM, and 1 for PM.\n    if (\"p\" in d) d.H = d.H % 12 + d.p * 12;\n\n    var date = new d3_time();\n    date.setFullYear(d.y, d.m, d.d);\n    date.setHours(d.H, d.M, d.S, d.L);\n    return date;\n  };\n\n  format.toString = function() {\n    return template;\n  };\n\n  return format;\n};\n\nfunction d3_time_parse(date, template, string, j) {\n  var c,\n      p,\n      i = 0,\n      n = template.length,\n      m = string.length;\n  while (i < n) {\n    if (j >= m) return -1;\n    c = template.charCodeAt(i++);\n    if (c == 37) {\n      p = d3_time_parsers[template.charAt(i++)];\n      if (!p || ((j = p(date, string, j)) < 0)) return -1;\n    } else if (c != string.charCodeAt(j++)) {\n      return -1;\n    }\n  }\n  return j;\n}\n\nvar d3_time_zfill2 = d3.format(\"02d\"),\n    d3_time_zfill3 = d3.format(\"03d\"),\n    d3_time_zfill4 = d3.format(\"04d\"),\n    d3_time_sfill2 = d3.format(\"2d\");\n\nvar d3_time_formats = {\n  a: function(d) { return d3_time_weekdays[d.getDay()].substring(0, 3); },\n  A: function(d) { return d3_time_weekdays[d.getDay()]; },\n  b: function(d) { return d3_time_months[d.getMonth()].substring(0, 3); },\n  B: function(d) { return d3_time_months[d.getMonth()]; },\n  c: d3.time.format(\"%a %b %e %H:%M:%S %Y\"),\n  d: function(d) { return d3_time_zfill2(d.getDate()); },\n  e: function(d) { return d3_time_sfill2(d.getDate()); },\n  H: function(d) { return d3_time_zfill2(d.getHours()); },\n  I: function(d) { return d3_time_zfill2(d.getHours() % 12 || 12); },\n  j: function(d) { return d3_time_zfill3(1 + d3.time.dayOfYear(d)); },\n  L: function(d) { return d3_time_zfill3(d.getMilliseconds()); },\n  m: function(d) { return d3_time_zfill2(d.getMonth() + 1); },\n  M: function(d) { return d3_time_zfill2(d.getMinutes()); },\n  p: function(d) { return d.getHours() >= 12 ? \"PM\" : \"AM\"; },\n  S: function(d) { return d3_time_zfill2(d.getSeconds()); },\n  U: function(d) { return d3_time_zfill2(d3.time.sundayOfYear(d)); },\n  w: function(d) { return d.getDay(); },\n  W: function(d) { return d3_time_zfill2(d3.time.mondayOfYear(d)); },\n  x: d3.time.format(\"%m/%d/%y\"),\n  X: d3.time.format(\"%H:%M:%S\"),\n  y: function(d) { return d3_time_zfill2(d.getFullYear() % 100); },\n  Y: function(d) { return d3_time_zfill4(d.getFullYear() % 10000); },\n  Z: d3_time_zone,\n  \"%\": function(d) { return \"%\"; }\n};\n\nvar d3_time_parsers = {\n  a: d3_time_parseWeekdayAbbrev,\n  A: d3_time_parseWeekday,\n  b: d3_time_parseMonthAbbrev,\n  B: d3_time_parseMonth,\n  c: d3_time_parseLocaleFull,\n  d: d3_time_parseDay,\n  e: d3_time_parseDay,\n  H: d3_time_parseHour24,\n  I: d3_time_parseHour24,\n  // j: function(d, s, i) { /*TODO day of year [001,366] */ return i; },\n  L: d3_time_parseMilliseconds,\n  m: d3_time_parseMonthNumber,\n  M: d3_time_parseMinutes,\n  p: d3_time_parseAmPm,\n  S: d3_time_parseSeconds,\n  // U: function(d, s, i) { /*TODO week number (sunday) [00,53] */ return i; },\n  // w: function(d, s, i) { /*TODO weekday [0,6] */ return i; },\n  // W: function(d, s, i) { /*TODO week number (monday) [00,53] */ return i; },\n  x: d3_time_parseLocaleDate,\n  X: d3_time_parseLocaleTime,\n  y: d3_time_parseYear,\n  Y: d3_time_parseFullYear\n  // ,\n  // Z: function(d, s, i) { /*TODO time zone */ return i; },\n  // \"%\": function(d, s, i) { /*TODO literal % */ return i; }\n};\n\n// Note: weekday is validated, but does not set the date.\nfunction d3_time_parseWeekdayAbbrev(date, string, i) {\n  return d3_time_weekdayAbbrevRe.test(string.substring(i, i += 3)) ? i : -1;\n}\n\n// Note: weekday is validated, but does not set the date.\nfunction d3_time_parseWeekday(date, string, i) {\n  d3_time_weekdayRe.lastIndex = 0;\n  var n = d3_time_weekdayRe.exec(string.substring(i, i + 10));\n  return n ? i += n[0].length : -1;\n}\n\nvar d3_time_weekdayAbbrevRe = /^(?:sun|mon|tue|wed|thu|fri|sat)/i,\n    d3_time_weekdayRe = /^(?:Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday)/i;\n    d3_time_weekdays = [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"];\n\nfunction d3_time_parseMonthAbbrev(date, string, i) {\n  var n = d3_time_monthAbbrevLookup.get(string.substring(i, i += 3).toLowerCase());\n  return n == null ? -1 : (date.m = n, i);\n}\n\nvar d3_time_monthAbbrevLookup = d3.map({\n  jan: 0,\n  feb: 1,\n  mar: 2,\n  apr: 3,\n  may: 4,\n  jun: 5,\n  jul: 6,\n  aug: 7,\n  sep: 8,\n  oct: 9,\n  nov: 10,\n  dec: 11\n});\n\nfunction d3_time_parseMonth(date, string, i) {\n  d3_time_monthRe.lastIndex = 0;\n  var n = d3_time_monthRe.exec(string.substring(i, i + 12));\n  return n ? (date.m = d3_time_monthLookup.get(n[0].toLowerCase()), i += n[0].length) : -1;\n}\n\nvar d3_time_monthRe = /^(?:January|February|March|April|May|June|July|August|September|October|November|December)/ig;\n\nvar d3_time_monthLookup = d3.map({\n  january: 0,\n  february: 1,\n  march: 2,\n  april: 3,\n  may: 4,\n  june: 5,\n  july: 6,\n  august: 7,\n  september: 8,\n  october: 9,\n  november: 10,\n  december: 11\n});\n\nvar d3_time_months = [\n  \"January\",\n  \"February\",\n  \"March\",\n  \"April\",\n  \"May\",\n  \"June\",\n  \"July\",\n  \"August\",\n  \"September\",\n  \"October\",\n  \"November\",\n  \"December\"\n];\n\nfunction d3_time_parseLocaleFull(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.c.toString(), string, i);\n}\n\nfunction d3_time_parseLocaleDate(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.x.toString(), string, i);\n}\n\nfunction d3_time_parseLocaleTime(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.X.toString(), string, i);\n}\n\nfunction d3_time_parseFullYear(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 4));\n  return n ? (date.y = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseYear(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.y = d3_time_century() + +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_century() {\n  return ~~(new Date().getFullYear() / 1000) * 1000;\n}\n\nfunction d3_time_parseMonthNumber(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.m = n[0] - 1, i += n[0].length) : -1;\n}\n\nfunction d3_time_parseDay(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.d = +n[0], i += n[0].length) : -1;\n}\n\n// Note: we don't validate that the hour is in the range [0,23] or [1,12].\nfunction d3_time_parseHour24(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.H = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseMinutes(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.M = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseSeconds(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.S = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseMilliseconds(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 3));\n  return n ? (date.L = +n[0], i += n[0].length) : -1;\n}\n\n// Note: we don't look at the next directive.\nvar d3_time_numberRe = /\\s*\\d+/;\n\nfunction d3_time_parseAmPm(date, string, i) {\n  var n = d3_time_amPmLookup.get(string.substring(i, i += 2).toLowerCase());\n  return n == null ? -1 : (date.p = n, i);\n}\n\nvar d3_time_amPmLookup = d3.map({\n  am: 0,\n  pm: 1\n});\n\n// TODO table of time zone offset names?\nfunction d3_time_zone(d) {\n  var z = d.getTimezoneOffset(),\n      zs = z > 0 ? \"-\" : \"+\",\n      zh = ~~(Math.abs(z) / 60),\n      zm = Math.abs(z) % 60;\n  return zs + d3_time_zfill2(zh) + d3_time_zfill2(zm);\n}\nd3.time.format.utc = function(template) {\n  var local = d3.time.format(template);\n\n  function format(date) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time();\n      utc._ = date;\n      return local(utc);\n    } finally {\n      d3_time = Date;\n    }\n  }\n\n  format.parse = function(string) {\n    try {\n      d3_time = d3_time_utc;\n      var date = local.parse(string);\n      return date && date._;\n    } finally {\n      d3_time = Date;\n    }\n  };\n\n  format.toString = local.toString;\n\n  return format;\n};\nvar d3_time_formatIso = d3.time.format.utc(\"%Y-%m-%dT%H:%M:%S.%LZ\");\n\nd3.time.format.iso = Date.prototype.toISOString ? d3_time_formatIsoNative : d3_time_formatIso;\n\nfunction d3_time_formatIsoNative(date) {\n  return date.toISOString();\n}\n\nd3_time_formatIsoNative.parse = function(string) {\n  return new Date(string);\n};\n\nd3_time_formatIsoNative.toString = d3_time_formatIso.toString;\nfunction d3_time_interval(local, step, number) {\n\n  function round(date) {\n    var d0 = local(date), d1 = offset(d0, 1);\n    return date - d0 < d1 - date ? d0 : d1;\n  }\n\n  function ceil(date) {\n    step(date = local(new d3_time(date - 1)), 1);\n    return date;\n  }\n\n  function offset(date, k) {\n    step(date = new d3_time(+date), k);\n    return date;\n  }\n\n  function range(t0, t1, dt) {\n    var time = ceil(t0), times = [];\n    if (dt > 1) {\n      while (time < t1) {\n        if (!(number(time) % dt)) times.push(new Date(+time));\n        step(time, 1);\n      }\n    } else {\n      while (time < t1) times.push(new Date(+time)), step(time, 1);\n    }\n    return times;\n  }\n\n  function range_utc(t0, t1, dt) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time_utc();\n      utc._ = t0;\n      return range(utc, t1, dt);\n    } finally {\n      d3_time = Date;\n    }\n  }\n\n  local.floor = local;\n  local.round = round;\n  local.ceil = ceil;\n  local.offset = offset;\n  local.range = range;\n\n  var utc = local.utc = d3_time_interval_utc(local);\n  utc.floor = utc;\n  utc.round = d3_time_interval_utc(round);\n  utc.ceil = d3_time_interval_utc(ceil);\n  utc.offset = d3_time_interval_utc(offset);\n  utc.range = range_utc;\n\n  return local;\n}\n\nfunction d3_time_interval_utc(method) {\n  return function(date, k) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time_utc();\n      utc._ = date;\n      return method(utc, k)._;\n    } finally {\n      d3_time = Date;\n    }\n  };\n}\nd3.time.second = d3_time_interval(function(date) {\n  return new d3_time(Math.floor(date / 1e3) * 1e3);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 1e3); // DST breaks setSeconds\n}, function(date) {\n  return date.getSeconds();\n});\n\nd3.time.seconds = d3.time.second.range;\nd3.time.seconds.utc = d3.time.second.utc.range;\nd3.time.minute = d3_time_interval(function(date) {\n  return new d3_time(Math.floor(date / 6e4) * 6e4);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 6e4); // DST breaks setMinutes\n}, function(date) {\n  return date.getMinutes();\n});\n\nd3.time.minutes = d3.time.minute.range;\nd3.time.minutes.utc = d3.time.minute.utc.range;\nd3.time.hour = d3_time_interval(function(date) {\n  var timezone = date.getTimezoneOffset() / 60;\n  return new d3_time((Math.floor(date / 36e5 - timezone) + timezone) * 36e5);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 36e5); // DST breaks setHours\n}, function(date) {\n  return date.getHours();\n});\n\nd3.time.hours = d3.time.hour.range;\nd3.time.hours.utc = d3.time.hour.utc.range;\nd3.time.day = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), date.getMonth(), date.getDate());\n}, function(date, offset) {\n  date.setDate(date.getDate() + offset);\n}, function(date) {\n  return date.getDate() - 1;\n});\n\nd3.time.days = d3.time.day.range;\nd3.time.days.utc = d3.time.day.utc.range;\n\nd3.time.dayOfYear = function(date) {\n  var year = d3.time.year(date);\n  return Math.floor((date - year) / 864e5 - (date.getTimezoneOffset() - year.getTimezoneOffset()) / 1440);\n};\nd3_time_weekdays.forEach(function(day, i) {\n  day = day.toLowerCase();\n  i = 7 - i;\n\n  var interval = d3.time[day] = d3_time_interval(function(date) {\n    (date = d3.time.day(date)).setDate(date.getDate() - (date.getDay() + i) % 7);\n    return date;\n  }, function(date, offset) {\n    date.setDate(date.getDate() + Math.floor(offset) * 7);\n  }, function(date) {\n    var day = d3.time.year(date).getDay();\n    return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7) - (day !== i);\n  });\n\n  d3.time[day + \"s\"] = interval.range;\n  d3.time[day + \"s\"].utc = interval.utc.range;\n\n  d3.time[day + \"OfYear\"] = function(date) {\n    var day = d3.time.year(date).getDay();\n    return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7);\n  };\n});\n\nd3.time.week = d3.time.sunday;\nd3.time.weeks = d3.time.sunday.range;\nd3.time.weeks.utc = d3.time.sunday.utc.range;\nd3.time.weekOfYear = d3.time.sundayOfYear;\nd3.time.month = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), date.getMonth(), 1);\n}, function(date, offset) {\n  date.setMonth(date.getMonth() + offset);\n}, function(date) {\n  return date.getMonth();\n});\n\nd3.time.months = d3.time.month.range;\nd3.time.months.utc = d3.time.month.utc.range;\nd3.time.year = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), 0, 1);\n}, function(date, offset) {\n  date.setFullYear(date.getFullYear() + offset);\n}, function(date) {\n  return date.getFullYear();\n});\n\nd3.time.years = d3.time.year.range;\nd3.time.years.utc = d3.time.year.utc.range;\nfunction d3_time_scale(linear, methods, format) {\n\n  function scale(x) {\n    return linear(x);\n  }\n\n  scale.invert = function(x) {\n    return d3_time_scaleDate(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(d3_time_scaleDate);\n    linear.domain(x);\n    return scale;\n  };\n\n  scale.nice = function(m) {\n    var extent = d3_time_scaleExtent(scale.domain());\n    return scale.domain([m.floor(extent[0]), m.ceil(extent[1])]);\n  };\n\n  scale.ticks = function(m, k) {\n    var extent = d3_time_scaleExtent(scale.domain());\n    if (typeof m !== \"function\") {\n      var span = extent[1] - extent[0],\n          target = span / m,\n          i = d3.bisect(d3_time_scaleSteps, target);\n      if (i == d3_time_scaleSteps.length) return methods.year(extent, m);\n      if (!i) return linear.ticks(m).map(d3_time_scaleDate);\n      if (Math.log(target / d3_time_scaleSteps[i - 1]) < Math.log(d3_time_scaleSteps[i] / target)) --i;\n      m = methods[i];\n      k = m[1];\n      m = m[0].range;\n    }\n    return m(extent[0], new Date(+extent[1] + 1), k); // inclusive upper bound\n  };\n\n  scale.tickFormat = function() {\n    return format;\n  };\n\n  scale.copy = function() {\n    return d3_time_scale(linear.copy(), methods, format);\n  };\n\n  // TOOD expose d3_scale_linear_rebind?\n  return d3.rebind(scale, linear, \"range\", \"rangeRound\", \"interpolate\", \"clamp\");\n}\n\n// TODO expose d3_scaleExtent?\nfunction d3_time_scaleExtent(domain) {\n  var start = domain[0], stop = domain[domain.length - 1];\n  return start < stop ? [start, stop] : [stop, start];\n}\n\nfunction d3_time_scaleDate(t) {\n  return new Date(t);\n}\n\nfunction d3_time_scaleFormat(formats) {\n  return function(date) {\n    var i = formats.length - 1, f = formats[i];\n    while (!f[1](date)) f = formats[--i];\n    return f[0](date);\n  };\n}\n\nfunction d3_time_scaleSetYear(y) {\n  var d = new Date(y, 0, 1);\n  d.setFullYear(y); // Y2K fail\n  return d;\n}\n\nfunction d3_time_scaleGetYear(d) {\n  var y = d.getFullYear(),\n      d0 = d3_time_scaleSetYear(y),\n      d1 = d3_time_scaleSetYear(y + 1);\n  return y + (d - d0) / (d1 - d0);\n}\n\nvar d3_time_scaleSteps = [\n  1e3,    // 1-second\n  5e3,    // 5-second\n  15e3,   // 15-second\n  3e4,    // 30-second\n  6e4,    // 1-minute\n  3e5,    // 5-minute\n  9e5,    // 15-minute\n  18e5,   // 30-minute\n  36e5,   // 1-hour\n  108e5,  // 3-hour\n  216e5,  // 6-hour\n  432e5,  // 12-hour\n  864e5,  // 1-day\n  1728e5, // 2-day\n  6048e5, // 1-week\n  2592e6, // 1-month\n  7776e6, // 3-month\n  31536e6 // 1-year\n];\n\nvar d3_time_scaleLocalMethods = [\n  [d3.time.second, 1],\n  [d3.time.second, 5],\n  [d3.time.second, 15],\n  [d3.time.second, 30],\n  [d3.time.minute, 1],\n  [d3.time.minute, 5],\n  [d3.time.minute, 15],\n  [d3.time.minute, 30],\n  [d3.time.hour, 1],\n  [d3.time.hour, 3],\n  [d3.time.hour, 6],\n  [d3.time.hour, 12],\n  [d3.time.day, 1],\n  [d3.time.day, 2],\n  [d3.time.week, 1],\n  [d3.time.month, 1],\n  [d3.time.month, 3],\n  [d3.time.year, 1]\n];\n\nvar d3_time_scaleLocalFormats = [\n  [d3.time.format(\"%Y\"), function(d) { return true; }],\n  [d3.time.format(\"%B\"), function(d) { return d.getMonth(); }],\n  [d3.time.format(\"%b %d\"), function(d) { return d.getDate() != 1; }],\n  [d3.time.format(\"%a %d\"), function(d) { return d.getDay() && d.getDate() != 1; }],\n  [d3.time.format(\"%I %p\"), function(d) { return d.getHours(); }],\n  [d3.time.format(\"%I:%M\"), function(d) { return d.getMinutes(); }],\n  [d3.time.format(\":%S\"), function(d) { return d.getSeconds(); }],\n  [d3.time.format(\".%L\"), function(d) { return d.getMilliseconds(); }]\n];\n\nvar d3_time_scaleLinear = d3.scale.linear(),\n    d3_time_scaleLocalFormat = d3_time_scaleFormat(d3_time_scaleLocalFormats);\n\nd3_time_scaleLocalMethods.year = function(extent, m) {\n  return d3_time_scaleLinear.domain(extent.map(d3_time_scaleGetYear)).ticks(m).map(d3_time_scaleSetYear);\n};\n\nd3.time.scale = function() {\n  return d3_time_scale(d3.scale.linear(), d3_time_scaleLocalMethods, d3_time_scaleLocalFormat);\n};\nvar d3_time_scaleUTCMethods = d3_time_scaleLocalMethods.map(function(m) {\n  return [m[0].utc, m[1]];\n});\n\nvar d3_time_scaleUTCFormats = [\n  [d3.time.format.utc(\"%Y\"), function(d) { return true; }],\n  [d3.time.format.utc(\"%B\"), function(d) { return d.getUTCMonth(); }],\n  [d3.time.format.utc(\"%b %d\"), function(d) { return d.getUTCDate() != 1; }],\n  [d3.time.format.utc(\"%a %d\"), function(d) { return d.getUTCDay() && d.getUTCDate() != 1; }],\n  [d3.time.format.utc(\"%I %p\"), function(d) { return d.getUTCHours(); }],\n  [d3.time.format.utc(\"%I:%M\"), function(d) { return d.getUTCMinutes(); }],\n  [d3.time.format.utc(\":%S\"), function(d) { return d.getUTCSeconds(); }],\n  [d3.time.format.utc(\".%L\"), function(d) { return d.getUTCMilliseconds(); }]\n];\n\nvar d3_time_scaleUTCFormat = d3_time_scaleFormat(d3_time_scaleUTCFormats);\n\nfunction d3_time_scaleUTCSetYear(y) {\n  var d = new Date(Date.UTC(y, 0, 1));\n  d.setUTCFullYear(y); // Y2K fail\n  return d;\n}\n\nfunction d3_time_scaleUTCGetYear(d) {\n  var y = d.getUTCFullYear(),\n      d0 = d3_time_scaleUTCSetYear(y),\n      d1 = d3_time_scaleUTCSetYear(y + 1);\n  return y + (d - d0) / (d1 - d0);\n}\n\nd3_time_scaleUTCMethods.year = function(extent, m) {\n  return d3_time_scaleLinear.domain(extent.map(d3_time_scaleUTCGetYear)).ticks(m).map(d3_time_scaleUTCSetYear);\n};\n\nd3.time.scale.utc = function() {\n  return d3_time_scale(d3.scale.linear(), d3_time_scaleUTCMethods, d3_time_scaleUTCFormat);\n};\n})();\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/highlight.js",
    "content": "var hljs=new function(){function l(o){return o.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function b(p){for(var o=p.firstChild;o;o=o.nextSibling){if(o.nodeName==\"CODE\"){return o}if(!(o.nodeType==3&&o.nodeValue.match(/\\s+/))){break}}}function h(p,o){return Array.prototype.map.call(p.childNodes,function(q){if(q.nodeType==3){return o?q.nodeValue.replace(/\\n/g,\"\"):q.nodeValue}if(q.nodeName==\"BR\"){return\"\\n\"}return h(q,o)}).join(\"\")}function a(q){var p=(q.className+\" \"+q.parentNode.className).split(/\\s+/);p=p.map(function(r){return r.replace(/^language-/,\"\")});for(var o=0;o<p.length;o++){if(e[p[o]]||p[o]==\"no-highlight\"){return p[o]}}}function c(q){var o=[];(function p(r,s){for(var t=r.firstChild;t;t=t.nextSibling){if(t.nodeType==3){s+=t.nodeValue.length}else{if(t.nodeName==\"BR\"){s+=1}else{if(t.nodeType==1){o.push({event:\"start\",offset:s,node:t});s=p(t,s);o.push({event:\"stop\",offset:s,node:t})}}}}return s})(q,0);return o}function j(x,v,w){var p=0;var y=\"\";var r=[];function t(){if(x.length&&v.length){if(x[0].offset!=v[0].offset){return(x[0].offset<v[0].offset)?x:v}else{return v[0].event==\"start\"?x:v}}else{return x.length?x:v}}function s(A){function z(B){return\" \"+B.nodeName+'=\"'+l(B.value)+'\"'}return\"<\"+A.nodeName+Array.prototype.map.call(A.attributes,z).join(\"\")+\">\"}while(x.length||v.length){var u=t().splice(0,1)[0];y+=l(w.substr(p,u.offset-p));p=u.offset;if(u.event==\"start\"){y+=s(u.node);r.push(u.node)}else{if(u.event==\"stop\"){var o,q=r.length;do{q--;o=r[q];y+=(\"</\"+o.nodeName.toLowerCase()+\">\")}while(o!=u.node);r.splice(q,1);while(q<r.length){y+=s(r[q]);q++}}}}return y+l(w.substr(p))}function f(q){function o(s,r){return RegExp(s,\"m\"+(q.cI?\"i\":\"\")+(r?\"g\":\"\"))}function p(y,w){if(y.compiled){return}y.compiled=true;var s=[];if(y.k){var r={};function z(A,t){t.split(\" \").forEach(function(B){var C=B.split(\"|\");r[C[0]]=[A,C[1]?Number(C[1]):1];s.push(C[0])})}y.lR=o(y.l||hljs.IR,true);if(typeof y.k==\"string\"){z(\"keyword\",y.k)}else{for(var x in y.k){if(!y.k.hasOwnProperty(x)){continue}z(x,y.k[x])}}y.k=r}if(w){if(y.bWK){y.b=\"\\\\b(\"+s.join(\"|\")+\")\\\\s\"}y.bR=o(y.b?y.b:\"\\\\B|\\\\b\");if(!y.e&&!y.eW){y.e=\"\\\\B|\\\\b\"}if(y.e){y.eR=o(y.e)}y.tE=y.e||\"\";if(y.eW&&w.tE){y.tE+=(y.e?\"|\":\"\")+w.tE}}if(y.i){y.iR=o(y.i)}if(y.r===undefined){y.r=1}if(!y.c){y.c=[]}for(var v=0;v<y.c.length;v++){if(y.c[v]==\"self\"){y.c[v]=y}p(y.c[v],y)}if(y.starts){p(y.starts,w)}var u=[];for(var v=0;v<y.c.length;v++){u.push(y.c[v].b)}if(y.tE){u.push(y.tE)}if(y.i){u.push(y.i)}y.t=u.length?o(u.join(\"|\"),true):{exec:function(t){return null}}}p(q)}function d(D,E){function o(r,M){for(var L=0;L<M.c.length;L++){var K=M.c[L].bR.exec(r);if(K&&K.index==0){return M.c[L]}}}function s(K,r){if(K.e&&K.eR.test(r)){return K}if(K.eW){return s(K.parent,r)}}function t(r,K){return K.i&&K.iR.test(r)}function y(L,r){var K=F.cI?r[0].toLowerCase():r[0];return L.k.hasOwnProperty(K)&&L.k[K]}function G(){var K=l(w);if(!A.k){return K}var r=\"\";var N=0;A.lR.lastIndex=0;var L=A.lR.exec(K);while(L){r+=K.substr(N,L.index-N);var M=y(A,L);if(M){v+=M[1];r+='<span class=\"'+M[0]+'\">'+L[0]+\"</span>\"}else{r+=L[0]}N=A.lR.lastIndex;L=A.lR.exec(K)}return r+K.substr(N)}function z(){if(A.sL&&!e[A.sL]){return l(w)}var r=A.sL?d(A.sL,w):g(w);if(A.r>0){v+=r.keyword_count;B+=r.r}return'<span class=\"'+r.language+'\">'+r.value+\"</span>\"}function J(){return A.sL!==undefined?z():G()}function I(L,r){var K=L.cN?'<span class=\"'+L.cN+'\">':\"\";if(L.rB){x+=K;w=\"\"}else{if(L.eB){x+=l(r)+K;w=\"\"}else{x+=K;w=r}}A=Object.create(L,{parent:{value:A}});B+=L.r}function C(K,r){w+=K;if(r===undefined){x+=J();return 0}var L=o(r,A);if(L){x+=J();I(L,r);return L.rB?0:r.length}var M=s(A,r);if(M){if(!(M.rE||M.eE)){w+=r}x+=J();do{if(A.cN){x+=\"</span>\"}A=A.parent}while(A!=M.parent);if(M.eE){x+=l(r)}w=\"\";if(M.starts){I(M.starts,\"\")}return M.rE?0:r.length}if(t(r,A)){throw\"Illegal\"}w+=r;return r.length||1}var F=e[D];f(F);var A=F;var w=\"\";var B=0;var v=0;var x=\"\";try{var u,q,p=0;while(true){A.t.lastIndex=p;u=A.t.exec(E);if(!u){break}q=C(E.substr(p,u.index-p),u[0]);p=u.index+q}C(E.substr(p));return{r:B,keyword_count:v,value:x,language:D}}catch(H){if(H==\"Illegal\"){return{r:0,keyword_count:0,value:l(E)}}else{throw H}}}function g(s){var o={keyword_count:0,r:0,value:l(s)};var q=o;for(var p in e){if(!e.hasOwnProperty(p)){continue}var r=d(p,s);r.language=p;if(r.keyword_count+r.r>q.keyword_count+q.r){q=r}if(r.keyword_count+r.r>o.keyword_count+o.r){q=o;o=r}}if(q.language){o.second_best=q}return o}function i(q,p,o){if(p){q=q.replace(/^((<[^>]+>|\\t)+)/gm,function(r,v,u,t){return v.replace(/\\t/g,p)})}if(o){q=q.replace(/\\n/g,\"<br>\")}return q}function m(r,u,p){var v=h(r,p);var t=a(r);if(t==\"no-highlight\"){return}var w=t?d(t,v):g(v);t=w.language;var o=c(r);if(o.length){var q=document.createElement(\"pre\");q.innerHTML=w.value;w.value=j(o,c(q),v)}w.value=i(w.value,u,p);var s=r.className;if(!s.match(\"(\\\\s|^)(language-)?\"+t+\"(\\\\s|$)\")){s=s?(s+\" \"+t):t}r.innerHTML=w.value;r.className=s;r.result={language:t,kw:w.keyword_count,re:w.r};if(w.second_best){r.second_best={language:w.second_best.language,kw:w.second_best.keyword_count,re:w.second_best.r}}}function n(){if(n.called){return}n.called=true;Array.prototype.map.call(document.getElementsByTagName(\"pre\"),b).filter(Boolean).forEach(function(o){m(o,hljs.tabReplace)})}function k(){window.addEventListener(\"DOMContentLoaded\",n,false);window.addEventListener(\"load\",n,false)}var e={};this.LANGUAGES=e;this.highlight=d;this.highlightAuto=g;this.fixMarkup=i;this.highlightBlock=m;this.initHighlighting=n;this.initHighlightingOnLoad=k;this.IR=\"[a-zA-Z][a-zA-Z0-9_]*\";this.UIR=\"[a-zA-Z_][a-zA-Z0-9_]*\";this.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\";this.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\";this.BNR=\"\\\\b(0b[01]+)\";this.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|\\\\.|-|-=|/|/=|:|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\";this.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0};this.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[this.BE],r:0};this.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[this.BE],r:0};this.CLCM={cN:\"comment\",b:\"//\",e:\"$\"};this.CBLCLM={cN:\"comment\",b:\"/\\\\*\",e:\"\\\\*/\"};this.HCM={cN:\"comment\",b:\"#\",e:\"$\"};this.NM={cN:\"number\",b:this.NR,r:0};this.CNM={cN:\"number\",b:this.CNR,r:0};this.BNM={cN:\"number\",b:this.BNR,r:0};this.inherit=function(q,r){var o={};for(var p in q){o[p]=q[p]}if(r){for(var p in r){o[p]=r[p]}}return o}}();hljs.LANGUAGES.ruby=function(e){var a=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\";var j=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\";var g={keyword:\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include\"};var c={cN:\"yardoctag\",b:\"@[A-Za-z]+\"};var k=[{cN:\"comment\",b:\"#\",e:\"$\",c:[c]},{cN:\"comment\",b:\"^\\\\=begin\",e:\"^\\\\=end\",c:[c],r:10},{cN:\"comment\",b:\"^__END__\",e:\"\\\\n$\"}];var d={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:a,k:g};var i=[e.BE,d];var b=[{cN:\"string\",b:\"'\",e:\"'\",c:i,r:0},{cN:\"string\",b:'\"',e:'\"',c:i,r:0},{cN:\"string\",b:\"%[qw]?\\\\(\",e:\"\\\\)\",c:i},{cN:\"string\",b:\"%[qw]?\\\\[\",e:\"\\\\]\",c:i},{cN:\"string\",b:\"%[qw]?{\",e:\"}\",c:i},{cN:\"string\",b:\"%[qw]?<\",e:\">\",c:i,r:10},{cN:\"string\",b:\"%[qw]?/\",e:\"/\",c:i,r:10},{cN:\"string\",b:\"%[qw]?%\",e:\"%\",c:i,r:10},{cN:\"string\",b:\"%[qw]?-\",e:\"-\",c:i,r:10},{cN:\"string\",b:\"%[qw]?\\\\|\",e:\"\\\\|\",c:i,r:10}];var h={cN:\"function\",bWK:true,e:\" |$|;\",k:\"def\",c:[{cN:\"title\",b:j,l:a,k:g},{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:a,k:g}].concat(k)};var f=k.concat(b.concat([{cN:\"class\",bWK:true,e:\"$|;\",k:\"class module\",c:[{cN:\"title\",b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\",r:0},{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(k)},h,{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:\":\",c:b.concat([{b:j}]),r:0},{cN:\"symbol\",b:a+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"number\",b:\"\\\\?\\\\w\"},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:k.concat([{cN:\"regexp\",b:\"/\",e:\"/[a-z]*\",i:\"\\\\n\",c:[e.BE,d]}]),r:0}]));d.c=f;h.c[1].c=f;return{l:a,k:g,c:f}}(hljs);hljs.LANGUAGES.diff=function(a){return{c:[{cN:\"chunk\",b:\"^\\\\@\\\\@ +\\\\-\\\\d+,\\\\d+ +\\\\+\\\\d+,\\\\d+ +\\\\@\\\\@$\",r:10},{cN:\"chunk\",b:\"^\\\\*\\\\*\\\\* +\\\\d+,\\\\d+ +\\\\*\\\\*\\\\*\\\\*$\",r:10},{cN:\"chunk\",b:\"^\\\\-\\\\-\\\\- +\\\\d+,\\\\d+ +\\\\-\\\\-\\\\-\\\\-$\",r:10},{cN:\"header\",b:\"Index: \",e:\"$\"},{cN:\"header\",b:\"=====\",e:\"=====$\"},{cN:\"header\",b:\"^\\\\-\\\\-\\\\-\",e:\"$\"},{cN:\"header\",b:\"^\\\\*{3} \",e:\"$\"},{cN:\"header\",b:\"^\\\\+\\\\+\\\\+\",e:\"$\"},{cN:\"header\",b:\"\\\\*{5}\",e:\"\\\\*{5}$\"},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}}(hljs);hljs.LANGUAGES.javascript=function(a){return{k:{keyword:\"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const\",literal:\"true false null undefined NaN Infinity\"},c:[a.ASM,a.QSM,a.CLCM,a.CBLCLM,a.CNM,{b:\"(\"+a.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[a.CLCM,a.CBLCLM,{cN:\"regexp\",b:\"/\",e:\"/[gim]*\",i:\"\\\\n\",c:[{b:\"\\\\\\\\/\"}]},{b:\"<\",e:\">;\",sL:\"xml\"}],r:0},{cN:\"function\",bWK:true,e:\"{\",k:\"function\",c:[{cN:\"title\",b:\"[A-Za-z$_][0-9A-Za-z$_]*\"},{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[a.CLCM,a.CBLCLM],i:\"[\\\"'\\\\(]\"}],i:\"\\\\[|%\"}]}}(hljs);hljs.LANGUAGES.xml=function(a){var c=\"[A-Za-z0-9\\\\._:-]+\";var b={eW:true,c:[{cN:\"attribute\",b:c,r:0},{b:'=\"',rB:true,e:'\"',c:[{cN:\"value\",b:'\"',eW:true}]},{b:\"='\",rB:true,e:\"'\",c:[{cN:\"value\",b:\"'\",eW:true}]},{b:\"=\",c:[{cN:\"value\",b:\"[^\\\\s/>]+\"}]}]};return{cI:true,c:[{cN:\"pi\",b:\"<\\\\?\",e:\"\\\\?>\",r:10},{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},{cN:\"comment\",b:\"<!--\",e:\"-->\",r:10},{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[b],starts:{e:\"</style>\",rE:true,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[b],starts:{e:\"<\\/script>\",rE:true,sL:\"javascript\"}},{b:\"<%\",e:\"%>\",sL:\"vbscript\"},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:\"[^ />]+\"},b]}]}}(hljs);hljs.LANGUAGES.php=function(a){var e={cN:\"variable\",b:\"\\\\$+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*\"};var b=[a.inherit(a.ASM,{i:null}),a.inherit(a.QSM,{i:null}),{cN:\"string\",b:'b\"',e:'\"',c:[a.BE]},{cN:\"string\",b:\"b'\",e:\"'\",c:[a.BE]}];var c=[a.BNM,a.CNM];var d={cN:\"title\",b:a.UIR};return{cI:true,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return implements parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception php_user_filter default die require __FUNCTION__ enddeclare final try this switch continue endfor endif declare unset true false namespace trait goto instanceof insteadof __DIR__ __NAMESPACE__ __halt_compiler\",c:[a.CLCM,a.HCM,{cN:\"comment\",b:\"/\\\\*\",e:\"\\\\*/\",c:[{cN:\"phpdoc\",b:\"\\\\s@[A-Za-z]+\"}]},{cN:\"comment\",eB:true,b:\"__halt_compiler.+?;\",eW:true},{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[a.BE]},{cN:\"preprocessor\",b:\"<\\\\?php\",r:10},{cN:\"preprocessor\",b:\"\\\\?>\"},e,{cN:\"function\",bWK:true,e:\"{\",k:\"function\",i:\"\\\\$|\\\\[|%\",c:[d,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e,a.CBLCLM].concat(b).concat(c)}]},{cN:\"class\",bWK:true,e:\"{\",k:\"class\",i:\"[:\\\\(\\\\$]\",c:[{bWK:true,eW:true,k:\"extends\",c:[d]},d]},{b:\"=>\"}].concat(b).concat(c)}}(hljs);hljs.LANGUAGES.python=function(a){var f={cN:\"prompt\",b:\"^(>>>|\\\\.\\\\.\\\\.) \"};var c=[{cN:\"string\",b:\"(u|b)?r?'''\",e:\"'''\",c:[f],r:10},{cN:\"string\",b:'(u|b)?r?\"\"\"',e:'\"\"\"',c:[f],r:10},{cN:\"string\",b:\"(u|r|ur)'\",e:\"'\",c:[a.BE],r:10},{cN:\"string\",b:'(u|r|ur)\"',e:'\"',c:[a.BE],r:10},{cN:\"string\",b:\"(b|br)'\",e:\"'\",c:[a.BE]},{cN:\"string\",b:'(b|br)\"',e:'\"',c:[a.BE]}].concat([a.ASM,a.QSM]);var e={cN:\"title\",b:a.UIR};var d={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",a.CNM,f].concat(c)};var b={bWK:true,e:\":\",i:\"[${=;\\\\n]\",c:[e,d],r:10};return{k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10\",built_in:\"None True False Ellipsis NotImplemented\"},i:\"(</|->|\\\\?)\",c:c.concat([f,a.HCM,a.inherit(b,{cN:\"function\",k:\"def\"}),a.inherit(b,{cN:\"class\",k:\"class\"}),a.CNM,{cN:\"decorator\",b:\"@\",e:\"$\"},{b:\"\\\\b(print|exec)\\\\(\"}])}}(hljs);hljs.LANGUAGES.json=function(a){var e={literal:\"true false null\"};var d=[a.QSM,a.CNM];var c={cN:\"value\",e:\",\",eW:true,eE:true,c:d,k:e};var b={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:true,eE:true,c:[a.BE],i:\"\\\\n\",starts:c}],i:\"\\\\S\"};var f={b:\"\\\\[\",e:\"\\\\]\",c:[a.inherit(c,{cN:null})],i:\"\\\\S\"};d.splice(d.length,0,b,f);return{c:d,k:e,i:\"\\\\S\"}}(hljs);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/jquery.autogrow.js",
    "content": "/* \n * Auto Expanding Text Area (1.2.2)\n * by Chrys Bader (www.chrysbader.com)\n * chrysb@gmail.com\n *\n * Special thanks to:\n * Jake Chapa - jake@hybridstudio.com\n * John Resig - jeresig@gmail.com\n *\n * Copyright (c) 2008 Chrys Bader (www.chrysbader.com)\n * Licensed under the GPL (GPL-LICENSE.txt) license. \n *\n *\n * NOTE: This script requires jQuery to work.  Download jQuery at www.jquery.com\n *\n */\n \n(function(jQuery) {\n\t\t  \n\tvar self = null;\n \n\tjQuery.fn.autogrow = function(o)\n\t{\t\n\t\treturn this.each(function() {\n\t\t\tnew jQuery.autogrow(this, o);\n\t\t});\n\t};\n\t\n\n    /**\n     * The autogrow object.\n     *\n     * @constructor\n     * @name jQuery.autogrow\n     * @param Object e The textarea to create the autogrow for.\n     * @param Hash o A set of key/value pairs to set as configuration properties.\n     * @cat Plugins/autogrow\n     */\n\t\n\tjQuery.autogrow = function (e, o)\n\t{\n\t\tthis.options\t\t  \t= o || {};\n\t\tthis.dummy\t\t\t  \t= null;\n\t\tthis.interval\t \t  \t= null;\n\t\tthis.line_height\t  \t= this.options.lineHeight || parseInt(jQuery(e).css('line-height'), 10);\n\t\tthis.min_height\t\t  \t= this.options.minHeight || parseInt(jQuery(e).css('min-height'), 10);\n\t\tthis.max_height\t\t  \t= this.options.maxHeight || parseInt(jQuery(e).css('max-height'), 10);\n\t\tthis.textarea\t\t  \t= jQuery(e);\n\t\t\n\t\tif(this.line_height == NaN)\n\t\t  this.line_height = 0;\n\t\t\n\t\t// Only one textarea activated at a time, the one being used\n\t\tthis.init();\n\t};\n\t\n\tjQuery.autogrow.fn = jQuery.autogrow.prototype = {\n    autogrow: '1.2.2'\n  };\n\t\n \tjQuery.autogrow.fn.extend = jQuery.autogrow.extend = jQuery.extend;\n\t\n\tjQuery.autogrow.fn.extend({\n\t\t\t\t\t\t \n\t\tinit: function() {\t\t\t\n\t\t\tvar self = this;\t\t\t\n\t\t\tthis.textarea.css({overflow: 'hidden', display: 'block'});\n\t\t\tthis.textarea.bind('focus', function() { self.startExpand(); } ).bind('blur', function() { self.stopExpand(); });\n\t\t\tthis.checkExpand();\t\n\t\t},\n\t\t\t\t\t\t \n\t\tstartExpand: function() {\t\t\t\t\n\t\t  var self = this;\n\t\t\tthis.interval = window.setInterval(function() {self.checkExpand();}, 400);\n\t\t},\n\t\t\n\t\tstopExpand: function() {\n\t\t\tclearInterval(this.interval);\t\n\t\t},\n\t\t\n\t\tcheckExpand: function() {\n\t\t\t\n\t\t\tif (this.dummy == null)\n\t\t\t{\n\t\t\t\tthis.dummy = jQuery('<div></div>');\n\t\t\t\tthis.dummy.css({\n\t\t\t\t\t\t\t\t\t\t\t\t'font-size'  : this.textarea.css('font-size'),\n\t\t\t\t\t\t\t\t\t\t\t\t'font-family': this.textarea.css('font-family'),\n\t\t\t\t\t\t\t\t\t\t\t\t'width'      : this.textarea.css('width'),\n\t\t\t\t\t\t\t\t\t\t\t\t// IE shits its pants if you uncomment the next line!\n\t\t\t\t\t\t\t\t\t\t\t\t//'padding'    : this.textarea.css('padding'),\n\t\t\t\t\t\t\t\t\t\t\t\t'line-height': this.line_height + 'px',\n\t\t\t\t\t\t\t\t\t\t\t\t'overflow-x' : 'hidden',\n\t\t\t\t\t\t\t\t\t\t\t\t'position'   : 'absolute',\n\t\t\t\t\t\t\t\t\t\t\t\t'top'        : 0,\n\t\t\t\t\t\t\t\t\t\t\t\t'left'\t\t : -9999\n\t\t\t\t\t\t\t\t\t\t\t\t}).appendTo('body');\n\t\t\t}\n\t\t\t\n\t\t\t// Strip HTML tags\n\t\t\tvar html = this.textarea.val().replace(/(<|>)/g, '');\n\t\t\t\n\t\t\t// IE is different, as per usual\n\t\t\tif ($.browser.msie)\n\t\t\t{\n\t\t\t\thtml = html.replace(/\\n/g, '<BR>new');\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\thtml = html.replace(/\\n/g, '<br>new');\n\t\t\t}\n\t\t\t\n\t\t\tif (this.dummy.html() != html)\n\t\t\t{\n\t\t\t\tthis.dummy.html(html);\t\n\t\t\t\t\n\t\t\t\tif (this.max_height > 0 && (this.dummy.height() + this.line_height > this.max_height))\n\t\t\t\t{\n\t\t\t\t\tthis.textarea.css('overflow-y', 'auto');\t\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tthis.textarea.css('overflow-y', 'hidden');\n\t\t\t\t\tif (this.textarea.height() < this.dummy.height() + this.line_height || (this.dummy.height() < this.textarea.height()))\n\t\t\t\t\t{\t\n\t\t\t\t\t\tthis.textarea.animate({height: (this.dummy.height() + this.line_height) + 'px'}, 100);\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t });\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/jquery.blockUI.js",
    "content": "﻿/*!\n * jQuery blockUI plugin\n * Version 2.39 (23-MAY-2011)\n * @requires jQuery v1.2.3 or later\n *\n * Examples at: http://malsup.com/jquery/block/\n * Copyright (c) 2007-2010 M. Alsup\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n *\n * Thanks to Amir-Hossein Sobhi for some excellent contributions!\n */\n\n;(function($) {\n\nif (/1\\.(0|1|2)\\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {\n\talert('blockUI requires jQuery v1.2.3 or later!  You are using v' + $.fn.jquery);\n\treturn;\n}\n\n$.fn._fadeIn = $.fn.fadeIn;\n\nvar noOp = function() {};\n\n// this bit is to ensure we don't call setExpression when we shouldn't (with extra muscle to handle\n// retarded userAgent strings on Vista)\nvar mode = document.documentMode || 0;\nvar setExpr = $.browser.msie && (($.browser.version < 8 && !mode) || mode < 8);\nvar ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !mode;\n\n// global $ methods for blocking/unblocking the entire page\n$.blockUI   = function(opts) { install(window, opts); };\n$.unblockUI = function(opts) { remove(window, opts); };\n\n// convenience method for quick growl-like notifications  (http://www.google.com/search?q=growl)\n$.growlUI = function(title, message, timeout, onClose) {\n\tvar $m = $('<div class=\"growlUI\"></div>');\n\tif (title) $m.append('<h1>'+title+'</h1>');\n\tif (message) $m.append('<h2>'+message+'</h2>');\n\tif (timeout == undefined) timeout = 3000;\n\t$.blockUI({\n\t\tmessage: $m, fadeIn: 700, fadeOut: 1000, centerY: false,\n\t\ttimeout: timeout, showOverlay: false,\n\t\tonUnblock: onClose, \n\t\tcss: $.blockUI.defaults.growlCSS\n\t});\n};\n\n// plugin method for blocking element content\n$.fn.block = function(opts) {\n\treturn this.unblock({ fadeOut: 0 }).each(function() {\n\t\tif ($.css(this,'position') == 'static')\n\t\t\tthis.style.position = 'relative';\n\t\tif ($.browser.msie)\n\t\t\tthis.style.zoom = 1; // force 'hasLayout'\n\t\tinstall(this, opts);\n\t});\n};\n\n// plugin method for unblocking element content\n$.fn.unblock = function(opts) {\n\treturn this.each(function() {\n\t\tremove(this, opts);\n\t});\n};\n\n$.blockUI.version = 2.39; // 2nd generation blocking at no extra cost!\n\n// override these in your code to change the default behavior and style\n$.blockUI.defaults = {\n\t// message displayed when blocking (use null for no message)\n\tmessage:  '<h1>Please wait...</h1>',\n\n\ttitle: null,\t  // title string; only used when theme == true\n\tdraggable: true,  // only used when theme == true (requires jquery-ui.js to be loaded)\n\t\n\ttheme: false, // set to true to use with jQuery UI themes\n\t\n\t// styles for the message when blocking; if you wish to disable\n\t// these and use an external stylesheet then do this in your code:\n\t// $.blockUI.defaults.css = {};\n\tcss: {\n\t\tpadding:\t0,\n\t\tmargin:\t\t0,\n\t\twidth:\t\t'30%',\n\t\ttop:\t\t'40%',\n\t\tleft:\t\t'35%',\n\t\ttextAlign:\t'center',\n\t\tcolor:\t\t'#000',\n\t\tborder:\t\t'3px solid #aaa',\n\t\tbackgroundColor:'#fff',\n\t\tcursor:\t\t'wait'\n\t},\n\t\n\t// minimal style set used when themes are used\n\tthemedCSS: {\n\t\twidth:\t'30%',\n\t\ttop:\t'40%',\n\t\tleft:\t'35%'\n\t},\n\n\t// styles for the overlay\n\toverlayCSS:  {\n\t\tbackgroundColor: '#000',\n\t\topacity:\t  \t 0.6,\n\t\tcursor:\t\t  \t 'wait'\n\t},\n\n\t// styles applied when using $.growlUI\n\tgrowlCSS: {\n\t\twidth:  \t'350px',\n\t\ttop:\t\t'10px',\n\t\tleft:   \t'',\n\t\tright:  \t'10px',\n\t\tborder: \t'none',\n\t\tpadding:\t'5px',\n\t\topacity:\t0.6,\n\t\tcursor: \t'default',\n\t\tcolor:\t\t'#fff',\n\t\tbackgroundColor: '#000',\n\t\t'-webkit-border-radius': '10px',\n\t\t'-moz-border-radius':\t '10px',\n\t\t'border-radius': \t\t '10px'\n\t},\n\t\n\t// IE issues: 'about:blank' fails on HTTPS and javascript:false is s-l-o-w\n\t// (hat tip to Jorge H. N. de Vasconcelos)\n\tiframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank',\n\n\t// force usage of iframe in non-IE browsers (handy for blocking applets)\n\tforceIframe: false,\n\n\t// z-index for the blocking overlay\n\tbaseZ: 1000,\n\n\t// set these to true to have the message automatically centered\n\tcenterX: true, // <-- only effects element blocking (page block controlled via css above)\n\tcenterY: true,\n\n\t// allow body element to be stetched in ie6; this makes blocking look better\n\t// on \"short\" pages.  disable if you wish to prevent changes to the body height\n\tallowBodyStretch: true,\n\n\t// enable if you want key and mouse events to be disabled for content that is blocked\n\tbindEvents: true,\n\n\t// be default blockUI will supress tab navigation from leaving blocking content\n\t// (if bindEvents is true)\n\tconstrainTabKey: true,\n\n\t// fadeIn time in millis; set to 0 to disable fadeIn on block\n\tfadeIn:  200,\n\n\t// fadeOut time in millis; set to 0 to disable fadeOut on unblock\n\tfadeOut:  400,\n\n\t// time in millis to wait before auto-unblocking; set to 0 to disable auto-unblock\n\ttimeout: 0,\n\n\t// disable if you don't want to show the overlay\n\tshowOverlay: true,\n\n\t// if true, focus will be placed in the first available input field when\n\t// page blocking\n\tfocusInput: true,\n\n\t// suppresses the use of overlay styles on FF/Linux (due to performance issues with opacity)\n\tapplyPlatformOpacityRules: true,\n\t\n\t// callback method invoked when fadeIn has completed and blocking message is visible\n\tonBlock: null,\n\n\t// callback method invoked when unblocking has completed; the callback is\n\t// passed the element that has been unblocked (which is the window object for page\n\t// blocks) and the options that were passed to the unblock call:\n\t//\t onUnblock(element, options)\n\tonUnblock: null,\n\n\t// don't ask; if you really must know: http://groups.google.com/group/jquery-en/browse_thread/thread/36640a8730503595/2f6a79a77a78e493#2f6a79a77a78e493\n\tquirksmodeOffsetHack: 4,\n\n\t// class name of the message block\n\tblockMsgClass: 'blockMsg'\n};\n\n// private data and functions follow...\n\nvar pageBlock = null;\nvar pageBlockEls = [];\n\nfunction install(el, opts) {\n\tvar full = (el == window);\n\tvar msg = opts && opts.message !== undefined ? opts.message : undefined;\n\topts = $.extend({}, $.blockUI.defaults, opts || {});\n\topts.overlayCSS = $.extend({}, $.blockUI.defaults.overlayCSS, opts.overlayCSS || {});\n\tvar css = $.extend({}, $.blockUI.defaults.css, opts.css || {});\n\tvar themedCSS = $.extend({}, $.blockUI.defaults.themedCSS, opts.themedCSS || {});\n\tmsg = msg === undefined ? opts.message : msg;\n\n\t// remove the current block (if there is one)\n\tif (full && pageBlock)\n\t\tremove(window, {fadeOut:0});\n\n\t// if an existing element is being used as the blocking content then we capture\n\t// its current place in the DOM (and current display style) so we can restore\n\t// it when we unblock\n\tif (msg && typeof msg != 'string' && (msg.parentNode || msg.jquery)) {\n\t\tvar node = msg.jquery ? msg[0] : msg;\n\t\tvar data = {};\n\t\t$(el).data('blockUI.history', data);\n\t\tdata.el = node;\n\t\tdata.parent = node.parentNode;\n\t\tdata.display = node.style.display;\n\t\tdata.position = node.style.position;\n\t\tif (data.parent)\n\t\t\tdata.parent.removeChild(node);\n\t}\n\n\t$(el).data('blockUI.onUnblock', opts.onUnblock);\n\tvar z = opts.baseZ;\n\n\t// blockUI uses 3 layers for blocking, for simplicity they are all used on every platform;\n\t// layer1 is the iframe layer which is used to supress bleed through of underlying content\n\t// layer2 is the overlay layer which has opacity and a wait cursor (by default)\n\t// layer3 is the message content that is displayed while blocking\n\n\tvar lyr1 = ($.browser.msie || opts.forceIframe) \n\t\t? $('<iframe class=\"blockUI\" style=\"z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0\" src=\"'+opts.iframeSrc+'\"></iframe>')\n\t\t: $('<div class=\"blockUI\" style=\"display:none\"></div>');\n\t\n\tvar lyr2 = opts.theme \n\t \t? $('<div class=\"blockUI blockOverlay ui-widget-overlay\" style=\"z-index:'+ (z++) +';display:none\"></div>')\n\t \t: $('<div class=\"blockUI blockOverlay\" style=\"z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0\"></div>');\n\n\tvar lyr3, s;\n\tif (opts.theme && full) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockPage ui-dialog ui-widget ui-corner-all\" style=\"z-index:'+(z+10)+';display:none;position:fixed\">' +\n\t\t\t\t'<div class=\"ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle\">'+(opts.title || '&nbsp;')+'</div>' +\n\t\t\t\t'<div class=\"ui-widget-content ui-dialog-content\"></div>' +\n\t\t\t'</div>';\n\t}\n\telse if (opts.theme) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockElement ui-dialog ui-widget ui-corner-all\" style=\"z-index:'+(z+10)+';display:none;position:absolute\">' +\n\t\t\t\t'<div class=\"ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle\">'+(opts.title || '&nbsp;')+'</div>' +\n\t\t\t\t'<div class=\"ui-widget-content ui-dialog-content\"></div>' +\n\t\t\t'</div>';\n\t}\n\telse if (full) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockPage\" style=\"z-index:'+(z+10)+';display:none;position:fixed\"></div>';\n\t}\t\t\t \n\telse {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockElement\" style=\"z-index:'+(z+10)+';display:none;position:absolute\"></div>';\n\t}\n\tlyr3 = $(s);\n\n\t// if we have a message, style it\n\tif (msg) {\n\t\tif (opts.theme) {\n\t\t\tlyr3.css(themedCSS);\n\t\t\tlyr3.addClass('ui-widget-content');\n\t\t}\n\t\telse \n\t\t\tlyr3.css(css);\n\t}\n\n\t// style the overlay\n\tif (!opts.theme && (!opts.applyPlatformOpacityRules || !($.browser.mozilla && /Linux/.test(navigator.platform))))\n\t\tlyr2.css(opts.overlayCSS);\n\tlyr2.css('position', full ? 'fixed' : 'absolute');\n\n\t// make iframe layer transparent in IE\n\tif ($.browser.msie || opts.forceIframe)\n\t\tlyr1.css('opacity',0.0);\n\n\t//$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el);\n\tvar layers = [lyr1,lyr2,lyr3], $par = full ? $('body') : $(el);\n\t$.each(layers, function() {\n\t\tthis.appendTo($par);\n\t});\n\t\n\tif (opts.theme && opts.draggable && $.fn.draggable) {\n\t\tlyr3.draggable({\n\t\t\thandle: '.ui-dialog-titlebar',\n\t\t\tcancel: 'li'\n\t\t});\n\t}\n\n\t// ie7 must use absolute positioning in quirks mode and to account for activex issues (when scrolling)\n\tvar expr = setExpr && (!$.boxModel || $('object,embed', full ? null : el).length > 0);\n\tif (ie6 || expr) {\n\t\t// give body 100% height\n\t\tif (full && opts.allowBodyStretch && $.boxModel)\n\t\t\t$('html,body').css('height','100%');\n\n\t\t// fix ie6 issue when blocked element has a border width\n\t\tif ((ie6 || !$.boxModel) && !full) {\n\t\t\tvar t = sz(el,'borderTopWidth'), l = sz(el,'borderLeftWidth');\n\t\t\tvar fixT = t ? '(0 - '+t+')' : 0;\n\t\t\tvar fixL = l ? '(0 - '+l+')' : 0;\n\t\t}\n\n\t\t// simulate fixed position\n\t\t$.each([lyr1,lyr2,lyr3], function(i,o) {\n\t\t\tvar s = o[0].style;\n\t\t\ts.position = 'absolute';\n\t\t\tif (i < 2) {\n\t\t\t\tfull ? s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.boxModel?0:'+opts.quirksmodeOffsetHack+') + \"px\"')\n\t\t\t\t\t : s.setExpression('height','this.parentNode.offsetHeight + \"px\"');\n\t\t\t\tfull ? s.setExpression('width','jQuery.boxModel && document.documentElement.clientWidth || document.body.clientWidth + \"px\"')\n\t\t\t\t\t : s.setExpression('width','this.parentNode.offsetWidth + \"px\"');\n\t\t\t\tif (fixL) s.setExpression('left', fixL);\n\t\t\t\tif (fixT) s.setExpression('top', fixT);\n\t\t\t}\n\t\t\telse if (opts.centerY) {\n\t\t\t\tif (full) s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + \"px\"');\n\t\t\t\ts.marginTop = 0;\n\t\t\t}\n\t\t\telse if (!opts.centerY && full) {\n\t\t\t\tvar top = (opts.css && opts.css.top) ? parseInt(opts.css.top) : 0;\n\t\t\t\tvar expression = '((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + \"px\"';\n\t\t\t\ts.setExpression('top',expression);\n\t\t\t}\n\t\t});\n\t}\n\n\t// show the message\n\tif (msg) {\n\t\tif (opts.theme)\n\t\t\tlyr3.find('.ui-widget-content').append(msg);\n\t\telse\n\t\t\tlyr3.append(msg);\n\t\tif (msg.jquery || msg.nodeType)\n\t\t\t$(msg).show();\n\t}\n\n\tif (($.browser.msie || opts.forceIframe) && opts.showOverlay)\n\t\tlyr1.show(); // opacity is zero\n\tif (opts.fadeIn) {\n\t\tvar cb = opts.onBlock ? opts.onBlock : noOp;\n\t\tvar cb1 = (opts.showOverlay && !msg) ? cb : noOp;\n\t\tvar cb2 = msg ? cb : noOp;\n\t\tif (opts.showOverlay)\n\t\t\tlyr2._fadeIn(opts.fadeIn, cb1);\n\t\tif (msg)\n\t\t\tlyr3._fadeIn(opts.fadeIn, cb2);\n\t}\n\telse {\n\t\tif (opts.showOverlay)\n\t\t\tlyr2.show();\n\t\tif (msg)\n\t\t\tlyr3.show();\n\t\tif (opts.onBlock)\n\t\t\topts.onBlock();\n\t}\n\n\t// bind key and mouse events\n\tbind(1, el, opts);\n\n\tif (full) {\n\t\tpageBlock = lyr3[0];\n\t\tpageBlockEls = $(':input:enabled:visible',pageBlock);\n\t\tif (opts.focusInput)\n\t\t\tsetTimeout(focus, 20);\n\t}\n\telse\n\t\tcenter(lyr3[0], opts.centerX, opts.centerY);\n\n\tif (opts.timeout) {\n\t\t// auto-unblock\n\t\tvar to = setTimeout(function() {\n\t\t\tfull ? $.unblockUI(opts) : $(el).unblock(opts);\n\t\t}, opts.timeout);\n\t\t$(el).data('blockUI.timeout', to);\n\t}\n};\n\n// remove the block\nfunction remove(el, opts) {\n\tvar full = (el == window);\n\tvar $el = $(el);\n\tvar data = $el.data('blockUI.history');\n\tvar to = $el.data('blockUI.timeout');\n\tif (to) {\n\t\tclearTimeout(to);\n\t\t$el.removeData('blockUI.timeout');\n\t}\n\topts = $.extend({}, $.blockUI.defaults, opts || {});\n\tbind(0, el, opts); // unbind events\n\n\tif (opts.onUnblock === null) {\n\t\topts.onUnblock = $el.data('blockUI.onUnblock');\n\t\t$el.removeData('blockUI.onUnblock');\n\t}\n\n\tvar els;\n\tif (full) // crazy selector to handle odd field errors in ie6/7\n\t\tels = $('body').children().filter('.blockUI').add('body > .blockUI');\n\telse\n\t\tels = $('.blockUI', el);\n\n\tif (full)\n\t\tpageBlock = pageBlockEls = null;\n\n\tif (opts.fadeOut) {\n\t\tels.fadeOut(opts.fadeOut);\n\t\tsetTimeout(function() { reset(els,data,opts,el); }, opts.fadeOut);\n\t}\n\telse\n\t\treset(els, data, opts, el);\n};\n\n// move blocking element back into the DOM where it started\nfunction reset(els,data,opts,el) {\n\tels.each(function(i,o) {\n\t\t// remove via DOM calls so we don't lose event handlers\n\t\tif (this.parentNode)\n\t\t\tthis.parentNode.removeChild(this);\n\t});\n\n\tif (data && data.el) {\n\t\tdata.el.style.display = data.display;\n\t\tdata.el.style.position = data.position;\n\t\tif (data.parent)\n\t\t\tdata.parent.appendChild(data.el);\n\t\t$(el).removeData('blockUI.history');\n\t}\n\n\tif (typeof opts.onUnblock == 'function')\n\t\topts.onUnblock(el,opts);\n};\n\n// bind/unbind the handler\nfunction bind(b, el, opts) {\n\tvar full = el == window, $el = $(el);\n\n\t// don't bother unbinding if there is nothing to unbind\n\tif (!b && (full && !pageBlock || !full && !$el.data('blockUI.isBlocked')))\n\t\treturn;\n\tif (!full)\n\t\t$el.data('blockUI.isBlocked', b);\n\n\t// don't bind events when overlay is not in use or if bindEvents is false\n\tif (!opts.bindEvents || (b && !opts.showOverlay)) \n\t\treturn;\n\n\t// bind anchors and inputs for mouse and key events\n\tvar events = 'mousedown mouseup keydown keypress';\n\tb ? $(document).bind(events, opts, handler) : $(document).unbind(events, handler);\n\n// former impl...\n//\t   var $e = $('a,:input');\n//\t   b ? $e.bind(events, opts, handler) : $e.unbind(events, handler);\n};\n\n// event handler to suppress keyboard/mouse events when blocking\nfunction handler(e) {\n\t// allow tab navigation (conditionally)\n\tif (e.keyCode && e.keyCode == 9) {\n\t\tif (pageBlock && e.data.constrainTabKey) {\n\t\t\tvar els = pageBlockEls;\n\t\t\tvar fwd = !e.shiftKey && e.target === els[els.length-1];\n\t\t\tvar back = e.shiftKey && e.target === els[0];\n\t\t\tif (fwd || back) {\n\t\t\t\tsetTimeout(function(){focus(back)},10);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t}\n\tvar opts = e.data;\n\t// allow events within the message content\n\tif ($(e.target).parents('div.' + opts.blockMsgClass).length > 0)\n\t\treturn true;\n\n\t// allow events for content that is not being blocked\n\treturn $(e.target).parents().children().filter('div.blockUI').length == 0;\n};\n\nfunction focus(back) {\n\tif (!pageBlockEls)\n\t\treturn;\n\tvar e = pageBlockEls[back===true ? pageBlockEls.length-1 : 0];\n\tif (e)\n\t\te.focus();\n};\n\nfunction center(el, x, y) {\n\tvar p = el.parentNode, s = el.style;\n\tvar l = ((p.offsetWidth - el.offsetWidth)/2) - sz(p,'borderLeftWidth');\n\tvar t = ((p.offsetHeight - el.offsetHeight)/2) - sz(p,'borderTopWidth');\n\tif (x) s.left = l > 0 ? (l+'px') : '0';\n\tif (y) s.top  = t > 0 ? (t+'px') : '0';\n};\n\nfunction sz(el, p) {\n\treturn parseInt($.css(el,p))||0;\n};\n\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/jquery.cookie.js",
    "content": "/*!\n * jQuery Cookie Plugin\n * https://github.com/carhartl/jquery-cookie\n *\n * Copyright 2011, Klaus Hartl\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.opensource.org/licenses/GPL-2.0\n */\n(function($) {\n    $.cookie = function(key, value, options) {\n\n        // key and at least value given, set cookie...\n        if (arguments.length > 1 && (!/Object/.test(Object.prototype.toString.call(value)) || value === null || value === undefined)) {\n            options = $.extend({}, options);\n\n            if (value === null || value === undefined) {\n                options.expires = -1;\n            }\n\n            if (typeof options.expires === 'number') {\n                var days = options.expires, t = options.expires = new Date();\n                t.setDate(t.getDate() + days);\n            }\n\n            value = String(value);\n\n            return (document.cookie = [\n                encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value),\n                options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE\n                options.path    ? '; path=' + options.path : '',\n                options.domain  ? '; domain=' + options.domain : '',\n                options.secure  ? '; secure' : ''\n            ].join(''));\n        }\n\n        // key and possibly options given, get cookie...\n        options = value || {};\n        var decode = options.raw ? function(s) { return s; } : decodeURIComponent;\n\n        var pairs = document.cookie.split('; ');\n        for (var i = 0, pair; pair = pairs[i] && pairs[i].split('='); i++) {\n            if (decode(pair[0]) === key) return decode(pair[1] || ''); // IE saves cookies with empty string as \"c; \", e.g. without \"=\" as opposed to EOMB, thus pair[1] may be undefined\n        }\n        return null;\n    };\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/jquery.form.js",
    "content": "/*!\n * jQuery Form Plugin\n * version: 2.47 (04-SEP-2010)\n * @requires jQuery v1.3.2 or later\n *\n * Examples and documentation at: http://malsup.com/jquery/form/\n * Dual licensed under the MIT and GPL licenses:\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n */\n\n;(function($) {\n\n/*\n\tUsage Note:\n\t-----------\n\tDo not use both ajaxSubmit and ajaxForm on the same form.  These\n\tfunctions are intended to be exclusive.  Use ajaxSubmit if you want\n\tto bind your own submit handler to the form.  For example,\n\n\t$(document).ready(function() {\n\t\t$('#myForm').bind('submit', function() {\n\t\t\t$(this).ajaxSubmit({\n\t\t\t\ttarget: '#output'\n\t\t\t});\n\t\t\treturn false; // <-- important!\n\t\t});\n\t});\n\n\tUse ajaxForm when you want the plugin to manage all the event binding\n\tfor you.  For example,\n\n\t$(document).ready(function() {\n\t\t$('#myForm').ajaxForm({\n\t\t\ttarget: '#output'\n\t\t});\n\t});\n\n\tWhen using ajaxForm, the ajaxSubmit function will be invoked for you\n\tat the appropriate time.\n*/\n\n/**\n * ajaxSubmit() provides a mechanism for immediately submitting\n * an HTML form using AJAX.\n */\n$.fn.ajaxSubmit = function(options) {\n\t// fast fail if nothing selected (http://dev.jquery.com/ticket/2752)\n\tif (!this.length) {\n\t\tlog('ajaxSubmit: skipping submit process - no element selected');\n\t\treturn this;\n\t}\n\n\tif (typeof options == 'function') {\n\t\toptions = { success: options };\n\t}\n\n\tvar url = $.trim(this.attr('action'));\n\tif (url) {\n\t\t// clean url (don't include hash vaue)\n\t\turl = (url.match(/^([^#]+)/)||[])[1];\n\t}\n\turl = url || window.location.href || '';\n\n\toptions = $.extend(true, {\n\t\turl:  url,\n\t\ttype: this.attr('method') || 'GET',\n\t\tiframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'\n\t}, options);\n\n\t// hook for manipulating the form data before it is extracted;\n\t// convenient for use with rich editors like tinyMCE or FCKEditor\n\tvar veto = {};\n\tthis.trigger('form-pre-serialize', [this, options, veto]);\n\tif (veto.veto) {\n\t\tlog('ajaxSubmit: submit vetoed via form-pre-serialize trigger');\n\t\treturn this;\n\t}\n\n\t// provide opportunity to alter form data before it is serialized\n\tif (options.beforeSerialize && options.beforeSerialize(this, options) === false) {\n\t\tlog('ajaxSubmit: submit aborted via beforeSerialize callback');\n\t\treturn this;\n\t}\n\n\tvar n,v,a = this.formToArray(options.semantic);\n\tif (options.data) {\n\t\toptions.extraData = options.data;\n\t\tfor (n in options.data) {\n\t\t\tif(options.data[n] instanceof Array) {\n\t\t\t\tfor (var k in options.data[n]) {\n\t\t\t\t\ta.push( { name: n, value: options.data[n][k] } );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tv = options.data[n];\n\t\t\t\tv = $.isFunction(v) ? v() : v; // if value is fn, invoke it\n\t\t\t\ta.push( { name: n, value: v } );\n\t\t\t}\n\t\t}\n\t}\n\n\t// give pre-submit callback an opportunity to abort the submit\n\tif (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {\n\t\tlog('ajaxSubmit: submit aborted via beforeSubmit callback');\n\t\treturn this;\n\t}\n\n\t// fire vetoable 'validate' event\n\tthis.trigger('form-submit-validate', [a, this, options, veto]);\n\tif (veto.veto) {\n\t\tlog('ajaxSubmit: submit vetoed via form-submit-validate trigger');\n\t\treturn this;\n\t}\n\n\tvar q = $.param(a);\n\n\tif (options.type.toUpperCase() == 'GET') {\n\t\toptions.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;\n\t\toptions.data = null;  // data is null for 'get'\n\t}\n\telse {\n\t\toptions.data = q; // data is the query string for 'post'\n\t}\n\n\tvar $form = this, callbacks = [];\n\tif (options.resetForm) {\n\t\tcallbacks.push(function() { $form.resetForm(); });\n\t}\n\tif (options.clearForm) {\n\t\tcallbacks.push(function() { $form.clearForm(); });\n\t}\n\n\t// perform a load on the target only if dataType is not provided\n\tif (!options.dataType && options.target) {\n\t\tvar oldSuccess = options.success || function(){};\n\t\tcallbacks.push(function(data) {\n\t\t\tvar fn = options.replaceTarget ? 'replaceWith' : 'html';\n\t\t\t$(options.target)[fn](data).each(oldSuccess, arguments);\n\t\t});\n\t}\n\telse if (options.success) {\n\t\tcallbacks.push(options.success);\n\t}\n\n\toptions.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg\n\t\tvar context = options.context || options;   // jQuery 1.4+ supports scope context \n\t\tfor (var i=0, max=callbacks.length; i < max; i++) {\n\t\t\tcallbacks[i].apply(context, [data, status, xhr || $form, $form]);\n\t\t}\n\t};\n\n\t// are there files to upload?\n\tvar fileInputs = $('input:file', this).length > 0;\n\tvar mp = 'multipart/form-data';\n\tvar multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);\n\n\t// options.iframe allows user to force iframe mode\n\t// 06-NOV-09: now defaulting to iframe mode if file input is detected\n   if (options.iframe !== false && (fileInputs || options.iframe || multipart)) {\n\t   // hack to fix Safari hang (thanks to Tim Molendijk for this)\n\t   // see:  http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d\n\t   if (options.closeKeepAlive) {\n\t\t   $.get(options.closeKeepAlive, fileUpload);\n\t\t}\n\t   else {\n\t\t   fileUpload();\n\t\t}\n   }\n   else {\n\t   $.ajax(options);\n   }\n\n\t// fire 'notify' event\n\tthis.trigger('form-submit-notify', [this, options]);\n\treturn this;\n\n\n\t// private function for handling file uploads (hat tip to YAHOO!)\n\tfunction fileUpload() {\n\t\tvar form = $form[0];\n\n\t\tif ($(':input[name=submit],:input[id=submit]', form).length) {\n\t\t\t// if there is an input with a name or id of 'submit' then we won't be\n\t\t\t// able to invoke the submit fn on the form (at least not x-browser)\n\t\t\talert('Error: Form elements must not have name or id of \"submit\".');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tvar s = $.extend(true, {}, $.ajaxSettings, options);\n\t\ts.context = s.context || s;\n\t\tvar id = 'jqFormIO' + (new Date().getTime()), fn = '_'+id;\n\t\twindow[fn] = function() {\n\t\t\tvar f = $io.data('form-plugin-onload');\n\t\t\tif (f) {\n\t\t\t\tf();\n\t\t\t\twindow[fn] = undefined;\n\t\t\t\ttry { delete window[fn]; } catch(e){}\n\t\t\t}\n\t\t}\n\t\tvar $io = $('<iframe id=\"' + id + '\" name=\"' + id + '\" src=\"'+ s.iframeSrc +'\" onload=\"window[\\'_\\'+this.id]()\" />');\n\t\tvar io = $io[0];\n\n\t\t$io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });\n\n\t\tvar xhr = { // mock object\n\t\t\taborted: 0,\n\t\t\tresponseText: null,\n\t\t\tresponseXML: null,\n\t\t\tstatus: 0,\n\t\t\tstatusText: 'n/a',\n\t\t\tgetAllResponseHeaders: function() {},\n\t\t\tgetResponseHeader: function() {},\n\t\t\tsetRequestHeader: function() {},\n\t\t\tabort: function() {\n\t\t\t\tthis.aborted = 1;\n\t\t\t\t$io.attr('src', s.iframeSrc); // abort op in progress\n\t\t\t}\n\t\t};\n\n\t\tvar g = s.global;\n\t\t// trigger ajax global events so that activity/block indicators work like normal\n\t\tif (g && ! $.active++) {\n\t\t\t$.event.trigger(\"ajaxStart\");\n\t\t}\n\t\tif (g) {\n\t\t\t$.event.trigger(\"ajaxSend\", [xhr, s]);\n\t\t}\n\n\t\tif (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {\n\t\t\tif (s.global) { \n\t\t\t\t$.active--;\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tif (xhr.aborted) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar cbInvoked = false;\n\t\tvar timedOut = 0;\n\n\t\t// add submitting element to data if we know it\n\t\tvar sub = form.clk;\n\t\tif (sub) {\n\t\t\tvar n = sub.name;\n\t\t\tif (n && !sub.disabled) {\n\t\t\t\ts.extraData = s.extraData || {};\n\t\t\t\ts.extraData[n] = sub.value;\n\t\t\t\tif (sub.type == \"image\") {\n\t\t\t\t\ts.extraData[n+'.x'] = form.clk_x;\n\t\t\t\t\ts.extraData[n+'.y'] = form.clk_y;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// take a breath so that pending repaints get some cpu time before the upload starts\n\t\tfunction doSubmit() {\n\t\t\t// make sure form attrs are set\n\t\t\tvar t = $form.attr('target'), a = $form.attr('action');\n\n\t\t\t// update form attrs in IE friendly way\n\t\t\tform.setAttribute('target',id);\n\t\t\tif (form.getAttribute('method') != 'POST') {\n\t\t\t\tform.setAttribute('method', 'POST');\n\t\t\t}\n\t\t\tif (form.getAttribute('action') != s.url) {\n\t\t\t\tform.setAttribute('action', s.url);\n\t\t\t}\n\n\t\t\t// ie borks in some cases when setting encoding\n\t\t\tif (! s.skipEncodingOverride) {\n\t\t\t\t$form.attr({\n\t\t\t\t\tencoding: 'multipart/form-data',\n\t\t\t\t\tenctype:  'multipart/form-data'\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// support timout\n\t\t\tif (s.timeout) {\n\t\t\t\tsetTimeout(function() { timedOut = true; cb(); }, s.timeout);\n\t\t\t}\n\n\t\t\t// add \"extra\" data to form if provided in options\n\t\t\tvar extraInputs = [];\n\t\t\ttry {\n\t\t\t\tif (s.extraData) {\n\t\t\t\t\tfor (var n in s.extraData) {\n\t\t\t\t\t\textraInputs.push(\n\t\t\t\t\t\t\t$('<input type=\"hidden\" name=\"'+n+'\" value=\"'+s.extraData[n]+'\" />')\n\t\t\t\t\t\t\t\t.appendTo(form)[0]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// add iframe to doc and submit the form\n\t\t\t\t$io.appendTo('body');\n\t\t\t\t$io.data('form-plugin-onload', cb);\n\t\t\t\tform.submit();\n\t\t\t}\n\t\t\tfinally {\n\t\t\t\t// reset attrs and remove \"extra\" input elements\n\t\t\t\tform.setAttribute('action',a);\n\t\t\t\tif(t) {\n\t\t\t\t\tform.setAttribute('target', t);\n\t\t\t\t} else {\n\t\t\t\t\t$form.removeAttr('target');\n\t\t\t\t}\n\t\t\t\t$(extraInputs).remove();\n\t\t\t}\n\t\t}\n\n\t\tif (s.forceSync) {\n\t\t\tdoSubmit();\n\t\t}\n\t\telse {\n\t\t\tsetTimeout(doSubmit, 10); // this lets dom updates render\n\t\t}\n\t\n\t\tvar data, doc, domCheckCount = 50;\n\n\t\tfunction cb() {\n\t\t\tif (cbInvoked) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$io.removeData('form-plugin-onload');\n\t\t\t\n\t\t\tvar ok = true;\n\t\t\ttry {\n\t\t\t\tif (timedOut) {\n\t\t\t\t\tthrow 'timeout';\n\t\t\t\t}\n\t\t\t\t// extract the server response from the iframe\n\t\t\t\tdoc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;\n\t\t\t\t\n\t\t\t\tvar isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);\n\t\t\t\tlog('isXml='+isXml);\n\t\t\t\tif (!isXml && window.opera && (doc.body == null || doc.body.innerHTML == '')) {\n\t\t\t\t\tif (--domCheckCount) {\n\t\t\t\t\t\t// in some browsers (Opera) the iframe DOM is not always traversable when\n\t\t\t\t\t\t// the onload callback fires, so we loop a bit to accommodate\n\t\t\t\t\t\tlog('requeing onLoad callback, DOM not available');\n\t\t\t\t\t\tsetTimeout(cb, 250);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t// let this fall through because server response could be an empty document\n\t\t\t\t\t//log('Could not access iframe DOM after mutiple tries.');\n\t\t\t\t\t//throw 'DOMException: not available';\n\t\t\t\t}\n\n\t\t\t\t//log('response detected');\n\t\t\t\tcbInvoked = true;\n\t\t\t\txhr.responseText = doc.documentElement ? doc.documentElement.innerHTML : null; \n\t\t\t\txhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;\n\t\t\t\txhr.getResponseHeader = function(header){\n\t\t\t\t\tvar headers = {'content-type': s.dataType};\n\t\t\t\t\treturn headers[header];\n\t\t\t\t};\n\n\t\t\t\tvar scr = /(json|script)/.test(s.dataType);\n\t\t\t\tif (scr || s.textarea) {\n\t\t\t\t\t// see if user embedded response in textarea\n\t\t\t\t\tvar ta = doc.getElementsByTagName('textarea')[0];\n\t\t\t\t\tif (ta) {\n\t\t\t\t\t\txhr.responseText = ta.value;\n\t\t\t\t\t}\n\t\t\t\t\telse if (scr) {\n\t\t\t\t\t\t// account for browsers injecting pre around json response\n\t\t\t\t\t\tvar pre = doc.getElementsByTagName('pre')[0];\n\t\t\t\t\t\tif (pre) {\n\t\t\t\t\t\t\txhr.responseText = pre.innerHTML;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\t\t\t  \n\t\t\t\t}\n\t\t\t\telse if (s.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {\n\t\t\t\t\txhr.responseXML = toXml(xhr.responseText);\n\t\t\t\t}\n\t\t\t\tdata = $.httpData(xhr, s.dataType);\n\t\t\t}\n\t\t\tcatch(e){\n\t\t\t\tlog('error caught:',e);\n\t\t\t\tok = false;\n\t\t\t\txhr.error = e;\n\t\t\t\t$.handleError(s, xhr, 'error', e);\n\t\t\t}\n\n\t\t\t// ordering of these callbacks/triggers is odd, but that's how $.ajax does it\n\t\t\tif (ok) {\n\t\t\t\ts.success.call(s.context, data, 'success', xhr);\n\t\t\t\tif (g) {\n\t\t\t\t\t$.event.trigger(\"ajaxSuccess\", [xhr, s]);\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (g) {\n\t\t\t\t$.event.trigger(\"ajaxComplete\", [xhr, s]);\n\t\t\t}\n\t\t\tif (g && ! --$.active) {\n\t\t\t\t$.event.trigger(\"ajaxStop\");\n\t\t\t}\n\t\t\tif (s.complete) {\n\t\t\t\ts.complete.call(s.context, xhr, ok ? 'success' : 'error');\n\t\t\t}\n\n\t\t\t// clean up\n\t\t\tsetTimeout(function() {\n\t\t\t\t$io.removeData('form-plugin-onload');\n\t\t\t\t$io.remove();\n\t\t\t\txhr.responseXML = null;\n\t\t\t}, 100);\n\t\t}\n\n\t\tfunction toXml(s, doc) {\n\t\t\tif (window.ActiveXObject) {\n\t\t\t\tdoc = new ActiveXObject('Microsoft.XMLDOM');\n\t\t\t\tdoc.async = 'false';\n\t\t\t\tdoc.loadXML(s);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdoc = (new DOMParser()).parseFromString(s, 'text/xml');\n\t\t\t}\n\t\t\treturn (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;\n\t\t}\n\t}\n};\n\n/**\n * ajaxForm() provides a mechanism for fully automating form submission.\n *\n * The advantages of using this method instead of ajaxSubmit() are:\n *\n * 1: This method will include coordinates for <input type=\"image\" /> elements (if the element\n *\tis used to submit the form).\n * 2. This method will include the submit element's name/value data (for the element that was\n *\tused to submit the form).\n * 3. This method binds the submit() method to the form for you.\n *\n * The options argument for ajaxForm works exactly as it does for ajaxSubmit.  ajaxForm merely\n * passes the options argument along after properly binding events for submit elements and\n * the form itself.\n */\n$.fn.ajaxForm = function(options) {\n\t// in jQuery 1.3+ we can fix mistakes with the ready state\n\tif (this.length === 0) {\n\t\tvar o = { s: this.selector, c: this.context };\n\t\tif (!$.isReady && o.s) {\n\t\t\tlog('DOM not ready, queuing ajaxForm');\n\t\t\t$(function() {\n\t\t\t\t$(o.s,o.c).ajaxForm(options);\n\t\t\t});\n\t\t\treturn this;\n\t\t}\n\t\t// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()\n\t\tlog('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));\n\t\treturn this;\n\t}\n\t\n\treturn this.ajaxFormUnbind().bind('submit.form-plugin', function(e) {\n\t\tif (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed\n\t\t\te.preventDefault();\n\t\t\t$(this).ajaxSubmit(options);\n\t\t}\n\t}).bind('click.form-plugin', function(e) {\n\t\tvar target = e.target;\n\t\tvar $el = $(target);\n\t\tif (!($el.is(\":submit,input:image\"))) {\n\t\t\t// is this a child element of the submit el?  (ex: a span within a button)\n\t\t\tvar t = $el.closest(':submit');\n\t\t\tif (t.length == 0) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\ttarget = t[0];\n\t\t}\n\t\tvar form = this;\n\t\tform.clk = target;\n\t\tif (target.type == 'image') {\n\t\t\tif (e.offsetX != undefined) {\n\t\t\t\tform.clk_x = e.offsetX;\n\t\t\t\tform.clk_y = e.offsetY;\n\t\t\t} else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin\n\t\t\t\tvar offset = $el.offset();\n\t\t\t\tform.clk_x = e.pageX - offset.left;\n\t\t\t\tform.clk_y = e.pageY - offset.top;\n\t\t\t} else {\n\t\t\t\tform.clk_x = e.pageX - target.offsetLeft;\n\t\t\t\tform.clk_y = e.pageY - target.offsetTop;\n\t\t\t}\n\t\t}\n\t\t// clear form vars\n\t\tsetTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);\n\t});\n};\n\n// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm\n$.fn.ajaxFormUnbind = function() {\n\treturn this.unbind('submit.form-plugin click.form-plugin');\n};\n\n/**\n * formToArray() gathers form element data into an array of objects that can\n * be passed to any of the following ajax functions: $.get, $.post, or load.\n * Each object in the array has both a 'name' and 'value' property.  An example of\n * an array for a simple login form might be:\n *\n * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]\n *\n * It is this array that is passed to pre-submit callback functions provided to the\n * ajaxSubmit() and ajaxForm() methods.\n */\n$.fn.formToArray = function(semantic) {\n\tvar a = [];\n\tif (this.length === 0) {\n\t\treturn a;\n\t}\n\n\tvar form = this[0];\n\tvar els = semantic ? form.getElementsByTagName('*') : form.elements;\n\tif (!els) {\n\t\treturn a;\n\t}\n\t\n\tvar i,j,n,v,el;\n\tfor(i=0, max=els.length; i < max; i++) {\n\t\tel = els[i];\n\t\tn = el.name;\n\t\tif (!n) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (semantic && form.clk && el.type == \"image\") {\n\t\t\t// handle image inputs on the fly when semantic == true\n\t\t\tif(!el.disabled && form.clk == el) {\n\t\t\t\ta.push({name: n, value: $(el).val()});\n\t\t\t\ta.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tv = $.fieldValue(el, true);\n\t\tif (v && v.constructor == Array) {\n\t\t\tfor(j=0, jmax=v.length; j < jmax; j++) {\n\t\t\t\ta.push({name: n, value: v[j]});\n\t\t\t}\n\t\t}\n\t\telse if (v !== null && typeof v != 'undefined') {\n\t\t\ta.push({name: n, value: v});\n\t\t}\n\t}\n\n\tif (!semantic && form.clk) {\n\t\t// input type=='image' are not found in elements array! handle it here\n\t\tvar $input = $(form.clk), input = $input[0];\n\t\tn = input.name;\n\t\tif (n && !input.disabled && input.type == 'image') {\n\t\t\ta.push({name: n, value: $input.val()});\n\t\t\ta.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});\n\t\t}\n\t}\n\treturn a;\n};\n\n/**\n * Serializes form data into a 'submittable' string. This method will return a string\n * in the format: name1=value1&amp;name2=value2\n */\n$.fn.formSerialize = function(semantic) {\n\t//hand off to jQuery.param for proper encoding\n\treturn $.param(this.formToArray(semantic));\n};\n\n/**\n * Serializes all field elements in the jQuery object into a query string.\n * This method will return a string in the format: name1=value1&amp;name2=value2\n */\n$.fn.fieldSerialize = function(successful) {\n\tvar a = [];\n\tthis.each(function() {\n\t\tvar n = this.name;\n\t\tif (!n) {\n\t\t\treturn;\n\t\t}\n\t\tvar v = $.fieldValue(this, successful);\n\t\tif (v && v.constructor == Array) {\n\t\t\tfor (var i=0,max=v.length; i < max; i++) {\n\t\t\t\ta.push({name: n, value: v[i]});\n\t\t\t}\n\t\t}\n\t\telse if (v !== null && typeof v != 'undefined') {\n\t\t\ta.push({name: this.name, value: v});\n\t\t}\n\t});\n\t//hand off to jQuery.param for proper encoding\n\treturn $.param(a);\n};\n\n/**\n * Returns the value(s) of the element in the matched set.  For example, consider the following form:\n *\n *  <form><fieldset>\n *\t  <input name=\"A\" type=\"text\" />\n *\t  <input name=\"A\" type=\"text\" />\n *\t  <input name=\"B\" type=\"checkbox\" value=\"B1\" />\n *\t  <input name=\"B\" type=\"checkbox\" value=\"B2\"/>\n *\t  <input name=\"C\" type=\"radio\" value=\"C1\" />\n *\t  <input name=\"C\" type=\"radio\" value=\"C2\" />\n *  </fieldset></form>\n *\n *  var v = $(':text').fieldValue();\n *  // if no values are entered into the text inputs\n *  v == ['','']\n *  // if values entered into the text inputs are 'foo' and 'bar'\n *  v == ['foo','bar']\n *\n *  var v = $(':checkbox').fieldValue();\n *  // if neither checkbox is checked\n *  v === undefined\n *  // if both checkboxes are checked\n *  v == ['B1', 'B2']\n *\n *  var v = $(':radio').fieldValue();\n *  // if neither radio is checked\n *  v === undefined\n *  // if first radio is checked\n *  v == ['C1']\n *\n * The successful argument controls whether or not the field element must be 'successful'\n * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).\n * The default value of the successful argument is true.  If this value is false the value(s)\n * for each element is returned.\n *\n * Note: This method *always* returns an array.  If no valid value can be determined the\n *\t   array will be empty, otherwise it will contain one or more values.\n */\n$.fn.fieldValue = function(successful) {\n\tfor (var val=[], i=0, max=this.length; i < max; i++) {\n\t\tvar el = this[i];\n\t\tvar v = $.fieldValue(el, successful);\n\t\tif (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) {\n\t\t\tcontinue;\n\t\t}\n\t\tv.constructor == Array ? $.merge(val, v) : val.push(v);\n\t}\n\treturn val;\n};\n\n/**\n * Returns the value of the field element.\n */\n$.fieldValue = function(el, successful) {\n\tvar n = el.name, t = el.type, tag = el.tagName.toLowerCase();\n\tif (successful === undefined) {\n\t\tsuccessful = true;\n\t}\n\n\tif (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||\n\t\t(t == 'checkbox' || t == 'radio') && !el.checked ||\n\t\t(t == 'submit' || t == 'image') && el.form && el.form.clk != el ||\n\t\ttag == 'select' && el.selectedIndex == -1)) {\n\t\t\treturn null;\n\t}\n\n\tif (tag == 'select') {\n\t\tvar index = el.selectedIndex;\n\t\tif (index < 0) {\n\t\t\treturn null;\n\t\t}\n\t\tvar a = [], ops = el.options;\n\t\tvar one = (t == 'select-one');\n\t\tvar max = (one ? index+1 : ops.length);\n\t\tfor(var i=(one ? index : 0); i < max; i++) {\n\t\t\tvar op = ops[i];\n\t\t\tif (op.selected) {\n\t\t\t\tvar v = op.value;\n\t\t\t\tif (!v) { // extra pain for IE...\n\t\t\t\t\tv = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;\n\t\t\t\t}\n\t\t\t\tif (one) {\n\t\t\t\t\treturn v;\n\t\t\t\t}\n\t\t\t\ta.push(v);\n\t\t\t}\n\t\t}\n\t\treturn a;\n\t}\n\treturn $(el).val();\n};\n\n/**\n * Clears the form data.  Takes the following actions on the form's input fields:\n *  - input text fields will have their 'value' property set to the empty string\n *  - select elements will have their 'selectedIndex' property set to -1\n *  - checkbox and radio inputs will have their 'checked' property set to false\n *  - inputs of type submit, button, reset, and hidden will *not* be effected\n *  - button elements will *not* be effected\n */\n$.fn.clearForm = function() {\n\treturn this.each(function() {\n\t\t$('input,select,textarea', this).clearFields();\n\t});\n};\n\n/**\n * Clears the selected form elements.\n */\n$.fn.clearFields = $.fn.clearInputs = function() {\n\treturn this.each(function() {\n\t\tvar t = this.type, tag = this.tagName.toLowerCase();\n\t\tif (t == 'text' || t == 'password' || tag == 'textarea') {\n\t\t\tthis.value = '';\n\t\t}\n\t\telse if (t == 'checkbox' || t == 'radio') {\n\t\t\tthis.checked = false;\n\t\t}\n\t\telse if (tag == 'select') {\n\t\t\tthis.selectedIndex = -1;\n\t\t}\n\t});\n};\n\n/**\n * Resets the form data.  Causes all form elements to be reset to their original value.\n */\n$.fn.resetForm = function() {\n\treturn this.each(function() {\n\t\t// guard against an input with the name of 'reset'\n\t\t// note that IE reports the reset function as an 'object'\n\t\tif (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) {\n\t\t\tthis.reset();\n\t\t}\n\t});\n};\n\n/**\n * Enables or disables any matching elements.\n */\n$.fn.enable = function(b) {\n\tif (b === undefined) {\n\t\tb = true;\n\t}\n\treturn this.each(function() {\n\t\tthis.disabled = !b;\n\t});\n};\n\n/**\n * Checks/unchecks any matching checkboxes or radio buttons and\n * selects/deselects and matching option elements.\n */\n$.fn.selected = function(select) {\n\tif (select === undefined) {\n\t\tselect = true;\n\t}\n\treturn this.each(function() {\n\t\tvar t = this.type;\n\t\tif (t == 'checkbox' || t == 'radio') {\n\t\t\tthis.checked = select;\n\t\t}\n\t\telse if (this.tagName.toLowerCase() == 'option') {\n\t\t\tvar $sel = $(this).parent('select');\n\t\t\tif (select && $sel[0] && $sel[0].type == 'select-one') {\n\t\t\t\t// deselect all other options\n\t\t\t\t$sel.find('option').selected(false);\n\t\t\t}\n\t\t\tthis.selected = select;\n\t\t}\n\t});\n};\n\n// helper fn for console logging\n// set $.fn.ajaxSubmit.debug to true to enable debug logging\nfunction log() {\n\tif ($.fn.ajaxSubmit.debug) {\n\t\tvar msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');\n\t\tif (window.console && window.console.log) {\n\t\t\twindow.console.log(msg);\n\t\t}\n\t\telse if (window.opera && window.opera.postError) {\n\t\t\twindow.opera.postError(msg);\n\t\t}\n\t}\n};\n\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/jquery.jstree.js",
    "content": "/*\n * jsTree 1.0-rc1\n * http://jstree.com/\n *\n * Copyright (c) 2010 Ivan Bozhanov (vakata.com)\n *\n * Dual licensed under the MIT and GPL licenses (same as jQuery):\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n *\n * $Date: 2010-07-01 10:51:11 +0300 (четв, 01 юли 2010) $\n * $Revision: 191 $\n */\n\n/*jslint browser: true, onevar: true, undef: true, bitwise: true, strict: true */\n/*global window : false, clearInterval: false, clearTimeout: false, document: false, setInterval: false, setTimeout: false, jQuery: false, navigator: false, XSLTProcessor: false, DOMParser: false, XMLSerializer: false*/\n\n\"use strict\";\n// Common functions not related to jsTree \n// decided to move them to a `vakata` \"namespace\"\n(function ($) {\n\t$.vakata = {};\n\t// CSS related functions\n\t$.vakata.css = {\n\t\tget_css : function(rule_name, delete_flag, sheet) {\n\t\t\trule_name = rule_name.toLowerCase();\n\t\t\tvar css_rules = sheet.cssRules || sheet.rules,\n\t\t\t\tj = 0;\n\t\t\tdo {\n\t\t\t\tif(css_rules.length && j > css_rules.length + 5) { return false; }\n\t\t\t\tif(css_rules[j].selectorText && css_rules[j].selectorText.toLowerCase() == rule_name) {\n\t\t\t\t\tif(delete_flag === true) {\n\t\t\t\t\t\tif(sheet.removeRule) { sheet.removeRule(j); }\n\t\t\t\t\t\tif(sheet.deleteRule) { sheet.deleteRule(j); }\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t\telse { return css_rules[j]; }\n\t\t\t\t}\n\t\t\t}\n\t\t\twhile (css_rules[++j]);\n\t\t\treturn false;\n\t\t},\n\t\tadd_css : function(rule_name, sheet) {\n\t\t\tif($.jstree.css.get_css(rule_name, false, sheet)) { return false; }\n\t\t\tif(sheet.insertRule) { sheet.insertRule(rule_name + ' { }', 0); } else { sheet.addRule(rule_name, null, 0); }\n\t\t\treturn $.vakata.css.get_css(rule_name);\n\t\t},\n\t\tremove_css : function(rule_name, sheet) { \n\t\t\treturn $.vakata.css.get_css(rule_name, true, sheet); \n\t\t},\n\t\tadd_sheet : function(opts) {\n\t\t\tvar tmp;\n\t\t\tif(opts.str) {\n\t\t\t\ttmp = document.createElement(\"style\");\n\t\t\t\ttmp.setAttribute('type',\"text/css\");\n\t\t\t\tif(tmp.styleSheet) {\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t\ttmp.styleSheet.cssText = opts.str;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\ttmp.appendChild(document.createTextNode(opts.str));\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t}\n\t\t\t\treturn tmp.sheet || tmp.styleSheet;\n\t\t\t}\n\t\t\tif(opts.url) {\n\t\t\t\tif(document.createStyleSheet) {\n\t\t\t\t\ttry { tmp = document.createStyleSheet(opts.url); } catch (e) { }\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\ttmp\t\t\t= document.createElement('link');\n\t\t\t\t\ttmp.rel\t\t= 'stylesheet';\n\t\t\t\t\ttmp.type\t= 'text/css';\n\t\t\t\t\ttmp.media\t= \"all\";\n\t\t\t\t\ttmp.href\t= opts.url;\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t\treturn tmp.styleSheet;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n})(jQuery);\n\n/* \n * jsTree core 1.0\n */\n(function ($) {\n\t// private variables \n\tvar instances = [],\t\t\t// instance array (used by $.jstree.reference/create/focused)\n\t\tfocused_instance = -1,\t// the index in the instance array of the currently focused instance\n\t\tplugins = {},\t\t\t// list of included plugins\n\t\tprepared_move = {},\t\t// for the move plugin\n\t\tis_ie6 = false;\n\n\t// jQuery plugin wrapper (thanks to jquery UI widget function)\n\t$.fn.jstree = function (settings) {\n\t\tvar isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree(\"open_node\")\n\t\t\targs = Array.prototype.slice.call(arguments, 1), \n\t\t\treturnValue = this;\n\n\t\t// extend settings and allow for multiple hashes and metadata\n\t\tif(!isMethodCall && $.meta) { args.push($.metadata.get(this).jstree); }\n\t\tsettings = !isMethodCall && args.length ? $.extend.apply(null, [true, settings].concat(args)) : settings;\n\t\t// block calls to \"private\" methods\n\t\tif(isMethodCall && settings.substring(0, 1) == '_') { return returnValue; }\n\n\t\t// if a method call execute the method on all selected instances\n\t\tif(isMethodCall) {\n\t\t\tthis.each(function() {\n\t\t\t\tvar instance = instances[$.data(this, \"jstree-instance-id\")],\n\t\t\t\t\tmethodValue = (instance && $.isFunction(instance[settings])) ? instance[settings].apply(instance, args) : instance;\n\t\t\t\t\tif(typeof methodValue !== \"undefined\" && (settings.indexOf(\"is_\" === 0) || (methodValue !== true && methodValue !== false))) { returnValue = methodValue; return false; }\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tthis.each(function() {\n\t\t\t\tvar instance_id = $.data(this, \"jstree-instance-id\"),\n\t\t\t\t\ts = false;\n\t\t\t\t// if an instance already exists, destroy it first\n\t\t\t\tif(typeof instance_id !== \"undefined\" && instances[instance_id]) { instances[instance_id].destroy(); }\n\t\t\t\t// push a new empty object to the instances array\n\t\t\t\tinstance_id = parseInt(instances.push({}),10) - 1;\n\t\t\t\t// store the jstree instance id to the container element\n\t\t\t\t$.data(this, \"jstree-instance-id\", instance_id);\n\t\t\t\t// clean up all plugins\n\t\t\t\tif(!settings) { settings = {}; }\n\t\t\t\tsettings.plugins = $.isArray(settings.plugins) ? settings.plugins : $.jstree.defaults.plugins;\n\t\t\t\tif($.inArray(\"core\", settings.plugins) === -1) { settings.plugins.unshift(\"core\"); }\n\t\t\t\t\n\t\t\t\t// only unique plugins (NOT WORKING)\n\t\t\t\t// settings.plugins = settings.plugins.sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\");\n\n\t\t\t\t// extend defaults with passed data\n\t\t\t\ts = $.extend(true, {}, $.jstree.defaults, settings);\n\t\t\t\ts.plugins = settings.plugins;\n\t\t\t\t$.each(plugins, function (i, val) { if($.inArray(i, s.plugins) === -1) { s[i] = null; delete s[i]; } });\n\t\t\t\t// push the new object to the instances array (at the same time set the default classes to the container) and init\n\t\t\t\tinstances[instance_id] = new $.jstree._instance(instance_id, $(this).addClass(\"jstree jstree-\" + instance_id), s); \n\t\t\t\t// init all activated plugins for this instance\n\t\t\t\t$.each(instances[instance_id]._get_settings().plugins, function (i, val) { instances[instance_id].data[val] = {}; });\n\t\t\t\t$.each(instances[instance_id]._get_settings().plugins, function (i, val) { if(plugins[val]) { plugins[val].__init.apply(instances[instance_id]); } });\n\t\t\t\t// initialize the instance\n\t\t\t\tinstances[instance_id].init();\n\t\t\t});\n\t\t}\n\t\t// return the jquery selection (or if it was a method call that returned a value - the returned value)\n\t\treturn returnValue;\n\t};\n\t// object to store exposed functions and objects\n\t$.jstree = {\n\t\tdefaults : {\n\t\t\tplugins : []\n\t\t},\n\t\t_focused : function () { return instances[focused_instance] || null; },\n\t\t_reference : function (needle) { \n\t\t\t// get by instance id\n\t\t\tif(instances[needle]) { return instances[needle]; }\n\t\t\t// get by DOM (if still no luck - return null\n\t\t\tvar o = $(needle); \n\t\t\tif(!o.length && typeof needle === \"string\") { o = $(\"#\" + needle); }\n\t\t\tif(!o.length) { return null; }\n\t\t\treturn instances[o.closest(\".jstree\").data(\"jstree-instance-id\")] || null; \n\t\t},\n\t\t_instance : function (index, container, settings) { \n\t\t\t// for plugins to store data in\n\t\t\tthis.data = { core : {} };\n\t\t\tthis.get_settings\t= function () { return $.extend(true, {}, settings); };\n\t\t\tthis._get_settings\t= function () { return settings; };\n\t\t\tthis.get_index\t\t= function () { return index; };\n\t\t\tthis.get_container\t= function () { return container; };\n\t\t\tthis._set_settings\t= function (s) { \n\t\t\t\tsettings = $.extend(true, {}, settings, s);\n\t\t\t};\n\t\t},\n\t\t_fn : { },\n\t\tplugin : function (pname, pdata) {\n\t\t\tpdata = $.extend({}, {\n\t\t\t\t__init\t\t: $.noop, \n\t\t\t\t__destroy\t: $.noop,\n\t\t\t\t_fn\t\t\t: {},\n\t\t\t\tdefaults\t: false\n\t\t\t}, pdata);\n\t\t\tplugins[pname] = pdata;\n\n\t\t\t$.jstree.defaults[pname] = pdata.defaults;\n\t\t\t$.each(pdata._fn, function (i, val) {\n\t\t\t\tval.plugin\t\t= pname;\n\t\t\t\tval.old\t\t\t= $.jstree._fn[i];\n\t\t\t\t$.jstree._fn[i] = function () {\n\t\t\t\t\tvar rslt,\n\t\t\t\t\t\tfunc = val,\n\t\t\t\t\t\targs = Array.prototype.slice.call(arguments),\n\t\t\t\t\t\tevnt = new $.Event(\"before.jstree\"),\n\t\t\t\t\t\trlbk = false;\n\n\t\t\t\t\t// Check if function belongs to the included plugins of this instance\n\t\t\t\t\tdo {\n\t\t\t\t\t\tif(func && func.plugin && $.inArray(func.plugin, this._get_settings().plugins) !== -1) { break; }\n\t\t\t\t\t\tfunc = func.old;\n\t\t\t\t\t} while(func);\n\t\t\t\t\tif(!func) { return; }\n\n\t\t\t\t\t// a chance to stop execution (or change arguments): \n\t\t\t\t\t// * just bind to jstree.before\n\t\t\t\t\t// * check the additional data object (func property)\n\t\t\t\t\t// * call event.stopImmediatePropagation()\n\t\t\t\t\t// * return false (or an array of arguments)\n\t\t\t\t\trslt = this.get_container().triggerHandler(evnt, { \"func\" : i, \"inst\" : this, \"args\" : args });\n\t\t\t\t\tif(rslt === false) { return; }\n\t\t\t\t\tif(typeof rslt !== \"undefined\") { args = rslt; }\n\n\t\t\t\t\t// context and function to trigger events, then finally call the function\n\t\t\t\t\tif(i.indexOf(\"_\") === 0) {\n\t\t\t\t\t\trslt = func.apply(this, args);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\trslt = func.apply(\n\t\t\t\t\t\t\t$.extend({}, this, { \n\t\t\t\t\t\t\t\t__callback : function (data) { \n\t\t\t\t\t\t\t\t\tthis.get_container().triggerHandler( i + '.jstree', { \"inst\" : this, \"args\" : args, \"rslt\" : data, \"rlbk\" : rlbk });\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t__rollback : function () { \n\t\t\t\t\t\t\t\t\trlbk = this.get_rollback();\n\t\t\t\t\t\t\t\t\treturn rlbk;\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t__call_old : function (replace_arguments) {\n\t\t\t\t\t\t\t\t\treturn func.old.apply(this, (replace_arguments ? Array.prototype.slice.call(arguments, 1) : args ) );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}), args);\n\t\t\t\t\t}\n\n\t\t\t\t\t// return the result\n\t\t\t\t\treturn rslt;\n\t\t\t\t};\n\t\t\t\t$.jstree._fn[i].old = val.old;\n\t\t\t\t$.jstree._fn[i].plugin = pname;\n\t\t\t});\n\t\t},\n\t\trollback : function (rb) {\n\t\t\tif(rb) {\n\t\t\t\tif(!$.isArray(rb)) { rb = [ rb ]; }\n\t\t\t\t$.each(rb, function (i, val) {\n\t\t\t\t\tinstances[val.i].set_rollback(val.h, val.d);\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t};\n\t// set the prototype for all instances\n\t$.jstree._fn = $.jstree._instance.prototype = {};\n\n\t// css functions - used internally\n\n\t// load the css when DOM is ready\n\t$(function() {\n\t\t// code is copied form jQuery ($.browser is deprecated + there is a bug in IE)\n\t\tvar u = navigator.userAgent.toLowerCase(),\n\t\t\tv = (u.match( /.+?(?:rv|it|ra|ie)[\\/: ]([\\d.]+)/ ) || [0,'0'])[1],\n\t\t\tcss_string = '' + \n\t\t\t\t'.jstree ul, .jstree li { display:block; margin:0 0 0 0; padding:0 0 0 0; list-style-type:none; } ' + \n\t\t\t\t'.jstree li { display:block; min-height:18px; line-height:18px; white-space:nowrap; margin-left:18px; } ' + \n\t\t\t\t'.jstree-rtl li { margin-left:0; margin-right:18px; } ' + \n\t\t\t\t'.jstree > ul > li { margin-left:0px; } ' + \n\t\t\t\t'.jstree-rtl > ul > li { margin-right:0px; } ' + \n\t\t\t\t'.jstree ins { display:inline-block; text-decoration:none; width:18px; height:18px; margin:0 0 0 0; padding:0; } ' + \n\t\t\t\t'.jstree a { display:inline-block; line-height:16px; height:16px; color:black; white-space:nowrap; text-decoration:none; padding:1px 2px; margin:0; } ' + \n\t\t\t\t'.jstree a:focus { outline: none; } ' + \n\t\t\t\t'.jstree a > ins { height:16px; width:16px; } ' + \n\t\t\t\t'.jstree a > .jstree-icon { margin-right:3px; } ' + \n\t\t\t\t'.jstree-rtl a > .jstree-icon { margin-left:3px; margin-right:0; } ' + \n\t\t\t\t'li.jstree-open > ul { display:block; } ' + \n\t\t\t\t'li.jstree-closed > ul { display:none; } ';\n\t\t// Correct IE 6 (does not support the > CSS selector)\n\t\tif(/msie/.test(u) && parseInt(v, 10) == 6) { \n\t\t\tis_ie6 = true;\n\t\t\tcss_string += '' + \n\t\t\t\t'.jstree li { height:18px; margin-left:0; margin-right:0; } ' + \n\t\t\t\t'.jstree li li { margin-left:18px; } ' + \n\t\t\t\t'.jstree-rtl li li { margin-left:0px; margin-right:18px; } ' + \n\t\t\t\t'li.jstree-open ul { display:block; } ' + \n\t\t\t\t'li.jstree-closed ul { display:none !important; } ' + \n\t\t\t\t'.jstree li a { display:inline; border-width:0 !important; padding:0px 2px !important; } ' + \n\t\t\t\t'.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' + \n\t\t\t\t'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';\n\t\t}\n\t\t// Correct IE 7 (shifts anchor nodes onhover)\n\t\tif(/msie/.test(u) && parseInt(v, 10) == 7) { \n\t\t\tcss_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';\n\t\t}\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n\n\t// core functions (open, close, create, update, delete)\n\t$.jstree.plugin(\"core\", {\n\t\t__init : function () {\n\t\t\tthis.data.core.to_open = $.map($.makeArray(this.get_settings().core.initially_open), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t},\n\t\tdefaults : { \n\t\t\thtml_titles\t: false,\n\t\t\tanimation\t: 500,\n\t\t\tinitially_open : [],\n\t\t\trtl\t\t\t: false,\n\t\t\tstrings\t\t: {\n\t\t\t\tloading\t\t: \"Loading ...\",\n\t\t\t\tnew_node\t: \"New node\"\n\t\t\t}\n\t\t},\n\t\t_fn : { \n\t\t\tinit\t: function () { \n\t\t\t\tthis.set_focus(); \n\t\t\t\tif(this._get_settings().core.rtl) {\n\t\t\t\t\tthis.get_container().addClass(\"jstree-rtl\").css(\"direction\", \"rtl\");\n\t\t\t\t}\n\t\t\t\tthis.get_container().html(\"<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>\" + this._get_settings().core.strings.loading + \"</a></li></ul>\");\n\t\t\t\tthis.data.core.li_height = this.get_container().find(\"ul li.jstree-closed, ul li.jstree-leaf\").eq(0).height() || 18;\n\n\t\t\t\tthis.get_container()\n\t\t\t\t\t.delegate(\"li > ins\", \"click.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\t\tvar trgt = $(event.target);\n\t\t\t\t\t\t\tif(trgt.is(\"ins\") && event.pageY - trgt.offset().top < this.data.core.li_height) { this.toggle_node(trgt); }\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.bind(\"mousedown.jstree\", $.proxy(function () { \n\t\t\t\t\t\t\tthis.set_focus(); // This used to be setTimeout(set_focus,0) - why?\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.bind(\"dblclick.jstree\", function (event) { \n\t\t\t\t\t\tvar sel;\n\t\t\t\t\t\tif(document.selection && document.selection.empty) { document.selection.empty(); }\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif(window.getSelection) {\n\t\t\t\t\t\t\t\tsel = window.getSelection();\n\t\t\t\t\t\t\t\ttry { \n\t\t\t\t\t\t\t\t\tsel.removeAllRanges();\n\t\t\t\t\t\t\t\t\tsel.collapse();\n\t\t\t\t\t\t\t\t} catch (err) { }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\tthis.__callback();\n\t\t\t\tthis.load_node(-1, function () { this.loaded(); this.reopen(); });\n\t\t\t},\n\t\t\tdestroy\t: function () { \n\t\t\t\tvar i,\n\t\t\t\t\tn = this.get_index(),\n\t\t\t\t\ts = this._get_settings(),\n\t\t\t\t\t_this = this;\n\n\t\t\t\t$.each(s.plugins, function (i, val) {\n\t\t\t\t\ttry { plugins[val].__destroy.apply(_this); } catch(err) { }\n\t\t\t\t});\n\t\t\t\tthis.__callback();\n\t\t\t\t// set focus to another instance if this one is focused\n\t\t\t\tif(this.is_focused()) { \n\t\t\t\t\tfor(i in instances) { \n\t\t\t\t\t\tif(instances.hasOwnProperty(i) && i != n) { \n\t\t\t\t\t\t\tinstances[i].set_focus(); \n\t\t\t\t\t\t\tbreak; \n\t\t\t\t\t\t} \n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// if no other instance found\n\t\t\t\tif(n === focused_instance) { focused_instance = -1; }\n\t\t\t\t// remove all traces of jstree in the DOM (only the ones set using jstree*) and cleans all events\n\t\t\t\tthis.get_container()\n\t\t\t\t\t.unbind(\".jstree\")\n\t\t\t\t\t.undelegate(\".jstree\")\n\t\t\t\t\t.removeData(\"jstree-instance-id\")\n\t\t\t\t\t.find(\"[class^='jstree']\")\n\t\t\t\t\t\t.andSelf()\n\t\t\t\t\t\t.attr(\"class\", function () { return this.className.replace(/jstree[^ ]*|$/ig,''); });\n\t\t\t\t// remove the actual data\n\t\t\t\tinstances[n] = null;\n\t\t\t\tdelete instances[n];\n\t\t\t},\n\t\t\tsave_opened : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.data.core.to_open = [];\n\t\t\t\tthis.get_container().find(\".jstree-open\").each(function () { \n\t\t\t\t\t_this.data.core.to_open.push(\"#\" + this.id.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/')); \n\t\t\t\t});\n\t\t\t\tthis.__callback(_this.data.core.to_open);\n\t\t\t},\n\t\t\treopen : function (is_callback) {\n\t\t\t\tvar _this = this,\n\t\t\t\t\tdone = true,\n\t\t\t\t\tcurrent = [],\n\t\t\t\t\tremaining = [];\n\t\t\t\tif(!is_callback) { this.data.core.reopen = false; this.data.core.refreshing = true; }\n\t\t\t\tif(this.data.core.to_open.length) {\n\t\t\t\t\t$.each(this.data.core.to_open, function (i, val) {\n\t\t\t\t\t\tif(val == \"#\") { return true; }\n\t\t\t\t\t\tif($(val).length && $(val).is(\".jstree-closed\")) { current.push(val); }\n\t\t\t\t\t\telse { remaining.push(val); }\n\t\t\t\t\t});\n\t\t\t\t\tif(current.length) {\n\t\t\t\t\t\tthis.data.core.to_open = remaining;\n\t\t\t\t\t\t$.each(current, function (i, val) { \n\t\t\t\t\t\t\t_this.open_node(val, function () { _this.reopen(true); }, true); \n\t\t\t\t\t\t});\n\t\t\t\t\t\tdone = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(done) { \n\t\t\t\t\t// TODO: find a more elegant approach to syncronizing returning requests\n\t\t\t\t\tif(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }\n\t\t\t\t\tthis.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);\n\t\t\t\t\tthis.data.core.refreshing = false;\n\t\t\t\t}\n\t\t\t},\n\t\t\trefresh : function (obj) {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.save_opened();\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tif(obj !== -1) { obj.children(\"UL\").remove(); }\n\t\t\t\tthis.load_node(obj, function () { _this.__callback({ \"obj\" : obj}); _this.reopen(); });\n\t\t\t},\n\t\t\t// Dummy function to fire after the first load (so that there is a jstree.loaded event)\n\t\t\tloaded\t: function () { \n\t\t\t\tthis.__callback(); \n\t\t\t},\n\t\t\t// deal with focus\n\t\t\tset_focus\t: function () { \n\t\t\t\tvar f = $.jstree._focused();\n\t\t\t\tif(f && f !== this) {\n\t\t\t\t\tf.get_container().removeClass(\"jstree-focused\"); \n\t\t\t\t}\n\t\t\t\tif(f !== this) {\n\t\t\t\t\tthis.get_container().addClass(\"jstree-focused\"); \n\t\t\t\t\tfocused_instance = this.get_index(); \n\t\t\t\t}\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\tis_focused\t: function () { \n\t\t\t\treturn focused_instance == this.get_index(); \n\t\t\t},\n\n\t\t\t// traverse\n\t\t\t_get_node\t\t: function (obj) { \n\t\t\t\tvar $obj = $(obj, this.get_container()); \n\t\t\t\tif($obj.is(\".jstree\") || obj == -1) { return -1; } \n\t\t\t\t$obj = $obj.closest(\"li\", this.get_container()); \n\t\t\t\treturn $obj.length ? $obj : false; \n\t\t\t},\n\t\t\t_get_next\t\t: function (obj, strict) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().find(\"> ul > li:first-child\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(strict) { return (obj.nextAll(\"li\").size() > 0) ? obj.nextAll(\"li:eq(0)\") : false; }\n\n\t\t\t\tif(obj.hasClass(\"jstree-open\")) { return obj.find(\"li:eq(0)\"); }\n\t\t\t\telse if(obj.nextAll(\"li\").size() > 0) { return obj.nextAll(\"li:eq(0)\"); }\n\t\t\t\telse { return obj.parentsUntil(\".jstree\",\"li\").next(\"li\").eq(0); }\n\t\t\t},\n\t\t\t_get_prev\t\t: function (obj, strict) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().find(\"> ul > li:last-child\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(strict) { return (obj.prevAll(\"li\").length > 0) ? obj.prevAll(\"li:eq(0)\") : false; }\n\n\t\t\t\tif(obj.prev(\"li\").length) {\n\t\t\t\t\tobj = obj.prev(\"li\").eq(0);\n\t\t\t\t\twhile(obj.hasClass(\"jstree-open\")) { obj = obj.children(\"ul:eq(0)\").children(\"li:last\"); }\n\t\t\t\t\treturn obj;\n\t\t\t\t}\n\t\t\t\telse { var o = obj.parentsUntil(\".jstree\",\"li:eq(0)\"); return o.length ? o : false; }\n\t\t\t},\n\t\t\t_get_parent\t\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj == -1 || !obj.length) { return false; }\n\t\t\t\tvar o = obj.parentsUntil(\".jstree\", \"li:eq(0)\");\n\t\t\t\treturn o.length ? o : -1;\n\t\t\t},\n\t\t\t_get_children\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().children(\"ul:eq(0)\").children(\"li\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\treturn obj.children(\"ul:eq(0)\").children(\"li\");\n\t\t\t},\n\t\t\tget_path\t\t: function (obj, id_mode) {\n\t\t\t\tvar p = [],\n\t\t\t\t\t_this = this;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1 || !obj || !obj.length) { return false; }\n\t\t\t\tobj.parentsUntil(\".jstree\", \"li\").each(function () {\n\t\t\t\t\tp.push( id_mode ? this.id : _this.get_text(this) );\n\t\t\t\t});\n\t\t\t\tp.reverse();\n\t\t\t\tp.push( id_mode ? obj.attr(\"id\") : this.get_text(obj) );\n\t\t\t\treturn p;\n\t\t\t},\n\n\t\t\tis_open\t\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-open\"); },\n\t\t\tis_closed\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-closed\"); },\n\t\t\tis_leaf\t\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-leaf\"); },\n\t\t\t// open/close\n\t\t\topen_node\t: function (obj, callback, skip_animation) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(!obj.hasClass(\"jstree-closed\")) { if(callback) { callback.call(); } return false; }\n\t\t\t\tvar s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,\n\t\t\t\t\tt = this;\n\t\t\t\tif(!this._is_loaded(obj)) {\n\t\t\t\t\tobj.children(\"a\").addClass(\"jstree-loading\");\n\t\t\t\t\tthis.load_node(obj, function () { t.open_node(obj, callback, skip_animation); }, callback);\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(s) { obj.children(\"ul\").css(\"display\",\"none\"); }\n\t\t\t\t\tobj.removeClass(\"jstree-closed\").addClass(\"jstree-open\").children(\"a\").removeClass(\"jstree-loading\");\n\t\t\t\t\tif(s) { obj.children(\"ul\").stop(true).slideDown(s, function () { this.style.display = \"\"; }); }\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t\tif(callback) { callback.call(); }\n\t\t\t\t}\n\t\t\t},\n\t\t\tclose_node\t: function (obj, skip_animation) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation;\n\t\t\t\tif(!obj.length || !obj.hasClass(\"jstree-open\")) { return false; }\n\t\t\t\tif(s) { obj.children(\"ul\").attr(\"style\",\"display:block !important\"); }\n\t\t\t\tobj.removeClass(\"jstree-open\").addClass(\"jstree-closed\");\n\t\t\t\tif(s) { obj.children(\"ul\").stop(true).slideUp(s, function () { this.style.display = \"\"; }); }\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\ttoggle_node\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj.hasClass(\"jstree-closed\")) { return this.open_node(obj); }\n\t\t\t\tif(obj.hasClass(\"jstree-open\")) { return this.close_node(obj); }\n\t\t\t},\n\t\t\topen_all\t: function (obj, original_obj) {\n\t\t\t\tobj = obj ? this._get_node(obj) : this.get_container();\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container(); }\n\t\t\t\tif(original_obj) { \n\t\t\t\t\tobj = obj.find(\"li.jstree-closed\");\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\toriginal_obj = obj;\n\t\t\t\t\tif(obj.is(\".jstree-closed\")) { obj = obj.find(\"li.jstree-closed\").andSelf(); }\n\t\t\t\t\telse { obj = obj.find(\"li.jstree-closed\"); }\n\t\t\t\t}\n\t\t\t\tvar _this = this;\n\t\t\t\tobj.each(function () { \n\t\t\t\t\tvar __this = this; \n\t\t\t\t\tif(!_this._is_loaded(this)) { _this.open_node(this, function() { _this.open_all(__this, original_obj); }, true); }\n\t\t\t\t\telse { _this.open_node(this, false, true); }\n\t\t\t\t});\n\t\t\t\t// so that callback is fired AFTER all nodes are open\n\t\t\t\tif(original_obj.find('li.jstree-closed').length === 0) { this.__callback({ \"obj\" : original_obj }); }\n\t\t\t},\n\t\t\tclose_all\t: function (obj) {\n\t\t\t\tvar _this = this;\n\t\t\t\tobj = obj ? this._get_node(obj) : this.get_container();\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container(); }\n\t\t\t\tobj.find(\"li.jstree-open\").andSelf().each(function () { _this.close_node(this); });\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tclean_node\t: function (obj) {\n\t\t\t\tobj = obj && obj != -1 ? $(obj) : this.get_container();\n\t\t\t\tobj = obj.is(\"li\") ? obj.find(\"li\").andSelf() : obj.find(\"li\");\n\t\t\t\tobj.removeClass(\"jstree-last\")\n\t\t\t\t\t.filter(\"li:last-child\").addClass(\"jstree-last\").end()\n\t\t\t\t\t.filter(\":has(li)\")\n\t\t\t\t\t\t.not(\".jstree-open\").removeClass(\"jstree-leaf\").addClass(\"jstree-closed\");\n\t\t\t\tobj.not(\".jstree-open, .jstree-closed\").addClass(\"jstree-leaf\").children(\"ul\").remove();\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\t// rollback\n\t\t\tget_rollback : function () { \n\t\t\t\tthis.__callback();\n\t\t\t\treturn { i : this.get_index(), h : this.get_container().children(\"ul\").clone(true), d : this.data }; \n\t\t\t},\n\t\t\tset_rollback : function (html, data) {\n\t\t\t\tthis.get_container().empty().append(html);\n\t\t\t\tthis.data = data;\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\t// Dummy functions to be overwritten by any datastore plugin included\n\t\t\tload_node\t: function (obj, s_call, e_call) { this.__callback({ \"obj\" : obj }); },\n\t\t\t_is_loaded\t: function (obj) { return true; },\n\n\t\t\t// Basic operations: create\n\t\t\tcreate_node\t: function (obj, position, js, callback, is_loaded) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tposition = typeof position === \"undefined\" ? \"last\" : position;\n\t\t\t\tvar d = $(\"<li>\"),\n\t\t\t\t\ts = this._get_settings().core,\n\t\t\t\t\ttmp;\n\n\t\t\t\tif(obj !== -1 && !obj.length) { return false; }\n\t\t\t\tif(!is_loaded && !this._is_loaded(obj)) { this.load_node(obj, function () { this.create_node(obj, position, js, callback, true); }); return false; }\n\n\t\t\t\tthis.__rollback();\n\n\t\t\t\tif(typeof js === \"string\") { js = { \"data\" : js }; }\n\t\t\t\tif(!js) { js = {}; }\n\t\t\t\tif(js.attr) { d.attr(js.attr); }\n\t\t\t\tif(js.state) { d.addClass(\"jstree-\" + js.state); }\n\t\t\t\tif(!js.data) { js.data = s.strings.new_node; }\n\t\t\t\tif(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }\n\t\t\t\t$.each(js.data, function (i, m) {\n\t\t\t\t\ttmp = $(\"<a>\");\n\t\t\t\t\tif($.isFunction(m)) { m = m.call(this, js); }\n\t\t\t\t\tif(typeof m == \"string\") { tmp.attr('href','#')[ s.html_titles ? \"html\" : \"text\" ](m); }\n\t\t\t\t\telse {\n\t\t\t\t\t\tif(!m.attr) { m.attr = {}; }\n\t\t\t\t\t\tif(!m.attr.href) { m.attr.href = '#'; }\n\t\t\t\t\t\ttmp.attr(m.attr)[ s.html_titles ? \"html\" : \"text\" ](m.title);\n\t\t\t\t\t\tif(m.language) { tmp.addClass(m.language); }\n\t\t\t\t\t}\n\t\t\t\t\ttmp.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\tif(m.icon) { \n\t\t\t\t\t\tif(m.icon.indexOf(\"/\") === -1) { tmp.children(\"ins\").addClass(m.icon); }\n\t\t\t\t\t\telse { tmp.children(\"ins\").css(\"background\",\"url('\" + m.icon + \"') center center no-repeat\"); }\n\t\t\t\t\t}\n\t\t\t\t\td.append(tmp);\n\t\t\t\t});\n\t\t\t\td.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\tif(obj === -1) {\n\t\t\t\t\tobj = this.get_container();\n\t\t\t\t\tif(position === \"before\") { position = \"first\"; }\n\t\t\t\t\tif(position === \"after\") { position = \"last\"; }\n\t\t\t\t}\n\t\t\t\tswitch(position) {\n\t\t\t\t\tcase \"before\": obj.before(d); tmp = this._get_parent(obj); break;\n\t\t\t\t\tcase \"after\" : obj.after(d);  tmp = this._get_parent(obj); break;\n\t\t\t\t\tcase \"inside\":\n\t\t\t\t\tcase \"first\" :\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tobj.children(\"ul\").prepend(d);\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tobj.children(\"ul\").append(d);\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tif(!position) { position = 0; }\n\t\t\t\t\t\ttmp = obj.children(\"ul\").children(\"li\").eq(position);\n\t\t\t\t\t\tif(tmp.length) { tmp.before(d); }\n\t\t\t\t\t\telse { obj.children(\"ul\").append(d); }\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tif(tmp === -1 || tmp.get(0) === this.get_container().get(0)) { tmp = -1; }\n\t\t\t\tthis.clean_node(tmp);\n\t\t\t\tthis.__callback({ \"obj\" : d, \"parent\" : tmp });\n\t\t\t\tif(callback) { callback.call(this, d); }\n\t\t\t\treturn d;\n\t\t\t},\n\t\t\t// Basic operations: rename (deal with text)\n\t\t\tget_text\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tvar s = this._get_settings().core.html_titles;\n\t\t\t\tobj = obj.children(\"a:eq(0)\");\n\t\t\t\tif(s) {\n\t\t\t\t\tobj = obj.clone();\n\t\t\t\t\tobj.children(\"INS\").remove();\n\t\t\t\t\treturn obj.html();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\treturn obj.nodeValue;\n\t\t\t\t}\n\t\t\t},\n\t\t\tset_text\t: function (obj, val) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tobj = obj.children(\"a:eq(0)\");\n\t\t\t\tif(this._get_settings().core.html_titles) {\n\t\t\t\t\tvar tmp = obj.children(\"INS\").clone();\n\t\t\t\t\tobj.html(val).prepend(tmp);\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val });\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val });\n\t\t\t\t\treturn (obj.nodeValue = val);\n\t\t\t\t}\n\t\t\t},\n\t\t\trename_node : function (obj, val) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.__rollback();\n\t\t\t\tif(obj && obj.length && this.set_text.apply(this, Array.prototype.slice.call(arguments))) { this.__callback({ \"obj\" : obj, \"name\" : val }); }\n\t\t\t},\n\t\t\t// Basic operations: deleting nodes\n\t\t\tdelete_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar p = this._get_parent(obj), prev = this._get_prev(obj);\n\t\t\t\tobj = obj.remove();\n\t\t\t\tif(p !== -1 && p.find(\"> ul > li\").length === 0) {\n\t\t\t\t\tp.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\");\n\t\t\t\t}\n\t\t\t\tthis.clean_node(p);\n\t\t\t\tthis.__callback({ \"obj\" : obj, \"prev\" : prev });\n\t\t\t\treturn obj;\n\t\t\t},\n\t\t\tprepare_move : function (o, r, pos, cb, is_cb) {\n\t\t\t\tvar p = {};\n\n\t\t\t\tp.ot = $.jstree._reference(p.o) || this;\n\t\t\t\tp.o = p.ot._get_node(o);\n\t\t\t\tp.r = r === - 1 ? -1 : this._get_node(r);\n\t\t\t\tp.p = (typeof p === \"undefined\") ? \"last\" : pos; // TODO: move to a setting\n\t\t\t\tif(!is_cb && prepared_move.o && prepared_move.o[0] === p.o[0] && prepared_move.r[0] === p.r[0] && prepared_move.p === p.p) {\n\t\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\t\tif(cb) { cb.call(this, prepared_move); }\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tp.ot = $.jstree._reference(p.o) || this;\n\t\t\t\tp.rt = r === -1 ? p.ot : $.jstree._reference(p.r) || this;\n\t\t\t\tif(p.r === -1) {\n\t\t\t\t\tp.cr = -1;\n\t\t\t\t\tswitch(p.p) {\n\t\t\t\t\t\tcase \"first\":\n\t\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\t\tp.cp = 0; \n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\t\tp.cp = p.rt.get_container().find(\" > ul > li\").length; \n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\tp.cp = p.p;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(!/^(before|after)$/.test(p.p) && !this._is_loaded(p.r)) {\n\t\t\t\t\t\treturn this.load_node(p.r, function () { this.prepare_move(o, r, pos, cb, true); });\n\t\t\t\t\t}\n\t\t\t\t\tswitch(p.p) {\n\t\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\t\tp.cp = p.r.index();\n\t\t\t\t\t\t\tp.cr = p.rt._get_parent(p.r);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\t\tp.cp = p.r.index() + 1;\n\t\t\t\t\t\t\tp.cr = p.rt._get_parent(p.r);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\tcase \"first\":\n\t\t\t\t\t\t\tp.cp = 0;\n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\t\tp.cp = p.r.find(\" > ul > li\").length; \n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault: \n\t\t\t\t\t\t\tp.cp = p.p;\n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tp.np = p.cr == -1 ? p.rt.get_container() : p.cr;\n\t\t\t\tp.op = p.ot._get_parent(p.o);\n\t\t\t\tp.or = p.np.find(\" > ul > li:nth-child(\" + (p.cp + 1) + \")\");\n\n\t\t\t\tprepared_move = p;\n\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\tif(cb) { cb.call(this, prepared_move); }\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tvar obj = prepared_move, ret = true;\n\t\t\t\tif(obj.or[0] === obj.o[0]) { return false; }\n\t\t\t\tobj.o.each(function () { \n\t\t\t\t\tif(obj.r.parentsUntil(\".jstree\").andSelf().filter(\"li\").index(this) !== -1) { ret = false; return false; }\n\t\t\t\t});\n\t\t\t\treturn ret;\n\t\t\t},\n\t\t\tmove_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {\n\t\t\t\tif(!is_prepared) { \n\t\t\t\t\treturn this.prepare_move(obj, ref, position, function (p) {\n\t\t\t\t\t\tthis.move_node(p, false, false, is_copy, true, skip_check);\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tif(!skip_check && !this.check_move()) { return false; }\n\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar o = false;\n\t\t\t\tif(is_copy) {\n\t\t\t\t\to = obj.o.clone();\n\t\t\t\t\to.find(\"*[id]\").andSelf().each(function () {\n\t\t\t\t\t\tif(this.id) { this.id = \"copy_\" + this.id; }\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\telse { o = obj.o; }\n\n\t\t\t\tif(obj.or.length) { obj.or.before(o); }\n\t\t\t\telse { \n\t\t\t\t\tif(!obj.np.children(\"ul\").length) { $(\"<ul>\").appendTo(obj.np); }\n\t\t\t\t\tobj.np.children(\"ul:eq(0)\").append(o); \n\t\t\t\t}\n\n\t\t\t\ttry { \n\t\t\t\t\tobj.ot.clean_node(obj.op);\n\t\t\t\t\tobj.rt.clean_node(obj.np);\n\t\t\t\t\tif(!obj.op.find(\"> ul > li\").length) {\n\t\t\t\t\t\tobj.op.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\").children(\"ul\").remove();\n\t\t\t\t\t}\n\t\t\t\t} catch (e) { }\n\n\t\t\t\tif(is_copy) { \n\t\t\t\t\tprepared_move.cy = true;\n\t\t\t\t\tprepared_move.oc = o; \n\t\t\t\t}\n\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\treturn prepared_move;\n\t\t\t},\n\t\t\t_get_move : function () { return prepared_move; }\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree ui plugin 1.0\n * This plugins handles selecting/deselecting/hovering/dehovering nodes\n */\n(function ($) {\n\t$.jstree.plugin(\"ui\", {\n\t\t__init : function () { \n\t\t\tthis.data.ui.selected = $(); \n\t\t\tthis.data.ui.last_selected = false; \n\t\t\tthis.data.ui.hovered = null;\n\t\t\tthis.data.ui.to_select = this.get_settings().ui.initially_select;\n\n\t\t\tthis.get_container()\n\t\t\t\t.delegate(\"a\", \"click.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\tthis.select_node(event.currentTarget, true, event);\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseenter.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tthis.hover_node(event.target);\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseleave.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tthis.dehover_node(event.target);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"reopen.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.reselect();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"get_rollback.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.dehover_node();\n\t\t\t\t\t\tthis.save_selected();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"set_rollback.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.reselect();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"close_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tvar s = this._get_settings().ui,\n\t\t\t\t\t\t\tobj = this._get_node(data.rslt.obj),\n\t\t\t\t\t\t\tclk = (obj && obj.length) ? obj.children(\"ul\").find(\".jstree-clicked\") : $(),\n\t\t\t\t\t\t\t_this = this;\n\t\t\t\t\t\tif(s.selected_parent_close === false || !clk.length) { return; }\n\t\t\t\t\t\tclk.each(function () { \n\t\t\t\t\t\t\t_this.deselect_node(this);\n\t\t\t\t\t\t\tif(s.selected_parent_close === \"select_parent\") { _this.select_node(obj); }\n\t\t\t\t\t\t});\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"delete_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tvar s = this._get_settings().ui.select_prev_on_delete,\n\t\t\t\t\t\t\tobj = this._get_node(data.rslt.obj),\n\t\t\t\t\t\t\tclk = (obj && obj.length) ? obj.find(\".jstree-clicked\") : [],\n\t\t\t\t\t\t\t_this = this;\n\t\t\t\t\t\tclk.each(function () { _this.deselect_node(this); });\n\t\t\t\t\t\tif(s && clk.length) { this.select_node(data.rslt.prev); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tif(data.rslt.cy) { \n\t\t\t\t\t\t\tdata.rslt.oc.find(\".jstree-clicked\").removeClass(\"jstree-clicked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tselect_limit : -1, // 0, 1, 2 ... or -1 for unlimited\n\t\t\tselect_multiple_modifier : \"ctrl\", // on, or ctrl, shift, alt\n\t\t\tselected_parent_close : \"select_parent\", // false, \"deselect\", \"select_parent\"\n\t\t\tselect_prev_on_delete : true,\n\t\t\tdisable_selecting_children : false,\n\t\t\tinitially_select : []\n\t\t},\n\t\t_fn : { \n\t\t\t_get_node : function (obj, allow_multiple) {\n\t\t\t\tif(typeof obj === \"undefined\" || obj === null) { return allow_multiple ? this.data.ui.selected : this.data.ui.last_selected; }\n\t\t\t\tvar $obj = $(obj, this.get_container()); \n\t\t\t\tif($obj.is(\".jstree\") || obj == -1) { return -1; } \n\t\t\t\t$obj = $obj.closest(\"li\", this.get_container()); \n\t\t\t\treturn $obj.length ? $obj : false; \n\t\t\t},\n\t\t\tsave_selected : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.data.ui.to_select = [];\n\t\t\t\tthis.data.ui.selected.each(function () { _this.data.ui.to_select.push(\"#\" + this.id.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/')); });\n\t\t\t\tthis.__callback(this.data.ui.to_select);\n\t\t\t},\n\t\t\treselect : function () {\n\t\t\t\tvar _this = this,\n\t\t\t\t\ts = this.data.ui.to_select;\n\t\t\t\ts = $.map($.makeArray(s), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t\t\tthis.deselect_all();\n\t\t\t\t$.each(s, function (i, val) { if(val && val !== \"#\") { _this.select_node(val); } });\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\trefresh : function (obj) {\n\t\t\t\tthis.save_selected();\n\t\t\t\treturn this.__call_old();\n\t\t\t},\n\t\t\thover_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\t//if(this.data.ui.hovered && obj.get(0) === this.data.ui.hovered.get(0)) { return; }\n\t\t\t\tif(!obj.hasClass(\"jstree-hovered\")) { this.dehover_node(); }\n\t\t\t\tthis.data.ui.hovered = obj.children(\"a\").addClass(\"jstree-hovered\").parent();\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tdehover_node : function () {\n\t\t\t\tvar obj = this.data.ui.hovered, p;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tp = obj.children(\"a\").removeClass(\"jstree-hovered\").parent();\n\t\t\t\tif(this.data.ui.hovered[0] === p[0]) { this.data.ui.hovered = null; }\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tselect_node : function (obj, check, e) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj == -1 || !obj || !obj.length) { return false; }\n\t\t\t\tvar s = this._get_settings().ui,\n\t\t\t\t\tis_multiple = (s.select_multiple_modifier == \"on\" || (s.select_multiple_modifier !== false && e && e[s.select_multiple_modifier + \"Key\"])),\n\t\t\t\t\tis_selected = this.is_selected(obj),\n\t\t\t\t\tproceed = true;\n\t\t\t\tif(check) {\n\t\t\t\t\tif(s.disable_selecting_children && is_multiple && obj.parents(\"li\", this.get_container()).children(\".jstree-clicked\").length) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\tproceed = false;\n\t\t\t\t\tswitch(!0) {\n\t\t\t\t\t\tcase (is_selected && !is_multiple): \n\t\t\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t\t\tis_selected = false;\n\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (!is_selected && !is_multiple): \n\t\t\t\t\t\t\tif(s.select_limit == -1 || s.select_limit > 0) {\n\t\t\t\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (is_selected && is_multiple): \n\t\t\t\t\t\t\tthis.deselect_node(obj);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (!is_selected && is_multiple): \n\t\t\t\t\t\t\tif(s.select_limit == -1 || this.data.ui.selected.length + 1 <= s.select_limit) { \n\t\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(proceed && !is_selected) {\n\t\t\t\t\tobj.children(\"a\").addClass(\"jstree-clicked\");\n\t\t\t\t\tthis.data.ui.selected = this.data.ui.selected.add(obj);\n\t\t\t\t\tthis.data.ui.last_selected = obj;\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeselect_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(this.is_selected(obj)) {\n\t\t\t\t\tobj.children(\"a\").removeClass(\"jstree-clicked\");\n\t\t\t\t\tthis.data.ui.selected = this.data.ui.selected.not(obj);\n\t\t\t\t\tif(this.data.ui.last_selected.get(0) === obj.get(0)) { this.data.ui.last_selected = this.data.ui.selected.eq(0); }\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t}\n\t\t\t},\n\t\t\ttoggle_select : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(this.is_selected(obj)) { this.deselect_node(obj); }\n\t\t\t\telse { this.select_node(obj); }\n\t\t\t},\n\t\t\tis_selected : function (obj) { return this.data.ui.selected.index(this._get_node(obj)) >= 0; },\n\t\t\tget_selected : function (context) { \n\t\t\t\treturn context ? $(context).find(\".jstree-clicked\").parent() : this.data.ui.selected; \n\t\t\t},\n\t\t\tdeselect_all : function (context) {\n\t\t\t\tif(context) { $(context).find(\".jstree-clicked\").removeClass(\"jstree-clicked\"); } \n\t\t\t\telse { this.get_container().find(\".jstree-clicked\").removeClass(\"jstree-clicked\"); }\n\t\t\t\tthis.data.ui.selected = $([]);\n\t\t\t\tthis.data.ui.last_selected = false;\n\t\t\t\tthis.__callback();\n\t\t\t}\n\t\t}\n\t});\n\t// include the selection plugin by default\n\t$.jstree.defaults.plugins.push(\"ui\");\n})(jQuery);\n//*/\n\n/* \n * jsTree CRRM plugin 1.0\n * Handles creating/renaming/removing/moving nodes by user interaction.\n */\n(function ($) {\n\t$.jstree.plugin(\"crrm\", { \n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\tif(this._get_settings().crrm.move.open_onmove) {\n\t\t\t\t\t\tvar t = this;\n\t\t\t\t\t\tdata.rslt.np.parentsUntil(\".jstree\").andSelf().filter(\".jstree-closed\").each(function () {\n\t\t\t\t\t\t\tt.open_node(this, false, true);\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tinput_width_limit : 200,\n\t\t\tmove : {\n\t\t\t\talways_copy\t\t\t: false, // false, true or \"multitree\"\n\t\t\t\topen_onmove\t\t\t: true,\n\t\t\t\tdefault_position\t: \"last\",\n\t\t\t\tcheck_move\t\t\t: function (m) { return true; }\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\t_show_input : function (obj, callback) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar rtl = this._get_settings().core.rtl,\n\t\t\t\t\tw = this._get_settings().crrm.input_width_limit,\n\t\t\t\t\tw1 = obj.children(\"ins\").width(),\n\t\t\t\t\tw2 = obj.find(\"> a:visible > ins\").width() * obj.find(\"> a:visible > ins\").length,\n\t\t\t\t\tt = this.get_text(obj),\n\t\t\t\t\th1 = $(\"<div>\", { css : { \"position\" : \"absolute\", \"top\" : \"-200px\", \"left\" : (rtl ? \"0px\" : \"-1000px\"), \"visibility\" : \"hidden\" } }).appendTo(\"body\"),\n\t\t\t\t\th2 = obj.css(\"position\",\"relative\").append(\n\t\t\t\t\t$(\"<input>\", { \n\t\t\t\t\t\t\"value\" : t,\n\t\t\t\t\t\t// \"size\" : t.length,\n\t\t\t\t\t\t\"css\" : {\n\t\t\t\t\t\t\t\"padding\" : \"0\",\n\t\t\t\t\t\t\t\"border\" : \"1px solid silver\",\n\t\t\t\t\t\t\t\"position\" : \"absolute\",\n\t\t\t\t\t\t\t\"left\"  : (rtl ? \"auto\" : (w1 + w2 + 4) + \"px\"),\n\t\t\t\t\t\t\t\"right\" : (rtl ? (w1 + w2 + 4) + \"px\" : \"auto\"),\n\t\t\t\t\t\t\t\"top\" : \"0px\",\n\t\t\t\t\t\t\t\"height\" : (this.data.core.li_height - 2) + \"px\",\n\t\t\t\t\t\t\t\"lineHeight\" : (this.data.core.li_height - 2) + \"px\",\n\t\t\t\t\t\t\t\"width\" : \"150px\" // will be set a bit further down\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"blur\" : $.proxy(function () {\n\t\t\t\t\t\t\tvar i = obj.children(\"input\"),\n\t\t\t\t\t\t\t\tv = i.val();\n\t\t\t\t\t\t\tif(v === \"\") { v = t; }\n\t\t\t\t\t\t\ti.remove(); // rollback purposes\n\t\t\t\t\t\t\tthis.set_text(obj,t); // rollback purposes\n\t\t\t\t\t\t\tthis.rename_node(obj, v);\n\t\t\t\t\t\t\tcallback.call(this, obj, v, t);\n\t\t\t\t\t\t\tobj.css(\"position\",\"\");\n\t\t\t\t\t\t}, this),\n\t\t\t\t\t\t\"keyup\" : function (event) {\n\t\t\t\t\t\t\tvar key = event.keyCode || event.which;\n\t\t\t\t\t\t\tif(key == 27) { this.value = t; this.blur(); return; }\n\t\t\t\t\t\t\telse if(key == 13) { this.blur(); return; }\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\th2.width(Math.min(h1.text(\"pW\" + this.value).width(),w));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t})\n\t\t\t\t).children(\"input\"); \n\t\t\t\tthis.set_text(obj, \"\");\n\t\t\t\th1.css({\n\t\t\t\t\t\tfontFamily\t\t: h2.css('fontFamily')\t\t|| '',\n\t\t\t\t\t\tfontSize\t\t: h2.css('fontSize')\t\t|| '',\n\t\t\t\t\t\tfontWeight\t\t: h2.css('fontWeight')\t\t|| '',\n\t\t\t\t\t\tfontStyle\t\t: h2.css('fontStyle')\t\t|| '',\n\t\t\t\t\t\tfontStretch\t\t: h2.css('fontStretch')\t\t|| '',\n\t\t\t\t\t\tfontVariant\t\t: h2.css('fontVariant')\t\t|| '',\n\t\t\t\t\t\tletterSpacing\t: h2.css('letterSpacing')\t|| '',\n\t\t\t\t\t\twordSpacing\t\t: h2.css('wordSpacing')\t\t|| ''\n\t\t\t\t});\n\t\t\t\th2.width(Math.min(h1.text(\"pW\" + h2[0].value).width(),w))[0].select();\n\t\t\t},\n\t\t\trename : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar f = this.__callback;\n\t\t\t\tthis._show_input(obj, function (obj, new_name, old_name) { \n\t\t\t\t\tf.call(this, { \"obj\" : obj, \"new_name\" : new_name, \"old_name\" : old_name });\n\t\t\t\t});\n\t\t\t},\n\t\t\tcreate : function (obj, position, js, callback, skip_rename) {\n\t\t\t\tvar t, _this = this;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tthis.__rollback();\n\t\t\t\tt = this.create_node(obj, position, js, function (t) {\n\t\t\t\t\tvar p = this._get_parent(t),\n\t\t\t\t\t\tpos = $(t).index();\n\t\t\t\t\tif(callback) { callback.call(this, t); }\n\t\t\t\t\tif(p.length && p.hasClass(\"jstree-closed\")) { this.open_node(p, false, true); }\n\t\t\t\t\tif(!skip_rename) { \n\t\t\t\t\t\tthis._show_input(t, function (obj, new_name, old_name) { \n\t\t\t\t\t\t\t_this.__callback({ \"obj\" : obj, \"name\" : new_name, \"parent\" : p, \"position\" : pos });\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\telse { _this.__callback({ \"obj\" : t, \"name\" : this.get_text(t), \"parent\" : p, \"position\" : pos }); }\n\t\t\t\t});\n\t\t\t\treturn t;\n\t\t\t},\n\t\t\tremove : function (obj) {\n\t\t\t\tobj = this._get_node(obj, true);\n\t\t\t\tthis.__rollback();\n\t\t\t\tthis.delete_node(obj);\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar s = this._get_settings().crrm.move;\n\t\t\t\tif(!s.check_move.call(this, this._get_move())) { return false; }\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tmove_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {\n\t\t\t\tvar s = this._get_settings().crrm.move;\n\t\t\t\tif(!is_prepared) { \n\t\t\t\t\tif(!position) { position = s.default_position; }\n\t\t\t\t\tif(position === \"inside\" && !s.default_position.match(/^(before|after)$/)) { position = s.default_position; }\n\t\t\t\t\treturn this.__call_old(true, obj, ref, position, is_copy, false, skip_check);\n\t\t\t\t}\n\t\t\t\t// if the move is already prepared\n\t\t\t\tif(s.always_copy === true || (s.always_copy === \"multitree\" && obj.rt.get_index() !== obj.ot.get_index() )) {\n\t\t\t\t\tis_copy = true;\n\t\t\t\t}\n\t\t\t\tthis.__call_old(true, obj, ref, position, is_copy, true, skip_check);\n\t\t\t},\n\n\t\t\tcut : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tthis.data.crrm.ct_nodes = obj;\n\t\t\t},\n\t\t\tcopy : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tthis.data.crrm.cp_nodes = obj;\n\t\t\t},\n\t\t\tpaste : function (obj) { \n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tif(!this.data.crrm.ct_nodes && !this.data.crrm.cp_nodes) { return false; }\n\t\t\t\tif(this.data.crrm.ct_nodes) { this.move_node(this.data.crrm.ct_nodes, obj); }\n\t\t\t\tif(this.data.crrm.cp_nodes) { this.move_node(this.data.crrm.cp_nodes, obj, false, true); }\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t}\n\t\t}\n\t});\n\t// include the crr plugin by default\n\t$.jstree.defaults.plugins.push(\"crrm\");\n})(jQuery);\n\n/* \n * jsTree themes plugin 1.0\n * Handles loading and setting themes, as well as detecting path to themes, etc.\n */\n(function ($) {\n\tvar themes_loaded = [];\n\t// this variable stores the path to the themes folder - if left as false - it will be autodetected\n\t$.jstree._themes = false;\n\t$.jstree.plugin(\"themes\", {\n\t\t__init : function () { \n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"init.jstree\", $.proxy(function () {\n\t\t\t\t\t\tvar s = this._get_settings().themes;\n\t\t\t\t\t\tthis.data.themes.dots = s.dots; \n\t\t\t\t\t\tthis.data.themes.icons = s.icons; \n\t\t\t\t\t\t//alert(s.dots);\n\t\t\t\t\t\tthis.set_theme(s.theme, s.url);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree\", $.proxy(function () {\n\t\t\t\t\t\t// bound here too, as simple HTML tree's won't honor dots & icons otherwise\n\t\t\t\t\t\tif(!this.data.themes.dots) { this.hide_dots(); }\n\t\t\t\t\t\telse { this.show_dots(); }\n\t\t\t\t\t\tif(!this.data.themes.icons) { this.hide_icons(); }\n\t\t\t\t\t\telse { this.show_icons(); }\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : { \n\t\t\ttheme : \"default\", \n\t\t\turl : false,\n\t\t\tdots : true,\n\t\t\ticons : true\n\t\t},\n\t\t_fn : {\n\t\t\tset_theme : function (theme_name, theme_url) {\n\t\t\t\tif(!theme_name) { return false; }\n\t\t\t\tif(!theme_url) { theme_url = $.jstree._themes + theme_name + '/style.css'; }\n\t\t\t\tif($.inArray(theme_url, themes_loaded) == -1) {\n\t\t\t\t\t$.vakata.css.add_sheet({ \"url\" : theme_url, \"rel\" : \"jstree\" });\n\t\t\t\t\tthemes_loaded.push(theme_url);\n\t\t\t\t}\n\t\t\t\tif(this.data.themes.theme != theme_name) {\n\t\t\t\t\tthis.get_container().removeClass('jstree-' + this.data.themes.theme);\n\t\t\t\t\tthis.data.themes.theme = theme_name;\n\t\t\t\t}\n\t\t\t\tthis.get_container().addClass('jstree-' + theme_name);\n\t\t\t\tif(!this.data.themes.dots) { this.hide_dots(); }\n\t\t\t\telse { this.show_dots(); }\n\t\t\t\tif(!this.data.themes.icons) { this.hide_icons(); }\n\t\t\t\telse { this.show_icons(); }\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\tget_theme\t: function () { return this.data.themes.theme; },\n\n\t\t\tshow_dots\t: function () { this.data.themes.dots = true; this.get_container().children(\"ul\").removeClass(\"jstree-no-dots\"); },\n\t\t\thide_dots\t: function () { this.data.themes.dots = false; this.get_container().children(\"ul\").addClass(\"jstree-no-dots\"); },\n\t\t\ttoggle_dots\t: function () { if(this.data.themes.dots) { this.hide_dots(); } else { this.show_dots(); } },\n\n\t\t\tshow_icons\t: function () { this.data.themes.icons = true; this.get_container().children(\"ul\").removeClass(\"jstree-no-icons\"); },\n\t\t\thide_icons\t: function () { this.data.themes.icons = false; this.get_container().children(\"ul\").addClass(\"jstree-no-icons\"); },\n\t\t\ttoggle_icons: function () { if(this.data.themes.icons) { this.hide_icons(); } else { this.show_icons(); } }\n\t\t}\n\t});\n\t// autodetect themes path\n\t$(function () {\n\t\tif($.jstree._themes === false) {\n\t\t\t$(\"script\").each(function () { \n\t\t\t\tif(this.src.toString().match(/jquery\\.jstree[^\\/]*?\\.js(\\?.*)?$/)) { \n\t\t\t\t\t$.jstree._themes = this.src.toString().replace(/jquery\\.jstree[^\\/]*?\\.js(\\?.*)?$/, \"\") + 'themes/'; \n\t\t\t\t\treturn false; \n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t\tif($.jstree._themes === false) { $.jstree._themes = \"themes/\"; }\n\t});\n\t// include the themes plugin by default\n\t$.jstree.defaults.plugins.push(\"themes\");\n})(jQuery);\n//*/\n\n/*\n * jsTree hotkeys plugin 1.0\n * Enables keyboard navigation for all tree instances\n * Depends on the jstree ui & jquery hotkeys plugins\n */\n(function ($) {\n\tvar bound = [];\n\tfunction exec(i, event) {\n\t\tvar f = $.jstree._focused(), tmp;\n\t\tif(f && f.data && f.data.hotkeys && f.data.hotkeys.enabled) { \n\t\t\ttmp = f._get_settings().hotkeys[i];\n\t\t\tif(tmp) { return tmp.call(f, event); }\n\t\t}\n\t}\n\t$.jstree.plugin(\"hotkeys\", {\n\t\t__init : function () {\n\t\t\tif(typeof $.hotkeys === \"undefined\") { throw \"jsTree hotkeys: jQuery hotkeys plugin not included.\"; }\n\t\t\tif(!this.data.ui) { throw \"jsTree hotkeys: jsTree UI plugin not included.\"; }\n\t\t\t$.each(this._get_settings().hotkeys, function (i, val) {\n\t\t\t\tif($.inArray(i, bound) == -1) {\n\t\t\t\t\t$(document).bind(\"keydown\", i, function (event) { return exec(i, event); });\n\t\t\t\t\tbound.push(i);\n\t\t\t\t}\n\t\t\t});\n\t\t\tthis.enable_hotkeys();\n\t\t},\n\t\tdefaults : {\n\t\t\t\"up\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected || -1;\n\t\t\t\tthis.hover_node(this._get_prev(o));\n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"down\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected || -1;\n\t\t\t\tthis.hover_node(this._get_next(o));\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"left\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected;\n\t\t\t\tif(o) {\n\t\t\t\t\tif(o.hasClass(\"jstree-open\")) { this.close_node(o); }\n\t\t\t\t\telse { this.hover_node(this._get_prev(o)); }\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"right\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected;\n\t\t\t\tif(o && o.length) {\n\t\t\t\t\tif(o.hasClass(\"jstree-closed\")) { this.open_node(o); }\n\t\t\t\t\telse { this.hover_node(this._get_next(o)); }\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"space\" : function () { \n\t\t\t\tif(this.data.ui.hovered) { this.data.ui.hovered.children(\"a:eq(0)\").click(); } \n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"ctrl+space\" : function (event) { \n\t\t\t\tevent.type = \"click\";\n\t\t\t\tif(this.data.ui.hovered) { this.data.ui.hovered.children(\"a:eq(0)\").trigger(event); } \n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"f2\" : function () { this.rename(this.data.ui.hovered || this.data.ui.last_selected); },\n\t\t\t\"del\" : function () { this.remove(this.data.ui.hovered || this._get_node(null)); }\n\t\t},\n\t\t_fn : {\n\t\t\tenable_hotkeys : function () {\n\t\t\t\tthis.data.hotkeys.enabled = true;\n\t\t\t},\n\t\t\tdisable_hotkeys : function () {\n\t\t\t\tthis.data.hotkeys.enabled = false;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree JSON 1.0\n * The JSON data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.jstree.plugin(\"json_data\", {\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\tcorrect_state : true,\n\t\t\tprogressive_render : false\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_json(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tvar s = this._get_settings().json_data, d;\n\t\t\t\tobj = this._get_node(obj); \n\t\t\t\tif(obj && obj !== -1 && s.progressive_render && !obj.is(\".jstree-open, .jstree-leaf\") && obj.children(\"ul\").children(\"li\").length === 0 && obj.data(\"jstree-children\")) {\n\t\t\t\t\td = this._parse_json(obj.data(\"jstree-children\"));\n\t\t\t\t\tif(d) {\n\t\t\t\t\t\tobj.append(d);\n\t\t\t\t\t\t$.removeData(obj, \"jstree-children\");\n\t\t\t\t\t}\n\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn obj == -1 || !obj || !s.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_json : function (obj, s_call, e_call) {\n\t\t\t\tvar s = this.get_settings().json_data, d,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax): throw \"Neither data nor ajax settings supplied.\";\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\td = this._parse_json(s.data);\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty().append(d.children());\n\t\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse { \n\t\t\t\t\t\t\t\tif(s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().json_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj != -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\tvar sf = this.get_settings().json_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d === \"\" || (!$.isArray(d) && !$.isPlainObject(d))) {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\td = this._parse_json(d);\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\tif(obj === -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()); }\n\t\t\t\t\t\t\t\telse { obj.append(d).children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(obj === -1 || !obj) {\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty(); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"json\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\t_parse_json : function (js, is_callback) {\n\t\t\t\tvar d = false, \n\t\t\t\t\tp = this._get_settings(),\n\t\t\t\t\ts = p.json_data,\n\t\t\t\t\tt = p.core.html_titles,\n\t\t\t\t\ttmp, i, j, ul1, ul2;\n\n\t\t\t\tif(!js) { return d; }\n\t\t\t\tif($.isFunction(js)) { \n\t\t\t\t\tjs = js.call(this);\n\t\t\t\t}\n\t\t\t\tif($.isArray(js)) {\n\t\t\t\t\td = $();\n\t\t\t\t\tif(!js.length) { return false; }\n\t\t\t\t\tfor(i = 0, j = js.length; i < j; i++) {\n\t\t\t\t\t\ttmp = this._parse_json(js[i], true);\n\t\t\t\t\t\tif(tmp.length) { d = d.add(tmp); }\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(typeof js == \"string\") { js = { data : js }; }\n\t\t\t\t\tif(!js.data && js.data !== \"\") { return d; }\n\t\t\t\t\td = $(\"<li>\");\n\t\t\t\t\tif(js.attr) { d.attr(js.attr); }\n\t\t\t\t\tif(js.metadata) { d.data(\"jstree\", js.metadata); }\n\t\t\t\t\tif(js.state) { d.addClass(\"jstree-\" + js.state); }\n\t\t\t\t\tif(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }\n\t\t\t\t\t$.each(js.data, function (i, m) {\n\t\t\t\t\t\ttmp = $(\"<a>\");\n\t\t\t\t\t\tif($.isFunction(m)) { m = m.call(this, js); }\n\t\t\t\t\t\tif(typeof m == \"string\") { tmp.attr('href','#')[ t ? \"html\" : \"text\" ](m); }\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif(!m.attr) { m.attr = {}; }\n\t\t\t\t\t\t\tif(!m.attr.href) { m.attr.href = '#'; }\n\t\t\t\t\t\t\ttmp.attr(m.attr)[ t ? \"html\" : \"text\" ](m.title);\n\t\t\t\t\t\t\tif(m.language) { tmp.addClass(m.language); }\n\t\t\t\t\t\t}\n\t\t\t\t\t\ttmp.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\t\tif(!m.icon && js.icon) { m.icon = js.icon; }\n\t\t\t\t\t\tif(m.icon) { \n\t\t\t\t\t\t\tif(m.icon.indexOf(\"/\") === -1) { tmp.children(\"ins\").addClass(m.icon); }\n\t\t\t\t\t\t\telse { tmp.children(\"ins\").css(\"background\",\"url('\" + m.icon + \"') center center no-repeat\"); }\n\t\t\t\t\t\t}\n\t\t\t\t\t\td.append(tmp);\n\t\t\t\t\t});\n\t\t\t\t\td.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\tif(js.children) { \n\t\t\t\t\t\tif(s.progressive_render && js.state !== \"open\") {\n\t\t\t\t\t\t\td.addClass(\"jstree-closed\").data(\"jstree-children\", js.children);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif($.isFunction(js.children)) {\n\t\t\t\t\t\t\t\tjs.children = js.children.call(this, js);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif($.isArray(js.children) && js.children.length) {\n\t\t\t\t\t\t\t\ttmp = this._parse_json(js.children, true);\n\t\t\t\t\t\t\t\tif(tmp.length) {\n\t\t\t\t\t\t\t\t\tul2 = $(\"<ul>\");\n\t\t\t\t\t\t\t\t\tul2.append(tmp);\n\t\t\t\t\t\t\t\t\td.append(ul2);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(!is_callback) {\n\t\t\t\t\tul1 = $(\"<ul>\");\n\t\t\t\t\tul1.append(d);\n\t\t\t\t\td = ul1;\n\t\t\t\t}\n\t\t\t\treturn d;\n\t\t\t},\n\t\t\tget_json : function (obj, li_attr, a_attr, is_callback) {\n\t\t\t\tvar result = [], \n\t\t\t\t\ts = this._get_settings(), \n\t\t\t\t\t_this = this,\n\t\t\t\t\ttmp1, tmp2, li, a, t, lang;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container().find(\"> ul > li\"); }\n\t\t\t\tli_attr = $.isArray(li_attr) ? li_attr : [ \"id\", \"class\" ];\n\t\t\t\tif(!is_callback && this.data.types) { li_attr.push(s.types.type_attr); }\n\t\t\t\ta_attr = $.isArray(a_attr) ? a_attr : [ ];\n\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tli = $(this);\n\t\t\t\t\ttmp1 = { data : [] };\n\t\t\t\t\tif(li_attr.length) { tmp1.attr = { }; }\n\t\t\t\t\t$.each(li_attr, function (i, v) { \n\t\t\t\t\t\ttmp2 = li.attr(v); \n\t\t\t\t\t\tif(tmp2 && tmp2.length && tmp2.replace(/jstree[^ ]*|$/ig,'').length) {\n\t\t\t\t\t\t\ttmp1.attr[v] = tmp2.replace(/jstree[^ ]*|$/ig,''); \n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tif(li.hasClass(\"jstree-open\")) { tmp1.state = \"open\"; }\n\t\t\t\t\tif(li.hasClass(\"jstree-closed\")) { tmp1.state = \"closed\"; }\n\t\t\t\t\ta = li.children(\"a\");\n\t\t\t\t\ta.each(function () {\n\t\t\t\t\t\tt = $(this);\n\t\t\t\t\t\tif(\n\t\t\t\t\t\t\ta_attr.length || \n\t\t\t\t\t\t\t$.inArray(\"languages\", s.plugins) !== -1 || \n\t\t\t\t\t\t\tt.children(\"ins\").get(0).style.backgroundImage.length || \n\t\t\t\t\t\t\t(t.children(\"ins\").get(0).className && t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').length)\n\t\t\t\t\t\t) { \n\t\t\t\t\t\t\tlang = false;\n\t\t\t\t\t\t\tif($.inArray(\"languages\", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {\n\t\t\t\t\t\t\t\t$.each(s.languages, function (l, lv) {\n\t\t\t\t\t\t\t\t\tif(t.hasClass(lv)) {\n\t\t\t\t\t\t\t\t\t\tlang = lv;\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttmp2 = { attr : { }, title : _this.get_text(t, lang) }; \n\t\t\t\t\t\t\t$.each(a_attr, function (k, z) {\n\t\t\t\t\t\t\t\ttmp1.attr[z] = (t.attr(z) || \"\").replace(/jstree[^ ]*|$/ig,'');\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t$.each(s.languages, function (k, z) {\n\t\t\t\t\t\t\t\tif(t.hasClass(z)) { tmp2.language = z; return true; }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tif(t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\").length) {\n\t\t\t\t\t\t\t\ttmp2.icon = t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(t.children(\"ins\").get(0).style.backgroundImage.length) {\n\t\t\t\t\t\t\t\ttmp2.icon = t.children(\"ins\").get(0).style.backgroundImage.replace(\"url(\",\"\").replace(\")\",\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttmp2 = _this.get_text(t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(a.length > 1) { tmp1.data.push(tmp2); }\n\t\t\t\t\t\telse { tmp1.data = tmp2; }\n\t\t\t\t\t});\n\t\t\t\t\tli = li.find(\"> ul > li\");\n\t\t\t\t\tif(li.length) { tmp1.children = _this.get_json(li, li_attr, a_attr, true); }\n\t\t\t\t\tresult.push(tmp1);\n\t\t\t\t});\n\t\t\t\treturn result;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree languages plugin 1.0\n * Adds support for multiple language versions in one tree\n * This basically allows for many titles coexisting in one node, but only one of them being visible at any given time\n * This is useful for maintaining the same structure in many languages (hence the name of the plugin)\n */\n(function ($) {\n\t$.jstree.plugin(\"languages\", {\n\t\t__init : function () { this._load_css();  },\n\t\tdefaults : [],\n\t\t_fn : {\n\t\t\tset_lang : function (i) { \n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\tst = false,\n\t\t\t\t\tselector = \".jstree-\" + this.get_index() + ' a';\n\t\t\t\tif(!$.isArray(langs) || langs.length === 0) { return false; }\n\t\t\t\tif($.inArray(i,langs) == -1) {\n\t\t\t\t\tif(!!langs[i]) { i = langs[i]; }\n\t\t\t\t\telse { return false; }\n\t\t\t\t}\n\t\t\t\tif(i == this.data.languages.current_language) { return true; }\n\t\t\t\tst = $.vakata.css.get_css(selector + \".\" + this.data.languages.current_language, false, this.data.languages.language_css);\n\t\t\t\tif(st !== false) { st.style.display = \"none\"; }\n\t\t\t\tst = $.vakata.css.get_css(selector + \".\" + i, false, this.data.languages.language_css);\n\t\t\t\tif(st !== false) { st.style.display = \"\"; }\n\t\t\t\tthis.data.languages.current_language = i;\n\t\t\t\tthis.__callback(i);\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tget_lang : function () {\n\t\t\t\treturn this.data.languages.current_language;\n\t\t\t},\n\t\t\tget_text : function (obj, lang) {\n\t\t\t\tobj = this._get_node(obj) || this.data.ui.last_selected;\n\t\t\t\tif(!obj.size()) { return false; }\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\ts = this._get_settings().core.html_titles;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tlang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;\n\t\t\t\t\tobj = obj.children(\"a.\" + lang);\n\t\t\t\t}\n\t\t\t\telse { obj = obj.children(\"a:eq(0)\"); }\n\t\t\t\tif(s) {\n\t\t\t\t\tobj = obj.clone();\n\t\t\t\t\tobj.children(\"INS\").remove();\n\t\t\t\t\treturn obj.html();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\treturn obj.nodeValue;\n\t\t\t\t}\n\t\t\t},\n\t\t\tset_text : function (obj, val, lang) {\n\t\t\t\tobj = this._get_node(obj) || this.data.ui.last_selected;\n\t\t\t\tif(!obj.size()) { return false; }\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\ts = this._get_settings().core.html_titles,\n\t\t\t\t\ttmp;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tlang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;\n\t\t\t\t\tobj = obj.children(\"a.\" + lang);\n\t\t\t\t}\n\t\t\t\telse { obj = obj.children(\"a:eq(0)\"); }\n\t\t\t\tif(s) {\n\t\t\t\t\ttmp = obj.children(\"INS\").clone();\n\t\t\t\t\tobj.html(val).prepend(tmp);\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val, \"lang\" : lang });\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val, \"lang\" : lang });\n\t\t\t\t\treturn (obj.nodeValue = val);\n\t\t\t\t}\n\t\t\t},\n\t\t\t_load_css : function () {\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\tstr = \"/* languages css */\",\n\t\t\t\t\tselector = \".jstree-\" + this.get_index() + ' a',\n\t\t\t\t\tln;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tthis.data.languages.current_language = langs[0];\n\t\t\t\t\tfor(ln = 0; ln < langs.length; ln++) {\n\t\t\t\t\t\tstr += selector + \".\" + langs[ln] + \" {\";\n\t\t\t\t\t\tif(langs[ln] != this.data.languages.current_language) { str += \" display:none; \"; }\n\t\t\t\t\t\tstr += \" } \";\n\t\t\t\t\t}\n\t\t\t\t\tthis.data.languages.language_css = $.vakata.css.add_sheet({ 'str' : str });\n\t\t\t\t}\n\t\t\t},\n\t\t\tcreate_node : function (obj, position, js, callback) {\n\t\t\t\tvar t = this.__call_old(true, obj, position, js, function (t) {\n\t\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\t\ta = t.children(\"a\"),\n\t\t\t\t\t\tln;\n\t\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\t\tfor(ln = 0; ln < langs.length; ln++) {\n\t\t\t\t\t\t\tif(!a.is(\".\" + langs[ln])) {\n\t\t\t\t\t\t\t\tt.append(a.eq(0).clone().removeClass(langs.join(\" \")).addClass(langs[ln]));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\ta.not(\".\" + langs.join(\", .\")).remove();\n\t\t\t\t\t}\n\t\t\t\t\tif(callback) { callback.call(this, t); }\n\t\t\t\t});\n\t\t\t\treturn t;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree cookies plugin 1.0\n * Stores the currently opened/selected nodes in a cookie and then restores them\n * Depends on the jquery.cookie plugin\n */\n(function ($) {\n\t$.jstree.plugin(\"cookies\", {\n\t\t__init : function () {\n\t\t\tif(typeof $.cookie === \"undefined\") { throw \"jsTree cookie: jQuery cookie plugin not included.\"; }\n\n\t\t\tvar s = this._get_settings().cookies,\n\t\t\t\ttmp;\n\t\t\tif(!!s.save_opened) {\n\t\t\t\ttmp = $.cookie(s.save_opened);\n\t\t\t\tif(tmp && tmp.length) { this.data.core.to_open = tmp.split(\",\"); }\n\t\t\t}\n\t\t\tif(!!s.save_selected) {\n\t\t\t\ttmp = $.cookie(s.save_selected);\n\t\t\t\tif(tmp && tmp.length && this.data.ui) { this.data.ui.to_select = tmp.split(\",\"); }\n\t\t\t}\n\t\t\tthis.get_container()\n\t\t\t\t.one( ( this.data.ui ? \"reselect\" : \"reopen\" ) + \".jstree\", $.proxy(function () {\n\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t.bind(\"open_node.jstree close_node.jstree select_node.jstree deselect_node.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\t\t\tif(this._get_settings().cookies.auto_save) { this.save_cookie((e.handleObj.namespace + e.handleObj.type).replace(\"jstree\",\"\")); }\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tsave_opened\t\t: \"jstree_open\",\n\t\t\tsave_selected\t: \"jstree_select\",\n\t\t\tauto_save\t\t: true,\n\t\t\tcookie_options\t: {}\n\t\t},\n\t\t_fn : {\n\t\t\tsave_cookie : function (c) {\n\t\t\t\tif(this.data.core.refreshing) { return; }\n\t\t\t\tvar s = this._get_settings().cookies;\n\t\t\t\tif(!c) { // if called manually and not by event\n\t\t\t\t\tif(s.save_opened) {\n\t\t\t\t\t\tthis.save_opened();\n\t\t\t\t\t\t$.cookie(s.save_opened, this.data.core.to_open.join(\",\"), s.cookie_options);\n\t\t\t\t\t}\n\t\t\t\t\tif(s.save_selected && this.data.ui) {\n\t\t\t\t\t\tthis.save_selected();\n\t\t\t\t\t\t$.cookie(s.save_selected, this.data.ui.to_select.join(\",\"), s.cookie_options);\n\t\t\t\t\t}\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tswitch(c) {\n\t\t\t\t\tcase \"open_node\":\n\t\t\t\t\tcase \"close_node\":\n\t\t\t\t\t\tif(!!s.save_opened) { \n\t\t\t\t\t\t\tthis.save_opened(); \n\t\t\t\t\t\t\t$.cookie(s.save_opened, this.data.core.to_open.join(\",\"), s.cookie_options); \n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"select_node\":\n\t\t\t\t\tcase \"deselect_node\":\n\t\t\t\t\t\tif(!!s.save_selected && this.data.ui) { \n\t\t\t\t\t\t\tthis.save_selected(); \n\t\t\t\t\t\t\t$.cookie(s.save_selected, this.data.ui.to_select.join(\",\"), s.cookie_options); \n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\t// include cookies by default\n\t$.jstree.defaults.plugins.push(\"cookies\");\n})(jQuery);\n//*/\n\n/*\n * jsTree sort plugin 1.0\n * Sorts items alphabetically (or using any other function)\n */\n(function ($) {\n\t$.jstree.plugin(\"sort\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"load_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tvar obj = this._get_node(data.rslt.obj);\n\t\t\t\t\t\tobj = obj === -1 ? this.get_container().children(\"ul\") : obj.children(\"ul\");\n\t\t\t\t\t\tthis.sort(obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"rename_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis.sort(data.rslt.obj.parent());\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tvar m = data.rslt.np == -1 ? this.get_container() : data.rslt.np;\n\t\t\t\t\t\tthis.sort(m.children(\"ul\"));\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : function (a, b) { return this.get_text(a) > this.get_text(b) ? 1 : -1; },\n\t\t_fn : {\n\t\t\tsort : function (obj) {\n\t\t\t\tvar s = this._get_settings().sort,\n\t\t\t\t\tt = this;\n\t\t\t\tobj.append($.makeArray(obj.children(\"li\")).sort($.proxy(s, t)));\n\t\t\t\tobj.find(\"> li > ul\").each(function() { t.sort($(this)); });\n\t\t\t\tthis.clean_node(obj);\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree DND plugin 1.0\n * Drag and drop plugin for moving/copying nodes\n */\n(function ($) {\n\tvar o = false,\n\t\tr = false,\n\t\tm = false,\n\t\tsli = false,\n\t\tsti = false,\n\t\tdir1 = false,\n\t\tdir2 = false;\n\t$.vakata.dnd = {\n\t\tis_down : false,\n\t\tis_drag : false,\n\t\thelper : false,\n\t\tscroll_spd : 10,\n\t\tinit_x : 0,\n\t\tinit_y : 0,\n\t\tthreshold : 5,\n\t\tuser_data : {},\n\n\t\tdrag_start : function (e, data, html) { \n\t\t\tif($.vakata.dnd.is_drag) { $.vakata.drag_stop({}); }\n\t\t\ttry {\n\t\t\t\te.currentTarget.unselectable = \"on\";\n\t\t\t\te.currentTarget.onselectstart = function() { return false; };\n\t\t\t\tif(e.currentTarget.style) { e.currentTarget.style.MozUserSelect = \"none\"; }\n\t\t\t} catch(err) { }\n\t\t\t$.vakata.dnd.init_x = e.pageX;\n\t\t\t$.vakata.dnd.init_y = e.pageY;\n\t\t\t$.vakata.dnd.user_data = data;\n\t\t\t$.vakata.dnd.is_down = true;\n\t\t\t$.vakata.dnd.helper = $(\"<div id='vakata-dragged'>\").html(html).css(\"opacity\", \"0.75\");\n\t\t\t$(document).bind(\"mousemove\", $.vakata.dnd.drag);\n\t\t\t$(document).bind(\"mouseup\", $.vakata.dnd.drag_stop);\n\t\t\treturn false;\n\t\t},\n\t\tdrag : function (e) { \n\t\t\tif(!$.vakata.dnd.is_down) { return; }\n\t\t\tif(!$.vakata.dnd.is_drag) {\n\t\t\t\tif(Math.abs(e.pageX - $.vakata.dnd.init_x) > 5 || Math.abs(e.pageY - $.vakata.dnd.init_y) > 5) { \n\t\t\t\t\t$.vakata.dnd.helper.appendTo(\"body\");\n\t\t\t\t\t$.vakata.dnd.is_drag = true;\n\t\t\t\t\t$(document).triggerHandler(\"drag_start.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t\t\t}\n\t\t\t\telse { return; }\n\t\t\t}\n\n\t\t\t// maybe use a scrolling parent element instead of document?\n\t\t\tif(e.type === \"mousemove\") { // thought of adding scroll in order to move the helper, but mouse poisition is n/a\n\t\t\t\tvar d = $(document), t = d.scrollTop(), l = d.scrollLeft();\n\t\t\t\tif(e.pageY - t < 20) { \n\t\t\t\t\tif(sti && dir1 === \"down\") { clearInterval(sti); sti = false; }\n\t\t\t\t\tif(!sti) { dir1 = \"up\"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() - $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sti && dir1 === \"up\") { clearInterval(sti); sti = false; }\n\t\t\t\t}\n\t\t\t\tif($(window).height() - (e.pageY - t) < 20) {\n\t\t\t\t\tif(sti && dir1 === \"up\") { clearInterval(sti); sti = false; }\n\t\t\t\t\tif(!sti) { dir1 = \"down\"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() + $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sti && dir1 === \"down\") { clearInterval(sti); sti = false; }\n\t\t\t\t}\n\n\t\t\t\tif(e.pageX - l < 20) {\n\t\t\t\t\tif(sli && dir2 === \"right\") { clearInterval(sli); sli = false; }\n\t\t\t\t\tif(!sli) { dir2 = \"left\"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() - $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sli && dir2 === \"left\") { clearInterval(sli); sli = false; }\n\t\t\t\t}\n\t\t\t\tif($(window).width() - (e.pageX - l) < 20) {\n\t\t\t\t\tif(sli && dir2 === \"left\") { clearInterval(sli); sli = false; }\n\t\t\t\t\tif(!sli) { dir2 = \"right\"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() + $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sli && dir2 === \"right\") { clearInterval(sli); sli = false; }\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$.vakata.dnd.helper.css({ left : (e.pageX + 5) + \"px\", top : (e.pageY + 10) + \"px\" });\n\t\t\t$(document).triggerHandler(\"drag.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t},\n\t\tdrag_stop : function (e) {\n\t\t\t$(document).unbind(\"mousemove\", $.vakata.dnd.drag);\n\t\t\t$(document).unbind(\"mouseup\", $.vakata.dnd.drag_stop);\n\t\t\t$(document).triggerHandler(\"drag_stop.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t\t$.vakata.dnd.helper.remove();\n\t\t\t$.vakata.dnd.init_x = 0;\n\t\t\t$.vakata.dnd.init_y = 0;\n\t\t\t$.vakata.dnd.user_data = {};\n\t\t\t$.vakata.dnd.is_down = false;\n\t\t\t$.vakata.dnd.is_drag = false;\n\t\t}\n\t};\n\t$(function() {\n\t\tvar css_string = '#vakata-dragged { display:block; margin:0 0 0 0; padding:4px 4px 4px 24px; position:absolute; top:-2000px; line-height:16px; z-index:10000; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n\n\t$.jstree.plugin(\"dnd\", {\n\t\t__init : function () {\n\t\t\tthis.data.dnd = {\n\t\t\t\tactive : false,\n\t\t\t\tafter : false,\n\t\t\t\tinside : false,\n\t\t\t\tbefore : false,\n\t\t\t\toff : false,\n\t\t\t\tprepared : false,\n\t\t\t\tw : 0,\n\t\t\t\tto1 : false,\n\t\t\t\tto2 : false,\n\t\t\t\tcof : false,\n\t\t\t\tcw : false,\n\t\t\t\tch : false,\n\t\t\t\ti1 : false,\n\t\t\t\ti2 : false\n\t\t\t};\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"mouseenter.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && this.data.themes) {\n\t\t\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"mouseleave.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"mousemove.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tvar cnt = this.get_container()[0];\n\n\t\t\t\t\t\t\t// Horizontal scroll\n\t\t\t\t\t\t\tif(e.pageX + 24 > this.data.dnd.cof.left + this.data.dnd.cw) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft += $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if(e.pageX - 24 < this.data.dnd.cof.left) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft -= $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Vertical scroll\n\t\t\t\t\t\t\tif(e.pageY + 24 > this.data.dnd.cof.top + this.data.dnd.ch) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop += $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if(e.pageY - 24 < this.data.dnd.cof.top) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop -= $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mousedown.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif(e.which === 1) {\n\t\t\t\t\t\t\tthis.start_drag(e.currentTarget, e);\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseenter.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.dnd_enter(e.currentTarget);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mousemove.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tif(typeof this.data.dnd.off.top === \"undefined\") { this.data.dnd.off = $(e.target).offset(); }\n\t\t\t\t\t\t\tthis.data.dnd.w = (e.pageY - (this.data.dnd.off.top || 0)) % this.data.core.li_height;\n\t\t\t\t\t\t\tif(this.data.dnd.w < 0) { this.data.dnd.w += this.data.core.li_height; }\n\t\t\t\t\t\t\tthis.dnd_show();\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseleave.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.data.dnd.after\t\t= false;\n\t\t\t\t\t\t\tthis.data.dnd.before\t= false;\n\t\t\t\t\t\t\tthis.data.dnd.inside\t= false;\n\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\t\tm.hide();\n\t\t\t\t\t\t\tif(r && r[0] === e.target.parentNode) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.to1) {\n\t\t\t\t\t\t\t\t\tclearTimeout(this.data.dnd.to1);\n\t\t\t\t\t\t\t\t\tthis.data.dnd.to1 = false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif(this.data.dnd.to2) {\n\t\t\t\t\t\t\t\t\tclearTimeout(this.data.dnd.to2);\n\t\t\t\t\t\t\t\t\tthis.data.dnd.to2 = false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseup.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.dnd_finish(e);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\n\t\t\t$(document)\n\t\t\t\t.bind(\"drag_stop.vakata\", $.proxy(function () {\n\t\t\t\t\t\tthis.data.dnd.after\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.before\t= false;\n\t\t\t\t\t\tthis.data.dnd.inside\t= false;\n\t\t\t\t\t\tthis.data.dnd.off\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.prepared\t= false;\n\t\t\t\t\t\tthis.data.dnd.w\t\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.to1\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.to2\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.active\t= false;\n\t\t\t\t\t\tthis.data.dnd.foreign\t= false;\n\t\t\t\t\t\tif(m) { m.css({ \"top\" : \"-2000px\" }); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"drag_start.vakata\", $.proxy(function (e, data) {\n\t\t\t\t\t\tif(data.data.jstree) { \n\t\t\t\t\t\t\tvar et = $(data.event.target);\n\t\t\t\t\t\t\tif(et.closest(\".jstree\").hasClass(\"jstree-\" + this.get_index())) {\n\t\t\t\t\t\t\t\tthis.dnd_enter(et);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\n\t\t\tvar s = this._get_settings().dnd;\n\t\t\tif(s.drag_target) {\n\t\t\t\t$(document)\n\t\t\t\t\t.delegate(s.drag_target, \"mousedown.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\to = e.target;\n\t\t\t\t\t\t$.vakata.dnd.drag_start(e, { jstree : true, obj : e.target }, \"<ins class='jstree-icon'></ins>\" + $(e.target).text() );\n\t\t\t\t\t\tif(this.data.themes) { \n\t\t\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t}\n\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\tvar cnt = this.get_container();\n\t\t\t\t\t\tthis.data.dnd.cof = cnt.offset();\n\t\t\t\t\t\tthis.data.dnd.cw = parseInt(cnt.width(),10);\n\t\t\t\t\t\tthis.data.dnd.ch = parseInt(cnt.height(),10);\n\t\t\t\t\t\tthis.data.dnd.foreign = true;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}, this));\n\t\t\t}\n\t\t\tif(s.drop_target) {\n\t\t\t\t$(document)\n\t\t\t\t\t.delegate(s.drop_target, \"mouseenter.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active && this._get_settings().dnd.drop_check.call(this, { \"o\" : o, \"r\" : $(e.target) })) {\n\t\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-ok\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.delegate(s.drop_target, \"mouseleave.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active) {\n\t\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.delegate(s.drop_target, \"mouseup.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active && $.vakata.dnd.helper.children(\"ins\").hasClass(\"jstree-ok\")) {\n\t\t\t\t\t\t\t\tthis._get_settings().dnd.drop_finish.call(this, { \"o\" : o, \"r\" : $(e.target) });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this));\n\t\t\t}\n\t\t},\n\t\tdefaults : {\n\t\t\tcopy_modifier\t: \"ctrl\",\n\t\t\tcheck_timeout\t: 200,\n\t\t\topen_timeout\t: 500,\n\t\t\tdrop_target\t\t: \".jstree-drop\",\n\t\t\tdrop_check\t\t: function (data) { return true; },\n\t\t\tdrop_finish\t\t: $.noop,\n\t\t\tdrag_target\t\t: \".jstree-draggable\",\n\t\t\tdrag_finish\t\t: $.noop,\n\t\t\tdrag_check\t\t: function (data) { return { after : false, before : false, inside : true }; }\n\t\t},\n\t\t_fn : {\n\t\t\tdnd_prepare : function () {\n\t\t\t\tif(!r || !r.length) { return; }\n\t\t\t\tthis.data.dnd.off = r.offset();\n\t\t\t\tif(this._get_settings().core.rtl) {\n\t\t\t\t\tthis.data.dnd.off.right = this.data.dnd.off.left + r.width();\n\t\t\t\t}\n\t\t\t\tif(this.data.dnd.foreign) {\n\t\t\t\t\tvar a = this._get_settings().dnd.drag_check.call(this, { \"o\" : o, \"r\" : r });\n\t\t\t\t\tthis.data.dnd.after = a.after;\n\t\t\t\t\tthis.data.dnd.before = a.before;\n\t\t\t\t\tthis.data.dnd.inside = a.inside;\n\t\t\t\t\tthis.data.dnd.prepared = true;\n\t\t\t\t\treturn this.dnd_show();\n\t\t\t\t}\n\t\t\t\tthis.prepare_move(o, r, \"before\");\n\t\t\t\tthis.data.dnd.before = this.check_move();\n\t\t\t\tthis.prepare_move(o, r, \"after\");\n\t\t\t\tthis.data.dnd.after = this.check_move();\n\t\t\t\tif(this._is_loaded(r)) {\n\t\t\t\t\tthis.prepare_move(o, r, \"inside\");\n\t\t\t\t\tthis.data.dnd.inside = this.check_move();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.data.dnd.inside = false;\n\t\t\t\t}\n\t\t\t\tthis.data.dnd.prepared = true;\n\t\t\t\treturn this.dnd_show();\n\t\t\t},\n\t\t\tdnd_show : function () {\n\t\t\t\tif(!this.data.dnd.prepared) { return; }\n\t\t\t\tvar o = [\"before\",\"inside\",\"after\"],\n\t\t\t\t\tr = false,\n\t\t\t\t\trtl = this._get_settings().core.rtl,\n\t\t\t\t\tpos;\n\t\t\t\tif(this.data.dnd.w < this.data.core.li_height/3) { o = [\"before\",\"inside\",\"after\"]; }\n\t\t\t\telse if(this.data.dnd.w <= this.data.core.li_height*2/3) {\n\t\t\t\t\to = this.data.dnd.w < this.data.core.li_height/2 ? [\"inside\",\"before\",\"after\"] : [\"inside\",\"after\",\"before\"];\n\t\t\t\t}\n\t\t\t\telse { o = [\"after\",\"inside\",\"before\"]; }\n\t\t\t\t$.each(o, $.proxy(function (i, val) { \n\t\t\t\t\tif(this.data.dnd[val]) {\n\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-ok\");\n\t\t\t\t\t\tr = val;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t}, this));\n\t\t\t\tif(r === false) { $.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\"); }\n\t\t\t\t\n\t\t\t\tpos = rtl ? (this.data.dnd.off.right - 18) : (this.data.dnd.off.left + 10);\n\t\t\t\tswitch(r) {\n\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + \"px\", \"top\" : (this.data.dnd.off.top - 6) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + \"px\", \"top\" : (this.data.dnd.off.top + this.data.core.li_height - 7) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + ( rtl ? -4 : 4) + \"px\", \"top\" : (this.data.dnd.off.top + this.data.core.li_height/2 - 5) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tm.hide();\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\treturn r;\n\t\t\t},\n\t\t\tdnd_open : function () {\n\t\t\t\tthis.data.dnd.to2 = false;\n\t\t\t\tthis.open_node(r, $.proxy(this.dnd_prepare,this), true);\n\t\t\t},\n\t\t\tdnd_finish : function (e) {\n\t\t\t\tif(this.data.dnd.foreign) {\n\t\t\t\t\tif(this.data.dnd.after || this.data.dnd.before || this.data.dnd.inside) {\n\t\t\t\t\t\tthis._get_settings().dnd.drag_finish.call(this, { \"o\" : o, \"r\" : r });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.dnd_prepare();\n\t\t\t\t\tthis.move_node(o, r, this.dnd_show(), e[this._get_settings().dnd.copy_modifier + \"Key\"]);\n\t\t\t\t}\n\t\t\t\to = false;\n\t\t\t\tr = false;\n\t\t\t\tm.hide();\n\t\t\t},\n\t\t\tdnd_enter : function (obj) {\n\t\t\t\tvar s = this._get_settings().dnd;\n\t\t\t\tthis.data.dnd.prepared = false;\n\t\t\t\tr = this._get_node(obj);\n\t\t\t\tif(s.check_timeout) { \n\t\t\t\t\t// do the calculations after a minimal timeout (users tend to drag quickly to the desired location)\n\t\t\t\t\tif(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }\n\t\t\t\t\tthis.data.dnd.to1 = setTimeout($.proxy(this.dnd_prepare, this), s.check_timeout); \n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tthis.dnd_prepare(); \n\t\t\t\t}\n\t\t\t\tif(s.open_timeout) { \n\t\t\t\t\tif(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }\n\t\t\t\t\tif(r && r.length && r.hasClass(\"jstree-closed\")) { \n\t\t\t\t\t\t// if the node is closed - open it, then recalculate\n\t\t\t\t\t\tthis.data.dnd.to2 = setTimeout($.proxy(this.dnd_open, this), s.open_timeout);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(r && r.length && r.hasClass(\"jstree-closed\")) { \n\t\t\t\t\t\tthis.dnd_open();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tstart_drag : function (obj, e) {\n\t\t\t\to = this._get_node(obj);\n\t\t\t\tif(this.data.ui && this.is_selected(o)) { o = this._get_node(null, true); }\n\t\t\t\t$.vakata.dnd.drag_start(e, { jstree : true, obj : o }, \"<ins class='jstree-icon'></ins>\" + (o.length > 1 ? \"Multiple selection\" : this.get_text(o)) );\n\t\t\t\tif(this.data.themes) { \n\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme); \n\t\t\t\t}\n\t\t\t\tvar cnt = this.get_container();\n\t\t\t\tthis.data.dnd.cof = cnt.children(\"ul\").offset();\n\t\t\t\tthis.data.dnd.cw = parseInt(cnt.width(),10);\n\t\t\t\tthis.data.dnd.ch = parseInt(cnt.height(),10);\n\t\t\t\tthis.data.dnd.active = true;\n\t\t\t}\n\t\t}\n\t});\n\t$(function() {\n\t\tvar css_string = '' + \n\t\t\t'#vakata-dragged ins { display:block; text-decoration:none; width:16px; height:16px; margin:0 0 0 0; padding:0; position:absolute; top:4px; left:4px; } ' + \n\t\t\t'#vakata-dragged .jstree-ok { background:green; } ' + \n\t\t\t'#vakata-dragged .jstree-invalid { background:red; } ' + \n\t\t\t'#jstree-marker { padding:0; margin:0; line-height:12px; font-size:1px; overflow:hidden; height:12px; width:8px; position:absolute; top:-30px; z-index:10000; background-repeat:no-repeat; display:none; background-color:silver; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t\tm = $(\"<div>\").attr({ id : \"jstree-marker\" }).hide().appendTo(\"body\");\n\t\t$(document).bind(\"drag_start.vakata\", function (e, data) {\n\t\t\tif(data.data.jstree) { \n\t\t\t\tm.show(); \n\t\t\t}\n\t\t});\n\t\t$(document).bind(\"drag_stop.vakata\", function (e, data) {\n\t\t\tif(data.data.jstree) { m.hide(); }\n\t\t});\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree checkbox plugin 1.0\n * Inserts checkboxes in front of every node\n * Depends on the ui plugin\n * DOES NOT WORK NICELY WITH MULTITREE DRAG'N'DROP\n */\n(function ($) {\n\t$.jstree.plugin(\"checkbox\", {\n\t\t__init : function () {\n\t\t\tthis.select_node = this.deselect_node = this.deselect_all = $.noop;\n\t\t\tthis.get_selected = this.get_checked;\n\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"open_node.jstree create_node.jstree clean_node.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tthis._prepare_checkboxes(data.rslt.obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tthis._prepare_checkboxes();\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"click.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tif(this._get_node(e.target).hasClass(\"jstree-checked\")) { this.uncheck_node(e.target); }\n\t\t\t\t\t\telse { this.check_node(e.target); }\n\t\t\t\t\t\tif(this.data.ui) { this.save_selected(); }\n\t\t\t\t\t\tif(this.data.cookies) { this.save_cookie(\"select_node\"); }\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t}, this));\n\t\t},\n\t\t__destroy : function () {\n\t\t\tthis.get_container().find(\".jstree-checkbox\").remove();\n\t\t},\n\t\t_fn : {\n\t\t\t_prepare_checkboxes : function (obj) {\n\t\t\t\tobj = !obj || obj == -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\tvar c, _this = this, t;\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tt = $(this);\n\t\t\t\t\tc = t.is(\"li\") && t.hasClass(\"jstree-checked\") ? \"jstree-checked\" : \"jstree-unchecked\";\n\t\t\t\t\tt.find(\"a\").not(\":has(.jstree-checkbox)\").prepend(\"<ins class='jstree-checkbox'>&#160;</ins>\").parent().not(\".jstree-checked, .jstree-unchecked\").addClass(c);\n\t\t\t\t});\n\t\t\t\tif(obj.is(\"li\")) { this._repair_state(obj); }\n\t\t\t\telse { obj.find(\"> ul > li\").each(function () { _this._repair_state(this); }); }\n\t\t\t},\n\t\t\tchange_state : function (obj, state) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tstate = (state === false || state === true) ? state : obj.hasClass(\"jstree-checked\");\n\t\t\t\tif(state) { obj.find(\"li\").andSelf().removeClass(\"jstree-checked jstree-undetermined\").addClass(\"jstree-unchecked\"); }\n\t\t\t\telse { \n\t\t\t\t\tobj.find(\"li\").andSelf().removeClass(\"jstree-unchecked jstree-undetermined\").addClass(\"jstree-checked\"); \n\t\t\t\t\tif(this.data.ui) { this.data.ui.last_selected = obj; }\n\t\t\t\t\tthis.data.checkbox.last_selected = obj;\n\t\t\t\t}\n\t\t\t\tobj.parentsUntil(\".jstree\", \"li\").each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif(state) {\n\t\t\t\t\t\tif($this.children(\"ul\").children(\".jstree-checked, .jstree-undetermined\").length) {\n\t\t\t\t\t\t\t$this.parentsUntil(\".jstree\", \"li\").andSelf().removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this.removeClass(\"jstree-checked jstree-undetermined\").addClass(\"jstree-unchecked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tif($this.children(\"ul\").children(\".jstree-unchecked, .jstree-undetermined\").length) {\n\t\t\t\t\t\t\t$this.parentsUntil(\".jstree\", \"li\").andSelf().removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this.removeClass(\"jstree-unchecked jstree-undetermined\").addClass(\"jstree-checked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tif(this.data.ui) { this.data.ui.selected = this.get_checked(); }\n\t\t\t\tthis.__callback(obj);\n\t\t\t},\n\t\t\tcheck_node : function (obj) {\n\t\t\t\tthis.change_state(obj, false);\n\t\t\t},\n\t\t\tuncheck_node : function (obj) {\n\t\t\t\tthis.change_state(obj, true);\n\t\t\t},\n\t\t\tcheck_all : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.get_container().children(\"ul\").children(\"li\").each(function () {\n\t\t\t\t\t_this.check_node(this, false);\n\t\t\t\t});\n\t\t\t},\n\t\t\tuncheck_all : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.get_container().children(\"ul\").children(\"li\").each(function () {\n\t\t\t\t\t_this.change_state(this, true);\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tis_checked : function(obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn obj.length ? obj.is(\".jstree-checked\") : false;\n\t\t\t},\n\t\t\tget_checked : function (obj) {\n\t\t\t\tobj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\treturn obj.find(\"> ul > .jstree-checked, .jstree-undetermined > ul > .jstree-checked\");\n\t\t\t},\n\t\t\tget_unchecked : function (obj) { \n\t\t\t\tobj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\treturn obj.find(\"> ul > .jstree-unchecked, .jstree-undetermined > ul > .jstree-unchecked\");\n\t\t\t},\n\n\t\t\tshow_checkboxes : function () { this.get_container().children(\"ul\").removeClass(\"jstree-no-checkboxes\"); },\n\t\t\thide_checkboxes : function () { this.get_container().children(\"ul\").addClass(\"jstree-no-checkboxes\"); },\n\n\t\t\t_repair_state : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return; }\n\t\t\t\tvar a = obj.find(\"> ul > .jstree-checked\").length,\n\t\t\t\t\tb = obj.find(\"> ul > .jstree-undetermined\").length,\n\t\t\t\t\tc = obj.find(\"> ul > li\").length;\n\n\t\t\t\tif(c === 0) { if(obj.hasClass(\"jstree-undetermined\")) { this.check_node(obj); } }\n\t\t\t\telse if(a === 0 && b === 0) { this.uncheck_node(obj); }\n\t\t\t\telse if(a === c) { this.check_node(obj); }\n\t\t\t\telse { \n\t\t\t\t\tobj.parentsUntil(\".jstree\",\"li\").removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t}\n\t\t\t},\n\t\t\treselect : function () {\n\t\t\t\tif(this.data.ui) { \n\t\t\t\t\tvar _this = this,\n\t\t\t\t\t\ts = this.data.ui.to_select;\n\t\t\t\t\ts = $.map($.makeArray(s), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t$.each(s, function (i, val) { _this.check_node(val); });\n\t\t\t\t\tthis.__callback();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree XML 1.0\n * The XML data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.vakata.xslt = function (xml, xsl, callback) {\n\t\tvar rs = \"\", xm, xs, processor, support;\n\t\tif(document.recalc) {\n\t\t\txm = document.createElement('xml');\n\t\t\txs = document.createElement('xml');\n\t\t\txm.innerHTML = xml;\n\t\t\txs.innerHTML = xsl;\n\t\t\t$(\"body\").append(xm).append(xs);\n\t\t\tsetTimeout( (function (xm, xs, callback) {\n\t\t\t\treturn function () {\n\t\t\t\t\tcallback.call(null, xm.transformNode(xs.XMLDocument));\n\t\t\t\t\tsetTimeout( (function (xm, xs) { return function () { jQuery(\"body\").remove(xm).remove(xs); }; })(xm, xs), 200);\n\t\t\t\t};\n\t\t\t}) (xm, xs, callback), 100);\n\t\t\treturn true;\n\t\t}\n\t\tif(typeof window.DOMParser !== \"undefined\" && typeof window.XMLHttpRequest !== \"undefined\" && typeof window.XSLTProcessor !== \"undefined\") {\n\t\t\tprocessor = new XSLTProcessor();\n\t\t\tsupport = $.isFunction(processor.transformDocument) ? (typeof window.XMLSerializer !== \"undefined\") : true;\n\t\t\tif(!support) { return false; }\n\t\t\txml = new DOMParser().parseFromString(xml, \"text/xml\");\n\t\t\txsl = new DOMParser().parseFromString(xsl, \"text/xml\");\n\t\t\tif($.isFunction(processor.transformDocument)) {\n\t\t\t\trs = document.implementation.createDocument(\"\", \"\", null);\n\t\t\t\tprocessor.transformDocument(xml, xsl, rs, null);\n\t\t\t\tcallback.call(null, XMLSerializer().serializeToString(rs));\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tprocessor.importStylesheet(xsl);\n\t\t\t\trs = processor.transformToFragment(xml, document);\n\t\t\t\tcallback.call(null, $(\"<div>\").append(rs).html());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t};\n\tvar xsl = {\n\t\t'nest' : '<?xml version=\"1.0\" encoding=\"utf-8\" ?>' + \n\t\t\t'<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" >' + \n\t\t\t'<xsl:output method=\"html\" encoding=\"utf-8\" omit-xml-declaration=\"yes\" standalone=\"no\" indent=\"no\" media-type=\"text/html\" />' + \n\t\t\t'<xsl:template match=\"/\">' + \n\t\t\t'\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t<xsl:with-param name=\"node\" select=\"/root\" />' + \n\t\t\t'\t</xsl:call-template>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'<xsl:template name=\"nodes\">' + \n\t\t\t'\t<xsl:param name=\"node\" />' + \n\t\t\t'\t<ul>' + \n\t\t\t'\t<xsl:for-each select=\"$node/item\">' + \n\t\t\t'\t\t<xsl:variable name=\"children\" select=\"count(./item) &gt; 0\" />' + \n\t\t\t'\t\t<li>' + \n\t\t\t'\t\t\t<xsl:attribute name=\"class\">' + \n\t\t\t'\t\t\t\t<xsl:if test=\"position() = last()\">jstree-last </xsl:if>' + \n\t\t\t'\t\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"@state = \\'open\\'\">jstree-open </xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"$children or @hasChildren or @state = \\'closed\\'\">jstree-closed </xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:otherwise>jstree-leaf </xsl:otherwise>' + \n\t\t\t'\t\t\t\t</xsl:choose>' + \n\t\t\t'\t\t\t\t<xsl:value-of select=\"@class\" />' + \n\t\t\t'\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t\t<xsl:if test=\"name() != \\'class\\' and name() != \\'state\\' and name() != \\'hasChildren\\'\">' + \n\t\t\t'\t\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t</xsl:if>' + \n\t\t\t'\t\t\t</xsl:for-each>' + \n\t\t\t'\t<ins class=\"jstree-icon\"><xsl:text>&#xa0;</xsl:text></ins>' + \n\t\t\t'\t\t\t<xsl:for-each select=\"content/name\">' + \n\t\t\t'\t\t\t\t<a>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"href\">' + \n\t\t\t'\t\t\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"@href\"><xsl:value-of select=\"@href\" /></xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:otherwise>#</xsl:otherwise>' + \n\t\t\t'\t\t\t\t\t</xsl:choose>' + \n\t\t\t'\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"class\"><xsl:value-of select=\"@lang\" /> <xsl:value-of select=\"@class\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"style\"><xsl:value-of select=\"@style\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t\t\t<xsl:if test=\"name() != \\'style\\' and name() != \\'class\\' and name() != \\'href\\'\">' + \n\t\t\t'\t\t\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t\t</xsl:if>' + \n\t\t\t'\t\t\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t\t\t<ins>' + \n\t\t\t'\t\t\t\t\t\t<xsl:attribute name=\"class\">jstree-icon ' + \n\t\t\t'\t\t\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and not(contains(@icon,\\'/\\'))\"><xsl:value-of select=\"@icon\" /></xsl:if>' + \n\t\t\t'\t\t\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and contains(@icon,\\'/\\')\"><xsl:attribute name=\"style\">background:url(<xsl:value-of select=\"@icon\" />) center center no-repeat;</xsl:attribute></xsl:if>' + \n\t\t\t'\t\t\t\t\t\t<xsl:text>&#xa0;</xsl:text>' + \n\t\t\t'\t\t\t\t\t</ins>' + \n\t\t\t'\t\t\t\t\t<xsl:value-of select=\"current()\" />' + \n\t\t\t'\t\t\t\t</a>' + \n\t\t\t'\t\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t<xsl:if test=\"$children or @hasChildren\"><xsl:call-template name=\"nodes\"><xsl:with-param name=\"node\" select=\"current()\" /></xsl:call-template></xsl:if>' + \n\t\t\t'\t\t</li>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t</ul>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'</xsl:stylesheet>',\n\n\t\t'flat' : '<?xml version=\"1.0\" encoding=\"utf-8\" ?>' + \n\t\t\t'<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" >' + \n\t\t\t'<xsl:output method=\"html\" encoding=\"utf-8\" omit-xml-declaration=\"yes\" standalone=\"no\" indent=\"no\" media-type=\"text/xml\" />' + \n\t\t\t'<xsl:template match=\"/\">' + \n\t\t\t'\t<ul>' + \n\t\t\t'\t<xsl:for-each select=\"//item[not(@parent_id) or @parent_id=0 or not(@parent_id = //item/@id)]\">' + /* the last `or` may be removed */\n\t\t\t'\t\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t\t<xsl:with-param name=\"node\" select=\".\" />' + \n\t\t\t'\t\t\t<xsl:with-param name=\"is_last\" select=\"number(position() = last())\" />' + \n\t\t\t'\t\t</xsl:call-template>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t</ul>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'<xsl:template name=\"nodes\">' + \n\t\t\t'\t<xsl:param name=\"node\" />' + \n\t\t\t'\t<xsl:param name=\"is_last\" />' + \n\t\t\t'\t<xsl:variable name=\"children\" select=\"count(//item[@parent_id=$node/attribute::id]) &gt; 0\" />' + \n\t\t\t'\t<li>' + \n\t\t\t'\t<xsl:attribute name=\"class\">' + \n\t\t\t'\t\t<xsl:if test=\"$is_last = true()\">jstree-last </xsl:if>' + \n\t\t\t'\t\t<xsl:choose>' + \n\t\t\t'\t\t\t<xsl:when test=\"@state = \\'open\\'\">jstree-open </xsl:when>' + \n\t\t\t'\t\t\t<xsl:when test=\"$children or @hasChildren or @state = \\'closed\\'\">jstree-closed </xsl:when>' + \n\t\t\t'\t\t\t<xsl:otherwise>jstree-leaf </xsl:otherwise>' + \n\t\t\t'\t\t</xsl:choose>' + \n\t\t\t'\t\t<xsl:value-of select=\"@class\" />' + \n\t\t\t'\t</xsl:attribute>' + \n\t\t\t'\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t<xsl:if test=\"name() != \\'parent_id\\' and name() != \\'hasChildren\\' and name() != \\'class\\' and name() != \\'state\\'\">' + \n\t\t\t'\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t</xsl:if>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t<ins class=\"jstree-icon\"><xsl:text>&#xa0;</xsl:text></ins>' + \n\t\t\t'\t<xsl:for-each select=\"content/name\">' + \n\t\t\t'\t\t<a>' + \n\t\t\t'\t\t<xsl:attribute name=\"href\">' + \n\t\t\t'\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t<xsl:when test=\"@href\"><xsl:value-of select=\"@href\" /></xsl:when>' + \n\t\t\t'\t\t\t<xsl:otherwise>#</xsl:otherwise>' + \n\t\t\t'\t\t\t</xsl:choose>' + \n\t\t\t'\t\t</xsl:attribute>' + \n\t\t\t'\t\t<xsl:attribute name=\"class\"><xsl:value-of select=\"@lang\" /> <xsl:value-of select=\"@class\" /></xsl:attribute>' + \n\t\t\t'\t\t<xsl:attribute name=\"style\"><xsl:value-of select=\"@style\" /></xsl:attribute>' + \n\t\t\t'\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t<xsl:if test=\"name() != \\'style\\' and name() != \\'class\\' and name() != \\'href\\'\">' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t</xsl:if>' + \n\t\t\t'\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t<ins>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"class\">jstree-icon ' + \n\t\t\t'\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and not(contains(@icon,\\'/\\'))\"><xsl:value-of select=\"@icon\" /></xsl:if>' + \n\t\t\t'\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and contains(@icon,\\'/\\')\"><xsl:attribute name=\"style\">background:url(<xsl:value-of select=\"@icon\" />) center center no-repeat;</xsl:attribute></xsl:if>' + \n\t\t\t'\t\t\t\t<xsl:text>&#xa0;</xsl:text>' + \n\t\t\t'\t\t\t</ins>' + \n\t\t\t'\t\t\t<xsl:value-of select=\"current()\" />' + \n\t\t\t'\t\t</a>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t<xsl:if test=\"$children\">' + \n\t\t\t'\t\t<ul>' + \n\t\t\t'\t\t<xsl:for-each select=\"//item[@parent_id=$node/attribute::id]\">' + \n\t\t\t'\t\t\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t\t\t<xsl:with-param name=\"node\" select=\".\" />' + \n\t\t\t'\t\t\t\t<xsl:with-param name=\"is_last\" select=\"number(position() = last())\" />' + \n\t\t\t'\t\t\t</xsl:call-template>' + \n\t\t\t'\t\t</xsl:for-each>' + \n\t\t\t'\t\t</ul>' + \n\t\t\t'\t</xsl:if>' + \n\t\t\t'\t</li>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'</xsl:stylesheet>'\n\t};\n\t$.jstree.plugin(\"xml_data\", {\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\txsl : \"flat\",\n\t\t\tclean_node : false,\n\t\t\tcorrect_state : true\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_xml(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tvar s = this._get_settings().xml_data;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn obj == -1 || !obj || !s.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_xml : function (obj, s_call, e_call) {\n\t\t\t\tvar s = this.get_settings().xml_data,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax): throw \"Neither data nor ajax settings supplied.\";\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\tthis.parse_xml(s.data, $.proxy(function (d) {\n\t\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\t\td = d.replace(/ ?xmlns=\"[^\"]*\"/ig, \"\");\n\t\t\t\t\t\t\t\t\tif(d.length > 10) {\n\t\t\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty().append(d.children());\n\t\t\t\t\t\t\t\t\t\tif(s.clean_node) { this.clean_node(obj); }\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse { \n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty(); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().xml_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj !== -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\td = x.responseText;\n\t\t\t\t\t\t\tvar sf = this.get_settings().xml_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d == \"\") {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tthis.parse_xml(d, $.proxy(function (d) {\n\t\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\t\td = d.replace(/ ?xmlns=\"[^\"]*\"/ig, \"\");\n\t\t\t\t\t\t\t\t\tif(d.length > 10) {\n\t\t\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\t\t\tif(obj === -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()); }\n\t\t\t\t\t\t\t\t\t\telse { obj.children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.append(d); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\t\t\tif(s.clean_node) { this.clean_node(obj); }\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\tif(obj && obj !== -1) { \n\t\t\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty();\n\t\t\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"xml\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\tparse_xml : function (xml, callback) {\n\t\t\t\tvar s = this._get_settings().xml_data;\n\t\t\t\t$.vakata.xslt(xml, xsl[s.xsl], callback);\n\t\t\t},\n\t\t\tget_xml : function (tp, obj, li_attr, a_attr, is_callback) {\n\t\t\t\tvar result = \"\", \n\t\t\t\t\ts = this._get_settings(), \n\t\t\t\t\t_this = this,\n\t\t\t\t\ttmp1, tmp2, li, a, lang;\n\t\t\t\tif(!tp) { tp = \"flat\"; }\n\t\t\t\tif(!is_callback) { is_callback = 0; }\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container().find(\"> ul > li\"); }\n\t\t\t\tli_attr = $.isArray(li_attr) ? li_attr : [ \"id\", \"class\" ];\n\t\t\t\tif(!is_callback && this.data.types && $.inArray(s.types.type_attr, li_attr) === -1) { li_attr.push(s.types.type_attr); }\n\n\t\t\t\ta_attr = $.isArray(a_attr) ? a_attr : [ ];\n\n\t\t\t\tif(!is_callback) { result += \"<root>\"; }\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tresult += \"<item\";\n\t\t\t\t\tli = $(this);\n\t\t\t\t\t$.each(li_attr, function (i, v) { result += \" \" + v + \"=\\\"\" + (li.attr(v) || \"\").replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\") + \"\\\"\"; });\n\t\t\t\t\tif(li.hasClass(\"jstree-open\")) { result += \" state=\\\"open\\\"\"; }\n\t\t\t\t\tif(li.hasClass(\"jstree-closed\")) { result += \" state=\\\"closed\\\"\"; }\n\t\t\t\t\tif(tp === \"flat\") { result += \" parent_id=\\\"\" + is_callback + \"\\\"\"; }\n\t\t\t\t\tresult += \">\";\n\t\t\t\t\tresult += \"<content>\";\n\t\t\t\t\ta = li.children(\"a\");\n\t\t\t\t\ta.each(function () {\n\t\t\t\t\t\ttmp1 = $(this);\n\t\t\t\t\t\tlang = false;\n\t\t\t\t\t\tresult += \"<name\";\n\t\t\t\t\t\tif($.inArray(\"languages\", s.plugins) !== -1) {\n\t\t\t\t\t\t\t$.each(s.languages, function (k, z) {\n\t\t\t\t\t\t\t\tif(tmp1.hasClass(z)) { result += \" lang=\\\"\" + z + \"\\\"\"; lang = z; return false; }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(a_attr.length) { \n\t\t\t\t\t\t\t$.each(a_attr, function (k, z) {\n\t\t\t\t\t\t\t\tresult += \" \" + z + \"=\\\"\" + (tmp1.attr(z) || \"\").replace(/jstree[^ ]*|$/ig,'') + \"\\\"\";\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(tmp1.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\").length) {\n\t\t\t\t\t\t\tresult += ' icon=\"' + tmp1.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\") + '\"';\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(tmp1.children(\"ins\").get(0).style.backgroundImage.length) {\n\t\t\t\t\t\t\tresult += ' icon=\"' + tmp1.children(\"ins\").get(0).style.backgroundImage.replace(\"url(\",\"\").replace(\")\",\"\") + '\"';\n\t\t\t\t\t\t}\n\t\t\t\t\t\tresult += \">\";\n\t\t\t\t\t\tresult += \"<![CDATA[\" + _this.get_text(tmp1, lang) + \"]]>\";\n\t\t\t\t\t\tresult += \"</name>\";\n\t\t\t\t\t});\n\t\t\t\t\tresult += \"</content>\";\n\t\t\t\t\ttmp2 = li[0].id;\n\t\t\t\t\tli = li.find(\"> ul > li\");\n\t\t\t\t\tif(li.length) { tmp2 = _this.get_xml(tp, li, li_attr, a_attr, tmp2); }\n\t\t\t\t\telse { tmp2 = \"\"; }\n\t\t\t\t\tif(tp == \"nest\") { result += tmp2; }\n\t\t\t\t\tresult += \"</item>\";\n\t\t\t\t\tif(tp == \"flat\") { result += tmp2; }\n\t\t\t\t});\n\t\t\t\tif(!is_callback) { result += \"</root>\"; }\n\t\t\t\treturn result;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree search plugin 1.0\n * Enables both sync and async search on the tree\n * DOES NOT WORK WITH JSON PROGRESSIVE RENDER\n */\n(function ($) {\n\t$.expr[':'].jstree_contains = function(a,i,m){\n\t\treturn (a.textContent || a.innerText || \"\").toLowerCase().indexOf(m[3].toLowerCase())>=0;\n\t};\n\t$.jstree.plugin(\"search\", {\n\t\t__init : function () {\n\t\t\tthis.data.search.str = \"\";\n\t\t\tthis.data.search.result = $();\n\t\t},\n\t\tdefaults : {\n\t\t\tajax : false, // OR ajax object\n\t\t\tcase_insensitive : false\n\t\t},\n\t\t_fn : {\n\t\t\tsearch : function (str, skip_async) {\n\t\t\t\tif(str === \"\") { return; }\n\t\t\t\tvar s = this.get_settings().search, \n\t\t\t\t\tt = this,\n\t\t\t\t\terror_func = function () { },\n\t\t\t\t\tsuccess_func = function () { };\n\t\t\t\tthis.data.search.str = str;\n\n\t\t\t\tif(!skip_async && s.ajax !== false && this.get_container().find(\".jstree-closed:eq(0)\").length > 0) {\n\t\t\t\t\tthis.search.supress_callback = true;\n\t\t\t\t\terror_func = function () { };\n\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\tvar sf = this.get_settings().search.ajax.success; \n\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\tthis.data.search.to_open = d;\n\t\t\t\t\t\tthis._search_open();\n\t\t\t\t\t};\n\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, str); }\n\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, str); }\n\t\t\t\t\tif(!s.ajax.data) { s.ajax.data = { \"search_string\" : str }; }\n\t\t\t\t\tif(!s.ajax.dataType || /^json/.exec(s.ajax.dataType)) { s.ajax.dataType = \"json\"; }\n\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif(this.data.search.result.length) { this.clear_search(); }\n\t\t\t\tthis.data.search.result = this.get_container().find(\"a\" + (this.data.languages ? \".\" + this.get_lang() : \"\" ) + \":\" + (s.case_insensitive ? \"jstree_contains\" : \"contains\") + \"(\" + this.data.search.str + \")\");\n\t\t\t\tthis.data.search.result.addClass(\"jstree-search\").parents(\".jstree-closed\").each(function () {\n\t\t\t\t\tt.open_node(this, false, true);\n\t\t\t\t});\n\t\t\t\tthis.__callback({ nodes : this.data.search.result, str : str });\n\t\t\t},\n\t\t\tclear_search : function (str) {\n\t\t\t\tthis.data.search.result.removeClass(\"jstree-search\");\n\t\t\t\tthis.__callback(this.data.search.result);\n\t\t\t\tthis.data.search.result = $();\n\t\t\t},\n\t\t\t_search_open : function (is_callback) {\n\t\t\t\tvar _this = this,\n\t\t\t\t\tdone = true,\n\t\t\t\t\tcurrent = [],\n\t\t\t\t\tremaining = [];\n\t\t\t\tif(this.data.search.to_open.length) {\n\t\t\t\t\t$.each(this.data.search.to_open, function (i, val) {\n\t\t\t\t\t\tif(val == \"#\") { return true; }\n\t\t\t\t\t\tif($(val).length && $(val).is(\".jstree-closed\")) { current.push(val); }\n\t\t\t\t\t\telse { remaining.push(val); }\n\t\t\t\t\t});\n\t\t\t\t\tif(current.length) {\n\t\t\t\t\t\tthis.data.search.to_open = remaining;\n\t\t\t\t\t\t$.each(current, function (i, val) { \n\t\t\t\t\t\t\t_this.open_node(val, function () { _this._search_open(true); }); \n\t\t\t\t\t\t});\n\t\t\t\t\t\tdone = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(done) { this.search(this.data.search.str, true); }\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree contextmenu plugin 1.0\n */\n(function ($) {\n\t$.vakata.context = {\n\t\tcnt\t\t: $(\"<div id='vakata-contextmenu'>\"),\n\t\tvis\t\t: false,\n\t\ttgt\t\t: false,\n\t\tpar\t\t: false,\n\t\tfunc\t: false,\n\t\tdata\t: false,\n\t\tshow\t: function (s, t, x, y, d, p) {\n\t\t\tvar html = $.vakata.context.parse(s), h, w;\n\t\t\tif(!html) { return; }\n\t\t\t$.vakata.context.vis = true;\n\t\t\t$.vakata.context.tgt = t;\n\t\t\t$.vakata.context.par = p || t || null;\n\t\t\t$.vakata.context.data = d || null;\n\t\t\t$.vakata.context.cnt\n\t\t\t\t.html(html)\n\t\t\t\t.css({ \"visibility\" : \"hidden\", \"display\" : \"block\", \"left\" : 0, \"top\" : 0 });\n\t\t\th = $.vakata.context.cnt.height();\n\t\t\tw = $.vakata.context.cnt.width();\n\t\t\tif(x + w > $(document).width()) { \n\t\t\t\tx = $(document).width() - (w + 5); \n\t\t\t\t$.vakata.context.cnt.find(\"li > ul\").addClass(\"right\"); \n\t\t\t}\n\t\t\tif(y + h > $(document).height()) { \n\t\t\t\ty = y - (h + t[0].offsetHeight); \n\t\t\t\t$.vakata.context.cnt.find(\"li > ul\").addClass(\"bottom\"); \n\t\t\t}\n\n\t\t\t$.vakata.context.cnt\n\t\t\t\t.css({ \"left\" : x, \"top\" : y })\n\t\t\t\t.find(\"li:has(ul)\")\n\t\t\t\t\t.bind(\"mouseenter\", function (e) { \n\t\t\t\t\t\tvar w = $(document).width(),\n\t\t\t\t\t\t\th = $(document).height(),\n\t\t\t\t\t\t\tul = $(this).children(\"ul\").show(); \n\t\t\t\t\t\tif(w !== $(document).width()) { ul.toggleClass(\"right\"); }\n\t\t\t\t\t\tif(h !== $(document).height()) { ul.toggleClass(\"bottom\"); }\n\t\t\t\t\t})\n\t\t\t\t\t.bind(\"mouseleave\", function (e) { \n\t\t\t\t\t\t$(this).children(\"ul\").hide(); \n\t\t\t\t\t})\n\t\t\t\t\t.end()\n\t\t\t\t.css({ \"visibility\" : \"visible\" })\n\t\t\t\t.show();\n\t\t\t$(document).triggerHandler(\"context_show.vakata\");\n\t\t},\n\t\thide\t: function () {\n\t\t\t$.vakata.context.vis = false;\n\t\t\t$.vakata.context.cnt.attr(\"class\",\"\").hide();\n\t\t\t$(document).triggerHandler(\"context_hide.vakata\");\n\t\t},\n\t\tparse\t: function (s, is_callback) {\n\t\t\tif(!s) { return false; }\n\t\t\tvar str = \"\",\n\t\t\t\ttmp = false,\n\t\t\t\twas_sep = true;\n\t\t\tif(!is_callback) { $.vakata.context.func = {}; }\n\t\t\tstr += \"<ul>\";\n\t\t\t$.each(s, function (i, val) {\n\t\t\t\tif(!val) { return true; }\n\t\t\t\t$.vakata.context.func[i] = val.action;\n\t\t\t\tif(!was_sep && val.separator_before) {\n\t\t\t\t\tstr += \"<li class='vakata-separator vakata-separator-before'></li>\";\n\t\t\t\t}\n\t\t\t\twas_sep = false;\n\t\t\t\tstr += \"<li class='\" + (val._class || \"\") + (val._disabled ? \" jstree-contextmenu-disabled \" : \"\") + \"'><ins \";\n\t\t\t\tif(val.icon && val.icon.indexOf(\"/\") === -1) { str += \" class='\" + val.icon + \"' \"; }\n\t\t\t\tif(val.icon && val.icon.indexOf(\"/\") !== -1) { str += \" style='background:url(\" + val.icon + \") center center no-repeat;' \"; }\n\t\t\t\tstr += \">&#160;</ins><a href='#' rel='\" + i + \"'>\";\n\t\t\t\tif(val.submenu) {\n\t\t\t\t\tstr += \"<span style='float:right;'>&raquo;</span>\";\n\t\t\t\t}\n\t\t\t\tstr += val.label + \"</a>\";\n\t\t\t\tif(val.submenu) {\n\t\t\t\t\ttmp = $.vakata.context.parse(val.submenu, true);\n\t\t\t\t\tif(tmp) { str += tmp; }\n\t\t\t\t}\n\t\t\t\tstr += \"</li>\";\n\t\t\t\tif(val.separator_after) {\n\t\t\t\t\tstr += \"<li class='vakata-separator vakata-separator-after'></li>\";\n\t\t\t\t\twas_sep = true;\n\t\t\t\t}\n\t\t\t});\n\t\t\tstr = str.replace(/<li class\\='vakata-separator vakata-separator-after'\\><\\/li\\>$/,\"\");\n\t\t\tstr += \"</ul>\";\n\t\t\treturn str.length > 10 ? str : false;\n\t\t},\n\t\texec\t: function (i) {\n\t\t\tif($.isFunction($.vakata.context.func[i])) {\n\t\t\t\t$.vakata.context.func[i].call($.vakata.context.data, $.vakata.context.par);\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse { return false; }\n\t\t}\n\t};\n\t$(function () {\n\t\tvar css_string = '' + \n\t\t\t'#vakata-contextmenu { display:none; position:absolute; margin:0; padding:0; min-width:180px; background:#ebebeb; border:1px solid silver; z-index:10000; *width:180px; } ' + \n\t\t\t'#vakata-contextmenu ul { min-width:180px; *width:180px; } ' + \n\t\t\t'#vakata-contextmenu ul, #vakata-contextmenu li { margin:0; padding:0; list-style-type:none; display:block; } ' + \n\t\t\t'#vakata-contextmenu li { line-height:20px; min-height:20px; position:relative; padding:0px; } ' + \n\t\t\t'#vakata-contextmenu li a { padding:1px 6px; line-height:17px; display:block; text-decoration:none; margin:1px 1px 0 1px; } ' + \n\t\t\t'#vakata-contextmenu li ins { float:left; width:16px; height:16px; text-decoration:none; margin-right:2px; } ' + \n\t\t\t'#vakata-contextmenu li a:hover, #vakata-contextmenu li.vakata-hover > a { background:gray; color:white; } ' + \n\t\t\t'#vakata-contextmenu li ul { display:none; position:absolute; top:-2px; left:100%; background:#ebebeb; border:1px solid gray; } ' + \n\t\t\t'#vakata-contextmenu .right { right:100%; left:auto; } ' + \n\t\t\t'#vakata-contextmenu .bottom { bottom:-1px; top:auto; } ' + \n\t\t\t'#vakata-contextmenu li.vakata-separator { min-height:0; height:1px; line-height:1px; font-size:1px; overflow:hidden; margin:0 2px; background:silver; /* border-top:1px solid #fefefe; */ padding:0; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t\t$.vakata.context.cnt\n\t\t\t.delegate(\"a\",\"click\", function (e) { e.preventDefault(); })\n\t\t\t.delegate(\"a\",\"mouseup\", function (e) {\n\t\t\t\tif(!$(this).parent().hasClass(\"jstree-contextmenu-disabled\") && $.vakata.context.exec($(this).attr(\"rel\"))) {\n\t\t\t\t\t$.vakata.context.hide();\n\t\t\t\t}\n\t\t\t\telse { $(this).blur(); }\n\t\t\t})\n\t\t\t.delegate(\"a\",\"mouseover\", function () {\n\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").removeClass(\"vakata-hover\");\n\t\t\t})\n\t\t\t.appendTo(\"body\");\n\t\t$(document).bind(\"mousedown\", function (e) { if($.vakata.context.vis && !$.contains($.vakata.context.cnt[0], e.target)) { $.vakata.context.hide(); } });\n\t\tif(typeof $.hotkeys !== \"undefined\") {\n\t\t\t$(document)\n\t\t\t\t.bind(\"keydown\", \"up\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\tvar o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\".vakata-hover\").removeClass(\"vakata-hover\").prevAll(\"li:not(.vakata-separator)\").first();\n\t\t\t\t\t\tif(!o.length) { o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\"li:not(.vakata-separator)\").last(); }\n\t\t\t\t\t\to.addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"down\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\tvar o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\".vakata-hover\").removeClass(\"vakata-hover\").nextAll(\"li:not(.vakata-separator)\").first();\n\t\t\t\t\t\tif(!o.length) { o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\"li:not(.vakata-separator)\").first(); }\n\t\t\t\t\t\to.addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"right\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").children(\"ul\").show().children(\"li:not(.vakata-separator)\").removeClass(\"vakata-hover\").first().addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"left\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").children(\"ul\").hide().children(\".vakata-separator\").removeClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"esc\", function (e) { \n\t\t\t\t\t$.vakata.context.hide(); \n\t\t\t\t\te.preventDefault();\n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"space\", function (e) { \n\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").last().children(\"a\").click();\n\t\t\t\t\te.preventDefault();\n\t\t\t\t});\n\t\t}\n\t});\n\n\t$.jstree.plugin(\"contextmenu\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.delegate(\"a\", \"contextmenu.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tthis.show_contextmenu(e.currentTarget, e.pageX, e.pageY);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"destroy.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif(this.data.contextmenu) {\n\t\t\t\t\t\t\t$.vakata.context.hide();\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t\t$(document).bind(\"context_hide.vakata\", $.proxy(function () { this.data.contextmenu = false; }, this));\n\t\t},\n\t\tdefaults : { \n\t\t\tselect_node : false, // requires UI plugin\n\t\t\tshow_at_node : true,\n\t\t\titems : { // Could be a function that should return an object like this one\n\t\t\t\t\"create\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"separator_after\"\t: true,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Create\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.create(obj); }\n\t\t\t\t},\n\t\t\t\t\"rename\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Rename\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.rename(obj); }\n\t\t\t\t},\n\t\t\t\t\"remove\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Delete\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.remove(obj); }\n\t\t\t\t},\n\t\t\t\t\"ccp\" : {\n\t\t\t\t\t\"separator_before\"\t: true,\n\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Edit\",\n\t\t\t\t\t\"action\"\t\t\t: false,\n\t\t\t\t\t\"submenu\" : { \n\t\t\t\t\t\t\"cut\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Cut\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.cut(obj); }\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"copy\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Copy\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.copy(obj); }\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"paste\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Paste\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.paste(obj); }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\tshow_contextmenu : function (obj, x, y) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar s = this.get_settings().contextmenu,\n\t\t\t\t\ta = obj.children(\"a:visible:eq(0)\"),\n\t\t\t\t\to = false;\n\t\t\t\tif(s.select_node && this.data.ui && !this.is_selected(obj)) {\n\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\tthis.select_node(obj, true);\n\t\t\t\t}\n\t\t\t\tif(s.show_at_node || typeof x === \"undefined\" || typeof y === \"undefined\") {\n\t\t\t\t\to = a.offset();\n\t\t\t\t\tx = o.left;\n\t\t\t\t\ty = o.top + this.data.core.li_height;\n\t\t\t\t}\n\t\t\t\tif($.isFunction(s.items)) { s.items = s.items.call(this, obj); }\n\t\t\t\tthis.data.contextmenu = true;\n\t\t\t\t$.vakata.context.show(s.items, a, x, y, this, obj);\n\t\t\t\tif(this.data.themes) { $.vakata.context.cnt.attr(\"class\", \"jstree-\" + this.data.themes.theme + \"-context\"); }\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree types plugin 1.0\n * Adds support types of nodes\n * You can set an attribute on each li node, that represents its type.\n * According to the type setting the node may get custom icon/validation rules\n */\n(function ($) {\n\t$.jstree.plugin(\"types\", {\n\t\t__init : function () {\n\t\t\tvar s = this._get_settings().types;\n\t\t\tthis.data.types.attach_to = [];\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"init.jstree\", $.proxy(function () { \n\t\t\t\t\t\tvar types = s.types, \n\t\t\t\t\t\t\tattr  = s.type_attr, \n\t\t\t\t\t\t\ticons_css = \"\", \n\t\t\t\t\t\t\t_this = this;\n\n\t\t\t\t\t\t$.each(types, function (i, tp) {\n\t\t\t\t\t\t\t$.each(tp, function (k, v) { \n\t\t\t\t\t\t\t\tif(!/^(max_depth|max_children|icon|valid_children)$/.test(k)) { _this.data.types.attach_to.push(k); }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tif(!tp.icon) { return true; }\n\t\t\t\t\t\t\tif( tp.icon.image || tp.icon.position) {\n\t\t\t\t\t\t\t\tif(i == \"default\")\t{ icons_css += '.jstree-' + _this.get_index() + ' a > .jstree-icon { '; }\n\t\t\t\t\t\t\t\telse\t\t\t\t{ icons_css += '.jstree-' + _this.get_index() + ' li[' + attr + '=' + i + '] > a > .jstree-icon { '; }\n\t\t\t\t\t\t\t\tif(tp.icon.image)\t{ icons_css += ' background-image:url(' + tp.icon.image + '); '; }\n\t\t\t\t\t\t\t\tif(tp.icon.position){ icons_css += ' background-position:' + tp.icon.position + '; '; }\n\t\t\t\t\t\t\t\telse\t\t\t\t{ icons_css += ' background-position:0 0; '; }\n\t\t\t\t\t\t\t\ticons_css += '} ';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t\tif(icons_css != \"\") { $.vakata.css.add_sheet({ 'str' : icons_css }); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"before.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tif($.inArray(data.func, this.data.types.attach_to) !== -1) {\n\t\t\t\t\t\t\tvar s = this._get_settings().types.types,\n\t\t\t\t\t\t\t\tt = this._get_type(data.args[0]);\n\t\t\t\t\t\t\tif(\n\t\t\t\t\t\t\t\t( \n\t\t\t\t\t\t\t\t\t(s[t] && typeof s[t][data.func] !== \"undefined\") || \n\t\t\t\t\t\t\t\t\t(s[\"default\"] && typeof s[\"default\"][data.func] !== \"undefined\")\n\t\t\t\t\t\t\t\t) && !this._check(data.func, data.args[0])\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\te.stopImmediatePropagation();\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\t// defines maximum number of root nodes (-1 means unlimited, -2 means disable max_children checking)\n\t\t\tmax_children\t\t: -1,\n\t\t\t// defines the maximum depth of the tree (-1 means unlimited, -2 means disable max_depth checking)\n\t\t\tmax_depth\t\t\t: -1,\n\t\t\t// defines valid node types for the root nodes\n\t\t\tvalid_children\t\t: \"all\",\n\n\t\t\t// where is the type stores (the rel attribute of the LI element)\n\t\t\ttype_attr : \"rel\",\n\t\t\t// a list of types\n\t\t\ttypes : {\n\t\t\t\t// the default type\n\t\t\t\t\"default\" : {\n\t\t\t\t\t\"max_children\"\t: -1,\n\t\t\t\t\t\"max_depth\"\t\t: -1,\n\t\t\t\t\t\"valid_children\": \"all\"\n\n\t\t\t\t\t// Bound functions - you can bind any other function here (using boolean or function)\n\t\t\t\t\t//\"select_node\"\t: true,\n\t\t\t\t\t//\"open_node\"\t: true,\n\t\t\t\t\t//\"close_node\"\t: true,\n\t\t\t\t\t//\"create_node\"\t: true,\n\t\t\t\t\t//\"delete_node\"\t: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\t_get_type : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn (!obj || !obj.length) ? false : obj.attr(this._get_settings().types.type_attr) || \"default\";\n\t\t\t},\n\t\t\tset_type : function (str, obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn (!obj.length || !str) ? false : obj.attr(this._get_settings().types.type_attr, str);\n\t\t\t},\n\t\t\t_check : function (rule, obj, opts) {\n\t\t\t\tvar v = false, t = this._get_type(obj), d = 0, _this = this, s = this._get_settings().types;\n\t\t\t\tif(obj === -1) { \n\t\t\t\t\tif(!!s[rule]) { v = s[rule]; }\n\t\t\t\t\telse { return; }\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(t === false) { return; }\n\t\t\t\t\tif(!!s.types[t] && !!s.types[t][rule]) { v = s.types[t][rule]; }\n\t\t\t\t\telse if(!!s.types[\"default\"] && !!s.types[\"default\"][rule]) { v = s.types[\"default\"][rule]; }\n\t\t\t\t}\n\t\t\t\tif($.isFunction(v)) { v = v.call(this, obj); }\n\t\t\t\tif(rule === \"max_depth\" && obj !== -1 && opts !== false && s.max_depth !== -2 && v !== 0) {\n\t\t\t\t\t// also include the node itself - otherwise if root node it is not checked\n\t\t\t\t\tthis._get_node(obj).children(\"a:eq(0)\").parentsUntil(\".jstree\",\"li\").each(function (i) {\n\t\t\t\t\t\t// check if current depth already exceeds global tree depth\n\t\t\t\t\t\tif(s.max_depth !== -1 && s.max_depth - (i + 1) <= 0) { v = 0; return false; }\n\t\t\t\t\t\td = (i === 0) ? v : _this._check(rule, this, false);\n\t\t\t\t\t\t// check if current node max depth is already matched or exceeded\n\t\t\t\t\t\tif(d !== -1 && d - (i + 1) <= 0) { v = 0; return false; }\n\t\t\t\t\t\t// otherwise - set the max depth to the current value minus current depth\n\t\t\t\t\t\tif(d >= 0 && (d - (i + 1) < v || v < 0) ) { v = d - (i + 1); }\n\t\t\t\t\t\t// if the global tree depth exists and it minus the nodes calculated so far is less than `v` or `v` is unlimited\n\t\t\t\t\t\tif(s.max_depth >= 0 && (s.max_depth - (i + 1) < v || v < 0) ) { v = s.max_depth - (i + 1); }\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn v;\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar m  = this._get_move(),\n\t\t\t\t\ts  = m.rt._get_settings().types,\n\t\t\t\t\tmc = m.rt._check(\"max_children\", m.cr),\n\t\t\t\t\tmd = m.rt._check(\"max_depth\", m.cr),\n\t\t\t\t\tvc = m.rt._check(\"valid_children\", m.cr),\n\t\t\t\t\tch = 0, d = 1, t;\n\n\t\t\t\tif(vc === \"none\") { return false; } \n\t\t\t\tif($.isArray(vc) && m.ot && m.ot._get_type) {\n\t\t\t\t\tm.o.each(function () {\n\t\t\t\t\t\tif($.inArray(m.ot._get_type(this), vc) === -1) { d = false; return false; }\n\t\t\t\t\t});\n\t\t\t\t\tif(d === false) { return false; }\n\t\t\t\t}\n\t\t\t\tif(s.max_children !== -2 && mc !== -1) {\n\t\t\t\t\tch = m.cr === -1 ? this.get_container().children(\"> ul > li\").not(m.o).length : m.cr.children(\"> ul > li\").not(m.o).length;\n\t\t\t\t\tif(ch + m.o.length > mc) { return false; }\n\t\t\t\t}\n\t\t\t\tif(s.max_depth !== -2 && md !== -1) {\n\t\t\t\t\td = 0;\n\t\t\t\t\tif(md === 0) { return false; }\n\t\t\t\t\tif(typeof m.o.d === \"undefined\") {\n\t\t\t\t\t\t// TODO: deal with progressive rendering and async when checking max_depth (how to know the depth of the moved node)\n\t\t\t\t\t\tt = m.o;\n\t\t\t\t\t\twhile(t.length > 0) {\n\t\t\t\t\t\t\tt = t.find(\"> ul > li\");\n\t\t\t\t\t\t\td ++;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tm.o.d = d;\n\t\t\t\t\t}\n\t\t\t\t\tif(md - m.o.d < 0) { return false; }\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tcreate_node : function (obj, position, js, callback, is_loaded, skip_check) {\n\t\t\t\tif(!skip_check && (is_loaded || this._is_loaded(obj))) {\n\t\t\t\t\tvar p  = (position && position.match(/^before|after$/i) && obj !== -1) ? this._get_parent(obj) : this._get_node(obj),\n\t\t\t\t\t\ts  = this._get_settings().types,\n\t\t\t\t\t\tmc = this._check(\"max_children\", p),\n\t\t\t\t\t\tmd = this._check(\"max_depth\", p),\n\t\t\t\t\t\tvc = this._check(\"valid_children\", p),\n\t\t\t\t\t\tch;\n\t\t\t\t\tif(!js) { js = {}; }\n\t\t\t\t\tif(vc === \"none\") { return false; } \n\t\t\t\t\tif($.isArray(vc)) {\n\t\t\t\t\t\tif(!js.attr || !js.attr[s.type_attr]) { \n\t\t\t\t\t\t\tif(!js.attr) { js.attr = {}; }\n\t\t\t\t\t\t\tjs.attr[s.type_attr] = vc[0]; \n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif($.inArray(js.attr[s.type_attr], vc) === -1) { return false; }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(s.max_children !== -2 && mc !== -1) {\n\t\t\t\t\t\tch = p === -1 ? this.get_container().children(\"> ul > li\").length : p.children(\"> ul > li\").length;\n\t\t\t\t\t\tif(ch + 1 > mc) { return false; }\n\t\t\t\t\t}\n\t\t\t\t\tif(s.max_depth !== -2 && md !== -1 && (md - 1) < 0) { return false; }\n\t\t\t\t}\n\t\t\t\treturn this.__call_old(true, obj, position, js, callback, is_loaded, skip_check);\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree HTML data 1.0\n * The HTML data store. Datastores are build by replacing the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.jstree.plugin(\"html_data\", {\n\t\t__init : function () { \n\t\t\t// this used to use html() and clean the whitespace, but this way any attached data was lost\n\t\t\tthis.data.html_data.original_container_html = this.get_container().find(\" > ul > li\").clone(true);\n\t\t\t// remove white space from LI node - otherwise nodes appear a bit to the right\n\t\t\tthis.data.html_data.original_container_html.find(\"li\").andSelf().contents().filter(function() { return this.nodeType == 3; }).remove();\n\t\t},\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\tcorrect_state : true\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_html(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tobj = this._get_node(obj); \n\t\t\t\treturn obj == -1 || !obj || !this._get_settings().html_data.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_html : function (obj, s_call, e_call) {\n\t\t\t\tvar d,\n\t\t\t\t\ts = this.get_settings().html_data,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t\t.children(\"ul\").empty()\n\t\t\t\t\t\t\t\t.append(this.data.html_data.original_container_html)\n\t\t\t\t\t\t\t\t.find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end()\n\t\t\t\t\t\t\t\t.filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\");\n\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\td = $(s.data);\n\t\t\t\t\t\t\tif(!d.is(\"ul\")) { d = $(\"<ul>\").append(d); }\n\t\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t\t.children(\"ul\").empty().append(d.children())\n\t\t\t\t\t\t\t\t.find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end()\n\t\t\t\t\t\t\t\t.filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\");\n\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\tobj = this._get_node(obj);\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().html_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj != -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\tvar sf = this.get_settings().html_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d == \"\") {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\tif(!d.is(\"ul\")) { d = $(\"<ul>\").append(d); }\n\t\t\t\t\t\t\t\tif(obj == -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()).find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end().filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\"); }\n\t\t\t\t\t\t\t\telse { obj.children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.append(d).find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end().filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\"); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty();\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"html\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\t// include the HTML data plugin by default\n\t$.jstree.defaults.plugins.push(\"html_data\");\n})(jQuery);\n//*/\n\n/* \n * jsTree themeroller plugin 1.0\n * Adds support for jQuery UI themes. Include this at the end of your plugins list, also make sure \"themes\" is not included.\n */\n(function ($) {\n\t$.jstree.plugin(\"themeroller\", {\n\t\t__init : function () {\n\t\t\tvar s = this._get_settings().themeroller;\n\t\t\tthis.get_container()\n\t\t\t\t.addClass(\"ui-widget-content\")\n\t\t\t\t.delegate(\"a\",\"mouseenter.jstree\", function () {\n\t\t\t\t\t$(this).addClass(s.item_h);\n\t\t\t\t})\n\t\t\t\t.delegate(\"a\",\"mouseleave.jstree\", function () {\n\t\t\t\t\t$(this).removeClass(s.item_h);\n\t\t\t\t})\n\t\t\t\t.bind(\"open_node.jstree create_node.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tthis._themeroller(data.rslt.obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree refresh.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tthis._themeroller();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"close_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tdata.rslt.obj.children(\"ins\").removeClass(s.opened).addClass(s.closed);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"select_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tdata.rslt.obj.children(\"a\").addClass(s.item_a);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"deselect_node.jstree deselect_all.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t.find(\".\" + s.item_a).removeClass(s.item_a).end()\n\t\t\t\t\t\t\t.find(\".jstree-clicked\").addClass(s.item_a);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis._themeroller(data.rslt.o);\n\t\t\t\t\t}, this));\n\t\t},\n\t\t__destroy : function () {\n\t\t\tvar s = this._get_settings().themeroller,\n\t\t\t\tc = [ \"ui-icon\" ];\n\t\t\t$.each(s, function (i, v) {\n\t\t\t\tv = v.split(\" \");\n\t\t\t\tif(v.length) { c = c.concat(v); }\n\t\t\t});\n\t\t\tthis.get_container()\n\t\t\t\t.removeClass(\"ui-widget-content\")\n\t\t\t\t.find(\".\" + c.join(\", .\")).removeClass(c.join(\" \"));\n\t\t},\n\t\t_fn : {\n\t\t\t_themeroller : function (obj) {\n\t\t\t\tvar s = this._get_settings().themeroller;\n\t\t\t\tobj = !obj || obj == -1 ? this.get_container() : this._get_node(obj).parent();\n\t\t\t\tobj\n\t\t\t\t\t.find(\"li.jstree-closed > ins.jstree-icon\").removeClass(s.opened).addClass(\"ui-icon \" + s.closed).end()\n\t\t\t\t\t.find(\"li.jstree-open > ins.jstree-icon\").removeClass(s.closed).addClass(\"ui-icon \" + s.opened).end()\n\t\t\t\t\t.find(\"a\").addClass(s.item)\n\t\t\t\t\t\t.children(\"ins.jstree-icon\").addClass(\"ui-icon \" + s.item_icon);\n\t\t\t}\n\t\t},\n\t\tdefaults : {\n\t\t\t\"opened\" : \"ui-icon-triangle-1-se\",\n\t\t\t\"closed\" : \"ui-icon-triangle-1-e\",\n\t\t\t\"item\" : \"ui-state-default\",\n\t\t\t\"item_h\" : \"ui-state-hover\",\n\t\t\t\"item_a\" : \"ui-state-active\",\n\t\t\t\"item_icon\" : \"ui-icon-folder-collapsed\"\n\t\t}\n\t});\n\t$(function() {\n\t\tvar css_string = '.jstree .ui-icon { overflow:visible; } .jstree a { padding:0 2px; }';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree unique plugin 1.0\n * Forces different names amongst siblings (still a bit experimental)\n * NOTE: does not check language versions (it will not be possible to have nodes with the same title, even in different languages)\n */\n(function ($) {\n\t$.jstree.plugin(\"unique\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"before.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tvar nms = [], res = true, p, t;\n\t\t\t\t\t\tif(data.func == \"move_node\") {\n\t\t\t\t\t\t\t// obj, ref, position, is_copy, is_prepared, skip_check\n\t\t\t\t\t\t\tif(data.args[4] === true) {\n\t\t\t\t\t\t\t\tif(data.args[0].o && data.args[0].o.length) {\n\t\t\t\t\t\t\t\t\tdata.args[0].o.children(\"a\").each(function () { nms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\t\t\t\t\t\tres = this._check_unique(nms, data.args[0].np.find(\"> ul > li\").not(data.args[0].o));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(data.func == \"create_node\") {\n\t\t\t\t\t\t\t// obj, position, js, callback, is_loaded\n\t\t\t\t\t\t\tif(data.args[4] || this._is_loaded(data.args[0])) {\n\t\t\t\t\t\t\t\tp = this._get_node(data.args[0]);\n\t\t\t\t\t\t\t\tif(data.args[1] && (data.args[1] === \"before\" || data.args[1] === \"after\")) {\n\t\t\t\t\t\t\t\t\tp = this._get_parent(data.args[0]);\n\t\t\t\t\t\t\t\t\tif(!p || p === -1) { p = this.get_container(); }\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif(typeof data.args[2] === \"string\") { nms.push(data.args[2]); }\n\t\t\t\t\t\t\t\telse if(!data.args[2] || !data.args[2].data) { nms.push(this._get_settings().core.strings.new_node); }\n\t\t\t\t\t\t\t\telse { nms.push(data.args[2].data); }\n\t\t\t\t\t\t\t\tres = this._check_unique(nms, p.find(\"> ul > li\"));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(data.func == \"rename_node\") {\n\t\t\t\t\t\t\t// obj, val\n\t\t\t\t\t\t\tnms.push(data.args[1]);\n\t\t\t\t\t\t\tt = this._get_node(data.args[0]);\n\t\t\t\t\t\t\tp = this._get_parent(t);\n\t\t\t\t\t\t\tif(!p || p === -1) { p = this.get_container(); }\n\t\t\t\t\t\t\tres = this._check_unique(nms, p.find(\"> ul > li\").not(t));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(!res) {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\t_fn : { \n\t\t\t_check_unique : function (nms, p) {\n\t\t\t\tvar cnms = [];\n\t\t\t\tp.children(\"a\").each(function () { cnms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\tif(!cnms.length || !nms.length) { return true; }\n\t\t\t\tcnms = cnms.sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\");\n\t\t\t\tif((cnms.length + nms.length) != cnms.concat(nms).sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\").length) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar p = this._get_move(), nms = [];\n\t\t\t\tif(p.o && p.o.length) {\n\t\t\t\t\tp.o.children(\"a\").each(function () { nms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\t\treturn this._check_unique(nms, p.np.find(\"> ul > li\").not(p.o));\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/jquery.sammy.js",
    "content": "// name: sammy\n// version: 0.6.2\n/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n(function($, window) {\n\n  var Sammy,\n      PATH_REPLACER = \"([^\\/]+)\",\n      PATH_NAME_MATCHER = /:([\\w\\d]+)/g,\n      QUERY_STRING_MATCHER = /\\?([^#]*)$/,\n      // mainly for making `arguments` an Array\n      _makeArray = function(nonarray) { return Array.prototype.slice.call(nonarray); },\n      // borrowed from jQuery\n      _isFunction = function( obj ) { return Object.prototype.toString.call(obj) === \"[object Function]\"; },\n      _isArray = function( obj ) { return Object.prototype.toString.call(obj) === \"[object Array]\"; },\n      _decode = decodeURIComponent,\n      _encode = encodeURIComponent,\n      _escapeHTML = function(s) {\n        return String(s).replace(/&(?!\\w+;)/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\"/g, '&quot;');\n      },\n      _routeWrapper = function(verb) {\n        return function(path, callback) { return this.route.apply(this, [verb, path, callback]); };\n      },\n      _template_cache = {},\n      loggers = [];\n\n\n  // `Sammy` (also aliased as $.sammy) is not only the namespace for a\n  // number of prototypes, its also a top level method that allows for easy\n  // creation/management of `Sammy.Application` instances. There are a\n  // number of different forms for `Sammy()` but each returns an instance\n  // of `Sammy.Application`. When a new instance is created using\n  // `Sammy` it is added to an Object called `Sammy.apps`. This\n  // provides for an easy way to get at existing Sammy applications. Only one\n  // instance is allowed per `element_selector` so when calling\n  // `Sammy('selector')` multiple times, the first time will create\n  // the application and the following times will extend the application\n  // already added to that selector.\n  //\n  // ### Example\n  //\n  //      // returns the app at #main or a new app\n  //      Sammy('#main')\n  //\n  //      // equivilent to \"new Sammy.Application\", except appends to apps\n  //      Sammy();\n  //      Sammy(function() { ... });\n  //\n  //      // extends the app at '#main' with function.\n  //      Sammy('#main', function() { ... });\n  //\n  Sammy = function() {\n    var args = _makeArray(arguments),\n        app, selector;\n    Sammy.apps = Sammy.apps || {};\n    if (args.length === 0 || args[0] && _isFunction(args[0])) { // Sammy()\n      return Sammy.apply(Sammy, ['body'].concat(args));\n    } else if (typeof (selector = args.shift()) == 'string') { // Sammy('#main')\n      app = Sammy.apps[selector] || new Sammy.Application();\n      app.element_selector = selector;\n      if (args.length > 0) {\n        $.each(args, function(i, plugin) {\n          app.use(plugin);\n        });\n      }\n      // if the selector changes make sure the refrence in Sammy.apps changes\n      if (app.element_selector != selector) {\n        delete Sammy.apps[selector];\n      }\n      Sammy.apps[app.element_selector] = app;\n      return app;\n    }\n  };\n\n  Sammy.VERSION = '0.6.2';\n\n  // Add to the global logger pool. Takes a function that accepts an\n  // unknown number of arguments and should print them or send them somewhere\n  // The first argument is always a timestamp.\n  Sammy.addLogger = function(logger) {\n    loggers.push(logger);\n  };\n\n  // Sends a log message to each logger listed in the global\n  // loggers pool. Can take any number of arguments.\n  // Also prefixes the arguments with a timestamp.\n  Sammy.log = function()  {\n    var args = _makeArray(arguments);\n    args.unshift(\"[\" + Date() + \"]\");\n    $.each(loggers, function(i, logger) {\n      logger.apply(Sammy, args);\n    });\n  };\n\n  if (typeof window.console != 'undefined') {\n    if (_isFunction(window.console.log.apply)) {\n      Sammy.addLogger(function() {\n        window.console.log.apply(window.console, arguments);\n      });\n    } else {\n      Sammy.addLogger(function() {\n        window.console.log(arguments);\n      });\n    }\n  } else if (typeof console != 'undefined') {\n    Sammy.addLogger(function() {\n      console.log.apply(console, arguments);\n    });\n  }\n\n  $.extend(Sammy, {\n    makeArray: _makeArray,\n    isFunction: _isFunction,\n    isArray: _isArray\n  })\n\n  // Sammy.Object is the base for all other Sammy classes. It provides some useful\n  // functionality, including cloning, iterating, etc.\n  Sammy.Object = function(obj) { // constructor\n    return $.extend(this, obj || {});\n  };\n\n  $.extend(Sammy.Object.prototype, {\n\n    // Escape HTML in string, use in templates to prevent script injection.\n    // Also aliased as `h()`\n    escapeHTML: _escapeHTML,\n    h: _escapeHTML,\n\n    // Returns a copy of the object with Functions removed.\n    toHash: function() {\n      var json = {};\n      $.each(this, function(k,v) {\n        if (!_isFunction(v)) {\n          json[k] = v;\n        }\n      });\n      return json;\n    },\n\n    // Renders a simple HTML version of this Objects attributes.\n    // Does not render functions.\n    // For example. Given this Sammy.Object:\n    //\n    //    var s = new Sammy.Object({first_name: 'Sammy', last_name: 'Davis Jr.'});\n    //    s.toHTML() //=> '<strong>first_name</strong> Sammy<br /><strong>last_name</strong> Davis Jr.<br />'\n    //\n    toHTML: function() {\n      var display = \"\";\n      $.each(this, function(k, v) {\n        if (!_isFunction(v)) {\n          display += \"<strong>\" + k + \"</strong> \" + v + \"<br />\";\n        }\n      });\n      return display;\n    },\n\n    // Returns an array of keys for this object. If `attributes_only`\n    // is true will not return keys that map to a `function()`\n    keys: function(attributes_only) {\n      var keys = [];\n      for (var property in this) {\n        if (!_isFunction(this[property]) || !attributes_only) {\n          keys.push(property);\n        }\n      }\n      return keys;\n    },\n\n    // Checks if the object has a value at `key` and that the value is not empty\n    has: function(key) {\n      return this[key] && $.trim(this[key].toString()) != '';\n    },\n\n    // convenience method to join as many arguments as you want\n    // by the first argument - useful for making paths\n    join: function() {\n      var args = _makeArray(arguments);\n      var delimiter = args.shift();\n      return args.join(delimiter);\n    },\n\n    // Shortcut to Sammy.log\n    log: function() {\n      Sammy.log.apply(Sammy, arguments);\n    },\n\n    // Returns a string representation of this object.\n    // if `include_functions` is true, it will also toString() the\n    // methods of this object. By default only prints the attributes.\n    toString: function(include_functions) {\n      var s = [];\n      $.each(this, function(k, v) {\n        if (!_isFunction(v) || include_functions) {\n          s.push('\"' + k + '\": ' + v.toString());\n        }\n      });\n      return \"Sammy.Object: {\" + s.join(',') + \"}\";\n    }\n  });\n\n  // The HashLocationProxy is the default location proxy for all Sammy applications.\n  // A location proxy is a prototype that conforms to a simple interface. The purpose\n  // of a location proxy is to notify the Sammy.Application its bound to when the location\n  // or 'external state' changes. The HashLocationProxy considers the state to be\n  // changed when the 'hash' (window.location.hash / '#') changes. It does this in two\n  // different ways depending on what browser you are using. The newest browsers\n  // (IE, Safari > 4, FF >= 3.6) support a 'onhashchange' DOM event, thats fired whenever\n  // the location.hash changes. In this situation the HashLocationProxy just binds\n  // to this event and delegates it to the application. In the case of older browsers\n  // a poller is set up to track changes to the hash. Unlike Sammy 0.3 or earlier,\n  // the HashLocationProxy allows the poller to be a global object, eliminating the\n  // need for multiple pollers even when thier are multiple apps on the page.\n  Sammy.HashLocationProxy = function(app, run_interval_every) {\n    this.app = app;\n    // set is native to false and start the poller immediately\n    this.is_native = false;\n    this._startPolling(run_interval_every);\n  };\n\n  Sammy.HashLocationProxy.prototype = {\n\n    // bind the proxy events to the current app.\n    bind: function() {\n      var proxy = this, app = this.app;\n      $(window).bind('hashchange.' + this.app.eventNamespace(), function(e, non_native) {\n        // if we receive a native hash change event, set the proxy accordingly\n        // and stop polling\n        if (proxy.is_native === false && !non_native) {\n          Sammy.log('native hash change exists, using');\n          proxy.is_native = true;\n          window.clearInterval(Sammy.HashLocationProxy._interval);\n        }\n        app.trigger('location-changed');\n      });\n      if (!Sammy.HashLocationProxy._bindings) {\n        Sammy.HashLocationProxy._bindings = 0;\n      }\n      Sammy.HashLocationProxy._bindings++;\n    },\n\n    // unbind the proxy events from the current app\n    unbind: function() {\n      $(window).unbind('hashchange.' + this.app.eventNamespace());\n      Sammy.HashLocationProxy._bindings--;\n      if (Sammy.HashLocationProxy._bindings <= 0) {\n        window.clearInterval(Sammy.HashLocationProxy._interval);\n      }\n    },\n\n    // get the current location from the hash.\n    getLocation: function() {\n     // Bypass the `window.location.hash` attribute.  If a question mark\n      // appears in the hash IE6 will strip it and all of the following\n      // characters from `window.location.hash`.\n      var matches = window.location.toString().match(/^[^#]*(#.+)$/);\n      return matches ? matches[1] : '';\n    },\n\n    // set the current location to `new_location`\n    setLocation: function(new_location) {\n      return (window.location = new_location);\n    },\n\n    _startPolling: function(every) {\n      // set up interval\n      var proxy = this;\n      if (!Sammy.HashLocationProxy._interval) {\n        if (!every) { every = 10; }\n        var hashCheck = function() {\n          var current_location = proxy.getLocation();\n          if (!Sammy.HashLocationProxy._last_location ||\n            current_location != Sammy.HashLocationProxy._last_location) {\n            window.setTimeout(function() {\n              $(window).trigger('hashchange', [true]);\n            }, 13);\n          }\n          Sammy.HashLocationProxy._last_location = current_location;\n        };\n        hashCheck();\n        Sammy.HashLocationProxy._interval = window.setInterval(hashCheck, every);\n      }\n    }\n  };\n\n\n  // Sammy.Application is the Base prototype for defining 'applications'.\n  // An 'application' is a collection of 'routes' and bound events that is\n  // attached to an element when `run()` is called.\n  // The only argument an 'app_function' is evaluated within the context of the application.\n  Sammy.Application = function(app_function) {\n    var app = this;\n    this.routes            = {};\n    this.listeners         = new Sammy.Object({});\n    this.arounds           = [];\n    this.befores           = [];\n    // generate a unique namespace\n    this.namespace         = (new Date()).getTime() + '-' + parseInt(Math.random() * 1000, 10);\n    this.context_prototype = function() { Sammy.EventContext.apply(this, arguments); };\n    this.context_prototype.prototype = new Sammy.EventContext();\n\n    if (_isFunction(app_function)) {\n      app_function.apply(this, [this]);\n    }\n    // set the location proxy if not defined to the default (HashLocationProxy)\n    if (!this._location_proxy) {\n      this.setLocationProxy(new Sammy.HashLocationProxy(this, this.run_interval_every));\n    }\n    if (this.debug) {\n      this.bindToAllEvents(function(e, data) {\n        app.log(app.toString(), e.cleaned_type, data || {});\n      });\n    }\n  };\n\n  Sammy.Application.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // the four route verbs\n    ROUTE_VERBS: ['get','post','put','delete'],\n\n    // An array of the default events triggered by the\n    // application during its lifecycle\n    APP_EVENTS: ['run',\n                 'unload',\n                 'lookup-route',\n                 'run-route',\n                 'route-found',\n                 'event-context-before',\n                 'event-context-after',\n                 'changed',\n                 'error',\n                 'check-form-submission',\n                 'redirect',\n                 'location-changed'],\n\n    _last_route: null,\n    _location_proxy: null,\n    _running: false,\n\n    // Defines what element the application is bound to. Provide a selector\n    // (parseable by `jQuery()`) and this will be used by `$element()`\n    element_selector: 'body',\n\n    // When set to true, logs all of the default events using `log()`\n    debug: false,\n\n    // When set to true, and the error() handler is not overriden, will actually\n    // raise JS errors in routes (500) and when routes can't be found (404)\n    raise_errors: false,\n\n    // The time in milliseconds that the URL is queried for changes\n    run_interval_every: 50,\n\n    // The default template engine to use when using `partial()` in an\n    // `EventContext`. `template_engine` can either be a string that\n    // corresponds to the name of a method/helper on EventContext or it can be a function\n    // that takes two arguments, the content of the unrendered partial and an optional\n    // JS object that contains interpolation data. Template engine is only called/refered\n    // to if the extension of the partial is null or unknown. See `partial()`\n    // for more information\n    template_engine: null,\n\n    // //=> Sammy.Application: body\n    toString: function() {\n      return 'Sammy.Application:' + this.element_selector;\n    },\n\n    // returns a jQuery object of the Applications bound element.\n    $element: function(selector) {\n      return selector ? $(this.element_selector).find(selector) : $(this.element_selector);\n    },\n\n    // `use()` is the entry point for including Sammy plugins.\n    // The first argument to use should be a function() that is evaluated\n    // in the context of the current application, just like the `app_function`\n    // argument to the `Sammy.Application` constructor.\n    //\n    // Any additional arguments are passed to the app function sequentially.\n    //\n    // For much more detail about plugins, check out:\n    // http://code.quirkey.com/sammy/doc/plugins.html\n    //\n    // ### Example\n    //\n    //      var MyPlugin = function(app, prepend) {\n    //\n    //        this.helpers({\n    //          myhelper: function(text) {\n    //            alert(prepend + \" \" + text);\n    //          }\n    //        });\n    //\n    //      };\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        this.use(MyPlugin, 'This is my plugin');\n    //\n    //        this.get('#/', function() {\n    //          this.myhelper('and dont you forget it!');\n    //          //=> Alerts: This is my plugin and dont you forget it!\n    //        });\n    //\n    //      });\n    //\n    // If plugin is passed as a string it assumes your are trying to load\n    // Sammy.\"Plugin\". This is the prefered way of loading core Sammy plugins\n    // as it allows for better error-messaging.\n    //\n    // ### Example\n    //\n    //      $.sammy(function() {\n    //        this.use('Mustache'); //=> Sammy.Mustache\n    //        this.use('Storage'); //=> Sammy.Storage\n    //      });\n    //\n    use: function() {\n      // flatten the arguments\n      var args = _makeArray(arguments),\n          plugin = args.shift(),\n          plugin_name = plugin || '';\n      try {\n        args.unshift(this);\n        if (typeof plugin == 'string') {\n          plugin_name = 'Sammy.' + plugin;\n          plugin = Sammy[plugin];\n        }\n        plugin.apply(this, args);\n      } catch(e) {\n        if (typeof plugin === 'undefined') {\n          this.error(\"Plugin Error: called use() but plugin (\" + plugin_name.toString() + \") is not defined\", e);\n        } else if (!_isFunction(plugin)) {\n          this.error(\"Plugin Error: called use() but '\" + plugin_name.toString() + \"' is not a function\", e);\n        } else {\n          this.error(\"Plugin Error\", e);\n        }\n      }\n      return this;\n    },\n\n    // Sets the location proxy for the current app. By default this is set to\n    // a new `Sammy.HashLocationProxy` on initialization. However, you can set\n    // the location_proxy inside you're app function to give your app a custom\n    // location mechanism. See `Sammy.HashLocationProxy` and `Sammy.DataLocationProxy`\n    // for examples.\n    //\n    // `setLocationProxy()` takes an initialized location proxy.\n    //\n    // ### Example\n    //\n    //        // to bind to data instead of the default hash;\n    //        var app = $.sammy(function() {\n    //          this.setLocationProxy(new Sammy.DataLocationProxy(this));\n    //        });\n    //\n    setLocationProxy: function(new_proxy) {\n      var original_proxy = this._location_proxy;\n      this._location_proxy = new_proxy;\n      if (this.isRunning()) {\n        if (original_proxy) {\n          // if there is already a location proxy, unbind it.\n          original_proxy.unbind();\n        }\n        this._location_proxy.bind();\n      }\n    },\n\n    // `route()` is the main method for defining routes within an application.\n    // For great detail on routes, check out: http://code.quirkey.com/sammy/doc/routes.html\n    //\n    // This method also has aliases for each of the different verbs (eg. `get()`, `post()`, etc.)\n    //\n    // ### Arguments\n    //\n    // * `verb` A String in the set of ROUTE_VERBS or 'any'. 'any' will add routes for each\n    //    of the ROUTE_VERBS. If only two arguments are passed,\n    //    the first argument is the path, the second is the callback and the verb\n    //    is assumed to be 'any'.\n    // * `path` A Regexp or a String representing the path to match to invoke this verb.\n    // * `callback` A Function that is called/evaluated whent the route is run see: `runRoute()`.\n    //    It is also possible to pass a string as the callback, which is looked up as the name\n    //    of a method on the application.\n    //\n    route: function(verb, path, callback) {\n      var app = this, param_names = [], add_route, path_match;\n\n      // if the method signature is just (path, callback)\n      // assume the verb is 'any'\n      if (!callback && _isFunction(path)) {\n        path = verb;\n        callback = path;\n        verb = 'any';\n      }\n\n      verb = verb.toLowerCase(); // ensure verb is lower case\n\n      // if path is a string turn it into a regex\n      if (path.constructor == String) {\n\n        // Needs to be explicitly set because IE will maintain the index unless NULL is returned,\n        // which means that with two consecutive routes that contain params, the second set of params will not be found and end up in splat instead of params\n        // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/RegExp/lastIndex\n        PATH_NAME_MATCHER.lastIndex = 0;\n\n        // find the names\n        while ((path_match = PATH_NAME_MATCHER.exec(path)) !== null) {\n          param_names.push(path_match[1]);\n        }\n        // replace with the path replacement\n        path = new RegExp(\"^\" + path.replace(PATH_NAME_MATCHER, PATH_REPLACER) + \"$\");\n      }\n      // lookup callback\n      if (typeof callback == 'string') {\n        callback = app[callback];\n      }\n\n      add_route = function(with_verb) {\n        var r = {verb: with_verb, path: path, callback: callback, param_names: param_names};\n        // add route to routes array\n        app.routes[with_verb] = app.routes[with_verb] || [];\n        // place routes in order of definition\n        app.routes[with_verb].push(r);\n      };\n\n      if (verb === 'any') {\n        $.each(this.ROUTE_VERBS, function(i, v) { add_route(v); });\n      } else {\n        add_route(verb);\n      }\n\n      // return the app\n      return this;\n    },\n\n    // Alias for route('get', ...)\n    get: _routeWrapper('get'),\n\n    // Alias for route('post', ...)\n    post: _routeWrapper('post'),\n\n    // Alias for route('put', ...)\n    put: _routeWrapper('put'),\n\n    // Alias for route('delete', ...)\n    del: _routeWrapper('delete'),\n\n    // Alias for route('any', ...)\n    any: _routeWrapper('any'),\n\n    // `mapRoutes` takes an array of arrays, each array being passed to route()\n    // as arguments, this allows for mass definition of routes. Another benefit is\n    // this makes it possible/easier to load routes via remote JSON.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      this.mapRoutes([\n    //          ['get', '#/', function() { this.log('index'); }],\n    //          // strings in callbacks are looked up as methods on the app\n    //          ['post', '#/create', 'addUser'],\n    //          // No verb assumes 'any' as the verb\n    //          [/dowhatever/, function() { this.log(this.verb, this.path)}];\n    //        ]);\n    //    })\n    //\n    mapRoutes: function(route_array) {\n      var app = this;\n      $.each(route_array, function(i, route_args) {\n        app.route.apply(app, route_args);\n      });\n      return this;\n    },\n\n    // A unique event namespace defined per application.\n    // All events bound with `bind()` are automatically bound within this space.\n    eventNamespace: function() {\n      return ['sammy-app', this.namespace].join('-');\n    },\n\n    // Works just like `jQuery.fn.bind()` with a couple noteable differences.\n    //\n    // * It binds all events to the application element\n    // * All events are bound within the `eventNamespace()`\n    // * Events are not actually bound until the application is started with `run()`\n    // * callbacks are evaluated within the context of a Sammy.EventContext\n    //\n    // See http://code.quirkey.com/sammy/docs/events.html for more info.\n    //\n    bind: function(name, data, callback) {\n      var app = this;\n      // build the callback\n      // if the arity is 2, callback is the second argument\n      if (typeof callback == 'undefined') { callback = data; }\n      var listener_callback =  function() {\n        // pull off the context from the arguments to the callback\n        var e, context, data;\n        e       = arguments[0];\n        data    = arguments[1];\n        if (data && data.context) {\n          context = data.context;\n          delete data.context;\n        } else {\n          context = new app.context_prototype(app, 'bind', e.type, data, e.target);\n        }\n        e.cleaned_type = e.type.replace(app.eventNamespace(), '');\n        callback.apply(context, [e, data]);\n      };\n\n      // it could be that the app element doesnt exist yet\n      // so attach to the listeners array and then run()\n      // will actually bind the event.\n      if (!this.listeners[name]) { this.listeners[name] = []; }\n      this.listeners[name].push(listener_callback);\n      if (this.isRunning()) {\n        // if the app is running\n        // *actually* bind the event to the app element\n        this._listen(name, listener_callback);\n      }\n      return this;\n    },\n\n    // Triggers custom events defined with `bind()`\n    //\n    // ### Arguments\n    //\n    // * `name` The name of the event. Automatically prefixed with the `eventNamespace()`\n    // * `data` An optional Object that can be passed to the bound callback.\n    // * `context` An optional context/Object in which to execute the bound callback.\n    //   If no context is supplied a the context is a new `Sammy.EventContext`\n    //\n    trigger: function(name, data) {\n      this.$element().trigger([name, this.eventNamespace()].join('.'), [data]);\n      return this;\n    },\n\n    // Reruns the current route\n    refresh: function() {\n      this.last_location = null;\n      this.trigger('location-changed');\n      return this;\n    },\n\n    // Takes a single callback that is pushed on to a stack.\n    // Before any route is run, the callbacks are evaluated in order within\n    // the current `Sammy.EventContext`\n    //\n    // If any of the callbacks explicitly return false, execution of any\n    // further callbacks and the route itself is halted.\n    //\n    // You can also provide a set of options that will define when to run this\n    // before based on the route it proceeds.\n    //\n    // ### Example\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        // will run at #/route but not at #/\n    //        this.before('#/route', function() {\n    //          //...\n    //        });\n    //\n    //        // will run at #/ but not at #/route\n    //        this.before({except: {path: '#/route'}}, function() {\n    //          this.log('not before #/route');\n    //        });\n    //\n    //        this.get('#/', function() {});\n    //\n    //        this.get('#/route', function() {});\n    //\n    //      });\n    //\n    // See `contextMatchesOptions()` for a full list of supported options\n    //\n    before: function(options, callback) {\n      if (_isFunction(options)) {\n        callback = options;\n        options = {};\n      }\n      this.befores.push([options, callback]);\n      return this;\n    },\n\n    // A shortcut for binding a callback to be run after a route is executed.\n    // After callbacks have no guarunteed order.\n    after: function(callback) {\n      return this.bind('event-context-after', callback);\n    },\n\n\n    // Adds an around filter to the application. around filters are functions\n    // that take a single argument `callback` which is the entire route\n    // execution path wrapped up in a closure. This means you can decide whether\n    // or not to proceed with execution by not invoking `callback` or,\n    // more usefuly wrapping callback inside the result of an asynchronous execution.\n    //\n    // ### Example\n    //\n    // The most common use case for around() is calling a _possibly_ async function\n    // and executing the route within the functions callback:\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        var current_user = false;\n    //\n    //        function checkLoggedIn(callback) {\n    //          // /session returns a JSON representation of the logged in user\n    //          // or an empty object\n    //          if (!current_user) {\n    //            $.getJSON('/session', function(json) {\n    //              if (json.login) {\n    //                // show the user as logged in\n    //                current_user = json;\n    //                // execute the route path\n    //                callback();\n    //              } else {\n    //                // show the user as not logged in\n    //                current_user = false;\n    //                // the context of aroundFilters is an EventContext\n    //                this.redirect('#/login');\n    //              }\n    //            });\n    //          } else {\n    //            // execute the route path\n    //            callback();\n    //          }\n    //        };\n    //\n    //        this.around(checkLoggedIn);\n    //\n    //      });\n    //\n    around: function(callback) {\n      this.arounds.push(callback);\n      return this;\n    },\n\n    // Returns `true` if the current application is running.\n    isRunning: function() {\n      return this._running;\n    },\n\n    // Helpers extends the EventContext prototype specific to this app.\n    // This allows you to define app specific helper functions that can be used\n    // whenever you're inside of an event context (templates, routes, bind).\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      helpers({\n    //        upcase: function(text) {\n    //         return text.toString().toUpperCase();\n    //        }\n    //      });\n    //\n    //      get('#/', function() { with(this) {\n    //        // inside of this context I can use the helpers\n    //        $('#main').html(upcase($('#main').text());\n    //      }});\n    //\n    //    });\n    //\n    //\n    // ### Arguments\n    //\n    // * `extensions` An object collection of functions to extend the context.\n    //\n    helpers: function(extensions) {\n      $.extend(this.context_prototype.prototype, extensions);\n      return this;\n    },\n\n    // Helper extends the event context just like `helpers()` but does it\n    // a single method at a time. This is especially useful for dynamically named\n    // helpers\n    //\n    // ### Example\n    //\n    //     // Trivial example that adds 3 helper methods to the context dynamically\n    //     var app = $.sammy(function(app) {\n    //\n    //       $.each([1,2,3], function(i, num) {\n    //         app.helper('helper' + num, function() {\n    //           this.log(\"I'm helper number \" + num);\n    //         });\n    //       });\n    //\n    //       this.get('#/', function() {\n    //         this.helper2(); //=> I'm helper number 2\n    //       });\n    //     });\n    //\n    // ### Arguments\n    //\n    // * `name` The name of the method\n    // * `method` The function to be added to the prototype at `name`\n    //\n    helper: function(name, method) {\n      this.context_prototype.prototype[name] = method;\n      return this;\n    },\n\n    // Actually starts the application's lifecycle. `run()` should be invoked\n    // within a document.ready block to ensure the DOM exists before binding events, etc.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() { ... }); // your application\n    //    $(function() { // document.ready\n    //        app.run();\n    //     });\n    //\n    // ### Arguments\n    //\n    // * `start_url` Optionally, a String can be passed which the App will redirect to\n    //   after the events/routes have been bound.\n    run: function(start_url) {\n      if (this.isRunning()) { return false; }\n      var app = this;\n\n      // actually bind all the listeners\n      $.each(this.listeners.toHash(), function(name, callbacks) {\n        $.each(callbacks, function(i, listener_callback) {\n          app._listen(name, listener_callback);\n        });\n      });\n\n      this.trigger('run', {start_url: start_url});\n      this._running = true;\n      // set last location\n      this.last_location = null;\n      if (this.getLocation() == '' && typeof start_url != 'undefined') {\n        this.setLocation(start_url);\n      }\n      // check url\n      this._checkLocation();\n      this._location_proxy.bind();\n      this.bind('location-changed', function() {\n        app._checkLocation();\n      });\n\n      // bind to submit to capture post/put/delete routes\n      /*\n      this.bind('submit', function(e) {\n        var returned = app._checkFormSubmission($(e.target).closest('form'));\n        return (returned === false) ? e.preventDefault() : false;\n      });\n      */\n\n      // bind unload to body unload\n      $(window).bind('beforeunload', function() {\n        app.unload();\n      });\n\n      // trigger html changed\n      return this.trigger('changed');\n    },\n\n    // The opposite of `run()`, un-binds all event listeners and intervals\n    // `run()` Automaticaly binds a `onunload` event to run this when\n    // the document is closed.\n    unload: function() {\n      if (!this.isRunning()) { return false; }\n      var app = this;\n      this.trigger('unload');\n      // clear interval\n      this._location_proxy.unbind();\n      // unbind form submits\n      this.$element().unbind('submit').removeClass(app.eventNamespace());\n      // unbind all events\n      $.each(this.listeners.toHash() , function(name, listeners) {\n        $.each(listeners, function(i, listener_callback) {\n          app._unlisten(name, listener_callback);\n        });\n      });\n      this._running = false;\n      return this;\n    },\n\n    // Will bind a single callback function to every event that is already\n    // being listened to in the app. This includes all the `APP_EVENTS`\n    // as well as any custom events defined with `bind()`.\n    //\n    // Used internally for debug logging.\n    bindToAllEvents: function(callback) {\n      var app = this;\n      // bind to the APP_EVENTS first\n      $.each(this.APP_EVENTS, function(i, e) {\n        app.bind(e, callback);\n      });\n      // next, bind to listener names (only if they dont exist in APP_EVENTS)\n      $.each(this.listeners.keys(true), function(i, name) {\n        if (app.APP_EVENTS.indexOf(name) == -1) {\n          app.bind(name, callback);\n        }\n      });\n      return this;\n    },\n\n    // Returns a copy of the given path with any query string after the hash\n    // removed.\n    routablePath: function(path) {\n      return path.replace(QUERY_STRING_MATCHER, '');\n    },\n\n    // Given a verb and a String path, will return either a route object or false\n    // if a matching route can be found within the current defined set.\n    lookupRoute: function(verb, path) {\n      var app = this, routed = false;\n      this.trigger('lookup-route', {verb: verb, path: path});\n      if (typeof this.routes[verb] != 'undefined') {\n        $.each(this.routes[verb], function(i, route) {\n          if (app.routablePath(path).match(route.path)) {\n            routed = route;\n            return false;\n          }\n        });\n      }\n      return routed;\n    },\n\n    // First, invokes `lookupRoute()` and if a route is found, parses the\n    // possible URL params and then invokes the route's callback within a new\n    // `Sammy.EventContext`. If the route can not be found, it calls\n    // `notFound()`. If `raise_errors` is set to `true` and\n    // the `error()` has not been overriden, it will throw an actual JS\n    // error.\n    //\n    // You probably will never have to call this directly.\n    //\n    // ### Arguments\n    //\n    // * `verb` A String for the verb.\n    // * `path` A String path to lookup.\n    // * `params` An Object of Params pulled from the URI or passed directly.\n    //\n    // ### Returns\n    //\n    // Either returns the value returned by the route callback or raises a 404 Not Found error.\n    //\n    runRoute: function(verb, path, params, target) {\n      var app = this,\n          route = this.lookupRoute(verb, path),\n          context,\n          wrapped_route,\n          arounds,\n          around,\n          befores,\n          before,\n          callback_args,\n          path_params,\n          final_returned;\n\n      this.log('runRoute', [verb, path].join(' '));\n      this.trigger('run-route', {verb: verb, path: path, params: params});\n      if (typeof params == 'undefined') { params = {}; }\n\n      $.extend(params, this._parseQueryString(path));\n\n      if (route) {\n        this.trigger('route-found', {route: route});\n        // pull out the params from the path\n        if ((path_params = route.path.exec(this.routablePath(path))) !== null) {\n          // first match is the full path\n          path_params.shift();\n          // for each of the matches\n          $.each(path_params, function(i, param) {\n            // if theres a matching param name\n            if (route.param_names[i]) {\n              // set the name to the match\n              params[route.param_names[i]] = _decode(param);\n            } else {\n              // initialize 'splat'\n              if (!params.splat) { params.splat = []; }\n              params.splat.push(_decode(param));\n            }\n          });\n        }\n\n        // set event context\n        context  = new this.context_prototype(this, verb, path, params, target);\n        // ensure arrays\n        arounds = this.arounds.slice(0);\n        befores = this.befores.slice(0);\n        // set the callback args to the context + contents of the splat\n        callback_args = [context].concat(params.splat);\n        // wrap the route up with the before filters\n        wrapped_route = function() {\n          var returned;\n          while (befores.length > 0) {\n            before = befores.shift();\n            // check the options\n            if (app.contextMatchesOptions(context, before[0])) {\n              returned = before[1].apply(context, [context]);\n              if (returned === false) { return false; }\n            }\n          }\n          app.last_route = route;\n          context.trigger('event-context-before', {context: context});\n          returned = route.callback.apply(context, callback_args);\n          context.trigger('event-context-after', {context: context});\n          return returned;\n        };\n        $.each(arounds.reverse(), function(i, around) {\n          var last_wrapped_route = wrapped_route;\n          wrapped_route = function() { return around.apply(context, [last_wrapped_route]); };\n        });\n        try {\n          final_returned = wrapped_route();\n        } catch(e) {\n          this.error(['500 Error', verb, path].join(' '), e);\n        }\n        return final_returned;\n      } else {\n        return this.notFound(verb, path);\n      }\n    },\n\n    // Matches an object of options against an `EventContext` like object that\n    // contains `path` and `verb` attributes. Internally Sammy uses this\n    // for matching `before()` filters against specific options. You can set the\n    // object to _only_ match certain paths or verbs, or match all paths or verbs _except_\n    // those that match the options.\n    //\n    // ### Example\n    //\n    //     var app = $.sammy(),\n    //         context = {verb: 'get', path: '#/mypath'};\n    //\n    //     // match against a path string\n    //     app.contextMatchesOptions(context, '#/mypath'); //=> true\n    //     app.contextMatchesOptions(context, '#/otherpath'); //=> false\n    //     // equivilent to\n    //     app.contextMatchesOptions(context, {only: {path:'#/mypath'}}); //=> true\n    //     app.contextMatchesOptions(context, {only: {path:'#/otherpath'}}); //=> false\n    //     // match against a path regexp\n    //     app.contextMatchesOptions(context, /path/); //=> true\n    //     app.contextMatchesOptions(context, /^path/); //=> false\n    //     // match only a verb\n    //     app.contextMatchesOptions(context, {only: {verb:'get'}}); //=> true\n    //     app.contextMatchesOptions(context, {only: {verb:'post'}}); //=> false\n    //     // match all except a verb\n    //     app.contextMatchesOptions(context, {except: {verb:'post'}}); //=> true\n    //     app.contextMatchesOptions(context, {except: {verb:'get'}}); //=> false\n    //     // match all except a path\n    //     app.contextMatchesOptions(context, {except: {path:'#/otherpath'}}); //=> true\n    //     app.contextMatchesOptions(context, {except: {path:'#/mypath'}}); //=> false\n    //\n    contextMatchesOptions: function(context, match_options, positive) {\n      // empty options always match\n      var options = match_options;\n      if (typeof options === 'undefined' || options == {}) {\n        return true;\n      }\n      if (typeof positive === 'undefined') {\n        positive = true;\n      }\n      // normalize options\n      if (typeof options === 'string' || _isFunction(options.test)) {\n        options = {path: options};\n      }\n      if (options.only) {\n        return this.contextMatchesOptions(context, options.only, true);\n      } else if (options.except) {\n        return this.contextMatchesOptions(context, options.except, false);\n      }\n      var path_matched = true, verb_matched = true;\n      if (options.path) {\n        // wierd regexp test\n        if (_isFunction(options.path.test)) {\n          path_matched = options.path.test(context.path);\n        } else {\n          path_matched = (options.path.toString() === context.path);\n        }\n      }\n      if (options.verb) {\n        verb_matched = options.verb === context.verb;\n      }\n      return positive ? (verb_matched && path_matched) : !(verb_matched && path_matched);\n    },\n\n\n    // Delegates to the `location_proxy` to get the current location.\n    // See `Sammy.HashLocationProxy` for more info on location proxies.\n    getLocation: function() {\n      return this._location_proxy.getLocation();\n    },\n\n    // Delegates to the `location_proxy` to set the current location.\n    // See `Sammy.HashLocationProxy` for more info on location proxies.\n    //\n    // ### Arguments\n    //\n    // * `new_location` A new location string (e.g. '#/')\n    //\n    setLocation: function(new_location) {\n      return this._location_proxy.setLocation(new_location);\n    },\n\n    // Swaps the content of `$element()` with `content`\n    // You can override this method to provide an alternate swap behavior\n    // for `EventContext.partial()`.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      // implements a 'fade out'/'fade in'\n    //      this.swap = function(content) {\n    //        this.$element().hide('slow').html(content).show('slow');\n    //      }\n    //\n    //      get('#/', function() {\n    //        this.partial('index.html.erb') // will fade out and in\n    //      });\n    //\n    //    });\n    //\n    swap: function(content) {\n      return this.$element().html(content);\n    },\n\n    // a simple global cache for templates. Uses the same semantics as\n    // `Sammy.Cache` and `Sammy.Storage` so can easily be replaced with\n    // a persistant storage that lasts beyond the current request.\n    templateCache: function(key, value) {\n      if (typeof value != 'undefined') {\n        return _template_cache[key] = value;\n      } else {\n        return _template_cache[key];\n      }\n    },\n\n    // clear the templateCache\n    clearTemplateCache: function() {\n      return _template_cache = {};\n    },\n\n    // This thows a '404 Not Found' error by invoking `error()`.\n    // Override this method or `error()` to provide custom\n    // 404 behavior (i.e redirecting to / or showing a warning)\n    notFound: function(verb, path) {\n      var ret = this.error(['404 Not Found', verb, path].join(' '));\n      return (verb === 'get') ? ret : true;\n    },\n\n    // The base error handler takes a string `message` and an `Error`\n    // object. If `raise_errors` is set to `true` on the app level,\n    // this will re-throw the error to the browser. Otherwise it will send the error\n    // to `log()`. Override this method to provide custom error handling\n    // e.g logging to a server side component or displaying some feedback to the\n    // user.\n    error: function(message, original_error) {\n      if (!original_error) { original_error = new Error(); }\n      original_error.message = [message, original_error.message].join(' ');\n      this.trigger('error', {message: original_error.message, error: original_error});\n      if (this.raise_errors) {\n        throw(original_error);\n      } else {\n        this.log(original_error.message, original_error);\n      }\n    },\n\n    _checkLocation: function() {\n      var location, returned;\n      // get current location\n      location = this.getLocation();\n      // compare to see if hash has changed\n      if (!this.last_location || this.last_location[0] != 'get' || this.last_location[1] != location) {\n        // reset last location\n        this.last_location = ['get', location];\n        // lookup route for current hash\n        returned = this.runRoute('get', location);\n      }\n      return returned;\n    },\n\n    _getFormVerb: function(form) {\n      var $form = $(form), verb, $_method;\n      $_method = $form.find('input[name=\"_method\"]');\n      if ($_method.length > 0) { verb = $_method.val(); }\n      if (!verb) { verb = $form[0].getAttribute('method'); }\n      return $.trim(verb.toString().toLowerCase());\n    },\n\n    _checkFormSubmission: function(form) {\n      var $form, path, verb, params, returned;\n      this.trigger('check-form-submission', {form: form});\n      $form = $(form);\n      path  = $form.attr('action');\n      verb  = this._getFormVerb($form);\n      if (!verb || verb == '') { verb = 'get'; }\n      this.log('_checkFormSubmission', $form, path, verb);\n      if (verb === 'get') {\n        this.setLocation(path + '?' + this._serializeFormParams($form));\n        returned = false;\n      } else {\n        params = $.extend({}, this._parseFormParams($form));\n        returned = this.runRoute(verb, path, params, form.get(0));\n      };\n      return (typeof returned == 'undefined') ? false : returned;\n    },\n\n    _serializeFormParams: function($form) {\n       var queryString = \"\",\n         fields = $form.serializeArray(),\n         i;\n       if (fields.length > 0) {\n         queryString = this._encodeFormPair(fields[0].name, fields[0].value);\n         for (i = 1; i < fields.length; i++) {\n           queryString = queryString + \"&\" + this._encodeFormPair(fields[i].name, fields[i].value);\n         }\n       }\n       return queryString;\n    },\n\n    _encodeFormPair: function(name, value){\n      return _encode(name) + \"=\" + _encode(value);\n    },\n\n    _parseFormParams: function($form) {\n      var params = {},\n          form_fields = $form.serializeArray(),\n          i;\n      for (i = 0; i < form_fields.length; i++) {\n        params = this._parseParamPair(params, form_fields[i].name, form_fields[i].value);\n      }\n      return params;\n    },\n\n    _parseQueryString: function(path) {\n      var params = {}, parts, pairs, pair, i;\n\n      parts = path.match(QUERY_STRING_MATCHER);\n      if (parts) {\n        pairs = parts[1].split('&');\n        for (i = 0; i < pairs.length; i++) {\n          pair = pairs[i].split('=');\n          params = this._parseParamPair(params, _decode(pair[0]), _decode(pair[1]));\n        }\n      }\n      return params;\n    },\n\n    _parseParamPair: function(params, key, value) {\n      if (params[key]) {\n        if (_isArray(params[key])) {\n          params[key].push(value);\n        } else {\n          params[key] = [params[key], value];\n        }\n      } else {\n        params[key] = value;\n      }\n      return params;\n    },\n\n    _listen: function(name, callback) {\n      return this.$element().bind([name, this.eventNamespace()].join('.'), callback);\n    },\n\n    _unlisten: function(name, callback) {\n      return this.$element().unbind([name, this.eventNamespace()].join('.'), callback);\n    }\n\n  });\n\n  // `Sammy.RenderContext` is an object that makes sequential template loading,\n  // rendering and interpolation seamless even when dealing with asyncronous\n  // operations.\n  //\n  // `RenderContext` objects are not usually created directly, rather they are\n  // instatiated from an `Sammy.EventContext` by using `render()`, `load()` or\n  // `partial()` which all return `RenderContext` objects.\n  //\n  // `RenderContext` methods always returns a modified `RenderContext`\n  // for chaining (like jQuery itself).\n  //\n  // The core magic is in the `then()` method which puts the callback passed as\n  // an argument into a queue to be executed once the previous callback is complete.\n  // All the methods of `RenderContext` are wrapped in `then()` which allows you\n  // to queue up methods by chaining, but maintaing a guarunteed execution order\n  // even with remote calls to fetch templates.\n  //\n  Sammy.RenderContext = function(event_context) {\n    this.event_context    = event_context;\n    this.callbacks        = [];\n    this.previous_content = null;\n    this.content          = null;\n    this.next_engine      = false;\n    this.waiting          = false;\n  };\n\n  Sammy.RenderContext.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // The \"core\" of the `RenderContext` object, adds the `callback` to the\n    // queue. If the context is `waiting` (meaning an async operation is happening)\n    // then the callback will be executed in order, once the other operations are\n    // complete. If there is no currently executing operation, the `callback`\n    // is executed immediately.\n    //\n    // The value returned from the callback is stored in `content` for the\n    // subsiquent operation. If you return `false`, the queue will pause, and\n    // the next callback in the queue will not be executed until `next()` is\n    // called. This allows for the guarunteed order of execution while working\n    // with async operations.\n    //\n    // If then() is passed a string instead of a function, the string is looked\n    // up as a helper method on the event context.\n    //\n    // ### Example\n    //\n    //      this.get('#/', function() {\n    //        // initialize the RenderContext\n    //        // Even though `load()` executes async, the next `then()`\n    //        // wont execute until the load finishes\n    //        this.load('myfile.txt')\n    //            .then(function(content) {\n    //              // the first argument to then is the content of the\n    //              // prev operation\n    //              $('#main').html(content);\n    //            });\n    //      });\n    //\n    then: function(callback) {\n      if (!_isFunction(callback)) {\n        // if a string is passed to then, assume we want to call\n        // a helper on the event context in its context\n        if (typeof callback === 'string' && callback in this.event_context) {\n          var helper = this.event_context[callback];\n          callback = function(content) {\n            return helper.apply(this.event_context, [content]);\n          };\n        } else {\n          return this;\n        }\n      }\n      var context = this;\n      if (this.waiting) {\n        this.callbacks.push(callback);\n      } else {\n        this.wait();\n        window.setTimeout(function() {\n          var returned = callback.apply(context, [context.content, context.previous_content]);\n          if (returned !== false) {\n            context.next(returned);\n          }\n        }, 13);\n      }\n      return this;\n    },\n\n    // Pause the `RenderContext` queue. Combined with `next()` allows for async\n    // operations.\n    //\n    // ### Example\n    //\n    //        this.get('#/', function() {\n    //          this.load('mytext.json')\n    //              .then(function(content) {\n    //                var context = this,\n    //                    data    = JSON.parse(content);\n    //                // pause execution\n    //                context.wait();\n    //                // post to a url\n    //                $.post(data.url, {}, function(response) {\n    //                  context.next(JSON.parse(response));\n    //                });\n    //              })\n    //              .then(function(data) {\n    //                // data is json from the previous post\n    //                $('#message').text(data.status);\n    //              });\n    //        });\n    wait: function() {\n      this.waiting = true;\n    },\n\n    // Resume the queue, setting `content` to be used in the next operation.\n    // See `wait()` for an example.\n    next: function(content) {\n      this.waiting = false;\n      if (typeof content !== 'undefined') {\n        this.previous_content = this.content;\n        this.content = content;\n      }\n      if (this.callbacks.length > 0) {\n        this.then(this.callbacks.shift());\n      }\n    },\n\n    // Load a template into the context.\n    // The `location` can either be a string specifiying the remote path to the\n    // file, a jQuery object, or a DOM element.\n    //\n    // No interpolation happens by default, the content is stored in\n    // `content`.\n    //\n    // In the case of a path, unless the option `{cache: false}` is passed the\n    // data is stored in the app's `templateCache()`.\n    //\n    // If a jQuery or DOM object is passed the `innerHTML` of the node is pulled in.\n    // This is useful for nesting templates as part of the initial page load wrapped\n    // in invisible elements or `<script>` tags. With template paths, the template\n    // engine is looked up by the extension. For DOM/jQuery embedded templates,\n    // this isnt possible, so there are a couple of options:\n    //\n    //  * pass an `{engine:}` option.\n    //  * define the engine in the `data-engine` attribute of the passed node.\n    //  * just store the raw template data and use `interpolate()` manually\n    //\n    // If a `callback` is passed it is executed after the template load.\n    load: function(location, options, callback) {\n      var context = this;\n      return this.then(function() {\n        var should_cache, cached, is_json, location_array;\n        if (_isFunction(options)) {\n          callback = options;\n          options = {};\n        } else {\n          options = $.extend({}, options);\n        }\n        if (callback) { this.then(callback); }\n        if (typeof location === 'string') {\n          // its a path\n          is_json      = (location.match(/\\.json$/) || options.json);\n          should_cache = ((is_json && options.cache === true) || options.cache !== false);\n          context.next_engine = context.event_context.engineFor(location);\n          delete options.cache;\n          delete options.json;\n          if (options.engine) {\n            context.next_engine = options.engine;\n            delete options.engine;\n          }\n          if (should_cache && (cached = this.event_context.app.templateCache(location))) {\n            return cached;\n          }\n          this.wait();\n          $.ajax($.extend({\n            url: location,\n            data: {},\n            dataType: is_json ? 'json' : null,\n            type: 'get',\n            success: function(data) {\n              if (should_cache) {\n                context.event_context.app.templateCache(location, data);\n              }\n              context.next(data);\n            }\n          }, options));\n          return false;\n        } else {\n          // its a dom/jQuery\n          if (location.nodeType) {\n            return location.innerHTML;\n          }\n          if (location.selector) {\n            // its a jQuery\n            context.next_engine = location.attr('data-engine');\n            if (options.clone === false) {\n              return location.remove()[0].innerHTML.toString();\n            } else {\n              return location[0].innerHTML.toString();\n            }\n          }\n        }\n      });\n    },\n\n    // `load()` a template and then `interpolate()` it with data.\n    //\n    // ### Example\n    //\n    //      this.get('#/', function() {\n    //        this.render('mytemplate.template', {name: 'test'});\n    //      });\n    //\n    render: function(location, data, callback) {\n      if (_isFunction(location) && !data) {\n        return this.then(location);\n      } else {\n        if (!data && this.content) { data = this.content; }\n        return this.load(location)\n                   .interpolate(data, location)\n                   .then(callback);\n      }\n    },\n\n    // `render()` the the `location` with `data` and then `swap()` the\n    // app's `$element` with the rendered content.\n    partial: function(location, data) {\n      return this.render(location, data).swap();\n    },\n\n    // defers the call of function to occur in order of the render queue.\n    // The function can accept any number of arguments as long as the last\n    // argument is a callback function. This is useful for putting arbitrary\n    // asynchronous functions into the queue. The content passed to the\n    // callback is passed as `content` to the next item in the queue.\n    //\n    // === Example\n    //\n    //        this.send($.getJSON, '/app.json')\n    //            .then(function(json) {\n    //              $('#message).text(json['message']);\n    //            });\n    //\n    //\n    send: function() {\n      var context = this,\n          args = _makeArray(arguments),\n          fun  = args.shift();\n\n      if (_isArray(args[0])) { args = args[0]; }\n\n      return this.then(function(content) {\n        args.push(function(response) { context.next(response); });\n        context.wait();\n        fun.apply(fun, args);\n        return false;\n      });\n    },\n\n    // itterates over an array, applying the callback for each item item. the\n    // callback takes the same style of arguments as `jQuery.each()` (index, item).\n    // The return value of each callback is collected as a single string and stored\n    // as `content` to be used in the next iteration of the `RenderContext`.\n    collect: function(array, callback, now) {\n      var context = this;\n      var coll = function() {\n        if (_isFunction(array)) {\n          callback = array;\n          array = this.content;\n        }\n        var contents = [], doms = false;\n        $.each(array, function(i, item) {\n          var returned = callback.apply(context, [i, item]);\n          if (returned.jquery && returned.length == 1) {\n            returned = returned[0];\n            doms = true;\n          }\n          contents.push(returned);\n          return returned;\n        });\n        return doms ? contents : contents.join('');\n      };\n      return now ? coll() : this.then(coll);\n    },\n\n    // loads a template, and then interpolates it for each item in the `data`\n    // array. If a callback is passed, it will call the callback with each\n    // item in the array _after_ interpolation\n    renderEach: function(location, name, data, callback) {\n      if (_isArray(name)) {\n        callback = data;\n        data = name;\n        name = null;\n      }\n      return this.load(location).then(function(content) {\n          var rctx = this;\n          if (!data) {\n            data = _isArray(this.previous_content) ? this.previous_content : [];\n          }\n          if (callback) {\n            $.each(data, function(i, value) {\n              var idata = {}, engine = this.next_engine || location;\n              name ? (idata[name] = value) : (idata = value);\n              callback(value, rctx.event_context.interpolate(content, idata, engine));\n            });\n          } else {\n            return this.collect(data, function(i, value) {\n              var idata = {}, engine = this.next_engine || location;\n              name ? (idata[name] = value) : (idata = value);\n              return this.event_context.interpolate(content, idata, engine);\n            }, true);\n          }\n      });\n    },\n\n    // uses the previous loaded `content` and the `data` object to interpolate\n    // a template. `engine` defines the templating/interpolation method/engine\n    // that should be used. If `engine` is not passed, the `next_engine` is\n    // used. If `retain` is `true`, the final interpolated data is appended to\n    // the `previous_content` instead of just replacing it.\n    interpolate: function(data, engine, retain) {\n      var context = this;\n      return this.then(function(content, prev) {\n        if (!data && prev) { data = prev; }\n        if (this.next_engine) {\n          engine = this.next_engine;\n          this.next_engine = false;\n        }\n        var rendered = context.event_context.interpolate(content, data, engine);\n        return retain ? prev + rendered : rendered;\n      });\n    },\n\n    // executes `EventContext#swap()` with the `content`\n    swap: function() {\n      return this.then(function(content) {\n        this.event_context.swap(content);\n      }).trigger('changed', {});\n    },\n\n    // Same usage as `jQuery.fn.appendTo()` but uses `then()` to ensure order\n    appendTo: function(selector) {\n      return this.then(function(content) {\n        $(selector).append(content);\n      }).trigger('changed', {});\n    },\n\n    // Same usage as `jQuery.fn.prependTo()` but uses `then()` to ensure order\n    prependTo: function(selector) {\n      return this.then(function(content) {\n        $(selector).prepend(content);\n      }).trigger('changed', {});\n    },\n\n    // Replaces the `$(selector)` using `html()` with the previously loaded\n    // `content`\n    replace: function(selector) {\n      return this.then(function(content) {\n        $(selector).html(content);\n      }).trigger('changed', {});\n    },\n\n    // trigger the event in the order of the event context. Same semantics\n    // as `Sammy.EventContext#trigger()`. If data is ommitted, `content`\n    // is sent as `{content: content}`\n    trigger: function(name, data) {\n      return this.then(function(content) {\n        if (typeof data == 'undefined') { data = {content: content}; }\n        this.event_context.trigger(name, data);\n      });\n    }\n\n  });\n\n  // `Sammy.EventContext` objects are created every time a route is run or a\n  // bound event is triggered. The callbacks for these events are evaluated within a `Sammy.EventContext`\n  // This within these callbacks the special methods of `EventContext` are available.\n  //\n  // ### Example\n  //\n  //  $.sammy(function() {\n  //    // The context here is this Sammy.Application\n  //    this.get('#/:name', function() {\n  //      // The context here is a new Sammy.EventContext\n  //      if (this.params['name'] == 'sammy') {\n  //        this.partial('name.html.erb', {name: 'Sammy'});\n  //      } else {\n  //        this.redirect('#/somewhere-else')\n  //      }\n  //    });\n  //  });\n  //\n  // Initialize a new EventContext\n  //\n  // ### Arguments\n  //\n  // * `app` The `Sammy.Application` this event is called within.\n  // * `verb` The verb invoked to run this context/route.\n  // * `path` The string path invoked to run this context/route.\n  // * `params` An Object of optional params to pass to the context. Is converted\n  //   to a `Sammy.Object`.\n  // * `target` a DOM element that the event that holds this context originates\n  //   from. For post, put and del routes, this is the form element that triggered\n  //   the route.\n  //\n  Sammy.EventContext = function(app, verb, path, params, target) {\n    this.app    = app;\n    this.verb   = verb;\n    this.path   = path;\n    this.params = new Sammy.Object(params);\n    this.target = target;\n  };\n\n  Sammy.EventContext.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // A shortcut to the app's `$element()`\n    $element: function() {\n      return this.app.$element(_makeArray(arguments).shift());\n    },\n\n    // Look up a templating engine within the current app and context.\n    // `engine` can be one of the following:\n    //\n    // * a function: should conform to `function(content, data) { return interploated; }`\n    // * a template path: 'template.ejs', looks up the extension to match to\n    //   the `ejs()` helper\n    // * a string referering to the helper: \"mustache\" => `mustache()`\n    //\n    // If no engine is found, use the app's default `template_engine`\n    //\n    engineFor: function(engine) {\n      var context = this, engine_match;\n      // if path is actually an engine function just return it\n      if (_isFunction(engine)) { return engine; }\n      // lookup engine name by path extension\n      engine = (engine || context.app.template_engine).toString();\n      if ((engine_match = engine.match(/\\.([^\\.]+)$/))) {\n        engine = engine_match[1];\n      }\n      // set the engine to the default template engine if no match is found\n      if (engine && _isFunction(context[engine])) {\n        return context[engine];\n      }\n\n      if (context.app.template_engine) {\n        return this.engineFor(context.app.template_engine);\n      }\n      return function(content, data) { return content; };\n    },\n\n    // using the template `engine` found with `engineFor()`, interpolate the\n    // `data` into `content`\n    interpolate: function(content, data, engine) {\n      return this.engineFor(engine).apply(this, [content, data]);\n    },\n\n    // Create and return a `Sammy.RenderContext` calling `render()` on it.\n    // Loads the template and interpolate the data, however does not actual\n    // place it in the DOM.\n    //\n    // ### Example\n    //\n    //      // mytemplate.mustache <div class=\"name\">{{name}}</div>\n    //      render('mytemplate.mustache', {name: 'quirkey'});\n    //      // sets the `content` to <div class=\"name\">quirkey</div>\n    //      render('mytemplate.mustache', {name: 'quirkey'})\n    //        .appendTo('ul');\n    //      // appends the rendered content to $('ul')\n    //\n    render: function(location, data, callback) {\n      return new Sammy.RenderContext(this).render(location, data, callback);\n    },\n\n    // Create and return a `Sammy.RenderContext` calling `renderEach()` on it.\n    // Loads the template and interpolates the data for each item,\n    // however does not actual place it in the DOM.\n    //\n    // ### Example\n    //\n    //      // mytemplate.mustache <div class=\"name\">{{name}}</div>\n    //      renderEach('mytemplate.mustache', [{name: 'quirkey'}, {name: 'endor'}])\n    //      // sets the `content` to <div class=\"name\">quirkey</div><div class=\"name\">endor</div>\n    //      renderEach('mytemplate.mustache', [{name: 'quirkey'}, {name: 'endor'}]).appendTo('ul');\n    //      // appends the rendered content to $('ul')\n    //\n    renderEach: function(location, name, data, callback) {\n      return new Sammy.RenderContext(this).renderEach(location, name, data, callback);\n    },\n\n    // create a new `Sammy.RenderContext` calling `load()` with `location` and\n    // `options`. Called without interpolation or placement, this allows for\n    // preloading/caching the templates.\n    load: function(location, options, callback) {\n      return new Sammy.RenderContext(this).load(location, options, callback);\n    },\n\n    // `render()` the the `location` with `data` and then `swap()` the\n    // app's `$element` with the rendered content.\n    partial: function(location, data) {\n      return new Sammy.RenderContext(this).partial(location, data);\n    },\n\n    // create a new `Sammy.RenderContext` calling `send()` with an arbitrary\n    // function\n    send: function() {\n      var rctx = new Sammy.RenderContext(this);\n      return rctx.send.apply(rctx, arguments);\n    },\n\n    // Changes the location of the current window. If `to` begins with\n    // '#' it only changes the document's hash. If passed more than 1 argument\n    // redirect will join them together with forward slashes.\n    //\n    // ### Example\n    //\n    //      redirect('#/other/route');\n    //      // equivilent to\n    //      redirect('#', 'other', 'route');\n    //\n    redirect: function() {\n      var to, args = _makeArray(arguments),\n          current_location = this.app.getLocation();\n      if (args.length > 1) {\n        args.unshift('/');\n        to = this.join.apply(this, args);\n      } else {\n        to = args[0];\n      }\n      this.trigger('redirect', {to: to});\n      this.app.last_location = [this.verb, this.path];\n      this.app.setLocation(to);\n      if (current_location == to) {\n        this.app.trigger('location-changed');\n      }\n    },\n\n    // Triggers events on `app` within the current context.\n    trigger: function(name, data) {\n      if (typeof data == 'undefined') { data = {}; }\n      if (!data.context) { data.context = this; }\n      return this.app.trigger(name, data);\n    },\n\n    // A shortcut to app's `eventNamespace()`\n    eventNamespace: function() {\n      return this.app.eventNamespace();\n    },\n\n    // A shortcut to app's `swap()`\n    swap: function(contents) {\n      return this.app.swap(contents);\n    },\n\n    // Raises a possible `notFound()` error for the current path.\n    notFound: function() {\n      return this.app.notFound(this.verb, this.path);\n    },\n\n    // Default JSON parsing uses jQuery's `parseJSON()`. Include `Sammy.JSON`\n    // plugin for the more conformant \"crockford special\".\n    json: function(string) {\n      return $.parseJSON(string);\n    },\n\n    // //=> Sammy.EventContext: get #/ {}\n    toString: function() {\n      return \"Sammy.EventContext: \" + [this.verb, this.path, this.params].join(' ');\n    }\n\n  });\n\n  // An alias to Sammy\n  $.sammy = window.Sammy = Sammy;\n\n})(jQuery, window);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/jquery.timeago.js",
    "content": "/*\n * timeago: a jQuery plugin, version: 0.9.3 (2011-01-21)\n * @requires jQuery v1.2.3 or later\n *\n * Timeago is a jQuery plugin that makes it easy to support automatically\n * updating fuzzy timestamps (e.g. \"4 minutes ago\" or \"about 1 day ago\").\n *\n * For usage and examples, visit:\n * http://timeago.yarp.com/\n *\n * Licensed under the MIT:\n * http://www.opensource.org/licenses/mit-license.php\n *\n * Copyright (c) 2008-2011, Ryan McGeary (ryanonjavascript -[at]- mcgeary [*dot*] org)\n */\n\n(function($) {\n  $.timeago = function(timestamp) {\n    if (timestamp instanceof Date) {\n      return inWords(timestamp);\n    } else if (typeof timestamp === \"string\") {\n      return inWords($.timeago.parse(timestamp));\n    } else {\n      return inWords($.timeago.datetime(timestamp));\n    }\n  };\n  var $t = $.timeago;\n\n  $.extend($.timeago, {\n    settings: {\n      refreshMillis: 60000,\n      allowFuture: false,\n      strings: {\n        prefixAgo: null,\n        prefixFromNow: null,\n        suffixAgo: \"ago\",\n        suffixFromNow: \"from now\",\n        seconds: \"less than a minute\",\n        minute: \"about a minute\",\n        minutes: \"%d minutes\",\n        hour: \"about an hour\",\n        hours: \"about %d hours\",\n        day: \"a day\",\n        days: \"%d days\",\n        month: \"about a month\",\n        months: \"%d months\",\n        year: \"about a year\",\n        years: \"%d years\",\n        numbers: []\n      }\n    },\n    inWords: function(distanceMillis) {\n      var $l = this.settings.strings;\n      var prefix = $l.prefixAgo;\n      var suffix = $l.suffixAgo;\n      if (this.settings.allowFuture) {\n        if (distanceMillis < 0) {\n          prefix = $l.prefixFromNow;\n          suffix = $l.suffixFromNow;\n        }\n        distanceMillis = Math.abs(distanceMillis);\n      }\n\n      var seconds = distanceMillis / 1000;\n      var minutes = seconds / 60;\n      var hours = minutes / 60;\n      var days = hours / 24;\n      var years = days / 365;\n\n      function substitute(stringOrFunction, number) {\n        var string = $.isFunction(stringOrFunction) ? stringOrFunction(number, distanceMillis) : stringOrFunction;\n        var value = ($l.numbers && $l.numbers[number]) || number;\n        return string.replace(/%d/i, value);\n      }\n\n      var words = seconds < 45 && substitute($l.seconds, Math.round(seconds)) ||\n        seconds < 90 && substitute($l.minute, 1) ||\n        minutes < 45 && substitute($l.minutes, Math.round(minutes)) ||\n        minutes < 90 && substitute($l.hour, 1) ||\n        hours < 24 && substitute($l.hours, Math.round(hours)) ||\n        hours < 48 && substitute($l.day, 1) ||\n        days < 30 && substitute($l.days, Math.floor(days)) ||\n        days < 60 && substitute($l.month, 1) ||\n        days < 365 && substitute($l.months, Math.floor(days / 30)) ||\n        years < 2 && substitute($l.year, 1) ||\n        substitute($l.years, Math.floor(years));\n\n      return $.trim([prefix, words, suffix].join(\" \"));\n    },\n    parse: function(iso8601) {\n      var s = $.trim(iso8601);\n      s = s.replace(/\\.\\d\\d\\d+/,\"\"); // remove milliseconds\n      s = s.replace(/-/g,\"/\");\n      s = s.replace(/(\\d)T(\\d)/,\"$1 $2\").replace(/(\\d)Z/,\"$1 UTC\");\n      s = s.replace(/([\\+\\-]\\d\\d)\\:?(\\d\\d)/,\" $1$2\"); // -04:00 -> -0400\n      return new Date(s);\n    },\n    datetime: function(elem) {\n      // jQuery's `is()` doesn't play well with HTML5 in IE\n      var isTime = $(elem).get(0).tagName.toLowerCase() === \"time\"; // $(elem).is(\"time\");\n      \n      var iso8601 = null;\n      \n      if( isTime )\n      {\n        iso8601 = $(elem).attr(\"datetime\");\n      }\n      \n      if( !iso8601 )\n      {\n        iso8601 = $(elem).attr(\"title\");\n      }\n      \n      if( !iso8601 )\n      {\n        iso8601 = $(elem).text();\n      }\n      \n      return $t.parse(iso8601);\n    }\n  });\n\n  $.fn.timeago = function() {\n    var self = this;\n    self.each(refresh);\n\n    var $s = $t.settings;\n    if ($s.refreshMillis > 0) {\n      setInterval(function() { self.each(refresh); }, $s.refreshMillis);\n    }\n    return self;\n  };\n\n  function refresh() {\n    var data = prepareData(this);\n    if (!isNaN(data.datetime)) {\n      $(this).text(inWords(data.datetime));\n    }\n    return this;\n  }\n\n  function prepareData(element) {\n    element = $(element);\n    if (!element.data(\"timeago\")) {\n      element.data(\"timeago\", { datetime: $t.datetime(element) });\n      var text = $.trim(element.text());\n      if (text.length > 0) {\n        element.attr(\"title\", text);\n      }\n    }\n    return element.data(\"timeago\");\n  }\n\n  function inWords(date) {\n    return $t.inWords(distance(date));\n  }\n\n  function distance(date) {\n    return (new Date().getTime() - date.getTime());\n  }\n\n  // fix for IE6 suckage\n  document.createElement(\"abbr\");\n  document.createElement(\"time\");\n}(jQuery));\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/linker.js",
    "content": "//by Michalis Tzikas & Vasilis Lolos\n//07-03-2012\n//v1.0\n/*\nCopyright (C) 2011 by Michalis Tzikas & Vasilis Lolos\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n(function( $ ){\n  $.fn.linker = function(options) {\n    var defaults = {\n      target   : '', //blank,self,parent,top\n      className : '',\n      rel : ''\n    };\n    var options = $.extend(defaults, options);\n        \n    target_string = (options.target != '') ? 'target=\"_'+options.target+'\"' : '';\n    class_string  = (options.className != '') ? 'class=\"'+options.className+'\"' : '';\n    rel_string    = (options.rel != '') ? 'rel=\"'+options.rel+'\"' : '';\n\n    $(this).each(function(){\n      t = $(this).text();\n      \n      t = t.replace(/(https\\:\\/\\/|http:\\/\\/)([www\\.]?)([^\\s|<]+)/gi,'<a href=\"$1$2$3\" '+target_string+' '+class_string+' '+rel_string+'>$1$2$3</a>');\n      t = t.replace(/([^https\\:\\/\\/]|[^http:\\/\\/]|^)(www)\\.([^\\s|<]+)/gi,'$1<a href=\"http://$2.$3\" '+target_string+' '+class_string+' '+rel_string+'>$2.$3</a>');\n      t = t.replace(/<([^a]|^\\/a])([^<>]+)>/g, \"&lt;$1$2&gt;\").replace(/&lt;\\/a&gt;/g, \"</a>\").replace(/<(.)>/g, \"&lt;$1&gt;\").replace(/\\n/g, '<br />');\n\n      $(this).html(t);\n    });\n  };\n})( jQuery );"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/lib/order.js",
    "content": "/**\n * @license RequireJS order 1.0.5 Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved.\n * Available via the MIT or new BSD license.\n * see: http://github.com/jrburke/requirejs for details\n */\n/*jslint nomen: false, plusplus: false, strict: false */\n/*global require: false, define: false, window: false, document: false,\n  setTimeout: false */\n\n//Specify that requirejs optimizer should wrap this code in a closure that\n//maps the namespaced requirejs API to non-namespaced local variables.\n/*requirejs namespace: true */\n\n(function () {\n\n    //Sadly necessary browser inference due to differences in the way\n    //that browsers load and execute dynamically inserted javascript\n    //and whether the script/cache method works when ordered execution is\n    //desired. Currently, Gecko and Opera do not load/fire onload for scripts with\n    //type=\"script/cache\" but they execute injected scripts in order\n    //unless the 'async' flag is present.\n    //However, this is all changing in latest browsers implementing HTML5\n    //spec. With compliant browsers .async true by default, and\n    //if false, then it will execute in order. Favor that test first for forward\n    //compatibility.\n    var testScript = typeof document !== \"undefined\" &&\n                 typeof window !== \"undefined\" &&\n                 document.createElement(\"script\"),\n\n        supportsInOrderExecution = testScript && (testScript.async ||\n                               ((window.opera &&\n                                 Object.prototype.toString.call(window.opera) === \"[object Opera]\") ||\n                               //If Firefox 2 does not have to be supported, then\n                               //a better check may be:\n                               //('mozIsLocallyAvailable' in window.navigator)\n                               (\"MozAppearance\" in document.documentElement.style))),\n\n        //This test is true for IE browsers, which will load scripts but only\n        //execute them once the script is added to the DOM.\n        supportsLoadSeparateFromExecute = testScript &&\n                                          testScript.readyState === 'uninitialized',\n\n        readyRegExp = /^(complete|loaded)$/,\n        cacheWaiting = [],\n        cached = {},\n        scriptNodes = {},\n        scriptWaiting = [];\n\n    //Done with the test script.\n    testScript = null;\n\n    //Callback used by the type=\"script/cache\" callback that indicates a script\n    //has finished downloading.\n    function scriptCacheCallback(evt) {\n        var node = evt.currentTarget || evt.srcElement, i,\n            moduleName, resource;\n\n        if (evt.type === \"load\" || readyRegExp.test(node.readyState)) {\n            //Pull out the name of the module and the context.\n            moduleName = node.getAttribute(\"data-requiremodule\");\n\n            //Mark this cache request as loaded\n            cached[moduleName] = true;\n\n            //Find out how many ordered modules have loaded\n            for (i = 0; (resource = cacheWaiting[i]); i++) {\n                if (cached[resource.name]) {\n                    resource.req([resource.name], resource.onLoad);\n                } else {\n                    //Something in the ordered list is not loaded,\n                    //so wait.\n                    break;\n                }\n            }\n\n            //If just loaded some items, remove them from cacheWaiting.\n            if (i > 0) {\n                cacheWaiting.splice(0, i);\n            }\n\n            //Remove this script tag from the DOM\n            //Use a setTimeout for cleanup because some older IE versions vomit\n            //if removing a script node while it is being evaluated.\n            setTimeout(function () {\n                node.parentNode.removeChild(node);\n            }, 15);\n        }\n    }\n\n    /**\n     * Used for the IE case, where fetching is done by creating script element\n     * but not attaching it to the DOM. This function will be called when that\n     * happens so it can be determined when the node can be attached to the\n     * DOM to trigger its execution.\n     */\n    function onFetchOnly(node) {\n        var i, loadedNode, resourceName;\n\n        //Mark this script as loaded.\n        node.setAttribute('data-orderloaded', 'loaded');\n\n        //Cycle through waiting scripts. If the matching node for them\n        //is loaded, and is in the right order, add it to the DOM\n        //to execute the script.\n        for (i = 0; (resourceName = scriptWaiting[i]); i++) {\n            loadedNode = scriptNodes[resourceName];\n            if (loadedNode &&\n                loadedNode.getAttribute('data-orderloaded') === 'loaded') {\n                delete scriptNodes[resourceName];\n                require.addScriptToDom(loadedNode);\n            } else {\n                break;\n            }\n        }\n\n        //If just loaded some items, remove them from waiting.\n        if (i > 0) {\n            scriptWaiting.splice(0, i);\n        }\n    }\n\n    define({\n        version: '1.0.5',\n\n        load: function (name, req, onLoad, config) {\n            var hasToUrl = !!req.nameToUrl,\n                url, node, context;\n\n            //If no nameToUrl, then probably a build with a loader that\n            //does not support it, and all modules are inlined.\n            if (!hasToUrl) {\n                req([name], onLoad);\n                return;\n            }\n\n            url = req.nameToUrl(name, null);\n\n            //Make sure the async attribute is not set for any pathway involving\n            //this script.\n            require.s.skipAsync[url] = true;\n            if (supportsInOrderExecution || config.isBuild) {\n                //Just a normal script tag append, but without async attribute\n                //on the script.\n                req([name], onLoad);\n            } else if (supportsLoadSeparateFromExecute) {\n                //Just fetch the URL, but do not execute it yet. The\n                //non-standards IE case. Really not so nice because it is\n                //assuming and touching requrejs internals. OK though since\n                //ordered execution should go away after a long while.\n                context = require.s.contexts._;\n\n                if (!context.urlFetched[url] && !context.loaded[name]) {\n                    //Indicate the script is being fetched.\n                    context.urlFetched[url] = true;\n\n                    //Stuff from require.load\n                    require.resourcesReady(false);\n                    context.scriptCount += 1;\n\n                    //Fetch the script now, remember it.\n                    node = require.attach(url, context, name, null, null, onFetchOnly);\n                    scriptNodes[name] = node;\n                    scriptWaiting.push(name);\n                }\n\n                //Do a normal require for it, once it loads, use it as return\n                //value.\n                req([name], onLoad);\n            } else {\n                //Credit to LABjs author Kyle Simpson for finding that scripts\n                //with type=\"script/cache\" allow scripts to be downloaded into\n                //browser cache but not executed. Use that\n                //so that subsequent addition of a real type=\"text/javascript\"\n                //tag will cause the scripts to be executed immediately in the\n                //correct order.\n                if (req.specified(name)) {\n                    req([name], onLoad);\n                } else {\n                    cacheWaiting.push({\n                        name: name,\n                        req: req,\n                        onLoad: onLoad\n                    });\n                    require.attach(url, null, name, scriptCacheCallback, \"script/cache\");\n                }\n            }\n        }\n    });\n}());\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/main.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nrequire\n(\n  [\n    'lib/order!lib/console',\n    'lib/order!jquery',\n    'lib/order!lib/jquery.autogrow',\n    'lib/order!lib/jquery.cookie',\n    'lib/order!lib/jquery.form',\n    'lib/order!lib/jquery.jstree',\n    'lib/order!lib/jquery.sammy',\n    'lib/order!lib/jquery.timeago',\n    'lib/order!lib/jquery.blockUI',\n    'lib/order!lib/highlight',\n    'lib/order!lib/linker',\n    'lib/order!lib/ZeroClipboard',\n    'lib/order!lib/d3',\n    'lib/order!lib/chosen',\n    'lib/order!scripts/app',\n\n    'lib/order!scripts/analysis',\n    'lib/order!scripts/cloud',\n    'lib/order!scripts/cores',\n    'lib/order!scripts/dataimport',\n    'lib/order!scripts/dashboard',\n    'lib/order!scripts/file',\n    'lib/order!scripts/index',\n    'lib/order!scripts/java-properties',\n    'lib/order!scripts/logging',\n    'lib/order!scripts/ping',\n    'lib/order!scripts/plugins',\n    'lib/order!scripts/query',\n    'lib/order!scripts/replication',\n    'lib/order!scripts/schema-browser',\n    'lib/order!scripts/threads'\n  ],\n  function( $ )\n  {\n    app.run();\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/require.js",
    "content": "/** vim: et:ts=4:sw=4:sts=4\n * @license RequireJS 1.0.6 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.\n * Available via the MIT or new BSD license.\n * see: http://github.com/jrburke/requirejs for details\n */\n/*jslint strict: false, plusplus: false, sub: true */\n/*global window, navigator, document, importScripts, jQuery, setTimeout, opera */\n\nvar requirejs, require, define;\n(function () {\n    //Change this version number for each release.\n    var version = \"1.0.6\",\n        commentRegExp = /(\\/\\*([\\s\\S]*?)\\*\\/|([^:]|^)\\/\\/(.*)$)/mg,\n        cjsRequireRegExp = /require\\(\\s*[\"']([^'\"\\s]+)[\"']\\s*\\)/g,\n        currDirRegExp = /^\\.\\//,\n        jsSuffixRegExp = /\\.js$/,\n        ostring = Object.prototype.toString,\n        ap = Array.prototype,\n        aps = ap.slice,\n        apsp = ap.splice,\n        isBrowser = !!(typeof window !== \"undefined\" && navigator && document),\n        isWebWorker = !isBrowser && typeof importScripts !== \"undefined\",\n        //PS3 indicates loaded and complete, but need to wait for complete\n        //specifically. Sequence is \"loading\", \"loaded\", execution,\n        // then \"complete\". The UA check is unfortunate, but not sure how\n        //to feature test w/o causing perf issues.\n        readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ?\n                      /^complete$/ : /^(complete|loaded)$/,\n        defContextName = \"_\",\n        //Oh the tragedy, detecting opera. See the usage of isOpera for reason.\n        isOpera = typeof opera !== \"undefined\" && opera.toString() === \"[object Opera]\",\n        empty = {},\n        contexts = {},\n        globalDefQueue = [],\n        interactiveScript = null,\n        checkLoadedDepth = 0,\n        useInteractive = false,\n        reservedDependencies = {\n            require: true,\n            module: true,\n            exports: true\n        },\n        req, cfg = {}, currentlyAddingScript, s, head, baseElement, scripts, script,\n        src, subPath, mainScript, dataMain, globalI, ctx, jQueryCheck, checkLoadedTimeoutId;\n\n    function isFunction(it) {\n        return ostring.call(it) === \"[object Function]\";\n    }\n\n    function isArray(it) {\n        return ostring.call(it) === \"[object Array]\";\n    }\n\n    /**\n     * Simple function to mix in properties from source into target,\n     * but only if target does not already have a property of the same name.\n     * This is not robust in IE for transferring methods that match\n     * Object.prototype names, but the uses of mixin here seem unlikely to\n     * trigger a problem related to that.\n     */\n    function mixin(target, source, force) {\n        for (var prop in source) {\n            if (!(prop in empty) && (!(prop in target) || force)) {\n                target[prop] = source[prop];\n            }\n        }\n        return req;\n    }\n\n    /**\n     * Constructs an error with a pointer to an URL with more information.\n     * @param {String} id the error ID that maps to an ID on a web page.\n     * @param {String} message human readable error.\n     * @param {Error} [err] the original error, if there is one.\n     *\n     * @returns {Error}\n     */\n    function makeError(id, msg, err) {\n        var e = new Error(msg + '\\nhttp://requirejs.org/docs/errors.html#' + id);\n        if (err) {\n            e.originalError = err;\n        }\n        return e;\n    }\n\n    /**\n     * Used to set up package paths from a packagePaths or packages config object.\n     * @param {Object} pkgs the object to store the new package config\n     * @param {Array} currentPackages an array of packages to configure\n     * @param {String} [dir] a prefix dir to use.\n     */\n    function configurePackageDir(pkgs, currentPackages, dir) {\n        var i, location, pkgObj;\n\n        for (i = 0; (pkgObj = currentPackages[i]); i++) {\n            pkgObj = typeof pkgObj === \"string\" ? { name: pkgObj } : pkgObj;\n            location = pkgObj.location;\n\n            //Add dir to the path, but avoid paths that start with a slash\n            //or have a colon (indicates a protocol)\n            if (dir && (!location || (location.indexOf(\"/\") !== 0 && location.indexOf(\":\") === -1))) {\n                location = dir + \"/\" + (location || pkgObj.name);\n            }\n\n            //Create a brand new object on pkgs, since currentPackages can\n            //be passed in again, and config.pkgs is the internal transformed\n            //state for all package configs.\n            pkgs[pkgObj.name] = {\n                name: pkgObj.name,\n                location: location || pkgObj.name,\n                //Remove leading dot in main, so main paths are normalized,\n                //and remove any trailing .js, since different package\n                //envs have different conventions: some use a module name,\n                //some use a file name.\n                main: (pkgObj.main || \"main\")\n                      .replace(currDirRegExp, '')\n                      .replace(jsSuffixRegExp, '')\n            };\n        }\n    }\n\n    /**\n     * jQuery 1.4.3-1.5.x use a readyWait/ready() pairing to hold DOM\n     * ready callbacks, but jQuery 1.6 supports a holdReady() API instead.\n     * At some point remove the readyWait/ready() support and just stick\n     * with using holdReady.\n     */\n    function jQueryHoldReady($, shouldHold) {\n        if ($.holdReady) {\n            $.holdReady(shouldHold);\n        } else if (shouldHold) {\n            $.readyWait += 1;\n        } else {\n            $.ready(true);\n        }\n    }\n\n    if (typeof define !== \"undefined\") {\n        //If a define is already in play via another AMD loader,\n        //do not overwrite.\n        return;\n    }\n\n    if (typeof requirejs !== \"undefined\") {\n        if (isFunction(requirejs)) {\n            //Do not overwrite and existing requirejs instance.\n            return;\n        } else {\n            cfg = requirejs;\n            requirejs = undefined;\n        }\n    }\n\n    //Allow for a require config object\n    if (typeof require !== \"undefined\" && !isFunction(require)) {\n        //assume it is a config object.\n        cfg = require;\n        require = undefined;\n    }\n\n    /**\n     * Creates a new context for use in require and define calls.\n     * Handle most of the heavy lifting. Do not want to use an object\n     * with prototype here to avoid using \"this\" in require, in case it\n     * needs to be used in more super secure envs that do not want this.\n     * Also there should not be that many contexts in the page. Usually just\n     * one for the default context, but could be extra for multiversion cases\n     * or if a package needs a special context for a dependency that conflicts\n     * with the standard context.\n     */\n    function newContext(contextName) {\n        var context, resume,\n            config = {\n                waitSeconds: 7,\n                baseUrl: \"./\",\n                paths: {},\n                pkgs: {},\n                catchError: {}\n            },\n            defQueue = [],\n            specified = {\n                \"require\": true,\n                \"exports\": true,\n                \"module\": true\n            },\n            urlMap = {},\n            defined = {},\n            loaded = {},\n            waiting = {},\n            waitAry = [],\n            urlFetched = {},\n            managerCounter = 0,\n            managerCallbacks = {},\n            plugins = {},\n            //Used to indicate which modules in a build scenario\n            //need to be full executed.\n            needFullExec = {},\n            fullExec = {},\n            resumeDepth = 0;\n\n        /**\n         * Trims the . and .. from an array of path segments.\n         * It will keep a leading path segment if a .. will become\n         * the first path segment, to help with module name lookups,\n         * which act like paths, but can be remapped. But the end result,\n         * all paths that use this function should look normalized.\n         * NOTE: this method MODIFIES the input array.\n         * @param {Array} ary the array of path segments.\n         */\n        function trimDots(ary) {\n            var i, part;\n            for (i = 0; (part = ary[i]); i++) {\n                if (part === \".\") {\n                    ary.splice(i, 1);\n                    i -= 1;\n                } else if (part === \"..\") {\n                    if (i === 1 && (ary[2] === '..' || ary[0] === '..')) {\n                        //End of the line. Keep at least one non-dot\n                        //path segment at the front so it can be mapped\n                        //correctly to disk. Otherwise, there is likely\n                        //no path mapping for a path starting with '..'.\n                        //This can still fail, but catches the most reasonable\n                        //uses of ..\n                        break;\n                    } else if (i > 0) {\n                        ary.splice(i - 1, 2);\n                        i -= 2;\n                    }\n                }\n            }\n        }\n\n        /**\n         * Given a relative module name, like ./something, normalize it to\n         * a real name that can be mapped to a path.\n         * @param {String} name the relative name\n         * @param {String} baseName a real name that the name arg is relative\n         * to.\n         * @returns {String} normalized name\n         */\n        function normalize(name, baseName) {\n            var pkgName, pkgConfig;\n\n            //Adjust any relative paths.\n            if (name && name.charAt(0) === \".\") {\n                //If have a base name, try to normalize against it,\n                //otherwise, assume it is a top-level require that will\n                //be relative to baseUrl in the end.\n                if (baseName) {\n                    if (config.pkgs[baseName]) {\n                        //If the baseName is a package name, then just treat it as one\n                        //name to concat the name with.\n                        baseName = [baseName];\n                    } else {\n                        //Convert baseName to array, and lop off the last part,\n                        //so that . matches that \"directory\" and not name of the baseName's\n                        //module. For instance, baseName of \"one/two/three\", maps to\n                        //\"one/two/three.js\", but we want the directory, \"one/two\" for\n                        //this normalization.\n                        baseName = baseName.split(\"/\");\n                        baseName = baseName.slice(0, baseName.length - 1);\n                    }\n\n                    name = baseName.concat(name.split(\"/\"));\n                    trimDots(name);\n\n                    //Some use of packages may use a . path to reference the\n                    //\"main\" module name, so normalize for that.\n                    pkgConfig = config.pkgs[(pkgName = name[0])];\n                    name = name.join(\"/\");\n                    if (pkgConfig && name === pkgName + '/' + pkgConfig.main) {\n                        name = pkgName;\n                    }\n                } else if (name.indexOf(\"./\") === 0) {\n                    // No baseName, so this is ID is resolved relative\n                    // to baseUrl, pull off the leading dot.\n                    name = name.substring(2);\n                }\n            }\n            return name;\n        }\n\n        /**\n         * Creates a module mapping that includes plugin prefix, module\n         * name, and path. If parentModuleMap is provided it will\n         * also normalize the name via require.normalize()\n         *\n         * @param {String} name the module name\n         * @param {String} [parentModuleMap] parent module map\n         * for the module name, used to resolve relative names.\n         *\n         * @returns {Object}\n         */\n        function makeModuleMap(name, parentModuleMap) {\n            var index = name ? name.indexOf(\"!\") : -1,\n                prefix = null,\n                parentName = parentModuleMap ? parentModuleMap.name : null,\n                originalName = name,\n                normalizedName, url, pluginModule;\n\n            if (index !== -1) {\n                prefix = name.substring(0, index);\n                name = name.substring(index + 1, name.length);\n            }\n\n            if (prefix) {\n                prefix = normalize(prefix, parentName);\n            }\n\n            //Account for relative paths if there is a base name.\n            if (name) {\n                if (prefix) {\n                    pluginModule = defined[prefix];\n                    if (pluginModule && pluginModule.normalize) {\n                        //Plugin is loaded, use its normalize method.\n                        normalizedName = pluginModule.normalize(name, function (name) {\n                            return normalize(name, parentName);\n                        });\n                    } else {\n                        normalizedName = normalize(name, parentName);\n                    }\n                } else {\n                    //A regular module.\n                    normalizedName = normalize(name, parentName);\n\n                    url = urlMap[normalizedName];\n                    if (!url) {\n                        //Calculate url for the module, if it has a name.\n                        //Use name here since nameToUrl also calls normalize,\n                        //and for relative names that are outside the baseUrl\n                        //this causes havoc. Was thinking of just removing\n                        //parentModuleMap to avoid extra normalization, but\n                        //normalize() still does a dot removal because of\n                        //issue #142, so just pass in name here and redo\n                        //the normalization. Paths outside baseUrl are just\n                        //messy to support.\n                        url = context.nameToUrl(name, null, parentModuleMap);\n\n                        //Store the URL mapping for later.\n                        urlMap[normalizedName] = url;\n                    }\n                }\n            }\n\n            return {\n                prefix: prefix,\n                name: normalizedName,\n                parentMap: parentModuleMap,\n                url: url,\n                originalName: originalName,\n                fullName: prefix ? prefix + \"!\" + (normalizedName || '') : normalizedName\n            };\n        }\n\n        /**\n         * Determine if priority loading is done. If so clear the priorityWait\n         */\n        function isPriorityDone() {\n            var priorityDone = true,\n                priorityWait = config.priorityWait,\n                priorityName, i;\n            if (priorityWait) {\n                for (i = 0; (priorityName = priorityWait[i]); i++) {\n                    if (!loaded[priorityName]) {\n                        priorityDone = false;\n                        break;\n                    }\n                }\n                if (priorityDone) {\n                    delete config.priorityWait;\n                }\n            }\n            return priorityDone;\n        }\n\n        function makeContextModuleFunc(func, relModuleMap, enableBuildCallback) {\n            return function () {\n                //A version of a require function that passes a moduleName\n                //value for items that may need to\n                //look up paths relative to the moduleName\n                var args = aps.call(arguments, 0), lastArg;\n                if (enableBuildCallback &&\n                    isFunction((lastArg = args[args.length - 1]))) {\n                    lastArg.__requireJsBuild = true;\n                }\n                args.push(relModuleMap);\n                return func.apply(null, args);\n            };\n        }\n\n        /**\n         * Helper function that creates a require function object to give to\n         * modules that ask for it as a dependency. It needs to be specific\n         * per module because of the implication of path mappings that may\n         * need to be relative to the module name.\n         */\n        function makeRequire(relModuleMap, enableBuildCallback, altRequire) {\n            var modRequire = makeContextModuleFunc(altRequire || context.require, relModuleMap, enableBuildCallback);\n\n            mixin(modRequire, {\n                nameToUrl: makeContextModuleFunc(context.nameToUrl, relModuleMap),\n                toUrl: makeContextModuleFunc(context.toUrl, relModuleMap),\n                defined: makeContextModuleFunc(context.requireDefined, relModuleMap),\n                specified: makeContextModuleFunc(context.requireSpecified, relModuleMap),\n                isBrowser: req.isBrowser\n            });\n            return modRequire;\n        }\n\n        /*\n         * Queues a dependency for checking after the loader is out of a\n         * \"paused\" state, for example while a script file is being loaded\n         * in the browser, where it may have many modules defined in it.\n         */\n        function queueDependency(manager) {\n            context.paused.push(manager);\n        }\n\n        function execManager(manager) {\n            var i, ret, err, errFile, errModuleTree,\n                cb = manager.callback,\n                map = manager.map,\n                fullName = map.fullName,\n                args = manager.deps,\n                listeners = manager.listeners,\n                cjsModule;\n\n            //Call the callback to define the module, if necessary.\n            if (cb && isFunction(cb)) {\n                if (config.catchError.define) {\n                    try {\n                        ret = req.execCb(fullName, manager.callback, args, defined[fullName]);\n                    } catch (e) {\n                        err = e;\n                    }\n                } else {\n                    ret = req.execCb(fullName, manager.callback, args, defined[fullName]);\n                }\n\n                if (fullName) {\n                    //If setting exports via \"module\" is in play,\n                    //favor that over return value and exports. After that,\n                    //favor a non-undefined return value over exports use.\n                    cjsModule = manager.cjsModule;\n                    if (cjsModule &&\n                        cjsModule.exports !== undefined &&\n                        //Make sure it is not already the exports value\n                        cjsModule.exports !== defined[fullName]) {\n                        ret = defined[fullName] = manager.cjsModule.exports;\n                    } else if (ret === undefined && manager.usingExports) {\n                        //exports already set the defined value.\n                        ret = defined[fullName];\n                    } else {\n                        //Use the return value from the function.\n                        defined[fullName] = ret;\n                        //If this module needed full execution in a build\n                        //environment, mark that now.\n                        if (needFullExec[fullName]) {\n                            fullExec[fullName] = true;\n                        }\n                    }\n                }\n            } else if (fullName) {\n                //May just be an object definition for the module. Only\n                //worry about defining if have a module name.\n                ret = defined[fullName] = cb;\n\n                //If this module needed full execution in a build\n                //environment, mark that now.\n                if (needFullExec[fullName]) {\n                    fullExec[fullName] = true;\n                }\n            }\n\n            //Clean up waiting. Do this before error calls, and before\n            //calling back listeners, so that bookkeeping is correct\n            //in the event of an error and error is reported in correct order,\n            //since the listeners will likely have errors if the\n            //onError function does not throw.\n            if (waiting[manager.id]) {\n                delete waiting[manager.id];\n                manager.isDone = true;\n                context.waitCount -= 1;\n                if (context.waitCount === 0) {\n                    //Clear the wait array used for cycles.\n                    waitAry = [];\n                }\n            }\n\n            //Do not need to track manager callback now that it is defined.\n            delete managerCallbacks[fullName];\n\n            //Allow instrumentation like the optimizer to know the order\n            //of modules executed and their dependencies.\n            if (req.onResourceLoad && !manager.placeholder) {\n                req.onResourceLoad(context, map, manager.depArray);\n            }\n\n            if (err) {\n                errFile = (fullName ? makeModuleMap(fullName).url : '') ||\n                           err.fileName || err.sourceURL;\n                errModuleTree = err.moduleTree;\n                err = makeError('defineerror', 'Error evaluating ' +\n                                'module \"' + fullName + '\" at location \"' +\n                                errFile + '\":\\n' +\n                                err + '\\nfileName:' + errFile +\n                                '\\nlineNumber: ' + (err.lineNumber || err.line), err);\n                err.moduleName = fullName;\n                err.moduleTree = errModuleTree;\n                return req.onError(err);\n            }\n\n            //Let listeners know of this manager's value.\n            for (i = 0; (cb = listeners[i]); i++) {\n                cb(ret);\n            }\n\n            return undefined;\n        }\n\n        /**\n         * Helper that creates a callack function that is called when a dependency\n         * is ready, and sets the i-th dependency for the manager as the\n         * value passed to the callback generated by this function.\n         */\n        function makeArgCallback(manager, i) {\n            return function (value) {\n                //Only do the work if it has not been done\n                //already for a dependency. Cycle breaking\n                //logic in forceExec could mean this function\n                //is called more than once for a given dependency.\n                if (!manager.depDone[i]) {\n                    manager.depDone[i] = true;\n                    manager.deps[i] = value;\n                    manager.depCount -= 1;\n                    if (!manager.depCount) {\n                        //All done, execute!\n                        execManager(manager);\n                    }\n                }\n            };\n        }\n\n        function callPlugin(pluginName, depManager) {\n            var map = depManager.map,\n                fullName = map.fullName,\n                name = map.name,\n                plugin = plugins[pluginName] ||\n                        (plugins[pluginName] = defined[pluginName]),\n                load;\n\n            //No need to continue if the manager is already\n            //in the process of loading.\n            if (depManager.loading) {\n                return;\n            }\n            depManager.loading = true;\n\n            load = function (ret) {\n                depManager.callback = function () {\n                    return ret;\n                };\n                execManager(depManager);\n\n                loaded[depManager.id] = true;\n\n                //The loading of this plugin\n                //might have placed other things\n                //in the paused queue. In particular,\n                //a loader plugin that depends on\n                //a different plugin loaded resource.\n                resume();\n            };\n\n            //Allow plugins to load other code without having to know the\n            //context or how to \"complete\" the load.\n            load.fromText = function (moduleName, text) {\n                /*jslint evil: true */\n                var hasInteractive = useInteractive;\n\n                //Indicate a the module is in process of loading.\n                loaded[moduleName] = false;\n                context.scriptCount += 1;\n\n                //Indicate this is not a \"real\" module, so do not track it\n                //for builds, it does not map to a real file.\n                context.fake[moduleName] = true;\n\n                //Turn off interactive script matching for IE for any define\n                //calls in the text, then turn it back on at the end.\n                if (hasInteractive) {\n                    useInteractive = false;\n                }\n\n                req.exec(text);\n\n                if (hasInteractive) {\n                    useInteractive = true;\n                }\n\n                //Support anonymous modules.\n                context.completeLoad(moduleName);\n            };\n\n            //No need to continue if the plugin value has already been\n            //defined by a build.\n            if (fullName in defined) {\n                load(defined[fullName]);\n            } else {\n                //Use parentName here since the plugin's name is not reliable,\n                //could be some weird string with no path that actually wants to\n                //reference the parentName's path.\n                plugin.load(name, makeRequire(map.parentMap, true, function (deps, cb) {\n                    var moduleDeps = [],\n                        i, dep, depMap;\n                    //Convert deps to full names and hold on to them\n                    //for reference later, when figuring out if they\n                    //are blocked by a circular dependency.\n                    for (i = 0; (dep = deps[i]); i++) {\n                        depMap = makeModuleMap(dep, map.parentMap);\n                        deps[i] = depMap.fullName;\n                        if (!depMap.prefix) {\n                            moduleDeps.push(deps[i]);\n                        }\n                    }\n                    depManager.moduleDeps = (depManager.moduleDeps || []).concat(moduleDeps);\n                    return context.require(deps, cb);\n                }), load, config);\n            }\n        }\n\n        /**\n         * Adds the manager to the waiting queue. Only fully\n         * resolved items should be in the waiting queue.\n         */\n        function addWait(manager) {\n            if (!waiting[manager.id]) {\n                waiting[manager.id] = manager;\n                waitAry.push(manager);\n                context.waitCount += 1;\n            }\n        }\n\n        /**\n         * Function added to every manager object. Created out here\n         * to avoid new function creation for each manager instance.\n         */\n        function managerAdd(cb) {\n            this.listeners.push(cb);\n        }\n\n        function getManager(map, shouldQueue) {\n            var fullName = map.fullName,\n                prefix = map.prefix,\n                plugin = prefix ? plugins[prefix] ||\n                                (plugins[prefix] = defined[prefix]) : null,\n                manager, created, pluginManager, prefixMap;\n\n            if (fullName) {\n                manager = managerCallbacks[fullName];\n            }\n\n            if (!manager) {\n                created = true;\n                manager = {\n                    //ID is just the full name, but if it is a plugin resource\n                    //for a plugin that has not been loaded,\n                    //then add an ID counter to it.\n                    id: (prefix && !plugin ?\n                        (managerCounter++) + '__p@:' : '') +\n                        (fullName || '__r@' + (managerCounter++)),\n                    map: map,\n                    depCount: 0,\n                    depDone: [],\n                    depCallbacks: [],\n                    deps: [],\n                    listeners: [],\n                    add: managerAdd\n                };\n\n                specified[manager.id] = true;\n\n                //Only track the manager/reuse it if this is a non-plugin\n                //resource. Also only track plugin resources once\n                //the plugin has been loaded, and so the fullName is the\n                //true normalized value.\n                if (fullName && (!prefix || plugins[prefix])) {\n                    managerCallbacks[fullName] = manager;\n                }\n            }\n\n            //If there is a plugin needed, but it is not loaded,\n            //first load the plugin, then continue on.\n            if (prefix && !plugin) {\n                prefixMap = makeModuleMap(prefix);\n\n                //Clear out defined and urlFetched if the plugin was previously\n                //loaded/defined, but not as full module (as in a build\n                //situation). However, only do this work if the plugin is in\n                //defined but does not have a module export value.\n                if (prefix in defined && !defined[prefix]) {\n                    delete defined[prefix];\n                    delete urlFetched[prefixMap.url];\n                }\n\n                pluginManager = getManager(prefixMap, true);\n                pluginManager.add(function (plugin) {\n                    //Create a new manager for the normalized\n                    //resource ID and have it call this manager when\n                    //done.\n                    var newMap = makeModuleMap(map.originalName, map.parentMap),\n                        normalizedManager = getManager(newMap, true);\n\n                    //Indicate this manager is a placeholder for the real,\n                    //normalized thing. Important for when trying to map\n                    //modules and dependencies, for instance, in a build.\n                    manager.placeholder = true;\n\n                    normalizedManager.add(function (resource) {\n                        manager.callback = function () {\n                            return resource;\n                        };\n                        execManager(manager);\n                    });\n                });\n            } else if (created && shouldQueue) {\n                //Indicate the resource is not loaded yet if it is to be\n                //queued.\n                loaded[manager.id] = false;\n                queueDependency(manager);\n                addWait(manager);\n            }\n\n            return manager;\n        }\n\n        function main(inName, depArray, callback, relModuleMap) {\n            var moduleMap = makeModuleMap(inName, relModuleMap),\n                name = moduleMap.name,\n                fullName = moduleMap.fullName,\n                manager = getManager(moduleMap),\n                id = manager.id,\n                deps = manager.deps,\n                i, depArg, depName, depPrefix, cjsMod;\n\n            if (fullName) {\n                //If module already defined for context, or already loaded,\n                //then leave. Also leave if jQuery is registering but it does\n                //not match the desired version number in the config.\n                if (fullName in defined || loaded[id] === true ||\n                    (fullName === \"jquery\" && config.jQuery &&\n                     config.jQuery !== callback().fn.jquery)) {\n                    return;\n                }\n\n                //Set specified/loaded here for modules that are also loaded\n                //as part of a layer, where onScriptLoad is not fired\n                //for those cases. Do this after the inline define and\n                //dependency tracing is done.\n                specified[id] = true;\n                loaded[id] = true;\n\n                //If module is jQuery set up delaying its dom ready listeners.\n                if (fullName === \"jquery\" && callback) {\n                    jQueryCheck(callback());\n                }\n            }\n\n            //Attach real depArray and callback to the manager. Do this\n            //only if the module has not been defined already, so do this after\n            //the fullName checks above. IE can call main() more than once\n            //for a module.\n            manager.depArray = depArray;\n            manager.callback = callback;\n\n            //Add the dependencies to the deps field, and register for callbacks\n            //on the dependencies.\n            for (i = 0; i < depArray.length; i++) {\n                depArg = depArray[i];\n                //There could be cases like in IE, where a trailing comma will\n                //introduce a null dependency, so only treat a real dependency\n                //value as a dependency.\n                if (depArg) {\n                    //Split the dependency name into plugin and name parts\n                    depArg = makeModuleMap(depArg, (name ? moduleMap : relModuleMap));\n                    depName = depArg.fullName;\n                    depPrefix = depArg.prefix;\n\n                    //Fix the name in depArray to be just the name, since\n                    //that is how it will be called back later.\n                    depArray[i] = depName;\n\n                    //Fast path CommonJS standard dependencies.\n                    if (depName === \"require\") {\n                        deps[i] = makeRequire(moduleMap);\n                    } else if (depName === \"exports\") {\n                        //CommonJS module spec 1.1\n                        deps[i] = defined[fullName] = {};\n                        manager.usingExports = true;\n                    } else if (depName === \"module\") {\n                        //CommonJS module spec 1.1\n                        manager.cjsModule = cjsMod = deps[i] = {\n                            id: name,\n                            uri: name ? context.nameToUrl(name, null, relModuleMap) : undefined,\n                            exports: defined[fullName]\n                        };\n                    } else if (depName in defined && !(depName in waiting) &&\n                               (!(fullName in needFullExec) ||\n                                (fullName in needFullExec && fullExec[depName]))) {\n                        //Module already defined, and not in a build situation\n                        //where the module is a something that needs full\n                        //execution and this dependency has not been fully\n                        //executed. See r.js's requirePatch.js for more info\n                        //on fullExec.\n                        deps[i] = defined[depName];\n                    } else {\n                        //Mark this dependency as needing full exec if\n                        //the current module needs full exec.\n                        if (fullName in needFullExec) {\n                            needFullExec[depName] = true;\n                            //Reset state so fully executed code will get\n                            //picked up correctly.\n                            delete defined[depName];\n                            urlFetched[depArg.url] = false;\n                        }\n\n                        //Either a resource that is not loaded yet, or a plugin\n                        //resource for either a plugin that has not\n                        //loaded yet.\n                        manager.depCount += 1;\n                        manager.depCallbacks[i] = makeArgCallback(manager, i);\n                        getManager(depArg, true).add(manager.depCallbacks[i]);\n                    }\n                }\n            }\n\n            //Do not bother tracking the manager if it is all done.\n            if (!manager.depCount) {\n                //All done, execute!\n                execManager(manager);\n            } else {\n                addWait(manager);\n            }\n        }\n\n        /**\n         * Convenience method to call main for a define call that was put on\n         * hold in the defQueue.\n         */\n        function callDefMain(args) {\n            main.apply(null, args);\n        }\n\n        /**\n         * jQuery 1.4.3+ supports ways to hold off calling\n         * calling jQuery ready callbacks until all scripts are loaded. Be sure\n         * to track it if the capability exists.. Also, since jQuery 1.4.3 does\n         * not register as a module, need to do some global inference checking.\n         * Even if it does register as a module, not guaranteed to be the precise\n         * name of the global. If a jQuery is tracked for this context, then go\n         * ahead and register it as a module too, if not already in process.\n         */\n        jQueryCheck = function (jqCandidate) {\n            if (!context.jQuery) {\n                var $ = jqCandidate || (typeof jQuery !== \"undefined\" ? jQuery : null);\n\n                if ($) {\n                    //If a specific version of jQuery is wanted, make sure to only\n                    //use this jQuery if it matches.\n                    if (config.jQuery && $.fn.jquery !== config.jQuery) {\n                        return;\n                    }\n\n                    if (\"holdReady\" in $ || \"readyWait\" in $) {\n                        context.jQuery = $;\n\n                        //Manually create a \"jquery\" module entry if not one already\n                        //or in process. Note this could trigger an attempt at\n                        //a second jQuery registration, but does no harm since\n                        //the first one wins, and it is the same value anyway.\n                        callDefMain([\"jquery\", [], function () {\n                            return jQuery;\n                        }]);\n\n                        //Ask jQuery to hold DOM ready callbacks.\n                        if (context.scriptCount) {\n                            jQueryHoldReady($, true);\n                            context.jQueryIncremented = true;\n                        }\n                    }\n                }\n            }\n        };\n\n        function findCycle(manager, traced) {\n            var fullName = manager.map.fullName,\n                depArray = manager.depArray,\n                fullyLoaded = true,\n                i, depName, depManager, result;\n\n            if (manager.isDone || !fullName || !loaded[fullName]) {\n                return result;\n            }\n\n            //Found the cycle.\n            if (traced[fullName]) {\n                return manager;\n            }\n\n            traced[fullName] = true;\n\n            //Trace through the dependencies.\n            if (depArray) {\n                for (i = 0; i < depArray.length; i++) {\n                    //Some array members may be null, like if a trailing comma\n                    //IE, so do the explicit [i] access and check if it has a value.\n                    depName = depArray[i];\n                    if (!loaded[depName] && !reservedDependencies[depName]) {\n                        fullyLoaded = false;\n                        break;\n                    }\n                    depManager = waiting[depName];\n                    if (depManager && !depManager.isDone && loaded[depName]) {\n                        result = findCycle(depManager, traced);\n                        if (result) {\n                            break;\n                        }\n                    }\n                }\n                if (!fullyLoaded) {\n                    //Discard the cycle that was found, since it cannot\n                    //be forced yet. Also clear this module from traced.\n                    result = undefined;\n                    delete traced[fullName];\n                }\n            }\n\n            return result;\n        }\n\n        function forceExec(manager, traced) {\n            var fullName = manager.map.fullName,\n                depArray = manager.depArray,\n                i, depName, depManager, prefix, prefixManager, value;\n\n\n            if (manager.isDone || !fullName || !loaded[fullName]) {\n                return undefined;\n            }\n\n            if (fullName) {\n                if (traced[fullName]) {\n                    return defined[fullName];\n                }\n\n                traced[fullName] = true;\n            }\n\n            //Trace through the dependencies.\n            if (depArray) {\n                for (i = 0; i < depArray.length; i++) {\n                    //Some array members may be null, like if a trailing comma\n                    //IE, so do the explicit [i] access and check if it has a value.\n                    depName = depArray[i];\n                    if (depName) {\n                        //First, make sure if it is a plugin resource that the\n                        //plugin is not blocked.\n                        prefix = makeModuleMap(depName).prefix;\n                        if (prefix && (prefixManager = waiting[prefix])) {\n                            forceExec(prefixManager, traced);\n                        }\n                        depManager = waiting[depName];\n                        if (depManager && !depManager.isDone && loaded[depName]) {\n                            value = forceExec(depManager, traced);\n                            manager.depCallbacks[i](value);\n                        }\n                    }\n                }\n            }\n\n            return defined[fullName];\n        }\n\n        /**\n         * Checks if all modules for a context are loaded, and if so, evaluates the\n         * new ones in right dependency order.\n         *\n         * @private\n         */\n        function checkLoaded() {\n            var waitInterval = config.waitSeconds * 1000,\n                //It is possible to disable the wait interval by using waitSeconds of 0.\n                expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(),\n                noLoads = \"\", hasLoadedProp = false, stillLoading = false,\n                cycleDeps = [],\n                i, prop, err, manager, cycleManager, moduleDeps;\n\n            //If there are items still in the paused queue processing wait.\n            //This is particularly important in the sync case where each paused\n            //item is processed right away but there may be more waiting.\n            if (context.pausedCount > 0) {\n                return undefined;\n            }\n\n            //Determine if priority loading is done. If so clear the priority. If\n            //not, then do not check\n            if (config.priorityWait) {\n                if (isPriorityDone()) {\n                    //Call resume, since it could have\n                    //some waiting dependencies to trace.\n                    resume();\n                } else {\n                    return undefined;\n                }\n            }\n\n            //See if anything is still in flight.\n            for (prop in loaded) {\n                if (!(prop in empty)) {\n                    hasLoadedProp = true;\n                    if (!loaded[prop]) {\n                        if (expired) {\n                            noLoads += prop + \" \";\n                        } else {\n                            stillLoading = true;\n                            if (prop.indexOf('!') === -1) {\n                                //No reason to keep looking for unfinished\n                                //loading. If the only stillLoading is a\n                                //plugin resource though, keep going,\n                                //because it may be that a plugin resource\n                                //is waiting on a non-plugin cycle.\n                                cycleDeps = [];\n                                break;\n                            } else {\n                                moduleDeps = managerCallbacks[prop] && managerCallbacks[prop].moduleDeps;\n                                if (moduleDeps) {\n                                    cycleDeps.push.apply(cycleDeps, moduleDeps);\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n\n            //Check for exit conditions.\n            if (!hasLoadedProp && !context.waitCount) {\n                //If the loaded object had no items, then the rest of\n                //the work below does not need to be done.\n                return undefined;\n            }\n            if (expired && noLoads) {\n                //If wait time expired, throw error of unloaded modules.\n                err = makeError(\"timeout\", \"Load timeout for modules: \" + noLoads);\n                err.requireType = \"timeout\";\n                err.requireModules = noLoads;\n                err.contextName = context.contextName;\n                return req.onError(err);\n            }\n\n            //If still loading but a plugin is waiting on a regular module cycle\n            //break the cycle.\n            if (stillLoading && cycleDeps.length) {\n                for (i = 0; (manager = waiting[cycleDeps[i]]); i++) {\n                    if ((cycleManager = findCycle(manager, {}))) {\n                        forceExec(cycleManager, {});\n                        break;\n                    }\n                }\n\n            }\n\n            //If still waiting on loads, and the waiting load is something\n            //other than a plugin resource, or there are still outstanding\n            //scripts, then just try back later.\n            if (!expired && (stillLoading || context.scriptCount)) {\n                //Something is still waiting to load. Wait for it, but only\n                //if a timeout is not already in effect.\n                if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) {\n                    checkLoadedTimeoutId = setTimeout(function () {\n                        checkLoadedTimeoutId = 0;\n                        checkLoaded();\n                    }, 50);\n                }\n                return undefined;\n            }\n\n            //If still have items in the waiting cue, but all modules have\n            //been loaded, then it means there are some circular dependencies\n            //that need to be broken.\n            //However, as a waiting thing is fired, then it can add items to\n            //the waiting cue, and those items should not be fired yet, so\n            //make sure to redo the checkLoaded call after breaking a single\n            //cycle, if nothing else loaded then this logic will pick it up\n            //again.\n            if (context.waitCount) {\n                //Cycle through the waitAry, and call items in sequence.\n                for (i = 0; (manager = waitAry[i]); i++) {\n                    forceExec(manager, {});\n                }\n\n                //If anything got placed in the paused queue, run it down.\n                if (context.paused.length) {\n                    resume();\n                }\n\n                //Only allow this recursion to a certain depth. Only\n                //triggered by errors in calling a module in which its\n                //modules waiting on it cannot finish loading, or some circular\n                //dependencies that then may add more dependencies.\n                //The value of 5 is a bit arbitrary. Hopefully just one extra\n                //pass, or two for the case of circular dependencies generating\n                //more work that gets resolved in the sync node case.\n                if (checkLoadedDepth < 5) {\n                    checkLoadedDepth += 1;\n                    checkLoaded();\n                }\n            }\n\n            checkLoadedDepth = 0;\n\n            //Check for DOM ready, and nothing is waiting across contexts.\n            req.checkReadyState();\n\n            return undefined;\n        }\n\n        /**\n         * Resumes tracing of dependencies and then checks if everything is loaded.\n         */\n        resume = function () {\n            var manager, map, url, i, p, args, fullName;\n\n            //Any defined modules in the global queue, intake them now.\n            context.takeGlobalQueue();\n\n            resumeDepth += 1;\n\n            if (context.scriptCount <= 0) {\n                //Synchronous envs will push the number below zero with the\n                //decrement above, be sure to set it back to zero for good measure.\n                //require() calls that also do not end up loading scripts could\n                //push the number negative too.\n                context.scriptCount = 0;\n            }\n\n            //Make sure any remaining defQueue items get properly processed.\n            while (defQueue.length) {\n                args = defQueue.shift();\n                if (args[0] === null) {\n                    return req.onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1]));\n                } else {\n                    callDefMain(args);\n                }\n            }\n\n            //Skip the resume of paused dependencies\n            //if current context is in priority wait.\n            if (!config.priorityWait || isPriorityDone()) {\n                while (context.paused.length) {\n                    p = context.paused;\n                    context.pausedCount += p.length;\n                    //Reset paused list\n                    context.paused = [];\n\n                    for (i = 0; (manager = p[i]); i++) {\n                        map = manager.map;\n                        url = map.url;\n                        fullName = map.fullName;\n\n                        //If the manager is for a plugin managed resource,\n                        //ask the plugin to load it now.\n                        if (map.prefix) {\n                            callPlugin(map.prefix, manager);\n                        } else {\n                            //Regular dependency.\n                            if (!urlFetched[url] && !loaded[fullName]) {\n                                req.load(context, fullName, url);\n\n                                //Mark the URL as fetched, but only if it is\n                                //not an empty: URL, used by the optimizer.\n                                //In that case we need to be sure to call\n                                //load() for each module that is mapped to\n                                //empty: so that dependencies are satisfied\n                                //correctly.\n                                if (url.indexOf('empty:') !== 0) {\n                                    urlFetched[url] = true;\n                                }\n                            }\n                        }\n                    }\n\n                    //Move the start time for timeout forward.\n                    context.startTime = (new Date()).getTime();\n                    context.pausedCount -= p.length;\n                }\n            }\n\n            //Only check if loaded when resume depth is 1. It is likely that\n            //it is only greater than 1 in sync environments where a factory\n            //function also then calls the callback-style require. In those\n            //cases, the checkLoaded should not occur until the resume\n            //depth is back at the top level.\n            if (resumeDepth === 1) {\n                checkLoaded();\n            }\n\n            resumeDepth -= 1;\n\n            return undefined;\n        };\n\n        //Define the context object. Many of these fields are on here\n        //just to make debugging easier.\n        context = {\n            contextName: contextName,\n            config: config,\n            defQueue: defQueue,\n            waiting: waiting,\n            waitCount: 0,\n            specified: specified,\n            loaded: loaded,\n            urlMap: urlMap,\n            urlFetched: urlFetched,\n            scriptCount: 0,\n            defined: defined,\n            paused: [],\n            pausedCount: 0,\n            plugins: plugins,\n            needFullExec: needFullExec,\n            fake: {},\n            fullExec: fullExec,\n            managerCallbacks: managerCallbacks,\n            makeModuleMap: makeModuleMap,\n            normalize: normalize,\n            /**\n             * Set a configuration for the context.\n             * @param {Object} cfg config object to integrate.\n             */\n            configure: function (cfg) {\n                var paths, prop, packages, pkgs, packagePaths, requireWait;\n\n                //Make sure the baseUrl ends in a slash.\n                if (cfg.baseUrl) {\n                    if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== \"/\") {\n                        cfg.baseUrl += \"/\";\n                    }\n                }\n\n                //Save off the paths and packages since they require special processing,\n                //they are additive.\n                paths = config.paths;\n                packages = config.packages;\n                pkgs = config.pkgs;\n\n                //Mix in the config values, favoring the new values over\n                //existing ones in context.config.\n                mixin(config, cfg, true);\n\n                //Adjust paths if necessary.\n                if (cfg.paths) {\n                    for (prop in cfg.paths) {\n                        if (!(prop in empty)) {\n                            paths[prop] = cfg.paths[prop];\n                        }\n                    }\n                    config.paths = paths;\n                }\n\n                packagePaths = cfg.packagePaths;\n                if (packagePaths || cfg.packages) {\n                    //Convert packagePaths into a packages config.\n                    if (packagePaths) {\n                        for (prop in packagePaths) {\n                            if (!(prop in empty)) {\n                                configurePackageDir(pkgs, packagePaths[prop], prop);\n                            }\n                        }\n                    }\n\n                    //Adjust packages if necessary.\n                    if (cfg.packages) {\n                        configurePackageDir(pkgs, cfg.packages);\n                    }\n\n                    //Done with modifications, assing packages back to context config\n                    config.pkgs = pkgs;\n                }\n\n                //If priority loading is in effect, trigger the loads now\n                if (cfg.priority) {\n                    //Hold on to requireWait value, and reset it after done\n                    requireWait = context.requireWait;\n\n                    //Allow tracing some require calls to allow the fetching\n                    //of the priority config.\n                    context.requireWait = false;\n                    //But first, call resume to register any defined modules that may\n                    //be in a data-main built file before the priority config\n                    //call.\n                    resume();\n\n                    context.require(cfg.priority);\n\n                    //Trigger a resume right away, for the case when\n                    //the script with the priority load is done as part\n                    //of a data-main call. In that case the normal resume\n                    //call will not happen because the scriptCount will be\n                    //at 1, since the script for data-main is being processed.\n                    resume();\n\n                    //Restore previous state.\n                    context.requireWait = requireWait;\n                    config.priorityWait = cfg.priority;\n                }\n\n                //If a deps array or a config callback is specified, then call\n                //require with those args. This is useful when require is defined as a\n                //config object before require.js is loaded.\n                if (cfg.deps || cfg.callback) {\n                    context.require(cfg.deps || [], cfg.callback);\n                }\n            },\n\n            requireDefined: function (moduleName, relModuleMap) {\n                return makeModuleMap(moduleName, relModuleMap).fullName in defined;\n            },\n\n            requireSpecified: function (moduleName, relModuleMap) {\n                return makeModuleMap(moduleName, relModuleMap).fullName in specified;\n            },\n\n            require: function (deps, callback, relModuleMap) {\n                var moduleName, fullName, moduleMap;\n                if (typeof deps === \"string\") {\n                    if (isFunction(callback)) {\n                        //Invalid call\n                        return req.onError(makeError(\"requireargs\", \"Invalid require call\"));\n                    }\n\n                    //Synchronous access to one module. If require.get is\n                    //available (as in the Node adapter), prefer that.\n                    //In this case deps is the moduleName and callback is\n                    //the relModuleMap\n                    if (req.get) {\n                        return req.get(context, deps, callback);\n                    }\n\n                    //Just return the module wanted. In this scenario, the\n                    //second arg (if passed) is just the relModuleMap.\n                    moduleName = deps;\n                    relModuleMap = callback;\n\n                    //Normalize module name, if it contains . or ..\n                    moduleMap = makeModuleMap(moduleName, relModuleMap);\n                    fullName = moduleMap.fullName;\n\n                    if (!(fullName in defined)) {\n                        return req.onError(makeError(\"notloaded\", \"Module name '\" +\n                                    moduleMap.fullName +\n                                    \"' has not been loaded yet for context: \" +\n                                    contextName));\n                    }\n                    return defined[fullName];\n                }\n\n                //Call main but only if there are dependencies or\n                //a callback to call.\n                if (deps && deps.length || callback) {\n                    main(null, deps, callback, relModuleMap);\n                }\n\n                //If the require call does not trigger anything new to load,\n                //then resume the dependency processing.\n                if (!context.requireWait) {\n                    while (!context.scriptCount && context.paused.length) {\n                        resume();\n                    }\n                }\n                return context.require;\n            },\n\n            /**\n             * Internal method to transfer globalQueue items to this context's\n             * defQueue.\n             */\n            takeGlobalQueue: function () {\n                //Push all the globalDefQueue items into the context's defQueue\n                if (globalDefQueue.length) {\n                    //Array splice in the values since the context code has a\n                    //local var ref to defQueue, so cannot just reassign the one\n                    //on context.\n                    apsp.apply(context.defQueue,\n                               [context.defQueue.length - 1, 0].concat(globalDefQueue));\n                    globalDefQueue = [];\n                }\n            },\n\n            /**\n             * Internal method used by environment adapters to complete a load event.\n             * A load event could be a script load or just a load pass from a synchronous\n             * load call.\n             * @param {String} moduleName the name of the module to potentially complete.\n             */\n            completeLoad: function (moduleName) {\n                var args;\n\n                context.takeGlobalQueue();\n\n                while (defQueue.length) {\n                    args = defQueue.shift();\n\n                    if (args[0] === null) {\n                        args[0] = moduleName;\n                        break;\n                    } else if (args[0] === moduleName) {\n                        //Found matching define call for this script!\n                        break;\n                    } else {\n                        //Some other named define call, most likely the result\n                        //of a build layer that included many define calls.\n                        callDefMain(args);\n                        args = null;\n                    }\n                }\n                if (args) {\n                    callDefMain(args);\n                } else {\n                    //A script that does not call define(), so just simulate\n                    //the call for it. Special exception for jQuery dynamic load.\n                    callDefMain([moduleName, [],\n                                moduleName === \"jquery\" && typeof jQuery !== \"undefined\" ?\n                                function () {\n                                    return jQuery;\n                                } : null]);\n                }\n\n                //Doing this scriptCount decrement branching because sync envs\n                //need to decrement after resume, otherwise it looks like\n                //loading is complete after the first dependency is fetched.\n                //For browsers, it works fine to decrement after, but it means\n                //the checkLoaded setTimeout 50 ms cost is taken. To avoid\n                //that cost, decrement beforehand.\n                if (req.isAsync) {\n                    context.scriptCount -= 1;\n                }\n                resume();\n                if (!req.isAsync) {\n                    context.scriptCount -= 1;\n                }\n            },\n\n            /**\n             * Converts a module name + .extension into an URL path.\n             * *Requires* the use of a module name. It does not support using\n             * plain URLs like nameToUrl.\n             */\n            toUrl: function (moduleNamePlusExt, relModuleMap) {\n                var index = moduleNamePlusExt.lastIndexOf(\".\"),\n                    ext = null;\n\n                if (index !== -1) {\n                    ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length);\n                    moduleNamePlusExt = moduleNamePlusExt.substring(0, index);\n                }\n\n                return context.nameToUrl(moduleNamePlusExt, ext, relModuleMap);\n            },\n\n            /**\n             * Converts a module name to a file path. Supports cases where\n             * moduleName may actually be just an URL.\n             */\n            nameToUrl: function (moduleName, ext, relModuleMap) {\n                var paths, pkgs, pkg, pkgPath, syms, i, parentModule, url,\n                    config = context.config;\n\n                //Normalize module name if have a base relative module name to work from.\n                moduleName = normalize(moduleName, relModuleMap && relModuleMap.fullName);\n\n                //If a colon is in the URL, it indicates a protocol is used and it is just\n                //an URL to a file, or if it starts with a slash or ends with .js, it is just a plain file.\n                //The slash is important for protocol-less URLs as well as full paths.\n                if (req.jsExtRegExp.test(moduleName)) {\n                    //Just a plain path, not module name lookup, so just return it.\n                    //Add extension if it is included. This is a bit wonky, only non-.js things pass\n                    //an extension, this method probably needs to be reworked.\n                    url = moduleName + (ext ? ext : \"\");\n                } else {\n                    //A module that needs to be converted to a path.\n                    paths = config.paths;\n                    pkgs = config.pkgs;\n\n                    syms = moduleName.split(\"/\");\n                    //For each module name segment, see if there is a path\n                    //registered for it. Start with most specific name\n                    //and work up from it.\n                    for (i = syms.length; i > 0; i--) {\n                        parentModule = syms.slice(0, i).join(\"/\");\n                        if (paths[parentModule]) {\n                            syms.splice(0, i, paths[parentModule]);\n                            break;\n                        } else if ((pkg = pkgs[parentModule])) {\n                            //If module name is just the package name, then looking\n                            //for the main module.\n                            if (moduleName === pkg.name) {\n                                pkgPath = pkg.location + '/' + pkg.main;\n                            } else {\n                                pkgPath = pkg.location;\n                            }\n                            syms.splice(0, i, pkgPath);\n                            break;\n                        }\n                    }\n\n                    //Join the path parts together, then figure out if baseUrl is needed.\n                    url = syms.join(\"/\") + (ext || \".js\");\n                    url = (url.charAt(0) === '/' || url.match(/^\\w+:/) ? \"\" : config.baseUrl) + url;\n                }\n\n                return config.urlArgs ? url +\n                                        ((url.indexOf('?') === -1 ? '?' : '&') +\n                                         config.urlArgs) : url;\n            }\n        };\n\n        //Make these visible on the context so can be called at the very\n        //end of the file to bootstrap\n        context.jQueryCheck = jQueryCheck;\n        context.resume = resume;\n\n        return context;\n    }\n\n    /**\n     * Main entry point.\n     *\n     * If the only argument to require is a string, then the module that\n     * is represented by that string is fetched for the appropriate context.\n     *\n     * If the first argument is an array, then it will be treated as an array\n     * of dependency string names to fetch. An optional function callback can\n     * be specified to execute when all of those dependencies are available.\n     *\n     * Make a local req variable to help Caja compliance (it assumes things\n     * on a require that are not standardized), and to give a short\n     * name for minification/local scope use.\n     */\n    req = requirejs = function (deps, callback) {\n\n        //Find the right context, use default\n        var contextName = defContextName,\n            context, config;\n\n        // Determine if have config object in the call.\n        if (!isArray(deps) && typeof deps !== \"string\") {\n            // deps is a config object\n            config = deps;\n            if (isArray(callback)) {\n                // Adjust args if there are dependencies\n                deps = callback;\n                callback = arguments[2];\n            } else {\n                deps = [];\n            }\n        }\n\n        if (config && config.context) {\n            contextName = config.context;\n        }\n\n        context = contexts[contextName] ||\n                  (contexts[contextName] = newContext(contextName));\n\n        if (config) {\n            context.configure(config);\n        }\n\n        return context.require(deps, callback);\n    };\n\n    /**\n     * Support require.config() to make it easier to cooperate with other\n     * AMD loaders on globally agreed names.\n     */\n    req.config = function (config) {\n        return req(config);\n    };\n\n    /**\n     * Export require as a global, but only if it does not already exist.\n     */\n    if (!require) {\n        require = req;\n    }\n\n    /**\n     * Global require.toUrl(), to match global require, mostly useful\n     * for debugging/work in the global space.\n     */\n    req.toUrl = function (moduleNamePlusExt) {\n        return contexts[defContextName].toUrl(moduleNamePlusExt);\n    };\n\n    req.version = version;\n\n    //Used to filter out dependencies that are already paths.\n    req.jsExtRegExp = /^\\/|:|\\?|\\.js$/;\n    s = req.s = {\n        contexts: contexts,\n        //Stores a list of URLs that should not get async script tag treatment.\n        skipAsync: {}\n    };\n\n    req.isAsync = req.isBrowser = isBrowser;\n    if (isBrowser) {\n        head = s.head = document.getElementsByTagName(\"head\")[0];\n        //If BASE tag is in play, using appendChild is a problem for IE6.\n        //When that browser dies, this can be removed. Details in this jQuery bug:\n        //http://dev.jquery.com/ticket/2709\n        baseElement = document.getElementsByTagName(\"base\")[0];\n        if (baseElement) {\n            head = s.head = baseElement.parentNode;\n        }\n    }\n\n    /**\n     * Any errors that require explicitly generates will be passed to this\n     * function. Intercept/override it if you want custom error handling.\n     * @param {Error} err the error object.\n     */\n    req.onError = function (err) {\n        throw err;\n    };\n\n    /**\n     * Does the request to load a module for the browser case.\n     * Make this a separate function to allow other environments\n     * to override it.\n     *\n     * @param {Object} context the require context to find state.\n     * @param {String} moduleName the name of the module.\n     * @param {Object} url the URL to the module.\n     */\n    req.load = function (context, moduleName, url) {\n        req.resourcesReady(false);\n\n        context.scriptCount += 1;\n        req.attach(url, context, moduleName);\n\n        //If tracking a jQuery, then make sure its ready callbacks\n        //are put on hold to prevent its ready callbacks from\n        //triggering too soon.\n        if (context.jQuery && !context.jQueryIncremented) {\n            jQueryHoldReady(context.jQuery, true);\n            context.jQueryIncremented = true;\n        }\n    };\n\n    function getInteractiveScript() {\n        var scripts, i, script;\n        if (interactiveScript && interactiveScript.readyState === 'interactive') {\n            return interactiveScript;\n        }\n\n        scripts = document.getElementsByTagName('script');\n        for (i = scripts.length - 1; i > -1 && (script = scripts[i]); i--) {\n            if (script.readyState === 'interactive') {\n                return (interactiveScript = script);\n            }\n        }\n\n        return null;\n    }\n\n    /**\n     * The function that handles definitions of modules. Differs from\n     * require() in that a string for the module should be the first argument,\n     * and the function to execute after dependencies are loaded should\n     * return a value to define the module corresponding to the first argument's\n     * name.\n     */\n    define = function (name, deps, callback) {\n        var node, context;\n\n        //Allow for anonymous functions\n        if (typeof name !== 'string') {\n            //Adjust args appropriately\n            callback = deps;\n            deps = name;\n            name = null;\n        }\n\n        //This module may not have dependencies\n        if (!isArray(deps)) {\n            callback = deps;\n            deps = [];\n        }\n\n        //If no name, and callback is a function, then figure out if it a\n        //CommonJS thing with dependencies.\n        if (!deps.length && isFunction(callback)) {\n            //Remove comments from the callback string,\n            //look for require calls, and pull them into the dependencies,\n            //but only if there are function args.\n            if (callback.length) {\n                callback\n                    .toString()\n                    .replace(commentRegExp, \"\")\n                    .replace(cjsRequireRegExp, function (match, dep) {\n                        deps.push(dep);\n                    });\n\n                //May be a CommonJS thing even without require calls, but still\n                //could use exports, and module. Avoid doing exports and module\n                //work though if it just needs require.\n                //REQUIRES the function to expect the CommonJS variables in the\n                //order listed below.\n                deps = (callback.length === 1 ? [\"require\"] : [\"require\", \"exports\", \"module\"]).concat(deps);\n            }\n        }\n\n        //If in IE 6-8 and hit an anonymous define() call, do the interactive\n        //work.\n        if (useInteractive) {\n            node = currentlyAddingScript || getInteractiveScript();\n            if (node) {\n                if (!name) {\n                    name = node.getAttribute(\"data-requiremodule\");\n                }\n                context = contexts[node.getAttribute(\"data-requirecontext\")];\n            }\n        }\n\n        //Always save off evaluating the def call until the script onload handler.\n        //This allows multiple modules to be in a file without prematurely\n        //tracing dependencies, and allows for anonymous module support,\n        //where the module name is not known until the script onload event\n        //occurs. If no context, use the global queue, and get it processed\n        //in the onscript load callback.\n        (context ? context.defQueue : globalDefQueue).push([name, deps, callback]);\n\n        return undefined;\n    };\n\n    define.amd = {\n        multiversion: true,\n        plugins: true,\n        jQuery: true\n    };\n\n    /**\n     * Executes the text. Normally just uses eval, but can be modified\n     * to use a more environment specific call.\n     * @param {String} text the text to execute/evaluate.\n     */\n    req.exec = function (text) {\n        return eval(text);\n    };\n\n    /**\n     * Executes a module callack function. Broken out as a separate function\n     * solely to allow the build system to sequence the files in the built\n     * layer in the right sequence.\n     *\n     * @private\n     */\n    req.execCb = function (name, callback, args, exports) {\n        return callback.apply(exports, args);\n    };\n\n\n    /**\n     * Adds a node to the DOM. Public function since used by the order plugin.\n     * This method should not normally be called by outside code.\n     */\n    req.addScriptToDom = function (node) {\n        //For some cache cases in IE 6-8, the script executes before the end\n        //of the appendChild execution, so to tie an anonymous define\n        //call to the module name (which is stored on the node), hold on\n        //to a reference to this node, but clear after the DOM insertion.\n        currentlyAddingScript = node;\n        if (baseElement) {\n            head.insertBefore(node, baseElement);\n        } else {\n            head.appendChild(node);\n        }\n        currentlyAddingScript = null;\n    };\n\n    /**\n     * callback for script loads, used to check status of loading.\n     *\n     * @param {Event} evt the event from the browser for the script\n     * that was loaded.\n     *\n     * @private\n     */\n    req.onScriptLoad = function (evt) {\n        //Using currentTarget instead of target for Firefox 2.0's sake. Not\n        //all old browsers will be supported, but this one was easy enough\n        //to support and still makes sense.\n        var node = evt.currentTarget || evt.srcElement, contextName, moduleName,\n            context;\n\n        if (evt.type === \"load\" || (node && readyRegExp.test(node.readyState))) {\n            //Reset interactive script so a script node is not held onto for\n            //to long.\n            interactiveScript = null;\n\n            //Pull out the name of the module and the context.\n            contextName = node.getAttribute(\"data-requirecontext\");\n            moduleName = node.getAttribute(\"data-requiremodule\");\n            context = contexts[contextName];\n\n            contexts[contextName].completeLoad(moduleName);\n\n            //Clean up script binding. Favor detachEvent because of IE9\n            //issue, see attachEvent/addEventListener comment elsewhere\n            //in this file.\n            if (node.detachEvent && !isOpera) {\n                //Probably IE. If not it will throw an error, which will be\n                //useful to know.\n                node.detachEvent(\"onreadystatechange\", req.onScriptLoad);\n            } else {\n                node.removeEventListener(\"load\", req.onScriptLoad, false);\n            }\n        }\n    };\n\n    /**\n     * Attaches the script represented by the URL to the current\n     * environment. Right now only supports browser loading,\n     * but can be redefined in other environments to do the right thing.\n     * @param {String} url the url of the script to attach.\n     * @param {Object} context the context that wants the script.\n     * @param {moduleName} the name of the module that is associated with the script.\n     * @param {Function} [callback] optional callback, defaults to require.onScriptLoad\n     * @param {String} [type] optional type, defaults to text/javascript\n     * @param {Function} [fetchOnlyFunction] optional function to indicate the script node\n     * should be set up to fetch the script but do not attach it to the DOM\n     * so that it can later be attached to execute it. This is a way for the\n     * order plugin to support ordered loading in IE. Once the script is fetched,\n     * but not executed, the fetchOnlyFunction will be called.\n     */\n    req.attach = function (url, context, moduleName, callback, type, fetchOnlyFunction) {\n        var node;\n        if (isBrowser) {\n            //In the browser so use a script tag\n            callback = callback || req.onScriptLoad;\n            node = context && context.config && context.config.xhtml ?\n                    document.createElementNS(\"http://www.w3.org/1999/xhtml\", \"html:script\") :\n                    document.createElement(\"script\");\n            node.type = type || (context && context.config.scriptType) ||\n                        \"text/javascript\";\n            node.charset = \"utf-8\";\n            //Use async so Gecko does not block on executing the script if something\n            //like a long-polling comet tag is being run first. Gecko likes\n            //to evaluate scripts in DOM order, even for dynamic scripts.\n            //It will fetch them async, but only evaluate the contents in DOM\n            //order, so a long-polling script tag can delay execution of scripts\n            //after it. But telling Gecko we expect async gets us the behavior\n            //we want -- execute it whenever it is finished downloading. Only\n            //Helps Firefox 3.6+\n            //Allow some URLs to not be fetched async. Mostly helps the order!\n            //plugin\n            node.async = !s.skipAsync[url];\n\n            if (context) {\n                node.setAttribute(\"data-requirecontext\", context.contextName);\n            }\n            node.setAttribute(\"data-requiremodule\", moduleName);\n\n            //Set up load listener. Test attachEvent first because IE9 has\n            //a subtle issue in its addEventListener and script onload firings\n            //that do not match the behavior of all other browsers with\n            //addEventListener support, which fire the onload event for a\n            //script right after the script execution. See:\n            //https://connect.microsoft.com/IE/feedback/details/648057/script-onload-event-is-not-fired-immediately-after-script-execution\n            //UNFORTUNATELY Opera implements attachEvent but does not follow the script\n            //script execution mode.\n            if (node.attachEvent && !isOpera) {\n                //Probably IE. IE (at least 6-8) do not fire\n                //script onload right after executing the script, so\n                //we cannot tie the anonymous define call to a name.\n                //However, IE reports the script as being in \"interactive\"\n                //readyState at the time of the define call.\n                useInteractive = true;\n\n\n                if (fetchOnlyFunction) {\n                    //Need to use old school onreadystate here since\n                    //when the event fires and the node is not attached\n                    //to the DOM, the evt.srcElement is null, so use\n                    //a closure to remember the node.\n                    node.onreadystatechange = function (evt) {\n                        //Script loaded but not executed.\n                        //Clear loaded handler, set the real one that\n                        //waits for script execution.\n                        if (node.readyState === 'loaded') {\n                            node.onreadystatechange = null;\n                            node.attachEvent(\"onreadystatechange\", callback);\n                            fetchOnlyFunction(node);\n                        }\n                    };\n                } else {\n                    node.attachEvent(\"onreadystatechange\", callback);\n                }\n            } else {\n                node.addEventListener(\"load\", callback, false);\n            }\n            node.src = url;\n\n            //Fetch only means waiting to attach to DOM after loaded.\n            if (!fetchOnlyFunction) {\n                req.addScriptToDom(node);\n            }\n\n            return node;\n        } else if (isWebWorker) {\n            //In a web worker, use importScripts. This is not a very\n            //efficient use of importScripts, importScripts will block until\n            //its script is downloaded and evaluated. However, if web workers\n            //are in play, the expectation that a build has been done so that\n            //only one script needs to be loaded anyway. This may need to be\n            //reevaluated if other use cases become common.\n            importScripts(url);\n\n            //Account for anonymous modules\n            context.completeLoad(moduleName);\n        }\n        return null;\n    };\n\n    //Look for a data-main script attribute, which could also adjust the baseUrl.\n    if (isBrowser) {\n        //Figure out baseUrl. Get it from the script tag with require.js in it.\n        scripts = document.getElementsByTagName(\"script\");\n\n        for (globalI = scripts.length - 1; globalI > -1 && (script = scripts[globalI]); globalI--) {\n            //Set the \"head\" where we can append children by\n            //using the script's parent.\n            if (!head) {\n                head = script.parentNode;\n            }\n\n            //Look for a data-main attribute to set main script for the page\n            //to load. If it is there, the path to data main becomes the\n            //baseUrl, if it is not already set.\n            if ((dataMain = script.getAttribute('data-main'))) {\n                if (!cfg.baseUrl) {\n                    //Pull off the directory of data-main for use as the\n                    //baseUrl.\n                    src = dataMain.split('/');\n                    mainScript = src.pop();\n                    subPath = src.length ? src.join('/')  + '/' : './';\n\n                    //Set final config.\n                    cfg.baseUrl = subPath;\n                    //Strip off any trailing .js since dataMain is now\n                    //like a module name.\n                    dataMain = mainScript.replace(jsSuffixRegExp, '');\n                }\n\n                //Put the data-main script in the files to load.\n                cfg.deps = cfg.deps ? cfg.deps.concat(dataMain) : [dataMain];\n\n                break;\n            }\n        }\n    }\n\n    //See if there is nothing waiting across contexts, and if not, trigger\n    //resourcesReady.\n    req.checkReadyState = function () {\n        var contexts = s.contexts, prop;\n        for (prop in contexts) {\n            if (!(prop in empty)) {\n                if (contexts[prop].waitCount) {\n                    return;\n                }\n            }\n        }\n        req.resourcesReady(true);\n    };\n\n    /**\n     * Internal function that is triggered whenever all scripts/resources\n     * have been loaded by the loader. Can be overridden by other, for\n     * instance the domReady plugin, which wants to know when all resources\n     * are loaded.\n     */\n    req.resourcesReady = function (isReady) {\n        var contexts, context, prop;\n\n        //First, set the public variable indicating that resources are loading.\n        req.resourcesDone = isReady;\n\n        if (req.resourcesDone) {\n            //If jQuery with DOM ready delayed, release it now.\n            contexts = s.contexts;\n            for (prop in contexts) {\n                if (!(prop in empty)) {\n                    context = contexts[prop];\n                    if (context.jQueryIncremented) {\n                        jQueryHoldReady(context.jQuery, false);\n                        context.jQueryIncremented = false;\n                    }\n                }\n            }\n        }\n    };\n\n    //FF < 3.6 readyState fix. Needed so that domReady plugin\n    //works well in that environment, since require.js is normally\n    //loaded via an HTML script tag so it will be there before window load,\n    //where the domReady plugin is more likely to be loaded after window load.\n    req.pageLoaded = function () {\n        if (document.readyState !== \"complete\") {\n            document.readyState = \"complete\";\n        }\n    };\n    if (isBrowser) {\n        if (document.addEventListener) {\n            if (!document.readyState) {\n                document.readyState = \"loading\";\n                window.addEventListener(\"load\", req.pageLoaded, false);\n            }\n        }\n    }\n\n    //Set up default context. If require was a configuration object, use that as base config.\n    req(cfg);\n\n    //If modules are built into require.js, then need to make sure dependencies are\n    //traced. Use a setTimeout in the browser world, to allow all the modules to register\n    //themselves. In a non-browser env, assume that modules are not built into require.js,\n    //which seems odd to do on the server.\n    if (req.isAsync && typeof setTimeout !== \"undefined\") {\n        ctx = s.contexts[(cfg.context || defContextName)];\n        //Indicate that the script that includes require() is still loading,\n        //so that require()'d dependencies are not traced until the end of the\n        //file is parsed (approximated via the setTimeout call).\n        ctx.requireWait = true;\n        setTimeout(function () {\n            ctx.requireWait = false;\n\n            if (!ctx.scriptCount) {\n                ctx.resume();\n            }\n            req.checkReadyState();\n        }, 0);\n    }\n}());\n/*!\n * jQuery JavaScript Library v1.7.1\n * http://jquery.com/\n *\n * Copyright 2011, John Resig\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n * Copyright 2011, The Dojo Foundation\n * Released under the MIT, BSD, and GPL Licenses.\n *\n * Date: Mon Nov 21 21:11:03 2011 -0500\n */\n(function( window, undefined ) {\n\n// Use the correct document accordingly with window argument (sandbox)\nvar document = window.document,\n\tnavigator = window.navigator,\n\tlocation = window.location;\nvar jQuery = (function() {\n\n// Define a local copy of jQuery\nvar jQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$,\n\n\t// A central reference to the root jQuery(document)\n\trootjQuery,\n\n\t// A simple way to check for HTML strings or ID strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\tquickExpr = /^(?:[^#<]*(<[\\w\\W]+>)[^>]*$|#([\\w\\-]*)$)/,\n\n\t// Check if a string has a non-whitespace character in it\n\trnotwhite = /\\S/,\n\n\t// Used for trimming whitespace\n\ttrimLeft = /^\\s+/,\n\ttrimRight = /\\s+$/,\n\n\t// Match a standalone tag\n\trsingleTag = /^<(\\w+)\\s*\\/?>(?:<\\/\\1>)?$/,\n\n\t// JSON RegExp\n\trvalidchars = /^[\\],:{}\\s]*$/,\n\trvalidescape = /\\\\(?:[\"\\\\\\/bfnrt]|u[0-9a-fA-F]{4})/g,\n\trvalidtokens = /\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g,\n\trvalidbraces = /(?:^|:|,)(?:\\s*\\[)+/g,\n\n\t// Useragent RegExp\n\trwebkit = /(webkit)[ \\/]([\\w.]+)/,\n\tropera = /(opera)(?:.*version)?[ \\/]([\\w.]+)/,\n\trmsie = /(msie) ([\\w.]+)/,\n\trmozilla = /(mozilla)(?:.*? rv:([\\w.]+))?/,\n\n\t// Matches dashed string for camelizing\n\trdashAlpha = /-([a-z]|[0-9])/ig,\n\trmsPrefix = /^-ms-/,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn ( letter + \"\" ).toUpperCase();\n\t},\n\n\t// Keep a UserAgent string for use with jQuery.browser\n\tuserAgent = navigator.userAgent,\n\n\t// For matching the engine and version of the browser\n\tbrowserMatch,\n\n\t// The deferred used on DOM ready\n\treadyList,\n\n\t// The ready event handler\n\tDOMContentLoaded,\n\n\t// Save a reference to some core methods\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\tpush = Array.prototype.push,\n\tslice = Array.prototype.slice,\n\ttrim = String.prototype.trim,\n\tindexOf = Array.prototype.indexOf,\n\n\t// [[Class]] -> type pairs\n\tclass2type = {};\n\njQuery.fn = jQuery.prototype = {\n\tconstructor: jQuery,\n\tinit: function( selector, context, rootjQuery ) {\n\t\tvar match, elem, ret, doc;\n\n\t\t// Handle $(\"\"), $(null), or $(undefined)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle $(DOMElement)\n\t\tif ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\t\t}\n\n\t\t// The body element only exists once, optimize finding it\n\t\tif ( selector === \"body\" && !context && document.body ) {\n\t\t\tthis.context = document;\n\t\t\tthis[0] = document.body;\n\t\t\tthis.selector = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\t// Are we dealing with HTML string or an ID?\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = quickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Verify a match, and that no context was specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\t\t\t\t\tdoc = ( context ? context.ownerDocument || context : document );\n\n\t\t\t\t\t// If a single string is passed in and it's a single tag\n\t\t\t\t\t// just do a createElement and skip the rest\n\t\t\t\t\tret = rsingleTag.exec( selector );\n\n\t\t\t\t\tif ( ret ) {\n\t\t\t\t\t\tif ( jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\t\tselector = [ document.createElement( ret[1] ) ];\n\t\t\t\t\t\t\tjQuery.fn.attr.call( selector, context, true );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tselector = [ doc.createElement( ret[1] ) ];\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tret = jQuery.buildFragment( [ match[1] ], [ doc ] );\n\t\t\t\t\t\tselector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.merge( this, selector );\n\n\t\t\t\t// HANDLE: $(\"#id\")\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn rootjQuery.ready( selector );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t},\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The current version of jQuery being used\n\tjquery: \"1.7.1\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\t// The number of elements contained in the matched element set\n\tsize: function() {\n\t\treturn this.length;\n\t},\n\n\ttoArray: function() {\n\t\treturn slice.call( this, 0 );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num == null ?\n\n\t\t\t// Return a 'clean' array\n\t\t\tthis.toArray() :\n\n\t\t\t// Return just the object\n\t\t\t( num < 0 ? this[ this.length + num ] : this[ num ] );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems, name, selector ) {\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = this.constructor();\n\n\t\tif ( jQuery.isArray( elems ) ) {\n\t\t\tpush.apply( ret, elems );\n\n\t\t} else {\n\t\t\tjQuery.merge( ret, elems );\n\t\t}\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\tret.context = this.context;\n\n\t\tif ( name === \"find\" ) {\n\t\t\tret.selector = this.selector + ( this.selector ? \" \" : \"\" ) + selector;\n\t\t} else if ( name ) {\n\t\t\tret.selector = this.selector + \".\" + name + \"(\" + selector + \")\";\n\t\t}\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tready: function( fn ) {\n\t\t// Attach the listeners\n\t\tjQuery.bindReady();\n\n\t\t// Add the callback\n\t\treadyList.add( fn );\n\n\t\treturn this;\n\t},\n\n\teq: function( i ) {\n\t\ti = +i;\n\t\treturn i === -1 ?\n\t\t\tthis.slice( i ) :\n\t\t\tthis.slice( i, i + 1 );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ),\n\t\t\t\"slice\", slice.call(arguments).join(\",\") );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: [].sort,\n\tsplice: [].splice\n};\n\n// Give the init function the jQuery prototype for later instantiation\njQuery.fn.init.prototype = jQuery.fn;\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\t\ttarget = arguments[1] || {};\n\t\t// skip the boolean and the target\n\t\ti = 2;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( length === i ) {\n\t\ttarget = this;\n\t\t--i;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\tnoConflict: function( deep ) {\n\t\tif ( window.$ === jQuery ) {\n\t\t\twindow.$ = _$;\n\t\t}\n\n\t\tif ( deep && window.jQuery === jQuery ) {\n\t\t\twindow.jQuery = _jQuery;\n\t\t}\n\n\t\treturn jQuery;\n\t},\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\t\t// Either a released hold or an DOMready/load event and not yet ready\n\t\tif ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) {\n\t\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\t\tif ( !document.body ) {\n\t\t\t\treturn setTimeout( jQuery.ready, 1 );\n\t\t\t}\n\n\t\t\t// Remember that the DOM is ready\n\t\t\tjQuery.isReady = true;\n\n\t\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If there are functions bound, to execute\n\t\t\treadyList.fireWith( document, [ jQuery ] );\n\n\t\t\t// Trigger any bound ready events\n\t\t\tif ( jQuery.fn.trigger ) {\n\t\t\t\tjQuery( document ).trigger( \"ready\" ).off( \"ready\" );\n\t\t\t}\n\t\t}\n\t},\n\n\tbindReady: function() {\n\t\tif ( readyList ) {\n\t\t\treturn;\n\t\t}\n\n\t\treadyList = jQuery.Callbacks( \"once memory\" );\n\n\t\t// Catch cases where $(document).ready() is called after the\n\t\t// browser event has already occurred.\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\treturn setTimeout( jQuery.ready, 1 );\n\t\t}\n\n\t\t// Mozilla, Opera and webkit nightlies currently support this event\n\t\tif ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", DOMContentLoaded, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", jQuery.ready, false );\n\n\t\t// If IE event model is used\n\t\t} else if ( document.attachEvent ) {\n\t\t\t// ensure firing before onload,\n\t\t\t// maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", DOMContentLoaded );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", jQuery.ready );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar toplevel = false;\n\n\t\t\ttry {\n\t\t\t\ttoplevel = window.frameElement == null;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( document.documentElement.doScroll && toplevel ) {\n\t\t\t\tdoScrollCheck();\n\t\t\t}\n\t\t}\n\t},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\t// A crude way of determining if an object is a window\n\tisWindow: function( obj ) {\n\t\treturn obj && typeof obj === \"object\" && \"setInterval\" in obj;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\treturn !isNaN( parseFloat(obj) ) && isFinite( obj );\n\t},\n\n\ttype: function( obj ) {\n\t\treturn obj == null ?\n\t\t\tString( obj ) :\n\t\t\tclass2type[ toString.call(obj) ] || \"object\";\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\n\t\tvar key;\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tfor ( var name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tparseJSON: function( data ) {\n\t\tif ( typeof data !== \"string\" || !data ) {\n\t\t\treturn null;\n\t\t}\n\n\t\t// Make sure leading/trailing whitespace is removed (IE can't handle it)\n\t\tdata = jQuery.trim( data );\n\n\t\t// Attempt to parse using the native JSON parser first\n\t\tif ( window.JSON && window.JSON.parse ) {\n\t\t\treturn window.JSON.parse( data );\n\t\t}\n\n\t\t// Make sure the incoming data is actual JSON\n\t\t// Logic borrowed from http://json.org/json2.js\n\t\tif ( rvalidchars.test( data.replace( rvalidescape, \"@\" )\n\t\t\t.replace( rvalidtokens, \"]\" )\n\t\t\t.replace( rvalidbraces, \"\")) ) {\n\n\t\t\treturn ( new Function( \"return \" + data ) )();\n\n\t\t}\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n\t},\n\n\t// Cross-browser xml parsing\n\tparseXML: function( data ) {\n\t\tvar xml, tmp;\n\t\ttry {\n\t\t\tif ( window.DOMParser ) { // Standard\n\t\t\t\ttmp = new DOMParser();\n\t\t\t\txml = tmp.parseFromString( data , \"text/xml\" );\n\t\t\t} else { // IE\n\t\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\t\txml.async = \"false\";\n\t\t\t\txml.loadXML( data );\n\t\t\t}\n\t\t} catch( e ) {\n\t\t\txml = undefined;\n\t\t}\n\t\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\t\tjQuery.error( \"Invalid XML: \" + data );\n\t\t}\n\t\treturn xml;\n\t},\n\n\tnoop: function() {},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && rnotwhite.test( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( object, callback, args ) {\n\t\tvar name, i = 0,\n\t\t\tlength = object.length,\n\t\t\tisObj = length === undefined || jQuery.isFunction( object );\n\n\t\tif ( args ) {\n\t\t\tif ( isObj ) {\n\t\t\t\tfor ( name in object ) {\n\t\t\t\t\tif ( callback.apply( object[ name ], args ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( ; i < length; ) {\n\t\t\t\t\tif ( callback.apply( object[ i++ ], args ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isObj ) {\n\t\t\t\tfor ( name in object ) {\n\t\t\t\t\tif ( callback.call( object[ name ], name, object[ name ] ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( ; i < length; ) {\n\t\t\t\t\tif ( callback.call( object[ i ], i, object[ i++ ] ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn object;\n\t},\n\n\t// Use native String.trim function wherever possible\n\ttrim: trim ?\n\t\tfunction( text ) {\n\t\t\treturn text == null ?\n\t\t\t\t\"\" :\n\t\t\t\ttrim.call( text );\n\t\t} :\n\n\t\t// Otherwise use our own trimming functionality\n\t\tfunction( text ) {\n\t\t\treturn text == null ?\n\t\t\t\t\"\" :\n\t\t\t\ttext.toString().replace( trimLeft, \"\" ).replace( trimRight, \"\" );\n\t\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( array, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( array != null ) {\n\t\t\t// The window, strings (and functions) also have 'length'\n\t\t\t// Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930\n\t\t\tvar type = jQuery.type( array );\n\n\t\t\tif ( array.length == null || type === \"string\" || type === \"function\" || type === \"regexp\" || jQuery.isWindow( array ) ) {\n\t\t\t\tpush.call( ret, array );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( ret, array );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, array, i ) {\n\t\tvar len;\n\n\t\tif ( array ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( array, elem, i );\n\t\t\t}\n\n\t\t\tlen = array.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in array && array[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar i = first.length,\n\t\t\tj = 0;\n\n\t\tif ( typeof second.length === \"number\" ) {\n\t\t\tfor ( var l = second.length; j < l; j++ ) {\n\t\t\t\tfirst[ i++ ] = second[ j ];\n\t\t\t}\n\n\t\t} else {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, inv ) {\n\t\tvar ret = [], retVal;\n\t\tinv = !!inv;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( var i = 0, length = elems.length; i < length; i++ ) {\n\t\t\tretVal = !!callback( elems[ i ], i );\n\t\t\tif ( inv !== retVal ) {\n\t\t\t\tret.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value, key, ret = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\t// jquery objects are treated as arrays\n\t\t\tisArray = elems instanceof jQuery || length !== undefined && typeof length === \"number\" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ;\n\n\t\t// Go through the array, translating each of the items to their\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret[ ret.length ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( key in elems ) {\n\t\t\t\tvalue = callback( elems[ key ], key, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret[ ret.length ] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn ret.concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tif ( typeof context === \"string\" ) {\n\t\t\tvar tmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\tvar args = slice.call( arguments, 2 ),\n\t\t\tproxy = function() {\n\t\t\t\treturn fn.apply( context, args.concat( slice.call( arguments ) ) );\n\t\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\t// Mutifunctional method to get and set values to a collection\n\t// The value/s can optionally be executed if it's a function\n\taccess: function( elems, key, value, exec, fn, pass ) {\n\t\tvar length = elems.length;\n\n\t\t// Setting many attributes\n\t\tif ( typeof key === \"object\" ) {\n\t\t\tfor ( var k in key ) {\n\t\t\t\tjQuery.access( elems, k, key[k], exec, fn, value );\n\t\t\t}\n\t\t\treturn elems;\n\t\t}\n\n\t\t// Setting one attribute\n\t\tif ( value !== undefined ) {\n\t\t\t// Optionally, function values get executed if exec is true\n\t\t\texec = !pass && exec && jQuery.isFunction(value);\n\n\t\t\tfor ( var i = 0; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass );\n\t\t\t}\n\n\t\t\treturn elems;\n\t\t}\n\n\t\t// Getting an attribute\n\t\treturn length ? fn( elems[0], key ) : undefined;\n\t},\n\n\tnow: function() {\n\t\treturn ( new Date() ).getTime();\n\t},\n\n\t// Use of jQuery.browser is frowned upon.\n\t// More details: http://docs.jquery.com/Utilities/jQuery.browser\n\tuaMatch: function( ua ) {\n\t\tua = ua.toLowerCase();\n\n\t\tvar match = rwebkit.exec( ua ) ||\n\t\t\tropera.exec( ua ) ||\n\t\t\trmsie.exec( ua ) ||\n\t\t\tua.indexOf(\"compatible\") < 0 && rmozilla.exec( ua ) ||\n\t\t\t[];\n\n\t\treturn { browser: match[1] || \"\", version: match[2] || \"0\" };\n\t},\n\n\tsub: function() {\n\t\tfunction jQuerySub( selector, context ) {\n\t\t\treturn new jQuerySub.fn.init( selector, context );\n\t\t}\n\t\tjQuery.extend( true, jQuerySub, this );\n\t\tjQuerySub.superclass = this;\n\t\tjQuerySub.fn = jQuerySub.prototype = this();\n\t\tjQuerySub.fn.constructor = jQuerySub;\n\t\tjQuerySub.sub = this.sub;\n\t\tjQuerySub.fn.init = function init( selector, context ) {\n\t\t\tif ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {\n\t\t\t\tcontext = jQuerySub( context );\n\t\t\t}\n\n\t\t\treturn jQuery.fn.init.call( this, selector, context, rootjQuerySub );\n\t\t};\n\t\tjQuerySub.fn.init.prototype = jQuerySub.fn;\n\t\tvar rootjQuerySub = jQuerySub(document);\n\t\treturn jQuerySub;\n\t},\n\n\tbrowser: {}\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nbrowserMatch = jQuery.uaMatch( userAgent );\nif ( browserMatch.browser ) {\n\tjQuery.browser[ browserMatch.browser ] = true;\n\tjQuery.browser.version = browserMatch.version;\n}\n\n// Deprecated, use jQuery.browser.webkit instead\nif ( jQuery.browser.webkit ) {\n\tjQuery.browser.safari = true;\n}\n\n// IE doesn't match non-breaking spaces with \\s\nif ( rnotwhite.test( \"\\xA0\" ) ) {\n\ttrimLeft = /^[\\s\\xA0]+/;\n\ttrimRight = /[\\s\\xA0]+$/;\n}\n\n// All jQuery objects should point back to these\nrootjQuery = jQuery(document);\n\n// Cleanup functions for the document ready method\nif ( document.addEventListener ) {\n\tDOMContentLoaded = function() {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", DOMContentLoaded, false );\n\t\tjQuery.ready();\n\t};\n\n} else if ( document.attachEvent ) {\n\tDOMContentLoaded = function() {\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\tdocument.detachEvent( \"onreadystatechange\", DOMContentLoaded );\n\t\t\tjQuery.ready();\n\t\t}\n\t};\n}\n\n// The DOM ready check for Internet Explorer\nfunction doScrollCheck() {\n\tif ( jQuery.isReady ) {\n\t\treturn;\n\t}\n\n\ttry {\n\t\t// If IE is used, use the trick by Diego Perini\n\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\tdocument.documentElement.doScroll(\"left\");\n\t} catch(e) {\n\t\tsetTimeout( doScrollCheck, 1 );\n\t\treturn;\n\t}\n\n\t// and execute any waiting functions\n\tjQuery.ready();\n}\n\nreturn jQuery;\n\n})();\n\n\n// String to Object flags format cache\nvar flagsCache = {};\n\n// Convert String-formatted flags into Object-formatted ones and store in cache\nfunction createFlags( flags ) {\n\tvar object = flagsCache[ flags ] = {},\n\t\ti, length;\n\tflags = flags.split( /\\s+/ );\n\tfor ( i = 0, length = flags.length; i < length; i++ ) {\n\t\tobject[ flags[i] ] = true;\n\t}\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\tflags:\tan optional list of space-separated flags that will change how\n *\t\t\tthe callback list behaves\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible flags:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( flags ) {\n\n\t// Convert flags from String-formatted to Object-formatted\n\t// (we check in cache first)\n\tflags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {};\n\n\tvar // Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = [],\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list is currently firing\n\t\tfiring,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// Add one or several callbacks to the list\n\t\tadd = function( args ) {\n\t\t\tvar i,\n\t\t\t\tlength,\n\t\t\t\telem,\n\t\t\t\ttype,\n\t\t\t\tactual;\n\t\t\tfor ( i = 0, length = args.length; i < length; i++ ) {\n\t\t\t\telem = args[ i ];\n\t\t\t\ttype = jQuery.type( elem );\n\t\t\t\tif ( type === \"array\" ) {\n\t\t\t\t\t// Inspect recursively\n\t\t\t\t\tadd( elem );\n\t\t\t\t} else if ( type === \"function\" ) {\n\t\t\t\t\t// Add if not in unique mode and callback is not in\n\t\t\t\t\tif ( !flags.unique || !self.has( elem ) ) {\n\t\t\t\t\t\tlist.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Fire callbacks\n\t\tfire = function( context, args ) {\n\t\t\targs = args || [];\n\t\t\tmemory = !flags.memory || [ context, args ];\n\t\t\tfiring = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) {\n\t\t\t\t\tmemory = true; // Mark as halted\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( !flags.once ) {\n\t\t\t\t\tif ( stack && stack.length ) {\n\t\t\t\t\t\tmemory = stack.shift();\n\t\t\t\t\t\tself.fireWith( memory[ 0 ], memory[ 1 ] );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory === true ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t} else {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar length = list.length;\n\t\t\t\t\tadd( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away, unless previous\n\t\t\t\t\t// firing was halted (stopOnFalse)\n\t\t\t\t\t} else if ( memory && memory !== true ) {\n\t\t\t\t\t\tfiringStart = length;\n\t\t\t\t\t\tfire( memory[ 0 ], memory[ 1 ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar args = arguments,\n\t\t\t\t\t\targIndex = 0,\n\t\t\t\t\t\targLength = args.length;\n\t\t\t\t\tfor ( ; argIndex < argLength ; argIndex++ ) {\n\t\t\t\t\t\tfor ( var i = 0; i < list.length; i++ ) {\n\t\t\t\t\t\t\tif ( args[ argIndex ] === list[ i ] ) {\n\t\t\t\t\t\t\t\t// Handle firingIndex and firingLength\n\t\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\t\tif ( i <= firingLength ) {\n\t\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t\t\tif ( i <= firingIndex ) {\n\t\t\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Remove the element\n\t\t\t\t\t\t\t\tlist.splice( i--, 1 );\n\t\t\t\t\t\t\t\t// If we have some unicity property then\n\t\t\t\t\t\t\t\t// we only need to do this once\n\t\t\t\t\t\t\t\tif ( flags.unique ) {\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Control if a given callback is in the list\n\t\t\thas: function( fn ) {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar i = 0,\n\t\t\t\t\t\tlength = list.length;\n\t\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\t\tif ( fn === list[ i ] ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory || memory === true ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tif ( !flags.once ) {\n\t\t\t\t\t\t\tstack.push( [ context, args ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if ( !( flags.once && memory ) ) {\n\t\t\t\t\t\tfire( context, args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!memory;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\n\n\nvar // Static reference to slice\n\tsliceDeferred = [].slice;\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar doneList = jQuery.Callbacks( \"once memory\" ),\n\t\t\tfailList = jQuery.Callbacks( \"once memory\" ),\n\t\t\tprogressList = jQuery.Callbacks( \"memory\" ),\n\t\t\tstate = \"pending\",\n\t\t\tlists = {\n\t\t\t\tresolve: doneList,\n\t\t\t\treject: failList,\n\t\t\t\tnotify: progressList\n\t\t\t},\n\t\t\tpromise = {\n\t\t\t\tdone: doneList.add,\n\t\t\t\tfail: failList.add,\n\t\t\t\tprogress: progressList.add,\n\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\n\t\t\t\t// Deprecated\n\t\t\t\tisResolved: doneList.fired,\n\t\t\t\tisRejected: failList.fired,\n\n\t\t\t\tthen: function( doneCallbacks, failCallbacks, progressCallbacks ) {\n\t\t\t\t\tdeferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tpipe: function( fnDone, fnFail, fnProgress ) {\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( {\n\t\t\t\t\t\t\tdone: [ fnDone, \"resolve\" ],\n\t\t\t\t\t\t\tfail: [ fnFail, \"reject\" ],\n\t\t\t\t\t\t\tprogress: [ fnProgress, \"notify\" ]\n\t\t\t\t\t\t}, function( handler, data ) {\n\t\t\t\t\t\t\tvar fn = data[ 0 ],\n\t\t\t\t\t\t\t\taction = data[ 1 ],\n\t\t\t\t\t\t\t\treturned;\n\t\t\t\t\t\t\tif ( jQuery.isFunction( fn ) ) {\n\t\t\t\t\t\t\t\tdeferred[ handler ](function() {\n\t\t\t\t\t\t\t\t\treturned = fn.apply( this, arguments );\n\t\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\t\treturned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify );\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tnewDefer[ action + \"With\" ]( this === deferred ? newDefer : this, [ returned ] );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tdeferred[ handler ]( newDefer[ action ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\tif ( obj == null ) {\n\t\t\t\t\t\tobj = promise;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfor ( var key in promise ) {\n\t\t\t\t\t\t\tobj[ key ] = promise[ key ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn obj;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = promise.promise({}),\n\t\t\tkey;\n\n\t\tfor ( key in lists ) {\n\t\t\tdeferred[ key ] = lists[ key ].fire;\n\t\t\tdeferred[ key + \"With\" ] = lists[ key ].fireWith;\n\t\t}\n\n\t\t// Handle state\n\t\tdeferred.done( function() {\n\t\t\tstate = \"resolved\";\n\t\t}, failList.disable, progressList.lock ).fail( function() {\n\t\t\tstate = \"rejected\";\n\t\t}, doneList.disable, progressList.lock );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( firstParam ) {\n\t\tvar args = sliceDeferred.call( arguments, 0 ),\n\t\t\ti = 0,\n\t\t\tlength = args.length,\n\t\t\tpValues = new Array( length ),\n\t\t\tcount = length,\n\t\t\tpCount = length,\n\t\t\tdeferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ?\n\t\t\t\tfirstParam :\n\t\t\t\tjQuery.Deferred(),\n\t\t\tpromise = deferred.promise();\n\t\tfunction resolveFunc( i ) {\n\t\t\treturn function( value ) {\n\t\t\t\targs[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value;\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdeferred.resolveWith( deferred, args );\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\tfunction progressFunc( i ) {\n\t\t\treturn function( value ) {\n\t\t\t\tpValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value;\n\t\t\t\tdeferred.notifyWith( promise, pValues );\n\t\t\t};\n\t\t}\n\t\tif ( length > 1 ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) {\n\t\t\t\t\targs[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) );\n\t\t\t\t} else {\n\t\t\t\t\t--count;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( !count ) {\n\t\t\t\tdeferred.resolveWith( deferred, args );\n\t\t\t}\n\t\t} else if ( deferred !== firstParam ) {\n\t\t\tdeferred.resolveWith( deferred, length ? [ firstParam ] : [] );\n\t\t}\n\t\treturn promise;\n\t}\n});\n\n\n\n\njQuery.support = (function() {\n\n\tvar support,\n\t\tall,\n\t\ta,\n\t\tselect,\n\t\topt,\n\t\tinput,\n\t\tmarginDiv,\n\t\tfragment,\n\t\ttds,\n\t\tevents,\n\t\teventName,\n\t\ti,\n\t\tisSupported,\n\t\tdiv = document.createElement( \"div\" ),\n\t\tdocumentElement = document.documentElement;\n\n\t// Preliminary tests\n\tdiv.setAttribute(\"className\", \"t\");\n\tdiv.innerHTML = \"   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>\";\n\n\tall = div.getElementsByTagName( \"*\" );\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\n\t// Can't get basic test support\n\tif ( !all || !all.length || !a ) {\n\t\treturn {};\n\t}\n\n\t// First batch of supports tests\n\tselect = document.createElement( \"select\" );\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName( \"input\" )[ 0 ];\n\n\tsupport = {\n\t\t// IE strips leading whitespace when .innerHTML is used\n\t\tleadingWhitespace: ( div.firstChild.nodeType === 3 ),\n\n\t\t// Make sure that tbody elements aren't automatically inserted\n\t\t// IE will insert them into empty tables\n\t\ttbody: !div.getElementsByTagName(\"tbody\").length,\n\n\t\t// Make sure that link elements get serialized correctly by innerHTML\n\t\t// This requires a wrapper element in IE\n\t\thtmlSerialize: !!div.getElementsByTagName(\"link\").length,\n\n\t\t// Get the style information from getAttribute\n\t\t// (IE uses .cssText instead)\n\t\tstyle: /top/.test( a.getAttribute(\"style\") ),\n\n\t\t// Make sure that URLs aren't manipulated\n\t\t// (IE normalizes it by default)\n\t\threfNormalized: ( a.getAttribute(\"href\") === \"/a\" ),\n\n\t\t// Make sure that element opacity exists\n\t\t// (IE uses filter instead)\n\t\t// Use a regex to work around a WebKit issue. See #5145\n\t\topacity: /^0.55/.test( a.style.opacity ),\n\n\t\t// Verify style float existence\n\t\t// (IE uses styleFloat instead of cssFloat)\n\t\tcssFloat: !!a.style.cssFloat,\n\n\t\t// Make sure that if no value is specified for a checkbox\n\t\t// that it defaults to \"on\".\n\t\t// (WebKit defaults to \"\" instead)\n\t\tcheckOn: ( input.value === \"on\" ),\n\n\t\t// Make sure that a selected-by-default option has a working selected property.\n\t\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\t\toptSelected: opt.selected,\n\n\t\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\t\tgetSetAttribute: div.className !== \"t\",\n\n\t\t// Tests for enctype support on a form(#6743)\n\t\tenctype: !!document.createElement(\"form\").enctype,\n\n\t\t// Makes sure cloning an html5 element does not cause problems\n\t\t// Where outerHTML is undefined, this still works\n\t\thtml5Clone: document.createElement(\"nav\").cloneNode( true ).outerHTML !== \"<:nav></:nav>\",\n\n\t\t// Will be defined later\n\t\tsubmitBubbles: true,\n\t\tchangeBubbles: true,\n\t\tfocusinBubbles: false,\n\t\tdeleteExpando: true,\n\t\tnoCloneEvent: true,\n\t\tinlineBlockNeedsLayout: false,\n\t\tshrinkWrapBlocks: false,\n\t\treliableMarginRight: true\n\t};\n\n\t// Make sure checked status is properly cloned\n\tinput.checked = true;\n\tsupport.noCloneChecked = input.cloneNode( true ).checked;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Test to see if it's possible to delete an expando from an element\n\t// Fails in Internet Explorer\n\ttry {\n\t\tdelete div.test;\n\t} catch( e ) {\n\t\tsupport.deleteExpando = false;\n\t}\n\n\tif ( !div.addEventListener && div.attachEvent && div.fireEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\t// Cloning a node shouldn't copy over any\n\t\t\t// bound event handlers (IE does this)\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\t\tdiv.cloneNode( true ).fireEvent( \"onclick\" );\n\t}\n\n\t// Check if a radio maintains its value\n\t// after being appended to the DOM\n\tinput = document.createElement(\"input\");\n\tinput.value = \"t\";\n\tinput.setAttribute(\"type\", \"radio\");\n\tsupport.radioValue = input.value === \"t\";\n\n\tinput.setAttribute(\"checked\", \"checked\");\n\tdiv.appendChild( input );\n\tfragment = document.createDocumentFragment();\n\tfragment.appendChild( div.lastChild );\n\n\t// WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tsupport.appendChecked = input.checked;\n\n\tfragment.removeChild( input );\n\tfragment.appendChild( div );\n\n\tdiv.innerHTML = \"\";\n\n\t// Check if div with explicit width and no margin-right incorrectly\n\t// gets computed margin-right based on width of container. For more\n\t// info see bug #3333\n\t// Fails in WebKit before Feb 2011 nightlies\n\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\tif ( window.getComputedStyle ) {\n\t\tmarginDiv = document.createElement( \"div\" );\n\t\tmarginDiv.style.width = \"0\";\n\t\tmarginDiv.style.marginRight = \"0\";\n\t\tdiv.style.width = \"2px\";\n\t\tdiv.appendChild( marginDiv );\n\t\tsupport.reliableMarginRight =\n\t\t\t( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0;\n\t}\n\n\t// Technique from Juriy Zaytsev\n\t// http://perfectionkills.com/detecting-event-support-without-browser-sniffing/\n\t// We only care about the case where non-standard event systems\n\t// are used, namely in IE. Short-circuiting here helps us to\n\t// avoid an eval call (in setAttribute) which can cause CSP\n\t// to go haywire. See: https://developer.mozilla.org/en/Security/CSP\n\tif ( div.attachEvent ) {\n\t\tfor( i in {\n\t\t\tsubmit: 1,\n\t\t\tchange: 1,\n\t\t\tfocusin: 1\n\t\t}) {\n\t\t\teventName = \"on\" + i;\n\t\t\tisSupported = ( eventName in div );\n\t\t\tif ( !isSupported ) {\n\t\t\t\tdiv.setAttribute( eventName, \"return;\" );\n\t\t\t\tisSupported = ( typeof div[ eventName ] === \"function\" );\n\t\t\t}\n\t\t\tsupport[ i + \"Bubbles\" ] = isSupported;\n\t\t}\n\t}\n\n\tfragment.removeChild( div );\n\n\t// Null elements to avoid leaks in IE\n\tfragment = select = opt = marginDiv = div = input = null;\n\n\t// Run tests that need a body at doc ready\n\tjQuery(function() {\n\t\tvar container, outer, inner, table, td, offsetSupport,\n\t\t\tconMarginTop, ptlm, vb, style, html,\n\t\t\tbody = document.getElementsByTagName(\"body\")[0];\n\n\t\tif ( !body ) {\n\t\t\t// Return for frameset docs that don't have a body\n\t\t\treturn;\n\t\t}\n\n\t\tconMarginTop = 1;\n\t\tptlm = \"position:absolute;top:0;left:0;width:1px;height:1px;margin:0;\";\n\t\tvb = \"visibility:hidden;border:0;\";\n\t\tstyle = \"style='\" + ptlm + \"border:5px solid #000;padding:0;'\";\n\t\thtml = \"<div \" + style + \"><div></div></div>\" +\n\t\t\t\"<table \" + style + \" cellpadding='0' cellspacing='0'>\" +\n\t\t\t\"<tr><td></td></tr></table>\";\n\n\t\tcontainer = document.createElement(\"div\");\n\t\tcontainer.style.cssText = vb + \"width:0;height:0;position:static;top:0;margin-top:\" + conMarginTop + \"px\";\n\t\tbody.insertBefore( container, body.firstChild );\n\n\t\t// Construct the test element\n\t\tdiv = document.createElement(\"div\");\n\t\tcontainer.appendChild( div );\n\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\t// (only IE 8 fails this test)\n\t\tdiv.innerHTML = \"<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>\";\n\t\ttds = div.getElementsByTagName( \"td\" );\n\t\tisSupported = ( tds[ 0 ].offsetHeight === 0 );\n\n\t\ttds[ 0 ].style.display = \"\";\n\t\ttds[ 1 ].style.display = \"none\";\n\n\t\t// Check if empty table cells still have offsetWidth/Height\n\t\t// (IE <= 8 fail this test)\n\t\tsupport.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 );\n\n\t\t// Figure out if the W3C box model works as expected\n\t\tdiv.innerHTML = \"\";\n\t\tdiv.style.width = div.style.paddingLeft = \"1px\";\n\t\tjQuery.boxModel = support.boxModel = div.offsetWidth === 2;\n\n\t\tif ( typeof div.style.zoom !== \"undefined\" ) {\n\t\t\t// Check if natively block-level elements act like inline-block\n\t\t\t// elements when setting their display to 'inline' and giving\n\t\t\t// them layout\n\t\t\t// (IE < 8 does this)\n\t\t\tdiv.style.display = \"inline\";\n\t\t\tdiv.style.zoom = 1;\n\t\t\tsupport.inlineBlockNeedsLayout = ( div.offsetWidth === 2 );\n\n\t\t\t// Check if elements with layout shrink-wrap their children\n\t\t\t// (IE 6 does this)\n\t\t\tdiv.style.display = \"\";\n\t\t\tdiv.innerHTML = \"<div style='width:4px;'></div>\";\n\t\t\tsupport.shrinkWrapBlocks = ( div.offsetWidth !== 2 );\n\t\t}\n\n\t\tdiv.style.cssText = ptlm + vb;\n\t\tdiv.innerHTML = html;\n\n\t\touter = div.firstChild;\n\t\tinner = outer.firstChild;\n\t\ttd = outer.nextSibling.firstChild.firstChild;\n\n\t\toffsetSupport = {\n\t\t\tdoesNotAddBorder: ( inner.offsetTop !== 5 ),\n\t\t\tdoesAddBorderForTableAndCells: ( td.offsetTop === 5 )\n\t\t};\n\n\t\tinner.style.position = \"fixed\";\n\t\tinner.style.top = \"20px\";\n\n\t\t// safari subtracts parent border width here which is 5px\n\t\toffsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 );\n\t\tinner.style.position = inner.style.top = \"\";\n\n\t\touter.style.overflow = \"hidden\";\n\t\touter.style.position = \"relative\";\n\n\t\toffsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 );\n\t\toffsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop );\n\n\t\tbody.removeChild( container );\n\t\tdiv  = container = null;\n\n\t\tjQuery.extend( support, offsetSupport );\n\t});\n\n\treturn support;\n})();\n\n\n\n\nvar rbrace = /^(?:\\{.*\\}|\\[.*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\njQuery.extend({\n\tcache: {},\n\n\t// Please use with caution\n\tuuid: 0,\n\n\t// Unique for each copy of jQuery on the page\n\t// Non-digits removed to match rinlinejQuery\n\texpando: \"jQuery\" + ( jQuery.fn.jquery + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// The following elements throw uncatchable exceptions if you\n\t// attempt to add expando properties to them.\n\tnoData: {\n\t\t\"embed\": true,\n\t\t// Ban all objects except for Flash (which handle expandos)\n\t\t\"object\": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\",\n\t\t\"applet\": true\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data, pvt /* Internal Use Only */ ) {\n\t\tif ( !jQuery.acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar privateCache, thisCache, ret,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tgetByName = typeof name === \"string\",\n\n\t\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t\t// can't GC object references properly across the DOM-JS boundary\n\t\t\tisNode = elem.nodeType,\n\n\t\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t\t// attached directly to the object so GC can occur automatically\n\t\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey,\n\t\t\tisEvents = name === \"events\";\n\n\t\t// Avoid doing any more work than we need to when trying to get data on an\n\t\t// object that has no data at all\n\t\tif ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( !id ) {\n\t\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t\t// ends up in the global cache\n\t\t\tif ( isNode ) {\n\t\t\t\telem[ internalKey ] = id = ++jQuery.uuid;\n\t\t\t} else {\n\t\t\t\tid = internalKey;\n\t\t\t}\n\t\t}\n\n\t\tif ( !cache[ id ] ) {\n\t\t\tcache[ id ] = {};\n\n\t\t\t// Avoids exposing jQuery metadata on plain JS objects when the object\n\t\t\t// is serialized using JSON.stringify\n\t\t\tif ( !isNode ) {\n\t\t\t\tcache[ id ].toJSON = jQuery.noop;\n\t\t\t}\n\t\t}\n\n\t\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t\t// shallow copied over onto the existing cache\n\t\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\t\tif ( pvt ) {\n\t\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t\t} else {\n\t\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t\t}\n\t\t}\n\n\t\tprivateCache = thisCache = cache[ id ];\n\n\t\t// jQuery data() is stored in a separate object inside the object's internal data\n\t\t// cache in order to avoid key collisions between internal data and user-defined\n\t\t// data.\n\t\tif ( !pvt ) {\n\t\t\tif ( !thisCache.data ) {\n\t\t\t\tthisCache.data = {};\n\t\t\t}\n\n\t\t\tthisCache = thisCache.data;\n\t\t}\n\n\t\tif ( data !== undefined ) {\n\t\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t\t}\n\n\t\t// Users should not attempt to inspect the internal events object using jQuery.data,\n\t\t// it is undocumented and subject to change. But does anyone listen? No.\n\t\tif ( isEvents && !thisCache[ name ] ) {\n\t\t\treturn privateCache.events;\n\t\t}\n\n\t\t// Check for both converted-to-camel and non-converted data property names\n\t\t// If a data property was specified\n\t\tif ( getByName ) {\n\n\t\t\t// First Try to find as-is property data\n\t\t\tret = thisCache[ name ];\n\n\t\t\t// Test for null|undefined property data\n\t\t\tif ( ret == null ) {\n\n\t\t\t\t// Try to find the camelCased property\n\t\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t\t}\n\t\t} else {\n\t\t\tret = thisCache;\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tremoveData: function( elem, name, pvt /* Internal Use Only */ ) {\n\t\tif ( !jQuery.acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar thisCache, i, l,\n\n\t\t\t// Reference to internal data cache key\n\t\t\tinternalKey = jQuery.expando,\n\n\t\t\tisNode = elem.nodeType,\n\n\t\t\t// See jQuery.data for more information\n\t\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t\t// See jQuery.data for more information\n\t\t\tid = isNode ? elem[ internalKey ] : internalKey;\n\n\t\t// If there is already no cache entry for this object, there is no\n\t\t// purpose in continuing\n\t\tif ( !cache[ id ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( name ) {\n\n\t\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\t\tif ( thisCache ) {\n\n\t\t\t\t// Support array or space separated string names for data keys\n\t\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tname = name.split( \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tfor ( i = 0, l = name.length; i < l; i++ ) {\n\t\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t\t}\n\n\t\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t\t// and let the cache object itself get destroyed\n\t\t\t\tif ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// See jQuery.data for more information\n\t\tif ( !pvt ) {\n\t\t\tdelete cache[ id ].data;\n\n\t\t\t// Don't destroy the parent cache unless the internal data object\n\t\t\t// had been the only thing left in it\n\t\t\tif ( !isEmptyDataObject(cache[ id ]) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\t// Browsers that fail expando deletion also refuse to delete expandos on\n\t\t// the window, but it will allow it on all other JS objects; other browsers\n\t\t// don't care\n\t\t// Ensure that `cache` is not a window object #10080\n\t\tif ( jQuery.support.deleteExpando || !cache.setInterval ) {\n\t\t\tdelete cache[ id ];\n\t\t} else {\n\t\t\tcache[ id ] = null;\n\t\t}\n\n\t\t// We destroyed the cache and need to eliminate the expando on the node to avoid\n\t\t// false lookups in the cache for entries that no longer exist\n\t\tif ( isNode ) {\n\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t// we must handle all of these cases\n\t\t\tif ( jQuery.support.deleteExpando ) {\n\t\t\t\tdelete elem[ internalKey ];\n\t\t\t} else if ( elem.removeAttribute ) {\n\t\t\t\telem.removeAttribute( internalKey );\n\t\t\t} else {\n\t\t\t\telem[ internalKey ] = null;\n\t\t\t}\n\t\t}\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn jQuery.data( elem, name, data, true );\n\t},\n\n\t// A method for determining if a DOM node can handle the data expando\n\tacceptData: function( elem ) {\n\t\tif ( elem.nodeName ) {\n\t\t\tvar match = jQuery.noData[ elem.nodeName.toLowerCase() ];\n\n\t\t\tif ( match ) {\n\t\t\t\treturn !(match === true || elem.getAttribute(\"classid\") !== match);\n\t\t\t}\n\t\t}\n\n\t\treturn true;\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar parts, attr, name,\n\t\t\tdata = null;\n\n\t\tif ( typeof key === \"undefined\" ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( this[0] );\n\n\t\t\t\tif ( this[0].nodeType === 1 && !jQuery._data( this[0], \"parsedAttrs\" ) ) {\n\t\t\t\t\tattr = this[0].attributes;\n\t\t\t\t\tfor ( var i = 0, l = attr.length; i < l; i++ ) {\n\t\t\t\t\t\tname = attr[i].name;\n\n\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\tname = jQuery.camelCase( name.substring(5) );\n\n\t\t\t\t\t\t\tdataAttr( this[0], name, data[ name ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( this[0], \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\n\t\t} else if ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\tparts = key.split(\".\");\n\t\tparts[1] = parts[1] ? \".\" + parts[1] : \"\";\n\n\t\tif ( value === undefined ) {\n\t\t\tdata = this.triggerHandler(\"getData\" + parts[1] + \"!\", [parts[0]]);\n\n\t\t\t// Try to fetch any internally stored data first\n\t\t\tif ( data === undefined && this.length ) {\n\t\t\t\tdata = jQuery.data( this[0], key );\n\t\t\t\tdata = dataAttr( this[0], key, data );\n\t\t\t}\n\n\t\t\treturn data === undefined && parts[1] ?\n\t\t\t\tthis.data( parts[0] ) :\n\t\t\t\tdata;\n\n\t\t} else {\n\t\t\treturn this.each(function() {\n\t\t\t\tvar self = jQuery( this ),\n\t\t\t\t\targs = [ parts[0], value ];\n\n\t\t\t\tself.triggerHandler( \"setData\" + parts[1] + \"!\", args );\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t\tself.triggerHandler( \"changeData\" + parts[1] + \"!\", args );\n\t\t\t});\n\t\t}\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\tdata === \"false\" ? false :\n\t\t\t\tdata === \"null\" ? null :\n\t\t\t\tjQuery.isNumeric( data ) ? parseFloat( data ) :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tfor ( var name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\n\n\n\nfunction handleQueueMarkDefer( elem, type, src ) {\n\tvar deferDataKey = type + \"defer\",\n\t\tqueueDataKey = type + \"queue\",\n\t\tmarkDataKey = type + \"mark\",\n\t\tdefer = jQuery._data( elem, deferDataKey );\n\tif ( defer &&\n\t\t( src === \"queue\" || !jQuery._data(elem, queueDataKey) ) &&\n\t\t( src === \"mark\" || !jQuery._data(elem, markDataKey) ) ) {\n\t\t// Give room for hard-coded callbacks to fire first\n\t\t// and eventually mark/queue something else on the element\n\t\tsetTimeout( function() {\n\t\t\tif ( !jQuery._data( elem, queueDataKey ) &&\n\t\t\t\t!jQuery._data( elem, markDataKey ) ) {\n\t\t\t\tjQuery.removeData( elem, deferDataKey, true );\n\t\t\t\tdefer.fire();\n\t\t\t}\n\t\t}, 0 );\n\t}\n}\n\njQuery.extend({\n\n\t_mark: function( elem, type ) {\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"mark\";\n\t\t\tjQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 );\n\t\t}\n\t},\n\n\t_unmark: function( force, elem, type ) {\n\t\tif ( force !== true ) {\n\t\t\ttype = elem;\n\t\t\telem = force;\n\t\t\tforce = false;\n\t\t}\n\t\tif ( elem ) {\n\t\t\ttype = type || \"fx\";\n\t\t\tvar key = type + \"mark\",\n\t\t\t\tcount = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 );\n\t\t\tif ( count ) {\n\t\t\t\tjQuery._data( elem, key, count );\n\t\t\t} else {\n\t\t\t\tjQuery.removeData( elem, key, true );\n\t\t\t\thandleQueueMarkDefer( elem, type, \"mark\" );\n\t\t\t}\n\t\t}\n\t},\n\n\tqueue: function( elem, type, data ) {\n\t\tvar q;\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tq = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !q || jQuery.isArray(data) ) {\n\t\t\t\t\tq = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tq.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn q || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tfn = queue.shift(),\n\t\t\thooks = {};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\tjQuery._data( elem, type + \".run\", hooks );\n\t\t\tfn.call( elem, function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t}, hooks );\n\t\t}\n\n\t\tif ( !queue.length ) {\n\t\t\tjQuery.removeData( elem, type + \"queue \" + type + \".run\", true );\n\t\t\thandleQueueMarkDefer( elem, type, \"queue\" );\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t}\n\n\t\tif ( data === undefined ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\t// Based off of the plugin by Clint Helfers, with permission.\n\t// http://blindsignals.com/index.php/2009/07/jquery-delay/\n\tdelay: function( time, type ) {\n\t\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\t\ttype = type || \"fx\";\n\n\t\treturn this.queue( type, function( next, hooks ) {\n\t\t\tvar timeout = setTimeout( next, time );\n\t\t\thooks.stop = function() {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t};\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, object ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobject = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\t\tvar defer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = elements.length,\n\t\t\tcount = 1,\n\t\t\tdeferDataKey = type + \"defer\",\n\t\t\tqueueDataKey = type + \"queue\",\n\t\t\tmarkDataKey = type + \"mark\",\n\t\t\ttmp;\n\t\tfunction resolve() {\n\t\t\tif ( !( --count ) ) {\n\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t}\n\t\t}\n\t\twhile( i-- ) {\n\t\t\tif (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) ||\n\t\t\t\t\t( jQuery.data( elements[ i ], queueDataKey, undefined, true ) ||\n\t\t\t\t\t\tjQuery.data( elements[ i ], markDataKey, undefined, true ) ) &&\n\t\t\t\t\tjQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( \"once memory\" ), true ) )) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise();\n\t}\n});\n\n\n\n\nvar rclass = /[\\n\\t\\r]/g,\n\trspace = /\\s+/,\n\trreturn = /\\r/g,\n\trtype = /^(?:button|input)$/i,\n\trfocusable = /^(?:button|input|object|select|textarea)$/i,\n\trclickable = /^a(?:rea)?$/i,\n\trboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,\n\tgetSetAttribute = jQuery.support.getSetAttribute,\n\tnodeHook, boolHook, fixSpecified;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn jQuery.access( this, name, value, true, jQuery.attr );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t},\n\n\tprop: function( name, value ) {\n\t\treturn jQuery.access( this, name, value, true, jQuery.prop );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t},\n\n\taddClass: function( value ) {\n\t\tvar classNames, i, l, elem,\n\t\t\tsetClass, c, cl;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call(this, j, this.className) );\n\t\t\t});\n\t\t}\n\n\t\tif ( value && typeof value === \"string\" ) {\n\t\t\tclassNames = value.split( rspace );\n\n\t\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\tif ( !elem.className && classNames.length === 1 ) {\n\t\t\t\t\t\telem.className = value;\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetClass = \" \" + elem.className + \" \";\n\n\t\t\t\t\t\tfor ( c = 0, cl = classNames.length; c < cl; c++ ) {\n\t\t\t\t\t\t\tif ( !~setClass.indexOf( \" \" + classNames[ c ] + \" \" ) ) {\n\t\t\t\t\t\t\t\tsetClass += classNames[ c ] + \" \";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telem.className = jQuery.trim( setClass );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classNames, i, l, elem, className, c, cl;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call(this, j, this.className) );\n\t\t\t});\n\t\t}\n\n\t\tif ( (value && typeof value === \"string\") || value === undefined ) {\n\t\t\tclassNames = ( value || \"\" ).split( rspace );\n\n\t\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.nodeType === 1 && elem.className ) {\n\t\t\t\t\tif ( value ) {\n\t\t\t\t\t\tclassName = (\" \" + elem.className + \" \").replace( rclass, \" \" );\n\t\t\t\t\t\tfor ( c = 0, cl = classNames.length; c < cl; c++ ) {\n\t\t\t\t\t\t\tclassName = className.replace(\" \" + classNames[ c ] + \" \", \" \");\n\t\t\t\t\t\t}\n\t\t\t\t\t\telem.className = jQuery.trim( className );\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem.className = \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisBool = typeof stateVal === \"boolean\";\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tstate = stateVal,\n\t\t\t\t\tclassNames = value.split( rspace );\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space seperated list\n\t\t\t\t\tstate = isBool ? state : !self.hasClass( className );\n\t\t\t\t\tself[ state ? \"addClass\" : \"removeClass\" ]( className );\n\t\t\t\t}\n\n\t\t\t} else if ( type === \"undefined\" || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// toggle whole className\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) > -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.nodeName.toLowerCase() ] || jQuery.valHooks[ elem.type ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar self = jQuery(this), val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, self.val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map(val, function ( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.nodeName.toLowerCase() ] || jQuery.valHooks[ this.type ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// attributes.value is undefined in Blackberry 4.7 but\n\t\t\t\t// uses .value. See #6932\n\t\t\t\tvar val = elem.attributes.value;\n\t\t\t\treturn !val || val.specified ? elem.value : elem.text;\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, i, max, option,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tvalues = [],\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tone = elem.type === \"select-one\";\n\n\t\t\t\t// Nothing was selected\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\ti = one ? index : 0;\n\t\t\t\tmax = one ? index + 1 : options.length;\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\tif ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null) &&\n\t\t\t\t\t\t\t(!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" )) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fixes Bug #2551 -- select.val() broken in IE after form.reset()\n\t\t\t\tif ( one && !values.length && options.length ) {\n\t\t\t\t\treturn jQuery( options[ index ] ).val();\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar values = jQuery.makeArray( value );\n\n\t\t\t\tjQuery(elem).find(\"option\").each(function() {\n\t\t\t\t\tthis.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;\n\t\t\t\t});\n\n\t\t\t\tif ( !values.length ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t},\n\n\tattrFn: {\n\t\tval: true,\n\t\tcss: true,\n\t\thtml: true,\n\t\ttext: true,\n\t\tdata: true,\n\t\twidth: true,\n\t\theight: true,\n\t\toffset: true\n\t},\n\n\tattr: function( elem, name, value, pass ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( pass && name in jQuery.attrFn ) {\n\t\t\treturn jQuery( elem )[ name ]( value );\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( notxml ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\n\t\t\t} else if ( hooks && \"set\" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, \"\" + value );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\n\t\t\tret = elem.getAttribute( name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret === null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar propName, attrNames, name, l,\n\t\t\ti = 0;\n\n\t\tif ( value && elem.nodeType === 1 ) {\n\t\t\tattrNames = value.toLowerCase().split( rspace );\n\t\t\tl = attrNames.length;\n\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tname = attrNames[ i ];\n\n\t\t\t\tif ( name ) {\n\t\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\n\t\t\t\t\t// Set corresponding property to false for boolean attributes\n\t\t\t\t\tif ( rboolean.test( name ) && propName in elem ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\t// We can't allow the type property to be changed (since it causes problems in IE)\n\t\t\t\tif ( rtype.test( elem.nodeName ) && elem.parentNode ) {\n\t\t\t\t\tjQuery.error( \"type property can't be changed\" );\n\t\t\t\t} else if ( !jQuery.support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to it's default in case type is set after value\n\t\t\t\t\t// This is for element creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Use the value property for back compat\n\t\t// Use the nodeHook for button elements in IE6/7 (#1954)\n\t\tvalue: {\n\t\t\tget: function( elem, name ) {\n\t\t\t\tif ( nodeHook && jQuery.nodeName( elem, \"button\" ) ) {\n\t\t\t\t\treturn nodeHook.get( elem, name );\n\t\t\t\t}\n\t\t\t\treturn name in elem ?\n\t\t\t\t\telem.value :\n\t\t\t\t\tnull;\n\t\t\t},\n\t\t\tset: function( elem, value, name ) {\n\t\t\t\tif ( nodeHook && jQuery.nodeName( elem, \"button\" ) ) {\n\t\t\t\t\treturn nodeHook.set( elem, value, name );\n\t\t\t\t}\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.value = value;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\ttabindex: \"tabIndex\",\n\t\treadonly: \"readOnly\",\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\",\n\t\tmaxlength: \"maxLength\",\n\t\tcellspacing: \"cellSpacing\",\n\t\tcellpadding: \"cellPadding\",\n\t\trowspan: \"rowSpan\",\n\t\tcolspan: \"colSpan\",\n\t\tusemap: \"useMap\",\n\t\tframeborder: \"frameBorder\",\n\t\tcontenteditable: \"contentEditable\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\treturn ( elem[ name ] = value );\n\t\t\t}\n\n\t\t} else {\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\treturn elem[ name ];\n\t\t\t}\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\tvar attributeNode = elem.getAttributeNode(\"tabindex\");\n\n\t\t\t\treturn attributeNode && attributeNode.specified ?\n\t\t\t\t\tparseInt( attributeNode.value, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\tundefined;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional)\njQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex;\n\n// Hook for boolean attributes\nboolHook = {\n\tget: function( elem, name ) {\n\t\t// Align boolean attributes with corresponding properties\n\t\t// Fall back to attribute presence where some booleans are not supported\n\t\tvar attrNode,\n\t\t\tproperty = jQuery.prop( elem, name );\n\t\treturn property === true || typeof property !== \"boolean\" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?\n\t\t\tname.toLowerCase() :\n\t\t\tundefined;\n\t},\n\tset: function( elem, value, name ) {\n\t\tvar propName;\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\t// value is true since we know at this point it's type boolean and not false\n\t\t\t// Set boolean attributes to the same name and set the DOM property\n\t\t\tpropName = jQuery.propFix[ name ] || name;\n\t\t\tif ( propName in elem ) {\n\t\t\t\t// Only set the IDL specifically if it already exists on the element\n\t\t\t\telem[ propName ] = true;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, name.toLowerCase() );\n\t\t}\n\t\treturn name;\n\t}\n};\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\tfixSpecified = {\n\t\tname: true,\n\t\tid: true\n\t};\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = jQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret;\n\t\t\tret = elem.getAttributeNode( name );\n\t\t\treturn ret && ( fixSpecified[ name ] ? ret.nodeValue !== \"\" : ret.specified ) ?\n\t\t\t\tret.nodeValue :\n\t\t\t\tundefined;\n\t\t},\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\tret = document.createAttribute( name );\n\t\t\t\telem.setAttributeNode( ret );\n\t\t\t}\n\t\t\treturn ( ret.nodeValue = value + \"\" );\n\t\t}\n\t};\n\n\t// Apply the nodeHook to tabindex\n\tjQuery.attrHooks.tabindex.set = nodeHook.set;\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tget: nodeHook.get,\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( value === \"\" ) {\n\t\t\t\tvalue = \"false\";\n\t\t\t}\n\t\t\tnodeHook.set( elem, value, name );\n\t\t}\n\t};\n}\n\n\n// Some attributes require a special call on IE\nif ( !jQuery.support.hrefNormalized ) {\n\tjQuery.each([ \"href\", \"src\", \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar ret = elem.getAttribute( name, 2 );\n\t\t\t\treturn ret === null ? undefined : ret;\n\t\t\t}\n\t\t});\n\t});\n}\n\nif ( !jQuery.support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Normalize to lowercase since IE uppercases css property names\n\t\t\treturn elem.style.cssText.toLowerCase() || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = \"\" + value );\n\t\t}\n\t};\n}\n\n// Safari mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !jQuery.support.optSelected ) {\n\tjQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t});\n}\n\n// IE6/7 call enctype encoding\nif ( !jQuery.support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n// Radios and checkboxes getter/setter\nif ( !jQuery.support.checkOn ) {\n\tjQuery.each([ \"radio\", \"checkbox\" ], function() {\n\t\tjQuery.valHooks[ this ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\t// Handle the case where in Webkit \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t\t}\n\t\t};\n\t});\n}\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t});\n});\n\n\n\n\nvar rformElems = /^(?:textarea|input|select)$/i,\n\trtypenamespace = /^([^\\.]*)?(?:\\.(.+))?$/,\n\trhoverHack = /\\bhover(\\.\\S+)?\\b/,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trquickIs = /^(\\w*)(?:#([\\w\\-]+))?(?:\\.([\\w\\-]+))?$/,\n\tquickParse = function( selector ) {\n\t\tvar quick = rquickIs.exec( selector );\n\t\tif ( quick ) {\n\t\t\t//   0  1    2   3\n\t\t\t// [ _, tag, id, class ]\n\t\t\tquick[1] = ( quick[1] || \"\" ).toLowerCase();\n\t\t\tquick[3] = quick[3] && new RegExp( \"(?:^|\\\\s)\" + quick[3] + \"(?:\\\\s|$)\" );\n\t\t}\n\t\treturn quick;\n\t},\n\tquickIs = function( elem, m ) {\n\t\tvar attrs = elem.attributes || {};\n\t\treturn (\n\t\t\t(!m[1] || elem.nodeName.toLowerCase() === m[1]) &&\n\t\t\t(!m[2] || (attrs.id || {}).value === m[2]) &&\n\t\t\t(!m[3] || m[3].test( (attrs[ \"class\" ] || {}).value ))\n\t\t);\n\t},\n\thoverHack = function( events ) {\n\t\treturn jQuery.event.special.hover ? events : events.replace( rhoverHack, \"mouseenter$1 mouseleave$1\" );\n\t};\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar elemData, eventHandle, events,\n\t\t\tt, tns, type, namespaces, handleObj,\n\t\t\thandleObjIn, quick, handlers, special;\n\n\t\t// Don't attach events to noData or text/comment nodes (allow plain objects tho)\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tevents = elemData.events;\n\t\tif ( !events ) {\n\t\t\telemData.events = events = {};\n\t\t}\n\t\teventHandle = elemData.handle;\n\t\tif ( !eventHandle ) {\n\t\t\telemData.handle = eventHandle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\t// jQuery(...).bind(\"mouseover mouseout\", fn);\n\t\ttypes = jQuery.trim( hoverHack(types) ).split( \" \" );\n\t\tfor ( t = 0; t < types.length; t++ ) {\n\n\t\t\ttns = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = tns[1];\n\t\t\tnamespaces = ( tns[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: tns[1],\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tquick: quickParse( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\thandlers = events[ type ];\n\t\t\tif ( !handlers ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\tglobal: {},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar elemData = jQuery.hasData( elem ) && jQuery._data( elem ),\n\t\t\tt, tns, type, origType, namespaces, origCount,\n\t\t\tj, events, special, handle, eventType, handleObj;\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = jQuery.trim( hoverHack( types || \"\" ) ).split(\" \");\n\t\tfor ( t = 0; t < types.length; t++ ) {\n\t\t\ttns = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tns[1];\n\t\t\tnamespaces = tns[2];\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector? special.delegateType : special.bindType ) || type;\n\t\t\teventType = events[ type ] || [];\n\t\t\torigCount = eventType.length;\n\t\t\tnamespaces = namespaces ? new RegExp(\"(^|\\\\.)\" + namespaces.split(\".\").sort().join(\"\\\\.(?:.*\\\\.)?\") + \"(\\\\.|$)\") : null;\n\n\t\t\t// Remove matching events\n\t\t\tfor ( j = 0; j < eventType.length; j++ ) {\n\t\t\t\thandleObj = eventType[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t ( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t ( !namespaces || namespaces.test( handleObj.namespace ) ) &&\n\t\t\t\t\t ( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\teventType.splice( j--, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\teventType.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( eventType.length === 0 && origCount !== eventType.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\thandle = elemData.handle;\n\t\t\tif ( handle ) {\n\t\t\t\thandle.elem = null;\n\t\t\t}\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery.removeData( elem, [ \"events\", \"handle\" ], true );\n\t\t}\n\t},\n\n\t// Events that are safe to short-circuit if no handlers are attached.\n\t// Native DOM events should not be added, they may have inline handlers.\n\tcustomEvent: {\n\t\t\"getData\": true,\n\t\t\"setData\": true,\n\t\t\"changeData\": true\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Event object or event type\n\t\tvar type = event.type || event,\n\t\t\tnamespaces = [],\n\t\t\tcache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType;\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \"!\" ) >= 0 ) {\n\t\t\t// Exclusive events trigger only for the exact event (no namespaces)\n\t\t\ttype = type.slice(0, -1);\n\t\t\texclusive = true;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\n\t\tif ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) {\n\t\t\t// No jQuery handlers for this event type, and it can't have inline handlers\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an Event, Object, or just an event type string\n\t\tevent = typeof event === \"object\" ?\n\t\t\t// jQuery.Event object\n\t\t\tevent[ jQuery.expando ] ? event :\n\t\t\t// Object literal\n\t\t\tnew jQuery.Event( type, event ) :\n\t\t\t// Just the event type (string)\n\t\t\tnew jQuery.Event( type );\n\n\t\tevent.type = type;\n\t\tevent.isTrigger = true;\n\t\tevent.exclusive = exclusive;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.namespace_re = event.namespace? new RegExp(\"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.)?\") + \"(\\\\.|$)\") : null;\n\t\tontype = type.indexOf( \":\" ) < 0 ? \"on\" + type : \"\";\n\n\t\t// Handle a global trigger\n\t\tif ( !elem ) {\n\n\t\t\t// TODO: Stop taunting the data cache; remove global events and always attach to document\n\t\t\tcache = jQuery.cache;\n\t\t\tfor ( i in cache ) {\n\t\t\t\tif ( cache[ i ].events && cache[ i ].events[ type ] ) {\n\t\t\t\t\tjQuery.event.trigger( event, data, cache[ i ].handle.elem, true );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data != null ? jQuery.makeArray( data ) : [];\n\t\tdata.unshift( event );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\teventPath = [[ elem, special.bindType || type ]];\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tcur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode;\n\t\t\told = null;\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push([ cur, bubbleType ]);\n\t\t\t\told = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( old && old === elem.ownerDocument ) {\n\t\t\t\teventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]);\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\tfor ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) {\n\n\t\t\tcur = eventPath[i][0];\n\t\t\tevent.type = eventPath[i][1];\n\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\t\t\t// Note that this is a bare JS function and not a jQuery handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) &&\n\t\t\t\t!(type === \"click\" && jQuery.nodeName( elem, \"a\" )) && jQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486)\n\t\t\t\tif ( ontype && elem[ type ] && ((type !== \"focus\" && type !== \"blur\") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\told = elem[ ontype ];\n\n\t\t\t\t\tif ( old ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\telem[ type ]();\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( old ) {\n\t\t\t\t\t\telem[ ontype ] = old;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event || window.event );\n\n\t\tvar handlers = ( (jQuery._data( this, \"events\" ) || {} )[ event.type ] || []),\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\targs = [].slice.call( arguments, 0 ),\n\t\t\trun_all = !event.exclusive && !event.namespace,\n\t\t\thandlerQueue = [],\n\t\t\ti, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related;\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Determine handlers that should run if there are delegated events\n\t\t// Avoid disabled elements in IE (#6911) and non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && !event.target.disabled && !(event.button && event.type === \"click\") ) {\n\n\t\t\t// Pregenerate a single jQuery object for reuse with .is()\n\t\t\tjqcur = jQuery(this);\n\t\t\tjqcur.context = this.ownerDocument || this;\n\n\t\t\tfor ( cur = event.target; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\tselMatch = {};\n\t\t\t\tmatches = [];\n\t\t\t\tjqcur[0] = cur;\n\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\thandleObj = handlers[ i ];\n\t\t\t\t\tsel = handleObj.selector;\n\n\t\t\t\t\tif ( selMatch[ sel ] === undefined ) {\n\t\t\t\t\t\tselMatch[ sel ] = (\n\t\t\t\t\t\t\thandleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel )\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\tif ( selMatch[ sel ] ) {\n\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif ( matches.length ) {\n\t\t\t\t\thandlerQueue.push({ elem: cur, matches: matches });\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( handlers.length > delegateCount ) {\n\t\t\thandlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\tfor ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) {\n\t\t\tmatched = handlerQueue[ i ];\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tfor ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) {\n\t\t\t\thandleObj = matched.matches[ j ];\n\n\t\t\t\t// Triggered event must either 1) be non-exclusive and have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.data = handleObj.data;\n\t\t\t\t\tevent.handleObj = handleObj;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tevent.result = ret;\n\t\t\t\t\t\tif ( ret === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\t// *** attrChange attrName relatedNode srcElement  are not normalized, non-W3C, deprecated, will be removed in 1.8 ***\n\tprops: \"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar eventDoc, doc, body,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = jQuery.event.fixHooks[ event.type ] || {},\n\t\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = jQuery.Event( originalEvent );\n\n\t\tfor ( i = copy.length; i; ) {\n\t\t\tprop = copy[ --i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Fix target property, if necessary (#1925, IE 6/7/8 & Safari2)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Target should not be a text node (#504, Safari)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8)\n\t\tif ( event.metaKey === undefined ) {\n\t\t\tevent.metaKey = event.ctrlKey;\n\t\t}\n\n\t\treturn fixHook.filter? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\tspecial: {\n\t\tready: {\n\t\t\t// Make sure the ready event is setup\n\t\t\tsetup: jQuery.bindReady\n\t\t},\n\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\n\t\tfocus: {\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tsetup: function( data, namespaces, eventHandle ) {\n\t\t\t\t// We only want to do this special case on windows\n\t\t\t\tif ( jQuery.isWindow( this ) ) {\n\t\t\t\t\tthis.onbeforeunload = eventHandle;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tteardown: function( namespaces, eventHandle ) {\n\t\t\t\tif ( this.onbeforeunload === eventHandle ) {\n\t\t\t\t\tthis.onbeforeunload = null;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{ type: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\n// Some plugins are using, but it's undocumented/deprecated and will be removed.\n// The 1.7 special event interface should provide all the hooks needed now.\njQuery.event.handle = jQuery.event.dispatch;\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.detachEvent ) {\n\t\t\telem.detachEvent( \"on\" + type, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false ||\n\t\t\tsrc.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\nfunction returnFalse() {\n\treturn false;\n}\nfunction returnTrue() {\n\treturn true;\n}\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tpreventDefault: function() {\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tvar e = this.originalEvent;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// if preventDefault exists run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// otherwise set the returnValue property of the original event to false (IE)\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tvar e = this.originalEvent;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// if stopPropagation exists run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t\t// otherwise set the cancelBubble property of the original event to true (IE)\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\t\tthis.stopPropagation();\n\t},\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar target = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj,\n\t\t\t\tselector = handleObj.selector,\n\t\t\t\tret;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !jQuery.support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !form._submit_attached ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tform._submit_attached = true;\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !jQuery.support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !elem._change_attached ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\telem._change_attached = true;\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !jQuery.support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler while someone wants focusin/focusout\n\t\tvar attaches = 0,\n\t\t\thandler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tif ( attaches++ === 0 ) {\n\t\t\t\t\tdocument.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tif ( --attaches === 0 ) {\n\t\t\t\t\tdocument.removeEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar origFn, type;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on.call( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\tvar handleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace? handleObj.type + \".\" + handleObj.namespace : handleObj.type,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( var type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tlive: function( types, data, fn ) {\n\t\tjQuery( this.context ).on( types, this.selector, data, fn );\n\t\treturn this;\n\t},\n\tdie: function( types, fn ) {\n\t\tjQuery( this.context ).off( types, this.selector || \"**\", fn );\n\t\treturn this;\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length == 1? this.off( selector, \"**\" ) : this.off( types, selector, fn );\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tif ( this[0] ) {\n\t\t\treturn jQuery.event.trigger( type, data, this[0], true );\n\t\t}\n\t},\n\n\ttoggle: function( fn ) {\n\t\t// Save reference to arguments for access in closure\n\t\tvar args = arguments,\n\t\t\tguid = fn.guid || jQuery.guid++,\n\t\t\ti = 0,\n\t\t\ttoggler = function( event ) {\n\t\t\t\t// Figure out which function to execute\n\t\t\t\tvar lastToggle = ( jQuery._data( this, \"lastToggle\" + fn.guid ) || 0 ) % i;\n\t\t\t\tjQuery._data( this, \"lastToggle\" + fn.guid, lastToggle + 1 );\n\n\t\t\t\t// Make sure that clicks stop\n\t\t\t\tevent.preventDefault();\n\n\t\t\t\t// and execute the function\n\t\t\t\treturn args[ lastToggle ].apply( this, arguments ) || false;\n\t\t\t};\n\n\t\t// link all the functions, so any of them can unbind this click handler\n\t\ttoggler.guid = guid;\n\t\twhile ( i < args.length ) {\n\t\t\targs[ i++ ].guid = guid;\n\t\t}\n\n\t\treturn this.click( toggler );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n});\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\tif ( fn == null ) {\n\t\t\tfn = data;\n\t\t\tdata = null;\n\t\t}\n\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n\n\tif ( jQuery.attrFn ) {\n\t\tjQuery.attrFn[ name ] = true;\n\t}\n\n\tif ( rkeyEvent.test( name ) ) {\n\t\tjQuery.event.fixHooks[ name ] = jQuery.event.keyHooks;\n\t}\n\n\tif ( rmouseEvent.test( name ) ) {\n\t\tjQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks;\n\t}\n});\n\n\n\n/*!\n * Sizzle CSS Selector Engine\n *  Copyright 2011, The Dojo Foundation\n *  Released under the MIT, BSD, and GPL Licenses.\n *  More information: http://sizzlejs.com/\n */\n(function(){\n\nvar chunker = /((?:\\((?:\\([^()]+\\)|[^()]+)+\\)|\\[(?:\\[[^\\[\\]]*\\]|['\"][^'\"]*['\"]|[^\\[\\]'\"]+)+\\]|\\\\.|[^ >+~,(\\[\\\\]+)+|[>+~])(\\s*,\\s*)?((?:.|\\r|\\n)*)/g,\n\texpando = \"sizcache\" + (Math.random() + '').replace('.', ''),\n\tdone = 0,\n\ttoString = Object.prototype.toString,\n\thasDuplicate = false,\n\tbaseHasDuplicate = true,\n\trBackslash = /\\\\/g,\n\trReturn = /\\r\\n/g,\n\trNonWord = /\\W/;\n\n// Here we check if the JavaScript engine is using some sort of\n// optimization where it does not always call our comparision\n// function. If that is the case, discard the hasDuplicate value.\n//   Thus far that includes Google Chrome.\n[0, 0].sort(function() {\n\tbaseHasDuplicate = false;\n\treturn 0;\n});\n\nvar Sizzle = function( selector, context, results, seed ) {\n\tresults = results || [];\n\tcontext = context || document;\n\n\tvar origContext = context;\n\n\tif ( context.nodeType !== 1 && context.nodeType !== 9 ) {\n\t\treturn [];\n\t}\n\t\n\tif ( !selector || typeof selector !== \"string\" ) {\n\t\treturn results;\n\t}\n\n\tvar m, set, checkSet, extra, ret, cur, pop, i,\n\t\tprune = true,\n\t\tcontextXML = Sizzle.isXML( context ),\n\t\tparts = [],\n\t\tsoFar = selector;\n\t\n\t// Reset the position of the chunker regexp (start from head)\n\tdo {\n\t\tchunker.exec( \"\" );\n\t\tm = chunker.exec( soFar );\n\n\t\tif ( m ) {\n\t\t\tsoFar = m[3];\n\t\t\n\t\t\tparts.push( m[1] );\n\t\t\n\t\t\tif ( m[2] ) {\n\t\t\t\textra = m[3];\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t} while ( m );\n\n\tif ( parts.length > 1 && origPOS.exec( selector ) ) {\n\n\t\tif ( parts.length === 2 && Expr.relative[ parts[0] ] ) {\n\t\t\tset = posProcess( parts[0] + parts[1], context, seed );\n\n\t\t} else {\n\t\t\tset = Expr.relative[ parts[0] ] ?\n\t\t\t\t[ context ] :\n\t\t\t\tSizzle( parts.shift(), context );\n\n\t\t\twhile ( parts.length ) {\n\t\t\t\tselector = parts.shift();\n\n\t\t\t\tif ( Expr.relative[ selector ] ) {\n\t\t\t\t\tselector += parts.shift();\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tset = posProcess( selector, set, seed );\n\t\t\t}\n\t\t}\n\n\t} else {\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\t// (but not if it'll be faster if the inner selector is an ID)\n\t\tif ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML &&\n\t\t\t\tExpr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) {\n\n\t\t\tret = Sizzle.find( parts.shift(), context, contextXML );\n\t\t\tcontext = ret.expr ?\n\t\t\t\tSizzle.filter( ret.expr, ret.set )[0] :\n\t\t\t\tret.set[0];\n\t\t}\n\n\t\tif ( context ) {\n\t\t\tret = seed ?\n\t\t\t\t{ expr: parts.pop(), set: makeArray(seed) } :\n\t\t\t\tSizzle.find( parts.pop(), parts.length === 1 && (parts[0] === \"~\" || parts[0] === \"+\") && context.parentNode ? context.parentNode : context, contextXML );\n\n\t\t\tset = ret.expr ?\n\t\t\t\tSizzle.filter( ret.expr, ret.set ) :\n\t\t\t\tret.set;\n\n\t\t\tif ( parts.length > 0 ) {\n\t\t\t\tcheckSet = makeArray( set );\n\n\t\t\t} else {\n\t\t\t\tprune = false;\n\t\t\t}\n\n\t\t\twhile ( parts.length ) {\n\t\t\t\tcur = parts.pop();\n\t\t\t\tpop = cur;\n\n\t\t\t\tif ( !Expr.relative[ cur ] ) {\n\t\t\t\t\tcur = \"\";\n\t\t\t\t} else {\n\t\t\t\t\tpop = parts.pop();\n\t\t\t\t}\n\n\t\t\t\tif ( pop == null ) {\n\t\t\t\t\tpop = context;\n\t\t\t\t}\n\n\t\t\t\tExpr.relative[ cur ]( checkSet, pop, contextXML );\n\t\t\t}\n\n\t\t} else {\n\t\t\tcheckSet = parts = [];\n\t\t}\n\t}\n\n\tif ( !checkSet ) {\n\t\tcheckSet = set;\n\t}\n\n\tif ( !checkSet ) {\n\t\tSizzle.error( cur || selector );\n\t}\n\n\tif ( toString.call(checkSet) === \"[object Array]\" ) {\n\t\tif ( !prune ) {\n\t\t\tresults.push.apply( results, checkSet );\n\n\t\t} else if ( context && context.nodeType === 1 ) {\n\t\t\tfor ( i = 0; checkSet[i] != null; i++ ) {\n\t\t\t\tif ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) {\n\t\t\t\t\tresults.push( set[i] );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\t\t\tfor ( i = 0; checkSet[i] != null; i++ ) {\n\t\t\t\tif ( checkSet[i] && checkSet[i].nodeType === 1 ) {\n\t\t\t\t\tresults.push( set[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t} else {\n\t\tmakeArray( checkSet, results );\n\t}\n\n\tif ( extra ) {\n\t\tSizzle( extra, origContext, results, seed );\n\t\tSizzle.uniqueSort( results );\n\t}\n\n\treturn results;\n};\n\nSizzle.uniqueSort = function( results ) {\n\tif ( sortOrder ) {\n\t\thasDuplicate = baseHasDuplicate;\n\t\tresults.sort( sortOrder );\n\n\t\tif ( hasDuplicate ) {\n\t\t\tfor ( var i = 1; i < results.length; i++ ) {\n\t\t\t\tif ( results[i] === results[ i - 1 ] ) {\n\t\t\t\t\tresults.splice( i--, 1 );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn results;\n};\n\nSizzle.matches = function( expr, set ) {\n\treturn Sizzle( expr, null, null, set );\n};\n\nSizzle.matchesSelector = function( node, expr ) {\n\treturn Sizzle( expr, null, null, [node] ).length > 0;\n};\n\nSizzle.find = function( expr, context, isXML ) {\n\tvar set, i, len, match, type, left;\n\n\tif ( !expr ) {\n\t\treturn [];\n\t}\n\n\tfor ( i = 0, len = Expr.order.length; i < len; i++ ) {\n\t\ttype = Expr.order[i];\n\t\t\n\t\tif ( (match = Expr.leftMatch[ type ].exec( expr )) ) {\n\t\t\tleft = match[1];\n\t\t\tmatch.splice( 1, 1 );\n\n\t\t\tif ( left.substr( left.length - 1 ) !== \"\\\\\" ) {\n\t\t\t\tmatch[1] = (match[1] || \"\").replace( rBackslash, \"\" );\n\t\t\t\tset = Expr.find[ type ]( match, context, isXML );\n\n\t\t\t\tif ( set != null ) {\n\t\t\t\t\texpr = expr.replace( Expr.match[ type ], \"\" );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( !set ) {\n\t\tset = typeof context.getElementsByTagName !== \"undefined\" ?\n\t\t\tcontext.getElementsByTagName( \"*\" ) :\n\t\t\t[];\n\t}\n\n\treturn { set: set, expr: expr };\n};\n\nSizzle.filter = function( expr, set, inplace, not ) {\n\tvar match, anyFound,\n\t\ttype, found, item, filter, left,\n\t\ti, pass,\n\t\told = expr,\n\t\tresult = [],\n\t\tcurLoop = set,\n\t\tisXMLFilter = set && set[0] && Sizzle.isXML( set[0] );\n\n\twhile ( expr && set.length ) {\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) {\n\t\t\t\tfilter = Expr.filter[ type ];\n\t\t\t\tleft = match[1];\n\n\t\t\t\tanyFound = false;\n\n\t\t\t\tmatch.splice(1,1);\n\n\t\t\t\tif ( left.substr( left.length - 1 ) === \"\\\\\" ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( curLoop === result ) {\n\t\t\t\t\tresult = [];\n\t\t\t\t}\n\n\t\t\t\tif ( Expr.preFilter[ type ] ) {\n\t\t\t\t\tmatch = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter );\n\n\t\t\t\t\tif ( !match ) {\n\t\t\t\t\t\tanyFound = found = true;\n\n\t\t\t\t\t} else if ( match === true ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( match ) {\n\t\t\t\t\tfor ( i = 0; (item = curLoop[i]) != null; i++ ) {\n\t\t\t\t\t\tif ( item ) {\n\t\t\t\t\t\t\tfound = filter( item, match, i, curLoop );\n\t\t\t\t\t\t\tpass = not ^ found;\n\n\t\t\t\t\t\t\tif ( inplace && found != null ) {\n\t\t\t\t\t\t\t\tif ( pass ) {\n\t\t\t\t\t\t\t\t\tanyFound = true;\n\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcurLoop[i] = false;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t} else if ( pass ) {\n\t\t\t\t\t\t\t\tresult.push( item );\n\t\t\t\t\t\t\t\tanyFound = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( found !== undefined ) {\n\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\tcurLoop = result;\n\t\t\t\t\t}\n\n\t\t\t\t\texpr = expr.replace( Expr.match[ type ], \"\" );\n\n\t\t\t\t\tif ( !anyFound ) {\n\t\t\t\t\t\treturn [];\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Improper expression\n\t\tif ( expr === old ) {\n\t\t\tif ( anyFound == null ) {\n\t\t\t\tSizzle.error( expr );\n\n\t\t\t} else {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\told = expr;\n\t}\n\n\treturn curLoop;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Utility function for retreiving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\nvar getText = Sizzle.getText = function( elem ) {\n    var i, node,\n\t\tnodeType = elem.nodeType,\n\t\tret = \"\";\n\n\tif ( nodeType ) {\n\t\tif ( nodeType === 1 || nodeType === 9 ) {\n\t\t\t// Use textContent || innerText for elements\n\t\t\tif ( typeof elem.textContent === 'string' ) {\n\t\t\t\treturn elem.textContent;\n\t\t\t} else if ( typeof elem.innerText === 'string' ) {\n\t\t\t\t// Replace IE's carriage returns\n\t\t\t\treturn elem.innerText.replace( rReturn, '' );\n\t\t\t} else {\n\t\t\t\t// Traverse it's children\n\t\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling) {\n\t\t\t\t\tret += getText( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\t\treturn elem.nodeValue;\n\t\t}\n\t} else {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\tfor ( i = 0; (node = elem[i]); i++ ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tif ( node.nodeType !== 8 ) {\n\t\t\t\tret += getText( node );\n\t\t\t}\n\t\t}\n\t}\n\treturn ret;\n};\n\nvar Expr = Sizzle.selectors = {\n\torder: [ \"ID\", \"NAME\", \"TAG\" ],\n\n\tmatch: {\n\t\tID: /#((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)/,\n\t\tCLASS: /\\.((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)/,\n\t\tNAME: /\\[name=['\"]*((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)['\"]*\\]/,\n\t\tATTR: /\\[\\s*((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)\\s*(?:(\\S?=)\\s*(?:(['\"])(.*?)\\3|(#?(?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)*)|)|)\\s*\\]/,\n\t\tTAG: /^((?:[\\w\\u00c0-\\uFFFF\\*\\-]|\\\\.)+)/,\n\t\tCHILD: /:(only|nth|last|first)-child(?:\\(\\s*(even|odd|(?:[+\\-]?\\d+|(?:[+\\-]?\\d*)?n\\s*(?:[+\\-]\\s*\\d+)?))\\s*\\))?/,\n\t\tPOS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\\((\\d*)\\))?(?=[^\\-]|$)/,\n\t\tPSEUDO: /:((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)(?:\\((['\"]?)((?:\\([^\\)]+\\)|[^\\(\\)]*)+)\\2\\))?/\n\t},\n\n\tleftMatch: {},\n\n\tattrMap: {\n\t\t\"class\": \"className\",\n\t\t\"for\": \"htmlFor\"\n\t},\n\n\tattrHandle: {\n\t\thref: function( elem ) {\n\t\t\treturn elem.getAttribute( \"href\" );\n\t\t},\n\t\ttype: function( elem ) {\n\t\t\treturn elem.getAttribute( \"type\" );\n\t\t}\n\t},\n\n\trelative: {\n\t\t\"+\": function(checkSet, part){\n\t\t\tvar isPartStr = typeof part === \"string\",\n\t\t\t\tisTag = isPartStr && !rNonWord.test( part ),\n\t\t\t\tisPartStrNotTag = isPartStr && !isTag;\n\n\t\t\tif ( isTag ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t}\n\n\t\t\tfor ( var i = 0, l = checkSet.length, elem; i < l; i++ ) {\n\t\t\t\tif ( (elem = checkSet[i]) ) {\n\t\t\t\t\twhile ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {}\n\n\t\t\t\t\tcheckSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ?\n\t\t\t\t\t\telem || false :\n\t\t\t\t\t\telem === part;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( isPartStrNotTag ) {\n\t\t\t\tSizzle.filter( part, checkSet, true );\n\t\t\t}\n\t\t},\n\n\t\t\">\": function( checkSet, part ) {\n\t\t\tvar elem,\n\t\t\t\tisPartStr = typeof part === \"string\",\n\t\t\t\ti = 0,\n\t\t\t\tl = checkSet.length;\n\n\t\t\tif ( isPartStr && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\telem = checkSet[i];\n\n\t\t\t\t\tif ( elem ) {\n\t\t\t\t\t\tvar parent = elem.parentNode;\n\t\t\t\t\t\tcheckSet[i] = parent.nodeName.toLowerCase() === part ? parent : false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\telem = checkSet[i];\n\n\t\t\t\t\tif ( elem ) {\n\t\t\t\t\t\tcheckSet[i] = isPartStr ?\n\t\t\t\t\t\t\telem.parentNode :\n\t\t\t\t\t\t\telem.parentNode === part;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( isPartStr ) {\n\t\t\t\t\tSizzle.filter( part, checkSet, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t\"\": function(checkSet, part, isXML){\n\t\t\tvar nodeCheck,\n\t\t\t\tdoneName = done++,\n\t\t\t\tcheckFn = dirCheck;\n\n\t\t\tif ( typeof part === \"string\" && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t\tnodeCheck = part;\n\t\t\t\tcheckFn = dirNodeCheck;\n\t\t\t}\n\n\t\t\tcheckFn( \"parentNode\", part, doneName, checkSet, nodeCheck, isXML );\n\t\t},\n\n\t\t\"~\": function( checkSet, part, isXML ) {\n\t\t\tvar nodeCheck,\n\t\t\t\tdoneName = done++,\n\t\t\t\tcheckFn = dirCheck;\n\n\t\t\tif ( typeof part === \"string\" && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t\tnodeCheck = part;\n\t\t\t\tcheckFn = dirNodeCheck;\n\t\t\t}\n\n\t\t\tcheckFn( \"previousSibling\", part, doneName, checkSet, nodeCheck, isXML );\n\t\t}\n\t},\n\n\tfind: {\n\t\tID: function( match, context, isXML ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && !isXML ) {\n\t\t\t\tvar m = context.getElementById(match[1]);\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [m] : [];\n\t\t\t}\n\t\t},\n\n\t\tNAME: function( match, context ) {\n\t\t\tif ( typeof context.getElementsByName !== \"undefined\" ) {\n\t\t\t\tvar ret = [],\n\t\t\t\t\tresults = context.getElementsByName( match[1] );\n\n\t\t\t\tfor ( var i = 0, l = results.length; i < l; i++ ) {\n\t\t\t\t\tif ( results[i].getAttribute(\"name\") === match[1] ) {\n\t\t\t\t\t\tret.push( results[i] );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn ret.length === 0 ? null : ret;\n\t\t\t}\n\t\t},\n\n\t\tTAG: function( match, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( match[1] );\n\t\t\t}\n\t\t}\n\t},\n\tpreFilter: {\n\t\tCLASS: function( match, curLoop, inplace, result, not, isXML ) {\n\t\t\tmatch = \" \" + match[1].replace( rBackslash, \"\" ) + \" \";\n\n\t\t\tif ( isXML ) {\n\t\t\t\treturn match;\n\t\t\t}\n\n\t\t\tfor ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) {\n\t\t\t\tif ( elem ) {\n\t\t\t\t\tif ( not ^ (elem.className && (\" \" + elem.className + \" \").replace(/[\\t\\n\\r]/g, \" \").indexOf(match) >= 0) ) {\n\t\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\t\tresult.push( elem );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if ( inplace ) {\n\t\t\t\t\t\tcurLoop[i] = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\tID: function( match ) {\n\t\t\treturn match[1].replace( rBackslash, \"\" );\n\t\t},\n\n\t\tTAG: function( match, curLoop ) {\n\t\t\treturn match[1].replace( rBackslash, \"\" ).toLowerCase();\n\t\t},\n\n\t\tCHILD: function( match ) {\n\t\t\tif ( match[1] === \"nth\" ) {\n\t\t\t\tif ( !match[2] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\tmatch[2] = match[2].replace(/^\\+|\\s*/g, '');\n\n\t\t\t\t// parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6'\n\t\t\t\tvar test = /(-?)(\\d*)(?:n([+\\-]?\\d*))?/.exec(\n\t\t\t\t\tmatch[2] === \"even\" && \"2n\" || match[2] === \"odd\" && \"2n+1\" ||\n\t\t\t\t\t!/\\D/.test( match[2] ) && \"0n+\" + match[2] || match[2]);\n\n\t\t\t\t// calculate the numbers (first)n+(last) including if they are negative\n\t\t\t\tmatch[2] = (test[1] + (test[2] || 1)) - 0;\n\t\t\t\tmatch[3] = test[3] - 0;\n\t\t\t}\n\t\t\telse if ( match[2] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\t// TODO: Move to normal caching system\n\t\t\tmatch[0] = done++;\n\n\t\t\treturn match;\n\t\t},\n\n\t\tATTR: function( match, curLoop, inplace, result, not, isXML ) {\n\t\t\tvar name = match[1] = match[1].replace( rBackslash, \"\" );\n\t\t\t\n\t\t\tif ( !isXML && Expr.attrMap[name] ) {\n\t\t\t\tmatch[1] = Expr.attrMap[name];\n\t\t\t}\n\n\t\t\t// Handle if an un-quoted value was used\n\t\t\tmatch[4] = ( match[4] || match[5] || \"\" ).replace( rBackslash, \"\" );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[4] = \" \" + match[4] + \" \";\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\tPSEUDO: function( match, curLoop, inplace, result, not ) {\n\t\t\tif ( match[1] === \"not\" ) {\n\t\t\t\t// If we're dealing with a complex expression, or a simple one\n\t\t\t\tif ( ( chunker.exec(match[3]) || \"\" ).length > 1 || /^\\w/.test(match[3]) ) {\n\t\t\t\t\tmatch[3] = Sizzle(match[3], null, null, curLoop);\n\n\t\t\t\t} else {\n\t\t\t\t\tvar ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not);\n\n\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\tresult.push.apply( result, ret );\n\t\t\t\t\t}\n\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t} else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\t\n\t\t\treturn match;\n\t\t},\n\n\t\tPOS: function( match ) {\n\t\t\tmatch.unshift( true );\n\n\t\t\treturn match;\n\t\t}\n\t},\n\t\n\tfilters: {\n\t\tenabled: function( elem ) {\n\t\t\treturn elem.disabled === false && elem.type !== \"hidden\";\n\t\t},\n\n\t\tdisabled: function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\tchecked: function( elem ) {\n\t\t\treturn elem.checked === true;\n\t\t},\n\t\t\n\t\tselected: function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\t\t\t\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\tparent: function( elem ) {\n\t\t\treturn !!elem.firstChild;\n\t\t},\n\n\t\tempty: function( elem ) {\n\t\t\treturn !elem.firstChild;\n\t\t},\n\n\t\thas: function( elem, i, match ) {\n\t\t\treturn !!Sizzle( match[3], elem ).length;\n\t\t},\n\n\t\theader: function( elem ) {\n\t\t\treturn (/h\\d/i).test( elem.nodeName );\n\t\t},\n\n\t\ttext: function( elem ) {\n\t\t\tvar attr = elem.getAttribute( \"type\" ), type = elem.type;\n\t\t\t// IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) \n\t\t\t// use getAttribute instead to test this case\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"text\" === type && ( attr === type || attr === null );\n\t\t},\n\n\t\tradio: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"radio\" === elem.type;\n\t\t},\n\n\t\tcheckbox: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"checkbox\" === elem.type;\n\t\t},\n\n\t\tfile: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"file\" === elem.type;\n\t\t},\n\n\t\tpassword: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"password\" === elem.type;\n\t\t},\n\n\t\tsubmit: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn (name === \"input\" || name === \"button\") && \"submit\" === elem.type;\n\t\t},\n\n\t\timage: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"image\" === elem.type;\n\t\t},\n\n\t\treset: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn (name === \"input\" || name === \"button\") && \"reset\" === elem.type;\n\t\t},\n\n\t\tbutton: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && \"button\" === elem.type || name === \"button\";\n\t\t},\n\n\t\tinput: function( elem ) {\n\t\t\treturn (/input|select|textarea|button/i).test( elem.nodeName );\n\t\t},\n\n\t\tfocus: function( elem ) {\n\t\t\treturn elem === elem.ownerDocument.activeElement;\n\t\t}\n\t},\n\tsetFilters: {\n\t\tfirst: function( elem, i ) {\n\t\t\treturn i === 0;\n\t\t},\n\n\t\tlast: function( elem, i, match, array ) {\n\t\t\treturn i === array.length - 1;\n\t\t},\n\n\t\teven: function( elem, i ) {\n\t\t\treturn i % 2 === 0;\n\t\t},\n\n\t\todd: function( elem, i ) {\n\t\t\treturn i % 2 === 1;\n\t\t},\n\n\t\tlt: function( elem, i, match ) {\n\t\t\treturn i < match[3] - 0;\n\t\t},\n\n\t\tgt: function( elem, i, match ) {\n\t\t\treturn i > match[3] - 0;\n\t\t},\n\n\t\tnth: function( elem, i, match ) {\n\t\t\treturn match[3] - 0 === i;\n\t\t},\n\n\t\teq: function( elem, i, match ) {\n\t\t\treturn match[3] - 0 === i;\n\t\t}\n\t},\n\tfilter: {\n\t\tPSEUDO: function( elem, match, i, array ) {\n\t\t\tvar name = match[1],\n\t\t\t\tfilter = Expr.filters[ name ];\n\n\t\t\tif ( filter ) {\n\t\t\t\treturn filter( elem, i, match, array );\n\n\t\t\t} else if ( name === \"contains\" ) {\n\t\t\t\treturn (elem.textContent || elem.innerText || getText([ elem ]) || \"\").indexOf(match[3]) >= 0;\n\n\t\t\t} else if ( name === \"not\" ) {\n\t\t\t\tvar not = match[3];\n\n\t\t\t\tfor ( var j = 0, l = not.length; j < l; j++ ) {\n\t\t\t\t\tif ( not[j] === elem ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn true;\n\n\t\t\t} else {\n\t\t\t\tSizzle.error( name );\n\t\t\t}\n\t\t},\n\n\t\tCHILD: function( elem, match ) {\n\t\t\tvar first, last,\n\t\t\t\tdoneName, parent, cache,\n\t\t\t\tcount, diff,\n\t\t\t\ttype = match[1],\n\t\t\t\tnode = elem;\n\n\t\t\tswitch ( type ) {\n\t\t\t\tcase \"only\":\n\t\t\t\tcase \"first\":\n\t\t\t\t\twhile ( (node = node.previousSibling) )\t {\n\t\t\t\t\t\tif ( node.nodeType === 1 ) { \n\t\t\t\t\t\t\treturn false; \n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( type === \"first\" ) { \n\t\t\t\t\t\treturn true; \n\t\t\t\t\t}\n\n\t\t\t\t\tnode = elem;\n\n\t\t\t\tcase \"last\":\n\t\t\t\t\twhile ( (node = node.nextSibling) )\t {\n\t\t\t\t\t\tif ( node.nodeType === 1 ) { \n\t\t\t\t\t\t\treturn false; \n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn true;\n\n\t\t\t\tcase \"nth\":\n\t\t\t\t\tfirst = match[2];\n\t\t\t\t\tlast = match[3];\n\n\t\t\t\t\tif ( first === 1 && last === 0 ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tdoneName = match[0];\n\t\t\t\t\tparent = elem.parentNode;\n\t\n\t\t\t\t\tif ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) {\n\t\t\t\t\t\tcount = 0;\n\t\t\t\t\t\t\n\t\t\t\t\t\tfor ( node = parent.firstChild; node; node = node.nextSibling ) {\n\t\t\t\t\t\t\tif ( node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\tnode.nodeIndex = ++count;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} \n\n\t\t\t\t\t\tparent[ expando ] = doneName;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tdiff = elem.nodeIndex - last;\n\n\t\t\t\t\tif ( first === 0 ) {\n\t\t\t\t\t\treturn diff === 0;\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tID: function( elem, match ) {\n\t\t\treturn elem.nodeType === 1 && elem.getAttribute(\"id\") === match;\n\t\t},\n\n\t\tTAG: function( elem, match ) {\n\t\t\treturn (match === \"*\" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match;\n\t\t},\n\t\t\n\t\tCLASS: function( elem, match ) {\n\t\t\treturn (\" \" + (elem.className || elem.getAttribute(\"class\")) + \" \")\n\t\t\t\t.indexOf( match ) > -1;\n\t\t},\n\n\t\tATTR: function( elem, match ) {\n\t\t\tvar name = match[1],\n\t\t\t\tresult = Sizzle.attr ?\n\t\t\t\t\tSizzle.attr( elem, name ) :\n\t\t\t\t\tExpr.attrHandle[ name ] ?\n\t\t\t\t\tExpr.attrHandle[ name ]( elem ) :\n\t\t\t\t\telem[ name ] != null ?\n\t\t\t\t\t\telem[ name ] :\n\t\t\t\t\t\telem.getAttribute( name ),\n\t\t\t\tvalue = result + \"\",\n\t\t\t\ttype = match[2],\n\t\t\t\tcheck = match[4];\n\n\t\t\treturn result == null ?\n\t\t\t\ttype === \"!=\" :\n\t\t\t\t!type && Sizzle.attr ?\n\t\t\t\tresult != null :\n\t\t\t\ttype === \"=\" ?\n\t\t\t\tvalue === check :\n\t\t\t\ttype === \"*=\" ?\n\t\t\t\tvalue.indexOf(check) >= 0 :\n\t\t\t\ttype === \"~=\" ?\n\t\t\t\t(\" \" + value + \" \").indexOf(check) >= 0 :\n\t\t\t\t!check ?\n\t\t\t\tvalue && result !== false :\n\t\t\t\ttype === \"!=\" ?\n\t\t\t\tvalue !== check :\n\t\t\t\ttype === \"^=\" ?\n\t\t\t\tvalue.indexOf(check) === 0 :\n\t\t\t\ttype === \"$=\" ?\n\t\t\t\tvalue.substr(value.length - check.length) === check :\n\t\t\t\ttype === \"|=\" ?\n\t\t\t\tvalue === check || value.substr(0, check.length + 1) === check + \"-\" :\n\t\t\t\tfalse;\n\t\t},\n\n\t\tPOS: function( elem, match, i, array ) {\n\t\t\tvar name = match[2],\n\t\t\t\tfilter = Expr.setFilters[ name ];\n\n\t\t\tif ( filter ) {\n\t\t\t\treturn filter( elem, i, match, array );\n\t\t\t}\n\t\t}\n\t}\n};\n\nvar origPOS = Expr.match.POS,\n\tfescape = function(all, num){\n\t\treturn \"\\\\\" + (num - 0 + 1);\n\t};\n\nfor ( var type in Expr.match ) {\n\tExpr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\\[]*\\])(?![^\\(]*\\))/.source) );\n\tExpr.leftMatch[ type ] = new RegExp( /(^(?:.|\\r|\\n)*?)/.source + Expr.match[ type ].source.replace(/\\\\(\\d+)/g, fescape) );\n}\n\nvar makeArray = function( array, results ) {\n\tarray = Array.prototype.slice.call( array, 0 );\n\n\tif ( results ) {\n\t\tresults.push.apply( results, array );\n\t\treturn results;\n\t}\n\t\n\treturn array;\n};\n\n// Perform a simple check to determine if the browser is capable of\n// converting a NodeList to an array using builtin methods.\n// Also verifies that the returned array holds DOM nodes\n// (which is not the case in the Blackberry browser)\ntry {\n\tArray.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType;\n\n// Provide a fallback method if it does not work\n} catch( e ) {\n\tmakeArray = function( array, results ) {\n\t\tvar i = 0,\n\t\t\tret = results || [];\n\n\t\tif ( toString.call(array) === \"[object Array]\" ) {\n\t\t\tArray.prototype.push.apply( ret, array );\n\n\t\t} else {\n\t\t\tif ( typeof array.length === \"number\" ) {\n\t\t\t\tfor ( var l = array.length; i < l; i++ ) {\n\t\t\t\t\tret.push( array[i] );\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\tfor ( ; array[i]; i++ ) {\n\t\t\t\t\tret.push( array[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n}\n\nvar sortOrder, siblingCheck;\n\nif ( document.documentElement.compareDocumentPosition ) {\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tif ( !a.compareDocumentPosition || !b.compareDocumentPosition ) {\n\t\t\treturn a.compareDocumentPosition ? -1 : 1;\n\t\t}\n\n\t\treturn a.compareDocumentPosition(b) & 4 ? -1 : 1;\n\t};\n\n} else {\n\tsortOrder = function( a, b ) {\n\t\t// The nodes are identical, we can exit early\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\n\t\t// Fallback to using sourceIndex (in IE) if it's available on both nodes\n\t\t} else if ( a.sourceIndex && b.sourceIndex ) {\n\t\t\treturn a.sourceIndex - b.sourceIndex;\n\t\t}\n\n\t\tvar al, bl,\n\t\t\tap = [],\n\t\t\tbp = [],\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tcur = aup;\n\n\t\t// If the nodes are siblings (or identical) we can do a quick check\n\t\tif ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\n\t\t// If no parents were found then the nodes are disconnected\n\t\t} else if ( !aup ) {\n\t\t\treturn -1;\n\n\t\t} else if ( !bup ) {\n\t\t\treturn 1;\n\t\t}\n\n\t\t// Otherwise they're somewhere else in the tree so we need\n\t\t// to build up a full list of the parentNodes for comparison\n\t\twhile ( cur ) {\n\t\t\tap.unshift( cur );\n\t\t\tcur = cur.parentNode;\n\t\t}\n\n\t\tcur = bup;\n\n\t\twhile ( cur ) {\n\t\t\tbp.unshift( cur );\n\t\t\tcur = cur.parentNode;\n\t\t}\n\n\t\tal = ap.length;\n\t\tbl = bp.length;\n\n\t\t// Start walking down the tree looking for a discrepancy\n\t\tfor ( var i = 0; i < al && i < bl; i++ ) {\n\t\t\tif ( ap[i] !== bp[i] ) {\n\t\t\t\treturn siblingCheck( ap[i], bp[i] );\n\t\t\t}\n\t\t}\n\n\t\t// We ended someplace up the tree so do a sibling check\n\t\treturn i === al ?\n\t\t\tsiblingCheck( a, bp[i], -1 ) :\n\t\t\tsiblingCheck( ap[i], b, 1 );\n\t};\n\n\tsiblingCheck = function( a, b, ret ) {\n\t\tif ( a === b ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tvar cur = a.nextSibling;\n\n\t\twhile ( cur ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\tcur = cur.nextSibling;\n\t\t}\n\n\t\treturn 1;\n\t};\n}\n\n// Check to see if the browser returns elements by name when\n// querying by getElementById (and provide a workaround)\n(function(){\n\t// We're going to inject a fake input element with a specified name\n\tvar form = document.createElement(\"div\"),\n\t\tid = \"script\" + (new Date()).getTime(),\n\t\troot = document.documentElement;\n\n\tform.innerHTML = \"<a name='\" + id + \"'/>\";\n\n\t// Inject it into the root element, check its status, and remove it quickly\n\troot.insertBefore( form, root.firstChild );\n\n\t// The workaround has to do additional checks after a getElementById\n\t// Which slows things down for other browsers (hence the branching)\n\tif ( document.getElementById( id ) ) {\n\t\tExpr.find.ID = function( match, context, isXML ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && !isXML ) {\n\t\t\t\tvar m = context.getElementById(match[1]);\n\n\t\t\t\treturn m ?\n\t\t\t\t\tm.id === match[1] || typeof m.getAttributeNode !== \"undefined\" && m.getAttributeNode(\"id\").nodeValue === match[1] ?\n\t\t\t\t\t\t[m] :\n\t\t\t\t\t\tundefined :\n\t\t\t\t\t[];\n\t\t\t}\n\t\t};\n\n\t\tExpr.filter.ID = function( elem, match ) {\n\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\n\t\t\treturn elem.nodeType === 1 && node && node.nodeValue === match;\n\t\t};\n\t}\n\n\troot.removeChild( form );\n\n\t// release memory in IE\n\troot = form = null;\n})();\n\n(function(){\n\t// Check to see if the browser returns only elements\n\t// when doing getElementsByTagName(\"*\")\n\n\t// Create a fake element\n\tvar div = document.createElement(\"div\");\n\tdiv.appendChild( document.createComment(\"\") );\n\n\t// Make sure no comments are found\n\tif ( div.getElementsByTagName(\"*\").length > 0 ) {\n\t\tExpr.find.TAG = function( match, context ) {\n\t\t\tvar results = context.getElementsByTagName( match[1] );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( match[1] === \"*\" ) {\n\t\t\t\tvar tmp = [];\n\n\t\t\t\tfor ( var i = 0; results[i]; i++ ) {\n\t\t\t\t\tif ( results[i].nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( results[i] );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tresults = tmp;\n\t\t\t}\n\n\t\t\treturn results;\n\t\t};\n\t}\n\n\t// Check to see if an attribute returns normalized href attributes\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\n\tif ( div.firstChild && typeof div.firstChild.getAttribute !== \"undefined\" &&\n\t\t\tdiv.firstChild.getAttribute(\"href\") !== \"#\" ) {\n\n\t\tExpr.attrHandle.href = function( elem ) {\n\t\t\treturn elem.getAttribute( \"href\", 2 );\n\t\t};\n\t}\n\n\t// release memory in IE\n\tdiv = null;\n})();\n\nif ( document.querySelectorAll ) {\n\t(function(){\n\t\tvar oldSizzle = Sizzle,\n\t\t\tdiv = document.createElement(\"div\"),\n\t\t\tid = \"__sizzle__\";\n\n\t\tdiv.innerHTML = \"<p class='TEST'></p>\";\n\n\t\t// Safari can't handle uppercase or unicode characters when\n\t\t// in quirks mode.\n\t\tif ( div.querySelectorAll && div.querySelectorAll(\".TEST\").length === 0 ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tSizzle = function( query, context, extra, seed ) {\n\t\t\tcontext = context || document;\n\n\t\t\t// Only use querySelectorAll on non-XML documents\n\t\t\t// (ID selectors don't work in non-HTML documents)\n\t\t\tif ( !seed && !Sizzle.isXML(context) ) {\n\t\t\t\t// See if we find a selector to speed up\n\t\t\t\tvar match = /^(\\w+$)|^\\.([\\w\\-]+$)|^#([\\w\\-]+$)/.exec( query );\n\t\t\t\t\n\t\t\t\tif ( match && (context.nodeType === 1 || context.nodeType === 9) ) {\n\t\t\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t\t\tif ( match[1] ) {\n\t\t\t\t\t\treturn makeArray( context.getElementsByTagName( query ), extra );\n\t\t\t\t\t\n\t\t\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t\t\t} else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) {\n\t\t\t\t\t\treturn makeArray( context.getElementsByClassName( match[2] ), extra );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( context.nodeType === 9 ) {\n\t\t\t\t\t// Speed-up: Sizzle(\"body\")\n\t\t\t\t\t// The body element only exists once, optimize finding it\n\t\t\t\t\tif ( query === \"body\" && context.body ) {\n\t\t\t\t\t\treturn makeArray( [ context.body ], extra );\n\t\t\t\t\t\t\n\t\t\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\t\t\t} else if ( match && match[3] ) {\n\t\t\t\t\t\tvar elem = context.getElementById( match[3] );\n\n\t\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === match[3] ) {\n\t\t\t\t\t\t\t\treturn makeArray( [ elem ], extra );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn makeArray( [], extra );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\ttry {\n\t\t\t\t\t\treturn makeArray( context.querySelectorAll(query), extra );\n\t\t\t\t\t} catch(qsaError) {}\n\n\t\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t\t// IE 8 doesn't work on object elements\n\t\t\t\t} else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\t\tvar oldContext = context,\n\t\t\t\t\t\told = context.getAttribute( \"id\" ),\n\t\t\t\t\t\tnid = old || id,\n\t\t\t\t\t\thasParent = context.parentNode,\n\t\t\t\t\t\trelativeHierarchySelector = /^\\s*[+~]/.test( query );\n\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnid = nid.replace( /'/g, \"\\\\$&\" );\n\t\t\t\t\t}\n\t\t\t\t\tif ( relativeHierarchySelector && hasParent ) {\n\t\t\t\t\t\tcontext = context.parentNode;\n\t\t\t\t\t}\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tif ( !relativeHierarchySelector || hasParent ) {\n\t\t\t\t\t\t\treturn makeArray( context.querySelectorAll( \"[id='\" + nid + \"'] \" + query ), extra );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} catch(pseudoError) {\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\t\toldContext.removeAttribute( \"id\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\n\t\t\treturn oldSizzle(query, context, extra, seed);\n\t\t};\n\n\t\tfor ( var prop in oldSizzle ) {\n\t\t\tSizzle[ prop ] = oldSizzle[ prop ];\n\t\t}\n\n\t\t// release memory in IE\n\t\tdiv = null;\n\t})();\n}\n\n(function(){\n\tvar html = document.documentElement,\n\t\tmatches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector;\n\n\tif ( matches ) {\n\t\t// Check to see if it's possible to do matchesSelector\n\t\t// on a disconnected node (IE 9 fails this)\n\t\tvar disconnectedMatch = !matches.call( document.createElement( \"div\" ), \"div\" ),\n\t\t\tpseudoWorks = false;\n\n\t\ttry {\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( document.documentElement, \"[test!='']:sizzle\" );\n\t\n\t\t} catch( pseudoError ) {\n\t\t\tpseudoWorks = true;\n\t\t}\n\n\t\tSizzle.matchesSelector = function( node, expr ) {\n\t\t\t// Make sure that attribute selectors are quoted\n\t\t\texpr = expr.replace(/\\=\\s*([^'\"\\]]*)\\s*\\]/g, \"='$1']\");\n\n\t\t\tif ( !Sizzle.isXML( node ) ) {\n\t\t\t\ttry { \n\t\t\t\t\tif ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) {\n\t\t\t\t\t\tvar ret = matches.call( node, expr );\n\n\t\t\t\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\t\t\t\tif ( ret || !disconnectedMatch ||\n\t\t\t\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t\t\t\t// fragment in IE 9, so check for that\n\t\t\t\t\t\t\t\tnode.document && node.document.nodeType !== 11 ) {\n\t\t\t\t\t\t\treturn ret;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\treturn Sizzle(expr, null, null, [node]).length > 0;\n\t\t};\n\t}\n})();\n\n(function(){\n\tvar div = document.createElement(\"div\");\n\n\tdiv.innerHTML = \"<div class='test e'></div><div class='test'></div>\";\n\n\t// Opera can't find a second classname (in 9.6)\n\t// Also, make sure that getElementsByClassName actually exists\n\tif ( !div.getElementsByClassName || div.getElementsByClassName(\"e\").length === 0 ) {\n\t\treturn;\n\t}\n\n\t// Safari caches class attributes, doesn't catch changes (in 3.2)\n\tdiv.lastChild.className = \"e\";\n\n\tif ( div.getElementsByClassName(\"e\").length === 1 ) {\n\t\treturn;\n\t}\n\t\n\tExpr.order.splice(1, 0, \"CLASS\");\n\tExpr.find.CLASS = function( match, context, isXML ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && !isXML ) {\n\t\t\treturn context.getElementsByClassName(match[1]);\n\t\t}\n\t};\n\n\t// release memory in IE\n\tdiv = null;\n})();\n\nfunction dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {\n\tfor ( var i = 0, l = checkSet.length; i < l; i++ ) {\n\t\tvar elem = checkSet[i];\n\n\t\tif ( elem ) {\n\t\t\tvar match = false;\n\n\t\t\telem = elem[dir];\n\n\t\t\twhile ( elem ) {\n\t\t\t\tif ( elem[ expando ] === doneName ) {\n\t\t\t\t\tmatch = checkSet[elem.sizset];\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeType === 1 && !isXML ){\n\t\t\t\t\telem[ expando ] = doneName;\n\t\t\t\t\telem.sizset = i;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeName.toLowerCase() === cur ) {\n\t\t\t\t\tmatch = elem;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\telem = elem[dir];\n\t\t\t}\n\n\t\t\tcheckSet[i] = match;\n\t\t}\n\t}\n}\n\nfunction dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {\n\tfor ( var i = 0, l = checkSet.length; i < l; i++ ) {\n\t\tvar elem = checkSet[i];\n\n\t\tif ( elem ) {\n\t\t\tvar match = false;\n\t\t\t\n\t\t\telem = elem[dir];\n\n\t\t\twhile ( elem ) {\n\t\t\t\tif ( elem[ expando ] === doneName ) {\n\t\t\t\t\tmatch = checkSet[elem.sizset];\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\tif ( !isXML ) {\n\t\t\t\t\t\telem[ expando ] = doneName;\n\t\t\t\t\t\telem.sizset = i;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( typeof cur !== \"string\" ) {\n\t\t\t\t\t\tif ( elem === cur ) {\n\t\t\t\t\t\t\tmatch = true;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if ( Sizzle.filter( cur, [elem] ).length > 0 ) {\n\t\t\t\t\t\tmatch = elem;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\telem = elem[dir];\n\t\t\t}\n\n\t\t\tcheckSet[i] = match;\n\t\t}\n\t}\n}\n\nif ( document.documentElement.contains ) {\n\tSizzle.contains = function( a, b ) {\n\t\treturn a !== b && (a.contains ? a.contains(b) : true);\n\t};\n\n} else if ( document.documentElement.compareDocumentPosition ) {\n\tSizzle.contains = function( a, b ) {\n\t\treturn !!(a.compareDocumentPosition(b) & 16);\n\t};\n\n} else {\n\tSizzle.contains = function() {\n\t\treturn false;\n\t};\n}\n\nSizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833) \n\tvar documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;\n\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\nvar posProcess = function( selector, context, seed ) {\n\tvar match,\n\t\ttmpSet = [],\n\t\tlater = \"\",\n\t\troot = context.nodeType ? [context] : context;\n\n\t// Position selectors must be done after the filter\n\t// And so must :not(positional) so we move all PSEUDOs to the end\n\twhile ( (match = Expr.match.PSEUDO.exec( selector )) ) {\n\t\tlater += match[0];\n\t\tselector = selector.replace( Expr.match.PSEUDO, \"\" );\n\t}\n\n\tselector = Expr.relative[selector] ? selector + \"*\" : selector;\n\n\tfor ( var i = 0, l = root.length; i < l; i++ ) {\n\t\tSizzle( selector, root[i], tmpSet, seed );\n\t}\n\n\treturn Sizzle.filter( later, tmpSet );\n};\n\n// EXPOSE\n// Override sizzle attribute retrieval\nSizzle.attr = jQuery.attr;\nSizzle.selectors.attrMap = {};\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.filters;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n})();\n\n\nvar runtil = /Until$/,\n\trparentsprev = /^(?:parents|prevUntil|prevAll)/,\n\t// Note: This RegExp should be improved, or likely pulled from Sizzle\n\trmultiselector = /,/,\n\tisSimple = /^.[^:#\\[\\.,]*$/,\n\tslice = Array.prototype.slice,\n\tPOS = jQuery.expr.match.POS,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar self = this,\n\t\t\ti, l;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0, l = self.length; i < l; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tvar ret = this.pushStack( \"\", \"find\", selector ),\n\t\t\tlength, n, r;\n\n\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\tlength = ret.length;\n\t\t\tjQuery.find( selector, this[i], ret );\n\n\t\t\tif ( i > 0 ) {\n\t\t\t\t// Make sure that the results are unique\n\t\t\t\tfor ( n = length; n < ret.length; n++ ) {\n\t\t\t\t\tfor ( r = 0; r < length; r++ ) {\n\t\t\t\t\t\tif ( ret[r] === ret[n] ) {\n\t\t\t\t\t\t\tret.splice(n--, 1);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\thas: function( target ) {\n\t\tvar targets = jQuery( target );\n\t\treturn this.filter(function() {\n\t\t\tfor ( var i = 0, l = targets.length; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector, false), \"not\", selector);\n\t},\n\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector, true), \"filter\", selector );\n\t},\n\n\tis: function( selector ) {\n\t\treturn !!selector && ( \n\t\t\ttypeof selector === \"string\" ?\n\t\t\t\t// If this is a positional selector, check membership in the returned set\n\t\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\t\tPOS.test( selector ) ? \n\t\t\t\t\tjQuery( selector, this.context ).index( this[0] ) >= 0 :\n\t\t\t\t\tjQuery.filter( selector, this ).length > 0 :\n\t\t\t\tthis.filter( selector ).length > 0 );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar ret = [], i, l, cur = this[0];\n\t\t\n\t\t// Array (deprecated as of jQuery 1.7)\n\t\tif ( jQuery.isArray( selectors ) ) {\n\t\t\tvar level = 1;\n\n\t\t\twhile ( cur && cur.ownerDocument && cur !== context ) {\n\t\t\t\tfor ( i = 0; i < selectors.length; i++ ) {\n\n\t\t\t\t\tif ( jQuery( cur ).is( selectors[ i ] ) ) {\n\t\t\t\t\t\tret.push({ selector: selectors[ i ], elem: cur, level: level });\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcur = cur.parentNode;\n\t\t\t\tlevel++;\n\t\t\t}\n\n\t\t\treturn ret;\n\t\t}\n\n\t\t// String\n\t\tvar pos = POS.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\tcur = this[i];\n\n\t\t\twhile ( cur ) {\n\t\t\t\tif ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) {\n\t\t\t\t\tret.push( cur );\n\t\t\t\t\tbreak;\n\n\t\t\t\t} else {\n\t\t\t\t\tcur = cur.parentNode;\n\t\t\t\t\tif ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tret = ret.length > 1 ? jQuery.unique( ret ) : ret;\n\n\t\treturn this.pushStack( ret, \"closest\", selectors );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\tvar set = typeof selector === \"string\" ?\n\t\t\t\tjQuery( selector, context ) :\n\t\t\t\tjQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),\n\t\t\tall = jQuery.merge( this.get(), set );\n\n\t\treturn this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?\n\t\t\tall :\n\t\t\tjQuery.unique( all ) );\n\t},\n\n\tandSelf: function() {\n\t\treturn this.add( this.prevObject );\n\t}\n});\n\n// A painfully simple check to see if an element is disconnected\n// from a document (should be improved, where feasible).\nfunction isDisconnected( node ) {\n\treturn !node || !node.parentNode || node.parentNode.nodeType === 11;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn jQuery.nth( elem, 2, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn jQuery.nth( elem, 2, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( elem.parentNode.firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.makeArray( elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( !runtil.test( name ) ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret;\n\n\t\tif ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) {\n\t\t\tret = ret.reverse();\n\t\t}\n\n\t\treturn this.pushStack( ret, name, slice.call( arguments ).join(\",\") );\n\t};\n});\n\njQuery.extend({\n\tfilter: function( expr, elems, not ) {\n\t\tif ( not ) {\n\t\t\texpr = \":not(\" + expr + \")\";\n\t\t}\n\n\t\treturn elems.length === 1 ?\n\t\t\tjQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] :\n\t\t\tjQuery.find.matches(expr, elems);\n\t},\n\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tnth: function( cur, result, dir, elem ) {\n\t\tresult = result || 1;\n\t\tvar num = 0;\n\n\t\tfor ( ; cur; cur = cur[dir] ) {\n\t\t\tif ( cur.nodeType === 1 && ++num === result ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\treturn cur;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, keep ) {\n\n\t// Can't pass null or undefined to indexOf in Firefox 4\n\t// Set to 0 to skip string check\n\tqualifier = qualifier || 0;\n\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep(elements, function( elem, i ) {\n\t\t\tvar retVal = !!qualifier.call( elem, i, elem );\n\t\t\treturn retVal === keep;\n\t\t});\n\n\t} else if ( qualifier.nodeType ) {\n\t\treturn jQuery.grep(elements, function( elem, i ) {\n\t\t\treturn ( elem === qualifier ) === keep;\n\t\t});\n\n\t} else if ( typeof qualifier === \"string\" ) {\n\t\tvar filtered = jQuery.grep(elements, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t});\n\n\t\tif ( isSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter(qualifier, filtered, !keep);\n\t\t} else {\n\t\t\tqualifier = jQuery.filter( qualifier, filtered );\n\t\t}\n\t}\n\n\treturn jQuery.grep(elements, function( elem, i ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;\n\t});\n}\n\n\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:\\d+|null)\"/g,\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/ig,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style)/i,\n\trnocache = /<(?:script|object|embed|option|style)/i,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")\", \"i\"),\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /\\/(java|ecma)script/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|\\-\\-)/,\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\t_default: [ 0, \"\", \"\" ]\n\t},\n\tsafeFragment = createSafeFragment( document );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// IE can't serialize <link> and <script> tags normally\nif ( !jQuery.support.htmlSerialize ) {\n\twrapMap._default = [ 1, \"div<div>\", \"</div>\" ];\n}\n\njQuery.fn.extend({\n\ttext: function( text ) {\n\t\tif ( jQuery.isFunction(text) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tvar self = jQuery( this );\n\n\t\t\t\tself.text( text.call(this, i, self.text()) );\n\t\t\t});\n\t\t}\n\n\t\tif ( typeof text !== \"object\" && text !== undefined ) {\n\t\t\treturn this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );\n\t\t}\n\n\t\treturn jQuery.text( this );\n\t},\n\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip(arguments, true, function( elem ) {\n\t\t\tif ( this.nodeType === 1 ) {\n\t\t\t\tthis.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip(arguments, true, function( elem ) {\n\t\t\tif ( this.nodeType === 1 ) {\n\t\t\t\tthis.insertBefore( elem, this.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\treturn this.domManip(arguments, false, function( elem ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t});\n\t\t} else if ( arguments.length ) {\n\t\t\tvar set = jQuery.clean( arguments );\n\t\t\tset.push.apply( set, this.toArray() );\n\t\t\treturn this.pushStack( set, \"before\", arguments );\n\t\t}\n\t},\n\n\tafter: function() {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\treturn this.domManip(arguments, false, function( elem ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t});\n\t\t} else if ( arguments.length ) {\n\t\t\tvar set = this.pushStack( this, \"after\", arguments );\n\t\t\tset.push.apply( set, jQuery.clean(arguments) );\n\t\t\treturn set;\n\t\t}\n\t},\n\n\t// keepData is for internal use only--do not document\n\tremove: function( selector, keepData ) {\n\t\tfor ( var i = 0, elem; (elem = this[i]) != null; i++ ) {\n\t\t\tif ( !selector || jQuery.filter( selector, [ elem ] ).length ) {\n\t\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\t\tjQuery.cleanData( elem.getElementsByTagName(\"*\") );\n\t\t\t\t\tjQuery.cleanData( [ elem ] );\n\t\t\t\t}\n\n\t\t\t\tif ( elem.parentNode ) {\n\t\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tfor ( var i = 0, elem; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( elem.getElementsByTagName(\"*\") );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function () {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\tif ( value === undefined ) {\n\t\t\treturn this[0] && this[0].nodeType === 1 ?\n\t\t\t\tthis[0].innerHTML.replace(rinlinejQuery, \"\") :\n\t\t\t\tnull;\n\n\t\t// See if we can take a shortcut and just use innerHTML\n\t\t} else if ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t(jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&\n\t\t\t!wrapMap[ (rtagName.exec( value ) || [\"\", \"\"])[1].toLowerCase() ] ) {\n\n\t\t\tvalue = value.replace(rxhtmlTag, \"<$1></$2>\");\n\n\t\t\ttry {\n\t\t\t\tfor ( var i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\tif ( this[i].nodeType === 1 ) {\n\t\t\t\t\t\tjQuery.cleanData( this[i].getElementsByTagName(\"*\") );\n\t\t\t\t\t\tthis[i].innerHTML = value;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t} catch(e) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\n\t\t} else if ( jQuery.isFunction( value ) ) {\n\t\t\tthis.each(function(i){\n\t\t\t\tvar self = jQuery( this );\n\n\t\t\t\tself.html( value.call(this, i, self.html()) );\n\t\t\t});\n\n\t\t} else {\n\t\t\tthis.empty().append( value );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\treplaceWith: function( value ) {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\t// Make sure that the elements are removed from the DOM before they are inserted\n\t\t\t// this can help fix replacing a parent with child elements\n\t\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\t\treturn this.each(function(i) {\n\t\t\t\t\tvar self = jQuery(this), old = self.html();\n\t\t\t\t\tself.replaceWith( value.call( this, i, old ) );\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif ( typeof value !== \"string\" ) {\n\t\t\t\tvalue = jQuery( value ).detach();\n\t\t\t}\n\n\t\t\treturn this.each(function() {\n\t\t\t\tvar next = this.nextSibling,\n\t\t\t\t\tparent = this.parentNode;\n\n\t\t\t\tjQuery( this ).remove();\n\n\t\t\t\tif ( next ) {\n\t\t\t\t\tjQuery(next).before( value );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery(parent).append( value );\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\treturn this.length ?\n\t\t\t\tthis.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), \"replaceWith\", value ) :\n\t\t\t\tthis;\n\t\t}\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, table, callback ) {\n\t\tvar results, first, fragment, parent,\n\t\t\tvalue = args[0],\n\t\t\tscripts = [];\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === \"string\" && rchecked.test( value ) ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery(this).domManip( args, table, callback, true );\n\t\t\t});\n\t\t}\n\n\t\tif ( jQuery.isFunction(value) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tvar self = jQuery(this);\n\t\t\t\targs[0] = value.call(this, i, table ? self.html() : undefined);\n\t\t\t\tself.domManip( args, table, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\tparent = value && value.parentNode;\n\n\t\t\t// If we're in a fragment, just use that instead of building a new one\n\t\t\tif ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) {\n\t\t\t\tresults = { fragment: parent };\n\n\t\t\t} else {\n\t\t\t\tresults = jQuery.buildFragment( args, this, scripts );\n\t\t\t}\n\n\t\t\tfragment = results.fragment;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfirst = fragment = fragment.firstChild;\n\t\t\t} else {\n\t\t\t\tfirst = fragment.firstChild;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\ttable = table && jQuery.nodeName( first, \"tr\" );\n\n\t\t\t\tfor ( var i = 0, l = this.length, lastIndex = l - 1; i < l; i++ ) {\n\t\t\t\t\tcallback.call(\n\t\t\t\t\t\ttable ?\n\t\t\t\t\t\t\troot(this[i], first) :\n\t\t\t\t\t\t\tthis[i],\n\t\t\t\t\t\t// Make sure that we do not leak memory by inadvertently discarding\n\t\t\t\t\t\t// the original fragment (which might have attached data) instead of\n\t\t\t\t\t\t// using it; in addition, use the original fragment object for the last\n\t\t\t\t\t\t// item instead of first because it can end up being emptied incorrectly\n\t\t\t\t\t\t// in certain situations (Bug #8070).\n\t\t\t\t\t\t// Fragments from the fragment cache must always be cloned and never used\n\t\t\t\t\t\t// in place.\n\t\t\t\t\t\tresults.cacheable || ( l > 1 && i < lastIndex ) ?\n\t\t\t\t\t\t\tjQuery.clone( fragment, true, true ) :\n\t\t\t\t\t\t\tfragment\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( scripts.length ) {\n\t\t\t\tjQuery.each( scripts, evalScript );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\nfunction root( elem, cur ) {\n\treturn jQuery.nodeName(elem, \"table\") ?\n\t\t(elem.getElementsByTagName(\"tbody\")[0] ||\n\t\telem.appendChild(elem.ownerDocument.createElement(\"tbody\"))) :\n\t\telem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type + ( events[ type ][ i ].namespace ? \".\" : \"\" ) + events[ type ][ i ].namespace, events[ type ][ i ], events[ type ][ i ].data );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction cloneFixAttributes( src, dest ) {\n\tvar nodeName;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// clearAttributes removes the attributes, which we don't want,\n\t// but also removes the attachEvent events, which we *do* want\n\tif ( dest.clearAttributes ) {\n\t\tdest.clearAttributes();\n\t}\n\n\t// mergeAttributes, in contrast, only merges back on the\n\t// original attributes, not the events\n\tif ( dest.mergeAttributes ) {\n\t\tdest.mergeAttributes( src );\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 fail to clone children inside object elements that use\n\t// the proprietary classid attribute value (rather than the type\n\t// attribute) to identify the type of content to display\n\tif ( nodeName === \"object\" ) {\n\t\tdest.outerHTML = src.outerHTML;\n\n\t} else if ( nodeName === \"input\" && (src.type === \"checkbox\" || src.type === \"radio\") ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\t\tif ( src.checked ) {\n\t\t\tdest.defaultChecked = dest.checked = src.checked;\n\t\t}\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n\n\t// Event data gets referenced instead of copied if the expando\n\t// gets copied too\n\tdest.removeAttribute( jQuery.expando );\n}\n\njQuery.buildFragment = function( args, nodes, scripts ) {\n\tvar fragment, cacheable, cacheresults, doc,\n\tfirst = args[ 0 ];\n\n\t// nodes may contain either an explicit document object,\n\t// a jQuery collection or context object.\n\t// If nodes[0] contains a valid object to assign to doc\n\tif ( nodes && nodes[0] ) {\n\t\tdoc = nodes[0].ownerDocument || nodes[0];\n\t}\n\n\t// Ensure that an attr object doesn't incorrectly stand in as a document object\n\t// Chrome and Firefox seem to allow this to occur and will throw exception\n\t// Fixes #8950\n\tif ( !doc.createDocumentFragment ) {\n\t\tdoc = document;\n\t}\n\n\t// Only cache \"small\" (1/2 KB) HTML strings that are associated with the main document\n\t// Cloning options loses the selected state, so don't cache them\n\t// IE 6 doesn't like it when you put <object> or <embed> elements in a fragment\n\t// Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache\n\t// Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501\n\tif ( args.length === 1 && typeof first === \"string\" && first.length < 512 && doc === document &&\n\t\tfirst.charAt(0) === \"<\" && !rnocache.test( first ) &&\n\t\t(jQuery.support.checkClone || !rchecked.test( first )) &&\n\t\t(jQuery.support.html5Clone || !rnoshimcache.test( first )) ) {\n\n\t\tcacheable = true;\n\n\t\tcacheresults = jQuery.fragments[ first ];\n\t\tif ( cacheresults && cacheresults !== 1 ) {\n\t\t\tfragment = cacheresults;\n\t\t}\n\t}\n\n\tif ( !fragment ) {\n\t\tfragment = doc.createDocumentFragment();\n\t\tjQuery.clean( args, doc, fragment, scripts );\n\t}\n\n\tif ( cacheable ) {\n\t\tjQuery.fragments[ first ] = cacheresults ? fragment : 1;\n\t}\n\n\treturn { fragment: fragment, cacheable: cacheable };\n};\n\njQuery.fragments = {};\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar ret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tparent = this.length === 1 && this[0].parentNode;\n\n\t\tif ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) {\n\t\t\tinsert[ original ]( this[0] );\n\t\t\treturn this;\n\n\t\t} else {\n\t\t\tfor ( var i = 0, l = insert.length; i < l; i++ ) {\n\t\t\t\tvar elems = ( i > 0 ? this.clone(true) : this ).get();\n\t\t\t\tjQuery( insert[i] )[ original ]( elems );\n\t\t\t\tret = ret.concat( elems );\n\t\t\t}\n\n\t\t\treturn this.pushStack( ret, name, insert.selector );\n\t\t}\n\t};\n});\n\nfunction getAll( elem ) {\n\tif ( typeof elem.getElementsByTagName !== \"undefined\" ) {\n\t\treturn elem.getElementsByTagName( \"*\" );\n\n\t} else if ( typeof elem.querySelectorAll !== \"undefined\" ) {\n\t\treturn elem.querySelectorAll( \"*\" );\n\n\t} else {\n\t\treturn [];\n\t}\n}\n\n// Used in clean, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( elem.type === \"checkbox\" || elem.type === \"radio\" ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n// Finds all inputs and passes them to fixDefaultChecked\nfunction findInputs( elem ) {\n\tvar nodeName = ( elem.nodeName || \"\" ).toLowerCase();\n\tif ( nodeName === \"input\" ) {\n\t\tfixDefaultChecked( elem );\n\t// Skip scripts, get other children\n\t} else if ( nodeName !== \"script\" && typeof elem.getElementsByTagName !== \"undefined\" ) {\n\t\tjQuery.grep( elem.getElementsByTagName(\"input\"), fixDefaultChecked );\n\t}\n}\n\n// Derived From: http://www.iecss.com/shimprove/javascript/shimprove.1-0-1.js\nfunction shimCloneNode( elem ) {\n\tvar div = document.createElement( \"div\" );\n\tsafeFragment.appendChild( div );\n\n\tdiv.innerHTML = elem.outerHTML;\n\treturn div.firstChild;\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar srcElements,\n\t\t\tdestElements,\n\t\t\ti,\n\t\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t\tclone = jQuery.support.html5Clone || !rnoshimcache.test( \"<\" + elem.nodeName ) ?\n\t\t\t\telem.cloneNode( true ) :\n\t\t\t\tshimCloneNode( elem );\n\n\t\tif ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\t\t\t// IE copies events bound via attachEvent when using cloneNode.\n\t\t\t// Calling detachEvent on the clone will also remove the events\n\t\t\t// from the original. In order to get around this, we use some\n\t\t\t// proprietary methods to clear the events. Thanks to MooTools\n\t\t\t// guys for this hotness.\n\n\t\t\tcloneFixAttributes( elem, clone );\n\n\t\t\t// Using Sizzle here is crazy slow, so we use getElementsByTagName instead\n\t\t\tsrcElements = getAll( elem );\n\t\t\tdestElements = getAll( clone );\n\n\t\t\t// Weird iteration because IE will replace the length property\n\t\t\t// with an element if you are cloning the body and one of the\n\t\t\t// elements on the page has a name or id of \"length\"\n\t\t\tfor ( i = 0; srcElements[i]; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tcloneFixAttributes( srcElements[i], destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tcloneCopyEvent( elem, clone );\n\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = getAll( elem );\n\t\t\t\tdestElements = getAll( clone );\n\n\t\t\t\tfor ( i = 0; srcElements[i]; ++i ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[i], destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tsrcElements = destElements = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tclean: function( elems, context, fragment, scripts ) {\n\t\tvar checkScriptType;\n\n\t\tcontext = context || document;\n\n\t\t// !context.createElement fails in IE with an error but returns typeof 'object'\n\t\tif ( typeof context.createElement === \"undefined\" ) {\n\t\t\tcontext = context.ownerDocument || context[0] && context[0].ownerDocument || document;\n\t\t}\n\n\t\tvar ret = [], j;\n\n\t\tfor ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( typeof elem === \"number\" ) {\n\t\t\t\telem += \"\";\n\t\t\t}\n\n\t\t\tif ( !elem ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Convert html string into DOM nodes\n\t\t\tif ( typeof elem === \"string\" ) {\n\t\t\t\tif ( !rhtml.test( elem ) ) {\n\t\t\t\t\telem = context.createTextNode( elem );\n\t\t\t\t} else {\n\t\t\t\t\t// Fix \"XHTML\"-style tags in all browsers\n\t\t\t\t\telem = elem.replace(rxhtmlTag, \"<$1></$2>\");\n\n\t\t\t\t\t// Trim whitespace, otherwise indexOf won't work as expected\n\t\t\t\t\tvar tag = ( rtagName.exec( elem ) || [\"\", \"\"] )[1].toLowerCase(),\n\t\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default,\n\t\t\t\t\t\tdepth = wrap[0],\n\t\t\t\t\t\tdiv = context.createElement(\"div\");\n\n\t\t\t\t\t// Append wrapper element to unknown element safe doc fragment\n\t\t\t\t\tif ( context === document ) {\n\t\t\t\t\t\t// Use the fragment we've already created for this document\n\t\t\t\t\t\tsafeFragment.appendChild( div );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Use a fragment created with the owner document\n\t\t\t\t\t\tcreateSafeFragment( context ).appendChild( div );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Go to html and back, then peel off extra wrappers\n\t\t\t\t\tdiv.innerHTML = wrap[1] + elem + wrap[2];\n\n\t\t\t\t\t// Move to the right depth\n\t\t\t\t\twhile ( depth-- ) {\n\t\t\t\t\t\tdiv = div.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !jQuery.support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\tvar hasBody = rtbody.test(elem),\n\t\t\t\t\t\t\ttbody = tag === \"table\" && !hasBody ?\n\t\t\t\t\t\t\t\tdiv.firstChild && div.firstChild.childNodes :\n\n\t\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\t\twrap[1] === \"<table>\" && !hasBody ?\n\t\t\t\t\t\t\t\t\tdiv.childNodes :\n\t\t\t\t\t\t\t\t\t[];\n\n\t\t\t\t\t\tfor ( j = tbody.length - 1; j >= 0 ; --j ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( tbody[ j ], \"tbody\" ) && !tbody[ j ].childNodes.length ) {\n\t\t\t\t\t\t\t\ttbody[ j ].parentNode.removeChild( tbody[ j ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// IE completely kills leading whitespace when innerHTML is used\n\t\t\t\t\tif ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tdiv.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\telem = div.childNodes;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Resets defaultChecked for any radios and checkboxes\n\t\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\t\tvar len;\n\t\t\tif ( !jQuery.support.appendChecked ) {\n\t\t\t\tif ( elem[0] && typeof (len = elem.length) === \"number\" ) {\n\t\t\t\t\tfor ( j = 0; j < len; j++ ) {\n\t\t\t\t\t\tfindInputs( elem[j] );\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tfindInputs( elem );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( elem.nodeType ) {\n\t\t\t\tret.push( elem );\n\t\t\t} else {\n\t\t\t\tret = jQuery.merge( ret, elem );\n\t\t\t}\n\t\t}\n\n\t\tif ( fragment ) {\n\t\t\tcheckScriptType = function( elem ) {\n\t\t\t\treturn !elem.type || rscriptType.test( elem.type );\n\t\t\t};\n\t\t\tfor ( i = 0; ret[i]; i++ ) {\n\t\t\t\tif ( scripts && jQuery.nodeName( ret[i], \"script\" ) && (!ret[i].type || ret[i].type.toLowerCase() === \"text/javascript\") ) {\n\t\t\t\t\tscripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );\n\n\t\t\t\t} else {\n\t\t\t\t\tif ( ret[i].nodeType === 1 ) {\n\t\t\t\t\t\tvar jsTags = jQuery.grep( ret[i].getElementsByTagName( \"script\" ), checkScriptType );\n\n\t\t\t\t\t\tret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );\n\t\t\t\t\t}\n\t\t\t\t\tfragment.appendChild( ret[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, id,\n\t\t\tcache = jQuery.cache,\n\t\t\tspecial = jQuery.event.special,\n\t\t\tdeleteExpando = jQuery.support.deleteExpando;\n\n\t\tfor ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tid = elem[ jQuery.expando ];\n\n\t\t\tif ( id ) {\n\t\t\t\tdata = cache[ id ];\n\n\t\t\t\tif ( data && data.events ) {\n\t\t\t\t\tfor ( var type in data.events ) {\n\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Null the DOM reference to avoid IE6/7/8 leak (#7054)\n\t\t\t\t\tif ( data.handle ) {\n\t\t\t\t\t\tdata.handle.elem = null;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\tdelete elem[ jQuery.expando ];\n\n\t\t\t\t} else if ( elem.removeAttribute ) {\n\t\t\t\t\telem.removeAttribute( jQuery.expando );\n\t\t\t\t}\n\n\t\t\t\tdelete cache[ id ];\n\t\t\t}\n\t\t}\n\t}\n});\n\nfunction evalScript( i, elem ) {\n\tif ( elem.src ) {\n\t\tjQuery.ajax({\n\t\t\turl: elem.src,\n\t\t\tasync: false,\n\t\t\tdataType: \"script\"\n\t\t});\n\t} else {\n\t\tjQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || \"\" ).replace( rcleanScript, \"/*$0*/\" ) );\n\t}\n\n\tif ( elem.parentNode ) {\n\t\telem.parentNode.removeChild( elem );\n\t}\n}\n\n\n\n\nvar ralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity=([^)]*)/,\n\t// fixed for IE9, see #8346\n\trupper = /([A-Z]|^ms)/g,\n\trnumpx = /^-?\\d+(?:px)?$/i,\n\trnum = /^-?\\d/,\n\trrelNum = /^([\\-+])=([\\-+.\\de]+)/,\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssWidth = [ \"Left\", \"Right\" ],\n\tcssHeight = [ \"Top\", \"Bottom\" ],\n\tcurCSS,\n\n\tgetComputedStyle,\n\tcurrentStyle;\n\njQuery.fn.css = function( name, value ) {\n\t// Setting 'undefined' is a no-op\n\tif ( arguments.length === 2 && value === undefined ) {\n\t\treturn this;\n\t}\n\n\treturn jQuery.access( this, name, value, true, function( elem, name, value ) {\n\t\treturn value !== undefined ?\n\t\t\tjQuery.style( elem, name, value ) :\n\t\t\tjQuery.css( elem, name );\n\t});\n};\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\", \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\n\t\t\t\t} else {\n\t\t\t\t\treturn elem.style.opacity;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Exclude the following css properties to add px\n\tcssNumber: {\n\t\t\"fillOpacity\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": jQuery.support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, origName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style, hooks = jQuery.cssHooks[ origName ];\n\n\t\tname = jQuery.cssProps[ origName ] || origName;\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( +( ret[1] + 1) * +ret[2] ) + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that NaN and null values aren't set. See: #7116\n\t\t\tif ( value == null || type === \"number\" && isNaN( value ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value )) !== undefined ) {\n\t\t\t\t// Wrapped to prevent IE from throwing errors when 'invalid' values are provided\n\t\t\t\t// Fixes bug #5509\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra ) {\n\t\tvar ret, hooks;\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.camelCase( name );\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tname = jQuery.cssProps[ name ] || name;\n\n\t\t// cssFloat needs a special treatment\n\t\tif ( name === \"cssFloat\" ) {\n\t\t\tname = \"float\";\n\t\t}\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, true, extra )) !== undefined ) {\n\t\t\treturn ret;\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\t} else if ( curCSS ) {\n\t\t\treturn curCSS( elem, name );\n\t\t}\n\t},\n\n\t// A method for quickly swapping in/out CSS properties to get correct calculations\n\tswap: function( elem, options, callback ) {\n\t\tvar old = {};\n\n\t\t// Remember the old values, and insert the new ones\n\t\tfor ( var name in options ) {\n\t\t\told[ name ] = elem.style[ name ];\n\t\t\telem.style[ name ] = options[ name ];\n\t\t}\n\n\t\tcallback.call( elem );\n\n\t\t// Revert the old values\n\t\tfor ( name in options ) {\n\t\t\telem.style[ name ] = old[ name ];\n\t\t}\n\t}\n});\n\n// DEPRECATED, Use jQuery.css() instead\njQuery.curCSS = jQuery.css;\n\njQuery.each([\"height\", \"width\"], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tvar val;\n\n\t\t\tif ( computed ) {\n\t\t\t\tif ( elem.offsetWidth !== 0 ) {\n\t\t\t\t\treturn getWH( elem, name, extra );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\tval = getWH( elem, name, extra );\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\treturn val;\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tif ( rnumpx.test( value ) ) {\n\t\t\t\t// ignore negative width and height values #1599\n\t\t\t\tvalue = parseFloat( value );\n\n\t\t\t\tif ( value >= 0 ) {\n\t\t\t\t\treturn value + \"px\";\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n});\n\nif ( !jQuery.support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( parseFloat( RegExp.$1 ) / 100 ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\tif ( value >= 1 && jQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there there is no filter style applied in a css rule, we are done\n\t\t\t\tif ( currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery(function() {\n\t// This hook cannot be added until DOM ready because the support test\n\t// for it is not run until after DOM ready\n\tif ( !jQuery.support.reliableMarginRight ) {\n\t\tjQuery.cssHooks.marginRight = {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\t\tvar ret;\n\t\t\t\tjQuery.swap( elem, { \"display\": \"inline-block\" }, function() {\n\t\t\t\t\tif ( computed ) {\n\t\t\t\t\t\tret = curCSS( elem, \"margin-right\", \"marginRight\" );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tret = elem.style.marginRight;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t};\n\t}\n});\n\nif ( document.defaultView && document.defaultView.getComputedStyle ) {\n\tgetComputedStyle = function( elem, name ) {\n\t\tvar ret, defaultView, computedStyle;\n\n\t\tname = name.replace( rupper, \"-$1\" ).toLowerCase();\n\n\t\tif ( (defaultView = elem.ownerDocument.defaultView) &&\n\t\t\t\t(computedStyle = defaultView.getComputedStyle( elem, null )) ) {\n\t\t\tret = computedStyle.getPropertyValue( name );\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument.documentElement, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n}\n\nif ( document.documentElement.currentStyle ) {\n\tcurrentStyle = function( elem, name ) {\n\t\tvar left, rsLeft, uncomputed,\n\t\t\tret = elem.currentStyle && elem.currentStyle[ name ],\n\t\t\tstyle = elem.style;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret === null && style && (uncomputed = style[ name ]) ) {\n\t\t\tret = uncomputed;\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\tif ( !rnumpx.test( ret ) && rnum.test( ret ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trsLeft = elem.runtimeStyle && elem.runtimeStyle.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\telem.runtimeStyle.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ( ret || 0 );\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\telem.runtimeStyle.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\treturn ret === \"\" ? \"auto\" : ret;\n\t};\n}\n\ncurCSS = getComputedStyle || currentStyle;\n\nfunction getWH( elem, name, extra ) {\n\n\t// Start with offset property\n\tvar val = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\twhich = name === \"width\" ? cssWidth : cssHeight,\n\t\ti = 0,\n\t\tlen = which.length;\n\n\tif ( val > 0 ) {\n\t\tif ( extra !== \"border\" ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tif ( !extra ) {\n\t\t\t\t\tval -= parseFloat( jQuery.css( elem, \"padding\" + which[ i ] ) ) || 0;\n\t\t\t\t}\n\t\t\t\tif ( extra === \"margin\" ) {\n\t\t\t\t\tval += parseFloat( jQuery.css( elem, extra + which[ i ] ) ) || 0;\n\t\t\t\t} else {\n\t\t\t\t\tval -= parseFloat( jQuery.css( elem, \"border\" + which[ i ] + \"Width\" ) ) || 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn val + \"px\";\n\t}\n\n\t// Fall back to computed then uncomputed css if necessary\n\tval = curCSS( elem, name, name );\n\tif ( val < 0 || val == null ) {\n\t\tval = elem.style[ name ] || 0;\n\t}\n\t// Normalize \"\", auto, and prepare for extra\n\tval = parseFloat( val ) || 0;\n\n\t// Add padding, border, margin\n\tif ( extra ) {\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tval += parseFloat( jQuery.css( elem, \"padding\" + which[ i ] ) ) || 0;\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += parseFloat( jQuery.css( elem, \"border\" + which[ i ] + \"Width\" ) ) || 0;\n\t\t\t}\n\t\t\tif ( extra === \"margin\" ) {\n\t\t\t\tval += parseFloat( jQuery.css( elem, extra + which[ i ] ) ) || 0;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val + \"px\";\n}\n\nif ( jQuery.expr && jQuery.expr.filters ) {\n\tjQuery.expr.filters.hidden = function( elem ) {\n\t\tvar width = elem.offsetWidth,\n\t\t\theight = elem.offsetHeight;\n\n\t\treturn ( width === 0 && height === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n\t};\n\n\tjQuery.expr.filters.visible = function( elem ) {\n\t\treturn !jQuery.expr.filters.hidden( elem );\n\t};\n}\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trhash = /#.*$/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\trinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app\\-storage|.+\\-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trquery = /\\?/,\n\trscript = /<script\\b[^<]*(?:(?!<\\/script>)<[^<]*)*<\\/script>/gi,\n\trselectTextarea = /^(?:select|textarea)/i,\n\trspacesAjax = /\\s+/,\n\trts = /([?&])_=[^&]*/,\n\trurl = /^([\\w\\+\\.\\-]+:)(?:\\/\\/([^\\/?#:]*)(?::(\\d+))?)?/,\n\n\t// Keep a copy of the old load method\n\t_load = jQuery.fn.load,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Document location\n\tajaxLocation,\n\n\t// Document location segments\n\tajaxLocParts,\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = [\"*/\"] + [\"*\"];\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\tvar dataTypes = dataTypeExpression.toLowerCase().split( rspacesAjax ),\n\t\t\t\ti = 0,\n\t\t\t\tlength = dataTypes.length,\n\t\t\t\tdataType,\n\t\t\t\tlist,\n\t\t\t\tplaceBefore;\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tdataType = dataTypes[ i ];\n\t\t\t\t// We control if we're asked to add before\n\t\t\t\t// any existing element\n\t\t\t\tplaceBefore = /^\\+/.test( dataType );\n\t\t\t\tif ( placeBefore ) {\n\t\t\t\t\tdataType = dataType.substr( 1 ) || \"*\";\n\t\t\t\t}\n\t\t\t\tlist = structure[ dataType ] = structure[ dataType ] || [];\n\t\t\t\t// then we add to the structure accordingly\n\t\t\t\tlist[ placeBefore ? \"unshift\" : \"push\" ]( func );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR,\n\t\tdataType /* internal */, inspected /* internal */ ) {\n\n\tdataType = dataType || options.dataTypes[ 0 ];\n\tinspected = inspected || {};\n\n\tinspected[ dataType ] = true;\n\n\tvar list = structure[ dataType ],\n\t\ti = 0,\n\t\tlength = list ? list.length : 0,\n\t\texecuteOnly = ( structure === prefilters ),\n\t\tselection;\n\n\tfor ( ; i < length && ( executeOnly || !selection ); i++ ) {\n\t\tselection = list[ i ]( options, originalOptions, jqXHR );\n\t\t// If we got redirected to another dataType\n\t\t// we try there if executing only and not done already\n\t\tif ( typeof selection === \"string\" ) {\n\t\t\tif ( !executeOnly || inspected[ selection ] ) {\n\t\t\t\tselection = undefined;\n\t\t\t} else {\n\t\t\t\toptions.dataTypes.unshift( selection );\n\t\t\t\tselection = inspectPrefiltersOrTransports(\n\t\t\t\t\t\tstructure, options, originalOptions, jqXHR, selection, inspected );\n\t\t\t}\n\t\t}\n\t}\n\t// If we're only executing or nothing was selected\n\t// we try the catchall dataType if not done already\n\tif ( ( executeOnly || !selection ) && !inspected[ \"*\" ] ) {\n\t\tselection = inspectPrefiltersOrTransports(\n\t\t\t\tstructure, options, originalOptions, jqXHR, \"*\", inspected );\n\t}\n\t// unnecessary when only executing (prefilters)\n\t// but it'll be ignored by the caller in that case\n\treturn selection;\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n}\n\njQuery.fn.extend({\n\tload: function( url, params, callback ) {\n\t\tif ( typeof url !== \"string\" && _load ) {\n\t\t\treturn _load.apply( this, arguments );\n\n\t\t// Don't do a request if no elements are being requested\n\t\t} else if ( !this.length ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tvar off = url.indexOf( \" \" );\n\t\tif ( off >= 0 ) {\n\t\t\tvar selector = url.slice( off, url.length );\n\t\t\turl = url.slice( 0, off );\n\t\t}\n\n\t\t// Default to a GET request\n\t\tvar type = \"GET\";\n\n\t\t// If the second parameter was provided\n\t\tif ( params ) {\n\t\t\t// If it's a function\n\t\t\tif ( jQuery.isFunction( params ) ) {\n\t\t\t\t// We assume that it's the callback\n\t\t\t\tcallback = params;\n\t\t\t\tparams = undefined;\n\n\t\t\t// Otherwise, build a param string\n\t\t\t} else if ( typeof params === \"object\" ) {\n\t\t\t\tparams = jQuery.param( params, jQuery.ajaxSettings.traditional );\n\t\t\t\ttype = \"POST\";\n\t\t\t}\n\t\t}\n\n\t\tvar self = this;\n\n\t\t// Request the remote document\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params,\n\t\t\t// Complete callback (responseText is used internally)\n\t\t\tcomplete: function( jqXHR, status, responseText ) {\n\t\t\t\t// Store the response as specified by the jqXHR object\n\t\t\t\tresponseText = jqXHR.responseText;\n\t\t\t\t// If successful, inject the HTML into all the matched elements\n\t\t\t\tif ( jqXHR.isResolved() ) {\n\t\t\t\t\t// #4825: Get the actual response in case\n\t\t\t\t\t// a dataFilter is present in ajaxSettings\n\t\t\t\t\tjqXHR.done(function( r ) {\n\t\t\t\t\t\tresponseText = r;\n\t\t\t\t\t});\n\t\t\t\t\t// See if a selector was specified\n\t\t\t\t\tself.html( selector ?\n\t\t\t\t\t\t// Create a dummy div to hold the results\n\t\t\t\t\t\tjQuery(\"<div>\")\n\t\t\t\t\t\t\t// inject the contents of the document in, removing the scripts\n\t\t\t\t\t\t\t// to avoid any 'Permission Denied' errors in IE\n\t\t\t\t\t\t\t.append(responseText.replace(rscript, \"\"))\n\n\t\t\t\t\t\t\t// Locate the specified elements\n\t\t\t\t\t\t\t.find(selector) :\n\n\t\t\t\t\t\t// If not, just inject the full result\n\t\t\t\t\t\tresponseText );\n\t\t\t\t}\n\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tself.each( callback, [ responseText, status, jqXHR ] );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\treturn this;\n\t},\n\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\n\tserializeArray: function() {\n\t\treturn this.map(function(){\n\t\t\treturn this.elements ? jQuery.makeArray( this.elements ) : this;\n\t\t})\n\t\t.filter(function(){\n\t\t\treturn this.name && !this.disabled &&\n\t\t\t\t( this.checked || rselectTextarea.test( this.nodeName ) ||\n\t\t\t\t\trinput.test( this.type ) );\n\t\t})\n\t\t.map(function( i, elem ){\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val, i ){\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( \"ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend\".split( \" \" ), function( i, o ){\n\tjQuery.fn[ o ] = function( f ){\n\t\treturn this.on( o, f );\n\t};\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\ttype: method,\n\t\t\turl: url,\n\t\t\tdata: data,\n\t\t\tsuccess: callback,\n\t\t\tdataType: type\n\t\t});\n\t};\n});\n\njQuery.extend({\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\tif ( settings ) {\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( target, jQuery.ajaxSettings );\n\t\t} else {\n\t\t\t// Extending ajaxSettings\n\t\t\tsettings = target;\n\t\t\ttarget = jQuery.ajaxSettings;\n\t\t}\n\t\tajaxExtend( target, settings );\n\t\treturn target;\n\t},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\ttype: \"GET\",\n\t\tcontentType: \"application/x-www-form-urlencoded\",\n\t\tprocessData: true,\n\t\tasync: true,\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\thtml: \"text/html\",\n\t\t\ttext: \"text/plain\",\n\t\t\tjson: \"application/json, text/javascript\",\n\t\t\t\"*\": allTypes\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\"\n\t\t},\n\n\t\t// List of data converters\n\t\t// 1) key format is \"source_type destination_type\" (a single space in-between)\n\t\t// 2) the catchall symbol \"*\" can be used for source_type\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": window.String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\tcontext: true,\n\t\t\turl: true\n\t\t}\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events\n\t\t\t// It's the callbackContext if one was provided in the options\n\t\t\t// and if it's a DOM node or a jQuery collection\n\t\t\tglobalEventContext = callbackContext !== s &&\n\t\t\t\t( callbackContext.nodeType || callbackContext instanceof jQuery ) ?\n\t\t\t\t\t\tjQuery( callbackContext ) : jQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// ifModified key\n\t\t\tifModifiedKey,\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\t\t\t// transport\n\t\t\ttransport,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\t\t\t// Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match === undefined ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tstatusText = statusText || \"abort\";\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( statusText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, statusText );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\turl : s.url\n\t\t\t};\n\n\t\t// Callback for when everything is done\n\t\t// It is defined here because jslint complains if it is declared\n\t\t// at the end of the function (which would be more logical and readable)\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\tvar isSuccess,\n\t\t\t\tsuccess,\n\t\t\t\terror,\n\t\t\t\tstatusText = nativeStatusText,\n\t\t\t\tresponse = responses ? ajaxHandleResponses( s, jqXHR, responses ) : undefined,\n\t\t\t\tlastModified,\n\t\t\t\tetag;\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( status >= 200 && status < 300 || status === 304 ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\n\t\t\t\t\tif ( ( lastModified = jqXHR.getResponseHeader( \"Last-Modified\" ) ) ) {\n\t\t\t\t\t\tjQuery.lastModified[ ifModifiedKey ] = lastModified;\n\t\t\t\t\t}\n\t\t\t\t\tif ( ( etag = jqXHR.getResponseHeader( \"Etag\" ) ) ) {\n\t\t\t\t\t\tjQuery.etag[ ifModifiedKey ] = etag;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If not modified\n\t\t\t\tif ( status === 304 ) {\n\n\t\t\t\t\tstatusText = \"notmodified\";\n\t\t\t\t\tisSuccess = true;\n\n\t\t\t\t// If we have data\n\t\t\t\t} else {\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tsuccess = ajaxConvert( s, response );\n\t\t\t\t\t\tstatusText = \"success\";\n\t\t\t\t\t\tisSuccess = true;\n\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t// We have a parsererror\n\t\t\t\t\t\tstatusText = \"parsererror\";\n\t\t\t\t\t\terror = e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( !statusText || status ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = \"\" + ( nativeStatusText || statusText );\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajax\" + ( isSuccess ? \"Success\" : \"Error\" ),\n\t\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\t\tjqXHR.complete = completeDeferred.add;\n\n\t\t// Status-dependent callbacks\n\t\tjqXHR.statusCode = function( map ) {\n\t\t\tif ( map ) {\n\t\t\t\tvar tmp;\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tfor ( tmp in map ) {\n\t\t\t\t\t\tstatusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\ttmp = map[ jqXHR.status ];\n\t\t\t\t\tjqXHR.then( tmp, tmp );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn this;\n\t\t};\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().split( rspacesAjax );\n\n\t\t// Determine if a cross-domain request is in order\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] != ajaxLocParts[ 1 ] || parts[ 2 ] != ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? 80 : 443 ) ) !=\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? 80 : 443 ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefiler, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\tfireGlobals = s.global;\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.data;\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Get ifModifiedKey before adding the anti-cache parameter\n\t\t\tifModifiedKey = s.url;\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\n\t\t\t\tvar ts = jQuery.now(),\n\t\t\t\t\t// try replacing _= if it is there\n\t\t\t\t\tret = s.url.replace( rts, \"$1_=\" + ts );\n\n\t\t\t\t// if nothing was replaced, add timestamp to the end\n\t\t\t\ts.url = ret + ( ( ret === s.url ) ? ( rquery.test( s.url ) ? \"&\" : \"?\" ) + \"_=\" + ts : \"\" );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tifModifiedKey = ifModifiedKey || s.url;\n\t\t\tif ( jQuery.lastModified[ ifModifiedKey ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ ifModifiedKey ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ ifModifiedKey ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ ifModifiedKey ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t\t// Abort if not done already\n\t\t\t\tjqXHR.abort();\n\t\t\t\treturn false;\n\n\t\t}\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout( function(){\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch (e) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\t// Serialize an array of form elements or a set of\n\t// key/values into a query string\n\tparam: function( a, traditional ) {\n\t\tvar s = [],\n\t\t\tadd = function( key, value ) {\n\t\t\t\t// If value is a function, invoke it and return its value\n\t\t\t\tvalue = jQuery.isFunction( value ) ? value() : value;\n\t\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t\t};\n\n\t\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\t\tif ( traditional === undefined ) {\n\t\t\ttraditional = jQuery.ajaxSettings.traditional;\n\t\t}\n\n\t\t// If an array was passed in, assume that it is an array of form elements.\n\t\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t\t// Serialize the form elements\n\t\t\tjQuery.each( a, function() {\n\t\t\t\tadd( this.name, this.value );\n\t\t\t});\n\n\t\t} else {\n\t\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t\t// did it), otherwise encode params recursively.\n\t\t\tfor ( var prefix in a ) {\n\t\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t\t}\n\t\t}\n\n\t\t// Return the resulting serialization\n\t\treturn s.join( \"&\" ).replace( r20, \"+\" );\n\t}\n});\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// If array item is non-scalar (array or object), encode its\n\t\t\t\t// numeric index to resolve deserialization ambiguity issues.\n\t\t\t\t// Note that rack (as of 1.0.0) can't currently deserialize\n\t\t\t\t// nested arrays properly, and attempting to do so may cause\n\t\t\t\t// a server error. Possible fixes are to modify rack's\n\t\t\t\t// deserialization algorithm or to provide an option or flag\n\t\t\t\t// to force array serialization to be shallow.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" || jQuery.isArray(v) ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && obj != null && typeof obj === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( var name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// This is still on the jQuery object... for now\n// Want to move this to jQuery.ajax some day\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {}\n\n});\n\n/* Handles responses to an ajax request:\n * - sets all responseXXX fields accordingly\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar contents = s.contents,\n\t\tdataTypes = s.dataTypes,\n\t\tresponseFields = s.responseFields,\n\t\tct,\n\t\ttype,\n\t\tfinalDataType,\n\t\tfirstDataType;\n\n\t// Fill responseXXX fields\n\tfor ( type in responseFields ) {\n\t\tif ( type in responses ) {\n\t\t\tjqXHR[ responseFields[type] ] = responses[ type ];\n\t\t}\n\t}\n\n\t// Remove auto dataType and get content-type in the process\n\twhile( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"content-type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n// Chain conversions given the request and the original response\nfunction ajaxConvert( s, response ) {\n\n\t// Apply the dataFilter if provided\n\tif ( s.dataFilter ) {\n\t\tresponse = s.dataFilter( response, s.dataType );\n\t}\n\n\tvar dataTypes = s.dataTypes,\n\t\tconverters = {},\n\t\ti,\n\t\tkey,\n\t\tlength = dataTypes.length,\n\t\ttmp,\n\t\t// Current and previous dataTypes\n\t\tcurrent = dataTypes[ 0 ],\n\t\tprev,\n\t\t// Conversion expression\n\t\tconversion,\n\t\t// Conversion function\n\t\tconv,\n\t\t// Conversion functions (transitive conversion)\n\t\tconv1,\n\t\tconv2;\n\n\t// For each dataType in the chain\n\tfor ( i = 1; i < length; i++ ) {\n\n\t\t// Create converters map\n\t\t// with lowercased keys\n\t\tif ( i === 1 ) {\n\t\t\tfor ( key in s.converters ) {\n\t\t\t\tif ( typeof key === \"string\" ) {\n\t\t\t\t\tconverters[ key.toLowerCase() ] = s.converters[ key ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Get the dataTypes\n\t\tprev = current;\n\t\tcurrent = dataTypes[ i ];\n\n\t\t// If current is auto dataType, update it to prev\n\t\tif ( current === \"*\" ) {\n\t\t\tcurrent = prev;\n\t\t// If no auto and dataTypes are actually different\n\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t// Get the converter\n\t\t\tconversion = prev + \" \" + current;\n\t\t\tconv = converters[ conversion ] || converters[ \"* \" + current ];\n\n\t\t\t// If there is no direct converter, search transitively\n\t\t\tif ( !conv ) {\n\t\t\t\tconv2 = undefined;\n\t\t\t\tfor ( conv1 in converters ) {\n\t\t\t\t\ttmp = conv1.split( \" \" );\n\t\t\t\t\tif ( tmp[ 0 ] === prev || tmp[ 0 ] === \"*\" ) {\n\t\t\t\t\t\tconv2 = converters[ tmp[1] + \" \" + current ];\n\t\t\t\t\t\tif ( conv2 ) {\n\t\t\t\t\t\t\tconv1 = converters[ conv1 ];\n\t\t\t\t\t\t\tif ( conv1 === true ) {\n\t\t\t\t\t\t\t\tconv = conv2;\n\t\t\t\t\t\t\t} else if ( conv2 === true ) {\n\t\t\t\t\t\t\t\tconv = conv1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t// If we found no converter, dispatch an error\n\t\t\tif ( !( conv || conv2 ) ) {\n\t\t\t\tjQuery.error( \"No conversion from \" + conversion.replace(\" \",\" to \") );\n\t\t\t}\n\t\t\t// If found converter is not an equivalence\n\t\t\tif ( conv !== true ) {\n\t\t\t\t// Convert with 1 or 2 converters accordingly\n\t\t\t\tresponse = conv ? conv( response ) : conv2( conv1(response) );\n\t\t\t}\n\t\t}\n\t}\n\treturn response;\n}\n\n\n\n\nvar jsc = jQuery.now(),\n\tjsre = /(\\=)\\?(&|$)|\\?\\?/i;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\treturn jQuery.expando + \"_\" + ( jsc++ );\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar inspectData = s.contentType === \"application/x-www-form-urlencoded\" &&\n\t\t( typeof s.data === \"string\" );\n\n\tif ( s.dataTypes[ 0 ] === \"jsonp\" ||\n\t\ts.jsonp !== false && ( jsre.test( s.url ) ||\n\t\t\t\tinspectData && jsre.test( s.data ) ) ) {\n\n\t\tvar responseContainer,\n\t\t\tjsonpCallback = s.jsonpCallback =\n\t\t\t\tjQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback,\n\t\t\tprevious = window[ jsonpCallback ],\n\t\t\turl = s.url,\n\t\t\tdata = s.data,\n\t\t\treplace = \"$1\" + jsonpCallback + \"$2\";\n\n\t\tif ( s.jsonp !== false ) {\n\t\t\turl = url.replace( jsre, replace );\n\t\t\tif ( s.url === url ) {\n\t\t\t\tif ( inspectData ) {\n\t\t\t\t\tdata = data.replace( jsre, replace );\n\t\t\t\t}\n\t\t\t\tif ( s.data === data ) {\n\t\t\t\t\t// Add callback manually\n\t\t\t\t\turl += (/\\?/.test( url ) ? \"&\" : \"?\") + s.jsonp + \"=\" + jsonpCallback;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ts.url = url;\n\t\ts.data = data;\n\n\t\t// Install callback\n\t\twindow[ jsonpCallback ] = function( response ) {\n\t\t\tresponseContainer = [ response ];\n\t\t};\n\n\t\t// Clean-up function\n\t\tjqXHR.always(function() {\n\t\t\t// Set callback back to previous value\n\t\t\twindow[ jsonpCallback ] = previous;\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( previous ) ) {\n\t\t\t\twindow[ jsonpCallback ]( responseContainer[ 0 ] );\n\t\t\t}\n\t\t});\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( jsonpCallback + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /javascript|ecmascript/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || document.getElementsByTagName( \"head\" )[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement( \"script\" );\n\n\t\t\t\tscript.async = \"async\";\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( head && script.parentNode ) {\n\t\t\t\t\t\t\thead.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = undefined;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t\t// Use insertBefore instead of appendChild  to circumvent an IE6 bug.\n\t\t\t\t// This arises when a base node is used (#2709 and #4378).\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( 0, 1 );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar // #5280: Internet Explorer will keep connections alive if we don't abort on unload\n\txhrOnUnloadAbort = window.ActiveXObject ? function() {\n\t\t// Abort all pending requests\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( 0, 1 );\n\t\t}\n\t} : false,\n\txhrId = 0,\n\txhrCallbacks;\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject ?\n\t/* Microsoft failed to properly\n\t * implement the XMLHttpRequest in IE7 (can't request local files),\n\t * so we use the ActiveXObject when it is available\n\t * Additionally XMLHttpRequest can be disabled in IE7/IE8 so\n\t * we need a fallback.\n\t */\n\tfunction() {\n\t\treturn !this.isLocal && createStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\n// Determine support properties\n(function( xhr ) {\n\tjQuery.extend( jQuery.support, {\n\t\tajax: !!xhr,\n\t\tcors: !!xhr && ( \"withCredentials\" in xhr )\n\t});\n})( jQuery.ajaxSettings.xhr() );\n\n// Create transport if the browser can provide an xhr\nif ( jQuery.support.ajax ) {\n\n\tjQuery.ajaxTransport(function( s ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !s.crossDomain || jQuery.support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\n\t\t\t\t\t// Get a new xhr\n\t\t\t\t\tvar xhr = s.xhr(),\n\t\t\t\t\t\thandle,\n\t\t\t\t\t\ti;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\t// Passing null username, generates a login popup on Opera (#2865)\n\t\t\t\t\tif ( s.username ) {\n\t\t\t\t\t\txhr.open( s.type, s.url, s.async, s.username, s.password );\n\t\t\t\t\t} else {\n\t\t\t\t\t\txhr.open( s.type, s.url, s.async );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( s.xhrFields ) {\n\t\t\t\t\t\tfor ( i in s.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = s.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( s.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( s.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !s.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Need an extra try/catch for cross domain requests in Firefox 3\n\t\t\t\t\ttry {\n\t\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch( _ ) {}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( s.hasContent && s.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\n\t\t\t\t\t\tvar status,\n\t\t\t\t\t\t\tstatusText,\n\t\t\t\t\t\t\tresponseHeaders,\n\t\t\t\t\t\t\tresponses,\n\t\t\t\t\t\t\txml;\n\n\t\t\t\t\t\t// Firefox throws exceptions when accessing properties\n\t\t\t\t\t\t// of an xhr when a network error occured\n\t\t\t\t\t\t// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)\n\t\t\t\t\t\ttry {\n\n\t\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\n\t\t\t\t\t\t\t\t// Only called once\n\t\t\t\t\t\t\t\tcallback = undefined;\n\n\t\t\t\t\t\t\t\t// Do not keep as active anymore\n\t\t\t\t\t\t\t\tif ( handle ) {\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\t\t\t\t\t\t\t\t\tif ( xhrOnUnloadAbort ) {\n\t\t\t\t\t\t\t\t\t\tdelete xhrCallbacks[ handle ];\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// If it's an abort\n\t\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\t\t// Abort it manually if needed\n\t\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tstatus = xhr.status;\n\t\t\t\t\t\t\t\t\tresponseHeaders = xhr.getAllResponseHeaders();\n\t\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\t\txml = xhr.responseXML;\n\n\t\t\t\t\t\t\t\t\t// Construct response list\n\t\t\t\t\t\t\t\t\tif ( xml && xml.documentElement /* #4958 */ ) {\n\t\t\t\t\t\t\t\t\t\tresponses.xml = xml;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\n\t\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\t\tif ( !status && s.isLocal && !s.crossDomain ) {\n\t\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} catch( firefoxAccessException ) {\n\t\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\t\tcomplete( -1, firefoxAccessException );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, responseHeaders );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// if we're in sync mode or it's in cache\n\t\t\t\t\t// and has been retrieved directly (IE6 & IE7)\n\t\t\t\t\t// we need to manually fire the callback\n\t\t\t\t\tif ( !s.async || xhr.readyState === 4 ) {\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else {\n\t\t\t\t\t\thandle = ++xhrId;\n\t\t\t\t\t\tif ( xhrOnUnloadAbort ) {\n\t\t\t\t\t\t\t// Create the active xhrs callbacks list if needed\n\t\t\t\t\t\t\t// and attach the unload handler\n\t\t\t\t\t\t\tif ( !xhrCallbacks ) {\n\t\t\t\t\t\t\t\txhrCallbacks = {};\n\t\t\t\t\t\t\t\tjQuery( window ).unload( xhrOnUnloadAbort );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// Add to list of active xhrs callbacks\n\t\t\t\t\t\t\txhrCallbacks[ handle ] = callback;\n\t\t\t\t\t\t}\n\t\t\t\t\t\txhr.onreadystatechange = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback(0,1);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n\n\n\nvar elemdisplay = {},\n\tiframe, iframeDoc,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = /^([+\\-]=)?([\\d+.\\-]+)([a-z%]*)$/i,\n\ttimerId,\n\tfxAttrs = [\n\t\t// height animations\n\t\t[ \"height\", \"marginTop\", \"marginBottom\", \"paddingTop\", \"paddingBottom\" ],\n\t\t// width animations\n\t\t[ \"width\", \"marginLeft\", \"marginRight\", \"paddingLeft\", \"paddingRight\" ],\n\t\t// opacity animations\n\t\t[ \"opacity\" ]\n\t],\n\tfxNow;\n\njQuery.fn.extend({\n\tshow: function( speed, easing, callback ) {\n\t\tvar elem, display;\n\n\t\tif ( speed || speed === 0 ) {\n\t\t\treturn this.animate( genFx(\"show\", 3), speed, easing, callback );\n\n\t\t} else {\n\t\t\tfor ( var i = 0, j = this.length; i < j; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = elem.style.display;\n\n\t\t\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t\t\t// being hidden by cascaded rules or not\n\t\t\t\t\tif ( !jQuery._data(elem, \"olddisplay\") && display === \"none\" ) {\n\t\t\t\t\t\tdisplay = elem.style.display = \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set elements which have been overridden with display: none\n\t\t\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t\t\t// for such an element\n\t\t\t\t\tif ( display === \"\" && jQuery.css(elem, \"display\") === \"none\" ) {\n\t\t\t\t\t\tjQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set the display of most of the elements in a second loop\n\t\t\t// to avoid the constant reflow\n\t\t\tfor ( i = 0; i < j; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = elem.style.display;\n\n\t\t\t\t\tif ( display === \"\" || display === \"none\" ) {\n\t\t\t\t\t\telem.style.display = jQuery._data( elem, \"olddisplay\" ) || \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn this;\n\t\t}\n\t},\n\n\thide: function( speed, easing, callback ) {\n\t\tif ( speed || speed === 0 ) {\n\t\t\treturn this.animate( genFx(\"hide\", 3), speed, easing, callback);\n\n\t\t} else {\n\t\t\tvar elem, display,\n\t\t\t\ti = 0,\n\t\t\t\tj = this.length;\n\n\t\t\tfor ( ; i < j; i++ ) {\n\t\t\t\telem = this[i];\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t\t\t\tif ( display !== \"none\" && !jQuery._data( elem, \"olddisplay\" ) ) {\n\t\t\t\t\t\tjQuery._data( elem, \"olddisplay\", display );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set the display of the elements in a second loop\n\t\t\t// to avoid the constant reflow\n\t\t\tfor ( i = 0; i < j; i++ ) {\n\t\t\t\tif ( this[i].style ) {\n\t\t\t\t\tthis[i].style.display = \"none\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn this;\n\t\t}\n\t},\n\n\t// Save the old toggle function\n\t_toggle: jQuery.fn.toggle,\n\n\ttoggle: function( fn, fn2, callback ) {\n\t\tvar bool = typeof fn === \"boolean\";\n\n\t\tif ( jQuery.isFunction(fn) && jQuery.isFunction(fn2) ) {\n\t\t\tthis._toggle.apply( this, arguments );\n\n\t\t} else if ( fn == null || bool ) {\n\t\t\tthis.each(function() {\n\t\t\t\tvar state = bool ? fn : jQuery(this).is(\":hidden\");\n\t\t\t\tjQuery(this)[ state ? \"show\" : \"hide\" ]();\n\t\t\t});\n\n\t\t} else {\n\t\t\tthis.animate(genFx(\"toggle\", 3), fn, fn2, callback);\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tfadeTo: function( speed, to, easing, callback ) {\n\t\treturn this.filter(\":hidden\").css(\"opacity\", 0).show().end()\n\t\t\t\t\t.animate({opacity: to}, speed, easing, callback);\n\t},\n\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar optall = jQuery.speed( speed, easing, callback );\n\n\t\tif ( jQuery.isEmptyObject( prop ) ) {\n\t\t\treturn this.each( optall.complete, [ false ] );\n\t\t}\n\n\t\t// Do not change referenced properties as per-property easing will be lost\n\t\tprop = jQuery.extend( {}, prop );\n\n\t\tfunction doAnimation() {\n\t\t\t// XXX 'this' does not always have a nodeName when running the\n\t\t\t// test suite\n\n\t\t\tif ( optall.queue === false ) {\n\t\t\t\tjQuery._mark( this );\n\t\t\t}\n\n\t\t\tvar opt = jQuery.extend( {}, optall ),\n\t\t\t\tisElement = this.nodeType === 1,\n\t\t\t\thidden = isElement && jQuery(this).is(\":hidden\"),\n\t\t\t\tname, val, p, e,\n\t\t\t\tparts, start, end, unit,\n\t\t\t\tmethod;\n\n\t\t\t// will store per property easing and be used to determine when an animation is complete\n\t\t\topt.animatedProperties = {};\n\n\t\t\tfor ( p in prop ) {\n\n\t\t\t\t// property name normalization\n\t\t\t\tname = jQuery.camelCase( p );\n\t\t\t\tif ( p !== name ) {\n\t\t\t\t\tprop[ name ] = prop[ p ];\n\t\t\t\t\tdelete prop[ p ];\n\t\t\t\t}\n\n\t\t\t\tval = prop[ name ];\n\n\t\t\t\t// easing resolution: per property > opt.specialEasing > opt.easing > 'swing' (default)\n\t\t\t\tif ( jQuery.isArray( val ) ) {\n\t\t\t\t\topt.animatedProperties[ name ] = val[ 1 ];\n\t\t\t\t\tval = prop[ name ] = val[ 0 ];\n\t\t\t\t} else {\n\t\t\t\t\topt.animatedProperties[ name ] = opt.specialEasing && opt.specialEasing[ name ] || opt.easing || 'swing';\n\t\t\t\t}\n\n\t\t\t\tif ( val === \"hide\" && hidden || val === \"show\" && !hidden ) {\n\t\t\t\t\treturn opt.complete.call( this );\n\t\t\t\t}\n\n\t\t\t\tif ( isElement && ( name === \"height\" || name === \"width\" ) ) {\n\t\t\t\t\t// Make sure that nothing sneaks out\n\t\t\t\t\t// Record all 3 overflow attributes because IE does not\n\t\t\t\t\t// change the overflow attribute when overflowX and\n\t\t\t\t\t// overflowY are set to the same value\n\t\t\t\t\topt.overflow = [ this.style.overflow, this.style.overflowX, this.style.overflowY ];\n\n\t\t\t\t\t// Set display property to inline-block for height/width\n\t\t\t\t\t// animations on inline elements that are having width/height animated\n\t\t\t\t\tif ( jQuery.css( this, \"display\" ) === \"inline\" &&\n\t\t\t\t\t\t\tjQuery.css( this, \"float\" ) === \"none\" ) {\n\n\t\t\t\t\t\t// inline-level elements accept inline-block;\n\t\t\t\t\t\t// block-level elements need to be inline with layout\n\t\t\t\t\t\tif ( !jQuery.support.inlineBlockNeedsLayout || defaultDisplay( this.nodeName ) === \"inline\" ) {\n\t\t\t\t\t\t\tthis.style.display = \"inline-block\";\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthis.style.zoom = 1;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( opt.overflow != null ) {\n\t\t\t\tthis.style.overflow = \"hidden\";\n\t\t\t}\n\n\t\t\tfor ( p in prop ) {\n\t\t\t\te = new jQuery.fx( this, opt, p );\n\t\t\t\tval = prop[ p ];\n\n\t\t\t\tif ( rfxtypes.test( val ) ) {\n\n\t\t\t\t\t// Tracks whether to show or hide based on private\n\t\t\t\t\t// data attached to the element\n\t\t\t\t\tmethod = jQuery._data( this, \"toggle\" + p ) || ( val === \"toggle\" ? hidden ? \"show\" : \"hide\" : 0 );\n\t\t\t\t\tif ( method ) {\n\t\t\t\t\t\tjQuery._data( this, \"toggle\" + p, method === \"show\" ? \"hide\" : \"show\" );\n\t\t\t\t\t\te[ method ]();\n\t\t\t\t\t} else {\n\t\t\t\t\t\te[ val ]();\n\t\t\t\t\t}\n\n\t\t\t\t} else {\n\t\t\t\t\tparts = rfxnum.exec( val );\n\t\t\t\t\tstart = e.cur();\n\n\t\t\t\t\tif ( parts ) {\n\t\t\t\t\t\tend = parseFloat( parts[2] );\n\t\t\t\t\t\tunit = parts[3] || ( jQuery.cssNumber[ p ] ? \"\" : \"px\" );\n\n\t\t\t\t\t\t// We need to compute starting value\n\t\t\t\t\t\tif ( unit !== \"px\" ) {\n\t\t\t\t\t\t\tjQuery.style( this, p, (end || 1) + unit);\n\t\t\t\t\t\t\tstart = ( (end || 1) / e.cur() ) * start;\n\t\t\t\t\t\t\tjQuery.style( this, p, start + unit);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\t\t\tif ( parts[1] ) {\n\t\t\t\t\t\t\tend = ( (parts[ 1 ] === \"-=\" ? -1 : 1) * end ) + start;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\te.custom( start, end, unit );\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\te.custom( start, val, \"\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// For JS strict compliance\n\t\t\treturn true;\n\t\t}\n\n\t\treturn optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\thadTimers = false,\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\t// clear marker counters if we know they won't be\n\t\t\tif ( !gotoEnd ) {\n\t\t\t\tjQuery._unmark( true, this );\n\t\t\t}\n\n\t\t\tfunction stopQueue( elem, data, index ) {\n\t\t\t\tvar hooks = data[ index ];\n\t\t\t\tjQuery.removeData( elem, index, true );\n\t\t\t\thooks.stop( gotoEnd );\n\t\t\t}\n\n\t\t\tif ( type == null ) {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && index.indexOf(\".run\") === index.length - 4 ) {\n\t\t\t\t\t\tstopQueue( this, data, index );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if ( data[ index = type + \".run\" ] && data[ index ].stop ){\n\t\t\t\tstopQueue( this, data, index );\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\tif ( gotoEnd ) {\n\n\t\t\t\t\t\t// force the next step to be the last\n\t\t\t\t\t\ttimers[ index ]( true );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttimers[ index ].saveState();\n\t\t\t\t\t}\n\t\t\t\t\thadTimers = true;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( !( gotoEnd && hadTimers ) ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t}\n\n});\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout( clearFxNow, 0 );\n\treturn ( fxNow = jQuery.now() );\n}\n\nfunction clearFxNow() {\n\tfxNow = undefined;\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, num ) {\n\tvar obj = {};\n\n\tjQuery.each( fxAttrs.concat.apply([], fxAttrs.slice( 0, num )), function() {\n\t\tobj[ this ] = type;\n\t});\n\n\treturn obj;\n}\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx( \"show\", 1 ),\n\tslideUp: genFx( \"hide\", 1 ),\n\tslideToggle: genFx( \"toggle\", 1 ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.extend({\n\tspeed: function( speed, easing, fn ) {\n\t\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\t\tcomplete: fn || !fn && easing ||\n\t\t\t\tjQuery.isFunction( speed ) && speed,\n\t\t\tduration: speed,\n\t\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t\t};\n\n\t\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\t\tif ( opt.queue == null || opt.queue === true ) {\n\t\t\topt.queue = \"fx\";\n\t\t}\n\n\t\t// Queueing\n\t\topt.old = opt.complete;\n\n\t\topt.complete = function( noUnmark ) {\n\t\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\t\topt.old.call( this );\n\t\t\t}\n\n\t\t\tif ( opt.queue ) {\n\t\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t\t} else if ( noUnmark !== false ) {\n\t\t\t\tjQuery._unmark( this );\n\t\t\t}\n\t\t};\n\n\t\treturn opt;\n\t},\n\n\teasing: {\n\t\tlinear: function( p, n, firstNum, diff ) {\n\t\t\treturn firstNum + diff * p;\n\t\t},\n\t\tswing: function( p, n, firstNum, diff ) {\n\t\t\treturn ( ( -Math.cos( p*Math.PI ) / 2 ) + 0.5 ) * diff + firstNum;\n\t\t}\n\t},\n\n\ttimers: [],\n\n\tfx: function( elem, options, prop ) {\n\t\tthis.options = options;\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\n\t\toptions.orig = options.orig || {};\n\t}\n\n});\n\njQuery.fx.prototype = {\n\t// Simple function for setting a style value\n\tupdate: function() {\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\t( jQuery.fx.step[ this.prop ] || jQuery.fx.step._default )( this );\n\t},\n\n\t// Get the current size\n\tcur: function() {\n\t\tif ( this.elem[ this.prop ] != null && (!this.elem.style || this.elem.style[ this.prop ] == null) ) {\n\t\t\treturn this.elem[ this.prop ];\n\t\t}\n\n\t\tvar parsed,\n\t\t\tr = jQuery.css( this.elem, this.prop );\n\t\t// Empty strings, null, undefined and \"auto\" are converted to 0,\n\t\t// complex values such as \"rotate(1rad)\" are returned as is,\n\t\t// simple values such as \"10px\" are parsed to Float.\n\t\treturn isNaN( parsed = parseFloat( r ) ) ? !r || r === \"auto\" ? 0 : r : parsed;\n\t},\n\n\t// Start an animation from one number to another\n\tcustom: function( from, to, unit ) {\n\t\tvar self = this,\n\t\t\tfx = jQuery.fx;\n\n\t\tthis.startTime = fxNow || createFxNow();\n\t\tthis.end = to;\n\t\tthis.now = this.start = from;\n\t\tthis.pos = this.state = 0;\n\t\tthis.unit = unit || this.unit || ( jQuery.cssNumber[ this.prop ] ? \"\" : \"px\" );\n\n\t\tfunction t( gotoEnd ) {\n\t\t\treturn self.step( gotoEnd );\n\t\t}\n\n\t\tt.queue = this.options.queue;\n\t\tt.elem = this.elem;\n\t\tt.saveState = function() {\n\t\t\tif ( self.options.hide && jQuery._data( self.elem, \"fxshow\" + self.prop ) === undefined ) {\n\t\t\t\tjQuery._data( self.elem, \"fxshow\" + self.prop, self.start );\n\t\t\t}\n\t\t};\n\n\t\tif ( t() && jQuery.timers.push(t) && !timerId ) {\n\t\t\ttimerId = setInterval( fx.tick, fx.interval );\n\t\t}\n\t},\n\n\t// Simple 'show' function\n\tshow: function() {\n\t\tvar dataShow = jQuery._data( this.elem, \"fxshow\" + this.prop );\n\n\t\t// Remember where we started, so that we can go back to it later\n\t\tthis.options.orig[ this.prop ] = dataShow || jQuery.style( this.elem, this.prop );\n\t\tthis.options.show = true;\n\n\t\t// Begin the animation\n\t\t// Make sure that we start at a small width/height to avoid any flash of content\n\t\tif ( dataShow !== undefined ) {\n\t\t\t// This show is picking up where a previous hide or show left off\n\t\t\tthis.custom( this.cur(), dataShow );\n\t\t} else {\n\t\t\tthis.custom( this.prop === \"width\" || this.prop === \"height\" ? 1 : 0, this.cur() );\n\t\t}\n\n\t\t// Start by showing the element\n\t\tjQuery( this.elem ).show();\n\t},\n\n\t// Simple 'hide' function\n\thide: function() {\n\t\t// Remember where we started, so that we can go back to it later\n\t\tthis.options.orig[ this.prop ] = jQuery._data( this.elem, \"fxshow\" + this.prop ) || jQuery.style( this.elem, this.prop );\n\t\tthis.options.hide = true;\n\n\t\t// Begin the animation\n\t\tthis.custom( this.cur(), 0 );\n\t},\n\n\t// Each step of an animation\n\tstep: function( gotoEnd ) {\n\t\tvar p, n, complete,\n\t\t\tt = fxNow || createFxNow(),\n\t\t\tdone = true,\n\t\t\telem = this.elem,\n\t\t\toptions = this.options;\n\n\t\tif ( gotoEnd || t >= options.duration + this.startTime ) {\n\t\t\tthis.now = this.end;\n\t\t\tthis.pos = this.state = 1;\n\t\t\tthis.update();\n\n\t\t\toptions.animatedProperties[ this.prop ] = true;\n\n\t\t\tfor ( p in options.animatedProperties ) {\n\t\t\t\tif ( options.animatedProperties[ p ] !== true ) {\n\t\t\t\t\tdone = false;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( done ) {\n\t\t\t\t// Reset the overflow\n\t\t\t\tif ( options.overflow != null && !jQuery.support.shrinkWrapBlocks ) {\n\n\t\t\t\t\tjQuery.each( [ \"\", \"X\", \"Y\" ], function( index, value ) {\n\t\t\t\t\t\telem.style[ \"overflow\" + value ] = options.overflow[ index ];\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\t// Hide the element if the \"hide\" operation was done\n\t\t\t\tif ( options.hide ) {\n\t\t\t\t\tjQuery( elem ).hide();\n\t\t\t\t}\n\n\t\t\t\t// Reset the properties, if the item has been hidden or shown\n\t\t\t\tif ( options.hide || options.show ) {\n\t\t\t\t\tfor ( p in options.animatedProperties ) {\n\t\t\t\t\t\tjQuery.style( elem, p, options.orig[ p ] );\n\t\t\t\t\t\tjQuery.removeData( elem, \"fxshow\" + p, true );\n\t\t\t\t\t\t// Toggle data is no longer needed\n\t\t\t\t\t\tjQuery.removeData( elem, \"toggle\" + p, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Execute the complete function\n\t\t\t\t// in the event that the complete function throws an exception\n\t\t\t\t// we must ensure it won't be called twice. #5684\n\n\t\t\t\tcomplete = options.complete;\n\t\t\t\tif ( complete ) {\n\n\t\t\t\t\toptions.complete = false;\n\t\t\t\t\tcomplete.call( elem );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn false;\n\n\t\t} else {\n\t\t\t// classical easing cannot be used with an Infinity duration\n\t\t\tif ( options.duration == Infinity ) {\n\t\t\t\tthis.now = t;\n\t\t\t} else {\n\t\t\t\tn = t - this.startTime;\n\t\t\t\tthis.state = n / options.duration;\n\n\t\t\t\t// Perform the easing function, defaults to swing\n\t\t\t\tthis.pos = jQuery.easing[ options.animatedProperties[this.prop] ]( this.state, n, 0, 1, options.duration );\n\t\t\t\tthis.now = this.start + ( (this.end - this.start) * this.pos );\n\t\t\t}\n\t\t\t// Perform the next step of the animation\n\t\t\tthis.update();\n\t\t}\n\n\t\treturn true;\n\t}\n};\n\njQuery.extend( jQuery.fx, {\n\ttick: function() {\n\t\tvar timer,\n\t\t\ttimers = jQuery.timers,\n\t\t\ti = 0;\n\n\t\tfor ( ; i < timers.length; i++ ) {\n\t\t\ttimer = timers[ i ];\n\t\t\t// Checks the timer has not already been removed\n\t\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\t\ttimers.splice( i--, 1 );\n\t\t\t}\n\t\t}\n\n\t\tif ( !timers.length ) {\n\t\t\tjQuery.fx.stop();\n\t\t}\n\t},\n\n\tinterval: 13,\n\n\tstop: function() {\n\t\tclearInterval( timerId );\n\t\ttimerId = null;\n\t},\n\n\tspeeds: {\n\t\tslow: 600,\n\t\tfast: 200,\n\t\t// Default speed\n\t\t_default: 400\n\t},\n\n\tstep: {\n\t\topacity: function( fx ) {\n\t\t\tjQuery.style( fx.elem, \"opacity\", fx.now );\n\t\t},\n\n\t\t_default: function( fx ) {\n\t\t\tif ( fx.elem.style && fx.elem.style[ fx.prop ] != null ) {\n\t\t\t\tfx.elem.style[ fx.prop ] = fx.now + fx.unit;\n\t\t\t} else {\n\t\t\t\tfx.elem[ fx.prop ] = fx.now;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Adds width/height step functions\n// Do not set anything below 0\njQuery.each([ \"width\", \"height\" ], function( i, prop ) {\n\tjQuery.fx.step[ prop ] = function( fx ) {\n\t\tjQuery.style( fx.elem, prop, Math.max(0, fx.now) + fx.unit );\n\t};\n});\n\nif ( jQuery.expr && jQuery.expr.filters ) {\n\tjQuery.expr.filters.animated = function( elem ) {\n\t\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\t\treturn elem === fn.elem;\n\t\t}).length;\n\t};\n}\n\n// Try to restore the default display value of an element\nfunction defaultDisplay( nodeName ) {\n\n\tif ( !elemdisplay[ nodeName ] ) {\n\n\t\tvar body = document.body,\n\t\t\telem = jQuery( \"<\" + nodeName + \">\" ).appendTo( body ),\n\t\t\tdisplay = elem.css( \"display\" );\n\t\telem.remove();\n\n\t\t// If the simple way fails,\n\t\t// get element's real default display by attaching it to a temp iframe\n\t\tif ( display === \"none\" || display === \"\" ) {\n\t\t\t// No iframe to use yet, so create it\n\t\t\tif ( !iframe ) {\n\t\t\t\tiframe = document.createElement( \"iframe\" );\n\t\t\t\tiframe.frameBorder = iframe.width = iframe.height = 0;\n\t\t\t}\n\n\t\t\tbody.appendChild( iframe );\n\n\t\t\t// Create a cacheable copy of the iframe document on first call.\n\t\t\t// IE and Opera will allow us to reuse the iframeDoc without re-writing the fake HTML\n\t\t\t// document to it; WebKit & Firefox won't allow reusing the iframe document.\n\t\t\tif ( !iframeDoc || !iframe.createElement ) {\n\t\t\t\tiframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document;\n\t\t\t\tiframeDoc.write( ( document.compatMode === \"CSS1Compat\" ? \"<!doctype html>\" : \"\" ) + \"<html><body>\" );\n\t\t\t\tiframeDoc.close();\n\t\t\t}\n\n\t\t\telem = iframeDoc.createElement( nodeName );\n\n\t\t\tiframeDoc.body.appendChild( elem );\n\n\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\tbody.removeChild( iframe );\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn elemdisplay[ nodeName ];\n}\n\n\n\n\nvar rtable = /^t(?:able|d|h)$/i,\n\trroot = /^(?:body|html)$/i;\n\nif ( \"getBoundingClientRect\" in document.documentElement ) {\n\tjQuery.fn.offset = function( options ) {\n\t\tvar elem = this[0], box;\n\n\t\tif ( options ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t});\n\t\t}\n\n\t\tif ( !elem || !elem.ownerDocument ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tif ( elem === elem.ownerDocument.body ) {\n\t\t\treturn jQuery.offset.bodyOffset( elem );\n\t\t}\n\n\t\ttry {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t} catch(e) {}\n\n\t\tvar doc = elem.ownerDocument,\n\t\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure we're not dealing with a disconnected DOM node\n\t\tif ( !box || !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box ? { top: box.top, left: box.left } : { top: 0, left: 0 };\n\t\t}\n\n\t\tvar body = doc.body,\n\t\t\twin = getWindow(doc),\n\t\t\tclientTop  = docElem.clientTop  || body.clientTop  || 0,\n\t\t\tclientLeft = docElem.clientLeft || body.clientLeft || 0,\n\t\t\tscrollTop  = win.pageYOffset || jQuery.support.boxModel && docElem.scrollTop  || body.scrollTop,\n\t\t\tscrollLeft = win.pageXOffset || jQuery.support.boxModel && docElem.scrollLeft || body.scrollLeft,\n\t\t\ttop  = box.top  + scrollTop  - clientTop,\n\t\t\tleft = box.left + scrollLeft - clientLeft;\n\n\t\treturn { top: top, left: left };\n\t};\n\n} else {\n\tjQuery.fn.offset = function( options ) {\n\t\tvar elem = this[0];\n\n\t\tif ( options ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t});\n\t\t}\n\n\t\tif ( !elem || !elem.ownerDocument ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tif ( elem === elem.ownerDocument.body ) {\n\t\t\treturn jQuery.offset.bodyOffset( elem );\n\t\t}\n\n\t\tvar computedStyle,\n\t\t\toffsetParent = elem.offsetParent,\n\t\t\tprevOffsetParent = elem,\n\t\t\tdoc = elem.ownerDocument,\n\t\t\tdocElem = doc.documentElement,\n\t\t\tbody = doc.body,\n\t\t\tdefaultView = doc.defaultView,\n\t\t\tprevComputedStyle = defaultView ? defaultView.getComputedStyle( elem, null ) : elem.currentStyle,\n\t\t\ttop = elem.offsetTop,\n\t\t\tleft = elem.offsetLeft;\n\n\t\twhile ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) {\n\t\t\tif ( jQuery.support.fixedPosition && prevComputedStyle.position === \"fixed\" ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tcomputedStyle = defaultView ? defaultView.getComputedStyle(elem, null) : elem.currentStyle;\n\t\t\ttop  -= elem.scrollTop;\n\t\t\tleft -= elem.scrollLeft;\n\n\t\t\tif ( elem === offsetParent ) {\n\t\t\t\ttop  += elem.offsetTop;\n\t\t\t\tleft += elem.offsetLeft;\n\n\t\t\t\tif ( jQuery.support.doesNotAddBorder && !(jQuery.support.doesAddBorderForTableAndCells && rtable.test(elem.nodeName)) ) {\n\t\t\t\t\ttop  += parseFloat( computedStyle.borderTopWidth  ) || 0;\n\t\t\t\t\tleft += parseFloat( computedStyle.borderLeftWidth ) || 0;\n\t\t\t\t}\n\n\t\t\t\tprevOffsetParent = offsetParent;\n\t\t\t\toffsetParent = elem.offsetParent;\n\t\t\t}\n\n\t\t\tif ( jQuery.support.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== \"visible\" ) {\n\t\t\t\ttop  += parseFloat( computedStyle.borderTopWidth  ) || 0;\n\t\t\t\tleft += parseFloat( computedStyle.borderLeftWidth ) || 0;\n\t\t\t}\n\n\t\t\tprevComputedStyle = computedStyle;\n\t\t}\n\n\t\tif ( prevComputedStyle.position === \"relative\" || prevComputedStyle.position === \"static\" ) {\n\t\t\ttop  += body.offsetTop;\n\t\t\tleft += body.offsetLeft;\n\t\t}\n\n\t\tif ( jQuery.support.fixedPosition && prevComputedStyle.position === \"fixed\" ) {\n\t\t\ttop  += Math.max( docElem.scrollTop, body.scrollTop );\n\t\t\tleft += Math.max( docElem.scrollLeft, body.scrollLeft );\n\t\t}\n\n\t\treturn { top: top, left: left };\n\t};\n}\n\njQuery.offset = {\n\n\tbodyOffset: function( body ) {\n\t\tvar top = body.offsetTop,\n\t\t\tleft = body.offsetLeft;\n\n\t\tif ( jQuery.support.doesNotIncludeMarginInBodyOffset ) {\n\t\t\ttop  += parseFloat( jQuery.css(body, \"marginTop\") ) || 0;\n\t\t\tleft += parseFloat( jQuery.css(body, \"marginLeft\") ) || 0;\n\t\t}\n\n\t\treturn { top: top, left: left };\n\t},\n\n\tsetOffset: function( elem, options, i ) {\n\t\tvar position = jQuery.css( elem, \"position\" );\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tvar curElem = jQuery( elem ),\n\t\t\tcurOffset = curElem.offset(),\n\t\t\tcurCSSTop = jQuery.css( elem, \"top\" ),\n\t\t\tcurCSSLeft = jQuery.css( elem, \"left\" ),\n\t\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) && jQuery.inArray(\"auto\", [curCSSTop, curCSSLeft]) > -1,\n\t\t\tprops = {}, curPosition = {}, curTop, curLeft;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\n\njQuery.fn.extend({\n\n\tposition: function() {\n\t\tif ( !this[0] ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tvar elem = this[0],\n\n\t\t// Get *real* offsetParent\n\t\toffsetParent = this.offsetParent(),\n\n\t\t// Get correct offsets\n\t\toffset       = this.offset(),\n\t\tparentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset();\n\n\t\t// Subtract element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\toffset.top  -= parseFloat( jQuery.css(elem, \"marginTop\") ) || 0;\n\t\toffset.left -= parseFloat( jQuery.css(elem, \"marginLeft\") ) || 0;\n\n\t\t// Add offsetParent borders\n\t\tparentOffset.top  += parseFloat( jQuery.css(offsetParent[0], \"borderTopWidth\") ) || 0;\n\t\tparentOffset.left += parseFloat( jQuery.css(offsetParent[0], \"borderLeftWidth\") ) || 0;\n\n\t\t// Subtract the two offsets\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top,\n\t\t\tleft: offset.left - parentOffset.left\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || document.body;\n\t\t\twhile ( offsetParent && (!rroot.test(offsetParent.nodeName) && jQuery.css(offsetParent, \"position\") === \"static\") ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent;\n\t\t});\n\t}\n});\n\n\n// Create scrollLeft and scrollTop methods\njQuery.each( [\"Left\", \"Top\"], function( i, name ) {\n\tvar method = \"scroll\" + name;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\tvar elem, win;\n\n\t\tif ( val === undefined ) {\n\t\t\telem = this[ 0 ];\n\n\t\t\tif ( !elem ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\twin = getWindow( elem );\n\n\t\t\t// Return the scroll offset\n\t\t\treturn win ? (\"pageXOffset\" in win) ? win[ i ? \"pageYOffset\" : \"pageXOffset\" ] :\n\t\t\t\tjQuery.support.boxModel && win.document.documentElement[ method ] ||\n\t\t\t\t\twin.document.body[ method ] :\n\t\t\t\telem[ method ];\n\t\t}\n\n\t\t// Set the scroll offset\n\t\treturn this.each(function() {\n\t\t\twin = getWindow( this );\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!i ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\t i ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\tthis[ method ] = val;\n\t\t\t}\n\t\t});\n\t};\n});\n\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\n\n\n\n// Create width, height, innerHeight, innerWidth, outerHeight and outerWidth methods\njQuery.each([ \"Height\", \"Width\" ], function( i, name ) {\n\n\tvar type = name.toLowerCase();\n\n\t// innerHeight and innerWidth\n\tjQuery.fn[ \"inner\" + name ] = function() {\n\t\tvar elem = this[0];\n\t\treturn elem ?\n\t\t\telem.style ?\n\t\t\tparseFloat( jQuery.css( elem, type, \"padding\" ) ) :\n\t\t\tthis[ type ]() :\n\t\t\tnull;\n\t};\n\n\t// outerHeight and outerWidth\n\tjQuery.fn[ \"outer\" + name ] = function( margin ) {\n\t\tvar elem = this[0];\n\t\treturn elem ?\n\t\t\telem.style ?\n\t\t\tparseFloat( jQuery.css( elem, type, margin ? \"margin\" : \"border\" ) ) :\n\t\t\tthis[ type ]() :\n\t\t\tnull;\n\t};\n\n\tjQuery.fn[ type ] = function( size ) {\n\t\t// Get window width or height\n\t\tvar elem = this[0];\n\t\tif ( !elem ) {\n\t\t\treturn size == null ? null : this;\n\t\t}\n\n\t\tif ( jQuery.isFunction( size ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tvar self = jQuery( this );\n\t\t\t\tself[ type ]( size.call( this, i, self[ type ]() ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode\n\t\t\t// 3rd condition allows Nokia support, as it supports the docElem prop but not CSS1Compat\n\t\t\tvar docElemProp = elem.document.documentElement[ \"client\" + name ],\n\t\t\t\tbody = elem.document.body;\n\t\t\treturn elem.document.compatMode === \"CSS1Compat\" && docElemProp ||\n\t\t\t\tbody && body[ \"client\" + name ] || docElemProp;\n\n\t\t// Get document width or height\n\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t// Either scroll[Width/Height] or offset[Width/Height], whichever is greater\n\t\t\treturn Math.max(\n\t\t\t\telem.documentElement[\"client\" + name],\n\t\t\t\telem.body[\"scroll\" + name], elem.documentElement[\"scroll\" + name],\n\t\t\t\telem.body[\"offset\" + name], elem.documentElement[\"offset\" + name]\n\t\t\t);\n\n\t\t// Get or set width or height on the element\n\t\t} else if ( size === undefined ) {\n\t\t\tvar orig = jQuery.css( elem, type ),\n\t\t\t\tret = parseFloat( orig );\n\n\t\t\treturn jQuery.isNumeric( ret ) ? ret : orig;\n\n\t\t// Set the width or height on the element (default to pixels if value is unitless)\n\t\t} else {\n\t\t\treturn this.css( type, typeof size === \"string\" ? size : size + \"px\" );\n\t\t}\n\t};\n\n});\n\n\n\n\n// Expose jQuery to the global object\nwindow.jQuery = window.$ = jQuery;\n\n// Expose jQuery as an AMD module, but only for AMD loaders that\n// understand the issues with loading multiple versions of jQuery\n// in a page that all might call define(). The loader will indicate\n// they have special allowances for multiple jQuery versions by\n// specifying define.amd.jQuery = true. Register as a named module,\n// since jQuery can be concatenated with other files that may use define,\n// but not use a proper concatenation script that understands anonymous\n// AMD modules. A named AMD is safest and most robust way to register.\n// Lowercase jquery is used because AMD module names are derived from\n// file names, and jQuery is normally delivered in a lowercase file name.\n// Do this after creating the global so that if an AMD module wants to call\n// noConflict to hide this version of jQuery, it will work.\nif ( typeof define === \"function\" && define.amd && define.amd.jQuery ) {\n\tdefine( \"jquery\", [], function () { return jQuery; } );\n}\n\n\n\n})( window );\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/analysis.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/analysis\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(analysis)$' ),\n  function( context )\n  {\n    var active_core = this.active_core;\n    var core_basepath = active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n \n    $.get\n    (\n      'tpl/analysis.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                \n        var analysis_element = $( '#analysis', content_element );\n        var analysis_form = $( 'form', analysis_element );\n        var analysis_result = $( '#analysis-result', analysis_element );\n        analysis_result.hide();\n\n        var verbose_link = $( '.verbose_output a', analysis_element );\n\n        var type_or_name = $( '#type_or_name', analysis_form );\n        var schema_browser_element = $( '#tor_schema' );\n        var schema_browser_path = app.core_menu.find( '.schema-browser a' ).attr( 'href' );\n        var schema_browser_map = { 'fieldname' : 'field', 'fieldtype' : 'type' };\n\n        type_or_name\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var info = $( this ).val().split( '=' );\n\n              schema_browser_element\n                .attr( 'href', schema_browser_path + '?' + schema_browser_map[info[0]] + '=' + info[1] );\n            }\n          );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/luke?wt=json&show=schema',\n            dataType : 'json',\n            context : type_or_name,\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .html( '<option value=\"\">Loading ... </option>' )\n                .addClass( 'loader' );\n            },\n            success : function( response, text_status, xhr )\n            {\n              var content = '';\n                            \n              var fields = [];\n              for( var field_name in response.schema.fields )\n              {\n                fields.push\n                (\n                  '<option value=\"fieldname=' + field_name + '\">' + field_name + '</option>'\n                );\n              }\n              if( 0 !== fields.length )\n              {\n                content += '<optgroup label=\"Fields\">' + \"\\n\";\n                content += fields.sort().join( \"\\n\" ) + \"\\n\";\n                content += '</optgroup>' + \"\\n\";\n              }\n                            \n              var types = [];\n              for( var type_name in response.schema.types )\n              {\n                types.push\n                (\n                  '<option value=\"fieldtype=' + type_name + '\">' + type_name + '</option>'\n                );\n              }\n              if( 0 !== types.length )\n              {\n                content += '<optgroup label=\"Types\">' + \"\\n\";\n                content += types.sort().join( \"\\n\" ) + \"\\n\";\n                content += '</optgroup>' + \"\\n\";\n              }\n                            \n              this\n                .html( content );\n\n              var defaultSearchField = 'fieldname\\=' + ( context.params['analysis.fieldname'] || response.schema.defaultSearchField );\n\n              if( context.params['analysis.fieldtype'] )\n              {\n                defaultSearchField = 'fieldtype\\=' + context.params['analysis.fieldtype'];\n              }\n\n              $( 'option[value=\"' + defaultSearchField + '\"]', this )\n                .attr( 'selected', 'selected' );\n\n              this\n                .chosen()\n                .trigger( 'change' );\n\n              var fields = 0;\n              for( var key in context.params )\n              {\n                if( 'string' === typeof context.params[key] )\n                {\n                  fields++;\n                  $( '[name=\"' + key + '\"]', analysis_form )\n                    .val( context.params[key].replace( /\\+/g, ' ' ) );\n                }\n              }\n\n              if( 'undefined' !== typeof context.params.verbose_output )\n              {\n                verbose_link.trigger( 'toggle', !!context.params.verbose_output.match( /^(1|true)$/ ) );\n              }\n\n              if( 0 !== fields )\n              {\n                analysis_form\n                  .trigger( 'execute' );\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n              this\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                        \n        $( '.analysis-error .head a', analysis_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.analysis-error' )\n                .toggleClass( 'expanded' );\n            }\n          );\n                        \n        var check_empty_spacer = function()\n        {\n          var spacer_holder = $( 'td.part.data.spacer .holder', analysis_result );\n\n          if( 0 === spacer_holder.size() )\n          {\n            return false;\n          }\n\n          var verbose_output = analysis_result.hasClass( 'verbose_output' );\n\n          spacer_holder\n            .each\n            (\n              function( index, element )\n              {\n                element = $( element );\n\n                if( verbose_output )\n                {\n                  var cell = element.parent();\n                  element.height( cell.height() );\n                }\n                else\n                {\n                  element.removeAttr( 'style' );\n                }\n              }\n            );\n        }\n                        \n        verbose_link\n          .die( 'toggle' )\n          .live\n          (\n            'toggle',\n            function( event, state )\n            {\n              $( this ).parent()\n                .toggleClass( 'active', state );\n                            \n              analysis_result\n                .toggleClass( 'verbose_output', state );\n                            \n              check_empty_spacer();\n            }\n          )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parent()\n                .toggleClass( 'active' );\n\n              analysis_form.trigger( 'submit' );\n            }\n          );\n\n        var button = $( 'button', analysis_form )\n\n        var compute_analysis_params = function()\n        {\n          var params = analysis_form.formToArray();\n                          \n          var type_or_name = $( '#type_or_name', analysis_form ).val().split( '=' );\n          params.push( { name: 'analysis.' + type_or_name[0], value: type_or_name[1] } );\n          params.push( { name: 'verbose_output', value: $( '.verbose_output', analysis_element ).hasClass( 'active' ) ? 1 : 0 } );\n\n          return params;\n        }\n                \n        analysis_form\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              var params = $.param( compute_analysis_params() )\n                            .replace( /[\\w\\.]+=\\+*(&)/g, '$1' ) // remove empty parameters\n                            .replace( /(&)+/, '$1' )            // reduce multiple ampersands\n                            .replace( /^&/, '' );               // remove leading ampersand\n\n              context.redirect( context.path.split( '?' ).shift() + '?' + params );\n              return false;\n            }\n          )\n          .die( 'execute' )\n          .live\n          (\n            'execute',\n            function( event )\n            {\n              var url = core_basepath + '/analysis/field?wt=json&analysis.showmatch=true&' + context.path.split( '?' ).pop();\n              url = url.replace( /&verbose_output=\\d/, '' );\n\n              $.ajax\n              (\n                {\n                  url : url,\n                  dataType : 'json',\n                  beforeSend : function( xhr, settings )\n                  {\n                    loader.show( $( 'span', button ) );\n                    button.attr( 'disabled', true );\n                  },\n                  success : function( response, status_text, xhr, form )\n                  {\n                    $( '.analysis-error', analysis_element )\n                      .hide();\n                                    \n                    analysis_result\n                      .empty()\n                      .show();\n                                    \n                    for( var name in response.analysis.field_names )\n                    {\n                      build_analysis_table( 'name', name, response.analysis.field_names[name] );\n                    }\n                                    \n                    for( var name in response.analysis.field_types )\n                    {\n                      build_analysis_table( 'type', name, response.analysis.field_types[name] );\n                    }\n\n                    check_empty_spacer();\n                  },\n                  error : function( xhr, text_status, error_thrown )\n                  {\n                    analysis_result\n                      .empty()\n                      .hide();\n\n                    if( 404 === xhr.status )\n                    {\n                      $( '#analysis-handler-missing', analysis_element )\n                        .show();\n                    }\n                    else\n                    {\n                      $( '#analysis-error', analysis_element )\n                        .show();\n\n                      var response = null;\n                      try\n                      {\n                        eval( 'response = ' + xhr.responseText + ';' );\n                      }\n                      catch( e )\n                      {\n                        console.error( e );\n                      }\n\n                      $( '#analysis-error .body', analysis_element )\n                        .text( response ? response.error.msg : xhr.responseText );\n                    }\n                  },\n                  complete : function()\n                  {\n                    loader.hide( $( 'span', button ) );\n                    button.removeAttr( 'disabled' );\n                  }\n                }\n              );\n            }\n          );\n\n          var generate_class_name = function( type )\n          {\n            var classes = [type];\n            if( 'text' !== type )\n            {\n              classes.push( 'verbose_output' );\n            }\n            return classes.join( ' ' );\n          }\n                    \n          var build_analysis_table = function( field_or_name, name, analysis_data )\n          {        \n            for( var type in analysis_data )\n            {\n              var type_length = analysis_data[type].length;\n              if( 0 !== type_length )\n              {\n                var global_elements_count = 0;\n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  if( 'string' === typeof analysis_data[type][i+1] )\n                  {\n                    analysis_data[type][i+1] = [{ 'text': analysis_data[type][i+1] }]\n                  }\n\n                  var tmp = {};\n                  var cols = analysis_data[type][i+1].filter\n                  (\n                    function( obj )\n                    {\n                      var obj_position = obj.position || 0;\n                      if( !tmp[obj_position] )\n                      {\n                        tmp[obj_position] = true;\n                        return true;\n                      }\n\n                      return false;\n                    }\n                  );\n\n                  global_elements_count = Math.max( global_elements_count, cols.length );\n                }\n\n                var content = '<div class=\"' + type + '\">' + \"\\n\";\n                content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                                \n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  var colspan = 1;\n                  var elements = analysis_data[type][i+1];\n                  var elements_count = global_elements_count;\n                  \n                  if( !elements[0] || !elements[0].positionHistory )\n                  {\n                    colspan = elements_count;\n                    elements_count = 1;\n                  }\n\n                  var legend = [];\n                  for( var key in elements[0] )\n                  {\n                    var key_parts = key.split( '#' );\n                    var used_key = key_parts.pop();\n                    var short_key = used_key;\n\n                    if( 1 === key_parts.length )\n                    {\n                      used_key = '<abbr title=\"' + key + '\">' + used_key + '</abbr>';\n                    }\n\n                    if( 'positionHistory' === short_key || 'match' === short_key )\n                    {\n                      continue;\n                    }\n\n                    legend.push\n                    (\n                      '<tr class=\"' + generate_class_name( short_key ) + '\">' +\n                      '<td>' + used_key + '</td>' +\n                      '</tr>'\n                    );\n                  }\n\n                  content += '<tbody>' + \"\\n\";\n                  content += '<tr class=\"step\">' + \"\\n\";\n\n                    // analyzer\n                    var analyzer_name = analysis_data[type][i].replace( /(\\$1)+$/g, '' );\n\n                    var analyzer_short = -1 !== analyzer_name.indexOf( '$' )\n                                       ? analyzer_name.split( '$' )[1]\n                                       : analyzer_name.split( '.' ).pop();\n                    analyzer_short = analyzer_short.match( /[A-Z]/g ).join( '' );\n\n                    content += '<td class=\"part analyzer\"><div>' + \"\\n\";\n                    content += '<abbr title=\"' + analysis_data[type][i].esc() + '\">' + \"\\n\";\n                    content += analyzer_short.esc() + '</abbr></div></td>' + \"\\n\";\n\n                    // legend\n                    content += '<td class=\"part legend\"><div class=\"holder\">' + \"\\n\";\n                    content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                    content += '<tr><td>' + \"\\n\";\n                    content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                    content += legend.join( \"\\n\" ) + \"\\n\";\n                    content += '</table></td></tr></table></td>' + \"\\n\";\n\n                    // data\n                    var cell_content = '<td class=\"part data spacer\" colspan=\"' + colspan + '\"><div class=\"holder\">&nbsp;</div></td>';\n                    var cells = new Array( elements_count + 1 ).join( cell_content );\n                    content += cells + \"\\n\";\n\n                  content += '</tr>' + \"\\n\";\n                  content += '</tbody>' + \"\\n\";\n                }\n                content += '</table>' + \"\\n\";\n                content += '</div>' + \"\\n\";\n\n                $( '.' + type, analysis_result )\n                  .remove();\n\n                analysis_result\n                  .append( content );\n                                \n                var analysis_result_type = $( '.' + type, analysis_result );\n\n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  for( var j = 0; j < analysis_data[type][i+1].length; j += 1 )\n                  {\n                    var pos = analysis_data[type][i+1][j].positionHistory\n                        ? analysis_data[type][i+1][j].positionHistory[0]\n                        : 1;\n                    var selector = 'tr.step:eq(' + ( i / 2 ) +') '\n                                 + 'td.data:eq(' + ( pos - 1 ) + ') '\n                                 + '.holder';\n                    var cell = $( selector, analysis_result_type );\n\n                    cell.parent()\n                      .removeClass( 'spacer' );\n\n                    var table = $( 'table tr.details', cell );\n                    if( 0 === table.size() )\n                    {\n                      cell\n                        .html\n                        (\n                          '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \n                          '<tr class=\"details\"></tr></table>'\n                        );\n                      var table = $( 'table tr.details', cell );\n                    }\n\n                    var tokens = [];\n                    for( var key in analysis_data[type][i+1][j] )\n                    {\n                      var short_key = key.split( '#' ).pop();\n                                            \n                      if( 'positionHistory' === short_key || 'match' === short_key )\n                      {\n                        continue;\n                      }\n\n                      var classes = [];\n                      classes.push( generate_class_name( short_key ) );\n\n                      var data = analysis_data[type][i+1][j][key];\n                      if( 'object' === typeof data && data instanceof Array )\n                      {\n                        data = data.join( ' ' );\n                      }\n                      if( 'string' === typeof data )\n                      {\n                        data = data.esc();\n                      }\n\n                      if( null === data || 0 === data.length )\n                      {\n                        classes.push( 'empty' );\n                        data = '&empty;';\n                      }\n\n                      if( analysis_data[type][i+1][j].match && \n                        ( 'text' === short_key || 'raw_bytes' === short_key ) )\n                      {\n                        classes.push( 'match' );\n                      }\n\n                      tokens.push\n                      (\n                        '<tr class=\"' + classes.join( ' ' ) + '\">' +\n                        '<td>' + data + '</td>' +\n                        '</tr>'\n                      );\n                    }\n                    table\n                      .append\n                      (\n                        '<td class=\"details\">' +\n                        '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' +\n                        tokens.join( \"\\n\" ) +\n                        '</table></td>'\n                      );\n                  }\n                }\n                \n              }\n            }\n          }\n                    \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/app.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar loader = {\n    \n  show : function( element )\n  {\n    $( element )\n      .addClass( 'loader' );\n  },\n    \n  hide : function( element )\n  {\n    $( element )\n      .removeClass( 'loader' );\n  }\n    \n};\n\nNumber.prototype.esc = function()\n{\n  return new String( this ).esc();\n}\n\nString.prototype.esc = function()\n{\n  return this.replace( /</g, '&lt;' ).replace( />/g, '&gt;' );\n}\n\nSolrDate = function( date )\n{\n  // [\"Sat Mar 03 11:00:00 CET 2012\", \"Sat\", \"Mar\", \"03\", \"11:00:00\", \"CET\", \"2012\"]\n  var parts = date.match( /^(\\w+)\\s+(\\w+)\\s+(\\d+)\\s+(\\d+\\:\\d+\\:\\d+)\\s+(\\w+)\\s+(\\d+)$/ );\n    \n  // \"Sat Mar 03 2012 10:37:33\"\n  return new Date( parts[1] + ' ' + parts[2] + ' ' + parts[3] + ' ' + parts[6] + ' ' + parts[4] );\n}\n\nvar sammy = $.sammy\n(\n  function()\n  {\n    this.bind\n    (\n      'run',\n      function( event, config )\n      {\n        if( 0 === config.start_url.length )\n        {\n          location.href = '#/';\n          return false;\n        }\n      }\n    );\n\n    this.bind\n    (\n      'error',\n      function( message, original_error )\n      {\n        alert( original_error.message );\n      }\n    );\n        \n    // activate_core\n    this.before\n    (\n      {},\n      function( context )\n      {\n        app.clear_timeout();\n\n        var menu_wrapper = $( '#menu-wrapper' );\n\n        $( 'li[id].active', menu_wrapper )\n          .removeClass( 'active' );\n                \n        $( 'li.active', menu_wrapper )\n          .removeClass( 'active' );\n\n        // global dashboard doesn't have params.splat\n        if( !this.params.splat )\n        {\n          this.params.splat = [ '~index' ];\n        }\n\n        var selector = '~' === this.params.splat[0][0]\n                     ? '#' + this.params.splat[0].replace( /^~/, '' ) + '.global'\n                     : '#core-selector #' + this.params.splat[0].replace( /\\./g, '__' );\n\n        var active_element = $( selector, menu_wrapper );\n                  \n        if( 0 === active_element.size() )\n        {\n          this.app.error( 'There exists no core with name \"' + this.params.splat[0] + '\"' );\n          return false;\n        }\n\n        if( active_element.hasClass( 'global' ) )\n        {\n          active_element\n            .addClass( 'active' );\n\n          if( this.params.splat[1] )\n          {\n            $( '.' + this.params.splat[1], active_element )\n              .addClass( 'active' );\n          }\n\n          $( '#core-selector option[selected]' )\n            .removeAttr( 'selected' )\n            .trigger( 'liszt:updated' );\n\n          $( '#core-selector .chzn-container > a' )\n            .addClass( 'chzn-default' );\n        }\n        else\n        {\n          active_element\n            .attr( 'selected', 'selected' )\n            .trigger( 'liszt:updated' );\n\n          if( !this.params.splat[1] )\n          {\n            this.params.splat[1] = 'overview';\n          }\n\n          $( '#core-menu .' + this.params.splat[1] )\n            .addClass( 'active' );\n\n          this.active_core = active_element;\n        }\n      }\n    );\n  }\n);\n\nvar solr_admin = function( app_config )\n{\n  that = this,\n\n  menu_element = null,\n\n  is_multicore = null,\n  cores_data = null,\n  active_core = null,\n  environment_basepath = null,\n    \n  config = app_config,\n  params = null,\n  dashboard_values = null,\n  schema_browser_data = null,\n\n  plugin_data = null,\n    \n  this.menu_element = $( '#core-selector select' );\n  this.core_menu = $( '#core-menu ul' );\n\n  this.config = config;\n  this.timeout = null;\n\n  this.core_regex_base = '^#\\\\/([\\\\w\\\\d-\\\\.]+)';\n\n  browser = {\n    locale : null,\n    language : null,\n    country : null\n  };\n\n  show_global_error = function( error )\n  {\n    var main = $( '#main' );\n\n    $( 'div[id$=\"-wrapper\"]', main )\n      .remove();\n\n    main\n      .addClass( 'error' )\n      .append( error );\n\n    var pre_tags = $( 'pre', main );\n    if( 0 !== pre_tags.size() )\n    {\n      hljs.highlightBlock( pre_tags.get(0) ); \n    }\n  };\n\n  sort_cores_data = function sort_cores_data( cores_status )\n  {\n    // build array of core-names for sorting\n    var core_names = [];\n    for( var core_name in cores_status )\n    {\n      core_names.push( core_name );\n    }\n    core_names.sort();\n\n    var core_count = core_names.length;\n    var cores = {};\n\n    for( var i = 0; i < core_count; i++ )\n    {\n      var core_name = core_names[i];\n      cores[core_name] = cores_status[core_name];\n    }\n\n    return cores;\n  };\n\n  this.set_cores_data = function set_cores_data( cores )\n  {\n    that.cores_data = sort_cores_data( cores.status );\n    \n    that.menu_element\n      .empty();\n\n    var core_list = [];\n    core_list.push( '<option></option>' );\n\n    var core_count = 0;\n    for( var core_name in that.cores_data )\n    {\n      core_count++;\n      var core_path = config.solr_path + '/' + core_name;\n      var classes = [];\n\n      if( !environment_basepath )\n      {\n        environment_basepath = core_path;\n      }\n\n      if( cores.status[core_name]['isDefaultCore'] )\n      {\n        classes.push( 'default' );\n      }\n\n      var core_tpl = '<option '\n                   + '    id=\"' + core_name.replace( /\\./g, '__' ) + '\" '\n                   + '    class=\"' + classes.join( ' ' ) + '\"'\n                   + '    data-basepath=\"' + core_path + '\"'\n                   + '    schema=\"' + cores.status[core_name]['schema'] + '\"'\n                   + '    config=\"' + cores.status[core_name]['config'] + '\"'\n                   + '    value=\"#/' + core_name + '\"'\n                   + '    title=\"' + core_name + '\"'\n                   + '>' \n                   + core_name \n                   + '</option>';\n\n      core_list.push( core_tpl );\n    }\n\n    that.menu_element\n      .append( core_list.join( \"\\n\" ) );\n\n    if( cores.initFailures )\n    {\n      var failures = [];\n      for( var core_name in cores.initFailures )\n      {\n        failures.push\n        (\n          '<li>' +\n            '<strong>' + core_name.esc() + ':</strong>' + \"\\n\" +\n            cores.initFailures[core_name].esc() + \"\\n\" +\n          '</li>'\n        );\n      }\n\n      if( 0 !== failures.length )\n      {\n        var init_failures = $( '#init-failures' );\n\n        init_failures.show();\n        $( 'ul', init_failures ).html( failures.join( \"\\n\" ) );\n      }\n    }\n\n    if( 0 === core_count )\n    {\n      show_global_error\n      ( \n        '<div class=\"message\">There are no SolrCores running. <br/> Using the Solr Admin UI currently requires at least one SolrCore.</div>'\n      );\n    } // else: we have at least one core....\n  };\n\n  this.run = function()\n  {\n    var navigator_language = navigator.userLanguage || navigator.language;\n    var language_match = navigator_language.match( /^(\\w{2})([-_](\\w{2}))?$/ );\n    if( language_match )\n    {\n      if( language_match[1] )\n      {\n        browser.language = language_match[1].toLowerCase();\n      }\n      if( language_match[3] )\n      {\n        browser.country = language_match[3].toUpperCase();\n      }\n      if( language_match[1] && language_match[3] )\n      {\n        browser.locale = browser.language + '_' + browser.country\n      }\n    }\n\n    $.ajax\n    (\n      {\n        url : config.solr_path + config.core_admin_path + '?wt=json&indexInfo=false',\n        dataType : 'json',\n        beforeSend : function( arr, form, options )\n        {               \n          $( '#content' )\n            .html( '<div id=\"index\"><div class=\"loader\">Loading ...</div></div>' );\n        },\n        success : function( response )\n        {\n          that.set_cores_data( response );\n\n          that.menu_element\n            .chosen()\n            .off( 'change' )\n            .on\n            (\n              'change',\n              function( event )\n              {\n                location.href = $( 'option:selected', this ).val();\n                return false;\n              }\n            )\n            .on\n            (\n              'liszt:updated',\n              function( event )\n              {\n                var core_name = $( 'option:selected', this ).text();\n\n                if( core_name )\n                {\n                  that.core_menu\n                    .html\n                    (\n                      '<li class=\"overview\"><a href=\"#/' + core_name + '\"><span>Overview</span></a></li>' + \"\\n\" +\n                      '<li class=\"ping\"><a rel=\"' + that.config.solr_path + '/' + core_name + '/admin/ping\"><span>Ping</span></a></li>' + \"\\n\" +\n                      '<li class=\"query\"><a href=\"#/' + core_name + '/query\"><span>Query</span></a></li>' + \"\\n\" +\n                      '<li class=\"schema\"><a href=\"#/' + core_name + '/schema\"><span>Schema</span></a></li>' + \"\\n\" +\n                      '<li class=\"config\"><a href=\"#/' + core_name + '/config\"><span>Config</span></a></li>' + \"\\n\" +\n                      '<li class=\"replication\"><a href=\"#/' + core_name + '/replication\"><span>Replication</span></a></li>' + \"\\n\" +\n                      '<li class=\"analysis\"><a href=\"#/' + core_name + '/analysis\"><span>Analysis</span></a></li>' + \"\\n\" +\n                      '<li class=\"schema-browser\"><a href=\"#/' + core_name + '/schema-browser\"><span>Schema Browser</span></a></li>' + \"\\n\" + \n                      '<li class=\"plugins\"><a href=\"#/' + core_name + '/plugins\"><span>Plugins / Stats</span></a></li>' + \"\\n\" +\n                      '<li class=\"dataimport\"><a href=\"#/' + core_name + '/dataimport\"><span>Dataimport</span></a></li>' + \"\\n\"\n                    )\n                    .show();\n                }\n                else\n                {\n                  that.core_menu\n                    .hide()\n                    .empty();\n                }\n              }\n            );\n\n          for( var core_name in response.status )\n          {\n            var core_path = config.solr_path + '/' + core_name;\n            if( !environment_basepath )\n            {\n              environment_basepath = core_path;\n            }\n          }\n\n          var system_url = environment_basepath + '/admin/system?wt=json';\n          $.ajax\n          (\n            {\n              url : system_url,\n              dataType : 'json',\n              beforeSend : function( arr, form, options )\n              {\n              },\n              success : function( response )\n              {\n                that.dashboard_values = response;\n\n                var environment_args = null;\n                var cloud_args = null;\n\n                if( response.jvm && response.jvm.jmx && response.jvm.jmx.commandLineArgs )\n                {\n                  var command_line_args = response.jvm.jmx.commandLineArgs.join( ' | ' );\n\n                  environment_args = command_line_args.match( /-Dsolr.environment=((dev|test|prod)?[\\w\\d]*)/i );\n                }\n\n                if( response.mode )\n                {\n                  cloud_args = response.mode.match( /solrcloud/i );\n                }\n                \n                // title\n\n                $( 'title', document )\n                  .append( ' (' + response.core.host + ')' );\n\n                // environment\n\n                var wrapper = $( '#wrapper' );\n                var environment_element = $( '#environment' );\n                if( environment_args )\n                {\n                  wrapper\n                    .addClass( 'has-environment' );\n\n                  if( environment_args[1] )\n                  {\n                    environment_element\n                      .html( environment_args[1] );\n                  }\n\n                  if( environment_args[2] )\n                  {\n                    environment_element\n                      .addClass( environment_args[2] );\n                  }\n                }\n                else\n                {\n                  wrapper\n                    .removeClass( 'has-environment' );\n                }\n\n                // cloud\n\n                var cloud_nav_element = $( '#menu #cloud' );\n                if( cloud_args )\n                {\n                  cloud_nav_element\n                    .show();\n                }\n\n                // sammy\n\n                sammy.run( location.hash );\n              },\n              error : function()\n              {\n                show_global_error\n                (\n                  '<div class=\"message\"><p>Unable to load environment info from <code>' + system_url.esc() + '</code>.</p>' +\n                  '<p>This interface requires that you activate the admin request handlers in all SolrCores by adding the ' +\n                  'following configuration to your <code>solrconfig.xml</code>:</p></div>' + \"\\n\" +\n\n                  '<div class=\"code\"><pre class=\"syntax language-xml\"><code>' +\n                  '<!-- Admin Handlers - This will register all the standard admin RequestHandlers. -->'.esc() + \"\\n\" +\n                  '<requestHandler name=\"/admin/\" class=\"solr.admin.AdminHandlers\" />'.esc() +\n                  '</code></pre></div>'\n                );\n              },\n              complete : function()\n              {\n                loader.hide( this );\n              }\n            }\n          );\n        },\n        error : function()\n        {\n        },\n        complete : function()\n        {\n        }\n      }\n    );\n  };\n\n  this.convert_duration_to_seconds = function convert_duration_to_seconds( str )\n  {\n    var seconds = 0;\n    var arr = new String( str || '' ).split( '.' );\n    var parts = arr[0].split( ':' ).reverse();\n    var parts_count = parts.length;\n\n    for( var i = 0; i < parts_count; i++ )\n    {\n      seconds += ( parseInt( parts[i], 10 ) || 0 ) * Math.pow( 60, i );\n    }\n\n    // treat more or equal than .5 as additional second\n    if( arr[1] && 5 <= parseInt( arr[1][0], 10 ) )\n    {\n      seconds++;\n    }\n\n    return seconds;\n  };\n\n  this.convert_seconds_to_readable_time = function convert_seconds_to_readable_time( seconds )\n  {\n    seconds = parseInt( seconds || 0, 10 );\n    var minutes = Math.floor( seconds / 60 );\n    var hours = Math.floor( minutes / 60 );\n\n    var text = [];\n    if( 0 !== hours )\n    {\n      text.push( hours + 'h' );\n      seconds -= hours * 60 * 60;\n      minutes -= hours * 60;\n    }\n\n    if( 0 !== minutes )\n    {\n      text.push( minutes + 'm' );\n      seconds -= minutes * 60;\n    }\n\n    if( 0 !== seconds )\n    {\n      text.push( ( '0' + seconds ).substr( -2 ) + 's' );\n    }\n\n    return text.join( ' ' );\n  };\n\n  this.clear_timeout = function clear_timeout()\n  {\n    if( !app.timeout )\n    {\n      return false;\n    }\n\n    console.debug( 'Clearing Timeout #' + this.timeout );\n    clearTimeout( this.timeout );\n    this.timeout = null;\n  };\n\n  this.format_json = function format_json( json_str )\n  {\n    if( JSON.stringify && JSON.parse )\n    {\n      json_str = JSON.stringify( JSON.parse( json_str ), undefined, 2 );\n    }\n\n    return json_str;\n  };\n\n  this.format_number = function format_number( number )\n  {\n    var sep = {\n      'de_CH' : '\\'',\n      'de' : '.',\n      'en' : ',',\n      'es' : '.',\n      'it' : '.',\n      'ja' : ',',\n      'sv' : ' ',\n      'tr' : '.',\n      '_' : '' // fallback\n    };\n\n    return ( number || 0 ).toString().replace\n    (\n      /\\B(?=(\\d{3})+(?!\\d))/g,\n      sep[ browser.locale ] || sep[ browser.language ] || sep['_']\n    );\n  };\n\n};\n\n$.ajaxSetup( { cache: false } );\nvar app = new solr_admin( app_config );\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/cloud.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar zk_error = function zk_error( xhr, text_status, error_thrown )\n{\n  var zk = null;\n  try\n  {\n    eval( 'zk = ' + xhr.responseText + ';' );\n  }\n  catch( e ) {}\n\n  var message = '<p class=\"txt\">Loading of \"<code>' + xhr.url + '</code>\" '\n              + 'failed (HTTP-Status <code>' + xhr.status + '</code>)</p>' + \"\\n\";\n\n  if( zk.error )\n  {\n    message += '<p class=\"msg\">\"' + zk.error.esc() + '\"</p>' + \"\\n\";\n  }\n  \n  this.closest( '#cloud' )\n    .html( '<div class=\"block\" id=\"error\">' + message + '</div>' );\n};\n\nvar init_debug = function( cloud_element )\n{\n  var debug_element = $( '#debug', cloud_element );\n  var debug_button = $( '#menu #cloud .dump a' );\n\n  var clipboard_element = $( '.clipboard', debug_element );\n  var clipboard_button = $( 'a', clipboard_element );\n\n  debug_button\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        debug_element.trigger( 'show' );\n        return false;\n      }\n    );\n\n  $( '.close', debug_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        debug_element.trigger( 'hide' );\n        return false;\n      }\n    );\n\n  $( '.clipboard', debug_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        return false;\n      }\n    );\n\n  debug_element\n    .die( 'show' )\n    .live\n    (\n      'show',\n      function( event )\n      {\n        debug_element.show();\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json&dump=true',\n            dataType : 'text',\n            context : debug_element,\n            beforeSend : function( xhr, settings )\n            {\n              $( '.debug', debug_element )\n                .html( '<span class=\"loader\">Loading Dump ...</span>' );\n\n              ZeroClipboard.setMoviePath( 'img/ZeroClipboard.swf' );\n\n              clipboard_client = new ZeroClipboard.Client();\n                              \n              clipboard_client.addEventListener\n              (\n                'load',\n                function( client )\n                {\n                }\n              );\n\n              clipboard_client.addEventListener\n              (\n                'complete',\n                function( client, text )\n                {\n                  clipboard_element\n                    .addClass( 'copied' );\n\n                  clipboard_button\n                    .data( 'text', clipboard_button.text() )\n                    .text( clipboard_button.data( 'copied' ) );\n                }\n              );\n            },\n            success : function( response, text_status, xhr )\n            {\n              clipboard_client.glue\n              (\n                clipboard_element.get(0),\n                clipboard_button.get(0)\n              );\n\n              clipboard_client.setText( response.replace( /\\\\/g, '\\\\\\\\' ) );\n\n              $( '.debug', debug_element )\n                .removeClass( 'loader' )\n                .text( response );\n            },\n            error : function( xhr, text_status, error_thrown )\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      }\n    )\n    .die( 'hide' )\n    .live\n    (\n      'hide',\n      function( event )\n      {\n        $( '.debug', debug_element )\n          .empty();\n\n        clipboard_element\n          .removeClass( 'copied' );\n\n        clipboard_button\n          .data( 'copied', clipboard_button.text() )\n          .text( clipboard_button.data( 'text' ) );\n\n        clipboard_client.destroy();\n\n        debug_element.hide();\n      }\n    );\n};\n\nvar helper_path_class = function( p )\n{\n  var classes = [ 'link' ];\n  classes.push( 'lvl-' + p.target.depth );\n\n  if( p.target.data && p.target.data.leader )\n  {\n    classes.push( 'leader' );\n  }\n\n  if( p.target.data && p.target.data.state )\n  {\n    classes.push( p.target.data.state );\n  }\n\n  return classes.join( ' ' );\n};\n\nvar helper_node_class = function( d )\n{\n  var classes = [ 'node' ];\n  classes.push( 'lvl-' + d.depth );\n\n  if( d.data && d.data.leader )\n  {\n    classes.push( 'leader' );\n  }\n\n  if( d.data && d.data.state )\n  {\n    classes.push( d.data.state );\n  }\n\n  return classes.join( ' ' );\n};\n\nvar helper_data = {\n  protocol: [],\n  host: [],\n  hostname: [],\n  port: [],\n  pathname: []\n};\n\nvar helper_node_text = function( d )\n{\n  if( !d.data || !d.data.uri )\n  {\n    return d.name;\n  }\n\n  var name = d.data.uri.hostname;\n\n  if( 1 !== helper_data.protocol.length )\n  {\n    name = d.data.uri.protocol + '//' + name;\n  }\n\n  if( 1 !== helper_data.port.length )\n  {\n    name += ':' + d.data.uri.port;\n  }\n\n  if( 1 !== helper_data.pathname.length )\n  {\n    name += d.data.uri.pathname;\n  }\n\n  return name;\n};\n\nvar generate_graph = function( graph_element, graph_data, leaf_count )\n{\n  var w = graph_element.width(),\n      h = leaf_count * 20;\n\n  var tree = d3.layout.tree()\n    .size([h, w - 400]);\n\n  var diagonal = d3.svg.diagonal()\n    .projection(function(d) { return [d.y, d.x]; });\n\n  var vis = d3.select( '#canvas' ).append( 'svg' )\n    .attr( 'width', w )\n    .attr( 'height', h)\n    .append( 'g' )\n      .attr( 'transform', 'translate(100, 0)' );\n\n  var nodes = tree.nodes( graph_data );\n\n  var link = vis.selectAll( 'path.link' )\n    .data( tree.links( nodes ) )\n    .enter().append( 'path' )\n      .attr( 'class', helper_path_class )\n      .attr( 'd', diagonal );\n\n  var node = vis.selectAll( 'g.node' )\n    .data( nodes )\n    .enter().append( 'g' )\n      .attr( 'class', helper_node_class )\n      .attr( 'transform', function(d) { return 'translate(' + d.y + ',' + d.x + ')'; } )\n\n  node.append( 'circle' )\n    .attr( 'r', 4.5 );\n\n  node.append( 'text' )\n    .attr( 'dx', function( d ) { return 0 === d.depth ? -8 : 8; } )\n    .attr( 'dy', function( d ) { return 5; } )\n    .attr( 'text-anchor', function( d ) { return 0 === d.depth ? 'end' : 'start'; } )\n    .attr( 'data-href', function( d ) { return d.name; } )\n    .text( helper_node_text );\n\n  $( 'text[data-href*=\"//\"]', graph_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function()\n      {\n        location.href = $( this ).data( 'href' );\n      }\n    );\n};\n\nvar generate_rgraph = function( graph_element, graph_data, leaf_count )\n{\n  var max_val = Math.min( graph_element.width(), $( 'body' ).height() )\n  var r = max_val / 2;\n\n  var cluster = d3.layout.cluster()\n    .size([360, r - 160]);\n\n  var diagonal = d3.svg.diagonal.radial()\n    .projection(function(d) { return [d.y, d.x / 180 * Math.PI]; });\n\n  var vis = d3.select( '#canvas' ).append( 'svg' )\n    .attr( 'width', r * 2 )\n    .attr( 'height', r * 2 )\n    .append( 'g' )\n      .attr( 'transform', 'translate(' + r + ',' + r + ')' );\n\n  var nodes = cluster.nodes( graph_data );\n\n  var link = vis.selectAll( 'path.link' )\n    .data( cluster.links( nodes ) )\n    .enter().append( 'path' )\n      .attr( 'class', helper_path_class )\n      .attr( 'd', diagonal );\n\n  var node = vis.selectAll( 'g.node' )\n    .data( nodes )\n    .enter().append( 'g' )\n      .attr( 'class', helper_node_class )\n      .attr( 'transform', function(d) { return 'rotate(' + (d.x - 90) + ')translate(' + d.y + ')'; } )\n\n  node.append( 'circle' )\n    .attr( 'r', 4.5 );\n\n  node.append( 'text' )\n    .attr( 'dx', function(d) { return d.x < 180 ? 8 : -8; } )\n    .attr( 'dy', '.31em' )\n    .attr( 'text-anchor', function(d) { return d.x < 180 ? 'start' : 'end'; } )\n    .attr( 'transform', function(d) { return d.x < 180 ? null : 'rotate(180)'; } )\n    .attr( 'data-href', function( d ) { return d.name; } )\n    .text( helper_node_text );\n\n  $( 'text[data-href*=\"//\"]', graph_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function()\n      {\n        location.href = $( this ).data( 'href' );\n      }\n    );\n};\n\nvar prepare_graph = function( graph_element, callback )\n{\n  $.ajax\n  (\n    {\n      url : app.config.solr_path + '/zookeeper?wt=json&path=%2Flive_nodes',\n      dataType : 'json',\n      success : function( response, text_status, xhr )\n      {\n        var live_nodes = {};\n        for( var c in response.tree[0].children )\n        {\n          live_nodes[response.tree[0].children[c].data.title] = true;\n        }\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json&detail=true&path=%2Fclusterstate.json',\n            dataType : 'json',\n            context : graph_element,\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .show();\n            },\n            success : function( response, text_status, xhr )\n            {\n              var state = null;\n              eval( 'state = ' + response.znode.data + ';' );\n              \n              var leaf_count = 0;\n              var graph_data = {\n                name: null,\n                children : []\n              };\n\n              for( var c in state )\n              {\n                var shards = [];\n                for( var s in state[c].shards )\n                {\n                  var nodes = [];\n                  for( var n in state[c].shards[s].replicas )\n                  {\n                    leaf_count++;\n                    var replica = state[c].shards[s].replicas[n]\n\n                    var uri = replica.base_url;\n                    var parts = uri.match( /^(\\w+:)\\/\\/(([\\w\\d\\.-]+)(:(\\d+))?)(.+)$/ );\n                    var uri_parts = {\n                      protocol: parts[1],\n                      host: parts[2],\n                      hostname: parts[3],\n                      port: parseInt( parts[5] || 80, 10 ),\n                      pathname: parts[6]\n                    };\n                    \n                    helper_data.protocol.push( uri_parts.protocol );\n                    helper_data.host.push( uri_parts.host );\n                    helper_data.hostname.push( uri_parts.hostname );\n                    helper_data.port.push( uri_parts.port );\n                    helper_data.pathname.push( uri_parts.pathname );\n\n                    var status = replica.state;\n\n                    if( !live_nodes[replica.node_name] )\n                    {\n                      status = 'gone';\n                    }\n\n                    var node = {\n                      name: uri,\n                      data: {\n                        type : 'node',\n                        state : status,\n                        leader : 'true' === replica.leader,\n                        uri : uri_parts\n                      }\n                    };\n                    nodes.push( node );\n                  }\n\n                  var shard = {\n                    name: s,\n                    data: {\n                      type : 'shard'\n                    },\n                    children: nodes\n                  };\n                  shards.push( shard );\n                }\n\n                var collection = {\n                  name: c,\n                  data: {\n                    type : 'collection'\n                  },\n                  children: shards\n                };\n                graph_data.children.push( collection );\n              }\n              \n              helper_data.protocol = $.unique( helper_data.protocol );\n              helper_data.host = $.unique( helper_data.host );\n              helper_data.hostname = $.unique( helper_data.hostname );\n              helper_data.port = $.unique( helper_data.port );\n              helper_data.pathname = $.unique( helper_data.pathname );\n\n              callback( graph_element, graph_data, leaf_count );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n\n};\n\nvar init_graph = function( graph_element )\n{\n  prepare_graph\n  (\n    graph_element,\n    function( graph_element, graph_data, leaf_count )\n    {\n      generate_graph( graph_element, graph_data, leaf_count );\n    }\n  );\n}\n\nvar init_rgraph = function( graph_element )\n{\n  prepare_graph\n  (\n    graph_element,\n    function( graph_element, graph_data, leaf_count )\n    {\n      generate_rgraph( graph_element, graph_data, leaf_count );\n    }\n  );\n}\n\nvar init_tree = function( tree_element )\n{\n  $.ajax\n  (\n    {\n      url : app.config.solr_path + '/zookeeper?wt=json',\n      dataType : 'json',\n      context : tree_element,\n      beforeSend : function( xhr, settings )\n      {\n        this\n          .show();\n      },\n      success : function( response, text_status, xhr )\n      {\n        var self = this;\n                      \n        $( '#tree', this )\n          .jstree\n          (\n            {\n              \"plugins\" : [ \"json_data\" ],\n              \"json_data\" : {\n                \"data\" : response.tree,\n                \"progressive_render\" : true\n              },\n              \"core\" : {\n                \"animation\" : 0\n              }\n            }\n          )\n          .jstree\n          (\n            'open_node',\n            'li:first'\n          );\n\n        var tree_links = $( '#tree a', this );\n\n        tree_links\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( 'a.active', $( this ).parents( '#tree' ) )\n                .removeClass( 'active' );\n                                  \n              $( this )\n                .addClass( 'active' );\n\n              tree_element\n                .addClass( 'show' );\n\n              var file_content = $( '#file-content' );\n\n              $( 'a.close', file_content )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    $( '#tree a.active' )\n                      .removeClass( 'active' );\n                                      \n                    tree_element\n                      .removeClass( 'show' );\n\n                    return false;\n                  }\n                );\n\n              $.ajax\n              (\n                {\n                  url : this.href,\n                  dataType : 'json',\n                  context : file_content,\n                  beforeSend : function( xhr, settings )\n                  {\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    var props = [];\n                    for( var key in response.znode.prop )\n                    {\n                      props.push\n                      (\n                        '<li><dl class=\"clearfix\">' + \"\\n\" +\n                          '<dt>' + key.esc() + '</dt>' + \"\\n\" +\n                          '<dd>' + response.znode.prop[key].esc() + '</dd>' + \"\\n\" +\n                        '</dl></li>'\n                      );\n                    }\n\n                    $( '#prop ul', this )\n                      .empty()\n                      .html( props.join( \"\\n\" ) );\n\n                    $( '#prop ul li:odd', this )\n                      .addClass( 'odd' );\n\n                    var data_element = $( '#data', this );\n\n                    var highlight = false;\n                    var data = '<em>File \"' + response.znode.path + '\" has no Content</em>';\n\n                    if( response.znode.data )\n                    {\n                      var classes = '';\n                      var path = response.znode.path.split( '.' );\n                      \n                      if( 1 < path.length )\n                      {\n                        highlight = true;\n                        classes = 'syntax language-' + path.pop().esc();\n                      }\n\n                      data = '<pre class=\"' + classes + '\">'\n                           + response.znode.data.esc()\n                           + '</pre>';\n                    }\n                               \n\n                    data_element\n                        .show()\n                        .html( data );\n\n                    if( highlight )\n                    {\n                      hljs.highlightBlock( data_element.get(0) );\n                    }\n                    \n                  },\n                  error : function( xhr, text_status, error_thrown)\n                  {\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                  }\n                }\n              );\n\n              return false;\n            }\n          );\n      },\n      error : zk_error,\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n};\n\n// #/~cloud\nsammy.get\n(\n  /^#\\/(~cloud)$/,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/cloud.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var cloud_element = $( '#cloud', content_element );\n        var navigation_element = $( '#menu #cloud' );\n\n        init_debug( cloud_element );\n\n        $( '.tree', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_tree( $( '#tree-content', cloud_element ) );\n            }\n          );\n\n        $( '.graph', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_graph( $( '#graph-content', cloud_element ) );\n            }\n          );\n\n        $( '.rgraph', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_rgraph( $( '#graph-content', cloud_element ) );\n            }\n          );\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json',\n            dataType : 'json',\n            context : cloud_element,\n            success : function( response, text_status, xhr )\n            {\n              $( 'a[href=\"' + context.path + '\"]', navigation_element )\n                .trigger( 'activate' );\n            },\n            error : zk_error\n          }\n        );\n        \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/cores.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nsammy.bind\n(\n  'cores_load_data',\n  function( event, params )\n  {\n    $.ajax\n    (\n      {\n        url : app.config.solr_path + app.config.core_admin_path + '?wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          app.set_cores_data( response );\n          params.callback( app.cores_data );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\nsammy.bind\n(\n  'cores_build_navigation',\n  function( event, params )\n  {\n    var navigation_content = ['<ul>'];\n\n    for( var core in params.cores )\n    {\n      var core_name = core;\n      if( !core_name )\n      {\n        core_name = '<em>(empty)</em>';\n      }\n      navigation_content.push( '<li><a href=\"' + params.basepath + core + '\">' + core_name + '</a></li>' );\n    }\n\n    params.navigation_element\n      .html( navigation_content.join( \"\\n\" ) );\n        \n    $( 'a[href=\"' + params.basepath + params.current_core + '\"]', params.navigation_element ).parent()\n      .addClass( 'current' );\n  }\n);\n\nsammy.bind\n(\n  'cores_load_template',\n  function( event, params )\n  {\n    if( app.cores_template )\n    {\n      params.callback();\n      return true;\n    }\n\n    $.get\n    (\n      'tpl/cores.html',\n      function( template )\n      {\n        params.content_element\n          .html( template );\n             \n        app.cores_template = template;   \n        params.callback();\n      }\n    );\n  }\n);\n\n// #/~cores\nsammy.get\n(\n  /^#\\/(~cores)$/,\n  function( context )\n  {\n    delete app.cores_template;\n\n    sammy.trigger\n    (\n      'cores_load_data',\n      {\n        callback :  function( cores )\n        {\n          var first_core = null;\n          for( var key in cores )\n          {\n            if( !first_core )\n            {\n              first_core = key;\n            }\n            continue;\n          }\n          context.redirect( context.path + '/' + first_core );\n        }\n      }\n    );\n  }\n);\n\n// #/~cores\nsammy.get\n(\n  /^#\\/(~cores)\\//,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    var path_parts = this.path.match( /^(.+\\/~cores\\/)(.*)$/ );\n    var current_core = path_parts[2];\n\n    sammy.trigger\n    (\n      'cores_load_data',\n      {\n        callback : function( cores )\n        {\n          sammy.trigger\n          (\n            'cores_load_template',\n            {\n              content_element : content_element,\n              callback : function()\n              {\n                var cores_element = $( '#cores', content_element );\n                var navigation_element = $( '#navigation', cores_element );\n                var data_element = $( '#data', cores_element );\n                var core_data_element = $( '#core-data', data_element );\n                var index_data_element = $( '#index-data', data_element );\n\n                sammy.trigger\n                (\n                  'cores_build_navigation',\n                  {\n                    cores : cores,\n                    basepath : path_parts[1],\n                    current_core : current_core,\n                    navigation_element : navigation_element\n                  }\n                );\n\n                var core_data = cores[current_core];\n                var core_basepath = $( '#' + current_core, app.menu_element ).attr( 'data-basepath' );\n\n                // core-data\n\n                $( '.startTime dd', core_data_element )\n                  .html( core_data.startTime );\n\n                $( '.instanceDir dd', core_data_element )\n                  .html( core_data.instanceDir );\n\n                $( '.dataDir dd', core_data_element )\n                  .html( core_data.dataDir );\n\n                // index-data\n\n                $( '.lastModified dd', index_data_element )\n                  .html( core_data.index.lastModified || '-' );\n\n                $( '.version dd', index_data_element )\n                  .html( core_data.index.version );\n\n                $( '.numDocs dd', index_data_element )\n                  .html( core_data.index.numDocs );\n\n                $( '.maxDoc dd', index_data_element )\n                  .html( core_data.index.maxDoc );\n                \n                $( '.deletedDocs dd', index_data_element )\n                  .html( core_data.index.deletedDocs || '-' );\n\n                $( '.optimized dd', index_data_element )\n                  .addClass( !core_data.index.hasDeletions ? 'ico-1' : 'ico-0' );\n\n                $( '#actions #optimize', cores_element )\n                  .show();\n\n                $( '.optimized dd span', index_data_element )\n                  .html( !core_data.index.hasDeletions ? 'yes' : 'no' );\n\n                $( '.current dd', index_data_element )\n                  .addClass( core_data.index.current ? 'ico-1' : 'ico-0' );\n\n                $( '.current dd span', index_data_element )\n                  .html( core_data.index.current ? 'yes' : 'no' );\n\n                $( '.directory dd', index_data_element )\n                  .html\n                  (\n                    core_data.index.directory\n                      .replace( /:/g, ':&#8203;' )\n                      .replace( /@/g, '@&#8203;' )\n                  );\n\n                var core_names = [];\n                var core_selects = $( '#actions select', cores_element );\n\n                for( var key in cores )\n                {\n                  core_names.push( '<option value=\"' + key + '\">' + key + '</option>' )\n                }\n\n                core_selects\n                  .html( core_names.join( \"\\n\") );\n\n                $( 'option[value=\"' + current_core + '\"]', core_selects.filter( '.other' ) )\n                  .remove();\n                \n                $( 'input[data-core=\"current\"]', cores_element )\n                  .val( current_core );\n\n                // layout\n\n                var ui_block = $( '#ui-block' );\n                var actions_element = $( '.actions', cores_element );\n                var div_action = $( 'div.action', actions_element );\n\n                ui_block\n                  .css( 'opacity', 0.7 )\n                  .width( cores_element.width() + 10 )\n                  .height( cores_element.height() );\n\n                if( $( '#cloud.global' ).is( ':visible' ) )\n                {\n                  $( '.cloud', div_action )\n                    .show();\n                }\n\n                $( 'button.action', actions_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      var self = $( this );\n\n                      self\n                        .toggleClass( 'open' );\n\n                      $( '.action.' + self.attr( 'id' ), actions_element )\n                        .trigger( 'open' );\n\n                      return false;\n                    }\n                  );\n\n                div_action\n                  .die( 'close' )\n                  .live\n                  (\n                    'close',\n                    function( event )\n                    {\n                      div_action.hide();\n                      ui_block.hide();\n                    }\n                  )\n                  .die( 'open' )\n                  .live\n                  (\n                    'open',\n                    function( event )\n                    {\n                      var self = $( this );\n                      var rel = $( '#' + self.data( 'rel' ) );\n\n                      self\n                        .trigger( 'close' )\n                        .show()\n                        .css( 'left', rel.position().left );\n                      \n                      ui_block\n                        .show();\n                    }\n                  );\n\n                $( 'form button.reset', actions_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $( this ).closest( 'div.action' )\n                        .trigger( 'close' );\n                    }\n                  );\n\n                var form_callback = {\n\n                  rename : function( form, response )\n                  {\n                    var url = path_parts[1] + $( 'input[name=\"other\"]', form ).val();\n                    context.redirect( url );\n                  }\n\n                };\n\n                $( 'form', div_action )\n                  .ajaxForm\n                  (\n                    {\n                      url : app.config.solr_path + app.config.core_admin_path + '?wt=json&indexInfo=false',\n                      dataType : 'json',\n                      beforeSubmit : function( array, form, options )\n                      {\n                        $( 'button[type=\"submit\"] span', form )\n                          .addClass( 'loader' );\n                      },\n                      success : function( response, status_text, xhr, form )\n                      {\n                        var action = $( 'input[name=\"action\"]', form ).val().toLowerCase();\n\n                        delete app.cores_data;\n\n                        if( form_callback[action] )\n                        {\n                         form_callback[action]( form, response ); \n                        }\n                        else\n                        {\n                          sammy.refresh();\n                        }\n\n                        $( 'button.reset', form )\n                          .trigger( 'click' );\n                      },\n                      error : function( xhr, text_status, error_thrown )\n                      {\n                        var response = null;\n                        eval( 'response = ' + xhr.responseText + ';' );\n\n                        var error_elem = $( '.error', div_action.filter( ':visible' ) );\n                        error_elem.show();\n                        $( 'span', error_elem ).text( response.error.msg );\n                      },\n                      complete : function()\n                      {\n                        $( 'button span.loader', actions_element )\n                          .removeClass( 'loader' );\n                      }\n                    }\n                  );\n\n                var reload_button = $( '#actions #reload', cores_element );\n                reload_button\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $.ajax\n                      (\n                        {\n                          url : app.config.solr_path + app.config.core_admin_path + '?wt=json&action=RELOAD&core=' + current_core,\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            this\n                              .addClass( 'success' );\n\n                            delete app.cores_data;\n                            sammy.refresh();\n\n                            window.setTimeout\n                            (\n                              function()\n                              {\n                                reload_button\n                                  .removeClass( 'success' );\n                              },\n                              1000\n                            );\n                          },\n                          error : function( xhr, text_status, error_thrown )\n                          {\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n                                \n                $( '#actions #unload', cores_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      var ret = confirm( 'Do you really want to unload Core \"' + current_core + '\"?' );\n                      if( !ret )\n                      {\n                        return false;\n                      }\n\n                      $.ajax\n                      (\n                        {\n                          url : app.config.solr_path + app.config.core_admin_path + '?wt=json&action=UNLOAD&core=' + current_core,\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            delete app.cores_data;\n                            context.redirect( path_parts[1].substr( 0, path_parts[1].length - 1 ) );\n                          },\n                          error : function( xhr, text_status, error_thrown )\n                          {\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n\n                var optimize_button = $( '#actions #optimize', cores_element );\n                optimize_button\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $.ajax\n                      (\n                        {\n                          url : core_basepath + '/update?optimize=true&waitFlush=true&wt=json',\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            this\n                              .addClass( 'success' );\n\n                            window.setTimeout\n                            (\n                              function()\n                              {\n                                optimize_button\n                                  .removeClass( 'success' );\n                              },\n                              1000\n                            );\n                                                        \n                            $( '.optimized dd.ico-0', index_data_element )\n                              .removeClass( 'ico-0' )\n                              .addClass( 'ico-1' );\n                          },\n                          error : function( xhr, text_status, error_thrown)\n                          {\n                            console.warn( 'd0h, optimize broken!' );\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n\n                $( '.timeago', data_element )\n                  .timeago();\n\n                $( 'ul', data_element )\n                  .each\n                  (\n                    function( i, element )\n                    {\n                      $( 'li:odd', element )\n                        .addClass( 'odd' );\n                    }\n                  )\n              }\n            }\n          );\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/dashboard.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar set_healthcheck_status = function( status )\n{\n  var hc_button = $( '.healthcheck-status' )\n  if ( status == 'enable' )\n  {\n    hc_button.parents( 'dd' )\n      .removeClass( 'ico-0' )\n      .addClass( 'ico-1' );\n    hc_button\n      .addClass( 'enabled' )\n      .html( 'disable ping' );\n  } else {\n    hc_button.parents( 'dd' )\n      .removeClass( 'ico-1')\n      .addClass( 'ico-0' );\n    hc_button\n      .removeClass( 'enabled' )\n      .html( 'enable ping' );\n  }\n};\n\n// #/:core\nsammy.get\n(\n  new RegExp( app.core_regex_base + '$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    content_element\n      .removeClass( 'single' );\n    \n    if( !app.core_menu.data( 'admin-extra-loaded' ) )\n    {\n      app.core_menu.data( 'admin-extra-loaded', new Date() );\n\n      $.get\n      (\n        core_basepath + '/admin/file/?file=admin-extra.menu-top.html&contentType=text/html;charset=utf-8',\n        function( menu_extra )\n        {\n          app.core_menu\n            .prepend( menu_extra );\n        }\n      );\n      \n      $.get\n      (\n        core_basepath + '/admin/file/?file=admin-extra.menu-bottom.html&contentType=text/html;charset=utf-8',\n        function( menu_extra )\n        {\n          app.core_menu\n            .append( menu_extra );\n        }\n      );\n    }\n        \n    $.get\n    (\n      'tpl/dashboard.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                    \n        var dashboard_element = $( '#dashboard' );\n                                     \n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/luke?wt=json&show=index&numTerms=0',\n            dataType : 'json',\n            context : $( '#statistics', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading ...' );\n                            \n              $( '.content' )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( '.content', this )\n                .show();\n                                \n              var data = {\n                'index_num-docs' : response['index']['numDocs'],\n                'index_max-doc' : response['index']['maxDoc'],\n                'index_deleted-docs' : response['index']['deletedDocs'],\n                'index_version' : response['index']['version'],\n                'index_segmentCount' : response['index']['segmentCount'],\n                'index_last-modified' : response['index']['lastModified']\n              };\n                            \n              for( var key in data )\n              {\n                $( '.' + key, this )\n                  .show();\n                                \n                $( '.value.' + key, this )\n                  .html( data[key] );\n              }\n\n              var optimized_element = $( '.value.index_optimized', this );\n              if( !response['index']['hasDeletions'] )\n              {\n                optimized_element\n                  .addClass( 'ico-1' );\n\n                $( 'span', optimized_element )\n                  .html( 'yes' );\n              }\n              else\n              {\n                optimized_element\n                  .addClass( 'ico-0' );\n\n                $( 'span', optimized_element )\n                  .html( 'no' );\n              }\n\n              var current_element = $( '.value.index_current', this );\n              if( response['index']['current'] )\n              {\n                current_element\n                  .addClass( 'ico-1' );\n\n                $( 'span', current_element )\n                  .html( 'yes' );\n              }\n              else\n              {\n                current_element\n                  .addClass( 'ico-0' );\n\n                $( 'span', current_element )\n                  .html( 'no' );\n              }\n\n              $( 'a', optimized_element )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {                        \n                    $.ajax\n                    (\n                      {\n                      url : core_basepath + '/update?optimize=true&waitFlush=true&wt=json',\n                      dataType : 'json',\n                      context : $( this ),\n                      beforeSend : function( xhr, settings )\n                      {\n                        this\n                          .addClass( 'loader' );\n                      },\n                      success : function( response, text_status, xhr )\n                      {\n                        this.parents( 'dd' )\n                          .removeClass( 'ico-0' )\n                          .addClass( 'ico-1' );\n                      },\n                      error : function( xhr, text_status, error_thrown)\n                      {\n                        console.warn( 'd0h, optimize broken!' );\n                      },\n                      complete : function( xhr, text_status )\n                      {\n                        this\n                          .removeClass( 'loader' );\n                      }\n                      }\n                    );\n                  }\n                );\n\n              $( '.timeago', this )\n                                 .timeago();\n            },\n            error : function( xhr, text_status, error_thrown )\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Luke is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n        $.ajax\n        (\n          {\n            url : core_basepath + '/replication?command=details&wt=json',\n            dataType : 'json',\n            context : $( '#replication', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n\n              $( '.content', this )\n                .show();\n                            \n              $( '.replication', context.active_core )\n                .show();\n                            \n              var data = response.details;\n              var is_slave = 'undefined' !== typeof( data.slave );\n              var headline = $( 'h2 span', this );\n              var details_element = $( '#details', this );\n              var current_type_element = $( ( is_slave ? '.slave' : '.masterSearch' ), this );\n              var master_data = is_slave ? data.slave.masterDetails : data;\n\n              if( is_slave )\n              {\n                this\n                  .addClass( 'slave' );\n                                \n                headline\n                  .html( headline.html() + ' (Slave)' );\n              }\n              else\n              {\n                this\n                  .addClass( 'master' );\n                                \n                headline\n                  .html( headline.html() + ' (Master)' );\n              }\n\n              // the currently searchable commit regardless of type\n              $( '.version div', current_type_element )\n                .html( data.indexVersion );\n              $( '.generation div', current_type_element )\n                .html( data.generation );\n              $( '.size div', current_type_element )\n                .html( data.indexSize );\n                            \n              // what's replicable on the master\n              var master_element = $( '.master', details_element );\n              $( '.version div', master_element )\n                .html( master_data.master.replicableVersion || '-' );\n              $( '.generation div', master_element )\n                .html( master_data.master.replicableGeneration || '-' );\n              $( '.size div', master_element )\n                .html( \"-\" );\n\n              if( is_slave )\n              {\n                var master_element = $( '.masterSearch', details_element );\n                $( '.version div', master_element )\n                  .html( data.slave.masterDetails.indexVersion );\n                $( '.generation div', master_element )\n                  .html( data.slave.masterDetails.generation );\n                $( '.size div', master_element )\n                  .html( data.slave.masterDetails.indexSize );\n                                \n                // warnings if slave version|gen doesn't match what's replicable\n                if( data.indexVersion !== master_data.master.replicableVersion )\n                {\n                  $( '.version', details_element )\n                    .addClass( 'diff' );\n                }\n                else\n                {\n                  $( '.version', details_element )\n                    .removeClass( 'diff' );\n                }\n                                \n                if( data.generation !== master_data.master.replicableGeneration )\n                {\n                  $( '.generation', details_element )\n                    .addClass( 'diff' );\n                }\n                else\n                {\n                  $( '.generation', details_element )\n                    .removeClass( 'diff' );\n                }\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Replication is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/dataimport?command=details&wt=json',\n            dataType : 'json',\n            context : $( '#dataimport', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n\n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( 'dl', this )\n                .show();\n                            \n              var data = {\n                'status' : response['status'],\n                'info' : response['statusMessages']['']\n              };\n                            \n              for( var key in data )\n              {\n                $( '.' + key, this )\n                  .show();\n                                \n                $( '.value.' + key, this )\n                  .html( data[key] );\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Dataimport is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/file/?file=admin-extra.html',\n            dataType : 'html',\n            context : $( '#admin-extra', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .hide()\n                .empty();\n\n              $( '.content', this )\n                .show()\n                .html( response );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'We found no \"admin-extra.html\" file.' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/ping?action=status&wt=json',\n            dataType : 'json',\n            context : $( '#healthcheck', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( '.content', this )\n                .show();\n\n              var status_element = $( '.value.status', this );\n              var toggle_button = $( '.healthcheck-status', this );\n              var status = response['status'];\n              $( 'span', status_element ).html( status );\n\n              var action = ( response['status'] == 'enabled' ) ? 'enable' : 'disable';  \n              set_healthcheck_status(action);\n\n              if( response['status'] == 'enabled' )\n              {\n                status_element\n                  .addClass( 'ico-1' );\n                toggle_button\n                  .addClass( 'enabled' );\n              }\n              else\n              {\n                status_element\n                  .addClass( 'ico-0' );\n              }\n              \n              $( '.healthcheck-status', status_element )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {                      \n                    var action = $(this).hasClass( 'enabled' ) ? 'disable' : 'enable';  \n                    $.ajax\n                    (\n                      {\n                        url : core_basepath + '/admin/ping?action=' + action + '&wt=json',\n                        dataType : 'json',\n                        context : $( this ),\n                        beforeSend : function( xhr, settings )\n                        {\n                          this\n                            .addClass( 'loader' );\n                        },\n                        success : function( response, text_status, xhr )\n                        {\n                          set_healthcheck_status(action);\n                        },\n                        error : function( xhr, text_status, error_thrown)\n                        {\n                          console.warn( 'd0h, enable broken!' );\n                        },\n                        complete : function( xhr, text_status )\n                        {\n                          this\n                            .removeClass( 'loader' );\n                        }\n                      }\n                    );\n                  }\n                );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Ping request handler is not configured with a healthcheck file.' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/dataimport.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar dataimport_timeout = 2000;\nvar cookie_dataimport_autorefresh = 'dataimport_autorefresh';\n\nsammy.bind\n(\n  'dataimport_queryhandler_load',\n  function( event, params )\n  {\n    var core_basepath = params.active_core.attr( 'data-basepath' );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/mbeans?cat=QUERYHANDLER&wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          var handlers = response['solr-mbeans'][1];\n          var dataimport_handlers = [];\n          for( var key in handlers )\n          {\n            if( handlers[key]['class'] !== key &&\n              handlers[key]['class'] === 'org.apache.solr.handler.dataimport.DataImportHandler' )\n            {\n              dataimport_handlers.push( key );\n            }\n          }\n          params.callback( dataimport_handlers );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\n// #/:core/dataimport\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(dataimport)$' ),\n  function( context )\n  {\n    sammy.trigger\n    (\n      'dataimport_queryhandler_load',\n      {\n        active_core : this.active_core,\n        callback :  function( dataimport_handlers )\n        {\n          if( 0 === dataimport_handlers.length )\n          {\n            $( '#content' )\n              .html( 'sorry, no dataimport-handler defined!' );\n\n            return false;\n          }\n\n          context.redirect( context.path + '/' + dataimport_handlers[0] );\n        }\n      }\n    );\n  }\n);\n\n// #/:core/dataimport\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(dataimport)\\\\/' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    var path_parts = this.path.match( /^(.+\\/dataimport\\/)(.*)$/ );\n    var handler_url = core_basepath + path_parts[2];\n        \n    $( 'li.dataimport', this.active_core )\n      .addClass( 'active' );\n\n    $.get\n    (\n      'tpl/dataimport.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var dataimport_element = $( '#dataimport', content_element );\n        var form_element = $( '#form', dataimport_element );\n        var config_element = $( '#config', dataimport_element );\n        var error_element = $( '#error', dataimport_element );\n        var debug_response_element = $( '#debug_response', dataimport_element );\n\n        var autorefresh_status = false;\n        var debug_mode = false;\n\n        // handler\n\n        sammy.trigger\n        (\n          'dataimport_queryhandler_load',\n          {\n            active_core : context.active_core,\n            callback :  function( dataimport_handlers )\n            {\n              var handlers_element = $( '#navigation ul', form_element );\n              var handlers = [];\n\n              for( var i = 0; i < dataimport_handlers.length; i++ )\n              {\n                handlers.push\n                (\n                    '<li><a href=\"' + path_parts[1] + dataimport_handlers[i] + '\">' +\n                    dataimport_handlers[i] +\n                    '</a></li>'\n                );\n              }\n\n              $( handlers_element )\n                .html( handlers.join( \"\\n\") ) ;\n                            \n              $( 'a[href=\"' + context.path + '\"]', handlers_element ).closest( 'li' )\n                .addClass( 'current' );\n\n              $( 'form', form_element )\n                .show();\n            }\n          }\n        );\n\n        // config\n\n        function dataimport_fetch_config()\n        {\n          $.ajax\n          (\n            {\n              url : handler_url + '?command=show-config&indent=true',\n              dataType : 'xml',\n              context : $( '#dataimport_config', config_element ),\n              beforeSend : function( xhr, settings )\n              {\n                error_element\n                  .empty()\n                  .hide();\n              },\n              success : function( config, text_status, xhr )\n              {\n                dataimport_element\n                  .removeClass( 'error' );\n\n                config_element\n                  .addClass( 'hidden' );\n\n                var entities = [ '<option value=\"\"></option>' ];\n\n                $( 'document > entity', config )\n                  .each\n                  (\n                    function( i, element )\n                    {\n                      entities.push( '<option>' + $( element ).attr( 'name' ).esc() + '</option>' );\n                    }\n                  );\n                                \n                $( '#entity', form_element )\n                  .html( entities.join( \"\\n\" ) );\n\n                $( '.editable textarea', this )\n                  .val( xhr.responseText.replace( /\\n+$/, '' ) );\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                if( 'parsererror' === error_thrown )\n                {\n                  dataimport_element\n                    .addClass( 'error' );\n                                    \n                  error_element\n                    .text( 'Dataimport XML-Configuration is not valid' )\n                    .show();\n\n                  config_element\n                    .removeClass( 'hidden' );\n                }\n              },\n              complete : function( xhr, text_status )\n              {\n                var code = $(\n                  '<pre class=\"syntax language-xml\"><code>' +\n                  xhr.responseText.esc() +\n                  '</code></pre>'\n                );\n                $( '.formatted', this ).html( code );\n\n                if( 'success' === text_status )\n                {\n                  hljs.highlightBlock( code.get(0) );\n                }\n              }\n            }\n          );\n        }\n        dataimport_fetch_config();\n\n        $( '.block .toggle', dataimport_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.block' )\n                .toggleClass( 'hidden' );\n                            \n              return false;\n            }\n          )\n\n        var reload_config_element = $( '.reload_config', config_element );\n        reload_config_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $.ajax\n              (\n                {\n                  url : handler_url + '?command=reload-config',\n                  dataType : 'xml',\n                  context: $( this ),\n                  beforeSend : function( xhr, settings )\n                  {\n                    this\n                      .removeClass( 'error' )\n                      .addClass( 'loader' );\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    this\n                      .addClass( 'success' );\n\n                    window.setTimeout\n                    (\n                      function()\n                      {\n                        reload_config_element\n                          .removeClass( 'success' );\n                      },\n                      5000\n                    );\n                  },\n                  error : function( xhr, text_status, error_thrown )\n                  {\n                    this\n                      .addClass( 'error' );\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                    this\n                      .removeClass( 'loader' );\n                                        \n                    dataimport_fetch_config();\n                  }\n                }\n              );\n              return false;\n            }\n          );\n\n        var debug_mode_element = $( '.debug_mode', config_element );\n        debug_mode_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var self = $( this );\n              var block = self.closest( '.block' )\n\n              var debug_checkbox = $( 'input[name=\"debug\"]', form_element );\n              var submit_span = $( 'button[type=\"submit\"] span', form_element );\n\n              debug_mode = !debug_mode;\n\n              block.toggleClass( 'debug_mode', debug_mode );\n\n              if( debug_mode )\n              {\n                block.removeClass( 'hidden' );\n\n                debug_checkbox\n                  .attr( 'checked', 'checked' )\n                  .trigger( 'change' );\n                  \n                submit_span\n                  .data( 'original', submit_span.text() )\n                  .text( submit_span.data( 'debugmode' ) );\n\n                $( 'textarea', block )\n                  .autogrow()\n              }\n              else\n              {\n                submit_span\n                  .text( submit_span.data( 'original' ) )\n                  .removeData( 'original' );\n              }\n            }\n          );\n\n        // abort\n\n        var abort_import_element = $( '.abort-import', dataimport_element );\n        abort_import_element\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              var span_element = $( 'span', this );\n\n              $.ajax\n              (\n                {\n                  url : handler_url + '?command=abort&wt=json',\n                  dataType : 'json',\n                  type: 'POST',\n                  context: $( this ),\n                  beforeSend : function( xhr, settings )\n                  {\n                    span_element\n                      .addClass( 'loader' );\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    span_element\n                      .data( 'original', span_element.text() )\n                      .text( span_element.data( 'aborting' ) );\n\n                    this\n                      .removeClass( 'warn' )\n                      .addClass( 'success' );\n\n                    window.setTimeout\n                    (\n                      function()\n                      {\n                        $( 'span', abort_import_element )\n                          .removeClass( 'loader' )\n                          .text( span_element.data( 'original' ) )\n                          .removeData( 'original' );\n\n                        abort_import_element\n                          .removeClass( 'success' )\n                          .addClass( 'warn' );\n                      },\n                      dataimport_timeout * 2\n                    );\n\n                    dataimport_fetch_status();\n                  }\n                }\n              );\n              return false;\n            }\n          );\n\n        // state\n\n        var status_button = $( 'form button.refresh-status', form_element );\n\n        status_button\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              dataimport_fetch_status();\n              return false;\n            }\n          )\n          .trigger( 'click' );\n                \n        function dataimport_fetch_status( clear_timeout )\n        {\n          if( clear_timeout )\n          {\n            app.clear_timeout();\n          }\n\n          $.ajax\n          (\n            {\n              url : handler_url + '?command=status&indent=true&wt=json',\n              dataType : 'json',\n              beforeSend : function( xhr, settings )\n              {\n                $( 'span', status_button )\n                  .addClass( 'loader' );\n              },\n              success : function( response, text_status, xhr )\n              {\n                var state_element = $( '#current_state', content_element );\n\n                var status = response.status;\n                var rollback_time = response.statusMessages.Rolledback || null;\n                var abort_time = response.statusMessages.Aborted || null;\n                \n                var messages = response.statusMessages;\n                var messages_count = 0;\n                for( var key in messages ) { messages_count++; }\n\n                function dataimport_compute_details( response, details_element, elapsed_seconds )\n                {\n                  details_element\n                    .show();\n\n                  // --\n\n                  var document_config = {\n                    'Requests' : 'Total Requests made to DataSource',\n                    'Fetched' : 'Total Rows Fetched',\n                    'Skipped' : 'Total Documents Skipped',\n                    'Processed' : 'Total Documents Processed'\n                  };\n\n                  var document_details = [];\n                  for( var key in document_config )\n                  {\n                    var value = parseInt( response.statusMessages[document_config[key]], 10 );\n\n                    var detail = '<abbr title=\"' + document_config[key].esc() + '\">' + key.esc() + '</abbr>: ' +  app.format_number( value ).esc();\n                    if( elapsed_seconds && 'skipped' !== key.toLowerCase() )\n                    {\n                      detail += ' <span>(' + app.format_number( Math.round( value / elapsed_seconds ) ).esc() + '/s)</span>'\n                    }\n\n                    document_details.push( detail );\n                  };\n\n                  $( '.docs', details_element )\n                    .html( document_details.join( ', ' ) );\n\n                  // --\n\n                  var dates_config = {\n                      'Started' : 'Full Dump Started',\n                      'Aborted' : 'Aborted',\n                      'Rolledback' : 'Rolledback'\n                  };\n\n                  var dates_details = [];\n                  for( var key in dates_config )\n                  {\n                    var value = response.statusMessages[dates_config[key]];\n\n                    if( value )\n                    {\n                      var detail = '<abbr title=\"' + dates_config[key].esc() + '\">' + key.esc() + '</abbr>: '\n                                 + '<abbr class=\"time\">' +  value.esc() + '</abbr>';\n                      dates_details.push( detail );                      \n                    }\n                  };\n\n                  var dates_element = $( '.dates', details_element );\n\n                  dates_element\n                    .html( dates_details.join( ', ' ) );\n\n                  $( '.time', dates_element )\n                    .removeData( 'timeago' )\n                    .timeago();\n                };\n\n                var get_time_taken = function get_default_time_taken()\n                {\n                  var time_taken_text = response.statusMessages['Time taken'];\n                  return app.convert_duration_to_seconds( time_taken_text );\n                };\n\n                var get_default_info_text = function default_info_text()\n                {\n                  var info_text = response.statusMessages[''] || '';\n\n                  // format numbers included in status nicely\n                  info_text = info_text.replace\n                  (\n                    /\\d{4,}/g,\n                    function( match, position, string )\n                    {\n                      return app.format_number( parseInt( match, 10 ) );\n                    }\n                  );\n\n                  var time_taken_text = app.convert_seconds_to_readable_time( get_time_taken() );\n                  if( time_taken_text )\n                  {\n                    info_text += ' (Duration: ' + time_taken_text.esc() + ')';\n                  }\n\n                  return info_text;\n                };\n\n                var show_info = function show_info( info_text, elapsed_seconds )\n                {\n                  $( '.info strong', state_element )\n                    .text( info_text || get_default_info_text() );\n\n                  $( '.info .details', state_element )\n                    .hide();\n                };\n\n                var show_full_info = function show_full_info( info_text, elapsed_seconds )\n                {\n                  show_info( info_text, elapsed_seconds );\n\n                  dataimport_compute_details\n                  (\n                    response,\n                    $( '.info .details', state_element ),\n                    elapsed_seconds || get_time_taken()\n                  );\n                };\n\n                state_element\n                  .removeAttr( 'class' );\n\n                var current_time = new Date();\n                $( '.last_update abbr', state_element )\n                  .text( current_time.toTimeString().split( ' ' ).shift() )\n                  .attr( 'title', current_time.toUTCString() );\n\n                $( '.info', state_element )\n                  .removeClass( 'loader' );\n\n                if( 'busy' === status )\n                {\n                  state_element\n                    .addClass( 'indexing' );\n\n                  if( autorefresh_status )\n                  {\n                    $( '.info', state_element )\n                      .addClass( 'loader' );\n                  }\n\n                  var time_elapsed_text = response.statusMessages['Time Elapsed'];\n                  var elapsed_seconds = app.convert_duration_to_seconds( time_elapsed_text );\n                  time_elapsed_text = app.convert_seconds_to_readable_time( elapsed_seconds );\n\n                  var info_text = time_elapsed_text\n                                ? 'Indexing since ' + time_elapsed_text\n                                : 'Indexing ...';\n\n                  show_full_info( info_text, elapsed_seconds );\n                }\n                else if( rollback_time )\n                {\n                  state_element\n                    .addClass( 'failure' );\n\n                  show_full_info();\n                }\n                else if( abort_time )\n                {\n                  state_element\n                    .addClass( 'aborted' );\n\n                  show_full_info( 'Aborting current Import ...' );\n                }\n                else if( 'idle' === status && 0 !== messages_count )\n                {\n                  state_element\n                    .addClass( 'success' );\n\n                  show_full_info();\n                }\n                else \n                {\n                  state_element\n                    .addClass( 'idle' );\n\n                  show_info( 'No information available (idle)' );\n                }\n\n                // show raw status\n\n                var code = $(\n                  '<pre class=\"syntax language-json\"><code>' +\n                  app.format_json( xhr.responseText ).esc() +\n                  '</code></pre>'\n                );\n\n                $( '#raw_output_container', content_element ).html( code );\n                hljs.highlightBlock( code.get(0) );\n\n                if( !app.timeout && autorefresh_status )\n                {\n                  app.timeout = window.setTimeout\n                  (\n                    function()\n                    {\n                      dataimport_fetch_status( true )\n                    },\n                    dataimport_timeout\n                  );\n                }\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                console.debug( arguments );\n\n                reload_config_element\n                  .addClass( 'error' );\n              },\n              complete : function( xhr, text_status )\n              {\n                $( 'span', status_button )\n                  .removeClass( 'loader' )\n                  .addClass( 'success' );\n\n                window.setTimeout\n                (\n                  function()\n                  {\n                    $( 'span', status_button )\n                      .removeClass( 'success' );\n                  },\n                  dataimport_timeout / 2\n                );\n              }\n            }\n          );\n        }\n\n        // form\n\n        var form = $( 'form', form_element );\n\n        form\n          .ajaxForm\n          (\n            {\n              url : handler_url,\n              data : {\n                wt : 'json',\n                indent : 'true'\n              },\n              dataType : 'json',\n              type: 'POST',\n              beforeSend : function( xhr, settings )\n              {\n                $( 'button[type=\"submit\"] span', form_element )\n                  .addClass( 'loader' );\n\n                error_element\n                  .empty()\n                  .hide();\n              },\n              beforeSubmit : function( array, form, options )\n              {\n                var entity = $( '#entity', form ).val();\n                if( entity.length )\n                {\n                  array.push( { name : 'entity', value: entity } );\n                }\n\n                var start = parseInt( $( '#start', form ).val(), 10 );\n                if( start )\n                {\n                  array.push( { name : 'start', value: start } );\n                }\n\n                var rows = parseInt( $( '#rows', form ).val(), 10 );\n                if( rows )\n                {\n                  array.push( { name : 'rows', value: rows } );\n                }\n\n                $( 'input:checkbox', form ).not( ':checked' )\n                  .each( function( i, input )\n                  {\n                    array.push( { name: input.name, value: 'false' } );\n                  }\n                );\n\n                var custom_parameters = $( '#custom_parameters', form ).val();\n                if( custom_parameters.length )\n                {\n                  var params = custom_parameters.split( '&' );\n                  for( var i in params )\n                  {\n                    var tmp = params[i].split( '=' );\n                    array.push( { name : tmp[0], value: tmp[1] } );\n                  }\n                }\n\n                if( debug_mode )\n                {\n                  array.push( { name: 'dataConfig', value: $( '#dataimport_config .editable textarea' ).val() } );\n                }\n              },\n              success : function( response, text_status, xhr )\n              {\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                var response = null;\n                try\n                {\n                  eval( 'response = ' + xhr.responseText + ';' );\n                }\n                catch( e ){}\n\n                error_element\n                  .text( response.error.msg || 'Unknown Error (Exception w/o Message)' )\n                  .show();\n              },\n              complete : function( xhr, text_status )\n              {\n                $( 'button[type=\"submit\"] span', form_element )\n                  .removeClass( 'loader' );\n\n                var debug = $( 'input[name=\"debug\"]:checked', form );\n                if( 0 !== debug.size() )\n                {\n                  var code = $(\n                    '<pre class=\"syntax language-json\"><code>' +\n                    app.format_json( xhr.responseText ).esc() +\n                    '</code></pre>'\n                  );\n\n                  $( '.content', debug_response_element ).html( code );\n                  hljs.highlightBlock( code.get(0) );\n                }\n\n                dataimport_fetch_status();\n              }\n            }\n          );\n\n        $( 'input[name=\"debug\"]', form )\n          .off( 'change' )\n          .on\n          (\n            'change',\n            function( event )\n            {\n              debug_response_element.toggle( this.checked );\n            }\n          );\n\n        $( '#auto-refresh-status a', form_element )\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              $.cookie( cookie_dataimport_autorefresh, $.cookie( cookie_dataimport_autorefresh ) ? null : true );\n              $( this ).trigger( 'state' );\n\n              dataimport_fetch_status();\n\n              return false;\n            }\n          )\n          .off( 'state' )\n          .on\n          (\n            'state',\n            function( event )\n            {\n              autorefresh_status = !!$.cookie( cookie_dataimport_autorefresh );\n\n              $.cookie( cookie_dataimport_autorefresh )\n                ? $( this ).addClass( 'on' )\n                : $( this ).removeClass( 'on' );\n            }\n          )\n          .trigger( 'state' );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/file.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/schema, #/:core/config\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(schema|config)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n\tvar filetype = context.params.splat[1]; // either schema or config\t\n\tvar filename = this.active_core.attr( filetype );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + \"/admin/file?file=\" + filename + \"&contentType=text/xml;charset=utf-8\",\n        dataType : 'xml',\n        context : $( '#content' ),\n        beforeSend : function( xhr, settings )\n        {\n          this\n          .html( '<div class=\"loader\">Loading ...</div>' );\n        },\n        complete : function( xhr, text_status )\n        {\n          var code = $(\n            '<pre class=\"syntax language-xml\"><code>' +\n            xhr.responseText.esc() +\n            '</code></pre>'\n          );\n          this.html( code );\n\n          if( 'success' === text_status )\n          {\n            hljs.highlightBlock( code.get(0) );\n          }\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/index.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar parse_memory_value = function( value )\n{\n  if( value !== Number( value ) )\n  {\n    var units = 'BKMGTPEZY';\n    var match = value.match( /^(\\d+([,\\.]\\d+)?) (\\w)\\w?$/ );\n    var value = parseFloat( match[1] ) * Math.pow( 1024, units.indexOf( match[3].toUpperCase() ) );\n  }\n    \n  return value;\n};\n\nvar generate_bar = function( bar_container, bar_data, convert_label_values )\n{\n  bar_holder = $( '.bar-holder', bar_container );\n\n  var bar_level = 1;\n  var max_width = Math.round( $( '.bar-max', bar_holder ).width() );\n  $( '.bar-max.val', bar_holder ).text( bar_data['max'] );\n    \n  bar_level++;\n  $( '.bar-total.bar', bar_holder ).width( new String( (bar_data['total']/bar_data['max'])*100 ) + '%' );\n  $( '.bar-total.val', bar_holder ).text( bar_data['total'] );\n\n  if( bar_data['used'] )\n  {\n    bar_level++;\n    $( '.bar-used.bar', bar_holder ).width( new String( (bar_data['used']/bar_data['total'])*100 ) + '%' );\n    $( '.bar-used.val', bar_holder ).text( bar_data['used'] );\n  }\n\n  bar_holder\n    .addClass( 'bar-lvl-' + bar_level );\n\n  var percentage = ( ( ( bar_data['used'] || bar_data['total'] ) / bar_data['max'] ) * 100 ).toFixed(1);\n        \n  var hl = $( '[data-desc=\"' + bar_container.attr( 'id' ) + '\"]' );\n\n  $( '.bar-desc', hl )\n    .remove();\n\n  hl\n    .append( ' <small class=\"bar-desc\">' + percentage + '%</small>' );\n\n  if( !!convert_label_values )\n  {\n    $( '.val', bar_holder )\n      .each\n      (\n        function()\n        {\n          var self = $( this );\n\n          var unit = null;\n          var byte_value = parseInt( self.html() );\n\n          self\n            .attr( 'title', 'raw: ' + byte_value + ' B' );\n\n          byte_value /= 1024;\n          byte_value /= 1024;\n          unit = 'MB';\n\n          if( 1024 <= byte_value )\n          {\n            byte_value /= 1024;\n            unit = 'GB';\n          }\n\n          byte_value = byte_value.toFixed( 2 ) + ' ' + unit;\n\n          self\n            .text( byte_value );\n        }\n      );\n  }\n};\n\nvar system_info = function( element, system_data )\n{\n  // -- usage\n\n  var load_average = ( system_data['system']['uptime'] || '' ).match( /load averages?: (\\d+[.,]\\d\\d),? (\\d+[.,]\\d\\d),? (\\d+[.,]\\d\\d)/ );\n  if( load_average )\n  {\n    var hl = $( '#system h2', element );\n\n    $( '.bar-desc', hl )\n      .remove();\n\n    hl\n      .append( ' <small class=\"bar-desc\">' + load_average.slice( 1 ).join( '  ' ).replace( /,/g, '.' ).esc() + '</small>' );\n  }\n\n  // -- physical-memory-bar\n    \n  var bar_holder = $( '#physical-memory-bar', element );\n  if( system_data['system']['totalPhysicalMemorySize'] === undefined || system_data['system']['freePhysicalMemorySize'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['totalPhysicalMemorySize'] ),\n      'total' : parse_memory_value( system_data['system']['totalPhysicalMemorySize'] - system_data['system']['freePhysicalMemorySize'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n  // -- swap-space-bar\n    \n  var bar_holder = $( '#swap-space-bar', element );\n  if( system_data['system']['totalSwapSpaceSize'] === undefined || system_data['system']['freeSwapSpaceSize'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['totalSwapSpaceSize'] ),\n      'total' : parse_memory_value( system_data['system']['totalSwapSpaceSize'] - system_data['system']['freeSwapSpaceSize'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n  // -- file-descriptor-bar\n    \n  var bar_holder = $( '#file-descriptor-bar', element );\n  if( system_data['system']['maxFileDescriptorCount'] === undefined || system_data['system']['openFileDescriptorCount'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['maxFileDescriptorCount'] ),\n      'total' : parse_memory_value( system_data['system']['openFileDescriptorCount'] )\n    };\n\n    generate_bar( bar_holder, bar_data );\n  }\n\n  0 === $( '#system div[id$=\"-bar\"]:visible', element ).size()\n    ? $( '#system .no-info', element ).show()\n    : $( '#system .no-info', element ).hide();\n\n  // -- memory-bar\n\n  var bar_holder = $( '#jvm-memory-bar', element );\n  if( system_data['jvm']['memory'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var jvm_memory = $.extend\n    (\n      {\n        'free' : null,\n        'total' : null,\n        'max' : null,\n        'used' : null,\n        'raw' : {\n          'free' : null,\n          'total' : null,\n          'max' : null,\n          'used' : null,\n          'used%' : null\n        }\n      },\n      system_data['jvm']['memory']\n    );\n\n    var bar_data = {\n      'max' : parse_memory_value( jvm_memory['raw']['max'] || jvm_memory['max'] ),\n      'total' : parse_memory_value( jvm_memory['raw']['total'] || jvm_memory['total'] ),\n      'used' : parse_memory_value( jvm_memory['raw']['used'] || jvm_memory['used'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n}\n\n// #/\nsammy.get\n(\n  /^#\\/$/,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    content_element\n      .html( '<div id=\"index\"></div>' );\n\n    $.ajax\n    (\n      {\n        url : 'tpl/index.html',\n        context : $( '#index', content_element ),\n        beforeSend : function( arr, form, options )\n        {\n        },\n        success : function( template )\n        {\n          var self = this;\n\n          this\n            .html( template );\n    \n          var data = {\n            'start_time' : app.dashboard_values['jvm']['jmx']['startTime'],\n            'host' : app.dashboard_values['core']['host'] || '-',\n            'dir_instance' : app.dashboard_values['core']['directory']['instance'],\n            'dir_data' : app.dashboard_values['core']['directory']['data'],\n            'dir_index' : app.dashboard_values['core']['directory']['index'],\n            'jvm_version' : app.dashboard_values['jvm']['name'] + ' (' + app.dashboard_values['jvm']['version'] + ')',\n            'processors' : app.dashboard_values['jvm']['processors'],\n            'solr_spec_version' : app.dashboard_values['lucene']['solr-spec-version'] || '-',\n            'solr_impl_version' : app.dashboard_values['lucene']['solr-impl-version'] || '-',\n            'lucene_spec_version' : app.dashboard_values['lucene']['lucene-spec-version'] || '-',\n            'lucene_impl_version' : app.dashboard_values['lucene']['lucene-impl-version'] || '-'\n          };\n\n          if( app.dashboard_values['core']['directory']['cwd'] )\n          {\n            data['dir_cwd'] = app.dashboard_values['core']['directory']['cwd'];\n          }\n    \n          for( var key in data )\n          {                                                        \n            var value_element = $( '.' + key + ' dd', this );\n\n            value_element\n              .text( data[key].esc() );\n                        \n            value_element.closest( 'li' )\n              .show();\n          }\n\n          var commandLineArgs = app.dashboard_values['jvm']['jmx']['commandLineArgs'];\n          if( 0 !== commandLineArgs.length )\n          {\n            var cmd_arg_element = $( '.command_line_args dt', this );\n            var cmd_arg_key_element = $( '.command_line_args dt', this );\n            var cmd_arg_element = $( '.command_line_args dd', this );\n\n            for( var key in commandLineArgs )\n            {\n              cmd_arg_element = cmd_arg_element.clone();\n              cmd_arg_element.text( commandLineArgs[key] );\n\n              cmd_arg_key_element\n                .after( cmd_arg_element );\n            }\n\n            cmd_arg_key_element.closest( 'li' )\n              .show();\n\n            $( '.command_line_args dd:last', this )\n              .remove();\n\n            $( '.command_line_args dd:odd', this )\n              .addClass( 'odd' );\n          }\n\n          $( '.timeago', this )\n            .timeago();\n\n          $( '.index-left .block li:visible:odd', this )\n            .addClass( 'odd' );\n                    \n          // -- system_info\n\n          system_info( this, app.dashboard_values );\n\n          $( '#system a.reload', this )\n            .die( 'click' )\n            .live\n            (\n              'click',\n              function( event )\n              {\n                $.ajax\n                (\n                  {\n                    url : environment_basepath + '/admin/system?wt=json',\n                    dataType : 'json',\n                    context : this,\n                    beforeSend : function( arr, form, options )\n                    {\n                      loader.show( this );\n                    },\n                    success : function( response )\n                    {\n                      system_info( self, response );\n                    },\n                    error : function()\n                    {\n                    },\n                    complete : function()\n                    {\n                      loader.hide( this );\n                    }\n                  }\n                );\n\n                return false;\n              }\n            );\n        },\n        error : function( xhr, text_status, error_thrown )\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/java-properties.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/~java-properties\nsammy.get\n(\n  /^#\\/(~java-properties)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    content_element\n      .html( '<div id=\"java-properties\"></div>' );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/properties?wt=json',\n        dataType : 'json',\n        context : $( '#java-properties', content_element ),\n        beforeSend : function( xhr, settings )\n        {\n          this\n            .html( '<div class=\"loader\">Loading ...</div>' );\n        },\n        success : function( response, text_status, xhr )\n        {\n          var system_properties = response['system.properties'];\n          var properties_data = {};\n          var properties_content = [];\n          var properties_order = [];\n\n          var workaround = xhr.responseText.match( /\"(line\\.separator)\"\\s*:\\s*\"(.+?)\"/ );\n          if( workaround && workaround[2] )\n          {\n            system_properties[workaround[1]] = workaround[2];\n          }\n\n          for( var key in system_properties )\n          {\n            var displayed_key = key.replace( /\\./g, '.&#8203;' );\n            var displayed_value = [ system_properties[key] ];\n            var item_class = 'clearfix';\n\n            if( -1 !== key.indexOf( '.path' ) || -1 !== key.indexOf( '.dirs' ) )\n            {\n              displayed_value = system_properties[key].split( system_properties['path.separator'] );\n              if( 1 < displayed_value.length )\n              {\n                item_class += ' multi';\n              }\n            }\n\n            var item_content = '<li><dl class=\"' + item_class + '\">' + \"\\n\"\n                             + '<dt>' + displayed_key.esc() + '</dt>' + \"\\n\";\n\n            for( var i in displayed_value )\n            {\n              item_content += '<dd>' + displayed_value[i].esc() + '</dd>' + \"\\n\";\n            }\n\n            item_content += '</dl></li>';\n\n            properties_data[key] = item_content;\n            properties_order.push( key );\n          }\n\n          properties_order.sort();\n          for( var i in properties_order )\n          {\n            properties_content.push( properties_data[properties_order[i]] );\n          }\n\n          this\n            .html( '<ul>' + properties_content.join( \"\\n\" ) + '</ul>' );\n                    \n          $( 'li:odd', this )\n            .addClass( 'odd' );\n                    \n          $( '.multi dd:odd', this )\n            .addClass( 'odd' );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/logging.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar loglevel_path = null;\nvar frame_element = null;\n\nvar logging_handler = function( response, text_status, xhr )\n{\n  var self = this;\n  var loggers = response.loggers;\n\n  var levels = '<div class=\"selector-holder\"><div class=\"selector\">' + \"\\n\"\n             + '<a class=\"trigger\"><span><em>null</em></span></a>' + \"\\n\"\n             + '<ul>' + \"\\n\";\n\n  for( var key in response.levels )\n  {\n    var level = response.levels[key].esc();\n    levels += '<li><a href=\"#\" data-level=\"' + level + '\">' + level + '</a></li>' + \"\\n\";\n  }\n\n  levels += '<li class=\"unset\"><a href=\"#\" data-level=\"unset\">UNSET</a></li>' + \"\\n\"\n         + '</ul>' + \"\\n\"\n         + '<a class=\"close\"><span>[x]</span></a>' + \"\\n\"\n         + '</div></div>';\n\n  var logger_tree = function( filter )\n  {\n    var logger_content = '';\n    var filter_regex = new RegExp( '^' + filter + '\\\\.\\\\w+$' );\n\n    for( var i in loggers )\n    {\n      var logger = loggers[i];\n      var continue_matcher = false;\n\n      if( !filter )\n      {\n        continue_matcher = logger.name.indexOf( '.' ) !== -1;\n      }\n      else\n      {\n        continue_matcher = !logger.name.match( filter_regex );\n      }\n\n      if( continue_matcher )\n      {\n        continue;\n      }\n\n      var logger_class = '';\n\n      if( logger.set )\n      {\n        logger_class = 'set';\n      }\n            \n      if( !logger.level )\n      {\n        logger_class = 'null';\n      }\n\n      var logger_name = logger.name.split( '.' );\n      var display_name = logger_name.pop();\n\n      var leaf_class = 'jstree-leaf';\n      if( logger.level )\n      {\n        leaf_class += ' level-' + logger.level.esc().toLowerCase();\n      }\n\n      logger_content += '<li class=\"' + leaf_class + '\" data-logger=\"' + logger.name.esc() + '\">';\n      logger_content += '<ins class=\"trigger jstree-icon\">&nbsp;</ins>' + \"\\n\";\n      logger_content += '<a href=\"#\" class=\"trigger '+ logger_class + '\"' ;\n\n      if( logger.level )\n      {\n        logger_content += 'rel=\"' + logger.level.esc() + '\" ';\n      }\n            \n      logger_content += 'title=\"' + logger.name.esc() + '\">' + \"\\n\";\n\n      if( 0 !== logger_name.length )\n      {\n        logger_content += '<span class=\"ns\">' + logger_name.join( '.' ).esc() + '.</span>';\n      }\n\n      logger_content += '<span class=\"name\">' + display_name.esc() + '</span>' + \"\\n\";\n      logger_content += '</a>';\n\n      logger_content += levels;\n\n      var child_logger_content = logger_tree( logger.name );\n      if( child_logger_content )\n      {\n        logger_content += '<ul>';\n        logger_content += child_logger_content;\n        logger_content += '</ul>';\n      }\n\n      logger_content += '</li>';\n    }\n\n    return logger_content;\n  };\n\n  var logger_content = '<div class=\"block\">' + \"\\n\"\n                     + '<h2><span>' + response.watcher.esc() + '</span></h2>' + \"\\n\"\n                     + '<ul class=\"tree jstree\">' + logger_tree( null ) + '</ul>' + \"\\n\"\n                     + '</div>';\n\n  self\n    .html( logger_content );\n\n  self\n    .die( 'clear' )\n    .live\n    (\n      'clear',\n      function( event )\n      {\n        $( '.open', this )\n          .removeClass( 'open' );\n      }\n    );\n\n  $( 'li:last-child', this )\n    .addClass( 'jstree-last' );\n\n  $( 'li.jstree-leaf > a', this )\n    .each\n    (\n      function( index, element )\n      {\n        element = $( element );\n        var level = element.attr( 'rel' );\n\n        if( level )\n        {\n          var selector = $( '.selector-holder', element.closest( 'li' ) );\n\n          var trigger = $( 'a.trigger', selector );\n\n          trigger\n            .text( level.esc() );\n\n          if( element.hasClass( 'set' ) )\n          {\n            trigger.first()\n              .addClass( 'set' );\n          }\n\n          $( 'ul a[data-level=\"' + level + '\"]', selector ).first()\n            .addClass( 'level' );\n        }\n      }\n    )\n\n  $( '.trigger', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        self.trigger( 'clear' );\n\n        $( '.selector-holder', $( this ).parents( 'li' ).first() ).first()\n          .trigger( 'toggle' );\n\n        return false;\n      }\n    );\n\n  $( '.selector .close', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        self.trigger( 'clear' );\n        return false;\n      }\n    );\n    \n  $( '.selector-holder', this )\n    .die( 'toggle')\n    .live\n    (\n      'toggle',\n      function( event )\n      {\n        var row = $( this ).closest( 'li' );\n\n        $( 'a:first', row )\n          .toggleClass( 'open' );\n\n        $( '.selector-holder:first', row )\n          .toggleClass( 'open' );\n      }\n    );\n\n  $( '.selector ul a', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        var element = $( this );\n\n        $.ajax\n        (\n          {\n            url : loglevel_path,\n            dataType : 'json',\n            data : {\n              'wt' : 'json',\n              'set' : $( this ).parents( 'li[data-logger]' ).data( 'logger' ) + ':' + element.data( 'level' )\n            },\n            type : 'POST',\n            context : self,\n            beforeSend : function( xhr, settings )\n            {\n              element\n                .addClass( 'loader' );\n            },\n            success : logging_handler\n          }\n        );\n\n        return false;\n      }\n    );\n\n};\n\nvar format_time = function( time )\n{\n  time = time ? new Date( time ) : new Date();\n  return '<abbr title=\"' + time.toLocaleString().esc() + '\">' + time.toTimeString().split( ' ' ).shift().esc() + '</abbr>';\n}\n\nvar load_logging_viewer = function()\n{\n  var table = $( 'table', frame_element );\n  var state = $( '#state', frame_element );\n  var since = table.data( 'latest' ) || 0;\n  var sticky_mode = null;\n\n  $.ajax\n  (\n    {\n      url : loglevel_path + '?wt=json&since=' + since,\n      dataType : 'json',\n      beforeSend : function( xhr, settings )\n      {\n        // initial request\n        if( 0 === since )\n        {\n          sticky_mode = true;\n        }\n\n        // state element is in viewport\n        else if( state.position().top <= $( window ).scrollTop() + $( window ).height() - ( $( 'body' ).height() - state.position().top ) )\n        {\n          sticky_mode = true;\n        }\n\n        else\n        {\n          sticky_mode = false;\n        }\n      },\n      success : function( response, text_status, xhr )\n      {\n        var docs = response.history.docs;\n        var docs_count = docs.length;\n\n        var table = $( 'table', frame_element );\n\n        $( 'h2 span', frame_element )\n          .text( response.watcher.esc() );\n\n        state\n          .html( 'Last Check: ' + format_time() );\n\n        app.timeout = setTimeout\n        (\n          load_logging_viewer,\n          10000\n        );\n\n        if( 0 === docs_count )\n        {\n          table.trigger( 'update' );\n          return false;\n        }\n\n        var content = '<tbody>';\n\n        for( var i = 0; i < docs_count; i++ )\n        {\n          var doc = docs[i];\n\n          if( 1 === doc.time.length )\n          {\n            for( var key in doc )\n            {\n              doc[key] = doc[key][0];\n            }\n          }\n\n          if( !doc.trace )\n          {\n            var lines = doc.message.split( \"\\n\" );\n            if( 1 < lines.length )\n            {\n              doc.message = lines[0];\n              doc.trace = doc.message;\n              delete lines;\n            }\n          }\n\n          var has_trace = 'undefined' !== typeof( doc.trace );\n\n          doc.logger = '<abbr title=\"' + doc.logger.esc() + '\">' + doc.logger.split( '.' ).pop().esc() + '</abbr>';\n\n          var classes = [ 'level-' + doc.level.toLowerCase().esc() ];\n          if( has_trace )\n          {\n            classes.push( 'has-trace' );\n          }\n\n          content += '<tr class=\"' + classes.join( ' ' ) + '\">' + \"\\n\";\n            content += '<td class=\"span\"><a><span>' + format_time( doc.time ) + '</span></a></td>' + \"\\n\";\n            content += '<td class=\"level span\"><a><span>' + doc.level.esc() + '</span></span></a></td>' + \"\\n\";\n            content += '<td class=\"span\"><a><span>' + doc.logger + '</span></a></td>' + \"\\n\";\n            content += '<td class=\"message span\"><a><span>' + doc.message.replace( /,/g, ',&#8203;' ).esc() + '</span></a></td>' + \"\\n\";\n          content += '</tr>' + \"\\n\";\n\n          if( has_trace )\n          {\n            content += '<tr class=\"trace\">' + \"\\n\";\n              \n              // (1) with colspan\n              content += '<td colspan=\"4\"><pre>' + doc.trace.esc() + '</pre></td>' + \"\\n\";\n              \n              // (2) without colspan\n              //content += '<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';\n              //content += '<td>' + doc.trace.esc().replace( /\\n/g, '<br>' ) + '</td>' + \"\\n\";\n\n            content += '</tr>' + \"\\n\";\n          }\n\n        }\n\n        content += '</tbody>';\n\n        $( 'table', frame_element )\n          .append( content );\n\n        table\n          .data( 'latest', response.info.last )\n          .removeClass( 'has-data' )\n          .trigger( 'update' );\n\n        if( sticky_mode )\n        {\n          $( 'body' )\n            .animate\n            (\n                { scrollTop: state.position().top },\n                1000\n            );\n        }\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n}\n\n// #/~logging\nsammy.get\n(\n  /^#\\/(~logging)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    loglevel_path = core_basepath + '/admin/logging';\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/logging.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        frame_element = $( '#frame', content_element );\n        frame_element\n          .html\n          (\n            '<div id=\"viewer\">' + \"\\n\" +\n              '<div class=\"block\">' + \"\\n\" +\n                '<h2><span>&nbsp;</span></h2>' + \"\\n\" +\n              '</div>' + \"\\n\" +\n              '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">' + \"\\n\" +\n                '<thead>' + \"\\n\" +\n                  '<tr>' + \"\\n\" +\n                    '<th class=\"time\">Time</th>' + \"\\n\" +\n                    '<th class=\"level\">Level</th>' + \"\\n\" +\n                    '<th class=\"logger\">Logger</th>' + \"\\n\" +\n                    '<th class=\"message\">Message</th>' + \"\\n\" +\n                  '</tr>' + \"\\n\" +\n                '</thead>' + \"\\n\" +\n                '<tfoot>' + \"\\n\" +\n                  '<tr>' + \"\\n\" +\n                    '<td colspan=\"4\">No Events available</td>' + \"\\n\" +\n                  '</tr>' + \"\\n\" +\n                '</thead>' + \"\\n\" +\n              '</table>' + \"\\n\" +\n              '<div id=\"state\" class=\"loader\">&nbsp;</div>' + \"\\n\" +\n            '</div>'\n          );\n\n        var table = $( 'table', frame_element );\n\n        table\n          .die( 'update' )\n          .live\n          (\n            'update',\n            function( event )\n            {\n              var table = $( this );\n              var tbody = $( 'tbody', table );\n\n              0 !== tbody.size()\n                ? table.addClass( 'has-data' )\n                : table.removeClass( 'has-data' );\n\n              return false;\n            }\n          );\n\n        load_logging_viewer();\n\n        $( '.has-trace a', table )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).closest( 'tr' )\n                .toggleClass( 'open' )\n                .next().toggle();\n\n              return false;\n            }\n          );\n      }\n    );\n  }\n);\n\n// #/~logging/level\nsammy.get\n(\n  /^#\\/(~logging)\\/level$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    loglevel_path = core_basepath + '/admin/logging';\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/logging.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        $( '#menu a[href=\"' + context.path + '\"]' )\n          .parent().addClass( 'active' );\n                      \n        $.ajax\n        (\n          {\n            url : loglevel_path + '?wt=json',\n            dataType : 'json',\n            context : $( '#frame', content_element ),\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .html( '<div class=\"loader\">Loading ...</div>' );\n            },\n            success : logging_handler\n          }\n        );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/ping.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n$( '.ping a', app.core_menu )\n  .live\n  (\n    'click',\n    function( event )\n    {\n      $.ajax\n      (\n        {\n          url : $( this ).attr( 'rel' ) + '?wt=json&ts=' + (new Date).getTime(),\n          dataType : 'json',\n          context: this,\n          beforeSend : function( arr, form, options )\n          {\n            loader.show( this );\n          },\n          success : function( response, text_status, xhr )\n          {\n            $( this )\n              .removeAttr( 'title' );\n                        \n            $( this ).parents( 'li' )\n              .removeClass( 'error' );\n                            \n            var qtime_element = $( '.qtime', this );\n                        \n            if( 0 === qtime_element.size() )\n            {\n              qtime_element = $( '<small class=\"qtime\"> (<span></span>)</small>' );\n                            \n              $( this )\n                .append( qtime_element );\n            }\n                        \n            $( 'span', qtime_element )\n              .html( response.responseHeader.QTime + 'ms' );\n          },\n          error : function( xhr, text_status, error_thrown )\n          {\n            $( this )\n              .attr( 'title', '/admin/ping is not configured (' + xhr.status + ': ' + error_thrown + ')' );\n                        \n            $( this ).parents( 'li' )\n              .addClass( 'error' );\n          },\n          complete : function( xhr, text_status )\n          {\n            loader.hide( this );\n          }\n        }\n      );\n            \n      return false;\n    }\n  );"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/plugins.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar core_basepath = null;\nvar content_element = null;\nvar selected_type = null;\nvar context_path = null;\nvar active_context = null;\nvar changes = null;\nvar reference_xml = null;\n\nvar compute_plugin_data = function( response, changeset )\n{\n  var types = [];\n  var sort_table = {};\n  var plugin_data = {};\n\n  var types_obj = {};\n  var plugin_key = null;\n\n  changes = { count : {}, list : {} }\n\n  for( var i = 0; i < response['solr-mbeans'].length; i++ )\n  {\n    if( !( i % 2 ) )\n    {\n      plugin_key = response['solr-mbeans'][i];\n    }\n    else\n    {\n      plugin_data[plugin_key] = response['solr-mbeans'][i];\n    }\n  }\n\n  for( var key in plugin_data )\n  {\n    sort_table[key] = {\n      url : [],\n      component : [],\n      handler : []\n    };\n    for( var part_key in plugin_data[key] )\n    {\n      if( plugin_data[key][part_key]['_changed_'] )\n      {\n        delete plugin_data[key][part_key]['_changed_'];\n\n        changes.count[key] = changes.count[key] || 0;\n        changes.count[key]++;\n\n        changes.list[key] = changes.list[key] || {};\n        changes.list[key][part_key] = true;\n      }\n\n      if( 0 < part_key.indexOf( '.' ) )\n      {\n        types_obj[key] = true;\n        sort_table[key]['handler'].push( part_key );\n      }\n      else if( 0 === part_key.indexOf( '/' ) )\n      {\n        types_obj[key] = true;\n        sort_table[key]['url'].push( part_key );\n      }\n      else\n      {\n        types_obj[key] = true;\n        sort_table[key]['component'].push( part_key );\n      }\n    }\n  }\n\n  for( var type in types_obj )\n  {\n    types.push( type );\n  }\n  types.sort();\n\n  return {\n    'plugin_data' : plugin_data,\n    'sort_table' : sort_table,\n    'types' : types\n  };\n};\n\nvar render_plugin_data = function( plugin_data, plugin_sort, types )\n{\n  var frame_element = $( '#frame', content_element );\n  var navigation_element = $( '#navigation ul', content_element );\n\n  var navigation_content = [];\n  for( var i = 0; i < types.length; i++ )\n  {\n    var type_url = active_context.params.splat[0] + '/' + active_context.params.splat[1] + '/' + types[i].toLowerCase();\n\n    var navigation_markup = '<li class=\"' + types[i].toLowerCase().esc() + '\">' +\n                            '<a href=\"#/' + type_url + '\" rel=\"' + types[i].esc() + '\">' + types[i].esc();\n\n    if( changes.count[types[i]] )\n    {\n      navigation_markup += ' <span>' + changes.count[types[i]].esc() + '</span>';\n    }\n\n    navigation_markup += '</a>' +\n                         '</li>';\n\n    navigation_content.push( navigation_markup );\n  }\n\n  navigation_content.push( '<li class=\"PLUGINCHANGES\"><a href=\"#\">Watch Changes</a></li>' );\n  navigation_content.push( '<li class=\"RELOAD\"><a href=\"#\" onClick=\"window.location.reload()\">Refresh Values</a></li>' );\n\n  navigation_element\n    .html( navigation_content.join( \"\\n\" ) );\n    \n  $( '.PLUGINCHANGES a', navigation_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      { \n        load_reference_xml();\n        \n        changes = { count : {}, list : {} }\n        $( 'a > span', navigation_element ).remove();\n        $( '.entry.changed', frame_element ).removeClass( 'changed' );\n\n        $.blockUI\n        (\n          {\n            message: $('#recording'),\n            css: { width: '450px' }\n          }\n        );\n\n        return false;\n      }\n    ); \n\n  $( '#recording button' )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      { \n        $.ajax\n        (\n          {\n            type: 'POST',\n            url: core_basepath + '/admin/mbeans',\n            dataType : 'json',\n            data: { \n              'stats': 'true',\n              'wt': 'json', \n              'diff': 'true',\n              'all': 'true',\n              'stream.body': reference_xml \n            },\n            success : function( response, text_status, xhr )\n            {\n              load_reference_xml();\n\n              app.plugin_data = compute_plugin_data( response );\n              render_plugin_data( app.plugin_data.plugin_data, app.plugin_data.sort_table, app.plugin_data.types );\n            }\n          }\n        );\n        $.unblockUI();\n        return false;\n      }\n    ); \n              \n  $( 'a[href=\"' + context_path + '\"]', navigation_element )\n    .parent().addClass( 'current' );\n            \n  var content = '<ul>';\n  for( var sort_key in plugin_sort[selected_type] )\n  {\n    plugin_sort[selected_type][sort_key].sort();\n    var plugin_type_length = plugin_sort[selected_type][sort_key].length;\n                \n    for( var i = 0; i < plugin_type_length; i++ )\n    {\n      var bean = plugin_sort[selected_type][sort_key][i];\n      var classes = [ 'entry' ];\n\n      if( changes.list[selected_type] && changes.list[selected_type][bean] )\n      {\n        classes.push( 'changed' );\n      }\n\n      content += '<li class=\"' + classes.join( ' ' ) + '\">' + \"\\n\";\n      content += '<a href=\"' + context_path + '?entry=' + bean.esc() + '\" data-bean=\"' + bean.esc() + '\">';\n      content += '<span>' + bean.esc() + '</span>';\n      content += '</a>' + \"\\n\";\n      content += '<ul class=\"detail\">' + \"\\n\";\n                    \n      var details = plugin_data[selected_type][ plugin_sort[selected_type][sort_key][i] ];\n      for( var detail_key in details )\n      {\n        if( 'stats' !== detail_key )\n        {\n          var detail_value = details[detail_key];\n\n          if( 'description' === detail_key )\n          {\n            // Link component list to their MBeans page\n            if(detail_value.match(/^Search using components: /)) {\n              var idx = detail_value.indexOf(':');\n              var url = '#/'+active_context.params.splat[0]+'/plugins/other?entry=';\n              var tmp = 'Search using components:<ul>';\n              $.each(detail_value.substr(idx+1).split(\",\"), function(index, value) { \n                value = $.trim(value);\n                tmp += '<li><a href=\"'+url+value+'\" class=\"linker\">'+value+\"</a></li>\";\n              });\n              tmp += \"</ul>\";\n              detail_value = tmp;\n            }\n          }\n\n          content += '<li><dl class=\"clearfix\">' + \"\\n\";\n          content += '<dt>' + detail_key + ':</dt>' + \"\\n\";\n          if($.isArray(detail_value)) {\n            $.each(detail_value, function(index, value) { \n              content += '<dd>' + value + '</dd>' + \"\\n\";\n            });\n          }\n          else {\n            content += '<dd>' + detail_value + '</dd>' + \"\\n\";\n          }\n          content += '</dl></li>' + \"\\n\";\n        }\n        else if( 'stats' === detail_key && details[detail_key] )\n        {\n          content += '<li class=\"stats clearfix\">' + \"\\n\";\n          content += '<span>' + detail_key + ':</span>' + \"\\n\";\n          content += '<ul>' + \"\\n\";\n\n          for( var stats_key in details[detail_key] )\n          {\n            var stats_value = new String( details[detail_key][stats_key] );\n            stats_value = stats_value.replace( /([\\(@])/g, '$1&#8203;' );\n\n            content += '<li><dl class=\"clearfix\">' + \"\\n\";\n            content += '<dt>' + stats_key + ':</dt>' + \"\\n\";\n            content += '<dd>' + stats_value + '</dd>' + \"\\n\";\n            content += '</dl></li>' + \"\\n\";\n          }\n\n          content += '</ul></li>' + \"\\n\";\n        }\n      }\n                    \n      content += '</ul>' + \"\\n\";\n    }\n  }\n  content += '</ul>' + \"\\n\";\n\n  frame_element\n    .html( content );\n\n  \n  var path = active_context.path.split( '?entry=' );\n  var entries = ( path[1] || '' ).split( ',' );\n  \n  var entry_count = entries.length;\n  for( var i = 0; i < entry_count; i++ )\n  {\n    $( 'a[data-bean=\"' + entries[i] + '\"]', frame_element )\n      .parent().addClass( 'expanded' );\n  }\n\n  $( 'a', frame_element )\n    .off( 'click' )\n    .on\n    (\n      'click',\n      function( event )\n      { \n        var self = $( this );\n        var bean = self.data( 'bean' );\n\n        var split = '?entry=';\n        var path = active_context.path.split( split );\n        var entry = ( path[1] || '' );\n\n        var regex = new RegExp( bean.replace( /\\//g, '\\\\/' ) + '(,|$)' );\n        var match = regex.test( entry );\n\n        var url = path[0] + split;\n\n        url += match\n             ? entry.replace( regex, '' )\n             : entry + ',' + bean;\n\n        url = url.replace( /=,/, '=' );\n        url = url.replace( /,$/, '' );\n        url = url.replace( /\\?entry=$/, '' );\n\n        active_context.redirect( url );\n        return false;\n      }\n    );\n  \n  // Try to make links for anything with http (but leave the rest alone)\n  $( '.detail dd' ).each(function(index) {\n    var txt = $(this).html();\n    if(txt.indexOf(\"http\") >= 0) {\n      $(this).linker({\n         className : 'linker'\n      });\n    }\n  });\n  \n  // Add invisible whitespace after each slash\n  $( '.detail a.linker' ).each(function(index) {\n    $(this).html( $(this).html().replace( /\\//g, '/&#8203;' ) );\n  });\n  \n            \n  $( '.entry', frame_element )\n    .each\n    (\n      function( i, entry )\n      {\n        $( '.detail > li', entry ).not( '.stats' ).filter( ':even' )\n          .addClass( 'odd' );\n\n        $( '.stats li:odd', entry )\n          .addClass( 'odd' );\n      }\n    );\n};\n\nvar load_reference_xml = function()\n{\n  $.ajax\n  (\n    {\n      type: 'GET',\n      url: core_basepath + '/admin/mbeans?stats=true&wt=xml',\n      dataType : 'text',\n      success: function( data )\n      {\n        reference_xml = data;\n      }\n    }\n  );\n}\n\nsammy.bind\n(\n  'plugins_load',\n  function( event, params )\n  {\n    var callback = function()\n    {\n      params.callback( app.plugin_data.plugin_data, app.plugin_data.sort_table, app.plugin_data.types );\n    }\n        \n    if( app.plugin_data )\n    {\n      callback( app.plugin_data );\n      return true;\n    }\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/mbeans?stats=true&wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          app.plugin_data = compute_plugin_data( response );\n\n          $.get\n          (\n            'tpl/plugins.html',\n            function( template )\n            {\n              $( '#content' )\n                .html( template );\n                            \n              callback( app.plugin_data );\n            }\n          );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\n// #/:core/plugins/$type\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(plugins)\\\\/(\\\\w+)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    content_element = $( '#content' );\n    selected_type = context.params.splat[2].toUpperCase();\n    context_path = context.path.split( '?' ).shift();\n    active_context = context;\n    \n    sammy.trigger\n    (\n      'plugins_load',\n      {\n        active_core : this.active_core,\n        callback : render_plugin_data\n      }\n    );                \n  }\n);\n\n// #/:core/plugins\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(plugins)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    delete app.plugin_data;\n\n    sammy.trigger\n    (\n      'plugins_load',\n      {\n        active_core : this.active_core,\n        callback :  function( plugin_data, plugin_sort, types )\n        {\n          context.redirect( context.path + '/' + types[0].toLowerCase() );\n        }\n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/query.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/query\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(query)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    $.get\n    (\n      'tpl/query.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var query_element = $( '#query', content_element );\n        var query_form = $( '#form form', query_element );\n        var url_element = $( '#url', query_element );\n        var result_element = $( '#result', query_element );\n        var response_element = $( '#response', result_element );\n\n        url_element\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var wt = $( '[name=\"wt\"]', query_form ).val();\n\n              var content_generator = {\n\n                _default : function( xhr )\n                {\n                  return xhr.responseText.esc();\n                },\n\n                json : function( xhr )\n                {\n                  return app.format_json( xhr.responseText );\n                }\n\n              };\n\n              $.ajax\n              (\n                {\n                  url : this.href,\n                  dataType : wt,\n                  context : response_element,\n                  beforeSend : function( xhr, settings )\n                  {\n                    this\n                     .html( '<div class=\"loader\">Loading ...</div>' );\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                    var code = $(\n                      '<pre class=\"syntax language-' + wt + '\"><code>' +\n                      ( content_generator[wt] || content_generator['_default'] )( xhr ) +\n                      '</code></pre>'\n                    );\n                    this.html( code );\n\n                    if( 'success' === text_status )\n                    {\n                      hljs.highlightBlock( code.get(0) );\n                    }\n                  }\n                }\n              );\n            }\n          )\n\n        $( '.optional legend input[type=checkbox]', query_form )\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var fieldset = $( this ).parents( 'fieldset' );\n\n              this.checked\n                ? fieldset.addClass( 'expanded' )\n                : fieldset.removeClass( 'expanded' );\n            }\n          );\n\n        query_form\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              var form_values = [];\n \n              var add_to_form_values = function add_to_form_values( fields )\n              {\n                 for( var i in fields )\n                 {\n                  if( !fields[i].value || 0 === fields[i].value.length )\n                  {\n                    continue;\n                  }\n \n                  form_values.push( fields[i] );\n                 }\n              };\n \n              var fieldsets = $( '> fieldset', query_form );\n \n              var fields = fieldsets.first().formToArray( true );\n              add_to_form_values( fields );\n\n              fieldsets.not( '.common' )\n                .each\n                (\n                  function( i, set )\n                  {\n                    if( $( 'legend input', set ).is( ':checked' ) )\n                    {\n                      var fields = $( set ).formToArray( true );\n                      add_to_form_values( fields );\n                    }\n                  }\n                );\n\n              var handler_path = $( '#qt', query_form ).val();\n              if( '/' !== handler_path[0] )\n              {\n                form_values.push( { name : 'qt', value : handler_path.esc() } );\n                handler_path = '/select';\n              }\n\n              var query_url = window.location.protocol + '//' + window.location.host\n                            + core_basepath + handler_path + '?' + $.param( form_values );\n\n              var custom_parameters = $( '#custom_parameters', query_form ).val();\n              if( custom_parameters && 0 !== custom_parameters.length )\n              {\n                query_url += '&' + custom_parameters.replace( /^&/, '' ); \n              }\n\n              url_element\n                .attr( 'href', query_url )\n                .text( query_url )\n                .trigger( 'change' );\n                            \n              result_element\n                .show();\n                            \n              return false;\n            }\n          );\n\n        var fields = 0;\n        for( var key in context.params )\n        {\n          if( 'string' === typeof context.params[key] )\n          {\n            fields++;\n            $( '[name=\"' + key + '\"]', query_form )\n              .val( context.params[key] );\n          }\n        }\n\n        if( 0 !== fields )\n        {\n          query_form\n            .trigger( 'submit' );\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/replication.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar timer_element = null;\nvar timer_timeout = null;\n\nvar core_basepath = null;\nvar navigation_element = null;\nvar replication_element = null;\n\nvar init_timer = function( next_tick )\n{\n  if( timer_timeout )\n  {\n    window.clearTimeout( timer_timeout );\n  }\n  update_timer( next_tick );\n}\n\nvar update_timer = function( next_tick )\n{\n  if( 0 === next_tick )\n  {\n    replication_fetch_status();\n    return false;\n  }\n\n  $( 'p .tick', timer_element )\n    .text( app.convert_seconds_to_readable_time( next_tick ) );\n\n  timer_timeout = window.setTimeout\n  (\n    'update_timer( ' + --next_tick + ' )',\n    1000\n  );\n}\n\nvar clear_timer = function()\n{\n  if( timer_timeout )\n  {\n    window.clearTimeout( timer_timeout );\n    timer_element.hide();\n  }\n}\n\nvar replication_fetch_status = function()\n{\n  $.ajax\n  (\n    {\n      url : core_basepath + '/replication?command=details&wt=json',\n      dataType : 'json',\n      beforeSend : function( xhr, settings )\n      {\n        $( '.refresh-status span', navigation_element )\n          .addClass( 'loader' );\n\n        clear_timer();\n      },\n      success : function( response, text_status, xhr )\n      {\n        $( '.refresh-status span', navigation_element )\n          .removeClass( 'loader' );\n                \n        var data = response.details;\n        var is_slave = 'true' === data.isSlave;\n\n        replication_element\n          .addClass( is_slave ? 'slave' : 'master' );\n\n        if( is_slave )\n        {\n          var error_element = $( '#error', replication_element );\n\n          if( data.slave.ERROR )\n          {\n            error_element\n              .html( data.slave.ERROR )\n              .show();\n          }\n          else\n          {\n            error_element\n              .hide()\n              .empty();\n          }\n\n          var progress_element = $( '#progress', replication_element );\n\n          var start_element = $( '#start', progress_element );\n          $( 'span', start_element )\n            .text( data.slave.replicationStartTime );\n\n          var eta_element = $( '#eta', progress_element );\n          $( 'span', eta_element )\n            .text( app.convert_seconds_to_readable_time( data.slave.timeRemaining ) );\n\n          var bar_element = $( '#bar', progress_element );\n          $( '.files span', bar_element )\n            .text( data.slave.numFilesToDownload );\n          $( '.size span', bar_element )\n            .text( data.slave.bytesToDownload );\n\n          var speed_element = $( '#speed', progress_element );\n          $( 'span', speed_element )\n            .text( data.slave.downloadSpeed );\n\n          var done_element = $( '#done', progress_element );\n          $( '.files span', done_element )\n            .text( data.slave.numFilesDownloaded );\n          $( '.size span', done_element )\n            .text( data.slave.bytesDownloaded );\n          $( '.percent span', done_element )\n            .text( parseInt(data.slave.totalPercent ) );\n\n          var percent = parseInt( data.slave.totalPercent );\n          if( 0 === percent )\n          {\n            done_element\n              .css( 'width', '1px' ); \n          }\n          else\n          {\n            done_element\n              .css( 'width', percent + '%' );\n          }\n\n          var current_file_element = $( '#current-file', replication_element );\n          $( '.file', current_file_element )\n            .text( data.slave.currentFile );\n          $( '.done', current_file_element )\n            .text( data.slave.currentFileSizeDownloaded );\n          $( '.total', current_file_element )\n            .text( data.slave.currentFileSize );\n          $( '.percent', current_file_element )\n            .text( parseInt( data.slave.currentFileSizePercent ) );\n\n          if( !data.slave.indexReplicatedAtList )\n          {\n            data.slave.indexReplicatedAtList = [];\n          }\n\n          if( !data.slave.replicationFailedAtList )\n          {\n            data.slave.replicationFailedAtList = [];\n          }\n\n          var iterations_element = $( '#iterations', replication_element );\n          var iterations_list = $( '.iterations ul', iterations_element );\n\n          var iterations_data = [];\n          var iterations_obj = {};\n\n          for( var i in data.slave.indexReplicatedAtList )\n          {\n            var date = data.slave.indexReplicatedAtList[i];\n            if( !iterations_obj[date] )\n            {\n              iterations_obj[date] = true;\n              iterations_data.push( date );\n            }\n          }\n\n          for( var i in data.slave.replicationFailedAtList )\n          {\n            var date = data.slave.replicationFailedAtList[i];\n            if( !iterations_obj[date] )\n            {\n              iterations_obj[date] = true;\n              iterations_data.push( date );\n            }\n          }\n\n          iterations_data.sort().reverse();\n\n          if( 0 !== iterations_data.length )\n          {\n            var iterations = [];\n            for( var i = 0; i < iterations_data.length; i++ )\n            {\n              iterations.push( '<li data-date=\"' + iterations_data[i] + '\">' + iterations_data[i] + '</li>' );\n            }\n                        \n            iterations_list\n              .html( iterations.join( \"\\n\" ) )\n              .show();\n                        \n            $( data.slave.indexReplicatedAtList )\n              .each\n              (\n                function( key, value )\n                {\n                  $( 'li[data-date=\"' + value + '\"]', iterations_list )\n                    .addClass( 'replicated' );\n                }\n              );\n                        \n            if( data.slave.indexReplicatedAt )\n            {\n              $( 'li[data-date=\"' + data.slave.indexReplicatedAt + '\"]', iterations_list )\n                .addClass( 'latest' );\n            }\n                        \n            $( data.slave.replicationFailedAtList )\n              .each\n              (\n                function( key, value )\n                {\n                  $( 'li[data-date=\"' + value + '\"]', iterations_list )\n                    .addClass( 'failed' );\n                }\n              );\n                        \n            if( data.slave.replicationFailedAt )\n            {\n              $( 'li[data-date=\"' + data.slave.replicationFailedAt + '\"]', iterations_list )\n                .addClass( 'latest' );\n            }\n\n            if( 0 !== $( 'li:hidden', iterations_list ).size() )\n            {\n              $( 'a', iterations_element )\n                .show();\n            }\n            else\n            {\n              $( 'a', iterations_element )\n                .hide();\n            }\n          }\n        }\n\n        var details_element = $( '#details', replication_element );\n        var current_type_element = $( ( is_slave ? '.slave' : '.masterSearch' ), details_element );\n        var master_data = is_slave ? data.slave.masterDetails : data;\n\n        // the currently searchable commit regardless of type\n        $( '.version div', current_type_element )\n          .html( data.indexVersion );\n        $( '.generation div', current_type_element )\n          .html( data.generation );\n        $( '.size div', current_type_element )\n          .html( data.indexSize );\n\n        // what's replicable on the master\n        var master_element = $( '.master', details_element );\n        $( '.version div', master_element )\n          .html( master_data.master.replicableVersion || '-' );\n        $( '.generation div', master_element )\n          .html( master_data.master.replicableGeneration || '-' );\n        $( '.size div', master_element )\n          .html( \"-\" );\n                \n        if( is_slave )\n        {\n          // what's searchable on the master\n          var master_searchable = $( '.masterSearch', details_element );\n          $( '.version div', master_searchable )\n            .html( master_data.indexVersion );\n          $( '.generation div', master_searchable )\n            .html( master_data.generation );\n          $( '.size div', master_searchable )\n            .html( master_data.indexSize );\n \n          // warnings if slave version|gen doesn't match what's replicable\n          if( data.indexVersion !== master_data.master.replicableVersion )\n          {\n            $( '.version', details_element )\n              .addClass( 'diff' );\n          }\n          else\n          {\n            $( '.version', details_element )\n              .removeClass( 'diff' );\n          }\n                    \n          if( data.generation !== master_data.master.replicableGeneration )\n          {\n            $( '.generation', details_element )\n              .addClass( 'diff' );\n          }\n          else\n          {\n            $( '.generation', details_element )\n              .removeClass( 'diff' );\n          }\n        }\n\n        if( is_slave )\n        {\n          var settings_element = $( '#settings', replication_element );\n\n          if( data.slave.masterUrl )\n          {\n            $( '.masterUrl dd', settings_element )\n              .html( response.details.slave.masterUrl )\n              .parents( 'li' ).show();\n          }\n\n          var polling_content = '&nbsp;';\n          var polling_ico = 'ico-1';\n\n          if( 'true' === data.slave.isPollingDisabled )\n          {\n            polling_ico = 'ico-0';\n\n            $( '.disable-polling', navigation_element ).hide();\n            $( '.enable-polling', navigation_element ).show();\n          }\n          else\n          {\n            $( '.disable-polling', navigation_element ).show();\n            $( '.enable-polling', navigation_element ).hide();\n\n            if( data.slave.pollInterval )\n            {\n              polling_content = '(interval: ' + data.slave.pollInterval + ')';\n            }\n          }\n\n          $( '.isPollingDisabled dd', settings_element )\n            .removeClass( 'ico-0' )\n            .removeClass( 'ico-1' )\n            .addClass( polling_ico )\n            .html( polling_content )\n            .parents( 'li' ).show();\n                \n          if( 'true' === data.slave.isReplicating )\n          {\n            replication_element\n              .addClass( 'replicating' );\n                        \n            $( '.replicate-now', navigation_element ).hide();\n            $( '.abort-replication', navigation_element ).show();\n                        \n            window.setTimeout( replication_fetch_status, 1000 );\n          }\n          else\n          {\n            replication_element\n              .removeClass( 'replicating' );\n                        \n            $( '.replicate-now', navigation_element ).show();\n            $( '.abort-replication', navigation_element ).hide();\n\n\n            if( 'false' === data.slave.isPollingDisabled && data.slave.pollInterval )\n            {\n              timer_element = $( '.timer', navigation_element );\n              approx_element = $( '.approx', timer_element );\n\n              var next_tick = app.convert_duration_to_seconds( data.slave.pollInterval );\n              approx_element.show();\n\n              if( data.slave.nextExecutionAt )\n              {\n                var nextExecutionAt = new SolrDate( data.slave.nextExecutionAt );\n                var currentDate = new SolrDate( data.slave.currentDate );\n\n                if( nextExecutionAt.getTime() > currentDate.getTime() )\n                {\n                  next_tick = ( nextExecutionAt.getTime() - currentDate.getTime() ) / 1000;\n                  approx_element.hide();\n\n                  $( 'small', timer_element )\n                    .text( data.slave.nextExecutionAt )\n                    .show();\n                }\n              }\n\n              init_timer( next_tick );\n\n              timer_element\n                .show();\n            }\n          }\n        }\n\n        var master_settings_element = $( '#master-settings', replication_element );\n        var master_data = is_slave ? data.slave.masterDetails.master : data.master;\n\n        var replication_icon = 'ico-0';\n        if( 'true' === master_data.replicationEnabled )\n        {\n          replication_icon = 'ico-1';\n\n          $( '.disable-replication', navigation_element ).show();\n          $( '.enable-replication', navigation_element ).hide();\n        }\n        else\n        {\n          $( '.disable-replication', navigation_element ).hide();\n          $( '.enable-replication', navigation_element ).show();\n        }\n\n        $( '.replicationEnabled dd', master_settings_element )\n          .removeClass( 'ico-0' )\n          .removeClass( 'ico-1' )\n          .addClass( replication_icon )\n          .parents( 'li' ).show();\n\n        $( '.replicateAfter dd', master_settings_element )\n          .html( master_data.replicateAfter.join( ', ' ) )\n          .parents( 'li' ).show();\n\n        if( master_data.confFiles )\n        {\n          var conf_files = [];\n          var conf_data = master_data.confFiles.split( ',' );\n                    \n          for( var i = 0; i < conf_data.length; i++ )\n          {\n            var item = conf_data[i];\n\n            if( - 1 !== item.indexOf( ':' ) )\n            {\n              info = item.split( ':' );\n              item = '<abbr title=\"' + info[0] + ' » ' + info[1] + '\">' + ( is_slave ? info[1] : info[0] ) + '</abbr>';\n            }\n\n            conf_files.push( item );\n          }\n\n          $( '.confFiles dd', master_settings_element )\n            .html( conf_files.join( ', ' ) )\n            .parents( 'li' ).show();\n        }\n\n\n        $( '.block', replication_element ).last()\n          .addClass( 'last' );\n      },\n      error : function( xhr, text_status, error_thrown )\n      {\n        $( '#content' )\n          .html( 'sorry, no replication-handler defined!' );\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n}\n\n// #/:core/replication\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(replication)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    $.get\n    (\n      'tpl/replication.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                \n        replication_element = $( '#replication', content_element );\n        navigation_element = $( '#navigation', replication_element );\n\n        replication_fetch_status();\n\n        $( '#iterations a', content_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.iterations' )\n                .toggleClass( 'expanded' );\n                            \n              return false;\n            }\n          );\n\n        $( 'button', navigation_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var button = $( this );\n              var command = button.data( 'command' );\n\n              if( button.hasClass( 'refresh-status' ) && !button.hasClass( 'loader' ) )\n              {\n                replication_fetch_status();\n              }\n              else if( command )\n              {\n                $.get\n                (\n                  core_basepath + '/replication?command=' + command + '&wt=json',\n                  function()\n                  {\n                    replication_fetch_status();\n                  }\n                );\n              }\n              return false;\n            }\n          );\n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/schema-browser.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar current_core = null;\nvar cookie_schema_browser_autoload = 'schema-browser_autoload';\n\nvar luke_array_to_struct = function( array )\n{\n  var struct = {\n    keys : [],\n    values : []\n  };\n  for( var i = 0; i < array.length; i += 2 )\n  {\n    struct.keys.push( array[i] );\n    struct.values.push( array[i+1] );\n  }\n  return struct;\n}\n\nvar luke_array_to_hash = function( array )\n{\n  var hash = {};\n  for( var i = 0; i < array.length; i += 2 )\n  {\n    hash[ array[i] ] = array[i+1];\n  }\n  return hash;\n}\n\nvar load_terminfo = function( trigger_element, core_basepath, field, data_element, terminfo_element )\n{\n  var luke_url = core_basepath + '/admin/luke?wt=json&fl=' + field;\n  var topterms_count_element = $( '.topterms-holder .head input', terminfo_element );\n\n  var term_load_count = parseInt( topterms_count_element.val(), 10 );\n  if( term_load_count )\n  {\n    luke_url += '&numTerms=' + term_load_count;\n  }\n\n  $.ajax\n  (\n    {\n      url : luke_url,\n      dataType : 'json',\n      context : terminfo_element,\n      beforeSend : function( xhr, settings )\n      {\n        $( 'span', trigger_element )\n          .addClass( 'loader' );\n      },\n      success : function( response, text_status, xhr )\n      {\n        var additional_styles = [];\n        var field_data = response.fields[field];\n\n        if( !field_data || !( field_data.topTerms && field_data.histogram ) )\n        {\n          terminfo_element\n            .addClass( 'disabled' );\n\n          return false;\n        }\n\n        var get_width = function get_width()\n        {\n          return $( this ).width();\n        }\n\n        var topterms_holder_element = $( '.topterms-holder', data_element );\n        var histogram_holder_element = $( '.histogram-holder', data_element );\n\n        if( !field_data.topTerms )\n        {\n          topterms_holder_element\n            .hide();\n        }\n        else\n        {\n          topterms_holder_element\n            .show();\n\n          var topterms_table_element = $( 'ul', topterms_holder_element );\n\n          var topterms = field_data.topTerms;\n          var topterms_count = topterms.length;\n                    \n          var topterms_content = '';\n          var topterms_frq_last = null;\n\n          for( var i = 0; i < topterms_count; i += 2 )\n          {\n            if( topterms_frq_last !== topterms[i+1] )\n            {\n              if( topterms_frq_last )\n              {\n                topterms_content += '</ul></li>' + \"\\n\";\n              }\n\n              topterms_frq_last = topterms[i+1];\n              topterms_content += '<li class=\"clearfix\">'\n                               +  '<p><span>' + app.format_number( topterms_frq_last ) + '</span></p>' + \"\\n\"\n                               +  '<ul>' + \"\\n\";\n            }\n\n            var target = '#/' + current_core + '/query?q=' + field.esc() + ':' + encodeURIComponent( '\"' + topterms[i] + '\"' );\n            topterms_content += '<li><a href=\"' + target + '\">' + topterms[i].esc() + '</a></li>' + \"\\n\";\n          }\n\n          topterms_content += '</li>';\n\n          topterms_count = topterms_count / 2;\n\n          $( 'input', trigger_element )\n            .val( topterms_count );\n\n          topterms_table_element\n            .html( topterms_content );\n\n          var max_width = 10 + Math.max.apply( Math, $( 'p', topterms_table_element ).map( get_width ).get() );\n          additional_styles.push\n          (\n            topterms_table_element.selector + ' p { width: ' + max_width + 'px !important; }' + \"\\n\" +\n            topterms_table_element.selector + ' ul { margin-left: ' + ( max_width + 5 ) + 'px !important; }'\n          );\n\n          topterms_count_element\n            .val( topterms_count );\n\n          $( 'p.head .max', topterms_holder_element )\n            .html( field_data.distinct );\n\n          $( 'p.head #query_link', topterms_holder_element )\n            .attr( 'href', '#/' + current_core + '/query?q=' + field.esc() + ':[* TO *]' );\n\n          $( 'ul li:even', topterms_table_element )\n            .addClass( 'odd' );\n        }\n\n        if( !field_data.histogram )\n        {\n          histogram_holder_element\n            .hide();\n        }\n        else\n        {\n          histogram_holder_element\n            .show();\n\n          var histogram_values = luke_array_to_hash( field_data.histogram );\n          var histogram_entries = [];\n          \n          var histogram_max = null;\n          for( var key in histogram_values )\n          {\n            histogram_max = Math.max( histogram_max, histogram_values[key] );\n          }\n\n          for( var key in histogram_values )\n          {\n            histogram_entries.push\n            (\n              '<li>' + \"\\n\" +\n              '  <dl class=\"clearfix\" style=\"width: ' +  ( ( histogram_values[key] / histogram_max ) * 100 ) + '%;\">' + \"\\n\" +\n              '    <dt><span>' + app.format_number( key ) + '</span></dt>' + \"\\n\" +\n              '    <dd><span>' + app.format_number( histogram_values[key] ) + '</span></dd>' + \"\\n\" +\n              '  </dl>' + \"\\n\" +\n              '</li>'\n            );\n          }\n\n          $( 'ul', histogram_holder_element )\n            .html( histogram_entries.join( \"\\n\" ) );\n\n          $( 'ul li:even', histogram_holder_element )\n            .addClass( 'odd' );\n\n          var max_width = 10 + Math.max.apply( Math, $( 'dt', histogram_holder_element ).map( get_width ).get() );\n          additional_styles.push\n          (\n            histogram_holder_element.selector + ' ul { margin-left: ' + max_width + 'px !important; }' + \"\\n\" +\n            histogram_holder_element.selector + ' li dt { left: ' + ( max_width * -1 ) + 'px !important; width: ' + max_width + 'px !important; }'\n          );\n        }\n\n        if( additional_styles )\n        {\n          terminfo_element\n            .prepend( '<style type=\"text/css\">' + additional_styles.join( \"\\n\" ) + '</style>' );\n        }\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n        terminfo_element\n          .addClass( 'disabled' );\n      },\n      complete : function( xhr, text_status )\n      {\n        $( 'span', trigger_element )\n          .removeClass( 'loader' );\n      }\n    }\n  );\n}\n\nsammy.bind\n(\n  'schema_browser_navi',\n  function( event, params )\n  {\n    var related_navigation_element = $( '#related dl#f-df-t', params.schema_browser_element );\n    var related_navigation_meta = $( '#related dl.ukf-dsf', params.schema_browser_element );\n    var related_select_element = $( '#related select', params.schema_browser_element )\n    var type = 'index';\n\n    var sammy_basepath = app.core_menu.find( '.active a' ).attr( 'href' );\n        \n    if( !related_navigation_meta.hasClass( 'done' ) )\n    {\n      if( app.schema_browser_data.unique_key_field )\n      {\n        $( '.unique-key-field', related_navigation_meta )\n          .show()\n          .after\n          (\n            '<dd class=\"unique-key-field\"><a href=\"' + sammy_basepath + '?field=' +\n            app.schema_browser_data.unique_key_field + '\">' +\n            app.schema_browser_data.unique_key_field + '</a></dd>'\n          );\n      }\n\n      if( app.schema_browser_data.default_search_field )\n      {\n        $( '.default-search-field', related_navigation_meta )\n          .show()\n          .after\n          (\n            '<dd class=\"default-search-field\"><a href=\"' + sammy_basepath + '?field=' +\n            app.schema_browser_data.default_search_field + '\">' +\n            app.schema_browser_data.default_search_field + '</a></dd>'\n          );\n      }\n\n      related_navigation_meta\n        .addClass( 'done' );\n    }\n\n    if( params.route_params )\n    {\n      var type = params.route_params.type;\n      var value = params.route_params.value;\n\n      var navigation_data = {\n        'fields' : [],\n        'copyfield_source' : [],\n        'copyfield_dest' : [],\n        'dynamic_fields' : [],\n        'types' : []\n      }\n\n      $( 'option[value=\"' + params.route_params.path + '\"]', related_select_element )\n        .attr( 'selected', 'selected' );\n\n      related_select_element\n        .trigger( 'liszt:updated' );\n\n      if( 'field' === type )\n      {\n        navigation_data.fields.push( value );\n\n        if( app.schema_browser_data.relations.f_t[value] )\n        {\n          navigation_data.types.push( app.schema_browser_data.relations.f_t[value] );\n        }\n\n        if( app.schema_browser_data.relations.f_df[value] )\n        {\n          navigation_data.dynamic_fields.push( app.schema_browser_data.relations.f_df[value] );\n        }\n\n        if( app.schema_browser_data.fields[value].copySources && 0 !== app.schema_browser_data.fields[value].copySources.length )\n        {\n          navigation_data.copyfield_source = app.schema_browser_data.fields[value].copySources;\n        }\n\n        if( app.schema_browser_data.fields[value].copyDests && 0 !== app.schema_browser_data.fields[value].copyDests.length )\n        {\n          navigation_data.copyfield_dest = app.schema_browser_data.fields[value].copyDests;\n        }\n      }\n      else if( 'dynamic-field' === type )\n      {\n        navigation_data.dynamic_fields.push( value );\n        navigation_data.types.push( app.schema_browser_data.relations.df_t[value] );\n\n        if( app.schema_browser_data.relations.df_f[value] )\n        {\n          navigation_data.fields = app.schema_browser_data.relations.df_f[value];\n        }\n      }\n      else if( 'type' === type )\n      {\n        navigation_data.types.push( value );\n                \n        if( app.schema_browser_data.relations.t_f[value] )\n        {\n          navigation_data.fields = app.schema_browser_data.relations.t_f[value];\n        }\n                \n        if( app.schema_browser_data.relations.t_df[value] )\n        {\n          navigation_data.dynamic_fields = app.schema_browser_data.relations.t_df[value];\n        }\n      }\n\n      var navigation_content = '';\n\n      if( 0 !== navigation_data.fields.length )\n      {\n        navigation_data.fields.sort();\n        navigation_content += '<dt class=\"field\">Field</dt>' + \"\\n\";\n        for( var i in navigation_data.fields )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.fields[i];\n          navigation_content += '<dd class=\"field\"><a href=\"' + href + '\">' + navigation_data.fields[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.copyfield_source.length )\n      {\n        navigation_data.copyfield_source.sort();\n        navigation_content += '<dt class=\"copyfield\">Copied from</dt>' + \"\\n\";\n        for( var i in navigation_data.copyfield_source )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.copyfield_source[i];\n          navigation_content += '<dd class=\"copyfield\"><a href=\"' + href + '\">' + navigation_data.copyfield_source[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.copyfield_dest.length )\n      {\n        navigation_data.copyfield_dest.sort();\n        navigation_content += '<dt class=\"copyfield\">Copied to</dt>' + \"\\n\";\n        for( var i in navigation_data.copyfield_dest )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.copyfield_dest[i];\n          navigation_content += '<dd class=\"copyfield\"><a href=\"' + href + '\">' + navigation_data.copyfield_dest[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.dynamic_fields.length )\n      {\n        navigation_data.dynamic_fields.sort();\n        navigation_content += '<dt class=\"dynamic-field\">Dynamic Field</dt>' + \"\\n\";\n        for( var i in navigation_data.dynamic_fields )\n        {\n          var href = sammy_basepath + '?dynamic-field=' + navigation_data.dynamic_fields[i];\n          navigation_content += '<dd class=\"dynamic-field\"><a href=\"' + href + '\">' + navigation_data.dynamic_fields[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.types.length )\n      {\n        navigation_data.types.sort();\n        navigation_content += '<dt class=\"type\">Type</dt>' + \"\\n\";\n        for( var i in navigation_data.types )\n        {\n          var href = sammy_basepath + '?type=' + navigation_data.types[i];\n          navigation_content += '<dd class=\"type\"><a href=\"' + href + '\">' + navigation_data.types[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      related_navigation_element\n        .show()\n        .attr( 'class', type )\n        .html( navigation_content );\n    }\n    else\n    {\n      related_navigation_element\n        .hide();\n            \n      $( 'option:selected', related_select_element )\n        .removeAttr( 'selected' );\n    }\n\n    if( 'field' === type && value === app.schema_browser_data.unique_key_field )\n    {\n      $( '.unique-key-field', related_navigation_meta )\n        .addClass( 'active' );\n    }\n    else\n    {\n      $( '.unique-key-field', related_navigation_meta )\n        .removeClass( 'active' );\n    }\n\n    if( 'field' === type && value === app.schema_browser_data.default_search_field )\n    {\n      $( '.default-search-field', related_navigation_meta )\n        .addClass( 'active' );\n    }\n    else\n    {\n      $( '.default-search-field', related_navigation_meta )\n        .removeClass( 'active' );\n    }\n\n    if( params.callback )\n    {\n      params.callback( app.schema_browser_data, $( '#data', params.schema_browser_element ) );\n    }\n  }\n);\n\nsammy.bind\n(\n  'schema_browser_load',\n  function( event, params )\n  {\n    var core_basepath = params.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    if( app.schema_browser_data )\n    {\n      params.schema_browser_element = $( '#schema-browser', content_element );\n\n      sammy.trigger\n      (\n        'schema_browser_navi',\n        params\n      );\n    }\n    else\n    {\n      content_element\n        .html( '<div id=\"schema-browser\"><div class=\"loader\">Loading ...</div></div>' );\n            \n      $.ajax\n      (\n        {\n          url : core_basepath + '/admin/luke?numTerms=0&wt=json',\n          dataType : 'json',\n          beforeSend : function( xhr, settings )\n          {\n          },\n          success : function( response, text_status, xhr )\n          {\n            app.schema_browser_data = {\n            default_search_field : null,\n            unique_key_field : null,\n            key : {},\n            fields : {},\n            dynamic_fields : {},\n            types : {},\n            relations : {\n              f_df : {},\n              f_t  : {},\n              df_f : {},\n              df_t : {},\n              t_f  : {},\n              t_df : {}\n            }\n            };\n\n            app.schema_browser_data.fields = response.fields;\n            app.schema_browser_data.key = response.info.key;\n\n            $.ajax\n            (\n            {\n              url : core_basepath + '/admin/luke?show=schema&wt=json',\n              dataType : 'json',\n              beforeSend : function( xhr, settings )\n              {\n              },\n              success : function( response, text_status, xhr )\n              {\n                app.schema_browser_data.default_search_field = response.schema.defaultSearchField;\n                app.schema_browser_data.unique_key_field = response.schema.uniqueKeyField;\n\n                app.schema_browser_data.dynamic_fields = response.schema.dynamicFields;\n                app.schema_browser_data.types = response.schema.types;\n\n                for( var field in response.schema.fields )\n                {\n                  app.schema_browser_data.fields[field] = $.extend\n                  (\n                    {},\n                    app.schema_browser_data.fields[field],\n                    response.schema.fields[field]\n                  );\n                }\n\n                for( var field in app.schema_browser_data.fields )\n                {\n                  var copy_dests = app.schema_browser_data.fields[field].copyDests;\n                  for( var i in copy_dests )\n                  {\n                    var copy_dest = copy_dests[i];\n                    if( !app.schema_browser_data.fields[copy_dest] )\n                    {\n                      app.schema_browser_data.fields[copy_dest] = {\n                        partial : true,\n                        copySources : []\n                      };\n                    }\n\n                    if( app.schema_browser_data.fields[copy_dest].partial )\n                    {\n                      app.schema_browser_data.fields[copy_dest].copySources.push( field );\n                    }\n                  }\n\n                  var copy_sources = app.schema_browser_data.fields[field].copySources;\n                  for( var i in copy_sources )\n                  {\n                    var copy_source = copy_sources[i];\n                    if( !app.schema_browser_data.fields[copy_source] )\n                    {\n                      app.schema_browser_data.fields[copy_source] = {\n                        partial : true,\n                        copyDests : []\n                      };\n                    }\n\n                    if( app.schema_browser_data.fields[copy_source].partial )\n                    {\n                      app.schema_browser_data.fields[copy_source].copyDests.push( field );\n                    }\n                  }\n\n                  app.schema_browser_data.relations.f_t[field] = app.schema_browser_data.fields[field].type;\n\n                  if( !app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type] )\n                  {\n                    app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type] = [];\n                  }\n                  app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type].push( field );\n\n                  if( app.schema_browser_data.fields[field].dynamicBase )\n                  {\n                    app.schema_browser_data.relations.f_df[field] = app.schema_browser_data.fields[field].dynamicBase;\n\n                    if( !app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase] )\n                    {\n                      app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase] = [];\n                    }\n                    app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase].push( field );\n                  }\n                }\n\n                for( var dynamic_field in app.schema_browser_data.dynamic_fields )\n                {\n                  app.schema_browser_data.relations.df_t[dynamic_field] = app.schema_browser_data.dynamic_fields[dynamic_field].type;\n\n                  if( !app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type] )\n                  {\n                    app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type] = [];\n                  }\n                  app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type].push( dynamic_field );\n                }\n\n                $.get\n                (\n                  'tpl/schema-browser.html',\n                  function( template )\n                  {\n                    content_element\n                      .html( template );\n                                            \n                    var schema_browser_element = $( '#schema-browser', content_element );\n                    var related_element = $( '#related', schema_browser_element );\n                    var related_select_element = $( 'select', related_element );\n                    var data_element = $( '#data', schema_browser_element );\n\n                    var related_options = '';\n                                            \n                    var fields = [];\n                    for( var field_name in app.schema_browser_data.fields )\n                    {\n                      fields.push\n                      (\n                        '<option value=\"?field=' + field_name + '\">' + field_name + '</option>'\n                      );\n                    }\n                    if( 0 !== fields.length )\n                    {\n                      fields.sort();\n                      related_options += '<optgroup label=\"Fields\">' + \"\\n\";\n                      related_options += fields.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n                                            \n                    var dynamic_fields = [];\n                    for( var type_name in app.schema_browser_data.dynamic_fields )\n                    {\n                      dynamic_fields.push\n                      (\n                        '<option value=\"?dynamic-field=' + type_name + '\">' + type_name + '</option>'\n                      );\n                    }\n                    if( 0 !== dynamic_fields.length )\n                    {\n                      dynamic_fields.sort();\n                      related_options += '<optgroup label=\"DynamicFields\">' + \"\\n\";\n                      related_options += dynamic_fields.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n                                            \n                    var types = [];\n                    for( var type_name in app.schema_browser_data.types )\n                    {\n                      types.push\n                      (\n                        '<option value=\"?type=' + type_name + '\">' + type_name + '</option>'\n                      );\n                    }\n                    if( 0 !== types.length )\n                    {\n                      types.sort();\n                      related_options += '<optgroup label=\"Types\">' + \"\\n\";\n                      related_options += types.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n\n                    related_select_element\n                      .attr( 'rel', app.core_menu.find( '.active a' ).attr( 'href' ) )\n                      .append( related_options )\n                      .chosen();\n                                            \n                    related_select_element\n                      .die( 'change' )\n                      .live\n                      (\n                        'change',\n                        function( event )\n                        {\n                          var select_element = $( this );\n                          var option_element = $( 'option:selected', select_element );\n\n                          location.href = select_element.attr( 'rel' ) + option_element.val();\n                          return false;\n                        }\n                      );\n\n                    params.schema_browser_element = schema_browser_element;\n                    sammy.trigger\n                    (\n                      'schema_browser_navi',\n                      params\n                    );\n                  }\n                );\n              },\n              error : function( xhr, text_status, error_thrown)\n              {\n              },\n              complete : function( xhr, text_status )\n              {\n              }\n            }\n            );\n\n          },\n          error : function( xhr, text_status, error_thrown)\n          {\n          },\n          complete : function( xhr, text_status )\n          {\n          }\n        }\n      );\n    }\n  }\n);\n\n// #/:core/schema-browser\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(schema-browser)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    current_core = context.params.splat[0];\n\n    var trigger_params = {\n      active_core : this.active_core\n    };\n\n    var path = context.path.split( '?' );\n    if( path && path[1] )\n    {\n      var param = path[1].split( '=' );\n      trigger_params.route_params =  {\n        path : '?' + path[1],\n        type : param[0],\n        value : param[1]\n      }\n\n      trigger_params.callback = function( schema_browser_data, data_element )\n      {\n        var field = trigger_params.route_params.value;\n\n        var type = trigger_params.route_params.type;\n        var is_f = 'field' === type;\n        var is_df = 'dynamic-field' === type;\n        var is_t = 'type' === type;\n                \n        var options_element = $( '.options', data_element );\n        var sammy_basepath = context.path.indexOf( '/', context.path.indexOf( '/', 2 ) + 1 );\n\n        data_element\n          .show();\n\n        // -- head\n\n        var head_element = $( '.head', data_element );\n        if( is_f )\n        {\n          $( '.type', head_element ).html( 'Field' );\n        }\n        else if( is_df )\n        {\n          $( '.type', head_element ).html( 'Dynamic Field' );\n        }\n        else if( is_t )\n        {\n          $( '.type', head_element ).html( 'Type' );\n        }\n        $( '.name', head_element ).html( field.esc() );\n\n\n        var partial_state = false;\n        if( is_f )\n        {\n          partial_state = !!schema_browser_data.fields[field].partial;\n        }\n\n        $( '.partial', data_element )\n          .toggle( partial_state );\n\n        // -- docs\n        var docs_element = $( 'dt.docs', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].docs )\n        {\n          $( 'dd.docs', options_element )\n            .remove();\n\n          var target = '#/' + current_core + '/query?q=' + field.esc() + ':[* TO *]';\n          docs_element\n            .show()\n            .after( \n             '<dd class=\"docs\">'+\n               '<a href=\"'+target+'\">' + schema_browser_data.fields[field].docs + '</a>' +\n             '</dd>' );\n        }\n        else\n        {\n          $( '.docs', options_element )\n            .hide();\n        }\n\n        // -- distinct \n        var distinct_element = $( 'dt.distinct', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].distinct )\n        {\n          $( 'dd.distinct', options_element )\n            .remove();\n\n          distinct_element\n            .show()\n            .after( '<dd class=\"distinct\">' + schema_browser_data.fields[field].distinct + '</dd>' );\n        }\n        else\n        {\n          $( '.distinct', options_element )\n            .hide();\n        }\n\n        // -- position-increment-gap \n        var pig_element = $( 'dt.position-increment-gap', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].positionIncrementGap )\n        {\n          $( 'dd.position-increment-gap', options_element )\n            .remove();\n\n          pig_element\n            .show()\n            .after( '<dd class=\"position-increment-gap\">' + schema_browser_data.fields[field].positionIncrementGap + '</dd>' );\n        }\n        else\n        {\n          $( '.position-increment-gap', options_element )\n            .hide();\n        }\n\n        var similarity_element = $( 'dt.similarity', options_element );\n        if ( is_t && schema_browser_data.types[field] && schema_browser_data.types[field].similarity ) {\n            var similarity = schema_browser_data.types[field].similarity\n            if (similarity.details && similarity.className) {\n                $( 'dd.similarity', options_element ).remove();\n                similarity_element\n                    .show()\n                    .after(['<dd class=\"similarity\">', similarity.details.esc(), ' (', similarity.className.esc(), ') </dd>'].join(\"\"));\n            }\n        } else {\n            $( '.similarity', options_element ).hide();\n        }\n\n\n        // -- flags table\n        var flags_table = $( 'table.flags', data_element );\n\n        var flags_arr = [];\n        for( var key in schema_browser_data.key )\n        {\n          flags_arr.push( '<th data-key=\"' + key + '\">' + schema_browser_data.key[key] + '</th>' );\n        }\n\n        $( 'thead tr', flags_table )\n          .append( flags_arr.join( \"\\n\" ) );\n\n\n        var flags_body = $( 'tbody', flags_table );\n        flags_body.empty();\n\n        var generate_flags_row = function generate_flags_row( flags_str, title )\n        {\n          var flags_arr = [ '<th>' + title.esc() + '</th>' ];\n\n          if( 0 === flags_str.indexOf( '(' ) )\n          {\n            flags_arr.push( '<td colspan=\"2\" class=\"text\">' + flags_str + '</td>' );\n          }\n          else\n          {\n            var i = 0;\n            for( var key in schema_browser_data.key )\n            {\n              var flag_match = key === flags_str[i];\n\n              var flag_cell = '<td '\n                            + ' data-key=\"' + key + '\"'\n                            + ' class=\"' + ( flag_match ? 'check' : '' ) + '\"'\n                            + '>'\n                            + ( flag_match ? '<span>√</span>' : '&nbsp;' )\n                            + '</td>';\n\n              flags_arr.push( flag_cell );\n              i++;\n            }\n          }\n\n          flags_body\n            .append( '<tr>' + flags_arr.join( \"\\n\" ) + '</tr>' );\n        };\n\n        var flags = null;\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].flags )\n        {\n          flags = schema_browser_data.fields[field].flags;\n        }\n        else if( is_df && schema_browser_data.dynamic_fields[field] && schema_browser_data.dynamic_fields[field].flags )\n        {\n          flags = schema_browser_data.dynamic_fields[field].flags;\n        }\n\n        if( flags )\n        {\n          generate_flags_row( flags, 'Properties' );\n        }\n\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].schema )\n        {\n          generate_flags_row( schema_browser_data.fields[field].schema, 'Schema' );\n        }\n\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].index )\n        {\n          generate_flags_row( schema_browser_data.fields[field].index, 'Index' );\n        }\n\n\n        if( 0 !== $( 'tr', flags_body ).size() )\n        {\n          var col_count = 0;\n          for( var key in schema_browser_data.key )\n          {\n            var cols = $( '[data-key=\"' + key + '\"]', flags_table );\n            \n            var col_used = 0 !== cols.filter( '.check' ).size();\n            col_count += col_used;\n\n            cols.toggle( col_used );\n          }\n\n          $( 'td[colspan]', flags_body )\n            .attr( 'colspan', col_count );\n\n          flags_table.show();\n        }\n        else\n        {\n          flags_table.hide();\n        }\n\n        var analyzer_element = $( '.analyzer', data_element );\n        var analyzer_data = null;\n\n        var analysis_link = false;\n        var analysis_link_elements = $( 'p a', analyzer_element );\n        var analysis_target = '#/' + current_core + '/analysis?';\n\n        if( is_f )\n        {\n          analyzer_data = schema_browser_data.types[schema_browser_data.relations.f_t[field]];\n\n          analysis_link = true;\n          analysis_target += 'analysis.fieldname=' + field;\n        }\n        else if( is_df )\n        {\n          analyzer_data = schema_browser_data.types[schema_browser_data.relations.df_t[field]];\n        }\n        else if( is_t )\n        {\n          analyzer_data = schema_browser_data.types[field];\n          \n          analysis_link = true;\n          analysis_target += 'analysis.fieldtype=' + field;\n        }\n\n        if( analysis_link )\n        {\n          analysis_link_elements\n            .addClass( 'analysis' )\n            .attr( 'href', analysis_target );\n        }\n        else\n        {\n          analysis_link_elements\n            .removeClass( 'analysis' )\n            .removeAttr( 'href' );\n        }\n\n\n        if( analyzer_data )\n        {\n          var transform_analyzer_data_into_list = function( analyzer_data )\n          {\n            var args = [];\n            for( var key in analyzer_data.args )\n            {\n              var arg_class = '';\n              var arg_content = '';\n\n              if( 'true' === analyzer_data.args[key] || '1' === analyzer_data.args[key] )\n              {\n                arg_class = 'ico-1';\n                arg_content = key;\n              }\n              else if( 'false' === analyzer_data.args[key] || '0' === analyzer_data.args[key] )\n              {\n                arg_class = 'ico-0';\n                arg_content = key;\n              }\n              else\n              {\n                arg_content = key + ': ';\n\n                if( 'synonyms' === key || 'words' === key )\n                {\n                  // @TODO: set link target for file\n                  arg_content += '<a>' + analyzer_data.args[key] + '</a>';\n                }\n                else\n                {\n                  arg_content += analyzer_data.args[key];\n                }\n              }\n\n              args.push( '<dd class=\"' + arg_class + '\">' + arg_content + '</dd>' );\n            }\n\n            var list_content = '<dt>' + analyzer_data.className + '</dt>';\n            if( 0 !== args.length )\n            {\n              args.sort();\n              list_content += args.join( \"\\n\" );\n            }\n\n            return list_content;\n          }\n\n          // -- field-type\n          var field_type_element = $( 'dt.field-type', options_element );\n\n          $( 'dd.field-type', options_element )\n            .remove();\n\n          field_type_element\n            .show()\n            .after( '<dd class=\"field-type\">' + analyzer_data.className + '</dd>' );\n\n          $( '.toggle', analyzer_element )\n            .die( 'click' )\n            .live\n            (\n              'click',\n              function( event )\n              {\n                $( this ).closest( 'li' )\n                  .toggleClass( 'open' );\n\n                return false;\n              }\n            );\n\n          for( var key in analyzer_data )\n          {\n            var key_match = key.match( /^(.+)Analyzer$/ );\n            if( !key_match )\n            {\n              continue;\n            }\n\n            var analyzer_key_element = $( '.' + key_match[1], analyzer_element );\n            var analyzer_key_data = analyzer_data[key];\n\n            analyzer_element.show();\n            analyzer_key_element.show();\n\n            $( 'ul li', analyzer_key_element )\n            .removeClass( 'data' )\n            .hide();\n\n            for( var type in analyzer_key_data )\n            {\n              if( 'object' !== typeof analyzer_key_data[type] )\n              {\n                continue;\n              }\n\n              var type_element = $( '.' + type, analyzer_key_element );\n              var type_content = [];\n\n              type_element\n                .addClass( 'data' )\n                .show();\n\n              if( analyzer_key_data[type].className )\n              {\n                type_content.push( transform_analyzer_data_into_list( analyzer_key_data[type] ) );\n              }\n              else\n              {\n                for( var entry in analyzer_key_data[type] )\n                {\n                  type_content.push( transform_analyzer_data_into_list( analyzer_key_data[type][entry] ) );\n                }\n              }\n\n              $( 'dl', type_element )\n                .empty()\n                .append( type_content.join( \"\\n\" ) );\n            }\n\n            var name_element = $( 'dl:first dt a', analyzer_key_element );\n            if( analyzer_key_data.className )\n            {\n              name_element\n                .html( analyzer_key_data.className );\n            }\n\n            0 === $( 'ul li.data', analyzer_key_element ).size()\n            ? name_element.removeClass( 'toggle' )\n            : name_element.addClass( 'toggle' );\n          }\n        }\n\n        var terminfo_element = $( '.terminfo-holder', data_element );\n\n        terminfo_element\n          .removeClass( 'disabled' )\n          .removeClass( 'loaded' );\n\n        var trigger_element = $( '.trigger button', terminfo_element );\n        var form_element = $( 'form', terminfo_element );\n\n        trigger_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              form_element\n                .trigger( 'submit' );\n\n              return false;\n            }\n          );\n\n        form_element\n          .clearForm()\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              load_terminfo( trigger_element, core_basepath, field, data_element, terminfo_element );\n\n              terminfo_element\n                .addClass( 'loaded' );\n\n              return false;\n            }\n          );\n\n        $( '.max-holder', terminfo_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var element = $( this );\n\n              $( 'input', element.closest( 'form' ) )\n                .val( $( '.max', element ).text() );\n\n              form_element\n                .trigger( 'submit' );\n\n              return false;\n            }\n          );\n\n        $( '.trigger .autoload', terminfo_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $.cookie( cookie_schema_browser_autoload, $.cookie( cookie_schema_browser_autoload ) ? null : true );\n              $( this ).trigger( 'state' );\n\n              return false;\n            }\n          )\n          .die( 'state' )\n          .live\n          (\n            'state',\n            function( event )\n            {\n              $.cookie( cookie_schema_browser_autoload )\n                ? $( this ).addClass( 'on' )\n                : $( this ).removeClass( 'on' );\n            }\n          )\n          .die( 'init' )\n          .live\n          (\n            'init',\n            function( event )\n            {\n              if( !$.cookie( cookie_schema_browser_autoload ) )\n              {\n                return false;\n              }\n\n              $( this ).trigger( 'state' );\n              trigger_element.trigger( 'click' );\n            }\n          )\n          .trigger( 'init' );\n\n        $( 'div[class$=\"-holder\"]', terminfo_element )\n          .hide();\n\n        if( !is_f )\n        {\n          terminfo_element\n            .hide();\n        }\n        else\n        {\n          terminfo_element\n            .show();\n        }\n      }\n    }\n    else\n    {\n      trigger_params.callback = function( schema_browser_data, data_element )\n      {\n        data_element\n          .hide();\n      };\n    }\n\n    delete app.schema_browser_data;\n\n    sammy.trigger\n    (\n      'schema_browser_load',\n      trigger_params\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/js/scripts/threads.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/~threads\nsammy.get\n(\n  /^#\\/(~threads)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/threads.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/threads?wt=json',\n            dataType : 'json',\n            context : $( '#threads', content_element ),\n            beforeSend : function( xhr, settings )\n            {\n            },\n            success : function( response, text_status, xhr )\n            {\n              var self = this;\n\n              var threadDumpData = response.system.threadDump;\n              var threadDumpContent = [];\n              var c = 0;\n              for( var i = 1; i < threadDumpData.length; i += 2 )\n              {\n                var state = threadDumpData[i].state.esc();\n                var name = '<a title=\"' + state +'\"><span>' + threadDumpData[i].name.esc() + ' (' + threadDumpData[i].id.esc() + ')</span></a>';\n\n                var classes = [state];\n                var details = '';\n\n                if( 0 !== c % 2 )\n                {\n                  classes.push( 'odd' );\n                }\n\n                if( threadDumpData[i].lock )\n                {\n                  classes.push( 'lock' );\n                  name += \"\\n\" + '<p title=\"Waiting on\">' + threadDumpData[i].lock.esc() + '</p>';\n                }\n\n                if( threadDumpData[i].stackTrace && 0 !== threadDumpData[i].stackTrace.length )\n                {\n                  classes.push( 'stacktrace' );\n\n                  var stack_trace = threadDumpData[i].stackTrace\n                            .join( '###' )\n                            .esc()\n                            .replace( /\\(/g, '&#8203;(' )\n                            .replace( /###/g, '</li><li>' );\n\n                  name += '<div>' + \"\\n\"\n                       + '<ul>' + \"\\n\"\n                       + '<li>' + stack_trace + '</li>'\n                       + '</ul>' + \"\\n\"\n                       + '</div>';\n                }\n\n                var item = '<tr class=\"' + classes.join( ' ' ) +'\">' + \"\\n\"\n                         + '<td class=\"name\">' + name + '</td>' + \"\\n\"\n                         + '<td class=\"time\">' + threadDumpData[i].cpuTime.esc() + '<br>' + threadDumpData[i].userTime.esc() + '</td>' + \"\\n\"\n                         + '</tr>';\n                                \n                threadDumpContent.push( item );\n                c++;\n              }\n\n              var threadDumpBody = $( '#thread-dump tbody', this );\n\n              threadDumpBody\n                .html( threadDumpContent.join( \"\\n\" ) );\n                            \n              $( '.name a', threadDumpBody )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    $( this ).closest( 'tr' )\n                      .toggleClass( 'open' );\n                  }\n                );\n                            \n              $( '.controls a', this )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    var threads_element = $( self );\n                    var is_collapsed = threads_element.hasClass( 'collapsed' );\n                    var thread_rows = $( 'tr', threads_element );\n\n                    thread_rows\n                      .each\n                      (\n                        function( index, element )\n                        {\n                          if( is_collapsed )\n                          {\n                            $( element )\n                              .addClass( 'open' );\n                          }\n                          else\n                          {\n                            $( element )\n                              .removeClass( 'open' );\n                          }\n                        }\n                      );\n\n                    threads_element\n                      .toggleClass( 'collapsed' )\n                      .toggleClass( 'expanded' );\n                  }\n                );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/analysis.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"analysis\">\n\n  <div class=\"block analysis-error\" id=\"analysis-handler-missing\">\n\n    <div class=\"head\">This Functionality requires the <code>/analysis/field</code> Handler to be registered and active!</div>\n\n  </div>\n\n  <div class=\"block analysis-error\" id=\"analysis-error\">\n\n    <div class=\"body\"></div>\n\n  </div>\n\n  <div id=\"analysis-holder\">\n\n    <div id=\"field-analysis\">\n              \n      <form method=\"get\">\n                \n        <ul class=\"clearfix\">\n                    \n          <li class=\"index\">\n                        \n            <label for=\"analysis_fieldvalue_index\">Field Value (Index)</label>\n            <textarea name=\"analysis.fieldvalue\" id=\"analysis_fieldvalue_index\"></textarea>\n                        \n          </li>\n                    \n          <li class=\"query\">\n                        \n            <label for=\"analysis_fieldvalue_query\">Field Value (Query)</label>\n            <textarea name=\"analysis.query\" id=\"analysis_fieldvalue_query\"></textarea>\n                        \n          </li>\n\n          <li class=\"settings-holder clearfix\">\n            <div class=\"settings clearfix\">\n\n              <label for=\"type_or_name\">Analyse Fieldname / FieldType:</label>\n              <select id=\"type_or_name\"></select>\n              <a id=\"tor_schema\" href=\"#\"><span>Schema Browser</span>&nbsp;</a>\n\n              <div class=\"buttons clearfix\">\n\n                <button type=\"submit\"><span>Analyse Values</span></button>\n\n                <div class=\"verbose_output active\">\n                  <a>Verbose Output</a>\n                </div>\n\n              </div>\n\n            </div>\n          </li>\n                    \n        </ul>\n                \n      </form>\n            \n    </div>\n        \n    <div id=\"analysis-result\" class=\"clearfix verbose_output\"></div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/cloud.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"cloud\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"tree-content\" class=\"content clearfix\">\n\n      <div id=\"tree\" class=\"tree\">#tree</div>\n      <div id=\"file-content\" class=\"clearfix\">\n\n        <div id=\"prop\">\n          <ul></ul>\n        </div>\n\n        <div id=\"data\"></div>\n\n        <a class=\"close\"><span>[x]</span></a>\n\n      </div>\n\n    </div>\n\n    <div id=\"graph-content\" class=\"content clearfix\">\n\n      <div id=\"canvas\"></div>\n\n      <div id=\"legend\">\n        <ul>\n          <li class=\"leader\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Leader</li>\n          <li class=\"active\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Active</li>\n          <li class=\"recovering\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Recovering</li>\n          <li class=\"down\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Down</li>\n          <li class=\"recovery_failed\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Recovery Failed</li>\n          <li class=\"gone\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Gone</li>\n        </ul>\n      </div>\n\n    </div>\n\n  </div>\n\n  <div id=\"debug\">\n    <ul class=\"clearfix\">\n      <li class=\"clipboard\"><a href=\"#\" data-copied=\"Copied to Clipboard!\">Copy to Clipboard (BUGGY!)</a></li>\n      <li class=\"close\"><a href=\"#\">Close</a></li>\n    </ul>\n    <pre class=\"debug\"></pre>\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/cores.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"cores\" class=\"clearfix\">\n\n  <div id=\"ui-block\">&nbsp;</div>\n\n  <div id=\"frame\">\n\n    <div id=\"actions\" class=\"actions clearfix\">\n      \n      <button id=\"add\" class=\"action\"><span>Add Core</span></button>\n      <button id=\"unload\" class=\"warn\"><span>Unload</span></button>\n      <button id=\"rename\" class=\"action\"><span>Rename</span></button>\n      <button id=\"swap\" class=\"action\"><span>Swap</span></button>\n      <button id=\"reload\"><span>Reload</span></button>\n      <button id=\"optimize\"><span>Optimize</span></button>\n\n      <div class=\"action add\" data-rel=\"add\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"CREATE\">\n\n          <p class=\"clearfix\"><label for=\"add_name\">name:</label>\n          <input type=\"text\" name=\"name\" id=\"add_name\" value=\"new_core\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_instanceDir\">instanceDir:</label>\n          <input type=\"text\" name=\"instanceDir\" id=\"add_instanceDir\" value=\"new_core\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_dataDir\">dataDir:</label>\n          <input type=\"text\" name=\"dataDir\" id=\"dataDir\" value=\"data\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_config\">config:</label>\n          <input type=\"text\" name=\"config\" id=\"add_config\" value=\"solrconfig.xml\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_schema\">schema:</label>\n          <input type=\"text\" name=\"schema\" id=\"add_schema\" value=\"schema.xml\"></p>\n\n          <div class=\"cloud\">\n\n            <p class=\"clearfix\"><label for=\"add_collection\">collection:</label>\n            <input type=\"text\" name=\"collection\" id=\"add_collection\"></p>\n\n            <p class=\"clearfix\"><label for=\"add_shard\">shard:</label>\n            <input type=\"text\" name=\"shard\" id=\"shard\"></p>\n\n          </div>\n\n          <p class=\"clearfix error\">\n\n            <span></span>\n\n          </p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Add Core</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n      <div class=\"action rename\" data-rel=\"rename\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"RENAME\">\n          <input type=\"hidden\" name=\"core\" data-core=\"current\">\n\n          <p class=\"clearfix\"><label for=\"rename_other\">New Name:</label>\n          <input type=\"text\" name=\"other\" data-core=\"current\" id=\"rename_other\"></p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Rename Core</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n      <div class=\"action swap\" data-rel=\"swap\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"SWAP\">\n\n          <p class=\"clearfix\"><label for=\"swap_core\">this:</label>\n          <input type=\"text\" id=\"swap_core\" name=\"core\" data-core=\"current\" readonly=\"readonly\"></p>\n\n          <p class=\"clearfix\"><label for=\"swap_other\">and:</label>\n          <select name=\"other\" id=\"swap_other\" name=\"other\" class=\"other\">\n          </select></p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Swap Cores</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n    </div>\n\n    <div id=\"data\">\n\n      <div class=\"block\" id=\"core-data\">\n\n          <h2><span>Core</span></h2>\n          \n          <div class=\"message-container\">\n              <div class=\"message\"></div>\n          </div>\n\n          <div class=\"content\">\n\n          <ul>\n\n            <li class=\"startTime\"><dl class=\"clearfix\">\n              <dt><span>startTime:</span></dt>\n                <dd class=\"timeago\"></dd>\n            </dl></li>\n\n            <li class=\"instanceDir\"><dl class=\"clearfix\">\n              <dt><span>instanceDir:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"dataDir\"><dl class=\"clearfix\">\n              <dt><span>dataDir:</span></dt>\n                <dd></dd>\n            </dl></li>\n        \n          </ul>\n        \n        </div>\n      </div>\n\n      <div class=\"block\" id=\"index-data\">\n\n          <h2><span>Index</span></h2>\n          \n          <div class=\"message-container\">\n              <div class=\"message\"></div>\n          </div>\n\n          <div class=\"content\">\n          \n          <ul>\n\n            <li class=\"lastModified\"><dl class=\"clearfix\">\n              <dt><span>lastModified:</span></dt>\n                <dd class=\"timeago\"></dd>\n            </dl></li>\n\n            <li class=\"version\"><dl class=\"clearfix\">\n              <dt><span>version:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"numDocs\"><dl class=\"clearfix\">\n              <dt><span>numDocs:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"maxDoc\"><dl class=\"clearfix\">\n              <dt><span>maxDoc:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"deletedDocs\"><dl class=\"clearfix\">\n              <dt><span>deletedDocs:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"optimized\"><dl class=\"clearfix\">\n              <dt><span>optimized:</span></dt>\n                <dd class=\"ico\"><span></span></dd>\n            </dl></li>\n\n            <li class=\"current\"><dl class=\"clearfix\">\n              <dt><span>current:</span></dt>\n                <dd class=\"ico\"><span></span></dd>\n            </dl></li>\n\n            <li class=\"directory\"><dl class=\"clearfix\">\n              <dt><span>directory:</span></dt>\n                <dd></dd>\n            </dl></li>\n          \n          </ul>\n        \n        </div>\n      </div>\n\n    </div>\n  \n  </div>\n\n  <div id=\"navigation\" class=\"clearfix\">\n  \n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/dashboard.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"dashboard\">\n\n  <div class=\"clearfix\">\n\n    <div class=\"block fieldlist\" id=\"statistics\">\n\n      <h2><span>Statistics</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n                \n        <dl>\n                    \n          <dt class=\"index_last-modified\">Last Modified:</dt>\n            <dd class=\"index_last-modified value timeago\"></dd>\n\n          <dt class=\"index_num-docs\">Num Docs:</dt>\n            <dd class=\"index_num-docs value\"></dd>\n\n          <dt class=\"index_max-doc\">Max Doc:</dt>\n            <dd class=\"index_max-doc value\"></dd>\n\n          <dt class=\"index_deleted-docs\">Deleted Docs:</dt>\n            <dd class=\"index_deleted-docs value\"></dd>\n\n          <dt class=\"index_version\">Version:</dt>\n            <dd class=\"index_version value\"></dd>\n\n          <dt class=\"index_segmentCount\">Segment Count:</dt>\n            <dd class=\"index_segmentCount value\"></dd>\n\n          <dt class=\"index_optimized\">Optimized:</dt>\n            <dd class=\"index_optimized value ico\"><span></span>\n            <a>optimize now</a></dd>\n\n          <dt class=\"index_current\">Current:</dt>\n            <dd class=\"index_current value ico\"><span></span></dd>\n                        \n        </dl>\n           \n      </div>\n    </div>\n\n    <div class=\"block\" id=\"admin-extra\">\n\n      <h2><span>Admin Extra</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n      </div>\n        \n    </div>\n\n  </div>\n  <div class=\"clearfix\">\n\n    <div class=\"block\" id=\"replication\">\n\n      <h2><span class=\"is-replicating\">Replication</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content clearfix\"id=\"details\">\n\n        <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n\n          <thead>\n\n            <tr>\n                            \n              <td><span>Index</span></td>\n              <th>Version</th>\n              <th><abbr title=\"Generation\">Gen</abbr></th>\n              <th>Size</th>\n                        \n            </tr>\n                    \n          </thead>\n          <tbody>\n\n            <tr class=\"masterSearch\">\n\n              <th>Master (Searching)</th>\n              <td class=\"version\"><div>x</div></td>\n              <td class=\"generation\"><div>y</div></td>\n              <td class=\"size\"><div>z</div></td>\n\n            </tr>\n\n            <tr class=\"master\">\n\n              <th>Master (Replicable)</th>\n              <td class=\"version\"><div>x</div></td>\n              <td class=\"generation\"><div>y</div></td>\n              <td class=\"size\"><div>z</div></td>\n\n            </tr>\n\n            <tr class=\"slave slaveOnly\">\n\n              <th>Slave (Searching)</th>\n              <td class=\"version\"><div>a</div></td>\n              <td class=\"generation\"><div>c</div></td>\n              <td class=\"size\"><div>c</div></td>\n\n            </tr>\n\n          </tbody>\n\n        </table>\n            \n      </div>\n    </div>\n\n    <div class=\"block\" id=\"dataimport\">\n\n      <h2><span>Dataimport</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\"></div>\n    </div>\n\n  </div>\n  \n    <div class=\"block fieldlist\" id=\"healthcheck\">\n\n      <h2><span>Healthcheck</span></h2>\n\n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n        <dl>\n                    \n          <dt class=\"status\">Status:</dt>\n          <dd class=\"status value ico\">\n            <button class=\"healthcheck-status\">Healthcheck Status</button>\n          </dd>\n        </dl>\n      </div>\n\n    </div>\n\n  </div>\n  \n\n</div>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/dataimport.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"dataimport\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"error\"></div>\n\n    <div id=\"current_state\">\n\n      <p class=\"last_update\">Last Update: <abbr>Unknown</abbr></p>\n      <div class=\"info\">\n\n        <strong></strong>\n        <div class=\"details\">\n          <div class=\"docs\"></div>\n          <div class=\"dates\"></div>\n        </div>\n\n        <button class=\"abort-import warn\"><span data-aborting=\"Aborting Import\">Abort Import</span></button>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"raw_output\">\n\n      <h2>\n        <a class=\"toggle\"><span>Raw Status-Output</span></a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <div id=\"raw_output_container\"></div>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"config\">\n\n      <h2 class=\"clearfix\">\n        <a class=\"toggle\"><span>Configuration</span></a>\n        <a class=\"r reload_config\" title=\"Reload Configuration\">Reload</a>\n        <a class=\"r debug_mode\">Debug-Mode</a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <div id=\"dataimport_config\">\n\n          <div class=\"formatted\">\n\n            <div class=\"loader\">Loading ...</div>\n          \n          </div>\n\n          <div class=\"editable\">\n\n            <textarea></textarea>\n          \n          </div>\n\n        </div>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"debug_response\">\n\n      <h2>\n        <a class=\"toggle\"><span>Raw Debug-Response</span></a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <em>No Request executed</em>\n\n      </div>\n    \n    </div>\n  \n  </div>\n\n  <div id=\"form\">\n\n    <div id=\"navigation\">\n\n      <ul></ul>\n\n    </div>\n\n    <form action=\"#\" method=\"get\">\n\n      <label for=\"command\">\n        <a rel=\"help\">Command</a>\n      </label>\n      <select name=\"command\" id=\"command\">\n        <option>full-import</option>\n        <option>delta-import</option>\n      </select>\n\n      <label for=\"verbose\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"verbose\" id=\"verbose\" value=\"true\">\n        <a rel=\"help\">Verbose</a>\n      </label>\n\n      <label for=\"clean\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"clean\" id=\"clean\" value=\"true\">\n        <a rel=\"help\">Clean</a>\n      </label>\n\n      <label for=\"commit\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"commit\" id=\"commit\" value=\"true\">\n        <a rel=\"help\">Commit</a>\n      </label>\n\n      <label for=\"optimize\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"optimize\" id=\"optimize\" value=\"true\">\n        <a rel=\"help\">Optimize</a>\n      </label>\n\n      <label for=\"debug\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"debug\" id=\"debug\" value=\"true\">\n        <a rel=\"help\">Debug</a>\n      </label>\n\n      <label for=\"entity\">\n        <a rel=\"help\">Entity</a>\n      </label>\n      <select id=\"entity\"></select>\n\n      <label for=\"start\">\n        <a rel=\"help\">Start</a>,\n        <a rel=\"help\">Rows</a>\n      </label>\n      <div class=\"clearfix\">\n        <input type=\"text\" id=\"start\" placeholder=\"0\">\n        <input type=\"text\" id=\"rows\" placeholder=\"10\">\n      </div>\n\n      <label for=\"custom_parameters\">\n        <a rel=\"help\">Custom Parameters</a>\n      </label>\n      <input type=\"text\" id=\"custom_parameters\" value=\"\" placeholder=\"key1=val1&amp;key2=val2\">\n\n      <button class=\"execute\" type=\"submit\"><span data-debugmode=\"Execute with this Configuration →\">Execute</span></button>\n      <button class=\"refresh-status\"><span>Refresh Status</span></button>\n    \n    </form>\n\n    <p id=\"auto-refresh-status\"><a>Auto-Refresh Status</a></p>\n  \n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/index.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"index\" class=\"clearfix\">\n\n  <div class=\"clearfix\">\n\n    <div class=\"index-left\">\n\n      <div class=\"block\" id=\"instance\">\n\n          <h2><span>Instance</span></h2>\n\n          <div class=\"content\">\n\n            <ul class=\"data\">\n\n              <li class=\"start_time\"><dl class=\"clearfix\">\n                <dt><span>Start</span></dt>\n                  <dd class=\"timeago\"></dd>\n              </dl></li>\n\n              <li class=\"host\"><dl class=\"clearfix\">\n                <dt><span>Host</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_cwd\"><dl class=\"clearfix\">\n                <dt><span>CWD</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_instance\"><dl class=\"clearfix\">\n                <dt><span>Instance</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_data\"><dl class=\"clearfix\">\n                <dt><span>Data</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_index\"><dl class=\"clearfix\">\n                <dt><span>Index</span></dt>\n                <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n      <div class=\"block\" id=\"versions\">\n\n          <h2><span>Versions</span></h2>\n\n          <div class=\"content\">\n\n            <ul class=\"data\">\n\n              <li class=\"solr solr_spec_version\"><dl class=\"clearfix\">\n                <dt><span>solr-spec</span></dt>\n                  <dd></dd>\n              </dl></li>\n              \n              <li class=\"solr_impl_version\"><dl class=\"clearfix\">\n                <dt class=\"\"><span>solr-impl</span></dt>\n                  <dd></dd>\n              </dl></li>\n              \n              <li class=\"lucene lucene_spec_version\"><dl class=\"clearfix\">\n                <dt><span>lucene-spec</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"lucene_impl_version\"><dl class=\"clearfix\">            \n                <dt><span>lucene-impl</span></dt>\n                  <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n    </div>\n      \n    <div class=\"index-right\">\n\n      <div class=\"block\" id=\"system\">\n\n          <h2><span>System</span></h2>\n          <a class=\"reload\"><span>reload</span></a>\n\n          <div class=\"content\">\n\n            <div id=\"physical-memory-bar\">\n\n              <p data-desc=\"physical-memory-bar\">Physical Memory</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n            <div id=\"swap-space-bar\">\n\n              <p data-desc=\"swap-space-bar\">Swap Space</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n          <div id=\"file-descriptor-bar\">\n\n              <p data-desc=\"file-descriptor-bar\">File Descriptor Count</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n            <p class=\"no-info\">Sorry, no information available</p>\n\n          </div>\n\n      </div>\n\n    </div>\n\n  </div>\n\n  <div class=\"clearfix\">\n\n    <div class=\"index-left\">\n\n      <div class=\"block\" id=\"jvm\">\n\n          <h2><span>JVM</span></h2>\n\n          <div class=\"content clearfix\">\n\n            <ul class=\"data\">\n\n              <li class=\"jvm_version\"><dl class=\"clearfix\">            \n                <dt><span>Runtime</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"processors\"><dl class=\"clearfix\">            \n                <dt><span>Processors</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"command_line_args\"><dl class=\"clearfix\">\n                <dt><span>Args</span></dt>\n                <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n    </div>\n    <div class=\"index-right\">\n\n      <div class=\"block\" id=\"jvm-memory\">\n\n          <h2><span data-desc=\"jvm-memory-bar\">JVM-Memory</span></h2>\n\n          <div class=\"content\">\n\n            <div id=\"jvm-memory-bar\">\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                    <div class=\"bar-used bar\">\n                      <span class=\"bar-used val\"></span>\n\n                    </div>\n\n                  </div>\n\n                </div>\n\n              </div>\n            </div>\n\n          </div>\n\n      </div>\n\n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/logging.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"logging\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n  </div>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/plugins.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"plugins\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n  </div>\n\n  <div id=\"navigation\" class=\"clearfix\">\n\n    <ul>\n    </ul>\n  \n  </div>\n\n  <div id=\"recording\">\n    <div class=\"wrapper clearfix\">\n\n      <p class=\"loader\">Watching for Changes</p>\n      <button class=\"primary\">Stop &amp; Show Changes</button>\n\n    </div>\n  </div> \n\n</div>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/query.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"query\" class=\"clearfix\">\n\n  <div id=\"form\">\n\n    <form action=\"#\" method=\"get\">\n\n      <label for=\"qt\">\n        <a rel=\"help\">Request-Handler (qt)</a>\n      </label>\n      <input type=\"text\" id=\"qt\" value=\"/select\" title=\"Request handler in solrconfig.xml.\">\n\n      <fieldset class=\"common\">\n        <legend>common</legend>\n        <div class=\"fieldset\">\n\n        <label for=\"q\">\n          q\n        </label>\n        <textarea name=\"q\" id=\"q\" title=\"The query string.\">*:*</textarea>\n\n        <label for=\"fq\">\n          <a rel=\"help\">fq</a>\n        </label>\n        <input type=\"text\" id=\"fq\" name=\"fq\" class=\"multiple\" title=\"Filter query.\">\n\n        <label for=\"sort\">\n          <a rel=\"help\">sort</a>\n        </label>\n        <input type=\"text\" id=\"sort\" name=\"sort\" class=\"multiple\" title=\"Sort field or function with asc|desc.\">\n\n        <label for=\"start\">\n          <a rel=\"help\">start</a>,\n          <a rel=\"help\">rows</a>\n        </label>\n        <div class=\"clearfix\">\n          <input type=\"text\" name=\"start\" id=\"start\" placeholder=\"0\" pattern=\"[0-9]+\" title=\"Number of leading documents to skip. (Integer)\">\n          <input type=\"text\" name=\"rows\" id=\"rows\" placeholder=\"10\" pattern=\"[0-9]+\" title=\"Number of documents to return after 'start'. (Integer)\">\n        </div>\n\n        <label for=\"fl\">\n          <a rel=\"help\">fl</a>\n        </label>\n        <input type=\"text\" name=\"fl\" id=\"fl\" value=\"\" title=\"Field list, comma separated.\">\n\n        <label for=\"df\">\n          <a rel=\"help\">df</a>\n        </label>\n        <input type=\"text\" name=\"df\" id=\"df\" value=\"\" title=\"Default search field\">\n\n        <label for=\"custom_parameters\">\n          <a rel=\"help\">Raw Query Parameters</a>\n        </label>\n        <input type=\"text\" id=\"custom_parameters\" value=\"\" placeholder=\"key1=val1&amp;key2=val2\">\n\n        <label for=\"wt\">\n          <a rel=\"help\">wt</a>\n        </label>\n        <select name=\"wt\" id=\"wt\" title=\"The writer type (response format).\">\n          <option>xml</option>\n          <option>json</option>\n          <option>python</option>\n          <option>ruby</option>\n          <option>php</option>\n          <option>csv</option>\n        </select>\n\n        <label for=\"indent\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"indent\" id=\"indent\" value=\"true\" title=\"Indent results.\" checked=\"checked\">\n          <a rel=\"help\">indent</a>\n        </label>\n\n        <label for=\"debugQuery\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"debugQuery\" id=\"debugQuery\" value=\"true\" title=\"Show timing and diagnostics.\">\n          <a rel=\"help\">debugQuery</a>\n        </label>\n\n        </div>\n      </fieldset>\n\n      <fieldset class=\"dismax optional\">\n        <legend>\n          <label for=\"dismax\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"defType\" id=\"dismax\" value=\"dismax\">\n            dismax\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"q_alt\">q.alt</label>\n        <input type=\"text\" name=\"q.alt\" id=\"q_alt\" title=\"Alternate query when 'q' is absent.\">\n\n        <label for=\"qf\">qf</label>\n        <input type=\"text\" name=\"qf\" id=\"qf\" title=\"Query fields with optional boosts.\">\n\n        <label for=\"mm\">mm</label>\n        <input type=\"text\" name=\"mm\" id=\"mm\" title=\"Min-should-match expression.\">\n\n        <label for=\"pf\">pf</label>\n        <input type=\"text\" name=\"pf\" id=\"pf\" title=\"Phrase boosted fields.\">\n\n        <label for=\"ps\">ps</label>\n        <input type=\"text\" name=\"ps\" id=\"ps\" title=\"Phrase boost slop.\">\n\n        <label for=\"qs\">qs</label>\n        <input type=\"text\" name=\"qs\" id=\"qs\" title=\"Query string phrase slop.\">\n\n        <label for=\"tie\">tie</label>\n        <input type=\"text\" name=\"tie\" id=\"tie\" title=\"Score tie-breaker. Try 0.1.\">\n\n        <label for=\"bq\">bq</label>\n        <input type=\"text\" name=\"bq\" id=\"bq\" title=\"Boost query.\">\n\n        <label for=\"bf\">bf</label>\n        <input type=\"text\" name=\"bf\" id=\"bf\" title=\"Boost function (added).\">\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"edismax optional\">\n        <legend>\n          <label for=\"edismax\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"defType\" id=\"edismax\" value=\"edismax\">\n            <strong>e</strong>dismax\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"edismax_q_alt\">q.alt</label>\n        <input type=\"text\" name=\"q.alt\" id=\"edismax_q_alt\"  title=\"Alternate query when 'q' is absent.\">\n\n        <label for=\"edismax_qf\">qf</label>\n        <input type=\"text\" name=\"qf\" id=\"edismax_qf\" title=\"Query fields with optional boosts.\">\n\n        <label for=\"edismax_mm\">mm</label>\n        <input type=\"text\" name=\"mm\" id=\"edismax_mm\" title=\"Min-should-match expression.\">\n\n        <label for=\"edismax_pf\">pf</label>\n        <input type=\"text\" name=\"pf\" id=\"edismax_pf\" title=\"Phrase boosted fields.\">\n\n        <label for=\"edismax_ps\">ps</label>\n        <input type=\"text\" name=\"ps\" id=\"edismax_ps\" title=\"Phrase boost slop.\">\n\n        <label for=\"edismax_qs\">qs</label>\n        <input type=\"text\" name=\"qs\" id=\"edismax_qs\" title=\"Query string phrase slop.\">\n\n        <label for=\"edismax_tie\">tie</label>\n        <input type=\"text\" name=\"tie\" id=\"edismax_tie\" title=\"Score tie-breaker. Try 0.1.\">\n\n        <label for=\"edismax_bq\">bq</label>\n        <input type=\"text\" name=\"bq\" id=\"edismax_bq\" title=\"Boost query.\">\n\n        <label for=\"edismax_bf\">bf</label>\n        <input type=\"text\" name=\"bf\" id=\"edismax_bf\" title=\"Boost function (added).\">\n\n        <label for=\"edismax_uf\" title=\"User Fields\">uf</label>\n        <input type=\"text\" name=\"uf\" id=\"edismax_uf\">\n\n        <label for=\"edismax_pf2\" title=\"bigram phrase boost fields\">pf2</label>\n        <input type=\"text\" name=\"pf2\" id=\"edismax_pf2\">\n\n        <label for=\"edismax_pf3\" title=\"trigram phrase boost fields\">pf3</label>\n        <input type=\"text\" name=\"pf3\" id=\"edismax_pf3\">\n\n        <label for=\"edismax_ps2\" title=\"phrase slop for bigram phrases\">ps2</label>\n        <input type=\"text\" name=\"ps2\" id=\"edismax_ps2\">\n\n        <label for=\"edismax_ps3\" title=\"phrase slop for trigram phrases\">ps3</label>\n        <input type=\"text\" name=\"ps3\" id=\"edismax_ps3\">\n\n        <label for=\"edismax_boost\" title=\"multiplicative boost function\">boost</label>\n        <input type=\"text\" name=\"boost\" id=\"edismax_boost\">\n\n        <label for=\"edismax_stopwords\" class=\"checkbox\" title=\"remove stopwords from mandatory 'matching' component\">\n          <input type=\"checkbox\" name=\"stopwords\" id=\"edismax_stopwords\" value=\"true\" checked=\"checked\">\n          stopwords\n        </label>\n\n        <label for=\"edismax_lowercaseOperators\" class=\"checkbox\" title=\"Enable lower-case 'and' and 'or' as operators\">\n          <input type=\"checkbox\" name=\"lowercaseOperators\" id=\"edismax_lowercaseOperators\" value=\"true\" checked=\"checked\">\n          lowercaseOperators\n        </label>\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"hl optional\">\n        <legend>\n          <label for=\"hl\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"hl\" id=\"hl\" value=\"true\" title=\"Enable highlighting.\">\n            hl\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"hl_fl\">hl.fl</label>\n        <input type=\"text\" name=\"hl.fl\" id=\"hl_fl\" value=\"\" title=\"Fields to highlight on.\">\n\n        <label for=\"hl_simple_pre\">hl.simple.pre</label>\n        <input type=\"text\" name=\"hl.simple.pre\" id=\"hl_simple_pre\" value=\"<em>\">\n\n        <label for=\"hl_simple_post\">hl.simple.post</label>\n        <input type=\"text\" name=\"hl.simple.post\" id=\"hl_simple_post\" value=\"</em>\">\n\n        <label for=\"hl_requireFieldMatch\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.requireFieldMatch\" id=\"hl_requireFieldMatch\" value=\"true\">\n          hl.requireFieldMatch\n        </label>\n\n        <label for=\"hl_usePhraseHighlighter\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.usePhraseHighlighter\" id=\"hl_usePhraseHighlighter\" value=\"true\">\n          hl.usePhraseHighlighter\n        </label>\n\n        <label for=\"hl_highlightMultiTerm\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.highlightMultiTerm\" id=\"hl_highlightMultiTerm\" value=\"true\">\n          hl.highlightMultiTerm\n        </label>\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"facet optional\">\n        <legend>\n          <label for=\"facet\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"facet\" id=\"facet\" value=\"true\">\n            facet\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"facet_query\">facet.query</label>\n        <textarea name=\"facet.query\" id=\"facet_query\"></textarea>\n\n        <label for=\"facet_field\">facet.field</label>\n        <input type=\"text\" name=\"facet.field\" id=\"facet_field\">\n\n        <label for=\"facet_prefix\">facet.prefix</label>\n        <input type=\"text\" name=\"facet.prefix\" id=\"facet_prefix\">\n\n        </div>\n      </fieldset>\n\n      <fieldset class=\"spatial optional\">\n        <legend>\n          <label for=\"spatial\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"spatial\" id=\"spatial\" value=\"true\">\n            spatial\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"pt\">pt</label>\n        <input type=\"text\" name=\"pt\" id=\"pt\">\n\n        <label for=\"sfield\">sfield</label>\n        <input type=\"text\" name=\"sfield\" id=\"sfield\">\n\n        <label for=\"d\">d</label>\n        <input type=\"text\" name=\"d\" id=\"d\">\n        \n        </div>\n      </fieldset>\n\n      <fieldset class=\"spellcheck optional\">\n        <legend>\n          <label for=\"spellcheck\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"spellcheck\" id=\"spellcheck\" value=\"true\">\n            spellcheck\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"spellcheck_build\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.build\" id=\"spellcheck_build\" value=\"true\">\n          spellcheck.build\n        </label>\n\n        <label for=\"spellcheck_reload\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.reload\" id=\"spellcheck_reload\" value=\"true\">\n          spellcheck.reload\n        </label>\n\n        <label for=\"spellcheck_q\">spellcheck.q</label>\n        <input type=\"text\" name=\"spellcheck.q\" id=\"spellcheck_q\">\n\n        <label for=\"spellcheck_dictionary\">spellcheck.dictionary</label>\n        <input type=\"text\" name=\"spellcheck.dictionary\" id=\"spellcheck_dictionary\">\n\n        <label for=\"spellcheck_count\">spellcheck.count</label>\n        <input type=\"text\" name=\"spellcheck.count\" id=\"spellcheck_count\">\n\n        <label for=\"spellcheck_onlyMorePopular\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.onlyMorePopular\" id=\"spellcheck_onlyMorePopular\" value=\"true\">\n          spellcheck.onlyMorePopular\n        </label>\n\n        <label for=\"spellcheck_extendedResults\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.extendedResults\" id=\"spellcheck_extendedResults\" value=\"true\">\n          spellcheck.extendedResults\n        </label>\n\n        <label for=\"spellcheck_collate\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.collate\" id=\"spellcheck_collate\" value=\"true\">\n          spellcheck.collate\n        </label>\n\n        <label for=\"spellcheck_maxCollations\">spellcheck.maxCollations</label>\n        <input type=\"text\" name=\"spellcheck.maxCollations\" id=\"spellcheck_maxCollations\">\n\n        <label for=\"spellcheck_maxCollationTries\">spellcheck.maxCollationTries</label>\n        <input type=\"text\" name=\"spellcheck.maxCollationTries\" id=\"spellcheck_maxCollationTries\">\n\n        <label for=\"spellcheck_accuracy\">spellcheck.accuracy</label>\n        <input type=\"text\" name=\"spellcheck.accuracy\" id=\"spellcheck_accuracy\">\n      \n      </fieldset>\n\n\n      <button type=\"submit\">Execute Query</button>\n\n    </form>\n\n  </div>\n\n  <div id=\"result\">\n\n    <a id=\"url\" href=\"#\"></a>\n\n    <div id=\"response\">\n\n      <iframe src=\"about:blank\"></iframe>\n    \n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/replication.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"replication\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"error\"></div>\n\n    <div class=\"replicating block\">\n\n      <div id=\"progress\">\n\n        <div id=\"start\"><div class=\"info\">\n\n          <span>Wed May 11 19:41:48 UTC 2011</span>\n                \n        </div></div>\n\n        <div id=\"speed\"><div class=\"info\">\n\n          <span>5.1 MB</span>/s\n                \n        </div></div>\n\n        <div id=\"bar\">\n\n          <div id=\"bar-info\"><div class=\"info\">\n\n            <div class=\"files\"><span>24</span> Files</div>\n            <div class=\"size\"><span>226.85 MB</span></div>\n\n          </div></div>\n\n          <div id=\"eta\"><div class=\"info\">\n\n            ETA: <span>25s</span>\n                    \n          </div></div>\n\n          <div id=\"done\" style=\"width: 20.0%;\">\n\n            <div class=\"percent\">\n\n              <span>20</span>%\n\n            </div>\n\n            <div id=\"done-info\"><div class=\"info\">\n\n              <div class=\"files\"><span>2</span> Files</div>\n              <div class=\"size\"><span>91.76 MB</span></div>\n\n            </div></div>\n\n          </div>\n\n        </div>\n\n      </div>\n\n      <div id=\"current-file\" class=\"clearfix\">\n\n        <div class=\"label\"><span class=\"loader\">Current File:</span></div>\n        <div class=\"file\">_a.fdt</div>\n        <div class=\"progress\">\n          <span class=\"done\">84 MB</span> / <span class=\"total\">102.98 MB</span> [<span class=\"percent\">81</span>%]\n        </div>\n\n      </div>\n        \n    </div>\n\n    <div id=\"iterations\" class=\"slaveOnly block clearfix\">\n\n      <div class=\"label\"><span class=\"\">Iterations:</span></div>\n      <div class=\"iterations\">\n        <ul>\n        </ul>\n        <a>\n          <span class=\"expand\">Show all Iterations</span>\n          <span class=\"collapse\">Hide past Iterations</span>\n        </a>\n      </div>\n        \n    </div>\n\n    <div id=\"details\" class=\"block clearfix\">\n\n      <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n\n        <thead>\n\n          <tr>\n                        \n            <td><span>Index</span></td>\n            <th>Version</th>\n            <th><abbr title=\"Generation\">Gen</abbr></th>\n            <th>Size</th>\n                    \n          </tr>\n                \n        </thead>\n        <tbody>\n\n          <tr class=\"masterSearch\">\n\n            <th>Master (Searching)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n          <tr class=\"master\">\n\n            <th>Master (Replicable)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n          <tr class=\"slave slaveOnly\">\n\n            <th>Slave (Searching)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n        </tbody>\n\n      </table>\n\n    </div>\n\n    <div id=\"settings\" class=\"settings block clearfix slaveOnly\">\n\n      <div class=\"label\"><span>Settings:</span></div>\n      <ul>\n        <li class=\"masterUrl\"><dl class=\"clearfix\">\n          <dt>master url:</dt>\n            <dd></dd>\n        </dl></li>\n        <li class=\"isPollingDisabled\"><dl class=\"clearfix\">\n          <dt>polling enable:</dt>\n            <dd class=\"ico\">&nbsp;</dd>\n        </dl></li>\n      </ul>\n        \n    </div>\n\n    <div id=\"master-settings\" class=\"settings block clearfix\">\n\n      <div class=\"label\"><span>Settings (Master):</span></div>\n      <ul>\n        <li class=\"replicationEnabled\"><dl class=\"clearfix\">\n          <dt>replication enable:</dt>\n            <dd class=\"ico\">&nbsp;</dd>\n        </dl></li>\n        <li class=\"replicateAfter\"><dl class=\"clearfix\">\n          <dt>replicateAfter:</dt>\n            <dd></dd>\n        </dl></li>\n        <li class=\"confFiles\"><dl class=\"clearfix\">\n          <dt>confFiles:</dt>\n            <dd></dd>\n        </dl></li>\n      </ul>\n        \n    </div>\n    \n  </div>\n\n  <div id=\"navigation\">\n\n    <div class=\"timer\">\n\n      <p>Next Run: <span class=\"approx\">~</span><span class=\"tick\">15m 8s</span></p>\n      <small>Sat Mar 03 11:00:00 CET 2012</smalL>\n\n    </div>\n\n    <button class=\"refresh-status\"><span>Refresh Status</span></button>\n\n    <div class=\"slaveOnly\">        \n      <button class=\"optional replicate-now primary\" data-command=\"fetchindex\"><span>Replicate now</span></button>\n      <button class=\"optional abort-replication warn\" data-command=\"abortfetch\"><span>Abort Replication</span></button>\n\n      <button class=\"optional disable-polling\" data-command=\"disablepoll\"><span>Disable Polling</span></button>\n      <button class=\"optional enable-polling\" data-command=\"enablepoll\"><span>Enable Polling</span></button>\n    </div>\n\n    <div class=\"masterOnly\">\n      <button class=\"optional disable-replication warn\" data-command=\"disablereplication\"><span>Disable Replication<span></button>\n      <button class=\"optional enable-replication warn\" data-command=\"enablereplication\"><span>Enable Replication<span></button>\n    </div>\n    \n  </div>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/schema-browser.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"schema-browser\" class=\"loaded\">\n\n  <div class=\"clearfix\">\n\n    <div id=\"data\">\n\n      <div id=\"field\">\n\n        <div class=\"field-options\">\n\n          <div class=\"block head\">\n            <h2>\n              <span class=\"type\"></span>:\n              <span class=\"name\"></span>\n            </h2>\n          </div>\n\n          <div class=\"partial\">\n\n            <p>Because your Index is empty, we have not enough Information about this Field</p>\n\n          </div>\n\n          <dl class=\"options clearfix\">\n\n            <dt class=\"field-type\">Field-Type:</dt>\n\n            <dt class=\"similarity\">Similarity:</dt>\n\n            <dt class=\"position-increment-gap\"><abbr title=\"Position Increment Gap\">PI Gap</abbr>:</dt>\n\n            <dt class=\"docs\">Docs:</dt>\n\n            <dt class=\"distinct\">Distinct:</dt>\n                        \n          </dl>\n\n          <table class=\"flags\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n\n            <thead>\n\n              <tr>\n\n                <td>Flags:</td>\n\n              </tr>\n\n            </thead>\n\n            <tbody>\n\n            </tbody>\n\n          </table>\n\n          <ul class=\"analyzer\">\n            <li class=\"clearfix index\">\n\n              <p><a><span>Index&nbsp;Analyzer:</span></a></p>\n              <dl>\n                <dt><a class=\"toggle\"></a></dt>\n              </dl>\n\n              <ul>\n                <li class=\"clearfix charFilters\">\n                  <p>Char Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix tokenizer\">\n                  <p>Tokenizer:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix filters\">\n                  <p>Token Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n              </ul>\n                            \n            </li>\n            <li class=\"clearfix query\">\n\n              <p><a><span>Query&nbsp;Analyzer:</span></a></p>\n              <dl>\n                <dt><a class=\"toggle\"></a></dt>\n              </dl>\n\n              <ul>\n                <li class=\"clearfix charFilters\">\n                  <p>Char Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix tokenizer\">\n                  <p>Tokenizer:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix filters\">\n                  <p>Token Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n              </ul>\n                            \n            </li>\n          </ul>\n\n        </div>\n\n        <div class=\"terminfo-holder clearfix\">\n\n          <div class=\"trigger\">\n\n            <button class=\"submit\"><span>Load Term Info</span></button>\n\n            <a class=\"autoload\" title=\"Automatically load Term Info?\"><span>Autoload</span></a>\n\n          </div>\n\n          <p class=\"status\">Sorry, no Term Info available :(</p>\n\n          <div class=\"topterms-holder\">\n\n            <form>\n            <p class=\"head\">\n              <input type=\"text\">\n              <a class=\"max-holder\" title=\"Load all Top-Terms\">/<span class=\"max\"></span></a> Top-Terms:\n              <a id=\"query_link\" href=\"#\"><span>Query</span>&nbsp;</a>\n            </p>\n            </form>\n\n            <ul>\n\n            </ul>\n\n          </div>\n\n          <div class=\"histogram-holder\">\n\n            <p class=\"head\">Histogram:</p>\n\n            <ul></ul>\n\n          </div>\n\n        </div>\n\n      </div>\n\n    </div>\n\n    <div id=\"related\">\n\n      <select>\n        <option value=\"\" selected=\"selected\">Please select ...</option>\n      </select>\n\n      <dl id=\"f-df-t\">\n      </dl>\n\n      <dl class=\"ukf-dsf\">\n\n        <dt class=\"unique-key-field\">Unique Key Field</dt>\n\n        <dt class=\"default-search-field\">Default Search Field</dt>\n            \n      </dl>   \n\n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/relsyn/solr-webapp/webapp/tpl/threads.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"threads\" class=\"collapsed\">\n\n  <div class=\"controls\">\n    <a>\n      <span class=\"expand\">Show all Stacktraces</span>\n      <span class=\"collapse\">Hide all Stacktraces</span>\n    </a>\n  </div>\n\n  <div id=\"thread-dump\">\n\n    <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n\n      <thead>\n\n        <tr>\n\n          <th class=\"name\">name</th>\n          <th class=\"time\">cpuTime / userTime</th>\n                \n        </tr>\n\n      </thead>\n\n      <tbody>\n\n      </tbody>\n\n    </table>\n    \n  </div>\n\n  <div class=\"controls\">\n    <a>\n      <span class=\"expand\">Show all Stacktraces</span>\n      <span class=\"collapse\">Hide all Stacktraces</span>\n    </a>\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/src/main/scripts/create-indexes-small.sh",
    "content": "#!/usr/bin/env bash                                                             \n# Bash3 Boilerplate. Copyright (c) 2014, kvz.io                                 \n                                                                                \n__dir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\ndata_dir=\"${__dir}/../../../../oqa-data/knowitall.cs.washington.edu/oqa/data\"\nrelsyn_data=\"${data_dir}/query-rewrites.txt.gz\"\nparaphrase_data=\"${data_dir}/paraphrase-templates.txt.gz\"\nkb_data_dir=\"${data_dir}/kb\"\n\nindex_script=\"${__dir}/index.py\"\nindex_relsyn_script=\"${__dir}/index-relsyn.py\"\n\necho \"Indexing paraphrase data...\"\ngunzip -c \"$paraphrase_data\" | head -100000 | python $index_script localhost 8985 paraphrase\n\necho \"Indexing relsyn data...\"\ngunzip -c \"$relsyn_data\" | head -100000 | python $index_relsyn_script localhost 8984 \n\necho \"Indexing triplestore data...\"\nfor file in `ls \"$kb_data_dir\" | grep part- | head -1 `; do\n  gunzip -c \"${kb_data_dir}/${file}\" | head -100000 | python $index_script localhost 8983 triplestore\ndone\n"
  },
  {
    "path": "oqa-solr/src/main/scripts/create-indexes.sh",
    "content": "#!/usr/bin/env bash                                                             \n# Bash3 Boilerplate. Copyright (c) 2014, kvz.io                                 \n                                                                                \n__dir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\ndata_dir=\"${__dir}/../../../../oqa-data/knowitall.cs.washington.edu/oqa/data\"\nrelsyn_data=\"${data_dir}/query-rewrites.txt.gz\"\nparaphrase_data=\"${data_dir}/paraphrase-templates.txt.gz\"\nkb_data_dir=\"${data_dir}/kb\"\n\nindex_script=\"${__dir}/index.py\"\nindex_relsyn_script=\"${__dir}/index-relsyn.py\"\n\necho \"Indexing paraphrase data...\"\ngunzip -c \"$paraphrase_data\" | python $index_script localhost 8985 paraphrase\n\necho \"Indexing relsyn data...\"\ngunzip -c \"$relsyn_data\" | python $index_relsyn_script localhost 8984 \n\necho \"Indexing triplestore data...\"\nfor file in `ls \"$kb_data_dir\" | grep part-  `; do\n  gunzip -c \"${kb_data_dir}/${file}\" | python $index_script localhost 8983 triplestore\ndone\n"
  },
  {
    "path": "oqa-solr/src/main/scripts/index-relsyn.py",
    "content": "#!/usr/bin/env python\nimport sys\nimport utils\n\ndef add_id(input):\n  for (i, line) in enumerate(input):\n    yield 'id\\t%s\\t%s' % (i, line)\n\nif __name__ == '__main__':\n  host = sys.argv[1]\n  port = int(sys.argv[2])\n  coll = 'relsyn'\n  utils.index_stream(add_id(sys.stdin), port=port, coll=coll)\n"
  },
  {
    "path": "oqa-solr/src/main/scripts/index.py",
    "content": "#!/usr/bin/env python\nimport sys\nimport utils\n\nif __name__ == '__main__':\n  host = sys.argv[1]\n  port = int(sys.argv[2])\n  collection = sys.argv[3]\n  chunk_size = 10000\n  added = 0\n  for lines in utils.grouper(sys.stdin, chunk_size):\n    lines = [x for x in lines if x != None]\n    objects = [utils.parse_line(line) for line in lines]\n    utils.index_objects(objects, host, port, collection)\n    added += chunk_size\n    print >>sys.stderr, added \n"
  },
  {
    "path": "oqa-solr/src/main/scripts/start-all.sh",
    "content": "#!/bin/bash\nset -u\nset -e\ndir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\n$dir/start.sh triplestore 8983\n$dir/start.sh relsyn 8984\n$dir/start.sh paraphrase 8985\n"
  },
  {
    "path": "oqa-solr/src/main/scripts/start.sh",
    "content": "#!/bin/bash\nset -u\nset -e\nname=$1\nport=$2\n__dir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\npath=\"${__dir}/../../../${name}\"\ncd $path\nnohup java -Xmx4G -Dbootstrap_confdir=$path/solr/$name/conf -Dcollection.configName=$name -DzkRun -DnumShards=1 -Djetty.home=$path -Djetty.port=$port -Dsolr.solr.home=$path/solr -jar start.jar > ${name}.out 2> ${name}.err &\nEXIT_CODE=$?\nps -p $! > /dev/null\nif [ $? -eq 0 ]; then\n  echo $! > \"${name}.pid\"\n  echo \"Process forked, pid: $!\"\nelse\n  echo \"Failed to start $name\"\n  exit 1\nfi\nexit $EXIT_CODE\n"
  },
  {
    "path": "oqa-solr/src/main/scripts/stop-all.sh",
    "content": "#!/bin/bash                                                                     \nset -u                                                                          \nset -e                                                                          \ndir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\n$dir/stop.sh triplestore\n$dir/stop.sh relsyn\n$dir/stop.sh paraphrase\n"
  },
  {
    "path": "oqa-solr/src/main/scripts/stop.sh",
    "content": "#!/bin/bash\ndir=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\nname=$1\necho cat ${dir}/../../../${name}/${name}.pid\nkill `cat ${dir}/../../../${name}/${name}.pid`\n"
  },
  {
    "path": "oqa-solr/src/main/scripts/utils.py",
    "content": "import sys\nimport json\nimport urllib2\nimport itertools\n\ndef grouper(iterable, n, fillvalue=None):\n  args = [iter(iterable)] * n\n  return itertools.izip_longest(fillvalue=fillvalue, *args)\n\ndef solr_url(host, port, coll):\n  return 'http://%s:%s/solr/%s/update/json?commit=true' % (host, port, coll)\n\ndef index_objects(objects, host, port, collection):\n  url = solr_url(host, port, collection)\n  encoded = json.dumps(objects)\n  req = urllib2.Request(url)\n  req.add_header('Content-Type', 'application/json')\n  urllib2.urlopen(req, encoded)\n\ndef parse_line(line):\n  fields = line.rstrip('\\n').split('\\t')\n  keys = fields[0::2]\n  values = fields[1::2]\n  object = dict(zip(keys, values))\n  return object\n\ndef index_stream(input, port, coll, host='localhost', chunk_size=10000):\n  grouped = grouper(input, chunk_size)\n  grouped = [x for x in grouped if x != None]\n  added = 0\n  for group in grouped:\n    parsed = [parse_line(line) for line in group if line]\n    index_objects(parsed, host, port, coll)\n    added += len(parsed)\n    print >>sys.stderr, added\n"
  },
  {
    "path": "oqa-solr/triplestore/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nSolr example\n------------\n\nThis directory contains an instance of the Jetty Servlet container setup to \nrun Solr using an example configuration.\n\nTo run this example:\n\n  java -jar start.jar\n\nin this example directory, and when Solr is started connect to \n\n  http://localhost:8983/solr/\n\nTo add documents to the index, use the post.jar (or post.sh script) in\nthe example/exampledocs subdirectory (while Solr is running), for example:\n\n     cd exampledocs\n     java -jar post.jar *.xml\nOr:  sh post.sh *.xml\n\nFor more information about this example please read...\n\n * example/solr/README.txt\n   For more information about the \"Solr Home\" and Solr specific configuration\n * http://lucene.apache.org/solr/tutorial.html\n   For a Tutorial using this example configuration\n * http://wiki.apache.org/solr/SolrResources \n   For a list of other tutorials and introductory articles.\n\nNotes About These Examples\n--------------------------\n\n* SolrHome *\n\nBy default, start.jar starts Solr in Jetty using the default Solr Home\ndirectory of \"./solr/\" (relative to the working directory of hte servlet \ncontainer).  To run other example configurations, you can specify the \nsolr.solr.home system property when starting jetty...\n\n  java -Dsolr.solr.home=multicore -jar start.jar\n  java -Dsolr.solr.home=example-DIH/solr -jar start.jar\n\n* References to Jar Files Outside This Directory *\n\nVarious example SolrHome dirs contained in this directory may use \"<lib>\"\nstatements in the solrconfig.xml file to reference plugin jars outside of \nthis directory for loading \"contrib\" plugins via relative paths.  \n\nIf you make a copy of this example server and wish to use the \nExtractingRequestHandler (SolrCell), DataImportHandler (DIH), UIMA, the \nclustering component, or any other modules in \"contrib\", you will need to \ncopy the required jars or update the paths to those jars in your \nsolrconfig.xml.\n\n* Logging *\n\nBy default, Jetty & Solr will log to the console a logs/solr.log. This can be convenient when \nfirst getting started, but eventually you will want to log just to a file. To \nconfigure logging, edit the log4j.properties file in \"resources\".\n \nIt is also possible to setup log4j or other popular logging frameworks.\n\n"
  },
  {
    "path": "oqa-solr/triplestore/cloud-scripts/zkcli.bat",
    "content": "REM You can override pass the following parameters to this script:\r\nREM \r\n\r\nset JVM=java\r\n\r\nREM  Find location of this script\r\n\r\nset SDIR=%~dp0\r\nif \"%SDIR:~-1%\"==\"\\\" set SDIR=%SDIR:~0,-1%\r\n\r\n     \r\n\"%JVM%\" -classpath \"%SDIR%\\..\\solr-webapp\\webapp\\WEB-INF\\lib\\*;%SDIR%\\..\\lib\\ext\" org.apache.solr.cloud.ZkCLI %*\r\n"
  },
  {
    "path": "oqa-solr/triplestore/cloud-scripts/zkcli.sh",
    "content": "#!/usr/bin/env bash\n\n# You can override pass the following parameters to this script:\n# \n\nJVM=\"java\"\n\n# Find location of this script\n\nsdir=\"`dirname \\\"$0\\\"`\"\n\n\n$JVM  -classpath \"$sdir/../solr-webapp/webapp/WEB-INF/lib/*:$sdir/../lib/ext/*\" org.apache.solr.cloud.ZkCLI ${1+\"$@\"}\n\n"
  },
  {
    "path": "oqa-solr/triplestore/contexts/solr-jetty-context.xml",
    "content": "<?xml version=\"1.0\"?>\n<!DOCTYPE Configure PUBLIC \"-//Jetty//Configure//EN\" \"http://www.eclipse.org/jetty/configure.dtd\">\n<Configure class=\"org.eclipse.jetty.webapp.WebAppContext\">\n  <Set name=\"contextPath\"><SystemProperty name=\"hostContext\" default=\"/solr\"/></Set>\n  <Set name=\"war\"><SystemProperty name=\"jetty.home\"/>/webapps/solr.war</Set>\n  <Set name=\"defaultsDescriptor\"><SystemProperty name=\"jetty.home\"/>/etc/webdefault.xml</Set>\n  <Set name=\"tempDirectory\"><Property name=\"jetty.home\" default=\".\"/>/solr-webapp</Set>\n</Configure>\n"
  },
  {
    "path": "oqa-solr/triplestore/etc/create-solrtest.keystore.sh",
    "content": "#!/bin/bash -ex\n\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n############\n \n# This script shows how the solrtest.keystore file used for solr tests \n# and these example configs was generated.\n#\n# Running this script should only be necessary if the keystore file\n# needs to be replaced, which shouldn't be required until sometime around\n# the year 4751.\n#\n# NOTE: the \"-ext\" option used in the \"keytool\" command requires that you have\n# the java7 version of keytool, but the generated key will work with any \n# version of java\n\necho \"### remove old keystore\"\nrm -f solrtest.keystore\n\necho \"### create keystore and keys\"\nkeytool -keystore solrtest.keystore -storepass \"secret\" -alias solrtest -keypass \"secret\" -genkey -keyalg RSA -dname \"cn=localhost, ou=SolrTest, o=lucene.apache.org, c=US\" -ext \"san=ip:127.0.0.1\" -validity 999999\n\n\n"
  },
  {
    "path": "oqa-solr/triplestore/etc/jetty.xml",
    "content": "<?xml version=\"1.0\"?>\n<!DOCTYPE Configure PUBLIC \"-//Jetty//Configure//EN\" \"http://www.eclipse.org/jetty/configure.dtd\">\n\n<!-- =============================================================== -->\n<!-- Configure the Jetty Server                                      -->\n<!--                                                                 -->\n<!-- Documentation of this file format can be found at:              -->\n<!-- http://wiki.eclipse.org/Jetty/Reference/jetty.xml_syntax        -->\n<!--                                                                 -->\n<!-- =============================================================== -->\n\n\n<Configure id=\"Server\" class=\"org.eclipse.jetty.server.Server\">\n\n    <!-- =========================================================== -->\n    <!-- Server Thread Pool                                          -->\n    <!-- =========================================================== -->\n    <Set name=\"ThreadPool\">\n      <!-- Default queued blocking threadpool -->\n      <New class=\"org.eclipse.jetty.util.thread.QueuedThreadPool\">\n        <Set name=\"minThreads\">10</Set>\n        <Set name=\"maxThreads\">10000</Set>\n        <Set name=\"detailedDump\">false</Set>\n      </New>\n    </Set>\n\n    <!-- =========================================================== -->\n    <!-- Set connectors                                              -->\n    <!-- =========================================================== -->\n\n  <!--\n    <Call name=\"addConnector\">\n      <Arg>\n          <New class=\"org.eclipse.jetty.server.nio.SelectChannelConnector\">\n            <Set name=\"host\"><SystemProperty name=\"jetty.host\" /></Set>\n            <Set name=\"port\"><SystemProperty name=\"jetty.port\" default=\"8983\"/></Set>\n            <Set name=\"maxIdleTime\">50000</Set>\n            <Set name=\"Acceptors\">2</Set>\n            <Set name=\"statsOn\">false</Set>\n            <Set name=\"confidentialPort\">8443</Set>\n\t    <Set name=\"lowResourcesConnections\">5000</Set>\n\t    <Set name=\"lowResourcesMaxIdleTime\">5000</Set>\n          </New>\n      </Arg>\n    </Call>\n  -->\n\n    <!-- This connector is currently being used for Solr because it\n          showed better performance than nio.SelectChannelConnector\n          for typical Solr requests.  -->\n    <Call name=\"addConnector\">\n      <Arg>\n          <New class=\"org.eclipse.jetty.server.bio.SocketConnector\">\n            <Call class=\"java.lang.System\" name=\"setProperty\"> <Arg>log4j.configuration</Arg> <Arg>etc/log4j.properties</Arg> </Call>\n            <Set name=\"host\"><SystemProperty name=\"jetty.host\" /></Set>\n            <Set name=\"port\"><SystemProperty name=\"jetty.port\" default=\"8983\"/></Set>\n            <Set name=\"maxIdleTime\">50000</Set>\n            <Set name=\"lowResourceMaxIdleTime\">1500</Set>\n            <Set name=\"statsOn\">false</Set>\n          </New>\n      </Arg>\n    </Call>\n\n    <!-- if the connector below is uncommented, then jetty will also accept SSL\n         connections on port 8984, using a self signed certificate and can \n         optionally require the client to authenticate with a certificate. \n         (which can be the same as the server certificate_\n         \n         # Run solr example with SSL on port 8984\n         java -jar start.jar\n         # \n         # Run post.jar so that it trusts the server cert...\n         java -Djavax.net.ssl.trustStore=../etc/solrtest.keystore -Durl=https://localhost:8984/solr/update -jar post.jar *.xml\n\n         # Run solr example with SSL requiring client certs on port 8984\n         java -Djetty.ssl.clientAuth=true -jar start.jar\n         #\n         # Run post.jar so that it trusts the server cert, \n         # and authenticates with a client cert\n         java -Djavax.net.ssl.keyStorePassword=secret -Djavax.net.ssl.keyStore=../etc/solrtest.keystore -Djavax.net.ssl.trustStore=../etc/solrtest.keystore -Durl=https://localhost:8984/solr/update -jar post.jar *.xml\n\n    -->\n    <!--\n    <Call name=\"addConnector\">\n      <Arg>\n        <New class=\"org.eclipse.jetty.server.ssl.SslSelectChannelConnector\">\n          <Arg>\n            <New class=\"org.eclipse.jetty.http.ssl.SslContextFactory\">\n              <Set name=\"keyStore\"><SystemProperty name=\"jetty.home\" default=\".\"/>/etc/solrtest.keystore</Set>\n              <Set name=\"keyStorePassword\">secret</Set>\n              <Set name=\"needClientAuth\"><SystemProperty name=\"jetty.ssl.clientAuth\" default=\"false\"/></Set>\n            </New>\n          </Arg>\n          <Set name=\"port\"><SystemProperty name=\"jetty.ssl.port\" default=\"8984\"/></Set>\n          <Set name=\"maxIdleTime\">30000</Set>\n        </New>\n      </Arg>\n    </Call>\n    -->\n\n    <!-- =========================================================== -->\n    <!-- Set handler Collection Structure                            --> \n    <!-- =========================================================== -->\n    <Set name=\"handler\">\n      <New id=\"Handlers\" class=\"org.eclipse.jetty.server.handler.HandlerCollection\">\n        <Set name=\"handlers\">\n         <Array type=\"org.eclipse.jetty.server.Handler\">\n           <Item>\n             <New id=\"Contexts\" class=\"org.eclipse.jetty.server.handler.ContextHandlerCollection\"/>\n           </Item>\n           <Item>\n             <New id=\"DefaultHandler\" class=\"org.eclipse.jetty.server.handler.DefaultHandler\"/>\n           </Item>\n           <Item>\n             <New id=\"RequestLog\" class=\"org.eclipse.jetty.server.handler.RequestLogHandler\"/>\n           </Item>\n         </Array>\n        </Set>\n      </New>\n    </Set>\n    \n    <!-- =========================================================== -->\n    <!-- Configure Request Log                                       -->\n    <!-- =========================================================== -->\n    <!-- \n    <Ref id=\"Handlers\">\n      <Call name=\"addHandler\">\n        <Arg>\n          <New id=\"RequestLog\" class=\"org.eclipse.jetty.server.handler.RequestLogHandler\">\n            <Set name=\"requestLog\">\n              <New id=\"RequestLogImpl\" class=\"org.eclipse.jetty.server.NCSARequestLog\">\n                <Set name=\"filename\">\n                   logs/request.yyyy_mm_dd.log\n                </Set>\n                <Set name=\"filenameDateFormat\">yyyy_MM_dd</Set>\n                <Set name=\"retainDays\">90</Set>\n                <Set name=\"append\">true</Set>\n                <Set name=\"extended\">false</Set>\n                <Set name=\"logCookies\">false</Set>\n                <Set name=\"LogTimeZone\">UTC</Set>\n              </New>\n            </Set>\n          </New>\n        </Arg>\n      </Call>\n    </Ref>\n    -->\n\n    <!-- =========================================================== -->\n    <!-- extra options                                               -->\n    <!-- =========================================================== -->\n    <Set name=\"stopAtShutdown\">true</Set>\n    <Set name=\"sendServerVersion\">false</Set>\n    <Set name=\"sendDateHeader\">false</Set>\n    <Set name=\"gracefulShutdown\">1000</Set>\n    <Set name=\"dumpAfterStart\">false</Set>\n    <Set name=\"dumpBeforeStop\">false</Set>\n\n\n\n\n    <Call name=\"addBean\">\n      <Arg>\n        <New id=\"DeploymentManager\" class=\"org.eclipse.jetty.deploy.DeploymentManager\">\n          <Set name=\"contexts\">\n            <Ref id=\"Contexts\" />\n          </Set>\n          <Call name=\"setContextAttribute\">\n            <Arg>org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern</Arg>\n            <Arg>.*/servlet-api-[^/]*\\.jar$</Arg>\n          </Call>\n          \n          \n          <!-- Add a customize step to the deployment lifecycle -->\n          <!-- uncomment and replace DebugBinding with your extended AppLifeCycle.Binding class \n          <Call name=\"insertLifeCycleNode\">\n            <Arg>deployed</Arg>\n            <Arg>starting</Arg>\n            <Arg>customise</Arg>\n          </Call>\n          <Call name=\"addLifeCycleBinding\">\n            <Arg>\n              <New class=\"org.eclipse.jetty.deploy.bindings.DebugBinding\">\n                <Arg>customise</Arg>\n              </New>\n            </Arg>\n          </Call>\n          -->\n          \n        </New>\n      </Arg>\n    </Call>\n    \n    <Ref id=\"DeploymentManager\">\n      <Call name=\"addAppProvider\">\n        <Arg>\n          <New class=\"org.eclipse.jetty.deploy.providers.ContextProvider\">\n            <Set name=\"monitoredDirName\"><SystemProperty name=\"jetty.home\" default=\".\"/>/contexts</Set>\n            <Set name=\"scanInterval\">0</Set>\n          </New>\n        </Arg>\n      </Call>\n    </Ref>\n\n</Configure>\n"
  },
  {
    "path": "oqa-solr/triplestore/etc/logging.properties",
    "content": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\n# To use this log config, start solr with the following system property: \n# -Djava.util.logging.config.file=etc/logging.properties\n\n## Default global logging level:\n.level = INFO\n\n## Log every update command (add, delete, commit, ...)\n#org.apache.solr.update.processor.LogUpdateProcessor.level = FINE\n\n## Where to log (space separated list).\nhandlers = java.util.logging.FileHandler\n\njava.util.logging.FileHandler.level = FINE\n\njava.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter\n\n# 1 GB limit per file\njava.util.logging.FileHandler.limit = 1073741824\n\n# Log to the logs directory, with log files named solrxxx.log\njava.util.logging.FileHandler.pattern = ./logs/solr%u.log"
  },
  {
    "path": "oqa-solr/triplestore/etc/webdefault.xml",
    "content": "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n\n  <!-- ===================================================================== -->\n  <!-- This file contains the default descriptor for web applications.       -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->\n  <!-- The intent of this descriptor is to include jetty specific or common  -->\n  <!-- configuration for all webapps.   If a context has a webdefault.xml    -->\n  <!-- descriptor, it is applied before the contexts own web.xml file        -->\n  <!--                                                                       -->\n  <!-- A context may be assigned a default descriptor by:                    -->\n  <!--  + Calling WebApplicationContext.setDefaultsDescriptor                -->\n  <!--  + Passed an arg to addWebApplications                                -->\n  <!--                                                                       -->\n  <!-- This file is used both as the resource within the jetty.jar (which is -->\n  <!-- used as the default if no explicit defaults descriptor is set) and it -->\n  <!-- is copied to the etc directory of the Jetty distro and explicitly     -->\n  <!-- by the jetty.xml file.                                                -->\n  <!--                                                                       -->\n  <!-- ===================================================================== -->\n<web-app\n  xmlns=\"http://java.sun.com/xml/ns/javaee\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd\"\n  metadata-complete=\"true\"\n  version=\"2.5\"\n>\n\n  <description>\n    Default web.xml file.  \n    This file is applied to a Web application before it's own WEB_INF/web.xml file\n  </description>\n\n  <!-- ==================================================================== -->\n  <!-- Removes static references to beans from javax.el.BeanELResolver to   -->\n  <!-- ensure webapp classloader can be released on undeploy                -->\n  <!-- ==================================================================== -->\n  <listener>\n   <listener-class>org.eclipse.jetty.servlet.listener.ELContextCleaner</listener-class>\n  </listener>\n  \n  <!-- ==================================================================== -->\n  <!-- Removes static cache of Methods from java.beans.Introspector to      -->\n  <!-- ensure webapp classloader can be released on undeploy                -->\n  <!-- ==================================================================== -->  \n  <listener>\n   <listener-class>org.eclipse.jetty.servlet.listener.IntrospectorCleaner</listener-class>\n  </listener>\n  \n\n  <!-- ==================================================================== -->\n  <!-- Context params to control Session Cookies                            -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!--\n    UNCOMMENT TO ACTIVATE <context-param> <param-name>org.eclipse.jetty.servlet.SessionDomain</param-name> <param-value>127.0.0.1</param-value> </context-param> <context-param>\n    <param-name>org.eclipse.jetty.servlet.SessionPath</param-name> <param-value>/</param-value> </context-param> <context-param> <param-name>org.eclipse.jetty.servlet.MaxAge</param-name>\n    <param-value>-1</param-value> </context-param>\n  -->\n\n  <!-- ==================================================================== -->\n  <!-- The default servlet.                                                 -->\n  <!-- This servlet, normally mapped to /, provides the handling for static -->\n  <!-- content, OPTIONS and TRACE methods for the context.                  -->\n  <!-- The following initParameters are supported:                          -->\n  <!--  \n *  acceptRanges      If true, range requests and responses are\n *                    supported\n *\n *  dirAllowed        If true, directory listings are returned if no\n *                    welcome file is found. Else 403 Forbidden.\n *\n *  welcomeServlets   If true, attempt to dispatch to welcome files\n *                    that are servlets, but only after no matching static\n *                    resources could be found. If false, then a welcome\n *                    file must exist on disk. If \"exact\", then exact\n *                    servlet matches are supported without an existing file.\n *                    Default is true.\n *\n *                    This must be false if you want directory listings,\n *                    but have index.jsp in your welcome file list.\n *\n *  redirectWelcome   If true, welcome files are redirected rather than\n *                    forwarded to.\n *\n *  gzip              If set to true, then static content will be served as\n *                    gzip content encoded if a matching resource is\n *                    found ending with \".gz\"\n *\n *  resourceBase      Set to replace the context resource base\n *\n *  resourceCache     If set, this is a context attribute name, which the servlet \n *                    will use to look for a shared ResourceCache instance. \n *                        \n *  relativeResourceBase\n *                    Set with a pathname relative to the base of the\n *                    servlet context root. Useful for only serving static content out\n *                    of only specific subdirectories.\n *\n *  aliases           If True, aliases of resources are allowed (eg. symbolic\n *                    links and caps variations). May bypass security constraints.\n *\n *  maxCacheSize      The maximum total size of the cache or 0 for no cache.\n *  maxCachedFileSize The maximum size of a file to cache\n *  maxCachedFiles    The maximum number of files to cache\n *\n *  useFileMappedBuffer\n *                    If set to true, it will use mapped file buffer to serve static content\n *                    when using NIO connector. Setting this value to false means that\n *                    a direct buffer will be used instead of a mapped file buffer.\n *                    By default, this is set to true.\n *\n *  cacheControl      If set, all static content will have this value set as the cache-control\n *                    header.\n -->\n \n \n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <servlet>\n    <servlet-name>default</servlet-name>\n    <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>\n    <init-param>\n      <param-name>aliases</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>acceptRanges</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>dirAllowed</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>welcomeServlets</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>redirectWelcome</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCacheSize</param-name>\n      <param-value>256000000</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCachedFileSize</param-name>\n      <param-value>200000000</param-value>\n    </init-param>\n    <init-param>\n      <param-name>maxCachedFiles</param-name>\n      <param-value>2048</param-value>\n    </init-param>\n    <init-param>\n      <param-name>gzip</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <init-param>\n      <param-name>useFileMappedBuffer</param-name>\n      <param-value>true</param-value>\n    </init-param>\n    <!--\n    <init-param>\n      <param-name>resourceCache</param-name>\n      <param-value>resourceCache</param-value>\n    </init-param>\n    -->\n    <!--\n    <init-param>\n      <param-name>cacheControl</param-name>\n      <param-value>max-age=3600,public</param-value>\n    </init-param>\n    -->\n    <load-on-startup>0</load-on-startup>\n  </servlet>\n\n  <servlet-mapping>\n    <servlet-name>default</servlet-name>\n    <url-pattern>/</url-pattern>\n  </servlet-mapping>\n\n\n  <!-- ==================================================================== -->\n  <!-- JSP Servlet                                                          -->\n  <!-- This is the jasper JSP servlet from the jakarta project              -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!-- The JSP page compiler and execution servlet, which is the mechanism  -->\n  <!-- used by Glassfish to support JSP pages.  Traditionally, this servlet -->\n  <!-- is mapped to URL patterh \"*.jsp\".  This servlet supports the         -->\n  <!-- following initialization parameters (default values are in square    -->\n  <!-- brackets):                                                           -->\n  <!--                                                                      -->\n  <!--   checkInterval       If development is false and reloading is true, -->\n  <!--                       background compiles are enabled. checkInterval -->\n  <!--                       is the time in seconds between checks to see   -->\n  <!--                       if a JSP page needs to be recompiled. [300]    -->\n  <!--                                                                      -->\n  <!--   compiler            Which compiler Ant should use to compile JSP   -->\n  <!--                       pages.  See the Ant documenation for more      -->\n  <!--                       information. [javac]                           -->\n  <!--                                                                      -->\n  <!--   classdebuginfo      Should the class file be compiled with         -->\n  <!--                       debugging information?  [true]                 -->\n  <!--                                                                      -->\n  <!--   classpath           What class path should I use while compiling   -->\n  <!--                       generated servlets?  [Created dynamically      -->\n  <!--                       based on the current web application]          -->\n  <!--                       Set to ? to make the container explicitly set  -->\n  <!--                       this parameter.                                -->\n  <!--                                                                      -->\n  <!--   development         Is Jasper used in development mode (will check -->\n  <!--                       for JSP modification on every access)?  [true] -->\n  <!--                                                                      -->\n  <!--   enablePooling       Determines whether tag handler pooling is      -->\n  <!--                       enabled  [true]                                -->\n  <!--                                                                      -->\n  <!--   fork                Tell Ant to fork compiles of JSP pages so that -->\n  <!--                       a separate JVM is used for JSP page compiles   -->\n  <!--                       from the one Tomcat is running in. [true]      -->\n  <!--                                                                      -->\n  <!--   ieClassId           The class-id value to be sent to Internet      -->\n  <!--                       Explorer when using <jsp:plugin> tags.         -->\n  <!--                       [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93]   -->\n  <!--                                                                      -->\n  <!--   javaEncoding        Java file encoding to use for generating java  -->\n  <!--                       source files. [UTF-8]                          -->\n  <!--                                                                      -->\n  <!--   keepgenerated       Should we keep the generated Java source code  -->\n  <!--                       for each page instead of deleting it? [true]   -->\n  <!--                                                                      -->\n  <!--   logVerbosityLevel   The level of detailed messages to be produced  -->\n  <!--                       by this servlet.  Increasing levels cause the  -->\n  <!--                       generation of more messages.  Valid values are -->\n  <!--                       FATAL, ERROR, WARNING, INFORMATION, and DEBUG. -->\n  <!--                       [WARNING]                                      -->\n  <!--                                                                      -->\n  <!--   mappedfile          Should we generate static content with one     -->\n  <!--                       print statement per input line, to ease        -->\n  <!--                       debugging?  [false]                            -->\n  <!--                                                                      -->\n  <!--                                                                      -->\n  <!--   reloading           Should Jasper check for modified JSPs?  [true] -->\n  <!--                                                                      -->\n  <!--   suppressSmap        Should the generation of SMAP info for JSR45   -->\n  <!--                       debugging be suppressed?  [false]              -->\n  <!--                                                                      -->\n  <!--   dumpSmap            Should the SMAP info for JSR45 debugging be    -->\n  <!--                       dumped to a file? [false]                      -->\n  <!--                       False if suppressSmap is true                  -->\n  <!--                                                                      -->\n  <!--   scratchdir          What scratch directory should we use when      -->\n  <!--                       compiling JSP pages?  [default work directory  -->\n  <!--                       for the current web application]               -->\n  <!--                                                                      -->\n  <!--   tagpoolMaxSize      The maximum tag handler pool size  [5]         -->\n  <!--                                                                      -->\n  <!--   xpoweredBy          Determines whether X-Powered-By response       -->\n  <!--                       header is added by generated servlet  [false]  -->\n  <!--                                                                      -->\n  <!-- If you wish to use Jikes to compile JSP pages:                       -->\n  <!--   Set the init parameter \"compiler\" to \"jikes\".  Define              -->\n  <!--   the property \"-Dbuild.compiler.emacs=true\" when starting Jetty     -->\n  <!--   to cause Jikes to emit error messages in a format compatible with  -->\n  <!--   Jasper.                                                            -->\n  <!--   If you get an error reporting that jikes can't use UTF-8 encoding, -->\n  <!--   try setting the init parameter \"javaEncoding\" to \"ISO-8859-1\".     -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <servlet\n    id=\"jsp\"\n  >\n    <servlet-name>jsp</servlet-name>\n    <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>\n    <init-param>\n      <param-name>logVerbosityLevel</param-name>\n      <param-value>DEBUG</param-value>\n    </init-param>\n    <init-param>\n      <param-name>fork</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <init-param>\n      <param-name>xpoweredBy</param-name>\n      <param-value>false</param-value>\n    </init-param>\n    <!--  \n    <init-param>\n        <param-name>classpath</param-name>\n        <param-value>?</param-value>\n    </init-param>\n    -->\n    <load-on-startup>0</load-on-startup>\n  </servlet>\n\n  <servlet-mapping>\n    <servlet-name>jsp</servlet-name>\n    <url-pattern>*.jsp</url-pattern>\n    <url-pattern>*.jspf</url-pattern>\n    <url-pattern>*.jspx</url-pattern>\n    <url-pattern>*.xsp</url-pattern>\n    <url-pattern>*.JSP</url-pattern>\n    <url-pattern>*.JSPF</url-pattern>\n    <url-pattern>*.JSPX</url-pattern>\n    <url-pattern>*.XSP</url-pattern>\n  </servlet-mapping>\n\n  <!-- ==================================================================== -->\n  <!-- Dynamic Servlet Invoker.                                             -->\n  <!-- This servlet invokes anonymous servlets that have not been defined   -->\n  <!-- in the web.xml or by other means. The first element of the pathInfo  -->\n  <!-- of a request passed to the envoker is treated as a servlet name for  -->\n  <!-- an existing servlet, or as a class name of a new servlet.            -->\n  <!-- This servlet is normally mapped to /servlet/*                        -->\n  <!-- This servlet support the following initParams:                       -->\n  <!--                                                                      -->\n  <!--  nonContextServlets       If false, the invoker can only load        -->\n  <!--                           servlets from the contexts classloader.    -->\n  <!--                           This is false by default and setting this  -->\n  <!--                           to true may have security implications.    -->\n  <!--                                                                      -->\n  <!--  verbose                  If true, log dynamic loads                 -->\n  <!--                                                                      -->\n  <!--  *                        All other parameters are copied to the     -->\n  <!--                           each dynamic servlet as init parameters    -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!--\n    Uncomment for dynamic invocation <servlet> <servlet-name>invoker</servlet-name> <servlet-class>org.eclipse.jetty.servlet.Invoker</servlet-class> <init-param> <param-name>verbose</param-name>\n    <param-value>false</param-value> </init-param> <init-param> <param-name>nonContextServlets</param-name> <param-value>false</param-value> </init-param> <init-param>\n    <param-name>dynamicParam</param-name> <param-value>anyValue</param-value> </init-param> <load-on-startup>0</load-on-startup> </servlet> <servlet-mapping> <servlet-name>invoker</servlet-name>\n    <url-pattern>/servlet/*</url-pattern> </servlet-mapping>\n  -->\n\n\n\n  <!-- ==================================================================== -->\n  <session-config>\n    <session-timeout>30</session-timeout>\n  </session-config>\n\n  <!-- ==================================================================== -->\n  <!-- Default MIME mappings                                                -->\n  <!-- The default MIME mappings are provided by the mime.properties        -->\n  <!-- resource in the org.eclipse.jetty.server.jar file.  Additional or modified  -->\n  <!-- mappings may be specified here                                       -->\n  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->\n  <!-- UNCOMMENT TO ACTIVATE\n  <mime-mapping>\n    <extension>mysuffix</extension>\n    <mime-type>mymime/type</mime-type>\n  </mime-mapping>\n  -->\n\n  <!-- ==================================================================== -->\n  <welcome-file-list>\n    <welcome-file>index.html</welcome-file>\n    <welcome-file>index.htm</welcome-file>\n    <welcome-file>index.jsp</welcome-file>\n  </welcome-file-list>\n\n  <!-- ==================================================================== -->\n  <locale-encoding-mapping-list>\n    <locale-encoding-mapping>\n      <locale>ar</locale>\n      <encoding>ISO-8859-6</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>be</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>bg</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ca</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>cs</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>da</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>de</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>el</locale>\n      <encoding>ISO-8859-7</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>en</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>es</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>et</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>fi</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>fr</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>hr</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>hu</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>is</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>it</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>iw</locale>\n      <encoding>ISO-8859-8</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ja</locale>\n      <encoding>Shift_JIS</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ko</locale>\n      <encoding>EUC-KR</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>lt</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>lv</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>mk</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>nl</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>no</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>pl</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>pt</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ro</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>ru</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sh</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sk</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sl</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sq</locale>\n      <encoding>ISO-8859-2</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sr</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>sv</locale>\n      <encoding>ISO-8859-1</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>tr</locale>\n      <encoding>ISO-8859-9</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>uk</locale>\n      <encoding>ISO-8859-5</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>zh</locale>\n      <encoding>GB2312</encoding>\n    </locale-encoding-mapping>\n    <locale-encoding-mapping>\n      <locale>zh_TW</locale>\n      <encoding>Big5</encoding>\n    </locale-encoding-mapping>\n  </locale-encoding-mapping-list>\n\n  <security-constraint>\n    <web-resource-collection>\n      <web-resource-name>Disable TRACE</web-resource-name>\n      <url-pattern>/</url-pattern>\n      <http-method>TRACE</http-method>\n    </web-resource-collection>\n    <auth-constraint/>\n  </security-constraint>\n\n</web-app>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nSolr DataImportHandler example configuration\n--------------------------------------------\n\nChange to the parent (example) directory. Start solr by executing the following command \n\n> cd ..\n> java -Dsolr.solr.home=\"./example-DIH/solr/\" -jar start.jar\n\nin this directory, and when Solr is started connect to \n\n  http://localhost:8983/solr/\n\nTo import data from the hsqldb database, connect to\n\n  http://localhost:8983/solr/db/dataimport?command=full-import\n\nTo import data from the slashdot feed, connect to\n\n  http://localhost:8983/solr/rss/dataimport?command=full-import\n\nTo import data from your imap server\n\n1. Edit the example-DIH/solr/mail/conf/data-config.xml and add details about username, password, imap server\n2. Connect to http://localhost:8983/solr/mail/dataimport?command=full-import\n\nTo copy data from db Solr core, connect to\n\n http://localhost:8983/solr/solr/dataimport?command=full-import\n\nSee also README.txt in the solr subdirectory, and check\nhttp://wiki.apache.org/solr/DataImportHandler for detailed\nusage guide and tutorial.\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/hsqldb/ex.log",
    "content": "/*C1*/SET SCHEMA PUBLIC\nCONNECT USER SA\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/hsqldb/ex.properties",
    "content": "#HSQL Database Engine 1.8.0.5\n#Fri Aug 29 10:24:33 IST 2008\nhsqldb.script_format=0\nruntime.gc_interval=0\nsql.enforce_strict_size=false\nhsqldb.cache_size_scale=8\nreadonly=false\nhsqldb.nio_data_file=true\nhsqldb.cache_scale=14\nversion=1.8.0\nhsqldb.default_table_type=memory\nhsqldb.cache_file_scale=1\nhsqldb.log_size=200\nmodified=yes\nhsqldb.cache_version=1.7.0\nhsqldb.original_version=1.8.0\nhsqldb.compatible_version=1.8.0\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/hsqldb/ex.script",
    "content": "CREATE SCHEMA PUBLIC AUTHORIZATION DBA\nCREATE CACHED TABLE ITEM(ID CHAR(8),NAME VARCHAR(100),MANU VARCHAR(50),WEIGHT REAL,PRICE REAL,POPULARITY INTEGER,INCLUDES VARCHAR(200),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE FEATURE(ITEM_ID CHAR(8),DESCRIPTION VARCHAR(200),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE CATEGORY(ID INTEGER,DESCRIPTION VARCHAR(30),LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nCREATE CACHED TABLE ITEM_CATEGORY(ITEM_ID CHAR(8),CATEGORY_ID INTEGER,LAST_MODIFIED TIMESTAMP DEFAULT NOW)\nSET TABLE ITEM INDEX'15056 0'\nSET TABLE FEATURE INDEX'22424 0'\nSET TABLE CATEGORY INDEX'18856 0'\nSET TABLE ITEM_CATEGORY INDEX'17328 0'\nCREATE USER SA PASSWORD \"\"\nGRANT DBA TO SA\nSET WRITE_DELAY 20\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/db-data-config.xml",
    "content": "<dataConfig>\n    <dataSource driver=\"org.hsqldb.jdbcDriver\" url=\"jdbc:hsqldb:./example-DIH/hsqldb/ex\" user=\"sa\" />\n    <document>\n        <entity name=\"item\" query=\"select * from item\"\n                deltaQuery=\"select id from item where last_modified > '${dataimporter.last_index_time}'\">\n            <field column=\"NAME\" name=\"name\" />\n\n            <entity name=\"feature\"  \n                    query=\"select DESCRIPTION from FEATURE where ITEM_ID='${item.ID}'\"\n                    deltaQuery=\"select ITEM_ID from FEATURE where last_modified > '${dataimporter.last_index_time}'\"\n                    parentDeltaQuery=\"select ID from item where ID=${feature.ITEM_ID}\">\n                <field name=\"features\" column=\"DESCRIPTION\" />\n            </entity>\n            \n            <entity name=\"item_category\"\n                    query=\"select CATEGORY_ID from item_category where ITEM_ID='${item.ID}'\"\n                    deltaQuery=\"select ITEM_ID, CATEGORY_ID from item_category where last_modified > '${dataimporter.last_index_time}'\"\n                    parentDeltaQuery=\"select ID from item where ID=${item_category.ITEM_ID}\">\n                <entity name=\"category\"\n                        query=\"select DESCRIPTION from category where ID = '${item_category.CATEGORY_ID}'\"\n                        deltaQuery=\"select ID from category where last_modified > '${dataimporter.last_index_time}'\"\n                        parentDeltaQuery=\"select ITEM_ID, CATEGORY_ID from item_category where CATEGORY_ID=${category.ID}\">\n                    <field column=\"description\" name=\"cat\" />\n                </entity>\n            </entity>\n        </entity>\n    </document>\n</dataConfig>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"db\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n   <field name=\"id\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" multiValued=\"false\" /> \n   <field name=\"sku\" type=\"textTight\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"name\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"nameSort\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"alphaNameSort\" type=\"alphaOnlySort\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"manu\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"cat\" type=\"text_ws\" indexed=\"true\" stored=\"true\" multiValued=\"true\" omitNorms=\"true\" termVectors=\"true\" />\n   <field name=\"features\" type=\"text\" indexed=\"true\" stored=\"true\" multiValued=\"true\"/>\n   <field name=\"includes\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n\n   <field name=\"weight\" type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"price\"  type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <!-- \"default\" values can be specified for fields, indicating which\n        value should be used if no value is specified when adding a document.\n     -->\n   <field name=\"popularity\" type=\"sint\" indexed=\"true\" stored=\"true\" default=\"0\"/>\n   <field name=\"inStock\" type=\"boolean\" indexed=\"true\" stored=\"true\"/>\n\n   <!-- Some sample docs exists solely to demonstrate the spellchecker\n        functionality, this is the only field they container.\n        Typically you might build the spellchecker of \"catchall\" type field\n        containing all of the text in each document\n     -->\n   <field name=\"word\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n\n   \n   <!-- catchall field, containing all other searchable text fields (implemented\n        via copyField further on in this schema  -->\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\"/>\n\n   <!-- non-tokenized version of manufacturer to make it easier to sort or group\n        results by manufacturer.  copied from \"manu\" via copyField -->\n   <field name=\"manu_exact\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n\n   <!-- Dynamic field definitions.  If a field name is not found, dynamicFields\n        will be used if the name matches any of the patterns.\n        RESTRICTION: the glob-like pattern in the name attribute must have\n        a \"*\" only at the start or the end.\n        EXAMPLE:  name=\"*_i\" will match any field ending in _i (like myid_i, z_i)\n        Longer patterns will be matched first.  if equal size patterns\n        both match, the first appearing in the schema will be used.  -->\n   <dynamicField name=\"*_i\"  type=\"sint\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_s\"  type=\"string\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_l\"  type=\"slong\"   indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_t\"  type=\"text\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_b\"  type=\"boolean\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_f\"  type=\"sfloat\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_d\"  type=\"sdouble\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_dt\" type=\"date\"    indexed=\"true\"  stored=\"true\"/>\n\n   <dynamicField name=\"random*\" type=\"random\" />\n\n   <!-- uncomment the following to ignore any fields that don't already match an existing \n        field name or dynamic field, rather than reporting them as an error. \n        alternately, change the type=\"ignored\" to some other type e.g. \"text\" if you want \n        unknown fields indexed and/or stored by default --> \n   <!--dynamicField name=\"*\" type=\"ignored\" multiValued=\"true\" /-->\n   \n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n  <!-- copyField commands copy one field to another at the time a document\n        is added to the index.  It's used either to index the same field differently,\n        or to add multiple fields to the same field for easier/faster searching.  -->\n   <copyField source=\"id\" dest=\"sku\"/>\n\n   <copyField source=\"cat\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"nameSort\"/>\n   <copyField source=\"name\" dest=\"alphaNameSort\"/>\n   <copyField source=\"manu\" dest=\"text\"/>\n   <copyField source=\"features\" dest=\"text\"/>\n   <copyField source=\"includes\" dest=\"text\"/>\n\n   <copyField source=\"manu\" dest=\"manu_exact\"/>\n\n <!-- Similarity is the scoring routine for each document vs. a query.\n      A custom similarity may be specified here, but the default is fine\n      for most applications.  -->\n <!-- <similarity class=\"org.apache.lucene.search.similarities.DefaultSimilarity\"/> -->\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n    \t<str name=\"config\">db-data-config.xml</str>\n    </lst>\n  </requestHandler>\n   \n  \n  \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\\"']{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/xslt/example.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to HTML\n -->\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'\n>\n\n  <xsl:output media-type=\"text/html; charset=UTF-8\" encoding=\"UTF-8\"/> \n  \n  <xsl:variable name=\"title\" select=\"concat('Solr search results (',response/result/@numFound,' documents)')\"/>\n  \n  <xsl:template match='/'>\n    <html>\n      <head>\n        <title><xsl:value-of select=\"$title\"/></title>\n        <xsl:call-template name=\"css\"/>\n      </head>\n      <body>\n        <h1><xsl:value-of select=\"$title\"/></h1>\n        <div class=\"note\">\n          This has been formatted by the sample \"example.xsl\" transform -\n          use your own XSLT to get a nicer page\n        </div>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n      </body>\n    </html>\n  </xsl:template>\n  \n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <div class=\"doc\">\n      <table width=\"100%\">\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n      </table>\n    </div>\n  </xsl:template>\n\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n    <xsl:param name=\"pos\"></xsl:param>\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n\n        <xsl:if test=\"boolean(//lst[@name='explain'])\">\n          <xsl:element name=\"a\">\n            <!-- can't allow whitespace here -->\n            <xsl:attribute name=\"href\">javascript:toggle(\"<xsl:value-of select=\"concat('exp-',$pos)\" />\");</xsl:attribute>?</xsl:element>\n          <br/>\n          <xsl:element name=\"div\">\n            <xsl:attribute name=\"class\">exp</xsl:attribute>\n            <xsl:attribute name=\"id\">\n              <xsl:value-of select=\"concat('exp-',$pos)\" />\n            </xsl:attribute>\n            <xsl:value-of select=\"//lst[@name='explain']/str[position()=$pos]\"/>\n          </xsl:element>\n        </xsl:if>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <ul>\n        <xsl:for-each select=\"*\">\n          <li><xsl:value-of select=\".\"/></li>\n        </xsl:for-each>\n        </ul>\n      </td>\n    </tr>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n  \n  <xsl:template name=\"css\">\n    <script>\n      function toggle(id) {\n        var obj = document.getElementById(id);\n        obj.style.display = (obj.style.display != 'block') ? 'block' : 'none';\n      }\n    </script>\n    <style type=\"text/css\">\n      body { font-family: \"Lucida Grande\", sans-serif }\n      td.name { font-style: italic; font-size:80%; }\n      td { vertical-align: top; }\n      ul { margin: 0px; margin-left: 1em; padding: 0px; }\n      .note { font-size:80%; }\n      .doc { margin-top: 1em; border-top: solid grey 1px; }\n      .exp { display: none; font-family: monospace; white-space: pre; }\n    </style>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/xslt/example_atom.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to Atom\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output method=\"xml\" encoding=\"utf-8\" />\n\n  <xsl:template match='/'>\n    <xsl:variable name=\"query\" select=\"response/lst[@name='responseHeader']/lst[@name='params']/str[@name='q']\"/>\n    <feed xmlns=\"http://www.w3.org/2005/Atom\">\n      <title>Example Solr Atom 1.0 Feed</title>\n      <subtitle>\n       This has been formatted by the sample \"example_atom.xsl\" transform -\n       use your own XSLT to get a nicer Atom feed.\n      </subtitle>\n      <author>\n        <name>Apache Solr</name>\n        <email>solr-user@lucene.apache.org</email>\n      </author>\n      <link rel=\"self\" type=\"application/atom+xml\" \n            href=\"http://localhost:8983/solr/q={$query}&amp;wt=xslt&amp;tr=atom.xsl\"/>\n      <updated>\n        <xsl:value-of select=\"response/result/doc[position()=1]/date[@name='timestamp']\"/>\n      </updated>\n      <id>tag:localhost,2007:example</id>\n      <xsl:apply-templates select=\"response/result/doc\"/>\n    </feed>\n  </xsl:template>\n    \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <entry>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link href=\"http://localhost:8983/solr/select?q={$id}\"/>\n      <id>tag:localhost,2007:<xsl:value-of select=\"$id\"/></id>\n      <summary><xsl:value-of select=\"arr[@name='features']\"/></summary>\n      <updated><xsl:value-of select=\"date[@name='timestamp']\"/></updated>\n    </entry>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/xslt/example_rss.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to RSS\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output method=\"xml\" encoding=\"utf-8\" />\n  <xsl:template match='/'>\n    <rss version=\"2.0\">\n       <channel>\n\t <title>Example Solr RSS 2.0 Feed</title>\n         <link>http://localhost:8983/solr</link>\n         <description>\n          This has been formatted by the sample \"example_rss.xsl\" transform -\n          use your own XSLT to get a nicer RSS feed.\n         </description>\n         <language>en-us</language>\n         <docs>http://localhost:8983/solr</docs>\n         <xsl:apply-templates select=\"response/result/doc\"/>\n       </channel>\n    </rss>\n  </xsl:template>\n  \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <xsl:variable name=\"timestamp\" select=\"date[@name='timestamp']\"/>\n    <item>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </link>\n      <description>\n        <xsl:value-of select=\"arr[@name='features']\"/>\n      </description>\n      <pubDate><xsl:value-of select=\"$timestamp\"/></pubDate>\n      <guid>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </guid>\n    </item>\n  </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/db/conf/xslt/luke.xsl",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See the NOTICE file distributed with\n    this work for additional information regarding copyright ownership.\n    The ASF licenses this file to You under the Apache License, Version 2.0\n    (the \"License\"); you may not use this file except in compliance with\n    the License.  You may obtain a copy of the License at\n    \n    http://www.apache.org/licenses/LICENSE-2.0\n    \n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n-->\n\n\n<!-- \n  Display the luke request handler with graphs\n -->\n<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n    xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:svg=\"http://www.w3.org/2000/svg\" version=\"1.0\">\n    <xsl:output method=\"xml\" doctype-public=\"-//W3C//DTD XHTML 1.0 Strict//EN\"\n        doctype-system=\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\" encoding=\"UTF-8\"/>\n\n    <xsl:variable name=\"title\">Solr Luke Request Handler Response</xsl:variable>\n\n    <xsl:template match=\"/\">\n        <html xmlns=\"http://www.w3.org/1999/xhtml\">\n            <head>\n                <title>\n                    <xsl:value-of select=\"$title\"/>\n                </title>\n                <!-- <xsl:call-template name=\"svg_ie_workaround\"/> -->\n                <xsl:call-template name=\"css\"/>\n                <meta http-equiv=\"Content-Type\" content=\"application/xhtml+xml; charset=UTF-8\"/>\n            </head>\n            <body>\n                <h1>\n                    <xsl:value-of select=\"$title\"/>\n                </h1>\n                <div class=\"doc\">\n                    <ul>\n                        <xsl:if test=\"response/lst[@name='index']\">\n                            <li>\n                                <a href=\"#index\">Index Statistics</a>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='fields']\">\n                            <li>\n                                <a href=\"#fields\">Field Statistics</a>\n                            </li>\n                            <li>\n                                <ul>\n                                    <xsl:for-each select=\"response/lst[@name='fields']/lst\">\n                                        <li>\n                                            <a href=\"#{@name}\">\n                                                <xsl:value-of select=\"@name\"/>\n                                            </a>\n                                        </li>\n                                    </xsl:for-each>\n                                </ul>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='doc']\">\n                            <li>\n                                <a href=\"#doc\">Document statistics</a>\n                            </li>\n                        </xsl:if>\n                    </ul>\n                </div>\n                <xsl:if test=\"response/lst[@name='index']\">\n                    <h2><a name=\"index\"/>Index statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='index']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='fields']\">\n                    <h2><a name=\"fields\"/>Field statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='fields']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='doc']\">\n                    <h2><a name=\"doc\"/>Document statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='doc']\"/>\n                </xsl:if>\n            </body>\n        </html>\n    </xsl:template>\n\n    <xsl:template match=\"lst\">\n        <xsl:if test=\"parent::lst\">\n            <tr>\n                <td colspan=\"2\">\n                    <div class=\"doc\">\n                        <xsl:call-template name=\"list\"/>\n                    </div>\n                </td>\n            </tr>\n        </xsl:if>\n        <xsl:if test=\"not(parent::lst)\">\n            <div class=\"doc\">\n                <xsl:call-template name=\"list\"/>\n            </div>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"list\">\n        <xsl:if test=\"count(child::*)>0\">\n            <table>\n                <thead>\n                    <tr>\n                        <th colspan=\"2\">\n                            <p>\n                                <a name=\"{@name}\"/>\n                            </p>\n                            <xsl:value-of select=\"@name\"/>\n                        </th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <xsl:choose>\n                        <xsl:when\n                            test=\"@name='histogram' and not(system-property('xsl:vendor')='Microsoft')\">\n                            <tr>\n                                <td colspan=\"2\">\n                                    <xsl:call-template name=\"histogram\"/>\n                                </td>\n                            </tr>\n                        </xsl:when>\n                        <xsl:otherwise>\n                            <xsl:apply-templates/>\n                        </xsl:otherwise>\n                    </xsl:choose>\n                </tbody>\n            </table>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"histogram\">\n        <div class=\"doc\">\n            <xsl:call-template name=\"barchart\">\n                <xsl:with-param name=\"xoffset\">5</xsl:with-param>\n                <xsl:with-param name=\"yoffset\">5</xsl:with-param>\n                <xsl:with-param name=\"iwidth\">800</xsl:with-param>\n                <xsl:with-param name=\"iheight\">600</xsl:with-param>\n                <xsl:with-param name=\"fill\">blue</xsl:with-param>\n            </xsl:call-template>\n        </div>\n    </xsl:template>\n\n    <xsl:template name=\"barchart\">\n        <xsl:param name=\"xoffset\"/>\n        <xsl:param name=\"yoffset\"/>\n        <xsl:param name=\"iwidth\"/>\n        <xsl:param name=\"iheight\"/>\n        <xsl:param name=\"fill\"/>\n        <svg:svg viewBox=\"0 0 {$iwidth} {$iheight}\">\n            <xsl:if test=\"system-property('xsl:vendor')='Opera' or system-property('xsl:vendor')='libxslt'\">\n                <xsl:attribute name=\"width\"><xsl:value-of select=\"$iwidth\"/></xsl:attribute>\n                <xsl:attribute name=\"height\"><xsl:value-of select=\"$iwidth\"/></xsl:attribute>\n            </xsl:if>\n            <xsl:variable name=\"x\" select=\"$xoffset + 5\"/>\n            <xsl:variable name=\"y\" select=\"$yoffset + 5\"/>\n            <xsl:variable name=\"width\" select=\"$iwidth - 10\"/>\n            <xsl:variable name=\"height\" select=\"$iheight - 30\"/>\n            <xsl:variable name=\"max\">\n                <xsl:for-each select=\"int\">\n                    <xsl:sort data-type=\"number\" order=\"descending\"/>\n                    <xsl:if test=\"position()=1\">\n                        <xsl:value-of select=\".\"/>\n                    </xsl:if>\n                </xsl:for-each>\n            </xsl:variable>\n            <xsl:variable name=\"yRatio\" select=\"$height div $max\"/>\n            <xsl:variable name=\"xRatio\" select=\"$width div count(int)\"/>\n            <svg:g>\n                <xsl:for-each select=\"int\">\n                    <svg:rect stroke=\"none\" x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio}\"\n                        y=\"{($y + $height) - number(.) * $yRatio}\" width=\"{0.8 * $xRatio}\"\n                        height=\"{number(.) * $yRatio}\" fill=\"{$fill}\"/>\n                    <xsl:variable name=\"yboost\">\n                        <xsl:choose>\n                            <xsl:when\n                                test=\"($y + $height) - number(.) * $yRatio +40 &gt; $iheight\"\n                                >-25</xsl:when>\n                            <xsl:otherwise>0</xsl:otherwise>\n                        </xsl:choose>\n                    </xsl:variable>\n                    <svg:text\n                        x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio + (($xRatio * 0.8) div 2)}\"\n                        y=\"{($y + $height) - number(.) * $yRatio +20 + number($yboost)}\"\n                        text-anchor=\"middle\" style=\"fill: red; font-size: 8px;\">\n                        <xsl:value-of select=\".\"/>\n                    </svg:text>\n                    <svg:text\n                        x=\"{$x + (position() - 1) * $xRatio + 0.1 * $xRatio + (($xRatio * 0.8) div 2)}\"\n                        y=\"{$y + $height + 20}\" text-anchor=\"middle\" style=\"fill: black; font-size: 8px;\">\n                        <xsl:value-of select=\"@name\"/>\n                    </svg:text>\n                </xsl:for-each>\n            </svg:g>\n        </svg:svg>\n    </xsl:template>\n\n    <xsl:template name=\"keyvalue\">\n        <xsl:choose>\n            <xsl:when test=\"@name\">\n                <tr>\n                    <td class=\"name\">\n                        <xsl:value-of select=\"@name\"/>\n                    </td>\n                    <td class=\"value\">\n                        <xsl:value-of select=\".\"/>\n                    </td>\n                </tr>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:value-of select=\".\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template match=\"int|bool|long|float|double|uuid|date\">\n        <xsl:call-template name=\"keyvalue\"/>\n    </xsl:template>\n\n    <xsl:template match=\"arr\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <ul>\n                    <xsl:for-each select=\"child::*\">\n                        <li>\n                            <xsl:apply-templates/>\n                        </li>\n                    </xsl:for-each>\n                </ul>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template match=\"str\">\n        <xsl:choose>\n            <xsl:when test=\"@name='schema' or @name='index' or @name='flags'\">\n                <xsl:call-template name=\"schema\"/>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:call-template name=\"keyvalue\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template name=\"schema\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <xsl:if test=\"contains(.,'unstored')\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n                <xsl:if test=\"not(contains(.,'unstored'))\">\n                    <xsl:call-template name=\"infochar2string\">\n                        <xsl:with-param name=\"charList\">\n                            <xsl:value-of select=\".\"/>\n                        </xsl:with-param>\n                    </xsl:call-template>\n                </xsl:if>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template name=\"infochar2string\">\n        <xsl:param name=\"i\">1</xsl:param>\n        <xsl:param name=\"charList\"/>\n\n        <xsl:variable name=\"char\">\n            <xsl:value-of select=\"substring($charList,$i,1)\"/>\n        </xsl:variable>\n        <xsl:choose>\n            <xsl:when test=\"$char='I'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='I']\"/> - </xsl:when>\n            <xsl:when test=\"$char='T'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='T']\"/> - </xsl:when>\n            <xsl:when test=\"$char='S'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='S']\"/> - </xsl:when>\n            <xsl:when test=\"$char='M'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='M']\"/> - </xsl:when>\n            <xsl:when test=\"$char='V'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='V']\"/> - </xsl:when>\n            <xsl:when test=\"$char='o'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='o']\"/> - </xsl:when>\n            <xsl:when test=\"$char='p'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='p']\"/> - </xsl:when>\n            <xsl:when test=\"$char='O'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='O']\"/> - </xsl:when>\n            <xsl:when test=\"$char='L'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='L']\"/> - </xsl:when>\n            <xsl:when test=\"$char='B'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='B']\"/> - </xsl:when>\n            <xsl:when test=\"$char='C'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='C']\"/> - </xsl:when>\n            <xsl:when test=\"$char='f'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='f']\"/> - </xsl:when>\n            <xsl:when test=\"$char='l'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='l']\"/> -\n            </xsl:when>\n        </xsl:choose>\n\n        <xsl:if test=\"not($i>=string-length($charList))\">\n            <xsl:call-template name=\"infochar2string\">\n                <xsl:with-param name=\"i\">\n                    <xsl:value-of select=\"$i+1\"/>\n                </xsl:with-param>\n                <xsl:with-param name=\"charList\">\n                    <xsl:value-of select=\"$charList\"/>\n                </xsl:with-param>\n            </xsl:call-template>\n        </xsl:if>\n    </xsl:template>\n    <xsl:template name=\"css\">\n        <style type=\"text/css\">\n            <![CDATA[\n            body { font-family: \"Lucida Grande\", sans-serif }\n            td.name {font-style: italic; font-size:80%; }\n            th { font-style: italic; font-size: 80%; background-color: lightgrey; }\n            td { vertical-align: top; }\n            ul { margin: 0px; margin-left: 1em; padding: 0px; }\n            table { width: 100%; border-collapse: collapse; }\n            .note { font-size:80%; }\n            .doc { margin: 0.5em; border: solid grey 1px; }\n            .exp { display: none; font-family: monospace; white-space: pre; }\n            ]]>\n        </style>\n    </xsl:template>\n    <xsl:template name=\"svg_ie_workaround\">\n        <xsl:if test=\"system-property('xsl:vendor')='Microsoft'\">\n            <object id=\"AdobeSVG\" classid=\"clsid:78156a80-c6a1-4bbf-8e6a-3cd390eeb4e2\"/>\n            <xsl:processing-instruction name=\"import\">namespace=\"svg\"\n            implementation=\"#AdobeSVG\"</xsl:processing-instruction>\n        </xsl:if>\n    </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/data-config.xml",
    "content": "<dataConfig>\n  <document>\n      <!--\n        Note - In order to index attachments, set processAttachement=\"true\" and drop\n        Tika and its dependencies to example-DIH/solr/mail/lib directory\n       -->\n      <entity processor=\"MailEntityProcessor\" user=\"email@gmail.com\"\n            password=\"password\" host=\"imap.gmail.com\" protocol=\"imaps\"\n            fetchMailsSince=\"2009-09-20 00:00:00\" batchSize=\"20\" folders=\"inbox\" processAttachement=\"false\"\n            name=\"sample_entity\"/>\n  </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default)\n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n\n NOTE: this schema includes many optional features and should not\n be used for benchmarking.\n-->\n\n<schema name=\"example\" version=\"1.2\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.2\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default\n       1.2: omitTf attribute introduced, true by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.\n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->\n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime\n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n\n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!--\n          Numeric field types that manipulate the value into trie encoded strings which are not\n          human readable in the internal form. Range searches on such fields use the fast Trie Range Queries\n          which are much faster than range searches on the SortableNumberField types.\n\n          For the fast range search to work, trie fields must be indexed. Trie fields are <b>not</b> sortable\n          in numerical order. Also, they cannot be used in function queries. If one needs sorting as well as\n          fast range search, one should create a copy field specifically for sorting. Same workaround is\n          suggested for using trie fields in function queries as well.\n\n          For each number being added to this field, multiple terms are generated as per the algorithm described in\n          org.apache.lucene.search.trie package description. The possible number of terms depend on the precisionStep\n          attribute and increase dramatically with higher precision steps (factor 2**precisionStep). The default\n          value of precisionStep is 8.\n\n          Note that if you use a precisionStep of 32 for int/float and 64 for long/double, then multiple terms\n          will not be generated, range search will be no faster than any other number field,\n          but sorting will be possible.\n     -->\n    <fieldType name=\"tint\" class=\"solr.TrieField\" type=\"integer\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tfloat\" class=\"solr.TrieField\" type=\"float\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tlong\" class=\"solr.TrieField\" type=\"long\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n    <fieldType name=\"tdouble\" class=\"solr.TrieField\" type=\"double\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n    <fieldType name=\"tdouble4\" class=\"solr.TrieField\" type=\"double\" precisionStep=\"4\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n    <!--\n          This date field manipulates the value into a trie encoded strings for fast range searches. They follow the\n          same format and semantics as the normal DateField and support the date math syntax except that they are\n          not sortable and cannot be used in function queries.\n    -->\n    <fieldType name=\"tdate\" class=\"solr.TrieField\" type=\"date\" omitNorms=\"true\" positionIncrementGap=\"0\" indexed=\"true\" stored=\"false\" />\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting\n         purposes.  The ordering is generated based on the field name\n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.\n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n          add enablePositionIncrements=true in both the index and query\n          analyzers to leave a 'gap' for more accurate phrase queries.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"stopwords.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"stopwords.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!--\n     Setup simple analysis for spell checking\n     -->\n    <fieldType name=\"textSpell\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- charFilter + \"CharStream aware\" WhitespaceTokenizer  -->\n    <!--\n    <fieldType name=\"textCharNorm\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <charFilter class=\"solr.MappingCharFilterFactory\" mapping=\"mapping-ISOLatin1Accent.txt\"/>\n        <tokenizer class=\"solr.CharStreamAwareWhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n    -->\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string,\n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n\n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n\n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <fieldtype name=\"phonetic\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.DoubleMetaphoneFilterFactory\" inject=\"false\"/>\n      </analyzer>\n    </fieldtype>\n\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to\n         them will be ignored outright\n     -->\n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" />\n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for\n       best performance.\n     termPositions: Store position information with the term vector.  This will increase storage costs.\n     termOffsets: Store offset information with the term vector. This will increase storage costs.\n   -->\n\n   <field name=\"messageId\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" omitNorms=\"true\" />\n   <field name=\"subject\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" />\n   <field name=\"from\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"sentDate\" type=\"date\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"xMailer\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n\n   <field name=\"allTo\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"flags\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"content\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"attachment\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n   <field name=\"attachmentNames\" type=\"string\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n\n   <field name=\"catchAllField\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\" multiValued=\"true\"/>\n\n </fields>\n\n  <copyField source=\"content\" dest=\"catchAllField\"/>\n  <copyField source=\"attachmentNames\" dest=\"catchAllField\"/>\n  <copyField source=\"attachment\" dest=\"catchAllField\"/>\n  <copyField source=\"subject\" dest=\"catchAllField\"/>\n  <copyField source=\"allTo\" dest=\"catchAllField\"/>\n\n  <!-- The unique key, Note that some mail servers may not send the message-id or they may send duplicate ones -->\n  <uniqueKey>messageId</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>catchAllField</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!--\n      NOTE: In order to reduce Jar duplication, dataimporthandler-extras \n      explicitly requires the deps from contrib/extraction.\n      See https://issues.apache.org/jira/browse/SOLR-3848\n  -->\n  <lib dir=\"../../../../contrib/extraction/lib\" />\n\n  <lib dir=\"../../../../contrib/dataimporthandler/lib/\" regex=\".*jar$\" />\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n  \n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!--\tEnables JMX if and only if an existing MBeanServer is found, use\n  \t\tthis if you want to configure JMX through JVM parameters. Remove\n  \t\tthis to disable exposing Solr configuration and statistics to JMX.\n\n\t\tIf you want to connect to a particular server, specify the agentId\n\t\te.g. <jmx agentId=\"myAgent\" />\n\n\t\tIf you want to start a new MBeanServer, specify the serviceUrl\n\t\te.g <jmx serviceUrl=\"service:jmx:rmi:///jndi/rmi://localhost:9999/solr\" />\n\n\t\tFor more details see http://wiki.apache.org/solr/SolrJmx\n  -->\n  <jmx />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit>\n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime>\n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies\n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n\n    <!-- There are two implementations of cache available for Solr,\n         LRUCache, based on a synchronized LinkedHashMap, and\n         FastLRUCache, based on a ConcurrentHashMap.  FastLRUCache has faster gets\n         and slower puts in single threaded operation and thus is generally faster\n         than LRUCache when the hit ratio of the cache is high (> 75%), and may be\n         faster under other scenarios on multi-cpu systems. -->\n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation LRUCache or FastLRUCache\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.FastLRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"128\"/>\n\n    <!-- Cache used to hold field values that are quickly accessible\n         by document id.  The fieldValueCache is created by default\n         even if not configured here.\n      <fieldValueCache\n        class=\"solr.FastLRUCache\"\n        size=\"512\"\n        autowarmCount=\"128\"\n        showItems=\"32\"\n      />\n    -->\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"32\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n\n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">fast_warm</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static firstSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>2</maxWarmingSearchers>\n\n  </query>\n\n  <!--\n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"true\" multipartUploadLimitInKB=\"2048000\" formdataUploadLimitInKB=\"2048\" />\n\n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n\n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <!-- <httpCaching never304=\"true\"> -->\n    <httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\">\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n\n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n\n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n\n\n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the\n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.SearchHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!--\n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n<!-- Please refer to http://wiki.apache.org/solr/SolrReplication for details on configuring replication -->\n<!--Master config-->\n<!--\n<requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" >\n    <lst name=\"master\">\n        <str name=\"replicateAfter\">commit</str>\n         <str name=\"confFiles\">schema.xml,stopwords.txt</str>\n    </lst>\n</requestHandler>\n-->\n<!-- Slave config-->\n<!--\n<requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\">\n    <lst name=\"slave\">\n        <str name=\"masterUrl\">http://localhost:8983/solr/replication</str>\n        <str name=\"pollInterval\">00:00:60</str>\n     </lst>\n</requestHandler>\n-->\n\n  <!-- DisMaxRequestHandler allows easy searching across multiple fields\n       for simple user-entered phrases.  It's implementation is now\n       just the standard SearchHandler with a default query parser\n       of \"dismax\".\n       see http://wiki.apache.org/solr/DisMaxRequestHandler\n   -->\n  <requestHandler name=\"dismax\" class=\"solr.SearchHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"defType\">dismax</str>\n     <str name=\"echoParams\">explicit</str>\n     <float name=\"tie\">0.01</float>\n     <str name=\"qf\">\n        text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n     </str>\n     <str name=\"pf\">\n        text^0.2 features^1.1 name^1.5 manu^1.4 manu_exact^1.9\n     </str>\n     <str name=\"bf\">\n        ord(popularity)^0.5 recip(rord(price),1,1000,1000)^0.3\n     </str>\n     <str name=\"fl\">\n        id,name,price,score\n     </str>\n     <str name=\"mm\">\n        2&lt;-1 5&lt;-2 6&lt;90%\n     </str>\n     <int name=\"ps\">100</int>\n     <str name=\"q.alt\">*:*</str>\n     <!-- example highlighter config, enable per-query with hl=true -->\n     <str name=\"hl.fl\">text features name</str>\n     <!-- for this field, we want no fragmenting, just highlighting -->\n     <str name=\"f.name.hl.fragsize\">0</str>\n     <!-- instructs Solr to return the field itself if no query terms are\n          found -->\n     <str name=\"f.name.hl.alternateField\">name</str>\n     <str name=\"f.text.hl.fragmenter\">regex</str> <!-- defined below -->\n    </lst>\n  </requestHandler>\n\n  <!-- Note how you can register the same handler multiple times with\n       different names (and different init parameters)\n    -->\n  <requestHandler name=\"partitioned\" class=\"solr.SearchHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"defType\">dismax</str>\n     <str name=\"echoParams\">explicit</str>\n     <str name=\"qf\">text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0</str>\n     <str name=\"mm\">2&lt;-1 5&lt;-2 6&lt;90%</str>\n     <!-- This is an example of using Date Math to specify a constantly\n          moving date range in a config...\n       -->\n     <str name=\"bq\">incubationdate_dt:[* TO NOW/DAY-1MONTH]^2.2</str>\n    </lst>\n    <!-- In addition to defaults, \"appends\" params can be specified\n         to identify values which should be appended to the list of\n         multi-val params from the query (or the existing \"defaults\").\n\n         In this example, the param \"fq=instock:true\" will be appended to\n         any query time fq params the user may specify, as a mechanism for\n         partitioning the index, independent of any user selected filtering\n         that may also be desired (perhaps as a result of faceted searching).\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"appends\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <lst name=\"appends\">\n      <str name=\"fq\">inStock:true</str>\n    </lst>\n    <!-- \"invariants\" are a way of letting the Solr maintainer lock down\n         the options available to Solr clients.  Any params values\n         specified here are used regardless of what values may be specified\n         in either the query, the \"defaults\", or the \"appends\" params.\n\n         In this example, the facet.field and facet.query params are fixed,\n         limiting the facets clients can use.  Faceting is not turned on by\n         default - but if the client does specify facet=true in the request,\n         these are the only facets they will be able to see counts for;\n         regardless of what other facet.field or facet.query params they\n         may specify.\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"invariants\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <lst name=\"invariants\">\n      <str name=\"facet.field\">cat</str>\n      <str name=\"facet.field\">manu_exact</str>\n      <str name=\"facet.query\">price:[* TO 500]</str>\n      <str name=\"facet.query\">price:[500 TO *]</str>\n    </lst>\n  </requestHandler>\n\n\n  <!--\n   Search components are registered to SolrCore and used by Search Handlers\n\n   By default, the following components are avaliable:\n\n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"stats\"     class=\"org.apache.solr.handler.component.StatsComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n\n   Default configuration in a requestHandler would look like:\n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>stats</str>\n      <str>debug</str>\n    </arr>\n\n    If you register a searchComponent to one of the standard names, that will be used instead.\n    To insert components before or after the 'standard' components, use:\n\n    <arr name=\"first-components\">\n      <str>myFirstComponentName</str>\n    </arr>\n\n    <arr name=\"last-components\">\n      <str>myLastComponentName</str>\n    </arr>\n  -->\n\n   <!-- The spell check component can return a list of alternative spelling\n  suggestions.  -->\n  <searchComponent name=\"spellcheck\" class=\"solr.SpellCheckComponent\">\n\n    <str name=\"queryAnalyzerFieldType\">textSpell</str>\n\n    <lst name=\"spellchecker\">\n      <str name=\"name\">default</str>\n      <str name=\"field\">spell</str>\n      <str name=\"spellcheckIndexDir\">./spellchecker1</str>\n\n    </lst>\n    <lst name=\"spellchecker\">\n      <str name=\"name\">jarowinkler</str>\n      <str name=\"field\">spell</str>\n      <!-- Use a different Distance Measure -->\n      <str name=\"distanceMeasure\">org.apache.lucene.search.spell.JaroWinklerDistance</str>\n      <str name=\"spellcheckIndexDir\">./spellchecker2</str>\n\n    </lst>\n\n    <lst name=\"spellchecker\">\n      <str name=\"classname\">solr.FileBasedSpellChecker</str>\n      <str name=\"name\">file</str>\n      <str name=\"sourceLocation\">spellings.txt</str>\n      <str name=\"characterEncoding\">UTF-8</str>\n      <str name=\"spellcheckIndexDir\">./spellcheckerFile</str>\n    </lst>\n  </searchComponent>\n\n  <!-- A request handler utilizing the spellcheck component.\n  ################################################################################################\n  NOTE: This is purely as an example.  The whole purpose of the SpellCheckComponent is to hook it into\n  the request handler that handles (i.e. the standard or dismax SearchHandler)\n  queries such that a separate request is not needed to get suggestions.\n\n  IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM!\n  ################################################################################################\n  -->\n  <requestHandler name=\"/spellCheckCompRH\" class=\"solr.SearchHandler\">\n    <lst name=\"defaults\">\n      <!-- omp = Only More Popular -->\n      <str name=\"spellcheck.onlyMorePopular\">false</str>\n      <!-- exr = Extended Results -->\n      <str name=\"spellcheck.extendedResults\">false</str>\n      <!--  The number of suggestions to return -->\n      <str name=\"spellcheck.count\">1</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>spellcheck</str>\n    </arr>\n  </requestHandler>\n\n  <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n      <str name=\"config\">data-config.xml</str>\n    </lst>\n  </requestHandler>\n\n  <searchComponent name=\"tvComponent\" class=\"org.apache.solr.handler.component.TermVectorComponent\"/>\n  <!-- A Req Handler for working with the tvComponent.  This is purely as an example.\n  You will likely want to add the component to your already specified request handlers. -->\n  <requestHandler name=\"tvrh\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <bool name=\"tv\">true</bool>\n    </lst>\n    <arr name=\"last-components\">\n      <str>tvComponent</str>\n    </arr>\n  </requestHandler>\n\n  <searchComponent name=\"termsComp\" class=\"org.apache.solr.handler.component.TermsComponent\"/>\n\n  <requestHandler name=\"/autoSuggest\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <arr name=\"components\">\n      <str>termsComp</str>\n    </arr>\n  </requestHandler>\n\n\n  <!-- Update request handler.\n\n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in\n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n\n       To enable solr1.1 behavior, remove the /update handler or change its path\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!--\n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding\n   this single handler is equivalent to registering:\n\n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n\n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str>\n     <str name=\"hidden\">anotherfile.txt</str>\n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n\n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n\n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float>\n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n    </lst>\n   </fragmenter>\n\n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n\n  <!-- An example dedup update processor that creates the \"id\" field on the fly\n       based on the hash code of some other fields.  This example has overwriteDupes\n       set to false since we are using the id field as the signatureField and Solr\n       will maintain uniqueness based on that anyway. -->\n  <!--\n  <updateRequestProcessorChain name=\"dedupe\">\n    <processor class=\"org.apache.solr.update.processor.SignatureUpdateProcessorFactory\">\n      <bool name=\"enabled\">true</bool>\n      <str name=\"signatureField\">id</str>\n      <bool name=\"overwriteDupes\">false</bool>\n      <str name=\"fields\">name,features,cat</str>\n      <str name=\"signatureClass\">org.apache.solr.update.processor.Lookup3Signature</str>\n    </processor>\n    <processor class=\"solr.LogUpdateProcessorFactory\" />\n    <processor class=\"solr.RunUpdateProcessorFactory\" />\n  </updateRequestProcessorChain>\n  -->\n\n\n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified\n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.\n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter>\n\n\n  <!-- example of registering a query parser\n  <queryParser name=\"lucene\" class=\"org.apache.solr.search.LuceneQParserPlugin\"/>\n  -->\n\n  <!-- example of registering a custom function parser\n  <valueSourceParser name=\"myfunc\" class=\"com.mycompany.MyValueSourceParser\" />\n  -->\n\n  <!-- config for the admin interface -->\n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/mail/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/rss-data-config.xml",
    "content": "<dataConfig>\n    <dataSource type=\"URLDataSource\" />\n    <document>\n        <entity name=\"slashdot\"\n                pk=\"link\"\n                url=\"http://rss.slashdot.org/Slashdot/slashdot\"\n                processor=\"XPathEntityProcessor\"\n                forEach=\"/rss/channel | /rss/item\"\n                transformer=\"DateFormatTransformer\">\n\t\t\t\t\n            <field column=\"source\" xpath=\"/rss/channel/title\" commonField=\"true\" />\n            <field column=\"source-link\" xpath=\"/rss/channel/link\" commonField=\"true\" />\n            <field column=\"subject\" xpath=\"/rss/channel/subject\" commonField=\"true\" />\n\t\t\t\n            <field column=\"title\" xpath=\"/rss/item/title\" />\n            <field column=\"link\" xpath=\"/rss/item/link\" />\n            <field column=\"description\" xpath=\"/rss/item/description\" />\n            <field column=\"creator\" xpath=\"/rss/item/creator\" />\n            <field column=\"item-subject\" xpath=\"/rss/item/subject\" />\n            <field column=\"date\" xpath=\"/rss/item/date\" dateTimeFormat=\"yyyy-MM-dd'T'HH:mm:ss\" />\n            <field column=\"slash-department\" xpath=\"/rss/item/department\" />\n            <field column=\"slash-section\" xpath=\"/rss/item/section\" />\n            <field column=\"slash-comments\" xpath=\"/rss/item/comments\" />\n        </entity>\n    </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"rss\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n    <fieldtype name=\"html\" stored=\"true\" indexed=\"true\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n        <charFilter class=\"solr.HTMLStripCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <charFilter class=\"solr.HTMLStripCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldtype>\n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n\t<field name=\"source\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"source-link\" type=\"string\" indexed=\"false\" stored=\"true\" />\n\t\n\t<field name=\"subject\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"title\" type=\"text\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"link\" type=\"string\" indexed=\"true\" stored=\"true\" multiValued=\"false\" />\n\t<field name=\"description\" type=\"html\" indexed=\"true\" stored=\"true\" />\n\t<field name=\"creator\" type=\"string\" indexed=\"false\" stored=\"true\" />\n\t<field name=\"item-subject\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"date\" type=\"date\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-department\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-section\" type=\"string\" indexed=\"true\" stored=\"false\" />\n\t<field name=\"slash-comments\" type=\"sint\" indexed=\"true\" stored=\"true\" />\n\t\n\t<field name=\"all_text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\" />\n\t<copyField source=\"source\" dest=\"all_text\" />\n\t<copyField source=\"subject\" dest=\"all_text\" />\n\t<copyField source=\"title\" dest=\"all_text\" />\n\t<copyField source=\"description\" dest=\"all_text\" />\n\t<copyField source=\"creator\" dest=\"all_text\" />\n\t<copyField source=\"item-subject\" dest=\"all_text\" />\n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>link</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>all_text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\"\n   \tclass=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n   \t<lst name=\"defaults\">\n   \t\t<str name=\"config\">rss-data-config.xml</str>\n   \t</lst>\n   </requestHandler>  \n  \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter-->\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/rss/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n-->\n\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"solr\" version=\"1.1\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"textTight\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back refrences to portions of the orriginal\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             infomation on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <!-- Valid attributes for fields:\n     name: mandatory - the name for the field\n     type: mandatory - the name of a previously defined type from the <types> section\n     indexed: true if this field should be indexed (searchable or sortable)\n     stored: true if this field should be retrievable\n     multiValued: true if this field may contain multiple values per document\n     omitNorms: (expert) set to true to omit the norms associated with\n       this field (this disables length normalization and index-time\n       boosting for the field, and saves some memory).  Only full-text\n       fields or fields that need an index-time boost need norms.\n     termVectors: [false] set to true to store the term vector for a given field.\n       When using MoreLikeThis, fields used for similarity should be stored for \n       best performance.\n   -->\n\n   <field name=\"id\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\" multiValued=\"false\" /> \n   <field name=\"sku\" type=\"textTight\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"name\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"nameSort\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"alphaNameSort\" type=\"alphaOnlySort\" indexed=\"true\" stored=\"false\"/>\n   <field name=\"manu\" type=\"text\" indexed=\"true\" stored=\"true\" omitNorms=\"true\"/>\n   <field name=\"cat\" type=\"text_ws\" indexed=\"true\" stored=\"true\" multiValued=\"true\" omitNorms=\"true\" termVectors=\"true\" />\n   <field name=\"features\" type=\"text\" indexed=\"true\" stored=\"true\" multiValued=\"true\"/>\n   <field name=\"includes\" type=\"text\" indexed=\"true\" stored=\"true\"/>\n\n   <field name=\"weight\" type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"price\"  type=\"sfloat\" indexed=\"true\" stored=\"true\"/>\n   <!-- \"default\" values can be specified for fields, indicating which\n        value should be used if no value is specified when adding a document.\n     -->\n   <field name=\"popularity\" type=\"sint\" indexed=\"true\" stored=\"true\" default=\"0\"/>\n   <field name=\"inStock\" type=\"boolean\" indexed=\"true\" stored=\"true\"/>\n\n   <!-- Some sample docs exists solely to demonstrate the spellchecker\n        functionality, this is the only field they container.\n        Typically you might build the spellchecker of \"catchall\" type field\n        containing all of the text in each document\n     -->\n   <field name=\"word\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n\n   \n   <!-- catchall field, containing all other searchable text fields (implemented\n        via copyField further on in this schema  -->\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"false\" multiValued=\"true\"/>\n\n   <!-- non-tokenized version of manufacturer to make it easier to sort or group\n        results by manufacturer.  copied from \"manu\" via copyField -->\n   <field name=\"manu_exact\" type=\"string\" indexed=\"true\" stored=\"false\"/>\n\n   <!-- Dynamic field definitions.  If a field name is not found, dynamicFields\n        will be used if the name matches any of the patterns.\n        RESTRICTION: the glob-like pattern in the name attribute must have\n        a \"*\" only at the start or the end.\n        EXAMPLE:  name=\"*_i\" will match any field ending in _i (like myid_i, z_i)\n        Longer patterns will be matched first.  if equal size patterns\n        both match, the first appearing in the schema will be used.  -->\n   <dynamicField name=\"*_i\"  type=\"sint\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_s\"  type=\"string\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_l\"  type=\"slong\"   indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_t\"  type=\"text\"    indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_b\"  type=\"boolean\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_f\"  type=\"sfloat\"  indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_d\"  type=\"sdouble\" indexed=\"true\"  stored=\"true\"/>\n   <dynamicField name=\"*_dt\" type=\"date\"    indexed=\"true\"  stored=\"true\"/>\n\n   <dynamicField name=\"random*\" type=\"random\" />\n\n   <!-- uncomment the following to ignore any fields that don't already match an existing \n        field name or dynamic field, rather than reporting them as an error. \n        alternately, change the type=\"ignored\" to some other type e.g. \"text\" if you want \n        unknown fields indexed and/or stored by default --> \n   <!--dynamicField name=\"*\" type=\"ignored\" multiValued=\"true\" /-->\n   \n </fields>\n\n <!-- Field to use to determine and enforce document uniqueness. \n      Unless this field is marked with required=\"false\", it will be a required field\n   -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n  <!-- copyField commands copy one field to another at the time a document\n        is added to the index.  It's used either to index the same field differently,\n        or to add multiple fields to the same field for easier/faster searching.  -->\n   <copyField source=\"id\" dest=\"sku\"/>\n\n   <copyField source=\"cat\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"text\"/>\n   <copyField source=\"name\" dest=\"nameSort\"/>\n   <copyField source=\"name\" dest=\"alphaNameSort\"/>\n   <copyField source=\"manu\" dest=\"text\"/>\n   <copyField source=\"features\" dest=\"text\"/>\n   <copyField source=\"includes\" dest=\"text\"/>\n\n   <copyField source=\"manu\" dest=\"manu_exact\"/>\n\n <!-- Similarity is the scoring routine for each document vs. a query.\n      A custom similarity may be specified here, but the default is fine\n      for most applications.  -->\n <!-- <similarity class=\"org.apache.lucene.search.similarities.DefaultSimilarity\"/> -->\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/solr-data-config.xml",
    "content": "<!--\n  Licensed to the Apache Software Foundation (ASF) under one or more\n  contributor license agreements.  See the NOTICE file distributed with\n  this work for additional information regarding copyright ownership.\n  The ASF licenses this file to You under the Apache License, Version 2.0\n  (the \"License\"); you may not use this file except in compliance with\n  the License.  You may obtain a copy of the License at\n\n      http://www.apache.org/licenses/LICENSE-2.0\n\n  Unless required by applicable law or agreed to in writing, software\n  distributed under the License is distributed on an \"AS IS\" BASIS,\n  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  See the License for the specific language governing permissions and\n  limitations under the License.\n  -->\n\n<dataConfig>\n  <document>\n    <entity name=\"sep\" processor=\"SolrEntityProcessor\" url=\"http://127.0.0.1:8983/solr/db \" query=\"*:*\"/>\n  </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <jmx />\n\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n    <!-- Perform a <commit/> automatically under certain conditions:\n\n         maxDocs - number of updates since last commit is greater than this\n         maxTime - oldest uncommited update (in ms) is this long ago\n    <autoCommit> \n      <maxDocs>10000</maxDocs>\n      <maxTime>1000</maxTime> \n    </autoCommit>\n    -->\n\n    <!-- The RunExecutableListener executes an external command.\n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. default=\".\"\n         wait - the calling thread waits until the executable returns. default=\"true\"\n         args - the arguments to pass to the program.  default=nothing\n         env - environment variables to set.  default=nothing\n      -->\n    <!-- A postCommit event is fired after every commit or optimize command\n    <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">solr/bin/snapshooter</str>\n      <str name=\"dir\">.</str>\n      <bool name=\"wait\">true</bool>\n      <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n      <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n    </listener>\n    -->\n    <!-- A postOptimize event is fired only after every optimize command, useful\n         in conjunction with index distribution to only distribute optimized indicies \n    <listener event=\"postOptimize\" class=\"solr.RunExecutableListener\">\n      <str name=\"exe\">snapshooter</str>\n      <str name=\"dir\">solr/bin</str>\n      <bool name=\"wait\">true</bool>\n    </listener>\n    -->\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n\n  <!-- SpellCheckerRequestHandler takes in a word (or several words) as the\n       value of the \"q\" parameter and returns a list of alternative spelling\n       suggestions.  If invoked with a ...&cmd=rebuild, it will rebuild the\n       spellchecker index.\n  -->\n  <requestHandler name=\"spellchecker\" class=\"solr.SpellCheckerRequestHandler\" startup=\"lazy\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <int name=\"suggestionCount\">1</int>\n       <float name=\"accuracy\">0.5</float>\n     </lst>\n     \n     <!-- Main init params for handler -->\n     \n     <!-- The directory where your SpellChecker Index should live.   -->\n     <!-- May be absolute, or relative to the Solr \"dataDir\" directory. -->\n     <!-- If this option is not specified, a RAM directory will be used -->\n     <str name=\"spellcheckerIndexDir\">spell</str>\n     \n     <!-- the field in your schema that you want to be able to build -->\n     <!-- your spell index on. This should be a field that uses a very -->\n     <!-- simple FieldType without a lot of Analysis (ie: string) -->\n     <str name=\"termSourceField\">word</str>\n     \n   </requestHandler>\n\n   <requestHandler name=\"/mlt\" class=\"solr.MoreLikeThisHandler\">\n     <lst name=\"defaults\">\n       <str name=\"mlt.fl\">manu,cat</str>\n       <int name=\"mlt.mindf\">1</int>\n     </lst>\n   </requestHandler>\n\n   <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n    \t<str name=\"config\">solr-data-config.xml</str>\n    </lst>\n   </requestHandler>\n\n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <searchComponent name=\"elevator\" class=\"org.apache.solr.handler.component.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n \n  <requestHandler name=\"/elevate\" class=\"org.apache.solr.handler.component.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n  \n\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n\n\n  <!-- \n   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding \n   this single handler is equivolent to registering:\n   \n  <requestHandler name=\"/admin/luke\"       class=\"org.apache.solr.handler.admin.LukeRequestHandler\" />\n  <requestHandler name=\"/admin/system\"     class=\"org.apache.solr.handler.admin.SystemInfoHandler\" />\n  <requestHandler name=\"/admin/plugins\"    class=\"org.apache.solr.handler.admin.PluginInfoHandler\" />\n  <requestHandler name=\"/admin/threads\"    class=\"org.apache.solr.handler.admin.ThreadDumpHandler\" />\n  <requestHandler name=\"/admin/properties\" class=\"org.apache.solr.handler.admin.PropertiesRequestHandler\" />\n  <requestHandler name=\"/admin/file\"       class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n  \n  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:\n  <requestHandler name=\"/admin/file\" class=\"org.apache.solr.handler.admin.ShowFileRequestHandler\" >\n    <lst name=\"invariants\">\n     <str name=\"hidden\">synonyms.txt</str> \n     <str name=\"hidden\">anotherfile.txt</str> \n    </lst>\n  </requestHandler>\n  -->\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> <!-- for all params (including the default etc) use: 'all' -->\n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <highlighting>\n   <!-- Configure the standard fragmenter -->\n   <!-- This could most likely be commented out in the \"default\" case -->\n   <fragmenter name=\"gap\" class=\"org.apache.solr.highlight.GapFragmenter\" default=\"true\">\n    <lst name=\"defaults\">\n     <int name=\"hl.fragsize\">100</int>\n    </lst>\n   </fragmenter>\n\n   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->\n   <fragmenter name=\"regex\" class=\"org.apache.solr.highlight.RegexFragmenter\">\n    <lst name=\"defaults\">\n      <!-- slightly smaller fragsizes work better because of slop -->\n      <int name=\"hl.fragsize\">70</int>\n      <!-- allow 50% slop on fragment sizes -->\n      <float name=\"hl.regex.slop\">0.5</float> \n      <!-- a basic sentence pattern -->\n      <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\\"']{20,200}</str>\n    </lst>\n   </fragmenter>\n   \n   <!-- Configure the standard formatter -->\n   <formatter name=\"html\" class=\"org.apache.solr.highlight.HtmlFormatter\" default=\"true\">\n    <lst name=\"defaults\">\n     <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n     <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n    </lst>\n   </formatter>\n  </highlighting>\n  \n  \n  <!-- queryResponseWriter plugins... query responses will be written using the\n    writer specified by the 'wt' request parameter matching the name of a registered\n    writer.\n    The \"default\" writer is the default and will be used if 'wt' is not specified \n    in the request. XMLResponseWriter will be used if nothing is specified here.\n    The json, python, and ruby writers are also available by default.\n\n    <queryResponseWriter name=\"xml\" class=\"solr.XMLResponseWriter\" default=\"true\"/>\n    <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n    <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n    <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n    <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n    <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n\n    <queryResponseWriter name=\"custom\" class=\"com.example.MyResponseWriter\"/>\n  -->\n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n   -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter> \n    \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n#Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\ns\nsuch\nt\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaa => aaaa\nbbb => bbbb1 bbbb2\nccc => cccc1,cccc2\na\\=>a => b\\=>b\na\\,a => b\\,b\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<solr sharedLib=\"lib\" persistent=\"true\">\n\t<cores adminPath=\"/admin/cores\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\">\n\t\t<core default=\"true\" instanceDir=\"db\" name=\"db\"/>\n\t\t<core default=\"false\" instanceDir=\"rss\" name=\"rss\"/>\n\t\t<core default=\"false\" instanceDir=\"mail\" name=\"mail\"/>\n\t\t<core default=\"false\" instanceDir=\"tika\" name=\"tika\"/>\n    <core default=\"false\" instanceDir=\"solr\" name=\"solr\"/>\n\t</cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/tika/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top\nof the admin page.  Uncomment this as an example to see there the content\nwill show up.\n\n<hr>\n<i>This line will appear before the first table</i>\n<tr>\n<td colspan=\"2\">\nThis row will be appended to the end of the first table\n</td>\n</tr>\n<hr>\n\n-->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/tika/conf/admin-extra.menu-bottom.html",
    "content": "<!-- admin-extra.menu-bottom.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/tika/conf/admin-extra.menu-top.html",
    "content": "<!-- admin-extra.menu-top.html -->\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/tika/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n-->\n\n<schema name=\"test\" version=\"1.2\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       Applications should change this to reflect the nature of the search collection.\n       version=\"1.1\" is Solr's version number for the schema syntax and semantics.  It should\n       not normally be changed by applications.\n       1.0: multiValued attribute did not exist, all fields are multiValued by nature\n       1.1: multiValued attribute introduced, false by default -->\n\n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in the\n       org.apache.solr.analysis package.\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.  \n       - StrField and TextField support an optional compressThreshold which\n       limits compression (if enabled in the derived fields) to values which\n       exceed a certain size (in characters).\n    -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n    <!-- The optional sortMissingLast and sortMissingFirst attributes are\n         currently supported on types that are sorted internally as strings.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n\n    <!-- numeric field types that store and index the text\n         value verbatim (and hence don't support range queries, since the\n         lexicographic ordering isn't equal to the numeric ordering) -->\n    <fieldType name=\"integer\" class=\"solr.IntField\" omitNorms=\"true\"/>\n    <fieldType name=\"long\" class=\"solr.LongField\" omitNorms=\"true\"/>\n    <fieldType name=\"float\" class=\"solr.FloatField\" omitNorms=\"true\"/>\n    <fieldType name=\"double\" class=\"solr.DoubleField\" omitNorms=\"true\"/>\n\n\n    <!-- Numeric field types that manipulate the value into\n         a string value that isn't human-readable in its internal form,\n         but with a lexicographic ordering the same as the numeric ordering,\n         so that range queries work correctly. -->\n    <fieldType name=\"sint\" class=\"solr.SortableIntField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"slong\" class=\"solr.SortableLongField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sfloat\" class=\"solr.SortableFloatField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n    <fieldType name=\"sdouble\" class=\"solr.SortableDoubleField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n      -->\n    <fieldType name=\"date\" class=\"solr.DateField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate psuedo-random orderings of your docs for sorting \n         purposes.  The ordering is generated based on the field name \n         and the version of the index, As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want differend psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the name\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of\n        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,\n        so that a query of \"wifi\" or \"wi fi\" could match a document containing \"Wi-Fi\".\n        Synonyms and stopwords are customized by external files, and stemming is enabled.\n        Duplicate tokens at the same position (which may result from Stemmed Synonyms or\n        WordDelim parts) are removed.\n        -->\n    <fieldType name=\"text\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!--<filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>-->\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!--<filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>-->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!--<filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>-->\n        <!--<filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\"/>-->\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!--<filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>-->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    <!-- since fields of this type are by default not stored or indexed, any data added to \n         them will be ignored outright \n     --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" class=\"solr.StrField\" /> \n\n </types>\n\n\n <fields>\n   <field name=\"title\" type=\"string\" indexed=\"true\" stored=\"true\"/>\n   <field name=\"author\" type=\"string\" indexed=\"true\" stored=\"true\" />\n   <field name=\"text\" type=\"text\" indexed=\"true\" stored=\"true\" />\n   \n </fields>\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>text</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/tika/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<config>\n  \n  <!--\n    Controls what version of Lucene various components of Solr adhere to. Generally, you want\n    to use the latest version to get all bug fixes and improvements. It is highly recommended \n    that you fully re-index after changing this setting as it can affect both how text is indexed\n    and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!--\n      NOTE: In order to reduce Jar duplication, dataimporthandler-extras \n      explicitly requires the deps from contrib/extraction.\n      See https://issues.apache.org/jira/browse/SOLR-3848\n  -->\n  <lib dir=\"../../../../contrib/extraction/lib\" />\n\n  <lib dir=\"../../../../contrib/dataimporthandler/lib/\" regex=\".*jar$\" />\n  <lib dir=\"../../../../dist/\" regex=\"solr-dataimporthandler-.*\\.jar\" />\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- <indexConfig> section could go here, but we want the defaults -->\n\n  <!-- the default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- A prefix of \"solr.\" for class names is an alias that\n         causes solr to search appropriate packages, including\n         org.apache.solr.(search|update|request|core|analysis)\n     -->\n\n    <!-- Limit the number of deletions Solr will buffer during doc updating.\n        \n        Setting this lower can help bound memory use during indexing.\n    -->\n    <maxPendingDeletes>100000</maxPendingDeletes>\n\n  </updateHandler>\n\n\n  <query>\n    <!-- Maximum number of clauses in a boolean query... can affect\n        range or prefix queries that expand to big boolean\n        queries.  An exception is thrown if exceeded.  -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n    \n    <!-- Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.\n         When a new searcher is opened, its caches may be prepopulated\n         or \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For LRUCache,\n         the autowarmed items will be the most recently accessed items.\n       Parameters:\n         class - the SolrCache implementation (currently only LRUCache)\n         size - the maximum number of entries in the cache\n         initialSize - the initial capacity (number of entries) of\n           the cache.  (seel java.util.HashMap)\n         autowarmCount - the number of entries to prepopulate from\n           and old cache.\n         -->\n    <filterCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n   <!-- queryResultCache caches results of searches - ordered lists of\n         document ids (DocList) based on a query, a sort, and the range\n         of documents requested.  -->\n    <queryResultCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"256\"/>\n\n  <!-- documentCache caches Lucene Document objects (the stored fields for each document).\n       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->\n    <documentCache\n      class=\"solr.LRUCache\"\n      size=\"512\"\n      initialSize=\"512\"\n      autowarmCount=\"0\"/>\n\n    <!-- If true, stored fields that are not requested will be loaded lazily.\n\n    This can result in a significant speed improvement if the usual case is to\n    not load all stored fields, especially if the skipped fields are large compressed\n    text fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n    <!-- Example of a generic cache.  These caches may be accessed by name\n         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().\n         The purpose is to enable easy caching of user/application level data.\n         The regenerator argument should be specified as an implementation\n         of solr.search.CacheRegenerator if autowarming is desired.  -->\n    <!--\n    <cache name=\"myUserCache\"\n      class=\"solr.LRUCache\"\n      size=\"4096\"\n      initialSize=\"1024\"\n      autowarmCount=\"1024\"\n      regenerator=\"org.mycompany.mypackage.MyRegenerator\"\n      />\n    -->\n\n   <!-- An optimization that attempts to use a filter to satisfy a search.\n         If the requested sort does not include score, then the filterCache\n         will be checked for a filter matching the query. If found, the filter\n         will be used as the source of document ids, and then the sort will be\n         applied to that.\n    <useFilterForSortedQuery>true</useFilterForSortedQuery>\n   -->\n\n   <!-- An optimization for use with the queryResultCache.  When a search\n         is requested, a superset of the requested number of document ids\n         are collected.  For example, if a search for a particular query\n         requests matching documents 10 through 19, and queryWindowSize is 50,\n         then documents 0 through 49 will be collected and cached.  Any further\n         requests in that range can be satisfied via the cache.  -->\n    <queryResultWindowSize>50</queryResultWindowSize>\n    \n    <!-- Maximum number of documents to cache for any entry in the\n         queryResultCache. -->\n    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n    <!-- This entry enables an int hash representation for filters (DocSets)\n         when the number of items in the set is less than maxSize.  For smaller\n         sets, this representation is more memory efficient, more efficient to\n         iterate over, and faster to take intersections.  -->\n    <HashDocSet maxSize=\"3000\" loadFactor=\"0.75\"/>\n\n    <!-- a newSearcher event is fired whenever a new searcher is being prepared\n         and there is a current searcher handling requests (aka registered). -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst> <str name=\"q\">solr</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst> <str name=\"q\">rocks</str> <str name=\"start\">0</str> <str name=\"rows\">10</str> </lst>\n        <lst><str name=\"q\">static newSearcher warming query from solrconfig.xml</str></lst>\n      </arr>\n    </listener>\n\n    <!-- a firstSearcher event is fired whenever a new searcher is being\n         prepared but there is no current registered searcher to handle\n         requests or to gain autowarming data from. -->\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n      </arr>\n    </listener>\n\n    <!-- If a search request comes in and there is no current registered searcher,\n         then immediately register the still warming searcher and use it.  If\n         \"false\" then all requests will block until the first searcher is done\n         warming. -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Maximum number of searchers that may be warming in the background\n      concurrently.  An error is returned if this limit is exceeded. Recommend\n      1-2 for read-only slaves, higher for masters w/o cache warming. -->\n    <maxWarmingSearchers>4</maxWarmingSearchers>\n\n  </query>\n\n  <!-- \n    Let the dispatch filter handler /select?qt=XXX\n    handleSelect=true will use consistent error handling for /select and /update\n    handleSelect=false will use solr1.1 style error formatting\n    -->\n  <requestDispatcher handleSelect=\"true\" >\n    <!--Make sure your system has some authentication before enabling remote streaming!  -->\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n        \n    <!-- Set HTTP caching related parameters (for proxy caches and clients).\n          \n         To get the behaviour of Solr 1.2 (ie: no caching related headers)\n         use the never304=\"true\" option and do not specify a value for\n         <cacheControl>\n    -->\n    <httpCaching never304=\"true\">\n    <!--httpCaching lastModifiedFrom=\"openTime\"\n                 etagSeed=\"Solr\"-->\n       <!-- lastModFrom=\"openTime\" is the default, the Last-Modified value\n            (and validation against If-Modified-Since requests) will all be\n            relative to when the current Searcher was opened.\n            You can change it to lastModFrom=\"dirLastMod\" if you want the\n            value to exactly corrispond to when the physical index was last\n            modified.\n               \n            etagSeed=\"...\" is an option you can change to force the ETag\n            header (and validation against If-None-Match requests) to be\n            differnet even if the index has not changed (ie: when making\n            significant changes to your config file)\n\n            lastModifiedFrom and etagSeed are both ignored if you use the\n            never304=\"true\" option.\n       -->\n       <!-- If you include a <cacheControl> directive, it will be used to\n            generate a Cache-Control header, as well as an Expires header\n            if the value contains \"max-age=\"\n               \n            By default, no Cache-Control header is generated.\n\n            You can use the <cacheControl> option even if you have set\n            never304=\"true\"\n       -->\n       <!-- <cacheControl>max-age=30, public</cacheControl> -->\n    </httpCaching>\n  </requestDispatcher>\n  \n      \n  <!-- requestHandler plugins... incoming queries will be dispatched to the\n     correct handler based on the path or the 'qt' param.\n     Names starting with a '/' are accessed with the a path equal to the \n     registered name.  Names without a leading '/' are accessed with:\n      http://host/app/select?qt=name\n     If no qt is defined, the requestHandler that declares default=\"true\"\n     will be used.\n  -->\n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\">\n    <!-- default values for query parameters -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <!-- \n       <int name=\"rows\">10</int>\n       <str name=\"fl\">*</str>\n       <str name=\"version\">2.1</str>\n        -->\n     </lst>\n  </requestHandler>\n  \n  <requestHandler name=\"/dataimport\" class=\"org.apache.solr.handler.dataimport.DataImportHandler\">\n    <lst name=\"defaults\">\n\t\t<str name=\"config\">tika-data-config.xml</str>\n\t</lst>\n  </requestHandler>\n    \n  <!--\n   \n   Search components are registered to SolrCore and used by Search Handlers\n   \n   By default, the following components are avaliable:\n    \n   <searchComponent name=\"query\"     class=\"org.apache.solr.handler.component.QueryComponent\" />\n   <searchComponent name=\"facet\"     class=\"org.apache.solr.handler.component.FacetComponent\" />\n   <searchComponent name=\"mlt\"       class=\"org.apache.solr.handler.component.MoreLikeThisComponent\" />\n   <searchComponent name=\"highlight\" class=\"org.apache.solr.handler.component.HighlightComponent\" />\n   <searchComponent name=\"debug\"     class=\"org.apache.solr.handler.component.DebugComponent\" />\n  \n   If you register a searchComponent to one of the standard names, that will be used instead.\n  \n   -->\n \n  <requestHandler name=\"/search\" class=\"org.apache.solr.handler.component.SearchHandler\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n    </lst>\n    <!--\n    By default, this will register the following components:\n    \n    <arr name=\"components\">\n      <str>query</str>\n      <str>facet</str>\n      <str>mlt</str>\n      <str>highlight</str>\n      <str>debug</str>\n    </arr>\n    \n    To insert handlers before or after the 'standard' components, use:\n    \n    <arr name=\"first-components\">\n      <str>first</str>\n    </arr>\n    \n    <arr name=\"last-components\">\n      <str>last</str>\n    </arr>\n    \n    -->\n  </requestHandler>\n  \n  <!-- Update request handler.  \n  \n       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in \n       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'\n       The response format differs from solr1.1 formatting and returns a standard error code.\n       \n       To enable solr1.1 behavior, remove the /update handler or change its path\n       \n       \"update.processor.class\" is the class name for the UpdateRequestProcessor.  It is initalized\n       only once.  This can not be changed for each request.\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\" >\n    <!--\n    <str name=\"update.processor.class\">org.apache.solr.handler.UpdateRequestProcessor</str>\n    -->\n  </requestHandler>\n  \n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n  \n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n  \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/example-DIH/solr/tika/conf/tika-data-config.xml",
    "content": "<dataConfig>\n    <dataSource type=\"BinFileDataSource\" />\n    <document>\n        <entity name=\"tika-test\" processor=\"TikaEntityProcessor\"\n                url=\"../contrib/extraction/src/test-files/extraction/solr-word.pdf\" format=\"text\">\n                <field column=\"Author\" name=\"author\" meta=\"true\"/>\n                <field column=\"title\" name=\"title\" meta=\"true\"/>\n                <field column=\"text\" name=\"text\"/>\n        </entity>\n    </document>\n</dataConfig>\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/books.csv",
    "content": "id,cat,name,price,inStock,author,series_t,sequence_i,genre_s\n0553573403,book,A Game of Thrones,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",1,fantasy\n0553579908,book,A Clash of Kings,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",2,fantasy\n055357342X,book,A Storm of Swords,7.99,true,George R.R. Martin,\"A Song of Ice and Fire\",3,fantasy\n0553293354,book,Foundation,7.99,true,Isaac Asimov,Foundation Novels,1,scifi\n0812521390,book,The Black Company,6.99,false,Glen Cook,The Chronicles of The Black Company,1,fantasy\n0812550706,book,Ender's Game,6.99,true,Orson Scott Card,Ender,1,scifi\n0441385532,book,Jhereg,7.95,false,Steven Brust,Vlad Taltos,1,fantasy\n0380014300,book,Nine Princes In Amber,6.99,true,Roger Zelazny,the Chronicles of Amber,1,fantasy\n0805080481,book,The Book of Three,5.99,true,Lloyd Alexander,The Chronicles of Prydain,1,fantasy\n080508049X,book,The Black Cauldron,5.99,true,Lloyd Alexander,The Chronicles of Prydain,2,fantasy\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/books.json",
    "content": "[\n  {\n    \"id\" : \"978-0641723445\",\n    \"cat\" : [\"book\",\"hardcover\"],\n    \"name\" : \"The Lightning Thief\",\n    \"author\" : \"Rick Riordan\",\n    \"series_t\" : \"Percy Jackson and the Olympians\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 12.50,\n    \"pages_i\" : 384\n  }\n,\n  {\n    \"id\" : \"978-1423103349\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"The Sea of Monsters\",\n    \"author\" : \"Rick Riordan\",\n    \"series_t\" : \"Percy Jackson and the Olympians\",\n    \"sequence_i\" : 2,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 6.49,\n    \"pages_i\" : 304\n  }\n,\n  {\n    \"id\" : \"978-1857995879\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"Sophie's World : The Greek Philosophers\",\n    \"author\" : \"Jostein Gaarder\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"fantasy\",\n    \"inStock\" : true,\n    \"price\" : 3.07,\n    \"pages_i\" : 64\n  }\n,\n  {\n    \"id\" : \"978-1933988177\",\n    \"cat\" : [\"book\",\"paperback\"],\n    \"name\" : \"Lucene in Action, Second Edition\",\n    \"author\" : \"Michael McCandless\",\n    \"sequence_i\" : 1,\n    \"genre_s\" : \"IT\",\n    \"inStock\" : true,\n    \"price\" : 30.50,\n    \"pages_i\" : 475\n  }\n]\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/gb18030-example.xml",
    "content": "<?xml version=\"1.0\" encoding=\"GB18030\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n  <doc>\n    <field name=\"id\">GB18030TEST</field>\n    <field name=\"name\">Test with some GB18030 encoded characters</field>\n    <field name=\"features\">No accents here</field>\n    <field name=\"features\">һ</field>\n    <field name=\"features\">This is a feature (translated)</field>\n    <field name=\"features\">ļǺй</field>\n    <field name=\"features\">This document is very shiny (translated)</field>\n    <field name=\"price\">0</field>\n    <field name=\"inStock\">true</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/hd.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">SP2514N</field>\n  <field name=\"name\">Samsung SpinPoint P120 SP2514N - hard drive - 250 GB - ATA-133</field>\n  <field name=\"manu\">Samsung Electronics Co. Ltd.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">samsung</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">hard drive</field>\n  <field name=\"features\">7200RPM, 8MB cache, IDE Ultra ATA-133</field>\n  <field name=\"features\">NoiseGuard, SilentSeek technology, Fluid Dynamic Bearing (FDB) motor</field>\n  <field name=\"price\">92</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n  <!-- Near Oklahoma city -->\n  <field name=\"store\">35.0752,-97.032</field>\n</doc>\n\n<doc>\n  <field name=\"id\">6H500F0</field>\n  <field name=\"name\">Maxtor DiamondMax 11 - hard drive - 500 GB - SATA-300</field>\n  <field name=\"manu\">Maxtor Corp.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">maxtor</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">hard drive</field>\n  <field name=\"features\">SATA 3.0Gb/s, NCQ</field>\n  <field name=\"features\">8.5ms seek</field>\n  <field name=\"features\">16MB cache</field>\n  <field name=\"price\">350</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.17614,-93.87341</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n</doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/ipod_other.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n\n<doc>\n  <field name=\"id\">F8V7067-APL-KIT</field>\n  <field name=\"name\">Belkin Mobile Power Cord for iPod w/ Dock</field>\n  <field name=\"manu\">Belkin</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">belkin</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">connector</field>\n  <field name=\"features\">car power adapter, white</field>\n  <field name=\"weight\">4</field>\n  <field name=\"price\">19.95</field>\n  <field name=\"popularity\">1</field>\n  <field name=\"inStock\">false</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18014,-93.87741</field>\n  <field name=\"manufacturedate_dt\">2005-08-01T16:30:25Z</field>\n</doc>\n\n<doc>\n  <field name=\"id\">IW-02</field>\n  <field name=\"name\">iPod &amp; iPod Mini USB 2.0 Cable</field>\n  <field name=\"manu\">Belkin</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">belkin</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">connector</field>\n  <field name=\"features\">car power adapter for iPod, white</field>\n  <field name=\"weight\">2</field>\n  <field name=\"price\">11.50</field>\n  <field name=\"popularity\">1</field>\n  <field name=\"inStock\">false</field>\n  <!-- San Francisco store -->\n  <field name=\"store\">37.7752,-122.4232</field>\n  <field name=\"manufacturedate_dt\">2006-02-14T23:55:59Z</field>\n</doc>\n\n\n</add>\n\n\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/ipod_video.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">MA147LL/A</field>\n  <field name=\"name\">Apple 60 GB iPod with Video Playback Black</field>\n  <field name=\"manu\">Apple Computer Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">apple</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">music</field>\n  <field name=\"features\">iTunes, Podcasts, Audiobooks</field>\n  <field name=\"features\">Stores up to 15,000 songs, 25,000 photos, or 150 hours of video</field>\n  <field name=\"features\">2.5-inch, 320x240 color TFT LCD display with LED backlight</field>\n  <field name=\"features\">Up to 20 hours of battery life</field>\n  <field name=\"features\">Plays AAC, MP3, WAV, AIFF, Audible, Apple Lossless, H.264 video</field>\n  <field name=\"features\">Notes, Calendar, Phone book, Hold button, Date display, Photo wallet, Built-in games, JPEG photo playback, Upgradeable firmware, USB 2.0 compatibility, Playback speed control, Rechargeable capability, Battery level indication</field>\n  <field name=\"includes\">earbud headphones, USB cable</field>\n  <field name=\"weight\">5.5</field>\n  <field name=\"price\">399.00</field>\n  <field name=\"popularity\">10</field>\n  <field name=\"inStock\">true</field>\n  <!-- Dodge City store -->\n  <field name=\"store\">37.7752,-100.0232</field>\n  <field name=\"manufacturedate_dt\">2005-10-12T08:00:00Z</field>\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/manufacturers.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n  <doc>\n    <field name=\"id\">adata</field>\n    <field name=\"compName_s\">A-Data Technology</field>\n    <field name=\"address_s\">46221 Landing Parkway Fremont, CA 94538</field>\n  </doc>\n  <doc>\n    <field name=\"id\">apple</field>\n    <field name=\"compName_s\">Apple</field>\n    <field name=\"address_s\">1 Infinite Way, Cupertino CA</field>\n  </doc>\n  <doc>\n    <field name=\"id\">asus</field>\n    <field name=\"compName_s\">ASUS Computer</field>\n    <field name=\"address_s\">800 Corporate Way Fremont, CA 94539</field>\n  </doc>\n  <doc>\n    <field name=\"id\">ati</field>\n    <field name=\"compName_s\">ATI Technologies</field>\n    <field name=\"address_s\">33 Commerce Valley Drive East Thornhill, ON L3T 7N6 Canada</field>\n  </doc>\n  <doc>\n    <field name=\"id\">belkin</field>\n    <field name=\"compName_s\">Belkin</field>\n    <field name=\"address_s\">12045 E. Waterfront Drive Playa Vista, CA 90094</field>\n  </doc>\n  <doc>\n    <field name=\"id\">canon</field>\n    <field name=\"compName_s\">Canon, Inc.</field>\n    <field name=\"address_s\">One Canon Plaza Lake Success, NY 11042</field>\n  </doc>\n  <doc>\n    <field name=\"id\">corsair</field>\n    <field name=\"compName_s\">Corsair Microsystems</field>\n    <field name=\"address_s\">46221 Landing Parkway Fremont, CA 94538</field>\n  </doc>\n  <doc>\n    <field name=\"id\">dell</field>\n    <field name=\"compName_s\">Dell, Inc.</field>\n    <field name=\"address_s\">One Dell Way Round Rock, Texas 78682</field>\n  </doc>\n  <doc>\n    <field name=\"id\">maxtor</field>\n    <field name=\"compName_s\">Maxtor Corporation</field>\n    <field name=\"address_s\">920 Disc Drive Scotts Valley, CA 95066</field>\n  </doc>\n  <doc>\n    <field name=\"id\">samsung</field>\n    <field name=\"compName_s\">Samsung Electronics Co. Ltd.</field>\n    <field name=\"address_s\">105 Challenger Rd. Ridgefield Park, NJ 07660-0511</field>\n  </doc>\n  <doc>\n    <field name=\"id\">viewsonic</field>\n    <field name=\"compName_s\">ViewSonic Corp</field>\n    <field name=\"address_s\">381 Brea Canyon Road Walnut, CA 91789-0708</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/mem.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">TWINX2048-3200PRO</field>\n  <field name=\"name\">CORSAIR  XMS 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) Dual Channel Kit System Memory - Retail</field>\n  <field name=\"manu\">Corsair Microsystems Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"features\">CAS latency 2,\t2-3-3-6 timing, 2.75v, unbuffered, heat-spreader</field>\n  <field name=\"price\">185</field>\n  <field name=\"popularity\">5</field>\n  <field name=\"inStock\">true</field>\n  <!-- San Francisco store -->\n  <field name=\"store\">37.7752,-122.4232</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <!-- a field for testing payload tagged text via DelimitedPayloadTokenFilter -->\n  <field name=\"payloads\">electronics|6.0 memory|3.0</field>\n</doc>\n\n<doc>\n  <field name=\"id\">VS1GB400C3</field>\n  <field name=\"name\">CORSAIR ValueSelect 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - Retail</field>\n  <field name=\"manu\">Corsair Microsystems Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"price\">74.99</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">true</field>\n  <!-- Dodge City store -->\n  <field name=\"store\">37.7752,-100.0232</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <field name=\"payloads\">electronics|4.0 memory|2.0</field>\n</doc>\n\n<doc>\n  <field name=\"id\">VDBDB1A16</field>\n  <field name=\"name\">A-DATA V-Series 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - OEM</field>\n  <field name=\"manu\">A-DATA Technology Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">corsair</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">memory</field>\n  <field name=\"features\">CAS latency 3,\t 2.7v</field>\n  <!-- note: price & popularity is missing on this one -->\n  <field name=\"popularity\">0</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18414,-93.88141</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n\n  <field name=\"payloads\">electronics|0.9 memory|0.1</field>\n</doc>\n\n</add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/money.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- Example documents utilizing the CurrencyField type -->\n<add>\n<doc>\n  <field name=\"id\">USD</field>\n  <field name=\"name\">One Dollar</field>\n  <field name=\"manu\">Bank of America</field>\n  <field name=\"manu_id_s\">boa</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,USD</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">EUR</field>\n  <field name=\"name\">One Euro</field>\n  <field name=\"manu\">European Union</field>\n  <field name=\"manu_id_s\">eu</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,EUR</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">GBP</field>\n  <field name=\"name\">One British Pound</field>\n  <field name=\"manu\">U.K.</field>\n  <field name=\"manu_id_s\">uk</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,GBP</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n<doc>\n  <field name=\"id\">NOK</field>\n  <field name=\"name\">One Krone</field>\n  <field name=\"manu\">Bank of Norway</field>\n  <field name=\"manu_id_s\">nor</field>\n  <field name=\"cat\">currency</field>\n  <field name=\"features\">Coins and notes</field>\n  <field name=\"price_c\">1,NOK</field>\n  <field name=\"inStock\">true</field>\n</doc>\n\n</add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/monitor.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">3007WFP</field>\n  <field name=\"name\">Dell Widescreen UltraSharp 3007WFP</field>\n  <field name=\"manu\">Dell, Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">dell</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">monitor</field>\n  <field name=\"features\">30\" TFT active matrix LCD, 2560 x 1600, .25mm dot pitch, 700:1 contrast</field>\n  <field name=\"includes\">USB cable</field>\n  <field name=\"weight\">401.6</field>\n  <field name=\"price\">2199</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">43.17614,-90.57341</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/monitor2.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">VA902B</field>\n  <field name=\"name\">ViewSonic VA902B - flat panel display - TFT - 19\"</field>\n  <field name=\"manu\">ViewSonic Corp.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">viewsonic</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">monitor</field>\n  <field name=\"features\">19\" TFT active matrix LCD, 8ms response time, 1280 x 1024 native resolution</field>\n  <field name=\"weight\">190.4</field>\n  <field name=\"price\">279.95</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.18814,-93.88541</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/mp500.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">0579B002</field>\n  <field name=\"name\">Canon PIXMA MP500 All-In-One Photo Printer</field>\n  <field name=\"manu\">Canon Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">canon</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">multifunction printer</field>\n  <field name=\"cat\">printer</field>\n  <field name=\"cat\">scanner</field>\n  <field name=\"cat\">copier</field>\n  <field name=\"features\">Multifunction ink-jet color photo printer</field>\n  <field name=\"features\">Flatbed scanner, optical scan resolution of 1,200 x 2,400 dpi</field>\n  <field name=\"features\">2.5\" color LCD preview screen</field>\n  <field name=\"features\">Duplex Copying</field>\n  <field name=\"features\">Printing speed up to 29ppm black, 19ppm color</field>\n  <field name=\"features\">Hi-Speed USB</field>\n  <field name=\"features\">memory card: CompactFlash, Micro Drive, SmartMedia, Memory Stick, Memory Stick Pro, SD Card, and MultiMediaCard</field>\n  <field name=\"weight\">352</field>\n  <field name=\"price\">179.99</field>\n  <field name=\"popularity\">6</field>\n  <field name=\"inStock\">true</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.19214,-93.89941</field>\n</doc></add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/post.sh",
    "content": "#!/bin/sh\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nFILES=$*\nURL=http://localhost:8983/solr/update\n\nfor f in $FILES; do\n  echo Posting file $f to $URL\n  curl $URL --data-binary @$f -H 'Content-type:application/xml' \n  echo\ndone\n\n#send the commit command to make sure all the changes are flushed and visible\n#curl $URL --data-binary '<commit softCommit=true/>' -H 'Content-type:application/xml'\n\ncurl \"$URL?softCommit=true\"\necho\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/sd500.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">9885A004</field>\n  <field name=\"name\">Canon PowerShot SD500</field>\n  <field name=\"manu\">Canon Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">canon</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">camera</field>\n  <field name=\"features\">3x zoop, 7.1 megapixel Digital ELPH</field>\n  <field name=\"features\">movie clips up to 640x480 @30 fps</field>\n  <field name=\"features\">2.0\" TFT LCD, 118,000 pixels</field>\n  <field name=\"features\">built in flash, red-eye reduction</field>\n  <field name=\"includes\">32MB SD card, USB cable, AV cable, battery</field>\n  <field name=\"weight\">6.4</field>\n  <field name=\"price\">329.95</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z</field>\n  <!-- Buffalo store -->\n  <field name=\"store\">45.19614,-93.90341</field>\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/solr.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">SOLR1000</field>\n  <field name=\"name\">Solr, the Enterprise Search Server</field>\n  <field name=\"manu\">Apache Software Foundation</field>\n  <field name=\"cat\">software</field>\n  <field name=\"cat\">search</field>\n  <field name=\"features\">Advanced Full-Text Search Capabilities using Lucene</field>\n  <field name=\"features\">Optimized for High Volume Web Traffic</field>\n  <field name=\"features\">Standards Based Open Interfaces - XML and HTTP</field>\n  <field name=\"features\">Comprehensive HTML Administration Interfaces</field>\n  <field name=\"features\">Scalability - Efficient Replication to other Solr Search Servers</field>\n  <field name=\"features\">Flexible and Adaptable with XML configuration and Schema</field>\n  <field name=\"features\">Good unicode support: h&#xE9;llo (hello with an accent over the e)</field>\n  <field name=\"price\">0</field>\n  <field name=\"popularity\">10</field>\n  <field name=\"inStock\">true</field>\n  <field name=\"incubationdate_dt\">2006-01-17T00:00:00.000Z</field>\n</doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/test_utf8.sh",
    "content": "#!/bin/sh\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#Test script to tell if the server is accepting UTF-8\n#The python writer currently escapes non-ascii chars, so it's good for testing\n\nURL=http://localhost:8983/solr\n\nif [ ! -z $1 ]; then\n  URL=$1\nfi\n\ncurl \"$URL/select?q=hello&params=explicit&wt=python\" 2> /dev/null | grep 'hello' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"Solr server is up.\"\nelse\n  echo \"ERROR: Could not curl to Solr - is curl installed? Is Solr not running?\"\n  exit 1\nfi\n\ncurl \"$URL/select?q=h%C3%A9llo&echoParams=explicit&wt=python\" 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP GET is accepting UTF-8\"\nelse\n  echo \"ERROR: HTTP GET is not accepting UTF-8\"\nfi\n\ncurl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST is accepting UTF-8\"\nelse\n  echo \"ERROR: HTTP POST is not accepting UTF-8\"\nfi\n\ncurl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' 2> /dev/null | grep 'h\\\\u00e9llo' > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST defaults to UTF-8\"\nelse\n  echo \"HTTP POST does not default to UTF-8\"\nfi\n\n\n#A unicode character outside of the BMP (a circle with an x inside)\nCHAR=\"𐌈\"\nCODEPOINT='0x10308'\n#URL encoded UTF8 of the codepoint\nURL_UTF8='%F0%90%8C%88'\n#expected return of the python writer (currently uses UTF-16 surrogates)\nEXPECTED='\\\\ud800\\\\udf08'\n\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python\" 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP GET is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP GET is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\ncurl $URL/select --data-binary \"q=$URL_UTF8&echoParams=explicit&wt=python\"  -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP POST is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python\" --data-binary '' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"HTTP POST + URL params is accepting UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: HTTP POST + URL params is not accepting UTF-8 beyond the basic multilingual plane\"\nfi\n\n#curl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=json\" 2> /dev/null | od -tx1 -w1000 | sed 's/ //g' | grep 'f4808198' > /dev/null 2>&1\ncurl \"$URL/select?q=$URL_UTF8&echoParams=explicit&wt=json\" 2> /dev/null | grep \"$CHAR\" > /dev/null 2>&1\nif [ $? = 0 ]; then\n  echo \"Response correctly returns UTF-8 beyond the basic multilingual plane\"\nelse\n  echo \"ERROR: Response can't return UTF-8 beyond the basic multilingual plane\"\nfi\n\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/utf8-example.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- \n  After posting this to SOLR with post.sh, searching for \"êâîôû\" from \n  the solr/admin/ search page must return this document.\n -->\n\n<add>\n  <doc>\n    <field name=\"id\">UTF8TEST</field>\n    <field name=\"name\">Test with some UTF-8 encoded characters</field>\n    <field name=\"manu\">Apache Software Foundation</field>\n    <field name=\"cat\">software</field>\n    <field name=\"cat\">search</field>\n    <field name=\"features\">No accents here</field>\n    <field name=\"features\">This is an e acute: é</field>\n    <field name=\"features\">eaiou with circumflexes: êâîôû</field>\n    <field name=\"features\">eaiou with umlauts: ëäïöü</field>\n    <field name=\"features\">tag with escaped chars: &lt;nicetag/&gt;</field>\n    <field name=\"features\">escaped ampersand: Bonnie &amp; Clyde</field>\n    <field name=\"features\">Outside the BMP:𐌈 codepoint=10308, a circle with an x inside. UTF8=f0908c88 UTF16=d800 df08</field>\n    <field name=\"price\">0</field>\n    <field name=\"inStock\">true</field>\n  </doc>\n</add>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/exampledocs/vidcard.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n<doc>\n  <field name=\"id\">EN7800GTX/2DHTV/256M</field>\n  <field name=\"name\">ASUS Extreme N7800GTX/2DHTV (256 MB)</field>\n  <!-- Denormalized -->\n  <field name=\"manu\">ASUS Computer Inc.</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">asus</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">graphics card</field>\n  <field name=\"features\">NVIDIA GeForce 7800 GTX GPU/VPU clocked at 486MHz</field>\n  <field name=\"features\">256MB GDDR3 Memory clocked at 1.35GHz</field>\n  <field name=\"features\">PCI Express x16</field>\n  <field name=\"features\">Dual DVI connectors, HDTV out, video input</field>\n  <field name=\"features\">OpenGL 2.0, DirectX 9.0</field>\n  <field name=\"weight\">16</field>\n  <field name=\"price\">479.95</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"store\">40.7143,-74.006</field>\n  <field name=\"inStock\">false</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z/DAY</field>\n</doc>\n  <!-- yes, you can add more than one document at a time -->\n<doc>\n  <field name=\"id\">100-435805</field>\n  <field name=\"name\">ATI Radeon X1900 XTX 512 MB PCIE Video Card</field>\n  <field name=\"manu\">ATI Technologies</field>\n  <!-- Join -->\n  <field name=\"manu_id_s\">ati</field>\n  <field name=\"cat\">electronics</field>\n  <field name=\"cat\">graphics card</field>\n  <field name=\"features\">ATI RADEON X1900 GPU/VPU clocked at 650MHz</field>\n  <field name=\"features\">512MB GDDR3 SDRAM clocked at 1.55GHz</field>\n  <field name=\"features\">PCI Express x16</field>\n  <field name=\"features\">dual DVI, HDTV, svideo, composite out</field>\n  <field name=\"features\">OpenGL 2.0, DirectX 9.0</field>\n  <field name=\"weight\">48</field>\n  <field name=\"price\">649.99</field>\n  <field name=\"popularity\">7</field>\n  <field name=\"inStock\">false</field>\n  <field name=\"manufacturedate_dt\">2006-02-13T15:26:37Z/DAY</field>\n  <!-- NYC store -->\n  <field name=\"store\">40.7143,-74.006</field>\n</doc>\n</add>\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/README.txt",
    "content": "This is an alternative setup structure to support multiple cores.\n\nTo run this configuration, start jetty in the example/ directory using:\n\njava -Dsolr.solr.home=multicore -jar start.jar\n\nFor general examples on standard solr configuration, see the \"solr\" directory.\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/core0/conf/schema.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<schema name=\"example core zero\" version=\"1.1\">\n  <types>\n   <fieldtype name=\"string\"  class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n   <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n  </types>\n\n <fields>   \n  <!-- general -->\n  <field name=\"id\"        type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" required=\"true\"/>\n  <field name=\"type\"      type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"name\"      type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"core0\"     type=\"string\"   indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"_version_\" type=\"long\"     indexed=\"true\"  stored=\"true\"/>\n </fields>\n\n <!-- field to use to determine and enforce document uniqueness. -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>name</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n</schema>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/core0/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is a stripped down config file used for a simple example...  \n It is *not* a good example to work from. \n-->\n<config>\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n  <!--  The DirectoryFactory to use for indexes.\n        solr.StandardDirectoryFactory, the default, is filesystem based.\n        solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->\n  <directoryFactory name=\"DirectoryFactory\" class=\"${solr.directoryFactory:solr.StandardDirectoryFactory}\"/>\n\n  <dataDir>${solr.core0.data.dir:}</dataDir>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n    <updateLog>\n      <str name=\"dir\">${solr.core0.data.dir:}</str>\n    </updateLog>\n  </updateHandler>\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields \n    of any document, without the need to commit or open a new searcher. The current \n    implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n    <lst name=\"defaults\">\n      <str name=\"omitHeader\">true</str>\n    </lst>\n  </requestHandler>  \n  \n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" startup=\"lazy\" /> \n\n  <requestDispatcher handleSelect=\"true\" >\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n  </requestDispatcher>\n  \n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\" />\n  <requestHandler name=\"/analysis/field\" startup=\"lazy\" class=\"solr.FieldAnalysisRequestHandler\" />\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n     \n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n  </requestHandler>\n   \n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/core1/conf/schema.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<schema name=\"example core one\" version=\"1.1\">\n  <types>\n   <fieldtype name=\"string\"  class=\"solr.StrField\" sortMissingLast=\"true\" omitNorms=\"true\"/>\n   <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n  </types>\n\n <fields>   \n  <!-- general -->\n  <field name=\"id\"        type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" required=\"true\"/>\n  <field name=\"type\"      type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"name\"      type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" /> \n  <field name=\"core1\"     type=\"string\"    indexed=\"true\"  stored=\"true\"  multiValued=\"false\" />\n  <field name=\"_version_\" type=\"long\"      indexed=\"true\"  stored=\"true\"/>\n </fields>\n\n <!-- field to use to determine and enforce document uniqueness. -->\n <uniqueKey>id</uniqueKey>\n\n <!-- field for the QueryParser to use when an explicit fieldname is absent -->\n <defaultSearchField>name</defaultSearchField>\n\n <!-- SolrQueryParser configuration: defaultOperator=\"AND|OR\" -->\n <solrQueryParser defaultOperator=\"OR\"/>\n</schema>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/core1/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n This is a stripped down config file used for a simple example...  \n It is *not* a good example to work from. \n-->\n<config>\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n  <!--  The DirectoryFactory to use for indexes.\n        solr.StandardDirectoryFactory, the default, is filesystem based.\n        solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->\n  <directoryFactory name=\"DirectoryFactory\" class=\"${solr.directoryFactory:solr.StandardDirectoryFactory}\"/>\n\n  <dataDir>${solr.core1.data.dir:}</dataDir>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n    <updateLog>\n      <str name=\"dir\">${solr.core1.data.dir:}</str>\n    </updateLog>\n  </updateHandler>\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields \n    of any document, without the need to commit or open a new searcher. The current \n    implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n    <lst name=\"defaults\">\n      <str name=\"omitHeader\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" startup=\"lazy\" /> \n\n  <requestDispatcher handleSelect=\"true\" >\n    <requestParsers enableRemoteStreaming=\"false\" multipartUploadLimitInKB=\"2048\" formdataUploadLimitInKB=\"2048\" />\n  </requestDispatcher>\n  \n  <requestHandler name=\"standard\" class=\"solr.StandardRequestHandler\" default=\"true\" />\n  <requestHandler name=\"/analysis/field\" startup=\"lazy\" class=\"solr.FieldAnalysisRequestHandler\" />\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\"  />\n  <requestHandler name=\"/admin/\" class=\"org.apache.solr.handler.admin.AdminHandlers\" />\n\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n  </requestHandler>\n\n  <!-- config for the admin interface --> \n  <admin>\n    <defaultQuery>solr</defaultQuery>\n  </admin>\n\n</config>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/exampledocs/ipod_other.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add>\n\n<doc>\n  <field name=\"id\">F8V7067-APL-KIT</field>\n  <field name=\"name\">Belkin Mobile Power Cord for iPod w/ Dock</field>\n</doc>\n\n<doc>\n  <field name=\"id\">IW-02</field>\n  <field name=\"name\">iPod &amp; iPod Mini USB 2.0 Cable</field>\n</doc>\n\n\n</add>\n\n\n\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/exampledocs/ipod_video.xml",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<add><doc>\n  <field name=\"id\">MA147LL/A</field>\n  <field name=\"name\">Apple 60 GB iPod with Video Playback Black</field>\n\n</doc></add>\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n All (relative) paths are relative to the installation path\n  \n  persistent: Save changes made via the API to this file\n  sharedLib: path to a lib directory that will be shared across all cores\n-->\n<solr persistent=\"false\">\n\n  <!--\n  adminPath: RequestHandler path to manage cores.  \n    If 'null' (or absent), cores will not be manageable via request handler\n  -->\n  <cores adminPath=\"/admin/cores\" host=\"${host:}\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\">\n    <core name=\"core0\" instanceDir=\"core0\" />\n    <core name=\"core1\" instanceDir=\"core1\" />\n  </cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/triplestore/multicore/zoo.cfg",
    "content": "# The number of milliseconds of each tick\ntickTime=2000\n# The number of ticks that the initial\n# synchronization phase can take\ninitLimit=10\n# The number of ticks that can pass between\n# sending a request and getting an acknowledgement\nsyncLimit=5\n\n# the directory where the snapshot is stored.\n# dataDir=/opt/zookeeper/data\n# NOTE: Solr defaults the dataDir to <solrHome>/zoo_data\n\n# the port at which the clients will connect\n# clientPort=2181\n# NOTE: Solr sets this based on zkRun / zkHost params\n\n"
  },
  {
    "path": "oqa-solr/triplestore/resources/log4j.properties",
    "content": "#  Logging level\nlog4j.rootLogger=INFO, file, CONSOLE\n\nlog4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender\n\nlog4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout\nlog4j.appender.CONSOLE.layout.ConversionPattern=%-4r [%t] %-5p %c %x \\u2013 %m%n\n\n#- size rotation with log cleanup.\nlog4j.appender.file=org.apache.log4j.RollingFileAppender\nlog4j.appender.file.MaxFileSize=4MB\nlog4j.appender.file.MaxBackupIndex=9\n\n#- File to log to and log format\nlog4j.appender.file.File=logs/solr.log\nlog4j.appender.file.layout=org.apache.log4j.PatternLayout\nlog4j.appender.file.layout.ConversionPattern=%-5p - %d{yyyy-MM-dd HH:mm:ss.SSS}; %C; %m\\n\n\nlog4j.logger.org.apache.zookeeper=WARN"
  },
  {
    "path": "oqa-solr/triplestore/solr/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\nExample Solr Home Directory\n=============================\n\nThis directory is provided as an example of what a \"Solr Home\" directory\nshould look like.\n\nIt's not strictly necessary that you copy all of the files in this\ndirectory when setting up a new instance of Solr, but it is recommended.\n\n\nBasic Directory Structure\n-------------------------\n\nThe Solr Home directory typically contains the following...\n\n* solr.xml *\n\nThis is the primary configuration file Solr looks for when starting.\nThis file specifies the list of \"SolrCores\" it should load, and high \nlevel configuration options that should be used for all SolrCores.\n\nPlease see the comments in ./solr.xml for more details.\n\nIf no solr.xml file is found, then Solr assumes that there should be\na single SolrCore named \"collection1\" and that the \"Instance Directory\" \nfor collection1 should be the same as the Solr Home Directory.\n\n* Individual SolrCore Instance Directories *\n\nAlthough solr.xml can be configured to look for SolrCore Instance Directories \nin any path, simple sub-directories of the Solr Home Dir using relative paths \nare common for many installations.  In this directory you can see the \n\"./collection1\" Instance Directory.\n\n* A Shared 'lib' Directory *\n\nAlthough solr.xml can be configured with an optional \"sharedLib\" attribute \nthat can point to any path, it is common to use a \"./lib\" sub-directory of the \nSolr Home Directory.\n\n* ZooKeeper Files *\n\nWhen using SolrCloud using the embedded ZooKeeper option for Solr, it is \ncommon to have a \"zoo.cfg\" file and \"zoo_data\" directories in the Solr Home \nDirectory.  Please see the SolrCloud wiki page for more details...\n\nhttps://wiki.apache.org/solr/SolrCloud\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/solr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--\n   This is an example of a simple \"solr.xml\" file for configuring one or \n   more Solr Cores, as well as allowing Cores to be added, removed, and \n   reloaded via HTTP requests.\n\n   More information about options available in this configuration file, \n   and Solr Core administration can be found online:\n   http://wiki.apache.org/solr/CoreAdmin\n-->\n\n<!--\n All (relative) paths are relative to the Solr Home Directory\n  \n  persistent: Save changes made via the API to this file\n  sharedLib: path to a lib directory that will be shared across all cores\n-->\n<solr persistent=\"true\">\n\t<!-- by default, this is 50 @ WARN\n  <logging enabled=\"true\">\n  \t<watcher size=\"100\" threshold=\"INFO\" />\n  </logging>\n   -->\n\n  <!--\n  adminPath: RequestHandler path to manage cores.  \n    If 'null' (or absent), cores will not be manageable via request handler\n  defaultCoreName: (optional) core to use when no core name is specified in an access url\n    \n  All of the attributes in cores after defaultCoreName only apply when running in SolrCloud mode.\n  You can read more about SolrCloud mode at http://wiki.apache.org/solr/SolrCloud\n  -->\n  <cores adminPath=\"/admin/cores\" defaultCoreName=\"collection1\" host=\"${host:}\" hostPort=\"${jetty.port:8983}\" hostContext=\"${hostContext:solr}\" zkClientTimeout=\"${zkClientTimeout:15000}\">\n    <core name=\"triplestore\" instanceDir=\"triplestore\" />\n  </cores>\n</solr>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/README.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\nExample SolrCore Instance Directory\n=============================\n\nThis directory is provided as an example of what an \"Instance Directory\"\nshould look like for a SolrCore\n\nIt's not strictly necessary that you copy all of the files in this\ndirectory when setting up a new SolrCores, but it is recommended.\n\n\nBasic Directory Structure\n-------------------------\n\nThe Solr Home directory typically contains the following sub-directories...\n\n   conf/\n        This directory is mandatory and must contain your solrconfig.xml\n        and schema.xml.  Any other optional configuration files would also \n        be kept here.\n\n   data/\n        This directory is the default location where Solr will keep your\n        index, and is used by the replication scripts for dealing with\n        snapshots.  You can override this location in the \n        conf/solrconfig.xml.  Solr will create this directory if it does not \n        already exist.\n\n   lib/\n        This directory is optional.  If it exists, Solr will load any Jars\n        found in this directory and use them to resolve any \"plugins\"\n        specified in your solrconfig.xml or schema.xml (ie: Analyzers,\n        Request Handlers, etc...).  Alternatively you can use the <lib>\n        syntax in conf/solrconfig.xml to direct Solr to your plugins.  See \n        the example conf/solrconfig.xml file for details.\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/admin-extra.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- The content of this page will be statically included into the top-\nright box of the cores overview page. Uncomment this as an example to \nsee there the content will show up.\n\n<img src=\"img/ico/construction.png\"> This line will appear at the top-\nright box on collection1's Overview\n-->\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/admin-extra.menu-bottom.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- admin-extra.menu-bottom.html -->\n<!--\n<li>\n  <a href=\"#\" style=\"background-image: url(img/ico/construction.png);\">\n    LAST ITEM\n  </a>\n</li>\n-->\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/admin-extra.menu-top.html",
    "content": "<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- admin-extra.menu-top.html -->\n<!--\n<li>\n  <a href=\"#\" style=\"background-image: url(img/ico/construction.png);\">\n    FIRST ITEM\n  </a>\n</li>\n-->\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/currency.xml",
    "content": "<?xml version=\"1.0\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- Example exchange rates file for CurrencyField type named \"currency\" in example schema -->\n\n<currencyConfig version=\"1.0\">\n  <rates>\n    <!-- Updated from http://www.exchangerate.com/ at 2011-09-27 -->\n    <rate from=\"USD\" to=\"ARS\" rate=\"4.333871\" comment=\"ARGENTINA Peso\" />\n    <rate from=\"USD\" to=\"AUD\" rate=\"1.025768\" comment=\"AUSTRALIA Dollar\" />\n    <rate from=\"USD\" to=\"EUR\" rate=\"0.743676\" comment=\"European Euro\" />\n    <rate from=\"USD\" to=\"BRL\" rate=\"1.881093\" comment=\"BRAZIL Real\" />\n    <rate from=\"USD\" to=\"CAD\" rate=\"1.030815\" comment=\"CANADA Dollar\" />\n    <rate from=\"USD\" to=\"CLP\" rate=\"519.0996\" comment=\"CHILE Peso\" />\n    <rate from=\"USD\" to=\"CNY\" rate=\"6.387310\" comment=\"CHINA Yuan\" />\n    <rate from=\"USD\" to=\"CZK\" rate=\"18.47134\" comment=\"CZECH REP. Koruna\" />\n    <rate from=\"USD\" to=\"DKK\" rate=\"5.515436\" comment=\"DENMARK Krone\" />\n    <rate from=\"USD\" to=\"HKD\" rate=\"7.801922\" comment=\"HONG KONG Dollar\" />\n    <rate from=\"USD\" to=\"HUF\" rate=\"215.6169\" comment=\"HUNGARY Forint\" />\n    <rate from=\"USD\" to=\"ISK\" rate=\"118.1280\" comment=\"ICELAND Krona\" />\n    <rate from=\"USD\" to=\"INR\" rate=\"49.49088\" comment=\"INDIA Rupee\" />\n    <rate from=\"USD\" to=\"XDR\" rate=\"0.641358\" comment=\"INTNL MON. FUND SDR\" />\n    <rate from=\"USD\" to=\"ILS\" rate=\"3.709739\" comment=\"ISRAEL Sheqel\" />\n    <rate from=\"USD\" to=\"JPY\" rate=\"76.32419\" comment=\"JAPAN Yen\" />\n    <rate from=\"USD\" to=\"KRW\" rate=\"1169.173\" comment=\"KOREA (SOUTH) Won\" />\n    <rate from=\"USD\" to=\"KWD\" rate=\"0.275142\" comment=\"KUWAIT Dinar\" />\n    <rate from=\"USD\" to=\"MXN\" rate=\"13.85895\" comment=\"MEXICO Peso\" />\n    <rate from=\"USD\" to=\"NZD\" rate=\"1.285159\" comment=\"NEW ZEALAND Dollar\" />\n    <rate from=\"USD\" to=\"NOK\" rate=\"5.859035\" comment=\"NORWAY Krone\" />\n    <rate from=\"USD\" to=\"PKR\" rate=\"87.57007\" comment=\"PAKISTAN Rupee\" />\n    <rate from=\"USD\" to=\"PEN\" rate=\"2.730683\" comment=\"PERU Sol\" />\n    <rate from=\"USD\" to=\"PHP\" rate=\"43.62039\" comment=\"PHILIPPINES Peso\" />\n    <rate from=\"USD\" to=\"PLN\" rate=\"3.310139\" comment=\"POLAND Zloty\" />\n    <rate from=\"USD\" to=\"RON\" rate=\"3.100932\" comment=\"ROMANIA Leu\" />\n    <rate from=\"USD\" to=\"RUB\" rate=\"32.14663\" comment=\"RUSSIA Ruble\" />\n    <rate from=\"USD\" to=\"SAR\" rate=\"3.750465\" comment=\"SAUDI ARABIA Riyal\" />\n    <rate from=\"USD\" to=\"SGD\" rate=\"1.299352\" comment=\"SINGAPORE Dollar\" />\n    <rate from=\"USD\" to=\"ZAR\" rate=\"8.329761\" comment=\"SOUTH AFRICA Rand\" />\n    <rate from=\"USD\" to=\"SEK\" rate=\"6.883442\" comment=\"SWEDEN Krona\" />\n    <rate from=\"USD\" to=\"CHF\" rate=\"0.906035\" comment=\"SWITZERLAND Franc\" />\n    <rate from=\"USD\" to=\"TWD\" rate=\"30.40283\" comment=\"TAIWAN Dollar\" />\n    <rate from=\"USD\" to=\"THB\" rate=\"30.89487\" comment=\"THAILAND Baht\" />\n    <rate from=\"USD\" to=\"AED\" rate=\"3.672955\" comment=\"U.A.E. Dirham\" />\n    <rate from=\"USD\" to=\"UAH\" rate=\"7.988582\" comment=\"UKRAINE Hryvnia\" />\n    <rate from=\"USD\" to=\"GBP\" rate=\"0.647910\" comment=\"UNITED KINGDOM Pound\" />\n    \n    <!-- Cross-rates for some common currencies -->\n    <rate from=\"EUR\" to=\"GBP\" rate=\"0.869914\" />  \n    <rate from=\"EUR\" to=\"NOK\" rate=\"7.800095\" />  \n    <rate from=\"GBP\" to=\"NOK\" rate=\"8.966508\" />  \n  </rates>\n</currencyConfig>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/elevate.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- If this file is found in the config directory, it will only be\n     loaded once at startup.  If it is found in Solr's data\n     directory, it will be re-loaded every commit.\n\n   See http://wiki.apache.org/solr/QueryElevationComponent for more info\n\n-->\n<elevate>\n <query text=\"foo bar\">\n  <doc id=\"1\" />\n  <doc id=\"2\" />\n  <doc id=\"3\" />\n </query>\n \n <query text=\"ipod\">\n   <doc id=\"MA147LL/A\" />  <!-- put the actual ipod at the top -->\n   <doc id=\"IW-02\" exclude=\"true\" /> <!-- exclude this cable -->\n </query>\n \n</elevate>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/contractions_ca.txt",
    "content": "# Set of Catalan contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nd\nl\nm\nn\ns\nt\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/contractions_fr.txt",
    "content": "# Set of French contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nl\nm\nt\nqu\nn\ns\nj\nd\nc\njusqu\nquoiqu\nlorsqu\npuisqu\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/contractions_ga.txt",
    "content": "# Set of Irish contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nd\nm\nb\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/contractions_it.txt",
    "content": "# Set of Italian contractions for ElisionFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nc\nl \nall \ndall \ndell \nnell \nsull \ncoll \npell \ngl \nagl \ndagl \ndegl \nnegl \nsugl \nun \nm \nt \ns \nv \nd\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/hyphenations_ga.txt",
    "content": "# Set of Irish hyphenations for StopFilter\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nh\nn\nt\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stemdict_nl.txt",
    "content": "# Set of overrides for the dutch stemmer\n# TODO: load this as a resource from the analyzer and sync it in build.xml\nfiets\tfiets\nbromfiets\tbromfiets\nei\teier\nkind\tkinder\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stoptags_ja.txt",
    "content": "#\n# This file defines a Japanese stoptag set for JapanesePartOfSpeechStopFilter.\n#\n# Any token with a part-of-speech tag that exactly matches those defined in this\n# file are removed from the token stream.\n#\n# Set your own stoptags by uncommenting the lines below.  Note that comments are\n# not allowed on the same line as a stoptag.  See LUCENE-3745 for frequency lists,\n# etc. that can be useful for building you own stoptag set.\n#\n# The entire possible tagset is provided below for convenience.\n#\n#####\n#  noun: unclassified nouns\n#名詞\n#\n#  noun-common: Common nouns or nouns where the sub-classification is undefined\n#名詞-一般\n#\n#  noun-proper: Proper nouns where the sub-classification is undefined \n#名詞-固有名詞\n#\n#  noun-proper-misc: miscellaneous proper nouns\n#名詞-固有名詞-一般\n#\n#  noun-proper-person: Personal names where the sub-classification is undefined\n#名詞-固有名詞-人名\n#\n#  noun-proper-person-misc: names that cannot be divided into surname and \n#  given name; foreign names; names where the surname or given name is unknown.\n#  e.g. お市の方\n#名詞-固有名詞-人名-一般\n#\n#  noun-proper-person-surname: Mainly Japanese surnames.\n#  e.g. 山田\n#名詞-固有名詞-人名-姓\n#\n#  noun-proper-person-given_name: Mainly Japanese given names.\n#  e.g. 太郎\n#名詞-固有名詞-人名-名\n#\n#  noun-proper-organization: Names representing organizations.\n#  e.g. 通産省, NHK\n#名詞-固有名詞-組織\n#\n#  noun-proper-place: Place names where the sub-classification is undefined\n#名詞-固有名詞-地域\n#\n#  noun-proper-place-misc: Place names excluding countries.\n#  e.g. アジア, バルセロナ, 京都\n#名詞-固有名詞-地域-一般\n#\n#  noun-proper-place-country: Country names. \n#  e.g. 日本, オーストラリア\n#名詞-固有名詞-地域-国\n#\n#  noun-pronoun: Pronouns where the sub-classification is undefined\n#名詞-代名詞\n#\n#  noun-pronoun-misc: miscellaneous pronouns: \n#  e.g. それ, ここ, あいつ, あなた, あちこち, いくつ, どこか, なに, みなさん, みんな, わたくし, われわれ\n#名詞-代名詞-一般\n#\n#  noun-pronoun-contraction: Spoken language contraction made by combining a \n#  pronoun and the particle 'wa'.\n#  e.g. ありゃ, こりゃ, こりゃあ, そりゃ, そりゃあ \n#名詞-代名詞-縮約\n#\n#  noun-adverbial: Temporal nouns such as names of days or months that behave \n#  like adverbs. Nouns that represent amount or ratios and can be used adverbially,\n#  e.g. 金曜, 一月, 午後, 少量\n#名詞-副詞可能\n#\n#  noun-verbal: Nouns that take arguments with case and can appear followed by \n#  'suru' and related verbs (する, できる, なさる, くださる)\n#  e.g. インプット, 愛着, 悪化, 悪戦苦闘, 一安心, 下取り\n#名詞-サ変接続\n#\n#  noun-adjective-base: The base form of adjectives, words that appear before な (\"na\")\n#  e.g. 健康, 安易, 駄目, だめ\n#名詞-形容動詞語幹\n#\n#  noun-numeric: Arabic numbers, Chinese numerals, and counters like 何 (回), 数.\n#  e.g. 0, 1, 2, 何, 数, 幾\n#名詞-数\n#\n#  noun-affix: noun affixes where the sub-classification is undefined\n#名詞-非自立\n#\n#  noun-affix-misc: Of adnominalizers, the case-marker の (\"no\"), and words that \n#  attach to the base form of inflectional words, words that cannot be classified \n#  into any of the other categories below. This category includes indefinite nouns.\n#  e.g. あかつき, 暁, かい, 甲斐, 気, きらい, 嫌い, くせ, 癖, こと, 事, ごと, 毎, しだい, 次第, \n#       順, せい, 所為, ついで, 序で, つもり, 積もり, 点, どころ, の, はず, 筈, はずみ, 弾み, \n#       拍子, ふう, ふり, 振り, ほう, 方, 旨, もの, 物, 者, ゆえ, 故, ゆえん, 所以, わけ, 訳,\n#       わり, 割り, 割, ん-口語/, もん-口語/\n#名詞-非自立-一般\n#\n#  noun-affix-adverbial: noun affixes that that can behave as adverbs.\n#  e.g. あいだ, 間, あげく, 挙げ句, あと, 後, 余り, 以外, 以降, 以後, 以上, 以前, 一方, うえ, \n#       上, うち, 内, おり, 折り, かぎり, 限り, きり, っきり, 結果, ころ, 頃, さい, 際, 最中, さなか, \n#       最中, じたい, 自体, たび, 度, ため, 為, つど, 都度, とおり, 通り, とき, 時, ところ, 所, \n#       とたん, 途端, なか, 中, のち, 後, ばあい, 場合, 日, ぶん, 分, ほか, 他, まえ, 前, まま, \n#       儘, 侭, みぎり, 矢先\n#名詞-非自立-副詞可能\n#\n#  noun-affix-aux: noun affixes treated as 助動詞 (\"auxiliary verb\") in school grammars \n#  with the stem よう(だ) (\"you(da)\").\n#  e.g.  よう, やう, 様 (よう)\n#名詞-非自立-助動詞語幹\n#  \n#  noun-affix-adjective-base: noun affixes that can connect to the indeclinable\n#  connection form な (aux \"da\").\n#  e.g. みたい, ふう\n#名詞-非自立-形容動詞語幹\n#\n#  noun-special: special nouns where the sub-classification is undefined.\n#名詞-特殊\n#\n#  noun-special-aux: The そうだ (\"souda\") stem form that is used for reporting news, is \n#  treated as 助動詞 (\"auxiliary verb\") in school grammars, and attach to the base \n#  form of inflectional words.\n#  e.g. そう\n#名詞-特殊-助動詞語幹\n#\n#  noun-suffix: noun suffixes where the sub-classification is undefined.\n#名詞-接尾\n#\n#  noun-suffix-misc: Of the nouns or stem forms of other parts of speech that connect \n#  to ガル or タイ and can combine into compound nouns, words that cannot be classified into\n#  any of the other categories below. In general, this category is more inclusive than \n#  接尾語 (\"suffix\") and is usually the last element in a compound noun.\n#  e.g. おき, かた, 方, 甲斐 (がい), がかり, ぎみ, 気味, ぐるみ, (～した) さ, 次第, 済 (ず) み,\n#       よう, (でき)っこ, 感, 観, 性, 学, 類, 面, 用\n#名詞-接尾-一般\n#\n#  noun-suffix-person: Suffixes that form nouns and attach to person names more often\n#  than other nouns.\n#  e.g. 君, 様, 著\n#名詞-接尾-人名\n#\n#  noun-suffix-place: Suffixes that form nouns and attach to place names more often \n#  than other nouns.\n#  e.g. 町, 市, 県\n#名詞-接尾-地域\n#\n#  noun-suffix-verbal: Of the suffixes that attach to nouns and form nouns, those that \n#  can appear before スル (\"suru\").\n#  e.g. 化, 視, 分け, 入り, 落ち, 買い\n#名詞-接尾-サ変接続\n#\n#  noun-suffix-aux: The stem form of そうだ (様態) that is used to indicate conditions, \n#  is treated as 助動詞 (\"auxiliary verb\") in school grammars, and attach to the \n#  conjunctive form of inflectional words.\n#  e.g. そう\n#名詞-接尾-助動詞語幹\n#\n#  noun-suffix-adjective-base: Suffixes that attach to other nouns or the conjunctive \n#  form of inflectional words and appear before the copula だ (\"da\").\n#  e.g. 的, げ, がち\n#名詞-接尾-形容動詞語幹\n#\n#  noun-suffix-adverbial: Suffixes that attach to other nouns and can behave as adverbs.\n#  e.g. 後 (ご), 以後, 以降, 以前, 前後, 中, 末, 上, 時 (じ)\n#名詞-接尾-副詞可能\n#\n#  noun-suffix-classifier: Suffixes that attach to numbers and form nouns. This category \n#  is more inclusive than 助数詞 (\"classifier\") and includes common nouns that attach \n#  to numbers.\n#  e.g. 個, つ, 本, 冊, パーセント, cm, kg, カ月, か国, 区画, 時間, 時半\n#名詞-接尾-助数詞\n#\n#  noun-suffix-special: Special suffixes that mainly attach to inflecting words.\n#  e.g. (楽し) さ, (考え) 方\n#名詞-接尾-特殊\n#\n#  noun-suffix-conjunctive: Nouns that behave like conjunctions and join two words \n#  together.\n#  e.g. (日本) 対 (アメリカ), 対 (アメリカ), (3) 対 (5), (女優) 兼 (主婦)\n#名詞-接続詞的\n#\n#  noun-verbal_aux: Nouns that attach to the conjunctive particle て (\"te\") and are \n#  semantically verb-like.\n#  e.g. ごらん, ご覧, 御覧, 頂戴\n#名詞-動詞非自立的\n#\n#  noun-quotation: text that cannot be segmented into words, proverbs, Chinese poetry, \n#  dialects, English, etc. Currently, the only entry for 名詞 引用文字列 (\"noun quotation\") \n#  is いわく (\"iwaku\").\n#名詞-引用文字列\n#\n#  noun-nai_adjective: Words that appear before the auxiliary verb ない (\"nai\") and\n#  behave like an adjective.\n#  e.g. 申し訳, 仕方, とんでも, 違い\n#名詞-ナイ形容詞語幹\n#\n#####\n#  prefix: unclassified prefixes\n#接頭詞\n#\n#  prefix-nominal: Prefixes that attach to nouns (including adjective stem forms) \n#  excluding numerical expressions.\n#  e.g. お (水), 某 (氏), 同 (社), 故 (～氏), 高 (品質), お (見事), ご (立派)\n#接頭詞-名詞接続\n#\n#  prefix-verbal: Prefixes that attach to the imperative form of a verb or a verb\n#  in conjunctive form followed by なる/なさる/くださる.\n#  e.g. お (読みなさい), お (座り)\n#接頭詞-動詞接続\n#\n#  prefix-adjectival: Prefixes that attach to adjectives.\n#  e.g. お (寒いですねえ), バカ (でかい)\n#接頭詞-形容詞接続\n#\n#  prefix-numerical: Prefixes that attach to numerical expressions.\n#  e.g. 約, およそ, 毎時\n#接頭詞-数接続\n#\n#####\n#  verb: unclassified verbs\n#動詞\n#\n#  verb-main:\n#動詞-自立\n#\n#  verb-auxiliary:\n#動詞-非自立\n#\n#  verb-suffix:\n#動詞-接尾\n#\n#####\n#  adjective: unclassified adjectives\n#形容詞\n#\n#  adjective-main:\n#形容詞-自立\n#\n#  adjective-auxiliary:\n#形容詞-非自立\n#\n#  adjective-suffix:\n#形容詞-接尾\n#\n#####\n#  adverb: unclassified adverbs\n#副詞\n#\n#  adverb-misc: Words that can be segmented into one unit and where adnominal \n#  modification is not possible.\n#  e.g. あいかわらず, 多分\n#副詞-一般\n#\n#  adverb-particle_conjunction: Adverbs that can be followed by の, は, に, \n#  な, する, だ, etc.\n#  e.g. こんなに, そんなに, あんなに, なにか, なんでも\n#副詞-助詞類接続\n#\n#####\n#  adnominal: Words that only have noun-modifying forms.\n#  e.g. この, その, あの, どの, いわゆる, なんらかの, 何らかの, いろんな, こういう, そういう, ああいう, \n#       どういう, こんな, そんな, あんな, どんな, 大きな, 小さな, おかしな, ほんの, たいした, \n#       「(, も) さる (ことながら)」, 微々たる, 堂々たる, 単なる, いかなる, 我が」「同じ, 亡き\n#連体詞\n#\n#####\n#  conjunction: Conjunctions that can occur independently.\n#  e.g. が, けれども, そして, じゃあ, それどころか\n接続詞\n#\n#####\n#  particle: unclassified particles.\n助詞\n#\n#  particle-case: case particles where the subclassification is undefined.\n助詞-格助詞\n#\n#  particle-case-misc: Case particles.\n#  e.g. から, が, で, と, に, へ, より, を, の, にて\n助詞-格助詞-一般\n#\n#  particle-case-quote: the \"to\" that appears after nouns, a person’s speech, \n#  quotation marks, expressions of decisions from a meeting, reasons, judgements,\n#  conjectures, etc.\n#  e.g. ( だ) と (述べた.), ( である) と (して執行猶予...)\n助詞-格助詞-引用\n#\n#  particle-case-compound: Compounds of particles and verbs that mainly behave \n#  like case particles.\n#  e.g. という, といった, とかいう, として, とともに, と共に, でもって, にあたって, に当たって, に当って,\n#       にあたり, に当たり, に当り, に当たる, にあたる, において, に於いて,に於て, における, に於ける, \n#       にかけ, にかけて, にかんし, に関し, にかんして, に関して, にかんする, に関する, に際し, \n#       に際して, にしたがい, に従い, に従う, にしたがって, に従って, にたいし, に対し, にたいして, \n#       に対して, にたいする, に対する, について, につき, につけ, につけて, につれ, につれて, にとって,\n#       にとり, にまつわる, によって, に依って, に因って, により, に依り, に因り, による, に依る, に因る, \n#       にわたって, にわたる, をもって, を以って, を通じ, を通じて, を通して, をめぐって, をめぐり, をめぐる,\n#       って-口語/, ちゅう-関西弁「という」/, (何) ていう (人)-口語/, っていう-口語/, といふ, とかいふ\n助詞-格助詞-連語\n#\n#  particle-conjunctive:\n#  e.g. から, からには, が, けれど, けれども, けど, し, つつ, て, で, と, ところが, どころか, とも, ども, \n#       ながら, なり, ので, のに, ば, ものの, や ( した), やいなや, (ころん) じゃ(いけない)-口語/, \n#       (行っ) ちゃ(いけない)-口語/, (言っ) たって (しかたがない)-口語/, (それがなく)ったって (平気)-口語/\n助詞-接続助詞\n#\n#  particle-dependency:\n#  e.g. こそ, さえ, しか, すら, は, も, ぞ\n助詞-係助詞\n#\n#  particle-adverbial:\n#  e.g. がてら, かも, くらい, 位, ぐらい, しも, (学校) じゃ(これが流行っている)-口語/, \n#       (それ)じゃあ (よくない)-口語/, ずつ, (私) なぞ, など, (私) なり (に), (先生) なんか (大嫌い)-口語/,\n#       (私) なんぞ, (先生) なんて (大嫌い)-口語/, のみ, だけ, (私) だって-口語/, だに, \n#       (彼)ったら-口語/, (お茶) でも (いかが), 等 (とう), (今後) とも, ばかり, ばっか-口語/, ばっかり-口語/,\n#       ほど, 程, まで, 迄, (誰) も (が)([助詞-格助詞] および [助詞-係助詞] の前に位置する「も」)\n助詞-副助詞\n#\n#  particle-interjective: particles with interjective grammatical roles.\n#  e.g. (松島) や\n助詞-間投助詞\n#\n#  particle-coordinate:\n#  e.g. と, たり, だの, だり, とか, なり, や, やら\n助詞-並立助詞\n#\n#  particle-final:\n#  e.g. かい, かしら, さ, ぜ, (だ)っけ-口語/, (とまってる) で-方言/, な, ナ, なあ-口語/, ぞ, ね, ネ, \n#       ねぇ-口語/, ねえ-口語/, ねん-方言/, の, のう-口語/, や, よ, ヨ, よぉ-口語/, わ, わい-口語/\n助詞-終助詞\n#\n#  particle-adverbial/conjunctive/final: The particle \"ka\" when unknown whether it is \n#  adverbial, conjunctive, or sentence final. For example:\n#       (a) 「A か B か」. Ex:「(国内で運用する) か,(海外で運用する) か (.)」\n#       (b) Inside an adverb phrase. Ex:「(幸いという) か (, 死者はいなかった.)」\n#           「(祈りが届いたせい) か (, 試験に合格した.)」\n#       (c) 「かのように」. Ex:「(何もなかった) か (のように振る舞った.)」\n#  e.g. か\n助詞-副助詞／並立助詞／終助詞\n#\n#  particle-adnominalizer: The \"no\" that attaches to nouns and modifies \n#  non-inflectional words.\n助詞-連体化\n#\n#  particle-adnominalizer: The \"ni\" and \"to\" that appear following nouns and adverbs \n#  that are giongo, giseigo, or gitaigo.\n#  e.g. に, と\n助詞-副詞化\n#\n#  particle-special: A particle that does not fit into one of the above classifications. \n#  This includes particles that are used in Tanka, Haiku, and other poetry.\n#  e.g. かな, けむ, ( しただろう) に, (あんた) にゃ(わからん), (俺) ん (家)\n助詞-特殊\n#\n#####\n#  auxiliary-verb:\n助動詞\n#\n#####\n#  interjection: Greetings and other exclamations.\n#  e.g. おはよう, おはようございます, こんにちは, こんばんは, ありがとう, どうもありがとう, ありがとうございます, \n#       いただきます, ごちそうさま, さよなら, さようなら, はい, いいえ, ごめん, ごめんなさい\n#感動詞\n#\n#####\n#  symbol: unclassified Symbols.\n記号\n#\n#  symbol-misc: A general symbol not in one of the categories below.\n#  e.g. [○◎@$〒→+]\n記号-一般\n#\n#  symbol-comma: Commas\n#  e.g. [,、]\n記号-読点\n#\n#  symbol-period: Periods and full stops.\n#  e.g. [.．。]\n記号-句点\n#\n#  symbol-space: Full-width whitespace.\n記号-空白\n#\n#  symbol-open_bracket:\n#  e.g. [({‘“『【]\n記号-括弧開\n#\n#  symbol-close_bracket:\n#  e.g. [)}’”』」】]\n記号-括弧閉\n#\n#  symbol-alphabetic:\n#記号-アルファベット\n#\n#####\n#  other: unclassified other\n#その他\n#\n#  other-interjection: Words that are hard to classify as noun-suffixes or \n#  sentence-final particles.\n#  e.g. (だ)ァ\nその他-間投\n#\n#####\n#  filler: Aizuchi that occurs during a conversation or sounds inserted as filler.\n#  e.g. あの, うんと, えと\nフィラー\n#\n#####\n#  non-verbal: non-verbal sound.\n非言語音\n#\n#####\n#  fragment:\n#語断片\n#\n#####\n#  unknown: unknown part of speech.\n#未知語\n#\n##### End of file\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_ar.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\n# Cleaned on October 11, 2009 (not normalized, so use before normalization)\n# This means that when modifying this list, you might need to add some \n# redundant entries, for example containing forms with both أ and ا\nمن\nومن\nمنها\nمنه\nفي\nوفي\nفيها\nفيه\nو\nف\nثم\nاو\nأو\nب\nبها\nبه\nا\nأ\nاى\nاي\nأي\nأى\nلا\nولا\nالا\nألا\nإلا\nلكن\nما\nوما\nكما\nفما\nعن\nمع\nاذا\nإذا\nان\nأن\nإن\nانها\nأنها\nإنها\nانه\nأنه\nإنه\nبان\nبأن\nفان\nفأن\nوان\nوأن\nوإن\nالتى\nالتي\nالذى\nالذي\nالذين\nالى\nالي\nإلى\nإلي\nعلى\nعليها\nعليه\nاما\nأما\nإما\nايضا\nأيضا\nكل\nوكل\nلم\nولم\nلن\nولن\nهى\nهي\nهو\nوهى\nوهي\nوهو\nفهى\nفهي\nفهو\nانت\nأنت\nلك\nلها\nله\nهذه\nهذا\nتلك\nذلك\nهناك\nكانت\nكان\nيكون\nتكون\nوكانت\nوكان\nغير\nبعض\nقد\nنحو\nبين\nبينما\nمنذ\nضمن\nحيث\nالان\nالآن\nخلال\nبعد\nقبل\nحتى\nعند\nعندما\nلدى\nجميع\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_bg.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\nа\nаз\nако\nала\nбе\nбез\nбеше\nби\nбил\nбила\nбили\nбило\nблизо\nбъдат\nбъде\nбяха\nв\nвас\nваш\nваша\nвероятно\nвече\nвзема\nви\nвие\nвинаги\nвсе\nвсеки\nвсички\nвсичко\nвсяка\nвъв\nвъпреки\nвърху\nг\nги\nглавно\nго\nд\nда\nдали\nдо\nдокато\nдокога\nдори\nдосега\nдоста\nе\nедва\nедин\nето\nза\nзад\nзаедно\nзаради\nзасега\nзатова\nзащо\nзащото\nи\nиз\nили\nим\nима\nимат\nиска\nй\nказа\nкак\nкаква\nкакво\nкакто\nкакъв\nкато\nкога\nкогато\nкоето\nкоито\nкой\nкойто\nколко\nкоято\nкъде\nкъдето\nкъм\nли\nм\nме\nмежду\nмен\nми\nмнозина\nмога\nмогат\nможе\nмоля\nмомента\nму\nн\nна\nнад\nназад\nнай\nнаправи\nнапред\nнапример\nнас\nне\nнего\nнея\nни\nние\nникой\nнито\nно\nнякои\nнякой\nняма\nобаче\nоколо\nосвен\nособено\nот\nотгоре\nотново\nоще\nпак\nпо\nповече\nповечето\nпод\nпоне\nпоради\nпосле\nпочти\nправи\nпред\nпреди\nпрез\nпри\nпък\nпърво\nс\nса\nсамо\nсе\nсега\nси\nскоро\nслед\nсме\nспоред\nсред\nсрещу\nсте\nсъм\nсъс\nсъщо\nт\nтази\nтака\nтакива\nтакъв\nтам\nтвой\nте\nтези\nти\nтн\nто\nтова\nтогава\nтози\nтой\nтолкова\nточно\nтрябва\nтук\nтъй\nтя\nтях\nу\nхаресва\nч\nче\nчесто\nчрез\nще\nщом\nя\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_ca.txt",
    "content": "# Catalan stopwords from http://github.com/vcl/cue.language (Apache 2 Licensed)\na\nabans\nací\nah\naixí\naixò\nal\nals\naleshores\nalgun\nalguna\nalgunes\nalguns\nalhora\nallà\nallí\nallò\naltra\naltre\naltres\namb\nambdós\nambdues\napa\naquell\naquella\naquelles\naquells\naquest\naquesta\naquestes\naquests\naquí\nbaix\ncada\ncadascú\ncadascuna\ncadascunes\ncadascuns\ncom\ncontra\nd'un\nd'una\nd'unes\nd'uns\ndalt\nde\ndel\ndels\ndes\ndesprés\ndins\ndintre\ndonat\ndoncs\ndurant\ne\neh\nel\nels\nem\nen\nencara\nens\nentre\nérem\neren\néreu\nes\nés\nesta\nestà\nestàvem\nestaven\nestàveu\nesteu\net\netc\nets\nfins\nfora\ngairebé\nha\nhan\nhas\nhavia\nhe\nhem\nheu\nhi \nho\ni\nigual\niguals\nja\nl'hi\nla\nles\nli\nli'n\nllavors\nm'he\nma\nmal\nmalgrat\nmateix\nmateixa\nmateixes\nmateixos\nme\nmentre\nmés\nmeu\nmeus\nmeva\nmeves\nmolt\nmolta\nmoltes\nmolts\nmon\nmons\nn'he\nn'hi\nne\nni\nno\nnogensmenys\nnomés\nnosaltres\nnostra\nnostre\nnostres\no\noh\noi\non\npas\npel\npels\nper\nperò\nperquè\npoc \npoca\npocs\npoques\npotser\npropi\nqual\nquals\nquan\nquant \nque\nquè\nquelcom\nqui\nquin\nquina\nquines\nquins\ns'ha\ns'han\nsa\nsemblant\nsemblants\nses\nseu \nseus\nseva\nseva\nseves\nsi\nsobre\nsobretot\nsóc\nsolament\nsols\nson \nsón\nsons \nsota\nsou\nt'ha\nt'han\nt'he\nta\ntal\ntambé\ntampoc\ntan\ntant\ntanta\ntantes\nteu\nteus\nteva\nteves\nton\ntons\ntot\ntota\ntotes\ntots\nun\nuna\nunes\nuns\nus\nva\nvaig\nvam\nvan\nvas\nveu\nvosaltres\nvostra\nvostre\nvostres\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_cz.txt",
    "content": "a\ns\nk\no\ni\nu\nv\nz\ndnes\ncz\ntímto\nbudeš\nbudem\nbyli\njseš\nmůj\nsvým\nta\ntomto\ntohle\ntuto\ntyto\njej\nzda\nproč\nmáte\ntato\nkam\ntohoto\nkdo\nkteří\nmi\nnám\ntom\ntomuto\nmít\nnic\nproto\nkterou\nbyla\ntoho\nprotože\nasi\nho\nnaši\nnapište\nre\ncož\ntím\ntakže\nsvých\njejí\nsvými\njste\naj\ntu\ntedy\nteto\nbylo\nkde\nke\npravé\nji\nnad\nnejsou\nči\npod\ntéma\nmezi\npřes\nty\npak\nvám\nani\nkdyž\nvšak\nneg\njsem\ntento\nčlánku\nčlánky\naby\njsme\npřed\npta\njejich\nbyl\nještě\naž\nbez\ntaké\npouze\nprvní\nvaše\nkterá\nnás\nnový\ntipy\npokud\nmůže\nstrana\njeho\nsvé\njiné\nzprávy\nnové\nnení\nvás\njen\npodle\nzde\nuž\nbýt\nvíce\nbude\njiž\nnež\nkterý\nby\nkteré\nco\nnebo\nten\ntak\nmá\npři\nod\npo\njsou\njak\ndalší\nale\nsi\nse\nve\nto\njako\nza\nzpět\nze\ndo\npro\nje\nna\natd\natp\njakmile\npřičemž\njá\non\nona\nono\noni\nony\nmy\nvy\njí\nji\nmě\nmne\njemu\ntomu\ntěm\ntěmu\nněmu\nněmuž\njehož\njíž\njelikož\njež\njakož\nnačež\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_da.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/danish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Danish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n\nog           | and\ni            | in\njeg          | I\ndet          | that (dem. pronoun)/it (pers. pronoun)\nat           | that (in front of a sentence)/to (with infinitive)\nen           | a/an\nden          | it (pers. pronoun)/that (dem. pronoun)\ntil          | to/at/for/until/against/by/of/into, more\ner           | present tense of \"to be\"\nsom          | who, as\npå           | on/upon/in/on/at/to/after/of/with/for, on\nde           | they\nmed          | with/by/in, along\nhan          | he\naf           | of/by/from/off/for/in/with/on, off\nfor          | at/for/to/from/by/of/ago, in front/before, because\nikke         | not\nder          | who/which, there/those\nvar          | past tense of \"to be\"\nmig          | me/myself\nsig          | oneself/himself/herself/itself/themselves\nmen          | but\net           | a/an/one, one (number), someone/somebody/one\nhar          | present tense of \"to have\"\nom           | round/about/for/in/a, about/around/down, if\nvi           | we\nmin          | my\nhavde        | past tense of \"to have\"\nham          | him\nhun          | she\nnu           | now\nover         | over/above/across/by/beyond/past/on/about, over/past\nda           | then, when/as/since\nfra          | from/off/since, off, since\ndu           | you\nud           | out\nsin          | his/her/its/one's\ndem          | them\nos           | us/ourselves\nop           | up\nman          | you/one\nhans         | his\nhvor         | where\neller        | or\nhvad         | what\nskal         | must/shall etc.\nselv         | myself/youself/herself/ourselves etc., even\nher          | here\nalle         | all/everyone/everybody etc.\nvil          | will (verb)\nblev         | past tense of \"to stay/to remain/to get/to become\"\nkunne        | could\nind          | in\nnår          | when\nvære         | present tense of \"to be\"\ndog          | however/yet/after all\nnoget        | something\nville        | would\njo           | you know/you see (adv), yes\nderes        | their/theirs\nefter        | after/behind/according to/for/by/from, later/afterwards\nned          | down\nskulle       | should\ndenne        | this\nend          | than\ndette        | this\nmit          | my/mine\nogså         | also\nunder        | under/beneath/below/during, below/underneath\nhave         | have\ndig          | you\nanden        | other\nhende        | her\nmine         | my\nalt          | everything\nmeget        | much/very, plenty of\nsit          | his, her, its, one's\nsine         | his, her, its, one's\nvor          | our\nmod          | against\ndisse        | these\nhvis         | if\ndin          | your/yours\nnogle        | some\nhos          | by/at\nblive        | be/become\nmange        | many\nad           | by/through\nbliver       | present tense of \"to be/to become\"\nhendes       | her/hers\nværet        | be\nthi          | for (conj)\njer          | you\nsådan        | such, like this/like that\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_de.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/german/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A German stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | The number of forms in this list is reduced significantly by passing it\n | through the German stemmer.\n\n\naber           |  but\n\nalle           |  all\nallem\nallen\naller\nalles\n\nals            |  than, as\nalso           |  so\nam             |  an + dem\nan             |  at\n\nander          |  other\nandere\nanderem\nanderen\nanderer\nanderes\nanderm\nandern\nanderr\nanders\n\nauch           |  also\nauf            |  on\naus            |  out of\nbei            |  by\nbin            |  am\nbis            |  until\nbist           |  art\nda             |  there\ndamit          |  with it\ndann           |  then\n\nder            |  the\nden\ndes\ndem\ndie\ndas\n\ndaß            |  that\n\nderselbe       |  the same\nderselben\ndenselben\ndesselben\ndemselben\ndieselbe\ndieselben\ndasselbe\n\ndazu           |  to that\n\ndein           |  thy\ndeine\ndeinem\ndeinen\ndeiner\ndeines\n\ndenn           |  because\n\nderer          |  of those\ndessen         |  of him\n\ndich           |  thee\ndir            |  to thee\ndu             |  thou\n\ndies           |  this\ndiese\ndiesem\ndiesen\ndieser\ndieses\n\n\ndoch           |  (several meanings)\ndort           |  (over) there\n\n\ndurch          |  through\n\nein            |  a\neine\neinem\neinen\neiner\neines\n\neinig          |  some\neinige\neinigem\neinigen\neiniger\neiniges\n\neinmal         |  once\n\ner             |  he\nihn            |  him\nihm            |  to him\n\nes             |  it\netwas          |  something\n\neuer           |  your\neure\neurem\neuren\neurer\neures\n\nfür            |  for\ngegen          |  towards\ngewesen        |  p.p. of sein\nhab            |  have\nhabe           |  have\nhaben          |  have\nhat            |  has\nhatte          |  had\nhatten         |  had\nhier           |  here\nhin            |  there\nhinter         |  behind\n\nich            |  I\nmich           |  me\nmir            |  to me\n\n\nihr            |  you, to her\nihre\nihrem\nihren\nihrer\nihres\neuch           |  to you\n\nim             |  in + dem\nin             |  in\nindem          |  while\nins            |  in + das\nist            |  is\n\njede           |  each, every\njedem\njeden\njeder\njedes\n\njene           |  that\njenem\njenen\njener\njenes\n\njetzt          |  now\nkann           |  can\n\nkein           |  no\nkeine\nkeinem\nkeinen\nkeiner\nkeines\n\nkönnen         |  can\nkönnte         |  could\nmachen         |  do\nman            |  one\n\nmanche         |  some, many a\nmanchem\nmanchen\nmancher\nmanches\n\nmein           |  my\nmeine\nmeinem\nmeinen\nmeiner\nmeines\n\nmit            |  with\nmuss           |  must\nmusste         |  had to\nnach           |  to(wards)\nnicht          |  not\nnichts         |  nothing\nnoch           |  still, yet\nnun            |  now\nnur            |  only\nob             |  whether\noder           |  or\nohne           |  without\nsehr           |  very\n\nsein           |  his\nseine\nseinem\nseinen\nseiner\nseines\n\nselbst         |  self\nsich           |  herself\n\nsie            |  they, she\nihnen          |  to them\n\nsind           |  are\nso             |  so\n\nsolche         |  such\nsolchem\nsolchen\nsolcher\nsolches\n\nsoll           |  shall\nsollte         |  should\nsondern        |  but\nsonst          |  else\nüber           |  over\num             |  about, around\nund            |  and\n\nuns            |  us\nunse\nunsem\nunsen\nunser\nunses\n\nunter          |  under\nviel           |  much\nvom            |  von + dem\nvon            |  from\nvor            |  before\nwährend        |  while\nwar            |  was\nwaren          |  were\nwarst          |  wast\nwas            |  what\nweg            |  away, off\nweil           |  because\nweiter         |  further\n\nwelche         |  which\nwelchem\nwelchen\nwelcher\nwelches\n\nwenn           |  when\nwerde          |  will\nwerden         |  will\nwie            |  how\nwieder         |  again\nwill           |  want\nwir            |  we\nwird           |  will\nwirst          |  willst\nwo             |  where\nwollen         |  want\nwollte         |  wanted\nwürde          |  would\nwürden         |  would\nzu             |  to\nzum            |  zu + dem\nzur            |  zu + der\nzwar           |  indeed\nzwischen       |  between\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_el.txt",
    "content": "# Lucene Greek Stopwords list\n# Note: by default this file is used after GreekLowerCaseFilter,\n# so when modifying this file use 'σ' instead of 'ς' \nο\nη\nτο\nοι\nτα\nτου\nτησ\nτων\nτον\nτην\nκαι \nκι\nκ\nειμαι\nεισαι\nειναι\nειμαστε\nειστε\nστο\nστον\nστη\nστην\nμα\nαλλα\nαπο\nγια\nπροσ\nμε\nσε\nωσ\nπαρα\nαντι\nκατα\nμετα\nθα\nνα\nδε\nδεν\nμη\nμην\nεπι\nενω\nεαν\nαν\nτοτε\nπου\nπωσ\nποιοσ\nποια\nποιο\nποιοι\nποιεσ\nποιων\nποιουσ\nαυτοσ\nαυτη\nαυτο\nαυτοι\nαυτων\nαυτουσ\nαυτεσ\nαυτα\nεκεινοσ\nεκεινη\nεκεινο\nεκεινοι\nεκεινεσ\nεκεινα\nεκεινων\nεκεινουσ\nοπωσ\nομωσ\nισωσ\nοσο\nοτι\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_en.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# a couple of test stopwords to test that the words are really being\n# configured from this file:\nstopworda\nstopwordb\n\n# Standard english stop words taken from Lucene's StopAnalyzer\na\nan\nand\nare\nas\nat\nbe\nbut\nby\nfor\nif\nin\ninto\nis\nit\nno\nnot\nof\non\nor\nsuch\nthat\nthe\ntheir\nthen\nthere\nthese\nthey\nthis\nto\nwas\nwill\nwith\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_es.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/spanish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Spanish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n\n | The following is a ranked list (commonest to rarest) of stopwords\n | deriving from a large sample of text.\n\n | Extra words have been added at the end.\n\nde             |  from, of\nla             |  the, her\nque            |  who, that\nel             |  the\nen             |  in\ny              |  and\na              |  to\nlos            |  the, them\ndel            |  de + el\nse             |  himself, from him etc\nlas            |  the, them\npor            |  for, by, etc\nun             |  a\npara           |  for\ncon            |  with\nno             |  no\nuna            |  a\nsu             |  his, her\nal             |  a + el\n  | es         from SER\nlo             |  him\ncomo           |  how\nmás            |  more\npero           |  pero\nsus            |  su plural\nle             |  to him, her\nya             |  already\no              |  or\n  | fue        from SER\neste           |  this\n  | ha         from HABER\nsí             |  himself etc\nporque         |  because\nesta           |  this\n  | son        from SER\nentre          |  between\n  | está     from ESTAR\ncuando         |  when\nmuy            |  very\nsin            |  without\nsobre          |  on\n  | ser        from SER\n  | tiene      from TENER\ntambién        |  also\nme             |  me\nhasta          |  until\nhay            |  there is/are\ndonde          |  where\n  | han        from HABER\nquien          |  whom, that\n  | están      from ESTAR\n  | estado     from ESTAR\ndesde          |  from\ntodo           |  all\nnos            |  us\ndurante        |  during\n  | estados    from ESTAR\ntodos          |  all\nuno            |  a\nles            |  to them\nni             |  nor\ncontra         |  against\notros          |  other\n  | fueron     from SER\nese            |  that\neso            |  that\n  | había      from HABER\nante           |  before\nellos          |  they\ne              |  and (variant of y)\nesto           |  this\nmí             |  me\nantes          |  before\nalgunos        |  some\nqué            |  what?\nunos           |  a\nyo             |  I\notro           |  other\notras          |  other\notra           |  other\nél             |  he\ntanto          |  so much, many\nesa            |  that\nestos          |  these\nmucho          |  much, many\nquienes        |  who\nnada           |  nothing\nmuchos         |  many\ncual           |  who\n  | sea        from SER\npoco           |  few\nella           |  she\nestar          |  to be\n  | haber      from HABER\nestas          |  these\n  | estaba     from ESTAR\n  | estamos    from ESTAR\nalgunas        |  some\nalgo           |  something\nnosotros       |  we\n\n      | other forms\n\nmi             |  me\nmis            |  mi plural\ntú             |  thou\nte             |  thee\nti             |  thee\ntu             |  thy\ntus            |  tu plural\nellas          |  they\nnosotras       |  we\nvosotros       |  you\nvosotras       |  you\nos             |  you\nmío            |  mine\nmía            |\nmíos           |\nmías           |\ntuyo           |  thine\ntuya           |\ntuyos          |\ntuyas          |\nsuyo           |  his, hers, theirs\nsuya           |\nsuyos          |\nsuyas          |\nnuestro        |  ours\nnuestra        |\nnuestros       |\nnuestras       |\nvuestro        |  yours\nvuestra        |\nvuestros       |\nvuestras       |\nesos           |  those\nesas           |  those\n\n               | forms of estar, to be (not including the infinitive):\nestoy\nestás\nestá\nestamos\nestáis\nestán\nesté\nestés\nestemos\nestéis\nestén\nestaré\nestarás\nestará\nestaremos\nestaréis\nestarán\nestaría\nestarías\nestaríamos\nestaríais\nestarían\nestaba\nestabas\nestábamos\nestabais\nestaban\nestuve\nestuviste\nestuvo\nestuvimos\nestuvisteis\nestuvieron\nestuviera\nestuvieras\nestuviéramos\nestuvierais\nestuvieran\nestuviese\nestuvieses\nestuviésemos\nestuvieseis\nestuviesen\nestando\nestado\nestada\nestados\nestadas\nestad\n\n               | forms of haber, to have (not including the infinitive):\nhe\nhas\nha\nhemos\nhabéis\nhan\nhaya\nhayas\nhayamos\nhayáis\nhayan\nhabré\nhabrás\nhabrá\nhabremos\nhabréis\nhabrán\nhabría\nhabrías\nhabríamos\nhabríais\nhabrían\nhabía\nhabías\nhabíamos\nhabíais\nhabían\nhube\nhubiste\nhubo\nhubimos\nhubisteis\nhubieron\nhubiera\nhubieras\nhubiéramos\nhubierais\nhubieran\nhubiese\nhubieses\nhubiésemos\nhubieseis\nhubiesen\nhabiendo\nhabido\nhabida\nhabidos\nhabidas\n\n               | forms of ser, to be (not including the infinitive):\nsoy\neres\nes\nsomos\nsois\nson\nsea\nseas\nseamos\nseáis\nsean\nseré\nserás\nserá\nseremos\nseréis\nserán\nsería\nserías\nseríamos\nseríais\nserían\nera\neras\néramos\nerais\neran\nfui\nfuiste\nfue\nfuimos\nfuisteis\nfueron\nfuera\nfueras\nfuéramos\nfuerais\nfueran\nfuese\nfueses\nfuésemos\nfueseis\nfuesen\nsiendo\nsido\n  |  sed also means 'thirst'\n\n               | forms of tener, to have (not including the infinitive):\ntengo\ntienes\ntiene\ntenemos\ntenéis\ntienen\ntenga\ntengas\ntengamos\ntengáis\ntengan\ntendré\ntendrás\ntendrá\ntendremos\ntendréis\ntendrán\ntendría\ntendrías\ntendríamos\ntendríais\ntendrían\ntenía\ntenías\nteníamos\nteníais\ntenían\ntuve\ntuviste\ntuvo\ntuvimos\ntuvisteis\ntuvieron\ntuviera\ntuvieras\ntuviéramos\ntuvierais\ntuvieran\ntuviese\ntuvieses\ntuviésemos\ntuvieseis\ntuviesen\nteniendo\ntenido\ntenida\ntenidos\ntenidas\ntened\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_eu.txt",
    "content": "# example set of basque stopwords\nal\nanitz\narabera\nasko\nbaina\nbat\nbatean\nbatek\nbati\nbatzuei\nbatzuek\nbatzuetan\nbatzuk\nbera\nberaiek\nberau\nberauek\nbere\nberori\nberoriek\nbeste\nbezala\nda\ndago\ndira\nditu\ndu\ndute\nedo\negin\nere\neta\neurak\nez\ngainera\ngu\ngutxi\nguzti\nhaiei\nhaiek\nhaietan\nhainbeste\nhala\nhan\nhandik\nhango\nhara\nhari\nhark\nhartan\nhau\nhauei\nhauek\nhauetan\nhemen\nhemendik\nhemengo\nhi\nhona\nhonek\nhonela\nhonetan\nhoni\nhor\nhori\nhoriei\nhoriek\nhorietan\nhorko\nhorra\nhorrek\nhorrela\nhorretan\nhorri\nhortik\nhura\nizan\nni\nnoiz\nnola\nnon\nnondik\nnongo\nnor\nnora\nze\nzein\nzen\nzenbait\nzenbat\nzer\nzergatik\nziren\nzituen\nzu\nzuek\nzuen\nzuten\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_fa.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\n# Note: by default this file is used after normalization, so when adding entries\n# to this file, use the arabic 'ي' instead of 'ی'\nانان\nنداشته\nسراسر\nخياه\nايشان\nوي\nتاكنون\nبيشتري\nدوم\nپس\nناشي\nوگو\nيا\nداشتند\nسپس\nهنگام\nهرگز\nپنج\nنشان\nامسال\nديگر\nگروهي\nشدند\nچطور\nده\nو\nدو\nنخستين\nولي\nچرا\nچه\nوسط\nه\nكدام\nقابل\nيك\nرفت\nهفت\nهمچنين\nدر\nهزار\nبله\nبلي\nشايد\nاما\nشناسي\nگرفته\nدهد\nداشته\nدانست\nداشتن\nخواهيم\nميليارد\nوقتيكه\nامد\nخواهد\nجز\nاورده\nشده\nبلكه\nخدمات\nشدن\nبرخي\nنبود\nبسياري\nجلوگيري\nحق\nكردند\nنوعي\nبعري\nنكرده\nنظير\nنبايد\nبوده\nبودن\nداد\nاورد\nهست\nجايي\nشود\nدنبال\nداده\nبايد\nسابق\nهيچ\nهمان\nانجا\nكمتر\nكجاست\nگردد\nكسي\nتر\nمردم\nتان\nدادن\nبودند\nسري\nجدا\nندارند\nمگر\nيكديگر\nدارد\nدهند\nبنابراين\nهنگامي\nسمت\nجا\nانچه\nخود\nدادند\nزياد\nدارند\nاثر\nبدون\nبهترين\nبيشتر\nالبته\nبه\nبراساس\nبيرون\nكرد\nبعضي\nگرفت\nتوي\nاي\nميليون\nاو\nجريان\nتول\nبر\nمانند\nبرابر\nباشيم\nمدتي\nگويند\nاكنون\nتا\nتنها\nجديد\nچند\nبي\nنشده\nكردن\nكردم\nگويد\nكرده\nكنيم\nنمي\nنزد\nروي\nقصد\nفقط\nبالاي\nديگران\nاين\nديروز\nتوسط\nسوم\nايم\nدانند\nسوي\nاستفاده\nشما\nكنار\nداريم\nساخته\nطور\nامده\nرفته\nنخست\nبيست\nنزديك\nطي\nكنيد\nاز\nانها\nتمامي\nداشت\nيكي\nطريق\nاش\nچيست\nروب\nنمايد\nگفت\nچندين\nچيزي\nتواند\nام\nايا\nبا\nان\nايد\nترين\nاينكه\nديگري\nراه\nهايي\nبروز\nهمچنان\nپاعين\nكس\nحدود\nمختلف\nمقابل\nچيز\nگيرد\nندارد\nضد\nهمچون\nسازي\nشان\nمورد\nباره\nمرسي\nخويش\nبرخوردار\nچون\nخارج\nشش\nهنوز\nتحت\nضمن\nهستيم\nگفته\nفكر\nبسيار\nپيش\nبراي\nروزهاي\nانكه\nنخواهد\nبالا\nكل\nوقتي\nكي\nچنين\nكه\nگيري\nنيست\nاست\nكجا\nكند\nنيز\nيابد\nبندي\nحتي\nتوانند\nعقب\nخواست\nكنند\nبين\nتمام\nهمه\nما\nباشند\nمثل\nشد\nاري\nباشد\nاره\nطبق\nبعد\nاگر\nصورت\nغير\nجاي\nبيش\nريزي\nاند\nزيرا\nچگونه\nبار\nلطفا\nمي\nدرباره\nمن\nديده\nهمين\nگذاري\nبرداري\nعلت\nگذاشته\nهم\nفوق\nنه\nها\nشوند\nاباد\nهمواره\nهر\nاول\nخواهند\nچهار\nنام\nامروز\nمان\nهاي\nقبل\nكنم\nسعي\nتازه\nرا\nهستند\nزير\nجلوي\nعنوان\nبود\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_fi.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/finnish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n \n| forms of BE\n\nolla\nolen\nolet\non\nolemme\nolette\novat\nole        | negative form\n\noli\nolisi\nolisit\nolisin\nolisimme\nolisitte\nolisivat\nolit\nolin\nolimme\nolitte\nolivat\nollut\nolleet\n\nen         | negation\net\nei\nemme\nette\neivät\n\n|Nom   Gen    Acc    Part   Iness   Elat    Illat  Adess   Ablat   Allat   Ess    Trans\nminä   minun  minut  minua  minussa minusta minuun minulla minulta minulle               | I\nsinä   sinun  sinut  sinua  sinussa sinusta sinuun sinulla sinulta sinulle               | you\nhän    hänen  hänet  häntä  hänessä hänestä häneen hänellä häneltä hänelle               | he she\nme     meidän meidät meitä  meissä  meistä  meihin meillä  meiltä  meille                | we\nte     teidän teidät teitä  teissä  teistä  teihin teillä  teiltä  teille                | you\nhe     heidän heidät heitä  heissä  heistä  heihin heillä  heiltä  heille                | they\n\ntämä   tämän         tätä   tässä   tästä   tähän  tallä   tältä   tälle   tänä   täksi  | this\ntuo    tuon          tuotä  tuossa  tuosta  tuohon tuolla  tuolta  tuolle  tuona  tuoksi | that\nse     sen           sitä   siinä   siitä   siihen sillä   siltä   sille   sinä   siksi  | it\nnämä   näiden        näitä  näissä  näistä  näihin näillä  näiltä  näille  näinä  näiksi | these\nnuo    noiden        noita  noissa  noista  noihin noilla  noilta  noille  noina  noiksi | those\nne     niiden        niitä  niissä  niistä  niihin niillä  niiltä  niille  niinä  niiksi | they\n\nkuka   kenen kenet   ketä   kenessä kenestä keneen kenellä keneltä kenelle kenenä keneksi| who\nketkä  keiden ketkä  keitä  keissä  keistä  keihin keillä  keiltä  keille  keinä  keiksi | (pl)\nmikä   minkä minkä   mitä   missä   mistä   mihin  millä   miltä   mille   minä   miksi  | which what\nmitkä                                                                                    | (pl)\n\njoka   jonka         jota   jossa   josta   johon  jolla   jolta   jolle   jona   joksi  | who which\njotka  joiden        joita  joissa  joista  joihin joilla  joilta  joille  joina  joiksi | (pl)\n\n| conjunctions\n\nettä   | that\nja     | and\njos    | if\nkoska  | because\nkuin   | than\nmutta  | but\nniin   | so\nsekä   | and\nsillä  | for\ntai    | or\nvaan   | but\nvai    | or\nvaikka | although\n\n\n| prepositions\n\nkanssa  | with\nmukaan  | according to\nnoin    | about\npoikki  | across\nyli     | over, across\n\n| other\n\nkun    | when\nniin   | so\nnyt    | now\nitse   | self\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_fr.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/french/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A French stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\nau             |  a + le\naux            |  a + les\navec           |  with\nce             |  this\nces            |  these\ndans           |  with\nde             |  of\ndes            |  de + les\ndu             |  de + le\nelle           |  she\nen             |  `of them' etc\net             |  and\neux            |  them\nil             |  he\nje             |  I\nla             |  the\nle             |  the\nleur           |  their\nlui            |  him\nma             |  my (fem)\nmais           |  but\nme             |  me\nmême           |  same; as in moi-même (myself) etc\nmes            |  me (pl)\nmoi            |  me\nmon            |  my (masc)\nne             |  not\nnos            |  our (pl)\nnotre          |  our\nnous           |  we\non             |  one\nou             |  where\npar            |  by\npas            |  not\npour           |  for\nqu             |  que before vowel\nque            |  that\nqui            |  who\nsa             |  his, her (fem)\nse             |  oneself\nses            |  his (pl)\nson            |  his, her (masc)\nsur            |  on\nta             |  thy (fem)\nte             |  thee\ntes            |  thy (pl)\ntoi            |  thee\nton            |  thy (masc)\ntu             |  thou\nun             |  a\nune            |  a\nvos            |  your (pl)\nvotre          |  your\nvous           |  you\n\n               |  single letter forms\n\nc              |  c'\nd              |  d'\nj              |  j'\nl              |  l'\nà              |  to, at\nm              |  m'\nn              |  n'\ns              |  s'\nt              |  t'\ny              |  there\n\n               | forms of être (not including the infinitive):\nété\nétée\nétées\nétés\nétant\nsuis\nes\nest\nsommes\nêtes\nsont\nserai\nseras\nsera\nserons\nserez\nseront\nserais\nserait\nserions\nseriez\nseraient\nétais\nétait\nétions\nétiez\nétaient\nfus\nfut\nfûmes\nfûtes\nfurent\nsois\nsoit\nsoyons\nsoyez\nsoient\nfusse\nfusses\nfût\nfussions\nfussiez\nfussent\n\n               | forms of avoir (not including the infinitive):\nayant\neu\neue\neues\neus\nai\nas\navons\navez\nont\naurai\nauras\naura\naurons\naurez\nauront\naurais\naurait\naurions\nauriez\nauraient\navais\navait\navions\naviez\navaient\neut\neûmes\neûtes\neurent\naie\naies\nait\nayons\nayez\naient\neusse\neusses\neût\neussions\neussiez\neussent\n\n               | Later additions (from Jean-Christophe Deschamps)\nceci           |  this\ncela           |  that\ncelà           |  that\ncet            |  this\ncette          |  this\nici            |  here\nils            |  they\nles            |  the (pl)\nleurs          |  their (pl)\nquel           |  which\nquels          |  which\nquelle         |  which\nquelles        |  which\nsans           |  without\nsoi            |  oneself\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_ga.txt",
    "content": "\na\nach\nag\nagus\nan\naon\nar\narna\nas\nb'\nba\nbeirt\nbhúr\ncaoga\nceathair\nceathrar\nchomh\nchtó\nchuig\nchun\ncois\ncéad\ncúig\ncúigear\nd'\ndaichead\ndar\nde\ndeich\ndeichniúr\nden\ndhá\ndo\ndon\ndtí\ndá\ndár\ndó\nfaoi\nfaoin\nfaoina\nfaoinár\nfara\nfiche\ngach\ngan\ngo\ngur\nhaon\nhocht\ni\niad\nidir\nin\nina\nins\ninár\nis\nle\nleis\nlena\nlenár\nm'\nmar\nmo\nmé\nna\nnach\nnaoi\nnaonúr\nná\nní\nníor\nnó\nnócha\nocht\nochtar\nos\nroimh\nsa\nseacht\nseachtar\nseachtó\nseasca\nseisear\nsiad\nsibh\nsinn\nsna\nsé\nsí\ntar\nthar\nthú\ntriúr\ntrí\ntrína\ntrínár\ntríocha\ntú\num\nár\né\néis\ní\nó\nón\nóna\nónár\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_gl.txt",
    "content": "# galican stopwords\na\naínda\nalí\naquel\naquela\naquelas\naqueles\naquilo\naquí\nao\naos\nas\nasí\ná\nben\ncando\nche\nco\ncoa\ncomigo\ncon\nconnosco\ncontigo\nconvosco\ncoas\ncos\ncun\ncuns\ncunha\ncunhas\nda\ndalgunha\ndalgunhas\ndalgún\ndalgúns\ndas\nde\ndel\ndela\ndelas\ndeles\ndesde\ndeste\ndo\ndos\ndun\nduns\ndunha\ndunhas\ne\nel\nela\nelas\neles\nen\nera\neran\nesa\nesas\nese\neses\nesta\nestar\nestaba\nestá\nestán\neste\nestes\nestiven\nestou\neu\né\nfacer\nfoi\nforon\nfun\nhabía\nhai\niso\nisto\nla\nlas\nlle\nlles\nlo\nlos\nmais\nme\nmeu\nmeus\nmin\nmiña\nmiñas\nmoi\nna\nnas\nneste\nnin\nno\nnon\nnos\nnosa\nnosas\nnoso\nnosos\nnós\nnun\nnunha\nnuns\nnunhas\no\nos\nou\nó\nós\npara\npero\npode\npois\npola\npolas\npolo\npolos\npor\nque\nse\nsenón\nser\nseu\nseus\nsexa\nsido\nsobre\nsúa\nsúas\ntamén\ntan\nte\nten\nteñen\nteño\nter\nteu\nteus\nti\ntido\ntiña\ntiven\ntúa\ntúas\nun\nunha\nunhas\nuns\nvos\nvosa\nvosas\nvoso\nvosos\nvós\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_hi.txt",
    "content": "# Also see http://www.opensource.org/licenses/bsd-license.html\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# This file was created by Jacques Savoy and is distributed under the BSD license.\n# Note: by default this file also contains forms normalized by HindiNormalizer \n# for spelling variation (see section below), such that it can be used whether or \n# not you enable that feature. When adding additional entries to this list,\n# please add the normalized form as well. \nअंदर\nअत\nअपना\nअपनी\nअपने\nअभी\nआदि\nआप\nइत्यादि\nइन \nइनका\nइन्हीं\nइन्हें\nइन्हों\nइस\nइसका\nइसकी\nइसके\nइसमें\nइसी\nइसे\nउन\nउनका\nउनकी\nउनके\nउनको\nउन्हीं\nउन्हें\nउन्हों\nउस\nउसके\nउसी\nउसे\nएक\nएवं\nएस\nऐसे\nऔर\nकई\nकर\nकरता\nकरते\nकरना\nकरने\nकरें\nकहते\nकहा\nका\nकाफ़ी\nकि\nकितना\nकिन्हें\nकिन्हों\nकिया\nकिर\nकिस\nकिसी\nकिसे\nकी\nकुछ\nकुल\nके\nको\nकोई\nकौन\nकौनसा\nगया\nघर\nजब\nजहाँ\nजा\nजितना\nजिन\nजिन्हें\nजिन्हों\nजिस\nजिसे\nजीधर\nजैसा\nजैसे\nजो\nतक\nतब\nतरह\nतिन\nतिन्हें\nतिन्हों\nतिस\nतिसे\nतो\nथा\nथी\nथे\nदबारा\nदिया\nदुसरा\nदूसरे\nदो\nद्वारा\nन\nनहीं\nना\nनिहायत\nनीचे\nने\nपर\nपर  \nपहले\nपूरा\nपे\nफिर\nबनी\nबही\nबहुत\nबाद\nबाला\nबिलकुल\nभी\nभीतर\nमगर\nमानो\nमे\nमें\nयदि\nयह\nयहाँ\nयही\nया\nयिह \nये\nरखें\nरहा\nरहे\nऱ्वासा\nलिए\nलिये\nलेकिन\nव\nवर्ग\nवह\nवह \nवहाँ\nवहीं\nवाले\nवुह \nवे\nवग़ैरह\nसंग\nसकता\nसकते\nसबसे\nसभी\nसाथ\nसाबुत\nसाभ\nसारा\nसे\nसो\nही\nहुआ\nहुई\nहुए\nहै\nहैं\nहो\nहोता\nहोती\nहोते\nहोना\nहोने\n# additional normalized forms of the above\nअपनि\nजेसे\nहोति\nसभि\nतिंहों\nइंहों\nदवारा\nइसि\nकिंहें\nथि\nउंहों\nओर\nजिंहें\nवहिं\nअभि\nबनि\nहि\nउंहिं\nउंहें\nहें\nवगेरह\nएसे\nरवासा\nकोन\nनिचे\nकाफि\nउसि\nपुरा\nभितर\nहे\nबहि\nवहां\nकोइ\nयहां\nजिंहों\nतिंहें\nकिसि\nकइ\nयहि\nइंहिं\nजिधर\nइंहें\nअदि\nइतयादि\nहुइ\nकोनसा\nइसकि\nदुसरे\nजहां\nअप\nकिंहों\nउनकि\nभि\nवरग\nहुअ\nजेसा\nनहिं\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_hu.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/hungarian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n \n| Hungarian stop word list\n| prepared by Anna Tordai\n\na\nahogy\nahol\naki\nakik\nakkor\nalatt\náltal\náltalában\namely\namelyek\namelyekben\namelyeket\namelyet\namelynek\nami\namit\namolyan\namíg\namikor\nát\nabban\nahhoz\nannak\narra\narról\naz\nazok\nazon\nazt\nazzal\nazért\naztán\nazután\nazonban\nbár\nbe\nbelül\nbenne\ncikk\ncikkek\ncikkeket\ncsak\nde\ne\neddig\negész\negy\negyes\negyetlen\negyéb\negyik\negyre\nekkor\nel\nelég\nellen\nelő\nelőször\nelőtt\nelső\nén\néppen\nebben\nehhez\nemilyen\nennek\nerre\nez\nezt\nezek\nezen\nezzel\nezért\nés\nfel\nfelé\nhanem\nhiszen\nhogy\nhogyan\nigen\nígy\nilletve\nill.\nill\nilyen\nilyenkor\nison\nismét\nitt\njó\njól\njobban\nkell\nkellett\nkeresztül\nkeressünk\nki\nkívül\nközött\nközül\nlegalább\nlehet\nlehetett\nlegyen\nlenne\nlenni\nlesz\nlett\nmaga\nmagát\nmajd\nmajd\nmár\nmás\nmásik\nmeg\nmég\nmellett\nmert\nmely\nmelyek\nmi\nmit\nmíg\nmiért\nmilyen\nmikor\nminden\nmindent\nmindenki\nmindig\nmint\nmintha\nmivel\nmost\nnagy\nnagyobb\nnagyon\nne\nnéha\nnekem\nneki\nnem\nnéhány\nnélkül\nnincs\nolyan\nott\nössze\nő\nők\nőket\npedig\npersze\nrá\ns\nsaját\nsem\nsemmi\nsok\nsokat\nsokkal\nszámára\nszemben\nszerint\nszinte\ntalán\ntehát\nteljes\ntovább\ntovábbá\ntöbb\núgy\nugyanis\núj\nújabb\nújra\nután\nutána\nutolsó\nvagy\nvagyis\nvalaki\nvalami\nvalamint\nvaló\nvagyok\nvan\nvannak\nvolt\nvoltam\nvoltak\nvoltunk\nvissza\nvele\nviszont\nvolna\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_hy.txt",
    "content": "# example set of Armenian stopwords.\nայդ\nայլ\nայն\nայս\nդու\nդուք\nեմ\nեն\nենք\nես\nեք\nէ\nէի\nէին\nէինք\nէիր\nէիք\nէր\nըստ\nթ\nի\nին\nիսկ\nիր\nկամ\nհամար\nհետ\nհետո\nմենք\nմեջ\nմի\nն\nնա\nնաև\nնրա\nնրանք\nոր\nորը\nորոնք\nորպես\nու\nում\nպիտի\nվրա\nև\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_id.txt",
    "content": "# from appendix D of: A Study of Stemming Effects on Information\n# Retrieval in Bahasa Indonesia\nada\nadanya\nadalah\nadapun\nagak\nagaknya\nagar\nakan\nakankah\nakhirnya\naku\nakulah\namat\namatlah\nanda\nandalah\nantar\ndiantaranya\nantara\nantaranya\ndiantara\napa\napaan\nmengapa\napabila\napakah\napalagi\napatah\natau\nataukah\nataupun\nbagai\nbagaikan\nsebagai\nsebagainya\nbagaimana\nbagaimanapun\nsebagaimana\nbagaimanakah\nbagi\nbahkan\nbahwa\nbahwasanya\nsebaliknya\nbanyak\nsebanyak\nbeberapa\nseberapa\nbegini\nbeginian\nbeginikah\nbeginilah\nsebegini\nbegitu\nbegitukah\nbegitulah\nbegitupun\nsebegitu\nbelum\nbelumlah\nsebelum\nsebelumnya\nsebenarnya\nberapa\nberapakah\nberapalah\nberapapun\nbetulkah\nsebetulnya\nbiasa\nbiasanya\nbila\nbilakah\nbisa\nbisakah\nsebisanya\nboleh\nbolehkah\nbolehlah\nbuat\nbukan\nbukankah\nbukanlah\nbukannya\ncuma\npercuma\ndahulu\ndalam\ndan\ndapat\ndari\ndaripada\ndekat\ndemi\ndemikian\ndemikianlah\nsedemikian\ndengan\ndepan\ndi\ndia\ndialah\ndini\ndiri\ndirinya\nterdiri\ndong\ndulu\nenggak\nenggaknya\nentah\nentahlah\nterhadap\nterhadapnya\nhal\nhampir\nhanya\nhanyalah\nharus\nharuslah\nharusnya\nseharusnya\nhendak\nhendaklah\nhendaknya\nhingga\nsehingga\nia\nialah\nibarat\ningin\ninginkah\ninginkan\nini\ninikah\ninilah\nitu\nitukah\nitulah\njangan\njangankan\njanganlah\njika\njikalau\njuga\njustru\nkala\nkalau\nkalaulah\nkalaupun\nkalian\nkami\nkamilah\nkamu\nkamulah\nkan\nkapan\nkapankah\nkapanpun\ndikarenakan\nkarena\nkarenanya\nke\nkecil\nkemudian\nkenapa\nkepada\nkepadanya\nketika\nseketika\nkhususnya\nkini\nkinilah\nkiranya\nsekiranya\nkita\nkitalah\nkok\nlagi\nlagian\nselagi\nlah\nlain\nlainnya\nmelainkan\nselaku\nlalu\nmelalui\nterlalu\nlama\nlamanya\nselama\nselama\nselamanya\nlebih\nterlebih\nbermacam\nmacam\nsemacam\nmaka\nmakanya\nmakin\nmalah\nmalahan\nmampu\nmampukah\nmana\nmanakala\nmanalagi\nmasih\nmasihkah\nsemasih\nmasing\nmau\nmaupun\nsemaunya\nmemang\nmereka\nmerekalah\nmeski\nmeskipun\nsemula\nmungkin\nmungkinkah\nnah\nnamun\nnanti\nnantinya\nnyaris\noleh\nolehnya\nseorang\nseseorang\npada\npadanya\npadahal\npaling\nsepanjang\npantas\nsepantasnya\nsepantasnyalah\npara\npasti\npastilah\nper\npernah\npula\npun\nmerupakan\nrupanya\nserupa\nsaat\nsaatnya\nsesaat\nsaja\nsajalah\nsaling\nbersama\nsama\nsesama\nsambil\nsampai\nsana\nsangat\nsangatlah\nsaya\nsayalah\nse\nsebab\nsebabnya\nsebuah\ntersebut\ntersebutlah\nsedang\nsedangkan\nsedikit\nsedikitnya\nsegala\nsegalanya\nsegera\nsesegera\nsejak\nsejenak\nsekali\nsekalian\nsekalipun\nsesekali\nsekaligus\nsekarang\nsekarang\nsekitar\nsekitarnya\nsela\nselain\nselalu\nseluruh\nseluruhnya\nsemakin\nsementara\nsempat\nsemua\nsemuanya\nsendiri\nsendirinya\nseolah\nseperti\nsepertinya\nsering\nseringnya\nserta\nsiapa\nsiapakah\nsiapapun\ndisini\ndisinilah\nsini\nsinilah\nsesuatu\nsesuatunya\nsuatu\nsesudah\nsesudahnya\nsudah\nsudahkah\nsudahlah\nsupaya\ntadi\ntadinya\ntak\ntanpa\nsetelah\ntelah\ntentang\ntentu\ntentulah\ntentunya\ntertentu\nseterusnya\ntapi\ntetapi\nsetiap\ntiap\nsetidaknya\ntidak\ntidakkah\ntidaklah\ntoh\nwaduh\nwah\nwahai\nsewaktu\nwalau\nwalaupun\nwong\nyaitu\nyakni\nyang\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_it.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/italian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | An Italian stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\nad             |  a (to) before vowel\nal             |  a + il\nallo           |  a + lo\nai             |  a + i\nagli           |  a + gli\nall            |  a + l'\nagl            |  a + gl'\nalla           |  a + la\nalle           |  a + le\ncon            |  with\ncol            |  con + il\ncoi            |  con + i (forms collo, cogli etc are now very rare)\nda             |  from\ndal            |  da + il\ndallo          |  da + lo\ndai            |  da + i\ndagli          |  da + gli\ndall           |  da + l'\ndagl           |  da + gll'\ndalla          |  da + la\ndalle          |  da + le\ndi             |  of\ndel            |  di + il\ndello          |  di + lo\ndei            |  di + i\ndegli          |  di + gli\ndell           |  di + l'\ndegl           |  di + gl'\ndella          |  di + la\ndelle          |  di + le\nin             |  in\nnel            |  in + el\nnello          |  in + lo\nnei            |  in + i\nnegli          |  in + gli\nnell           |  in + l'\nnegl           |  in + gl'\nnella          |  in + la\nnelle          |  in + le\nsu             |  on\nsul            |  su + il\nsullo          |  su + lo\nsui            |  su + i\nsugli          |  su + gli\nsull           |  su + l'\nsugl           |  su + gl'\nsulla          |  su + la\nsulle          |  su + le\nper            |  through, by\ntra            |  among\ncontro         |  against\nio             |  I\ntu             |  thou\nlui            |  he\nlei            |  she\nnoi            |  we\nvoi            |  you\nloro           |  they\nmio            |  my\nmia            |\nmiei           |\nmie            |\ntuo            |\ntua            |\ntuoi           |  thy\ntue            |\nsuo            |\nsua            |\nsuoi           |  his, her\nsue            |\nnostro         |  our\nnostra         |\nnostri         |\nnostre         |\nvostro         |  your\nvostra         |\nvostri         |\nvostre         |\nmi             |  me\nti             |  thee\nci             |  us, there\nvi             |  you, there\nlo             |  him, the\nla             |  her, the\nli             |  them\nle             |  them, the\ngli            |  to him, the\nne             |  from there etc\nil             |  the\nun             |  a\nuno            |  a\nuna            |  a\nma             |  but\ned             |  and\nse             |  if\nperché         |  why, because\nanche          |  also\ncome           |  how\ndov            |  where (as dov')\ndove           |  where\nche            |  who, that\nchi            |  who\ncui            |  whom\nnon            |  not\npiù            |  more\nquale          |  who, that\nquanto         |  how much\nquanti         |\nquanta         |\nquante         |\nquello         |  that\nquelli         |\nquella         |\nquelle         |\nquesto         |  this\nquesti         |\nquesta         |\nqueste         |\nsi             |  yes\ntutto          |  all\ntutti          |  all\n\n               |  single letter forms:\n\na              |  at\nc              |  as c' for ce or ci\ne              |  and\ni              |  the\nl              |  as l'\no              |  or\n\n               | forms of avere, to have (not including the infinitive):\n\nho\nhai\nha\nabbiamo\navete\nhanno\nabbia\nabbiate\nabbiano\navrò\navrai\navrà\navremo\navrete\navranno\navrei\navresti\navrebbe\navremmo\navreste\navrebbero\navevo\navevi\naveva\navevamo\navevate\navevano\nebbi\navesti\nebbe\navemmo\naveste\nebbero\navessi\navesse\navessimo\navessero\navendo\navuto\navuta\navuti\navute\n\n               | forms of essere, to be (not including the infinitive):\nsono\nsei\nè\nsiamo\nsiete\nsia\nsiate\nsiano\nsarò\nsarai\nsarà\nsaremo\nsarete\nsaranno\nsarei\nsaresti\nsarebbe\nsaremmo\nsareste\nsarebbero\nero\neri\nera\neravamo\neravate\nerano\nfui\nfosti\nfu\nfummo\nfoste\nfurono\nfossi\nfosse\nfossimo\nfossero\nessendo\n\n               | forms of fare, to do (not including the infinitive, fa, fat-):\nfaccio\nfai\nfacciamo\nfanno\nfaccia\nfacciate\nfacciano\nfarò\nfarai\nfarà\nfaremo\nfarete\nfaranno\nfarei\nfaresti\nfarebbe\nfaremmo\nfareste\nfarebbero\nfacevo\nfacevi\nfaceva\nfacevamo\nfacevate\nfacevano\nfeci\nfacesti\nfece\nfacemmo\nfaceste\nfecero\nfacessi\nfacesse\nfacessimo\nfacessero\nfacendo\n\n               | forms of stare, to be (not including the infinitive):\nsto\nstai\nsta\nstiamo\nstanno\nstia\nstiate\nstiano\nstarò\nstarai\nstarà\nstaremo\nstarete\nstaranno\nstarei\nstaresti\nstarebbe\nstaremmo\nstareste\nstarebbero\nstavo\nstavi\nstava\nstavamo\nstavate\nstavano\nstetti\nstesti\nstette\nstemmo\nsteste\nstettero\nstessi\nstesse\nstessimo\nstessero\nstando\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_ja.txt",
    "content": "#\n# This file defines a stopword set for Japanese.\n#\n# This set is made up of hand-picked frequent terms from segmented Japanese Wikipedia.\n# Punctuation characters and frequent kanji have mostly been left out.  See LUCENE-3745\n# for frequency lists, etc. that can be useful for making your own set (if desired)\n#\n# Note that there is an overlap between these stopwords and the terms stopped when used\n# in combination with the JapanesePartOfSpeechStopFilter.  When editing this file, note\n# that comments are not allowed on the same line as stopwords.\n#\n# Also note that stopping is done in a case-insensitive manner.  Change your StopFilter\n# configuration if you need case-sensitive stopping.  Lastly, note that stopping is done\n# using the same character width as the entries in this file.  Since this StopFilter is\n# normally done after a CJKWidthFilter in your chain, you would usually want your romaji\n# entries to be in half-width and your kana entries to be in full-width.\n#\nの\nに\nは\nを\nた\nが\nで\nて\nと\nし\nれ\nさ\nある\nいる\nも\nする\nから\nな\nこと\nとして\nい\nや\nれる\nなど\nなっ\nない\nこの\nため\nその\nあっ\nよう\nまた\nもの\nという\nあり\nまで\nられ\nなる\nへ\nか\nだ\nこれ\nによって\nにより\nおり\nより\nによる\nず\nなり\nられる\nにおいて\nば\nなかっ\nなく\nしかし\nについて\nせ\nだっ\nその後\nできる\nそれ\nう\nので\nなお\nのみ\nでき\nき\nつ\nにおける\nおよび\nいう\nさらに\nでも\nら\nたり\nその他\nに関する\nたち\nます\nん\nなら\nに対して\n特に\nせる\n及び\nこれら\nとき\nでは\nにて\nほか\nながら\nうち\nそして\nとともに\nただし\nかつて\nそれぞれ\nまたは\nお\nほど\nものの\nに対する\nほとんど\nと共に\nといった\nです\nとも\nところ\nここ\n##### End of file\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_lv.txt",
    "content": "# Set of Latvian stopwords from A Stemming Algorithm for Latvian, Karlis Kreslins\n# the original list of over 800 forms was refined: \n#   pronouns, adverbs, interjections were removed\n# \n# prepositions\naiz\nap\nar\napakš\nārpus\naugšpus\nbez\ncaur\ndēļ\ngar\niekš\niz\nkopš\nlabad\nlejpus\nlīdz\nno\notrpus\npa\npar\npār\npēc\npie\npirms\npret\npriekš\nstarp\nšaipus\nuz\nviņpus\nvirs\nvirspus\nzem\napakšpus\n# Conjunctions\nun\nbet\njo\nja\nka\nlai\ntomēr\ntikko\nturpretī\narī\nkaut\ngan\ntādēļ\ntā\nne\ntikvien\nvien\nkā\nir\nte\nvai\nkamēr\n# Particles\nar\ndiezin\ndroši\ndiemžēl\nnebūt\nik\nit\ntaču\nnu\npat\ntiklab\niekšpus\nnedz\ntik\nnevis\nturpretim\njeb\niekam\niekām\niekāms\nkolīdz\nlīdzko\ntiklīdz\njebšu\ntālab\ntāpēc\nnekā\nitin\njā\njau\njel\nnē\nnezin\ntad\ntikai\nvis\ntak\niekams\nvien\n# modal verbs\nbūt  \nbiju \nbiji\nbija\nbijām\nbijāt\nesmu\nesi\nesam\nesat \nbūšu     \nbūsi\nbūs\nbūsim\nbūsiet\ntikt\ntiku\ntiki\ntika\ntikām\ntikāt\ntieku\ntiec\ntiek\ntiekam\ntiekat\ntikšu\ntiks\ntiksim\ntiksiet\ntapt\ntapi\ntapāt\ntopat\ntapšu\ntapsi\ntaps\ntapsim\ntapsiet\nkļūt\nkļuvu\nkļuvi\nkļuva\nkļuvām\nkļuvāt\nkļūstu\nkļūsti\nkļūst\nkļūstam\nkļūstat\nkļūšu\nkļūsi\nkļūs\nkļūsim\nkļūsiet\n# verbs\nvarēt\nvarēju\nvarējām\nvarēšu\nvarēsim\nvar\nvarēji\nvarējāt\nvarēsi\nvarēsiet\nvarat\nvarēja\nvarēs\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_nl.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/dutch/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Dutch stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large sample of Dutch text.\n\n | Dutch stop words frequently exhibit homonym clashes. These are indicated\n | clearly below.\n\nde             |  the\nen             |  and\nvan            |  of, from\nik             |  I, the ego\nte             |  (1) chez, at etc, (2) to, (3) too\ndat            |  that, which\ndie            |  that, those, who, which\nin             |  in, inside\neen            |  a, an, one\nhij            |  he\nhet            |  the, it\nniet           |  not, nothing, naught\nzijn           |  (1) to be, being, (2) his, one's, its\nis             |  is\nwas            |  (1) was, past tense of all persons sing. of 'zijn' (to be) (2) wax, (3) the washing, (4) rise of river\nop             |  on, upon, at, in, up, used up\naan            |  on, upon, to (as dative)\nmet            |  with, by\nals            |  like, such as, when\nvoor           |  (1) before, in front of, (2) furrow\nhad            |  had, past tense all persons sing. of 'hebben' (have)\ner             |  there\nmaar           |  but, only\nom             |  round, about, for etc\nhem            |  him\ndan            |  then\nzou            |  should/would, past tense all persons sing. of 'zullen'\nof             |  or, whether, if\nwat            |  what, something, anything\nmijn           |  possessive and noun 'mine'\nmen            |  people, 'one'\ndit            |  this\nzo             |  so, thus, in this way\ndoor           |  through by\nover           |  over, across\nze             |  she, her, they, them\nzich           |  oneself\nbij            |  (1) a bee, (2) by, near, at\nook            |  also, too\ntot            |  till, until\nje             |  you\nmij            |  me\nuit            |  out of, from\nder            |  Old Dutch form of 'van der' still found in surnames\ndaar           |  (1) there, (2) because\nhaar           |  (1) her, their, them, (2) hair\nnaar           |  (1) unpleasant, unwell etc, (2) towards, (3) as\nheb            |  present first person sing. of 'to have'\nhoe            |  how, why\nheeft          |  present third person sing. of 'to have'\nhebben         |  'to have' and various parts thereof\ndeze           |  this\nu              |  you\nwant           |  (1) for, (2) mitten, (3) rigging\nnog            |  yet, still\nzal            |  'shall', first and third person sing. of verb 'zullen' (will)\nme             |  me\nzij            |  she, they\nnu             |  now\nge             |  'thou', still used in Belgium and south Netherlands\ngeen           |  none\nomdat          |  because\niets           |  something, somewhat\nworden         |  to become, grow, get\ntoch           |  yet, still\nal             |  all, every, each\nwaren          |  (1) 'were' (2) to wander, (3) wares, (3)\nveel           |  much, many\nmeer           |  (1) more, (2) lake\ndoen           |  to do, to make\ntoen           |  then, when\nmoet           |  noun 'spot/mote' and present form of 'to must'\nben            |  (1) am, (2) 'are' in interrogative second person singular of 'to be'\nzonder         |  without\nkan            |  noun 'can' and present form of 'to be able'\nhun            |  their, them\ndus            |  so, consequently\nalles          |  all, everything, anything\nonder          |  under, beneath\nja             |  yes, of course\neens           |  once, one day\nhier           |  here\nwie            |  who\nwerd           |  imperfect third person sing. of 'become'\naltijd         |  always\ndoch           |  yet, but etc\nwordt          |  present third person sing. of 'become'\nwezen          |  (1) to be, (2) 'been' as in 'been fishing', (3) orphans\nkunnen         |  to be able\nons            |  us/our\nzelf           |  self\ntegen          |  against, towards, at\nna             |  after, near\nreeds          |  already\nwil            |  (1) present tense of 'want', (2) 'will', noun, (3) fender\nkon            |  could; past tense of 'to be able'\nniets          |  nothing\nuw             |  your\niemand         |  somebody\ngeweest        |  been; past participle of 'be'\nandere         |  other\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_no.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/norwegian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Norwegian stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This stop word list is for the dominant bokmål dialect. Words unique\n | to nynorsk are marked *.\n\n | Revised by Jan Bruusgaard <Jan.Bruusgaard@ssb.no>, Jan 2005\n\nog             | and\ni              | in\njeg            | I\ndet            | it/this/that\nat             | to (w. inf.)\nen             | a/an\net             | a/an\nden            | it/this/that\ntil            | to\ner             | is/am/are\nsom            | who/that\npå             | on\nde             | they / you(formal)\nmed            | with\nhan            | he\nav             | of\nikke           | not\nikkje          | not *\nder            | there\nså             | so\nvar            | was/were\nmeg            | me\nseg            | you\nmen            | but\nett            | one\nhar            | have\nom             | about\nvi             | we\nmin            | my\nmitt           | my\nha             | have\nhadde          | had\nhun            | she\nnå             | now\nover           | over\nda             | when/as\nved            | by/know\nfra            | from\ndu             | you\nut             | out\nsin            | your\ndem            | them\noss            | us\nopp            | up\nman            | you/one\nkan            | can\nhans           | his\nhvor           | where\neller          | or\nhva            | what\nskal           | shall/must\nselv           | self (reflective)\nsjøl           | self (reflective)\nher            | here\nalle           | all\nvil            | will\nbli            | become\nble            | became\nblei           | became *\nblitt          | have become\nkunne          | could\ninn            | in\nnår            | when\nvære           | be\nkom            | come\nnoen           | some\nnoe            | some\nville          | would\ndere           | you\nsom            | who/which/that\nderes          | their/theirs\nkun            | only/just\nja             | yes\netter          | after\nned            | down\nskulle         | should\ndenne          | this\nfor            | for/because\ndeg            | you\nsi             | hers/his\nsine           | hers/his\nsitt           | hers/his\nmot            | against\nå              | to\nmeget          | much\nhvorfor        | why\ndette          | this\ndisse          | these/those\nuten           | without\nhvordan        | how\ningen          | none\ndin            | your\nditt           | your\nblir           | become\nsamme          | same\nhvilken        | which\nhvilke         | which (plural)\nsånn           | such a\ninni           | inside/within\nmellom         | between\nvår            | our\nhver           | each\nhvem           | who\nvors           | us/ours\nhvis           | whose\nbåde           | both\nbare           | only/just\nenn            | than\nfordi          | as/because\nfør            | before\nmange          | many\nogså           | also\nslik           | just\nvært           | been\nvære           | to be\nbåe            | both *\nbegge          | both\nsiden          | since\ndykk           | your *\ndykkar         | yours *\ndei            | they *\ndeira          | them *\ndeires         | theirs *\ndeim           | them *\ndi             | your (fem.) *\ndå             | as/when *\neg             | I *\nein            | a/an *\neit            | a/an *\neitt           | a/an *\nelles          | or *\nhonom          | he *\nhjå            | at *\nho             | she *\nhoe            | she *\nhenne          | her\nhennar         | her/hers\nhennes         | hers\nhoss           | how *\nhossen         | how *\nikkje          | not *\ningi           | noone *\ninkje          | noone *\nkorleis        | how *\nkorso          | how *\nkva            | what/which *\nkvar           | where *\nkvarhelst      | where *\nkven           | who/whom *\nkvi            | why *\nkvifor         | why *\nme             | we *\nmedan          | while *\nmi             | my *\nmine           | my *\nmykje          | much *\nno             | now *\nnokon          | some (masc./neut.) *\nnoka           | some (fem.) *\nnokor          | some *\nnoko           | some *\nnokre          | some *\nsi             | his/hers *\nsia            | since *\nsidan          | since *\nso             | so *\nsomt           | some *\nsomme          | some *\num             | about*\nupp            | up *\nvere           | be *\nvore           | was *\nverte          | become *\nvort           | become *\nvarte          | became *\nvart           | became *\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_pt.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/portuguese/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Portuguese stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n\n | The following is a ranked list (commonest to rarest) of stopwords\n | deriving from a large sample of text.\n\n | Extra words have been added at the end.\n\nde             |  of, from\na              |  the; to, at; her\no              |  the; him\nque            |  who, that\ne              |  and\ndo             |  de + o\nda             |  de + a\nem             |  in\num             |  a\npara           |  for\n  | é          from SER\ncom            |  with\nnão            |  not, no\numa            |  a\nos             |  the; them\nno             |  em + o\nse             |  himself etc\nna             |  em + a\npor            |  for\nmais           |  more\nas             |  the; them\ndos            |  de + os\ncomo           |  as, like\nmas            |  but\n  | foi        from SER\nao             |  a + o\nele            |  he\ndas            |  de + as\n  | tem        from TER\nà              |  a + a\nseu            |  his\nsua            |  her\nou             |  or\n  | ser        from SER\nquando         |  when\nmuito          |  much\n  | há         from HAV\nnos            |  em + os; us\njá             |  already, now\n  | está       from EST\neu             |  I\ntambém         |  also\nsó             |  only, just\npelo           |  per + o\npela           |  per + a\naté            |  up to\nisso           |  that\nela            |  he\nentre          |  between\n  | era        from SER\ndepois         |  after\nsem            |  without\nmesmo          |  same\naos            |  a + os\n  | ter        from TER\nseus           |  his\nquem           |  whom\nnas            |  em + as\nme             |  me\nesse           |  that\neles           |  they\n  | estão      from EST\nvocê           |  you\n  | tinha      from TER\n  | foram      from SER\nessa           |  that\nnum            |  em + um\nnem            |  nor\nsuas           |  her\nmeu            |  my\nàs             |  a + as\nminha          |  my\n  | têm        from TER\nnuma           |  em + uma\npelos          |  per + os\nelas           |  they\n  | havia      from HAV\n  | seja       from SER\nqual           |  which\n  | será       from SER\nnós            |  we\n  | tenho      from TER\nlhe            |  to him, her\ndeles          |  of them\nessas          |  those\nesses          |  those\npelas          |  per + as\neste           |  this\n  | fosse      from SER\ndele           |  of him\n\n | other words. There are many contractions such as naquele = em+aquele,\n | mo = me+o, but they are rare.\n | Indefinite article plural forms are also rare.\n\ntu             |  thou\nte             |  thee\nvocês          |  you (plural)\nvos            |  you\nlhes           |  to them\nmeus           |  my\nminhas\nteu            |  thy\ntua\nteus\ntuas\nnosso          | our\nnossa\nnossos\nnossas\n\ndela           |  of her\ndelas          |  of them\n\nesta           |  this\nestes          |  these\nestas          |  these\naquele         |  that\naquela         |  that\naqueles        |  those\naquelas        |  those\nisto           |  this\naquilo         |  that\n\n               | forms of estar, to be (not including the infinitive):\nestou\nestá\nestamos\nestão\nestive\nesteve\nestivemos\nestiveram\nestava\nestávamos\nestavam\nestivera\nestivéramos\nesteja\nestejamos\nestejam\nestivesse\nestivéssemos\nestivessem\nestiver\nestivermos\nestiverem\n\n               | forms of haver, to have (not including the infinitive):\nhei\nhá\nhavemos\nhão\nhouve\nhouvemos\nhouveram\nhouvera\nhouvéramos\nhaja\nhajamos\nhajam\nhouvesse\nhouvéssemos\nhouvessem\nhouver\nhouvermos\nhouverem\nhouverei\nhouverá\nhouveremos\nhouverão\nhouveria\nhouveríamos\nhouveriam\n\n               | forms of ser, to be (not including the infinitive):\nsou\nsomos\nsão\nera\néramos\neram\nfui\nfoi\nfomos\nforam\nfora\nfôramos\nseja\nsejamos\nsejam\nfosse\nfôssemos\nfossem\nfor\nformos\nforem\nserei\nserá\nseremos\nserão\nseria\nseríamos\nseriam\n\n               | forms of ter, to have (not including the infinitive):\ntenho\ntem\ntemos\ntém\ntinha\ntínhamos\ntinham\ntive\nteve\ntivemos\ntiveram\ntivera\ntivéramos\ntenha\ntenhamos\ntenham\ntivesse\ntivéssemos\ntivessem\ntiver\ntivermos\ntiverem\nterei\nterá\nteremos\nterão\nteria\nteríamos\nteriam\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_ro.txt",
    "content": "# This file was created by Jacques Savoy and is distributed under the BSD license.\n# See http://members.unine.ch/jacques.savoy/clef/index.html.\n# Also see http://www.opensource.org/licenses/bsd-license.html\nacea\naceasta\naceastă\naceea\nacei\naceia\nacel\nacela\nacele\nacelea\nacest\nacesta\naceste\nacestea\naceşti\naceştia\nacolo\nacum\nai\naia\naibă\naici\nal\năla\nale\nalea\nălea\naltceva\naltcineva\nam\nar\nare\naş\naşadar\nasemenea\nasta\năsta\nastăzi\nastea\năstea\năştia\nasupra\naţi\nau\navea\navem\naveţi\nazi\nbine\nbucur\nbună\nca\ncă\ncăci\ncând\ncare\ncărei\ncăror\ncărui\ncât\ncâte\ncâţi\ncătre\ncâtva\nce\ncel\nceva\nchiar\ncînd\ncine\ncineva\ncît\ncîte\ncîţi\ncîtva\ncontra\ncu\ncum\ncumva\ncurând\ncurînd\nda\ndă\ndacă\ndar\ndatorită\nde\ndeci\ndeja\ndeoarece\ndeparte\ndeşi\ndin\ndinaintea\ndintr\ndintre\ndrept\ndupă\nea\nei\nel\nele\neram\neste\neşti\neu\nface\nfără\nfi\nfie\nfiecare\nfii\nfim\nfiţi\niar\nieri\nîi\nîl\nîmi\nîmpotriva\nîn \nînainte\nînaintea\nîncât\nîncît\nîncotro\nîntre\nîntrucât\nîntrucît\nîţi\nla\nlângă\nle\nli\nlîngă\nlor\nlui\nmă\nmâine\nmea\nmei\nmele\nmereu\nmeu\nmi\nmine\nmult\nmultă\nmulţi\nne\nnicăieri\nnici\nnimeni\nnişte\nnoastră\nnoastre\nnoi\nnoştri\nnostru\nnu\nori\noricând\noricare\noricât\norice\noricînd\noricine\noricît\noricum\noriunde\npână\npe\npentru\npeste\npînă\npoate\npot\nprea\nprima\nprimul\nprin\nprintr\nsa\nsă\nsăi\nsale\nsau\nsău\nse\nşi\nsînt\nsîntem\nsînteţi\nspre\nsub\nsunt\nsuntem\nsunteţi\nta\ntăi\ntale\ntău\nte\nţi\nţie\ntine\ntoată\ntoate\ntot\ntoţi\ntotuşi\ntu\nun\nuna\nunde\nundeva\nunei\nunele\nuneori\nunor\nvă\nvi\nvoastră\nvoastre\nvoi\nvoştri\nvostru\nvouă\nvreo\nvreun\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_ru.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/russian/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | a russian stop word list. comments begin with vertical bar. each stop\n | word is at the start of a line.\n\n | this is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n | letter `ё' is translated to `е'.\n\nи              | and\nв              | in/into\nво             | alternative form\nне             | not\nчто            | what/that\nон             | he\nна             | on/onto\nя              | i\nс              | from\nсо             | alternative form\nкак            | how\nа              | milder form of `no' (but)\nто             | conjunction and form of `that'\nвсе            | all\nона            | she\nтак            | so, thus\nего            | him\nно             | but\nда             | yes/and\nты             | thou\nк              | towards, by\nу              | around, chez\nже             | intensifier particle\nвы             | you\nза             | beyond, behind\nбы             | conditional/subj. particle\nпо             | up to, along\nтолько         | only\nее             | her\nмне            | to me\nбыло           | it was\nвот            | here is/are, particle\nот             | away from\nменя           | me\nеще            | still, yet, more\nнет            | no, there isnt/arent\nо              | about\nиз             | out of\nему            | to him\nтеперь         | now\nкогда          | when\nдаже           | even\nну             | so, well\nвдруг          | suddenly\nли             | interrogative particle\nесли           | if\nуже            | already, but homonym of `narrower'\nили            | or\nни             | neither\nбыть           | to be\nбыл            | he was\nнего           | prepositional form of его\nдо             | up to\nвас            | you accusative\nнибудь         | indef. suffix preceded by hyphen\nопять          | again\nуж             | already, but homonym of `adder'\nвам            | to you\nсказал         | he said\nведь           | particle `after all'\nтам            | there\nпотом          | then\nсебя           | oneself\nничего         | nothing\nей             | to her\nможет          | usually with `быть' as `maybe'\nони            | they\nтут            | here\nгде            | where\nесть           | there is/are\nнадо           | got to, must\nней            | prepositional form of  ей\nдля            | for\nмы             | we\nтебя           | thee\nих             | them, their\nчем            | than\nбыла           | she was\nсам            | self\nчтоб           | in order to\nбез            | without\nбудто          | as if\nчеловек        | man, person, one\nчего           | genitive form of `what'\nраз            | once\nтоже           | also\nсебе           | to oneself\nпод            | beneath\nжизнь          | life\nбудет          | will be\nж              | short form of intensifer particle `же'\nтогда          | then\nкто            | who\nэтот           | this\nговорил        | was saying\nтого           | genitive form of `that'\nпотому         | for that reason\nэтого          | genitive form of `this'\nкакой          | which\nсовсем         | altogether\nним            | prepositional form of `его', `они'\nздесь          | here\nэтом           | prepositional form of `этот'\nодин           | one\nпочти          | almost\nмой            | my\nтем            | instrumental/dative plural of `тот', `то'\nчтобы          | full form of `in order that'\nнее            | her (acc.)\nкажется        | it seems\nсейчас         | now\nбыли           | they were\nкуда           | where to\nзачем          | why\nсказать        | to say\nвсех           | all (acc., gen. preposn. plural)\nникогда        | never\nсегодня        | today\nможно          | possible, one can\nпри            | by\nнаконец        | finally\nдва            | two\nоб             | alternative form of `о', about\nдругой         | another\nхоть           | even\nпосле          | after\nнад            | above\nбольше         | more\nтот            | that one (masc.)\nчерез          | across, in\nэти            | these\nнас            | us\nпро            | about\nвсего          | in all, only, of all\nних            | prepositional form of `они' (they)\nкакая          | which, feminine\nмного          | lots\nразве          | interrogative particle\nсказала        | she said\nтри            | three\nэту            | this, acc. fem. sing.\nмоя            | my, feminine\nвпрочем        | moreover, besides\nхорошо         | good\nсвою           | ones own, acc. fem. sing.\nэтой           | oblique form of `эта', fem. `this'\nперед          | in front of\nиногда         | sometimes\nлучше          | better\nчуть           | a little\nтом            | preposn. form of `that one'\nнельзя         | one must not\nтакой          | such a one\nим             | to them\nболее          | more\nвсегда         | always\nконечно        | of course\nвсю            | acc. fem. sing of `all'\nмежду          | between\n\n\n  | b: some paradigms\n  |\n  | personal pronouns\n  |\n  | я  меня  мне  мной  [мною]\n  | ты  тебя  тебе  тобой  [тобою]\n  | он  его  ему  им  [него, нему, ним]\n  | она  ее  эи  ею  [нее, нэи, нею]\n  | оно  его  ему  им  [него, нему, ним]\n  |\n  | мы  нас  нам  нами\n  | вы  вас  вам  вами\n  | они  их  им  ими  [них, ним, ними]\n  |\n  |   себя  себе  собой   [собою]\n  |\n  | demonstrative pronouns: этот (this), тот (that)\n  |\n  | этот  эта  это  эти\n  | этого  эты  это  эти\n  | этого  этой  этого  этих\n  | этому  этой  этому  этим\n  | этим  этой  этим  [этою]  этими\n  | этом  этой  этом  этих\n  |\n  | тот  та  то  те\n  | того  ту  то  те\n  | того  той  того  тех\n  | тому  той  тому  тем\n  | тем  той  тем  [тою]  теми\n  | том  той  том  тех\n  |\n  | determinative pronouns\n  |\n  | (a) весь (all)\n  |\n  | весь  вся  все  все\n  | всего  всю  все  все\n  | всего  всей  всего  всех\n  | всему  всей  всему  всем\n  | всем  всей  всем  [всею]  всеми\n  | всем  всей  всем  всех\n  |\n  | (b) сам (himself etc)\n  |\n  | сам  сама  само  сами\n  | самого саму  само  самих\n  | самого самой самого  самих\n  | самому самой самому  самим\n  | самим  самой  самим  [самою]  самими\n  | самом самой самом  самих\n  |\n  | stems of verbs `to be', `to have', `to do' and modal\n  |\n  | быть  бы  буд  быв  есть  суть\n  | име\n  | дел\n  | мог   мож  мочь\n  | уме\n  | хоч  хот\n  | долж\n  | можн\n  | нужн\n  | нельзя\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_sv.txt",
    "content": " | From svn.tartarus.org/snowball/trunk/website/algorithms/swedish/stop.txt\n | This file is distributed under the BSD License.\n | See http://snowball.tartarus.org/license.php\n | Also see http://www.opensource.org/licenses/bsd-license.html\n |  - Encoding was converted to UTF-8.\n |  - This notice was added.\n\n | A Swedish stop word list. Comments begin with vertical bar. Each stop\n | word is at the start of a line.\n\n | This is a ranked list (commonest to rarest) of stopwords derived from\n | a large text sample.\n\n | Swedish stop words occasionally exhibit homonym clashes. For example\n |  så = so, but also seed. These are indicated clearly below.\n\noch            | and\ndet            | it, this/that\natt            | to (with infinitive)\ni              | in, at\nen             | a\njag            | I\nhon            | she\nsom            | who, that\nhan            | he\npå             | on\nden            | it, this/that\nmed            | with\nvar            | where, each\nsig            | him(self) etc\nför            | for\nså             | so (also: seed)\ntill           | to\när             | is\nmen            | but\nett            | a\nom             | if; around, about\nhade           | had\nde             | they, these/those\nav             | of\nicke           | not, no\nmig            | me\ndu             | you\nhenne          | her\ndå             | then, when\nsin            | his\nnu             | now\nhar            | have\ninte           | inte någon = no one\nhans           | his\nhonom          | him\nskulle         | 'sake'\nhennes         | her\ndär            | there\nmin            | my\nman            | one (pronoun)\nej             | nor\nvid            | at, by, on (also: vast)\nkunde          | could\nnågot          | some etc\nfrån           | from, off\nut             | out\nnär            | when\nefter          | after, behind\nupp            | up\nvi             | we\ndem            | them\nvara           | be\nvad            | what\növer           | over\nän             | than\ndig            | you\nkan            | can\nsina           | his\nhär            | here\nha             | have\nmot            | towards\nalla           | all\nunder          | under (also: wonder)\nnågon          | some etc\neller          | or (else)\nallt           | all\nmycket         | much\nsedan          | since\nju             | why\ndenna          | this/that\nsjälv          | myself, yourself etc\ndetta          | this/that\nåt             | to\nutan           | without\nvarit          | was\nhur            | how\ningen          | no\nmitt           | my\nni             | you\nbli            | to be, become\nblev           | from bli\noss            | us\ndin            | thy\ndessa          | these/those\nnågra          | some etc\nderas          | their\nblir           | from bli\nmina           | my\nsamma          | (the) same\nvilken         | who, that\ner             | you, your\nsådan          | such a\nvår            | our\nblivit         | from bli\ndess           | its\ninom           | within\nmellan         | between\nsådant         | such a\nvarför         | why\nvarje          | each\nvilka          | who, that\nditt           | thy\nvem            | who\nvilket         | who, that\nsitta          | his\nsådana         | such a\nvart           | each\ndina           | thy\nvars           | whose\nvårt           | our\nvåra           | our\nert            | your\nera            | your\nvilkas         | whose\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_th.txt",
    "content": "# Thai stopwords from:\n# \"Opinion Detection in Thai Political News Columns\n# Based on Subjectivity Analysis\"\n# Khampol Sukhum, Supot Nitsuwat, and Choochart Haruechaiyasak\nไว้\nไม่\nไป\nได้\nให้\nใน\nโดย\nแห่ง\nแล้ว\nและ\nแรก\nแบบ\nแต่\nเอง\nเห็น\nเลย\nเริ่ม\nเรา\nเมื่อ\nเพื่อ\nเพราะ\nเป็นการ\nเป็น\nเปิดเผย\nเปิด\nเนื่องจาก\nเดียวกัน\nเดียว\nเช่น\nเฉพาะ\nเคย\nเข้า\nเขา\nอีก\nอาจ\nอะไร\nออก\nอย่าง\nอยู่\nอยาก\nหาก\nหลาย\nหลังจาก\nหลัง\nหรือ\nหนึ่ง\nส่วน\nส่ง\nสุด\nสําหรับ\nว่า\nวัน\nลง\nร่วม\nราย\nรับ\nระหว่าง\nรวม\nยัง\nมี\nมาก\nมา\nพร้อม\nพบ\nผ่าน\nผล\nบาง\nน่า\nนี้\nนํา\nนั้น\nนัก\nนอกจาก\nทุก\nที่สุด\nที่\nทําให้\nทํา\nทาง\nทั้งนี้\nทั้ง\nถ้า\nถูก\nถึง\nต้อง\nต่างๆ\nต่าง\nต่อ\nตาม\nตั้งแต่\nตั้ง\nด้าน\nด้วย\nดัง\nซึ่ง\nช่วง\nจึง\nจาก\nจัด\nจะ\nคือ\nความ\nครั้ง\nคง\nขึ้น\nของ\nขอ\nขณะ\nก่อน\nก็\nการ\nกับ\nกัน\nกว่า\nกล่าว\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/stopwords_tr.txt",
    "content": "# Turkish stopwords from LUCENE-559\n# merged with the list from \"Information Retrieval on Turkish Texts\"\n#   (http://www.users.muohio.edu/canf/papers/JASIST2008offPrint.pdf)\nacaba\naltmış\naltı\nama\nancak\narada\naslında\nayrıca\nbana\nbazı\nbelki\nben\nbenden\nbeni\nbenim\nberi\nbeş\nbile\nbin\nbir\nbirçok\nbiri\nbirkaç\nbirkez\nbirşey\nbirşeyi\nbiz\nbize\nbizden\nbizi\nbizim\nböyle\nböylece\nbu\nbuna\nbunda\nbundan\nbunlar\nbunları\nbunların\nbunu\nbunun\nburada\nçok\nçünkü\nda\ndaha\ndahi\nde\ndefa\ndeğil\ndiğer\ndiye\ndoksan\ndokuz\ndolayı\ndolayısıyla\ndört\nedecek\neden\nederek\nedilecek\nediliyor\nedilmesi\nediyor\neğer\nelli\nen\netmesi\netti\nettiği\nettiğini\ngibi\ngöre\nhalen\nhangi\nhatta\nhem\nhenüz\nhep\nhepsi\nher\nherhangi\nherkesin\nhiç\nhiçbir\niçin\niki\nile\nilgili\nise\nişte\nitibaren\nitibariyle\nkadar\nkarşın\nkatrilyon\nkendi\nkendilerine\nkendini\nkendisi\nkendisine\nkendisini\nkez\nki\nkim\nkimden\nkime\nkimi\nkimse\nkırk\nmilyar\nmilyon\nmu\nmü\nmı\nnasıl\nne\nneden\nnedenle\nnerde\nnerede\nnereye\nniye\nniçin\no\nolan\nolarak\noldu\nolduğu\nolduğunu\nolduklarını\nolmadı\nolmadığı\nolmak\nolması\nolmayan\nolmaz\nolsa\nolsun\nolup\nolur\nolursa\noluyor\non\nona\nondan\nonlar\nonlardan\nonları\nonların\nonu\nonun\notuz\noysa\nöyle\npek\nrağmen\nsadece\nsanki\nsekiz\nseksen\nsen\nsenden\nseni\nsenin\nsiz\nsizden\nsizi\nsizin\nşey\nşeyden\nşeyi\nşeyler\nşöyle\nşu\nşuna\nşunda\nşundan\nşunları\nşunu\ntarafından\ntrilyon\ntüm\nüç\nüzere\nvar\nvardı\nve\nveya\nya\nyani\nyapacak\nyapılan\nyapılması\nyapıyor\nyapmak\nyaptı\nyaptığı\nyaptığını\nyaptıkları\nyedi\nyerine\nyetmiş\nyine\nyirmi\nyoksa\nyüz\nzaten\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/lang/userdict_ja.txt",
    "content": "#\n# This is a sample user dictionary for Kuromoji (JapaneseTokenizer)\n#\n# Add entries to this file in order to override the statistical model in terms\n# of segmentation, readings and part-of-speech tags.  Notice that entries do\n# not have weights since they are always used when found.  This is by-design\n# in order to maximize ease-of-use.\n#\n# Entries are defined using the following CSV format:\n#  <text>,<token 1> ... <token n>,<reading 1> ... <reading n>,<part-of-speech tag>\n#\n# Notice that a single half-width space separates tokens and readings, and\n# that the number tokens and readings must match exactly.\n#\n# Also notice that multiple entries with the same <text> is undefined.\n#\n# Whitespace only lines are ignored.  Comments are not allowed on entry lines.\n#\n\n# Custom segmentation for kanji compounds\n日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞\n関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,カスタム名詞\n\n# Custom segmentation for compound katakana\nトートバッグ,トート バッグ,トート バッグ,かずカナ名詞\nショルダーバッグ,ショルダー バッグ,ショルダー バッグ,かずカナ名詞\n\n# Custom reading for former sumo wrestler\n朝青龍,朝青龍,アサショウリュウ,カスタム人名\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/mapping-FoldToASCII.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\n# This map converts alphabetic, numeric, and symbolic Unicode characters\n# which are not in the first 127 ASCII characters (the \"Basic Latin\" Unicode\n# block) into their ASCII equivalents, if one exists.\n#\n# Characters from the following Unicode blocks are converted; however, only\n# those characters with reasonable ASCII alternatives are converted:\n#\n# - C1 Controls and Latin-1 Supplement: http://www.unicode.org/charts/PDF/U0080.pdf\n# - Latin Extended-A: http://www.unicode.org/charts/PDF/U0100.pdf\n# - Latin Extended-B: http://www.unicode.org/charts/PDF/U0180.pdf\n# - Latin Extended Additional: http://www.unicode.org/charts/PDF/U1E00.pdf\n# - Latin Extended-C: http://www.unicode.org/charts/PDF/U2C60.pdf\n# - Latin Extended-D: http://www.unicode.org/charts/PDF/UA720.pdf\n# - IPA Extensions: http://www.unicode.org/charts/PDF/U0250.pdf\n# - Phonetic Extensions: http://www.unicode.org/charts/PDF/U1D00.pdf\n# - Phonetic Extensions Supplement: http://www.unicode.org/charts/PDF/U1D80.pdf\n# - General Punctuation: http://www.unicode.org/charts/PDF/U2000.pdf\n# - Superscripts and Subscripts: http://www.unicode.org/charts/PDF/U2070.pdf\n# - Enclosed Alphanumerics: http://www.unicode.org/charts/PDF/U2460.pdf\n# - Dingbats: http://www.unicode.org/charts/PDF/U2700.pdf\n# - Supplemental Punctuation: http://www.unicode.org/charts/PDF/U2E00.pdf\n# - Alphabetic Presentation Forms: http://www.unicode.org/charts/PDF/UFB00.pdf\n# - Halfwidth and Fullwidth Forms: http://www.unicode.org/charts/PDF/UFF00.pdf\n#  \n# See: http://en.wikipedia.org/wiki/Latin_characters_in_Unicode\n#\n# The set of character conversions supported by this map is a superset of\n# those supported by the map represented by mapping-ISOLatin1Accent.txt.\n#\n# See the bottom of this file for the Perl script used to generate the contents\n# of this file (without this header) from ASCIIFoldingFilter.java.\n\n\n# Syntax:\n#   \"source\" => \"target\"\n#     \"source\".length() > 0 (source cannot be empty.)\n#     \"target\".length() >= 0 (target can be empty.)\n\n\n# À  [LATIN CAPITAL LETTER A WITH GRAVE]\n\"\\u00C0\" => \"A\"\n\n# Á  [LATIN CAPITAL LETTER A WITH ACUTE]\n\"\\u00C1\" => \"A\"\n\n# Â  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX]\n\"\\u00C2\" => \"A\"\n\n# Ã  [LATIN CAPITAL LETTER A WITH TILDE]\n\"\\u00C3\" => \"A\"\n\n# Ä  [LATIN CAPITAL LETTER A WITH DIAERESIS]\n\"\\u00C4\" => \"A\"\n\n# Å  [LATIN CAPITAL LETTER A WITH RING ABOVE]\n\"\\u00C5\" => \"A\"\n\n# Ā  [LATIN CAPITAL LETTER A WITH MACRON]\n\"\\u0100\" => \"A\"\n\n# Ă  [LATIN CAPITAL LETTER A WITH BREVE]\n\"\\u0102\" => \"A\"\n\n# Ą  [LATIN CAPITAL LETTER A WITH OGONEK]\n\"\\u0104\" => \"A\"\n\n# Ə  http://en.wikipedia.org/wiki/Schwa  [LATIN CAPITAL LETTER SCHWA]\n\"\\u018F\" => \"A\"\n\n# Ǎ  [LATIN CAPITAL LETTER A WITH CARON]\n\"\\u01CD\" => \"A\"\n\n# Ǟ  [LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON]\n\"\\u01DE\" => \"A\"\n\n# Ǡ  [LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON]\n\"\\u01E0\" => \"A\"\n\n# Ǻ  [LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE]\n\"\\u01FA\" => \"A\"\n\n# Ȁ  [LATIN CAPITAL LETTER A WITH DOUBLE GRAVE]\n\"\\u0200\" => \"A\"\n\n# Ȃ  [LATIN CAPITAL LETTER A WITH INVERTED BREVE]\n\"\\u0202\" => \"A\"\n\n# Ȧ  [LATIN CAPITAL LETTER A WITH DOT ABOVE]\n\"\\u0226\" => \"A\"\n\n# Ⱥ  [LATIN CAPITAL LETTER A WITH STROKE]\n\"\\u023A\" => \"A\"\n\n# ᴀ  [LATIN LETTER SMALL CAPITAL A]\n\"\\u1D00\" => \"A\"\n\n# Ḁ  [LATIN CAPITAL LETTER A WITH RING BELOW]\n\"\\u1E00\" => \"A\"\n\n# Ạ  [LATIN CAPITAL LETTER A WITH DOT BELOW]\n\"\\u1EA0\" => \"A\"\n\n# Ả  [LATIN CAPITAL LETTER A WITH HOOK ABOVE]\n\"\\u1EA2\" => \"A\"\n\n# Ấ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EA4\" => \"A\"\n\n# Ầ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EA6\" => \"A\"\n\n# Ẩ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EA8\" => \"A\"\n\n# Ẫ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE]\n\"\\u1EAA\" => \"A\"\n\n# Ậ  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EAC\" => \"A\"\n\n# Ắ  [LATIN CAPITAL LETTER A WITH BREVE AND ACUTE]\n\"\\u1EAE\" => \"A\"\n\n# Ằ  [LATIN CAPITAL LETTER A WITH BREVE AND GRAVE]\n\"\\u1EB0\" => \"A\"\n\n# Ẳ  [LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE]\n\"\\u1EB2\" => \"A\"\n\n# Ẵ  [LATIN CAPITAL LETTER A WITH BREVE AND TILDE]\n\"\\u1EB4\" => \"A\"\n\n# Ặ  [LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW]\n\"\\u1EB6\" => \"A\"\n\n# Ⓐ  [CIRCLED LATIN CAPITAL LETTER A]\n\"\\u24B6\" => \"A\"\n\n# Ａ  [FULLWIDTH LATIN CAPITAL LETTER A]\n\"\\uFF21\" => \"A\"\n\n# à  [LATIN SMALL LETTER A WITH GRAVE]\n\"\\u00E0\" => \"a\"\n\n# á  [LATIN SMALL LETTER A WITH ACUTE]\n\"\\u00E1\" => \"a\"\n\n# â  [LATIN SMALL LETTER A WITH CIRCUMFLEX]\n\"\\u00E2\" => \"a\"\n\n# ã  [LATIN SMALL LETTER A WITH TILDE]\n\"\\u00E3\" => \"a\"\n\n# ä  [LATIN SMALL LETTER A WITH DIAERESIS]\n\"\\u00E4\" => \"a\"\n\n# å  [LATIN SMALL LETTER A WITH RING ABOVE]\n\"\\u00E5\" => \"a\"\n\n# ā  [LATIN SMALL LETTER A WITH MACRON]\n\"\\u0101\" => \"a\"\n\n# ă  [LATIN SMALL LETTER A WITH BREVE]\n\"\\u0103\" => \"a\"\n\n# ą  [LATIN SMALL LETTER A WITH OGONEK]\n\"\\u0105\" => \"a\"\n\n# ǎ  [LATIN SMALL LETTER A WITH CARON]\n\"\\u01CE\" => \"a\"\n\n# ǟ  [LATIN SMALL LETTER A WITH DIAERESIS AND MACRON]\n\"\\u01DF\" => \"a\"\n\n# ǡ  [LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON]\n\"\\u01E1\" => \"a\"\n\n# ǻ  [LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE]\n\"\\u01FB\" => \"a\"\n\n# ȁ  [LATIN SMALL LETTER A WITH DOUBLE GRAVE]\n\"\\u0201\" => \"a\"\n\n# ȃ  [LATIN SMALL LETTER A WITH INVERTED BREVE]\n\"\\u0203\" => \"a\"\n\n# ȧ  [LATIN SMALL LETTER A WITH DOT ABOVE]\n\"\\u0227\" => \"a\"\n\n# ɐ  [LATIN SMALL LETTER TURNED A]\n\"\\u0250\" => \"a\"\n\n# ə  [LATIN SMALL LETTER SCHWA]\n\"\\u0259\" => \"a\"\n\n# ɚ  [LATIN SMALL LETTER SCHWA WITH HOOK]\n\"\\u025A\" => \"a\"\n\n# ᶏ  [LATIN SMALL LETTER A WITH RETROFLEX HOOK]\n\"\\u1D8F\" => \"a\"\n\n# ᶕ  [LATIN SMALL LETTER SCHWA WITH RETROFLEX HOOK]\n\"\\u1D95\" => \"a\"\n\n# ạ  [LATIN SMALL LETTER A WITH RING BELOW]\n\"\\u1E01\" => \"a\"\n\n# ả  [LATIN SMALL LETTER A WITH RIGHT HALF RING]\n\"\\u1E9A\" => \"a\"\n\n# ạ  [LATIN SMALL LETTER A WITH DOT BELOW]\n\"\\u1EA1\" => \"a\"\n\n# ả  [LATIN SMALL LETTER A WITH HOOK ABOVE]\n\"\\u1EA3\" => \"a\"\n\n# ấ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EA5\" => \"a\"\n\n# ầ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EA7\" => \"a\"\n\n# ẩ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EA9\" => \"a\"\n\n# ẫ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE]\n\"\\u1EAB\" => \"a\"\n\n# ậ  [LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EAD\" => \"a\"\n\n# ắ  [LATIN SMALL LETTER A WITH BREVE AND ACUTE]\n\"\\u1EAF\" => \"a\"\n\n# ằ  [LATIN SMALL LETTER A WITH BREVE AND GRAVE]\n\"\\u1EB1\" => \"a\"\n\n# ẳ  [LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE]\n\"\\u1EB3\" => \"a\"\n\n# ẵ  [LATIN SMALL LETTER A WITH BREVE AND TILDE]\n\"\\u1EB5\" => \"a\"\n\n# ặ  [LATIN SMALL LETTER A WITH BREVE AND DOT BELOW]\n\"\\u1EB7\" => \"a\"\n\n# ₐ  [LATIN SUBSCRIPT SMALL LETTER A]\n\"\\u2090\" => \"a\"\n\n# ₔ  [LATIN SUBSCRIPT SMALL LETTER SCHWA]\n\"\\u2094\" => \"a\"\n\n# ⓐ  [CIRCLED LATIN SMALL LETTER A]\n\"\\u24D0\" => \"a\"\n\n# ⱥ  [LATIN SMALL LETTER A WITH STROKE]\n\"\\u2C65\" => \"a\"\n\n# Ɐ  [LATIN CAPITAL LETTER TURNED A]\n\"\\u2C6F\" => \"a\"\n\n# ａ  [FULLWIDTH LATIN SMALL LETTER A]\n\"\\uFF41\" => \"a\"\n\n# Ꜳ  [LATIN CAPITAL LETTER AA]\n\"\\uA732\" => \"AA\"\n\n# Æ  [LATIN CAPITAL LETTER AE]\n\"\\u00C6\" => \"AE\"\n\n# Ǣ  [LATIN CAPITAL LETTER AE WITH MACRON]\n\"\\u01E2\" => \"AE\"\n\n# Ǽ  [LATIN CAPITAL LETTER AE WITH ACUTE]\n\"\\u01FC\" => \"AE\"\n\n# ᴁ  [LATIN LETTER SMALL CAPITAL AE]\n\"\\u1D01\" => \"AE\"\n\n# Ꜵ  [LATIN CAPITAL LETTER AO]\n\"\\uA734\" => \"AO\"\n\n# Ꜷ  [LATIN CAPITAL LETTER AU]\n\"\\uA736\" => \"AU\"\n\n# Ꜹ  [LATIN CAPITAL LETTER AV]\n\"\\uA738\" => \"AV\"\n\n# Ꜻ  [LATIN CAPITAL LETTER AV WITH HORIZONTAL BAR]\n\"\\uA73A\" => \"AV\"\n\n# Ꜽ  [LATIN CAPITAL LETTER AY]\n\"\\uA73C\" => \"AY\"\n\n# ⒜  [PARENTHESIZED LATIN SMALL LETTER A]\n\"\\u249C\" => \"(a)\"\n\n# ꜳ  [LATIN SMALL LETTER AA]\n\"\\uA733\" => \"aa\"\n\n# æ  [LATIN SMALL LETTER AE]\n\"\\u00E6\" => \"ae\"\n\n# ǣ  [LATIN SMALL LETTER AE WITH MACRON]\n\"\\u01E3\" => \"ae\"\n\n# ǽ  [LATIN SMALL LETTER AE WITH ACUTE]\n\"\\u01FD\" => \"ae\"\n\n# ᴂ  [LATIN SMALL LETTER TURNED AE]\n\"\\u1D02\" => \"ae\"\n\n# ꜵ  [LATIN SMALL LETTER AO]\n\"\\uA735\" => \"ao\"\n\n# ꜷ  [LATIN SMALL LETTER AU]\n\"\\uA737\" => \"au\"\n\n# ꜹ  [LATIN SMALL LETTER AV]\n\"\\uA739\" => \"av\"\n\n# ꜻ  [LATIN SMALL LETTER AV WITH HORIZONTAL BAR]\n\"\\uA73B\" => \"av\"\n\n# ꜽ  [LATIN SMALL LETTER AY]\n\"\\uA73D\" => \"ay\"\n\n# Ɓ  [LATIN CAPITAL LETTER B WITH HOOK]\n\"\\u0181\" => \"B\"\n\n# Ƃ  [LATIN CAPITAL LETTER B WITH TOPBAR]\n\"\\u0182\" => \"B\"\n\n# Ƀ  [LATIN CAPITAL LETTER B WITH STROKE]\n\"\\u0243\" => \"B\"\n\n# ʙ  [LATIN LETTER SMALL CAPITAL B]\n\"\\u0299\" => \"B\"\n\n# ᴃ  [LATIN LETTER SMALL CAPITAL BARRED B]\n\"\\u1D03\" => \"B\"\n\n# Ḃ  [LATIN CAPITAL LETTER B WITH DOT ABOVE]\n\"\\u1E02\" => \"B\"\n\n# Ḅ  [LATIN CAPITAL LETTER B WITH DOT BELOW]\n\"\\u1E04\" => \"B\"\n\n# Ḇ  [LATIN CAPITAL LETTER B WITH LINE BELOW]\n\"\\u1E06\" => \"B\"\n\n# Ⓑ  [CIRCLED LATIN CAPITAL LETTER B]\n\"\\u24B7\" => \"B\"\n\n# Ｂ  [FULLWIDTH LATIN CAPITAL LETTER B]\n\"\\uFF22\" => \"B\"\n\n# ƀ  [LATIN SMALL LETTER B WITH STROKE]\n\"\\u0180\" => \"b\"\n\n# ƃ  [LATIN SMALL LETTER B WITH TOPBAR]\n\"\\u0183\" => \"b\"\n\n# ɓ  [LATIN SMALL LETTER B WITH HOOK]\n\"\\u0253\" => \"b\"\n\n# ᵬ  [LATIN SMALL LETTER B WITH MIDDLE TILDE]\n\"\\u1D6C\" => \"b\"\n\n# ᶀ  [LATIN SMALL LETTER B WITH PALATAL HOOK]\n\"\\u1D80\" => \"b\"\n\n# ḃ  [LATIN SMALL LETTER B WITH DOT ABOVE]\n\"\\u1E03\" => \"b\"\n\n# ḅ  [LATIN SMALL LETTER B WITH DOT BELOW]\n\"\\u1E05\" => \"b\"\n\n# ḇ  [LATIN SMALL LETTER B WITH LINE BELOW]\n\"\\u1E07\" => \"b\"\n\n# ⓑ  [CIRCLED LATIN SMALL LETTER B]\n\"\\u24D1\" => \"b\"\n\n# ｂ  [FULLWIDTH LATIN SMALL LETTER B]\n\"\\uFF42\" => \"b\"\n\n# ⒝  [PARENTHESIZED LATIN SMALL LETTER B]\n\"\\u249D\" => \"(b)\"\n\n# Ç  [LATIN CAPITAL LETTER C WITH CEDILLA]\n\"\\u00C7\" => \"C\"\n\n# Ć  [LATIN CAPITAL LETTER C WITH ACUTE]\n\"\\u0106\" => \"C\"\n\n# Ĉ  [LATIN CAPITAL LETTER C WITH CIRCUMFLEX]\n\"\\u0108\" => \"C\"\n\n# Ċ  [LATIN CAPITAL LETTER C WITH DOT ABOVE]\n\"\\u010A\" => \"C\"\n\n# Č  [LATIN CAPITAL LETTER C WITH CARON]\n\"\\u010C\" => \"C\"\n\n# Ƈ  [LATIN CAPITAL LETTER C WITH HOOK]\n\"\\u0187\" => \"C\"\n\n# Ȼ  [LATIN CAPITAL LETTER C WITH STROKE]\n\"\\u023B\" => \"C\"\n\n# ʗ  [LATIN LETTER STRETCHED C]\n\"\\u0297\" => \"C\"\n\n# ᴄ  [LATIN LETTER SMALL CAPITAL C]\n\"\\u1D04\" => \"C\"\n\n# Ḉ  [LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE]\n\"\\u1E08\" => \"C\"\n\n# Ⓒ  [CIRCLED LATIN CAPITAL LETTER C]\n\"\\u24B8\" => \"C\"\n\n# Ｃ  [FULLWIDTH LATIN CAPITAL LETTER C]\n\"\\uFF23\" => \"C\"\n\n# ç  [LATIN SMALL LETTER C WITH CEDILLA]\n\"\\u00E7\" => \"c\"\n\n# ć  [LATIN SMALL LETTER C WITH ACUTE]\n\"\\u0107\" => \"c\"\n\n# ĉ  [LATIN SMALL LETTER C WITH CIRCUMFLEX]\n\"\\u0109\" => \"c\"\n\n# ċ  [LATIN SMALL LETTER C WITH DOT ABOVE]\n\"\\u010B\" => \"c\"\n\n# č  [LATIN SMALL LETTER C WITH CARON]\n\"\\u010D\" => \"c\"\n\n# ƈ  [LATIN SMALL LETTER C WITH HOOK]\n\"\\u0188\" => \"c\"\n\n# ȼ  [LATIN SMALL LETTER C WITH STROKE]\n\"\\u023C\" => \"c\"\n\n# ɕ  [LATIN SMALL LETTER C WITH CURL]\n\"\\u0255\" => \"c\"\n\n# ḉ  [LATIN SMALL LETTER C WITH CEDILLA AND ACUTE]\n\"\\u1E09\" => \"c\"\n\n# ↄ  [LATIN SMALL LETTER REVERSED C]\n\"\\u2184\" => \"c\"\n\n# ⓒ  [CIRCLED LATIN SMALL LETTER C]\n\"\\u24D2\" => \"c\"\n\n# Ꜿ  [LATIN CAPITAL LETTER REVERSED C WITH DOT]\n\"\\uA73E\" => \"c\"\n\n# ꜿ  [LATIN SMALL LETTER REVERSED C WITH DOT]\n\"\\uA73F\" => \"c\"\n\n# ｃ  [FULLWIDTH LATIN SMALL LETTER C]\n\"\\uFF43\" => \"c\"\n\n# ⒞  [PARENTHESIZED LATIN SMALL LETTER C]\n\"\\u249E\" => \"(c)\"\n\n# Ð  [LATIN CAPITAL LETTER ETH]\n\"\\u00D0\" => \"D\"\n\n# Ď  [LATIN CAPITAL LETTER D WITH CARON]\n\"\\u010E\" => \"D\"\n\n# Đ  [LATIN CAPITAL LETTER D WITH STROKE]\n\"\\u0110\" => \"D\"\n\n# Ɖ  [LATIN CAPITAL LETTER AFRICAN D]\n\"\\u0189\" => \"D\"\n\n# Ɗ  [LATIN CAPITAL LETTER D WITH HOOK]\n\"\\u018A\" => \"D\"\n\n# Ƌ  [LATIN CAPITAL LETTER D WITH TOPBAR]\n\"\\u018B\" => \"D\"\n\n# ᴅ  [LATIN LETTER SMALL CAPITAL D]\n\"\\u1D05\" => \"D\"\n\n# ᴆ  [LATIN LETTER SMALL CAPITAL ETH]\n\"\\u1D06\" => \"D\"\n\n# Ḋ  [LATIN CAPITAL LETTER D WITH DOT ABOVE]\n\"\\u1E0A\" => \"D\"\n\n# Ḍ  [LATIN CAPITAL LETTER D WITH DOT BELOW]\n\"\\u1E0C\" => \"D\"\n\n# Ḏ  [LATIN CAPITAL LETTER D WITH LINE BELOW]\n\"\\u1E0E\" => \"D\"\n\n# Ḑ  [LATIN CAPITAL LETTER D WITH CEDILLA]\n\"\\u1E10\" => \"D\"\n\n# Ḓ  [LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW]\n\"\\u1E12\" => \"D\"\n\n# Ⓓ  [CIRCLED LATIN CAPITAL LETTER D]\n\"\\u24B9\" => \"D\"\n\n# Ꝺ  [LATIN CAPITAL LETTER INSULAR D]\n\"\\uA779\" => \"D\"\n\n# Ｄ  [FULLWIDTH LATIN CAPITAL LETTER D]\n\"\\uFF24\" => \"D\"\n\n# ð  [LATIN SMALL LETTER ETH]\n\"\\u00F0\" => \"d\"\n\n# ď  [LATIN SMALL LETTER D WITH CARON]\n\"\\u010F\" => \"d\"\n\n# đ  [LATIN SMALL LETTER D WITH STROKE]\n\"\\u0111\" => \"d\"\n\n# ƌ  [LATIN SMALL LETTER D WITH TOPBAR]\n\"\\u018C\" => \"d\"\n\n# ȡ  [LATIN SMALL LETTER D WITH CURL]\n\"\\u0221\" => \"d\"\n\n# ɖ  [LATIN SMALL LETTER D WITH TAIL]\n\"\\u0256\" => \"d\"\n\n# ɗ  [LATIN SMALL LETTER D WITH HOOK]\n\"\\u0257\" => \"d\"\n\n# ᵭ  [LATIN SMALL LETTER D WITH MIDDLE TILDE]\n\"\\u1D6D\" => \"d\"\n\n# ᶁ  [LATIN SMALL LETTER D WITH PALATAL HOOK]\n\"\\u1D81\" => \"d\"\n\n# ᶑ  [LATIN SMALL LETTER D WITH HOOK AND TAIL]\n\"\\u1D91\" => \"d\"\n\n# ḋ  [LATIN SMALL LETTER D WITH DOT ABOVE]\n\"\\u1E0B\" => \"d\"\n\n# ḍ  [LATIN SMALL LETTER D WITH DOT BELOW]\n\"\\u1E0D\" => \"d\"\n\n# ḏ  [LATIN SMALL LETTER D WITH LINE BELOW]\n\"\\u1E0F\" => \"d\"\n\n# ḑ  [LATIN SMALL LETTER D WITH CEDILLA]\n\"\\u1E11\" => \"d\"\n\n# ḓ  [LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW]\n\"\\u1E13\" => \"d\"\n\n# ⓓ  [CIRCLED LATIN SMALL LETTER D]\n\"\\u24D3\" => \"d\"\n\n# ꝺ  [LATIN SMALL LETTER INSULAR D]\n\"\\uA77A\" => \"d\"\n\n# ｄ  [FULLWIDTH LATIN SMALL LETTER D]\n\"\\uFF44\" => \"d\"\n\n# Ǆ  [LATIN CAPITAL LETTER DZ WITH CARON]\n\"\\u01C4\" => \"DZ\"\n\n# Ǳ  [LATIN CAPITAL LETTER DZ]\n\"\\u01F1\" => \"DZ\"\n\n# ǅ  [LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON]\n\"\\u01C5\" => \"Dz\"\n\n# ǲ  [LATIN CAPITAL LETTER D WITH SMALL LETTER Z]\n\"\\u01F2\" => \"Dz\"\n\n# ⒟  [PARENTHESIZED LATIN SMALL LETTER D]\n\"\\u249F\" => \"(d)\"\n\n# ȸ  [LATIN SMALL LETTER DB DIGRAPH]\n\"\\u0238\" => \"db\"\n\n# ǆ  [LATIN SMALL LETTER DZ WITH CARON]\n\"\\u01C6\" => \"dz\"\n\n# ǳ  [LATIN SMALL LETTER DZ]\n\"\\u01F3\" => \"dz\"\n\n# ʣ  [LATIN SMALL LETTER DZ DIGRAPH]\n\"\\u02A3\" => \"dz\"\n\n# ʥ  [LATIN SMALL LETTER DZ DIGRAPH WITH CURL]\n\"\\u02A5\" => \"dz\"\n\n# È  [LATIN CAPITAL LETTER E WITH GRAVE]\n\"\\u00C8\" => \"E\"\n\n# É  [LATIN CAPITAL LETTER E WITH ACUTE]\n\"\\u00C9\" => \"E\"\n\n# Ê  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX]\n\"\\u00CA\" => \"E\"\n\n# Ë  [LATIN CAPITAL LETTER E WITH DIAERESIS]\n\"\\u00CB\" => \"E\"\n\n# Ē  [LATIN CAPITAL LETTER E WITH MACRON]\n\"\\u0112\" => \"E\"\n\n# Ĕ  [LATIN CAPITAL LETTER E WITH BREVE]\n\"\\u0114\" => \"E\"\n\n# Ė  [LATIN CAPITAL LETTER E WITH DOT ABOVE]\n\"\\u0116\" => \"E\"\n\n# Ę  [LATIN CAPITAL LETTER E WITH OGONEK]\n\"\\u0118\" => \"E\"\n\n# Ě  [LATIN CAPITAL LETTER E WITH CARON]\n\"\\u011A\" => \"E\"\n\n# Ǝ  [LATIN CAPITAL LETTER REVERSED E]\n\"\\u018E\" => \"E\"\n\n# Ɛ  [LATIN CAPITAL LETTER OPEN E]\n\"\\u0190\" => \"E\"\n\n# Ȅ  [LATIN CAPITAL LETTER E WITH DOUBLE GRAVE]\n\"\\u0204\" => \"E\"\n\n# Ȇ  [LATIN CAPITAL LETTER E WITH INVERTED BREVE]\n\"\\u0206\" => \"E\"\n\n# Ȩ  [LATIN CAPITAL LETTER E WITH CEDILLA]\n\"\\u0228\" => \"E\"\n\n# Ɇ  [LATIN CAPITAL LETTER E WITH STROKE]\n\"\\u0246\" => \"E\"\n\n# ᴇ  [LATIN LETTER SMALL CAPITAL E]\n\"\\u1D07\" => \"E\"\n\n# Ḕ  [LATIN CAPITAL LETTER E WITH MACRON AND GRAVE]\n\"\\u1E14\" => \"E\"\n\n# Ḗ  [LATIN CAPITAL LETTER E WITH MACRON AND ACUTE]\n\"\\u1E16\" => \"E\"\n\n# Ḙ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW]\n\"\\u1E18\" => \"E\"\n\n# Ḛ  [LATIN CAPITAL LETTER E WITH TILDE BELOW]\n\"\\u1E1A\" => \"E\"\n\n# Ḝ  [LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE]\n\"\\u1E1C\" => \"E\"\n\n# Ẹ  [LATIN CAPITAL LETTER E WITH DOT BELOW]\n\"\\u1EB8\" => \"E\"\n\n# Ẻ  [LATIN CAPITAL LETTER E WITH HOOK ABOVE]\n\"\\u1EBA\" => \"E\"\n\n# Ẽ  [LATIN CAPITAL LETTER E WITH TILDE]\n\"\\u1EBC\" => \"E\"\n\n# Ế  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EBE\" => \"E\"\n\n# Ề  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EC0\" => \"E\"\n\n# Ể  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EC2\" => \"E\"\n\n# Ễ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE]\n\"\\u1EC4\" => \"E\"\n\n# Ệ  [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EC6\" => \"E\"\n\n# Ⓔ  [CIRCLED LATIN CAPITAL LETTER E]\n\"\\u24BA\" => \"E\"\n\n# ⱻ  [LATIN LETTER SMALL CAPITAL TURNED E]\n\"\\u2C7B\" => \"E\"\n\n# Ｅ  [FULLWIDTH LATIN CAPITAL LETTER E]\n\"\\uFF25\" => \"E\"\n\n# è  [LATIN SMALL LETTER E WITH GRAVE]\n\"\\u00E8\" => \"e\"\n\n# é  [LATIN SMALL LETTER E WITH ACUTE]\n\"\\u00E9\" => \"e\"\n\n# ê  [LATIN SMALL LETTER E WITH CIRCUMFLEX]\n\"\\u00EA\" => \"e\"\n\n# ë  [LATIN SMALL LETTER E WITH DIAERESIS]\n\"\\u00EB\" => \"e\"\n\n# ē  [LATIN SMALL LETTER E WITH MACRON]\n\"\\u0113\" => \"e\"\n\n# ĕ  [LATIN SMALL LETTER E WITH BREVE]\n\"\\u0115\" => \"e\"\n\n# ė  [LATIN SMALL LETTER E WITH DOT ABOVE]\n\"\\u0117\" => \"e\"\n\n# ę  [LATIN SMALL LETTER E WITH OGONEK]\n\"\\u0119\" => \"e\"\n\n# ě  [LATIN SMALL LETTER E WITH CARON]\n\"\\u011B\" => \"e\"\n\n# ǝ  [LATIN SMALL LETTER TURNED E]\n\"\\u01DD\" => \"e\"\n\n# ȅ  [LATIN SMALL LETTER E WITH DOUBLE GRAVE]\n\"\\u0205\" => \"e\"\n\n# ȇ  [LATIN SMALL LETTER E WITH INVERTED BREVE]\n\"\\u0207\" => \"e\"\n\n# ȩ  [LATIN SMALL LETTER E WITH CEDILLA]\n\"\\u0229\" => \"e\"\n\n# ɇ  [LATIN SMALL LETTER E WITH STROKE]\n\"\\u0247\" => \"e\"\n\n# ɘ  [LATIN SMALL LETTER REVERSED E]\n\"\\u0258\" => \"e\"\n\n# ɛ  [LATIN SMALL LETTER OPEN E]\n\"\\u025B\" => \"e\"\n\n# ɜ  [LATIN SMALL LETTER REVERSED OPEN E]\n\"\\u025C\" => \"e\"\n\n# ɝ  [LATIN SMALL LETTER REVERSED OPEN E WITH HOOK]\n\"\\u025D\" => \"e\"\n\n# ɞ  [LATIN SMALL LETTER CLOSED REVERSED OPEN E]\n\"\\u025E\" => \"e\"\n\n# ʚ  [LATIN SMALL LETTER CLOSED OPEN E]\n\"\\u029A\" => \"e\"\n\n# ᴈ  [LATIN SMALL LETTER TURNED OPEN E]\n\"\\u1D08\" => \"e\"\n\n# ᶒ  [LATIN SMALL LETTER E WITH RETROFLEX HOOK]\n\"\\u1D92\" => \"e\"\n\n# ᶓ  [LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK]\n\"\\u1D93\" => \"e\"\n\n# ᶔ  [LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK]\n\"\\u1D94\" => \"e\"\n\n# ḕ  [LATIN SMALL LETTER E WITH MACRON AND GRAVE]\n\"\\u1E15\" => \"e\"\n\n# ḗ  [LATIN SMALL LETTER E WITH MACRON AND ACUTE]\n\"\\u1E17\" => \"e\"\n\n# ḙ  [LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW]\n\"\\u1E19\" => \"e\"\n\n# ḛ  [LATIN SMALL LETTER E WITH TILDE BELOW]\n\"\\u1E1B\" => \"e\"\n\n# ḝ  [LATIN SMALL LETTER E WITH CEDILLA AND BREVE]\n\"\\u1E1D\" => \"e\"\n\n# ẹ  [LATIN SMALL LETTER E WITH DOT BELOW]\n\"\\u1EB9\" => \"e\"\n\n# ẻ  [LATIN SMALL LETTER E WITH HOOK ABOVE]\n\"\\u1EBB\" => \"e\"\n\n# ẽ  [LATIN SMALL LETTER E WITH TILDE]\n\"\\u1EBD\" => \"e\"\n\n# ế  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE]\n\"\\u1EBF\" => \"e\"\n\n# ề  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE]\n\"\\u1EC1\" => \"e\"\n\n# ể  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1EC3\" => \"e\"\n\n# ễ  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE]\n\"\\u1EC5\" => \"e\"\n\n# ệ  [LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1EC7\" => \"e\"\n\n# ₑ  [LATIN SUBSCRIPT SMALL LETTER E]\n\"\\u2091\" => \"e\"\n\n# ⓔ  [CIRCLED LATIN SMALL LETTER E]\n\"\\u24D4\" => \"e\"\n\n# ⱸ  [LATIN SMALL LETTER E WITH NOTCH]\n\"\\u2C78\" => \"e\"\n\n# ｅ  [FULLWIDTH LATIN SMALL LETTER E]\n\"\\uFF45\" => \"e\"\n\n# ⒠  [PARENTHESIZED LATIN SMALL LETTER E]\n\"\\u24A0\" => \"(e)\"\n\n# Ƒ  [LATIN CAPITAL LETTER F WITH HOOK]\n\"\\u0191\" => \"F\"\n\n# Ḟ  [LATIN CAPITAL LETTER F WITH DOT ABOVE]\n\"\\u1E1E\" => \"F\"\n\n# Ⓕ  [CIRCLED LATIN CAPITAL LETTER F]\n\"\\u24BB\" => \"F\"\n\n# ꜰ  [LATIN LETTER SMALL CAPITAL F]\n\"\\uA730\" => \"F\"\n\n# Ꝼ  [LATIN CAPITAL LETTER INSULAR F]\n\"\\uA77B\" => \"F\"\n\n# ꟻ  [LATIN EPIGRAPHIC LETTER REVERSED F]\n\"\\uA7FB\" => \"F\"\n\n# Ｆ  [FULLWIDTH LATIN CAPITAL LETTER F]\n\"\\uFF26\" => \"F\"\n\n# ƒ  [LATIN SMALL LETTER F WITH HOOK]\n\"\\u0192\" => \"f\"\n\n# ᵮ  [LATIN SMALL LETTER F WITH MIDDLE TILDE]\n\"\\u1D6E\" => \"f\"\n\n# ᶂ  [LATIN SMALL LETTER F WITH PALATAL HOOK]\n\"\\u1D82\" => \"f\"\n\n# ḟ  [LATIN SMALL LETTER F WITH DOT ABOVE]\n\"\\u1E1F\" => \"f\"\n\n# ẛ  [LATIN SMALL LETTER LONG S WITH DOT ABOVE]\n\"\\u1E9B\" => \"f\"\n\n# ⓕ  [CIRCLED LATIN SMALL LETTER F]\n\"\\u24D5\" => \"f\"\n\n# ꝼ  [LATIN SMALL LETTER INSULAR F]\n\"\\uA77C\" => \"f\"\n\n# ｆ  [FULLWIDTH LATIN SMALL LETTER F]\n\"\\uFF46\" => \"f\"\n\n# ⒡  [PARENTHESIZED LATIN SMALL LETTER F]\n\"\\u24A1\" => \"(f)\"\n\n# ﬀ  [LATIN SMALL LIGATURE FF]\n\"\\uFB00\" => \"ff\"\n\n# ﬃ  [LATIN SMALL LIGATURE FFI]\n\"\\uFB03\" => \"ffi\"\n\n# ﬄ  [LATIN SMALL LIGATURE FFL]\n\"\\uFB04\" => \"ffl\"\n\n# ﬁ  [LATIN SMALL LIGATURE FI]\n\"\\uFB01\" => \"fi\"\n\n# ﬂ  [LATIN SMALL LIGATURE FL]\n\"\\uFB02\" => \"fl\"\n\n# Ĝ  [LATIN CAPITAL LETTER G WITH CIRCUMFLEX]\n\"\\u011C\" => \"G\"\n\n# Ğ  [LATIN CAPITAL LETTER G WITH BREVE]\n\"\\u011E\" => \"G\"\n\n# Ġ  [LATIN CAPITAL LETTER G WITH DOT ABOVE]\n\"\\u0120\" => \"G\"\n\n# Ģ  [LATIN CAPITAL LETTER G WITH CEDILLA]\n\"\\u0122\" => \"G\"\n\n# Ɠ  [LATIN CAPITAL LETTER G WITH HOOK]\n\"\\u0193\" => \"G\"\n\n# Ǥ  [LATIN CAPITAL LETTER G WITH STROKE]\n\"\\u01E4\" => \"G\"\n\n# ǥ  [LATIN SMALL LETTER G WITH STROKE]\n\"\\u01E5\" => \"G\"\n\n# Ǧ  [LATIN CAPITAL LETTER G WITH CARON]\n\"\\u01E6\" => \"G\"\n\n# ǧ  [LATIN SMALL LETTER G WITH CARON]\n\"\\u01E7\" => \"G\"\n\n# Ǵ  [LATIN CAPITAL LETTER G WITH ACUTE]\n\"\\u01F4\" => \"G\"\n\n# ɢ  [LATIN LETTER SMALL CAPITAL G]\n\"\\u0262\" => \"G\"\n\n# ʛ  [LATIN LETTER SMALL CAPITAL G WITH HOOK]\n\"\\u029B\" => \"G\"\n\n# Ḡ  [LATIN CAPITAL LETTER G WITH MACRON]\n\"\\u1E20\" => \"G\"\n\n# Ⓖ  [CIRCLED LATIN CAPITAL LETTER G]\n\"\\u24BC\" => \"G\"\n\n# Ᵹ  [LATIN CAPITAL LETTER INSULAR G]\n\"\\uA77D\" => \"G\"\n\n# Ꝿ  [LATIN CAPITAL LETTER TURNED INSULAR G]\n\"\\uA77E\" => \"G\"\n\n# Ｇ  [FULLWIDTH LATIN CAPITAL LETTER G]\n\"\\uFF27\" => \"G\"\n\n# ĝ  [LATIN SMALL LETTER G WITH CIRCUMFLEX]\n\"\\u011D\" => \"g\"\n\n# ğ  [LATIN SMALL LETTER G WITH BREVE]\n\"\\u011F\" => \"g\"\n\n# ġ  [LATIN SMALL LETTER G WITH DOT ABOVE]\n\"\\u0121\" => \"g\"\n\n# ģ  [LATIN SMALL LETTER G WITH CEDILLA]\n\"\\u0123\" => \"g\"\n\n# ǵ  [LATIN SMALL LETTER G WITH ACUTE]\n\"\\u01F5\" => \"g\"\n\n# ɠ  [LATIN SMALL LETTER G WITH HOOK]\n\"\\u0260\" => \"g\"\n\n# ɡ  [LATIN SMALL LETTER SCRIPT G]\n\"\\u0261\" => \"g\"\n\n# ᵷ  [LATIN SMALL LETTER TURNED G]\n\"\\u1D77\" => \"g\"\n\n# ᵹ  [LATIN SMALL LETTER INSULAR G]\n\"\\u1D79\" => \"g\"\n\n# ᶃ  [LATIN SMALL LETTER G WITH PALATAL HOOK]\n\"\\u1D83\" => \"g\"\n\n# ḡ  [LATIN SMALL LETTER G WITH MACRON]\n\"\\u1E21\" => \"g\"\n\n# ⓖ  [CIRCLED LATIN SMALL LETTER G]\n\"\\u24D6\" => \"g\"\n\n# ꝿ  [LATIN SMALL LETTER TURNED INSULAR G]\n\"\\uA77F\" => \"g\"\n\n# ｇ  [FULLWIDTH LATIN SMALL LETTER G]\n\"\\uFF47\" => \"g\"\n\n# ⒢  [PARENTHESIZED LATIN SMALL LETTER G]\n\"\\u24A2\" => \"(g)\"\n\n# Ĥ  [LATIN CAPITAL LETTER H WITH CIRCUMFLEX]\n\"\\u0124\" => \"H\"\n\n# Ħ  [LATIN CAPITAL LETTER H WITH STROKE]\n\"\\u0126\" => \"H\"\n\n# Ȟ  [LATIN CAPITAL LETTER H WITH CARON]\n\"\\u021E\" => \"H\"\n\n# ʜ  [LATIN LETTER SMALL CAPITAL H]\n\"\\u029C\" => \"H\"\n\n# Ḣ  [LATIN CAPITAL LETTER H WITH DOT ABOVE]\n\"\\u1E22\" => \"H\"\n\n# Ḥ  [LATIN CAPITAL LETTER H WITH DOT BELOW]\n\"\\u1E24\" => \"H\"\n\n# Ḧ  [LATIN CAPITAL LETTER H WITH DIAERESIS]\n\"\\u1E26\" => \"H\"\n\n# Ḩ  [LATIN CAPITAL LETTER H WITH CEDILLA]\n\"\\u1E28\" => \"H\"\n\n# Ḫ  [LATIN CAPITAL LETTER H WITH BREVE BELOW]\n\"\\u1E2A\" => \"H\"\n\n# Ⓗ  [CIRCLED LATIN CAPITAL LETTER H]\n\"\\u24BD\" => \"H\"\n\n# Ⱨ  [LATIN CAPITAL LETTER H WITH DESCENDER]\n\"\\u2C67\" => \"H\"\n\n# Ⱶ  [LATIN CAPITAL LETTER HALF H]\n\"\\u2C75\" => \"H\"\n\n# Ｈ  [FULLWIDTH LATIN CAPITAL LETTER H]\n\"\\uFF28\" => \"H\"\n\n# ĥ  [LATIN SMALL LETTER H WITH CIRCUMFLEX]\n\"\\u0125\" => \"h\"\n\n# ħ  [LATIN SMALL LETTER H WITH STROKE]\n\"\\u0127\" => \"h\"\n\n# ȟ  [LATIN SMALL LETTER H WITH CARON]\n\"\\u021F\" => \"h\"\n\n# ɥ  [LATIN SMALL LETTER TURNED H]\n\"\\u0265\" => \"h\"\n\n# ɦ  [LATIN SMALL LETTER H WITH HOOK]\n\"\\u0266\" => \"h\"\n\n# ʮ  [LATIN SMALL LETTER TURNED H WITH FISHHOOK]\n\"\\u02AE\" => \"h\"\n\n# ʯ  [LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL]\n\"\\u02AF\" => \"h\"\n\n# ḣ  [LATIN SMALL LETTER H WITH DOT ABOVE]\n\"\\u1E23\" => \"h\"\n\n# ḥ  [LATIN SMALL LETTER H WITH DOT BELOW]\n\"\\u1E25\" => \"h\"\n\n# ḧ  [LATIN SMALL LETTER H WITH DIAERESIS]\n\"\\u1E27\" => \"h\"\n\n# ḩ  [LATIN SMALL LETTER H WITH CEDILLA]\n\"\\u1E29\" => \"h\"\n\n# ḫ  [LATIN SMALL LETTER H WITH BREVE BELOW]\n\"\\u1E2B\" => \"h\"\n\n# ẖ  [LATIN SMALL LETTER H WITH LINE BELOW]\n\"\\u1E96\" => \"h\"\n\n# ⓗ  [CIRCLED LATIN SMALL LETTER H]\n\"\\u24D7\" => \"h\"\n\n# ⱨ  [LATIN SMALL LETTER H WITH DESCENDER]\n\"\\u2C68\" => \"h\"\n\n# ⱶ  [LATIN SMALL LETTER HALF H]\n\"\\u2C76\" => \"h\"\n\n# ｈ  [FULLWIDTH LATIN SMALL LETTER H]\n\"\\uFF48\" => \"h\"\n\n# Ƕ  http://en.wikipedia.org/wiki/Hwair  [LATIN CAPITAL LETTER HWAIR]\n\"\\u01F6\" => \"HV\"\n\n# ⒣  [PARENTHESIZED LATIN SMALL LETTER H]\n\"\\u24A3\" => \"(h)\"\n\n# ƕ  [LATIN SMALL LETTER HV]\n\"\\u0195\" => \"hv\"\n\n# Ì  [LATIN CAPITAL LETTER I WITH GRAVE]\n\"\\u00CC\" => \"I\"\n\n# Í  [LATIN CAPITAL LETTER I WITH ACUTE]\n\"\\u00CD\" => \"I\"\n\n# Î  [LATIN CAPITAL LETTER I WITH CIRCUMFLEX]\n\"\\u00CE\" => \"I\"\n\n# Ï  [LATIN CAPITAL LETTER I WITH DIAERESIS]\n\"\\u00CF\" => \"I\"\n\n# Ĩ  [LATIN CAPITAL LETTER I WITH TILDE]\n\"\\u0128\" => \"I\"\n\n# Ī  [LATIN CAPITAL LETTER I WITH MACRON]\n\"\\u012A\" => \"I\"\n\n# Ĭ  [LATIN CAPITAL LETTER I WITH BREVE]\n\"\\u012C\" => \"I\"\n\n# Į  [LATIN CAPITAL LETTER I WITH OGONEK]\n\"\\u012E\" => \"I\"\n\n# İ  [LATIN CAPITAL LETTER I WITH DOT ABOVE]\n\"\\u0130\" => \"I\"\n\n# Ɩ  [LATIN CAPITAL LETTER IOTA]\n\"\\u0196\" => \"I\"\n\n# Ɨ  [LATIN CAPITAL LETTER I WITH STROKE]\n\"\\u0197\" => \"I\"\n\n# Ǐ  [LATIN CAPITAL LETTER I WITH CARON]\n\"\\u01CF\" => \"I\"\n\n# Ȉ  [LATIN CAPITAL LETTER I WITH DOUBLE GRAVE]\n\"\\u0208\" => \"I\"\n\n# Ȋ  [LATIN CAPITAL LETTER I WITH INVERTED BREVE]\n\"\\u020A\" => \"I\"\n\n# ɪ  [LATIN LETTER SMALL CAPITAL I]\n\"\\u026A\" => \"I\"\n\n# ᵻ  [LATIN SMALL CAPITAL LETTER I WITH STROKE]\n\"\\u1D7B\" => \"I\"\n\n# Ḭ  [LATIN CAPITAL LETTER I WITH TILDE BELOW]\n\"\\u1E2C\" => \"I\"\n\n# Ḯ  [LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE]\n\"\\u1E2E\" => \"I\"\n\n# Ỉ  [LATIN CAPITAL LETTER I WITH HOOK ABOVE]\n\"\\u1EC8\" => \"I\"\n\n# Ị  [LATIN CAPITAL LETTER I WITH DOT BELOW]\n\"\\u1ECA\" => \"I\"\n\n# Ⓘ  [CIRCLED LATIN CAPITAL LETTER I]\n\"\\u24BE\" => \"I\"\n\n# ꟾ  [LATIN EPIGRAPHIC LETTER I LONGA]\n\"\\uA7FE\" => \"I\"\n\n# Ｉ  [FULLWIDTH LATIN CAPITAL LETTER I]\n\"\\uFF29\" => \"I\"\n\n# ì  [LATIN SMALL LETTER I WITH GRAVE]\n\"\\u00EC\" => \"i\"\n\n# í  [LATIN SMALL LETTER I WITH ACUTE]\n\"\\u00ED\" => \"i\"\n\n# î  [LATIN SMALL LETTER I WITH CIRCUMFLEX]\n\"\\u00EE\" => \"i\"\n\n# ï  [LATIN SMALL LETTER I WITH DIAERESIS]\n\"\\u00EF\" => \"i\"\n\n# ĩ  [LATIN SMALL LETTER I WITH TILDE]\n\"\\u0129\" => \"i\"\n\n# ī  [LATIN SMALL LETTER I WITH MACRON]\n\"\\u012B\" => \"i\"\n\n# ĭ  [LATIN SMALL LETTER I WITH BREVE]\n\"\\u012D\" => \"i\"\n\n# į  [LATIN SMALL LETTER I WITH OGONEK]\n\"\\u012F\" => \"i\"\n\n# ı  [LATIN SMALL LETTER DOTLESS I]\n\"\\u0131\" => \"i\"\n\n# ǐ  [LATIN SMALL LETTER I WITH CARON]\n\"\\u01D0\" => \"i\"\n\n# ȉ  [LATIN SMALL LETTER I WITH DOUBLE GRAVE]\n\"\\u0209\" => \"i\"\n\n# ȋ  [LATIN SMALL LETTER I WITH INVERTED BREVE]\n\"\\u020B\" => \"i\"\n\n# ɨ  [LATIN SMALL LETTER I WITH STROKE]\n\"\\u0268\" => \"i\"\n\n# ᴉ  [LATIN SMALL LETTER TURNED I]\n\"\\u1D09\" => \"i\"\n\n# ᵢ  [LATIN SUBSCRIPT SMALL LETTER I]\n\"\\u1D62\" => \"i\"\n\n# ᵼ  [LATIN SMALL LETTER IOTA WITH STROKE]\n\"\\u1D7C\" => \"i\"\n\n# ᶖ  [LATIN SMALL LETTER I WITH RETROFLEX HOOK]\n\"\\u1D96\" => \"i\"\n\n# ḭ  [LATIN SMALL LETTER I WITH TILDE BELOW]\n\"\\u1E2D\" => \"i\"\n\n# ḯ  [LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE]\n\"\\u1E2F\" => \"i\"\n\n# ỉ  [LATIN SMALL LETTER I WITH HOOK ABOVE]\n\"\\u1EC9\" => \"i\"\n\n# ị  [LATIN SMALL LETTER I WITH DOT BELOW]\n\"\\u1ECB\" => \"i\"\n\n# ⁱ  [SUPERSCRIPT LATIN SMALL LETTER I]\n\"\\u2071\" => \"i\"\n\n# ⓘ  [CIRCLED LATIN SMALL LETTER I]\n\"\\u24D8\" => \"i\"\n\n# ｉ  [FULLWIDTH LATIN SMALL LETTER I]\n\"\\uFF49\" => \"i\"\n\n# Ĳ  [LATIN CAPITAL LIGATURE IJ]\n\"\\u0132\" => \"IJ\"\n\n# ⒤  [PARENTHESIZED LATIN SMALL LETTER I]\n\"\\u24A4\" => \"(i)\"\n\n# ĳ  [LATIN SMALL LIGATURE IJ]\n\"\\u0133\" => \"ij\"\n\n# Ĵ  [LATIN CAPITAL LETTER J WITH CIRCUMFLEX]\n\"\\u0134\" => \"J\"\n\n# Ɉ  [LATIN CAPITAL LETTER J WITH STROKE]\n\"\\u0248\" => \"J\"\n\n# ᴊ  [LATIN LETTER SMALL CAPITAL J]\n\"\\u1D0A\" => \"J\"\n\n# Ⓙ  [CIRCLED LATIN CAPITAL LETTER J]\n\"\\u24BF\" => \"J\"\n\n# Ｊ  [FULLWIDTH LATIN CAPITAL LETTER J]\n\"\\uFF2A\" => \"J\"\n\n# ĵ  [LATIN SMALL LETTER J WITH CIRCUMFLEX]\n\"\\u0135\" => \"j\"\n\n# ǰ  [LATIN SMALL LETTER J WITH CARON]\n\"\\u01F0\" => \"j\"\n\n# ȷ  [LATIN SMALL LETTER DOTLESS J]\n\"\\u0237\" => \"j\"\n\n# ɉ  [LATIN SMALL LETTER J WITH STROKE]\n\"\\u0249\" => \"j\"\n\n# ɟ  [LATIN SMALL LETTER DOTLESS J WITH STROKE]\n\"\\u025F\" => \"j\"\n\n# ʄ  [LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK]\n\"\\u0284\" => \"j\"\n\n# ʝ  [LATIN SMALL LETTER J WITH CROSSED-TAIL]\n\"\\u029D\" => \"j\"\n\n# ⓙ  [CIRCLED LATIN SMALL LETTER J]\n\"\\u24D9\" => \"j\"\n\n# ⱼ  [LATIN SUBSCRIPT SMALL LETTER J]\n\"\\u2C7C\" => \"j\"\n\n# ｊ  [FULLWIDTH LATIN SMALL LETTER J]\n\"\\uFF4A\" => \"j\"\n\n# ⒥  [PARENTHESIZED LATIN SMALL LETTER J]\n\"\\u24A5\" => \"(j)\"\n\n# Ķ  [LATIN CAPITAL LETTER K WITH CEDILLA]\n\"\\u0136\" => \"K\"\n\n# Ƙ  [LATIN CAPITAL LETTER K WITH HOOK]\n\"\\u0198\" => \"K\"\n\n# Ǩ  [LATIN CAPITAL LETTER K WITH CARON]\n\"\\u01E8\" => \"K\"\n\n# ᴋ  [LATIN LETTER SMALL CAPITAL K]\n\"\\u1D0B\" => \"K\"\n\n# Ḱ  [LATIN CAPITAL LETTER K WITH ACUTE]\n\"\\u1E30\" => \"K\"\n\n# Ḳ  [LATIN CAPITAL LETTER K WITH DOT BELOW]\n\"\\u1E32\" => \"K\"\n\n# Ḵ  [LATIN CAPITAL LETTER K WITH LINE BELOW]\n\"\\u1E34\" => \"K\"\n\n# Ⓚ  [CIRCLED LATIN CAPITAL LETTER K]\n\"\\u24C0\" => \"K\"\n\n# Ⱪ  [LATIN CAPITAL LETTER K WITH DESCENDER]\n\"\\u2C69\" => \"K\"\n\n# Ꝁ  [LATIN CAPITAL LETTER K WITH STROKE]\n\"\\uA740\" => \"K\"\n\n# Ꝃ  [LATIN CAPITAL LETTER K WITH DIAGONAL STROKE]\n\"\\uA742\" => \"K\"\n\n# Ꝅ  [LATIN CAPITAL LETTER K WITH STROKE AND DIAGONAL STROKE]\n\"\\uA744\" => \"K\"\n\n# Ｋ  [FULLWIDTH LATIN CAPITAL LETTER K]\n\"\\uFF2B\" => \"K\"\n\n# ķ  [LATIN SMALL LETTER K WITH CEDILLA]\n\"\\u0137\" => \"k\"\n\n# ƙ  [LATIN SMALL LETTER K WITH HOOK]\n\"\\u0199\" => \"k\"\n\n# ǩ  [LATIN SMALL LETTER K WITH CARON]\n\"\\u01E9\" => \"k\"\n\n# ʞ  [LATIN SMALL LETTER TURNED K]\n\"\\u029E\" => \"k\"\n\n# ᶄ  [LATIN SMALL LETTER K WITH PALATAL HOOK]\n\"\\u1D84\" => \"k\"\n\n# ḱ  [LATIN SMALL LETTER K WITH ACUTE]\n\"\\u1E31\" => \"k\"\n\n# ḳ  [LATIN SMALL LETTER K WITH DOT BELOW]\n\"\\u1E33\" => \"k\"\n\n# ḵ  [LATIN SMALL LETTER K WITH LINE BELOW]\n\"\\u1E35\" => \"k\"\n\n# ⓚ  [CIRCLED LATIN SMALL LETTER K]\n\"\\u24DA\" => \"k\"\n\n# ⱪ  [LATIN SMALL LETTER K WITH DESCENDER]\n\"\\u2C6A\" => \"k\"\n\n# ꝁ  [LATIN SMALL LETTER K WITH STROKE]\n\"\\uA741\" => \"k\"\n\n# ꝃ  [LATIN SMALL LETTER K WITH DIAGONAL STROKE]\n\"\\uA743\" => \"k\"\n\n# ꝅ  [LATIN SMALL LETTER K WITH STROKE AND DIAGONAL STROKE]\n\"\\uA745\" => \"k\"\n\n# ｋ  [FULLWIDTH LATIN SMALL LETTER K]\n\"\\uFF4B\" => \"k\"\n\n# ⒦  [PARENTHESIZED LATIN SMALL LETTER K]\n\"\\u24A6\" => \"(k)\"\n\n# Ĺ  [LATIN CAPITAL LETTER L WITH ACUTE]\n\"\\u0139\" => \"L\"\n\n# Ļ  [LATIN CAPITAL LETTER L WITH CEDILLA]\n\"\\u013B\" => \"L\"\n\n# Ľ  [LATIN CAPITAL LETTER L WITH CARON]\n\"\\u013D\" => \"L\"\n\n# Ŀ  [LATIN CAPITAL LETTER L WITH MIDDLE DOT]\n\"\\u013F\" => \"L\"\n\n# Ł  [LATIN CAPITAL LETTER L WITH STROKE]\n\"\\u0141\" => \"L\"\n\n# Ƚ  [LATIN CAPITAL LETTER L WITH BAR]\n\"\\u023D\" => \"L\"\n\n# ʟ  [LATIN LETTER SMALL CAPITAL L]\n\"\\u029F\" => \"L\"\n\n# ᴌ  [LATIN LETTER SMALL CAPITAL L WITH STROKE]\n\"\\u1D0C\" => \"L\"\n\n# Ḷ  [LATIN CAPITAL LETTER L WITH DOT BELOW]\n\"\\u1E36\" => \"L\"\n\n# Ḹ  [LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON]\n\"\\u1E38\" => \"L\"\n\n# Ḻ  [LATIN CAPITAL LETTER L WITH LINE BELOW]\n\"\\u1E3A\" => \"L\"\n\n# Ḽ  [LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW]\n\"\\u1E3C\" => \"L\"\n\n# Ⓛ  [CIRCLED LATIN CAPITAL LETTER L]\n\"\\u24C1\" => \"L\"\n\n# Ⱡ  [LATIN CAPITAL LETTER L WITH DOUBLE BAR]\n\"\\u2C60\" => \"L\"\n\n# Ɫ  [LATIN CAPITAL LETTER L WITH MIDDLE TILDE]\n\"\\u2C62\" => \"L\"\n\n# Ꝇ  [LATIN CAPITAL LETTER BROKEN L]\n\"\\uA746\" => \"L\"\n\n# Ꝉ  [LATIN CAPITAL LETTER L WITH HIGH STROKE]\n\"\\uA748\" => \"L\"\n\n# Ꞁ  [LATIN CAPITAL LETTER TURNED L]\n\"\\uA780\" => \"L\"\n\n# Ｌ  [FULLWIDTH LATIN CAPITAL LETTER L]\n\"\\uFF2C\" => \"L\"\n\n# ĺ  [LATIN SMALL LETTER L WITH ACUTE]\n\"\\u013A\" => \"l\"\n\n# ļ  [LATIN SMALL LETTER L WITH CEDILLA]\n\"\\u013C\" => \"l\"\n\n# ľ  [LATIN SMALL LETTER L WITH CARON]\n\"\\u013E\" => \"l\"\n\n# ŀ  [LATIN SMALL LETTER L WITH MIDDLE DOT]\n\"\\u0140\" => \"l\"\n\n# ł  [LATIN SMALL LETTER L WITH STROKE]\n\"\\u0142\" => \"l\"\n\n# ƚ  [LATIN SMALL LETTER L WITH BAR]\n\"\\u019A\" => \"l\"\n\n# ȴ  [LATIN SMALL LETTER L WITH CURL]\n\"\\u0234\" => \"l\"\n\n# ɫ  [LATIN SMALL LETTER L WITH MIDDLE TILDE]\n\"\\u026B\" => \"l\"\n\n# ɬ  [LATIN SMALL LETTER L WITH BELT]\n\"\\u026C\" => \"l\"\n\n# ɭ  [LATIN SMALL LETTER L WITH RETROFLEX HOOK]\n\"\\u026D\" => \"l\"\n\n# ᶅ  [LATIN SMALL LETTER L WITH PALATAL HOOK]\n\"\\u1D85\" => \"l\"\n\n# ḷ  [LATIN SMALL LETTER L WITH DOT BELOW]\n\"\\u1E37\" => \"l\"\n\n# ḹ  [LATIN SMALL LETTER L WITH DOT BELOW AND MACRON]\n\"\\u1E39\" => \"l\"\n\n# ḻ  [LATIN SMALL LETTER L WITH LINE BELOW]\n\"\\u1E3B\" => \"l\"\n\n# ḽ  [LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW]\n\"\\u1E3D\" => \"l\"\n\n# ⓛ  [CIRCLED LATIN SMALL LETTER L]\n\"\\u24DB\" => \"l\"\n\n# ⱡ  [LATIN SMALL LETTER L WITH DOUBLE BAR]\n\"\\u2C61\" => \"l\"\n\n# ꝇ  [LATIN SMALL LETTER BROKEN L]\n\"\\uA747\" => \"l\"\n\n# ꝉ  [LATIN SMALL LETTER L WITH HIGH STROKE]\n\"\\uA749\" => \"l\"\n\n# ꞁ  [LATIN SMALL LETTER TURNED L]\n\"\\uA781\" => \"l\"\n\n# ｌ  [FULLWIDTH LATIN SMALL LETTER L]\n\"\\uFF4C\" => \"l\"\n\n# Ǉ  [LATIN CAPITAL LETTER LJ]\n\"\\u01C7\" => \"LJ\"\n\n# Ỻ  [LATIN CAPITAL LETTER MIDDLE-WELSH LL]\n\"\\u1EFA\" => \"LL\"\n\n# ǈ  [LATIN CAPITAL LETTER L WITH SMALL LETTER J]\n\"\\u01C8\" => \"Lj\"\n\n# ⒧  [PARENTHESIZED LATIN SMALL LETTER L]\n\"\\u24A7\" => \"(l)\"\n\n# ǉ  [LATIN SMALL LETTER LJ]\n\"\\u01C9\" => \"lj\"\n\n# ỻ  [LATIN SMALL LETTER MIDDLE-WELSH LL]\n\"\\u1EFB\" => \"ll\"\n\n# ʪ  [LATIN SMALL LETTER LS DIGRAPH]\n\"\\u02AA\" => \"ls\"\n\n# ʫ  [LATIN SMALL LETTER LZ DIGRAPH]\n\"\\u02AB\" => \"lz\"\n\n# Ɯ  [LATIN CAPITAL LETTER TURNED M]\n\"\\u019C\" => \"M\"\n\n# ᴍ  [LATIN LETTER SMALL CAPITAL M]\n\"\\u1D0D\" => \"M\"\n\n# Ḿ  [LATIN CAPITAL LETTER M WITH ACUTE]\n\"\\u1E3E\" => \"M\"\n\n# Ṁ  [LATIN CAPITAL LETTER M WITH DOT ABOVE]\n\"\\u1E40\" => \"M\"\n\n# Ṃ  [LATIN CAPITAL LETTER M WITH DOT BELOW]\n\"\\u1E42\" => \"M\"\n\n# Ⓜ  [CIRCLED LATIN CAPITAL LETTER M]\n\"\\u24C2\" => \"M\"\n\n# Ɱ  [LATIN CAPITAL LETTER M WITH HOOK]\n\"\\u2C6E\" => \"M\"\n\n# ꟽ  [LATIN EPIGRAPHIC LETTER INVERTED M]\n\"\\uA7FD\" => \"M\"\n\n# ꟿ  [LATIN EPIGRAPHIC LETTER ARCHAIC M]\n\"\\uA7FF\" => \"M\"\n\n# Ｍ  [FULLWIDTH LATIN CAPITAL LETTER M]\n\"\\uFF2D\" => \"M\"\n\n# ɯ  [LATIN SMALL LETTER TURNED M]\n\"\\u026F\" => \"m\"\n\n# ɰ  [LATIN SMALL LETTER TURNED M WITH LONG LEG]\n\"\\u0270\" => \"m\"\n\n# ɱ  [LATIN SMALL LETTER M WITH HOOK]\n\"\\u0271\" => \"m\"\n\n# ᵯ  [LATIN SMALL LETTER M WITH MIDDLE TILDE]\n\"\\u1D6F\" => \"m\"\n\n# ᶆ  [LATIN SMALL LETTER M WITH PALATAL HOOK]\n\"\\u1D86\" => \"m\"\n\n# ḿ  [LATIN SMALL LETTER M WITH ACUTE]\n\"\\u1E3F\" => \"m\"\n\n# ṁ  [LATIN SMALL LETTER M WITH DOT ABOVE]\n\"\\u1E41\" => \"m\"\n\n# ṃ  [LATIN SMALL LETTER M WITH DOT BELOW]\n\"\\u1E43\" => \"m\"\n\n# ⓜ  [CIRCLED LATIN SMALL LETTER M]\n\"\\u24DC\" => \"m\"\n\n# ｍ  [FULLWIDTH LATIN SMALL LETTER M]\n\"\\uFF4D\" => \"m\"\n\n# ⒨  [PARENTHESIZED LATIN SMALL LETTER M]\n\"\\u24A8\" => \"(m)\"\n\n# Ñ  [LATIN CAPITAL LETTER N WITH TILDE]\n\"\\u00D1\" => \"N\"\n\n# Ń  [LATIN CAPITAL LETTER N WITH ACUTE]\n\"\\u0143\" => \"N\"\n\n# Ņ  [LATIN CAPITAL LETTER N WITH CEDILLA]\n\"\\u0145\" => \"N\"\n\n# Ň  [LATIN CAPITAL LETTER N WITH CARON]\n\"\\u0147\" => \"N\"\n\n# Ŋ  http://en.wikipedia.org/wiki/Eng_(letter)  [LATIN CAPITAL LETTER ENG]\n\"\\u014A\" => \"N\"\n\n# Ɲ  [LATIN CAPITAL LETTER N WITH LEFT HOOK]\n\"\\u019D\" => \"N\"\n\n# Ǹ  [LATIN CAPITAL LETTER N WITH GRAVE]\n\"\\u01F8\" => \"N\"\n\n# Ƞ  [LATIN CAPITAL LETTER N WITH LONG RIGHT LEG]\n\"\\u0220\" => \"N\"\n\n# ɴ  [LATIN LETTER SMALL CAPITAL N]\n\"\\u0274\" => \"N\"\n\n# ᴎ  [LATIN LETTER SMALL CAPITAL REVERSED N]\n\"\\u1D0E\" => \"N\"\n\n# Ṅ  [LATIN CAPITAL LETTER N WITH DOT ABOVE]\n\"\\u1E44\" => \"N\"\n\n# Ṇ  [LATIN CAPITAL LETTER N WITH DOT BELOW]\n\"\\u1E46\" => \"N\"\n\n# Ṉ  [LATIN CAPITAL LETTER N WITH LINE BELOW]\n\"\\u1E48\" => \"N\"\n\n# Ṋ  [LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW]\n\"\\u1E4A\" => \"N\"\n\n# Ⓝ  [CIRCLED LATIN CAPITAL LETTER N]\n\"\\u24C3\" => \"N\"\n\n# Ｎ  [FULLWIDTH LATIN CAPITAL LETTER N]\n\"\\uFF2E\" => \"N\"\n\n# ñ  [LATIN SMALL LETTER N WITH TILDE]\n\"\\u00F1\" => \"n\"\n\n# ń  [LATIN SMALL LETTER N WITH ACUTE]\n\"\\u0144\" => \"n\"\n\n# ņ  [LATIN SMALL LETTER N WITH CEDILLA]\n\"\\u0146\" => \"n\"\n\n# ň  [LATIN SMALL LETTER N WITH CARON]\n\"\\u0148\" => \"n\"\n\n# ŉ  [LATIN SMALL LETTER N PRECEDED BY APOSTROPHE]\n\"\\u0149\" => \"n\"\n\n# ŋ  http://en.wikipedia.org/wiki/Eng_(letter)  [LATIN SMALL LETTER ENG]\n\"\\u014B\" => \"n\"\n\n# ƞ  [LATIN SMALL LETTER N WITH LONG RIGHT LEG]\n\"\\u019E\" => \"n\"\n\n# ǹ  [LATIN SMALL LETTER N WITH GRAVE]\n\"\\u01F9\" => \"n\"\n\n# ȵ  [LATIN SMALL LETTER N WITH CURL]\n\"\\u0235\" => \"n\"\n\n# ɲ  [LATIN SMALL LETTER N WITH LEFT HOOK]\n\"\\u0272\" => \"n\"\n\n# ɳ  [LATIN SMALL LETTER N WITH RETROFLEX HOOK]\n\"\\u0273\" => \"n\"\n\n# ᵰ  [LATIN SMALL LETTER N WITH MIDDLE TILDE]\n\"\\u1D70\" => \"n\"\n\n# ᶇ  [LATIN SMALL LETTER N WITH PALATAL HOOK]\n\"\\u1D87\" => \"n\"\n\n# ṅ  [LATIN SMALL LETTER N WITH DOT ABOVE]\n\"\\u1E45\" => \"n\"\n\n# ṇ  [LATIN SMALL LETTER N WITH DOT BELOW]\n\"\\u1E47\" => \"n\"\n\n# ṉ  [LATIN SMALL LETTER N WITH LINE BELOW]\n\"\\u1E49\" => \"n\"\n\n# ṋ  [LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW]\n\"\\u1E4B\" => \"n\"\n\n# ⁿ  [SUPERSCRIPT LATIN SMALL LETTER N]\n\"\\u207F\" => \"n\"\n\n# ⓝ  [CIRCLED LATIN SMALL LETTER N]\n\"\\u24DD\" => \"n\"\n\n# ｎ  [FULLWIDTH LATIN SMALL LETTER N]\n\"\\uFF4E\" => \"n\"\n\n# Ǌ  [LATIN CAPITAL LETTER NJ]\n\"\\u01CA\" => \"NJ\"\n\n# ǋ  [LATIN CAPITAL LETTER N WITH SMALL LETTER J]\n\"\\u01CB\" => \"Nj\"\n\n# ⒩  [PARENTHESIZED LATIN SMALL LETTER N]\n\"\\u24A9\" => \"(n)\"\n\n# ǌ  [LATIN SMALL LETTER NJ]\n\"\\u01CC\" => \"nj\"\n\n# Ò  [LATIN CAPITAL LETTER O WITH GRAVE]\n\"\\u00D2\" => \"O\"\n\n# Ó  [LATIN CAPITAL LETTER O WITH ACUTE]\n\"\\u00D3\" => \"O\"\n\n# Ô  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX]\n\"\\u00D4\" => \"O\"\n\n# Õ  [LATIN CAPITAL LETTER O WITH TILDE]\n\"\\u00D5\" => \"O\"\n\n# Ö  [LATIN CAPITAL LETTER O WITH DIAERESIS]\n\"\\u00D6\" => \"O\"\n\n# Ø  [LATIN CAPITAL LETTER O WITH STROKE]\n\"\\u00D8\" => \"O\"\n\n# Ō  [LATIN CAPITAL LETTER O WITH MACRON]\n\"\\u014C\" => \"O\"\n\n# Ŏ  [LATIN CAPITAL LETTER O WITH BREVE]\n\"\\u014E\" => \"O\"\n\n# Ő  [LATIN CAPITAL LETTER O WITH DOUBLE ACUTE]\n\"\\u0150\" => \"O\"\n\n# Ɔ  [LATIN CAPITAL LETTER OPEN O]\n\"\\u0186\" => \"O\"\n\n# Ɵ  [LATIN CAPITAL LETTER O WITH MIDDLE TILDE]\n\"\\u019F\" => \"O\"\n\n# Ơ  [LATIN CAPITAL LETTER O WITH HORN]\n\"\\u01A0\" => \"O\"\n\n# Ǒ  [LATIN CAPITAL LETTER O WITH CARON]\n\"\\u01D1\" => \"O\"\n\n# Ǫ  [LATIN CAPITAL LETTER O WITH OGONEK]\n\"\\u01EA\" => \"O\"\n\n# Ǭ  [LATIN CAPITAL LETTER O WITH OGONEK AND MACRON]\n\"\\u01EC\" => \"O\"\n\n# Ǿ  [LATIN CAPITAL LETTER O WITH STROKE AND ACUTE]\n\"\\u01FE\" => \"O\"\n\n# Ȍ  [LATIN CAPITAL LETTER O WITH DOUBLE GRAVE]\n\"\\u020C\" => \"O\"\n\n# Ȏ  [LATIN CAPITAL LETTER O WITH INVERTED BREVE]\n\"\\u020E\" => \"O\"\n\n# Ȫ  [LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON]\n\"\\u022A\" => \"O\"\n\n# Ȭ  [LATIN CAPITAL LETTER O WITH TILDE AND MACRON]\n\"\\u022C\" => \"O\"\n\n# Ȯ  [LATIN CAPITAL LETTER O WITH DOT ABOVE]\n\"\\u022E\" => \"O\"\n\n# Ȱ  [LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON]\n\"\\u0230\" => \"O\"\n\n# ᴏ  [LATIN LETTER SMALL CAPITAL O]\n\"\\u1D0F\" => \"O\"\n\n# ᴐ  [LATIN LETTER SMALL CAPITAL OPEN O]\n\"\\u1D10\" => \"O\"\n\n# Ṍ  [LATIN CAPITAL LETTER O WITH TILDE AND ACUTE]\n\"\\u1E4C\" => \"O\"\n\n# Ṏ  [LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS]\n\"\\u1E4E\" => \"O\"\n\n# Ṑ  [LATIN CAPITAL LETTER O WITH MACRON AND GRAVE]\n\"\\u1E50\" => \"O\"\n\n# Ṓ  [LATIN CAPITAL LETTER O WITH MACRON AND ACUTE]\n\"\\u1E52\" => \"O\"\n\n# Ọ  [LATIN CAPITAL LETTER O WITH DOT BELOW]\n\"\\u1ECC\" => \"O\"\n\n# Ỏ  [LATIN CAPITAL LETTER O WITH HOOK ABOVE]\n\"\\u1ECE\" => \"O\"\n\n# Ố  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE]\n\"\\u1ED0\" => \"O\"\n\n# Ồ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE]\n\"\\u1ED2\" => \"O\"\n\n# Ổ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1ED4\" => \"O\"\n\n# Ỗ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE]\n\"\\u1ED6\" => \"O\"\n\n# Ộ  [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1ED8\" => \"O\"\n\n# Ớ  [LATIN CAPITAL LETTER O WITH HORN AND ACUTE]\n\"\\u1EDA\" => \"O\"\n\n# Ờ  [LATIN CAPITAL LETTER O WITH HORN AND GRAVE]\n\"\\u1EDC\" => \"O\"\n\n# Ở  [LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE]\n\"\\u1EDE\" => \"O\"\n\n# Ỡ  [LATIN CAPITAL LETTER O WITH HORN AND TILDE]\n\"\\u1EE0\" => \"O\"\n\n# Ợ  [LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW]\n\"\\u1EE2\" => \"O\"\n\n# Ⓞ  [CIRCLED LATIN CAPITAL LETTER O]\n\"\\u24C4\" => \"O\"\n\n# Ꝋ  [LATIN CAPITAL LETTER O WITH LONG STROKE OVERLAY]\n\"\\uA74A\" => \"O\"\n\n# Ꝍ  [LATIN CAPITAL LETTER O WITH LOOP]\n\"\\uA74C\" => \"O\"\n\n# Ｏ  [FULLWIDTH LATIN CAPITAL LETTER O]\n\"\\uFF2F\" => \"O\"\n\n# ò  [LATIN SMALL LETTER O WITH GRAVE]\n\"\\u00F2\" => \"o\"\n\n# ó  [LATIN SMALL LETTER O WITH ACUTE]\n\"\\u00F3\" => \"o\"\n\n# ô  [LATIN SMALL LETTER O WITH CIRCUMFLEX]\n\"\\u00F4\" => \"o\"\n\n# õ  [LATIN SMALL LETTER O WITH TILDE]\n\"\\u00F5\" => \"o\"\n\n# ö  [LATIN SMALL LETTER O WITH DIAERESIS]\n\"\\u00F6\" => \"o\"\n\n# ø  [LATIN SMALL LETTER O WITH STROKE]\n\"\\u00F8\" => \"o\"\n\n# ō  [LATIN SMALL LETTER O WITH MACRON]\n\"\\u014D\" => \"o\"\n\n# ŏ  [LATIN SMALL LETTER O WITH BREVE]\n\"\\u014F\" => \"o\"\n\n# ő  [LATIN SMALL LETTER O WITH DOUBLE ACUTE]\n\"\\u0151\" => \"o\"\n\n# ơ  [LATIN SMALL LETTER O WITH HORN]\n\"\\u01A1\" => \"o\"\n\n# ǒ  [LATIN SMALL LETTER O WITH CARON]\n\"\\u01D2\" => \"o\"\n\n# ǫ  [LATIN SMALL LETTER O WITH OGONEK]\n\"\\u01EB\" => \"o\"\n\n# ǭ  [LATIN SMALL LETTER O WITH OGONEK AND MACRON]\n\"\\u01ED\" => \"o\"\n\n# ǿ  [LATIN SMALL LETTER O WITH STROKE AND ACUTE]\n\"\\u01FF\" => \"o\"\n\n# ȍ  [LATIN SMALL LETTER O WITH DOUBLE GRAVE]\n\"\\u020D\" => \"o\"\n\n# ȏ  [LATIN SMALL LETTER O WITH INVERTED BREVE]\n\"\\u020F\" => \"o\"\n\n# ȫ  [LATIN SMALL LETTER O WITH DIAERESIS AND MACRON]\n\"\\u022B\" => \"o\"\n\n# ȭ  [LATIN SMALL LETTER O WITH TILDE AND MACRON]\n\"\\u022D\" => \"o\"\n\n# ȯ  [LATIN SMALL LETTER O WITH DOT ABOVE]\n\"\\u022F\" => \"o\"\n\n# ȱ  [LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON]\n\"\\u0231\" => \"o\"\n\n# ɔ  [LATIN SMALL LETTER OPEN O]\n\"\\u0254\" => \"o\"\n\n# ɵ  [LATIN SMALL LETTER BARRED O]\n\"\\u0275\" => \"o\"\n\n# ᴖ  [LATIN SMALL LETTER TOP HALF O]\n\"\\u1D16\" => \"o\"\n\n# ᴗ  [LATIN SMALL LETTER BOTTOM HALF O]\n\"\\u1D17\" => \"o\"\n\n# ᶗ  [LATIN SMALL LETTER OPEN O WITH RETROFLEX HOOK]\n\"\\u1D97\" => \"o\"\n\n# ṍ  [LATIN SMALL LETTER O WITH TILDE AND ACUTE]\n\"\\u1E4D\" => \"o\"\n\n# ṏ  [LATIN SMALL LETTER O WITH TILDE AND DIAERESIS]\n\"\\u1E4F\" => \"o\"\n\n# ṑ  [LATIN SMALL LETTER O WITH MACRON AND GRAVE]\n\"\\u1E51\" => \"o\"\n\n# ṓ  [LATIN SMALL LETTER O WITH MACRON AND ACUTE]\n\"\\u1E53\" => \"o\"\n\n# ọ  [LATIN SMALL LETTER O WITH DOT BELOW]\n\"\\u1ECD\" => \"o\"\n\n# ỏ  [LATIN SMALL LETTER O WITH HOOK ABOVE]\n\"\\u1ECF\" => \"o\"\n\n# ố  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE]\n\"\\u1ED1\" => \"o\"\n\n# ồ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE]\n\"\\u1ED3\" => \"o\"\n\n# ổ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE]\n\"\\u1ED5\" => \"o\"\n\n# ỗ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE]\n\"\\u1ED7\" => \"o\"\n\n# ộ  [LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW]\n\"\\u1ED9\" => \"o\"\n\n# ớ  [LATIN SMALL LETTER O WITH HORN AND ACUTE]\n\"\\u1EDB\" => \"o\"\n\n# ờ  [LATIN SMALL LETTER O WITH HORN AND GRAVE]\n\"\\u1EDD\" => \"o\"\n\n# ở  [LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE]\n\"\\u1EDF\" => \"o\"\n\n# ỡ  [LATIN SMALL LETTER O WITH HORN AND TILDE]\n\"\\u1EE1\" => \"o\"\n\n# ợ  [LATIN SMALL LETTER O WITH HORN AND DOT BELOW]\n\"\\u1EE3\" => \"o\"\n\n# ₒ  [LATIN SUBSCRIPT SMALL LETTER O]\n\"\\u2092\" => \"o\"\n\n# ⓞ  [CIRCLED LATIN SMALL LETTER O]\n\"\\u24DE\" => \"o\"\n\n# ⱺ  [LATIN SMALL LETTER O WITH LOW RING INSIDE]\n\"\\u2C7A\" => \"o\"\n\n# ꝋ  [LATIN SMALL LETTER O WITH LONG STROKE OVERLAY]\n\"\\uA74B\" => \"o\"\n\n# ꝍ  [LATIN SMALL LETTER O WITH LOOP]\n\"\\uA74D\" => \"o\"\n\n# ｏ  [FULLWIDTH LATIN SMALL LETTER O]\n\"\\uFF4F\" => \"o\"\n\n# Œ  [LATIN CAPITAL LIGATURE OE]\n\"\\u0152\" => \"OE\"\n\n# ɶ  [LATIN LETTER SMALL CAPITAL OE]\n\"\\u0276\" => \"OE\"\n\n# Ꝏ  [LATIN CAPITAL LETTER OO]\n\"\\uA74E\" => \"OO\"\n\n# Ȣ  http://en.wikipedia.org/wiki/OU  [LATIN CAPITAL LETTER OU]\n\"\\u0222\" => \"OU\"\n\n# ᴕ  [LATIN LETTER SMALL CAPITAL OU]\n\"\\u1D15\" => \"OU\"\n\n# ⒪  [PARENTHESIZED LATIN SMALL LETTER O]\n\"\\u24AA\" => \"(o)\"\n\n# œ  [LATIN SMALL LIGATURE OE]\n\"\\u0153\" => \"oe\"\n\n# ᴔ  [LATIN SMALL LETTER TURNED OE]\n\"\\u1D14\" => \"oe\"\n\n# ꝏ  [LATIN SMALL LETTER OO]\n\"\\uA74F\" => \"oo\"\n\n# ȣ  http://en.wikipedia.org/wiki/OU  [LATIN SMALL LETTER OU]\n\"\\u0223\" => \"ou\"\n\n# Ƥ  [LATIN CAPITAL LETTER P WITH HOOK]\n\"\\u01A4\" => \"P\"\n\n# ᴘ  [LATIN LETTER SMALL CAPITAL P]\n\"\\u1D18\" => \"P\"\n\n# Ṕ  [LATIN CAPITAL LETTER P WITH ACUTE]\n\"\\u1E54\" => \"P\"\n\n# Ṗ  [LATIN CAPITAL LETTER P WITH DOT ABOVE]\n\"\\u1E56\" => \"P\"\n\n# Ⓟ  [CIRCLED LATIN CAPITAL LETTER P]\n\"\\u24C5\" => \"P\"\n\n# Ᵽ  [LATIN CAPITAL LETTER P WITH STROKE]\n\"\\u2C63\" => \"P\"\n\n# Ꝑ  [LATIN CAPITAL LETTER P WITH STROKE THROUGH DESCENDER]\n\"\\uA750\" => \"P\"\n\n# Ꝓ  [LATIN CAPITAL LETTER P WITH FLOURISH]\n\"\\uA752\" => \"P\"\n\n# Ꝕ  [LATIN CAPITAL LETTER P WITH SQUIRREL TAIL]\n\"\\uA754\" => \"P\"\n\n# Ｐ  [FULLWIDTH LATIN CAPITAL LETTER P]\n\"\\uFF30\" => \"P\"\n\n# ƥ  [LATIN SMALL LETTER P WITH HOOK]\n\"\\u01A5\" => \"p\"\n\n# ᵱ  [LATIN SMALL LETTER P WITH MIDDLE TILDE]\n\"\\u1D71\" => \"p\"\n\n# ᵽ  [LATIN SMALL LETTER P WITH STROKE]\n\"\\u1D7D\" => \"p\"\n\n# ᶈ  [LATIN SMALL LETTER P WITH PALATAL HOOK]\n\"\\u1D88\" => \"p\"\n\n# ṕ  [LATIN SMALL LETTER P WITH ACUTE]\n\"\\u1E55\" => \"p\"\n\n# ṗ  [LATIN SMALL LETTER P WITH DOT ABOVE]\n\"\\u1E57\" => \"p\"\n\n# ⓟ  [CIRCLED LATIN SMALL LETTER P]\n\"\\u24DF\" => \"p\"\n\n# ꝑ  [LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER]\n\"\\uA751\" => \"p\"\n\n# ꝓ  [LATIN SMALL LETTER P WITH FLOURISH]\n\"\\uA753\" => \"p\"\n\n# ꝕ  [LATIN SMALL LETTER P WITH SQUIRREL TAIL]\n\"\\uA755\" => \"p\"\n\n# ꟼ  [LATIN EPIGRAPHIC LETTER REVERSED P]\n\"\\uA7FC\" => \"p\"\n\n# ｐ  [FULLWIDTH LATIN SMALL LETTER P]\n\"\\uFF50\" => \"p\"\n\n# ⒫  [PARENTHESIZED LATIN SMALL LETTER P]\n\"\\u24AB\" => \"(p)\"\n\n# Ɋ  [LATIN CAPITAL LETTER SMALL Q WITH HOOK TAIL]\n\"\\u024A\" => \"Q\"\n\n# Ⓠ  [CIRCLED LATIN CAPITAL LETTER Q]\n\"\\u24C6\" => \"Q\"\n\n# Ꝗ  [LATIN CAPITAL LETTER Q WITH STROKE THROUGH DESCENDER]\n\"\\uA756\" => \"Q\"\n\n# Ꝙ  [LATIN CAPITAL LETTER Q WITH DIAGONAL STROKE]\n\"\\uA758\" => \"Q\"\n\n# Ｑ  [FULLWIDTH LATIN CAPITAL LETTER Q]\n\"\\uFF31\" => \"Q\"\n\n# ĸ  http://en.wikipedia.org/wiki/Kra_(letter)  [LATIN SMALL LETTER KRA]\n\"\\u0138\" => \"q\"\n\n# ɋ  [LATIN SMALL LETTER Q WITH HOOK TAIL]\n\"\\u024B\" => \"q\"\n\n# ʠ  [LATIN SMALL LETTER Q WITH HOOK]\n\"\\u02A0\" => \"q\"\n\n# ⓠ  [CIRCLED LATIN SMALL LETTER Q]\n\"\\u24E0\" => \"q\"\n\n# ꝗ  [LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER]\n\"\\uA757\" => \"q\"\n\n# ꝙ  [LATIN SMALL LETTER Q WITH DIAGONAL STROKE]\n\"\\uA759\" => \"q\"\n\n# ｑ  [FULLWIDTH LATIN SMALL LETTER Q]\n\"\\uFF51\" => \"q\"\n\n# ⒬  [PARENTHESIZED LATIN SMALL LETTER Q]\n\"\\u24AC\" => \"(q)\"\n\n# ȹ  [LATIN SMALL LETTER QP DIGRAPH]\n\"\\u0239\" => \"qp\"\n\n# Ŕ  [LATIN CAPITAL LETTER R WITH ACUTE]\n\"\\u0154\" => \"R\"\n\n# Ŗ  [LATIN CAPITAL LETTER R WITH CEDILLA]\n\"\\u0156\" => \"R\"\n\n# Ř  [LATIN CAPITAL LETTER R WITH CARON]\n\"\\u0158\" => \"R\"\n\n# Ȓ  [LATIN CAPITAL LETTER R WITH DOUBLE GRAVE]\n\"\\u0210\" => \"R\"\n\n# Ȓ  [LATIN CAPITAL LETTER R WITH INVERTED BREVE]\n\"\\u0212\" => \"R\"\n\n# Ɍ  [LATIN CAPITAL LETTER R WITH STROKE]\n\"\\u024C\" => \"R\"\n\n# ʀ  [LATIN LETTER SMALL CAPITAL R]\n\"\\u0280\" => \"R\"\n\n# ʁ  [LATIN LETTER SMALL CAPITAL INVERTED R]\n\"\\u0281\" => \"R\"\n\n# ᴙ  [LATIN LETTER SMALL CAPITAL REVERSED R]\n\"\\u1D19\" => \"R\"\n\n# ᴚ  [LATIN LETTER SMALL CAPITAL TURNED R]\n\"\\u1D1A\" => \"R\"\n\n# Ṙ  [LATIN CAPITAL LETTER R WITH DOT ABOVE]\n\"\\u1E58\" => \"R\"\n\n# Ṛ  [LATIN CAPITAL LETTER R WITH DOT BELOW]\n\"\\u1E5A\" => \"R\"\n\n# Ṝ  [LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON]\n\"\\u1E5C\" => \"R\"\n\n# Ṟ  [LATIN CAPITAL LETTER R WITH LINE BELOW]\n\"\\u1E5E\" => \"R\"\n\n# Ⓡ  [CIRCLED LATIN CAPITAL LETTER R]\n\"\\u24C7\" => \"R\"\n\n# Ɽ  [LATIN CAPITAL LETTER R WITH TAIL]\n\"\\u2C64\" => \"R\"\n\n# Ꝛ  [LATIN CAPITAL LETTER R ROTUNDA]\n\"\\uA75A\" => \"R\"\n\n# Ꞃ  [LATIN CAPITAL LETTER INSULAR R]\n\"\\uA782\" => \"R\"\n\n# Ｒ  [FULLWIDTH LATIN CAPITAL LETTER R]\n\"\\uFF32\" => \"R\"\n\n# ŕ  [LATIN SMALL LETTER R WITH ACUTE]\n\"\\u0155\" => \"r\"\n\n# ŗ  [LATIN SMALL LETTER R WITH CEDILLA]\n\"\\u0157\" => \"r\"\n\n# ř  [LATIN SMALL LETTER R WITH CARON]\n\"\\u0159\" => \"r\"\n\n# ȑ  [LATIN SMALL LETTER R WITH DOUBLE GRAVE]\n\"\\u0211\" => \"r\"\n\n# ȓ  [LATIN SMALL LETTER R WITH INVERTED BREVE]\n\"\\u0213\" => \"r\"\n\n# ɍ  [LATIN SMALL LETTER R WITH STROKE]\n\"\\u024D\" => \"r\"\n\n# ɼ  [LATIN SMALL LETTER R WITH LONG LEG]\n\"\\u027C\" => \"r\"\n\n# ɽ  [LATIN SMALL LETTER R WITH TAIL]\n\"\\u027D\" => \"r\"\n\n# ɾ  [LATIN SMALL LETTER R WITH FISHHOOK]\n\"\\u027E\" => \"r\"\n\n# ɿ  [LATIN SMALL LETTER REVERSED R WITH FISHHOOK]\n\"\\u027F\" => \"r\"\n\n# ᵣ  [LATIN SUBSCRIPT SMALL LETTER R]\n\"\\u1D63\" => \"r\"\n\n# ᵲ  [LATIN SMALL LETTER R WITH MIDDLE TILDE]\n\"\\u1D72\" => \"r\"\n\n# ᵳ  [LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE]\n\"\\u1D73\" => \"r\"\n\n# ᶉ  [LATIN SMALL LETTER R WITH PALATAL HOOK]\n\"\\u1D89\" => \"r\"\n\n# ṙ  [LATIN SMALL LETTER R WITH DOT ABOVE]\n\"\\u1E59\" => \"r\"\n\n# ṛ  [LATIN SMALL LETTER R WITH DOT BELOW]\n\"\\u1E5B\" => \"r\"\n\n# ṝ  [LATIN SMALL LETTER R WITH DOT BELOW AND MACRON]\n\"\\u1E5D\" => \"r\"\n\n# ṟ  [LATIN SMALL LETTER R WITH LINE BELOW]\n\"\\u1E5F\" => \"r\"\n\n# ⓡ  [CIRCLED LATIN SMALL LETTER R]\n\"\\u24E1\" => \"r\"\n\n# ꝛ  [LATIN SMALL LETTER R ROTUNDA]\n\"\\uA75B\" => \"r\"\n\n# ꞃ  [LATIN SMALL LETTER INSULAR R]\n\"\\uA783\" => \"r\"\n\n# ｒ  [FULLWIDTH LATIN SMALL LETTER R]\n\"\\uFF52\" => \"r\"\n\n# ⒭  [PARENTHESIZED LATIN SMALL LETTER R]\n\"\\u24AD\" => \"(r)\"\n\n# Ś  [LATIN CAPITAL LETTER S WITH ACUTE]\n\"\\u015A\" => \"S\"\n\n# Ŝ  [LATIN CAPITAL LETTER S WITH CIRCUMFLEX]\n\"\\u015C\" => \"S\"\n\n# Ş  [LATIN CAPITAL LETTER S WITH CEDILLA]\n\"\\u015E\" => \"S\"\n\n# Š  [LATIN CAPITAL LETTER S WITH CARON]\n\"\\u0160\" => \"S\"\n\n# Ș  [LATIN CAPITAL LETTER S WITH COMMA BELOW]\n\"\\u0218\" => \"S\"\n\n# Ṡ  [LATIN CAPITAL LETTER S WITH DOT ABOVE]\n\"\\u1E60\" => \"S\"\n\n# Ṣ  [LATIN CAPITAL LETTER S WITH DOT BELOW]\n\"\\u1E62\" => \"S\"\n\n# Ṥ  [LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE]\n\"\\u1E64\" => \"S\"\n\n# Ṧ  [LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE]\n\"\\u1E66\" => \"S\"\n\n# Ṩ  [LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE]\n\"\\u1E68\" => \"S\"\n\n# Ⓢ  [CIRCLED LATIN CAPITAL LETTER S]\n\"\\u24C8\" => \"S\"\n\n# ꜱ  [LATIN LETTER SMALL CAPITAL S]\n\"\\uA731\" => \"S\"\n\n# ꞅ  [LATIN SMALL LETTER INSULAR S]\n\"\\uA785\" => \"S\"\n\n# Ｓ  [FULLWIDTH LATIN CAPITAL LETTER S]\n\"\\uFF33\" => \"S\"\n\n# ś  [LATIN SMALL LETTER S WITH ACUTE]\n\"\\u015B\" => \"s\"\n\n# ŝ  [LATIN SMALL LETTER S WITH CIRCUMFLEX]\n\"\\u015D\" => \"s\"\n\n# ş  [LATIN SMALL LETTER S WITH CEDILLA]\n\"\\u015F\" => \"s\"\n\n# š  [LATIN SMALL LETTER S WITH CARON]\n\"\\u0161\" => \"s\"\n\n# ſ  http://en.wikipedia.org/wiki/Long_S  [LATIN SMALL LETTER LONG S]\n\"\\u017F\" => \"s\"\n\n# ș  [LATIN SMALL LETTER S WITH COMMA BELOW]\n\"\\u0219\" => \"s\"\n\n# ȿ  [LATIN SMALL LETTER S WITH SWASH TAIL]\n\"\\u023F\" => \"s\"\n\n# ʂ  [LATIN SMALL LETTER S WITH HOOK]\n\"\\u0282\" => \"s\"\n\n# ᵴ  [LATIN SMALL LETTER S WITH MIDDLE TILDE]\n\"\\u1D74\" => \"s\"\n\n# ᶊ  [LATIN SMALL LETTER S WITH PALATAL HOOK]\n\"\\u1D8A\" => \"s\"\n\n# ṡ  [LATIN SMALL LETTER S WITH DOT ABOVE]\n\"\\u1E61\" => \"s\"\n\n# ṣ  [LATIN SMALL LETTER S WITH DOT BELOW]\n\"\\u1E63\" => \"s\"\n\n# ṥ  [LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE]\n\"\\u1E65\" => \"s\"\n\n# ṧ  [LATIN SMALL LETTER S WITH CARON AND DOT ABOVE]\n\"\\u1E67\" => \"s\"\n\n# ṩ  [LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE]\n\"\\u1E69\" => \"s\"\n\n# ẜ  [LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE]\n\"\\u1E9C\" => \"s\"\n\n# ẝ  [LATIN SMALL LETTER LONG S WITH HIGH STROKE]\n\"\\u1E9D\" => \"s\"\n\n# ⓢ  [CIRCLED LATIN SMALL LETTER S]\n\"\\u24E2\" => \"s\"\n\n# Ꞅ  [LATIN CAPITAL LETTER INSULAR S]\n\"\\uA784\" => \"s\"\n\n# ｓ  [FULLWIDTH LATIN SMALL LETTER S]\n\"\\uFF53\" => \"s\"\n\n# ẞ  [LATIN CAPITAL LETTER SHARP S]\n\"\\u1E9E\" => \"SS\"\n\n# ⒮  [PARENTHESIZED LATIN SMALL LETTER S]\n\"\\u24AE\" => \"(s)\"\n\n# ß  [LATIN SMALL LETTER SHARP S]\n\"\\u00DF\" => \"ss\"\n\n# ﬆ  [LATIN SMALL LIGATURE ST]\n\"\\uFB06\" => \"st\"\n\n# Ţ  [LATIN CAPITAL LETTER T WITH CEDILLA]\n\"\\u0162\" => \"T\"\n\n# Ť  [LATIN CAPITAL LETTER T WITH CARON]\n\"\\u0164\" => \"T\"\n\n# Ŧ  [LATIN CAPITAL LETTER T WITH STROKE]\n\"\\u0166\" => \"T\"\n\n# Ƭ  [LATIN CAPITAL LETTER T WITH HOOK]\n\"\\u01AC\" => \"T\"\n\n# Ʈ  [LATIN CAPITAL LETTER T WITH RETROFLEX HOOK]\n\"\\u01AE\" => \"T\"\n\n# Ț  [LATIN CAPITAL LETTER T WITH COMMA BELOW]\n\"\\u021A\" => \"T\"\n\n# Ⱦ  [LATIN CAPITAL LETTER T WITH DIAGONAL STROKE]\n\"\\u023E\" => \"T\"\n\n# ᴛ  [LATIN LETTER SMALL CAPITAL T]\n\"\\u1D1B\" => \"T\"\n\n# Ṫ  [LATIN CAPITAL LETTER T WITH DOT ABOVE]\n\"\\u1E6A\" => \"T\"\n\n# Ṭ  [LATIN CAPITAL LETTER T WITH DOT BELOW]\n\"\\u1E6C\" => \"T\"\n\n# Ṯ  [LATIN CAPITAL LETTER T WITH LINE BELOW]\n\"\\u1E6E\" => \"T\"\n\n# Ṱ  [LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW]\n\"\\u1E70\" => \"T\"\n\n# Ⓣ  [CIRCLED LATIN CAPITAL LETTER T]\n\"\\u24C9\" => \"T\"\n\n# Ꞇ  [LATIN CAPITAL LETTER INSULAR T]\n\"\\uA786\" => \"T\"\n\n# Ｔ  [FULLWIDTH LATIN CAPITAL LETTER T]\n\"\\uFF34\" => \"T\"\n\n# ţ  [LATIN SMALL LETTER T WITH CEDILLA]\n\"\\u0163\" => \"t\"\n\n# ť  [LATIN SMALL LETTER T WITH CARON]\n\"\\u0165\" => \"t\"\n\n# ŧ  [LATIN SMALL LETTER T WITH STROKE]\n\"\\u0167\" => \"t\"\n\n# ƫ  [LATIN SMALL LETTER T WITH PALATAL HOOK]\n\"\\u01AB\" => \"t\"\n\n# ƭ  [LATIN SMALL LETTER T WITH HOOK]\n\"\\u01AD\" => \"t\"\n\n# ț  [LATIN SMALL LETTER T WITH COMMA BELOW]\n\"\\u021B\" => \"t\"\n\n# ȶ  [LATIN SMALL LETTER T WITH CURL]\n\"\\u0236\" => \"t\"\n\n# ʇ  [LATIN SMALL LETTER TURNED T]\n\"\\u0287\" => \"t\"\n\n# ʈ  [LATIN SMALL LETTER T WITH RETROFLEX HOOK]\n\"\\u0288\" => \"t\"\n\n# ᵵ  [LATIN SMALL LETTER T WITH MIDDLE TILDE]\n\"\\u1D75\" => \"t\"\n\n# ṫ  [LATIN SMALL LETTER T WITH DOT ABOVE]\n\"\\u1E6B\" => \"t\"\n\n# ṭ  [LATIN SMALL LETTER T WITH DOT BELOW]\n\"\\u1E6D\" => \"t\"\n\n# ṯ  [LATIN SMALL LETTER T WITH LINE BELOW]\n\"\\u1E6F\" => \"t\"\n\n# ṱ  [LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW]\n\"\\u1E71\" => \"t\"\n\n# ẗ  [LATIN SMALL LETTER T WITH DIAERESIS]\n\"\\u1E97\" => \"t\"\n\n# ⓣ  [CIRCLED LATIN SMALL LETTER T]\n\"\\u24E3\" => \"t\"\n\n# ⱦ  [LATIN SMALL LETTER T WITH DIAGONAL STROKE]\n\"\\u2C66\" => \"t\"\n\n# ｔ  [FULLWIDTH LATIN SMALL LETTER T]\n\"\\uFF54\" => \"t\"\n\n# Þ  [LATIN CAPITAL LETTER THORN]\n\"\\u00DE\" => \"TH\"\n\n# Ꝧ  [LATIN CAPITAL LETTER THORN WITH STROKE THROUGH DESCENDER]\n\"\\uA766\" => \"TH\"\n\n# Ꜩ  [LATIN CAPITAL LETTER TZ]\n\"\\uA728\" => \"TZ\"\n\n# ⒯  [PARENTHESIZED LATIN SMALL LETTER T]\n\"\\u24AF\" => \"(t)\"\n\n# ʨ  [LATIN SMALL LETTER TC DIGRAPH WITH CURL]\n\"\\u02A8\" => \"tc\"\n\n# þ  [LATIN SMALL LETTER THORN]\n\"\\u00FE\" => \"th\"\n\n# ᵺ  [LATIN SMALL LETTER TH WITH STRIKETHROUGH]\n\"\\u1D7A\" => \"th\"\n\n# ꝧ  [LATIN SMALL LETTER THORN WITH STROKE THROUGH DESCENDER]\n\"\\uA767\" => \"th\"\n\n# ʦ  [LATIN SMALL LETTER TS DIGRAPH]\n\"\\u02A6\" => \"ts\"\n\n# ꜩ  [LATIN SMALL LETTER TZ]\n\"\\uA729\" => \"tz\"\n\n# Ù  [LATIN CAPITAL LETTER U WITH GRAVE]\n\"\\u00D9\" => \"U\"\n\n# Ú  [LATIN CAPITAL LETTER U WITH ACUTE]\n\"\\u00DA\" => \"U\"\n\n# Û  [LATIN CAPITAL LETTER U WITH CIRCUMFLEX]\n\"\\u00DB\" => \"U\"\n\n# Ü  [LATIN CAPITAL LETTER U WITH DIAERESIS]\n\"\\u00DC\" => \"U\"\n\n# Ũ  [LATIN CAPITAL LETTER U WITH TILDE]\n\"\\u0168\" => \"U\"\n\n# Ū  [LATIN CAPITAL LETTER U WITH MACRON]\n\"\\u016A\" => \"U\"\n\n# Ŭ  [LATIN CAPITAL LETTER U WITH BREVE]\n\"\\u016C\" => \"U\"\n\n# Ů  [LATIN CAPITAL LETTER U WITH RING ABOVE]\n\"\\u016E\" => \"U\"\n\n# Ű  [LATIN CAPITAL LETTER U WITH DOUBLE ACUTE]\n\"\\u0170\" => \"U\"\n\n# Ų  [LATIN CAPITAL LETTER U WITH OGONEK]\n\"\\u0172\" => \"U\"\n\n# Ư  [LATIN CAPITAL LETTER U WITH HORN]\n\"\\u01AF\" => \"U\"\n\n# Ǔ  [LATIN CAPITAL LETTER U WITH CARON]\n\"\\u01D3\" => \"U\"\n\n# Ǖ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON]\n\"\\u01D5\" => \"U\"\n\n# Ǘ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE]\n\"\\u01D7\" => \"U\"\n\n# Ǚ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON]\n\"\\u01D9\" => \"U\"\n\n# Ǜ  [LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE]\n\"\\u01DB\" => \"U\"\n\n# Ȕ  [LATIN CAPITAL LETTER U WITH DOUBLE GRAVE]\n\"\\u0214\" => \"U\"\n\n# Ȗ  [LATIN CAPITAL LETTER U WITH INVERTED BREVE]\n\"\\u0216\" => \"U\"\n\n# Ʉ  [LATIN CAPITAL LETTER U BAR]\n\"\\u0244\" => \"U\"\n\n# ᴜ  [LATIN LETTER SMALL CAPITAL U]\n\"\\u1D1C\" => \"U\"\n\n# ᵾ  [LATIN SMALL CAPITAL LETTER U WITH STROKE]\n\"\\u1D7E\" => \"U\"\n\n# Ṳ  [LATIN CAPITAL LETTER U WITH DIAERESIS BELOW]\n\"\\u1E72\" => \"U\"\n\n# Ṵ  [LATIN CAPITAL LETTER U WITH TILDE BELOW]\n\"\\u1E74\" => \"U\"\n\n# Ṷ  [LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW]\n\"\\u1E76\" => \"U\"\n\n# Ṹ  [LATIN CAPITAL LETTER U WITH TILDE AND ACUTE]\n\"\\u1E78\" => \"U\"\n\n# Ṻ  [LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS]\n\"\\u1E7A\" => \"U\"\n\n# Ụ  [LATIN CAPITAL LETTER U WITH DOT BELOW]\n\"\\u1EE4\" => \"U\"\n\n# Ủ  [LATIN CAPITAL LETTER U WITH HOOK ABOVE]\n\"\\u1EE6\" => \"U\"\n\n# Ứ  [LATIN CAPITAL LETTER U WITH HORN AND ACUTE]\n\"\\u1EE8\" => \"U\"\n\n# Ừ  [LATIN CAPITAL LETTER U WITH HORN AND GRAVE]\n\"\\u1EEA\" => \"U\"\n\n# Ử  [LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE]\n\"\\u1EEC\" => \"U\"\n\n# Ữ  [LATIN CAPITAL LETTER U WITH HORN AND TILDE]\n\"\\u1EEE\" => \"U\"\n\n# Ự  [LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW]\n\"\\u1EF0\" => \"U\"\n\n# Ⓤ  [CIRCLED LATIN CAPITAL LETTER U]\n\"\\u24CA\" => \"U\"\n\n# Ｕ  [FULLWIDTH LATIN CAPITAL LETTER U]\n\"\\uFF35\" => \"U\"\n\n# ù  [LATIN SMALL LETTER U WITH GRAVE]\n\"\\u00F9\" => \"u\"\n\n# ú  [LATIN SMALL LETTER U WITH ACUTE]\n\"\\u00FA\" => \"u\"\n\n# û  [LATIN SMALL LETTER U WITH CIRCUMFLEX]\n\"\\u00FB\" => \"u\"\n\n# ü  [LATIN SMALL LETTER U WITH DIAERESIS]\n\"\\u00FC\" => \"u\"\n\n# ũ  [LATIN SMALL LETTER U WITH TILDE]\n\"\\u0169\" => \"u\"\n\n# ū  [LATIN SMALL LETTER U WITH MACRON]\n\"\\u016B\" => \"u\"\n\n# ŭ  [LATIN SMALL LETTER U WITH BREVE]\n\"\\u016D\" => \"u\"\n\n# ů  [LATIN SMALL LETTER U WITH RING ABOVE]\n\"\\u016F\" => \"u\"\n\n# ű  [LATIN SMALL LETTER U WITH DOUBLE ACUTE]\n\"\\u0171\" => \"u\"\n\n# ų  [LATIN SMALL LETTER U WITH OGONEK]\n\"\\u0173\" => \"u\"\n\n# ư  [LATIN SMALL LETTER U WITH HORN]\n\"\\u01B0\" => \"u\"\n\n# ǔ  [LATIN SMALL LETTER U WITH CARON]\n\"\\u01D4\" => \"u\"\n\n# ǖ  [LATIN SMALL LETTER U WITH DIAERESIS AND MACRON]\n\"\\u01D6\" => \"u\"\n\n# ǘ  [LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE]\n\"\\u01D8\" => \"u\"\n\n# ǚ  [LATIN SMALL LETTER U WITH DIAERESIS AND CARON]\n\"\\u01DA\" => \"u\"\n\n# ǜ  [LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE]\n\"\\u01DC\" => \"u\"\n\n# ȕ  [LATIN SMALL LETTER U WITH DOUBLE GRAVE]\n\"\\u0215\" => \"u\"\n\n# ȗ  [LATIN SMALL LETTER U WITH INVERTED BREVE]\n\"\\u0217\" => \"u\"\n\n# ʉ  [LATIN SMALL LETTER U BAR]\n\"\\u0289\" => \"u\"\n\n# ᵤ  [LATIN SUBSCRIPT SMALL LETTER U]\n\"\\u1D64\" => \"u\"\n\n# ᶙ  [LATIN SMALL LETTER U WITH RETROFLEX HOOK]\n\"\\u1D99\" => \"u\"\n\n# ṳ  [LATIN SMALL LETTER U WITH DIAERESIS BELOW]\n\"\\u1E73\" => \"u\"\n\n# ṵ  [LATIN SMALL LETTER U WITH TILDE BELOW]\n\"\\u1E75\" => \"u\"\n\n# ṷ  [LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW]\n\"\\u1E77\" => \"u\"\n\n# ṹ  [LATIN SMALL LETTER U WITH TILDE AND ACUTE]\n\"\\u1E79\" => \"u\"\n\n# ṻ  [LATIN SMALL LETTER U WITH MACRON AND DIAERESIS]\n\"\\u1E7B\" => \"u\"\n\n# ụ  [LATIN SMALL LETTER U WITH DOT BELOW]\n\"\\u1EE5\" => \"u\"\n\n# ủ  [LATIN SMALL LETTER U WITH HOOK ABOVE]\n\"\\u1EE7\" => \"u\"\n\n# ứ  [LATIN SMALL LETTER U WITH HORN AND ACUTE]\n\"\\u1EE9\" => \"u\"\n\n# ừ  [LATIN SMALL LETTER U WITH HORN AND GRAVE]\n\"\\u1EEB\" => \"u\"\n\n# ử  [LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE]\n\"\\u1EED\" => \"u\"\n\n# ữ  [LATIN SMALL LETTER U WITH HORN AND TILDE]\n\"\\u1EEF\" => \"u\"\n\n# ự  [LATIN SMALL LETTER U WITH HORN AND DOT BELOW]\n\"\\u1EF1\" => \"u\"\n\n# ⓤ  [CIRCLED LATIN SMALL LETTER U]\n\"\\u24E4\" => \"u\"\n\n# ｕ  [FULLWIDTH LATIN SMALL LETTER U]\n\"\\uFF55\" => \"u\"\n\n# ⒰  [PARENTHESIZED LATIN SMALL LETTER U]\n\"\\u24B0\" => \"(u)\"\n\n# ᵫ  [LATIN SMALL LETTER UE]\n\"\\u1D6B\" => \"ue\"\n\n# Ʋ  [LATIN CAPITAL LETTER V WITH HOOK]\n\"\\u01B2\" => \"V\"\n\n# Ʌ  [LATIN CAPITAL LETTER TURNED V]\n\"\\u0245\" => \"V\"\n\n# ᴠ  [LATIN LETTER SMALL CAPITAL V]\n\"\\u1D20\" => \"V\"\n\n# Ṽ  [LATIN CAPITAL LETTER V WITH TILDE]\n\"\\u1E7C\" => \"V\"\n\n# Ṿ  [LATIN CAPITAL LETTER V WITH DOT BELOW]\n\"\\u1E7E\" => \"V\"\n\n# Ỽ  [LATIN CAPITAL LETTER MIDDLE-WELSH V]\n\"\\u1EFC\" => \"V\"\n\n# Ⓥ  [CIRCLED LATIN CAPITAL LETTER V]\n\"\\u24CB\" => \"V\"\n\n# Ꝟ  [LATIN CAPITAL LETTER V WITH DIAGONAL STROKE]\n\"\\uA75E\" => \"V\"\n\n# Ꝩ  [LATIN CAPITAL LETTER VEND]\n\"\\uA768\" => \"V\"\n\n# Ｖ  [FULLWIDTH LATIN CAPITAL LETTER V]\n\"\\uFF36\" => \"V\"\n\n# ʋ  [LATIN SMALL LETTER V WITH HOOK]\n\"\\u028B\" => \"v\"\n\n# ʌ  [LATIN SMALL LETTER TURNED V]\n\"\\u028C\" => \"v\"\n\n# ᵥ  [LATIN SUBSCRIPT SMALL LETTER V]\n\"\\u1D65\" => \"v\"\n\n# ᶌ  [LATIN SMALL LETTER V WITH PALATAL HOOK]\n\"\\u1D8C\" => \"v\"\n\n# ṽ  [LATIN SMALL LETTER V WITH TILDE]\n\"\\u1E7D\" => \"v\"\n\n# ṿ  [LATIN SMALL LETTER V WITH DOT BELOW]\n\"\\u1E7F\" => \"v\"\n\n# ⓥ  [CIRCLED LATIN SMALL LETTER V]\n\"\\u24E5\" => \"v\"\n\n# ⱱ  [LATIN SMALL LETTER V WITH RIGHT HOOK]\n\"\\u2C71\" => \"v\"\n\n# ⱴ  [LATIN SMALL LETTER V WITH CURL]\n\"\\u2C74\" => \"v\"\n\n# ꝟ  [LATIN SMALL LETTER V WITH DIAGONAL STROKE]\n\"\\uA75F\" => \"v\"\n\n# ｖ  [FULLWIDTH LATIN SMALL LETTER V]\n\"\\uFF56\" => \"v\"\n\n# Ꝡ  [LATIN CAPITAL LETTER VY]\n\"\\uA760\" => \"VY\"\n\n# ⒱  [PARENTHESIZED LATIN SMALL LETTER V]\n\"\\u24B1\" => \"(v)\"\n\n# ꝡ  [LATIN SMALL LETTER VY]\n\"\\uA761\" => \"vy\"\n\n# Ŵ  [LATIN CAPITAL LETTER W WITH CIRCUMFLEX]\n\"\\u0174\" => \"W\"\n\n# Ƿ  http://en.wikipedia.org/wiki/Wynn  [LATIN CAPITAL LETTER WYNN]\n\"\\u01F7\" => \"W\"\n\n# ᴡ  [LATIN LETTER SMALL CAPITAL W]\n\"\\u1D21\" => \"W\"\n\n# Ẁ  [LATIN CAPITAL LETTER W WITH GRAVE]\n\"\\u1E80\" => \"W\"\n\n# Ẃ  [LATIN CAPITAL LETTER W WITH ACUTE]\n\"\\u1E82\" => \"W\"\n\n# Ẅ  [LATIN CAPITAL LETTER W WITH DIAERESIS]\n\"\\u1E84\" => \"W\"\n\n# Ẇ  [LATIN CAPITAL LETTER W WITH DOT ABOVE]\n\"\\u1E86\" => \"W\"\n\n# Ẉ  [LATIN CAPITAL LETTER W WITH DOT BELOW]\n\"\\u1E88\" => \"W\"\n\n# Ⓦ  [CIRCLED LATIN CAPITAL LETTER W]\n\"\\u24CC\" => \"W\"\n\n# Ⱳ  [LATIN CAPITAL LETTER W WITH HOOK]\n\"\\u2C72\" => \"W\"\n\n# Ｗ  [FULLWIDTH LATIN CAPITAL LETTER W]\n\"\\uFF37\" => \"W\"\n\n# ŵ  [LATIN SMALL LETTER W WITH CIRCUMFLEX]\n\"\\u0175\" => \"w\"\n\n# ƿ  http://en.wikipedia.org/wiki/Wynn  [LATIN LETTER WYNN]\n\"\\u01BF\" => \"w\"\n\n# ʍ  [LATIN SMALL LETTER TURNED W]\n\"\\u028D\" => \"w\"\n\n# ẁ  [LATIN SMALL LETTER W WITH GRAVE]\n\"\\u1E81\" => \"w\"\n\n# ẃ  [LATIN SMALL LETTER W WITH ACUTE]\n\"\\u1E83\" => \"w\"\n\n# ẅ  [LATIN SMALL LETTER W WITH DIAERESIS]\n\"\\u1E85\" => \"w\"\n\n# ẇ  [LATIN SMALL LETTER W WITH DOT ABOVE]\n\"\\u1E87\" => \"w\"\n\n# ẉ  [LATIN SMALL LETTER W WITH DOT BELOW]\n\"\\u1E89\" => \"w\"\n\n# ẘ  [LATIN SMALL LETTER W WITH RING ABOVE]\n\"\\u1E98\" => \"w\"\n\n# ⓦ  [CIRCLED LATIN SMALL LETTER W]\n\"\\u24E6\" => \"w\"\n\n# ⱳ  [LATIN SMALL LETTER W WITH HOOK]\n\"\\u2C73\" => \"w\"\n\n# ｗ  [FULLWIDTH LATIN SMALL LETTER W]\n\"\\uFF57\" => \"w\"\n\n# ⒲  [PARENTHESIZED LATIN SMALL LETTER W]\n\"\\u24B2\" => \"(w)\"\n\n# Ẋ  [LATIN CAPITAL LETTER X WITH DOT ABOVE]\n\"\\u1E8A\" => \"X\"\n\n# Ẍ  [LATIN CAPITAL LETTER X WITH DIAERESIS]\n\"\\u1E8C\" => \"X\"\n\n# Ⓧ  [CIRCLED LATIN CAPITAL LETTER X]\n\"\\u24CD\" => \"X\"\n\n# Ｘ  [FULLWIDTH LATIN CAPITAL LETTER X]\n\"\\uFF38\" => \"X\"\n\n# ᶍ  [LATIN SMALL LETTER X WITH PALATAL HOOK]\n\"\\u1D8D\" => \"x\"\n\n# ẋ  [LATIN SMALL LETTER X WITH DOT ABOVE]\n\"\\u1E8B\" => \"x\"\n\n# ẍ  [LATIN SMALL LETTER X WITH DIAERESIS]\n\"\\u1E8D\" => \"x\"\n\n# ₓ  [LATIN SUBSCRIPT SMALL LETTER X]\n\"\\u2093\" => \"x\"\n\n# ⓧ  [CIRCLED LATIN SMALL LETTER X]\n\"\\u24E7\" => \"x\"\n\n# ｘ  [FULLWIDTH LATIN SMALL LETTER X]\n\"\\uFF58\" => \"x\"\n\n# ⒳  [PARENTHESIZED LATIN SMALL LETTER X]\n\"\\u24B3\" => \"(x)\"\n\n# Ý  [LATIN CAPITAL LETTER Y WITH ACUTE]\n\"\\u00DD\" => \"Y\"\n\n# Ŷ  [LATIN CAPITAL LETTER Y WITH CIRCUMFLEX]\n\"\\u0176\" => \"Y\"\n\n# Ÿ  [LATIN CAPITAL LETTER Y WITH DIAERESIS]\n\"\\u0178\" => \"Y\"\n\n# Ƴ  [LATIN CAPITAL LETTER Y WITH HOOK]\n\"\\u01B3\" => \"Y\"\n\n# Ȳ  [LATIN CAPITAL LETTER Y WITH MACRON]\n\"\\u0232\" => \"Y\"\n\n# Ɏ  [LATIN CAPITAL LETTER Y WITH STROKE]\n\"\\u024E\" => \"Y\"\n\n# ʏ  [LATIN LETTER SMALL CAPITAL Y]\n\"\\u028F\" => \"Y\"\n\n# Ẏ  [LATIN CAPITAL LETTER Y WITH DOT ABOVE]\n\"\\u1E8E\" => \"Y\"\n\n# Ỳ  [LATIN CAPITAL LETTER Y WITH GRAVE]\n\"\\u1EF2\" => \"Y\"\n\n# Ỵ  [LATIN CAPITAL LETTER Y WITH DOT BELOW]\n\"\\u1EF4\" => \"Y\"\n\n# Ỷ  [LATIN CAPITAL LETTER Y WITH HOOK ABOVE]\n\"\\u1EF6\" => \"Y\"\n\n# Ỹ  [LATIN CAPITAL LETTER Y WITH TILDE]\n\"\\u1EF8\" => \"Y\"\n\n# Ỿ  [LATIN CAPITAL LETTER Y WITH LOOP]\n\"\\u1EFE\" => \"Y\"\n\n# Ⓨ  [CIRCLED LATIN CAPITAL LETTER Y]\n\"\\u24CE\" => \"Y\"\n\n# Ｙ  [FULLWIDTH LATIN CAPITAL LETTER Y]\n\"\\uFF39\" => \"Y\"\n\n# ý  [LATIN SMALL LETTER Y WITH ACUTE]\n\"\\u00FD\" => \"y\"\n\n# ÿ  [LATIN SMALL LETTER Y WITH DIAERESIS]\n\"\\u00FF\" => \"y\"\n\n# ŷ  [LATIN SMALL LETTER Y WITH CIRCUMFLEX]\n\"\\u0177\" => \"y\"\n\n# ƴ  [LATIN SMALL LETTER Y WITH HOOK]\n\"\\u01B4\" => \"y\"\n\n# ȳ  [LATIN SMALL LETTER Y WITH MACRON]\n\"\\u0233\" => \"y\"\n\n# ɏ  [LATIN SMALL LETTER Y WITH STROKE]\n\"\\u024F\" => \"y\"\n\n# ʎ  [LATIN SMALL LETTER TURNED Y]\n\"\\u028E\" => \"y\"\n\n# ẏ  [LATIN SMALL LETTER Y WITH DOT ABOVE]\n\"\\u1E8F\" => \"y\"\n\n# ẙ  [LATIN SMALL LETTER Y WITH RING ABOVE]\n\"\\u1E99\" => \"y\"\n\n# ỳ  [LATIN SMALL LETTER Y WITH GRAVE]\n\"\\u1EF3\" => \"y\"\n\n# ỵ  [LATIN SMALL LETTER Y WITH DOT BELOW]\n\"\\u1EF5\" => \"y\"\n\n# ỷ  [LATIN SMALL LETTER Y WITH HOOK ABOVE]\n\"\\u1EF7\" => \"y\"\n\n# ỹ  [LATIN SMALL LETTER Y WITH TILDE]\n\"\\u1EF9\" => \"y\"\n\n# ỿ  [LATIN SMALL LETTER Y WITH LOOP]\n\"\\u1EFF\" => \"y\"\n\n# ⓨ  [CIRCLED LATIN SMALL LETTER Y]\n\"\\u24E8\" => \"y\"\n\n# ｙ  [FULLWIDTH LATIN SMALL LETTER Y]\n\"\\uFF59\" => \"y\"\n\n# ⒴  [PARENTHESIZED LATIN SMALL LETTER Y]\n\"\\u24B4\" => \"(y)\"\n\n# Ź  [LATIN CAPITAL LETTER Z WITH ACUTE]\n\"\\u0179\" => \"Z\"\n\n# Ż  [LATIN CAPITAL LETTER Z WITH DOT ABOVE]\n\"\\u017B\" => \"Z\"\n\n# Ž  [LATIN CAPITAL LETTER Z WITH CARON]\n\"\\u017D\" => \"Z\"\n\n# Ƶ  [LATIN CAPITAL LETTER Z WITH STROKE]\n\"\\u01B5\" => \"Z\"\n\n# Ȝ  http://en.wikipedia.org/wiki/Yogh  [LATIN CAPITAL LETTER YOGH]\n\"\\u021C\" => \"Z\"\n\n# Ȥ  [LATIN CAPITAL LETTER Z WITH HOOK]\n\"\\u0224\" => \"Z\"\n\n# ᴢ  [LATIN LETTER SMALL CAPITAL Z]\n\"\\u1D22\" => \"Z\"\n\n# Ẑ  [LATIN CAPITAL LETTER Z WITH CIRCUMFLEX]\n\"\\u1E90\" => \"Z\"\n\n# Ẓ  [LATIN CAPITAL LETTER Z WITH DOT BELOW]\n\"\\u1E92\" => \"Z\"\n\n# Ẕ  [LATIN CAPITAL LETTER Z WITH LINE BELOW]\n\"\\u1E94\" => \"Z\"\n\n# Ⓩ  [CIRCLED LATIN CAPITAL LETTER Z]\n\"\\u24CF\" => \"Z\"\n\n# Ⱬ  [LATIN CAPITAL LETTER Z WITH DESCENDER]\n\"\\u2C6B\" => \"Z\"\n\n# Ꝣ  [LATIN CAPITAL LETTER VISIGOTHIC Z]\n\"\\uA762\" => \"Z\"\n\n# Ｚ  [FULLWIDTH LATIN CAPITAL LETTER Z]\n\"\\uFF3A\" => \"Z\"\n\n# ź  [LATIN SMALL LETTER Z WITH ACUTE]\n\"\\u017A\" => \"z\"\n\n# ż  [LATIN SMALL LETTER Z WITH DOT ABOVE]\n\"\\u017C\" => \"z\"\n\n# ž  [LATIN SMALL LETTER Z WITH CARON]\n\"\\u017E\" => \"z\"\n\n# ƶ  [LATIN SMALL LETTER Z WITH STROKE]\n\"\\u01B6\" => \"z\"\n\n# ȝ  http://en.wikipedia.org/wiki/Yogh  [LATIN SMALL LETTER YOGH]\n\"\\u021D\" => \"z\"\n\n# ȥ  [LATIN SMALL LETTER Z WITH HOOK]\n\"\\u0225\" => \"z\"\n\n# ɀ  [LATIN SMALL LETTER Z WITH SWASH TAIL]\n\"\\u0240\" => \"z\"\n\n# ʐ  [LATIN SMALL LETTER Z WITH RETROFLEX HOOK]\n\"\\u0290\" => \"z\"\n\n# ʑ  [LATIN SMALL LETTER Z WITH CURL]\n\"\\u0291\" => \"z\"\n\n# ᵶ  [LATIN SMALL LETTER Z WITH MIDDLE TILDE]\n\"\\u1D76\" => \"z\"\n\n# ᶎ  [LATIN SMALL LETTER Z WITH PALATAL HOOK]\n\"\\u1D8E\" => \"z\"\n\n# ẑ  [LATIN SMALL LETTER Z WITH CIRCUMFLEX]\n\"\\u1E91\" => \"z\"\n\n# ẓ  [LATIN SMALL LETTER Z WITH DOT BELOW]\n\"\\u1E93\" => \"z\"\n\n# ẕ  [LATIN SMALL LETTER Z WITH LINE BELOW]\n\"\\u1E95\" => \"z\"\n\n# ⓩ  [CIRCLED LATIN SMALL LETTER Z]\n\"\\u24E9\" => \"z\"\n\n# ⱬ  [LATIN SMALL LETTER Z WITH DESCENDER]\n\"\\u2C6C\" => \"z\"\n\n# ꝣ  [LATIN SMALL LETTER VISIGOTHIC Z]\n\"\\uA763\" => \"z\"\n\n# ｚ  [FULLWIDTH LATIN SMALL LETTER Z]\n\"\\uFF5A\" => \"z\"\n\n# ⒵  [PARENTHESIZED LATIN SMALL LETTER Z]\n\"\\u24B5\" => \"(z)\"\n\n# ⁰  [SUPERSCRIPT ZERO]\n\"\\u2070\" => \"0\"\n\n# ₀  [SUBSCRIPT ZERO]\n\"\\u2080\" => \"0\"\n\n# ⓪  [CIRCLED DIGIT ZERO]\n\"\\u24EA\" => \"0\"\n\n# ⓿  [NEGATIVE CIRCLED DIGIT ZERO]\n\"\\u24FF\" => \"0\"\n\n# ０  [FULLWIDTH DIGIT ZERO]\n\"\\uFF10\" => \"0\"\n\n# ¹  [SUPERSCRIPT ONE]\n\"\\u00B9\" => \"1\"\n\n# ₁  [SUBSCRIPT ONE]\n\"\\u2081\" => \"1\"\n\n# ①  [CIRCLED DIGIT ONE]\n\"\\u2460\" => \"1\"\n\n# ⓵  [DOUBLE CIRCLED DIGIT ONE]\n\"\\u24F5\" => \"1\"\n\n# ❶  [DINGBAT NEGATIVE CIRCLED DIGIT ONE]\n\"\\u2776\" => \"1\"\n\n# ➀  [DINGBAT CIRCLED SANS-SERIF DIGIT ONE]\n\"\\u2780\" => \"1\"\n\n# ➊  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ONE]\n\"\\u278A\" => \"1\"\n\n# １  [FULLWIDTH DIGIT ONE]\n\"\\uFF11\" => \"1\"\n\n# ⒈  [DIGIT ONE FULL STOP]\n\"\\u2488\" => \"1.\"\n\n# ⑴  [PARENTHESIZED DIGIT ONE]\n\"\\u2474\" => \"(1)\"\n\n# ²  [SUPERSCRIPT TWO]\n\"\\u00B2\" => \"2\"\n\n# ₂  [SUBSCRIPT TWO]\n\"\\u2082\" => \"2\"\n\n# ②  [CIRCLED DIGIT TWO]\n\"\\u2461\" => \"2\"\n\n# ⓶  [DOUBLE CIRCLED DIGIT TWO]\n\"\\u24F6\" => \"2\"\n\n# ❷  [DINGBAT NEGATIVE CIRCLED DIGIT TWO]\n\"\\u2777\" => \"2\"\n\n# ➁  [DINGBAT CIRCLED SANS-SERIF DIGIT TWO]\n\"\\u2781\" => \"2\"\n\n# ➋  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT TWO]\n\"\\u278B\" => \"2\"\n\n# ２  [FULLWIDTH DIGIT TWO]\n\"\\uFF12\" => \"2\"\n\n# ⒉  [DIGIT TWO FULL STOP]\n\"\\u2489\" => \"2.\"\n\n# ⑵  [PARENTHESIZED DIGIT TWO]\n\"\\u2475\" => \"(2)\"\n\n# ³  [SUPERSCRIPT THREE]\n\"\\u00B3\" => \"3\"\n\n# ₃  [SUBSCRIPT THREE]\n\"\\u2083\" => \"3\"\n\n# ③  [CIRCLED DIGIT THREE]\n\"\\u2462\" => \"3\"\n\n# ⓷  [DOUBLE CIRCLED DIGIT THREE]\n\"\\u24F7\" => \"3\"\n\n# ❸  [DINGBAT NEGATIVE CIRCLED DIGIT THREE]\n\"\\u2778\" => \"3\"\n\n# ➂  [DINGBAT CIRCLED SANS-SERIF DIGIT THREE]\n\"\\u2782\" => \"3\"\n\n# ➌  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT THREE]\n\"\\u278C\" => \"3\"\n\n# ３  [FULLWIDTH DIGIT THREE]\n\"\\uFF13\" => \"3\"\n\n# ⒊  [DIGIT THREE FULL STOP]\n\"\\u248A\" => \"3.\"\n\n# ⑶  [PARENTHESIZED DIGIT THREE]\n\"\\u2476\" => \"(3)\"\n\n# ⁴  [SUPERSCRIPT FOUR]\n\"\\u2074\" => \"4\"\n\n# ₄  [SUBSCRIPT FOUR]\n\"\\u2084\" => \"4\"\n\n# ④  [CIRCLED DIGIT FOUR]\n\"\\u2463\" => \"4\"\n\n# ⓸  [DOUBLE CIRCLED DIGIT FOUR]\n\"\\u24F8\" => \"4\"\n\n# ❹  [DINGBAT NEGATIVE CIRCLED DIGIT FOUR]\n\"\\u2779\" => \"4\"\n\n# ➃  [DINGBAT CIRCLED SANS-SERIF DIGIT FOUR]\n\"\\u2783\" => \"4\"\n\n# ➍  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FOUR]\n\"\\u278D\" => \"4\"\n\n# ４  [FULLWIDTH DIGIT FOUR]\n\"\\uFF14\" => \"4\"\n\n# ⒋  [DIGIT FOUR FULL STOP]\n\"\\u248B\" => \"4.\"\n\n# ⑷  [PARENTHESIZED DIGIT FOUR]\n\"\\u2477\" => \"(4)\"\n\n# ⁵  [SUPERSCRIPT FIVE]\n\"\\u2075\" => \"5\"\n\n# ₅  [SUBSCRIPT FIVE]\n\"\\u2085\" => \"5\"\n\n# ⑤  [CIRCLED DIGIT FIVE]\n\"\\u2464\" => \"5\"\n\n# ⓹  [DOUBLE CIRCLED DIGIT FIVE]\n\"\\u24F9\" => \"5\"\n\n# ❺  [DINGBAT NEGATIVE CIRCLED DIGIT FIVE]\n\"\\u277A\" => \"5\"\n\n# ➄  [DINGBAT CIRCLED SANS-SERIF DIGIT FIVE]\n\"\\u2784\" => \"5\"\n\n# ➎  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FIVE]\n\"\\u278E\" => \"5\"\n\n# ５  [FULLWIDTH DIGIT FIVE]\n\"\\uFF15\" => \"5\"\n\n# ⒌  [DIGIT FIVE FULL STOP]\n\"\\u248C\" => \"5.\"\n\n# ⑸  [PARENTHESIZED DIGIT FIVE]\n\"\\u2478\" => \"(5)\"\n\n# ⁶  [SUPERSCRIPT SIX]\n\"\\u2076\" => \"6\"\n\n# ₆  [SUBSCRIPT SIX]\n\"\\u2086\" => \"6\"\n\n# ⑥  [CIRCLED DIGIT SIX]\n\"\\u2465\" => \"6\"\n\n# ⓺  [DOUBLE CIRCLED DIGIT SIX]\n\"\\u24FA\" => \"6\"\n\n# ❻  [DINGBAT NEGATIVE CIRCLED DIGIT SIX]\n\"\\u277B\" => \"6\"\n\n# ➅  [DINGBAT CIRCLED SANS-SERIF DIGIT SIX]\n\"\\u2785\" => \"6\"\n\n# ➏  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SIX]\n\"\\u278F\" => \"6\"\n\n# ６  [FULLWIDTH DIGIT SIX]\n\"\\uFF16\" => \"6\"\n\n# ⒍  [DIGIT SIX FULL STOP]\n\"\\u248D\" => \"6.\"\n\n# ⑹  [PARENTHESIZED DIGIT SIX]\n\"\\u2479\" => \"(6)\"\n\n# ⁷  [SUPERSCRIPT SEVEN]\n\"\\u2077\" => \"7\"\n\n# ₇  [SUBSCRIPT SEVEN]\n\"\\u2087\" => \"7\"\n\n# ⑦  [CIRCLED DIGIT SEVEN]\n\"\\u2466\" => \"7\"\n\n# ⓻  [DOUBLE CIRCLED DIGIT SEVEN]\n\"\\u24FB\" => \"7\"\n\n# ❼  [DINGBAT NEGATIVE CIRCLED DIGIT SEVEN]\n\"\\u277C\" => \"7\"\n\n# ➆  [DINGBAT CIRCLED SANS-SERIF DIGIT SEVEN]\n\"\\u2786\" => \"7\"\n\n# ➐  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN]\n\"\\u2790\" => \"7\"\n\n# ７  [FULLWIDTH DIGIT SEVEN]\n\"\\uFF17\" => \"7\"\n\n# ⒎  [DIGIT SEVEN FULL STOP]\n\"\\u248E\" => \"7.\"\n\n# ⑺  [PARENTHESIZED DIGIT SEVEN]\n\"\\u247A\" => \"(7)\"\n\n# ⁸  [SUPERSCRIPT EIGHT]\n\"\\u2078\" => \"8\"\n\n# ₈  [SUBSCRIPT EIGHT]\n\"\\u2088\" => \"8\"\n\n# ⑧  [CIRCLED DIGIT EIGHT]\n\"\\u2467\" => \"8\"\n\n# ⓼  [DOUBLE CIRCLED DIGIT EIGHT]\n\"\\u24FC\" => \"8\"\n\n# ❽  [DINGBAT NEGATIVE CIRCLED DIGIT EIGHT]\n\"\\u277D\" => \"8\"\n\n# ➇  [DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT]\n\"\\u2787\" => \"8\"\n\n# ➑  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT EIGHT]\n\"\\u2791\" => \"8\"\n\n# ８  [FULLWIDTH DIGIT EIGHT]\n\"\\uFF18\" => \"8\"\n\n# ⒏  [DIGIT EIGHT FULL STOP]\n\"\\u248F\" => \"8.\"\n\n# ⑻  [PARENTHESIZED DIGIT EIGHT]\n\"\\u247B\" => \"(8)\"\n\n# ⁹  [SUPERSCRIPT NINE]\n\"\\u2079\" => \"9\"\n\n# ₉  [SUBSCRIPT NINE]\n\"\\u2089\" => \"9\"\n\n# ⑨  [CIRCLED DIGIT NINE]\n\"\\u2468\" => \"9\"\n\n# ⓽  [DOUBLE CIRCLED DIGIT NINE]\n\"\\u24FD\" => \"9\"\n\n# ❾  [DINGBAT NEGATIVE CIRCLED DIGIT NINE]\n\"\\u277E\" => \"9\"\n\n# ➈  [DINGBAT CIRCLED SANS-SERIF DIGIT NINE]\n\"\\u2788\" => \"9\"\n\n# ➒  [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT NINE]\n\"\\u2792\" => \"9\"\n\n# ９  [FULLWIDTH DIGIT NINE]\n\"\\uFF19\" => \"9\"\n\n# ⒐  [DIGIT NINE FULL STOP]\n\"\\u2490\" => \"9.\"\n\n# ⑼  [PARENTHESIZED DIGIT NINE]\n\"\\u247C\" => \"(9)\"\n\n# ⑩  [CIRCLED NUMBER TEN]\n\"\\u2469\" => \"10\"\n\n# ⓾  [DOUBLE CIRCLED NUMBER TEN]\n\"\\u24FE\" => \"10\"\n\n# ❿  [DINGBAT NEGATIVE CIRCLED NUMBER TEN]\n\"\\u277F\" => \"10\"\n\n# ➉  [DINGBAT CIRCLED SANS-SERIF NUMBER TEN]\n\"\\u2789\" => \"10\"\n\n# ➓  [DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN]\n\"\\u2793\" => \"10\"\n\n# ⒑  [NUMBER TEN FULL STOP]\n\"\\u2491\" => \"10.\"\n\n# ⑽  [PARENTHESIZED NUMBER TEN]\n\"\\u247D\" => \"(10)\"\n\n# ⑪  [CIRCLED NUMBER ELEVEN]\n\"\\u246A\" => \"11\"\n\n# ⓫  [NEGATIVE CIRCLED NUMBER ELEVEN]\n\"\\u24EB\" => \"11\"\n\n# ⒒  [NUMBER ELEVEN FULL STOP]\n\"\\u2492\" => \"11.\"\n\n# ⑾  [PARENTHESIZED NUMBER ELEVEN]\n\"\\u247E\" => \"(11)\"\n\n# ⑫  [CIRCLED NUMBER TWELVE]\n\"\\u246B\" => \"12\"\n\n# ⓬  [NEGATIVE CIRCLED NUMBER TWELVE]\n\"\\u24EC\" => \"12\"\n\n# ⒓  [NUMBER TWELVE FULL STOP]\n\"\\u2493\" => \"12.\"\n\n# ⑿  [PARENTHESIZED NUMBER TWELVE]\n\"\\u247F\" => \"(12)\"\n\n# ⑬  [CIRCLED NUMBER THIRTEEN]\n\"\\u246C\" => \"13\"\n\n# ⓭  [NEGATIVE CIRCLED NUMBER THIRTEEN]\n\"\\u24ED\" => \"13\"\n\n# ⒔  [NUMBER THIRTEEN FULL STOP]\n\"\\u2494\" => \"13.\"\n\n# ⒀  [PARENTHESIZED NUMBER THIRTEEN]\n\"\\u2480\" => \"(13)\"\n\n# ⑭  [CIRCLED NUMBER FOURTEEN]\n\"\\u246D\" => \"14\"\n\n# ⓮  [NEGATIVE CIRCLED NUMBER FOURTEEN]\n\"\\u24EE\" => \"14\"\n\n# ⒕  [NUMBER FOURTEEN FULL STOP]\n\"\\u2495\" => \"14.\"\n\n# ⒁  [PARENTHESIZED NUMBER FOURTEEN]\n\"\\u2481\" => \"(14)\"\n\n# ⑮  [CIRCLED NUMBER FIFTEEN]\n\"\\u246E\" => \"15\"\n\n# ⓯  [NEGATIVE CIRCLED NUMBER FIFTEEN]\n\"\\u24EF\" => \"15\"\n\n# ⒖  [NUMBER FIFTEEN FULL STOP]\n\"\\u2496\" => \"15.\"\n\n# ⒂  [PARENTHESIZED NUMBER FIFTEEN]\n\"\\u2482\" => \"(15)\"\n\n# ⑯  [CIRCLED NUMBER SIXTEEN]\n\"\\u246F\" => \"16\"\n\n# ⓰  [NEGATIVE CIRCLED NUMBER SIXTEEN]\n\"\\u24F0\" => \"16\"\n\n# ⒗  [NUMBER SIXTEEN FULL STOP]\n\"\\u2497\" => \"16.\"\n\n# ⒃  [PARENTHESIZED NUMBER SIXTEEN]\n\"\\u2483\" => \"(16)\"\n\n# ⑰  [CIRCLED NUMBER SEVENTEEN]\n\"\\u2470\" => \"17\"\n\n# ⓱  [NEGATIVE CIRCLED NUMBER SEVENTEEN]\n\"\\u24F1\" => \"17\"\n\n# ⒘  [NUMBER SEVENTEEN FULL STOP]\n\"\\u2498\" => \"17.\"\n\n# ⒄  [PARENTHESIZED NUMBER SEVENTEEN]\n\"\\u2484\" => \"(17)\"\n\n# ⑱  [CIRCLED NUMBER EIGHTEEN]\n\"\\u2471\" => \"18\"\n\n# ⓲  [NEGATIVE CIRCLED NUMBER EIGHTEEN]\n\"\\u24F2\" => \"18\"\n\n# ⒙  [NUMBER EIGHTEEN FULL STOP]\n\"\\u2499\" => \"18.\"\n\n# ⒅  [PARENTHESIZED NUMBER EIGHTEEN]\n\"\\u2485\" => \"(18)\"\n\n# ⑲  [CIRCLED NUMBER NINETEEN]\n\"\\u2472\" => \"19\"\n\n# ⓳  [NEGATIVE CIRCLED NUMBER NINETEEN]\n\"\\u24F3\" => \"19\"\n\n# ⒚  [NUMBER NINETEEN FULL STOP]\n\"\\u249A\" => \"19.\"\n\n# ⒆  [PARENTHESIZED NUMBER NINETEEN]\n\"\\u2486\" => \"(19)\"\n\n# ⑳  [CIRCLED NUMBER TWENTY]\n\"\\u2473\" => \"20\"\n\n# ⓴  [NEGATIVE CIRCLED NUMBER TWENTY]\n\"\\u24F4\" => \"20\"\n\n# ⒛  [NUMBER TWENTY FULL STOP]\n\"\\u249B\" => \"20.\"\n\n# ⒇  [PARENTHESIZED NUMBER TWENTY]\n\"\\u2487\" => \"(20)\"\n\n# «  [LEFT-POINTING DOUBLE ANGLE QUOTATION MARK]\n\"\\u00AB\" => \"\\\"\"\n\n# »  [RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK]\n\"\\u00BB\" => \"\\\"\"\n\n# “  [LEFT DOUBLE QUOTATION MARK]\n\"\\u201C\" => \"\\\"\"\n\n# ”  [RIGHT DOUBLE QUOTATION MARK]\n\"\\u201D\" => \"\\\"\"\n\n# „  [DOUBLE LOW-9 QUOTATION MARK]\n\"\\u201E\" => \"\\\"\"\n\n# ″  [DOUBLE PRIME]\n\"\\u2033\" => \"\\\"\"\n\n# ‶  [REVERSED DOUBLE PRIME]\n\"\\u2036\" => \"\\\"\"\n\n# ❝  [HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT]\n\"\\u275D\" => \"\\\"\"\n\n# ❞  [HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT]\n\"\\u275E\" => \"\\\"\"\n\n# ❮  [HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT]\n\"\\u276E\" => \"\\\"\"\n\n# ❯  [HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT]\n\"\\u276F\" => \"\\\"\"\n\n# ＂  [FULLWIDTH QUOTATION MARK]\n\"\\uFF02\" => \"\\\"\"\n\n# ‘  [LEFT SINGLE QUOTATION MARK]\n\"\\u2018\" => \"\\'\"\n\n# ’  [RIGHT SINGLE QUOTATION MARK]\n\"\\u2019\" => \"\\'\"\n\n# ‚  [SINGLE LOW-9 QUOTATION MARK]\n\"\\u201A\" => \"\\'\"\n\n# ‛  [SINGLE HIGH-REVERSED-9 QUOTATION MARK]\n\"\\u201B\" => \"\\'\"\n\n# ′  [PRIME]\n\"\\u2032\" => \"\\'\"\n\n# ‵  [REVERSED PRIME]\n\"\\u2035\" => \"\\'\"\n\n# ‹  [SINGLE LEFT-POINTING ANGLE QUOTATION MARK]\n\"\\u2039\" => \"\\'\"\n\n# ›  [SINGLE RIGHT-POINTING ANGLE QUOTATION MARK]\n\"\\u203A\" => \"\\'\"\n\n# ❛  [HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT]\n\"\\u275B\" => \"\\'\"\n\n# ❜  [HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT]\n\"\\u275C\" => \"\\'\"\n\n# ＇  [FULLWIDTH APOSTROPHE]\n\"\\uFF07\" => \"\\'\"\n\n# ‐  [HYPHEN]\n\"\\u2010\" => \"-\"\n\n# ‑  [NON-BREAKING HYPHEN]\n\"\\u2011\" => \"-\"\n\n# ‒  [FIGURE DASH]\n\"\\u2012\" => \"-\"\n\n# –  [EN DASH]\n\"\\u2013\" => \"-\"\n\n# —  [EM DASH]\n\"\\u2014\" => \"-\"\n\n# ⁻  [SUPERSCRIPT MINUS]\n\"\\u207B\" => \"-\"\n\n# ₋  [SUBSCRIPT MINUS]\n\"\\u208B\" => \"-\"\n\n# －  [FULLWIDTH HYPHEN-MINUS]\n\"\\uFF0D\" => \"-\"\n\n# ⁅  [LEFT SQUARE BRACKET WITH QUILL]\n\"\\u2045\" => \"[\"\n\n# ❲  [LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT]\n\"\\u2772\" => \"[\"\n\n# ［  [FULLWIDTH LEFT SQUARE BRACKET]\n\"\\uFF3B\" => \"[\"\n\n# ⁆  [RIGHT SQUARE BRACKET WITH QUILL]\n\"\\u2046\" => \"]\"\n\n# ❳  [LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT]\n\"\\u2773\" => \"]\"\n\n# ］  [FULLWIDTH RIGHT SQUARE BRACKET]\n\"\\uFF3D\" => \"]\"\n\n# ⁽  [SUPERSCRIPT LEFT PARENTHESIS]\n\"\\u207D\" => \"(\"\n\n# ₍  [SUBSCRIPT LEFT PARENTHESIS]\n\"\\u208D\" => \"(\"\n\n# ❨  [MEDIUM LEFT PARENTHESIS ORNAMENT]\n\"\\u2768\" => \"(\"\n\n# ❪  [MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT]\n\"\\u276A\" => \"(\"\n\n# （  [FULLWIDTH LEFT PARENTHESIS]\n\"\\uFF08\" => \"(\"\n\n# ⸨  [LEFT DOUBLE PARENTHESIS]\n\"\\u2E28\" => \"((\"\n\n# ⁾  [SUPERSCRIPT RIGHT PARENTHESIS]\n\"\\u207E\" => \")\"\n\n# ₎  [SUBSCRIPT RIGHT PARENTHESIS]\n\"\\u208E\" => \")\"\n\n# ❩  [MEDIUM RIGHT PARENTHESIS ORNAMENT]\n\"\\u2769\" => \")\"\n\n# ❫  [MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT]\n\"\\u276B\" => \")\"\n\n# ）  [FULLWIDTH RIGHT PARENTHESIS]\n\"\\uFF09\" => \")\"\n\n# ⸩  [RIGHT DOUBLE PARENTHESIS]\n\"\\u2E29\" => \"))\"\n\n# ❬  [MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u276C\" => \"<\"\n\n# ❰  [HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u2770\" => \"<\"\n\n# ＜  [FULLWIDTH LESS-THAN SIGN]\n\"\\uFF1C\" => \"<\"\n\n# ❭  [MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u276D\" => \">\"\n\n# ❱  [HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT]\n\"\\u2771\" => \">\"\n\n# ＞  [FULLWIDTH GREATER-THAN SIGN]\n\"\\uFF1E\" => \">\"\n\n# ❴  [MEDIUM LEFT CURLY BRACKET ORNAMENT]\n\"\\u2774\" => \"{\"\n\n# ｛  [FULLWIDTH LEFT CURLY BRACKET]\n\"\\uFF5B\" => \"{\"\n\n# ❵  [MEDIUM RIGHT CURLY BRACKET ORNAMENT]\n\"\\u2775\" => \"}\"\n\n# ｝  [FULLWIDTH RIGHT CURLY BRACKET]\n\"\\uFF5D\" => \"}\"\n\n# ⁺  [SUPERSCRIPT PLUS SIGN]\n\"\\u207A\" => \"+\"\n\n# ₊  [SUBSCRIPT PLUS SIGN]\n\"\\u208A\" => \"+\"\n\n# ＋  [FULLWIDTH PLUS SIGN]\n\"\\uFF0B\" => \"+\"\n\n# ⁼  [SUPERSCRIPT EQUALS SIGN]\n\"\\u207C\" => \"=\"\n\n# ₌  [SUBSCRIPT EQUALS SIGN]\n\"\\u208C\" => \"=\"\n\n# ＝  [FULLWIDTH EQUALS SIGN]\n\"\\uFF1D\" => \"=\"\n\n# ！  [FULLWIDTH EXCLAMATION MARK]\n\"\\uFF01\" => \"!\"\n\n# ‼  [DOUBLE EXCLAMATION MARK]\n\"\\u203C\" => \"!!\"\n\n# ⁉  [EXCLAMATION QUESTION MARK]\n\"\\u2049\" => \"!?\"\n\n# ＃  [FULLWIDTH NUMBER SIGN]\n\"\\uFF03\" => \"#\"\n\n# ＄  [FULLWIDTH DOLLAR SIGN]\n\"\\uFF04\" => \"$\"\n\n# ⁒  [COMMERCIAL MINUS SIGN]\n\"\\u2052\" => \"%\"\n\n# ％  [FULLWIDTH PERCENT SIGN]\n\"\\uFF05\" => \"%\"\n\n# ＆  [FULLWIDTH AMPERSAND]\n\"\\uFF06\" => \"&\"\n\n# ⁎  [LOW ASTERISK]\n\"\\u204E\" => \"*\"\n\n# ＊  [FULLWIDTH ASTERISK]\n\"\\uFF0A\" => \"*\"\n\n# ，  [FULLWIDTH COMMA]\n\"\\uFF0C\" => \",\"\n\n# ．  [FULLWIDTH FULL STOP]\n\"\\uFF0E\" => \".\"\n\n# ⁄  [FRACTION SLASH]\n\"\\u2044\" => \"/\"\n\n# ／  [FULLWIDTH SOLIDUS]\n\"\\uFF0F\" => \"/\"\n\n# ：  [FULLWIDTH COLON]\n\"\\uFF1A\" => \":\"\n\n# ⁏  [REVERSED SEMICOLON]\n\"\\u204F\" => \";\"\n\n# ；  [FULLWIDTH SEMICOLON]\n\"\\uFF1B\" => \";\"\n\n# ？  [FULLWIDTH QUESTION MARK]\n\"\\uFF1F\" => \"?\"\n\n# ⁇  [DOUBLE QUESTION MARK]\n\"\\u2047\" => \"??\"\n\n# ⁈  [QUESTION EXCLAMATION MARK]\n\"\\u2048\" => \"?!\"\n\n# ＠  [FULLWIDTH COMMERCIAL AT]\n\"\\uFF20\" => \"@\"\n\n# ＼  [FULLWIDTH REVERSE SOLIDUS]\n\"\\uFF3C\" => \"\\\\\"\n\n# ‸  [CARET]\n\"\\u2038\" => \"^\"\n\n# ＾  [FULLWIDTH CIRCUMFLEX ACCENT]\n\"\\uFF3E\" => \"^\"\n\n# ＿  [FULLWIDTH LOW LINE]\n\"\\uFF3F\" => \"_\"\n\n# ⁓  [SWUNG DASH]\n\"\\u2053\" => \"~\"\n\n# ～  [FULLWIDTH TILDE]\n\"\\uFF5E\" => \"~\"\n\n################################################################\n# Below is the Perl script used to generate the above mappings #\n# from ASCIIFoldingFilter.java:                                #\n################################################################\n#\n# #!/usr/bin/perl\n#\n# use warnings;\n# use strict;\n# \n# my @source_chars = ();\n# my @source_char_descriptions = ();\n# my $target = '';\n# \n# while (<>) {\n#   if (/case\\s+'(\\\\u[A-F0-9]+)':\\s*\\/\\/\\s*(.*)/i) {\n#     push @source_chars, $1;\n#\t  push @source_char_descriptions, $2;\n#\t  next;\n#   }\n#   if (/output\\[[^\\]]+\\]\\s*=\\s*'(\\\\'|\\\\\\\\|.)'/) {\n#     $target .= $1;\n#     next;\n#   }\n#   if (/break;/) {\n#     $target = \"\\\\\\\"\" if ($target eq '\"');\n#     for my $source_char_num (0..$#source_chars) {\n#\t    print \"# $source_char_descriptions[$source_char_num]\\n\";\n#\t    print \"\\\"$source_chars[$source_char_num]\\\" => \\\"$target\\\"\\n\\n\";\n#\t  }\n#\t  @source_chars = ();\n#\t  @source_char_descriptions = ();\n#\t  $target = '';\n#   }\n# }\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/mapping-ISOLatin1Accent.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Syntax:\n#   \"source\" => \"target\"\n#     \"source\".length() > 0 (source cannot be empty.)\n#     \"target\".length() >= 0 (target can be empty.)\n\n# example:\n#   \"À\" => \"A\"\n#   \"\\u00C0\" => \"A\"\n#   \"\\u00C0\" => \"\\u0041\"\n#   \"ß\" => \"ss\"\n#   \"\\t\" => \" \"\n#   \"\\n\" => \"\"\n\n# À => A\n\"\\u00C0\" => \"A\"\n\n# Á => A\n\"\\u00C1\" => \"A\"\n\n# Â => A\n\"\\u00C2\" => \"A\"\n\n# Ã => A\n\"\\u00C3\" => \"A\"\n\n# Ä => A\n\"\\u00C4\" => \"A\"\n\n# Å => A\n\"\\u00C5\" => \"A\"\n\n# Æ => AE\n\"\\u00C6\" => \"AE\"\n\n# Ç => C\n\"\\u00C7\" => \"C\"\n\n# È => E\n\"\\u00C8\" => \"E\"\n\n# É => E\n\"\\u00C9\" => \"E\"\n\n# Ê => E\n\"\\u00CA\" => \"E\"\n\n# Ë => E\n\"\\u00CB\" => \"E\"\n\n# Ì => I\n\"\\u00CC\" => \"I\"\n\n# Í => I\n\"\\u00CD\" => \"I\"\n\n# Î => I\n\"\\u00CE\" => \"I\"\n\n# Ï => I\n\"\\u00CF\" => \"I\"\n\n# Ĳ => IJ\n\"\\u0132\" => \"IJ\"\n\n# Ð => D\n\"\\u00D0\" => \"D\"\n\n# Ñ => N\n\"\\u00D1\" => \"N\"\n\n# Ò => O\n\"\\u00D2\" => \"O\"\n\n# Ó => O\n\"\\u00D3\" => \"O\"\n\n# Ô => O\n\"\\u00D4\" => \"O\"\n\n# Õ => O\n\"\\u00D5\" => \"O\"\n\n# Ö => O\n\"\\u00D6\" => \"O\"\n\n# Ø => O\n\"\\u00D8\" => \"O\"\n\n# Œ => OE\n\"\\u0152\" => \"OE\"\n\n# Þ\n\"\\u00DE\" => \"TH\"\n\n# Ù => U\n\"\\u00D9\" => \"U\"\n\n# Ú => U\n\"\\u00DA\" => \"U\"\n\n# Û => U\n\"\\u00DB\" => \"U\"\n\n# Ü => U\n\"\\u00DC\" => \"U\"\n\n# Ý => Y\n\"\\u00DD\" => \"Y\"\n\n# Ÿ => Y\n\"\\u0178\" => \"Y\"\n\n# à => a\n\"\\u00E0\" => \"a\"\n\n# á => a\n\"\\u00E1\" => \"a\"\n\n# â => a\n\"\\u00E2\" => \"a\"\n\n# ã => a\n\"\\u00E3\" => \"a\"\n\n# ä => a\n\"\\u00E4\" => \"a\"\n\n# å => a\n\"\\u00E5\" => \"a\"\n\n# æ => ae\n\"\\u00E6\" => \"ae\"\n\n# ç => c\n\"\\u00E7\" => \"c\"\n\n# è => e\n\"\\u00E8\" => \"e\"\n\n# é => e\n\"\\u00E9\" => \"e\"\n\n# ê => e\n\"\\u00EA\" => \"e\"\n\n# ë => e\n\"\\u00EB\" => \"e\"\n\n# ì => i\n\"\\u00EC\" => \"i\"\n\n# í => i\n\"\\u00ED\" => \"i\"\n\n# î => i\n\"\\u00EE\" => \"i\"\n\n# ï => i\n\"\\u00EF\" => \"i\"\n\n# ĳ => ij\n\"\\u0133\" => \"ij\"\n\n# ð => d\n\"\\u00F0\" => \"d\"\n\n# ñ => n\n\"\\u00F1\" => \"n\"\n\n# ò => o\n\"\\u00F2\" => \"o\"\n\n# ó => o\n\"\\u00F3\" => \"o\"\n\n# ô => o\n\"\\u00F4\" => \"o\"\n\n# õ => o\n\"\\u00F5\" => \"o\"\n\n# ö => o\n\"\\u00F6\" => \"o\"\n\n# ø => o\n\"\\u00F8\" => \"o\"\n\n# œ => oe\n\"\\u0153\" => \"oe\"\n\n# ß => ss\n\"\\u00DF\" => \"ss\"\n\n# þ => th\n\"\\u00FE\" => \"th\"\n\n# ù => u\n\"\\u00F9\" => \"u\"\n\n# ú => u\n\"\\u00FA\" => \"u\"\n\n# û => u\n\"\\u00FB\" => \"u\"\n\n# ü => u\n\"\\u00FC\" => \"u\"\n\n# ý => y\n\"\\u00FD\" => \"y\"\n\n# ÿ => y\n\"\\u00FF\" => \"y\"\n\n# ﬀ => ff\n\"\\uFB00\" => \"ff\"\n\n# ﬁ => fi\n\"\\uFB01\" => \"fi\"\n\n# ﬂ => fl\n\"\\uFB02\" => \"fl\"\n\n# ﬃ => ffi\n\"\\uFB03\" => \"ffi\"\n\n# ﬄ => ffl\n\"\\uFB04\" => \"ffl\"\n\n# ﬅ => ft\n\"\\uFB05\" => \"ft\"\n\n# ﬆ => st\n\"\\uFB06\" => \"st\"\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/protwords.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n# Use a protected word file to protect against the stemmer reducing two\n# unrelated words to the same base word.\n\n# Some non-words that normally won't be encountered,\n# just to test that they won't be stemmed.\ndontstems\nzwhacky\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/schema.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!--  \n This is the Solr schema file. This file should be named \"schema.xml\" and\n should be in the conf directory under the solr home\n (i.e. ./solr/conf/schema.xml by default) \n or located where the classloader for the Solr webapp can find it.\n\n This example schema is the recommended starting point for users.\n It should be kept correct and concise, usable out-of-the-box.\n\n For more information, on how to customize this file, please see\n http://wiki.apache.org/solr/SchemaXml\n\n PERFORMANCE NOTE: this schema includes many optional features and should not\n be used for benchmarking.  To improve performance one could\n  - set stored=\"false\" for all fields possible (esp large fields) when you\n    only need to search on the field but don't need to return the original\n    value.\n  - set indexed=\"false\" if you don't need to search on the field, but only\n    return the field as a result of searching on other indexed fields.\n  - remove all unneeded copyField statements\n  - for best index size and searching performance, set \"index\" to false\n    for all general text fields, use copyField to copy them to the\n    catchall \"text\" field, and use that for searching.\n  - For maximum indexing performance, use the StreamingUpdateSolrServer\n    java client.\n  - Remember to run the JVM in server mode, and use a higher logging level\n    that avoids logging every request\n-->\n\n<schema name=\"example\" version=\"1.5\">\n  <!-- attribute \"name\" is the name of this schema and is only used for display purposes.\n       version=\"x.y\" is Solr's version number for the schema syntax and \n       semantics.  It should not normally be changed by applications.\n\n       1.0: multiValued attribute did not exist, all fields are multiValued \n            by nature\n       1.1: multiValued attribute introduced, false by default \n       1.2: omitTermFreqAndPositions attribute introduced, true by default \n            except for text fields.\n       1.3: removed optional field compress feature\n       1.4: autoGeneratePhraseQueries attribute introduced to drive QueryParser\n            behavior when a single string produces multiple tokens.  Defaults \n            to off for version >= 1.4\n       1.5: omitNorms defaults to true for primitive field types \n            (int, float, boolean, string...)\n     -->\n\n \n  <types>\n    <!-- field type definitions. The \"name\" attribute is\n       just a label to be used by field definitions.  The \"class\"\n       attribute and any other attributes determine the real\n       behavior of the fieldType.\n         Class names starting with \"solr\" refer to java classes in a\n       standard package such as org.apache.solr.analysis\n    -->\n\n    <!-- The StrField type is not analyzed, but indexed/stored verbatim.\n       It supports doc values but in that case the field needs to be\n       single-valued and either required or have a default value.\n      -->\n    <fieldType name=\"string\" class=\"solr.StrField\" sortMissingLast=\"true\" />\n\n    <!-- boolean type: \"true\" or \"false\" -->\n    <fieldType name=\"boolean\" class=\"solr.BoolField\" sortMissingLast=\"true\"/>\n\n    <!-- sortMissingLast and sortMissingFirst attributes are optional attributes are\n         currently supported on types that are sorted internally as strings\n         and on numeric types.\n\t     This includes \"string\",\"boolean\", and, as of 3.5 (and 4.x),\n\t     int, float, long, date, double, including the \"Trie\" variants.\n       - If sortMissingLast=\"true\", then a sort on this field will cause documents\n         without the field to come after documents with the field,\n         regardless of the requested sort order (asc or desc).\n       - If sortMissingFirst=\"true\", then a sort on this field will cause documents\n         without the field to come before documents with the field,\n         regardless of the requested sort order.\n       - If sortMissingLast=\"false\" and sortMissingFirst=\"false\" (the default),\n         then default lucene sorting will be used which places docs without the\n         field first in an ascending sort and last in a descending sort.\n    -->    \n\n    <!--\n      Default numeric field types. For faster range queries, consider the tint/tfloat/tlong/tdouble types.\n\n      These fields support doc values, but they require the field to be\n      single-valued and either be required or have a default value.\n    -->\n    <fieldType name=\"int\" class=\"solr.TrieIntField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"float\" class=\"solr.TrieFloatField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"long\" class=\"solr.TrieLongField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"double\" class=\"solr.TrieDoubleField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n\n    <!--\n     Numeric field types that index each value at various levels of precision\n     to accelerate range queries when the number of values between the range\n     endpoints is large. See the javadoc for NumericRangeQuery for internal\n     implementation details.\n\n     Smaller precisionStep values (specified in bits) will lead to more tokens\n     indexed per value, slightly larger index size, and faster range queries.\n     A precisionStep of 0 disables indexing at different precision levels.\n    -->\n    <fieldType name=\"tint\" class=\"solr.TrieIntField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tfloat\" class=\"solr.TrieFloatField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tlong\" class=\"solr.TrieLongField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n    <fieldType name=\"tdouble\" class=\"solr.TrieDoubleField\" precisionStep=\"8\" positionIncrementGap=\"0\"/>\n\n    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and\n         is a more restricted form of the canonical representation of dateTime\n         http://www.w3.org/TR/xmlschema-2/#dateTime    \n         The trailing \"Z\" designates UTC time and is mandatory.\n         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z\n         All other components are mandatory.\n\n         Expressions can also be used to denote calculations that should be\n         performed relative to \"NOW\" to determine the value, ie...\n\n               NOW/HOUR\n                  ... Round to the start of the current hour\n               NOW-1DAY\n                  ... Exactly 1 day prior to now\n               NOW/DAY+6MONTHS+3DAYS\n                  ... 6 months and 3 days in the future from the start of\n                      the current day\n                      \n         Consult the DateField javadocs for more information.\n\n         Note: For faster range queries, consider the tdate type\n      -->\n    <fieldType name=\"date\" class=\"solr.TrieDateField\" precisionStep=\"0\" positionIncrementGap=\"0\"/>\n\n    <!-- A Trie based date field for faster date range queries and date faceting. -->\n    <fieldType name=\"tdate\" class=\"solr.TrieDateField\" precisionStep=\"6\" positionIncrementGap=\"0\"/>\n\n\n    <!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->\n    <fieldtype name=\"binary\" class=\"solr.BinaryField\"/>\n\n    <!--\n      Note:\n      These should only be used for compatibility with existing indexes (created with lucene or older Solr versions).\n      Use Trie based fields instead. As of Solr 3.5 and 4.x, Trie based fields support sortMissingFirst/Last\n      \n      Plain numeric field types that store and index the text\n      value verbatim (and hence don't correctly support range queries, since the\n      lexicographic ordering isn't equal to the numeric ordering)\n    -->\n    <fieldType name=\"pint\" class=\"solr.IntField\"/>\n    <fieldType name=\"plong\" class=\"solr.LongField\"/>\n    <fieldType name=\"pfloat\" class=\"solr.FloatField\"/>\n    <fieldType name=\"pdouble\" class=\"solr.DoubleField\"/>\n    <fieldType name=\"pdate\" class=\"solr.DateField\" sortMissingLast=\"true\"/>\n\n    <!-- The \"RandomSortField\" is not used to store or search any\n         data.  You can declare fields of this type it in your schema\n         to generate pseudo-random orderings of your docs for sorting \n         or function purposes.  The ordering is generated based on the field\n         name and the version of the index. As long as the index version\n         remains unchanged, and the same field name is reused,\n         the ordering of the docs will be consistent.  \n         If you want different psuedo-random orderings of documents,\n         for the same version of the index, use a dynamicField and\n         change the field name in the request.\n     -->\n    <fieldType name=\"random\" class=\"solr.RandomSortField\" indexed=\"true\" />\n\n    <!-- solr.TextField allows the specification of custom text analyzers\n         specified as a tokenizer and a list of token filters. Different\n         analyzers may be specified for indexing and querying.\n\n         The optional positionIncrementGap puts space between multiple fields of\n         this type on the same document, with the purpose of preventing false phrase\n         matching across fields.\n\n         For more info on customizing your analyzer chain, please see\n         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n     -->\n\n    <!-- One can also specify an existing Analyzer class that has a\n         default constructor via the class attribute on the analyzer element.\n         Example:\n    <fieldType name=\"text_greek\" class=\"solr.TextField\">\n      <analyzer class=\"org.apache.lucene.analysis.el.GreekAnalyzer\"/>\n    </fieldType>\n    -->\n\n    <!-- A text field that only splits on whitespace for exact matching of words -->\n    <fieldType name=\"text_ws\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A general text field that has reasonable, generic\n         cross-language defaults: it tokenizes with StandardTokenizer,\n\t removes stop words from case-insensitive \"stopwords.txt\"\n\t (empty by default), and down cases.  At query time only, it\n\t also applies synonyms. -->\n    <fieldType name=\"text_general\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" enablePositionIncrements=\"true\" />\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" enablePositionIncrements=\"true\" />\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field with defaults appropriate for English: it\n         tokenizes with StandardTokenizer, removes English stop words\n         (lang/stopwords_en.txt), down cases, protects words from protwords.txt, and\n         finally applies Porter's stemming.  The query time analyzer\n         also applies synonyms from synonyms.txt. -->\n    <fieldType name=\"text_en\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n          add enablePositionIncrements=true in both the index and query\n          analyzers to leave a 'gap' for more accurate phrase queries.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n\t<filter class=\"solr.EnglishPossessiveFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n\t<!-- Optionally you may want to use this less aggressive stemmer instead of PorterStemFilterFactory:\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n\t-->\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n\t<filter class=\"solr.EnglishPossessiveFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n\t<!-- Optionally you may want to use this less aggressive stemmer instead of PorterStemFilterFactory:\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n\t-->\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- A text field with defaults appropriate for English, plus\n\t aggressive word-splitting and autophrase features enabled.\n\t This field is just like text_en, except it adds\n\t WordDelimiterFilter to enable splitting and matching of\n\t words on case-change, alpha numeric boundaries, and\n\t non-alphanumeric chars.  This means certain compound word\n\t cases will work, for example query \"wi fi\" will match\n\t document \"WiFi\" or \"wi-fi\".\n        -->\n    <fieldType name=\"text_en_splitting\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"true\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!-- in this example, we will only use synonyms at query time\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"index_synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        -->\n        <!-- Case insensitive stop word removal.\n          add enablePositionIncrements=true in both the index and query\n          analyzers to leave a 'gap' for more accurate phrase queries.\n        -->\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\"\n                ignoreCase=\"true\"\n                words=\"lang/stopwords_en.txt\"\n                enablePositionIncrements=\"true\"\n                />\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.PorterStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,\n         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->\n    <fieldType name=\"text_en_splitting_tight\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"true\">\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"false\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_en.txt\"/>\n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"0\" generateNumberParts=\"0\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.KeywordMarkerFilterFactory\" protected=\"protwords.txt\"/>\n        <filter class=\"solr.EnglishMinimalStemFilterFactory\"/>\n        <!-- this filter can remove any duplicate tokens that appear at the same position - sometimes\n             possible with WordDelimiterFilter in conjuncton with stemming. -->\n        <filter class=\"solr.RemoveDuplicatesTokenFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Just like text_general except it reverses the characters of\n\t each token, to enable more efficient leading wildcard queries. -->\n    <fieldType name=\"text_general_rev\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer type=\"index\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" enablePositionIncrements=\"true\" />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ReversedWildcardFilterFactory\" withOriginal=\"true\"\n           maxPosAsterisk=\"3\" maxPosQuestion=\"2\" maxFractionAsterisk=\"0.33\"/>\n      </analyzer>\n      <analyzer type=\"query\">\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.SynonymFilterFactory\" synonyms=\"synonyms.txt\" ignoreCase=\"true\" expand=\"true\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"stopwords.txt\" enablePositionIncrements=\"true\" />\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- charFilter + WhitespaceTokenizer  -->\n    <!--\n    <fieldType name=\"text_char_norm\" class=\"solr.TextField\" positionIncrementGap=\"100\" >\n      <analyzer>\n        <charFilter class=\"solr.MappingCharFilterFactory\" mapping=\"mapping-ISOLatin1Accent.txt\"/>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n      </analyzer>\n    </fieldType>\n    -->\n\n    <!-- This is an example of using the KeywordTokenizer along\n         With various TokenFilterFactories to produce a sortable field\n         that does not include some properties of the source text\n      -->\n    <fieldType name=\"alphaOnlySort\" class=\"solr.TextField\" sortMissingLast=\"true\" omitNorms=\"true\">\n      <analyzer>\n        <!-- KeywordTokenizer does no actual tokenizing, so the entire\n             input string is preserved as a single token\n          -->\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <!-- The LowerCase TokenFilter does what you expect, which can be\n             when you want your sorting to be case insensitive\n          -->\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n        <!-- The TrimFilter removes any leading or trailing whitespace -->\n        <filter class=\"solr.TrimFilterFactory\" />\n        <!-- The PatternReplaceFilter gives you the flexibility to use\n             Java Regular expression to replace any sequence of characters\n             matching a pattern with an arbitrary replacement string, \n             which may include back references to portions of the original\n             string matched by the pattern.\n             \n             See the Java Regular Expression documentation for more\n             information on pattern and replacement string syntax.\n             \n             http://java.sun.com/j2se/1.6.0/docs/api/java/util/regex/package-summary.html\n          -->\n        <filter class=\"solr.PatternReplaceFilterFactory\"\n                pattern=\"([^a-z])\" replacement=\"\" replace=\"all\"\n        />\n      </analyzer>\n    </fieldType>\n    \n    <fieldtype name=\"phonetic\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.DoubleMetaphoneFilterFactory\" inject=\"false\"/>\n      </analyzer>\n    </fieldtype>\n\n    <fieldtype name=\"payloads\" stored=\"false\" indexed=\"true\" class=\"solr.TextField\" >\n      <analyzer>\n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>\n        <!--\n        The DelimitedPayloadTokenFilter can put payloads on tokens... for example,\n        a token of \"foo|1.4\"  would be indexed as \"foo\" with a payload of 1.4f\n        Attributes of the DelimitedPayloadTokenFilterFactory : \n         \"delimiter\" - a one character delimiter. Default is | (pipe)\n\t \"encoder\" - how to encode the following value into a playload\n\t    float -> org.apache.lucene.analysis.payloads.FloatEncoder,\n\t    integer -> o.a.l.a.p.IntegerEncoder\n\t    identity -> o.a.l.a.p.IdentityEncoder\n            Fully Qualified class name implementing PayloadEncoder, Encoder must have a no arg constructor.\n         -->\n        <filter class=\"solr.DelimitedPayloadTokenFilterFactory\" encoder=\"float\"/>\n      </analyzer>\n    </fieldtype>\n\n    <!-- lowercases the entire field value, keeping it as a single token.  -->\n    <fieldType name=\"lowercase\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.KeywordTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\" />\n      </analyzer>\n    </fieldType>\n\n    <!-- \n      Example of using PathHierarchyTokenizerFactory at index time, so\n      queries for paths match documents at that path, or in descendent paths\n    -->\n    <fieldType name=\"descendent_path\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n\t<tokenizer class=\"solr.PathHierarchyTokenizerFactory\" delimiter=\"/\" />\n      </analyzer>\n      <analyzer type=\"query\">\n\t<tokenizer class=\"solr.KeywordTokenizerFactory\" />\n      </analyzer>\n    </fieldType>\n    <!-- \n      Example of using PathHierarchyTokenizerFactory at query time, so\n      queries for paths match documents at that path, or in ancestor paths\n    -->\n    <fieldType name=\"ancestor_path\" class=\"solr.TextField\">\n      <analyzer type=\"index\">\n\t<tokenizer class=\"solr.KeywordTokenizerFactory\" />\n      </analyzer>\n      <analyzer type=\"query\">\n\t<tokenizer class=\"solr.PathHierarchyTokenizerFactory\" delimiter=\"/\" />\n      </analyzer>\n    </fieldType>\n\n    <!-- since fields of this type are by default not stored or indexed,\n         any data added to them will be ignored outright.  --> \n    <fieldtype name=\"ignored\" stored=\"false\" indexed=\"false\" multiValued=\"true\" class=\"solr.StrField\" />\n\n    <!-- This point type indexes the coordinates as separate fields (subFields)\n      If subFieldType is defined, it references a type, and a dynamic field\n      definition is created matching *___<typename>.  Alternately, if \n      subFieldSuffix is defined, that is used to create the subFields.\n      Example: if subFieldType=\"double\", then the coordinates would be\n        indexed in fields myloc_0___double,myloc_1___double.\n      Example: if subFieldSuffix=\"_d\" then the coordinates would be indexed\n        in fields myloc_0_d,myloc_1_d\n      The subFields are an implementation detail of the fieldType, and end\n      users normally should not need to know about them.\n     -->\n    <fieldType name=\"point\" class=\"solr.PointType\" dimension=\"2\" subFieldSuffix=\"_d\"/>\n\n    <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->\n    <fieldType name=\"location\" class=\"solr.LatLonType\" subFieldSuffix=\"_coordinate\"/>\n\n    <!-- An alternative geospatial field type new to Solr 4.  It supports multiValued and polygon shapes.\n      For more information about this and other Spatial fields new to Solr 4, see:\n      http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4\n    -->\n    <fieldType name=\"location_rpt\" class=\"solr.SpatialRecursivePrefixTreeFieldType\"\n        geo=\"true\" distErrPct=\"0.025\" maxDistErr=\"0.000009\" units=\"degrees\" />\n\n   <!-- Money/currency field type. See http://wiki.apache.org/solr/MoneyFieldType\n        Parameters:\n          defaultCurrency: Specifies the default currency if none specified. Defaults to \"USD\"\n          precisionStep:   Specifies the precisionStep for the TrieLong field used for the amount\n          providerClass:   Lets you plug in other exchange provider backend:\n                           solr.FileExchangeRateProvider is the default and takes one parameter:\n                             currencyConfig: name of an xml file holding exchange rates\n                           solr.OpenExchangeRatesOrgProvider uses rates from openexchangerates.org:\n                             ratesFileLocation: URL or path to rates JSON file (default latest.json on the web)\n                             refreshInterval: Number of minutes between each rates fetch (default: 1440, min: 60)\n   -->\n    <fieldType name=\"currency\" class=\"solr.CurrencyField\" precisionStep=\"8\" defaultCurrency=\"USD\" currencyConfig=\"currency.xml\" />\n             \n\n\n   <!-- some examples for different languages (generally ordered by ISO code) -->\n\n    <!-- Arabic -->\n    <fieldType name=\"text_ar\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- for any non-arabic -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ar.txt\" enablePositionIncrements=\"true\"/>\n        <!-- normalizes ﻯ to ﻱ, etc -->\n        <filter class=\"solr.ArabicNormalizationFilterFactory\"/>\n        <filter class=\"solr.ArabicStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Bulgarian -->\n    <fieldType name=\"text_bg\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/> \n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_bg.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.BulgarianStemFilterFactory\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- Catalan -->\n    <fieldType name=\"text_ca\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_ca.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ca.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Catalan\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- CJK bigram (see text_ja for a Japanese configuration using morphological analysis) -->\n    <fieldType name=\"text_cjk\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- normalize width before bigram, as e.g. half-width dakuten combine  -->\n        <filter class=\"solr.CJKWidthFilterFactory\"/>\n        <!-- for any non-CJK -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.CJKBigramFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n\n    <!-- Czech -->\n    <fieldType name=\"text_cz\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_cz.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.CzechStemFilterFactory\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- Danish -->\n    <fieldType name=\"text_da\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_da.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Danish\"/>       \n      </analyzer>\n    </fieldType>\n    \n    <!-- German -->\n    <fieldType name=\"text_de\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_de.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.GermanNormalizationFilterFactory\"/>\n        <filter class=\"solr.GermanLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.GermanMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"German2\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Greek -->\n    <fieldType name=\"text_el\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- greek specific lowercase for sigma -->\n        <filter class=\"solr.GreekLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"false\" words=\"lang/stopwords_el.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.GreekStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Spanish -->\n    <fieldType name=\"text_es\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_es.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SpanishLightStemFilterFactory\"/>\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Spanish\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Basque -->\n    <fieldType name=\"text_eu\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_eu.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Basque\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Persian -->\n    <fieldType name=\"text_fa\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer>\n        <!-- for ZWNJ -->\n        <charFilter class=\"solr.PersianCharFilterFactory\"/>\n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ArabicNormalizationFilterFactory\"/>\n        <filter class=\"solr.PersianNormalizationFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fa.txt\" enablePositionIncrements=\"true\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Finnish -->\n    <fieldType name=\"text_fi\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fi.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Finnish\"/>\n        <!-- less aggressive: <filter class=\"solr.FinnishLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- French -->\n    <fieldType name=\"text_fr\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_fr.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_fr.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.FrenchLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.FrenchMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"French\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Irish -->\n    <fieldType name=\"text_ga\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes d', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_ga.txt\"/>\n        <!-- removes n-, etc. position increments is intentionally false! -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/hyphenations_ga.txt\" enablePositionIncrements=\"false\"/>\n        <filter class=\"solr.IrishLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ga.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Irish\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Galician -->\n    <fieldType name=\"text_gl\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_gl.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.GalicianStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.GalicianMinimalStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Hindi -->\n    <fieldType name=\"text_hi\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <!-- normalizes unicode representation -->\n        <filter class=\"solr.IndicNormalizationFilterFactory\"/>\n        <!-- normalizes variation in spelling -->\n        <filter class=\"solr.HindiNormalizationFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hi.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.HindiStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Hungarian -->\n    <fieldType name=\"text_hu\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hu.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Hungarian\"/>\n        <!-- less aggressive: <filter class=\"solr.HungarianLightStemFilterFactory\"/> -->   \n      </analyzer>\n    </fieldType>\n    \n    <!-- Armenian -->\n    <fieldType name=\"text_hy\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_hy.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Armenian\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Indonesian -->\n    <fieldType name=\"text_id\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_id.txt\" enablePositionIncrements=\"true\"/>\n        <!-- for a less aggressive approach (only inflectional suffixes), set stemDerivational to false -->\n        <filter class=\"solr.IndonesianStemFilterFactory\" stemDerivational=\"true\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Italian -->\n    <fieldType name=\"text_it\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <!-- removes l', etc -->\n        <filter class=\"solr.ElisionFilterFactory\" ignoreCase=\"true\" articles=\"lang/contractions_it.txt\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_it.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.ItalianLightStemFilterFactory\"/>\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Italian\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Japanese using morphological analysis (see text_cjk for a configuration using bigramming)\n\n         NOTE: If you want to optimize search for precision, use default operator AND in your query\n         parser config with <solrQueryParser defaultOperator=\"AND\"/> further down in this file.  Use \n         OR if you would like to optimize for recall (default).\n    -->\n    <fieldType name=\"text_ja\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"false\">\n      <analyzer>\n      <!-- Kuromoji Japanese morphological analyzer/tokenizer (JapaneseTokenizer)\n\n           Kuromoji has a search mode (default) that does segmentation useful for search.  A heuristic\n           is used to segment compounds into its parts and the compound itself is kept as synonym.\n\n           Valid values for attribute mode are:\n              normal: regular segmentation\n              search: segmentation useful for search with synonyms compounds (default)\n            extended: same as search mode, but unigrams unknown words (experimental)\n\n           For some applications it might be good to use search mode for indexing and normal mode for\n           queries to reduce recall and prevent parts of compounds from being matched and highlighted.\n           Use <analyzer type=\"index\"> and <analyzer type=\"query\"> for this and mode normal in query.\n\n           Kuromoji also has a convenient user dictionary feature that allows overriding the statistical\n           model with your own entries for segmentation, part-of-speech tags and readings without a need\n           to specify weights.  Notice that user dictionaries have not been subject to extensive testing.\n\n           User dictionary attributes are:\n                     userDictionary: user dictionary filename\n             userDictionaryEncoding: user dictionary encoding (default is UTF-8)\n\n           See lang/userdict_ja.txt for a sample user dictionary file.\n\n           Punctuation characters are discarded by default.  Use discardPunctuation=\"false\" to keep them.\n\n           See http://wiki.apache.org/solr/JapaneseLanguageSupport for more on Japanese language support.\n        -->\n        <tokenizer class=\"solr.JapaneseTokenizerFactory\" mode=\"search\"/>\n        <!--<tokenizer class=\"solr.JapaneseTokenizerFactory\" mode=\"search\" userDictionary=\"lang/userdict_ja.txt\"/>-->\n        <!-- Reduces inflected verbs and adjectives to their base/dictionary forms (辞書形) -->\n        <filter class=\"solr.JapaneseBaseFormFilterFactory\"/>\n        <!-- Removes tokens with certain part-of-speech tags -->\n        <filter class=\"solr.JapanesePartOfSpeechStopFilterFactory\" tags=\"lang/stoptags_ja.txt\" enablePositionIncrements=\"true\"/>\n        <!-- Normalizes full-width romaji to half-width and half-width kana to full-width (Unicode NFKC subset) -->\n        <filter class=\"solr.CJKWidthFilterFactory\"/>\n        <!-- Removes common tokens typically not useful for search, but have a negative effect on ranking -->\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ja.txt\" enablePositionIncrements=\"true\" />\n        <!-- Normalizes common katakana spelling variations by removing any last long sound character (U+30FC) -->\n        <filter class=\"solr.JapaneseKatakanaStemFilterFactory\" minimumLength=\"4\"/>\n        <!-- Lower-cases romaji characters -->\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Latvian -->\n    <fieldType name=\"text_lv\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_lv.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.LatvianStemFilterFactory\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Dutch -->\n    <fieldType name=\"text_nl\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_nl.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.StemmerOverrideFilterFactory\" dictionary=\"lang/stemdict_nl.txt\" ignoreCase=\"false\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Dutch\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Norwegian -->\n    <fieldType name=\"text_no\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_no.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Norwegian\"/>\n        <!-- less aggressive: <filter class=\"solr.NorwegianLightStemFilterFactory\"/> -->\n        <!-- singular/plural: <filter class=\"solr.NorwegianMinimalStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Portuguese -->\n    <fieldType name=\"text_pt\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_pt.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.PortugueseLightStemFilterFactory\"/>\n        <!-- less aggressive: <filter class=\"solr.PortugueseMinimalStemFilterFactory\"/> -->\n        <!-- more aggressive: <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Portuguese\"/> -->\n        <!-- most aggressive: <filter class=\"solr.PortugueseStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Romanian -->\n    <fieldType name=\"text_ro\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ro.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Romanian\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Russian -->\n    <fieldType name=\"text_ru\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_ru.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Russian\"/>\n        <!-- less aggressive: <filter class=\"solr.RussianLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Swedish -->\n    <fieldType name=\"text_sv\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_sv.txt\" format=\"snowball\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Swedish\"/>\n        <!-- less aggressive: <filter class=\"solr.SwedishLightStemFilterFactory\"/> -->\n      </analyzer>\n    </fieldType>\n    \n    <!-- Thai -->\n    <fieldType name=\"text_th\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>\n        <filter class=\"solr.ThaiWordFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"true\" words=\"lang/stopwords_th.txt\" enablePositionIncrements=\"true\"/>\n      </analyzer>\n    </fieldType>\n    \n    <!-- Turkish -->\n    <fieldType name=\"text_tr\" class=\"solr.TextField\" positionIncrementGap=\"100\">\n      <analyzer> \n        <tokenizer class=\"solr.StandardTokenizerFactory\"/>\n        <filter class=\"solr.TurkishLowerCaseFilterFactory\"/>\n        <filter class=\"solr.StopFilterFactory\" ignoreCase=\"false\" words=\"lang/stopwords_tr.txt\" enablePositionIncrements=\"true\"/>\n        <filter class=\"solr.SnowballPorterFilterFactory\" language=\"Turkish\"/>\n      </analyzer>\n    </fieldType>\n\n\n    <fieldType name=\"extraction\" class=\"solr.TextField\" positionIncrementGap=\"100\" autoGeneratePhraseQueries=\"true\">\n      <analyzer type=\"index\">                                                   \n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>                    \n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"1\" catenateNumbers=\"1\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>                           \n        <filter class=\"edu.knowitall.solr.MorphaTokenFilterFactory\"/>\n      </analyzer>                                                               \n      <analyzer type=\"query\">                                                   \n        <tokenizer class=\"solr.WhitespaceTokenizerFactory\"/>                    \n        <filter class=\"solr.WordDelimiterFilterFactory\" generateWordParts=\"1\" generateNumberParts=\"1\" catenateWords=\"0\" catenateNumbers=\"0\" catenateAll=\"0\" splitOnCaseChange=\"1\"/>\n        <filter class=\"solr.LowerCaseFilterFactory\"/>                           \n        <filter class=\"edu.knowitall.solr.MorphaTokenFilterFactory\"/>                          \n      </analyzer>                                                               \n    </fieldType>\n\n </types>\n  \n  <!-- Similarity is the scoring routine for each document vs. a query.\n       A custom Similarity or SimilarityFactory may be specified here, but \n       the default is fine for most applications.  \n       For more info: http://wiki.apache.org/solr/SchemaXml#Similarity\n    -->\n  <!--\n     <similarity class=\"com.example.solr.CustomSimilarityFactory\">\n       <str name=\"paramkey\">param value</str>\n     </similarity>\n    -->\n\n  <fields>\n\n    <field name=\"id\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n    <field name=\"namespace\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n    <field name=\"arg1\" type=\"extraction\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n    <field name=\"rel\" type=\"extraction\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n    <field name=\"arg2\" type=\"extraction\" indexed=\"true\" stored=\"true\" required=\"true\"/>\n\n   <field name=\"arg1_exact\" type=\"lowercase\" indexed=\"true\" stored=\"true\"/>      \n   <field name=\"rel_exact\" type=\"lowercase\" indexed=\"true\" stored=\"true\"/>       \n   <field name=\"arg2_exact\" type=\"lowercase\" indexed=\"true\" stored=\"true\"/>      \n\n    <field name=\"_version_\" type=\"long\" indexed=\"true\"  stored=\"true\"/>\n\n    <dynamicField name=\"*_s\" type=\"string\" indexed=\"false\" stored=\"true\"/>\n    <dynamicField name=\"*_ss\" type=\"string\" indexed=\"false\" stored=\"true\" multiValued=\"true\"/>\n    <dynamicField name=\"*_i\" type=\"int\" indexed=\"false\" stored=\"true\"/>\n    <dynamicField name=\"*_is\" type=\"int\" indexed=\"false\" stored=\"true\" multiValued=\"true\"/>\n    <dynamicField name=\"*_f\" type=\"float\" indexed=\"false\" stored=\"true\"/>\n    <dynamicField name=\"*_fs\" type=\"float\" indexed=\"false\" stored=\"true\" multiValued=\"true\"/>\n    <dynamicField name=\"*_b\" type=\"boolean\" indexed=\"false\" stored=\"true\"/>\n    <dynamicField name=\"*_bs\" type=\"boolean\" indexed=\"false\" stored=\"true\" multiValued=\"true\"/>\n\n  </fields>\n  <uniqueKey>id</uniqueKey>\n  <defaultSearchField>rel</defaultSearchField>\n\n   <copyField source=\"arg1\" dest=\"arg1_exact\"/>\n   <copyField source=\"rel\" dest=\"rel_exact\"/>\n   <copyField source=\"arg2\" dest=\"arg2_exact\"/>\n\n</schema>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/scripts.conf",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nuser=\nsolr_hostname=localhost\nsolr_port=8983\nrsyncd_port=18983\ndata_dir=\nwebapp_name=solr\nmaster_host=\nmaster_data_dir=\nmaster_status_dir=\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/solrconfig.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n\n<!-- \n     For more details about configurations options that may appear in\n     this file, see http://wiki.apache.org/solr/SolrConfigXml. \n-->\n<config>\n  <!-- In all configuration below, a prefix of \"solr.\" for class names\n       is an alias that causes solr to search appropriate packages,\n       including org.apache.solr.(search|update|request|core|analysis)\n\n       You may also specify a fully qualified Java classname if you\n       have your own custom plugins.\n    -->\n\n  <!-- Controls what version of Lucene various components of Solr\n       adhere to.  Generally, you want to use the latest version to\n       get all bug fixes and improvements. It is highly recommended\n       that you fully re-index after changing this setting as it can\n       affect both how text is indexed and queried.\n  -->\n  <luceneMatchVersion>LUCENE_43</luceneMatchVersion>\n\n  <!-- <lib/> directives can be used to instruct Solr to load an Jars\n       identified and use them to resolve any \"plugins\" specified in\n       your solrconfig.xml or schema.xml (ie: Analyzers, Request\n       Handlers, etc...).\n\n       All directories and paths are resolved relative to the\n       instanceDir.\n\n       Please note that <lib/> directives are processed in the order\n       that they appear in your solrconfig.xml file, and are \"stacked\" \n       on top of each other when building a ClassLoader - so if you have \n       plugin jars with dependencies on other jars, the \"lower level\" \n       dependency jars should be loaded first.\n\n       If a \"./lib\" directory exists in your instanceDir, all files\n       found in it are included as if you had used the following\n       syntax...\n       \n              <lib dir=\"./lib\" />\n    -->\n\n  <!-- A 'dir' option by itself adds any files found in the directory \n       to the classpath, this is useful for including all jars in a\n       directory.\n\n       When a 'regex' is specified in addition to a 'dir', only the\n       files in that directory which completely match the regex\n       (anchored on both ends) will be included.\n\n       The examples below can be used to load some solr-contribs along \n       with their external dependencies.\n    -->\n  <lib dir=\"../../../contrib/extraction/lib\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-cell-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/clustering/lib/\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-clustering-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/langid/lib/\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-langid-\\d.*\\.jar\" />\n\n  <lib dir=\"../../../contrib/velocity/lib\" regex=\".*\\.jar\" />\n  <lib dir=\"../../../dist/\" regex=\"solr-velocity-\\d.*\\.jar\" />\n\n  <!-- If a 'dir' option (with or without a regex) is used and nothing\n       is found that matches, a warning will be logged.\n    -->\n  <lib dir=\"/non/existent/dir/yields/warning\" /> \n\n  <!-- an exact 'path' can be used instead of a 'dir' to specify a \n       specific jar file.  This will cause a serious error to be logged \n       if it can't be loaded.\n    -->\n  <!--\n     <lib path=\"../a-jar-that-does-not-exist.jar\" /> \n  -->\n  \n  <!-- Data Directory\n\n       Used to specify an alternate directory to hold all index data\n       other than the default ./data under the Solr home.  If\n       replication is in use, this should match the replication\n       configuration.\n    -->\n  <dataDir>${solr.data.dir:}</dataDir>\n\n\n  <!-- The DirectoryFactory to use for indexes.\n       \n       solr.StandardDirectoryFactory is filesystem\n       based and tries to pick the best implementation for the current\n       JVM and platform.  solr.NRTCachingDirectoryFactory, the default,\n       wraps solr.StandardDirectoryFactory and caches small files in memory\n       for better NRT performance.\n\n       One can force a particular implementation via solr.MMapDirectoryFactory,\n       solr.NIOFSDirectoryFactory, or solr.SimpleFSDirectoryFactory.\n\n       solr.RAMDirectoryFactory is memory based, not\n       persistent, and doesn't work with replication.\n    -->\n  <directoryFactory name=\"DirectoryFactory\" \n                    class=\"${solr.directoryFactory:solr.NRTCachingDirectoryFactory}\"/> \n\n  <!-- The CodecFactory for defining the format of the inverted index.\n       The default implementation is SchemaCodecFactory, which is the official Lucene\n       index format, but hooks into the schema to provide per-field customization of\n       the postings lists and per-document values in the fieldType element\n       (postingsFormat/docValuesFormat). Note that most of the alternative implementations\n       are experimental, so if you choose to customize the index format, its a good\n       idea to convert back to the official format e.g. via IndexWriter.addIndexes(IndexReader)\n       before upgrading to a newer version to avoid unnecessary reindexing.\n  -->\n  <codecFactory class=\"solr.SchemaCodecFactory\"/>\n\n  <!-- To enable dynamic schema REST APIs, use the following for <schemaFactory>:\n  \n       <schemaFactory class=\"ManagedIndexSchemaFactory\">\n         <bool name=\"mutable\">true</bool>\n         <str name=\"managedSchemaResourceName\">managed-schema</str>\n       </schemaFactory>\n       \n       When ManagedIndexSchemaFactory is specified, Solr will load the schema from\n       he resource named in 'managedSchemaResourceName', rather than from schema.xml.\n       Note that the managed schema resource CANNOT be named schema.xml.  If the managed\n       schema does not exist, Solr will create it after reading schema.xml, then rename\n       'schema.xml' to 'schema.xml.bak'. \n       \n       Do NOT hand edit the managed schema - external modifications will be ignored and\n       overwritten as a result of schema modification REST API calls.\n\n       When ManagedIndexSchemaFactory is specified with mutable = true, schema\n       modification REST API calls will be allowed; otherwise, error responses will be\n       sent back for these requests. \n  -->\n  <schemaFactory class=\"ClassicIndexSchemaFactory\"/>\n\n  <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n       Index Config - These settings control low-level behavior of indexing\n       Most example settings here show the default value, but are commented\n       out, to more easily see where customizations have been made.\n       \n       Note: This replaces <indexDefaults> and <mainIndex> from older versions\n       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->\n  <indexConfig>\n    <!-- maxFieldLength was removed in 4.0. To get similar behavior, include a \n         LimitTokenCountFilterFactory in your fieldType definition. E.g. \n     <filter class=\"solr.LimitTokenCountFilterFactory\" maxTokenCount=\"10000\"/>\n    -->\n    <!-- Maximum time to wait for a write lock (ms) for an IndexWriter. Default: 1000 -->\n    <!-- <writeLockTimeout>1000</writeLockTimeout>  -->\n\n    <!-- The maximum number of simultaneous threads that may be\n         indexing documents at once in IndexWriter; if more than this\n         many threads arrive they will wait for others to finish.\n         Default in Solr/Lucene is 8. -->\n    <!-- <maxIndexingThreads>8</maxIndexingThreads>  -->\n\n    <!-- Expert: Enabling compound file will use less files for the index, \n         using fewer file descriptors on the expense of performance decrease. \n         Default in Lucene is \"true\". Default in Solr is \"false\" (since 3.6) -->\n    <!-- <useCompoundFile>false</useCompoundFile> -->\n\n    <!-- ramBufferSizeMB sets the amount of RAM that may be used by Lucene\n         indexing for buffering added documents and deletions before they are\n         flushed to the Directory.\n         maxBufferedDocs sets a limit on the number of documents buffered\n         before flushing.\n         If both ramBufferSizeMB and maxBufferedDocs is set, then\n         Lucene will flush based on whichever limit is hit first.  -->\n    <!-- <ramBufferSizeMB>100</ramBufferSizeMB> -->\n    <!-- <maxBufferedDocs>1000</maxBufferedDocs> -->\n\n    <!-- Expert: Merge Policy \n         The Merge Policy in Lucene controls how merging of segments is done.\n         The default since Solr/Lucene 3.3 is TieredMergePolicy.\n         The default since Lucene 2.3 was the LogByteSizeMergePolicy,\n         Even older versions of Lucene used LogDocMergePolicy.\n      -->\n    <!--\n        <mergePolicy class=\"org.apache.lucene.index.TieredMergePolicy\">\n          <int name=\"maxMergeAtOnce\">10</int>\n          <int name=\"segmentsPerTier\">10</int>\n        </mergePolicy>\n      -->\n       \n    <!-- Merge Factor\n         The merge factor controls how many segments will get merged at a time.\n         For TieredMergePolicy, mergeFactor is a convenience parameter which\n         will set both MaxMergeAtOnce and SegmentsPerTier at once.\n         For LogByteSizeMergePolicy, mergeFactor decides how many new segments\n         will be allowed before they are merged into one.\n         Default is 10 for both merge policies.\n      -->\n    <!-- \n    <mergeFactor>10</mergeFactor>\n      -->\n\n    <!-- Expert: Merge Scheduler\n         The Merge Scheduler in Lucene controls how merges are\n         performed.  The ConcurrentMergeScheduler (Lucene 2.3 default)\n         can perform merges in the background using separate threads.\n         The SerialMergeScheduler (Lucene 2.2 default) does not.\n     -->\n    <!-- \n       <mergeScheduler class=\"org.apache.lucene.index.ConcurrentMergeScheduler\"/>\n       -->\n\n    <!-- LockFactory \n\n         This option specifies which Lucene LockFactory implementation\n         to use.\n      \n         single = SingleInstanceLockFactory - suggested for a\n                  read-only index or when there is no possibility of\n                  another process trying to modify the index.\n         native = NativeFSLockFactory - uses OS native file locking.\n                  Do not use when multiple solr webapps in the same\n                  JVM are attempting to share a single index.\n         simple = SimpleFSLockFactory  - uses a plain file for locking\n\n         Defaults: 'native' is default for Solr3.6 and later, otherwise\n                   'simple' is the default\n\n         More details on the nuances of each LockFactory...\n         http://wiki.apache.org/lucene-java/AvailableLockFactories\n    -->\n    <lockType>${solr.lock.type:native}</lockType>\n\n    <!-- Unlock On Startup\n\n         If true, unlock any held write or commit locks on startup.\n         This defeats the locking mechanism that allows multiple\n         processes to safely access a lucene index, and should be used\n         with care. Default is \"false\".\n\n         This is not needed if lock type is 'single'\n     -->\n    <!--\n    <unlockOnStartup>false</unlockOnStartup>\n      -->\n    \n    <!-- Expert: Controls how often Lucene loads terms into memory\n         Default is 128 and is likely good for most everyone.\n      -->\n    <!-- <termIndexInterval>128</termIndexInterval> -->\n\n    <!-- If true, IndexReaders will be reopened (often more efficient)\n         instead of closed and then opened. Default: true\n      -->\n    <!-- \n    <reopenReaders>true</reopenReaders>\n      -->\n\n    <!-- Commit Deletion Policy\n         Custom deletion policies can be specified here. The class must\n         implement org.apache.lucene.index.IndexDeletionPolicy.\n\n         The default Solr IndexDeletionPolicy implementation supports\n         deleting index commit points on number of commits, age of\n         commit point and optimized status.\n         \n         The latest commit point should always be preserved regardless\n         of the criteria.\n    -->\n    <!-- \n    <deletionPolicy class=\"solr.SolrDeletionPolicy\">\n    -->\n      <!-- The number of commit points to be kept -->\n      <!-- <str name=\"maxCommitsToKeep\">1</str> -->\n      <!-- The number of optimized commit points to be kept -->\n      <!-- <str name=\"maxOptimizedCommitsToKeep\">0</str> -->\n      <!--\n          Delete all commit points once they have reached the given age.\n          Supports DateMathParser syntax e.g.\n        -->\n      <!--\n         <str name=\"maxCommitAge\">30MINUTES</str>\n         <str name=\"maxCommitAge\">1DAY</str>\n      -->\n    <!-- \n    </deletionPolicy>\n    -->\n\n    <!-- Lucene Infostream\n       \n         To aid in advanced debugging, Lucene provides an \"InfoStream\"\n         of detailed information when indexing.\n\n         Setting The value to true will instruct the underlying Lucene\n         IndexWriter to write its debugging info the specified file\n      -->\n     <!-- <infoStream file=\"INFOSTREAM.txt\">false</infoStream> --> \n  </indexConfig>\n\n\n  <!-- JMX\n       \n       This example enables JMX if and only if an existing MBeanServer\n       is found, use this if you want to configure JMX through JVM\n       parameters. Remove this to disable exposing Solr configuration\n       and statistics to JMX.\n\n       For more details see http://wiki.apache.org/solr/SolrJmx\n    -->\n  <jmx />\n  <!-- If you want to connect to a particular server, specify the\n       agentId \n    -->\n  <!-- <jmx agentId=\"myAgent\" /> -->\n  <!-- If you want to start a new MBeanServer, specify the serviceUrl -->\n  <!-- <jmx serviceUrl=\"service:jmx:rmi:///jndi/rmi://localhost:9999/solr\"/>\n    -->\n\n  <!-- The default high-performance update handler -->\n  <updateHandler class=\"solr.DirectUpdateHandler2\">\n\n    <!-- Enables a transaction log, used for real-time get, durability, and\n         and solr cloud replica recovery.  The log can grow as big as\n         uncommitted changes to the index, so use of a hard autoCommit\n         is recommended (see below).\n         \"dir\" - the target directory for transaction logs, defaults to the\n                solr data directory.  --> \n    <updateLog>\n      <str name=\"dir\">${solr.ulog.dir:}</str>\n    </updateLog>\n \n    <!-- AutoCommit\n\n         Perform a hard commit automatically under certain conditions.\n         Instead of enabling autoCommit, consider using \"commitWithin\"\n         when adding documents. \n\n         http://wiki.apache.org/solr/UpdateXmlMessages\n\n         maxDocs - Maximum number of documents to add since the last\n                   commit before automatically triggering a new commit.\n\n         maxTime - Maximum amount of time in ms that is allowed to pass\n                   since a document was added before automatically\n                   triggering a new commit. \n         openSearcher - if false, the commit causes recent index changes\n           to be flushed to stable storage, but does not cause a new\n           searcher to be opened to make those changes visible.\n\n         If the updateLog is enabled, then it's highly recommended to\n         have some sort of hard autoCommit to limit the log size.\n      -->\n     <autoCommit> \n       <maxTime>15000</maxTime> \n       <openSearcher>false</openSearcher> \n     </autoCommit>\n\n    <!-- softAutoCommit is like autoCommit except it causes a\n         'soft' commit which only ensures that changes are visible\n         but does not ensure that data is synced to disk.  This is\n         faster and more near-realtime friendly than a hard commit.\n      -->\n     <!--\n       <autoSoftCommit> \n         <maxTime>1000</maxTime> \n       </autoSoftCommit>\n      -->\n\n    <!-- Update Related Event Listeners\n         \n         Various IndexWriter related events can trigger Listeners to\n         take actions.\n\n         postCommit - fired after every commit or optimize command\n         postOptimize - fired after every optimize command\n      -->\n    <!-- The RunExecutableListener executes an external command from a\n         hook such as postCommit or postOptimize.\n         \n         exe - the name of the executable to run\n         dir - dir to use as the current working directory. (default=\".\")\n         wait - the calling thread waits until the executable returns. \n                (default=\"true\")\n         args - the arguments to pass to the program.  (default is none)\n         env - environment variables to set.  (default is none)\n      -->\n    <!-- This example shows how RunExecutableListener could be used\n         with the script based replication...\n         http://wiki.apache.org/solr/CollectionDistribution\n      -->\n    <!--\n       <listener event=\"postCommit\" class=\"solr.RunExecutableListener\">\n         <str name=\"exe\">solr/bin/snapshooter</str>\n         <str name=\"dir\">.</str>\n         <bool name=\"wait\">true</bool>\n         <arr name=\"args\"> <str>arg1</str> <str>arg2</str> </arr>\n         <arr name=\"env\"> <str>MYVAR=val1</str> </arr>\n       </listener>\n      -->\n\n  </updateHandler>\n  \n  <!-- IndexReaderFactory\n\n       Use the following format to specify a custom IndexReaderFactory,\n       which allows for alternate IndexReader implementations.\n\n       ** Experimental Feature **\n\n       Please note - Using a custom IndexReaderFactory may prevent\n       certain other features from working. The API to\n       IndexReaderFactory may change without warning or may even be\n       removed from future releases if the problems cannot be\n       resolved.\n\n\n       ** Features that may not work with custom IndexReaderFactory **\n\n       The ReplicationHandler assumes a disk-resident index. Using a\n       custom IndexReader implementation may cause incompatibility\n       with ReplicationHandler and may cause replication to not work\n       correctly. See SOLR-1366 for details.\n\n    -->\n  <!--\n  <indexReaderFactory name=\"IndexReaderFactory\" class=\"package.class\">\n    <str name=\"someArg\">Some Value</str>\n  </indexReaderFactory >\n  -->\n  <!-- By explicitly declaring the Factory, the termIndexDivisor can\n       be specified.\n    -->\n  <!--\n     <indexReaderFactory name=\"IndexReaderFactory\" \n                         class=\"solr.StandardIndexReaderFactory\">\n       <int name=\"setTermIndexDivisor\">12</int>\n     </indexReaderFactory >\n    -->\n\n  <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n       Query section - these settings control query time things like caches\n       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->\n  <query>\n    <!-- Max Boolean Clauses\n\n         Maximum number of clauses in each BooleanQuery,  an exception\n         is thrown if exceeded.\n\n         ** WARNING **\n         \n         This option actually modifies a global Lucene property that\n         will affect all SolrCores.  If multiple solrconfig.xml files\n         disagree on this property, the value at any given moment will\n         be based on the last SolrCore to be initialized.\n         \n      -->\n    <maxBooleanClauses>1024</maxBooleanClauses>\n\n\n    <!-- Solr Internal Query Caches\n\n         There are two implementations of cache available for Solr,\n         LRUCache, based on a synchronized LinkedHashMap, and\n         FastLRUCache, based on a ConcurrentHashMap.  \n\n         FastLRUCache has faster gets and slower puts in single\n         threaded operation and thus is generally faster than LRUCache\n         when the hit ratio of the cache is high (> 75%), and may be\n         faster under other scenarios on multi-cpu systems.\n    -->\n\n    <!-- Filter Cache\n\n         Cache used by SolrIndexSearcher for filters (DocSets),\n         unordered sets of *all* documents that match a query.  When a\n         new searcher is opened, its caches may be prepopulated or\n         \"autowarmed\" using data from caches in the old searcher.\n         autowarmCount is the number of items to prepopulate.  For\n         LRUCache, the autowarmed items will be the most recently\n         accessed items.\n\n         Parameters:\n           class - the SolrCache implementation LRUCache or\n               (LRUCache or FastLRUCache)\n           size - the maximum number of entries in the cache\n           initialSize - the initial capacity (number of entries) of\n               the cache.  (see java.util.HashMap)\n           autowarmCount - the number of entries to prepopulate from\n               and old cache.  \n      -->\n    <filterCache class=\"solr.FastLRUCache\"\n                 size=\"512\"\n                 initialSize=\"512\"\n                 autowarmCount=\"0\"/>\n\n    <!-- Query Result Cache\n         \n         Caches results of searches - ordered lists of document ids\n         (DocList) based on a query, a sort, and the range of documents requested.  \n      -->\n    <queryResultCache class=\"solr.LRUCache\"\n                     size=\"512\"\n                     initialSize=\"512\"\n                     autowarmCount=\"0\"/>\n   \n    <!-- Document Cache\n\n         Caches Lucene Document objects (the stored fields for each\n         document).  Since Lucene internal document ids are transient,\n         this cache will not be autowarmed.  \n      -->\n    <documentCache class=\"solr.LRUCache\"\n                   size=\"512\"\n                   initialSize=\"512\"\n                   autowarmCount=\"0\"/>\n    \n    <!-- Field Value Cache\n         \n         Cache used to hold field values that are quickly accessible\n         by document id.  The fieldValueCache is created by default\n         even if not configured here.\n      -->\n    <!--\n       <fieldValueCache class=\"solr.FastLRUCache\"\n                        size=\"512\"\n                        autowarmCount=\"128\"\n                        showItems=\"32\" />\n      -->\n\n    <!-- Custom Cache\n\n         Example of a generic cache.  These caches may be accessed by\n         name through SolrIndexSearcher.getCache(),cacheLookup(), and\n         cacheInsert().  The purpose is to enable easy caching of\n         user/application level data.  The regenerator argument should\n         be specified as an implementation of solr.CacheRegenerator \n         if autowarming is desired.  \n      -->\n    <!--\n       <cache name=\"myUserCache\"\n              class=\"solr.LRUCache\"\n              size=\"4096\"\n              initialSize=\"1024\"\n              autowarmCount=\"1024\"\n              regenerator=\"com.mycompany.MyRegenerator\"\n              />\n      -->\n\n\n    <!-- Lazy Field Loading\n\n         If true, stored fields that are not requested will be loaded\n         lazily.  This can result in a significant speed improvement\n         if the usual case is to not load all stored fields,\n         especially if the skipped fields are large compressed text\n         fields.\n    -->\n    <enableLazyFieldLoading>true</enableLazyFieldLoading>\n\n   <!-- Use Filter For Sorted Query\n\n        A possible optimization that attempts to use a filter to\n        satisfy a search.  If the requested sort does not include\n        score, then the filterCache will be checked for a filter\n        matching the query. If found, the filter will be used as the\n        source of document ids, and then the sort will be applied to\n        that.\n\n        For most situations, this will not be useful unless you\n        frequently get the same search repeatedly with different sort\n        options, and none of them ever use \"score\"\n     -->\n   <!--\n      <useFilterForSortedQuery>true</useFilterForSortedQuery>\n     -->\n\n   <!-- Result Window Size\n\n        An optimization for use with the queryResultCache.  When a search\n        is requested, a superset of the requested number of document ids\n        are collected.  For example, if a search for a particular query\n        requests matching documents 10 through 19, and queryWindowSize is 50,\n        then documents 0 through 49 will be collected and cached.  Any further\n        requests in that range can be satisfied via the cache.  \n     -->\n   <queryResultWindowSize>20</queryResultWindowSize>\n\n   <!-- Maximum number of documents to cache for any entry in the\n        queryResultCache. \n     -->\n   <queryResultMaxDocsCached>200</queryResultMaxDocsCached>\n\n   <!-- Query Related Event Listeners\n\n        Various IndexSearcher related events can trigger Listeners to\n        take actions.\n\n        newSearcher - fired whenever a new searcher is being prepared\n        and there is a current searcher handling requests (aka\n        registered).  It can be used to prime certain caches to\n        prevent long request times for certain requests.\n\n        firstSearcher - fired whenever a new searcher is being\n        prepared but there is no current registered searcher to handle\n        requests or to gain autowarming data from.\n\n        \n     -->\n    <!-- QuerySenderListener takes an array of NamedList and executes a\n         local query request for each NamedList in sequence. \n      -->\n    <listener event=\"newSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <!--\n           <lst><str name=\"q\">solr</str><str name=\"sort\">price asc</str></lst>\n           <lst><str name=\"q\">rocks</str><str name=\"sort\">weight asc</str></lst>\n          -->\n      </arr>\n    </listener>\n    <listener event=\"firstSearcher\" class=\"solr.QuerySenderListener\">\n      <arr name=\"queries\">\n        <lst>\n          <str name=\"q\">static firstSearcher warming in solrconfig.xml</str>\n        </lst>\n      </arr>\n    </listener>\n\n    <!-- Use Cold Searcher\n\n         If a search request comes in and there is no current\n         registered searcher, then immediately register the still\n         warming searcher and use it.  If \"false\" then all requests\n         will block until the first searcher is done warming.\n      -->\n    <useColdSearcher>false</useColdSearcher>\n\n    <!-- Max Warming Searchers\n         \n         Maximum number of searchers that may be warming in the\n         background concurrently.  An error is returned if this limit\n         is exceeded.\n\n         Recommend values of 1-2 for read-only slaves, higher for\n         masters w/o cache warming.\n      -->\n    <maxWarmingSearchers>2</maxWarmingSearchers>\n\n  </query>\n\n\n  <!-- Request Dispatcher\n\n       This section contains instructions for how the SolrDispatchFilter\n       should behave when processing requests for this SolrCore.\n\n       handleSelect is a legacy option that affects the behavior of requests\n       such as /select?qt=XXX\n\n       handleSelect=\"true\" will cause the SolrDispatchFilter to process\n       the request and dispatch the query to a handler specified by the \n       \"qt\" param, assuming \"/select\" isn't already registered.\n\n       handleSelect=\"false\" will cause the SolrDispatchFilter to\n       ignore \"/select\" requests, resulting in a 404 unless a handler\n       is explicitly registered with the name \"/select\"\n\n       handleSelect=\"true\" is not recommended for new users, but is the default\n       for backwards compatibility\n    -->\n  <requestDispatcher handleSelect=\"false\" >\n    <!-- Request Parsing\n\n         These settings indicate how Solr Requests may be parsed, and\n         what restrictions may be placed on the ContentStreams from\n         those requests\n\n         enableRemoteStreaming - enables use of the stream.file\n         and stream.url parameters for specifying remote streams.\n\n         multipartUploadLimitInKB - specifies the max size (in KiB) of\n         Multipart File Uploads that Solr will allow in a Request.\n         \n         formdataUploadLimitInKB - specifies the max size (in KiB) of\n         form data (application/x-www-form-urlencoded) sent via\n         POST. You can use POST to pass request parameters not\n         fitting into the URL.\n         \n         *** WARNING ***\n         The settings below authorize Solr to fetch remote files, You\n         should make sure your system has some authentication before\n         using enableRemoteStreaming=\"true\"\n\n      --> \n    <requestParsers enableRemoteStreaming=\"true\" \n                    multipartUploadLimitInKB=\"2048000\"\n                    formdataUploadLimitInKB=\"2048\"/>\n\n    <!-- HTTP Caching\n\n         Set HTTP caching related parameters (for proxy caches and clients).\n\n         The options below instruct Solr not to output any HTTP Caching\n         related headers\n      -->\n    <httpCaching never304=\"true\" />\n    <!-- If you include a <cacheControl> directive, it will be used to\n         generate a Cache-Control header (as well as an Expires header\n         if the value contains \"max-age=\")\n         \n         By default, no Cache-Control header is generated.\n         \n         You can use the <cacheControl> option even if you have set\n         never304=\"true\"\n      -->\n    <!--\n       <httpCaching never304=\"true\" >\n         <cacheControl>max-age=30, public</cacheControl> \n       </httpCaching>\n      -->\n    <!-- To enable Solr to respond with automatically generated HTTP\n         Caching headers, and to response to Cache Validation requests\n         correctly, set the value of never304=\"false\"\n         \n         This will cause Solr to generate Last-Modified and ETag\n         headers based on the properties of the Index.\n\n         The following options can also be specified to affect the\n         values of these headers...\n\n         lastModFrom - the default value is \"openTime\" which means the\n         Last-Modified value (and validation against If-Modified-Since\n         requests) will all be relative to when the current Searcher\n         was opened.  You can change it to lastModFrom=\"dirLastMod\" if\n         you want the value to exactly correspond to when the physical\n         index was last modified.\n\n         etagSeed=\"...\" is an option you can change to force the ETag\n         header (and validation against If-None-Match requests) to be\n         different even if the index has not changed (ie: when making\n         significant changes to your config file)\n\n         (lastModifiedFrom and etagSeed are both ignored if you use\n         the never304=\"true\" option)\n      -->\n    <!--\n       <httpCaching lastModifiedFrom=\"openTime\"\n                    etagSeed=\"Solr\">\n         <cacheControl>max-age=30, public</cacheControl> \n       </httpCaching>\n      -->\n  </requestDispatcher>\n\n  <!-- Request Handlers \n\n       http://wiki.apache.org/solr/SolrRequestHandler\n\n       Incoming queries will be dispatched to a specific handler by name\n       based on the path specified in the request.\n\n       Legacy behavior: If the request path uses \"/select\" but no Request\n       Handler has that name, and if handleSelect=\"true\" has been specified in\n       the requestDispatcher, then the Request Handler is dispatched based on\n       the qt parameter.  Handlers without a leading '/' are accessed this way\n       like so: http://host/app/[core/]select?qt=name  If no qt is\n       given, then the requestHandler that declares default=\"true\" will be\n       used or the one named \"standard\".\n\n       If a Request Handler is declared with startup=\"lazy\", then it will\n       not be initialized until the first request that uses it.\n\n    -->\n  <!-- SearchHandler\n\n       http://wiki.apache.org/solr/SearchHandler\n\n       For processing Search Queries, the primary Request Handler\n       provided with Solr is \"SearchHandler\" It delegates to a sequent\n       of SearchComponents (see below) and supports distributed\n       queries across multiple shards\n    -->\n  <requestHandler name=\"/select\" class=\"solr.SearchHandler\">\n    <!-- default values for query parameters can be specified, these\n         will be overridden by parameters in the request\n      -->\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <int name=\"rows\">10</int>\n       <str name=\"df\">rel</str>\n     </lst>\n    <!-- In addition to defaults, \"appends\" params can be specified\n         to identify values which should be appended to the list of\n         multi-val params from the query (or the existing \"defaults\").\n      -->\n    <!-- In this example, the param \"fq=instock:true\" would be appended to\n         any query time fq params the user may specify, as a mechanism for\n         partitioning the index, independent of any user selected filtering\n         that may also be desired (perhaps as a result of faceted searching).\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"appends\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <!--\n       <lst name=\"appends\">\n         <str name=\"fq\">inStock:true</str>\n       </lst>\n      -->\n    <!-- \"invariants\" are a way of letting the Solr maintainer lock down\n         the options available to Solr clients.  Any params values\n         specified here are used regardless of what values may be specified\n         in either the query, the \"defaults\", or the \"appends\" params.\n\n         In this example, the facet.field and facet.query params would\n         be fixed, limiting the facets clients can use.  Faceting is\n         not turned on by default - but if the client does specify\n         facet=true in the request, these are the only facets they\n         will be able to see counts for; regardless of what other\n         facet.field or facet.query params they may specify.\n\n         NOTE: there is *absolutely* nothing a client can do to prevent these\n         \"invariants\" values from being used, so don't use this mechanism\n         unless you are sure you always want it.\n      -->\n    <!--\n       <lst name=\"invariants\">\n         <str name=\"facet.field\">cat</str>\n         <str name=\"facet.field\">manu_exact</str>\n         <str name=\"facet.query\">price:[* TO 500]</str>\n         <str name=\"facet.query\">price:[500 TO *]</str>\n       </lst>\n      -->\n    <!-- If the default list of SearchComponents is not desired, that\n         list can either be overridden completely, or components can be\n         prepended or appended to the default list.  (see below)\n      -->\n    <!--\n       <arr name=\"components\">\n         <str>nameOfCustomComponent1</str>\n         <str>nameOfCustomComponent2</str>\n       </arr>\n      -->\n    </requestHandler>\n\n  <!-- A request handler that returns indented JSON by default -->\n  <requestHandler name=\"/query\" class=\"solr.SearchHandler\">\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n       <str name=\"wt\">json</str>\n       <str name=\"indent\">true</str>\n       <str name=\"df\">rel</str>\n     </lst>\n  </requestHandler>\n\n\n  <!-- realtime get handler, guaranteed to return the latest stored fields of\n       any document, without the need to commit or open a new searcher.  The\n       current implementation relies on the updateLog feature being enabled. -->\n  <requestHandler name=\"/get\" class=\"solr.RealTimeGetHandler\">\n     <lst name=\"defaults\">\n       <str name=\"omitHeader\">true</str>\n       <str name=\"wt\">json</str>\n       <str name=\"indent\">true</str>\n     </lst>\n  </requestHandler>\n\n \n  <!-- A Robust Example \n       \n       This example SearchHandler declaration shows off usage of the\n       SearchHandler with many defaults declared\n\n       Note that multiple instances of the same Request Handler\n       (SearchHandler) can be registered multiple times with different\n       names (and different init parameters)\n    -->\n  <requestHandler name=\"/browse\" class=\"solr.SearchHandler\">\n     <lst name=\"defaults\">\n       <str name=\"echoParams\">explicit</str>\n\n       <!-- VelocityResponseWriter settings -->\n       <str name=\"wt\">velocity</str>\n       <str name=\"v.template\">browse</str>\n       <str name=\"v.layout\">layout</str>\n       <str name=\"title\">Solritas</str>\n\n       <!-- Query settings -->\n       <str name=\"defType\">edismax</str>\n       <str name=\"qf\">\n          text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n          title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0\n       </str>\n       <str name=\"df\">rel</str>\n       <str name=\"mm\">100%</str>\n       <str name=\"q.alt\">*:*</str>\n       <str name=\"rows\">10</str>\n       <str name=\"fl\">*,score</str>\n\n       <str name=\"mlt.qf\">\n         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n         title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0\n       </str>\n       <str name=\"mlt.fl\">text,features,name,sku,id,manu,cat,title,description,keywords,author,resourcename</str>\n       <int name=\"mlt.count\">3</int>\n\n       <!-- Faceting defaults -->\n       <str name=\"facet\">on</str>\n       <str name=\"facet.field\">cat</str>\n       <str name=\"facet.field\">manu_exact</str>\n       <str name=\"facet.field\">content_type</str>\n       <str name=\"facet.field\">author_s</str>\n       <str name=\"facet.query\">ipod</str>\n       <str name=\"facet.query\">GB</str>\n       <str name=\"facet.mincount\">1</str>\n       <str name=\"facet.pivot\">cat,inStock</str>\n       <str name=\"facet.range.other\">after</str>\n       <str name=\"facet.range\">price</str>\n       <int name=\"f.price.facet.range.start\">0</int>\n       <int name=\"f.price.facet.range.end\">600</int>\n       <int name=\"f.price.facet.range.gap\">50</int>\n       <str name=\"facet.range\">popularity</str>\n       <int name=\"f.popularity.facet.range.start\">0</int>\n       <int name=\"f.popularity.facet.range.end\">10</int>\n       <int name=\"f.popularity.facet.range.gap\">3</int>\n       <str name=\"facet.range\">manufacturedate_dt</str>\n       <str name=\"f.manufacturedate_dt.facet.range.start\">NOW/YEAR-10YEARS</str>\n       <str name=\"f.manufacturedate_dt.facet.range.end\">NOW</str>\n       <str name=\"f.manufacturedate_dt.facet.range.gap\">+1YEAR</str>\n       <str name=\"f.manufacturedate_dt.facet.range.other\">before</str>\n       <str name=\"f.manufacturedate_dt.facet.range.other\">after</str>\n\n       <!-- Highlighting defaults -->\n       <str name=\"hl\">on</str>\n       <str name=\"hl.fl\">content features title name</str>\n       <str name=\"hl.encoder\">html</str>\n       <str name=\"hl.simple.pre\">&lt;b&gt;</str>\n       <str name=\"hl.simple.post\">&lt;/b&gt;</str>\n       <str name=\"f.title.hl.fragsize\">0</str>\n       <str name=\"f.title.hl.alternateField\">title</str>\n       <str name=\"f.name.hl.fragsize\">0</str>\n       <str name=\"f.name.hl.alternateField\">name</str>\n       <str name=\"f.content.hl.snippets\">3</str>\n       <str name=\"f.content.hl.fragsize\">200</str>\n       <str name=\"f.content.hl.alternateField\">content</str>\n       <str name=\"f.content.hl.maxAlternateFieldLength\">750</str>\n\n       <!-- Spell checking defaults -->\n       <str name=\"spellcheck\">on</str>\n       <str name=\"spellcheck.extendedResults\">false</str>       \n       <str name=\"spellcheck.count\">5</str>\n       <str name=\"spellcheck.alternativeTermCount\">2</str>\n       <str name=\"spellcheck.maxResultsForSuggest\">5</str>       \n       <str name=\"spellcheck.collate\">true</str>\n       <str name=\"spellcheck.collateExtendedResults\">true</str>  \n       <str name=\"spellcheck.maxCollationTries\">5</str>\n       <str name=\"spellcheck.maxCollations\">3</str>           \n     </lst>\n\n     <!-- append spellchecking to our list of components -->\n     <arr name=\"last-components\">\n       <str>spellcheck</str>\n     </arr>\n  </requestHandler>\n\n\n  <!-- Update Request Handler.  \n       \n       http://wiki.apache.org/solr/UpdateXmlMessages\n\n       The canonical Request Handler for Modifying the Index through\n       commands specified using XML, JSON, CSV, or JAVABIN\n\n       Note: Since solr1.1 requestHandlers requires a valid content\n       type header if posted in the body. For example, curl now\n       requires: -H 'Content-type:text/xml; charset=utf-8'\n       \n       To override the request content type and force a specific \n       Content-type, use the request parameter: \n         ?update.contentType=text/csv\n       \n       This handler will pick a response format to match the input\n       if the 'wt' parameter is not explicit\n    -->\n  <requestHandler name=\"/update\" class=\"solr.UpdateRequestHandler\">\n    <!-- See below for information on defining \n         updateRequestProcessorChains that can be used by name \n         on each Update Request\n      -->\n    <!--\n       <lst name=\"defaults\">\n         <str name=\"update.chain\">dedupe</str>\n       </lst>\n       -->\n  </requestHandler>\n\n  <!-- for back compat with clients using /update/json and /update/csv -->  \n  <requestHandler name=\"/update/json\" class=\"solr.JsonUpdateRequestHandler\">\n        <lst name=\"defaults\">\n         <str name=\"stream.contentType\">application/json</str>\n       </lst>\n  </requestHandler>\n  <requestHandler name=\"/update/csv\" class=\"solr.CSVRequestHandler\">\n        <lst name=\"defaults\">\n         <str name=\"stream.contentType\">application/csv</str>\n       </lst>\n  </requestHandler>\n\n  <!-- Solr Cell Update Request Handler\n\n       http://wiki.apache.org/solr/ExtractingRequestHandler \n\n    -->\n  <requestHandler name=\"/update/extract\" \n                  startup=\"lazy\"\n                  class=\"solr.extraction.ExtractingRequestHandler\" >\n    <lst name=\"defaults\">\n      <str name=\"lowernames\">true</str>\n      <str name=\"uprefix\">ignored_</str>\n\n      <!-- capture link hrefs but ignore div attributes -->\n      <str name=\"captureAttr\">true</str>\n      <str name=\"fmap.a\">links</str>\n      <str name=\"fmap.div\">ignored_</str>\n    </lst>\n  </requestHandler>\n\n\n  <!-- Field Analysis Request Handler\n\n       RequestHandler that provides much the same functionality as\n       analysis.jsp. Provides the ability to specify multiple field\n       types and field names in the same request and outputs\n       index-time and query-time analysis for each of them.\n\n       Request parameters are:\n       analysis.fieldname - field name whose analyzers are to be used\n\n       analysis.fieldtype - field type whose analyzers are to be used\n       analysis.fieldvalue - text for index-time analysis\n       q (or analysis.q) - text for query time analysis\n       analysis.showmatch (true|false) - When set to true and when\n           query analysis is performed, the produced tokens of the\n           field value analysis will be marked as \"matched\" for every\n           token that is produces by the query analysis\n   -->\n  <requestHandler name=\"/analysis/field\" \n                  startup=\"lazy\"\n                  class=\"solr.FieldAnalysisRequestHandler\" />\n\n\n  <!-- Document Analysis Handler\n\n       http://wiki.apache.org/solr/AnalysisRequestHandler\n\n       An analysis handler that provides a breakdown of the analysis\n       process of provided documents. This handler expects a (single)\n       content stream with the following format:\n\n       <docs>\n         <doc>\n           <field name=\"id\">1</field>\n           <field name=\"name\">The Name</field>\n           <field name=\"text\">The Text Value</field>\n         </doc>\n         <doc>...</doc>\n         <doc>...</doc>\n         ...\n       </docs>\n\n    Note: Each document must contain a field which serves as the\n    unique key. This key is used in the returned response to associate\n    an analysis breakdown to the analyzed document.\n\n    Like the FieldAnalysisRequestHandler, this handler also supports\n    query analysis by sending either an \"analysis.query\" or \"q\"\n    request parameter that holds the query text to be analyzed. It\n    also supports the \"analysis.showmatch\" parameter which when set to\n    true, all field tokens that match the query tokens will be marked\n    as a \"match\". \n  -->\n  <requestHandler name=\"/analysis/document\" \n                  class=\"solr.DocumentAnalysisRequestHandler\" \n                  startup=\"lazy\" />\n\n  <!-- Admin Handlers\n\n       Admin Handlers - This will register all the standard admin\n       RequestHandlers.  \n    -->\n  <requestHandler name=\"/admin/\" \n                  class=\"solr.admin.AdminHandlers\" />\n  <!-- This single handler is equivalent to the following... -->\n  <!--\n     <requestHandler name=\"/admin/luke\"       class=\"solr.admin.LukeRequestHandler\" />\n     <requestHandler name=\"/admin/system\"     class=\"solr.admin.SystemInfoHandler\" />\n     <requestHandler name=\"/admin/plugins\"    class=\"solr.admin.PluginInfoHandler\" />\n     <requestHandler name=\"/admin/threads\"    class=\"solr.admin.ThreadDumpHandler\" />\n     <requestHandler name=\"/admin/properties\" class=\"solr.admin.PropertiesRequestHandler\" />\n     <requestHandler name=\"/admin/file\"       class=\"solr.admin.ShowFileRequestHandler\" >\n    -->\n  <!-- If you wish to hide files under ${solr.home}/conf, explicitly\n       register the ShowFileRequestHandler using: \n    -->\n  <!--\n     <requestHandler name=\"/admin/file\" \n                     class=\"solr.admin.ShowFileRequestHandler\" >\n       <lst name=\"invariants\">\n         <str name=\"hidden\">synonyms.txt</str> \n         <str name=\"hidden\">anotherfile.txt</str> \n       </lst>\n     </requestHandler>\n    -->\n\n  <!-- ping/healthcheck -->\n  <requestHandler name=\"/admin/ping\" class=\"solr.PingRequestHandler\">\n    <lst name=\"invariants\">\n      <str name=\"q\">solrpingquery</str>\n    </lst>\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">all</str>\n    </lst>\n    <!-- An optional feature of the PingRequestHandler is to configure the \n         handler with a \"healthcheckFile\" which can be used to enable/disable \n         the PingRequestHandler.\n         relative paths are resolved against the data dir \n      -->\n    <!-- <str name=\"healthcheckFile\">server-enabled.txt</str> -->\n  </requestHandler>\n\n  <!-- Echo the request contents back to the client -->\n  <requestHandler name=\"/debug/dump\" class=\"solr.DumpRequestHandler\" >\n    <lst name=\"defaults\">\n     <str name=\"echoParams\">explicit</str> \n     <str name=\"echoHandler\">true</str>\n    </lst>\n  </requestHandler>\n  \n  <!-- Solr Replication\n\n       The SolrReplicationHandler supports replicating indexes from a\n       \"master\" used for indexing and \"slaves\" used for queries.\n\n       http://wiki.apache.org/solr/SolrReplication \n\n       It is also necessary for SolrCloud to function (in Cloud mode, the\n       replication handler is used to bulk transfer segments when nodes \n       are added or need to recover).\n\n       https://wiki.apache.org/solr/SolrCloud/\n    -->\n  <requestHandler name=\"/replication\" class=\"solr.ReplicationHandler\" > \n    <!--\n       To enable simple master/slave replication, uncomment one of the \n       sections below, depending on whether this solr instance should be\n       the \"master\" or a \"slave\".  If this instance is a \"slave\" you will \n       also need to fill in the masterUrl to point to a real machine.\n    -->\n    <!--\n       <lst name=\"master\">\n         <str name=\"replicateAfter\">commit</str>\n         <str name=\"replicateAfter\">startup</str>\n         <str name=\"confFiles\">schema.xml,stopwords.txt</str>\n       </lst>\n    -->\n    <!--\n       <lst name=\"slave\">\n         <str name=\"masterUrl\">http://your-master-hostname:8983/solr</str>\n         <str name=\"pollInterval\">00:00:60</str>\n       </lst>\n    -->\n  </requestHandler>\n\n  <!-- Search Components\n\n       Search components are registered to SolrCore and used by \n       instances of SearchHandler (which can access them by name)\n       \n       By default, the following components are available:\n       \n       <searchComponent name=\"query\"     class=\"solr.QueryComponent\" />\n       <searchComponent name=\"facet\"     class=\"solr.FacetComponent\" />\n       <searchComponent name=\"mlt\"       class=\"solr.MoreLikeThisComponent\" />\n       <searchComponent name=\"highlight\" class=\"solr.HighlightComponent\" />\n       <searchComponent name=\"stats\"     class=\"solr.StatsComponent\" />\n       <searchComponent name=\"debug\"     class=\"solr.DebugComponent\" />\n   \n       Default configuration in a requestHandler would look like:\n\n       <arr name=\"components\">\n         <str>query</str>\n         <str>facet</str>\n         <str>mlt</str>\n         <str>highlight</str>\n         <str>stats</str>\n         <str>debug</str>\n       </arr>\n\n       If you register a searchComponent to one of the standard names, \n       that will be used instead of the default.\n\n       To insert components before or after the 'standard' components, use:\n    \n       <arr name=\"first-components\">\n         <str>myFirstComponentName</str>\n       </arr>\n    \n       <arr name=\"last-components\">\n         <str>myLastComponentName</str>\n       </arr>\n\n       NOTE: The component registered with the name \"debug\" will\n       always be executed after the \"last-components\" \n       \n     -->\n  \n   <!-- Spell Check\n\n        The spell check component can return a list of alternative spelling\n        suggestions.  \n\n        http://wiki.apache.org/solr/SpellCheckComponent\n     -->\n  <searchComponent name=\"spellcheck\" class=\"solr.SpellCheckComponent\">\n\n    <str name=\"queryAnalyzerFieldType\">text_general</str>\n\n    <!-- Multiple \"Spell Checkers\" can be declared and used by this\n         component\n      -->\n\n    <!-- a spellchecker built from a field of the main index -->\n    <lst name=\"spellchecker\">\n      <str name=\"name\">default</str>\n      <str name=\"field\">rel</str>\n      <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n      <!-- the spellcheck distance measure used, the default is the internal levenshtein -->\n      <str name=\"distanceMeasure\">internal</str>\n      <!-- minimum accuracy needed to be considered a valid spellcheck suggestion -->\n      <float name=\"accuracy\">0.5</float>\n      <!-- the maximum #edits we consider when enumerating terms: can be 1 or 2 -->\n      <int name=\"maxEdits\">2</int>\n      <!-- the minimum shared prefix when enumerating terms -->\n      <int name=\"minPrefix\">1</int>\n      <!-- maximum number of inspections per result. -->\n      <int name=\"maxInspections\">5</int>\n      <!-- minimum length of a query term to be considered for correction -->\n      <int name=\"minQueryLength\">4</int>\n      <!-- maximum threshold of documents a query term can appear to be considered for correction -->\n      <float name=\"maxQueryFrequency\">0.01</float>\n      <!-- uncomment this to require suggestions to occur in 1% of the documents\n      \t<float name=\"thresholdTokenFrequency\">.01</float>\n      -->\n    </lst>\n    \n    <!-- a spellchecker that can break or combine words.  See \"/spell\" handler below for usage -->\n    <lst name=\"spellchecker\">\n      <str name=\"name\">wordbreak</str>\n      <str name=\"classname\">solr.WordBreakSolrSpellChecker</str>      \n      <str name=\"field\">name</str>\n      <str name=\"combineWords\">true</str>\n      <str name=\"breakWords\">true</str>\n      <int name=\"maxChanges\">10</int>\n    </lst>\n\n    <!-- a spellchecker that uses a different distance measure -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"name\">jarowinkler</str>\n         <str name=\"field\">spell</str>\n         <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n         <str name=\"distanceMeasure\">\n           org.apache.lucene.search.spell.JaroWinklerDistance\n         </str>\n       </lst>\n     -->\n\n    <!-- a spellchecker that use an alternate comparator \n\n         comparatorClass be one of:\n          1. score (default)\n          2. freq (Frequency first, then score)\n          3. A fully qualified class name\n      -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"name\">freq</str>\n         <str name=\"field\">lowerfilt</str>\n         <str name=\"classname\">solr.DirectSolrSpellChecker</str>\n         <str name=\"comparatorClass\">freq</str>\n      -->\n\n    <!-- A spellchecker that reads the list of words from a file -->\n    <!--\n       <lst name=\"spellchecker\">\n         <str name=\"classname\">solr.FileBasedSpellChecker</str>\n         <str name=\"name\">file</str>\n         <str name=\"sourceLocation\">spellings.txt</str>\n         <str name=\"characterEncoding\">UTF-8</str>\n         <str name=\"spellcheckIndexDir\">spellcheckerFile</str>\n       </lst>\n      -->\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the spellcheck component.  \n\n       NOTE: This is purely as an example.  The whole purpose of the\n       SpellCheckComponent is to hook it into the request handler that\n       handles your normal user queries so that a separate request is\n       not needed to get suggestions.\n\n       IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS\n       NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM!\n       \n       See http://wiki.apache.org/solr/SpellCheckComponent for details\n       on the request parameters.\n    -->\n  <requestHandler name=\"/spell\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"df\">rel</str>\n      <!-- Solr will use suggestions from both the 'default' spellchecker\n           and from the 'wordbreak' spellchecker and combine them.\n           collations (re-written queries) can include a combination of\n           corrections from both spellcheckers -->\n      <str name=\"spellcheck.dictionary\">default</str>\n      <str name=\"spellcheck.dictionary\">wordbreak</str>\n      <str name=\"spellcheck\">on</str>\n      <str name=\"spellcheck.extendedResults\">true</str>       \n      <str name=\"spellcheck.count\">10</str>\n      <str name=\"spellcheck.alternativeTermCount\">5</str>\n      <str name=\"spellcheck.maxResultsForSuggest\">5</str>       \n      <str name=\"spellcheck.collate\">true</str>\n      <str name=\"spellcheck.collateExtendedResults\">true</str>  \n      <str name=\"spellcheck.maxCollationTries\">10</str>\n      <str name=\"spellcheck.maxCollations\">5</str>         \n    </lst>\n    <arr name=\"last-components\">\n      <str>spellcheck</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Term Vector Component\n\n       http://wiki.apache.org/solr/TermVectorComponent\n    -->\n  <searchComponent name=\"tvComponent\" class=\"solr.TermVectorComponent\"/>\n\n  <!-- A request handler for demonstrating the term vector component\n\n       This is purely as an example.\n\n       In reality you will likely want to add the component to your \n       already specified request handlers. \n    -->\n  <requestHandler name=\"/tvrh\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"df\">rel</str>\n      <bool name=\"tv\">true</bool>\n    </lst>\n    <arr name=\"last-components\">\n      <str>tvComponent</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Clustering Component\n\n       http://wiki.apache.org/solr/ClusteringComponent\n\n       You'll need to set the solr.clustering.enabled system property\n       when running solr to run with clustering enabled:\n\n            java -Dsolr.clustering.enabled=true -jar start.jar\n\n    -->\n  <searchComponent name=\"clustering\"\n                   enable=\"${solr.clustering.enabled:false}\"\n                   class=\"solr.clustering.ClusteringComponent\" >\n    <!-- Declare an engine -->\n    <lst name=\"engine\">\n      <!-- The name, only one can be named \"default\" -->\n      <str name=\"name\">default</str>\n\n      <!-- Class name of Carrot2 clustering algorithm.\n\n           Currently available algorithms are:\n           \n           * org.carrot2.clustering.lingo.LingoClusteringAlgorithm\n           * org.carrot2.clustering.stc.STCClusteringAlgorithm\n           * org.carrot2.clustering.kmeans.BisectingKMeansClusteringAlgorithm\n           \n           See http://project.carrot2.org/algorithms.html for the\n           algorithm's characteristics.\n        -->\n      <str name=\"carrot.algorithm\">org.carrot2.clustering.lingo.LingoClusteringAlgorithm</str>\n\n      <!-- Overriding values for Carrot2 default algorithm attributes.\n\n           For a description of all available attributes, see:\n           http://download.carrot2.org/stable/manual/#chapter.components.\n           Use attribute key as name attribute of str elements\n           below. These can be further overridden for individual\n           requests by specifying attribute key as request parameter\n           name and attribute value as parameter value.\n        -->\n      <str name=\"LingoClusteringAlgorithm.desiredClusterCountBase\">20</str>\n\n      <!-- Location of Carrot2 lexical resources.\n\n           A directory from which to load Carrot2-specific stop words\n           and stop labels. Absolute or relative to Solr config directory.\n           If a specific resource (e.g. stopwords.en) is present in the\n           specified dir, it will completely override the corresponding\n           default one that ships with Carrot2.\n\n           For an overview of Carrot2 lexical resources, see:\n           http://download.carrot2.org/head/manual/#chapter.lexical-resources\n        -->\n      <str name=\"carrot.lexicalResourcesDir\">clustering/carrot2</str>\n\n      <!-- The language to assume for the documents.\n\n           For a list of allowed values, see:\n           http://download.carrot2.org/stable/manual/#section.attribute.lingo.MultilingualClustering.defaultLanguage\n       -->\n      <str name=\"MultilingualClustering.defaultLanguage\">ENGLISH</str>\n    </lst>\n    <lst name=\"engine\">\n      <str name=\"name\">stc</str>\n      <str name=\"carrot.algorithm\">org.carrot2.clustering.stc.STCClusteringAlgorithm</str>\n    </lst>\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the clustering component\n\n       This is purely as an example.\n\n       In reality you will likely want to add the component to your \n       already specified request handlers. \n    -->\n  <requestHandler name=\"/clustering\"\n                  startup=\"lazy\"\n                  enable=\"${solr.clustering.enabled:false}\"\n                  class=\"solr.SearchHandler\">\n    <lst name=\"defaults\">\n      <bool name=\"clustering\">true</bool>\n      <str name=\"clustering.engine\">default</str>\n      <bool name=\"clustering.results\">true</bool>\n      <!-- The title field -->\n      <str name=\"carrot.title\">name</str>\n      <str name=\"carrot.url\">id</str>\n      <!-- The field to cluster on -->\n       <str name=\"carrot.snippet\">features</str>\n       <!-- produce summaries -->\n       <bool name=\"carrot.produceSummary\">true</bool>\n       <!-- the maximum number of labels per cluster -->\n       <!--<int name=\"carrot.numDescriptions\">5</int>-->\n       <!-- produce sub clusters -->\n       <bool name=\"carrot.outputSubClusters\">false</bool>\n       \n       <str name=\"defType\">edismax</str>\n       <str name=\"qf\">\n         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4\n       </str>\n       <str name=\"q.alt\">*:*</str>\n       <str name=\"rows\">10</str>\n       <str name=\"fl\">*,score</str>\n    </lst>     \n    <arr name=\"last-components\">\n      <str>clustering</str>\n    </arr>\n  </requestHandler>\n  \n  <!-- Terms Component\n\n       http://wiki.apache.org/solr/TermsComponent\n\n       A component to return terms and document frequency of those\n       terms\n    -->\n  <searchComponent name=\"terms\" class=\"solr.TermsComponent\"/>\n\n  <!-- A request handler for demonstrating the terms component -->\n  <requestHandler name=\"/terms\" class=\"solr.SearchHandler\" startup=\"lazy\">\n     <lst name=\"defaults\">\n      <bool name=\"terms\">true</bool>\n      <bool name=\"distrib\">false</bool>\n    </lst>     \n    <arr name=\"components\">\n      <str>terms</str>\n    </arr>\n  </requestHandler>\n\n\n  <!-- Query Elevation Component\n\n       http://wiki.apache.org/solr/QueryElevationComponent\n\n       a search component that enables you to configure the top\n       results for a given query regardless of the normal lucene\n       scoring.\n    -->\n  <searchComponent name=\"elevator\" class=\"solr.QueryElevationComponent\" >\n    <!-- pick a fieldType to analyze queries -->\n    <str name=\"queryFieldType\">string</str>\n    <str name=\"config-file\">elevate.xml</str>\n  </searchComponent>\n\n  <!-- A request handler for demonstrating the elevator component -->\n  <requestHandler name=\"/elevate\" class=\"solr.SearchHandler\" startup=\"lazy\">\n    <lst name=\"defaults\">\n      <str name=\"echoParams\">explicit</str>\n      <str name=\"df\">rel</str>\n    </lst>\n    <arr name=\"last-components\">\n      <str>elevator</str>\n    </arr>\n  </requestHandler>\n\n  <!-- Highlighting Component\n\n       http://wiki.apache.org/solr/HighlightingParameters\n    -->\n  <searchComponent class=\"solr.HighlightComponent\" name=\"highlight\">\n    <highlighting>\n      <!-- Configure the standard fragmenter -->\n      <!-- This could most likely be commented out in the \"default\" case -->\n      <fragmenter name=\"gap\" \n                  default=\"true\"\n                  class=\"solr.highlight.GapFragmenter\">\n        <lst name=\"defaults\">\n          <int name=\"hl.fragsize\">100</int>\n        </lst>\n      </fragmenter>\n\n      <!-- A regular-expression-based fragmenter \n           (for sentence extraction) \n        -->\n      <fragmenter name=\"regex\" \n                  class=\"solr.highlight.RegexFragmenter\">\n        <lst name=\"defaults\">\n          <!-- slightly smaller fragsizes work better because of slop -->\n          <int name=\"hl.fragsize\">70</int>\n          <!-- allow 50% slop on fragment sizes -->\n          <float name=\"hl.regex.slop\">0.5</float>\n          <!-- a basic sentence pattern -->\n          <str name=\"hl.regex.pattern\">[-\\w ,/\\n\\&quot;&apos;]{20,200}</str>\n        </lst>\n      </fragmenter>\n\n      <!-- Configure the standard formatter -->\n      <formatter name=\"html\" \n                 default=\"true\"\n                 class=\"solr.highlight.HtmlFormatter\">\n        <lst name=\"defaults\">\n          <str name=\"hl.simple.pre\"><![CDATA[<em>]]></str>\n          <str name=\"hl.simple.post\"><![CDATA[</em>]]></str>\n        </lst>\n      </formatter>\n\n      <!-- Configure the standard encoder -->\n      <encoder name=\"html\" \n               class=\"solr.highlight.HtmlEncoder\" />\n\n      <!-- Configure the standard fragListBuilder -->\n      <fragListBuilder name=\"simple\" \n                       class=\"solr.highlight.SimpleFragListBuilder\"/>\n      \n      <!-- Configure the single fragListBuilder -->\n      <fragListBuilder name=\"single\" \n                       class=\"solr.highlight.SingleFragListBuilder\"/>\n      \n      <!-- Configure the weighted fragListBuilder -->\n      <fragListBuilder name=\"weighted\" \n                       default=\"true\"\n                       class=\"solr.highlight.WeightedFragListBuilder\"/>\n      \n      <!-- default tag FragmentsBuilder -->\n      <fragmentsBuilder name=\"default\" \n                        default=\"true\"\n                        class=\"solr.highlight.ScoreOrderFragmentsBuilder\">\n        <!-- \n        <lst name=\"defaults\">\n          <str name=\"hl.multiValuedSeparatorChar\">/</str>\n        </lst>\n        -->\n      </fragmentsBuilder>\n\n      <!-- multi-colored tag FragmentsBuilder -->\n      <fragmentsBuilder name=\"colored\" \n                        class=\"solr.highlight.ScoreOrderFragmentsBuilder\">\n        <lst name=\"defaults\">\n          <str name=\"hl.tag.pre\"><![CDATA[\n               <b style=\"background:yellow\">,<b style=\"background:lawgreen\">,\n               <b style=\"background:aquamarine\">,<b style=\"background:magenta\">,\n               <b style=\"background:palegreen\">,<b style=\"background:coral\">,\n               <b style=\"background:wheat\">,<b style=\"background:khaki\">,\n               <b style=\"background:lime\">,<b style=\"background:deepskyblue\">]]></str>\n          <str name=\"hl.tag.post\"><![CDATA[</b>]]></str>\n        </lst>\n      </fragmentsBuilder>\n      \n      <boundaryScanner name=\"default\" \n                       default=\"true\"\n                       class=\"solr.highlight.SimpleBoundaryScanner\">\n        <lst name=\"defaults\">\n          <str name=\"hl.bs.maxScan\">10</str>\n          <str name=\"hl.bs.chars\">.,!? &#9;&#10;&#13;</str>\n        </lst>\n      </boundaryScanner>\n      \n      <boundaryScanner name=\"breakIterator\" \n                       class=\"solr.highlight.BreakIteratorBoundaryScanner\">\n        <lst name=\"defaults\">\n          <!-- type should be one of CHARACTER, WORD(default), LINE and SENTENCE -->\n          <str name=\"hl.bs.type\">WORD</str>\n          <!-- language and country are used when constructing Locale object.  -->\n          <!-- And the Locale object will be used when getting instance of BreakIterator -->\n          <str name=\"hl.bs.language\">en</str>\n          <str name=\"hl.bs.country\">US</str>\n        </lst>\n      </boundaryScanner>\n    </highlighting>\n  </searchComponent>\n\n  <!-- Update Processors\n\n       Chains of Update Processor Factories for dealing with Update\n       Requests can be declared, and then used by name in Update\n       Request Processors\n\n       http://wiki.apache.org/solr/UpdateRequestProcessor\n\n    --> \n  <!-- Deduplication\n\n       An example dedup update processor that creates the \"id\" field\n       on the fly based on the hash code of some other fields.  This\n       example has overwriteDupes set to false since we are using the\n       id field as the signatureField and Solr will maintain\n       uniqueness based on that anyway.  \n       \n    -->\n  <!--\n     <updateRequestProcessorChain name=\"dedupe\">\n       <processor class=\"solr.processor.SignatureUpdateProcessorFactory\">\n         <bool name=\"enabled\">true</bool>\n         <str name=\"signatureField\">id</str>\n         <bool name=\"overwriteDupes\">false</bool>\n         <str name=\"fields\">name,features,cat</str>\n         <str name=\"signatureClass\">solr.processor.Lookup3Signature</str>\n       </processor>\n       <processor class=\"solr.LogUpdateProcessorFactory\" />\n       <processor class=\"solr.RunUpdateProcessorFactory\" />\n     </updateRequestProcessorChain>\n    -->\n  \n  <!-- Language identification\n\n       This example update chain identifies the language of the incoming\n       documents using the langid contrib. The detected language is\n       written to field language_s. No field name mapping is done.\n       The fields used for detection are text, title, subject and description,\n       making this example suitable for detecting languages form full-text\n       rich documents injected via ExtractingRequestHandler.\n       See more about langId at http://wiki.apache.org/solr/LanguageDetection\n    -->\n    <!--\n     <updateRequestProcessorChain name=\"langid\">\n       <processor class=\"org.apache.solr.update.processor.TikaLanguageIdentifierUpdateProcessorFactory\">\n         <str name=\"langid.fl\">text,title,subject,description</str>\n         <str name=\"langid.langField\">language_s</str>\n         <str name=\"langid.fallback\">en</str>\n       </processor>\n       <processor class=\"solr.LogUpdateProcessorFactory\" />\n       <processor class=\"solr.RunUpdateProcessorFactory\" />\n     </updateRequestProcessorChain>\n    -->\n\n  <!-- Script update processor\n\n    This example hooks in an update processor implemented using JavaScript.\n\n    See more about the script update processor at http://wiki.apache.org/solr/ScriptUpdateProcessor\n  -->\n  <!--\n    <updateRequestProcessorChain name=\"script\">\n      <processor class=\"solr.StatelessScriptUpdateProcessorFactory\">\n        <str name=\"script\">update-script.js</str>\n        <lst name=\"params\">\n          <str name=\"config_param\">example config parameter</str>\n        </lst>\n      </processor>\n      <processor class=\"solr.RunUpdateProcessorFactory\" />\n    </updateRequestProcessorChain>\n  -->\n \n  <!-- Response Writers\n\n       http://wiki.apache.org/solr/QueryResponseWriter\n\n       Request responses will be written using the writer specified by\n       the 'wt' request parameter matching the name of a registered\n       writer.\n\n       The \"default\" writer is the default and will be used if 'wt' is\n       not specified in the request.\n    -->\n  <!-- The following response writers are implicitly configured unless\n       overridden...\n    -->\n  <!--\n     <queryResponseWriter name=\"xml\" \n                          default=\"true\"\n                          class=\"solr.XMLResponseWriter\" />\n     <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\"/>\n     <queryResponseWriter name=\"python\" class=\"solr.PythonResponseWriter\"/>\n     <queryResponseWriter name=\"ruby\" class=\"solr.RubyResponseWriter\"/>\n     <queryResponseWriter name=\"php\" class=\"solr.PHPResponseWriter\"/>\n     <queryResponseWriter name=\"phps\" class=\"solr.PHPSerializedResponseWriter\"/>\n     <queryResponseWriter name=\"csv\" class=\"solr.CSVResponseWriter\"/>\n     <queryResponseWriter name=\"schema.xml\" class=\"solr.SchemaXmlResponseWriter\"/>\n    -->\n\n  <queryResponseWriter name=\"json\" class=\"solr.JSONResponseWriter\">\n     <!-- For the purposes of the tutorial, JSON responses are written as\n      plain text so that they are easy to read in *any* browser.\n      If you expect a MIME type of \"application/json\" just remove this override.\n     -->\n    <str name=\"content-type\">text/plain; charset=UTF-8</str>\n  </queryResponseWriter>\n  \n  <!--\n     Custom response writers can be declared as needed...\n    -->\n    <queryResponseWriter name=\"velocity\" class=\"solr.VelocityResponseWriter\" startup=\"lazy\"/>\n  \n\n  <!-- XSLT response writer transforms the XML output by any xslt file found\n       in Solr's conf/xslt directory.  Changes to xslt files are checked for\n       every xsltCacheLifetimeSeconds.  \n    -->\n  <queryResponseWriter name=\"xslt\" class=\"solr.XSLTResponseWriter\">\n    <int name=\"xsltCacheLifetimeSeconds\">5</int>\n  </queryResponseWriter>\n\n  <!-- Query Parsers\n\n       http://wiki.apache.org/solr/SolrQuerySyntax\n\n       Multiple QParserPlugins can be registered by name, and then\n       used in either the \"defType\" param for the QueryComponent (used\n       by SearchHandler) or in LocalParams\n    -->\n  <!-- example of registering a query parser -->\n  <!--\n     <queryParser name=\"myparser\" class=\"com.mycompany.MyQParserPlugin\"/>\n    -->\n\n  <!-- Function Parsers\n\n       http://wiki.apache.org/solr/FunctionQuery\n\n       Multiple ValueSourceParsers can be registered by name, and then\n       used as function names when using the \"func\" QParser.\n    -->\n  <!-- example of registering a custom function parser  -->\n  <!--\n     <valueSourceParser name=\"myfunc\" \n                        class=\"com.mycompany.MyValueSourceParser\" />\n    -->\n    \n  \n  <!-- Document Transformers\n       http://wiki.apache.org/solr/DocTransformers\n    -->\n  <!--\n     Could be something like:\n     <transformer name=\"db\" class=\"com.mycompany.LoadFromDatabaseTransformer\" >\n       <int name=\"connection\">jdbc://....</int>\n     </transformer>\n     \n     To add a constant value to all docs, use:\n     <transformer name=\"mytrans2\" class=\"org.apache.solr.response.transform.ValueAugmenterFactory\" >\n       <int name=\"value\">5</int>\n     </transformer>\n     \n     If you want the user to still be able to change it with _value:something_ use this:\n     <transformer name=\"mytrans3\" class=\"org.apache.solr.response.transform.ValueAugmenterFactory\" >\n       <double name=\"defaultValue\">5</double>\n     </transformer>\n\n      If you are using the QueryElevationComponent, you may wish to mark documents that get boosted.  The\n      EditorialMarkerFactory will do exactly that:\n     <transformer name=\"qecBooster\" class=\"org.apache.solr.response.transform.EditorialMarkerFactory\" />\n    -->\n    \n\n  <!-- Legacy config for the admin interface -->\n  <admin>\n    <defaultQuery>*:*</defaultQuery>\n  </admin>\n\n</config>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/spellings.txt",
    "content": "pizza\nhistory"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/stopwords.txt",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/synonyms.txt",
    "content": "# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n#-----------------------------------------------------------------------\n#some test synonym mappings unlikely to appear in real input text\naaafoo => aaabar\nbbbfoo => bbbfoo bbbbar\ncccfoo => cccbar cccbaz\nfooaaa,baraaa,bazaaa\n\n# Some synonym groups specific to this example\nGB,gib,gigabyte,gigabytes\nMB,mib,megabyte,megabytes\nTelevision, Televisions, TV, TVs\n#notice we use \"gib\" instead of \"GiB\" so any WordDelimiterFilter coming\n#after us won't split it into two words.\n\n# Synonym mappings can be used for spelling correction too\npixima => pixma\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/update-script.js",
    "content": "/*\n  This is a basic skeleton JavaScript update processor.\n\n  In order for this to be executed, it must be properly wired into solrconfig.xml; by default it is commented out in\n  the example solrconfig.xml and must be uncommented to be enabled.\n\n  See http://wiki.apache.org/solr/ScriptUpdateProcessor for more details.\n*/\n\nfunction processAdd(cmd) {\n\n  doc = cmd.solrDoc;  // org.apache.solr.common.SolrInputDocument\n  id = doc.getFieldValue(\"id\");\n  logger.info(\"update-script#processAdd: id=\" + id);\n\n// Set a field value:\n//  doc.setField(\"foo_s\", \"whatever\");\n\n// Get a configuration parameter:\n//  config_param = params.get('config_param');  // \"params\" only exists if processor configured with <lst name=\"params\">\n\n// Get a request parameter:\n// some_param = req.getParams().get(\"some_param\")\n\n// Add a field of field names that match a pattern:\n//   - Potentially useful to determine the fields/attributes represented in a result set, via faceting on field_name_ss\n//  field_names = doc.getFieldNames().toArray();\n//  for(i=0; i < field_names.length; i++) {\n//    field_name = field_names[i];\n//    if (/attr_.*/.test(field_name)) { doc.addField(\"attribute_ss\", field_names[i]); }\n//  }\n\n}\n\nfunction processDelete(cmd) {\n  // no-op\n}\n\nfunction processMergeIndexes(cmd) {\n  // no-op\n}\n\nfunction processCommit(cmd) {\n  // no-op\n}\n\nfunction processRollback(cmd) {\n  // no-op\n}\n\nfunction finish() {\n  // no-op\n}\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/VM_global_library.vm",
    "content": "\n#macro(param $key)$request.params.get($key)#end\n\n#macro(url_root)/solr#end\n\n## TODO: s/url_for_solr/url_for_core/ and s/url_root/url_for_solr/\n#macro(core_name)$request.core.name#end\n#macro(url_for_solr)#{url_root}#if($request.core.name != \"\")/$request.core.name#end#end\n#macro(url_for_home)#url_for_solr/browse#end\n\n#macro(q)&q=$!{esc.url($params.get('q'))}#end\n\n#macro(fqs $p)#foreach($fq in $p)#if($velocityCount>1)&#{end}fq=$esc.url($fq)#end#end\n\n#macro(debug)#if($request.params.get('debugQuery'))&debugQuery=true#end#end\n\n#macro(boostPrice)#if($request.params.get('bf') == 'price')&bf=price#end#end        \n\n#macro(annotate)#if($request.params.get('annotateBrowse'))&annotateBrowse=true#end#end\n\n#macro(annTitle $msg)#if($annotate == true)title=\"$msg\"#end#end\n\n#macro(spatial)#if($request.params.get('sfield'))&sfield=store#end#if($request.params.get('pt'))&pt=$request.params.get('pt')#end#if($request.params.get('d'))&d=$request.params.get('d')#end#end\n\n#macro(qOpts)#set($queryOpts = $request.params.get(\"queryOpts\"))#if($queryOpts && $queryOpts != \"\")&queryOpts=$queryOpts#end#end\n\n#macro(group)#if($request.params.getBool(\"group\") == true)&group=true#end#if($request.params.get(\"group.field\"))#foreach($grp in $request.params.getParams('group.field'))&group.field=$grp#end#end#end\n\n#macro(sort $p)#if($p)#foreach($s in $p)&sort=$esc.url($s)#end#end#end\n\n#macro(lensNoQ)?#if($request.params.getParams('fq') and $list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#sort($request.params.getParams('sort'))#debug#boostPrice#annotate#spatial#qOpts#group#end\n#macro(lens)#lensNoQ#q#end\n        \n\n#macro(url_for_lens)#{url_for_home}#lens#end\n\n#macro(url_for_start $start)#url_for_home#lens&start=$start#end\n\n#macro(url_for_filters $p)#url_for_home?#q#boostPrice#spatial#qOpts#if($list.size($p) > 0)&#fqs($p)#end#debug#end\n\n#macro(url_for_nested_facet_query $field)#url_for_home#lens&fq=$esc.url($field)#end\n\n## TODO: convert to use {!raw f=$field}$value (with escaping of course)\n#macro(url_for_facet_filter $field $value)#url_for_home#lens&fq=$esc.url($field):%22$esc.url($value)%22#end\n\n#macro(url_for_facet_date_filter $field $value)#url_for_home#lens&fq=$esc.url($field):$esc.url($value)#end\n\n#macro(url_for_facet_range_filter $field $value)#url_for_home#lens&fq=$esc.url($field):$esc.url($value)#end\n\n\n#macro(link_to_previous_page $text)\n  #if($page.current_page_number > 1)\n    #set($prev_start = $page.start - $page.results_per_page)\n    <a class=\"prev-page\" href=\"#url_for_start($prev_start)\">$text</a>\n  #end\n#end\n\n#macro(link_to_next_page $text)\n  #if($page.current_page_number < $page.page_count)\n    #set($next_start = $page.start + $page.results_per_page)\n    <a class=\"next-page\" href=\"#url_for_start($next_start)\">$text</a>\n  #end\n#end\n\n#macro(link_to_page $page_number $text)\n  #if($page_number == $page.current_page_number)\n    $text\n  #else\n    #if($page_number <= $page.page_count)\n      #set($page_start = $page_number * $page.results_per_page - $page.results_per_page)\n      <a class=\"page\" href=\"#url_for_start($page_start)\">$text</a>\n    #end\n  #end\n#end\n\n#macro(display_facet_query $field, $display, $fieldName)\n  #if($field.size() > 0)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n    #foreach ($facet in $field)\n      #if ($facet.value > 0)\n        #set($facetURL = \"#url_for_nested_facet_query($facet.key)\")\n        #if ($facetURL != '')\n          <li><a href=\"$facetURL\">$facet.key</a> ($facet.value)</li>\n        #end\n      #end\n    #end\n    </ul>\n  #end      \n#end\n\n\n#macro(display_facet_range $field, $display, $fieldName, $start, $end, $gap, $before, $after)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n    #if($before && $before != \"\")\n      #set($value = \"[* TO \" + \"#format_value($start)\" + \"}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      <li><a href=\"$facetURL\">Less than #format_value($start)</a> ($before)</li>\n    #end\n    #foreach ($facet in $field)\n      #set($rangeEnd = \"#range_get_to_value($facet.key, $gap)\")\n      #set($value = \"[\" + $facet.key + \" TO \" + $rangeEnd + \"}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      #if ($facetURL != '')\n        <li><a href=\"$facetURL\">$facet.key - #format_value($rangeEnd)</a> ($facet.value)</li>\n      #end\n    #end\n    #if($end && $end != \"\" && $after > 0)\n      #set($value = \"[\" + \"#format_value($end)\" + \" TO *}\")\n      #set($facetURL = \"#url_for_facet_range_filter($fieldName, $value)\")\n      <li><a href=\"$facetURL\">More than #format_value($end)</a> ($after)</li>\n    #end\n    </ul>\n#end\n\n## $pivots is a list of facet_pivot\n#macro(display_facet_pivot $pivots, $display)\n  #if($pivots.size() > 0)\n  <span class=\"facet-field\">$display</span>\n    <ul>\n      #foreach ($pivot in $pivots)\n        #foreach ($entry in $pivot.value)\n          <a href=\"#url_for_facet_filter($entry.field, $entry.value)\">$entry.field::$entry.value</a> ($entry.count)\n          <ul>\n            #foreach($nest in $entry.pivot)\n              <a href=\"#url_for_facet_filter($entry.field, $entry.value)&fq=$esc.url($nest.field):%22$esc.url($nest.value)%22\">$nest.field::$nest.value</a> ($nest.count)\n            #end\n          </ul>\n        #end\n      #end\n    </ul>\n  #end\n#end\n\n#macro(field $f)\n  #if($response.response.highlighting.get($docId).get($f).get(0))\n    #set($pad = \"\")\n    #foreach($v in $response.response.highlighting.get($docId).get($f))\n$pad$v##\n      #set($pad = \" ... \")\n    #end\n  #else\n    #foreach($v in $doc.getFieldValues($f))\n$v##\n    #end\n  #end\n#end  \n\n#macro(utc_date $theDate)\n$date.format(\"yyyy-MM-dd'T'HH:mm:ss'Z'\",$theDate,$date.getLocale(),$date.getTimeZone().getTimeZone(\"UTC\"))##\n#end\n\n#macro(format_value $val)\n#if(${val.class.name} == \"java.util.Date\")\n#utc_date($val)##\n#else\n$val##\n#end\n#end\n\n#macro(range_get_to_value $inval, $gapval)\n#if(${gapval.class.name} == \"java.lang.String\")\n$inval$gapval##\n#elseif(${gapval.class.name} == \"java.lang.Float\" || ${inval.class.name} == \"java.lang.Float\")\n$math.toDouble($math.add($inval,$gapval))##\n#else\n$math.add($inval,$gapval)##\n#end\n#end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/browse.vm",
    "content": "#set($searcher=$request.searcher)\n#set($params=$request.params)\n#set($clusters = $response.response.clusters)\n#set($mltResults = $response.response.get(\"moreLikeThis\"))\n#set($annotate = $params.get(\"annotateBrowse\"))\n#parse('query.vm')\n#parse('did_you_mean.vm')\n\n<div class=\"navigators\">\n  #parse(\"facets.vm\")\n</div>\n\n<div class=\"pagination\">\n  #if($response.response.get('grouped'))\n    <span><span class=\"results-found\">$response.response.get('grouped').size() group(s)</span> found in ${response.responseHeader.QTime} ms</span>\n  #else<span><span class=\"results-found\">$page.results_found</span> results found in ${response.responseHeader.QTime} ms</span>\n  Page <span class=\"page-num\">$page.current_page_number</span> of <span\n        class=\"page-count\">$page.page_count</span>#end\n</div>\n\n<div class=\"error\">\n  #if(${response.response.error.code})\n    <h1>ERROR ${response.response.error.code}</h1>\n    ${response.response.error.msg}\n  #end\n</div>\n\n<div class=\"results\">\n  #if($response.response.get('grouped'))\n    #foreach($grouping in $response.response.get('grouped'))\n      #parse(\"hitGrouped.vm\")\n    #end\n  #else\n    #foreach($doc in $response.results)\n      #parse(\"hit.vm\")\n    #end\n  #end\n</div>\n\n<div class=\"pagination\">\n  #if($response.response.get('grouped'))\n  #else\n  #link_to_previous_page(\"previous\")\n  <span class=\"results-found\">$page.results_found</span> results found.\n  Page <span class=\"page-num\">$page.current_page_number</span> of <span\n        class=\"page-count\">$page.page_count</span>\n  #link_to_next_page(\"next\")\n  #end\n  <br/>\n</div>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/cluster.vm",
    "content": "<h2 #annTitle(\"Clusters generated by Carrot2 using the /clustering RequestHandler\")>Clusters</h2>\n<div id=\"clusters\">\n  Run Solr with java -Dsolr.clustering.enabled=true -jar start.jar to see results\n</div>\n<script type=\"text/javascript\">\n\n  $('#clusters').load(\"#url_for_solr/clustering#lens\",\n    {'wt':'velocity', 'v.template':\"clusterResults\"});\n</script>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/clusterResults.vm",
    "content": "#foreach ($clusters in $response.response.clusters)\n    #set($labels = $clusters.get('labels'))\n    #set($docs = $clusters.get('docs'))\n    <h3>#foreach ($label in $labels)$label#if( $foreach.hasNext ),#end#end</h3>\n        <ol>\n        #foreach ($cluDoc in $docs)\n          <li><a href=\"#url_for_home?q=id:$cluDoc\">$cluDoc</a></li>\n        #end\n        </ol>\n        \n    \n#end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/debug.vm",
    "content": "#if($params.getBool(\"debugQuery\",false))\n  <a href=\"#\" onclick='jQuery(this).siblings(\"pre\").toggle(); return false;'>toggle explain</a>\n  <pre style=\"display:none\">$response.getExplainMap().get($doc.getFirstValue('id'))</pre>\n  <a href=\"#\" onclick='jQuery(this).siblings(\"pre2\").toggle(); return false;'>toggle all fields</a>\n  <pre2 style=\"display:none\">\n  #foreach($fieldname in $doc.fieldNames)\n     <br>\n       <span class=\"field-name\">$fieldname :</span>\n       <span>\n       #foreach($value in $doc.getFieldValues($fieldname))\n         $esc.html($value)\n       #end\n       </span>\n  #end\n   </br>\n  </pre2>\n#end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/did_you_mean.vm",
    "content": "#set($dym = $response.response.spellcheck.suggestions.collation.collationQuery)\n#if($dym)\n  Did you mean <a href=\"#{url_for_home}#{lensNoQ}&q=$esc.url($dym)\">$esc.html($dym)</a>?\n#end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/facet_fields.vm",
    "content": "#if($response.facetFields)\n    <h2 #annTitle(\"Facets generated by adding &facet.field= to the request\")>Field Facets</h2>\n    #foreach($field in $response.facetFields)\n      ## Hide facets without value\n      #if($field.values.size() > 0)\n      <span class=\"facet-field\">$field.name</span>\n\n      <ul>\n        #foreach($facet in $field.values)\n            <li><a href=\"#url_for_facet_filter($field.name, $facet.name)\">$facet.name</a> ($facet.count)</li>\n        #end\n      </ul>\n      #end\n    #end\n  #end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/facet_pivot.vm",
    "content": "<h2 #annTitle(\"Facets generated by adding &facet.pivot= to the request\")>Pivot Facets</h2>\n#set($pivot = $response.response.facet_counts.facet_pivot)\n#display_facet_pivot($pivot, \"\")\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/facet_queries.vm",
    "content": "#set($field = $response.response.facet_counts.facet_queries)\n<h2 #annTitle(\"Facets generated by adding &facet.query= to the request\")>Query Facets</h2>        \n#display_facet_query($field, \"\", \"\")"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/facet_ranges.vm",
    "content": "<h2 #annTitle(\"Facets generated by adding &facet.range= to the request\")>Range Facets</h2>\n#foreach ($field in $response.response.facet_counts.facet_ranges)\n  ## Hide facets without value\n  #if($field.value.counts.size() > 0)\n\t#set($name = $field.key)\n\t#set($display = $name)\n\t#set($f = $field.value.counts)\n\t#set($start = $field.value.start)\n\t#set($end = $field.value.end)\n\t#set($gap = $field.value.gap)\n\t#set($before = $field.value.before)\n\t#set($after = $field.value.after)\n\t#display_facet_range($f, $display, $name, $start, $end, $gap, $before, $after)\n  #end\n#end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/facets.vm",
    "content": "#parse('facet_fields.vm')\n#parse('facet_queries.vm')\n#parse('facet_ranges.vm')\n#parse('facet_pivot.vm')\n#parse('cluster.vm')"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/footer.vm",
    "content": "<hr/>\n<div>\n  <span>Options:</span>\n  #if($request.params.get('debugQuery'))\n  <a href=\"#url_for_home?#q#if($list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end\">disable debug</a>\n  #else\n  <a href=\"#url_for_lens&debugQuery=true&fl=*,score\">enable debug</a>\n  #end\n  #if($annotate)\n  <a href=\"#url_for_home?#q#if($list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#boostPrice\">disable annotation</a>\n  #else\n  <a href=\"#url_for_lens&annotateBrowse=true\">enable annotation</a>\n  #end\n  <a #annTitle(\"Click to switch to an XML response: &wt=xml\") href=\"#url_for_lens&wt=xml#if($request.params.get('debugQuery'))&debugQuery=true#end\">XML</a></div>\n<div>Generated by <a href=\"http://wiki.apache.org/solr/VelocityResponseWriter\">VelocityResponseWriter</a></div>\n<div><span>Documentation: </span> <a href=\"http://lucene.apache.org/solr\">Solr Home Page</a>, <a href=\"http://wiki.apache.org/solr\">Solr Wiki</a></div>\n<div>Disclaimer: The locations displayed in this demonstration are purely fictional.  It is more than likely that no store with the items listed actually exists at that location!</div>        "
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/head.vm",
    "content": "\n    ## An example of using an arbitrary request parameter\n    <title>#param('title')</title>\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"/>\n\n  <script type=\"text/javascript\" src=\"#{url_root}/js/lib/jquery-1.7.2.min.js\"></script>\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"#{url_for_solr}/admin/file?file=/velocity/main.css&contentType=text/css\"/>\n  <link rel=\"stylesheet\" href=\"#{url_for_solr}/admin/file?file=/velocity/jquery.autocomplete.css&contentType=text/css\" type=\"text/css\" />\n  <script type=\"text/javascript\" src=\"#{url_for_solr}/admin/file?file=/velocity/jquery.autocomplete.js&contentType=text/javascript\"></script>\n\n\n    <script>\n    $(document).ready(function(){\n      $(\"\\#q\").autocomplete('#{url_for_solr}/terms', {  ## backslash escaped #q as that is a macro defined in VM_global_library.vm\n           extraParams:{\n             'terms.prefix': function() { return $(\"\\#q\").val();},\n             'terms.sort': 'count',\n             'terms.fl': 'name',\n             'wt': 'velocity',\n             'v.template': 'suggest'\n           }\n         }\n      ).keydown(function(e){\n        if (e.keyCode === 13){\n          $(\"#query-form\").trigger('submit');\n        }\n      });\n\n      // http://localhost:8983/solr/terms?terms.fl=name&terms.prefix=i&terms.sort=count\n    });\n\n    </script>"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/header.vm",
    "content": "<div id=\"head\">\n  <span ><a href=\"#url_for_home#if($request.params.get('debugQuery'))?debugQuery=true#end\"><img src=\"#{url_root}/img/solr.png\" id=\"logo\"/></a></span>\n</div>"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/hit.vm",
    "content": "#set($docId = $doc.getFieldValue('id'))\n\n<div class=\"result-document\">\n#if($doc.getFieldValue('name'))\n  #parse(\"product-doc.vm\")\n#elseif($doc.getFieldValue('compName_s'))\n  #parse(\"join-doc.vm\")\n#else\n  #parse(\"richtext-doc.vm\")\n#end\n</div>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/hitGrouped.vm",
    "content": "<div class=\"result-document\">\n  <div class=\"result-title\"><b>$grouping.key</b></div>\n  <div>Total Matches in Group: $grouping.value.matches</div>\n  <div>#foreach ($group in $grouping.value.groups)\n    <div class=\"group-value\">$group.groupValue <span #annTitle(\"The count of the number of documents in this group\")>($group.doclist.numFound)</span></div>\n    <div class=\"group-doclist\" #annTitle(\"Contains the top scoring documents in the group\")>\n      #foreach ($doc in $group.doclist)\n        #set($docId = $doc.getFieldValue('id'))\n        #if($doc.getFieldValue('name'))\n          #parse(\"product-doc.vm\")\n        #elseif($doc.getFieldValue('compName_s'))\n          #parse(\"join-doc.vm\")\n        #else\n          #parse(\"richtext-doc.vm\")\n        #end\n      #end\n    </div>\n    #end</div>\n  </div>\n  #if($params.getBool(\"debugQuery\",false))\n    <a href=\"#\" onclick='jQuery(this).siblings(\"pre\").toggle(); return false;'>toggle explain</a>\n    <pre style=\"display:none\">$response.getExplainMap().get($doc.getFirstValue('id'))</pre>\n  #end\n</div>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/join-doc.vm",
    "content": "<div class=\"result-title\"><b>#field('compName_s')</b></div>\n<div>Id: #field('id') (company-details document for <a href=\"http://wiki.apache.org/solr/Join\" target=\"_new\">join</a>)</div>\n<div>Address: #field('address_s')</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/jquery.autocomplete.css",
    "content": ".ac_results {\n\tpadding: 0px;\n\tborder: 1px solid black;\n\tbackground-color: white;\n\toverflow: hidden;\n\tz-index: 99999;\n}\n\n.ac_results ul {\n\twidth: 100%;\n\tlist-style-position: outside;\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.ac_results li {\n\tmargin: 0px;\n\tpadding: 2px 5px;\n\tcursor: default;\n\tdisplay: block;\n\t/* \n\tif width will be 100% horizontal scrollbar will apear \n\twhen scroll mode will be used\n\t*/\n\t/*width: 100%;*/\n\tfont: menu;\n\tfont-size: 12px;\n\t/* \n\tit is very important, if line-height not setted or setted \n\tin relative units scroll will be broken in firefox\n\t*/\n\tline-height: 16px;\n\toverflow: hidden;\n}\n\n.ac_loading {\n\tbackground: white url('indicator.gif') right center no-repeat;\n}\n\n.ac_odd {\n\tbackground-color: #eee;\n}\n\n.ac_over {\n\tbackground-color: #0A246A;\n\tcolor: white;\n}\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/jquery.autocomplete.js",
    "content": "/*\n * Autocomplete - jQuery plugin 1.1pre\n *\n * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer\n *\n * Dual licensed under the MIT and GPL licenses:\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n *\n * Revision: $Id: jquery.autocomplete.js 5785 2008-07-12 10:37:33Z joern.zaefferer $\n *\n */\n\n;(function($) {\n\t\n$.fn.extend({\n\tautocomplete: function(urlOrData, options) {\n\t\tvar isUrl = typeof urlOrData == \"string\";\n\t\toptions = $.extend({}, $.Autocompleter.defaults, {\n\t\t\turl: isUrl ? urlOrData : null,\n\t\t\tdata: isUrl ? null : urlOrData,\n\t\t\tdelay: isUrl ? $.Autocompleter.defaults.delay : 10,\n\t\t\tmax: options && !options.scroll ? 10 : 150\n\t\t}, options);\n\t\t\n\t\t// if highlight is set to false, replace it with a do-nothing function\n\t\toptions.highlight = options.highlight || function(value) { return value; };\n\t\t\n\t\t// if the formatMatch option is not specified, then use formatItem for backwards compatibility\n\t\toptions.formatMatch = options.formatMatch || options.formatItem;\n\t\t\n\t\treturn this.each(function() {\n\t\t\tnew $.Autocompleter(this, options);\n\t\t});\n\t},\n\tresult: function(handler) {\n\t\treturn this.bind(\"result\", handler);\n\t},\n\tsearch: function(handler) {\n\t\treturn this.trigger(\"search\", [handler]);\n\t},\n\tflushCache: function() {\n\t\treturn this.trigger(\"flushCache\");\n\t},\n\tsetOptions: function(options){\n\t\treturn this.trigger(\"setOptions\", [options]);\n\t},\n\tunautocomplete: function() {\n\t\treturn this.trigger(\"unautocomplete\");\n\t}\n});\n\n$.Autocompleter = function(input, options) {\n\n\tvar KEY = {\n\t\tUP: 38,\n\t\tDOWN: 40,\n\t\tDEL: 46,\n\t\tTAB: 9,\n\t\tRETURN: 13,\n\t\tESC: 27,\n\t\tCOMMA: 188,\n\t\tPAGEUP: 33,\n\t\tPAGEDOWN: 34,\n\t\tBACKSPACE: 8\n\t};\n\n\t// Create $ object for input element\n\tvar $input = $(input).attr(\"autocomplete\", \"off\").addClass(options.inputClass);\n\n\tvar timeout;\n\tvar previousValue = \"\";\n\tvar cache = $.Autocompleter.Cache(options);\n\tvar hasFocus = 0;\n\tvar lastKeyPressCode;\n\tvar config = {\n\t\tmouseDownOnSelect: false\n\t};\n\tvar select = $.Autocompleter.Select(options, input, selectCurrent, config);\n\t\n\tvar blockSubmit;\n\t\n\t// prevent form submit in opera when selecting with return key\n\t$.browser.opera && $(input.form).bind(\"submit.autocomplete\", function() {\n\t\tif (blockSubmit) {\n\t\t\tblockSubmit = false;\n\t\t\treturn false;\n\t\t}\n\t});\n\t\n\t// only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all\n\t$input.bind(($.browser.opera ? \"keypress\" : \"keydown\") + \".autocomplete\", function(event) {\n\t\t// track last key pressed\n\t\tlastKeyPressCode = event.keyCode;\n\t\tswitch(event.keyCode) {\n\t\t\n\t\t\tcase KEY.UP:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.prev();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.DOWN:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.next();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.PAGEUP:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.pageUp();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.PAGEDOWN:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tif ( select.visible() ) {\n\t\t\t\t\tselect.pageDown();\n\t\t\t\t} else {\n\t\t\t\t\tonChange(0, true);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\t// matches also semicolon\n\t\t\tcase options.multiple && $.trim(options.multipleSeparator) == \",\" && KEY.COMMA:\n\t\t\tcase KEY.TAB:\n\t\t\tcase KEY.RETURN:\n\t\t\t\tif( selectCurrent() ) {\n\t\t\t\t\t// stop default to prevent a form submit, Opera needs special handling\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tblockSubmit = true;\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase KEY.ESC:\n\t\t\t\tselect.hide();\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tdefault:\n\t\t\t\tclearTimeout(timeout);\n\t\t\t\ttimeout = setTimeout(onChange, options.delay);\n\t\t\t\tbreak;\n\t\t}\n\t}).focus(function(){\n\t\t// track whether the field has focus, we shouldn't process any\n\t\t// results if the field no longer has focus\n\t\thasFocus++;\n\t}).blur(function() {\n\t\thasFocus = 0;\n\t\tif (!config.mouseDownOnSelect) {\n\t\t\thideResults();\n\t\t}\n\t}).click(function() {\n\t\t// show select when clicking in a focused field\n\t\tif ( hasFocus++ > 1 && !select.visible() ) {\n\t\t\tonChange(0, true);\n\t\t}\n\t}).bind(\"search\", function() {\n\t\t// TODO why not just specifying both arguments?\n\t\tvar fn = (arguments.length > 1) ? arguments[1] : null;\n\t\tfunction findValueCallback(q, data) {\n\t\t\tvar result;\n\t\t\tif( data && data.length ) {\n\t\t\t\tfor (var i=0; i < data.length; i++) {\n\t\t\t\t\tif( data[i].result.toLowerCase() == q.toLowerCase() ) {\n\t\t\t\t\t\tresult = data[i];\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif( typeof fn == \"function\" ) fn(result);\n\t\t\telse $input.trigger(\"result\", result && [result.data, result.value]);\n\t\t}\n\t\t$.each(trimWords($input.val()), function(i, value) {\n\t\t\trequest(value, findValueCallback, findValueCallback);\n\t\t});\n\t}).bind(\"flushCache\", function() {\n\t\tcache.flush();\n\t}).bind(\"setOptions\", function() {\n\t\t$.extend(options, arguments[1]);\n\t\t// if we've updated the data, repopulate\n\t\tif ( \"data\" in arguments[1] )\n\t\t\tcache.populate();\n\t}).bind(\"unautocomplete\", function() {\n\t\tselect.unbind();\n\t\t$input.unbind();\n\t\t$(input.form).unbind(\".autocomplete\");\n\t});\n\t\n\t\n\tfunction selectCurrent() {\n\t\tvar selected = select.selected();\n\t\tif( !selected )\n\t\t\treturn false;\n\t\t\n\t\tvar v = selected.result;\n\t\tpreviousValue = v;\n\t\t\n\t\tif ( options.multiple ) {\n\t\t\tvar words = trimWords($input.val());\n\t\t\tif ( words.length > 1 ) {\n\t\t\t\tv = words.slice(0, words.length - 1).join( options.multipleSeparator ) + options.multipleSeparator + v;\n\t\t\t}\n\t\t\tv += options.multipleSeparator;\n\t\t}\n\t\t\n\t\t$input.val(v);\n\t\thideResultsNow();\n\t\t$input.trigger(\"result\", [selected.data, selected.value]);\n\t\treturn true;\n\t}\n\t\n\tfunction onChange(crap, skipPrevCheck) {\n\t\tif( lastKeyPressCode == KEY.DEL ) {\n\t\t\tselect.hide();\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tvar currentValue = $input.val();\n\t\t\n\t\tif ( !skipPrevCheck && currentValue == previousValue )\n\t\t\treturn;\n\t\t\n\t\tpreviousValue = currentValue;\n\t\t\n\t\tcurrentValue = lastWord(currentValue);\n\t\tif ( currentValue.length >= options.minChars) {\n\t\t\t$input.addClass(options.loadingClass);\n\t\t\tif (!options.matchCase)\n\t\t\t\tcurrentValue = currentValue.toLowerCase();\n\t\t\trequest(currentValue, receiveData, hideResultsNow);\n\t\t} else {\n\t\t\tstopLoading();\n\t\t\tselect.hide();\n\t\t}\n\t};\n\t\n\tfunction trimWords(value) {\n\t\tif ( !value ) {\n\t\t\treturn [\"\"];\n\t\t}\n\t\tvar words = value.split( options.multipleSeparator );\n\t\tvar result = [];\n\t\t$.each(words, function(i, value) {\n\t\t\tif ( $.trim(value) )\n\t\t\t\tresult[i] = $.trim(value);\n\t\t});\n\t\treturn result;\n\t}\n\t\n\tfunction lastWord(value) {\n\t\tif ( !options.multiple )\n\t\t\treturn value;\n\t\tvar words = trimWords(value);\n\t\treturn words[words.length - 1];\n\t}\n\t\n\t// fills in the input box w/the first match (assumed to be the best match)\n\t// q: the term entered\n\t// sValue: the first matching result\n\tfunction autoFill(q, sValue){\n\t\t// autofill in the complete box w/the first match as long as the user hasn't entered in more data\n\t\t// if the last user key pressed was backspace, don't autofill\n\t\tif( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) {\n\t\t\t// fill in the value (keep the case the user has typed)\n\t\t\t$input.val($input.val() + sValue.substring(lastWord(previousValue).length));\n\t\t\t// select the portion of the value not typed by the user (so the next character will erase)\n\t\t\t$.Autocompleter.Selection(input, previousValue.length, previousValue.length + sValue.length);\n\t\t}\n\t};\n\n\tfunction hideResults() {\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(hideResultsNow, 200);\n\t};\n\n\tfunction hideResultsNow() {\n\t\tvar wasVisible = select.visible();\n\t\tselect.hide();\n\t\tclearTimeout(timeout);\n\t\tstopLoading();\n\t\tif (options.mustMatch) {\n\t\t\t// call search and run callback\n\t\t\t$input.search(\n\t\t\t\tfunction (result){\n\t\t\t\t\t// if no value found, clear the input box\n\t\t\t\t\tif( !result ) {\n\t\t\t\t\t\tif (options.multiple) {\n\t\t\t\t\t\t\tvar words = trimWords($input.val()).slice(0, -1);\n\t\t\t\t\t\t\t$input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : \"\") );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t$input.val( \"\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t\tif (wasVisible)\n\t\t\t// position cursor at end of input field\n\t\t\t$.Autocompleter.Selection(input, input.value.length, input.value.length);\n\t};\n\n\tfunction receiveData(q, data) {\n\t\tif ( data && data.length && hasFocus ) {\n\t\t\tstopLoading();\n\t\t\tselect.display(data, q);\n\t\t\tautoFill(q, data[0].value);\n\t\t\tselect.show();\n\t\t} else {\n\t\t\thideResultsNow();\n\t\t}\n\t};\n\n\tfunction request(term, success, failure) {\n\t\tif (!options.matchCase)\n\t\t\tterm = term.toLowerCase();\n\t\tvar data = cache.load(term);\n\t\tdata = null; // Avoid buggy cache and go to Solr every time \n\t\t// recieve the cached data\n\t\tif (data && data.length) {\n\t\t\tsuccess(term, data);\n\t\t// if an AJAX url has been supplied, try loading the data now\n\t\t} else if( (typeof options.url == \"string\") && (options.url.length > 0) ){\n\t\t\t\n\t\t\tvar extraParams = {\n\t\t\t\ttimestamp: +new Date()\n\t\t\t};\n\t\t\t$.each(options.extraParams, function(key, param) {\n\t\t\t\textraParams[key] = typeof param == \"function\" ? param() : param;\n\t\t\t});\n\t\t\t\n\t\t\t$.ajax({\n\t\t\t\t// try to leverage ajaxQueue plugin to abort previous requests\n\t\t\t\tmode: \"abort\",\n\t\t\t\t// limit abortion to this input\n\t\t\t\tport: \"autocomplete\" + input.name,\n\t\t\t\tdataType: options.dataType,\n\t\t\t\turl: options.url,\n\t\t\t\tdata: $.extend({\n\t\t\t\t\tq: lastWord(term),\n\t\t\t\t\tlimit: options.max\n\t\t\t\t}, extraParams),\n\t\t\t\tsuccess: function(data) {\n\t\t\t\t\tvar parsed = options.parse && options.parse(data) || parse(data);\n\t\t\t\t\tcache.add(term, parsed);\n\t\t\t\t\tsuccess(term, parsed);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\t// if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match\n\t\t\tselect.emptyList();\n\t\t\tfailure(term);\n\t\t}\n\t};\n\t\n\tfunction parse(data) {\n\t\tvar parsed = [];\n\t\tvar rows = data.split(\"\\n\");\n\t\tfor (var i=0; i < rows.length; i++) {\n\t\t\tvar row = $.trim(rows[i]);\n\t\t\tif (row) {\n\t\t\t\trow = row.split(\"|\");\n\t\t\t\tparsed[parsed.length] = {\n\t\t\t\t\tdata: row,\n\t\t\t\t\tvalue: row[0],\n\t\t\t\t\tresult: options.formatResult && options.formatResult(row, row[0]) || row[0]\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t\treturn parsed;\n\t};\n\n\tfunction stopLoading() {\n\t\t$input.removeClass(options.loadingClass);\n\t};\n\n};\n\n$.Autocompleter.defaults = {\n\tinputClass: \"ac_input\",\n\tresultsClass: \"ac_results\",\n\tloadingClass: \"ac_loading\",\n\tminChars: 1,\n\tdelay: 400,\n\tmatchCase: false,\n\tmatchSubset: true,\n\tmatchContains: false,\n\tcacheLength: 10,\n\tmax: 100,\n\tmustMatch: false,\n\textraParams: {},\n\tselectFirst: false,\n\tformatItem: function(row) { return row[0]; },\n\tformatMatch: null,\n\tautoFill: false,\n\twidth: 0,\n\tmultiple: false,\n\tmultipleSeparator: \", \",\n\thighlight: function(value, term) {\n\t\treturn value.replace(new RegExp(\"(?![^&;]+;)(?!<[^<>]*)(\" + term.replace(/([\\^\\$\\(\\)\\[\\]\\{\\}\\*\\.\\+\\?\\|\\\\])/gi, \"\\\\$1\") + \")(?![^<>]*>)(?![^&;]+;)\", \"gi\"), \"<strong>$1</strong>\");\n\t},\n    scroll: true,\n    scrollHeight: 180\n};\n\n$.Autocompleter.Cache = function(options) {\n\n\tvar data = {};\n\tvar length = 0;\n\t\n\tfunction matchSubset(s, sub) {\n\t\tif (!options.matchCase) \n\t\t\ts = s.toLowerCase();\n\t\tvar i = s.indexOf(sub);\n\t\tif (options.matchContains == \"word\"){\n\t\t\ti = s.toLowerCase().search(\"\\\\b\" + sub.toLowerCase());\n\t\t}\n\t\tif (i == -1) return false;\n\t\treturn i == 0 || options.matchContains;\n\t};\n\t\n\tfunction add(q, value) {\n\t\tif (length > options.cacheLength){\n\t\t\tflush();\n\t\t}\n\t\tif (!data[q]){ \n\t\t\tlength++;\n\t\t}\n\t\tdata[q] = value;\n\t}\n\t\n\tfunction populate(){\n\t\tif( !options.data ) return false;\n\t\t// track the matches\n\t\tvar stMatchSets = {},\n\t\t\tnullData = 0;\n\n\t\t// no url was specified, we need to adjust the cache length to make sure it fits the local data store\n\t\tif( !options.url ) options.cacheLength = 1;\n\t\t\n\t\t// track all options for minChars = 0\n\t\tstMatchSets[\"\"] = [];\n\t\t\n\t\t// loop through the array and create a lookup structure\n\t\tfor ( var i = 0, ol = options.data.length; i < ol; i++ ) {\n\t\t\tvar rawValue = options.data[i];\n\t\t\t// if rawValue is a string, make an array otherwise just reference the array\n\t\t\trawValue = (typeof rawValue == \"string\") ? [rawValue] : rawValue;\n\t\t\t\n\t\t\tvar value = options.formatMatch(rawValue, i+1, options.data.length);\n\t\t\tif ( value === false )\n\t\t\t\tcontinue;\n\t\t\t\t\n\t\t\tvar firstChar = value.charAt(0).toLowerCase();\n\t\t\t// if no lookup array for this character exists, look it up now\n\t\t\tif( !stMatchSets[firstChar] ) \n\t\t\t\tstMatchSets[firstChar] = [];\n\n\t\t\t// if the match is a string\n\t\t\tvar row = {\n\t\t\t\tvalue: value,\n\t\t\t\tdata: rawValue,\n\t\t\t\tresult: options.formatResult && options.formatResult(rawValue) || value\n\t\t\t};\n\t\t\t\n\t\t\t// push the current match into the set list\n\t\t\tstMatchSets[firstChar].push(row);\n\n\t\t\t// keep track of minChars zero items\n\t\t\tif ( nullData++ < options.max ) {\n\t\t\t\tstMatchSets[\"\"].push(row);\n\t\t\t}\n\t\t};\n\n\t\t// add the data items to the cache\n\t\t$.each(stMatchSets, function(i, value) {\n\t\t\t// increase the cache size\n\t\t\toptions.cacheLength++;\n\t\t\t// add to the cache\n\t\t\tadd(i, value);\n\t\t});\n\t}\n\t\n\t// populate any existing data\n\tsetTimeout(populate, 25);\n\t\n\tfunction flush(){\n\t\tdata = {};\n\t\tlength = 0;\n\t}\n\t\n\treturn {\n\t\tflush: flush,\n\t\tadd: add,\n\t\tpopulate: populate,\n\t\tload: function(q) {\n\t\t\tif (!options.cacheLength || !length)\n\t\t\t\treturn null;\n\t\t\t/* \n\t\t\t * if dealing w/local data and matchContains than we must make sure\n\t\t\t * to loop through all the data collections looking for matches\n\t\t\t */\n\t\t\tif( !options.url && options.matchContains ){\n\t\t\t\t// track all matches\n\t\t\t\tvar csub = [];\n\t\t\t\t// loop through all the data grids for matches\n\t\t\t\tfor( var k in data ){\n\t\t\t\t\t// don't search through the stMatchSets[\"\"] (minChars: 0) cache\n\t\t\t\t\t// this prevents duplicates\n\t\t\t\t\tif( k.length > 0 ){\n\t\t\t\t\t\tvar c = data[k];\n\t\t\t\t\t\t$.each(c, function(i, x) {\n\t\t\t\t\t\t\t// if we've got a match, add it to the array\n\t\t\t\t\t\t\tif (matchSubset(x.value, q)) {\n\t\t\t\t\t\t\t\tcsub.push(x);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t\t\treturn csub;\n\t\t\t} else \n\t\t\t// if the exact item exists, use it\n\t\t\tif (data[q]){\n\t\t\t\treturn data[q];\n\t\t\t} else\n\t\t\tif (options.matchSubset) {\n\t\t\t\tfor (var i = q.length - 1; i >= options.minChars; i--) {\n\t\t\t\t\tvar c = data[q.substr(0, i)];\n\t\t\t\t\tif (c) {\n\t\t\t\t\t\tvar csub = [];\n\t\t\t\t\t\t$.each(c, function(i, x) {\n\t\t\t\t\t\t\tif (matchSubset(x.value, q)) {\n\t\t\t\t\t\t\t\tcsub[csub.length] = x;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t\treturn csub;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n};\n\n$.Autocompleter.Select = function (options, input, select, config) {\n\tvar CLASSES = {\n\t\tACTIVE: \"ac_over\"\n\t};\n\t\n\tvar listItems,\n\t\tactive = -1,\n\t\tdata,\n\t\tterm = \"\",\n\t\tneedsInit = true,\n\t\telement,\n\t\tlist;\n\t\n\t// Create results\n\tfunction init() {\n\t\tif (!needsInit)\n\t\t\treturn;\n\t\telement = $(\"<div/>\")\n\t\t.hide()\n\t\t.addClass(options.resultsClass)\n\t\t.css(\"position\", \"absolute\")\n\t\t.appendTo(document.body);\n\t\n\t\tlist = $(\"<ul/>\").appendTo(element).mouseover( function(event) {\n\t\t\tif(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') {\n\t            active = $(\"li\", list).removeClass(CLASSES.ACTIVE).index(target(event));\n\t\t\t    $(target(event)).addClass(CLASSES.ACTIVE);            \n\t        }\n\t\t}).click(function(event) {\n\t\t\t$(target(event)).addClass(CLASSES.ACTIVE);\n\t\t\tselect();\n\t\t\t// TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus\n\t\t\tinput.focus();\n\t\t\treturn false;\n\t\t}).mousedown(function() {\n\t\t\tconfig.mouseDownOnSelect = true;\n\t\t}).mouseup(function() {\n\t\t\tconfig.mouseDownOnSelect = false;\n\t\t});\n\t\t\n\t\tif( options.width > 0 )\n\t\t\telement.css(\"width\", options.width);\n\t\t\t\n\t\tneedsInit = false;\n\t} \n\t\n\tfunction target(event) {\n\t\tvar element = event.target;\n\t\twhile(element && element.tagName != \"LI\")\n\t\t\telement = element.parentNode;\n\t\t// more fun with IE, sometimes event.target is empty, just ignore it then\n\t\tif(!element)\n\t\t\treturn [];\n\t\treturn element;\n\t}\n\n\tfunction moveSelect(step) {\n\t\tlistItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE);\n\t\tmovePosition(step);\n        var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE);\n        if(options.scroll) {\n            var offset = 0;\n            listItems.slice(0, active).each(function() {\n\t\t\t\toffset += this.offsetHeight;\n\t\t\t});\n            if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) {\n                list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight());\n            } else if(offset < list.scrollTop()) {\n                list.scrollTop(offset);\n            }\n        }\n\t};\n\t\n\tfunction movePosition(step) {\n\t\tactive += step;\n\t\tif (active < 0) {\n\t\t\tactive = listItems.size() - 1;\n\t\t} else if (active >= listItems.size()) {\n\t\t\tactive = 0;\n\t\t}\n\t}\n\t\n\tfunction limitNumberOfItems(available) {\n\t\treturn options.max && options.max < available\n\t\t\t? options.max\n\t\t\t: available;\n\t}\n\t\n\tfunction fillList() {\n\t\tlist.empty();\n\t\tvar max = limitNumberOfItems(data.length);\n\t\tfor (var i=0; i < max; i++) {\n\t\t\tif (!data[i])\n\t\t\t\tcontinue;\n\t\t\tvar formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term);\n\t\t\tif ( formatted === false )\n\t\t\t\tcontinue;\n\t\t\tvar li = $(\"<li/>\").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? \"ac_even\" : \"ac_odd\").appendTo(list)[0];\n\t\t\t$.data(li, \"ac_data\", data[i]);\n\t\t}\n\t\tlistItems = list.find(\"li\");\n\t\tif ( options.selectFirst ) {\n\t\t\tlistItems.slice(0, 1).addClass(CLASSES.ACTIVE);\n\t\t\tactive = 0;\n\t\t}\n\t\t// apply bgiframe if available\n\t\tif ( $.fn.bgiframe )\n\t\t\tlist.bgiframe();\n\t}\n\t\n\treturn {\n\t\tdisplay: function(d, q) {\n\t\t\tinit();\n\t\t\tdata = d;\n\t\t\tterm = q;\n\t\t\tfillList();\n\t\t},\n\t\tnext: function() {\n\t\t\tmoveSelect(1);\n\t\t},\n\t\tprev: function() {\n\t\t\tmoveSelect(-1);\n\t\t},\n\t\tpageUp: function() {\n\t\t\tif (active != 0 && active - 8 < 0) {\n\t\t\t\tmoveSelect( -active );\n\t\t\t} else {\n\t\t\t\tmoveSelect(-8);\n\t\t\t}\n\t\t},\n\t\tpageDown: function() {\n\t\t\tif (active != listItems.size() - 1 && active + 8 > listItems.size()) {\n\t\t\t\tmoveSelect( listItems.size() - 1 - active );\n\t\t\t} else {\n\t\t\t\tmoveSelect(8);\n\t\t\t}\n\t\t},\n\t\thide: function() {\n\t\t\telement && element.hide();\n\t\t\tlistItems && listItems.removeClass(CLASSES.ACTIVE);\n\t\t\tactive = -1;\n\t\t},\n\t\tvisible : function() {\n\t\t\treturn element && element.is(\":visible\");\n\t\t},\n\t\tcurrent: function() {\n\t\t\treturn this.visible() && (listItems.filter(\".\" + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]);\n\t\t},\n\t\tshow: function() {\n\t\t\tvar offset = $(input).offset();\n\t\t\telement.css({\n\t\t\t\twidth: typeof options.width == \"string\" || options.width > 0 ? options.width : $(input).width(),\n\t\t\t\ttop: offset.top + input.offsetHeight,\n\t\t\t\tleft: offset.left\n\t\t\t}).show();\n            if(options.scroll) {\n                list.scrollTop(0);\n                list.css({\n\t\t\t\t\tmaxHeight: options.scrollHeight,\n\t\t\t\t\toverflow: 'auto'\n\t\t\t\t});\n\t\t\t\t\n                if($.browser.msie && typeof document.body.style.maxHeight === \"undefined\") {\n\t\t\t\t\tvar listHeight = 0;\n\t\t\t\t\tlistItems.each(function() {\n\t\t\t\t\t\tlistHeight += this.offsetHeight;\n\t\t\t\t\t});\n\t\t\t\t\tvar scrollbarsVisible = listHeight > options.scrollHeight;\n                    list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight );\n\t\t\t\t\tif (!scrollbarsVisible) {\n\t\t\t\t\t\t// IE doesn't recalculate width when scrollbar disappears\n\t\t\t\t\t\tlistItems.width( list.width() - parseInt(listItems.css(\"padding-left\")) - parseInt(listItems.css(\"padding-right\")) );\n\t\t\t\t\t}\n                }\n                \n            }\n\t\t},\n\t\tselected: function() {\n\t\t\tvar selected = listItems && listItems.filter(\".\" + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);\n\t\t\treturn selected && selected.length && $.data(selected[0], \"ac_data\");\n\t\t},\n\t\temptyList: function (){\n\t\t\tlist && list.empty();\n\t\t},\n\t\tunbind: function() {\n\t\t\telement && element.remove();\n\t\t}\n\t};\n};\n\n$.Autocompleter.Selection = function(field, start, end) {\n\tif( field.createTextRange ){\n\t\tvar selRange = field.createTextRange();\n\t\tselRange.collapse(true);\n\t\tselRange.moveStart(\"character\", start);\n\t\tselRange.moveEnd(\"character\", end);\n\t\tselRange.select();\n\t} else if( field.setSelectionRange ){\n\t\tfield.setSelectionRange(start, end);\n\t} else {\n\t\tif( field.selectionStart ){\n\t\t\tfield.selectionStart = start;\n\t\t\tfield.selectionEnd = end;\n\t\t}\n\t}\n\tfield.focus();\n};\n\n})(jQuery);"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/layout.vm",
    "content": "<html>\n<head>\n  #parse(\"head.vm\")\n</head>\n  <body>\n    <div id=\"admin\"><a href=\"#url_root/#/#core_name\">Solr Admin</a></div>\n    <div id=\"header\">\n      #parse(\"header.vm\")\n    </div>\n    <div id=\"tabs\">\n      #parse(\"tabs.vm\")\n    </div>\n    <div id=\"content\">\n      $content\n    </div>\n    <div id=\"footer\">\n      #parse(\"footer.vm\")\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/main.css",
    "content": "#admin{\n  text-align: right;\n  vertical-align: top; \n}\n\n#head{\n  width: 100%;\n}\n.array-field {\n  border: 2px solid #474747;\n  background: #FFE9D8;\n  padding: 5px;\n  margin: 5px;\n}\n\n.array-field-list li {\n  list-style: circle;\n  margin-left: 20px;\n}\n\n.parsed_query_header {\n  font-family: Helvetica, Arial, sans-serif;\n  font-size: 10pt;\n  font-weight: bold;\n}\n\n.parsed_query {\n  font-family: Courier, Courier New, monospaced;\n  font-size: 10pt;\n  font-weight: normal;\n}\n\nbody {\n  font-family: Helvetica, Arial, sans-serif;\n  font-size: 10pt;\n}\n\na {\n  color: #43a4b1;\n}\n\n.navigators {\n  float: left;\n  margin: 5px;\n  margin-top: 0px;\n  width: 185px;\n  padding: 5px;\n  top: -20px;\n  position: relative;  \n}\n\n.navigators h2 {\n  background: #FEC293;\n  border: 1px solid #ce9d77;\n  padding: 5px;\n}\n\n.navigators ul {\n  list-style: none;\n  margin: 0;\n  margin-bottom: 5px;\n  margin-top: 5px;\n  padding-left: 10px;\n}\n\n.navigators ul li {\n  color: #999;\n  padding: 2px;\n}\n\n\n\n.facet-field {\n  font-weight: bold;\n}\n\n.highlight {\n  color: white;\n  background-color: gray;\n  border: 1px black solid;\n}\n\n.highlight-box {\n  margin-left: 15px;\n}\n\n.field-name {\n  font-weight: bold;\n}\n\n.highlighted-facet-field {\n  background: white;\n}\n\n.constraints {\n  margin-top: 10px;\n}\n\n#query-form{\n  width: 80%;\n}\n\n\n\n.query-box, .constraints {\n  padding: 5px;\n  margin: 5px;\n  font-weight: normal;\n  font-size: 24px;\n  letter-spacing: 0.08em;\n}\n\n.query-box #q {\n  margin-left: 8px;\n  width: 60%;\n  height: 50px;\n  border: 1px solid #999;\n  font-size: 1em;\n  padding: 0.4em;\n}\n\n.query-box {\n  \n}\n\n.query-boost {\n  \n  top: 10px;\n  left: 50px;\n  position: relative;\n  font-size: 0.8em;\n}\n\n.query-box .inputs{\n  left: 180px;\n  position: relative;\n  \n}\n\n#logo {\n  margin: 10px;\n  border-style: none;\n}\n\n.pagination {\n  padding-left: 33%;\n  background: #eee;\n  margin: 5px;\n  margin-left: 210px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n.result-document {\n  border: 1px solid #999;\n  padding: 5px;\n  margin: 5px;\n  margin-left: 210px;\n  margin-bottom: 15px;\n}\n\n.result-document div{\n  padding: 5px;\n}\n\n.result-title{\n  width:60%;\n}\n\n.result-body{\n  background: #ddd;\n}\n\n.mlt{\n  \n}\n\n.map{\n  float: right;\n  position: relative;\n  top: -25px;  \n}\n\n.result-document:nth-child(2n+1) {\n  background-color: #eee;\n}\n\n\n.selected-facet-field {\n  font-weight: bold;\n}\n\nli.show {\n  list-style: disc;\n}\n\n.group-value{\n  font-weight: bold;\n}\n\n.error {\n  color: white;\n  background-color: red;\n  left: 210px;\n  width:80%;\n  position: relative;\n\n}\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/product-doc.vm",
    "content": "<div class=\"result-title\"><b>#field('name')</b><span class=\"mlt\">   #if($params.getBool('mlt', false) == false)<a href=\"#lensNoQ&q=id:$docId&mlt=true\">More Like This</a>#end</span></div>\n##do we have a physical store for this product\n#set($store = $doc.getFieldValue('store'))\n#if($store)<div class=\"map\"><img src=\"http://maps.google.com/maps/api/staticmap?&zoom=12&size=150x80&maptype=roadmap&markers=$doc.getFieldValue('store')&sensor=false\" /><div><small><a target=\"_map\" href=\"http://maps.google.com/?q=$store&amp;source=embed\">Larger Map</a></small></div></div>#end\n<div>Id: #field('id')</div>\n<div>Price: #field('price_c')</div>\n<div>Features: #field('features')</div>\n<div>In Stock: #field('inStock')</div>\n<div class=\"mlt\">\n  #set($mlt = $mltResults.get($docId))\n  #set($mltOn = $params.getBool('mlt'))\n  #if($mltOn == true)<div class=\"field-name\">Similar Items</div>#end\n  #if ($mltOn && $mlt && $mlt.size() > 0)\n  <ul>\n    #foreach($mltHit in $mlt)\n      #set($mltId = $mltHit.getFieldValue('id'))\n      <li><div><a href=\"#url_for_home?q=id:$mltId\">$mltId</a></div><div><span class=\"field-name\">Name:</span> $mltHit.getFieldValue('name')</div>\n        <div><span class=\"field-name\">Price:</span> $!number.currency($mltHit.getFieldValue('price')) <span class=\"field-name\">In Stock:</span> $mltHit.getFieldValue('inStock')</div>\n\n      </li>\n    #end\n  </ul>\n  #elseif($mltOn && $mlt.size() == 0)\n    <div>No Similar Items Found</div>\n  #end\n</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/query.vm",
    "content": "<div class=\"query-box\">\n  <form id=\"query-form\" action=\"#{url_for_home}\" method=\"GET\">\n    <div class=\"inputs\">\n      <span #annTitle(\"Add the query using the &q= parameter\")>Find: <input type=\"text\" id=\"q\" name=\"q\" value=\"$!esc.html($params.get('q'))\"/> <input type=\"submit\" id=\"querySubmit\"/> <input type=\"reset\"/></span>\n      <div class=\"query-boost\"><span #annTitle(\"Add the boost function &bf=price to the query\")><input type=\"checkbox\" name=\"bf\" value=\"price\" #if($request.params.get('bf') == 'price')checked=\"true\"#end>Boost by Price</input></span>\n      #parse(\"querySpatial.vm\")\n      #parse(\"queryGroup.vm\")\n      </div>\n  </div>\n\n    #if($request.params.get('debugQuery'))\n      <input type=\"hidden\" name=\"debugQuery\" value=\"true\"/>\n    #end\n    #if($annotate == true)\n      <input type=\"hidden\" name=\"annotateBrowse\" value=\"true\"/>\n    #end\n    #foreach($fq in $request.params.getParams('fq'))\n      #if ($fq != \"{!bbox}\")\n        <input type=\"hidden\" name=\"fq\" id=\"allFQs\" value=\"$esc.html($fq)\"/>\n      #end\n    #end\n    <div class=\"constraints\" #annTitle(\"Lists out the &fq filters.  Click to remove.\")>\n      #foreach($fq in $params.getParams('fq'))\n        #set($previous_fq_count=$velocityCount - 1)\n        #if($fq != '')\n        &gt; <a style=\"{text-decoration: line-through;}\" href=\"#url_for_filters($request.params.getParams('fq').subList(0,$previous_fq_count))\">$fq</a>\n        #end\n      #end\n    </div>\n    <div class=\"parsed_query_header\">\n     #if($request.params.get('debugQuery'))\n        <a href=\"#\" onclick='jQuery(this).siblings(\"div\").toggle(); return false;'>toggle parsed query</a>\n        <div class=\"parsed_query\" style=\"display:none\">$response.response.debug.parsedquery</div>\n      #end\n      #set($queryOpts = $request.params.get(\"queryOpts\"))\n      #if($queryOpts && $queryOpts != \"\")\n        <input type=\"hidden\" name=\"queryOpts\" value=\"$queryOpts\"/>\n      #end\n    </div>\n  </form>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/queryGroup.vm",
    "content": "#set($queryOpts = $params.get(\"queryOpts\"))\n#if($queryOpts == \"group\")\n<div>\n        #set($groupF = $request.params.get('group.field'))\n        <label #annTitle(\"Add the &group.field parameter. Multiselect is supported\")>Group By:\n          <select id=\"group\" name=\"group.field\" multiple=\"true\">\n            ##TODO: Handle multiple selects correctly\n            <option value=\"none\"\n            #if($groupF == '')selected=\"true\"#end>No Group</option>\n            <option value=\"manu_exact\"\n            #if($groupF == 'manu_exact')selected=\"true\"#end>Manufacturer</option>\n            <option value=\"popularity\"\n            #if($groupF == 'popularity')selected=\"true\"#end>Popularity</option>\n          </select>\n        </label>  \n<input type=\"hidden\" name=\"group\" value=\"true\"/>\n</div>\n\n#end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/querySpatial.vm",
    "content": "#set($queryOpts = $params.get(\"queryOpts\"))\n#if($queryOpts == \"spatial\")\n<div>\n        #set($loc = $request.params.get('pt'))\n        #set($dist = $request.params.get('d', \"10\"))\n        <label #annTitle(\"Add the &pt parameter\")>Location Filter:\n          <select id=\"pt\" name=\"pt\">\n            <option value=\"none\"\n            #if($loc == '')selected=\"true\"#end>No Filter</option>\n            <option value=\"45.17614,-93.87341\"\n            #if($loc == '45.17614,-93.87341')selected=\"true\"#end>Buffalo, MN</option>\n            <option value=\"37.7752,-100.0232\"\n            #if($loc == '37.7752,-100.0232')selected=\"true\"#end>Dodge City, KS</option>\n            <option value=\"35.0752,-97.032\"\n            #if($loc == '35.0752,-97.032')selected=\"true\"#end>Oklahoma City, OK</option>\n            <option value=\"37.7752,-122.4232\"\n            #if($loc == '37.7752,-122.4232')selected=\"true\"#end>San Francisco CA</option>\n          </select>\n  </label>\n  <span #annTitle(\"Add the &d parameter\")>Distance (KM): <input id=\"d\" name=\"d\" type=\"text\" size=\"6\"\n                                                                value=\"#if($dist != '')${dist}#{else}10#end\"/></span>\n<input type=\"hidden\" name=\"sfield\" value=\"store\"/>\n<input type=\"hidden\" id=\"spatialFQ\" name=\"fq\" value=\"\"/>\n<input type=\"hidden\" name=\"queryOpts\" value=\"spatial\"/>        \n</div>\n<script type=\"text/javascript\">\n  $('#query-form').submit(function() {\n    if ($(\"#pt\").val() != \"none\") {\n      $(\"#spatialFQ\").val(\"{!bbox}\");\n    }\n    $fqs = $(\"#allFQs\").val();\n    $fqs = $fqs.replace(\"{!bbox}\", \"\");\n    if ($fqs == ''){\n      $(\"#allFQs\").remove();\n    }\n    $(\"#allFQs\").val($fqs);\n    return true;\n    });\n</script>\n#end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/richtext-doc.vm",
    "content": "## Mimetype to extension map for detecting file type and show icon\n## List of types match the icons in /solr/img/filetypes\n#set($extMap = {\"application/x-7z-compressed\": \"7z\",\n                 \"application/postscript\": \"ai\",\n                 \"application/pgp-signature\": \"asc\",\n                 \"application/octet-stream\": \"bin\",\n                 \"application/x-bzip2\": \"bz2\",\n                 \"text/x-c\": \"c\",\n                 \"application/vnd.ms-htmlhelp\": \"chm\",\n                 \"application/java-vm\": \"class\",\n                 \"text/css\": \"css\",\n                 \"text/csv\": \"csv\",\n                 \"application/x-debian-package\": \"deb\",\n                 \"application/msword\": \"doc\",\n                 \"message/rfc822\": \"eml\",\n                 \"image/gif\": \"gif\",\n                 \"application/winhlp\": \"hlp\",\n                 \"text/html\": \"html\",\n                 \"application/java-archive\": \"jar\",\n                 \"text/x-java-source\": \"java\",\n                 \"image/jpeg\": \"jpeg\",\n                 \"application/javascript\": \"js\",\n                 \"application/vnd.oasis.opendocument.chart\": \"odc\",\n                 \"application/vnd.oasis.opendocument.formula\": \"odf\",\n                 \"application/vnd.oasis.opendocument.graphics\": \"odg\",\n                 \"application/vnd.oasis.opendocument.image\": \"odi\",\n                 \"application/vnd.oasis.opendocument.presentation\": \"odp\",\n                 \"application/vnd.oasis.opendocument.spreadsheet\": \"ods\",\n                 \"application/vnd.oasis.opendocument.text\": \"odt\",\n                 \"application/pdf\": \"pdf\",\n                 \"application/pgp-encrypted\": \"pgp\",\n                 \"image/png\": \"png\",\n                 \"application/vnd.ms-powerpoint\": \"ppt\",\n                 \"audio/x-pn-realaudio\": \"ram\",\n                 \"application/x-rar-compressed\": \"rar\",\n                 \"application/vnd.rn-realmedia\": \"rm\",\n                 \"application/rtf\": \"rtf\",\n                 \"application/x-shockwave-flash\": \"swf\",\n                 \"application/vnd.sun.xml.calc\": \"sxc\",\n                 \"application/vnd.sun.xml.draw\": \"sxd\",\n                 \"application/vnd.sun.xml.impress\": \"sxi\",\n                 \"application/vnd.sun.xml.writer\": \"sxw\",\n                 \"application/x-tar\": \"tar\",\n                 \"application/x-tex\": \"tex\",\n                 \"text/plain\": \"txt\",\n                 \"text/x-vcard\": \"vcf\",\n                 \"application/vnd.visio\": \"vsd\",\n                 \"audio/x-wav\": \"wav\",\n                 \"audio/x-ms-wma\": \"wma\",\n                 \"video/x-ms-wmv\": \"wmv\",\n                 \"application/vnd.ms-excel\": \"xls\",\n                 \"application/xml\": \"xml\",\n                 \"application/x-xpinstall\": \"xpi\",\n                 \"application/zip\": \"zip\"})\n\n\n#if($doc.getFieldValue('title'))\n  #set($title = $esc.html($doc.getFirstValue('title')))\n#else\n  #set($title = \"[\"+$doc.getFieldValue('id')+\"]\")\n#end\n#if($doc.getFieldValue('url'))\n  #set($url = $doc.getFieldValue('url'))\n#elseif($doc.getFieldValue('resourcename'))\n  #set($url = \"file:///$doc.getFieldValue('resourcename')\")\n#else\n  #set($url = \"$doc.getFieldValue('id')\")\n#end\n#set($supportedtypes = \"7z;ai;aiff;asc;audio;bin;bz2;c;cfc;cfm;chm;class;conf;cpp;cs;css;csv;deb;divx;doc;dot;eml;enc;file;gif;gz;hlp;htm;html;image;iso;jar;java;jpeg;jpg;js;lua;m;mm;mov;mp3;mpg;odc;odf;odg;odi;odp;ods;odt;ogg;pdf;pgp;php;pl;png;ppt;ps;py;ram;rar;rb;rm;rpm;rtf;sig;sql;swf;sxc;sxd;sxi;sxw;tar;tex;tgz;txt;vcf;video;vsd;wav;wma;wmv;xls;xml;xpi;xvid;zip\")\n#set($ct = $list.get($doc.getFirstValue('content_type').split(\";\"),0))\n#set($filename = $doc.getFieldValue('resourcename'))\n\n#set($filetype = false)\n#set($filetype = $extMap.get($ct))\n##TODO: falling back to file extension is convenient, except when you don't have an icon for that extension\n##      example \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\" document\n##        with a .docx extension.  It'd be nice to fall back to an \"unknown\" or the existing \"file\" type\n##      We sort of do this below, but only if the filename has no extension (anything after the last dot).\n#if(!$filetype)#set($filetype = $filename.substring($filename.lastIndexOf(\".\")).substring(1))#end\n##if(!$filetype)#set($filetype = \"file\")#end\n##if(!$supportedtypes.contains($filetype))#set($filetype = \"file\")#end\n<div class=\"result-title\">\n## Small file type icons from http://www.splitbrain.org/projects/file_icons (public domain)\n<img src=\"#{url_root}/img/filetypes/${filetype}.png\" align=\"center\">\n<a href=\"${url}\" target=\"_blank\"><b>$title</b></a><span class=\"mlt\">   #if($params.getBool('mlt', false) == false)<a href=\"#lensNoQ&q=id:%22$docId%22&mlt=true\">More Like This</a>#end</span></div>\n<div>Id: #field('id')</div>\n<div>\n#if($doc.getFieldValue('resourcename'))Resource name: $filename \n#elseif($url)URL: $url\n#end\n#if($ct) ($ct)#end\n</div>\n#if($doc.getFieldValue('author'))<div>Author: #field('author')</div>#end\n#if($doc.getFieldValue('last_modified'))<div>last-modified: #field('last_modified')</div>#end\n<div class=\"result-body\">#field('content')</div>\n<div class=\"mlt\">\n  #set($mlt = $mltResults.get($docId))\n  #set($mltOn = $params.getBool('mlt'))\n  #if($mltOn == true)<div class=\"field-name\">Similar Items</div>#end\n  #if ($mltOn && $mlt && $mlt.size() > 0)\n  <ul>\n    #foreach($mltHit in $mlt)\n      #set($mltId = $mltHit.getFieldValue('id'))\n      <li><div><a href=\"#url_for_home?q=id:$mltId\">$mltId</a></div><div><span class=\"field-name\">Title:</span> $mltHit.getFieldValue('title')</div>\n        <div><span class=\"field-name\">Author:</span> $mltHit.getFieldValue('author') <span class=\"field-name\">Description:</span> $mltHit.getFieldValue('description')</div>\n\n      </li>\n    #end\n  </ul>\n  #elseif($mltOn && $mlt.size() == 0)\n    <div>No Similar Items Found</div>\n  #end\n</div>\n#parse('debug.vm')"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/suggest.vm",
    "content": "#foreach($t in $response.response.terms.name)\n$t.key\n#end"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/velocity/tabs.vm",
    "content": "##TODO: Make some nice tabs here\n#set($queryOpts = $params.get(\"queryOpts\"))\n<span #annTitle(\"Click the link to demonstrate various Solr capabilities\")><span>Examples: </span><span class=\"tab\">#if($queryOpts && $queryOpts != \"\")<a href=\"#url_for_home/?#debug#annotate\">Simple</a>#{else}Simple#end</span>\n<span class=\"tab\">#if($queryOpts == \"spatial\")Spatial#else<a href=\"#url_for_home?&queryOpts=spatial#debug#annotate\">Spatial</a>#end</span>\n<span class=\"tab\">#if($queryOpts == \"group\")Group By#else<a href=\"#url_for_home?#debug#annotate&queryOpts=group&group=true&group.field=manu_exact\">Group By</a>#end</span></span>\n<hr/>        "
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/xslt/example.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to HTML\n -->\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'\n>\n\n  <xsl:output media-type=\"text/html\" encoding=\"UTF-8\"/> \n  \n  <xsl:variable name=\"title\" select=\"concat('Solr search results (',response/result/@numFound,' documents)')\"/>\n  \n  <xsl:template match='/'>\n    <html>\n      <head>\n        <title><xsl:value-of select=\"$title\"/></title>\n        <xsl:call-template name=\"css\"/>\n      </head>\n      <body>\n        <h1><xsl:value-of select=\"$title\"/></h1>\n        <div class=\"note\">\n          This has been formatted by the sample \"example.xsl\" transform -\n          use your own XSLT to get a nicer page\n        </div>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n      </body>\n    </html>\n  </xsl:template>\n  \n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <div class=\"doc\">\n      <table width=\"100%\">\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n      </table>\n    </div>\n  </xsl:template>\n\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n    <xsl:param name=\"pos\"></xsl:param>\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n\n        <xsl:if test=\"boolean(//lst[@name='explain'])\">\n          <xsl:element name=\"a\">\n            <!-- can't allow whitespace here -->\n            <xsl:attribute name=\"href\">javascript:toggle(\"<xsl:value-of select=\"concat('exp-',$pos)\" />\");</xsl:attribute>?</xsl:element>\n          <br/>\n          <xsl:element name=\"div\">\n            <xsl:attribute name=\"class\">exp</xsl:attribute>\n            <xsl:attribute name=\"id\">\n              <xsl:value-of select=\"concat('exp-',$pos)\" />\n            </xsl:attribute>\n            <xsl:value-of select=\"//lst[@name='explain']/str[position()=$pos]\"/>\n          </xsl:element>\n        </xsl:if>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <ul>\n        <xsl:for-each select=\"*\">\n          <li><xsl:value-of select=\".\"/></li>\n        </xsl:for-each>\n        </ul>\n      </td>\n    </tr>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n    <tr>\n      <td class=\"name\">\n        <xsl:value-of select=\"@name\"/>\n      </td>\n      <td class=\"value\">\n        <xsl:value-of select=\".\"/>\n      </td>\n    </tr>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n  \n  <xsl:template name=\"css\">\n    <script>\n      function toggle(id) {\n        var obj = document.getElementById(id);\n        obj.style.display = (obj.style.display != 'block') ? 'block' : 'none';\n      }\n    </script>\n    <style type=\"text/css\">\n      body { font-family: \"Lucida Grande\", sans-serif }\n      td.name { font-style: italic; font-size:80%; }\n      td { vertical-align: top; }\n      ul { margin: 0px; margin-left: 1em; padding: 0px; }\n      .note { font-size:80%; }\n      .doc { margin-top: 1em; border-top: solid grey 1px; }\n      .exp { display: none; font-family: monospace; white-space: pre; }\n    </style>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/xslt/example_atom.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to Atom\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output\n       method=\"xml\"\n       encoding=\"utf-8\"\n       media-type=\"application/xml\"\n  />\n\n  <xsl:template match='/'>\n    <xsl:variable name=\"query\" select=\"response/lst[@name='responseHeader']/lst[@name='params']/str[@name='q']\"/>\n    <feed xmlns=\"http://www.w3.org/2005/Atom\">\n      <title>Example Solr Atom 1.0 Feed</title>\n      <subtitle>\n       This has been formatted by the sample \"example_atom.xsl\" transform -\n       use your own XSLT to get a nicer Atom feed.\n      </subtitle>\n      <author>\n        <name>Apache Solr</name>\n        <email>solr-user@lucene.apache.org</email>\n      </author>\n      <link rel=\"self\" type=\"application/atom+xml\" \n            href=\"http://localhost:8983/solr/q={$query}&amp;wt=xslt&amp;tr=atom.xsl\"/>\n      <updated>\n        <xsl:value-of select=\"response/result/doc[position()=1]/date[@name='timestamp']\"/>\n      </updated>\n      <id>tag:localhost,2007:example</id>\n      <xsl:apply-templates select=\"response/result/doc\"/>\n    </feed>\n  </xsl:template>\n    \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <entry>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link href=\"http://localhost:8983/solr/select?q={$id}\"/>\n      <id>tag:localhost,2007:<xsl:value-of select=\"$id\"/></id>\n      <summary><xsl:value-of select=\"arr[@name='features']\"/></summary>\n      <updated><xsl:value-of select=\"date[@name='timestamp']\"/></updated>\n    </entry>\n  </xsl:template>\n\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/xslt/example_rss.xsl",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n\n<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!-- \n  Simple transform of Solr query results to RSS\n -->\n\n<xsl:stylesheet version='1.0'\n    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n\n  <xsl:output\n       method=\"xml\"\n       encoding=\"utf-8\"\n       media-type=\"application/xml\"\n  />\n  <xsl:template match='/'>\n    <rss version=\"2.0\">\n       <channel>\n\t <title>Example Solr RSS 2.0 Feed</title>\n         <link>http://localhost:8983/solr</link>\n         <description>\n          This has been formatted by the sample \"example_rss.xsl\" transform -\n          use your own XSLT to get a nicer RSS feed.\n         </description>\n         <language>en-us</language>\n         <docs>http://localhost:8983/solr</docs>\n         <xsl:apply-templates select=\"response/result/doc\"/>\n       </channel>\n    </rss>\n  </xsl:template>\n  \n  <!-- search results xslt -->\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"id\" select=\"str[@name='id']\"/>\n    <xsl:variable name=\"timestamp\" select=\"date[@name='timestamp']\"/>\n    <item>\n      <title><xsl:value-of select=\"str[@name='name']\"/></title>\n      <link>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </link>\n      <description>\n        <xsl:value-of select=\"arr[@name='features']\"/>\n      </description>\n      <pubDate><xsl:value-of select=\"$timestamp\"/></pubDate>\n      <guid>\n        http://localhost:8983/solr/select?q=id:<xsl:value-of select=\"$id\"/>\n      </guid>\n    </item>\n  </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/xslt/luke.xsl",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See the NOTICE file distributed with\n    this work for additional information regarding copyright ownership.\n    The ASF licenses this file to You under the Apache License, Version 2.0\n    (the \"License\"); you may not use this file except in compliance with\n    the License.  You may obtain a copy of the License at\n    \n    http://www.apache.org/licenses/LICENSE-2.0\n    \n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n-->\n\n\n<!-- \n  Display the luke request handler with graphs\n -->\n<xsl:stylesheet\n    xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n    xmlns=\"http://www.w3.org/1999/xhtml\"\n    version=\"1.0\"\n    >\n    <xsl:output\n        method=\"html\"\n        encoding=\"UTF-8\"\n        media-type=\"text/html\"\n        doctype-public=\"-//W3C//DTD XHTML 1.0 Strict//EN\"\n        doctype-system=\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"\n    />\n\n    <xsl:variable name=\"title\">Solr Luke Request Handler Response</xsl:variable>\n\n    <xsl:template match=\"/\">\n        <html xmlns=\"http://www.w3.org/1999/xhtml\">\n            <head>\n                <link rel=\"stylesheet\" type=\"text/css\" href=\"solr-admin.css\"/>\n                <link rel=\"icon\" href=\"favicon.ico\" type=\"image/ico\"/>\n                <link rel=\"shortcut icon\" href=\"favicon.ico\" type=\"image/ico\"/>\n                <title>\n                    <xsl:value-of select=\"$title\"/>\n                </title>\n                <xsl:call-template name=\"css\"/>\n\n            </head>\n            <body>\n                <h1>\n                    <xsl:value-of select=\"$title\"/>\n                </h1>\n                <div class=\"doc\">\n                    <ul>\n                        <xsl:if test=\"response/lst[@name='index']\">\n                            <li>\n                                <a href=\"#index\">Index Statistics</a>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='fields']\">\n                            <li>\n                                <a href=\"#fields\">Field Statistics</a>\n                                <ul>\n                                    <xsl:for-each select=\"response/lst[@name='fields']/lst\">\n                                        <li>\n                                            <a href=\"#{@name}\">\n                                                <xsl:value-of select=\"@name\"/>\n                                            </a>\n                                        </li>\n                                    </xsl:for-each>\n                                </ul>\n                            </li>\n                        </xsl:if>\n                        <xsl:if test=\"response/lst[@name='doc']\">\n                            <li>\n                                <a href=\"#doc\">Document statistics</a>\n                            </li>\n                        </xsl:if>\n                    </ul>\n                </div>\n                <xsl:if test=\"response/lst[@name='index']\">\n                    <h2><a name=\"index\"/>Index Statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='index']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='fields']\">\n                    <h2><a name=\"fields\"/>Field Statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='fields']\"/>\n                </xsl:if>\n                <xsl:if test=\"response/lst[@name='doc']\">\n                    <h2><a name=\"doc\"/>Document statistics</h2>\n                    <xsl:apply-templates select=\"response/lst[@name='doc']\"/>\n                </xsl:if>\n            </body>\n        </html>\n    </xsl:template>\n\n    <xsl:template match=\"lst\">\n        <xsl:if test=\"parent::lst\">\n            <tr>\n                <td colspan=\"2\">\n                    <div class=\"doc\">\n                        <xsl:call-template name=\"list\"/>\n                    </div>\n                </td>\n            </tr>\n        </xsl:if>\n        <xsl:if test=\"not(parent::lst)\">\n            <div class=\"doc\">\n                <xsl:call-template name=\"list\"/>\n            </div>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"list\">\n        <xsl:if test=\"count(child::*)>0\">\n            <table>\n                <thead>\n                    <tr>\n                        <th colspan=\"2\">\n                            <p>\n                                <a name=\"{@name}\"/>\n                            </p>\n                            <xsl:value-of select=\"@name\"/>\n                        </th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <xsl:choose>\n                        <xsl:when\n                            test=\"@name='histogram'\">\n                            <tr>\n                                <td colspan=\"2\">\n                                    <xsl:call-template name=\"histogram\"/>\n                                </td>\n                            </tr>\n                        </xsl:when>\n                        <xsl:otherwise>\n                            <xsl:apply-templates/>\n                        </xsl:otherwise>\n                    </xsl:choose>\n                </tbody>\n            </table>\n        </xsl:if>\n    </xsl:template>\n\n    <xsl:template name=\"histogram\">\n        <div class=\"doc\">\n            <xsl:call-template name=\"barchart\">\n                <xsl:with-param name=\"max_bar_width\">50</xsl:with-param>\n                <xsl:with-param name=\"iwidth\">800</xsl:with-param>\n                <xsl:with-param name=\"iheight\">160</xsl:with-param>\n                <xsl:with-param name=\"fill\">blue</xsl:with-param>\n            </xsl:call-template>\n        </div>\n    </xsl:template>\n\n    <xsl:template name=\"barchart\">\n        <xsl:param name=\"max_bar_width\"/>\n        <xsl:param name=\"iwidth\"/>\n        <xsl:param name=\"iheight\"/>\n        <xsl:param name=\"fill\"/>\n        <xsl:variable name=\"max\">\n            <xsl:for-each select=\"int\">\n                <xsl:sort data-type=\"number\" order=\"descending\"/>\n                <xsl:if test=\"position()=1\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n            </xsl:for-each>\n        </xsl:variable>\n        <xsl:variable name=\"bars\">\n           <xsl:value-of select=\"count(int)\"/>\n        </xsl:variable>\n        <xsl:variable name=\"bar_width\">\n           <xsl:choose>\n             <xsl:when test=\"$max_bar_width &lt; ($iwidth div $bars)\">\n               <xsl:value-of select=\"$max_bar_width\"/>\n             </xsl:when>\n             <xsl:otherwise>\n               <xsl:value-of select=\"$iwidth div $bars\"/>\n             </xsl:otherwise>\n           </xsl:choose>\n        </xsl:variable>\n        <table class=\"histogram\">\n           <tbody>\n              <tr>\n                <xsl:for-each select=\"int\">\n                   <td>\n                 <xsl:value-of select=\".\"/>\n                 <div class=\"histogram\">\n                  <xsl:attribute name=\"style\">background-color: <xsl:value-of select=\"$fill\"/>; width: <xsl:value-of select=\"$bar_width\"/>px; height: <xsl:value-of select=\"($iheight*number(.)) div $max\"/>px;</xsl:attribute>\n                 </div>\n                   </td> \n                </xsl:for-each>\n              </tr>\n              <tr>\n                <xsl:for-each select=\"int\">\n                   <td>\n                       <xsl:value-of select=\"@name\"/>\n                   </td>\n                </xsl:for-each>\n              </tr>\n           </tbody>\n        </table>\n    </xsl:template>\n\n    <xsl:template name=\"keyvalue\">\n        <xsl:choose>\n            <xsl:when test=\"@name\">\n                <tr>\n                    <td class=\"name\">\n                        <xsl:value-of select=\"@name\"/>\n                    </td>\n                    <td class=\"value\">\n                        <xsl:value-of select=\".\"/>\n                    </td>\n                </tr>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:value-of select=\".\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template match=\"int|bool|long|float|double|uuid|date\">\n        <xsl:call-template name=\"keyvalue\"/>\n    </xsl:template>\n\n    <xsl:template match=\"arr\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <ul>\n                    <xsl:for-each select=\"child::*\">\n                        <li>\n                            <xsl:apply-templates/>\n                        </li>\n                    </xsl:for-each>\n                </ul>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template match=\"str\">\n        <xsl:choose>\n            <xsl:when test=\"@name='schema' or @name='index' or @name='flags'\">\n                <xsl:call-template name=\"schema\"/>\n            </xsl:when>\n            <xsl:otherwise>\n                <xsl:call-template name=\"keyvalue\"/>\n            </xsl:otherwise>\n        </xsl:choose>\n    </xsl:template>\n\n    <xsl:template name=\"schema\">\n        <tr>\n            <td class=\"name\">\n                <xsl:value-of select=\"@name\"/>\n            </td>\n            <td class=\"value\">\n                <xsl:if test=\"contains(.,'unstored')\">\n                    <xsl:value-of select=\".\"/>\n                </xsl:if>\n                <xsl:if test=\"not(contains(.,'unstored'))\">\n                    <xsl:call-template name=\"infochar2string\">\n                        <xsl:with-param name=\"charList\">\n                            <xsl:value-of select=\".\"/>\n                        </xsl:with-param>\n                    </xsl:call-template>\n                </xsl:if>\n            </td>\n        </tr>\n    </xsl:template>\n\n    <xsl:template name=\"infochar2string\">\n        <xsl:param name=\"i\">1</xsl:param>\n        <xsl:param name=\"charList\"/>\n\n        <xsl:variable name=\"char\">\n            <xsl:value-of select=\"substring($charList,$i,1)\"/>\n        </xsl:variable>\n        <xsl:choose>\n            <xsl:when test=\"$char='I'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='I']\"/> - </xsl:when>\n            <xsl:when test=\"$char='T'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='T']\"/> - </xsl:when>\n            <xsl:when test=\"$char='S'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='S']\"/> - </xsl:when>\n            <xsl:when test=\"$char='M'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='M']\"/> - </xsl:when>\n            <xsl:when test=\"$char='V'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='V']\"/> - </xsl:when>\n            <xsl:when test=\"$char='o'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='o']\"/> - </xsl:when>\n            <xsl:when test=\"$char='p'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='p']\"/> - </xsl:when>\n            <xsl:when test=\"$char='O'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='O']\"/> - </xsl:when>\n            <xsl:when test=\"$char='L'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='L']\"/> - </xsl:when>\n            <xsl:when test=\"$char='B'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='B']\"/> - </xsl:when>\n            <xsl:when test=\"$char='C'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='C']\"/> - </xsl:when>\n            <xsl:when test=\"$char='f'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='f']\"/> - </xsl:when>\n            <xsl:when test=\"$char='l'\">\n                <xsl:value-of select=\"/response/lst[@name='info']/lst/str[@name='l']\"/> -\n            </xsl:when>\n        </xsl:choose>\n\n        <xsl:if test=\"not($i>=string-length($charList))\">\n            <xsl:call-template name=\"infochar2string\">\n                <xsl:with-param name=\"i\">\n                    <xsl:value-of select=\"$i+1\"/>\n                </xsl:with-param>\n                <xsl:with-param name=\"charList\">\n                    <xsl:value-of select=\"$charList\"/>\n                </xsl:with-param>\n            </xsl:call-template>\n        </xsl:if>\n    </xsl:template>\n    <xsl:template name=\"css\">\n        <style type=\"text/css\">\n            <![CDATA[\n            td.name {font-style: italic; font-size:80%; }\n            .doc { margin: 0.5em; border: solid grey 1px; }\n            .exp { display: none; font-family: monospace; white-space: pre; }\n            div.histogram { background: none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;}\n            table.histogram { width: auto; vertical-align: bottom; }\n            table.histogram td, table.histogram th { text-align: center; vertical-align: bottom; border-bottom: 1px solid #ff9933; width: auto; }\n            ]]>\n        </style>\n    </xsl:template>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/triplestore/conf/xslt/updateXml.xsl",
    "content": "<!-- \n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License.  You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n -->\n\n<!--\n  Simple transform of Solr query response into Solr Update XML compliant XML.\n  When used in the xslt response writer you will get UpdaateXML as output.\n  But you can also store a query response XML to disk and feed this XML to\n  the XSLTUpdateRequestHandler to index the content. Provided as example only.\n  See http://wiki.apache.org/solr/XsltUpdateRequestHandler for more info\n -->\n<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n  <xsl:output media-type=\"text/xml\" method=\"xml\" indent=\"yes\"/>\n\n  <xsl:template match='/'>\n    <add>\n        <xsl:apply-templates select=\"response/result/doc\"/>\n    </add>\n  </xsl:template>\n  \n  <!-- Ignore score (makes no sense to index) -->\n  <xsl:template match=\"doc/*[@name='score']\" priority=\"100\">\n  </xsl:template>\n\n  <xsl:template match=\"doc\">\n    <xsl:variable name=\"pos\" select=\"position()\"/>\n    <doc>\n        <xsl:apply-templates>\n          <xsl:with-param name=\"pos\"><xsl:value-of select=\"$pos\"/></xsl:with-param>\n        </xsl:apply-templates>\n    </doc>\n  </xsl:template>\n\n  <!-- Flatten arrays to duplicate field lines -->\n  <xsl:template match=\"doc/arr\" priority=\"100\">\n      <xsl:variable name=\"fn\" select=\"@name\"/>\n      \n      <xsl:for-each select=\"*\">\n\t\t<xsl:element name=\"field\">\n\t\t    <xsl:attribute name=\"name\"><xsl:value-of select=\"$fn\"/></xsl:attribute>\n\t        <xsl:value-of select=\".\"/>\n\t\t</xsl:element>\n      </xsl:for-each>\n  </xsl:template>\n\n\n  <xsl:template match=\"doc/*\">\n      <xsl:variable name=\"fn\" select=\"@name\"/>\n\n\t<xsl:element name=\"field\">\n\t    <xsl:attribute name=\"name\"><xsl:value-of select=\"$fn\"/></xsl:attribute>\n        <xsl:value-of select=\".\"/>\n\t</xsl:element>\n  </xsl:template>\n\n  <xsl:template match=\"*\"/>\n</xsl:stylesheet>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr/zoo.cfg",
    "content": "# The number of milliseconds of each tick\ntickTime=2000\n# The number of ticks that the initial\n# synchronization phase can take\ninitLimit=10\n# The number of ticks that can pass between\n# sending a request and getting an acknowledgement\nsyncLimit=5\n\n# the directory where the snapshot is stored.\n# dataDir=/opt/zookeeper/data\n# NOTE: Solr defaults the dataDir to <solrHome>/zoo_data\n\n# the port at which the clients will connect\n# clientPort=2181\n# NOTE: Solr sets this based on zkRun / zkHost params\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/META-INF/LICENSE.txt",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n==========================================================================\nThe following license applies to the JQuery JavaScript library\n--------------------------------------------------------------------------\nCopyright (c) 2010 John Resig, http://jquery.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/META-INF/MANIFEST.MF",
    "content": "Manifest-Version: 1.0\r\nImplementation-Vendor: The Apache Software Foundation\r\nAnt-Version: Apache Ant 1.8.2\r\nImplementation-Title: org.apache.solr\r\nImplementation-Version: 4.3.0 1477023 - simonw - 2013-04-29 15:10:07\r\nSpecification-Vendor: The Apache Software Foundation\r\nSpecification-Title: Apache Solr Search Server\r\nCreated-By: 1.6.0_45-b06-451-11M4406 (Apple Inc.)\r\nSpecification-Version: 4.3.0\r\nExtension-Name: org.apache.solr\r\nX-Compile-Source-JDK: 1.6\r\nX-Compile-Target-JDK: 1.6\r\n\r\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/META-INF/NOTICE.txt",
    "content": "==============================================================\n Apache Solr\n Copyright 2006-2013 The Apache Software Foundation\n==============================================================\n\nThis product includes software developed by\nThe Apache Software Foundation (http://www.apache.org/).\n\nIncludes software from other Apache Software Foundation projects,\nincluding, but not limited to:\n  - Apache Lucene Java\n  - Apache Commons\n  - Apache Geronimo (stax API)\n\nThis product includes the JQuery JavaScript library created by John Resig.\nCopyright (c) 2010 John Resig, http://jquery.com/\n\nThis product includes the D3.js JavaScript library created by Michael Bostock.\nCopyright (c) 2012, Michael Bostock, https://github.com/mbostock/d3\n\nThis product includes the highlight.js Javascript library created by Ivan Sagalaev\nCopyright (c) 2006, Ivan Sagalaev, https://github.com/isagalaev/highlight.js\n\nstax-utils library: https://stax-utils.dev.java.net/\nCopyright (c) 2004, Christian Niles, unit12.net\nCopyright (c) 2004, Sun Microsystems, Inc.\nCopyright (c) 2006, John Kristian \nLicense: The BSD License (http://www.opensource.org/licenses/bsd-license.php)\n\nJavaMail API 1.4.1: https://glassfish.dev.java.net/javaee5/mail/\nLicense: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html)\n\nJavaBeans Activation Framework (JAF): http://java.sun.com/products/javabeans/jaf/index.jsp\nLicense: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html)\n\nHSQL Database (HSQLDB): http://hsqldb.org/\nLicense: http://hsqldb.org/web/hsqlLicense.html\n\n=========================================================================\n==  Apache Lucene Notice                                               ==\n=========================================================================\n\nApache Lucene\nCopyright 2013 The Apache Software Foundation\n\nThis product includes software developed by\nThe Apache Software Foundation (http://www.apache.org/).\n\nIncludes software from other Apache Software Foundation projects,\nincluding, but not limited to:\n - Apache Ant\n - Apache Jakarta Regexp\n - Apache Commons\n - Apache Xerces\n\nICU4J, (under analysis/icu) is licensed under an MIT styles license\nand Copyright (c) 1995-2008 International Business Machines Corporation and others\n\nSome data files (under analysis/icu/src/data) are derived from Unicode data such\nas the Unicode Character Database. See http://unicode.org/copyright.html for more\ndetails.\n\nBrics Automaton (under core/src/java/org/apache/lucene/util/automaton) is \nBSD-licensed, created by Anders Møller. See http://www.brics.dk/automaton/\n\nThe levenshtein automata tables (under core/src/java/org/apache/lucene/util/automaton) were\nautomatically generated with the moman/finenight FSA library, created by\nJean-Philippe Barrette-LaPierre. This library is available under an MIT license,\nsee http://sites.google.com/site/rrettesite/moman and \nhttp://bitbucket.org/jpbarrette/moman/overview/\n\nThe class org.apache.lucene.util.SorterTemplate was inspired by CGLIB's class\nwith the same name. The implementation part is mainly done using pre-existing\nLucene sorting code. In-place stable mergesort was borrowed from CGLIB,\nwhich is Apache-licensed.\n\nThe class org.apache.lucene.util.WeakIdentityMap was derived from\nthe Apache CXF project and is Apache License 2.0.\n\nThe Google Code Prettify is Apache License 2.0.\nSee http://code.google.com/p/google-code-prettify/\n\nJUnit (junit-4.10) is licensed under the Common Public License v. 1.0\nSee http://junit.sourceforge.net/cpl-v10.html\n\nThis product includes code (JaspellTernarySearchTrie) from Java Spelling Checkin\ng Package (jaspell): http://jaspell.sourceforge.net/\nLicense: The BSD License (http://www.opensource.org/licenses/bsd-license.php)\n\nThe snowball stemmers in\n  analysis/common/src/java/net/sf/snowball\nwere developed by Martin Porter and Richard Boulton.\nThe snowball stopword lists in\n  analysis/common/src/resources/org/apache/lucene/analysis/snowball\nwere developed by Martin Porter and Richard Boulton.\nThe full snowball package is available from\n  http://snowball.tartarus.org/\n\nThe KStem stemmer in\n  analysis/common/src/org/apache/lucene/analysis/en\nwas developed by Bob Krovetz and Sergio Guzman-Lara (CIIR-UMass Amherst)\nunder the BSD-license.\n\nThe Arabic,Persian,Romanian,Bulgarian, and Hindi analyzers (common) come with a default\nstopword list that is BSD-licensed created by Jacques Savoy.  These files reside in:\nanalysis/common/src/resources/org/apache/lucene/analysis/ar/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/ro/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/bg/stopwords.txt,\nanalysis/common/src/resources/org/apache/lucene/analysis/hi/stopwords.txt\nSee http://members.unine.ch/jacques.savoy/clef/index.html.\n\nThe German,Spanish,Finnish,French,Hungarian,Italian,Portuguese,Russian and Swedish light stemmers\n(common) are based on BSD-licensed reference implementations created by Jacques Savoy and\nLjiljana Dolamic. These files reside in:\nanalysis/common/src/java/org/apache/lucene/analysis/de/GermanLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/de/GermanMinimalStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/es/SpanishLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fi/FinnishLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fr/FrenchLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/fr/FrenchMinimalStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/hu/HungarianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/it/ItalianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/pt/PortugueseLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/ru/RussianLightStemmer.java\nanalysis/common/src/java/org/apache/lucene/analysis/sv/SwedishLightStemmer.java\n\nThe Stempel analyzer (stempel) includes BSD-licensed software developed \nby the Egothor project http://egothor.sf.net/, created by Leo Galambos, Martin Kvapil,\nand Edmond Nolan.\n\nThe Polish analyzer (stempel) comes with a default\nstopword list that is BSD-licensed created by the Carrot2 project. The file resides\nin stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.\nSee http://project.carrot2.org/license.html.\n\nThe SmartChineseAnalyzer source code (smartcn) was\nprovided by Xiaoping Gao and copyright 2009 by www.imdict.net.\n\nWordBreakTestUnicode_*.java (under modules/analysis/common/src/test/) \nis derived from Unicode data such as the Unicode Character Database. \nSee http://unicode.org/copyright.html for more details.\n\nThe Morfologik analyzer (morfologik) includes BSD-licensed software\ndeveloped by Dawid Weiss and Marcin Miłkowski (http://morfologik.blogspot.com/).\n\nMorfologik uses data from Polish ispell/myspell dictionary\n(http://www.sjp.pl/slownik/en/) licenced on the terms of (inter alia)\nLGPL and Creative Commons ShareAlike.\n\nMorfologic includes data from BSD-licensed dictionary of Polish (SGJP)\n(http://sgjp.pl/morfeusz/)\n\nServlet-api.jar is under the CDDL license, the original source\ncode for this can be found at http://www.eclipse.org/jetty/downloads.php\n\n===========================================================================\nKuromoji Japanese Morphological Analyzer - Apache Lucene Integration\n===========================================================================\n\nThis software includes a binary and/or source version of data from\n\n  mecab-ipadic-2.7.0-20070801\n\nwhich can be obtained from\n\n  http://atilika.com/releases/mecab-ipadic/mecab-ipadic-2.7.0-20070801.tar.gz\n\nor\n\n  http://jaist.dl.sourceforge.net/project/mecab/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz\n\n===========================================================================\nmecab-ipadic-2.7.0-20070801 Notice\n===========================================================================\n\nNara Institute of Science and Technology (NAIST),\nthe copyright holders, disclaims all warranties with regard to this\nsoftware, including all implied warranties of merchantability and\nfitness, in no event shall NAIST be liable for\nany special, indirect or consequential damages or any damages\nwhatsoever resulting from loss of use, data or profits, whether in an\naction of contract, negligence or other tortuous action, arising out\nof or in connection with the use or performance of this software.\n\nA large portion of the dictionary entries\noriginate from ICOT Free Software.  The following conditions for ICOT\nFree Software applies to the current dictionary as well.\n\nEach User may also freely distribute the Program, whether in its\noriginal form or modified, to any third party or parties, PROVIDED\nthat the provisions of Section 3 (\"NO WARRANTY\") will ALWAYS appear\non, or be attached to, the Program, which is distributed substantially\nin the same form as set out herein and that such intended\ndistribution, if actually made, will neither violate or otherwise\ncontravene any of the laws and regulations of the countries having\njurisdiction over the User or the intended distribution itself.\n\nNO WARRANTY\n\nThe program was produced on an experimental basis in the course of the\nresearch and development conducted during the project and is provided\nto users as so produced on an experimental basis.  Accordingly, the\nprogram is provided without any warranty whatsoever, whether express,\nimplied, statutory or otherwise.  The term \"warranty\" used herein\nincludes, but is not limited to, any warranty of the quality,\nperformance, merchantability and fitness for a particular purpose of\nthe program and the nonexistence of any infringement or violation of\nany right of any third party.\n\nEach user of the program will agree and understand, and be deemed to\nhave agreed and understood, that there is no warranty whatsoever for\nthe program and, accordingly, the entire risk arising from or\notherwise connected with the program is assumed by the user.\n\nTherefore, neither ICOT, the copyright holder, or any other\norganization that participated in or was otherwise related to the\ndevelopment of the program and their respective officials, directors,\nofficers and other employees shall be held liable for any and all\ndamages, including, without limitation, general, special, incidental\nand consequential damages, arising out of or otherwise in connection\nwith the use or inability to use the program or any product, material\nor result produced or otherwise obtained by using the program,\nregardless of whether they have been advised of, or otherwise had\nknowledge of, the possibility of such damages at any time during the\nproject or thereafter.  Each user will be deemed to have agreed to the\nforegoing by his or her commencement of use of the program.  The term\n\"use\" as used herein includes, but is not limited to, the use,\nmodification, copying and distribution of the program and the\nproduction of secondary products from the program.\n\nIn the case where the program, whether in its original form or\nmodified, was distributed or delivered to or received by a user from\nany person, organization or entity other than ICOT, unless it makes or\ngrants independently of ICOT any specific warranty to the user in\nwriting, such person, organization or entity, will also be exempted\nfrom and not be held liable to the user for any such damages as noted\nabove as far as the program is concerned.\n---\n\nThis product includes/uses software, Woodstox (http://woodstox.codehaus.org),\ndeveloped by Codehaus  (http://www.codehaus.org/)\nLicense: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)\n=========================================================================\n==  Woodstox Notice                                                    ==\n=========================================================================\nThis product currently only contains code developed by authors\nof specific components, as identified by the source code files.\n\nSince product implements StAX API, it has dependencies to StAX API\nclasses.\n\nFor additional credits (generally to people who reported problems)\nsee CREDITS file.\n---\n\nThis product includes software developed by the Eclipse Foundation\n(specifically, Jetty, the bundled servlet container in example),\navailable under the Apache 2 License.\n\nServlet-api.jar is under the CDDL license, the original source\ncode for this can be found at http://www.eclipse.org/jetty/downloads.php\n\n=========================================================================\n==  SLF4J Notice -- http://www.slf4j.org/license.html                  ==\n=========================================================================\n\nCopyright (c) 2004-2008 QOS.ch\nAll rights reserved.\n\nPermission is hereby granted, free  of charge, to any person obtaining\na  copy  of this  software  and  associated  documentation files  (the\n\"Software\"), to  deal in  the Software without  restriction, including\nwithout limitation  the rights to  use, copy, modify,  merge, publish,\ndistribute,  sublicense, and/or sell  copies of  the Software,  and to\npermit persons to whom the Software  is furnished to do so, subject to\nthe following conditions:\n\nThe  above  copyright  notice  and  this permission  notice  shall  be\nincluded in all copies or substantial portions of the Software.\n\nTHE  SOFTWARE IS  PROVIDED  \"AS  IS\", WITHOUT  WARRANTY  OF ANY  KIND,\nEXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF\nMERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n=========================================================================\n==  Apache Tika Notices                                                ==\n=========================================================================\n\nThe following notices apply to contrib/extraction:\n\nThis product includes software developed by the following copyright owners:\n\nCopyright (c) 2000-2006 The Legion Of The Bouncy Castle\n(http://www.bouncycastle.org)\n\nCopyright (c) 2003-2005, www.pdfbox.org\n\nCopyright (c) 2003-2005, www.fontbox.org\n\nCopyright (c) 1995-2005 International Business Machines Corporation and others\n\nCopyright (c) 2000-2005 INRIA, France Telecom\n\nCopyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.\n\nCopyright 2004 Sun Microsystems, Inc. (Rome JAR)\n\nCopyright 2002-2008 by John Cowan (TagSoup -- http://ccil.org/~cowan/XML/tagsoup/)\n\nCopyright (C) 1994-2007 by the Xiph.org Foundation, http://www.xiph.org/ (OggVorbis)\n\nCopyright 2012 Kohei Taketa juniversalchardet (http://code.google.com/p/juniversalchardet/)\n\nLasse Collin and others, XZ for Java (http://tukaani.org/xz/java.html)\n\n=========================================================================\n==  Language Detection Notices                                         ==\n=========================================================================\n\nThe following notices apply to contrib/langid:\n\nThis product includes software developed by Cybozu Labs, Inc.\n(c)2010 All rights reserved by Cybozu Labs, Inc.\nhttp://code.google.com/p/language-detection/\n\nThis product includes software developed by the Jsonic project:\nhttp://sourceforge.jp/projects/jsonic/\n\n=========================================================================\n==     Carrot2 Notice                                                  ==\n=========================================================================\nCopyright (C) 2002-2010, Dawid Weiss, Stanislaw Osinski.\nPortions (C) Contributors listed in \"carrot2.CONTRIBUTORS\" file.\nAll rights reserved.\n\nThis product includes software developed by the Carrot2 Project.\n\nSee http://project.carrot2.org/\n\n=========================================================================\n==     Guava Notice                                                    ==\n=========================================================================\n\nCopyright (C) 2009 Google Inc.\n\nThis product includes software developed by the Google Guava project.\n\nSee http://code.google.com/p/guava-libraries/\n\n=========================================================================\n==     Prettify Notice                                                 ==\n=========================================================================\n\nCopyright (C) 2009 Google Inc.\n\nThis product includes software developed by the Google Prettify project.\n\nSee http://code.google.com/p/google-code-prettify/\n\n=========================================================================\n==     Jackson Notice                                                  ==\n=========================================================================\nCopyright 2010 FasterXML, LLC\n\nThis product includes software developed by the Jackson project.\n\nSee http://jackson.codehaus.org/\n\n=========================================================================\n==     HSQLDB Notice                                                   ==\n=========================================================================\n\nFor content, code, and products originally developed by Thomas Mueller and the Hypersonic SQL Group:\n\nCopyright (c) 1995-2000 by the Hypersonic SQL Group.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\nNeither the name of the Hypersonic SQL Group nor the names of its\ncontributors may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL GROUP,\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis software consists of voluntary contributions made by many individuals on behalf of the\nHypersonic SQL Group.\n\nFor work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt):\n\nCopyright (c) 2001-2005, The HSQL Development Group\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\nNeither the name of the HSQL Development Group nor the names of its\ncontributors may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis product includes tests written with EasyMock Copyright 2001-2007\nTammo Freese (http://www.easymock.org/)\n\n==========================================================================\nThe following license applies to easymock-2.2.jar\n--------------------------------------------------------------------------\nEasyMock 2 License (MIT License)\nCopyright (c) 2001-2007 OFFIS, Tammo Freese.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of \nthis software and associated documentation files (the \"Software\"), to deal in \nthe Software without restriction, including without limitation the rights to \nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies \nof the Software, and to permit persons to whom the Software is furnished to do \nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all \ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE \nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE \nSOFTWARE. \n\n==========================================================================\nThe following license applies to stax-utils.jar\n--------------------------------------------------------------------------\nCopyright (c) 2004, Christian Niles, unit12.net\nCopyright (c) 2004, Sun Microsystems, Inc.\nCopyright (c) 2006, John Kristian \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n    * Redistributions of source code must retain the above copyright\n      notice, this list of conditions and the following disclaimer.\n\n    * Redistributions in binary form must reproduce the above\n      copyright notice, this list of conditions and the following\n      disclaimer in the documentation and/or other materials provided\n      with the distribution.\n\n    * Neither the name of the listed copyright holders nor the names\n      of its contributors may be used to endorse or promote products\n      derived from this software without specific prior written\n      permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n=========================================================================\n==     Restlet Notice                                                  ==\n=========================================================================\n\nCopyright (C) 2005-2013 Restlet S.A.S.\n\nRestlet is a registered trademark of Restlet S.A.S.\n\nThis product contains software developed by the Restlet project.\n\nSee http://www.restlet.org/\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/WEB-INF/web.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n<web-app xmlns=\"http://java.sun.com/xml/ns/javaee\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd\"\n         version=\"2.5\"\n         metadata-complete=\"true\"\n>\n\n\n  <!-- Uncomment if you are trying to use a Resin version before 3.0.19.\n    Their XML implementation isn't entirely compatible with Xerces.\n    Below are the implementations to use with Sun's JVM.\n  <system-property javax.xml.xpath.XPathFactory=\n             \"com.sun.org.apache.xpath.internal.jaxp.XPathFactoryImpl\"/>\n  <system-property javax.xml.parsers.DocumentBuilderFactory=\n             \"com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl\"/>\n  <system-property javax.xml.parsers.SAXParserFactory=\n             \"com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl\"/>\n   -->\n\n  <!-- People who want to hardcode their \"Solr Home\" directly into the\n       WAR File can set the JNDI property here...\n   -->\n  <!--\n    <env-entry>\n       <env-entry-name>solr/home</env-entry-name>\n       <env-entry-value>/put/your/solr/home/here</env-entry-value>\n       <env-entry-type>java.lang.String</env-entry-type>\n    </env-entry>\n   -->\n   \n  <!-- Any path (name) registered in solrconfig.xml will be sent to that filter -->\n  <filter>\n    <filter-name>SolrRequestFilter</filter-name>\n    <filter-class>org.apache.solr.servlet.SolrDispatchFilter</filter-class>\n    <!-- If you are wiring Solr into a larger web application which controls\n         the web context root, you will probably want to mount Solr under\n         a path prefix (app.war with /app/solr mounted into it, for example).\n         You will need to put this prefix in front of the SolrDispatchFilter\n         url-pattern mapping too (/solr/*), and also on any paths for\n         legacy Solr servlet mappings you may be using.\n         For the Admin UI to work properly in a path-prefixed configuration,\n         the admin folder containing the resources needs to be under the app context root\n         named to match the path-prefix.  For example:\n\n            .war\n               xxx\n                 js\n                   main.js\n    -->\n    <!--\n    <init-param>\n      <param-name>path-prefix</param-name>\n      <param-value>/xxx</param-value>\n    </init-param>\n    -->\n  </filter>\n\n  <filter-mapping>\n    <!--\n      NOTE: When using multicore, /admin JSP URLs with a core specified\n      such as /solr/coreName/admin/stats.jsp get forwarded by a\n      RequestDispatcher to /solr/admin/stats.jsp with the specified core\n      put into request scope keyed as \"org.apache.solr.SolrCore\".\n\n      It is unnecessary, and potentially problematic, to have the SolrDispatchFilter\n      configured to also filter on forwards.  Do not configure\n      this dispatcher as <dispatcher>FORWARD</dispatcher>.\n    -->\n    <filter-name>SolrRequestFilter</filter-name>\n    <url-pattern>/*</url-pattern>\n  </filter-mapping>\n\n  <servlet>\n    <servlet-name>Zookeeper</servlet-name>\n    <servlet-class>org.apache.solr.servlet.ZookeeperInfoServlet</servlet-class>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>LoadAdminUI</servlet-name>\n    <servlet-class>org.apache.solr.servlet.LoadAdminUiServlet</servlet-class>\n  </servlet>\n  \n  <!-- Remove in Solr 5.0 -->\n  <!-- This sends SC_MOVED_PERMANENTLY (301) for resources that changed in 4.0 -->\n  <servlet>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/#/</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>RedirectOldZookeeper</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/zookeeper</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet>\n    <servlet-name>RedirectLogging</servlet-name>\n    <servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>\n    <init-param>\n      <param-name>destination</param-name>\n      <param-value>${context}/#/~logging</param-value>\n    </init-param>\n  </servlet>\n\n  <servlet>\n    <servlet-name>SolrRestApi</servlet-name>\n    <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class>\n    <init-param>\n      <param-name>org.restlet.application</param-name>\n      <param-value>org.apache.solr.rest.SolrRestApi</param-value>\n    </init-param>\n  </servlet>\n  \n  <servlet-mapping>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <url-pattern>/admin/</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectOldAdminUI</servlet-name>\n    <url-pattern>/admin</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectOldZookeeper</servlet-name>\n    <url-pattern>/zookeeper.jsp</url-pattern>\n  </servlet-mapping>\n  <servlet-mapping>\n    <servlet-name>RedirectLogging</servlet-name>\n    <url-pattern>/logging</url-pattern>\n  </servlet-mapping>\n\n  <!-- Servlet Mapping -->\n  <servlet-mapping>\n    <servlet-name>Zookeeper</servlet-name>\n    <url-pattern>/zookeeper</url-pattern>\n  </servlet-mapping>\n  \n  <servlet-mapping>\n    <servlet-name>LoadAdminUI</servlet-name>\n    <url-pattern>/admin.html</url-pattern>\n  </servlet-mapping>\n\n  <servlet-mapping>\n    <servlet-name>SolrRestApi</servlet-name>\n    <url-pattern>/schema/*</url-pattern>\n  </servlet-mapping>\n  \n  <mime-mapping>\n    <extension>.xsl</extension>\n    <!-- per http://www.w3.org/TR/2006/PR-xslt20-20061121/ -->\n    <mime-type>application/xslt+xml</mime-type>\n  </mime-mapping>\n\n  <welcome-file-list>\n    <welcome-file>admin.html</welcome-file>\n  </welcome-file-list>\n\n</web-app>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/WEB-INF/weblogic.xml",
    "content": "<?xml version='1.0' encoding='UTF-8'?>\n<weblogic-web-app\n    xmlns=\"http://www.bea.com/ns/weblogic/90\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd\">\n\n    <container-descriptor>\n\t<filter-dispatched-requests-enabled>false</filter-dispatched-requests-enabled>\n    </container-descriptor>\n\n</weblogic-web-app>\n\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/admin.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n<html>\n\n<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n\n<head>\n    \n  <title>Solr Admin</title>\n    \n  <link rel=\"icon\" type=\"image/ico\" href=\"img/favicon.ico?_=${version}\">\n\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/common.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/analysis.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/cloud.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/cores.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/dashboard.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/dataimport.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/index.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/java-properties.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/logging.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/menu.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/plugins.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/query.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/replication.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/schema-browser.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/styles/threads.css?_=${version}\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"css/chosen.css?_=${version}\">\n    \n  <script type=\"text/javascript\">\n    \n  var app_config = {};\n    \n  app_config.solr_path = '${contextPath}';\n  app_config.core_admin_path = '${adminPath}';\n    \n  </script>\n    \n</head>\n<body>\n    \n  <div id=\"wrapper\">\n    \n    <div id=\"header\">\n            \n      <a href=\"./\" id=\"solr\"><span>Apache SOLR</span></a>\n\n      <p id=\"environment\">&nbsp;</p>\n\n    </div>\n\n    <div id=\"main\" class=\"clearfix\">\n    \n      <div id=\"init-failures\">\n\n          <h2>SolrCore Initialization Failures</h2>\n          <ul></ul>\n          <p>Please check your logs for more information</p>\n                \n      </div>\n\n      <div id=\"content-wrapper\">\n        <div id=\"content\">\n                  \n          &nbsp;\n                  \n        </div>\n      </div>\n            \n      <div id=\"menu-wrapper\">\n        <div>\n                  \n          <ul id=\"menu\">\n\n            <li id=\"index\" class=\"global\"><p><a href=\"#/\">Dashboard</a></p></li>\n\n            <li id=\"logging\" class=\"global\"><p><a href=\"#/~logging\">Logging</a></p>\n              <ul>\n                <li class=\"level\"><a href=\"#/~logging/level\">Level</a></li>\n              </ul>\n            </li>\n\n            <li id=\"cloud\" class=\"global optional\"><p><a href=\"#/~cloud\">Cloud</a></p>\n              <ul>\n                <li class=\"tree\"><a href=\"#/~cloud?view=tree\">Tree</a></li>\n                <li class=\"graph\"><a href=\"#/~cloud\">Graph</a></li>\n                <li class=\"rgraph\"><a href=\"#/~cloud?view=rgraph\">Graph (Radial)</a></li>\n                <li class=\"dump\"><a href=\"#/~cloud\">Dump</a></li>\n              </ul>\n            </li>\n\n            <li id=\"cores\" class=\"global\"><p><a href=\"#/~cores\">Core Admin</a></p></li>\n\n            <li id=\"java-properties\" class=\"global\"><p><a href=\"#/~java-properties\">Java Properties</a></li>\n\n            <li id=\"threads\" class=\"global\"><p><a href=\"#/~threads\">Thread Dump</a></p></li>\n            \n          </ul>\n\n          <div id=\"core-selector\">\n            <select data-placeholder=\"Core Selector\"></select>\n          </div>\n          <div id=\"core-menu\">\n            <ul></ul>\n          </div>\n                  \n        </div>\n      </div>\n            \n      <div id=\"meta\">\n                \n        <ul>\n                    \n          <li class=\"documentation\"><a href=\"http://lucene.apache.org/solr/\"><span>Documentation</span></a></li>\n          <li class=\"issues\"><a href=\"http://issues.apache.org/jira/browse/SOLR\"><span>Issue Tracker</span></a></li>\n          <li class=\"irc\"><a href=\"http://webchat.freenode.net/?channels=#solr\"><span>IRC Channel</span></a></li>\n          <li class=\"mailinglist\"><a href=\"http://wiki.apache.org/solr/UsingMailingLists\"><span>Community forum</span></a></li>\n          <li class=\"wiki-query-syntax\"><a href=\"http://wiki.apache.org/solr/SolrQuerySyntax\"><span>Solr Query Syntax</span></a></li>\n                    \n        </ul>\n                \n      </div>\n            \n    </div>\n    \n  </div>\n  \n  <script type=\"text/javascript\"> var require = { urlArgs: '_=${version}' }; </script>\n  <script src=\"js/require.js?_=${version}\" data-main=\"js/main\"></script>\n\n</body>\n</html>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/chosen.css",
    "content": "/* @group Base */\n.chzn-container {\n  font-size: 13px;\n  position: relative;\n  display: inline-block;\n  zoom: 1;\n  *display: inline;\n}\n.chzn-container .chzn-drop {\n  background: #fff;\n  border: 1px solid #aaa;\n  border-top: 0;\n  position: absolute;\n  top: 29px;\n  left: 0;\n  -webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);\n  -moz-box-shadow   : 0 4px 5px rgba(0,0,0,.15);\n  -o-box-shadow     : 0 4px 5px rgba(0,0,0,.15);\n  box-shadow        : 0 4px 5px rgba(0,0,0,.15);\n  z-index: 999;\n}\n/* @end */\n\n/* @group Single Chosen */\n.chzn-container-single .chzn-single {\n  background-color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0 );   \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));\n  background-image: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: -ms-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n  background-image: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); \n  -webkit-border-radius: 5px;\n  -moz-border-radius   : 5px;\n  border-radius        : 5px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n  border: 1px solid #aaaaaa;\n  -webkit-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  -moz-box-shadow   : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  box-shadow        : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);\n  display: block;\n  overflow: hidden;\n  white-space: nowrap;\n  position: relative;\n  height: 23px;\n  line-height: 24px;\n  padding: 0 0 0 8px;\n  color: #444444;\n  text-decoration: none;\n}\n.chzn-container-single .chzn-default {\n\tcolor: #999;\n}\n.chzn-container-single .chzn-single span {\n  margin-right: 26px;\n  display: block;\n  overflow: hidden;\n  white-space: nowrap;\n  -o-text-overflow: ellipsis;\n  -ms-text-overflow: ellipsis;\n  text-overflow: ellipsis;\n}\n.chzn-container-single .chzn-single abbr {\n  display: block;\n  position: absolute;\n  right: 26px;\n  top: 6px;\n  width: 12px;\n  height: 13px;\n  font-size: 1px;\n  background: url(../img/chosen-sprite.png) right top no-repeat;\n}\n.chzn-container-single .chzn-single abbr:hover {\n  background-position: right -11px;\n}\n.chzn-container-single .chzn-single div {\n  position: absolute;\n  right: 0;\n  top: 0;\n  display: block;\n  height: 100%;\n  width: 18px;\n}\n.chzn-container-single .chzn-single div b {\n  background: url('../img/chosen-sprite.png') no-repeat 0 0;\n  display: block;\n  width: 100%;\n  height: 100%;\n}\n.chzn-container-single .chzn-search {\n  padding: 3px 4px;\n  position: relative;\n  margin: 0;\n  white-space: nowrap;\n  z-index: 1010;\n}\n.chzn-container-single .chzn-search input {\n  background: #fff url('../img/chosen-sprite.png') no-repeat 100% -22px;\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  margin: 1px 0;\n  padding: 4px 20px 4px 5px;\n  outline: 0;\n  border: 1px solid #aaa;\n  font-family: sans-serif;\n  font-size: 1em;\n}\n.chzn-container-single .chzn-drop {\n  -webkit-border-radius: 0 0 4px 4px;\n  -moz-border-radius   : 0 0 4px 4px;\n  border-radius        : 0 0 4px 4px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n}\n/* @end */\n\n.chzn-container-single-nosearch .chzn-search input {\n  position: absolute;\n  left: -9000px;\n}\n\n/* @group Multi Chosen */\n.chzn-container-multi .chzn-choices {\n  background-color: #fff;\n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  border: 1px solid #aaa;\n  margin: 0;\n  padding: 0;\n  cursor: text;\n  overflow: hidden;\n  height: auto !important;\n  height: 1%;\n  position: relative;\n}\n.chzn-container-multi .chzn-choices li {\n  float: left;\n  list-style: none;\n}\n.chzn-container-multi .chzn-choices .search-field {\n  white-space: nowrap;\n  margin: 0;\n  padding: 0;\n}\n.chzn-container-multi .chzn-choices .search-field input {\n  color: #666;\n  background: transparent !important;\n  border: 0 !important;\n  font-family: sans-serif;\n  font-size: 100%;\n  height: 15px;\n  padding: 5px;\n  margin: 1px 0;\n  outline: 0;\n  -webkit-box-shadow: none;\n  -moz-box-shadow   : none;\n  -o-box-shadow     : none;\n  box-shadow        : none;\n}\n.chzn-container-multi .chzn-choices .search-field .default {\n  color: #999;\n}\n.chzn-container-multi .chzn-choices .search-choice {\n  -webkit-border-radius: 3px;\n  -moz-border-radius   : 3px;\n  border-radius        : 3px;\n  -moz-background-clip   : padding;\n  -webkit-background-clip: padding-box;\n  background-clip        : padding-box;\n  background-color: #e4e4e4;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 ); \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));\n  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); \n  -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  -moz-box-shadow   : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  box-shadow        : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);\n  color: #333;\n  border: 1px solid #aaaaaa;\n  line-height: 13px;\n  padding: 3px 20px 3px 5px;\n  margin: 3px 0 3px 5px;\n  position: relative;\n  cursor: default;\n}\n.chzn-container-multi .chzn-choices .search-choice-focus {\n  background: #d4d4d4;\n}\n.chzn-container-multi .chzn-choices .search-choice .search-choice-close {\n  display: block;\n  position: absolute;\n  right: 3px;\n  top: 4px;\n  width: 12px;\n  height: 13px;\n  font-size: 1px;\n  background: url(../img/chosen-sprite.png) right top no-repeat;\n}\n.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {\n  background-position: right -11px;\n}\n.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close {\n  background-position: right -11px;\n}\n/* @end */\n\n/* @group Results */\n.chzn-container .chzn-results {\n  margin: 0 4px 4px 0;\n  max-height: 240px;\n  padding: 0 0 0 4px;\n  position: relative;\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.chzn-container-multi .chzn-results {\n  margin: -1px 0 0;\n  padding: 0;\n}\n.chzn-container .chzn-results li {\n  display: none;\n  line-height: 15px;\n  padding: 5px 6px;\n  margin: 0;\n  list-style: none;\n}\n.chzn-container .chzn-results .active-result {\n  cursor: pointer;\n  display: list-item;\n}\n.chzn-container .chzn-results .highlighted {\n  background-color: #3875d7;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0 );  \n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));\n  background-image: -webkit-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -moz-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -o-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: -ms-linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  background-image: linear-gradient(top, #3875d7 20%, #2a62bc 90%);\n  color: #fff;\n}\n.chzn-container .chzn-results li em {\n  background: #feffde;\n  font-style: normal;\n}\n.chzn-container .chzn-results .highlighted em {\n  background: transparent;\n}\n.chzn-container .chzn-results .no-results {\n  background: #f4f4f4;\n  display: list-item;\n}\n.chzn-container .chzn-results .group-result {\n  cursor: default;\n  color: #999;\n  font-weight: bold;\n}\n.chzn-container .chzn-results .group-option {\n  padding-left: 15px;\n}\n.chzn-container-multi .chzn-drop .result-selected {\n  display: none;\n}\n.chzn-container .chzn-results-scroll {\n  background: white;\n  margin: 0 4px;\n  position: absolute;\n  text-align: center;\n  width: 321px; /* This should by dynamic with js */\n  z-index: 1;\n}\n.chzn-container .chzn-results-scroll span {\n  display: inline-block;\n  height: 17px;\n  text-indent: -5000px;\n  width: 9px;\n}\n.chzn-container .chzn-results-scroll-down {\n  bottom: 0;\n}\n.chzn-container .chzn-results-scroll-down span {\n  background: url('../img/chosen-sprite.png') no-repeat -4px -3px;\n}\n.chzn-container .chzn-results-scroll-up span {\n  background: url('../img/chosen-sprite.png') no-repeat -22px -3px;\n}\n/* @end */\n\n/* @group Active  */\n.chzn-container-active .chzn-single {\n  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);\n  -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);\n  -o-box-shadow     : 0 0 5px rgba(0,0,0,.3);\n  box-shadow        : 0 0 5px rgba(0,0,0,.3);\n  border: 1px solid #5897fb;\n}\n.chzn-container-active .chzn-single-with-drop {\n  border: 1px solid #aaa;\n  -webkit-box-shadow: 0 1px 0 #fff inset;\n  -moz-box-shadow   : 0 1px 0 #fff inset;\n  -o-box-shadow     : 0 1px 0 #fff inset;\n  box-shadow        : 0 1px 0 #fff inset;\n  background-color: #eee;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );\n  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));\n  background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: -ms-linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  background-image: linear-gradient(top, #eeeeee 20%, #ffffff 80%);\n  -webkit-border-bottom-left-radius : 0;\n  -webkit-border-bottom-right-radius: 0;\n  -moz-border-radius-bottomleft : 0;\n  -moz-border-radius-bottomright: 0;\n  border-bottom-left-radius : 0;\n  border-bottom-right-radius: 0;\n}\n.chzn-container-active .chzn-single-with-drop div {\n  background: transparent;\n  border-left: none;\n}\n.chzn-container-active .chzn-single-with-drop div b {\n  background-position: -18px 1px;\n}\n.chzn-container-active .chzn-choices {\n  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);\n  -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);\n  -o-box-shadow     : 0 0 5px rgba(0,0,0,.3);\n  box-shadow        : 0 0 5px rgba(0,0,0,.3);\n  border: 1px solid #5897fb;\n}\n.chzn-container-active .chzn-choices .search-field input {\n  color: #111 !important;\n}\n/* @end */\n\n/* @group Disabled Support */\n.chzn-disabled {\n  cursor: default;\n  opacity:0.5 !important;\n}\n.chzn-disabled .chzn-single {\n  cursor: default;\n}\n.chzn-disabled .chzn-choices .search-choice .search-choice-close {\n  cursor: default;\n}\n\n/* @group Right to Left */\n.chzn-rtl { text-align: right; }\n.chzn-rtl .chzn-single { padding: 0 8px 0 0; overflow: visible; }\n.chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; direction: rtl; }\n\n.chzn-rtl .chzn-single div { left: 3px; right: auto; }\n.chzn-rtl .chzn-single abbr {\n  left: 26px;\n  right: auto;\n}\n.chzn-rtl .chzn-choices .search-field input { direction: rtl; }\n.chzn-rtl .chzn-choices li { float: right; }\n.chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin: 3px 5px 3px 0; }\n.chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; right: auto; background-position: right top;}\n.chzn-rtl.chzn-container-single .chzn-results { margin: 0 0 4px 4px; padding: 0 4px 0 0; }\n.chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 15px; }\n.chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; }\n.chzn-rtl .chzn-search input {\n  background: #fff url('../img/chosen-sprite.png') no-repeat -38px -22px;\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);  \n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  background: url('../img/chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);\n  padding: 4px 5px 4px 20px;\n  direction: rtl;\n}\n/* @end */\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/analysis.css",
    "content": "#content #analysis-holder\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 50% 0;\n  background-repeat: repeat-y;\n}\n\n#content #analysis #field-analysis\n{\n  margin-bottom: 0;\n}\n\n#content #analysis #field-analysis .content\n{\n  padding-bottom: 0;\n}\n\n#content #analysis .settings-holder\n{\n  clear: both;\n  padding-top: 15px;\n}\n\n#content #analysis .settings\n{\n  background-color: #fff;\n  border-top: 1px solid #fafafa;\n  border-bottom: 1px solid #fafafa;\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n#content #analysis .settings select.loader\n{\n  background-position: 3px 50%;\n  padding-left: 21px;\n}\n\n#content #analysis .settings select optgroup\n{\n  font-style: normal;\n  padding: 5px;\n}\n\n#content #analysis .settings select option\n{\n  padding-left: 10px;\n}\n\n#content #analysis .settings #tor_schema\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  margin-left: 5px;\n  padding-left: 21px;\n}\n\n#content #analysis .settings #tor_schema:hover\n{\n  background-image: url( ../../img/ico/question.png );\n}\n\n#content #analysis .settings #tor_schema span\n{\n  display: none;\n}\n\n#content #analysis .settings #tor_schema:hover span\n{\n  display: inline;\n}\n\n#content #analysis .settings .buttons\n{\n  float: right;\n  width: 47%;\n}\n\n#content #analysis .settings button\n{\n  float: right;\n}\n\n#content #analysis .settings button span\n{\n  background-image: url( ../../img/ico/funnel.png );\n}\n\n#content #analysis .settings .verbose_output\n{\n  float: left;\n  width: auto;\n}\n\n#content #analysis .settings .verbose_output a\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #999;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #analysis .settings .verbose_output.active a\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n}\n\n#content #analysis .index label,\n#content #analysis .query label\n{\n  display: block;\n}\n\n#content #analysis .index textarea,\n#content #analysis .query textarea\n{\n  display: block;\n  width: 100%;\n}\n\n#content #analysis .index\n{\n  float: left;\n  margin-right: 0.5%;\n  min-width: 47%;\n  max-width: 99%;\n}\n\n#content #analysis .query\n{\n  float: right;\n  margin-left: 0.5%;\n  min-width: 47%;\n  max-width: 99%;\n}\n\n#content #analysis .analysis-error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #analysis .analysis-error .head a\n{\n  color: #fff;\n  cursor: auto;\n}\n\n#content #analysis #analysis-result\n{\n  overflow: auto;\n}\n\n#content #analysis #analysis-result .index,\n#content #analysis #analysis-result .query\n{\n  background-color: #fff;\n  padding-top: 20px;\n}\n\n#content #analysis #analysis-result table\n{\n  border-collapse: collapse;\n}\n\n#content #analysis #analysis-result td\n{\n  vertical-align: top;\n  white-space: nowrap;\n}\n\n#content #analysis #analysis-result td.part.analyzer div,\n#content #analysis #analysis-result td.part.spacer .holder,\n#content #analysis #analysis-result td td td\n{\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n\n#content #analysis #analysis-result td.legend,\n#content #analysis #analysis-result td.data tr.verbose_output\n{\n  display: none;\n}\n\n#content #analysis #analysis-result.verbose_output td.legend\n{\n  display: table-cell;\n}\n\n#content #analysis #analysis-result.verbose_output td.data tr.verbose_output\n{\n  display: table-row;\n}\n\n#content #analysis #analysis-result .match\n{\n  background-color: #e9eff7;\n  background-color: #f2f2ff;\n}\n\n#content #analysis #analysis-result td.part\n{\n  padding-bottom: 10px;\n}\n\n#content #analysis #analysis-result td.part.analyzer div\n{\n  border-right: 1px solid #f0f0f0;\n  padding-right: 10px;\n}\n\n#content #analysis #analysis-result td.part.analyzer abbr\n{\n  color: #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend .holder,\n#content #analysis #analysis-result td.part.data .holder\n{\n  padding-left: 10px;\n  padding-right: 10px;\n  border-right: 1px solid #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend td\n{\n  color: #c0c0c0;\n}\n\n#content #analysis #analysis-result td.part.legend .holder\n{\n  border-right-color: #f0f0f0;\n}\n\n#content #analysis #analysis-result td.part.data:last-child .holder\n{\n  padding-right: 0;\n  border-right: 0;\n}\n\n#content #analysis #analysis-result td.details \n{\n  padding-left: 10px;\n  padding-right: 10px;\n  border-left: 1px solid #f0f0f0;\n  border-right: 1px solid #f0f0f0;\n}\n\n#content #analysis #analysis-result td.details:first-child\n{\n  padding-left: 0;\n  border-left: 0;\n}\n\n#content #analysis #analysis-result td.details:last-child\n{\n  padding-right: 0;\n  border-right: 0;\n}\n\n#content #analysis #analysis-result td.details tr.empty td\n{\n  color: #f0f0f0;\n}\n\n#content #analysis #analysis-result td.details tr.raw_bytes td\n{\n  letter-spacing: -1px;\n}\n\n#content #analysis #analysis-result .part table table td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #analysis #analysis-result .part table table tr:first-child td\n{\n  border-top: 0;\n}\n\n#content #analysis #field-analysis h2 { background-image: url( ../../img/ico/receipt.png ); }\n#content #analysis .analysis-result h2 { background-image: url( ../../img/ico/receipt-invoice.png ); }"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/cloud.css",
    "content": "#content #cloud\n{\n  position: relative;\n}\n\n#content #cloud #frame .content\n{\n  display: none;\n}\n\n#content #cloud .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #cloud #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 12px;\n  color: #fff;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #cloud #error .msg\n{\n  font-style: italic;\n  font-weight: normal;\n  margin-top: 10px;\n}\n\n#content #cloud #debug\n{\n  background-color: #fff;\n  box-shadow: 0px 0px 10px #c0c0c0;\n  -moz-box-shadow: 0px 0px 10px #c0c0c0;\n  -webkit-box-shadow: 0px 0px 10px #c0c0c0;\n  display: none;\n  padding: 20px;\n  position: absolute;\n  left: 50px;\n  top: 10px;\n}\n\n#content #cloud #debug ul\n{\n  margin-bottom: 5px;\n}\n\n#content #cloud #debug ul a\n{\n  background-position: 4px 50%;\n  border-right: 0;\n  display: block;\n  padding: 2px 4px;\n  padding-left: 25px;\n}\n\n#content #cloud #debug ul a:hover,\n#content #cloud #debug ul a.hover\n{\n  background-color: #f0f0f0;\n}\n\n#content #cloud #debug .clipboard\n{\n  float: left;\n  position: relative;\n}\n\n#content #cloud #debug .clipboard a\n{\n  background-image: url( ../../img/ico/clipboard-paste.png );\n  z-index: 98;\n}\n\n#content #cloud #debug .clipboard a:hover,\n#content #cloud #debug .clipboard a.hover,\n#content #cloud #debug .clipboard.copied a\n{\n  background-image: url( ../../img/ico/clipboard-paste-document-text.png );\n}\n\n#content #cloud #debug .close\n{\n  float: right;\n}\n\n#content #cloud #debug .close a\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  padding-left: 21px;\n}\n\n#content #cloud #debug .close a:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #cloud #debug .debug\n{\n  border: 1px solid #f0f0f0;\n  max-height: 350px;\n  overflow: auto;\n  padding: 5px;\n  width: 500px;\n}\n\n#content #cloud #debug .debug .loader\n{\n  background-position: 5px 50%;\n  display: block;\n  padding: 10px 26px;\n}\n\n#content #cloud .content\n{\n  padding-left: 0;\n  padding-right: 0;\n}\n\n#content #cloud .content.show\n{\n  background-image: url( ../../img/div.gif );\n  background-repeat: repeat-y;\n  background-position: 31% 0;\n}\n\n#content #cloud #tree\n{\n  float: left;\n  width: 30%;\n}\n\n#content #cloud .show #tree\n{\n  overflow: hidden;\n}\n\n#content #cloud #file-content\n{\n  display: none;\n  float: right;\n  position: relative;\n  width: 68%;\n  min-height: 100px\n}\n\n#content #cloud .show #file-content\n{\n  display: block;\n}\n\n#content #cloud #file-content .close\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 50% 50%;\n  display: block;\n  height: 20px;\n  position: absolute;\n  right: 0;\n  top: 0;\n  width: 20px;\n}\n\n#content #cloud #file-content .close:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #cloud #file-content .close span\n{\n  display: none;\n}\n\n#content #cloud #file-content #data\n{\n  border-top: 1px solid #c0c0c0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #cloud #file-content #data pre\n{\n  display: block;\n  max-height: 600px;\n  overflow: auto;\n}\n\n#content #cloud #file-content #data em\n{\n  color: #c0c0c0;\n}\n\n#content #cloud #file-content #prop\n{\n}\n\n#content #cloud #file-content li\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #cloud #file-content li.odd\n{\n  background-color: #F8F8F8;\n}\n\n#content #cloud #file-content li dt\n{\n  float: left;\n  width: 19%;\n}\n\n#content #cloud #file-content li dd\n{\n  float: right;\n  width: 80%;\n}\n\n/* tree */\n\n#content #cloud .tree a.active\n{\n  background-color: #f0f0f0;\n  color: #00f;\n}\n\n#content #cloud #legend\n{\n  border: 1px solid #f0f0f0;\n  padding: 10px;\n  position: absolute;\n  right: 0;\n  bottom: 0;\n}\n\n#content #cloud #legend li\n{\n  padding-left: 15px;\n  position: relative;\n}\n\n#content #cloud #legend li svg\n{\n  position: absolute;\n  left: 0;\n  top: 2px;\n}\n\n#content #graph-content\n{\n  min-height: 400px;\n}\n\n#content #graph-content .node\n{\n  fill: #333;\n}\n\n#content #cloud #legend circle,\n#content #graph-content .node circle\n{\n  fill: #fff;\n  stroke: #c0c0c0;\n  stroke-width: 1.5px;\n}\n\n#content #graph-content .node.lvl-3 text\n{\n  cursor: pointer;\n}\n\n#content #graph-content .node.lvl-3:hover circle\n{\n  stroke: #000 !important;\n}\n\n#content #graph-content .node.lvl-3:hover text\n{\n  fill: #000 !important;\n}\n\n#content #graph-content .link\n{\n  fill: none;\n  stroke: #e0e0e0;\n  stroke-width: 1.5px;\n}\n\n#content #cloud #legend .gone circle,\n#content #graph-content .node.gone circle,\n#content #graph-content .link.gone\n{\n  stroke: #f0f0f0;\n}\n\n#content #graph-content .node.gone text\n{\n  fill: #f0f0f0;\n}\n\n#content #cloud #legend ul .gone\n{\n  color: #e0e0e0;\n}\n\n#content #cloud #legend .recovery_failed,\n#content #cloud #legend .recovery_failed circle,\n#content #graph-content .node.recovery_failed circle\n{\n  color: #C43C35;\n  stroke: #C43C35;\n}\n\n#content #graph-content .node.recovery_failed text\n{\n  fill: #C43C35;\n}\n\n#content #cloud #legend .down,\n#content #cloud #legend .down circle,\n#content #graph-content .node.down circle\n{\n  color: #c48f00;\n  stroke: #c48f00;\n}\n\n#content #graph-content .node.down text\n{\n  fill: #c48f00;\n}\n\n#content #cloud #legend .recovering,\n#content #cloud #legend .recovering circle,\n#content #graph-content .node.recovering circle\n{\n  color: #d5dd00;\n  stroke: #d5dd00;\n}\n\n#content #graph-content .node.recovering text\n{\n  fill: #d5dd00;\n}\n\n#content #cloud #legend .active,\n#content #cloud #legend .active circle,\n#content #graph-content .node.active circle\n{\n  color: #57A957;\n  stroke: #57A957;\n}\n\n#content #graph-content .node.active text\n{\n  fill: #57A957;\n}\n\n#content #cloud #legend .leader circle,\n#content #graph-content .node.leader circle\n{\n  fill: #000;\n}\n\n#content #cloud #legend .leader circle\n{\n  stroke: #fff;\n}\n\n#content #graph-content .link.lvl-2,\n#content #graph-content .link.leader\n{\n  stroke: #c0c0c0;\n}\n\n#content #graph-content .node.lvl-0 circle\n{\n  stroke: #fff;\n}\n\n#content #graph-content .link.lvl-1\n{\n  stroke: #fff;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/common.css",
    "content": "*\n{\n  background-repeat: no-repeat;\n  margin: 0;\n  padding: 0;\n}\n\nbody, h1, h2, h3, h4, h5, h6, a, button, input, select, option, textarea, th, td\n{\n  color: #333;\n  font: 12px/1.6em \"Lucida Grande\", \"DejaVu Sans\", \"Bitstream Vera Sans\", Verdana, Arial, sans-serif;\n}\n\nbody\n{\n  padding: 30px;\n  text-align: center;\n}\n\na, button\n{\n  cursor: pointer;\n}\n\ninput, select, textarea\n{\n  border: 1px solid #c0c0c0;\n  padding: 2px;\n}\n\ninput[readonly=readonly]\n{\n  border-color: #f0f0f0;\n}\n\nbutton\n{\n  background-color: #e6e6e6;\n  background-repeat: no-repeat;\n  background-image: -webkit-gradient( linear, 0 0, 0 100%, from( #ffffff ), color-stop( 25%, #ffffff ), to( #e6e6e6 ) );\n  background-image: -webkit-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -moz-linear-gradient( top, #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -ms-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: -o-linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  background-image: linear-gradient( #ffffff, #ffffff 25%, #e6e6e6 );\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0 );\n  border: 1px solid #ccc;\n  border-bottom-color: #bbb;\n  -moz-border-radius: 4px;\n  -webkit-border-radius: 4px;\n  -khtml-border-radius: 4px;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  -moz-box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.2 ), 0 1px 2px rgba( 0, 0, 0, 0.05 );\n  color: #333;\n  cursor: pointer;\n  display: inline-block;\n  padding: 4px 7px 5px;\n  overflow: visible;\n  text-shadow: 0 1px 1px rgba( 255, 255, 255, 0.75 );\n  -webkit-transition: 0.1s linear background-image;\n  -moz-transition: 0.1s linear background-image;\n  -ms-transition: 0.1s linear background-image;\n  -o-transition: 0.1s linear background-image;\n  transition: 0.1s linear background-image;\n}\n\nbutton span\n{\n  background-position: 0 50%;\n  display: block;\n  padding-left: 21px;\n}\n\nbutton[type=submit], button.primary\n{\n  background-color: #0064cd;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #049cdb ), to( #0064cd ) );\n  background-image: -moz-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -ms-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #049cdb ), color-stop( 100%, #0064cd ) );\n  background-image: -webkit-linear-gradient( top, #049cdb, #0064cd );\n  background-image: -o-linear-gradient( top, #049cdb, #0064cd );\n  background-image: linear-gradient( top, #049cdb, #0064cd );\n  border-color: #0064cd #0064cd #003f81;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0 );\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n\nbutton.success\n{\n  background-color: #57a957;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #62c462 ), to( #57a957 ) );\n  background-image: -moz-linear-gradient( top, #62c462, #57a957 );\n  background-image: -ms-linear-gradient( top, #62c462, #57a957 );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #62c462 ), color-stop( 100%, #57a957 ) );\n  background-image: -webkit-linear-gradient( top, #62c462, #57a957 );\n  background-image: -o-linear-gradient( top, #62c462, #57a957 );\n  background-image: linear-gradient( top, #62c462, #57a957 );\n  border-color: #57a957 #57a957 #3d773d;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62c462', endColorstr='#57a957', GradientType=0 );\n  color: #ffffff;\n  text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.25 );\n}\n\nbutton.warn\n{\n  background-color: #c43c35;\n  background-repeat: repeat-x;\n  background-image: -khtml-gradient( linear, left top, left bottom, from( #ee5f5b ), to( #c43c35 ) );\n  background-image: -moz-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -ms-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #ee5f5b ), color-stop( 100%, #c43c35 ) );\n  background-image: -webkit-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: -o-linear-gradient( top, #ee5f5b, #c43c35 );\n  background-image: linear-gradient( top, #ee5f5b, #c43c35 );\n  border-color: #c43c35 #c43c35 #882a25;\n  border-color: rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.1 ) rgba( 0, 0, 0, 0.25 );\n  color: #ffffff;\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0 );\n  text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.25 );\n}\n\na\n{\n  text-decoration: none;\n}\n\npre\n{\n  color: #333;\n  text-align: left;\n}\n\nabbr\n{\n  cursor: help;\n}\n\nul\n{\n  list-style: none;\n}\n\n.clearfix:after { clear: both; content: \".\"; display: block; font-size: 0; height: 0; visibility: hidden; }\n.clearfix       { display: block; }\n\n.loader\n{\n  background-image: url( ../../img/loader.gif ) !important;\n}\n\n.loader-light\n{\n  background-image: url( ../../img/loader-light.gif ) !important;\n}\n\n#wrapper\n{\n  position: relative;\n  margin: 0 auto;\n  margin-bottom: 30px;\n  text-align: left;\n}\n\n#header\n{\n  padding-bottom: 10px;\n  position: fixed;\n  z-index: 42;\n}\n\n#header #solr\n{\n  background-image: url( ../../img/solr.png );\n  display: block;\n  height: 78px;\n  width: 150px;\n}\n\n#header #solr span\n{\n  display: none;\n}\n\n#main\n{\n  min-width: 750px;\n  position: relative;\n}\n\n#main.error\n{\n  border: 0;\n  min-height: 0;\n  padding-top: 20px;\n}\n\n#main.error .message\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  font-weight: bold;\n  margin-left: 150px;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#main.error .code\n{\n  border: 1px solid #c0c0c0;\n  padding: 5px;\n}\n\n#meta\n{\n  position: absolute;\n  bottom: -26px;\n  right: 0;\n}\n\n#meta li\n{\n  float: left;\n}\n\n#meta li a\n{\n  background-position: 10px 50%;\n  display: block;\n  height: 25px;\n  line-height: 25px;\n  padding-left: 31px;\n  padding-right: 10px;\n}\n\n#meta li a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#meta .documentation a { background-image: url( ../../img/ico/document-text.png ); }\n#meta .issues a { background-image: url( ../../img/ico/bug.png ); }\n#meta .irc a { background-image: url( ../../img/ico/users.png ); }\n#meta .mailinglist a { background-image: url( ../../img/ico/mail.png ); }\n#meta .wiki-query-syntax a { background-image: url( ../../img/ico/script-code.png ); }\n\n#environment\n{\n  background-image: url( ../../img/ico/box.png );\n  background-position: 5px 50%;\n  display: none;\n  font-weight: bold;\n  margin-top: 10px;\n  padding: 5px 10px;\n  padding-left: 26px;\n}\n\n.has-environment #environment\n{\n  display: block;\n}\n\n#environment.prod\n{\n  background-color: #c37f7f;\n  color: #fff;\n}\n\n#environment.test\n{\n  background-color: #f5f5b2;\n}\n\n#environment.dev\n{\n  background-color: #cce7cc;\n}\n\n#init-failures\n{\n  border: 1px solid #f00;\n  display: none;\n  margin-left: 150px;\n  margin-bottom: 20px;\n}\n\n#init-failures h2,\n#init-failures ul,\n#init-failures p\n{\n  padding: 10px;\n}\n\n#init-failures h2\n{\n  background-color: #f00;\n  color: #fff;\n  font-weight: bold;\n}\n\n#init-failures p\n{\n  color: #c0c0c0;\n  padding-top: 0;\n}\n\n#content-wrapper\n{\n  margin-left: 150px;\n  border: 1px solid #c0c0c0;\n  min-height: 500px;\n}\n\n#content\n{\n  padding: 10px;\n}\n\n#content > .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content iframe\n{\n  border: 0;\n  display: block;\n  min-height: 400px;\n  width: 100%;\n}\n\n#content .block\n{\n  margin-bottom: 10px;\n}\n\n#content .block h2\n{\n  background-color: #fafafa;\n  background-position: 5px 50%;\n  border-bottom: 1px solid #f0f0f0;\n  font-weight: bold;\n  padding: 5px;\n  padding-left: 26px;\n}\n\n#content .block.disabled,\n#content .block.disabled h2\n{\n  color: #c0c0c0;\n}\n\n#content .block .message,\n#content .block .content\n{\n  padding: 5px;\n}\n\n#content .block .message\n{\n  display: none;\n}\n\n/* syntax */\n\npre.syntax\n{\n  overflow: auto;\n}\n\npre.syntax code\n{\n  display: block;\n  color: #000;\n}\n\npre.syntax .comment,\npre.syntax .template_comment,\npre.syntax .diff .header,\npre.syntax .javadoc\n{\n  color: #998;\n  font-style: italic;\n}\n\npre.syntax .keyword,\npre.syntax .css .rule .keyword,\npre.syntax .winutils,\npre.syntax .javascript .title,\npre.syntax .lisp .title,\npre.syntax .subst\n{\n  color: #000;\n  font-weight: bold;\n}\n\npre.syntax .number,\npre.syntax .hexcolor\n{\n  color: #40a070;\n}\n\npre.syntax.language-json .number\n{\n  color: blue;\n}\n\npre.syntax.language-json .literal\n{\n  color: firebrick;\n}\n\npre.syntax .string,\npre.syntax .tag .value,\npre.syntax .phpdoc,\npre.syntax .tex .formula\n{\n  color: #d14;\n}\n\npre.syntax.language-json .string\n{\n  color: green;\n}\n\npre.syntax .title,\npre.syntax .id\n{\n  color: #900;\n  font-weight: bold;\n}\n\npre.syntax .javascript .title,\npre.syntax .lisp .title,\npre.syntax .subst\n{\n  font-weight: normal;\n}\n\npre.syntax .class .title,\npre.syntax .tex .command\n{\n  color: #458;\n  font-weight: bold;\n}\n\npre.syntax .tag,\npre.syntax .css .keyword,\npre.syntax .html .keyword,\npre.syntax .tag .title,\npre.syntax .django .tag .keyword\n{\n  color: #000080;\n  font-weight: normal;\n}\n\npre.syntax .attribute,\npre.syntax .variable,\npre.syntax .instancevar,\npre.syntax .lisp .body\n{\n  color: #008080;\n}\n\npre.syntax.language-json .attribute\n{\n  color: black;\n  font-weight: bold;\n}\n\npre.syntax .regexp\n{\n  color: #009926;\n}\n\npre.syntax .class\n{\n  color: #458;\n  font-weight: bold;\n}\n\npre.syntax .symbol,\npre.syntax .ruby .symbol .string,\npre.syntax .ruby .symbol .keyword,\npre.syntax .ruby .symbol .keymethods,\npre.syntax .lisp .keyword,\npre.syntax .tex .special\n{\n  color: #990073;\n}\n\npre.syntax .builtin,\npre.syntax .built_in,\npre.syntax .lisp .title\n{\n  color: #0086b3;\n}\n\npre.syntax .preprocessor,\npre.syntax .pi,\npre.syntax .doctype,\npre.syntax .shebang,\npre.syntax .cdata\n{\n  color: #999;\n  font-weight: bold;\n}\n\npre.syntax .deletion\n{\n  background: #fdd;\n}\n\npre.syntax .addition\n{\n  background: #dfd;\n}\n\npre.syntax .diff .change\n{\n  background: #0086b3;\n}\n\npre.syntax .chunk\n{\n  color: #aaa;\n}\n\npre.syntax .tex .formula\n{\n  opacity: 0.5;\n}\n\n#content .tree li, \n#content .tree ins\n{\n  background-color: transparent;\n  background-image: url( ../../img/tree.png );\n  background-repeat: no-repeat; \n}\n\n#content .tree li\n{\n  background-position: -54px 0;\n  background-repeat: repeat-y;\n  line-height: 22px;\n}\n\n#content .tree li.jstree-last\n{\n  background:transparent;\n}\n\n#content .tree .jstree-open > ins\n{\n  background-position: -36px 0;\n}\n\n#content .tree .jstree-closed > ins\n{\n  background-position: -18px 0;\n}\n\n#content .tree .jstree-leaf > ins\n{\n  background-position: 0 0;\n}\n\n#content .tree .jstree-hovered\n{\n  background:#e7f4f9; border:1px solid #d8f0fa; padding:0 2px 0 1px;\n}\n\n#content .tree .jstree-clicked\n{\n  background:#beebff; border:1px solid #99defd; padding:0 2px 0 1px;\n}\n\n#content .tree a .jstree-icon\n{\n  background-image: url( ../../img/ico/folder.png );\n}\n\n#content .tree .jstree-leaf a .jstree-icon\n{\n  background-image: url( ../../img/ico/document-text.png );\n}\n\n#content .tree .jstree-search\n{\n  font-style:italic;\n}\n\n#content .tree a.jstree-search\n{\n  color:aqua;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/cores.css",
    "content": "#content #cores\n{\n  position: relative;\n}\n\n#content #cores #ui-block\n{\n  background-color: #fff;\n  height: 200px;\n  display: none;\n  position: absolute;\n  left: -5px;\n  top: 35px;\n  width: 500px;\n}\n\n#content #cores #frame\n{\n  float: right;\n  width: 86%;\n}\n\n#content #cores #navigation\n{\n  padding-top: 50px;\n  width: 12%;\n}\n\n#content #cores #navigation a\n{\n  padding-left: 5px;\n}\n\n#content #cores #frame .actions\n{\n  margin-bottom: 20px;\n}\n\n#content #cores .actions div.action\n{\n  width: 300px;\n}\n\n#content #cores .actions div.action .cloud\n{\n  display: none;\n}\n\n#content #cores .actions form .error\n{\n  color: #800;\n  display: none;\n}\n\n#content #cores .actions form p\n{\n  padding-bottom: 8px;\n}\n\n#content #cores .actions form label\n{\n  float: left;\n  padding-top: 3px;\n  padding-bottom: 3px;\n  text-align: right;\n  width: 25%;\n}\n\n#content #cores .actions form input,\n#content #cores .actions form select,\n#content #cores .actions form .buttons,\n#content #cores .actions form .error span\n{\n  float: right;\n  width: 73%;\n}\n\n#content #cores .actions form .buttons\n{\n  padding-top: 10px;\n}\n\n#content #cores .actions form button.submit\n{\n  margin-right: 20px;\n}\n\n#content #cores .actions form button.submit span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #cores .actions form button.reset span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #cores .actions #add\n{\n  left: 0;\n  position: absolute;\n}\n\n#content #cores .actions #add span\n{\n  background-image: url( ../../img/ico/plus-button.png );\n}\n\n#content #cores .actions #unload\n{\n  margin-right: 20px;\n}\n\n#content #cores .actions #unload span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #cores .actions #reload span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #cores .actions #rename span\n{\n  background-image: url( ../../img/ico/ui-text-field-select.png );\n}\n\n#content #cores .actions #swap span\n{\n  background-image: url( ../../img/ico/arrow-switch.png );\n}\n\n#content #cores .actions #optimize\n{\n  display: none;\n}\n\n#content #cores .actions #optimize span\n{\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n}\n\n#content #cores .actions div.action\n{\n  background-color: #fff;\n  border: 1px solid #f0f0f0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  display: none;\n  position: absolute;\n  left: -50px;\n  top: 40;\n  padding: 10px;\n}\n\n#content #cores #data #core-data h2 { background-image: url( ../../img/ico/box.png ); }\n#content #cores #data #index-data h2 { background-image: url( ../../img/ico/chart.png ); }\n\n#content #cores #data #index-data\n{\n  margin-top: 10px;\n}\n\n#content #cores #data li\n{\n  padding-bottom: 3px;\n  padding-top: 3px;\n}\n\n#content #cores #data li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #cores #data li dt\n{\n  float: left;\n  width: 17%;\n}\n\n#content #cores #data li dd\n{\n  float: right;\n  width: 82%;\n}\n\n#content #cores #data li dd.ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n}\n\n#content #cores #data li dd.ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #cores #data li dd.ico span\n{\n  display: none;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/dashboard.css",
    "content": "#content #dashboard .block\n{\n  background-image: none;\n  width: 49%;\n}\n\n#content #dashboard .fieldlist\n{\n  float: left;\n}\n\n#content #dashboard .fieldlist dt,\n#content #dashboard .fieldlist dd\n{\n  display: block;\n  float: left;\n}\n\n#content #dashboard .fieldlist dt\n{\n  clear: left;\n  margin-right: 2%;\n  text-align: right;\n  width: 23%;\n}\n\n#content #dashboard .fieldlist dd\n{\n  width: 74%;\n}\n\n#content #dashboard .fieldlist .index_optimized\n{\n  margin-top: 10px;\n}\n\n#content #dashboard .fieldlist .ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n}\n\n#content #dashboard .fieldlist .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dashboard .fieldlist .ico span\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_optimized.value a\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_optimized.value.ico-0 a\n{\n  background-color: #f0f0f0;\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n  background-position: 5px 50%;\n  border: 1px solid #c0c0c0;\n  display: block;\n  float: left;\n  margin-left: 50px;\n  padding: 1px 5px;\n  padding-left: 26px;\n}\n\n#content #dashboard #statistics .index_has-deletions\n{\n  display: none;\n}\n\n#content #dashboard #statistics .index_has-deletions.value.ico-0\n{\n  background-image: url( ../../img/ico/tick-red.png );\n}\n\n#content #dashboard #replication\n{\n  float: left;\n}\n\n#content #dashboard #replication .is-replicating\n{\n  background-position: 99% 50%;\n  display: block;\n}\n\n#content #dashboard #replication #details table thead td span\n{\n  display: none;\n}\n\n#content #dashboard #dataimport\n{\n  float: right;\n}\n\n\n#content #dashboard #admin-extra\n{\n  float: right;\n}\n\n#content #dashboard #system h2 { background-image: url( ../../img/ico/server.png ); }\n#content #dashboard #statistics h2 { background-image: url( ../../img/ico/chart.png ); }\n#content #dashboard #replication h2 { background-image: url( ../../img/ico/node.png ); }\n#content #dashboard #replication.master h2 { background-image: url( ../../img/ico/node-master.png ); }\n#content #dashboard #replication.slave h2 { background-image: url( ../../img/ico/node-slave.png ); }\n#content #dashboard #dataimport h2 { background-image: url( ../../img/ico/document-import.png ); }\n#content #dashboard #admin-extra h2 { background-image: url( ../../img/ico/plus-button.png ); }\n\n#content #dashboard #healthcheck .ico\n{\n  background-image: url( ../../img/ico/slash.png );\n  height: 20px;\n  padding-left: 20px;\n  width: 60%;\n}\n\n#content #dashboard #healthcheck .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/dataimport.css",
    "content": "#content #dataimport\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #dataimport #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #dataimport #form\n{\n  float: left;\n  width: 20%;\n}\n\n#content #dataimport #form #navigation\n{\n  border-right: 0;\n}\n\n#content #dataimport #form #navigation a\n{\n  background-image: url( ../../img/ico/status-offline.png );\n}\n\n#content #dataimport #form #navigation .current a\n{\n  background-image: url( ../../img/ico/status.png );\n}\n\n#content #dataimport #form form\n{\n  display: none;\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 5px;\n}\n\n#content #dataimport.error #form form\n{\n  display: none !important;\n}\n\n#content #dataimport #form label\n{\n  cursor: pointer;\n  display: block;\n  margin-top: 5px;\n}\n\n#content #dataimport #form input,\n#content #dataimport #form select,\n#content #dataimport #form textarea\n{\n  margin-bottom: 2px;\n  width: 100%;\n}\n\n#content #dataimport #form input\n{\n  width: 98%;\n}\n\n#content #dataimport #form button\n{\n  margin-top: 10px;\n}\n\n#content #dataimport #form .execute span\n{\n  background-image: url( ../../img/ico/document-import.png );\n}\n\n#content #dataimport #form .refresh-status span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #dataimport #form .refresh-status span.success\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #form #start\n{\n  float: left;\n  width: 47%;\n}\n\n#content #dataimport #form #rows\n{\n  float: right;\n  width: 47%;\n}\n\n#content #dataimport #form .checkbox input\n{\n  margin-bottom: 0;\n  width: auto;\n}\n\n#content #dataimport #form #auto-refresh-status\n{\n  margin-top: 20px;\n}\n\n#content #dataimport #form #auto-refresh-status a\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #dataimport #form #auto-refresh-status a.on,\n#content #dataimport #form #auto-refresh-status a:hover\n{\n  color: #333;\n}\n\n#content #dataimport #form #auto-refresh-status a.on\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n}\n\n#content #dataimport #current_state\n{\n  padding: 10px;\n  margin-bottom: 20px;\n}\n\n#content #dataimport.error #current_state\n{\n  display: none !important;\n}\n\n#content #dataimport #current_state .last_update,\n#content #dataimport #current_state .info\n{\n  display: block;\n  padding-left: 21px;\n}\n\n#content #dataimport #current_state .last_update\n{\n  color: #c0c0c0;\n  font-size: 11px;\n}\n\n#content #dataimport #current_state .info\n{\n  background-position: 0 1px;\n  position: relative;\n}\n\n#content #dataimport #current_state .info .details span\n{\n  color: #c0c0c0;\n}\n\n#content #dataimport #current_state .info .abort-import\n{\n  display: none;\n  position: absolute;\n  right: 0px;\n  top: 0px;\n}\n\n#content #dataimport #current_state .info .abort-import span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #dataimport #current_state .info .abort-import.success span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #current_state.indexing\n{\n  background-color: #f9f9f9;\n}\n\n#content #dataimport #current_state.indexing .info\n{\n  background-image: url( ../../img/ico/hourglass.png );\n}\n\n#content #dataimport #current_state.indexing .info .abort-import\n{\n  display: block;\n}\n\n#content #dataimport #current_state.success\n{\n  background-color: #e6f3e6;\n}\n\n#content #dataimport #current_state.success .info\n{\n  background-image: url( ../../img/ico/tick-circle.png );\n}\n\n#content #dataimport #current_state.success .info strong\n{\n  color: #080;\n}\n\n#content #dataimport #current_state.aborted\n{\n  background-color: #f3e6e6;\n}\n\n#content #dataimport #current_state.aborted .info\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #dataimport #current_state.aborted .info strong\n{\n  color: #800;\n}\n\n#content #dataimport #current_state.failure\n{\n  background-color: #f3e6e6;\n}\n\n#content #dataimport #current_state.failure .info\n{\n  background-image: url( ../../img/ico/cross-button.png );\n}\n\n#content #dataimport #current_state.failure .info strong\n{\n  color: #800;\n}\n\n#content #dataimport #current_state.idle\n{\n  background-color: #e6e6ff;\n}\n\n#content #dataimport #current_state.idle .info\n{\n  background-image: url( ../../img/ico/information.png );\n}\n\n#content #dataimport #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #dataimport .block h2\n{\n  border-color: #c0c0c0;\n  padding-left: 5px;\n  position: relative;\n}\n\n#content #dataimport .block.hidden h2\n{\n  border-color: #fafafa;\n}\n\n#content #dataimport .block h2 a.toggle\n{\n  background-image: url( ../../img/ico/toggle-small.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #dataimport .block.hidden h2 a.toggle\n{\n  background-image: url( ../../img/ico/toggle-small-expand.png );\n}\n\n#content #dataimport #config h2 a.r\n{\n  background-position: 3px 50%;\n  display: block;\n  float: right;\n  margin-left: 10px;\n  padding-left: 24px;\n  padding-right: 3px;\n}\n\n#content #dataimport #config h2 a.reload_config\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}\n\n#content #dataimport #config h2 a.reload_config.success\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #dataimport #config h2 a.reload_config.error\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #dataimport #config h2 a.debug_mode\n{\n  background-image: url( ../../img/ico/hammer.png );\n  color: #c0c0c0;\n}\n\n#content #dataimport #config.debug_mode h2 a.debug_mode\n{\n  background-color: #ff0;\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n  color: #333;\n}\n\n#content #dataimport .block.hidden .content\n{\n  display: none;\n}\n\n#content #dataimport #config .content\n{\n  padding: 5px 2px;\n}\n\n#content #dataimport #dataimport_config .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #dataimport #dataimport_config .formatted\n{\n  border: 1px solid #fff;\n  display: block;\n  padding: 2px;\n}\n\n#content #dataimport .debug_mode #dataimport_config .formatted\n{\n  display: none;\n}\n\n#content #dataimport #dataimport_config .editable\n{\n  display: none;\n}\n\n#content #dataimport .debug_mode #dataimport_config .editable\n{\n  display: block;\n}\n\n#content #dataimport #dataimport_config .editable textarea\n{\n  font-family: monospace;\n  height: 120px;\n  min-height: 60px;\n  width: 100%;\n}\n\n#content #dataimport #debug_response\n{\n  display: none;\n}\n\n#content #dataimport #debug_response em\n{\n  color: #c0c0c0;\n  font-style: normal;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/index.css",
    "content": "#content #index .bar-desc\n{\n  color: #c0c0c0;\n  font-weight: normal;\n  margin-left: 10px;\n  white-space: pre;\n}\n\n#content #index .bar-holder\n{\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  height: 35px;\n}\n\n#content #index .bar-holder .bar\n{\n  height: 100%;\n  position: relative;\n}\n\n#content #index .bar-holder div .val\n{\n  border-right: 1px solid #f00;\n  display: block;\n  padding-right: 5px;\n  position: absolute;\n  right: 0;\n  top: 35px;\n  white-space: nowrap;\n}\n\n#content #index .bar-holder .bar-max.bar\n{\n  background-color: #f0f0f0;\n}\n\n#content #index .bar-holder .bar-max.val\n{\n  border-color: #f0f0f0;\n  color: #d6d6d6;\n}\n\n#content #index .bar-holder .bar-total.bar\n{\n  background-color: #c0c0c0;\n}\n\n#content #index .bar-holder .bar-total.val\n{\n  border-color: #c0c0c0;\n  color: #c0c0c0;\n}\n\n#content #index .bar-holder .bar-used.bar\n{\n  background-color: #969696;\n}\n\n#content #index .bar-holder .bar-used.val\n{\n  border-color: #969696;\n  color: #969696;\n}\n\n#content #index .bar-holder.bar-lvl-2 .bar-max.val { padding-top: 25px; }\n#content #index .bar-holder.bar-lvl-2 .bar-total.val { padding-top: 5px; }\n#content #index .bar-holder.bar-lvl-2 { margin-bottom: 45px; }\n\n#content #index .bar-holder.bar-lvl-3 .bar-max.val { padding-top: 45px; }\n#content #index .bar-holder.bar-lvl-3 .bar-total.val { padding-top: 25px; }\n#content #index .bar-holder.bar-lvl-3 .bar-used.val { padding-top: 5px; }\n#content #index .bar-holder.bar-lvl-3 { margin-bottom: 65px; }\n\n#content #index .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #index .index-left\n{\n  float: left;\n  width: 55%;\n}\n\n#content #index .index-right\n{\n  float: right;\n  width: 40%;\n}\n\n#content #index .data li\n{\n  display: none;\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #index .data li dt\n{\n  float: left;\n  white-space: nowrap;\n  width: 20%;\n}\n\n#content #index .data li dd\n{\n  float: right;\n  text-overflow: ellipsis;\n  overflow: hidden;\n  white-space: nowrap;\n  width: 80%\n}\n\n#content #index .data li dd.odd\n{\n  color: #999;\n}\n\n#content #index .data dt span\n{\n  background-position: 1px 50%;\n  display: block;\n  padding-left: 22px;\n}\n\n#content #index #instance h2 { background-image: url( ../../img/ico/server.png ); }\n#content #index #instance .start_time dt span { background-image: url( ../../img/ico/clock-select.png ); }\n#content #index #instance .host dt span { background-image: url( ../../img/ico/globe.png ); }\n#content #index #instance .dir dt span { background-image: url( ../../img/ico/folder.png ); }\n\n#content #index #versions h2 { background-image: url( ../../img/ico/property.png ); }\n#content #index #versions .solr span { background-image: url( ../../img/solr-ico.png ); }\n#content #index #versions .lucene span { background-image: url( ../../img/lucene-ico.png ); }\n\n#content #index #jvm h2 { background-image: url( ../../img/ico/jar.png ); }\n#content #index #jvm .jvm_version dt span { background-image: url( ../../img/ico/jar.png ); }\n#content #index #jvm .processors dt span { background-image: url( ../../img/ico/processor.png ); }\n#content #index #jvm .command_line_args dt span { background-image: url( ../../img/ico/terminal.png ); }\n\n#content #index #system h2 { background-image: url( ../../img/ico/system-monitor.png ); }\n\n#content #index #system\n{\n  position: relative;\n}\n\n#content #index #system .reload\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n  background-position: 50% 50%;\n  display: block;\n  height: 30px;\n  position: absolute;\n  right: 0;\n  top: 0;\n  width: 30px;\n}\n\n#content #index #system .reload.loader\n{\n  padding-left: 0;\n}\n\n#content #index #system .reload span\n{\n  display: none;\n}\n\n#content #index #system .content p\n{\n  margin-top: 10px;\n  margin-bottom: 5px;\n}\n\n#content #index #system .content .no-info\n{\n  color: #c0c0c0;\n  display: none;\n  font-style: italic;\n}\n\n#content #index #jvm-memory h2 { background-image: url( ../../img/ico/memory.png ); }\n\n#content #index #jvm-memory-bar\n{\n  margin-top: 20px;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/java-properties.css",
    "content": "#content #java-properties .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;   \n}\n\n#content #java-properties li\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #java-properties li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #java-properties li dt\n{\n  float: left;\n  width: 29%;\n}\n\n#content #java-properties li dd\n{\n  float: right;\n  width: 70%\n}\n\n#content #java-properties li dd.odd\n{\n  color: #999;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/logging.css",
    "content": "#content #logging .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #logging .block h2\n{\n  background-image: url( ../../img/ico/document-text.png );\n  margin-bottom: 10px;\n}\n\n#content #logging .block h2 span span\n{\n  color: #c0c0c0;\n  font-weight: normal;\n  margin-left: 10px;\n}\n\n#content #logging #viewer\n{\n  position: relative;\n}\n\n#content #logging #viewer #state\n{\n  background-position: 0 50%;\n  color: #c0c0c0;\n  margin-top: 20px;\n  padding-left: 21px;\n}\n\n#content #logging #viewer table\n{\n  border-collapse: collapse;\n  width: 100%;\n}\n\n#content #logging #viewer th,\n#content #logging #viewer td a,\n#content #logging #viewer tbody .trace td\n{\n  padding: 3px 10px;\n}\n\n#content #logging #viewer td\n{\n  vertical-align: top;\n}\n\n#content #logging #viewer td a\n{\n  display: block;\n}\n\n#content #logging #viewer thead th\n{\n  font-weight: bold;\n  text-align: left;\n}\n\n#content #logging #viewer tbody td,\n#content #logging #viewer tfoot td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #logging #viewer thead th.message\n{\n  width:100%;\n}\n\n#content #logging #viewer tbody td.span a\n{\n  padding-left: 0;\n  padding-right: 0;\n}\n\n#content #logging #viewer tbody span\n{\n  display: block;\n  padding-left: 10px;\n  padding-right: 10px;\n}\n\n#content #logging #viewer tbody .level-info .level span { background-color: #ebf5eb; }\n#content #logging #viewer tbody .level-warning     span { background-color: #FFD930; }\n#content #logging #viewer tbody .level-severe     span  { background-color: #c43c35; color: #fff; }\n\n#content #logging #viewer tbody .level-debug  span  { background-color: #ebf5eb; }\n#content #logging #viewer tbody .level-warn   span  { background-color: #FFD930; }\n#content #logging #viewer tbody .level-error  span  { background-color: #FF6130; }\n#content #logging #viewer tbody .level-fatal  span  { background-color: #c43c35; }\n\n#content #logging #viewer tbody .has-trace a\n{\n  cursor: pointer;\n}\n\n#content #logging #viewer tbody .has-trace a:hover\n{\n  color: #008;\n}\n\n#content #logging #viewer tbody .has-trace .message a\n{\n  background-image: url( ../../img/ico/information.png );\n  background-position: 100% 50%;\n  display: block;\n  padding-right: 21px;\n}\n\n#content #logging #viewer tbody .has-trace.open .message a\n{\n  background-image: url( ../../img/ico/information-white.png );\n}\n\n#content #logging #viewer tbody .trace\n{\n  display: none;\n}\n\n#content #logging #viewer tbody .trace td\n{\n  border-top: 0;\n  color: #c0c0c0;\n}\n\n#content #logging #viewer .has-data tfoot\n{\n  display: none;\n}\n\n#content #logging #viewer tfoot td\n{\n  color: #c0c0c0;\n}\n\n#content #logging .jstree > li\n{\n  margin-left: 0;\n}\n\n#content #logging .jstree li\n{\n  position: relative;\n}\n\n#content #logging .jstree .level-finest  { background-color: #d5e5fc; }\n#content #logging .jstree .level-fine    { background-color: #d5fafc; }\n#content #logging .jstree .level-config  { background-color: #e6fded; }\n#content #logging .jstree .level-info    { background-color: #fafcd7; }\n#content #logging .jstree .level-warning { background-color: #fcecd5; }\n#content #logging .jstree .level-severe  { background-color: #fcdcda; }\n#content #logging .jstree .level-off     { background-color: #ffffff; }\n\n/* Log4j */\n#content #logging .jstree .level-all     { background-color: #9EDAFF; }\n#content #logging .jstree .level-trace   { background-color: #d5e5fc; }\n#content #logging .jstree .level-debug   { background-color: #d5fafc; }\n#content #logging .jstree .level-warn    { background-color: #e6fded; }\n#content #logging .jstree .level-error   { background-color: #fcecd5; }\n#content #logging .jstree .level-fatal   { background-color: #fcdcda; }\n\n\n#content #logging .jstree a\n{\n  height: 17px;\n  line-height: 17px;\n  padding: 0;\n  width: 90%;\n}\n\n#content #logging .jstree a:hover\n{\n  color: #008;\n}\n\n#content #logging .jstree a span.ns\n{\n  display: none;\n}\n\n#content #logging.ns .jstree a span.ns\n{\n  display: inline;\n}\n\n#content #logging .jstree a span.name\n{\n  background-position: 100% 50%;\n  cursor: pointer;\n  padding-right: 21px;\n}\n\n#content #logging .jstree a.trigger.set\n{\n  font-weight: bold;\n}\n\n#content #logging .jstree a:hover span.name\n{\n  background-image: url( ../../img/ico/pencil-small.png );\n}\n\n#content #logging .jstree .selector-holder\n{\n  position: absolute;\n  top: -2px;\n  z-index: 700;\n}\n\n#content #logging .jstree .selector-holder.open\n{\n  background-color: #fff;\n  margin-left: -19px;\n  z-index: 800;\n}\n\n#content #logging .jstree li .selector-holder { left: 440px; }\n#content #logging .jstree li li .selector-holder { left: 422px; }\n#content #logging .jstree li li li .selector-holder { left: 404px; }\n#content #logging .jstree li li li li .selector-holder { left: 386px; }\n#content #logging .jstree li li li li li .selector-holder { left: 368px; }\n#content #logging .jstree li li li li li li .selector-holder { left: 350px; }\n#content #logging .jstree li li li li li li li .selector-holder { left: 332px; }\n\n#content #logging .jstree .selector\n{\n  border: 1px solid transparent;\n  position: relative;\n}\n\n#content #logging .jstree .open .selector\n{\n  border-color: #f0f0f0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n}\n\n#content #logging .jstree .selector a\n{\n  display: block;\n  padding: 2px;\n  width: auto;\n}\n\n#content #logging .jstree .selector .close\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector .close\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 50% 50%;\n  display: block;\n  position: absolute;\n  right: -25px;\n  top: 0;\n  width: 20px;\n}\n\n#content #logging .jstree .open .selector .close:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n}\n\n#content #logging .jstree .open .selector .close span\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector a.trigger\n{\n  display: none;\n}\n\n#content #logging .jstree .selector ul\n{\n  display: none;\n}\n\n#content #logging .jstree .open .selector ul\n{\n  display: block;\n}\n\n#content #logging .jstree .selector ul li\n{\n  background: none;\n  margin-left: 0;\n}\n\n#content #logging .jstree .selector ul li a\n{\n  background-image: url( ../../img/ico/ui-radio-button-uncheck.png );\n  background-position: 2px 50%;\n  padding-left: 21px;\n}\n\n#content #logging .jstree .selector ul li a.level\n{\n  background-color: #f0f0f0;\n}\n\n#content #logging .jstree .selector ul li a:hover\n{\n  background-image: url( ../../img/ico/ui-radio-button.png );\n}\n\n#content #logging .jstree .selector li.unset\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #logging .jstree .selector li.unset a\n{\n  background-image: url( ../../img/ico/cross-0.png );\n  background-position: 4px 50%;\n}\n\n#content #logging .jstree .selector li.unset a:hover\n{\n  background-image: url( ../../img/ico/cross-1.png );\n  color: #800;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/menu.css",
    "content": "#menu-wrapper\n{\n  position: fixed;\n  top: 120px;\n  width: 150px;\n}\n\n.has-environment #menu-wrapper\n{\n  top: 160px;\n}\n\n#menu-wrapper a\n{\n  display: block;\n  padding: 4px 2px;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n\n#core-selector\n{\n  margin-top: 20px;\n  padding-right: 10px;\n}\n\n#core-selector a\n{\n  padding: 0;\n  padding-left: 8px;\n}\n\n#core-selector select\n{\n  width: 100%;\n}\n\n#menu-wrapper .active p\n{\n  background-color: #fafafa;\n  border-color: #c0c0c0;\n}\n\n#menu-wrapper p a,\n#menu a\n{\n  background-position: 5px 50%;\n  padding-left: 26px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n#menu-wrapper p a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#menu-wrapper .active p a\n{\n  background-color: #c0c0c0;\n  font-weight: bold;\n}\n\n#menu p.loader\n{\n  background-position: 5px 50%;\n  color: #c0c0c0;\n  margin-top: 5px;\n  padding-left: 26px;\n}\n\n#menu p a small\n{\n  color: #b5b5b5;\n  font-weight: normal;\n}\n\n#menu p a small span.txt\n{\n  display: none;\n}\n\n#menu p a small:hover span.txt\n{\n  display: inline;\n}\n\n#menu .busy\n{\n  border-right-color: #f6f5d9;\n}\n\n#menu .busy p a\n{\n  background-color: #f6f5d9;\n  background-image: url( ../../img/ico/status-away.png );\n}\n\n#menu .offline\n{\n  border-right-color: #eccfcf;\n}\n\n#menu .offline p a\n{\n  background-color: #eccfcf;\n  background-image: url( ../../img/ico/status-busy.png );\n}\n\n#menu .online\n{\n  border-right-color: #cfecd3;\n}\n\n#menu .online p a\n{\n  background-color: #cfecd3;\n  background-image: url( ../../img/ico/status.png );\n}\n\n#menu .ping small\n{\n  color: #000\n}\n\n#menu li\n{\n  border-bottom: 1px solid #f0f0f0;\n}\n\n#menu li:last-child\n{\n  border-bottom: 0;\n}\n\n#menu li.optional\n{\n  display: none;\n}\n\n#core-menu p\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#core-menu li:first-child p\n{\n  border-top: 0;\n}\n\n#core-menu p a\n{\n  background-image: url( ../../img/ico/status-offline.png );\n}\n\n#core-menu .active p a\n{\n  background-image: url( ../../img/ico/box.png );\n}\n\n#core-menu ul,\n#menu ul\n{\n  display: none;\n  padding-top: 5px;\n  padding-bottom: 10px;\n}\n\n#core-menu .active ul,\n#menu .active ul\n{\n  display: block;\n}\n\n#menu ul li\n{\n  border-bottom: 0;\n}\n\n#core-menu ul li a,\n#menu ul li a\n{\n  background-position: 7px 50%;\n  border-bottom: 1px solid #f0f0f0;\n  color: #bbb;\n  margin-left: 15px;\n  padding-left: 26px;\n}\n\n#core-menu ul li:last-child a,\n#menu ul li:last-child a\n{\n  border-bottom: 0;\n}\n\n#core-menu ul li a:hover,\n#menu ul li a:hover\n{\n  background-color: #f0f0f0;\n  color: #333;\n}\n\n#core-menu ul li.active a,\n#menu ul li.active a\n{\n  background-color: #d0d0d0;\n  border-color: #d0d0d0;\n  color: #333;\n}\n\n#menu #index.global p a { background-image: url( ../../img/ico/dashboard.png ); }\n\n#menu #logging.global p a { background-image: url( ../../img/ico/inbox-document-text.png ); }\n#menu #logging.global .level a { background-image: url( ../../img/ico/gear.png ); }\n\n#menu #java-properties.global p a { background-image: url( ../../img/ico/jar.png ); }\n\n#menu #threads.global p a { background-image: url( ../../img/ico/ui-accordion.png ); }\n\n#menu #cores.global p a { background-image: url( ../../img/ico/databases.png ); }\n\n#menu #cloud.global p a { background-image: url( ../../img/ico/network-cloud.png ); }\n#menu #cloud.global .tree a { background-image: url( ../../img/ico/folder-tree.png ); }\n#menu #cloud.global .graph a { background-image: url( ../../img/ico/molecule.png ); }\n#menu #cloud.global .rgraph a { background-image: url( ../../img/ico/asterisk.png ); }\n#menu #cloud.global .dump a { background-image: url( ../../img/ico/download-cloud.png ); }\n\n#core-menu .ping.error a\n{\n  \n  background-color: #ffcccc;\n  background-image: url( ../../img/ico/system-monitor--exclamation.png );\n  border-color: #ffcccc;\n  cursor: help;\n}\n\n#core-menu .overview a { background-image: url( ../../img/ico/home.png ); }\n#core-menu .query a { background-image: url( ../../img/ico/magnifier.png ); }\n#core-menu .schema a { background-image: url( ../../img/ico/table.png ); }\n#core-menu .config a { background-image: url( ../../img/ico/gear.png ); }\n#core-menu .analysis a { background-image: url( ../../img/ico/funnel.png ); }\n#core-menu .schema-browser a { background-image: url( ../../img/ico/book-open-text.png ); }\n#core-menu .replication a { background-image: url( ../../img/ico/node.png ); }\n#core-menu .distribution a { background-image: url( ../../img/ico/node-select.png ); }\n#core-menu .ping a { background-image: url( ../../img/ico/system-monitor.png ); }\n#core-menu .logging a { background-image: url( ../../img/ico/inbox-document-text.png ); }\n#core-menu .plugins a { background-image: url( ../../img/ico/block.png ); }\n#core-menu .dataimport a { background-image: url( ../../img/ico/document-import.png ); }\n\n\n#content #navigation\n{\n  border-right: 1px solid #e0e0e0;\n}\n\n#content #navigation a\n{\n  display: block;\n  padding: 4px 2px;\n}\n\n#content #navigation .current\n{\n  border-color: #e0e0e0;\n}\n\n#content #navigation a\n{\n  background-position: 5px 50%;\n  padding-left: 26px;\n  padding-top: 5px;\n  padding-bottom: 5px;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n\n#content #navigation a:hover\n{\n  background-color: #f0f0f0;\n}\n\n#content #navigation .current a\n{\n  background-color: #e0e0e0;\n  font-weight: bold;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/plugins.css",
    "content": "#content #plugins #navigation\n{\n  width: 20%;\n}\n\n#content #plugins #navigation .cache a { background-image: url( ../../img/ico/disk-black.png ); }\n#content #plugins #navigation .core a { background-image: url( ../../img/ico/wooden-box.png ); }\n#content #plugins #navigation .other a { background-image: url( ../../img/ico/zone.png ); }\n#content #plugins #navigation .highlighting a { background-image: url( ../../img/ico/highlighter-text.png ); }\n#content #plugins #navigation .updatehandler a{ background-image: url( ../../img/ico/arrow-circle.png ); }\n#content #plugins #navigation .queryhandler a { background-image: url( ../../img/ico/magnifier.png ); }\n\n#content #plugins #navigation .PLUGINCHANGES { margin-top: 20px; }\n#content #plugins #navigation .PLUGINCHANGES a { background-image: url( ../../img/ico/eye.png ); }\n#content #plugins #navigation .RELOAD a { background-image: url( ../../img/ico/arrow-circle.png ); }\n\n\n#content #plugins #navigation a\n{\n  position: relative;\n}\n\n#content #plugins #navigation a span\n{\n  background-color: #bba500;\n  border-radius: 5px;\n  color: #fff;\n  font-size: 10px;\n  font-weight: normal;\n  line-height: 1.4em;\n  padding-left: 4px;\n  padding-right: 4px;\n  position: absolute;\n  right: 5px;\n  top: 7px;\n}\n\n#content #plugins #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #plugins #frame .entry\n{\n  margin-bottom: 10px;\n}\n\n#content #plugins #frame .entry:last-child\n{\n  margin-bottom: 0;\n}\n\n#content #plugins #frame .entry a\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 0 50%;\n  display: block;\n  font-weight: bold;\n  padding-left: 21px;\n}\n\n#content #plugins #frame .entry.changed a span\n{\n  color: #bba500;\n}\n\n#content #plugins #frame .entry.expanded a\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #plugins #frame .entry.expanded ul\n{\n  display: block;\n}\n\n#content #plugins #frame .entry ul\n{\n  border-left: 9px solid #f0f3ff;\n  display: none;\n  margin-left: 3px;\n  padding-top: 5px;\n  padding-left: 10px;\n}\n\n#content #plugins #frame .entry li\n{\n  padding-top: 2px;\n  padding-bottom: 2px;\n}\n\n#content #plugins #frame .entry li.stats\n{\n  border-top: 1px solid #c0c0c0;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #plugins #frame .entry li.odd\n{\n  background-color: #f8f8f8;\n}\n\n#content #plugins #frame .entry dt,\n#content #plugins #frame .entry .stats span\n{\n  float: left;\n  width: 11%;\n}\n\n#content #plugins #frame .entry dd,\n#content #plugins #frame .entry .stats ul\n{\n  float: right;\n  width: 88%;\n}\n\n#content #plugins #frame .entry .stats ul\n{\n  border-left: 0;\n  margin: 0;\n  padding: 0;\n}\n\n#content #plugins #frame .entry .stats dt\n{\n  width: 27%;\n}\n\n#content #plugins #frame .entry .stats dd\n{\n  width: 72%;\n}\n\n#content #plugins #frame .entry.expanded a.linker {\n  background-image: none;\n  background-position: 0 0;\n  display: inline;\n  font-weight: normal;\n  padding:0px;\n}\n\n#content #plugins #frame .entry.expanded a.linker:hover {\n  background-color:#F0F3FF;\n}\n\n#recording\n{\n  display: none;\n}\n\n#recording .wrapper\n{\n  padding: 30px;\n}\n\n#recording p\n{\n  background-position: 0 50%;\n  float: left;\n  padding-left: 21px;\n  padding-top: 7px;\n  padding-bottom: 7px;\n}\n\n#recording button\n{\n  float: right;\n}\n\n#recording button span\n{\n  background-image: url( ../../img/ico/new-text.png );\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/query.css",
    "content": "#content #query\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 22% 0;\n  background-repeat: repeat-y;\n}\n\n#content #query #form\n{\n  float: left;\n  width: 21%;\n}\n\n#content #query #form label\n{\n  cursor: pointer;\n  display: block;\n  margin-top: 5px;\n}\n\n#content #query #form input,\n#content #query #form select,\n#content #query #form textarea\n{\n  margin-bottom: 2px;\n  width: 100%;\n}\n\n#content #query #form input,\n#content #query #form textarea\n{\n  width: 98%;\n}\n\n#content #query #form #start\n{\n  float: left;\n  width: 45%;\n}\n\n#content #query #form #rows\n{\n  float: right;\n  width: 45%;\n}\n\n#content #query #form .checkbox input\n{\n  margin-bottom: 0;\n  width: auto;\n}\n\n#content #query #form fieldset,\n#content #query #form .optional.expanded\n{\n  border: 1px solid #fff;\n  border-top: 1px solid #c0c0c0;\n  margin-bottom: 5px;\n}\n\n#content #query #form fieldset.common\n{\n  margin-top: 10px;\n}\n\n#content #query #form fieldset legend,\n#content #query #form .optional.expanded legend\n{\n  display: block;\n  margin-left: 10px;\n  padding: 0px 5px;\n}\n\n#content #query #form fieldset legend label\n{\n  margin-top: 0;\n}\n\n#content #query #form fieldset .fieldset\n{\n  border-bottom: 1px solid #f0f0f0;\n  margin-bottom: 5px;\n  padding-bottom: 10px;\n}\n\n#content #query #form .optional\n{\n  border: 0;\n}\n\n#content #query #form .optional .fieldset\n{\n  display: none;\n}\n\n#content #query #form .optional legend\n{\n  margin-left: 0;\n  padding-left: 0;\n}\n\n#content #query #form .optional.expanded .fieldset\n{\n  display: block;\n}\n\n#content #query #result\n{\n  display: none;\n  float: right;\n  width: 77%;\n}\n\n#content #query #result #url\n{\n  margin-bottom: 10px;\n  background-image: url( ../../img/ico/ui-address-bar.png );\n  background-position: 5px 50%;\n  border: 1px solid #f0f0f0;\n  box-shadow: 1px 1px 0 #f0f0f0;\n  -moz-box-shadow: 1px 1px 0 #f0f0f0;\n  -webkit-box-shadow: 1px 1px 0 #f0f0f0;\n  color: #c0c0c0;\n  display: block;\n  overflow: hidden;\n  padding: 5px;\n  padding-left: 26px;\n  white-space: nowrap;\n}\n\n#content #query #result #url:focus,\n#content #query #result #url:hover\n{\n  border-color: #c0c0c0;\n  box-shadow: 1px 1px 0 #d8d8d8;\n  -moz-box-shadow: 1px 1px 0 #d8d8d8;\n  -webkit-box-shadow: 1px 1px 0 #d8d8d8;\n  color: #333;\n}\n\n#content #query #result #response\n{\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/replication.css",
    "content": "#content #replication\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #replication #frame\n{\n  float: right;\n  width: 78%;\n}\n\n#content #replication #navigation\n{\n  border-right: 0;\n  float: left;\n  width: 20%;\n}\n\n#content #replication #error\n{\n  background-color: #f00;\n  background-image: url( ../../img/ico/construction.png );\n  background-position: 10px 50%;\n  color: #fff;\n  display: none;\n  font-weight: bold;\n  margin-bottom: 20px;\n  padding: 10px;\n  padding-left: 35px;\n}\n\n#content #replication .block\n{\n  border-bottom: 1px solid #c0c0c0;\n  margin-bottom: 20px;\n  padding-bottom: 20px;\n}\n\n#content #replication .block.last\n{\n  border-bottom: 0;\n}\n\n#content #replication .masterOnly,\n#content #replication .slaveOnly\n{\n  display: none;\n}\n\n#content #replication.master .masterOnly\n{\n  display: block;\n}\n\n#content #replication.slave .slaveOnly\n{\n  display: block;\n}\n\n#content #replication .replicating\n{\n  display: none;\n}\n\n#content #replication.replicating .replicating\n{\n  display: block;\n}\n\n#content #replication #progress\n{\n  padding-bottom: 80px;\n  position: relative;\n}\n\n#content #replication #progress .info\n{\n  padding: 5px;\n}\n\n#content #replication #progress #start\n{\n  margin-left: 100px;\n  border-left: 1px solid #c0c0c0;\n}\n\n#content #replication #progress #bar\n{\n  background-color: #f0f0f0;\n  margin-left: 100px;\n  margin-right: 100px;\n  position: relative;\n}\n\n#content #replication #progress #bar #bar-info,\n#content #replication #progress #bar #eta\n{\n  position: absolute;\n  right: -100px;\n  width: 100px;\n}\n\n#content #replication #progress #bar #bar-info\n{\n  border-left: 1px solid #f0f0f0;\n  margin-top: 30px;\n}\n\n#content #replication #progress #eta .info\n{\n  color: #c0c0c0;\n  height: 30px;\n  line-height: 30px;\n  padding-top: 0;\n  padding-bottom: 0;\n}\n\n#content #replication #progress #speed\n{\n  color: #c0c0c0;\n  position: absolute;\n  right: 100px;\n  top: 0;\n}\n\n#content #replication #progress #bar #done\n{\n  background-color: #c0c0c0;\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  height: 30px;\n  position: relative;\n}\n\n#content #replication #progress #bar #done .percent\n{\n  font-weight: bold;\n  height: 30px;\n  line-height: 30px;\n  padding-left: 5px;\n  padding-right: 5px;\n  position: absolute;\n  right: 0;\n  text-align: right;\n}\n\n#content #replication #progress #bar #done #done-info\n{\n  border-right: 1px solid #c0c0c0;\n  position: absolute;\n  right: 0;\n  margin-top: 30px;\n  text-align: right;\n  width: 100px;\n}\n\n#content #replication #progress #bar #done #done-info .percent\n{\n  font-weight: bold;\n}\n\n#content #replication .block .label,\n#content #replication #current-file .file,\n#content #replication #current-file .progress,\n#content #replication #iterations .iterations\n{\n  float: left;\n}\n\n#content #replication .block .label\n{\n  width: 100px;\n}\n\n#content #replication .block .label span\n{\n  display: block;\n  padding-left: 21px;\n}\n\n#content #replication #current-file\n{\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #replication #current-file .progress\n{\n  color: #c0c0c0;\n  margin-left: 20px;\n}\n\n#content #replication #iterations .label span\n{\n  background-image: url( ../../img/ico/node-design.png );\n}\n\n#content #replication #iterations .iterations li\n{\n  background-position: 100% 50%;\n  display: none;\n  padding-right: 21px;\n}\n\n#content #replication #iterations .iterations.expanded li\n{\n  display: block;\n}\n\n#content #replication #iterations .iterations .latest\n{\n  display: block;\n}\n\n#content #replication #iterations .iterations .replicated\n{\n  color: #80c480;\n}\n\n#content #replication #iterations .iterations ul:hover .replicated,\n#content #replication #iterations .iterations .replicated.latest\n{\n  color: #080;\n}\n\n#content #replication #iterations .iterations .replicated.latest\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #iterations .iterations .failed\n{\n  color: #c48080;\n}\n\n#content #replication #iterations .iterations ul:hover .failed,\n#content #replication #iterations .iterations .failed.latest\n{\n  color: #800;\n}\n\n#content #replication #iterations .iterations .failed.latest\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #iterations .iterations a\n{\n  border-top: 1px solid #f0f0f0;\n  display: none;\n  margin-top: 2px;\n  padding-top: 2px;\n}\n\n#content #replication #iterations .iterations a span\n{\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: none;\n  padding-left: 21px;\n}\n\n#content #replication #iterations .iterations a span.expand\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  display: block;\n}\n\n#content #replication #iterations .iterations.expanded a span.expand\n{\n  display: none;\n}\n\n#content #replication #iterations .iterations.expanded a span.collapse\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n  display: block;\n}\n\n#content #replication #details table\n{\n  margin-left: 20px;\n  border-collapse: collapse;\n}\n\n#content #replication #details table th\n{\n  text-align: left;\n}\n\n#content #replication.slave #details table .slaveOnly\n{\n  display: table-row;\n}\n\n#content #replication #details table thead th\n{\n  color: #c0c0c0;\n}\n\n#content #replication #details table thead th,\n#content #replication #details table tbody td\n{\n  padding-right: 20px;\n}\n\n#content #replication #details table thead td,\n#content #replication #details table thead th,\n#content #replication #details table tbody th,\n#content #replication #details table tbody td div\n{\n  padding-top: 3px;\n  padding-bottom: 3px;\n}\n\n#content #replication #details table tbody td,\n#content #replication #details table tbody th\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #replication #details table thead td\n{\n  width: 100px;\n}\n\n#content #replication #details table thead td span\n{\n  background-image: url( ../../img/ico/clipboard-list.png );\n  background-position: 0 50%;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #replication #details table tbody th\n{\n  padding-right: 10px;\n  text-align: right;\n  white-space: nowrap;\n}\n\n#content #replication #details table tbody .size\n{\n  text-align: right;\n  white-space: nowrap;\n}\n\n#content #replication #details table tbody .generation div\n{\n  text-align: center;\n}\n\n#content #replication #details table tbody .diff div\n{\n  background-color: #fcfcc9;\n  padding-left: 1px;\n  padding-right: 1px;\n}\n\n#content #replication .settings .label span\n{\n  background-image: url( ../../img/ico/hammer-screwdriver.png );\n}\n\n#content #replication .settings ul,\n#content #replication .settings dl dt,\n#content #replication .settings dl dd\n{\n  float: left;\n}\n\n#content #replication .settings ul li\n{\n  border-top: 1px solid #f0f0f0;\n  display: none;\n  padding-top: 3px;\n  padding-top: 3px;\n}\n\n#content #replication .settings ul li:first-child\n{\n  border-top: 0;\n  padding-top: 0;\n}\n\n#content #replication .settings dl dt\n{\n  clear: left;\n  margin-right: 5px;\n  width: 120px;\n}\n\n#content #replication .settings dl .ico\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #replication .settings dl .ico.ico-0\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #replication .settings dl .ico.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication .timer\n{\n  box-shadow: 5px 5px 10px #c0c0c0;\n  -moz-box-shadow: 5px 5px 10px #c0c0c0;\n  -webkit-box-shadow: 5px 5px 10px #c0c0c0;\n  display: none;\n  margin-bottom: 20px;\n  padding: 10px;\n}\n\n#content #replication .timer p,\n#content #replication .timer small\n{\n  padding-left: 21px;\n}\n\n#content #replication .timer p\n{\n  background-image: url( ../../img/ico/clock-select-remain.png );\n  background-position: 0 50%;\n}\n\n#content #replication .timer p .approx\n{\n  color: #c0c0c0;\n  margin-right: 1px;\n}\n\n#content #replication .timer p .tick\n{\n  font-weight: bold;\n}\n\n#content #replication .timer small\n{\n  color: #c0c0c0;\n  display: none;\n}\n\n#content #replication #navigation button\n{\n  display: block;\n  margin-bottom: 10px;\n}\n\n#content #replication #navigation button.optional\n{\n  display: none;\n}\n\n#content #replication #navigation .replicate-now span\n{\n  background-image: url( ../../img/ico/document-convert.png );\n}\n\n#content #replication #navigation .abort-replication span\n{\n  background-image: url( ../../img/ico/hand.png );\n}\n\n#content #replication #navigation .disable-polling span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #navigation .enable-polling span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #navigation .disable-replication span\n{\n  background-image: url( ../../img/ico/cross.png );\n}\n\n#content #replication #navigation .enable-replication span\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #replication #navigation .refresh-status span\n{\n  background-image: url( ../../img/ico/arrow-circle.png );\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/schema-browser.css",
    "content": "#content #schema-browser .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;   \n}\n\n#content #schema-browser.loaded\n{\n  background-image: url( ../../img/div.gif );\n  background-position: 21% 0;\n  background-repeat: repeat-y;\n}\n\n#content #schema-browser #data\n{\n  float: right;\n  width: 78%;\n}\n\n#content #schema-browser #related\n{\n  float: left;\n  width: 20%;\n}\n\n#content #schema-browser #related select\n{\n  width: 100%;\n}\n\n#content #schema-browser #related select optgroup\n{\n  font-style: normal;\n  padding: 5px;\n}\n\n#content #schema-browser #related select option\n{\n  padding-left: 10px;\n}\n\n#content #schema-browser #related #f-df-t\n{\n  border-bottom: 1px solid #f0f0f0;\n  padding-bottom: 15px;\n}\n\n#content #schema-browser #related .ukf-dsf dt\n{\n  display: none;\n}\n\n#content #schema-browser #related dl\n{\n  margin-top: 15px;\n}\n\n#content #schema-browser #related dl dt,\n#content #schema-browser #related dl dd a\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #related dl dt\n{\n  font-weight: bold;\n  margin-top: 5px;\n}\n\n#content #schema-browser #related dl dd a\n{\n  display: block;\n  padding-left: 10px;\n}\n\n#content #schema-browser #related dl dd a:hover\n{\n  background-color: #f8f8f8;\n}\n\n#content #schema-browser #related .field .field,\n#content #schema-browser #related .field .field a,\n#content #schema-browser #related .dynamic-field .dynamic-field,\n#content #schema-browser #related .dynamic-field .dynamic-field a,\n#content #schema-browser #related .type .type,\n#content #schema-browser #related .type .type a,\n#content #schema-browser #related .active,\n#content #schema-browser #related .active a\n{\n  color: #333;\n}\n\n#content #schema-browser #related .copyfield,\n#content #schema-browser #related .copyfield a\n{\n  color: #666;\n}\n\n#content #schema-browser #data\n{\n  display: none;\n}\n\n#content #schema-browser #data #index dt\n{\n  display: none;\n  float: left;\n  margin-right: 5px;\n  width: 150px;\n}\n\n#content #schema-browser #data #field .field-options\n{\n  margin-bottom: 10px;\n}\n\n#content #schema-browser #data #field .field-options .head h2\n{\n  padding-left: 5px;\n}\n\n#content #schema-browser #data #field .partial\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .partial p\n{\n  background-image: url( ../../img/ico/exclamation-button.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .options dt,\n#content #schema-browser #data #field .field-options .options dd\n{\n  float: left;\n}\n\n#content #schema-browser #data #field .field-options .options dt\n{\n  clear: left;\n  display: none;\n  margin-right: 5px;\n  width: 100px;\n}\n\n#content #schema-browser #data #field .field-options .flags\n{\n  margin-top: 10px;\n  margin-bottom: 20px;\n}\n\n#content #schema-browser #data #field .field-options .flags thead td\n{\n  color: #c0c0c0;\n  padding-right: 5px;\n  width: 100px;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody td,\n#content #schema-browser #data #field .field-options .flags th\n{\n  padding: 2px 5px;\n}\n\n#content #schema-browser #data #field .field-options .flags thead td,\n#content #schema-browser #data #field .field-options .flags tbody th\n{\n  padding-left: 0;\n}\n\n#content #schema-browser #data #field .field-options .flags thead th,\n#content #schema-browser #data #field .field-options .flags tbody td\n{\n  border-left: 1px solid #f0f0f0;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody th,\n#content #schema-browser #data #field .field-options .flags tbody td\n{\n  border-top: 1px solid #f0f0f0;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .check\n{\n  background-color: #fafdfa;\n  background-image: url( ../../img/ico/tick.png );\n  background-position: 50% 50%;\n  text-align: center;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .check span\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .field-options .flags tbody .text\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .field-options .analyzer,\n#content #schema-browser #data #field .field-options .analyzer li,\n#content #schema-browser #data #field .field-options .analyzer ul,\n#content #schema-browser #data #field .field-options .analyzer ul li\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p,\n#content #schema-browser #data #field .field-options .analyzer dl\n{\n  float: left;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p\n{\n  margin-right: 5px;\n  text-align: right;\n  width: 125px;\n  white-space: pre;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a\n{\n  cursor: auto;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis\n{\n  cursor: pointer;\n  display: block;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis span\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer p a.analysis:hover span\n{\n  background-image: url( ../../img/ico/question.png );\n  color: #008;\n}\n\n#content #schema-browser #data #field .field-options .analyzer a\n{\n  cursor: auto;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .toggle\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 100% 50%;\n  cursor: pointer;\n  display: block;\n  padding-right: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .open .toggle\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #schema-browser #data #field .field-options .analyzer li\n{\n  border-top: 1px solid #f0f0f0;\n  margin-top: 10px;\n  padding-top: 10px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul\n{\n  clear: left;\n  display: none;\n  margin-left: 55px;\n  padding-top: 5px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer .open ul\n{\n  display: block;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul li\n{\n  border-top: 1px solid #f8f8f8;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul p\n{\n  color: #999;\n  margin-right: 5px;\n  text-align: right;\n  width: 70px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd\n{\n  margin-left: 20px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd\n{\n  background-image: url( ../../img/ico/document-list.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd.ico-0\n{\n  background-image: url( ../../img/ico/slash.png );\n}\n\n#content #schema-browser #data #field .field-options .analyzer ul dd.ico-1\n{\n  background-image: url( ../../img/ico/tick.png );\n}\n\n#content #schema-browser #data #field .head\n{\n  margin-bottom: 5px;\n}\n\n#content #schema-browser #data #field .terminfo-holder\n{\n  border-top: 1px solid #c0c0c0;\n  padding-top: 10px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger\n{\n  float: left;\n  width: 140px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger button span\n{\n  background-image: url( ../../img/ico/information.png );\n}\n\n#content #schema-browser #data #field .terminfo-holder .status\n{\n  border-left: 1px solid #f0f0f0;\n  display: none;\n  float: left;\n  padding-left: 20px;\n  padding-right: 20px;\n}\n\n#content #schema-browser #data #field .terminfo-holder.disabled .trigger button span\n{\n  background-image: url( ../../img/ico/prohibition.png );\n}\n\n#content #schema-browser #data #field .terminfo-holder.disabled .status\n{\n  display: block;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload\n{\n  display: none;\n}\n\n#content #schema-browser #data #field .terminfo-holder.loaded .trigger .autoload\n{\n  background-image: url( ../../img/ico/ui-check-box-uncheck.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  display: block;\n  margin-top: 10px;\n  padding-left: 21px;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload:hover\n{\n  color: #008;\n}\n\n#content #schema-browser #data #field .terminfo-holder .trigger .autoload.on\n{\n  background-image: url( ../../img/ico/ui-check-box.png );\n  color: #333;\n}\n\n#content #schema-browser #data #field .topterms-holder,\n#content #schema-browser #data #field .histogram-holder\n{\n  border-left: 1px solid #f0f0f0;\n  display: none;\n  float: left;\n  padding-left: 20px;\n  padding-right: 20px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head input\n{\n  height: 18px;\n  line-height: 16px;\n  text-align: right;\n  width: 30px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head .max-holder\n{\n  color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .topterms-holder .head .max-holder:hover .max\n{\n  color: #008;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link\n{\n  background-image: url( ../../img/ico/question-white.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  padding-left: 21px;\n  margin-left: 5px;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link:hover\n{\n  background-image: url( ../../img/ico/question.png );\n}\n\n\n#content #schema-browser #data #field .topterms-holder .head #query_link span\n{\n  visibility: hidden;\n}\n\n#content #schema-browser #data #field .topterms-holder .head #query_link:hover span\n{\n  visibility: visible;\n}\n\n#content #schema-browser .topterms-holder li\n{\n  border-top: 1px solid  #999;\n  margin-bottom: 5px;\n}\n\n/* possible overwrite with inline style */\n#content #schema-browser .topterms-holder li p\n{\n  background-color:  #999;\n  color: #fff;\n  float: left;\n}\n\n#content #schema-browser .topterms-holder li p span\n{\n  display: block;\n  padding-right: 2px;\n  text-align: right;\n}\n\n/* possible overwrite with inline style */\n#content #schema-browser .topterms-holder li ul\n{\n  margin-left: 30px;\n}\n\n#content #schema-browser .topterms-holder li li\n{\n  border-top: 0;\n  margin-bottom: 0;\n  white-space: nowrap;\n}\n\n#content #schema-browser .topterms-holder li li.odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #schema-browser .topterms-holder li li a\n{\n  display: block;\n  padding-left: 2px;\n  padding-right: 2px;\n}\n\n#content #schema-browser .topterms-holder li li a:hover\n{\n  background-color: #c0c0c0;\n}\n\n#content #schema-browser #data #field .histogram-holder ul\n{\n  margin-left: 25px;\n}\n\n#content #schema-browser #data #field .histogram-holder li\n{\n  margin-bottom: 2px;\n  position: relative;\n  width: 150px;\n}\n\n#content #schema-browser #data #field .histogram-holder li.odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #schema-browser #data #field .histogram-holder li dl,\n#content #schema-browser #data #field .histogram-holder li dt\n{\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dl\n{\n  background-color: #c0c0c0;\n  min-width: 1px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dt\n{\n  color: #a0a0a0;\n  position: absolute;\n  overflow: hidden;\n  left: -25px;\n  top: 0px;\n}\n\n#content #schema-browser #data #field .histogram-holder li dt span\n{\n  display: block;\n  padding-right: 4px;\n  text-align: right;\n}\n\n#content #schema-browser #data #field .histogram-holder li dd\n{\n  clear: left;\n  float: left;\n  margin-left: 2px;\n  white-space: nowrap;\n}\n\n#content #schema-browser #data #field .histogram-holder li:hover dl\n{\n  background-color: #b0b0b0;\n}\n\n#content #schema-browser #data #field .histogram-holder li:hover dt\n{\n  color: #333;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/css/styles/threads.css",
    "content": "#content #threads .loader\n{\n  background-position: 0 50%;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump table\n{\n  border-collapse: collapse;\n  width: 100%;\n}\n\n#content #threads #thread-dump table .spacer,\n#content #threads #thread-dump tbody .state\n{\n  background-color: #fff;\n}\n\n#content #threads #thread-dump table th,\n#content #threads #thread-dump table td\n{\n  padding: 5px 3px;\n  vertical-align: top;\n}\n\n#content #threads #thread-dump thead th\n{\n  background-color: #c8c8c8;\n  font-weight: bold;\n  text-align: left;\n}\n\n#content #threads #thread-dump thead th.name\n{\n  width: 85%;\n}\n\n#content #threads #thread-dump thead th.time\n{\n  text-align: right;\n  width: 15%;\n}\n\n#content #threads #thread-dump tbody .odd\n{\n  background-color: #f0f0f0;\n}\n\n#content #threads #thread-dump tbody .RUNNABLE a\n{\n  background-image: url( ../../img/ico/tick-circle.png );\n}\n\n#content #threads #thread-dump tbody .WAITING a,\n#content #threads #thread-dump tbody .TIMED_WAITING .a\n{\n  background-image: url( ../../img/ico/hourglass.png );\n}\n\n#content #threads #thread-dump tbody .WAITING.lock a,\n#content #threads #thread-dump tbody .TIMED_WAITING.lock a\n{\n  background-image: url( ../../img/ico/hourglass--exclamation.png );\n}\n\n#content #threads #thread-dump tbody .name a\n{\n  background-position: 0 50%;\n  cursor: auto;\n  display: block;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump tbody .stacktrace .name a\n{\n  cursor: pointer;\n}\n\n#content #threads #thread-dump tbody .stacktrace .name a span\n{    \n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  background-position: 100% 50%;\n  padding-right: 21px;\n}\n\n#content #threads #thread-dump tbody .stacktrace.open .name a span\n{   \n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #threads #thread-dump tbody .name p\n{\n  background-image: url( ../../img/ico/arrow-000-small.png );\n  background-position: 0 50%;\n  color: #c0c0c0;\n  font-size: 11px;\n  margin-left: 21px;\n  padding-left: 21px;\n}\n\n#content #threads #thread-dump tbody .name div\n{\n  border-top: 1px solid #c0c0c0;\n  display: none;\n  margin-left: 21px;\n  margin-top: 5px;\n  padding-top: 5px;\n}\n\n#content #threads #thread-dump tbody .open .name div\n{\n  display: block;\n}\n\n#content #threads #thread-dump tbody .name ul\n{\n  list-style-type: disc;\n  margin-left: 0.7em;\n  padding-left: 0.7em;\n}\n\n#content #threads #thread-dump tbody .time\n{\n  text-align: right;\n}\n\n#content #threads #thread-dump tbody .details\n{\n  display: none;\n}\n\n#content #threads .controls\n{\n  padding-top: 5px;\n  padding-bottom: 5px;\n}\n\n#content #threads .controls a\n{\n  background-image: url( ../../img/ico/chevron-small-expand.png );\n  padding-left: 21px;\n}\n\n#content #threads.expanded .controls a\n{\n  background-image: url( ../../img/ico/chevron-small.png );\n}\n\n#content #threads.expanded .controls .expand,\n#content #threads.collapsed .controls .collapse\n{\n  display: none;\n}"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/img/filetypes/README",
    "content": "http://www.splitbrain.org/projects/file_icons\n\nReleased to the Public Domain\nFree to use. Provided as is. No warranties.\n\nNote: The big majority of icons where created by the creators listed\n      below. Only a few ones where found on the net. They were too\n      widespread to determine the original author and thus were\n      considered public domain.\n      If you are the author of one of those icons just send a short\n      mail to either be included in the list below or have the icon\n      removed from the package.\n\nCreators:\n\n  Andreas Gohr <andi@splitbrain.org>\n  Michael Klier <chi@chimeric.de>\n  Andreas Barton <andreas.barton@web.de>\n  Hubert Chathi <hubert@uhoreg.ca>\n  Johan Koehne <johankohne@gmail.com>\n  Rudi von Staden <rudivs@iafrica.com>\n  Daniel Darvish <ddarvish@hibm.org>\n  Andy Pascall <apascall@engineering.ucsb.edu>\n  Seth <seth.holcomb@gmail.com>\n  David Carella <david.carella@gmail.com>\n  Tom N. Harris <telliamed@fastmail.us>\n  Brandon Carmon Colvin <b.carmon.colvin@gmail.com>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/ZeroClipboard.js",
    "content": "// Simple Set Clipboard System\n// Author: Joseph Huckaby\n\nvar ZeroClipboard = {\n\t\n\tversion: \"1.0.7\",\n\tclients: {}, // registered upload clients on page, indexed by id\n\tmoviePath: 'ZeroClipboard.swf', // URL to movie\n\tnextId: 1, // ID of next movie\n\t\n\t$: function(thingy) {\n\t\t// simple DOM lookup utility function\n\t\tif (typeof(thingy) == 'string') thingy = document.getElementById(thingy);\n\t\tif (!thingy.addClass) {\n\t\t\t// extend element with a few useful methods\n\t\t\tthingy.hide = function() { this.style.display = 'none'; };\n\t\t\tthingy.show = function() { this.style.display = ''; };\n\t\t\tthingy.addClass = function(name) { this.removeClass(name); this.className += ' ' + name; };\n\t\t\tthingy.removeClass = function(name) {\n\t\t\t\tvar classes = this.className.split(/\\s+/);\n\t\t\t\tvar idx = -1;\n\t\t\t\tfor (var k = 0; k < classes.length; k++) {\n\t\t\t\t\tif (classes[k] == name) { idx = k; k = classes.length; }\n\t\t\t\t}\n\t\t\t\tif (idx > -1) {\n\t\t\t\t\tclasses.splice( idx, 1 );\n\t\t\t\t\tthis.className = classes.join(' ');\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tthingy.hasClass = function(name) {\n\t\t\t\treturn !!this.className.match( new RegExp(\"\\\\s*\" + name + \"\\\\s*\") );\n\t\t\t};\n\t\t}\n\t\treturn thingy;\n\t},\n\t\n\tsetMoviePath: function(path) {\n\t\t// set path to ZeroClipboard.swf\n\t\tthis.moviePath = path;\n\t},\n\t\n\tdispatch: function(id, eventName, args) {\n\t\t// receive event from flash movie, send to client\t\t\n\t\tvar client = this.clients[id];\n\t\tif (client) {\n\t\t\tclient.receiveEvent(eventName, args);\n\t\t}\n\t},\n\t\n\tregister: function(id, client) {\n\t\t// register new client to receive events\n\t\tthis.clients[id] = client;\n\t},\n\t\n\tgetDOMObjectPosition: function(obj, stopObj) {\n\t\t// get absolute coordinates for dom element\n\t\tvar info = {\n\t\t\tleft: 0, \n\t\t\ttop: 0, \n\t\t\twidth: obj.width ? obj.width : obj.offsetWidth, \n\t\t\theight: obj.height ? obj.height : obj.offsetHeight\n\t\t};\n\n\t\twhile (obj && (obj != stopObj)) {\n\t\t\tinfo.left += obj.offsetLeft;\n\t\t\tinfo.top += obj.offsetTop;\n\t\t\tobj = obj.offsetParent;\n\t\t}\n\n\t\treturn info;\n\t},\n\t\n\tClient: function(elem) {\n\t\t// constructor for new simple upload client\n\t\tthis.handlers = {};\n\t\t\n\t\t// unique ID\n\t\tthis.id = ZeroClipboard.nextId++;\n\t\tthis.movieId = 'ZeroClipboardMovie_' + this.id;\n\t\t\n\t\t// register client with singleton to receive flash events\n\t\tZeroClipboard.register(this.id, this);\n\t\t\n\t\t// create movie\n\t\tif (elem) this.glue(elem);\n\t}\n};\n\nZeroClipboard.Client.prototype = {\n\t\n\tid: 0, // unique ID for us\n\tready: false, // whether movie is ready to receive events or not\n\tmovie: null, // reference to movie object\n\tclipText: '', // text to copy to clipboard\n\thandCursorEnabled: true, // whether to show hand cursor, or default pointer cursor\n\tcssEffects: true, // enable CSS mouse effects on dom container\n\thandlers: null, // user event handlers\n\t\n\tglue: function(elem, appendElem, stylesToAdd) {\n\t\t// glue to DOM element\n\t\t// elem can be ID or actual DOM element object\n\t\tthis.domElement = ZeroClipboard.$(elem);\n\t\t\n\t\t// float just above object, or zIndex 99 if dom element isn't set\n\t\tvar zIndex = 99;\n\t\tif (this.domElement.style.zIndex) {\n\t\t\tzIndex = parseInt(this.domElement.style.zIndex, 10) + 1;\n\t\t}\n\t\t\n\t\tif (typeof(appendElem) == 'string') {\n\t\t\tappendElem = ZeroClipboard.$(appendElem);\n\t\t}\n\t\telse if (typeof(appendElem) == 'undefined') {\n\t\t\tappendElem = document.getElementsByTagName('body')[0];\n\t\t}\n\t\t\n\t\t// find X/Y position of domElement\n\t\tvar box = ZeroClipboard.getDOMObjectPosition(this.domElement, appendElem);\n\t\t\n\t\t// create floating DIV above element\n\t\tthis.div = document.createElement('div');\n\t\tvar style = this.div.style;\n\t\tstyle.position = 'absolute';\n\t\tstyle.left = '' + box.left + 'px';\n\t\tstyle.top = '' + box.top + 'px';\n\t\tstyle.width = '' + box.width + 'px';\n\t\tstyle.height = '' + box.height + 'px';\n\t\tstyle.zIndex = zIndex;\n\n\t\tstyle.left = '0px';\n\t\tstyle.top = '0px';\n\t\t\n\t\tif (typeof(stylesToAdd) == 'object') {\n\t\t\tfor (addedStyle in stylesToAdd) {\n\t\t\t\tstyle[addedStyle] = stylesToAdd[addedStyle];\n\t\t\t}\n\t\t}\n\t\t\n\t\t// style.backgroundColor = '#f00'; // debug\n\t\t\n\t\tappendElem.appendChild(this.div);\n\t\t\n\t\tthis.div.innerHTML = this.getHTML( box.width, box.height );\n\t},\n\t\n\tgetHTML: function(width, height) {\n\t\t// return HTML for movie\n\t\tvar html = '';\n\t\tvar flashvars = 'id=' + this.id + \n\t\t\t'&width=' + width + \n\t\t\t'&height=' + height;\n\t\t\t\n\t\tif (navigator.userAgent.match(/MSIE/)) {\n\t\t\t// IE gets an OBJECT tag\n\t\t\tvar protocol = location.href.match(/^https/i) ? 'https://' : 'http://';\n\t\t\thtml += '<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"'+protocol+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\"'+width+'\" height=\"'+height+'\" id=\"'+this.movieId+'\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"always\" /><param name=\"allowFullScreen\" value=\"false\" /><param name=\"movie\" value=\"'+ZeroClipboard.moviePath+'\" /><param name=\"loop\" value=\"false\" /><param name=\"menu\" value=\"false\" /><param name=\"quality\" value=\"best\" /><param name=\"bgcolor\" value=\"#ffffff\" /><param name=\"flashvars\" value=\"'+flashvars+'\"/><param name=\"wmode\" value=\"transparent\"/></object>';\n\t\t}\n\t\telse {\n\t\t\t// all other browsers get an EMBED tag\n\t\t\thtml += '<embed id=\"'+this.movieId+'\" src=\"'+ZeroClipboard.moviePath+'\" loop=\"false\" menu=\"false\" quality=\"best\" bgcolor=\"#ffffff\" width=\"'+width+'\" height=\"'+height+'\" name=\"'+this.movieId+'\" align=\"middle\" allowScriptAccess=\"always\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" flashvars=\"'+flashvars+'\" wmode=\"transparent\" />';\n\t\t}\n\t\treturn html;\n\t},\n\t\n\thide: function() {\n\t\t// temporarily hide floater offscreen\n\t\tif (this.div) {\n\t\t\tthis.div.style.left = '-2000px';\n\t\t}\n\t},\n\t\n\tshow: function() {\n\t\t// show ourselves after a call to hide()\n\t\tthis.reposition();\n\t},\n\t\n\tdestroy: function() {\n\t\t// destroy control and floater\n\t\tif (this.domElement && this.div) {\n\t\t\tthis.hide();\n\t\t\tthis.div.innerHTML = '';\n\t\t\t\n\t\t\tvar body = document.getElementsByTagName('body')[0];\n\t\t\ttry { body.removeChild( this.div ); } catch(e) {;}\n\t\t\t\n\t\t\tthis.domElement = null;\n\t\t\tthis.div = null;\n\t\t}\n\t},\n\t\n\treposition: function(elem) {\n\t\t// reposition our floating div, optionally to new container\n\t\t// warning: container CANNOT change size, only position\n\t\tif (elem) {\n\t\t\tthis.domElement = ZeroClipboard.$(elem);\n\t\t\tif (!this.domElement) this.hide();\n\t\t}\n\n\t\tconsole.debug( this.domElement, this.div );\n\t\t\n\t\tif (this.domElement && this.div) {\n\t\t\tvar box = ZeroClipboard.getDOMObjectPosition(this.domElement);\n\t\t\tconsole.debug( box );\n\t\t\tvar style = this.div.style;\n\t\t\tstyle.left = '' + box.left + 'px';\n\t\t\tstyle.top = '' + box.top + 'px';\n\t\t}\n\t},\n\t\n\tsetText: function(newText) {\n\t\t// set text to be copied to clipboard\n\t\tthis.clipText = newText;\n\t\tif (this.ready) this.movie.setText(newText);\n\t},\n\t\n\taddEventListener: function(eventName, func) {\n\t\t// add user event listener for event\n\t\t// event types: load, queueStart, fileStart, fileComplete, queueComplete, progress, error, cancel\n\t\teventName = eventName.toString().toLowerCase().replace(/^on/, '');\n\t\tif (!this.handlers[eventName]) this.handlers[eventName] = [];\n\t\tthis.handlers[eventName].push(func);\n\t},\n\t\n\tsetHandCursor: function(enabled) {\n\t\t// enable hand cursor (true), or default arrow cursor (false)\n\t\tthis.handCursorEnabled = enabled;\n\t\tif (this.ready) this.movie.setHandCursor(enabled);\n\t},\n\t\n\tsetCSSEffects: function(enabled) {\n\t\t// enable or disable CSS effects on DOM container\n\t\tthis.cssEffects = !!enabled;\n\t},\n\t\n\treceiveEvent: function(eventName, args) {\n\t\t// receive event from flash\n\t\teventName = eventName.toString().toLowerCase().replace(/^on/, '');\n\t\t\t\t\n\t\t// special behavior for certain events\n\t\tswitch (eventName) {\n\t\t\tcase 'load':\n\t\t\t\t// movie claims it is ready, but in IE this isn't always the case...\n\t\t\t\t// bug fix: Cannot extend EMBED DOM elements in Firefox, must use traditional function\n\t\t\t\tthis.movie = document.getElementById(this.movieId);\n\t\t\t\tif (!this.movie) {\n\t\t\t\t\tvar self = this;\n\t\t\t\t\tsetTimeout( function() { self.receiveEvent('load', null); }, 1 );\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// firefox on pc needs a \"kick\" in order to set these in certain cases\n\t\t\t\tif (!this.ready && navigator.userAgent.match(/Firefox/) && navigator.userAgent.match(/Windows/)) {\n\t\t\t\t\tvar self = this;\n\t\t\t\t\tsetTimeout( function() { self.receiveEvent('load', null); }, 100 );\n\t\t\t\t\tthis.ready = true;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tthis.ready = true;\n\t\t\t\tthis.movie.setText( this.clipText );\n\t\t\t\tthis.movie.setHandCursor( this.handCursorEnabled );\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseover':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.addClass('hover');\n\t\t\t\t\tif (this.recoverActive) this.domElement.addClass('active');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseout':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.recoverActive = false;\n\t\t\t\t\tif (this.domElement.hasClass('active')) {\n\t\t\t\t\t\tthis.domElement.removeClass('active');\n\t\t\t\t\t\tthis.recoverActive = true;\n\t\t\t\t\t}\n\t\t\t\t\tthis.domElement.removeClass('hover');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mousedown':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.addClass('active');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'mouseup':\n\t\t\t\tif (this.domElement && this.cssEffects) {\n\t\t\t\t\tthis.domElement.removeClass('active');\n\t\t\t\t\tthis.recoverActive = false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t} // switch eventName\n\t\t\n\t\tif (this.handlers[eventName]) {\n\t\t\tfor (var idx = 0, len = this.handlers[eventName].length; idx < len; idx++) {\n\t\t\t\tvar func = this.handlers[eventName][idx];\n\t\t\t\n\t\t\t\tif (typeof(func) == 'function') {\n\t\t\t\t\t// actual function reference\n\t\t\t\t\tfunc(this, args);\n\t\t\t\t}\n\t\t\t\telse if ((typeof(func) == 'object') && (func.length == 2)) {\n\t\t\t\t\t// PHP style object + method, i.e. [myObject, 'myMethod']\n\t\t\t\t\tfunc[0][ func[1] ](this, args);\n\t\t\t\t}\n\t\t\t\telse if (typeof(func) == 'string') {\n\t\t\t\t\t// name of function\n\t\t\t\t\twindow[func](this, args);\n\t\t\t\t}\n\t\t\t} // foreach event handler defined\n\t\t} // user defined handler for event\n\t}\n\t\n};\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/chosen.js",
    "content": "// Chosen, a Select Box Enhancer for jQuery and Protoype\n// by Patrick Filler for Harvest, http://getharvest.com\n// \n// Version 0.9.8\n// Full source at https://github.com/harvesthq/chosen\n// Copyright (c) 2011 Harvest http://getharvest.com\n\n// MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md\n// This file is generated by `cake build`, do not edit it by hand.\n(function() {\n  var SelectParser;\n\n  SelectParser = (function() {\n\n    function SelectParser() {\n      this.options_index = 0;\n      this.parsed = [];\n    }\n\n    SelectParser.prototype.add_node = function(child) {\n      if (child.nodeName === \"OPTGROUP\") {\n        return this.add_group(child);\n      } else {\n        return this.add_option(child);\n      }\n    };\n\n    SelectParser.prototype.add_group = function(group) {\n      var group_position, option, _i, _len, _ref, _results;\n      group_position = this.parsed.length;\n      this.parsed.push({\n        array_index: group_position,\n        group: true,\n        label: group.label,\n        children: 0,\n        disabled: group.disabled\n      });\n      _ref = group.childNodes;\n      _results = [];\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        option = _ref[_i];\n        _results.push(this.add_option(option, group_position, group.disabled));\n      }\n      return _results;\n    };\n\n    SelectParser.prototype.add_option = function(option, group_position, group_disabled) {\n      if (option.nodeName === \"OPTION\") {\n        if (option.text !== \"\") {\n          if (group_position != null) this.parsed[group_position].children += 1;\n          this.parsed.push({\n            array_index: this.parsed.length,\n            options_index: this.options_index,\n            value: option.value,\n            text: option.text,\n            html: option.innerHTML,\n            selected: option.selected,\n            disabled: group_disabled === true ? group_disabled : option.disabled,\n            group_array_index: group_position,\n            classes: option.className,\n            style: option.style.cssText\n          });\n        } else {\n          this.parsed.push({\n            array_index: this.parsed.length,\n            options_index: this.options_index,\n            empty: true\n          });\n        }\n        return this.options_index += 1;\n      }\n    };\n\n    return SelectParser;\n\n  })();\n\n  SelectParser.select_to_array = function(select) {\n    var child, parser, _i, _len, _ref;\n    parser = new SelectParser();\n    _ref = select.childNodes;\n    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n      child = _ref[_i];\n      parser.add_node(child);\n    }\n    return parser.parsed;\n  };\n\n  this.SelectParser = SelectParser;\n\n}).call(this);\n\n/*\nChosen source: generate output using 'cake build'\nCopyright (c) 2011 by Harvest\n*/\n\n(function() {\n  var AbstractChosen, root;\n\n  root = this;\n\n  AbstractChosen = (function() {\n\n    function AbstractChosen(form_field, options) {\n      this.form_field = form_field;\n      this.options = options != null ? options : {};\n      this.set_default_values();\n      this.is_multiple = this.form_field.multiple;\n      this.default_text_default = this.is_multiple ? \"Select Some Options\" : \"Select an Option\";\n      this.setup();\n      this.set_up_html();\n      this.register_observers();\n      this.finish_setup();\n    }\n\n    AbstractChosen.prototype.set_default_values = function() {\n      var _this = this;\n      this.click_test_action = function(evt) {\n        return _this.test_active_click(evt);\n      };\n      this.activate_action = function(evt) {\n        return _this.activate_field(evt);\n      };\n      this.active_field = false;\n      this.mouse_on_container = false;\n      this.results_showing = false;\n      this.result_highlighted = null;\n      this.result_single_selected = null;\n      this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === \"\" ? this.options.allow_single_deselect : false;\n      this.disable_search_threshold = this.options.disable_search_threshold || 0;\n      this.search_contains = this.options.search_contains || false;\n      this.choices = 0;\n      return this.results_none_found = this.options.no_results_text || \"No results match\";\n    };\n\n    AbstractChosen.prototype.mouse_enter = function() {\n      return this.mouse_on_container = true;\n    };\n\n    AbstractChosen.prototype.mouse_leave = function() {\n      return this.mouse_on_container = false;\n    };\n\n    AbstractChosen.prototype.input_focus = function(evt) {\n      var _this = this;\n      if (!this.active_field) {\n        return setTimeout((function() {\n          return _this.container_mousedown();\n        }), 50);\n      }\n    };\n\n    AbstractChosen.prototype.input_blur = function(evt) {\n      var _this = this;\n      if (!this.mouse_on_container) {\n        this.active_field = false;\n        return setTimeout((function() {\n          return _this.blur_test();\n        }), 100);\n      }\n    };\n\n    AbstractChosen.prototype.result_add_option = function(option) {\n      var classes, style;\n      if (!option.disabled) {\n        option.dom_id = this.container_id + \"_o_\" + option.array_index;\n        classes = option.selected && this.is_multiple ? [] : [\"active-result\"];\n        if (option.selected) classes.push(\"result-selected\");\n        if (option.group_array_index != null) classes.push(\"group-option\");\n        if (option.classes !== \"\") classes.push(option.classes);\n        style = option.style.cssText !== \"\" ? \" style=\\\"\" + option.style + \"\\\"\" : \"\";\n        return '<li id=\"' + option.dom_id + '\" class=\"' + classes.join(' ') + '\"' + style + '>' + option.html + '</li>';\n      } else {\n        return \"\";\n      }\n    };\n\n    AbstractChosen.prototype.results_update_field = function() {\n      this.result_clear_highlight();\n      this.result_single_selected = null;\n      return this.results_build();\n    };\n\n    AbstractChosen.prototype.results_toggle = function() {\n      if (this.results_showing) {\n        return this.results_hide();\n      } else {\n        return this.results_show();\n      }\n    };\n\n    AbstractChosen.prototype.results_search = function(evt) {\n      if (this.results_showing) {\n        return this.winnow_results();\n      } else {\n        return this.results_show();\n      }\n    };\n\n    AbstractChosen.prototype.keyup_checker = function(evt) {\n      var stroke, _ref;\n      stroke = (_ref = evt.which) != null ? _ref : evt.keyCode;\n      this.search_field_scale();\n      switch (stroke) {\n        case 8:\n          if (this.is_multiple && this.backstroke_length < 1 && this.choices > 0) {\n            return this.keydown_backstroke();\n          } else if (!this.pending_backstroke) {\n            this.result_clear_highlight();\n            return this.results_search();\n          }\n          break;\n        case 13:\n          evt.preventDefault();\n          if (this.results_showing) return this.result_select(evt);\n          break;\n        case 27:\n          if (this.results_showing) this.results_hide();\n          return true;\n        case 9:\n        case 38:\n        case 40:\n        case 16:\n        case 91:\n        case 17:\n          break;\n        default:\n          return this.results_search();\n      }\n    };\n\n    AbstractChosen.prototype.generate_field_id = function() {\n      var new_id;\n      new_id = this.generate_random_id();\n      this.form_field.id = new_id;\n      return new_id;\n    };\n\n    AbstractChosen.prototype.generate_random_char = function() {\n      var chars, newchar, rand;\n      chars = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZ\";\n      rand = Math.floor(Math.random() * chars.length);\n      return newchar = chars.substring(rand, rand + 1);\n    };\n\n    return AbstractChosen;\n\n  })();\n\n  root.AbstractChosen = AbstractChosen;\n\n}).call(this);\n\n/*\nChosen source: generate output using 'cake build'\nCopyright (c) 2011 by Harvest\n*/\n\n(function() {\n  var $, Chosen, get_side_border_padding, root,\n    __hasProp = Object.prototype.hasOwnProperty,\n    __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor; child.__super__ = parent.prototype; return child; };\n\n  root = this;\n\n  $ = jQuery;\n\n  $.fn.extend({\n    chosen: function(options) {\n      if ($.browser.msie && ($.browser.version === \"6.0\" || $.browser.version === \"7.0\")) {\n        return this;\n      }\n      return $(this).each(function(input_field) {\n        if (!($(this)).hasClass(\"chzn-done\")) return new Chosen(this, options);\n      });\n    }\n  });\n\n  Chosen = (function(_super) {\n\n    __extends(Chosen, _super);\n\n    function Chosen() {\n      Chosen.__super__.constructor.apply(this, arguments);\n    }\n\n    Chosen.prototype.setup = function() {\n      this.form_field_jq = $(this.form_field);\n      return this.is_rtl = this.form_field_jq.hasClass(\"chzn-rtl\");\n    };\n\n    Chosen.prototype.finish_setup = function() {\n      return this.form_field_jq.addClass(\"chzn-done\");\n    };\n\n    Chosen.prototype.set_up_html = function() {\n      var container_div, dd_top, dd_width, sf_width;\n      this.container_id = this.form_field.id.length ? this.form_field.id.replace(/(:|\\.)/g, '_') : this.generate_field_id();\n      this.container_id += \"_chzn\";\n      this.f_width = this.form_field_jq.outerWidth();\n      this.default_text = this.form_field_jq.data('placeholder') ? this.form_field_jq.data('placeholder') : this.default_text_default;\n      container_div = $(\"<div />\", {\n        id: this.container_id,\n        \"class\": \"chzn-container\" + (this.is_rtl ? ' chzn-rtl' : ''),\n        style: 'width: ' + this.f_width + 'px;'\n      });\n      if (this.is_multiple) {\n        container_div.html('<ul class=\"chzn-choices\"><li class=\"search-field\"><input type=\"text\" value=\"' + this.default_text + '\" class=\"default\" autocomplete=\"off\" style=\"width:25px;\" /></li></ul><div class=\"chzn-drop\" style=\"left:-9000px;\"><ul class=\"chzn-results\"></ul></div>');\n      } else {\n        container_div.html('<a href=\"javascript:void(0)\" class=\"chzn-single chzn-default\"><span>' + this.default_text + '</span><div><b></b></div></a><div class=\"chzn-drop\" style=\"left:-9000px;\"><div class=\"chzn-search\"><input type=\"search\" autocomplete=\"off\" /></div><ul class=\"chzn-results\"></ul></div>');\n      }\n      this.form_field_jq.hide().after(container_div);\n      this.container = $('#' + this.container_id);\n      this.container.addClass(\"chzn-container-\" + (this.is_multiple ? \"multi\" : \"single\"));\n      this.dropdown = this.container.find('div.chzn-drop').first();\n      dd_top = this.container.height();\n      dd_width = this.f_width - get_side_border_padding(this.dropdown);\n      this.dropdown.css({\n        \"width\": dd_width + \"px\",\n        \"top\": dd_top + \"px\"\n      });\n      this.search_field = this.container.find('input').first();\n      this.search_results = this.container.find('ul.chzn-results').first();\n      this.search_field_scale();\n      this.search_no_results = this.container.find('li.no-results').first();\n      if (this.is_multiple) {\n        this.search_choices = this.container.find('ul.chzn-choices').first();\n        this.search_container = this.container.find('li.search-field').first();\n      } else {\n        this.search_container = this.container.find('div.chzn-search').first();\n        this.selected_item = this.container.find('.chzn-single').first();\n        sf_width = dd_width - get_side_border_padding(this.search_container) - get_side_border_padding(this.search_field);\n        sf_width = dd_width - get_side_border_padding(this.search_container);\n        this.search_field.css({\n          \"width\": sf_width + \"px\"\n        });\n      }\n      this.results_build();\n      this.set_tab_index();\n      return this.form_field_jq.trigger(\"liszt:ready\", {\n        chosen: this\n      });\n    };\n\n    Chosen.prototype.register_observers = function() {\n      var _this = this;\n      this.container.mousedown(function(evt) {\n        return _this.container_mousedown(evt);\n      });\n      this.container.mouseup(function(evt) {\n        return _this.container_mouseup(evt);\n      });\n      this.container.mouseenter(function(evt) {\n        return _this.mouse_enter(evt);\n      });\n      this.container.mouseleave(function(evt) {\n        return _this.mouse_leave(evt);\n      });\n      this.search_results.mouseup(function(evt) {\n        return _this.search_results_mouseup(evt);\n      });\n      this.search_results.mouseover(function(evt) {\n        return _this.search_results_mouseover(evt);\n      });\n      this.search_results.mouseout(function(evt) {\n        return _this.search_results_mouseout(evt);\n      });\n      this.form_field_jq.bind(\"liszt:updated\", function(evt) {\n        return _this.results_update_field(evt);\n      });\n      this.search_field.blur(function(evt) {\n        return _this.input_blur(evt);\n      });\n      this.search_field.keyup(function(evt) {\n        return _this.keyup_checker(evt);\n      });\n      this.search_field.keydown(function(evt) {\n        return _this.keydown_checker(evt);\n      });\n      if (this.is_multiple) {\n        this.search_choices.click(function(evt) {\n          return _this.choices_click(evt);\n        });\n        return this.search_field.focus(function(evt) {\n          return _this.input_focus(evt);\n        });\n      } else {\n        return this.container.click(function(evt) {\n          return evt.preventDefault();\n        });\n      }\n    };\n\n    Chosen.prototype.search_field_disabled = function() {\n      this.is_disabled = this.form_field_jq[0].disabled;\n      if (this.is_disabled) {\n        this.container.addClass('chzn-disabled');\n        this.search_field[0].disabled = true;\n        if (!this.is_multiple) {\n          this.selected_item.unbind(\"focus\", this.activate_action);\n        }\n        return this.close_field();\n      } else {\n        this.container.removeClass('chzn-disabled');\n        this.search_field[0].disabled = false;\n        if (!this.is_multiple) {\n          return this.selected_item.bind(\"focus\", this.activate_action);\n        }\n      }\n    };\n\n    Chosen.prototype.container_mousedown = function(evt) {\n      var target_closelink;\n      if (!this.is_disabled) {\n        target_closelink = evt != null ? ($(evt.target)).hasClass(\"search-choice-close\") : false;\n        if (evt && evt.type === \"mousedown\" && !this.results_showing) {\n          evt.stopPropagation();\n        }\n        if (!this.pending_destroy_click && !target_closelink) {\n          if (!this.active_field) {\n            if (this.is_multiple) this.search_field.val(\"\");\n            $(document).click(this.click_test_action);\n            this.results_show();\n          } else if (!this.is_multiple && evt && (($(evt.target)[0] === this.selected_item[0]) || $(evt.target).parents(\"a.chzn-single\").length)) {\n            evt.preventDefault();\n            this.results_toggle();\n          }\n          return this.activate_field();\n        } else {\n          return this.pending_destroy_click = false;\n        }\n      }\n    };\n\n    Chosen.prototype.container_mouseup = function(evt) {\n      if (evt.target.nodeName === \"ABBR\") return this.results_reset(evt);\n    };\n\n    Chosen.prototype.blur_test = function(evt) {\n      if (!this.active_field && this.container.hasClass(\"chzn-container-active\")) {\n        return this.close_field();\n      }\n    };\n\n    Chosen.prototype.close_field = function() {\n      $(document).unbind(\"click\", this.click_test_action);\n      if (!this.is_multiple) {\n        this.selected_item.attr(\"tabindex\", this.search_field.attr(\"tabindex\"));\n        this.search_field.attr(\"tabindex\", -1);\n      }\n      this.active_field = false;\n      this.results_hide();\n      this.container.removeClass(\"chzn-container-active\");\n      this.winnow_results_clear();\n      this.clear_backstroke();\n      this.show_search_field_default();\n      return this.search_field_scale();\n    };\n\n    Chosen.prototype.activate_field = function() {\n      if (!this.is_multiple && !this.active_field) {\n        this.search_field.attr(\"tabindex\", this.selected_item.attr(\"tabindex\"));\n        this.selected_item.attr(\"tabindex\", -1);\n      }\n      this.container.addClass(\"chzn-container-active\");\n      this.active_field = true;\n      this.search_field.val(this.search_field.val());\n      return this.search_field.focus();\n    };\n\n    Chosen.prototype.test_active_click = function(evt) {\n      if ($(evt.target).parents('#' + this.container_id).length) {\n        return this.active_field = true;\n      } else {\n        return this.close_field();\n      }\n    };\n\n    Chosen.prototype.results_build = function() {\n      var content, data, _i, _len, _ref;\n      this.parsing = true;\n      this.results_data = root.SelectParser.select_to_array(this.form_field);\n      if (this.is_multiple && this.choices > 0) {\n        this.search_choices.find(\"li.search-choice\").remove();\n        this.choices = 0;\n      } else if (!this.is_multiple) {\n        this.selected_item.find(\"span\").text(this.default_text);\n        if (this.form_field.options.length <= this.disable_search_threshold) {\n          this.container.addClass(\"chzn-container-single-nosearch\");\n        } else {\n          this.container.removeClass(\"chzn-container-single-nosearch\");\n        }\n      }\n      content = '';\n      _ref = this.results_data;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        data = _ref[_i];\n        if (data.group) {\n          content += this.result_add_group(data);\n        } else if (!data.empty) {\n          content += this.result_add_option(data);\n          if (data.selected && this.is_multiple) {\n            this.choice_build(data);\n          } else if (data.selected && !this.is_multiple) {\n            this.selected_item.removeClass(\"chzn-default\").find(\"span\").text(data.text);\n            if (this.allow_single_deselect) this.single_deselect_control_build();\n          }\n        }\n      }\n      this.search_field_disabled();\n      this.show_search_field_default();\n      this.search_field_scale();\n      this.search_results.html(content);\n      return this.parsing = false;\n    };\n\n    Chosen.prototype.result_add_group = function(group) {\n      if (!group.disabled) {\n        group.dom_id = this.container_id + \"_g_\" + group.array_index;\n        return '<li id=\"' + group.dom_id + '\" class=\"group-result\">' + $(\"<div />\").text(group.label).html() + '</li>';\n      } else {\n        return \"\";\n      }\n    };\n\n    Chosen.prototype.result_do_highlight = function(el) {\n      var high_bottom, high_top, maxHeight, visible_bottom, visible_top;\n      if (el.length) {\n        this.result_clear_highlight();\n        this.result_highlight = el;\n        this.result_highlight.addClass(\"highlighted\");\n        maxHeight = parseInt(this.search_results.css(\"maxHeight\"), 10);\n        visible_top = this.search_results.scrollTop();\n        visible_bottom = maxHeight + visible_top;\n        high_top = this.result_highlight.position().top + this.search_results.scrollTop();\n        high_bottom = high_top + this.result_highlight.outerHeight();\n        if (high_bottom >= visible_bottom) {\n          return this.search_results.scrollTop((high_bottom - maxHeight) > 0 ? high_bottom - maxHeight : 0);\n        } else if (high_top < visible_top) {\n          return this.search_results.scrollTop(high_top);\n        }\n      }\n    };\n\n    Chosen.prototype.result_clear_highlight = function() {\n      if (this.result_highlight) this.result_highlight.removeClass(\"highlighted\");\n      return this.result_highlight = null;\n    };\n\n    Chosen.prototype.results_show = function() {\n      var dd_top;\n      if (!this.is_multiple) {\n        this.selected_item.addClass(\"chzn-single-with-drop\");\n        if (this.result_single_selected) {\n          this.result_do_highlight(this.result_single_selected);\n        }\n      }\n      dd_top = this.is_multiple ? this.container.height() : this.container.height() - 1;\n      this.dropdown.css({\n        \"top\": dd_top + \"px\",\n        \"left\": 0\n      });\n      this.results_showing = true;\n      this.search_field.focus();\n      this.search_field.val(this.search_field.val());\n      return this.winnow_results();\n    };\n\n    Chosen.prototype.results_hide = function() {\n      if (!this.is_multiple) {\n        this.selected_item.removeClass(\"chzn-single-with-drop\");\n      }\n      this.result_clear_highlight();\n      this.dropdown.css({\n        \"left\": \"-9000px\"\n      });\n      return this.results_showing = false;\n    };\n\n    Chosen.prototype.set_tab_index = function(el) {\n      var ti;\n      if (this.form_field_jq.attr(\"tabindex\")) {\n        ti = this.form_field_jq.attr(\"tabindex\");\n        this.form_field_jq.attr(\"tabindex\", -1);\n        if (this.is_multiple) {\n          return this.search_field.attr(\"tabindex\", ti);\n        } else {\n          this.selected_item.attr(\"tabindex\", ti);\n          return this.search_field.attr(\"tabindex\", -1);\n        }\n      }\n    };\n\n    Chosen.prototype.show_search_field_default = function() {\n      if (this.is_multiple && this.choices < 1 && !this.active_field) {\n        this.search_field.val(this.default_text);\n        return this.search_field.addClass(\"default\");\n      } else {\n        this.search_field.val(\"\");\n        return this.search_field.removeClass(\"default\");\n      }\n    };\n\n    Chosen.prototype.search_results_mouseup = function(evt) {\n      var target;\n      target = $(evt.target).hasClass(\"active-result\") ? $(evt.target) : $(evt.target).parents(\".active-result\").first();\n      if (target.length) {\n        this.result_highlight = target;\n        return this.result_select(evt);\n      }\n    };\n\n    Chosen.prototype.search_results_mouseover = function(evt) {\n      var target;\n      target = $(evt.target).hasClass(\"active-result\") ? $(evt.target) : $(evt.target).parents(\".active-result\").first();\n      if (target) return this.result_do_highlight(target);\n    };\n\n    Chosen.prototype.search_results_mouseout = function(evt) {\n      if ($(evt.target).hasClass(\"active-result\" || $(evt.target).parents('.active-result').first())) {\n        return this.result_clear_highlight();\n      }\n    };\n\n    Chosen.prototype.choices_click = function(evt) {\n      evt.preventDefault();\n      if (this.active_field && !($(evt.target).hasClass(\"search-choice\" || $(evt.target).parents('.search-choice').first)) && !this.results_showing) {\n        return this.results_show();\n      }\n    };\n\n    Chosen.prototype.choice_build = function(item) {\n      var choice_id, link,\n        _this = this;\n      choice_id = this.container_id + \"_c_\" + item.array_index;\n      this.choices += 1;\n      this.search_container.before('<li class=\"search-choice\" id=\"' + choice_id + '\"><span>' + item.html + '</span><a href=\"javascript:void(0)\" class=\"search-choice-close\" rel=\"' + item.array_index + '\"></a></li>');\n      link = $('#' + choice_id).find(\"a\").first();\n      return link.click(function(evt) {\n        return _this.choice_destroy_link_click(evt);\n      });\n    };\n\n    Chosen.prototype.choice_destroy_link_click = function(evt) {\n      evt.preventDefault();\n      if (!this.is_disabled) {\n        this.pending_destroy_click = true;\n        return this.choice_destroy($(evt.target));\n      } else {\n        return evt.stopPropagation;\n      }\n    };\n\n    Chosen.prototype.choice_destroy = function(link) {\n      this.choices -= 1;\n      this.show_search_field_default();\n      if (this.is_multiple && this.choices > 0 && this.search_field.val().length < 1) {\n        this.results_hide();\n      }\n      this.result_deselect(link.attr(\"rel\"));\n      return link.parents('li').first().remove();\n    };\n\n    Chosen.prototype.results_reset = function(evt) {\n      this.form_field.options[0].selected = true;\n      this.selected_item.find(\"span\").text(this.default_text);\n      if (!this.is_multiple) this.selected_item.addClass(\"chzn-default\");\n      this.show_search_field_default();\n      $(evt.target).remove();\n      this.form_field_jq.trigger(\"change\");\n      if (this.active_field) return this.results_hide();\n    };\n\n    Chosen.prototype.result_select = function(evt) {\n      var high, high_id, item, position;\n      if (this.result_highlight) {\n        high = this.result_highlight;\n        high_id = high.attr(\"id\");\n        this.result_clear_highlight();\n        if (this.is_multiple) {\n          this.result_deactivate(high);\n        } else {\n          this.search_results.find(\".result-selected\").removeClass(\"result-selected\");\n          this.result_single_selected = high;\n          this.selected_item.removeClass(\"chzn-default\");\n        }\n        high.addClass(\"result-selected\");\n        position = high_id.substr(high_id.lastIndexOf(\"_\") + 1);\n        item = this.results_data[position];\n        item.selected = true;\n        this.form_field.options[item.options_index].selected = true;\n        if (this.is_multiple) {\n          this.choice_build(item);\n        } else {\n          this.selected_item.find(\"span\").first().text(item.text);\n          if (this.allow_single_deselect) this.single_deselect_control_build();\n        }\n        if (!(evt.metaKey && this.is_multiple)) this.results_hide();\n        this.search_field.val(\"\");\n        this.form_field_jq.trigger(\"change\");\n        return this.search_field_scale();\n      }\n    };\n\n    Chosen.prototype.result_activate = function(el) {\n      return el.addClass(\"active-result\");\n    };\n\n    Chosen.prototype.result_deactivate = function(el) {\n      return el.removeClass(\"active-result\");\n    };\n\n    Chosen.prototype.result_deselect = function(pos) {\n      var result, result_data;\n      result_data = this.results_data[pos];\n      result_data.selected = false;\n      this.form_field.options[result_data.options_index].selected = false;\n      result = $(\"#\" + this.container_id + \"_o_\" + pos);\n      result.removeClass(\"result-selected\").addClass(\"active-result\").show();\n      this.result_clear_highlight();\n      this.winnow_results();\n      this.form_field_jq.trigger(\"change\");\n      return this.search_field_scale();\n    };\n\n    Chosen.prototype.single_deselect_control_build = function() {\n      if (this.allow_single_deselect && this.selected_item.find(\"abbr\").length < 1) {\n        return this.selected_item.find(\"span\").first().after(\"<abbr class=\\\"search-choice-close\\\"></abbr>\");\n      }\n    };\n\n    Chosen.prototype.winnow_results = function() {\n      var found, option, part, parts, regex, regexAnchor, result, result_id, results, searchText, startpos, text, zregex, _i, _j, _len, _len2, _ref;\n      this.no_results_clear();\n      results = 0;\n      searchText = this.search_field.val() === this.default_text ? \"\" : $('<div/>').text($.trim(this.search_field.val())).html();\n      regexAnchor = this.search_contains ? \"\" : \"^\";\n      regex = new RegExp(regexAnchor + searchText.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, \"\\\\$&\"), 'i');\n      zregex = new RegExp(searchText.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, \"\\\\$&\"), 'i');\n      _ref = this.results_data;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        option = _ref[_i];\n        if (!option.disabled && !option.empty) {\n          if (option.group) {\n            $('#' + option.dom_id).css('display', 'none');\n          } else if (!(this.is_multiple && option.selected)) {\n            found = false;\n            result_id = option.dom_id;\n            result = $(\"#\" + result_id);\n            if (regex.test(option.html)) {\n              found = true;\n              results += 1;\n            } else if (option.html.indexOf(\" \") >= 0 || option.html.indexOf(\"[\") === 0) {\n              parts = option.html.replace(/\\[|\\]/g, \"\").split(\" \");\n              if (parts.length) {\n                for (_j = 0, _len2 = parts.length; _j < _len2; _j++) {\n                  part = parts[_j];\n                  if (regex.test(part)) {\n                    found = true;\n                    results += 1;\n                  }\n                }\n              }\n            }\n            if (found) {\n              if (searchText.length) {\n                startpos = option.html.search(zregex);\n                text = option.html.substr(0, startpos + searchText.length) + '</em>' + option.html.substr(startpos + searchText.length);\n                text = text.substr(0, startpos) + '<em>' + text.substr(startpos);\n              } else {\n                text = option.html;\n              }\n              result.html(text);\n              this.result_activate(result);\n              if (option.group_array_index != null) {\n                $(\"#\" + this.results_data[option.group_array_index].dom_id).css('display', 'list-item');\n              }\n            } else {\n              if (this.result_highlight && result_id === this.result_highlight.attr('id')) {\n                this.result_clear_highlight();\n              }\n              this.result_deactivate(result);\n            }\n          }\n        }\n      }\n      if (results < 1 && searchText.length) {\n        return this.no_results(searchText);\n      } else {\n        return this.winnow_results_set_highlight();\n      }\n    };\n\n    Chosen.prototype.winnow_results_clear = function() {\n      var li, lis, _i, _len, _results;\n      this.search_field.val(\"\");\n      lis = this.search_results.find(\"li\");\n      _results = [];\n      for (_i = 0, _len = lis.length; _i < _len; _i++) {\n        li = lis[_i];\n        li = $(li);\n        if (li.hasClass(\"group-result\")) {\n          _results.push(li.css('display', 'auto'));\n        } else if (!this.is_multiple || !li.hasClass(\"result-selected\")) {\n          _results.push(this.result_activate(li));\n        } else {\n          _results.push(void 0);\n        }\n      }\n      return _results;\n    };\n\n    Chosen.prototype.winnow_results_set_highlight = function() {\n      var do_high, selected_results;\n      if (!this.result_highlight) {\n        selected_results = !this.is_multiple ? this.search_results.find(\".result-selected.active-result\") : [];\n        do_high = selected_results.length ? selected_results.first() : this.search_results.find(\".active-result\").first();\n        if (do_high != null) return this.result_do_highlight(do_high);\n      }\n    };\n\n    Chosen.prototype.no_results = function(terms) {\n      var no_results_html;\n      no_results_html = $('<li class=\"no-results\">' + this.results_none_found + ' \"<span></span>\"</li>');\n      no_results_html.find(\"span\").first().html(terms);\n      return this.search_results.append(no_results_html);\n    };\n\n    Chosen.prototype.no_results_clear = function() {\n      return this.search_results.find(\".no-results\").remove();\n    };\n\n    Chosen.prototype.keydown_arrow = function() {\n      var first_active, next_sib;\n      if (!this.result_highlight) {\n        first_active = this.search_results.find(\"li.active-result\").first();\n        if (first_active) this.result_do_highlight($(first_active));\n      } else if (this.results_showing) {\n        next_sib = this.result_highlight.nextAll(\"li.active-result\").first();\n        if (next_sib) this.result_do_highlight(next_sib);\n      }\n      if (!this.results_showing) return this.results_show();\n    };\n\n    Chosen.prototype.keyup_arrow = function() {\n      var prev_sibs;\n      if (!this.results_showing && !this.is_multiple) {\n        return this.results_show();\n      } else if (this.result_highlight) {\n        prev_sibs = this.result_highlight.prevAll(\"li.active-result\");\n        if (prev_sibs.length) {\n          return this.result_do_highlight(prev_sibs.first());\n        } else {\n          if (this.choices > 0) this.results_hide();\n          return this.result_clear_highlight();\n        }\n      }\n    };\n\n    Chosen.prototype.keydown_backstroke = function() {\n      if (this.pending_backstroke) {\n        this.choice_destroy(this.pending_backstroke.find(\"a\").first());\n        return this.clear_backstroke();\n      } else {\n        this.pending_backstroke = this.search_container.siblings(\"li.search-choice\").last();\n        return this.pending_backstroke.addClass(\"search-choice-focus\");\n      }\n    };\n\n    Chosen.prototype.clear_backstroke = function() {\n      if (this.pending_backstroke) {\n        this.pending_backstroke.removeClass(\"search-choice-focus\");\n      }\n      return this.pending_backstroke = null;\n    };\n\n    Chosen.prototype.keydown_checker = function(evt) {\n      var stroke, _ref;\n      stroke = (_ref = evt.which) != null ? _ref : evt.keyCode;\n      this.search_field_scale();\n      if (stroke !== 8 && this.pending_backstroke) this.clear_backstroke();\n      switch (stroke) {\n        case 8:\n          this.backstroke_length = this.search_field.val().length;\n          break;\n        case 9:\n          if (this.results_showing && !this.is_multiple) this.result_select(evt);\n          this.mouse_on_container = false;\n          break;\n        case 13:\n          evt.preventDefault();\n          break;\n        case 38:\n          evt.preventDefault();\n          this.keyup_arrow();\n          break;\n        case 40:\n          this.keydown_arrow();\n          break;\n      }\n    };\n\n    Chosen.prototype.search_field_scale = function() {\n      var dd_top, div, h, style, style_block, styles, w, _i, _len;\n      if (this.is_multiple) {\n        h = 0;\n        w = 0;\n        style_block = \"position:absolute; left: -1000px; top: -1000px; display:none;\";\n        styles = ['font-size', 'font-style', 'font-weight', 'font-family', 'line-height', 'text-transform', 'letter-spacing'];\n        for (_i = 0, _len = styles.length; _i < _len; _i++) {\n          style = styles[_i];\n          style_block += style + \":\" + this.search_field.css(style) + \";\";\n        }\n        div = $('<div />', {\n          'style': style_block\n        });\n        div.text(this.search_field.val());\n        $('body').append(div);\n        w = div.width() + 25;\n        div.remove();\n        if (w > this.f_width - 10) w = this.f_width - 10;\n        this.search_field.css({\n          'width': w + 'px'\n        });\n        dd_top = this.container.height();\n        return this.dropdown.css({\n          \"top\": dd_top + \"px\"\n        });\n      }\n    };\n\n    Chosen.prototype.generate_random_id = function() {\n      var string;\n      string = \"sel\" + this.generate_random_char() + this.generate_random_char() + this.generate_random_char();\n      while ($(\"#\" + string).length > 0) {\n        string += this.generate_random_char();\n      }\n      return string;\n    };\n\n    return Chosen;\n\n  })(AbstractChosen);\n\n  get_side_border_padding = function(elmt) {\n    var side_border_padding;\n    return side_border_padding = elmt.outerWidth() - elmt.width();\n  };\n\n  root.get_side_border_padding = get_side_border_padding;\n\n}).call(this);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/console.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nwindow.console = window.console || {};\n\nvar names = [\"log\", \"debug\", \"info\", \"warn\", \"error\",\n    \"assert\", \"dir\", \"dirxml\", \"group\", \"groupEnd\", \"time\",\n    \"timeEnd\", \"count\", \"trace\", \"profile\", \"profileEnd\"];\n\nvar i = 0;\nvar l = names.length;\nfor( i = 0; i < l; i++ )\n{\n  window.console[names[i]] = window.console[names[i]] || function() {};\n}\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/d3.js",
    "content": "(function(){if (!Date.now) Date.now = function() {\n  return +new Date;\n};\ntry {\n  document.createElement(\"div\").style.setProperty(\"opacity\", 0, \"\");\n} catch (error) {\n  var d3_style_prototype = CSSStyleDeclaration.prototype,\n      d3_style_setProperty = d3_style_prototype.setProperty;\n  d3_style_prototype.setProperty = function(name, value, priority) {\n    d3_style_setProperty.call(this, name, value + \"\", priority);\n  };\n}\nd3 = {version: \"2.8.1\"}; // semver\nfunction d3_class(ctor, properties) {\n  try {\n    for (var key in properties) {\n      Object.defineProperty(ctor.prototype, key, {\n        value: properties[key],\n        enumerable: false\n      });\n    }\n  } catch (e) {\n    ctor.prototype = properties;\n  }\n}\nvar d3_array = d3_arraySlice; // conversion for NodeLists\n\nfunction d3_arrayCopy(pseudoarray) {\n  var i = -1, n = pseudoarray.length, array = [];\n  while (++i < n) array.push(pseudoarray[i]);\n  return array;\n}\n\nfunction d3_arraySlice(pseudoarray) {\n  return Array.prototype.slice.call(pseudoarray);\n}\n\ntry {\n  d3_array(document.documentElement.childNodes)[0].nodeType;\n} catch(e) {\n  d3_array = d3_arrayCopy;\n}\n\nvar d3_arraySubclass = [].__proto__?\n\n// Until ECMAScript supports array subclassing, prototype injection works well.\nfunction(array, prototype) {\n  array.__proto__ = prototype;\n}:\n\n// And if your browser doesn't support __proto__, we'll use direct extension.\nfunction(array, prototype) {\n  for (var property in prototype) array[property] = prototype[property];\n};\nd3.map = function(object) {\n  var map = new d3_Map;\n  for (var key in object) map.set(key, object[key]);\n  return map;\n};\n\nfunction d3_Map() {}\n\nd3_class(d3_Map, {\n  has: function(key) {\n    return d3_map_prefix + key in this;\n  },\n  get: function(key) {\n    return this[d3_map_prefix + key];\n  },\n  set: function(key, value) {\n    return this[d3_map_prefix + key] = value;\n  },\n  remove: function(key) {\n    key = d3_map_prefix + key;\n    return key in this && delete this[key];\n  },\n  keys: function() {\n    var keys = [];\n    this.forEach(function(key) { keys.push(key); });\n    return keys;\n  },\n  values: function() {\n    var values = [];\n    this.forEach(function(key, value) { values.push(value); });\n    return values;\n  },\n  entries: function() {\n    var entries = [];\n    this.forEach(function(key, value) { entries.push({key: key, value: value}); });\n    return entries;\n  },\n  forEach: function(f) {\n    for (var key in this) {\n      if (key.charCodeAt(0) === d3_map_prefixCode) {\n        f.call(this, key.substring(1), this[key]);\n      }\n    }\n  }\n});\n\nvar d3_map_prefix = \"\\0\", // prevent collision with built-ins\n    d3_map_prefixCode = d3_map_prefix.charCodeAt(0);\nfunction d3_this() {\n  return this;\n}\nd3.functor = function(v) {\n  return typeof v === \"function\" ? v : function() { return v; };\n};\n// Copies a variable number of methods from source to target.\nd3.rebind = function(target, source) {\n  var i = 1, n = arguments.length, method;\n  while (++i < n) target[method = arguments[i]] = d3_rebind(target, source, source[method]);\n  return target;\n};\n\n// Method is assumed to be a standard D3 getter-setter:\n// If passed with no arguments, gets the value.\n// If passed with arguments, sets the value and returns the target.\nfunction d3_rebind(target, source, method) {\n  return function() {\n    var value = method.apply(source, arguments);\n    return arguments.length ? target : value;\n  };\n}\nd3.ascending = function(a, b) {\n  return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;\n};\nd3.descending = function(a, b) {\n  return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;\n};\nd3.mean = function(array, f) {\n  var n = array.length,\n      a,\n      m = 0,\n      i = -1,\n      j = 0;\n  if (arguments.length === 1) {\n    while (++i < n) if (d3_number(a = array[i])) m += (a - m) / ++j;\n  } else {\n    while (++i < n) if (d3_number(a = f.call(array, array[i], i))) m += (a - m) / ++j;\n  }\n  return j ? m : undefined;\n};\nd3.median = function(array, f) {\n  if (arguments.length > 1) array = array.map(f);\n  array = array.filter(d3_number);\n  return array.length ? d3.quantile(array.sort(d3.ascending), .5) : undefined;\n};\nd3.min = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = array[i]) != null && a > b) a = b;\n  } else {\n    while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null && a > b) a = b;\n  }\n  return a;\n};\nd3.max = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = array[i]) != null && b > a) a = b;\n  } else {\n    while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null && b > a) a = b;\n  }\n  return a;\n};\nd3.extent = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b,\n      c;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = c = array[i]) == null || a != a)) a = c = undefined;\n    while (++i < n) if ((b = array[i]) != null) {\n      if (a > b) a = b;\n      if (c < b) c = b;\n    }\n  } else {\n    while (++i < n && ((a = c = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null) {\n      if (a > b) a = b;\n      if (c < b) c = b;\n    }\n  }\n  return [a, c];\n};\nd3.random = {\n  normal: function(mean, deviation) {\n    if (arguments.length < 2) deviation = 1;\n    if (arguments.length < 1) mean = 0;\n    return function() {\n      var x, y, r;\n      do {\n        x = Math.random() * 2 - 1;\n        y = Math.random() * 2 - 1;\n        r = x * x + y * y;\n      } while (!r || r > 1);\n      return mean + deviation * x * Math.sqrt(-2 * Math.log(r) / r);\n    };\n  }\n};\nfunction d3_number(x) {\n  return x != null && !isNaN(x);\n}\nd3.sum = function(array, f) {\n  var s = 0,\n      n = array.length,\n      a,\n      i = -1;\n\n  if (arguments.length === 1) {\n    while (++i < n) if (!isNaN(a = +array[i])) s += a;\n  } else {\n    while (++i < n) if (!isNaN(a = +f.call(array, array[i], i))) s += a;\n  }\n\n  return s;\n};\n// R-7 per <http://en.wikipedia.org/wiki/Quantile>\nd3.quantile = function(values, p) {\n  var H = (values.length - 1) * p + 1,\n      h = Math.floor(H),\n      v = values[h - 1],\n      e = H - h;\n  return e ? v + e * (values[h] - v) : v;\n};\nd3.transpose = function(matrix) {\n  return d3.zip.apply(d3, matrix);\n};\nd3.zip = function() {\n  if (!(n = arguments.length)) return [];\n  for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m;) {\n    for (var j = -1, n, zip = zips[i] = new Array(n); ++j < n;) {\n      zip[j] = arguments[j][i];\n    }\n  }\n  return zips;\n};\n\nfunction d3_zipLength(d) {\n  return d.length;\n}\nd3.bisector = function(f) {\n  return {\n    left: function(a, x, lo, hi) {\n      if (arguments.length < 3) lo = 0;\n      if (arguments.length < 4) hi = a.length;\n      while (lo < hi) {\n        var mid = lo + hi >> 1;\n        if (f.call(a, a[mid], mid) < x) lo = mid + 1;\n        else hi = mid;\n      }\n      return lo;\n    },\n    right: function(a, x, lo, hi) {\n      if (arguments.length < 3) lo = 0;\n      if (arguments.length < 4) hi = a.length;\n      while (lo < hi) {\n        var mid = lo + hi >> 1;\n        if (x < f.call(a, a[mid], mid)) hi = mid;\n        else lo = mid + 1;\n      }\n      return lo;\n    }\n  };\n};\n\nvar d3_bisector = d3.bisector(function(d) { return d; });\nd3.bisectLeft = d3_bisector.left;\nd3.bisect = d3.bisectRight = d3_bisector.right;\nd3.first = function(array, f) {\n  var i = 0,\n      n = array.length,\n      a = array[0],\n      b;\n  if (arguments.length === 1) f = d3.ascending;\n  while (++i < n) {\n    if (f.call(array, a, b = array[i]) > 0) {\n      a = b;\n    }\n  }\n  return a;\n};\nd3.last = function(array, f) {\n  var i = 0,\n      n = array.length,\n      a = array[0],\n      b;\n  if (arguments.length === 1) f = d3.ascending;\n  while (++i < n) {\n    if (f.call(array, a, b = array[i]) <= 0) {\n      a = b;\n    }\n  }\n  return a;\n};\nd3.nest = function() {\n  var nest = {},\n      keys = [],\n      sortKeys = [],\n      sortValues,\n      rollup;\n\n  function map(array, depth) {\n    if (depth >= keys.length) return rollup\n        ? rollup.call(nest, array) : (sortValues\n        ? array.sort(sortValues)\n        : array);\n\n    var i = -1,\n        n = array.length,\n        key = keys[depth++],\n        keyValue,\n        object,\n        valuesByKey = new d3_Map,\n        values,\n        o = {};\n\n    while (++i < n) {\n      if (values = valuesByKey.get(keyValue = key(object = array[i]))) {\n        values.push(object);\n      } else {\n        valuesByKey.set(keyValue, [object]);\n      }\n    }\n\n    valuesByKey.forEach(function(keyValue) {\n      o[keyValue] = map(valuesByKey.get(keyValue), depth);\n    });\n\n    return o;\n  }\n\n  function entries(map, depth) {\n    if (depth >= keys.length) return map;\n\n    var a = [],\n        sortKey = sortKeys[depth++],\n        key;\n\n    for (key in map) {\n      a.push({key: key, values: entries(map[key], depth)});\n    }\n\n    if (sortKey) a.sort(function(a, b) {\n      return sortKey(a.key, b.key);\n    });\n\n    return a;\n  }\n\n  nest.map = function(array) {\n    return map(array, 0);\n  };\n\n  nest.entries = function(array) {\n    return entries(map(array, 0), 0);\n  };\n\n  nest.key = function(d) {\n    keys.push(d);\n    return nest;\n  };\n\n  // Specifies the order for the most-recently specified key.\n  // Note: only applies to entries. Map keys are unordered!\n  nest.sortKeys = function(order) {\n    sortKeys[keys.length - 1] = order;\n    return nest;\n  };\n\n  // Specifies the order for leaf values.\n  // Applies to both maps and entries array.\n  nest.sortValues = function(order) {\n    sortValues = order;\n    return nest;\n  };\n\n  nest.rollup = function(f) {\n    rollup = f;\n    return nest;\n  };\n\n  return nest;\n};\nd3.keys = function(map) {\n  var keys = [];\n  for (var key in map) keys.push(key);\n  return keys;\n};\nd3.values = function(map) {\n  var values = [];\n  for (var key in map) values.push(map[key]);\n  return values;\n};\nd3.entries = function(map) {\n  var entries = [];\n  for (var key in map) entries.push({key: key, value: map[key]});\n  return entries;\n};\nd3.permute = function(array, indexes) {\n  var permutes = [],\n      i = -1,\n      n = indexes.length;\n  while (++i < n) permutes[i] = array[indexes[i]];\n  return permutes;\n};\nd3.merge = function(arrays) {\n  return Array.prototype.concat.apply([], arrays);\n};\nd3.split = function(array, f) {\n  var arrays = [],\n      values = [],\n      value,\n      i = -1,\n      n = array.length;\n  if (arguments.length < 2) f = d3_splitter;\n  while (++i < n) {\n    if (f.call(values, value = array[i], i)) {\n      values = [];\n    } else {\n      if (!values.length) arrays.push(values);\n      values.push(value);\n    }\n  }\n  return arrays;\n};\n\nfunction d3_splitter(d) {\n  return d == null;\n}\nfunction d3_collapse(s) {\n  return s.replace(/(^\\s+)|(\\s+$)/g, \"\").replace(/\\s+/g, \" \");\n}\nd3.range = function(start, stop, step) {\n  if (arguments.length < 3) {\n    step = 1;\n    if (arguments.length < 2) {\n      stop = start;\n      start = 0;\n    }\n  }\n  if ((stop - start) / step === Infinity) throw new Error(\"infinite range\");\n  var range = [],\n       k = d3_range_integerScale(Math.abs(step)),\n       i = -1,\n       j;\n  start *= k, stop *= k, step *= k;\n  if (step < 0) while ((j = start + step * ++i) > stop) range.push(j / k);\n  else while ((j = start + step * ++i) < stop) range.push(j / k);\n  return range;\n};\n\nfunction d3_range_integerScale(x) {\n  var k = 1;\n  while (x * k % 1) k *= 10;\n  return k;\n}\nd3.requote = function(s) {\n  return s.replace(d3_requote_re, \"\\\\$&\");\n};\n\nvar d3_requote_re = /[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g;\nd3.round = function(x, n) {\n  return n\n      ? Math.round(x * (n = Math.pow(10, n))) / n\n      : Math.round(x);\n};\nd3.xhr = function(url, mime, callback) {\n  var req = new XMLHttpRequest;\n  if (arguments.length < 3) callback = mime, mime = null;\n  else if (mime && req.overrideMimeType) req.overrideMimeType(mime);\n  req.open(\"GET\", url, true);\n  if (mime) req.setRequestHeader(\"Accept\", mime);\n  req.onreadystatechange = function() {\n    if (req.readyState === 4) callback(req.status < 300 ? req : null);\n  };\n  req.send(null);\n};\nd3.text = function(url, mime, callback) {\n  function ready(req) {\n    callback(req && req.responseText);\n  }\n  if (arguments.length < 3) {\n    callback = mime;\n    mime = null;\n  }\n  d3.xhr(url, mime, ready);\n};\nd3.json = function(url, callback) {\n  d3.text(url, \"application/json\", function(text) {\n    callback(text ? JSON.parse(text) : null);\n  });\n};\nd3.html = function(url, callback) {\n  d3.text(url, \"text/html\", function(text) {\n    if (text != null) { // Treat empty string as valid HTML.\n      var range = document.createRange();\n      range.selectNode(document.body);\n      text = range.createContextualFragment(text);\n    }\n    callback(text);\n  });\n};\nd3.xml = function(url, mime, callback) {\n  function ready(req) {\n    callback(req && req.responseXML);\n  }\n  if (arguments.length < 3) {\n    callback = mime;\n    mime = null;\n  }\n  d3.xhr(url, mime, ready);\n};\nvar d3_nsPrefix = {\n  svg: \"http://www.w3.org/2000/svg\",\n  xhtml: \"http://www.w3.org/1999/xhtml\",\n  xlink: \"http://www.w3.org/1999/xlink\",\n  xml: \"http://www.w3.org/XML/1998/namespace\",\n  xmlns: \"http://www.w3.org/2000/xmlns/\"\n};\n\nd3.ns = {\n  prefix: d3_nsPrefix,\n  qualify: function(name) {\n    var i = name.indexOf(\":\"),\n        prefix = name;\n    if (i >= 0) {\n      prefix = name.substring(0, i);\n      name = name.substring(i + 1);\n    }\n    return d3_nsPrefix.hasOwnProperty(prefix)\n        ? {space: d3_nsPrefix[prefix], local: name}\n        : name;\n  }\n};\nd3.dispatch = function() {\n  var dispatch = new d3_dispatch,\n      i = -1,\n      n = arguments.length;\n  while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);\n  return dispatch;\n};\n\nfunction d3_dispatch() {}\n\nd3_dispatch.prototype.on = function(type, listener) {\n  var i = type.indexOf(\".\"),\n      name = \"\";\n\n  // Extract optional namespace, e.g., \"click.foo\"\n  if (i > 0) {\n    name = type.substring(i + 1);\n    type = type.substring(0, i);\n  }\n\n  return arguments.length < 2\n      ? this[type].on(name)\n      : this[type].on(name, listener);\n};\n\nfunction d3_dispatch_event(dispatch) {\n  var listeners = [],\n      listenerByName = new d3_Map;\n\n  function event() {\n    var z = listeners, // defensive reference\n        i = -1,\n        n = z.length,\n        l;\n    while (++i < n) if (l = z[i].on) l.apply(this, arguments);\n    return dispatch;\n  }\n\n  event.on = function(name, listener) {\n    var l = listenerByName.get(name),\n        i;\n\n    // return the current listener, if any\n    if (arguments.length < 2) return l && l.on;\n\n    // remove the old listener, if any (with copy-on-write)\n    if (l) {\n      l.on = null;\n      listeners = listeners.slice(0, i = listeners.indexOf(l)).concat(listeners.slice(i + 1));\n      listenerByName.remove(name);\n    }\n\n    // add the new listener, if any\n    if (listener) listeners.push(listenerByName.set(name, {on: listener}));\n\n    return dispatch;\n  };\n\n  return event;\n}\n// TODO align\nd3.format = function(specifier) {\n  var match = d3_format_re.exec(specifier),\n      fill = match[1] || \" \",\n      sign = match[3] || \"\",\n      zfill = match[5],\n      width = +match[6],\n      comma = match[7],\n      precision = match[8],\n      type = match[9],\n      scale = 1,\n      suffix = \"\",\n      integer = false;\n\n  if (precision) precision = +precision.substring(1);\n\n  if (zfill) {\n    fill = \"0\"; // TODO align = \"=\";\n    if (comma) width -= Math.floor((width - 1) / 4);\n  }\n\n  switch (type) {\n    case \"n\": comma = true; type = \"g\"; break;\n    case \"%\": scale = 100; suffix = \"%\"; type = \"f\"; break;\n    case \"p\": scale = 100; suffix = \"%\"; type = \"r\"; break;\n    case \"d\": integer = true; precision = 0; break;\n    case \"s\": scale = -1; type = \"r\"; break;\n  }\n\n  // If no precision is specified for r, fallback to general notation.\n  if (type == \"r\" && !precision) type = \"g\";\n\n  type = d3_format_types.get(type) || d3_format_typeDefault;\n\n  return function(value) {\n\n    // Return the empty string for floats formatted as ints.\n    if (integer && (value % 1)) return \"\";\n\n    // Convert negative to positive, and record the sign prefix.\n    var negative = (value < 0) && (value = -value) ? \"\\u2212\" : sign;\n\n    // Apply the scale, computing it from the value's exponent for si format.\n    if (scale < 0) {\n      var prefix = d3.formatPrefix(value, precision);\n      value *= prefix.scale;\n      suffix = prefix.symbol;\n    } else {\n      value *= scale;\n    }\n\n    // Convert to the desired precision.\n    value = type(value, precision);\n\n    // If the fill character is 0, the sign and group is applied after the fill.\n    if (zfill) {\n      var length = value.length + negative.length;\n      if (length < width) value = new Array(width - length + 1).join(fill) + value;\n      if (comma) value = d3_format_group(value);\n      value = negative + value;\n    }\n\n    // Otherwise (e.g., space-filling), the sign and group is applied before.\n    else {\n      if (comma) value = d3_format_group(value);\n      value = negative + value;\n      var length = value.length;\n      if (length < width) value = new Array(width - length + 1).join(fill) + value;\n    }\n\n    return value + suffix;\n  };\n};\n\n// [[fill]align][sign][#][0][width][,][.precision][type]\nvar d3_format_re = /(?:([^{])?([<>=^]))?([+\\- ])?(#)?(0)?([0-9]+)?(,)?(\\.[0-9]+)?([a-zA-Z%])?/;\n\nvar d3_format_types = d3.map({\n  g: function(x, p) { return x.toPrecision(p); },\n  e: function(x, p) { return x.toExponential(p); },\n  f: function(x, p) { return x.toFixed(p); },\n  r: function(x, p) { return d3.round(x, p = d3_format_precision(x, p)).toFixed(Math.max(0, Math.min(20, p))); }\n});\n\nfunction d3_format_precision(x, p) {\n  return p - (x ? 1 + Math.floor(Math.log(x + Math.pow(10, 1 + Math.floor(Math.log(x) / Math.LN10) - p)) / Math.LN10) : 1);\n}\n\nfunction d3_format_typeDefault(x) {\n  return x + \"\";\n}\n\n// Apply comma grouping for thousands.\nfunction d3_format_group(value) {\n  var i = value.lastIndexOf(\".\"),\n      f = i >= 0 ? value.substring(i) : (i = value.length, \"\"),\n      t = [];\n  while (i > 0) t.push(value.substring(i -= 3, i + 3));\n  return t.reverse().join(\",\") + f;\n}\nvar d3_formatPrefixes = [\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"μ\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map(d3_formatPrefix);\n\nd3.formatPrefix = function(value, precision) {\n  var i = 0;\n  if (value) {\n    if (value < 0) value *= -1;\n    if (precision) value = d3.round(value, d3_format_precision(value, precision));\n    i = 1 + Math.floor(1e-12 + Math.log(value) / Math.LN10);\n    i = Math.max(-24, Math.min(24, Math.floor((i <= 0 ? i + 1 : i - 1) / 3) * 3));\n  }\n  return d3_formatPrefixes[8 + i / 3];\n};\n\nfunction d3_formatPrefix(d, i) {\n  return {\n    scale: Math.pow(10, (8 - i) * 3),\n    symbol: d\n  };\n}\n\n/*\n * TERMS OF USE - EASING EQUATIONS\n *\n * Open source under the BSD License.\n *\n * Copyright 2001 Robert Penner\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * - Redistributions of source code must retain the above copyright notice, this\n *   list of conditions and the following disclaimer.\n *\n * - Redistributions in binary form must reproduce the above copyright notice,\n *   this list of conditions and the following disclaimer in the documentation\n *   and/or other materials provided with the distribution.\n *\n * - Neither the name of the author nor the names of contributors may be used to\n *   endorse or promote products derived from this software without specific\n *   prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n */\n\nvar d3_ease_quad = d3_ease_poly(2),\n    d3_ease_cubic = d3_ease_poly(3),\n    d3_ease_default = function() { return d3_ease_identity; };\n\nvar d3_ease = d3.map({\n  linear: d3_ease_default,\n  poly: d3_ease_poly,\n  quad: function() { return d3_ease_quad; },\n  cubic: function() { return d3_ease_cubic; },\n  sin: function() { return d3_ease_sin; },\n  exp: function() { return d3_ease_exp; },\n  circle: function() { return d3_ease_circle; },\n  elastic: d3_ease_elastic,\n  back: d3_ease_back,\n  bounce: function() { return d3_ease_bounce; }\n});\n\nvar d3_ease_mode = d3.map({\n  \"in\": d3_ease_identity,\n  \"out\": d3_ease_reverse,\n  \"in-out\": d3_ease_reflect,\n  \"out-in\": function(f) { return d3_ease_reflect(d3_ease_reverse(f)); }\n});\n\nd3.ease = function(name) {\n  var i = name.indexOf(\"-\"),\n      t = i >= 0 ? name.substring(0, i) : name,\n      m = i >= 0 ? name.substring(i + 1) : \"in\";\n  t = d3_ease.get(t) || d3_ease_default;\n  m = d3_ease_mode.get(m) || d3_ease_identity;\n  return d3_ease_clamp(m(t.apply(null, Array.prototype.slice.call(arguments, 1))));\n};\n\nfunction d3_ease_clamp(f) {\n  return function(t) {\n    return t <= 0 ? 0 : t >= 1 ? 1 : f(t);\n  };\n}\n\nfunction d3_ease_reverse(f) {\n  return function(t) {\n    return 1 - f(1 - t);\n  };\n}\n\nfunction d3_ease_reflect(f) {\n  return function(t) {\n    return .5 * (t < .5 ? f(2 * t) : (2 - f(2 - 2 * t)));\n  };\n}\n\nfunction d3_ease_identity(t) {\n  return t;\n}\n\nfunction d3_ease_poly(e) {\n  return function(t) {\n    return Math.pow(t, e);\n  };\n}\n\nfunction d3_ease_sin(t) {\n  return 1 - Math.cos(t * Math.PI / 2);\n}\n\nfunction d3_ease_exp(t) {\n  return Math.pow(2, 10 * (t - 1));\n}\n\nfunction d3_ease_circle(t) {\n  return 1 - Math.sqrt(1 - t * t);\n}\n\nfunction d3_ease_elastic(a, p) {\n  var s;\n  if (arguments.length < 2) p = 0.45;\n  if (arguments.length < 1) { a = 1; s = p / 4; }\n  else s = p / (2 * Math.PI) * Math.asin(1 / a);\n  return function(t) {\n    return 1 + a * Math.pow(2, 10 * -t) * Math.sin((t - s) * 2 * Math.PI / p);\n  };\n}\n\nfunction d3_ease_back(s) {\n  if (!s) s = 1.70158;\n  return function(t) {\n    return t * t * ((s + 1) * t - s);\n  };\n}\n\nfunction d3_ease_bounce(t) {\n  return t < 1 / 2.75 ? 7.5625 * t * t\n      : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75\n      : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375\n      : 7.5625 * (t -= 2.625 / 2.75) * t + .984375;\n}\nd3.event = null;\n\nfunction d3_eventCancel() {\n  d3.event.stopPropagation();\n  d3.event.preventDefault();\n}\n\nfunction d3_eventSource() {\n  var e = d3.event, s;\n  while (s = e.sourceEvent) e = s;\n  return e;\n}\n\n// Like d3.dispatch, but for custom events abstracting native UI events. These\n// events have a target component (such as a brush), a target element (such as\n// the svg:g element containing the brush) and the standard arguments `d` (the\n// target element's data) and `i` (the selection index of the target element).\nfunction d3_eventDispatch(target) {\n  var dispatch = new d3_dispatch,\n      i = 0,\n      n = arguments.length;\n\n  while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);\n\n  // Creates a dispatch context for the specified `thiz` (typically, the target\n  // DOM element that received the source event) and `argumentz` (typically, the\n  // data `d` and index `i` of the target element). The returned function can be\n  // used to dispatch an event to any registered listeners; the function takes a\n  // single argument as input, being the event to dispatch. The event must have\n  // a \"type\" attribute which corresponds to a type registered in the\n  // constructor. This context will automatically populate the \"sourceEvent\" and\n  // \"target\" attributes of the event, as well as setting the `d3.event` global\n  // for the duration of the notification.\n  dispatch.of = function(thiz, argumentz) {\n    return function(e1) {\n      try {\n        var e0 =\n        e1.sourceEvent = d3.event;\n        e1.target = target;\n        d3.event = e1;\n        dispatch[e1.type].apply(thiz, argumentz);\n      } finally {\n        d3.event = e0;\n      }\n    };\n  };\n\n  return dispatch;\n}\nd3.interpolate = function(a, b) {\n  var i = d3.interpolators.length, f;\n  while (--i >= 0 && !(f = d3.interpolators[i](a, b)));\n  return f;\n};\n\nd3.interpolateNumber = function(a, b) {\n  b -= a;\n  return function(t) { return a + b * t; };\n};\n\nd3.interpolateRound = function(a, b) {\n  b -= a;\n  return function(t) { return Math.round(a + b * t); };\n};\n\nd3.interpolateString = function(a, b) {\n  var m, // current match\n      i, // current index\n      j, // current index (for coallescing)\n      s0 = 0, // start index of current string prefix\n      s1 = 0, // end index of current string prefix\n      s = [], // string constants and placeholders\n      q = [], // number interpolators\n      n, // q.length\n      o;\n\n  // Reset our regular expression!\n  d3_interpolate_number.lastIndex = 0;\n\n  // Find all numbers in b.\n  for (i = 0; m = d3_interpolate_number.exec(b); ++i) {\n    if (m.index) s.push(b.substring(s0, s1 = m.index));\n    q.push({i: s.length, x: m[0]});\n    s.push(null);\n    s0 = d3_interpolate_number.lastIndex;\n  }\n  if (s0 < b.length) s.push(b.substring(s0));\n\n  // Find all numbers in a.\n  for (i = 0, n = q.length; (m = d3_interpolate_number.exec(a)) && i < n; ++i) {\n    o = q[i];\n    if (o.x == m[0]) { // The numbers match, so coallesce.\n      if (o.i) {\n        if (s[o.i + 1] == null) { // This match is followed by another number.\n          s[o.i - 1] += o.x;\n          s.splice(o.i, 1);\n          for (j = i + 1; j < n; ++j) q[j].i--;\n        } else { // This match is followed by a string, so coallesce twice.\n          s[o.i - 1] += o.x + s[o.i + 1];\n          s.splice(o.i, 2);\n          for (j = i + 1; j < n; ++j) q[j].i -= 2;\n        }\n      } else {\n          if (s[o.i + 1] == null) { // This match is followed by another number.\n          s[o.i] = o.x;\n        } else { // This match is followed by a string, so coallesce twice.\n          s[o.i] = o.x + s[o.i + 1];\n          s.splice(o.i + 1, 1);\n          for (j = i + 1; j < n; ++j) q[j].i--;\n        }\n      }\n      q.splice(i, 1);\n      n--;\n      i--;\n    } else {\n      o.x = d3.interpolateNumber(parseFloat(m[0]), parseFloat(o.x));\n    }\n  }\n\n  // Remove any numbers in b not found in a.\n  while (i < n) {\n    o = q.pop();\n    if (s[o.i + 1] == null) { // This match is followed by another number.\n      s[o.i] = o.x;\n    } else { // This match is followed by a string, so coallesce twice.\n      s[o.i] = o.x + s[o.i + 1];\n      s.splice(o.i + 1, 1);\n    }\n    n--;\n  }\n\n  // Special optimization for only a single match.\n  if (s.length === 1) {\n    return s[0] == null ? q[0].x : function() { return b; };\n  }\n\n  // Otherwise, interpolate each of the numbers and rejoin the string.\n  return function(t) {\n    for (i = 0; i < n; ++i) s[(o = q[i]).i] = o.x(t);\n    return s.join(\"\");\n  };\n};\n\nd3.interpolateTransform = function(a, b) {\n  var s = [], // string constants and placeholders\n      q = [], // number interpolators\n      n,\n      A = d3.transform(a),\n      B = d3.transform(b),\n      ta = A.translate,\n      tb = B.translate,\n      ra = A.rotate,\n      rb = B.rotate,\n      wa = A.skew,\n      wb = B.skew,\n      ka = A.scale,\n      kb = B.scale;\n\n  if (ta[0] != tb[0] || ta[1] != tb[1]) {\n    s.push(\"translate(\", null, \",\", null, \")\");\n    q.push({i: 1, x: d3.interpolateNumber(ta[0], tb[0])}, {i: 3, x: d3.interpolateNumber(ta[1], tb[1])});\n  } else if (tb[0] || tb[1]) {\n    s.push(\"translate(\" + tb + \")\");\n  } else {\n    s.push(\"\");\n  }\n\n  if (ra != rb) {\n    q.push({i: s.push(s.pop() + \"rotate(\", null, \")\") - 2, x: d3.interpolateNumber(ra, rb)});\n  } else if (rb) {\n    s.push(s.pop() + \"rotate(\" + rb + \")\");\n  }\n\n  if (wa != wb) {\n    q.push({i: s.push(s.pop() + \"skewX(\", null, \")\") - 2, x: d3.interpolateNumber(wa, wb)});\n  } else if (wb) {\n    s.push(s.pop() + \"skewX(\" + wb + \")\");\n  }\n\n  if (ka[0] != kb[0] || ka[1] != kb[1]) {\n    n = s.push(s.pop() + \"scale(\", null, \",\", null, \")\");\n    q.push({i: n - 4, x: d3.interpolateNumber(ka[0], kb[0])}, {i: n - 2, x: d3.interpolateNumber(ka[1], kb[1])});\n  } else if (kb[0] != 1 || kb[1] != 1) {\n    s.push(s.pop() + \"scale(\" + kb + \")\");\n  }\n\n  n = q.length;\n  return function(t) {\n    var i = -1, o;\n    while (++i < n) s[(o = q[i]).i] = o.x(t);\n    return s.join(\"\");\n  };\n};\n\nd3.interpolateRgb = function(a, b) {\n  a = d3.rgb(a);\n  b = d3.rgb(b);\n  var ar = a.r,\n      ag = a.g,\n      ab = a.b,\n      br = b.r - ar,\n      bg = b.g - ag,\n      bb = b.b - ab;\n  return function(t) {\n    return \"#\"\n        + d3_rgb_hex(Math.round(ar + br * t))\n        + d3_rgb_hex(Math.round(ag + bg * t))\n        + d3_rgb_hex(Math.round(ab + bb * t));\n  };\n};\n\n// interpolates HSL space, but outputs RGB string (for compatibility)\nd3.interpolateHsl = function(a, b) {\n  a = d3.hsl(a);\n  b = d3.hsl(b);\n  var h0 = a.h,\n      s0 = a.s,\n      l0 = a.l,\n      h1 = b.h - h0,\n      s1 = b.s - s0,\n      l1 = b.l - l0;\n  return function(t) {\n    return d3_hsl_rgb(h0 + h1 * t, s0 + s1 * t, l0 + l1 * t).toString();\n  };\n};\n\nd3.interpolateArray = function(a, b) {\n  var x = [],\n      c = [],\n      na = a.length,\n      nb = b.length,\n      n0 = Math.min(a.length, b.length),\n      i;\n  for (i = 0; i < n0; ++i) x.push(d3.interpolate(a[i], b[i]));\n  for (; i < na; ++i) c[i] = a[i];\n  for (; i < nb; ++i) c[i] = b[i];\n  return function(t) {\n    for (i = 0; i < n0; ++i) c[i] = x[i](t);\n    return c;\n  };\n};\n\nd3.interpolateObject = function(a, b) {\n  var i = {},\n      c = {},\n      k;\n  for (k in a) {\n    if (k in b) {\n      i[k] = d3_interpolateByName(k)(a[k], b[k]);\n    } else {\n      c[k] = a[k];\n    }\n  }\n  for (k in b) {\n    if (!(k in a)) {\n      c[k] = b[k];\n    }\n  }\n  return function(t) {\n    for (k in i) c[k] = i[k](t);\n    return c;\n  };\n}\n\nvar d3_interpolate_number = /[-+]?(?:\\d*\\.?\\d+)(?:[eE][-+]?\\d+)?/g;\n\nfunction d3_interpolateByName(n) {\n  return n == \"transform\"\n      ? d3.interpolateTransform\n      : d3.interpolate;\n}\n\nd3.interpolators = [\n  d3.interpolateObject,\n  function(a, b) { return (b instanceof Array) && d3.interpolateArray(a, b); },\n  function(a, b) { return (typeof a === \"string\" || typeof b === \"string\") && d3.interpolateString(a + \"\", b + \"\"); },\n  function(a, b) { return (typeof b === \"string\" ? d3_rgb_names.has(b) || /^(#|rgb\\(|hsl\\()/.test(b) : b instanceof d3_Rgb || b instanceof d3_Hsl) && d3.interpolateRgb(a, b); },\n  function(a, b) { return !isNaN(a = +a) && !isNaN(b = +b) && d3.interpolateNumber(a, b); }\n];\nfunction d3_uninterpolateNumber(a, b) {\n  b = b - (a = +a) ? 1 / (b - a) : 0;\n  return function(x) { return (x - a) * b; };\n}\n\nfunction d3_uninterpolateClamp(a, b) {\n  b = b - (a = +a) ? 1 / (b - a) : 0;\n  return function(x) { return Math.max(0, Math.min(1, (x - a) * b)); };\n}\nd3.rgb = function(r, g, b) {\n  return arguments.length === 1\n      ? (r instanceof d3_Rgb ? d3_rgb(r.r, r.g, r.b)\n      : d3_rgb_parse(\"\" + r, d3_rgb, d3_hsl_rgb))\n      : d3_rgb(~~r, ~~g, ~~b);\n};\n\nfunction d3_rgb(r, g, b) {\n  return new d3_Rgb(r, g, b);\n}\n\nfunction d3_Rgb(r, g, b) {\n  this.r = r;\n  this.g = g;\n  this.b = b;\n}\n\nd3_Rgb.prototype.brighter = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  var r = this.r,\n      g = this.g,\n      b = this.b,\n      i = 30;\n  if (!r && !g && !b) return d3_rgb(i, i, i);\n  if (r && r < i) r = i;\n  if (g && g < i) g = i;\n  if (b && b < i) b = i;\n  return d3_rgb(\n      Math.min(255, Math.floor(r / k)),\n      Math.min(255, Math.floor(g / k)),\n      Math.min(255, Math.floor(b / k)));\n};\n\nd3_Rgb.prototype.darker = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_rgb(\n      Math.floor(k * this.r),\n      Math.floor(k * this.g),\n      Math.floor(k * this.b));\n};\n\nd3_Rgb.prototype.hsl = function() {\n  return d3_rgb_hsl(this.r, this.g, this.b);\n};\n\nd3_Rgb.prototype.toString = function() {\n  return \"#\" + d3_rgb_hex(this.r) + d3_rgb_hex(this.g) + d3_rgb_hex(this.b);\n};\n\nfunction d3_rgb_hex(v) {\n  return v < 0x10\n      ? \"0\" + Math.max(0, v).toString(16)\n      : Math.min(255, v).toString(16);\n}\n\nfunction d3_rgb_parse(format, rgb, hsl) {\n  var r = 0, // red channel; int in [0, 255]\n      g = 0, // green channel; int in [0, 255]\n      b = 0, // blue channel; int in [0, 255]\n      m1, // CSS color specification match\n      m2, // CSS color specification type (e.g., rgb)\n      name;\n\n  /* Handle hsl, rgb. */\n  m1 = /([a-z]+)\\((.*)\\)/i.exec(format);\n  if (m1) {\n    m2 = m1[2].split(\",\");\n    switch (m1[1]) {\n      case \"hsl\": {\n        return hsl(\n          parseFloat(m2[0]), // degrees\n          parseFloat(m2[1]) / 100, // percentage\n          parseFloat(m2[2]) / 100 // percentage\n        );\n      }\n      case \"rgb\": {\n        return rgb(\n          d3_rgb_parseNumber(m2[0]),\n          d3_rgb_parseNumber(m2[1]),\n          d3_rgb_parseNumber(m2[2])\n        );\n      }\n    }\n  }\n\n  /* Named colors. */\n  if (name = d3_rgb_names.get(format)) return rgb(name.r, name.g, name.b);\n\n  /* Hexadecimal colors: #rgb and #rrggbb. */\n  if (format != null && format.charAt(0) === \"#\") {\n    if (format.length === 4) {\n      r = format.charAt(1); r += r;\n      g = format.charAt(2); g += g;\n      b = format.charAt(3); b += b;\n    } else if (format.length === 7) {\n      r = format.substring(1, 3);\n      g = format.substring(3, 5);\n      b = format.substring(5, 7);\n    }\n    r = parseInt(r, 16);\n    g = parseInt(g, 16);\n    b = parseInt(b, 16);\n  }\n\n  return rgb(r, g, b);\n}\n\nfunction d3_rgb_hsl(r, g, b) {\n  var min = Math.min(r /= 255, g /= 255, b /= 255),\n      max = Math.max(r, g, b),\n      d = max - min,\n      h,\n      s,\n      l = (max + min) / 2;\n  if (d) {\n    s = l < .5 ? d / (max + min) : d / (2 - max - min);\n    if (r == max) h = (g - b) / d + (g < b ? 6 : 0);\n    else if (g == max) h = (b - r) / d + 2;\n    else h = (r - g) / d + 4;\n    h *= 60;\n  } else {\n    s = h = 0;\n  }\n  return d3_hsl(h, s, l);\n}\n\nfunction d3_rgb_parseNumber(c) { // either integer or percentage\n  var f = parseFloat(c);\n  return c.charAt(c.length - 1) === \"%\" ? Math.round(f * 2.55) : f;\n}\n\nvar d3_rgb_names = d3.map({\n  aliceblue: \"#f0f8ff\",\n  antiquewhite: \"#faebd7\",\n  aqua: \"#00ffff\",\n  aquamarine: \"#7fffd4\",\n  azure: \"#f0ffff\",\n  beige: \"#f5f5dc\",\n  bisque: \"#ffe4c4\",\n  black: \"#000000\",\n  blanchedalmond: \"#ffebcd\",\n  blue: \"#0000ff\",\n  blueviolet: \"#8a2be2\",\n  brown: \"#a52a2a\",\n  burlywood: \"#deb887\",\n  cadetblue: \"#5f9ea0\",\n  chartreuse: \"#7fff00\",\n  chocolate: \"#d2691e\",\n  coral: \"#ff7f50\",\n  cornflowerblue: \"#6495ed\",\n  cornsilk: \"#fff8dc\",\n  crimson: \"#dc143c\",\n  cyan: \"#00ffff\",\n  darkblue: \"#00008b\",\n  darkcyan: \"#008b8b\",\n  darkgoldenrod: \"#b8860b\",\n  darkgray: \"#a9a9a9\",\n  darkgreen: \"#006400\",\n  darkgrey: \"#a9a9a9\",\n  darkkhaki: \"#bdb76b\",\n  darkmagenta: \"#8b008b\",\n  darkolivegreen: \"#556b2f\",\n  darkorange: \"#ff8c00\",\n  darkorchid: \"#9932cc\",\n  darkred: \"#8b0000\",\n  darksalmon: \"#e9967a\",\n  darkseagreen: \"#8fbc8f\",\n  darkslateblue: \"#483d8b\",\n  darkslategray: \"#2f4f4f\",\n  darkslategrey: \"#2f4f4f\",\n  darkturquoise: \"#00ced1\",\n  darkviolet: \"#9400d3\",\n  deeppink: \"#ff1493\",\n  deepskyblue: \"#00bfff\",\n  dimgray: \"#696969\",\n  dimgrey: \"#696969\",\n  dodgerblue: \"#1e90ff\",\n  firebrick: \"#b22222\",\n  floralwhite: \"#fffaf0\",\n  forestgreen: \"#228b22\",\n  fuchsia: \"#ff00ff\",\n  gainsboro: \"#dcdcdc\",\n  ghostwhite: \"#f8f8ff\",\n  gold: \"#ffd700\",\n  goldenrod: \"#daa520\",\n  gray: \"#808080\",\n  green: \"#008000\",\n  greenyellow: \"#adff2f\",\n  grey: \"#808080\",\n  honeydew: \"#f0fff0\",\n  hotpink: \"#ff69b4\",\n  indianred: \"#cd5c5c\",\n  indigo: \"#4b0082\",\n  ivory: \"#fffff0\",\n  khaki: \"#f0e68c\",\n  lavender: \"#e6e6fa\",\n  lavenderblush: \"#fff0f5\",\n  lawngreen: \"#7cfc00\",\n  lemonchiffon: \"#fffacd\",\n  lightblue: \"#add8e6\",\n  lightcoral: \"#f08080\",\n  lightcyan: \"#e0ffff\",\n  lightgoldenrodyellow: \"#fafad2\",\n  lightgray: \"#d3d3d3\",\n  lightgreen: \"#90ee90\",\n  lightgrey: \"#d3d3d3\",\n  lightpink: \"#ffb6c1\",\n  lightsalmon: \"#ffa07a\",\n  lightseagreen: \"#20b2aa\",\n  lightskyblue: \"#87cefa\",\n  lightslategray: \"#778899\",\n  lightslategrey: \"#778899\",\n  lightsteelblue: \"#b0c4de\",\n  lightyellow: \"#ffffe0\",\n  lime: \"#00ff00\",\n  limegreen: \"#32cd32\",\n  linen: \"#faf0e6\",\n  magenta: \"#ff00ff\",\n  maroon: \"#800000\",\n  mediumaquamarine: \"#66cdaa\",\n  mediumblue: \"#0000cd\",\n  mediumorchid: \"#ba55d3\",\n  mediumpurple: \"#9370db\",\n  mediumseagreen: \"#3cb371\",\n  mediumslateblue: \"#7b68ee\",\n  mediumspringgreen: \"#00fa9a\",\n  mediumturquoise: \"#48d1cc\",\n  mediumvioletred: \"#c71585\",\n  midnightblue: \"#191970\",\n  mintcream: \"#f5fffa\",\n  mistyrose: \"#ffe4e1\",\n  moccasin: \"#ffe4b5\",\n  navajowhite: \"#ffdead\",\n  navy: \"#000080\",\n  oldlace: \"#fdf5e6\",\n  olive: \"#808000\",\n  olivedrab: \"#6b8e23\",\n  orange: \"#ffa500\",\n  orangered: \"#ff4500\",\n  orchid: \"#da70d6\",\n  palegoldenrod: \"#eee8aa\",\n  palegreen: \"#98fb98\",\n  paleturquoise: \"#afeeee\",\n  palevioletred: \"#db7093\",\n  papayawhip: \"#ffefd5\",\n  peachpuff: \"#ffdab9\",\n  peru: \"#cd853f\",\n  pink: \"#ffc0cb\",\n  plum: \"#dda0dd\",\n  powderblue: \"#b0e0e6\",\n  purple: \"#800080\",\n  red: \"#ff0000\",\n  rosybrown: \"#bc8f8f\",\n  royalblue: \"#4169e1\",\n  saddlebrown: \"#8b4513\",\n  salmon: \"#fa8072\",\n  sandybrown: \"#f4a460\",\n  seagreen: \"#2e8b57\",\n  seashell: \"#fff5ee\",\n  sienna: \"#a0522d\",\n  silver: \"#c0c0c0\",\n  skyblue: \"#87ceeb\",\n  slateblue: \"#6a5acd\",\n  slategray: \"#708090\",\n  slategrey: \"#708090\",\n  snow: \"#fffafa\",\n  springgreen: \"#00ff7f\",\n  steelblue: \"#4682b4\",\n  tan: \"#d2b48c\",\n  teal: \"#008080\",\n  thistle: \"#d8bfd8\",\n  tomato: \"#ff6347\",\n  turquoise: \"#40e0d0\",\n  violet: \"#ee82ee\",\n  wheat: \"#f5deb3\",\n  white: \"#ffffff\",\n  whitesmoke: \"#f5f5f5\",\n  yellow: \"#ffff00\",\n  yellowgreen: \"#9acd32\"\n});\n\nd3_rgb_names.forEach(function(key, value) {\n  d3_rgb_names.set(key, d3_rgb_parse(value, d3_rgb, d3_hsl_rgb));\n});\nd3.hsl = function(h, s, l) {\n  return arguments.length === 1\n      ? (h instanceof d3_Hsl ? d3_hsl(h.h, h.s, h.l)\n      : d3_rgb_parse(\"\" + h, d3_rgb_hsl, d3_hsl))\n      : d3_hsl(+h, +s, +l);\n};\n\nfunction d3_hsl(h, s, l) {\n  return new d3_Hsl(h, s, l);\n}\n\nfunction d3_Hsl(h, s, l) {\n  this.h = h;\n  this.s = s;\n  this.l = l;\n}\n\nd3_Hsl.prototype.brighter = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_hsl(this.h, this.s, this.l / k);\n};\n\nd3_Hsl.prototype.darker = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_hsl(this.h, this.s, k * this.l);\n};\n\nd3_Hsl.prototype.rgb = function() {\n  return d3_hsl_rgb(this.h, this.s, this.l);\n};\n\nd3_Hsl.prototype.toString = function() {\n  return this.rgb().toString();\n};\n\nfunction d3_hsl_rgb(h, s, l) {\n  var m1,\n      m2;\n\n  /* Some simple corrections for h, s and l. */\n  h = h % 360; if (h < 0) h += 360;\n  s = s < 0 ? 0 : s > 1 ? 1 : s;\n  l = l < 0 ? 0 : l > 1 ? 1 : l;\n\n  /* From FvD 13.37, CSS Color Module Level 3 */\n  m2 = l <= .5 ? l * (1 + s) : l + s - l * s;\n  m1 = 2 * l - m2;\n\n  function v(h) {\n    if (h > 360) h -= 360;\n    else if (h < 0) h += 360;\n    if (h < 60) return m1 + (m2 - m1) * h / 60;\n    if (h < 180) return m2;\n    if (h < 240) return m1 + (m2 - m1) * (240 - h) / 60;\n    return m1;\n  }\n\n  function vv(h) {\n    return Math.round(v(h) * 255);\n  }\n\n  return d3_rgb(vv(h + 120), vv(h), vv(h - 120));\n}\nfunction d3_selection(groups) {\n  d3_arraySubclass(groups, d3_selectionPrototype);\n  return groups;\n}\n\nvar d3_select = function(s, n) { return n.querySelector(s); },\n    d3_selectAll = function(s, n) { return n.querySelectorAll(s); },\n    d3_selectRoot = document.documentElement,\n    d3_selectMatcher = d3_selectRoot.matchesSelector || d3_selectRoot.webkitMatchesSelector || d3_selectRoot.mozMatchesSelector || d3_selectRoot.msMatchesSelector || d3_selectRoot.oMatchesSelector,\n    d3_selectMatches = function(n, s) { return d3_selectMatcher.call(n, s); };\n\n// Prefer Sizzle, if available.\nif (typeof Sizzle === \"function\") {\n  d3_select = function(s, n) { return Sizzle(s, n)[0]; };\n  d3_selectAll = function(s, n) { return Sizzle.uniqueSort(Sizzle(s, n)); };\n  d3_selectMatches = Sizzle.matchesSelector;\n}\n\nvar d3_selectionPrototype = [];\n\nd3.selection = function() {\n  return d3_selectionRoot;\n};\n\nd3.selection.prototype = d3_selectionPrototype;\nd3_selectionPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      group,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selector(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = (group = this[j]).parentNode;\n    for (var i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroup.push(subnode = selector.call(node, node.__data__, i));\n        if (subnode && \"__data__\" in node) subnode.__data__ = node.__data__;\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_selector(selector) {\n  return function() {\n    return d3_select(selector, this);\n  };\n}\nd3_selectionPrototype.selectAll = function(selector) {\n  var subgroups = [],\n      subgroup,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selectorAll(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroups.push(subgroup = d3_array(selector.call(node, node.__data__, i)));\n        subgroup.parentNode = node;\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_selectorAll(selector) {\n  return function() {\n    return d3_selectAll(selector, this);\n  };\n}\nd3_selectionPrototype.attr = function(name, value) {\n  name = d3.ns.qualify(name);\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) {\n    var node = this.node();\n    return name.local\n        ? node.getAttributeNS(name.space, name.local)\n        : node.getAttribute(name);\n  }\n\n  function attrNull() {\n    this.removeAttribute(name);\n  }\n\n  function attrNullNS() {\n    this.removeAttributeNS(name.space, name.local);\n  }\n\n  function attrConstant() {\n    this.setAttribute(name, value);\n  }\n\n  function attrConstantNS() {\n    this.setAttributeNS(name.space, name.local, value);\n  }\n\n  function attrFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.removeAttribute(name);\n    else this.setAttribute(name, x);\n  }\n\n  function attrFunctionNS() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.removeAttributeNS(name.space, name.local);\n    else this.setAttributeNS(name.space, name.local, x);\n  }\n\n  return this.each(value == null\n      ? (name.local ? attrNullNS : attrNull) : (typeof value === \"function\"\n      ? (name.local ? attrFunctionNS : attrFunction)\n      : (name.local ? attrConstantNS : attrConstant)));\n};\nd3_selectionPrototype.classed = function(name, value) {\n  var names = name.split(d3_selection_classedWhitespace),\n      n = names.length,\n      i = -1;\n  if (arguments.length > 1) {\n    while (++i < n) d3_selection_classed.call(this, names[i], value);\n    return this;\n  } else {\n    while (++i < n) if (!d3_selection_classed.call(this, names[i])) return false;\n    return true;\n  }\n};\n\nvar d3_selection_classedWhitespace = /\\s+/g;\n\nfunction d3_selection_classed(name, value) {\n  var re = new RegExp(\"(^|\\\\s+)\" + d3.requote(name) + \"(\\\\s+|$)\", \"g\");\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) {\n    var node = this.node();\n    if (c = node.classList) return c.contains(name);\n    var c = node.className;\n    re.lastIndex = 0;\n    return re.test(c.baseVal != null ? c.baseVal : c);\n  }\n\n  function classedAdd() {\n    if (c = this.classList) return c.add(name);\n    var c = this.className,\n        cb = c.baseVal != null,\n        cv = cb ? c.baseVal : c;\n    re.lastIndex = 0;\n    if (!re.test(cv)) {\n      cv = d3_collapse(cv + \" \" + name);\n      if (cb) c.baseVal = cv;\n      else this.className = cv;\n    }\n  }\n\n  function classedRemove() {\n    if (c = this.classList) return c.remove(name);\n    var c = this.className,\n        cb = c.baseVal != null,\n        cv = cb ? c.baseVal : c;\n    cv = d3_collapse(cv.replace(re, \" \"));\n    if (cb) c.baseVal = cv;\n    else this.className = cv;\n  }\n\n  function classedFunction() {\n    (value.apply(this, arguments)\n        ? classedAdd\n        : classedRemove).call(this);\n  }\n\n  return this.each(typeof value === \"function\"\n      ? classedFunction : value\n      ? classedAdd\n      : classedRemove);\n}\nd3_selectionPrototype.style = function(name, value, priority) {\n  if (arguments.length < 3) priority = \"\";\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) return window\n      .getComputedStyle(this.node(), null)\n      .getPropertyValue(name);\n\n  function styleNull() {\n    this.style.removeProperty(name);\n  }\n\n  function styleConstant() {\n    this.style.setProperty(name, value, priority);\n  }\n\n  function styleFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.style.removeProperty(name);\n    else this.style.setProperty(name, x, priority);\n  }\n\n  return this.each(value == null\n      ? styleNull : (typeof value === \"function\"\n      ? styleFunction : styleConstant));\n};\nd3_selectionPrototype.property = function(name, value) {\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) return this.node()[name];\n\n  function propertyNull() {\n    delete this[name];\n  }\n\n  function propertyConstant() {\n    this[name] = value;\n  }\n\n  function propertyFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) delete this[name];\n    else this[name] = x;\n  }\n\n  return this.each(value == null\n      ? propertyNull : (typeof value === \"function\"\n      ? propertyFunction : propertyConstant));\n};\nd3_selectionPrototype.text = function(value) {\n  return arguments.length < 1\n      ? this.node().textContent : this.each(typeof value === \"function\"\n      ? function() { var v = value.apply(this, arguments); this.textContent = v == null ? \"\" : v; } : value == null\n      ? function() { this.textContent = \"\"; }\n      : function() { this.textContent = value; });\n};\nd3_selectionPrototype.html = function(value) {\n  return arguments.length < 1\n      ? this.node().innerHTML : this.each(typeof value === \"function\"\n      ? function() { var v = value.apply(this, arguments); this.innerHTML = v == null ? \"\" : v; } : value == null\n      ? function() { this.innerHTML = \"\"; }\n      : function() { this.innerHTML = value; });\n};\n// TODO append(node)?\n// TODO append(function)?\nd3_selectionPrototype.append = function(name) {\n  name = d3.ns.qualify(name);\n\n  function append() {\n    return this.appendChild(document.createElementNS(this.namespaceURI, name));\n  }\n\n  function appendNS() {\n    return this.appendChild(document.createElementNS(name.space, name.local));\n  }\n\n  return this.select(name.local ? appendNS : append);\n};\n// TODO insert(node, function)?\n// TODO insert(function, string)?\n// TODO insert(function, function)?\nd3_selectionPrototype.insert = function(name, before) {\n  name = d3.ns.qualify(name);\n\n  function insert() {\n    return this.insertBefore(\n        document.createElementNS(this.namespaceURI, name),\n        d3_select(before, this));\n  }\n\n  function insertNS() {\n    return this.insertBefore(\n        document.createElementNS(name.space, name.local),\n        d3_select(before, this));\n  }\n\n  return this.select(name.local ? insertNS : insert);\n};\n// TODO remove(selector)?\n// TODO remove(node)?\n// TODO remove(function)?\nd3_selectionPrototype.remove = function() {\n  return this.each(function() {\n    var parent = this.parentNode;\n    if (parent) parent.removeChild(this);\n  });\n};\nd3_selectionPrototype.data = function(value, key) {\n  var i = -1,\n      n = this.length,\n      group,\n      node;\n\n  // If no value is specified, return the first value.\n  if (!arguments.length) {\n    value = new Array(n = (group = this[0]).length);\n    while (++i < n) {\n      if (node = group[i]) {\n        value[i] = node.__data__;\n      }\n    }\n    return value;\n  }\n\n  function bind(group, groupData) {\n    var i,\n        n = group.length,\n        m = groupData.length,\n        n0 = Math.min(n, m),\n        n1 = Math.max(n, m),\n        updateNodes = [],\n        enterNodes = [],\n        exitNodes = [],\n        node,\n        nodeData;\n\n    if (key) {\n      var nodeByKeyValue = new d3_Map,\n          keyValues = [],\n          keyValue,\n          j = groupData.length;\n\n      for (i = -1; ++i < n;) {\n        keyValue = key.call(node = group[i], node.__data__, i);\n        if (nodeByKeyValue.has(keyValue)) {\n          exitNodes[j++] = node; // duplicate key\n        } else {\n          nodeByKeyValue.set(keyValue, node);\n        }\n        keyValues.push(keyValue);\n      }\n\n      for (i = -1; ++i < m;) {\n        keyValue = key.call(groupData, nodeData = groupData[i], i)\n        if (nodeByKeyValue.has(keyValue)) {\n          updateNodes[i] = node = nodeByKeyValue.get(keyValue);\n          node.__data__ = nodeData;\n          enterNodes[i] = exitNodes[i] = null;\n        } else {\n          enterNodes[i] = d3_selection_dataNode(nodeData);\n          updateNodes[i] = exitNodes[i] = null;\n        }\n        nodeByKeyValue.remove(keyValue);\n      }\n\n      for (i = -1; ++i < n;) {\n        if (nodeByKeyValue.has(keyValues[i])) {\n          exitNodes[i] = group[i];\n        }\n      }\n    } else {\n      for (i = -1; ++i < n0;) {\n        node = group[i];\n        nodeData = groupData[i];\n        if (node) {\n          node.__data__ = nodeData;\n          updateNodes[i] = node;\n          enterNodes[i] = exitNodes[i] = null;\n        } else {\n          enterNodes[i] = d3_selection_dataNode(nodeData);\n          updateNodes[i] = exitNodes[i] = null;\n        }\n      }\n      for (; i < m; ++i) {\n        enterNodes[i] = d3_selection_dataNode(groupData[i]);\n        updateNodes[i] = exitNodes[i] = null;\n      }\n      for (; i < n1; ++i) {\n        exitNodes[i] = group[i];\n        enterNodes[i] = updateNodes[i] = null;\n      }\n    }\n\n    enterNodes.update\n        = updateNodes;\n\n    enterNodes.parentNode\n        = updateNodes.parentNode\n        = exitNodes.parentNode\n        = group.parentNode;\n\n    enter.push(enterNodes);\n    update.push(updateNodes);\n    exit.push(exitNodes);\n  }\n\n  var enter = d3_selection_enter([]),\n      update = d3_selection([]),\n      exit = d3_selection([]);\n\n  if (typeof value === \"function\") {\n    while (++i < n) {\n      bind(group = this[i], value.call(group, group.parentNode.__data__, i));\n    }\n  } else {\n    while (++i < n) {\n      bind(group = this[i], value);\n    }\n  }\n\n  update.enter = function() { return enter; };\n  update.exit = function() { return exit; };\n  return update;\n};\n\nfunction d3_selection_dataNode(data) {\n  return {__data__: data};\n}\nd3_selectionPrototype.datum =\nd3_selectionPrototype.map = function(value) {\n  return arguments.length < 1\n      ? this.property(\"__data__\")\n      : this.property(\"__data__\", value);\n};\nd3_selectionPrototype.filter = function(filter) {\n  var subgroups = [],\n      subgroup,\n      group,\n      node;\n\n  if (typeof filter !== \"function\") filter = d3_selection_filter(filter);\n\n  for (var j = 0, m = this.length; j < m; j++) {\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = (group = this[j]).parentNode;\n    for (var i = 0, n = group.length; i < n; i++) {\n      if ((node = group[i]) && filter.call(node, node.__data__, i)) {\n        subgroup.push(node);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_filter(selector) {\n  return function() {\n    return d3_selectMatches(this, selector);\n  };\n}\nd3_selectionPrototype.order = function() {\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = group.length - 1, next = group[i], node; --i >= 0;) {\n      if (node = group[i]) {\n        if (next && next !== node.nextSibling) next.parentNode.insertBefore(node, next);\n        next = node;\n      }\n    }\n  }\n  return this;\n};\nd3_selectionPrototype.sort = function(comparator) {\n  comparator = d3_selection_sortComparator.apply(this, arguments);\n  for (var j = -1, m = this.length; ++j < m;) this[j].sort(comparator);\n  return this.order();\n};\n\nfunction d3_selection_sortComparator(comparator) {\n  if (!arguments.length) comparator = d3.ascending;\n  return function(a, b) {\n    return comparator(a && a.__data__, b && b.__data__);\n  };\n}\n// type can be namespaced, e.g., \"click.foo\"\n// listener can be null for removal\nd3_selectionPrototype.on = function(type, listener, capture) {\n  if (arguments.length < 3) capture = false;\n\n  // parse the type specifier\n  var name = \"__on\" + type, i = type.indexOf(\".\");\n  if (i > 0) type = type.substring(0, i);\n\n  // if called with only one argument, return the current listener\n  if (arguments.length < 2) return (i = this.node()[name]) && i._;\n\n  // remove the old event listener, and add the new event listener\n  return this.each(function(d, i) {\n    var node = this,\n        o = node[name];\n\n    // remove the old listener, if any (using the previously-set capture)\n    if (o) {\n      node.removeEventListener(type, o, o.$);\n      delete node[name];\n    }\n\n    // add the new listener, if any (remembering the capture flag)\n    if (listener) {\n      node.addEventListener(type, node[name] = l, l.$ = capture);\n      l._ = listener; // stash the unwrapped listener for get\n    }\n\n    // wrapped event listener that preserves i\n    function l(e) {\n      var o = d3.event; // Events can be reentrant (e.g., focus).\n      d3.event = e;\n      try {\n        listener.call(node, node.__data__, i);\n      } finally {\n        d3.event = o;\n      }\n    }\n  });\n};\nd3_selectionPrototype.each = function(callback) {\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      var node = group[i];\n      if (node) callback.call(node, node.__data__, i, j);\n    }\n  }\n  return this;\n};\n//\n// Note: assigning to the arguments array simultaneously changes the value of\n// the corresponding argument!\n//\n// TODO The `this` argument probably shouldn't be the first argument to the\n// callback, anyway, since it's redundant. However, that will require a major\n// version bump due to backwards compatibility, so I'm not changing it right\n// away.\n//\nd3_selectionPrototype.call = function(callback) {\n  callback.apply(this, (arguments[0] = this, arguments));\n  return this;\n};\nd3_selectionPrototype.empty = function() {\n  return !this.node();\n};\nd3_selectionPrototype.node = function(callback) {\n  for (var j = 0, m = this.length; j < m; j++) {\n    for (var group = this[j], i = 0, n = group.length; i < n; i++) {\n      var node = group[i];\n      if (node) return node;\n    }\n  }\n  return null;\n};\nd3_selectionPrototype.transition = function() {\n  var subgroups = [],\n      subgroup,\n      node;\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      subgroup.push((node = group[i]) ? {node: node, delay: d3_transitionDelay, duration: d3_transitionDuration} : null);\n    }\n  }\n\n  return d3_transition(subgroups, d3_transitionId || ++d3_transitionNextId, Date.now());\n};\nvar d3_selectionRoot = d3_selection([[document]]);\n\nd3_selectionRoot[0].parentNode = d3_selectRoot;\n\n// TODO fast singleton implementation!\n// TODO select(function)\nd3.select = function(selector) {\n  return typeof selector === \"string\"\n      ? d3_selectionRoot.select(selector)\n      : d3_selection([[selector]]); // assume node\n};\n\n// TODO selectAll(function)\nd3.selectAll = function(selector) {\n  return typeof selector === \"string\"\n      ? d3_selectionRoot.selectAll(selector)\n      : d3_selection([d3_array(selector)]); // assume node[]\n};\nfunction d3_selection_enter(selection) {\n  d3_arraySubclass(selection, d3_selection_enterPrototype);\n  return selection;\n}\n\nvar d3_selection_enterPrototype = [];\n\nd3.selection.enter = d3_selection_enter;\nd3.selection.enter.prototype = d3_selection_enterPrototype;\n\nd3_selection_enterPrototype.append = d3_selectionPrototype.append;\nd3_selection_enterPrototype.insert = d3_selectionPrototype.insert;\nd3_selection_enterPrototype.empty = d3_selectionPrototype.empty;\nd3_selection_enterPrototype.node = d3_selectionPrototype.node;\nd3_selection_enterPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      upgroup,\n      group,\n      node;\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    upgroup = (group = this[j]).update;\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = group.parentNode;\n    for (var i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroup.push(upgroup[i] = subnode = selector.call(group.parentNode, node.__data__, i));\n        subnode.__data__ = node.__data__;\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\nfunction d3_transition(groups, id, time) {\n  d3_arraySubclass(groups, d3_transitionPrototype);\n\n  var tweens = new d3_Map,\n      event = d3.dispatch(\"start\", \"end\"),\n      ease = d3_transitionEase;\n\n  groups.id = id;\n\n  groups.time = time;\n\n  groups.tween = function(name, tween) {\n    if (arguments.length < 2) return tweens.get(name);\n    if (tween == null) tweens.remove(name);\n    else tweens.set(name, tween);\n    return groups;\n  };\n\n  groups.ease = function(value) {\n    if (!arguments.length) return ease;\n    ease = typeof value === \"function\" ? value : d3.ease.apply(d3, arguments);\n    return groups;\n  };\n\n  groups.each = function(type, listener) {\n    if (arguments.length < 2) return d3_transition_each.call(groups, type);\n    event.on(type, listener);\n    return groups;\n  };\n\n  d3.timer(function(elapsed) {\n    groups.each(function(d, i, j) {\n      var tweened = [],\n          node = this,\n          delay = groups[j][i].delay,\n          duration = groups[j][i].duration,\n          lock = node.__transition__ || (node.__transition__ = {active: 0, count: 0});\n\n      ++lock.count;\n\n      delay <= elapsed ? start(elapsed) : d3.timer(start, delay, time);\n\n      function start(elapsed) {\n        if (lock.active > id) return stop();\n        lock.active = id;\n\n        tweens.forEach(function(key, value) {\n          if (tween = value.call(node, d, i)) {\n            tweened.push(tween);\n          }\n        });\n\n        event.start.call(node, d, i);\n        if (!tick(elapsed)) d3.timer(tick, 0, time);\n        return 1;\n      }\n\n      function tick(elapsed) {\n        if (lock.active !== id) return stop();\n\n        var t = (elapsed - delay) / duration,\n            e = ease(t),\n            n = tweened.length;\n\n        while (n > 0) {\n          tweened[--n].call(node, e);\n        }\n\n        if (t >= 1) {\n          stop();\n          d3_transitionId = id;\n          event.end.call(node, d, i);\n          d3_transitionId = 0;\n          return 1;\n        }\n      }\n\n      function stop() {\n        if (!--lock.count) delete node.__transition__;\n        return 1;\n      }\n    });\n    return 1;\n  }, 0, time);\n\n  return groups;\n}\n\nvar d3_transitionRemove = {};\n\nfunction d3_transitionNull(d, i, a) {\n  return a != \"\" && d3_transitionRemove;\n}\n\nfunction d3_transitionTween(name, b) {\n  var interpolate = d3_interpolateByName(name);\n\n  function transitionFunction(d, i, a) {\n    var v = b.call(this, d, i);\n    return v == null\n        ? a != \"\" && d3_transitionRemove\n        : a != v && interpolate(a, v);\n  }\n\n  function transitionString(d, i, a) {\n    return a != b && interpolate(a, b);\n  }\n\n  return typeof b === \"function\" ? transitionFunction\n      : b == null ? d3_transitionNull\n      : (b += \"\", transitionString);\n}\n\nvar d3_transitionPrototype = [],\n    d3_transitionNextId = 0,\n    d3_transitionId = 0,\n    d3_transitionDefaultDelay = 0,\n    d3_transitionDefaultDuration = 250,\n    d3_transitionDefaultEase = d3.ease(\"cubic-in-out\"),\n    d3_transitionDelay = d3_transitionDefaultDelay,\n    d3_transitionDuration = d3_transitionDefaultDuration,\n    d3_transitionEase = d3_transitionDefaultEase;\n\nd3_transitionPrototype.call = d3_selectionPrototype.call;\n\nd3.transition = function(selection) {\n  return arguments.length\n      ? (d3_transitionId ? selection.transition() : selection)\n      : d3_selectionRoot.transition();\n};\n\nd3.transition.prototype = d3_transitionPrototype;\nd3_transitionPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selector(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if ((node = group[i]) && (subnode = selector.call(node.node, node.node.__data__, i))) {\n        if (\"__data__\" in node.node) subnode.__data__ = node.node.__data__;\n        subgroup.push({node: subnode, delay: node.delay, duration: node.duration});\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_transition(subgroups, this.id, this.time).ease(this.ease());\n};\nd3_transitionPrototype.selectAll = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnodes,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selectorAll(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subnodes = selector.call(node.node, node.node.__data__, i);\n        subgroups.push(subgroup = []);\n        for (var k = -1, o = subnodes.length; ++k < o;) {\n          subgroup.push({node: subnodes[k], delay: node.delay, duration: node.duration});\n        }\n      }\n    }\n  }\n\n  return d3_transition(subgroups, this.id, this.time).ease(this.ease());\n};\nd3_transitionPrototype.attr = function(name, value) {\n  return this.attrTween(name, d3_transitionTween(name, value));\n};\n\nd3_transitionPrototype.attrTween = function(nameNS, tween) {\n  var name = d3.ns.qualify(nameNS);\n\n  function attrTween(d, i) {\n    var f = tween.call(this, d, i, this.getAttribute(name));\n    return f === d3_transitionRemove\n        ? (this.removeAttribute(name), null)\n        : f && function(t) { this.setAttribute(name, f(t)); };\n  }\n\n  function attrTweenNS(d, i) {\n    var f = tween.call(this, d, i, this.getAttributeNS(name.space, name.local));\n    return f === d3_transitionRemove\n        ? (this.removeAttributeNS(name.space, name.local), null)\n        : f && function(t) { this.setAttributeNS(name.space, name.local, f(t)); };\n  }\n\n  return this.tween(\"attr.\" + nameNS, name.local ? attrTweenNS : attrTween);\n};\nd3_transitionPrototype.style = function(name, value, priority) {\n  if (arguments.length < 3) priority = \"\";\n  return this.styleTween(name, d3_transitionTween(name, value), priority);\n};\n\nd3_transitionPrototype.styleTween = function(name, tween, priority) {\n  if (arguments.length < 3) priority = \"\";\n  return this.tween(\"style.\" + name, function(d, i) {\n    var f = tween.call(this, d, i, window.getComputedStyle(this, null).getPropertyValue(name));\n    return f === d3_transitionRemove\n        ? (this.style.removeProperty(name), null)\n        : f && function(t) { this.style.setProperty(name, f(t), priority); };\n  });\n};\nd3_transitionPrototype.text = function(value) {\n  return this.tween(\"text\", function(d, i) {\n    this.textContent = typeof value === \"function\"\n        ? value.call(this, d, i)\n        : value;\n  });\n};\nd3_transitionPrototype.remove = function() {\n  return this.each(\"end.transition\", function() {\n    var p;\n    if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this);\n  });\n};\nd3_transitionPrototype.delay = function(value) {\n  var groups = this;\n  return groups.each(typeof value === \"function\"\n      ? function(d, i, j) { groups[j][i].delay = value.apply(this, arguments) | 0; }\n      : (value = value | 0, function(d, i, j) { groups[j][i].delay = value; }));\n};\nd3_transitionPrototype.duration = function(value) {\n  var groups = this;\n  return groups.each(typeof value === \"function\"\n      ? function(d, i, j) { groups[j][i].duration = Math.max(1, value.apply(this, arguments) | 0); }\n      : (value = Math.max(1, value | 0), function(d, i, j) { groups[j][i].duration = value; }));\n};\nfunction d3_transition_each(callback) {\n  var id = d3_transitionId,\n      ease = d3_transitionEase,\n      delay = d3_transitionDelay,\n      duration = d3_transitionDuration;\n\n  d3_transitionId = this.id;\n  d3_transitionEase = this.ease();\n  for (var j = 0, m = this.length; j < m; j++) {\n    for (var group = this[j], i = 0, n = group.length; i < n; i++) {\n      var node = group[i];\n      if (node) {\n        d3_transitionDelay = this[j][i].delay;\n        d3_transitionDuration = this[j][i].duration;\n        callback.call(node = node.node, node.__data__, i, j);\n      }\n    }\n  }\n\n  d3_transitionId = id;\n  d3_transitionEase = ease;\n  d3_transitionDelay = delay;\n  d3_transitionDuration = duration;\n  return this;\n}\nd3_transitionPrototype.transition = function() {\n  return this.select(d3_this);\n};\nvar d3_timer_queue = null,\n    d3_timer_interval, // is an interval (or frame) active?\n    d3_timer_timeout; // is a timeout active?\n\n// The timer will continue to fire until callback returns true.\nd3.timer = function(callback, delay, then) {\n  var found = false,\n      t0,\n      t1 = d3_timer_queue;\n\n  if (arguments.length < 3) {\n    if (arguments.length < 2) delay = 0;\n    else if (!isFinite(delay)) return;\n    then = Date.now();\n  }\n\n  // See if the callback's already in the queue.\n  while (t1) {\n    if (t1.callback === callback) {\n      t1.then = then;\n      t1.delay = delay;\n      found = true;\n      break;\n    }\n    t0 = t1;\n    t1 = t1.next;\n  }\n\n  // Otherwise, add the callback to the queue.\n  if (!found) d3_timer_queue = {\n    callback: callback,\n    then: then,\n    delay: delay,\n    next: d3_timer_queue\n  };\n\n  // Start animatin'!\n  if (!d3_timer_interval) {\n    d3_timer_timeout = clearTimeout(d3_timer_timeout);\n    d3_timer_interval = 1;\n    d3_timer_frame(d3_timer_step);\n  }\n}\n\nfunction d3_timer_step() {\n  var elapsed,\n      now = Date.now(),\n      t1 = d3_timer_queue;\n\n  while (t1) {\n    elapsed = now - t1.then;\n    if (elapsed >= t1.delay) t1.flush = t1.callback(elapsed);\n    t1 = t1.next;\n  }\n\n  var delay = d3_timer_flush() - now;\n  if (delay > 24) {\n    if (isFinite(delay)) {\n      clearTimeout(d3_timer_timeout);\n      d3_timer_timeout = setTimeout(d3_timer_step, delay);\n    }\n    d3_timer_interval = 0;\n  } else {\n    d3_timer_interval = 1;\n    d3_timer_frame(d3_timer_step);\n  }\n}\n\nd3.timer.flush = function() {\n  var elapsed,\n      now = Date.now(),\n      t1 = d3_timer_queue;\n\n  while (t1) {\n    elapsed = now - t1.then;\n    if (!t1.delay) t1.flush = t1.callback(elapsed);\n    t1 = t1.next;\n  }\n\n  d3_timer_flush();\n};\n\n// Flush after callbacks, to avoid concurrent queue modification.\nfunction d3_timer_flush() {\n  var t0 = null,\n      t1 = d3_timer_queue,\n      then = Infinity;\n  while (t1) {\n    if (t1.flush) {\n      t1 = t0 ? t0.next = t1.next : d3_timer_queue = t1.next;\n    } else {\n      then = Math.min(then, t1.then + t1.delay);\n      t1 = (t0 = t1).next;\n    }\n  }\n  return then;\n}\n\nvar d3_timer_frame = window.requestAnimationFrame\n    || window.webkitRequestAnimationFrame\n    || window.mozRequestAnimationFrame\n    || window.oRequestAnimationFrame\n    || window.msRequestAnimationFrame\n    || function(callback) { setTimeout(callback, 17); };\nd3.transform = function(string) {\n  var g = document.createElementNS(d3.ns.prefix.svg, \"g\"),\n      identity = {a: 1, b: 0, c: 0, d: 1, e: 0, f: 0};\n  return (d3.transform = function(string) {\n    g.setAttribute(\"transform\", string);\n    var t = g.transform.baseVal.consolidate();\n    return new d3_transform(t ? t.matrix : identity);\n  })(string);\n};\n\n// Compute x-scale and normalize the first row.\n// Compute shear and make second row orthogonal to first.\n// Compute y-scale and normalize the second row.\n// Finally, compute the rotation.\nfunction d3_transform(m) {\n  var r0 = [m.a, m.b],\n      r1 = [m.c, m.d],\n      kx = d3_transformNormalize(r0),\n      kz = d3_transformDot(r0, r1),\n      ky = d3_transformNormalize(d3_transformCombine(r1, r0, -kz)) || 0;\n  if (r0[0] * r1[1] < r1[0] * r0[1]) {\n    r0[0] *= -1;\n    r0[1] *= -1;\n    kx *= -1;\n    kz *= -1;\n  }\n  this.rotate = (kx ? Math.atan2(r0[1], r0[0]) : Math.atan2(-r1[0], r1[1])) * d3_transformDegrees;\n  this.translate = [m.e, m.f];\n  this.scale = [kx, ky];\n  this.skew = ky ? Math.atan2(kz, ky) * d3_transformDegrees : 0;\n};\n\nd3_transform.prototype.toString = function() {\n  return \"translate(\" + this.translate\n      + \")rotate(\" + this.rotate\n      + \")skewX(\" + this.skew\n      + \")scale(\" + this.scale\n      + \")\";\n};\n\nfunction d3_transformDot(a, b) {\n  return a[0] * b[0] + a[1] * b[1];\n}\n\nfunction d3_transformNormalize(a) {\n  var k = Math.sqrt(d3_transformDot(a, a));\n  if (k) {\n    a[0] /= k;\n    a[1] /= k;\n  }\n  return k;\n}\n\nfunction d3_transformCombine(a, b, k) {\n  a[0] += k * b[0];\n  a[1] += k * b[1];\n  return a;\n}\n\nvar d3_transformDegrees = 180 / Math.PI;\nd3.mouse = function(container) {\n  return d3_mousePoint(container, d3_eventSource());\n};\n\n// https://bugs.webkit.org/show_bug.cgi?id=44083\nvar d3_mouse_bug44083 = /WebKit/.test(navigator.userAgent) ? -1 : 0;\n\nfunction d3_mousePoint(container, e) {\n  var svg = container.ownerSVGElement || container;\n  if (svg.createSVGPoint) {\n    var point = svg.createSVGPoint();\n    if ((d3_mouse_bug44083 < 0) && (window.scrollX || window.scrollY)) {\n      svg = d3.select(document.body)\n        .append(\"svg\")\n          .style(\"position\", \"absolute\")\n          .style(\"top\", 0)\n          .style(\"left\", 0);\n      var ctm = svg[0][0].getScreenCTM();\n      d3_mouse_bug44083 = !(ctm.f || ctm.e);\n      svg.remove();\n    }\n    if (d3_mouse_bug44083) {\n      point.x = e.pageX;\n      point.y = e.pageY;\n    } else {\n      point.x = e.clientX;\n      point.y = e.clientY;\n    }\n    point = point.matrixTransform(container.getScreenCTM().inverse());\n    return [point.x, point.y];\n  }\n  var rect = container.getBoundingClientRect();\n  return [e.clientX - rect.left - container.clientLeft, e.clientY - rect.top - container.clientTop];\n};\nd3.touches = function(container, touches) {\n  if (arguments.length < 2) touches = d3_eventSource().touches;\n  return touches ? d3_array(touches).map(function(touch) {\n    var point = d3_mousePoint(container, touch);\n    point.identifier = touch.identifier;\n    return point;\n  }) : [];\n};\nfunction d3_noop() {}\nd3.scale = {};\n\nfunction d3_scaleExtent(domain) {\n  var start = domain[0], stop = domain[domain.length - 1];\n  return start < stop ? [start, stop] : [stop, start];\n}\n\nfunction d3_scaleRange(scale) {\n  return scale.rangeExtent ? scale.rangeExtent() : d3_scaleExtent(scale.range());\n}\nfunction d3_scale_nice(domain, nice) {\n  var i0 = 0,\n      i1 = domain.length - 1,\n      x0 = domain[i0],\n      x1 = domain[i1],\n      dx;\n\n  if (x1 < x0) {\n    dx = i0; i0 = i1; i1 = dx;\n    dx = x0; x0 = x1; x1 = dx;\n  }\n\n  if (dx = x1 - x0) {\n    nice = nice(dx);\n    domain[i0] = nice.floor(x0);\n    domain[i1] = nice.ceil(x1);\n  }\n\n  return domain;\n}\n\nfunction d3_scale_niceDefault() {\n  return Math;\n}\nd3.scale.linear = function() {\n  return d3_scale_linear([0, 1], [0, 1], d3.interpolate, false);\n};\n\nfunction d3_scale_linear(domain, range, interpolate, clamp) {\n  var output,\n      input;\n\n  function rescale() {\n    var linear = Math.min(domain.length, range.length) > 2 ? d3_scale_polylinear : d3_scale_bilinear,\n        uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber;\n    output = linear(domain, range, uninterpolate, interpolate);\n    input = linear(range, domain, uninterpolate, d3.interpolate);\n    return scale;\n  }\n\n  function scale(x) {\n    return output(x);\n  }\n\n  // Note: requires range is coercible to number!\n  scale.invert = function(y) {\n    return input(y);\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.map(Number);\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.rangeRound = function(x) {\n    return scale.range(x).interpolate(d3.interpolateRound);\n  };\n\n  scale.clamp = function(x) {\n    if (!arguments.length) return clamp;\n    clamp = x;\n    return rescale();\n  };\n\n  scale.interpolate = function(x) {\n    if (!arguments.length) return interpolate;\n    interpolate = x;\n    return rescale();\n  };\n\n  scale.ticks = function(m) {\n    return d3_scale_linearTicks(domain, m);\n  };\n\n  scale.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(domain, m);\n  };\n\n  scale.nice = function() {\n    d3_scale_nice(domain, d3_scale_linearNice);\n    return rescale();\n  };\n\n  scale.copy = function() {\n    return d3_scale_linear(domain, range, interpolate, clamp);\n  };\n\n  return rescale();\n}\n\nfunction d3_scale_linearRebind(scale, linear) {\n  return d3.rebind(scale, linear, \"range\", \"rangeRound\", \"interpolate\", \"clamp\");\n}\n\nfunction d3_scale_linearNice(dx) {\n  dx = Math.pow(10, Math.round(Math.log(dx) / Math.LN10) - 1);\n  return {\n    floor: function(x) { return Math.floor(x / dx) * dx; },\n    ceil: function(x) { return Math.ceil(x / dx) * dx; }\n  };\n}\n\nfunction d3_scale_linearTickRange(domain, m) {\n  var extent = d3_scaleExtent(domain),\n      span = extent[1] - extent[0],\n      step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)),\n      err = m / span * step;\n\n  // Filter ticks to get closer to the desired count.\n  if (err <= .15) step *= 10;\n  else if (err <= .35) step *= 5;\n  else if (err <= .75) step *= 2;\n\n  // Round start and stop values to step interval.\n  extent[0] = Math.ceil(extent[0] / step) * step;\n  extent[1] = Math.floor(extent[1] / step) * step + step * .5; // inclusive\n  extent[2] = step;\n  return extent;\n}\n\nfunction d3_scale_linearTicks(domain, m) {\n  return d3.range.apply(d3, d3_scale_linearTickRange(domain, m));\n}\n\nfunction d3_scale_linearTickFormat(domain, m) {\n  return d3.format(\",.\" + Math.max(0, -Math.floor(Math.log(d3_scale_linearTickRange(domain, m)[2]) / Math.LN10 + .01)) + \"f\");\n}\nfunction d3_scale_bilinear(domain, range, uninterpolate, interpolate) {\n  var u = uninterpolate(domain[0], domain[1]),\n      i = interpolate(range[0], range[1]);\n  return function(x) {\n    return i(u(x));\n  };\n}\nfunction d3_scale_polylinear(domain, range, uninterpolate, interpolate) {\n  var u = [],\n      i = [],\n      j = 0,\n      k = Math.min(domain.length, range.length) - 1;\n\n  // Handle descending domains.\n  if (domain[k] < domain[0]) {\n    domain = domain.slice().reverse();\n    range = range.slice().reverse();\n  }\n\n  while (++j <= k) {\n    u.push(uninterpolate(domain[j - 1], domain[j]));\n    i.push(interpolate(range[j - 1], range[j]));\n  }\n\n  return function(x) {\n    var j = d3.bisect(domain, x, 1, k) - 1;\n    return i[j](u[j](x));\n  };\n}\nd3.scale.log = function() {\n  return d3_scale_log(d3.scale.linear(), d3_scale_logp);\n};\n\nfunction d3_scale_log(linear, log) {\n  var pow = log.pow;\n\n  function scale(x) {\n    return linear(log(x));\n  }\n\n  scale.invert = function(x) {\n    return pow(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(pow);\n    log = x[0] < 0 ? d3_scale_logn : d3_scale_logp;\n    pow = log.pow;\n    linear.domain(x.map(log));\n    return scale;\n  };\n\n  scale.nice = function() {\n    linear.domain(d3_scale_nice(linear.domain(), d3_scale_niceDefault));\n    return scale;\n  };\n\n  scale.ticks = function() {\n    var extent = d3_scaleExtent(linear.domain()),\n        ticks = [];\n    if (extent.every(isFinite)) {\n      var i = Math.floor(extent[0]),\n          j = Math.ceil(extent[1]),\n          u = pow(extent[0]),\n          v = pow(extent[1]);\n      if (log === d3_scale_logn) {\n        ticks.push(pow(i));\n        for (; i++ < j;) for (var k = 9; k > 0; k--) ticks.push(pow(i) * k);\n      } else {\n        for (; i < j; i++) for (var k = 1; k < 10; k++) ticks.push(pow(i) * k);\n        ticks.push(pow(i));\n      }\n      for (i = 0; ticks[i] < u; i++) {} // strip small values\n      for (j = ticks.length; ticks[j - 1] > v; j--) {} // strip big values\n      ticks = ticks.slice(i, j);\n    }\n    return ticks;\n  };\n\n  scale.tickFormat = function(n, format) {\n    if (arguments.length < 2) format = d3_scale_logFormat;\n    if (arguments.length < 1) return format;\n    var k = n / scale.ticks().length,\n        f = log === d3_scale_logn ? (e = -1e-12, Math.floor) : (e = 1e-12, Math.ceil),\n        e;\n    return function(d) {\n      return d / pow(f(log(d) + e)) < k ? format(d) : \"\";\n    };\n  };\n\n  scale.copy = function() {\n    return d3_scale_log(linear.copy(), log);\n  };\n\n  return d3_scale_linearRebind(scale, linear);\n}\n\nvar d3_scale_logFormat = d3.format(\".0e\");\n\nfunction d3_scale_logp(x) {\n  return Math.log(x < 0 ? 0 : x) / Math.LN10;\n}\n\nfunction d3_scale_logn(x) {\n  return -Math.log(x > 0 ? 0 : -x) / Math.LN10;\n}\n\nd3_scale_logp.pow = function(x) {\n  return Math.pow(10, x);\n};\n\nd3_scale_logn.pow = function(x) {\n  return -Math.pow(10, -x);\n};\nd3.scale.pow = function() {\n  return d3_scale_pow(d3.scale.linear(), 1);\n};\n\nfunction d3_scale_pow(linear, exponent) {\n  var powp = d3_scale_powPow(exponent),\n      powb = d3_scale_powPow(1 / exponent);\n\n  function scale(x) {\n    return linear(powp(x));\n  }\n\n  scale.invert = function(x) {\n    return powb(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(powb);\n    linear.domain(x.map(powp));\n    return scale;\n  };\n\n  scale.ticks = function(m) {\n    return d3_scale_linearTicks(scale.domain(), m);\n  };\n\n  scale.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(scale.domain(), m);\n  };\n\n  scale.nice = function() {\n    return scale.domain(d3_scale_nice(scale.domain(), d3_scale_linearNice));\n  };\n\n  scale.exponent = function(x) {\n    if (!arguments.length) return exponent;\n    var domain = scale.domain();\n    powp = d3_scale_powPow(exponent = x);\n    powb = d3_scale_powPow(1 / exponent);\n    return scale.domain(domain);\n  };\n\n  scale.copy = function() {\n    return d3_scale_pow(linear.copy(), exponent);\n  };\n\n  return d3_scale_linearRebind(scale, linear);\n}\n\nfunction d3_scale_powPow(e) {\n  return function(x) {\n    return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e);\n  };\n}\nd3.scale.sqrt = function() {\n  return d3.scale.pow().exponent(.5);\n};\nd3.scale.ordinal = function() {\n  return d3_scale_ordinal([], {t: \"range\", x: []});\n};\n\nfunction d3_scale_ordinal(domain, ranger) {\n  var index,\n      range,\n      rangeBand;\n\n  function scale(x) {\n    return range[((index.get(x) || index.set(x, domain.push(x))) - 1) % range.length];\n  }\n\n  function steps(start, step) {\n    return d3.range(domain.length).map(function(i) { return start + step * i; });\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = [];\n    index = new d3_Map;\n    var i = -1, n = x.length, xi;\n    while (++i < n) if (!index.has(xi = x[i])) index.set(xi, domain.push(xi));\n    return scale[ranger.t](ranger.x, ranger.p);\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    rangeBand = 0;\n    ranger = {t: \"range\", x: x};\n    return scale;\n  };\n\n  scale.rangePoints = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var start = x[0],\n        stop = x[1],\n        step = (stop - start) / (domain.length - 1 + padding);\n    range = steps(domain.length < 2 ? (start + stop) / 2 : start + step * padding / 2, step);\n    rangeBand = 0;\n    ranger = {t: \"rangePoints\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeBands = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var reverse = x[1] < x[0],\n        start = x[reverse - 0],\n        stop = x[1 - reverse],\n        step = (stop - start) / (domain.length + padding);\n    range = steps(start + step * padding, step);\n    if (reverse) range.reverse();\n    rangeBand = step * (1 - padding);\n    ranger = {t: \"rangeBands\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeRoundBands = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var reverse = x[1] < x[0],\n        start = x[reverse - 0],\n        stop = x[1 - reverse],\n        step = Math.floor((stop - start) / (domain.length + padding)),\n        error = stop - start - (domain.length - padding) * step;\n    range = steps(start + Math.round(error / 2), step);\n    if (reverse) range.reverse();\n    rangeBand = Math.round(step * (1 - padding));\n    ranger = {t: \"rangeRoundBands\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeBand = function() {\n    return rangeBand;\n  };\n\n  scale.rangeExtent = function() {\n    return d3_scaleExtent(ranger.x);\n  };\n\n  scale.copy = function() {\n    return d3_scale_ordinal(domain, ranger);\n  };\n\n  return scale.domain(domain);\n}\n/*\n * This product includes color specifications and designs developed by Cynthia\n * Brewer (http://colorbrewer.org/). See lib/colorbrewer for more information.\n */\n\nd3.scale.category10 = function() {\n  return d3.scale.ordinal().range(d3_category10);\n};\n\nd3.scale.category20 = function() {\n  return d3.scale.ordinal().range(d3_category20);\n};\n\nd3.scale.category20b = function() {\n  return d3.scale.ordinal().range(d3_category20b);\n};\n\nd3.scale.category20c = function() {\n  return d3.scale.ordinal().range(d3_category20c);\n};\n\nvar d3_category10 = [\n  \"#1f77b4\", \"#ff7f0e\", \"#2ca02c\", \"#d62728\", \"#9467bd\",\n  \"#8c564b\", \"#e377c2\", \"#7f7f7f\", \"#bcbd22\", \"#17becf\"\n];\n\nvar d3_category20 = [\n  \"#1f77b4\", \"#aec7e8\",\n  \"#ff7f0e\", \"#ffbb78\",\n  \"#2ca02c\", \"#98df8a\",\n  \"#d62728\", \"#ff9896\",\n  \"#9467bd\", \"#c5b0d5\",\n  \"#8c564b\", \"#c49c94\",\n  \"#e377c2\", \"#f7b6d2\",\n  \"#7f7f7f\", \"#c7c7c7\",\n  \"#bcbd22\", \"#dbdb8d\",\n  \"#17becf\", \"#9edae5\"\n];\n\nvar d3_category20b = [\n  \"#393b79\", \"#5254a3\", \"#6b6ecf\", \"#9c9ede\",\n  \"#637939\", \"#8ca252\", \"#b5cf6b\", \"#cedb9c\",\n  \"#8c6d31\", \"#bd9e39\", \"#e7ba52\", \"#e7cb94\",\n  \"#843c39\", \"#ad494a\", \"#d6616b\", \"#e7969c\",\n  \"#7b4173\", \"#a55194\", \"#ce6dbd\", \"#de9ed6\"\n];\n\nvar d3_category20c = [\n  \"#3182bd\", \"#6baed6\", \"#9ecae1\", \"#c6dbef\",\n  \"#e6550d\", \"#fd8d3c\", \"#fdae6b\", \"#fdd0a2\",\n  \"#31a354\", \"#74c476\", \"#a1d99b\", \"#c7e9c0\",\n  \"#756bb1\", \"#9e9ac8\", \"#bcbddc\", \"#dadaeb\",\n  \"#636363\", \"#969696\", \"#bdbdbd\", \"#d9d9d9\"\n];\nd3.scale.quantile = function() {\n  return d3_scale_quantile([], []);\n};\n\nfunction d3_scale_quantile(domain, range) {\n  var thresholds;\n\n  function rescale() {\n    var k = 0,\n        n = domain.length,\n        q = range.length;\n    thresholds = [];\n    while (++k < q) thresholds[k - 1] = d3.quantile(domain, k / q);\n    return scale;\n  }\n\n  function scale(x) {\n    if (isNaN(x = +x)) return NaN;\n    return range[d3.bisect(thresholds, x)];\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.filter(function(d) { return !isNaN(d); }).sort(d3.ascending);\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.quantiles = function() {\n    return thresholds;\n  };\n\n  scale.copy = function() {\n    return d3_scale_quantile(domain, range); // copy on write!\n  };\n\n  return rescale();\n}\nd3.scale.quantize = function() {\n  return d3_scale_quantize(0, 1, [0, 1]);\n};\n\nfunction d3_scale_quantize(x0, x1, range) {\n  var kx, i;\n\n  function scale(x) {\n    return range[Math.max(0, Math.min(i, Math.floor(kx * (x - x0))))];\n  }\n\n  function rescale() {\n    kx = range.length / (x1 - x0);\n    i = range.length - 1;\n    return scale;\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return [x0, x1];\n    x0 = +x[0];\n    x1 = +x[x.length - 1];\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.copy = function() {\n    return d3_scale_quantize(x0, x1, range); // copy on write\n  };\n\n  return rescale();\n}\nd3.scale.identity = function() {\n  return d3_scale_identity([0, 1]);\n};\n\nfunction d3_scale_identity(domain) {\n\n  function identity(x) { return +x; }\n\n  identity.invert = identity;\n\n  identity.domain = identity.range = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.map(identity);\n    return identity;\n  };\n\n  identity.ticks = function(m) {\n    return d3_scale_linearTicks(domain, m);\n  };\n\n  identity.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(domain, m);\n  };\n\n  identity.copy = function() {\n    return d3_scale_identity(domain);\n  };\n\n  return identity;\n}\nd3.svg = {};\nd3.svg.arc = function() {\n  var innerRadius = d3_svg_arcInnerRadius,\n      outerRadius = d3_svg_arcOuterRadius,\n      startAngle = d3_svg_arcStartAngle,\n      endAngle = d3_svg_arcEndAngle;\n\n  function arc() {\n    var r0 = innerRadius.apply(this, arguments),\n        r1 = outerRadius.apply(this, arguments),\n        a0 = startAngle.apply(this, arguments) + d3_svg_arcOffset,\n        a1 = endAngle.apply(this, arguments) + d3_svg_arcOffset,\n        da = (a1 < a0 && (da = a0, a0 = a1, a1 = da), a1 - a0),\n        df = da < Math.PI ? \"0\" : \"1\",\n        c0 = Math.cos(a0),\n        s0 = Math.sin(a0),\n        c1 = Math.cos(a1),\n        s1 = Math.sin(a1);\n    return da >= d3_svg_arcMax\n      ? (r0\n      ? \"M0,\" + r1\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + (-r1)\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + r1\n      + \"M0,\" + r0\n      + \"A\" + r0 + \",\" + r0 + \" 0 1,0 0,\" + (-r0)\n      + \"A\" + r0 + \",\" + r0 + \" 0 1,0 0,\" + r0\n      + \"Z\"\n      : \"M0,\" + r1\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + (-r1)\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + r1\n      + \"Z\")\n      : (r0\n      ? \"M\" + r1 * c0 + \",\" + r1 * s0\n      + \"A\" + r1 + \",\" + r1 + \" 0 \" + df + \",1 \" + r1 * c1 + \",\" + r1 * s1\n      + \"L\" + r0 * c1 + \",\" + r0 * s1\n      + \"A\" + r0 + \",\" + r0 + \" 0 \" + df + \",0 \" + r0 * c0 + \",\" + r0 * s0\n      + \"Z\"\n      : \"M\" + r1 * c0 + \",\" + r1 * s0\n      + \"A\" + r1 + \",\" + r1 + \" 0 \" + df + \",1 \" + r1 * c1 + \",\" + r1 * s1\n      + \"L0,0\"\n      + \"Z\");\n  }\n\n  arc.innerRadius = function(v) {\n    if (!arguments.length) return innerRadius;\n    innerRadius = d3.functor(v);\n    return arc;\n  };\n\n  arc.outerRadius = function(v) {\n    if (!arguments.length) return outerRadius;\n    outerRadius = d3.functor(v);\n    return arc;\n  };\n\n  arc.startAngle = function(v) {\n    if (!arguments.length) return startAngle;\n    startAngle = d3.functor(v);\n    return arc;\n  };\n\n  arc.endAngle = function(v) {\n    if (!arguments.length) return endAngle;\n    endAngle = d3.functor(v);\n    return arc;\n  };\n\n  arc.centroid = function() {\n    var r = (innerRadius.apply(this, arguments)\n        + outerRadius.apply(this, arguments)) / 2,\n        a = (startAngle.apply(this, arguments)\n        + endAngle.apply(this, arguments)) / 2 + d3_svg_arcOffset;\n    return [Math.cos(a) * r, Math.sin(a) * r];\n  };\n\n  return arc;\n};\n\nvar d3_svg_arcOffset = -Math.PI / 2,\n    d3_svg_arcMax = 2 * Math.PI - 1e-6;\n\nfunction d3_svg_arcInnerRadius(d) {\n  return d.innerRadius;\n}\n\nfunction d3_svg_arcOuterRadius(d) {\n  return d.outerRadius;\n}\n\nfunction d3_svg_arcStartAngle(d) {\n  return d.startAngle;\n}\n\nfunction d3_svg_arcEndAngle(d) {\n  return d.endAngle;\n}\nfunction d3_svg_line(projection) {\n  var x = d3_svg_lineX,\n      y = d3_svg_lineY,\n      interpolate = d3_svg_lineInterpolatorDefault,\n      interpolator = d3_svg_lineInterpolators.get(interpolate),\n      tension = .7;\n\n  function line(d) {\n    return d.length < 1 ? null : \"M\" + interpolator(projection(d3_svg_linePoints(this, d, x, y)), tension);\n  }\n\n  line.x = function(v) {\n    if (!arguments.length) return x;\n    x = v;\n    return line;\n  };\n\n  line.y = function(v) {\n    if (!arguments.length) return y;\n    y = v;\n    return line;\n  };\n\n  line.interpolate = function(v) {\n    if (!arguments.length) return interpolate;\n    if (!d3_svg_lineInterpolators.has(v += \"\")) v = d3_svg_lineInterpolatorDefault;\n    interpolator = d3_svg_lineInterpolators.get(interpolate = v);\n    return line;\n  };\n\n  line.tension = function(v) {\n    if (!arguments.length) return tension;\n    tension = v;\n    return line;\n  };\n\n  return line;\n}\n\nd3.svg.line = function() {\n  return d3_svg_line(Object);\n};\n\n// Converts the specified array of data into an array of points\n// (x-y tuples), by evaluating the specified `x` and `y` functions on each\n// data point. The `this` context of the evaluated functions is the specified\n// \"self\" object; each function is passed the current datum and index.\nfunction d3_svg_linePoints(self, d, x, y) {\n  var points = [],\n      i = -1,\n      n = d.length,\n      fx = typeof x === \"function\",\n      fy = typeof y === \"function\",\n      value;\n  if (fx && fy) {\n    while (++i < n) points.push([\n      x.call(self, value = d[i], i),\n      y.call(self, value, i)\n    ]);\n  } else if (fx) {\n    while (++i < n) points.push([x.call(self, d[i], i), y]);\n  } else if (fy) {\n    while (++i < n) points.push([x, y.call(self, d[i], i)]);\n  } else {\n    while (++i < n) points.push([x, y]);\n  }\n  return points;\n}\n\n// The default `x` property, which references d[0].\nfunction d3_svg_lineX(d) {\n  return d[0];\n}\n\n// The default `y` property, which references d[1].\nfunction d3_svg_lineY(d) {\n  return d[1];\n}\n\nvar d3_svg_lineInterpolatorDefault = \"linear\";\n\n// The various interpolators supported by the `line` class.\nvar d3_svg_lineInterpolators = d3.map({\n  \"linear\": d3_svg_lineLinear,\n  \"step-before\": d3_svg_lineStepBefore,\n  \"step-after\": d3_svg_lineStepAfter,\n  \"basis\": d3_svg_lineBasis,\n  \"basis-open\": d3_svg_lineBasisOpen,\n  \"basis-closed\": d3_svg_lineBasisClosed,\n  \"bundle\": d3_svg_lineBundle,\n  \"cardinal\": d3_svg_lineCardinal,\n  \"cardinal-open\": d3_svg_lineCardinalOpen,\n  \"cardinal-closed\": d3_svg_lineCardinalClosed,\n  \"monotone\": d3_svg_lineMonotone\n});\n\n// Linear interpolation; generates \"L\" commands.\nfunction d3_svg_lineLinear(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"L\", (p = points[i])[0], \",\", p[1]);\n  return path.join(\"\");\n}\n\n// Step interpolation; generates \"H\" and \"V\" commands.\nfunction d3_svg_lineStepBefore(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"V\", (p = points[i])[1], \"H\", p[0]);\n  return path.join(\"\");\n}\n\n// Step interpolation; generates \"H\" and \"V\" commands.\nfunction d3_svg_lineStepAfter(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"H\", (p = points[i])[0], \"V\", p[1]);\n  return path.join(\"\");\n}\n\n// Open cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinalOpen(points, tension) {\n  return points.length < 4\n      ? d3_svg_lineLinear(points)\n      : points[1] + d3_svg_lineHermite(points.slice(1, points.length - 1),\n        d3_svg_lineCardinalTangents(points, tension));\n}\n\n// Closed cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinalClosed(points, tension) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] + d3_svg_lineHermite((points.push(points[0]), points),\n        d3_svg_lineCardinalTangents([points[points.length - 2]]\n        .concat(points, [points[1]]), tension));\n}\n\n// Cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinal(points, tension, closed) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] + d3_svg_lineHermite(points,\n        d3_svg_lineCardinalTangents(points, tension));\n}\n\n// Hermite spline construction; generates \"C\" commands.\nfunction d3_svg_lineHermite(points, tangents) {\n  if (tangents.length < 1\n      || (points.length != tangents.length\n      && points.length != tangents.length + 2)) {\n    return d3_svg_lineLinear(points);\n  }\n\n  var quad = points.length != tangents.length,\n      path = \"\",\n      p0 = points[0],\n      p = points[1],\n      t0 = tangents[0],\n      t = t0,\n      pi = 1;\n\n  if (quad) {\n    path += \"Q\" + (p[0] - t0[0] * 2 / 3) + \",\" + (p[1] - t0[1] * 2 / 3)\n        + \",\" + p[0] + \",\" + p[1];\n    p0 = points[1];\n    pi = 2;\n  }\n\n  if (tangents.length > 1) {\n    t = tangents[1];\n    p = points[pi];\n    pi++;\n    path += \"C\" + (p0[0] + t0[0]) + \",\" + (p0[1] + t0[1])\n        + \",\" + (p[0] - t[0]) + \",\" + (p[1] - t[1])\n        + \",\" + p[0] + \",\" + p[1];\n    for (var i = 2; i < tangents.length; i++, pi++) {\n      p = points[pi];\n      t = tangents[i];\n      path += \"S\" + (p[0] - t[0]) + \",\" + (p[1] - t[1])\n          + \",\" + p[0] + \",\" + p[1];\n    }\n  }\n\n  if (quad) {\n    var lp = points[pi];\n    path += \"Q\" + (p[0] + t[0] * 2 / 3) + \",\" + (p[1] + t[1] * 2 / 3)\n        + \",\" + lp[0] + \",\" + lp[1];\n  }\n\n  return path;\n}\n\n// Generates tangents for a cardinal spline.\nfunction d3_svg_lineCardinalTangents(points, tension) {\n  var tangents = [],\n      a = (1 - tension) / 2,\n      p0,\n      p1 = points[0],\n      p2 = points[1],\n      i = 1,\n      n = points.length;\n  while (++i < n) {\n    p0 = p1;\n    p1 = p2;\n    p2 = points[i];\n    tangents.push([a * (p2[0] - p0[0]), a * (p2[1] - p0[1])]);\n  }\n  return tangents;\n}\n\n// B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasis(points) {\n  if (points.length < 3) return d3_svg_lineLinear(points);\n  var i = 1,\n      n = points.length,\n      pi = points[0],\n      x0 = pi[0],\n      y0 = pi[1],\n      px = [x0, x0, x0, (pi = points[1])[0]],\n      py = [y0, y0, y0, pi[1]],\n      path = [x0, \",\", y0];\n  d3_svg_lineBasisBezier(path, px, py);\n  while (++i < n) {\n    pi = points[i];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  i = -1;\n  while (++i < 2) {\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\n// Open B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasisOpen(points) {\n  if (points.length < 4) return d3_svg_lineLinear(points);\n  var path = [],\n      i = -1,\n      n = points.length,\n      pi,\n      px = [0],\n      py = [0];\n  while (++i < 3) {\n    pi = points[i];\n    px.push(pi[0]);\n    py.push(pi[1]);\n  }\n  path.push(d3_svg_lineDot4(d3_svg_lineBasisBezier3, px)\n    + \",\" + d3_svg_lineDot4(d3_svg_lineBasisBezier3, py));\n  --i; while (++i < n) {\n    pi = points[i];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\n// Closed B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasisClosed(points) {\n  var path,\n      i = -1,\n      n = points.length,\n      m = n + 4,\n      pi,\n      px = [],\n      py = [];\n  while (++i < 4) {\n    pi = points[i % n];\n    px.push(pi[0]);\n    py.push(pi[1]);\n  }\n  path = [\n    d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), \",\",\n    d3_svg_lineDot4(d3_svg_lineBasisBezier3, py)\n  ];\n  --i; while (++i < m) {\n    pi = points[i % n];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\nfunction d3_svg_lineBundle(points, tension) {\n  var n = points.length - 1,\n      x0 = points[0][0],\n      y0 = points[0][1],\n      dx = points[n][0] - x0,\n      dy = points[n][1] - y0,\n      i = -1,\n      p,\n      t;\n  while (++i <= n) {\n    p = points[i];\n    t = i / n;\n    p[0] = tension * p[0] + (1 - tension) * (x0 + t * dx);\n    p[1] = tension * p[1] + (1 - tension) * (y0 + t * dy);\n  }\n  return d3_svg_lineBasis(points);\n}\n\n// Returns the dot product of the given four-element vectors.\nfunction d3_svg_lineDot4(a, b) {\n  return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3];\n}\n\n// Matrix to transform basis (b-spline) control points to bezier\n// control points. Derived from FvD 11.2.8.\nvar d3_svg_lineBasisBezier1 = [0, 2/3, 1/3, 0],\n    d3_svg_lineBasisBezier2 = [0, 1/3, 2/3, 0],\n    d3_svg_lineBasisBezier3 = [0, 1/6, 2/3, 1/6];\n\n// Pushes a \"C\" Bézier curve onto the specified path array, given the\n// two specified four-element arrays which define the control points.\nfunction d3_svg_lineBasisBezier(path, x, y) {\n  path.push(\n      \"C\", d3_svg_lineDot4(d3_svg_lineBasisBezier1, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier1, y),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier2, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier2, y),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier3, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier3, y));\n}\n\n// Computes the slope from points p0 to p1.\nfunction d3_svg_lineSlope(p0, p1) {\n  return (p1[1] - p0[1]) / (p1[0] - p0[0]);\n}\n\n// Compute three-point differences for the given points.\n// http://en.wikipedia.org/wiki/Cubic_Hermite_spline#Finite_difference\nfunction d3_svg_lineFiniteDifferences(points) {\n  var i = 0,\n      j = points.length - 1,\n      m = [],\n      p0 = points[0],\n      p1 = points[1],\n      d = m[0] = d3_svg_lineSlope(p0, p1);\n  while (++i < j) {\n    m[i] = d + (d = d3_svg_lineSlope(p0 = p1, p1 = points[i + 1]));\n  }\n  m[i] = d;\n  return m;\n}\n\n// Interpolates the given points using Fritsch-Carlson Monotone cubic Hermite\n// interpolation. Returns an array of tangent vectors. For details, see\n// http://en.wikipedia.org/wiki/Monotone_cubic_interpolation\nfunction d3_svg_lineMonotoneTangents(points) {\n  var tangents = [],\n      d,\n      a,\n      b,\n      s,\n      m = d3_svg_lineFiniteDifferences(points),\n      i = -1,\n      j = points.length - 1;\n\n  // The first two steps are done by computing finite-differences:\n  // 1. Compute the slopes of the secant lines between successive points.\n  // 2. Initialize the tangents at every point as the average of the secants.\n\n  // Then, for each segment…\n  while (++i < j) {\n    d = d3_svg_lineSlope(points[i], points[i + 1]);\n\n    // 3. If two successive yk = y{k + 1} are equal (i.e., d is zero), then set\n    // mk = m{k + 1} = 0 as the spline connecting these points must be flat to\n    // preserve monotonicity. Ignore step 4 and 5 for those k.\n\n    if (Math.abs(d) < 1e-6) {\n      m[i] = m[i + 1] = 0;\n    } else {\n      // 4. Let ak = mk / dk and bk = m{k + 1} / dk.\n      a = m[i] / d;\n      b = m[i + 1] / d;\n\n      // 5. Prevent overshoot and ensure monotonicity by restricting the\n      // magnitude of vector <ak, bk> to a circle of radius 3.\n      s = a * a + b * b;\n      if (s > 9) {\n        s = d * 3 / Math.sqrt(s);\n        m[i] = s * a;\n        m[i + 1] = s * b;\n      }\n    }\n  }\n\n  // Compute the normalized tangent vector from the slopes. Note that if x is\n  // not monotonic, it's possible that the slope will be infinite, so we protect\n  // against NaN by setting the coordinate to zero.\n  i = -1; while (++i <= j) {\n    s = (points[Math.min(j, i + 1)][0] - points[Math.max(0, i - 1)][0])\n      / (6 * (1 + m[i] * m[i]));\n    tangents.push([s || 0, m[i] * s || 0]);\n  }\n\n  return tangents;\n}\n\nfunction d3_svg_lineMonotone(points) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] +\n        d3_svg_lineHermite(points, d3_svg_lineMonotoneTangents(points));\n}\nd3.svg.line.radial = function() {\n  var line = d3_svg_line(d3_svg_lineRadial);\n  line.radius = line.x, delete line.x;\n  line.angle = line.y, delete line.y;\n  return line;\n};\n\nfunction d3_svg_lineRadial(points) {\n  var point,\n      i = -1,\n      n = points.length,\n      r,\n      a;\n  while (++i < n) {\n    point = points[i];\n    r = point[0];\n    a = point[1] + d3_svg_arcOffset;\n    point[0] = r * Math.cos(a);\n    point[1] = r * Math.sin(a);\n  }\n  return points;\n}\nfunction d3_svg_area(projection) {\n  var x0 = d3_svg_lineX,\n      x1 = d3_svg_lineX,\n      y0 = 0,\n      y1 = d3_svg_lineY,\n      interpolate,\n      i0,\n      i1,\n      tension = .7;\n\n  function area(d) {\n    if (d.length < 1) return null;\n    var points0 = d3_svg_linePoints(this, d, x0, y0),\n        points1 = d3_svg_linePoints(this, d, x0 === x1 ? d3_svg_areaX(points0) : x1, y0 === y1 ? d3_svg_areaY(points0) : y1);\n    return \"M\" + i0(projection(points1), tension)\n         + \"L\" + i1(projection(points0.reverse()), tension)\n         + \"Z\";\n  }\n\n  area.x = function(x) {\n    if (!arguments.length) return x1;\n    x0 = x1 = x;\n    return area;\n  };\n\n  area.x0 = function(x) {\n    if (!arguments.length) return x0;\n    x0 = x;\n    return area;\n  };\n\n  area.x1 = function(x) {\n    if (!arguments.length) return x1;\n    x1 = x;\n    return area;\n  };\n\n  area.y = function(y) {\n    if (!arguments.length) return y1;\n    y0 = y1 = y;\n    return area;\n  };\n\n  area.y0 = function(y) {\n    if (!arguments.length) return y0;\n    y0 = y;\n    return area;\n  };\n\n  area.y1 = function(y) {\n    if (!arguments.length) return y1;\n    y1 = y;\n    return area;\n  };\n\n  area.interpolate = function(x) {\n    if (!arguments.length) return interpolate;\n    if (!d3_svg_lineInterpolators.has(x += \"\")) x = d3_svg_lineInterpolatorDefault;\n    i0 = d3_svg_lineInterpolators.get(interpolate = x);\n    i1 = i0.reverse || i0;\n    return area;\n  };\n\n  area.tension = function(x) {\n    if (!arguments.length) return tension;\n    tension = x;\n    return area;\n  };\n\n  return area.interpolate(\"linear\");\n}\n\nd3_svg_lineStepBefore.reverse = d3_svg_lineStepAfter;\nd3_svg_lineStepAfter.reverse = d3_svg_lineStepBefore;\n\nd3.svg.area = function() {\n  return d3_svg_area(Object);\n};\n\nfunction d3_svg_areaX(points) {\n  return function(d, i) {\n    return points[i][0];\n  };\n}\n\nfunction d3_svg_areaY(points) {\n  return function(d, i) {\n    return points[i][1];\n  };\n}\nd3.svg.area.radial = function() {\n  var area = d3_svg_area(d3_svg_lineRadial);\n  area.radius = area.x, delete area.x;\n  area.innerRadius = area.x0, delete area.x0;\n  area.outerRadius = area.x1, delete area.x1;\n  area.angle = area.y, delete area.y;\n  area.startAngle = area.y0, delete area.y0;\n  area.endAngle = area.y1, delete area.y1;\n  return area;\n};\nd3.svg.chord = function() {\n  var source = d3_svg_chordSource,\n      target = d3_svg_chordTarget,\n      radius = d3_svg_chordRadius,\n      startAngle = d3_svg_arcStartAngle,\n      endAngle = d3_svg_arcEndAngle;\n\n  // TODO Allow control point to be customized.\n\n  function chord(d, i) {\n    var s = subgroup(this, source, d, i),\n        t = subgroup(this, target, d, i);\n    return \"M\" + s.p0\n      + arc(s.r, s.p1, s.a1 - s.a0) + (equals(s, t)\n      ? curve(s.r, s.p1, s.r, s.p0)\n      : curve(s.r, s.p1, t.r, t.p0)\n      + arc(t.r, t.p1, t.a1 - t.a0)\n      + curve(t.r, t.p1, s.r, s.p0))\n      + \"Z\";\n  }\n\n  function subgroup(self, f, d, i) {\n    var subgroup = f.call(self, d, i),\n        r = radius.call(self, subgroup, i),\n        a0 = startAngle.call(self, subgroup, i) + d3_svg_arcOffset,\n        a1 = endAngle.call(self, subgroup, i) + d3_svg_arcOffset;\n    return {\n      r: r,\n      a0: a0,\n      a1: a1,\n      p0: [r * Math.cos(a0), r * Math.sin(a0)],\n      p1: [r * Math.cos(a1), r * Math.sin(a1)]\n    };\n  }\n\n  function equals(a, b) {\n    return a.a0 == b.a0 && a.a1 == b.a1;\n  }\n\n  function arc(r, p, a) {\n    return \"A\" + r + \",\" + r + \" 0 \" + +(a > Math.PI) + \",1 \" + p;\n  }\n\n  function curve(r0, p0, r1, p1) {\n    return \"Q 0,0 \" + p1;\n  }\n\n  chord.radius = function(v) {\n    if (!arguments.length) return radius;\n    radius = d3.functor(v);\n    return chord;\n  };\n\n  chord.source = function(v) {\n    if (!arguments.length) return source;\n    source = d3.functor(v);\n    return chord;\n  };\n\n  chord.target = function(v) {\n    if (!arguments.length) return target;\n    target = d3.functor(v);\n    return chord;\n  };\n\n  chord.startAngle = function(v) {\n    if (!arguments.length) return startAngle;\n    startAngle = d3.functor(v);\n    return chord;\n  };\n\n  chord.endAngle = function(v) {\n    if (!arguments.length) return endAngle;\n    endAngle = d3.functor(v);\n    return chord;\n  };\n\n  return chord;\n};\n\nfunction d3_svg_chordSource(d) {\n  return d.source;\n}\n\nfunction d3_svg_chordTarget(d) {\n  return d.target;\n}\n\nfunction d3_svg_chordRadius(d) {\n  return d.radius;\n}\n\nfunction d3_svg_chordStartAngle(d) {\n  return d.startAngle;\n}\n\nfunction d3_svg_chordEndAngle(d) {\n  return d.endAngle;\n}\nd3.svg.diagonal = function() {\n  var source = d3_svg_chordSource,\n      target = d3_svg_chordTarget,\n      projection = d3_svg_diagonalProjection;\n\n  function diagonal(d, i) {\n    var p0 = source.call(this, d, i),\n        p3 = target.call(this, d, i),\n        m = (p0.y + p3.y) / 2,\n        p = [p0, {x: p0.x, y: m}, {x: p3.x, y: m}, p3];\n    p = p.map(projection);\n    return \"M\" + p[0] + \"C\" + p[1] + \" \" + p[2] + \" \" + p[3];\n  }\n\n  diagonal.source = function(x) {\n    if (!arguments.length) return source;\n    source = d3.functor(x);\n    return diagonal;\n  };\n\n  diagonal.target = function(x) {\n    if (!arguments.length) return target;\n    target = d3.functor(x);\n    return diagonal;\n  };\n\n  diagonal.projection = function(x) {\n    if (!arguments.length) return projection;\n    projection = x;\n    return diagonal;\n  };\n\n  return diagonal;\n};\n\nfunction d3_svg_diagonalProjection(d) {\n  return [d.x, d.y];\n}\nd3.svg.diagonal.radial = function() {\n  var diagonal = d3.svg.diagonal(),\n      projection = d3_svg_diagonalProjection,\n      projection_ = diagonal.projection;\n\n  diagonal.projection = function(x) {\n    return arguments.length\n        ? projection_(d3_svg_diagonalRadialProjection(projection = x))\n        : projection;\n  };\n\n  return diagonal;\n};\n\nfunction d3_svg_diagonalRadialProjection(projection) {\n  return function() {\n    var d = projection.apply(this, arguments),\n        r = d[0],\n        a = d[1] + d3_svg_arcOffset;\n    return [r * Math.cos(a), r * Math.sin(a)];\n  };\n}\nd3.svg.mouse = d3.mouse;\nd3.svg.touches = d3.touches;\nd3.svg.symbol = function() {\n  var type = d3_svg_symbolType,\n      size = d3_svg_symbolSize;\n\n  function symbol(d, i) {\n    return (d3_svg_symbols.get(type.call(this, d, i))\n        || d3_svg_symbolCircle)\n        (size.call(this, d, i));\n  }\n\n  symbol.type = function(x) {\n    if (!arguments.length) return type;\n    type = d3.functor(x);\n    return symbol;\n  };\n\n  // size of symbol in square pixels\n  symbol.size = function(x) {\n    if (!arguments.length) return size;\n    size = d3.functor(x);\n    return symbol;\n  };\n\n  return symbol;\n};\n\nfunction d3_svg_symbolSize() {\n  return 64;\n}\n\nfunction d3_svg_symbolType() {\n  return \"circle\";\n}\n\nfunction d3_svg_symbolCircle(size) {\n  var r = Math.sqrt(size / Math.PI);\n  return \"M0,\" + r\n      + \"A\" + r + \",\" + r + \" 0 1,1 0,\" + (-r)\n      + \"A\" + r + \",\" + r + \" 0 1,1 0,\" + r\n      + \"Z\";\n}\n\n// TODO cross-diagonal?\nvar d3_svg_symbols = d3.map({\n  \"circle\": d3_svg_symbolCircle,\n  \"cross\": function(size) {\n    var r = Math.sqrt(size / 5) / 2;\n    return \"M\" + -3 * r + \",\" + -r\n        + \"H\" + -r\n        + \"V\" + -3 * r\n        + \"H\" + r\n        + \"V\" + -r\n        + \"H\" + 3 * r\n        + \"V\" + r\n        + \"H\" + r\n        + \"V\" + 3 * r\n        + \"H\" + -r\n        + \"V\" + r\n        + \"H\" + -3 * r\n        + \"Z\";\n  },\n  \"diamond\": function(size) {\n    var ry = Math.sqrt(size / (2 * d3_svg_symbolTan30)),\n        rx = ry * d3_svg_symbolTan30;\n    return \"M0,\" + -ry\n        + \"L\" + rx + \",0\"\n        + \" 0,\" + ry\n        + \" \" + -rx + \",0\"\n        + \"Z\";\n  },\n  \"square\": function(size) {\n    var r = Math.sqrt(size) / 2;\n    return \"M\" + -r + \",\" + -r\n        + \"L\" + r + \",\" + -r\n        + \" \" + r + \",\" + r\n        + \" \" + -r + \",\" + r\n        + \"Z\";\n  },\n  \"triangle-down\": function(size) {\n    var rx = Math.sqrt(size / d3_svg_symbolSqrt3),\n        ry = rx * d3_svg_symbolSqrt3 / 2;\n    return \"M0,\" + ry\n        + \"L\" + rx +\",\" + -ry\n        + \" \" + -rx + \",\" + -ry\n        + \"Z\";\n  },\n  \"triangle-up\": function(size) {\n    var rx = Math.sqrt(size / d3_svg_symbolSqrt3),\n        ry = rx * d3_svg_symbolSqrt3 / 2;\n    return \"M0,\" + -ry\n        + \"L\" + rx +\",\" + ry\n        + \" \" + -rx + \",\" + ry\n        + \"Z\";\n  }\n});\n\nd3.svg.symbolTypes = d3_svg_symbols.keys();\n\nvar d3_svg_symbolSqrt3 = Math.sqrt(3),\n    d3_svg_symbolTan30 = Math.tan(30 * Math.PI / 180);\nd3.svg.axis = function() {\n  var scale = d3.scale.linear(),\n      orient = \"bottom\",\n      tickMajorSize = 6,\n      tickMinorSize = 6,\n      tickEndSize = 6,\n      tickPadding = 3,\n      tickArguments_ = [10],\n      tickValues = null,\n      tickFormat_,\n      tickSubdivide = 0;\n\n  function axis(g) {\n    g.each(function() {\n      var g = d3.select(this);\n\n      // Ticks, or domain values for ordinal scales.\n      var ticks = tickValues == null ? (scale.ticks ? scale.ticks.apply(scale, tickArguments_) : scale.domain()) : tickValues,\n          tickFormat = tickFormat_ == null ? (scale.tickFormat ? scale.tickFormat.apply(scale, tickArguments_) : String) : tickFormat_;\n\n      // Minor ticks.\n      var subticks = d3_svg_axisSubdivide(scale, ticks, tickSubdivide),\n          subtick = g.selectAll(\".minor\").data(subticks, String),\n          subtickEnter = subtick.enter().insert(\"line\", \"g\").attr(\"class\", \"tick minor\").style(\"opacity\", 1e-6),\n          subtickExit = d3.transition(subtick.exit()).style(\"opacity\", 1e-6).remove(),\n          subtickUpdate = d3.transition(subtick).style(\"opacity\", 1);\n\n      // Major ticks.\n      var tick = g.selectAll(\"g\").data(ticks, String),\n          tickEnter = tick.enter().insert(\"g\", \"path\").style(\"opacity\", 1e-6),\n          tickExit = d3.transition(tick.exit()).style(\"opacity\", 1e-6).remove(),\n          tickUpdate = d3.transition(tick).style(\"opacity\", 1),\n          tickTransform;\n\n      // Domain.\n      var range = d3_scaleRange(scale),\n          path = g.selectAll(\".domain\").data([0]),\n          pathEnter = path.enter().append(\"path\").attr(\"class\", \"domain\"),\n          pathUpdate = d3.transition(path);\n\n      // Stash a snapshot of the new scale, and retrieve the old snapshot.\n      var scale1 = scale.copy(),\n          scale0 = this.__chart__ || scale1;\n      this.__chart__ = scale1;\n\n      tickEnter.append(\"line\").attr(\"class\", \"tick\");\n      tickEnter.append(\"text\");\n      tickUpdate.select(\"text\").text(tickFormat);\n\n      switch (orient) {\n        case \"bottom\": {\n          tickTransform = d3_svg_axisX;\n          subtickEnter.attr(\"y2\", tickMinorSize);\n          subtickUpdate.attr(\"x2\", 0).attr(\"y2\", tickMinorSize);\n          tickEnter.select(\"line\").attr(\"y2\", tickMajorSize);\n          tickEnter.select(\"text\").attr(\"y\", Math.max(tickMajorSize, 0) + tickPadding);\n          tickUpdate.select(\"line\").attr(\"x2\", 0).attr(\"y2\", tickMajorSize);\n          tickUpdate.select(\"text\").attr(\"x\", 0).attr(\"y\", Math.max(tickMajorSize, 0) + tickPadding).attr(\"dy\", \".71em\").attr(\"text-anchor\", \"middle\");\n          pathUpdate.attr(\"d\", \"M\" + range[0] + \",\" + tickEndSize + \"V0H\" + range[1] + \"V\" + tickEndSize);\n          break;\n        }\n        case \"top\": {\n          tickTransform = d3_svg_axisX;\n          subtickEnter.attr(\"y2\", -tickMinorSize);\n          subtickUpdate.attr(\"x2\", 0).attr(\"y2\", -tickMinorSize);\n          tickEnter.select(\"line\").attr(\"y2\", -tickMajorSize);\n          tickEnter.select(\"text\").attr(\"y\", -(Math.max(tickMajorSize, 0) + tickPadding));\n          tickUpdate.select(\"line\").attr(\"x2\", 0).attr(\"y2\", -tickMajorSize);\n          tickUpdate.select(\"text\").attr(\"x\", 0).attr(\"y\", -(Math.max(tickMajorSize, 0) + tickPadding)).attr(\"dy\", \"0em\").attr(\"text-anchor\", \"middle\");\n          pathUpdate.attr(\"d\", \"M\" + range[0] + \",\" + -tickEndSize + \"V0H\" + range[1] + \"V\" + -tickEndSize);\n          break;\n        }\n        case \"left\": {\n          tickTransform = d3_svg_axisY;\n          subtickEnter.attr(\"x2\", -tickMinorSize);\n          subtickUpdate.attr(\"x2\", -tickMinorSize).attr(\"y2\", 0);\n          tickEnter.select(\"line\").attr(\"x2\", -tickMajorSize);\n          tickEnter.select(\"text\").attr(\"x\", -(Math.max(tickMajorSize, 0) + tickPadding));\n          tickUpdate.select(\"line\").attr(\"x2\", -tickMajorSize).attr(\"y2\", 0);\n          tickUpdate.select(\"text\").attr(\"x\", -(Math.max(tickMajorSize, 0) + tickPadding)).attr(\"y\", 0).attr(\"dy\", \".32em\").attr(\"text-anchor\", \"end\");\n          pathUpdate.attr(\"d\", \"M\" + -tickEndSize + \",\" + range[0] + \"H0V\" + range[1] + \"H\" + -tickEndSize);\n          break;\n        }\n        case \"right\": {\n          tickTransform = d3_svg_axisY;\n          subtickEnter.attr(\"x2\", tickMinorSize);\n          subtickUpdate.attr(\"x2\", tickMinorSize).attr(\"y2\", 0);\n          tickEnter.select(\"line\").attr(\"x2\", tickMajorSize);\n          tickEnter.select(\"text\").attr(\"x\", Math.max(tickMajorSize, 0) + tickPadding);\n          tickUpdate.select(\"line\").attr(\"x2\", tickMajorSize).attr(\"y2\", 0);\n          tickUpdate.select(\"text\").attr(\"x\", Math.max(tickMajorSize, 0) + tickPadding).attr(\"y\", 0).attr(\"dy\", \".32em\").attr(\"text-anchor\", \"start\");\n          pathUpdate.attr(\"d\", \"M\" + tickEndSize + \",\" + range[0] + \"H0V\" + range[1] + \"H\" + tickEndSize);\n          break;\n        }\n      }\n\n      // For quantitative scales:\n      // - enter new ticks from the old scale\n      // - exit old ticks to the new scale\n      if (scale.ticks) {\n        tickEnter.call(tickTransform, scale0);\n        tickUpdate.call(tickTransform, scale1);\n        tickExit.call(tickTransform, scale1);\n        subtickEnter.call(tickTransform, scale0);\n        subtickUpdate.call(tickTransform, scale1);\n        subtickExit.call(tickTransform, scale1);\n      }\n\n      // For ordinal scales:\n      // - any entering ticks are undefined in the old scale\n      // - any exiting ticks are undefined in the new scale\n      // Therefore, we only need to transition updating ticks.\n      else {\n        var dx = scale1.rangeBand() / 2, x = function(d) { return scale1(d) + dx; };\n        tickEnter.call(tickTransform, x);\n        tickUpdate.call(tickTransform, x);\n      }\n    });\n  }\n\n  axis.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = x;\n    return axis;\n  };\n\n  axis.orient = function(x) {\n    if (!arguments.length) return orient;\n    orient = x;\n    return axis;\n  };\n\n  axis.ticks = function() {\n    if (!arguments.length) return tickArguments_;\n    tickArguments_ = arguments;\n    return axis;\n  };\n\n  axis.tickValues = function(x) {\n    if (!arguments.length) return tickValues;\n    tickValues = x;\n    return axis;\n  };\n\n  axis.tickFormat = function(x) {\n    if (!arguments.length) return tickFormat_;\n    tickFormat_ = x;\n    return axis;\n  };\n\n  axis.tickSize = function(x, y, z) {\n    if (!arguments.length) return tickMajorSize;\n    var n = arguments.length - 1;\n    tickMajorSize = +x;\n    tickMinorSize = n > 1 ? +y : tickMajorSize;\n    tickEndSize = n > 0 ? +arguments[n] : tickMajorSize;\n    return axis;\n  };\n\n  axis.tickPadding = function(x) {\n    if (!arguments.length) return tickPadding;\n    tickPadding = +x;\n    return axis;\n  };\n\n  axis.tickSubdivide = function(x) {\n    if (!arguments.length) return tickSubdivide;\n    tickSubdivide = +x;\n    return axis;\n  };\n\n  return axis;\n};\n\nfunction d3_svg_axisX(selection, x) {\n  selection.attr(\"transform\", function(d) { return \"translate(\" + x(d) + \",0)\"; });\n}\n\nfunction d3_svg_axisY(selection, y) {\n  selection.attr(\"transform\", function(d) { return \"translate(0,\" + y(d) + \")\"; });\n}\n\nfunction d3_svg_axisSubdivide(scale, ticks, m) {\n  subticks = [];\n  if (m && ticks.length > 1) {\n    var extent = d3_scaleExtent(scale.domain()),\n        subticks,\n        i = -1,\n        n = ticks.length,\n        d = (ticks[1] - ticks[0]) / ++m,\n        j,\n        v;\n    while (++i < n) {\n      for (j = m; --j > 0;) {\n        if ((v = +ticks[i] - j * d) >= extent[0]) {\n          subticks.push(v);\n        }\n      }\n    }\n    for (--i, j = 0; ++j < m && (v = +ticks[i] + j * d) < extent[1];) {\n      subticks.push(v);\n    }\n  }\n  return subticks;\n}\nd3.svg.brush = function() {\n  var event = d3_eventDispatch(brush, \"brushstart\", \"brush\", \"brushend\"),\n      x = null, // x-scale, optional\n      y = null, // y-scale, optional\n      resizes = d3_svg_brushResizes[0],\n      extent = [[0, 0], [0, 0]], // [x0, y0], [x1, y1], in pixels (integers)\n      extentDomain; // the extent in data space, lazily created\n\n  function brush(g) {\n    g.each(function() {\n      var g = d3.select(this),\n          bg = g.selectAll(\".background\").data([0]),\n          fg = g.selectAll(\".extent\").data([0]),\n          tz = g.selectAll(\".resize\").data(resizes, String),\n          e;\n\n      // Prepare the brush container for events.\n      g\n          .style(\"pointer-events\", \"all\")\n          .on(\"mousedown.brush\", brushstart)\n          .on(\"touchstart.brush\", brushstart);\n\n      // An invisible, mouseable area for starting a new brush.\n      bg.enter().append(\"rect\")\n          .attr(\"class\", \"background\")\n          .style(\"visibility\", \"hidden\")\n          .style(\"cursor\", \"crosshair\");\n\n      // The visible brush extent; style this as you like!\n      fg.enter().append(\"rect\")\n          .attr(\"class\", \"extent\")\n          .style(\"cursor\", \"move\");\n\n      // More invisible rects for resizing the extent.\n      tz.enter().append(\"g\")\n          .attr(\"class\", function(d) { return \"resize \" + d; })\n          .style(\"cursor\", function(d) { return d3_svg_brushCursor[d]; })\n        .append(\"rect\")\n          .attr(\"x\", function(d) { return /[ew]$/.test(d) ? -3 : null; })\n          .attr(\"y\", function(d) { return /^[ns]/.test(d) ? -3 : null; })\n          .attr(\"width\", 6)\n          .attr(\"height\", 6)\n          .style(\"visibility\", \"hidden\");\n\n      // Show or hide the resizers.\n      tz.style(\"display\", brush.empty() ? \"none\" : null);\n\n      // Remove any superfluous resizers.\n      tz.exit().remove();\n\n      // Initialize the background to fill the defined range.\n      // If the range isn't defined, you can post-process.\n      if (x) {\n        e = d3_scaleRange(x);\n        bg.attr(\"x\", e[0]).attr(\"width\", e[1] - e[0]);\n        redrawX(g);\n      }\n      if (y) {\n        e = d3_scaleRange(y);\n        bg.attr(\"y\", e[0]).attr(\"height\", e[1] - e[0]);\n        redrawY(g);\n      }\n      redraw(g);\n    });\n  }\n\n  function redraw(g) {\n    g.selectAll(\".resize\").attr(\"transform\", function(d) {\n      return \"translate(\" + extent[+/e$/.test(d)][0] + \",\" + extent[+/^s/.test(d)][1] + \")\";\n    });\n  }\n\n  function redrawX(g) {\n    g.select(\".extent\").attr(\"x\", extent[0][0]);\n    g.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\", extent[1][0] - extent[0][0]);\n  }\n\n  function redrawY(g) {\n    g.select(\".extent\").attr(\"y\", extent[0][1]);\n    g.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\", extent[1][1] - extent[0][1]);\n  }\n\n  function brushstart() {\n    var target = this,\n        eventTarget = d3.select(d3.event.target),\n        event_ = event.of(target, arguments),\n        g = d3.select(target),\n        resizing = eventTarget.datum(),\n        resizingX = !/^(n|s)$/.test(resizing) && x,\n        resizingY = !/^(e|w)$/.test(resizing) && y,\n        dragging = eventTarget.classed(\"extent\"),\n        center,\n        origin = mouse(),\n        offset;\n\n    var w = d3.select(window)\n        .on(\"mousemove.brush\", brushmove)\n        .on(\"mouseup.brush\", brushend)\n        .on(\"touchmove.brush\", brushmove)\n        .on(\"touchend.brush\", brushend)\n        .on(\"keydown.brush\", keydown)\n        .on(\"keyup.brush\", keyup);\n\n    // If the extent was clicked on, drag rather than brush;\n    // store the point between the mouse and extent origin instead.\n    if (dragging) {\n      origin[0] = extent[0][0] - origin[0];\n      origin[1] = extent[0][1] - origin[1];\n    }\n\n    // If a resizer was clicked on, record which side is to be resized.\n    // Also, set the origin to the opposite side.\n    else if (resizing) {\n      var ex = +/w$/.test(resizing),\n          ey = +/^n/.test(resizing);\n      offset = [extent[1 - ex][0] - origin[0], extent[1 - ey][1] - origin[1]];\n      origin[0] = extent[ex][0];\n      origin[1] = extent[ey][1];\n    }\n\n    // If the ALT key is down when starting a brush, the center is at the mouse.\n    else if (d3.event.altKey) center = origin.slice();\n\n    // Propagate the active cursor to the body for the drag duration.\n    g.style(\"pointer-events\", \"none\").selectAll(\".resize\").style(\"display\", null);\n    d3.select(\"body\").style(\"cursor\", eventTarget.style(\"cursor\"));\n\n    // Notify listeners.\n    event_({type: \"brushstart\"});\n    brushmove();\n    d3_eventCancel();\n\n    function mouse() {\n      var touches = d3.event.changedTouches;\n      return touches ? d3.touches(target, touches)[0] : d3.mouse(target);\n    }\n\n    function keydown() {\n      if (d3.event.keyCode == 32) {\n        if (!dragging) {\n          center = null;\n          origin[0] -= extent[1][0];\n          origin[1] -= extent[1][1];\n          dragging = 2;\n        }\n        d3_eventCancel();\n      }\n    }\n\n    function keyup() {\n      if (d3.event.keyCode == 32 && dragging == 2) {\n        origin[0] += extent[1][0];\n        origin[1] += extent[1][1];\n        dragging = 0;\n        d3_eventCancel();\n      }\n    }\n\n    function brushmove() {\n      var point = mouse(),\n          moved = false;\n\n      // Preserve the offset for thick resizers.\n      if (offset) {\n        point[0] += offset[0];\n        point[1] += offset[1];\n      }\n\n      if (!dragging) {\n\n        // If needed, determine the center from the current extent.\n        if (d3.event.altKey) {\n          if (!center) center = [(extent[0][0] + extent[1][0]) / 2, (extent[0][1] + extent[1][1]) / 2];\n\n          // Update the origin, for when the ALT key is released.\n          origin[0] = extent[+(point[0] < center[0])][0];\n          origin[1] = extent[+(point[1] < center[1])][1];\n        }\n\n        // When the ALT key is released, we clear the center.\n        else center = null;\n      }\n\n      // Update the brush extent for each dimension.\n      if (resizingX && move1(point, x, 0)) {\n        redrawX(g);\n        moved = true;\n      }\n      if (resizingY && move1(point, y, 1)) {\n        redrawY(g);\n        moved = true;\n      }\n\n      // Final redraw and notify listeners.\n      if (moved) {\n        redraw(g);\n        event_({type: \"brush\", mode: dragging ? \"move\" : \"resize\"});\n      }\n    }\n\n    function move1(point, scale, i) {\n      var range = d3_scaleRange(scale),\n          r0 = range[0],\n          r1 = range[1],\n          position = origin[i],\n          size = extent[1][i] - extent[0][i],\n          min,\n          max;\n\n      // When dragging, reduce the range by the extent size and position.\n      if (dragging) {\n        r0 -= position;\n        r1 -= size + position;\n      }\n\n      // Clamp the point so that the extent fits within the range extent.\n      min = Math.max(r0, Math.min(r1, point[i]));\n\n      // Compute the new extent bounds.\n      if (dragging) {\n        max = (min += position) + size;\n      } else {\n\n        // If the ALT key is pressed, then preserve the center of the extent.\n        if (center) position = Math.max(r0, Math.min(r1, 2 * center[i] - min));\n\n        // Compute the min and max of the position and point.\n        if (position < min) {\n          max = min;\n          min = position;\n        } else {\n          max = position;\n        }\n      }\n\n      // Update the stored bounds.\n      if (extent[0][i] !== min || extent[1][i] !== max) {\n        extentDomain = null;\n        extent[0][i] = min;\n        extent[1][i] = max;\n        return true;\n      }\n    }\n\n    function brushend() {\n      brushmove();\n\n      // reset the cursor styles\n      g.style(\"pointer-events\", \"all\").selectAll(\".resize\").style(\"display\", brush.empty() ? \"none\" : null);\n      d3.select(\"body\").style(\"cursor\", null);\n\n      w .on(\"mousemove.brush\", null)\n        .on(\"mouseup.brush\", null)\n        .on(\"touchmove.brush\", null)\n        .on(\"touchend.brush\", null)\n        .on(\"keydown.brush\", null)\n        .on(\"keyup.brush\", null);\n\n      event_({type: \"brushend\"});\n      d3_eventCancel();\n    }\n  }\n\n  brush.x = function(z) {\n    if (!arguments.length) return x;\n    x = z;\n    resizes = d3_svg_brushResizes[!x << 1 | !y]; // fore!\n    return brush;\n  };\n\n  brush.y = function(z) {\n    if (!arguments.length) return y;\n    y = z;\n    resizes = d3_svg_brushResizes[!x << 1 | !y]; // fore!\n    return brush;\n  };\n\n  brush.extent = function(z) {\n    var x0, x1, y0, y1, t;\n\n    // Invert the pixel extent to data-space.\n    if (!arguments.length) {\n      z = extentDomain || extent;\n      if (x) {\n        x0 = z[0][0], x1 = z[1][0];\n        if (!extentDomain) {\n          x0 = extent[0][0], x1 = extent[1][0];\n          if (x.invert) x0 = x.invert(x0), x1 = x.invert(x1);\n          if (x1 < x0) t = x0, x0 = x1, x1 = t;\n        }\n      }\n      if (y) {\n        y0 = z[0][1], y1 = z[1][1];\n        if (!extentDomain) {\n          y0 = extent[0][1], y1 = extent[1][1];\n          if (y.invert) y0 = y.invert(y0), y1 = y.invert(y1);\n          if (y1 < y0) t = y0, y0 = y1, y1 = t;\n        }\n      }\n      return x && y ? [[x0, y0], [x1, y1]] : x ? [x0, x1] : y && [y0, y1];\n    }\n\n    // Scale the data-space extent to pixels.\n    extentDomain = [[0, 0], [0, 0]];\n    if (x) {\n      x0 = z[0], x1 = z[1];\n      if (y) x0 = x0[0], x1 = x1[0];\n      extentDomain[0][0] = x0, extentDomain[1][0] = x1;\n      if (x.invert) x0 = x(x0), x1 = x(x1);\n      if (x1 < x0) t = x0, x0 = x1, x1 = t;\n      extent[0][0] = x0 | 0, extent[1][0] = x1 | 0;\n    }\n    if (y) {\n      y0 = z[0], y1 = z[1];\n      if (x) y0 = y0[1], y1 = y1[1];\n      extentDomain[0][1] = y0, extentDomain[1][1] = y1;\n      if (y.invert) y0 = y(y0), y1 = y(y1);\n      if (y1 < y0) t = y0, y0 = y1, y1 = t;\n      extent[0][1] = y0 | 0, extent[1][1] = y1 | 0;\n    }\n\n    return brush;\n  };\n\n  brush.clear = function() {\n    extentDomain = null;\n    extent[0][0] =\n    extent[0][1] =\n    extent[1][0] =\n    extent[1][1] = 0;\n    return brush;\n  };\n\n  brush.empty = function() {\n    return (x && extent[0][0] === extent[1][0])\n        || (y && extent[0][1] === extent[1][1]);\n  };\n\n  return d3.rebind(brush, event, \"on\");\n};\n\nvar d3_svg_brushCursor = {\n  n: \"ns-resize\",\n  e: \"ew-resize\",\n  s: \"ns-resize\",\n  w: \"ew-resize\",\n  nw: \"nwse-resize\",\n  ne: \"nesw-resize\",\n  se: \"nwse-resize\",\n  sw: \"nesw-resize\"\n};\n\nvar d3_svg_brushResizes = [\n  [\"n\", \"e\", \"s\", \"w\", \"nw\", \"ne\", \"se\", \"sw\"],\n  [\"e\", \"w\"],\n  [\"n\", \"s\"],\n  []\n];\nd3.behavior = {};\n// TODO Track touch points by identifier.\n\nd3.behavior.drag = function() {\n  var event = d3_eventDispatch(drag, \"drag\", \"dragstart\", \"dragend\"),\n      origin = null;\n\n  function drag() {\n    this.on(\"mousedown.drag\", mousedown)\n        .on(\"touchstart.drag\", mousedown);\n  }\n\n  function mousedown() {\n    var target = this,\n        event_ = event.of(target, arguments),\n        eventTarget = d3.event.target,\n        offset,\n        origin_ = point(),\n        moved = 0;\n\n    var w = d3.select(window)\n        .on(\"mousemove.drag\", dragmove)\n        .on(\"touchmove.drag\", dragmove)\n        .on(\"mouseup.drag\", dragend, true)\n        .on(\"touchend.drag\", dragend, true);\n\n    if (origin) {\n      offset = origin.apply(target, arguments);\n      offset = [offset.x - origin_[0], offset.y - origin_[1]];\n    } else {\n      offset = [0, 0];\n    }\n\n    event_({type: \"dragstart\"});\n\n    function point() {\n      var p = target.parentNode,\n          t = d3.event.changedTouches;\n      return t ? d3.touches(p, t)[0] : d3.mouse(p);\n    }\n\n    function dragmove() {\n      if (!target.parentNode) return dragend(); // target removed from DOM\n\n      var p = point(),\n          dx = p[0] - origin_[0],\n          dy = p[1] - origin_[1];\n\n      moved |= dx | dy;\n      origin_ = p;\n      d3_eventCancel();\n\n      event_({type: \"drag\", x: p[0] + offset[0], y: p[1] + offset[1], dx: dx, dy: dy});\n    }\n\n    function dragend() {\n      event_({type: \"dragend\"});\n\n      // if moved, prevent the mouseup (and possibly click) from propagating\n      if (moved) {\n        d3_eventCancel();\n        if (d3.event.target === eventTarget) w.on(\"click.drag\", click, true);\n      }\n\n      w .on(\"mousemove.drag\", null)\n        .on(\"touchmove.drag\", null)\n        .on(\"mouseup.drag\", null)\n        .on(\"touchend.drag\", null);\n    }\n\n    // prevent the subsequent click from propagating (e.g., for anchors)\n    function click() {\n      d3_eventCancel();\n      w.on(\"click.drag\", null);\n    }\n  }\n\n  drag.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    return drag;\n  };\n\n  return d3.rebind(drag, event, \"on\");\n};\nd3.behavior.zoom = function() {\n  var translate = [0, 0],\n      translate0, // translate when we started zooming (to avoid drift)\n      scale = 1,\n      scale0, // scale when we started touching\n      scaleExtent = d3_behavior_zoomInfinity,\n      event = d3_eventDispatch(zoom, \"zoom\"),\n      x0,\n      x1,\n      y0,\n      y1,\n      touchtime; // time of last touchstart (to detect double-tap)\n\n  function zoom() {\n    this\n        .on(\"mousedown.zoom\", mousedown)\n        .on(\"mousewheel.zoom\", mousewheel)\n        .on(\"mousemove.zoom\", mousemove)\n        .on(\"DOMMouseScroll.zoom\", mousewheel)\n        .on(\"dblclick.zoom\", dblclick)\n        .on(\"touchstart.zoom\", touchstart)\n        .on(\"touchmove.zoom\", touchmove)\n        .on(\"touchend.zoom\", touchstart);\n  }\n\n  zoom.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = x.map(Number);\n    return zoom;\n  };\n\n  zoom.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return zoom;\n  };\n\n  zoom.scaleExtent = function(x) {\n    if (!arguments.length) return scaleExtent;\n    scaleExtent = x == null ? d3_behavior_zoomInfinity : x.map(Number);\n    return zoom;\n  };\n\n  zoom.x = function(z) {\n    if (!arguments.length) return x1;\n    x1 = z;\n    x0 = z.copy();\n    return zoom;\n  };\n\n  zoom.y = function(z) {\n    if (!arguments.length) return y1;\n    y1 = z;\n    y0 = z.copy();\n    return zoom;\n  };\n\n  function location(p) {\n    return [(p[0] - translate[0]) / scale, (p[1] - translate[1]) / scale];\n  }\n\n  function point(l) {\n    return [l[0] * scale + translate[0], l[1] * scale + translate[1]];\n  }\n\n  function scaleTo(s) {\n    scale = Math.max(scaleExtent[0], Math.min(scaleExtent[1], s));\n  }\n\n  function translateTo(p, l) {\n    l = point(l);\n    translate[0] += p[0] - l[0];\n    translate[1] += p[1] - l[1];\n  }\n\n  function dispatch(event) {\n    if (x1) x1.domain(x0.range().map(function(x) { return (x - translate[0]) / scale; }).map(x0.invert));\n    if (y1) y1.domain(y0.range().map(function(y) { return (y - translate[1]) / scale; }).map(y0.invert));\n    d3.event.preventDefault();\n    event({type: \"zoom\", scale: scale, translate: translate});\n  }\n\n  function mousedown() {\n    var target = this,\n        event_ = event.of(target, arguments),\n        eventTarget = d3.event.target,\n        moved = 0,\n        w = d3.select(window).on(\"mousemove.zoom\", mousemove).on(\"mouseup.zoom\", mouseup),\n        l = location(d3.mouse(target));\n\n    window.focus();\n    d3_eventCancel();\n\n    function mousemove() {\n      moved = 1;\n      translateTo(d3.mouse(target), l);\n      dispatch(event_);\n    }\n\n    function mouseup() {\n      if (moved) d3_eventCancel();\n      w.on(\"mousemove.zoom\", null).on(\"mouseup.zoom\", null);\n      if (moved && d3.event.target === eventTarget) w.on(\"click.zoom\", click);\n    }\n\n    function click() {\n      d3_eventCancel();\n      w.on(\"click.zoom\", null);\n    }\n  }\n\n  function mousewheel() {\n    if (!translate0) translate0 = location(d3.mouse(this));\n    scaleTo(Math.pow(2, d3_behavior_zoomDelta() * .002) * scale);\n    translateTo(d3.mouse(this), translate0);\n    dispatch(event.of(this, arguments));\n  }\n\n  function mousemove() {\n    translate0 = null;\n  }\n\n  function dblclick() {\n    var p = d3.mouse(this), l = location(p);\n    scaleTo(d3.event.shiftKey ? scale / 2 : scale * 2);\n    translateTo(p, l);\n    dispatch(event.of(this, arguments));\n  }\n\n  function touchstart() {\n    var touches = d3.touches(this),\n        now = Date.now();\n\n    scale0 = scale;\n    translate0 = {};\n    touches.forEach(function(t) { translate0[t.identifier] = location(t); });\n    d3_eventCancel();\n\n    if ((touches.length === 1) && (now - touchtime < 500)) { // dbltap\n      var p = touches[0], l = location(touches[0]);\n      scaleTo(scale * 2);\n      translateTo(p, l);\n      dispatch(event.of(this, arguments));\n    }\n    touchtime = now;\n  }\n\n  function touchmove() {\n    var touches = d3.touches(this),\n        p0 = touches[0],\n        l0 = translate0[p0.identifier];\n    if (p1 = touches[1]) {\n      var p1, l1 = translate0[p1.identifier];\n      p0 = [(p0[0] + p1[0]) / 2, (p0[1] + p1[1]) / 2];\n      l0 = [(l0[0] + l1[0]) / 2, (l0[1] + l1[1]) / 2];\n      scaleTo(d3.event.scale * scale0);\n    }\n    translateTo(p0, l0);\n    dispatch(event.of(this, arguments));\n  }\n\n  return d3.rebind(zoom, event, \"on\");\n};\n\nvar d3_behavior_zoomDiv, // for interpreting mousewheel events\n    d3_behavior_zoomInfinity = [0, Infinity]; // default scale extent\n\nfunction d3_behavior_zoomDelta() {\n\n  // mousewheel events are totally broken!\n  // https://bugs.webkit.org/show_bug.cgi?id=40441\n  // not only that, but Chrome and Safari differ in re. to acceleration!\n  if (!d3_behavior_zoomDiv) {\n    d3_behavior_zoomDiv = d3.select(\"body\").append(\"div\")\n        .style(\"visibility\", \"hidden\")\n        .style(\"top\", 0)\n        .style(\"height\", 0)\n        .style(\"width\", 0)\n        .style(\"overflow-y\", \"scroll\")\n      .append(\"div\")\n        .style(\"height\", \"2000px\")\n      .node().parentNode;\n  }\n\n  var e = d3.event, delta;\n  try {\n    d3_behavior_zoomDiv.scrollTop = 1000;\n    d3_behavior_zoomDiv.dispatchEvent(e);\n    delta = 1000 - d3_behavior_zoomDiv.scrollTop;\n  } catch (error) {\n    delta = e.wheelDelta || (-e.detail * 5);\n  }\n\n  return delta;\n}\nd3.layout = {};\n// Implements hierarchical edge bundling using Holten's algorithm. For each\n// input link, a path is computed that travels through the tree, up the parent\n// hierarchy to the least common ancestor, and then back down to the destination\n// node. Each path is simply an array of nodes.\nd3.layout.bundle = function() {\n  return function(links) {\n    var paths = [],\n        i = -1,\n        n = links.length;\n    while (++i < n) paths.push(d3_layout_bundlePath(links[i]));\n    return paths;\n  };\n};\n\nfunction d3_layout_bundlePath(link) {\n  var start = link.source,\n      end = link.target,\n      lca = d3_layout_bundleLeastCommonAncestor(start, end),\n      points = [start];\n  while (start !== lca) {\n    start = start.parent;\n    points.push(start);\n  }\n  var k = points.length;\n  while (end !== lca) {\n    points.splice(k, 0, end);\n    end = end.parent;\n  }\n  return points;\n}\n\nfunction d3_layout_bundleAncestors(node) {\n  var ancestors = [],\n      parent = node.parent;\n  while (parent != null) {\n    ancestors.push(node);\n    node = parent;\n    parent = parent.parent;\n  }\n  ancestors.push(node);\n  return ancestors;\n}\n\nfunction d3_layout_bundleLeastCommonAncestor(a, b) {\n  if (a === b) return a;\n  var aNodes = d3_layout_bundleAncestors(a),\n      bNodes = d3_layout_bundleAncestors(b),\n      aNode = aNodes.pop(),\n      bNode = bNodes.pop(),\n      sharedNode = null;\n  while (aNode === bNode) {\n    sharedNode = aNode;\n    aNode = aNodes.pop();\n    bNode = bNodes.pop();\n  }\n  return sharedNode;\n}\nd3.layout.chord = function() {\n  var chord = {},\n      chords,\n      groups,\n      matrix,\n      n,\n      padding = 0,\n      sortGroups,\n      sortSubgroups,\n      sortChords;\n\n  function relayout() {\n    var subgroups = {},\n        groupSums = [],\n        groupIndex = d3.range(n),\n        subgroupIndex = [],\n        k,\n        x,\n        x0,\n        i,\n        j;\n\n    chords = [];\n    groups = [];\n\n    // Compute the sum.\n    k = 0, i = -1; while (++i < n) {\n      x = 0, j = -1; while (++j < n) {\n        x += matrix[i][j];\n      }\n      groupSums.push(x);\n      subgroupIndex.push(d3.range(n));\n      k += x;\n    }\n\n    // Sort groups…\n    if (sortGroups) {\n      groupIndex.sort(function(a, b) {\n        return sortGroups(groupSums[a], groupSums[b]);\n      });\n    }\n\n    // Sort subgroups…\n    if (sortSubgroups) {\n      subgroupIndex.forEach(function(d, i) {\n        d.sort(function(a, b) {\n          return sortSubgroups(matrix[i][a], matrix[i][b]);\n        });\n      });\n    }\n\n    // Convert the sum to scaling factor for [0, 2pi].\n    // TODO Allow start and end angle to be specified.\n    // TODO Allow padding to be specified as percentage?\n    k = (2 * Math.PI - padding * n) / k;\n\n    // Compute the start and end angle for each group and subgroup.\n    // Note: Opera has a bug reordering object literal properties!\n    x = 0, i = -1; while (++i < n) {\n      x0 = x, j = -1; while (++j < n) {\n        var di = groupIndex[i],\n            dj = subgroupIndex[di][j],\n            v = matrix[di][dj],\n            a0 = x,\n            a1 = x += v * k;\n        subgroups[di + \"-\" + dj] = {\n          index: di,\n          subindex: dj,\n          startAngle: a0,\n          endAngle: a1,\n          value: v\n        };\n      }\n      groups.push({\n        index: di,\n        startAngle: x0,\n        endAngle: x,\n        value: (x - x0) / k\n      });\n      x += padding;\n    }\n\n    // Generate chords for each (non-empty) subgroup-subgroup link.\n    i = -1; while (++i < n) {\n      j = i - 1; while (++j < n) {\n        var source = subgroups[i + \"-\" + j],\n            target = subgroups[j + \"-\" + i];\n        if (source.value || target.value) {\n          chords.push(source.value < target.value\n              ? {source: target, target: source}\n              : {source: source, target: target});\n        }\n      }\n    }\n\n    if (sortChords) resort();\n  }\n\n  function resort() {\n    chords.sort(function(a, b) {\n      return sortChords(\n          (a.source.value + a.target.value) / 2,\n          (b.source.value + b.target.value) / 2);\n    });\n  }\n\n  chord.matrix = function(x) {\n    if (!arguments.length) return matrix;\n    n = (matrix = x) && matrix.length;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.padding = function(x) {\n    if (!arguments.length) return padding;\n    padding = x;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.sortGroups = function(x) {\n    if (!arguments.length) return sortGroups;\n    sortGroups = x;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.sortSubgroups = function(x) {\n    if (!arguments.length) return sortSubgroups;\n    sortSubgroups = x;\n    chords = null;\n    return chord;\n  };\n\n  chord.sortChords = function(x) {\n    if (!arguments.length) return sortChords;\n    sortChords = x;\n    if (chords) resort();\n    return chord;\n  };\n\n  chord.chords = function() {\n    if (!chords) relayout();\n    return chords;\n  };\n\n  chord.groups = function() {\n    if (!groups) relayout();\n    return groups;\n  };\n\n  return chord;\n};\n// A rudimentary force layout using Gauss-Seidel.\nd3.layout.force = function() {\n  var force = {},\n      event = d3.dispatch(\"start\", \"tick\", \"end\"),\n      size = [1, 1],\n      drag,\n      alpha,\n      friction = .9,\n      linkDistance = d3_layout_forceLinkDistance,\n      linkStrength = d3_layout_forceLinkStrength,\n      charge = -30,\n      gravity = .1,\n      theta = .8,\n      interval,\n      nodes = [],\n      links = [],\n      distances,\n      strengths,\n      charges;\n\n  function repulse(node) {\n    return function(quad, x1, y1, x2, y2) {\n      if (quad.point !== node) {\n        var dx = quad.cx - node.x,\n            dy = quad.cy - node.y,\n            dn = 1 / Math.sqrt(dx * dx + dy * dy);\n\n        /* Barnes-Hut criterion. */\n        if ((x2 - x1) * dn < theta) {\n          var k = quad.charge * dn * dn;\n          node.px -= dx * k;\n          node.py -= dy * k;\n          return true;\n        }\n\n        if (quad.point && isFinite(dn)) {\n          var k = quad.pointCharge * dn * dn;\n          node.px -= dx * k;\n          node.py -= dy * k;\n        }\n      }\n      return !quad.charge;\n    };\n  }\n\n  force.tick = function() {\n    // simulated annealing, basically\n    if ((alpha *= .99) < .005) {\n      event.end({type: \"end\", alpha: alpha = 0});\n      return true;\n    }\n\n    var n = nodes.length,\n        m = links.length,\n        q,\n        i, // current index\n        o, // current object\n        s, // current source\n        t, // current target\n        l, // current distance\n        k, // current force\n        x, // x-distance\n        y; // y-distance\n\n    // gauss-seidel relaxation for links\n    for (i = 0; i < m; ++i) {\n      o = links[i];\n      s = o.source;\n      t = o.target;\n      x = t.x - s.x;\n      y = t.y - s.y;\n      if (l = (x * x + y * y)) {\n        l = alpha * strengths[i] * ((l = Math.sqrt(l)) - distances[i]) / l;\n        x *= l;\n        y *= l;\n        t.x -= x * (k = s.weight / (t.weight + s.weight));\n        t.y -= y * k;\n        s.x += x * (k = 1 - k);\n        s.y += y * k;\n      }\n    }\n\n    // apply gravity forces\n    if (k = alpha * gravity) {\n      x = size[0] / 2;\n      y = size[1] / 2;\n      i = -1; if (k) while (++i < n) {\n        o = nodes[i];\n        o.x += (x - o.x) * k;\n        o.y += (y - o.y) * k;\n      }\n    }\n\n    // compute quadtree center of mass and apply charge forces\n    if (charge) {\n      d3_layout_forceAccumulate(q = d3.geom.quadtree(nodes), alpha, charges);\n      i = -1; while (++i < n) {\n        if (!(o = nodes[i]).fixed) {\n          q.visit(repulse(o));\n        }\n      }\n    }\n\n    // position verlet integration\n    i = -1; while (++i < n) {\n      o = nodes[i];\n      if (o.fixed) {\n        o.x = o.px;\n        o.y = o.py;\n      } else {\n        o.x -= (o.px - (o.px = o.x)) * friction;\n        o.y -= (o.py - (o.py = o.y)) * friction;\n      }\n    }\n\n    event.tick({type: \"tick\", alpha: alpha});\n  };\n\n  force.nodes = function(x) {\n    if (!arguments.length) return nodes;\n    nodes = x;\n    return force;\n  };\n\n  force.links = function(x) {\n    if (!arguments.length) return links;\n    links = x;\n    return force;\n  };\n\n  force.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return force;\n  };\n\n  force.linkDistance = function(x) {\n    if (!arguments.length) return linkDistance;\n    linkDistance = d3.functor(x);\n    return force;\n  };\n\n  // For backwards-compatibility.\n  force.distance = force.linkDistance;\n\n  force.linkStrength = function(x) {\n    if (!arguments.length) return linkStrength;\n    linkStrength = d3.functor(x);\n    return force;\n  };\n\n  force.friction = function(x) {\n    if (!arguments.length) return friction;\n    friction = x;\n    return force;\n  };\n\n  force.charge = function(x) {\n    if (!arguments.length) return charge;\n    charge = typeof x === \"function\" ? x : +x;\n    return force;\n  };\n\n  force.gravity = function(x) {\n    if (!arguments.length) return gravity;\n    gravity = x;\n    return force;\n  };\n\n  force.theta = function(x) {\n    if (!arguments.length) return theta;\n    theta = x;\n    return force;\n  };\n\n  force.alpha = function(x) {\n    if (!arguments.length) return alpha;\n\n    if (alpha) { // if we're already running\n      if (x > 0) alpha = x; // we might keep it hot\n      else alpha = 0; // or, next tick will dispatch \"end\"\n    } else if (x > 0) { // otherwise, fire it up!\n      event.start({type: \"start\", alpha: alpha = x});\n      d3.timer(force.tick);\n    }\n\n    return force;\n  };\n\n  force.start = function() {\n    var i,\n        j,\n        n = nodes.length,\n        m = links.length,\n        w = size[0],\n        h = size[1],\n        neighbors,\n        o;\n\n    for (i = 0; i < n; ++i) {\n      (o = nodes[i]).index = i;\n      o.weight = 0;\n    }\n\n    distances = [];\n    strengths = [];\n    for (i = 0; i < m; ++i) {\n      o = links[i];\n      if (typeof o.source == \"number\") o.source = nodes[o.source];\n      if (typeof o.target == \"number\") o.target = nodes[o.target];\n      distances[i] = linkDistance.call(this, o, i);\n      strengths[i] = linkStrength.call(this, o, i);\n      ++o.source.weight;\n      ++o.target.weight;\n    }\n\n    for (i = 0; i < n; ++i) {\n      o = nodes[i];\n      if (isNaN(o.x)) o.x = position(\"x\", w);\n      if (isNaN(o.y)) o.y = position(\"y\", h);\n      if (isNaN(o.px)) o.px = o.x;\n      if (isNaN(o.py)) o.py = o.y;\n    }\n\n    charges = [];\n    if (typeof charge === \"function\") {\n      for (i = 0; i < n; ++i) {\n        charges[i] = +charge.call(this, nodes[i], i);\n      }\n    } else {\n      for (i = 0; i < n; ++i) {\n        charges[i] = charge;\n      }\n    }\n\n    // initialize node position based on first neighbor\n    function position(dimension, size) {\n      var neighbors = neighbor(i),\n          j = -1,\n          m = neighbors.length,\n          x;\n      while (++j < m) if (!isNaN(x = neighbors[j][dimension])) return x;\n      return Math.random() * size;\n    }\n\n    // initialize neighbors lazily\n    function neighbor() {\n      if (!neighbors) {\n        neighbors = [];\n        for (j = 0; j < n; ++j) {\n          neighbors[j] = [];\n        }\n        for (j = 0; j < m; ++j) {\n          var o = links[j];\n          neighbors[o.source.index].push(o.target);\n          neighbors[o.target.index].push(o.source);\n        }\n      }\n      return neighbors[i];\n    }\n\n    return force.resume();\n  };\n\n  force.resume = function() {\n    return force.alpha(.1);\n  };\n\n  force.stop = function() {\n    return force.alpha(0);\n  };\n\n  // use `node.call(force.drag)` to make nodes draggable\n  force.drag = function() {\n    if (!drag) drag = d3.behavior.drag()\n        .origin(Object)\n        .on(\"dragstart\", dragstart)\n        .on(\"drag\", d3_layout_forceDrag)\n        .on(\"dragend\", d3_layout_forceDragEnd);\n\n    this.on(\"mouseover.force\", d3_layout_forceDragOver)\n        .on(\"mouseout.force\", d3_layout_forceDragOut)\n        .call(drag);\n  };\n\n  function dragstart(d) {\n    d3_layout_forceDragOver(d3_layout_forceDragNode = d);\n    d3_layout_forceDragForce = force;\n  }\n\n  return d3.rebind(force, event, \"on\");\n};\n\nvar d3_layout_forceDragForce,\n    d3_layout_forceDragNode;\n\nfunction d3_layout_forceDragOver(d) {\n  d.fixed |= 2;\n}\n\nfunction d3_layout_forceDragOut(d) {\n  if (d !== d3_layout_forceDragNode) d.fixed &= 1;\n}\n\nfunction d3_layout_forceDragEnd() {\n  d3_layout_forceDragNode.fixed &= 1;\n  d3_layout_forceDragForce = d3_layout_forceDragNode = null;\n}\n\nfunction d3_layout_forceDrag() {\n  d3_layout_forceDragNode.px = d3.event.x;\n  d3_layout_forceDragNode.py = d3.event.y;\n  d3_layout_forceDragForce.resume(); // restart annealing\n}\n\nfunction d3_layout_forceAccumulate(quad, alpha, charges) {\n  var cx = 0,\n      cy = 0;\n  quad.charge = 0;\n  if (!quad.leaf) {\n    var nodes = quad.nodes,\n        n = nodes.length,\n        i = -1,\n        c;\n    while (++i < n) {\n      c = nodes[i];\n      if (c == null) continue;\n      d3_layout_forceAccumulate(c, alpha, charges);\n      quad.charge += c.charge;\n      cx += c.charge * c.cx;\n      cy += c.charge * c.cy;\n    }\n  }\n  if (quad.point) {\n    // jitter internal nodes that are coincident\n    if (!quad.leaf) {\n      quad.point.x += Math.random() - .5;\n      quad.point.y += Math.random() - .5;\n    }\n    var k = alpha * charges[quad.point.index];\n    quad.charge += quad.pointCharge = k;\n    cx += k * quad.point.x;\n    cy += k * quad.point.y;\n  }\n  quad.cx = cx / quad.charge;\n  quad.cy = cy / quad.charge;\n}\n\nfunction d3_layout_forceLinkDistance(link) {\n  return 20;\n}\n\nfunction d3_layout_forceLinkStrength(link) {\n  return 1;\n}\nd3.layout.partition = function() {\n  var hierarchy = d3.layout.hierarchy(),\n      size = [1, 1]; // width, height\n\n  function position(node, x, dx, dy) {\n    var children = node.children;\n    node.x = x;\n    node.y = node.depth * dy;\n    node.dx = dx;\n    node.dy = dy;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n,\n          c,\n          d;\n      dx = node.value ? dx / node.value : 0;\n      while (++i < n) {\n        position(c = children[i], x, d = c.value * dx, dy);\n        x += d;\n      }\n    }\n  }\n\n  function depth(node) {\n    var children = node.children,\n        d = 0;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n;\n      while (++i < n) d = Math.max(d, depth(children[i]));\n    }\n    return 1 + d;\n  }\n\n  function partition(d, i) {\n    var nodes = hierarchy.call(this, d, i);\n    position(nodes[0], 0, size[0], size[1] / depth(nodes[0]));\n    return nodes;\n  }\n\n  partition.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return partition;\n  };\n\n  return d3_layout_hierarchyRebind(partition, hierarchy);\n};\nd3.layout.pie = function() {\n  var value = Number,\n      sort = d3_layout_pieSortByValue,\n      startAngle = 0,\n      endAngle = 2 * Math.PI;\n\n  function pie(data, i) {\n\n    // Compute the numeric values for each data element.\n    var values = data.map(function(d, i) { return +value.call(pie, d, i); });\n\n    // Compute the start angle.\n    var a = +(typeof startAngle === \"function\"\n        ? startAngle.apply(this, arguments)\n        : startAngle);\n\n    // Compute the angular scale factor: from value to radians.\n    var k = ((typeof endAngle === \"function\"\n        ? endAngle.apply(this, arguments)\n        : endAngle) - startAngle)\n        / d3.sum(values);\n\n    // Optionally sort the data.\n    var index = d3.range(data.length);\n    if (sort != null) index.sort(sort === d3_layout_pieSortByValue\n        ? function(i, j) { return values[j] - values[i]; }\n        : function(i, j) { return sort(data[i], data[j]); });\n\n    // Compute the arcs!\n    // They are stored in the original data's order.\n    var arcs = [];\n    index.forEach(function(i) {\n      arcs[i] = {\n        data: data[i],\n        value: d = values[i],\n        startAngle: a,\n        endAngle: a += d * k\n      };\n    });\n    return arcs;\n  }\n\n  /**\n   * Specifies the value function *x*, which returns a nonnegative numeric value\n   * for each datum. The default value function is `Number`. The value function\n   * is passed two arguments: the current datum and the current index.\n   */\n  pie.value = function(x) {\n    if (!arguments.length) return value;\n    value = x;\n    return pie;\n  };\n\n  /**\n   * Specifies a sort comparison operator *x*. The comparator is passed two data\n   * elements from the data array, a and b; it returns a negative value if a is\n   * less than b, a positive value if a is greater than b, and zero if a equals\n   * b.\n   */\n  pie.sort = function(x) {\n    if (!arguments.length) return sort;\n    sort = x;\n    return pie;\n  };\n\n  /**\n   * Specifies the overall start angle of the pie chart. Defaults to 0. The\n   * start angle can be specified either as a constant or as a function; in the\n   * case of a function, it is evaluated once per array (as opposed to per\n   * element).\n   */\n  pie.startAngle = function(x) {\n    if (!arguments.length) return startAngle;\n    startAngle = x;\n    return pie;\n  };\n\n  /**\n   * Specifies the overall end angle of the pie chart. Defaults to 2π. The\n   * end angle can be specified either as a constant or as a function; in the\n   * case of a function, it is evaluated once per array (as opposed to per\n   * element).\n   */\n  pie.endAngle = function(x) {\n    if (!arguments.length) return endAngle;\n    endAngle = x;\n    return pie;\n  };\n\n  return pie;\n};\n\nvar d3_layout_pieSortByValue = {};\n// data is two-dimensional array of x,y; we populate y0\nd3.layout.stack = function() {\n  var values = Object,\n      order = d3_layout_stackOrderDefault,\n      offset = d3_layout_stackOffsetZero,\n      out = d3_layout_stackOut,\n      x = d3_layout_stackX,\n      y = d3_layout_stackY;\n\n  function stack(data, index) {\n\n    // Convert series to canonical two-dimensional representation.\n    var series = data.map(function(d, i) {\n      return values.call(stack, d, i);\n    });\n\n    // Convert each series to canonical [[x,y]] representation.\n    var points = series.map(function(d, i) {\n      return d.map(function(v, i) {\n        return [x.call(stack, v, i), y.call(stack, v, i)];\n      });\n    });\n\n    // Compute the order of series, and permute them.\n    var orders = order.call(stack, points, index);\n    series = d3.permute(series, orders);\n    points = d3.permute(points, orders);\n\n    // Compute the baseline…\n    var offsets = offset.call(stack, points, index);\n\n    // And propagate it to other series.\n    var n = series.length,\n        m = series[0].length,\n        i,\n        j,\n        o;\n    for (j = 0; j < m; ++j) {\n      out.call(stack, series[0][j], o = offsets[j], points[0][j][1]);\n      for (i = 1; i < n; ++i) {\n        out.call(stack, series[i][j], o += points[i - 1][j][1], points[i][j][1]);\n      }\n    }\n\n    return data;\n  }\n\n  stack.values = function(x) {\n    if (!arguments.length) return values;\n    values = x;\n    return stack;\n  };\n\n  stack.order = function(x) {\n    if (!arguments.length) return order;\n    order = typeof x === \"function\" ? x : d3_layout_stackOrders.get(x) || d3_layout_stackOrderDefault;\n    return stack;\n  };\n\n  stack.offset = function(x) {\n    if (!arguments.length) return offset;\n    offset = typeof x === \"function\" ? x : d3_layout_stackOffsets.get(x) || d3_layout_stackOffsetZero;\n    return stack;\n  };\n\n  stack.x = function(z) {\n    if (!arguments.length) return x;\n    x = z;\n    return stack;\n  };\n\n  stack.y = function(z) {\n    if (!arguments.length) return y;\n    y = z;\n    return stack;\n  };\n\n  stack.out = function(z) {\n    if (!arguments.length) return out;\n    out = z;\n    return stack;\n  };\n\n  return stack;\n}\n\nfunction d3_layout_stackX(d) {\n  return d.x;\n}\n\nfunction d3_layout_stackY(d) {\n  return d.y;\n}\n\nfunction d3_layout_stackOut(d, y0, y) {\n  d.y0 = y0;\n  d.y = y;\n}\n\nvar d3_layout_stackOrders = d3.map({\n\n  \"inside-out\": function(data) {\n    var n = data.length,\n        i,\n        j,\n        max = data.map(d3_layout_stackMaxIndex),\n        sums = data.map(d3_layout_stackReduceSum),\n        index = d3.range(n).sort(function(a, b) { return max[a] - max[b]; }),\n        top = 0,\n        bottom = 0,\n        tops = [],\n        bottoms = [];\n    for (i = 0; i < n; ++i) {\n      j = index[i];\n      if (top < bottom) {\n        top += sums[j];\n        tops.push(j);\n      } else {\n        bottom += sums[j];\n        bottoms.push(j);\n      }\n    }\n    return bottoms.reverse().concat(tops);\n  },\n\n  \"reverse\": function(data) {\n    return d3.range(data.length).reverse();\n  },\n\n  \"default\": d3_layout_stackOrderDefault\n\n});\n\nvar d3_layout_stackOffsets = d3.map({\n\n  \"silhouette\": function(data) {\n    var n = data.length,\n        m = data[0].length,\n        sums = [],\n        max = 0,\n        i,\n        j,\n        o,\n        y0 = [];\n    for (j = 0; j < m; ++j) {\n      for (i = 0, o = 0; i < n; i++) o += data[i][j][1];\n      if (o > max) max = o;\n      sums.push(o);\n    }\n    for (j = 0; j < m; ++j) {\n      y0[j] = (max - sums[j]) / 2;\n    }\n    return y0;\n  },\n\n  \"wiggle\": function(data) {\n    var n = data.length,\n        x = data[0],\n        m = x.length,\n        max = 0,\n        i,\n        j,\n        k,\n        s1,\n        s2,\n        s3,\n        dx,\n        o,\n        o0,\n        y0 = [];\n    y0[0] = o = o0 = 0;\n    for (j = 1; j < m; ++j) {\n      for (i = 0, s1 = 0; i < n; ++i) s1 += data[i][j][1];\n      for (i = 0, s2 = 0, dx = x[j][0] - x[j - 1][0]; i < n; ++i) {\n        for (k = 0, s3 = (data[i][j][1] - data[i][j - 1][1]) / (2 * dx); k < i; ++k) {\n          s3 += (data[k][j][1] - data[k][j - 1][1]) / dx;\n        }\n        s2 += s3 * data[i][j][1];\n      }\n      y0[j] = o -= s1 ? s2 / s1 * dx : 0;\n      if (o < o0) o0 = o;\n    }\n    for (j = 0; j < m; ++j) y0[j] -= o0;\n    return y0;\n  },\n\n  \"expand\": function(data) {\n    var n = data.length,\n        m = data[0].length,\n        k = 1 / n,\n        i,\n        j,\n        o,\n        y0 = [];\n    for (j = 0; j < m; ++j) {\n      for (i = 0, o = 0; i < n; i++) o += data[i][j][1];\n      if (o) for (i = 0; i < n; i++) data[i][j][1] /= o;\n      else for (i = 0; i < n; i++) data[i][j][1] = k;\n    }\n    for (j = 0; j < m; ++j) y0[j] = 0;\n    return y0;\n  },\n\n  \"zero\": d3_layout_stackOffsetZero\n\n});\n\nfunction d3_layout_stackOrderDefault(data) {\n  return d3.range(data.length);\n}\n\nfunction d3_layout_stackOffsetZero(data) {\n  var j = -1,\n      m = data[0].length,\n      y0 = [];\n  while (++j < m) y0[j] = 0;\n  return y0;\n}\n\nfunction d3_layout_stackMaxIndex(array) {\n  var i = 1,\n      j = 0,\n      v = array[0][1],\n      k,\n      n = array.length;\n  for (; i < n; ++i) {\n    if ((k = array[i][1]) > v) {\n      j = i;\n      v = k;\n    }\n  }\n  return j;\n}\n\nfunction d3_layout_stackReduceSum(d) {\n  return d.reduce(d3_layout_stackSum, 0);\n}\n\nfunction d3_layout_stackSum(p, d) {\n  return p + d[1];\n}\nd3.layout.histogram = function() {\n  var frequency = true,\n      valuer = Number,\n      ranger = d3_layout_histogramRange,\n      binner = d3_layout_histogramBinSturges;\n\n  function histogram(data, i) {\n    var bins = [],\n        values = data.map(valuer, this),\n        range = ranger.call(this, values, i),\n        thresholds = binner.call(this, range, values, i),\n        bin,\n        i = -1,\n        n = values.length,\n        m = thresholds.length - 1,\n        k = frequency ? 1 : 1 / n,\n        x;\n\n    // Initialize the bins.\n    while (++i < m) {\n      bin = bins[i] = [];\n      bin.dx = thresholds[i + 1] - (bin.x = thresholds[i]);\n      bin.y = 0;\n    }\n\n    // Fill the bins, ignoring values outside the range.\n    i = -1; while(++i < n) {\n      x = values[i];\n      if ((x >= range[0]) && (x <= range[1])) {\n        bin = bins[d3.bisect(thresholds, x, 1, m) - 1];\n        bin.y += k;\n        bin.push(data[i]);\n      }\n    }\n\n    return bins;\n  }\n\n  // Specifies how to extract a value from the associated data. The default\n  // value function is `Number`, which is equivalent to the identity function.\n  histogram.value = function(x) {\n    if (!arguments.length) return valuer;\n    valuer = x;\n    return histogram;\n  };\n\n  // Specifies the range of the histogram. Values outside the specified range\n  // will be ignored. The argument `x` may be specified either as a two-element\n  // array representing the minimum and maximum value of the range, or as a\n  // function that returns the range given the array of values and the current\n  // index `i`. The default range is the extent (minimum and maximum) of the\n  // values.\n  histogram.range = function(x) {\n    if (!arguments.length) return ranger;\n    ranger = d3.functor(x);\n    return histogram;\n  };\n\n  // Specifies how to bin values in the histogram. The argument `x` may be\n  // specified as a number, in which case the range of values will be split\n  // uniformly into the given number of bins. Or, `x` may be an array of\n  // threshold values, defining the bins; the specified array must contain the\n  // rightmost (upper) value, thus specifying n + 1 values for n bins. Or, `x`\n  // may be a function which is evaluated, being passed the range, the array of\n  // values, and the current index `i`, returning an array of thresholds. The\n  // default bin function will divide the values into uniform bins using\n  // Sturges' formula.\n  histogram.bins = function(x) {\n    if (!arguments.length) return binner;\n    binner = typeof x === \"number\"\n        ? function(range) { return d3_layout_histogramBinFixed(range, x); }\n        : d3.functor(x);\n    return histogram;\n  };\n\n  // Specifies whether the histogram's `y` value is a count (frequency) or a\n  // probability (density). The default value is true.\n  histogram.frequency = function(x) {\n    if (!arguments.length) return frequency;\n    frequency = !!x;\n    return histogram;\n  };\n\n  return histogram;\n};\n\nfunction d3_layout_histogramBinSturges(range, values) {\n  return d3_layout_histogramBinFixed(range, Math.ceil(Math.log(values.length) / Math.LN2 + 1));\n}\n\nfunction d3_layout_histogramBinFixed(range, n) {\n  var x = -1,\n      b = +range[0],\n      m = (range[1] - b) / n,\n      f = [];\n  while (++x <= n) f[x] = m * x + b;\n  return f;\n}\n\nfunction d3_layout_histogramRange(values) {\n  return [d3.min(values), d3.max(values)];\n}\nd3.layout.hierarchy = function() {\n  var sort = d3_layout_hierarchySort,\n      children = d3_layout_hierarchyChildren,\n      value = d3_layout_hierarchyValue;\n\n  // Recursively compute the node depth and value.\n  // Also converts the data representation into a standard hierarchy structure.\n  function recurse(data, depth, nodes) {\n    var childs = children.call(hierarchy, data, depth),\n        node = d3_layout_hierarchyInline ? data : {data: data};\n    node.depth = depth;\n    nodes.push(node);\n    if (childs && (n = childs.length)) {\n      var i = -1,\n          n,\n          c = node.children = [],\n          v = 0,\n          j = depth + 1;\n      while (++i < n) {\n        d = recurse(childs[i], j, nodes);\n        d.parent = node;\n        c.push(d);\n        v += d.value;\n      }\n      if (sort) c.sort(sort);\n      if (value) node.value = v;\n    } else if (value) {\n      node.value = +value.call(hierarchy, data, depth) || 0;\n    }\n    return node;\n  }\n\n  // Recursively re-evaluates the node value.\n  function revalue(node, depth) {\n    var children = node.children,\n        v = 0;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n,\n          j = depth + 1;\n      while (++i < n) v += revalue(children[i], j);\n    } else if (value) {\n      v = +value.call(hierarchy, d3_layout_hierarchyInline ? node : node.data, depth) || 0;\n    }\n    if (value) node.value = v;\n    return v;\n  }\n\n  function hierarchy(d) {\n    var nodes = [];\n    recurse(d, 0, nodes);\n    return nodes;\n  }\n\n  hierarchy.sort = function(x) {\n    if (!arguments.length) return sort;\n    sort = x;\n    return hierarchy;\n  };\n\n  hierarchy.children = function(x) {\n    if (!arguments.length) return children;\n    children = x;\n    return hierarchy;\n  };\n\n  hierarchy.value = function(x) {\n    if (!arguments.length) return value;\n    value = x;\n    return hierarchy;\n  };\n\n  // Re-evaluates the `value` property for the specified hierarchy.\n  hierarchy.revalue = function(root) {\n    revalue(root, 0);\n    return root;\n  };\n\n  return hierarchy;\n};\n\n// A method assignment helper for hierarchy subclasses.\nfunction d3_layout_hierarchyRebind(object, hierarchy) {\n  d3.rebind(object, hierarchy, \"sort\", \"children\", \"value\");\n\n  // Add an alias for links, for convenience.\n  object.links = d3_layout_hierarchyLinks;\n\n  // If the new API is used, enabling inlining.\n  object.nodes = function(d) {\n    d3_layout_hierarchyInline = true;\n    return (object.nodes = object)(d);\n  };\n\n  return object;\n}\n\nfunction d3_layout_hierarchyChildren(d) {\n  return d.children;\n}\n\nfunction d3_layout_hierarchyValue(d) {\n  return d.value;\n}\n\nfunction d3_layout_hierarchySort(a, b) {\n  return b.value - a.value;\n}\n\n// Returns an array source+target objects for the specified nodes.\nfunction d3_layout_hierarchyLinks(nodes) {\n  return d3.merge(nodes.map(function(parent) {\n    return (parent.children || []).map(function(child) {\n      return {source: parent, target: child};\n    });\n  }));\n}\n\n// For backwards-compatibility, don't enable inlining by default.\nvar d3_layout_hierarchyInline = false;\nd3.layout.pack = function() {\n  var hierarchy = d3.layout.hierarchy().sort(d3_layout_packSort),\n      size = [1, 1];\n\n  function pack(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0];\n\n    // Recursively compute the layout.\n    root.x = 0;\n    root.y = 0;\n    d3_layout_packTree(root);\n\n    // Scale the layout to fit the requested size.\n    var w = size[0],\n        h = size[1],\n        k = 1 / Math.max(2 * root.r / w, 2 * root.r / h);\n    d3_layout_packTransform(root, w / 2, h / 2, k);\n\n    return nodes;\n  }\n\n  pack.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return pack;\n  };\n\n  return d3_layout_hierarchyRebind(pack, hierarchy);\n};\n\nfunction d3_layout_packSort(a, b) {\n  return a.value - b.value;\n}\n\nfunction d3_layout_packInsert(a, b) {\n  var c = a._pack_next;\n  a._pack_next = b;\n  b._pack_prev = a;\n  b._pack_next = c;\n  c._pack_prev = b;\n}\n\nfunction d3_layout_packSplice(a, b) {\n  a._pack_next = b;\n  b._pack_prev = a;\n}\n\nfunction d3_layout_packIntersects(a, b) {\n  var dx = b.x - a.x,\n      dy = b.y - a.y,\n      dr = a.r + b.r;\n  return dr * dr - dx * dx - dy * dy > .001; // within epsilon\n}\n\nfunction d3_layout_packCircle(nodes) {\n  var xMin = Infinity,\n      xMax = -Infinity,\n      yMin = Infinity,\n      yMax = -Infinity,\n      n = nodes.length,\n      a, b, c, j, k;\n\n  function bound(node) {\n    xMin = Math.min(node.x - node.r, xMin);\n    xMax = Math.max(node.x + node.r, xMax);\n    yMin = Math.min(node.y - node.r, yMin);\n    yMax = Math.max(node.y + node.r, yMax);\n  }\n\n  // Create node links.\n  nodes.forEach(d3_layout_packLink);\n\n  // Create first node.\n  a = nodes[0];\n  a.x = -a.r;\n  a.y = 0;\n  bound(a);\n\n  // Create second node.\n  if (n > 1) {\n    b = nodes[1];\n    b.x = b.r;\n    b.y = 0;\n    bound(b);\n\n    // Create third node and build chain.\n    if (n > 2) {\n      c = nodes[2];\n      d3_layout_packPlace(a, b, c);\n      bound(c);\n      d3_layout_packInsert(a, c);\n      a._pack_prev = c;\n      d3_layout_packInsert(c, b);\n      b = a._pack_next;\n\n      // Now iterate through the rest.\n      for (var i = 3; i < n; i++) {\n        d3_layout_packPlace(a, b, c = nodes[i]);\n\n        // Search for the closest intersection.\n        var isect = 0, s1 = 1, s2 = 1;\n        for (j = b._pack_next; j !== b; j = j._pack_next, s1++) {\n          if (d3_layout_packIntersects(j, c)) {\n            isect = 1;\n            break;\n          }\n        }\n        if (isect == 1) {\n          for (k = a._pack_prev; k !== j._pack_prev; k = k._pack_prev, s2++) {\n            if (d3_layout_packIntersects(k, c)) {\n              break;\n            }\n          }\n        }\n\n        // Update node chain.\n        if (isect) {\n          if (s1 < s2 || (s1 == s2 && b.r < a.r)) d3_layout_packSplice(a, b = j);\n          else d3_layout_packSplice(a = k, b);\n          i--;\n        } else {\n          d3_layout_packInsert(a, c);\n          b = c;\n          bound(c);\n        }\n      }\n    }\n  }\n\n  // Re-center the circles and return the encompassing radius.\n  var cx = (xMin + xMax) / 2,\n      cy = (yMin + yMax) / 2,\n      cr = 0;\n  for (var i = 0; i < n; i++) {\n    var node = nodes[i];\n    node.x -= cx;\n    node.y -= cy;\n    cr = Math.max(cr, node.r + Math.sqrt(node.x * node.x + node.y * node.y));\n  }\n\n  // Remove node links.\n  nodes.forEach(d3_layout_packUnlink);\n\n  return cr;\n}\n\nfunction d3_layout_packLink(node) {\n  node._pack_next = node._pack_prev = node;\n}\n\nfunction d3_layout_packUnlink(node) {\n  delete node._pack_next;\n  delete node._pack_prev;\n}\n\nfunction d3_layout_packTree(node) {\n  var children = node.children;\n  if (children && children.length) {\n    children.forEach(d3_layout_packTree);\n    node.r = d3_layout_packCircle(children);\n  } else {\n    node.r = Math.sqrt(node.value);\n  }\n}\n\nfunction d3_layout_packTransform(node, x, y, k) {\n  var children = node.children;\n  node.x = (x += k * node.x);\n  node.y = (y += k * node.y);\n  node.r *= k;\n  if (children) {\n    var i = -1, n = children.length;\n    while (++i < n) d3_layout_packTransform(children[i], x, y, k);\n  }\n}\n\nfunction d3_layout_packPlace(a, b, c) {\n  var db = a.r + c.r,\n      dx = b.x - a.x,\n      dy = b.y - a.y;\n  if (db && (dx || dy)) {\n    var da = b.r + c.r,\n        dc = Math.sqrt(dx * dx + dy * dy),\n        cos = Math.max(-1, Math.min(1, (db * db + dc * dc - da * da) / (2 * db * dc))),\n        theta = Math.acos(cos),\n        x = cos * (db /= dc),\n        y = Math.sin(theta) * db;\n    c.x = a.x + x * dx + y * dy;\n    c.y = a.y + x * dy - y * dx;\n  } else {\n    c.x = a.x + db;\n    c.y = a.y;\n  }\n}\n// Implements a hierarchical layout using the cluster (or dendrogram)\n// algorithm.\nd3.layout.cluster = function() {\n  var hierarchy = d3.layout.hierarchy().sort(null).value(null),\n      separation = d3_layout_treeSeparation,\n      size = [1, 1]; // width, height\n\n  function cluster(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0],\n        previousNode,\n        x = 0,\n        kx,\n        ky;\n\n    // First walk, computing the initial x & y values.\n    d3_layout_treeVisitAfter(root, function(node) {\n      var children = node.children;\n      if (children && children.length) {\n        node.x = d3_layout_clusterX(children);\n        node.y = d3_layout_clusterY(children);\n      } else {\n        node.x = previousNode ? x += separation(node, previousNode) : 0;\n        node.y = 0;\n        previousNode = node;\n      }\n    });\n\n    // Compute the left-most, right-most, and depth-most nodes for extents.\n    var left = d3_layout_clusterLeft(root),\n        right = d3_layout_clusterRight(root),\n        x0 = left.x - separation(left, right) / 2,\n        x1 = right.x + separation(right, left) / 2;\n\n    // Second walk, normalizing x & y to the desired size.\n    d3_layout_treeVisitAfter(root, function(node) {\n      node.x = (node.x - x0) / (x1 - x0) * size[0];\n      node.y = (1 - (root.y ? node.y / root.y : 1)) * size[1];\n    });\n\n    return nodes;\n  }\n\n  cluster.separation = function(x) {\n    if (!arguments.length) return separation;\n    separation = x;\n    return cluster;\n  };\n\n  cluster.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return cluster;\n  };\n\n  return d3_layout_hierarchyRebind(cluster, hierarchy);\n};\n\nfunction d3_layout_clusterY(children) {\n  return 1 + d3.max(children, function(child) {\n    return child.y;\n  });\n}\n\nfunction d3_layout_clusterX(children) {\n  return children.reduce(function(x, child) {\n    return x + child.x;\n  }, 0) / children.length;\n}\n\nfunction d3_layout_clusterLeft(node) {\n  var children = node.children;\n  return children && children.length ? d3_layout_clusterLeft(children[0]) : node;\n}\n\nfunction d3_layout_clusterRight(node) {\n  var children = node.children, n;\n  return children && (n = children.length) ? d3_layout_clusterRight(children[n - 1]) : node;\n}\n// Node-link tree diagram using the Reingold-Tilford \"tidy\" algorithm\nd3.layout.tree = function() {\n  var hierarchy = d3.layout.hierarchy().sort(null).value(null),\n      separation = d3_layout_treeSeparation,\n      size = [1, 1]; // width, height\n\n  function tree(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0];\n\n    function firstWalk(node, previousSibling) {\n      var children = node.children,\n          layout = node._tree;\n      if (children && (n = children.length)) {\n        var n,\n            firstChild = children[0],\n            previousChild,\n            ancestor = firstChild,\n            child,\n            i = -1;\n        while (++i < n) {\n          child = children[i];\n          firstWalk(child, previousChild);\n          ancestor = apportion(child, previousChild, ancestor);\n          previousChild = child;\n        }\n        d3_layout_treeShift(node);\n        var midpoint = .5 * (firstChild._tree.prelim + child._tree.prelim);\n        if (previousSibling) {\n          layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);\n          layout.mod = layout.prelim - midpoint;\n        } else {\n          layout.prelim = midpoint;\n        }\n      } else {\n        if (previousSibling) {\n          layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);\n        }\n      }\n    }\n\n    function secondWalk(node, x) {\n      node.x = node._tree.prelim + x;\n      var children = node.children;\n      if (children && (n = children.length)) {\n        var i = -1,\n            n;\n        x += node._tree.mod;\n        while (++i < n) {\n          secondWalk(children[i], x);\n        }\n      }\n    }\n\n    function apportion(node, previousSibling, ancestor) {\n      if (previousSibling) {\n        var vip = node,\n            vop = node,\n            vim = previousSibling,\n            vom = node.parent.children[0],\n            sip = vip._tree.mod,\n            sop = vop._tree.mod,\n            sim = vim._tree.mod,\n            som = vom._tree.mod,\n            shift;\n        while (vim = d3_layout_treeRight(vim), vip = d3_layout_treeLeft(vip), vim && vip) {\n          vom = d3_layout_treeLeft(vom);\n          vop = d3_layout_treeRight(vop);\n          vop._tree.ancestor = node;\n          shift = vim._tree.prelim + sim - vip._tree.prelim - sip + separation(vim, vip);\n          if (shift > 0) {\n            d3_layout_treeMove(d3_layout_treeAncestor(vim, node, ancestor), node, shift);\n            sip += shift;\n            sop += shift;\n          }\n          sim += vim._tree.mod;\n          sip += vip._tree.mod;\n          som += vom._tree.mod;\n          sop += vop._tree.mod;\n        }\n        if (vim && !d3_layout_treeRight(vop)) {\n          vop._tree.thread = vim;\n          vop._tree.mod += sim - sop;\n        }\n        if (vip && !d3_layout_treeLeft(vom)) {\n          vom._tree.thread = vip;\n          vom._tree.mod += sip - som;\n          ancestor = node;\n        }\n      }\n      return ancestor;\n    }\n\n    // Initialize temporary layout variables.\n    d3_layout_treeVisitAfter(root, function(node, previousSibling) {\n      node._tree = {\n        ancestor: node,\n        prelim: 0,\n        mod: 0,\n        change: 0,\n        shift: 0,\n        number: previousSibling ? previousSibling._tree.number + 1 : 0\n      };\n    });\n\n    // Compute the layout using Buchheim et al.'s algorithm.\n    firstWalk(root);\n    secondWalk(root, -root._tree.prelim);\n\n    // Compute the left-most, right-most, and depth-most nodes for extents.\n    var left = d3_layout_treeSearch(root, d3_layout_treeLeftmost),\n        right = d3_layout_treeSearch(root, d3_layout_treeRightmost),\n        deep = d3_layout_treeSearch(root, d3_layout_treeDeepest),\n        x0 = left.x - separation(left, right) / 2,\n        x1 = right.x + separation(right, left) / 2,\n        y1 = deep.depth || 1;\n\n    // Clear temporary layout variables; transform x and y.\n    d3_layout_treeVisitAfter(root, function(node) {\n      node.x = (node.x - x0) / (x1 - x0) * size[0];\n      node.y = node.depth / y1 * size[1];\n      delete node._tree;\n    });\n\n    return nodes;\n  }\n\n  tree.separation = function(x) {\n    if (!arguments.length) return separation;\n    separation = x;\n    return tree;\n  };\n\n  tree.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return tree;\n  };\n\n  return d3_layout_hierarchyRebind(tree, hierarchy);\n};\n\nfunction d3_layout_treeSeparation(a, b) {\n  return a.parent == b.parent ? 1 : 2;\n}\n\n// function d3_layout_treeSeparationRadial(a, b) {\n//   return (a.parent == b.parent ? 1 : 2) / a.depth;\n// }\n\nfunction d3_layout_treeLeft(node) {\n  var children = node.children;\n  return children && children.length ? children[0] : node._tree.thread;\n}\n\nfunction d3_layout_treeRight(node) {\n  var children = node.children,\n      n;\n  return children && (n = children.length) ? children[n - 1] : node._tree.thread;\n}\n\nfunction d3_layout_treeSearch(node, compare) {\n  var children = node.children;\n  if (children && (n = children.length)) {\n    var child,\n        n,\n        i = -1;\n    while (++i < n) {\n      if (compare(child = d3_layout_treeSearch(children[i], compare), node) > 0) {\n        node = child;\n      }\n    }\n  }\n  return node;\n}\n\nfunction d3_layout_treeRightmost(a, b) {\n  return a.x - b.x;\n}\n\nfunction d3_layout_treeLeftmost(a, b) {\n  return b.x - a.x;\n}\n\nfunction d3_layout_treeDeepest(a, b) {\n  return a.depth - b.depth;\n}\n\nfunction d3_layout_treeVisitAfter(node, callback) {\n  function visit(node, previousSibling) {\n    var children = node.children;\n    if (children && (n = children.length)) {\n      var child,\n          previousChild = null,\n          i = -1,\n          n;\n      while (++i < n) {\n        child = children[i];\n        visit(child, previousChild);\n        previousChild = child;\n      }\n    }\n    callback(node, previousSibling);\n  }\n  visit(node, null);\n}\n\nfunction d3_layout_treeShift(node) {\n  var shift = 0,\n      change = 0,\n      children = node.children,\n      i = children.length,\n      child;\n  while (--i >= 0) {\n    child = children[i]._tree;\n    child.prelim += shift;\n    child.mod += shift;\n    shift += child.shift + (change += child.change);\n  }\n}\n\nfunction d3_layout_treeMove(ancestor, node, shift) {\n  ancestor = ancestor._tree;\n  node = node._tree;\n  var change = shift / (node.number - ancestor.number);\n  ancestor.change += change;\n  node.change -= change;\n  node.shift += shift;\n  node.prelim += shift;\n  node.mod += shift;\n}\n\nfunction d3_layout_treeAncestor(vim, node, ancestor) {\n  return vim._tree.ancestor.parent == node.parent\n      ? vim._tree.ancestor\n      : ancestor;\n}\n// Squarified Treemaps by Mark Bruls, Kees Huizing, and Jarke J. van Wijk\n// Modified to support a target aspect ratio by Jeff Heer\nd3.layout.treemap = function() {\n  var hierarchy = d3.layout.hierarchy(),\n      round = Math.round,\n      size = [1, 1], // width, height\n      padding = null,\n      pad = d3_layout_treemapPadNull,\n      sticky = false,\n      stickies,\n      ratio = 0.5 * (1 + Math.sqrt(5)); // golden ratio\n\n  // Compute the area for each child based on value & scale.\n  function scale(children, k) {\n    var i = -1,\n        n = children.length,\n        child,\n        area;\n    while (++i < n) {\n      area = (child = children[i]).value * (k < 0 ? 0 : k);\n      child.area = isNaN(area) || area <= 0 ? 0 : area;\n    }\n  }\n\n  // Recursively arranges the specified node's children into squarified rows.\n  function squarify(node) {\n    var children = node.children;\n    if (children && children.length) {\n      var rect = pad(node),\n          row = [],\n          remaining = children.slice(), // copy-on-write\n          child,\n          best = Infinity, // the best row score so far\n          score, // the current row score\n          u = Math.min(rect.dx, rect.dy), // initial orientation\n          n;\n      scale(remaining, rect.dx * rect.dy / node.value);\n      row.area = 0;\n      while ((n = remaining.length) > 0) {\n        row.push(child = remaining[n - 1]);\n        row.area += child.area;\n        if ((score = worst(row, u)) <= best) { // continue with this orientation\n          remaining.pop();\n          best = score;\n        } else { // abort, and try a different orientation\n          row.area -= row.pop().area;\n          position(row, u, rect, false);\n          u = Math.min(rect.dx, rect.dy);\n          row.length = row.area = 0;\n          best = Infinity;\n        }\n      }\n      if (row.length) {\n        position(row, u, rect, true);\n        row.length = row.area = 0;\n      }\n      children.forEach(squarify);\n    }\n  }\n\n  // Recursively resizes the specified node's children into existing rows.\n  // Preserves the existing layout!\n  function stickify(node) {\n    var children = node.children;\n    if (children && children.length) {\n      var rect = pad(node),\n          remaining = children.slice(), // copy-on-write\n          child,\n          row = [];\n      scale(remaining, rect.dx * rect.dy / node.value);\n      row.area = 0;\n      while (child = remaining.pop()) {\n        row.push(child);\n        row.area += child.area;\n        if (child.z != null) {\n          position(row, child.z ? rect.dx : rect.dy, rect, !remaining.length);\n          row.length = row.area = 0;\n        }\n      }\n      children.forEach(stickify);\n    }\n  }\n\n  // Computes the score for the specified row, as the worst aspect ratio.\n  function worst(row, u) {\n    var s = row.area,\n        r,\n        rmax = 0,\n        rmin = Infinity,\n        i = -1,\n        n = row.length;\n    while (++i < n) {\n      if (!(r = row[i].area)) continue;\n      if (r < rmin) rmin = r;\n      if (r > rmax) rmax = r;\n    }\n    s *= s;\n    u *= u;\n    return s\n        ? Math.max((u * rmax * ratio) / s, s / (u * rmin * ratio))\n        : Infinity;\n  }\n\n  // Positions the specified row of nodes. Modifies `rect`.\n  function position(row, u, rect, flush) {\n    var i = -1,\n        n = row.length,\n        x = rect.x,\n        y = rect.y,\n        v = u ? round(row.area / u) : 0,\n        o;\n    if (u == rect.dx) { // horizontal subdivision\n      if (flush || v > rect.dy) v = rect.dy; // over+underflow\n      while (++i < n) {\n        o = row[i];\n        o.x = x;\n        o.y = y;\n        o.dy = v;\n        x += o.dx = Math.min(rect.x + rect.dx - x, v ? round(o.area / v) : 0);\n      }\n      o.z = true;\n      o.dx += rect.x + rect.dx - x; // rounding error\n      rect.y += v;\n      rect.dy -= v;\n    } else { // vertical subdivision\n      if (flush || v > rect.dx) v = rect.dx; // over+underflow\n      while (++i < n) {\n        o = row[i];\n        o.x = x;\n        o.y = y;\n        o.dx = v;\n        y += o.dy = Math.min(rect.y + rect.dy - y, v ? round(o.area / v) : 0);\n      }\n      o.z = false;\n      o.dy += rect.y + rect.dy - y; // rounding error\n      rect.x += v;\n      rect.dx -= v;\n    }\n  }\n\n  function treemap(d) {\n    var nodes = stickies || hierarchy(d),\n        root = nodes[0];\n    root.x = 0;\n    root.y = 0;\n    root.dx = size[0];\n    root.dy = size[1];\n    if (stickies) hierarchy.revalue(root);\n    scale([root], root.dx * root.dy / root.value);\n    (stickies ? stickify : squarify)(root);\n    if (sticky) stickies = nodes;\n    return nodes;\n  }\n\n  treemap.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return treemap;\n  };\n\n  treemap.padding = function(x) {\n    if (!arguments.length) return padding;\n\n    function padFunction(node) {\n      var p = x.call(treemap, node, node.depth);\n      return p == null\n          ? d3_layout_treemapPadNull(node)\n          : d3_layout_treemapPad(node, typeof p === \"number\" ? [p, p, p, p] : p);\n    }\n\n    function padConstant(node) {\n      return d3_layout_treemapPad(node, x);\n    }\n\n    var type;\n    pad = (padding = x) == null ? d3_layout_treemapPadNull\n        : (type = typeof x) === \"function\" ? padFunction\n        : type === \"number\" ? (x = [x, x, x, x], padConstant)\n        : padConstant;\n    return treemap;\n  };\n\n  treemap.round = function(x) {\n    if (!arguments.length) return round != Number;\n    round = x ? Math.round : Number;\n    return treemap;\n  };\n\n  treemap.sticky = function(x) {\n    if (!arguments.length) return sticky;\n    sticky = x;\n    stickies = null;\n    return treemap;\n  };\n\n  treemap.ratio = function(x) {\n    if (!arguments.length) return ratio;\n    ratio = x;\n    return treemap;\n  };\n\n  return d3_layout_hierarchyRebind(treemap, hierarchy);\n};\n\nfunction d3_layout_treemapPadNull(node) {\n  return {x: node.x, y: node.y, dx: node.dx, dy: node.dy};\n}\n\nfunction d3_layout_treemapPad(node, padding) {\n  var x = node.x + padding[3],\n      y = node.y + padding[0],\n      dx = node.dx - padding[1] - padding[3],\n      dy = node.dy - padding[0] - padding[2];\n  if (dx < 0) { x += dx / 2; dx = 0; }\n  if (dy < 0) { y += dy / 2; dy = 0; }\n  return {x: x, y: y, dx: dx, dy: dy};\n}\nd3.csv = function(url, callback) {\n  d3.text(url, \"text/csv\", function(text) {\n    callback(text && d3.csv.parse(text));\n  });\n};\nd3.csv.parse = function(text) {\n  var header;\n  return d3.csv.parseRows(text, function(row, i) {\n    if (i) {\n      var o = {}, j = -1, m = header.length;\n      while (++j < m) o[header[j]] = row[j];\n      return o;\n    } else {\n      header = row;\n      return null;\n    }\n  });\n};\n\nd3.csv.parseRows = function(text, f) {\n  var EOL = {}, // sentinel value for end-of-line\n      EOF = {}, // sentinel value for end-of-file\n      rows = [], // output rows\n      re = /\\r\\n|[,\\r\\n]/g, // field separator regex\n      n = 0, // the current line number\n      t, // the current token\n      eol; // is the current token followed by EOL?\n\n  re.lastIndex = 0; // work-around bug in FF 3.6\n\n  /** @private Returns the next token. */\n  function token() {\n    if (re.lastIndex >= text.length) return EOF; // special case: end of file\n    if (eol) { eol = false; return EOL; } // special case: end of line\n\n    // special case: quotes\n    var j = re.lastIndex;\n    if (text.charCodeAt(j) === 34) {\n      var i = j;\n      while (i++ < text.length) {\n        if (text.charCodeAt(i) === 34) {\n          if (text.charCodeAt(i + 1) !== 34) break;\n          i++;\n        }\n      }\n      re.lastIndex = i + 2;\n      var c = text.charCodeAt(i + 1);\n      if (c === 13) {\n        eol = true;\n        if (text.charCodeAt(i + 2) === 10) re.lastIndex++;\n      } else if (c === 10) {\n        eol = true;\n      }\n      return text.substring(j + 1, i).replace(/\"\"/g, \"\\\"\");\n    }\n\n    // common case\n    var m = re.exec(text);\n    if (m) {\n      eol = m[0].charCodeAt(0) !== 44;\n      return text.substring(j, m.index);\n    }\n    re.lastIndex = text.length;\n    return text.substring(j);\n  }\n\n  while ((t = token()) !== EOF) {\n    var a = [];\n    while ((t !== EOL) && (t !== EOF)) {\n      a.push(t);\n      t = token();\n    }\n    if (f && !(a = f(a, n++))) continue;\n    rows.push(a);\n  }\n\n  return rows;\n};\nd3.csv.format = function(rows) {\n  return rows.map(d3_csv_formatRow).join(\"\\n\");\n};\n\nfunction d3_csv_formatRow(row) {\n  return row.map(d3_csv_formatValue).join(\",\");\n}\n\nfunction d3_csv_formatValue(text) {\n  return /[\",\\n]/.test(text)\n      ? \"\\\"\" + text.replace(/\\\"/g, \"\\\"\\\"\") + \"\\\"\"\n      : text;\n}\nd3.geo = {};\n\nvar d3_geo_radians = Math.PI / 180;\n// TODO clip input coordinates on opposite hemisphere\nd3.geo.azimuthal = function() {\n  var mode = \"orthographic\", // or stereographic, gnomonic, equidistant or equalarea\n      origin,\n      scale = 200,\n      translate = [480, 250],\n      x0,\n      y0,\n      cy0,\n      sy0;\n\n  function azimuthal(coordinates) {\n    var x1 = coordinates[0] * d3_geo_radians - x0,\n        y1 = coordinates[1] * d3_geo_radians,\n        cx1 = Math.cos(x1),\n        sx1 = Math.sin(x1),\n        cy1 = Math.cos(y1),\n        sy1 = Math.sin(y1),\n        cc = mode !== \"orthographic\" ? sy0 * sy1 + cy0 * cy1 * cx1 : null,\n        c,\n        k = mode === \"stereographic\" ? 1 / (1 + cc)\n          : mode === \"gnomonic\" ? 1 / cc\n          : mode === \"equidistant\" ? (c = Math.acos(cc), c ? c / Math.sin(c) : 0)\n          : mode === \"equalarea\" ? Math.sqrt(2 / (1 + cc))\n          : 1,\n        x = k * cy1 * sx1,\n        y = k * (sy0 * cy1 * cx1 - cy0 * sy1);\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  azimuthal.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale,\n        p = Math.sqrt(x * x + y * y),\n        c = mode === \"stereographic\" ? 2 * Math.atan(p)\n          : mode === \"gnomonic\" ? Math.atan(p)\n          : mode === \"equidistant\" ? p\n          : mode === \"equalarea\" ? 2 * Math.asin(.5 * p)\n          : Math.asin(p),\n        sc = Math.sin(c),\n        cc = Math.cos(c);\n    return [\n      (x0 + Math.atan2(x * sc, p * cy0 * cc + y * sy0 * sc)) / d3_geo_radians,\n      Math.asin(cc * sy0 - (p ? (y * sc * cy0) / p : 0)) / d3_geo_radians\n    ];\n  };\n\n  azimuthal.mode = function(x) {\n    if (!arguments.length) return mode;\n    mode = x + \"\";\n    return azimuthal;\n  };\n\n  azimuthal.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    x0 = origin[0] * d3_geo_radians;\n    y0 = origin[1] * d3_geo_radians;\n    cy0 = Math.cos(y0);\n    sy0 = Math.sin(y0);\n    return azimuthal;\n  };\n\n  azimuthal.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return azimuthal;\n  };\n\n  azimuthal.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return azimuthal;\n  };\n\n  return azimuthal.origin([0, 0]);\n};\n// Derived from Tom Carden's Albers implementation for Protovis.\n// http://gist.github.com/476238\n// http://mathworld.wolfram.com/AlbersEqual-AreaConicProjection.html\n\nd3.geo.albers = function() {\n  var origin = [-98, 38],\n      parallels = [29.5, 45.5],\n      scale = 1000,\n      translate = [480, 250],\n      lng0, // d3_geo_radians * origin[0]\n      n,\n      C,\n      p0;\n\n  function albers(coordinates) {\n    var t = n * (d3_geo_radians * coordinates[0] - lng0),\n        p = Math.sqrt(C - 2 * n * Math.sin(d3_geo_radians * coordinates[1])) / n;\n    return [\n      scale * p * Math.sin(t) + translate[0],\n      scale * (p * Math.cos(t) - p0) + translate[1]\n    ];\n  }\n\n  albers.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale,\n        p0y = p0 + y,\n        t = Math.atan2(x, p0y),\n        p = Math.sqrt(x * x + p0y * p0y);\n    return [\n      (lng0 + t / n) / d3_geo_radians,\n      Math.asin((C - p * p * n * n) / (2 * n)) / d3_geo_radians\n    ];\n  };\n\n  function reload() {\n    var phi1 = d3_geo_radians * parallels[0],\n        phi2 = d3_geo_radians * parallels[1],\n        lat0 = d3_geo_radians * origin[1],\n        s = Math.sin(phi1),\n        c = Math.cos(phi1);\n    lng0 = d3_geo_radians * origin[0];\n    n = .5 * (s + Math.sin(phi2));\n    C = c * c + 2 * n * s;\n    p0 = Math.sqrt(C - 2 * n * Math.sin(lat0)) / n;\n    return albers;\n  }\n\n  albers.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = [+x[0], +x[1]];\n    return reload();\n  };\n\n  albers.parallels = function(x) {\n    if (!arguments.length) return parallels;\n    parallels = [+x[0], +x[1]];\n    return reload();\n  };\n\n  albers.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return albers;\n  };\n\n  albers.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return albers;\n  };\n\n  return reload();\n};\n\n// A composite projection for the United States, 960x500. The set of standard\n// parallels for each region comes from USGS, which is published here:\n// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers\n// TODO allow the composite projection to be rescaled?\nd3.geo.albersUsa = function() {\n  var lower48 = d3.geo.albers();\n\n  var alaska = d3.geo.albers()\n      .origin([-160, 60])\n      .parallels([55, 65]);\n\n  var hawaii = d3.geo.albers()\n      .origin([-160, 20])\n      .parallels([8, 18]);\n\n  var puertoRico = d3.geo.albers()\n      .origin([-60, 10])\n      .parallels([8, 18]);\n\n  function albersUsa(coordinates) {\n    var lon = coordinates[0],\n        lat = coordinates[1];\n    return (lat > 50 ? alaska\n        : lon < -140 ? hawaii\n        : lat < 21 ? puertoRico\n        : lower48)(coordinates);\n  }\n\n  albersUsa.scale = function(x) {\n    if (!arguments.length) return lower48.scale();\n    lower48.scale(x);\n    alaska.scale(x * .6);\n    hawaii.scale(x);\n    puertoRico.scale(x * 1.5);\n    return albersUsa.translate(lower48.translate());\n  };\n\n  albersUsa.translate = function(x) {\n    if (!arguments.length) return lower48.translate();\n    var dz = lower48.scale() / 1000,\n        dx = x[0],\n        dy = x[1];\n    lower48.translate(x);\n    alaska.translate([dx - 400 * dz, dy + 170 * dz]);\n    hawaii.translate([dx - 190 * dz, dy + 200 * dz]);\n    puertoRico.translate([dx + 580 * dz, dy + 430 * dz]);\n    return albersUsa;\n  };\n\n  return albersUsa.scale(lower48.scale());\n};\nd3.geo.bonne = function() {\n  var scale = 200,\n      translate = [480, 250],\n      x0, // origin longitude in radians\n      y0, // origin latitude in radians\n      y1, // parallel latitude in radians\n      c1; // cot(y1)\n\n  function bonne(coordinates) {\n    var x = coordinates[0] * d3_geo_radians - x0,\n        y = coordinates[1] * d3_geo_radians - y0;\n    if (y1) {\n      var p = c1 + y1 - y, E = x * Math.cos(y) / p;\n      x = p * Math.sin(E);\n      y = p * Math.cos(E) - c1;\n    } else {\n      x *= Math.cos(y);\n      y *= -1;\n    }\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  bonne.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    if (y1) {\n      var c = c1 + y, p = Math.sqrt(x * x + c * c);\n      y = c1 + y1 - p;\n      x = x0 + p * Math.atan2(x, c) / Math.cos(y);\n    } else {\n      y *= -1;\n      x /= Math.cos(y);\n    }\n    return [\n      x / d3_geo_radians,\n      y / d3_geo_radians\n    ];\n  };\n\n  // 90° for Werner, 0° for Sinusoidal\n  bonne.parallel = function(x) {\n    if (!arguments.length) return y1 / d3_geo_radians;\n    c1 = 1 / Math.tan(y1 = x * d3_geo_radians);\n    return bonne;\n  };\n\n  bonne.origin = function(x) {\n    if (!arguments.length) return [x0 / d3_geo_radians, y0 / d3_geo_radians];\n    x0 = x[0] * d3_geo_radians;\n    y0 = x[1] * d3_geo_radians;\n    return bonne;\n  };\n\n  bonne.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return bonne;\n  };\n\n  bonne.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return bonne;\n  };\n\n  return bonne.origin([0, 0]).parallel(45);\n};\nd3.geo.equirectangular = function() {\n  var scale = 500,\n      translate = [480, 250];\n\n  function equirectangular(coordinates) {\n    var x = coordinates[0] / 360,\n        y = -coordinates[1] / 360;\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  equirectangular.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    return [\n      360 * x,\n      -360 * y\n    ];\n  };\n\n  equirectangular.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return equirectangular;\n  };\n\n  equirectangular.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return equirectangular;\n  };\n\n  return equirectangular;\n};\nd3.geo.mercator = function() {\n  var scale = 500,\n      translate = [480, 250];\n\n  function mercator(coordinates) {\n    var x = coordinates[0] / 360,\n        y = -(Math.log(Math.tan(Math.PI / 4 + coordinates[1] * d3_geo_radians / 2)) / d3_geo_radians) / 360;\n    return [\n      scale * x + translate[0],\n      scale * Math.max(-.5, Math.min(.5, y)) + translate[1]\n    ];\n  }\n\n  mercator.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    return [\n      360 * x,\n      2 * Math.atan(Math.exp(-360 * y * d3_geo_radians)) / d3_geo_radians - 90\n    ];\n  };\n\n  mercator.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return mercator;\n  };\n\n  mercator.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return mercator;\n  };\n\n  return mercator;\n};\nfunction d3_geo_type(types, defaultValue) {\n  return function(object) {\n    return object && types.hasOwnProperty(object.type) ? types[object.type](object) : defaultValue;\n  };\n}\n/**\n * Returns a function that, given a GeoJSON object (e.g., a feature), returns\n * the corresponding SVG path. The function can be customized by overriding the\n * projection. Point features are mapped to circles with a default radius of\n * 4.5px; the radius can be specified either as a constant or a function that\n * is evaluated per object.\n */\nd3.geo.path = function() {\n  var pointRadius = 4.5,\n      pointCircle = d3_path_circle(pointRadius),\n      projection = d3.geo.albersUsa();\n\n  function path(d, i) {\n    if (typeof pointRadius === \"function\") {\n      pointCircle = d3_path_circle(pointRadius.apply(this, arguments));\n    }\n    return pathType(d) || null;\n  }\n\n  function project(coordinates) {\n    return projection(coordinates).join(\",\");\n  }\n\n  var pathType = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var path = [],\n          features = o.features,\n          i = -1, // features.index\n          n = features.length;\n      while (++i < n) path.push(pathType(features[i].geometry));\n      return path.join(\"\");\n    },\n\n    Feature: function(o) {\n      return pathType(o.geometry);\n    },\n\n    Point: function(o) {\n      return \"M\" + project(o.coordinates) + pointCircle;\n    },\n\n    MultiPoint: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length;\n      while (++i < n) path.push(\"M\", project(coordinates[i]), pointCircle);\n      return path.join(\"\");\n    },\n\n    LineString: function(o) {\n      var path = [\"M\"],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length;\n      while (++i < n) path.push(project(coordinates[i]), \"L\");\n      path.pop();\n      return path.join(\"\");\n    },\n\n    MultiLineString: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates.index\n          m; // subcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        m = subcoordinates.length;\n        path.push(\"M\");\n        while (++j < m) path.push(project(subcoordinates[j]), \"L\");\n        path.pop();\n      }\n      return path.join(\"\");\n    },\n\n    Polygon: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates.index\n          m; // subcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        if ((m = subcoordinates.length - 1) > 0) {\n          path.push(\"M\");\n          while (++j < m) path.push(project(subcoordinates[j]), \"L\");\n          path[path.length - 1] = \"Z\";\n        }\n      }\n      return path.join(\"\");\n    },\n\n    MultiPolygon: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates index\n          m, // subcoordinates.length\n          subsubcoordinates, // subcoordinates[j]\n          k, // subsubcoordinates index\n          p; // subsubcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        m = subcoordinates.length;\n        while (++j < m) {\n          subsubcoordinates = subcoordinates[j];\n          k = -1;\n          if ((p = subsubcoordinates.length - 1) > 0) {\n            path.push(\"M\");\n            while (++k < p) path.push(project(subsubcoordinates[k]), \"L\");\n            path[path.length - 1] = \"Z\";\n          }\n        }\n      }\n      return path.join(\"\");\n    },\n\n    GeometryCollection: function(o) {\n      var path = [],\n          geometries = o.geometries,\n          i = -1, // geometries index\n          n = geometries.length;\n      while (++i < n) path.push(pathType(geometries[i]));\n      return path.join(\"\");\n    }\n\n  });\n\n  var areaType = path.area = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var area = 0,\n          features = o.features,\n          i = -1, // features.index\n          n = features.length;\n      while (++i < n) area += areaType(features[i]);\n      return area;\n    },\n\n    Feature: function(o) {\n      return areaType(o.geometry);\n    },\n\n    Polygon: function(o) {\n      return polygonArea(o.coordinates);\n    },\n\n    MultiPolygon: function(o) {\n      var sum = 0,\n          coordinates = o.coordinates,\n          i = -1, // coordinates index\n          n = coordinates.length;\n      while (++i < n) sum += polygonArea(coordinates[i]);\n      return sum;\n    },\n\n    GeometryCollection: function(o) {\n      var sum = 0,\n          geometries = o.geometries,\n          i = -1, // geometries index\n          n = geometries.length;\n      while (++i < n) sum += areaType(geometries[i]);\n      return sum;\n    }\n\n  }, 0);\n\n  function polygonArea(coordinates) {\n    var sum = area(coordinates[0]), // exterior ring\n        i = 0, // coordinates.index\n        n = coordinates.length;\n    while (++i < n) sum -= area(coordinates[i]); // holes\n    return sum;\n  }\n\n  function polygonCentroid(coordinates) {\n    var polygon = d3.geom.polygon(coordinates[0].map(projection)), // exterior ring\n        area = polygon.area(),\n        centroid = polygon.centroid(area < 0 ? (area *= -1, 1) : -1),\n        x = centroid[0],\n        y = centroid[1],\n        z = area,\n        i = 0, // coordinates index\n        n = coordinates.length;\n    while (++i < n) {\n      polygon = d3.geom.polygon(coordinates[i].map(projection)); // holes\n      area = polygon.area();\n      centroid = polygon.centroid(area < 0 ? (area *= -1, 1) : -1);\n      x -= centroid[0];\n      y -= centroid[1];\n      z -= area;\n    }\n    return [x, y, 6 * z]; // weighted centroid\n  }\n\n  var centroidType = path.centroid = d3_geo_type({\n\n    // TODO FeatureCollection\n    // TODO Point\n    // TODO MultiPoint\n    // TODO LineString\n    // TODO MultiLineString\n    // TODO GeometryCollection\n\n    Feature: function(o) {\n      return centroidType(o.geometry);\n    },\n\n    Polygon: function(o) {\n      var centroid = polygonCentroid(o.coordinates);\n      return [centroid[0] / centroid[2], centroid[1] / centroid[2]];\n    },\n\n    MultiPolygon: function(o) {\n      var area = 0,\n          coordinates = o.coordinates,\n          centroid,\n          x = 0,\n          y = 0,\n          z = 0,\n          i = -1, // coordinates index\n          n = coordinates.length;\n      while (++i < n) {\n        centroid = polygonCentroid(coordinates[i]);\n        x += centroid[0];\n        y += centroid[1];\n        z += centroid[2];\n      }\n      return [x / z, y / z];\n    }\n\n  });\n\n  function area(coordinates) {\n    return Math.abs(d3.geom.polygon(coordinates.map(projection)).area());\n  }\n\n  path.projection = function(x) {\n    projection = x;\n    return path;\n  };\n\n  path.pointRadius = function(x) {\n    if (typeof x === \"function\") pointRadius = x;\n    else {\n      pointRadius = +x;\n      pointCircle = d3_path_circle(pointRadius);\n    }\n    return path;\n  };\n\n  return path;\n};\n\nfunction d3_path_circle(radius) {\n  return \"m0,\" + radius\n      + \"a\" + radius + \",\" + radius + \" 0 1,1 0,\" + (-2 * radius)\n      + \"a\" + radius + \",\" + radius + \" 0 1,1 0,\" + (+2 * radius)\n      + \"z\";\n}\n/**\n * Given a GeoJSON object, returns the corresponding bounding box. The bounding\n * box is represented by a two-dimensional array: [[left, bottom], [right,\n * top]], where left is the minimum longitude, bottom is the minimum latitude,\n * right is maximum longitude, and top is the maximum latitude.\n */\nd3.geo.bounds = function(feature) {\n  var left = Infinity,\n      bottom = Infinity,\n      right = -Infinity,\n      top = -Infinity;\n  d3_geo_bounds(feature, function(x, y) {\n    if (x < left) left = x;\n    if (x > right) right = x;\n    if (y < bottom) bottom = y;\n    if (y > top) top = y;\n  });\n  return [[left, bottom], [right, top]];\n};\n\nfunction d3_geo_bounds(o, f) {\n  if (d3_geo_boundsTypes.hasOwnProperty(o.type)) d3_geo_boundsTypes[o.type](o, f);\n}\n\nvar d3_geo_boundsTypes = {\n  Feature: d3_geo_boundsFeature,\n  FeatureCollection: d3_geo_boundsFeatureCollection,\n  GeometryCollection: d3_geo_boundsGeometryCollection,\n  LineString: d3_geo_boundsLineString,\n  MultiLineString: d3_geo_boundsMultiLineString,\n  MultiPoint: d3_geo_boundsLineString,\n  MultiPolygon: d3_geo_boundsMultiPolygon,\n  Point: d3_geo_boundsPoint,\n  Polygon: d3_geo_boundsPolygon\n};\n\nfunction d3_geo_boundsFeature(o, f) {\n  d3_geo_bounds(o.geometry, f);\n}\n\nfunction d3_geo_boundsFeatureCollection(o, f) {\n  for (var a = o.features, i = 0, n = a.length; i < n; i++) {\n    d3_geo_bounds(a[i].geometry, f);\n  }\n}\n\nfunction d3_geo_boundsGeometryCollection(o, f) {\n  for (var a = o.geometries, i = 0, n = a.length; i < n; i++) {\n    d3_geo_bounds(a[i], f);\n  }\n}\n\nfunction d3_geo_boundsLineString(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    f.apply(null, a[i]);\n  }\n}\n\nfunction d3_geo_boundsMultiLineString(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    for (var b = a[i], j = 0, m = b.length; j < m; j++) {\n      f.apply(null, b[j]);\n    }\n  }\n}\n\nfunction d3_geo_boundsMultiPolygon(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    for (var b = a[i][0], j = 0, m = b.length; j < m; j++) {\n      f.apply(null, b[j]);\n    }\n  }\n}\n\nfunction d3_geo_boundsPoint(o, f) {\n  f.apply(null, o.coordinates);\n}\n\nfunction d3_geo_boundsPolygon(o, f) {\n  for (var a = o.coordinates[0], i = 0, n = a.length; i < n; i++) {\n    f.apply(null, a[i]);\n  }\n}\n// TODO breakAtDateLine?\n\nd3.geo.circle = function() {\n  var origin = [0, 0],\n      degrees = 90 - 1e-2,\n      radians = degrees * d3_geo_radians,\n      arc = d3.geo.greatArc().target(Object);\n\n  function circle() {\n    // TODO render a circle as a Polygon\n  }\n\n  function visible(point) {\n    return arc.distance(point) < radians;\n  }\n\n  circle.clip = function(d) {\n    arc.source(typeof origin === \"function\" ? origin.apply(this, arguments) : origin);\n    return clipType(d);\n  };\n\n  var clipType = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var features = o.features.map(clipType).filter(Object);\n      return features && (o = Object.create(o), o.features = features, o);\n    },\n\n    Feature: function(o) {\n      var geometry = clipType(o.geometry);\n      return geometry && (o = Object.create(o), o.geometry = geometry, o);\n    },\n\n    Point: function(o) {\n      return visible(o.coordinates) && o;\n    },\n\n    MultiPoint: function(o) {\n      var coordinates = o.coordinates.filter(visible);\n      return coordinates.length && {\n        type: o.type,\n        coordinates: coordinates\n      };\n    },\n\n    LineString: function(o) {\n      var coordinates = clip(o.coordinates);\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    MultiLineString: function(o) {\n      var coordinates = o.coordinates.map(clip).filter(function(d) { return d.length; });\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    Polygon: function(o) {\n      var coordinates = o.coordinates.map(clip);\n      return coordinates[0].length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    MultiPolygon: function(o) {\n      var coordinates = o.coordinates.map(function(d) { return d.map(clip); }).filter(function(d) { return d[0].length; });\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    GeometryCollection: function(o) {\n      var geometries = o.geometries.map(clipType).filter(Object);\n      return geometries.length && (o = Object.create(o), o.geometries = geometries, o);\n    }\n\n  });\n\n  function clip(coordinates) {\n    var i = -1,\n        n = coordinates.length,\n        clipped = [],\n        p0,\n        p1,\n        p2,\n        d0,\n        d1;\n\n    while (++i < n) {\n      d1 = arc.distance(p2 = coordinates[i]);\n      if (d1 < radians) {\n        if (p1) clipped.push(d3_geo_greatArcInterpolate(p1, p2)((d0 - radians) / (d0 - d1)));\n        clipped.push(p2);\n        p0 = p1 = null;\n      } else {\n        p1 = p2;\n        if (!p0 && clipped.length) {\n          clipped.push(d3_geo_greatArcInterpolate(clipped[clipped.length - 1], p1)((radians - d0) / (d1 - d0)));\n          p0 = p1;\n        }\n      }\n      d0 = d1;\n    }\n\n    if (p1 && clipped.length) {\n      d1 = arc.distance(p2 = clipped[0]);\n      clipped.push(d3_geo_greatArcInterpolate(p1, p2)((d0 - radians) / (d0 - d1)));\n    }\n\n    return resample(clipped);\n  }\n\n  // Resample coordinates, creating great arcs between each.\n  function resample(coordinates) {\n    var i = 0,\n        n = coordinates.length,\n        j,\n        m,\n        resampled = n ? [coordinates[0]] : coordinates,\n        resamples,\n        origin = arc.source();\n\n    while (++i < n) {\n      resamples = arc.source(coordinates[i - 1])(coordinates[i]).coordinates;\n      for (j = 0, m = resamples.length; ++j < m;) resampled.push(resamples[j]);\n    }\n\n    arc.source(origin);\n    return resampled;\n  }\n\n  circle.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    return circle;\n  };\n\n  circle.angle = function(x) {\n    if (!arguments.length) return degrees;\n    radians = (degrees = +x) * d3_geo_radians;\n    return circle;\n  };\n\n  // Precision is specified in degrees.\n  circle.precision = function(x) {\n    if (!arguments.length) return arc.precision();\n    arc.precision(x);\n    return circle;\n  };\n\n  return circle;\n}\nd3.geo.greatArc = function() {\n  var source = d3_geo_greatArcSource,\n      target = d3_geo_greatArcTarget,\n      precision = 6 * d3_geo_radians;\n\n  function greatArc() {\n    var a = typeof source === \"function\" ? source.apply(this, arguments) : source,\n        b = typeof target === \"function\" ? target.apply(this, arguments) : target,\n        i = d3_geo_greatArcInterpolate(a, b),\n        dt = precision / i.d,\n        t = 0,\n        coordinates = [a];\n    while ((t += dt) < 1) coordinates.push(i(t));\n    coordinates.push(b);\n    return {\n      type: \"LineString\",\n      coordinates: coordinates\n    };\n  }\n\n  // Length returned in radians; multiply by radius for distance.\n  greatArc.distance = function() {\n    var a = typeof source === \"function\" ? source.apply(this, arguments) : source,\n        b = typeof target === \"function\" ? target.apply(this, arguments) : target;\n     return d3_geo_greatArcInterpolate(a, b).d;\n  };\n\n  greatArc.source = function(x) {\n    if (!arguments.length) return source;\n    source = x;\n    return greatArc;\n  };\n\n  greatArc.target = function(x) {\n    if (!arguments.length) return target;\n    target = x;\n    return greatArc;\n  };\n\n  // Precision is specified in degrees.\n  greatArc.precision = function(x) {\n    if (!arguments.length) return precision / d3_geo_radians;\n    precision = x * d3_geo_radians;\n    return greatArc;\n  };\n\n  return greatArc;\n};\n\nfunction d3_geo_greatArcSource(d) {\n  return d.source;\n}\n\nfunction d3_geo_greatArcTarget(d) {\n  return d.target;\n}\n\nfunction d3_geo_greatArcInterpolate(a, b) {\n  var x0 = a[0] * d3_geo_radians, cx0 = Math.cos(x0), sx0 = Math.sin(x0),\n      y0 = a[1] * d3_geo_radians, cy0 = Math.cos(y0), sy0 = Math.sin(y0),\n      x1 = b[0] * d3_geo_radians, cx1 = Math.cos(x1), sx1 = Math.sin(x1),\n      y1 = b[1] * d3_geo_radians, cy1 = Math.cos(y1), sy1 = Math.sin(y1),\n      d = interpolate.d = Math.acos(Math.max(-1, Math.min(1, sy0 * sy1 + cy0 * cy1 * Math.cos(x1 - x0)))),\n      sd = Math.sin(d);\n\n  // From http://williams.best.vwh.net/avform.htm#Intermediate\n  function interpolate(t) {\n    var A = Math.sin(d - (t *= d)) / sd,\n        B = Math.sin(t) / sd,\n        x = A * cy0 * cx0 + B * cy1 * cx1,\n        y = A * cy0 * sx0 + B * cy1 * sx1,\n        z = A * sy0       + B * sy1;\n    return [\n      Math.atan2(y, x) / d3_geo_radians,\n      Math.atan2(z, Math.sqrt(x * x + y * y)) / d3_geo_radians\n    ];\n  }\n\n  return interpolate;\n}\nd3.geo.greatCircle = d3.geo.circle;\nd3.geom = {};\n/**\n * Computes a contour for a given input grid function using the <a\n * href=\"http://en.wikipedia.org/wiki/Marching_squares\">marching\n * squares</a> algorithm. Returns the contour polygon as an array of points.\n *\n * @param grid a two-input function(x, y) that returns true for values\n * inside the contour and false for values outside the contour.\n * @param start an optional starting point [x, y] on the grid.\n * @returns polygon [[x1, y1], [x2, y2], …]\n */\nd3.geom.contour = function(grid, start) {\n  var s = start || d3_geom_contourStart(grid), // starting point\n      c = [],    // contour polygon\n      x = s[0],  // current x position\n      y = s[1],  // current y position\n      dx = 0,    // next x direction\n      dy = 0,    // next y direction\n      pdx = NaN, // previous x direction\n      pdy = NaN, // previous y direction\n      i = 0;\n\n  do {\n    // determine marching squares index\n    i = 0;\n    if (grid(x-1, y-1)) i += 1;\n    if (grid(x,   y-1)) i += 2;\n    if (grid(x-1, y  )) i += 4;\n    if (grid(x,   y  )) i += 8;\n\n    // determine next direction\n    if (i === 6) {\n      dx = pdy === -1 ? -1 : 1;\n      dy = 0;\n    } else if (i === 9) {\n      dx = 0;\n      dy = pdx === 1 ? -1 : 1;\n    } else {\n      dx = d3_geom_contourDx[i];\n      dy = d3_geom_contourDy[i];\n    }\n\n    // update contour polygon\n    if (dx != pdx && dy != pdy) {\n      c.push([x, y]);\n      pdx = dx;\n      pdy = dy;\n    }\n\n    x += dx;\n    y += dy;\n  } while (s[0] != x || s[1] != y);\n\n  return c;\n};\n\n// lookup tables for marching directions\nvar d3_geom_contourDx = [1, 0, 1, 1,-1, 0,-1, 1,0, 0,0,0,-1, 0,-1,NaN],\n    d3_geom_contourDy = [0,-1, 0, 0, 0,-1, 0, 0,1,-1,1,1, 0,-1, 0,NaN];\n\nfunction d3_geom_contourStart(grid) {\n  var x = 0,\n      y = 0;\n\n  // search for a starting point; begin at origin\n  // and proceed along outward-expanding diagonals\n  while (true) {\n    if (grid(x,y)) {\n      return [x,y];\n    }\n    if (x === 0) {\n      x = y + 1;\n      y = 0;\n    } else {\n      x = x - 1;\n      y = y + 1;\n    }\n  }\n}\n/**\n * Computes the 2D convex hull of a set of points using Graham's scanning\n * algorithm. The algorithm has been implemented as described in Cormen,\n * Leiserson, and Rivest's Introduction to Algorithms. The running time of\n * this algorithm is O(n log n), where n is the number of input points.\n *\n * @param vertices [[x1, y1], [x2, y2], …]\n * @returns polygon [[x1, y1], [x2, y2], …]\n */\nd3.geom.hull = function(vertices) {\n  if (vertices.length < 3) return [];\n\n  var len = vertices.length,\n      plen = len - 1,\n      points = [],\n      stack = [],\n      i, j, h = 0, x1, y1, x2, y2, u, v, a, sp;\n\n  // find the starting ref point: leftmost point with the minimum y coord\n  for (i=1; i<len; ++i) {\n    if (vertices[i][1] < vertices[h][1]) {\n      h = i;\n    } else if (vertices[i][1] == vertices[h][1]) {\n      h = (vertices[i][0] < vertices[h][0] ? i : h);\n    }\n  }\n\n  // calculate polar angles from ref point and sort\n  for (i=0; i<len; ++i) {\n    if (i === h) continue;\n    y1 = vertices[i][1] - vertices[h][1];\n    x1 = vertices[i][0] - vertices[h][0];\n    points.push({angle: Math.atan2(y1, x1), index: i});\n  }\n  points.sort(function(a, b) { return a.angle - b.angle; });\n\n  // toss out duplicate angles\n  a = points[0].angle;\n  v = points[0].index;\n  u = 0;\n  for (i=1; i<plen; ++i) {\n    j = points[i].index;\n    if (a == points[i].angle) {\n      // keep angle for point most distant from the reference\n      x1 = vertices[v][0] - vertices[h][0];\n      y1 = vertices[v][1] - vertices[h][1];\n      x2 = vertices[j][0] - vertices[h][0];\n      y2 = vertices[j][1] - vertices[h][1];\n      if ((x1*x1 + y1*y1) >= (x2*x2 + y2*y2)) {\n        points[i].index = -1;\n      } else {\n        points[u].index = -1;\n        a = points[i].angle;\n        u = i;\n        v = j;\n      }\n    } else {\n      a = points[i].angle;\n      u = i;\n      v = j;\n    }\n  }\n\n  // initialize the stack\n  stack.push(h);\n  for (i=0, j=0; i<2; ++j) {\n    if (points[j].index !== -1) {\n      stack.push(points[j].index);\n      i++;\n    }\n  }\n  sp = stack.length;\n\n  // do graham's scan\n  for (; j<plen; ++j) {\n    if (points[j].index === -1) continue; // skip tossed out points\n    while (!d3_geom_hullCCW(stack[sp-2], stack[sp-1], points[j].index, vertices)) {\n      --sp;\n    }\n    stack[sp++] = points[j].index;\n  }\n\n  // construct the hull\n  var poly = [];\n  for (i=0; i<sp; ++i) {\n    poly.push(vertices[stack[i]]);\n  }\n  return poly;\n}\n\n// are three points in counter-clockwise order?\nfunction d3_geom_hullCCW(i1, i2, i3, v) {\n  var t, a, b, c, d, e, f;\n  t = v[i1]; a = t[0]; b = t[1];\n  t = v[i2]; c = t[0]; d = t[1];\n  t = v[i3]; e = t[0]; f = t[1];\n  return ((f-b)*(c-a) - (d-b)*(e-a)) > 0;\n}\n// Note: requires coordinates to be counterclockwise and convex!\nd3.geom.polygon = function(coordinates) {\n\n  coordinates.area = function() {\n    var i = 0,\n        n = coordinates.length,\n        a = coordinates[n - 1][0] * coordinates[0][1],\n        b = coordinates[n - 1][1] * coordinates[0][0];\n    while (++i < n) {\n      a += coordinates[i - 1][0] * coordinates[i][1];\n      b += coordinates[i - 1][1] * coordinates[i][0];\n    }\n    return (b - a) * .5;\n  };\n\n  coordinates.centroid = function(k) {\n    var i = -1,\n        n = coordinates.length,\n        x = 0,\n        y = 0,\n        a,\n        b = coordinates[n - 1],\n        c;\n    if (!arguments.length) k = -1 / (6 * coordinates.area());\n    while (++i < n) {\n      a = b;\n      b = coordinates[i];\n      c = a[0] * b[1] - b[0] * a[1];\n      x += (a[0] + b[0]) * c;\n      y += (a[1] + b[1]) * c;\n    }\n    return [x * k, y * k];\n  };\n\n  // The Sutherland-Hodgman clipping algorithm.\n  coordinates.clip = function(subject) {\n    var input,\n        i = -1,\n        n = coordinates.length,\n        j,\n        m,\n        a = coordinates[n - 1],\n        b,\n        c,\n        d;\n    while (++i < n) {\n      input = subject.slice();\n      subject.length = 0;\n      b = coordinates[i];\n      c = input[(m = input.length) - 1];\n      j = -1;\n      while (++j < m) {\n        d = input[j];\n        if (d3_geom_polygonInside(d, a, b)) {\n          if (!d3_geom_polygonInside(c, a, b)) {\n            subject.push(d3_geom_polygonIntersect(c, d, a, b));\n          }\n          subject.push(d);\n        } else if (d3_geom_polygonInside(c, a, b)) {\n          subject.push(d3_geom_polygonIntersect(c, d, a, b));\n        }\n        c = d;\n      }\n      a = b;\n    }\n    return subject;\n  };\n\n  return coordinates;\n};\n\nfunction d3_geom_polygonInside(p, a, b) {\n  return (b[0] - a[0]) * (p[1] - a[1]) < (b[1] - a[1]) * (p[0] - a[0]);\n}\n\n// Intersect two infinite lines cd and ab.\nfunction d3_geom_polygonIntersect(c, d, a, b) {\n  var x1 = c[0], x2 = d[0], x3 = a[0], x4 = b[0],\n      y1 = c[1], y2 = d[1], y3 = a[1], y4 = b[1],\n      x13 = x1 - x3,\n      x21 = x2 - x1,\n      x43 = x4 - x3,\n      y13 = y1 - y3,\n      y21 = y2 - y1,\n      y43 = y4 - y3,\n      ua = (x43 * y13 - y43 * x13) / (y43 * x21 - x43 * y21);\n  return [x1 + ua * x21, y1 + ua * y21];\n}\n// Adapted from Nicolas Garcia Belmonte's JIT implementation:\n// http://blog.thejit.org/2010/02/12/voronoi-tessellation/\n// http://blog.thejit.org/assets/voronoijs/voronoi.js\n// See lib/jit/LICENSE for details.\n\n// Notes:\n//\n// This implementation does not clip the returned polygons, so if you want to\n// clip them to a particular shape you will need to do that either in SVG or by\n// post-processing with d3.geom.polygon's clip method.\n//\n// If any vertices are coincident or have NaN positions, the behavior of this\n// method is undefined. Most likely invalid polygons will be returned. You\n// should filter invalid points, and consolidate coincident points, before\n// computing the tessellation.\n\n/**\n * @param vertices [[x1, y1], [x2, y2], …]\n * @returns polygons [[[x1, y1], [x2, y2], …], …]\n */\nd3.geom.voronoi = function(vertices) {\n  var polygons = vertices.map(function() { return []; });\n\n  d3_voronoi_tessellate(vertices, function(e) {\n    var s1,\n        s2,\n        x1,\n        x2,\n        y1,\n        y2;\n    if (e.a === 1 && e.b >= 0) {\n      s1 = e.ep.r;\n      s2 = e.ep.l;\n    } else {\n      s1 = e.ep.l;\n      s2 = e.ep.r;\n    }\n    if (e.a === 1) {\n      y1 = s1 ? s1.y : -1e6;\n      x1 = e.c - e.b * y1;\n      y2 = s2 ? s2.y : 1e6;\n      x2 = e.c - e.b * y2;\n    } else {\n      x1 = s1 ? s1.x : -1e6;\n      y1 = e.c - e.a * x1;\n      x2 = s2 ? s2.x : 1e6;\n      y2 = e.c - e.a * x2;\n    }\n    var v1 = [x1, y1],\n        v2 = [x2, y2];\n    polygons[e.region.l.index].push(v1, v2);\n    polygons[e.region.r.index].push(v1, v2);\n  });\n\n  // Reconnect the polygon segments into counterclockwise loops.\n  return polygons.map(function(polygon, i) {\n    var cx = vertices[i][0],\n        cy = vertices[i][1];\n    polygon.forEach(function(v) {\n      v.angle = Math.atan2(v[0] - cx, v[1] - cy);\n    });\n    return polygon.sort(function(a, b) {\n      return a.angle - b.angle;\n    }).filter(function(d, i) {\n      return !i || (d.angle - polygon[i - 1].angle > 1e-10);\n    });\n  });\n};\n\nvar d3_voronoi_opposite = {\"l\": \"r\", \"r\": \"l\"};\n\nfunction d3_voronoi_tessellate(vertices, callback) {\n\n  var Sites = {\n    list: vertices\n      .map(function(v, i) {\n        return {\n          index: i,\n          x: v[0],\n          y: v[1]\n        };\n      })\n      .sort(function(a, b) {\n        return a.y < b.y ? -1\n          : a.y > b.y ? 1\n          : a.x < b.x ? -1\n          : a.x > b.x ? 1\n          : 0;\n      }),\n    bottomSite: null\n  };\n\n  var EdgeList = {\n    list: [],\n    leftEnd: null,\n    rightEnd: null,\n\n    init: function() {\n      EdgeList.leftEnd = EdgeList.createHalfEdge(null, \"l\");\n      EdgeList.rightEnd = EdgeList.createHalfEdge(null, \"l\");\n      EdgeList.leftEnd.r = EdgeList.rightEnd;\n      EdgeList.rightEnd.l = EdgeList.leftEnd;\n      EdgeList.list.unshift(EdgeList.leftEnd, EdgeList.rightEnd);\n    },\n\n    createHalfEdge: function(edge, side) {\n      return {\n        edge: edge,\n        side: side,\n        vertex: null,\n        \"l\": null,\n        \"r\": null\n      };\n    },\n\n    insert: function(lb, he) {\n      he.l = lb;\n      he.r = lb.r;\n      lb.r.l = he;\n      lb.r = he;\n    },\n\n    leftBound: function(p) {\n      var he = EdgeList.leftEnd;\n      do {\n        he = he.r;\n      } while (he != EdgeList.rightEnd && Geom.rightOf(he, p));\n      he = he.l;\n      return he;\n    },\n\n    del: function(he) {\n      he.l.r = he.r;\n      he.r.l = he.l;\n      he.edge = null;\n    },\n\n    right: function(he) {\n      return he.r;\n    },\n\n    left: function(he) {\n      return he.l;\n    },\n\n    leftRegion: function(he) {\n      return he.edge == null\n          ? Sites.bottomSite\n          : he.edge.region[he.side];\n    },\n\n    rightRegion: function(he) {\n      return he.edge == null\n          ? Sites.bottomSite\n          : he.edge.region[d3_voronoi_opposite[he.side]];\n    }\n  };\n\n  var Geom = {\n\n    bisect: function(s1, s2) {\n      var newEdge = {\n        region: {\"l\": s1, \"r\": s2},\n        ep: {\"l\": null, \"r\": null}\n      };\n\n      var dx = s2.x - s1.x,\n          dy = s2.y - s1.y,\n          adx = dx > 0 ? dx : -dx,\n          ady = dy > 0 ? dy : -dy;\n\n      newEdge.c = s1.x * dx + s1.y * dy\n          + (dx * dx + dy * dy) * .5;\n\n      if (adx > ady) {\n        newEdge.a = 1;\n        newEdge.b = dy / dx;\n        newEdge.c /= dx;\n      } else {\n        newEdge.b = 1;\n        newEdge.a = dx / dy;\n        newEdge.c /= dy;\n      }\n\n      return newEdge;\n    },\n\n    intersect: function(el1, el2) {\n      var e1 = el1.edge,\n          e2 = el2.edge;\n      if (!e1 || !e2 || (e1.region.r == e2.region.r)) {\n        return null;\n      }\n      var d = (e1.a * e2.b) - (e1.b * e2.a);\n      if (Math.abs(d) < 1e-10) {\n        return null;\n      }\n      var xint = (e1.c * e2.b - e2.c * e1.b) / d,\n          yint = (e2.c * e1.a - e1.c * e2.a) / d,\n          e1r = e1.region.r,\n          e2r = e2.region.r,\n          el,\n          e;\n      if ((e1r.y < e2r.y) ||\n         (e1r.y == e2r.y && e1r.x < e2r.x)) {\n        el = el1;\n        e = e1;\n      } else {\n        el = el2;\n        e = e2;\n      }\n      var rightOfSite = (xint >= e.region.r.x);\n      if ((rightOfSite && (el.side === \"l\")) ||\n        (!rightOfSite && (el.side === \"r\"))) {\n        return null;\n      }\n      return {\n        x: xint,\n        y: yint\n      };\n    },\n\n    rightOf: function(he, p) {\n      var e = he.edge,\n          topsite = e.region.r,\n          rightOfSite = (p.x > topsite.x);\n\n      if (rightOfSite && (he.side === \"l\")) {\n        return 1;\n      }\n      if (!rightOfSite && (he.side === \"r\")) {\n        return 0;\n      }\n      if (e.a === 1) {\n        var dyp = p.y - topsite.y,\n            dxp = p.x - topsite.x,\n            fast = 0,\n            above = 0;\n\n        if ((!rightOfSite && (e.b < 0)) ||\n          (rightOfSite && (e.b >= 0))) {\n          above = fast = (dyp >= e.b * dxp);\n        } else {\n          above = ((p.x + p.y * e.b) > e.c);\n          if (e.b < 0) {\n            above = !above;\n          }\n          if (!above) {\n            fast = 1;\n          }\n        }\n        if (!fast) {\n          var dxs = topsite.x - e.region.l.x;\n          above = (e.b * (dxp * dxp - dyp * dyp)) <\n            (dxs * dyp * (1 + 2 * dxp / dxs + e.b * e.b));\n\n          if (e.b < 0) {\n            above = !above;\n          }\n        }\n      } else /* e.b == 1 */ {\n        var yl = e.c - e.a * p.x,\n            t1 = p.y - yl,\n            t2 = p.x - topsite.x,\n            t3 = yl - topsite.y;\n\n        above = (t1 * t1) > (t2 * t2 + t3 * t3);\n      }\n      return he.side === \"l\" ? above : !above;\n    },\n\n    endPoint: function(edge, side, site) {\n      edge.ep[side] = site;\n      if (!edge.ep[d3_voronoi_opposite[side]]) return;\n      callback(edge);\n    },\n\n    distance: function(s, t) {\n      var dx = s.x - t.x,\n          dy = s.y - t.y;\n      return Math.sqrt(dx * dx + dy * dy);\n    }\n  };\n\n  var EventQueue = {\n    list: [],\n\n    insert: function(he, site, offset) {\n      he.vertex = site;\n      he.ystar = site.y + offset;\n      for (var i=0, list=EventQueue.list, l=list.length; i<l; i++) {\n        var next = list[i];\n        if (he.ystar > next.ystar ||\n          (he.ystar == next.ystar &&\n          site.x > next.vertex.x)) {\n          continue;\n        } else {\n          break;\n        }\n      }\n      list.splice(i, 0, he);\n    },\n\n    del: function(he) {\n      for (var i=0, ls=EventQueue.list, l=ls.length; i<l && (ls[i] != he); ++i) {}\n      ls.splice(i, 1);\n    },\n\n    empty: function() { return EventQueue.list.length === 0; },\n\n    nextEvent: function(he) {\n      for (var i=0, ls=EventQueue.list, l=ls.length; i<l; ++i) {\n        if (ls[i] == he) return ls[i+1];\n      }\n      return null;\n    },\n\n    min: function() {\n      var elem = EventQueue.list[0];\n      return {\n        x: elem.vertex.x,\n        y: elem.ystar\n      };\n    },\n\n    extractMin: function() {\n      return EventQueue.list.shift();\n    }\n  };\n\n  EdgeList.init();\n  Sites.bottomSite = Sites.list.shift();\n\n  var newSite = Sites.list.shift(), newIntStar;\n  var lbnd, rbnd, llbnd, rrbnd, bisector;\n  var bot, top, temp, p, v;\n  var e, pm;\n\n  while (true) {\n    if (!EventQueue.empty()) {\n      newIntStar = EventQueue.min();\n    }\n    if (newSite && (EventQueue.empty()\n      || newSite.y < newIntStar.y\n      || (newSite.y == newIntStar.y\n      && newSite.x < newIntStar.x))) { //new site is smallest\n      lbnd = EdgeList.leftBound(newSite);\n      rbnd = EdgeList.right(lbnd);\n      bot = EdgeList.rightRegion(lbnd);\n      e = Geom.bisect(bot, newSite);\n      bisector = EdgeList.createHalfEdge(e, \"l\");\n      EdgeList.insert(lbnd, bisector);\n      p = Geom.intersect(lbnd, bisector);\n      if (p) {\n        EventQueue.del(lbnd);\n        EventQueue.insert(lbnd, p, Geom.distance(p, newSite));\n      }\n      lbnd = bisector;\n      bisector = EdgeList.createHalfEdge(e, \"r\");\n      EdgeList.insert(lbnd, bisector);\n      p = Geom.intersect(bisector, rbnd);\n      if (p) {\n        EventQueue.insert(bisector, p, Geom.distance(p, newSite));\n      }\n      newSite = Sites.list.shift();\n    } else if (!EventQueue.empty()) { //intersection is smallest\n      lbnd = EventQueue.extractMin();\n      llbnd = EdgeList.left(lbnd);\n      rbnd = EdgeList.right(lbnd);\n      rrbnd = EdgeList.right(rbnd);\n      bot = EdgeList.leftRegion(lbnd);\n      top = EdgeList.rightRegion(rbnd);\n      v = lbnd.vertex;\n      Geom.endPoint(lbnd.edge, lbnd.side, v);\n      Geom.endPoint(rbnd.edge, rbnd.side, v);\n      EdgeList.del(lbnd);\n      EventQueue.del(rbnd);\n      EdgeList.del(rbnd);\n      pm = \"l\";\n      if (bot.y > top.y) {\n        temp = bot;\n        bot = top;\n        top = temp;\n        pm = \"r\";\n      }\n      e = Geom.bisect(bot, top);\n      bisector = EdgeList.createHalfEdge(e, pm);\n      EdgeList.insert(llbnd, bisector);\n      Geom.endPoint(e, d3_voronoi_opposite[pm], v);\n      p = Geom.intersect(llbnd, bisector);\n      if (p) {\n        EventQueue.del(llbnd);\n        EventQueue.insert(llbnd, p, Geom.distance(p, bot));\n      }\n      p = Geom.intersect(bisector, rrbnd);\n      if (p) {\n        EventQueue.insert(bisector, p, Geom.distance(p, bot));\n      }\n    } else {\n      break;\n    }\n  }//end while\n\n  for (lbnd = EdgeList.right(EdgeList.leftEnd);\n      lbnd != EdgeList.rightEnd;\n      lbnd = EdgeList.right(lbnd)) {\n    callback(lbnd.edge);\n  }\n}\n/**\n* @param vertices [[x1, y1], [x2, y2], …]\n* @returns triangles [[[x1, y1], [x2, y2], [x3, y3]], …]\n */\nd3.geom.delaunay = function(vertices) {\n  var edges = vertices.map(function() { return []; }),\n      triangles = [];\n\n  // Use the Voronoi tessellation to determine Delaunay edges.\n  d3_voronoi_tessellate(vertices, function(e) {\n    edges[e.region.l.index].push(vertices[e.region.r.index]);\n  });\n\n  // Reconnect the edges into counterclockwise triangles.\n  edges.forEach(function(edge, i) {\n    var v = vertices[i],\n        cx = v[0],\n        cy = v[1];\n    edge.forEach(function(v) {\n      v.angle = Math.atan2(v[0] - cx, v[1] - cy);\n    });\n    edge.sort(function(a, b) {\n      return a.angle - b.angle;\n    });\n    for (var j = 0, m = edge.length - 1; j < m; j++) {\n      triangles.push([v, edge[j], edge[j + 1]]);\n    }\n  });\n\n  return triangles;\n};\n// Constructs a new quadtree for the specified array of points. A quadtree is a\n// two-dimensional recursive spatial subdivision. This implementation uses\n// square partitions, dividing each square into four equally-sized squares. Each\n// point exists in a unique node; if multiple points are in the same position,\n// some points may be stored on internal nodes rather than leaf nodes. Quadtrees\n// can be used to accelerate various spatial operations, such as the Barnes-Hut\n// approximation for computing n-body forces, or collision detection.\nd3.geom.quadtree = function(points, x1, y1, x2, y2) {\n  var p,\n      i = -1,\n      n = points.length;\n\n  // Type conversion for deprecated API.\n  if (n && isNaN(points[0].x)) points = points.map(d3_geom_quadtreePoint);\n\n  // Allow bounds to be specified explicitly.\n  if (arguments.length < 5) {\n    if (arguments.length === 3) {\n      y2 = x2 = y1;\n      y1 = x1;\n    } else {\n      x1 = y1 = Infinity;\n      x2 = y2 = -Infinity;\n\n      // Compute bounds.\n      while (++i < n) {\n        p = points[i];\n        if (p.x < x1) x1 = p.x;\n        if (p.y < y1) y1 = p.y;\n        if (p.x > x2) x2 = p.x;\n        if (p.y > y2) y2 = p.y;\n      }\n\n      // Squarify the bounds.\n      var dx = x2 - x1,\n          dy = y2 - y1;\n      if (dx > dy) y2 = y1 + dx;\n      else x2 = x1 + dy;\n    }\n  }\n\n  // Recursively inserts the specified point p at the node n or one of its\n  // descendants. The bounds are defined by [x1, x2] and [y1, y2].\n  function insert(n, p, x1, y1, x2, y2) {\n    if (isNaN(p.x) || isNaN(p.y)) return; // ignore invalid points\n    if (n.leaf) {\n      var v = n.point;\n      if (v) {\n        // If the point at this leaf node is at the same position as the new\n        // point we are adding, we leave the point associated with the\n        // internal node while adding the new point to a child node. This\n        // avoids infinite recursion.\n        if ((Math.abs(v.x - p.x) + Math.abs(v.y - p.y)) < .01) {\n          insertChild(n, p, x1, y1, x2, y2);\n        } else {\n          n.point = null;\n          insertChild(n, v, x1, y1, x2, y2);\n          insertChild(n, p, x1, y1, x2, y2);\n        }\n      } else {\n        n.point = p;\n      }\n    } else {\n      insertChild(n, p, x1, y1, x2, y2);\n    }\n  }\n\n  // Recursively inserts the specified point p into a descendant of node n. The\n  // bounds are defined by [x1, x2] and [y1, y2].\n  function insertChild(n, p, x1, y1, x2, y2) {\n    // Compute the split point, and the quadrant in which to insert p.\n    var sx = (x1 + x2) * .5,\n        sy = (y1 + y2) * .5,\n        right = p.x >= sx,\n        bottom = p.y >= sy,\n        i = (bottom << 1) + right;\n\n    // Recursively insert into the child node.\n    n.leaf = false;\n    n = n.nodes[i] || (n.nodes[i] = d3_geom_quadtreeNode());\n\n    // Update the bounds as we recurse.\n    if (right) x1 = sx; else x2 = sx;\n    if (bottom) y1 = sy; else y2 = sy;\n    insert(n, p, x1, y1, x2, y2);\n  }\n\n  // Create the root node.\n  var root = d3_geom_quadtreeNode();\n\n  root.add = function(p) {\n    insert(root, p, x1, y1, x2, y2);\n  };\n\n  root.visit = function(f) {\n    d3_geom_quadtreeVisit(f, root, x1, y1, x2, y2);\n  };\n\n  // Insert all points.\n  points.forEach(root.add);\n  return root;\n};\n\nfunction d3_geom_quadtreeNode() {\n  return {\n    leaf: true,\n    nodes: [],\n    point: null\n  };\n}\n\nfunction d3_geom_quadtreeVisit(f, node, x1, y1, x2, y2) {\n  if (!f(node, x1, y1, x2, y2)) {\n    var sx = (x1 + x2) * .5,\n        sy = (y1 + y2) * .5,\n        children = node.nodes;\n    if (children[0]) d3_geom_quadtreeVisit(f, children[0], x1, y1, sx, sy);\n    if (children[1]) d3_geom_quadtreeVisit(f, children[1], sx, y1, x2, sy);\n    if (children[2]) d3_geom_quadtreeVisit(f, children[2], x1, sy, sx, y2);\n    if (children[3]) d3_geom_quadtreeVisit(f, children[3], sx, sy, x2, y2);\n  }\n}\n\nfunction d3_geom_quadtreePoint(p) {\n  return {\n    x: p[0],\n    y: p[1]\n  };\n}\nd3.time = {};\n\nvar d3_time = Date;\n\nfunction d3_time_utc() {\n  this._ = new Date(arguments.length > 1\n      ? Date.UTC.apply(this, arguments)\n      : arguments[0]);\n}\n\nd3_time_utc.prototype = {\n  getDate: function() { return this._.getUTCDate(); },\n  getDay: function() { return this._.getUTCDay(); },\n  getFullYear: function() { return this._.getUTCFullYear(); },\n  getHours: function() { return this._.getUTCHours(); },\n  getMilliseconds: function() { return this._.getUTCMilliseconds(); },\n  getMinutes: function() { return this._.getUTCMinutes(); },\n  getMonth: function() { return this._.getUTCMonth(); },\n  getSeconds: function() { return this._.getUTCSeconds(); },\n  getTime: function() { return this._.getTime(); },\n  getTimezoneOffset: function() { return 0; },\n  valueOf: function() { return this._.valueOf(); },\n  setDate: function() { d3_time_prototype.setUTCDate.apply(this._, arguments); },\n  setDay: function() { d3_time_prototype.setUTCDay.apply(this._, arguments); },\n  setFullYear: function() { d3_time_prototype.setUTCFullYear.apply(this._, arguments); },\n  setHours: function() { d3_time_prototype.setUTCHours.apply(this._, arguments); },\n  setMilliseconds: function() { d3_time_prototype.setUTCMilliseconds.apply(this._, arguments); },\n  setMinutes: function() { d3_time_prototype.setUTCMinutes.apply(this._, arguments); },\n  setMonth: function() { d3_time_prototype.setUTCMonth.apply(this._, arguments); },\n  setSeconds: function() { d3_time_prototype.setUTCSeconds.apply(this._, arguments); },\n  setTime: function() { d3_time_prototype.setTime.apply(this._, arguments); }\n};\n\nvar d3_time_prototype = Date.prototype;\nd3.time.format = function(template) {\n  var n = template.length;\n\n  function format(date) {\n    var string = [],\n        i = -1,\n        j = 0,\n        c,\n        f;\n    while (++i < n) {\n      if (template.charCodeAt(i) == 37) {\n        string.push(\n            template.substring(j, i),\n            (f = d3_time_formats[c = template.charAt(++i)])\n            ? f(date) : c);\n        j = i + 1;\n      }\n    }\n    string.push(template.substring(j, i));\n    return string.join(\"\");\n  }\n\n  format.parse = function(string) {\n    var d = {y: 1900, m: 0, d: 1, H: 0, M: 0, S: 0, L: 0},\n        i = d3_time_parse(d, template, string, 0);\n    if (i != string.length) return null;\n\n    // The am-pm flag is 0 for AM, and 1 for PM.\n    if (\"p\" in d) d.H = d.H % 12 + d.p * 12;\n\n    var date = new d3_time();\n    date.setFullYear(d.y, d.m, d.d);\n    date.setHours(d.H, d.M, d.S, d.L);\n    return date;\n  };\n\n  format.toString = function() {\n    return template;\n  };\n\n  return format;\n};\n\nfunction d3_time_parse(date, template, string, j) {\n  var c,\n      p,\n      i = 0,\n      n = template.length,\n      m = string.length;\n  while (i < n) {\n    if (j >= m) return -1;\n    c = template.charCodeAt(i++);\n    if (c == 37) {\n      p = d3_time_parsers[template.charAt(i++)];\n      if (!p || ((j = p(date, string, j)) < 0)) return -1;\n    } else if (c != string.charCodeAt(j++)) {\n      return -1;\n    }\n  }\n  return j;\n}\n\nvar d3_time_zfill2 = d3.format(\"02d\"),\n    d3_time_zfill3 = d3.format(\"03d\"),\n    d3_time_zfill4 = d3.format(\"04d\"),\n    d3_time_sfill2 = d3.format(\"2d\");\n\nvar d3_time_formats = {\n  a: function(d) { return d3_time_weekdays[d.getDay()].substring(0, 3); },\n  A: function(d) { return d3_time_weekdays[d.getDay()]; },\n  b: function(d) { return d3_time_months[d.getMonth()].substring(0, 3); },\n  B: function(d) { return d3_time_months[d.getMonth()]; },\n  c: d3.time.format(\"%a %b %e %H:%M:%S %Y\"),\n  d: function(d) { return d3_time_zfill2(d.getDate()); },\n  e: function(d) { return d3_time_sfill2(d.getDate()); },\n  H: function(d) { return d3_time_zfill2(d.getHours()); },\n  I: function(d) { return d3_time_zfill2(d.getHours() % 12 || 12); },\n  j: function(d) { return d3_time_zfill3(1 + d3.time.dayOfYear(d)); },\n  L: function(d) { return d3_time_zfill3(d.getMilliseconds()); },\n  m: function(d) { return d3_time_zfill2(d.getMonth() + 1); },\n  M: function(d) { return d3_time_zfill2(d.getMinutes()); },\n  p: function(d) { return d.getHours() >= 12 ? \"PM\" : \"AM\"; },\n  S: function(d) { return d3_time_zfill2(d.getSeconds()); },\n  U: function(d) { return d3_time_zfill2(d3.time.sundayOfYear(d)); },\n  w: function(d) { return d.getDay(); },\n  W: function(d) { return d3_time_zfill2(d3.time.mondayOfYear(d)); },\n  x: d3.time.format(\"%m/%d/%y\"),\n  X: d3.time.format(\"%H:%M:%S\"),\n  y: function(d) { return d3_time_zfill2(d.getFullYear() % 100); },\n  Y: function(d) { return d3_time_zfill4(d.getFullYear() % 10000); },\n  Z: d3_time_zone,\n  \"%\": function(d) { return \"%\"; }\n};\n\nvar d3_time_parsers = {\n  a: d3_time_parseWeekdayAbbrev,\n  A: d3_time_parseWeekday,\n  b: d3_time_parseMonthAbbrev,\n  B: d3_time_parseMonth,\n  c: d3_time_parseLocaleFull,\n  d: d3_time_parseDay,\n  e: d3_time_parseDay,\n  H: d3_time_parseHour24,\n  I: d3_time_parseHour24,\n  // j: function(d, s, i) { /*TODO day of year [001,366] */ return i; },\n  L: d3_time_parseMilliseconds,\n  m: d3_time_parseMonthNumber,\n  M: d3_time_parseMinutes,\n  p: d3_time_parseAmPm,\n  S: d3_time_parseSeconds,\n  // U: function(d, s, i) { /*TODO week number (sunday) [00,53] */ return i; },\n  // w: function(d, s, i) { /*TODO weekday [0,6] */ return i; },\n  // W: function(d, s, i) { /*TODO week number (monday) [00,53] */ return i; },\n  x: d3_time_parseLocaleDate,\n  X: d3_time_parseLocaleTime,\n  y: d3_time_parseYear,\n  Y: d3_time_parseFullYear\n  // ,\n  // Z: function(d, s, i) { /*TODO time zone */ return i; },\n  // \"%\": function(d, s, i) { /*TODO literal % */ return i; }\n};\n\n// Note: weekday is validated, but does not set the date.\nfunction d3_time_parseWeekdayAbbrev(date, string, i) {\n  return d3_time_weekdayAbbrevRe.test(string.substring(i, i += 3)) ? i : -1;\n}\n\n// Note: weekday is validated, but does not set the date.\nfunction d3_time_parseWeekday(date, string, i) {\n  d3_time_weekdayRe.lastIndex = 0;\n  var n = d3_time_weekdayRe.exec(string.substring(i, i + 10));\n  return n ? i += n[0].length : -1;\n}\n\nvar d3_time_weekdayAbbrevRe = /^(?:sun|mon|tue|wed|thu|fri|sat)/i,\n    d3_time_weekdayRe = /^(?:Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday)/i;\n    d3_time_weekdays = [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"];\n\nfunction d3_time_parseMonthAbbrev(date, string, i) {\n  var n = d3_time_monthAbbrevLookup.get(string.substring(i, i += 3).toLowerCase());\n  return n == null ? -1 : (date.m = n, i);\n}\n\nvar d3_time_monthAbbrevLookup = d3.map({\n  jan: 0,\n  feb: 1,\n  mar: 2,\n  apr: 3,\n  may: 4,\n  jun: 5,\n  jul: 6,\n  aug: 7,\n  sep: 8,\n  oct: 9,\n  nov: 10,\n  dec: 11\n});\n\nfunction d3_time_parseMonth(date, string, i) {\n  d3_time_monthRe.lastIndex = 0;\n  var n = d3_time_monthRe.exec(string.substring(i, i + 12));\n  return n ? (date.m = d3_time_monthLookup.get(n[0].toLowerCase()), i += n[0].length) : -1;\n}\n\nvar d3_time_monthRe = /^(?:January|February|March|April|May|June|July|August|September|October|November|December)/ig;\n\nvar d3_time_monthLookup = d3.map({\n  january: 0,\n  february: 1,\n  march: 2,\n  april: 3,\n  may: 4,\n  june: 5,\n  july: 6,\n  august: 7,\n  september: 8,\n  october: 9,\n  november: 10,\n  december: 11\n});\n\nvar d3_time_months = [\n  \"January\",\n  \"February\",\n  \"March\",\n  \"April\",\n  \"May\",\n  \"June\",\n  \"July\",\n  \"August\",\n  \"September\",\n  \"October\",\n  \"November\",\n  \"December\"\n];\n\nfunction d3_time_parseLocaleFull(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.c.toString(), string, i);\n}\n\nfunction d3_time_parseLocaleDate(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.x.toString(), string, i);\n}\n\nfunction d3_time_parseLocaleTime(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.X.toString(), string, i);\n}\n\nfunction d3_time_parseFullYear(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 4));\n  return n ? (date.y = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseYear(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.y = d3_time_century() + +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_century() {\n  return ~~(new Date().getFullYear() / 1000) * 1000;\n}\n\nfunction d3_time_parseMonthNumber(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.m = n[0] - 1, i += n[0].length) : -1;\n}\n\nfunction d3_time_parseDay(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.d = +n[0], i += n[0].length) : -1;\n}\n\n// Note: we don't validate that the hour is in the range [0,23] or [1,12].\nfunction d3_time_parseHour24(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.H = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseMinutes(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.M = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseSeconds(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.S = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseMilliseconds(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 3));\n  return n ? (date.L = +n[0], i += n[0].length) : -1;\n}\n\n// Note: we don't look at the next directive.\nvar d3_time_numberRe = /\\s*\\d+/;\n\nfunction d3_time_parseAmPm(date, string, i) {\n  var n = d3_time_amPmLookup.get(string.substring(i, i += 2).toLowerCase());\n  return n == null ? -1 : (date.p = n, i);\n}\n\nvar d3_time_amPmLookup = d3.map({\n  am: 0,\n  pm: 1\n});\n\n// TODO table of time zone offset names?\nfunction d3_time_zone(d) {\n  var z = d.getTimezoneOffset(),\n      zs = z > 0 ? \"-\" : \"+\",\n      zh = ~~(Math.abs(z) / 60),\n      zm = Math.abs(z) % 60;\n  return zs + d3_time_zfill2(zh) + d3_time_zfill2(zm);\n}\nd3.time.format.utc = function(template) {\n  var local = d3.time.format(template);\n\n  function format(date) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time();\n      utc._ = date;\n      return local(utc);\n    } finally {\n      d3_time = Date;\n    }\n  }\n\n  format.parse = function(string) {\n    try {\n      d3_time = d3_time_utc;\n      var date = local.parse(string);\n      return date && date._;\n    } finally {\n      d3_time = Date;\n    }\n  };\n\n  format.toString = local.toString;\n\n  return format;\n};\nvar d3_time_formatIso = d3.time.format.utc(\"%Y-%m-%dT%H:%M:%S.%LZ\");\n\nd3.time.format.iso = Date.prototype.toISOString ? d3_time_formatIsoNative : d3_time_formatIso;\n\nfunction d3_time_formatIsoNative(date) {\n  return date.toISOString();\n}\n\nd3_time_formatIsoNative.parse = function(string) {\n  return new Date(string);\n};\n\nd3_time_formatIsoNative.toString = d3_time_formatIso.toString;\nfunction d3_time_interval(local, step, number) {\n\n  function round(date) {\n    var d0 = local(date), d1 = offset(d0, 1);\n    return date - d0 < d1 - date ? d0 : d1;\n  }\n\n  function ceil(date) {\n    step(date = local(new d3_time(date - 1)), 1);\n    return date;\n  }\n\n  function offset(date, k) {\n    step(date = new d3_time(+date), k);\n    return date;\n  }\n\n  function range(t0, t1, dt) {\n    var time = ceil(t0), times = [];\n    if (dt > 1) {\n      while (time < t1) {\n        if (!(number(time) % dt)) times.push(new Date(+time));\n        step(time, 1);\n      }\n    } else {\n      while (time < t1) times.push(new Date(+time)), step(time, 1);\n    }\n    return times;\n  }\n\n  function range_utc(t0, t1, dt) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time_utc();\n      utc._ = t0;\n      return range(utc, t1, dt);\n    } finally {\n      d3_time = Date;\n    }\n  }\n\n  local.floor = local;\n  local.round = round;\n  local.ceil = ceil;\n  local.offset = offset;\n  local.range = range;\n\n  var utc = local.utc = d3_time_interval_utc(local);\n  utc.floor = utc;\n  utc.round = d3_time_interval_utc(round);\n  utc.ceil = d3_time_interval_utc(ceil);\n  utc.offset = d3_time_interval_utc(offset);\n  utc.range = range_utc;\n\n  return local;\n}\n\nfunction d3_time_interval_utc(method) {\n  return function(date, k) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time_utc();\n      utc._ = date;\n      return method(utc, k)._;\n    } finally {\n      d3_time = Date;\n    }\n  };\n}\nd3.time.second = d3_time_interval(function(date) {\n  return new d3_time(Math.floor(date / 1e3) * 1e3);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 1e3); // DST breaks setSeconds\n}, function(date) {\n  return date.getSeconds();\n});\n\nd3.time.seconds = d3.time.second.range;\nd3.time.seconds.utc = d3.time.second.utc.range;\nd3.time.minute = d3_time_interval(function(date) {\n  return new d3_time(Math.floor(date / 6e4) * 6e4);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 6e4); // DST breaks setMinutes\n}, function(date) {\n  return date.getMinutes();\n});\n\nd3.time.minutes = d3.time.minute.range;\nd3.time.minutes.utc = d3.time.minute.utc.range;\nd3.time.hour = d3_time_interval(function(date) {\n  var timezone = date.getTimezoneOffset() / 60;\n  return new d3_time((Math.floor(date / 36e5 - timezone) + timezone) * 36e5);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 36e5); // DST breaks setHours\n}, function(date) {\n  return date.getHours();\n});\n\nd3.time.hours = d3.time.hour.range;\nd3.time.hours.utc = d3.time.hour.utc.range;\nd3.time.day = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), date.getMonth(), date.getDate());\n}, function(date, offset) {\n  date.setDate(date.getDate() + offset);\n}, function(date) {\n  return date.getDate() - 1;\n});\n\nd3.time.days = d3.time.day.range;\nd3.time.days.utc = d3.time.day.utc.range;\n\nd3.time.dayOfYear = function(date) {\n  var year = d3.time.year(date);\n  return Math.floor((date - year) / 864e5 - (date.getTimezoneOffset() - year.getTimezoneOffset()) / 1440);\n};\nd3_time_weekdays.forEach(function(day, i) {\n  day = day.toLowerCase();\n  i = 7 - i;\n\n  var interval = d3.time[day] = d3_time_interval(function(date) {\n    (date = d3.time.day(date)).setDate(date.getDate() - (date.getDay() + i) % 7);\n    return date;\n  }, function(date, offset) {\n    date.setDate(date.getDate() + Math.floor(offset) * 7);\n  }, function(date) {\n    var day = d3.time.year(date).getDay();\n    return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7) - (day !== i);\n  });\n\n  d3.time[day + \"s\"] = interval.range;\n  d3.time[day + \"s\"].utc = interval.utc.range;\n\n  d3.time[day + \"OfYear\"] = function(date) {\n    var day = d3.time.year(date).getDay();\n    return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7);\n  };\n});\n\nd3.time.week = d3.time.sunday;\nd3.time.weeks = d3.time.sunday.range;\nd3.time.weeks.utc = d3.time.sunday.utc.range;\nd3.time.weekOfYear = d3.time.sundayOfYear;\nd3.time.month = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), date.getMonth(), 1);\n}, function(date, offset) {\n  date.setMonth(date.getMonth() + offset);\n}, function(date) {\n  return date.getMonth();\n});\n\nd3.time.months = d3.time.month.range;\nd3.time.months.utc = d3.time.month.utc.range;\nd3.time.year = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), 0, 1);\n}, function(date, offset) {\n  date.setFullYear(date.getFullYear() + offset);\n}, function(date) {\n  return date.getFullYear();\n});\n\nd3.time.years = d3.time.year.range;\nd3.time.years.utc = d3.time.year.utc.range;\nfunction d3_time_scale(linear, methods, format) {\n\n  function scale(x) {\n    return linear(x);\n  }\n\n  scale.invert = function(x) {\n    return d3_time_scaleDate(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(d3_time_scaleDate);\n    linear.domain(x);\n    return scale;\n  };\n\n  scale.nice = function(m) {\n    var extent = d3_time_scaleExtent(scale.domain());\n    return scale.domain([m.floor(extent[0]), m.ceil(extent[1])]);\n  };\n\n  scale.ticks = function(m, k) {\n    var extent = d3_time_scaleExtent(scale.domain());\n    if (typeof m !== \"function\") {\n      var span = extent[1] - extent[0],\n          target = span / m,\n          i = d3.bisect(d3_time_scaleSteps, target);\n      if (i == d3_time_scaleSteps.length) return methods.year(extent, m);\n      if (!i) return linear.ticks(m).map(d3_time_scaleDate);\n      if (Math.log(target / d3_time_scaleSteps[i - 1]) < Math.log(d3_time_scaleSteps[i] / target)) --i;\n      m = methods[i];\n      k = m[1];\n      m = m[0].range;\n    }\n    return m(extent[0], new Date(+extent[1] + 1), k); // inclusive upper bound\n  };\n\n  scale.tickFormat = function() {\n    return format;\n  };\n\n  scale.copy = function() {\n    return d3_time_scale(linear.copy(), methods, format);\n  };\n\n  // TOOD expose d3_scale_linear_rebind?\n  return d3.rebind(scale, linear, \"range\", \"rangeRound\", \"interpolate\", \"clamp\");\n}\n\n// TODO expose d3_scaleExtent?\nfunction d3_time_scaleExtent(domain) {\n  var start = domain[0], stop = domain[domain.length - 1];\n  return start < stop ? [start, stop] : [stop, start];\n}\n\nfunction d3_time_scaleDate(t) {\n  return new Date(t);\n}\n\nfunction d3_time_scaleFormat(formats) {\n  return function(date) {\n    var i = formats.length - 1, f = formats[i];\n    while (!f[1](date)) f = formats[--i];\n    return f[0](date);\n  };\n}\n\nfunction d3_time_scaleSetYear(y) {\n  var d = new Date(y, 0, 1);\n  d.setFullYear(y); // Y2K fail\n  return d;\n}\n\nfunction d3_time_scaleGetYear(d) {\n  var y = d.getFullYear(),\n      d0 = d3_time_scaleSetYear(y),\n      d1 = d3_time_scaleSetYear(y + 1);\n  return y + (d - d0) / (d1 - d0);\n}\n\nvar d3_time_scaleSteps = [\n  1e3,    // 1-second\n  5e3,    // 5-second\n  15e3,   // 15-second\n  3e4,    // 30-second\n  6e4,    // 1-minute\n  3e5,    // 5-minute\n  9e5,    // 15-minute\n  18e5,   // 30-minute\n  36e5,   // 1-hour\n  108e5,  // 3-hour\n  216e5,  // 6-hour\n  432e5,  // 12-hour\n  864e5,  // 1-day\n  1728e5, // 2-day\n  6048e5, // 1-week\n  2592e6, // 1-month\n  7776e6, // 3-month\n  31536e6 // 1-year\n];\n\nvar d3_time_scaleLocalMethods = [\n  [d3.time.second, 1],\n  [d3.time.second, 5],\n  [d3.time.second, 15],\n  [d3.time.second, 30],\n  [d3.time.minute, 1],\n  [d3.time.minute, 5],\n  [d3.time.minute, 15],\n  [d3.time.minute, 30],\n  [d3.time.hour, 1],\n  [d3.time.hour, 3],\n  [d3.time.hour, 6],\n  [d3.time.hour, 12],\n  [d3.time.day, 1],\n  [d3.time.day, 2],\n  [d3.time.week, 1],\n  [d3.time.month, 1],\n  [d3.time.month, 3],\n  [d3.time.year, 1]\n];\n\nvar d3_time_scaleLocalFormats = [\n  [d3.time.format(\"%Y\"), function(d) { return true; }],\n  [d3.time.format(\"%B\"), function(d) { return d.getMonth(); }],\n  [d3.time.format(\"%b %d\"), function(d) { return d.getDate() != 1; }],\n  [d3.time.format(\"%a %d\"), function(d) { return d.getDay() && d.getDate() != 1; }],\n  [d3.time.format(\"%I %p\"), function(d) { return d.getHours(); }],\n  [d3.time.format(\"%I:%M\"), function(d) { return d.getMinutes(); }],\n  [d3.time.format(\":%S\"), function(d) { return d.getSeconds(); }],\n  [d3.time.format(\".%L\"), function(d) { return d.getMilliseconds(); }]\n];\n\nvar d3_time_scaleLinear = d3.scale.linear(),\n    d3_time_scaleLocalFormat = d3_time_scaleFormat(d3_time_scaleLocalFormats);\n\nd3_time_scaleLocalMethods.year = function(extent, m) {\n  return d3_time_scaleLinear.domain(extent.map(d3_time_scaleGetYear)).ticks(m).map(d3_time_scaleSetYear);\n};\n\nd3.time.scale = function() {\n  return d3_time_scale(d3.scale.linear(), d3_time_scaleLocalMethods, d3_time_scaleLocalFormat);\n};\nvar d3_time_scaleUTCMethods = d3_time_scaleLocalMethods.map(function(m) {\n  return [m[0].utc, m[1]];\n});\n\nvar d3_time_scaleUTCFormats = [\n  [d3.time.format.utc(\"%Y\"), function(d) { return true; }],\n  [d3.time.format.utc(\"%B\"), function(d) { return d.getUTCMonth(); }],\n  [d3.time.format.utc(\"%b %d\"), function(d) { return d.getUTCDate() != 1; }],\n  [d3.time.format.utc(\"%a %d\"), function(d) { return d.getUTCDay() && d.getUTCDate() != 1; }],\n  [d3.time.format.utc(\"%I %p\"), function(d) { return d.getUTCHours(); }],\n  [d3.time.format.utc(\"%I:%M\"), function(d) { return d.getUTCMinutes(); }],\n  [d3.time.format.utc(\":%S\"), function(d) { return d.getUTCSeconds(); }],\n  [d3.time.format.utc(\".%L\"), function(d) { return d.getUTCMilliseconds(); }]\n];\n\nvar d3_time_scaleUTCFormat = d3_time_scaleFormat(d3_time_scaleUTCFormats);\n\nfunction d3_time_scaleUTCSetYear(y) {\n  var d = new Date(Date.UTC(y, 0, 1));\n  d.setUTCFullYear(y); // Y2K fail\n  return d;\n}\n\nfunction d3_time_scaleUTCGetYear(d) {\n  var y = d.getUTCFullYear(),\n      d0 = d3_time_scaleUTCSetYear(y),\n      d1 = d3_time_scaleUTCSetYear(y + 1);\n  return y + (d - d0) / (d1 - d0);\n}\n\nd3_time_scaleUTCMethods.year = function(extent, m) {\n  return d3_time_scaleLinear.domain(extent.map(d3_time_scaleUTCGetYear)).ticks(m).map(d3_time_scaleUTCSetYear);\n};\n\nd3.time.scale.utc = function() {\n  return d3_time_scale(d3.scale.linear(), d3_time_scaleUTCMethods, d3_time_scaleUTCFormat);\n};\n})();\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/highlight.js",
    "content": "var hljs=new function(){function l(o){return o.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function b(p){for(var o=p.firstChild;o;o=o.nextSibling){if(o.nodeName==\"CODE\"){return o}if(!(o.nodeType==3&&o.nodeValue.match(/\\s+/))){break}}}function h(p,o){return Array.prototype.map.call(p.childNodes,function(q){if(q.nodeType==3){return o?q.nodeValue.replace(/\\n/g,\"\"):q.nodeValue}if(q.nodeName==\"BR\"){return\"\\n\"}return h(q,o)}).join(\"\")}function a(q){var p=(q.className+\" \"+q.parentNode.className).split(/\\s+/);p=p.map(function(r){return r.replace(/^language-/,\"\")});for(var o=0;o<p.length;o++){if(e[p[o]]||p[o]==\"no-highlight\"){return p[o]}}}function c(q){var o=[];(function p(r,s){for(var t=r.firstChild;t;t=t.nextSibling){if(t.nodeType==3){s+=t.nodeValue.length}else{if(t.nodeName==\"BR\"){s+=1}else{if(t.nodeType==1){o.push({event:\"start\",offset:s,node:t});s=p(t,s);o.push({event:\"stop\",offset:s,node:t})}}}}return s})(q,0);return o}function j(x,v,w){var p=0;var y=\"\";var r=[];function t(){if(x.length&&v.length){if(x[0].offset!=v[0].offset){return(x[0].offset<v[0].offset)?x:v}else{return v[0].event==\"start\"?x:v}}else{return x.length?x:v}}function s(A){function z(B){return\" \"+B.nodeName+'=\"'+l(B.value)+'\"'}return\"<\"+A.nodeName+Array.prototype.map.call(A.attributes,z).join(\"\")+\">\"}while(x.length||v.length){var u=t().splice(0,1)[0];y+=l(w.substr(p,u.offset-p));p=u.offset;if(u.event==\"start\"){y+=s(u.node);r.push(u.node)}else{if(u.event==\"stop\"){var o,q=r.length;do{q--;o=r[q];y+=(\"</\"+o.nodeName.toLowerCase()+\">\")}while(o!=u.node);r.splice(q,1);while(q<r.length){y+=s(r[q]);q++}}}}return y+l(w.substr(p))}function f(q){function o(s,r){return RegExp(s,\"m\"+(q.cI?\"i\":\"\")+(r?\"g\":\"\"))}function p(y,w){if(y.compiled){return}y.compiled=true;var s=[];if(y.k){var r={};function z(A,t){t.split(\" \").forEach(function(B){var C=B.split(\"|\");r[C[0]]=[A,C[1]?Number(C[1]):1];s.push(C[0])})}y.lR=o(y.l||hljs.IR,true);if(typeof y.k==\"string\"){z(\"keyword\",y.k)}else{for(var x in y.k){if(!y.k.hasOwnProperty(x)){continue}z(x,y.k[x])}}y.k=r}if(w){if(y.bWK){y.b=\"\\\\b(\"+s.join(\"|\")+\")\\\\s\"}y.bR=o(y.b?y.b:\"\\\\B|\\\\b\");if(!y.e&&!y.eW){y.e=\"\\\\B|\\\\b\"}if(y.e){y.eR=o(y.e)}y.tE=y.e||\"\";if(y.eW&&w.tE){y.tE+=(y.e?\"|\":\"\")+w.tE}}if(y.i){y.iR=o(y.i)}if(y.r===undefined){y.r=1}if(!y.c){y.c=[]}for(var v=0;v<y.c.length;v++){if(y.c[v]==\"self\"){y.c[v]=y}p(y.c[v],y)}if(y.starts){p(y.starts,w)}var u=[];for(var v=0;v<y.c.length;v++){u.push(y.c[v].b)}if(y.tE){u.push(y.tE)}if(y.i){u.push(y.i)}y.t=u.length?o(u.join(\"|\"),true):{exec:function(t){return null}}}p(q)}function d(D,E){function o(r,M){for(var L=0;L<M.c.length;L++){var K=M.c[L].bR.exec(r);if(K&&K.index==0){return M.c[L]}}}function s(K,r){if(K.e&&K.eR.test(r)){return K}if(K.eW){return s(K.parent,r)}}function t(r,K){return K.i&&K.iR.test(r)}function y(L,r){var K=F.cI?r[0].toLowerCase():r[0];return L.k.hasOwnProperty(K)&&L.k[K]}function G(){var K=l(w);if(!A.k){return K}var r=\"\";var N=0;A.lR.lastIndex=0;var L=A.lR.exec(K);while(L){r+=K.substr(N,L.index-N);var M=y(A,L);if(M){v+=M[1];r+='<span class=\"'+M[0]+'\">'+L[0]+\"</span>\"}else{r+=L[0]}N=A.lR.lastIndex;L=A.lR.exec(K)}return r+K.substr(N)}function z(){if(A.sL&&!e[A.sL]){return l(w)}var r=A.sL?d(A.sL,w):g(w);if(A.r>0){v+=r.keyword_count;B+=r.r}return'<span class=\"'+r.language+'\">'+r.value+\"</span>\"}function J(){return A.sL!==undefined?z():G()}function I(L,r){var K=L.cN?'<span class=\"'+L.cN+'\">':\"\";if(L.rB){x+=K;w=\"\"}else{if(L.eB){x+=l(r)+K;w=\"\"}else{x+=K;w=r}}A=Object.create(L,{parent:{value:A}});B+=L.r}function C(K,r){w+=K;if(r===undefined){x+=J();return 0}var L=o(r,A);if(L){x+=J();I(L,r);return L.rB?0:r.length}var M=s(A,r);if(M){if(!(M.rE||M.eE)){w+=r}x+=J();do{if(A.cN){x+=\"</span>\"}A=A.parent}while(A!=M.parent);if(M.eE){x+=l(r)}w=\"\";if(M.starts){I(M.starts,\"\")}return M.rE?0:r.length}if(t(r,A)){throw\"Illegal\"}w+=r;return r.length||1}var F=e[D];f(F);var A=F;var w=\"\";var B=0;var v=0;var x=\"\";try{var u,q,p=0;while(true){A.t.lastIndex=p;u=A.t.exec(E);if(!u){break}q=C(E.substr(p,u.index-p),u[0]);p=u.index+q}C(E.substr(p));return{r:B,keyword_count:v,value:x,language:D}}catch(H){if(H==\"Illegal\"){return{r:0,keyword_count:0,value:l(E)}}else{throw H}}}function g(s){var o={keyword_count:0,r:0,value:l(s)};var q=o;for(var p in e){if(!e.hasOwnProperty(p)){continue}var r=d(p,s);r.language=p;if(r.keyword_count+r.r>q.keyword_count+q.r){q=r}if(r.keyword_count+r.r>o.keyword_count+o.r){q=o;o=r}}if(q.language){o.second_best=q}return o}function i(q,p,o){if(p){q=q.replace(/^((<[^>]+>|\\t)+)/gm,function(r,v,u,t){return v.replace(/\\t/g,p)})}if(o){q=q.replace(/\\n/g,\"<br>\")}return q}function m(r,u,p){var v=h(r,p);var t=a(r);if(t==\"no-highlight\"){return}var w=t?d(t,v):g(v);t=w.language;var o=c(r);if(o.length){var q=document.createElement(\"pre\");q.innerHTML=w.value;w.value=j(o,c(q),v)}w.value=i(w.value,u,p);var s=r.className;if(!s.match(\"(\\\\s|^)(language-)?\"+t+\"(\\\\s|$)\")){s=s?(s+\" \"+t):t}r.innerHTML=w.value;r.className=s;r.result={language:t,kw:w.keyword_count,re:w.r};if(w.second_best){r.second_best={language:w.second_best.language,kw:w.second_best.keyword_count,re:w.second_best.r}}}function n(){if(n.called){return}n.called=true;Array.prototype.map.call(document.getElementsByTagName(\"pre\"),b).filter(Boolean).forEach(function(o){m(o,hljs.tabReplace)})}function k(){window.addEventListener(\"DOMContentLoaded\",n,false);window.addEventListener(\"load\",n,false)}var e={};this.LANGUAGES=e;this.highlight=d;this.highlightAuto=g;this.fixMarkup=i;this.highlightBlock=m;this.initHighlighting=n;this.initHighlightingOnLoad=k;this.IR=\"[a-zA-Z][a-zA-Z0-9_]*\";this.UIR=\"[a-zA-Z_][a-zA-Z0-9_]*\";this.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\";this.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\";this.BNR=\"\\\\b(0b[01]+)\";this.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|\\\\.|-|-=|/|/=|:|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\";this.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0};this.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[this.BE],r:0};this.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[this.BE],r:0};this.CLCM={cN:\"comment\",b:\"//\",e:\"$\"};this.CBLCLM={cN:\"comment\",b:\"/\\\\*\",e:\"\\\\*/\"};this.HCM={cN:\"comment\",b:\"#\",e:\"$\"};this.NM={cN:\"number\",b:this.NR,r:0};this.CNM={cN:\"number\",b:this.CNR,r:0};this.BNM={cN:\"number\",b:this.BNR,r:0};this.inherit=function(q,r){var o={};for(var p in q){o[p]=q[p]}if(r){for(var p in r){o[p]=r[p]}}return o}}();hljs.LANGUAGES.ruby=function(e){var a=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\";var j=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\";var g={keyword:\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include\"};var c={cN:\"yardoctag\",b:\"@[A-Za-z]+\"};var k=[{cN:\"comment\",b:\"#\",e:\"$\",c:[c]},{cN:\"comment\",b:\"^\\\\=begin\",e:\"^\\\\=end\",c:[c],r:10},{cN:\"comment\",b:\"^__END__\",e:\"\\\\n$\"}];var d={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:a,k:g};var i=[e.BE,d];var b=[{cN:\"string\",b:\"'\",e:\"'\",c:i,r:0},{cN:\"string\",b:'\"',e:'\"',c:i,r:0},{cN:\"string\",b:\"%[qw]?\\\\(\",e:\"\\\\)\",c:i},{cN:\"string\",b:\"%[qw]?\\\\[\",e:\"\\\\]\",c:i},{cN:\"string\",b:\"%[qw]?{\",e:\"}\",c:i},{cN:\"string\",b:\"%[qw]?<\",e:\">\",c:i,r:10},{cN:\"string\",b:\"%[qw]?/\",e:\"/\",c:i,r:10},{cN:\"string\",b:\"%[qw]?%\",e:\"%\",c:i,r:10},{cN:\"string\",b:\"%[qw]?-\",e:\"-\",c:i,r:10},{cN:\"string\",b:\"%[qw]?\\\\|\",e:\"\\\\|\",c:i,r:10}];var h={cN:\"function\",bWK:true,e:\" |$|;\",k:\"def\",c:[{cN:\"title\",b:j,l:a,k:g},{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:a,k:g}].concat(k)};var f=k.concat(b.concat([{cN:\"class\",bWK:true,e:\"$|;\",k:\"class module\",c:[{cN:\"title\",b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\",r:0},{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(k)},h,{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:\":\",c:b.concat([{b:j}]),r:0},{cN:\"symbol\",b:a+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"number\",b:\"\\\\?\\\\w\"},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:k.concat([{cN:\"regexp\",b:\"/\",e:\"/[a-z]*\",i:\"\\\\n\",c:[e.BE,d]}]),r:0}]));d.c=f;h.c[1].c=f;return{l:a,k:g,c:f}}(hljs);hljs.LANGUAGES.diff=function(a){return{c:[{cN:\"chunk\",b:\"^\\\\@\\\\@ +\\\\-\\\\d+,\\\\d+ +\\\\+\\\\d+,\\\\d+ +\\\\@\\\\@$\",r:10},{cN:\"chunk\",b:\"^\\\\*\\\\*\\\\* +\\\\d+,\\\\d+ +\\\\*\\\\*\\\\*\\\\*$\",r:10},{cN:\"chunk\",b:\"^\\\\-\\\\-\\\\- +\\\\d+,\\\\d+ +\\\\-\\\\-\\\\-\\\\-$\",r:10},{cN:\"header\",b:\"Index: \",e:\"$\"},{cN:\"header\",b:\"=====\",e:\"=====$\"},{cN:\"header\",b:\"^\\\\-\\\\-\\\\-\",e:\"$\"},{cN:\"header\",b:\"^\\\\*{3} \",e:\"$\"},{cN:\"header\",b:\"^\\\\+\\\\+\\\\+\",e:\"$\"},{cN:\"header\",b:\"\\\\*{5}\",e:\"\\\\*{5}$\"},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}}(hljs);hljs.LANGUAGES.javascript=function(a){return{k:{keyword:\"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const\",literal:\"true false null undefined NaN Infinity\"},c:[a.ASM,a.QSM,a.CLCM,a.CBLCLM,a.CNM,{b:\"(\"+a.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[a.CLCM,a.CBLCLM,{cN:\"regexp\",b:\"/\",e:\"/[gim]*\",i:\"\\\\n\",c:[{b:\"\\\\\\\\/\"}]},{b:\"<\",e:\">;\",sL:\"xml\"}],r:0},{cN:\"function\",bWK:true,e:\"{\",k:\"function\",c:[{cN:\"title\",b:\"[A-Za-z$_][0-9A-Za-z$_]*\"},{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[a.CLCM,a.CBLCLM],i:\"[\\\"'\\\\(]\"}],i:\"\\\\[|%\"}]}}(hljs);hljs.LANGUAGES.xml=function(a){var c=\"[A-Za-z0-9\\\\._:-]+\";var b={eW:true,c:[{cN:\"attribute\",b:c,r:0},{b:'=\"',rB:true,e:'\"',c:[{cN:\"value\",b:'\"',eW:true}]},{b:\"='\",rB:true,e:\"'\",c:[{cN:\"value\",b:\"'\",eW:true}]},{b:\"=\",c:[{cN:\"value\",b:\"[^\\\\s/>]+\"}]}]};return{cI:true,c:[{cN:\"pi\",b:\"<\\\\?\",e:\"\\\\?>\",r:10},{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},{cN:\"comment\",b:\"<!--\",e:\"-->\",r:10},{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[b],starts:{e:\"</style>\",rE:true,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[b],starts:{e:\"<\\/script>\",rE:true,sL:\"javascript\"}},{b:\"<%\",e:\"%>\",sL:\"vbscript\"},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:\"[^ />]+\"},b]}]}}(hljs);hljs.LANGUAGES.php=function(a){var e={cN:\"variable\",b:\"\\\\$+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*\"};var b=[a.inherit(a.ASM,{i:null}),a.inherit(a.QSM,{i:null}),{cN:\"string\",b:'b\"',e:'\"',c:[a.BE]},{cN:\"string\",b:\"b'\",e:\"'\",c:[a.BE]}];var c=[a.BNM,a.CNM];var d={cN:\"title\",b:a.UIR};return{cI:true,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return implements parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception php_user_filter default die require __FUNCTION__ enddeclare final try this switch continue endfor endif declare unset true false namespace trait goto instanceof insteadof __DIR__ __NAMESPACE__ __halt_compiler\",c:[a.CLCM,a.HCM,{cN:\"comment\",b:\"/\\\\*\",e:\"\\\\*/\",c:[{cN:\"phpdoc\",b:\"\\\\s@[A-Za-z]+\"}]},{cN:\"comment\",eB:true,b:\"__halt_compiler.+?;\",eW:true},{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[a.BE]},{cN:\"preprocessor\",b:\"<\\\\?php\",r:10},{cN:\"preprocessor\",b:\"\\\\?>\"},e,{cN:\"function\",bWK:true,e:\"{\",k:\"function\",i:\"\\\\$|\\\\[|%\",c:[d,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e,a.CBLCLM].concat(b).concat(c)}]},{cN:\"class\",bWK:true,e:\"{\",k:\"class\",i:\"[:\\\\(\\\\$]\",c:[{bWK:true,eW:true,k:\"extends\",c:[d]},d]},{b:\"=>\"}].concat(b).concat(c)}}(hljs);hljs.LANGUAGES.python=function(a){var f={cN:\"prompt\",b:\"^(>>>|\\\\.\\\\.\\\\.) \"};var c=[{cN:\"string\",b:\"(u|b)?r?'''\",e:\"'''\",c:[f],r:10},{cN:\"string\",b:'(u|b)?r?\"\"\"',e:'\"\"\"',c:[f],r:10},{cN:\"string\",b:\"(u|r|ur)'\",e:\"'\",c:[a.BE],r:10},{cN:\"string\",b:'(u|r|ur)\"',e:'\"',c:[a.BE],r:10},{cN:\"string\",b:\"(b|br)'\",e:\"'\",c:[a.BE]},{cN:\"string\",b:'(b|br)\"',e:'\"',c:[a.BE]}].concat([a.ASM,a.QSM]);var e={cN:\"title\",b:a.UIR};var d={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",a.CNM,f].concat(c)};var b={bWK:true,e:\":\",i:\"[${=;\\\\n]\",c:[e,d],r:10};return{k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10\",built_in:\"None True False Ellipsis NotImplemented\"},i:\"(</|->|\\\\?)\",c:c.concat([f,a.HCM,a.inherit(b,{cN:\"function\",k:\"def\"}),a.inherit(b,{cN:\"class\",k:\"class\"}),a.CNM,{cN:\"decorator\",b:\"@\",e:\"$\"},{b:\"\\\\b(print|exec)\\\\(\"}])}}(hljs);hljs.LANGUAGES.json=function(a){var e={literal:\"true false null\"};var d=[a.QSM,a.CNM];var c={cN:\"value\",e:\",\",eW:true,eE:true,c:d,k:e};var b={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:true,eE:true,c:[a.BE],i:\"\\\\n\",starts:c}],i:\"\\\\S\"};var f={b:\"\\\\[\",e:\"\\\\]\",c:[a.inherit(c,{cN:null})],i:\"\\\\S\"};d.splice(d.length,0,b,f);return{c:d,k:e,i:\"\\\\S\"}}(hljs);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/jquery.autogrow.js",
    "content": "/* \n * Auto Expanding Text Area (1.2.2)\n * by Chrys Bader (www.chrysbader.com)\n * chrysb@gmail.com\n *\n * Special thanks to:\n * Jake Chapa - jake@hybridstudio.com\n * John Resig - jeresig@gmail.com\n *\n * Copyright (c) 2008 Chrys Bader (www.chrysbader.com)\n * Licensed under the GPL (GPL-LICENSE.txt) license. \n *\n *\n * NOTE: This script requires jQuery to work.  Download jQuery at www.jquery.com\n *\n */\n \n(function(jQuery) {\n\t\t  \n\tvar self = null;\n \n\tjQuery.fn.autogrow = function(o)\n\t{\t\n\t\treturn this.each(function() {\n\t\t\tnew jQuery.autogrow(this, o);\n\t\t});\n\t};\n\t\n\n    /**\n     * The autogrow object.\n     *\n     * @constructor\n     * @name jQuery.autogrow\n     * @param Object e The textarea to create the autogrow for.\n     * @param Hash o A set of key/value pairs to set as configuration properties.\n     * @cat Plugins/autogrow\n     */\n\t\n\tjQuery.autogrow = function (e, o)\n\t{\n\t\tthis.options\t\t  \t= o || {};\n\t\tthis.dummy\t\t\t  \t= null;\n\t\tthis.interval\t \t  \t= null;\n\t\tthis.line_height\t  \t= this.options.lineHeight || parseInt(jQuery(e).css('line-height'), 10);\n\t\tthis.min_height\t\t  \t= this.options.minHeight || parseInt(jQuery(e).css('min-height'), 10);\n\t\tthis.max_height\t\t  \t= this.options.maxHeight || parseInt(jQuery(e).css('max-height'), 10);\n\t\tthis.textarea\t\t  \t= jQuery(e);\n\t\t\n\t\tif(this.line_height == NaN)\n\t\t  this.line_height = 0;\n\t\t\n\t\t// Only one textarea activated at a time, the one being used\n\t\tthis.init();\n\t};\n\t\n\tjQuery.autogrow.fn = jQuery.autogrow.prototype = {\n    autogrow: '1.2.2'\n  };\n\t\n \tjQuery.autogrow.fn.extend = jQuery.autogrow.extend = jQuery.extend;\n\t\n\tjQuery.autogrow.fn.extend({\n\t\t\t\t\t\t \n\t\tinit: function() {\t\t\t\n\t\t\tvar self = this;\t\t\t\n\t\t\tthis.textarea.css({overflow: 'hidden', display: 'block'});\n\t\t\tthis.textarea.bind('focus', function() { self.startExpand(); } ).bind('blur', function() { self.stopExpand(); });\n\t\t\tthis.checkExpand();\t\n\t\t},\n\t\t\t\t\t\t \n\t\tstartExpand: function() {\t\t\t\t\n\t\t  var self = this;\n\t\t\tthis.interval = window.setInterval(function() {self.checkExpand();}, 400);\n\t\t},\n\t\t\n\t\tstopExpand: function() {\n\t\t\tclearInterval(this.interval);\t\n\t\t},\n\t\t\n\t\tcheckExpand: function() {\n\t\t\t\n\t\t\tif (this.dummy == null)\n\t\t\t{\n\t\t\t\tthis.dummy = jQuery('<div></div>');\n\t\t\t\tthis.dummy.css({\n\t\t\t\t\t\t\t\t\t\t\t\t'font-size'  : this.textarea.css('font-size'),\n\t\t\t\t\t\t\t\t\t\t\t\t'font-family': this.textarea.css('font-family'),\n\t\t\t\t\t\t\t\t\t\t\t\t'width'      : this.textarea.css('width'),\n\t\t\t\t\t\t\t\t\t\t\t\t// IE shits its pants if you uncomment the next line!\n\t\t\t\t\t\t\t\t\t\t\t\t//'padding'    : this.textarea.css('padding'),\n\t\t\t\t\t\t\t\t\t\t\t\t'line-height': this.line_height + 'px',\n\t\t\t\t\t\t\t\t\t\t\t\t'overflow-x' : 'hidden',\n\t\t\t\t\t\t\t\t\t\t\t\t'position'   : 'absolute',\n\t\t\t\t\t\t\t\t\t\t\t\t'top'        : 0,\n\t\t\t\t\t\t\t\t\t\t\t\t'left'\t\t : -9999\n\t\t\t\t\t\t\t\t\t\t\t\t}).appendTo('body');\n\t\t\t}\n\t\t\t\n\t\t\t// Strip HTML tags\n\t\t\tvar html = this.textarea.val().replace(/(<|>)/g, '');\n\t\t\t\n\t\t\t// IE is different, as per usual\n\t\t\tif ($.browser.msie)\n\t\t\t{\n\t\t\t\thtml = html.replace(/\\n/g, '<BR>new');\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\thtml = html.replace(/\\n/g, '<br>new');\n\t\t\t}\n\t\t\t\n\t\t\tif (this.dummy.html() != html)\n\t\t\t{\n\t\t\t\tthis.dummy.html(html);\t\n\t\t\t\t\n\t\t\t\tif (this.max_height > 0 && (this.dummy.height() + this.line_height > this.max_height))\n\t\t\t\t{\n\t\t\t\t\tthis.textarea.css('overflow-y', 'auto');\t\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tthis.textarea.css('overflow-y', 'hidden');\n\t\t\t\t\tif (this.textarea.height() < this.dummy.height() + this.line_height || (this.dummy.height() < this.textarea.height()))\n\t\t\t\t\t{\t\n\t\t\t\t\t\tthis.textarea.animate({height: (this.dummy.height() + this.line_height) + 'px'}, 100);\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t });\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/jquery.blockUI.js",
    "content": "﻿/*!\n * jQuery blockUI plugin\n * Version 2.39 (23-MAY-2011)\n * @requires jQuery v1.2.3 or later\n *\n * Examples at: http://malsup.com/jquery/block/\n * Copyright (c) 2007-2010 M. Alsup\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n *\n * Thanks to Amir-Hossein Sobhi for some excellent contributions!\n */\n\n;(function($) {\n\nif (/1\\.(0|1|2)\\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {\n\talert('blockUI requires jQuery v1.2.3 or later!  You are using v' + $.fn.jquery);\n\treturn;\n}\n\n$.fn._fadeIn = $.fn.fadeIn;\n\nvar noOp = function() {};\n\n// this bit is to ensure we don't call setExpression when we shouldn't (with extra muscle to handle\n// retarded userAgent strings on Vista)\nvar mode = document.documentMode || 0;\nvar setExpr = $.browser.msie && (($.browser.version < 8 && !mode) || mode < 8);\nvar ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !mode;\n\n// global $ methods for blocking/unblocking the entire page\n$.blockUI   = function(opts) { install(window, opts); };\n$.unblockUI = function(opts) { remove(window, opts); };\n\n// convenience method for quick growl-like notifications  (http://www.google.com/search?q=growl)\n$.growlUI = function(title, message, timeout, onClose) {\n\tvar $m = $('<div class=\"growlUI\"></div>');\n\tif (title) $m.append('<h1>'+title+'</h1>');\n\tif (message) $m.append('<h2>'+message+'</h2>');\n\tif (timeout == undefined) timeout = 3000;\n\t$.blockUI({\n\t\tmessage: $m, fadeIn: 700, fadeOut: 1000, centerY: false,\n\t\ttimeout: timeout, showOverlay: false,\n\t\tonUnblock: onClose, \n\t\tcss: $.blockUI.defaults.growlCSS\n\t});\n};\n\n// plugin method for blocking element content\n$.fn.block = function(opts) {\n\treturn this.unblock({ fadeOut: 0 }).each(function() {\n\t\tif ($.css(this,'position') == 'static')\n\t\t\tthis.style.position = 'relative';\n\t\tif ($.browser.msie)\n\t\t\tthis.style.zoom = 1; // force 'hasLayout'\n\t\tinstall(this, opts);\n\t});\n};\n\n// plugin method for unblocking element content\n$.fn.unblock = function(opts) {\n\treturn this.each(function() {\n\t\tremove(this, opts);\n\t});\n};\n\n$.blockUI.version = 2.39; // 2nd generation blocking at no extra cost!\n\n// override these in your code to change the default behavior and style\n$.blockUI.defaults = {\n\t// message displayed when blocking (use null for no message)\n\tmessage:  '<h1>Please wait...</h1>',\n\n\ttitle: null,\t  // title string; only used when theme == true\n\tdraggable: true,  // only used when theme == true (requires jquery-ui.js to be loaded)\n\t\n\ttheme: false, // set to true to use with jQuery UI themes\n\t\n\t// styles for the message when blocking; if you wish to disable\n\t// these and use an external stylesheet then do this in your code:\n\t// $.blockUI.defaults.css = {};\n\tcss: {\n\t\tpadding:\t0,\n\t\tmargin:\t\t0,\n\t\twidth:\t\t'30%',\n\t\ttop:\t\t'40%',\n\t\tleft:\t\t'35%',\n\t\ttextAlign:\t'center',\n\t\tcolor:\t\t'#000',\n\t\tborder:\t\t'3px solid #aaa',\n\t\tbackgroundColor:'#fff',\n\t\tcursor:\t\t'wait'\n\t},\n\t\n\t// minimal style set used when themes are used\n\tthemedCSS: {\n\t\twidth:\t'30%',\n\t\ttop:\t'40%',\n\t\tleft:\t'35%'\n\t},\n\n\t// styles for the overlay\n\toverlayCSS:  {\n\t\tbackgroundColor: '#000',\n\t\topacity:\t  \t 0.6,\n\t\tcursor:\t\t  \t 'wait'\n\t},\n\n\t// styles applied when using $.growlUI\n\tgrowlCSS: {\n\t\twidth:  \t'350px',\n\t\ttop:\t\t'10px',\n\t\tleft:   \t'',\n\t\tright:  \t'10px',\n\t\tborder: \t'none',\n\t\tpadding:\t'5px',\n\t\topacity:\t0.6,\n\t\tcursor: \t'default',\n\t\tcolor:\t\t'#fff',\n\t\tbackgroundColor: '#000',\n\t\t'-webkit-border-radius': '10px',\n\t\t'-moz-border-radius':\t '10px',\n\t\t'border-radius': \t\t '10px'\n\t},\n\t\n\t// IE issues: 'about:blank' fails on HTTPS and javascript:false is s-l-o-w\n\t// (hat tip to Jorge H. N. de Vasconcelos)\n\tiframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank',\n\n\t// force usage of iframe in non-IE browsers (handy for blocking applets)\n\tforceIframe: false,\n\n\t// z-index for the blocking overlay\n\tbaseZ: 1000,\n\n\t// set these to true to have the message automatically centered\n\tcenterX: true, // <-- only effects element blocking (page block controlled via css above)\n\tcenterY: true,\n\n\t// allow body element to be stetched in ie6; this makes blocking look better\n\t// on \"short\" pages.  disable if you wish to prevent changes to the body height\n\tallowBodyStretch: true,\n\n\t// enable if you want key and mouse events to be disabled for content that is blocked\n\tbindEvents: true,\n\n\t// be default blockUI will supress tab navigation from leaving blocking content\n\t// (if bindEvents is true)\n\tconstrainTabKey: true,\n\n\t// fadeIn time in millis; set to 0 to disable fadeIn on block\n\tfadeIn:  200,\n\n\t// fadeOut time in millis; set to 0 to disable fadeOut on unblock\n\tfadeOut:  400,\n\n\t// time in millis to wait before auto-unblocking; set to 0 to disable auto-unblock\n\ttimeout: 0,\n\n\t// disable if you don't want to show the overlay\n\tshowOverlay: true,\n\n\t// if true, focus will be placed in the first available input field when\n\t// page blocking\n\tfocusInput: true,\n\n\t// suppresses the use of overlay styles on FF/Linux (due to performance issues with opacity)\n\tapplyPlatformOpacityRules: true,\n\t\n\t// callback method invoked when fadeIn has completed and blocking message is visible\n\tonBlock: null,\n\n\t// callback method invoked when unblocking has completed; the callback is\n\t// passed the element that has been unblocked (which is the window object for page\n\t// blocks) and the options that were passed to the unblock call:\n\t//\t onUnblock(element, options)\n\tonUnblock: null,\n\n\t// don't ask; if you really must know: http://groups.google.com/group/jquery-en/browse_thread/thread/36640a8730503595/2f6a79a77a78e493#2f6a79a77a78e493\n\tquirksmodeOffsetHack: 4,\n\n\t// class name of the message block\n\tblockMsgClass: 'blockMsg'\n};\n\n// private data and functions follow...\n\nvar pageBlock = null;\nvar pageBlockEls = [];\n\nfunction install(el, opts) {\n\tvar full = (el == window);\n\tvar msg = opts && opts.message !== undefined ? opts.message : undefined;\n\topts = $.extend({}, $.blockUI.defaults, opts || {});\n\topts.overlayCSS = $.extend({}, $.blockUI.defaults.overlayCSS, opts.overlayCSS || {});\n\tvar css = $.extend({}, $.blockUI.defaults.css, opts.css || {});\n\tvar themedCSS = $.extend({}, $.blockUI.defaults.themedCSS, opts.themedCSS || {});\n\tmsg = msg === undefined ? opts.message : msg;\n\n\t// remove the current block (if there is one)\n\tif (full && pageBlock)\n\t\tremove(window, {fadeOut:0});\n\n\t// if an existing element is being used as the blocking content then we capture\n\t// its current place in the DOM (and current display style) so we can restore\n\t// it when we unblock\n\tif (msg && typeof msg != 'string' && (msg.parentNode || msg.jquery)) {\n\t\tvar node = msg.jquery ? msg[0] : msg;\n\t\tvar data = {};\n\t\t$(el).data('blockUI.history', data);\n\t\tdata.el = node;\n\t\tdata.parent = node.parentNode;\n\t\tdata.display = node.style.display;\n\t\tdata.position = node.style.position;\n\t\tif (data.parent)\n\t\t\tdata.parent.removeChild(node);\n\t}\n\n\t$(el).data('blockUI.onUnblock', opts.onUnblock);\n\tvar z = opts.baseZ;\n\n\t// blockUI uses 3 layers for blocking, for simplicity they are all used on every platform;\n\t// layer1 is the iframe layer which is used to supress bleed through of underlying content\n\t// layer2 is the overlay layer which has opacity and a wait cursor (by default)\n\t// layer3 is the message content that is displayed while blocking\n\n\tvar lyr1 = ($.browser.msie || opts.forceIframe) \n\t\t? $('<iframe class=\"blockUI\" style=\"z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0\" src=\"'+opts.iframeSrc+'\"></iframe>')\n\t\t: $('<div class=\"blockUI\" style=\"display:none\"></div>');\n\t\n\tvar lyr2 = opts.theme \n\t \t? $('<div class=\"blockUI blockOverlay ui-widget-overlay\" style=\"z-index:'+ (z++) +';display:none\"></div>')\n\t \t: $('<div class=\"blockUI blockOverlay\" style=\"z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0\"></div>');\n\n\tvar lyr3, s;\n\tif (opts.theme && full) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockPage ui-dialog ui-widget ui-corner-all\" style=\"z-index:'+(z+10)+';display:none;position:fixed\">' +\n\t\t\t\t'<div class=\"ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle\">'+(opts.title || '&nbsp;')+'</div>' +\n\t\t\t\t'<div class=\"ui-widget-content ui-dialog-content\"></div>' +\n\t\t\t'</div>';\n\t}\n\telse if (opts.theme) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockElement ui-dialog ui-widget ui-corner-all\" style=\"z-index:'+(z+10)+';display:none;position:absolute\">' +\n\t\t\t\t'<div class=\"ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle\">'+(opts.title || '&nbsp;')+'</div>' +\n\t\t\t\t'<div class=\"ui-widget-content ui-dialog-content\"></div>' +\n\t\t\t'</div>';\n\t}\n\telse if (full) {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockPage\" style=\"z-index:'+(z+10)+';display:none;position:fixed\"></div>';\n\t}\t\t\t \n\telse {\n\t\ts = '<div class=\"blockUI ' + opts.blockMsgClass + ' blockElement\" style=\"z-index:'+(z+10)+';display:none;position:absolute\"></div>';\n\t}\n\tlyr3 = $(s);\n\n\t// if we have a message, style it\n\tif (msg) {\n\t\tif (opts.theme) {\n\t\t\tlyr3.css(themedCSS);\n\t\t\tlyr3.addClass('ui-widget-content');\n\t\t}\n\t\telse \n\t\t\tlyr3.css(css);\n\t}\n\n\t// style the overlay\n\tif (!opts.theme && (!opts.applyPlatformOpacityRules || !($.browser.mozilla && /Linux/.test(navigator.platform))))\n\t\tlyr2.css(opts.overlayCSS);\n\tlyr2.css('position', full ? 'fixed' : 'absolute');\n\n\t// make iframe layer transparent in IE\n\tif ($.browser.msie || opts.forceIframe)\n\t\tlyr1.css('opacity',0.0);\n\n\t//$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el);\n\tvar layers = [lyr1,lyr2,lyr3], $par = full ? $('body') : $(el);\n\t$.each(layers, function() {\n\t\tthis.appendTo($par);\n\t});\n\t\n\tif (opts.theme && opts.draggable && $.fn.draggable) {\n\t\tlyr3.draggable({\n\t\t\thandle: '.ui-dialog-titlebar',\n\t\t\tcancel: 'li'\n\t\t});\n\t}\n\n\t// ie7 must use absolute positioning in quirks mode and to account for activex issues (when scrolling)\n\tvar expr = setExpr && (!$.boxModel || $('object,embed', full ? null : el).length > 0);\n\tif (ie6 || expr) {\n\t\t// give body 100% height\n\t\tif (full && opts.allowBodyStretch && $.boxModel)\n\t\t\t$('html,body').css('height','100%');\n\n\t\t// fix ie6 issue when blocked element has a border width\n\t\tif ((ie6 || !$.boxModel) && !full) {\n\t\t\tvar t = sz(el,'borderTopWidth'), l = sz(el,'borderLeftWidth');\n\t\t\tvar fixT = t ? '(0 - '+t+')' : 0;\n\t\t\tvar fixL = l ? '(0 - '+l+')' : 0;\n\t\t}\n\n\t\t// simulate fixed position\n\t\t$.each([lyr1,lyr2,lyr3], function(i,o) {\n\t\t\tvar s = o[0].style;\n\t\t\ts.position = 'absolute';\n\t\t\tif (i < 2) {\n\t\t\t\tfull ? s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.boxModel?0:'+opts.quirksmodeOffsetHack+') + \"px\"')\n\t\t\t\t\t : s.setExpression('height','this.parentNode.offsetHeight + \"px\"');\n\t\t\t\tfull ? s.setExpression('width','jQuery.boxModel && document.documentElement.clientWidth || document.body.clientWidth + \"px\"')\n\t\t\t\t\t : s.setExpression('width','this.parentNode.offsetWidth + \"px\"');\n\t\t\t\tif (fixL) s.setExpression('left', fixL);\n\t\t\t\tif (fixT) s.setExpression('top', fixT);\n\t\t\t}\n\t\t\telse if (opts.centerY) {\n\t\t\t\tif (full) s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + \"px\"');\n\t\t\t\ts.marginTop = 0;\n\t\t\t}\n\t\t\telse if (!opts.centerY && full) {\n\t\t\t\tvar top = (opts.css && opts.css.top) ? parseInt(opts.css.top) : 0;\n\t\t\t\tvar expression = '((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + \"px\"';\n\t\t\t\ts.setExpression('top',expression);\n\t\t\t}\n\t\t});\n\t}\n\n\t// show the message\n\tif (msg) {\n\t\tif (opts.theme)\n\t\t\tlyr3.find('.ui-widget-content').append(msg);\n\t\telse\n\t\t\tlyr3.append(msg);\n\t\tif (msg.jquery || msg.nodeType)\n\t\t\t$(msg).show();\n\t}\n\n\tif (($.browser.msie || opts.forceIframe) && opts.showOverlay)\n\t\tlyr1.show(); // opacity is zero\n\tif (opts.fadeIn) {\n\t\tvar cb = opts.onBlock ? opts.onBlock : noOp;\n\t\tvar cb1 = (opts.showOverlay && !msg) ? cb : noOp;\n\t\tvar cb2 = msg ? cb : noOp;\n\t\tif (opts.showOverlay)\n\t\t\tlyr2._fadeIn(opts.fadeIn, cb1);\n\t\tif (msg)\n\t\t\tlyr3._fadeIn(opts.fadeIn, cb2);\n\t}\n\telse {\n\t\tif (opts.showOverlay)\n\t\t\tlyr2.show();\n\t\tif (msg)\n\t\t\tlyr3.show();\n\t\tif (opts.onBlock)\n\t\t\topts.onBlock();\n\t}\n\n\t// bind key and mouse events\n\tbind(1, el, opts);\n\n\tif (full) {\n\t\tpageBlock = lyr3[0];\n\t\tpageBlockEls = $(':input:enabled:visible',pageBlock);\n\t\tif (opts.focusInput)\n\t\t\tsetTimeout(focus, 20);\n\t}\n\telse\n\t\tcenter(lyr3[0], opts.centerX, opts.centerY);\n\n\tif (opts.timeout) {\n\t\t// auto-unblock\n\t\tvar to = setTimeout(function() {\n\t\t\tfull ? $.unblockUI(opts) : $(el).unblock(opts);\n\t\t}, opts.timeout);\n\t\t$(el).data('blockUI.timeout', to);\n\t}\n};\n\n// remove the block\nfunction remove(el, opts) {\n\tvar full = (el == window);\n\tvar $el = $(el);\n\tvar data = $el.data('blockUI.history');\n\tvar to = $el.data('blockUI.timeout');\n\tif (to) {\n\t\tclearTimeout(to);\n\t\t$el.removeData('blockUI.timeout');\n\t}\n\topts = $.extend({}, $.blockUI.defaults, opts || {});\n\tbind(0, el, opts); // unbind events\n\n\tif (opts.onUnblock === null) {\n\t\topts.onUnblock = $el.data('blockUI.onUnblock');\n\t\t$el.removeData('blockUI.onUnblock');\n\t}\n\n\tvar els;\n\tif (full) // crazy selector to handle odd field errors in ie6/7\n\t\tels = $('body').children().filter('.blockUI').add('body > .blockUI');\n\telse\n\t\tels = $('.blockUI', el);\n\n\tif (full)\n\t\tpageBlock = pageBlockEls = null;\n\n\tif (opts.fadeOut) {\n\t\tels.fadeOut(opts.fadeOut);\n\t\tsetTimeout(function() { reset(els,data,opts,el); }, opts.fadeOut);\n\t}\n\telse\n\t\treset(els, data, opts, el);\n};\n\n// move blocking element back into the DOM where it started\nfunction reset(els,data,opts,el) {\n\tels.each(function(i,o) {\n\t\t// remove via DOM calls so we don't lose event handlers\n\t\tif (this.parentNode)\n\t\t\tthis.parentNode.removeChild(this);\n\t});\n\n\tif (data && data.el) {\n\t\tdata.el.style.display = data.display;\n\t\tdata.el.style.position = data.position;\n\t\tif (data.parent)\n\t\t\tdata.parent.appendChild(data.el);\n\t\t$(el).removeData('blockUI.history');\n\t}\n\n\tif (typeof opts.onUnblock == 'function')\n\t\topts.onUnblock(el,opts);\n};\n\n// bind/unbind the handler\nfunction bind(b, el, opts) {\n\tvar full = el == window, $el = $(el);\n\n\t// don't bother unbinding if there is nothing to unbind\n\tif (!b && (full && !pageBlock || !full && !$el.data('blockUI.isBlocked')))\n\t\treturn;\n\tif (!full)\n\t\t$el.data('blockUI.isBlocked', b);\n\n\t// don't bind events when overlay is not in use or if bindEvents is false\n\tif (!opts.bindEvents || (b && !opts.showOverlay)) \n\t\treturn;\n\n\t// bind anchors and inputs for mouse and key events\n\tvar events = 'mousedown mouseup keydown keypress';\n\tb ? $(document).bind(events, opts, handler) : $(document).unbind(events, handler);\n\n// former impl...\n//\t   var $e = $('a,:input');\n//\t   b ? $e.bind(events, opts, handler) : $e.unbind(events, handler);\n};\n\n// event handler to suppress keyboard/mouse events when blocking\nfunction handler(e) {\n\t// allow tab navigation (conditionally)\n\tif (e.keyCode && e.keyCode == 9) {\n\t\tif (pageBlock && e.data.constrainTabKey) {\n\t\t\tvar els = pageBlockEls;\n\t\t\tvar fwd = !e.shiftKey && e.target === els[els.length-1];\n\t\t\tvar back = e.shiftKey && e.target === els[0];\n\t\t\tif (fwd || back) {\n\t\t\t\tsetTimeout(function(){focus(back)},10);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t}\n\tvar opts = e.data;\n\t// allow events within the message content\n\tif ($(e.target).parents('div.' + opts.blockMsgClass).length > 0)\n\t\treturn true;\n\n\t// allow events for content that is not being blocked\n\treturn $(e.target).parents().children().filter('div.blockUI').length == 0;\n};\n\nfunction focus(back) {\n\tif (!pageBlockEls)\n\t\treturn;\n\tvar e = pageBlockEls[back===true ? pageBlockEls.length-1 : 0];\n\tif (e)\n\t\te.focus();\n};\n\nfunction center(el, x, y) {\n\tvar p = el.parentNode, s = el.style;\n\tvar l = ((p.offsetWidth - el.offsetWidth)/2) - sz(p,'borderLeftWidth');\n\tvar t = ((p.offsetHeight - el.offsetHeight)/2) - sz(p,'borderTopWidth');\n\tif (x) s.left = l > 0 ? (l+'px') : '0';\n\tif (y) s.top  = t > 0 ? (t+'px') : '0';\n};\n\nfunction sz(el, p) {\n\treturn parseInt($.css(el,p))||0;\n};\n\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/jquery.cookie.js",
    "content": "/*!\n * jQuery Cookie Plugin\n * https://github.com/carhartl/jquery-cookie\n *\n * Copyright 2011, Klaus Hartl\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.opensource.org/licenses/GPL-2.0\n */\n(function($) {\n    $.cookie = function(key, value, options) {\n\n        // key and at least value given, set cookie...\n        if (arguments.length > 1 && (!/Object/.test(Object.prototype.toString.call(value)) || value === null || value === undefined)) {\n            options = $.extend({}, options);\n\n            if (value === null || value === undefined) {\n                options.expires = -1;\n            }\n\n            if (typeof options.expires === 'number') {\n                var days = options.expires, t = options.expires = new Date();\n                t.setDate(t.getDate() + days);\n            }\n\n            value = String(value);\n\n            return (document.cookie = [\n                encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value),\n                options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE\n                options.path    ? '; path=' + options.path : '',\n                options.domain  ? '; domain=' + options.domain : '',\n                options.secure  ? '; secure' : ''\n            ].join(''));\n        }\n\n        // key and possibly options given, get cookie...\n        options = value || {};\n        var decode = options.raw ? function(s) { return s; } : decodeURIComponent;\n\n        var pairs = document.cookie.split('; ');\n        for (var i = 0, pair; pair = pairs[i] && pairs[i].split('='); i++) {\n            if (decode(pair[0]) === key) return decode(pair[1] || ''); // IE saves cookies with empty string as \"c; \", e.g. without \"=\" as opposed to EOMB, thus pair[1] may be undefined\n        }\n        return null;\n    };\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/jquery.form.js",
    "content": "/*!\n * jQuery Form Plugin\n * version: 2.47 (04-SEP-2010)\n * @requires jQuery v1.3.2 or later\n *\n * Examples and documentation at: http://malsup.com/jquery/form/\n * Dual licensed under the MIT and GPL licenses:\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n */\n\n;(function($) {\n\n/*\n\tUsage Note:\n\t-----------\n\tDo not use both ajaxSubmit and ajaxForm on the same form.  These\n\tfunctions are intended to be exclusive.  Use ajaxSubmit if you want\n\tto bind your own submit handler to the form.  For example,\n\n\t$(document).ready(function() {\n\t\t$('#myForm').bind('submit', function() {\n\t\t\t$(this).ajaxSubmit({\n\t\t\t\ttarget: '#output'\n\t\t\t});\n\t\t\treturn false; // <-- important!\n\t\t});\n\t});\n\n\tUse ajaxForm when you want the plugin to manage all the event binding\n\tfor you.  For example,\n\n\t$(document).ready(function() {\n\t\t$('#myForm').ajaxForm({\n\t\t\ttarget: '#output'\n\t\t});\n\t});\n\n\tWhen using ajaxForm, the ajaxSubmit function will be invoked for you\n\tat the appropriate time.\n*/\n\n/**\n * ajaxSubmit() provides a mechanism for immediately submitting\n * an HTML form using AJAX.\n */\n$.fn.ajaxSubmit = function(options) {\n\t// fast fail if nothing selected (http://dev.jquery.com/ticket/2752)\n\tif (!this.length) {\n\t\tlog('ajaxSubmit: skipping submit process - no element selected');\n\t\treturn this;\n\t}\n\n\tif (typeof options == 'function') {\n\t\toptions = { success: options };\n\t}\n\n\tvar url = $.trim(this.attr('action'));\n\tif (url) {\n\t\t// clean url (don't include hash vaue)\n\t\turl = (url.match(/^([^#]+)/)||[])[1];\n\t}\n\turl = url || window.location.href || '';\n\n\toptions = $.extend(true, {\n\t\turl:  url,\n\t\ttype: this.attr('method') || 'GET',\n\t\tiframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'\n\t}, options);\n\n\t// hook for manipulating the form data before it is extracted;\n\t// convenient for use with rich editors like tinyMCE or FCKEditor\n\tvar veto = {};\n\tthis.trigger('form-pre-serialize', [this, options, veto]);\n\tif (veto.veto) {\n\t\tlog('ajaxSubmit: submit vetoed via form-pre-serialize trigger');\n\t\treturn this;\n\t}\n\n\t// provide opportunity to alter form data before it is serialized\n\tif (options.beforeSerialize && options.beforeSerialize(this, options) === false) {\n\t\tlog('ajaxSubmit: submit aborted via beforeSerialize callback');\n\t\treturn this;\n\t}\n\n\tvar n,v,a = this.formToArray(options.semantic);\n\tif (options.data) {\n\t\toptions.extraData = options.data;\n\t\tfor (n in options.data) {\n\t\t\tif(options.data[n] instanceof Array) {\n\t\t\t\tfor (var k in options.data[n]) {\n\t\t\t\t\ta.push( { name: n, value: options.data[n][k] } );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tv = options.data[n];\n\t\t\t\tv = $.isFunction(v) ? v() : v; // if value is fn, invoke it\n\t\t\t\ta.push( { name: n, value: v } );\n\t\t\t}\n\t\t}\n\t}\n\n\t// give pre-submit callback an opportunity to abort the submit\n\tif (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {\n\t\tlog('ajaxSubmit: submit aborted via beforeSubmit callback');\n\t\treturn this;\n\t}\n\n\t// fire vetoable 'validate' event\n\tthis.trigger('form-submit-validate', [a, this, options, veto]);\n\tif (veto.veto) {\n\t\tlog('ajaxSubmit: submit vetoed via form-submit-validate trigger');\n\t\treturn this;\n\t}\n\n\tvar q = $.param(a);\n\n\tif (options.type.toUpperCase() == 'GET') {\n\t\toptions.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;\n\t\toptions.data = null;  // data is null for 'get'\n\t}\n\telse {\n\t\toptions.data = q; // data is the query string for 'post'\n\t}\n\n\tvar $form = this, callbacks = [];\n\tif (options.resetForm) {\n\t\tcallbacks.push(function() { $form.resetForm(); });\n\t}\n\tif (options.clearForm) {\n\t\tcallbacks.push(function() { $form.clearForm(); });\n\t}\n\n\t// perform a load on the target only if dataType is not provided\n\tif (!options.dataType && options.target) {\n\t\tvar oldSuccess = options.success || function(){};\n\t\tcallbacks.push(function(data) {\n\t\t\tvar fn = options.replaceTarget ? 'replaceWith' : 'html';\n\t\t\t$(options.target)[fn](data).each(oldSuccess, arguments);\n\t\t});\n\t}\n\telse if (options.success) {\n\t\tcallbacks.push(options.success);\n\t}\n\n\toptions.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg\n\t\tvar context = options.context || options;   // jQuery 1.4+ supports scope context \n\t\tfor (var i=0, max=callbacks.length; i < max; i++) {\n\t\t\tcallbacks[i].apply(context, [data, status, xhr || $form, $form]);\n\t\t}\n\t};\n\n\t// are there files to upload?\n\tvar fileInputs = $('input:file', this).length > 0;\n\tvar mp = 'multipart/form-data';\n\tvar multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);\n\n\t// options.iframe allows user to force iframe mode\n\t// 06-NOV-09: now defaulting to iframe mode if file input is detected\n   if (options.iframe !== false && (fileInputs || options.iframe || multipart)) {\n\t   // hack to fix Safari hang (thanks to Tim Molendijk for this)\n\t   // see:  http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d\n\t   if (options.closeKeepAlive) {\n\t\t   $.get(options.closeKeepAlive, fileUpload);\n\t\t}\n\t   else {\n\t\t   fileUpload();\n\t\t}\n   }\n   else {\n\t   $.ajax(options);\n   }\n\n\t// fire 'notify' event\n\tthis.trigger('form-submit-notify', [this, options]);\n\treturn this;\n\n\n\t// private function for handling file uploads (hat tip to YAHOO!)\n\tfunction fileUpload() {\n\t\tvar form = $form[0];\n\n\t\tif ($(':input[name=submit],:input[id=submit]', form).length) {\n\t\t\t// if there is an input with a name or id of 'submit' then we won't be\n\t\t\t// able to invoke the submit fn on the form (at least not x-browser)\n\t\t\talert('Error: Form elements must not have name or id of \"submit\".');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tvar s = $.extend(true, {}, $.ajaxSettings, options);\n\t\ts.context = s.context || s;\n\t\tvar id = 'jqFormIO' + (new Date().getTime()), fn = '_'+id;\n\t\twindow[fn] = function() {\n\t\t\tvar f = $io.data('form-plugin-onload');\n\t\t\tif (f) {\n\t\t\t\tf();\n\t\t\t\twindow[fn] = undefined;\n\t\t\t\ttry { delete window[fn]; } catch(e){}\n\t\t\t}\n\t\t}\n\t\tvar $io = $('<iframe id=\"' + id + '\" name=\"' + id + '\" src=\"'+ s.iframeSrc +'\" onload=\"window[\\'_\\'+this.id]()\" />');\n\t\tvar io = $io[0];\n\n\t\t$io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });\n\n\t\tvar xhr = { // mock object\n\t\t\taborted: 0,\n\t\t\tresponseText: null,\n\t\t\tresponseXML: null,\n\t\t\tstatus: 0,\n\t\t\tstatusText: 'n/a',\n\t\t\tgetAllResponseHeaders: function() {},\n\t\t\tgetResponseHeader: function() {},\n\t\t\tsetRequestHeader: function() {},\n\t\t\tabort: function() {\n\t\t\t\tthis.aborted = 1;\n\t\t\t\t$io.attr('src', s.iframeSrc); // abort op in progress\n\t\t\t}\n\t\t};\n\n\t\tvar g = s.global;\n\t\t// trigger ajax global events so that activity/block indicators work like normal\n\t\tif (g && ! $.active++) {\n\t\t\t$.event.trigger(\"ajaxStart\");\n\t\t}\n\t\tif (g) {\n\t\t\t$.event.trigger(\"ajaxSend\", [xhr, s]);\n\t\t}\n\n\t\tif (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {\n\t\t\tif (s.global) { \n\t\t\t\t$.active--;\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tif (xhr.aborted) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar cbInvoked = false;\n\t\tvar timedOut = 0;\n\n\t\t// add submitting element to data if we know it\n\t\tvar sub = form.clk;\n\t\tif (sub) {\n\t\t\tvar n = sub.name;\n\t\t\tif (n && !sub.disabled) {\n\t\t\t\ts.extraData = s.extraData || {};\n\t\t\t\ts.extraData[n] = sub.value;\n\t\t\t\tif (sub.type == \"image\") {\n\t\t\t\t\ts.extraData[n+'.x'] = form.clk_x;\n\t\t\t\t\ts.extraData[n+'.y'] = form.clk_y;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// take a breath so that pending repaints get some cpu time before the upload starts\n\t\tfunction doSubmit() {\n\t\t\t// make sure form attrs are set\n\t\t\tvar t = $form.attr('target'), a = $form.attr('action');\n\n\t\t\t// update form attrs in IE friendly way\n\t\t\tform.setAttribute('target',id);\n\t\t\tif (form.getAttribute('method') != 'POST') {\n\t\t\t\tform.setAttribute('method', 'POST');\n\t\t\t}\n\t\t\tif (form.getAttribute('action') != s.url) {\n\t\t\t\tform.setAttribute('action', s.url);\n\t\t\t}\n\n\t\t\t// ie borks in some cases when setting encoding\n\t\t\tif (! s.skipEncodingOverride) {\n\t\t\t\t$form.attr({\n\t\t\t\t\tencoding: 'multipart/form-data',\n\t\t\t\t\tenctype:  'multipart/form-data'\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// support timout\n\t\t\tif (s.timeout) {\n\t\t\t\tsetTimeout(function() { timedOut = true; cb(); }, s.timeout);\n\t\t\t}\n\n\t\t\t// add \"extra\" data to form if provided in options\n\t\t\tvar extraInputs = [];\n\t\t\ttry {\n\t\t\t\tif (s.extraData) {\n\t\t\t\t\tfor (var n in s.extraData) {\n\t\t\t\t\t\textraInputs.push(\n\t\t\t\t\t\t\t$('<input type=\"hidden\" name=\"'+n+'\" value=\"'+s.extraData[n]+'\" />')\n\t\t\t\t\t\t\t\t.appendTo(form)[0]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// add iframe to doc and submit the form\n\t\t\t\t$io.appendTo('body');\n\t\t\t\t$io.data('form-plugin-onload', cb);\n\t\t\t\tform.submit();\n\t\t\t}\n\t\t\tfinally {\n\t\t\t\t// reset attrs and remove \"extra\" input elements\n\t\t\t\tform.setAttribute('action',a);\n\t\t\t\tif(t) {\n\t\t\t\t\tform.setAttribute('target', t);\n\t\t\t\t} else {\n\t\t\t\t\t$form.removeAttr('target');\n\t\t\t\t}\n\t\t\t\t$(extraInputs).remove();\n\t\t\t}\n\t\t}\n\n\t\tif (s.forceSync) {\n\t\t\tdoSubmit();\n\t\t}\n\t\telse {\n\t\t\tsetTimeout(doSubmit, 10); // this lets dom updates render\n\t\t}\n\t\n\t\tvar data, doc, domCheckCount = 50;\n\n\t\tfunction cb() {\n\t\t\tif (cbInvoked) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$io.removeData('form-plugin-onload');\n\t\t\t\n\t\t\tvar ok = true;\n\t\t\ttry {\n\t\t\t\tif (timedOut) {\n\t\t\t\t\tthrow 'timeout';\n\t\t\t\t}\n\t\t\t\t// extract the server response from the iframe\n\t\t\t\tdoc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;\n\t\t\t\t\n\t\t\t\tvar isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);\n\t\t\t\tlog('isXml='+isXml);\n\t\t\t\tif (!isXml && window.opera && (doc.body == null || doc.body.innerHTML == '')) {\n\t\t\t\t\tif (--domCheckCount) {\n\t\t\t\t\t\t// in some browsers (Opera) the iframe DOM is not always traversable when\n\t\t\t\t\t\t// the onload callback fires, so we loop a bit to accommodate\n\t\t\t\t\t\tlog('requeing onLoad callback, DOM not available');\n\t\t\t\t\t\tsetTimeout(cb, 250);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t// let this fall through because server response could be an empty document\n\t\t\t\t\t//log('Could not access iframe DOM after mutiple tries.');\n\t\t\t\t\t//throw 'DOMException: not available';\n\t\t\t\t}\n\n\t\t\t\t//log('response detected');\n\t\t\t\tcbInvoked = true;\n\t\t\t\txhr.responseText = doc.documentElement ? doc.documentElement.innerHTML : null; \n\t\t\t\txhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;\n\t\t\t\txhr.getResponseHeader = function(header){\n\t\t\t\t\tvar headers = {'content-type': s.dataType};\n\t\t\t\t\treturn headers[header];\n\t\t\t\t};\n\n\t\t\t\tvar scr = /(json|script)/.test(s.dataType);\n\t\t\t\tif (scr || s.textarea) {\n\t\t\t\t\t// see if user embedded response in textarea\n\t\t\t\t\tvar ta = doc.getElementsByTagName('textarea')[0];\n\t\t\t\t\tif (ta) {\n\t\t\t\t\t\txhr.responseText = ta.value;\n\t\t\t\t\t}\n\t\t\t\t\telse if (scr) {\n\t\t\t\t\t\t// account for browsers injecting pre around json response\n\t\t\t\t\t\tvar pre = doc.getElementsByTagName('pre')[0];\n\t\t\t\t\t\tif (pre) {\n\t\t\t\t\t\t\txhr.responseText = pre.innerHTML;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\t\t\t  \n\t\t\t\t}\n\t\t\t\telse if (s.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {\n\t\t\t\t\txhr.responseXML = toXml(xhr.responseText);\n\t\t\t\t}\n\t\t\t\tdata = $.httpData(xhr, s.dataType);\n\t\t\t}\n\t\t\tcatch(e){\n\t\t\t\tlog('error caught:',e);\n\t\t\t\tok = false;\n\t\t\t\txhr.error = e;\n\t\t\t\t$.handleError(s, xhr, 'error', e);\n\t\t\t}\n\n\t\t\t// ordering of these callbacks/triggers is odd, but that's how $.ajax does it\n\t\t\tif (ok) {\n\t\t\t\ts.success.call(s.context, data, 'success', xhr);\n\t\t\t\tif (g) {\n\t\t\t\t\t$.event.trigger(\"ajaxSuccess\", [xhr, s]);\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (g) {\n\t\t\t\t$.event.trigger(\"ajaxComplete\", [xhr, s]);\n\t\t\t}\n\t\t\tif (g && ! --$.active) {\n\t\t\t\t$.event.trigger(\"ajaxStop\");\n\t\t\t}\n\t\t\tif (s.complete) {\n\t\t\t\ts.complete.call(s.context, xhr, ok ? 'success' : 'error');\n\t\t\t}\n\n\t\t\t// clean up\n\t\t\tsetTimeout(function() {\n\t\t\t\t$io.removeData('form-plugin-onload');\n\t\t\t\t$io.remove();\n\t\t\t\txhr.responseXML = null;\n\t\t\t}, 100);\n\t\t}\n\n\t\tfunction toXml(s, doc) {\n\t\t\tif (window.ActiveXObject) {\n\t\t\t\tdoc = new ActiveXObject('Microsoft.XMLDOM');\n\t\t\t\tdoc.async = 'false';\n\t\t\t\tdoc.loadXML(s);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdoc = (new DOMParser()).parseFromString(s, 'text/xml');\n\t\t\t}\n\t\t\treturn (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;\n\t\t}\n\t}\n};\n\n/**\n * ajaxForm() provides a mechanism for fully automating form submission.\n *\n * The advantages of using this method instead of ajaxSubmit() are:\n *\n * 1: This method will include coordinates for <input type=\"image\" /> elements (if the element\n *\tis used to submit the form).\n * 2. This method will include the submit element's name/value data (for the element that was\n *\tused to submit the form).\n * 3. This method binds the submit() method to the form for you.\n *\n * The options argument for ajaxForm works exactly as it does for ajaxSubmit.  ajaxForm merely\n * passes the options argument along after properly binding events for submit elements and\n * the form itself.\n */\n$.fn.ajaxForm = function(options) {\n\t// in jQuery 1.3+ we can fix mistakes with the ready state\n\tif (this.length === 0) {\n\t\tvar o = { s: this.selector, c: this.context };\n\t\tif (!$.isReady && o.s) {\n\t\t\tlog('DOM not ready, queuing ajaxForm');\n\t\t\t$(function() {\n\t\t\t\t$(o.s,o.c).ajaxForm(options);\n\t\t\t});\n\t\t\treturn this;\n\t\t}\n\t\t// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()\n\t\tlog('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));\n\t\treturn this;\n\t}\n\t\n\treturn this.ajaxFormUnbind().bind('submit.form-plugin', function(e) {\n\t\tif (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed\n\t\t\te.preventDefault();\n\t\t\t$(this).ajaxSubmit(options);\n\t\t}\n\t}).bind('click.form-plugin', function(e) {\n\t\tvar target = e.target;\n\t\tvar $el = $(target);\n\t\tif (!($el.is(\":submit,input:image\"))) {\n\t\t\t// is this a child element of the submit el?  (ex: a span within a button)\n\t\t\tvar t = $el.closest(':submit');\n\t\t\tif (t.length == 0) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\ttarget = t[0];\n\t\t}\n\t\tvar form = this;\n\t\tform.clk = target;\n\t\tif (target.type == 'image') {\n\t\t\tif (e.offsetX != undefined) {\n\t\t\t\tform.clk_x = e.offsetX;\n\t\t\t\tform.clk_y = e.offsetY;\n\t\t\t} else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin\n\t\t\t\tvar offset = $el.offset();\n\t\t\t\tform.clk_x = e.pageX - offset.left;\n\t\t\t\tform.clk_y = e.pageY - offset.top;\n\t\t\t} else {\n\t\t\t\tform.clk_x = e.pageX - target.offsetLeft;\n\t\t\t\tform.clk_y = e.pageY - target.offsetTop;\n\t\t\t}\n\t\t}\n\t\t// clear form vars\n\t\tsetTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);\n\t});\n};\n\n// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm\n$.fn.ajaxFormUnbind = function() {\n\treturn this.unbind('submit.form-plugin click.form-plugin');\n};\n\n/**\n * formToArray() gathers form element data into an array of objects that can\n * be passed to any of the following ajax functions: $.get, $.post, or load.\n * Each object in the array has both a 'name' and 'value' property.  An example of\n * an array for a simple login form might be:\n *\n * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]\n *\n * It is this array that is passed to pre-submit callback functions provided to the\n * ajaxSubmit() and ajaxForm() methods.\n */\n$.fn.formToArray = function(semantic) {\n\tvar a = [];\n\tif (this.length === 0) {\n\t\treturn a;\n\t}\n\n\tvar form = this[0];\n\tvar els = semantic ? form.getElementsByTagName('*') : form.elements;\n\tif (!els) {\n\t\treturn a;\n\t}\n\t\n\tvar i,j,n,v,el;\n\tfor(i=0, max=els.length; i < max; i++) {\n\t\tel = els[i];\n\t\tn = el.name;\n\t\tif (!n) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (semantic && form.clk && el.type == \"image\") {\n\t\t\t// handle image inputs on the fly when semantic == true\n\t\t\tif(!el.disabled && form.clk == el) {\n\t\t\t\ta.push({name: n, value: $(el).val()});\n\t\t\t\ta.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tv = $.fieldValue(el, true);\n\t\tif (v && v.constructor == Array) {\n\t\t\tfor(j=0, jmax=v.length; j < jmax; j++) {\n\t\t\t\ta.push({name: n, value: v[j]});\n\t\t\t}\n\t\t}\n\t\telse if (v !== null && typeof v != 'undefined') {\n\t\t\ta.push({name: n, value: v});\n\t\t}\n\t}\n\n\tif (!semantic && form.clk) {\n\t\t// input type=='image' are not found in elements array! handle it here\n\t\tvar $input = $(form.clk), input = $input[0];\n\t\tn = input.name;\n\t\tif (n && !input.disabled && input.type == 'image') {\n\t\t\ta.push({name: n, value: $input.val()});\n\t\t\ta.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});\n\t\t}\n\t}\n\treturn a;\n};\n\n/**\n * Serializes form data into a 'submittable' string. This method will return a string\n * in the format: name1=value1&amp;name2=value2\n */\n$.fn.formSerialize = function(semantic) {\n\t//hand off to jQuery.param for proper encoding\n\treturn $.param(this.formToArray(semantic));\n};\n\n/**\n * Serializes all field elements in the jQuery object into a query string.\n * This method will return a string in the format: name1=value1&amp;name2=value2\n */\n$.fn.fieldSerialize = function(successful) {\n\tvar a = [];\n\tthis.each(function() {\n\t\tvar n = this.name;\n\t\tif (!n) {\n\t\t\treturn;\n\t\t}\n\t\tvar v = $.fieldValue(this, successful);\n\t\tif (v && v.constructor == Array) {\n\t\t\tfor (var i=0,max=v.length; i < max; i++) {\n\t\t\t\ta.push({name: n, value: v[i]});\n\t\t\t}\n\t\t}\n\t\telse if (v !== null && typeof v != 'undefined') {\n\t\t\ta.push({name: this.name, value: v});\n\t\t}\n\t});\n\t//hand off to jQuery.param for proper encoding\n\treturn $.param(a);\n};\n\n/**\n * Returns the value(s) of the element in the matched set.  For example, consider the following form:\n *\n *  <form><fieldset>\n *\t  <input name=\"A\" type=\"text\" />\n *\t  <input name=\"A\" type=\"text\" />\n *\t  <input name=\"B\" type=\"checkbox\" value=\"B1\" />\n *\t  <input name=\"B\" type=\"checkbox\" value=\"B2\"/>\n *\t  <input name=\"C\" type=\"radio\" value=\"C1\" />\n *\t  <input name=\"C\" type=\"radio\" value=\"C2\" />\n *  </fieldset></form>\n *\n *  var v = $(':text').fieldValue();\n *  // if no values are entered into the text inputs\n *  v == ['','']\n *  // if values entered into the text inputs are 'foo' and 'bar'\n *  v == ['foo','bar']\n *\n *  var v = $(':checkbox').fieldValue();\n *  // if neither checkbox is checked\n *  v === undefined\n *  // if both checkboxes are checked\n *  v == ['B1', 'B2']\n *\n *  var v = $(':radio').fieldValue();\n *  // if neither radio is checked\n *  v === undefined\n *  // if first radio is checked\n *  v == ['C1']\n *\n * The successful argument controls whether or not the field element must be 'successful'\n * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).\n * The default value of the successful argument is true.  If this value is false the value(s)\n * for each element is returned.\n *\n * Note: This method *always* returns an array.  If no valid value can be determined the\n *\t   array will be empty, otherwise it will contain one or more values.\n */\n$.fn.fieldValue = function(successful) {\n\tfor (var val=[], i=0, max=this.length; i < max; i++) {\n\t\tvar el = this[i];\n\t\tvar v = $.fieldValue(el, successful);\n\t\tif (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) {\n\t\t\tcontinue;\n\t\t}\n\t\tv.constructor == Array ? $.merge(val, v) : val.push(v);\n\t}\n\treturn val;\n};\n\n/**\n * Returns the value of the field element.\n */\n$.fieldValue = function(el, successful) {\n\tvar n = el.name, t = el.type, tag = el.tagName.toLowerCase();\n\tif (successful === undefined) {\n\t\tsuccessful = true;\n\t}\n\n\tif (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||\n\t\t(t == 'checkbox' || t == 'radio') && !el.checked ||\n\t\t(t == 'submit' || t == 'image') && el.form && el.form.clk != el ||\n\t\ttag == 'select' && el.selectedIndex == -1)) {\n\t\t\treturn null;\n\t}\n\n\tif (tag == 'select') {\n\t\tvar index = el.selectedIndex;\n\t\tif (index < 0) {\n\t\t\treturn null;\n\t\t}\n\t\tvar a = [], ops = el.options;\n\t\tvar one = (t == 'select-one');\n\t\tvar max = (one ? index+1 : ops.length);\n\t\tfor(var i=(one ? index : 0); i < max; i++) {\n\t\t\tvar op = ops[i];\n\t\t\tif (op.selected) {\n\t\t\t\tvar v = op.value;\n\t\t\t\tif (!v) { // extra pain for IE...\n\t\t\t\t\tv = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;\n\t\t\t\t}\n\t\t\t\tif (one) {\n\t\t\t\t\treturn v;\n\t\t\t\t}\n\t\t\t\ta.push(v);\n\t\t\t}\n\t\t}\n\t\treturn a;\n\t}\n\treturn $(el).val();\n};\n\n/**\n * Clears the form data.  Takes the following actions on the form's input fields:\n *  - input text fields will have their 'value' property set to the empty string\n *  - select elements will have their 'selectedIndex' property set to -1\n *  - checkbox and radio inputs will have their 'checked' property set to false\n *  - inputs of type submit, button, reset, and hidden will *not* be effected\n *  - button elements will *not* be effected\n */\n$.fn.clearForm = function() {\n\treturn this.each(function() {\n\t\t$('input,select,textarea', this).clearFields();\n\t});\n};\n\n/**\n * Clears the selected form elements.\n */\n$.fn.clearFields = $.fn.clearInputs = function() {\n\treturn this.each(function() {\n\t\tvar t = this.type, tag = this.tagName.toLowerCase();\n\t\tif (t == 'text' || t == 'password' || tag == 'textarea') {\n\t\t\tthis.value = '';\n\t\t}\n\t\telse if (t == 'checkbox' || t == 'radio') {\n\t\t\tthis.checked = false;\n\t\t}\n\t\telse if (tag == 'select') {\n\t\t\tthis.selectedIndex = -1;\n\t\t}\n\t});\n};\n\n/**\n * Resets the form data.  Causes all form elements to be reset to their original value.\n */\n$.fn.resetForm = function() {\n\treturn this.each(function() {\n\t\t// guard against an input with the name of 'reset'\n\t\t// note that IE reports the reset function as an 'object'\n\t\tif (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) {\n\t\t\tthis.reset();\n\t\t}\n\t});\n};\n\n/**\n * Enables or disables any matching elements.\n */\n$.fn.enable = function(b) {\n\tif (b === undefined) {\n\t\tb = true;\n\t}\n\treturn this.each(function() {\n\t\tthis.disabled = !b;\n\t});\n};\n\n/**\n * Checks/unchecks any matching checkboxes or radio buttons and\n * selects/deselects and matching option elements.\n */\n$.fn.selected = function(select) {\n\tif (select === undefined) {\n\t\tselect = true;\n\t}\n\treturn this.each(function() {\n\t\tvar t = this.type;\n\t\tif (t == 'checkbox' || t == 'radio') {\n\t\t\tthis.checked = select;\n\t\t}\n\t\telse if (this.tagName.toLowerCase() == 'option') {\n\t\t\tvar $sel = $(this).parent('select');\n\t\t\tif (select && $sel[0] && $sel[0].type == 'select-one') {\n\t\t\t\t// deselect all other options\n\t\t\t\t$sel.find('option').selected(false);\n\t\t\t}\n\t\t\tthis.selected = select;\n\t\t}\n\t});\n};\n\n// helper fn for console logging\n// set $.fn.ajaxSubmit.debug to true to enable debug logging\nfunction log() {\n\tif ($.fn.ajaxSubmit.debug) {\n\t\tvar msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');\n\t\tif (window.console && window.console.log) {\n\t\t\twindow.console.log(msg);\n\t\t}\n\t\telse if (window.opera && window.opera.postError) {\n\t\t\twindow.opera.postError(msg);\n\t\t}\n\t}\n};\n\n})(jQuery);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/jquery.jstree.js",
    "content": "/*\n * jsTree 1.0-rc1\n * http://jstree.com/\n *\n * Copyright (c) 2010 Ivan Bozhanov (vakata.com)\n *\n * Dual licensed under the MIT and GPL licenses (same as jQuery):\n *   http://www.opensource.org/licenses/mit-license.php\n *   http://www.gnu.org/licenses/gpl.html\n *\n * $Date: 2010-07-01 10:51:11 +0300 (четв, 01 юли 2010) $\n * $Revision: 191 $\n */\n\n/*jslint browser: true, onevar: true, undef: true, bitwise: true, strict: true */\n/*global window : false, clearInterval: false, clearTimeout: false, document: false, setInterval: false, setTimeout: false, jQuery: false, navigator: false, XSLTProcessor: false, DOMParser: false, XMLSerializer: false*/\n\n\"use strict\";\n// Common functions not related to jsTree \n// decided to move them to a `vakata` \"namespace\"\n(function ($) {\n\t$.vakata = {};\n\t// CSS related functions\n\t$.vakata.css = {\n\t\tget_css : function(rule_name, delete_flag, sheet) {\n\t\t\trule_name = rule_name.toLowerCase();\n\t\t\tvar css_rules = sheet.cssRules || sheet.rules,\n\t\t\t\tj = 0;\n\t\t\tdo {\n\t\t\t\tif(css_rules.length && j > css_rules.length + 5) { return false; }\n\t\t\t\tif(css_rules[j].selectorText && css_rules[j].selectorText.toLowerCase() == rule_name) {\n\t\t\t\t\tif(delete_flag === true) {\n\t\t\t\t\t\tif(sheet.removeRule) { sheet.removeRule(j); }\n\t\t\t\t\t\tif(sheet.deleteRule) { sheet.deleteRule(j); }\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t\telse { return css_rules[j]; }\n\t\t\t\t}\n\t\t\t}\n\t\t\twhile (css_rules[++j]);\n\t\t\treturn false;\n\t\t},\n\t\tadd_css : function(rule_name, sheet) {\n\t\t\tif($.jstree.css.get_css(rule_name, false, sheet)) { return false; }\n\t\t\tif(sheet.insertRule) { sheet.insertRule(rule_name + ' { }', 0); } else { sheet.addRule(rule_name, null, 0); }\n\t\t\treturn $.vakata.css.get_css(rule_name);\n\t\t},\n\t\tremove_css : function(rule_name, sheet) { \n\t\t\treturn $.vakata.css.get_css(rule_name, true, sheet); \n\t\t},\n\t\tadd_sheet : function(opts) {\n\t\t\tvar tmp;\n\t\t\tif(opts.str) {\n\t\t\t\ttmp = document.createElement(\"style\");\n\t\t\t\ttmp.setAttribute('type',\"text/css\");\n\t\t\t\tif(tmp.styleSheet) {\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t\ttmp.styleSheet.cssText = opts.str;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\ttmp.appendChild(document.createTextNode(opts.str));\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t}\n\t\t\t\treturn tmp.sheet || tmp.styleSheet;\n\t\t\t}\n\t\t\tif(opts.url) {\n\t\t\t\tif(document.createStyleSheet) {\n\t\t\t\t\ttry { tmp = document.createStyleSheet(opts.url); } catch (e) { }\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\ttmp\t\t\t= document.createElement('link');\n\t\t\t\t\ttmp.rel\t\t= 'stylesheet';\n\t\t\t\t\ttmp.type\t= 'text/css';\n\t\t\t\t\ttmp.media\t= \"all\";\n\t\t\t\t\ttmp.href\t= opts.url;\n\t\t\t\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(tmp);\n\t\t\t\t\treturn tmp.styleSheet;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n})(jQuery);\n\n/* \n * jsTree core 1.0\n */\n(function ($) {\n\t// private variables \n\tvar instances = [],\t\t\t// instance array (used by $.jstree.reference/create/focused)\n\t\tfocused_instance = -1,\t// the index in the instance array of the currently focused instance\n\t\tplugins = {},\t\t\t// list of included plugins\n\t\tprepared_move = {},\t\t// for the move plugin\n\t\tis_ie6 = false;\n\n\t// jQuery plugin wrapper (thanks to jquery UI widget function)\n\t$.fn.jstree = function (settings) {\n\t\tvar isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree(\"open_node\")\n\t\t\targs = Array.prototype.slice.call(arguments, 1), \n\t\t\treturnValue = this;\n\n\t\t// extend settings and allow for multiple hashes and metadata\n\t\tif(!isMethodCall && $.meta) { args.push($.metadata.get(this).jstree); }\n\t\tsettings = !isMethodCall && args.length ? $.extend.apply(null, [true, settings].concat(args)) : settings;\n\t\t// block calls to \"private\" methods\n\t\tif(isMethodCall && settings.substring(0, 1) == '_') { return returnValue; }\n\n\t\t// if a method call execute the method on all selected instances\n\t\tif(isMethodCall) {\n\t\t\tthis.each(function() {\n\t\t\t\tvar instance = instances[$.data(this, \"jstree-instance-id\")],\n\t\t\t\t\tmethodValue = (instance && $.isFunction(instance[settings])) ? instance[settings].apply(instance, args) : instance;\n\t\t\t\t\tif(typeof methodValue !== \"undefined\" && (settings.indexOf(\"is_\" === 0) || (methodValue !== true && methodValue !== false))) { returnValue = methodValue; return false; }\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tthis.each(function() {\n\t\t\t\tvar instance_id = $.data(this, \"jstree-instance-id\"),\n\t\t\t\t\ts = false;\n\t\t\t\t// if an instance already exists, destroy it first\n\t\t\t\tif(typeof instance_id !== \"undefined\" && instances[instance_id]) { instances[instance_id].destroy(); }\n\t\t\t\t// push a new empty object to the instances array\n\t\t\t\tinstance_id = parseInt(instances.push({}),10) - 1;\n\t\t\t\t// store the jstree instance id to the container element\n\t\t\t\t$.data(this, \"jstree-instance-id\", instance_id);\n\t\t\t\t// clean up all plugins\n\t\t\t\tif(!settings) { settings = {}; }\n\t\t\t\tsettings.plugins = $.isArray(settings.plugins) ? settings.plugins : $.jstree.defaults.plugins;\n\t\t\t\tif($.inArray(\"core\", settings.plugins) === -1) { settings.plugins.unshift(\"core\"); }\n\t\t\t\t\n\t\t\t\t// only unique plugins (NOT WORKING)\n\t\t\t\t// settings.plugins = settings.plugins.sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\");\n\n\t\t\t\t// extend defaults with passed data\n\t\t\t\ts = $.extend(true, {}, $.jstree.defaults, settings);\n\t\t\t\ts.plugins = settings.plugins;\n\t\t\t\t$.each(plugins, function (i, val) { if($.inArray(i, s.plugins) === -1) { s[i] = null; delete s[i]; } });\n\t\t\t\t// push the new object to the instances array (at the same time set the default classes to the container) and init\n\t\t\t\tinstances[instance_id] = new $.jstree._instance(instance_id, $(this).addClass(\"jstree jstree-\" + instance_id), s); \n\t\t\t\t// init all activated plugins for this instance\n\t\t\t\t$.each(instances[instance_id]._get_settings().plugins, function (i, val) { instances[instance_id].data[val] = {}; });\n\t\t\t\t$.each(instances[instance_id]._get_settings().plugins, function (i, val) { if(plugins[val]) { plugins[val].__init.apply(instances[instance_id]); } });\n\t\t\t\t// initialize the instance\n\t\t\t\tinstances[instance_id].init();\n\t\t\t});\n\t\t}\n\t\t// return the jquery selection (or if it was a method call that returned a value - the returned value)\n\t\treturn returnValue;\n\t};\n\t// object to store exposed functions and objects\n\t$.jstree = {\n\t\tdefaults : {\n\t\t\tplugins : []\n\t\t},\n\t\t_focused : function () { return instances[focused_instance] || null; },\n\t\t_reference : function (needle) { \n\t\t\t// get by instance id\n\t\t\tif(instances[needle]) { return instances[needle]; }\n\t\t\t// get by DOM (if still no luck - return null\n\t\t\tvar o = $(needle); \n\t\t\tif(!o.length && typeof needle === \"string\") { o = $(\"#\" + needle); }\n\t\t\tif(!o.length) { return null; }\n\t\t\treturn instances[o.closest(\".jstree\").data(\"jstree-instance-id\")] || null; \n\t\t},\n\t\t_instance : function (index, container, settings) { \n\t\t\t// for plugins to store data in\n\t\t\tthis.data = { core : {} };\n\t\t\tthis.get_settings\t= function () { return $.extend(true, {}, settings); };\n\t\t\tthis._get_settings\t= function () { return settings; };\n\t\t\tthis.get_index\t\t= function () { return index; };\n\t\t\tthis.get_container\t= function () { return container; };\n\t\t\tthis._set_settings\t= function (s) { \n\t\t\t\tsettings = $.extend(true, {}, settings, s);\n\t\t\t};\n\t\t},\n\t\t_fn : { },\n\t\tplugin : function (pname, pdata) {\n\t\t\tpdata = $.extend({}, {\n\t\t\t\t__init\t\t: $.noop, \n\t\t\t\t__destroy\t: $.noop,\n\t\t\t\t_fn\t\t\t: {},\n\t\t\t\tdefaults\t: false\n\t\t\t}, pdata);\n\t\t\tplugins[pname] = pdata;\n\n\t\t\t$.jstree.defaults[pname] = pdata.defaults;\n\t\t\t$.each(pdata._fn, function (i, val) {\n\t\t\t\tval.plugin\t\t= pname;\n\t\t\t\tval.old\t\t\t= $.jstree._fn[i];\n\t\t\t\t$.jstree._fn[i] = function () {\n\t\t\t\t\tvar rslt,\n\t\t\t\t\t\tfunc = val,\n\t\t\t\t\t\targs = Array.prototype.slice.call(arguments),\n\t\t\t\t\t\tevnt = new $.Event(\"before.jstree\"),\n\t\t\t\t\t\trlbk = false;\n\n\t\t\t\t\t// Check if function belongs to the included plugins of this instance\n\t\t\t\t\tdo {\n\t\t\t\t\t\tif(func && func.plugin && $.inArray(func.plugin, this._get_settings().plugins) !== -1) { break; }\n\t\t\t\t\t\tfunc = func.old;\n\t\t\t\t\t} while(func);\n\t\t\t\t\tif(!func) { return; }\n\n\t\t\t\t\t// a chance to stop execution (or change arguments): \n\t\t\t\t\t// * just bind to jstree.before\n\t\t\t\t\t// * check the additional data object (func property)\n\t\t\t\t\t// * call event.stopImmediatePropagation()\n\t\t\t\t\t// * return false (or an array of arguments)\n\t\t\t\t\trslt = this.get_container().triggerHandler(evnt, { \"func\" : i, \"inst\" : this, \"args\" : args });\n\t\t\t\t\tif(rslt === false) { return; }\n\t\t\t\t\tif(typeof rslt !== \"undefined\") { args = rslt; }\n\n\t\t\t\t\t// context and function to trigger events, then finally call the function\n\t\t\t\t\tif(i.indexOf(\"_\") === 0) {\n\t\t\t\t\t\trslt = func.apply(this, args);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\trslt = func.apply(\n\t\t\t\t\t\t\t$.extend({}, this, { \n\t\t\t\t\t\t\t\t__callback : function (data) { \n\t\t\t\t\t\t\t\t\tthis.get_container().triggerHandler( i + '.jstree', { \"inst\" : this, \"args\" : args, \"rslt\" : data, \"rlbk\" : rlbk });\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t__rollback : function () { \n\t\t\t\t\t\t\t\t\trlbk = this.get_rollback();\n\t\t\t\t\t\t\t\t\treturn rlbk;\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t__call_old : function (replace_arguments) {\n\t\t\t\t\t\t\t\t\treturn func.old.apply(this, (replace_arguments ? Array.prototype.slice.call(arguments, 1) : args ) );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}), args);\n\t\t\t\t\t}\n\n\t\t\t\t\t// return the result\n\t\t\t\t\treturn rslt;\n\t\t\t\t};\n\t\t\t\t$.jstree._fn[i].old = val.old;\n\t\t\t\t$.jstree._fn[i].plugin = pname;\n\t\t\t});\n\t\t},\n\t\trollback : function (rb) {\n\t\t\tif(rb) {\n\t\t\t\tif(!$.isArray(rb)) { rb = [ rb ]; }\n\t\t\t\t$.each(rb, function (i, val) {\n\t\t\t\t\tinstances[val.i].set_rollback(val.h, val.d);\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t};\n\t// set the prototype for all instances\n\t$.jstree._fn = $.jstree._instance.prototype = {};\n\n\t// css functions - used internally\n\n\t// load the css when DOM is ready\n\t$(function() {\n\t\t// code is copied form jQuery ($.browser is deprecated + there is a bug in IE)\n\t\tvar u = navigator.userAgent.toLowerCase(),\n\t\t\tv = (u.match( /.+?(?:rv|it|ra|ie)[\\/: ]([\\d.]+)/ ) || [0,'0'])[1],\n\t\t\tcss_string = '' + \n\t\t\t\t'.jstree ul, .jstree li { display:block; margin:0 0 0 0; padding:0 0 0 0; list-style-type:none; } ' + \n\t\t\t\t'.jstree li { display:block; min-height:18px; line-height:18px; white-space:nowrap; margin-left:18px; } ' + \n\t\t\t\t'.jstree-rtl li { margin-left:0; margin-right:18px; } ' + \n\t\t\t\t'.jstree > ul > li { margin-left:0px; } ' + \n\t\t\t\t'.jstree-rtl > ul > li { margin-right:0px; } ' + \n\t\t\t\t'.jstree ins { display:inline-block; text-decoration:none; width:18px; height:18px; margin:0 0 0 0; padding:0; } ' + \n\t\t\t\t'.jstree a { display:inline-block; line-height:16px; height:16px; color:black; white-space:nowrap; text-decoration:none; padding:1px 2px; margin:0; } ' + \n\t\t\t\t'.jstree a:focus { outline: none; } ' + \n\t\t\t\t'.jstree a > ins { height:16px; width:16px; } ' + \n\t\t\t\t'.jstree a > .jstree-icon { margin-right:3px; } ' + \n\t\t\t\t'.jstree-rtl a > .jstree-icon { margin-left:3px; margin-right:0; } ' + \n\t\t\t\t'li.jstree-open > ul { display:block; } ' + \n\t\t\t\t'li.jstree-closed > ul { display:none; } ';\n\t\t// Correct IE 6 (does not support the > CSS selector)\n\t\tif(/msie/.test(u) && parseInt(v, 10) == 6) { \n\t\t\tis_ie6 = true;\n\t\t\tcss_string += '' + \n\t\t\t\t'.jstree li { height:18px; margin-left:0; margin-right:0; } ' + \n\t\t\t\t'.jstree li li { margin-left:18px; } ' + \n\t\t\t\t'.jstree-rtl li li { margin-left:0px; margin-right:18px; } ' + \n\t\t\t\t'li.jstree-open ul { display:block; } ' + \n\t\t\t\t'li.jstree-closed ul { display:none !important; } ' + \n\t\t\t\t'.jstree li a { display:inline; border-width:0 !important; padding:0px 2px !important; } ' + \n\t\t\t\t'.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' + \n\t\t\t\t'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';\n\t\t}\n\t\t// Correct IE 7 (shifts anchor nodes onhover)\n\t\tif(/msie/.test(u) && parseInt(v, 10) == 7) { \n\t\t\tcss_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';\n\t\t}\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n\n\t// core functions (open, close, create, update, delete)\n\t$.jstree.plugin(\"core\", {\n\t\t__init : function () {\n\t\t\tthis.data.core.to_open = $.map($.makeArray(this.get_settings().core.initially_open), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t},\n\t\tdefaults : { \n\t\t\thtml_titles\t: false,\n\t\t\tanimation\t: 500,\n\t\t\tinitially_open : [],\n\t\t\trtl\t\t\t: false,\n\t\t\tstrings\t\t: {\n\t\t\t\tloading\t\t: \"Loading ...\",\n\t\t\t\tnew_node\t: \"New node\"\n\t\t\t}\n\t\t},\n\t\t_fn : { \n\t\t\tinit\t: function () { \n\t\t\t\tthis.set_focus(); \n\t\t\t\tif(this._get_settings().core.rtl) {\n\t\t\t\t\tthis.get_container().addClass(\"jstree-rtl\").css(\"direction\", \"rtl\");\n\t\t\t\t}\n\t\t\t\tthis.get_container().html(\"<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>\" + this._get_settings().core.strings.loading + \"</a></li></ul>\");\n\t\t\t\tthis.data.core.li_height = this.get_container().find(\"ul li.jstree-closed, ul li.jstree-leaf\").eq(0).height() || 18;\n\n\t\t\t\tthis.get_container()\n\t\t\t\t\t.delegate(\"li > ins\", \"click.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\t\tvar trgt = $(event.target);\n\t\t\t\t\t\t\tif(trgt.is(\"ins\") && event.pageY - trgt.offset().top < this.data.core.li_height) { this.toggle_node(trgt); }\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.bind(\"mousedown.jstree\", $.proxy(function () { \n\t\t\t\t\t\t\tthis.set_focus(); // This used to be setTimeout(set_focus,0) - why?\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.bind(\"dblclick.jstree\", function (event) { \n\t\t\t\t\t\tvar sel;\n\t\t\t\t\t\tif(document.selection && document.selection.empty) { document.selection.empty(); }\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif(window.getSelection) {\n\t\t\t\t\t\t\t\tsel = window.getSelection();\n\t\t\t\t\t\t\t\ttry { \n\t\t\t\t\t\t\t\t\tsel.removeAllRanges();\n\t\t\t\t\t\t\t\t\tsel.collapse();\n\t\t\t\t\t\t\t\t} catch (err) { }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\tthis.__callback();\n\t\t\t\tthis.load_node(-1, function () { this.loaded(); this.reopen(); });\n\t\t\t},\n\t\t\tdestroy\t: function () { \n\t\t\t\tvar i,\n\t\t\t\t\tn = this.get_index(),\n\t\t\t\t\ts = this._get_settings(),\n\t\t\t\t\t_this = this;\n\n\t\t\t\t$.each(s.plugins, function (i, val) {\n\t\t\t\t\ttry { plugins[val].__destroy.apply(_this); } catch(err) { }\n\t\t\t\t});\n\t\t\t\tthis.__callback();\n\t\t\t\t// set focus to another instance if this one is focused\n\t\t\t\tif(this.is_focused()) { \n\t\t\t\t\tfor(i in instances) { \n\t\t\t\t\t\tif(instances.hasOwnProperty(i) && i != n) { \n\t\t\t\t\t\t\tinstances[i].set_focus(); \n\t\t\t\t\t\t\tbreak; \n\t\t\t\t\t\t} \n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// if no other instance found\n\t\t\t\tif(n === focused_instance) { focused_instance = -1; }\n\t\t\t\t// remove all traces of jstree in the DOM (only the ones set using jstree*) and cleans all events\n\t\t\t\tthis.get_container()\n\t\t\t\t\t.unbind(\".jstree\")\n\t\t\t\t\t.undelegate(\".jstree\")\n\t\t\t\t\t.removeData(\"jstree-instance-id\")\n\t\t\t\t\t.find(\"[class^='jstree']\")\n\t\t\t\t\t\t.andSelf()\n\t\t\t\t\t\t.attr(\"class\", function () { return this.className.replace(/jstree[^ ]*|$/ig,''); });\n\t\t\t\t// remove the actual data\n\t\t\t\tinstances[n] = null;\n\t\t\t\tdelete instances[n];\n\t\t\t},\n\t\t\tsave_opened : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.data.core.to_open = [];\n\t\t\t\tthis.get_container().find(\".jstree-open\").each(function () { \n\t\t\t\t\t_this.data.core.to_open.push(\"#\" + this.id.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/')); \n\t\t\t\t});\n\t\t\t\tthis.__callback(_this.data.core.to_open);\n\t\t\t},\n\t\t\treopen : function (is_callback) {\n\t\t\t\tvar _this = this,\n\t\t\t\t\tdone = true,\n\t\t\t\t\tcurrent = [],\n\t\t\t\t\tremaining = [];\n\t\t\t\tif(!is_callback) { this.data.core.reopen = false; this.data.core.refreshing = true; }\n\t\t\t\tif(this.data.core.to_open.length) {\n\t\t\t\t\t$.each(this.data.core.to_open, function (i, val) {\n\t\t\t\t\t\tif(val == \"#\") { return true; }\n\t\t\t\t\t\tif($(val).length && $(val).is(\".jstree-closed\")) { current.push(val); }\n\t\t\t\t\t\telse { remaining.push(val); }\n\t\t\t\t\t});\n\t\t\t\t\tif(current.length) {\n\t\t\t\t\t\tthis.data.core.to_open = remaining;\n\t\t\t\t\t\t$.each(current, function (i, val) { \n\t\t\t\t\t\t\t_this.open_node(val, function () { _this.reopen(true); }, true); \n\t\t\t\t\t\t});\n\t\t\t\t\t\tdone = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(done) { \n\t\t\t\t\t// TODO: find a more elegant approach to syncronizing returning requests\n\t\t\t\t\tif(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }\n\t\t\t\t\tthis.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);\n\t\t\t\t\tthis.data.core.refreshing = false;\n\t\t\t\t}\n\t\t\t},\n\t\t\trefresh : function (obj) {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.save_opened();\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tif(obj !== -1) { obj.children(\"UL\").remove(); }\n\t\t\t\tthis.load_node(obj, function () { _this.__callback({ \"obj\" : obj}); _this.reopen(); });\n\t\t\t},\n\t\t\t// Dummy function to fire after the first load (so that there is a jstree.loaded event)\n\t\t\tloaded\t: function () { \n\t\t\t\tthis.__callback(); \n\t\t\t},\n\t\t\t// deal with focus\n\t\t\tset_focus\t: function () { \n\t\t\t\tvar f = $.jstree._focused();\n\t\t\t\tif(f && f !== this) {\n\t\t\t\t\tf.get_container().removeClass(\"jstree-focused\"); \n\t\t\t\t}\n\t\t\t\tif(f !== this) {\n\t\t\t\t\tthis.get_container().addClass(\"jstree-focused\"); \n\t\t\t\t\tfocused_instance = this.get_index(); \n\t\t\t\t}\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\tis_focused\t: function () { \n\t\t\t\treturn focused_instance == this.get_index(); \n\t\t\t},\n\n\t\t\t// traverse\n\t\t\t_get_node\t\t: function (obj) { \n\t\t\t\tvar $obj = $(obj, this.get_container()); \n\t\t\t\tif($obj.is(\".jstree\") || obj == -1) { return -1; } \n\t\t\t\t$obj = $obj.closest(\"li\", this.get_container()); \n\t\t\t\treturn $obj.length ? $obj : false; \n\t\t\t},\n\t\t\t_get_next\t\t: function (obj, strict) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().find(\"> ul > li:first-child\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(strict) { return (obj.nextAll(\"li\").size() > 0) ? obj.nextAll(\"li:eq(0)\") : false; }\n\n\t\t\t\tif(obj.hasClass(\"jstree-open\")) { return obj.find(\"li:eq(0)\"); }\n\t\t\t\telse if(obj.nextAll(\"li\").size() > 0) { return obj.nextAll(\"li:eq(0)\"); }\n\t\t\t\telse { return obj.parentsUntil(\".jstree\",\"li\").next(\"li\").eq(0); }\n\t\t\t},\n\t\t\t_get_prev\t\t: function (obj, strict) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().find(\"> ul > li:last-child\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(strict) { return (obj.prevAll(\"li\").length > 0) ? obj.prevAll(\"li:eq(0)\") : false; }\n\n\t\t\t\tif(obj.prev(\"li\").length) {\n\t\t\t\t\tobj = obj.prev(\"li\").eq(0);\n\t\t\t\t\twhile(obj.hasClass(\"jstree-open\")) { obj = obj.children(\"ul:eq(0)\").children(\"li:last\"); }\n\t\t\t\t\treturn obj;\n\t\t\t\t}\n\t\t\t\telse { var o = obj.parentsUntil(\".jstree\",\"li:eq(0)\"); return o.length ? o : false; }\n\t\t\t},\n\t\t\t_get_parent\t\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj == -1 || !obj.length) { return false; }\n\t\t\t\tvar o = obj.parentsUntil(\".jstree\", \"li:eq(0)\");\n\t\t\t\treturn o.length ? o : -1;\n\t\t\t},\n\t\t\t_get_children\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1) { return this.get_container().children(\"ul:eq(0)\").children(\"li\"); }\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\treturn obj.children(\"ul:eq(0)\").children(\"li\");\n\t\t\t},\n\t\t\tget_path\t\t: function (obj, id_mode) {\n\t\t\t\tvar p = [],\n\t\t\t\t\t_this = this;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj === -1 || !obj || !obj.length) { return false; }\n\t\t\t\tobj.parentsUntil(\".jstree\", \"li\").each(function () {\n\t\t\t\t\tp.push( id_mode ? this.id : _this.get_text(this) );\n\t\t\t\t});\n\t\t\t\tp.reverse();\n\t\t\t\tp.push( id_mode ? obj.attr(\"id\") : this.get_text(obj) );\n\t\t\t\treturn p;\n\t\t\t},\n\n\t\t\tis_open\t\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-open\"); },\n\t\t\tis_closed\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-closed\"); },\n\t\t\tis_leaf\t\t: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass(\"jstree-leaf\"); },\n\t\t\t// open/close\n\t\t\topen_node\t: function (obj, callback, skip_animation) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(!obj.hasClass(\"jstree-closed\")) { if(callback) { callback.call(); } return false; }\n\t\t\t\tvar s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,\n\t\t\t\t\tt = this;\n\t\t\t\tif(!this._is_loaded(obj)) {\n\t\t\t\t\tobj.children(\"a\").addClass(\"jstree-loading\");\n\t\t\t\t\tthis.load_node(obj, function () { t.open_node(obj, callback, skip_animation); }, callback);\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(s) { obj.children(\"ul\").css(\"display\",\"none\"); }\n\t\t\t\t\tobj.removeClass(\"jstree-closed\").addClass(\"jstree-open\").children(\"a\").removeClass(\"jstree-loading\");\n\t\t\t\t\tif(s) { obj.children(\"ul\").stop(true).slideDown(s, function () { this.style.display = \"\"; }); }\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t\tif(callback) { callback.call(); }\n\t\t\t\t}\n\t\t\t},\n\t\t\tclose_node\t: function (obj, skip_animation) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation;\n\t\t\t\tif(!obj.length || !obj.hasClass(\"jstree-open\")) { return false; }\n\t\t\t\tif(s) { obj.children(\"ul\").attr(\"style\",\"display:block !important\"); }\n\t\t\t\tobj.removeClass(\"jstree-open\").addClass(\"jstree-closed\");\n\t\t\t\tif(s) { obj.children(\"ul\").stop(true).slideUp(s, function () { this.style.display = \"\"; }); }\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\ttoggle_node\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj.hasClass(\"jstree-closed\")) { return this.open_node(obj); }\n\t\t\t\tif(obj.hasClass(\"jstree-open\")) { return this.close_node(obj); }\n\t\t\t},\n\t\t\topen_all\t: function (obj, original_obj) {\n\t\t\t\tobj = obj ? this._get_node(obj) : this.get_container();\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container(); }\n\t\t\t\tif(original_obj) { \n\t\t\t\t\tobj = obj.find(\"li.jstree-closed\");\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\toriginal_obj = obj;\n\t\t\t\t\tif(obj.is(\".jstree-closed\")) { obj = obj.find(\"li.jstree-closed\").andSelf(); }\n\t\t\t\t\telse { obj = obj.find(\"li.jstree-closed\"); }\n\t\t\t\t}\n\t\t\t\tvar _this = this;\n\t\t\t\tobj.each(function () { \n\t\t\t\t\tvar __this = this; \n\t\t\t\t\tif(!_this._is_loaded(this)) { _this.open_node(this, function() { _this.open_all(__this, original_obj); }, true); }\n\t\t\t\t\telse { _this.open_node(this, false, true); }\n\t\t\t\t});\n\t\t\t\t// so that callback is fired AFTER all nodes are open\n\t\t\t\tif(original_obj.find('li.jstree-closed').length === 0) { this.__callback({ \"obj\" : original_obj }); }\n\t\t\t},\n\t\t\tclose_all\t: function (obj) {\n\t\t\t\tvar _this = this;\n\t\t\t\tobj = obj ? this._get_node(obj) : this.get_container();\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container(); }\n\t\t\t\tobj.find(\"li.jstree-open\").andSelf().each(function () { _this.close_node(this); });\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tclean_node\t: function (obj) {\n\t\t\t\tobj = obj && obj != -1 ? $(obj) : this.get_container();\n\t\t\t\tobj = obj.is(\"li\") ? obj.find(\"li\").andSelf() : obj.find(\"li\");\n\t\t\t\tobj.removeClass(\"jstree-last\")\n\t\t\t\t\t.filter(\"li:last-child\").addClass(\"jstree-last\").end()\n\t\t\t\t\t.filter(\":has(li)\")\n\t\t\t\t\t\t.not(\".jstree-open\").removeClass(\"jstree-leaf\").addClass(\"jstree-closed\");\n\t\t\t\tobj.not(\".jstree-open, .jstree-closed\").addClass(\"jstree-leaf\").children(\"ul\").remove();\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\t// rollback\n\t\t\tget_rollback : function () { \n\t\t\t\tthis.__callback();\n\t\t\t\treturn { i : this.get_index(), h : this.get_container().children(\"ul\").clone(true), d : this.data }; \n\t\t\t},\n\t\t\tset_rollback : function (html, data) {\n\t\t\t\tthis.get_container().empty().append(html);\n\t\t\t\tthis.data = data;\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\t// Dummy functions to be overwritten by any datastore plugin included\n\t\t\tload_node\t: function (obj, s_call, e_call) { this.__callback({ \"obj\" : obj }); },\n\t\t\t_is_loaded\t: function (obj) { return true; },\n\n\t\t\t// Basic operations: create\n\t\t\tcreate_node\t: function (obj, position, js, callback, is_loaded) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tposition = typeof position === \"undefined\" ? \"last\" : position;\n\t\t\t\tvar d = $(\"<li>\"),\n\t\t\t\t\ts = this._get_settings().core,\n\t\t\t\t\ttmp;\n\n\t\t\t\tif(obj !== -1 && !obj.length) { return false; }\n\t\t\t\tif(!is_loaded && !this._is_loaded(obj)) { this.load_node(obj, function () { this.create_node(obj, position, js, callback, true); }); return false; }\n\n\t\t\t\tthis.__rollback();\n\n\t\t\t\tif(typeof js === \"string\") { js = { \"data\" : js }; }\n\t\t\t\tif(!js) { js = {}; }\n\t\t\t\tif(js.attr) { d.attr(js.attr); }\n\t\t\t\tif(js.state) { d.addClass(\"jstree-\" + js.state); }\n\t\t\t\tif(!js.data) { js.data = s.strings.new_node; }\n\t\t\t\tif(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }\n\t\t\t\t$.each(js.data, function (i, m) {\n\t\t\t\t\ttmp = $(\"<a>\");\n\t\t\t\t\tif($.isFunction(m)) { m = m.call(this, js); }\n\t\t\t\t\tif(typeof m == \"string\") { tmp.attr('href','#')[ s.html_titles ? \"html\" : \"text\" ](m); }\n\t\t\t\t\telse {\n\t\t\t\t\t\tif(!m.attr) { m.attr = {}; }\n\t\t\t\t\t\tif(!m.attr.href) { m.attr.href = '#'; }\n\t\t\t\t\t\ttmp.attr(m.attr)[ s.html_titles ? \"html\" : \"text\" ](m.title);\n\t\t\t\t\t\tif(m.language) { tmp.addClass(m.language); }\n\t\t\t\t\t}\n\t\t\t\t\ttmp.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\tif(m.icon) { \n\t\t\t\t\t\tif(m.icon.indexOf(\"/\") === -1) { tmp.children(\"ins\").addClass(m.icon); }\n\t\t\t\t\t\telse { tmp.children(\"ins\").css(\"background\",\"url('\" + m.icon + \"') center center no-repeat\"); }\n\t\t\t\t\t}\n\t\t\t\t\td.append(tmp);\n\t\t\t\t});\n\t\t\t\td.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\tif(obj === -1) {\n\t\t\t\t\tobj = this.get_container();\n\t\t\t\t\tif(position === \"before\") { position = \"first\"; }\n\t\t\t\t\tif(position === \"after\") { position = \"last\"; }\n\t\t\t\t}\n\t\t\t\tswitch(position) {\n\t\t\t\t\tcase \"before\": obj.before(d); tmp = this._get_parent(obj); break;\n\t\t\t\t\tcase \"after\" : obj.after(d);  tmp = this._get_parent(obj); break;\n\t\t\t\t\tcase \"inside\":\n\t\t\t\t\tcase \"first\" :\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tobj.children(\"ul\").prepend(d);\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tobj.children(\"ul\").append(d);\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tif(!obj.children(\"ul\").length) { obj.append(\"<ul>\"); }\n\t\t\t\t\t\tif(!position) { position = 0; }\n\t\t\t\t\t\ttmp = obj.children(\"ul\").children(\"li\").eq(position);\n\t\t\t\t\t\tif(tmp.length) { tmp.before(d); }\n\t\t\t\t\t\telse { obj.children(\"ul\").append(d); }\n\t\t\t\t\t\ttmp = obj;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tif(tmp === -1 || tmp.get(0) === this.get_container().get(0)) { tmp = -1; }\n\t\t\t\tthis.clean_node(tmp);\n\t\t\t\tthis.__callback({ \"obj\" : d, \"parent\" : tmp });\n\t\t\t\tif(callback) { callback.call(this, d); }\n\t\t\t\treturn d;\n\t\t\t},\n\t\t\t// Basic operations: rename (deal with text)\n\t\t\tget_text\t: function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tvar s = this._get_settings().core.html_titles;\n\t\t\t\tobj = obj.children(\"a:eq(0)\");\n\t\t\t\tif(s) {\n\t\t\t\t\tobj = obj.clone();\n\t\t\t\t\tobj.children(\"INS\").remove();\n\t\t\t\t\treturn obj.html();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\treturn obj.nodeValue;\n\t\t\t\t}\n\t\t\t},\n\t\t\tset_text\t: function (obj, val) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tobj = obj.children(\"a:eq(0)\");\n\t\t\t\tif(this._get_settings().core.html_titles) {\n\t\t\t\t\tvar tmp = obj.children(\"INS\").clone();\n\t\t\t\t\tobj.html(val).prepend(tmp);\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val });\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val });\n\t\t\t\t\treturn (obj.nodeValue = val);\n\t\t\t\t}\n\t\t\t},\n\t\t\trename_node : function (obj, val) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.__rollback();\n\t\t\t\tif(obj && obj.length && this.set_text.apply(this, Array.prototype.slice.call(arguments))) { this.__callback({ \"obj\" : obj, \"name\" : val }); }\n\t\t\t},\n\t\t\t// Basic operations: deleting nodes\n\t\t\tdelete_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar p = this._get_parent(obj), prev = this._get_prev(obj);\n\t\t\t\tobj = obj.remove();\n\t\t\t\tif(p !== -1 && p.find(\"> ul > li\").length === 0) {\n\t\t\t\t\tp.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\");\n\t\t\t\t}\n\t\t\t\tthis.clean_node(p);\n\t\t\t\tthis.__callback({ \"obj\" : obj, \"prev\" : prev });\n\t\t\t\treturn obj;\n\t\t\t},\n\t\t\tprepare_move : function (o, r, pos, cb, is_cb) {\n\t\t\t\tvar p = {};\n\n\t\t\t\tp.ot = $.jstree._reference(p.o) || this;\n\t\t\t\tp.o = p.ot._get_node(o);\n\t\t\t\tp.r = r === - 1 ? -1 : this._get_node(r);\n\t\t\t\tp.p = (typeof p === \"undefined\") ? \"last\" : pos; // TODO: move to a setting\n\t\t\t\tif(!is_cb && prepared_move.o && prepared_move.o[0] === p.o[0] && prepared_move.r[0] === p.r[0] && prepared_move.p === p.p) {\n\t\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\t\tif(cb) { cb.call(this, prepared_move); }\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tp.ot = $.jstree._reference(p.o) || this;\n\t\t\t\tp.rt = r === -1 ? p.ot : $.jstree._reference(p.r) || this;\n\t\t\t\tif(p.r === -1) {\n\t\t\t\t\tp.cr = -1;\n\t\t\t\t\tswitch(p.p) {\n\t\t\t\t\t\tcase \"first\":\n\t\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\t\tp.cp = 0; \n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\t\tp.cp = p.rt.get_container().find(\" > ul > li\").length; \n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\tp.cp = p.p;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(!/^(before|after)$/.test(p.p) && !this._is_loaded(p.r)) {\n\t\t\t\t\t\treturn this.load_node(p.r, function () { this.prepare_move(o, r, pos, cb, true); });\n\t\t\t\t\t}\n\t\t\t\t\tswitch(p.p) {\n\t\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\t\tp.cp = p.r.index();\n\t\t\t\t\t\t\tp.cr = p.rt._get_parent(p.r);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\t\tp.cp = p.r.index() + 1;\n\t\t\t\t\t\t\tp.cr = p.rt._get_parent(p.r);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\tcase \"first\":\n\t\t\t\t\t\t\tp.cp = 0;\n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"last\":\n\t\t\t\t\t\t\tp.cp = p.r.find(\" > ul > li\").length; \n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault: \n\t\t\t\t\t\t\tp.cp = p.p;\n\t\t\t\t\t\t\tp.cr = p.r;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tp.np = p.cr == -1 ? p.rt.get_container() : p.cr;\n\t\t\t\tp.op = p.ot._get_parent(p.o);\n\t\t\t\tp.or = p.np.find(\" > ul > li:nth-child(\" + (p.cp + 1) + \")\");\n\n\t\t\t\tprepared_move = p;\n\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\tif(cb) { cb.call(this, prepared_move); }\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tvar obj = prepared_move, ret = true;\n\t\t\t\tif(obj.or[0] === obj.o[0]) { return false; }\n\t\t\t\tobj.o.each(function () { \n\t\t\t\t\tif(obj.r.parentsUntil(\".jstree\").andSelf().filter(\"li\").index(this) !== -1) { ret = false; return false; }\n\t\t\t\t});\n\t\t\t\treturn ret;\n\t\t\t},\n\t\t\tmove_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {\n\t\t\t\tif(!is_prepared) { \n\t\t\t\t\treturn this.prepare_move(obj, ref, position, function (p) {\n\t\t\t\t\t\tthis.move_node(p, false, false, is_copy, true, skip_check);\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tif(!skip_check && !this.check_move()) { return false; }\n\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar o = false;\n\t\t\t\tif(is_copy) {\n\t\t\t\t\to = obj.o.clone();\n\t\t\t\t\to.find(\"*[id]\").andSelf().each(function () {\n\t\t\t\t\t\tif(this.id) { this.id = \"copy_\" + this.id; }\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\telse { o = obj.o; }\n\n\t\t\t\tif(obj.or.length) { obj.or.before(o); }\n\t\t\t\telse { \n\t\t\t\t\tif(!obj.np.children(\"ul\").length) { $(\"<ul>\").appendTo(obj.np); }\n\t\t\t\t\tobj.np.children(\"ul:eq(0)\").append(o); \n\t\t\t\t}\n\n\t\t\t\ttry { \n\t\t\t\t\tobj.ot.clean_node(obj.op);\n\t\t\t\t\tobj.rt.clean_node(obj.np);\n\t\t\t\t\tif(!obj.op.find(\"> ul > li\").length) {\n\t\t\t\t\t\tobj.op.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\").children(\"ul\").remove();\n\t\t\t\t\t}\n\t\t\t\t} catch (e) { }\n\n\t\t\t\tif(is_copy) { \n\t\t\t\t\tprepared_move.cy = true;\n\t\t\t\t\tprepared_move.oc = o; \n\t\t\t\t}\n\t\t\t\tthis.__callback(prepared_move);\n\t\t\t\treturn prepared_move;\n\t\t\t},\n\t\t\t_get_move : function () { return prepared_move; }\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree ui plugin 1.0\n * This plugins handles selecting/deselecting/hovering/dehovering nodes\n */\n(function ($) {\n\t$.jstree.plugin(\"ui\", {\n\t\t__init : function () { \n\t\t\tthis.data.ui.selected = $(); \n\t\t\tthis.data.ui.last_selected = false; \n\t\t\tthis.data.ui.hovered = null;\n\t\t\tthis.data.ui.to_select = this.get_settings().ui.initially_select;\n\n\t\t\tthis.get_container()\n\t\t\t\t.delegate(\"a\", \"click.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\tthis.select_node(event.currentTarget, true, event);\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseenter.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tthis.hover_node(event.target);\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseleave.jstree\", $.proxy(function (event) {\n\t\t\t\t\t\tthis.dehover_node(event.target);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"reopen.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.reselect();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"get_rollback.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.dehover_node();\n\t\t\t\t\t\tthis.save_selected();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"set_rollback.jstree\", $.proxy(function () { \n\t\t\t\t\t\tthis.reselect();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"close_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tvar s = this._get_settings().ui,\n\t\t\t\t\t\t\tobj = this._get_node(data.rslt.obj),\n\t\t\t\t\t\t\tclk = (obj && obj.length) ? obj.children(\"ul\").find(\".jstree-clicked\") : $(),\n\t\t\t\t\t\t\t_this = this;\n\t\t\t\t\t\tif(s.selected_parent_close === false || !clk.length) { return; }\n\t\t\t\t\t\tclk.each(function () { \n\t\t\t\t\t\t\t_this.deselect_node(this);\n\t\t\t\t\t\t\tif(s.selected_parent_close === \"select_parent\") { _this.select_node(obj); }\n\t\t\t\t\t\t});\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"delete_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tvar s = this._get_settings().ui.select_prev_on_delete,\n\t\t\t\t\t\t\tobj = this._get_node(data.rslt.obj),\n\t\t\t\t\t\t\tclk = (obj && obj.length) ? obj.find(\".jstree-clicked\") : [],\n\t\t\t\t\t\t\t_this = this;\n\t\t\t\t\t\tclk.each(function () { _this.deselect_node(this); });\n\t\t\t\t\t\tif(s && clk.length) { this.select_node(data.rslt.prev); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (event, data) { \n\t\t\t\t\t\tif(data.rslt.cy) { \n\t\t\t\t\t\t\tdata.rslt.oc.find(\".jstree-clicked\").removeClass(\"jstree-clicked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tselect_limit : -1, // 0, 1, 2 ... or -1 for unlimited\n\t\t\tselect_multiple_modifier : \"ctrl\", // on, or ctrl, shift, alt\n\t\t\tselected_parent_close : \"select_parent\", // false, \"deselect\", \"select_parent\"\n\t\t\tselect_prev_on_delete : true,\n\t\t\tdisable_selecting_children : false,\n\t\t\tinitially_select : []\n\t\t},\n\t\t_fn : { \n\t\t\t_get_node : function (obj, allow_multiple) {\n\t\t\t\tif(typeof obj === \"undefined\" || obj === null) { return allow_multiple ? this.data.ui.selected : this.data.ui.last_selected; }\n\t\t\t\tvar $obj = $(obj, this.get_container()); \n\t\t\t\tif($obj.is(\".jstree\") || obj == -1) { return -1; } \n\t\t\t\t$obj = $obj.closest(\"li\", this.get_container()); \n\t\t\t\treturn $obj.length ? $obj : false; \n\t\t\t},\n\t\t\tsave_selected : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.data.ui.to_select = [];\n\t\t\t\tthis.data.ui.selected.each(function () { _this.data.ui.to_select.push(\"#\" + this.id.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/')); });\n\t\t\t\tthis.__callback(this.data.ui.to_select);\n\t\t\t},\n\t\t\treselect : function () {\n\t\t\t\tvar _this = this,\n\t\t\t\t\ts = this.data.ui.to_select;\n\t\t\t\ts = $.map($.makeArray(s), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t\t\tthis.deselect_all();\n\t\t\t\t$.each(s, function (i, val) { if(val && val !== \"#\") { _this.select_node(val); } });\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\trefresh : function (obj) {\n\t\t\t\tthis.save_selected();\n\t\t\t\treturn this.__call_old();\n\t\t\t},\n\t\t\thover_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\t//if(this.data.ui.hovered && obj.get(0) === this.data.ui.hovered.get(0)) { return; }\n\t\t\t\tif(!obj.hasClass(\"jstree-hovered\")) { this.dehover_node(); }\n\t\t\t\tthis.data.ui.hovered = obj.children(\"a\").addClass(\"jstree-hovered\").parent();\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tdehover_node : function () {\n\t\t\t\tvar obj = this.data.ui.hovered, p;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tp = obj.children(\"a\").removeClass(\"jstree-hovered\").parent();\n\t\t\t\tif(this.data.ui.hovered[0] === p[0]) { this.data.ui.hovered = null; }\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tselect_node : function (obj, check, e) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj == -1 || !obj || !obj.length) { return false; }\n\t\t\t\tvar s = this._get_settings().ui,\n\t\t\t\t\tis_multiple = (s.select_multiple_modifier == \"on\" || (s.select_multiple_modifier !== false && e && e[s.select_multiple_modifier + \"Key\"])),\n\t\t\t\t\tis_selected = this.is_selected(obj),\n\t\t\t\t\tproceed = true;\n\t\t\t\tif(check) {\n\t\t\t\t\tif(s.disable_selecting_children && is_multiple && obj.parents(\"li\", this.get_container()).children(\".jstree-clicked\").length) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\tproceed = false;\n\t\t\t\t\tswitch(!0) {\n\t\t\t\t\t\tcase (is_selected && !is_multiple): \n\t\t\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t\t\tis_selected = false;\n\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (!is_selected && !is_multiple): \n\t\t\t\t\t\t\tif(s.select_limit == -1 || s.select_limit > 0) {\n\t\t\t\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (is_selected && is_multiple): \n\t\t\t\t\t\t\tthis.deselect_node(obj);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase (!is_selected && is_multiple): \n\t\t\t\t\t\t\tif(s.select_limit == -1 || this.data.ui.selected.length + 1 <= s.select_limit) { \n\t\t\t\t\t\t\t\tproceed = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(proceed && !is_selected) {\n\t\t\t\t\tobj.children(\"a\").addClass(\"jstree-clicked\");\n\t\t\t\t\tthis.data.ui.selected = this.data.ui.selected.add(obj);\n\t\t\t\t\tthis.data.ui.last_selected = obj;\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeselect_node : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(this.is_selected(obj)) {\n\t\t\t\t\tobj.children(\"a\").removeClass(\"jstree-clicked\");\n\t\t\t\t\tthis.data.ui.selected = this.data.ui.selected.not(obj);\n\t\t\t\t\tif(this.data.ui.last_selected.get(0) === obj.get(0)) { this.data.ui.last_selected = this.data.ui.selected.eq(0); }\n\t\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t\t}\n\t\t\t},\n\t\t\ttoggle_select : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return false; }\n\t\t\t\tif(this.is_selected(obj)) { this.deselect_node(obj); }\n\t\t\t\telse { this.select_node(obj); }\n\t\t\t},\n\t\t\tis_selected : function (obj) { return this.data.ui.selected.index(this._get_node(obj)) >= 0; },\n\t\t\tget_selected : function (context) { \n\t\t\t\treturn context ? $(context).find(\".jstree-clicked\").parent() : this.data.ui.selected; \n\t\t\t},\n\t\t\tdeselect_all : function (context) {\n\t\t\t\tif(context) { $(context).find(\".jstree-clicked\").removeClass(\"jstree-clicked\"); } \n\t\t\t\telse { this.get_container().find(\".jstree-clicked\").removeClass(\"jstree-clicked\"); }\n\t\t\t\tthis.data.ui.selected = $([]);\n\t\t\t\tthis.data.ui.last_selected = false;\n\t\t\t\tthis.__callback();\n\t\t\t}\n\t\t}\n\t});\n\t// include the selection plugin by default\n\t$.jstree.defaults.plugins.push(\"ui\");\n})(jQuery);\n//*/\n\n/* \n * jsTree CRRM plugin 1.0\n * Handles creating/renaming/removing/moving nodes by user interaction.\n */\n(function ($) {\n\t$.jstree.plugin(\"crrm\", { \n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\tif(this._get_settings().crrm.move.open_onmove) {\n\t\t\t\t\t\tvar t = this;\n\t\t\t\t\t\tdata.rslt.np.parentsUntil(\".jstree\").andSelf().filter(\".jstree-closed\").each(function () {\n\t\t\t\t\t\t\tt.open_node(this, false, true);\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tinput_width_limit : 200,\n\t\t\tmove : {\n\t\t\t\talways_copy\t\t\t: false, // false, true or \"multitree\"\n\t\t\t\topen_onmove\t\t\t: true,\n\t\t\t\tdefault_position\t: \"last\",\n\t\t\t\tcheck_move\t\t\t: function (m) { return true; }\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\t_show_input : function (obj, callback) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar rtl = this._get_settings().core.rtl,\n\t\t\t\t\tw = this._get_settings().crrm.input_width_limit,\n\t\t\t\t\tw1 = obj.children(\"ins\").width(),\n\t\t\t\t\tw2 = obj.find(\"> a:visible > ins\").width() * obj.find(\"> a:visible > ins\").length,\n\t\t\t\t\tt = this.get_text(obj),\n\t\t\t\t\th1 = $(\"<div>\", { css : { \"position\" : \"absolute\", \"top\" : \"-200px\", \"left\" : (rtl ? \"0px\" : \"-1000px\"), \"visibility\" : \"hidden\" } }).appendTo(\"body\"),\n\t\t\t\t\th2 = obj.css(\"position\",\"relative\").append(\n\t\t\t\t\t$(\"<input>\", { \n\t\t\t\t\t\t\"value\" : t,\n\t\t\t\t\t\t// \"size\" : t.length,\n\t\t\t\t\t\t\"css\" : {\n\t\t\t\t\t\t\t\"padding\" : \"0\",\n\t\t\t\t\t\t\t\"border\" : \"1px solid silver\",\n\t\t\t\t\t\t\t\"position\" : \"absolute\",\n\t\t\t\t\t\t\t\"left\"  : (rtl ? \"auto\" : (w1 + w2 + 4) + \"px\"),\n\t\t\t\t\t\t\t\"right\" : (rtl ? (w1 + w2 + 4) + \"px\" : \"auto\"),\n\t\t\t\t\t\t\t\"top\" : \"0px\",\n\t\t\t\t\t\t\t\"height\" : (this.data.core.li_height - 2) + \"px\",\n\t\t\t\t\t\t\t\"lineHeight\" : (this.data.core.li_height - 2) + \"px\",\n\t\t\t\t\t\t\t\"width\" : \"150px\" // will be set a bit further down\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"blur\" : $.proxy(function () {\n\t\t\t\t\t\t\tvar i = obj.children(\"input\"),\n\t\t\t\t\t\t\t\tv = i.val();\n\t\t\t\t\t\t\tif(v === \"\") { v = t; }\n\t\t\t\t\t\t\ti.remove(); // rollback purposes\n\t\t\t\t\t\t\tthis.set_text(obj,t); // rollback purposes\n\t\t\t\t\t\t\tthis.rename_node(obj, v);\n\t\t\t\t\t\t\tcallback.call(this, obj, v, t);\n\t\t\t\t\t\t\tobj.css(\"position\",\"\");\n\t\t\t\t\t\t}, this),\n\t\t\t\t\t\t\"keyup\" : function (event) {\n\t\t\t\t\t\t\tvar key = event.keyCode || event.which;\n\t\t\t\t\t\t\tif(key == 27) { this.value = t; this.blur(); return; }\n\t\t\t\t\t\t\telse if(key == 13) { this.blur(); return; }\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\th2.width(Math.min(h1.text(\"pW\" + this.value).width(),w));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t})\n\t\t\t\t).children(\"input\"); \n\t\t\t\tthis.set_text(obj, \"\");\n\t\t\t\th1.css({\n\t\t\t\t\t\tfontFamily\t\t: h2.css('fontFamily')\t\t|| '',\n\t\t\t\t\t\tfontSize\t\t: h2.css('fontSize')\t\t|| '',\n\t\t\t\t\t\tfontWeight\t\t: h2.css('fontWeight')\t\t|| '',\n\t\t\t\t\t\tfontStyle\t\t: h2.css('fontStyle')\t\t|| '',\n\t\t\t\t\t\tfontStretch\t\t: h2.css('fontStretch')\t\t|| '',\n\t\t\t\t\t\tfontVariant\t\t: h2.css('fontVariant')\t\t|| '',\n\t\t\t\t\t\tletterSpacing\t: h2.css('letterSpacing')\t|| '',\n\t\t\t\t\t\twordSpacing\t\t: h2.css('wordSpacing')\t\t|| ''\n\t\t\t\t});\n\t\t\t\th2.width(Math.min(h1.text(\"pW\" + h2[0].value).width(),w))[0].select();\n\t\t\t},\n\t\t\trename : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.__rollback();\n\t\t\t\tvar f = this.__callback;\n\t\t\t\tthis._show_input(obj, function (obj, new_name, old_name) { \n\t\t\t\t\tf.call(this, { \"obj\" : obj, \"new_name\" : new_name, \"old_name\" : old_name });\n\t\t\t\t});\n\t\t\t},\n\t\t\tcreate : function (obj, position, js, callback, skip_rename) {\n\t\t\t\tvar t, _this = this;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj) { obj = -1; }\n\t\t\t\tthis.__rollback();\n\t\t\t\tt = this.create_node(obj, position, js, function (t) {\n\t\t\t\t\tvar p = this._get_parent(t),\n\t\t\t\t\t\tpos = $(t).index();\n\t\t\t\t\tif(callback) { callback.call(this, t); }\n\t\t\t\t\tif(p.length && p.hasClass(\"jstree-closed\")) { this.open_node(p, false, true); }\n\t\t\t\t\tif(!skip_rename) { \n\t\t\t\t\t\tthis._show_input(t, function (obj, new_name, old_name) { \n\t\t\t\t\t\t\t_this.__callback({ \"obj\" : obj, \"name\" : new_name, \"parent\" : p, \"position\" : pos });\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\telse { _this.__callback({ \"obj\" : t, \"name\" : this.get_text(t), \"parent\" : p, \"position\" : pos }); }\n\t\t\t\t});\n\t\t\t\treturn t;\n\t\t\t},\n\t\t\tremove : function (obj) {\n\t\t\t\tobj = this._get_node(obj, true);\n\t\t\t\tthis.__rollback();\n\t\t\t\tthis.delete_node(obj);\n\t\t\t\tthis.__callback({ \"obj\" : obj });\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar s = this._get_settings().crrm.move;\n\t\t\t\tif(!s.check_move.call(this, this._get_move())) { return false; }\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tmove_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {\n\t\t\t\tvar s = this._get_settings().crrm.move;\n\t\t\t\tif(!is_prepared) { \n\t\t\t\t\tif(!position) { position = s.default_position; }\n\t\t\t\t\tif(position === \"inside\" && !s.default_position.match(/^(before|after)$/)) { position = s.default_position; }\n\t\t\t\t\treturn this.__call_old(true, obj, ref, position, is_copy, false, skip_check);\n\t\t\t\t}\n\t\t\t\t// if the move is already prepared\n\t\t\t\tif(s.always_copy === true || (s.always_copy === \"multitree\" && obj.rt.get_index() !== obj.ot.get_index() )) {\n\t\t\t\t\tis_copy = true;\n\t\t\t\t}\n\t\t\t\tthis.__call_old(true, obj, ref, position, is_copy, true, skip_check);\n\t\t\t},\n\n\t\t\tcut : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tthis.data.crrm.ct_nodes = obj;\n\t\t\t},\n\t\t\tcopy : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tthis.data.crrm.cp_nodes = obj;\n\t\t\t},\n\t\t\tpaste : function (obj) { \n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || !obj.length) { return false; }\n\t\t\t\tif(!this.data.crrm.ct_nodes && !this.data.crrm.cp_nodes) { return false; }\n\t\t\t\tif(this.data.crrm.ct_nodes) { this.move_node(this.data.crrm.ct_nodes, obj); }\n\t\t\t\tif(this.data.crrm.cp_nodes) { this.move_node(this.data.crrm.cp_nodes, obj, false, true); }\n\t\t\t\tthis.data.crrm.cp_nodes = false;\n\t\t\t\tthis.data.crrm.ct_nodes = false;\n\t\t\t}\n\t\t}\n\t});\n\t// include the crr plugin by default\n\t$.jstree.defaults.plugins.push(\"crrm\");\n})(jQuery);\n\n/* \n * jsTree themes plugin 1.0\n * Handles loading and setting themes, as well as detecting path to themes, etc.\n */\n(function ($) {\n\tvar themes_loaded = [];\n\t// this variable stores the path to the themes folder - if left as false - it will be autodetected\n\t$.jstree._themes = false;\n\t$.jstree.plugin(\"themes\", {\n\t\t__init : function () { \n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"init.jstree\", $.proxy(function () {\n\t\t\t\t\t\tvar s = this._get_settings().themes;\n\t\t\t\t\t\tthis.data.themes.dots = s.dots; \n\t\t\t\t\t\tthis.data.themes.icons = s.icons; \n\t\t\t\t\t\t//alert(s.dots);\n\t\t\t\t\t\tthis.set_theme(s.theme, s.url);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree\", $.proxy(function () {\n\t\t\t\t\t\t// bound here too, as simple HTML tree's won't honor dots & icons otherwise\n\t\t\t\t\t\tif(!this.data.themes.dots) { this.hide_dots(); }\n\t\t\t\t\t\telse { this.show_dots(); }\n\t\t\t\t\t\tif(!this.data.themes.icons) { this.hide_icons(); }\n\t\t\t\t\t\telse { this.show_icons(); }\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : { \n\t\t\ttheme : \"default\", \n\t\t\turl : false,\n\t\t\tdots : true,\n\t\t\ticons : true\n\t\t},\n\t\t_fn : {\n\t\t\tset_theme : function (theme_name, theme_url) {\n\t\t\t\tif(!theme_name) { return false; }\n\t\t\t\tif(!theme_url) { theme_url = $.jstree._themes + theme_name + '/style.css'; }\n\t\t\t\tif($.inArray(theme_url, themes_loaded) == -1) {\n\t\t\t\t\t$.vakata.css.add_sheet({ \"url\" : theme_url, \"rel\" : \"jstree\" });\n\t\t\t\t\tthemes_loaded.push(theme_url);\n\t\t\t\t}\n\t\t\t\tif(this.data.themes.theme != theme_name) {\n\t\t\t\t\tthis.get_container().removeClass('jstree-' + this.data.themes.theme);\n\t\t\t\t\tthis.data.themes.theme = theme_name;\n\t\t\t\t}\n\t\t\t\tthis.get_container().addClass('jstree-' + theme_name);\n\t\t\t\tif(!this.data.themes.dots) { this.hide_dots(); }\n\t\t\t\telse { this.show_dots(); }\n\t\t\t\tif(!this.data.themes.icons) { this.hide_icons(); }\n\t\t\t\telse { this.show_icons(); }\n\t\t\t\tthis.__callback();\n\t\t\t},\n\t\t\tget_theme\t: function () { return this.data.themes.theme; },\n\n\t\t\tshow_dots\t: function () { this.data.themes.dots = true; this.get_container().children(\"ul\").removeClass(\"jstree-no-dots\"); },\n\t\t\thide_dots\t: function () { this.data.themes.dots = false; this.get_container().children(\"ul\").addClass(\"jstree-no-dots\"); },\n\t\t\ttoggle_dots\t: function () { if(this.data.themes.dots) { this.hide_dots(); } else { this.show_dots(); } },\n\n\t\t\tshow_icons\t: function () { this.data.themes.icons = true; this.get_container().children(\"ul\").removeClass(\"jstree-no-icons\"); },\n\t\t\thide_icons\t: function () { this.data.themes.icons = false; this.get_container().children(\"ul\").addClass(\"jstree-no-icons\"); },\n\t\t\ttoggle_icons: function () { if(this.data.themes.icons) { this.hide_icons(); } else { this.show_icons(); } }\n\t\t}\n\t});\n\t// autodetect themes path\n\t$(function () {\n\t\tif($.jstree._themes === false) {\n\t\t\t$(\"script\").each(function () { \n\t\t\t\tif(this.src.toString().match(/jquery\\.jstree[^\\/]*?\\.js(\\?.*)?$/)) { \n\t\t\t\t\t$.jstree._themes = this.src.toString().replace(/jquery\\.jstree[^\\/]*?\\.js(\\?.*)?$/, \"\") + 'themes/'; \n\t\t\t\t\treturn false; \n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t\tif($.jstree._themes === false) { $.jstree._themes = \"themes/\"; }\n\t});\n\t// include the themes plugin by default\n\t$.jstree.defaults.plugins.push(\"themes\");\n})(jQuery);\n//*/\n\n/*\n * jsTree hotkeys plugin 1.0\n * Enables keyboard navigation for all tree instances\n * Depends on the jstree ui & jquery hotkeys plugins\n */\n(function ($) {\n\tvar bound = [];\n\tfunction exec(i, event) {\n\t\tvar f = $.jstree._focused(), tmp;\n\t\tif(f && f.data && f.data.hotkeys && f.data.hotkeys.enabled) { \n\t\t\ttmp = f._get_settings().hotkeys[i];\n\t\t\tif(tmp) { return tmp.call(f, event); }\n\t\t}\n\t}\n\t$.jstree.plugin(\"hotkeys\", {\n\t\t__init : function () {\n\t\t\tif(typeof $.hotkeys === \"undefined\") { throw \"jsTree hotkeys: jQuery hotkeys plugin not included.\"; }\n\t\t\tif(!this.data.ui) { throw \"jsTree hotkeys: jsTree UI plugin not included.\"; }\n\t\t\t$.each(this._get_settings().hotkeys, function (i, val) {\n\t\t\t\tif($.inArray(i, bound) == -1) {\n\t\t\t\t\t$(document).bind(\"keydown\", i, function (event) { return exec(i, event); });\n\t\t\t\t\tbound.push(i);\n\t\t\t\t}\n\t\t\t});\n\t\t\tthis.enable_hotkeys();\n\t\t},\n\t\tdefaults : {\n\t\t\t\"up\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected || -1;\n\t\t\t\tthis.hover_node(this._get_prev(o));\n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"down\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected || -1;\n\t\t\t\tthis.hover_node(this._get_next(o));\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"left\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected;\n\t\t\t\tif(o) {\n\t\t\t\t\tif(o.hasClass(\"jstree-open\")) { this.close_node(o); }\n\t\t\t\t\telse { this.hover_node(this._get_prev(o)); }\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"right\" : function () { \n\t\t\t\tvar o = this.data.ui.hovered || this.data.ui.last_selected;\n\t\t\t\tif(o && o.length) {\n\t\t\t\t\tif(o.hasClass(\"jstree-closed\")) { this.open_node(o); }\n\t\t\t\t\telse { this.hover_node(this._get_next(o)); }\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t\"space\" : function () { \n\t\t\t\tif(this.data.ui.hovered) { this.data.ui.hovered.children(\"a:eq(0)\").click(); } \n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"ctrl+space\" : function (event) { \n\t\t\t\tevent.type = \"click\";\n\t\t\t\tif(this.data.ui.hovered) { this.data.ui.hovered.children(\"a:eq(0)\").trigger(event); } \n\t\t\t\treturn false; \n\t\t\t},\n\t\t\t\"f2\" : function () { this.rename(this.data.ui.hovered || this.data.ui.last_selected); },\n\t\t\t\"del\" : function () { this.remove(this.data.ui.hovered || this._get_node(null)); }\n\t\t},\n\t\t_fn : {\n\t\t\tenable_hotkeys : function () {\n\t\t\t\tthis.data.hotkeys.enabled = true;\n\t\t\t},\n\t\t\tdisable_hotkeys : function () {\n\t\t\t\tthis.data.hotkeys.enabled = false;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree JSON 1.0\n * The JSON data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.jstree.plugin(\"json_data\", {\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\tcorrect_state : true,\n\t\t\tprogressive_render : false\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_json(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tvar s = this._get_settings().json_data, d;\n\t\t\t\tobj = this._get_node(obj); \n\t\t\t\tif(obj && obj !== -1 && s.progressive_render && !obj.is(\".jstree-open, .jstree-leaf\") && obj.children(\"ul\").children(\"li\").length === 0 && obj.data(\"jstree-children\")) {\n\t\t\t\t\td = this._parse_json(obj.data(\"jstree-children\"));\n\t\t\t\t\tif(d) {\n\t\t\t\t\t\tobj.append(d);\n\t\t\t\t\t\t$.removeData(obj, \"jstree-children\");\n\t\t\t\t\t}\n\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn obj == -1 || !obj || !s.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_json : function (obj, s_call, e_call) {\n\t\t\t\tvar s = this.get_settings().json_data, d,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax): throw \"Neither data nor ajax settings supplied.\";\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\td = this._parse_json(s.data);\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty().append(d.children());\n\t\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse { \n\t\t\t\t\t\t\t\tif(s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().json_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj != -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\tvar sf = this.get_settings().json_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d === \"\" || (!$.isArray(d) && !$.isPlainObject(d))) {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\td = this._parse_json(d);\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\tif(obj === -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()); }\n\t\t\t\t\t\t\t\telse { obj.append(d).children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(obj === -1 || !obj) {\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty(); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"json\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\t_parse_json : function (js, is_callback) {\n\t\t\t\tvar d = false, \n\t\t\t\t\tp = this._get_settings(),\n\t\t\t\t\ts = p.json_data,\n\t\t\t\t\tt = p.core.html_titles,\n\t\t\t\t\ttmp, i, j, ul1, ul2;\n\n\t\t\t\tif(!js) { return d; }\n\t\t\t\tif($.isFunction(js)) { \n\t\t\t\t\tjs = js.call(this);\n\t\t\t\t}\n\t\t\t\tif($.isArray(js)) {\n\t\t\t\t\td = $();\n\t\t\t\t\tif(!js.length) { return false; }\n\t\t\t\t\tfor(i = 0, j = js.length; i < j; i++) {\n\t\t\t\t\t\ttmp = this._parse_json(js[i], true);\n\t\t\t\t\t\tif(tmp.length) { d = d.add(tmp); }\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(typeof js == \"string\") { js = { data : js }; }\n\t\t\t\t\tif(!js.data && js.data !== \"\") { return d; }\n\t\t\t\t\td = $(\"<li>\");\n\t\t\t\t\tif(js.attr) { d.attr(js.attr); }\n\t\t\t\t\tif(js.metadata) { d.data(\"jstree\", js.metadata); }\n\t\t\t\t\tif(js.state) { d.addClass(\"jstree-\" + js.state); }\n\t\t\t\t\tif(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }\n\t\t\t\t\t$.each(js.data, function (i, m) {\n\t\t\t\t\t\ttmp = $(\"<a>\");\n\t\t\t\t\t\tif($.isFunction(m)) { m = m.call(this, js); }\n\t\t\t\t\t\tif(typeof m == \"string\") { tmp.attr('href','#')[ t ? \"html\" : \"text\" ](m); }\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif(!m.attr) { m.attr = {}; }\n\t\t\t\t\t\t\tif(!m.attr.href) { m.attr.href = '#'; }\n\t\t\t\t\t\t\ttmp.attr(m.attr)[ t ? \"html\" : \"text\" ](m.title);\n\t\t\t\t\t\t\tif(m.language) { tmp.addClass(m.language); }\n\t\t\t\t\t\t}\n\t\t\t\t\t\ttmp.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\t\tif(!m.icon && js.icon) { m.icon = js.icon; }\n\t\t\t\t\t\tif(m.icon) { \n\t\t\t\t\t\t\tif(m.icon.indexOf(\"/\") === -1) { tmp.children(\"ins\").addClass(m.icon); }\n\t\t\t\t\t\t\telse { tmp.children(\"ins\").css(\"background\",\"url('\" + m.icon + \"') center center no-repeat\"); }\n\t\t\t\t\t\t}\n\t\t\t\t\t\td.append(tmp);\n\t\t\t\t\t});\n\t\t\t\t\td.prepend(\"<ins class='jstree-icon'>&#160;</ins>\");\n\t\t\t\t\tif(js.children) { \n\t\t\t\t\t\tif(s.progressive_render && js.state !== \"open\") {\n\t\t\t\t\t\t\td.addClass(\"jstree-closed\").data(\"jstree-children\", js.children);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif($.isFunction(js.children)) {\n\t\t\t\t\t\t\t\tjs.children = js.children.call(this, js);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif($.isArray(js.children) && js.children.length) {\n\t\t\t\t\t\t\t\ttmp = this._parse_json(js.children, true);\n\t\t\t\t\t\t\t\tif(tmp.length) {\n\t\t\t\t\t\t\t\t\tul2 = $(\"<ul>\");\n\t\t\t\t\t\t\t\t\tul2.append(tmp);\n\t\t\t\t\t\t\t\t\td.append(ul2);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(!is_callback) {\n\t\t\t\t\tul1 = $(\"<ul>\");\n\t\t\t\t\tul1.append(d);\n\t\t\t\t\td = ul1;\n\t\t\t\t}\n\t\t\t\treturn d;\n\t\t\t},\n\t\t\tget_json : function (obj, li_attr, a_attr, is_callback) {\n\t\t\t\tvar result = [], \n\t\t\t\t\ts = this._get_settings(), \n\t\t\t\t\t_this = this,\n\t\t\t\t\ttmp1, tmp2, li, a, t, lang;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container().find(\"> ul > li\"); }\n\t\t\t\tli_attr = $.isArray(li_attr) ? li_attr : [ \"id\", \"class\" ];\n\t\t\t\tif(!is_callback && this.data.types) { li_attr.push(s.types.type_attr); }\n\t\t\t\ta_attr = $.isArray(a_attr) ? a_attr : [ ];\n\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tli = $(this);\n\t\t\t\t\ttmp1 = { data : [] };\n\t\t\t\t\tif(li_attr.length) { tmp1.attr = { }; }\n\t\t\t\t\t$.each(li_attr, function (i, v) { \n\t\t\t\t\t\ttmp2 = li.attr(v); \n\t\t\t\t\t\tif(tmp2 && tmp2.length && tmp2.replace(/jstree[^ ]*|$/ig,'').length) {\n\t\t\t\t\t\t\ttmp1.attr[v] = tmp2.replace(/jstree[^ ]*|$/ig,''); \n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tif(li.hasClass(\"jstree-open\")) { tmp1.state = \"open\"; }\n\t\t\t\t\tif(li.hasClass(\"jstree-closed\")) { tmp1.state = \"closed\"; }\n\t\t\t\t\ta = li.children(\"a\");\n\t\t\t\t\ta.each(function () {\n\t\t\t\t\t\tt = $(this);\n\t\t\t\t\t\tif(\n\t\t\t\t\t\t\ta_attr.length || \n\t\t\t\t\t\t\t$.inArray(\"languages\", s.plugins) !== -1 || \n\t\t\t\t\t\t\tt.children(\"ins\").get(0).style.backgroundImage.length || \n\t\t\t\t\t\t\t(t.children(\"ins\").get(0).className && t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').length)\n\t\t\t\t\t\t) { \n\t\t\t\t\t\t\tlang = false;\n\t\t\t\t\t\t\tif($.inArray(\"languages\", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {\n\t\t\t\t\t\t\t\t$.each(s.languages, function (l, lv) {\n\t\t\t\t\t\t\t\t\tif(t.hasClass(lv)) {\n\t\t\t\t\t\t\t\t\t\tlang = lv;\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttmp2 = { attr : { }, title : _this.get_text(t, lang) }; \n\t\t\t\t\t\t\t$.each(a_attr, function (k, z) {\n\t\t\t\t\t\t\t\ttmp1.attr[z] = (t.attr(z) || \"\").replace(/jstree[^ ]*|$/ig,'');\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t$.each(s.languages, function (k, z) {\n\t\t\t\t\t\t\t\tif(t.hasClass(z)) { tmp2.language = z; return true; }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tif(t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\").length) {\n\t\t\t\t\t\t\t\ttmp2.icon = t.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(t.children(\"ins\").get(0).style.backgroundImage.length) {\n\t\t\t\t\t\t\t\ttmp2.icon = t.children(\"ins\").get(0).style.backgroundImage.replace(\"url(\",\"\").replace(\")\",\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttmp2 = _this.get_text(t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(a.length > 1) { tmp1.data.push(tmp2); }\n\t\t\t\t\t\telse { tmp1.data = tmp2; }\n\t\t\t\t\t});\n\t\t\t\t\tli = li.find(\"> ul > li\");\n\t\t\t\t\tif(li.length) { tmp1.children = _this.get_json(li, li_attr, a_attr, true); }\n\t\t\t\t\tresult.push(tmp1);\n\t\t\t\t});\n\t\t\t\treturn result;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree languages plugin 1.0\n * Adds support for multiple language versions in one tree\n * This basically allows for many titles coexisting in one node, but only one of them being visible at any given time\n * This is useful for maintaining the same structure in many languages (hence the name of the plugin)\n */\n(function ($) {\n\t$.jstree.plugin(\"languages\", {\n\t\t__init : function () { this._load_css();  },\n\t\tdefaults : [],\n\t\t_fn : {\n\t\t\tset_lang : function (i) { \n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\tst = false,\n\t\t\t\t\tselector = \".jstree-\" + this.get_index() + ' a';\n\t\t\t\tif(!$.isArray(langs) || langs.length === 0) { return false; }\n\t\t\t\tif($.inArray(i,langs) == -1) {\n\t\t\t\t\tif(!!langs[i]) { i = langs[i]; }\n\t\t\t\t\telse { return false; }\n\t\t\t\t}\n\t\t\t\tif(i == this.data.languages.current_language) { return true; }\n\t\t\t\tst = $.vakata.css.get_css(selector + \".\" + this.data.languages.current_language, false, this.data.languages.language_css);\n\t\t\t\tif(st !== false) { st.style.display = \"none\"; }\n\t\t\t\tst = $.vakata.css.get_css(selector + \".\" + i, false, this.data.languages.language_css);\n\t\t\t\tif(st !== false) { st.style.display = \"\"; }\n\t\t\t\tthis.data.languages.current_language = i;\n\t\t\t\tthis.__callback(i);\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tget_lang : function () {\n\t\t\t\treturn this.data.languages.current_language;\n\t\t\t},\n\t\t\tget_text : function (obj, lang) {\n\t\t\t\tobj = this._get_node(obj) || this.data.ui.last_selected;\n\t\t\t\tif(!obj.size()) { return false; }\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\ts = this._get_settings().core.html_titles;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tlang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;\n\t\t\t\t\tobj = obj.children(\"a.\" + lang);\n\t\t\t\t}\n\t\t\t\telse { obj = obj.children(\"a:eq(0)\"); }\n\t\t\t\tif(s) {\n\t\t\t\t\tobj = obj.clone();\n\t\t\t\t\tobj.children(\"INS\").remove();\n\t\t\t\t\treturn obj.html();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\treturn obj.nodeValue;\n\t\t\t\t}\n\t\t\t},\n\t\t\tset_text : function (obj, val, lang) {\n\t\t\t\tobj = this._get_node(obj) || this.data.ui.last_selected;\n\t\t\t\tif(!obj.size()) { return false; }\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\ts = this._get_settings().core.html_titles,\n\t\t\t\t\ttmp;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tlang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;\n\t\t\t\t\tobj = obj.children(\"a.\" + lang);\n\t\t\t\t}\n\t\t\t\telse { obj = obj.children(\"a:eq(0)\"); }\n\t\t\t\tif(s) {\n\t\t\t\t\ttmp = obj.children(\"INS\").clone();\n\t\t\t\t\tobj.html(val).prepend(tmp);\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val, \"lang\" : lang });\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tobj = obj.contents().filter(function() { return this.nodeType == 3; })[0];\n\t\t\t\t\tthis.__callback({ \"obj\" : obj, \"name\" : val, \"lang\" : lang });\n\t\t\t\t\treturn (obj.nodeValue = val);\n\t\t\t\t}\n\t\t\t},\n\t\t\t_load_css : function () {\n\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\tstr = \"/* languages css */\",\n\t\t\t\t\tselector = \".jstree-\" + this.get_index() + ' a',\n\t\t\t\t\tln;\n\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\tthis.data.languages.current_language = langs[0];\n\t\t\t\t\tfor(ln = 0; ln < langs.length; ln++) {\n\t\t\t\t\t\tstr += selector + \".\" + langs[ln] + \" {\";\n\t\t\t\t\t\tif(langs[ln] != this.data.languages.current_language) { str += \" display:none; \"; }\n\t\t\t\t\t\tstr += \" } \";\n\t\t\t\t\t}\n\t\t\t\t\tthis.data.languages.language_css = $.vakata.css.add_sheet({ 'str' : str });\n\t\t\t\t}\n\t\t\t},\n\t\t\tcreate_node : function (obj, position, js, callback) {\n\t\t\t\tvar t = this.__call_old(true, obj, position, js, function (t) {\n\t\t\t\t\tvar langs = this._get_settings().languages,\n\t\t\t\t\t\ta = t.children(\"a\"),\n\t\t\t\t\t\tln;\n\t\t\t\t\tif($.isArray(langs) && langs.length) {\n\t\t\t\t\t\tfor(ln = 0; ln < langs.length; ln++) {\n\t\t\t\t\t\t\tif(!a.is(\".\" + langs[ln])) {\n\t\t\t\t\t\t\t\tt.append(a.eq(0).clone().removeClass(langs.join(\" \")).addClass(langs[ln]));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\ta.not(\".\" + langs.join(\", .\")).remove();\n\t\t\t\t\t}\n\t\t\t\t\tif(callback) { callback.call(this, t); }\n\t\t\t\t});\n\t\t\t\treturn t;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree cookies plugin 1.0\n * Stores the currently opened/selected nodes in a cookie and then restores them\n * Depends on the jquery.cookie plugin\n */\n(function ($) {\n\t$.jstree.plugin(\"cookies\", {\n\t\t__init : function () {\n\t\t\tif(typeof $.cookie === \"undefined\") { throw \"jsTree cookie: jQuery cookie plugin not included.\"; }\n\n\t\t\tvar s = this._get_settings().cookies,\n\t\t\t\ttmp;\n\t\t\tif(!!s.save_opened) {\n\t\t\t\ttmp = $.cookie(s.save_opened);\n\t\t\t\tif(tmp && tmp.length) { this.data.core.to_open = tmp.split(\",\"); }\n\t\t\t}\n\t\t\tif(!!s.save_selected) {\n\t\t\t\ttmp = $.cookie(s.save_selected);\n\t\t\t\tif(tmp && tmp.length && this.data.ui) { this.data.ui.to_select = tmp.split(\",\"); }\n\t\t\t}\n\t\t\tthis.get_container()\n\t\t\t\t.one( ( this.data.ui ? \"reselect\" : \"reopen\" ) + \".jstree\", $.proxy(function () {\n\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t.bind(\"open_node.jstree close_node.jstree select_node.jstree deselect_node.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\t\t\tif(this._get_settings().cookies.auto_save) { this.save_cookie((e.handleObj.namespace + e.handleObj.type).replace(\"jstree\",\"\")); }\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\tsave_opened\t\t: \"jstree_open\",\n\t\t\tsave_selected\t: \"jstree_select\",\n\t\t\tauto_save\t\t: true,\n\t\t\tcookie_options\t: {}\n\t\t},\n\t\t_fn : {\n\t\t\tsave_cookie : function (c) {\n\t\t\t\tif(this.data.core.refreshing) { return; }\n\t\t\t\tvar s = this._get_settings().cookies;\n\t\t\t\tif(!c) { // if called manually and not by event\n\t\t\t\t\tif(s.save_opened) {\n\t\t\t\t\t\tthis.save_opened();\n\t\t\t\t\t\t$.cookie(s.save_opened, this.data.core.to_open.join(\",\"), s.cookie_options);\n\t\t\t\t\t}\n\t\t\t\t\tif(s.save_selected && this.data.ui) {\n\t\t\t\t\t\tthis.save_selected();\n\t\t\t\t\t\t$.cookie(s.save_selected, this.data.ui.to_select.join(\",\"), s.cookie_options);\n\t\t\t\t\t}\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tswitch(c) {\n\t\t\t\t\tcase \"open_node\":\n\t\t\t\t\tcase \"close_node\":\n\t\t\t\t\t\tif(!!s.save_opened) { \n\t\t\t\t\t\t\tthis.save_opened(); \n\t\t\t\t\t\t\t$.cookie(s.save_opened, this.data.core.to_open.join(\",\"), s.cookie_options); \n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"select_node\":\n\t\t\t\t\tcase \"deselect_node\":\n\t\t\t\t\t\tif(!!s.save_selected && this.data.ui) { \n\t\t\t\t\t\t\tthis.save_selected(); \n\t\t\t\t\t\t\t$.cookie(s.save_selected, this.data.ui.to_select.join(\",\"), s.cookie_options); \n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\t// include cookies by default\n\t$.jstree.defaults.plugins.push(\"cookies\");\n})(jQuery);\n//*/\n\n/*\n * jsTree sort plugin 1.0\n * Sorts items alphabetically (or using any other function)\n */\n(function ($) {\n\t$.jstree.plugin(\"sort\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"load_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tvar obj = this._get_node(data.rslt.obj);\n\t\t\t\t\t\tobj = obj === -1 ? this.get_container().children(\"ul\") : obj.children(\"ul\");\n\t\t\t\t\t\tthis.sort(obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"rename_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis.sort(data.rslt.obj.parent());\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tvar m = data.rslt.np == -1 ? this.get_container() : data.rslt.np;\n\t\t\t\t\t\tthis.sort(m.children(\"ul\"));\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : function (a, b) { return this.get_text(a) > this.get_text(b) ? 1 : -1; },\n\t\t_fn : {\n\t\t\tsort : function (obj) {\n\t\t\t\tvar s = this._get_settings().sort,\n\t\t\t\t\tt = this;\n\t\t\t\tobj.append($.makeArray(obj.children(\"li\")).sort($.proxy(s, t)));\n\t\t\t\tobj.find(\"> li > ul\").each(function() { t.sort($(this)); });\n\t\t\t\tthis.clean_node(obj);\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree DND plugin 1.0\n * Drag and drop plugin for moving/copying nodes\n */\n(function ($) {\n\tvar o = false,\n\t\tr = false,\n\t\tm = false,\n\t\tsli = false,\n\t\tsti = false,\n\t\tdir1 = false,\n\t\tdir2 = false;\n\t$.vakata.dnd = {\n\t\tis_down : false,\n\t\tis_drag : false,\n\t\thelper : false,\n\t\tscroll_spd : 10,\n\t\tinit_x : 0,\n\t\tinit_y : 0,\n\t\tthreshold : 5,\n\t\tuser_data : {},\n\n\t\tdrag_start : function (e, data, html) { \n\t\t\tif($.vakata.dnd.is_drag) { $.vakata.drag_stop({}); }\n\t\t\ttry {\n\t\t\t\te.currentTarget.unselectable = \"on\";\n\t\t\t\te.currentTarget.onselectstart = function() { return false; };\n\t\t\t\tif(e.currentTarget.style) { e.currentTarget.style.MozUserSelect = \"none\"; }\n\t\t\t} catch(err) { }\n\t\t\t$.vakata.dnd.init_x = e.pageX;\n\t\t\t$.vakata.dnd.init_y = e.pageY;\n\t\t\t$.vakata.dnd.user_data = data;\n\t\t\t$.vakata.dnd.is_down = true;\n\t\t\t$.vakata.dnd.helper = $(\"<div id='vakata-dragged'>\").html(html).css(\"opacity\", \"0.75\");\n\t\t\t$(document).bind(\"mousemove\", $.vakata.dnd.drag);\n\t\t\t$(document).bind(\"mouseup\", $.vakata.dnd.drag_stop);\n\t\t\treturn false;\n\t\t},\n\t\tdrag : function (e) { \n\t\t\tif(!$.vakata.dnd.is_down) { return; }\n\t\t\tif(!$.vakata.dnd.is_drag) {\n\t\t\t\tif(Math.abs(e.pageX - $.vakata.dnd.init_x) > 5 || Math.abs(e.pageY - $.vakata.dnd.init_y) > 5) { \n\t\t\t\t\t$.vakata.dnd.helper.appendTo(\"body\");\n\t\t\t\t\t$.vakata.dnd.is_drag = true;\n\t\t\t\t\t$(document).triggerHandler(\"drag_start.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t\t\t}\n\t\t\t\telse { return; }\n\t\t\t}\n\n\t\t\t// maybe use a scrolling parent element instead of document?\n\t\t\tif(e.type === \"mousemove\") { // thought of adding scroll in order to move the helper, but mouse poisition is n/a\n\t\t\t\tvar d = $(document), t = d.scrollTop(), l = d.scrollLeft();\n\t\t\t\tif(e.pageY - t < 20) { \n\t\t\t\t\tif(sti && dir1 === \"down\") { clearInterval(sti); sti = false; }\n\t\t\t\t\tif(!sti) { dir1 = \"up\"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() - $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sti && dir1 === \"up\") { clearInterval(sti); sti = false; }\n\t\t\t\t}\n\t\t\t\tif($(window).height() - (e.pageY - t) < 20) {\n\t\t\t\t\tif(sti && dir1 === \"up\") { clearInterval(sti); sti = false; }\n\t\t\t\t\tif(!sti) { dir1 = \"down\"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() + $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sti && dir1 === \"down\") { clearInterval(sti); sti = false; }\n\t\t\t\t}\n\n\t\t\t\tif(e.pageX - l < 20) {\n\t\t\t\t\tif(sli && dir2 === \"right\") { clearInterval(sli); sli = false; }\n\t\t\t\t\tif(!sli) { dir2 = \"left\"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() - $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sli && dir2 === \"left\") { clearInterval(sli); sli = false; }\n\t\t\t\t}\n\t\t\t\tif($(window).width() - (e.pageX - l) < 20) {\n\t\t\t\t\tif(sli && dir2 === \"left\") { clearInterval(sli); sli = false; }\n\t\t\t\t\tif(!sli) { dir2 = \"right\"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() + $.vakata.dnd.scroll_spd); }, 150); }\n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tif(sli && dir2 === \"right\") { clearInterval(sli); sli = false; }\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$.vakata.dnd.helper.css({ left : (e.pageX + 5) + \"px\", top : (e.pageY + 10) + \"px\" });\n\t\t\t$(document).triggerHandler(\"drag.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t},\n\t\tdrag_stop : function (e) {\n\t\t\t$(document).unbind(\"mousemove\", $.vakata.dnd.drag);\n\t\t\t$(document).unbind(\"mouseup\", $.vakata.dnd.drag_stop);\n\t\t\t$(document).triggerHandler(\"drag_stop.vakata\", { \"event\" : e, \"data\" : $.vakata.dnd.user_data });\n\t\t\t$.vakata.dnd.helper.remove();\n\t\t\t$.vakata.dnd.init_x = 0;\n\t\t\t$.vakata.dnd.init_y = 0;\n\t\t\t$.vakata.dnd.user_data = {};\n\t\t\t$.vakata.dnd.is_down = false;\n\t\t\t$.vakata.dnd.is_drag = false;\n\t\t}\n\t};\n\t$(function() {\n\t\tvar css_string = '#vakata-dragged { display:block; margin:0 0 0 0; padding:4px 4px 4px 24px; position:absolute; top:-2000px; line-height:16px; z-index:10000; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n\n\t$.jstree.plugin(\"dnd\", {\n\t\t__init : function () {\n\t\t\tthis.data.dnd = {\n\t\t\t\tactive : false,\n\t\t\t\tafter : false,\n\t\t\t\tinside : false,\n\t\t\t\tbefore : false,\n\t\t\t\toff : false,\n\t\t\t\tprepared : false,\n\t\t\t\tw : 0,\n\t\t\t\tto1 : false,\n\t\t\t\tto2 : false,\n\t\t\t\tcof : false,\n\t\t\t\tcw : false,\n\t\t\t\tch : false,\n\t\t\t\ti1 : false,\n\t\t\t\ti2 : false\n\t\t\t};\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"mouseenter.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && this.data.themes) {\n\t\t\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"mouseleave.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"mousemove.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tvar cnt = this.get_container()[0];\n\n\t\t\t\t\t\t\t// Horizontal scroll\n\t\t\t\t\t\t\tif(e.pageX + 24 > this.data.dnd.cof.left + this.data.dnd.cw) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft += $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if(e.pageX - 24 < this.data.dnd.cof.left) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft -= $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// Vertical scroll\n\t\t\t\t\t\t\tif(e.pageY + 24 > this.data.dnd.cof.top + this.data.dnd.ch) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop += $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if(e.pageY - 24 < this.data.dnd.cof.top) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t\tthis.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop -= $.vakata.dnd.scroll_spd; }, cnt), 100);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mousedown.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif(e.which === 1) {\n\t\t\t\t\t\t\tthis.start_drag(e.currentTarget, e);\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseenter.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.dnd_enter(e.currentTarget);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mousemove.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tif(typeof this.data.dnd.off.top === \"undefined\") { this.data.dnd.off = $(e.target).offset(); }\n\t\t\t\t\t\t\tthis.data.dnd.w = (e.pageY - (this.data.dnd.off.top || 0)) % this.data.core.li_height;\n\t\t\t\t\t\t\tif(this.data.dnd.w < 0) { this.data.dnd.w += this.data.core.li_height; }\n\t\t\t\t\t\t\tthis.dnd_show();\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseleave.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.data.dnd.after\t\t= false;\n\t\t\t\t\t\t\tthis.data.dnd.before\t= false;\n\t\t\t\t\t\t\tthis.data.dnd.inside\t= false;\n\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\t\tm.hide();\n\t\t\t\t\t\t\tif(r && r[0] === e.target.parentNode) {\n\t\t\t\t\t\t\t\tif(this.data.dnd.to1) {\n\t\t\t\t\t\t\t\t\tclearTimeout(this.data.dnd.to1);\n\t\t\t\t\t\t\t\t\tthis.data.dnd.to1 = false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif(this.data.dnd.to2) {\n\t\t\t\t\t\t\t\t\tclearTimeout(this.data.dnd.to2);\n\t\t\t\t\t\t\t\t\tthis.data.dnd.to2 = false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"mouseup.jstree\", $.proxy(function (e) { \n\t\t\t\t\t\tif($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {\n\t\t\t\t\t\t\tthis.dnd_finish(e);\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\n\t\t\t$(document)\n\t\t\t\t.bind(\"drag_stop.vakata\", $.proxy(function () {\n\t\t\t\t\t\tthis.data.dnd.after\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.before\t= false;\n\t\t\t\t\t\tthis.data.dnd.inside\t= false;\n\t\t\t\t\t\tthis.data.dnd.off\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.prepared\t= false;\n\t\t\t\t\t\tthis.data.dnd.w\t\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.to1\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.to2\t\t= false;\n\t\t\t\t\t\tthis.data.dnd.active\t= false;\n\t\t\t\t\t\tthis.data.dnd.foreign\t= false;\n\t\t\t\t\t\tif(m) { m.css({ \"top\" : \"-2000px\" }); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"drag_start.vakata\", $.proxy(function (e, data) {\n\t\t\t\t\t\tif(data.data.jstree) { \n\t\t\t\t\t\t\tvar et = $(data.event.target);\n\t\t\t\t\t\t\tif(et.closest(\".jstree\").hasClass(\"jstree-\" + this.get_index())) {\n\t\t\t\t\t\t\t\tthis.dnd_enter(et);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\n\t\t\tvar s = this._get_settings().dnd;\n\t\t\tif(s.drag_target) {\n\t\t\t\t$(document)\n\t\t\t\t\t.delegate(s.drag_target, \"mousedown.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\to = e.target;\n\t\t\t\t\t\t$.vakata.dnd.drag_start(e, { jstree : true, obj : e.target }, \"<ins class='jstree-icon'></ins>\" + $(e.target).text() );\n\t\t\t\t\t\tif(this.data.themes) { \n\t\t\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme); \n\t\t\t\t\t\t}\n\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\tvar cnt = this.get_container();\n\t\t\t\t\t\tthis.data.dnd.cof = cnt.offset();\n\t\t\t\t\t\tthis.data.dnd.cw = parseInt(cnt.width(),10);\n\t\t\t\t\t\tthis.data.dnd.ch = parseInt(cnt.height(),10);\n\t\t\t\t\t\tthis.data.dnd.foreign = true;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}, this));\n\t\t\t}\n\t\t\tif(s.drop_target) {\n\t\t\t\t$(document)\n\t\t\t\t\t.delegate(s.drop_target, \"mouseenter.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active && this._get_settings().dnd.drop_check.call(this, { \"o\" : o, \"r\" : $(e.target) })) {\n\t\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-ok\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.delegate(s.drop_target, \"mouseleave.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active) {\n\t\t\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this))\n\t\t\t\t\t.delegate(s.drop_target, \"mouseup.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\t\tif(this.data.dnd.active && $.vakata.dnd.helper.children(\"ins\").hasClass(\"jstree-ok\")) {\n\t\t\t\t\t\t\t\tthis._get_settings().dnd.drop_finish.call(this, { \"o\" : o, \"r\" : $(e.target) });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, this));\n\t\t\t}\n\t\t},\n\t\tdefaults : {\n\t\t\tcopy_modifier\t: \"ctrl\",\n\t\t\tcheck_timeout\t: 200,\n\t\t\topen_timeout\t: 500,\n\t\t\tdrop_target\t\t: \".jstree-drop\",\n\t\t\tdrop_check\t\t: function (data) { return true; },\n\t\t\tdrop_finish\t\t: $.noop,\n\t\t\tdrag_target\t\t: \".jstree-draggable\",\n\t\t\tdrag_finish\t\t: $.noop,\n\t\t\tdrag_check\t\t: function (data) { return { after : false, before : false, inside : true }; }\n\t\t},\n\t\t_fn : {\n\t\t\tdnd_prepare : function () {\n\t\t\t\tif(!r || !r.length) { return; }\n\t\t\t\tthis.data.dnd.off = r.offset();\n\t\t\t\tif(this._get_settings().core.rtl) {\n\t\t\t\t\tthis.data.dnd.off.right = this.data.dnd.off.left + r.width();\n\t\t\t\t}\n\t\t\t\tif(this.data.dnd.foreign) {\n\t\t\t\t\tvar a = this._get_settings().dnd.drag_check.call(this, { \"o\" : o, \"r\" : r });\n\t\t\t\t\tthis.data.dnd.after = a.after;\n\t\t\t\t\tthis.data.dnd.before = a.before;\n\t\t\t\t\tthis.data.dnd.inside = a.inside;\n\t\t\t\t\tthis.data.dnd.prepared = true;\n\t\t\t\t\treturn this.dnd_show();\n\t\t\t\t}\n\t\t\t\tthis.prepare_move(o, r, \"before\");\n\t\t\t\tthis.data.dnd.before = this.check_move();\n\t\t\t\tthis.prepare_move(o, r, \"after\");\n\t\t\t\tthis.data.dnd.after = this.check_move();\n\t\t\t\tif(this._is_loaded(r)) {\n\t\t\t\t\tthis.prepare_move(o, r, \"inside\");\n\t\t\t\t\tthis.data.dnd.inside = this.check_move();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.data.dnd.inside = false;\n\t\t\t\t}\n\t\t\t\tthis.data.dnd.prepared = true;\n\t\t\t\treturn this.dnd_show();\n\t\t\t},\n\t\t\tdnd_show : function () {\n\t\t\t\tif(!this.data.dnd.prepared) { return; }\n\t\t\t\tvar o = [\"before\",\"inside\",\"after\"],\n\t\t\t\t\tr = false,\n\t\t\t\t\trtl = this._get_settings().core.rtl,\n\t\t\t\t\tpos;\n\t\t\t\tif(this.data.dnd.w < this.data.core.li_height/3) { o = [\"before\",\"inside\",\"after\"]; }\n\t\t\t\telse if(this.data.dnd.w <= this.data.core.li_height*2/3) {\n\t\t\t\t\to = this.data.dnd.w < this.data.core.li_height/2 ? [\"inside\",\"before\",\"after\"] : [\"inside\",\"after\",\"before\"];\n\t\t\t\t}\n\t\t\t\telse { o = [\"after\",\"inside\",\"before\"]; }\n\t\t\t\t$.each(o, $.proxy(function (i, val) { \n\t\t\t\t\tif(this.data.dnd[val]) {\n\t\t\t\t\t\t$.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-ok\");\n\t\t\t\t\t\tr = val;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t}, this));\n\t\t\t\tif(r === false) { $.vakata.dnd.helper.children(\"ins\").attr(\"class\",\"jstree-invalid\"); }\n\t\t\t\t\n\t\t\t\tpos = rtl ? (this.data.dnd.off.right - 18) : (this.data.dnd.off.left + 10);\n\t\t\t\tswitch(r) {\n\t\t\t\t\tcase \"before\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + \"px\", \"top\" : (this.data.dnd.off.top - 6) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"after\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + \"px\", \"top\" : (this.data.dnd.off.top + this.data.core.li_height - 7) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"inside\":\n\t\t\t\t\t\tm.css({ \"left\" : pos + ( rtl ? -4 : 4) + \"px\", \"top\" : (this.data.dnd.off.top + this.data.core.li_height/2 - 5) + \"px\" }).show();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tm.hide();\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\treturn r;\n\t\t\t},\n\t\t\tdnd_open : function () {\n\t\t\t\tthis.data.dnd.to2 = false;\n\t\t\t\tthis.open_node(r, $.proxy(this.dnd_prepare,this), true);\n\t\t\t},\n\t\t\tdnd_finish : function (e) {\n\t\t\t\tif(this.data.dnd.foreign) {\n\t\t\t\t\tif(this.data.dnd.after || this.data.dnd.before || this.data.dnd.inside) {\n\t\t\t\t\t\tthis._get_settings().dnd.drag_finish.call(this, { \"o\" : o, \"r\" : r });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis.dnd_prepare();\n\t\t\t\t\tthis.move_node(o, r, this.dnd_show(), e[this._get_settings().dnd.copy_modifier + \"Key\"]);\n\t\t\t\t}\n\t\t\t\to = false;\n\t\t\t\tr = false;\n\t\t\t\tm.hide();\n\t\t\t},\n\t\t\tdnd_enter : function (obj) {\n\t\t\t\tvar s = this._get_settings().dnd;\n\t\t\t\tthis.data.dnd.prepared = false;\n\t\t\t\tr = this._get_node(obj);\n\t\t\t\tif(s.check_timeout) { \n\t\t\t\t\t// do the calculations after a minimal timeout (users tend to drag quickly to the desired location)\n\t\t\t\t\tif(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }\n\t\t\t\t\tthis.data.dnd.to1 = setTimeout($.proxy(this.dnd_prepare, this), s.check_timeout); \n\t\t\t\t}\n\t\t\t\telse { \n\t\t\t\t\tthis.dnd_prepare(); \n\t\t\t\t}\n\t\t\t\tif(s.open_timeout) { \n\t\t\t\t\tif(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }\n\t\t\t\t\tif(r && r.length && r.hasClass(\"jstree-closed\")) { \n\t\t\t\t\t\t// if the node is closed - open it, then recalculate\n\t\t\t\t\t\tthis.data.dnd.to2 = setTimeout($.proxy(this.dnd_open, this), s.open_timeout);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(r && r.length && r.hasClass(\"jstree-closed\")) { \n\t\t\t\t\t\tthis.dnd_open();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tstart_drag : function (obj, e) {\n\t\t\t\to = this._get_node(obj);\n\t\t\t\tif(this.data.ui && this.is_selected(o)) { o = this._get_node(null, true); }\n\t\t\t\t$.vakata.dnd.drag_start(e, { jstree : true, obj : o }, \"<ins class='jstree-icon'></ins>\" + (o.length > 1 ? \"Multiple selection\" : this.get_text(o)) );\n\t\t\t\tif(this.data.themes) { \n\t\t\t\t\tm.attr(\"class\", \"jstree-\" + this.data.themes.theme); \n\t\t\t\t\t$.vakata.dnd.helper.attr(\"class\", \"jstree-dnd-helper jstree-\" + this.data.themes.theme); \n\t\t\t\t}\n\t\t\t\tvar cnt = this.get_container();\n\t\t\t\tthis.data.dnd.cof = cnt.children(\"ul\").offset();\n\t\t\t\tthis.data.dnd.cw = parseInt(cnt.width(),10);\n\t\t\t\tthis.data.dnd.ch = parseInt(cnt.height(),10);\n\t\t\t\tthis.data.dnd.active = true;\n\t\t\t}\n\t\t}\n\t});\n\t$(function() {\n\t\tvar css_string = '' + \n\t\t\t'#vakata-dragged ins { display:block; text-decoration:none; width:16px; height:16px; margin:0 0 0 0; padding:0; position:absolute; top:4px; left:4px; } ' + \n\t\t\t'#vakata-dragged .jstree-ok { background:green; } ' + \n\t\t\t'#vakata-dragged .jstree-invalid { background:red; } ' + \n\t\t\t'#jstree-marker { padding:0; margin:0; line-height:12px; font-size:1px; overflow:hidden; height:12px; width:8px; position:absolute; top:-30px; z-index:10000; background-repeat:no-repeat; display:none; background-color:silver; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t\tm = $(\"<div>\").attr({ id : \"jstree-marker\" }).hide().appendTo(\"body\");\n\t\t$(document).bind(\"drag_start.vakata\", function (e, data) {\n\t\t\tif(data.data.jstree) { \n\t\t\t\tm.show(); \n\t\t\t}\n\t\t});\n\t\t$(document).bind(\"drag_stop.vakata\", function (e, data) {\n\t\t\tif(data.data.jstree) { m.hide(); }\n\t\t});\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree checkbox plugin 1.0\n * Inserts checkboxes in front of every node\n * Depends on the ui plugin\n * DOES NOT WORK NICELY WITH MULTITREE DRAG'N'DROP\n */\n(function ($) {\n\t$.jstree.plugin(\"checkbox\", {\n\t\t__init : function () {\n\t\t\tthis.select_node = this.deselect_node = this.deselect_all = $.noop;\n\t\t\tthis.get_selected = this.get_checked;\n\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"open_node.jstree create_node.jstree clean_node.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tthis._prepare_checkboxes(data.rslt.obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tthis._prepare_checkboxes();\n\t\t\t\t\t}, this))\n\t\t\t\t.delegate(\"a\", \"click.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tif(this._get_node(e.target).hasClass(\"jstree-checked\")) { this.uncheck_node(e.target); }\n\t\t\t\t\t\telse { this.check_node(e.target); }\n\t\t\t\t\t\tif(this.data.ui) { this.save_selected(); }\n\t\t\t\t\t\tif(this.data.cookies) { this.save_cookie(\"select_node\"); }\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t}, this));\n\t\t},\n\t\t__destroy : function () {\n\t\t\tthis.get_container().find(\".jstree-checkbox\").remove();\n\t\t},\n\t\t_fn : {\n\t\t\t_prepare_checkboxes : function (obj) {\n\t\t\t\tobj = !obj || obj == -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\tvar c, _this = this, t;\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tt = $(this);\n\t\t\t\t\tc = t.is(\"li\") && t.hasClass(\"jstree-checked\") ? \"jstree-checked\" : \"jstree-unchecked\";\n\t\t\t\t\tt.find(\"a\").not(\":has(.jstree-checkbox)\").prepend(\"<ins class='jstree-checkbox'>&#160;</ins>\").parent().not(\".jstree-checked, .jstree-unchecked\").addClass(c);\n\t\t\t\t});\n\t\t\t\tif(obj.is(\"li\")) { this._repair_state(obj); }\n\t\t\t\telse { obj.find(\"> ul > li\").each(function () { _this._repair_state(this); }); }\n\t\t\t},\n\t\t\tchange_state : function (obj, state) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tstate = (state === false || state === true) ? state : obj.hasClass(\"jstree-checked\");\n\t\t\t\tif(state) { obj.find(\"li\").andSelf().removeClass(\"jstree-checked jstree-undetermined\").addClass(\"jstree-unchecked\"); }\n\t\t\t\telse { \n\t\t\t\t\tobj.find(\"li\").andSelf().removeClass(\"jstree-unchecked jstree-undetermined\").addClass(\"jstree-checked\"); \n\t\t\t\t\tif(this.data.ui) { this.data.ui.last_selected = obj; }\n\t\t\t\t\tthis.data.checkbox.last_selected = obj;\n\t\t\t\t}\n\t\t\t\tobj.parentsUntil(\".jstree\", \"li\").each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif(state) {\n\t\t\t\t\t\tif($this.children(\"ul\").children(\".jstree-checked, .jstree-undetermined\").length) {\n\t\t\t\t\t\t\t$this.parentsUntil(\".jstree\", \"li\").andSelf().removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this.removeClass(\"jstree-checked jstree-undetermined\").addClass(\"jstree-unchecked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tif($this.children(\"ul\").children(\".jstree-unchecked, .jstree-undetermined\").length) {\n\t\t\t\t\t\t\t$this.parentsUntil(\".jstree\", \"li\").andSelf().removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this.removeClass(\"jstree-unchecked jstree-undetermined\").addClass(\"jstree-checked\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tif(this.data.ui) { this.data.ui.selected = this.get_checked(); }\n\t\t\t\tthis.__callback(obj);\n\t\t\t},\n\t\t\tcheck_node : function (obj) {\n\t\t\t\tthis.change_state(obj, false);\n\t\t\t},\n\t\t\tuncheck_node : function (obj) {\n\t\t\t\tthis.change_state(obj, true);\n\t\t\t},\n\t\t\tcheck_all : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.get_container().children(\"ul\").children(\"li\").each(function () {\n\t\t\t\t\t_this.check_node(this, false);\n\t\t\t\t});\n\t\t\t},\n\t\t\tuncheck_all : function () {\n\t\t\t\tvar _this = this;\n\t\t\t\tthis.get_container().children(\"ul\").children(\"li\").each(function () {\n\t\t\t\t\t_this.change_state(this, true);\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tis_checked : function(obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn obj.length ? obj.is(\".jstree-checked\") : false;\n\t\t\t},\n\t\t\tget_checked : function (obj) {\n\t\t\t\tobj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\treturn obj.find(\"> ul > .jstree-checked, .jstree-undetermined > ul > .jstree-checked\");\n\t\t\t},\n\t\t\tget_unchecked : function (obj) { \n\t\t\t\tobj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);\n\t\t\t\treturn obj.find(\"> ul > .jstree-unchecked, .jstree-undetermined > ul > .jstree-unchecked\");\n\t\t\t},\n\n\t\t\tshow_checkboxes : function () { this.get_container().children(\"ul\").removeClass(\"jstree-no-checkboxes\"); },\n\t\t\thide_checkboxes : function () { this.get_container().children(\"ul\").addClass(\"jstree-no-checkboxes\"); },\n\n\t\t\t_repair_state : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj.length) { return; }\n\t\t\t\tvar a = obj.find(\"> ul > .jstree-checked\").length,\n\t\t\t\t\tb = obj.find(\"> ul > .jstree-undetermined\").length,\n\t\t\t\t\tc = obj.find(\"> ul > li\").length;\n\n\t\t\t\tif(c === 0) { if(obj.hasClass(\"jstree-undetermined\")) { this.check_node(obj); } }\n\t\t\t\telse if(a === 0 && b === 0) { this.uncheck_node(obj); }\n\t\t\t\telse if(a === c) { this.check_node(obj); }\n\t\t\t\telse { \n\t\t\t\t\tobj.parentsUntil(\".jstree\",\"li\").removeClass(\"jstree-checked jstree-unchecked\").addClass(\"jstree-undetermined\");\n\t\t\t\t}\n\t\t\t},\n\t\t\treselect : function () {\n\t\t\t\tif(this.data.ui) { \n\t\t\t\t\tvar _this = this,\n\t\t\t\t\t\ts = this.data.ui.to_select;\n\t\t\t\t\ts = $.map($.makeArray(s), function (n) { return \"#\" + n.toString().replace(/^#/,\"\").replace('\\\\/','/').replace('/','\\\\/'); });\n\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\t$.each(s, function (i, val) { _this.check_node(val); });\n\t\t\t\t\tthis.__callback();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree XML 1.0\n * The XML data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.vakata.xslt = function (xml, xsl, callback) {\n\t\tvar rs = \"\", xm, xs, processor, support;\n\t\tif(document.recalc) {\n\t\t\txm = document.createElement('xml');\n\t\t\txs = document.createElement('xml');\n\t\t\txm.innerHTML = xml;\n\t\t\txs.innerHTML = xsl;\n\t\t\t$(\"body\").append(xm).append(xs);\n\t\t\tsetTimeout( (function (xm, xs, callback) {\n\t\t\t\treturn function () {\n\t\t\t\t\tcallback.call(null, xm.transformNode(xs.XMLDocument));\n\t\t\t\t\tsetTimeout( (function (xm, xs) { return function () { jQuery(\"body\").remove(xm).remove(xs); }; })(xm, xs), 200);\n\t\t\t\t};\n\t\t\t}) (xm, xs, callback), 100);\n\t\t\treturn true;\n\t\t}\n\t\tif(typeof window.DOMParser !== \"undefined\" && typeof window.XMLHttpRequest !== \"undefined\" && typeof window.XSLTProcessor !== \"undefined\") {\n\t\t\tprocessor = new XSLTProcessor();\n\t\t\tsupport = $.isFunction(processor.transformDocument) ? (typeof window.XMLSerializer !== \"undefined\") : true;\n\t\t\tif(!support) { return false; }\n\t\t\txml = new DOMParser().parseFromString(xml, \"text/xml\");\n\t\t\txsl = new DOMParser().parseFromString(xsl, \"text/xml\");\n\t\t\tif($.isFunction(processor.transformDocument)) {\n\t\t\t\trs = document.implementation.createDocument(\"\", \"\", null);\n\t\t\t\tprocessor.transformDocument(xml, xsl, rs, null);\n\t\t\t\tcallback.call(null, XMLSerializer().serializeToString(rs));\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tprocessor.importStylesheet(xsl);\n\t\t\t\trs = processor.transformToFragment(xml, document);\n\t\t\t\tcallback.call(null, $(\"<div>\").append(rs).html());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t};\n\tvar xsl = {\n\t\t'nest' : '<?xml version=\"1.0\" encoding=\"utf-8\" ?>' + \n\t\t\t'<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" >' + \n\t\t\t'<xsl:output method=\"html\" encoding=\"utf-8\" omit-xml-declaration=\"yes\" standalone=\"no\" indent=\"no\" media-type=\"text/html\" />' + \n\t\t\t'<xsl:template match=\"/\">' + \n\t\t\t'\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t<xsl:with-param name=\"node\" select=\"/root\" />' + \n\t\t\t'\t</xsl:call-template>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'<xsl:template name=\"nodes\">' + \n\t\t\t'\t<xsl:param name=\"node\" />' + \n\t\t\t'\t<ul>' + \n\t\t\t'\t<xsl:for-each select=\"$node/item\">' + \n\t\t\t'\t\t<xsl:variable name=\"children\" select=\"count(./item) &gt; 0\" />' + \n\t\t\t'\t\t<li>' + \n\t\t\t'\t\t\t<xsl:attribute name=\"class\">' + \n\t\t\t'\t\t\t\t<xsl:if test=\"position() = last()\">jstree-last </xsl:if>' + \n\t\t\t'\t\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"@state = \\'open\\'\">jstree-open </xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"$children or @hasChildren or @state = \\'closed\\'\">jstree-closed </xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:otherwise>jstree-leaf </xsl:otherwise>' + \n\t\t\t'\t\t\t\t</xsl:choose>' + \n\t\t\t'\t\t\t\t<xsl:value-of select=\"@class\" />' + \n\t\t\t'\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t\t<xsl:if test=\"name() != \\'class\\' and name() != \\'state\\' and name() != \\'hasChildren\\'\">' + \n\t\t\t'\t\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t</xsl:if>' + \n\t\t\t'\t\t\t</xsl:for-each>' + \n\t\t\t'\t<ins class=\"jstree-icon\"><xsl:text>&#xa0;</xsl:text></ins>' + \n\t\t\t'\t\t\t<xsl:for-each select=\"content/name\">' + \n\t\t\t'\t\t\t\t<a>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"href\">' + \n\t\t\t'\t\t\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t\t\t<xsl:when test=\"@href\"><xsl:value-of select=\"@href\" /></xsl:when>' + \n\t\t\t'\t\t\t\t\t<xsl:otherwise>#</xsl:otherwise>' + \n\t\t\t'\t\t\t\t\t</xsl:choose>' + \n\t\t\t'\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"class\"><xsl:value-of select=\"@lang\" /> <xsl:value-of select=\"@class\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"style\"><xsl:value-of select=\"@style\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t\t\t<xsl:if test=\"name() != \\'style\\' and name() != \\'class\\' and name() != \\'href\\'\">' + \n\t\t\t'\t\t\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t\t\t</xsl:if>' + \n\t\t\t'\t\t\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t\t\t<ins>' + \n\t\t\t'\t\t\t\t\t\t<xsl:attribute name=\"class\">jstree-icon ' + \n\t\t\t'\t\t\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and not(contains(@icon,\\'/\\'))\"><xsl:value-of select=\"@icon\" /></xsl:if>' + \n\t\t\t'\t\t\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and contains(@icon,\\'/\\')\"><xsl:attribute name=\"style\">background:url(<xsl:value-of select=\"@icon\" />) center center no-repeat;</xsl:attribute></xsl:if>' + \n\t\t\t'\t\t\t\t\t\t<xsl:text>&#xa0;</xsl:text>' + \n\t\t\t'\t\t\t\t\t</ins>' + \n\t\t\t'\t\t\t\t\t<xsl:value-of select=\"current()\" />' + \n\t\t\t'\t\t\t\t</a>' + \n\t\t\t'\t\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t<xsl:if test=\"$children or @hasChildren\"><xsl:call-template name=\"nodes\"><xsl:with-param name=\"node\" select=\"current()\" /></xsl:call-template></xsl:if>' + \n\t\t\t'\t\t</li>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t</ul>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'</xsl:stylesheet>',\n\n\t\t'flat' : '<?xml version=\"1.0\" encoding=\"utf-8\" ?>' + \n\t\t\t'<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" >' + \n\t\t\t'<xsl:output method=\"html\" encoding=\"utf-8\" omit-xml-declaration=\"yes\" standalone=\"no\" indent=\"no\" media-type=\"text/xml\" />' + \n\t\t\t'<xsl:template match=\"/\">' + \n\t\t\t'\t<ul>' + \n\t\t\t'\t<xsl:for-each select=\"//item[not(@parent_id) or @parent_id=0 or not(@parent_id = //item/@id)]\">' + /* the last `or` may be removed */\n\t\t\t'\t\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t\t<xsl:with-param name=\"node\" select=\".\" />' + \n\t\t\t'\t\t\t<xsl:with-param name=\"is_last\" select=\"number(position() = last())\" />' + \n\t\t\t'\t\t</xsl:call-template>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t</ul>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'<xsl:template name=\"nodes\">' + \n\t\t\t'\t<xsl:param name=\"node\" />' + \n\t\t\t'\t<xsl:param name=\"is_last\" />' + \n\t\t\t'\t<xsl:variable name=\"children\" select=\"count(//item[@parent_id=$node/attribute::id]) &gt; 0\" />' + \n\t\t\t'\t<li>' + \n\t\t\t'\t<xsl:attribute name=\"class\">' + \n\t\t\t'\t\t<xsl:if test=\"$is_last = true()\">jstree-last </xsl:if>' + \n\t\t\t'\t\t<xsl:choose>' + \n\t\t\t'\t\t\t<xsl:when test=\"@state = \\'open\\'\">jstree-open </xsl:when>' + \n\t\t\t'\t\t\t<xsl:when test=\"$children or @hasChildren or @state = \\'closed\\'\">jstree-closed </xsl:when>' + \n\t\t\t'\t\t\t<xsl:otherwise>jstree-leaf </xsl:otherwise>' + \n\t\t\t'\t\t</xsl:choose>' + \n\t\t\t'\t\t<xsl:value-of select=\"@class\" />' + \n\t\t\t'\t</xsl:attribute>' + \n\t\t\t'\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t<xsl:if test=\"name() != \\'parent_id\\' and name() != \\'hasChildren\\' and name() != \\'class\\' and name() != \\'state\\'\">' + \n\t\t\t'\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t</xsl:if>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t<ins class=\"jstree-icon\"><xsl:text>&#xa0;</xsl:text></ins>' + \n\t\t\t'\t<xsl:for-each select=\"content/name\">' + \n\t\t\t'\t\t<a>' + \n\t\t\t'\t\t<xsl:attribute name=\"href\">' + \n\t\t\t'\t\t\t<xsl:choose>' + \n\t\t\t'\t\t\t<xsl:when test=\"@href\"><xsl:value-of select=\"@href\" /></xsl:when>' + \n\t\t\t'\t\t\t<xsl:otherwise>#</xsl:otherwise>' + \n\t\t\t'\t\t\t</xsl:choose>' + \n\t\t\t'\t\t</xsl:attribute>' + \n\t\t\t'\t\t<xsl:attribute name=\"class\"><xsl:value-of select=\"@lang\" /> <xsl:value-of select=\"@class\" /></xsl:attribute>' + \n\t\t\t'\t\t<xsl:attribute name=\"style\"><xsl:value-of select=\"@style\" /></xsl:attribute>' + \n\t\t\t'\t\t<xsl:for-each select=\"@*\">' + \n\t\t\t'\t\t\t<xsl:if test=\"name() != \\'style\\' and name() != \\'class\\' and name() != \\'href\\'\">' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"{name()}\"><xsl:value-of select=\".\" /></xsl:attribute>' + \n\t\t\t'\t\t\t</xsl:if>' + \n\t\t\t'\t\t</xsl:for-each>' + \n\t\t\t'\t\t\t<ins>' + \n\t\t\t'\t\t\t\t<xsl:attribute name=\"class\">jstree-icon ' + \n\t\t\t'\t\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and not(contains(@icon,\\'/\\'))\"><xsl:value-of select=\"@icon\" /></xsl:if>' + \n\t\t\t'\t\t\t\t</xsl:attribute>' + \n\t\t\t'\t\t\t\t<xsl:if test=\"string-length(attribute::icon) > 0 and contains(@icon,\\'/\\')\"><xsl:attribute name=\"style\">background:url(<xsl:value-of select=\"@icon\" />) center center no-repeat;</xsl:attribute></xsl:if>' + \n\t\t\t'\t\t\t\t<xsl:text>&#xa0;</xsl:text>' + \n\t\t\t'\t\t\t</ins>' + \n\t\t\t'\t\t\t<xsl:value-of select=\"current()\" />' + \n\t\t\t'\t\t</a>' + \n\t\t\t'\t</xsl:for-each>' + \n\t\t\t'\t<xsl:if test=\"$children\">' + \n\t\t\t'\t\t<ul>' + \n\t\t\t'\t\t<xsl:for-each select=\"//item[@parent_id=$node/attribute::id]\">' + \n\t\t\t'\t\t\t<xsl:call-template name=\"nodes\">' + \n\t\t\t'\t\t\t\t<xsl:with-param name=\"node\" select=\".\" />' + \n\t\t\t'\t\t\t\t<xsl:with-param name=\"is_last\" select=\"number(position() = last())\" />' + \n\t\t\t'\t\t\t</xsl:call-template>' + \n\t\t\t'\t\t</xsl:for-each>' + \n\t\t\t'\t\t</ul>' + \n\t\t\t'\t</xsl:if>' + \n\t\t\t'\t</li>' + \n\t\t\t'</xsl:template>' + \n\t\t\t'</xsl:stylesheet>'\n\t};\n\t$.jstree.plugin(\"xml_data\", {\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\txsl : \"flat\",\n\t\t\tclean_node : false,\n\t\t\tcorrect_state : true\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_xml(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tvar s = this._get_settings().xml_data;\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn obj == -1 || !obj || !s.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_xml : function (obj, s_call, e_call) {\n\t\t\t\tvar s = this.get_settings().xml_data,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax): throw \"Neither data nor ajax settings supplied.\";\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\tthis.parse_xml(s.data, $.proxy(function (d) {\n\t\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\t\td = d.replace(/ ?xmlns=\"[^\"]*\"/ig, \"\");\n\t\t\t\t\t\t\t\t\tif(d.length > 10) {\n\t\t\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty().append(d.children());\n\t\t\t\t\t\t\t\t\t\tif(s.clean_node) { this.clean_node(obj); }\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse { \n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty(); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().xml_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj !== -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\td = x.responseText;\n\t\t\t\t\t\t\tvar sf = this.get_settings().xml_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d == \"\") {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tthis.parse_xml(d, $.proxy(function (d) {\n\t\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\t\td = d.replace(/ ?xmlns=\"[^\"]*\"/ig, \"\");\n\t\t\t\t\t\t\t\t\tif(d.length > 10) {\n\t\t\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\t\t\tif(obj === -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()); }\n\t\t\t\t\t\t\t\t\t\telse { obj.children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.append(d); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\t\t\tif(s.clean_node) { this.clean_node(obj); }\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\tif(obj && obj !== -1) { \n\t\t\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty();\n\t\t\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}, this));\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"xml\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\tparse_xml : function (xml, callback) {\n\t\t\t\tvar s = this._get_settings().xml_data;\n\t\t\t\t$.vakata.xslt(xml, xsl[s.xsl], callback);\n\t\t\t},\n\t\t\tget_xml : function (tp, obj, li_attr, a_attr, is_callback) {\n\t\t\t\tvar result = \"\", \n\t\t\t\t\ts = this._get_settings(), \n\t\t\t\t\t_this = this,\n\t\t\t\t\ttmp1, tmp2, li, a, lang;\n\t\t\t\tif(!tp) { tp = \"flat\"; }\n\t\t\t\tif(!is_callback) { is_callback = 0; }\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(!obj || obj === -1) { obj = this.get_container().find(\"> ul > li\"); }\n\t\t\t\tli_attr = $.isArray(li_attr) ? li_attr : [ \"id\", \"class\" ];\n\t\t\t\tif(!is_callback && this.data.types && $.inArray(s.types.type_attr, li_attr) === -1) { li_attr.push(s.types.type_attr); }\n\n\t\t\t\ta_attr = $.isArray(a_attr) ? a_attr : [ ];\n\n\t\t\t\tif(!is_callback) { result += \"<root>\"; }\n\t\t\t\tobj.each(function () {\n\t\t\t\t\tresult += \"<item\";\n\t\t\t\t\tli = $(this);\n\t\t\t\t\t$.each(li_attr, function (i, v) { result += \" \" + v + \"=\\\"\" + (li.attr(v) || \"\").replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\") + \"\\\"\"; });\n\t\t\t\t\tif(li.hasClass(\"jstree-open\")) { result += \" state=\\\"open\\\"\"; }\n\t\t\t\t\tif(li.hasClass(\"jstree-closed\")) { result += \" state=\\\"closed\\\"\"; }\n\t\t\t\t\tif(tp === \"flat\") { result += \" parent_id=\\\"\" + is_callback + \"\\\"\"; }\n\t\t\t\t\tresult += \">\";\n\t\t\t\t\tresult += \"<content>\";\n\t\t\t\t\ta = li.children(\"a\");\n\t\t\t\t\ta.each(function () {\n\t\t\t\t\t\ttmp1 = $(this);\n\t\t\t\t\t\tlang = false;\n\t\t\t\t\t\tresult += \"<name\";\n\t\t\t\t\t\tif($.inArray(\"languages\", s.plugins) !== -1) {\n\t\t\t\t\t\t\t$.each(s.languages, function (k, z) {\n\t\t\t\t\t\t\t\tif(tmp1.hasClass(z)) { result += \" lang=\\\"\" + z + \"\\\"\"; lang = z; return false; }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(a_attr.length) { \n\t\t\t\t\t\t\t$.each(a_attr, function (k, z) {\n\t\t\t\t\t\t\t\tresult += \" \" + z + \"=\\\"\" + (tmp1.attr(z) || \"\").replace(/jstree[^ ]*|$/ig,'') + \"\\\"\";\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(tmp1.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\").length) {\n\t\t\t\t\t\t\tresult += ' icon=\"' + tmp1.children(\"ins\").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\\s+$/ig,\"\") + '\"';\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(tmp1.children(\"ins\").get(0).style.backgroundImage.length) {\n\t\t\t\t\t\t\tresult += ' icon=\"' + tmp1.children(\"ins\").get(0).style.backgroundImage.replace(\"url(\",\"\").replace(\")\",\"\") + '\"';\n\t\t\t\t\t\t}\n\t\t\t\t\t\tresult += \">\";\n\t\t\t\t\t\tresult += \"<![CDATA[\" + _this.get_text(tmp1, lang) + \"]]>\";\n\t\t\t\t\t\tresult += \"</name>\";\n\t\t\t\t\t});\n\t\t\t\t\tresult += \"</content>\";\n\t\t\t\t\ttmp2 = li[0].id;\n\t\t\t\t\tli = li.find(\"> ul > li\");\n\t\t\t\t\tif(li.length) { tmp2 = _this.get_xml(tp, li, li_attr, a_attr, tmp2); }\n\t\t\t\t\telse { tmp2 = \"\"; }\n\t\t\t\t\tif(tp == \"nest\") { result += tmp2; }\n\t\t\t\t\tresult += \"</item>\";\n\t\t\t\t\tif(tp == \"flat\") { result += tmp2; }\n\t\t\t\t});\n\t\t\t\tif(!is_callback) { result += \"</root>\"; }\n\t\t\t\treturn result;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree search plugin 1.0\n * Enables both sync and async search on the tree\n * DOES NOT WORK WITH JSON PROGRESSIVE RENDER\n */\n(function ($) {\n\t$.expr[':'].jstree_contains = function(a,i,m){\n\t\treturn (a.textContent || a.innerText || \"\").toLowerCase().indexOf(m[3].toLowerCase())>=0;\n\t};\n\t$.jstree.plugin(\"search\", {\n\t\t__init : function () {\n\t\t\tthis.data.search.str = \"\";\n\t\t\tthis.data.search.result = $();\n\t\t},\n\t\tdefaults : {\n\t\t\tajax : false, // OR ajax object\n\t\t\tcase_insensitive : false\n\t\t},\n\t\t_fn : {\n\t\t\tsearch : function (str, skip_async) {\n\t\t\t\tif(str === \"\") { return; }\n\t\t\t\tvar s = this.get_settings().search, \n\t\t\t\t\tt = this,\n\t\t\t\t\terror_func = function () { },\n\t\t\t\t\tsuccess_func = function () { };\n\t\t\t\tthis.data.search.str = str;\n\n\t\t\t\tif(!skip_async && s.ajax !== false && this.get_container().find(\".jstree-closed:eq(0)\").length > 0) {\n\t\t\t\t\tthis.search.supress_callback = true;\n\t\t\t\t\terror_func = function () { };\n\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\tvar sf = this.get_settings().search.ajax.success; \n\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\tthis.data.search.to_open = d;\n\t\t\t\t\t\tthis._search_open();\n\t\t\t\t\t};\n\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, str); }\n\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, str); }\n\t\t\t\t\tif(!s.ajax.data) { s.ajax.data = { \"search_string\" : str }; }\n\t\t\t\t\tif(!s.ajax.dataType || /^json/.exec(s.ajax.dataType)) { s.ajax.dataType = \"json\"; }\n\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif(this.data.search.result.length) { this.clear_search(); }\n\t\t\t\tthis.data.search.result = this.get_container().find(\"a\" + (this.data.languages ? \".\" + this.get_lang() : \"\" ) + \":\" + (s.case_insensitive ? \"jstree_contains\" : \"contains\") + \"(\" + this.data.search.str + \")\");\n\t\t\t\tthis.data.search.result.addClass(\"jstree-search\").parents(\".jstree-closed\").each(function () {\n\t\t\t\t\tt.open_node(this, false, true);\n\t\t\t\t});\n\t\t\t\tthis.__callback({ nodes : this.data.search.result, str : str });\n\t\t\t},\n\t\t\tclear_search : function (str) {\n\t\t\t\tthis.data.search.result.removeClass(\"jstree-search\");\n\t\t\t\tthis.__callback(this.data.search.result);\n\t\t\t\tthis.data.search.result = $();\n\t\t\t},\n\t\t\t_search_open : function (is_callback) {\n\t\t\t\tvar _this = this,\n\t\t\t\t\tdone = true,\n\t\t\t\t\tcurrent = [],\n\t\t\t\t\tremaining = [];\n\t\t\t\tif(this.data.search.to_open.length) {\n\t\t\t\t\t$.each(this.data.search.to_open, function (i, val) {\n\t\t\t\t\t\tif(val == \"#\") { return true; }\n\t\t\t\t\t\tif($(val).length && $(val).is(\".jstree-closed\")) { current.push(val); }\n\t\t\t\t\t\telse { remaining.push(val); }\n\t\t\t\t\t});\n\t\t\t\t\tif(current.length) {\n\t\t\t\t\t\tthis.data.search.to_open = remaining;\n\t\t\t\t\t\t$.each(current, function (i, val) { \n\t\t\t\t\t\t\t_this.open_node(val, function () { _this._search_open(true); }); \n\t\t\t\t\t\t});\n\t\t\t\t\t\tdone = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(done) { this.search(this.data.search.str, true); }\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/*\n * jsTree contextmenu plugin 1.0\n */\n(function ($) {\n\t$.vakata.context = {\n\t\tcnt\t\t: $(\"<div id='vakata-contextmenu'>\"),\n\t\tvis\t\t: false,\n\t\ttgt\t\t: false,\n\t\tpar\t\t: false,\n\t\tfunc\t: false,\n\t\tdata\t: false,\n\t\tshow\t: function (s, t, x, y, d, p) {\n\t\t\tvar html = $.vakata.context.parse(s), h, w;\n\t\t\tif(!html) { return; }\n\t\t\t$.vakata.context.vis = true;\n\t\t\t$.vakata.context.tgt = t;\n\t\t\t$.vakata.context.par = p || t || null;\n\t\t\t$.vakata.context.data = d || null;\n\t\t\t$.vakata.context.cnt\n\t\t\t\t.html(html)\n\t\t\t\t.css({ \"visibility\" : \"hidden\", \"display\" : \"block\", \"left\" : 0, \"top\" : 0 });\n\t\t\th = $.vakata.context.cnt.height();\n\t\t\tw = $.vakata.context.cnt.width();\n\t\t\tif(x + w > $(document).width()) { \n\t\t\t\tx = $(document).width() - (w + 5); \n\t\t\t\t$.vakata.context.cnt.find(\"li > ul\").addClass(\"right\"); \n\t\t\t}\n\t\t\tif(y + h > $(document).height()) { \n\t\t\t\ty = y - (h + t[0].offsetHeight); \n\t\t\t\t$.vakata.context.cnt.find(\"li > ul\").addClass(\"bottom\"); \n\t\t\t}\n\n\t\t\t$.vakata.context.cnt\n\t\t\t\t.css({ \"left\" : x, \"top\" : y })\n\t\t\t\t.find(\"li:has(ul)\")\n\t\t\t\t\t.bind(\"mouseenter\", function (e) { \n\t\t\t\t\t\tvar w = $(document).width(),\n\t\t\t\t\t\t\th = $(document).height(),\n\t\t\t\t\t\t\tul = $(this).children(\"ul\").show(); \n\t\t\t\t\t\tif(w !== $(document).width()) { ul.toggleClass(\"right\"); }\n\t\t\t\t\t\tif(h !== $(document).height()) { ul.toggleClass(\"bottom\"); }\n\t\t\t\t\t})\n\t\t\t\t\t.bind(\"mouseleave\", function (e) { \n\t\t\t\t\t\t$(this).children(\"ul\").hide(); \n\t\t\t\t\t})\n\t\t\t\t\t.end()\n\t\t\t\t.css({ \"visibility\" : \"visible\" })\n\t\t\t\t.show();\n\t\t\t$(document).triggerHandler(\"context_show.vakata\");\n\t\t},\n\t\thide\t: function () {\n\t\t\t$.vakata.context.vis = false;\n\t\t\t$.vakata.context.cnt.attr(\"class\",\"\").hide();\n\t\t\t$(document).triggerHandler(\"context_hide.vakata\");\n\t\t},\n\t\tparse\t: function (s, is_callback) {\n\t\t\tif(!s) { return false; }\n\t\t\tvar str = \"\",\n\t\t\t\ttmp = false,\n\t\t\t\twas_sep = true;\n\t\t\tif(!is_callback) { $.vakata.context.func = {}; }\n\t\t\tstr += \"<ul>\";\n\t\t\t$.each(s, function (i, val) {\n\t\t\t\tif(!val) { return true; }\n\t\t\t\t$.vakata.context.func[i] = val.action;\n\t\t\t\tif(!was_sep && val.separator_before) {\n\t\t\t\t\tstr += \"<li class='vakata-separator vakata-separator-before'></li>\";\n\t\t\t\t}\n\t\t\t\twas_sep = false;\n\t\t\t\tstr += \"<li class='\" + (val._class || \"\") + (val._disabled ? \" jstree-contextmenu-disabled \" : \"\") + \"'><ins \";\n\t\t\t\tif(val.icon && val.icon.indexOf(\"/\") === -1) { str += \" class='\" + val.icon + \"' \"; }\n\t\t\t\tif(val.icon && val.icon.indexOf(\"/\") !== -1) { str += \" style='background:url(\" + val.icon + \") center center no-repeat;' \"; }\n\t\t\t\tstr += \">&#160;</ins><a href='#' rel='\" + i + \"'>\";\n\t\t\t\tif(val.submenu) {\n\t\t\t\t\tstr += \"<span style='float:right;'>&raquo;</span>\";\n\t\t\t\t}\n\t\t\t\tstr += val.label + \"</a>\";\n\t\t\t\tif(val.submenu) {\n\t\t\t\t\ttmp = $.vakata.context.parse(val.submenu, true);\n\t\t\t\t\tif(tmp) { str += tmp; }\n\t\t\t\t}\n\t\t\t\tstr += \"</li>\";\n\t\t\t\tif(val.separator_after) {\n\t\t\t\t\tstr += \"<li class='vakata-separator vakata-separator-after'></li>\";\n\t\t\t\t\twas_sep = true;\n\t\t\t\t}\n\t\t\t});\n\t\t\tstr = str.replace(/<li class\\='vakata-separator vakata-separator-after'\\><\\/li\\>$/,\"\");\n\t\t\tstr += \"</ul>\";\n\t\t\treturn str.length > 10 ? str : false;\n\t\t},\n\t\texec\t: function (i) {\n\t\t\tif($.isFunction($.vakata.context.func[i])) {\n\t\t\t\t$.vakata.context.func[i].call($.vakata.context.data, $.vakata.context.par);\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse { return false; }\n\t\t}\n\t};\n\t$(function () {\n\t\tvar css_string = '' + \n\t\t\t'#vakata-contextmenu { display:none; position:absolute; margin:0; padding:0; min-width:180px; background:#ebebeb; border:1px solid silver; z-index:10000; *width:180px; } ' + \n\t\t\t'#vakata-contextmenu ul { min-width:180px; *width:180px; } ' + \n\t\t\t'#vakata-contextmenu ul, #vakata-contextmenu li { margin:0; padding:0; list-style-type:none; display:block; } ' + \n\t\t\t'#vakata-contextmenu li { line-height:20px; min-height:20px; position:relative; padding:0px; } ' + \n\t\t\t'#vakata-contextmenu li a { padding:1px 6px; line-height:17px; display:block; text-decoration:none; margin:1px 1px 0 1px; } ' + \n\t\t\t'#vakata-contextmenu li ins { float:left; width:16px; height:16px; text-decoration:none; margin-right:2px; } ' + \n\t\t\t'#vakata-contextmenu li a:hover, #vakata-contextmenu li.vakata-hover > a { background:gray; color:white; } ' + \n\t\t\t'#vakata-contextmenu li ul { display:none; position:absolute; top:-2px; left:100%; background:#ebebeb; border:1px solid gray; } ' + \n\t\t\t'#vakata-contextmenu .right { right:100%; left:auto; } ' + \n\t\t\t'#vakata-contextmenu .bottom { bottom:-1px; top:auto; } ' + \n\t\t\t'#vakata-contextmenu li.vakata-separator { min-height:0; height:1px; line-height:1px; font-size:1px; overflow:hidden; margin:0 2px; background:silver; /* border-top:1px solid #fefefe; */ padding:0; } ';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t\t$.vakata.context.cnt\n\t\t\t.delegate(\"a\",\"click\", function (e) { e.preventDefault(); })\n\t\t\t.delegate(\"a\",\"mouseup\", function (e) {\n\t\t\t\tif(!$(this).parent().hasClass(\"jstree-contextmenu-disabled\") && $.vakata.context.exec($(this).attr(\"rel\"))) {\n\t\t\t\t\t$.vakata.context.hide();\n\t\t\t\t}\n\t\t\t\telse { $(this).blur(); }\n\t\t\t})\n\t\t\t.delegate(\"a\",\"mouseover\", function () {\n\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").removeClass(\"vakata-hover\");\n\t\t\t})\n\t\t\t.appendTo(\"body\");\n\t\t$(document).bind(\"mousedown\", function (e) { if($.vakata.context.vis && !$.contains($.vakata.context.cnt[0], e.target)) { $.vakata.context.hide(); } });\n\t\tif(typeof $.hotkeys !== \"undefined\") {\n\t\t\t$(document)\n\t\t\t\t.bind(\"keydown\", \"up\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\tvar o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\".vakata-hover\").removeClass(\"vakata-hover\").prevAll(\"li:not(.vakata-separator)\").first();\n\t\t\t\t\t\tif(!o.length) { o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\"li:not(.vakata-separator)\").last(); }\n\t\t\t\t\t\to.addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"down\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\tvar o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\".vakata-hover\").removeClass(\"vakata-hover\").nextAll(\"li:not(.vakata-separator)\").first();\n\t\t\t\t\t\tif(!o.length) { o = $.vakata.context.cnt.find(\"ul:visible\").last().children(\"li:not(.vakata-separator)\").first(); }\n\t\t\t\t\t\to.addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"right\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").children(\"ul\").show().children(\"li:not(.vakata-separator)\").removeClass(\"vakata-hover\").first().addClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"left\", function (e) { \n\t\t\t\t\tif($.vakata.context.vis) { \n\t\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").children(\"ul\").hide().children(\".vakata-separator\").removeClass(\"vakata-hover\");\n\t\t\t\t\t\te.stopImmediatePropagation(); \n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t} \n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"esc\", function (e) { \n\t\t\t\t\t$.vakata.context.hide(); \n\t\t\t\t\te.preventDefault();\n\t\t\t\t})\n\t\t\t\t.bind(\"keydown\", \"space\", function (e) { \n\t\t\t\t\t$.vakata.context.cnt.find(\".vakata-hover\").last().children(\"a\").click();\n\t\t\t\t\te.preventDefault();\n\t\t\t\t});\n\t\t}\n\t});\n\n\t$.jstree.plugin(\"contextmenu\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.delegate(\"a\", \"contextmenu.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tthis.show_contextmenu(e.currentTarget, e.pageX, e.pageY);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"destroy.jstree\", $.proxy(function () {\n\t\t\t\t\t\tif(this.data.contextmenu) {\n\t\t\t\t\t\t\t$.vakata.context.hide();\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t\t$(document).bind(\"context_hide.vakata\", $.proxy(function () { this.data.contextmenu = false; }, this));\n\t\t},\n\t\tdefaults : { \n\t\t\tselect_node : false, // requires UI plugin\n\t\t\tshow_at_node : true,\n\t\t\titems : { // Could be a function that should return an object like this one\n\t\t\t\t\"create\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"separator_after\"\t: true,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Create\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.create(obj); }\n\t\t\t\t},\n\t\t\t\t\"rename\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Rename\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.rename(obj); }\n\t\t\t\t},\n\t\t\t\t\"remove\" : {\n\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Delete\",\n\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.remove(obj); }\n\t\t\t\t},\n\t\t\t\t\"ccp\" : {\n\t\t\t\t\t\"separator_before\"\t: true,\n\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\"label\"\t\t\t\t: \"Edit\",\n\t\t\t\t\t\"action\"\t\t\t: false,\n\t\t\t\t\t\"submenu\" : { \n\t\t\t\t\t\t\"cut\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Cut\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.cut(obj); }\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"copy\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Copy\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.copy(obj); }\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"paste\" : {\n\t\t\t\t\t\t\t\"separator_before\"\t: false,\n\t\t\t\t\t\t\t\"icon\"\t\t\t\t: false,\n\t\t\t\t\t\t\t\"separator_after\"\t: false,\n\t\t\t\t\t\t\t\"label\"\t\t\t\t: \"Paste\",\n\t\t\t\t\t\t\t\"action\"\t\t\t: function (obj) { this.paste(obj); }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\tshow_contextmenu : function (obj, x, y) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tvar s = this.get_settings().contextmenu,\n\t\t\t\t\ta = obj.children(\"a:visible:eq(0)\"),\n\t\t\t\t\to = false;\n\t\t\t\tif(s.select_node && this.data.ui && !this.is_selected(obj)) {\n\t\t\t\t\tthis.deselect_all();\n\t\t\t\t\tthis.select_node(obj, true);\n\t\t\t\t}\n\t\t\t\tif(s.show_at_node || typeof x === \"undefined\" || typeof y === \"undefined\") {\n\t\t\t\t\to = a.offset();\n\t\t\t\t\tx = o.left;\n\t\t\t\t\ty = o.top + this.data.core.li_height;\n\t\t\t\t}\n\t\t\t\tif($.isFunction(s.items)) { s.items = s.items.call(this, obj); }\n\t\t\t\tthis.data.contextmenu = true;\n\t\t\t\t$.vakata.context.show(s.items, a, x, y, this, obj);\n\t\t\t\tif(this.data.themes) { $.vakata.context.cnt.attr(\"class\", \"jstree-\" + this.data.themes.theme + \"-context\"); }\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree types plugin 1.0\n * Adds support types of nodes\n * You can set an attribute on each li node, that represents its type.\n * According to the type setting the node may get custom icon/validation rules\n */\n(function ($) {\n\t$.jstree.plugin(\"types\", {\n\t\t__init : function () {\n\t\t\tvar s = this._get_settings().types;\n\t\t\tthis.data.types.attach_to = [];\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"init.jstree\", $.proxy(function () { \n\t\t\t\t\t\tvar types = s.types, \n\t\t\t\t\t\t\tattr  = s.type_attr, \n\t\t\t\t\t\t\ticons_css = \"\", \n\t\t\t\t\t\t\t_this = this;\n\n\t\t\t\t\t\t$.each(types, function (i, tp) {\n\t\t\t\t\t\t\t$.each(tp, function (k, v) { \n\t\t\t\t\t\t\t\tif(!/^(max_depth|max_children|icon|valid_children)$/.test(k)) { _this.data.types.attach_to.push(k); }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tif(!tp.icon) { return true; }\n\t\t\t\t\t\t\tif( tp.icon.image || tp.icon.position) {\n\t\t\t\t\t\t\t\tif(i == \"default\")\t{ icons_css += '.jstree-' + _this.get_index() + ' a > .jstree-icon { '; }\n\t\t\t\t\t\t\t\telse\t\t\t\t{ icons_css += '.jstree-' + _this.get_index() + ' li[' + attr + '=' + i + '] > a > .jstree-icon { '; }\n\t\t\t\t\t\t\t\tif(tp.icon.image)\t{ icons_css += ' background-image:url(' + tp.icon.image + '); '; }\n\t\t\t\t\t\t\t\tif(tp.icon.position){ icons_css += ' background-position:' + tp.icon.position + '; '; }\n\t\t\t\t\t\t\t\telse\t\t\t\t{ icons_css += ' background-position:0 0; '; }\n\t\t\t\t\t\t\t\ticons_css += '} ';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t\tif(icons_css != \"\") { $.vakata.css.add_sheet({ 'str' : icons_css }); }\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"before.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tif($.inArray(data.func, this.data.types.attach_to) !== -1) {\n\t\t\t\t\t\t\tvar s = this._get_settings().types.types,\n\t\t\t\t\t\t\t\tt = this._get_type(data.args[0]);\n\t\t\t\t\t\t\tif(\n\t\t\t\t\t\t\t\t( \n\t\t\t\t\t\t\t\t\t(s[t] && typeof s[t][data.func] !== \"undefined\") || \n\t\t\t\t\t\t\t\t\t(s[\"default\"] && typeof s[\"default\"][data.func] !== \"undefined\")\n\t\t\t\t\t\t\t\t) && !this._check(data.func, data.args[0])\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\te.stopImmediatePropagation();\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\tdefaults : {\n\t\t\t// defines maximum number of root nodes (-1 means unlimited, -2 means disable max_children checking)\n\t\t\tmax_children\t\t: -1,\n\t\t\t// defines the maximum depth of the tree (-1 means unlimited, -2 means disable max_depth checking)\n\t\t\tmax_depth\t\t\t: -1,\n\t\t\t// defines valid node types for the root nodes\n\t\t\tvalid_children\t\t: \"all\",\n\n\t\t\t// where is the type stores (the rel attribute of the LI element)\n\t\t\ttype_attr : \"rel\",\n\t\t\t// a list of types\n\t\t\ttypes : {\n\t\t\t\t// the default type\n\t\t\t\t\"default\" : {\n\t\t\t\t\t\"max_children\"\t: -1,\n\t\t\t\t\t\"max_depth\"\t\t: -1,\n\t\t\t\t\t\"valid_children\": \"all\"\n\n\t\t\t\t\t// Bound functions - you can bind any other function here (using boolean or function)\n\t\t\t\t\t//\"select_node\"\t: true,\n\t\t\t\t\t//\"open_node\"\t: true,\n\t\t\t\t\t//\"close_node\"\t: true,\n\t\t\t\t\t//\"create_node\"\t: true,\n\t\t\t\t\t//\"delete_node\"\t: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t_fn : {\n\t\t\t_get_type : function (obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn (!obj || !obj.length) ? false : obj.attr(this._get_settings().types.type_attr) || \"default\";\n\t\t\t},\n\t\t\tset_type : function (str, obj) {\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\treturn (!obj.length || !str) ? false : obj.attr(this._get_settings().types.type_attr, str);\n\t\t\t},\n\t\t\t_check : function (rule, obj, opts) {\n\t\t\t\tvar v = false, t = this._get_type(obj), d = 0, _this = this, s = this._get_settings().types;\n\t\t\t\tif(obj === -1) { \n\t\t\t\t\tif(!!s[rule]) { v = s[rule]; }\n\t\t\t\t\telse { return; }\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tif(t === false) { return; }\n\t\t\t\t\tif(!!s.types[t] && !!s.types[t][rule]) { v = s.types[t][rule]; }\n\t\t\t\t\telse if(!!s.types[\"default\"] && !!s.types[\"default\"][rule]) { v = s.types[\"default\"][rule]; }\n\t\t\t\t}\n\t\t\t\tif($.isFunction(v)) { v = v.call(this, obj); }\n\t\t\t\tif(rule === \"max_depth\" && obj !== -1 && opts !== false && s.max_depth !== -2 && v !== 0) {\n\t\t\t\t\t// also include the node itself - otherwise if root node it is not checked\n\t\t\t\t\tthis._get_node(obj).children(\"a:eq(0)\").parentsUntil(\".jstree\",\"li\").each(function (i) {\n\t\t\t\t\t\t// check if current depth already exceeds global tree depth\n\t\t\t\t\t\tif(s.max_depth !== -1 && s.max_depth - (i + 1) <= 0) { v = 0; return false; }\n\t\t\t\t\t\td = (i === 0) ? v : _this._check(rule, this, false);\n\t\t\t\t\t\t// check if current node max depth is already matched or exceeded\n\t\t\t\t\t\tif(d !== -1 && d - (i + 1) <= 0) { v = 0; return false; }\n\t\t\t\t\t\t// otherwise - set the max depth to the current value minus current depth\n\t\t\t\t\t\tif(d >= 0 && (d - (i + 1) < v || v < 0) ) { v = d - (i + 1); }\n\t\t\t\t\t\t// if the global tree depth exists and it minus the nodes calculated so far is less than `v` or `v` is unlimited\n\t\t\t\t\t\tif(s.max_depth >= 0 && (s.max_depth - (i + 1) < v || v < 0) ) { v = s.max_depth - (i + 1); }\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn v;\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar m  = this._get_move(),\n\t\t\t\t\ts  = m.rt._get_settings().types,\n\t\t\t\t\tmc = m.rt._check(\"max_children\", m.cr),\n\t\t\t\t\tmd = m.rt._check(\"max_depth\", m.cr),\n\t\t\t\t\tvc = m.rt._check(\"valid_children\", m.cr),\n\t\t\t\t\tch = 0, d = 1, t;\n\n\t\t\t\tif(vc === \"none\") { return false; } \n\t\t\t\tif($.isArray(vc) && m.ot && m.ot._get_type) {\n\t\t\t\t\tm.o.each(function () {\n\t\t\t\t\t\tif($.inArray(m.ot._get_type(this), vc) === -1) { d = false; return false; }\n\t\t\t\t\t});\n\t\t\t\t\tif(d === false) { return false; }\n\t\t\t\t}\n\t\t\t\tif(s.max_children !== -2 && mc !== -1) {\n\t\t\t\t\tch = m.cr === -1 ? this.get_container().children(\"> ul > li\").not(m.o).length : m.cr.children(\"> ul > li\").not(m.o).length;\n\t\t\t\t\tif(ch + m.o.length > mc) { return false; }\n\t\t\t\t}\n\t\t\t\tif(s.max_depth !== -2 && md !== -1) {\n\t\t\t\t\td = 0;\n\t\t\t\t\tif(md === 0) { return false; }\n\t\t\t\t\tif(typeof m.o.d === \"undefined\") {\n\t\t\t\t\t\t// TODO: deal with progressive rendering and async when checking max_depth (how to know the depth of the moved node)\n\t\t\t\t\t\tt = m.o;\n\t\t\t\t\t\twhile(t.length > 0) {\n\t\t\t\t\t\t\tt = t.find(\"> ul > li\");\n\t\t\t\t\t\t\td ++;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tm.o.d = d;\n\t\t\t\t\t}\n\t\t\t\t\tif(md - m.o.d < 0) { return false; }\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tcreate_node : function (obj, position, js, callback, is_loaded, skip_check) {\n\t\t\t\tif(!skip_check && (is_loaded || this._is_loaded(obj))) {\n\t\t\t\t\tvar p  = (position && position.match(/^before|after$/i) && obj !== -1) ? this._get_parent(obj) : this._get_node(obj),\n\t\t\t\t\t\ts  = this._get_settings().types,\n\t\t\t\t\t\tmc = this._check(\"max_children\", p),\n\t\t\t\t\t\tmd = this._check(\"max_depth\", p),\n\t\t\t\t\t\tvc = this._check(\"valid_children\", p),\n\t\t\t\t\t\tch;\n\t\t\t\t\tif(!js) { js = {}; }\n\t\t\t\t\tif(vc === \"none\") { return false; } \n\t\t\t\t\tif($.isArray(vc)) {\n\t\t\t\t\t\tif(!js.attr || !js.attr[s.type_attr]) { \n\t\t\t\t\t\t\tif(!js.attr) { js.attr = {}; }\n\t\t\t\t\t\t\tjs.attr[s.type_attr] = vc[0]; \n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tif($.inArray(js.attr[s.type_attr], vc) === -1) { return false; }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(s.max_children !== -2 && mc !== -1) {\n\t\t\t\t\t\tch = p === -1 ? this.get_container().children(\"> ul > li\").length : p.children(\"> ul > li\").length;\n\t\t\t\t\t\tif(ch + 1 > mc) { return false; }\n\t\t\t\t\t}\n\t\t\t\t\tif(s.max_depth !== -2 && md !== -1 && (md - 1) < 0) { return false; }\n\t\t\t\t}\n\t\t\t\treturn this.__call_old(true, obj, position, js, callback, is_loaded, skip_check);\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree HTML data 1.0\n * The HTML data store. Datastores are build by replacing the `load_node` and `_is_loaded` functions.\n */\n(function ($) {\n\t$.jstree.plugin(\"html_data\", {\n\t\t__init : function () { \n\t\t\t// this used to use html() and clean the whitespace, but this way any attached data was lost\n\t\t\tthis.data.html_data.original_container_html = this.get_container().find(\" > ul > li\").clone(true);\n\t\t\t// remove white space from LI node - otherwise nodes appear a bit to the right\n\t\t\tthis.data.html_data.original_container_html.find(\"li\").andSelf().contents().filter(function() { return this.nodeType == 3; }).remove();\n\t\t},\n\t\tdefaults : { \n\t\t\tdata : false,\n\t\t\tajax : false,\n\t\t\tcorrect_state : true\n\t\t},\n\t\t_fn : {\n\t\t\tload_node : function (obj, s_call, e_call) { var _this = this; this.load_node_html(obj, function () { _this.__callback({ \"obj\" : obj }); s_call.call(this); }, e_call); },\n\t\t\t_is_loaded : function (obj) { \n\t\t\t\tobj = this._get_node(obj); \n\t\t\t\treturn obj == -1 || !obj || !this._get_settings().html_data.ajax || obj.is(\".jstree-open, .jstree-leaf\") || obj.children(\"ul\").children(\"li\").size() > 0;\n\t\t\t},\n\t\t\tload_node_html : function (obj, s_call, e_call) {\n\t\t\t\tvar d,\n\t\t\t\t\ts = this.get_settings().html_data,\n\t\t\t\t\terror_func = function () {},\n\t\t\t\t\tsuccess_func = function () {};\n\t\t\t\tobj = this._get_node(obj);\n\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\tif(obj.data(\"jstree-is-loading\")) { return; }\n\t\t\t\t\telse { obj.data(\"jstree-is-loading\",true); }\n\t\t\t\t}\n\t\t\t\tswitch(!0) {\n\t\t\t\t\tcase (!s.data && !s.ajax):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t\t.children(\"ul\").empty()\n\t\t\t\t\t\t\t\t.append(this.data.html_data.original_container_html)\n\t\t\t\t\t\t\t\t.find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end()\n\t\t\t\t\t\t\t\t.filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\");\n\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):\n\t\t\t\t\t\tif(!obj || obj == -1) {\n\t\t\t\t\t\t\td = $(s.data);\n\t\t\t\t\t\t\tif(!d.is(\"ul\")) { d = $(\"<ul>\").append(d); }\n\t\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t\t.children(\"ul\").empty().append(d.children())\n\t\t\t\t\t\t\t\t.find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end()\n\t\t\t\t\t\t\t\t.filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\");\n\t\t\t\t\t\t\tthis.clean_node();\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):\n\t\t\t\t\t\tobj = this._get_node(obj);\n\t\t\t\t\t\terror_func = function (x, t, e) {\n\t\t\t\t\t\t\tvar ef = this.get_settings().html_data.ajax.error; \n\t\t\t\t\t\t\tif(ef) { ef.call(this, x, t, e); }\n\t\t\t\t\t\t\tif(obj != -1 && obj.length) {\n\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { obj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(t === \"success\" && s.correct_state) { this.get_container().children(\"ul\").empty(); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(e_call) { e_call.call(this); }\n\t\t\t\t\t\t};\n\t\t\t\t\t\tsuccess_func = function (d, t, x) {\n\t\t\t\t\t\t\tvar sf = this.get_settings().html_data.ajax.success; \n\t\t\t\t\t\t\tif(sf) { d = sf.call(this,d,t,x) || d; }\n\t\t\t\t\t\t\tif(d == \"\") {\n\t\t\t\t\t\t\t\treturn error_func.call(this, x, t, \"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(d) {\n\t\t\t\t\t\t\t\td = $(d);\n\t\t\t\t\t\t\t\tif(!d.is(\"ul\")) { d = $(\"<ul>\").append(d); }\n\t\t\t\t\t\t\t\tif(obj == -1 || !obj) { this.get_container().children(\"ul\").empty().append(d.children()).find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end().filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\"); }\n\t\t\t\t\t\t\t\telse { obj.children(\".jstree-loading\").removeClass(\"jstree-loading\"); obj.append(d).find(\"li, a\").filter(function () { return this.firstChild.tagName !== \"INS\"; }).prepend(\"<ins class='jstree-icon'>&#160;</ins>\").end().filter(\"a\").children(\"ins:first-child\").not(\".jstree-icon\").addClass(\"jstree-icon\"); obj.data(\"jstree-is-loading\",false); }\n\t\t\t\t\t\t\t\tthis.clean_node(obj);\n\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif(obj && obj !== -1) {\n\t\t\t\t\t\t\t\t\tobj.children(\".jstree-loading\").removeClass(\"jstree-loading\");\n\t\t\t\t\t\t\t\t\tobj.data(\"jstree-is-loading\",false);\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tobj.removeClass(\"jstree-open jstree-closed\").addClass(\"jstree-leaf\"); \n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tif(s.correct_state) { \n\t\t\t\t\t\t\t\t\t\tthis.get_container().children(\"ul\").empty();\n\t\t\t\t\t\t\t\t\t\tif(s_call) { s_call.call(this); } \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t\ts.ajax.context = this;\n\t\t\t\t\t\ts.ajax.error = error_func;\n\t\t\t\t\t\ts.ajax.success = success_func;\n\t\t\t\t\t\tif(!s.ajax.dataType) { s.ajax.dataType = \"html\"; }\n\t\t\t\t\t\tif($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }\n\t\t\t\t\t\tif($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }\n\t\t\t\t\t\t$.ajax(s.ajax);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\t// include the HTML data plugin by default\n\t$.jstree.defaults.plugins.push(\"html_data\");\n})(jQuery);\n//*/\n\n/* \n * jsTree themeroller plugin 1.0\n * Adds support for jQuery UI themes. Include this at the end of your plugins list, also make sure \"themes\" is not included.\n */\n(function ($) {\n\t$.jstree.plugin(\"themeroller\", {\n\t\t__init : function () {\n\t\t\tvar s = this._get_settings().themeroller;\n\t\t\tthis.get_container()\n\t\t\t\t.addClass(\"ui-widget-content\")\n\t\t\t\t.delegate(\"a\",\"mouseenter.jstree\", function () {\n\t\t\t\t\t$(this).addClass(s.item_h);\n\t\t\t\t})\n\t\t\t\t.delegate(\"a\",\"mouseleave.jstree\", function () {\n\t\t\t\t\t$(this).removeClass(s.item_h);\n\t\t\t\t})\n\t\t\t\t.bind(\"open_node.jstree create_node.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tthis._themeroller(data.rslt.obj);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"loaded.jstree refresh.jstree\", $.proxy(function (e) {\n\t\t\t\t\t\tthis._themeroller();\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"close_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tdata.rslt.obj.children(\"ins\").removeClass(s.opened).addClass(s.closed);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"select_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tdata.rslt.obj.children(\"a\").addClass(s.item_a);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"deselect_node.jstree deselect_all.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis.get_container()\n\t\t\t\t\t\t\t.find(\".\" + s.item_a).removeClass(s.item_a).end()\n\t\t\t\t\t\t\t.find(\".jstree-clicked\").addClass(s.item_a);\n\t\t\t\t\t}, this))\n\t\t\t\t.bind(\"move_node.jstree\", $.proxy(function (e, data) {\n\t\t\t\t\t\tthis._themeroller(data.rslt.o);\n\t\t\t\t\t}, this));\n\t\t},\n\t\t__destroy : function () {\n\t\t\tvar s = this._get_settings().themeroller,\n\t\t\t\tc = [ \"ui-icon\" ];\n\t\t\t$.each(s, function (i, v) {\n\t\t\t\tv = v.split(\" \");\n\t\t\t\tif(v.length) { c = c.concat(v); }\n\t\t\t});\n\t\t\tthis.get_container()\n\t\t\t\t.removeClass(\"ui-widget-content\")\n\t\t\t\t.find(\".\" + c.join(\", .\")).removeClass(c.join(\" \"));\n\t\t},\n\t\t_fn : {\n\t\t\t_themeroller : function (obj) {\n\t\t\t\tvar s = this._get_settings().themeroller;\n\t\t\t\tobj = !obj || obj == -1 ? this.get_container() : this._get_node(obj).parent();\n\t\t\t\tobj\n\t\t\t\t\t.find(\"li.jstree-closed > ins.jstree-icon\").removeClass(s.opened).addClass(\"ui-icon \" + s.closed).end()\n\t\t\t\t\t.find(\"li.jstree-open > ins.jstree-icon\").removeClass(s.closed).addClass(\"ui-icon \" + s.opened).end()\n\t\t\t\t\t.find(\"a\").addClass(s.item)\n\t\t\t\t\t\t.children(\"ins.jstree-icon\").addClass(\"ui-icon \" + s.item_icon);\n\t\t\t}\n\t\t},\n\t\tdefaults : {\n\t\t\t\"opened\" : \"ui-icon-triangle-1-se\",\n\t\t\t\"closed\" : \"ui-icon-triangle-1-e\",\n\t\t\t\"item\" : \"ui-state-default\",\n\t\t\t\"item_h\" : \"ui-state-hover\",\n\t\t\t\"item_a\" : \"ui-state-active\",\n\t\t\t\"item_icon\" : \"ui-icon-folder-collapsed\"\n\t\t}\n\t});\n\t$(function() {\n\t\tvar css_string = '.jstree .ui-icon { overflow:visible; } .jstree a { padding:0 2px; }';\n\t\t$.vakata.css.add_sheet({ str : css_string });\n\t});\n})(jQuery);\n//*/\n\n/* \n * jsTree unique plugin 1.0\n * Forces different names amongst siblings (still a bit experimental)\n * NOTE: does not check language versions (it will not be possible to have nodes with the same title, even in different languages)\n */\n(function ($) {\n\t$.jstree.plugin(\"unique\", {\n\t\t__init : function () {\n\t\t\tthis.get_container()\n\t\t\t\t.bind(\"before.jstree\", $.proxy(function (e, data) { \n\t\t\t\t\t\tvar nms = [], res = true, p, t;\n\t\t\t\t\t\tif(data.func == \"move_node\") {\n\t\t\t\t\t\t\t// obj, ref, position, is_copy, is_prepared, skip_check\n\t\t\t\t\t\t\tif(data.args[4] === true) {\n\t\t\t\t\t\t\t\tif(data.args[0].o && data.args[0].o.length) {\n\t\t\t\t\t\t\t\t\tdata.args[0].o.children(\"a\").each(function () { nms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\t\t\t\t\t\tres = this._check_unique(nms, data.args[0].np.find(\"> ul > li\").not(data.args[0].o));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(data.func == \"create_node\") {\n\t\t\t\t\t\t\t// obj, position, js, callback, is_loaded\n\t\t\t\t\t\t\tif(data.args[4] || this._is_loaded(data.args[0])) {\n\t\t\t\t\t\t\t\tp = this._get_node(data.args[0]);\n\t\t\t\t\t\t\t\tif(data.args[1] && (data.args[1] === \"before\" || data.args[1] === \"after\")) {\n\t\t\t\t\t\t\t\t\tp = this._get_parent(data.args[0]);\n\t\t\t\t\t\t\t\t\tif(!p || p === -1) { p = this.get_container(); }\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif(typeof data.args[2] === \"string\") { nms.push(data.args[2]); }\n\t\t\t\t\t\t\t\telse if(!data.args[2] || !data.args[2].data) { nms.push(this._get_settings().core.strings.new_node); }\n\t\t\t\t\t\t\t\telse { nms.push(data.args[2].data); }\n\t\t\t\t\t\t\t\tres = this._check_unique(nms, p.find(\"> ul > li\"));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(data.func == \"rename_node\") {\n\t\t\t\t\t\t\t// obj, val\n\t\t\t\t\t\t\tnms.push(data.args[1]);\n\t\t\t\t\t\t\tt = this._get_node(data.args[0]);\n\t\t\t\t\t\t\tp = this._get_parent(t);\n\t\t\t\t\t\t\tif(!p || p === -1) { p = this.get_container(); }\n\t\t\t\t\t\t\tres = this._check_unique(nms, p.find(\"> ul > li\").not(t));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(!res) {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this));\n\t\t},\n\t\t_fn : { \n\t\t\t_check_unique : function (nms, p) {\n\t\t\t\tvar cnms = [];\n\t\t\t\tp.children(\"a\").each(function () { cnms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\tif(!cnms.length || !nms.length) { return true; }\n\t\t\t\tcnms = cnms.sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\");\n\t\t\t\tif((cnms.length + nms.length) != cnms.concat(nms).sort().join(\",,\").replace(/(,|^)([^,]+)(,,\\2)+(,|$)/g,\"$1$2$4\").replace(/,,+/g,\",\").replace(/,$/,\"\").split(\",\").length) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\tcheck_move : function () {\n\t\t\t\tif(!this.__call_old()) { return false; }\n\t\t\t\tvar p = this._get_move(), nms = [];\n\t\t\t\tif(p.o && p.o.length) {\n\t\t\t\t\tp.o.children(\"a\").each(function () { nms.push($(this).text().replace(/^\\s+/g,\"\")); });\n\t\t\t\t\treturn this._check_unique(nms, p.np.find(\"> ul > li\").not(p.o));\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n//*/"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/jquery.sammy.js",
    "content": "// name: sammy\n// version: 0.6.2\n/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n(function($, window) {\n\n  var Sammy,\n      PATH_REPLACER = \"([^\\/]+)\",\n      PATH_NAME_MATCHER = /:([\\w\\d]+)/g,\n      QUERY_STRING_MATCHER = /\\?([^#]*)$/,\n      // mainly for making `arguments` an Array\n      _makeArray = function(nonarray) { return Array.prototype.slice.call(nonarray); },\n      // borrowed from jQuery\n      _isFunction = function( obj ) { return Object.prototype.toString.call(obj) === \"[object Function]\"; },\n      _isArray = function( obj ) { return Object.prototype.toString.call(obj) === \"[object Array]\"; },\n      _decode = decodeURIComponent,\n      _encode = encodeURIComponent,\n      _escapeHTML = function(s) {\n        return String(s).replace(/&(?!\\w+;)/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\"/g, '&quot;');\n      },\n      _routeWrapper = function(verb) {\n        return function(path, callback) { return this.route.apply(this, [verb, path, callback]); };\n      },\n      _template_cache = {},\n      loggers = [];\n\n\n  // `Sammy` (also aliased as $.sammy) is not only the namespace for a\n  // number of prototypes, its also a top level method that allows for easy\n  // creation/management of `Sammy.Application` instances. There are a\n  // number of different forms for `Sammy()` but each returns an instance\n  // of `Sammy.Application`. When a new instance is created using\n  // `Sammy` it is added to an Object called `Sammy.apps`. This\n  // provides for an easy way to get at existing Sammy applications. Only one\n  // instance is allowed per `element_selector` so when calling\n  // `Sammy('selector')` multiple times, the first time will create\n  // the application and the following times will extend the application\n  // already added to that selector.\n  //\n  // ### Example\n  //\n  //      // returns the app at #main or a new app\n  //      Sammy('#main')\n  //\n  //      // equivilent to \"new Sammy.Application\", except appends to apps\n  //      Sammy();\n  //      Sammy(function() { ... });\n  //\n  //      // extends the app at '#main' with function.\n  //      Sammy('#main', function() { ... });\n  //\n  Sammy = function() {\n    var args = _makeArray(arguments),\n        app, selector;\n    Sammy.apps = Sammy.apps || {};\n    if (args.length === 0 || args[0] && _isFunction(args[0])) { // Sammy()\n      return Sammy.apply(Sammy, ['body'].concat(args));\n    } else if (typeof (selector = args.shift()) == 'string') { // Sammy('#main')\n      app = Sammy.apps[selector] || new Sammy.Application();\n      app.element_selector = selector;\n      if (args.length > 0) {\n        $.each(args, function(i, plugin) {\n          app.use(plugin);\n        });\n      }\n      // if the selector changes make sure the refrence in Sammy.apps changes\n      if (app.element_selector != selector) {\n        delete Sammy.apps[selector];\n      }\n      Sammy.apps[app.element_selector] = app;\n      return app;\n    }\n  };\n\n  Sammy.VERSION = '0.6.2';\n\n  // Add to the global logger pool. Takes a function that accepts an\n  // unknown number of arguments and should print them or send them somewhere\n  // The first argument is always a timestamp.\n  Sammy.addLogger = function(logger) {\n    loggers.push(logger);\n  };\n\n  // Sends a log message to each logger listed in the global\n  // loggers pool. Can take any number of arguments.\n  // Also prefixes the arguments with a timestamp.\n  Sammy.log = function()  {\n    var args = _makeArray(arguments);\n    args.unshift(\"[\" + Date() + \"]\");\n    $.each(loggers, function(i, logger) {\n      logger.apply(Sammy, args);\n    });\n  };\n\n  if (typeof window.console != 'undefined') {\n    if (_isFunction(window.console.log.apply)) {\n      Sammy.addLogger(function() {\n        window.console.log.apply(window.console, arguments);\n      });\n    } else {\n      Sammy.addLogger(function() {\n        window.console.log(arguments);\n      });\n    }\n  } else if (typeof console != 'undefined') {\n    Sammy.addLogger(function() {\n      console.log.apply(console, arguments);\n    });\n  }\n\n  $.extend(Sammy, {\n    makeArray: _makeArray,\n    isFunction: _isFunction,\n    isArray: _isArray\n  })\n\n  // Sammy.Object is the base for all other Sammy classes. It provides some useful\n  // functionality, including cloning, iterating, etc.\n  Sammy.Object = function(obj) { // constructor\n    return $.extend(this, obj || {});\n  };\n\n  $.extend(Sammy.Object.prototype, {\n\n    // Escape HTML in string, use in templates to prevent script injection.\n    // Also aliased as `h()`\n    escapeHTML: _escapeHTML,\n    h: _escapeHTML,\n\n    // Returns a copy of the object with Functions removed.\n    toHash: function() {\n      var json = {};\n      $.each(this, function(k,v) {\n        if (!_isFunction(v)) {\n          json[k] = v;\n        }\n      });\n      return json;\n    },\n\n    // Renders a simple HTML version of this Objects attributes.\n    // Does not render functions.\n    // For example. Given this Sammy.Object:\n    //\n    //    var s = new Sammy.Object({first_name: 'Sammy', last_name: 'Davis Jr.'});\n    //    s.toHTML() //=> '<strong>first_name</strong> Sammy<br /><strong>last_name</strong> Davis Jr.<br />'\n    //\n    toHTML: function() {\n      var display = \"\";\n      $.each(this, function(k, v) {\n        if (!_isFunction(v)) {\n          display += \"<strong>\" + k + \"</strong> \" + v + \"<br />\";\n        }\n      });\n      return display;\n    },\n\n    // Returns an array of keys for this object. If `attributes_only`\n    // is true will not return keys that map to a `function()`\n    keys: function(attributes_only) {\n      var keys = [];\n      for (var property in this) {\n        if (!_isFunction(this[property]) || !attributes_only) {\n          keys.push(property);\n        }\n      }\n      return keys;\n    },\n\n    // Checks if the object has a value at `key` and that the value is not empty\n    has: function(key) {\n      return this[key] && $.trim(this[key].toString()) != '';\n    },\n\n    // convenience method to join as many arguments as you want\n    // by the first argument - useful for making paths\n    join: function() {\n      var args = _makeArray(arguments);\n      var delimiter = args.shift();\n      return args.join(delimiter);\n    },\n\n    // Shortcut to Sammy.log\n    log: function() {\n      Sammy.log.apply(Sammy, arguments);\n    },\n\n    // Returns a string representation of this object.\n    // if `include_functions` is true, it will also toString() the\n    // methods of this object. By default only prints the attributes.\n    toString: function(include_functions) {\n      var s = [];\n      $.each(this, function(k, v) {\n        if (!_isFunction(v) || include_functions) {\n          s.push('\"' + k + '\": ' + v.toString());\n        }\n      });\n      return \"Sammy.Object: {\" + s.join(',') + \"}\";\n    }\n  });\n\n  // The HashLocationProxy is the default location proxy for all Sammy applications.\n  // A location proxy is a prototype that conforms to a simple interface. The purpose\n  // of a location proxy is to notify the Sammy.Application its bound to when the location\n  // or 'external state' changes. The HashLocationProxy considers the state to be\n  // changed when the 'hash' (window.location.hash / '#') changes. It does this in two\n  // different ways depending on what browser you are using. The newest browsers\n  // (IE, Safari > 4, FF >= 3.6) support a 'onhashchange' DOM event, thats fired whenever\n  // the location.hash changes. In this situation the HashLocationProxy just binds\n  // to this event and delegates it to the application. In the case of older browsers\n  // a poller is set up to track changes to the hash. Unlike Sammy 0.3 or earlier,\n  // the HashLocationProxy allows the poller to be a global object, eliminating the\n  // need for multiple pollers even when thier are multiple apps on the page.\n  Sammy.HashLocationProxy = function(app, run_interval_every) {\n    this.app = app;\n    // set is native to false and start the poller immediately\n    this.is_native = false;\n    this._startPolling(run_interval_every);\n  };\n\n  Sammy.HashLocationProxy.prototype = {\n\n    // bind the proxy events to the current app.\n    bind: function() {\n      var proxy = this, app = this.app;\n      $(window).bind('hashchange.' + this.app.eventNamespace(), function(e, non_native) {\n        // if we receive a native hash change event, set the proxy accordingly\n        // and stop polling\n        if (proxy.is_native === false && !non_native) {\n          Sammy.log('native hash change exists, using');\n          proxy.is_native = true;\n          window.clearInterval(Sammy.HashLocationProxy._interval);\n        }\n        app.trigger('location-changed');\n      });\n      if (!Sammy.HashLocationProxy._bindings) {\n        Sammy.HashLocationProxy._bindings = 0;\n      }\n      Sammy.HashLocationProxy._bindings++;\n    },\n\n    // unbind the proxy events from the current app\n    unbind: function() {\n      $(window).unbind('hashchange.' + this.app.eventNamespace());\n      Sammy.HashLocationProxy._bindings--;\n      if (Sammy.HashLocationProxy._bindings <= 0) {\n        window.clearInterval(Sammy.HashLocationProxy._interval);\n      }\n    },\n\n    // get the current location from the hash.\n    getLocation: function() {\n     // Bypass the `window.location.hash` attribute.  If a question mark\n      // appears in the hash IE6 will strip it and all of the following\n      // characters from `window.location.hash`.\n      var matches = window.location.toString().match(/^[^#]*(#.+)$/);\n      return matches ? matches[1] : '';\n    },\n\n    // set the current location to `new_location`\n    setLocation: function(new_location) {\n      return (window.location = new_location);\n    },\n\n    _startPolling: function(every) {\n      // set up interval\n      var proxy = this;\n      if (!Sammy.HashLocationProxy._interval) {\n        if (!every) { every = 10; }\n        var hashCheck = function() {\n          var current_location = proxy.getLocation();\n          if (!Sammy.HashLocationProxy._last_location ||\n            current_location != Sammy.HashLocationProxy._last_location) {\n            window.setTimeout(function() {\n              $(window).trigger('hashchange', [true]);\n            }, 13);\n          }\n          Sammy.HashLocationProxy._last_location = current_location;\n        };\n        hashCheck();\n        Sammy.HashLocationProxy._interval = window.setInterval(hashCheck, every);\n      }\n    }\n  };\n\n\n  // Sammy.Application is the Base prototype for defining 'applications'.\n  // An 'application' is a collection of 'routes' and bound events that is\n  // attached to an element when `run()` is called.\n  // The only argument an 'app_function' is evaluated within the context of the application.\n  Sammy.Application = function(app_function) {\n    var app = this;\n    this.routes            = {};\n    this.listeners         = new Sammy.Object({});\n    this.arounds           = [];\n    this.befores           = [];\n    // generate a unique namespace\n    this.namespace         = (new Date()).getTime() + '-' + parseInt(Math.random() * 1000, 10);\n    this.context_prototype = function() { Sammy.EventContext.apply(this, arguments); };\n    this.context_prototype.prototype = new Sammy.EventContext();\n\n    if (_isFunction(app_function)) {\n      app_function.apply(this, [this]);\n    }\n    // set the location proxy if not defined to the default (HashLocationProxy)\n    if (!this._location_proxy) {\n      this.setLocationProxy(new Sammy.HashLocationProxy(this, this.run_interval_every));\n    }\n    if (this.debug) {\n      this.bindToAllEvents(function(e, data) {\n        app.log(app.toString(), e.cleaned_type, data || {});\n      });\n    }\n  };\n\n  Sammy.Application.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // the four route verbs\n    ROUTE_VERBS: ['get','post','put','delete'],\n\n    // An array of the default events triggered by the\n    // application during its lifecycle\n    APP_EVENTS: ['run',\n                 'unload',\n                 'lookup-route',\n                 'run-route',\n                 'route-found',\n                 'event-context-before',\n                 'event-context-after',\n                 'changed',\n                 'error',\n                 'check-form-submission',\n                 'redirect',\n                 'location-changed'],\n\n    _last_route: null,\n    _location_proxy: null,\n    _running: false,\n\n    // Defines what element the application is bound to. Provide a selector\n    // (parseable by `jQuery()`) and this will be used by `$element()`\n    element_selector: 'body',\n\n    // When set to true, logs all of the default events using `log()`\n    debug: false,\n\n    // When set to true, and the error() handler is not overriden, will actually\n    // raise JS errors in routes (500) and when routes can't be found (404)\n    raise_errors: false,\n\n    // The time in milliseconds that the URL is queried for changes\n    run_interval_every: 50,\n\n    // The default template engine to use when using `partial()` in an\n    // `EventContext`. `template_engine` can either be a string that\n    // corresponds to the name of a method/helper on EventContext or it can be a function\n    // that takes two arguments, the content of the unrendered partial and an optional\n    // JS object that contains interpolation data. Template engine is only called/refered\n    // to if the extension of the partial is null or unknown. See `partial()`\n    // for more information\n    template_engine: null,\n\n    // //=> Sammy.Application: body\n    toString: function() {\n      return 'Sammy.Application:' + this.element_selector;\n    },\n\n    // returns a jQuery object of the Applications bound element.\n    $element: function(selector) {\n      return selector ? $(this.element_selector).find(selector) : $(this.element_selector);\n    },\n\n    // `use()` is the entry point for including Sammy plugins.\n    // The first argument to use should be a function() that is evaluated\n    // in the context of the current application, just like the `app_function`\n    // argument to the `Sammy.Application` constructor.\n    //\n    // Any additional arguments are passed to the app function sequentially.\n    //\n    // For much more detail about plugins, check out:\n    // http://code.quirkey.com/sammy/doc/plugins.html\n    //\n    // ### Example\n    //\n    //      var MyPlugin = function(app, prepend) {\n    //\n    //        this.helpers({\n    //          myhelper: function(text) {\n    //            alert(prepend + \" \" + text);\n    //          }\n    //        });\n    //\n    //      };\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        this.use(MyPlugin, 'This is my plugin');\n    //\n    //        this.get('#/', function() {\n    //          this.myhelper('and dont you forget it!');\n    //          //=> Alerts: This is my plugin and dont you forget it!\n    //        });\n    //\n    //      });\n    //\n    // If plugin is passed as a string it assumes your are trying to load\n    // Sammy.\"Plugin\". This is the prefered way of loading core Sammy plugins\n    // as it allows for better error-messaging.\n    //\n    // ### Example\n    //\n    //      $.sammy(function() {\n    //        this.use('Mustache'); //=> Sammy.Mustache\n    //        this.use('Storage'); //=> Sammy.Storage\n    //      });\n    //\n    use: function() {\n      // flatten the arguments\n      var args = _makeArray(arguments),\n          plugin = args.shift(),\n          plugin_name = plugin || '';\n      try {\n        args.unshift(this);\n        if (typeof plugin == 'string') {\n          plugin_name = 'Sammy.' + plugin;\n          plugin = Sammy[plugin];\n        }\n        plugin.apply(this, args);\n      } catch(e) {\n        if (typeof plugin === 'undefined') {\n          this.error(\"Plugin Error: called use() but plugin (\" + plugin_name.toString() + \") is not defined\", e);\n        } else if (!_isFunction(plugin)) {\n          this.error(\"Plugin Error: called use() but '\" + plugin_name.toString() + \"' is not a function\", e);\n        } else {\n          this.error(\"Plugin Error\", e);\n        }\n      }\n      return this;\n    },\n\n    // Sets the location proxy for the current app. By default this is set to\n    // a new `Sammy.HashLocationProxy` on initialization. However, you can set\n    // the location_proxy inside you're app function to give your app a custom\n    // location mechanism. See `Sammy.HashLocationProxy` and `Sammy.DataLocationProxy`\n    // for examples.\n    //\n    // `setLocationProxy()` takes an initialized location proxy.\n    //\n    // ### Example\n    //\n    //        // to bind to data instead of the default hash;\n    //        var app = $.sammy(function() {\n    //          this.setLocationProxy(new Sammy.DataLocationProxy(this));\n    //        });\n    //\n    setLocationProxy: function(new_proxy) {\n      var original_proxy = this._location_proxy;\n      this._location_proxy = new_proxy;\n      if (this.isRunning()) {\n        if (original_proxy) {\n          // if there is already a location proxy, unbind it.\n          original_proxy.unbind();\n        }\n        this._location_proxy.bind();\n      }\n    },\n\n    // `route()` is the main method for defining routes within an application.\n    // For great detail on routes, check out: http://code.quirkey.com/sammy/doc/routes.html\n    //\n    // This method also has aliases for each of the different verbs (eg. `get()`, `post()`, etc.)\n    //\n    // ### Arguments\n    //\n    // * `verb` A String in the set of ROUTE_VERBS or 'any'. 'any' will add routes for each\n    //    of the ROUTE_VERBS. If only two arguments are passed,\n    //    the first argument is the path, the second is the callback and the verb\n    //    is assumed to be 'any'.\n    // * `path` A Regexp or a String representing the path to match to invoke this verb.\n    // * `callback` A Function that is called/evaluated whent the route is run see: `runRoute()`.\n    //    It is also possible to pass a string as the callback, which is looked up as the name\n    //    of a method on the application.\n    //\n    route: function(verb, path, callback) {\n      var app = this, param_names = [], add_route, path_match;\n\n      // if the method signature is just (path, callback)\n      // assume the verb is 'any'\n      if (!callback && _isFunction(path)) {\n        path = verb;\n        callback = path;\n        verb = 'any';\n      }\n\n      verb = verb.toLowerCase(); // ensure verb is lower case\n\n      // if path is a string turn it into a regex\n      if (path.constructor == String) {\n\n        // Needs to be explicitly set because IE will maintain the index unless NULL is returned,\n        // which means that with two consecutive routes that contain params, the second set of params will not be found and end up in splat instead of params\n        // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/RegExp/lastIndex\n        PATH_NAME_MATCHER.lastIndex = 0;\n\n        // find the names\n        while ((path_match = PATH_NAME_MATCHER.exec(path)) !== null) {\n          param_names.push(path_match[1]);\n        }\n        // replace with the path replacement\n        path = new RegExp(\"^\" + path.replace(PATH_NAME_MATCHER, PATH_REPLACER) + \"$\");\n      }\n      // lookup callback\n      if (typeof callback == 'string') {\n        callback = app[callback];\n      }\n\n      add_route = function(with_verb) {\n        var r = {verb: with_verb, path: path, callback: callback, param_names: param_names};\n        // add route to routes array\n        app.routes[with_verb] = app.routes[with_verb] || [];\n        // place routes in order of definition\n        app.routes[with_verb].push(r);\n      };\n\n      if (verb === 'any') {\n        $.each(this.ROUTE_VERBS, function(i, v) { add_route(v); });\n      } else {\n        add_route(verb);\n      }\n\n      // return the app\n      return this;\n    },\n\n    // Alias for route('get', ...)\n    get: _routeWrapper('get'),\n\n    // Alias for route('post', ...)\n    post: _routeWrapper('post'),\n\n    // Alias for route('put', ...)\n    put: _routeWrapper('put'),\n\n    // Alias for route('delete', ...)\n    del: _routeWrapper('delete'),\n\n    // Alias for route('any', ...)\n    any: _routeWrapper('any'),\n\n    // `mapRoutes` takes an array of arrays, each array being passed to route()\n    // as arguments, this allows for mass definition of routes. Another benefit is\n    // this makes it possible/easier to load routes via remote JSON.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      this.mapRoutes([\n    //          ['get', '#/', function() { this.log('index'); }],\n    //          // strings in callbacks are looked up as methods on the app\n    //          ['post', '#/create', 'addUser'],\n    //          // No verb assumes 'any' as the verb\n    //          [/dowhatever/, function() { this.log(this.verb, this.path)}];\n    //        ]);\n    //    })\n    //\n    mapRoutes: function(route_array) {\n      var app = this;\n      $.each(route_array, function(i, route_args) {\n        app.route.apply(app, route_args);\n      });\n      return this;\n    },\n\n    // A unique event namespace defined per application.\n    // All events bound with `bind()` are automatically bound within this space.\n    eventNamespace: function() {\n      return ['sammy-app', this.namespace].join('-');\n    },\n\n    // Works just like `jQuery.fn.bind()` with a couple noteable differences.\n    //\n    // * It binds all events to the application element\n    // * All events are bound within the `eventNamespace()`\n    // * Events are not actually bound until the application is started with `run()`\n    // * callbacks are evaluated within the context of a Sammy.EventContext\n    //\n    // See http://code.quirkey.com/sammy/docs/events.html for more info.\n    //\n    bind: function(name, data, callback) {\n      var app = this;\n      // build the callback\n      // if the arity is 2, callback is the second argument\n      if (typeof callback == 'undefined') { callback = data; }\n      var listener_callback =  function() {\n        // pull off the context from the arguments to the callback\n        var e, context, data;\n        e       = arguments[0];\n        data    = arguments[1];\n        if (data && data.context) {\n          context = data.context;\n          delete data.context;\n        } else {\n          context = new app.context_prototype(app, 'bind', e.type, data, e.target);\n        }\n        e.cleaned_type = e.type.replace(app.eventNamespace(), '');\n        callback.apply(context, [e, data]);\n      };\n\n      // it could be that the app element doesnt exist yet\n      // so attach to the listeners array and then run()\n      // will actually bind the event.\n      if (!this.listeners[name]) { this.listeners[name] = []; }\n      this.listeners[name].push(listener_callback);\n      if (this.isRunning()) {\n        // if the app is running\n        // *actually* bind the event to the app element\n        this._listen(name, listener_callback);\n      }\n      return this;\n    },\n\n    // Triggers custom events defined with `bind()`\n    //\n    // ### Arguments\n    //\n    // * `name` The name of the event. Automatically prefixed with the `eventNamespace()`\n    // * `data` An optional Object that can be passed to the bound callback.\n    // * `context` An optional context/Object in which to execute the bound callback.\n    //   If no context is supplied a the context is a new `Sammy.EventContext`\n    //\n    trigger: function(name, data) {\n      this.$element().trigger([name, this.eventNamespace()].join('.'), [data]);\n      return this;\n    },\n\n    // Reruns the current route\n    refresh: function() {\n      this.last_location = null;\n      this.trigger('location-changed');\n      return this;\n    },\n\n    // Takes a single callback that is pushed on to a stack.\n    // Before any route is run, the callbacks are evaluated in order within\n    // the current `Sammy.EventContext`\n    //\n    // If any of the callbacks explicitly return false, execution of any\n    // further callbacks and the route itself is halted.\n    //\n    // You can also provide a set of options that will define when to run this\n    // before based on the route it proceeds.\n    //\n    // ### Example\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        // will run at #/route but not at #/\n    //        this.before('#/route', function() {\n    //          //...\n    //        });\n    //\n    //        // will run at #/ but not at #/route\n    //        this.before({except: {path: '#/route'}}, function() {\n    //          this.log('not before #/route');\n    //        });\n    //\n    //        this.get('#/', function() {});\n    //\n    //        this.get('#/route', function() {});\n    //\n    //      });\n    //\n    // See `contextMatchesOptions()` for a full list of supported options\n    //\n    before: function(options, callback) {\n      if (_isFunction(options)) {\n        callback = options;\n        options = {};\n      }\n      this.befores.push([options, callback]);\n      return this;\n    },\n\n    // A shortcut for binding a callback to be run after a route is executed.\n    // After callbacks have no guarunteed order.\n    after: function(callback) {\n      return this.bind('event-context-after', callback);\n    },\n\n\n    // Adds an around filter to the application. around filters are functions\n    // that take a single argument `callback` which is the entire route\n    // execution path wrapped up in a closure. This means you can decide whether\n    // or not to proceed with execution by not invoking `callback` or,\n    // more usefuly wrapping callback inside the result of an asynchronous execution.\n    //\n    // ### Example\n    //\n    // The most common use case for around() is calling a _possibly_ async function\n    // and executing the route within the functions callback:\n    //\n    //      var app = $.sammy(function() {\n    //\n    //        var current_user = false;\n    //\n    //        function checkLoggedIn(callback) {\n    //          // /session returns a JSON representation of the logged in user\n    //          // or an empty object\n    //          if (!current_user) {\n    //            $.getJSON('/session', function(json) {\n    //              if (json.login) {\n    //                // show the user as logged in\n    //                current_user = json;\n    //                // execute the route path\n    //                callback();\n    //              } else {\n    //                // show the user as not logged in\n    //                current_user = false;\n    //                // the context of aroundFilters is an EventContext\n    //                this.redirect('#/login');\n    //              }\n    //            });\n    //          } else {\n    //            // execute the route path\n    //            callback();\n    //          }\n    //        };\n    //\n    //        this.around(checkLoggedIn);\n    //\n    //      });\n    //\n    around: function(callback) {\n      this.arounds.push(callback);\n      return this;\n    },\n\n    // Returns `true` if the current application is running.\n    isRunning: function() {\n      return this._running;\n    },\n\n    // Helpers extends the EventContext prototype specific to this app.\n    // This allows you to define app specific helper functions that can be used\n    // whenever you're inside of an event context (templates, routes, bind).\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      helpers({\n    //        upcase: function(text) {\n    //         return text.toString().toUpperCase();\n    //        }\n    //      });\n    //\n    //      get('#/', function() { with(this) {\n    //        // inside of this context I can use the helpers\n    //        $('#main').html(upcase($('#main').text());\n    //      }});\n    //\n    //    });\n    //\n    //\n    // ### Arguments\n    //\n    // * `extensions` An object collection of functions to extend the context.\n    //\n    helpers: function(extensions) {\n      $.extend(this.context_prototype.prototype, extensions);\n      return this;\n    },\n\n    // Helper extends the event context just like `helpers()` but does it\n    // a single method at a time. This is especially useful for dynamically named\n    // helpers\n    //\n    // ### Example\n    //\n    //     // Trivial example that adds 3 helper methods to the context dynamically\n    //     var app = $.sammy(function(app) {\n    //\n    //       $.each([1,2,3], function(i, num) {\n    //         app.helper('helper' + num, function() {\n    //           this.log(\"I'm helper number \" + num);\n    //         });\n    //       });\n    //\n    //       this.get('#/', function() {\n    //         this.helper2(); //=> I'm helper number 2\n    //       });\n    //     });\n    //\n    // ### Arguments\n    //\n    // * `name` The name of the method\n    // * `method` The function to be added to the prototype at `name`\n    //\n    helper: function(name, method) {\n      this.context_prototype.prototype[name] = method;\n      return this;\n    },\n\n    // Actually starts the application's lifecycle. `run()` should be invoked\n    // within a document.ready block to ensure the DOM exists before binding events, etc.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() { ... }); // your application\n    //    $(function() { // document.ready\n    //        app.run();\n    //     });\n    //\n    // ### Arguments\n    //\n    // * `start_url` Optionally, a String can be passed which the App will redirect to\n    //   after the events/routes have been bound.\n    run: function(start_url) {\n      if (this.isRunning()) { return false; }\n      var app = this;\n\n      // actually bind all the listeners\n      $.each(this.listeners.toHash(), function(name, callbacks) {\n        $.each(callbacks, function(i, listener_callback) {\n          app._listen(name, listener_callback);\n        });\n      });\n\n      this.trigger('run', {start_url: start_url});\n      this._running = true;\n      // set last location\n      this.last_location = null;\n      if (this.getLocation() == '' && typeof start_url != 'undefined') {\n        this.setLocation(start_url);\n      }\n      // check url\n      this._checkLocation();\n      this._location_proxy.bind();\n      this.bind('location-changed', function() {\n        app._checkLocation();\n      });\n\n      // bind to submit to capture post/put/delete routes\n      /*\n      this.bind('submit', function(e) {\n        var returned = app._checkFormSubmission($(e.target).closest('form'));\n        return (returned === false) ? e.preventDefault() : false;\n      });\n      */\n\n      // bind unload to body unload\n      $(window).bind('beforeunload', function() {\n        app.unload();\n      });\n\n      // trigger html changed\n      return this.trigger('changed');\n    },\n\n    // The opposite of `run()`, un-binds all event listeners and intervals\n    // `run()` Automaticaly binds a `onunload` event to run this when\n    // the document is closed.\n    unload: function() {\n      if (!this.isRunning()) { return false; }\n      var app = this;\n      this.trigger('unload');\n      // clear interval\n      this._location_proxy.unbind();\n      // unbind form submits\n      this.$element().unbind('submit').removeClass(app.eventNamespace());\n      // unbind all events\n      $.each(this.listeners.toHash() , function(name, listeners) {\n        $.each(listeners, function(i, listener_callback) {\n          app._unlisten(name, listener_callback);\n        });\n      });\n      this._running = false;\n      return this;\n    },\n\n    // Will bind a single callback function to every event that is already\n    // being listened to in the app. This includes all the `APP_EVENTS`\n    // as well as any custom events defined with `bind()`.\n    //\n    // Used internally for debug logging.\n    bindToAllEvents: function(callback) {\n      var app = this;\n      // bind to the APP_EVENTS first\n      $.each(this.APP_EVENTS, function(i, e) {\n        app.bind(e, callback);\n      });\n      // next, bind to listener names (only if they dont exist in APP_EVENTS)\n      $.each(this.listeners.keys(true), function(i, name) {\n        if (app.APP_EVENTS.indexOf(name) == -1) {\n          app.bind(name, callback);\n        }\n      });\n      return this;\n    },\n\n    // Returns a copy of the given path with any query string after the hash\n    // removed.\n    routablePath: function(path) {\n      return path.replace(QUERY_STRING_MATCHER, '');\n    },\n\n    // Given a verb and a String path, will return either a route object or false\n    // if a matching route can be found within the current defined set.\n    lookupRoute: function(verb, path) {\n      var app = this, routed = false;\n      this.trigger('lookup-route', {verb: verb, path: path});\n      if (typeof this.routes[verb] != 'undefined') {\n        $.each(this.routes[verb], function(i, route) {\n          if (app.routablePath(path).match(route.path)) {\n            routed = route;\n            return false;\n          }\n        });\n      }\n      return routed;\n    },\n\n    // First, invokes `lookupRoute()` and if a route is found, parses the\n    // possible URL params and then invokes the route's callback within a new\n    // `Sammy.EventContext`. If the route can not be found, it calls\n    // `notFound()`. If `raise_errors` is set to `true` and\n    // the `error()` has not been overriden, it will throw an actual JS\n    // error.\n    //\n    // You probably will never have to call this directly.\n    //\n    // ### Arguments\n    //\n    // * `verb` A String for the verb.\n    // * `path` A String path to lookup.\n    // * `params` An Object of Params pulled from the URI or passed directly.\n    //\n    // ### Returns\n    //\n    // Either returns the value returned by the route callback or raises a 404 Not Found error.\n    //\n    runRoute: function(verb, path, params, target) {\n      var app = this,\n          route = this.lookupRoute(verb, path),\n          context,\n          wrapped_route,\n          arounds,\n          around,\n          befores,\n          before,\n          callback_args,\n          path_params,\n          final_returned;\n\n      this.log('runRoute', [verb, path].join(' '));\n      this.trigger('run-route', {verb: verb, path: path, params: params});\n      if (typeof params == 'undefined') { params = {}; }\n\n      $.extend(params, this._parseQueryString(path));\n\n      if (route) {\n        this.trigger('route-found', {route: route});\n        // pull out the params from the path\n        if ((path_params = route.path.exec(this.routablePath(path))) !== null) {\n          // first match is the full path\n          path_params.shift();\n          // for each of the matches\n          $.each(path_params, function(i, param) {\n            // if theres a matching param name\n            if (route.param_names[i]) {\n              // set the name to the match\n              params[route.param_names[i]] = _decode(param);\n            } else {\n              // initialize 'splat'\n              if (!params.splat) { params.splat = []; }\n              params.splat.push(_decode(param));\n            }\n          });\n        }\n\n        // set event context\n        context  = new this.context_prototype(this, verb, path, params, target);\n        // ensure arrays\n        arounds = this.arounds.slice(0);\n        befores = this.befores.slice(0);\n        // set the callback args to the context + contents of the splat\n        callback_args = [context].concat(params.splat);\n        // wrap the route up with the before filters\n        wrapped_route = function() {\n          var returned;\n          while (befores.length > 0) {\n            before = befores.shift();\n            // check the options\n            if (app.contextMatchesOptions(context, before[0])) {\n              returned = before[1].apply(context, [context]);\n              if (returned === false) { return false; }\n            }\n          }\n          app.last_route = route;\n          context.trigger('event-context-before', {context: context});\n          returned = route.callback.apply(context, callback_args);\n          context.trigger('event-context-after', {context: context});\n          return returned;\n        };\n        $.each(arounds.reverse(), function(i, around) {\n          var last_wrapped_route = wrapped_route;\n          wrapped_route = function() { return around.apply(context, [last_wrapped_route]); };\n        });\n        try {\n          final_returned = wrapped_route();\n        } catch(e) {\n          this.error(['500 Error', verb, path].join(' '), e);\n        }\n        return final_returned;\n      } else {\n        return this.notFound(verb, path);\n      }\n    },\n\n    // Matches an object of options against an `EventContext` like object that\n    // contains `path` and `verb` attributes. Internally Sammy uses this\n    // for matching `before()` filters against specific options. You can set the\n    // object to _only_ match certain paths or verbs, or match all paths or verbs _except_\n    // those that match the options.\n    //\n    // ### Example\n    //\n    //     var app = $.sammy(),\n    //         context = {verb: 'get', path: '#/mypath'};\n    //\n    //     // match against a path string\n    //     app.contextMatchesOptions(context, '#/mypath'); //=> true\n    //     app.contextMatchesOptions(context, '#/otherpath'); //=> false\n    //     // equivilent to\n    //     app.contextMatchesOptions(context, {only: {path:'#/mypath'}}); //=> true\n    //     app.contextMatchesOptions(context, {only: {path:'#/otherpath'}}); //=> false\n    //     // match against a path regexp\n    //     app.contextMatchesOptions(context, /path/); //=> true\n    //     app.contextMatchesOptions(context, /^path/); //=> false\n    //     // match only a verb\n    //     app.contextMatchesOptions(context, {only: {verb:'get'}}); //=> true\n    //     app.contextMatchesOptions(context, {only: {verb:'post'}}); //=> false\n    //     // match all except a verb\n    //     app.contextMatchesOptions(context, {except: {verb:'post'}}); //=> true\n    //     app.contextMatchesOptions(context, {except: {verb:'get'}}); //=> false\n    //     // match all except a path\n    //     app.contextMatchesOptions(context, {except: {path:'#/otherpath'}}); //=> true\n    //     app.contextMatchesOptions(context, {except: {path:'#/mypath'}}); //=> false\n    //\n    contextMatchesOptions: function(context, match_options, positive) {\n      // empty options always match\n      var options = match_options;\n      if (typeof options === 'undefined' || options == {}) {\n        return true;\n      }\n      if (typeof positive === 'undefined') {\n        positive = true;\n      }\n      // normalize options\n      if (typeof options === 'string' || _isFunction(options.test)) {\n        options = {path: options};\n      }\n      if (options.only) {\n        return this.contextMatchesOptions(context, options.only, true);\n      } else if (options.except) {\n        return this.contextMatchesOptions(context, options.except, false);\n      }\n      var path_matched = true, verb_matched = true;\n      if (options.path) {\n        // wierd regexp test\n        if (_isFunction(options.path.test)) {\n          path_matched = options.path.test(context.path);\n        } else {\n          path_matched = (options.path.toString() === context.path);\n        }\n      }\n      if (options.verb) {\n        verb_matched = options.verb === context.verb;\n      }\n      return positive ? (verb_matched && path_matched) : !(verb_matched && path_matched);\n    },\n\n\n    // Delegates to the `location_proxy` to get the current location.\n    // See `Sammy.HashLocationProxy` for more info on location proxies.\n    getLocation: function() {\n      return this._location_proxy.getLocation();\n    },\n\n    // Delegates to the `location_proxy` to set the current location.\n    // See `Sammy.HashLocationProxy` for more info on location proxies.\n    //\n    // ### Arguments\n    //\n    // * `new_location` A new location string (e.g. '#/')\n    //\n    setLocation: function(new_location) {\n      return this._location_proxy.setLocation(new_location);\n    },\n\n    // Swaps the content of `$element()` with `content`\n    // You can override this method to provide an alternate swap behavior\n    // for `EventContext.partial()`.\n    //\n    // ### Example\n    //\n    //    var app = $.sammy(function() {\n    //\n    //      // implements a 'fade out'/'fade in'\n    //      this.swap = function(content) {\n    //        this.$element().hide('slow').html(content).show('slow');\n    //      }\n    //\n    //      get('#/', function() {\n    //        this.partial('index.html.erb') // will fade out and in\n    //      });\n    //\n    //    });\n    //\n    swap: function(content) {\n      return this.$element().html(content);\n    },\n\n    // a simple global cache for templates. Uses the same semantics as\n    // `Sammy.Cache` and `Sammy.Storage` so can easily be replaced with\n    // a persistant storage that lasts beyond the current request.\n    templateCache: function(key, value) {\n      if (typeof value != 'undefined') {\n        return _template_cache[key] = value;\n      } else {\n        return _template_cache[key];\n      }\n    },\n\n    // clear the templateCache\n    clearTemplateCache: function() {\n      return _template_cache = {};\n    },\n\n    // This thows a '404 Not Found' error by invoking `error()`.\n    // Override this method or `error()` to provide custom\n    // 404 behavior (i.e redirecting to / or showing a warning)\n    notFound: function(verb, path) {\n      var ret = this.error(['404 Not Found', verb, path].join(' '));\n      return (verb === 'get') ? ret : true;\n    },\n\n    // The base error handler takes a string `message` and an `Error`\n    // object. If `raise_errors` is set to `true` on the app level,\n    // this will re-throw the error to the browser. Otherwise it will send the error\n    // to `log()`. Override this method to provide custom error handling\n    // e.g logging to a server side component or displaying some feedback to the\n    // user.\n    error: function(message, original_error) {\n      if (!original_error) { original_error = new Error(); }\n      original_error.message = [message, original_error.message].join(' ');\n      this.trigger('error', {message: original_error.message, error: original_error});\n      if (this.raise_errors) {\n        throw(original_error);\n      } else {\n        this.log(original_error.message, original_error);\n      }\n    },\n\n    _checkLocation: function() {\n      var location, returned;\n      // get current location\n      location = this.getLocation();\n      // compare to see if hash has changed\n      if (!this.last_location || this.last_location[0] != 'get' || this.last_location[1] != location) {\n        // reset last location\n        this.last_location = ['get', location];\n        // lookup route for current hash\n        returned = this.runRoute('get', location);\n      }\n      return returned;\n    },\n\n    _getFormVerb: function(form) {\n      var $form = $(form), verb, $_method;\n      $_method = $form.find('input[name=\"_method\"]');\n      if ($_method.length > 0) { verb = $_method.val(); }\n      if (!verb) { verb = $form[0].getAttribute('method'); }\n      return $.trim(verb.toString().toLowerCase());\n    },\n\n    _checkFormSubmission: function(form) {\n      var $form, path, verb, params, returned;\n      this.trigger('check-form-submission', {form: form});\n      $form = $(form);\n      path  = $form.attr('action');\n      verb  = this._getFormVerb($form);\n      if (!verb || verb == '') { verb = 'get'; }\n      this.log('_checkFormSubmission', $form, path, verb);\n      if (verb === 'get') {\n        this.setLocation(path + '?' + this._serializeFormParams($form));\n        returned = false;\n      } else {\n        params = $.extend({}, this._parseFormParams($form));\n        returned = this.runRoute(verb, path, params, form.get(0));\n      };\n      return (typeof returned == 'undefined') ? false : returned;\n    },\n\n    _serializeFormParams: function($form) {\n       var queryString = \"\",\n         fields = $form.serializeArray(),\n         i;\n       if (fields.length > 0) {\n         queryString = this._encodeFormPair(fields[0].name, fields[0].value);\n         for (i = 1; i < fields.length; i++) {\n           queryString = queryString + \"&\" + this._encodeFormPair(fields[i].name, fields[i].value);\n         }\n       }\n       return queryString;\n    },\n\n    _encodeFormPair: function(name, value){\n      return _encode(name) + \"=\" + _encode(value);\n    },\n\n    _parseFormParams: function($form) {\n      var params = {},\n          form_fields = $form.serializeArray(),\n          i;\n      for (i = 0; i < form_fields.length; i++) {\n        params = this._parseParamPair(params, form_fields[i].name, form_fields[i].value);\n      }\n      return params;\n    },\n\n    _parseQueryString: function(path) {\n      var params = {}, parts, pairs, pair, i;\n\n      parts = path.match(QUERY_STRING_MATCHER);\n      if (parts) {\n        pairs = parts[1].split('&');\n        for (i = 0; i < pairs.length; i++) {\n          pair = pairs[i].split('=');\n          params = this._parseParamPair(params, _decode(pair[0]), _decode(pair[1]));\n        }\n      }\n      return params;\n    },\n\n    _parseParamPair: function(params, key, value) {\n      if (params[key]) {\n        if (_isArray(params[key])) {\n          params[key].push(value);\n        } else {\n          params[key] = [params[key], value];\n        }\n      } else {\n        params[key] = value;\n      }\n      return params;\n    },\n\n    _listen: function(name, callback) {\n      return this.$element().bind([name, this.eventNamespace()].join('.'), callback);\n    },\n\n    _unlisten: function(name, callback) {\n      return this.$element().unbind([name, this.eventNamespace()].join('.'), callback);\n    }\n\n  });\n\n  // `Sammy.RenderContext` is an object that makes sequential template loading,\n  // rendering and interpolation seamless even when dealing with asyncronous\n  // operations.\n  //\n  // `RenderContext` objects are not usually created directly, rather they are\n  // instatiated from an `Sammy.EventContext` by using `render()`, `load()` or\n  // `partial()` which all return `RenderContext` objects.\n  //\n  // `RenderContext` methods always returns a modified `RenderContext`\n  // for chaining (like jQuery itself).\n  //\n  // The core magic is in the `then()` method which puts the callback passed as\n  // an argument into a queue to be executed once the previous callback is complete.\n  // All the methods of `RenderContext` are wrapped in `then()` which allows you\n  // to queue up methods by chaining, but maintaing a guarunteed execution order\n  // even with remote calls to fetch templates.\n  //\n  Sammy.RenderContext = function(event_context) {\n    this.event_context    = event_context;\n    this.callbacks        = [];\n    this.previous_content = null;\n    this.content          = null;\n    this.next_engine      = false;\n    this.waiting          = false;\n  };\n\n  Sammy.RenderContext.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // The \"core\" of the `RenderContext` object, adds the `callback` to the\n    // queue. If the context is `waiting` (meaning an async operation is happening)\n    // then the callback will be executed in order, once the other operations are\n    // complete. If there is no currently executing operation, the `callback`\n    // is executed immediately.\n    //\n    // The value returned from the callback is stored in `content` for the\n    // subsiquent operation. If you return `false`, the queue will pause, and\n    // the next callback in the queue will not be executed until `next()` is\n    // called. This allows for the guarunteed order of execution while working\n    // with async operations.\n    //\n    // If then() is passed a string instead of a function, the string is looked\n    // up as a helper method on the event context.\n    //\n    // ### Example\n    //\n    //      this.get('#/', function() {\n    //        // initialize the RenderContext\n    //        // Even though `load()` executes async, the next `then()`\n    //        // wont execute until the load finishes\n    //        this.load('myfile.txt')\n    //            .then(function(content) {\n    //              // the first argument to then is the content of the\n    //              // prev operation\n    //              $('#main').html(content);\n    //            });\n    //      });\n    //\n    then: function(callback) {\n      if (!_isFunction(callback)) {\n        // if a string is passed to then, assume we want to call\n        // a helper on the event context in its context\n        if (typeof callback === 'string' && callback in this.event_context) {\n          var helper = this.event_context[callback];\n          callback = function(content) {\n            return helper.apply(this.event_context, [content]);\n          };\n        } else {\n          return this;\n        }\n      }\n      var context = this;\n      if (this.waiting) {\n        this.callbacks.push(callback);\n      } else {\n        this.wait();\n        window.setTimeout(function() {\n          var returned = callback.apply(context, [context.content, context.previous_content]);\n          if (returned !== false) {\n            context.next(returned);\n          }\n        }, 13);\n      }\n      return this;\n    },\n\n    // Pause the `RenderContext` queue. Combined with `next()` allows for async\n    // operations.\n    //\n    // ### Example\n    //\n    //        this.get('#/', function() {\n    //          this.load('mytext.json')\n    //              .then(function(content) {\n    //                var context = this,\n    //                    data    = JSON.parse(content);\n    //                // pause execution\n    //                context.wait();\n    //                // post to a url\n    //                $.post(data.url, {}, function(response) {\n    //                  context.next(JSON.parse(response));\n    //                });\n    //              })\n    //              .then(function(data) {\n    //                // data is json from the previous post\n    //                $('#message').text(data.status);\n    //              });\n    //        });\n    wait: function() {\n      this.waiting = true;\n    },\n\n    // Resume the queue, setting `content` to be used in the next operation.\n    // See `wait()` for an example.\n    next: function(content) {\n      this.waiting = false;\n      if (typeof content !== 'undefined') {\n        this.previous_content = this.content;\n        this.content = content;\n      }\n      if (this.callbacks.length > 0) {\n        this.then(this.callbacks.shift());\n      }\n    },\n\n    // Load a template into the context.\n    // The `location` can either be a string specifiying the remote path to the\n    // file, a jQuery object, or a DOM element.\n    //\n    // No interpolation happens by default, the content is stored in\n    // `content`.\n    //\n    // In the case of a path, unless the option `{cache: false}` is passed the\n    // data is stored in the app's `templateCache()`.\n    //\n    // If a jQuery or DOM object is passed the `innerHTML` of the node is pulled in.\n    // This is useful for nesting templates as part of the initial page load wrapped\n    // in invisible elements or `<script>` tags. With template paths, the template\n    // engine is looked up by the extension. For DOM/jQuery embedded templates,\n    // this isnt possible, so there are a couple of options:\n    //\n    //  * pass an `{engine:}` option.\n    //  * define the engine in the `data-engine` attribute of the passed node.\n    //  * just store the raw template data and use `interpolate()` manually\n    //\n    // If a `callback` is passed it is executed after the template load.\n    load: function(location, options, callback) {\n      var context = this;\n      return this.then(function() {\n        var should_cache, cached, is_json, location_array;\n        if (_isFunction(options)) {\n          callback = options;\n          options = {};\n        } else {\n          options = $.extend({}, options);\n        }\n        if (callback) { this.then(callback); }\n        if (typeof location === 'string') {\n          // its a path\n          is_json      = (location.match(/\\.json$/) || options.json);\n          should_cache = ((is_json && options.cache === true) || options.cache !== false);\n          context.next_engine = context.event_context.engineFor(location);\n          delete options.cache;\n          delete options.json;\n          if (options.engine) {\n            context.next_engine = options.engine;\n            delete options.engine;\n          }\n          if (should_cache && (cached = this.event_context.app.templateCache(location))) {\n            return cached;\n          }\n          this.wait();\n          $.ajax($.extend({\n            url: location,\n            data: {},\n            dataType: is_json ? 'json' : null,\n            type: 'get',\n            success: function(data) {\n              if (should_cache) {\n                context.event_context.app.templateCache(location, data);\n              }\n              context.next(data);\n            }\n          }, options));\n          return false;\n        } else {\n          // its a dom/jQuery\n          if (location.nodeType) {\n            return location.innerHTML;\n          }\n          if (location.selector) {\n            // its a jQuery\n            context.next_engine = location.attr('data-engine');\n            if (options.clone === false) {\n              return location.remove()[0].innerHTML.toString();\n            } else {\n              return location[0].innerHTML.toString();\n            }\n          }\n        }\n      });\n    },\n\n    // `load()` a template and then `interpolate()` it with data.\n    //\n    // ### Example\n    //\n    //      this.get('#/', function() {\n    //        this.render('mytemplate.template', {name: 'test'});\n    //      });\n    //\n    render: function(location, data, callback) {\n      if (_isFunction(location) && !data) {\n        return this.then(location);\n      } else {\n        if (!data && this.content) { data = this.content; }\n        return this.load(location)\n                   .interpolate(data, location)\n                   .then(callback);\n      }\n    },\n\n    // `render()` the the `location` with `data` and then `swap()` the\n    // app's `$element` with the rendered content.\n    partial: function(location, data) {\n      return this.render(location, data).swap();\n    },\n\n    // defers the call of function to occur in order of the render queue.\n    // The function can accept any number of arguments as long as the last\n    // argument is a callback function. This is useful for putting arbitrary\n    // asynchronous functions into the queue. The content passed to the\n    // callback is passed as `content` to the next item in the queue.\n    //\n    // === Example\n    //\n    //        this.send($.getJSON, '/app.json')\n    //            .then(function(json) {\n    //              $('#message).text(json['message']);\n    //            });\n    //\n    //\n    send: function() {\n      var context = this,\n          args = _makeArray(arguments),\n          fun  = args.shift();\n\n      if (_isArray(args[0])) { args = args[0]; }\n\n      return this.then(function(content) {\n        args.push(function(response) { context.next(response); });\n        context.wait();\n        fun.apply(fun, args);\n        return false;\n      });\n    },\n\n    // itterates over an array, applying the callback for each item item. the\n    // callback takes the same style of arguments as `jQuery.each()` (index, item).\n    // The return value of each callback is collected as a single string and stored\n    // as `content` to be used in the next iteration of the `RenderContext`.\n    collect: function(array, callback, now) {\n      var context = this;\n      var coll = function() {\n        if (_isFunction(array)) {\n          callback = array;\n          array = this.content;\n        }\n        var contents = [], doms = false;\n        $.each(array, function(i, item) {\n          var returned = callback.apply(context, [i, item]);\n          if (returned.jquery && returned.length == 1) {\n            returned = returned[0];\n            doms = true;\n          }\n          contents.push(returned);\n          return returned;\n        });\n        return doms ? contents : contents.join('');\n      };\n      return now ? coll() : this.then(coll);\n    },\n\n    // loads a template, and then interpolates it for each item in the `data`\n    // array. If a callback is passed, it will call the callback with each\n    // item in the array _after_ interpolation\n    renderEach: function(location, name, data, callback) {\n      if (_isArray(name)) {\n        callback = data;\n        data = name;\n        name = null;\n      }\n      return this.load(location).then(function(content) {\n          var rctx = this;\n          if (!data) {\n            data = _isArray(this.previous_content) ? this.previous_content : [];\n          }\n          if (callback) {\n            $.each(data, function(i, value) {\n              var idata = {}, engine = this.next_engine || location;\n              name ? (idata[name] = value) : (idata = value);\n              callback(value, rctx.event_context.interpolate(content, idata, engine));\n            });\n          } else {\n            return this.collect(data, function(i, value) {\n              var idata = {}, engine = this.next_engine || location;\n              name ? (idata[name] = value) : (idata = value);\n              return this.event_context.interpolate(content, idata, engine);\n            }, true);\n          }\n      });\n    },\n\n    // uses the previous loaded `content` and the `data` object to interpolate\n    // a template. `engine` defines the templating/interpolation method/engine\n    // that should be used. If `engine` is not passed, the `next_engine` is\n    // used. If `retain` is `true`, the final interpolated data is appended to\n    // the `previous_content` instead of just replacing it.\n    interpolate: function(data, engine, retain) {\n      var context = this;\n      return this.then(function(content, prev) {\n        if (!data && prev) { data = prev; }\n        if (this.next_engine) {\n          engine = this.next_engine;\n          this.next_engine = false;\n        }\n        var rendered = context.event_context.interpolate(content, data, engine);\n        return retain ? prev + rendered : rendered;\n      });\n    },\n\n    // executes `EventContext#swap()` with the `content`\n    swap: function() {\n      return this.then(function(content) {\n        this.event_context.swap(content);\n      }).trigger('changed', {});\n    },\n\n    // Same usage as `jQuery.fn.appendTo()` but uses `then()` to ensure order\n    appendTo: function(selector) {\n      return this.then(function(content) {\n        $(selector).append(content);\n      }).trigger('changed', {});\n    },\n\n    // Same usage as `jQuery.fn.prependTo()` but uses `then()` to ensure order\n    prependTo: function(selector) {\n      return this.then(function(content) {\n        $(selector).prepend(content);\n      }).trigger('changed', {});\n    },\n\n    // Replaces the `$(selector)` using `html()` with the previously loaded\n    // `content`\n    replace: function(selector) {\n      return this.then(function(content) {\n        $(selector).html(content);\n      }).trigger('changed', {});\n    },\n\n    // trigger the event in the order of the event context. Same semantics\n    // as `Sammy.EventContext#trigger()`. If data is ommitted, `content`\n    // is sent as `{content: content}`\n    trigger: function(name, data) {\n      return this.then(function(content) {\n        if (typeof data == 'undefined') { data = {content: content}; }\n        this.event_context.trigger(name, data);\n      });\n    }\n\n  });\n\n  // `Sammy.EventContext` objects are created every time a route is run or a\n  // bound event is triggered. The callbacks for these events are evaluated within a `Sammy.EventContext`\n  // This within these callbacks the special methods of `EventContext` are available.\n  //\n  // ### Example\n  //\n  //  $.sammy(function() {\n  //    // The context here is this Sammy.Application\n  //    this.get('#/:name', function() {\n  //      // The context here is a new Sammy.EventContext\n  //      if (this.params['name'] == 'sammy') {\n  //        this.partial('name.html.erb', {name: 'Sammy'});\n  //      } else {\n  //        this.redirect('#/somewhere-else')\n  //      }\n  //    });\n  //  });\n  //\n  // Initialize a new EventContext\n  //\n  // ### Arguments\n  //\n  // * `app` The `Sammy.Application` this event is called within.\n  // * `verb` The verb invoked to run this context/route.\n  // * `path` The string path invoked to run this context/route.\n  // * `params` An Object of optional params to pass to the context. Is converted\n  //   to a `Sammy.Object`.\n  // * `target` a DOM element that the event that holds this context originates\n  //   from. For post, put and del routes, this is the form element that triggered\n  //   the route.\n  //\n  Sammy.EventContext = function(app, verb, path, params, target) {\n    this.app    = app;\n    this.verb   = verb;\n    this.path   = path;\n    this.params = new Sammy.Object(params);\n    this.target = target;\n  };\n\n  Sammy.EventContext.prototype = $.extend({}, Sammy.Object.prototype, {\n\n    // A shortcut to the app's `$element()`\n    $element: function() {\n      return this.app.$element(_makeArray(arguments).shift());\n    },\n\n    // Look up a templating engine within the current app and context.\n    // `engine` can be one of the following:\n    //\n    // * a function: should conform to `function(content, data) { return interploated; }`\n    // * a template path: 'template.ejs', looks up the extension to match to\n    //   the `ejs()` helper\n    // * a string referering to the helper: \"mustache\" => `mustache()`\n    //\n    // If no engine is found, use the app's default `template_engine`\n    //\n    engineFor: function(engine) {\n      var context = this, engine_match;\n      // if path is actually an engine function just return it\n      if (_isFunction(engine)) { return engine; }\n      // lookup engine name by path extension\n      engine = (engine || context.app.template_engine).toString();\n      if ((engine_match = engine.match(/\\.([^\\.]+)$/))) {\n        engine = engine_match[1];\n      }\n      // set the engine to the default template engine if no match is found\n      if (engine && _isFunction(context[engine])) {\n        return context[engine];\n      }\n\n      if (context.app.template_engine) {\n        return this.engineFor(context.app.template_engine);\n      }\n      return function(content, data) { return content; };\n    },\n\n    // using the template `engine` found with `engineFor()`, interpolate the\n    // `data` into `content`\n    interpolate: function(content, data, engine) {\n      return this.engineFor(engine).apply(this, [content, data]);\n    },\n\n    // Create and return a `Sammy.RenderContext` calling `render()` on it.\n    // Loads the template and interpolate the data, however does not actual\n    // place it in the DOM.\n    //\n    // ### Example\n    //\n    //      // mytemplate.mustache <div class=\"name\">{{name}}</div>\n    //      render('mytemplate.mustache', {name: 'quirkey'});\n    //      // sets the `content` to <div class=\"name\">quirkey</div>\n    //      render('mytemplate.mustache', {name: 'quirkey'})\n    //        .appendTo('ul');\n    //      // appends the rendered content to $('ul')\n    //\n    render: function(location, data, callback) {\n      return new Sammy.RenderContext(this).render(location, data, callback);\n    },\n\n    // Create and return a `Sammy.RenderContext` calling `renderEach()` on it.\n    // Loads the template and interpolates the data for each item,\n    // however does not actual place it in the DOM.\n    //\n    // ### Example\n    //\n    //      // mytemplate.mustache <div class=\"name\">{{name}}</div>\n    //      renderEach('mytemplate.mustache', [{name: 'quirkey'}, {name: 'endor'}])\n    //      // sets the `content` to <div class=\"name\">quirkey</div><div class=\"name\">endor</div>\n    //      renderEach('mytemplate.mustache', [{name: 'quirkey'}, {name: 'endor'}]).appendTo('ul');\n    //      // appends the rendered content to $('ul')\n    //\n    renderEach: function(location, name, data, callback) {\n      return new Sammy.RenderContext(this).renderEach(location, name, data, callback);\n    },\n\n    // create a new `Sammy.RenderContext` calling `load()` with `location` and\n    // `options`. Called without interpolation or placement, this allows for\n    // preloading/caching the templates.\n    load: function(location, options, callback) {\n      return new Sammy.RenderContext(this).load(location, options, callback);\n    },\n\n    // `render()` the the `location` with `data` and then `swap()` the\n    // app's `$element` with the rendered content.\n    partial: function(location, data) {\n      return new Sammy.RenderContext(this).partial(location, data);\n    },\n\n    // create a new `Sammy.RenderContext` calling `send()` with an arbitrary\n    // function\n    send: function() {\n      var rctx = new Sammy.RenderContext(this);\n      return rctx.send.apply(rctx, arguments);\n    },\n\n    // Changes the location of the current window. If `to` begins with\n    // '#' it only changes the document's hash. If passed more than 1 argument\n    // redirect will join them together with forward slashes.\n    //\n    // ### Example\n    //\n    //      redirect('#/other/route');\n    //      // equivilent to\n    //      redirect('#', 'other', 'route');\n    //\n    redirect: function() {\n      var to, args = _makeArray(arguments),\n          current_location = this.app.getLocation();\n      if (args.length > 1) {\n        args.unshift('/');\n        to = this.join.apply(this, args);\n      } else {\n        to = args[0];\n      }\n      this.trigger('redirect', {to: to});\n      this.app.last_location = [this.verb, this.path];\n      this.app.setLocation(to);\n      if (current_location == to) {\n        this.app.trigger('location-changed');\n      }\n    },\n\n    // Triggers events on `app` within the current context.\n    trigger: function(name, data) {\n      if (typeof data == 'undefined') { data = {}; }\n      if (!data.context) { data.context = this; }\n      return this.app.trigger(name, data);\n    },\n\n    // A shortcut to app's `eventNamespace()`\n    eventNamespace: function() {\n      return this.app.eventNamespace();\n    },\n\n    // A shortcut to app's `swap()`\n    swap: function(contents) {\n      return this.app.swap(contents);\n    },\n\n    // Raises a possible `notFound()` error for the current path.\n    notFound: function() {\n      return this.app.notFound(this.verb, this.path);\n    },\n\n    // Default JSON parsing uses jQuery's `parseJSON()`. Include `Sammy.JSON`\n    // plugin for the more conformant \"crockford special\".\n    json: function(string) {\n      return $.parseJSON(string);\n    },\n\n    // //=> Sammy.EventContext: get #/ {}\n    toString: function() {\n      return \"Sammy.EventContext: \" + [this.verb, this.path, this.params].join(' ');\n    }\n\n  });\n\n  // An alias to Sammy\n  $.sammy = window.Sammy = Sammy;\n\n})(jQuery, window);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/jquery.timeago.js",
    "content": "/*\n * timeago: a jQuery plugin, version: 0.9.3 (2011-01-21)\n * @requires jQuery v1.2.3 or later\n *\n * Timeago is a jQuery plugin that makes it easy to support automatically\n * updating fuzzy timestamps (e.g. \"4 minutes ago\" or \"about 1 day ago\").\n *\n * For usage and examples, visit:\n * http://timeago.yarp.com/\n *\n * Licensed under the MIT:\n * http://www.opensource.org/licenses/mit-license.php\n *\n * Copyright (c) 2008-2011, Ryan McGeary (ryanonjavascript -[at]- mcgeary [*dot*] org)\n */\n\n(function($) {\n  $.timeago = function(timestamp) {\n    if (timestamp instanceof Date) {\n      return inWords(timestamp);\n    } else if (typeof timestamp === \"string\") {\n      return inWords($.timeago.parse(timestamp));\n    } else {\n      return inWords($.timeago.datetime(timestamp));\n    }\n  };\n  var $t = $.timeago;\n\n  $.extend($.timeago, {\n    settings: {\n      refreshMillis: 60000,\n      allowFuture: false,\n      strings: {\n        prefixAgo: null,\n        prefixFromNow: null,\n        suffixAgo: \"ago\",\n        suffixFromNow: \"from now\",\n        seconds: \"less than a minute\",\n        minute: \"about a minute\",\n        minutes: \"%d minutes\",\n        hour: \"about an hour\",\n        hours: \"about %d hours\",\n        day: \"a day\",\n        days: \"%d days\",\n        month: \"about a month\",\n        months: \"%d months\",\n        year: \"about a year\",\n        years: \"%d years\",\n        numbers: []\n      }\n    },\n    inWords: function(distanceMillis) {\n      var $l = this.settings.strings;\n      var prefix = $l.prefixAgo;\n      var suffix = $l.suffixAgo;\n      if (this.settings.allowFuture) {\n        if (distanceMillis < 0) {\n          prefix = $l.prefixFromNow;\n          suffix = $l.suffixFromNow;\n        }\n        distanceMillis = Math.abs(distanceMillis);\n      }\n\n      var seconds = distanceMillis / 1000;\n      var minutes = seconds / 60;\n      var hours = minutes / 60;\n      var days = hours / 24;\n      var years = days / 365;\n\n      function substitute(stringOrFunction, number) {\n        var string = $.isFunction(stringOrFunction) ? stringOrFunction(number, distanceMillis) : stringOrFunction;\n        var value = ($l.numbers && $l.numbers[number]) || number;\n        return string.replace(/%d/i, value);\n      }\n\n      var words = seconds < 45 && substitute($l.seconds, Math.round(seconds)) ||\n        seconds < 90 && substitute($l.minute, 1) ||\n        minutes < 45 && substitute($l.minutes, Math.round(minutes)) ||\n        minutes < 90 && substitute($l.hour, 1) ||\n        hours < 24 && substitute($l.hours, Math.round(hours)) ||\n        hours < 48 && substitute($l.day, 1) ||\n        days < 30 && substitute($l.days, Math.floor(days)) ||\n        days < 60 && substitute($l.month, 1) ||\n        days < 365 && substitute($l.months, Math.floor(days / 30)) ||\n        years < 2 && substitute($l.year, 1) ||\n        substitute($l.years, Math.floor(years));\n\n      return $.trim([prefix, words, suffix].join(\" \"));\n    },\n    parse: function(iso8601) {\n      var s = $.trim(iso8601);\n      s = s.replace(/\\.\\d\\d\\d+/,\"\"); // remove milliseconds\n      s = s.replace(/-/g,\"/\");\n      s = s.replace(/(\\d)T(\\d)/,\"$1 $2\").replace(/(\\d)Z/,\"$1 UTC\");\n      s = s.replace(/([\\+\\-]\\d\\d)\\:?(\\d\\d)/,\" $1$2\"); // -04:00 -> -0400\n      return new Date(s);\n    },\n    datetime: function(elem) {\n      // jQuery's `is()` doesn't play well with HTML5 in IE\n      var isTime = $(elem).get(0).tagName.toLowerCase() === \"time\"; // $(elem).is(\"time\");\n      \n      var iso8601 = null;\n      \n      if( isTime )\n      {\n        iso8601 = $(elem).attr(\"datetime\");\n      }\n      \n      if( !iso8601 )\n      {\n        iso8601 = $(elem).attr(\"title\");\n      }\n      \n      if( !iso8601 )\n      {\n        iso8601 = $(elem).text();\n      }\n      \n      return $t.parse(iso8601);\n    }\n  });\n\n  $.fn.timeago = function() {\n    var self = this;\n    self.each(refresh);\n\n    var $s = $t.settings;\n    if ($s.refreshMillis > 0) {\n      setInterval(function() { self.each(refresh); }, $s.refreshMillis);\n    }\n    return self;\n  };\n\n  function refresh() {\n    var data = prepareData(this);\n    if (!isNaN(data.datetime)) {\n      $(this).text(inWords(data.datetime));\n    }\n    return this;\n  }\n\n  function prepareData(element) {\n    element = $(element);\n    if (!element.data(\"timeago\")) {\n      element.data(\"timeago\", { datetime: $t.datetime(element) });\n      var text = $.trim(element.text());\n      if (text.length > 0) {\n        element.attr(\"title\", text);\n      }\n    }\n    return element.data(\"timeago\");\n  }\n\n  function inWords(date) {\n    return $t.inWords(distance(date));\n  }\n\n  function distance(date) {\n    return (new Date().getTime() - date.getTime());\n  }\n\n  // fix for IE6 suckage\n  document.createElement(\"abbr\");\n  document.createElement(\"time\");\n}(jQuery));\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/linker.js",
    "content": "//by Michalis Tzikas & Vasilis Lolos\n//07-03-2012\n//v1.0\n/*\nCopyright (C) 2011 by Michalis Tzikas & Vasilis Lolos\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n(function( $ ){\n  $.fn.linker = function(options) {\n    var defaults = {\n      target   : '', //blank,self,parent,top\n      className : '',\n      rel : ''\n    };\n    var options = $.extend(defaults, options);\n        \n    target_string = (options.target != '') ? 'target=\"_'+options.target+'\"' : '';\n    class_string  = (options.className != '') ? 'class=\"'+options.className+'\"' : '';\n    rel_string    = (options.rel != '') ? 'rel=\"'+options.rel+'\"' : '';\n\n    $(this).each(function(){\n      t = $(this).text();\n      \n      t = t.replace(/(https\\:\\/\\/|http:\\/\\/)([www\\.]?)([^\\s|<]+)/gi,'<a href=\"$1$2$3\" '+target_string+' '+class_string+' '+rel_string+'>$1$2$3</a>');\n      t = t.replace(/([^https\\:\\/\\/]|[^http:\\/\\/]|^)(www)\\.([^\\s|<]+)/gi,'$1<a href=\"http://$2.$3\" '+target_string+' '+class_string+' '+rel_string+'>$2.$3</a>');\n      t = t.replace(/<([^a]|^\\/a])([^<>]+)>/g, \"&lt;$1$2&gt;\").replace(/&lt;\\/a&gt;/g, \"</a>\").replace(/<(.)>/g, \"&lt;$1&gt;\").replace(/\\n/g, '<br />');\n\n      $(this).html(t);\n    });\n  };\n})( jQuery );"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/lib/order.js",
    "content": "/**\n * @license RequireJS order 1.0.5 Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved.\n * Available via the MIT or new BSD license.\n * see: http://github.com/jrburke/requirejs for details\n */\n/*jslint nomen: false, plusplus: false, strict: false */\n/*global require: false, define: false, window: false, document: false,\n  setTimeout: false */\n\n//Specify that requirejs optimizer should wrap this code in a closure that\n//maps the namespaced requirejs API to non-namespaced local variables.\n/*requirejs namespace: true */\n\n(function () {\n\n    //Sadly necessary browser inference due to differences in the way\n    //that browsers load and execute dynamically inserted javascript\n    //and whether the script/cache method works when ordered execution is\n    //desired. Currently, Gecko and Opera do not load/fire onload for scripts with\n    //type=\"script/cache\" but they execute injected scripts in order\n    //unless the 'async' flag is present.\n    //However, this is all changing in latest browsers implementing HTML5\n    //spec. With compliant browsers .async true by default, and\n    //if false, then it will execute in order. Favor that test first for forward\n    //compatibility.\n    var testScript = typeof document !== \"undefined\" &&\n                 typeof window !== \"undefined\" &&\n                 document.createElement(\"script\"),\n\n        supportsInOrderExecution = testScript && (testScript.async ||\n                               ((window.opera &&\n                                 Object.prototype.toString.call(window.opera) === \"[object Opera]\") ||\n                               //If Firefox 2 does not have to be supported, then\n                               //a better check may be:\n                               //('mozIsLocallyAvailable' in window.navigator)\n                               (\"MozAppearance\" in document.documentElement.style))),\n\n        //This test is true for IE browsers, which will load scripts but only\n        //execute them once the script is added to the DOM.\n        supportsLoadSeparateFromExecute = testScript &&\n                                          testScript.readyState === 'uninitialized',\n\n        readyRegExp = /^(complete|loaded)$/,\n        cacheWaiting = [],\n        cached = {},\n        scriptNodes = {},\n        scriptWaiting = [];\n\n    //Done with the test script.\n    testScript = null;\n\n    //Callback used by the type=\"script/cache\" callback that indicates a script\n    //has finished downloading.\n    function scriptCacheCallback(evt) {\n        var node = evt.currentTarget || evt.srcElement, i,\n            moduleName, resource;\n\n        if (evt.type === \"load\" || readyRegExp.test(node.readyState)) {\n            //Pull out the name of the module and the context.\n            moduleName = node.getAttribute(\"data-requiremodule\");\n\n            //Mark this cache request as loaded\n            cached[moduleName] = true;\n\n            //Find out how many ordered modules have loaded\n            for (i = 0; (resource = cacheWaiting[i]); i++) {\n                if (cached[resource.name]) {\n                    resource.req([resource.name], resource.onLoad);\n                } else {\n                    //Something in the ordered list is not loaded,\n                    //so wait.\n                    break;\n                }\n            }\n\n            //If just loaded some items, remove them from cacheWaiting.\n            if (i > 0) {\n                cacheWaiting.splice(0, i);\n            }\n\n            //Remove this script tag from the DOM\n            //Use a setTimeout for cleanup because some older IE versions vomit\n            //if removing a script node while it is being evaluated.\n            setTimeout(function () {\n                node.parentNode.removeChild(node);\n            }, 15);\n        }\n    }\n\n    /**\n     * Used for the IE case, where fetching is done by creating script element\n     * but not attaching it to the DOM. This function will be called when that\n     * happens so it can be determined when the node can be attached to the\n     * DOM to trigger its execution.\n     */\n    function onFetchOnly(node) {\n        var i, loadedNode, resourceName;\n\n        //Mark this script as loaded.\n        node.setAttribute('data-orderloaded', 'loaded');\n\n        //Cycle through waiting scripts. If the matching node for them\n        //is loaded, and is in the right order, add it to the DOM\n        //to execute the script.\n        for (i = 0; (resourceName = scriptWaiting[i]); i++) {\n            loadedNode = scriptNodes[resourceName];\n            if (loadedNode &&\n                loadedNode.getAttribute('data-orderloaded') === 'loaded') {\n                delete scriptNodes[resourceName];\n                require.addScriptToDom(loadedNode);\n            } else {\n                break;\n            }\n        }\n\n        //If just loaded some items, remove them from waiting.\n        if (i > 0) {\n            scriptWaiting.splice(0, i);\n        }\n    }\n\n    define({\n        version: '1.0.5',\n\n        load: function (name, req, onLoad, config) {\n            var hasToUrl = !!req.nameToUrl,\n                url, node, context;\n\n            //If no nameToUrl, then probably a build with a loader that\n            //does not support it, and all modules are inlined.\n            if (!hasToUrl) {\n                req([name], onLoad);\n                return;\n            }\n\n            url = req.nameToUrl(name, null);\n\n            //Make sure the async attribute is not set for any pathway involving\n            //this script.\n            require.s.skipAsync[url] = true;\n            if (supportsInOrderExecution || config.isBuild) {\n                //Just a normal script tag append, but without async attribute\n                //on the script.\n                req([name], onLoad);\n            } else if (supportsLoadSeparateFromExecute) {\n                //Just fetch the URL, but do not execute it yet. The\n                //non-standards IE case. Really not so nice because it is\n                //assuming and touching requrejs internals. OK though since\n                //ordered execution should go away after a long while.\n                context = require.s.contexts._;\n\n                if (!context.urlFetched[url] && !context.loaded[name]) {\n                    //Indicate the script is being fetched.\n                    context.urlFetched[url] = true;\n\n                    //Stuff from require.load\n                    require.resourcesReady(false);\n                    context.scriptCount += 1;\n\n                    //Fetch the script now, remember it.\n                    node = require.attach(url, context, name, null, null, onFetchOnly);\n                    scriptNodes[name] = node;\n                    scriptWaiting.push(name);\n                }\n\n                //Do a normal require for it, once it loads, use it as return\n                //value.\n                req([name], onLoad);\n            } else {\n                //Credit to LABjs author Kyle Simpson for finding that scripts\n                //with type=\"script/cache\" allow scripts to be downloaded into\n                //browser cache but not executed. Use that\n                //so that subsequent addition of a real type=\"text/javascript\"\n                //tag will cause the scripts to be executed immediately in the\n                //correct order.\n                if (req.specified(name)) {\n                    req([name], onLoad);\n                } else {\n                    cacheWaiting.push({\n                        name: name,\n                        req: req,\n                        onLoad: onLoad\n                    });\n                    require.attach(url, null, name, scriptCacheCallback, \"script/cache\");\n                }\n            }\n        }\n    });\n}());\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/main.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nrequire\n(\n  [\n    'lib/order!lib/console',\n    'lib/order!jquery',\n    'lib/order!lib/jquery.autogrow',\n    'lib/order!lib/jquery.cookie',\n    'lib/order!lib/jquery.form',\n    'lib/order!lib/jquery.jstree',\n    'lib/order!lib/jquery.sammy',\n    'lib/order!lib/jquery.timeago',\n    'lib/order!lib/jquery.blockUI',\n    'lib/order!lib/highlight',\n    'lib/order!lib/linker',\n    'lib/order!lib/ZeroClipboard',\n    'lib/order!lib/d3',\n    'lib/order!lib/chosen',\n    'lib/order!scripts/app',\n\n    'lib/order!scripts/analysis',\n    'lib/order!scripts/cloud',\n    'lib/order!scripts/cores',\n    'lib/order!scripts/dataimport',\n    'lib/order!scripts/dashboard',\n    'lib/order!scripts/file',\n    'lib/order!scripts/index',\n    'lib/order!scripts/java-properties',\n    'lib/order!scripts/logging',\n    'lib/order!scripts/ping',\n    'lib/order!scripts/plugins',\n    'lib/order!scripts/query',\n    'lib/order!scripts/replication',\n    'lib/order!scripts/schema-browser',\n    'lib/order!scripts/threads'\n  ],\n  function( $ )\n  {\n    app.run();\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/require.js",
    "content": "/** vim: et:ts=4:sw=4:sts=4\n * @license RequireJS 1.0.6 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.\n * Available via the MIT or new BSD license.\n * see: http://github.com/jrburke/requirejs for details\n */\n/*jslint strict: false, plusplus: false, sub: true */\n/*global window, navigator, document, importScripts, jQuery, setTimeout, opera */\n\nvar requirejs, require, define;\n(function () {\n    //Change this version number for each release.\n    var version = \"1.0.6\",\n        commentRegExp = /(\\/\\*([\\s\\S]*?)\\*\\/|([^:]|^)\\/\\/(.*)$)/mg,\n        cjsRequireRegExp = /require\\(\\s*[\"']([^'\"\\s]+)[\"']\\s*\\)/g,\n        currDirRegExp = /^\\.\\//,\n        jsSuffixRegExp = /\\.js$/,\n        ostring = Object.prototype.toString,\n        ap = Array.prototype,\n        aps = ap.slice,\n        apsp = ap.splice,\n        isBrowser = !!(typeof window !== \"undefined\" && navigator && document),\n        isWebWorker = !isBrowser && typeof importScripts !== \"undefined\",\n        //PS3 indicates loaded and complete, but need to wait for complete\n        //specifically. Sequence is \"loading\", \"loaded\", execution,\n        // then \"complete\". The UA check is unfortunate, but not sure how\n        //to feature test w/o causing perf issues.\n        readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ?\n                      /^complete$/ : /^(complete|loaded)$/,\n        defContextName = \"_\",\n        //Oh the tragedy, detecting opera. See the usage of isOpera for reason.\n        isOpera = typeof opera !== \"undefined\" && opera.toString() === \"[object Opera]\",\n        empty = {},\n        contexts = {},\n        globalDefQueue = [],\n        interactiveScript = null,\n        checkLoadedDepth = 0,\n        useInteractive = false,\n        reservedDependencies = {\n            require: true,\n            module: true,\n            exports: true\n        },\n        req, cfg = {}, currentlyAddingScript, s, head, baseElement, scripts, script,\n        src, subPath, mainScript, dataMain, globalI, ctx, jQueryCheck, checkLoadedTimeoutId;\n\n    function isFunction(it) {\n        return ostring.call(it) === \"[object Function]\";\n    }\n\n    function isArray(it) {\n        return ostring.call(it) === \"[object Array]\";\n    }\n\n    /**\n     * Simple function to mix in properties from source into target,\n     * but only if target does not already have a property of the same name.\n     * This is not robust in IE for transferring methods that match\n     * Object.prototype names, but the uses of mixin here seem unlikely to\n     * trigger a problem related to that.\n     */\n    function mixin(target, source, force) {\n        for (var prop in source) {\n            if (!(prop in empty) && (!(prop in target) || force)) {\n                target[prop] = source[prop];\n            }\n        }\n        return req;\n    }\n\n    /**\n     * Constructs an error with a pointer to an URL with more information.\n     * @param {String} id the error ID that maps to an ID on a web page.\n     * @param {String} message human readable error.\n     * @param {Error} [err] the original error, if there is one.\n     *\n     * @returns {Error}\n     */\n    function makeError(id, msg, err) {\n        var e = new Error(msg + '\\nhttp://requirejs.org/docs/errors.html#' + id);\n        if (err) {\n            e.originalError = err;\n        }\n        return e;\n    }\n\n    /**\n     * Used to set up package paths from a packagePaths or packages config object.\n     * @param {Object} pkgs the object to store the new package config\n     * @param {Array} currentPackages an array of packages to configure\n     * @param {String} [dir] a prefix dir to use.\n     */\n    function configurePackageDir(pkgs, currentPackages, dir) {\n        var i, location, pkgObj;\n\n        for (i = 0; (pkgObj = currentPackages[i]); i++) {\n            pkgObj = typeof pkgObj === \"string\" ? { name: pkgObj } : pkgObj;\n            location = pkgObj.location;\n\n            //Add dir to the path, but avoid paths that start with a slash\n            //or have a colon (indicates a protocol)\n            if (dir && (!location || (location.indexOf(\"/\") !== 0 && location.indexOf(\":\") === -1))) {\n                location = dir + \"/\" + (location || pkgObj.name);\n            }\n\n            //Create a brand new object on pkgs, since currentPackages can\n            //be passed in again, and config.pkgs is the internal transformed\n            //state for all package configs.\n            pkgs[pkgObj.name] = {\n                name: pkgObj.name,\n                location: location || pkgObj.name,\n                //Remove leading dot in main, so main paths are normalized,\n                //and remove any trailing .js, since different package\n                //envs have different conventions: some use a module name,\n                //some use a file name.\n                main: (pkgObj.main || \"main\")\n                      .replace(currDirRegExp, '')\n                      .replace(jsSuffixRegExp, '')\n            };\n        }\n    }\n\n    /**\n     * jQuery 1.4.3-1.5.x use a readyWait/ready() pairing to hold DOM\n     * ready callbacks, but jQuery 1.6 supports a holdReady() API instead.\n     * At some point remove the readyWait/ready() support and just stick\n     * with using holdReady.\n     */\n    function jQueryHoldReady($, shouldHold) {\n        if ($.holdReady) {\n            $.holdReady(shouldHold);\n        } else if (shouldHold) {\n            $.readyWait += 1;\n        } else {\n            $.ready(true);\n        }\n    }\n\n    if (typeof define !== \"undefined\") {\n        //If a define is already in play via another AMD loader,\n        //do not overwrite.\n        return;\n    }\n\n    if (typeof requirejs !== \"undefined\") {\n        if (isFunction(requirejs)) {\n            //Do not overwrite and existing requirejs instance.\n            return;\n        } else {\n            cfg = requirejs;\n            requirejs = undefined;\n        }\n    }\n\n    //Allow for a require config object\n    if (typeof require !== \"undefined\" && !isFunction(require)) {\n        //assume it is a config object.\n        cfg = require;\n        require = undefined;\n    }\n\n    /**\n     * Creates a new context for use in require and define calls.\n     * Handle most of the heavy lifting. Do not want to use an object\n     * with prototype here to avoid using \"this\" in require, in case it\n     * needs to be used in more super secure envs that do not want this.\n     * Also there should not be that many contexts in the page. Usually just\n     * one for the default context, but could be extra for multiversion cases\n     * or if a package needs a special context for a dependency that conflicts\n     * with the standard context.\n     */\n    function newContext(contextName) {\n        var context, resume,\n            config = {\n                waitSeconds: 7,\n                baseUrl: \"./\",\n                paths: {},\n                pkgs: {},\n                catchError: {}\n            },\n            defQueue = [],\n            specified = {\n                \"require\": true,\n                \"exports\": true,\n                \"module\": true\n            },\n            urlMap = {},\n            defined = {},\n            loaded = {},\n            waiting = {},\n            waitAry = [],\n            urlFetched = {},\n            managerCounter = 0,\n            managerCallbacks = {},\n            plugins = {},\n            //Used to indicate which modules in a build scenario\n            //need to be full executed.\n            needFullExec = {},\n            fullExec = {},\n            resumeDepth = 0;\n\n        /**\n         * Trims the . and .. from an array of path segments.\n         * It will keep a leading path segment if a .. will become\n         * the first path segment, to help with module name lookups,\n         * which act like paths, but can be remapped. But the end result,\n         * all paths that use this function should look normalized.\n         * NOTE: this method MODIFIES the input array.\n         * @param {Array} ary the array of path segments.\n         */\n        function trimDots(ary) {\n            var i, part;\n            for (i = 0; (part = ary[i]); i++) {\n                if (part === \".\") {\n                    ary.splice(i, 1);\n                    i -= 1;\n                } else if (part === \"..\") {\n                    if (i === 1 && (ary[2] === '..' || ary[0] === '..')) {\n                        //End of the line. Keep at least one non-dot\n                        //path segment at the front so it can be mapped\n                        //correctly to disk. Otherwise, there is likely\n                        //no path mapping for a path starting with '..'.\n                        //This can still fail, but catches the most reasonable\n                        //uses of ..\n                        break;\n                    } else if (i > 0) {\n                        ary.splice(i - 1, 2);\n                        i -= 2;\n                    }\n                }\n            }\n        }\n\n        /**\n         * Given a relative module name, like ./something, normalize it to\n         * a real name that can be mapped to a path.\n         * @param {String} name the relative name\n         * @param {String} baseName a real name that the name arg is relative\n         * to.\n         * @returns {String} normalized name\n         */\n        function normalize(name, baseName) {\n            var pkgName, pkgConfig;\n\n            //Adjust any relative paths.\n            if (name && name.charAt(0) === \".\") {\n                //If have a base name, try to normalize against it,\n                //otherwise, assume it is a top-level require that will\n                //be relative to baseUrl in the end.\n                if (baseName) {\n                    if (config.pkgs[baseName]) {\n                        //If the baseName is a package name, then just treat it as one\n                        //name to concat the name with.\n                        baseName = [baseName];\n                    } else {\n                        //Convert baseName to array, and lop off the last part,\n                        //so that . matches that \"directory\" and not name of the baseName's\n                        //module. For instance, baseName of \"one/two/three\", maps to\n                        //\"one/two/three.js\", but we want the directory, \"one/two\" for\n                        //this normalization.\n                        baseName = baseName.split(\"/\");\n                        baseName = baseName.slice(0, baseName.length - 1);\n                    }\n\n                    name = baseName.concat(name.split(\"/\"));\n                    trimDots(name);\n\n                    //Some use of packages may use a . path to reference the\n                    //\"main\" module name, so normalize for that.\n                    pkgConfig = config.pkgs[(pkgName = name[0])];\n                    name = name.join(\"/\");\n                    if (pkgConfig && name === pkgName + '/' + pkgConfig.main) {\n                        name = pkgName;\n                    }\n                } else if (name.indexOf(\"./\") === 0) {\n                    // No baseName, so this is ID is resolved relative\n                    // to baseUrl, pull off the leading dot.\n                    name = name.substring(2);\n                }\n            }\n            return name;\n        }\n\n        /**\n         * Creates a module mapping that includes plugin prefix, module\n         * name, and path. If parentModuleMap is provided it will\n         * also normalize the name via require.normalize()\n         *\n         * @param {String} name the module name\n         * @param {String} [parentModuleMap] parent module map\n         * for the module name, used to resolve relative names.\n         *\n         * @returns {Object}\n         */\n        function makeModuleMap(name, parentModuleMap) {\n            var index = name ? name.indexOf(\"!\") : -1,\n                prefix = null,\n                parentName = parentModuleMap ? parentModuleMap.name : null,\n                originalName = name,\n                normalizedName, url, pluginModule;\n\n            if (index !== -1) {\n                prefix = name.substring(0, index);\n                name = name.substring(index + 1, name.length);\n            }\n\n            if (prefix) {\n                prefix = normalize(prefix, parentName);\n            }\n\n            //Account for relative paths if there is a base name.\n            if (name) {\n                if (prefix) {\n                    pluginModule = defined[prefix];\n                    if (pluginModule && pluginModule.normalize) {\n                        //Plugin is loaded, use its normalize method.\n                        normalizedName = pluginModule.normalize(name, function (name) {\n                            return normalize(name, parentName);\n                        });\n                    } else {\n                        normalizedName = normalize(name, parentName);\n                    }\n                } else {\n                    //A regular module.\n                    normalizedName = normalize(name, parentName);\n\n                    url = urlMap[normalizedName];\n                    if (!url) {\n                        //Calculate url for the module, if it has a name.\n                        //Use name here since nameToUrl also calls normalize,\n                        //and for relative names that are outside the baseUrl\n                        //this causes havoc. Was thinking of just removing\n                        //parentModuleMap to avoid extra normalization, but\n                        //normalize() still does a dot removal because of\n                        //issue #142, so just pass in name here and redo\n                        //the normalization. Paths outside baseUrl are just\n                        //messy to support.\n                        url = context.nameToUrl(name, null, parentModuleMap);\n\n                        //Store the URL mapping for later.\n                        urlMap[normalizedName] = url;\n                    }\n                }\n            }\n\n            return {\n                prefix: prefix,\n                name: normalizedName,\n                parentMap: parentModuleMap,\n                url: url,\n                originalName: originalName,\n                fullName: prefix ? prefix + \"!\" + (normalizedName || '') : normalizedName\n            };\n        }\n\n        /**\n         * Determine if priority loading is done. If so clear the priorityWait\n         */\n        function isPriorityDone() {\n            var priorityDone = true,\n                priorityWait = config.priorityWait,\n                priorityName, i;\n            if (priorityWait) {\n                for (i = 0; (priorityName = priorityWait[i]); i++) {\n                    if (!loaded[priorityName]) {\n                        priorityDone = false;\n                        break;\n                    }\n                }\n                if (priorityDone) {\n                    delete config.priorityWait;\n                }\n            }\n            return priorityDone;\n        }\n\n        function makeContextModuleFunc(func, relModuleMap, enableBuildCallback) {\n            return function () {\n                //A version of a require function that passes a moduleName\n                //value for items that may need to\n                //look up paths relative to the moduleName\n                var args = aps.call(arguments, 0), lastArg;\n                if (enableBuildCallback &&\n                    isFunction((lastArg = args[args.length - 1]))) {\n                    lastArg.__requireJsBuild = true;\n                }\n                args.push(relModuleMap);\n                return func.apply(null, args);\n            };\n        }\n\n        /**\n         * Helper function that creates a require function object to give to\n         * modules that ask for it as a dependency. It needs to be specific\n         * per module because of the implication of path mappings that may\n         * need to be relative to the module name.\n         */\n        function makeRequire(relModuleMap, enableBuildCallback, altRequire) {\n            var modRequire = makeContextModuleFunc(altRequire || context.require, relModuleMap, enableBuildCallback);\n\n            mixin(modRequire, {\n                nameToUrl: makeContextModuleFunc(context.nameToUrl, relModuleMap),\n                toUrl: makeContextModuleFunc(context.toUrl, relModuleMap),\n                defined: makeContextModuleFunc(context.requireDefined, relModuleMap),\n                specified: makeContextModuleFunc(context.requireSpecified, relModuleMap),\n                isBrowser: req.isBrowser\n            });\n            return modRequire;\n        }\n\n        /*\n         * Queues a dependency for checking after the loader is out of a\n         * \"paused\" state, for example while a script file is being loaded\n         * in the browser, where it may have many modules defined in it.\n         */\n        function queueDependency(manager) {\n            context.paused.push(manager);\n        }\n\n        function execManager(manager) {\n            var i, ret, err, errFile, errModuleTree,\n                cb = manager.callback,\n                map = manager.map,\n                fullName = map.fullName,\n                args = manager.deps,\n                listeners = manager.listeners,\n                cjsModule;\n\n            //Call the callback to define the module, if necessary.\n            if (cb && isFunction(cb)) {\n                if (config.catchError.define) {\n                    try {\n                        ret = req.execCb(fullName, manager.callback, args, defined[fullName]);\n                    } catch (e) {\n                        err = e;\n                    }\n                } else {\n                    ret = req.execCb(fullName, manager.callback, args, defined[fullName]);\n                }\n\n                if (fullName) {\n                    //If setting exports via \"module\" is in play,\n                    //favor that over return value and exports. After that,\n                    //favor a non-undefined return value over exports use.\n                    cjsModule = manager.cjsModule;\n                    if (cjsModule &&\n                        cjsModule.exports !== undefined &&\n                        //Make sure it is not already the exports value\n                        cjsModule.exports !== defined[fullName]) {\n                        ret = defined[fullName] = manager.cjsModule.exports;\n                    } else if (ret === undefined && manager.usingExports) {\n                        //exports already set the defined value.\n                        ret = defined[fullName];\n                    } else {\n                        //Use the return value from the function.\n                        defined[fullName] = ret;\n                        //If this module needed full execution in a build\n                        //environment, mark that now.\n                        if (needFullExec[fullName]) {\n                            fullExec[fullName] = true;\n                        }\n                    }\n                }\n            } else if (fullName) {\n                //May just be an object definition for the module. Only\n                //worry about defining if have a module name.\n                ret = defined[fullName] = cb;\n\n                //If this module needed full execution in a build\n                //environment, mark that now.\n                if (needFullExec[fullName]) {\n                    fullExec[fullName] = true;\n                }\n            }\n\n            //Clean up waiting. Do this before error calls, and before\n            //calling back listeners, so that bookkeeping is correct\n            //in the event of an error and error is reported in correct order,\n            //since the listeners will likely have errors if the\n            //onError function does not throw.\n            if (waiting[manager.id]) {\n                delete waiting[manager.id];\n                manager.isDone = true;\n                context.waitCount -= 1;\n                if (context.waitCount === 0) {\n                    //Clear the wait array used for cycles.\n                    waitAry = [];\n                }\n            }\n\n            //Do not need to track manager callback now that it is defined.\n            delete managerCallbacks[fullName];\n\n            //Allow instrumentation like the optimizer to know the order\n            //of modules executed and their dependencies.\n            if (req.onResourceLoad && !manager.placeholder) {\n                req.onResourceLoad(context, map, manager.depArray);\n            }\n\n            if (err) {\n                errFile = (fullName ? makeModuleMap(fullName).url : '') ||\n                           err.fileName || err.sourceURL;\n                errModuleTree = err.moduleTree;\n                err = makeError('defineerror', 'Error evaluating ' +\n                                'module \"' + fullName + '\" at location \"' +\n                                errFile + '\":\\n' +\n                                err + '\\nfileName:' + errFile +\n                                '\\nlineNumber: ' + (err.lineNumber || err.line), err);\n                err.moduleName = fullName;\n                err.moduleTree = errModuleTree;\n                return req.onError(err);\n            }\n\n            //Let listeners know of this manager's value.\n            for (i = 0; (cb = listeners[i]); i++) {\n                cb(ret);\n            }\n\n            return undefined;\n        }\n\n        /**\n         * Helper that creates a callack function that is called when a dependency\n         * is ready, and sets the i-th dependency for the manager as the\n         * value passed to the callback generated by this function.\n         */\n        function makeArgCallback(manager, i) {\n            return function (value) {\n                //Only do the work if it has not been done\n                //already for a dependency. Cycle breaking\n                //logic in forceExec could mean this function\n                //is called more than once for a given dependency.\n                if (!manager.depDone[i]) {\n                    manager.depDone[i] = true;\n                    manager.deps[i] = value;\n                    manager.depCount -= 1;\n                    if (!manager.depCount) {\n                        //All done, execute!\n                        execManager(manager);\n                    }\n                }\n            };\n        }\n\n        function callPlugin(pluginName, depManager) {\n            var map = depManager.map,\n                fullName = map.fullName,\n                name = map.name,\n                plugin = plugins[pluginName] ||\n                        (plugins[pluginName] = defined[pluginName]),\n                load;\n\n            //No need to continue if the manager is already\n            //in the process of loading.\n            if (depManager.loading) {\n                return;\n            }\n            depManager.loading = true;\n\n            load = function (ret) {\n                depManager.callback = function () {\n                    return ret;\n                };\n                execManager(depManager);\n\n                loaded[depManager.id] = true;\n\n                //The loading of this plugin\n                //might have placed other things\n                //in the paused queue. In particular,\n                //a loader plugin that depends on\n                //a different plugin loaded resource.\n                resume();\n            };\n\n            //Allow plugins to load other code without having to know the\n            //context or how to \"complete\" the load.\n            load.fromText = function (moduleName, text) {\n                /*jslint evil: true */\n                var hasInteractive = useInteractive;\n\n                //Indicate a the module is in process of loading.\n                loaded[moduleName] = false;\n                context.scriptCount += 1;\n\n                //Indicate this is not a \"real\" module, so do not track it\n                //for builds, it does not map to a real file.\n                context.fake[moduleName] = true;\n\n                //Turn off interactive script matching for IE for any define\n                //calls in the text, then turn it back on at the end.\n                if (hasInteractive) {\n                    useInteractive = false;\n                }\n\n                req.exec(text);\n\n                if (hasInteractive) {\n                    useInteractive = true;\n                }\n\n                //Support anonymous modules.\n                context.completeLoad(moduleName);\n            };\n\n            //No need to continue if the plugin value has already been\n            //defined by a build.\n            if (fullName in defined) {\n                load(defined[fullName]);\n            } else {\n                //Use parentName here since the plugin's name is not reliable,\n                //could be some weird string with no path that actually wants to\n                //reference the parentName's path.\n                plugin.load(name, makeRequire(map.parentMap, true, function (deps, cb) {\n                    var moduleDeps = [],\n                        i, dep, depMap;\n                    //Convert deps to full names and hold on to them\n                    //for reference later, when figuring out if they\n                    //are blocked by a circular dependency.\n                    for (i = 0; (dep = deps[i]); i++) {\n                        depMap = makeModuleMap(dep, map.parentMap);\n                        deps[i] = depMap.fullName;\n                        if (!depMap.prefix) {\n                            moduleDeps.push(deps[i]);\n                        }\n                    }\n                    depManager.moduleDeps = (depManager.moduleDeps || []).concat(moduleDeps);\n                    return context.require(deps, cb);\n                }), load, config);\n            }\n        }\n\n        /**\n         * Adds the manager to the waiting queue. Only fully\n         * resolved items should be in the waiting queue.\n         */\n        function addWait(manager) {\n            if (!waiting[manager.id]) {\n                waiting[manager.id] = manager;\n                waitAry.push(manager);\n                context.waitCount += 1;\n            }\n        }\n\n        /**\n         * Function added to every manager object. Created out here\n         * to avoid new function creation for each manager instance.\n         */\n        function managerAdd(cb) {\n            this.listeners.push(cb);\n        }\n\n        function getManager(map, shouldQueue) {\n            var fullName = map.fullName,\n                prefix = map.prefix,\n                plugin = prefix ? plugins[prefix] ||\n                                (plugins[prefix] = defined[prefix]) : null,\n                manager, created, pluginManager, prefixMap;\n\n            if (fullName) {\n                manager = managerCallbacks[fullName];\n            }\n\n            if (!manager) {\n                created = true;\n                manager = {\n                    //ID is just the full name, but if it is a plugin resource\n                    //for a plugin that has not been loaded,\n                    //then add an ID counter to it.\n                    id: (prefix && !plugin ?\n                        (managerCounter++) + '__p@:' : '') +\n                        (fullName || '__r@' + (managerCounter++)),\n                    map: map,\n                    depCount: 0,\n                    depDone: [],\n                    depCallbacks: [],\n                    deps: [],\n                    listeners: [],\n                    add: managerAdd\n                };\n\n                specified[manager.id] = true;\n\n                //Only track the manager/reuse it if this is a non-plugin\n                //resource. Also only track plugin resources once\n                //the plugin has been loaded, and so the fullName is the\n                //true normalized value.\n                if (fullName && (!prefix || plugins[prefix])) {\n                    managerCallbacks[fullName] = manager;\n                }\n            }\n\n            //If there is a plugin needed, but it is not loaded,\n            //first load the plugin, then continue on.\n            if (prefix && !plugin) {\n                prefixMap = makeModuleMap(prefix);\n\n                //Clear out defined and urlFetched if the plugin was previously\n                //loaded/defined, but not as full module (as in a build\n                //situation). However, only do this work if the plugin is in\n                //defined but does not have a module export value.\n                if (prefix in defined && !defined[prefix]) {\n                    delete defined[prefix];\n                    delete urlFetched[prefixMap.url];\n                }\n\n                pluginManager = getManager(prefixMap, true);\n                pluginManager.add(function (plugin) {\n                    //Create a new manager for the normalized\n                    //resource ID and have it call this manager when\n                    //done.\n                    var newMap = makeModuleMap(map.originalName, map.parentMap),\n                        normalizedManager = getManager(newMap, true);\n\n                    //Indicate this manager is a placeholder for the real,\n                    //normalized thing. Important for when trying to map\n                    //modules and dependencies, for instance, in a build.\n                    manager.placeholder = true;\n\n                    normalizedManager.add(function (resource) {\n                        manager.callback = function () {\n                            return resource;\n                        };\n                        execManager(manager);\n                    });\n                });\n            } else if (created && shouldQueue) {\n                //Indicate the resource is not loaded yet if it is to be\n                //queued.\n                loaded[manager.id] = false;\n                queueDependency(manager);\n                addWait(manager);\n            }\n\n            return manager;\n        }\n\n        function main(inName, depArray, callback, relModuleMap) {\n            var moduleMap = makeModuleMap(inName, relModuleMap),\n                name = moduleMap.name,\n                fullName = moduleMap.fullName,\n                manager = getManager(moduleMap),\n                id = manager.id,\n                deps = manager.deps,\n                i, depArg, depName, depPrefix, cjsMod;\n\n            if (fullName) {\n                //If module already defined for context, or already loaded,\n                //then leave. Also leave if jQuery is registering but it does\n                //not match the desired version number in the config.\n                if (fullName in defined || loaded[id] === true ||\n                    (fullName === \"jquery\" && config.jQuery &&\n                     config.jQuery !== callback().fn.jquery)) {\n                    return;\n                }\n\n                //Set specified/loaded here for modules that are also loaded\n                //as part of a layer, where onScriptLoad is not fired\n                //for those cases. Do this after the inline define and\n                //dependency tracing is done.\n                specified[id] = true;\n                loaded[id] = true;\n\n                //If module is jQuery set up delaying its dom ready listeners.\n                if (fullName === \"jquery\" && callback) {\n                    jQueryCheck(callback());\n                }\n            }\n\n            //Attach real depArray and callback to the manager. Do this\n            //only if the module has not been defined already, so do this after\n            //the fullName checks above. IE can call main() more than once\n            //for a module.\n            manager.depArray = depArray;\n            manager.callback = callback;\n\n            //Add the dependencies to the deps field, and register for callbacks\n            //on the dependencies.\n            for (i = 0; i < depArray.length; i++) {\n                depArg = depArray[i];\n                //There could be cases like in IE, where a trailing comma will\n                //introduce a null dependency, so only treat a real dependency\n                //value as a dependency.\n                if (depArg) {\n                    //Split the dependency name into plugin and name parts\n                    depArg = makeModuleMap(depArg, (name ? moduleMap : relModuleMap));\n                    depName = depArg.fullName;\n                    depPrefix = depArg.prefix;\n\n                    //Fix the name in depArray to be just the name, since\n                    //that is how it will be called back later.\n                    depArray[i] = depName;\n\n                    //Fast path CommonJS standard dependencies.\n                    if (depName === \"require\") {\n                        deps[i] = makeRequire(moduleMap);\n                    } else if (depName === \"exports\") {\n                        //CommonJS module spec 1.1\n                        deps[i] = defined[fullName] = {};\n                        manager.usingExports = true;\n                    } else if (depName === \"module\") {\n                        //CommonJS module spec 1.1\n                        manager.cjsModule = cjsMod = deps[i] = {\n                            id: name,\n                            uri: name ? context.nameToUrl(name, null, relModuleMap) : undefined,\n                            exports: defined[fullName]\n                        };\n                    } else if (depName in defined && !(depName in waiting) &&\n                               (!(fullName in needFullExec) ||\n                                (fullName in needFullExec && fullExec[depName]))) {\n                        //Module already defined, and not in a build situation\n                        //where the module is a something that needs full\n                        //execution and this dependency has not been fully\n                        //executed. See r.js's requirePatch.js for more info\n                        //on fullExec.\n                        deps[i] = defined[depName];\n                    } else {\n                        //Mark this dependency as needing full exec if\n                        //the current module needs full exec.\n                        if (fullName in needFullExec) {\n                            needFullExec[depName] = true;\n                            //Reset state so fully executed code will get\n                            //picked up correctly.\n                            delete defined[depName];\n                            urlFetched[depArg.url] = false;\n                        }\n\n                        //Either a resource that is not loaded yet, or a plugin\n                        //resource for either a plugin that has not\n                        //loaded yet.\n                        manager.depCount += 1;\n                        manager.depCallbacks[i] = makeArgCallback(manager, i);\n                        getManager(depArg, true).add(manager.depCallbacks[i]);\n                    }\n                }\n            }\n\n            //Do not bother tracking the manager if it is all done.\n            if (!manager.depCount) {\n                //All done, execute!\n                execManager(manager);\n            } else {\n                addWait(manager);\n            }\n        }\n\n        /**\n         * Convenience method to call main for a define call that was put on\n         * hold in the defQueue.\n         */\n        function callDefMain(args) {\n            main.apply(null, args);\n        }\n\n        /**\n         * jQuery 1.4.3+ supports ways to hold off calling\n         * calling jQuery ready callbacks until all scripts are loaded. Be sure\n         * to track it if the capability exists.. Also, since jQuery 1.4.3 does\n         * not register as a module, need to do some global inference checking.\n         * Even if it does register as a module, not guaranteed to be the precise\n         * name of the global. If a jQuery is tracked for this context, then go\n         * ahead and register it as a module too, if not already in process.\n         */\n        jQueryCheck = function (jqCandidate) {\n            if (!context.jQuery) {\n                var $ = jqCandidate || (typeof jQuery !== \"undefined\" ? jQuery : null);\n\n                if ($) {\n                    //If a specific version of jQuery is wanted, make sure to only\n                    //use this jQuery if it matches.\n                    if (config.jQuery && $.fn.jquery !== config.jQuery) {\n                        return;\n                    }\n\n                    if (\"holdReady\" in $ || \"readyWait\" in $) {\n                        context.jQuery = $;\n\n                        //Manually create a \"jquery\" module entry if not one already\n                        //or in process. Note this could trigger an attempt at\n                        //a second jQuery registration, but does no harm since\n                        //the first one wins, and it is the same value anyway.\n                        callDefMain([\"jquery\", [], function () {\n                            return jQuery;\n                        }]);\n\n                        //Ask jQuery to hold DOM ready callbacks.\n                        if (context.scriptCount) {\n                            jQueryHoldReady($, true);\n                            context.jQueryIncremented = true;\n                        }\n                    }\n                }\n            }\n        };\n\n        function findCycle(manager, traced) {\n            var fullName = manager.map.fullName,\n                depArray = manager.depArray,\n                fullyLoaded = true,\n                i, depName, depManager, result;\n\n            if (manager.isDone || !fullName || !loaded[fullName]) {\n                return result;\n            }\n\n            //Found the cycle.\n            if (traced[fullName]) {\n                return manager;\n            }\n\n            traced[fullName] = true;\n\n            //Trace through the dependencies.\n            if (depArray) {\n                for (i = 0; i < depArray.length; i++) {\n                    //Some array members may be null, like if a trailing comma\n                    //IE, so do the explicit [i] access and check if it has a value.\n                    depName = depArray[i];\n                    if (!loaded[depName] && !reservedDependencies[depName]) {\n                        fullyLoaded = false;\n                        break;\n                    }\n                    depManager = waiting[depName];\n                    if (depManager && !depManager.isDone && loaded[depName]) {\n                        result = findCycle(depManager, traced);\n                        if (result) {\n                            break;\n                        }\n                    }\n                }\n                if (!fullyLoaded) {\n                    //Discard the cycle that was found, since it cannot\n                    //be forced yet. Also clear this module from traced.\n                    result = undefined;\n                    delete traced[fullName];\n                }\n            }\n\n            return result;\n        }\n\n        function forceExec(manager, traced) {\n            var fullName = manager.map.fullName,\n                depArray = manager.depArray,\n                i, depName, depManager, prefix, prefixManager, value;\n\n\n            if (manager.isDone || !fullName || !loaded[fullName]) {\n                return undefined;\n            }\n\n            if (fullName) {\n                if (traced[fullName]) {\n                    return defined[fullName];\n                }\n\n                traced[fullName] = true;\n            }\n\n            //Trace through the dependencies.\n            if (depArray) {\n                for (i = 0; i < depArray.length; i++) {\n                    //Some array members may be null, like if a trailing comma\n                    //IE, so do the explicit [i] access and check if it has a value.\n                    depName = depArray[i];\n                    if (depName) {\n                        //First, make sure if it is a plugin resource that the\n                        //plugin is not blocked.\n                        prefix = makeModuleMap(depName).prefix;\n                        if (prefix && (prefixManager = waiting[prefix])) {\n                            forceExec(prefixManager, traced);\n                        }\n                        depManager = waiting[depName];\n                        if (depManager && !depManager.isDone && loaded[depName]) {\n                            value = forceExec(depManager, traced);\n                            manager.depCallbacks[i](value);\n                        }\n                    }\n                }\n            }\n\n            return defined[fullName];\n        }\n\n        /**\n         * Checks if all modules for a context are loaded, and if so, evaluates the\n         * new ones in right dependency order.\n         *\n         * @private\n         */\n        function checkLoaded() {\n            var waitInterval = config.waitSeconds * 1000,\n                //It is possible to disable the wait interval by using waitSeconds of 0.\n                expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(),\n                noLoads = \"\", hasLoadedProp = false, stillLoading = false,\n                cycleDeps = [],\n                i, prop, err, manager, cycleManager, moduleDeps;\n\n            //If there are items still in the paused queue processing wait.\n            //This is particularly important in the sync case where each paused\n            //item is processed right away but there may be more waiting.\n            if (context.pausedCount > 0) {\n                return undefined;\n            }\n\n            //Determine if priority loading is done. If so clear the priority. If\n            //not, then do not check\n            if (config.priorityWait) {\n                if (isPriorityDone()) {\n                    //Call resume, since it could have\n                    //some waiting dependencies to trace.\n                    resume();\n                } else {\n                    return undefined;\n                }\n            }\n\n            //See if anything is still in flight.\n            for (prop in loaded) {\n                if (!(prop in empty)) {\n                    hasLoadedProp = true;\n                    if (!loaded[prop]) {\n                        if (expired) {\n                            noLoads += prop + \" \";\n                        } else {\n                            stillLoading = true;\n                            if (prop.indexOf('!') === -1) {\n                                //No reason to keep looking for unfinished\n                                //loading. If the only stillLoading is a\n                                //plugin resource though, keep going,\n                                //because it may be that a plugin resource\n                                //is waiting on a non-plugin cycle.\n                                cycleDeps = [];\n                                break;\n                            } else {\n                                moduleDeps = managerCallbacks[prop] && managerCallbacks[prop].moduleDeps;\n                                if (moduleDeps) {\n                                    cycleDeps.push.apply(cycleDeps, moduleDeps);\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n\n            //Check for exit conditions.\n            if (!hasLoadedProp && !context.waitCount) {\n                //If the loaded object had no items, then the rest of\n                //the work below does not need to be done.\n                return undefined;\n            }\n            if (expired && noLoads) {\n                //If wait time expired, throw error of unloaded modules.\n                err = makeError(\"timeout\", \"Load timeout for modules: \" + noLoads);\n                err.requireType = \"timeout\";\n                err.requireModules = noLoads;\n                err.contextName = context.contextName;\n                return req.onError(err);\n            }\n\n            //If still loading but a plugin is waiting on a regular module cycle\n            //break the cycle.\n            if (stillLoading && cycleDeps.length) {\n                for (i = 0; (manager = waiting[cycleDeps[i]]); i++) {\n                    if ((cycleManager = findCycle(manager, {}))) {\n                        forceExec(cycleManager, {});\n                        break;\n                    }\n                }\n\n            }\n\n            //If still waiting on loads, and the waiting load is something\n            //other than a plugin resource, or there are still outstanding\n            //scripts, then just try back later.\n            if (!expired && (stillLoading || context.scriptCount)) {\n                //Something is still waiting to load. Wait for it, but only\n                //if a timeout is not already in effect.\n                if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) {\n                    checkLoadedTimeoutId = setTimeout(function () {\n                        checkLoadedTimeoutId = 0;\n                        checkLoaded();\n                    }, 50);\n                }\n                return undefined;\n            }\n\n            //If still have items in the waiting cue, but all modules have\n            //been loaded, then it means there are some circular dependencies\n            //that need to be broken.\n            //However, as a waiting thing is fired, then it can add items to\n            //the waiting cue, and those items should not be fired yet, so\n            //make sure to redo the checkLoaded call after breaking a single\n            //cycle, if nothing else loaded then this logic will pick it up\n            //again.\n            if (context.waitCount) {\n                //Cycle through the waitAry, and call items in sequence.\n                for (i = 0; (manager = waitAry[i]); i++) {\n                    forceExec(manager, {});\n                }\n\n                //If anything got placed in the paused queue, run it down.\n                if (context.paused.length) {\n                    resume();\n                }\n\n                //Only allow this recursion to a certain depth. Only\n                //triggered by errors in calling a module in which its\n                //modules waiting on it cannot finish loading, or some circular\n                //dependencies that then may add more dependencies.\n                //The value of 5 is a bit arbitrary. Hopefully just one extra\n                //pass, or two for the case of circular dependencies generating\n                //more work that gets resolved in the sync node case.\n                if (checkLoadedDepth < 5) {\n                    checkLoadedDepth += 1;\n                    checkLoaded();\n                }\n            }\n\n            checkLoadedDepth = 0;\n\n            //Check for DOM ready, and nothing is waiting across contexts.\n            req.checkReadyState();\n\n            return undefined;\n        }\n\n        /**\n         * Resumes tracing of dependencies and then checks if everything is loaded.\n         */\n        resume = function () {\n            var manager, map, url, i, p, args, fullName;\n\n            //Any defined modules in the global queue, intake them now.\n            context.takeGlobalQueue();\n\n            resumeDepth += 1;\n\n            if (context.scriptCount <= 0) {\n                //Synchronous envs will push the number below zero with the\n                //decrement above, be sure to set it back to zero for good measure.\n                //require() calls that also do not end up loading scripts could\n                //push the number negative too.\n                context.scriptCount = 0;\n            }\n\n            //Make sure any remaining defQueue items get properly processed.\n            while (defQueue.length) {\n                args = defQueue.shift();\n                if (args[0] === null) {\n                    return req.onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1]));\n                } else {\n                    callDefMain(args);\n                }\n            }\n\n            //Skip the resume of paused dependencies\n            //if current context is in priority wait.\n            if (!config.priorityWait || isPriorityDone()) {\n                while (context.paused.length) {\n                    p = context.paused;\n                    context.pausedCount += p.length;\n                    //Reset paused list\n                    context.paused = [];\n\n                    for (i = 0; (manager = p[i]); i++) {\n                        map = manager.map;\n                        url = map.url;\n                        fullName = map.fullName;\n\n                        //If the manager is for a plugin managed resource,\n                        //ask the plugin to load it now.\n                        if (map.prefix) {\n                            callPlugin(map.prefix, manager);\n                        } else {\n                            //Regular dependency.\n                            if (!urlFetched[url] && !loaded[fullName]) {\n                                req.load(context, fullName, url);\n\n                                //Mark the URL as fetched, but only if it is\n                                //not an empty: URL, used by the optimizer.\n                                //In that case we need to be sure to call\n                                //load() for each module that is mapped to\n                                //empty: so that dependencies are satisfied\n                                //correctly.\n                                if (url.indexOf('empty:') !== 0) {\n                                    urlFetched[url] = true;\n                                }\n                            }\n                        }\n                    }\n\n                    //Move the start time for timeout forward.\n                    context.startTime = (new Date()).getTime();\n                    context.pausedCount -= p.length;\n                }\n            }\n\n            //Only check if loaded when resume depth is 1. It is likely that\n            //it is only greater than 1 in sync environments where a factory\n            //function also then calls the callback-style require. In those\n            //cases, the checkLoaded should not occur until the resume\n            //depth is back at the top level.\n            if (resumeDepth === 1) {\n                checkLoaded();\n            }\n\n            resumeDepth -= 1;\n\n            return undefined;\n        };\n\n        //Define the context object. Many of these fields are on here\n        //just to make debugging easier.\n        context = {\n            contextName: contextName,\n            config: config,\n            defQueue: defQueue,\n            waiting: waiting,\n            waitCount: 0,\n            specified: specified,\n            loaded: loaded,\n            urlMap: urlMap,\n            urlFetched: urlFetched,\n            scriptCount: 0,\n            defined: defined,\n            paused: [],\n            pausedCount: 0,\n            plugins: plugins,\n            needFullExec: needFullExec,\n            fake: {},\n            fullExec: fullExec,\n            managerCallbacks: managerCallbacks,\n            makeModuleMap: makeModuleMap,\n            normalize: normalize,\n            /**\n             * Set a configuration for the context.\n             * @param {Object} cfg config object to integrate.\n             */\n            configure: function (cfg) {\n                var paths, prop, packages, pkgs, packagePaths, requireWait;\n\n                //Make sure the baseUrl ends in a slash.\n                if (cfg.baseUrl) {\n                    if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== \"/\") {\n                        cfg.baseUrl += \"/\";\n                    }\n                }\n\n                //Save off the paths and packages since they require special processing,\n                //they are additive.\n                paths = config.paths;\n                packages = config.packages;\n                pkgs = config.pkgs;\n\n                //Mix in the config values, favoring the new values over\n                //existing ones in context.config.\n                mixin(config, cfg, true);\n\n                //Adjust paths if necessary.\n                if (cfg.paths) {\n                    for (prop in cfg.paths) {\n                        if (!(prop in empty)) {\n                            paths[prop] = cfg.paths[prop];\n                        }\n                    }\n                    config.paths = paths;\n                }\n\n                packagePaths = cfg.packagePaths;\n                if (packagePaths || cfg.packages) {\n                    //Convert packagePaths into a packages config.\n                    if (packagePaths) {\n                        for (prop in packagePaths) {\n                            if (!(prop in empty)) {\n                                configurePackageDir(pkgs, packagePaths[prop], prop);\n                            }\n                        }\n                    }\n\n                    //Adjust packages if necessary.\n                    if (cfg.packages) {\n                        configurePackageDir(pkgs, cfg.packages);\n                    }\n\n                    //Done with modifications, assing packages back to context config\n                    config.pkgs = pkgs;\n                }\n\n                //If priority loading is in effect, trigger the loads now\n                if (cfg.priority) {\n                    //Hold on to requireWait value, and reset it after done\n                    requireWait = context.requireWait;\n\n                    //Allow tracing some require calls to allow the fetching\n                    //of the priority config.\n                    context.requireWait = false;\n                    //But first, call resume to register any defined modules that may\n                    //be in a data-main built file before the priority config\n                    //call.\n                    resume();\n\n                    context.require(cfg.priority);\n\n                    //Trigger a resume right away, for the case when\n                    //the script with the priority load is done as part\n                    //of a data-main call. In that case the normal resume\n                    //call will not happen because the scriptCount will be\n                    //at 1, since the script for data-main is being processed.\n                    resume();\n\n                    //Restore previous state.\n                    context.requireWait = requireWait;\n                    config.priorityWait = cfg.priority;\n                }\n\n                //If a deps array or a config callback is specified, then call\n                //require with those args. This is useful when require is defined as a\n                //config object before require.js is loaded.\n                if (cfg.deps || cfg.callback) {\n                    context.require(cfg.deps || [], cfg.callback);\n                }\n            },\n\n            requireDefined: function (moduleName, relModuleMap) {\n                return makeModuleMap(moduleName, relModuleMap).fullName in defined;\n            },\n\n            requireSpecified: function (moduleName, relModuleMap) {\n                return makeModuleMap(moduleName, relModuleMap).fullName in specified;\n            },\n\n            require: function (deps, callback, relModuleMap) {\n                var moduleName, fullName, moduleMap;\n                if (typeof deps === \"string\") {\n                    if (isFunction(callback)) {\n                        //Invalid call\n                        return req.onError(makeError(\"requireargs\", \"Invalid require call\"));\n                    }\n\n                    //Synchronous access to one module. If require.get is\n                    //available (as in the Node adapter), prefer that.\n                    //In this case deps is the moduleName and callback is\n                    //the relModuleMap\n                    if (req.get) {\n                        return req.get(context, deps, callback);\n                    }\n\n                    //Just return the module wanted. In this scenario, the\n                    //second arg (if passed) is just the relModuleMap.\n                    moduleName = deps;\n                    relModuleMap = callback;\n\n                    //Normalize module name, if it contains . or ..\n                    moduleMap = makeModuleMap(moduleName, relModuleMap);\n                    fullName = moduleMap.fullName;\n\n                    if (!(fullName in defined)) {\n                        return req.onError(makeError(\"notloaded\", \"Module name '\" +\n                                    moduleMap.fullName +\n                                    \"' has not been loaded yet for context: \" +\n                                    contextName));\n                    }\n                    return defined[fullName];\n                }\n\n                //Call main but only if there are dependencies or\n                //a callback to call.\n                if (deps && deps.length || callback) {\n                    main(null, deps, callback, relModuleMap);\n                }\n\n                //If the require call does not trigger anything new to load,\n                //then resume the dependency processing.\n                if (!context.requireWait) {\n                    while (!context.scriptCount && context.paused.length) {\n                        resume();\n                    }\n                }\n                return context.require;\n            },\n\n            /**\n             * Internal method to transfer globalQueue items to this context's\n             * defQueue.\n             */\n            takeGlobalQueue: function () {\n                //Push all the globalDefQueue items into the context's defQueue\n                if (globalDefQueue.length) {\n                    //Array splice in the values since the context code has a\n                    //local var ref to defQueue, so cannot just reassign the one\n                    //on context.\n                    apsp.apply(context.defQueue,\n                               [context.defQueue.length - 1, 0].concat(globalDefQueue));\n                    globalDefQueue = [];\n                }\n            },\n\n            /**\n             * Internal method used by environment adapters to complete a load event.\n             * A load event could be a script load or just a load pass from a synchronous\n             * load call.\n             * @param {String} moduleName the name of the module to potentially complete.\n             */\n            completeLoad: function (moduleName) {\n                var args;\n\n                context.takeGlobalQueue();\n\n                while (defQueue.length) {\n                    args = defQueue.shift();\n\n                    if (args[0] === null) {\n                        args[0] = moduleName;\n                        break;\n                    } else if (args[0] === moduleName) {\n                        //Found matching define call for this script!\n                        break;\n                    } else {\n                        //Some other named define call, most likely the result\n                        //of a build layer that included many define calls.\n                        callDefMain(args);\n                        args = null;\n                    }\n                }\n                if (args) {\n                    callDefMain(args);\n                } else {\n                    //A script that does not call define(), so just simulate\n                    //the call for it. Special exception for jQuery dynamic load.\n                    callDefMain([moduleName, [],\n                                moduleName === \"jquery\" && typeof jQuery !== \"undefined\" ?\n                                function () {\n                                    return jQuery;\n                                } : null]);\n                }\n\n                //Doing this scriptCount decrement branching because sync envs\n                //need to decrement after resume, otherwise it looks like\n                //loading is complete after the first dependency is fetched.\n                //For browsers, it works fine to decrement after, but it means\n                //the checkLoaded setTimeout 50 ms cost is taken. To avoid\n                //that cost, decrement beforehand.\n                if (req.isAsync) {\n                    context.scriptCount -= 1;\n                }\n                resume();\n                if (!req.isAsync) {\n                    context.scriptCount -= 1;\n                }\n            },\n\n            /**\n             * Converts a module name + .extension into an URL path.\n             * *Requires* the use of a module name. It does not support using\n             * plain URLs like nameToUrl.\n             */\n            toUrl: function (moduleNamePlusExt, relModuleMap) {\n                var index = moduleNamePlusExt.lastIndexOf(\".\"),\n                    ext = null;\n\n                if (index !== -1) {\n                    ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length);\n                    moduleNamePlusExt = moduleNamePlusExt.substring(0, index);\n                }\n\n                return context.nameToUrl(moduleNamePlusExt, ext, relModuleMap);\n            },\n\n            /**\n             * Converts a module name to a file path. Supports cases where\n             * moduleName may actually be just an URL.\n             */\n            nameToUrl: function (moduleName, ext, relModuleMap) {\n                var paths, pkgs, pkg, pkgPath, syms, i, parentModule, url,\n                    config = context.config;\n\n                //Normalize module name if have a base relative module name to work from.\n                moduleName = normalize(moduleName, relModuleMap && relModuleMap.fullName);\n\n                //If a colon is in the URL, it indicates a protocol is used and it is just\n                //an URL to a file, or if it starts with a slash or ends with .js, it is just a plain file.\n                //The slash is important for protocol-less URLs as well as full paths.\n                if (req.jsExtRegExp.test(moduleName)) {\n                    //Just a plain path, not module name lookup, so just return it.\n                    //Add extension if it is included. This is a bit wonky, only non-.js things pass\n                    //an extension, this method probably needs to be reworked.\n                    url = moduleName + (ext ? ext : \"\");\n                } else {\n                    //A module that needs to be converted to a path.\n                    paths = config.paths;\n                    pkgs = config.pkgs;\n\n                    syms = moduleName.split(\"/\");\n                    //For each module name segment, see if there is a path\n                    //registered for it. Start with most specific name\n                    //and work up from it.\n                    for (i = syms.length; i > 0; i--) {\n                        parentModule = syms.slice(0, i).join(\"/\");\n                        if (paths[parentModule]) {\n                            syms.splice(0, i, paths[parentModule]);\n                            break;\n                        } else if ((pkg = pkgs[parentModule])) {\n                            //If module name is just the package name, then looking\n                            //for the main module.\n                            if (moduleName === pkg.name) {\n                                pkgPath = pkg.location + '/' + pkg.main;\n                            } else {\n                                pkgPath = pkg.location;\n                            }\n                            syms.splice(0, i, pkgPath);\n                            break;\n                        }\n                    }\n\n                    //Join the path parts together, then figure out if baseUrl is needed.\n                    url = syms.join(\"/\") + (ext || \".js\");\n                    url = (url.charAt(0) === '/' || url.match(/^\\w+:/) ? \"\" : config.baseUrl) + url;\n                }\n\n                return config.urlArgs ? url +\n                                        ((url.indexOf('?') === -1 ? '?' : '&') +\n                                         config.urlArgs) : url;\n            }\n        };\n\n        //Make these visible on the context so can be called at the very\n        //end of the file to bootstrap\n        context.jQueryCheck = jQueryCheck;\n        context.resume = resume;\n\n        return context;\n    }\n\n    /**\n     * Main entry point.\n     *\n     * If the only argument to require is a string, then the module that\n     * is represented by that string is fetched for the appropriate context.\n     *\n     * If the first argument is an array, then it will be treated as an array\n     * of dependency string names to fetch. An optional function callback can\n     * be specified to execute when all of those dependencies are available.\n     *\n     * Make a local req variable to help Caja compliance (it assumes things\n     * on a require that are not standardized), and to give a short\n     * name for minification/local scope use.\n     */\n    req = requirejs = function (deps, callback) {\n\n        //Find the right context, use default\n        var contextName = defContextName,\n            context, config;\n\n        // Determine if have config object in the call.\n        if (!isArray(deps) && typeof deps !== \"string\") {\n            // deps is a config object\n            config = deps;\n            if (isArray(callback)) {\n                // Adjust args if there are dependencies\n                deps = callback;\n                callback = arguments[2];\n            } else {\n                deps = [];\n            }\n        }\n\n        if (config && config.context) {\n            contextName = config.context;\n        }\n\n        context = contexts[contextName] ||\n                  (contexts[contextName] = newContext(contextName));\n\n        if (config) {\n            context.configure(config);\n        }\n\n        return context.require(deps, callback);\n    };\n\n    /**\n     * Support require.config() to make it easier to cooperate with other\n     * AMD loaders on globally agreed names.\n     */\n    req.config = function (config) {\n        return req(config);\n    };\n\n    /**\n     * Export require as a global, but only if it does not already exist.\n     */\n    if (!require) {\n        require = req;\n    }\n\n    /**\n     * Global require.toUrl(), to match global require, mostly useful\n     * for debugging/work in the global space.\n     */\n    req.toUrl = function (moduleNamePlusExt) {\n        return contexts[defContextName].toUrl(moduleNamePlusExt);\n    };\n\n    req.version = version;\n\n    //Used to filter out dependencies that are already paths.\n    req.jsExtRegExp = /^\\/|:|\\?|\\.js$/;\n    s = req.s = {\n        contexts: contexts,\n        //Stores a list of URLs that should not get async script tag treatment.\n        skipAsync: {}\n    };\n\n    req.isAsync = req.isBrowser = isBrowser;\n    if (isBrowser) {\n        head = s.head = document.getElementsByTagName(\"head\")[0];\n        //If BASE tag is in play, using appendChild is a problem for IE6.\n        //When that browser dies, this can be removed. Details in this jQuery bug:\n        //http://dev.jquery.com/ticket/2709\n        baseElement = document.getElementsByTagName(\"base\")[0];\n        if (baseElement) {\n            head = s.head = baseElement.parentNode;\n        }\n    }\n\n    /**\n     * Any errors that require explicitly generates will be passed to this\n     * function. Intercept/override it if you want custom error handling.\n     * @param {Error} err the error object.\n     */\n    req.onError = function (err) {\n        throw err;\n    };\n\n    /**\n     * Does the request to load a module for the browser case.\n     * Make this a separate function to allow other environments\n     * to override it.\n     *\n     * @param {Object} context the require context to find state.\n     * @param {String} moduleName the name of the module.\n     * @param {Object} url the URL to the module.\n     */\n    req.load = function (context, moduleName, url) {\n        req.resourcesReady(false);\n\n        context.scriptCount += 1;\n        req.attach(url, context, moduleName);\n\n        //If tracking a jQuery, then make sure its ready callbacks\n        //are put on hold to prevent its ready callbacks from\n        //triggering too soon.\n        if (context.jQuery && !context.jQueryIncremented) {\n            jQueryHoldReady(context.jQuery, true);\n            context.jQueryIncremented = true;\n        }\n    };\n\n    function getInteractiveScript() {\n        var scripts, i, script;\n        if (interactiveScript && interactiveScript.readyState === 'interactive') {\n            return interactiveScript;\n        }\n\n        scripts = document.getElementsByTagName('script');\n        for (i = scripts.length - 1; i > -1 && (script = scripts[i]); i--) {\n            if (script.readyState === 'interactive') {\n                return (interactiveScript = script);\n            }\n        }\n\n        return null;\n    }\n\n    /**\n     * The function that handles definitions of modules. Differs from\n     * require() in that a string for the module should be the first argument,\n     * and the function to execute after dependencies are loaded should\n     * return a value to define the module corresponding to the first argument's\n     * name.\n     */\n    define = function (name, deps, callback) {\n        var node, context;\n\n        //Allow for anonymous functions\n        if (typeof name !== 'string') {\n            //Adjust args appropriately\n            callback = deps;\n            deps = name;\n            name = null;\n        }\n\n        //This module may not have dependencies\n        if (!isArray(deps)) {\n            callback = deps;\n            deps = [];\n        }\n\n        //If no name, and callback is a function, then figure out if it a\n        //CommonJS thing with dependencies.\n        if (!deps.length && isFunction(callback)) {\n            //Remove comments from the callback string,\n            //look for require calls, and pull them into the dependencies,\n            //but only if there are function args.\n            if (callback.length) {\n                callback\n                    .toString()\n                    .replace(commentRegExp, \"\")\n                    .replace(cjsRequireRegExp, function (match, dep) {\n                        deps.push(dep);\n                    });\n\n                //May be a CommonJS thing even without require calls, but still\n                //could use exports, and module. Avoid doing exports and module\n                //work though if it just needs require.\n                //REQUIRES the function to expect the CommonJS variables in the\n                //order listed below.\n                deps = (callback.length === 1 ? [\"require\"] : [\"require\", \"exports\", \"module\"]).concat(deps);\n            }\n        }\n\n        //If in IE 6-8 and hit an anonymous define() call, do the interactive\n        //work.\n        if (useInteractive) {\n            node = currentlyAddingScript || getInteractiveScript();\n            if (node) {\n                if (!name) {\n                    name = node.getAttribute(\"data-requiremodule\");\n                }\n                context = contexts[node.getAttribute(\"data-requirecontext\")];\n            }\n        }\n\n        //Always save off evaluating the def call until the script onload handler.\n        //This allows multiple modules to be in a file without prematurely\n        //tracing dependencies, and allows for anonymous module support,\n        //where the module name is not known until the script onload event\n        //occurs. If no context, use the global queue, and get it processed\n        //in the onscript load callback.\n        (context ? context.defQueue : globalDefQueue).push([name, deps, callback]);\n\n        return undefined;\n    };\n\n    define.amd = {\n        multiversion: true,\n        plugins: true,\n        jQuery: true\n    };\n\n    /**\n     * Executes the text. Normally just uses eval, but can be modified\n     * to use a more environment specific call.\n     * @param {String} text the text to execute/evaluate.\n     */\n    req.exec = function (text) {\n        return eval(text);\n    };\n\n    /**\n     * Executes a module callack function. Broken out as a separate function\n     * solely to allow the build system to sequence the files in the built\n     * layer in the right sequence.\n     *\n     * @private\n     */\n    req.execCb = function (name, callback, args, exports) {\n        return callback.apply(exports, args);\n    };\n\n\n    /**\n     * Adds a node to the DOM. Public function since used by the order plugin.\n     * This method should not normally be called by outside code.\n     */\n    req.addScriptToDom = function (node) {\n        //For some cache cases in IE 6-8, the script executes before the end\n        //of the appendChild execution, so to tie an anonymous define\n        //call to the module name (which is stored on the node), hold on\n        //to a reference to this node, but clear after the DOM insertion.\n        currentlyAddingScript = node;\n        if (baseElement) {\n            head.insertBefore(node, baseElement);\n        } else {\n            head.appendChild(node);\n        }\n        currentlyAddingScript = null;\n    };\n\n    /**\n     * callback for script loads, used to check status of loading.\n     *\n     * @param {Event} evt the event from the browser for the script\n     * that was loaded.\n     *\n     * @private\n     */\n    req.onScriptLoad = function (evt) {\n        //Using currentTarget instead of target for Firefox 2.0's sake. Not\n        //all old browsers will be supported, but this one was easy enough\n        //to support and still makes sense.\n        var node = evt.currentTarget || evt.srcElement, contextName, moduleName,\n            context;\n\n        if (evt.type === \"load\" || (node && readyRegExp.test(node.readyState))) {\n            //Reset interactive script so a script node is not held onto for\n            //to long.\n            interactiveScript = null;\n\n            //Pull out the name of the module and the context.\n            contextName = node.getAttribute(\"data-requirecontext\");\n            moduleName = node.getAttribute(\"data-requiremodule\");\n            context = contexts[contextName];\n\n            contexts[contextName].completeLoad(moduleName);\n\n            //Clean up script binding. Favor detachEvent because of IE9\n            //issue, see attachEvent/addEventListener comment elsewhere\n            //in this file.\n            if (node.detachEvent && !isOpera) {\n                //Probably IE. If not it will throw an error, which will be\n                //useful to know.\n                node.detachEvent(\"onreadystatechange\", req.onScriptLoad);\n            } else {\n                node.removeEventListener(\"load\", req.onScriptLoad, false);\n            }\n        }\n    };\n\n    /**\n     * Attaches the script represented by the URL to the current\n     * environment. Right now only supports browser loading,\n     * but can be redefined in other environments to do the right thing.\n     * @param {String} url the url of the script to attach.\n     * @param {Object} context the context that wants the script.\n     * @param {moduleName} the name of the module that is associated with the script.\n     * @param {Function} [callback] optional callback, defaults to require.onScriptLoad\n     * @param {String} [type] optional type, defaults to text/javascript\n     * @param {Function} [fetchOnlyFunction] optional function to indicate the script node\n     * should be set up to fetch the script but do not attach it to the DOM\n     * so that it can later be attached to execute it. This is a way for the\n     * order plugin to support ordered loading in IE. Once the script is fetched,\n     * but not executed, the fetchOnlyFunction will be called.\n     */\n    req.attach = function (url, context, moduleName, callback, type, fetchOnlyFunction) {\n        var node;\n        if (isBrowser) {\n            //In the browser so use a script tag\n            callback = callback || req.onScriptLoad;\n            node = context && context.config && context.config.xhtml ?\n                    document.createElementNS(\"http://www.w3.org/1999/xhtml\", \"html:script\") :\n                    document.createElement(\"script\");\n            node.type = type || (context && context.config.scriptType) ||\n                        \"text/javascript\";\n            node.charset = \"utf-8\";\n            //Use async so Gecko does not block on executing the script if something\n            //like a long-polling comet tag is being run first. Gecko likes\n            //to evaluate scripts in DOM order, even for dynamic scripts.\n            //It will fetch them async, but only evaluate the contents in DOM\n            //order, so a long-polling script tag can delay execution of scripts\n            //after it. But telling Gecko we expect async gets us the behavior\n            //we want -- execute it whenever it is finished downloading. Only\n            //Helps Firefox 3.6+\n            //Allow some URLs to not be fetched async. Mostly helps the order!\n            //plugin\n            node.async = !s.skipAsync[url];\n\n            if (context) {\n                node.setAttribute(\"data-requirecontext\", context.contextName);\n            }\n            node.setAttribute(\"data-requiremodule\", moduleName);\n\n            //Set up load listener. Test attachEvent first because IE9 has\n            //a subtle issue in its addEventListener and script onload firings\n            //that do not match the behavior of all other browsers with\n            //addEventListener support, which fire the onload event for a\n            //script right after the script execution. See:\n            //https://connect.microsoft.com/IE/feedback/details/648057/script-onload-event-is-not-fired-immediately-after-script-execution\n            //UNFORTUNATELY Opera implements attachEvent but does not follow the script\n            //script execution mode.\n            if (node.attachEvent && !isOpera) {\n                //Probably IE. IE (at least 6-8) do not fire\n                //script onload right after executing the script, so\n                //we cannot tie the anonymous define call to a name.\n                //However, IE reports the script as being in \"interactive\"\n                //readyState at the time of the define call.\n                useInteractive = true;\n\n\n                if (fetchOnlyFunction) {\n                    //Need to use old school onreadystate here since\n                    //when the event fires and the node is not attached\n                    //to the DOM, the evt.srcElement is null, so use\n                    //a closure to remember the node.\n                    node.onreadystatechange = function (evt) {\n                        //Script loaded but not executed.\n                        //Clear loaded handler, set the real one that\n                        //waits for script execution.\n                        if (node.readyState === 'loaded') {\n                            node.onreadystatechange = null;\n                            node.attachEvent(\"onreadystatechange\", callback);\n                            fetchOnlyFunction(node);\n                        }\n                    };\n                } else {\n                    node.attachEvent(\"onreadystatechange\", callback);\n                }\n            } else {\n                node.addEventListener(\"load\", callback, false);\n            }\n            node.src = url;\n\n            //Fetch only means waiting to attach to DOM after loaded.\n            if (!fetchOnlyFunction) {\n                req.addScriptToDom(node);\n            }\n\n            return node;\n        } else if (isWebWorker) {\n            //In a web worker, use importScripts. This is not a very\n            //efficient use of importScripts, importScripts will block until\n            //its script is downloaded and evaluated. However, if web workers\n            //are in play, the expectation that a build has been done so that\n            //only one script needs to be loaded anyway. This may need to be\n            //reevaluated if other use cases become common.\n            importScripts(url);\n\n            //Account for anonymous modules\n            context.completeLoad(moduleName);\n        }\n        return null;\n    };\n\n    //Look for a data-main script attribute, which could also adjust the baseUrl.\n    if (isBrowser) {\n        //Figure out baseUrl. Get it from the script tag with require.js in it.\n        scripts = document.getElementsByTagName(\"script\");\n\n        for (globalI = scripts.length - 1; globalI > -1 && (script = scripts[globalI]); globalI--) {\n            //Set the \"head\" where we can append children by\n            //using the script's parent.\n            if (!head) {\n                head = script.parentNode;\n            }\n\n            //Look for a data-main attribute to set main script for the page\n            //to load. If it is there, the path to data main becomes the\n            //baseUrl, if it is not already set.\n            if ((dataMain = script.getAttribute('data-main'))) {\n                if (!cfg.baseUrl) {\n                    //Pull off the directory of data-main for use as the\n                    //baseUrl.\n                    src = dataMain.split('/');\n                    mainScript = src.pop();\n                    subPath = src.length ? src.join('/')  + '/' : './';\n\n                    //Set final config.\n                    cfg.baseUrl = subPath;\n                    //Strip off any trailing .js since dataMain is now\n                    //like a module name.\n                    dataMain = mainScript.replace(jsSuffixRegExp, '');\n                }\n\n                //Put the data-main script in the files to load.\n                cfg.deps = cfg.deps ? cfg.deps.concat(dataMain) : [dataMain];\n\n                break;\n            }\n        }\n    }\n\n    //See if there is nothing waiting across contexts, and if not, trigger\n    //resourcesReady.\n    req.checkReadyState = function () {\n        var contexts = s.contexts, prop;\n        for (prop in contexts) {\n            if (!(prop in empty)) {\n                if (contexts[prop].waitCount) {\n                    return;\n                }\n            }\n        }\n        req.resourcesReady(true);\n    };\n\n    /**\n     * Internal function that is triggered whenever all scripts/resources\n     * have been loaded by the loader. Can be overridden by other, for\n     * instance the domReady plugin, which wants to know when all resources\n     * are loaded.\n     */\n    req.resourcesReady = function (isReady) {\n        var contexts, context, prop;\n\n        //First, set the public variable indicating that resources are loading.\n        req.resourcesDone = isReady;\n\n        if (req.resourcesDone) {\n            //If jQuery with DOM ready delayed, release it now.\n            contexts = s.contexts;\n            for (prop in contexts) {\n                if (!(prop in empty)) {\n                    context = contexts[prop];\n                    if (context.jQueryIncremented) {\n                        jQueryHoldReady(context.jQuery, false);\n                        context.jQueryIncremented = false;\n                    }\n                }\n            }\n        }\n    };\n\n    //FF < 3.6 readyState fix. Needed so that domReady plugin\n    //works well in that environment, since require.js is normally\n    //loaded via an HTML script tag so it will be there before window load,\n    //where the domReady plugin is more likely to be loaded after window load.\n    req.pageLoaded = function () {\n        if (document.readyState !== \"complete\") {\n            document.readyState = \"complete\";\n        }\n    };\n    if (isBrowser) {\n        if (document.addEventListener) {\n            if (!document.readyState) {\n                document.readyState = \"loading\";\n                window.addEventListener(\"load\", req.pageLoaded, false);\n            }\n        }\n    }\n\n    //Set up default context. If require was a configuration object, use that as base config.\n    req(cfg);\n\n    //If modules are built into require.js, then need to make sure dependencies are\n    //traced. Use a setTimeout in the browser world, to allow all the modules to register\n    //themselves. In a non-browser env, assume that modules are not built into require.js,\n    //which seems odd to do on the server.\n    if (req.isAsync && typeof setTimeout !== \"undefined\") {\n        ctx = s.contexts[(cfg.context || defContextName)];\n        //Indicate that the script that includes require() is still loading,\n        //so that require()'d dependencies are not traced until the end of the\n        //file is parsed (approximated via the setTimeout call).\n        ctx.requireWait = true;\n        setTimeout(function () {\n            ctx.requireWait = false;\n\n            if (!ctx.scriptCount) {\n                ctx.resume();\n            }\n            req.checkReadyState();\n        }, 0);\n    }\n}());\n/*!\n * jQuery JavaScript Library v1.7.1\n * http://jquery.com/\n *\n * Copyright 2011, John Resig\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n * Copyright 2011, The Dojo Foundation\n * Released under the MIT, BSD, and GPL Licenses.\n *\n * Date: Mon Nov 21 21:11:03 2011 -0500\n */\n(function( window, undefined ) {\n\n// Use the correct document accordingly with window argument (sandbox)\nvar document = window.document,\n\tnavigator = window.navigator,\n\tlocation = window.location;\nvar jQuery = (function() {\n\n// Define a local copy of jQuery\nvar jQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$,\n\n\t// A central reference to the root jQuery(document)\n\trootjQuery,\n\n\t// A simple way to check for HTML strings or ID strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\tquickExpr = /^(?:[^#<]*(<[\\w\\W]+>)[^>]*$|#([\\w\\-]*)$)/,\n\n\t// Check if a string has a non-whitespace character in it\n\trnotwhite = /\\S/,\n\n\t// Used for trimming whitespace\n\ttrimLeft = /^\\s+/,\n\ttrimRight = /\\s+$/,\n\n\t// Match a standalone tag\n\trsingleTag = /^<(\\w+)\\s*\\/?>(?:<\\/\\1>)?$/,\n\n\t// JSON RegExp\n\trvalidchars = /^[\\],:{}\\s]*$/,\n\trvalidescape = /\\\\(?:[\"\\\\\\/bfnrt]|u[0-9a-fA-F]{4})/g,\n\trvalidtokens = /\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g,\n\trvalidbraces = /(?:^|:|,)(?:\\s*\\[)+/g,\n\n\t// Useragent RegExp\n\trwebkit = /(webkit)[ \\/]([\\w.]+)/,\n\tropera = /(opera)(?:.*version)?[ \\/]([\\w.]+)/,\n\trmsie = /(msie) ([\\w.]+)/,\n\trmozilla = /(mozilla)(?:.*? rv:([\\w.]+))?/,\n\n\t// Matches dashed string for camelizing\n\trdashAlpha = /-([a-z]|[0-9])/ig,\n\trmsPrefix = /^-ms-/,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn ( letter + \"\" ).toUpperCase();\n\t},\n\n\t// Keep a UserAgent string for use with jQuery.browser\n\tuserAgent = navigator.userAgent,\n\n\t// For matching the engine and version of the browser\n\tbrowserMatch,\n\n\t// The deferred used on DOM ready\n\treadyList,\n\n\t// The ready event handler\n\tDOMContentLoaded,\n\n\t// Save a reference to some core methods\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\tpush = Array.prototype.push,\n\tslice = Array.prototype.slice,\n\ttrim = String.prototype.trim,\n\tindexOf = Array.prototype.indexOf,\n\n\t// [[Class]] -> type pairs\n\tclass2type = {};\n\njQuery.fn = jQuery.prototype = {\n\tconstructor: jQuery,\n\tinit: function( selector, context, rootjQuery ) {\n\t\tvar match, elem, ret, doc;\n\n\t\t// Handle $(\"\"), $(null), or $(undefined)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle $(DOMElement)\n\t\tif ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\t\t}\n\n\t\t// The body element only exists once, optimize finding it\n\t\tif ( selector === \"body\" && !context && document.body ) {\n\t\t\tthis.context = document;\n\t\t\tthis[0] = document.body;\n\t\t\tthis.selector = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\t// Are we dealing with HTML string or an ID?\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = quickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Verify a match, and that no context was specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\t\t\t\t\tdoc = ( context ? context.ownerDocument || context : document );\n\n\t\t\t\t\t// If a single string is passed in and it's a single tag\n\t\t\t\t\t// just do a createElement and skip the rest\n\t\t\t\t\tret = rsingleTag.exec( selector );\n\n\t\t\t\t\tif ( ret ) {\n\t\t\t\t\t\tif ( jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\t\tselector = [ document.createElement( ret[1] ) ];\n\t\t\t\t\t\t\tjQuery.fn.attr.call( selector, context, true );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tselector = [ doc.createElement( ret[1] ) ];\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tret = jQuery.buildFragment( [ match[1] ], [ doc ] );\n\t\t\t\t\t\tselector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.merge( this, selector );\n\n\t\t\t\t// HANDLE: $(\"#id\")\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn rootjQuery.ready( selector );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t},\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The current version of jQuery being used\n\tjquery: \"1.7.1\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\t// The number of elements contained in the matched element set\n\tsize: function() {\n\t\treturn this.length;\n\t},\n\n\ttoArray: function() {\n\t\treturn slice.call( this, 0 );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num == null ?\n\n\t\t\t// Return a 'clean' array\n\t\t\tthis.toArray() :\n\n\t\t\t// Return just the object\n\t\t\t( num < 0 ? this[ this.length + num ] : this[ num ] );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems, name, selector ) {\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = this.constructor();\n\n\t\tif ( jQuery.isArray( elems ) ) {\n\t\t\tpush.apply( ret, elems );\n\n\t\t} else {\n\t\t\tjQuery.merge( ret, elems );\n\t\t}\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\tret.context = this.context;\n\n\t\tif ( name === \"find\" ) {\n\t\t\tret.selector = this.selector + ( this.selector ? \" \" : \"\" ) + selector;\n\t\t} else if ( name ) {\n\t\t\tret.selector = this.selector + \".\" + name + \"(\" + selector + \")\";\n\t\t}\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tready: function( fn ) {\n\t\t// Attach the listeners\n\t\tjQuery.bindReady();\n\n\t\t// Add the callback\n\t\treadyList.add( fn );\n\n\t\treturn this;\n\t},\n\n\teq: function( i ) {\n\t\ti = +i;\n\t\treturn i === -1 ?\n\t\t\tthis.slice( i ) :\n\t\t\tthis.slice( i, i + 1 );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ),\n\t\t\t\"slice\", slice.call(arguments).join(\",\") );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: [].sort,\n\tsplice: [].splice\n};\n\n// Give the init function the jQuery prototype for later instantiation\njQuery.fn.init.prototype = jQuery.fn;\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\t\ttarget = arguments[1] || {};\n\t\t// skip the boolean and the target\n\t\ti = 2;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( length === i ) {\n\t\ttarget = this;\n\t\t--i;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\tnoConflict: function( deep ) {\n\t\tif ( window.$ === jQuery ) {\n\t\t\twindow.$ = _$;\n\t\t}\n\n\t\tif ( deep && window.jQuery === jQuery ) {\n\t\t\twindow.jQuery = _jQuery;\n\t\t}\n\n\t\treturn jQuery;\n\t},\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\t\t// Either a released hold or an DOMready/load event and not yet ready\n\t\tif ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) {\n\t\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\t\tif ( !document.body ) {\n\t\t\t\treturn setTimeout( jQuery.ready, 1 );\n\t\t\t}\n\n\t\t\t// Remember that the DOM is ready\n\t\t\tjQuery.isReady = true;\n\n\t\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If there are functions bound, to execute\n\t\t\treadyList.fireWith( document, [ jQuery ] );\n\n\t\t\t// Trigger any bound ready events\n\t\t\tif ( jQuery.fn.trigger ) {\n\t\t\t\tjQuery( document ).trigger( \"ready\" ).off( \"ready\" );\n\t\t\t}\n\t\t}\n\t},\n\n\tbindReady: function() {\n\t\tif ( readyList ) {\n\t\t\treturn;\n\t\t}\n\n\t\treadyList = jQuery.Callbacks( \"once memory\" );\n\n\t\t// Catch cases where $(document).ready() is called after the\n\t\t// browser event has already occurred.\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\treturn setTimeout( jQuery.ready, 1 );\n\t\t}\n\n\t\t// Mozilla, Opera and webkit nightlies currently support this event\n\t\tif ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", DOMContentLoaded, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", jQuery.ready, false );\n\n\t\t// If IE event model is used\n\t\t} else if ( document.attachEvent ) {\n\t\t\t// ensure firing before onload,\n\t\t\t// maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", DOMContentLoaded );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", jQuery.ready );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar toplevel = false;\n\n\t\t\ttry {\n\t\t\t\ttoplevel = window.frameElement == null;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( document.documentElement.doScroll && toplevel ) {\n\t\t\t\tdoScrollCheck();\n\t\t\t}\n\t\t}\n\t},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\t// A crude way of determining if an object is a window\n\tisWindow: function( obj ) {\n\t\treturn obj && typeof obj === \"object\" && \"setInterval\" in obj;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\treturn !isNaN( parseFloat(obj) ) && isFinite( obj );\n\t},\n\n\ttype: function( obj ) {\n\t\treturn obj == null ?\n\t\t\tString( obj ) :\n\t\t\tclass2type[ toString.call(obj) ] || \"object\";\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\n\t\tvar key;\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tfor ( var name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tparseJSON: function( data ) {\n\t\tif ( typeof data !== \"string\" || !data ) {\n\t\t\treturn null;\n\t\t}\n\n\t\t// Make sure leading/trailing whitespace is removed (IE can't handle it)\n\t\tdata = jQuery.trim( data );\n\n\t\t// Attempt to parse using the native JSON parser first\n\t\tif ( window.JSON && window.JSON.parse ) {\n\t\t\treturn window.JSON.parse( data );\n\t\t}\n\n\t\t// Make sure the incoming data is actual JSON\n\t\t// Logic borrowed from http://json.org/json2.js\n\t\tif ( rvalidchars.test( data.replace( rvalidescape, \"@\" )\n\t\t\t.replace( rvalidtokens, \"]\" )\n\t\t\t.replace( rvalidbraces, \"\")) ) {\n\n\t\t\treturn ( new Function( \"return \" + data ) )();\n\n\t\t}\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n\t},\n\n\t// Cross-browser xml parsing\n\tparseXML: function( data ) {\n\t\tvar xml, tmp;\n\t\ttry {\n\t\t\tif ( window.DOMParser ) { // Standard\n\t\t\t\ttmp = new DOMParser();\n\t\t\t\txml = tmp.parseFromString( data , \"text/xml\" );\n\t\t\t} else { // IE\n\t\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\t\txml.async = \"false\";\n\t\t\t\txml.loadXML( data );\n\t\t\t}\n\t\t} catch( e ) {\n\t\t\txml = undefined;\n\t\t}\n\t\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\t\tjQuery.error( \"Invalid XML: \" + data );\n\t\t}\n\t\treturn xml;\n\t},\n\n\tnoop: function() {},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && rnotwhite.test( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( object, callback, args ) {\n\t\tvar name, i = 0,\n\t\t\tlength = object.length,\n\t\t\tisObj = length === undefined || jQuery.isFunction( object );\n\n\t\tif ( args ) {\n\t\t\tif ( isObj ) {\n\t\t\t\tfor ( name in object ) {\n\t\t\t\t\tif ( callback.apply( object[ name ], args ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( ; i < length; ) {\n\t\t\t\t\tif ( callback.apply( object[ i++ ], args ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isObj ) {\n\t\t\t\tfor ( name in object ) {\n\t\t\t\t\tif ( callback.call( object[ name ], name, object[ name ] ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( ; i < length; ) {\n\t\t\t\t\tif ( callback.call( object[ i ], i, object[ i++ ] ) === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn object;\n\t},\n\n\t// Use native String.trim function wherever possible\n\ttrim: trim ?\n\t\tfunction( text ) {\n\t\t\treturn text == null ?\n\t\t\t\t\"\" :\n\t\t\t\ttrim.call( text );\n\t\t} :\n\n\t\t// Otherwise use our own trimming functionality\n\t\tfunction( text ) {\n\t\t\treturn text == null ?\n\t\t\t\t\"\" :\n\t\t\t\ttext.toString().replace( trimLeft, \"\" ).replace( trimRight, \"\" );\n\t\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( array, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( array != null ) {\n\t\t\t// The window, strings (and functions) also have 'length'\n\t\t\t// Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930\n\t\t\tvar type = jQuery.type( array );\n\n\t\t\tif ( array.length == null || type === \"string\" || type === \"function\" || type === \"regexp\" || jQuery.isWindow( array ) ) {\n\t\t\t\tpush.call( ret, array );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( ret, array );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, array, i ) {\n\t\tvar len;\n\n\t\tif ( array ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( array, elem, i );\n\t\t\t}\n\n\t\t\tlen = array.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in array && array[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar i = first.length,\n\t\t\tj = 0;\n\n\t\tif ( typeof second.length === \"number\" ) {\n\t\t\tfor ( var l = second.length; j < l; j++ ) {\n\t\t\t\tfirst[ i++ ] = second[ j ];\n\t\t\t}\n\n\t\t} else {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, inv ) {\n\t\tvar ret = [], retVal;\n\t\tinv = !!inv;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( var i = 0, length = elems.length; i < length; i++ ) {\n\t\t\tretVal = !!callback( elems[ i ], i );\n\t\t\tif ( inv !== retVal ) {\n\t\t\t\tret.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value, key, ret = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\t// jquery objects are treated as arrays\n\t\t\tisArray = elems instanceof jQuery || length !== undefined && typeof length === \"number\" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ;\n\n\t\t// Go through the array, translating each of the items to their\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret[ ret.length ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( key in elems ) {\n\t\t\t\tvalue = callback( elems[ key ], key, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret[ ret.length ] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn ret.concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tif ( typeof context === \"string\" ) {\n\t\t\tvar tmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\tvar args = slice.call( arguments, 2 ),\n\t\t\tproxy = function() {\n\t\t\t\treturn fn.apply( context, args.concat( slice.call( arguments ) ) );\n\t\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\t// Mutifunctional method to get and set values to a collection\n\t// The value/s can optionally be executed if it's a function\n\taccess: function( elems, key, value, exec, fn, pass ) {\n\t\tvar length = elems.length;\n\n\t\t// Setting many attributes\n\t\tif ( typeof key === \"object\" ) {\n\t\t\tfor ( var k in key ) {\n\t\t\t\tjQuery.access( elems, k, key[k], exec, fn, value );\n\t\t\t}\n\t\t\treturn elems;\n\t\t}\n\n\t\t// Setting one attribute\n\t\tif ( value !== undefined ) {\n\t\t\t// Optionally, function values get executed if exec is true\n\t\t\texec = !pass && exec && jQuery.isFunction(value);\n\n\t\t\tfor ( var i = 0; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass );\n\t\t\t}\n\n\t\t\treturn elems;\n\t\t}\n\n\t\t// Getting an attribute\n\t\treturn length ? fn( elems[0], key ) : undefined;\n\t},\n\n\tnow: function() {\n\t\treturn ( new Date() ).getTime();\n\t},\n\n\t// Use of jQuery.browser is frowned upon.\n\t// More details: http://docs.jquery.com/Utilities/jQuery.browser\n\tuaMatch: function( ua ) {\n\t\tua = ua.toLowerCase();\n\n\t\tvar match = rwebkit.exec( ua ) ||\n\t\t\tropera.exec( ua ) ||\n\t\t\trmsie.exec( ua ) ||\n\t\t\tua.indexOf(\"compatible\") < 0 && rmozilla.exec( ua ) ||\n\t\t\t[];\n\n\t\treturn { browser: match[1] || \"\", version: match[2] || \"0\" };\n\t},\n\n\tsub: function() {\n\t\tfunction jQuerySub( selector, context ) {\n\t\t\treturn new jQuerySub.fn.init( selector, context );\n\t\t}\n\t\tjQuery.extend( true, jQuerySub, this );\n\t\tjQuerySub.superclass = this;\n\t\tjQuerySub.fn = jQuerySub.prototype = this();\n\t\tjQuerySub.fn.constructor = jQuerySub;\n\t\tjQuerySub.sub = this.sub;\n\t\tjQuerySub.fn.init = function init( selector, context ) {\n\t\t\tif ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {\n\t\t\t\tcontext = jQuerySub( context );\n\t\t\t}\n\n\t\t\treturn jQuery.fn.init.call( this, selector, context, rootjQuerySub );\n\t\t};\n\t\tjQuerySub.fn.init.prototype = jQuerySub.fn;\n\t\tvar rootjQuerySub = jQuerySub(document);\n\t\treturn jQuerySub;\n\t},\n\n\tbrowser: {}\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nbrowserMatch = jQuery.uaMatch( userAgent );\nif ( browserMatch.browser ) {\n\tjQuery.browser[ browserMatch.browser ] = true;\n\tjQuery.browser.version = browserMatch.version;\n}\n\n// Deprecated, use jQuery.browser.webkit instead\nif ( jQuery.browser.webkit ) {\n\tjQuery.browser.safari = true;\n}\n\n// IE doesn't match non-breaking spaces with \\s\nif ( rnotwhite.test( \"\\xA0\" ) ) {\n\ttrimLeft = /^[\\s\\xA0]+/;\n\ttrimRight = /[\\s\\xA0]+$/;\n}\n\n// All jQuery objects should point back to these\nrootjQuery = jQuery(document);\n\n// Cleanup functions for the document ready method\nif ( document.addEventListener ) {\n\tDOMContentLoaded = function() {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", DOMContentLoaded, false );\n\t\tjQuery.ready();\n\t};\n\n} else if ( document.attachEvent ) {\n\tDOMContentLoaded = function() {\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\tdocument.detachEvent( \"onreadystatechange\", DOMContentLoaded );\n\t\t\tjQuery.ready();\n\t\t}\n\t};\n}\n\n// The DOM ready check for Internet Explorer\nfunction doScrollCheck() {\n\tif ( jQuery.isReady ) {\n\t\treturn;\n\t}\n\n\ttry {\n\t\t// If IE is used, use the trick by Diego Perini\n\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\tdocument.documentElement.doScroll(\"left\");\n\t} catch(e) {\n\t\tsetTimeout( doScrollCheck, 1 );\n\t\treturn;\n\t}\n\n\t// and execute any waiting functions\n\tjQuery.ready();\n}\n\nreturn jQuery;\n\n})();\n\n\n// String to Object flags format cache\nvar flagsCache = {};\n\n// Convert String-formatted flags into Object-formatted ones and store in cache\nfunction createFlags( flags ) {\n\tvar object = flagsCache[ flags ] = {},\n\t\ti, length;\n\tflags = flags.split( /\\s+/ );\n\tfor ( i = 0, length = flags.length; i < length; i++ ) {\n\t\tobject[ flags[i] ] = true;\n\t}\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\tflags:\tan optional list of space-separated flags that will change how\n *\t\t\tthe callback list behaves\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible flags:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( flags ) {\n\n\t// Convert flags from String-formatted to Object-formatted\n\t// (we check in cache first)\n\tflags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {};\n\n\tvar // Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = [],\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list is currently firing\n\t\tfiring,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// Add one or several callbacks to the list\n\t\tadd = function( args ) {\n\t\t\tvar i,\n\t\t\t\tlength,\n\t\t\t\telem,\n\t\t\t\ttype,\n\t\t\t\tactual;\n\t\t\tfor ( i = 0, length = args.length; i < length; i++ ) {\n\t\t\t\telem = args[ i ];\n\t\t\t\ttype = jQuery.type( elem );\n\t\t\t\tif ( type === \"array\" ) {\n\t\t\t\t\t// Inspect recursively\n\t\t\t\t\tadd( elem );\n\t\t\t\t} else if ( type === \"function\" ) {\n\t\t\t\t\t// Add if not in unique mode and callback is not in\n\t\t\t\t\tif ( !flags.unique || !self.has( elem ) ) {\n\t\t\t\t\t\tlist.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Fire callbacks\n\t\tfire = function( context, args ) {\n\t\t\targs = args || [];\n\t\t\tmemory = !flags.memory || [ context, args ];\n\t\t\tfiring = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) {\n\t\t\t\t\tmemory = true; // Mark as halted\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( !flags.once ) {\n\t\t\t\t\tif ( stack && stack.length ) {\n\t\t\t\t\t\tmemory = stack.shift();\n\t\t\t\t\t\tself.fireWith( memory[ 0 ], memory[ 1 ] );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory === true ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t} else {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar length = list.length;\n\t\t\t\t\tadd( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away, unless previous\n\t\t\t\t\t// firing was halted (stopOnFalse)\n\t\t\t\t\t} else if ( memory && memory !== true ) {\n\t\t\t\t\t\tfiringStart = length;\n\t\t\t\t\t\tfire( memory[ 0 ], memory[ 1 ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar args = arguments,\n\t\t\t\t\t\targIndex = 0,\n\t\t\t\t\t\targLength = args.length;\n\t\t\t\t\tfor ( ; argIndex < argLength ; argIndex++ ) {\n\t\t\t\t\t\tfor ( var i = 0; i < list.length; i++ ) {\n\t\t\t\t\t\t\tif ( args[ argIndex ] === list[ i ] ) {\n\t\t\t\t\t\t\t\t// Handle firingIndex and firingLength\n\t\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\t\tif ( i <= firingLength ) {\n\t\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t\t\tif ( i <= firingIndex ) {\n\t\t\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Remove the element\n\t\t\t\t\t\t\t\tlist.splice( i--, 1 );\n\t\t\t\t\t\t\t\t// If we have some unicity property then\n\t\t\t\t\t\t\t\t// we only need to do this once\n\t\t\t\t\t\t\t\tif ( flags.unique ) {\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Control if a given callback is in the list\n\t\t\thas: function( fn ) {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tvar i = 0,\n\t\t\t\t\t\tlength = list.length;\n\t\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\t\tif ( fn === list[ i ] ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory || memory === true ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tif ( !flags.once ) {\n\t\t\t\t\t\t\tstack.push( [ context, args ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if ( !( flags.once && memory ) ) {\n\t\t\t\t\t\tfire( context, args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!memory;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\n\n\nvar // Static reference to slice\n\tsliceDeferred = [].slice;\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar doneList = jQuery.Callbacks( \"once memory\" ),\n\t\t\tfailList = jQuery.Callbacks( \"once memory\" ),\n\t\t\tprogressList = jQuery.Callbacks( \"memory\" ),\n\t\t\tstate = \"pending\",\n\t\t\tlists = {\n\t\t\t\tresolve: doneList,\n\t\t\t\treject: failList,\n\t\t\t\tnotify: progressList\n\t\t\t},\n\t\t\tpromise = {\n\t\t\t\tdone: doneList.add,\n\t\t\t\tfail: failList.add,\n\t\t\t\tprogress: progressList.add,\n\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\n\t\t\t\t// Deprecated\n\t\t\t\tisResolved: doneList.fired,\n\t\t\t\tisRejected: failList.fired,\n\n\t\t\t\tthen: function( doneCallbacks, failCallbacks, progressCallbacks ) {\n\t\t\t\t\tdeferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tpipe: function( fnDone, fnFail, fnProgress ) {\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( {\n\t\t\t\t\t\t\tdone: [ fnDone, \"resolve\" ],\n\t\t\t\t\t\t\tfail: [ fnFail, \"reject\" ],\n\t\t\t\t\t\t\tprogress: [ fnProgress, \"notify\" ]\n\t\t\t\t\t\t}, function( handler, data ) {\n\t\t\t\t\t\t\tvar fn = data[ 0 ],\n\t\t\t\t\t\t\t\taction = data[ 1 ],\n\t\t\t\t\t\t\t\treturned;\n\t\t\t\t\t\t\tif ( jQuery.isFunction( fn ) ) {\n\t\t\t\t\t\t\t\tdeferred[ handler ](function() {\n\t\t\t\t\t\t\t\t\treturned = fn.apply( this, arguments );\n\t\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\t\treturned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify );\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tnewDefer[ action + \"With\" ]( this === deferred ? newDefer : this, [ returned ] );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tdeferred[ handler ]( newDefer[ action ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\tif ( obj == null ) {\n\t\t\t\t\t\tobj = promise;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfor ( var key in promise ) {\n\t\t\t\t\t\t\tobj[ key ] = promise[ key ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn obj;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = promise.promise({}),\n\t\t\tkey;\n\n\t\tfor ( key in lists ) {\n\t\t\tdeferred[ key ] = lists[ key ].fire;\n\t\t\tdeferred[ key + \"With\" ] = lists[ key ].fireWith;\n\t\t}\n\n\t\t// Handle state\n\t\tdeferred.done( function() {\n\t\t\tstate = \"resolved\";\n\t\t}, failList.disable, progressList.lock ).fail( function() {\n\t\t\tstate = \"rejected\";\n\t\t}, doneList.disable, progressList.lock );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( firstParam ) {\n\t\tvar args = sliceDeferred.call( arguments, 0 ),\n\t\t\ti = 0,\n\t\t\tlength = args.length,\n\t\t\tpValues = new Array( length ),\n\t\t\tcount = length,\n\t\t\tpCount = length,\n\t\t\tdeferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ?\n\t\t\t\tfirstParam :\n\t\t\t\tjQuery.Deferred(),\n\t\t\tpromise = deferred.promise();\n\t\tfunction resolveFunc( i ) {\n\t\t\treturn function( value ) {\n\t\t\t\targs[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value;\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdeferred.resolveWith( deferred, args );\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\tfunction progressFunc( i ) {\n\t\t\treturn function( value ) {\n\t\t\t\tpValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value;\n\t\t\t\tdeferred.notifyWith( promise, pValues );\n\t\t\t};\n\t\t}\n\t\tif ( length > 1 ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) {\n\t\t\t\t\targs[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) );\n\t\t\t\t} else {\n\t\t\t\t\t--count;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( !count ) {\n\t\t\t\tdeferred.resolveWith( deferred, args );\n\t\t\t}\n\t\t} else if ( deferred !== firstParam ) {\n\t\t\tdeferred.resolveWith( deferred, length ? [ firstParam ] : [] );\n\t\t}\n\t\treturn promise;\n\t}\n});\n\n\n\n\njQuery.support = (function() {\n\n\tvar support,\n\t\tall,\n\t\ta,\n\t\tselect,\n\t\topt,\n\t\tinput,\n\t\tmarginDiv,\n\t\tfragment,\n\t\ttds,\n\t\tevents,\n\t\teventName,\n\t\ti,\n\t\tisSupported,\n\t\tdiv = document.createElement( \"div\" ),\n\t\tdocumentElement = document.documentElement;\n\n\t// Preliminary tests\n\tdiv.setAttribute(\"className\", \"t\");\n\tdiv.innerHTML = \"   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>\";\n\n\tall = div.getElementsByTagName( \"*\" );\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\n\t// Can't get basic test support\n\tif ( !all || !all.length || !a ) {\n\t\treturn {};\n\t}\n\n\t// First batch of supports tests\n\tselect = document.createElement( \"select\" );\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName( \"input\" )[ 0 ];\n\n\tsupport = {\n\t\t// IE strips leading whitespace when .innerHTML is used\n\t\tleadingWhitespace: ( div.firstChild.nodeType === 3 ),\n\n\t\t// Make sure that tbody elements aren't automatically inserted\n\t\t// IE will insert them into empty tables\n\t\ttbody: !div.getElementsByTagName(\"tbody\").length,\n\n\t\t// Make sure that link elements get serialized correctly by innerHTML\n\t\t// This requires a wrapper element in IE\n\t\thtmlSerialize: !!div.getElementsByTagName(\"link\").length,\n\n\t\t// Get the style information from getAttribute\n\t\t// (IE uses .cssText instead)\n\t\tstyle: /top/.test( a.getAttribute(\"style\") ),\n\n\t\t// Make sure that URLs aren't manipulated\n\t\t// (IE normalizes it by default)\n\t\threfNormalized: ( a.getAttribute(\"href\") === \"/a\" ),\n\n\t\t// Make sure that element opacity exists\n\t\t// (IE uses filter instead)\n\t\t// Use a regex to work around a WebKit issue. See #5145\n\t\topacity: /^0.55/.test( a.style.opacity ),\n\n\t\t// Verify style float existence\n\t\t// (IE uses styleFloat instead of cssFloat)\n\t\tcssFloat: !!a.style.cssFloat,\n\n\t\t// Make sure that if no value is specified for a checkbox\n\t\t// that it defaults to \"on\".\n\t\t// (WebKit defaults to \"\" instead)\n\t\tcheckOn: ( input.value === \"on\" ),\n\n\t\t// Make sure that a selected-by-default option has a working selected property.\n\t\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\t\toptSelected: opt.selected,\n\n\t\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\t\tgetSetAttribute: div.className !== \"t\",\n\n\t\t// Tests for enctype support on a form(#6743)\n\t\tenctype: !!document.createElement(\"form\").enctype,\n\n\t\t// Makes sure cloning an html5 element does not cause problems\n\t\t// Where outerHTML is undefined, this still works\n\t\thtml5Clone: document.createElement(\"nav\").cloneNode( true ).outerHTML !== \"<:nav></:nav>\",\n\n\t\t// Will be defined later\n\t\tsubmitBubbles: true,\n\t\tchangeBubbles: true,\n\t\tfocusinBubbles: false,\n\t\tdeleteExpando: true,\n\t\tnoCloneEvent: true,\n\t\tinlineBlockNeedsLayout: false,\n\t\tshrinkWrapBlocks: false,\n\t\treliableMarginRight: true\n\t};\n\n\t// Make sure checked status is properly cloned\n\tinput.checked = true;\n\tsupport.noCloneChecked = input.cloneNode( true ).checked;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Test to see if it's possible to delete an expando from an element\n\t// Fails in Internet Explorer\n\ttry {\n\t\tdelete div.test;\n\t} catch( e ) {\n\t\tsupport.deleteExpando = false;\n\t}\n\n\tif ( !div.addEventListener && div.attachEvent && div.fireEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\t// Cloning a node shouldn't copy over any\n\t\t\t// bound event handlers (IE does this)\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\t\tdiv.cloneNode( true ).fireEvent( \"onclick\" );\n\t}\n\n\t// Check if a radio maintains its value\n\t// after being appended to the DOM\n\tinput = document.createElement(\"input\");\n\tinput.value = \"t\";\n\tinput.setAttribute(\"type\", \"radio\");\n\tsupport.radioValue = input.value === \"t\";\n\n\tinput.setAttribute(\"checked\", \"checked\");\n\tdiv.appendChild( input );\n\tfragment = document.createDocumentFragment();\n\tfragment.appendChild( div.lastChild );\n\n\t// WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tsupport.appendChecked = input.checked;\n\n\tfragment.removeChild( input );\n\tfragment.appendChild( div );\n\n\tdiv.innerHTML = \"\";\n\n\t// Check if div with explicit width and no margin-right incorrectly\n\t// gets computed margin-right based on width of container. For more\n\t// info see bug #3333\n\t// Fails in WebKit before Feb 2011 nightlies\n\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\tif ( window.getComputedStyle ) {\n\t\tmarginDiv = document.createElement( \"div\" );\n\t\tmarginDiv.style.width = \"0\";\n\t\tmarginDiv.style.marginRight = \"0\";\n\t\tdiv.style.width = \"2px\";\n\t\tdiv.appendChild( marginDiv );\n\t\tsupport.reliableMarginRight =\n\t\t\t( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0;\n\t}\n\n\t// Technique from Juriy Zaytsev\n\t// http://perfectionkills.com/detecting-event-support-without-browser-sniffing/\n\t// We only care about the case where non-standard event systems\n\t// are used, namely in IE. Short-circuiting here helps us to\n\t// avoid an eval call (in setAttribute) which can cause CSP\n\t// to go haywire. See: https://developer.mozilla.org/en/Security/CSP\n\tif ( div.attachEvent ) {\n\t\tfor( i in {\n\t\t\tsubmit: 1,\n\t\t\tchange: 1,\n\t\t\tfocusin: 1\n\t\t}) {\n\t\t\teventName = \"on\" + i;\n\t\t\tisSupported = ( eventName in div );\n\t\t\tif ( !isSupported ) {\n\t\t\t\tdiv.setAttribute( eventName, \"return;\" );\n\t\t\t\tisSupported = ( typeof div[ eventName ] === \"function\" );\n\t\t\t}\n\t\t\tsupport[ i + \"Bubbles\" ] = isSupported;\n\t\t}\n\t}\n\n\tfragment.removeChild( div );\n\n\t// Null elements to avoid leaks in IE\n\tfragment = select = opt = marginDiv = div = input = null;\n\n\t// Run tests that need a body at doc ready\n\tjQuery(function() {\n\t\tvar container, outer, inner, table, td, offsetSupport,\n\t\t\tconMarginTop, ptlm, vb, style, html,\n\t\t\tbody = document.getElementsByTagName(\"body\")[0];\n\n\t\tif ( !body ) {\n\t\t\t// Return for frameset docs that don't have a body\n\t\t\treturn;\n\t\t}\n\n\t\tconMarginTop = 1;\n\t\tptlm = \"position:absolute;top:0;left:0;width:1px;height:1px;margin:0;\";\n\t\tvb = \"visibility:hidden;border:0;\";\n\t\tstyle = \"style='\" + ptlm + \"border:5px solid #000;padding:0;'\";\n\t\thtml = \"<div \" + style + \"><div></div></div>\" +\n\t\t\t\"<table \" + style + \" cellpadding='0' cellspacing='0'>\" +\n\t\t\t\"<tr><td></td></tr></table>\";\n\n\t\tcontainer = document.createElement(\"div\");\n\t\tcontainer.style.cssText = vb + \"width:0;height:0;position:static;top:0;margin-top:\" + conMarginTop + \"px\";\n\t\tbody.insertBefore( container, body.firstChild );\n\n\t\t// Construct the test element\n\t\tdiv = document.createElement(\"div\");\n\t\tcontainer.appendChild( div );\n\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\t// (only IE 8 fails this test)\n\t\tdiv.innerHTML = \"<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>\";\n\t\ttds = div.getElementsByTagName( \"td\" );\n\t\tisSupported = ( tds[ 0 ].offsetHeight === 0 );\n\n\t\ttds[ 0 ].style.display = \"\";\n\t\ttds[ 1 ].style.display = \"none\";\n\n\t\t// Check if empty table cells still have offsetWidth/Height\n\t\t// (IE <= 8 fail this test)\n\t\tsupport.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 );\n\n\t\t// Figure out if the W3C box model works as expected\n\t\tdiv.innerHTML = \"\";\n\t\tdiv.style.width = div.style.paddingLeft = \"1px\";\n\t\tjQuery.boxModel = support.boxModel = div.offsetWidth === 2;\n\n\t\tif ( typeof div.style.zoom !== \"undefined\" ) {\n\t\t\t// Check if natively block-level elements act like inline-block\n\t\t\t// elements when setting their display to 'inline' and giving\n\t\t\t// them layout\n\t\t\t// (IE < 8 does this)\n\t\t\tdiv.style.display = \"inline\";\n\t\t\tdiv.style.zoom = 1;\n\t\t\tsupport.inlineBlockNeedsLayout = ( div.offsetWidth === 2 );\n\n\t\t\t// Check if elements with layout shrink-wrap their children\n\t\t\t// (IE 6 does this)\n\t\t\tdiv.style.display = \"\";\n\t\t\tdiv.innerHTML = \"<div style='width:4px;'></div>\";\n\t\t\tsupport.shrinkWrapBlocks = ( div.offsetWidth !== 2 );\n\t\t}\n\n\t\tdiv.style.cssText = ptlm + vb;\n\t\tdiv.innerHTML = html;\n\n\t\touter = div.firstChild;\n\t\tinner = outer.firstChild;\n\t\ttd = outer.nextSibling.firstChild.firstChild;\n\n\t\toffsetSupport = {\n\t\t\tdoesNotAddBorder: ( inner.offsetTop !== 5 ),\n\t\t\tdoesAddBorderForTableAndCells: ( td.offsetTop === 5 )\n\t\t};\n\n\t\tinner.style.position = \"fixed\";\n\t\tinner.style.top = \"20px\";\n\n\t\t// safari subtracts parent border width here which is 5px\n\t\toffsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 );\n\t\tinner.style.position = inner.style.top = \"\";\n\n\t\touter.style.overflow = \"hidden\";\n\t\touter.style.position = \"relative\";\n\n\t\toffsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 );\n\t\toffsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop );\n\n\t\tbody.removeChild( container );\n\t\tdiv  = container = null;\n\n\t\tjQuery.extend( support, offsetSupport );\n\t});\n\n\treturn support;\n})();\n\n\n\n\nvar rbrace = /^(?:\\{.*\\}|\\[.*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\njQuery.extend({\n\tcache: {},\n\n\t// Please use with caution\n\tuuid: 0,\n\n\t// Unique for each copy of jQuery on the page\n\t// Non-digits removed to match rinlinejQuery\n\texpando: \"jQuery\" + ( jQuery.fn.jquery + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// The following elements throw uncatchable exceptions if you\n\t// attempt to add expando properties to them.\n\tnoData: {\n\t\t\"embed\": true,\n\t\t// Ban all objects except for Flash (which handle expandos)\n\t\t\"object\": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\",\n\t\t\"applet\": true\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data, pvt /* Internal Use Only */ ) {\n\t\tif ( !jQuery.acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar privateCache, thisCache, ret,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tgetByName = typeof name === \"string\",\n\n\t\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t\t// can't GC object references properly across the DOM-JS boundary\n\t\t\tisNode = elem.nodeType,\n\n\t\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t\t// attached directly to the object so GC can occur automatically\n\t\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey,\n\t\t\tisEvents = name === \"events\";\n\n\t\t// Avoid doing any more work than we need to when trying to get data on an\n\t\t// object that has no data at all\n\t\tif ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( !id ) {\n\t\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t\t// ends up in the global cache\n\t\t\tif ( isNode ) {\n\t\t\t\telem[ internalKey ] = id = ++jQuery.uuid;\n\t\t\t} else {\n\t\t\t\tid = internalKey;\n\t\t\t}\n\t\t}\n\n\t\tif ( !cache[ id ] ) {\n\t\t\tcache[ id ] = {};\n\n\t\t\t// Avoids exposing jQuery metadata on plain JS objects when the object\n\t\t\t// is serialized using JSON.stringify\n\t\t\tif ( !isNode ) {\n\t\t\t\tcache[ id ].toJSON = jQuery.noop;\n\t\t\t}\n\t\t}\n\n\t\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t\t// shallow copied over onto the existing cache\n\t\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\t\tif ( pvt ) {\n\t\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t\t} else {\n\t\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t\t}\n\t\t}\n\n\t\tprivateCache = thisCache = cache[ id ];\n\n\t\t// jQuery data() is stored in a separate object inside the object's internal data\n\t\t// cache in order to avoid key collisions between internal data and user-defined\n\t\t// data.\n\t\tif ( !pvt ) {\n\t\t\tif ( !thisCache.data ) {\n\t\t\t\tthisCache.data = {};\n\t\t\t}\n\n\t\t\tthisCache = thisCache.data;\n\t\t}\n\n\t\tif ( data !== undefined ) {\n\t\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t\t}\n\n\t\t// Users should not attempt to inspect the internal events object using jQuery.data,\n\t\t// it is undocumented and subject to change. But does anyone listen? No.\n\t\tif ( isEvents && !thisCache[ name ] ) {\n\t\t\treturn privateCache.events;\n\t\t}\n\n\t\t// Check for both converted-to-camel and non-converted data property names\n\t\t// If a data property was specified\n\t\tif ( getByName ) {\n\n\t\t\t// First Try to find as-is property data\n\t\t\tret = thisCache[ name ];\n\n\t\t\t// Test for null|undefined property data\n\t\t\tif ( ret == null ) {\n\n\t\t\t\t// Try to find the camelCased property\n\t\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t\t}\n\t\t} else {\n\t\t\tret = thisCache;\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tremoveData: function( elem, name, pvt /* Internal Use Only */ ) {\n\t\tif ( !jQuery.acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar thisCache, i, l,\n\n\t\t\t// Reference to internal data cache key\n\t\t\tinternalKey = jQuery.expando,\n\n\t\t\tisNode = elem.nodeType,\n\n\t\t\t// See jQuery.data for more information\n\t\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t\t// See jQuery.data for more information\n\t\t\tid = isNode ? elem[ internalKey ] : internalKey;\n\n\t\t// If there is already no cache entry for this object, there is no\n\t\t// purpose in continuing\n\t\tif ( !cache[ id ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( name ) {\n\n\t\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\t\tif ( thisCache ) {\n\n\t\t\t\t// Support array or space separated string names for data keys\n\t\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tname = name.split( \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tfor ( i = 0, l = name.length; i < l; i++ ) {\n\t\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t\t}\n\n\t\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t\t// and let the cache object itself get destroyed\n\t\t\t\tif ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// See jQuery.data for more information\n\t\tif ( !pvt ) {\n\t\t\tdelete cache[ id ].data;\n\n\t\t\t// Don't destroy the parent cache unless the internal data object\n\t\t\t// had been the only thing left in it\n\t\t\tif ( !isEmptyDataObject(cache[ id ]) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\t// Browsers that fail expando deletion also refuse to delete expandos on\n\t\t// the window, but it will allow it on all other JS objects; other browsers\n\t\t// don't care\n\t\t// Ensure that `cache` is not a window object #10080\n\t\tif ( jQuery.support.deleteExpando || !cache.setInterval ) {\n\t\t\tdelete cache[ id ];\n\t\t} else {\n\t\t\tcache[ id ] = null;\n\t\t}\n\n\t\t// We destroyed the cache and need to eliminate the expando on the node to avoid\n\t\t// false lookups in the cache for entries that no longer exist\n\t\tif ( isNode ) {\n\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t// we must handle all of these cases\n\t\t\tif ( jQuery.support.deleteExpando ) {\n\t\t\t\tdelete elem[ internalKey ];\n\t\t\t} else if ( elem.removeAttribute ) {\n\t\t\t\telem.removeAttribute( internalKey );\n\t\t\t} else {\n\t\t\t\telem[ internalKey ] = null;\n\t\t\t}\n\t\t}\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn jQuery.data( elem, name, data, true );\n\t},\n\n\t// A method for determining if a DOM node can handle the data expando\n\tacceptData: function( elem ) {\n\t\tif ( elem.nodeName ) {\n\t\t\tvar match = jQuery.noData[ elem.nodeName.toLowerCase() ];\n\n\t\t\tif ( match ) {\n\t\t\t\treturn !(match === true || elem.getAttribute(\"classid\") !== match);\n\t\t\t}\n\t\t}\n\n\t\treturn true;\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar parts, attr, name,\n\t\t\tdata = null;\n\n\t\tif ( typeof key === \"undefined\" ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( this[0] );\n\n\t\t\t\tif ( this[0].nodeType === 1 && !jQuery._data( this[0], \"parsedAttrs\" ) ) {\n\t\t\t\t\tattr = this[0].attributes;\n\t\t\t\t\tfor ( var i = 0, l = attr.length; i < l; i++ ) {\n\t\t\t\t\t\tname = attr[i].name;\n\n\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\tname = jQuery.camelCase( name.substring(5) );\n\n\t\t\t\t\t\t\tdataAttr( this[0], name, data[ name ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( this[0], \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\n\t\t} else if ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\tparts = key.split(\".\");\n\t\tparts[1] = parts[1] ? \".\" + parts[1] : \"\";\n\n\t\tif ( value === undefined ) {\n\t\t\tdata = this.triggerHandler(\"getData\" + parts[1] + \"!\", [parts[0]]);\n\n\t\t\t// Try to fetch any internally stored data first\n\t\t\tif ( data === undefined && this.length ) {\n\t\t\t\tdata = jQuery.data( this[0], key );\n\t\t\t\tdata = dataAttr( this[0], key, data );\n\t\t\t}\n\n\t\t\treturn data === undefined && parts[1] ?\n\t\t\t\tthis.data( parts[0] ) :\n\t\t\t\tdata;\n\n\t\t} else {\n\t\t\treturn this.each(function() {\n\t\t\t\tvar self = jQuery( this ),\n\t\t\t\t\targs = [ parts[0], value ];\n\n\t\t\t\tself.triggerHandler( \"setData\" + parts[1] + \"!\", args );\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t\tself.triggerHandler( \"changeData\" + parts[1] + \"!\", args );\n\t\t\t});\n\t\t}\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\tdata === \"false\" ? false :\n\t\t\t\tdata === \"null\" ? null :\n\t\t\t\tjQuery.isNumeric( data ) ? parseFloat( data ) :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tfor ( var name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\n\n\n\nfunction handleQueueMarkDefer( elem, type, src ) {\n\tvar deferDataKey = type + \"defer\",\n\t\tqueueDataKey = type + \"queue\",\n\t\tmarkDataKey = type + \"mark\",\n\t\tdefer = jQuery._data( elem, deferDataKey );\n\tif ( defer &&\n\t\t( src === \"queue\" || !jQuery._data(elem, queueDataKey) ) &&\n\t\t( src === \"mark\" || !jQuery._data(elem, markDataKey) ) ) {\n\t\t// Give room for hard-coded callbacks to fire first\n\t\t// and eventually mark/queue something else on the element\n\t\tsetTimeout( function() {\n\t\t\tif ( !jQuery._data( elem, queueDataKey ) &&\n\t\t\t\t!jQuery._data( elem, markDataKey ) ) {\n\t\t\t\tjQuery.removeData( elem, deferDataKey, true );\n\t\t\t\tdefer.fire();\n\t\t\t}\n\t\t}, 0 );\n\t}\n}\n\njQuery.extend({\n\n\t_mark: function( elem, type ) {\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"mark\";\n\t\t\tjQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 );\n\t\t}\n\t},\n\n\t_unmark: function( force, elem, type ) {\n\t\tif ( force !== true ) {\n\t\t\ttype = elem;\n\t\t\telem = force;\n\t\t\tforce = false;\n\t\t}\n\t\tif ( elem ) {\n\t\t\ttype = type || \"fx\";\n\t\t\tvar key = type + \"mark\",\n\t\t\t\tcount = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 );\n\t\t\tif ( count ) {\n\t\t\t\tjQuery._data( elem, key, count );\n\t\t\t} else {\n\t\t\t\tjQuery.removeData( elem, key, true );\n\t\t\t\thandleQueueMarkDefer( elem, type, \"mark\" );\n\t\t\t}\n\t\t}\n\t},\n\n\tqueue: function( elem, type, data ) {\n\t\tvar q;\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tq = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !q || jQuery.isArray(data) ) {\n\t\t\t\t\tq = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tq.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn q || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tfn = queue.shift(),\n\t\t\thooks = {};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\tjQuery._data( elem, type + \".run\", hooks );\n\t\t\tfn.call( elem, function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t}, hooks );\n\t\t}\n\n\t\tif ( !queue.length ) {\n\t\t\tjQuery.removeData( elem, type + \"queue \" + type + \".run\", true );\n\t\t\thandleQueueMarkDefer( elem, type, \"queue\" );\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t}\n\n\t\tif ( data === undefined ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\t// Based off of the plugin by Clint Helfers, with permission.\n\t// http://blindsignals.com/index.php/2009/07/jquery-delay/\n\tdelay: function( time, type ) {\n\t\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\t\ttype = type || \"fx\";\n\n\t\treturn this.queue( type, function( next, hooks ) {\n\t\t\tvar timeout = setTimeout( next, time );\n\t\t\thooks.stop = function() {\n\t\t\t\tclearTimeout( timeout );\n\t\t\t};\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, object ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobject = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\t\tvar defer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = elements.length,\n\t\t\tcount = 1,\n\t\t\tdeferDataKey = type + \"defer\",\n\t\t\tqueueDataKey = type + \"queue\",\n\t\t\tmarkDataKey = type + \"mark\",\n\t\t\ttmp;\n\t\tfunction resolve() {\n\t\t\tif ( !( --count ) ) {\n\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t}\n\t\t}\n\t\twhile( i-- ) {\n\t\t\tif (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) ||\n\t\t\t\t\t( jQuery.data( elements[ i ], queueDataKey, undefined, true ) ||\n\t\t\t\t\t\tjQuery.data( elements[ i ], markDataKey, undefined, true ) ) &&\n\t\t\t\t\tjQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( \"once memory\" ), true ) )) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise();\n\t}\n});\n\n\n\n\nvar rclass = /[\\n\\t\\r]/g,\n\trspace = /\\s+/,\n\trreturn = /\\r/g,\n\trtype = /^(?:button|input)$/i,\n\trfocusable = /^(?:button|input|object|select|textarea)$/i,\n\trclickable = /^a(?:rea)?$/i,\n\trboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,\n\tgetSetAttribute = jQuery.support.getSetAttribute,\n\tnodeHook, boolHook, fixSpecified;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn jQuery.access( this, name, value, true, jQuery.attr );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t},\n\n\tprop: function( name, value ) {\n\t\treturn jQuery.access( this, name, value, true, jQuery.prop );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t},\n\n\taddClass: function( value ) {\n\t\tvar classNames, i, l, elem,\n\t\t\tsetClass, c, cl;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call(this, j, this.className) );\n\t\t\t});\n\t\t}\n\n\t\tif ( value && typeof value === \"string\" ) {\n\t\t\tclassNames = value.split( rspace );\n\n\t\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\tif ( !elem.className && classNames.length === 1 ) {\n\t\t\t\t\t\telem.className = value;\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetClass = \" \" + elem.className + \" \";\n\n\t\t\t\t\t\tfor ( c = 0, cl = classNames.length; c < cl; c++ ) {\n\t\t\t\t\t\t\tif ( !~setClass.indexOf( \" \" + classNames[ c ] + \" \" ) ) {\n\t\t\t\t\t\t\t\tsetClass += classNames[ c ] + \" \";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telem.className = jQuery.trim( setClass );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classNames, i, l, elem, className, c, cl;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call(this, j, this.className) );\n\t\t\t});\n\t\t}\n\n\t\tif ( (value && typeof value === \"string\") || value === undefined ) {\n\t\t\tclassNames = ( value || \"\" ).split( rspace );\n\n\t\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.nodeType === 1 && elem.className ) {\n\t\t\t\t\tif ( value ) {\n\t\t\t\t\t\tclassName = (\" \" + elem.className + \" \").replace( rclass, \" \" );\n\t\t\t\t\t\tfor ( c = 0, cl = classNames.length; c < cl; c++ ) {\n\t\t\t\t\t\t\tclassName = className.replace(\" \" + classNames[ c ] + \" \", \" \");\n\t\t\t\t\t\t}\n\t\t\t\t\t\telem.className = jQuery.trim( className );\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem.className = \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisBool = typeof stateVal === \"boolean\";\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tstate = stateVal,\n\t\t\t\t\tclassNames = value.split( rspace );\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space seperated list\n\t\t\t\t\tstate = isBool ? state : !self.hasClass( className );\n\t\t\t\t\tself[ state ? \"addClass\" : \"removeClass\" ]( className );\n\t\t\t\t}\n\n\t\t\t} else if ( type === \"undefined\" || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// toggle whole className\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) > -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t},\n\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.nodeName.toLowerCase() ] || jQuery.valHooks[ elem.type ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar self = jQuery(this), val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, self.val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map(val, function ( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.nodeName.toLowerCase() ] || jQuery.valHooks[ this.type ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// attributes.value is undefined in Blackberry 4.7 but\n\t\t\t\t// uses .value. See #6932\n\t\t\t\tvar val = elem.attributes.value;\n\t\t\t\treturn !val || val.specified ? elem.value : elem.text;\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, i, max, option,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tvalues = [],\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tone = elem.type === \"select-one\";\n\n\t\t\t\t// Nothing was selected\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\ti = one ? index : 0;\n\t\t\t\tmax = one ? index + 1 : options.length;\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\tif ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null) &&\n\t\t\t\t\t\t\t(!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" )) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fixes Bug #2551 -- select.val() broken in IE after form.reset()\n\t\t\t\tif ( one && !values.length && options.length ) {\n\t\t\t\t\treturn jQuery( options[ index ] ).val();\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar values = jQuery.makeArray( value );\n\n\t\t\t\tjQuery(elem).find(\"option\").each(function() {\n\t\t\t\t\tthis.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;\n\t\t\t\t});\n\n\t\t\t\tif ( !values.length ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t},\n\n\tattrFn: {\n\t\tval: true,\n\t\tcss: true,\n\t\thtml: true,\n\t\ttext: true,\n\t\tdata: true,\n\t\twidth: true,\n\t\theight: true,\n\t\toffset: true\n\t},\n\n\tattr: function( elem, name, value, pass ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( pass && name in jQuery.attrFn ) {\n\t\t\treturn jQuery( elem )[ name ]( value );\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( notxml ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\n\t\t\t} else if ( hooks && \"set\" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, \"\" + value );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\n\t\t\tret = elem.getAttribute( name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret === null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar propName, attrNames, name, l,\n\t\t\ti = 0;\n\n\t\tif ( value && elem.nodeType === 1 ) {\n\t\t\tattrNames = value.toLowerCase().split( rspace );\n\t\t\tl = attrNames.length;\n\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tname = attrNames[ i ];\n\n\t\t\t\tif ( name ) {\n\t\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\n\t\t\t\t\t// Set corresponding property to false for boolean attributes\n\t\t\t\t\tif ( rboolean.test( name ) && propName in elem ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\t// We can't allow the type property to be changed (since it causes problems in IE)\n\t\t\t\tif ( rtype.test( elem.nodeName ) && elem.parentNode ) {\n\t\t\t\t\tjQuery.error( \"type property can't be changed\" );\n\t\t\t\t} else if ( !jQuery.support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to it's default in case type is set after value\n\t\t\t\t\t// This is for element creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Use the value property for back compat\n\t\t// Use the nodeHook for button elements in IE6/7 (#1954)\n\t\tvalue: {\n\t\t\tget: function( elem, name ) {\n\t\t\t\tif ( nodeHook && jQuery.nodeName( elem, \"button\" ) ) {\n\t\t\t\t\treturn nodeHook.get( elem, name );\n\t\t\t\t}\n\t\t\t\treturn name in elem ?\n\t\t\t\t\telem.value :\n\t\t\t\t\tnull;\n\t\t\t},\n\t\t\tset: function( elem, value, name ) {\n\t\t\t\tif ( nodeHook && jQuery.nodeName( elem, \"button\" ) ) {\n\t\t\t\t\treturn nodeHook.set( elem, value, name );\n\t\t\t\t}\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.value = value;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\ttabindex: \"tabIndex\",\n\t\treadonly: \"readOnly\",\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\",\n\t\tmaxlength: \"maxLength\",\n\t\tcellspacing: \"cellSpacing\",\n\t\tcellpadding: \"cellPadding\",\n\t\trowspan: \"rowSpan\",\n\t\tcolspan: \"colSpan\",\n\t\tusemap: \"useMap\",\n\t\tframeborder: \"frameBorder\",\n\t\tcontenteditable: \"contentEditable\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\treturn ( elem[ name ] = value );\n\t\t\t}\n\n\t\t} else {\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\treturn elem[ name ];\n\t\t\t}\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\tvar attributeNode = elem.getAttributeNode(\"tabindex\");\n\n\t\t\t\treturn attributeNode && attributeNode.specified ?\n\t\t\t\t\tparseInt( attributeNode.value, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\tundefined;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional)\njQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex;\n\n// Hook for boolean attributes\nboolHook = {\n\tget: function( elem, name ) {\n\t\t// Align boolean attributes with corresponding properties\n\t\t// Fall back to attribute presence where some booleans are not supported\n\t\tvar attrNode,\n\t\t\tproperty = jQuery.prop( elem, name );\n\t\treturn property === true || typeof property !== \"boolean\" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?\n\t\t\tname.toLowerCase() :\n\t\t\tundefined;\n\t},\n\tset: function( elem, value, name ) {\n\t\tvar propName;\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\t// value is true since we know at this point it's type boolean and not false\n\t\t\t// Set boolean attributes to the same name and set the DOM property\n\t\t\tpropName = jQuery.propFix[ name ] || name;\n\t\t\tif ( propName in elem ) {\n\t\t\t\t// Only set the IDL specifically if it already exists on the element\n\t\t\t\telem[ propName ] = true;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, name.toLowerCase() );\n\t\t}\n\t\treturn name;\n\t}\n};\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\tfixSpecified = {\n\t\tname: true,\n\t\tid: true\n\t};\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = jQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret;\n\t\t\tret = elem.getAttributeNode( name );\n\t\t\treturn ret && ( fixSpecified[ name ] ? ret.nodeValue !== \"\" : ret.specified ) ?\n\t\t\t\tret.nodeValue :\n\t\t\t\tundefined;\n\t\t},\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\tret = document.createAttribute( name );\n\t\t\t\telem.setAttributeNode( ret );\n\t\t\t}\n\t\t\treturn ( ret.nodeValue = value + \"\" );\n\t\t}\n\t};\n\n\t// Apply the nodeHook to tabindex\n\tjQuery.attrHooks.tabindex.set = nodeHook.set;\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tget: nodeHook.get,\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( value === \"\" ) {\n\t\t\t\tvalue = \"false\";\n\t\t\t}\n\t\t\tnodeHook.set( elem, value, name );\n\t\t}\n\t};\n}\n\n\n// Some attributes require a special call on IE\nif ( !jQuery.support.hrefNormalized ) {\n\tjQuery.each([ \"href\", \"src\", \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar ret = elem.getAttribute( name, 2 );\n\t\t\t\treturn ret === null ? undefined : ret;\n\t\t\t}\n\t\t});\n\t});\n}\n\nif ( !jQuery.support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Normalize to lowercase since IE uppercases css property names\n\t\t\treturn elem.style.cssText.toLowerCase() || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = \"\" + value );\n\t\t}\n\t};\n}\n\n// Safari mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !jQuery.support.optSelected ) {\n\tjQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t});\n}\n\n// IE6/7 call enctype encoding\nif ( !jQuery.support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n// Radios and checkboxes getter/setter\nif ( !jQuery.support.checkOn ) {\n\tjQuery.each([ \"radio\", \"checkbox\" ], function() {\n\t\tjQuery.valHooks[ this ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\t// Handle the case where in Webkit \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t\t}\n\t\t};\n\t});\n}\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t});\n});\n\n\n\n\nvar rformElems = /^(?:textarea|input|select)$/i,\n\trtypenamespace = /^([^\\.]*)?(?:\\.(.+))?$/,\n\trhoverHack = /\\bhover(\\.\\S+)?\\b/,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trquickIs = /^(\\w*)(?:#([\\w\\-]+))?(?:\\.([\\w\\-]+))?$/,\n\tquickParse = function( selector ) {\n\t\tvar quick = rquickIs.exec( selector );\n\t\tif ( quick ) {\n\t\t\t//   0  1    2   3\n\t\t\t// [ _, tag, id, class ]\n\t\t\tquick[1] = ( quick[1] || \"\" ).toLowerCase();\n\t\t\tquick[3] = quick[3] && new RegExp( \"(?:^|\\\\s)\" + quick[3] + \"(?:\\\\s|$)\" );\n\t\t}\n\t\treturn quick;\n\t},\n\tquickIs = function( elem, m ) {\n\t\tvar attrs = elem.attributes || {};\n\t\treturn (\n\t\t\t(!m[1] || elem.nodeName.toLowerCase() === m[1]) &&\n\t\t\t(!m[2] || (attrs.id || {}).value === m[2]) &&\n\t\t\t(!m[3] || m[3].test( (attrs[ \"class\" ] || {}).value ))\n\t\t);\n\t},\n\thoverHack = function( events ) {\n\t\treturn jQuery.event.special.hover ? events : events.replace( rhoverHack, \"mouseenter$1 mouseleave$1\" );\n\t};\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar elemData, eventHandle, events,\n\t\t\tt, tns, type, namespaces, handleObj,\n\t\t\thandleObjIn, quick, handlers, special;\n\n\t\t// Don't attach events to noData or text/comment nodes (allow plain objects tho)\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tevents = elemData.events;\n\t\tif ( !events ) {\n\t\t\telemData.events = events = {};\n\t\t}\n\t\teventHandle = elemData.handle;\n\t\tif ( !eventHandle ) {\n\t\t\telemData.handle = eventHandle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\t// jQuery(...).bind(\"mouseover mouseout\", fn);\n\t\ttypes = jQuery.trim( hoverHack(types) ).split( \" \" );\n\t\tfor ( t = 0; t < types.length; t++ ) {\n\n\t\t\ttns = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = tns[1];\n\t\t\tnamespaces = ( tns[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: tns[1],\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tquick: quickParse( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\thandlers = events[ type ];\n\t\t\tif ( !handlers ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\tglobal: {},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar elemData = jQuery.hasData( elem ) && jQuery._data( elem ),\n\t\t\tt, tns, type, origType, namespaces, origCount,\n\t\t\tj, events, special, handle, eventType, handleObj;\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = jQuery.trim( hoverHack( types || \"\" ) ).split(\" \");\n\t\tfor ( t = 0; t < types.length; t++ ) {\n\t\t\ttns = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tns[1];\n\t\t\tnamespaces = tns[2];\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector? special.delegateType : special.bindType ) || type;\n\t\t\teventType = events[ type ] || [];\n\t\t\torigCount = eventType.length;\n\t\t\tnamespaces = namespaces ? new RegExp(\"(^|\\\\.)\" + namespaces.split(\".\").sort().join(\"\\\\.(?:.*\\\\.)?\") + \"(\\\\.|$)\") : null;\n\n\t\t\t// Remove matching events\n\t\t\tfor ( j = 0; j < eventType.length; j++ ) {\n\t\t\t\thandleObj = eventType[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t ( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t ( !namespaces || namespaces.test( handleObj.namespace ) ) &&\n\t\t\t\t\t ( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\teventType.splice( j--, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\teventType.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( eventType.length === 0 && origCount !== eventType.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\thandle = elemData.handle;\n\t\t\tif ( handle ) {\n\t\t\t\thandle.elem = null;\n\t\t\t}\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery.removeData( elem, [ \"events\", \"handle\" ], true );\n\t\t}\n\t},\n\n\t// Events that are safe to short-circuit if no handlers are attached.\n\t// Native DOM events should not be added, they may have inline handlers.\n\tcustomEvent: {\n\t\t\"getData\": true,\n\t\t\"setData\": true,\n\t\t\"changeData\": true\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Event object or event type\n\t\tvar type = event.type || event,\n\t\t\tnamespaces = [],\n\t\t\tcache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType;\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \"!\" ) >= 0 ) {\n\t\t\t// Exclusive events trigger only for the exact event (no namespaces)\n\t\t\ttype = type.slice(0, -1);\n\t\t\texclusive = true;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\n\t\tif ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) {\n\t\t\t// No jQuery handlers for this event type, and it can't have inline handlers\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an Event, Object, or just an event type string\n\t\tevent = typeof event === \"object\" ?\n\t\t\t// jQuery.Event object\n\t\t\tevent[ jQuery.expando ] ? event :\n\t\t\t// Object literal\n\t\t\tnew jQuery.Event( type, event ) :\n\t\t\t// Just the event type (string)\n\t\t\tnew jQuery.Event( type );\n\n\t\tevent.type = type;\n\t\tevent.isTrigger = true;\n\t\tevent.exclusive = exclusive;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.namespace_re = event.namespace? new RegExp(\"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.)?\") + \"(\\\\.|$)\") : null;\n\t\tontype = type.indexOf( \":\" ) < 0 ? \"on\" + type : \"\";\n\n\t\t// Handle a global trigger\n\t\tif ( !elem ) {\n\n\t\t\t// TODO: Stop taunting the data cache; remove global events and always attach to document\n\t\t\tcache = jQuery.cache;\n\t\t\tfor ( i in cache ) {\n\t\t\t\tif ( cache[ i ].events && cache[ i ].events[ type ] ) {\n\t\t\t\t\tjQuery.event.trigger( event, data, cache[ i ].handle.elem, true );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data != null ? jQuery.makeArray( data ) : [];\n\t\tdata.unshift( event );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\teventPath = [[ elem, special.bindType || type ]];\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tcur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode;\n\t\t\told = null;\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push([ cur, bubbleType ]);\n\t\t\t\told = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( old && old === elem.ownerDocument ) {\n\t\t\t\teventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]);\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\tfor ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) {\n\n\t\t\tcur = eventPath[i][0];\n\t\t\tevent.type = eventPath[i][1];\n\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\t\t\t// Note that this is a bare JS function and not a jQuery handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) &&\n\t\t\t\t!(type === \"click\" && jQuery.nodeName( elem, \"a\" )) && jQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486)\n\t\t\t\tif ( ontype && elem[ type ] && ((type !== \"focus\" && type !== \"blur\") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\told = elem[ ontype ];\n\n\t\t\t\t\tif ( old ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\telem[ type ]();\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( old ) {\n\t\t\t\t\t\telem[ ontype ] = old;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event || window.event );\n\n\t\tvar handlers = ( (jQuery._data( this, \"events\" ) || {} )[ event.type ] || []),\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\targs = [].slice.call( arguments, 0 ),\n\t\t\trun_all = !event.exclusive && !event.namespace,\n\t\t\thandlerQueue = [],\n\t\t\ti, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related;\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Determine handlers that should run if there are delegated events\n\t\t// Avoid disabled elements in IE (#6911) and non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && !event.target.disabled && !(event.button && event.type === \"click\") ) {\n\n\t\t\t// Pregenerate a single jQuery object for reuse with .is()\n\t\t\tjqcur = jQuery(this);\n\t\t\tjqcur.context = this.ownerDocument || this;\n\n\t\t\tfor ( cur = event.target; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\tselMatch = {};\n\t\t\t\tmatches = [];\n\t\t\t\tjqcur[0] = cur;\n\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\thandleObj = handlers[ i ];\n\t\t\t\t\tsel = handleObj.selector;\n\n\t\t\t\t\tif ( selMatch[ sel ] === undefined ) {\n\t\t\t\t\t\tselMatch[ sel ] = (\n\t\t\t\t\t\t\thandleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel )\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\tif ( selMatch[ sel ] ) {\n\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif ( matches.length ) {\n\t\t\t\t\thandlerQueue.push({ elem: cur, matches: matches });\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( handlers.length > delegateCount ) {\n\t\t\thandlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\tfor ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) {\n\t\t\tmatched = handlerQueue[ i ];\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tfor ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) {\n\t\t\t\thandleObj = matched.matches[ j ];\n\n\t\t\t\t// Triggered event must either 1) be non-exclusive and have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.data = handleObj.data;\n\t\t\t\t\tevent.handleObj = handleObj;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tevent.result = ret;\n\t\t\t\t\t\tif ( ret === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\t// *** attrChange attrName relatedNode srcElement  are not normalized, non-W3C, deprecated, will be removed in 1.8 ***\n\tprops: \"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar eventDoc, doc, body,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = jQuery.event.fixHooks[ event.type ] || {},\n\t\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = jQuery.Event( originalEvent );\n\n\t\tfor ( i = copy.length; i; ) {\n\t\t\tprop = copy[ --i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Fix target property, if necessary (#1925, IE 6/7/8 & Safari2)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Target should not be a text node (#504, Safari)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8)\n\t\tif ( event.metaKey === undefined ) {\n\t\t\tevent.metaKey = event.ctrlKey;\n\t\t}\n\n\t\treturn fixHook.filter? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\tspecial: {\n\t\tready: {\n\t\t\t// Make sure the ready event is setup\n\t\t\tsetup: jQuery.bindReady\n\t\t},\n\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\n\t\tfocus: {\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tsetup: function( data, namespaces, eventHandle ) {\n\t\t\t\t// We only want to do this special case on windows\n\t\t\t\tif ( jQuery.isWindow( this ) ) {\n\t\t\t\t\tthis.onbeforeunload = eventHandle;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tteardown: function( namespaces, eventHandle ) {\n\t\t\t\tif ( this.onbeforeunload === eventHandle ) {\n\t\t\t\t\tthis.onbeforeunload = null;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{ type: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\n// Some plugins are using, but it's undocumented/deprecated and will be removed.\n// The 1.7 special event interface should provide all the hooks needed now.\njQuery.event.handle = jQuery.event.dispatch;\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.detachEvent ) {\n\t\t\telem.detachEvent( \"on\" + type, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false ||\n\t\t\tsrc.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\nfunction returnFalse() {\n\treturn false;\n}\nfunction returnTrue() {\n\treturn true;\n}\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tpreventDefault: function() {\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tvar e = this.originalEvent;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// if preventDefault exists run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// otherwise set the returnValue property of the original event to false (IE)\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tvar e = this.originalEvent;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// if stopPropagation exists run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t\t// otherwise set the cancelBubble property of the original event to true (IE)\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\t\tthis.stopPropagation();\n\t},\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar target = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj,\n\t\t\t\tselector = handleObj.selector,\n\t\t\t\tret;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !jQuery.support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !form._submit_attached ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tform._submit_attached = true;\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !jQuery.support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !elem._change_attached ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\telem._change_attached = true;\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !jQuery.support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler while someone wants focusin/focusout\n\t\tvar attaches = 0,\n\t\t\thandler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tif ( attaches++ === 0 ) {\n\t\t\t\t\tdocument.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tif ( --attaches === 0 ) {\n\t\t\t\t\tdocument.removeEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar origFn, type;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on.call( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\tvar handleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace? handleObj.type + \".\" + handleObj.namespace : handleObj.type,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( var type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tlive: function( types, data, fn ) {\n\t\tjQuery( this.context ).on( types, this.selector, data, fn );\n\t\treturn this;\n\t},\n\tdie: function( types, fn ) {\n\t\tjQuery( this.context ).off( types, this.selector || \"**\", fn );\n\t\treturn this;\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length == 1? this.off( selector, \"**\" ) : this.off( types, selector, fn );\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tif ( this[0] ) {\n\t\t\treturn jQuery.event.trigger( type, data, this[0], true );\n\t\t}\n\t},\n\n\ttoggle: function( fn ) {\n\t\t// Save reference to arguments for access in closure\n\t\tvar args = arguments,\n\t\t\tguid = fn.guid || jQuery.guid++,\n\t\t\ti = 0,\n\t\t\ttoggler = function( event ) {\n\t\t\t\t// Figure out which function to execute\n\t\t\t\tvar lastToggle = ( jQuery._data( this, \"lastToggle\" + fn.guid ) || 0 ) % i;\n\t\t\t\tjQuery._data( this, \"lastToggle\" + fn.guid, lastToggle + 1 );\n\n\t\t\t\t// Make sure that clicks stop\n\t\t\t\tevent.preventDefault();\n\n\t\t\t\t// and execute the function\n\t\t\t\treturn args[ lastToggle ].apply( this, arguments ) || false;\n\t\t\t};\n\n\t\t// link all the functions, so any of them can unbind this click handler\n\t\ttoggler.guid = guid;\n\t\twhile ( i < args.length ) {\n\t\t\targs[ i++ ].guid = guid;\n\t\t}\n\n\t\treturn this.click( toggler );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n});\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\tif ( fn == null ) {\n\t\t\tfn = data;\n\t\t\tdata = null;\n\t\t}\n\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n\n\tif ( jQuery.attrFn ) {\n\t\tjQuery.attrFn[ name ] = true;\n\t}\n\n\tif ( rkeyEvent.test( name ) ) {\n\t\tjQuery.event.fixHooks[ name ] = jQuery.event.keyHooks;\n\t}\n\n\tif ( rmouseEvent.test( name ) ) {\n\t\tjQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks;\n\t}\n});\n\n\n\n/*!\n * Sizzle CSS Selector Engine\n *  Copyright 2011, The Dojo Foundation\n *  Released under the MIT, BSD, and GPL Licenses.\n *  More information: http://sizzlejs.com/\n */\n(function(){\n\nvar chunker = /((?:\\((?:\\([^()]+\\)|[^()]+)+\\)|\\[(?:\\[[^\\[\\]]*\\]|['\"][^'\"]*['\"]|[^\\[\\]'\"]+)+\\]|\\\\.|[^ >+~,(\\[\\\\]+)+|[>+~])(\\s*,\\s*)?((?:.|\\r|\\n)*)/g,\n\texpando = \"sizcache\" + (Math.random() + '').replace('.', ''),\n\tdone = 0,\n\ttoString = Object.prototype.toString,\n\thasDuplicate = false,\n\tbaseHasDuplicate = true,\n\trBackslash = /\\\\/g,\n\trReturn = /\\r\\n/g,\n\trNonWord = /\\W/;\n\n// Here we check if the JavaScript engine is using some sort of\n// optimization where it does not always call our comparision\n// function. If that is the case, discard the hasDuplicate value.\n//   Thus far that includes Google Chrome.\n[0, 0].sort(function() {\n\tbaseHasDuplicate = false;\n\treturn 0;\n});\n\nvar Sizzle = function( selector, context, results, seed ) {\n\tresults = results || [];\n\tcontext = context || document;\n\n\tvar origContext = context;\n\n\tif ( context.nodeType !== 1 && context.nodeType !== 9 ) {\n\t\treturn [];\n\t}\n\t\n\tif ( !selector || typeof selector !== \"string\" ) {\n\t\treturn results;\n\t}\n\n\tvar m, set, checkSet, extra, ret, cur, pop, i,\n\t\tprune = true,\n\t\tcontextXML = Sizzle.isXML( context ),\n\t\tparts = [],\n\t\tsoFar = selector;\n\t\n\t// Reset the position of the chunker regexp (start from head)\n\tdo {\n\t\tchunker.exec( \"\" );\n\t\tm = chunker.exec( soFar );\n\n\t\tif ( m ) {\n\t\t\tsoFar = m[3];\n\t\t\n\t\t\tparts.push( m[1] );\n\t\t\n\t\t\tif ( m[2] ) {\n\t\t\t\textra = m[3];\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t} while ( m );\n\n\tif ( parts.length > 1 && origPOS.exec( selector ) ) {\n\n\t\tif ( parts.length === 2 && Expr.relative[ parts[0] ] ) {\n\t\t\tset = posProcess( parts[0] + parts[1], context, seed );\n\n\t\t} else {\n\t\t\tset = Expr.relative[ parts[0] ] ?\n\t\t\t\t[ context ] :\n\t\t\t\tSizzle( parts.shift(), context );\n\n\t\t\twhile ( parts.length ) {\n\t\t\t\tselector = parts.shift();\n\n\t\t\t\tif ( Expr.relative[ selector ] ) {\n\t\t\t\t\tselector += parts.shift();\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tset = posProcess( selector, set, seed );\n\t\t\t}\n\t\t}\n\n\t} else {\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\t// (but not if it'll be faster if the inner selector is an ID)\n\t\tif ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML &&\n\t\t\t\tExpr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) {\n\n\t\t\tret = Sizzle.find( parts.shift(), context, contextXML );\n\t\t\tcontext = ret.expr ?\n\t\t\t\tSizzle.filter( ret.expr, ret.set )[0] :\n\t\t\t\tret.set[0];\n\t\t}\n\n\t\tif ( context ) {\n\t\t\tret = seed ?\n\t\t\t\t{ expr: parts.pop(), set: makeArray(seed) } :\n\t\t\t\tSizzle.find( parts.pop(), parts.length === 1 && (parts[0] === \"~\" || parts[0] === \"+\") && context.parentNode ? context.parentNode : context, contextXML );\n\n\t\t\tset = ret.expr ?\n\t\t\t\tSizzle.filter( ret.expr, ret.set ) :\n\t\t\t\tret.set;\n\n\t\t\tif ( parts.length > 0 ) {\n\t\t\t\tcheckSet = makeArray( set );\n\n\t\t\t} else {\n\t\t\t\tprune = false;\n\t\t\t}\n\n\t\t\twhile ( parts.length ) {\n\t\t\t\tcur = parts.pop();\n\t\t\t\tpop = cur;\n\n\t\t\t\tif ( !Expr.relative[ cur ] ) {\n\t\t\t\t\tcur = \"\";\n\t\t\t\t} else {\n\t\t\t\t\tpop = parts.pop();\n\t\t\t\t}\n\n\t\t\t\tif ( pop == null ) {\n\t\t\t\t\tpop = context;\n\t\t\t\t}\n\n\t\t\t\tExpr.relative[ cur ]( checkSet, pop, contextXML );\n\t\t\t}\n\n\t\t} else {\n\t\t\tcheckSet = parts = [];\n\t\t}\n\t}\n\n\tif ( !checkSet ) {\n\t\tcheckSet = set;\n\t}\n\n\tif ( !checkSet ) {\n\t\tSizzle.error( cur || selector );\n\t}\n\n\tif ( toString.call(checkSet) === \"[object Array]\" ) {\n\t\tif ( !prune ) {\n\t\t\tresults.push.apply( results, checkSet );\n\n\t\t} else if ( context && context.nodeType === 1 ) {\n\t\t\tfor ( i = 0; checkSet[i] != null; i++ ) {\n\t\t\t\tif ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) {\n\t\t\t\t\tresults.push( set[i] );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\t\t\tfor ( i = 0; checkSet[i] != null; i++ ) {\n\t\t\t\tif ( checkSet[i] && checkSet[i].nodeType === 1 ) {\n\t\t\t\t\tresults.push( set[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t} else {\n\t\tmakeArray( checkSet, results );\n\t}\n\n\tif ( extra ) {\n\t\tSizzle( extra, origContext, results, seed );\n\t\tSizzle.uniqueSort( results );\n\t}\n\n\treturn results;\n};\n\nSizzle.uniqueSort = function( results ) {\n\tif ( sortOrder ) {\n\t\thasDuplicate = baseHasDuplicate;\n\t\tresults.sort( sortOrder );\n\n\t\tif ( hasDuplicate ) {\n\t\t\tfor ( var i = 1; i < results.length; i++ ) {\n\t\t\t\tif ( results[i] === results[ i - 1 ] ) {\n\t\t\t\t\tresults.splice( i--, 1 );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn results;\n};\n\nSizzle.matches = function( expr, set ) {\n\treturn Sizzle( expr, null, null, set );\n};\n\nSizzle.matchesSelector = function( node, expr ) {\n\treturn Sizzle( expr, null, null, [node] ).length > 0;\n};\n\nSizzle.find = function( expr, context, isXML ) {\n\tvar set, i, len, match, type, left;\n\n\tif ( !expr ) {\n\t\treturn [];\n\t}\n\n\tfor ( i = 0, len = Expr.order.length; i < len; i++ ) {\n\t\ttype = Expr.order[i];\n\t\t\n\t\tif ( (match = Expr.leftMatch[ type ].exec( expr )) ) {\n\t\t\tleft = match[1];\n\t\t\tmatch.splice( 1, 1 );\n\n\t\t\tif ( left.substr( left.length - 1 ) !== \"\\\\\" ) {\n\t\t\t\tmatch[1] = (match[1] || \"\").replace( rBackslash, \"\" );\n\t\t\t\tset = Expr.find[ type ]( match, context, isXML );\n\n\t\t\t\tif ( set != null ) {\n\t\t\t\t\texpr = expr.replace( Expr.match[ type ], \"\" );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( !set ) {\n\t\tset = typeof context.getElementsByTagName !== \"undefined\" ?\n\t\t\tcontext.getElementsByTagName( \"*\" ) :\n\t\t\t[];\n\t}\n\n\treturn { set: set, expr: expr };\n};\n\nSizzle.filter = function( expr, set, inplace, not ) {\n\tvar match, anyFound,\n\t\ttype, found, item, filter, left,\n\t\ti, pass,\n\t\told = expr,\n\t\tresult = [],\n\t\tcurLoop = set,\n\t\tisXMLFilter = set && set[0] && Sizzle.isXML( set[0] );\n\n\twhile ( expr && set.length ) {\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) {\n\t\t\t\tfilter = Expr.filter[ type ];\n\t\t\t\tleft = match[1];\n\n\t\t\t\tanyFound = false;\n\n\t\t\t\tmatch.splice(1,1);\n\n\t\t\t\tif ( left.substr( left.length - 1 ) === \"\\\\\" ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( curLoop === result ) {\n\t\t\t\t\tresult = [];\n\t\t\t\t}\n\n\t\t\t\tif ( Expr.preFilter[ type ] ) {\n\t\t\t\t\tmatch = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter );\n\n\t\t\t\t\tif ( !match ) {\n\t\t\t\t\t\tanyFound = found = true;\n\n\t\t\t\t\t} else if ( match === true ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( match ) {\n\t\t\t\t\tfor ( i = 0; (item = curLoop[i]) != null; i++ ) {\n\t\t\t\t\t\tif ( item ) {\n\t\t\t\t\t\t\tfound = filter( item, match, i, curLoop );\n\t\t\t\t\t\t\tpass = not ^ found;\n\n\t\t\t\t\t\t\tif ( inplace && found != null ) {\n\t\t\t\t\t\t\t\tif ( pass ) {\n\t\t\t\t\t\t\t\t\tanyFound = true;\n\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcurLoop[i] = false;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t} else if ( pass ) {\n\t\t\t\t\t\t\t\tresult.push( item );\n\t\t\t\t\t\t\t\tanyFound = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( found !== undefined ) {\n\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\tcurLoop = result;\n\t\t\t\t\t}\n\n\t\t\t\t\texpr = expr.replace( Expr.match[ type ], \"\" );\n\n\t\t\t\t\tif ( !anyFound ) {\n\t\t\t\t\t\treturn [];\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Improper expression\n\t\tif ( expr === old ) {\n\t\t\tif ( anyFound == null ) {\n\t\t\t\tSizzle.error( expr );\n\n\t\t\t} else {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\told = expr;\n\t}\n\n\treturn curLoop;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Utility function for retreiving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\nvar getText = Sizzle.getText = function( elem ) {\n    var i, node,\n\t\tnodeType = elem.nodeType,\n\t\tret = \"\";\n\n\tif ( nodeType ) {\n\t\tif ( nodeType === 1 || nodeType === 9 ) {\n\t\t\t// Use textContent || innerText for elements\n\t\t\tif ( typeof elem.textContent === 'string' ) {\n\t\t\t\treturn elem.textContent;\n\t\t\t} else if ( typeof elem.innerText === 'string' ) {\n\t\t\t\t// Replace IE's carriage returns\n\t\t\t\treturn elem.innerText.replace( rReturn, '' );\n\t\t\t} else {\n\t\t\t\t// Traverse it's children\n\t\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling) {\n\t\t\t\t\tret += getText( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\t\treturn elem.nodeValue;\n\t\t}\n\t} else {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\tfor ( i = 0; (node = elem[i]); i++ ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tif ( node.nodeType !== 8 ) {\n\t\t\t\tret += getText( node );\n\t\t\t}\n\t\t}\n\t}\n\treturn ret;\n};\n\nvar Expr = Sizzle.selectors = {\n\torder: [ \"ID\", \"NAME\", \"TAG\" ],\n\n\tmatch: {\n\t\tID: /#((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)/,\n\t\tCLASS: /\\.((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)/,\n\t\tNAME: /\\[name=['\"]*((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)['\"]*\\]/,\n\t\tATTR: /\\[\\s*((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)\\s*(?:(\\S?=)\\s*(?:(['\"])(.*?)\\3|(#?(?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)*)|)|)\\s*\\]/,\n\t\tTAG: /^((?:[\\w\\u00c0-\\uFFFF\\*\\-]|\\\\.)+)/,\n\t\tCHILD: /:(only|nth|last|first)-child(?:\\(\\s*(even|odd|(?:[+\\-]?\\d+|(?:[+\\-]?\\d*)?n\\s*(?:[+\\-]\\s*\\d+)?))\\s*\\))?/,\n\t\tPOS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\\((\\d*)\\))?(?=[^\\-]|$)/,\n\t\tPSEUDO: /:((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)(?:\\((['\"]?)((?:\\([^\\)]+\\)|[^\\(\\)]*)+)\\2\\))?/\n\t},\n\n\tleftMatch: {},\n\n\tattrMap: {\n\t\t\"class\": \"className\",\n\t\t\"for\": \"htmlFor\"\n\t},\n\n\tattrHandle: {\n\t\thref: function( elem ) {\n\t\t\treturn elem.getAttribute( \"href\" );\n\t\t},\n\t\ttype: function( elem ) {\n\t\t\treturn elem.getAttribute( \"type\" );\n\t\t}\n\t},\n\n\trelative: {\n\t\t\"+\": function(checkSet, part){\n\t\t\tvar isPartStr = typeof part === \"string\",\n\t\t\t\tisTag = isPartStr && !rNonWord.test( part ),\n\t\t\t\tisPartStrNotTag = isPartStr && !isTag;\n\n\t\t\tif ( isTag ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t}\n\n\t\t\tfor ( var i = 0, l = checkSet.length, elem; i < l; i++ ) {\n\t\t\t\tif ( (elem = checkSet[i]) ) {\n\t\t\t\t\twhile ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {}\n\n\t\t\t\t\tcheckSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ?\n\t\t\t\t\t\telem || false :\n\t\t\t\t\t\telem === part;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( isPartStrNotTag ) {\n\t\t\t\tSizzle.filter( part, checkSet, true );\n\t\t\t}\n\t\t},\n\n\t\t\">\": function( checkSet, part ) {\n\t\t\tvar elem,\n\t\t\t\tisPartStr = typeof part === \"string\",\n\t\t\t\ti = 0,\n\t\t\t\tl = checkSet.length;\n\n\t\t\tif ( isPartStr && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\telem = checkSet[i];\n\n\t\t\t\t\tif ( elem ) {\n\t\t\t\t\t\tvar parent = elem.parentNode;\n\t\t\t\t\t\tcheckSet[i] = parent.nodeName.toLowerCase() === part ? parent : false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\telem = checkSet[i];\n\n\t\t\t\t\tif ( elem ) {\n\t\t\t\t\t\tcheckSet[i] = isPartStr ?\n\t\t\t\t\t\t\telem.parentNode :\n\t\t\t\t\t\t\telem.parentNode === part;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( isPartStr ) {\n\t\t\t\t\tSizzle.filter( part, checkSet, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t\"\": function(checkSet, part, isXML){\n\t\t\tvar nodeCheck,\n\t\t\t\tdoneName = done++,\n\t\t\t\tcheckFn = dirCheck;\n\n\t\t\tif ( typeof part === \"string\" && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t\tnodeCheck = part;\n\t\t\t\tcheckFn = dirNodeCheck;\n\t\t\t}\n\n\t\t\tcheckFn( \"parentNode\", part, doneName, checkSet, nodeCheck, isXML );\n\t\t},\n\n\t\t\"~\": function( checkSet, part, isXML ) {\n\t\t\tvar nodeCheck,\n\t\t\t\tdoneName = done++,\n\t\t\t\tcheckFn = dirCheck;\n\n\t\t\tif ( typeof part === \"string\" && !rNonWord.test( part ) ) {\n\t\t\t\tpart = part.toLowerCase();\n\t\t\t\tnodeCheck = part;\n\t\t\t\tcheckFn = dirNodeCheck;\n\t\t\t}\n\n\t\t\tcheckFn( \"previousSibling\", part, doneName, checkSet, nodeCheck, isXML );\n\t\t}\n\t},\n\n\tfind: {\n\t\tID: function( match, context, isXML ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && !isXML ) {\n\t\t\t\tvar m = context.getElementById(match[1]);\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [m] : [];\n\t\t\t}\n\t\t},\n\n\t\tNAME: function( match, context ) {\n\t\t\tif ( typeof context.getElementsByName !== \"undefined\" ) {\n\t\t\t\tvar ret = [],\n\t\t\t\t\tresults = context.getElementsByName( match[1] );\n\n\t\t\t\tfor ( var i = 0, l = results.length; i < l; i++ ) {\n\t\t\t\t\tif ( results[i].getAttribute(\"name\") === match[1] ) {\n\t\t\t\t\t\tret.push( results[i] );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn ret.length === 0 ? null : ret;\n\t\t\t}\n\t\t},\n\n\t\tTAG: function( match, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( match[1] );\n\t\t\t}\n\t\t}\n\t},\n\tpreFilter: {\n\t\tCLASS: function( match, curLoop, inplace, result, not, isXML ) {\n\t\t\tmatch = \" \" + match[1].replace( rBackslash, \"\" ) + \" \";\n\n\t\t\tif ( isXML ) {\n\t\t\t\treturn match;\n\t\t\t}\n\n\t\t\tfor ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) {\n\t\t\t\tif ( elem ) {\n\t\t\t\t\tif ( not ^ (elem.className && (\" \" + elem.className + \" \").replace(/[\\t\\n\\r]/g, \" \").indexOf(match) >= 0) ) {\n\t\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\t\tresult.push( elem );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if ( inplace ) {\n\t\t\t\t\t\tcurLoop[i] = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\tID: function( match ) {\n\t\t\treturn match[1].replace( rBackslash, \"\" );\n\t\t},\n\n\t\tTAG: function( match, curLoop ) {\n\t\t\treturn match[1].replace( rBackslash, \"\" ).toLowerCase();\n\t\t},\n\n\t\tCHILD: function( match ) {\n\t\t\tif ( match[1] === \"nth\" ) {\n\t\t\t\tif ( !match[2] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\tmatch[2] = match[2].replace(/^\\+|\\s*/g, '');\n\n\t\t\t\t// parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6'\n\t\t\t\tvar test = /(-?)(\\d*)(?:n([+\\-]?\\d*))?/.exec(\n\t\t\t\t\tmatch[2] === \"even\" && \"2n\" || match[2] === \"odd\" && \"2n+1\" ||\n\t\t\t\t\t!/\\D/.test( match[2] ) && \"0n+\" + match[2] || match[2]);\n\n\t\t\t\t// calculate the numbers (first)n+(last) including if they are negative\n\t\t\t\tmatch[2] = (test[1] + (test[2] || 1)) - 0;\n\t\t\t\tmatch[3] = test[3] - 0;\n\t\t\t}\n\t\t\telse if ( match[2] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\t// TODO: Move to normal caching system\n\t\t\tmatch[0] = done++;\n\n\t\t\treturn match;\n\t\t},\n\n\t\tATTR: function( match, curLoop, inplace, result, not, isXML ) {\n\t\t\tvar name = match[1] = match[1].replace( rBackslash, \"\" );\n\t\t\t\n\t\t\tif ( !isXML && Expr.attrMap[name] ) {\n\t\t\t\tmatch[1] = Expr.attrMap[name];\n\t\t\t}\n\n\t\t\t// Handle if an un-quoted value was used\n\t\t\tmatch[4] = ( match[4] || match[5] || \"\" ).replace( rBackslash, \"\" );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[4] = \" \" + match[4] + \" \";\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\tPSEUDO: function( match, curLoop, inplace, result, not ) {\n\t\t\tif ( match[1] === \"not\" ) {\n\t\t\t\t// If we're dealing with a complex expression, or a simple one\n\t\t\t\tif ( ( chunker.exec(match[3]) || \"\" ).length > 1 || /^\\w/.test(match[3]) ) {\n\t\t\t\t\tmatch[3] = Sizzle(match[3], null, null, curLoop);\n\n\t\t\t\t} else {\n\t\t\t\t\tvar ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not);\n\n\t\t\t\t\tif ( !inplace ) {\n\t\t\t\t\t\tresult.push.apply( result, ret );\n\t\t\t\t\t}\n\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t} else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\t\n\t\t\treturn match;\n\t\t},\n\n\t\tPOS: function( match ) {\n\t\t\tmatch.unshift( true );\n\n\t\t\treturn match;\n\t\t}\n\t},\n\t\n\tfilters: {\n\t\tenabled: function( elem ) {\n\t\t\treturn elem.disabled === false && elem.type !== \"hidden\";\n\t\t},\n\n\t\tdisabled: function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\tchecked: function( elem ) {\n\t\t\treturn elem.checked === true;\n\t\t},\n\t\t\n\t\tselected: function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\t\t\t\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\tparent: function( elem ) {\n\t\t\treturn !!elem.firstChild;\n\t\t},\n\n\t\tempty: function( elem ) {\n\t\t\treturn !elem.firstChild;\n\t\t},\n\n\t\thas: function( elem, i, match ) {\n\t\t\treturn !!Sizzle( match[3], elem ).length;\n\t\t},\n\n\t\theader: function( elem ) {\n\t\t\treturn (/h\\d/i).test( elem.nodeName );\n\t\t},\n\n\t\ttext: function( elem ) {\n\t\t\tvar attr = elem.getAttribute( \"type\" ), type = elem.type;\n\t\t\t// IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) \n\t\t\t// use getAttribute instead to test this case\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"text\" === type && ( attr === type || attr === null );\n\t\t},\n\n\t\tradio: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"radio\" === elem.type;\n\t\t},\n\n\t\tcheckbox: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"checkbox\" === elem.type;\n\t\t},\n\n\t\tfile: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"file\" === elem.type;\n\t\t},\n\n\t\tpassword: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"password\" === elem.type;\n\t\t},\n\n\t\tsubmit: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn (name === \"input\" || name === \"button\") && \"submit\" === elem.type;\n\t\t},\n\n\t\timage: function( elem ) {\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" && \"image\" === elem.type;\n\t\t},\n\n\t\treset: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn (name === \"input\" || name === \"button\") && \"reset\" === elem.type;\n\t\t},\n\n\t\tbutton: function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && \"button\" === elem.type || name === \"button\";\n\t\t},\n\n\t\tinput: function( elem ) {\n\t\t\treturn (/input|select|textarea|button/i).test( elem.nodeName );\n\t\t},\n\n\t\tfocus: function( elem ) {\n\t\t\treturn elem === elem.ownerDocument.activeElement;\n\t\t}\n\t},\n\tsetFilters: {\n\t\tfirst: function( elem, i ) {\n\t\t\treturn i === 0;\n\t\t},\n\n\t\tlast: function( elem, i, match, array ) {\n\t\t\treturn i === array.length - 1;\n\t\t},\n\n\t\teven: function( elem, i ) {\n\t\t\treturn i % 2 === 0;\n\t\t},\n\n\t\todd: function( elem, i ) {\n\t\t\treturn i % 2 === 1;\n\t\t},\n\n\t\tlt: function( elem, i, match ) {\n\t\t\treturn i < match[3] - 0;\n\t\t},\n\n\t\tgt: function( elem, i, match ) {\n\t\t\treturn i > match[3] - 0;\n\t\t},\n\n\t\tnth: function( elem, i, match ) {\n\t\t\treturn match[3] - 0 === i;\n\t\t},\n\n\t\teq: function( elem, i, match ) {\n\t\t\treturn match[3] - 0 === i;\n\t\t}\n\t},\n\tfilter: {\n\t\tPSEUDO: function( elem, match, i, array ) {\n\t\t\tvar name = match[1],\n\t\t\t\tfilter = Expr.filters[ name ];\n\n\t\t\tif ( filter ) {\n\t\t\t\treturn filter( elem, i, match, array );\n\n\t\t\t} else if ( name === \"contains\" ) {\n\t\t\t\treturn (elem.textContent || elem.innerText || getText([ elem ]) || \"\").indexOf(match[3]) >= 0;\n\n\t\t\t} else if ( name === \"not\" ) {\n\t\t\t\tvar not = match[3];\n\n\t\t\t\tfor ( var j = 0, l = not.length; j < l; j++ ) {\n\t\t\t\t\tif ( not[j] === elem ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn true;\n\n\t\t\t} else {\n\t\t\t\tSizzle.error( name );\n\t\t\t}\n\t\t},\n\n\t\tCHILD: function( elem, match ) {\n\t\t\tvar first, last,\n\t\t\t\tdoneName, parent, cache,\n\t\t\t\tcount, diff,\n\t\t\t\ttype = match[1],\n\t\t\t\tnode = elem;\n\n\t\t\tswitch ( type ) {\n\t\t\t\tcase \"only\":\n\t\t\t\tcase \"first\":\n\t\t\t\t\twhile ( (node = node.previousSibling) )\t {\n\t\t\t\t\t\tif ( node.nodeType === 1 ) { \n\t\t\t\t\t\t\treturn false; \n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( type === \"first\" ) { \n\t\t\t\t\t\treturn true; \n\t\t\t\t\t}\n\n\t\t\t\t\tnode = elem;\n\n\t\t\t\tcase \"last\":\n\t\t\t\t\twhile ( (node = node.nextSibling) )\t {\n\t\t\t\t\t\tif ( node.nodeType === 1 ) { \n\t\t\t\t\t\t\treturn false; \n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn true;\n\n\t\t\t\tcase \"nth\":\n\t\t\t\t\tfirst = match[2];\n\t\t\t\t\tlast = match[3];\n\n\t\t\t\t\tif ( first === 1 && last === 0 ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tdoneName = match[0];\n\t\t\t\t\tparent = elem.parentNode;\n\t\n\t\t\t\t\tif ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) {\n\t\t\t\t\t\tcount = 0;\n\t\t\t\t\t\t\n\t\t\t\t\t\tfor ( node = parent.firstChild; node; node = node.nextSibling ) {\n\t\t\t\t\t\t\tif ( node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\tnode.nodeIndex = ++count;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} \n\n\t\t\t\t\t\tparent[ expando ] = doneName;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tdiff = elem.nodeIndex - last;\n\n\t\t\t\t\tif ( first === 0 ) {\n\t\t\t\t\t\treturn diff === 0;\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tID: function( elem, match ) {\n\t\t\treturn elem.nodeType === 1 && elem.getAttribute(\"id\") === match;\n\t\t},\n\n\t\tTAG: function( elem, match ) {\n\t\t\treturn (match === \"*\" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match;\n\t\t},\n\t\t\n\t\tCLASS: function( elem, match ) {\n\t\t\treturn (\" \" + (elem.className || elem.getAttribute(\"class\")) + \" \")\n\t\t\t\t.indexOf( match ) > -1;\n\t\t},\n\n\t\tATTR: function( elem, match ) {\n\t\t\tvar name = match[1],\n\t\t\t\tresult = Sizzle.attr ?\n\t\t\t\t\tSizzle.attr( elem, name ) :\n\t\t\t\t\tExpr.attrHandle[ name ] ?\n\t\t\t\t\tExpr.attrHandle[ name ]( elem ) :\n\t\t\t\t\telem[ name ] != null ?\n\t\t\t\t\t\telem[ name ] :\n\t\t\t\t\t\telem.getAttribute( name ),\n\t\t\t\tvalue = result + \"\",\n\t\t\t\ttype = match[2],\n\t\t\t\tcheck = match[4];\n\n\t\t\treturn result == null ?\n\t\t\t\ttype === \"!=\" :\n\t\t\t\t!type && Sizzle.attr ?\n\t\t\t\tresult != null :\n\t\t\t\ttype === \"=\" ?\n\t\t\t\tvalue === check :\n\t\t\t\ttype === \"*=\" ?\n\t\t\t\tvalue.indexOf(check) >= 0 :\n\t\t\t\ttype === \"~=\" ?\n\t\t\t\t(\" \" + value + \" \").indexOf(check) >= 0 :\n\t\t\t\t!check ?\n\t\t\t\tvalue && result !== false :\n\t\t\t\ttype === \"!=\" ?\n\t\t\t\tvalue !== check :\n\t\t\t\ttype === \"^=\" ?\n\t\t\t\tvalue.indexOf(check) === 0 :\n\t\t\t\ttype === \"$=\" ?\n\t\t\t\tvalue.substr(value.length - check.length) === check :\n\t\t\t\ttype === \"|=\" ?\n\t\t\t\tvalue === check || value.substr(0, check.length + 1) === check + \"-\" :\n\t\t\t\tfalse;\n\t\t},\n\n\t\tPOS: function( elem, match, i, array ) {\n\t\t\tvar name = match[2],\n\t\t\t\tfilter = Expr.setFilters[ name ];\n\n\t\t\tif ( filter ) {\n\t\t\t\treturn filter( elem, i, match, array );\n\t\t\t}\n\t\t}\n\t}\n};\n\nvar origPOS = Expr.match.POS,\n\tfescape = function(all, num){\n\t\treturn \"\\\\\" + (num - 0 + 1);\n\t};\n\nfor ( var type in Expr.match ) {\n\tExpr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\\[]*\\])(?![^\\(]*\\))/.source) );\n\tExpr.leftMatch[ type ] = new RegExp( /(^(?:.|\\r|\\n)*?)/.source + Expr.match[ type ].source.replace(/\\\\(\\d+)/g, fescape) );\n}\n\nvar makeArray = function( array, results ) {\n\tarray = Array.prototype.slice.call( array, 0 );\n\n\tif ( results ) {\n\t\tresults.push.apply( results, array );\n\t\treturn results;\n\t}\n\t\n\treturn array;\n};\n\n// Perform a simple check to determine if the browser is capable of\n// converting a NodeList to an array using builtin methods.\n// Also verifies that the returned array holds DOM nodes\n// (which is not the case in the Blackberry browser)\ntry {\n\tArray.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType;\n\n// Provide a fallback method if it does not work\n} catch( e ) {\n\tmakeArray = function( array, results ) {\n\t\tvar i = 0,\n\t\t\tret = results || [];\n\n\t\tif ( toString.call(array) === \"[object Array]\" ) {\n\t\t\tArray.prototype.push.apply( ret, array );\n\n\t\t} else {\n\t\t\tif ( typeof array.length === \"number\" ) {\n\t\t\t\tfor ( var l = array.length; i < l; i++ ) {\n\t\t\t\t\tret.push( array[i] );\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\tfor ( ; array[i]; i++ ) {\n\t\t\t\t\tret.push( array[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n}\n\nvar sortOrder, siblingCheck;\n\nif ( document.documentElement.compareDocumentPosition ) {\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tif ( !a.compareDocumentPosition || !b.compareDocumentPosition ) {\n\t\t\treturn a.compareDocumentPosition ? -1 : 1;\n\t\t}\n\n\t\treturn a.compareDocumentPosition(b) & 4 ? -1 : 1;\n\t};\n\n} else {\n\tsortOrder = function( a, b ) {\n\t\t// The nodes are identical, we can exit early\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\n\t\t// Fallback to using sourceIndex (in IE) if it's available on both nodes\n\t\t} else if ( a.sourceIndex && b.sourceIndex ) {\n\t\t\treturn a.sourceIndex - b.sourceIndex;\n\t\t}\n\n\t\tvar al, bl,\n\t\t\tap = [],\n\t\t\tbp = [],\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tcur = aup;\n\n\t\t// If the nodes are siblings (or identical) we can do a quick check\n\t\tif ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\n\t\t// If no parents were found then the nodes are disconnected\n\t\t} else if ( !aup ) {\n\t\t\treturn -1;\n\n\t\t} else if ( !bup ) {\n\t\t\treturn 1;\n\t\t}\n\n\t\t// Otherwise they're somewhere else in the tree so we need\n\t\t// to build up a full list of the parentNodes for comparison\n\t\twhile ( cur ) {\n\t\t\tap.unshift( cur );\n\t\t\tcur = cur.parentNode;\n\t\t}\n\n\t\tcur = bup;\n\n\t\twhile ( cur ) {\n\t\t\tbp.unshift( cur );\n\t\t\tcur = cur.parentNode;\n\t\t}\n\n\t\tal = ap.length;\n\t\tbl = bp.length;\n\n\t\t// Start walking down the tree looking for a discrepancy\n\t\tfor ( var i = 0; i < al && i < bl; i++ ) {\n\t\t\tif ( ap[i] !== bp[i] ) {\n\t\t\t\treturn siblingCheck( ap[i], bp[i] );\n\t\t\t}\n\t\t}\n\n\t\t// We ended someplace up the tree so do a sibling check\n\t\treturn i === al ?\n\t\t\tsiblingCheck( a, bp[i], -1 ) :\n\t\t\tsiblingCheck( ap[i], b, 1 );\n\t};\n\n\tsiblingCheck = function( a, b, ret ) {\n\t\tif ( a === b ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tvar cur = a.nextSibling;\n\n\t\twhile ( cur ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\tcur = cur.nextSibling;\n\t\t}\n\n\t\treturn 1;\n\t};\n}\n\n// Check to see if the browser returns elements by name when\n// querying by getElementById (and provide a workaround)\n(function(){\n\t// We're going to inject a fake input element with a specified name\n\tvar form = document.createElement(\"div\"),\n\t\tid = \"script\" + (new Date()).getTime(),\n\t\troot = document.documentElement;\n\n\tform.innerHTML = \"<a name='\" + id + \"'/>\";\n\n\t// Inject it into the root element, check its status, and remove it quickly\n\troot.insertBefore( form, root.firstChild );\n\n\t// The workaround has to do additional checks after a getElementById\n\t// Which slows things down for other browsers (hence the branching)\n\tif ( document.getElementById( id ) ) {\n\t\tExpr.find.ID = function( match, context, isXML ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && !isXML ) {\n\t\t\t\tvar m = context.getElementById(match[1]);\n\n\t\t\t\treturn m ?\n\t\t\t\t\tm.id === match[1] || typeof m.getAttributeNode !== \"undefined\" && m.getAttributeNode(\"id\").nodeValue === match[1] ?\n\t\t\t\t\t\t[m] :\n\t\t\t\t\t\tundefined :\n\t\t\t\t\t[];\n\t\t\t}\n\t\t};\n\n\t\tExpr.filter.ID = function( elem, match ) {\n\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\n\t\t\treturn elem.nodeType === 1 && node && node.nodeValue === match;\n\t\t};\n\t}\n\n\troot.removeChild( form );\n\n\t// release memory in IE\n\troot = form = null;\n})();\n\n(function(){\n\t// Check to see if the browser returns only elements\n\t// when doing getElementsByTagName(\"*\")\n\n\t// Create a fake element\n\tvar div = document.createElement(\"div\");\n\tdiv.appendChild( document.createComment(\"\") );\n\n\t// Make sure no comments are found\n\tif ( div.getElementsByTagName(\"*\").length > 0 ) {\n\t\tExpr.find.TAG = function( match, context ) {\n\t\t\tvar results = context.getElementsByTagName( match[1] );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( match[1] === \"*\" ) {\n\t\t\t\tvar tmp = [];\n\n\t\t\t\tfor ( var i = 0; results[i]; i++ ) {\n\t\t\t\t\tif ( results[i].nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( results[i] );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tresults = tmp;\n\t\t\t}\n\n\t\t\treturn results;\n\t\t};\n\t}\n\n\t// Check to see if an attribute returns normalized href attributes\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\n\tif ( div.firstChild && typeof div.firstChild.getAttribute !== \"undefined\" &&\n\t\t\tdiv.firstChild.getAttribute(\"href\") !== \"#\" ) {\n\n\t\tExpr.attrHandle.href = function( elem ) {\n\t\t\treturn elem.getAttribute( \"href\", 2 );\n\t\t};\n\t}\n\n\t// release memory in IE\n\tdiv = null;\n})();\n\nif ( document.querySelectorAll ) {\n\t(function(){\n\t\tvar oldSizzle = Sizzle,\n\t\t\tdiv = document.createElement(\"div\"),\n\t\t\tid = \"__sizzle__\";\n\n\t\tdiv.innerHTML = \"<p class='TEST'></p>\";\n\n\t\t// Safari can't handle uppercase or unicode characters when\n\t\t// in quirks mode.\n\t\tif ( div.querySelectorAll && div.querySelectorAll(\".TEST\").length === 0 ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tSizzle = function( query, context, extra, seed ) {\n\t\t\tcontext = context || document;\n\n\t\t\t// Only use querySelectorAll on non-XML documents\n\t\t\t// (ID selectors don't work in non-HTML documents)\n\t\t\tif ( !seed && !Sizzle.isXML(context) ) {\n\t\t\t\t// See if we find a selector to speed up\n\t\t\t\tvar match = /^(\\w+$)|^\\.([\\w\\-]+$)|^#([\\w\\-]+$)/.exec( query );\n\t\t\t\t\n\t\t\t\tif ( match && (context.nodeType === 1 || context.nodeType === 9) ) {\n\t\t\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t\t\tif ( match[1] ) {\n\t\t\t\t\t\treturn makeArray( context.getElementsByTagName( query ), extra );\n\t\t\t\t\t\n\t\t\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t\t\t} else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) {\n\t\t\t\t\t\treturn makeArray( context.getElementsByClassName( match[2] ), extra );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif ( context.nodeType === 9 ) {\n\t\t\t\t\t// Speed-up: Sizzle(\"body\")\n\t\t\t\t\t// The body element only exists once, optimize finding it\n\t\t\t\t\tif ( query === \"body\" && context.body ) {\n\t\t\t\t\t\treturn makeArray( [ context.body ], extra );\n\t\t\t\t\t\t\n\t\t\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\t\t\t} else if ( match && match[3] ) {\n\t\t\t\t\t\tvar elem = context.getElementById( match[3] );\n\n\t\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === match[3] ) {\n\t\t\t\t\t\t\t\treturn makeArray( [ elem ], extra );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn makeArray( [], extra );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\ttry {\n\t\t\t\t\t\treturn makeArray( context.querySelectorAll(query), extra );\n\t\t\t\t\t} catch(qsaError) {}\n\n\t\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t\t// IE 8 doesn't work on object elements\n\t\t\t\t} else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\t\tvar oldContext = context,\n\t\t\t\t\t\told = context.getAttribute( \"id\" ),\n\t\t\t\t\t\tnid = old || id,\n\t\t\t\t\t\thasParent = context.parentNode,\n\t\t\t\t\t\trelativeHierarchySelector = /^\\s*[+~]/.test( query );\n\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnid = nid.replace( /'/g, \"\\\\$&\" );\n\t\t\t\t\t}\n\t\t\t\t\tif ( relativeHierarchySelector && hasParent ) {\n\t\t\t\t\t\tcontext = context.parentNode;\n\t\t\t\t\t}\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tif ( !relativeHierarchySelector || hasParent ) {\n\t\t\t\t\t\t\treturn makeArray( context.querySelectorAll( \"[id='\" + nid + \"'] \" + query ), extra );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} catch(pseudoError) {\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\t\toldContext.removeAttribute( \"id\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\n\t\t\treturn oldSizzle(query, context, extra, seed);\n\t\t};\n\n\t\tfor ( var prop in oldSizzle ) {\n\t\t\tSizzle[ prop ] = oldSizzle[ prop ];\n\t\t}\n\n\t\t// release memory in IE\n\t\tdiv = null;\n\t})();\n}\n\n(function(){\n\tvar html = document.documentElement,\n\t\tmatches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector;\n\n\tif ( matches ) {\n\t\t// Check to see if it's possible to do matchesSelector\n\t\t// on a disconnected node (IE 9 fails this)\n\t\tvar disconnectedMatch = !matches.call( document.createElement( \"div\" ), \"div\" ),\n\t\t\tpseudoWorks = false;\n\n\t\ttry {\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( document.documentElement, \"[test!='']:sizzle\" );\n\t\n\t\t} catch( pseudoError ) {\n\t\t\tpseudoWorks = true;\n\t\t}\n\n\t\tSizzle.matchesSelector = function( node, expr ) {\n\t\t\t// Make sure that attribute selectors are quoted\n\t\t\texpr = expr.replace(/\\=\\s*([^'\"\\]]*)\\s*\\]/g, \"='$1']\");\n\n\t\t\tif ( !Sizzle.isXML( node ) ) {\n\t\t\t\ttry { \n\t\t\t\t\tif ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) {\n\t\t\t\t\t\tvar ret = matches.call( node, expr );\n\n\t\t\t\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\t\t\t\tif ( ret || !disconnectedMatch ||\n\t\t\t\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t\t\t\t// fragment in IE 9, so check for that\n\t\t\t\t\t\t\t\tnode.document && node.document.nodeType !== 11 ) {\n\t\t\t\t\t\t\treturn ret;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\treturn Sizzle(expr, null, null, [node]).length > 0;\n\t\t};\n\t}\n})();\n\n(function(){\n\tvar div = document.createElement(\"div\");\n\n\tdiv.innerHTML = \"<div class='test e'></div><div class='test'></div>\";\n\n\t// Opera can't find a second classname (in 9.6)\n\t// Also, make sure that getElementsByClassName actually exists\n\tif ( !div.getElementsByClassName || div.getElementsByClassName(\"e\").length === 0 ) {\n\t\treturn;\n\t}\n\n\t// Safari caches class attributes, doesn't catch changes (in 3.2)\n\tdiv.lastChild.className = \"e\";\n\n\tif ( div.getElementsByClassName(\"e\").length === 1 ) {\n\t\treturn;\n\t}\n\t\n\tExpr.order.splice(1, 0, \"CLASS\");\n\tExpr.find.CLASS = function( match, context, isXML ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && !isXML ) {\n\t\t\treturn context.getElementsByClassName(match[1]);\n\t\t}\n\t};\n\n\t// release memory in IE\n\tdiv = null;\n})();\n\nfunction dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {\n\tfor ( var i = 0, l = checkSet.length; i < l; i++ ) {\n\t\tvar elem = checkSet[i];\n\n\t\tif ( elem ) {\n\t\t\tvar match = false;\n\n\t\t\telem = elem[dir];\n\n\t\t\twhile ( elem ) {\n\t\t\t\tif ( elem[ expando ] === doneName ) {\n\t\t\t\t\tmatch = checkSet[elem.sizset];\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeType === 1 && !isXML ){\n\t\t\t\t\telem[ expando ] = doneName;\n\t\t\t\t\telem.sizset = i;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeName.toLowerCase() === cur ) {\n\t\t\t\t\tmatch = elem;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\telem = elem[dir];\n\t\t\t}\n\n\t\t\tcheckSet[i] = match;\n\t\t}\n\t}\n}\n\nfunction dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {\n\tfor ( var i = 0, l = checkSet.length; i < l; i++ ) {\n\t\tvar elem = checkSet[i];\n\n\t\tif ( elem ) {\n\t\t\tvar match = false;\n\t\t\t\n\t\t\telem = elem[dir];\n\n\t\t\twhile ( elem ) {\n\t\t\t\tif ( elem[ expando ] === doneName ) {\n\t\t\t\t\tmatch = checkSet[elem.sizset];\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\tif ( !isXML ) {\n\t\t\t\t\t\telem[ expando ] = doneName;\n\t\t\t\t\t\telem.sizset = i;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( typeof cur !== \"string\" ) {\n\t\t\t\t\t\tif ( elem === cur ) {\n\t\t\t\t\t\t\tmatch = true;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if ( Sizzle.filter( cur, [elem] ).length > 0 ) {\n\t\t\t\t\t\tmatch = elem;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\telem = elem[dir];\n\t\t\t}\n\n\t\t\tcheckSet[i] = match;\n\t\t}\n\t}\n}\n\nif ( document.documentElement.contains ) {\n\tSizzle.contains = function( a, b ) {\n\t\treturn a !== b && (a.contains ? a.contains(b) : true);\n\t};\n\n} else if ( document.documentElement.compareDocumentPosition ) {\n\tSizzle.contains = function( a, b ) {\n\t\treturn !!(a.compareDocumentPosition(b) & 16);\n\t};\n\n} else {\n\tSizzle.contains = function() {\n\t\treturn false;\n\t};\n}\n\nSizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833) \n\tvar documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;\n\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\nvar posProcess = function( selector, context, seed ) {\n\tvar match,\n\t\ttmpSet = [],\n\t\tlater = \"\",\n\t\troot = context.nodeType ? [context] : context;\n\n\t// Position selectors must be done after the filter\n\t// And so must :not(positional) so we move all PSEUDOs to the end\n\twhile ( (match = Expr.match.PSEUDO.exec( selector )) ) {\n\t\tlater += match[0];\n\t\tselector = selector.replace( Expr.match.PSEUDO, \"\" );\n\t}\n\n\tselector = Expr.relative[selector] ? selector + \"*\" : selector;\n\n\tfor ( var i = 0, l = root.length; i < l; i++ ) {\n\t\tSizzle( selector, root[i], tmpSet, seed );\n\t}\n\n\treturn Sizzle.filter( later, tmpSet );\n};\n\n// EXPOSE\n// Override sizzle attribute retrieval\nSizzle.attr = jQuery.attr;\nSizzle.selectors.attrMap = {};\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.filters;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n})();\n\n\nvar runtil = /Until$/,\n\trparentsprev = /^(?:parents|prevUntil|prevAll)/,\n\t// Note: This RegExp should be improved, or likely pulled from Sizzle\n\trmultiselector = /,/,\n\tisSimple = /^.[^:#\\[\\.,]*$/,\n\tslice = Array.prototype.slice,\n\tPOS = jQuery.expr.match.POS,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar self = this,\n\t\t\ti, l;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0, l = self.length; i < l; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tvar ret = this.pushStack( \"\", \"find\", selector ),\n\t\t\tlength, n, r;\n\n\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\tlength = ret.length;\n\t\t\tjQuery.find( selector, this[i], ret );\n\n\t\t\tif ( i > 0 ) {\n\t\t\t\t// Make sure that the results are unique\n\t\t\t\tfor ( n = length; n < ret.length; n++ ) {\n\t\t\t\t\tfor ( r = 0; r < length; r++ ) {\n\t\t\t\t\t\tif ( ret[r] === ret[n] ) {\n\t\t\t\t\t\t\tret.splice(n--, 1);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\thas: function( target ) {\n\t\tvar targets = jQuery( target );\n\t\treturn this.filter(function() {\n\t\t\tfor ( var i = 0, l = targets.length; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector, false), \"not\", selector);\n\t},\n\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector, true), \"filter\", selector );\n\t},\n\n\tis: function( selector ) {\n\t\treturn !!selector && ( \n\t\t\ttypeof selector === \"string\" ?\n\t\t\t\t// If this is a positional selector, check membership in the returned set\n\t\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\t\tPOS.test( selector ) ? \n\t\t\t\t\tjQuery( selector, this.context ).index( this[0] ) >= 0 :\n\t\t\t\t\tjQuery.filter( selector, this ).length > 0 :\n\t\t\t\tthis.filter( selector ).length > 0 );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar ret = [], i, l, cur = this[0];\n\t\t\n\t\t// Array (deprecated as of jQuery 1.7)\n\t\tif ( jQuery.isArray( selectors ) ) {\n\t\t\tvar level = 1;\n\n\t\t\twhile ( cur && cur.ownerDocument && cur !== context ) {\n\t\t\t\tfor ( i = 0; i < selectors.length; i++ ) {\n\n\t\t\t\t\tif ( jQuery( cur ).is( selectors[ i ] ) ) {\n\t\t\t\t\t\tret.push({ selector: selectors[ i ], elem: cur, level: level });\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcur = cur.parentNode;\n\t\t\t\tlevel++;\n\t\t\t}\n\n\t\t\treturn ret;\n\t\t}\n\n\t\t// String\n\t\tvar pos = POS.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( i = 0, l = this.length; i < l; i++ ) {\n\t\t\tcur = this[i];\n\n\t\t\twhile ( cur ) {\n\t\t\t\tif ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) {\n\t\t\t\t\tret.push( cur );\n\t\t\t\t\tbreak;\n\n\t\t\t\t} else {\n\t\t\t\t\tcur = cur.parentNode;\n\t\t\t\t\tif ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tret = ret.length > 1 ? jQuery.unique( ret ) : ret;\n\n\t\treturn this.pushStack( ret, \"closest\", selectors );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\tvar set = typeof selector === \"string\" ?\n\t\t\t\tjQuery( selector, context ) :\n\t\t\t\tjQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),\n\t\t\tall = jQuery.merge( this.get(), set );\n\n\t\treturn this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?\n\t\t\tall :\n\t\t\tjQuery.unique( all ) );\n\t},\n\n\tandSelf: function() {\n\t\treturn this.add( this.prevObject );\n\t}\n});\n\n// A painfully simple check to see if an element is disconnected\n// from a document (should be improved, where feasible).\nfunction isDisconnected( node ) {\n\treturn !node || !node.parentNode || node.parentNode.nodeType === 11;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn jQuery.nth( elem, 2, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn jQuery.nth( elem, 2, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( elem.parentNode.firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.makeArray( elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( !runtil.test( name ) ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret;\n\n\t\tif ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) {\n\t\t\tret = ret.reverse();\n\t\t}\n\n\t\treturn this.pushStack( ret, name, slice.call( arguments ).join(\",\") );\n\t};\n});\n\njQuery.extend({\n\tfilter: function( expr, elems, not ) {\n\t\tif ( not ) {\n\t\t\texpr = \":not(\" + expr + \")\";\n\t\t}\n\n\t\treturn elems.length === 1 ?\n\t\t\tjQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] :\n\t\t\tjQuery.find.matches(expr, elems);\n\t},\n\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tnth: function( cur, result, dir, elem ) {\n\t\tresult = result || 1;\n\t\tvar num = 0;\n\n\t\tfor ( ; cur; cur = cur[dir] ) {\n\t\t\tif ( cur.nodeType === 1 && ++num === result ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\treturn cur;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, keep ) {\n\n\t// Can't pass null or undefined to indexOf in Firefox 4\n\t// Set to 0 to skip string check\n\tqualifier = qualifier || 0;\n\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep(elements, function( elem, i ) {\n\t\t\tvar retVal = !!qualifier.call( elem, i, elem );\n\t\t\treturn retVal === keep;\n\t\t});\n\n\t} else if ( qualifier.nodeType ) {\n\t\treturn jQuery.grep(elements, function( elem, i ) {\n\t\t\treturn ( elem === qualifier ) === keep;\n\t\t});\n\n\t} else if ( typeof qualifier === \"string\" ) {\n\t\tvar filtered = jQuery.grep(elements, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t});\n\n\t\tif ( isSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter(qualifier, filtered, !keep);\n\t\t} else {\n\t\t\tqualifier = jQuery.filter( qualifier, filtered );\n\t\t}\n\t}\n\n\treturn jQuery.grep(elements, function( elem, i ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;\n\t});\n}\n\n\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:\\d+|null)\"/g,\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/ig,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style)/i,\n\trnocache = /<(?:script|object|embed|option|style)/i,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")\", \"i\"),\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /\\/(java|ecma)script/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|\\-\\-)/,\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\t_default: [ 0, \"\", \"\" ]\n\t},\n\tsafeFragment = createSafeFragment( document );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// IE can't serialize <link> and <script> tags normally\nif ( !jQuery.support.htmlSerialize ) {\n\twrapMap._default = [ 1, \"div<div>\", \"</div>\" ];\n}\n\njQuery.fn.extend({\n\ttext: function( text ) {\n\t\tif ( jQuery.isFunction(text) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tvar self = jQuery( this );\n\n\t\t\t\tself.text( text.call(this, i, self.text()) );\n\t\t\t});\n\t\t}\n\n\t\tif ( typeof text !== \"object\" && text !== undefined ) {\n\t\t\treturn this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );\n\t\t}\n\n\t\treturn jQuery.text( this );\n\t},\n\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip(arguments, true, function( elem ) {\n\t\t\tif ( this.nodeType === 1 ) {\n\t\t\t\tthis.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip(arguments, true, function( elem ) {\n\t\t\tif ( this.nodeType === 1 ) {\n\t\t\t\tthis.insertBefore( elem, this.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\treturn this.domManip(arguments, false, function( elem ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t});\n\t\t} else if ( arguments.length ) {\n\t\t\tvar set = jQuery.clean( arguments );\n\t\t\tset.push.apply( set, this.toArray() );\n\t\t\treturn this.pushStack( set, \"before\", arguments );\n\t\t}\n\t},\n\n\tafter: function() {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\treturn this.domManip(arguments, false, function( elem ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t});\n\t\t} else if ( arguments.length ) {\n\t\t\tvar set = this.pushStack( this, \"after\", arguments );\n\t\t\tset.push.apply( set, jQuery.clean(arguments) );\n\t\t\treturn set;\n\t\t}\n\t},\n\n\t// keepData is for internal use only--do not document\n\tremove: function( selector, keepData ) {\n\t\tfor ( var i = 0, elem; (elem = this[i]) != null; i++ ) {\n\t\t\tif ( !selector || jQuery.filter( selector, [ elem ] ).length ) {\n\t\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\t\tjQuery.cleanData( elem.getElementsByTagName(\"*\") );\n\t\t\t\t\tjQuery.cleanData( [ elem ] );\n\t\t\t\t}\n\n\t\t\t\tif ( elem.parentNode ) {\n\t\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tfor ( var i = 0, elem; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( elem.getElementsByTagName(\"*\") );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function () {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\tif ( value === undefined ) {\n\t\t\treturn this[0] && this[0].nodeType === 1 ?\n\t\t\t\tthis[0].innerHTML.replace(rinlinejQuery, \"\") :\n\t\t\t\tnull;\n\n\t\t// See if we can take a shortcut and just use innerHTML\n\t\t} else if ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t(jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&\n\t\t\t!wrapMap[ (rtagName.exec( value ) || [\"\", \"\"])[1].toLowerCase() ] ) {\n\n\t\t\tvalue = value.replace(rxhtmlTag, \"<$1></$2>\");\n\n\t\t\ttry {\n\t\t\t\tfor ( var i = 0, l = this.length; i < l; i++ ) {\n\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\tif ( this[i].nodeType === 1 ) {\n\t\t\t\t\t\tjQuery.cleanData( this[i].getElementsByTagName(\"*\") );\n\t\t\t\t\t\tthis[i].innerHTML = value;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t} catch(e) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\n\t\t} else if ( jQuery.isFunction( value ) ) {\n\t\t\tthis.each(function(i){\n\t\t\t\tvar self = jQuery( this );\n\n\t\t\t\tself.html( value.call(this, i, self.html()) );\n\t\t\t});\n\n\t\t} else {\n\t\t\tthis.empty().append( value );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\treplaceWith: function( value ) {\n\t\tif ( this[0] && this[0].parentNode ) {\n\t\t\t// Make sure that the elements are removed from the DOM before they are inserted\n\t\t\t// this can help fix replacing a parent with child elements\n\t\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\t\treturn this.each(function(i) {\n\t\t\t\t\tvar self = jQuery(this), old = self.html();\n\t\t\t\t\tself.replaceWith( value.call( this, i, old ) );\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif ( typeof value !== \"string\" ) {\n\t\t\t\tvalue = jQuery( value ).detach();\n\t\t\t}\n\n\t\t\treturn this.each(function() {\n\t\t\t\tvar next = this.nextSibling,\n\t\t\t\t\tparent = this.parentNode;\n\n\t\t\t\tjQuery( this ).remove();\n\n\t\t\t\tif ( next ) {\n\t\t\t\t\tjQuery(next).before( value );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery(parent).append( value );\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\treturn this.length ?\n\t\t\t\tthis.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), \"replaceWith\", value ) :\n\t\t\t\tthis;\n\t\t}\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, table, callback ) {\n\t\tvar results, first, fragment, parent,\n\t\t\tvalue = args[0],\n\t\t\tscripts = [];\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === \"string\" && rchecked.test( value ) ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery(this).domManip( args, table, callback, true );\n\t\t\t});\n\t\t}\n\n\t\tif ( jQuery.isFunction(value) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tvar self = jQuery(this);\n\t\t\t\targs[0] = value.call(this, i, table ? self.html() : undefined);\n\t\t\t\tself.domManip( args, table, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\tparent = value && value.parentNode;\n\n\t\t\t// If we're in a fragment, just use that instead of building a new one\n\t\t\tif ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) {\n\t\t\t\tresults = { fragment: parent };\n\n\t\t\t} else {\n\t\t\t\tresults = jQuery.buildFragment( args, this, scripts );\n\t\t\t}\n\n\t\t\tfragment = results.fragment;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfirst = fragment = fragment.firstChild;\n\t\t\t} else {\n\t\t\t\tfirst = fragment.firstChild;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\ttable = table && jQuery.nodeName( first, \"tr\" );\n\n\t\t\t\tfor ( var i = 0, l = this.length, lastIndex = l - 1; i < l; i++ ) {\n\t\t\t\t\tcallback.call(\n\t\t\t\t\t\ttable ?\n\t\t\t\t\t\t\troot(this[i], first) :\n\t\t\t\t\t\t\tthis[i],\n\t\t\t\t\t\t// Make sure that we do not leak memory by inadvertently discarding\n\t\t\t\t\t\t// the original fragment (which might have attached data) instead of\n\t\t\t\t\t\t// using it; in addition, use the original fragment object for the last\n\t\t\t\t\t\t// item instead of first because it can end up being emptied incorrectly\n\t\t\t\t\t\t// in certain situations (Bug #8070).\n\t\t\t\t\t\t// Fragments from the fragment cache must always be cloned and never used\n\t\t\t\t\t\t// in place.\n\t\t\t\t\t\tresults.cacheable || ( l > 1 && i < lastIndex ) ?\n\t\t\t\t\t\t\tjQuery.clone( fragment, true, true ) :\n\t\t\t\t\t\t\tfragment\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( scripts.length ) {\n\t\t\t\tjQuery.each( scripts, evalScript );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\nfunction root( elem, cur ) {\n\treturn jQuery.nodeName(elem, \"table\") ?\n\t\t(elem.getElementsByTagName(\"tbody\")[0] ||\n\t\telem.appendChild(elem.ownerDocument.createElement(\"tbody\"))) :\n\t\telem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type + ( events[ type ][ i ].namespace ? \".\" : \"\" ) + events[ type ][ i ].namespace, events[ type ][ i ], events[ type ][ i ].data );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction cloneFixAttributes( src, dest ) {\n\tvar nodeName;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// clearAttributes removes the attributes, which we don't want,\n\t// but also removes the attachEvent events, which we *do* want\n\tif ( dest.clearAttributes ) {\n\t\tdest.clearAttributes();\n\t}\n\n\t// mergeAttributes, in contrast, only merges back on the\n\t// original attributes, not the events\n\tif ( dest.mergeAttributes ) {\n\t\tdest.mergeAttributes( src );\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 fail to clone children inside object elements that use\n\t// the proprietary classid attribute value (rather than the type\n\t// attribute) to identify the type of content to display\n\tif ( nodeName === \"object\" ) {\n\t\tdest.outerHTML = src.outerHTML;\n\n\t} else if ( nodeName === \"input\" && (src.type === \"checkbox\" || src.type === \"radio\") ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\t\tif ( src.checked ) {\n\t\t\tdest.defaultChecked = dest.checked = src.checked;\n\t\t}\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n\n\t// Event data gets referenced instead of copied if the expando\n\t// gets copied too\n\tdest.removeAttribute( jQuery.expando );\n}\n\njQuery.buildFragment = function( args, nodes, scripts ) {\n\tvar fragment, cacheable, cacheresults, doc,\n\tfirst = args[ 0 ];\n\n\t// nodes may contain either an explicit document object,\n\t// a jQuery collection or context object.\n\t// If nodes[0] contains a valid object to assign to doc\n\tif ( nodes && nodes[0] ) {\n\t\tdoc = nodes[0].ownerDocument || nodes[0];\n\t}\n\n\t// Ensure that an attr object doesn't incorrectly stand in as a document object\n\t// Chrome and Firefox seem to allow this to occur and will throw exception\n\t// Fixes #8950\n\tif ( !doc.createDocumentFragment ) {\n\t\tdoc = document;\n\t}\n\n\t// Only cache \"small\" (1/2 KB) HTML strings that are associated with the main document\n\t// Cloning options loses the selected state, so don't cache them\n\t// IE 6 doesn't like it when you put <object> or <embed> elements in a fragment\n\t// Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache\n\t// Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501\n\tif ( args.length === 1 && typeof first === \"string\" && first.length < 512 && doc === document &&\n\t\tfirst.charAt(0) === \"<\" && !rnocache.test( first ) &&\n\t\t(jQuery.support.checkClone || !rchecked.test( first )) &&\n\t\t(jQuery.support.html5Clone || !rnoshimcache.test( first )) ) {\n\n\t\tcacheable = true;\n\n\t\tcacheresults = jQuery.fragments[ first ];\n\t\tif ( cacheresults && cacheresults !== 1 ) {\n\t\t\tfragment = cacheresults;\n\t\t}\n\t}\n\n\tif ( !fragment ) {\n\t\tfragment = doc.createDocumentFragment();\n\t\tjQuery.clean( args, doc, fragment, scripts );\n\t}\n\n\tif ( cacheable ) {\n\t\tjQuery.fragments[ first ] = cacheresults ? fragment : 1;\n\t}\n\n\treturn { fragment: fragment, cacheable: cacheable };\n};\n\njQuery.fragments = {};\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar ret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tparent = this.length === 1 && this[0].parentNode;\n\n\t\tif ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) {\n\t\t\tinsert[ original ]( this[0] );\n\t\t\treturn this;\n\n\t\t} else {\n\t\t\tfor ( var i = 0, l = insert.length; i < l; i++ ) {\n\t\t\t\tvar elems = ( i > 0 ? this.clone(true) : this ).get();\n\t\t\t\tjQuery( insert[i] )[ original ]( elems );\n\t\t\t\tret = ret.concat( elems );\n\t\t\t}\n\n\t\t\treturn this.pushStack( ret, name, insert.selector );\n\t\t}\n\t};\n});\n\nfunction getAll( elem ) {\n\tif ( typeof elem.getElementsByTagName !== \"undefined\" ) {\n\t\treturn elem.getElementsByTagName( \"*\" );\n\n\t} else if ( typeof elem.querySelectorAll !== \"undefined\" ) {\n\t\treturn elem.querySelectorAll( \"*\" );\n\n\t} else {\n\t\treturn [];\n\t}\n}\n\n// Used in clean, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( elem.type === \"checkbox\" || elem.type === \"radio\" ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n// Finds all inputs and passes them to fixDefaultChecked\nfunction findInputs( elem ) {\n\tvar nodeName = ( elem.nodeName || \"\" ).toLowerCase();\n\tif ( nodeName === \"input\" ) {\n\t\tfixDefaultChecked( elem );\n\t// Skip scripts, get other children\n\t} else if ( nodeName !== \"script\" && typeof elem.getElementsByTagName !== \"undefined\" ) {\n\t\tjQuery.grep( elem.getElementsByTagName(\"input\"), fixDefaultChecked );\n\t}\n}\n\n// Derived From: http://www.iecss.com/shimprove/javascript/shimprove.1-0-1.js\nfunction shimCloneNode( elem ) {\n\tvar div = document.createElement( \"div\" );\n\tsafeFragment.appendChild( div );\n\n\tdiv.innerHTML = elem.outerHTML;\n\treturn div.firstChild;\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar srcElements,\n\t\t\tdestElements,\n\t\t\ti,\n\t\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t\tclone = jQuery.support.html5Clone || !rnoshimcache.test( \"<\" + elem.nodeName ) ?\n\t\t\t\telem.cloneNode( true ) :\n\t\t\t\tshimCloneNode( elem );\n\n\t\tif ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\t\t\t// IE copies events bound via attachEvent when using cloneNode.\n\t\t\t// Calling detachEvent on the clone will also remove the events\n\t\t\t// from the original. In order to get around this, we use some\n\t\t\t// proprietary methods to clear the events. Thanks to MooTools\n\t\t\t// guys for this hotness.\n\n\t\t\tcloneFixAttributes( elem, clone );\n\n\t\t\t// Using Sizzle here is crazy slow, so we use getElementsByTagName instead\n\t\t\tsrcElements = getAll( elem );\n\t\t\tdestElements = getAll( clone );\n\n\t\t\t// Weird iteration because IE will replace the length property\n\t\t\t// with an element if you are cloning the body and one of the\n\t\t\t// elements on the page has a name or id of \"length\"\n\t\t\tfor ( i = 0; srcElements[i]; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tcloneFixAttributes( srcElements[i], destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tcloneCopyEvent( elem, clone );\n\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = getAll( elem );\n\t\t\t\tdestElements = getAll( clone );\n\n\t\t\t\tfor ( i = 0; srcElements[i]; ++i ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[i], destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tsrcElements = destElements = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tclean: function( elems, context, fragment, scripts ) {\n\t\tvar checkScriptType;\n\n\t\tcontext = context || document;\n\n\t\t// !context.createElement fails in IE with an error but returns typeof 'object'\n\t\tif ( typeof context.createElement === \"undefined\" ) {\n\t\t\tcontext = context.ownerDocument || context[0] && context[0].ownerDocument || document;\n\t\t}\n\n\t\tvar ret = [], j;\n\n\t\tfor ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( typeof elem === \"number\" ) {\n\t\t\t\telem += \"\";\n\t\t\t}\n\n\t\t\tif ( !elem ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Convert html string into DOM nodes\n\t\t\tif ( typeof elem === \"string\" ) {\n\t\t\t\tif ( !rhtml.test( elem ) ) {\n\t\t\t\t\telem = context.createTextNode( elem );\n\t\t\t\t} else {\n\t\t\t\t\t// Fix \"XHTML\"-style tags in all browsers\n\t\t\t\t\telem = elem.replace(rxhtmlTag, \"<$1></$2>\");\n\n\t\t\t\t\t// Trim whitespace, otherwise indexOf won't work as expected\n\t\t\t\t\tvar tag = ( rtagName.exec( elem ) || [\"\", \"\"] )[1].toLowerCase(),\n\t\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default,\n\t\t\t\t\t\tdepth = wrap[0],\n\t\t\t\t\t\tdiv = context.createElement(\"div\");\n\n\t\t\t\t\t// Append wrapper element to unknown element safe doc fragment\n\t\t\t\t\tif ( context === document ) {\n\t\t\t\t\t\t// Use the fragment we've already created for this document\n\t\t\t\t\t\tsafeFragment.appendChild( div );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Use a fragment created with the owner document\n\t\t\t\t\t\tcreateSafeFragment( context ).appendChild( div );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Go to html and back, then peel off extra wrappers\n\t\t\t\t\tdiv.innerHTML = wrap[1] + elem + wrap[2];\n\n\t\t\t\t\t// Move to the right depth\n\t\t\t\t\twhile ( depth-- ) {\n\t\t\t\t\t\tdiv = div.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !jQuery.support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\tvar hasBody = rtbody.test(elem),\n\t\t\t\t\t\t\ttbody = tag === \"table\" && !hasBody ?\n\t\t\t\t\t\t\t\tdiv.firstChild && div.firstChild.childNodes :\n\n\t\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\t\twrap[1] === \"<table>\" && !hasBody ?\n\t\t\t\t\t\t\t\t\tdiv.childNodes :\n\t\t\t\t\t\t\t\t\t[];\n\n\t\t\t\t\t\tfor ( j = tbody.length - 1; j >= 0 ; --j ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( tbody[ j ], \"tbody\" ) && !tbody[ j ].childNodes.length ) {\n\t\t\t\t\t\t\t\ttbody[ j ].parentNode.removeChild( tbody[ j ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// IE completely kills leading whitespace when innerHTML is used\n\t\t\t\t\tif ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tdiv.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\telem = div.childNodes;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Resets defaultChecked for any radios and checkboxes\n\t\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\t\tvar len;\n\t\t\tif ( !jQuery.support.appendChecked ) {\n\t\t\t\tif ( elem[0] && typeof (len = elem.length) === \"number\" ) {\n\t\t\t\t\tfor ( j = 0; j < len; j++ ) {\n\t\t\t\t\t\tfindInputs( elem[j] );\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tfindInputs( elem );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( elem.nodeType ) {\n\t\t\t\tret.push( elem );\n\t\t\t} else {\n\t\t\t\tret = jQuery.merge( ret, elem );\n\t\t\t}\n\t\t}\n\n\t\tif ( fragment ) {\n\t\t\tcheckScriptType = function( elem ) {\n\t\t\t\treturn !elem.type || rscriptType.test( elem.type );\n\t\t\t};\n\t\t\tfor ( i = 0; ret[i]; i++ ) {\n\t\t\t\tif ( scripts && jQuery.nodeName( ret[i], \"script\" ) && (!ret[i].type || ret[i].type.toLowerCase() === \"text/javascript\") ) {\n\t\t\t\t\tscripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );\n\n\t\t\t\t} else {\n\t\t\t\t\tif ( ret[i].nodeType === 1 ) {\n\t\t\t\t\t\tvar jsTags = jQuery.grep( ret[i].getElementsByTagName( \"script\" ), checkScriptType );\n\n\t\t\t\t\t\tret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );\n\t\t\t\t\t}\n\t\t\t\t\tfragment.appendChild( ret[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, id,\n\t\t\tcache = jQuery.cache,\n\t\t\tspecial = jQuery.event.special,\n\t\t\tdeleteExpando = jQuery.support.deleteExpando;\n\n\t\tfor ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tid = elem[ jQuery.expando ];\n\n\t\t\tif ( id ) {\n\t\t\t\tdata = cache[ id ];\n\n\t\t\t\tif ( data && data.events ) {\n\t\t\t\t\tfor ( var type in data.events ) {\n\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Null the DOM reference to avoid IE6/7/8 leak (#7054)\n\t\t\t\t\tif ( data.handle ) {\n\t\t\t\t\t\tdata.handle.elem = null;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\tdelete elem[ jQuery.expando ];\n\n\t\t\t\t} else if ( elem.removeAttribute ) {\n\t\t\t\t\telem.removeAttribute( jQuery.expando );\n\t\t\t\t}\n\n\t\t\t\tdelete cache[ id ];\n\t\t\t}\n\t\t}\n\t}\n});\n\nfunction evalScript( i, elem ) {\n\tif ( elem.src ) {\n\t\tjQuery.ajax({\n\t\t\turl: elem.src,\n\t\t\tasync: false,\n\t\t\tdataType: \"script\"\n\t\t});\n\t} else {\n\t\tjQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || \"\" ).replace( rcleanScript, \"/*$0*/\" ) );\n\t}\n\n\tif ( elem.parentNode ) {\n\t\telem.parentNode.removeChild( elem );\n\t}\n}\n\n\n\n\nvar ralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity=([^)]*)/,\n\t// fixed for IE9, see #8346\n\trupper = /([A-Z]|^ms)/g,\n\trnumpx = /^-?\\d+(?:px)?$/i,\n\trnum = /^-?\\d/,\n\trrelNum = /^([\\-+])=([\\-+.\\de]+)/,\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssWidth = [ \"Left\", \"Right\" ],\n\tcssHeight = [ \"Top\", \"Bottom\" ],\n\tcurCSS,\n\n\tgetComputedStyle,\n\tcurrentStyle;\n\njQuery.fn.css = function( name, value ) {\n\t// Setting 'undefined' is a no-op\n\tif ( arguments.length === 2 && value === undefined ) {\n\t\treturn this;\n\t}\n\n\treturn jQuery.access( this, name, value, true, function( elem, name, value ) {\n\t\treturn value !== undefined ?\n\t\t\tjQuery.style( elem, name, value ) :\n\t\t\tjQuery.css( elem, name );\n\t});\n};\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\", \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\n\t\t\t\t} else {\n\t\t\t\t\treturn elem.style.opacity;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Exclude the following css properties to add px\n\tcssNumber: {\n\t\t\"fillOpacity\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": jQuery.support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, origName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style, hooks = jQuery.cssHooks[ origName ];\n\n\t\tname = jQuery.cssProps[ origName ] || origName;\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( +( ret[1] + 1) * +ret[2] ) + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that NaN and null values aren't set. See: #7116\n\t\t\tif ( value == null || type === \"number\" && isNaN( value ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value )) !== undefined ) {\n\t\t\t\t// Wrapped to prevent IE from throwing errors when 'invalid' values are provided\n\t\t\t\t// Fixes bug #5509\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra ) {\n\t\tvar ret, hooks;\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.camelCase( name );\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tname = jQuery.cssProps[ name ] || name;\n\n\t\t// cssFloat needs a special treatment\n\t\tif ( name === \"cssFloat\" ) {\n\t\t\tname = \"float\";\n\t\t}\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, true, extra )) !== undefined ) {\n\t\t\treturn ret;\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\t} else if ( curCSS ) {\n\t\t\treturn curCSS( elem, name );\n\t\t}\n\t},\n\n\t// A method for quickly swapping in/out CSS properties to get correct calculations\n\tswap: function( elem, options, callback ) {\n\t\tvar old = {};\n\n\t\t// Remember the old values, and insert the new ones\n\t\tfor ( var name in options ) {\n\t\t\told[ name ] = elem.style[ name ];\n\t\t\telem.style[ name ] = options[ name ];\n\t\t}\n\n\t\tcallback.call( elem );\n\n\t\t// Revert the old values\n\t\tfor ( name in options ) {\n\t\t\telem.style[ name ] = old[ name ];\n\t\t}\n\t}\n});\n\n// DEPRECATED, Use jQuery.css() instead\njQuery.curCSS = jQuery.css;\n\njQuery.each([\"height\", \"width\"], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tvar val;\n\n\t\t\tif ( computed ) {\n\t\t\t\tif ( elem.offsetWidth !== 0 ) {\n\t\t\t\t\treturn getWH( elem, name, extra );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\tval = getWH( elem, name, extra );\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\treturn val;\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tif ( rnumpx.test( value ) ) {\n\t\t\t\t// ignore negative width and height values #1599\n\t\t\t\tvalue = parseFloat( value );\n\n\t\t\t\tif ( value >= 0 ) {\n\t\t\t\t\treturn value + \"px\";\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n});\n\nif ( !jQuery.support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( parseFloat( RegExp.$1 ) / 100 ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\tif ( value >= 1 && jQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there there is no filter style applied in a css rule, we are done\n\t\t\t\tif ( currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery(function() {\n\t// This hook cannot be added until DOM ready because the support test\n\t// for it is not run until after DOM ready\n\tif ( !jQuery.support.reliableMarginRight ) {\n\t\tjQuery.cssHooks.marginRight = {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\t\tvar ret;\n\t\t\t\tjQuery.swap( elem, { \"display\": \"inline-block\" }, function() {\n\t\t\t\t\tif ( computed ) {\n\t\t\t\t\t\tret = curCSS( elem, \"margin-right\", \"marginRight\" );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tret = elem.style.marginRight;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t};\n\t}\n});\n\nif ( document.defaultView && document.defaultView.getComputedStyle ) {\n\tgetComputedStyle = function( elem, name ) {\n\t\tvar ret, defaultView, computedStyle;\n\n\t\tname = name.replace( rupper, \"-$1\" ).toLowerCase();\n\n\t\tif ( (defaultView = elem.ownerDocument.defaultView) &&\n\t\t\t\t(computedStyle = defaultView.getComputedStyle( elem, null )) ) {\n\t\t\tret = computedStyle.getPropertyValue( name );\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument.documentElement, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n}\n\nif ( document.documentElement.currentStyle ) {\n\tcurrentStyle = function( elem, name ) {\n\t\tvar left, rsLeft, uncomputed,\n\t\t\tret = elem.currentStyle && elem.currentStyle[ name ],\n\t\t\tstyle = elem.style;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret === null && style && (uncomputed = style[ name ]) ) {\n\t\t\tret = uncomputed;\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\tif ( !rnumpx.test( ret ) && rnum.test( ret ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trsLeft = elem.runtimeStyle && elem.runtimeStyle.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\telem.runtimeStyle.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ( ret || 0 );\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\telem.runtimeStyle.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\treturn ret === \"\" ? \"auto\" : ret;\n\t};\n}\n\ncurCSS = getComputedStyle || currentStyle;\n\nfunction getWH( elem, name, extra ) {\n\n\t// Start with offset property\n\tvar val = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\twhich = name === \"width\" ? cssWidth : cssHeight,\n\t\ti = 0,\n\t\tlen = which.length;\n\n\tif ( val > 0 ) {\n\t\tif ( extra !== \"border\" ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tif ( !extra ) {\n\t\t\t\t\tval -= parseFloat( jQuery.css( elem, \"padding\" + which[ i ] ) ) || 0;\n\t\t\t\t}\n\t\t\t\tif ( extra === \"margin\" ) {\n\t\t\t\t\tval += parseFloat( jQuery.css( elem, extra + which[ i ] ) ) || 0;\n\t\t\t\t} else {\n\t\t\t\t\tval -= parseFloat( jQuery.css( elem, \"border\" + which[ i ] + \"Width\" ) ) || 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn val + \"px\";\n\t}\n\n\t// Fall back to computed then uncomputed css if necessary\n\tval = curCSS( elem, name, name );\n\tif ( val < 0 || val == null ) {\n\t\tval = elem.style[ name ] || 0;\n\t}\n\t// Normalize \"\", auto, and prepare for extra\n\tval = parseFloat( val ) || 0;\n\n\t// Add padding, border, margin\n\tif ( extra ) {\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tval += parseFloat( jQuery.css( elem, \"padding\" + which[ i ] ) ) || 0;\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += parseFloat( jQuery.css( elem, \"border\" + which[ i ] + \"Width\" ) ) || 0;\n\t\t\t}\n\t\t\tif ( extra === \"margin\" ) {\n\t\t\t\tval += parseFloat( jQuery.css( elem, extra + which[ i ] ) ) || 0;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val + \"px\";\n}\n\nif ( jQuery.expr && jQuery.expr.filters ) {\n\tjQuery.expr.filters.hidden = function( elem ) {\n\t\tvar width = elem.offsetWidth,\n\t\t\theight = elem.offsetHeight;\n\n\t\treturn ( width === 0 && height === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n\t};\n\n\tjQuery.expr.filters.visible = function( elem ) {\n\t\treturn !jQuery.expr.filters.hidden( elem );\n\t};\n}\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trhash = /#.*$/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\trinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app\\-storage|.+\\-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trquery = /\\?/,\n\trscript = /<script\\b[^<]*(?:(?!<\\/script>)<[^<]*)*<\\/script>/gi,\n\trselectTextarea = /^(?:select|textarea)/i,\n\trspacesAjax = /\\s+/,\n\trts = /([?&])_=[^&]*/,\n\trurl = /^([\\w\\+\\.\\-]+:)(?:\\/\\/([^\\/?#:]*)(?::(\\d+))?)?/,\n\n\t// Keep a copy of the old load method\n\t_load = jQuery.fn.load,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Document location\n\tajaxLocation,\n\n\t// Document location segments\n\tajaxLocParts,\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = [\"*/\"] + [\"*\"];\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\tvar dataTypes = dataTypeExpression.toLowerCase().split( rspacesAjax ),\n\t\t\t\ti = 0,\n\t\t\t\tlength = dataTypes.length,\n\t\t\t\tdataType,\n\t\t\t\tlist,\n\t\t\t\tplaceBefore;\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tdataType = dataTypes[ i ];\n\t\t\t\t// We control if we're asked to add before\n\t\t\t\t// any existing element\n\t\t\t\tplaceBefore = /^\\+/.test( dataType );\n\t\t\t\tif ( placeBefore ) {\n\t\t\t\t\tdataType = dataType.substr( 1 ) || \"*\";\n\t\t\t\t}\n\t\t\t\tlist = structure[ dataType ] = structure[ dataType ] || [];\n\t\t\t\t// then we add to the structure accordingly\n\t\t\t\tlist[ placeBefore ? \"unshift\" : \"push\" ]( func );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR,\n\t\tdataType /* internal */, inspected /* internal */ ) {\n\n\tdataType = dataType || options.dataTypes[ 0 ];\n\tinspected = inspected || {};\n\n\tinspected[ dataType ] = true;\n\n\tvar list = structure[ dataType ],\n\t\ti = 0,\n\t\tlength = list ? list.length : 0,\n\t\texecuteOnly = ( structure === prefilters ),\n\t\tselection;\n\n\tfor ( ; i < length && ( executeOnly || !selection ); i++ ) {\n\t\tselection = list[ i ]( options, originalOptions, jqXHR );\n\t\t// If we got redirected to another dataType\n\t\t// we try there if executing only and not done already\n\t\tif ( typeof selection === \"string\" ) {\n\t\t\tif ( !executeOnly || inspected[ selection ] ) {\n\t\t\t\tselection = undefined;\n\t\t\t} else {\n\t\t\t\toptions.dataTypes.unshift( selection );\n\t\t\t\tselection = inspectPrefiltersOrTransports(\n\t\t\t\t\t\tstructure, options, originalOptions, jqXHR, selection, inspected );\n\t\t\t}\n\t\t}\n\t}\n\t// If we're only executing or nothing was selected\n\t// we try the catchall dataType if not done already\n\tif ( ( executeOnly || !selection ) && !inspected[ \"*\" ] ) {\n\t\tselection = inspectPrefiltersOrTransports(\n\t\t\t\tstructure, options, originalOptions, jqXHR, \"*\", inspected );\n\t}\n\t// unnecessary when only executing (prefilters)\n\t// but it'll be ignored by the caller in that case\n\treturn selection;\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n}\n\njQuery.fn.extend({\n\tload: function( url, params, callback ) {\n\t\tif ( typeof url !== \"string\" && _load ) {\n\t\t\treturn _load.apply( this, arguments );\n\n\t\t// Don't do a request if no elements are being requested\n\t\t} else if ( !this.length ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tvar off = url.indexOf( \" \" );\n\t\tif ( off >= 0 ) {\n\t\t\tvar selector = url.slice( off, url.length );\n\t\t\turl = url.slice( 0, off );\n\t\t}\n\n\t\t// Default to a GET request\n\t\tvar type = \"GET\";\n\n\t\t// If the second parameter was provided\n\t\tif ( params ) {\n\t\t\t// If it's a function\n\t\t\tif ( jQuery.isFunction( params ) ) {\n\t\t\t\t// We assume that it's the callback\n\t\t\t\tcallback = params;\n\t\t\t\tparams = undefined;\n\n\t\t\t// Otherwise, build a param string\n\t\t\t} else if ( typeof params === \"object\" ) {\n\t\t\t\tparams = jQuery.param( params, jQuery.ajaxSettings.traditional );\n\t\t\t\ttype = \"POST\";\n\t\t\t}\n\t\t}\n\n\t\tvar self = this;\n\n\t\t// Request the remote document\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params,\n\t\t\t// Complete callback (responseText is used internally)\n\t\t\tcomplete: function( jqXHR, status, responseText ) {\n\t\t\t\t// Store the response as specified by the jqXHR object\n\t\t\t\tresponseText = jqXHR.responseText;\n\t\t\t\t// If successful, inject the HTML into all the matched elements\n\t\t\t\tif ( jqXHR.isResolved() ) {\n\t\t\t\t\t// #4825: Get the actual response in case\n\t\t\t\t\t// a dataFilter is present in ajaxSettings\n\t\t\t\t\tjqXHR.done(function( r ) {\n\t\t\t\t\t\tresponseText = r;\n\t\t\t\t\t});\n\t\t\t\t\t// See if a selector was specified\n\t\t\t\t\tself.html( selector ?\n\t\t\t\t\t\t// Create a dummy div to hold the results\n\t\t\t\t\t\tjQuery(\"<div>\")\n\t\t\t\t\t\t\t// inject the contents of the document in, removing the scripts\n\t\t\t\t\t\t\t// to avoid any 'Permission Denied' errors in IE\n\t\t\t\t\t\t\t.append(responseText.replace(rscript, \"\"))\n\n\t\t\t\t\t\t\t// Locate the specified elements\n\t\t\t\t\t\t\t.find(selector) :\n\n\t\t\t\t\t\t// If not, just inject the full result\n\t\t\t\t\t\tresponseText );\n\t\t\t\t}\n\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tself.each( callback, [ responseText, status, jqXHR ] );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\treturn this;\n\t},\n\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\n\tserializeArray: function() {\n\t\treturn this.map(function(){\n\t\t\treturn this.elements ? jQuery.makeArray( this.elements ) : this;\n\t\t})\n\t\t.filter(function(){\n\t\t\treturn this.name && !this.disabled &&\n\t\t\t\t( this.checked || rselectTextarea.test( this.nodeName ) ||\n\t\t\t\t\trinput.test( this.type ) );\n\t\t})\n\t\t.map(function( i, elem ){\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val, i ){\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( \"ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend\".split( \" \" ), function( i, o ){\n\tjQuery.fn[ o ] = function( f ){\n\t\treturn this.on( o, f );\n\t};\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\ttype: method,\n\t\t\turl: url,\n\t\t\tdata: data,\n\t\t\tsuccess: callback,\n\t\t\tdataType: type\n\t\t});\n\t};\n});\n\njQuery.extend({\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\tif ( settings ) {\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( target, jQuery.ajaxSettings );\n\t\t} else {\n\t\t\t// Extending ajaxSettings\n\t\t\tsettings = target;\n\t\t\ttarget = jQuery.ajaxSettings;\n\t\t}\n\t\tajaxExtend( target, settings );\n\t\treturn target;\n\t},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\ttype: \"GET\",\n\t\tcontentType: \"application/x-www-form-urlencoded\",\n\t\tprocessData: true,\n\t\tasync: true,\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\thtml: \"text/html\",\n\t\t\ttext: \"text/plain\",\n\t\t\tjson: \"application/json, text/javascript\",\n\t\t\t\"*\": allTypes\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\"\n\t\t},\n\n\t\t// List of data converters\n\t\t// 1) key format is \"source_type destination_type\" (a single space in-between)\n\t\t// 2) the catchall symbol \"*\" can be used for source_type\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": window.String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\tcontext: true,\n\t\t\turl: true\n\t\t}\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events\n\t\t\t// It's the callbackContext if one was provided in the options\n\t\t\t// and if it's a DOM node or a jQuery collection\n\t\t\tglobalEventContext = callbackContext !== s &&\n\t\t\t\t( callbackContext.nodeType || callbackContext instanceof jQuery ) ?\n\t\t\t\t\t\tjQuery( callbackContext ) : jQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// ifModified key\n\t\t\tifModifiedKey,\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\t\t\t// transport\n\t\t\ttransport,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\t\t\t// Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match === undefined ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tstatusText = statusText || \"abort\";\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( statusText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, statusText );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\turl : s.url\n\t\t\t};\n\n\t\t// Callback for when everything is done\n\t\t// It is defined here because jslint complains if it is declared\n\t\t// at the end of the function (which would be more logical and readable)\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\tvar isSuccess,\n\t\t\t\tsuccess,\n\t\t\t\terror,\n\t\t\t\tstatusText = nativeStatusText,\n\t\t\t\tresponse = responses ? ajaxHandleResponses( s, jqXHR, responses ) : undefined,\n\t\t\t\tlastModified,\n\t\t\t\tetag;\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( status >= 200 && status < 300 || status === 304 ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\n\t\t\t\t\tif ( ( lastModified = jqXHR.getResponseHeader( \"Last-Modified\" ) ) ) {\n\t\t\t\t\t\tjQuery.lastModified[ ifModifiedKey ] = lastModified;\n\t\t\t\t\t}\n\t\t\t\t\tif ( ( etag = jqXHR.getResponseHeader( \"Etag\" ) ) ) {\n\t\t\t\t\t\tjQuery.etag[ ifModifiedKey ] = etag;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If not modified\n\t\t\t\tif ( status === 304 ) {\n\n\t\t\t\t\tstatusText = \"notmodified\";\n\t\t\t\t\tisSuccess = true;\n\n\t\t\t\t// If we have data\n\t\t\t\t} else {\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tsuccess = ajaxConvert( s, response );\n\t\t\t\t\t\tstatusText = \"success\";\n\t\t\t\t\t\tisSuccess = true;\n\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t// We have a parsererror\n\t\t\t\t\t\tstatusText = \"parsererror\";\n\t\t\t\t\t\terror = e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( !statusText || status ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = \"\" + ( nativeStatusText || statusText );\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajax\" + ( isSuccess ? \"Success\" : \"Error\" ),\n\t\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\t\tjqXHR.complete = completeDeferred.add;\n\n\t\t// Status-dependent callbacks\n\t\tjqXHR.statusCode = function( map ) {\n\t\t\tif ( map ) {\n\t\t\t\tvar tmp;\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tfor ( tmp in map ) {\n\t\t\t\t\t\tstatusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\ttmp = map[ jqXHR.status ];\n\t\t\t\t\tjqXHR.then( tmp, tmp );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn this;\n\t\t};\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().split( rspacesAjax );\n\n\t\t// Determine if a cross-domain request is in order\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] != ajaxLocParts[ 1 ] || parts[ 2 ] != ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? 80 : 443 ) ) !=\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? 80 : 443 ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefiler, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\tfireGlobals = s.global;\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.data;\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Get ifModifiedKey before adding the anti-cache parameter\n\t\t\tifModifiedKey = s.url;\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\n\t\t\t\tvar ts = jQuery.now(),\n\t\t\t\t\t// try replacing _= if it is there\n\t\t\t\t\tret = s.url.replace( rts, \"$1_=\" + ts );\n\n\t\t\t\t// if nothing was replaced, add timestamp to the end\n\t\t\t\ts.url = ret + ( ( ret === s.url ) ? ( rquery.test( s.url ) ? \"&\" : \"?\" ) + \"_=\" + ts : \"\" );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tifModifiedKey = ifModifiedKey || s.url;\n\t\t\tif ( jQuery.lastModified[ ifModifiedKey ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ ifModifiedKey ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ ifModifiedKey ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ ifModifiedKey ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t\t// Abort if not done already\n\t\t\t\tjqXHR.abort();\n\t\t\t\treturn false;\n\n\t\t}\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout( function(){\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch (e) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\t// Serialize an array of form elements or a set of\n\t// key/values into a query string\n\tparam: function( a, traditional ) {\n\t\tvar s = [],\n\t\t\tadd = function( key, value ) {\n\t\t\t\t// If value is a function, invoke it and return its value\n\t\t\t\tvalue = jQuery.isFunction( value ) ? value() : value;\n\t\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t\t};\n\n\t\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\t\tif ( traditional === undefined ) {\n\t\t\ttraditional = jQuery.ajaxSettings.traditional;\n\t\t}\n\n\t\t// If an array was passed in, assume that it is an array of form elements.\n\t\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t\t// Serialize the form elements\n\t\t\tjQuery.each( a, function() {\n\t\t\t\tadd( this.name, this.value );\n\t\t\t});\n\n\t\t} else {\n\t\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t\t// did it), otherwise encode params recursively.\n\t\t\tfor ( var prefix in a ) {\n\t\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t\t}\n\t\t}\n\n\t\t// Return the resulting serialization\n\t\treturn s.join( \"&\" ).replace( r20, \"+\" );\n\t}\n});\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// If array item is non-scalar (array or object), encode its\n\t\t\t\t// numeric index to resolve deserialization ambiguity issues.\n\t\t\t\t// Note that rack (as of 1.0.0) can't currently deserialize\n\t\t\t\t// nested arrays properly, and attempting to do so may cause\n\t\t\t\t// a server error. Possible fixes are to modify rack's\n\t\t\t\t// deserialization algorithm or to provide an option or flag\n\t\t\t\t// to force array serialization to be shallow.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" || jQuery.isArray(v) ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && obj != null && typeof obj === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( var name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// This is still on the jQuery object... for now\n// Want to move this to jQuery.ajax some day\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {}\n\n});\n\n/* Handles responses to an ajax request:\n * - sets all responseXXX fields accordingly\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar contents = s.contents,\n\t\tdataTypes = s.dataTypes,\n\t\tresponseFields = s.responseFields,\n\t\tct,\n\t\ttype,\n\t\tfinalDataType,\n\t\tfirstDataType;\n\n\t// Fill responseXXX fields\n\tfor ( type in responseFields ) {\n\t\tif ( type in responses ) {\n\t\t\tjqXHR[ responseFields[type] ] = responses[ type ];\n\t\t}\n\t}\n\n\t// Remove auto dataType and get content-type in the process\n\twhile( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"content-type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n// Chain conversions given the request and the original response\nfunction ajaxConvert( s, response ) {\n\n\t// Apply the dataFilter if provided\n\tif ( s.dataFilter ) {\n\t\tresponse = s.dataFilter( response, s.dataType );\n\t}\n\n\tvar dataTypes = s.dataTypes,\n\t\tconverters = {},\n\t\ti,\n\t\tkey,\n\t\tlength = dataTypes.length,\n\t\ttmp,\n\t\t// Current and previous dataTypes\n\t\tcurrent = dataTypes[ 0 ],\n\t\tprev,\n\t\t// Conversion expression\n\t\tconversion,\n\t\t// Conversion function\n\t\tconv,\n\t\t// Conversion functions (transitive conversion)\n\t\tconv1,\n\t\tconv2;\n\n\t// For each dataType in the chain\n\tfor ( i = 1; i < length; i++ ) {\n\n\t\t// Create converters map\n\t\t// with lowercased keys\n\t\tif ( i === 1 ) {\n\t\t\tfor ( key in s.converters ) {\n\t\t\t\tif ( typeof key === \"string\" ) {\n\t\t\t\t\tconverters[ key.toLowerCase() ] = s.converters[ key ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Get the dataTypes\n\t\tprev = current;\n\t\tcurrent = dataTypes[ i ];\n\n\t\t// If current is auto dataType, update it to prev\n\t\tif ( current === \"*\" ) {\n\t\t\tcurrent = prev;\n\t\t// If no auto and dataTypes are actually different\n\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t// Get the converter\n\t\t\tconversion = prev + \" \" + current;\n\t\t\tconv = converters[ conversion ] || converters[ \"* \" + current ];\n\n\t\t\t// If there is no direct converter, search transitively\n\t\t\tif ( !conv ) {\n\t\t\t\tconv2 = undefined;\n\t\t\t\tfor ( conv1 in converters ) {\n\t\t\t\t\ttmp = conv1.split( \" \" );\n\t\t\t\t\tif ( tmp[ 0 ] === prev || tmp[ 0 ] === \"*\" ) {\n\t\t\t\t\t\tconv2 = converters[ tmp[1] + \" \" + current ];\n\t\t\t\t\t\tif ( conv2 ) {\n\t\t\t\t\t\t\tconv1 = converters[ conv1 ];\n\t\t\t\t\t\t\tif ( conv1 === true ) {\n\t\t\t\t\t\t\t\tconv = conv2;\n\t\t\t\t\t\t\t} else if ( conv2 === true ) {\n\t\t\t\t\t\t\t\tconv = conv1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t// If we found no converter, dispatch an error\n\t\t\tif ( !( conv || conv2 ) ) {\n\t\t\t\tjQuery.error( \"No conversion from \" + conversion.replace(\" \",\" to \") );\n\t\t\t}\n\t\t\t// If found converter is not an equivalence\n\t\t\tif ( conv !== true ) {\n\t\t\t\t// Convert with 1 or 2 converters accordingly\n\t\t\t\tresponse = conv ? conv( response ) : conv2( conv1(response) );\n\t\t\t}\n\t\t}\n\t}\n\treturn response;\n}\n\n\n\n\nvar jsc = jQuery.now(),\n\tjsre = /(\\=)\\?(&|$)|\\?\\?/i;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\treturn jQuery.expando + \"_\" + ( jsc++ );\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar inspectData = s.contentType === \"application/x-www-form-urlencoded\" &&\n\t\t( typeof s.data === \"string\" );\n\n\tif ( s.dataTypes[ 0 ] === \"jsonp\" ||\n\t\ts.jsonp !== false && ( jsre.test( s.url ) ||\n\t\t\t\tinspectData && jsre.test( s.data ) ) ) {\n\n\t\tvar responseContainer,\n\t\t\tjsonpCallback = s.jsonpCallback =\n\t\t\t\tjQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback,\n\t\t\tprevious = window[ jsonpCallback ],\n\t\t\turl = s.url,\n\t\t\tdata = s.data,\n\t\t\treplace = \"$1\" + jsonpCallback + \"$2\";\n\n\t\tif ( s.jsonp !== false ) {\n\t\t\turl = url.replace( jsre, replace );\n\t\t\tif ( s.url === url ) {\n\t\t\t\tif ( inspectData ) {\n\t\t\t\t\tdata = data.replace( jsre, replace );\n\t\t\t\t}\n\t\t\t\tif ( s.data === data ) {\n\t\t\t\t\t// Add callback manually\n\t\t\t\t\turl += (/\\?/.test( url ) ? \"&\" : \"?\") + s.jsonp + \"=\" + jsonpCallback;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ts.url = url;\n\t\ts.data = data;\n\n\t\t// Install callback\n\t\twindow[ jsonpCallback ] = function( response ) {\n\t\t\tresponseContainer = [ response ];\n\t\t};\n\n\t\t// Clean-up function\n\t\tjqXHR.always(function() {\n\t\t\t// Set callback back to previous value\n\t\t\twindow[ jsonpCallback ] = previous;\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( previous ) ) {\n\t\t\t\twindow[ jsonpCallback ]( responseContainer[ 0 ] );\n\t\t\t}\n\t\t});\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( jsonpCallback + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /javascript|ecmascript/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || document.getElementsByTagName( \"head\" )[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement( \"script\" );\n\n\t\t\t\tscript.async = \"async\";\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( head && script.parentNode ) {\n\t\t\t\t\t\t\thead.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = undefined;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t\t// Use insertBefore instead of appendChild  to circumvent an IE6 bug.\n\t\t\t\t// This arises when a base node is used (#2709 and #4378).\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( 0, 1 );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar // #5280: Internet Explorer will keep connections alive if we don't abort on unload\n\txhrOnUnloadAbort = window.ActiveXObject ? function() {\n\t\t// Abort all pending requests\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( 0, 1 );\n\t\t}\n\t} : false,\n\txhrId = 0,\n\txhrCallbacks;\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject ?\n\t/* Microsoft failed to properly\n\t * implement the XMLHttpRequest in IE7 (can't request local files),\n\t * so we use the ActiveXObject when it is available\n\t * Additionally XMLHttpRequest can be disabled in IE7/IE8 so\n\t * we need a fallback.\n\t */\n\tfunction() {\n\t\treturn !this.isLocal && createStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\n// Determine support properties\n(function( xhr ) {\n\tjQuery.extend( jQuery.support, {\n\t\tajax: !!xhr,\n\t\tcors: !!xhr && ( \"withCredentials\" in xhr )\n\t});\n})( jQuery.ajaxSettings.xhr() );\n\n// Create transport if the browser can provide an xhr\nif ( jQuery.support.ajax ) {\n\n\tjQuery.ajaxTransport(function( s ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !s.crossDomain || jQuery.support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\n\t\t\t\t\t// Get a new xhr\n\t\t\t\t\tvar xhr = s.xhr(),\n\t\t\t\t\t\thandle,\n\t\t\t\t\t\ti;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\t// Passing null username, generates a login popup on Opera (#2865)\n\t\t\t\t\tif ( s.username ) {\n\t\t\t\t\t\txhr.open( s.type, s.url, s.async, s.username, s.password );\n\t\t\t\t\t} else {\n\t\t\t\t\t\txhr.open( s.type, s.url, s.async );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( s.xhrFields ) {\n\t\t\t\t\t\tfor ( i in s.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = s.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( s.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( s.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !s.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Need an extra try/catch for cross domain requests in Firefox 3\n\t\t\t\t\ttry {\n\t\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch( _ ) {}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( s.hasContent && s.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\n\t\t\t\t\t\tvar status,\n\t\t\t\t\t\t\tstatusText,\n\t\t\t\t\t\t\tresponseHeaders,\n\t\t\t\t\t\t\tresponses,\n\t\t\t\t\t\t\txml;\n\n\t\t\t\t\t\t// Firefox throws exceptions when accessing properties\n\t\t\t\t\t\t// of an xhr when a network error occured\n\t\t\t\t\t\t// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)\n\t\t\t\t\t\ttry {\n\n\t\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\n\t\t\t\t\t\t\t\t// Only called once\n\t\t\t\t\t\t\t\tcallback = undefined;\n\n\t\t\t\t\t\t\t\t// Do not keep as active anymore\n\t\t\t\t\t\t\t\tif ( handle ) {\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\t\t\t\t\t\t\t\t\tif ( xhrOnUnloadAbort ) {\n\t\t\t\t\t\t\t\t\t\tdelete xhrCallbacks[ handle ];\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// If it's an abort\n\t\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\t\t// Abort it manually if needed\n\t\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tstatus = xhr.status;\n\t\t\t\t\t\t\t\t\tresponseHeaders = xhr.getAllResponseHeaders();\n\t\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\t\txml = xhr.responseXML;\n\n\t\t\t\t\t\t\t\t\t// Construct response list\n\t\t\t\t\t\t\t\t\tif ( xml && xml.documentElement /* #4958 */ ) {\n\t\t\t\t\t\t\t\t\t\tresponses.xml = xml;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\n\t\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\t\tif ( !status && s.isLocal && !s.crossDomain ) {\n\t\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} catch( firefoxAccessException ) {\n\t\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\t\tcomplete( -1, firefoxAccessException );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, responseHeaders );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// if we're in sync mode or it's in cache\n\t\t\t\t\t// and has been retrieved directly (IE6 & IE7)\n\t\t\t\t\t// we need to manually fire the callback\n\t\t\t\t\tif ( !s.async || xhr.readyState === 4 ) {\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else {\n\t\t\t\t\t\thandle = ++xhrId;\n\t\t\t\t\t\tif ( xhrOnUnloadAbort ) {\n\t\t\t\t\t\t\t// Create the active xhrs callbacks list if needed\n\t\t\t\t\t\t\t// and attach the unload handler\n\t\t\t\t\t\t\tif ( !xhrCallbacks ) {\n\t\t\t\t\t\t\t\txhrCallbacks = {};\n\t\t\t\t\t\t\t\tjQuery( window ).unload( xhrOnUnloadAbort );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// Add to list of active xhrs callbacks\n\t\t\t\t\t\t\txhrCallbacks[ handle ] = callback;\n\t\t\t\t\t\t}\n\t\t\t\t\t\txhr.onreadystatechange = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback(0,1);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n\n\n\nvar elemdisplay = {},\n\tiframe, iframeDoc,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = /^([+\\-]=)?([\\d+.\\-]+)([a-z%]*)$/i,\n\ttimerId,\n\tfxAttrs = [\n\t\t// height animations\n\t\t[ \"height\", \"marginTop\", \"marginBottom\", \"paddingTop\", \"paddingBottom\" ],\n\t\t// width animations\n\t\t[ \"width\", \"marginLeft\", \"marginRight\", \"paddingLeft\", \"paddingRight\" ],\n\t\t// opacity animations\n\t\t[ \"opacity\" ]\n\t],\n\tfxNow;\n\njQuery.fn.extend({\n\tshow: function( speed, easing, callback ) {\n\t\tvar elem, display;\n\n\t\tif ( speed || speed === 0 ) {\n\t\t\treturn this.animate( genFx(\"show\", 3), speed, easing, callback );\n\n\t\t} else {\n\t\t\tfor ( var i = 0, j = this.length; i < j; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = elem.style.display;\n\n\t\t\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t\t\t// being hidden by cascaded rules or not\n\t\t\t\t\tif ( !jQuery._data(elem, \"olddisplay\") && display === \"none\" ) {\n\t\t\t\t\t\tdisplay = elem.style.display = \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set elements which have been overridden with display: none\n\t\t\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t\t\t// for such an element\n\t\t\t\t\tif ( display === \"\" && jQuery.css(elem, \"display\") === \"none\" ) {\n\t\t\t\t\t\tjQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set the display of most of the elements in a second loop\n\t\t\t// to avoid the constant reflow\n\t\t\tfor ( i = 0; i < j; i++ ) {\n\t\t\t\telem = this[ i ];\n\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = elem.style.display;\n\n\t\t\t\t\tif ( display === \"\" || display === \"none\" ) {\n\t\t\t\t\t\telem.style.display = jQuery._data( elem, \"olddisplay\" ) || \"\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn this;\n\t\t}\n\t},\n\n\thide: function( speed, easing, callback ) {\n\t\tif ( speed || speed === 0 ) {\n\t\t\treturn this.animate( genFx(\"hide\", 3), speed, easing, callback);\n\n\t\t} else {\n\t\t\tvar elem, display,\n\t\t\t\ti = 0,\n\t\t\t\tj = this.length;\n\n\t\t\tfor ( ; i < j; i++ ) {\n\t\t\t\telem = this[i];\n\t\t\t\tif ( elem.style ) {\n\t\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t\t\t\tif ( display !== \"none\" && !jQuery._data( elem, \"olddisplay\" ) ) {\n\t\t\t\t\t\tjQuery._data( elem, \"olddisplay\", display );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set the display of the elements in a second loop\n\t\t\t// to avoid the constant reflow\n\t\t\tfor ( i = 0; i < j; i++ ) {\n\t\t\t\tif ( this[i].style ) {\n\t\t\t\t\tthis[i].style.display = \"none\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn this;\n\t\t}\n\t},\n\n\t// Save the old toggle function\n\t_toggle: jQuery.fn.toggle,\n\n\ttoggle: function( fn, fn2, callback ) {\n\t\tvar bool = typeof fn === \"boolean\";\n\n\t\tif ( jQuery.isFunction(fn) && jQuery.isFunction(fn2) ) {\n\t\t\tthis._toggle.apply( this, arguments );\n\n\t\t} else if ( fn == null || bool ) {\n\t\t\tthis.each(function() {\n\t\t\t\tvar state = bool ? fn : jQuery(this).is(\":hidden\");\n\t\t\t\tjQuery(this)[ state ? \"show\" : \"hide\" ]();\n\t\t\t});\n\n\t\t} else {\n\t\t\tthis.animate(genFx(\"toggle\", 3), fn, fn2, callback);\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tfadeTo: function( speed, to, easing, callback ) {\n\t\treturn this.filter(\":hidden\").css(\"opacity\", 0).show().end()\n\t\t\t\t\t.animate({opacity: to}, speed, easing, callback);\n\t},\n\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar optall = jQuery.speed( speed, easing, callback );\n\n\t\tif ( jQuery.isEmptyObject( prop ) ) {\n\t\t\treturn this.each( optall.complete, [ false ] );\n\t\t}\n\n\t\t// Do not change referenced properties as per-property easing will be lost\n\t\tprop = jQuery.extend( {}, prop );\n\n\t\tfunction doAnimation() {\n\t\t\t// XXX 'this' does not always have a nodeName when running the\n\t\t\t// test suite\n\n\t\t\tif ( optall.queue === false ) {\n\t\t\t\tjQuery._mark( this );\n\t\t\t}\n\n\t\t\tvar opt = jQuery.extend( {}, optall ),\n\t\t\t\tisElement = this.nodeType === 1,\n\t\t\t\thidden = isElement && jQuery(this).is(\":hidden\"),\n\t\t\t\tname, val, p, e,\n\t\t\t\tparts, start, end, unit,\n\t\t\t\tmethod;\n\n\t\t\t// will store per property easing and be used to determine when an animation is complete\n\t\t\topt.animatedProperties = {};\n\n\t\t\tfor ( p in prop ) {\n\n\t\t\t\t// property name normalization\n\t\t\t\tname = jQuery.camelCase( p );\n\t\t\t\tif ( p !== name ) {\n\t\t\t\t\tprop[ name ] = prop[ p ];\n\t\t\t\t\tdelete prop[ p ];\n\t\t\t\t}\n\n\t\t\t\tval = prop[ name ];\n\n\t\t\t\t// easing resolution: per property > opt.specialEasing > opt.easing > 'swing' (default)\n\t\t\t\tif ( jQuery.isArray( val ) ) {\n\t\t\t\t\topt.animatedProperties[ name ] = val[ 1 ];\n\t\t\t\t\tval = prop[ name ] = val[ 0 ];\n\t\t\t\t} else {\n\t\t\t\t\topt.animatedProperties[ name ] = opt.specialEasing && opt.specialEasing[ name ] || opt.easing || 'swing';\n\t\t\t\t}\n\n\t\t\t\tif ( val === \"hide\" && hidden || val === \"show\" && !hidden ) {\n\t\t\t\t\treturn opt.complete.call( this );\n\t\t\t\t}\n\n\t\t\t\tif ( isElement && ( name === \"height\" || name === \"width\" ) ) {\n\t\t\t\t\t// Make sure that nothing sneaks out\n\t\t\t\t\t// Record all 3 overflow attributes because IE does not\n\t\t\t\t\t// change the overflow attribute when overflowX and\n\t\t\t\t\t// overflowY are set to the same value\n\t\t\t\t\topt.overflow = [ this.style.overflow, this.style.overflowX, this.style.overflowY ];\n\n\t\t\t\t\t// Set display property to inline-block for height/width\n\t\t\t\t\t// animations on inline elements that are having width/height animated\n\t\t\t\t\tif ( jQuery.css( this, \"display\" ) === \"inline\" &&\n\t\t\t\t\t\t\tjQuery.css( this, \"float\" ) === \"none\" ) {\n\n\t\t\t\t\t\t// inline-level elements accept inline-block;\n\t\t\t\t\t\t// block-level elements need to be inline with layout\n\t\t\t\t\t\tif ( !jQuery.support.inlineBlockNeedsLayout || defaultDisplay( this.nodeName ) === \"inline\" ) {\n\t\t\t\t\t\t\tthis.style.display = \"inline-block\";\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthis.style.zoom = 1;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( opt.overflow != null ) {\n\t\t\t\tthis.style.overflow = \"hidden\";\n\t\t\t}\n\n\t\t\tfor ( p in prop ) {\n\t\t\t\te = new jQuery.fx( this, opt, p );\n\t\t\t\tval = prop[ p ];\n\n\t\t\t\tif ( rfxtypes.test( val ) ) {\n\n\t\t\t\t\t// Tracks whether to show or hide based on private\n\t\t\t\t\t// data attached to the element\n\t\t\t\t\tmethod = jQuery._data( this, \"toggle\" + p ) || ( val === \"toggle\" ? hidden ? \"show\" : \"hide\" : 0 );\n\t\t\t\t\tif ( method ) {\n\t\t\t\t\t\tjQuery._data( this, \"toggle\" + p, method === \"show\" ? \"hide\" : \"show\" );\n\t\t\t\t\t\te[ method ]();\n\t\t\t\t\t} else {\n\t\t\t\t\t\te[ val ]();\n\t\t\t\t\t}\n\n\t\t\t\t} else {\n\t\t\t\t\tparts = rfxnum.exec( val );\n\t\t\t\t\tstart = e.cur();\n\n\t\t\t\t\tif ( parts ) {\n\t\t\t\t\t\tend = parseFloat( parts[2] );\n\t\t\t\t\t\tunit = parts[3] || ( jQuery.cssNumber[ p ] ? \"\" : \"px\" );\n\n\t\t\t\t\t\t// We need to compute starting value\n\t\t\t\t\t\tif ( unit !== \"px\" ) {\n\t\t\t\t\t\t\tjQuery.style( this, p, (end || 1) + unit);\n\t\t\t\t\t\t\tstart = ( (end || 1) / e.cur() ) * start;\n\t\t\t\t\t\t\tjQuery.style( this, p, start + unit);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\t\t\tif ( parts[1] ) {\n\t\t\t\t\t\t\tend = ( (parts[ 1 ] === \"-=\" ? -1 : 1) * end ) + start;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\te.custom( start, end, unit );\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\te.custom( start, val, \"\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// For JS strict compliance\n\t\t\treturn true;\n\t\t}\n\n\t\treturn optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\thadTimers = false,\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\t// clear marker counters if we know they won't be\n\t\t\tif ( !gotoEnd ) {\n\t\t\t\tjQuery._unmark( true, this );\n\t\t\t}\n\n\t\t\tfunction stopQueue( elem, data, index ) {\n\t\t\t\tvar hooks = data[ index ];\n\t\t\t\tjQuery.removeData( elem, index, true );\n\t\t\t\thooks.stop( gotoEnd );\n\t\t\t}\n\n\t\t\tif ( type == null ) {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && index.indexOf(\".run\") === index.length - 4 ) {\n\t\t\t\t\t\tstopQueue( this, data, index );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if ( data[ index = type + \".run\" ] && data[ index ].stop ){\n\t\t\t\tstopQueue( this, data, index );\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\tif ( gotoEnd ) {\n\n\t\t\t\t\t\t// force the next step to be the last\n\t\t\t\t\t\ttimers[ index ]( true );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttimers[ index ].saveState();\n\t\t\t\t\t}\n\t\t\t\t\thadTimers = true;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( !( gotoEnd && hadTimers ) ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t}\n\n});\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout( clearFxNow, 0 );\n\treturn ( fxNow = jQuery.now() );\n}\n\nfunction clearFxNow() {\n\tfxNow = undefined;\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, num ) {\n\tvar obj = {};\n\n\tjQuery.each( fxAttrs.concat.apply([], fxAttrs.slice( 0, num )), function() {\n\t\tobj[ this ] = type;\n\t});\n\n\treturn obj;\n}\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx( \"show\", 1 ),\n\tslideUp: genFx( \"hide\", 1 ),\n\tslideToggle: genFx( \"toggle\", 1 ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.extend({\n\tspeed: function( speed, easing, fn ) {\n\t\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\t\tcomplete: fn || !fn && easing ||\n\t\t\t\tjQuery.isFunction( speed ) && speed,\n\t\t\tduration: speed,\n\t\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t\t};\n\n\t\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\t\tif ( opt.queue == null || opt.queue === true ) {\n\t\t\topt.queue = \"fx\";\n\t\t}\n\n\t\t// Queueing\n\t\topt.old = opt.complete;\n\n\t\topt.complete = function( noUnmark ) {\n\t\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\t\topt.old.call( this );\n\t\t\t}\n\n\t\t\tif ( opt.queue ) {\n\t\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t\t} else if ( noUnmark !== false ) {\n\t\t\t\tjQuery._unmark( this );\n\t\t\t}\n\t\t};\n\n\t\treturn opt;\n\t},\n\n\teasing: {\n\t\tlinear: function( p, n, firstNum, diff ) {\n\t\t\treturn firstNum + diff * p;\n\t\t},\n\t\tswing: function( p, n, firstNum, diff ) {\n\t\t\treturn ( ( -Math.cos( p*Math.PI ) / 2 ) + 0.5 ) * diff + firstNum;\n\t\t}\n\t},\n\n\ttimers: [],\n\n\tfx: function( elem, options, prop ) {\n\t\tthis.options = options;\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\n\t\toptions.orig = options.orig || {};\n\t}\n\n});\n\njQuery.fx.prototype = {\n\t// Simple function for setting a style value\n\tupdate: function() {\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\t( jQuery.fx.step[ this.prop ] || jQuery.fx.step._default )( this );\n\t},\n\n\t// Get the current size\n\tcur: function() {\n\t\tif ( this.elem[ this.prop ] != null && (!this.elem.style || this.elem.style[ this.prop ] == null) ) {\n\t\t\treturn this.elem[ this.prop ];\n\t\t}\n\n\t\tvar parsed,\n\t\t\tr = jQuery.css( this.elem, this.prop );\n\t\t// Empty strings, null, undefined and \"auto\" are converted to 0,\n\t\t// complex values such as \"rotate(1rad)\" are returned as is,\n\t\t// simple values such as \"10px\" are parsed to Float.\n\t\treturn isNaN( parsed = parseFloat( r ) ) ? !r || r === \"auto\" ? 0 : r : parsed;\n\t},\n\n\t// Start an animation from one number to another\n\tcustom: function( from, to, unit ) {\n\t\tvar self = this,\n\t\t\tfx = jQuery.fx;\n\n\t\tthis.startTime = fxNow || createFxNow();\n\t\tthis.end = to;\n\t\tthis.now = this.start = from;\n\t\tthis.pos = this.state = 0;\n\t\tthis.unit = unit || this.unit || ( jQuery.cssNumber[ this.prop ] ? \"\" : \"px\" );\n\n\t\tfunction t( gotoEnd ) {\n\t\t\treturn self.step( gotoEnd );\n\t\t}\n\n\t\tt.queue = this.options.queue;\n\t\tt.elem = this.elem;\n\t\tt.saveState = function() {\n\t\t\tif ( self.options.hide && jQuery._data( self.elem, \"fxshow\" + self.prop ) === undefined ) {\n\t\t\t\tjQuery._data( self.elem, \"fxshow\" + self.prop, self.start );\n\t\t\t}\n\t\t};\n\n\t\tif ( t() && jQuery.timers.push(t) && !timerId ) {\n\t\t\ttimerId = setInterval( fx.tick, fx.interval );\n\t\t}\n\t},\n\n\t// Simple 'show' function\n\tshow: function() {\n\t\tvar dataShow = jQuery._data( this.elem, \"fxshow\" + this.prop );\n\n\t\t// Remember where we started, so that we can go back to it later\n\t\tthis.options.orig[ this.prop ] = dataShow || jQuery.style( this.elem, this.prop );\n\t\tthis.options.show = true;\n\n\t\t// Begin the animation\n\t\t// Make sure that we start at a small width/height to avoid any flash of content\n\t\tif ( dataShow !== undefined ) {\n\t\t\t// This show is picking up where a previous hide or show left off\n\t\t\tthis.custom( this.cur(), dataShow );\n\t\t} else {\n\t\t\tthis.custom( this.prop === \"width\" || this.prop === \"height\" ? 1 : 0, this.cur() );\n\t\t}\n\n\t\t// Start by showing the element\n\t\tjQuery( this.elem ).show();\n\t},\n\n\t// Simple 'hide' function\n\thide: function() {\n\t\t// Remember where we started, so that we can go back to it later\n\t\tthis.options.orig[ this.prop ] = jQuery._data( this.elem, \"fxshow\" + this.prop ) || jQuery.style( this.elem, this.prop );\n\t\tthis.options.hide = true;\n\n\t\t// Begin the animation\n\t\tthis.custom( this.cur(), 0 );\n\t},\n\n\t// Each step of an animation\n\tstep: function( gotoEnd ) {\n\t\tvar p, n, complete,\n\t\t\tt = fxNow || createFxNow(),\n\t\t\tdone = true,\n\t\t\telem = this.elem,\n\t\t\toptions = this.options;\n\n\t\tif ( gotoEnd || t >= options.duration + this.startTime ) {\n\t\t\tthis.now = this.end;\n\t\t\tthis.pos = this.state = 1;\n\t\t\tthis.update();\n\n\t\t\toptions.animatedProperties[ this.prop ] = true;\n\n\t\t\tfor ( p in options.animatedProperties ) {\n\t\t\t\tif ( options.animatedProperties[ p ] !== true ) {\n\t\t\t\t\tdone = false;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( done ) {\n\t\t\t\t// Reset the overflow\n\t\t\t\tif ( options.overflow != null && !jQuery.support.shrinkWrapBlocks ) {\n\n\t\t\t\t\tjQuery.each( [ \"\", \"X\", \"Y\" ], function( index, value ) {\n\t\t\t\t\t\telem.style[ \"overflow\" + value ] = options.overflow[ index ];\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\t// Hide the element if the \"hide\" operation was done\n\t\t\t\tif ( options.hide ) {\n\t\t\t\t\tjQuery( elem ).hide();\n\t\t\t\t}\n\n\t\t\t\t// Reset the properties, if the item has been hidden or shown\n\t\t\t\tif ( options.hide || options.show ) {\n\t\t\t\t\tfor ( p in options.animatedProperties ) {\n\t\t\t\t\t\tjQuery.style( elem, p, options.orig[ p ] );\n\t\t\t\t\t\tjQuery.removeData( elem, \"fxshow\" + p, true );\n\t\t\t\t\t\t// Toggle data is no longer needed\n\t\t\t\t\t\tjQuery.removeData( elem, \"toggle\" + p, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Execute the complete function\n\t\t\t\t// in the event that the complete function throws an exception\n\t\t\t\t// we must ensure it won't be called twice. #5684\n\n\t\t\t\tcomplete = options.complete;\n\t\t\t\tif ( complete ) {\n\n\t\t\t\t\toptions.complete = false;\n\t\t\t\t\tcomplete.call( elem );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn false;\n\n\t\t} else {\n\t\t\t// classical easing cannot be used with an Infinity duration\n\t\t\tif ( options.duration == Infinity ) {\n\t\t\t\tthis.now = t;\n\t\t\t} else {\n\t\t\t\tn = t - this.startTime;\n\t\t\t\tthis.state = n / options.duration;\n\n\t\t\t\t// Perform the easing function, defaults to swing\n\t\t\t\tthis.pos = jQuery.easing[ options.animatedProperties[this.prop] ]( this.state, n, 0, 1, options.duration );\n\t\t\t\tthis.now = this.start + ( (this.end - this.start) * this.pos );\n\t\t\t}\n\t\t\t// Perform the next step of the animation\n\t\t\tthis.update();\n\t\t}\n\n\t\treturn true;\n\t}\n};\n\njQuery.extend( jQuery.fx, {\n\ttick: function() {\n\t\tvar timer,\n\t\t\ttimers = jQuery.timers,\n\t\t\ti = 0;\n\n\t\tfor ( ; i < timers.length; i++ ) {\n\t\t\ttimer = timers[ i ];\n\t\t\t// Checks the timer has not already been removed\n\t\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\t\ttimers.splice( i--, 1 );\n\t\t\t}\n\t\t}\n\n\t\tif ( !timers.length ) {\n\t\t\tjQuery.fx.stop();\n\t\t}\n\t},\n\n\tinterval: 13,\n\n\tstop: function() {\n\t\tclearInterval( timerId );\n\t\ttimerId = null;\n\t},\n\n\tspeeds: {\n\t\tslow: 600,\n\t\tfast: 200,\n\t\t// Default speed\n\t\t_default: 400\n\t},\n\n\tstep: {\n\t\topacity: function( fx ) {\n\t\t\tjQuery.style( fx.elem, \"opacity\", fx.now );\n\t\t},\n\n\t\t_default: function( fx ) {\n\t\t\tif ( fx.elem.style && fx.elem.style[ fx.prop ] != null ) {\n\t\t\t\tfx.elem.style[ fx.prop ] = fx.now + fx.unit;\n\t\t\t} else {\n\t\t\t\tfx.elem[ fx.prop ] = fx.now;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Adds width/height step functions\n// Do not set anything below 0\njQuery.each([ \"width\", \"height\" ], function( i, prop ) {\n\tjQuery.fx.step[ prop ] = function( fx ) {\n\t\tjQuery.style( fx.elem, prop, Math.max(0, fx.now) + fx.unit );\n\t};\n});\n\nif ( jQuery.expr && jQuery.expr.filters ) {\n\tjQuery.expr.filters.animated = function( elem ) {\n\t\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\t\treturn elem === fn.elem;\n\t\t}).length;\n\t};\n}\n\n// Try to restore the default display value of an element\nfunction defaultDisplay( nodeName ) {\n\n\tif ( !elemdisplay[ nodeName ] ) {\n\n\t\tvar body = document.body,\n\t\t\telem = jQuery( \"<\" + nodeName + \">\" ).appendTo( body ),\n\t\t\tdisplay = elem.css( \"display\" );\n\t\telem.remove();\n\n\t\t// If the simple way fails,\n\t\t// get element's real default display by attaching it to a temp iframe\n\t\tif ( display === \"none\" || display === \"\" ) {\n\t\t\t// No iframe to use yet, so create it\n\t\t\tif ( !iframe ) {\n\t\t\t\tiframe = document.createElement( \"iframe\" );\n\t\t\t\tiframe.frameBorder = iframe.width = iframe.height = 0;\n\t\t\t}\n\n\t\t\tbody.appendChild( iframe );\n\n\t\t\t// Create a cacheable copy of the iframe document on first call.\n\t\t\t// IE and Opera will allow us to reuse the iframeDoc without re-writing the fake HTML\n\t\t\t// document to it; WebKit & Firefox won't allow reusing the iframe document.\n\t\t\tif ( !iframeDoc || !iframe.createElement ) {\n\t\t\t\tiframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document;\n\t\t\t\tiframeDoc.write( ( document.compatMode === \"CSS1Compat\" ? \"<!doctype html>\" : \"\" ) + \"<html><body>\" );\n\t\t\t\tiframeDoc.close();\n\t\t\t}\n\n\t\t\telem = iframeDoc.createElement( nodeName );\n\n\t\t\tiframeDoc.body.appendChild( elem );\n\n\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\tbody.removeChild( iframe );\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn elemdisplay[ nodeName ];\n}\n\n\n\n\nvar rtable = /^t(?:able|d|h)$/i,\n\trroot = /^(?:body|html)$/i;\n\nif ( \"getBoundingClientRect\" in document.documentElement ) {\n\tjQuery.fn.offset = function( options ) {\n\t\tvar elem = this[0], box;\n\n\t\tif ( options ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t});\n\t\t}\n\n\t\tif ( !elem || !elem.ownerDocument ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tif ( elem === elem.ownerDocument.body ) {\n\t\t\treturn jQuery.offset.bodyOffset( elem );\n\t\t}\n\n\t\ttry {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t} catch(e) {}\n\n\t\tvar doc = elem.ownerDocument,\n\t\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure we're not dealing with a disconnected DOM node\n\t\tif ( !box || !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box ? { top: box.top, left: box.left } : { top: 0, left: 0 };\n\t\t}\n\n\t\tvar body = doc.body,\n\t\t\twin = getWindow(doc),\n\t\t\tclientTop  = docElem.clientTop  || body.clientTop  || 0,\n\t\t\tclientLeft = docElem.clientLeft || body.clientLeft || 0,\n\t\t\tscrollTop  = win.pageYOffset || jQuery.support.boxModel && docElem.scrollTop  || body.scrollTop,\n\t\t\tscrollLeft = win.pageXOffset || jQuery.support.boxModel && docElem.scrollLeft || body.scrollLeft,\n\t\t\ttop  = box.top  + scrollTop  - clientTop,\n\t\t\tleft = box.left + scrollLeft - clientLeft;\n\n\t\treturn { top: top, left: left };\n\t};\n\n} else {\n\tjQuery.fn.offset = function( options ) {\n\t\tvar elem = this[0];\n\n\t\tif ( options ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t});\n\t\t}\n\n\t\tif ( !elem || !elem.ownerDocument ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tif ( elem === elem.ownerDocument.body ) {\n\t\t\treturn jQuery.offset.bodyOffset( elem );\n\t\t}\n\n\t\tvar computedStyle,\n\t\t\toffsetParent = elem.offsetParent,\n\t\t\tprevOffsetParent = elem,\n\t\t\tdoc = elem.ownerDocument,\n\t\t\tdocElem = doc.documentElement,\n\t\t\tbody = doc.body,\n\t\t\tdefaultView = doc.defaultView,\n\t\t\tprevComputedStyle = defaultView ? defaultView.getComputedStyle( elem, null ) : elem.currentStyle,\n\t\t\ttop = elem.offsetTop,\n\t\t\tleft = elem.offsetLeft;\n\n\t\twhile ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) {\n\t\t\tif ( jQuery.support.fixedPosition && prevComputedStyle.position === \"fixed\" ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tcomputedStyle = defaultView ? defaultView.getComputedStyle(elem, null) : elem.currentStyle;\n\t\t\ttop  -= elem.scrollTop;\n\t\t\tleft -= elem.scrollLeft;\n\n\t\t\tif ( elem === offsetParent ) {\n\t\t\t\ttop  += elem.offsetTop;\n\t\t\t\tleft += elem.offsetLeft;\n\n\t\t\t\tif ( jQuery.support.doesNotAddBorder && !(jQuery.support.doesAddBorderForTableAndCells && rtable.test(elem.nodeName)) ) {\n\t\t\t\t\ttop  += parseFloat( computedStyle.borderTopWidth  ) || 0;\n\t\t\t\t\tleft += parseFloat( computedStyle.borderLeftWidth ) || 0;\n\t\t\t\t}\n\n\t\t\t\tprevOffsetParent = offsetParent;\n\t\t\t\toffsetParent = elem.offsetParent;\n\t\t\t}\n\n\t\t\tif ( jQuery.support.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== \"visible\" ) {\n\t\t\t\ttop  += parseFloat( computedStyle.borderTopWidth  ) || 0;\n\t\t\t\tleft += parseFloat( computedStyle.borderLeftWidth ) || 0;\n\t\t\t}\n\n\t\t\tprevComputedStyle = computedStyle;\n\t\t}\n\n\t\tif ( prevComputedStyle.position === \"relative\" || prevComputedStyle.position === \"static\" ) {\n\t\t\ttop  += body.offsetTop;\n\t\t\tleft += body.offsetLeft;\n\t\t}\n\n\t\tif ( jQuery.support.fixedPosition && prevComputedStyle.position === \"fixed\" ) {\n\t\t\ttop  += Math.max( docElem.scrollTop, body.scrollTop );\n\t\t\tleft += Math.max( docElem.scrollLeft, body.scrollLeft );\n\t\t}\n\n\t\treturn { top: top, left: left };\n\t};\n}\n\njQuery.offset = {\n\n\tbodyOffset: function( body ) {\n\t\tvar top = body.offsetTop,\n\t\t\tleft = body.offsetLeft;\n\n\t\tif ( jQuery.support.doesNotIncludeMarginInBodyOffset ) {\n\t\t\ttop  += parseFloat( jQuery.css(body, \"marginTop\") ) || 0;\n\t\t\tleft += parseFloat( jQuery.css(body, \"marginLeft\") ) || 0;\n\t\t}\n\n\t\treturn { top: top, left: left };\n\t},\n\n\tsetOffset: function( elem, options, i ) {\n\t\tvar position = jQuery.css( elem, \"position\" );\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tvar curElem = jQuery( elem ),\n\t\t\tcurOffset = curElem.offset(),\n\t\t\tcurCSSTop = jQuery.css( elem, \"top\" ),\n\t\t\tcurCSSLeft = jQuery.css( elem, \"left\" ),\n\t\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) && jQuery.inArray(\"auto\", [curCSSTop, curCSSLeft]) > -1,\n\t\t\tprops = {}, curPosition = {}, curTop, curLeft;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\n\njQuery.fn.extend({\n\n\tposition: function() {\n\t\tif ( !this[0] ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tvar elem = this[0],\n\n\t\t// Get *real* offsetParent\n\t\toffsetParent = this.offsetParent(),\n\n\t\t// Get correct offsets\n\t\toffset       = this.offset(),\n\t\tparentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset();\n\n\t\t// Subtract element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\toffset.top  -= parseFloat( jQuery.css(elem, \"marginTop\") ) || 0;\n\t\toffset.left -= parseFloat( jQuery.css(elem, \"marginLeft\") ) || 0;\n\n\t\t// Add offsetParent borders\n\t\tparentOffset.top  += parseFloat( jQuery.css(offsetParent[0], \"borderTopWidth\") ) || 0;\n\t\tparentOffset.left += parseFloat( jQuery.css(offsetParent[0], \"borderLeftWidth\") ) || 0;\n\n\t\t// Subtract the two offsets\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top,\n\t\t\tleft: offset.left - parentOffset.left\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || document.body;\n\t\t\twhile ( offsetParent && (!rroot.test(offsetParent.nodeName) && jQuery.css(offsetParent, \"position\") === \"static\") ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent;\n\t\t});\n\t}\n});\n\n\n// Create scrollLeft and scrollTop methods\njQuery.each( [\"Left\", \"Top\"], function( i, name ) {\n\tvar method = \"scroll\" + name;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\tvar elem, win;\n\n\t\tif ( val === undefined ) {\n\t\t\telem = this[ 0 ];\n\n\t\t\tif ( !elem ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\twin = getWindow( elem );\n\n\t\t\t// Return the scroll offset\n\t\t\treturn win ? (\"pageXOffset\" in win) ? win[ i ? \"pageYOffset\" : \"pageXOffset\" ] :\n\t\t\t\tjQuery.support.boxModel && win.document.documentElement[ method ] ||\n\t\t\t\t\twin.document.body[ method ] :\n\t\t\t\telem[ method ];\n\t\t}\n\n\t\t// Set the scroll offset\n\t\treturn this.each(function() {\n\t\t\twin = getWindow( this );\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!i ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\t i ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\tthis[ method ] = val;\n\t\t\t}\n\t\t});\n\t};\n});\n\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\n\n\n\n// Create width, height, innerHeight, innerWidth, outerHeight and outerWidth methods\njQuery.each([ \"Height\", \"Width\" ], function( i, name ) {\n\n\tvar type = name.toLowerCase();\n\n\t// innerHeight and innerWidth\n\tjQuery.fn[ \"inner\" + name ] = function() {\n\t\tvar elem = this[0];\n\t\treturn elem ?\n\t\t\telem.style ?\n\t\t\tparseFloat( jQuery.css( elem, type, \"padding\" ) ) :\n\t\t\tthis[ type ]() :\n\t\t\tnull;\n\t};\n\n\t// outerHeight and outerWidth\n\tjQuery.fn[ \"outer\" + name ] = function( margin ) {\n\t\tvar elem = this[0];\n\t\treturn elem ?\n\t\t\telem.style ?\n\t\t\tparseFloat( jQuery.css( elem, type, margin ? \"margin\" : \"border\" ) ) :\n\t\t\tthis[ type ]() :\n\t\t\tnull;\n\t};\n\n\tjQuery.fn[ type ] = function( size ) {\n\t\t// Get window width or height\n\t\tvar elem = this[0];\n\t\tif ( !elem ) {\n\t\t\treturn size == null ? null : this;\n\t\t}\n\n\t\tif ( jQuery.isFunction( size ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tvar self = jQuery( this );\n\t\t\t\tself[ type ]( size.call( this, i, self[ type ]() ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode\n\t\t\t// 3rd condition allows Nokia support, as it supports the docElem prop but not CSS1Compat\n\t\t\tvar docElemProp = elem.document.documentElement[ \"client\" + name ],\n\t\t\t\tbody = elem.document.body;\n\t\t\treturn elem.document.compatMode === \"CSS1Compat\" && docElemProp ||\n\t\t\t\tbody && body[ \"client\" + name ] || docElemProp;\n\n\t\t// Get document width or height\n\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t// Either scroll[Width/Height] or offset[Width/Height], whichever is greater\n\t\t\treturn Math.max(\n\t\t\t\telem.documentElement[\"client\" + name],\n\t\t\t\telem.body[\"scroll\" + name], elem.documentElement[\"scroll\" + name],\n\t\t\t\telem.body[\"offset\" + name], elem.documentElement[\"offset\" + name]\n\t\t\t);\n\n\t\t// Get or set width or height on the element\n\t\t} else if ( size === undefined ) {\n\t\t\tvar orig = jQuery.css( elem, type ),\n\t\t\t\tret = parseFloat( orig );\n\n\t\t\treturn jQuery.isNumeric( ret ) ? ret : orig;\n\n\t\t// Set the width or height on the element (default to pixels if value is unitless)\n\t\t} else {\n\t\t\treturn this.css( type, typeof size === \"string\" ? size : size + \"px\" );\n\t\t}\n\t};\n\n});\n\n\n\n\n// Expose jQuery to the global object\nwindow.jQuery = window.$ = jQuery;\n\n// Expose jQuery as an AMD module, but only for AMD loaders that\n// understand the issues with loading multiple versions of jQuery\n// in a page that all might call define(). The loader will indicate\n// they have special allowances for multiple jQuery versions by\n// specifying define.amd.jQuery = true. Register as a named module,\n// since jQuery can be concatenated with other files that may use define,\n// but not use a proper concatenation script that understands anonymous\n// AMD modules. A named AMD is safest and most robust way to register.\n// Lowercase jquery is used because AMD module names are derived from\n// file names, and jQuery is normally delivered in a lowercase file name.\n// Do this after creating the global so that if an AMD module wants to call\n// noConflict to hide this version of jQuery, it will work.\nif ( typeof define === \"function\" && define.amd && define.amd.jQuery ) {\n\tdefine( \"jquery\", [], function () { return jQuery; } );\n}\n\n\n\n})( window );\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/analysis.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/analysis\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(analysis)$' ),\n  function( context )\n  {\n    var active_core = this.active_core;\n    var core_basepath = active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n \n    $.get\n    (\n      'tpl/analysis.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                \n        var analysis_element = $( '#analysis', content_element );\n        var analysis_form = $( 'form', analysis_element );\n        var analysis_result = $( '#analysis-result', analysis_element );\n        analysis_result.hide();\n\n        var verbose_link = $( '.verbose_output a', analysis_element );\n\n        var type_or_name = $( '#type_or_name', analysis_form );\n        var schema_browser_element = $( '#tor_schema' );\n        var schema_browser_path = app.core_menu.find( '.schema-browser a' ).attr( 'href' );\n        var schema_browser_map = { 'fieldname' : 'field', 'fieldtype' : 'type' };\n\n        type_or_name\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var info = $( this ).val().split( '=' );\n\n              schema_browser_element\n                .attr( 'href', schema_browser_path + '?' + schema_browser_map[info[0]] + '=' + info[1] );\n            }\n          );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/luke?wt=json&show=schema',\n            dataType : 'json',\n            context : type_or_name,\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .html( '<option value=\"\">Loading ... </option>' )\n                .addClass( 'loader' );\n            },\n            success : function( response, text_status, xhr )\n            {\n              var content = '';\n                            \n              var fields = [];\n              for( var field_name in response.schema.fields )\n              {\n                fields.push\n                (\n                  '<option value=\"fieldname=' + field_name + '\">' + field_name + '</option>'\n                );\n              }\n              if( 0 !== fields.length )\n              {\n                content += '<optgroup label=\"Fields\">' + \"\\n\";\n                content += fields.sort().join( \"\\n\" ) + \"\\n\";\n                content += '</optgroup>' + \"\\n\";\n              }\n                            \n              var types = [];\n              for( var type_name in response.schema.types )\n              {\n                types.push\n                (\n                  '<option value=\"fieldtype=' + type_name + '\">' + type_name + '</option>'\n                );\n              }\n              if( 0 !== types.length )\n              {\n                content += '<optgroup label=\"Types\">' + \"\\n\";\n                content += types.sort().join( \"\\n\" ) + \"\\n\";\n                content += '</optgroup>' + \"\\n\";\n              }\n                            \n              this\n                .html( content );\n\n              var defaultSearchField = 'fieldname\\=' + ( context.params['analysis.fieldname'] || response.schema.defaultSearchField );\n\n              if( context.params['analysis.fieldtype'] )\n              {\n                defaultSearchField = 'fieldtype\\=' + context.params['analysis.fieldtype'];\n              }\n\n              $( 'option[value=\"' + defaultSearchField + '\"]', this )\n                .attr( 'selected', 'selected' );\n\n              this\n                .chosen()\n                .trigger( 'change' );\n\n              var fields = 0;\n              for( var key in context.params )\n              {\n                if( 'string' === typeof context.params[key] )\n                {\n                  fields++;\n                  $( '[name=\"' + key + '\"]', analysis_form )\n                    .val( context.params[key].replace( /\\+/g, ' ' ) );\n                }\n              }\n\n              if( 'undefined' !== typeof context.params.verbose_output )\n              {\n                verbose_link.trigger( 'toggle', !!context.params.verbose_output.match( /^(1|true)$/ ) );\n              }\n\n              if( 0 !== fields )\n              {\n                analysis_form\n                  .trigger( 'execute' );\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n              this\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                        \n        $( '.analysis-error .head a', analysis_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.analysis-error' )\n                .toggleClass( 'expanded' );\n            }\n          );\n                        \n        var check_empty_spacer = function()\n        {\n          var spacer_holder = $( 'td.part.data.spacer .holder', analysis_result );\n\n          if( 0 === spacer_holder.size() )\n          {\n            return false;\n          }\n\n          var verbose_output = analysis_result.hasClass( 'verbose_output' );\n\n          spacer_holder\n            .each\n            (\n              function( index, element )\n              {\n                element = $( element );\n\n                if( verbose_output )\n                {\n                  var cell = element.parent();\n                  element.height( cell.height() );\n                }\n                else\n                {\n                  element.removeAttr( 'style' );\n                }\n              }\n            );\n        }\n                        \n        verbose_link\n          .die( 'toggle' )\n          .live\n          (\n            'toggle',\n            function( event, state )\n            {\n              $( this ).parent()\n                .toggleClass( 'active', state );\n                            \n              analysis_result\n                .toggleClass( 'verbose_output', state );\n                            \n              check_empty_spacer();\n            }\n          )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parent()\n                .toggleClass( 'active' );\n\n              analysis_form.trigger( 'submit' );\n            }\n          );\n\n        var button = $( 'button', analysis_form )\n\n        var compute_analysis_params = function()\n        {\n          var params = analysis_form.formToArray();\n                          \n          var type_or_name = $( '#type_or_name', analysis_form ).val().split( '=' );\n          params.push( { name: 'analysis.' + type_or_name[0], value: type_or_name[1] } );\n          params.push( { name: 'verbose_output', value: $( '.verbose_output', analysis_element ).hasClass( 'active' ) ? 1 : 0 } );\n\n          return params;\n        }\n                \n        analysis_form\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              var params = $.param( compute_analysis_params() )\n                            .replace( /[\\w\\.]+=\\+*(&)/g, '$1' ) // remove empty parameters\n                            .replace( /(&)+/, '$1' )            // reduce multiple ampersands\n                            .replace( /^&/, '' );               // remove leading ampersand\n\n              context.redirect( context.path.split( '?' ).shift() + '?' + params );\n              return false;\n            }\n          )\n          .die( 'execute' )\n          .live\n          (\n            'execute',\n            function( event )\n            {\n              var url = core_basepath + '/analysis/field?wt=json&analysis.showmatch=true&' + context.path.split( '?' ).pop();\n              url = url.replace( /&verbose_output=\\d/, '' );\n\n              $.ajax\n              (\n                {\n                  url : url,\n                  dataType : 'json',\n                  beforeSend : function( xhr, settings )\n                  {\n                    loader.show( $( 'span', button ) );\n                    button.attr( 'disabled', true );\n                  },\n                  success : function( response, status_text, xhr, form )\n                  {\n                    $( '.analysis-error', analysis_element )\n                      .hide();\n                                    \n                    analysis_result\n                      .empty()\n                      .show();\n                                    \n                    for( var name in response.analysis.field_names )\n                    {\n                      build_analysis_table( 'name', name, response.analysis.field_names[name] );\n                    }\n                                    \n                    for( var name in response.analysis.field_types )\n                    {\n                      build_analysis_table( 'type', name, response.analysis.field_types[name] );\n                    }\n\n                    check_empty_spacer();\n                  },\n                  error : function( xhr, text_status, error_thrown )\n                  {\n                    analysis_result\n                      .empty()\n                      .hide();\n\n                    if( 404 === xhr.status )\n                    {\n                      $( '#analysis-handler-missing', analysis_element )\n                        .show();\n                    }\n                    else\n                    {\n                      $( '#analysis-error', analysis_element )\n                        .show();\n\n                      var response = null;\n                      try\n                      {\n                        eval( 'response = ' + xhr.responseText + ';' );\n                      }\n                      catch( e )\n                      {\n                        console.error( e );\n                      }\n\n                      $( '#analysis-error .body', analysis_element )\n                        .text( response ? response.error.msg : xhr.responseText );\n                    }\n                  },\n                  complete : function()\n                  {\n                    loader.hide( $( 'span', button ) );\n                    button.removeAttr( 'disabled' );\n                  }\n                }\n              );\n            }\n          );\n\n          var generate_class_name = function( type )\n          {\n            var classes = [type];\n            if( 'text' !== type )\n            {\n              classes.push( 'verbose_output' );\n            }\n            return classes.join( ' ' );\n          }\n                    \n          var build_analysis_table = function( field_or_name, name, analysis_data )\n          {        \n            for( var type in analysis_data )\n            {\n              var type_length = analysis_data[type].length;\n              if( 0 !== type_length )\n              {\n                var global_elements_count = 0;\n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  if( 'string' === typeof analysis_data[type][i+1] )\n                  {\n                    analysis_data[type][i+1] = [{ 'text': analysis_data[type][i+1] }]\n                  }\n\n                  var tmp = {};\n                  var cols = analysis_data[type][i+1].filter\n                  (\n                    function( obj )\n                    {\n                      var obj_position = obj.position || 0;\n                      if( !tmp[obj_position] )\n                      {\n                        tmp[obj_position] = true;\n                        return true;\n                      }\n\n                      return false;\n                    }\n                  );\n\n                  global_elements_count = Math.max( global_elements_count, cols.length );\n                }\n\n                var content = '<div class=\"' + type + '\">' + \"\\n\";\n                content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                                \n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  var colspan = 1;\n                  var elements = analysis_data[type][i+1];\n                  var elements_count = global_elements_count;\n                  \n                  if( !elements[0] || !elements[0].positionHistory )\n                  {\n                    colspan = elements_count;\n                    elements_count = 1;\n                  }\n\n                  var legend = [];\n                  for( var key in elements[0] )\n                  {\n                    var key_parts = key.split( '#' );\n                    var used_key = key_parts.pop();\n                    var short_key = used_key;\n\n                    if( 1 === key_parts.length )\n                    {\n                      used_key = '<abbr title=\"' + key + '\">' + used_key + '</abbr>';\n                    }\n\n                    if( 'positionHistory' === short_key || 'match' === short_key )\n                    {\n                      continue;\n                    }\n\n                    legend.push\n                    (\n                      '<tr class=\"' + generate_class_name( short_key ) + '\">' +\n                      '<td>' + used_key + '</td>' +\n                      '</tr>'\n                    );\n                  }\n\n                  content += '<tbody>' + \"\\n\";\n                  content += '<tr class=\"step\">' + \"\\n\";\n\n                    // analyzer\n                    var analyzer_name = analysis_data[type][i].replace( /(\\$1)+$/g, '' );\n\n                    var analyzer_short = -1 !== analyzer_name.indexOf( '$' )\n                                       ? analyzer_name.split( '$' )[1]\n                                       : analyzer_name.split( '.' ).pop();\n                    analyzer_short = analyzer_short.match( /[A-Z]/g ).join( '' );\n\n                    content += '<td class=\"part analyzer\"><div>' + \"\\n\";\n                    content += '<abbr title=\"' + analysis_data[type][i].esc() + '\">' + \"\\n\";\n                    content += analyzer_short.esc() + '</abbr></div></td>' + \"\\n\";\n\n                    // legend\n                    content += '<td class=\"part legend\"><div class=\"holder\">' + \"\\n\";\n                    content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                    content += '<tr><td>' + \"\\n\";\n                    content += '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \"\\n\";\n                    content += legend.join( \"\\n\" ) + \"\\n\";\n                    content += '</table></td></tr></table></td>' + \"\\n\";\n\n                    // data\n                    var cell_content = '<td class=\"part data spacer\" colspan=\"' + colspan + '\"><div class=\"holder\">&nbsp;</div></td>';\n                    var cells = new Array( elements_count + 1 ).join( cell_content );\n                    content += cells + \"\\n\";\n\n                  content += '</tr>' + \"\\n\";\n                  content += '</tbody>' + \"\\n\";\n                }\n                content += '</table>' + \"\\n\";\n                content += '</div>' + \"\\n\";\n\n                $( '.' + type, analysis_result )\n                  .remove();\n\n                analysis_result\n                  .append( content );\n                                \n                var analysis_result_type = $( '.' + type, analysis_result );\n\n                for( var i = 0; i < analysis_data[type].length; i += 2 )\n                {\n                  for( var j = 0; j < analysis_data[type][i+1].length; j += 1 )\n                  {\n                    var pos = analysis_data[type][i+1][j].positionHistory\n                        ? analysis_data[type][i+1][j].positionHistory[0]\n                        : 1;\n                    var selector = 'tr.step:eq(' + ( i / 2 ) +') '\n                                 + 'td.data:eq(' + ( pos - 1 ) + ') '\n                                 + '.holder';\n                    var cell = $( selector, analysis_result_type );\n\n                    cell.parent()\n                      .removeClass( 'spacer' );\n\n                    var table = $( 'table tr.details', cell );\n                    if( 0 === table.size() )\n                    {\n                      cell\n                        .html\n                        (\n                          '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' + \n                          '<tr class=\"details\"></tr></table>'\n                        );\n                      var table = $( 'table tr.details', cell );\n                    }\n\n                    var tokens = [];\n                    for( var key in analysis_data[type][i+1][j] )\n                    {\n                      var short_key = key.split( '#' ).pop();\n                                            \n                      if( 'positionHistory' === short_key || 'match' === short_key )\n                      {\n                        continue;\n                      }\n\n                      var classes = [];\n                      classes.push( generate_class_name( short_key ) );\n\n                      var data = analysis_data[type][i+1][j][key];\n                      if( 'object' === typeof data && data instanceof Array )\n                      {\n                        data = data.join( ' ' );\n                      }\n                      if( 'string' === typeof data )\n                      {\n                        data = data.esc();\n                      }\n\n                      if( null === data || 0 === data.length )\n                      {\n                        classes.push( 'empty' );\n                        data = '&empty;';\n                      }\n\n                      if( analysis_data[type][i+1][j].match && \n                        ( 'text' === short_key || 'raw_bytes' === short_key ) )\n                      {\n                        classes.push( 'match' );\n                      }\n\n                      tokens.push\n                      (\n                        '<tr class=\"' + classes.join( ' ' ) + '\">' +\n                        '<td>' + data + '</td>' +\n                        '</tr>'\n                      );\n                    }\n                    table\n                      .append\n                      (\n                        '<td class=\"details\">' +\n                        '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">' +\n                        tokens.join( \"\\n\" ) +\n                        '</table></td>'\n                      );\n                  }\n                }\n                \n              }\n            }\n          }\n                    \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/app.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar loader = {\n    \n  show : function( element )\n  {\n    $( element )\n      .addClass( 'loader' );\n  },\n    \n  hide : function( element )\n  {\n    $( element )\n      .removeClass( 'loader' );\n  }\n    \n};\n\nNumber.prototype.esc = function()\n{\n  return new String( this ).esc();\n}\n\nString.prototype.esc = function()\n{\n  return this.replace( /</g, '&lt;' ).replace( />/g, '&gt;' );\n}\n\nSolrDate = function( date )\n{\n  // [\"Sat Mar 03 11:00:00 CET 2012\", \"Sat\", \"Mar\", \"03\", \"11:00:00\", \"CET\", \"2012\"]\n  var parts = date.match( /^(\\w+)\\s+(\\w+)\\s+(\\d+)\\s+(\\d+\\:\\d+\\:\\d+)\\s+(\\w+)\\s+(\\d+)$/ );\n    \n  // \"Sat Mar 03 2012 10:37:33\"\n  return new Date( parts[1] + ' ' + parts[2] + ' ' + parts[3] + ' ' + parts[6] + ' ' + parts[4] );\n}\n\nvar sammy = $.sammy\n(\n  function()\n  {\n    this.bind\n    (\n      'run',\n      function( event, config )\n      {\n        if( 0 === config.start_url.length )\n        {\n          location.href = '#/';\n          return false;\n        }\n      }\n    );\n\n    this.bind\n    (\n      'error',\n      function( message, original_error )\n      {\n        alert( original_error.message );\n      }\n    );\n        \n    // activate_core\n    this.before\n    (\n      {},\n      function( context )\n      {\n        app.clear_timeout();\n\n        var menu_wrapper = $( '#menu-wrapper' );\n\n        $( 'li[id].active', menu_wrapper )\n          .removeClass( 'active' );\n                \n        $( 'li.active', menu_wrapper )\n          .removeClass( 'active' );\n\n        // global dashboard doesn't have params.splat\n        if( !this.params.splat )\n        {\n          this.params.splat = [ '~index' ];\n        }\n\n        var selector = '~' === this.params.splat[0][0]\n                     ? '#' + this.params.splat[0].replace( /^~/, '' ) + '.global'\n                     : '#core-selector #' + this.params.splat[0].replace( /\\./g, '__' );\n\n        var active_element = $( selector, menu_wrapper );\n                  \n        if( 0 === active_element.size() )\n        {\n          this.app.error( 'There exists no core with name \"' + this.params.splat[0] + '\"' );\n          return false;\n        }\n\n        if( active_element.hasClass( 'global' ) )\n        {\n          active_element\n            .addClass( 'active' );\n\n          if( this.params.splat[1] )\n          {\n            $( '.' + this.params.splat[1], active_element )\n              .addClass( 'active' );\n          }\n\n          $( '#core-selector option[selected]' )\n            .removeAttr( 'selected' )\n            .trigger( 'liszt:updated' );\n\n          $( '#core-selector .chzn-container > a' )\n            .addClass( 'chzn-default' );\n        }\n        else\n        {\n          active_element\n            .attr( 'selected', 'selected' )\n            .trigger( 'liszt:updated' );\n\n          if( !this.params.splat[1] )\n          {\n            this.params.splat[1] = 'overview';\n          }\n\n          $( '#core-menu .' + this.params.splat[1] )\n            .addClass( 'active' );\n\n          this.active_core = active_element;\n        }\n      }\n    );\n  }\n);\n\nvar solr_admin = function( app_config )\n{\n  that = this,\n\n  menu_element = null,\n\n  is_multicore = null,\n  cores_data = null,\n  active_core = null,\n  environment_basepath = null,\n    \n  config = app_config,\n  params = null,\n  dashboard_values = null,\n  schema_browser_data = null,\n\n  plugin_data = null,\n    \n  this.menu_element = $( '#core-selector select' );\n  this.core_menu = $( '#core-menu ul' );\n\n  this.config = config;\n  this.timeout = null;\n\n  this.core_regex_base = '^#\\\\/([\\\\w\\\\d-\\\\.]+)';\n\n  browser = {\n    locale : null,\n    language : null,\n    country : null\n  };\n\n  show_global_error = function( error )\n  {\n    var main = $( '#main' );\n\n    $( 'div[id$=\"-wrapper\"]', main )\n      .remove();\n\n    main\n      .addClass( 'error' )\n      .append( error );\n\n    var pre_tags = $( 'pre', main );\n    if( 0 !== pre_tags.size() )\n    {\n      hljs.highlightBlock( pre_tags.get(0) ); \n    }\n  };\n\n  sort_cores_data = function sort_cores_data( cores_status )\n  {\n    // build array of core-names for sorting\n    var core_names = [];\n    for( var core_name in cores_status )\n    {\n      core_names.push( core_name );\n    }\n    core_names.sort();\n\n    var core_count = core_names.length;\n    var cores = {};\n\n    for( var i = 0; i < core_count; i++ )\n    {\n      var core_name = core_names[i];\n      cores[core_name] = cores_status[core_name];\n    }\n\n    return cores;\n  };\n\n  this.set_cores_data = function set_cores_data( cores )\n  {\n    that.cores_data = sort_cores_data( cores.status );\n    \n    that.menu_element\n      .empty();\n\n    var core_list = [];\n    core_list.push( '<option></option>' );\n\n    var core_count = 0;\n    for( var core_name in that.cores_data )\n    {\n      core_count++;\n      var core_path = config.solr_path + '/' + core_name;\n      var classes = [];\n\n      if( !environment_basepath )\n      {\n        environment_basepath = core_path;\n      }\n\n      if( cores.status[core_name]['isDefaultCore'] )\n      {\n        classes.push( 'default' );\n      }\n\n      var core_tpl = '<option '\n                   + '    id=\"' + core_name.replace( /\\./g, '__' ) + '\" '\n                   + '    class=\"' + classes.join( ' ' ) + '\"'\n                   + '    data-basepath=\"' + core_path + '\"'\n                   + '    schema=\"' + cores.status[core_name]['schema'] + '\"'\n                   + '    config=\"' + cores.status[core_name]['config'] + '\"'\n                   + '    value=\"#/' + core_name + '\"'\n                   + '    title=\"' + core_name + '\"'\n                   + '>' \n                   + core_name \n                   + '</option>';\n\n      core_list.push( core_tpl );\n    }\n\n    that.menu_element\n      .append( core_list.join( \"\\n\" ) );\n\n    if( cores.initFailures )\n    {\n      var failures = [];\n      for( var core_name in cores.initFailures )\n      {\n        failures.push\n        (\n          '<li>' +\n            '<strong>' + core_name.esc() + ':</strong>' + \"\\n\" +\n            cores.initFailures[core_name].esc() + \"\\n\" +\n          '</li>'\n        );\n      }\n\n      if( 0 !== failures.length )\n      {\n        var init_failures = $( '#init-failures' );\n\n        init_failures.show();\n        $( 'ul', init_failures ).html( failures.join( \"\\n\" ) );\n      }\n    }\n\n    if( 0 === core_count )\n    {\n      show_global_error\n      ( \n        '<div class=\"message\">There are no SolrCores running. <br/> Using the Solr Admin UI currently requires at least one SolrCore.</div>'\n      );\n    } // else: we have at least one core....\n  };\n\n  this.run = function()\n  {\n    var navigator_language = navigator.userLanguage || navigator.language;\n    var language_match = navigator_language.match( /^(\\w{2})([-_](\\w{2}))?$/ );\n    if( language_match )\n    {\n      if( language_match[1] )\n      {\n        browser.language = language_match[1].toLowerCase();\n      }\n      if( language_match[3] )\n      {\n        browser.country = language_match[3].toUpperCase();\n      }\n      if( language_match[1] && language_match[3] )\n      {\n        browser.locale = browser.language + '_' + browser.country\n      }\n    }\n\n    $.ajax\n    (\n      {\n        url : config.solr_path + config.core_admin_path + '?wt=json&indexInfo=false',\n        dataType : 'json',\n        beforeSend : function( arr, form, options )\n        {               \n          $( '#content' )\n            .html( '<div id=\"index\"><div class=\"loader\">Loading ...</div></div>' );\n        },\n        success : function( response )\n        {\n          that.set_cores_data( response );\n\n          that.menu_element\n            .chosen()\n            .off( 'change' )\n            .on\n            (\n              'change',\n              function( event )\n              {\n                location.href = $( 'option:selected', this ).val();\n                return false;\n              }\n            )\n            .on\n            (\n              'liszt:updated',\n              function( event )\n              {\n                var core_name = $( 'option:selected', this ).text();\n\n                if( core_name )\n                {\n                  that.core_menu\n                    .html\n                    (\n                      '<li class=\"overview\"><a href=\"#/' + core_name + '\"><span>Overview</span></a></li>' + \"\\n\" +\n                      '<li class=\"ping\"><a rel=\"' + that.config.solr_path + '/' + core_name + '/admin/ping\"><span>Ping</span></a></li>' + \"\\n\" +\n                      '<li class=\"query\"><a href=\"#/' + core_name + '/query\"><span>Query</span></a></li>' + \"\\n\" +\n                      '<li class=\"schema\"><a href=\"#/' + core_name + '/schema\"><span>Schema</span></a></li>' + \"\\n\" +\n                      '<li class=\"config\"><a href=\"#/' + core_name + '/config\"><span>Config</span></a></li>' + \"\\n\" +\n                      '<li class=\"replication\"><a href=\"#/' + core_name + '/replication\"><span>Replication</span></a></li>' + \"\\n\" +\n                      '<li class=\"analysis\"><a href=\"#/' + core_name + '/analysis\"><span>Analysis</span></a></li>' + \"\\n\" +\n                      '<li class=\"schema-browser\"><a href=\"#/' + core_name + '/schema-browser\"><span>Schema Browser</span></a></li>' + \"\\n\" + \n                      '<li class=\"plugins\"><a href=\"#/' + core_name + '/plugins\"><span>Plugins / Stats</span></a></li>' + \"\\n\" +\n                      '<li class=\"dataimport\"><a href=\"#/' + core_name + '/dataimport\"><span>Dataimport</span></a></li>' + \"\\n\"\n                    )\n                    .show();\n                }\n                else\n                {\n                  that.core_menu\n                    .hide()\n                    .empty();\n                }\n              }\n            );\n\n          for( var core_name in response.status )\n          {\n            var core_path = config.solr_path + '/' + core_name;\n            if( !environment_basepath )\n            {\n              environment_basepath = core_path;\n            }\n          }\n\n          var system_url = environment_basepath + '/admin/system?wt=json';\n          $.ajax\n          (\n            {\n              url : system_url,\n              dataType : 'json',\n              beforeSend : function( arr, form, options )\n              {\n              },\n              success : function( response )\n              {\n                that.dashboard_values = response;\n\n                var environment_args = null;\n                var cloud_args = null;\n\n                if( response.jvm && response.jvm.jmx && response.jvm.jmx.commandLineArgs )\n                {\n                  var command_line_args = response.jvm.jmx.commandLineArgs.join( ' | ' );\n\n                  environment_args = command_line_args.match( /-Dsolr.environment=((dev|test|prod)?[\\w\\d]*)/i );\n                }\n\n                if( response.mode )\n                {\n                  cloud_args = response.mode.match( /solrcloud/i );\n                }\n                \n                // title\n\n                $( 'title', document )\n                  .append( ' (' + response.core.host + ')' );\n\n                // environment\n\n                var wrapper = $( '#wrapper' );\n                var environment_element = $( '#environment' );\n                if( environment_args )\n                {\n                  wrapper\n                    .addClass( 'has-environment' );\n\n                  if( environment_args[1] )\n                  {\n                    environment_element\n                      .html( environment_args[1] );\n                  }\n\n                  if( environment_args[2] )\n                  {\n                    environment_element\n                      .addClass( environment_args[2] );\n                  }\n                }\n                else\n                {\n                  wrapper\n                    .removeClass( 'has-environment' );\n                }\n\n                // cloud\n\n                var cloud_nav_element = $( '#menu #cloud' );\n                if( cloud_args )\n                {\n                  cloud_nav_element\n                    .show();\n                }\n\n                // sammy\n\n                sammy.run( location.hash );\n              },\n              error : function()\n              {\n                show_global_error\n                (\n                  '<div class=\"message\"><p>Unable to load environment info from <code>' + system_url.esc() + '</code>.</p>' +\n                  '<p>This interface requires that you activate the admin request handlers in all SolrCores by adding the ' +\n                  'following configuration to your <code>solrconfig.xml</code>:</p></div>' + \"\\n\" +\n\n                  '<div class=\"code\"><pre class=\"syntax language-xml\"><code>' +\n                  '<!-- Admin Handlers - This will register all the standard admin RequestHandlers. -->'.esc() + \"\\n\" +\n                  '<requestHandler name=\"/admin/\" class=\"solr.admin.AdminHandlers\" />'.esc() +\n                  '</code></pre></div>'\n                );\n              },\n              complete : function()\n              {\n                loader.hide( this );\n              }\n            }\n          );\n        },\n        error : function()\n        {\n        },\n        complete : function()\n        {\n        }\n      }\n    );\n  };\n\n  this.convert_duration_to_seconds = function convert_duration_to_seconds( str )\n  {\n    var seconds = 0;\n    var arr = new String( str || '' ).split( '.' );\n    var parts = arr[0].split( ':' ).reverse();\n    var parts_count = parts.length;\n\n    for( var i = 0; i < parts_count; i++ )\n    {\n      seconds += ( parseInt( parts[i], 10 ) || 0 ) * Math.pow( 60, i );\n    }\n\n    // treat more or equal than .5 as additional second\n    if( arr[1] && 5 <= parseInt( arr[1][0], 10 ) )\n    {\n      seconds++;\n    }\n\n    return seconds;\n  };\n\n  this.convert_seconds_to_readable_time = function convert_seconds_to_readable_time( seconds )\n  {\n    seconds = parseInt( seconds || 0, 10 );\n    var minutes = Math.floor( seconds / 60 );\n    var hours = Math.floor( minutes / 60 );\n\n    var text = [];\n    if( 0 !== hours )\n    {\n      text.push( hours + 'h' );\n      seconds -= hours * 60 * 60;\n      minutes -= hours * 60;\n    }\n\n    if( 0 !== minutes )\n    {\n      text.push( minutes + 'm' );\n      seconds -= minutes * 60;\n    }\n\n    if( 0 !== seconds )\n    {\n      text.push( ( '0' + seconds ).substr( -2 ) + 's' );\n    }\n\n    return text.join( ' ' );\n  };\n\n  this.clear_timeout = function clear_timeout()\n  {\n    if( !app.timeout )\n    {\n      return false;\n    }\n\n    console.debug( 'Clearing Timeout #' + this.timeout );\n    clearTimeout( this.timeout );\n    this.timeout = null;\n  };\n\n  this.format_json = function format_json( json_str )\n  {\n    if( JSON.stringify && JSON.parse )\n    {\n      json_str = JSON.stringify( JSON.parse( json_str ), undefined, 2 );\n    }\n\n    return json_str;\n  };\n\n  this.format_number = function format_number( number )\n  {\n    var sep = {\n      'de_CH' : '\\'',\n      'de' : '.',\n      'en' : ',',\n      'es' : '.',\n      'it' : '.',\n      'ja' : ',',\n      'sv' : ' ',\n      'tr' : '.',\n      '_' : '' // fallback\n    };\n\n    return ( number || 0 ).toString().replace\n    (\n      /\\B(?=(\\d{3})+(?!\\d))/g,\n      sep[ browser.locale ] || sep[ browser.language ] || sep['_']\n    );\n  };\n\n};\n\n$.ajaxSetup( { cache: false } );\nvar app = new solr_admin( app_config );\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/cloud.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar zk_error = function zk_error( xhr, text_status, error_thrown )\n{\n  var zk = null;\n  try\n  {\n    eval( 'zk = ' + xhr.responseText + ';' );\n  }\n  catch( e ) {}\n\n  var message = '<p class=\"txt\">Loading of \"<code>' + xhr.url + '</code>\" '\n              + 'failed (HTTP-Status <code>' + xhr.status + '</code>)</p>' + \"\\n\";\n\n  if( zk.error )\n  {\n    message += '<p class=\"msg\">\"' + zk.error.esc() + '\"</p>' + \"\\n\";\n  }\n  \n  this.closest( '#cloud' )\n    .html( '<div class=\"block\" id=\"error\">' + message + '</div>' );\n};\n\nvar init_debug = function( cloud_element )\n{\n  var debug_element = $( '#debug', cloud_element );\n  var debug_button = $( '#menu #cloud .dump a' );\n\n  var clipboard_element = $( '.clipboard', debug_element );\n  var clipboard_button = $( 'a', clipboard_element );\n\n  debug_button\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        debug_element.trigger( 'show' );\n        return false;\n      }\n    );\n\n  $( '.close', debug_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        debug_element.trigger( 'hide' );\n        return false;\n      }\n    );\n\n  $( '.clipboard', debug_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        return false;\n      }\n    );\n\n  debug_element\n    .die( 'show' )\n    .live\n    (\n      'show',\n      function( event )\n      {\n        debug_element.show();\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json&dump=true',\n            dataType : 'text',\n            context : debug_element,\n            beforeSend : function( xhr, settings )\n            {\n              $( '.debug', debug_element )\n                .html( '<span class=\"loader\">Loading Dump ...</span>' );\n\n              ZeroClipboard.setMoviePath( 'img/ZeroClipboard.swf' );\n\n              clipboard_client = new ZeroClipboard.Client();\n                              \n              clipboard_client.addEventListener\n              (\n                'load',\n                function( client )\n                {\n                }\n              );\n\n              clipboard_client.addEventListener\n              (\n                'complete',\n                function( client, text )\n                {\n                  clipboard_element\n                    .addClass( 'copied' );\n\n                  clipboard_button\n                    .data( 'text', clipboard_button.text() )\n                    .text( clipboard_button.data( 'copied' ) );\n                }\n              );\n            },\n            success : function( response, text_status, xhr )\n            {\n              clipboard_client.glue\n              (\n                clipboard_element.get(0),\n                clipboard_button.get(0)\n              );\n\n              clipboard_client.setText( response.replace( /\\\\/g, '\\\\\\\\' ) );\n\n              $( '.debug', debug_element )\n                .removeClass( 'loader' )\n                .text( response );\n            },\n            error : function( xhr, text_status, error_thrown )\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      }\n    )\n    .die( 'hide' )\n    .live\n    (\n      'hide',\n      function( event )\n      {\n        $( '.debug', debug_element )\n          .empty();\n\n        clipboard_element\n          .removeClass( 'copied' );\n\n        clipboard_button\n          .data( 'copied', clipboard_button.text() )\n          .text( clipboard_button.data( 'text' ) );\n\n        clipboard_client.destroy();\n\n        debug_element.hide();\n      }\n    );\n};\n\nvar helper_path_class = function( p )\n{\n  var classes = [ 'link' ];\n  classes.push( 'lvl-' + p.target.depth );\n\n  if( p.target.data && p.target.data.leader )\n  {\n    classes.push( 'leader' );\n  }\n\n  if( p.target.data && p.target.data.state )\n  {\n    classes.push( p.target.data.state );\n  }\n\n  return classes.join( ' ' );\n};\n\nvar helper_node_class = function( d )\n{\n  var classes = [ 'node' ];\n  classes.push( 'lvl-' + d.depth );\n\n  if( d.data && d.data.leader )\n  {\n    classes.push( 'leader' );\n  }\n\n  if( d.data && d.data.state )\n  {\n    classes.push( d.data.state );\n  }\n\n  return classes.join( ' ' );\n};\n\nvar helper_data = {\n  protocol: [],\n  host: [],\n  hostname: [],\n  port: [],\n  pathname: []\n};\n\nvar helper_node_text = function( d )\n{\n  if( !d.data || !d.data.uri )\n  {\n    return d.name;\n  }\n\n  var name = d.data.uri.hostname;\n\n  if( 1 !== helper_data.protocol.length )\n  {\n    name = d.data.uri.protocol + '//' + name;\n  }\n\n  if( 1 !== helper_data.port.length )\n  {\n    name += ':' + d.data.uri.port;\n  }\n\n  if( 1 !== helper_data.pathname.length )\n  {\n    name += d.data.uri.pathname;\n  }\n\n  return name;\n};\n\nvar generate_graph = function( graph_element, graph_data, leaf_count )\n{\n  var w = graph_element.width(),\n      h = leaf_count * 20;\n\n  var tree = d3.layout.tree()\n    .size([h, w - 400]);\n\n  var diagonal = d3.svg.diagonal()\n    .projection(function(d) { return [d.y, d.x]; });\n\n  var vis = d3.select( '#canvas' ).append( 'svg' )\n    .attr( 'width', w )\n    .attr( 'height', h)\n    .append( 'g' )\n      .attr( 'transform', 'translate(100, 0)' );\n\n  var nodes = tree.nodes( graph_data );\n\n  var link = vis.selectAll( 'path.link' )\n    .data( tree.links( nodes ) )\n    .enter().append( 'path' )\n      .attr( 'class', helper_path_class )\n      .attr( 'd', diagonal );\n\n  var node = vis.selectAll( 'g.node' )\n    .data( nodes )\n    .enter().append( 'g' )\n      .attr( 'class', helper_node_class )\n      .attr( 'transform', function(d) { return 'translate(' + d.y + ',' + d.x + ')'; } )\n\n  node.append( 'circle' )\n    .attr( 'r', 4.5 );\n\n  node.append( 'text' )\n    .attr( 'dx', function( d ) { return 0 === d.depth ? -8 : 8; } )\n    .attr( 'dy', function( d ) { return 5; } )\n    .attr( 'text-anchor', function( d ) { return 0 === d.depth ? 'end' : 'start'; } )\n    .attr( 'data-href', function( d ) { return d.name; } )\n    .text( helper_node_text );\n\n  $( 'text[data-href*=\"//\"]', graph_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function()\n      {\n        location.href = $( this ).data( 'href' );\n      }\n    );\n};\n\nvar generate_rgraph = function( graph_element, graph_data, leaf_count )\n{\n  var max_val = Math.min( graph_element.width(), $( 'body' ).height() )\n  var r = max_val / 2;\n\n  var cluster = d3.layout.cluster()\n    .size([360, r - 160]);\n\n  var diagonal = d3.svg.diagonal.radial()\n    .projection(function(d) { return [d.y, d.x / 180 * Math.PI]; });\n\n  var vis = d3.select( '#canvas' ).append( 'svg' )\n    .attr( 'width', r * 2 )\n    .attr( 'height', r * 2 )\n    .append( 'g' )\n      .attr( 'transform', 'translate(' + r + ',' + r + ')' );\n\n  var nodes = cluster.nodes( graph_data );\n\n  var link = vis.selectAll( 'path.link' )\n    .data( cluster.links( nodes ) )\n    .enter().append( 'path' )\n      .attr( 'class', helper_path_class )\n      .attr( 'd', diagonal );\n\n  var node = vis.selectAll( 'g.node' )\n    .data( nodes )\n    .enter().append( 'g' )\n      .attr( 'class', helper_node_class )\n      .attr( 'transform', function(d) { return 'rotate(' + (d.x - 90) + ')translate(' + d.y + ')'; } )\n\n  node.append( 'circle' )\n    .attr( 'r', 4.5 );\n\n  node.append( 'text' )\n    .attr( 'dx', function(d) { return d.x < 180 ? 8 : -8; } )\n    .attr( 'dy', '.31em' )\n    .attr( 'text-anchor', function(d) { return d.x < 180 ? 'start' : 'end'; } )\n    .attr( 'transform', function(d) { return d.x < 180 ? null : 'rotate(180)'; } )\n    .attr( 'data-href', function( d ) { return d.name; } )\n    .text( helper_node_text );\n\n  $( 'text[data-href*=\"//\"]', graph_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function()\n      {\n        location.href = $( this ).data( 'href' );\n      }\n    );\n};\n\nvar prepare_graph = function( graph_element, callback )\n{\n  $.ajax\n  (\n    {\n      url : app.config.solr_path + '/zookeeper?wt=json&path=%2Flive_nodes',\n      dataType : 'json',\n      success : function( response, text_status, xhr )\n      {\n        var live_nodes = {};\n        for( var c in response.tree[0].children )\n        {\n          live_nodes[response.tree[0].children[c].data.title] = true;\n        }\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json&detail=true&path=%2Fclusterstate.json',\n            dataType : 'json',\n            context : graph_element,\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .show();\n            },\n            success : function( response, text_status, xhr )\n            {\n              var state = null;\n              eval( 'state = ' + response.znode.data + ';' );\n              \n              var leaf_count = 0;\n              var graph_data = {\n                name: null,\n                children : []\n              };\n\n              for( var c in state )\n              {\n                var shards = [];\n                for( var s in state[c].shards )\n                {\n                  var nodes = [];\n                  for( var n in state[c].shards[s].replicas )\n                  {\n                    leaf_count++;\n                    var replica = state[c].shards[s].replicas[n]\n\n                    var uri = replica.base_url;\n                    var parts = uri.match( /^(\\w+:)\\/\\/(([\\w\\d\\.-]+)(:(\\d+))?)(.+)$/ );\n                    var uri_parts = {\n                      protocol: parts[1],\n                      host: parts[2],\n                      hostname: parts[3],\n                      port: parseInt( parts[5] || 80, 10 ),\n                      pathname: parts[6]\n                    };\n                    \n                    helper_data.protocol.push( uri_parts.protocol );\n                    helper_data.host.push( uri_parts.host );\n                    helper_data.hostname.push( uri_parts.hostname );\n                    helper_data.port.push( uri_parts.port );\n                    helper_data.pathname.push( uri_parts.pathname );\n\n                    var status = replica.state;\n\n                    if( !live_nodes[replica.node_name] )\n                    {\n                      status = 'gone';\n                    }\n\n                    var node = {\n                      name: uri,\n                      data: {\n                        type : 'node',\n                        state : status,\n                        leader : 'true' === replica.leader,\n                        uri : uri_parts\n                      }\n                    };\n                    nodes.push( node );\n                  }\n\n                  var shard = {\n                    name: s,\n                    data: {\n                      type : 'shard'\n                    },\n                    children: nodes\n                  };\n                  shards.push( shard );\n                }\n\n                var collection = {\n                  name: c,\n                  data: {\n                    type : 'collection'\n                  },\n                  children: shards\n                };\n                graph_data.children.push( collection );\n              }\n              \n              helper_data.protocol = $.unique( helper_data.protocol );\n              helper_data.host = $.unique( helper_data.host );\n              helper_data.hostname = $.unique( helper_data.hostname );\n              helper_data.port = $.unique( helper_data.port );\n              helper_data.pathname = $.unique( helper_data.pathname );\n\n              callback( graph_element, graph_data, leaf_count );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n\n};\n\nvar init_graph = function( graph_element )\n{\n  prepare_graph\n  (\n    graph_element,\n    function( graph_element, graph_data, leaf_count )\n    {\n      generate_graph( graph_element, graph_data, leaf_count );\n    }\n  );\n}\n\nvar init_rgraph = function( graph_element )\n{\n  prepare_graph\n  (\n    graph_element,\n    function( graph_element, graph_data, leaf_count )\n    {\n      generate_rgraph( graph_element, graph_data, leaf_count );\n    }\n  );\n}\n\nvar init_tree = function( tree_element )\n{\n  $.ajax\n  (\n    {\n      url : app.config.solr_path + '/zookeeper?wt=json',\n      dataType : 'json',\n      context : tree_element,\n      beforeSend : function( xhr, settings )\n      {\n        this\n          .show();\n      },\n      success : function( response, text_status, xhr )\n      {\n        var self = this;\n                      \n        $( '#tree', this )\n          .jstree\n          (\n            {\n              \"plugins\" : [ \"json_data\" ],\n              \"json_data\" : {\n                \"data\" : response.tree,\n                \"progressive_render\" : true\n              },\n              \"core\" : {\n                \"animation\" : 0\n              }\n            }\n          )\n          .jstree\n          (\n            'open_node',\n            'li:first'\n          );\n\n        var tree_links = $( '#tree a', this );\n\n        tree_links\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( 'a.active', $( this ).parents( '#tree' ) )\n                .removeClass( 'active' );\n                                  \n              $( this )\n                .addClass( 'active' );\n\n              tree_element\n                .addClass( 'show' );\n\n              var file_content = $( '#file-content' );\n\n              $( 'a.close', file_content )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    $( '#tree a.active' )\n                      .removeClass( 'active' );\n                                      \n                    tree_element\n                      .removeClass( 'show' );\n\n                    return false;\n                  }\n                );\n\n              $.ajax\n              (\n                {\n                  url : this.href,\n                  dataType : 'json',\n                  context : file_content,\n                  beforeSend : function( xhr, settings )\n                  {\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    var props = [];\n                    for( var key in response.znode.prop )\n                    {\n                      props.push\n                      (\n                        '<li><dl class=\"clearfix\">' + \"\\n\" +\n                          '<dt>' + key.esc() + '</dt>' + \"\\n\" +\n                          '<dd>' + response.znode.prop[key].esc() + '</dd>' + \"\\n\" +\n                        '</dl></li>'\n                      );\n                    }\n\n                    $( '#prop ul', this )\n                      .empty()\n                      .html( props.join( \"\\n\" ) );\n\n                    $( '#prop ul li:odd', this )\n                      .addClass( 'odd' );\n\n                    var data_element = $( '#data', this );\n\n                    var highlight = false;\n                    var data = '<em>File \"' + response.znode.path + '\" has no Content</em>';\n\n                    if( response.znode.data )\n                    {\n                      var classes = '';\n                      var path = response.znode.path.split( '.' );\n                      \n                      if( 1 < path.length )\n                      {\n                        highlight = true;\n                        classes = 'syntax language-' + path.pop().esc();\n                      }\n\n                      data = '<pre class=\"' + classes + '\">'\n                           + response.znode.data.esc()\n                           + '</pre>';\n                    }\n                               \n\n                    data_element\n                        .show()\n                        .html( data );\n\n                    if( highlight )\n                    {\n                      hljs.highlightBlock( data_element.get(0) );\n                    }\n                    \n                  },\n                  error : function( xhr, text_status, error_thrown)\n                  {\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                  }\n                }\n              );\n\n              return false;\n            }\n          );\n      },\n      error : zk_error,\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n};\n\n// #/~cloud\nsammy.get\n(\n  /^#\\/(~cloud)$/,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/cloud.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var cloud_element = $( '#cloud', content_element );\n        var navigation_element = $( '#menu #cloud' );\n\n        init_debug( cloud_element );\n\n        $( '.tree', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_tree( $( '#tree-content', cloud_element ) );\n            }\n          );\n\n        $( '.graph', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_graph( $( '#graph-content', cloud_element ) );\n            }\n          );\n\n        $( '.rgraph', navigation_element )\n          .die( 'activate' )\n          .live\n          (\n            'activate',\n            function( event )\n            {\n              $( this ).addClass( 'active' );\n              init_rgraph( $( '#graph-content', cloud_element ) );\n            }\n          );\n\n        $.ajax\n        (\n          {\n            url : app.config.solr_path + '/zookeeper?wt=json',\n            dataType : 'json',\n            context : cloud_element,\n            success : function( response, text_status, xhr )\n            {\n              $( 'a[href=\"' + context.path + '\"]', navigation_element )\n                .trigger( 'activate' );\n            },\n            error : zk_error\n          }\n        );\n        \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/cores.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nsammy.bind\n(\n  'cores_load_data',\n  function( event, params )\n  {\n    $.ajax\n    (\n      {\n        url : app.config.solr_path + app.config.core_admin_path + '?wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          app.set_cores_data( response );\n          params.callback( app.cores_data );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\nsammy.bind\n(\n  'cores_build_navigation',\n  function( event, params )\n  {\n    var navigation_content = ['<ul>'];\n\n    for( var core in params.cores )\n    {\n      var core_name = core;\n      if( !core_name )\n      {\n        core_name = '<em>(empty)</em>';\n      }\n      navigation_content.push( '<li><a href=\"' + params.basepath + core + '\">' + core_name + '</a></li>' );\n    }\n\n    params.navigation_element\n      .html( navigation_content.join( \"\\n\" ) );\n        \n    $( 'a[href=\"' + params.basepath + params.current_core + '\"]', params.navigation_element ).parent()\n      .addClass( 'current' );\n  }\n);\n\nsammy.bind\n(\n  'cores_load_template',\n  function( event, params )\n  {\n    if( app.cores_template )\n    {\n      params.callback();\n      return true;\n    }\n\n    $.get\n    (\n      'tpl/cores.html',\n      function( template )\n      {\n        params.content_element\n          .html( template );\n             \n        app.cores_template = template;   \n        params.callback();\n      }\n    );\n  }\n);\n\n// #/~cores\nsammy.get\n(\n  /^#\\/(~cores)$/,\n  function( context )\n  {\n    delete app.cores_template;\n\n    sammy.trigger\n    (\n      'cores_load_data',\n      {\n        callback :  function( cores )\n        {\n          var first_core = null;\n          for( var key in cores )\n          {\n            if( !first_core )\n            {\n              first_core = key;\n            }\n            continue;\n          }\n          context.redirect( context.path + '/' + first_core );\n        }\n      }\n    );\n  }\n);\n\n// #/~cores\nsammy.get\n(\n  /^#\\/(~cores)\\//,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    var path_parts = this.path.match( /^(.+\\/~cores\\/)(.*)$/ );\n    var current_core = path_parts[2];\n\n    sammy.trigger\n    (\n      'cores_load_data',\n      {\n        callback : function( cores )\n        {\n          sammy.trigger\n          (\n            'cores_load_template',\n            {\n              content_element : content_element,\n              callback : function()\n              {\n                var cores_element = $( '#cores', content_element );\n                var navigation_element = $( '#navigation', cores_element );\n                var data_element = $( '#data', cores_element );\n                var core_data_element = $( '#core-data', data_element );\n                var index_data_element = $( '#index-data', data_element );\n\n                sammy.trigger\n                (\n                  'cores_build_navigation',\n                  {\n                    cores : cores,\n                    basepath : path_parts[1],\n                    current_core : current_core,\n                    navigation_element : navigation_element\n                  }\n                );\n\n                var core_data = cores[current_core];\n                var core_basepath = $( '#' + current_core, app.menu_element ).attr( 'data-basepath' );\n\n                // core-data\n\n                $( '.startTime dd', core_data_element )\n                  .html( core_data.startTime );\n\n                $( '.instanceDir dd', core_data_element )\n                  .html( core_data.instanceDir );\n\n                $( '.dataDir dd', core_data_element )\n                  .html( core_data.dataDir );\n\n                // index-data\n\n                $( '.lastModified dd', index_data_element )\n                  .html( core_data.index.lastModified || '-' );\n\n                $( '.version dd', index_data_element )\n                  .html( core_data.index.version );\n\n                $( '.numDocs dd', index_data_element )\n                  .html( core_data.index.numDocs );\n\n                $( '.maxDoc dd', index_data_element )\n                  .html( core_data.index.maxDoc );\n                \n                $( '.deletedDocs dd', index_data_element )\n                  .html( core_data.index.deletedDocs || '-' );\n\n                $( '.optimized dd', index_data_element )\n                  .addClass( !core_data.index.hasDeletions ? 'ico-1' : 'ico-0' );\n\n                $( '#actions #optimize', cores_element )\n                  .show();\n\n                $( '.optimized dd span', index_data_element )\n                  .html( !core_data.index.hasDeletions ? 'yes' : 'no' );\n\n                $( '.current dd', index_data_element )\n                  .addClass( core_data.index.current ? 'ico-1' : 'ico-0' );\n\n                $( '.current dd span', index_data_element )\n                  .html( core_data.index.current ? 'yes' : 'no' );\n\n                $( '.directory dd', index_data_element )\n                  .html\n                  (\n                    core_data.index.directory\n                      .replace( /:/g, ':&#8203;' )\n                      .replace( /@/g, '@&#8203;' )\n                  );\n\n                var core_names = [];\n                var core_selects = $( '#actions select', cores_element );\n\n                for( var key in cores )\n                {\n                  core_names.push( '<option value=\"' + key + '\">' + key + '</option>' )\n                }\n\n                core_selects\n                  .html( core_names.join( \"\\n\") );\n\n                $( 'option[value=\"' + current_core + '\"]', core_selects.filter( '.other' ) )\n                  .remove();\n                \n                $( 'input[data-core=\"current\"]', cores_element )\n                  .val( current_core );\n\n                // layout\n\n                var ui_block = $( '#ui-block' );\n                var actions_element = $( '.actions', cores_element );\n                var div_action = $( 'div.action', actions_element );\n\n                ui_block\n                  .css( 'opacity', 0.7 )\n                  .width( cores_element.width() + 10 )\n                  .height( cores_element.height() );\n\n                if( $( '#cloud.global' ).is( ':visible' ) )\n                {\n                  $( '.cloud', div_action )\n                    .show();\n                }\n\n                $( 'button.action', actions_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      var self = $( this );\n\n                      self\n                        .toggleClass( 'open' );\n\n                      $( '.action.' + self.attr( 'id' ), actions_element )\n                        .trigger( 'open' );\n\n                      return false;\n                    }\n                  );\n\n                div_action\n                  .die( 'close' )\n                  .live\n                  (\n                    'close',\n                    function( event )\n                    {\n                      div_action.hide();\n                      ui_block.hide();\n                    }\n                  )\n                  .die( 'open' )\n                  .live\n                  (\n                    'open',\n                    function( event )\n                    {\n                      var self = $( this );\n                      var rel = $( '#' + self.data( 'rel' ) );\n\n                      self\n                        .trigger( 'close' )\n                        .show()\n                        .css( 'left', rel.position().left );\n                      \n                      ui_block\n                        .show();\n                    }\n                  );\n\n                $( 'form button.reset', actions_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $( this ).closest( 'div.action' )\n                        .trigger( 'close' );\n                    }\n                  );\n\n                var form_callback = {\n\n                  rename : function( form, response )\n                  {\n                    var url = path_parts[1] + $( 'input[name=\"other\"]', form ).val();\n                    context.redirect( url );\n                  }\n\n                };\n\n                $( 'form', div_action )\n                  .ajaxForm\n                  (\n                    {\n                      url : app.config.solr_path + app.config.core_admin_path + '?wt=json&indexInfo=false',\n                      dataType : 'json',\n                      beforeSubmit : function( array, form, options )\n                      {\n                        $( 'button[type=\"submit\"] span', form )\n                          .addClass( 'loader' );\n                      },\n                      success : function( response, status_text, xhr, form )\n                      {\n                        var action = $( 'input[name=\"action\"]', form ).val().toLowerCase();\n\n                        delete app.cores_data;\n\n                        if( form_callback[action] )\n                        {\n                         form_callback[action]( form, response ); \n                        }\n                        else\n                        {\n                          sammy.refresh();\n                        }\n\n                        $( 'button.reset', form )\n                          .trigger( 'click' );\n                      },\n                      error : function( xhr, text_status, error_thrown )\n                      {\n                        var response = null;\n                        eval( 'response = ' + xhr.responseText + ';' );\n\n                        var error_elem = $( '.error', div_action.filter( ':visible' ) );\n                        error_elem.show();\n                        $( 'span', error_elem ).text( response.error.msg );\n                      },\n                      complete : function()\n                      {\n                        $( 'button span.loader', actions_element )\n                          .removeClass( 'loader' );\n                      }\n                    }\n                  );\n\n                var reload_button = $( '#actions #reload', cores_element );\n                reload_button\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $.ajax\n                      (\n                        {\n                          url : app.config.solr_path + app.config.core_admin_path + '?wt=json&action=RELOAD&core=' + current_core,\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            this\n                              .addClass( 'success' );\n\n                            delete app.cores_data;\n                            sammy.refresh();\n\n                            window.setTimeout\n                            (\n                              function()\n                              {\n                                reload_button\n                                  .removeClass( 'success' );\n                              },\n                              1000\n                            );\n                          },\n                          error : function( xhr, text_status, error_thrown )\n                          {\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n                                \n                $( '#actions #unload', cores_element )\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      var ret = confirm( 'Do you really want to unload Core \"' + current_core + '\"?' );\n                      if( !ret )\n                      {\n                        return false;\n                      }\n\n                      $.ajax\n                      (\n                        {\n                          url : app.config.solr_path + app.config.core_admin_path + '?wt=json&action=UNLOAD&core=' + current_core,\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            delete app.cores_data;\n                            context.redirect( path_parts[1].substr( 0, path_parts[1].length - 1 ) );\n                          },\n                          error : function( xhr, text_status, error_thrown )\n                          {\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n\n                var optimize_button = $( '#actions #optimize', cores_element );\n                optimize_button\n                  .die( 'click' )\n                  .live\n                  (\n                    'click',\n                    function( event )\n                    {\n                      $.ajax\n                      (\n                        {\n                          url : core_basepath + '/update?optimize=true&waitFlush=true&wt=json',\n                          dataType : 'json',\n                          context : $( this ),\n                          beforeSend : function( xhr, settings )\n                          {\n                            $( 'span', this )\n                              .addClass( 'loader' );\n                          },\n                          success : function( response, text_status, xhr )\n                          {\n                            this\n                              .addClass( 'success' );\n\n                            window.setTimeout\n                            (\n                              function()\n                              {\n                                optimize_button\n                                  .removeClass( 'success' );\n                              },\n                              1000\n                            );\n                                                        \n                            $( '.optimized dd.ico-0', index_data_element )\n                              .removeClass( 'ico-0' )\n                              .addClass( 'ico-1' );\n                          },\n                          error : function( xhr, text_status, error_thrown)\n                          {\n                            console.warn( 'd0h, optimize broken!' );\n                          },\n                          complete : function( xhr, text_status )\n                          {\n                            $( 'span', this )\n                              .removeClass( 'loader' );\n                          }\n                        }\n                      );\n                    }\n                  );\n\n                $( '.timeago', data_element )\n                  .timeago();\n\n                $( 'ul', data_element )\n                  .each\n                  (\n                    function( i, element )\n                    {\n                      $( 'li:odd', element )\n                        .addClass( 'odd' );\n                    }\n                  )\n              }\n            }\n          );\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/dashboard.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar set_healthcheck_status = function( status )\n{\n  var hc_button = $( '.healthcheck-status' )\n  if ( status == 'enable' )\n  {\n    hc_button.parents( 'dd' )\n      .removeClass( 'ico-0' )\n      .addClass( 'ico-1' );\n    hc_button\n      .addClass( 'enabled' )\n      .html( 'disable ping' );\n  } else {\n    hc_button.parents( 'dd' )\n      .removeClass( 'ico-1')\n      .addClass( 'ico-0' );\n    hc_button\n      .removeClass( 'enabled' )\n      .html( 'enable ping' );\n  }\n};\n\n// #/:core\nsammy.get\n(\n  new RegExp( app.core_regex_base + '$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    content_element\n      .removeClass( 'single' );\n    \n    if( !app.core_menu.data( 'admin-extra-loaded' ) )\n    {\n      app.core_menu.data( 'admin-extra-loaded', new Date() );\n\n      $.get\n      (\n        core_basepath + '/admin/file/?file=admin-extra.menu-top.html&contentType=text/html;charset=utf-8',\n        function( menu_extra )\n        {\n          app.core_menu\n            .prepend( menu_extra );\n        }\n      );\n      \n      $.get\n      (\n        core_basepath + '/admin/file/?file=admin-extra.menu-bottom.html&contentType=text/html;charset=utf-8',\n        function( menu_extra )\n        {\n          app.core_menu\n            .append( menu_extra );\n        }\n      );\n    }\n        \n    $.get\n    (\n      'tpl/dashboard.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                    \n        var dashboard_element = $( '#dashboard' );\n                                     \n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/luke?wt=json&show=index&numTerms=0',\n            dataType : 'json',\n            context : $( '#statistics', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading ...' );\n                            \n              $( '.content' )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( '.content', this )\n                .show();\n                                \n              var data = {\n                'index_num-docs' : response['index']['numDocs'],\n                'index_max-doc' : response['index']['maxDoc'],\n                'index_deleted-docs' : response['index']['deletedDocs'],\n                'index_version' : response['index']['version'],\n                'index_segmentCount' : response['index']['segmentCount'],\n                'index_last-modified' : response['index']['lastModified']\n              };\n                            \n              for( var key in data )\n              {\n                $( '.' + key, this )\n                  .show();\n                                \n                $( '.value.' + key, this )\n                  .html( data[key] );\n              }\n\n              var optimized_element = $( '.value.index_optimized', this );\n              if( !response['index']['hasDeletions'] )\n              {\n                optimized_element\n                  .addClass( 'ico-1' );\n\n                $( 'span', optimized_element )\n                  .html( 'yes' );\n              }\n              else\n              {\n                optimized_element\n                  .addClass( 'ico-0' );\n\n                $( 'span', optimized_element )\n                  .html( 'no' );\n              }\n\n              var current_element = $( '.value.index_current', this );\n              if( response['index']['current'] )\n              {\n                current_element\n                  .addClass( 'ico-1' );\n\n                $( 'span', current_element )\n                  .html( 'yes' );\n              }\n              else\n              {\n                current_element\n                  .addClass( 'ico-0' );\n\n                $( 'span', current_element )\n                  .html( 'no' );\n              }\n\n              $( 'a', optimized_element )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {                        \n                    $.ajax\n                    (\n                      {\n                      url : core_basepath + '/update?optimize=true&waitFlush=true&wt=json',\n                      dataType : 'json',\n                      context : $( this ),\n                      beforeSend : function( xhr, settings )\n                      {\n                        this\n                          .addClass( 'loader' );\n                      },\n                      success : function( response, text_status, xhr )\n                      {\n                        this.parents( 'dd' )\n                          .removeClass( 'ico-0' )\n                          .addClass( 'ico-1' );\n                      },\n                      error : function( xhr, text_status, error_thrown)\n                      {\n                        console.warn( 'd0h, optimize broken!' );\n                      },\n                      complete : function( xhr, text_status )\n                      {\n                        this\n                          .removeClass( 'loader' );\n                      }\n                      }\n                    );\n                  }\n                );\n\n              $( '.timeago', this )\n                                 .timeago();\n            },\n            error : function( xhr, text_status, error_thrown )\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Luke is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n        $.ajax\n        (\n          {\n            url : core_basepath + '/replication?command=details&wt=json',\n            dataType : 'json',\n            context : $( '#replication', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n\n              $( '.content', this )\n                .show();\n                            \n              $( '.replication', context.active_core )\n                .show();\n                            \n              var data = response.details;\n              var is_slave = 'undefined' !== typeof( data.slave );\n              var headline = $( 'h2 span', this );\n              var details_element = $( '#details', this );\n              var current_type_element = $( ( is_slave ? '.slave' : '.masterSearch' ), this );\n              var master_data = is_slave ? data.slave.masterDetails : data;\n\n              if( is_slave )\n              {\n                this\n                  .addClass( 'slave' );\n                                \n                headline\n                  .html( headline.html() + ' (Slave)' );\n              }\n              else\n              {\n                this\n                  .addClass( 'master' );\n                                \n                headline\n                  .html( headline.html() + ' (Master)' );\n              }\n\n              // the currently searchable commit regardless of type\n              $( '.version div', current_type_element )\n                .html( data.indexVersion );\n              $( '.generation div', current_type_element )\n                .html( data.generation );\n              $( '.size div', current_type_element )\n                .html( data.indexSize );\n                            \n              // what's replicable on the master\n              var master_element = $( '.master', details_element );\n              $( '.version div', master_element )\n                .html( master_data.master.replicableVersion || '-' );\n              $( '.generation div', master_element )\n                .html( master_data.master.replicableGeneration || '-' );\n              $( '.size div', master_element )\n                .html( \"-\" );\n\n              if( is_slave )\n              {\n                var master_element = $( '.masterSearch', details_element );\n                $( '.version div', master_element )\n                  .html( data.slave.masterDetails.indexVersion );\n                $( '.generation div', master_element )\n                  .html( data.slave.masterDetails.generation );\n                $( '.size div', master_element )\n                  .html( data.slave.masterDetails.indexSize );\n                                \n                // warnings if slave version|gen doesn't match what's replicable\n                if( data.indexVersion !== master_data.master.replicableVersion )\n                {\n                  $( '.version', details_element )\n                    .addClass( 'diff' );\n                }\n                else\n                {\n                  $( '.version', details_element )\n                    .removeClass( 'diff' );\n                }\n                                \n                if( data.generation !== master_data.master.replicableGeneration )\n                {\n                  $( '.generation', details_element )\n                    .addClass( 'diff' );\n                }\n                else\n                {\n                  $( '.generation', details_element )\n                    .removeClass( 'diff' );\n                }\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Replication is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/dataimport?command=details&wt=json',\n            dataType : 'json',\n            context : $( '#dataimport', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n\n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( 'dl', this )\n                .show();\n                            \n              var data = {\n                'status' : response['status'],\n                'info' : response['statusMessages']['']\n              };\n                            \n              for( var key in data )\n              {\n                $( '.' + key, this )\n                  .show();\n                                \n                $( '.value.' + key, this )\n                  .html( data[key] );\n              }\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Dataimport is not configured' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/file/?file=admin-extra.html',\n            dataType : 'html',\n            context : $( '#admin-extra', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .hide()\n                .empty();\n\n              $( '.content', this )\n                .show()\n                .html( response );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'We found no \"admin-extra.html\" file.' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/ping?action=status&wt=json',\n            dataType : 'json',\n            context : $( '#healthcheck', dashboard_element ),\n            beforeSend : function( xhr, settings )\n            {\n              $( 'h2', this )\n                .addClass( 'loader' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Loading' );\n\n              $( '.content', this )\n                .hide();\n            },\n            success : function( response, text_status, xhr )\n            {\n              $( '.message', this )\n                .empty()\n                .hide();\n                            \n              $( '.content', this )\n                .show();\n\n              var status_element = $( '.value.status', this );\n              var toggle_button = $( '.healthcheck-status', this );\n              var status = response['status'];\n              $( 'span', status_element ).html( status );\n\n              var action = ( response['status'] == 'enabled' ) ? 'enable' : 'disable';  \n              set_healthcheck_status(action);\n\n              if( response['status'] == 'enabled' )\n              {\n                status_element\n                  .addClass( 'ico-1' );\n                toggle_button\n                  .addClass( 'enabled' );\n              }\n              else\n              {\n                status_element\n                  .addClass( 'ico-0' );\n              }\n              \n              $( '.healthcheck-status', status_element )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {                      \n                    var action = $(this).hasClass( 'enabled' ) ? 'disable' : 'enable';  \n                    $.ajax\n                    (\n                      {\n                        url : core_basepath + '/admin/ping?action=' + action + '&wt=json',\n                        dataType : 'json',\n                        context : $( this ),\n                        beforeSend : function( xhr, settings )\n                        {\n                          this\n                            .addClass( 'loader' );\n                        },\n                        success : function( response, text_status, xhr )\n                        {\n                          set_healthcheck_status(action);\n                        },\n                        error : function( xhr, text_status, error_thrown)\n                        {\n                          console.warn( 'd0h, enable broken!' );\n                        },\n                        complete : function( xhr, text_status )\n                        {\n                          this\n                            .removeClass( 'loader' );\n                        }\n                      }\n                    );\n                  }\n                );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n              this\n                .addClass( 'disabled' );\n                            \n              $( '.message', this )\n                .show()\n                .html( 'Ping request handler is not configured with a healthcheck file.' );\n            },\n            complete : function( xhr, text_status )\n            {\n              $( 'h2', this )\n                .removeClass( 'loader' );\n            }\n          }\n        );\n                \n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/dataimport.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar dataimport_timeout = 2000;\nvar cookie_dataimport_autorefresh = 'dataimport_autorefresh';\n\nsammy.bind\n(\n  'dataimport_queryhandler_load',\n  function( event, params )\n  {\n    var core_basepath = params.active_core.attr( 'data-basepath' );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/mbeans?cat=QUERYHANDLER&wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          var handlers = response['solr-mbeans'][1];\n          var dataimport_handlers = [];\n          for( var key in handlers )\n          {\n            if( handlers[key]['class'] !== key &&\n              handlers[key]['class'] === 'org.apache.solr.handler.dataimport.DataImportHandler' )\n            {\n              dataimport_handlers.push( key );\n            }\n          }\n          params.callback( dataimport_handlers );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\n// #/:core/dataimport\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(dataimport)$' ),\n  function( context )\n  {\n    sammy.trigger\n    (\n      'dataimport_queryhandler_load',\n      {\n        active_core : this.active_core,\n        callback :  function( dataimport_handlers )\n        {\n          if( 0 === dataimport_handlers.length )\n          {\n            $( '#content' )\n              .html( 'sorry, no dataimport-handler defined!' );\n\n            return false;\n          }\n\n          context.redirect( context.path + '/' + dataimport_handlers[0] );\n        }\n      }\n    );\n  }\n);\n\n// #/:core/dataimport\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(dataimport)\\\\/' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    var path_parts = this.path.match( /^(.+\\/dataimport\\/)(.*)$/ );\n    var handler_url = core_basepath + path_parts[2];\n        \n    $( 'li.dataimport', this.active_core )\n      .addClass( 'active' );\n\n    $.get\n    (\n      'tpl/dataimport.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var dataimport_element = $( '#dataimport', content_element );\n        var form_element = $( '#form', dataimport_element );\n        var config_element = $( '#config', dataimport_element );\n        var error_element = $( '#error', dataimport_element );\n        var debug_response_element = $( '#debug_response', dataimport_element );\n\n        var autorefresh_status = false;\n        var debug_mode = false;\n\n        // handler\n\n        sammy.trigger\n        (\n          'dataimport_queryhandler_load',\n          {\n            active_core : context.active_core,\n            callback :  function( dataimport_handlers )\n            {\n              var handlers_element = $( '#navigation ul', form_element );\n              var handlers = [];\n\n              for( var i = 0; i < dataimport_handlers.length; i++ )\n              {\n                handlers.push\n                (\n                    '<li><a href=\"' + path_parts[1] + dataimport_handlers[i] + '\">' +\n                    dataimport_handlers[i] +\n                    '</a></li>'\n                );\n              }\n\n              $( handlers_element )\n                .html( handlers.join( \"\\n\") ) ;\n                            \n              $( 'a[href=\"' + context.path + '\"]', handlers_element ).closest( 'li' )\n                .addClass( 'current' );\n\n              $( 'form', form_element )\n                .show();\n            }\n          }\n        );\n\n        // config\n\n        function dataimport_fetch_config()\n        {\n          $.ajax\n          (\n            {\n              url : handler_url + '?command=show-config&indent=true',\n              dataType : 'xml',\n              context : $( '#dataimport_config', config_element ),\n              beforeSend : function( xhr, settings )\n              {\n                error_element\n                  .empty()\n                  .hide();\n              },\n              success : function( config, text_status, xhr )\n              {\n                dataimport_element\n                  .removeClass( 'error' );\n\n                config_element\n                  .addClass( 'hidden' );\n\n                var entities = [ '<option value=\"\"></option>' ];\n\n                $( 'document > entity', config )\n                  .each\n                  (\n                    function( i, element )\n                    {\n                      entities.push( '<option>' + $( element ).attr( 'name' ).esc() + '</option>' );\n                    }\n                  );\n                                \n                $( '#entity', form_element )\n                  .html( entities.join( \"\\n\" ) );\n\n                $( '.editable textarea', this )\n                  .val( xhr.responseText.replace( /\\n+$/, '' ) );\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                if( 'parsererror' === error_thrown )\n                {\n                  dataimport_element\n                    .addClass( 'error' );\n                                    \n                  error_element\n                    .text( 'Dataimport XML-Configuration is not valid' )\n                    .show();\n\n                  config_element\n                    .removeClass( 'hidden' );\n                }\n              },\n              complete : function( xhr, text_status )\n              {\n                var code = $(\n                  '<pre class=\"syntax language-xml\"><code>' +\n                  xhr.responseText.esc() +\n                  '</code></pre>'\n                );\n                $( '.formatted', this ).html( code );\n\n                if( 'success' === text_status )\n                {\n                  hljs.highlightBlock( code.get(0) );\n                }\n              }\n            }\n          );\n        }\n        dataimport_fetch_config();\n\n        $( '.block .toggle', dataimport_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.block' )\n                .toggleClass( 'hidden' );\n                            \n              return false;\n            }\n          )\n\n        var reload_config_element = $( '.reload_config', config_element );\n        reload_config_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $.ajax\n              (\n                {\n                  url : handler_url + '?command=reload-config',\n                  dataType : 'xml',\n                  context: $( this ),\n                  beforeSend : function( xhr, settings )\n                  {\n                    this\n                      .removeClass( 'error' )\n                      .addClass( 'loader' );\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    this\n                      .addClass( 'success' );\n\n                    window.setTimeout\n                    (\n                      function()\n                      {\n                        reload_config_element\n                          .removeClass( 'success' );\n                      },\n                      5000\n                    );\n                  },\n                  error : function( xhr, text_status, error_thrown )\n                  {\n                    this\n                      .addClass( 'error' );\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                    this\n                      .removeClass( 'loader' );\n                                        \n                    dataimport_fetch_config();\n                  }\n                }\n              );\n              return false;\n            }\n          );\n\n        var debug_mode_element = $( '.debug_mode', config_element );\n        debug_mode_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var self = $( this );\n              var block = self.closest( '.block' )\n\n              var debug_checkbox = $( 'input[name=\"debug\"]', form_element );\n              var submit_span = $( 'button[type=\"submit\"] span', form_element );\n\n              debug_mode = !debug_mode;\n\n              block.toggleClass( 'debug_mode', debug_mode );\n\n              if( debug_mode )\n              {\n                block.removeClass( 'hidden' );\n\n                debug_checkbox\n                  .attr( 'checked', 'checked' )\n                  .trigger( 'change' );\n                  \n                submit_span\n                  .data( 'original', submit_span.text() )\n                  .text( submit_span.data( 'debugmode' ) );\n\n                $( 'textarea', block )\n                  .autogrow()\n              }\n              else\n              {\n                submit_span\n                  .text( submit_span.data( 'original' ) )\n                  .removeData( 'original' );\n              }\n            }\n          );\n\n        // abort\n\n        var abort_import_element = $( '.abort-import', dataimport_element );\n        abort_import_element\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              var span_element = $( 'span', this );\n\n              $.ajax\n              (\n                {\n                  url : handler_url + '?command=abort&wt=json',\n                  dataType : 'json',\n                  type: 'POST',\n                  context: $( this ),\n                  beforeSend : function( xhr, settings )\n                  {\n                    span_element\n                      .addClass( 'loader' );\n                  },\n                  success : function( response, text_status, xhr )\n                  {\n                    span_element\n                      .data( 'original', span_element.text() )\n                      .text( span_element.data( 'aborting' ) );\n\n                    this\n                      .removeClass( 'warn' )\n                      .addClass( 'success' );\n\n                    window.setTimeout\n                    (\n                      function()\n                      {\n                        $( 'span', abort_import_element )\n                          .removeClass( 'loader' )\n                          .text( span_element.data( 'original' ) )\n                          .removeData( 'original' );\n\n                        abort_import_element\n                          .removeClass( 'success' )\n                          .addClass( 'warn' );\n                      },\n                      dataimport_timeout * 2\n                    );\n\n                    dataimport_fetch_status();\n                  }\n                }\n              );\n              return false;\n            }\n          );\n\n        // state\n\n        var status_button = $( 'form button.refresh-status', form_element );\n\n        status_button\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              dataimport_fetch_status();\n              return false;\n            }\n          )\n          .trigger( 'click' );\n                \n        function dataimport_fetch_status( clear_timeout )\n        {\n          if( clear_timeout )\n          {\n            app.clear_timeout();\n          }\n\n          $.ajax\n          (\n            {\n              url : handler_url + '?command=status&indent=true&wt=json',\n              dataType : 'json',\n              beforeSend : function( xhr, settings )\n              {\n                $( 'span', status_button )\n                  .addClass( 'loader' );\n              },\n              success : function( response, text_status, xhr )\n              {\n                var state_element = $( '#current_state', content_element );\n\n                var status = response.status;\n                var rollback_time = response.statusMessages.Rolledback || null;\n                var abort_time = response.statusMessages.Aborted || null;\n                \n                var messages = response.statusMessages;\n                var messages_count = 0;\n                for( var key in messages ) { messages_count++; }\n\n                function dataimport_compute_details( response, details_element, elapsed_seconds )\n                {\n                  details_element\n                    .show();\n\n                  // --\n\n                  var document_config = {\n                    'Requests' : 'Total Requests made to DataSource',\n                    'Fetched' : 'Total Rows Fetched',\n                    'Skipped' : 'Total Documents Skipped',\n                    'Processed' : 'Total Documents Processed'\n                  };\n\n                  var document_details = [];\n                  for( var key in document_config )\n                  {\n                    var value = parseInt( response.statusMessages[document_config[key]], 10 );\n\n                    var detail = '<abbr title=\"' + document_config[key].esc() + '\">' + key.esc() + '</abbr>: ' +  app.format_number( value ).esc();\n                    if( elapsed_seconds && 'skipped' !== key.toLowerCase() )\n                    {\n                      detail += ' <span>(' + app.format_number( Math.round( value / elapsed_seconds ) ).esc() + '/s)</span>'\n                    }\n\n                    document_details.push( detail );\n                  };\n\n                  $( '.docs', details_element )\n                    .html( document_details.join( ', ' ) );\n\n                  // --\n\n                  var dates_config = {\n                      'Started' : 'Full Dump Started',\n                      'Aborted' : 'Aborted',\n                      'Rolledback' : 'Rolledback'\n                  };\n\n                  var dates_details = [];\n                  for( var key in dates_config )\n                  {\n                    var value = response.statusMessages[dates_config[key]];\n\n                    if( value )\n                    {\n                      var detail = '<abbr title=\"' + dates_config[key].esc() + '\">' + key.esc() + '</abbr>: '\n                                 + '<abbr class=\"time\">' +  value.esc() + '</abbr>';\n                      dates_details.push( detail );                      \n                    }\n                  };\n\n                  var dates_element = $( '.dates', details_element );\n\n                  dates_element\n                    .html( dates_details.join( ', ' ) );\n\n                  $( '.time', dates_element )\n                    .removeData( 'timeago' )\n                    .timeago();\n                };\n\n                var get_time_taken = function get_default_time_taken()\n                {\n                  var time_taken_text = response.statusMessages['Time taken'];\n                  return app.convert_duration_to_seconds( time_taken_text );\n                };\n\n                var get_default_info_text = function default_info_text()\n                {\n                  var info_text = response.statusMessages[''] || '';\n\n                  // format numbers included in status nicely\n                  info_text = info_text.replace\n                  (\n                    /\\d{4,}/g,\n                    function( match, position, string )\n                    {\n                      return app.format_number( parseInt( match, 10 ) );\n                    }\n                  );\n\n                  var time_taken_text = app.convert_seconds_to_readable_time( get_time_taken() );\n                  if( time_taken_text )\n                  {\n                    info_text += ' (Duration: ' + time_taken_text.esc() + ')';\n                  }\n\n                  return info_text;\n                };\n\n                var show_info = function show_info( info_text, elapsed_seconds )\n                {\n                  $( '.info strong', state_element )\n                    .text( info_text || get_default_info_text() );\n\n                  $( '.info .details', state_element )\n                    .hide();\n                };\n\n                var show_full_info = function show_full_info( info_text, elapsed_seconds )\n                {\n                  show_info( info_text, elapsed_seconds );\n\n                  dataimport_compute_details\n                  (\n                    response,\n                    $( '.info .details', state_element ),\n                    elapsed_seconds || get_time_taken()\n                  );\n                };\n\n                state_element\n                  .removeAttr( 'class' );\n\n                var current_time = new Date();\n                $( '.last_update abbr', state_element )\n                  .text( current_time.toTimeString().split( ' ' ).shift() )\n                  .attr( 'title', current_time.toUTCString() );\n\n                $( '.info', state_element )\n                  .removeClass( 'loader' );\n\n                if( 'busy' === status )\n                {\n                  state_element\n                    .addClass( 'indexing' );\n\n                  if( autorefresh_status )\n                  {\n                    $( '.info', state_element )\n                      .addClass( 'loader' );\n                  }\n\n                  var time_elapsed_text = response.statusMessages['Time Elapsed'];\n                  var elapsed_seconds = app.convert_duration_to_seconds( time_elapsed_text );\n                  time_elapsed_text = app.convert_seconds_to_readable_time( elapsed_seconds );\n\n                  var info_text = time_elapsed_text\n                                ? 'Indexing since ' + time_elapsed_text\n                                : 'Indexing ...';\n\n                  show_full_info( info_text, elapsed_seconds );\n                }\n                else if( rollback_time )\n                {\n                  state_element\n                    .addClass( 'failure' );\n\n                  show_full_info();\n                }\n                else if( abort_time )\n                {\n                  state_element\n                    .addClass( 'aborted' );\n\n                  show_full_info( 'Aborting current Import ...' );\n                }\n                else if( 'idle' === status && 0 !== messages_count )\n                {\n                  state_element\n                    .addClass( 'success' );\n\n                  show_full_info();\n                }\n                else \n                {\n                  state_element\n                    .addClass( 'idle' );\n\n                  show_info( 'No information available (idle)' );\n                }\n\n                // show raw status\n\n                var code = $(\n                  '<pre class=\"syntax language-json\"><code>' +\n                  app.format_json( xhr.responseText ).esc() +\n                  '</code></pre>'\n                );\n\n                $( '#raw_output_container', content_element ).html( code );\n                hljs.highlightBlock( code.get(0) );\n\n                if( !app.timeout && autorefresh_status )\n                {\n                  app.timeout = window.setTimeout\n                  (\n                    function()\n                    {\n                      dataimport_fetch_status( true )\n                    },\n                    dataimport_timeout\n                  );\n                }\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                console.debug( arguments );\n\n                reload_config_element\n                  .addClass( 'error' );\n              },\n              complete : function( xhr, text_status )\n              {\n                $( 'span', status_button )\n                  .removeClass( 'loader' )\n                  .addClass( 'success' );\n\n                window.setTimeout\n                (\n                  function()\n                  {\n                    $( 'span', status_button )\n                      .removeClass( 'success' );\n                  },\n                  dataimport_timeout / 2\n                );\n              }\n            }\n          );\n        }\n\n        // form\n\n        var form = $( 'form', form_element );\n\n        form\n          .ajaxForm\n          (\n            {\n              url : handler_url,\n              data : {\n                wt : 'json',\n                indent : 'true'\n              },\n              dataType : 'json',\n              type: 'POST',\n              beforeSend : function( xhr, settings )\n              {\n                $( 'button[type=\"submit\"] span', form_element )\n                  .addClass( 'loader' );\n\n                error_element\n                  .empty()\n                  .hide();\n              },\n              beforeSubmit : function( array, form, options )\n              {\n                var entity = $( '#entity', form ).val();\n                if( entity.length )\n                {\n                  array.push( { name : 'entity', value: entity } );\n                }\n\n                var start = parseInt( $( '#start', form ).val(), 10 );\n                if( start )\n                {\n                  array.push( { name : 'start', value: start } );\n                }\n\n                var rows = parseInt( $( '#rows', form ).val(), 10 );\n                if( rows )\n                {\n                  array.push( { name : 'rows', value: rows } );\n                }\n\n                $( 'input:checkbox', form ).not( ':checked' )\n                  .each( function( i, input )\n                  {\n                    array.push( { name: input.name, value: 'false' } );\n                  }\n                );\n\n                var custom_parameters = $( '#custom_parameters', form ).val();\n                if( custom_parameters.length )\n                {\n                  var params = custom_parameters.split( '&' );\n                  for( var i in params )\n                  {\n                    var tmp = params[i].split( '=' );\n                    array.push( { name : tmp[0], value: tmp[1] } );\n                  }\n                }\n\n                if( debug_mode )\n                {\n                  array.push( { name: 'dataConfig', value: $( '#dataimport_config .editable textarea' ).val() } );\n                }\n              },\n              success : function( response, text_status, xhr )\n              {\n              },\n              error : function( xhr, text_status, error_thrown )\n              {\n                var response = null;\n                try\n                {\n                  eval( 'response = ' + xhr.responseText + ';' );\n                }\n                catch( e ){}\n\n                error_element\n                  .text( response.error.msg || 'Unknown Error (Exception w/o Message)' )\n                  .show();\n              },\n              complete : function( xhr, text_status )\n              {\n                $( 'button[type=\"submit\"] span', form_element )\n                  .removeClass( 'loader' );\n\n                var debug = $( 'input[name=\"debug\"]:checked', form );\n                if( 0 !== debug.size() )\n                {\n                  var code = $(\n                    '<pre class=\"syntax language-json\"><code>' +\n                    app.format_json( xhr.responseText ).esc() +\n                    '</code></pre>'\n                  );\n\n                  $( '.content', debug_response_element ).html( code );\n                  hljs.highlightBlock( code.get(0) );\n                }\n\n                dataimport_fetch_status();\n              }\n            }\n          );\n\n        $( 'input[name=\"debug\"]', form )\n          .off( 'change' )\n          .on\n          (\n            'change',\n            function( event )\n            {\n              debug_response_element.toggle( this.checked );\n            }\n          );\n\n        $( '#auto-refresh-status a', form_element )\n          .off( 'click' )\n          .on\n          (\n            'click',\n            function( event )\n            {\n              $.cookie( cookie_dataimport_autorefresh, $.cookie( cookie_dataimport_autorefresh ) ? null : true );\n              $( this ).trigger( 'state' );\n\n              dataimport_fetch_status();\n\n              return false;\n            }\n          )\n          .off( 'state' )\n          .on\n          (\n            'state',\n            function( event )\n            {\n              autorefresh_status = !!$.cookie( cookie_dataimport_autorefresh );\n\n              $.cookie( cookie_dataimport_autorefresh )\n                ? $( this ).addClass( 'on' )\n                : $( this ).removeClass( 'on' );\n            }\n          )\n          .trigger( 'state' );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/file.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/schema, #/:core/config\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(schema|config)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n\tvar filetype = context.params.splat[1]; // either schema or config\t\n\tvar filename = this.active_core.attr( filetype );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + \"/admin/file?file=\" + filename + \"&contentType=text/xml;charset=utf-8\",\n        dataType : 'xml',\n        context : $( '#content' ),\n        beforeSend : function( xhr, settings )\n        {\n          this\n          .html( '<div class=\"loader\">Loading ...</div>' );\n        },\n        complete : function( xhr, text_status )\n        {\n          var code = $(\n            '<pre class=\"syntax language-xml\"><code>' +\n            xhr.responseText.esc() +\n            '</code></pre>'\n          );\n          this.html( code );\n\n          if( 'success' === text_status )\n          {\n            hljs.highlightBlock( code.get(0) );\n          }\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/index.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar parse_memory_value = function( value )\n{\n  if( value !== Number( value ) )\n  {\n    var units = 'BKMGTPEZY';\n    var match = value.match( /^(\\d+([,\\.]\\d+)?) (\\w)\\w?$/ );\n    var value = parseFloat( match[1] ) * Math.pow( 1024, units.indexOf( match[3].toUpperCase() ) );\n  }\n    \n  return value;\n};\n\nvar generate_bar = function( bar_container, bar_data, convert_label_values )\n{\n  bar_holder = $( '.bar-holder', bar_container );\n\n  var bar_level = 1;\n  var max_width = Math.round( $( '.bar-max', bar_holder ).width() );\n  $( '.bar-max.val', bar_holder ).text( bar_data['max'] );\n    \n  bar_level++;\n  $( '.bar-total.bar', bar_holder ).width( new String( (bar_data['total']/bar_data['max'])*100 ) + '%' );\n  $( '.bar-total.val', bar_holder ).text( bar_data['total'] );\n\n  if( bar_data['used'] )\n  {\n    bar_level++;\n    $( '.bar-used.bar', bar_holder ).width( new String( (bar_data['used']/bar_data['total'])*100 ) + '%' );\n    $( '.bar-used.val', bar_holder ).text( bar_data['used'] );\n  }\n\n  bar_holder\n    .addClass( 'bar-lvl-' + bar_level );\n\n  var percentage = ( ( ( bar_data['used'] || bar_data['total'] ) / bar_data['max'] ) * 100 ).toFixed(1);\n        \n  var hl = $( '[data-desc=\"' + bar_container.attr( 'id' ) + '\"]' );\n\n  $( '.bar-desc', hl )\n    .remove();\n\n  hl\n    .append( ' <small class=\"bar-desc\">' + percentage + '%</small>' );\n\n  if( !!convert_label_values )\n  {\n    $( '.val', bar_holder )\n      .each\n      (\n        function()\n        {\n          var self = $( this );\n\n          var unit = null;\n          var byte_value = parseInt( self.html() );\n\n          self\n            .attr( 'title', 'raw: ' + byte_value + ' B' );\n\n          byte_value /= 1024;\n          byte_value /= 1024;\n          unit = 'MB';\n\n          if( 1024 <= byte_value )\n          {\n            byte_value /= 1024;\n            unit = 'GB';\n          }\n\n          byte_value = byte_value.toFixed( 2 ) + ' ' + unit;\n\n          self\n            .text( byte_value );\n        }\n      );\n  }\n};\n\nvar system_info = function( element, system_data )\n{\n  // -- usage\n\n  var load_average = ( system_data['system']['uptime'] || '' ).match( /load averages?: (\\d+[.,]\\d\\d),? (\\d+[.,]\\d\\d),? (\\d+[.,]\\d\\d)/ );\n  if( load_average )\n  {\n    var hl = $( '#system h2', element );\n\n    $( '.bar-desc', hl )\n      .remove();\n\n    hl\n      .append( ' <small class=\"bar-desc\">' + load_average.slice( 1 ).join( '  ' ).replace( /,/g, '.' ).esc() + '</small>' );\n  }\n\n  // -- physical-memory-bar\n    \n  var bar_holder = $( '#physical-memory-bar', element );\n  if( system_data['system']['totalPhysicalMemorySize'] === undefined || system_data['system']['freePhysicalMemorySize'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['totalPhysicalMemorySize'] ),\n      'total' : parse_memory_value( system_data['system']['totalPhysicalMemorySize'] - system_data['system']['freePhysicalMemorySize'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n  // -- swap-space-bar\n    \n  var bar_holder = $( '#swap-space-bar', element );\n  if( system_data['system']['totalSwapSpaceSize'] === undefined || system_data['system']['freeSwapSpaceSize'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['totalSwapSpaceSize'] ),\n      'total' : parse_memory_value( system_data['system']['totalSwapSpaceSize'] - system_data['system']['freeSwapSpaceSize'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n  // -- file-descriptor-bar\n    \n  var bar_holder = $( '#file-descriptor-bar', element );\n  if( system_data['system']['maxFileDescriptorCount'] === undefined || system_data['system']['openFileDescriptorCount'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var bar_data = {\n      'max' : parse_memory_value( system_data['system']['maxFileDescriptorCount'] ),\n      'total' : parse_memory_value( system_data['system']['openFileDescriptorCount'] )\n    };\n\n    generate_bar( bar_holder, bar_data );\n  }\n\n  0 === $( '#system div[id$=\"-bar\"]:visible', element ).size()\n    ? $( '#system .no-info', element ).show()\n    : $( '#system .no-info', element ).hide();\n\n  // -- memory-bar\n\n  var bar_holder = $( '#jvm-memory-bar', element );\n  if( system_data['jvm']['memory'] === undefined )\n  {\n    bar_holder.hide();\n  }\n  else\n  {\n    bar_holder.show();\n\n    var jvm_memory = $.extend\n    (\n      {\n        'free' : null,\n        'total' : null,\n        'max' : null,\n        'used' : null,\n        'raw' : {\n          'free' : null,\n          'total' : null,\n          'max' : null,\n          'used' : null,\n          'used%' : null\n        }\n      },\n      system_data['jvm']['memory']\n    );\n\n    var bar_data = {\n      'max' : parse_memory_value( jvm_memory['raw']['max'] || jvm_memory['max'] ),\n      'total' : parse_memory_value( jvm_memory['raw']['total'] || jvm_memory['total'] ),\n      'used' : parse_memory_value( jvm_memory['raw']['used'] || jvm_memory['used'] )\n    };\n\n    generate_bar( bar_holder, bar_data, true );\n  }\n\n}\n\n// #/\nsammy.get\n(\n  /^#\\/$/,\n  function( context )\n  {\n    var content_element = $( '#content' );\n\n    content_element\n      .html( '<div id=\"index\"></div>' );\n\n    $.ajax\n    (\n      {\n        url : 'tpl/index.html',\n        context : $( '#index', content_element ),\n        beforeSend : function( arr, form, options )\n        {\n        },\n        success : function( template )\n        {\n          var self = this;\n\n          this\n            .html( template );\n    \n          var data = {\n            'start_time' : app.dashboard_values['jvm']['jmx']['startTime'],\n            'host' : app.dashboard_values['core']['host'] || '-',\n            'dir_instance' : app.dashboard_values['core']['directory']['instance'],\n            'dir_data' : app.dashboard_values['core']['directory']['data'],\n            'dir_index' : app.dashboard_values['core']['directory']['index'],\n            'jvm_version' : app.dashboard_values['jvm']['name'] + ' (' + app.dashboard_values['jvm']['version'] + ')',\n            'processors' : app.dashboard_values['jvm']['processors'],\n            'solr_spec_version' : app.dashboard_values['lucene']['solr-spec-version'] || '-',\n            'solr_impl_version' : app.dashboard_values['lucene']['solr-impl-version'] || '-',\n            'lucene_spec_version' : app.dashboard_values['lucene']['lucene-spec-version'] || '-',\n            'lucene_impl_version' : app.dashboard_values['lucene']['lucene-impl-version'] || '-'\n          };\n\n          if( app.dashboard_values['core']['directory']['cwd'] )\n          {\n            data['dir_cwd'] = app.dashboard_values['core']['directory']['cwd'];\n          }\n    \n          for( var key in data )\n          {                                                        \n            var value_element = $( '.' + key + ' dd', this );\n\n            value_element\n              .text( data[key].esc() );\n                        \n            value_element.closest( 'li' )\n              .show();\n          }\n\n          var commandLineArgs = app.dashboard_values['jvm']['jmx']['commandLineArgs'];\n          if( 0 !== commandLineArgs.length )\n          {\n            var cmd_arg_element = $( '.command_line_args dt', this );\n            var cmd_arg_key_element = $( '.command_line_args dt', this );\n            var cmd_arg_element = $( '.command_line_args dd', this );\n\n            for( var key in commandLineArgs )\n            {\n              cmd_arg_element = cmd_arg_element.clone();\n              cmd_arg_element.text( commandLineArgs[key] );\n\n              cmd_arg_key_element\n                .after( cmd_arg_element );\n            }\n\n            cmd_arg_key_element.closest( 'li' )\n              .show();\n\n            $( '.command_line_args dd:last', this )\n              .remove();\n\n            $( '.command_line_args dd:odd', this )\n              .addClass( 'odd' );\n          }\n\n          $( '.timeago', this )\n            .timeago();\n\n          $( '.index-left .block li:visible:odd', this )\n            .addClass( 'odd' );\n                    \n          // -- system_info\n\n          system_info( this, app.dashboard_values );\n\n          $( '#system a.reload', this )\n            .die( 'click' )\n            .live\n            (\n              'click',\n              function( event )\n              {\n                $.ajax\n                (\n                  {\n                    url : environment_basepath + '/admin/system?wt=json',\n                    dataType : 'json',\n                    context : this,\n                    beforeSend : function( arr, form, options )\n                    {\n                      loader.show( this );\n                    },\n                    success : function( response )\n                    {\n                      system_info( self, response );\n                    },\n                    error : function()\n                    {\n                    },\n                    complete : function()\n                    {\n                      loader.hide( this );\n                    }\n                  }\n                );\n\n                return false;\n              }\n            );\n        },\n        error : function( xhr, text_status, error_thrown )\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/java-properties.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/~java-properties\nsammy.get\n(\n  /^#\\/(~java-properties)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    content_element\n      .html( '<div id=\"java-properties\"></div>' );\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/properties?wt=json',\n        dataType : 'json',\n        context : $( '#java-properties', content_element ),\n        beforeSend : function( xhr, settings )\n        {\n          this\n            .html( '<div class=\"loader\">Loading ...</div>' );\n        },\n        success : function( response, text_status, xhr )\n        {\n          var system_properties = response['system.properties'];\n          var properties_data = {};\n          var properties_content = [];\n          var properties_order = [];\n\n          var workaround = xhr.responseText.match( /\"(line\\.separator)\"\\s*:\\s*\"(.+?)\"/ );\n          if( workaround && workaround[2] )\n          {\n            system_properties[workaround[1]] = workaround[2];\n          }\n\n          for( var key in system_properties )\n          {\n            var displayed_key = key.replace( /\\./g, '.&#8203;' );\n            var displayed_value = [ system_properties[key] ];\n            var item_class = 'clearfix';\n\n            if( -1 !== key.indexOf( '.path' ) || -1 !== key.indexOf( '.dirs' ) )\n            {\n              displayed_value = system_properties[key].split( system_properties['path.separator'] );\n              if( 1 < displayed_value.length )\n              {\n                item_class += ' multi';\n              }\n            }\n\n            var item_content = '<li><dl class=\"' + item_class + '\">' + \"\\n\"\n                             + '<dt>' + displayed_key.esc() + '</dt>' + \"\\n\";\n\n            for( var i in displayed_value )\n            {\n              item_content += '<dd>' + displayed_value[i].esc() + '</dd>' + \"\\n\";\n            }\n\n            item_content += '</dl></li>';\n\n            properties_data[key] = item_content;\n            properties_order.push( key );\n          }\n\n          properties_order.sort();\n          for( var i in properties_order )\n          {\n            properties_content.push( properties_data[properties_order[i]] );\n          }\n\n          this\n            .html( '<ul>' + properties_content.join( \"\\n\" ) + '</ul>' );\n                    \n          $( 'li:odd', this )\n            .addClass( 'odd' );\n                    \n          $( '.multi dd:odd', this )\n            .addClass( 'odd' );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/logging.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar loglevel_path = null;\nvar frame_element = null;\n\nvar logging_handler = function( response, text_status, xhr )\n{\n  var self = this;\n  var loggers = response.loggers;\n\n  var levels = '<div class=\"selector-holder\"><div class=\"selector\">' + \"\\n\"\n             + '<a class=\"trigger\"><span><em>null</em></span></a>' + \"\\n\"\n             + '<ul>' + \"\\n\";\n\n  for( var key in response.levels )\n  {\n    var level = response.levels[key].esc();\n    levels += '<li><a href=\"#\" data-level=\"' + level + '\">' + level + '</a></li>' + \"\\n\";\n  }\n\n  levels += '<li class=\"unset\"><a href=\"#\" data-level=\"unset\">UNSET</a></li>' + \"\\n\"\n         + '</ul>' + \"\\n\"\n         + '<a class=\"close\"><span>[x]</span></a>' + \"\\n\"\n         + '</div></div>';\n\n  var logger_tree = function( filter )\n  {\n    var logger_content = '';\n    var filter_regex = new RegExp( '^' + filter + '\\\\.\\\\w+$' );\n\n    for( var i in loggers )\n    {\n      var logger = loggers[i];\n      var continue_matcher = false;\n\n      if( !filter )\n      {\n        continue_matcher = logger.name.indexOf( '.' ) !== -1;\n      }\n      else\n      {\n        continue_matcher = !logger.name.match( filter_regex );\n      }\n\n      if( continue_matcher )\n      {\n        continue;\n      }\n\n      var logger_class = '';\n\n      if( logger.set )\n      {\n        logger_class = 'set';\n      }\n            \n      if( !logger.level )\n      {\n        logger_class = 'null';\n      }\n\n      var logger_name = logger.name.split( '.' );\n      var display_name = logger_name.pop();\n\n      var leaf_class = 'jstree-leaf';\n      if( logger.level )\n      {\n        leaf_class += ' level-' + logger.level.esc().toLowerCase();\n      }\n\n      logger_content += '<li class=\"' + leaf_class + '\" data-logger=\"' + logger.name.esc() + '\">';\n      logger_content += '<ins class=\"trigger jstree-icon\">&nbsp;</ins>' + \"\\n\";\n      logger_content += '<a href=\"#\" class=\"trigger '+ logger_class + '\"' ;\n\n      if( logger.level )\n      {\n        logger_content += 'rel=\"' + logger.level.esc() + '\" ';\n      }\n            \n      logger_content += 'title=\"' + logger.name.esc() + '\">' + \"\\n\";\n\n      if( 0 !== logger_name.length )\n      {\n        logger_content += '<span class=\"ns\">' + logger_name.join( '.' ).esc() + '.</span>';\n      }\n\n      logger_content += '<span class=\"name\">' + display_name.esc() + '</span>' + \"\\n\";\n      logger_content += '</a>';\n\n      logger_content += levels;\n\n      var child_logger_content = logger_tree( logger.name );\n      if( child_logger_content )\n      {\n        logger_content += '<ul>';\n        logger_content += child_logger_content;\n        logger_content += '</ul>';\n      }\n\n      logger_content += '</li>';\n    }\n\n    return logger_content;\n  };\n\n  var logger_content = '<div class=\"block\">' + \"\\n\"\n                     + '<h2><span>' + response.watcher.esc() + '</span></h2>' + \"\\n\"\n                     + '<ul class=\"tree jstree\">' + logger_tree( null ) + '</ul>' + \"\\n\"\n                     + '</div>';\n\n  self\n    .html( logger_content );\n\n  self\n    .die( 'clear' )\n    .live\n    (\n      'clear',\n      function( event )\n      {\n        $( '.open', this )\n          .removeClass( 'open' );\n      }\n    );\n\n  $( 'li:last-child', this )\n    .addClass( 'jstree-last' );\n\n  $( 'li.jstree-leaf > a', this )\n    .each\n    (\n      function( index, element )\n      {\n        element = $( element );\n        var level = element.attr( 'rel' );\n\n        if( level )\n        {\n          var selector = $( '.selector-holder', element.closest( 'li' ) );\n\n          var trigger = $( 'a.trigger', selector );\n\n          trigger\n            .text( level.esc() );\n\n          if( element.hasClass( 'set' ) )\n          {\n            trigger.first()\n              .addClass( 'set' );\n          }\n\n          $( 'ul a[data-level=\"' + level + '\"]', selector ).first()\n            .addClass( 'level' );\n        }\n      }\n    )\n\n  $( '.trigger', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        self.trigger( 'clear' );\n\n        $( '.selector-holder', $( this ).parents( 'li' ).first() ).first()\n          .trigger( 'toggle' );\n\n        return false;\n      }\n    );\n\n  $( '.selector .close', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        self.trigger( 'clear' );\n        return false;\n      }\n    );\n    \n  $( '.selector-holder', this )\n    .die( 'toggle')\n    .live\n    (\n      'toggle',\n      function( event )\n      {\n        var row = $( this ).closest( 'li' );\n\n        $( 'a:first', row )\n          .toggleClass( 'open' );\n\n        $( '.selector-holder:first', row )\n          .toggleClass( 'open' );\n      }\n    );\n\n  $( '.selector ul a', this )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      {\n        var element = $( this );\n\n        $.ajax\n        (\n          {\n            url : loglevel_path,\n            dataType : 'json',\n            data : {\n              'wt' : 'json',\n              'set' : $( this ).parents( 'li[data-logger]' ).data( 'logger' ) + ':' + element.data( 'level' )\n            },\n            type : 'POST',\n            context : self,\n            beforeSend : function( xhr, settings )\n            {\n              element\n                .addClass( 'loader' );\n            },\n            success : logging_handler\n          }\n        );\n\n        return false;\n      }\n    );\n\n};\n\nvar format_time = function( time )\n{\n  time = time ? new Date( time ) : new Date();\n  return '<abbr title=\"' + time.toLocaleString().esc() + '\">' + time.toTimeString().split( ' ' ).shift().esc() + '</abbr>';\n}\n\nvar load_logging_viewer = function()\n{\n  var table = $( 'table', frame_element );\n  var state = $( '#state', frame_element );\n  var since = table.data( 'latest' ) || 0;\n  var sticky_mode = null;\n\n  $.ajax\n  (\n    {\n      url : loglevel_path + '?wt=json&since=' + since,\n      dataType : 'json',\n      beforeSend : function( xhr, settings )\n      {\n        // initial request\n        if( 0 === since )\n        {\n          sticky_mode = true;\n        }\n\n        // state element is in viewport\n        else if( state.position().top <= $( window ).scrollTop() + $( window ).height() - ( $( 'body' ).height() - state.position().top ) )\n        {\n          sticky_mode = true;\n        }\n\n        else\n        {\n          sticky_mode = false;\n        }\n      },\n      success : function( response, text_status, xhr )\n      {\n        var docs = response.history.docs;\n        var docs_count = docs.length;\n\n        var table = $( 'table', frame_element );\n\n        $( 'h2 span', frame_element )\n          .text( response.watcher.esc() );\n\n        state\n          .html( 'Last Check: ' + format_time() );\n\n        app.timeout = setTimeout\n        (\n          load_logging_viewer,\n          10000\n        );\n\n        if( 0 === docs_count )\n        {\n          table.trigger( 'update' );\n          return false;\n        }\n\n        var content = '<tbody>';\n\n        for( var i = 0; i < docs_count; i++ )\n        {\n          var doc = docs[i];\n\n          if( 1 === doc.time.length )\n          {\n            for( var key in doc )\n            {\n              doc[key] = doc[key][0];\n            }\n          }\n\n          if( !doc.trace )\n          {\n            var lines = doc.message.split( \"\\n\" );\n            if( 1 < lines.length )\n            {\n              doc.message = lines[0];\n              doc.trace = doc.message;\n              delete lines;\n            }\n          }\n\n          var has_trace = 'undefined' !== typeof( doc.trace );\n\n          doc.logger = '<abbr title=\"' + doc.logger.esc() + '\">' + doc.logger.split( '.' ).pop().esc() + '</abbr>';\n\n          var classes = [ 'level-' + doc.level.toLowerCase().esc() ];\n          if( has_trace )\n          {\n            classes.push( 'has-trace' );\n          }\n\n          content += '<tr class=\"' + classes.join( ' ' ) + '\">' + \"\\n\";\n            content += '<td class=\"span\"><a><span>' + format_time( doc.time ) + '</span></a></td>' + \"\\n\";\n            content += '<td class=\"level span\"><a><span>' + doc.level.esc() + '</span></span></a></td>' + \"\\n\";\n            content += '<td class=\"span\"><a><span>' + doc.logger + '</span></a></td>' + \"\\n\";\n            content += '<td class=\"message span\"><a><span>' + doc.message.replace( /,/g, ',&#8203;' ).esc() + '</span></a></td>' + \"\\n\";\n          content += '</tr>' + \"\\n\";\n\n          if( has_trace )\n          {\n            content += '<tr class=\"trace\">' + \"\\n\";\n              \n              // (1) with colspan\n              content += '<td colspan=\"4\"><pre>' + doc.trace.esc() + '</pre></td>' + \"\\n\";\n              \n              // (2) without colspan\n              //content += '<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';\n              //content += '<td>' + doc.trace.esc().replace( /\\n/g, '<br>' ) + '</td>' + \"\\n\";\n\n            content += '</tr>' + \"\\n\";\n          }\n\n        }\n\n        content += '</tbody>';\n\n        $( 'table', frame_element )\n          .append( content );\n\n        table\n          .data( 'latest', response.info.last )\n          .removeClass( 'has-data' )\n          .trigger( 'update' );\n\n        if( sticky_mode )\n        {\n          $( 'body' )\n            .animate\n            (\n                { scrollTop: state.position().top },\n                1000\n            );\n        }\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n}\n\n// #/~logging\nsammy.get\n(\n  /^#\\/(~logging)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    loglevel_path = core_basepath + '/admin/logging';\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/logging.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        frame_element = $( '#frame', content_element );\n        frame_element\n          .html\n          (\n            '<div id=\"viewer\">' + \"\\n\" +\n              '<div class=\"block\">' + \"\\n\" +\n                '<h2><span>&nbsp;</span></h2>' + \"\\n\" +\n              '</div>' + \"\\n\" +\n              '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">' + \"\\n\" +\n                '<thead>' + \"\\n\" +\n                  '<tr>' + \"\\n\" +\n                    '<th class=\"time\">Time</th>' + \"\\n\" +\n                    '<th class=\"level\">Level</th>' + \"\\n\" +\n                    '<th class=\"logger\">Logger</th>' + \"\\n\" +\n                    '<th class=\"message\">Message</th>' + \"\\n\" +\n                  '</tr>' + \"\\n\" +\n                '</thead>' + \"\\n\" +\n                '<tfoot>' + \"\\n\" +\n                  '<tr>' + \"\\n\" +\n                    '<td colspan=\"4\">No Events available</td>' + \"\\n\" +\n                  '</tr>' + \"\\n\" +\n                '</thead>' + \"\\n\" +\n              '</table>' + \"\\n\" +\n              '<div id=\"state\" class=\"loader\">&nbsp;</div>' + \"\\n\" +\n            '</div>'\n          );\n\n        var table = $( 'table', frame_element );\n\n        table\n          .die( 'update' )\n          .live\n          (\n            'update',\n            function( event )\n            {\n              var table = $( this );\n              var tbody = $( 'tbody', table );\n\n              0 !== tbody.size()\n                ? table.addClass( 'has-data' )\n                : table.removeClass( 'has-data' );\n\n              return false;\n            }\n          );\n\n        load_logging_viewer();\n\n        $( '.has-trace a', table )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).closest( 'tr' )\n                .toggleClass( 'open' )\n                .next().toggle();\n\n              return false;\n            }\n          );\n      }\n    );\n  }\n);\n\n// #/~logging/level\nsammy.get\n(\n  /^#\\/(~logging)\\/level$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    loglevel_path = core_basepath + '/admin/logging';\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/logging.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        $( '#menu a[href=\"' + context.path + '\"]' )\n          .parent().addClass( 'active' );\n                      \n        $.ajax\n        (\n          {\n            url : loglevel_path + '?wt=json',\n            dataType : 'json',\n            context : $( '#frame', content_element ),\n            beforeSend : function( xhr, settings )\n            {\n              this\n                .html( '<div class=\"loader\">Loading ...</div>' );\n            },\n            success : logging_handler\n          }\n        );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/ping.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n$( '.ping a', app.core_menu )\n  .live\n  (\n    'click',\n    function( event )\n    {\n      $.ajax\n      (\n        {\n          url : $( this ).attr( 'rel' ) + '?wt=json&ts=' + (new Date).getTime(),\n          dataType : 'json',\n          context: this,\n          beforeSend : function( arr, form, options )\n          {\n            loader.show( this );\n          },\n          success : function( response, text_status, xhr )\n          {\n            $( this )\n              .removeAttr( 'title' );\n                        \n            $( this ).parents( 'li' )\n              .removeClass( 'error' );\n                            \n            var qtime_element = $( '.qtime', this );\n                        \n            if( 0 === qtime_element.size() )\n            {\n              qtime_element = $( '<small class=\"qtime\"> (<span></span>)</small>' );\n                            \n              $( this )\n                .append( qtime_element );\n            }\n                        \n            $( 'span', qtime_element )\n              .html( response.responseHeader.QTime + 'ms' );\n          },\n          error : function( xhr, text_status, error_thrown )\n          {\n            $( this )\n              .attr( 'title', '/admin/ping is not configured (' + xhr.status + ': ' + error_thrown + ')' );\n                        \n            $( this ).parents( 'li' )\n              .addClass( 'error' );\n          },\n          complete : function( xhr, text_status )\n          {\n            loader.hide( this );\n          }\n        }\n      );\n            \n      return false;\n    }\n  );"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/plugins.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar core_basepath = null;\nvar content_element = null;\nvar selected_type = null;\nvar context_path = null;\nvar active_context = null;\nvar changes = null;\nvar reference_xml = null;\n\nvar compute_plugin_data = function( response, changeset )\n{\n  var types = [];\n  var sort_table = {};\n  var plugin_data = {};\n\n  var types_obj = {};\n  var plugin_key = null;\n\n  changes = { count : {}, list : {} }\n\n  for( var i = 0; i < response['solr-mbeans'].length; i++ )\n  {\n    if( !( i % 2 ) )\n    {\n      plugin_key = response['solr-mbeans'][i];\n    }\n    else\n    {\n      plugin_data[plugin_key] = response['solr-mbeans'][i];\n    }\n  }\n\n  for( var key in plugin_data )\n  {\n    sort_table[key] = {\n      url : [],\n      component : [],\n      handler : []\n    };\n    for( var part_key in plugin_data[key] )\n    {\n      if( plugin_data[key][part_key]['_changed_'] )\n      {\n        delete plugin_data[key][part_key]['_changed_'];\n\n        changes.count[key] = changes.count[key] || 0;\n        changes.count[key]++;\n\n        changes.list[key] = changes.list[key] || {};\n        changes.list[key][part_key] = true;\n      }\n\n      if( 0 < part_key.indexOf( '.' ) )\n      {\n        types_obj[key] = true;\n        sort_table[key]['handler'].push( part_key );\n      }\n      else if( 0 === part_key.indexOf( '/' ) )\n      {\n        types_obj[key] = true;\n        sort_table[key]['url'].push( part_key );\n      }\n      else\n      {\n        types_obj[key] = true;\n        sort_table[key]['component'].push( part_key );\n      }\n    }\n  }\n\n  for( var type in types_obj )\n  {\n    types.push( type );\n  }\n  types.sort();\n\n  return {\n    'plugin_data' : plugin_data,\n    'sort_table' : sort_table,\n    'types' : types\n  };\n};\n\nvar render_plugin_data = function( plugin_data, plugin_sort, types )\n{\n  var frame_element = $( '#frame', content_element );\n  var navigation_element = $( '#navigation ul', content_element );\n\n  var navigation_content = [];\n  for( var i = 0; i < types.length; i++ )\n  {\n    var type_url = active_context.params.splat[0] + '/' + active_context.params.splat[1] + '/' + types[i].toLowerCase();\n\n    var navigation_markup = '<li class=\"' + types[i].toLowerCase().esc() + '\">' +\n                            '<a href=\"#/' + type_url + '\" rel=\"' + types[i].esc() + '\">' + types[i].esc();\n\n    if( changes.count[types[i]] )\n    {\n      navigation_markup += ' <span>' + changes.count[types[i]].esc() + '</span>';\n    }\n\n    navigation_markup += '</a>' +\n                         '</li>';\n\n    navigation_content.push( navigation_markup );\n  }\n\n  navigation_content.push( '<li class=\"PLUGINCHANGES\"><a href=\"#\">Watch Changes</a></li>' );\n  navigation_content.push( '<li class=\"RELOAD\"><a href=\"#\" onClick=\"window.location.reload()\">Refresh Values</a></li>' );\n\n  navigation_element\n    .html( navigation_content.join( \"\\n\" ) );\n    \n  $( '.PLUGINCHANGES a', navigation_element )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      { \n        load_reference_xml();\n        \n        changes = { count : {}, list : {} }\n        $( 'a > span', navigation_element ).remove();\n        $( '.entry.changed', frame_element ).removeClass( 'changed' );\n\n        $.blockUI\n        (\n          {\n            message: $('#recording'),\n            css: { width: '450px' }\n          }\n        );\n\n        return false;\n      }\n    ); \n\n  $( '#recording button' )\n    .die( 'click' )\n    .live\n    (\n      'click',\n      function( event )\n      { \n        $.ajax\n        (\n          {\n            type: 'POST',\n            url: core_basepath + '/admin/mbeans',\n            dataType : 'json',\n            data: { \n              'stats': 'true',\n              'wt': 'json', \n              'diff': 'true',\n              'all': 'true',\n              'stream.body': reference_xml \n            },\n            success : function( response, text_status, xhr )\n            {\n              load_reference_xml();\n\n              app.plugin_data = compute_plugin_data( response );\n              render_plugin_data( app.plugin_data.plugin_data, app.plugin_data.sort_table, app.plugin_data.types );\n            }\n          }\n        );\n        $.unblockUI();\n        return false;\n      }\n    ); \n              \n  $( 'a[href=\"' + context_path + '\"]', navigation_element )\n    .parent().addClass( 'current' );\n            \n  var content = '<ul>';\n  for( var sort_key in plugin_sort[selected_type] )\n  {\n    plugin_sort[selected_type][sort_key].sort();\n    var plugin_type_length = plugin_sort[selected_type][sort_key].length;\n                \n    for( var i = 0; i < plugin_type_length; i++ )\n    {\n      var bean = plugin_sort[selected_type][sort_key][i];\n      var classes = [ 'entry' ];\n\n      if( changes.list[selected_type] && changes.list[selected_type][bean] )\n      {\n        classes.push( 'changed' );\n      }\n\n      content += '<li class=\"' + classes.join( ' ' ) + '\">' + \"\\n\";\n      content += '<a href=\"' + context_path + '?entry=' + bean.esc() + '\" data-bean=\"' + bean.esc() + '\">';\n      content += '<span>' + bean.esc() + '</span>';\n      content += '</a>' + \"\\n\";\n      content += '<ul class=\"detail\">' + \"\\n\";\n                    \n      var details = plugin_data[selected_type][ plugin_sort[selected_type][sort_key][i] ];\n      for( var detail_key in details )\n      {\n        if( 'stats' !== detail_key )\n        {\n          var detail_value = details[detail_key];\n\n          if( 'description' === detail_key )\n          {\n            // Link component list to their MBeans page\n            if(detail_value.match(/^Search using components: /)) {\n              var idx = detail_value.indexOf(':');\n              var url = '#/'+active_context.params.splat[0]+'/plugins/other?entry=';\n              var tmp = 'Search using components:<ul>';\n              $.each(detail_value.substr(idx+1).split(\",\"), function(index, value) { \n                value = $.trim(value);\n                tmp += '<li><a href=\"'+url+value+'\" class=\"linker\">'+value+\"</a></li>\";\n              });\n              tmp += \"</ul>\";\n              detail_value = tmp;\n            }\n          }\n\n          content += '<li><dl class=\"clearfix\">' + \"\\n\";\n          content += '<dt>' + detail_key + ':</dt>' + \"\\n\";\n          if($.isArray(detail_value)) {\n            $.each(detail_value, function(index, value) { \n              content += '<dd>' + value + '</dd>' + \"\\n\";\n            });\n          }\n          else {\n            content += '<dd>' + detail_value + '</dd>' + \"\\n\";\n          }\n          content += '</dl></li>' + \"\\n\";\n        }\n        else if( 'stats' === detail_key && details[detail_key] )\n        {\n          content += '<li class=\"stats clearfix\">' + \"\\n\";\n          content += '<span>' + detail_key + ':</span>' + \"\\n\";\n          content += '<ul>' + \"\\n\";\n\n          for( var stats_key in details[detail_key] )\n          {\n            var stats_value = new String( details[detail_key][stats_key] );\n            stats_value = stats_value.replace( /([\\(@])/g, '$1&#8203;' );\n\n            content += '<li><dl class=\"clearfix\">' + \"\\n\";\n            content += '<dt>' + stats_key + ':</dt>' + \"\\n\";\n            content += '<dd>' + stats_value + '</dd>' + \"\\n\";\n            content += '</dl></li>' + \"\\n\";\n          }\n\n          content += '</ul></li>' + \"\\n\";\n        }\n      }\n                    \n      content += '</ul>' + \"\\n\";\n    }\n  }\n  content += '</ul>' + \"\\n\";\n\n  frame_element\n    .html( content );\n\n  \n  var path = active_context.path.split( '?entry=' );\n  var entries = ( path[1] || '' ).split( ',' );\n  \n  var entry_count = entries.length;\n  for( var i = 0; i < entry_count; i++ )\n  {\n    $( 'a[data-bean=\"' + entries[i] + '\"]', frame_element )\n      .parent().addClass( 'expanded' );\n  }\n\n  $( 'a', frame_element )\n    .off( 'click' )\n    .on\n    (\n      'click',\n      function( event )\n      { \n        var self = $( this );\n        var bean = self.data( 'bean' );\n\n        var split = '?entry=';\n        var path = active_context.path.split( split );\n        var entry = ( path[1] || '' );\n\n        var regex = new RegExp( bean.replace( /\\//g, '\\\\/' ) + '(,|$)' );\n        var match = regex.test( entry );\n\n        var url = path[0] + split;\n\n        url += match\n             ? entry.replace( regex, '' )\n             : entry + ',' + bean;\n\n        url = url.replace( /=,/, '=' );\n        url = url.replace( /,$/, '' );\n        url = url.replace( /\\?entry=$/, '' );\n\n        active_context.redirect( url );\n        return false;\n      }\n    );\n  \n  // Try to make links for anything with http (but leave the rest alone)\n  $( '.detail dd' ).each(function(index) {\n    var txt = $(this).html();\n    if(txt.indexOf(\"http\") >= 0) {\n      $(this).linker({\n         className : 'linker'\n      });\n    }\n  });\n  \n  // Add invisible whitespace after each slash\n  $( '.detail a.linker' ).each(function(index) {\n    $(this).html( $(this).html().replace( /\\//g, '/&#8203;' ) );\n  });\n  \n            \n  $( '.entry', frame_element )\n    .each\n    (\n      function( i, entry )\n      {\n        $( '.detail > li', entry ).not( '.stats' ).filter( ':even' )\n          .addClass( 'odd' );\n\n        $( '.stats li:odd', entry )\n          .addClass( 'odd' );\n      }\n    );\n};\n\nvar load_reference_xml = function()\n{\n  $.ajax\n  (\n    {\n      type: 'GET',\n      url: core_basepath + '/admin/mbeans?stats=true&wt=xml',\n      dataType : 'text',\n      success: function( data )\n      {\n        reference_xml = data;\n      }\n    }\n  );\n}\n\nsammy.bind\n(\n  'plugins_load',\n  function( event, params )\n  {\n    var callback = function()\n    {\n      params.callback( app.plugin_data.plugin_data, app.plugin_data.sort_table, app.plugin_data.types );\n    }\n        \n    if( app.plugin_data )\n    {\n      callback( app.plugin_data );\n      return true;\n    }\n\n    $.ajax\n    (\n      {\n        url : core_basepath + '/admin/mbeans?stats=true&wt=json',\n        dataType : 'json',\n        beforeSend : function( xhr, settings )\n        {\n        },\n        success : function( response, text_status, xhr )\n        {\n          app.plugin_data = compute_plugin_data( response );\n\n          $.get\n          (\n            'tpl/plugins.html',\n            function( template )\n            {\n              $( '#content' )\n                .html( template );\n                            \n              callback( app.plugin_data );\n            }\n          );\n        },\n        error : function( xhr, text_status, error_thrown)\n        {\n        },\n        complete : function( xhr, text_status )\n        {\n        }\n      }\n    );\n  }\n);\n\n// #/:core/plugins/$type\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(plugins)\\\\/(\\\\w+)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    content_element = $( '#content' );\n    selected_type = context.params.splat[2].toUpperCase();\n    context_path = context.path.split( '?' ).shift();\n    active_context = context;\n    \n    sammy.trigger\n    (\n      'plugins_load',\n      {\n        active_core : this.active_core,\n        callback : render_plugin_data\n      }\n    );                \n  }\n);\n\n// #/:core/plugins\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(plugins)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    delete app.plugin_data;\n\n    sammy.trigger\n    (\n      'plugins_load',\n      {\n        active_core : this.active_core,\n        callback :  function( plugin_data, plugin_sort, types )\n        {\n          context.redirect( context.path + '/' + types[0].toLowerCase() );\n        }\n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/query.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/:core/query\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(query)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    $.get\n    (\n      'tpl/query.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        var query_element = $( '#query', content_element );\n        var query_form = $( '#form form', query_element );\n        var url_element = $( '#url', query_element );\n        var result_element = $( '#result', query_element );\n        var response_element = $( '#response', result_element );\n\n        url_element\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var wt = $( '[name=\"wt\"]', query_form ).val();\n\n              var content_generator = {\n\n                _default : function( xhr )\n                {\n                  return xhr.responseText.esc();\n                },\n\n                json : function( xhr )\n                {\n                  return app.format_json( xhr.responseText );\n                }\n\n              };\n\n              $.ajax\n              (\n                {\n                  url : this.href,\n                  dataType : wt,\n                  context : response_element,\n                  beforeSend : function( xhr, settings )\n                  {\n                    this\n                     .html( '<div class=\"loader\">Loading ...</div>' );\n                  },\n                  complete : function( xhr, text_status )\n                  {\n                    var code = $(\n                      '<pre class=\"syntax language-' + wt + '\"><code>' +\n                      ( content_generator[wt] || content_generator['_default'] )( xhr ) +\n                      '</code></pre>'\n                    );\n                    this.html( code );\n\n                    if( 'success' === text_status )\n                    {\n                      hljs.highlightBlock( code.get(0) );\n                    }\n                  }\n                }\n              );\n            }\n          )\n\n        $( '.optional legend input[type=checkbox]', query_form )\n          .die( 'change' )\n          .live\n          (\n            'change',\n            function( event )\n            {\n              var fieldset = $( this ).parents( 'fieldset' );\n\n              this.checked\n                ? fieldset.addClass( 'expanded' )\n                : fieldset.removeClass( 'expanded' );\n            }\n          );\n\n        query_form\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              var form_values = [];\n \n              var add_to_form_values = function add_to_form_values( fields )\n              {\n                 for( var i in fields )\n                 {\n                  if( !fields[i].value || 0 === fields[i].value.length )\n                  {\n                    continue;\n                  }\n \n                  form_values.push( fields[i] );\n                 }\n              };\n \n              var fieldsets = $( '> fieldset', query_form );\n \n              var fields = fieldsets.first().formToArray( true );\n              add_to_form_values( fields );\n\n              fieldsets.not( '.common' )\n                .each\n                (\n                  function( i, set )\n                  {\n                    if( $( 'legend input', set ).is( ':checked' ) )\n                    {\n                      var fields = $( set ).formToArray( true );\n                      add_to_form_values( fields );\n                    }\n                  }\n                );\n\n              var handler_path = $( '#qt', query_form ).val();\n              if( '/' !== handler_path[0] )\n              {\n                form_values.push( { name : 'qt', value : handler_path.esc() } );\n                handler_path = '/select';\n              }\n\n              var query_url = window.location.protocol + '//' + window.location.host\n                            + core_basepath + handler_path + '?' + $.param( form_values );\n\n              var custom_parameters = $( '#custom_parameters', query_form ).val();\n              if( custom_parameters && 0 !== custom_parameters.length )\n              {\n                query_url += '&' + custom_parameters.replace( /^&/, '' ); \n              }\n\n              url_element\n                .attr( 'href', query_url )\n                .text( query_url )\n                .trigger( 'change' );\n                            \n              result_element\n                .show();\n                            \n              return false;\n            }\n          );\n\n        var fields = 0;\n        for( var key in context.params )\n        {\n          if( 'string' === typeof context.params[key] )\n          {\n            fields++;\n            $( '[name=\"' + key + '\"]', query_form )\n              .val( context.params[key] );\n          }\n        }\n\n        if( 0 !== fields )\n        {\n          query_form\n            .trigger( 'submit' );\n        }\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/replication.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar timer_element = null;\nvar timer_timeout = null;\n\nvar core_basepath = null;\nvar navigation_element = null;\nvar replication_element = null;\n\nvar init_timer = function( next_tick )\n{\n  if( timer_timeout )\n  {\n    window.clearTimeout( timer_timeout );\n  }\n  update_timer( next_tick );\n}\n\nvar update_timer = function( next_tick )\n{\n  if( 0 === next_tick )\n  {\n    replication_fetch_status();\n    return false;\n  }\n\n  $( 'p .tick', timer_element )\n    .text( app.convert_seconds_to_readable_time( next_tick ) );\n\n  timer_timeout = window.setTimeout\n  (\n    'update_timer( ' + --next_tick + ' )',\n    1000\n  );\n}\n\nvar clear_timer = function()\n{\n  if( timer_timeout )\n  {\n    window.clearTimeout( timer_timeout );\n    timer_element.hide();\n  }\n}\n\nvar replication_fetch_status = function()\n{\n  $.ajax\n  (\n    {\n      url : core_basepath + '/replication?command=details&wt=json',\n      dataType : 'json',\n      beforeSend : function( xhr, settings )\n      {\n        $( '.refresh-status span', navigation_element )\n          .addClass( 'loader' );\n\n        clear_timer();\n      },\n      success : function( response, text_status, xhr )\n      {\n        $( '.refresh-status span', navigation_element )\n          .removeClass( 'loader' );\n                \n        var data = response.details;\n        var is_slave = 'true' === data.isSlave;\n\n        replication_element\n          .addClass( is_slave ? 'slave' : 'master' );\n\n        if( is_slave )\n        {\n          var error_element = $( '#error', replication_element );\n\n          if( data.slave.ERROR )\n          {\n            error_element\n              .html( data.slave.ERROR )\n              .show();\n          }\n          else\n          {\n            error_element\n              .hide()\n              .empty();\n          }\n\n          var progress_element = $( '#progress', replication_element );\n\n          var start_element = $( '#start', progress_element );\n          $( 'span', start_element )\n            .text( data.slave.replicationStartTime );\n\n          var eta_element = $( '#eta', progress_element );\n          $( 'span', eta_element )\n            .text( app.convert_seconds_to_readable_time( data.slave.timeRemaining ) );\n\n          var bar_element = $( '#bar', progress_element );\n          $( '.files span', bar_element )\n            .text( data.slave.numFilesToDownload );\n          $( '.size span', bar_element )\n            .text( data.slave.bytesToDownload );\n\n          var speed_element = $( '#speed', progress_element );\n          $( 'span', speed_element )\n            .text( data.slave.downloadSpeed );\n\n          var done_element = $( '#done', progress_element );\n          $( '.files span', done_element )\n            .text( data.slave.numFilesDownloaded );\n          $( '.size span', done_element )\n            .text( data.slave.bytesDownloaded );\n          $( '.percent span', done_element )\n            .text( parseInt(data.slave.totalPercent ) );\n\n          var percent = parseInt( data.slave.totalPercent );\n          if( 0 === percent )\n          {\n            done_element\n              .css( 'width', '1px' ); \n          }\n          else\n          {\n            done_element\n              .css( 'width', percent + '%' );\n          }\n\n          var current_file_element = $( '#current-file', replication_element );\n          $( '.file', current_file_element )\n            .text( data.slave.currentFile );\n          $( '.done', current_file_element )\n            .text( data.slave.currentFileSizeDownloaded );\n          $( '.total', current_file_element )\n            .text( data.slave.currentFileSize );\n          $( '.percent', current_file_element )\n            .text( parseInt( data.slave.currentFileSizePercent ) );\n\n          if( !data.slave.indexReplicatedAtList )\n          {\n            data.slave.indexReplicatedAtList = [];\n          }\n\n          if( !data.slave.replicationFailedAtList )\n          {\n            data.slave.replicationFailedAtList = [];\n          }\n\n          var iterations_element = $( '#iterations', replication_element );\n          var iterations_list = $( '.iterations ul', iterations_element );\n\n          var iterations_data = [];\n          var iterations_obj = {};\n\n          for( var i in data.slave.indexReplicatedAtList )\n          {\n            var date = data.slave.indexReplicatedAtList[i];\n            if( !iterations_obj[date] )\n            {\n              iterations_obj[date] = true;\n              iterations_data.push( date );\n            }\n          }\n\n          for( var i in data.slave.replicationFailedAtList )\n          {\n            var date = data.slave.replicationFailedAtList[i];\n            if( !iterations_obj[date] )\n            {\n              iterations_obj[date] = true;\n              iterations_data.push( date );\n            }\n          }\n\n          iterations_data.sort().reverse();\n\n          if( 0 !== iterations_data.length )\n          {\n            var iterations = [];\n            for( var i = 0; i < iterations_data.length; i++ )\n            {\n              iterations.push( '<li data-date=\"' + iterations_data[i] + '\">' + iterations_data[i] + '</li>' );\n            }\n                        \n            iterations_list\n              .html( iterations.join( \"\\n\" ) )\n              .show();\n                        \n            $( data.slave.indexReplicatedAtList )\n              .each\n              (\n                function( key, value )\n                {\n                  $( 'li[data-date=\"' + value + '\"]', iterations_list )\n                    .addClass( 'replicated' );\n                }\n              );\n                        \n            if( data.slave.indexReplicatedAt )\n            {\n              $( 'li[data-date=\"' + data.slave.indexReplicatedAt + '\"]', iterations_list )\n                .addClass( 'latest' );\n            }\n                        \n            $( data.slave.replicationFailedAtList )\n              .each\n              (\n                function( key, value )\n                {\n                  $( 'li[data-date=\"' + value + '\"]', iterations_list )\n                    .addClass( 'failed' );\n                }\n              );\n                        \n            if( data.slave.replicationFailedAt )\n            {\n              $( 'li[data-date=\"' + data.slave.replicationFailedAt + '\"]', iterations_list )\n                .addClass( 'latest' );\n            }\n\n            if( 0 !== $( 'li:hidden', iterations_list ).size() )\n            {\n              $( 'a', iterations_element )\n                .show();\n            }\n            else\n            {\n              $( 'a', iterations_element )\n                .hide();\n            }\n          }\n        }\n\n        var details_element = $( '#details', replication_element );\n        var current_type_element = $( ( is_slave ? '.slave' : '.masterSearch' ), details_element );\n        var master_data = is_slave ? data.slave.masterDetails : data;\n\n        // the currently searchable commit regardless of type\n        $( '.version div', current_type_element )\n          .html( data.indexVersion );\n        $( '.generation div', current_type_element )\n          .html( data.generation );\n        $( '.size div', current_type_element )\n          .html( data.indexSize );\n\n        // what's replicable on the master\n        var master_element = $( '.master', details_element );\n        $( '.version div', master_element )\n          .html( master_data.master.replicableVersion || '-' );\n        $( '.generation div', master_element )\n          .html( master_data.master.replicableGeneration || '-' );\n        $( '.size div', master_element )\n          .html( \"-\" );\n                \n        if( is_slave )\n        {\n          // what's searchable on the master\n          var master_searchable = $( '.masterSearch', details_element );\n          $( '.version div', master_searchable )\n            .html( master_data.indexVersion );\n          $( '.generation div', master_searchable )\n            .html( master_data.generation );\n          $( '.size div', master_searchable )\n            .html( master_data.indexSize );\n \n          // warnings if slave version|gen doesn't match what's replicable\n          if( data.indexVersion !== master_data.master.replicableVersion )\n          {\n            $( '.version', details_element )\n              .addClass( 'diff' );\n          }\n          else\n          {\n            $( '.version', details_element )\n              .removeClass( 'diff' );\n          }\n                    \n          if( data.generation !== master_data.master.replicableGeneration )\n          {\n            $( '.generation', details_element )\n              .addClass( 'diff' );\n          }\n          else\n          {\n            $( '.generation', details_element )\n              .removeClass( 'diff' );\n          }\n        }\n\n        if( is_slave )\n        {\n          var settings_element = $( '#settings', replication_element );\n\n          if( data.slave.masterUrl )\n          {\n            $( '.masterUrl dd', settings_element )\n              .html( response.details.slave.masterUrl )\n              .parents( 'li' ).show();\n          }\n\n          var polling_content = '&nbsp;';\n          var polling_ico = 'ico-1';\n\n          if( 'true' === data.slave.isPollingDisabled )\n          {\n            polling_ico = 'ico-0';\n\n            $( '.disable-polling', navigation_element ).hide();\n            $( '.enable-polling', navigation_element ).show();\n          }\n          else\n          {\n            $( '.disable-polling', navigation_element ).show();\n            $( '.enable-polling', navigation_element ).hide();\n\n            if( data.slave.pollInterval )\n            {\n              polling_content = '(interval: ' + data.slave.pollInterval + ')';\n            }\n          }\n\n          $( '.isPollingDisabled dd', settings_element )\n            .removeClass( 'ico-0' )\n            .removeClass( 'ico-1' )\n            .addClass( polling_ico )\n            .html( polling_content )\n            .parents( 'li' ).show();\n                \n          if( 'true' === data.slave.isReplicating )\n          {\n            replication_element\n              .addClass( 'replicating' );\n                        \n            $( '.replicate-now', navigation_element ).hide();\n            $( '.abort-replication', navigation_element ).show();\n                        \n            window.setTimeout( replication_fetch_status, 1000 );\n          }\n          else\n          {\n            replication_element\n              .removeClass( 'replicating' );\n                        \n            $( '.replicate-now', navigation_element ).show();\n            $( '.abort-replication', navigation_element ).hide();\n\n\n            if( 'false' === data.slave.isPollingDisabled && data.slave.pollInterval )\n            {\n              timer_element = $( '.timer', navigation_element );\n              approx_element = $( '.approx', timer_element );\n\n              var next_tick = app.convert_duration_to_seconds( data.slave.pollInterval );\n              approx_element.show();\n\n              if( data.slave.nextExecutionAt )\n              {\n                var nextExecutionAt = new SolrDate( data.slave.nextExecutionAt );\n                var currentDate = new SolrDate( data.slave.currentDate );\n\n                if( nextExecutionAt.getTime() > currentDate.getTime() )\n                {\n                  next_tick = ( nextExecutionAt.getTime() - currentDate.getTime() ) / 1000;\n                  approx_element.hide();\n\n                  $( 'small', timer_element )\n                    .text( data.slave.nextExecutionAt )\n                    .show();\n                }\n              }\n\n              init_timer( next_tick );\n\n              timer_element\n                .show();\n            }\n          }\n        }\n\n        var master_settings_element = $( '#master-settings', replication_element );\n        var master_data = is_slave ? data.slave.masterDetails.master : data.master;\n\n        var replication_icon = 'ico-0';\n        if( 'true' === master_data.replicationEnabled )\n        {\n          replication_icon = 'ico-1';\n\n          $( '.disable-replication', navigation_element ).show();\n          $( '.enable-replication', navigation_element ).hide();\n        }\n        else\n        {\n          $( '.disable-replication', navigation_element ).hide();\n          $( '.enable-replication', navigation_element ).show();\n        }\n\n        $( '.replicationEnabled dd', master_settings_element )\n          .removeClass( 'ico-0' )\n          .removeClass( 'ico-1' )\n          .addClass( replication_icon )\n          .parents( 'li' ).show();\n\n        $( '.replicateAfter dd', master_settings_element )\n          .html( master_data.replicateAfter.join( ', ' ) )\n          .parents( 'li' ).show();\n\n        if( master_data.confFiles )\n        {\n          var conf_files = [];\n          var conf_data = master_data.confFiles.split( ',' );\n                    \n          for( var i = 0; i < conf_data.length; i++ )\n          {\n            var item = conf_data[i];\n\n            if( - 1 !== item.indexOf( ':' ) )\n            {\n              info = item.split( ':' );\n              item = '<abbr title=\"' + info[0] + ' » ' + info[1] + '\">' + ( is_slave ? info[1] : info[0] ) + '</abbr>';\n            }\n\n            conf_files.push( item );\n          }\n\n          $( '.confFiles dd', master_settings_element )\n            .html( conf_files.join( ', ' ) )\n            .parents( 'li' ).show();\n        }\n\n\n        $( '.block', replication_element ).last()\n          .addClass( 'last' );\n      },\n      error : function( xhr, text_status, error_thrown )\n      {\n        $( '#content' )\n          .html( 'sorry, no replication-handler defined!' );\n      },\n      complete : function( xhr, text_status )\n      {\n      }\n    }\n  );\n}\n\n// #/:core/replication\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(replication)$' ),\n  function( context )\n  {\n    core_basepath = this.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n        \n    $.get\n    (\n      'tpl/replication.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n                \n        replication_element = $( '#replication', content_element );\n        navigation_element = $( '#navigation', replication_element );\n\n        replication_fetch_status();\n\n        $( '#iterations a', content_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $( this ).parents( '.iterations' )\n                .toggleClass( 'expanded' );\n                            \n              return false;\n            }\n          );\n\n        $( 'button', navigation_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var button = $( this );\n              var command = button.data( 'command' );\n\n              if( button.hasClass( 'refresh-status' ) && !button.hasClass( 'loader' ) )\n              {\n                replication_fetch_status();\n              }\n              else if( command )\n              {\n                $.get\n                (\n                  core_basepath + '/replication?command=' + command + '&wt=json',\n                  function()\n                  {\n                    replication_fetch_status();\n                  }\n                );\n              }\n              return false;\n            }\n          );\n      }\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/schema-browser.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\nvar current_core = null;\nvar cookie_schema_browser_autoload = 'schema-browser_autoload';\n\nvar luke_array_to_struct = function( array )\n{\n  var struct = {\n    keys : [],\n    values : []\n  };\n  for( var i = 0; i < array.length; i += 2 )\n  {\n    struct.keys.push( array[i] );\n    struct.values.push( array[i+1] );\n  }\n  return struct;\n}\n\nvar luke_array_to_hash = function( array )\n{\n  var hash = {};\n  for( var i = 0; i < array.length; i += 2 )\n  {\n    hash[ array[i] ] = array[i+1];\n  }\n  return hash;\n}\n\nvar load_terminfo = function( trigger_element, core_basepath, field, data_element, terminfo_element )\n{\n  var luke_url = core_basepath + '/admin/luke?wt=json&fl=' + field;\n  var topterms_count_element = $( '.topterms-holder .head input', terminfo_element );\n\n  var term_load_count = parseInt( topterms_count_element.val(), 10 );\n  if( term_load_count )\n  {\n    luke_url += '&numTerms=' + term_load_count;\n  }\n\n  $.ajax\n  (\n    {\n      url : luke_url,\n      dataType : 'json',\n      context : terminfo_element,\n      beforeSend : function( xhr, settings )\n      {\n        $( 'span', trigger_element )\n          .addClass( 'loader' );\n      },\n      success : function( response, text_status, xhr )\n      {\n        var additional_styles = [];\n        var field_data = response.fields[field];\n\n        if( !field_data || !( field_data.topTerms && field_data.histogram ) )\n        {\n          terminfo_element\n            .addClass( 'disabled' );\n\n          return false;\n        }\n\n        var get_width = function get_width()\n        {\n          return $( this ).width();\n        }\n\n        var topterms_holder_element = $( '.topterms-holder', data_element );\n        var histogram_holder_element = $( '.histogram-holder', data_element );\n\n        if( !field_data.topTerms )\n        {\n          topterms_holder_element\n            .hide();\n        }\n        else\n        {\n          topterms_holder_element\n            .show();\n\n          var topterms_table_element = $( 'ul', topterms_holder_element );\n\n          var topterms = field_data.topTerms;\n          var topterms_count = topterms.length;\n                    \n          var topterms_content = '';\n          var topterms_frq_last = null;\n\n          for( var i = 0; i < topterms_count; i += 2 )\n          {\n            if( topterms_frq_last !== topterms[i+1] )\n            {\n              if( topterms_frq_last )\n              {\n                topterms_content += '</ul></li>' + \"\\n\";\n              }\n\n              topterms_frq_last = topterms[i+1];\n              topterms_content += '<li class=\"clearfix\">'\n                               +  '<p><span>' + app.format_number( topterms_frq_last ) + '</span></p>' + \"\\n\"\n                               +  '<ul>' + \"\\n\";\n            }\n\n            var target = '#/' + current_core + '/query?q=' + field.esc() + ':' + encodeURIComponent( '\"' + topterms[i] + '\"' );\n            topterms_content += '<li><a href=\"' + target + '\">' + topterms[i].esc() + '</a></li>' + \"\\n\";\n          }\n\n          topterms_content += '</li>';\n\n          topterms_count = topterms_count / 2;\n\n          $( 'input', trigger_element )\n            .val( topterms_count );\n\n          topterms_table_element\n            .html( topterms_content );\n\n          var max_width = 10 + Math.max.apply( Math, $( 'p', topterms_table_element ).map( get_width ).get() );\n          additional_styles.push\n          (\n            topterms_table_element.selector + ' p { width: ' + max_width + 'px !important; }' + \"\\n\" +\n            topterms_table_element.selector + ' ul { margin-left: ' + ( max_width + 5 ) + 'px !important; }'\n          );\n\n          topterms_count_element\n            .val( topterms_count );\n\n          $( 'p.head .max', topterms_holder_element )\n            .html( field_data.distinct );\n\n          $( 'p.head #query_link', topterms_holder_element )\n            .attr( 'href', '#/' + current_core + '/query?q=' + field.esc() + ':[* TO *]' );\n\n          $( 'ul li:even', topterms_table_element )\n            .addClass( 'odd' );\n        }\n\n        if( !field_data.histogram )\n        {\n          histogram_holder_element\n            .hide();\n        }\n        else\n        {\n          histogram_holder_element\n            .show();\n\n          var histogram_values = luke_array_to_hash( field_data.histogram );\n          var histogram_entries = [];\n          \n          var histogram_max = null;\n          for( var key in histogram_values )\n          {\n            histogram_max = Math.max( histogram_max, histogram_values[key] );\n          }\n\n          for( var key in histogram_values )\n          {\n            histogram_entries.push\n            (\n              '<li>' + \"\\n\" +\n              '  <dl class=\"clearfix\" style=\"width: ' +  ( ( histogram_values[key] / histogram_max ) * 100 ) + '%;\">' + \"\\n\" +\n              '    <dt><span>' + app.format_number( key ) + '</span></dt>' + \"\\n\" +\n              '    <dd><span>' + app.format_number( histogram_values[key] ) + '</span></dd>' + \"\\n\" +\n              '  </dl>' + \"\\n\" +\n              '</li>'\n            );\n          }\n\n          $( 'ul', histogram_holder_element )\n            .html( histogram_entries.join( \"\\n\" ) );\n\n          $( 'ul li:even', histogram_holder_element )\n            .addClass( 'odd' );\n\n          var max_width = 10 + Math.max.apply( Math, $( 'dt', histogram_holder_element ).map( get_width ).get() );\n          additional_styles.push\n          (\n            histogram_holder_element.selector + ' ul { margin-left: ' + max_width + 'px !important; }' + \"\\n\" +\n            histogram_holder_element.selector + ' li dt { left: ' + ( max_width * -1 ) + 'px !important; width: ' + max_width + 'px !important; }'\n          );\n        }\n\n        if( additional_styles )\n        {\n          terminfo_element\n            .prepend( '<style type=\"text/css\">' + additional_styles.join( \"\\n\" ) + '</style>' );\n        }\n      },\n      error : function( xhr, text_status, error_thrown)\n      {\n        terminfo_element\n          .addClass( 'disabled' );\n      },\n      complete : function( xhr, text_status )\n      {\n        $( 'span', trigger_element )\n          .removeClass( 'loader' );\n      }\n    }\n  );\n}\n\nsammy.bind\n(\n  'schema_browser_navi',\n  function( event, params )\n  {\n    var related_navigation_element = $( '#related dl#f-df-t', params.schema_browser_element );\n    var related_navigation_meta = $( '#related dl.ukf-dsf', params.schema_browser_element );\n    var related_select_element = $( '#related select', params.schema_browser_element )\n    var type = 'index';\n\n    var sammy_basepath = app.core_menu.find( '.active a' ).attr( 'href' );\n        \n    if( !related_navigation_meta.hasClass( 'done' ) )\n    {\n      if( app.schema_browser_data.unique_key_field )\n      {\n        $( '.unique-key-field', related_navigation_meta )\n          .show()\n          .after\n          (\n            '<dd class=\"unique-key-field\"><a href=\"' + sammy_basepath + '?field=' +\n            app.schema_browser_data.unique_key_field + '\">' +\n            app.schema_browser_data.unique_key_field + '</a></dd>'\n          );\n      }\n\n      if( app.schema_browser_data.default_search_field )\n      {\n        $( '.default-search-field', related_navigation_meta )\n          .show()\n          .after\n          (\n            '<dd class=\"default-search-field\"><a href=\"' + sammy_basepath + '?field=' +\n            app.schema_browser_data.default_search_field + '\">' +\n            app.schema_browser_data.default_search_field + '</a></dd>'\n          );\n      }\n\n      related_navigation_meta\n        .addClass( 'done' );\n    }\n\n    if( params.route_params )\n    {\n      var type = params.route_params.type;\n      var value = params.route_params.value;\n\n      var navigation_data = {\n        'fields' : [],\n        'copyfield_source' : [],\n        'copyfield_dest' : [],\n        'dynamic_fields' : [],\n        'types' : []\n      }\n\n      $( 'option[value=\"' + params.route_params.path + '\"]', related_select_element )\n        .attr( 'selected', 'selected' );\n\n      related_select_element\n        .trigger( 'liszt:updated' );\n\n      if( 'field' === type )\n      {\n        navigation_data.fields.push( value );\n\n        if( app.schema_browser_data.relations.f_t[value] )\n        {\n          navigation_data.types.push( app.schema_browser_data.relations.f_t[value] );\n        }\n\n        if( app.schema_browser_data.relations.f_df[value] )\n        {\n          navigation_data.dynamic_fields.push( app.schema_browser_data.relations.f_df[value] );\n        }\n\n        if( app.schema_browser_data.fields[value].copySources && 0 !== app.schema_browser_data.fields[value].copySources.length )\n        {\n          navigation_data.copyfield_source = app.schema_browser_data.fields[value].copySources;\n        }\n\n        if( app.schema_browser_data.fields[value].copyDests && 0 !== app.schema_browser_data.fields[value].copyDests.length )\n        {\n          navigation_data.copyfield_dest = app.schema_browser_data.fields[value].copyDests;\n        }\n      }\n      else if( 'dynamic-field' === type )\n      {\n        navigation_data.dynamic_fields.push( value );\n        navigation_data.types.push( app.schema_browser_data.relations.df_t[value] );\n\n        if( app.schema_browser_data.relations.df_f[value] )\n        {\n          navigation_data.fields = app.schema_browser_data.relations.df_f[value];\n        }\n      }\n      else if( 'type' === type )\n      {\n        navigation_data.types.push( value );\n                \n        if( app.schema_browser_data.relations.t_f[value] )\n        {\n          navigation_data.fields = app.schema_browser_data.relations.t_f[value];\n        }\n                \n        if( app.schema_browser_data.relations.t_df[value] )\n        {\n          navigation_data.dynamic_fields = app.schema_browser_data.relations.t_df[value];\n        }\n      }\n\n      var navigation_content = '';\n\n      if( 0 !== navigation_data.fields.length )\n      {\n        navigation_data.fields.sort();\n        navigation_content += '<dt class=\"field\">Field</dt>' + \"\\n\";\n        for( var i in navigation_data.fields )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.fields[i];\n          navigation_content += '<dd class=\"field\"><a href=\"' + href + '\">' + navigation_data.fields[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.copyfield_source.length )\n      {\n        navigation_data.copyfield_source.sort();\n        navigation_content += '<dt class=\"copyfield\">Copied from</dt>' + \"\\n\";\n        for( var i in navigation_data.copyfield_source )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.copyfield_source[i];\n          navigation_content += '<dd class=\"copyfield\"><a href=\"' + href + '\">' + navigation_data.copyfield_source[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.copyfield_dest.length )\n      {\n        navigation_data.copyfield_dest.sort();\n        navigation_content += '<dt class=\"copyfield\">Copied to</dt>' + \"\\n\";\n        for( var i in navigation_data.copyfield_dest )\n        {\n          var href = sammy_basepath + '?field=' + navigation_data.copyfield_dest[i];\n          navigation_content += '<dd class=\"copyfield\"><a href=\"' + href + '\">' + navigation_data.copyfield_dest[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.dynamic_fields.length )\n      {\n        navigation_data.dynamic_fields.sort();\n        navigation_content += '<dt class=\"dynamic-field\">Dynamic Field</dt>' + \"\\n\";\n        for( var i in navigation_data.dynamic_fields )\n        {\n          var href = sammy_basepath + '?dynamic-field=' + navigation_data.dynamic_fields[i];\n          navigation_content += '<dd class=\"dynamic-field\"><a href=\"' + href + '\">' + navigation_data.dynamic_fields[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      if( 0 !== navigation_data.types.length )\n      {\n        navigation_data.types.sort();\n        navigation_content += '<dt class=\"type\">Type</dt>' + \"\\n\";\n        for( var i in navigation_data.types )\n        {\n          var href = sammy_basepath + '?type=' + navigation_data.types[i];\n          navigation_content += '<dd class=\"type\"><a href=\"' + href + '\">' + navigation_data.types[i] + '</a></dd>' + \"\\n\";\n        }\n      }\n\n      related_navigation_element\n        .show()\n        .attr( 'class', type )\n        .html( navigation_content );\n    }\n    else\n    {\n      related_navigation_element\n        .hide();\n            \n      $( 'option:selected', related_select_element )\n        .removeAttr( 'selected' );\n    }\n\n    if( 'field' === type && value === app.schema_browser_data.unique_key_field )\n    {\n      $( '.unique-key-field', related_navigation_meta )\n        .addClass( 'active' );\n    }\n    else\n    {\n      $( '.unique-key-field', related_navigation_meta )\n        .removeClass( 'active' );\n    }\n\n    if( 'field' === type && value === app.schema_browser_data.default_search_field )\n    {\n      $( '.default-search-field', related_navigation_meta )\n        .addClass( 'active' );\n    }\n    else\n    {\n      $( '.default-search-field', related_navigation_meta )\n        .removeClass( 'active' );\n    }\n\n    if( params.callback )\n    {\n      params.callback( app.schema_browser_data, $( '#data', params.schema_browser_element ) );\n    }\n  }\n);\n\nsammy.bind\n(\n  'schema_browser_load',\n  function( event, params )\n  {\n    var core_basepath = params.active_core.attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    if( app.schema_browser_data )\n    {\n      params.schema_browser_element = $( '#schema-browser', content_element );\n\n      sammy.trigger\n      (\n        'schema_browser_navi',\n        params\n      );\n    }\n    else\n    {\n      content_element\n        .html( '<div id=\"schema-browser\"><div class=\"loader\">Loading ...</div></div>' );\n            \n      $.ajax\n      (\n        {\n          url : core_basepath + '/admin/luke?numTerms=0&wt=json',\n          dataType : 'json',\n          beforeSend : function( xhr, settings )\n          {\n          },\n          success : function( response, text_status, xhr )\n          {\n            app.schema_browser_data = {\n            default_search_field : null,\n            unique_key_field : null,\n            key : {},\n            fields : {},\n            dynamic_fields : {},\n            types : {},\n            relations : {\n              f_df : {},\n              f_t  : {},\n              df_f : {},\n              df_t : {},\n              t_f  : {},\n              t_df : {}\n            }\n            };\n\n            app.schema_browser_data.fields = response.fields;\n            app.schema_browser_data.key = response.info.key;\n\n            $.ajax\n            (\n            {\n              url : core_basepath + '/admin/luke?show=schema&wt=json',\n              dataType : 'json',\n              beforeSend : function( xhr, settings )\n              {\n              },\n              success : function( response, text_status, xhr )\n              {\n                app.schema_browser_data.default_search_field = response.schema.defaultSearchField;\n                app.schema_browser_data.unique_key_field = response.schema.uniqueKeyField;\n\n                app.schema_browser_data.dynamic_fields = response.schema.dynamicFields;\n                app.schema_browser_data.types = response.schema.types;\n\n                for( var field in response.schema.fields )\n                {\n                  app.schema_browser_data.fields[field] = $.extend\n                  (\n                    {},\n                    app.schema_browser_data.fields[field],\n                    response.schema.fields[field]\n                  );\n                }\n\n                for( var field in app.schema_browser_data.fields )\n                {\n                  var copy_dests = app.schema_browser_data.fields[field].copyDests;\n                  for( var i in copy_dests )\n                  {\n                    var copy_dest = copy_dests[i];\n                    if( !app.schema_browser_data.fields[copy_dest] )\n                    {\n                      app.schema_browser_data.fields[copy_dest] = {\n                        partial : true,\n                        copySources : []\n                      };\n                    }\n\n                    if( app.schema_browser_data.fields[copy_dest].partial )\n                    {\n                      app.schema_browser_data.fields[copy_dest].copySources.push( field );\n                    }\n                  }\n\n                  var copy_sources = app.schema_browser_data.fields[field].copySources;\n                  for( var i in copy_sources )\n                  {\n                    var copy_source = copy_sources[i];\n                    if( !app.schema_browser_data.fields[copy_source] )\n                    {\n                      app.schema_browser_data.fields[copy_source] = {\n                        partial : true,\n                        copyDests : []\n                      };\n                    }\n\n                    if( app.schema_browser_data.fields[copy_source].partial )\n                    {\n                      app.schema_browser_data.fields[copy_source].copyDests.push( field );\n                    }\n                  }\n\n                  app.schema_browser_data.relations.f_t[field] = app.schema_browser_data.fields[field].type;\n\n                  if( !app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type] )\n                  {\n                    app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type] = [];\n                  }\n                  app.schema_browser_data.relations.t_f[app.schema_browser_data.fields[field].type].push( field );\n\n                  if( app.schema_browser_data.fields[field].dynamicBase )\n                  {\n                    app.schema_browser_data.relations.f_df[field] = app.schema_browser_data.fields[field].dynamicBase;\n\n                    if( !app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase] )\n                    {\n                      app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase] = [];\n                    }\n                    app.schema_browser_data.relations.df_f[app.schema_browser_data.fields[field].dynamicBase].push( field );\n                  }\n                }\n\n                for( var dynamic_field in app.schema_browser_data.dynamic_fields )\n                {\n                  app.schema_browser_data.relations.df_t[dynamic_field] = app.schema_browser_data.dynamic_fields[dynamic_field].type;\n\n                  if( !app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type] )\n                  {\n                    app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type] = [];\n                  }\n                  app.schema_browser_data.relations.t_df[app.schema_browser_data.dynamic_fields[dynamic_field].type].push( dynamic_field );\n                }\n\n                $.get\n                (\n                  'tpl/schema-browser.html',\n                  function( template )\n                  {\n                    content_element\n                      .html( template );\n                                            \n                    var schema_browser_element = $( '#schema-browser', content_element );\n                    var related_element = $( '#related', schema_browser_element );\n                    var related_select_element = $( 'select', related_element );\n                    var data_element = $( '#data', schema_browser_element );\n\n                    var related_options = '';\n                                            \n                    var fields = [];\n                    for( var field_name in app.schema_browser_data.fields )\n                    {\n                      fields.push\n                      (\n                        '<option value=\"?field=' + field_name + '\">' + field_name + '</option>'\n                      );\n                    }\n                    if( 0 !== fields.length )\n                    {\n                      fields.sort();\n                      related_options += '<optgroup label=\"Fields\">' + \"\\n\";\n                      related_options += fields.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n                                            \n                    var dynamic_fields = [];\n                    for( var type_name in app.schema_browser_data.dynamic_fields )\n                    {\n                      dynamic_fields.push\n                      (\n                        '<option value=\"?dynamic-field=' + type_name + '\">' + type_name + '</option>'\n                      );\n                    }\n                    if( 0 !== dynamic_fields.length )\n                    {\n                      dynamic_fields.sort();\n                      related_options += '<optgroup label=\"DynamicFields\">' + \"\\n\";\n                      related_options += dynamic_fields.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n                                            \n                    var types = [];\n                    for( var type_name in app.schema_browser_data.types )\n                    {\n                      types.push\n                      (\n                        '<option value=\"?type=' + type_name + '\">' + type_name + '</option>'\n                      );\n                    }\n                    if( 0 !== types.length )\n                    {\n                      types.sort();\n                      related_options += '<optgroup label=\"Types\">' + \"\\n\";\n                      related_options += types.sort().join( \"\\n\" ) + \"\\n\";\n                      related_options += '</optgroup>' + \"\\n\";\n                    }\n\n                    related_select_element\n                      .attr( 'rel', app.core_menu.find( '.active a' ).attr( 'href' ) )\n                      .append( related_options )\n                      .chosen();\n                                            \n                    related_select_element\n                      .die( 'change' )\n                      .live\n                      (\n                        'change',\n                        function( event )\n                        {\n                          var select_element = $( this );\n                          var option_element = $( 'option:selected', select_element );\n\n                          location.href = select_element.attr( 'rel' ) + option_element.val();\n                          return false;\n                        }\n                      );\n\n                    params.schema_browser_element = schema_browser_element;\n                    sammy.trigger\n                    (\n                      'schema_browser_navi',\n                      params\n                    );\n                  }\n                );\n              },\n              error : function( xhr, text_status, error_thrown)\n              {\n              },\n              complete : function( xhr, text_status )\n              {\n              }\n            }\n            );\n\n          },\n          error : function( xhr, text_status, error_thrown)\n          {\n          },\n          complete : function( xhr, text_status )\n          {\n          }\n        }\n      );\n    }\n  }\n);\n\n// #/:core/schema-browser\nsammy.get\n(\n  new RegExp( app.core_regex_base + '\\\\/(schema-browser)$' ),\n  function( context )\n  {\n    var core_basepath = this.active_core.attr( 'data-basepath' );\n    current_core = context.params.splat[0];\n\n    var trigger_params = {\n      active_core : this.active_core\n    };\n\n    var path = context.path.split( '?' );\n    if( path && path[1] )\n    {\n      var param = path[1].split( '=' );\n      trigger_params.route_params =  {\n        path : '?' + path[1],\n        type : param[0],\n        value : param[1]\n      }\n\n      trigger_params.callback = function( schema_browser_data, data_element )\n      {\n        var field = trigger_params.route_params.value;\n\n        var type = trigger_params.route_params.type;\n        var is_f = 'field' === type;\n        var is_df = 'dynamic-field' === type;\n        var is_t = 'type' === type;\n                \n        var options_element = $( '.options', data_element );\n        var sammy_basepath = context.path.indexOf( '/', context.path.indexOf( '/', 2 ) + 1 );\n\n        data_element\n          .show();\n\n        // -- head\n\n        var head_element = $( '.head', data_element );\n        if( is_f )\n        {\n          $( '.type', head_element ).html( 'Field' );\n        }\n        else if( is_df )\n        {\n          $( '.type', head_element ).html( 'Dynamic Field' );\n        }\n        else if( is_t )\n        {\n          $( '.type', head_element ).html( 'Type' );\n        }\n        $( '.name', head_element ).html( field.esc() );\n\n\n        var partial_state = false;\n        if( is_f )\n        {\n          partial_state = !!schema_browser_data.fields[field].partial;\n        }\n\n        $( '.partial', data_element )\n          .toggle( partial_state );\n\n        // -- docs\n        var docs_element = $( 'dt.docs', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].docs )\n        {\n          $( 'dd.docs', options_element )\n            .remove();\n\n          var target = '#/' + current_core + '/query?q=' + field.esc() + ':[* TO *]';\n          docs_element\n            .show()\n            .after( \n             '<dd class=\"docs\">'+\n               '<a href=\"'+target+'\">' + schema_browser_data.fields[field].docs + '</a>' +\n             '</dd>' );\n        }\n        else\n        {\n          $( '.docs', options_element )\n            .hide();\n        }\n\n        // -- distinct \n        var distinct_element = $( 'dt.distinct', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].distinct )\n        {\n          $( 'dd.distinct', options_element )\n            .remove();\n\n          distinct_element\n            .show()\n            .after( '<dd class=\"distinct\">' + schema_browser_data.fields[field].distinct + '</dd>' );\n        }\n        else\n        {\n          $( '.distinct', options_element )\n            .hide();\n        }\n\n        // -- position-increment-gap \n        var pig_element = $( 'dt.position-increment-gap', options_element );\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].positionIncrementGap )\n        {\n          $( 'dd.position-increment-gap', options_element )\n            .remove();\n\n          pig_element\n            .show()\n            .after( '<dd class=\"position-increment-gap\">' + schema_browser_data.fields[field].positionIncrementGap + '</dd>' );\n        }\n        else\n        {\n          $( '.position-increment-gap', options_element )\n            .hide();\n        }\n\n        var similarity_element = $( 'dt.similarity', options_element );\n        if ( is_t && schema_browser_data.types[field] && schema_browser_data.types[field].similarity ) {\n            var similarity = schema_browser_data.types[field].similarity\n            if (similarity.details && similarity.className) {\n                $( 'dd.similarity', options_element ).remove();\n                similarity_element\n                    .show()\n                    .after(['<dd class=\"similarity\">', similarity.details.esc(), ' (', similarity.className.esc(), ') </dd>'].join(\"\"));\n            }\n        } else {\n            $( '.similarity', options_element ).hide();\n        }\n\n\n        // -- flags table\n        var flags_table = $( 'table.flags', data_element );\n\n        var flags_arr = [];\n        for( var key in schema_browser_data.key )\n        {\n          flags_arr.push( '<th data-key=\"' + key + '\">' + schema_browser_data.key[key] + '</th>' );\n        }\n\n        $( 'thead tr', flags_table )\n          .append( flags_arr.join( \"\\n\" ) );\n\n\n        var flags_body = $( 'tbody', flags_table );\n        flags_body.empty();\n\n        var generate_flags_row = function generate_flags_row( flags_str, title )\n        {\n          var flags_arr = [ '<th>' + title.esc() + '</th>' ];\n\n          if( 0 === flags_str.indexOf( '(' ) )\n          {\n            flags_arr.push( '<td colspan=\"2\" class=\"text\">' + flags_str + '</td>' );\n          }\n          else\n          {\n            var i = 0;\n            for( var key in schema_browser_data.key )\n            {\n              var flag_match = key === flags_str[i];\n\n              var flag_cell = '<td '\n                            + ' data-key=\"' + key + '\"'\n                            + ' class=\"' + ( flag_match ? 'check' : '' ) + '\"'\n                            + '>'\n                            + ( flag_match ? '<span>√</span>' : '&nbsp;' )\n                            + '</td>';\n\n              flags_arr.push( flag_cell );\n              i++;\n            }\n          }\n\n          flags_body\n            .append( '<tr>' + flags_arr.join( \"\\n\" ) + '</tr>' );\n        };\n\n        var flags = null;\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].flags )\n        {\n          flags = schema_browser_data.fields[field].flags;\n        }\n        else if( is_df && schema_browser_data.dynamic_fields[field] && schema_browser_data.dynamic_fields[field].flags )\n        {\n          flags = schema_browser_data.dynamic_fields[field].flags;\n        }\n\n        if( flags )\n        {\n          generate_flags_row( flags, 'Properties' );\n        }\n\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].schema )\n        {\n          generate_flags_row( schema_browser_data.fields[field].schema, 'Schema' );\n        }\n\n        if( is_f && schema_browser_data.fields[field] && schema_browser_data.fields[field].index )\n        {\n          generate_flags_row( schema_browser_data.fields[field].index, 'Index' );\n        }\n\n\n        if( 0 !== $( 'tr', flags_body ).size() )\n        {\n          var col_count = 0;\n          for( var key in schema_browser_data.key )\n          {\n            var cols = $( '[data-key=\"' + key + '\"]', flags_table );\n            \n            var col_used = 0 !== cols.filter( '.check' ).size();\n            col_count += col_used;\n\n            cols.toggle( col_used );\n          }\n\n          $( 'td[colspan]', flags_body )\n            .attr( 'colspan', col_count );\n\n          flags_table.show();\n        }\n        else\n        {\n          flags_table.hide();\n        }\n\n        var analyzer_element = $( '.analyzer', data_element );\n        var analyzer_data = null;\n\n        var analysis_link = false;\n        var analysis_link_elements = $( 'p a', analyzer_element );\n        var analysis_target = '#/' + current_core + '/analysis?';\n\n        if( is_f )\n        {\n          analyzer_data = schema_browser_data.types[schema_browser_data.relations.f_t[field]];\n\n          analysis_link = true;\n          analysis_target += 'analysis.fieldname=' + field;\n        }\n        else if( is_df )\n        {\n          analyzer_data = schema_browser_data.types[schema_browser_data.relations.df_t[field]];\n        }\n        else if( is_t )\n        {\n          analyzer_data = schema_browser_data.types[field];\n          \n          analysis_link = true;\n          analysis_target += 'analysis.fieldtype=' + field;\n        }\n\n        if( analysis_link )\n        {\n          analysis_link_elements\n            .addClass( 'analysis' )\n            .attr( 'href', analysis_target );\n        }\n        else\n        {\n          analysis_link_elements\n            .removeClass( 'analysis' )\n            .removeAttr( 'href' );\n        }\n\n\n        if( analyzer_data )\n        {\n          var transform_analyzer_data_into_list = function( analyzer_data )\n          {\n            var args = [];\n            for( var key in analyzer_data.args )\n            {\n              var arg_class = '';\n              var arg_content = '';\n\n              if( 'true' === analyzer_data.args[key] || '1' === analyzer_data.args[key] )\n              {\n                arg_class = 'ico-1';\n                arg_content = key;\n              }\n              else if( 'false' === analyzer_data.args[key] || '0' === analyzer_data.args[key] )\n              {\n                arg_class = 'ico-0';\n                arg_content = key;\n              }\n              else\n              {\n                arg_content = key + ': ';\n\n                if( 'synonyms' === key || 'words' === key )\n                {\n                  // @TODO: set link target for file\n                  arg_content += '<a>' + analyzer_data.args[key] + '</a>';\n                }\n                else\n                {\n                  arg_content += analyzer_data.args[key];\n                }\n              }\n\n              args.push( '<dd class=\"' + arg_class + '\">' + arg_content + '</dd>' );\n            }\n\n            var list_content = '<dt>' + analyzer_data.className + '</dt>';\n            if( 0 !== args.length )\n            {\n              args.sort();\n              list_content += args.join( \"\\n\" );\n            }\n\n            return list_content;\n          }\n\n          // -- field-type\n          var field_type_element = $( 'dt.field-type', options_element );\n\n          $( 'dd.field-type', options_element )\n            .remove();\n\n          field_type_element\n            .show()\n            .after( '<dd class=\"field-type\">' + analyzer_data.className + '</dd>' );\n\n          $( '.toggle', analyzer_element )\n            .die( 'click' )\n            .live\n            (\n              'click',\n              function( event )\n              {\n                $( this ).closest( 'li' )\n                  .toggleClass( 'open' );\n\n                return false;\n              }\n            );\n\n          for( var key in analyzer_data )\n          {\n            var key_match = key.match( /^(.+)Analyzer$/ );\n            if( !key_match )\n            {\n              continue;\n            }\n\n            var analyzer_key_element = $( '.' + key_match[1], analyzer_element );\n            var analyzer_key_data = analyzer_data[key];\n\n            analyzer_element.show();\n            analyzer_key_element.show();\n\n            $( 'ul li', analyzer_key_element )\n            .removeClass( 'data' )\n            .hide();\n\n            for( var type in analyzer_key_data )\n            {\n              if( 'object' !== typeof analyzer_key_data[type] )\n              {\n                continue;\n              }\n\n              var type_element = $( '.' + type, analyzer_key_element );\n              var type_content = [];\n\n              type_element\n                .addClass( 'data' )\n                .show();\n\n              if( analyzer_key_data[type].className )\n              {\n                type_content.push( transform_analyzer_data_into_list( analyzer_key_data[type] ) );\n              }\n              else\n              {\n                for( var entry in analyzer_key_data[type] )\n                {\n                  type_content.push( transform_analyzer_data_into_list( analyzer_key_data[type][entry] ) );\n                }\n              }\n\n              $( 'dl', type_element )\n                .empty()\n                .append( type_content.join( \"\\n\" ) );\n            }\n\n            var name_element = $( 'dl:first dt a', analyzer_key_element );\n            if( analyzer_key_data.className )\n            {\n              name_element\n                .html( analyzer_key_data.className );\n            }\n\n            0 === $( 'ul li.data', analyzer_key_element ).size()\n            ? name_element.removeClass( 'toggle' )\n            : name_element.addClass( 'toggle' );\n          }\n        }\n\n        var terminfo_element = $( '.terminfo-holder', data_element );\n\n        terminfo_element\n          .removeClass( 'disabled' )\n          .removeClass( 'loaded' );\n\n        var trigger_element = $( '.trigger button', terminfo_element );\n        var form_element = $( 'form', terminfo_element );\n\n        trigger_element\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              form_element\n                .trigger( 'submit' );\n\n              return false;\n            }\n          );\n\n        form_element\n          .clearForm()\n          .die( 'submit' )\n          .live\n          (\n            'submit',\n            function( event )\n            {\n              load_terminfo( trigger_element, core_basepath, field, data_element, terminfo_element );\n\n              terminfo_element\n                .addClass( 'loaded' );\n\n              return false;\n            }\n          );\n\n        $( '.max-holder', terminfo_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              var element = $( this );\n\n              $( 'input', element.closest( 'form' ) )\n                .val( $( '.max', element ).text() );\n\n              form_element\n                .trigger( 'submit' );\n\n              return false;\n            }\n          );\n\n        $( '.trigger .autoload', terminfo_element )\n          .die( 'click' )\n          .live\n          (\n            'click',\n            function( event )\n            {\n              $.cookie( cookie_schema_browser_autoload, $.cookie( cookie_schema_browser_autoload ) ? null : true );\n              $( this ).trigger( 'state' );\n\n              return false;\n            }\n          )\n          .die( 'state' )\n          .live\n          (\n            'state',\n            function( event )\n            {\n              $.cookie( cookie_schema_browser_autoload )\n                ? $( this ).addClass( 'on' )\n                : $( this ).removeClass( 'on' );\n            }\n          )\n          .die( 'init' )\n          .live\n          (\n            'init',\n            function( event )\n            {\n              if( !$.cookie( cookie_schema_browser_autoload ) )\n              {\n                return false;\n              }\n\n              $( this ).trigger( 'state' );\n              trigger_element.trigger( 'click' );\n            }\n          )\n          .trigger( 'init' );\n\n        $( 'div[class$=\"-holder\"]', terminfo_element )\n          .hide();\n\n        if( !is_f )\n        {\n          terminfo_element\n            .hide();\n        }\n        else\n        {\n          terminfo_element\n            .show();\n        }\n      }\n    }\n    else\n    {\n      trigger_params.callback = function( schema_browser_data, data_element )\n      {\n        data_element\n          .hide();\n      };\n    }\n\n    delete app.schema_browser_data;\n\n    sammy.trigger\n    (\n      'schema_browser_load',\n      trigger_params\n    );\n  }\n);\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/js/scripts/threads.js",
    "content": "/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n (the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// #/~threads\nsammy.get\n(\n  /^#\\/(~threads)$/,\n  function( context )\n  {\n    var core_basepath = $( '[data-basepath]', app.menu_element ).attr( 'data-basepath' );\n    var content_element = $( '#content' );\n\n    $.get\n    (\n      'tpl/threads.html',\n      function( template )\n      {\n        content_element\n          .html( template );\n\n        $.ajax\n        (\n          {\n            url : core_basepath + '/admin/threads?wt=json',\n            dataType : 'json',\n            context : $( '#threads', content_element ),\n            beforeSend : function( xhr, settings )\n            {\n            },\n            success : function( response, text_status, xhr )\n            {\n              var self = this;\n\n              var threadDumpData = response.system.threadDump;\n              var threadDumpContent = [];\n              var c = 0;\n              for( var i = 1; i < threadDumpData.length; i += 2 )\n              {\n                var state = threadDumpData[i].state.esc();\n                var name = '<a title=\"' + state +'\"><span>' + threadDumpData[i].name.esc() + ' (' + threadDumpData[i].id.esc() + ')</span></a>';\n\n                var classes = [state];\n                var details = '';\n\n                if( 0 !== c % 2 )\n                {\n                  classes.push( 'odd' );\n                }\n\n                if( threadDumpData[i].lock )\n                {\n                  classes.push( 'lock' );\n                  name += \"\\n\" + '<p title=\"Waiting on\">' + threadDumpData[i].lock.esc() + '</p>';\n                }\n\n                if( threadDumpData[i].stackTrace && 0 !== threadDumpData[i].stackTrace.length )\n                {\n                  classes.push( 'stacktrace' );\n\n                  var stack_trace = threadDumpData[i].stackTrace\n                            .join( '###' )\n                            .esc()\n                            .replace( /\\(/g, '&#8203;(' )\n                            .replace( /###/g, '</li><li>' );\n\n                  name += '<div>' + \"\\n\"\n                       + '<ul>' + \"\\n\"\n                       + '<li>' + stack_trace + '</li>'\n                       + '</ul>' + \"\\n\"\n                       + '</div>';\n                }\n\n                var item = '<tr class=\"' + classes.join( ' ' ) +'\">' + \"\\n\"\n                         + '<td class=\"name\">' + name + '</td>' + \"\\n\"\n                         + '<td class=\"time\">' + threadDumpData[i].cpuTime.esc() + '<br>' + threadDumpData[i].userTime.esc() + '</td>' + \"\\n\"\n                         + '</tr>';\n                                \n                threadDumpContent.push( item );\n                c++;\n              }\n\n              var threadDumpBody = $( '#thread-dump tbody', this );\n\n              threadDumpBody\n                .html( threadDumpContent.join( \"\\n\" ) );\n                            \n              $( '.name a', threadDumpBody )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    $( this ).closest( 'tr' )\n                      .toggleClass( 'open' );\n                  }\n                );\n                            \n              $( '.controls a', this )\n                .die( 'click' )\n                .live\n                (\n                  'click',\n                  function( event )\n                  {\n                    var threads_element = $( self );\n                    var is_collapsed = threads_element.hasClass( 'collapsed' );\n                    var thread_rows = $( 'tr', threads_element );\n\n                    thread_rows\n                      .each\n                      (\n                        function( index, element )\n                        {\n                          if( is_collapsed )\n                          {\n                            $( element )\n                              .addClass( 'open' );\n                          }\n                          else\n                          {\n                            $( element )\n                              .removeClass( 'open' );\n                          }\n                        }\n                      );\n\n                    threads_element\n                      .toggleClass( 'collapsed' )\n                      .toggleClass( 'expanded' );\n                  }\n                );\n            },\n            error : function( xhr, text_status, error_thrown)\n            {\n            },\n            complete : function( xhr, text_status )\n            {\n            }\n          }\n        );\n      }\n    );\n  }\n);"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/analysis.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"analysis\">\n\n  <div class=\"block analysis-error\" id=\"analysis-handler-missing\">\n\n    <div class=\"head\">This Functionality requires the <code>/analysis/field</code> Handler to be registered and active!</div>\n\n  </div>\n\n  <div class=\"block analysis-error\" id=\"analysis-error\">\n\n    <div class=\"body\"></div>\n\n  </div>\n\n  <div id=\"analysis-holder\">\n\n    <div id=\"field-analysis\">\n              \n      <form method=\"get\">\n                \n        <ul class=\"clearfix\">\n                    \n          <li class=\"index\">\n                        \n            <label for=\"analysis_fieldvalue_index\">Field Value (Index)</label>\n            <textarea name=\"analysis.fieldvalue\" id=\"analysis_fieldvalue_index\"></textarea>\n                        \n          </li>\n                    \n          <li class=\"query\">\n                        \n            <label for=\"analysis_fieldvalue_query\">Field Value (Query)</label>\n            <textarea name=\"analysis.query\" id=\"analysis_fieldvalue_query\"></textarea>\n                        \n          </li>\n\n          <li class=\"settings-holder clearfix\">\n            <div class=\"settings clearfix\">\n\n              <label for=\"type_or_name\">Analyse Fieldname / FieldType:</label>\n              <select id=\"type_or_name\"></select>\n              <a id=\"tor_schema\" href=\"#\"><span>Schema Browser</span>&nbsp;</a>\n\n              <div class=\"buttons clearfix\">\n\n                <button type=\"submit\"><span>Analyse Values</span></button>\n\n                <div class=\"verbose_output active\">\n                  <a>Verbose Output</a>\n                </div>\n\n              </div>\n\n            </div>\n          </li>\n                    \n        </ul>\n                \n      </form>\n            \n    </div>\n        \n    <div id=\"analysis-result\" class=\"clearfix verbose_output\"></div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/cloud.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"cloud\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"tree-content\" class=\"content clearfix\">\n\n      <div id=\"tree\" class=\"tree\">#tree</div>\n      <div id=\"file-content\" class=\"clearfix\">\n\n        <div id=\"prop\">\n          <ul></ul>\n        </div>\n\n        <div id=\"data\"></div>\n\n        <a class=\"close\"><span>[x]</span></a>\n\n      </div>\n\n    </div>\n\n    <div id=\"graph-content\" class=\"content clearfix\">\n\n      <div id=\"canvas\"></div>\n\n      <div id=\"legend\">\n        <ul>\n          <li class=\"leader\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Leader</li>\n          <li class=\"active\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Active</li>\n          <li class=\"recovering\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Recovering</li>\n          <li class=\"down\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Down</li>\n          <li class=\"recovery_failed\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Recovery Failed</li>\n          <li class=\"gone\"><svg width=\"15\" height=\"15\"><g transform=\"translate(5,2)\"><g transform=\"translate(0,5)\"><circle r=\"4.5\"></circle></g></g></svg> Gone</li>\n        </ul>\n      </div>\n\n    </div>\n\n  </div>\n\n  <div id=\"debug\">\n    <ul class=\"clearfix\">\n      <li class=\"clipboard\"><a href=\"#\" data-copied=\"Copied to Clipboard!\">Copy to Clipboard (BUGGY!)</a></li>\n      <li class=\"close\"><a href=\"#\">Close</a></li>\n    </ul>\n    <pre class=\"debug\"></pre>\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/cores.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"cores\" class=\"clearfix\">\n\n  <div id=\"ui-block\">&nbsp;</div>\n\n  <div id=\"frame\">\n\n    <div id=\"actions\" class=\"actions clearfix\">\n      \n      <button id=\"add\" class=\"action\"><span>Add Core</span></button>\n      <button id=\"unload\" class=\"warn\"><span>Unload</span></button>\n      <button id=\"rename\" class=\"action\"><span>Rename</span></button>\n      <button id=\"swap\" class=\"action\"><span>Swap</span></button>\n      <button id=\"reload\"><span>Reload</span></button>\n      <button id=\"optimize\"><span>Optimize</span></button>\n\n      <div class=\"action add\" data-rel=\"add\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"CREATE\">\n\n          <p class=\"clearfix\"><label for=\"add_name\">name:</label>\n          <input type=\"text\" name=\"name\" id=\"add_name\" value=\"new_core\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_instanceDir\">instanceDir:</label>\n          <input type=\"text\" name=\"instanceDir\" id=\"add_instanceDir\" value=\"new_core\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_dataDir\">dataDir:</label>\n          <input type=\"text\" name=\"dataDir\" id=\"dataDir\" value=\"data\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_config\">config:</label>\n          <input type=\"text\" name=\"config\" id=\"add_config\" value=\"solrconfig.xml\"></p>\n\n          <p class=\"clearfix\"><label for=\"add_schema\">schema:</label>\n          <input type=\"text\" name=\"schema\" id=\"add_schema\" value=\"schema.xml\"></p>\n\n          <div class=\"cloud\">\n\n            <p class=\"clearfix\"><label for=\"add_collection\">collection:</label>\n            <input type=\"text\" name=\"collection\" id=\"add_collection\"></p>\n\n            <p class=\"clearfix\"><label for=\"add_shard\">shard:</label>\n            <input type=\"text\" name=\"shard\" id=\"shard\"></p>\n\n          </div>\n\n          <p class=\"clearfix error\">\n\n            <span></span>\n\n          </p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Add Core</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n      <div class=\"action rename\" data-rel=\"rename\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"RENAME\">\n          <input type=\"hidden\" name=\"core\" data-core=\"current\">\n\n          <p class=\"clearfix\"><label for=\"rename_other\">New Name:</label>\n          <input type=\"text\" name=\"other\" data-core=\"current\" id=\"rename_other\"></p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Rename Core</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n      <div class=\"action swap\" data-rel=\"swap\">\n\n        <form>\n\n          <input type=\"hidden\" name=\"action\" value=\"SWAP\">\n\n          <p class=\"clearfix\"><label for=\"swap_core\">this:</label>\n          <input type=\"text\" id=\"swap_core\" name=\"core\" data-core=\"current\" readonly=\"readonly\"></p>\n\n          <p class=\"clearfix\"><label for=\"swap_other\">and:</label>\n          <select name=\"other\" id=\"swap_other\" name=\"other\" class=\"other\">\n          </select></p>\n\n          <p class=\"clearfix buttons\">\n            <button type=\"submit\" class=\"submit\"><span>Swap Cores</span></button>\n            <button type=\"reset\" class=\"reset\"><span>Cancel</span></button>\n          </p>\n\n        </form>\n\n      </div>\n\n    </div>\n\n    <div id=\"data\">\n\n      <div class=\"block\" id=\"core-data\">\n\n          <h2><span>Core</span></h2>\n          \n          <div class=\"message-container\">\n              <div class=\"message\"></div>\n          </div>\n\n          <div class=\"content\">\n\n          <ul>\n\n            <li class=\"startTime\"><dl class=\"clearfix\">\n              <dt><span>startTime:</span></dt>\n                <dd class=\"timeago\"></dd>\n            </dl></li>\n\n            <li class=\"instanceDir\"><dl class=\"clearfix\">\n              <dt><span>instanceDir:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"dataDir\"><dl class=\"clearfix\">\n              <dt><span>dataDir:</span></dt>\n                <dd></dd>\n            </dl></li>\n        \n          </ul>\n        \n        </div>\n      </div>\n\n      <div class=\"block\" id=\"index-data\">\n\n          <h2><span>Index</span></h2>\n          \n          <div class=\"message-container\">\n              <div class=\"message\"></div>\n          </div>\n\n          <div class=\"content\">\n          \n          <ul>\n\n            <li class=\"lastModified\"><dl class=\"clearfix\">\n              <dt><span>lastModified:</span></dt>\n                <dd class=\"timeago\"></dd>\n            </dl></li>\n\n            <li class=\"version\"><dl class=\"clearfix\">\n              <dt><span>version:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"numDocs\"><dl class=\"clearfix\">\n              <dt><span>numDocs:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"maxDoc\"><dl class=\"clearfix\">\n              <dt><span>maxDoc:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"deletedDocs\"><dl class=\"clearfix\">\n              <dt><span>deletedDocs:</span></dt>\n                <dd></dd>\n            </dl></li>\n\n            <li class=\"optimized\"><dl class=\"clearfix\">\n              <dt><span>optimized:</span></dt>\n                <dd class=\"ico\"><span></span></dd>\n            </dl></li>\n\n            <li class=\"current\"><dl class=\"clearfix\">\n              <dt><span>current:</span></dt>\n                <dd class=\"ico\"><span></span></dd>\n            </dl></li>\n\n            <li class=\"directory\"><dl class=\"clearfix\">\n              <dt><span>directory:</span></dt>\n                <dd></dd>\n            </dl></li>\n          \n          </ul>\n        \n        </div>\n      </div>\n\n    </div>\n  \n  </div>\n\n  <div id=\"navigation\" class=\"clearfix\">\n  \n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/dashboard.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"dashboard\">\n\n  <div class=\"clearfix\">\n\n    <div class=\"block fieldlist\" id=\"statistics\">\n\n      <h2><span>Statistics</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n                \n        <dl>\n                    \n          <dt class=\"index_last-modified\">Last Modified:</dt>\n            <dd class=\"index_last-modified value timeago\"></dd>\n\n          <dt class=\"index_num-docs\">Num Docs:</dt>\n            <dd class=\"index_num-docs value\"></dd>\n\n          <dt class=\"index_max-doc\">Max Doc:</dt>\n            <dd class=\"index_max-doc value\"></dd>\n\n          <dt class=\"index_deleted-docs\">Deleted Docs:</dt>\n            <dd class=\"index_deleted-docs value\"></dd>\n\n          <dt class=\"index_version\">Version:</dt>\n            <dd class=\"index_version value\"></dd>\n\n          <dt class=\"index_segmentCount\">Segment Count:</dt>\n            <dd class=\"index_segmentCount value\"></dd>\n\n          <dt class=\"index_optimized\">Optimized:</dt>\n            <dd class=\"index_optimized value ico\"><span></span>\n            <a>optimize now</a></dd>\n\n          <dt class=\"index_current\">Current:</dt>\n            <dd class=\"index_current value ico\"><span></span></dd>\n                        \n        </dl>\n           \n      </div>\n    </div>\n\n    <div class=\"block\" id=\"admin-extra\">\n\n      <h2><span>Admin Extra</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n      </div>\n        \n    </div>\n\n  </div>\n  <div class=\"clearfix\">\n\n    <div class=\"block\" id=\"replication\">\n\n      <h2><span class=\"is-replicating\">Replication</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content clearfix\"id=\"details\">\n\n        <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n\n          <thead>\n\n            <tr>\n                            \n              <td><span>Index</span></td>\n              <th>Version</th>\n              <th><abbr title=\"Generation\">Gen</abbr></th>\n              <th>Size</th>\n                        \n            </tr>\n                    \n          </thead>\n          <tbody>\n\n            <tr class=\"masterSearch\">\n\n              <th>Master (Searching)</th>\n              <td class=\"version\"><div>x</div></td>\n              <td class=\"generation\"><div>y</div></td>\n              <td class=\"size\"><div>z</div></td>\n\n            </tr>\n\n            <tr class=\"master\">\n\n              <th>Master (Replicable)</th>\n              <td class=\"version\"><div>x</div></td>\n              <td class=\"generation\"><div>y</div></td>\n              <td class=\"size\"><div>z</div></td>\n\n            </tr>\n\n            <tr class=\"slave slaveOnly\">\n\n              <th>Slave (Searching)</th>\n              <td class=\"version\"><div>a</div></td>\n              <td class=\"generation\"><div>c</div></td>\n              <td class=\"size\"><div>c</div></td>\n\n            </tr>\n\n          </tbody>\n\n        </table>\n            \n      </div>\n    </div>\n\n    <div class=\"block\" id=\"dataimport\">\n\n      <h2><span>Dataimport</span></h2>\n            \n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\"></div>\n    </div>\n\n  </div>\n  \n    <div class=\"block fieldlist\" id=\"healthcheck\">\n\n      <h2><span>Healthcheck</span></h2>\n\n      <div class=\"message-container\">\n        <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n        <dl>\n                    \n          <dt class=\"status\">Status:</dt>\n          <dd class=\"status value ico\">\n            <button class=\"healthcheck-status\">Healthcheck Status</button>\n          </dd>\n        </dl>\n      </div>\n\n    </div>\n\n  </div>\n  \n\n</div>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/dataimport.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"dataimport\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"error\"></div>\n\n    <div id=\"current_state\">\n\n      <p class=\"last_update\">Last Update: <abbr>Unknown</abbr></p>\n      <div class=\"info\">\n\n        <strong></strong>\n        <div class=\"details\">\n          <div class=\"docs\"></div>\n          <div class=\"dates\"></div>\n        </div>\n\n        <button class=\"abort-import warn\"><span data-aborting=\"Aborting Import\">Abort Import</span></button>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"raw_output\">\n\n      <h2>\n        <a class=\"toggle\"><span>Raw Status-Output</span></a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <div id=\"raw_output_container\"></div>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"config\">\n\n      <h2 class=\"clearfix\">\n        <a class=\"toggle\"><span>Configuration</span></a>\n        <a class=\"r reload_config\" title=\"Reload Configuration\">Reload</a>\n        <a class=\"r debug_mode\">Debug-Mode</a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <div id=\"dataimport_config\">\n\n          <div class=\"formatted\">\n\n            <div class=\"loader\">Loading ...</div>\n          \n          </div>\n\n          <div class=\"editable\">\n\n            <textarea></textarea>\n          \n          </div>\n\n        </div>\n\n      </div>\n    \n    </div>\n\n    <div class=\"block hidden\" id=\"debug_response\">\n\n      <h2>\n        <a class=\"toggle\"><span>Raw Debug-Response</span></a>\n      </h2>\n        \n      <div class=\"message-container\">\n          <div class=\"message\"></div>\n      </div>\n\n      <div class=\"content\">\n\n        <em>No Request executed</em>\n\n      </div>\n    \n    </div>\n  \n  </div>\n\n  <div id=\"form\">\n\n    <div id=\"navigation\">\n\n      <ul></ul>\n\n    </div>\n\n    <form action=\"#\" method=\"get\">\n\n      <label for=\"command\">\n        <a rel=\"help\">Command</a>\n      </label>\n      <select name=\"command\" id=\"command\">\n        <option>full-import</option>\n        <option>delta-import</option>\n      </select>\n\n      <label for=\"verbose\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"verbose\" id=\"verbose\" value=\"true\">\n        <a rel=\"help\">Verbose</a>\n      </label>\n\n      <label for=\"clean\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"clean\" id=\"clean\" value=\"true\">\n        <a rel=\"help\">Clean</a>\n      </label>\n\n      <label for=\"commit\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"commit\" id=\"commit\" value=\"true\">\n        <a rel=\"help\">Commit</a>\n      </label>\n\n      <label for=\"optimize\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"optimize\" id=\"optimize\" value=\"true\">\n        <a rel=\"help\">Optimize</a>\n      </label>\n\n      <label for=\"debug\" class=\"checkbox\">\n        <input type=\"checkbox\" name=\"debug\" id=\"debug\" value=\"true\">\n        <a rel=\"help\">Debug</a>\n      </label>\n\n      <label for=\"entity\">\n        <a rel=\"help\">Entity</a>\n      </label>\n      <select id=\"entity\"></select>\n\n      <label for=\"start\">\n        <a rel=\"help\">Start</a>,\n        <a rel=\"help\">Rows</a>\n      </label>\n      <div class=\"clearfix\">\n        <input type=\"text\" id=\"start\" placeholder=\"0\">\n        <input type=\"text\" id=\"rows\" placeholder=\"10\">\n      </div>\n\n      <label for=\"custom_parameters\">\n        <a rel=\"help\">Custom Parameters</a>\n      </label>\n      <input type=\"text\" id=\"custom_parameters\" value=\"\" placeholder=\"key1=val1&amp;key2=val2\">\n\n      <button class=\"execute\" type=\"submit\"><span data-debugmode=\"Execute with this Configuration →\">Execute</span></button>\n      <button class=\"refresh-status\"><span>Refresh Status</span></button>\n    \n    </form>\n\n    <p id=\"auto-refresh-status\"><a>Auto-Refresh Status</a></p>\n  \n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/index.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"index\" class=\"clearfix\">\n\n  <div class=\"clearfix\">\n\n    <div class=\"index-left\">\n\n      <div class=\"block\" id=\"instance\">\n\n          <h2><span>Instance</span></h2>\n\n          <div class=\"content\">\n\n            <ul class=\"data\">\n\n              <li class=\"start_time\"><dl class=\"clearfix\">\n                <dt><span>Start</span></dt>\n                  <dd class=\"timeago\"></dd>\n              </dl></li>\n\n              <li class=\"host\"><dl class=\"clearfix\">\n                <dt><span>Host</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_cwd\"><dl class=\"clearfix\">\n                <dt><span>CWD</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_instance\"><dl class=\"clearfix\">\n                <dt><span>Instance</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_data\"><dl class=\"clearfix\">\n                <dt><span>Data</span></dt>\n                <dd></dd>\n              </dl></li>\n\n              <li class=\"dir dir_index\"><dl class=\"clearfix\">\n                <dt><span>Index</span></dt>\n                <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n      <div class=\"block\" id=\"versions\">\n\n          <h2><span>Versions</span></h2>\n\n          <div class=\"content\">\n\n            <ul class=\"data\">\n\n              <li class=\"solr solr_spec_version\"><dl class=\"clearfix\">\n                <dt><span>solr-spec</span></dt>\n                  <dd></dd>\n              </dl></li>\n              \n              <li class=\"solr_impl_version\"><dl class=\"clearfix\">\n                <dt class=\"\"><span>solr-impl</span></dt>\n                  <dd></dd>\n              </dl></li>\n              \n              <li class=\"lucene lucene_spec_version\"><dl class=\"clearfix\">\n                <dt><span>lucene-spec</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"lucene_impl_version\"><dl class=\"clearfix\">            \n                <dt><span>lucene-impl</span></dt>\n                  <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n    </div>\n      \n    <div class=\"index-right\">\n\n      <div class=\"block\" id=\"system\">\n\n          <h2><span>System</span></h2>\n          <a class=\"reload\"><span>reload</span></a>\n\n          <div class=\"content\">\n\n            <div id=\"physical-memory-bar\">\n\n              <p data-desc=\"physical-memory-bar\">Physical Memory</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n            <div id=\"swap-space-bar\">\n\n              <p data-desc=\"swap-space-bar\">Swap Space</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n          <div id=\"file-descriptor-bar\">\n\n              <p data-desc=\"file-descriptor-bar\">File Descriptor Count</p>\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                  </div>\n\n                </div>\n\n              </div>\n\n            </div>\n\n            <p class=\"no-info\">Sorry, no information available</p>\n\n          </div>\n\n      </div>\n\n    </div>\n\n  </div>\n\n  <div class=\"clearfix\">\n\n    <div class=\"index-left\">\n\n      <div class=\"block\" id=\"jvm\">\n\n          <h2><span>JVM</span></h2>\n\n          <div class=\"content clearfix\">\n\n            <ul class=\"data\">\n\n              <li class=\"jvm_version\"><dl class=\"clearfix\">            \n                <dt><span>Runtime</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"processors\"><dl class=\"clearfix\">            \n                <dt><span>Processors</span></dt>\n                  <dd></dd>\n              </dl></li>\n\n              <li class=\"command_line_args\"><dl class=\"clearfix\">\n                <dt><span>Args</span></dt>\n                <dd></dd>\n              </dl></li>\n            \n            </ul>\n\n          </div>\n\n      </div>\n\n    </div>\n    <div class=\"index-right\">\n\n      <div class=\"block\" id=\"jvm-memory\">\n\n          <h2><span data-desc=\"jvm-memory-bar\">JVM-Memory</span></h2>\n\n          <div class=\"content\">\n\n            <div id=\"jvm-memory-bar\">\n              <div class=\"bar-holder\">\n\n                <div class=\"bar-max bar\">\n                  <span class=\"bar-max val\"></span>\n\n                  <div class=\"bar-total bar\">\n                    <span class=\"bar-total val\"></span>\n\n                    <div class=\"bar-used bar\">\n                      <span class=\"bar-used val\"></span>\n\n                    </div>\n\n                  </div>\n\n                </div>\n\n              </div>\n            </div>\n\n          </div>\n\n      </div>\n\n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/logging.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"logging\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n  </div>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/plugins.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"plugins\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n  </div>\n\n  <div id=\"navigation\" class=\"clearfix\">\n\n    <ul>\n    </ul>\n  \n  </div>\n\n  <div id=\"recording\">\n    <div class=\"wrapper clearfix\">\n\n      <p class=\"loader\">Watching for Changes</p>\n      <button class=\"primary\">Stop &amp; Show Changes</button>\n\n    </div>\n  </div> \n\n</div>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/query.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"query\" class=\"clearfix\">\n\n  <div id=\"form\">\n\n    <form action=\"#\" method=\"get\">\n\n      <label for=\"qt\">\n        <a rel=\"help\">Request-Handler (qt)</a>\n      </label>\n      <input type=\"text\" id=\"qt\" value=\"/select\" title=\"Request handler in solrconfig.xml.\">\n\n      <fieldset class=\"common\">\n        <legend>common</legend>\n        <div class=\"fieldset\">\n\n        <label for=\"q\">\n          q\n        </label>\n        <textarea name=\"q\" id=\"q\" title=\"The query string.\">*:*</textarea>\n\n        <label for=\"fq\">\n          <a rel=\"help\">fq</a>\n        </label>\n        <input type=\"text\" id=\"fq\" name=\"fq\" class=\"multiple\" title=\"Filter query.\">\n\n        <label for=\"sort\">\n          <a rel=\"help\">sort</a>\n        </label>\n        <input type=\"text\" id=\"sort\" name=\"sort\" class=\"multiple\" title=\"Sort field or function with asc|desc.\">\n\n        <label for=\"start\">\n          <a rel=\"help\">start</a>,\n          <a rel=\"help\">rows</a>\n        </label>\n        <div class=\"clearfix\">\n          <input type=\"text\" name=\"start\" id=\"start\" placeholder=\"0\" pattern=\"[0-9]+\" title=\"Number of leading documents to skip. (Integer)\">\n          <input type=\"text\" name=\"rows\" id=\"rows\" placeholder=\"10\" pattern=\"[0-9]+\" title=\"Number of documents to return after 'start'. (Integer)\">\n        </div>\n\n        <label for=\"fl\">\n          <a rel=\"help\">fl</a>\n        </label>\n        <input type=\"text\" name=\"fl\" id=\"fl\" value=\"\" title=\"Field list, comma separated.\">\n\n        <label for=\"df\">\n          <a rel=\"help\">df</a>\n        </label>\n        <input type=\"text\" name=\"df\" id=\"df\" value=\"\" title=\"Default search field\">\n\n        <label for=\"custom_parameters\">\n          <a rel=\"help\">Raw Query Parameters</a>\n        </label>\n        <input type=\"text\" id=\"custom_parameters\" value=\"\" placeholder=\"key1=val1&amp;key2=val2\">\n\n        <label for=\"wt\">\n          <a rel=\"help\">wt</a>\n        </label>\n        <select name=\"wt\" id=\"wt\" title=\"The writer type (response format).\">\n          <option>xml</option>\n          <option>json</option>\n          <option>python</option>\n          <option>ruby</option>\n          <option>php</option>\n          <option>csv</option>\n        </select>\n\n        <label for=\"indent\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"indent\" id=\"indent\" value=\"true\" title=\"Indent results.\" checked=\"checked\">\n          <a rel=\"help\">indent</a>\n        </label>\n\n        <label for=\"debugQuery\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"debugQuery\" id=\"debugQuery\" value=\"true\" title=\"Show timing and diagnostics.\">\n          <a rel=\"help\">debugQuery</a>\n        </label>\n\n        </div>\n      </fieldset>\n\n      <fieldset class=\"dismax optional\">\n        <legend>\n          <label for=\"dismax\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"defType\" id=\"dismax\" value=\"dismax\">\n            dismax\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"q_alt\">q.alt</label>\n        <input type=\"text\" name=\"q.alt\" id=\"q_alt\" title=\"Alternate query when 'q' is absent.\">\n\n        <label for=\"qf\">qf</label>\n        <input type=\"text\" name=\"qf\" id=\"qf\" title=\"Query fields with optional boosts.\">\n\n        <label for=\"mm\">mm</label>\n        <input type=\"text\" name=\"mm\" id=\"mm\" title=\"Min-should-match expression.\">\n\n        <label for=\"pf\">pf</label>\n        <input type=\"text\" name=\"pf\" id=\"pf\" title=\"Phrase boosted fields.\">\n\n        <label for=\"ps\">ps</label>\n        <input type=\"text\" name=\"ps\" id=\"ps\" title=\"Phrase boost slop.\">\n\n        <label for=\"qs\">qs</label>\n        <input type=\"text\" name=\"qs\" id=\"qs\" title=\"Query string phrase slop.\">\n\n        <label for=\"tie\">tie</label>\n        <input type=\"text\" name=\"tie\" id=\"tie\" title=\"Score tie-breaker. Try 0.1.\">\n\n        <label for=\"bq\">bq</label>\n        <input type=\"text\" name=\"bq\" id=\"bq\" title=\"Boost query.\">\n\n        <label for=\"bf\">bf</label>\n        <input type=\"text\" name=\"bf\" id=\"bf\" title=\"Boost function (added).\">\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"edismax optional\">\n        <legend>\n          <label for=\"edismax\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"defType\" id=\"edismax\" value=\"edismax\">\n            <strong>e</strong>dismax\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"edismax_q_alt\">q.alt</label>\n        <input type=\"text\" name=\"q.alt\" id=\"edismax_q_alt\"  title=\"Alternate query when 'q' is absent.\">\n\n        <label for=\"edismax_qf\">qf</label>\n        <input type=\"text\" name=\"qf\" id=\"edismax_qf\" title=\"Query fields with optional boosts.\">\n\n        <label for=\"edismax_mm\">mm</label>\n        <input type=\"text\" name=\"mm\" id=\"edismax_mm\" title=\"Min-should-match expression.\">\n\n        <label for=\"edismax_pf\">pf</label>\n        <input type=\"text\" name=\"pf\" id=\"edismax_pf\" title=\"Phrase boosted fields.\">\n\n        <label for=\"edismax_ps\">ps</label>\n        <input type=\"text\" name=\"ps\" id=\"edismax_ps\" title=\"Phrase boost slop.\">\n\n        <label for=\"edismax_qs\">qs</label>\n        <input type=\"text\" name=\"qs\" id=\"edismax_qs\" title=\"Query string phrase slop.\">\n\n        <label for=\"edismax_tie\">tie</label>\n        <input type=\"text\" name=\"tie\" id=\"edismax_tie\" title=\"Score tie-breaker. Try 0.1.\">\n\n        <label for=\"edismax_bq\">bq</label>\n        <input type=\"text\" name=\"bq\" id=\"edismax_bq\" title=\"Boost query.\">\n\n        <label for=\"edismax_bf\">bf</label>\n        <input type=\"text\" name=\"bf\" id=\"edismax_bf\" title=\"Boost function (added).\">\n\n        <label for=\"edismax_uf\" title=\"User Fields\">uf</label>\n        <input type=\"text\" name=\"uf\" id=\"edismax_uf\">\n\n        <label for=\"edismax_pf2\" title=\"bigram phrase boost fields\">pf2</label>\n        <input type=\"text\" name=\"pf2\" id=\"edismax_pf2\">\n\n        <label for=\"edismax_pf3\" title=\"trigram phrase boost fields\">pf3</label>\n        <input type=\"text\" name=\"pf3\" id=\"edismax_pf3\">\n\n        <label for=\"edismax_ps2\" title=\"phrase slop for bigram phrases\">ps2</label>\n        <input type=\"text\" name=\"ps2\" id=\"edismax_ps2\">\n\n        <label for=\"edismax_ps3\" title=\"phrase slop for trigram phrases\">ps3</label>\n        <input type=\"text\" name=\"ps3\" id=\"edismax_ps3\">\n\n        <label for=\"edismax_boost\" title=\"multiplicative boost function\">boost</label>\n        <input type=\"text\" name=\"boost\" id=\"edismax_boost\">\n\n        <label for=\"edismax_stopwords\" class=\"checkbox\" title=\"remove stopwords from mandatory 'matching' component\">\n          <input type=\"checkbox\" name=\"stopwords\" id=\"edismax_stopwords\" value=\"true\" checked=\"checked\">\n          stopwords\n        </label>\n\n        <label for=\"edismax_lowercaseOperators\" class=\"checkbox\" title=\"Enable lower-case 'and' and 'or' as operators\">\n          <input type=\"checkbox\" name=\"lowercaseOperators\" id=\"edismax_lowercaseOperators\" value=\"true\" checked=\"checked\">\n          lowercaseOperators\n        </label>\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"hl optional\">\n        <legend>\n          <label for=\"hl\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"hl\" id=\"hl\" value=\"true\" title=\"Enable highlighting.\">\n            hl\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"hl_fl\">hl.fl</label>\n        <input type=\"text\" name=\"hl.fl\" id=\"hl_fl\" value=\"\" title=\"Fields to highlight on.\">\n\n        <label for=\"hl_simple_pre\">hl.simple.pre</label>\n        <input type=\"text\" name=\"hl.simple.pre\" id=\"hl_simple_pre\" value=\"<em>\">\n\n        <label for=\"hl_simple_post\">hl.simple.post</label>\n        <input type=\"text\" name=\"hl.simple.post\" id=\"hl_simple_post\" value=\"</em>\">\n\n        <label for=\"hl_requireFieldMatch\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.requireFieldMatch\" id=\"hl_requireFieldMatch\" value=\"true\">\n          hl.requireFieldMatch\n        </label>\n\n        <label for=\"hl_usePhraseHighlighter\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.usePhraseHighlighter\" id=\"hl_usePhraseHighlighter\" value=\"true\">\n          hl.usePhraseHighlighter\n        </label>\n\n        <label for=\"hl_highlightMultiTerm\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"hl.highlightMultiTerm\" id=\"hl_highlightMultiTerm\" value=\"true\">\n          hl.highlightMultiTerm\n        </label>\n      \n        </div>\n      </fieldset>\n\n      <fieldset class=\"facet optional\">\n        <legend>\n          <label for=\"facet\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"facet\" id=\"facet\" value=\"true\">\n            facet\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"facet_query\">facet.query</label>\n        <textarea name=\"facet.query\" id=\"facet_query\"></textarea>\n\n        <label for=\"facet_field\">facet.field</label>\n        <input type=\"text\" name=\"facet.field\" id=\"facet_field\">\n\n        <label for=\"facet_prefix\">facet.prefix</label>\n        <input type=\"text\" name=\"facet.prefix\" id=\"facet_prefix\">\n\n        </div>\n      </fieldset>\n\n      <fieldset class=\"spatial optional\">\n        <legend>\n          <label for=\"spatial\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"spatial\" id=\"spatial\" value=\"true\">\n            spatial\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"pt\">pt</label>\n        <input type=\"text\" name=\"pt\" id=\"pt\">\n\n        <label for=\"sfield\">sfield</label>\n        <input type=\"text\" name=\"sfield\" id=\"sfield\">\n\n        <label for=\"d\">d</label>\n        <input type=\"text\" name=\"d\" id=\"d\">\n        \n        </div>\n      </fieldset>\n\n      <fieldset class=\"spellcheck optional\">\n        <legend>\n          <label for=\"spellcheck\" class=\"checkbox\">\n            <input type=\"checkbox\" name=\"spellcheck\" id=\"spellcheck\" value=\"true\">\n            spellcheck\n          </label>\n        </legend>\n        <div class=\"fieldset\">\n\n        <label for=\"spellcheck_build\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.build\" id=\"spellcheck_build\" value=\"true\">\n          spellcheck.build\n        </label>\n\n        <label for=\"spellcheck_reload\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.reload\" id=\"spellcheck_reload\" value=\"true\">\n          spellcheck.reload\n        </label>\n\n        <label for=\"spellcheck_q\">spellcheck.q</label>\n        <input type=\"text\" name=\"spellcheck.q\" id=\"spellcheck_q\">\n\n        <label for=\"spellcheck_dictionary\">spellcheck.dictionary</label>\n        <input type=\"text\" name=\"spellcheck.dictionary\" id=\"spellcheck_dictionary\">\n\n        <label for=\"spellcheck_count\">spellcheck.count</label>\n        <input type=\"text\" name=\"spellcheck.count\" id=\"spellcheck_count\">\n\n        <label for=\"spellcheck_onlyMorePopular\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.onlyMorePopular\" id=\"spellcheck_onlyMorePopular\" value=\"true\">\n          spellcheck.onlyMorePopular\n        </label>\n\n        <label for=\"spellcheck_extendedResults\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.extendedResults\" id=\"spellcheck_extendedResults\" value=\"true\">\n          spellcheck.extendedResults\n        </label>\n\n        <label for=\"spellcheck_collate\" class=\"checkbox\">\n          <input type=\"checkbox\" name=\"spellcheck.collate\" id=\"spellcheck_collate\" value=\"true\">\n          spellcheck.collate\n        </label>\n\n        <label for=\"spellcheck_maxCollations\">spellcheck.maxCollations</label>\n        <input type=\"text\" name=\"spellcheck.maxCollations\" id=\"spellcheck_maxCollations\">\n\n        <label for=\"spellcheck_maxCollationTries\">spellcheck.maxCollationTries</label>\n        <input type=\"text\" name=\"spellcheck.maxCollationTries\" id=\"spellcheck_maxCollationTries\">\n\n        <label for=\"spellcheck_accuracy\">spellcheck.accuracy</label>\n        <input type=\"text\" name=\"spellcheck.accuracy\" id=\"spellcheck_accuracy\">\n      \n      </fieldset>\n\n\n      <button type=\"submit\">Execute Query</button>\n\n    </form>\n\n  </div>\n\n  <div id=\"result\">\n\n    <a id=\"url\" href=\"#\"></a>\n\n    <div id=\"response\">\n\n      <iframe src=\"about:blank\"></iframe>\n    \n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/replication.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"replication\" class=\"clearfix\">\n\n  <div id=\"frame\">\n\n    <div id=\"error\"></div>\n\n    <div class=\"replicating block\">\n\n      <div id=\"progress\">\n\n        <div id=\"start\"><div class=\"info\">\n\n          <span>Wed May 11 19:41:48 UTC 2011</span>\n                \n        </div></div>\n\n        <div id=\"speed\"><div class=\"info\">\n\n          <span>5.1 MB</span>/s\n                \n        </div></div>\n\n        <div id=\"bar\">\n\n          <div id=\"bar-info\"><div class=\"info\">\n\n            <div class=\"files\"><span>24</span> Files</div>\n            <div class=\"size\"><span>226.85 MB</span></div>\n\n          </div></div>\n\n          <div id=\"eta\"><div class=\"info\">\n\n            ETA: <span>25s</span>\n                    \n          </div></div>\n\n          <div id=\"done\" style=\"width: 20.0%;\">\n\n            <div class=\"percent\">\n\n              <span>20</span>%\n\n            </div>\n\n            <div id=\"done-info\"><div class=\"info\">\n\n              <div class=\"files\"><span>2</span> Files</div>\n              <div class=\"size\"><span>91.76 MB</span></div>\n\n            </div></div>\n\n          </div>\n\n        </div>\n\n      </div>\n\n      <div id=\"current-file\" class=\"clearfix\">\n\n        <div class=\"label\"><span class=\"loader\">Current File:</span></div>\n        <div class=\"file\">_a.fdt</div>\n        <div class=\"progress\">\n          <span class=\"done\">84 MB</span> / <span class=\"total\">102.98 MB</span> [<span class=\"percent\">81</span>%]\n        </div>\n\n      </div>\n        \n    </div>\n\n    <div id=\"iterations\" class=\"slaveOnly block clearfix\">\n\n      <div class=\"label\"><span class=\"\">Iterations:</span></div>\n      <div class=\"iterations\">\n        <ul>\n        </ul>\n        <a>\n          <span class=\"expand\">Show all Iterations</span>\n          <span class=\"collapse\">Hide past Iterations</span>\n        </a>\n      </div>\n        \n    </div>\n\n    <div id=\"details\" class=\"block clearfix\">\n\n      <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n\n        <thead>\n\n          <tr>\n                        \n            <td><span>Index</span></td>\n            <th>Version</th>\n            <th><abbr title=\"Generation\">Gen</abbr></th>\n            <th>Size</th>\n                    \n          </tr>\n                \n        </thead>\n        <tbody>\n\n          <tr class=\"masterSearch\">\n\n            <th>Master (Searching)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n          <tr class=\"master\">\n\n            <th>Master (Replicable)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n          <tr class=\"slave slaveOnly\">\n\n            <th>Slave (Searching)</th>\n            <td class=\"version\"><div></div></td>\n            <td class=\"generation\"><div></div></td>\n            <td class=\"size\"><div></div></td>\n\n          </tr>\n\n        </tbody>\n\n      </table>\n\n    </div>\n\n    <div id=\"settings\" class=\"settings block clearfix slaveOnly\">\n\n      <div class=\"label\"><span>Settings:</span></div>\n      <ul>\n        <li class=\"masterUrl\"><dl class=\"clearfix\">\n          <dt>master url:</dt>\n            <dd></dd>\n        </dl></li>\n        <li class=\"isPollingDisabled\"><dl class=\"clearfix\">\n          <dt>polling enable:</dt>\n            <dd class=\"ico\">&nbsp;</dd>\n        </dl></li>\n      </ul>\n        \n    </div>\n\n    <div id=\"master-settings\" class=\"settings block clearfix\">\n\n      <div class=\"label\"><span>Settings (Master):</span></div>\n      <ul>\n        <li class=\"replicationEnabled\"><dl class=\"clearfix\">\n          <dt>replication enable:</dt>\n            <dd class=\"ico\">&nbsp;</dd>\n        </dl></li>\n        <li class=\"replicateAfter\"><dl class=\"clearfix\">\n          <dt>replicateAfter:</dt>\n            <dd></dd>\n        </dl></li>\n        <li class=\"confFiles\"><dl class=\"clearfix\">\n          <dt>confFiles:</dt>\n            <dd></dd>\n        </dl></li>\n      </ul>\n        \n    </div>\n    \n  </div>\n\n  <div id=\"navigation\">\n\n    <div class=\"timer\">\n\n      <p>Next Run: <span class=\"approx\">~</span><span class=\"tick\">15m 8s</span></p>\n      <small>Sat Mar 03 11:00:00 CET 2012</smalL>\n\n    </div>\n\n    <button class=\"refresh-status\"><span>Refresh Status</span></button>\n\n    <div class=\"slaveOnly\">        \n      <button class=\"optional replicate-now primary\" data-command=\"fetchindex\"><span>Replicate now</span></button>\n      <button class=\"optional abort-replication warn\" data-command=\"abortfetch\"><span>Abort Replication</span></button>\n\n      <button class=\"optional disable-polling\" data-command=\"disablepoll\"><span>Disable Polling</span></button>\n      <button class=\"optional enable-polling\" data-command=\"enablepoll\"><span>Enable Polling</span></button>\n    </div>\n\n    <div class=\"masterOnly\">\n      <button class=\"optional disable-replication warn\" data-command=\"disablereplication\"><span>Disable Replication<span></button>\n      <button class=\"optional enable-replication warn\" data-command=\"enablereplication\"><span>Enable Replication<span></button>\n    </div>\n    \n  </div>\n\n</div>\n"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/schema-browser.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"schema-browser\" class=\"loaded\">\n\n  <div class=\"clearfix\">\n\n    <div id=\"data\">\n\n      <div id=\"field\">\n\n        <div class=\"field-options\">\n\n          <div class=\"block head\">\n            <h2>\n              <span class=\"type\"></span>:\n              <span class=\"name\"></span>\n            </h2>\n          </div>\n\n          <div class=\"partial\">\n\n            <p>Because your Index is empty, we have not enough Information about this Field</p>\n\n          </div>\n\n          <dl class=\"options clearfix\">\n\n            <dt class=\"field-type\">Field-Type:</dt>\n\n            <dt class=\"similarity\">Similarity:</dt>\n\n            <dt class=\"position-increment-gap\"><abbr title=\"Position Increment Gap\">PI Gap</abbr>:</dt>\n\n            <dt class=\"docs\">Docs:</dt>\n\n            <dt class=\"distinct\">Distinct:</dt>\n                        \n          </dl>\n\n          <table class=\"flags\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n\n            <thead>\n\n              <tr>\n\n                <td>Flags:</td>\n\n              </tr>\n\n            </thead>\n\n            <tbody>\n\n            </tbody>\n\n          </table>\n\n          <ul class=\"analyzer\">\n            <li class=\"clearfix index\">\n\n              <p><a><span>Index&nbsp;Analyzer:</span></a></p>\n              <dl>\n                <dt><a class=\"toggle\"></a></dt>\n              </dl>\n\n              <ul>\n                <li class=\"clearfix charFilters\">\n                  <p>Char Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix tokenizer\">\n                  <p>Tokenizer:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix filters\">\n                  <p>Token Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n              </ul>\n                            \n            </li>\n            <li class=\"clearfix query\">\n\n              <p><a><span>Query&nbsp;Analyzer:</span></a></p>\n              <dl>\n                <dt><a class=\"toggle\"></a></dt>\n              </dl>\n\n              <ul>\n                <li class=\"clearfix charFilters\">\n                  <p>Char Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix tokenizer\">\n                  <p>Tokenizer:</p>\n                  <dl>\n                  </dl>\n                </li>\n                <li class=\"clearfix filters\">\n                  <p>Token Filters:</p>\n                  <dl>\n                  </dl>\n                </li>\n              </ul>\n                            \n            </li>\n          </ul>\n\n        </div>\n\n        <div class=\"terminfo-holder clearfix\">\n\n          <div class=\"trigger\">\n\n            <button class=\"submit\"><span>Load Term Info</span></button>\n\n            <a class=\"autoload\" title=\"Automatically load Term Info?\"><span>Autoload</span></a>\n\n          </div>\n\n          <p class=\"status\">Sorry, no Term Info available :(</p>\n\n          <div class=\"topterms-holder\">\n\n            <form>\n            <p class=\"head\">\n              <input type=\"text\">\n              <a class=\"max-holder\" title=\"Load all Top-Terms\">/<span class=\"max\"></span></a> Top-Terms:\n              <a id=\"query_link\" href=\"#\"><span>Query</span>&nbsp;</a>\n            </p>\n            </form>\n\n            <ul>\n\n            </ul>\n\n          </div>\n\n          <div class=\"histogram-holder\">\n\n            <p class=\"head\">Histogram:</p>\n\n            <ul></ul>\n\n          </div>\n\n        </div>\n\n      </div>\n\n    </div>\n\n    <div id=\"related\">\n\n      <select>\n        <option value=\"\" selected=\"selected\">Please select ...</option>\n      </select>\n\n      <dl id=\"f-df-t\">\n      </dl>\n\n      <dl class=\"ukf-dsf\">\n\n        <dt class=\"unique-key-field\">Unique Key Field</dt>\n\n        <dt class=\"default-search-field\">Default Search Field</dt>\n            \n      </dl>   \n\n    </div>\n\n  </div>\n\n</div>"
  },
  {
    "path": "oqa-solr/triplestore/solr-webapp/webapp/tpl/threads.html",
    "content": "<!--\nLicensed to the Apache Software Foundation (ASF) under one or more\ncontributor license agreements.  See the NOTICE file distributed with\nthis work for additional information regarding copyright ownership.\nThe ASF licenses this file to You under the Apache License, Version 2.0\n(the \"License\"); you may not use this file except in compliance with\nthe License.  You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n<div id=\"threads\" class=\"collapsed\">\n\n  <div class=\"controls\">\n    <a>\n      <span class=\"expand\">Show all Stacktraces</span>\n      <span class=\"collapse\">Hide all Stacktraces</span>\n    </a>\n  </div>\n\n  <div id=\"thread-dump\">\n\n    <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n\n      <thead>\n\n        <tr>\n\n          <th class=\"name\">name</th>\n          <th class=\"time\">cpuTime / userTime</th>\n                \n        </tr>\n\n      </thead>\n\n      <tbody>\n\n      </tbody>\n\n    </table>\n    \n  </div>\n\n  <div class=\"controls\">\n    <a>\n      <span class=\"expand\">Show all Stacktraces</span>\n      <span class=\"collapse\">Hide all Stacktraces</span>\n    </a>\n  </div>\n\n</div>"
  }
]